From 865cbfa0ded9cc6f3162168f1041a7e040492624 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Fri, 10 May 2019 02:39:20 -0700 Subject: [PATCH 001/115] WIP: ENH: infinite sheds --- pvlib/infinite_sheds.py | 207 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 207 insertions(+) create mode 100644 pvlib/infinite_sheds.py diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py new file mode 100644 index 0000000000..f46457710e --- /dev/null +++ b/pvlib/infinite_sheds.py @@ -0,0 +1,207 @@ +""" +Modify plane of array irradiance components to account for adjancent rows for +both monofacial and bifacia infinite sheds. Sheds are defined as fixed tilt or +trackers that a fixed GCR on horizontant surface. Future version will also +account for sloped surfaces. The process is divide into 7 steps: +1. transposition +2. ground illumination +3. shade line +4. angle of sky/ground subtended by module +5. view factor of sky/ground from module vs. location of shade line +6. approximate view factors as linear across shade and light regions +7. sum up components + +References +---------- +[1] Bill Marion, et al. IEEE PVSC 2017 +""" + +import numpy as np + + +def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): + """ + Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + + Parameters + ---------- + solar_zenith : numeric + Apparent zenith in degrees. + solar_azimuth : numeric + Azimuth in degrees. + system_azimuth : numeric + System rotation from north in degrees. + + Returns + ------- + tanphi : numeric + tangent of the solar projection + """ + solar_zenith_rad = np.radians(solar_zenith) + solar_azimuth_rad = np.radians(solar_azimuth) + system_azimuth_rad = np.radians(system_azimuth) + rotation_rad = solar_azimuth_rad - system_azimuth_rad + tanphi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) + return tanphi + + +def solar_projection(solar_zenith, solar_azimuth, system_azimuth): + """ + Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + + Parameters + ---------- + solar_zenith : numeric + Apparent zenith in degrees. + solar_azimuth : numeric + Azimuth in degrees. + system_azimuth : numeric + System rotation from north in degrees. + + Returns + ------- + phi : numeric + 4-quadrant arc-tangent of solar projection + tanphi : numeric + tangent of the solar projection + """ + solar_zenith_rad = np.radians(solar_zenith) + solar_azimuth_rad = np.radians(solar_azimuth) + system_azimuth_rad = np.radians(system_azimuth) + rotation_rad = solar_azimuth_rad - system_azimuth_rad + x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) + x2 = np.cos(solar_zenith_rad) + tanphi = x1 / x2 + phi = np.arctan2(x1, x2) + return phi, tanphi + + +def ground_illumination(GCR, tilt, tanphi): + """ + Calculate the fraction of the ground visible from the sky. + + Parameters + ---------- + GCR : numeric + ratio of module length versus row spacing + tilt : numeric + angle of module normal from vertical in degrees, if bifacial use front + tanphi : numeric + solar projection tangent + + Returns + ------- + Fgnd_sky : numeric + fration of ground illumination + """ + tilt_rad = np.radians(tilt) + Fgnd_sky = 1.0 - np.minimum( + 1.0, GCR * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi)) + return Fgnd_sky # 1 - min(1, abs()) < 1 always + + +def diffuse_fraction(GHI, DHI): + """ + ratio of DHI to GHI + + Parameters + ---------- + GHI : numeric + global horizontal irradiance in W/m^2 + DHI : numeric + diffuse horizontal irradiance in W/m^2 + + Returns : numeric + diffuse fraction + """ + return DHI/GHI + + +def poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): + """ + transposed ground reflected diffuse component adjusted for ground + illumination, but not accounting for adjacent rows + + Parameters + ---------- + poa_ground : numeric + transposed ground reflected diffuse component in W/m^2 + f_gnd_sky : numeric + ground illumination + diffuse_fraction : numeric + ratio of DHI to GHI + + Returns + ------- + poa_gnd_sky : numeric + adjusted irradiance on modules reflected from ground + """ + poa_ground * (f_gnd_sky * (1 - diffuse_fraction) + diffuse_fraction) + + +def shade_line(GCR, tilt, tanphi): + """ + calculate fraction of module shaded from the bottom + + Parameters + ---------- + GCR : numeric + ratio of module length versus row spacing + tilt : numeric + angle of module normal from vertical in degrees, if bifacial use front + tanphi : numeric + solar projection tangent + + Returns + ------- + Fx : numeric + fraction of module shaded from the bottom + """ + tilt_rad = np.radians(tilt) + Fx = 1.0 - 1.0 / GCR / (np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi) + return np.maximum(0.0, np.minimum(Fx, 1.0)) + + +def sky_angle(GCR, tilt, f_x): + """ + angle from shade line to top of next row + + Parameters + ---------- + GCR : numeric + ratio of module length versus row spacing + tilt : numeric + angle of module normal from vertical in degrees, if bifacial use front + f_x : numeric + fraction of module shaded from bottom + + Returns + ------- + psi_top : numeric + angle from shade line to top of next row + """ + tilt_rad = np.radians(tilt) + f_y = 1.0 - f_x + return f_y * np.sin(tilt_rad) / (1/GCR - f_y * np.cos(tilt_rad)) + + + +def sky_angle_0(GCR, tilt): + """ + angle from bottom to top of next row + + Parameters + ---------- + GCR : numeric + ratio of module length versus row spacing + tilt : numeric + angle of module normal from vertical in degrees, if bifacial use front + + Returns + ------- + psi_top : numeric + angle from shade line to top of next row + """ + return sky_angle(GCR, tilt, 0.0) + + From 2d77d821e24cefd1f3e484eca39abcb79ec492d4 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Thu, 16 May 2019 07:49:08 -0700 Subject: [PATCH 002/115] DOC: add infinite_sheds to api.rst, docstrings form sky_angle --- docs/sphinx/source/api.rst | 11 +++++++++++ pvlib/infinite_sheds.py | 24 +++++++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index 3c128bbf80..3058f6916a 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -139,6 +139,7 @@ Methods for irradiance calculations pvsystem.PVSystem.get_irradiance pvsystem.PVSystem.get_aoi tracking.SingleAxisTracker.get_irradiance + infinite_sheds.get_irradiance Decomposing and combining irradiance ------------------------------------ @@ -539,3 +540,13 @@ Methods for calculating back surface irradiance :toctree: generated/ bifacial.pvfactors_timeseries + + +Infinte Sheds +============= + +.. autosummary:: + :toctree: generated/ + + infinite_sheds.sky_angle + infinite_sheds.sky_angle_0 \ No newline at end of file diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index f46457710e..3273d2c512 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -166,6 +166,13 @@ def sky_angle(GCR, tilt, f_x): """ angle from shade line to top of next row + .. math:: + + \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} + \\sin{\\beta}}{1 - F_y \\text{GCR} \\cos{\\beta}} \\newline + + F_y &= 1 - F_x + Parameters ---------- GCR : numeric @@ -188,7 +195,12 @@ def sky_angle(GCR, tilt, f_x): def sky_angle_0(GCR, tilt): """ - angle from bottom to top of next row + angle to top of next row with no shade (shade line at bottom) + + .. math:: + + \\tan{\\psi_t} &= \\frac{\\text{GCR} \\sin{\\beta}}{1 - \\text{GCR} + \\cos{\\beta}} Parameters ---------- @@ -205,3 +217,13 @@ def sky_angle_0(GCR, tilt): return sky_angle(GCR, tilt, 0.0) +def get_irradiance(): + """hi""" + return + + +class InfiniteSheds(): + """hi""" + def __init__(self, x, y): + self.x = x + self.y = y From 7b5def1ef0d2c358c52387cefcefed207ebdf979 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Thu, 16 May 2019 16:34:05 -0700 Subject: [PATCH 003/115] ENH: functions for infinite sheds * add _to_radians and is_rad to convert only if necessary * prefix all functions with get_ * add get_f_sky_pv, get_poa_sky_pv, get_ground_angle_tangent, get_f_gnd_pv, get_f_gnd_pv, get_poa_gnd_pv, etc. * update API ui Signed-off-by: Mark Mikofski --- docs/sphinx/source/api.rst | 7 +- pvlib/infinite_sheds.py | 296 +++++++++++++++++++++++++++++++------ 2 files changed, 254 insertions(+), 49 deletions(-) diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index 3058f6916a..1311bb9d56 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -548,5 +548,8 @@ Infinte Sheds .. autosummary:: :toctree: generated/ - infinite_sheds.sky_angle - infinite_sheds.sky_angle_0 \ No newline at end of file + infinite_sheds.get_solar_projection_tangent + infinite_sheds.get_solar_projection + infinite_sheds.get_ground_illumination + infinite_sheds.get_sky_angle_tangent + infinite_sheds.get_sky_angle_0_tangent \ No newline at end of file diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 3273d2c512..49fb7987d9 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -1,7 +1,7 @@ """ Modify plane of array irradiance components to account for adjancent rows for both monofacial and bifacia infinite sheds. Sheds are defined as fixed tilt or -trackers that a fixed GCR on horizontant surface. Future version will also +trackers that a fixed GCR on horizontal surface. Future version will also account for sloped surfaces. The process is divide into 7 steps: 1. transposition 2. ground illumination @@ -19,10 +19,25 @@ import numpy as np -def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): +def _to_radians(*params, is_rad=False): + if is_rad: + return params + p_rad = [] + for p in params: + p_rad.append(np.radians(p)) + return p_rad + + +def get_solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, + is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + .. math:: + \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - + \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} + \\right)}{\\cos\\left(\\text{solar zenith}\\right)} + Parameters ---------- solar_zenith : numeric @@ -31,21 +46,23 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Azimuth in degrees. system_azimuth : numeric System rotation from north in degrees. + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- tanphi : numeric tangent of the solar projection """ - solar_zenith_rad = np.radians(solar_zenith) - solar_azimuth_rad = np.radians(solar_azimuth) - system_azimuth_rad = np.radians(system_azimuth) + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( + solar_zenith, solar_azimuth, system_azimuth, is_rad) rotation_rad = solar_azimuth_rad - system_azimuth_rad tanphi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) return tanphi -def solar_projection(solar_zenith, solar_azimuth, system_azimuth): +def get_solar_projection(solar_zenith, solar_azimuth, system_azimuth, + is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -57,6 +74,8 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): Azimuth in degrees. system_azimuth : numeric System rotation from north in degrees. + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- @@ -65,9 +84,8 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): tanphi : numeric tangent of the solar projection """ - solar_zenith_rad = np.radians(solar_zenith) - solar_azimuth_rad = np.radians(solar_azimuth) - system_azimuth_rad = np.radians(system_azimuth) + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( + solar_zenith, solar_azimuth, system_azimuth, is_rad) rotation_rad = solar_azimuth_rad - system_azimuth_rad x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) x2 = np.cos(solar_zenith_rad) @@ -76,48 +94,56 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): return phi, tanphi -def ground_illumination(GCR, tilt, tanphi): +def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): """ Calculate the fraction of the ground visible from the sky. + .. math:: + F_{gnd,sky}=1-\\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + + \\sin \\beta \\tan \\phi \\right|\\right)} + Parameters ---------- - GCR : numeric - ratio of module length versus row spacing + gcr : numeric + ratio of module length to row spacing tilt : numeric angle of module normal from vertical in degrees, if bifacial use front tanphi : numeric solar projection tangent + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- - Fgnd_sky : numeric - fration of ground illumination + f_gnd_sky : numeric + fration of ground illuminated from sky """ - tilt_rad = np.radians(tilt) - Fgnd_sky = 1.0 - np.minimum( - 1.0, GCR * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi)) - return Fgnd_sky # 1 - min(1, abs()) < 1 always + tilt_rad = _to_radians(tilt, is_rad)[0] + f_gnd_sky = 1.0 - np.minimum( + 1.0, gcr * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi)) + return f_gnd_sky # 1 - min(1, abs()) < 1 always -def diffuse_fraction(GHI, DHI): +def get_diffuse_fraction(ghi, dhi): """ ratio of DHI to GHI Parameters ---------- - GHI : numeric - global horizontal irradiance in W/m^2 - DHI : numeric - diffuse horizontal irradiance in W/m^2 + ghi : numeric + global horizontal irradiance (GHI) in W/m^2 + dhi : numeric + diffuse horizontal irradiance (DHI) in W/m^2 - Returns : numeric + Returns + ------- + df : numeric diffuse fraction """ - return DHI/GHI + return dhi/ghi -def poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): +def get_poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): """ transposed ground reflected diffuse component adjusted for ground illumination, but not accounting for adjacent rows @@ -136,19 +162,24 @@ def poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ - poa_ground * (f_gnd_sky * (1 - diffuse_fraction) + diffuse_fraction) + return poa_ground * (f_gnd_sky * (1 - diffuse_fraction) + diffuse_fraction) -def shade_line(GCR, tilt, tanphi): +def get_shade_line(gcr, tilt, tanphi, is_rad=False): """ calculate fraction of module shaded from the bottom + .. math:: + F_x = \\max \\left( 0, \\min \\left(1 - \\frac{1}{\\text{GCR} \\left( + \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) + \\right) + Parameters ---------- - GCR : numeric + gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of module normal from vertical in degrees, if bifacial use front + angle of surface normal from vertical in degrees tanphi : numeric solar projection tangent @@ -157,14 +188,14 @@ def shade_line(GCR, tilt, tanphi): Fx : numeric fraction of module shaded from the bottom """ - tilt_rad = np.radians(tilt) - Fx = 1.0 - 1.0 / GCR / (np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi) + tilt_rad = _to_radians(tilt, is_rad)[0] + Fx = 1.0 - 1.0 / gcr / (np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi) return np.maximum(0.0, np.minimum(Fx, 1.0)) -def sky_angle(GCR, tilt, f_x): +def get_sky_angle_tangent(gcr, tilt, f_x, is_rad=False): """ - angle from shade line to top of next row + tangent of angle from shade line to top of next row .. math:: @@ -175,10 +206,10 @@ def sky_angle(GCR, tilt, f_x): Parameters ---------- - GCR : numeric + gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of module normal from vertical in degrees, if bifacial use front + angle of surface normal from vertical in degrees f_x : numeric fraction of module shaded from bottom @@ -187,15 +218,15 @@ def sky_angle(GCR, tilt, f_x): psi_top : numeric angle from shade line to top of next row """ - tilt_rad = np.radians(tilt) + tilt_rad = _to_radians(tilt, is_rad)[0] f_y = 1.0 - f_x - return f_y * np.sin(tilt_rad) / (1/GCR - f_y * np.cos(tilt_rad)) + return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) -def sky_angle_0(GCR, tilt): +def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): """ - angle to top of next row with no shade (shade line at bottom) + tangent of angle to top of next row with no shade (shade line at bottom) .. math:: @@ -204,21 +235,192 @@ def sky_angle_0(GCR, tilt): Parameters ---------- - GCR : numeric + gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of module normal from vertical in degrees, if bifacial use front + angle of surface normal from vertical in degrees Returns ------- - psi_top : numeric - angle from shade line to top of next row + psi_top_0 : numeric + angle from bottom, ``x=0``, to top of next row """ - return sky_angle(GCR, tilt, 0.0) + return get_sky_angle_tangent(gcr, tilt, 0.0, is_rad) -def get_irradiance(): - """hi""" +def get_f_sky_pv(tilt, sky_angle_shade_tangent, sky_angle_0_tangent, + is_rad=False): + """ + view factors of sky from shaded and unshaded parts of PV module + + Parameters + ---------- + tilt : numeric + angle of surface normal from vertical in degrees + + Returns + ------- + f_sky_pv_shade : numeric + view factor of sky from shaded part of surface + f_sky_pv_noshade : numeric + view factor of sky from unshaded part of surface + + Notes + ----- + Assuming the view factor various roughly linearly from the top to the + bottom of the rack, we can take the average to get integrated view factor. + We'll average the shaded and unshaded regions separately to improve the + approximation slightly. + + .. math :: + \\large{F_{nextrow \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos + \\left(\\psi_{next\\ row\\ top \\rightarrow shadeline} + \\beta + \\right) + \\cos \\left(\\psi_{next\\ row\\ top \\rightarrow 0} + + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} + + Recall that the view factor from the top of the rack is one because it's + view is not obstructued. + + .. math:: + \\large{F_{nextrow \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + + \\cos \\left(\\psi_{next\\ row\\ top \\rightarrow shadeline} + \\beta + \\right)}{1 + \\cos \\beta} }{2}} + """ + tilt_rad = _to_radians(tilt, is_rad)[0] + sky_angle_shade = np.arctan(sky_angle_shade_tangent) + sky_angle_0 = np.arctan(sky_angle_0_tangent) + f_sky_pv_shade = ( + (1 + (np.cos(sky_angle_shade + tilt_rad) + + np.cos(sky_angle_0 + tilt_rad)) / 2) / (1 + np.cos(tilt_rad))) + + f_sky_pv_noshade = (1 + ( + 1 + np.cos(sky_angle_shade + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 + return f_sky_pv_shade, f_sky_pv_noshade + + +def get_poa_sky_pv(poa_sky_diffuse, shade_line, f_sky_pv_shade, + f_sky_pv_noshade): + """ + Sky diffuse POA from average view factor weighted by shaded and unshaded + parts of the surface. + """ + return poa_sky_diffuse * ( + shade_line*f_sky_pv_shade + (1 - shade_line)*f_sky_pv_noshade) + + +def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): + """ + tangent of angle from shadeline to bottom of adjacent row + + Parameters + ---------- + tilt : numeric + angle of surface normal from vertical in degrees + + """ + tilt_rad = _to_radians(tilt, is_rad) + return shade_line * np.sin(tilt_rad) / ( + shade_line * np.cos(tilt_rad) + 1/gcr) + + +def get_ground_angle_1_tangent(gcr, tilt, is_rad=False): + """ + tangent of angle to bottom of next row with all shade (shade line at top) + + Parameters + ---------- + tilt : numeric + angle of surface normal from vertical in degrees + + """ + return get_ground_angle_tangent(gcr, tilt, 1.0, is_rad) + + +def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, + is_rad=False): + """ + view factors of ground from shaded and unshaded parts of PV module + + Parameters + ---------- + tilt : numeric + angle of surface normal from vertical in degrees + + Notes + ----- + Take the average of the shaded and unshaded sections. + + .. math:: + \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos + \\left(\\beta - \\psi_{next\\ row\\ bottom \\rightarrow shadeline} + \\right)}{1 - \\cos \\beta}}{2}} + + At the bottom of rack, the angle is zero, x=0, and the view factor is 1. + + .. math:: + \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - + \\frac{\\cos \\left(\\beta - + \\psi_{next\\ row\\ bottom \\rightarrow shadeline} \\right) + + \\cos \\left(\\beta - \\psi_{next\\ row\\ bottom \\rightarrow 1} + \\right)}{2}}{1 - \\cos \\beta}} + """ + tilt_rad = _to_radians(tilt, is_rad) + ground_angle = np.arctan(ground_angle_tangent) + ground_angle_1 = np.arctan(ground_angle_1_tangent) + f_gnd_pv_shade = (1 + (1 - np.cos(tilt_rad - ground_angle)) + / (1 - np.cos(tilt_rad))) / 2 + f_gnd_pv_noshade = ( + (1 - (np.cos(tilt_rad - ground_angle) + + np.cos(tilt_rad - ground_angle_1))/2) + / (1 - np.cos(tilt_rad))) + return f_gnd_pv_shade, f_gnd_pv_noshade + + +def get_poa_gnd_pv(poa_gnd_sky, shade_line, f_gnd_pv_shade, f_gnd_pv_noshade): + """ + Ground diffuse POA from average view factor weighted by shaded and unshaded + parts of the surface. + + Parameters + ---------- + poa_gnd_sky : numeric + diffuse ground POA accounting for ground shade but not adjacent rows + """ + return poa_gnd_sky * (shade_line*f_gnd_pv_shade + + (1 - shade_line)*f_gnd_pv_noshade) + + +def get_poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): + return poa_gnd_pv + poa_sky_pv + + +def get_poa_beam_pv(poa_beam, iam, shade_line): + return poa_beam * iam * (1 - shade_line) + + +def get_poa_global_pv(poa_beam_pv, poa_diffuse_pv): + return poa_beam_pv + poa_diffuse_pv + + +def get_poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, + shade_factor=-0.02, transmission_factor=0): + effects = (1+shade_factor)*(1+transmission_factor) + return poa_global_front + poa_global_back * bifaciality * effects + + +def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, + dhi, poa_ground, poa_beam, is_rad=False): + """Get irradiance from infinite sheds model.""" + solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( + solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad + ) + tanphi = get_solar_projection_tangent( + solar_zenith, solar_azimuth, system_azimuth, is_rad=True) + f_gnd_sky = get_ground_illumination(gcr, tilt, tanphi, is_rad=True) + df = get_diffuse_fraction(ghi, dhi) + poa_gnd_sky = get_poa_gnd_sky(poa_ground, f_gnd_sky, df) + f_x = get_shade_line(gcr, tilt, tanphi) + sky_angle_tangent = get_sky_angle_tangent(gcr, tilt, f_x, is_rad=True) return From 246dd2b3d20acba4cdd7db33c82b0c0e2490a68c Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Thu, 16 May 2019 20:54:39 -0700 Subject: [PATCH 004/115] ENH: clean up docstrings, add 4-quad arctan2, add api docs, more get_irradiance --- docs/sphinx/source/api.rst | 18 +++- pvlib/infinite_sheds.py | 163 ++++++++++++++++++++++++++++++++----- 2 files changed, 159 insertions(+), 22 deletions(-) diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index 1311bb9d56..558ce05f89 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -551,5 +551,21 @@ Infinte Sheds infinite_sheds.get_solar_projection_tangent infinite_sheds.get_solar_projection infinite_sheds.get_ground_illumination + infinite_sheds.get_diffuse_fraction + infinite_sheds.get_poa_gnd_sky + infinite_sheds.get_shade_line infinite_sheds.get_sky_angle_tangent - infinite_sheds.get_sky_angle_0_tangent \ No newline at end of file + infinite_sheds.get_sky_angle + infinite_sheds.get_sky_angle_0_tangent + infinite_sheds.get_f_sky_pv + infinite_sheds.get_poa_sky_pv + infinite_sheds.get_ground_angle + infinite_sheds.get_ground_angle_tangent + infinite_sheds.get_ground_angle_1_tangent + infinite_sheds.get_f_gnd_pv + infinite_sheds.get_poa_gnd_pv + infinite_sheds.get_poa_diffuse_pv + infinite_sheds.get_poa_beam_pv + infinite_sheds.get_poa_global_pv + infinite_sheds.get_poa_global_bifacial + infinite_sheds.InfiniteSheds \ No newline at end of file diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 49fb7987d9..7d849ed92f 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -29,7 +29,7 @@ def _to_radians(*params, is_rad=False): def get_solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, - is_rad=False): + is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -99,8 +99,9 @@ def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): Calculate the fraction of the ground visible from the sky. .. math:: - F_{gnd,sky}=1-\\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + - \\sin \\beta \\tan \\phi \\right|\\right)} + F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + + \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + \\beta &= \\text{tilt} Parameters ---------- @@ -182,6 +183,8 @@ def get_shade_line(gcr, tilt, tanphi, is_rad=False): angle of surface normal from vertical in degrees tanphi : numeric solar projection tangent + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- @@ -212,17 +215,57 @@ def get_sky_angle_tangent(gcr, tilt, f_x, is_rad=False): angle of surface normal from vertical in degrees f_x : numeric fraction of module shaded from bottom + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- - psi_top : numeric - angle from shade line to top of next row + tan_psi_top : numeric + tangent of angle from shade line to top of next row """ tilt_rad = _to_radians(tilt, is_rad)[0] f_y = 1.0 - f_x return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) +def get_sky_angle(gcr, tilt, f_x, is_rad=False): + """ + angle from shade line to top of next row + + .. math:: + + \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} + \\sin{\\beta}}{1 - F_y \\text{GCR} \\cos{\\beta}} \\newline + + F_y &= 1 - F_x + + Parameters + ---------- + gcr : numeric + ratio of module length versus row spacing + tilt : numeric + angle of surface normal from vertical in degrees + f_x : numeric + fraction of module shaded from bottom + is_rad : bool, default is False + if true, then input arguments are radians + + Returns + ------- + psi_top : numeric + 4-quadrant arc-tangent + tan_psi_top + tangent of angle from shade line to top of next row + """ + tilt_rad = _to_radians(tilt, is_rad)[0] + f_y = 1.0 - f_x + x1 = f_y * np.sin(tilt_rad) + x2 = (1/gcr - f_y * np.cos(tilt_rad)) + tan_psi_top = x1 / x2 + psi_top = np.arctan2(x1, x2) + return psi_top, tan_psi_top + + def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): """ @@ -230,26 +273,27 @@ def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): .. math:: - \\tan{\\psi_t} &= \\frac{\\text{GCR} \\sin{\\beta}}{1 - \\text{GCR} + \\tan{\\psi_t} = \\frac{\\text{GCR} \\sin{\\beta}}{1 - \\text{GCR} \\cos{\\beta}} Parameters ---------- gcr : numeric - ratio of module length versus row spacing + ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- - psi_top_0 : numeric - angle from bottom, ``x=0``, to top of next row + tan_psi_top_0 : numeric + tangent angle from bottom, ``x = 0``, to top of next row """ return get_sky_angle_tangent(gcr, tilt, 0.0, is_rad) -def get_f_sky_pv(tilt, sky_angle_shade_tangent, sky_angle_0_tangent, - is_rad=False): +def get_f_sky_pv(tilt, sky_angle_tangent, sky_angle_0_tangent, is_rad=False): """ view factors of sky from shaded and unshaded parts of PV module @@ -257,13 +301,20 @@ def get_f_sky_pv(tilt, sky_angle_shade_tangent, sky_angle_0_tangent, ---------- tilt : numeric angle of surface normal from vertical in degrees + sky_angle_tangent : numeric + tangent of angle from shade line to top of next row + sky_angle_0_tangent : numeric + tangent of angle to top of next row with no shade (shade line at + bottom) + is_rad : bool, default is False + if true, then input arguments are radians Returns ------- f_sky_pv_shade : numeric - view factor of sky from shaded part of surface + view factor of sky from shaded part of PV surface f_sky_pv_noshade : numeric - view factor of sky from unshaded part of surface + view factor of sky from unshaded part of PV surface Notes ----- @@ -287,14 +338,14 @@ def get_f_sky_pv(tilt, sky_angle_shade_tangent, sky_angle_0_tangent, \\right)}{1 + \\cos \\beta} }{2}} """ tilt_rad = _to_radians(tilt, is_rad)[0] - sky_angle_shade = np.arctan(sky_angle_shade_tangent) + sky_angle = np.arctan(sky_angle_tangent) sky_angle_0 = np.arctan(sky_angle_0_tangent) f_sky_pv_shade = ( - (1 + (np.cos(sky_angle_shade + tilt_rad) + (1 + (np.cos(sky_angle + tilt_rad) + np.cos(sky_angle_0 + tilt_rad)) / 2) / (1 + np.cos(tilt_rad))) f_sky_pv_noshade = (1 + ( - 1 + np.cos(sky_angle_shade + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 + 1 + np.cos(sky_angle + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 return f_sky_pv_shade, f_sky_pv_noshade @@ -308,15 +359,57 @@ def get_poa_sky_pv(poa_sky_diffuse, shade_line, f_sky_pv_shade, shade_line*f_sky_pv_shade + (1 - shade_line)*f_sky_pv_noshade) +def get_ground_angle(gcr, tilt, shade_line, is_rad=False): + """ + angle from shadeline to bottom of adjacent row + + Parameters + ---------- + gcr : numeric + ratio of module length to row spacing + tilt : numeric + angle of surface normal from vertical in degrees + shade_line : numeric + fraction of module shaded from bottom, ``f_x = 0`` if shade line at + bottom and no shade, ``f_x = 1`` if shade line at top and all shade + is_rad : bool, default is False + if true, then input arguments are radians + + Returns + ------- + psi_bottom : numeric + 4-quadrant arc-tangent + tan_psi_bottom : numeric + tangent of angle from shade line to bottom of next row + """ + tilt_rad = _to_radians(tilt, is_rad) + x1 = shade_line * np.sin(tilt_rad) + x2 = (shade_line * np.cos(tilt_rad) + 1/gcr) + tan_psi_bottom = x1 / x2 + psi_bottom = np.arctan2(x1, x2) + return psi_bottom, tan_psi_bottom + + def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): """ tangent of angle from shadeline to bottom of adjacent row Parameters ---------- + gcr : numeric + ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees + shade_line : numeric + fraction of module shaded from bottom, ``f_x = 0`` if shade line at + bottom and no shade, ``f_x = 1`` if shade line at top and all shade + is_rad : bool, default is False + if true, then input arguments are radians + Returns + ------- + tan_psi_bottom : numeric + tangent of angle from shade line to bottom of next row """ tilt_rad = _to_radians(tilt, is_rad) return shade_line * np.sin(tilt_rad) / ( @@ -329,9 +422,18 @@ def get_ground_angle_1_tangent(gcr, tilt, is_rad=False): Parameters ---------- + gcr : numeric + ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees + is_rad : bool, default is False + if true, then input arguments are radians + Returns + ------- + tan_psi_bottom_1 : numeric + tangent of angle to bottom of next row with all shade (shade line at + top) """ return get_ground_angle_tangent(gcr, tilt, 1.0, is_rad) @@ -345,6 +447,19 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, ---------- tilt : numeric angle of surface normal from vertical in degrees + ground_angle_tangent : numeric + tangent of angle from shade line to bottom of next row + ground_angle_1_tangent : numeric + tangent of angle to bottom of next row with all shade + is_rad : bool, default is False + if true, then input arguments are radians + + Returns + ------- + f_gnd_pv_shade : numeric + view factor of ground from shaded part of PV surface + f_gnd_pv_noshade : numeric + view factor of ground from unshaded part of PV surface Notes ----- @@ -355,7 +470,8 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, \\left(\\beta - \\psi_{next\\ row\\ bottom \\rightarrow shadeline} \\right)}{1 - \\cos \\beta}}{2}} - At the bottom of rack, the angle is zero, x=0, and the view factor is 1. + At the bottom of rack, ``x = 0``, the angle is zero, and the view factor is + 1. .. math:: \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - @@ -409,7 +525,7 @@ def get_poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, - dhi, poa_ground, poa_beam, is_rad=False): + dhi, poa_ground, poa_sky_diffuse, poa_beam, is_rad=False): """Get irradiance from infinite sheds model.""" solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad @@ -419,9 +535,14 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, f_gnd_sky = get_ground_illumination(gcr, tilt, tanphi, is_rad=True) df = get_diffuse_fraction(ghi, dhi) poa_gnd_sky = get_poa_gnd_sky(poa_ground, f_gnd_sky, df) - f_x = get_shade_line(gcr, tilt, tanphi) - sky_angle_tangent = get_sky_angle_tangent(gcr, tilt, f_x, is_rad=True) - return + f_x = get_shade_line(gcr, tilt, tanphi, is_rad=True) + tan_psi_top = get_sky_angle_tangent(gcr, tilt, f_x, is_rad=True) + tan_psi_top_0 = get_sky_angle_0_tangent(gcr, tilt, is_rad=True) + f_sky_pv_shade, f_sky_pv_noshade = get_f_sky_pv( + tilt, tan_psi_top, tan_psi_top_0, is_rad=True) + poa_sky_pv = get_poa_sky_pv( + poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) + return 0 class InfiniteSheds(): From 29333ddcd223b1c090d8bba8e8e7f8f04b7ffae1 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Thu, 16 May 2019 23:59:46 -0700 Subject: [PATCH 005/115] DOC: fix latex math, use psi_t for top, psi_b for bottom --- pvlib/infinite_sheds.py | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 7d849ed92f..62ac8fe67b 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -101,6 +101,7 @@ def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): .. math:: F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + \\beta &= \\text{tilt} Parameters @@ -232,13 +233,6 @@ def get_sky_angle(gcr, tilt, f_x, is_rad=False): """ angle from shade line to top of next row - .. math:: - - \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} - \\sin{\\beta}}{1 - F_y \\text{GCR} \\cos{\\beta}} \\newline - - F_y &= 1 - F_x - Parameters ---------- gcr : numeric @@ -273,8 +267,8 @@ def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): .. math:: - \\tan{\\psi_t} = \\frac{\\text{GCR} \\sin{\\beta}}{1 - \\text{GCR} - \\cos{\\beta}} + \\tan{\\psi_t\\left(x=0\\right)} = \\frac{\\text{GCR} \\sin{\\beta}} + {1 - \\text{GCR} \\cos{\\beta}} Parameters ---------- @@ -324,17 +318,17 @@ def get_f_sky_pv(tilt, sky_angle_tangent, sky_angle_0_tangent, is_rad=False): approximation slightly. .. math :: - \\large{F_{nextrow \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos - \\left(\\psi_{next\\ row\\ top \\rightarrow shadeline} + \\beta - \\right) + \\cos \\left(\\psi_{next\\ row\\ top \\rightarrow 0} + + \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos + \\left(\\psi_t + \\beta + \\right) + \\cos \\left(\\psi_t\\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} Recall that the view factor from the top of the rack is one because it's view is not obstructued. .. math:: - \\large{F_{nextrow \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + - \\cos \\left(\\psi_{next\\ row\\ top \\rightarrow shadeline} + \\beta + \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + + \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ tilt_rad = _to_radians(tilt, is_rad)[0] @@ -394,6 +388,10 @@ def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): """ tangent of angle from shadeline to bottom of adjacent row + .. math:: + \\tan{\\psi_b} = \\frac{F_x \\sin \\beta}{F_x \\cos \\beta + + \\frac{1}{\\text{GCR}}} + Parameters ---------- gcr : numeric @@ -420,6 +418,10 @@ def get_ground_angle_1_tangent(gcr, tilt, is_rad=False): """ tangent of angle to bottom of next row with all shade (shade line at top) + .. math:: + \\tan{\\psi_b\\left(x=1\\right)} = \\frac{F_x \\sin{\\beta}}{F_x + \\cos{\\beta} + \\frac{1}{\\text{GCR}}} + Parameters ---------- gcr : numeric @@ -467,7 +469,7 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, .. math:: \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos - \\left(\\beta - \\psi_{next\\ row\\ bottom \\rightarrow shadeline} + \\left(\\beta - \\psi_b \\right)}{1 - \\cos \\beta}}{2}} At the bottom of rack, ``x = 0``, the angle is zero, and the view factor is @@ -476,8 +478,8 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, .. math:: \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - \\frac{\\cos \\left(\\beta - - \\psi_{next\\ row\\ bottom \\rightarrow shadeline} \\right) + - \\cos \\left(\\beta - \\psi_{next\\ row\\ bottom \\rightarrow 1} + \\psi_b \\right) + + \\cos \\left(\\beta - \\psi_b\\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ tilt_rad = _to_radians(tilt, is_rad) From 51fe74da779858377db2c4898421655b44b3b732 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sat, 18 May 2019 21:46:00 -0700 Subject: [PATCH 006/115] STY: don't use get_* for standard functions --- docs/sphinx/source/api.rst | 40 +++++------ pvlib/infinite_sheds.py | 141 ++++++++++++++++++------------------- 2 files changed, 90 insertions(+), 91 deletions(-) diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index 558ce05f89..2509286c27 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -548,24 +548,24 @@ Infinte Sheds .. autosummary:: :toctree: generated/ - infinite_sheds.get_solar_projection_tangent - infinite_sheds.get_solar_projection - infinite_sheds.get_ground_illumination - infinite_sheds.get_diffuse_fraction - infinite_sheds.get_poa_gnd_sky - infinite_sheds.get_shade_line - infinite_sheds.get_sky_angle_tangent - infinite_sheds.get_sky_angle - infinite_sheds.get_sky_angle_0_tangent - infinite_sheds.get_f_sky_pv - infinite_sheds.get_poa_sky_pv - infinite_sheds.get_ground_angle - infinite_sheds.get_ground_angle_tangent - infinite_sheds.get_ground_angle_1_tangent - infinite_sheds.get_f_gnd_pv - infinite_sheds.get_poa_gnd_pv - infinite_sheds.get_poa_diffuse_pv - infinite_sheds.get_poa_beam_pv - infinite_sheds.get_poa_global_pv - infinite_sheds.get_poa_global_bifacial + infinite_sheds.solar_projection_tangent + infinite_sheds.solar_projection + infinite_sheds.ground_illumination + infinite_sheds.diffuse_fraction + infinite_sheds.poa_gnd_sky + infinite_sheds.shade_line + infinite_sheds.sky_angle_tangent + infinite_sheds.sky_angle + infinite_sheds.sky_angle_0_tangent + infinite_sheds.f_sky_pv + infinite_sheds.poa_sky_pv + infinite_sheds.ground_angle + infinite_sheds.ground_angle_tangent + infinite_sheds.ground_angle_1_tangent + infinite_sheds.f_gnd_pv + infinite_sheds.poa_gnd_pv + infinite_sheds.poa_diffuse_pv + infinite_sheds.poa_beam_pv + infinite_sheds.poa_global_pv + infinite_sheds.poa_global_bifacial infinite_sheds.InfiniteSheds \ No newline at end of file diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 62ac8fe67b..910cb35424 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -28,7 +28,7 @@ def _to_radians(*params, is_rad=False): return p_rad -def get_solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, +def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -51,17 +51,17 @@ def get_solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, Returns ------- - tanphi : numeric + tan_phi : numeric tangent of the solar projection """ solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( solar_zenith, solar_azimuth, system_azimuth, is_rad) rotation_rad = solar_azimuth_rad - system_azimuth_rad - tanphi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) - return tanphi + tan_phi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) + return tan_phi -def get_solar_projection(solar_zenith, solar_azimuth, system_azimuth, +def solar_projection(solar_zenith, solar_azimuth, system_azimuth, is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -81,7 +81,7 @@ def get_solar_projection(solar_zenith, solar_azimuth, system_azimuth, ------- phi : numeric 4-quadrant arc-tangent of solar projection - tanphi : numeric + tan_phi : numeric tangent of the solar projection """ solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( @@ -89,12 +89,12 @@ def get_solar_projection(solar_zenith, solar_azimuth, system_azimuth, rotation_rad = solar_azimuth_rad - system_azimuth_rad x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) x2 = np.cos(solar_zenith_rad) - tanphi = x1 / x2 + tan_phi = x1 / x2 phi = np.arctan2(x1, x2) - return phi, tanphi + return phi, tan_phi -def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): +def ground_illumination(gcr, tilt, tan_phi, is_rad=False): """ Calculate the fraction of the ground visible from the sky. @@ -110,7 +110,7 @@ def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): ratio of module length to row spacing tilt : numeric angle of module normal from vertical in degrees, if bifacial use front - tanphi : numeric + tan_phi : numeric solar projection tangent is_rad : bool, default is False if true, then input arguments are radians @@ -122,11 +122,11 @@ def get_ground_illumination(gcr, tilt, tanphi, is_rad=False): """ tilt_rad = _to_radians(tilt, is_rad)[0] f_gnd_sky = 1.0 - np.minimum( - 1.0, gcr * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi)) + 1.0, gcr * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi)) return f_gnd_sky # 1 - min(1, abs()) < 1 always -def get_diffuse_fraction(ghi, dhi): +def diffuse_fraction(ghi, dhi): """ ratio of DHI to GHI @@ -145,7 +145,7 @@ def get_diffuse_fraction(ghi, dhi): return dhi/ghi -def get_poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): +def poa_ground_sky(poa_ground, f_gnd_sky, df): """ transposed ground reflected diffuse component adjusted for ground illumination, but not accounting for adjacent rows @@ -156,7 +156,7 @@ def get_poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): transposed ground reflected diffuse component in W/m^2 f_gnd_sky : numeric ground illumination - diffuse_fraction : numeric + df : numeric ratio of DHI to GHI Returns @@ -164,10 +164,10 @@ def get_poa_gnd_sky(poa_ground, f_gnd_sky, diffuse_fraction): poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ - return poa_ground * (f_gnd_sky * (1 - diffuse_fraction) + diffuse_fraction) + return poa_ground * (f_gnd_sky * (1 - df) + df) -def get_shade_line(gcr, tilt, tanphi, is_rad=False): +def shade_line(gcr, tilt, tan_phi, is_rad=False): """ calculate fraction of module shaded from the bottom @@ -182,22 +182,22 @@ def get_shade_line(gcr, tilt, tanphi, is_rad=False): ratio of module length versus row spacing tilt : numeric angle of surface normal from vertical in degrees - tanphi : numeric + tan_phi : numeric solar projection tangent is_rad : bool, default is False if true, then input arguments are radians Returns ------- - Fx : numeric + f_x : numeric fraction of module shaded from the bottom """ tilt_rad = _to_radians(tilt, is_rad)[0] - Fx = 1.0 - 1.0 / gcr / (np.cos(tilt_rad) + np.sin(tilt_rad) * tanphi) - return np.maximum(0.0, np.minimum(Fx, 1.0)) + f_x = 1.0 - 1.0 / gcr / (np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi) + return np.maximum(0.0, np.minimum(f_x, 1.0)) -def get_sky_angle_tangent(gcr, tilt, f_x, is_rad=False): +def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): """ tangent of angle from shade line to top of next row @@ -229,7 +229,7 @@ def get_sky_angle_tangent(gcr, tilt, f_x, is_rad=False): return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) -def get_sky_angle(gcr, tilt, f_x, is_rad=False): +def sky_angle(gcr, tilt, f_x, is_rad=False): """ angle from shade line to top of next row @@ -261,7 +261,7 @@ def get_sky_angle(gcr, tilt, f_x, is_rad=False): -def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): +def sky_angle_0_tangent(gcr, tilt, is_rad=False): """ tangent of angle to top of next row with no shade (shade line at bottom) @@ -284,10 +284,10 @@ def get_sky_angle_0_tangent(gcr, tilt, is_rad=False): tan_psi_top_0 : numeric tangent angle from bottom, ``x = 0``, to top of next row """ - return get_sky_angle_tangent(gcr, tilt, 0.0, is_rad) + return sky_angle_tangent(gcr, tilt, 0.0, is_rad) -def get_f_sky_pv(tilt, sky_angle_tangent, sky_angle_0_tangent, is_rad=False): +def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): """ view factors of sky from shaded and unshaded parts of PV module @@ -295,9 +295,9 @@ def get_f_sky_pv(tilt, sky_angle_tangent, sky_angle_0_tangent, is_rad=False): ---------- tilt : numeric angle of surface normal from vertical in degrees - sky_angle_tangent : numeric + tan_psi_top : numeric tangent of angle from shade line to top of next row - sky_angle_0_tangent : numeric + tan_psi_top_0 : numeric tangent of angle to top of next row with no shade (shade line at bottom) is_rad : bool, default is False @@ -332,28 +332,28 @@ def get_f_sky_pv(tilt, sky_angle_tangent, sky_angle_0_tangent, is_rad=False): \\right)}{1 + \\cos \\beta} }{2}} """ tilt_rad = _to_radians(tilt, is_rad)[0] - sky_angle = np.arctan(sky_angle_tangent) - sky_angle_0 = np.arctan(sky_angle_0_tangent) + psi_top = np.arctan(tan_psi_top) + psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( - (1 + (np.cos(sky_angle + tilt_rad) - + np.cos(sky_angle_0 + tilt_rad)) / 2) / (1 + np.cos(tilt_rad))) + (1 + (np.cos(psi_top + tilt_rad) + + np.cos(psi_top_0 + tilt_rad)) / 2) / (1 + np.cos(tilt_rad))) f_sky_pv_noshade = (1 + ( - 1 + np.cos(sky_angle + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 + 1 + np.cos(psi_top + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 return f_sky_pv_shade, f_sky_pv_noshade -def get_poa_sky_pv(poa_sky_diffuse, shade_line, f_sky_pv_shade, +def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): """ Sky diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. """ return poa_sky_diffuse * ( - shade_line*f_sky_pv_shade + (1 - shade_line)*f_sky_pv_noshade) + f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) -def get_ground_angle(gcr, tilt, shade_line, is_rad=False): +def ground_angle(gcr, tilt, f_x, is_rad=False): """ angle from shadeline to bottom of adjacent row @@ -363,7 +363,7 @@ def get_ground_angle(gcr, tilt, shade_line, is_rad=False): ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees - shade_line : numeric + f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade is_rad : bool, default is False @@ -377,14 +377,14 @@ def get_ground_angle(gcr, tilt, shade_line, is_rad=False): tangent of angle from shade line to bottom of next row """ tilt_rad = _to_radians(tilt, is_rad) - x1 = shade_line * np.sin(tilt_rad) - x2 = (shade_line * np.cos(tilt_rad) + 1/gcr) + x1 = f_x * np.sin(tilt_rad) + x2 = (f_x * np.cos(tilt_rad) + 1/gcr) tan_psi_bottom = x1 / x2 psi_bottom = np.arctan2(x1, x2) return psi_bottom, tan_psi_bottom -def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): +def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): """ tangent of angle from shadeline to bottom of adjacent row @@ -398,7 +398,7 @@ def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees - shade_line : numeric + f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade is_rad : bool, default is False @@ -410,11 +410,11 @@ def get_ground_angle_tangent(gcr, tilt, shade_line, is_rad=False): tangent of angle from shade line to bottom of next row """ tilt_rad = _to_radians(tilt, is_rad) - return shade_line * np.sin(tilt_rad) / ( - shade_line * np.cos(tilt_rad) + 1/gcr) + return f_x * np.sin(tilt_rad) / ( + f_x * np.cos(tilt_rad) + 1/gcr) -def get_ground_angle_1_tangent(gcr, tilt, is_rad=False): +def ground_angle_1_tangent(gcr, tilt, is_rad=False): """ tangent of angle to bottom of next row with all shade (shade line at top) @@ -437,10 +437,10 @@ def get_ground_angle_1_tangent(gcr, tilt, is_rad=False): tangent of angle to bottom of next row with all shade (shade line at top) """ - return get_ground_angle_tangent(gcr, tilt, 1.0, is_rad) + return ground_angle_tangent(gcr, tilt, 1.0, is_rad) -def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, +def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=False): """ view factors of ground from shaded and unshaded parts of PV module @@ -449,9 +449,9 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, ---------- tilt : numeric angle of surface normal from vertical in degrees - ground_angle_tangent : numeric + tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row - ground_angle_1_tangent : numeric + tan_psi_bottom_1 : numeric tangent of angle to bottom of next row with all shade is_rad : bool, default is False if true, then input arguments are radians @@ -483,18 +483,18 @@ def get_f_gnd_pv(tilt, ground_angle_tangent, ground_angle_1_tangent, \\right)}{2}}{1 - \\cos \\beta}} """ tilt_rad = _to_radians(tilt, is_rad) - ground_angle = np.arctan(ground_angle_tangent) - ground_angle_1 = np.arctan(ground_angle_1_tangent) - f_gnd_pv_shade = (1 + (1 - np.cos(tilt_rad - ground_angle)) + psi_bottom = np.arctan(tan_psi_bottom) + psi_bottom_1 = np.arctan(tan_psi_bottom_1) + f_gnd_pv_shade = (1 + (1 - np.cos(tilt_rad - psi_bottom)) / (1 - np.cos(tilt_rad))) / 2 f_gnd_pv_noshade = ( - (1 - (np.cos(tilt_rad - ground_angle) - + np.cos(tilt_rad - ground_angle_1))/2) + (1 - (np.cos(tilt_rad - psi_bottom) + + np.cos(tilt_rad - psi_bottom_1))/2) / (1 - np.cos(tilt_rad))) return f_gnd_pv_shade, f_gnd_pv_noshade -def get_poa_gnd_pv(poa_gnd_sky, shade_line, f_gnd_pv_shade, f_gnd_pv_noshade): +def poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): """ Ground diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. @@ -504,45 +504,44 @@ def get_poa_gnd_pv(poa_gnd_sky, shade_line, f_gnd_pv_shade, f_gnd_pv_noshade): poa_gnd_sky : numeric diffuse ground POA accounting for ground shade but not adjacent rows """ - return poa_gnd_sky * (shade_line*f_gnd_pv_shade - + (1 - shade_line)*f_gnd_pv_noshade) + return poa_gnd_sky * (f_x*f_gnd_pv_shade + (1 - f_x)*f_gnd_pv_noshade) -def get_poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): +def poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): return poa_gnd_pv + poa_sky_pv -def get_poa_beam_pv(poa_beam, iam, shade_line): - return poa_beam * iam * (1 - shade_line) +def poa_direct_pv(poa_direct, iam, f_x): + return poa_direct * iam * (1 - f_x) -def get_poa_global_pv(poa_beam_pv, poa_diffuse_pv): - return poa_beam_pv + poa_diffuse_pv +def poa_global_pv(poa_dir_pv, poa_dif_pv): + return poa_dir_pv + poa_dif_pv -def get_poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, +def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): effects = (1+shade_factor)*(1+transmission_factor) return poa_global_front + poa_global_back * bifaciality * effects def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, - dhi, poa_ground, poa_sky_diffuse, poa_beam, is_rad=False): + dhi, poa_ground, poa_sky_diffuse, poa_direct, is_rad=False): """Get irradiance from infinite sheds model.""" solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad ) - tanphi = get_solar_projection_tangent( + tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth, is_rad=True) - f_gnd_sky = get_ground_illumination(gcr, tilt, tanphi, is_rad=True) - df = get_diffuse_fraction(ghi, dhi) - poa_gnd_sky = get_poa_gnd_sky(poa_ground, f_gnd_sky, df) - f_x = get_shade_line(gcr, tilt, tanphi, is_rad=True) - tan_psi_top = get_sky_angle_tangent(gcr, tilt, f_x, is_rad=True) - tan_psi_top_0 = get_sky_angle_0_tangent(gcr, tilt, is_rad=True) - f_sky_pv_shade, f_sky_pv_noshade = get_f_sky_pv( + f_gnd_sky = ground_illumination(gcr, tilt, tan_phi, is_rad=True) + df = diffuse_fraction(ghi, dhi) + poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df) + f_x = shade_line(gcr, tilt, tan_phi, is_rad=True) + tan_psi_top = sky_angle_tangent(gcr, tilt, f_x, is_rad=True) + tan_psi_top_0 = sky_angle_0_tangent(gcr, tilt, is_rad=True) + f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( tilt, tan_psi_top, tan_psi_top_0, is_rad=True) - poa_sky_pv = get_poa_sky_pv( + poa_sky_pv = poa_sky_diffuse_pv( poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) return 0 From 0af1fc25aaf9bc48de8248349363452f1ffa179c Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 02:07:32 -0700 Subject: [PATCH 007/115] ENH: create class methods to get irradiance, FIXME: front/back poa not defined --- docs/sphinx/source/api.rst | 27 +- pvlib/data/infinite_sheds.csv | 8761 +++++++++++++++++++++++++++++++++ pvlib/infinite_sheds.py | 334 +- 3 files changed, 9022 insertions(+), 100 deletions(-) create mode 100644 pvlib/data/infinite_sheds.csv diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index 2509286c27..de05e61083 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -548,24 +548,33 @@ Infinte Sheds .. autosummary:: :toctree: generated/ - infinite_sheds.solar_projection_tangent infinite_sheds.solar_projection + infinite_sheds.solar_projection_tangent infinite_sheds.ground_illumination infinite_sheds.diffuse_fraction - infinite_sheds.poa_gnd_sky + infinite_sheds.poa_ground_sky infinite_sheds.shade_line - infinite_sheds.sky_angle_tangent infinite_sheds.sky_angle + infinite_sheds.sky_angle_tangent infinite_sheds.sky_angle_0_tangent - infinite_sheds.f_sky_pv - infinite_sheds.poa_sky_pv + infinite_sheds.f_sky_diffuse_pv + infinite_sheds.poa_sky_diffuse_pv infinite_sheds.ground_angle infinite_sheds.ground_angle_tangent infinite_sheds.ground_angle_1_tangent - infinite_sheds.f_gnd_pv - infinite_sheds.poa_gnd_pv + infinite_sheds.f_ground_pv + infinite_sheds.poa_ground_pv infinite_sheds.poa_diffuse_pv - infinite_sheds.poa_beam_pv + infinite_sheds.poa_direct_pv infinite_sheds.poa_global_pv infinite_sheds.poa_global_bifacial - infinite_sheds.InfiniteSheds \ No newline at end of file + infinite_sheds.get_poa_global_bifacial + +Class Methods +------------- + +.. autosummary:: + :toctree: generated/ + + infinite_sheds.InfiniteSheds + infinite_sheds.InfiniteSheds.get_irradiance \ No newline at end of file diff --git a/pvlib/data/infinite_sheds.csv b/pvlib/data/infinite_sheds.csv new file mode 100644 index 0000000000..2db211a157 --- /dev/null +++ b/pvlib/data/infinite_sheds.csv @@ -0,0 +1,8761 @@ +timestamp UTC,apparent_zenith,azimuth,ghi,dni,dhi,poa_global_f,poa_direct_f,poa_diffuse_f,poa_sky_diffuse_f,poa_ground_diffuse_f,poa_global_b,poa_direct_b,poa_diffuse_b,poa_sky_diffuse_b,poa_ground_diffuse_b,solar_zenith,solar_azimuth,tan_phi_f,tan_phi_b,Fsky-gnd,Fsky-gnd,df,POA_gnd-sky_f,POA_gnd-sky_b,Fx_f,Fx_b,psi_top_f,psi_top_b,Fnextrow-sky-front-shade,Fnextrow-sky-front-Noshade,Fnextrow-sky-back-shade,Fnextrow-sky-back-NOshade,POAsky-nextrow-f,POAsky-nextrow-b,psi_bot_f,psi_bot_b,Fnextrow-gnd-front-shade,Fnextrow-gnd-front-Noshade,Fnextrow-gnd-back-shade,Fnextrow-gnd-back-NOshade,POAgnd-nextrow-f,POAgnd-nextrow-b,poa_diffuse_sheds_f,poa_diffuse_sheds_b,poa_beam_sheds_f,poa_beam_sheds_b,cos_aoi_f,AOI_f,cos_aoi_b,AOI_b,iam_f,iam_b,poa_global_sheds_f,poa_global_sheds_b,poa_bifacial_sheds,month,hour,BG +2018-01-01 08:00:00,164.9034207,348.9030137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.87810764,6.089506359,0.041748175,-0.041748175,1,0.523014331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921048053,157.0797842,0.921048053,22.92021583,0,0.995714016,0,0,0,1,0,0% +2018-01-01 09:00:00,161.989496,37.77591193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827250058,0.659314041,0.275043485,-0.275043485,1,0.483118483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983108488,169.4540642,0.983108488,10.54593582,0,0.999140913,0,0,0,1,1,0% +2018-01-01 10:00:00,152.631317,64.82517022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663919024,1.131412658,0.515547605,-0.515547605,1,0.441989857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991100555,172.3503474,0.991100555,7.649652595,0,0.999551032,0,0,0,1,2,0% +2018-01-01 11:00:00,141.3494297,79.63235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467012944,1.389846708,0.788460715,-0.788460715,1,0.395318966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944474914,160.8171758,0.944474914,19.18282416,0,0.997060531,0,0,0,1,3,0% +2018-01-01 12:00:00,129.5681988,89.95619044,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261391675,1.570031706,1.137493917,-1.137493917,1,0.335630773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846401384,147.8223949,0.846401384,32.17760508,0,0.990926373,0,0,0,1,4,0% +2018-01-01 13:00:00,117.7715194,98.59677328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055500778,1.720838326,1.667302389,-1.667302389,1,0.245028189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703553512,134.7128026,0.703553512,45.28719739,0,0.9789322,0,0,0,1,5,0% +2018-01-01 14:00:00,106.2283483,106.7743418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854034437,1.863563821,2.751975557,-2.751975557,1,0.059538152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525654593,121.7123206,0.525654593,58.28767944,0,0.954880504,0,0,0,1,6,0% +2018-01-01 15:00:00,95.17804736,115.2018541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661170302,2.010651659,7.775378981,-7.775378981,1,0,#DIV/0!,0,0,0.444294536,1,0.127908939,0,0.94801306,0.986775023,0.724496596,1,0,0,0.062774769,0.312029739,0.837455753,0.561952349,0.961238037,0.922476074,0,0,0,0,0,0,-0.32481597,108.954426,0.32481597,71.04557404,0,0.896066682,0,0,0,1,7,0% +2018-01-01 16:00:00,84.74625363,124.4289979,33.60029708,180.2608368,17.0944016,16.83223555,0,16.83223555,16.57894232,0.253293232,28.8652617,20.20302138,8.662240318,0.51545928,8.146781038,1.479101155,2.171695698,-6.326179519,6.326179519,0.388005898,0.388005898,0.508757454,0.177143778,5.69755282,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93630997,0.373448494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128340064,5.476704488,16.06465003,5.850152981,0,20.20302138,-0.112076598,96.43503624,0.112076598,83.56496376,0,0.603876538,16.06465003,18.05028359,27.87819964,1,8,74% +2018-01-01 17:00:00,75.72216628,134.9503073,181.926759,537.8365704,49.28329531,98.3329472,49.16428432,49.16866288,47.79722212,1.371440756,45.59632219,0,45.59632219,1.48607319,44.110249,1.321601118,2.355327188,-1.66376966,1.66376966,0.814675058,0.814675058,0.270896352,1.186130185,38.15002403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.94450796,1.076654967,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859347281,36.67125421,46.80385524,37.74790917,49.16428432,0,0.091411196,84.75520262,-0.091411196,95.24479738,0.503021052,0,71.53452526,37.74790917,96.23977686,1,9,35% +2018-01-01 18:00:00,68.28948118,147.1721957,318.5970414,685.4430997,65.03976102,255.3886295,189.9083382,65.48029133,63.07857226,2.401719074,79.20873004,0,79.20873004,1.961188766,77.24754127,1.191876291,2.568639382,-0.557617858,0.557617858,0.625511959,0.625511959,0.204144272,1.685914438,54.22480363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63352296,1.420874585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221439272,52.12294379,61.85496224,53.54381838,189.9083382,0,0.277059231,73.91523144,-0.277059231,106.0847686,0.869533174,0,226.9865623,53.54381838,262.0299206,1,10,15% +2018-01-01 19:00:00,63.12703546,161.2212777,412.2249719,749.6649375,73.36603173,397.5592473,323.2979461,74.26130115,71.15377518,3.107525963,102.1609736,0,102.1609736,2.212256549,99.94871701,1.101774616,2.813842119,0.042060779,-0.042060779,0.522960873,0.522960873,0.177975709,1.888947723,60.75505198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39571517,1.602772339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368536195,58.40006689,69.76425137,60.00283923,323.2979461,0,0.431256592,64.4526669,-0.431256592,115.5473331,0.934059743,0,371.7438479,60.00283923,411.0145062,1,11,11% +2018-01-01 20:00:00,60.8451321,176.6473821,452.6684664,771.9194992,76.6109743,497.1436819,419.4304051,77.71327687,74.30087076,3.412406107,112.064814,0,112.064814,2.31010354,109.7547105,1.061947889,3.083078433,0.513546466,-0.513546466,0.442332072,0.442332072,0.169243011,1.831484327,58.90683163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42082315,1.673662151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32690416,56.6234872,72.74772731,58.29714935,419.4304051,0,0.543360293,57.08731715,-0.543360293,122.9126828,0.957980026,0,474.5536777,58.29714935,512.707996,1,12,8% +2018-01-01 21:00:00,61.77319689,192.3533458,436.3035114,763.2413046,75.31862258,538.6339794,462.2974511,76.33652838,73.04748822,3.289040164,108.0579721,0,108.0579721,2.271134367,105.7868377,1.078145675,3.357199212,0.996910125,-0.996910125,0.359672018,0.359672018,0.172628963,1.546543434,49.74215304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.21602417,1.645429118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.120465453,47.81404953,71.33648962,49.45947865,462.2974511,0,0.605702873,52.72056293,-0.605702873,127.2794371,0.967451275,0,518.586748,49.45947865,550.9569876,1,13,6% +2018-01-01 22:00:00,65.77211302,207.0874781,364.5618841,719.5252163,69.29252857,511.7750416,441.823717,69.95132465,67.20310317,2.748221474,90.48167496,0,90.48167496,2.089425399,88.39224956,1.147939928,3.614358332,1.627531715,-1.627531715,0.251829374,0.251829374,0.190070689,1.082894571,34.82961184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59817896,1.513781589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.784553431,33.47954771,65.38273239,34.9933293,441.823717,0,0.614048969,52.11715089,-0.614048969,127.8828491,0.968573269,0,493.3213744,34.9933293,516.2238085,1,14,5% +2018-01-01 23:00:00,72.31836992,220.1019037,244.3836152,616.186029,57.23090706,407.2827856,349.9353346,57.34745098,55.50518406,1.842266919,60.97935989,0,60.97935989,1.725723008,59.25363688,1.262193665,3.84150291,2.719408319,-2.719408319,0.065107478,0.065107478,0.234184714,0.523286737,16.83070024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.35369416,1.250280444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379119459,16.17830926,53.73281362,17.4285897,349.9353346,0,0.567905337,55.39571266,-0.567905337,124.6042873,0.961957158,0,390.3556135,17.4285897,401.7622769,1,15,3% +2018-01-01 00:00:00,80.75202477,231.3117387,93.44204989,370.5499601,33.89182317,208.0262619,174.4519966,33.5742653,32.86985966,0.704405642,23.67807035,0,23.67807035,1.021963516,22.65610683,1.40938871,4.037151438,5.817788295,-5.817788295,0,0,0.362704192,0.255490879,8.217464915,0.317288103,1,0.170223218,0,0.94280202,0.981563983,0.724496596,1,31.8596135,0.740409089,0.047185005,0.312029739,0.874921185,0.599417781,0.961238037,0.922476074,0.175479243,7.898939842,32.03509274,8.639348931,119.1004534,0,0.470792107,61.91427378,-0.470792107,118.0857262,0.943796011,0,144.4416255,8.639348931,150.0959066,1,16,4% +2018-01-01 01:00:00,90.09314715,241.0375941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572422051,4.206899639,-607.5998407,607.5998407,1,0,#DIV/0!,0,0,1,0.990332172,0,0.001645819,0.961238037,1,0.719840199,0.995343603,0,0,0.115824807,0.306738104,0.724496596,0.448993192,0.96207268,0.923310717,0,0,0,0,0,0,0.336316214,70.34740387,-0.336316214,109.6525961,0.901330391,0,0,0,0,1,17,0% +2018-01-01 02:00:00,101.4413707,249.7496077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770485917,4.35895296,-4.940984311,4.940984311,1,0.624888229,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148818167,81.44155619,-0.148818167,98.55844381,0.714019514,0,0,0,0,1,18,0% +2018-01-01 03:00:00,112.8041787,257.9702063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968804328,4.502429472,-2.355445598,2.355445598,1,0.93295861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.051968182,92.97889936,0.051968182,87.02110064,0,0,0,0,0,1,19,0% +2018-01-01 04:00:00,124.519822,266.3210234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173280878,4.648178725,-1.395341032,1.395341032,1,0.768771059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.262070866,105.1929755,0.262070866,74.80702446,0,0.85921191,0,0,0,1,20,0% +2018-01-01 05:00:00,136.3433689,275.7410052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3796407,4.812588423,-0.859487583,0.859487583,1,0.677134723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467179527,117.8513687,0.467179527,62.1486313,0,0.942974762,0,0,0,1,21,0% +2018-01-01 06:00:00,147.918875,288.1381007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581671394,5.028958557,-0.493024919,0.493024919,1,0.614465916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653323694,130.7926655,0.653323694,49.20733454,0,0.973468259,0,0,0,1,22,0% +2018-01-01 07:00:00,158.3845602,308.5232861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764332059,5.384747161,-0.206897381,0.206897381,1,0.565535226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807824035,143.8838753,0.807824035,36.11612471,0,0.988105333,0,0,0,1,23,0% +2018-01-02 08:00:00,164.7999617,348.5531096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876301938,6.083399381,0.040408095,-0.040408095,1,0.523243498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920155609,156.9488414,0.920155609,23.05115855,0,0.995661365,0,0,0,1,0,0% +2018-01-02 09:00:00,161.9714827,37.33285705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826935667,0.651581275,0.273987347,-0.273987347,1,0.483299094,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982664464,169.3159561,0.982664464,10.68404388,0,0.999117932,0,0,0,1,1,0% +2018-01-02 10:00:00,152.6593763,64.53023968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664408751,1.12626515,0.514682463,-0.514682463,1,0.442137805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991088848,172.3453105,0.991088848,7.654689473,0,0.999550436,0,0,0,1,2,0% +2018-01-02 11:00:00,141.392809,79.42156246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467770056,1.386167762,0.787723822,-0.787723822,1,0.395444982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944849564,160.8826119,0.944849564,19.11738814,0,0.997081523,0,0,0,1,3,0% +2018-01-02 12:00:00,129.6149205,89.78669813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262207123,1.567073507,1.136821617,-1.136821617,1,0.335745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847089735,147.8965298,0.847089735,32.10347024,0,0.990974376,0,0,0,1,4,0% +2018-01-02 13:00:00,117.81565,98.44791913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056271003,1.718240331,1.666543386,-1.666543386,1,0.245157986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704461203,134.7860318,0.704461203,45.21396816,0,0.97902377,0,0,0,1,5,0% +2018-01-02 14:00:00,106.2658112,106.6348717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854688288,1.861129609,2.750271181,-2.750271181,1,0.059829618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526672046,121.7808729,0.526672046,58.21912707,0,0.955064261,0,0,0,1,6,0% +2018-01-02 15:00:00,95.20514452,115.064749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661643237,2.008258722,7.753297076,-7.753297076,1,0,#DIV/0!,0,0,0.443125952,1,0.128269255,0,0.947970405,0.986732368,0.724496596,1,0,0,0.062638469,0.312029739,0.837774948,0.562271544,0.961238037,0.922476074,0,0,0,0,0,0,-0.325825919,109.0156205,0.325825919,70.98437946,0,0.896543823,0,0,0,1,7,0% +2018-01-02 16:00:00,84.75870568,124.2896642,33.31948709,178.0651046,17.05318418,16.79014413,0,16.79014413,16.53896776,0.251176368,28.70661784,20.11370601,8.592911827,0.514216423,8.078695404,1.479318484,2.169263867,-6.362837498,6.362837498,0.381737014,0.381737014,0.511808124,0.175363562,5.640294958,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.8978849,0.372548048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.127050304,5.421666053,16.02493521,5.794214101,0,20.11370601,-0.112957034,96.48580386,0.112957034,83.51419614,0,0.607353815,16.02493521,18.01035019,27.8123492,1,8,74% +2018-01-02 17:00:00,75.716093,134.8065037,181.7651625,536.1289453,49.48776739,98.02391348,48.65816229,49.36575119,47.99552861,1.370222573,45.56330682,0,45.56330682,1.492238777,44.07106805,1.32149512,2.352817343,-1.671957684,1.671957684,0.816075293,0.816075293,0.272262114,1.186819682,38.17220065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.1351277,1.081121914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85984682,36.69257121,46.99497452,37.77369313,48.65816229,0,0.09075832,84.79276583,-0.09075832,95.20723417,0.49908632,0,71.27959767,37.77369313,96.00172435,1,9,35% +2018-01-02 18:00:00,68.25984601,147.0252969,318.8201375,684.2786325,65.36482332,255.1585645,189.3613309,65.7972336,63.39383273,2.403400866,79.27262409,0,79.27262409,1.970990594,77.3016335,1.19135906,2.566075514,-0.563047023,0.563047023,0.626440401,0.626440401,0.205021,1.689658017,54.34520999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.93656332,1.427975976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.224151482,52.23868296,62.1607148,53.66665894,189.3613309,0,0.276731322,73.93478372,-0.276731322,106.0652163,0.869319333,0,226.7761806,53.66665894,261.8999355,1,10,15% +2018-01-02 19:00:00,63.07009543,161.0781124,412.9019959,748.8230515,73.75995617,397.6340556,322.9856046,74.648451,71.53582135,3.112629656,102.3370041,0,102.3370041,2.224134824,100.1128693,1.100780825,2.811343415,0.037039453,-0.037039453,0.52381957,0.52381957,0.178637926,1.895228697,60.9570697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.76295248,1.611378109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.373086739,58.59425401,70.13603922,60.20563212,322.9856046,0,0.431324335,64.44836485,-0.431324335,115.5516352,0.934077953,0,371.8297715,60.20563212,411.2331536,1,11,11% +2018-01-02 20:00:00,60.76033469,176.5198616,453.8106807,771.3161758,77.05060605,497.6416729,419.4934103,78.14826259,74.72724599,3.421016602,112.3550136,0,112.3550136,2.323360059,110.0316536,1.060467895,3.08085278,0.50795425,-0.50795425,0.443288397,0.443288397,0.169785792,1.839857341,59.17613655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83067123,1.683266454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.33297038,56.88235333,73.16364161,58.56561978,419.4934103,0,0.543866994,57.05272805,-0.543866994,122.947272,0.958065758,0,475.0659136,58.56561978,513.3959405,1,12,8% +2018-01-02 21:00:00,61.66455981,192.2529528,437.8807517,762.8858595,75.79014913,539.6193237,462.8135971,76.80572657,73.5047965,3.300930068,108.4546105,0,108.4546105,2.285352632,106.1692579,1.076249601,3.355447022,0.989643683,-0.989643683,0.360914653,0.360914653,0.173083993,1.556487874,50.06200041,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65560629,1.655730202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.127670166,48.12149899,71.78327645,49.7772292,462.8135971,0,0.606661654,52.65149175,-0.606661654,127.3485083,0.967581737,0,519.5932604,49.7772292,552.1714614,1,13,6% +2018-01-02 22:00:00,65.64680223,207.0186025,366.5047533,719.5592694,69.78700703,513.2922835,442.8467446,70.44553892,67.68267128,2.762867643,90.96765644,0,90.96765644,2.104335748,88.86332069,1.145752842,3.613156226,1.616256386,-1.616256386,0.253757569,0.253757569,0.190412284,1.093684733,35.17666053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05915807,1.524584086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792370866,33.81314411,65.85152893,35.3377282,442.8467446,0,0.615441651,52.01598157,-0.615441651,127.9840184,0.96875753,0,494.8626473,35.3377282,517.9904836,1,14,5% +2018-01-02 23:00:00,72.18364054,220.0614603,246.5689245,617.1195706,57.75060794,409.4302592,351.5623044,57.86795474,56.00921403,1.858740704,61.52488434,0,61.52488434,1.741393906,59.78349043,1.259842193,3.840797039,2.696376922,-2.696376922,0.069046079,0.069046079,0.234216895,0.533628129,17.16331495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.83818694,1.261633957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386611763,16.49803117,54.2247987,17.75966513,351.5623044,0,0.569682637,55.27190195,-0.569682637,124.728098,0.962231834,0,392.5092398,17.75966513,404.1325855,1,15,3% +2018-01-02 00:00:00,80.61380137,231.293595,95.53561455,374.2670527,34.49703247,211.1560583,176.9790509,34.17700747,33.45681966,0.720187817,24.20392863,0,24.20392863,1.040212809,23.16371582,1.406976257,4.036834772,5.72998241,-5.72998241,0,0,0.36109081,0.260053202,8.364204914,0.310216867,1,0.172780479,0,0.942474156,0.981236119,0.724496596,1,32.42673449,0.753630639,0.046268514,0.312029739,0.877183667,0.601680263,0.961238037,0.922476074,0.178694535,8.039991911,32.60542903,8.793622551,122.0771642,0,0.472868369,61.77934974,-0.472868369,118.2206503,0.944262329,0,147.8782964,8.793622551,153.6335465,1,16,4% +2018-01-02 01:00:00,89.97613348,241.0361034,0.005689293,1.032316604,0.005259282,0.354308523,0.349164939,0.005143583,0.005100695,4.28883E-05,0.001538022,0,0.001538022,0.000158587,0.001379435,1.570379777,4.206873621,2371.35595,-2371.35595,0,0,0.924417538,3.96467E-05,0.001275174,0.997536919,1,0.0004217,0,0.961200837,0.9999628,0.724496596,1,0.004903279,0.000114896,0.11563229,0.312029739,0.724865662,0.449362258,0.961238037,0.922476074,2.87116E-05,0.001225746,0.004931991,0.001340641,0.000860021,0,0.338234354,70.23066218,-0.338234354,109.7693378,0.902173502,0,0.00570788,0.001340641,0.006585302,1,17,15% +2018-01-02 02:00:00,101.3007827,249.760765,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768032193,4.359147692,-5.004111721,5.004111721,1,0.614092806,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151244393,81.30095218,-0.151244393,98.69904782,0.719409232,0,0,0,0,1,18,0% +2018-01-02 03:00:00,112.6643712,257.9914856,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966364227,4.502800866,-2.371502606,2.371502606,1,0.93570452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04955025,92.84018321,0.04955025,87.15981679,0,0,0,0,0,1,19,0% +2018-01-02 04:00:00,124.3805974,266.3505953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17085095,4.648694852,-1.402416301,1.402416301,1,0.769981002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.259777731,105.0568739,0.259777731,74.94312608,0,0.857527767,0,0,0,1,20,0% +2018-01-02 05:00:00,136.2039063,275.7757088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.37720662,4.813194116,-0.863433685,0.863433685,1,0.677809546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465118918,117.7179185,0.465118918,62.28208152,0,0.94250061,0,0,0,1,21,0% +2018-01-02 06:00:00,147.7779449,288.1654077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5792117,5.029435155,-0.495538296,0.495538296,1,0.614895729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651587169,130.6613748,0.651587169,49.33862521,0,0.973264296,0,0,0,1,22,0% +2018-01-02 07:00:00,158.2436012,308.4804519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.761871862,5.383999564,-0.208639517,0.208639517,1,0.565833148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806480699,143.7534976,0.806480699,36.24650244,0,0.988002236,0,0,0,1,23,0% +2018-01-03 08:00:00,164.6887868,348.217291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.874361571,6.07753824,0.039130641,-0.039130641,1,0.523461956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919247375,156.8163002,0.919247375,23.18369985,0,0.995607677,0,0,0,1,0,0% +2018-01-03 09:00:00,161.9454058,36.88155813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826480539,0.643704623,0.273016763,-0.273016763,1,0.483465073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982203186,169.1743255,0.982203186,10.82567453,0,0.999094036,0,0,0,1,1,0% +2018-01-03 10:00:00,152.6811078,64.22381544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664788037,1.120917038,0.513933382,-0.513933382,1,0.442265905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991055509,172.330983,0.991055509,7.669016976,0,0.999548739,0,0,0,1,2,0% +2018-01-03 11:00:00,141.4307357,79.2012994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468432001,1.382323446,0.787151012,-0.787151012,1,0.395542939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945195592,160.9432406,0.945195592,19.05675937,0,0.997100896,0,0,0,1,3,0% +2018-01-03 12:00:00,129.6564834,89.60944613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262932531,1.563979876,1.136402133,-1.136402133,1,0.335817479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847740343,147.9667406,0.847740343,32.03325937,0,0.991019676,0,0,0,1,4,0% +2018-01-03 13:00:00,117.8546078,98.29248608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056950945,1.715527512,1.666240531,-1.666240531,1,0.245209777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705320532,134.8554452,0.705320532,45.1445548,0,0.979110245,0,0,0,1,5,0% +2018-01-03 14:00:00,106.2979008,106.4896593,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855248357,1.858595175,2.749717125,-2.749717125,1,0.059924367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.527629752,121.8454461,0.527629752,58.15455386,0,0.95523658,0,0,0,1,6,0% +2018-01-03 15:00:00,95.22653801,114.9225606,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662016623,2.005777068,7.740566681,-7.740566681,1,0,#DIV/0!,0,0,0.442450018,1,0.128477899,0,0.947945691,0.986707654,0.724496596,1,0,0,0.062559572,0.312029739,0.83795978,0.562456376,0.961238037,0.922476074,0,0,0,0,0,0,-0.326764748,109.0725261,0.326764748,70.92747393,0,0.896984718,0,0,0,1,7,0% +2018-01-03 16:00:00,84.76517326,124.1458739,33.11498782,176.1985456,17.03900199,16.77484798,0,16.77484798,16.52521322,0.249634766,28.58691977,20.0440188,8.542900967,0.513788777,8.02911219,1.479431364,2.166754252,-6.392963985,6.392963985,0.376585081,0.376585081,0.514540488,0.174084626,5.59915998,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.88466351,0.37223822,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126123719,5.382125547,16.01078723,5.754363767,0,20.0440188,-0.11375814,96.53200165,0.11375814,83.46799835,0,0.610471013,16.01078723,17.99065623,27.78531192,1,8,74% +2018-01-03 17:00:00,75.70344125,134.6589925,181.7234434,534.6023316,49.70830944,97.79815425,48.21882567,49.57932858,48.2094205,1.369908077,45.5598417,0,45.5598417,1.498888934,44.06095277,1.321274305,2.350242786,-1.679551262,1.679551262,0.817373871,0.817373871,0.273538232,1.188161139,38.2153465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.34072872,1.08593993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.8608187,36.73404465,47.20154742,37.81998458,48.21882567,0,0.090195689,84.82513497,-0.090195689,95.17486503,0.495649781,0,71.10119779,37.81998458,95.8536213,1,9,35% +2018-01-03 18:00:00,68.22315532,146.8757403,319.1725962,683.2232005,65.70186511,255.0385271,188.9117578,66.12676931,63.72071146,2.406057849,79.36824485,0,79.36824485,1.981153647,77.3870912,1.190718686,2.56346526,-0.568365748,0.568365748,0.627349957,0.627349957,0.205850583,1.694009536,54.48516979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.25077159,1.435339073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227304142,52.37321765,62.47807573,53.80855672,188.9117578,0,0.276500795,73.9485283,-0.276500795,106.0514717,0.869168693,0,226.6742614,53.80855672,261.8908856,1,10,16% +2018-01-03 19:00:00,63.00577216,160.9337883,413.7103397,748.0621341,74.1643875,397.8309514,322.7841705,75.04678087,71.92805758,3.118723293,102.5451916,0,102.5451916,2.236329921,100.3088616,1.099658172,2.808824484,0.031992552,-0.031992552,0.524682641,0.524682641,0.179266459,1.902081582,61.17748204,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.13998486,1.620213415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378051631,58.80612274,70.51803649,60.42633615,322.7841705,0,0.431493797,64.43760235,-0.431493797,115.5623977,0.934123479,0,372.0383088,60.42633615,411.5861373,1,11,11% +2018-01-03 20:00:00,60.6681226,176.3930915,455.0817144,770.7829737,77.50013574,498.2672565,419.6734377,78.59381889,75.1632207,3.430598191,112.6767455,0,112.6767455,2.336915038,110.3398304,1.05885849,3.078640225,0.502265452,-0.502265452,0.444261239,0.444261239,0.170299384,1.848760369,59.46248854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.24974671,1.69308699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339420594,57.15760575,73.5891673,58.85069274,419.6734377,0,0.544476788,57.0110836,-0.544476788,122.9889164,0.958168721,0,475.7071282,58.85069274,514.2237295,1,12,8% +2018-01-03 21:00:00,61.54886564,192.1552841,439.580686,762.5993652,76.27142918,540.7336174,463.4483084,77.28530907,73.97156418,3.313744891,108.8812916,0,108.8812916,2.299865001,106.5814266,1.074230356,3.353742383,0.982216162,-0.982216162,0.362184833,0.362184833,0.173509509,1.566910336,50.39722263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.10428114,1.666244365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.135221205,48.44372734,72.23950234,50.1099717,463.4483084,0,0.607721865,52.57503938,-0.607721865,127.4249606,0.967725521,0,520.7302579,50.1099717,553.5262321,1,13,6% +2018-01-03 22:00:00,65.51511894,206.9540478,368.5609988,719.6697298,70.29163963,514.9371562,443.9867004,70.95045583,68.17208734,2.77836849,91.48143349,0,91.48143349,2.119552283,89.3618812,1.143454535,3.612029535,1.604730504,-1.604730504,0.255728611,0.255728611,0.190719148,1.104888845,35.5370233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5296034,1.535608414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800488207,34.15953851,66.33009161,35.69514692,443.9867004,0,0.616931187,51.90762185,-0.616931187,128.0923782,0.968953684,0,496.5326405,35.69514692,519.8944003,1,14,5% +2018-01-03 23:00:00,72.04337504,220.0263865,248.8552109,618.1482791,58.28199999,411.7029638,353.3024055,58.40055835,56.52458265,1.875975697,62.09524438,0,62.09524438,1.757417337,60.33782704,1.257394099,3.840184886,2.672944069,-2.672944069,0.073053333,0.073053333,0.23420044,0.544304313,17.50669774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.33357886,1.273242878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394346622,16.82810376,54.72792548,18.10134664,353.3024055,0,0.571549606,55.14164465,-0.571549606,124.8583553,0.96251853,0,394.7880373,18.10134664,406.6350066,1,15,3% +2018-01-03 00:00:00,80.47086276,231.2814521,97.71462829,378.1119137,35.11852199,214.4088205,179.6126374,34.79618312,34.05956898,0.736614143,24.75099594,0,24.75099594,1.058953012,23.69204293,1.404481507,4.036622838,5.642057499,-5.642057499,0,0,0.359398819,0.264738253,8.514892245,0.302987727,1,0.175418572,0,0.942134397,0.98089636,0.724496596,1,33.00889805,0.767207852,0.045325966,0.312029739,0.879517409,0.604014005,0.961238037,0.922476074,0.182004413,8.184838306,33.19090247,8.952046158,125.1922126,0,0.475025068,61.63901781,-0.475025068,118.3609822,0.944742397,0,151.4652935,8.952046158,157.3242287,1,16,4% +2018-01-03 01:00:00,89.85522564,241.0410517,0.04180317,1.380137223,0.038315858,0.507027124,0.4695515,0.037475623,0.037160493,0.00031513,0.011291027,0,0.011291027,0.001155364,0.010135663,1.568269538,4.206959985,390.9301487,-390.9301487,0,0,0.916577807,0.000288841,0.009290123,0.9851462,1,0.002557996,0,0.961011723,0.999773686,0.724496596,1,0.035733065,0.000837058,0.114659066,0.312029739,0.726735965,0.45123256,0.961238037,0.922476074,0.000208729,0.00893002,0.035941794,0.009767078,0.006974624,0,0.34022088,70.10966816,-0.34022088,109.8903318,0.903036651,0,0.042240136,0.009767078,0.048632493,1,17,15% +2018-01-03 02:00:00,101.1567586,249.7788025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765518498,4.359462506,-5.070412186,5.070412186,1,0.602754759,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153729113,81.15690359,-0.153729113,98.84309641,0.724752563,0,0,0,0,1,18,0% +2018-01-03 03:00:00,112.5215388,258.0202501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963871332,4.503302901,-2.388060151,2.388060151,1,0.938536027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047085179,92.69877985,0.047085179,87.30122015,0,0,0,0,0,1,19,0% +2018-01-03 04:00:00,124.2385698,266.3885933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168372101,4.649358043,-1.409628218,1.409628218,1,0.771214312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.257447966,104.9186872,0.257447966,75.0813128,0,0.855785997,0,0,0,1,20,0% +2018-01-03 05:00:00,136.0616047,275.8203721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374722988,4.813973638,-0.867409729,0.867409729,1,0.67848949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463030618,117.5828413,0.463030618,62.41715869,0,0.94201578,0,0,0,1,21,0% +2018-01-03 06:00:00,147.6337028,288.2052425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576694201,5.030130404,-0.498035894,0.498035894,1,0.615322843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649829709,130.5287639,0.649829709,49.47123609,0,0.973056765,0,0,0,1,22,0% +2018-01-03 07:00:00,158.0979508,308.4541204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759329782,5.383539993,-0.210339209,0.210339209,1,0.566123813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805120536,143.6218977,0.805120536,36.37810226,0,0.987897498,0,0,0,1,23,0% +2018-01-04 08:00:00,164.5700037,347.8960104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.872288415,6.071930836,0.037916926,-0.037916926,1,0.523669513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918323494,156.6822059,0.918323494,23.3177941,0,0.995552956,0,0,0,1,0,0% +2018-01-04 09:00:00,161.9111996,36.42290178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82588353,0.635699559,0.272132661,-0.272132661,1,0.483616264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981724429,169.0292391,0.981724429,10.97076094,0,0.999069211,0,0,0,1,1,0% +2018-01-04 10:00:00,152.6964019,63.90624456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665054969,1.11537438,0.513301138,-0.513301138,1,0.442374025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990999977,172.3071778,0.990999977,7.692822192,0,0.999545912,0,0,0,1,2,0% +2018-01-04 11:00:00,141.4631114,78.97174068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468997064,1.378316891,0.786742918,-0.786742918,1,0.395612727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945512157,160.9988704,0.945512157,19.00112964,0,0.997118607,0,0,0,1,3,0% +2018-01-04 12:00:00,129.6928042,89.42455949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263566449,1.560752995,1.136235909,-1.136235909,1,0.335845905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848352162,148.0328913,0.848352162,31.96710873,0,0.991062212,0,0,0,1,4,0% +2018-01-04 13:00:00,117.8883239,98.13057701,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057539402,1.712701666,1.666393834,-1.666393834,1,0.245183561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706130334,134.9209345,0.706130334,45.0790655,0,0.979191542,0,0,0,1,5,0% +2018-01-04 14:00:00,106.3245622,106.338797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855713686,1.85596213,2.750310972,-2.750310972,1,0.059822813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.528526516,121.9059514,0.528526516,58.0940486,0,0.955397367,0,0,0,1,6,0% +2018-01-04 15:00:00,95.24218731,114.7753758,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662289755,2.003208208,7.73707592,-7.73707592,1,0,#DIV/0!,0,0,0.442264385,1,0.128535229,0,0.947938899,0.986700862,0.724496596,1,0,0,0.062537897,0.312029739,0.838010566,0.562507162,0.961238037,0.922476074,0,0,0,0,0,0,-0.327631337,109.1250702,0.327631337,70.87492978,0,0.897389446,0,0,0,1,7,0% +2018-01-04 16:00:00,84.76563236,123.9977095,32.98641981,174.658629,17.05232643,16.78680144,0,16.78680144,16.53813588,0.248665566,28.50687218,19.99474224,8.512129945,0.514190558,7.997939386,1.479439377,2.164168295,-6.41638496,6.41638496,0.372579859,0.372579859,0.5169499,0.17330116,5.573961013,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89708526,0.372529309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.1255561,5.357903342,16.02264136,5.730432651,0,19.99474224,-0.114478983,96.57357452,0.114478983,83.42642548,0,0.613238608,16.02264136,17.99198055,27.7980328,1,8,73% +2018-01-04 17:00:00,75.68420123,134.5078522,181.8016326,533.2570039,49.94519945,97.65562477,47.84595986,49.80966491,48.43916741,1.3704975,45.58594269,0,45.58594269,1.506032042,44.07991065,1.320938503,2.34760489,-1.686533902,1.686533902,0.818567973,0.818567973,0.274723603,1.190155972,38.27950719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.56157019,1.091115087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86226395,36.79571835,47.42383414,37.88683343,47.84595986,0,0.089724016,84.85226987,-0.089724016,95.14773013,0.492735598,0,70.9992418,37.88683343,95.79541655,1,9,35% +2018-01-04 18:00:00,68.17941492,146.7235996,319.6541678,682.2765992,66.05100367,255.0284635,188.5594531,66.46901035,64.05932221,2.409688139,79.49553527,0,79.49553527,1.991681463,77.50385381,1.189955272,2.560809903,-0.573565431,0.573565431,0.628239155,0.628239155,0.2066327,1.698967737,54.64464257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57625712,1.44296644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230896342,52.52650895,62.80715347,53.96947539,188.5594531,0,0.27636805,73.95644241,-0.27636805,106.0435576,0.869081837,0,226.6807493,53.96947539,262.0026915,1,10,16% +2018-01-04 19:00:00,62.93408622,160.7883747,414.6493912,747.3816437,74.57936508,398.1495797,322.6932554,75.45632432,72.33052206,3.125802259,102.7853886,0,102.7853886,2.248843026,100.5365455,1.098407016,2.806286537,0.026927519,-0.026927519,0.525548813,0.525548813,0.179861268,1.909503227,61.41618764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52684903,1.629279117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383428588,59.03557564,70.91027761,60.66485476,322.6932554,0,0.431765027,64.42037458,-0.431765027,115.5796254,0.934196271,0,372.3691135,60.66485476,412.0730477,1,11,11% +2018-01-04 20:00:00,60.56853062,176.2671409,456.4805993,770.3190243,77.95955105,499.0196543,419.9697278,79.04992652,75.60878294,3.441143575,113.0297743,0,113.0297743,2.350768104,110.6790062,1.057120282,3.076441971,0.496488389,-0.496488389,0.445249175,0.445249175,0.170783931,1.858188973,59.76574487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.67803809,1.703123489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346251586,57.44910727,74.02428967,59.15223076,419.9697278,0,0.54518935,56.96239594,-0.54518935,123.0376041,0.958288744,0,476.4765526,59.15223076,515.1905046,1,12,8% +2018-01-04 21:00:00,61.42616384,192.0604105,441.4020402,762.3804869,76.76240507,541.9755894,464.2003791,77.77521036,74.44773533,3.327475028,109.3377048,0,109.3377048,2.314669736,107.023035,1.072088806,3.352086526,0.97463883,-0.97463883,0.363480633,0.363480633,0.173905868,1.57780576,50.7476569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56199496,1.676970344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143114902,48.78057809,72.70510986,50.45754844,464.2003791,0,0.608882818,52.49123282,-0.608882818,127.5087672,0.967882393,0,521.9964836,50.45754844,555.0199399,1,13,6% +2018-01-04 22:00:00,65.37712713,206.8938814,370.7291354,719.8543974,70.80631247,516.7078158,445.2418621,71.46595372,68.6712409,2.794712819,92.02264259,0,92.02264259,2.135071569,89.88757102,1.141046124,3.610979432,1.59297291,-1.59297291,0.257739278,0.257739278,0.190992036,1.116502205,35.91054888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.0094088,1.546852083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.808902047,34.5185855,66.81831084,36.06543759,445.2418621,0,0.618516555,51.79211379,-0.618516555,128.2078862,0.96916142,0,498.3295462,36.06543759,521.9336537,1,14,5% +2018-01-04 23:00:00,71.89764921,219.9967383,251.2409695,619.2679711,58.82485673,414.0982777,355.1532469,58.94503081,57.05107026,1.893960553,62.69006829,0,62.69006829,1.773786471,60.91628182,1.254850703,3.839667426,2.649152889,-2.649152889,0.077121864,0.077121864,0.234137198,0.555312956,17.86077355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.83965877,1.28510226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.402322347,17.16845491,55.24198112,18.45355717,355.1532469,0,0.57350495,55.00499997,-0.57350495,124.995,0.962816794,0,397.1894918,18.45355717,409.2669759,1,15,3% +2018-01-04 00:00:00,80.32329068,231.2753494,99.97827746,382.0754033,35.75572798,217.7808275,182.3495882,35.43123935,34.67756086,0.753678486,25.319058,0,25.319058,1.078167123,24.24089088,1.401905888,4.036516326,5.554194386,-5.554194386,0,0,0.357634967,0.269541781,8.669390215,0.295610699,1,0.178135666,0,0.94178284,0.980544803,0.724496596,1,33.60555095,0.781128411,0.044358257,0.312029739,0.881920763,0.606417359,0.961238037,0.922476074,0.18540677,8.333347631,33.79095772,9.114476042,128.4450989,0,0.477260736,61.49335133,-0.477260736,118.5066487,0.945235463,0,155.2018203,9.114476042,161.1670626,1,16,4% +2018-01-04 01:00:00,89.73022431,241.0524608,0.093913342,1.833349125,0.085281097,0.710934259,0.627516744,0.083417516,0.082709557,0.000707958,0.025341917,0,0.025341917,0.00257154,0.022770377,1.566087853,4.207159111,209.7970269,-209.7970269,0,0,0.908082869,0.000642885,0.020677389,0.972487603,1,0.004766476,0,0.960815058,0.999577021,0.724496596,1,0.079556792,0.001863072,0.113656543,0.312029739,0.728670561,0.453167157,0.961238037,0.922476074,0.000463578,0.019875893,0.080020371,0.021738965,0.01726449,0,0.342278912,69.98422134,-0.342278912,110.0157787,0.903920302,0,0.095626094,0.021738965,0.109853811,1,17,15% +2018-01-04 02:00:00,101.0093871,249.803724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76294638,4.359897468,-5.140027668,5.140027668,1,0.590849811,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.156270675,81.00950136,-0.156270675,98.99049864,0.730042336,0,0,0,0,1,18,0% +2018-01-04 03:00:00,112.3757682,258.0564845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961327155,4.50393531,-2.405123004,2.405123004,1,0.941453947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.044574544,92.55477976,0.044574544,87.44522024,0,0,0,0,0,1,19,0% +2018-01-04 04:00:00,124.0938225,266.4349787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165845784,4.650167621,-1.416975028,1.416975028,1,0.772470691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255082977,104.778502,0.255082977,75.22149799,0,0.853985352,0,0,0,1,20,0% +2018-01-04 05:00:00,135.9165434,275.8749209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372191191,4.814925693,-0.871413711,0.871413711,1,0.679174211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.460915784,117.4462172,0.460915784,62.55378282,0,0.941520313,0,0,0,1,21,0% +2018-01-04 06:00:00,147.4862275,288.2574694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574120271,5.031041934,-0.50051604,0.50051604,1,0.615746973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648052157,130.3949033,0.648052157,49.60509667,0,0.972845716,0,0,0,1,22,0% +2018-01-04 07:00:00,157.9477024,308.4440799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756707452,5.383364752,-0.211995099,0.211995099,1,0.566406987,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803744033,143.4891333,0.803744033,36.51086666,0,0.98779114,0,0,0,1,23,0% +2018-01-05 08:00:00,164.4437219,347.5896562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.870084382,6.066583946,0.036768063,-0.036768063,1,0.523865981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917384077,156.5465991,0.917384077,23.45340087,0,0.995497201,0,0,0,1,0,0% +2018-01-05 09:00:00,161.8688051,35.95779358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825143606,0.62758189,0.271335969,-0.271335969,1,0.483752506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981227938,168.8807536,0.981227938,11.11924638,0,0.99904344,0,0,0,1,1,0% +2018-01-05 10:00:00,152.7051504,63.57789562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66520766,1.10964361,0.512786517,-0.512786517,1,0.442462031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990921664,172.2737305,0.990921664,7.726269483,0,0.999541925,0,0,0,1,2,0% +2018-01-05 11:00:00,141.4898383,78.73307702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469463537,1.374151424,0.786500203,-0.786500203,1,0.395654233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945798391,161.0493056,0.945798391,18.95069444,0,0.997134611,0,0,0,1,3,0% +2018-01-05 12:00:00,129.7238001,89.23216997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264107431,1.557395165,1.136323488,-1.136323488,1,0.335830929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848924122,148.0948431,0.848924122,31.90515689,0,0.991101921,0,0,0,1,4,0% +2018-01-05 13:00:00,117.9167301,97.96229917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058035184,1.709764663,1.667003659,-1.667003659,1,0.245079274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706889423,134.9823905,0.706889423,45.01760953,0,0.979267579,0,0,0,1,5,0% +2018-01-05 14:00:00,106.3457416,106.1823801,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856083336,1.85323214,2.752052243,-2.752052243,1,0.059525038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529361139,121.9622997,0.529361139,58.03770031,0,0.955546523,0,0,0,1,6,0% +2018-01-05 15:00:00,95.25205334,114.6232832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66246195,2.000553691,7.742772304,-7.742772304,1,0,#DIV/0!,0,0,0.442567245,1,0.128441702,0,0.947949979,0.986711943,0.724496596,1,0,0,0.062573258,0.312029739,0.837927714,0.56242431,0.961238037,0.922476074,0,0,0,0,0,0,-0.328424568,109.1731811,0.328424568,70.82681893,0,0.89775804,0,0,0,1,7,0% +2018-01-05 16:00:00,84.76005988,123.8452551,32.93356966,173.442703,17.09360682,16.82643866,0,16.82643866,16.5781715,0.248267159,28.46704718,19.96648661,8.500560571,0.515435314,7.985125257,1.479342119,2.161507465,-6.432972264,6.432972264,0.369743263,0.369743263,0.51903292,0.173009254,5.564572336,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93556903,0.373431131,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125344616,5.348878588,16.06091365,5.722309718,0,19.96648661,-0.115118631,96.61046757,0.115118631,83.38953243,0,0.615665441,16.06091365,18.01498551,27.85136136,1,8,73% +2018-01-05 17:00:00,75.65836489,134.3531621,181.9997472,532.0928822,50.19868975,97.59630501,47.5393,50.05700501,48.68501404,1.371990971,45.64162154,0,45.64162154,1.513675709,44.12794583,1.320487574,2.34490504,-1.69289093,1.69289093,0.819655089,0.819655089,0.27581736,1.192805309,38.36471899,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.79788732,1.096652899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864183386,36.87762717,47.6620707,37.97428006,47.5393,0,0.089343988,84.87413167,-0.089343988,95.12586833,0.490365253,0,70.97369159,37.97428006,95.82709841,1,9,35% +2018-01-05 18:00:00,68.12863247,146.5689486,320.2645589,681.4384348,66.41234133,255.1282905,188.3042368,66.82405373,64.4097642,2.414289525,79.65442733,0,79.65442733,2.002577126,77.6518502,1.189068951,2.558110734,-0.578637764,0.578637764,0.629106575,0.629106575,0.207367127,1.704531087,54.82357904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.9131153,1.450860311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23492697,52.69850949,63.14804227,54.1493698,188.3042368,0,0.276333455,73.95850488,-0.276333455,106.0414951,0.869059187,0,226.7955692,54.1493698,262.2352487,1,10,16% +2018-01-05 19:00:00,62.85506021,160.6419413,415.7184825,746.7809118,75.00491658,398.5895339,322.7124308,75.87710312,72.7432416,3.133861521,103.0574341,0,103.0574341,2.261674973,100.7957591,1.097027752,2.803730792,0.021851776,-0.021851776,0.526416816,0.526416816,0.180422377,1.917490212,61.67307655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.92357075,1.638575819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.389215131,59.28250703,71.31278588,60.92108285,322.7124308,0,0.432138028,64.3966785,-0.432138028,115.6033215,0.934296228,0,372.8217926,60.92108285,412.6934229,1,11,11% +2018-01-05 20:00:00,60.46159571,176.1420794,458.0063055,769.9233591,78.42882889,499.8980227,420.3814674,79.51655532,76.06391033,3.452644993,113.4138499,0,113.4138499,2.364918563,111.0489314,1.055253916,3.074259237,0.490631425,-0.490631425,0.446250774,0.446250774,0.171239627,1.868138458,60.08575448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.11552384,1.713375448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353459953,57.75671268,74.46898379,59.47008813,420.3814674,0,0.546004303,56.90667904,-0.546004303,123.093321,0.95842563,0,477.3733566,59.47008813,516.2953399,1,12,8% +2018-01-05 21:00:00,61.2965063,191.9684037,443.3434767,762.2278023,77.26300828,543.3438958,465.0685419,78.27535391,74.93324351,3.342110396,109.8235235,0,109.8235235,2.32976477,107.4937588,1.069825855,3.350480705,0.96692301,-0.96692301,0.364800116,0.364800116,0.174273475,1.589168839,51.1131326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.02868389,1.687906645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.151347414,49.13188724,73.1800313,50.81979389,465.0685419,0,0.610143766,52.40010109,-0.610143766,127.5998989,0.968052101,0,523.3906102,50.81979389,556.6511489,1,13,6% +2018-01-05 22:00:00,65.23289351,206.8381713,373.0076166,720.1109939,71.33089992,518.6023433,446.6104442,71.99189907,69.1800101,2.811888973,92.590905,0,92.590905,2.150889815,90.44001519,1.138528772,3.610007109,1.581002405,-1.581002405,0.259786355,0.259786355,0.191231752,1.128519885,36.29707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.4984571,1.558312349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817608815,34.89013272,67.31606591,36.44844507,446.6104442,0,0.620196675,51.66950183,-0.620196675,128.3304982,0.969380413,0,500.2514826,36.44844507,524.106261,1,14,5% +2018-01-05 23:00:00,71.74654157,219.9725714,253.7246369,620.474417,59.37893841,416.6135126,357.1123847,59.50112782,57.58844433,1.912683487,63.30896982,0,63.30896982,1.790494078,61.51847574,1.252213377,3.839245635,2.625045718,-2.625045718,0.081244433,0.081244433,0.234029061,0.566651486,18.22545965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.35620318,1.297206865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410537073,17.51900505,55.76674025,18.81621192,357.1123847,0,0.575547315,54.86202998,-0.575547315,125.13797,0.963126169,0,399.7110234,18.81621192,412.0258577,1,15,3% +2018-01-05 00:00:00,80.17116955,231.2753255,102.3256649,386.1484389,36.40807162,221.268301,185.186693,36.08160802,35.31023393,0.771374085,25.90787984,0,25.90787984,1.097837691,24.81004215,1.399250874,4.036515909,5.46656136,-5.46656136,0,0,0.355805864,0.274459423,8.827558483,0.288095789,1,0.180929871,0,0.941419591,0.980181554,0.724496596,1,34.21612499,0.79537967,0.043366299,0.312029739,0.884392027,0.608888623,0.961238037,0.922476074,0.18889944,8.485384986,34.40502443,9.280764656,131.8351866,0,0.479573849,61.3424269,-0.479573849,118.6575731,0.94574077,0,159.0869354,9.280764656,165.1610103,1,16,4% +2018-01-05 01:00:00,89.60098229,241.0703508,0.166578814,2.417409262,0.149743695,0.979065687,0.832581576,0.146484111,0.14522837,0.001255741,0.044904287,0,0.044904287,0.004515325,0.040388962,1.563832154,4.207471351,141.849397,-141.849397,0,0,0.89893601,0.001128831,0.036307092,0.959559231,1,0.007049614,0,0.960610504,0.999372468,0.724496596,1,0.139735552,0.003271338,0.11262393,0.312029739,0.730671694,0.45516829,0.961238037,0.922476074,0.000812228,0.034899758,0.14054778,0.038171096,0.033670239,0,0.344410683,69.85417415,-0.344410683,110.1458258,0.90482448,0,0.171013437,0.038171096,0.195995656,1,17,15% +2018-01-05 02:00:00,100.8587585,249.8355312,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760317416,4.360452608,-5.213110692,5.213110692,1,0.578351877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158867383,80.85883882,-0.158867383,99.14116118,0.735272085,0,0,0,0,1,18,0% +2018-01-05 03:00:00,112.2271471,258.1001708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958733228,4.504697781,-2.42269599,2.42269599,1,0.944459104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.042019956,92.40827522,0.042019956,87.59172478,0,0,0,0,0,1,19,0% +2018-01-05 04:00:00,123.946439,266.4897092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163273457,4.651122848,-1.424454869,1.424454869,1,0.773749819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.252684194,104.636406,0.252684194,75.36359399,0,0.852124545,0,0,0,1,20,0% +2018-01-05 05:00:00,135.7688013,275.9392764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369612604,4.816048909,-0.875443561,0.875443561,1,0.679863356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.458775583,117.3081263,0.458775583,62.69187368,0,0.941014252,0,0,0,1,21,0% +2018-01-05 06:00:00,147.3355959,288.3219452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571491254,5.032167249,-0.502977023,0.502977023,1,0.616167826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.646255354,130.259863,0.646255354,49.74013703,0,0.972631202,0,0,0,1,22,0% +2018-01-05 07:00:00,157.7929473,308.4501006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754006467,5.383469834,-0.213605809,0.213605809,1,0.566682434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802351663,143.3552601,0.802351663,36.6447399,0,0.987683185,0,0,0,1,23,0% +2018-01-06 08:00:00,164.3100537,347.2985568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86775143,6.061503303,0.035685176,-0.035685176,1,0.524051165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916429214,156.4095167,0.916429214,23.59048327,0,0.995440412,0,0,0,1,0,0% +2018-01-06 09:00:00,161.8181703,35.48715831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824259861,0.619367755,0.270627625,-0.270627625,1,0.48387364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980713431,168.728918,0.980713431,11.27108197,0,0.999016707,0,0,0,1,1,0% +2018-01-06 10:00:00,152.7072468,63.23916161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665244249,1.103731586,0.512390315,-0.512390315,1,0.442529785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.99081995,172.230502,0.99081995,7.769498012,0,0.999536745,0,0,0,1,2,0% +2018-01-06 11:00:00,141.5108189,78.48551289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469829717,1.369830615,0.786423564,-0.786423564,1,0.395667339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946053397,161.0943473,0.946053397,18.90565274,0,0.997148861,0,0,0,1,3,0% +2018-01-06 12:00:00,129.7493889,89.03241804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264554038,1.553908836,1.136665512,-1.136665512,1,0.335772439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849455123,148.152455,0.849455123,31.84754504,0,0.991138739,0,0,0,1,4,0% +2018-01-06 13:00:00,117.9397589,97.78776591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058437112,1.706718483,1.668070718,-1.668070718,1,0.244896797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707596591,135.0397023,0.707596591,44.96029766,0,0.979338269,0,0,0,1,5,0% +2018-01-06 14:00:00,106.3613862,106.0205085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856356386,1.850406947,2.754942387,-2.754942387,1,0.059030795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530132405,122.0144013,0.530132405,57.98559866,0,0.955683939,0,0,0,1,6,0% +2018-01-06 15:00:00,95.2560984,114.4663751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66253255,1.997815128,7.757661821,-7.757661821,1,0,#DIV/0!,0,0,0.443357326,1,0.128197875,0,0.947978857,0.98674082,0.724496596,1,0,0,0.062665466,0.312029739,0.837711714,0.56220831,0.961238037,0.922476074,0,0,0,0,0,0,-0.329143319,109.2167867,0.329143319,70.78321327,0,0.898090491,0,0,0,1,7,0% +2018-01-06 16:00:00,84.74843366,123.6885977,32.95639302,172.548032,17.16327151,16.89417476,0,16.89417476,16.64573555,0.248439211,28.46788691,19.9596919,8.508195006,0.517535962,7.990659044,1.479139203,2.158773278,-6.442645278,6.442645278,0.36808908,0.36808908,0.520787317,0.173206917,5.570929851,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.00051416,0.374953042,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125487822,5.354989673,16.12600198,5.729942716,0,19.9596919,-0.115676149,96.64262583,0.115676149,83.35737417,0,0.617758779,16.12600198,18.06021761,27.9460532,1,8,73% +2018-01-06 17:00:00,75.6259262,134.1950041,182.3177854,531.109529,50.46900553,97.62020171,47.29863443,50.32156728,48.94717881,1.374388477,45.72688459,0,45.72688459,1.521826728,44.20505786,1.319921412,2.342144661,-1.698609499,1.698609499,0.820633022,0.820633022,0.276818882,1.196109935,38.4710071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.04989006,1.102558284,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866577576,36.97979534,47.91646764,38.08235363,47.29863443,0,0.089056272,84.89068258,-0.089056272,95.10931742,0.488557228,0,71.02455735,38.08235363,95.94869615,1,9,35% +2018-01-06 18:00:00,68.07081807,146.4118636,321.0034229,680.7081191,66.78596418,255.3378939,188.1459135,67.19198034,64.77212095,2.419859394,79.84483956,0,79.84483956,2.013843234,77.83099633,1.1880599,2.555369083,-0.583574701,0.583574701,0.629950841,0.629950841,0.208053745,1.710697709,55.02191882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.26142638,1.459022568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239394667,52.88916123,63.50082105,54.3481838,188.1459135,0,0.27639734,73.95469617,-0.27639734,106.0453038,0.869101009,0,227.0186243,54.3481838,262.5884236,1,10,16% +2018-01-06 19:00:00,62.76871948,160.4945602,416.9168759,746.2591385,75.44105666,399.1503488,322.8412228,76.30912597,73.16623045,3.142895517,103.3611497,0,103.3611497,2.274826206,101.0863235,1.095520822,2.801158507,0.01677274,-0.01677274,0.527285382,0.527285382,0.180949875,1.926038764,61.94802736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33016372,1.648103843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395408528,59.5468002,71.72557225,61.19490405,322.8412228,0,0.432612756,64.36651314,-0.432612756,115.6334869,0.934423195,0,373.3958993,61.19490405,413.4467401,1,11,11% +2018-01-06 20:00:00,60.3473581,176.0179794,459.657723,769.5949041,78.907934,500.9014413,420.9077785,79.99366273,76.52856865,3.465094076,113.828702,0,113.828702,2.379365349,111.4493367,1.053260094,3.072093283,0.484703006,-0.484703006,0.447264594,0.447264594,0.171666721,1.878603763,60.42235467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.56217109,1.723842096,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361042031,58.08026558,74.92321312,59.80410768,420.9077785,0,0.546921213,56.84394936,-0.546921213,123.1560506,0.958579154,0,478.3966354,59.80410768,517.5372278,1,12,8% +2018-01-06 21:00:00,61.1599487,191.8793378,445.403572,762.1397942,77.77315779,544.8371022,466.0514518,78.7856504,75.42801013,3.357640265,110.3384004,0,110.3384004,2.34514766,107.9932527,1.067442475,3.348926211,0.959080125,-0.959080125,0.366141329,0.366141329,0.174612784,1.600993913,51.49346763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50427238,1.699051496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15991464,49.49747973,73.66418702,51.19653123,466.0514518,0,0.611503894,52.30167611,-0.611503894,127.6983239,0.968234372,0,524.9112217,51.19653123,558.4183274,1,13,6% +2018-01-06 22:00:00,65.08248889,206.7869873,375.3948084,720.4371532,71.86526259,520.6187215,448.0905771,72.5281444,69.69825977,2.829884633,93.18582029,0,93.18582029,2.167002822,91.01881747,1.135903717,3.609113779,1.568837809,-1.568837809,0.261866623,0.261866623,0.191439149,1.140936611,36.69644335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99661839,1.569986167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.826604691,35.27401717,67.82322308,36.84400334,448.0905771,0,0.62197039,51.53983401,-0.62197039,128.460166,0.969610321,0,502.2964714,36.84400334,526.4101347,1,14,5% +2018-01-06 23:00:00,71.59013487,219.9539423,256.3045631,621.7633251,59.9439897,419.2458845,359.1772952,60.0685893,58.13645724,1.93213206,63.95154117,0,63.95154117,1.807532459,62.14400871,1.249483565,3.838920496,2.600664206,-2.600664206,0.085413917,0.085413917,0.233877965,0.578316976,18.60066189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.88297403,1.309551114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.41898868,17.87966372,56.30196271,19.18921484,359.1772952,0,0.577675268,54.71280109,-0.577675268,125.2871989,0.963446182,0,402.3499564,19.18921484,414.9089138,1,15,3% +2018-01-06 00:00:00,80.01458792,231.2814184,104.7557819,390.3219609,37.07495586,224.8673673,188.1206648,36.74670249,35.95700915,0.789693333,26.51719885,0,26.51719885,1.117946711,25.39925214,1.396518009,4.03662225,5.379315057,-5.379315057,0,0,0.353917991,0.279486678,8.989252288,0.280453043,1,0.183799207,0,0.941044767,0.979806731,0.724496596,1,34.84003415,0.809948587,0.04235103,0.312029739,0.886929421,0.611426017,0.961238037,0.922476074,0.192480179,8.640811222,35.03251433,9.450759809,135.361652,0,0.481962799,61.18632583,-0.481962799,118.8136742,0.946257553,0,163.1195,9.450759809,169.3048333,1,16,4% +2018-01-06 01:00:00,89.46740452,241.0947402,0.265086942,3.161149751,0.235702757,1.326303757,1.095709971,0.230593786,0.228595449,0.001998337,0.071380706,0,0.071380706,0.007107308,0.064273398,1.561500782,4.207897026,106.278571,-106.278571,0,0,0.889152648,0.001776827,0.057148862,0.94636503,1,0.009408957,0,0.960397801,0.999159764,0.724496596,1,0.220017816,0.00514922,0.111560879,0.312029739,0.73274079,0.457237386,0.961238037,0.922476074,0.001275698,0.05493366,0.221293514,0.06008288,0.058768371,0,0.346617547,69.71943186,-0.346617547,110.2805681,0.905748791,0,0.274522895,0.06008288,0.313845938,1,17,14% +2018-01-06 02:00:00,100.7049662,249.8742233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757633233,4.361127913,-5.289824476,5.289824476,1,0.565233048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.161517474,80.70501319,-0.161517474,99.29498681,0.740435971,0,0,0,0,1,18,0% +2018-01-06 03:00:00,112.0757656,258.1512879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956091121,4.505589943,-2.440783806,2.440783806,1,0.947552303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039423081,92.25936164,0.039423081,87.74063836,0,0,0,0,0,1,19,0% +2018-01-06 04:00:00,123.7965045,266.5527384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160656605,4.652222915,-1.432065692,1.432065692,1,0.775051346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25025309,104.4924893,0.25025309,75.50751072,0,0.850202268,0,0,0,1,20,0% +2018-01-06 05:00:00,135.618458,276.0133549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366988618,4.817341822,-0.879497099,0.879497099,1,0.680556551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456611214,117.1686506,0.456611214,62.83134944,0,0.940497652,0,0,0,1,21,0% +2018-01-06 06:00:00,147.1818854,288.3985194,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568808499,5.033503722,-0.505417069,0.505417069,1,0.616585099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644440158,130.1237134,0.644440158,49.87628658,0,0.972413277,0,0,0,1,22,0% +2018-01-06 07:00:00,157.6337764,308.4719371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75122841,5.383850953,-0.215169925,0.215169925,1,0.566949914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800943904,143.2203334,0.800943904,36.77966664,0,0.987573656,0,0,0,1,23,0% +2018-01-07 08:00:00,164.1691149,347.0229849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.865291586,6.056693666,0.034669413,-0.034669413,1,0.524224871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915458987,156.2709935,0.915458987,23.72900646,0,0.995382589,0,0,0,1,0,0% +2018-01-07 09:00:00,161.7592512,35.01193932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823231529,0.611073619,0.270008582,-0.270008582,1,0.483979503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980180603,168.5737754,0.980180603,11.42622459,0,0.998988993,0,0,0,1,1,0% +2018-01-07 10:00:00,152.7025865,62.89046222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665162911,1.097645634,0.51211335,-0.51211335,1,0.442577149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990694185,172.1773804,0.990694185,7.822619616,0,0.999530339,0,0,0,1,2,0% +2018-01-07 11:00:00,141.525956,78.22926865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470093908,1.365358309,0.786513736,-0.786513736,1,0.395651919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946276242,161.1337933,0.946276242,18.86620671,0,0.997161307,0,0,0,1,3,0% +2018-01-07 12:00:00,129.7694881,88.82545444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264904836,1.55029664,1.137262725,-1.137262725,1,0.335670309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849944034,148.2055827,0.849944034,31.79441727,0,0.991172597,0,0,0,1,4,0% +2018-01-07 13:00:00,117.9573432,97.60709806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058744016,1.703565234,1.669596079,-1.669596079,1,0.244635944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708250605,135.0927574,0.708250605,44.90724258,0,0.97940352,0,0,0,1,5,0% +2018-01-07 14:00:00,106.3714441,105.8532879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856531929,1.847488398,2.758984798,-2.758984798,1,0.058339502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53083908,122.0621656,0.53083908,57.93783439,0,0.955809497,0,0,0,1,6,0% +2018-01-07 15:00:00,95.25428606,114.3047486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662500918,1.994994214,7.781809069,-7.781809069,1,0,#DIV/0!,0,0,0.444633897,1,0.127804396,0,0.948025431,0.986787394,0.724496596,1,0,0,0.062814328,0.312029739,0.837363141,0.561859737,0.961238037,0.922476074,0,0,0,0,0,0,-0.32978646,109.255815,0.32978646,70.74418501,0,0.898386741,0,0,0,1,7,0% +2018-01-07 16:00:00,84.73073254,123.5278284,33.05501679,171.971828,17.26172888,16.99040674,0,16.99040674,16.74122406,0.249182679,28.5097059,19.97462957,8.535076334,0.520504815,8.014571519,1.47883026,2.155967323,-6.445371749,6.445371749,0.367622826,0.367622826,0.522212074,0.173894082,5.59303142,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.09230135,0.377103966,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.12598567,5.376234543,16.21828702,5.753338509,0,19.97462957,-0.116150592,96.66999385,0.116150592,83.33000615,0,0.619524362,16.21828702,18.12810816,28.08277125,1,8,73% +2018-01-07 17:00:00,75.58688133,134.0334634,182.7557235,530.3061505,50.75634393,97.72735113,47.12380839,50.60354273,49.22585289,1.37768984,45.84173208,0,45.84173208,1.530491041,44.31124104,1.319239951,2.339325244,-1.703678587,1.703678587,0.821499887,0.821499887,0.277727794,1.200070254,38.59838458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.3177622,1.108835549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869446814,37.10223542,48.18720901,38.21107097,47.12380839,0,0.088861516,84.90188568,-0.088861516,95.09811432,0.487326727,0,71.1519003,38.21107097,96.16028203,1,9,35% +2018-01-07 18:00:00,68.00598458,146.2524239,321.8703534,680.0848694,67.17194138,255.6571275,188.0842733,67.5728542,65.14645951,2.426394683,80.06667554,0,80.06667554,2.025481871,78.04119367,1.186928342,2.552586336,-0.58836845,0.58836845,0.63077062,0.63077062,0.208692539,1.717465333,55.23958886,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62125485,1.46745472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244297787,53.09839395,63.86555264,54.56584867,188.0842733,0,0.276560003,73.94499827,-0.276560003,106.0550017,0.869207407,0,227.3497962,54.56584867,263.0620528,1,10,16% +2018-01-07 19:00:00,62.67509277,160.3463066,418.2437543,745.8153906,75.88778623,399.8314967,323.0791092,76.75238757,73.59948948,3.152898086,103.6963372,0,103.6963372,2.288296751,101.4080405,1.093886728,2.798570993,0.011697852,-0.011697852,0.528153239,0.528153239,0.18144392,1.935144689,62.24090523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.74662878,1.657863206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.40200574,59.82832555,72.14863452,61.48618876,323.0791092,0,0.433189115,64.32987967,-0.433189115,115.6701203,0.934576971,0,374.0909296,61.48618876,414.3324104,1,11,11% +2018-01-07 20:00:00,60.22586197,175.8949162,461.4336487,769.3324775,79.39681799,502.0289051,421.5477124,80.48119274,77.00271099,3.478481754,114.2740374,0,114.2740374,2.394107006,111.8799304,1.051139586,3.069945425,0.478711674,-0.478711674,0.448289172,0.448289172,0.172065514,1.889579395,60.77536873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01793474,1.734522376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368993839,58.41959612,75.38692858,60.1541185,421.5477124,0,0.547939577,56.77422614,-0.547939577,123.2257739,0.958749063,0,479.5454027,60.1541185,518.9150702,1,12,8% +2018-01-07 21:00:00,61.01655136,191.7932897,447.5808009,762.114849,78.29275898,546.453673,467.1476765,79.30599656,75.93194342,3.374053136,110.8819627,0,110.8819627,2.360815553,108.5211471,1.064939719,3.347424389,0.951121714,-0.951121714,0.367502297,0.367502297,0.174924302,1.613274882,51.88846579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.98867223,1.710402831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16881216,49.877167,74.15748439,51.58756983,467.1476765,0,0.612962308,52.19599332,-0.612962308,127.8040067,0.968428916,0,526.5568022,51.58756983,560.3198349,1,13,6% +2018-01-07 22:00:00,64.92598927,206.740401,377.8889709,720.830419,72.40924622,522.7548205,449.6802935,73.07452697,70.22584029,2.848686684,93.80696198,0,93.80696198,2.183405935,91.62355605,1.133172283,3.608300694,1.556497982,-1.556497982,0.263976858,0.263976858,0.191615135,1.153746685,37.10845936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.50374885,1.581870167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.835885546,35.67006262,68.3396344,37.25193279,449.6802935,0,0.623836455,51.40316276,-0.623836455,128.5968372,0.969850789,0,504.4624217,37.25193279,528.8430666,1,14,5% +2018-01-07 23:00:00,71.42851716,219.9409078,258.9789915,623.1303371,60.51973835,421.9924956,361.3453576,60.64713798,58.69484495,1.952293031,64.61734825,0,64.61734825,1.824893405,62.79245485,1.246662804,3.838693,2.576049349,-2.576049349,0.089623306,0.089623306,0.233685899,0.590306062,18.98627211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41971753,1.32212906,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427674732,18.25032693,56.84739226,19.57245599,361.3453576,0,0.579887282,54.55738494,-0.579887282,125.4426151,0.963776347,0,405.1035009,19.57245599,417.9132819,1,15,3% +2018-01-07 00:00:00,79.85363949,231.2936652,107.2674875,394.5869204,37.75576418,228.5740344,191.1481182,37.42591622,36.61728859,0.808627631,27.14671985,0,27.14671985,1.138475594,26.00824425,1.393708929,4.036835997,5.292601031,-5.292601031,0,0,0.351977706,0.284618898,9.154322147,0.272692569,1,0.186741592,0,0.940658503,0.979420466,0.724496596,1,35.47667348,0.824821692,0.041313418,0.312029739,0.889531072,0.614027668,0.961238037,0.922476074,0.196146651,8.799482649,35.67282013,9.624304341,139.0234467,0,0.484425885,61.02513519,-0.484425885,118.9748648,0.946785037,0,167.2981392,9.624304341,173.5970539,1,16,4% +2018-01-07 01:00:00,89.32944531,241.1256458,0.395408044,4.096264308,0.347468971,1.769158946,1.429186693,0.339972253,0.3369915,0.002980753,0.10634873,0,0.10634873,0.010477472,0.095871258,1.55909294,4.20843643,84.41862944,-84.41862944,0,0,0.878760502,0.002619368,0.084247875,0.932914191,1,0.011845173,0,0.960176756,0.99893872,0.724496596,1,0.324447711,0.007590892,0.110467455,0.312029739,0.734878506,0.459375102,0.961238037,0.922476074,0.001876505,0.080982262,0.326324216,0.088573154,0.095878146,0,0.348900019,69.57994991,-0.348900019,110.4200501,0.90669247,0,0.413256208,0.088573154,0.471225566,1,17,14% +2018-01-07 02:00:00,100.5481073,249.9197971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75489553,4.361923325,-5.370343274,5.370343274,1,0.551463522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164219102,80.54812648,-0.164219102,99.45187352,0.745528721,0,0,0,0,1,18,0% +2018-01-07 03:00:00,111.921717,258.2098116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953402466,4.506611373,-2.459390878,2.459390878,1,0.9507343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036785657,92.10813855,0.036785657,87.89186145,0,0,0,0,0,1,19,0% +2018-01-07 04:00:00,123.6441066,266.6240164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15799676,4.653466951,-1.439805205,1.439805205,1,0.776374881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.2477912,104.3468452,0.2477912,75.65315484,0,0.848217208,0,0,0,1,20,0% +2018-01-07 05:00:00,135.4655952,276.0970677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364320659,4.818802887,-0.88357201,0.88357201,1,0.681253402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454423918,117.0278742,0.454423918,62.9721258,0,0.93997058,0,0,0,1,21,0% +2018-01-07 06:00:00,147.0251741,288.4870349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566073372,5.035048608,-0.507834327,0.507834327,1,0.616998474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642607456,129.9865268,0.642607456,50.01347316,0,0.972192001,0,0,0,1,22,0% +2018-01-07 07:00:00,157.4702805,308.5093297,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748374869,5.384503576,-0.216685985,0.216685985,1,0.567209175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799521245,143.0844089,0.799521245,36.91559111,0,0.987462575,0,0,0,1,23,0% +2018-01-08 08:00:00,164.0210256,346.7631608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862706939,6.052158881,0.03372195,-0.03372195,1,0.524386897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914473471,156.1310633,0.914473471,23.86893666,0,0.995323728,0,0,0,1,0,0% +2018-01-08 09:00:00,161.6920126,34.5330959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822057994,0.602716224,0.269479818,-0.269479818,1,0.484069927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979629136,168.4153646,0.979629136,11.58463538,0,0.998960277,0,0,0,1,1,0% +2018-01-08 10:00:00,152.6910672,62.53224456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664961861,1.091393556,0.511956465,-0.511956465,1,0.442603978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990543695,172.1142826,0.990543695,7.885717355,0,0.999522671,0,0,0,1,2,0% +2018-01-08 11:00:00,141.5351526,77.96458139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470254421,1.360738645,0.786771498,-0.786771498,1,0.395607839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946465964,161.1674388,0.946465964,18.83256117,0,0.997171899,0,0,0,1,3,0% +2018-01-08 12:00:00,129.7840158,88.61144102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265158391,1.546561401,1.138115985,-1.138115985,1,0.335524394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850389689,148.2540794,0.850389689,31.74592056,0,0.991203426,0,0,0,1,4,0% +2018-01-08 13:00:00,117.9694163,97.42042454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058954731,1.700307167,1.671581179,-1.671581179,1,0.244296472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708850197,135.141441,0.708850197,44.85855898,0,0.979463235,0,0,0,1,5,0% +2018-01-08 14:00:00,106.3758639,105.6808306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856609071,1.844478451,2.764184862,-2.764184862,1,0.057450238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531479903,122.1055005,0.531479903,57.89449948,0,0.955923065,0,0,0,1,6,0% +2018-01-08 15:00:00,95.24658107,114.1385063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662366441,1.992092738,7.815338533,-7.815338533,1,0,#DIV/0!,0,0,0.446396792,1,0.127262001,0,0.948089572,0.986851535,0.724496596,1,0,0,0.063019653,0.312029739,0.836882643,0.561379239,0.961238037,0.922476074,0,0,0,0,0,0,-0.330352844,109.2901931,0.330352844,70.70980691,0,0.898646679,0,0,0,1,7,0% +2018-01-08 16:00:00,84.70693626,123.3630427,33.22974127,171.7112787,17.3893683,17.11551451,0,17.11551451,16.86501468,0.250499826,28.5926934,20.0114043,8.581289107,0.524353614,8.056935492,1.478414937,2.15309127,-6.441167715,6.441167715,0.368341758,0.368341758,0.523307364,0.175072617,5.630937165,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.21129361,0.379892408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126839515,5.412670986,16.33813312,5.792563394,0,20.0114043,-0.116541001,96.69251561,0.116541001,83.30748439,0,0.620966445,16.33813312,18.21897397,28.26208721,1,8,73% +2018-01-08 17:00:00,75.54122856,133.8686296,183.3135175,529.6816065,51.06087377,97.91782252,47.01472777,50.90309476,49.52120003,1.381894727,45.98615838,0,45.98615838,1.539673739,44.44648464,1.318443159,2.336448351,-1.708088988,1.708088988,0.82225411,0.82225411,0.278543964,1.204686288,38.74685211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.6016611,1.115488382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872791115,37.24494805,48.47445222,38.36043644,47.01472777,0,0.088760356,84.90770472,-0.088760356,95.09229528,0.486685448,0,71.35583605,38.36043644,96.46197449,1,9,35% +2018-01-08 18:00:00,67.93414759,146.0907128,322.8648846,679.5677134,67.57032504,256.0858169,188.1190945,67.96672232,65.53283044,2.433891879,80.31982389,0,80.31982389,2.037494608,78.28232928,1.18567455,2.549763946,-0.593011468,0.593011468,0.631564623,0.631564623,0.209283599,1.724831281,55.47650306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.99264928,1.476157908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.249634391,53.3261249,64.24228367,54.8022828,188.1190945,0,0.276821707,73.92939452,-0.276821707,106.0706055,0.869378327,0,227.7889473,54.8022828,263.6559453,1,10,16% +2018-01-08 19:00:00,62.57421218,160.1972594,419.6982195,745.448606,76.34509234,400.6323896,323.425521,77.20686858,74.04300612,3.16386246,104.0627786,0,104.0627786,2.302086217,101.7606924,1.092126029,2.79596963,0.006634562,-0.006634562,0.529019113,0.529019113,0.181904732,1.944803363,62.55156138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17295384,1.667853628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409003416,60.12694006,72.58195726,61.79479369,323.425521,0,0.433866961,64.28678128,-0.433866961,115.7132187,0.9347573,0,374.9063241,61.79479369,415.3497806,1,11,11% +2018-01-08 20:00:00,60.09715568,175.7729691,463.3327839,769.1347944,79.8954193,503.2793258,422.3002499,80.97907586,77.48627763,3.492798237,114.7495394,0,114.7495394,2.409141675,112.3403977,1.048893238,3.067817046,0.472666059,-0.472666059,0.449323033,0.449323033,0.172436361,1.901059405,61.14460532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48275739,1.745414942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.377311068,58.77452038,75.86006846,60.51993532,422.3002499,0,0.549058829,56.69753133,-0.549058829,123.3024687,0.958935077,0,480.8185912,60.51993532,520.4276784,1,12,8% +2018-01-08 21:00:00,60.86637949,191.71034,449.8735329,762.1512606,78.82170358,548.1919711,468.355696,79.83627512,76.4449384,3.391336718,111.4538117,0,111.4538117,2.376765184,109.0770465,1.062318726,3.345976643,0.943059418,-0.943059418,0.368881031,0.368881031,0.175208582,1.626005183,52.29791605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.48178251,1.721958285,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17803522,50.27074615,74.65981773,51.99270444,468.355696,0,0.614518036,52.08309171,-0.614518036,127.9169083,0.968635423,0,528.3257355,51.99270444,562.3539207,1,13,6% +2018-01-08 22:00:00,64.76347604,206.6984863,380.4882543,721.2882502,72.96268167,525.0083961,451.3775274,73.63086879,70.76258761,2.86828118,94.45387645,0,94.45387645,2.200094056,92.25378239,1.130335892,3.607569145,1.544001788,-1.544001788,0.266113833,0.266113833,0.191760668,1.166943948,37.5329287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0196908,1.593960654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.845446918,36.0780787,68.86513772,37.67203936,451.3775274,0,0.62579354,51.2595451,-0.62579354,128.7404549,0.970101444,0,506.7471289,37.67203936,531.4027252,1,14,5% +2018-01-08 23:00:00,71.26178205,219.9335256,261.7460534,624.5710369,61.10589557,424.8503319,363.6138522,61.23647967,59.26332736,1.973152313,65.30592925,0,65.30592925,1.842568208,63.46336104,1.243752728,3.838564157,2.551241403,-2.551241403,0.093865714,0.093865714,0.233454888,0.602614908,19.38216692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.96616445,1.334934394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.43659245,18.63087608,57.4027569,19.96581048,363.6138522,0,0.582181739,54.39585872,-0.582181739,125.6041413,0.964116166,0,407.9687499,19.96581048,421.0359735,1,15,3% +2018-01-08 00:00:00,79.68842342,231.3121026,109.859502,398.9342969,38.44986196,232.3841903,194.2655662,38.11862409,37.29045676,0.828167331,27.79611337,0,27.79611337,1.159405203,26.63670817,1.390825364,4.03715779,5.206553953,-5.206553953,0,0,0.349991228,0.289851301,9.32261419,0.264824524,1,0.189754836,0,0.940260948,0.979022911,0.724496596,1,36.12542059,0.839985123,0.040254462,0.312029739,0.892195013,0.616691609,0.961238037,0.922476074,0.199896433,8.961251363,36.32531702,9.801236486,142.8192801,0,0.486961306,60.85894806,-0.486961306,119.1410519,0.947322437,0,171.6212255,9.801236486,178.0359388,1,16,4% +2018-01-08 01:00:00,89.18710369,241.1630825,0.564104898,5.256501261,0.489529647,2.325408369,1.846387387,0.479020983,0.474768522,0.004252461,0.151534888,0,0.151534888,0.014761125,0.136773763,1.55660861,4.209089825,69.64216276,-69.64216276,0,0,0.867798966,0.003690281,0.11869213,0.919220364,1,0.014358131,0,0.95994725,0.998709213,0.724496596,1,0.457239321,0.010694385,0.109344087,0.312029739,0.737084795,0.461581391,0.961238037,0.922476074,0.002637923,0.11409139,0.459877244,0.124785775,0.149150501,0,0.35125786,69.43572921,-0.35125786,110.5642708,0.907654431,0,0.595254357,0.124785775,0.676924152,1,17,14% +2018-01-08 02:00:00,100.3882835,249.9722468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752106077,4.362838745,-5.454853098,5.454853098,1,0.537011491,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.166970332,80.38828576,-0.166970332,99.61171424,0.750545604,0,0,0,0,1,18,0% +2018-01-08 03:00:00,111.7650981,258.2757144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950668951,4.507761594,-2.478521297,2.478521297,1,0.954005794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.034109503,91.95470974,0.034109503,88.04529026,0,0,0,0,0,1,19,0% +2018-01-08 04:00:00,123.4893359,266.7034894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155295502,4.654854017,-1.447670851,1.447670851,1,0.777719986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245300119,104.1995705,0.245300119,75.80042947,0,0.846168057,0,0,0,1,20,0% +2018-01-08 05:00:00,135.3102964,276.1903219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361610185,4.820430479,-0.887665831,0.887665831,1,0.681953487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452214986,116.8858842,0.452214986,63.11411579,0,0.93943312,0,0,0,1,21,0% +2018-01-08 06:00:00,146.8655415,288.5873282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563287257,5.036799056,-0.510226861,0.510226861,1,0.617407622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640758164,129.8483771,0.640758164,50.15162286,0,0.97196744,0,0,0,1,22,0% +2018-01-08 07:00:00,157.3025512,308.5620065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.74544744,5.385422961,-0.218152477,0.218152477,1,0.56745996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798084188,142.9475432,0.798084188,37.05245678,0,0.987349968,0,0,0,1,23,0% +2018-01-09 08:00:00,163.8659091,346.5192554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.859999646,6.047901929,0.032844,-0.032844,1,0.524537035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913472745,155.9897592,0.913472745,24.01024076,0,0.995263829,0,0,0,1,0,0% +2018-01-09 09:00:00,161.6164279,34.05159827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820738793,0.594312505,0.269042336,-0.269042336,1,0.48414474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979058696,168.253721,0.979058696,11.746279,0,0.998930539,0,0,0,1,1,0% +2018-01-09 10:00:00,152.6725893,62.16498216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66463936,1.084983618,0.511920532,-0.511920532,1,0.442610123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990367781,172.0411553,0.990367781,7.958844748,0,0.999513705,0,0,0,1,2,0% +2018-01-09 11:00:00,141.5383126,77.69170466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470309573,1.355976048,0.787197681,-0.787197681,1,0.395534958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946621568,161.1950772,0.946621568,18.80492278,0,0.997180582,0,0,0,1,3,0% +2018-01-09 12:00:00,129.7928898,88.39055048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265313273,1.542706134,1.139226268,-1.139226268,1,0.335334524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85079089,148.2977954,0.85079089,31.70220455,0,0.991231153,0,0,0,1,4,0% +2018-01-09 13:00:00,117.9759117,97.22788223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059068097,1.69694667,1.674027844,-1.674027844,1,0.243878068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709394069,135.1856365,0.709394069,44.8143635,0,0.979517313,0,0,0,1,5,0% +2018-01-09 14:00:00,106.3745952,105.503255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856586928,1.841379171,2.770550027,-2.770550027,1,0.056361731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532053589,122.1443129,0.532053589,57.85568712,0,0.956024504,0,0,0,1,6,0% +2018-01-09 15:00:00,95.23294924,113.9677557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662128521,1.989112578,7.858436857,-7.858436857,1,0,#DIV/0!,0,0,0.44864642,1,0.126571504,0,0.94817113,0.986933093,0.724496596,1,0,0,0.063281253,0.312029739,0.836270939,0.560767535,0.961238037,0.922476074,0,0,0,0,0,0,-0.330841313,109.3198477,0.330841313,70.6801523,0,0.898870144,0,0,0,1,7,0% +2018-01-09 16:00:00,84.67702532,123.1943407,33.48104073,171.7635666,17.54656049,17.26986118,0,17.26986118,17.01746695,0.252394227,28.71691494,20.06995545,8.646959493,0.529093539,8.117865955,1.477892893,2.150146866,-6.430096694,6.430096694,0.370235014,0.370235014,0.524074524,0.176746327,5.684769424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.35783652,0.383326468,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128052112,5.464416601,16.48588864,5.847743069,0,20.06995545,-0.116846406,96.7101344,0.116846406,83.2898656,0,0.622087823,16.48588864,18.33301796,28.48448223,1,8,73% +2018-01-09 17:00:00,75.4889681,133.700596,183.9911047,529.2344227,51.3827357,98.19172066,46.97136136,51.2203593,49.83335664,1.387002666,46.16015258,0,46.16015258,1.549379064,44.61077352,1.317531042,2.333515612,-1.711833335,1.711833335,0.822894431,0.822894431,0.279267499,1.209957684,38.91639833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.90171791,1.122519857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876610223,37.40792233,48.77832813,38.53044219,46.97136136,0,0.088753413,84.90810408,-0.088753413,95.09189592,0.486641384,0,71.63653642,38.53044219,96.85394022,1,9,35% +2018-01-09 18:00:00,67.85532525,145.9268174,323.9864947,679.1554977,67.98115054,256.6237619,188.2501469,68.37361508,65.93126803,2.44234705,80.60415915,0,80.60415915,2.049882513,78.55427664,1.184298841,2.546903431,-0.59749649,0.59749649,0.632331607,0.632331607,0.209827112,1.732792488,55.73256284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.37564265,1.485132902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.255402259,53.57225929,64.63104491,55.05739219,188.2501469,0,0.277182689,73.90786952,-0.277182689,106.0921305,0.869613554,0,228.3359242,55.05739219,264.3698863,1,10,16% +2018-01-09 19:00:00,62.46611297,160.0475015,421.2792975,745.1576014,76.8129486,401.5523834,323.8798473,77.67253609,74.49675479,3.175781294,104.4602369,0,104.4602369,2.31619381,102.1440431,1.090239342,2.79335586,0.001590307,-0.001590307,0.529881731,0.529881731,0.182332598,1.955009746,62.87983372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60911433,1.678074531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416397906,60.44248793,73.02551224,62.12056246,323.8798473,0,0.434646103,64.23722302,-0.434646103,115.762777,0.934963883,0,375.8414718,62.12056246,416.4981375,1,11,11% +2018-01-09 20:00:00,59.96129141,175.652221,465.3537399,769.0004742,80.40366372,504.651537,423.1643073,81.48722966,77.9791966,3.508033057,115.254869,0,115.254869,2.424467119,112.8304019,1.046521959,3.065709594,0.466574844,-0.466574844,0.450364692,0.450364692,0.172779666,1.91303741,61.52985914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.95656985,1.756518175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385989092,59.14484101,76.34255895,60.90135918,423.1643073,0,0.550278344,56.61388939,-0.550278344,123.3861106,0.959136893,0,482.2150579,60.90135918,522.0737795,1,12,8% +2018-01-09 21:00:00,60.70950288,191.6305724,452.2800383,762.2472402,79.35987042,550.0502645,469.673909,80.3763555,76.96687752,3.409477973,112.0535245,0,112.0535245,2.3929929,109.6605316,1.059580713,3.344584435,0.934904924,-0.934904924,0.370275531,0.370275531,0.175466224,1.639177814,52.72159313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.98349025,1.73371521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.187578746,50.67800068,75.171069,52.41171589,469.673909,0,0.616170036,51.96301357,-0.616170036,128.0369864,0.968853568,0,530.2163115,52.41171589,564.5187313,1,13,6% +2018-01-09 22:00:00,64.59503569,206.6613197,383.1907049,721.8080344,73.52538591,527.3770993,453.1801217,74.19697764,71.30832424,2.888653394,95.12608449,0,95.12608449,2.217061665,92.90902282,1.127396053,3.606920466,1.531368007,-1.531368007,0.268274337,0.268274337,0.191876747,1.180521803,37.9696392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54427361,1.606253629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.855284028,36.49786145,69.39955763,38.10411508,453.1801217,0,0.627840229,51.1090423,-0.627840229,128.8909577,0.970361905,0,509.1482837,38.10411508,534.0866649,1,14,5% +2018-01-09 23:00:00,71.09002834,219.9318544,264.6037741,626.0809723,61.70215763,427.8162752,365.9799702,61.83630494,59.84160992,1.994695018,66.01679622,0,66.01679622,1.860547709,64.15624851,1.24075506,3.83853499,2.526279714,-2.526279714,0.098134415,0.098134415,0.23318699,0.615239215,19.78820803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.52203164,1.347960482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.445738717,19.02117824,57.96777036,20.36913872,365.9799702,0,0.584556929,54.22830478,-0.584556929,125.7716952,0.964465132,0,410.9426905,20.36913872,424.2738844,1,15,3% +2018-01-09 00:00:00,79.51904391,231.3367667,112.5304103,403.35514,39.15660023,236.2936198,197.4694337,38.82418603,37.97588426,0.848301766,28.46501677,0,28.46501677,1.180715969,27.2843008,1.387869134,4.03758826,5.121297542,-5.121297542,0,0,0.347964609,0.295178992,9.493971066,0.256859063,1,0.192836645,0,0.939852269,0.978614232,0.724496596,1,36.78563918,0.855424701,0.039175185,0.312029739,0.894919188,0.619415784,0.961238037,0.922476074,0.20372703,9.125966109,36.98936621,9.98139081,146.7476201,0,0.489567168,60.68786323,-0.489567168,119.3121368,0.947868968,0,176.0868814,9.98139081,182.6195021,1,16,4% +2018-01-09 01:00:00,89.04041755,241.2070643,0.778200675,6.676598171,0.666387083,3.013606645,2.361447186,0.652159459,0.646293053,0.005866405,0.208777793,0,0.208777793,0.020094029,0.188683763,1.554048454,4.20985745,59.00181009,-59.00181009,0,0,0.85631779,0.005023507,0.161573263,0.905300789,1,0.01694701,0,0.959709218,0.998471181,0.724496596,1,0.622625766,0.014558056,0.108191518,0.312029739,0.739358997,0.463855593,0.961238037,0.922476074,0.003583112,0.155310366,0.626208879,0.169868422,0.223627185,0,0.353690177,69.28681033,-0.353690177,110.7131897,0.908633337,0,0.829403994,0.169868422,0.940579479,1,17,13% +2018-01-09 02:00:00,100.2255998,250.0315646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749266711,4.363874037,-5.543552853,5.543552853,1,0.52184294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16976915,80.22560278,-0.16976915,99.77439722,0.755482415,0,0,0,0,1,18,0% +2018-01-09 03:00:00,111.6060091,258.3489664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947892323,4.509040082,-2.498178829,2.498178829,1,0.95736743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.031396506,91.79918294,0.031396506,88.20081706,0,0,0,0,0,1,19,0% +2018-01-09 04:00:00,123.3322854,266.7911005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152554454,4.65638312,-1.455659815,1.455659815,1,0.779086179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242781504,104.0507653,0.242781504,75.94923466,0,0.844053504,0,0,0,1,20,0% +2018-01-09 05:00:00,135.1526471,276.2930204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358858684,4.822222907,-0.891775964,0.891775964,1,0.682656361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449985752,116.7427698,0.449985752,63.25723018,0,0.938885371,0,0,0,1,21,0% +2018-01-09 06:00:00,146.7030677,288.6992308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560451555,5.038752125,-0.512592657,0.512592657,1,0.617812197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638893228,129.7093397,0.638893228,50.29066032,0,0.971739662,0,0,0,1,22,0% +2018-01-09 07:00:00,157.1306797,308.6296854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742447717,5.386604179,-0.219567842,0.219567842,1,0.567702002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796633247,142.8097933,0.796633247,37.19020673,0,0.987235861,0,0,0,1,23,0% +2018-01-10 08:00:00,163.7038918,346.2913909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85717191,6.043924942,0.032036805,-0.032036805,1,0.524675073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.912456881,155.8471134,0.912456881,24.15288656,0,0.99520289,0,0,0,1,0,0% +2018-01-10 09:00:00,161.5324797,33.56842073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.819273619,0.585879466,0.268697165,-0.268697165,1,0.484203768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978468934,168.0888765,0.978468934,11.91112347,0,0.998899757,0,0,0,1,1,0% +2018-01-10 10:00:00,152.6470562,61.78917268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664193724,1.078424505,0.512006452,-0.512006452,1,0.442595429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990165721,171.9579744,0.990165721,8.042025613,0,0.999503402,0,0,0,1,2,0% +2018-01-10 11:00:00,141.5353406,77.41090734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470257702,1.35107521,0.787793167,-0.787793167,1,0.395433124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946742033,161.2165011,0.946742033,18.78349888,0,0.997187303,0,0,0,1,3,0% +2018-01-10 12:00:00,129.7960289,88.16296554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26536806,1.538734027,1.14059468,-1.14059468,1,0.335100512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851146411,148.3365791,0.851146411,31.66342087,0,0.9912557,0,0,0,1,4,0% +2018-01-10 13:00:00,117.9767636,97.02961513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059082966,1.693486256,1.676938303,-1.676938303,1,0.24338035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709880899,135.2252258,0.709880899,44.77477422,0,0.97956565,0,0,0,1,5,0% +2018-01-10 14:00:00,106.3675882,105.3206849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856464632,1.838192721,2.778089857,-2.778089857,1,0.055072344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532558837,122.1785087,0.532558837,57.82149129,0,0.95611366,0,0,0,1,6,0% +2018-01-10 15:00:00,95.21335757,113.7926088,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661786581,1.986055688,7.911355927,-7.911355927,1,0,#DIV/0!,0,0,0.451383786,1,0.125733791,0,0.948269929,0.987031892,0.724496596,1,0,0,0.063598943,0.312029739,0.835528811,0.560025407,0.961238037,0.922476074,0,0,0,0,0,0,-0.331250697,109.3447053,0.331250697,70.6552947,0,0.899056921,0,0,0,1,7,0% +2018-01-10 16:00:00,84.64098107,123.0218263,33.80956019,172.1258697,17.73365648,17.45379205,0,17.45379205,17.1989213,0.254870746,28.88231177,20.1500573,8.732254474,0.534735173,8.197519301,1.477263802,2.147135921,-6.412268354,6.412268354,0.37328384,0.37328384,0.524516036,0.178920924,5.75471196,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.53225735,0.387413813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129627601,5.531648027,16.66188495,5.91906184,0,20.1500573,-0.117065827,96.72279318,0.117065827,83.27720682,0,0.622889875,16.66188495,18.47032851,28.75034555,1,8,73% +2018-01-10 17:00:00,75.43010208,133.5294593,184.7884052,528.9628026,51.72204221,98.54918507,46.99374021,51.55544486,50.16243181,1.393013053,46.36369865,0,46.36369865,1.559610407,44.80408824,1.316503636,2.330528713,-1.714906142,1.714906142,0.823419912,0.823419912,0.279898742,1.215883721,39.10700005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.21803747,1.129932431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880903617,37.59113595,49.09894109,38.72106838,46.99374021,0,0.088841295,84.90304887,-0.088841295,95.09695113,0.487198656,0,71.99422818,38.72106838,97.33639301,1,9,35% +2018-01-10 18:00:00,67.76953802,145.7608276,325.2346088,678.8468974,68.40443687,257.2707385,188.4771919,68.79354657,66.34179071,2.451755861,80.91954251,0,80.91954251,2.062646157,78.85689635,1.182801571,2.544006362,-0.601816578,0.601816578,0.633070386,0.633070386,0.210323364,1.741345518,56.0076577,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.77025266,1.494380119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2615989,53.83669094,65.03185156,55.33107106,188.4771919,0,0.277643151,73.88040915,-0.277643151,106.1195909,0.86991272,0,228.9905582,55.33107106,265.2036376,1,10,16% +2018-01-10 19:00:00,62.35083325,159.8971184,422.9859434,744.9410805,77.29131581,402.5907811,324.4414369,78.14934417,74.96069746,3.188646712,104.8884575,0,104.8884575,2.330618346,102.5578391,1.088227332,2.79073118,-0.003427541,0.003427541,0.530739834,0.530739834,0.182727859,1.965758413,63.22554783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.05507367,1.688525058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424185279,60.77480147,73.47925895,62.46332653,324.4414369,0,0.435526306,64.18121173,-0.435526306,115.8187883,0.935196372,0,376.8957137,62.46332653,417.7767116,1,11,11% +2018-01-10 20:00:00,59.81832477,175.532758,467.4950458,768.92805,80.92146519,506.1443006,424.1387411,82.00555957,78.48138445,3.524175126,115.7896671,0,115.7896671,2.440080744,113.3495863,1.04402672,3.063624573,0.460446711,-0.460446711,0.451412665,0.451412665,0.173095878,1.925506633,61.93091219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43929192,1.767830193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395023001,59.53034845,76.83431492,61.29817865,424.1387411,0,0.551597436,56.52332706,-0.551597436,123.4766729,0.959354183,0,483.7335905,61.29817865,523.8520225,1,12,8% +2018-01-10 21:00:00,60.54599534,191.5540737,454.7984985,762.4009278,79.90712647,552.0267367,471.1006417,80.92609497,77.49763178,3.428463189,112.6806561,0,112.6806561,2.409494689,110.2711614,1.056726968,3.343249282,0.926669899,-0.926669899,0.371683804,0.371683804,0.175697868,1.652785374,53.15925903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.49367143,1.7456707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197437377,51.09870179,75.69110881,52.84437249,471.1006417,0,0.617917194,51.83580406,-0.617917194,128.1641959,0.969083009,0,532.2267363,52.84437249,566.8123212,1,13,6% +2018-01-10 22:00:00,64.42075918,206.6289795,385.9942772,722.3871044,74.09716357,529.8584894,455.0858408,74.77264861,71.8628607,2.909787906,95.82308427,0,95.82308427,2.234302871,93.5887814,1.124354354,3.606356022,1.518615229,-1.518615229,0.27045519,0.27045519,0.19196441,1.194473258,38.41836595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.07731514,1.618744824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.865391809,36.92919467,69.94270695,38.54793949,455.0858408,0,0.629975034,50.95171938,-0.629975034,129.0482806,0.970631775,0,511.6634845,38.54793949,536.89234,1,14,5% +2018-01-10 23:00:00,70.91335936,219.9359536,267.5500854,627.6556814,62.3082083,430.8871215,368.4408301,62.44629148,60.42938592,2.016905557,66.74943817,0,66.74943817,1.878822373,64.8706158,1.237671605,3.838606534,2.501202505,-2.501202505,0.10242287,0.10242287,0.232884277,0.628174254,20.20424334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.08702429,1.361200413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455110109,19.4210872,58.5421344,20.78228762,368.4408301,0,0.587011065,54.05481004,-0.587011065,125.94519,0.96482273,0,414.0222219,20.78228762,427.6238135,1,15,3% +2018-01-10 00:00:00,79.34560952,231.3676932,115.2786732,407.8406216,39.87532043,240.2980308,200.7560791,39.54195173,38.6729324,0.869019332,29.153037,0,29.153037,1.202388035,27.95064897,1.384842133,4.038128028,5.036944437,-5.036944437,0,0,0.345903707,0.300597009,9.668233099,0.248806282,1,0.195984645,0,0.939432647,0.97819461,0.724496596,1,37.45668375,0.871126039,0.03807663,0.312029739,0.897701466,0.622198061,0.961238037,0.922476074,0.207635893,9.293473404,37.66431965,10.16459944,150.8067055,0,0.492241499,60.51198441,-0.492241499,119.4880156,0.948423843,0,180.6929948,10.16459944,187.3455218,1,16,4% +2018-01-10 01:00:00,88.88945727,241.2576031,1.045013542,8.391028373,0.882383551,3.852500903,2.988846717,0.863654185,0.855776432,0.007877753,0.279982752,0,0.279982752,0.02660712,0.253375632,1.5514137,4.21073952,50.98678846,-50.98678846,0,0,0.844375231,0.00665178,0.213944108,0.891175422,1,0.01961041,0,0.959462651,0.998224614,0.724496596,1,0.824695406,0.019276768,0.107010746,0.312029739,0.741699939,0.466196535,0.961238037,0.922476074,0.004734194,0.205651214,0.8294296,0.224927982,0.325259982,0,0.35619552,69.13326714,-0.35619552,110.8667329,0.909627656,0,1.125295075,0.224927982,1.272505941,1,17,13% +2018-01-10 02:00:00,100.0601646,250.0977407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746379323,4.365029026,-5.636655794,5.636655794,1,0.505921399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.172613474,80.06019315,-0.172613474,99.93980685,0.760335475,0,0,0,0,1,18,0% +2018-01-10 03:00:00,111.4445521,258.4295349,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945074368,4.510446269,-2.518366973,2.518366973,1,0.960819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028648608,91.64166896,0.028648608,88.35833104,0,0,0,0,0,1,19,0% +2018-01-10 04:00:00,123.1730496,266.8867898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149775266,4.658053213,-1.463769058,1.463769058,1,0.780472941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.240237054,103.9005319,0.240237054,76.09946812,0,0.841872239,0,0,0,1,20,0% +2018-01-10 05:00:00,134.9927333,276.4050628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356067662,4.824178414,-0.89589969,0.89589969,1,0.68336156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44773758,116.5986218,0.44773758,63.4013782,0,0.938327444,0,0,0,1,21,0% +2018-01-10 06:00:00,146.5378332,288.8225695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557567667,5.040904791,-0.51492964,0.51492964,1,0.618211844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637013608,129.5694905,0.637013608,50.43050951,0,0.971508741,0,0,0,1,22,0% +2018-01-10 07:00:00,156.9547569,308.7120744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739377284,5.38804214,-0.220930485,0.220930485,1,0.567935028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795168944,142.6712157,0.795168944,37.32878429,0,0.987120281,0,0,0,1,23,0% +2018-01-11 08:00:00,163.5351017,346.0796414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.854225968,6.040229217,0.031301628,-0.031301628,1,0.524800796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911425947,155.7031567,0.911425947,24.29684331,0,0.995140908,0,0,0,1,0,0% +2018-01-11 09:00:00,161.4401593,33.08453395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817662325,0.577434049,0.26844535,-0.26844535,1,0.484246831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977859488,167.9208597,0.977859488,12.0791403,0,0.998867909,0,0,0,1,1,0% +2018-01-11 10:00:00,152.6143752,61.40533487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663623334,1.071725272,0.51221515,-0.51221515,1,0.44255974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989936773,171.8647457,0.989936773,8.135254346,0,0.999491724,0,0,0,1,2,0% +2018-01-11 11:00:00,141.5261429,77.12247209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470097171,1.346041065,0.788558884,-0.788558884,1,0.395302178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946826314,161.231504,0.946826314,18.76849602,0,0.997192004,0,0,0,1,3,0% +2018-01-11 12:00:00,129.7933526,87.92887781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265321349,1.534648425,1.142222443,-1.142222443,1,0.334822148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851455002,148.3702778,0.851455002,31.62972218,0,0.991276991,0,0,0,1,4,0% +2018-01-11 13:00:00,117.9719073,96.8257735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058998207,1.689928548,1.680315182,-1.680315182,1,0.24280287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710309346,135.2600902,0.710309346,44.73990984,0,0.979608134,0,0,0,1,5,0% +2018-01-11 14:00:00,106.3547944,105.1332488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856241338,1.834921345,2.786816053,-2.786816053,1,0.053580077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532994331,122.2079939,0.532994331,57.79200611,0,0.956190372,0,0,0,1,6,0% +2018-01-11 15:00:00,95.18777462,113.6131813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661340075,1.982924087,7.974416756,-7.974416756,1,0,#DIV/0!,0,0,0.454610472,1,0.124749826,0,0.948385772,0.987147735,0.724496596,1,0,0,0.06397254,0.312029739,0.834657109,0.559153705,0.961238037,0.922476074,0,0,0,0,0,0,-0.331579829,109.3646927,0.331579829,70.63530725,0,0.89920675,0,0,0,1,7,0% +2018-01-11 16:00:00,84.59878601,122.8456061,34.21610787,172.7953416,17.95098478,17.66763183,0,17.66763183,17.40969635,0.257935474,29.0886976,20.25131768,8.837379917,0.541288423,8.296091494,1.476527359,2.144060298,-6.387836696,6.387836696,0.377461899,0.377461899,0.524635498,0.181603981,5.841008277,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73486235,0.39216162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.131571466,5.61459933,16.86643381,6.00676095,0,20.25131768,-0.117198285,96.73043506,0.117198285,83.26956494,0,0.623372597,16.86643381,18.63087744,29.05997048,1,8,72% +2018-01-11 17:00:00,75.36463463,133.3553185,185.7053173,528.864634,52.07887719,98.99038574,47.08195373,51.90843202,50.50850689,1.399925124,46.59677449,0,46.59677449,1.570370298,45.02640419,1.315361014,2.327489383,-1.717303874,1.717303874,0.823829948,0.823829948,0.280438266,1.222463296,39.3186218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.55069801,1.137727935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885670497,37.79455483,49.43636851,38.93228277,47.08195373,0,0.089024583,84.89250542,-0.089024583,95.10749458,0.488357383,0,72.42918822,38.93228277,97.90958864,1,9,35% +2018-01-11 18:00:00,67.67680875,145.5928353,326.6085988,678.6404221,68.84018669,258.0264948,188.7999801,69.22651464,66.76440107,2.462113578,81.26582173,0,81.26582173,2.075785622,79.19003611,1.18118314,2.541074344,-0.605965167,0.605965167,0.633779836,0.633779836,0.210772732,1.750486578,56.3016656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17648181,1.503899617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.268221567,54.11930251,65.44470338,55.62320213,188.7999801,0,0.278203263,73.84700091,-0.278203263,106.1529991,0.870275293,0,229.7526614,55.62320213,266.1569347,1,10,16% +2018-01-11 19:00:00,62.22841376,159.7461979,424.8170448,744.7976419,77.78014227,403.7468331,325.1095988,78.63723433,75.434784,3.202450327,105.3471691,0,105.3471691,2.345358268,103.0018109,1.086090708,2.788097121,-0.008411722,0.008411722,0.531592179,0.531592179,0.183090917,1.977043586,63.58851775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.51078368,1.699204081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.432361348,61.12370197,73.94314503,62.82290605,325.1095988,0,0.436507288,64.1187562,-0.436507288,115.8812438,0.935454375,0,378.0683417,62.82290605,419.1846772,1,11,11% +2018-01-11 20:00:00,59.66831442,175.4146687,469.7551552,768.915978,81.44872654,507.7563108,425.2223511,82.5339597,78.99274692,3.541212785,116.3535556,0,116.3535556,2.455979619,113.897576,1.041408546,3.061563524,0.454290281,-0.454290281,0.452465476,0.452465476,0.173385487,1.938459937,62.34753498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93083297,1.779348873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404407625,59.93082212,77.3352406,61.710171,425.2223511,0,0.553015366,56.42587337,-0.553015366,123.5741266,0.959586599,0,485.3729103,61.710171,525.760983,1,12,8% +2018-01-11 21:00:00,60.37593419,191.480933,457.4270155,762.6104042,80.46332789,554.1194942,472.6341545,81.48533974,78.03706168,3.448278061,113.334742,0,113.334742,2.426266214,110.9084758,1.053758841,3.341972736,0.918365912,-0.918365912,0.373103869,0.373103869,0.175904188,1.666820112,53.61066446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01219197,1.757821613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207605497,51.53260986,76.21979747,53.29043148,472.6341545,0,0.619758335,51.70151103,-0.619758335,128.298489,0.969323392,0,534.3551395,53.29043148,569.2326611,1,13,7% +2018-01-11 22:00:00,64.24074124,206.6015454,388.8968464,723.0227545,74.6778085,532.4500473,457.0923816,75.35766574,72.42599704,2.931668699,96.54435435,0,96.54435435,2.251811458,94.29254289,1.121212449,3.605877208,1.50576174,-1.50576174,0.272653266,0.272653266,0.192024721,1.208790974,38.87887292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.61862321,1.631429736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.875764946,37.37185148,70.49438816,39.00328121,457.0923816,0,0.632196399,50.78764461,-0.632196399,129.2123554,0.970910654,0,514.2902511,39.00328121,539.8171186,1,14,5% +2018-01-11 23:00:00,70.73188221,219.9458825,270.5828395,629.2907188,62.92372128,434.0596,370.9934933,63.06610666,61.02633892,2.039767739,67.50332449,0,67.50332449,1.89738236,65.60594213,1.234504231,3.838779826,2.476046679,-2.476046679,0.10672477,0.10672477,0.232548825,0.641414908,20.63010829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.66083822,1.374647061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.464702917,19.8304448,59.12554113,21.20509186,370.9934933,0,0.589542293,53.87546535,-0.589542293,126.1245347,0.965188443,0,417.2041732,21.20509186,431.0824817,1,15,3% +2018-01-11 00:00:00,79.16823231,231.4049167,118.1026407,412.382087,40.60535938,244.3930823,204.1218167,40.27126557,39.38095798,0.890307592,29.85975398,0,29.85975398,1.224401403,28.63535258,1.381746317,4.038777701,4.953596164,-4.953596164,0,0,0.343814153,0.306100351,9.845239495,0.240676156,1,0.199196391,0,0.939002276,0.977764239,0.724496596,1,38.1379043,0.887074649,0.036959854,0.312029739,0.900539657,0.625036253,0.961238037,0.922476074,0.211620443,9.463618685,38.34952474,10.35069333,154.9945626,0,0.494982258,60.33141956,-0.494982258,119.6685804,0.948986278,0,185.4372379,10.35069333,192.2115597,1,16,4% +2018-01-11 01:00:00,88.73431956,241.3147095,1.371969522,10.43265572,1.141527866,4.860393802,3.742944727,1.117449075,1.107106589,0.010342486,0.367071172,0,0.367071172,0.034421277,0.332649895,1.548706036,4.211736214,44.74236634,-44.74236634,0,0,0.832035878,0.008605319,0.276776647,0.876866118,1,0.022346461,0,0.959207582,0.997969545,0.724496596,1,1.067229155,0.024938098,0.105802971,0.312029739,0.744106026,0.468602622,0.961238037,0.922476074,0.006111345,0.266048241,1.0733405,0.290986339,0.460883313,0,0.358771997,68.97520069,-0.358771997,111.0247993,0.910635723,0,1.493037308,0.290986339,1.683482048,1,17,13% +2018-01-11 02:00:00,99.89208839,250.1707626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743445839,4.3663035,-5.734391238,5.734391238,1,0.489207654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175501172,79.89217548,-0.175501172,100.1078245,0.765101617,0,0,0,0,1,18,0% +2018-01-11 03:00:00,111.2808311,258.5173848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942216897,4.511979538,-2.539089041,2.539089041,1,0.964363489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025867795,91.48228085,0.025867795,88.51771915,0,0,0,0,0,1,19,0% +2018-01-11 04:00:00,123.011724,266.9904943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146959603,4.659863198,-1.471995355,1.471995355,1,0.781879721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.237668496,103.7489738,0.237668496,76.25102616,0,0.839622937,0,0,0,1,20,0% +2018-01-11 05:00:00,134.8306412,276.5263448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353238622,4.826295186,-0.900034203,0.900034203,1,0.684068603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445471851,116.4535316,0.445471851,63.54646842,0,0.937759462,0,0,0,1,21,0% +2018-01-11 06:00:00,146.3699173,288.9571664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554636984,5.043253951,-0.51723569,0.51723569,1,0.618606202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635120273,129.4289054,0.635120273,50.57109457,0,0.971274754,0,0,0,1,22,0% +2018-01-11 07:00:00,156.7748719,308.8088728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.736237699,5.38973159,-0.222238791,0.222238791,1,0.568158761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793691792,142.5318662,0.793691792,37.46813383,0,0.987003254,0,0,0,1,23,0% +2018-01-12 08:00:00,163.3596684,345.8840337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.851164079,6.036815219,0.030639744,-0.030639744,1,0.524913985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91038,155.5579176,0.91038,24.44208238,0,0.99507788,0,0,0,1,0,0% +2018-01-12 09:00:00,161.3394679,32.60089719,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815904928,0.568992995,0.268287944,-0.268287944,1,0.484273749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977229978,167.7496952,0.977229978,12.25030477,0,0.998834971,0,0,0,1,1,0% +2018-01-12 10:00:00,152.5744584,61.01400544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662926654,1.064895285,0.512547563,-0.512547563,1,0.442502894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989680176,171.7615033,0.989680176,8.238496656,0,0.999478628,0,0,0,1,2,0% +2018-01-12 11:00:00,141.510628,76.82669379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469826385,1.34087876,0.789495798,-0.789495798,1,0.395141957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946873349,161.2398817,0.946873349,18.76011832,0,0.997194627,0,0,0,1,3,0% +2018-01-12 12:00:00,129.7847823,87.68848672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26517177,1.530452809,1.144110891,-1.144110891,1,0.334499204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851715401,148.3987389,0.851715401,31.60126108,0,0.991294944,0,0,0,1,4,0% +2018-01-12 13:00:00,117.9612798,96.61651287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058812722,1.686276261,1.684161492,-1.684161492,1,0.242145112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710678063,135.2901112,0.710678063,44.70988879,0,0.979644655,0,0,0,1,5,0% +2018-01-12 14:00:00,106.3361674,104.9410791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855916234,1.83156735,2.796742462,-2.796742462,1,0.051882561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533358762,122.232675,0.533358762,57.76732495,0,0.95625447,0,0,0,1,6,0% +2018-01-12 15:00:00,95.156171,113.4295915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660788488,1.979719841,8.048014373,-8.048014373,1,0,#DIV/0!,0,0,0.458328633,1,0.123620652,0,0.948518437,0.9872804,0.724496596,1,0,0,0.064401865,0.312029739,0.833656752,0.558153348,0.961238037,0.922476074,0,0,0,0,0,0,-0.331827551,109.379738,0.331827551,70.62026198,0,0.899319323,0,0,0,1,7,0% +2018-01-12 16:00:00,84.55042421,122.6657886,34.70164419,173.7690768,18.19884733,17.91168059,0,17.91168059,17.65008494,0.261595652,29.33575321,20.37317542,8.962577789,0.548762394,8.413815396,1.475683287,2.140921891,-6.356997701,6.356997701,0.382735678,0.382735678,0.52443761,0.184804851,5.943959269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.965933,0.397576486,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.133890485,5.713559739,17.09982348,6.111136225,0,20.37317542,-0.117242813,96.73300406,0.117242813,83.26699594,0,0.623534628,17.09982348,18.81451658,29.41354829,1,8,72% +2018-01-12 17:00:00,75.29257223,133.1782739,186.741712,528.9374944,52.45329525,99.51551663,47.23614386,52.27937277,50.87163487,1.407737905,46.85935049,0,46.85935049,1.581660384,45.2776901,1.314103288,2.324399372,-1.719025014,1.719025014,0.82412428,0.82412428,0.280886871,1.229694903,39.55121512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.89975043,1.145907564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890909771,38.01813238,49.7906602,39.16403994,47.23614386,0,0.08930383,84.87644181,-0.08930383,95.12355819,0.490113596,0,72.94173653,39.16403994,98.57381739,1,9,35% +2018-01-12 18:00:00,67.57716273,145.4229338,328.1077803,678.5344217,69.28838627,258.8907466,189.2182457,69.67250082,67.19908578,2.473415041,81.64283053,0,81.64283053,2.089300493,79.55353003,1.179443989,2.538109002,-0.609936137,0.609936137,0.634458912,0.634458912,0.211175688,1.76021151,56.61445285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59431729,1.513691095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.275267247,54.41996551,65.86958454,55.93365661,189.2182457,0,0.278863149,73.80763437,-0.278863149,106.1923656,0.870700583,0,230.6220215,55.93365661,267.2294811,1,10,16% +2018-01-12 19:00:00,62.09889789,159.5948288,426.7714224,744.725785,78.27936412,405.0197346,325.8835989,79.13613572,75.91895247,3.217183251,105.836084,0,105.836084,2.360411648,103.4756723,1.08383023,2.785455232,-0.013355141,0.013355141,0.532437553,0.532437553,0.183422226,1.98885914,63.96854659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.97618483,1.710110204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440921676,61.48900014,74.41710651,63.19911035,325.8835989,0,0.437588714,64.04986744,-0.437588714,115.9501326,0.935737455,0,379.3585961,63.19911035,420.7211498,1,11,11% +2018-01-12 20:00:00,59.51132182,175.2980426,472.1324504,768.9626449,81.98534002,509.4861949,426.4138816,83.07231337,79.51317952,3.559133841,116.9461393,0,116.9461393,2.472160495,114.4739788,1.038668508,3.059528015,0.448114064,-0.448114064,0.453521671,0.453521671,0.173649026,1.951889862,62.77948754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.43109259,1.791071863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414137561,60.34603136,77.84523015,62.13710323,426.4138816,0,0.554531334,56.32155967,-0.554531334,123.6784403,0.95983377,0,487.1316736,62.13710323,527.7991649,1,12,8% +2018-01-12 21:00:00,60.19939982,191.4112406,460.1636203,762.8737006,81.02832105,556.3265731,474.2726471,82.05392595,78.5850182,3.468907743,114.0153002,0,114.0153002,2.443302842,111.5719973,1.050677735,3.340756373,0.91000437,-0.91000437,0.374533777,0.374533777,0.176085891,1.68127397,54.07555021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.53890862,1.770164592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218077268,51.97947572,76.75698589,53.74964031,474.2726471,0,0.621692223,51.56018483,-0.621692223,128.4398152,0.969574352,0,536.5995803,53.74964031,571.7776449,1,13,7% +2018-01-12 22:00:00,64.05507984,206.579098,391.8962187,723.7122551,75.26710516,535.149187,459.1973835,75.95180346,72.99752423,2.954279234,97.28935637,0,97.28935637,2.269580927,95.01977545,1.117972046,3.605485425,1.492825423,-1.492825423,0.274865507,0.274865507,0.192058769,1.223467313,39.35091443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16799689,1.644303655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886397904,37.82559574,71.05439479,39.46989939,459.1973835,0,0.634502705,50.61688922,-0.634502705,129.3831108,0.971198129,0,517.0260347,39.46989939,542.8582945,1,14,5% +2018-01-12 23:00:00,70.54570703,219.9617003,273.6998216,630.9816786,63.5483625,437.3303894,373.6349796,63.69540977,61.63214491,2.063264866,68.27790813,0,68.27790813,1.916217598,66.36169053,1.231254861,3.839055899,2.450847647,-2.450847647,0.111034058,0.111034058,0.232182696,0.654955716,21.06562723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24316198,1.388293127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474513187,20.24908216,59.71767516,21.63737529,373.6349796,0,0.592148698,53.69036493,-0.592148698,126.3096351,0.96556175,0,420.4853198,21.63737529,434.6465492,1,15,3% +2018-01-12 00:00:00,78.98702706,231.4484705,121.0005649,416.9711009,41.34605383,248.57441,207.5629389,41.01147113,40.09931776,0.912153369,30.58472392,0,30.58472392,1.246736074,29.33798785,1.378583689,4.039537859,4.871343236,-4.871343236,0,0,0.341701329,0.311684018,10.02482944,0.232478481,1,0.20246939,0,0.938561363,0.977323326,0.724496596,1,38.82865074,0.903256041,0.035825917,0.312029739,0.90343153,0.627928126,0.961238037,0.922476074,0.215678091,9.636247371,39.04432883,10.53950341,159.3090221,0,0.497787349,60.14628017,-0.497787349,119.8537198,0.949555503,0,190.3170874,10.53950341,197.2149816,1,16,4% +2018-01-12 01:00:00,88.57512179,241.3783918,1.76640703,12.83140655,1.447338029,6.054504442,4.637493072,1.41701137,1.403695447,0.013315922,0.471928417,0,0.471928417,0.043642582,0.428285835,1.545927511,4.21284768,39.74841724,-39.74841724,0,0,0.819368359,0.010910645,0.350923862,0.862395913,1,0.025152929,0,0.95894408,0.997706043,0.724496596,1,1.353552476,0.031618902,0.104569543,0.312029739,0.746575333,0.471071929,0.961238037,0.922476074,0.007731992,0.337321364,1.361284468,0.368940266,0.638138002,0,0.361417359,68.81273355,-0.361417359,111.1872664,0.911655787,0,1.94304667,0.368940266,2.184510696,1,17,12% +2018-01-12 02:00:00,99.72148274,250.2506157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740468209,4.367697199,-5.837006481,5.837006481,1,0.471659414,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178430075,79.72167053,-0.178430075,100.2783295,0.769778182,0,0,0,0,1,18,0% +2018-01-12 03:00:00,111.1149503,258.6124779,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939321732,4.513639225,-2.560348241,2.560348241,1,0.967999026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023056077,91.32113296,0.023056077,88.67886704,0,0,0,0,0,1,19,0% +2018-01-12 04:00:00,122.8484039,267.1021479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144109129,4.66181192,-1.480335339,1.480335339,1,0.783305942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235077573,103.5961955,0.235077573,76.40380451,0,0.837304253,0,0,0,1,20,0% +2018-01-12 05:00:00,134.6664564,276.656759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350373057,4.828571343,-0.904176631,0.904176631,1,0.684777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443189951,116.3075904,0.443189951,63.69240964,0,0.937181557,0,0,0,1,21,0% +2018-01-12 06:00:00,146.1993985,289.1028391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.551660868,5.04579642,-0.519508665,0.519508665,1,0.618994904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633214185,129.2876594,0.633214185,50.71234058,0,0.971037777,0,0,0,1,22,0% +2018-01-12 07:00:00,156.5911122,308.9197707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.733030487,5.391667123,-0.223491141,0.223491141,1,0.568372926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792202297,142.3917985,0.792202297,37.60820153,0,0.986884808,0,0,0,1,23,0% +2018-01-13 08:00:00,163.1777218,345.7045474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.847988512,6.033682592,0.030052421,-0.030052421,1,0.525014423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909319078,155.4114221,0.909319078,24.58857787,0,0.995013801,0,0,0,1,0,0% +2018-01-13 09:00:00,161.2304158,32.11845091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81400161,0.560572719,0.268225995,-0.268225995,1,0.484284343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976580006,167.575404,0.976580006,12.42459603,0,0.998800918,0,0,0,1,1,0% +2018-01-13 10:00:00,152.5272233,60.61573589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662102245,1.05794417,0.513004628,-0.513004628,1,0.442424731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989395152,171.6483092,0.989395152,8.351690771,0,0.999464074,0,0,0,1,2,0% +2018-01-13 11:00:00,141.4887078,76.52387804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469443805,1.335593628,0.790604898,-0.790604898,1,0.394952289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946882063,161.2414342,0.946882063,18.75856582,0,0.997195113,0,0,0,1,3,0% +2018-01-13 12:00:00,129.7702421,87.44199843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264917996,1.526150777,1.146261454,-1.146261454,1,0.334131436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85192634,148.421811,0.85192634,31.578189,0,0.99130948,0,0,0,1,4,0% +2018-01-13 13:00:00,117.9448205,96.40199324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058525453,1.682532188,1.688480612,-1.688480612,1,0.241406499,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710985705,135.3151717,0.710985705,44.6848283,0,0.979675098,0,0,0,1,5,0% +2018-01-13 14:00:00,106.3116629,104.7443109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85548855,1.828133099,2.807885085,-2.807885085,1,0.04997706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533650831,122.2524603,0.533650831,57.74753969,0,0.956305777,0,0,0,1,6,0% +2018-01-13 15:00:00,95.11851991,113.2419598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660131352,1.976445049,8.132624083,-8.132624083,1,0,#DIV/0!,0,0,0.46254097,1,0.122347397,0,0.948667678,0.987429642,0.724496596,1,0,0,0.064886733,0.312029739,0.832528739,0.557025335,0.961238037,0.922476074,0,0,0,0,0,0,-0.331992732,109.3897709,0.331992732,70.61022905,0,0.899394294,0,0,0,1,7,0% +2018-01-13 16:00:00,84.49588178,122.4824838,35.26726887,175.0440687,18.47751479,18.18620911,0,18.18620911,17.92034954,0.26585957,29.62301983,20.51489694,9.108122893,0.557165246,8.550957647,1.474731341,2.137722618,-6.319986323,6.319986323,0.389064996,0.389064996,0.523928146,0.18853459,6.063920509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.22572161,0.403664324,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.136592669,5.828871046,17.36231428,6.23253537,0,20.51489694,-0.117198469,96.73044571,0.117198469,83.26955429,0,0.623373268,17.36231428,19.02097372,29.81116116,1,8,72% +2018-01-13 17:00:00,75.21392392,132.9984267,187.8974264,529.1786559,52.84532117,100.1247888,47.45649891,52.66828993,51.25183976,1.416450169,47.15138785,0,47.15138785,1.593481412,45.55790644,1.312730616,2.321260446,-1.720070108,1.720070108,0.824303002,0.824303002,0.281245583,1.237576602,39.80471765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.26521784,1.154471858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896620035,38.26180865,50.16183787,39.41628051,47.45649891,0,0.089679541,84.85482841,-0.089679541,95.14517159,0.492459233,0,73.53222894,39.41628051,99.3293962,1,9,35% +2018-01-13 18:00:00,67.4706279,145.2512162,329.73141,678.5270921,69.74900535,259.8631715,189.7317014,70.13147014,67.6458155,2.485654648,82.05038772,0,82.05038772,2.103189858,79.94719786,1.177584605,2.535111965,-0.613723852,0.613723852,0.63510665,0.63510665,0.211532791,1.770515794,56.94587404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02373089,1.523753892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282732666,54.73854017,66.30646355,56.26229406,189.7317014,0,0.279622883,73.76230154,-0.279622883,106.2376985,0.871187738,0,231.5983954,56.26229406,268.4209416,1,10,16% +2018-01-13 19:00:00,61.96233158,159.4431002,428.8478307,744.7239168,78.78890551,406.4086228,326.7626574,79.6459654,76.41312931,3.232836094,106.3548978,0,106.3548978,2.375776201,103.9791216,1.081446698,2.782807068,-0.018250918,0.018250918,0.53327478,0.53327478,0.18372229,2.001198626,64.36542687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.4512064,1.72124177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449861592,61.87049657,74.90106799,63.59173834,326.7626574,0,0.438770194,63.97455902,-0.438770194,116.025441,0.936045131,0,380.7656625,63.59173834,422.3851834,1,11,11% +2018-01-13 20:00:00,59.34741104,175.18297,474.6252468,769.0663753,82.53118789,511.3325155,427.7120219,83.62049366,80.04256807,3.577925593,117.5670059,0,117.5670059,2.488619822,115.0783861,1.035807725,3.057519619,0.441926406,-0.441926406,0.454579823,0.454579823,0.173887058,1.965788649,63.22652032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.93996099,1.80299659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424207185,60.77573627,78.36416818,62.57873286,427.7120219,0,0.556144483,56.21041983,-0.556144483,123.7895802,0.960095305,0,489.0084724,62.57873286,529.9650014,1,12,8% +2018-01-13 21:00:00,60.01647532,191.3450873,463.0062793,763.1888087,81.60194331,558.6459439,476.0142634,82.63168055,79.14134364,3.490336908,114.7218326,0,114.7218326,2.46059967,112.2612329,1.0474851,3.33960178,0.901596454,-0.901596454,0.375971615,0.375971615,0.176243708,1.696138615,54.55364829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.0736698,1.782696085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228846653,52.43904179,77.30251645,54.22173787,476.0142634,0,0.623717562,51.41187828,-0.623717562,128.5881217,0.96983551,0,538.9580526,54.22173787,574.4450956,1,13,7% +2018-01-13 22:00:00,63.86387564,206.5617175,394.9901419,724.4528663,75.86483001,537.9532647,461.3984367,76.554828,73.57722547,2.977602534,98.05753748,0,98.05753748,2.287604536,95.76993294,1.114634903,3.605182078,1.479823672,-1.479823672,0.277088937,0.277088937,0.192067654,1.238494379,39.83423651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72522777,1.657361699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897284961,38.2901833,71.62251273,39.947545,461.3984367,0,0.636892278,50.43952706,-0.636892278,129.5604729,0.971493788,0,519.8682279,39.947545,546.0130972,1,14,5% +2018-01-13 23:00:00,70.35494643,219.983465,276.8987616,632.7242154,64.18179224,440.6961335,376.3622792,64.33385422,62.2464744,2.087379828,69.07262842,0,69.07262842,1.935317842,67.13731058,1.22792546,3.839435765,2.425639193,-2.425639193,0.115344957,0.115344957,0.231787935,0.668790909,21.51061459,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83367885,1.402131188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.484536737,20.67682094,60.31821559,22.07895213,376.3622792,0,0.594828316,53.49960593,-0.594828316,126.5003941,0.965942132,0,423.862398,22.07895213,438.3126306,1,15,3% +2018-01-13 00:00:00,78.8021106,231.498386,123.9706123,421.5994856,42.09674449,252.8376492,211.0757341,41.76191516,40.82737232,0.934542841,31.32748241,0,31.32748241,1.269372167,30.05811025,1.375356287,4.040409049,4.790265405,-4.790265405,0,0,0.339570352,0.317343042,10.20684308,0.22422283,1,0.205801111,0,0.938110124,0.976872087,0.724496596,1,39.52827677,0.919655814,0.034675879,0.312029739,0.906374823,0.630871419,0.961238037,0.922476074,0.219806252,9.811205805,39.74808302,10.73086162,163.7477357,0,0.500654629,59.95668063,-0.500654629,120.0433194,0.950130755,0,195.3298427,10.73086162,202.352977,1,16,4% +2018-01-13 01:00:00,88.4119969,241.4486559,2.235386435,15.61306487,1.80271196,7.45037592,5.685171089,1.765204831,1.748353543,0.016851287,0.596353738,0,0.596353738,0.054358417,0.541995322,1.543080444,4.214074021,35.67015345,-35.67015345,0,0,0.806443097,0.013589604,0.437088386,0.847788407,1,0.028027301,0,0.958672244,0.997434207,0.724496596,1,1.686413335,0.039382488,0.103311918,0.312029739,0.749105684,0.47360228,0.961238037,0.922476074,0.009610172,0.420145982,1.696023507,0.45952847,0.865348949,0,0.364129089,68.64600481,-0.364129089,111.3539952,0.91268606,0,2.48581543,0.45952847,2.786567623,1,17,12% +2018-01-13 02:00:00,99.54845993,250.3372824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737448391,4.369209819,-5.944768911,5.944768911,1,0.453230953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.181397994,79.54880042,-0.181397994,100.4511996,0.774362994,0,0,0,0,1,18,0% +2018-01-13 03:00:00,110.9470142,258.714773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936390693,4.515424612,-2.582147751,2.582147751,1,0.971726962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.020215474,91.15834023,0.020215474,88.84165977,0,0,0,0,0,1,19,0% +2018-01-13 04:00:00,122.6831837,267.2216812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141225493,4.66389817,-1.488785537,1.488785537,1,0.784751011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.23246603,103.4423009,0.23246603,76.55769915,0,0.834914811,0,0,0,1,20,0% +2018-01-13 05:00:00,134.500263,276.7961941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347472434,4.831004943,-0.908324064,0.908324064,1,0.685486253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440893258,116.1608884,0.440893258,63.83911162,0,0.936593866,0,0,0,1,21,0% +2018-01-13 06:00:00,146.0263527,289.2594007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548640649,5.048528935,-0.521746414,0.521746414,1,0.619377581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631296294,129.1458257,0.631296294,50.85417432,0,0.970797888,0,0,0,1,22,0% +2018-01-13 07:00:00,156.4035625,309.0444499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.729757127,5.393843185,-0.224685923,0.224685923,1,0.568577245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790700943,142.251064,0.790700943,37.74893599,0,0.986764967,0,0,0,1,23,0% +2018-01-14 08:00:00,162.9893918,345.5411162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.844701532,6.030830179,0.029540916,-0.029540916,1,0.525101895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908243202,155.2636929,0.908243202,24.73630709,0,0.994948666,0,0,0,1,0,0% +2018-01-14 09:00:00,161.1130232,31.63811009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811952723,0.55218919,0.268260536,-0.268260536,1,0.484278436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975909157,167.3980028,0.975909157,12.60199724,0,0.998765723,0,0,0,1,1,0% +2018-01-14 10:00:00,152.4725935,60.21108946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661148775,1.050881757,0.513587279,-0.513587279,1,0.442325092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989080908,171.5252509,0.989080908,8.474749147,0,0.999448018,0,0,0,1,2,0% +2018-01-14 11:00:00,141.4602981,76.21433971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468947962,1.330191165,0.791887189,-0.791887189,1,0.394733005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946851374,161.235967,0.946851374,18.76403299,0,0.997193402,0,0,0,1,3,0% +2018-01-14 12:00:00,129.7496592,87.18962496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264558756,1.521746029,1.148675648,-1.148675648,1,0.333718585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852086552,148.4393447,0.852086552,31.56065526,0,0.991320515,0,0,0,1,4,0% +2018-01-14 13:00:00,117.9224719,96.18237826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058135396,1.678699183,1.693276284,-1.693276284,1,0.240586391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71123094,135.3351564,0.71123094,44.66484359,0,0.979699346,0,0,0,1,5,0% +2018-01-14 14:00:00,106.2812398,104.543082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854957568,1.824620992,2.820262113,-2.820262113,1,0.047860464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533869262,122.26726,0.533869262,57.73273998,0,0.956344112,0,0,0,1,6,0% +2018-01-14 15:00:00,95.07479748,113.0504077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659368252,1.973101836,8.22880945,-8.22880945,1,0,#DIV/0!,0,0,0.467250732,1,0.120931279,0,0.948833228,0.987595191,0.724496596,1,0,0,0.065426958,0.312029739,0.831274144,0.555770739,0.961238037,0.922476074,0,0,0,0,0,0,-0.332074272,109.3947238,0.332074272,70.60527619,0,0.899431274,0,0,0,1,7,0% +2018-01-14 16:00:00,84.4351472,122.2958019,35.91420767,176.6171652,18.78722174,18.49145415,0,18.49145415,18.22071769,0.270736468,29.94989222,20.67557272,9.274319503,0.566504053,8.70781545,1.473671323,2.134464405,-6.277072803,6.277072803,0.39640364,0.39640364,0.523113914,0.192805867,6.201299461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.5144469,0.410430258,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.139687195,5.96092492,17.65413409,6.371355178,0,20.67557272,-0.117064345,96.72270766,0.117064345,83.27729234,0,0.622884467,17.65413409,19.24984827,30.25277479,1,8,71% +2018-01-14 17:00:00,75.12870161,132.8158777,189.1722581,529.5850944,53.25494961,100.818425,47.74324822,53.07517678,51.64911639,1.426060388,47.47283735,0,47.47283735,1.605833221,45.86700413,1.311243206,2.318074365,-1.720441784,1.720441784,0.824366562,0.824366562,0.281515642,1.246106002,40.07905249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.64709524,1.163420702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902799557,38.52550973,50.5498948,39.68893044,47.74324822,0,0.090152175,84.82763832,-0.090152175,95.17236168,0.495382212,0,74.20105071,39.68893044,100.1766619,1,9,35% +2018-01-14 18:00:00,67.3572349,145.0777755,331.4786833,678.6164822,70.22199723,260.9434054,190.3400341,70.60337126,68.10454493,2.498826332,82.4882968,0,82.4882968,2.117452308,80.37084449,1.175605524,2.532084854,-0.617323211,0.617323211,0.635722176,0.635722176,0.211844685,1.781394543,57.29577201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46467907,1.534086989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.290614282,55.07487541,66.75529335,56.6089624,190.3400341,0,0.28048248,73.71099726,-0.28048248,106.2890027,0.871735746,0,232.6815051,56.6089624,269.7309388,1,10,16% +2018-01-14 19:00:00,61.81876333,159.2911005,431.0449588,744.790358,79.30867895,407.9125759,327.7459473,80.16662863,76.91722966,3.249398974,106.90329,0,106.90329,2.391449288,104.5118407,1.07894096,2.780154173,-0.023092425,0.023092425,0.534102727,0.534102727,0.183991663,2.014055278,64.77894102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93576684,1.732596868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.459176193,62.2679821,75.39494303,64.00057896,327.7459473,0,0.440051276,63.89284722,-0.440051276,116.1071528,0.936376878,0,382.2886698,64.00057896,424.1757687,1,11,11% +2018-01-14 20:00:00,59.17664859,175.0695408,477.2317961,769.2254396,83.08614293,513.293771,429.115407,84.17836403,80.58078916,3.597574862,118.2157279,0,118.2157279,2.505353765,115.7103742,1.032827358,3.055539906,0.435735449,-0.435735449,0.455638539,0.455638539,0.174100183,1.980148264,63.68837488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45731958,1.815120274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.434610677,61.21968844,78.89193026,63.03480872,429.115407,0,0.557853894,56.09249022,-0.557853894,123.9075098,0.960370797,0,491.0018356,63.03480872,532.2568572,1,12,8% +2018-01-14 21:00:00,59.82724615,191.2825639,465.9529015,763.5536894,82.18402394,561.0755172,477.857095,83.21842218,79.70587239,3.512549791,115.4538271,0,115.4538271,2.478151548,112.9756756,1.044182428,3.338510542,0.893153072,-0.893153072,0.377415519,0.377415519,0.176378393,1.711405476,55.04468302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.6163163,1.795412361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239907441,52.91104304,77.85622374,54.7064554,477.857095,0,0.625832999,51.25664652,-0.625832999,128.7433535,0.970106482,0,541.428489,54.7064554,577.23277,1,13,7% +2018-01-14 22:00:00,63.66723157,206.5494838,398.1763131,725.2418498,76.47075266,540.8595884,463.6930898,77.16649856,74.16487732,3.001621238,98.84833237,0,98.84833237,2.30587534,96.54245703,1.111202817,3.604968561,1.466773321,-1.466773321,0.279320679,0.279320679,0.192052491,1.253864051,40.32857799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.29010108,1.670598834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908420236,38.76536314,72.19852131,40.43596197,463.6930898,0,0.639363393,50.25563432,-0.639363393,129.7443657,0.971797212,0,522.8141731,40.43596197,549.2787015,1,14,5% +2018-01-14 23:00:00,70.15971491,220.0112334,280.1773438,634.5140611,64.82366687,444.1534533,379.172364,64.98108931,62.86899414,2.112095165,69.88691352,0,69.88691352,1.95467273,67.93224078,1.224518027,3.839920414,2.40045338,-2.40045338,0.119651985,0.119651985,0.231366555,0.682914444,21.96487601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.43206851,1.416153739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.49476919,21.1134743,60.9268377,22.52962804,379.172364,0,0.597579135,53.30328798,-0.597579135,126.696712,0.966329073,0,427.3321168,22.52962804,442.0773077,1,15,3% +2018-01-14 00:00:00,78.61360119,231.5546926,127.0108751,426.2593506,42.8567794,257.1784537,214.6565027,42.521951,41.56448938,0.957461626,32.08754717,0,32.08754717,1.292290024,30.79525714,1.372066178,4.041391784,4.71043205,-4.71043205,0,0,0.337426062,0.323072506,10.39112234,0.215918506,1,0.209189004,0,0.937648783,0.976410746,0.724496596,1,40.23614321,0.936259723,0.033510796,0.312029739,0.909367255,0.63386385,0.961238037,0.922476074,0.224002365,9.988342043,40.46014557,10.92460177,168.3081913,0,0.503581921,59.76273771,-0.503581921,120.2372623,0.950711289,0,200.4726431,10.92460177,207.6225764,1,16,4% +2018-01-14 01:00:00,88.2450892,241.5255052,2.785516342,18.79827896,2.209834411,9.061370731,6.897172581,2.164198149,2.14319975,0.020998399,0.742015348,0,0.742015348,0.066634661,0.675380687,1.540167355,4.215415294,32.28225421,-32.28225421,0,0,0.793330263,0.016658665,0.535799938,0.833067268,1,0.030966869,0,0.958392194,0.997154157,0.724496596,1,2.067893785,0.048276585,0.10203162,0.312029739,0.751694716,0.476191312,0.961238037,0.922476074,0.01175609,0.51503128,2.079649875,0.563307865,1.151363862,0,0.36690447,68.47516586,-0.36690447,111.5248341,0.913724746,0,3.131679527,0.563307865,3.500353258,1,17,12% +2018-01-14 02:00:00,99.37313212,250.4307424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734388344,4.370841003,-6.057968316,6.057968316,1,0.433872715,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184402725,79.37368803,-0.184402725,100.626312,0.778854332,0,0,0,0,1,18,0% +2018-01-14 03:00:00,110.7771261,258.8242261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933425587,4.517334929,-2.604490783,2.604490783,1,0.975547845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017348008,90.99401752,0.017348008,89.00598248,0,0,0,0,0,1,19,0% +2018-01-14 04:00:00,122.5161567,267.3490218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138310321,4.666120682,-1.4973424,1.4973424,1,0.786214321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229835602,103.2873931,0.229835602,76.71260686,0,0.832453199,0,0,0,1,20,0% +2018-01-14 05:00:00,134.332143,276.9445352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344538186,4.833593984,-0.912473572,0.912473572,1,0.686195861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438583133,116.0135144,0.438583133,63.98648562,0,0.935996528,0,0,0,1,21,0% +2018-01-14 06:00:00,145.8508536,289.42666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.545577613,5.05144816,-0.523946796,0.523946796,1,0.619753869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629367527,129.0034752,0.629367527,50.99652476,0,0.970555164,0,0,0,1,22,0% +2018-01-14 07:00:00,156.2123047,309.1825844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726419049,5.396254088,-0.225821545,0.225821545,1,0.568771448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789188191,142.1097113,0.789188191,37.89028869,0,0.986643756,0,0,0,1,23,0% +2018-01-15 08:00:00,162.7948075,345.3936301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.841305396,6.028256061,0.029106463,-0.029106463,1,0.525176191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907152367,155.1147491,0.907152367,24.88525093,0,0.994882468,0,0,0,1,0,0% +2018-01-15 09:00:00,160.9873199,31.16075854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.809758787,0.543857834,0.26839258,-0.26839258,1,0.484255855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975216994,167.2175045,0.975216994,12.7824955,0,0.998729359,0,0,0,1,1,0% +2018-01-15 10:00:00,152.4104995,59.80063827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660065031,1.043718033,0.514296436,-0.514296436,1,0.442203819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98873664,171.3924394,0.98873664,8.607560591,0,0.999430417,0,0,0,1,2,0% +2018-01-15 11:00:00,141.425319,75.89840165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468337463,1.324677006,0.793343691,-0.793343691,1,0.394483928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946780193,161.2232926,0.946780193,18.77670742,0,0.997189432,0,0,0,1,3,0% +2018-01-15 12:00:00,129.7229643,86.93158325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264092842,1.517242352,1.151355074,-1.151355074,1,0.333260376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852194776,148.4511938,0.852194776,31.54880622,0,0.991327967,0,0,0,1,4,0% +2018-01-15 13:00:00,117.8941797,95.9578346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057641606,1.674780157,1.698552611,-1.698552611,1,0.239684086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71141245,135.3499527,0.71141245,44.65004733,0,0.979717283,0,0,0,1,5,0% +2018-01-15 14:00:00,106.2448605,104.3375317,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854322629,1.821033461,2.833893995,-2.833893995,1,0.045529274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534012807,122.2769872,0.534012807,57.72301281,0,0.956369287,0,0,0,1,6,0% +2018-01-15 15:00:00,95.02498308,112.8550579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658498826,1.969692337,8.337232337,-8.337232337,1,0,#DIV/0!,0,0,0.472461713,1,0.119373603,0,0.949014794,0.987776757,0.724496596,1,0,0,0.066022351,0.312029739,0.829894121,0.554390717,0.961238037,0.922476074,0,0,0,0,0,0,-0.33207111,109.3945317,0.33207111,70.60546827,0,0.89942984,0,0,0,1,7,0% +2018-01-15 16:00:00,84.36821161,122.1058535,36.64379893,178.4850259,19.12816221,18.82761398,0,18.82761398,18.55137754,0.276236435,30.31561181,20.85411385,9.461497965,0.576784666,8.884713299,1.472503077,2.131149179,-6.228558397,6.228558397,0.404700093,0.404700093,0.522002706,0.197632875,6.356552628,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.83228973,0.417878527,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143184345,6.110160169,17.97547407,6.528038696,0,20.85411385,-0.116839571,96.70974008,0.116839571,83.29025992,0,0.62206279,17.97547407,19.50060694,30.7382313,1,8,71% +2018-01-15 17:00:00,75.0369201,132.6307272,190.5659614,530.1535019,53.68214524,101.5966551,48.09665787,53.49999721,52.0634305,1.436566712,47.82363837,0,47.82363837,1.618714745,46.20492363,1.309641316,2.31484288,-1.720144723,1.720144723,0.824315762,0.824315762,0.281698499,1.255280251,40.37412786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.04534972,1.172753322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909446268,38.8091474,50.95479599,39.98190072,48.09665787,0,0.090722136,84.79484763,-0.090722136,95.20515237,0.498866589,0,74.94861166,39.98190072,101.115966,1,9,35% +2018-01-15 18:00:00,67.23701709,144.9027035,333.348733,678.8005017,70.70729899,262.1310395,191.0429029,71.0881366,68.57521304,2.512923556,82.95634564,0,82.95634564,2.132085947,80.82425969,1.173507328,2.52902927,-0.620729665,0.620729665,0.636304714,0.636304714,0.212112098,1.792842507,57.66397788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91710316,1.54468901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298908293,55.42880889,67.21601145,56.9734979,191.0429029,0,0.2814419,73.65371934,-0.2814419,106.3462807,0.872343439,0,233.8710344,56.9734979,271.1590493,1,10,16% +2018-01-15 19:00:00,61.66824409,159.138917,433.3614313,744.9233505,79.83858564,409.5306123,328.832593,80.69801924,77.43115771,3.266861522,107.4809242,0,107.4809242,2.40742793,105.0734963,1.076313903,2.777498071,-0.027873314,0.027873314,0.534920307,0.534920307,0.184230944,2.027422029,65.20886168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.42977403,1.74417334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468860359,62.68123818,75.89863439,64.42541152,328.832593,0,0.441431448,63.80475115,-0.441431448,116.1952488,0.93673213,0,383.9266895,64.42541152,426.0918329,1,11,11% +2018-01-15 20:00:00,58.99910318,174.9578442,479.9502897,769.4380604,83.65006897,515.3683983,430.6226195,84.74577877,81.12771076,3.618068015,118.8918626,0,118.8918626,2.522358215,116.3695044,1.029728606,3.053590433,0.429549097,-0.429549097,0.456696468,0.456696468,0.174289027,1.994960415,64.16478456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98304142,1.827439941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445342029,61.67763155,79.42838345,63.50507149,430.6226195,0,0.559658589,55.96780979,-0.559658589,124.0321902,0.960659818,0,493.1102309,63.50507149,534.6730301,1,12,8% +2018-01-15 21:00:00,59.63179991,191.2237608,469.0013425,763.966281,82.77438474,563.6131474,479.7991855,83.81396186,80.27843164,3.535530227,116.2107585,0,116.2107585,2.495953105,113.7148054,1.040771247,3.337484235,0.884684815,-0.884684815,0.378863676,0.378863676,0.17649072,1.727065763,55.54837168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16668203,1.808309528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.251253266,53.39520774,78.41793529,55.20351727,479.7991855,0,0.628037123,51.09454693,-0.628037123,128.9054531,0.970386872,0,544.008766,55.20351727,580.138364,1,13,7% +2018-01-15 22:00:00,63.4652525,206.5424762,401.4523851,726.0764784,77.08463687,543.8654239,466.0788556,77.78656831,74.76025066,3.026317653,99.66116484,0,99.66116484,2.324386214,97.33677862,1.107677617,3.604846254,1.453690595,-1.453690595,0.281557957,0.281557957,0.192014395,1.26956801,40.83367131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.86239658,1.684009899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.919797701,39.25087805,72.78219428,40.93488795,466.0788556,0,0.641914274,50.06528934,-0.641914274,129.9347107,0.972107979,0,525.8611688,40.93488795,552.6522342,1,14,5% +2018-01-15 23:00:00,69.96012854,220.0450604,283.5332136,636.347038,65.47364038,447.6989563,382.0621947,65.63676168,63.49936855,2.137393129,70.72018209,0,70.72018209,1.974271829,68.74591026,1.221034588,3.840510807,2.375320491,-2.375320491,0.123949962,0.123949962,0.230920532,0.697320025,22.42820903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.03800836,1.43035322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.505205984,21.55884762,61.54321435,22.98920084,382.0621947,0,0.600399109,53.10151292,-0.600399109,126.8984871,0.966722062,0,430.8911668,22.98920084,445.937139,1,15,3% +2018-01-15 00:00:00,78.42161818,231.6174172,130.1193784,430.9431138,43.62551651,261.5925087,218.3015676,43.29094106,42.31004623,0.980894837,32.86442004,0,32.86442004,1.315470284,31.54894976,1.368715442,4.042486535,4.63190269,-4.63190269,0,0,0.335273017,0.328867571,10.57751156,0.207574523,1,0.212630504,0,0.937177573,0.975939536,0.724496596,1,40.95162043,0.953053743,0.032331713,0.312029739,0.912406536,0.636903132,0.961238037,0.922476074,0.228263896,10.16750644,41.17988432,11.12056019,172.9877237,0,0.506567017,59.56457022,-0.506567017,120.4354298,0.951296377,0,205.7424791,11.12056019,213.0206634,1,16,4% +2018-01-15 01:00:00,88.07455087,241.6089403,3.422805322,22.40183972,2.670123624,10.89828276,8.282870665,2.615412097,2.589609545,0.025802552,0.910412857,0,0.910412857,0.080514079,0.829898778,1.5371909,4.21687151,29.4274695,-29.4274695,0,0,0.780098011,0.02012852,0.647402386,0.818255837,1,0.033968784,0,0.958104069,0.996866032,0.724496596,1,2.499358622,0.058332176,0.100730216,0.312029739,0.754339936,0.478836532,0.961238037,0.922476074,0.014175888,0.622307799,2.51353451,0.680639975,1.505363397,0,0.369740645,68.30037693,-0.369740645,111.6996231,0.914770074,0,3.890595897,0.680639975,4.336061147,1,17,11% +2018-01-15 02:00:00,99.19561099,250.5309722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731290015,4.372590344,-6.176919376,6.176919376,1,0.413530885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.187442062,79.19645663,-0.187442062,100.8035434,0.783250907,0,0,0,0,1,18,0% +2018-01-15 03:00:00,110.6053886,258.94079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930428202,4.519369354,-2.627380623,2.627380623,1,0.979462238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014455696,90.82827922,0.014455696,89.17172078,0,0,0,0,0,1,19,0% +2018-01-15 04:00:00,122.3474142,267.4840939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13536521,4.668478135,-1.506002323,1.506002323,1,0.787695255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227188008,103.1315744,0.227188008,76.86842564,0,0.829917961,0,0,0,1,20,0% +2018-01-15 05:00:00,134.1621762,277.1016643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341571707,4.836336404,-0.916622218,0.916622218,1,0.686905321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436260918,115.8655552,0.436260918,64.13444478,0,0.935389688,0,0,0,1,21,0% +2018-01-15 06:00:00,145.6729722,289.6044216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.542472995,5.054550684,-0.526107683,0.526107683,1,0.620123402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627428785,128.8606767,0.627428785,51.13932333,0,0.970309681,0,0,0,1,22,0% +2018-01-15 07:00:00,156.0174177,309.3338415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72301763,5.398894022,-0.226896436,0.226896436,1,0.568955265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787664477,141.9677858,0.787664477,38.03221423,0,0.986521195,0,0,0,1,23,0% +2018-01-16 08:00:00,162.5940972,345.2619385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.837802341,6.025957609,0.028750269,-0.028750269,1,0.525237104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906046546,154.9646061,0.906046546,25.03539392,0,0.994815197,0,0,0,1,0,0% +2018-01-16 09:00:00,160.853345,30.68724429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807420483,0.535593451,0.268623117,-0.268623117,1,0.484216431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974503063,167.0339185,0.974503063,12.96608155,0,0.998691798,0,0,0,1,1,0% +2018-01-16 10:00:00,152.3408791,59.38496081,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658849925,1.036463092,0.515133004,-0.515133004,1,0.442060758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98836153,171.2500073,0.98836153,8.749992654,0,0.999411224,0,0,0,1,2,0% +2018-01-16 11:00:00,141.3836957,75.57639365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467610998,1.319056906,0.794975431,-0.794975431,1,0.394204884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946667434,161.2032314,0.946667434,18.79676864,0,0.997183141,0,0,0,1,3,0% +2018-01-16 12:00:00,129.6900923,86.66809467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263519117,1.512643608,1.154301417,-1.154301417,1,0.332756522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852249759,148.4572153,0.852249759,31.54278472,0,0.991331752,0,0,0,1,4,0% +2018-01-16 13:00:00,117.8598935,95.72853151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057043198,1.670778063,1.704314064,-1.704314064,1,0.238698819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711528943,135.3594508,0.711528943,44.64054916,0,0.97972879,0,0,0,1,5,0% +2018-01-16 14:00:00,106.2024904,104.1278005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85358313,1.817372961,2.848803526,-2.848803526,1,0.042979594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534080253,122.2815579,0.534080253,57.71844211,0,0.956381111,0,0,0,1,6,0% +2018-01-16 15:00:00,94.96905946,112.6560331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657522775,1.966218699,8.458665305,-8.458665305,1,0,#DIV/0!,0,0,0.478178268,1,0.11767576,0,0.949212062,0.987974025,0.724496596,1,0,0,0.066672717,0.312029739,0.828389904,0.5528865,0.961238037,0.922476074,0,0,0,0,0,0,-0.331982229,109.3891329,0.331982229,70.61086706,0,0.899389528,0,0,0,1,7,0% +2018-01-16 16:00:00,84.29506898,121.9127485,37.53364287,181.4994346,19.49162145,19.1868216,0,19.1868216,18.90387714,0.282944454,30.83712812,21.14891755,9.688210565,0.587744303,9.100466262,1.471226497,2.127778862,-6.174770668,6.174770668,0.413898336,0.413898336,0.519310676,0.203229717,6.536566305,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.17112576,0.425818747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.147239238,6.283196163,18.31836499,6.70901491,0,21.14891755,-0.116523325,96.69149589,0.116523325,83.30850411,0,0.620901361,18.31836499,19.84040661,31.30351431,1,8,71% +2018-01-16 17:00:00,74.93859723,132.4430748,192.2388515,531.9131911,54.0190491,102.4507759,48.61142282,53.83935312,52.39017546,1.449177664,48.23940884,0,48.23940884,1.628873639,46.6105352,1.307925258,2.311567727,-1.719185601,1.719185601,0.824151742,0.824151742,0.280999645,1.265950945,40.71733407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.35942941,1.180113407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91717715,39.13905027,51.27660656,40.31916367,48.61142282,0,0.091389767,84.75643557,-0.091389767,95.24356443,0.502892797,0,75.72294097,40.31916367,102.1110272,1,9,35% +2018-01-16 18:00:00,67.11001063,144.7260906,335.5294061,679.9662852,71.04768249,263.525876,192.0911808,71.43469512,68.90533273,2.529362391,83.49533889,0,83.49533889,2.142349765,81.35298913,1.171290647,2.525946795,-0.623939233,0.623939233,0.636853582,0.636853582,0.211748005,1.805330161,58.06562376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.23442676,1.552125112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.307955556,55.81488619,67.54238232,57.3670113,192.0911808,0,0.282501037,73.59046871,-0.282501037,106.4095313,0.873009499,0,235.2398079,57.3670113,272.7853695,1,10,16% +2018-01-16 19:00:00,61.51082727,158.986636,435.9962596,745.9183505,80.19866627,411.441902,330.3747975,81.06710455,77.78038058,3.286723971,108.1306266,0,108.1306266,2.41828569,105.7123409,1.073566461,2.774840265,-0.032587537,0.032587537,0.535726487,0.535726487,0.183943473,2.041471584,65.66074364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.76546033,1.75203975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479039213,63.11560431,76.24449955,64.86764406,330.3747975,0,0.442910135,63.71029285,-0.442910135,116.2897072,0.937110283,0,385.8421194,64.86764406,428.2966951,1,11,11% +2018-01-16 20:00:00,58.81484574,174.8479685,482.9835368,770.4615136,84.03443454,517.7998857,432.6584655,85.14142019,81.50048628,3.640933914,119.6388985,0,119.6388985,2.533948255,117.1049503,1.026512707,3.051672741,0.423374998,-0.423374998,0.457752301,0.457752301,0.173990267,2.010152779,64.65342323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.34136743,1.835836885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.456348846,62.14732962,79.79771628,63.98316651,432.6584655,0,0.561557531,55.83642001,-0.561557531,124.16358,0.960961928,0,495.5660294,63.98316651,537.4417322,1,12,8% +2018-01-16 21:00:00,59.4302262,191.1687678,472.353182,765.1919728,83.18629065,566.5610037,482.3222888,84.23871487,80.67791706,3.560797809,117.0358713,0,117.0358713,2.508373588,114.5274977,1.037253122,3.336524425,0.876201937,-0.876201937,0.380314334,0.380314334,0.176110364,1.742823235,56.05518617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55068261,1.817308126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262669501,53.88237711,78.81335211,55.69968523,482.3222888,0,0.630328474,50.92563906,-0.630328474,129.0743609,0.970676279,0,546.9921567,55.69968523,583.4464867,1,13,7% +2018-01-16 22:00:00,63.2580451,206.5407725,405.0132568,727.7782189,77.53267171,547.3323674,469.0844308,78.2479366,75.1947756,3.053161008,100.5380493,0,100.5380493,2.337896117,98.2001532,1.104061165,3.604816519,1.44059108,-1.44059108,0.283798106,0.283798106,0.191432429,1.285082718,41.33267764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.28007848,1.693797778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.931038054,39.73054191,73.21111653,41.42433969,469.0844308,0,0.644543102,49.86857254,-0.644543102,130.1314275,0.972425669,0,529.3608579,41.42433969,556.4722597,1,14,5% +2018-01-16 23:00:00,69.75630476,220.0849996,287.1452836,639.1571895,65.98806451,451.7575851,385.5946817,66.16290333,63.99828089,2.164622439,71.61148209,0,71.61148209,1.989783615,69.62169847,1.217477192,3.841207877,2.350269024,-2.350269024,0.128234015,0.128234015,0.229807238,0.711234645,22.87575105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.51758189,1.441591456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.515287079,21.98904203,62.03286897,23.43063348,385.5946817,0,0.603286153,52.89438469,-0.603286153,127.1056153,0.967120591,0,434.9494253,23.43063348,450.2843063,1,15,4% +2018-01-16 00:00:00,78.22628174,231.6865843,133.4347931,436.7137269,44.32465807,266.546664,222.55267,43.99399392,42.98810609,1.005887833,33.68936242,0,33.68936242,1.336551981,32.35281044,1.365306178,4.043693729,4.554727608,-4.554727608,0,0,0.332182162,0.334137995,10.74702652,0.199199587,1,0.21612304,0,0.936696733,0.975458697,0.724496596,1,41.60119499,0.968327361,0.031139664,0.312029739,0.915490375,0.639986971,0.961238037,0.922476074,0.232181512,10.33045068,41.8333765,11.29877804,178.22027,0,0.509607682,59.36229883,-0.509607682,120.6377012,0.951885309,0,211.4786334,11.29877804,218.8734576,1,16,3% +2018-01-16 01:00:00,87.90053926,241.6989589,4.1698659,26.68937807,3.192119132,13.07268649,9.945387318,3.127299173,3.095864963,0.031434211,1.107286434,0,1.107286434,0.096254169,1.011032265,1.534153824,4.218442632,26.99270496,-26.99270496,0,0,0.765520813,0.024063542,0.773966241,0.803376835,1,0.037030112,0,0.957808023,0.996569987,0.724496596,1,2.988839435,0.069735818,0.099409284,0.312029739,0.757038766,0.481535361,0.961238037,0.922476074,0.016913504,0.74396579,3.005752939,0.813701608,1.955493536,0,0.37263466,68.12180438,-0.37263466,111.8781956,0.915820318,0,4.796633652,0.813701608,5.32918508,1,17,11% +2018-01-16 02:00:00,99.01600756,250.6379458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728155344,4.374457385,-6.301964342,6.301964342,1,0.392146937,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190513798,79.01722962,-0.190513798,100.9827704,0.787551818,0,0,0,0,1,18,0% +2018-01-16 03:00:00,110.4319027,259.0644147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927400302,4.521527011,-2.650820639,2.650820639,1,0.983470717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011540543,90.66123909,0.011540543,89.33876091,0,0,0,0,0,1,19,0% +2018-01-16 04:00:00,122.177046,267.626819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132391723,4.670969157,-1.514761649,1.514761649,1,0.789193188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224524951,102.9749452,0.224524951,77.02505483,0,0.827307601,0,0,0,1,20,0% +2018-01-16 05:00:00,133.9904403,277.26746,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33857435,4.839230086,-0.920767063,0.920767063,1,0.687614131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433927926,115.7170958,0.433927926,64.28290424,0,0.934773491,0,0,0,1,21,0% +2018-01-16 06:00:00,145.4927764,289.7924865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539327985,5.057833038,-0.528226967,0.528226967,1,0.620485821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548094,128.7174959,0.62548094,51.2825041,0,0.970061513,0,0,0,1,22,0% +2018-01-16 07:00:00,155.8189774,309.4978824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719554192,5.401757076,-0.227909054,0.227909054,1,0.569128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786130206,141.8253297,0.786130206,38.17467035,0,0.986397305,0,0,0,1,23,0% +2018-01-17 08:00:00,162.3873879,345.145853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.834194583,6.023931535,0.028473515,-0.028473515,1,0.525284432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904925685,154.8132759,0.904925685,25.18672412,0,0.994746844,0,0,0,1,0,0% +2018-01-17 09:00:00,160.7111467,30.21837601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804938655,0.527410156,0.268953113,-0.268953113,1,0.484159998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973766888,166.8472506,0.973766888,13.15274942,0,0.998653009,0,0,0,1,1,0% +2018-01-17 10:00:00,152.2636773,58.96463983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6575025,1.029127107,0.516097873,-0.516097873,1,0.441895755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987954751,171.0981059,0.987954751,8.901894142,0,0.999390395,0,0,0,1,2,0% +2018-01-17 11:00:00,141.3353581,75.2486516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.466767349,1.313336728,0.796783449,-0.796783449,1,0.393895695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946512006,161.1756128,0.946512006,18.8243872,0,0.997174468,0,0,0,1,3,0% +2018-01-17 12:00:00,129.650982,86.39938447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262836514,1.507953731,1.157516447,-1.157516447,1,0.332206719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852250263,148.4572704,0.852250263,31.54272956,0,0.991331787,0,0,0,1,4,0% +2018-01-17 13:00:00,117.8195664,95.49464054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056339358,1.666695895,1.710565495,-1.710565495,1,0.237629762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711579146,135.3635446,0.711579146,44.63645536,0,0.979733747,0,0,0,1,5,0% +2018-01-17 14:00:00,106.1540987,103.9140303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852738537,1.813641968,2.865015961,-2.865015961,1,0.040207105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534070418,122.2808914,0.534070418,57.7191086,0,0.956379387,0,0,0,1,6,0% +2018-01-17 15:00:00,94.90701281,112.4534566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656439857,1.962683072,8.594006788,-8.594006788,1,0,#DIV/0!,0,0,0.484405331,1,0.115839225,0,0.949424698,0.988186661,0.724496596,1,0,0,0.067377861,0.312029739,0.826762798,0.551259394,0.961238037,0.922476074,0,0,0,0,0,0,-0.331806657,109.378469,0.331806657,70.62153103,0,0.899309835,0,0,0,1,7,0% +2018-01-17 16:00:00,84.21571619,121.7165968,38.58847537,185.6728907,19.87573048,19.5673001,0,19.5673001,19.27640388,0.290896227,31.51492557,21.55937635,9.955549223,0.599326608,9.356222615,1.46984153,2.124355369,-6.116058555,6.116058555,0.423938699,0.423938699,0.515069079,0.209634384,6.742562415,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.52921262,0.434210087,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151879398,6.481207459,18.68109202,6.915417546,0,21.55937635,-0.116114831,96.66793097,0.116114831,83.33206903,0,0.619391786,18.68109202,20.26911818,31.94682448,1,8,71% +2018-01-17 17:00:00,74.83375383,132.2530189,194.1918901,534.8510544,54.26382188,103.3808578,49.28938992,54.09146793,52.62756743,1.463900494,48.72032646,0,48.72032646,1.636254442,47.08407202,1.306095396,2.308250626,-1.717573005,1.717573005,0.823875972,0.823875972,0.279434027,1.278118374,41.1086804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5876196,1.185460773,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.925992411,39.51522725,51.51361202,40.70068802,49.28938992,0,0.092155357,84.71238461,-0.092155357,95.28761539,0.507437944,0,76.52491871,40.70068802,103.162705,1,9,35% +2018-01-17 18:00:00,66.97625439,144.5480262,338.0204998,682.1018902,71.24186414,265.1266351,193.4848347,71.64180038,69.09365908,2.548141308,84.10518869,0,84.10518869,2.148205058,81.95698363,1.16895616,2.522838984,-0.626948503,0.626948503,0.637368198,0.637368198,0.210761963,1.818856101,58.5006645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.41545321,1.556367252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317755054,56.2330639,67.73320826,57.78943115,193.4848347,0,0.283659725,73.52124943,-0.283659725,106.4787506,0.873732467,0,236.7871902,57.78943115,274.6092171,1,10,16% +2018-01-17 19:00:00,61.34656868,158.8343421,438.9485847,747.7643616,80.38778548,413.6440915,332.3713146,81.27277699,77.96379715,3.308979844,108.8521547,0,108.8521547,2.423988331,106.4281663,1.070699608,2.772182234,-0.037229356,0.037229356,0.536520284,0.536520284,0.183137133,2.056202163,66.1345297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94176731,1.756171295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489711467,63.5710255,76.43147878,65.3271968,332.3713146,0,0.444486701,63.60949725,-0.444486701,116.3905028,0.937510695,0,388.033141,65.3271968,430.7884847,1,11,11% +2018-01-17 20:00:00,58.62394929,174.7400012,486.3302498,772.2847136,84.23804561,520.58488,435.2207594,85.36412058,81.69795773,3.666162849,120.4564875,0,120.4564875,2.54008788,117.9163996,1.023180936,3.049788355,0.417220524,-0.417220524,0.458804778,0.458804778,0.17321161,2.025723888,65.15424362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.5311845,1.840285023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467630061,62.62873723,79.99881456,64.46902226,435.2207594,0,0.563549623,55.69836494,-0.563549623,124.3016351,0.961276669,0,498.3663763,64.46902226,540.560062,1,12,8% +2018-01-17 21:00:00,59.22261658,191.1176738,476.0069169,767.2185299,83.41830696,569.9146896,485.4234112,84.49127843,80.90293722,3.588341206,117.9287578,0,117.9287578,2.515369736,115.413388,1.033629651,3.335632667,0.867714335,-0.867714335,0.381765799,0.381765799,0.175245997,1.758677847,56.56512499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76698055,1.822376811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.274156114,54.3725497,79.04113666,56.19492651,485.4234112,0,0.632705536,50.74998465,-0.632705536,129.2500153,0.970974297,0,550.3747919,56.19492651,587.1532474,1,13,7% +2018-01-17 22:00:00,63.04571779,206.5444498,408.8575134,730.3323699,77.81289642,551.2548656,472.7061745,78.54869113,75.46655049,3.082140638,101.4785836,0,101.4785836,2.346345926,99.13223772,1.100355355,3.6048807,1.427489705,-1.427489705,0.286038573,0.286038573,0.190317883,1.300411231,41.82569532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.54131884,1.699919636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.94214351,40.20444926,73.48346235,41.9043689,472.7061745,0,0.647248012,49.66556632,-0.647248012,130.3344337,0.972749859,0,533.308327,41.9043689,560.7338984,1,14,5% +2018-01-17 23:00:00,69.54836232,220.1311022,291.0128331,642.9259451,66.36381683,456.3227143,389.7662338,66.55648056,64.3627029,2.19377766,72.56054454,0,72.56054454,2.001113934,70.5594306,1.213847912,3.84201252,2.325325696,-2.325325696,0.132499576,0.132499576,0.228044297,0.724666406,23.30776264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.86787818,1.449800233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525018344,22.404308,62.39289652,23.85410823,389.7662338,0,0.606238147,52.68200926,-0.606238147,127.3179907,0.967524161,0,439.5011447,23.85410823,455.1131815,1,15,4% +2018-01-17 00:00:00,78.02771282,231.7622162,136.9589654,443.555929,44.94836396,272.0373196,227.4118602,44.62545947,43.59300494,1.032454533,34.56264584,0,34.56264584,1.355359015,33.20728683,1.361840496,4.045013754,4.478948521,-4.478948521,0,0,0.328188548,0.338839754,10.89825124,0.190802085,1,0.219664039,0,0.936206511,0.974968474,0.724496596,1,42.17939759,0.981952993,0.029935668,0.312029739,0.918616478,0.643113074,0.961238037,0.922476074,0.235723938,10.47581362,42.41512153,11.45776662,184.021203,0,0.512701658,59.15604603,-0.512701658,120.843954,0.952477397,0,217.691158,11.45776662,225.1900371,1,16,3% +2018-01-17 01:00:00,87.72321479,241.7955562,5.038915104,31.75974138,3.77719773,15.62972161,11.92843485,3.701286753,3.663301282,0.037985471,1.335639754,0,1.335639754,0.113896448,1.221743306,1.531058929,4.220128572,24.89453737,-24.89453737,0,0,0.749605352,0.028474112,0.915825321,0.78845215,1,0.04014787,0,0.95750422,0.996266184,0.724496596,1,3.537665545,0.082517589,0.098070403,0.312029739,0.759788573,0.484285168,0.961238037,0.922476074,0.019974772,0.880326133,3.557640318,0.962843722,2.523434748,0,0.375583501,67.93961866,-0.375583501,112.0603813,0.916873811,0,5.871311553,0.962843722,6.501473512,1,17,11% +2018-01-17 02:00:00,98.83443212,250.7516339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724986255,4.376441617,-6.433476012,6.433476012,1,0.369657117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193615727,78.83613044,-0.193615727,101.1638696,0.791756516,0,0,0,0,1,18,0% +2018-01-17 03:00:00,110.2567683,259.195047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92434363,4.523806975,-2.674814288,2.674814288,1,0.987573873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008604544,90.49301011,0.008604544,89.50698989,0,0,0,0,0,1,19,0% +2018-01-17 04:00:00,122.0051397,267.7771153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129391392,4.673592324,-1.523616674,1.523616674,1,0.790707486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221848112,102.8176047,0.221848112,77.18239527,0,0.824620575,0,0,0,1,20,0% +2018-01-17 05:00:00,133.8170104,277.441798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335547426,4.842272858,-0.924905166,0.924905166,1,0.688321788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431585448,115.5682188,0.431585448,64.4317812,0,0.934148086,0,0,0,1,21,0% +2018-01-17 06:00:00,145.3103316,289.9906526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536143724,5.061291688,-0.53030256,0.53030256,1,0.620840768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623524839,128.5739963,0.623524839,51.4260037,0,0.969810733,0,0,0,1,22,0% +2018-01-17 07:00:00,155.6170565,309.6743634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.716030009,5.404837251,-0.228857886,0.228857886,1,0.569290693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784585758,141.6823821,0.784585758,38.31761787,0,0.986272103,0,0,0,1,23,0% +2018-01-18 08:00:00,162.1748052,345.0451515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.830484315,6.022173961,0.028277351,-0.028277351,1,0.525317978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903789707,154.660767,0.903789707,25.33923298,0,0.994677396,0,0,0,1,0,0% +2018-01-18 09:00:00,160.5607822,29.75492013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802314299,0.519321325,0.269383507,-0.269383507,1,0.484086397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973007979,166.6575041,0.973007979,13.34249592,0,0.99861296,0,0,0,1,1,0% +2018-01-18 10:00:00,152.1788471,58.54026023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656021933,1.021720286,0.517191921,-0.517191921,1,0.441708662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987515466,170.9369024,0.987515466,9.063097642,0,0.999367882,0,0,0,1,2,0% +2018-01-18 11:00:00,141.2802419,74.91551677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465805389,1.307522428,0.798768793,-0.798768793,1,0.393556181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946312825,161.1402764,0.946312825,18.85972363,0,0.997163349,0,0,0,1,3,0% +2018-01-18 12:00:00,129.6055767,86.1256815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262044043,1.503176713,1.161002022,-1.161002022,1,0.331610651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852195061,148.451225,0.852195061,31.548775,0,0.991327987,0,0,0,1,4,0% +2018-01-18 13:00:00,117.7731557,95.25633529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055529337,1.662536684,1.717312151,-1.717312151,1,0.236476016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711561815,135.3621314,0.711561815,44.63786862,0,0.979732036,0,0,0,1,5,0% +2018-01-18 14:00:00,106.0996585,103.696364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851788377,1.809842974,2.882559131,-2.882559131,1,0.037207046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533982163,122.2749105,0.533982163,57.7250895,0,0.956363913,0,0,0,1,6,0% +2018-01-18 15:00:00,94.8388329,112.2474517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655249893,1.959087609,8.744299524,-8.744299524,1,0,#DIV/0!,0,0,0.491148425,1,0.11386555,0,0.949652345,0.988414308,0.724496596,1,0,0,0.068137584,0.312029739,0.825014185,0.549510781,0.961238037,0.922476074,0,0,0,0,0,0,-0.331543472,109.3624848,0.331543472,70.63751524,0,0.899190214,0,0,0,1,7,0% +2018-01-18 16:00:00,84.13015324,121.5175076,39.73519789,190.1534608,20.28838658,19.97615757,0,19.97615757,19.67661687,0.299540706,32.23031026,21.98428179,10.24602848,0.611769711,9.634258765,1.468348174,2.120880607,-6.052787416,6.052787416,0.434758701,0.434758701,0.510589796,0.216677305,6.969086943,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.91391257,0.443225073,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15698197,6.698951452,19.07089454,7.142176525,0,21.98428179,-0.115613367,96.63900435,0.115613367,83.36099565,0,0.617524055,19.07089454,20.71799936,32.63041076,1,8,71% +2018-01-18 17:00:00,74.72241387,132.0606569,196.2646497,537.92655,54.52331738,104.3962237,50.03745964,54.35876403,52.8792382,1.479525832,49.23071578,0,49.23071578,1.644079189,47.58663659,1.304152147,2.304893275,-1.715317341,1.715317341,0.823490231,0.823490231,0.277805083,1.290924079,41.52055589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82953511,1.191129776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.9352701,39.91113763,51.76480521,41.10226741,50.03745964,0,0.09301913,84.66268058,-0.09301913,95.33731942,0.512476159,0,77.40781034,41.10226741,104.3084223,1,9,35% +2018-01-18 18:00:00,66.83579007,144.3685978,340.6325115,684.3118277,71.44634816,266.8323838,194.9725749,71.85980891,69.29197716,2.567831755,84.74466712,0,84.74466712,2.154371006,82.59029612,1.166504595,2.519707368,-0.629754631,0.629754631,0.637848074,0.637848074,0.209746122,1.832938942,58.95361707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60608409,1.56083446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.327958024,56.66845914,67.93404212,58.2292936,194.9725749,0,0.284917733,73.44606882,-0.284917733,106.5539312,0.874510748,0,238.4396543,58.2292936,276.5495624,1,10,16% +2018-01-18 19:00:00,61.17552659,158.6821185,442.016649,749.6587373,80.58522839,415.9554716,334.4680769,81.48739463,78.15528642,3.332108209,109.601996,0,109.601996,2.429941964,107.172054,1.067714361,2.769525431,-0.041793355,0.041793355,0.537300774,0.537300774,0.182312654,2.071427387,66.62422524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.12583409,1.760484681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.50074209,64.04173948,76.62657618,65.80222416,334.4680769,0,0.446160446,63.50239228,-0.446160446,116.4976077,0.937932692,0,390.3351201,65.80222416,433.4013597,1,11,11% +2018-01-18 20:00:00,58.42648905,174.6340283,489.7840152,774.1433149,84.44870775,523.476021,437.8815546,85.59446642,81.90226763,3.692198792,121.3002451,0,121.3002451,2.546440121,118.753805,1.019734604,3.047938779,0.411092764,-0.411092764,0.459852687,0.459852687,0.172420302,2.041730732,65.66907873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72757495,1.844887199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479226965,63.12361632,80.20680191,64.96850352,437.8815546,0,0.565633709,55.55369122,-0.565633709,124.4463088,0.961603571,0,501.2752685,64.96850352,543.7958547,1,12,8% +2018-01-18 21:00:00,59.00906458,191.0705672,479.7567547,769.2727768,83.65631043,573.3668549,488.6164818,84.75037308,81.13376401,3.616609067,118.845126,0,118.845126,2.522546418,116.3225796,1.029902465,3.334810501,0.859231536,-0.859231536,0.383216443,0.383216443,0.174372345,1.774910351,57.08721809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98886004,1.827576293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285916507,54.87440545,79.27477655,56.70198174,488.6164818,0,0.63516674,50.56764764,-0.63516674,129.4323524,0.971280513,0,553.8584436,56.70198174,590.9687566,1,13,7% +2018-01-18 22:00:00,62.82838069,206.5535838,412.7857613,732.90791,78.09800615,555.2648168,476.4100002,78.85481655,75.74306312,3.11175343,102.4396299,0,102.4396299,2.354943036,100.0846869,1.096562107,3.605040119,1.41440073,-1.41440073,0.288276919,0.288276919,0.189197432,1.316063521,42.32912677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.8071133,1.706148213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953483541,40.68836671,73.76059684,42.39451493,476.4100002,0,0.650027096,49.45635519,-0.650027096,130.5436448,0.97308013,0,537.3457016,42.39451493,565.0920637,1,14,5% +2018-01-18 23:00:00,69.33642122,220.1834179,294.9526821,646.7062689,66.7428843,460.9615147,394.0076967,66.95381799,64.73034009,2.223477906,73.52723683,0,73.52723683,2.012544217,71.51469261,1.210148842,3.842925601,2.300515474,-2.300515474,0.136742374,0.136742374,0.226283361,0.738379682,23.74882875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.22126503,1.458081434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534953566,22.82827752,62.7562186,24.28635895,394.0076967,0,0.609252942,52.46449464,-0.609252942,127.5355054,0.96793228,0,444.1289867,24.28635895,460.0239229,1,15,4% +2018-01-18 00:00:00,77.82603301,231.8443323,140.5503089,450.3892131,45.57192799,277.5890669,232.3317731,45.25729381,44.19776621,1.059527597,35.4522114,0,35.4522114,1.374161771,34.07804963,1.35832052,4.04644695,4.404599231,-4.404599231,0,0,0.324239259,0.343540443,11.04944155,0.182390082,1,0.22325093,0,0.935707158,0.974469122,0.724496596,1,42.75688916,0.995575525,0.028720732,0.312029739,0.921782555,0.646279151,0.961238037,0.922476074,0.23928562,10.62114351,42.99617478,11.61671903,189.9567618,0,0.515846664,58.94593601,-0.515846664,121.054064,0.953071972,0,224.0386403,11.61671903,231.6415506,1,16,3% +2018-01-18 01:00:00,87.54273934,241.8987242,6.019584559,37.38935631,4.416547945,18.48376748,14.15501658,4.3287509,4.283372729,0.045378171,1.592693184,0,1.592693184,0.133175216,1.459517969,1.527909038,4.221929194,23.0700862,-23.0700862,0,0,0.733696471,0.033293804,1.070843182,0.773502687,1,0.043319058,0,0.957192833,0.995954796,0.724496596,1,4.137619464,0.096484991,0.096715134,0.312029739,0.7625867,0.487083296,0.961238037,0.922476074,0.023311853,1.029335198,4.160931317,1.125820189,3.206073227,0,0.378584121,67.75399263,-0.378584121,112.2460074,0.917928956,0,7.103878767,1.125820189,7.840705565,1,17,10% +2018-01-18 02:00:00,98.6509941,250.8720045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721784657,4.37854248,-6.571861101,6.571861101,1,0.345991873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196745647,78.6532825,-0.196745647,101.3467175,0.795864771,0,0,0,0,1,18,0% +2018-01-18 03:00:00,110.0800837,259.3326311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921259901,4.52620827,-2.699365115,2.699365115,1,0.991772311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.005649678,90.32370442,0.005649678,89.67629558,0,0,0,0,0,1,19,0% +2018-01-18 04:00:00,121.8317811,267.9348984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126365713,4.676346158,-1.532563652,1.532563652,1,0.792237509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219159151,102.6596507,0.219159151,77.34034931,0,0.821855294,0,0,0,1,20,0% +2018-01-18 05:00:00,133.6419592,277.6245509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.332492207,4.845462497,-0.929033596,0.929033596,1,0.689027791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429234746,115.419005,0.429234746,64.58099501,0,0.933513624,0,0,0,1,21,0% +2018-01-18 06:00:00,145.1257006,290.1987143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.532921304,5.064923049,-0.532332402,0.532332402,1,0.621187892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621561298,128.4302386,0.621561298,51.56976144,0,0.969557411,0,0,0,1,22,0% +2018-01-18 07:00:00,155.4117253,309.8629368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712446302,5.408128478,-0.229741448,0.229741448,1,0.569441791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783031483,141.5389793,0.783031483,38.46102071,0,0.986145607,0,0,0,1,23,0% +2018-01-19 08:00:00,161.9564732,344.9595807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826673703,6.02068047,0.028162897,-0.028162897,1,0.525337551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902638511,154.5070848,0.902638511,25.49291524,0,0.994606839,0,0,0,1,0,0% +2018-01-19 09:00:00,160.4023174,29.29759821,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799548566,0.511339552,0.26991521,-0.26991521,1,0.48399547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972225827,166.4646797,0.972225827,13.53532025,0,0.998571619,0,0,0,1,1,0% +2018-01-19 10:00:00,152.0863493,58.11240693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654407543,1.014252837,0.518416004,-0.518416004,1,0.441499332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987042835,170.766578,0.987042835,9.233421983,0,0.999343637,0,0,0,1,2,0% +2018-01-19 11:00:00,141.2182881,74.57733489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464724092,1.301620041,0.800932522,-0.800932522,1,0.393186162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946068807,161.0970724,0.946068807,18.90292755,0,0.997149721,0,0,0,1,3,0% +2018-01-19 12:00:00,129.5538245,85.84721772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261140797,1.498316603,1.16476009,-1.16476009,1,0.330967983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852082944,148.4389498,0.852082944,31.56105019,0,0.991320267,0,0,0,1,4,0% +2018-01-19 13:00:00,117.7206225,95.01379111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05461246,1.65830349,1.724559675,-1.724559675,1,0.235236616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711475736,135.3551124,0.711475736,44.64488757,0,0.979723534,0,0,0,1,5,0% +2018-01-19 14:00:00,106.0391467,103.4749451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850732245,1.805978485,2.901463566,-2.901463566,1,0.033974197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533814387,122.2635417,0.533814387,57.73645829,0,0.956334484,0,0,0,1,6,0% +2018-01-19 15:00:00,94.76451321,112.0381419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65395277,1.955434463,8.910752857,-8.910752857,1,0,#DIV/0!,0,0,0.498413682,1,0.111756367,0,0.949894629,0.988656592,0.724496596,1,0,0,0.068951684,0.312029739,0.823145517,0.547642112,0.961238037,0.922476074,0,0,0,0,0,0,-0.331191802,109.341129,0.331191802,70.65887104,0,0.899030079,0,0,0,1,7,0% +2018-01-19 16:00:00,84.03838343,121.3155894,40.97591598,194.9388344,20.72914124,20.41297491,0,20.41297491,20.10408115,0.308893763,32.98167171,22.42152638,10.56014532,0.625060091,9.935085232,1.466746489,2.117356469,-5.985334231,5.985334231,0.446293875,0.446293875,0.505885976,0.224382295,7.216905902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.3248075,0.452853908,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162564209,6.937164461,19.4873717,7.390018369,0,22.42152638,-0.115018264,96.60467851,0.115018264,83.39532149,0,0.615286433,19.4873717,21.18567935,33.35297513,1,8,71% +2018-01-19 17:00:00,74.60460451,131.8660849,198.4568394,541.1347932,54.79711143,105.4973503,50.85652246,54.64082782,53.14477634,1.496051484,49.77049345,0,49.77049345,1.652335089,48.11815836,1.302095986,2.301497354,-1.712430742,1.712430742,0.822996593,0.822996593,0.276116014,1.30436251,41.95278202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.08478048,1.197111148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.945006198,40.32660983,52.02978668,41.52372098,50.85652246,0,0.093981247,84.6073128,-0.093981247,95.3926872,0.517978966,0,78.3723956,41.52372098,105.5488405,1,9,35% +2018-01-19 18:00:00,66.6886623,144.1878916,343.3643944,686.5929844,71.66084961,268.6426811,196.5542447,72.08843644,69.5000106,2.588425842,85.41351177,0,85.41351177,2.160839016,83.25267275,1.163936731,2.51655345,-0.632355344,0.632355344,0.638292822,0.638292822,0.20870204,1.847571382,59.42424663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.80605375,1.565520511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338559177,57.12084617,68.14461292,58.68636668,196.5542447,0,0.286274764,73.36493756,-0.286274764,106.6350624,0.875342621,0,240.1969206,58.68636668,278.6059739,1,10,16% +2018-01-19 19:00:00,60.99776182,158.5300467,445.1988714,751.5990454,80.79074486,418.3749178,336.6642148,81.71070296,78.35460582,3.356097145,110.3797597,0,110.3797597,2.436139044,107.9436207,1.06461178,2.766871278,-0.046274452,0.046274452,0.538067087,0.538067087,0.181471136,2.087138616,67.12955237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.31742747,1.764974444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.512124822,64.52747914,76.8295523,66.29245358,336.6642148,0,0.447930605,63.38900899,-0.447930605,116.610991,0.938375566,0,392.7470256,66.29245358,436.1341106,1,11,11% +2018-01-19 20:00:00,58.2225424,174.5301348,493.3428301,776.0350817,84.66616939,526.4715704,440.6393718,85.83219864,82.113172,3.719026643,122.1696783,0,122.1696783,2.552997392,119.6166809,1.016175064,3.046125496,0.404998506,-0.404998506,0.460894866,0.460894866,0.17161731,2.058163787,66.19762228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93030425,1.84963792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491132657,63.63167248,80.42143691,65.4813104,440.6393718,0,0.567808572,55.40244822,-0.567808572,124.5975518,0.961942154,0,504.2910232,65.4813104,547.1472312,1,12,8% +2018-01-19 21:00:00,58.78966569,191.0275349,483.6003853,771.3523632,83.90002955,576.9151926,491.8994745,85.01571808,81.3701341,3.645583978,119.7844078,0,119.7844078,2.529895449,117.2545123,1.026073232,3.334059447,0.850762681,-0.850762681,0.384664703,0.384664703,0.173490411,1.791510969,57.62115103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.21606796,1.832900641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297943598,55.3876421,79.51401156,57.22054274,491.8994745,0,0.637710465,50.37869424,-0.637710465,129.6213058,0.971594512,0,557.4408417,57.22054274,594.8905425,1,13,7% +2018-01-19 22:00:00,62.60614558,206.568249,416.7955205,735.5020216,78.38769045,559.3593784,480.1933853,79.16599305,76.02401237,3.141980689,103.4205775,0,103.4205775,2.363678087,101.0568994,1.092683372,3.605296075,1.401337733,-1.401337733,0.290510823,0.290510823,0.188072296,1.332030402,42.84267655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.0771724,1.712476728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965051492,41.1820103,74.04222389,42.89448703,480.1933853,0,0.652878403,49.24102567,-0.652878403,130.7589743,0.973416061,0,541.4701774,42.89448703,569.5437613,1,14,5% +2018-01-19 23:00:00,69.12060255,220.2419939,298.9623541,650.4942182,67.12487935,465.6705747,398.3160537,67.35452108,65.10081658,2.253704507,74.51094678,0,74.51094678,2.024062777,72.48688401,1.206382096,3.843947946,2.275861589,-2.275861589,0.140958436,0.140958436,0.224526193,0.752367176,24.19871463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.57738112,1.466426592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.545087458,23.26072494,63.12246858,24.72715154,398.3160537,0,0.612328354,52.24195083,-0.612328354,127.7580492,0.968344464,0,448.829614,24.72715154,465.0130402,1,15,4% +2018-01-19 00:00:00,77.62136443,231.9329493,144.2065629,457.2062482,46.19474235,283.1974044,237.308514,45.88889041,44.80180043,1.087089984,36.35749266,0,36.35749266,1.392941922,34.96455074,1.354748379,4.047993609,4.33170623,-4.33170623,0,0,0.320337309,0.348235481,11.20045011,0.173971309,1,0.226881147,0,0.935198936,0.973960899,0.724496596,1,43.33308224,1.009181681,0.027495844,0.312029739,0.924986326,0.649482922,0.961238037,0.922476074,0.242863815,10.76629867,43.57594606,11.77548035,196.0236411,0,0.5190404,58.73209459,-0.5190404,121.2679054,0.953668385,0,230.5174953,11.77548035,238.2243116,1,16,3% +2018-01-19 01:00:00,87.3592748,242.0084522,7.115412542,43.57256374,5.107892345,21.63625787,16.62874834,5.00750953,4.953870545,0.053638985,1.87923595,0,1.87923595,0.1540218,1.72521415,1.524706977,4.223844308,21.47106228,-21.47106228,0,0,0.717863134,0.03850545,1.238467636,0.75854825,1,0.046540682,0,0.95687404,0.995636003,0.724496596,1,4.786594109,0.11158827,0.095345008,0.312029739,0.76543049,0.489927086,0.961238037,0.922476074,0.026911833,1.190462199,4.813505942,1.302050469,4.015040392,0,0.381633462,67.5651002,-0.381633462,112.4348998,0.918984235,0,8.503264765,1.302050469,9.355430756,1,17,10% +2018-01-19 02:00:00,98.46580188,250.9990224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718552443,4.380759359,-6.717564185,6.717564185,1,0.321075178,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.199901363,78.46880891,-0.199901363,101.5311911,0.799876643,0,0,0,0,1,18,0% +2018-01-19 03:00:00,109.9019456,259.4771078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918150805,4.528729864,-2.724476784,2.724476784,1,0.99606666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002677908,90.15343303,0.002677908,89.84656697,0,0,0,0,0,1,19,0% +2018-01-19 04:00:00,121.6570538,268.1000807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123316148,4.679229133,-1.541598805,1.541598805,1,0.793782612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216459701,102.5011789,0.216459701,77.49882113,0,0.819010122,0,0,0,1,20,0% +2018-01-19 05:00:00,133.4653569,277.8155883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329409916,4.84879673,-0.933149435,0.933149435,1,0.689731641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426877051,115.2695326,0.426877051,64.73046739,0,0.932870255,0,0,0,1,21,0% +2018-01-19 06:00:00,144.9389431,290.4164629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529661772,5.06872348,-0.534314465,0.534314465,1,0.621526845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619591099,128.2862805,0.619591099,51.71371949,0,0.969301617,0,0,0,1,22,0% +2018-01-19 07:00:00,155.2030509,310.0632509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.708804247,5.411624618,-0.230558297,0.230558297,1,0.569581481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781467702,141.3951539,0.781467702,38.60484605,0,0.986017829,0,0,0,1,23,0% +2018-01-20 08:00:00,161.7325144,344.8888593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822764884,6.019446148,0.028131233,-0.028131233,1,0.525342965,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901471972,154.3522311,0.901471972,25.64776892,0,0.994535159,0,0,0,1,0,0% +2018-01-20 09:00:00,160.2358264,28.84708434,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796642751,0.503476601,0.270549102,-0.270549102,1,0.483887068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971419909,166.2687762,0.971419909,13.73122375,0,0.998528953,0,0,0,1,1,0% +2018-01-20 10:00:00,151.9861536,57.6816624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652658798,1.006734927,0.519770958,-0.519770958,1,0.441267621,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986536008,170.5873255,0.986536008,9.412674549,0,0.999317613,0,0,0,1,2,0% +2018-01-20 11:00:00,141.1494443,74.23445516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463522541,1.295635661,0.8032757,-0.8032757,1,0.392785455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94577888,161.0458635,0.94577888,18.95413654,0,0.99713352,0,0,0,1,3,0% +2018-01-20 12:00:00,129.4956784,85.56422764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260125956,1.493377494,1.168792677,-1.168792677,1,0.33027837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851912726,148.4203215,0.851912726,31.5796785,0,0.991308542,0,0,0,1,4,0% +2018-01-20 13:00:00,117.6619329,94.76718476,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053588134,1.653999397,1.732314105,-1.732314105,1,0.23391053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711319728,135.3423937,0.711319728,44.65760628,0,0.979708121,0,0,0,1,5,0% +2018-01-20 14:00:00,105.9725443,103.2499176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849569815,1.802051015,2.921762592,-2.921762592,1,0.030502859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533566038,122.2467158,0.533566038,57.7532842,0,0.956290887,0,0,0,1,6,0% +2018-01-20 15:00:00,94.6840513,111.8256501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652548444,1.951725782,9.094769737,-9.094769737,1,0,#DIV/0!,0,0,0.50620784,1,0.109513391,0,0.950151155,0.988913118,0.724496596,1,0,0,0.069819957,0.312029739,0.821158322,0.545654917,0.961238037,0.922476074,0,0,0,0,0,0,-0.330750833,109.3143543,0.330750833,70.68564567,0,0.898828801,0,0,0,1,7,0% +2018-01-20 16:00:00,83.94041374,121.1109497,42.31274179,200.0258695,21.19747376,20.87726304,0,20.87726304,20.55829172,0.318971321,33.76713809,22.86874192,10.89839617,0.639182044,10.25921413,1.465036595,2.113784833,-5.914083126,5.914083126,0.458478531,0.458478531,0.500971406,0.232774202,7.486818506,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.76141197,0.463085215,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.168644117,7.196614723,19.93005609,7.659699939,0,22.86874192,-0.114328921,96.56491979,0.114328921,83.43508021,0,0.61266534,19.93005609,21.67058547,34.11302087,1,8,71% +2018-01-20 17:00:00,74.48035646,131.6693976,200.7680961,544.4706841,55.08476352,106.6847017,51.74747233,54.93722937,53.42375465,1.513474713,50.33955818,0,50.33955818,1.661008861,48.67854932,1.299927448,2.298064512,-1.708926992,1.708926992,0.822397417,0.822397417,0.274370105,1.318427561,42.40516243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.35294505,1.203395266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95519628,40.76145509,52.30814133,41.96485035,51.74747233,0,0.095041797,84.5462745,-0.095041797,95.4537255,0.523915672,0,79.41945306,41.96485035,106.8846083,1,9,35% +2018-01-20 18:00:00,66.53491881,144.0059915,346.2150251,688.942173,71.88507628,270.5570312,198.2296401,72.3273911,69.717476,2.609915101,86.11144146,0,86.11144146,2.167600277,83.94384118,1.161253401,2.513378694,-0.634748946,0.634748946,0.638702152,0.638702152,0.207631302,1.862745721,59.91230555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01508977,1.570419022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349552934,57.58998697,68.3646427,59.16040599,198.2296401,0,0.287730448,73.27787006,-0.287730448,106.7221299,0.876226246,0,242.0586561,59.16040599,280.7779586,1,10,16% +2018-01-20 19:00:00,60.81333784,158.3782062,448.4936001,753.5828296,81.00408085,420.9012425,338.9587994,81.94244314,78.56150894,3.380934202,111.1850377,0,111.1850377,2.442571911,108.7424658,1.061392974,2.764221161,-0.050667913,0.050667913,0.538818413,0.538818413,0.180613683,2.103326899,67.6502232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.51631062,1.769635035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.523853178,65.02796774,77.0401638,66.79760277,338.9587994,0,0.449796341,63.26938185,-0.449796341,116.7306182,0.93883858,0,395.2677617,66.79760277,438.9854568,1,11,11% +2018-01-20 20:00:00,58.01218899,174.4284038,497.0046307,777.9577826,84.89017731,529.5697309,443.4926748,86.07705609,82.33042525,3.746630842,123.0642789,0,123.0642789,2.559752057,120.5045268,1.012503704,3.044349956,0.39894422,-0.39894422,0.46193021,0.46193021,0.170803594,2.075013284,66.73956004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13913634,1.854531652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503340061,64.15260367,80.6424764,66.00713532,443.4926748,0,0.570072933,55.24468825,-0.570072933,124.7553117,0.962291924,0,507.4118958,66.00713532,550.6122458,1,12,9% +2018-01-20 21:00:00,58.5645173,190.9886629,487.5354497,773.4549693,84.1491935,580.5573499,495.2703169,85.28703299,81.61178484,3.675248156,120.7460229,0,120.7460229,2.537408661,118.2086143,1.022143652,3.333381001,0.842316505,-0.842316505,0.386109084,0.386109084,0.172601179,1.80846973,58.16660309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.44835184,1.838343938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310230163,55.91195136,79.758582,57.7502953,495.2703169,0,0.640335038,50.18319305,-0.640335038,129.8168069,0.971915877,0,561.1196663,57.7502953,598.9160795,1,13,7% +2018-01-20 22:00:00,62.37912574,206.5885177,420.8842744,738.1119565,78.68164309,563.5356826,484.0537779,79.48190469,76.30910124,3.172803443,104.420807,0,104.420807,2.372541843,102.0482652,1.088721129,3.605649832,1.388313589,-1.388313589,0.292738083,0.292738083,0.186943651,1.348302521,43.36604385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.35121067,1.718898489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976840587,41.68509085,74.32805126,43.40398934,484.0537779,0,0.655799942,49.01966638,-0.655799942,130.9803336,0.973757236,0,545.6789202,43.40398934,574.0859632,1,14,5% +2018-01-20 23:00:00,68.90102833,220.306875,303.0393426,654.2860024,67.50942587,470.4464909,402.6882848,67.75820617,65.4737676,2.284438569,75.51105536,0,75.51105536,2.035658273,73.47539709,1.202549802,3.845080333,2.251385549,-2.251385549,0.145144085,0.145144085,0.22277446,0.766621376,24.65717869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93587583,1.474827489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.555414577,23.70141803,63.49129041,25.17624552,402.6882848,0,0.615462173,52.01448973,-0.615462173,127.9855103,0.968760239,0,453.5996893,25.17624552,470.0770385,1,15,4% +2018-01-20 00:00:00,77.41382936,232.0280807,147.9254155,464.0000885,46.81623268,288.8578968,242.338222,46.5196748,45.40455053,1.115124266,37.27791177,0,37.27791177,1.411682149,35.86622962,1.351126209,4.049653966,4.260289233,-4.260289233,0,0,0.316485389,0.352920537,11.35113763,0.165553151,1,0.23055214,0,0.934682107,0.97344407,0.724496596,1,43.90742199,1.022758911,0.026261972,0.312029739,0.928225527,0.652722123,0.961238037,0.922476074,0.246455909,10.91114525,44.1538779,11.93390417,202.2183657,0,0.522280551,58.51464894,-0.522280551,121.4853511,0.954266012,0,237.1239913,11.93390417,244.9344929,1,16,3% +2018-01-20 01:00:00,87.17298196,242.1247256,8.328936296,50.29595203,5.848301963,25.08502615,19.35028503,5.734741121,5.671954081,0.06278704,2.195794916,0,2.195794916,0.176347882,2.019447034,1.521455554,4.225873663,20.05977303,-20.05977303,0,0,0.70216673,0.044086971,1.41798852,0.743607463,1,0.049809779,0,0.956548026,0.995309989,0.724496596,1,5.481865937,0.12776344,0.09396152,0.312029739,0.768317302,0.492813898,0.961238037,0.922476074,0.03075861,1.363024501,5.512624547,1.490787942,4.961268666,0,0.384728477,67.37311517,-0.384728477,112.6268848,0.920038214,0,10.07718131,1.490787942,11.0528722,1,17,10% +2018-01-20 02:00:00,98.27896244,251.1326488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.71529148,4.383091581,-6.871072334,6.871072334,1,0.294823738,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.203080697,78.28283211,-0.203080697,101.7171679,0.803792454,0,0,0,0,1,18,0% +2018-01-20 03:00:00,109.7224487,259.6284148,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915017993,4.53137067,-2.750153125,2.750153125,1,0.999542427,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000308829,89.98230542,-0.000308829,90.01769458,0,0,0,0,0,1,19,0% +2018-01-20 04:00:00,121.4810391,268.2725714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120244111,4.682239664,-1.550718355,1.550718355,1,0.795342147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213751363,102.3422829,0.213751363,77.65771715,0,0.816083363,0,0,0,1,20,0% +2018-01-20 05:00:00,133.2872711,278.0147766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326301731,4.85227322,-0.9372498,0.9372498,1,0.690432845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424513558,115.1198771,0.424513558,64.88012287,0,0.932218132,0,0,0,1,21,0% +2018-01-20 06:00:00,144.7501161,290.6436864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526366118,5.072689277,-0.53624677,0.53624677,1,0.621857288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617614989,128.1421767,0.617614989,51.85782326,0,0.969043416,0,0,0,1,22,0% +2018-01-20 07:00:00,154.9910976,310.2749501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.705104965,5.415319466,-0.231307038,0.231307038,1,0.569709523,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779894701,141.2509354,0.779894701,38.74906463,0,0.985888781,0,0,0,1,23,0% +2018-01-21 08:00:00,161.5030495,344.8326791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818759966,6.018465619,0.028183394,-0.028183394,1,0.525334045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900289938,154.1962045,0.900289938,25.80379555,0,0.994462336,0,0,0,1,0,0% +2018-01-21 09:00:00,160.061392,28.40400254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793598295,0.495743365,0.271286018,-0.271286018,1,0.483761048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970589684,166.0697902,0.970589684,13.93020977,0,0.998484925,0,0,0,1,1,0% +2018-01-21 10:00:00,151.8782382,57.24860402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650775319,0.999176632,0.521257587,-0.521257587,1,0.441013392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985994135,170.3993466,0.985994135,9.600653384,0,0.999289759,0,0,0,1,2,0% +2018-01-21 11:00:00,141.0736646,73.88722901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462199935,1.289575421,0.80579938,-0.80579938,1,0.39235388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945441982,160.986525,0.945441982,19.01347496,0,0.997114682,0,0,0,1,3,0% +2018-01-21 12:00:00,129.4310971,85.27694762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2589988,1.488363512,1.173101876,-1.173101876,1,0.329541454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851683249,148.3952235,0.851683249,31.60477652,0,0.991292728,0,0,0,1,4,0% +2018-01-21 13:00:00,117.597058,94.51669384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052455852,1.649627506,1.740581859,-1.740581859,1,0.232496661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711092656,135.3238865,0.711092656,44.67611347,0,0.979685675,0,0,0,1,5,0% +2018-01-21 14:00:00,105.8998374,103.0214257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84830084,1.798063078,2.943492421,-2.943492421,1,0.02678684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533236122,122.2243685,0.533236122,57.77563155,0,0.956232909,0,0,0,1,6,0% +2018-01-21 15:00:00,94.59744929,111.6100987,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651036954,1.9479637,9.297979486,-9.297979486,1,0,#DIV/0!,0,0,0.514538232,1,0.107138423,0,0.95042151,0.989183473,0.724496596,1,0,0,0.070742189,0.312029739,0.819054211,0.543550807,0.961238037,0.922476074,0,0,0,0,0,0,-0.330219823,109.2821184,0.330219823,70.71788163,0,0.89858571,0,0,0,1,7,0% +2018-01-21 16:00:00,83.83625537,120.9036947,43.74776824,205.4105205,21.69278732,21.3684589,0,21.3684589,21.03866975,0.329789156,34.58456913,23.32329865,11.26127048,0.654117576,10.6071529,1.463218689,2.110167551,-5.839421297,5.839421297,0.471246456,0.471246456,0.495860433,0.241878718,7.779651011,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.22316961,0.473905957,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.175240308,7.478096465,20.39840991,7.952002422,0,23.32329865,-0.113544811,96.51969907,0.113544811,83.48030093,0,0.609645221,20.39840991,22.17093998,34.90884671,1,8,71% +2018-01-21 17:00:00,74.3497043,131.4706873,203.1979749,547.9289188,55.38581747,107.9587183,52.71119537,55.24752288,53.71573072,1.531792166,50.93778832,0,50.93778832,1.670086749,49.26770157,1.297647138,2.294596364,-1.704821473,1.704821473,0.821695332,0.821695332,0.272570716,1.333112538,42.87748177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.63360354,1.209972164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965835496,41.21546641,52.59943904,42.42543857,52.71119537,0,0.096200791,84.47956336,-0.096200791,95.52043664,0.530253754,0,80.54974824,42.42543857,108.3163493,1,9,34% +2018-01-21 18:00:00,66.37461082,143.822979,349.1831973,691.356139,72.11872888,272.5748743,199.9985007,72.57637355,69.94408311,2.632290437,86.83815465,0,86.83815465,2.174645765,84.66350888,1.158455499,2.510184523,-0.63693434,0.63693434,0.639075877,0.639075877,0.206535508,1.878453848,60.41753288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.23291314,1.575523454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360933418,58.0756307,68.59384656,59.65115415,199.9985007,0,0.289284335,73.18488496,-0.289284335,106.815115,0.87715967,0,244.0244654,59.65115415,283.0649527,1,10,16% +2018-01-21 19:00:00,60.62232105,158.2266736,451.8991084,755.6076144,81.22497851,423.5331883,341.3508362,82.18235208,78.77574572,3.406606362,112.0174035,0,112.0174035,2.44923279,109.5681707,1.058059103,2.761576419,-0.054969375,0.054969375,0.539554006,0.539554006,0.1797414,2.119982967,68.18593962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.72224317,1.774460819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535920443,65.54291874,77.25816361,67.31737956,341.3508362,0,0.451756745,63.14354915,-0.451756745,116.8564508,0.939320966,0,397.8961609,67.31737956,441.9540395,1,11,11% +2018-01-21 20:00:00,57.79551084,174.3289161,500.7672906,779.9091945,85.1204768,532.7686425,446.4398668,86.32877572,82.55378036,3.774995362,123.9835237,0,123.9835237,2.566696437,121.4168273,1.008721957,3.042613568,0.392936036,-0.392936036,0.46295767,0.46295767,0.169980105,2.092269215,67.29457009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.35383377,1.859562831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515841924,64.68610044,80.86967569,66.54566328,446.4398668,0,0.572425444,55.0804669,-0.572425444,124.9195331,0.96265238,0,510.6360761,66.54566328,554.1888818,1,12,9% +2018-01-21 21:00:00,58.33371869,190.9540344,491.5595417,775.5783101,84.40353252,584.290927,498.7268889,85.56403806,81.85845459,3.705583461,121.7293799,0,121.7293799,2.545077921,119.184302,1.018115456,3.33277662,0.833901313,-0.833901313,0.387548166,0.387548166,0.171705613,1.825776486,58.72324784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.68546019,1.84390029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.322768849,56.44701947,80.00822904,58.29091976,498.7268889,0,0.643038727,49.98121529,-0.643038727,130.0187847,0.972244185,0,564.8925469,58.29091976,603.042788,1,13,7% +2018-01-21 22:00:00,62.14743577,206.6144598,425.0494739,740.7350409,78.97956257,567.7908391,487.9885992,79.80223983,76.59803735,3.204202476,105.4396912,0,105.4396912,2.381525215,103.058166,1.084677376,3.606102606,1.375340448,-1.375340448,0.294956621,0.294956621,0.185812635,1.364870382,43.89892319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62894705,1.725406911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988843945,42.19731474,74.617791,43.92272166,487.9885992,0,0.658789678,48.79236803,-0.658789678,131.207632,0.974103243,0,549.9690682,43.92272166,578.715611,1,14,5% +2018-01-21 23:00:00,68.67782114,220.3781023,307.1811186,658.0779895,67.89615983,475.2858741,407.121373,68.16450113,65.8488401,2.315661026,76.52693836,0,76.52693836,2.047319729,74.47961863,1.198654102,3.846323484,2.227107141,-2.227107141,0.149295938,0.149295938,0.22102973,0.781134587,25.12397345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.29640979,1.483276174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.565929349,24.15011892,63.86233914,25.63339509,407.121373,0,0.618652165,51.78222491,-0.618652165,128.2177751,0.96917914,0,458.4358813,25.63339509,475.2124257,1,15,4% +2018-01-21 00:00:00,77.20354986,232.1297364,151.7045146,470.7641865,47.43585868,294.5661881,247.4170829,47.14910523,46.00549252,1.143612711,38.21288209,0,38.21288209,1.430366159,36.78251593,1.347456139,4.051428192,4.19036166,-4.19036166,0,0,0.312685874,0.35759154,11.50137313,0.15714263,1,0.234261385,0,0.934156941,0.972918905,0.724496596,1,44.47938671,1.036295413,0.025020061,0.312029739,0.931497918,0.655994514,0.961238037,0.922476074,0.250059417,11.05555733,44.72944613,12.09185274,208.5373118,0,0.525564794,58.29372728,-0.525564794,121.7062727,0.954864252,0,243.8542703,12.09185274,251.7681461,1,16,3% +2018-01-21 01:00:00,86.98401932,242.2475265,9.66172333,57.53920222,6.634327699,28.8246211,22.31750871,6.507112393,6.434278241,0.072834152,2.542646139,0,2.542646139,0.200049458,2.342596681,1.518157534,4.228016942,18.8063722,-18.8063722,0,0,0.686660906,0.050012365,1.60856956,0.728697708,1,0.053123437,0,0.956214978,0.994976941,0.724496596,1,6.220217442,0.144935151,0.092566115,0.312029739,0.771244533,0.495741129,0.961238037,0.922476074,0.034833603,1.546218246,6.255051045,1.691153398,6.054791262,0,0.387866148,67.17821012,-0.387866148,112.8217899,0.921089549,0,11.832056,1.691153398,12.93888207,1,17,9% +2018-01-21 02:00:00,98.09058083,251.2728415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712003601,4.385538405,-7.032920587,7.032920587,1,0.267146057,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.206281492,78.09547334,-0.206281492,101.9045267,0.807612767,0,0,0,0,1,18,0% +2018-01-21 03:00:00,109.5416852,259.7864861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911863075,4.534129535,-2.776398224,2.776398224,1,0.995054251,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.003308633,89.81042897,-0.003308633,90.18957103,0,0,0,0,0,1,19,0% +2018-01-21 04:00:00,121.3038151,268.452276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117150969,4.685376101,-1.559918559,1.559918559,1,0.796915474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.211035694,102.1830534,0.211035694,77.81694657,0,0.813073255,0,0,0,1,20,0% +2018-01-21 05:00:00,133.1077656,278.2219782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32316877,4.85588957,-0.941331869,0.941331869,1,0.69113092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422145413,114.9701107,0.422145413,65.02988934,0,0.931557401,0,0,0,1,21,0% +2018-01-21 06:00:00,144.5592728,290.8801685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523035275,5.076816669,-0.538127398,0.538127398,1,0.622178895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615633666,127.997978,0.615633666,52.00202198,0,0.968782869,0,0,0,1,22,0% +2018-01-21 07:00:00,154.7759268,310.4976744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701349525,5.419206738,-0.231986338,0.231986338,1,0.56982569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778312726,141.1063487,0.778312726,38.89365129,0,0.98575847,0,0,0,1,23,0% +2018-01-22 08:00:00,161.2681976,344.7907066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814661027,6.017733061,0.028320355,-0.028320355,1,0.525310624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899092224,154.0389995,0.899092224,25.96100055,0,0.994388352,0,0,0,1,0,0% +2018-01-22 09:00:00,159.8791047,27.96892399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790416782,0.488149812,0.27212674,-0.27212674,1,0.483617276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969734595,165.8677163,0.969734595,14.1322837,0,0.998439501,0,0,0,1,1,0% +2018-01-22 10:00:00,151.7625912,56.81380108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648756898,0.991587889,0.522876649,-0.522876649,1,0.440736516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985416366,170.2028509,0.985416366,9.797149102,0,0.999260027,0,0,0,1,2,0% +2018-01-22 11:00:00,140.9909107,73.5360086,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460755607,1.283445469,0.808504593,-0.808504593,1,0.391891261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945057069,160.9189473,0.945057069,19.08105273,0,0.997093142,0,0,0,1,3,0% +2018-01-22 12:00:00,129.3600459,84.98561497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257758721,1.483278798,1.177689827,-1.177689827,1,0.328756868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851393388,148.3635469,0.851393388,31.63645305,0,0.991272741,0,0,0,1,4,0% +2018-01-22 13:00:00,117.5259746,94.26249617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051215214,1.645190919,1.749369709,-1.749369709,1,0.23099385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710793439,135.2995084,0.710793439,44.70049158,0,0.979656076,0,0,0,1,5,0% +2018-01-22 14:00:00,105.8210175,102.7896127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846925174,1.794017179,2.966692211,-2.966692211,1,0.022819442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532823715,122.1964411,0.532823715,57.80355887,0,0.956160333,0,0,0,1,6,0% +2018-01-22 15:00:00,94.50471454,111.3916087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649418427,1.944150331,9.522277887,-9.522277887,1,0,#DIV/0!,0,0,0.523412761,1,0.104633362,0,0.950705258,0.989467221,0.724496596,1,0,0,0.071718155,0.312029739,0.816834889,0.541331485,0.961238037,0.922476074,0,0,0,0,0,0,-0.329598108,109.2443841,0.329598108,70.7556159,0,0.8983001,0,0,0,1,7,0% +2018-01-22 16:00:00,83.7259244,120.6939287,45.28304072,211.087769,22.21440546,21.88592186,0,21.88592186,21.54455917,0.341362689,35.43155165,23.78230787,11.64924378,0.669846287,10.97939749,1.46129305,2.106506442,-5.761735333,5.761735333,0.484531538,0.484531538,0.490567884,0.251722147,8.09624955,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.70944976,0.485301355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.182371839,7.782423023,20.8918216,8.267724378,0,23.78230787,-0.112665494,96.46899258,0.112665494,83.53100742,0,0.6062084,20.8918216,22.68475919,35.7385428,1,8,71% +2018-01-22 17:00:00,74.2126871,131.2700441,205.7459363,551.5039973,55.6998018,109.3198033,53.74855621,55.57124704,54.02024727,1.550999775,51.56503883,0,51.56503883,1.679554535,49.8854843,1.295255737,2.291094478,-1.70013111,1.70013111,0.820893233,0.820893233,0.270721273,1.348410115,43.36950443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.92631643,1.216831543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976918538,41.6884173,52.90323497,42.90524884,53.74855621,0,0.097458144,84.40718219,-0.097458144,95.59281781,0.536959245,0,81.76401912,42.90524884,109.8446464,1,9,34% +2018-01-22 18:00:00,66.20779346,143.6389322,352.2676128,693.8315651,72.36150109,274.6955758,201.8604989,72.83507691,70.17953484,2.655542064,87.59332738,0,87.59332738,2.181966243,85.41136114,1.155543986,2.506972301,-0.638911046,0.638911046,0.639413913,0.639413913,0.205416276,1.89468721,60.93965363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4592383,1.580827116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372694434,58.57751302,68.83193273,60.15834014,201.8604989,0,0.290935883,73.08600574,-0.290935883,106.9139943,0.878140828,0,246.0938783,60.15834014,285.4663088,1,10,16% +2018-01-22 19:00:00,60.42478106,158.075522,455.41359,757.6709091,81.45317629,426.2694192,343.8392567,82.4301625,78.99706249,3.433100009,112.8764113,0,112.8764113,2.456113795,110.4202975,1.054611379,2.758938325,-0.059174875,0.059174875,0.540273189,0.540273189,0.178855392,2.137097231,68.73639317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93498126,1.779446084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.548319669,66.07203563,77.48330093,67.85148172,343.8392567,0,0.45381082,63.01155362,-0.45381082,116.9884464,0.939821931,0,400.6309751,67.85148172,445.0384128,1,11,11% +2018-01-22 20:00:00,57.5725924,174.2317489,504.6286203,781.887107,85.35681192,536.066378,449.4792851,86.58709281,82.78298911,3.804103696,124.9268742,0,124.9268742,2.573822813,122.3530514,1.004831296,3.04091768,0.386979716,-0.386979716,0.463976261,0.463976261,0.169147782,2.10992134,67.8623231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.57415794,1.864725866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.528630828,65.23184623,81.10278877,67.0965721,449.4792851,0,0.574864685,54.90984347,-0.574864685,125.0901565,0.96302301,0,513.9616828,67.0965721,557.8750473,1,12,9% +2018-01-22 21:00:00,58.09737091,190.9237297,495.6702103,777.7201395,84.6627783,588.1134767,502.2670221,85.84645458,82.10988317,3.736571417,122.7338763,0,122.7338763,2.552895138,120.1809811,1.013990409,3.332247704,0.825524953,-0.825524953,0.388980608,0.388980608,0.170804653,1.843420931,59.29075387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9271429,1.849563837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335552189,56.99252785,80.26269509,58.84209169,502.2670221,0,0.645819745,49.77283502,-0.645819745,130.227165,0.972579016,0,568.7570613,58.84209169,607.2680335,1,13,7% +2018-01-22 22:00:00,61.91119132,206.6461415,429.2885432,743.3686809,79.28115276,572.1219386,491.9952467,80.12669186,76.89053349,3.236158371,106.4765967,0,106.4765967,2.390619272,104.0859774,1.080554132,3.606655555,1.362429704,-1.362429704,0.297164488,0.297164488,0.184680337,1.381724376,44.44100558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91010547,1.731995525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001054607,42.71838496,74.91116007,44.45038049,491.9952467,0,0.661845541,48.55922342,-0.661845541,131.4407766,0.974453672,0,554.3377351,44.45038049,583.4296201,1,14,5% +2018-01-22 23:00:00,68.45110368,220.455713,311.3851393,661.866713,68.28473004,480.1853576,411.6123114,68.57304619,66.22569348,2.347352709,77.55796866,0,77.55796866,2.059036554,75.49893211,1.194697136,3.847678047,2.203044428,-2.203044428,0.153410904,0.153410904,0.219293478,0.795898975,25.59884692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.65865559,1.491764975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576626098,24.60658536,64.23528169,26.09835033,411.6123114,0,0.621896076,51.54527145,-0.621896076,128.4547285,0.969600715,0,463.334873,26.09835033,480.4157213,1,15,4% +2018-01-22 00:00:00,76.99064717,232.2379216,155.541481,477.4924071,48.05311496,300.3180174,252.5413438,47.77667363,46.60413625,1.172537384,39.16181157,0,39.16181157,1.448978713,37.71283286,1.343740286,4.05331638,4.121931054,-4.121931054,0,0,0.308940835,0.362244678,11.65103406,0.148746384,1,0.238006396,0,0.933623709,0.972385672,0.724496596,1,45.04848878,1.049780145,0.02377103,0.312029739,0.934801297,0.659297893,0.961238037,0.922476074,0.253671989,11.19941711,45.30216077,12.24919725,214.976732,0,0.528890805,58.06945838,-0.528890805,121.9305416,0.955462527,0,250.7043725,12.24919725,258.7212271,1,16,3% +2018-01-22 01:00:00,86.79254207,242.376832,11.11442757,65.27610144,7.462133931,32.84670351,25.5257952,7.320908311,7.237123061,0.08378525,2.919832512,0,2.919832512,0.22501087,2.694821642,1.514815625,4.230273749,17.68692347,-17.68692347,0,0,0.671391656,0.056252718,1.809280765,0.713835075,1,0.056478816,0,0.955875082,0.994637045,0.724496596,1,6.998062042,0.16301961,0.091160183,0.312029739,0.774209639,0.498706235,0.961238037,0.922476074,0.039116465,1.739149491,7.037178507,1.902169101,7.304587271,0,0.3910435,66.98055537,-0.3910435,113.0194446,0.922136987,0,13.77300861,1.902169101,15.01794024,1,17,9% +2018-01-22 02:00:00,97.90075949,251.4195537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.708690593,4.388099016,-7.203698461,7.203698461,1,0.23794132,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.20950163,77.90685191,-0.20950163,102.0931481,0.811338372,0,0,0,0,1,18,0% +2018-01-22 03:00:00,109.3597441,259.9512514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.908687604,4.537005232,-2.80321654,2.80321654,1,0.990468049,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006319652,89.6379082,-0.006319652,90.3620918,0,0,0,0,0,1,19,0% +2018-01-22 04:00:00,121.1254562,268.6390959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114038019,4.688636724,-1.569195761,1.569195761,1,0.798501969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208314191,102.0235778,0.208314191,77.97642222,0,0.809977945,0,0,0,1,20,0% +2018-01-22 05:00:00,132.9269006,278.4370514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320012081,4.859643306,-0.945392908,0.945392908,1,0.691825398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419773701,114.8203011,0.419773701,65.17969887,0,0.930888203,0,0,0,1,21,0% +2018-01-22 06:00:00,144.3664628,291.1256885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519670106,5.081101802,-0.539954524,0.539954524,1,0.622491351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613647772,127.8537306,0.613647772,52.14626945,0,0.968520033,0,0,0,1,22,0% +2018-01-22 07:00:00,154.5575959,310.7310585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697538932,5.423280059,-0.232594949,0.232594949,1,0.569929769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776721972,140.9614144,0.776721972,39.03858564,0,0.985626901,0,0,0,1,23,0% +2018-01-23 08:00:00,161.0280756,344.7625833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810470107,6.017242217,0.028543013,-0.028543013,1,0.525272547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897878611,153.8806062,0.897878611,26.11939379,0,0.994313185,0,0,0,1,0,0% +2018-01-23 09:00:00,159.6890636,27.54236435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787099939,0.480704942,0.27307198,-0.27307198,1,0.483455631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968854066,165.6625468,0.968854066,14.33745318,0,0.998392641,0,0,0,1,1,0% +2018-01-23 10:00:00,151.639211,56.37781149,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646603507,0.983978436,0.524628837,-0.524628837,1,0.440436875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984801853,169.9980534,0.984801853,10.00194663,0,0.999228365,0,0,0,1,2,0% +2018-01-23 11:00:00,140.901153,73.18114514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459189039,1.277251933,0.811392323,-0.811392323,1,0.39139743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944623122,160.843036,0.944623122,19.15696396,0,0.997068837,0,0,0,1,3,0% +2018-01-23 12:00:00,129.2824973,84.69046689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256405242,1.478127492,1.182558686,-1.182558686,1,0.327924244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85104207,148.3251921,0.85104207,31.67480786,0,0.991248498,0,0,0,1,4,0% +2018-01-23 13:00:00,117.4486666,94.00476896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049865935,1.640692731,1.758684739,-1.758684739,1,0.229400886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71042106,135.2691843,0.71042106,44.7308157,0,0.979619204,0,0,0,1,5,0% +2018-01-23 14:00:00,105.7360826,102.554621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845442779,1.789915799,2.991404122,-2.991404122,1,0.018593456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532327975,122.1628821,0.532327975,57.83711794,0,0.956072943,0,0,0,1,6,0% +2018-01-23 15:00:00,94.40586039,111.1702993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647693097,1.940287754,9.769876647,-9.769876647,1,0,#DIV/0!,0,0,0.532839866,1,0.102000221,0,0.951001947,0.989763911,0.724496596,1,0,0,0.072747612,0.312029739,0.814502161,0.538998757,0.961238037,0.922476074,0,0,0,0,0,0,-0.328885125,109.2011211,0.328885125,70.79887894,0,0.897971233,0,0,0,1,7,0% +2018-01-23 16:00:00,83.60944252,120.481753,46.92052726,217.0515641,22.76156935,22.4289308,0,22.4289308,22.07522405,0.353706754,36.30539869,24.24262833,12.06277036,0.686345297,11.37642506,1.459260058,2.102803278,-5.681407916,5.681407916,0.498268335,0.498268335,0.485108985,0.262331168,8.437472106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.21954503,0.497254831,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190058038,8.110419123,21.40960307,8.607673955,0,24.24262833,-0.111690641,96.4127828,0.111690641,83.5872172,0,0.602334918,21.40960307,23.2098555,36.59998929,1,8,71% +2018-01-23 17:00:00,74.06934898,131.0675541,208.411333,555.190233,56.02623006,110.7683078,54.86038267,55.90792517,54.33683251,1.571092661,52.22113814,0,52.22113814,1.689397551,50.53174059,1.292754014,2.287560361,-1.694874342,1.694874342,0.819994272,0.819994272,0.268825257,1.364312293,43.88097312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.23063021,1.223962775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988439612,42.18006046,53.21906982,43.40402323,54.86038267,0,0.098813667,84.32913976,-0.098813667,95.67086024,0.54399712,0,83.06295997,43.40402323,111.4700251,1,9,34% +2018-01-23 18:00:00,66.03452623,143.4539251,355.4668733,696.3650766,72.61307953,276.9184143,203.8152275,73.10318671,70.42352727,2.679659441,88.37661115,0,88.37661115,2.189552262,86.18705889,1.152519903,2.503743318,-0.640679235,0.640679235,0.639716292,0.639716292,0.204275236,1.911436802,61.47837808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.6937731,1.58632316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384829457,59.09535546,69.07860256,60.68167862,203.8152275,0,0.292684447,72.98126149,-0.292684447,107.0187385,0.879167554,0,248.2663376,60.68167862,287.9812827,1,10,16% +2018-01-23 19:00:00,60.22079099,157.9248196,459.0351538,759.7702117,81.68840896,429.1085127,346.4229098,82.68560292,79.22520203,3.460400887,113.7615945,0,113.7615945,2.463206928,111.2983876,1.051051081,2.756308073,-0.063280877,0.063280877,0.540975357,0.540975357,0.177956761,2.154659775,69.30126496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.15427767,1.784585035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.561043672,66.61501188,77.71532134,68.39959692,346.4229098,0,0.455957478,62.873443,-0.455957478,117.126557,0.940340652,0,403.4708661,68.39959692,448.2370342,1,11,11% +2018-01-23 20:00:00,57.3435207,174.1369748,508.5863665,783.8893257,85.59892575,539.4609377,452.6091965,86.85174117,83.01780231,3.833938858,125.8937762,0,125.8937762,2.581123438,123.3126528,1.000833241,3.039263559,0.381080625,-0.381080625,0.464985065,0.464985065,0.168307551,2.127959205,68.44248285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79986931,1.870015144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.5416992,65.78951786,81.34156851,67.659533,452.6091965,0,0.577389156,54.73288145,-0.577389156,125.2671186,0.963403292,0,517.3867585,67.659533,561.6685697,1,12,9% +2018-01-23 21:00:00,57.85557662,190.8978246,499.8649634,779.8782559,84.9266645,592.0225045,505.888499,86.13400546,82.36581222,3.768193238,123.7588999,0,123.7588999,2.560852281,121.1980476,1.009770303,3.331795575,0.817194782,-0.817194782,0.390405151,0.390405151,0.169899214,1.861392641,59.86878583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.17315164,1.85532876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348572632,57.54815416,80.52172427,59.40348292,505.888499,0,0.648676246,49.55812934,-0.648676246,130.4418707,0.972919946,0,572.7107355,59.40348292,611.589127,1,13,7% +2018-01-23 22:00:00,61.67050865,206.6836242,433.5988883,746.0103683,79.5861236,576.5260582,496.0710983,80.4549599,77.18630833,3.268651573,107.5308858,0,107.5308858,2.399815268,105.1310705,1.076353427,3.607309753,1.349591966,-1.349591966,0.299359871,0.299359871,0.183547804,1.398854833,44.99197995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.19441549,1.738657992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013465564,43.24800248,75.20788106,44.98666047,496.0710983,0,0.664965421,48.32032739,-0.664965421,131.6796726,0.97480812,0,558.7820159,44.98666047,588.2248854,1,14,5% +2018-01-23 23:00:00,68.22099821,220.5397393,315.6488601,665.6488799,68.67479909,485.1416079,416.1581129,68.98349495,66.60400051,2.379494438,78.60351916,0,78.60351916,2.070798575,76.53272058,1.190681038,3.849144581,2.179213735,-2.179213735,0.157486193,0.157486193,0.217567075,0.810906617,26.08154429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.0222987,1.500286519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587499084,25.07057243,64.60979778,26.57085895,416.1581129,0,0.625191637,51.30374551,-0.625191637,128.6962545,0.970024522,0,468.2933724,26.57085895,485.6834681,1,15,4% +2018-01-23 00:00:00,76.77524104,232.3526363,159.4339253,484.179042,48.66753209,306.1092376,257.7073309,48.40190671,47.20002643,1.201880274,40.12410672,0,40.12410672,1.467505657,38.65660106,1.33998074,4.055318529,4.054999451,-4.054999451,0,0,0.305252047,0.366876414,11.80000661,0.140370646,1,0.241784745,0,0.933082679,0.971844642,0.724496596,1,45.61427547,1.063202853,0.022515764,0.312029739,0.938133516,0.662630112,0.961238037,0.922476074,0.257291421,11.34261519,45.8715669,12.40581804,221.5327865,0,0.53225627,57.84197096,-0.53225627,122.158029,0.956060289,0,257.6702669,12.40581804,265.7896266,1,16,3% +2018-01-23 01:00:00,86.59870099,242.5126144,12.68686474,73.47564957,8.327627515,37.14049289,28.96833513,8.172157765,8.07651882,0.095638945,3.327185935,0,3.327185935,0.251108695,3.07607724,1.51143246,4.232643598,16.6820102,-16.6820102,0,0,0.656397596,0.062777174,2.019129705,0.699034328,1,0.059873167,0,0.955528525,0.994290488,0.724496596,1,7.811564946,0.181927395,0.089745053,0.312029739,0.777210149,0.501706745,0.961238037,0.922476074,0.043585757,1.940864274,7.855150704,2.122791669,8.718474453,0,0.394257625,66.7803179,-0.394257625,113.2196821,0.923179371,0,15.90386647,2.122791669,17.29319116,1,17,9% +2018-01-23 02:00:00,97.70959745,251.5727337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705354186,4.390772511,-7.384057679,7.384057679,1,0.207098078,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.212739043,77.71708435,-0.212739043,102.2829157,0.81497027,0,0,0,0,1,18,0% +2018-01-23 03:00:00,109.1767103,260.1226358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.905493061,4.539996453,-2.830613073,2.830613073,1,0.985782966,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009340101,89.46484386,-0.009340101,90.53515614,0,0,0,0,0,1,19,0% +2018-01-23 04:00:00,120.9460325,268.8329278,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110906485,4.692019729,-1.578546463,1.578546463,1,0.800101033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.20558828,101.8639386,0.20558828,78.13606144,0,0.806795475,0,0,0,1,20,0% +2018-01-23 05:00:00,132.7447316,278.6598495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316832631,4.863531867,-0.949430314,0.949430314,1,0.692515836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.417399434,114.6705114,0.417399434,65.32948856,0,0.930210667,0,0,0,1,21,0% +2018-01-23 06:00:00,144.1717309,291.3800201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516271392,5.085540725,-0.541726434,0.541726434,1,0.622794366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611657878,127.7094751,0.611657878,52.2905249,0,0.968254956,0,0,0,1,22,0% +2018-01-23 07:00:00,154.3361588,310.9747308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.693674126,5.427532942,-0.233131723,0.233131723,1,0.570021562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775122577,140.8161471,0.775122577,39.18385289,0,0.985494073,0,0,0,1,23,0% +2018-01-24 08:00:00,160.7827981,344.747926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806189208,6.016986398,0.028852174,-0.028852174,1,0.525219677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89664884,153.7210098,0.89664884,26.27899022,0,0.99423681,0,0,0,1,0,0% +2018-01-24 09:00:00,159.4913754,27.12478121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783649629,0.473416741,0.274122361,-0.274122361,1,0.483276005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967947501,165.4542716,0.967947501,14.54572839,0,0.998344306,0,0,0,1,1,0% +2018-01-24 10:00:00,151.5081068,55.94117834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315307,0.97635775,0.526514766,-0.526514766,1,0.440114362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98414975,169.7851732,0.98414975,10.21482681,0,0.999194724,0,0,0,1,2,0% +2018-01-24 11:00:00,140.8043708,72.82298695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.457499872,1.271000893,0.814463492,-0.814463492,1,0.390872229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944139153,160.7587142,0.944139153,19.24128582,0,0.997041705,0,0,0,1,3,0% +2018-01-24 12:00:00,129.198432,84.39173924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254938027,1.472913711,1.187710602,-1.187710602,1,0.327043214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850628272,148.2800695,0.850628272,31.71993045,0,0.991219917,0,0,0,1,4,0% +2018-01-24 13:00:00,117.3651253,93.74368789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048407863,1.636136007,1.768534314,-1.768534314,1,0.22771651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709974585,135.2328475,0.709974585,44.76715249,0,0.979574944,0,0,0,1,5,0% +2018-01-24 14:00:00,105.6450375,102.3165906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843853743,1.785761386,3.017673372,-3.017673372,1,0.01410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531748161,122.1236473,0.531748161,57.87635274,0,0.955970526,0,0,0,1,6,0% +2018-01-24 15:00:00,94.30090694,110.9462869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645861314,1.936378,10.04336501,-10.04336501,1,0,#DIV/0!,0,0,0.542828486,1,0.099241132,0,0.951311102,0.990073065,0.724496596,1,0,0,0.073830291,0.312029739,0.812057951,0.536554547,0.961238037,0.922476074,0,0,0,0,0,0,-0.32808042,109.1523062,0.32808042,70.84769383,0,0.897598342,0,0,0,1,7,0% +2018-01-24 16:00:00,83.4868378,120.2672657,48.66208809,223.2947753,23.33343621,22.9966824,0,22.9966824,22.62984702,0.366835375,37.20315304,24.7008772,12.50227584,0.703589193,11.79868665,1.457120202,2.099059768,-5.598814861,5.598814861,0.51239258,0.51239258,0.47949928,0.273732552,8.804179821,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.75266972,0.509747975,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.198318302,8.462912527,21.95098803,8.972660502,0,24.7008772,-0.110620041,96.35105944,0.110620041,83.64894056,0,0.598002337,21.95098803,23.7438428,37.49085826,1,8,71% +2018-01-24 17:00:00,73.91973972,130.8632994,211.1933966,558.9817622,56.36460119,112.3045152,56.0474497,56.25706553,54.6650005,1.592065032,52.90588482,0,52.90588482,1.699600689,51.20628413,1.29014284,2.283995445,-1.689071071,1.689071071,0.819001854,0.819001854,0.266886191,1.380810357,44.41160759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.54607776,1.231354914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.000392403,42.69012649,53.54647017,43.92148141,56.0474497,0,0.100267045,84.24545166,-0.100267045,95.75454834,0.551331671,0,84.44720424,43.92148141,113.1929354,1,9,34% +2018-01-24 18:00:00,65.85487348,143.2680262,358.7794714,698.9532466,72.87314382,279.2425685,205.8621876,73.38038087,70.67574966,2.704631204,89.1876308,0,89.1876308,2.19739416,86.99023664,1.149384371,2.50049877,-0.642239753,0.642239753,0.639983156,0.639983156,0.203114029,1.928693141,62.03340126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93621886,1.592004588,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397331615,59.62886484,69.33355047,61.22086943,205.8621876,0,0.294529267,72.87068767,-0.294529267,107.1293123,0.880237584,0,250.5411851,61.22086943,290.6090197,1,10,16% +2018-01-24 19:00:00,60.01042772,157.7746291,462.7618206,761.9030129,81.93040777,432.04895,349.1005523,82.94839776,79.45990369,3.488494075,114.6724652,0,114.6724652,2.470504085,112.2019611,1.047379549,2.753686753,-0.067284304,0.067284304,0.541659983,0.541659983,0.177046602,2.172660364,69.88022576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.37988183,1.7898718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574085037,67.17153103,77.95396687,68.96140283,349.1005523,0,0.458195527,62.7292707,-0.458195527,117.2707293,0.940876281,0,406.4143961,68.96140283,451.548255,1,11,11% +2018-01-24 20:00:00,57.10838533,174.0446605,512.6382125,785.9136773,85.84656062,542.9502455,455.827792,87.12245347,83.25797008,3.864483385,126.8836603,0,126.8836603,2.588590543,124.2950698,0.996729355,3.037652371,0.375243698,-0.375243698,0.465983238,0.465983238,0.167460323,2.146372166,69.03470696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.03072771,1.875425036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555039328,66.3587862,81.58576704,68.23421123,455.827792,0,0.579997276,54.54964895,-0.579997276,125.450351,0.963792699,0,520.9092648,68.23421123,565.5671914,1,12,9% +2018-01-24 21:00:00,57.60843985,190.8763894,504.1412735,782.0505061,85.19492721,596.0154688,509.5890531,86.42641569,82.62598582,3.80042987,124.8038299,0,124.8038299,2.568941391,122.2348885,1.005456952,3.331421459,0.808917639,-0.808917639,0.391820626,0.391820626,0.168990185,1.879681103,60.45700563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.4232404,1.861189293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36182256,58.1135734,80.78506296,59.9747627,509.5890531,0,0.651606321,49.33717864,-0.651606321,130.6628214,0.973266552,0,576.7510434,59.9747627,616.0033261,1,13,7% +2018-01-24 22:00:00,61.42550422,206.726964,437.9779059,748.6576869,79.89419183,581.0002673,500.2135177,80.78674963,77.48508717,3.301662457,108.6019187,0,108.6019187,2.409104662,106.192814,1.072077293,3.608066174,1.33683702,-1.33683702,0.301541095,0.301541095,0.182416032,1.416252064,45.5515347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48161308,1.745388127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.026069799,43.78586779,75.50768288,45.53125592,500.2135177,0,0.668147174,48.07577664,-0.668147174,131.9242234,0.975166188,0,563.2989921,45.53125592,593.0982885,1,14,5% +2018-01-24 23:00:00,67.98762586,220.6302071,319.9697476,669.4213779,69.06604427,490.1513358,420.7558205,69.39551533,66.98344821,2.412067113,79.66296585,0,79.66296585,2.082596061,77.58036979,1.186607922,3.850723543,2.155629641,-2.155629641,0.16151931,0.16151931,0.215851795,0.826149562,26.57180978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.38703826,1.508833757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.598542545,25.54183427,64.98558081,27.05066802,420.7558205,0,0.628536576,51.05776392,-0.628536576,128.9422361,0.970450135,0,473.3081235,27.05066802,491.0122447,1,15,4% +2018-01-24 00:00:00,76.55744891,232.4738745,163.3794653,490.8188217,49.27867742,311.9358339,262.911467,49.0243669,47.79274348,1.231623421,41.09917685,0,41.09917685,1.485933943,39.61324291,1.33617955,4.057434535,3.989563737,-3.989563737,0,0,0.301620998,0.371483486,11.94818587,0.132021215,1,0.245594072,0,0.932534119,0.971296083,0.724496596,1,46.17632986,1.076554084,0.02125511,0.312029739,0.941492489,0.665989085,0.961238037,0.922476074,0.260915653,11.48505073,46.43724552,12.56160481,228.2015758,0,0.535658894,57.61139301,-0.535658894,122.388607,0.956657015,0,264.7478838,12.56160481,272.969203,1,16,3% +2018-01-24 01:00:00,86.40264148,242.6548401,14.37810101,82.10318981,9.226576761,41.69323497,32.63648534,9.056749628,8.948361429,0.108388199,3.764352385,0,3.764352385,0.278215332,3.486137053,1.508010576,4.235125905,15.77571978,-15.77571978,0,0,0.641710387,0.069553833,2.237090357,0.684308884,1,0.063303853,0,0.955175489,0.993937452,0.724496596,1,8.656754881,0.201566061,0.088321978,0.312029739,0.780243684,0.50474028,0.961238037,0.922476074,0.048219565,2.150376343,8.704974446,2.351942404,10.30304849,0,0.397505693,66.57766039,-0.397505693,113.4223396,0.924215638,0,18.22721298,2.351942404,19.76651224,1,17,8% +2018-01-24 02:00:00,97.51718943,251.7323244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701996033,4.393557895,-7.574721288,7.574721288,1,0.17449268,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.215991731,77.52628349,-0.215991731,102.4737165,0.818509657,0,0,0,0,1,18,0% +2018-01-24 03:00:00,108.9926638,260.300559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902280843,4.543101799,-2.858593536,2.858593536,1,0.980998025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012368275,89.29133198,-0.012368275,90.70866802,0,0,0,0,0,1,19,0% +2018-01-24 04:00:00,120.7656087,269.0336632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107757494,4.695523222,-1.587967387,1.587967387,1,0.801712106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202859298,101.704213,0.202859298,78.295787,0,0.803523745,0,0,0,1,20,0% +2018-01-24 05:00:00,132.5613083,278.8902204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313631291,4.867552598,-0.953441657,0.953441657,1,0.693201816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415023533,114.5207985,0.415023533,65.47920151,0,0.929524904,0,0,0,1,21,0% +2018-01-24 06:00:00,143.9751166,291.6429307,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512839826,5.090129381,-0.543441557,0.543441557,1,0.623087669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609664473,127.5652461,0.609664473,52.43475386,0,0.967987676,0,0,0,1,22,0% +2018-01-24 07:00:00,154.1116647,311.2283126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689755965,5.431958781,-0.233595637,0.233595637,1,0.570100896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77351461,140.6705554,0.77351461,39.32944462,0,0.98535998,0,0,0,1,23,0% +2018-01-25 08:00:00,160.5324774,344.7463271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801820287,6.016958492,0.029248528,-0.029248528,1,0.525151897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895402601,153.5601895,0.895402601,26.43981052,0,0.994159197,0,0,0,1,0,0% +2018-01-25 09:00:00,159.2861546,26.71657215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780067851,0.466292149,0.275278402,-0.275278402,1,0.48307831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967014283,165.2428777,0.967014283,14.7571223,0,0.998294456,0,0,0,1,1,0% +2018-01-25 10:00:00,151.3692994,55.50442655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641892661,0.968734993,0.528534951,-0.528534951,1,0.43976889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983459219,169.5644321,0.983459219,10.43556792,0,0.999159051,0,0,0,1,2,0% +2018-01-25 11:00:00,140.700554,72.46187754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455687928,1.264698345,0.817718935,-0.817718935,1,0.390315516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943604206,160.6659225,0.943604206,19.3340775,0,0.997011682,0,0,0,1,3,0% +2018-01-25 12:00:00,129.10784,84.08966531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253356898,1.467641527,1.193147687,-1.193147687,1,0.326113418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850151039,148.228101,0.850151039,31.77189898,0,0.991186921,0,0,0,1,4,0% +2018-01-25 13:00:00,117.2753503,93.47942618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046840994,1.63152377,1.778926036,-1.778926036,1,0.225939421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709453167,135.1904409,0.709453167,44.80955909,0,0.979523184,0,0,0,1,5,0% +2018-01-25 14:00:00,105.5478953,102.075659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842158291,1.781556337,3.045548309,-3.045548309,1,0.009334255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531083643,122.0787015,0.531083643,57.92129852,0,0.955852871,0,0,0,1,6,0% +2018-01-25 15:00:00,94.18988174,110.7196844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643923558,1.93242304,10.34578721,-10.34578721,1,0,#DIV/0!,0,0,0.553388023,1,0.096358362,0,0.951632226,0.990394189,0.724496596,1,0,0,0.074965898,0.312029739,0.809504306,0.534000902,0.961238037,0.922476074,0,0,0,0,0,0,-0.327183672,109.0979247,0.327183672,70.9020753,0,0.897180638,0,0,0,1,7,0% +2018-01-25 16:00:00,83.35814536,120.0505606,50.50944607,229.8091638,23.92907934,23.58829085,0,23.58829085,23.20752931,0.38076154,38.12159551,25.1534455,12.96815001,0.721550031,12.24659998,1.454874095,2.095277551,-5.514322414,5.514322414,0.526841639,0.526841639,0.473754539,0.285952891,9.197227937,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.30795991,0.522760541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.207171896,8.840725327,22.51513181,9.363485868,0,25.1534455,-0.109453623,96.28382028,0.109453623,83.71617972,0,0.593185517,22.51513181,24.28414545,38.40861933,1,8,71% +2018-01-25 17:00:00,73.76391533,130.6573568,214.0912255,562.8725568,56.71440012,113.9286255,57.31046369,56.61816179,55.0042517,1.61391009,53.6190447,0,53.6190447,1.710148417,51.90889628,1.287423192,2.280401069,-1.682742599,1.682742599,0.817919622,0.817919622,0.264907635,1.397894849,44.96110356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.87217892,1.238996707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.012770059,43.21832292,53.88494898,44.45731963,57.31046369,0,0.101817832,84.15614101,-0.101817832,95.84385899,0.558926887,0,85.91730802,44.45731963,115.0137346,1,9,34% +2018-01-25 18:00:00,65.66890483,143.081298,362.203783,701.5926023,73.14136666,281.6671062,208.0007765,73.66632971,70.9358846,2.730445112,90.02598271,0,90.02598271,2.205482068,87.82050064,1.146138605,2.497239748,-0.643594136,0.643594136,0.640214769,0.640214769,0.201934298,1.946446255,62.60440243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.18627045,1.59786425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410193686,60.17773289,69.59646414,61.77559714,208.0007765,0,0.296469455,72.75432673,-0.296469455,107.2456733,0.881348562,0,252.9176493,61.77559714,293.3485422,1,10,16% +2018-01-25 19:00:00,59.79377216,157.6250058,466.5915189,764.0668011,82.17890053,435.0891085,351.8708411,83.21826742,79.70090347,3.517363958,115.6085128,0,115.6085128,2.477997059,113.1305158,1.043598196,2.751075334,-0.071182562,0.071182562,0.542326625,0.542326625,0.176126006,2.191088443,70.47293614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.61153998,1.795300434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587436118,67.74126679,78.1989761,69.53656722,351.8708411,0,0.460523662,62.5790964,-0.460523662,117.4209036,0.941427946,0,409.4600192,69.53656722,454.9703117,1,11,11% +2018-01-25 20:00:00,56.86727847,173.9548659,516.7817792,787.9580131,86.09945849,546.5321448,459.1331833,87.39896148,83.50324214,3.895719341,127.8959418,0,127.8959418,2.596216347,125.2997255,0.992521246,3.036085159,0.369473421,-0.369473421,0.466970013,0.466970013,0.166606993,2.165149404,69.63864748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.26649254,1.880949905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.568643373,66.93931679,81.83513592,68.8202667,459.1331833,0,0.582687371,54.36021914,-0.582687371,125.6397809,0.964190692,0,524.5270778,68.8202667,569.5685659,1,12,9% +2018-01-25 21:00:00,57.35606584,190.8594875,508.4965816,784.2347901,85.46730544,600.0897818,513.3663689,86.72341286,82.89015084,3.833262022,125.868038,0,125.868038,2.5771546,123.2908834,1.001052195,3.331126465,0.800699817,-0.800699817,0.393225956,0.393225956,0.168078427,1.898275754,61.05507354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.67716587,1.867139735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375294322,58.68845903,81.05246019,60.55559876,513.3663689,0,0.654608002,49.11006674,-0.654608002,130.8899333,0.97361841,0,580.8754081,60.55559876,620.5078363,1,13,7% +2018-01-25 22:00:00,61.17629423,206.7762099,442.4229915,751.3083163,80.20508165,585.5416321,504.4198582,81.12177391,77.78660252,3.335171391,109.6890556,0,109.6890556,2.418479137,107.2705765,1.067727759,3.608925677,1.324173817,-1.324173817,0.30370663,0.30370663,0.181285971,1.433906411,46.1193592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.7714411,1.752179902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038860314,44.3316823,75.81030141,46.0838622,504.4198582,0,0.671388626,47.82566971,-0.671388626,132.1743303,0.975527484,0,567.8857367,46.0838622,598.0467028,1,14,5% +2018-01-25 23:00:00,67.75110612,220.7271358,324.3452907,673.1812801,69.45815827,495.2113058,425.4025154,69.80879033,67.36373853,2.445051806,80.73569063,0,80.73569063,2.094419745,78.64127088,1.182479874,3.852415267,2.132304994,-2.132304994,0.16550806,0.16550806,0.214148811,0.84161988,27.06938838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.75258778,1.517399976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.609750738,26.02012574,65.36233852,27.53752572,425.4025154,0,0.631928617,50.80744382,-0.631928617,129.1925562,0.970877139,0,478.3759157,27.53752572,496.3986755,1,15,4% +2018-01-25 00:00:00,76.33738529,232.6016236,167.3757409,497.4069204,49.88615541,317.7939383,268.1502855,49.6436528,48.38190377,1.261749035,42.08643784,0,42.08643784,1.504251646,40.58218619,1.332338716,4.059664178,3.92561604,-3.92561604,0,0,0.2980489,0.376062912,12.09547594,0.123703446,1,0.249432106,0,0.931978293,0.970740256,0.724496596,1,46.73427097,1.089825197,0.019989874,0.312029739,0.944876214,0.66937281,0.961238037,0.922476074,0.264542783,11.62663155,46.99881376,12.71645675,234.979171,0,0.539096411,57.37785123,-0.539096411,122.6221488,0.957252211,0,271.9331448,12.71645675,280.2558114,1,16,3% +2018-01-25 01:00:00,86.20450273,242.8034691,16.18654825,91.12150108,10.15471625,46.49066267,36.52012754,9.970535131,9.848514093,0.122021038,4.230818188,0,4.230818188,0.306202162,3.924616026,1.504552403,4.237719972,14.95489055,-14.95489055,0,0,0.627355264,0.07655054,2.462128523,0.669670814,1,0.066768362,0,0.954816152,0.993578115,0.724496596,1,9.52962275,0.221842424,0.086892141,0.312029739,0.783307974,0.50780457,0.961238037,0.922476074,0.052996028,2.366691588,9.582618778,2.588534012,12.063664,0,0.400784964,66.37274045,-0.400784964,113.6272596,0.925244821,0,20.74446141,2.588534012,22.43860515,1,17,8% +2018-01-25 02:00:00,97.32362519,251.8982628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6986177,4.396454066,-7.776494252,7.776494252,1,0.139987471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.219257774,77.33455776,-0.219257774,102.6654422,0.821957915,0,0,0,0,1,18,0% +2018-01-25 03:00:00,108.8076789,260.4849353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899052249,4.546319772,-2.887164532,2.887164532,1,0.976112097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015402565,89.11746315,-0.015402565,90.88253685,0,0,0,0,0,1,19,0% +2018-01-25 04:00:00,120.5842434,269.241188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104592073,4.699145213,-1.597455544,1.597455544,1,0.803334677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200128477,101.5444721,0.200128477,78.45552788,0,0.800160493,0,0,0,1,20,0% +2018-01-25 05:00:00,132.3766747,279.128006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310408827,4.871702739,-0.957424706,0.957424706,1,0.693882957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412646817,114.3712125,0.412646817,65.62878748,0,0.928831005,0,0,0,1,21,0% +2018-01-25 06:00:00,143.7766538,291.9141812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509375996,5.094863595,-0.545098485,0.545098485,1,0.623371021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607667954,127.4210712,0.607667954,52.57892883,0,0.967718221,0,0,0,1,22,0% +2018-01-25 07:00:00,153.8841584,311.4914177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685785231,5.436550831,-0.233985808,0.233985808,1,0.570167619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771898064,140.5246407,0.771898064,39.47535934,0,0.985224608,0,0,0,1,23,0% +2018-01-26 08:00:00,160.2772231,344.7573559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.797365259,6.01715098,0.029732643,-0.029732643,1,0.525069108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.894139533,153.3981185,0.894139533,26.60188147,0,0.994080316,0,0,0,1,0,0% +2018-01-26 09:00:00,159.0735232,26.31807388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776356733,0.459337042,0.276540504,-0.276540504,1,0.482862478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966053769,165.0283493,0.966053769,14.97165071,0,0.998243046,0,0,0,1,1,0% +2018-01-26 10:00:00,151.2228213,55.06806004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.639336136,0.96111896,0.530689798,-0.530689798,1,0.439400389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982729432,169.3360531,0.982729432,10.66394695,0,0.999121296,0,0,0,1,2,0% +2018-01-26 11:00:00,140.5897029,72.09815399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45375321,1.258350172,0.821159386,-0.821159386,1,0.389727164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943017372,160.5646205,0.943017372,19.43537953,0,0.996978707,0,0,0,1,3,0% +2018-01-26 12:00:00,129.0107207,83.78447483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251661846,1.462314948,1.198871996,-1.198871996,1,0.325134504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849609489,148.1692207,0.849609489,31.83077933,0,0.991149433,0,0,0,1,4,0% +2018-01-26 13:00:00,117.1793503,93.21215388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045165479,1.626858988,1.789867719,-1.789867719,1,0.224068283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708856064,135.1419176,0.708856064,44.85808243,0,0.979463818,0,0,0,1,5,0% +2018-01-26 14:00:00,105.4446774,101.8319601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840356799,1.777302987,3.075080517,-3.075080517,1,0.00428395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530333915,122.0280189,0.530333915,57.97198111,0,0.955719777,0,0,0,1,6,0% +2018-01-26 15:00:00,94.07282031,110.4906009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641880451,1.928424778,10.68074096,-10.68074096,1,0,#DIV/0!,0,0,0.564528321,1,0.093354319,0,0.951964802,0.990726765,0.724496596,1,0,0,0.076154099,0.312029739,0.80684341,0.531340005,0.961238037,0.922476074,0,0,0,0,0,0,-0.326194693,109.0379708,0.326194693,70.96202917,0,0.89671731,0,0,0,1,7,0% +2018-01-26 16:00:00,83.22340787,119.8317266,52.46415993,236.5853794,24.54749019,24.20278979,0,24.20278979,23.80729279,0.395496999,39.05725865,25.59651826,13.46074038,0.7401974,12.72054298,1.452522482,2.091458178,-5.428284745,5.428284745,0.541554947,0.541554947,0.467890656,0.299018315,9.617456884,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88447539,0.536270497,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216637751,9.244665375,23.10111314,9.780935871,0,25.59651826,-0.108191463,96.2110718,0.108191463,83.7889282,0,0.587856327,23.10111314,24.82801108,39.35054983,1,8,70% +2018-01-26 17:00:00,73.60193839,130.4497974,217.1037753,566.8564421,57.07509888,115.6407431,58.65004904,56.99069402,55.35407406,1.636619963,54.36034867,0,54.36034867,1.721024816,52.63932386,1.284596161,2.276778473,-1.675911527,1.675911527,0.81675144,0.81675144,0.262893166,1.415555541,45.52913215,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.20844148,1.24687662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025565171,43.7643336,54.23400665,45.01121023,58.65004904,0,0.103465436,84.06123903,-0.103465436,95.93876097,0.56674683,0,87.47373604,45.01121023,116.9326729,1,9,34% +2018-01-26 18:00:00,65.47669541,142.893796,365.7380622,704.279633,73.4174142,284.1909758,210.2302796,73.96069629,71.20360828,2.757088001,90.89123347,0,90.89123347,2.21380592,88.67742755,1.142783918,2.493967221,-0.644744614,0.644744614,0.640411512,0.640411512,0.200737691,1.964685677,63.19104493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.44361664,1.603894853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423408085,60.74163598,69.86702473,62.34553083,210.2302796,0,0.298503989,72.63222865,-0.298503989,107.3677714,0.882498051,0,255.3948366,62.34553083,296.1987396,1,10,16% +2018-01-26 19:00:00,59.57090941,157.4759977,470.5220827,766.2590667,82.43361184,438.2272563,354.7323277,83.49492851,79.9479343,3.546994209,116.569204,0,116.569204,2.485677545,114.0835265,1.039708508,2.748474653,-0.074973548,0.074973548,0.542974921,0.542974921,0.175196053,2.209933146,71.07904657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84899541,1.80086492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601089041,68.32388318,78.45008445,70.1247481,354.7323277,0,0.462940464,62.42298637,-0.462940464,117.5770136,0.941994751,0,412.6060753,70.1247481,458.5013204,1,11,11% +2018-01-26 20:00:00,56.62029492,173.867643,521.014625,790.0202126,86.3573611,550.2043959,462.5233995,87.68099636,83.75336804,3.927628321,128.930021,0,128.930021,2.603993062,126.3260279,0.98821057,3.034562833,0.363773819,-0.363773819,0.467944703,0.467944703,0.16574844,2.184279943,70.25395138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.50692307,1.886584109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582503383,67.5307703,82.08942646,69.41735441,462.5233995,0,0.585457678,54.16467053,-0.585457678,125.8353295,0.96459673,0,528.2379853,69.41735441,573.6702554,1,12,9% +2018-01-26 21:00:00,57.09856084,190.847175,512.9283008,786.4290636,85.74354144,604.2428095,517.218082,87.0247275,83.1580573,3.866670193,126.9508891,0,126.9508891,2.585484134,124.365405,0.996557885,3.330911573,0.792547057,-0.792547057,0.394620161,0.394620161,0.16716477,1.917166005,61.66264894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93468775,1.873174454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.388980244,59.27248361,81.32366799,61.14565806,517.218082,0,0.657679257,48.87688103,-0.657679257,131.123119,0.9739751,0,585.0812009,61.14565806,625.0998112,1,13,7% +2018-01-26 22:00:00,60.92299442,206.8314036,446.9315452,753.9600351,80.51852504,590.1472192,508.687466,81.4597532,78.09059443,3.369158772,110.7916581,0,110.7916581,2.427930612,108.3637275,1.063306843,3.60988899,1.311610467,-1.311610467,0.30585509,0.30585509,0.180158518,1.451808277,46.69514476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06364969,1.759027463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051830155,44.88514928,76.11547984,46.64417675,508.687466,0,0.674687573,47.57010686,-0.674687573,132.4298931,0.975891624,0,572.5393174,46.64417675,603.0669982,1,14,5% +2018-01-26 23:00:00,67.51155649,220.8305371,328.7730082,676.9258457,69.85084936,500.3183409,430.0953225,70.22301834,67.74458853,2.47842981,81.82108307,0,81.82108307,2.10626083,79.71482224,1.178298944,3.854219961,2.109250959,-2.109250959,0.169450532,0.169450532,0.212459197,0.857309703,27.57402702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.11867529,1.525978802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.621117961,26.5052036,65.73979325,28.03118241,430.0953225,0,0.635365491,50.55290245,-0.635365491,129.4470975,0.971305137,0,483.4935896,28.03118241,501.8394379,1,15,4% +2018-01-26 00:00:00,76.11516132,232.7358638,171.4204257,503.9389509,50.48960704,323.6798376,273.420439,50.25939868,48.9671591,1.292239577,43.08531479,0,43.08531479,1.522447939,41.56286685,1.328460176,4.062007111,3.863144186,-3.863144186,0,0,0.294536703,0.380611985,12.24178978,0.115422248,1,0.253296671,0,0.931415454,0.970177417,0.724496596,1,47.28775322,1.103008349,0.018720818,0.312029739,0.948282772,0.672779368,0.961238037,0.922476074,0.268171056,11.76727397,47.55592428,12.87028232,241.8616373,0,0.542566592,57.14147063,-0.542566592,122.8585294,0.957845413,0,279.2219842,12.87028232,287.6453266,1,16,3% +2018-01-26 01:00:00,86.00441732,242.9584552,18.11006005,100.4918033,11.10783494,51.51742838,40.60801436,10.90941402,10.77289274,0.136521282,4.725935937,0,4.725935937,0.334942207,4.39099373,1.501060253,4.240424988,14.20854575,-14.20854575,0,0,0.613351635,0.083735552,2.693223184,0.655130879,1,0.070264317,0,0.954450685,0.993212648,0.724496596,1,10.42620477,0.242664489,0.085456644,0.312029739,0.786400864,0.51089746,0.961238037,0.922476074,0.057893776,2.588828566,10.48409854,2.831493055,14.00445021,0,0.404092802,66.16571007,-0.404092802,113.8342899,0.926266046,0,23.45594527,2.831493055,25.30910084,1,17,8% +2018-01-26 02:00:00,97.12898908,252.0704799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695220659,4.399459821,-7.990275646,7.990275646,1,0.103428699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.222535337,77.14201066,-0.222535337,102.8579893,0.825316583,0,0,0,0,1,18,0% +2018-01-26 03:00:00,108.6218243,260.6756731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895808474,4.549648775,-2.916333689,2.916333689,1,0.971123877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.018441464,88.94332204,-0.018441464,91.05667796,0,0,0,0,0,1,19,0% +2018-01-26 04:00:00,120.4019891,269.4553824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101411137,4.702883611,-1.60700827,1.60700827,1,0.804968289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.197396942,101.3847804,0.197396942,78.61521962,0,0.796703269,0,0,0,1,20,0% +2018-01-26 05:00:00,132.1908683,279.3730421,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307165894,4.875979425,-0.961377456,0.961377456,1,0.694558917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410269998,114.2217968,0.410269998,65.77820324,0,0.928129036,0,0,0,1,21,0% +2018-01-26 06:00:00,143.5763706,292.1935253,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505880394,5.099739069,-0.546695987,0.546695987,1,0.62364421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605668618,127.2769705,0.605668618,52.72302952,0,0.967446606,0,0,0,1,22,0% +2018-01-26 07:00:00,153.65368,311.7636522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.681762623,5.441302219,-0.234301502,0.234301502,1,0.570221606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770272855,140.3783973,0.770272855,39.62160267,0,0.985087937,0,0,0,1,23,0% +2018-01-27 08:00:00,160.0171421,344.7805604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79282599,6.017555977,0.030304952,-0.030304952,1,0.524971238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892859223,153.2347641,0.892859223,26.76523595,0,0.99400013,0,0,0,1,0,0% +2018-01-27 09:00:00,158.85361,25.92956302,0,0,0,0,0,0,0,0,0,0,0,0,0,2.772518523,0.452556248,0.277908946,-0.277908946,1,0.482628461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965065295,164.810668,0.965065295,15.18933205,0,0.998190034,0,0,0,1,1,0% +2018-01-27 10:00:00,151.0687168,54.63255973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636646505,0.953518046,0.532979593,-0.532979593,1,0.439008811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981959568,169.1002591,0.981959568,10.89974091,0,0.999081407,0,0,0,1,2,0% +2018-01-27 11:00:00,140.4718286,71.73214569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451695915,1.251962122,0.824785469,-0.824785469,1,0.389107068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942377782,160.4547864,0.942377782,19.54521359,0,0.996942722,0,0,0,1,3,0% +2018-01-27 12:00:00,128.9070835,83.4763932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249853036,1.456937909,1.204885518,-1.204885518,1,0.324106131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849002816,148.1033752,0.849002816,31.89662476,0,0.99110738,0,0,0,1,4,0% +2018-01-27 13:00:00,117.0771433,92.94203736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04338163,1.622144565,1.801367385,-1.801367385,1,0.222101724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708182634,135.0872411,0.708182634,44.91275887,0,0.979396744,0,0,0,1,5,0% +2018-01-27 14:00:00,105.3354138,101.5856238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838449789,1.773003608,3.106325016,-3.106325016,1,0,#DIV/0!,0,0,0.001058053,1,0.311447084,0,0.922568255,0.961330218,0.724496596,1,0,0,0.000180848,0.312029739,0.999487308,0.723983904,0.961238037,0.922476074,0,0,0,0,0,0,-0.529498598,121.9715833,0.529498598,58.02841666,0,0.955571044,0,0,0,1,6,0% +2018-01-27 15:00:00,93.94976623,110.2591409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639732752,1.924385039,11.05250431,-11.05250431,1,0,#DIV/0!,0,0,0.576259671,1,0.090231552,0,0.952308293,0.991070256,0.724496596,1,0,0,0.07739453,0.312029739,0.804077575,0.528574171,0.961238037,0.922476074,0,0,0,0,0,0,-0.32511344,108.9724479,0.32511344,71.02755212,0,0.896207527,0,0,0,1,7,0% +2018-01-27 16:00:00,83.08267565,119.610848,54.52760378,243.6129906,25.1875835,24.83913704,0,24.83913704,24.42808493,0.41105211,40.00644646,26.02609905,13.98034741,0.759498575,13.22084884,1.450066241,2.087603118,-5.341041507,5.341041507,0.55647442,0.55647442,0.461923535,0.312954246,10.06568432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.4812044,0.550254132,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.226734286,9.675518634,23.70793869,10.22577277,0,26.02609905,-0.10683379,96.13282935,0.10683379,83.86717065,0,0.581983279,23.70793869,25.37252724,40.31375031,1,8,70% +2018-01-27 17:00:00,73.4338781,130.2406862,220.2298568,570.9271228,57.4461585,117.4408701,60.06673952,57.37413055,55.71394486,1.660185686,55.12949215,0,55.12949215,1.732213632,53.39727852,1.281662955,2.273128795,-1.668601591,1.668601591,0.815501367,0.815501367,0.260846369,1.433781459,46.1153403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.55436299,1.25498288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038769786,44.32781918,54.59313277,45.58280206,60.06673952,0,0.105209119,83.96078508,-0.105209119,96.03921492,0.574756024,0,89.11685313,45.58280206,118.9498854,1,9,33% +2018-01-27 18:00:00,65.27832595,142.705569,369.3804418,707.0108019,73.7009469,286.8130045,212.5498673,74.26313722,71.47859142,2.784545797,91.78292012,0,91.78292012,2.222355476,89.56056464,1.139321718,2.490682039,-0.645694076,0.645694076,0.64057388,0.64057388,0.199525851,1.983400456,63.79297657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.70794089,1.610088978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436966879,61.32023557,70.14490777,62.93032454,212.5498673,0,0.300631711,72.50445089,-0.300631711,107.4955491,0.883683547,0,257.9717283,62.93032454,299.1583671,1,10,16% +2018-01-27 19:00:00,59.34192869,157.327645,474.5512542,768.4773094,82.69426371,441.4615526,357.6834582,83.77809435,80.20072655,3.577367805,117.5539829,0,117.5539829,2.49353716,115.0604457,1.03571204,2.745885409,-0.078655644,0.078655644,0.543604597,0.543604597,0.174257813,2.229183308,71.69819796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.09198894,1.806559184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615035718,68.91903505,78.70702466,70.72559424,357.6834582,0,0.465444397,62.26101352,-0.465444397,117.7389865,0.942575783,0,415.8507903,70.72559424,462.1392772,1,11,11% +2018-01-27 20:00:00,56.36753199,173.783036,525.3342498,792.0981884,86.62001051,553.964678,465.9963889,87.96828907,84.0080976,3.960191477,129.9852839,0,129.9852839,2.611912911,127.373371,0.983799024,3.033086162,0.358148454,-0.358148454,0.468906697,0.468906697,0.164885519,2.203752668,70.88026116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75177881,1.892322012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.596611306,68.13280309,82.34839012,70.0251251,465.9963889,0,0.588306343,53.96308691,-0.588306343,126.0369131,0.965010265,0,532.039689,70.0251251,577.8697329,1,12,9% +2018-01-27 21:00:00,56.83603203,190.8395006,517.4338197,788.6313415,86.02338105,608.4718753,521.1417819,87.33009342,83.42945872,3.900634698,128.0517426,0,128.0517426,2.593922331,125.4578202,0.991975893,3.330777628,0.784464551,-0.784464551,0.396002351,0.396002351,0.166250016,1.936341257,62.27939094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19556911,1.879287899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402872649,59.86531949,81.59844176,61.74460739,521.1417819,0,0.660817995,48.63771239,-0.660817995,131.3622876,0.974336201,0,589.3657457,61.74460739,629.7763563,1,13,7% +2018-01-27 22:00:00,60.66571981,206.8925796,451.5009755,756.6107213,80.834262,594.8140993,513.0136835,81.80041582,78.39681075,3.403605068,111.90909,0,111.90909,2.437451246,109.4716388,1.058816554,3.610956712,1.299154259,-1.299154259,0.307985227,0.307985227,0.179034523,1.469948146,47.27858529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.35799646,1.76592513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064972428,45.44597451,76.42296889,47.21189964,513.0136835,0,0.678041784,47.30918998,-0.678041784,132.69081,0.976258232,0,577.2568005,47.21189964,608.1560445,1,14,5% +2018-01-27 23:00:00,67.26909221,220.9404155,333.2504534,680.6525173,70.24384131,505.4693266,434.8314136,70.63791301,68.12573032,2.512182683,82.91854164,0,82.91854164,2.118110988,80.80043065,1.174067144,3.856137701,2.086477098,-2.086477098,0.173345092,0.173345092,0.210783933,0.873211248,28.0854754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48504328,1.5345642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632638577,26.99682723,66.11768185,28.53139143,434.8314136,0,0.638844936,50.29425692,-0.638844936,129.7057431,0.971733746,0,488.6580402,28.53139143,507.3312653,1,15,4% +2018-01-27 00:00:00,75.8908846,232.8765683,175.5112338,510.4109521,51.0887085,329.5899757,278.7187024,50.87127325,49.54819544,1.323077816,44.09524368,0,44.09524368,1.540513058,42.55473062,1.324545808,4.064462868,3.802132201,-3.802132201,0,0,0.29108512,0.385128265,12.38704886,0.107182086,1,0.257185691,0,0.930845851,0.969607814,0.724496596,1,47.83646514,1.116096467,0.017448657,0.312029739,0.95171034,0.676206936,0.961238037,0.922476074,0.271798868,11.90690253,48.10826401,13.02299899,248.8450505,0,0.546067245,56.90237437,-0.546067245,123.0976256,0.958436185,0,286.610365,13.02299899,295.1336574,1,16,3% +2018-01-27 01:00:00,85.80251099,243.1197452,20.14602408,110.1746471,12.08184701,56.75749373,44.88808974,11.86940399,11.71753475,0.151869239,5.248949046,0,5.248949046,0.364312265,4.884636782,1.497536323,4.24324003,13.52746212,-13.52746212,0,0,0.599713718,0.091078066,2.929383686,0.640698585,1,0.073789479,0,0.95407925,0.992841213,0.724496596,1,11.34264954,0.263942996,0.08401651,0.312029739,0.789520315,0.514016911,0.961238037,0.922476074,0.062892278,2.815835024,11.40554182,3.07977802,16.12835415,0,0.407426671,65.9567155,-0.407426671,114.0432845,0.92727853,0,26.36101835,3.07977802,28.37667147,1,17,8% +2018-01-27 02:00:00,96.93335998,252.2489005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691806287,4.402573847,-8.217072759,8.217072759,1,0.064644109,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.225822679,76.94874066,-0.225822679,103.0512593,0.82858734,0,0,0,0,1,18,0% +2018-01-27 03:00:00,108.4351623,260.8726752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892550608,4.553087111,-2.946109749,2.946109749,1,0.966031871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021483571,88.76898733,-0.021483571,91.23101267,0,0,0,0,0,1,19,0% +2018-01-27 04:00:00,120.2188922,269.6761212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098215492,4.706736229,-1.61662325,1.61662325,1,0.806612547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194665704,101.2251956,0.194665704,78.77480439,0,0.793149415,0,0,0,1,20,0% +2018-01-27 05:00:00,132.0039206,279.6251587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.30390304,4.88037969,-0.965298134,0.965298134,1,0.695229393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407893678,114.0725874,0.407893678,65.92741257,0,0.927419037,0,0,0,1,21,0% +2018-01-27 06:00:00,143.3742892,292.4807106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502353409,5.104751398,-0.54823301,0.54823301,1,0.623907056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603666668,127.1329573,0.603666668,52.86704274,0,0.967172833,0,0,0,1,22,0% +2018-01-27 07:00:00,153.4202649,312.0446161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.677688761,5.446205964,-0.234542132,0.234542132,1,0.570262756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768638819,140.2318128,0.768638819,39.76818716,0,0.984949942,0,0,0,1,23,0% +2018-01-28 08:00:00,159.7523387,344.8154714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788204298,6.018165288,0.030965761,-0.030965761,1,0.524858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891561204,153.0700874,0.891561204,26.92991265,0,0.993918601,0,0,0,1,0,0% +2018-01-28 09:00:00,158.6265497,25.55125817,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768555574,0.445953583,0.279383889,-0.279383889,1,0.482376231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964048174,164.5898131,0.964048174,15.41018693,0,0.998135372,0,0,0,1,1,0% +2018-01-28 10:00:00,150.9070413,54.19838199,0,0,0,0,0,0,0,0,0,0,0,0,0,2.633824735,0.945940215,0.535404512,-0.535404512,1,0.438594126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981148818,168.8572718,0.981148818,11.14272821,0,0.999039331,0,0,0,1,2,0% +2018-01-28 11:00:00,140.3469526,71.36417329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449516419,1.245539792,0.828597711,-0.828597711,1,0.388455136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941684611,160.336417,0.941684611,19.66358303,0,0.996903667,0,0,0,1,3,0% +2018-01-28 12:00:00,128.7969471,83.16564088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247930794,1.451514258,1.211190191,-1.211190191,1,0.323027968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848330286,148.0305239,0.848330286,31.9694761,0,0.991060692,0,0,0,1,4,0% +2018-01-28 13:00:00,116.9687558,92.6692389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041489912,1.617383334,1.813433301,-1.813433301,1,0.220038331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707432339,135.0263855,0.707432339,44.9736145,0,0.979321863,0,0,0,1,5,0% +2018-01-28 14:00:00,105.2201427,101.3367763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.836437929,1.768660399,3.139340577,-3.139340577,1,0,#DIV/0!,0,0,0.006660508,1,0.308376396,0,0.923052921,0.961814885,0.724496596,1,0,0,0.00113546,0.312029739,0.996785266,0.721281862,0.961238037,0.922476074,0,0,0,0,0,0,-0.528577433,121.909388,0.528577433,58.09061201,0,0.95540648,0,0,0,1,6,0% +2018-01-28 15:00:00,93.82077064,110.0254048,0,0,0,0,0,0,0,0,0,0,0,0,0,1.637481354,1.920305574,11.4662011,-11.4662011,1,0,#DIV/0!,0,0,0.588592862,1,0.086992731,0,0.952662146,0.991424109,0.724496596,1,0,0,0.078686793,0.312029739,0.801209238,0.525705834,0.961238037,0.922476074,0,0,0,0,0,0,-0.323940005,108.9013679,0.323940005,71.09863212,0,0.895650431,0,0,0,1,7,0% +2018-01-28 16:00:00,82.93600623,119.3880035,56.70095584,250.8805569,25.84820585,25.49622283,0,25.49622283,25.06878708,0.427435756,40.96526037,26.43803839,14.52722198,0.779418776,13.7478032,1.447506377,2.083713748,-5.252915445,5.252915445,0.571544864,0.571544864,0.455868962,0.327785205,10.54269895,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.09707168,0.56468625,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.237479265,10.13404325,24.33455094,10.6987295,0,26.43803839,-0.105380978,96.04911676,0.105380978,83.95088324,0,0.575531068,24.33455094,25.91464196,41.29516581,1,8,70% +2018-01-28 17:00:00,73.25980978,130.0300824,223.4681436,575.0782205,57.82703223,119.3289077,61.56097658,57.76793111,56.08333385,1.68459726,55.92613701,0,55.92613701,1.743698381,54.18243863,1.27862489,2.269453065,-1.660837438,1.660837438,0.814173619,0.814173619,0.258770809,1.452560937,46.71935288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90943373,1.263303541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.052375454,44.90841905,54.96180918,46.17172259,61.56097658,0,0.107048006,83.8548262,-0.107048006,96.1451738,0.582919836,0,90.84692356,46.17172259,121.0653926,1,9,33% +2018-01-28 18:00:00,65.07388212,142.5166584,373.1289429,709.7825642,73.99162118,289.5319059,214.9586015,74.57330439,71.76050081,2.812803582,92.70055252,0,92.70055252,2.231120379,90.46943215,1.1357535,2.487384927,-0.646446023,0.646446023,0.64070247,0.64070247,0.198300407,2.002579213,64.40983133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97892292,1.616439119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450861823,61.91317982,70.42978474,63.52961894,214.9586015,0,0.302851341,72.37105795,-0.302851341,107.628942,0.884902498,0,260.6471881,63.52961894,302.2260531,1,10,16% +2018-01-28 19:00:00,59.10692285,157.1799799,478.676693,770.7190484,82.96057663,444.7900576,360.7225813,84.06747626,80.45900915,3.608467106,118.5622736,0,118.5622736,2.501567477,116.0607062,1.031610414,2.743308167,-0.082227694,0.082227694,0.544215454,0.544215454,0.173312338,2.248827512,72.33002309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34026,1.812377122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629267877,69.5263694,78.96952788,71.33874652,360.7225813,0,0.468033821,62.09325687,-0.468033821,117.9067431,0.943170113,0,419.1922858,71.33874652,465.8820686,1,11,11% +2018-01-28 20:00:00,56.10908903,173.7010814,529.7381036,794.1898931,86.88714988,557.8105994,469.550028,88.26057132,84.26718173,3.993389587,131.0611045,0,131.0611045,2.619968148,128.4411363,0.979288344,3.031655784,0.352600443,-0.352600443,0.469855463,0.469855463,0.164019068,2.223556362,71.51721604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.00082034,1.898158005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610959015,68.74506834,82.61177935,70.64322635,469.550028,0,0.591231432,53.75555685,-0.591231432,126.2444432,0.965430748,0,535.9298141,70.64322635,582.1643929,1,12,9% +2018-01-28 21:00:00,56.56858703,190.8365055,522.0105115,790.8397022,86.30657435,612.7742687,525.1350202,87.63924843,83.7041127,3.935135734,129.1699538,0,129.1699538,2.602461654,126.5674921,0.987308097,3.330725354,0.776456959,-0.776456959,0.397371729,0.397371729,0.165334936,1.955790934,62.90495941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45957697,1.885474609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416963874,60.46663969,81.87654084,62.3521143,525.1350202,0,0.664022075,48.39265466,-0.664022075,131.6073453,0.974701299,0,593.726327,62.3521143,634.5345387,1,13,7% +2018-01-28 22:00:00,60.40458441,206.9597651,456.1287066,759.2583552,81.15204092,599.539354,517.3958557,82.14349832,78.70500747,3.43849086,113.0407192,0,113.0407192,2.447033453,110.5936858,1.054258881,3.61212932,1.286811692,-1.286811692,0.31009593,0.31009593,0.177914785,1.488316605,47.86937808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.65424687,1.772867407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078280314,46.01386701,76.73252718,47.78673442,517.3958557,0,0.681449012,47.04302205,-0.681449012,132.956978,0.976626939,0,582.0352579,47.78673442,613.3107198,1,14,5% +2018-01-28 23:00:00,67.02382608,221.0567688,337.7752197,684.3589184,70.6368733,510.661215,439.6080117,71.05320323,68.50691095,2.546292283,84.02747499,0,84.02747499,2.129962352,81.89751264,1.169786442,3.858168449,2.063991456,-2.063991456,0.177190363,0.177190363,0.209123906,0.889316841,28.60348661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.85144859,1.543150474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.644307024,27.49475932,66.49575562,29.03790979,439.6080117,0,0.642364701,50.03162387,-0.642364701,129.9683761,0.972162597,0,493.866222,29.03790979,512.8709532,1,15,4% +2018-01-28 00:00:00,75.66465903,233.023704,179.6459257,516.8193733,51.68316968,335.5209536,284.0419753,51.4789783,50.12473143,1.354246871,45.11567282,0,45.11567282,1.558438256,43.55723456,1.320597427,4.06703087,3.742560799,-3.742560799,0,0,0.287694639,0.389609564,12.53118286,0.098987001,1,0.261097197,0,0.930269723,0.969031686,0.724496596,1,48.38012792,1.129083212,0.016174064,0.312029739,0.955157187,0.679653782,0.961238037,0.922476074,0.275424756,12.04544961,48.65555267,13.17453282,255.9255121,0,0.549596223,56.66068344,-0.549596223,123.3393166,0.95902412,0,294.0942917,13.17453282,302.7167599,1,16,3% +2018-01-28 01:00:00,85.59890273,243.2872805,22.29144937,120.1306783,13.07284664,62.19447202,49.34777757,12.84669444,12.67865208,0.168042361,5.799014541,0,5.799014541,0.39419456,5.404819981,1.493982689,4.246164073,12.90383694,-12.90383694,0,0,0.586451173,0.09854864,3.16966302,0.626382253,1,0.077341747,0,0.953702005,0.992463968,0.724496596,1,12.27527014,0.285592617,0.082572689,0.312029739,0.792664414,0.51716101,0.961238037,0.922476074,0.067972097,3.046800659,12.34324224,3.332393276,18.43720546,0,0.410784142,65.74589713,-0.410784142,114.2541029,0.928281572,0,29.4581603,3.332393276,31.63914505,1,17,7% +2018-01-28 02:00:00,96.73681131,252.4334444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688375865,4.405794748,-8.458017615,8.458017615,1,0.023440112,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.229118145,76.7548412,-0.229118145,103.2451588,0.831771976,0,0,0,0,1,18,0% +2018-01-28 03:00:00,108.2477496,261.0758399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889279639,4.556633003,-2.976502639,2.976502639,1,0.960834381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024527587,88.59453184,-0.024527587,91.40546816,0,0,0,0,0,1,19,0% +2018-01-28 04:00:00,120.0349926,269.9032745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095005839,4.710700801,-1.626298515,1.626298515,1,0.808267115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.191935669,101.0657692,0.191935669,78.93423076,0,0.78949605,0,0,0,1,20,0% +2018-01-28 05:00:00,131.8158569,279.8841814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300620709,4.884900489,-0.969185189,0.969185189,1,0.695894118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.405518356,113.9236141,0.405518356,66.0763859,0,0.926701019,0,0,0,1,21,0% +2018-01-28 06:00:00,143.1704266,292.77548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498795336,5.109896094,-0.549708668,0.549708668,1,0.624159408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601662214,126.9890379,0.601662214,53.01096208,0,0.966896892,0,0,0,1,22,0% +2018-01-28 07:00:00,153.1839445,312.3339056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673564192,5.451255018,-0.234707244,0.234707244,1,0.570290992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766995719,140.0848682,0.766995719,39.91513177,0,0.984810588,0,0,0,1,23,0% +2018-01-29 08:00:00,159.4829138,344.8616066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783501947,6.018970498,0.03171526,-0.03171526,1,0.524730061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890244959,152.9040445,0.890244959,27.09595549,0,0.993835683,0,0,0,1,0,0% +2018-01-29 09:00:00,158.3924819,25.18332312,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764470319,0.439531905,0.280965391,-0.280965391,1,0.482105778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963001699,164.3657622,0.963001699,15.63423776,0,0.998079012,0,0,0,1,1,0% +2018-01-29 10:00:00,150.7378603,53.76595756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630871969,0.938392985,0.537964641,-0.537964641,1,0.438156318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980296383,168.6073096,0.980296383,11.39269036,0,0.998995017,0,0,0,1,2,0% +2018-01-29 11:00:00,140.2151062,70.99454764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447215264,1.239088607,0.832596567,-0.832596567,1,0.387771291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940937074,160.209526,0.940937074,19.79047404,0,0.996861484,0,0,0,1,3,0% +2018-01-29 12:00:00,128.6803389,82.85243261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245895597,1.446047742,1.217787944,-1.217787944,1,0.321899686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847591236,147.9506375,0.847591236,32.04936253,0,0.9910093,0,0,0,1,4,0% +2018-01-29 13:00:00,116.8542222,92.39391616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039490923,1.612578046,1.826074066,-1.826074066,1,0.217876633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706604731,134.9593341,0.706604731,45.04066593,0,0.979239081,0,0,0,1,5,0% +2018-01-29 14:00:00,105.0989093,101.085539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834322008,1.764275481,3.174190209,-3.174190209,1,0,#DIV/0!,0,0,0.012506414,1,0.305198107,0,0.923552545,0.962314508,0.724496596,1,0,0,0.002126226,0.312029739,0.993988403,0.718484999,0.961238037,0.922476074,0,0,0,0,0,0,-0.527570272,121.8414344,0.527570272,58.15856558,0,0.955225896,0,0,0,1,6,0% +2018-01-29 15:00:00,93.68589123,109.789488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635127265,1.91618805,11.92801912,-11.92801912,1,0,#DIV/0!,0,0,0.601539288,1,0.083640627,0,0.953025795,0.991787758,0.724496596,1,0,0,0.080030469,0.312029739,0.798240933,0.522737529,0.961238037,0.922476074,0,0,0,0,0,0,-0.322674598,108.8247506,0.322674598,71.17524939,0,0.895045131,0,0,0,1,7,0% +2018-01-29 16:00:00,82.78346332,119.1632668,58.98519752,258.3757406,26.52814755,26.17288136,0,26.17288136,25.72822602,0.444655334,41.92963053,26.82806496,15.10156557,0.799921527,14.30164404,1.444844001,2.079791354,-5.164210131,5.164210131,0.586714366,0.586714366,0.449742455,0.343534691,11.04925657,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.73094947,0.579540423,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.248889714,10.62096569,24.97983919,11.20050612,0,26.82806496,-0.103833529,95.95996535,0.103833529,84.04003465,0,0.568459977,24.97983919,26.45118729,42.29161225,1,8,69% +2018-01-29 17:00:00,73.07981377,129.8180392,226.81719,579.3033232,58.21716991,121.304666,63.13311483,58.17155122,56.46170744,1.709843786,56.74991618,0,56.74991618,1.755462471,54.99445371,1.275483367,2.265752213,-1.652644341,1.652644341,0.812772517,0.812772517,0.256670008,1.471881742,47.3407764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.27314082,1.271826585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066373312,45.50575497,55.33951413,46.77758155,63.13311483,0,0.108981102,83.74341607,-0.108981102,96.25658393,0.591204862,0,92.66411853,46.77758155,123.2791101,1,9,33% +2018-01-29 18:00:00,64.86345359,142.327099,376.9814951,712.59139,74.289092,292.3462976,217.45545,74.89084753,72.04900178,2.841845748,93.64361825,0,93.64361825,2.240090221,91.40352803,1.132080829,2.484076493,-0.64700448,0.64700448,0.640797972,0.640797972,0.197062967,2.02221023,65.0412323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.25624103,1.62293774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465084428,62.52010645,70.72132545,64.14304419,217.45545,0,0.30516149,72.23212023,-0.30516149,107.7678798,0.886152327,0,263.4199785,64.14304419,305.4003181,1,10,16% +2018-01-29 19:00:00,58.8659873,157.0330276,482.8959957,772.9818364,83.2322714,448.2107511,363.8479658,84.36278532,80.72251133,3.640273992,119.593485,0,119.593485,2.509760077,117.0837249,1.027405296,2.740743366,-0.085688974,0.085688974,0.544807367,0.544807367,0.172360658,2.268854163,72.97414903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.59354832,1.818312632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643777118,70.14552776,79.23732544,71.96384039,363.8479658,0,0.470707006,61.91980039,-0.470707006,118.0801996,0.943776809,0,422.6285977,71.96384039,469.727492,1,11,11% +2018-01-29 20:00:00,55.84506646,173.6218087,534.2236039,796.2933281,87.1585249,561.7397154,473.1821384,88.55757697,84.53037379,4.027203183,132.1568489,0,132.1568489,2.628151106,129.5286978,0.974680281,3.030272215,0.347132478,-0.347132478,0.47079054,0.47079054,0.163149895,2.243679767,72.16445391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25381056,1.90408653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.625538353,69.367218,82.87934891,71.27130453,473.1821384,0,0.594230947,53.54217255,-0.594230947,126.4578275,0.96585763,0,539.9059279,71.27130453,586.5515713,1,12,9% +2018-01-29 21:00:00,56.29633317,190.838225,526.6557469,793.0522943,86.59287668,617.1472614,529.195326,87.95193543,83.98178195,3.97015348,130.304878,0,130.304878,2.611094726,127.6937832,0.982556371,3.330755365,0.768528423,-0.768528423,0.398727589,0.398727589,0.164420264,1.97550453,63.53901644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.72648322,1.89172924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431246307,61.07611943,82.15772952,62.96784867,529.195326,0,0.66728932,48.14180364,-0.66728932,131.8581964,0.975069983,0,598.1602071,62.96784867,639.3714047,1,13,7% +2018-01-29 22:00:00,60.13970065,207.0329818,460.8121888,761.9010224,81.47161926,604.3200892,521.8313429,82.48874627,79.01494934,3.473796927,114.1859202,0,114.1859202,2.456669919,111.7292503,1.049635788,3.613407192,1.2745885,-1.2745885,0.312186219,0.312186219,0.176800053,1.506904384,48.46722495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95217478,1.779848993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.091747097,46.58854016,77.04392188,48.36838916,521.8313429,0,0.684906999,46.7717064,-0.684906999,133.2282936,0.976997388,0,586.8717809,48.36838916,618.5279242,1,14,5% +2018-01-29 23:00:00,66.77586806,221.179589,342.3449482,688.0428519,71.02970003,515.8910333,444.4223999,71.46863333,68.8878925,2.580740826,85.14730374,0,85.14730374,2.141807528,83.00549622,1.165458759,3.860312067,2.041800652,-2.041800652,0.180985214,0.180985214,0.207479913,0.905618939,29.12781811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.21766255,1.551732263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.656117838,27.9987667,66.87378039,29.55049896,444.4223999,0,0.645922559,49.7651189,-0.645922559,130.2348811,0.97259134,0,499.1151577,29.55049896,518.4553683,1,15,4% +2018-01-29 00:00:00,75.43658462,233.1772326,183.8223154,523.1610594,52.27273287,341.4695325,289.3872852,52.08224737,50.69651711,1.38573026,46.14606434,0,46.14606434,1.576215762,44.56984858,1.316616778,4.06971045,3.684407819,-3.684407819,0,0,0.284365545,0.39405394,12.67412928,0.090840619,1,0.265029323,0,0.929687301,0.968449264,0.724496596,1,48.91849408,1.141962954,0.014897662,0.312029739,0.958621678,0.683118274,0.961238037,0.922476074,0.279047396,12.18285514,49.19754148,13.3248181,263.099165,0,0.553151424,56.41651636,-0.553151424,123.5834836,0.959608838,0,301.6698255,13.3248181,310.3906524,1,16,3% +2018-01-29 01:00:00,85.39370473,243.460998,24.54304733,130.3212763,14.07714851,67.81192254,53.97423614,13.83768641,13.65267055,0.185015858,6.375223941,0,6.375223941,0.424477967,5.950745974,1.490401308,4.249196015,12.33102772,-12.33102772,0,0,0.573569709,0.106119492,3.413167637,0.61218909,1,0.08091916,0,0.953319096,0.992081059,0.724496596,1,13.22058275,0.307532842,0.081126053,0.312029739,0.795831364,0.52032796,0.961238037,0.922476074,0.073115071,3.280866559,13.29369782,3.588399401,20.93179763,0,0.414162888,65.5333894,-0.414162888,114.4666106,0.929274552,0,32.74508469,3.588399401,35.09362033,1,17,7% +2018-01-29 02:00:00,96.53941116,252.6240278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684930583,4.409121055,-8.714386598,8.714386598,1,0,#DIV/0!,0,0,1,0.019993664,0,0.114253017,0.961238037,1,0.452015149,0.727518553,0,0,0.115824807,0.003451528,0.724496596,0.448993192,0.999694259,0.960932296,0,0,0,0,0,0,0.232420171,76.56040071,-0.232420171,103.4395993,0.834872372,0,0,0,0,1,18,0% +2018-01-29 03:00:00,108.0596371,261.2850618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885996457,4.560284615,-3.007523517,3.007523517,1,0.955529498,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.027572311,88.4200227,-0.027572311,91.5799773,0,0,0,0,0,1,19,0% +2018-01-29 04:00:00,119.8503249,270.1367095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091782779,4.714775012,-1.636032438,1.636032438,1,0.809931714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189207641,100.9065466,0.189207641,79.09345336,0,0.785740059,0,0,0,1,20,0% +2018-01-29 05:00:00,131.6266969,280.1499328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297319245,4.889538727,-0.973037277,0.973037277,1,0.696552864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403144436,113.7749001,0.403144436,66.22509992,0,0.925974972,0,0,0,1,21,0% +2018-01-29 06:00:00,142.9647946,293.0775738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49520638,5.115168626,-0.551122225,0.551122225,1,0.624401141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599655278,126.8452127,0.599655278,53.15478729,0,0.966618761,0,0,0,1,22,0% +2018-01-29 07:00:00,152.9447457,312.6311165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669389386,5.456442328,-0.234796505,0.234796505,1,0.570306257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765343249,139.9375386,0.765343249,40.06246137,0,0.984669836,0,0,0,1,23,0% +2018-01-30 08:00:00,159.2089649,344.9184764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778720637,6.019963064,0.032553542,-0.032553542,1,0.524586706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888909928,152.7365869,0.888909928,27.26341306,0,0.993751331,0,0,0,1,0,0% +2018-01-30 09:00:00,158.1515487,24.82587067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760265242,0.433293183,0.282653431,-0.282653431,1,0.481817106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96192514,164.1384916,0.96192514,15.86150844,0,0.998020903,0,0,0,1,1,0% +2018-01-30 10:00:00,150.5612474,53.33569062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627789492,0.93088341,0.540660002,-0.540660002,1,0.437695384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979401469,168.3505863,0.979401469,11.64941371,0,0.998948412,0,0,0,1,2,0% +2018-01-30 11:00:00,140.0763282,70.6235687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444793131,1.232613803,0.836782455,-0.836782455,1,0.387055462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940134419,160.0741427,0.940134419,19.92585733,0,0.996816116,0,0,0,1,3,0% +2018-01-30 12:00:00,128.5572933,82.53697668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243748045,1.440541998,1.224680754,-1.224680754,1,0.320720946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846785056,147.8636972,0.846785056,32.13630277,0,0.990953138,0,0,0,1,4,0% +2018-01-30 13:00:00,116.7335833,92.1162216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037385376,1.607731361,1.839298727,-1.839298727,1,0.215615082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70569944,134.8860785,0.70569944,45.11392153,0,0.979148307,0,0,0,1,5,0% +2018-01-30 14:00:00,104.9717649,100.8320286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832102919,1.759850891,3.210941756,-3.210941756,1,0,#DIV/0!,0,0,0.018597277,1,0.301914426,0,0.924066566,0.962828529,0.724496596,1,0,0,0.003152763,0.312029739,0.991098632,0.715595228,0.961238037,0.922476074,0,0,0,0,0,0,-0.526477059,121.7677314,0.526477059,58.23226857,0,0.9550291,0,0,0,1,6,0% +2018-01-30 15:00:00,93.54519084,109.5514812,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632671579,1.912034048,12.44550052,-12.44550052,1,0,#DIV/0!,0,0,0.615111085,1,0.080178072,0,0.953398665,0.992160628,0.724496596,1,0,0,0.081425129,0.312029739,0.795175261,0.519671857,0.961238037,0.922476074,0,0,0,0,0,0,-0.321317532,108.7426224,0.321317532,71.25737764,0,0.894390688,0,0,0,1,7,0% +2018-01-30 16:00:00,82.62511545,118.9367064,61.38112005,266.0854434,27.22615632,26.86790406,0,26.86790406,26.40518725,0.46271681,42.89535009,27.19181782,15.70353227,0.820969067,14.8825632,1.442080309,2.075837129,-5.075208088,5.075208088,0.601934612,0.601934612,0.443559132,0.360225106,11.58607768,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38167035,0.594789294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.260981863,11.13697856,25.64265222,11.73176786,0,27.19181782,-0.102192053,95.86541269,0.102192053,84.13458731,0,0.560725165,25.64265222,26.9789044,43.29980557,1,8,69% +2018-01-30 17:00:00,72.89397406,129.6046038,230.2754553,583.5960369,58.61602284,123.3678789,64.7834318,58.58444713,56.84853348,1.735913651,57.60043954,0,57.60043954,1.767489359,55.83295018,1.272239852,2.262027062,-1.644047912,1.644047912,0.811302441,0.811302441,0.254547419,1.491731214,47.97920364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64497272,1.280540024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080754187,46.11943552,55.72572691,47.39997554,64.7834318,0,0.11100732,83.62661362,-0.11100732,96.37338638,0.599579251,0,94.56852846,47.39997554,125.5908644,1,9,33% +2018-01-30 18:00:00,64.64713258,142.1369194,380.9359607,715.4337899,74.59301559,295.2547232,220.0393061,75.21541713,72.34376095,2.87165618,94.61158864,0,94.61158864,2.249254639,92.362334,1.128305315,2.480757233,-0.64737392,0.64737392,0.64086115,0.64086115,0.195815106,2.042281563,65.68679536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.53957475,1.629577329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.47962604,63.14064622,71.01920079,64.77022355,220.0393061,0,0.307560684,72.08771266,-0.307560684,107.9122873,0.887430457,0,266.2887827,64.77022355,308.6795986,1,10,16% +2018-01-30 19:00:00,58.61921882,156.8868067,487.2067176,775.2632745,83.50907114,451.7215562,367.0578216,84.66373457,80.99096453,3.672770034,120.647016,0,120.647016,2.518106611,118.1289094,1.023098373,2.73819133,-0.089039147,0.089039147,0.54538028,0.54538028,0.171403776,2.289251581,73.63020011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85159575,1.824359667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658554978,70.77614901,79.51015073,72.60050868,367.0578216,0,0.473462156,61.74073168,-0.473462156,118.2592683,0.944394939,0,426.1576997,72.60050868,473.6732806,1,11,11% +2018-01-30 20:00:00,55.57556477,173.5452417,538.7881543,798.4065541,87.43388524,565.7495501,476.8905064,88.8590437,84.79743101,4.061612692,133.2718801,0,133.2718801,2.636454237,130.6354259,0.969976589,3.028935868,0.341746847,-0.341746847,0.471711537,0.471711537,0.162278782,2.264111654,72.82161363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51051611,1.91010212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640341186,69.99890492,83.1508573,71.90900704,476.8905064,0,0.597302845,53.3230286,-0.597302845,126.6769714,0.96629037,0,543.9655613,71.90900704,591.0285682,1,12,9% +2018-01-30 21:00:00,56.01937667,190.8446895,531.3669098,795.2673423,86.88204971,621.5881257,533.3202222,88.26790357,84.26223535,4.005668216,131.4558736,0,131.4558736,2.619814359,128.8360592,0.977722568,3.330868192,0.760682593,-0.760682593,0.400069305,0.400069305,0.1635067,1.995471661,64.18122801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.99606569,1.898046585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445712426,61.69343761,82.44177812,63.5914842,533.3202222,0,0.670617532,47.8852559,-0.670617532,132.1147441,0.975441854,0,602.6646443,63.5914842,644.2839989,1,13,7% +2018-01-30 22:00:00,59.8711788,207.1122469,465.5489094,764.5369172,81.79276418,609.1534482,526.3175333,82.83591489,79.32641056,3.509504328,115.3440767,0,115.3440767,2.466353623,112.877723,1.044949197,3.614790629,1.262489688,-1.262489688,0.314255238,0.314255238,0.175691023,1.525702386,49.07183331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25156315,1.786864804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105366185,47.16971272,77.35692934,48.95657752,526.3175333,0,0.688413498,46.4953457,-0.688413498,133.5046543,0.977369234,0,591.7634934,48.95657752,623.8045943,1,14,5% +2018-01-30 23:00:00,66.52532499,221.3088643,346.9573344,691.7022983,71.4220917,521.1558913,449.2719283,71.88396306,69.26845212,2.615510942,86.27746224,0,86.27746224,2.153639584,84.12382265,1.161085957,3.862568346,2.019909968,-2.019909968,0.184728741,0.184728741,0.205852664,0.922110158,29.6582324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58347093,1.560304548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.66806567,28.50862109,67.2515366,30.06892564,449.2719283,0,0.649516316,49.49485593,-0.649516316,130.5051441,0.97301964,0,504.4019464,30.06892564,524.0814568,1,15,4% +2018-01-30 00:00:00,75.20675738,233.3371123,188.0382748,529.4332334,52.85717112,347.4326336,294.7517893,52.68084433,51.26333239,1.417511943,47.18589548,0,47.18589548,1.593838731,45.59205675,1.312605536,4.072500876,3.627648654,-3.627648654,0,0,0.281097937,0.398459683,12.8158331,0.082746171,1,0.268980312,0,0.929098803,0.967860766,0.724496596,1,49.45134594,1.154730735,0.013620034,0.312029739,0.96210228,0.686598876,0.961238037,0.922476074,0.282665597,12.31906625,49.73401153,13.47379698,270.3622073,0,0.556730803,56.16998885,-0.556730803,123.8300111,0.960189988,0,309.3330962,13.47379698,318.1514268,1,16,3% +2018-01-30 01:00:00,85.18702256,243.6408313,26.89730479,140.7090662,15.0913152,73.59359415,58.75457454,14.83901961,14.63625637,0.202763245,6.976621786,0,6.976621786,0.455058834,6.521562951,1.486794024,4.252334699,11.80334717,-11.80334717,0,0,0.561071651,0.113764709,3.659064092,0.598125263,1,0.084519895,0,0.952930663,0.991692626,0.724496596,1,14.17533309,0.329688576,0.079677403,0.312029739,0.799019491,0.523516087,0.961238037,0.922476074,0.078304435,3.517231584,14.25363752,3.846920161,23.61197917,0,0.417560688,65.31932093,-0.417560688,114.6806791,0.930256927,0,36.2188447,3.846920161,38.73657701,1,17,7% +2018-01-30 02:00:00,96.34122248,252.820564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681471538,4.412551258,-8.987623738,8.987623738,1,0,#DIV/0!,0,0,1,0.062905179,0,0.110808356,0.961238037,1,0.458707584,0.734210988,0,0,0.115824807,0.011084592,0.724496596,0.448993192,0.999007883,0.96024592,0,0,0,0,0,0,0.235727278,76.36550282,-0.235727278,103.6344972,0.837890479,0,0,0,0,1,18,0% +2018-01-30 03:00:00,107.8708704,261.500234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882701856,4.564040078,-3.039184815,3.039184815,1,0.950115097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030616638,88.24552171,-0.030616638,91.75447829,0,0,0,0,0,1,19,0% +2018-01-30 04:00:00,119.6649179,270.3762922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088546817,4.718956518,-1.645823711,1.645823711,1,0.81160612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.186482328,100.7475676,0.186482328,79.2524324,0,0.781878078,0,0,0,1,20,0% +2018-01-30 05:00:00,131.4364552,280.4222348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293998901,4.894291293,-0.976853243,0.976853243,1,0.697205433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.400772228,113.626463,0.400772228,66.37353695,0,0.925240856,0,0,0,1,21,0% +2018-01-30 06:00:00,142.7573999,293.3867323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49158666,5.12056446,-0.552473072,0.552473072,1,0.624632149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597645806,126.7014763,0.597645806,53.29852369,0,0.966338407,0,0,0,1,22,0% +2018-01-30 07:00:00,152.7026914,312.9358478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665164742,5.461760891,-0.234809673,0.234809673,1,0.570308509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763681042,139.789794,0.763681042,40.21020598,0,0.98452764,0,0,0,1,23,0% +2018-01-31 08:00:00,158.9305852,344.9855893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773861994,6.021134405,0.033480632,-0.033480632,1,0.524428164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887555506,152.5676621,0.887555506,27.4323379,0,0.993665495,0,0,0,1,0,0% +2018-01-31 09:00:00,157.9038938,24.4789671,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755942848,0.427238573,0.284447937,-0.284447937,1,0.481510228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960817749,163.907976,0.960817749,16.092024,0,0.997960995,0,0,0,1,1,0% +2018-01-31 10:00:00,150.377283,52.90795863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624578709,0.923418079,0.543490587,-0.543490587,1,0.437211325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978463287,168.087309,0.978463287,11.912691,0,0.998899462,0,0,0,1,2,0% +2018-01-31 11:00:00,139.9306643,70.25152497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442250817,1.226120415,0.841155802,-0.841155802,1,0.386307576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93927592,159.9303101,0.93927592,20.06968991,0,0.996767506,0,0,0,1,3,0% +2018-01-31 12:00:00,128.4278503,82.21947444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241488839,1.435000538,1.231870706,-1.231870706,1,0.319491392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845911185,147.7696936,0.845911185,32.23030641,0,0.99089214,0,0,0,1,4,0% +2018-01-31 13:00:00,116.6068847,91.83630222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035174069,1.602845847,1.853116898,-1.853116898,1,0.213252036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704716157,134.8066173,0.704716157,45.19338267,0,0.979049448,0,0,0,1,5,0% +2018-01-31 14:00:00,104.8387648,100.5763569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82978163,1.755388578,3.249668547,-3.249668547,1,0,#DIV/0!,0,0,0.024934722,1,0.2985276,0,0.924594417,0.96335638,0.724496596,1,0,0,0.004214686,0.312029739,0.988117895,0.712614491,0.961238037,0.922476074,0,0,0,0,0,0,-0.525297808,121.6882937,0.525297808,58.31170628,0,0.954815898,0,0,0,1,6,0% +2018-01-31 15:00:00,93.39873612,109.31147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.630115462,1.907845062,13.02793227,-13.02793227,1,0,#DIV/0!,0,0,0.629321272,1,0.076607934,0,0.953780177,0.992542141,0.724496596,1,0,0,0.082870344,0.312029739,0.792014868,0.516511464,0.961238037,0.922476074,0,0,0,0,0,0,-0.319869196,108.6550146,0.319869196,71.34498538,0,0.893686105,0,0,0,1,7,0% +2018-01-31 16:00:00,82.46103476,118.7083855,63.88933283,273.9959466,27.94095074,27.58005276,0,27.58005276,27.09842798,0.481624778,43.85810933,27.52487815,16.33323119,0.842522756,15.49070843,1.439216561,2.071852177,-4.986169543,4.986169543,0.6171611,0.6171611,0.437333581,0.377877699,12.15384574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.04803971,0.610404869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.273771106,11.68273882,26.32181082,12.29314369,0,27.52487815,-0.100457246,95.76550132,0.100457246,84.23449868,0,0.552275823,26.32181082,27.49446841,44.31639051,1,8,68% +2018-01-31 17:00:00,72.70237706,129.389818,233.8413255,587.9500321,59.02304797,125.5182177,66.51213775,59.00607999,57.2432853,1.762794686,58.47729935,0,58.47729935,1.779762668,56.69753668,1.268895854,2.258278343,-1.635073821,1.635073821,0.809767781,0.809767781,0.252406404,1.512096392,48.63421776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02442319,1.289431995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095508689,46.74906,56.11993188,48.038492,66.51213775,0,0.113125494,83.50448181,-0.113125494,96.49551819,0.608012979,0,96.56017491,48.038492,128.0004072,1,9,33% +2018-01-31 18:00:00,64.4250128,141.9461421,384.9901558,718.3063355,74.90305185,298.2556724,222.7090055,75.54666689,72.64444847,2.902218415,95.60392391,0,95.60392391,2.258603376,93.34532053,1.124428594,2.47742754,-0.647559164,0.647559164,0.640892829,0.640892829,0.194558356,2.062781137,66.34613212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82860704,1.636350457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.494477912,63.77442579,71.32308495,65.41077625,222.7090055,0,0.310047391,71.93791347,-0.310047391,108.0620865,0.888734331,0,269.2522239,65.41077625,312.0622688,1,10,16% +2018-01-31 19:00:00,58.36671453,156.7413299,491.606391,777.5610234,83.7907028,455.3203582,370.3503176,84.97004059,81.26410396,3.705936631,121.72226,0,121.72226,2.526598844,119.1956611,1.018691342,2.735652281,-0.092278221,0.092278221,0.545934195,0.545934195,0.170442664,2.310008065,74.29779998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.11414776,1.830512262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67359298,71.41787139,79.78774074,73.24838365,370.3503176,0,0.476297431,61.55614073,-0.476297431,118.4438593,0.945023578,0,429.7775231,73.24838365,477.7171252,1,11,11% +2018-01-31 20:00:00,55.30068366,173.4713992,543.4291582,800.5276967,87.71298563,569.8376125,480.6728985,89.16471403,85.06811549,4.09659854,134.4055611,0,134.4055611,2.644870143,131.760691,0.965179008,3.027647074,0.33644547,-0.33644547,0.472618126,0.472618126,0.161406476,2.284840867,73.48833637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.77070833,1.916199415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65535943,70.63978418,83.42606776,72.55598359,480.6728985,0,0.600445057,53.09822084,-0.600445057,126.9017792,0.966728434,0,548.1062264,72.55598359,595.5926665,1,12,9% +2018-01-31 21:00:00,55.73782212,190.8559259,536.1414058,797.4831502,87.17386202,626.0941463,537.5072375,88.58690883,84.54524844,4.041660384,132.6223046,0,132.6223046,2.628613577,129.9936911,0.972808514,3.331064304,0.75292266,-0.75292266,0.401396332,0.401396332,0.162594907,2.015682084,64.83126468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.26810864,1.904421589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460354808,62.31827759,82.72846344,64.22269918,537.5072375,0,0.674004507,47.62310791,-0.674004507,132.3768921,0.97581652,0,607.2369053,64.22269918,649.2693774,1,13,7% +2018-01-31 22:00:00,59.59912678,207.1975747,470.3363965,767.1643414,82.11525259,614.036618,530.8518488,83.18476918,79.63917475,3.545594428,116.5145825,0,116.5145825,2.476077838,114.0385047,1.040200994,3.616279881,1.250519588,-1.250519588,0.316302245,0.316302245,0.174588344,1.544701693,49.68291633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55220399,1.793909965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.119131118,47.75710895,77.67133511,49.55101892,530.8518488,0,0.691966271,46.21404147,-0.691966271,133.7859585,0.977742143,0,596.7075593,49.55101892,629.1377101,1,14,5% +2018-01-31 23:00:00,66.27230057,221.4445797,351.6101279,695.3354064,71.81383333,526.4529812,454.1540143,72.29896695,69.64838129,2.650585665,87.41739835,0,87.41739835,2.16545204,85.25194631,1.156669848,3.864937026,1.998323476,-1.998323476,0.188420249,0.188420249,0.204242789,0.938783267,30.19449693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.9486733,1.568862631,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680145281,29.02409895,67.62881858,30.59296158,454.1540143,0,0.653143807,49.22094705,-0.653143807,130.779053,0.97344718,0,509.7237632,30.59296158,529.7462447,1,15,4% +2018-01-31 00:00:00,74.97526956,233.5032985,192.2917321,535.6334684,53.43628571,353.4073282,300.1327674,53.27456084,51.82498454,1.449576301,48.23465789,0,48.23465789,1.611301173,46.62335672,1.308565311,4.075401373,3.572256728,-3.572256728,0,0,0.277891749,0.402825293,12.95624613,0.07470652,1,0.272948509,0,0.928504441,0.967266404,0.724496596,1,49.97849314,1.167382215,0.012341717,0.312029739,0.965597547,0.690094142,0.961238037,0.922476074,0.286278285,12.4540366,50.26477142,13.62141881,277.7108927,0,0.560332364,55.92121398,-0.560332364,124.078786,0.960767246,0,317.080301,13.62141881,325.9952472,1,16,3% +2018-01-31 01:00:00,84.97895572,243.8267124,29.35054478,151.2582967,16.11217193,79.52361222,63.67602492,15.84758731,15.6263305,0.221256804,7.602220823,0,7.602220823,0.485841431,7.116379392,1.483162572,4.255578935,11.31590061,-11.31590061,0,0,0.548956486,0.121460358,3.906582626,0.584196003,1,0.088142253,0,0.952536837,0.9912988,0.724496596,1,15.13651093,0.351990463,0.078227471,0.312029739,0.802227232,0.526723828,0.961238037,0.922476074,0.083524865,3.755155814,15.22003579,4.107146277,26.4767457,0,0.42097542,65.10381487,-0.42097542,114.8961851,0.93122822,0,39.87592855,4.107146277,42.56397365,1,17,7% +2018-01-31 02:00:00,96.14230362,253.0229651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677999749,4.416083825,-9.279368127,9.279368127,1,0,#DIV/0!,0,0,1,0.104760159,0,0.107351661,0.961238037,1,0.465519499,0.741022903,0,0,0.115824807,0.018840262,0.724496596,0.448993192,0.998296086,0.959534123,0,0,0,0,0,0,0.239038064,76.17022691,-0.239038064,103.8297731,0.840828293,0,0,0,0,1,18,0% +2018-01-31 03:00:00,107.6814903,261.7212485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879396549,4.567897508,-3.071500201,3.071500201,1,0.944588841,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03365954,88.07108607,-0.03365954,91.92891393,0,0,0,0,0,1,19,0% +2018-01-31 04:00:00,119.4787959,270.6218878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085298375,4.723242971,-1.655671309,1.655671309,1,0.813290159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.183760358,100.5888671,0.183760358,79.41113287,0,0.777906494,0,0,0,1,20,0% +2018-01-31 05:00:00,131.2451417,280.7009093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290659851,4.89915508,-0.980632086,0.980632086,1,0.697851653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398401971,113.4783159,0.398401971,66.5216841,0,0.924498613,0,0,0,1,21,0% +2018-01-31 06:00:00,142.5482455,293.7026973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.487936226,5.126079089,-0.553760707,0.553760707,1,0.624852348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595633678,126.5578188,0.595633678,53.44218122,0,0.966055788,0,0,0,1,22,0% +2018-01-31 07:00:00,152.4578011,313.2477036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660890599,5.467203801,-0.23474658,0.23474658,1,0.570297719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762008681,139.6416002,0.762008681,40.35839978,0,0.98438395,0,0,0,1,23,0% +2018-02-01 08:00:00,158.6478637,345.0624562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768927573,6.022475986,0.0344965,-0.0344965,1,0.524254441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886181055,152.3972146,0.886181055,27.60278544,0,0.993578121,0,0,0,2,0,0% +2018-02-01 09:00:00,157.649661,24.14263751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.751505649,0.421368515,0.286348801,-0.286348801,1,0.481185161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.959678764,163.6741903,0.959678764,16.32580975,0,0.997899233,0,0,0,2,1,0% +2018-02-01 10:00:00,150.1860531,52.48311328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621241118,0.916003128,0.546456378,-0.546456378,1,0.436704145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97748105,167.817678,0.97748105,12.18232202,0,0.998848113,0,0,0,2,2,0% +2018-02-01 11:00:00,139.7781655,69.87869381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43958921,1.219613284,0.845717065,-0.845717065,1,0.385527554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938360872,159.7780834,0.938360872,20.22191657,0,0.996715596,0,0,0,2,3,0% +2018-02-01 12:00:00,128.2920548,81.90012069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23911876,1.429426764,1.239360031,-1.239360031,1,0.318210642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844969097,147.668625,0.844969097,32.33137498,0,0.990826238,0,0,0,2,4,0% +2018-02-01 13:00:00,116.4741764,91.55429998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.032857871,1.597923979,1.867538854,-1.867538854,1,0.210785736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703654621,134.7209552,0.703654621,45.27904483,0,0.978942412,0,0,0,2,5,0% +2018-02-01 14:00:00,104.6999681,100.318631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82735917,1.750890413,3.290450021,-3.290450021,1,0,#DIV/0!,0,0,0.031520524,1,0.295039894,0,0.925135526,0.963897489,0.724496596,1,0,0,0.005311613,0.312029739,0.985048147,0.709544743,0.961238037,0.922476074,0,0,0,0,0,0,-0.524032595,121.6031408,0.524032595,58.39685917,0,0.954586088,0,0,0,2,6,0% +2018-02-01 15:00:00,93.24659662,109.0695356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627460127,1.903622511,13.68687793,-13.68687793,1,0,#DIV/0!,0,0,0.644183865,1,0.072933089,0,0.954169754,0.992931717,0.724496596,1,0,0,0.084365696,0.312029739,0.788762425,0.513259021,0.961238037,0.922476074,0,0,0,0,0,0,-0.318330043,108.561963,0.318330043,71.43803701,0,0.892930314,0,0,0,2,7,0% +2018-02-01 16:00:00,82.29129608,118.4783628,66.51026786,282.0930354,28.67123163,28.30807071,0,28.30807071,27.80668821,0.501382493,44.81352724,27.82279935,16.99072789,0.864543419,16.12618447,1.436254062,2.067837524,-4.897331942,4.897331942,0.632353224,0.632353224,0.43107978,0.396512486,12.75320456,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.72884639,0.626358764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.287271946,12.25886531,27.01611833,12.88522408,0,27.82279935,-0.09862987,95.66027775,0.09862987,84.33972225,0,0.543054182,27.01611833,27.99451163,45.3379663,2,8,68% +2018-02-01 17:00:00,72.50511092,129.173719,237.5131252,592.3590757,59.43771066,127.7553,68.31938139,59.43591865,57.64544439,1.790474264,59.38007331,0,59.38007331,1.792266278,57.58780703,1.26545291,2.254506704,-1.62574757,1.62574757,0.808172898,0.808172898,0.250250215,1.532964086,49.30539454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.4109938,1.298490818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110627262,47.39422065,56.52162106,48.69271147,68.31938139,0,0.115334405,83.37708663,-0.115334405,96.62291337,0.616478016,0,98.63901774,48.69271147,130.5074235,2,9,32% +2018-02-01 18:00:00,64.1971889,141.7547847,389.1418598,721.2056717,75.21886556,301.3475925,225.4633375,75.88425495,72.95073924,2.933515714,96.62007557,0,96.62007557,2.268126325,94.35194925,1.120452317,2.474087723,-0.647565306,0.647565306,0.640893879,0.640893879,0.193294203,2.083696776,67.01885099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.12302537,1.643249801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.509631221,64.42106876,71.63265659,66.06431856,225.4633375,0,0.312620028,71.78280329,-0.312620028,108.2171967,0.890061431,0,272.3088774,66.06431856,315.5466526,2,10,16% +2018-02-01 19:00:00,58.10857163,156.5966056,496.0925304,779.8728081,84.07689772,459.0050147,373.7235906,85.28142409,81.54166904,3.739755044,122.8186062,0,122.8186062,2.535228677,120.2833775,1.014185899,2.733126365,-0.095406497,0.095406497,0.546469162,0.546469162,0.169478258,2.3311119,74.97657186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.38095387,1.836764546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.688882636,72.07033274,80.06983651,73.90709729,373.7235906,0,0.479210952,61.36611929,-0.479210952,118.6338807,0.945661817,0,433.4859663,73.90709729,481.8566833,2,11,11% +2018-02-01 20:00:00,55.02052215,173.4002967,548.1440191,802.6549473,87.99558579,574.0014024,484.527067,89.47433536,85.34219421,4.132141153,135.5572552,0,135.5572552,2.653391581,132.9038636,0.960289268,3.026406102,0.331229945,-0.331229945,0.473510033,0.473510033,0.160533697,2.305856305,74.1642651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.03416322,1.922373168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.670585044,71.28951259,83.70474826,73.21188576,484.527067,0,0.603655492,52.86784596,-0.603655492,127.132154,0.967171299,0,552.3254213,73.21188576,600.2411363,2,12,9% +2018-02-01 21:00:00,55.45177284,190.8719586,540.9766575,799.6980977,87.46808858,630.6626196,541.753906,88.90871354,84.83060299,4.078110553,133.8035394,0,133.8035394,2.637485594,131.1660538,0.967816012,3.331344128,0.745251413,-0.745251413,0.402708192,0.402708192,0.161685513,2.036125663,65.48880045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.54240228,1.910849334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475166111,62.95032598,83.01756839,64.86117531,541.753906,0,0.677448036,47.35545597,-0.677448036,132.644544,0.976193601,0,611.8742648,64.86117531,654.3246068,2,13,7% +2018-02-01 22:00:00,59.32365074,207.2889776,475.172209,769.7816958,82.43887005,618.9668223,535.4317395,83.53508277,79.95303395,3.582048825,117.6968395,0,117.6968395,2.485836099,115.2110034,1.03539303,3.617875162,1.238681943,-1.238681943,0.318326602,0.318326602,0.173492617,1.563893515,50.30019129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85389739,1.800979792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.133035528,48.35045713,77.98693292,50.15143692,535.4317395,0,0.695563096,45.92789432,-0.695563096,134.0721057,0.978115795,0,601.7011746,50.15143692,634.5242871,2,14,5% +2018-02-01 23:00:00,66.01689626,221.5867185,356.3011186,698.9404763,72.20472274,531.7795617,459.0661294,72.71343228,70.02748394,2.685948334,88.56657012,0,88.56657012,2.177238798,86.38933132,1.152212202,3.867417816,1.977044217,-1.977044217,0.192059216,0.192059216,0.202650845,0.955631137,30.73638234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.31308119,1.577402097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692351506,29.54497982,68.00543269,31.12238192,459.0661294,0,0.656802897,48.94350309,-0.656802897,131.0564969,0.973873661,0,515.0778448,31.12238192,535.4468213,2,15,4% +2018-02-01 00:00:00,74.74221063,233.675745,196.5806568,541.7596449,54.00990195,359.3908117,305.5275995,53.86321215,52.38130413,1.481908027,49.291854,0,49.291854,1.628597819,47.66325618,1.304497666,4.078411132,3.51820407,-3.51820407,0,0,0.274746777,0.407149455,13.09532603,0.066724217,1,0.276932343,0,0.927904419,0.966666382,0.724496596,1,50.49976876,1.179913576,0.011063214,0.312029739,0.969106112,0.693602708,0.961238037,0.922476074,0.28988449,12.58772549,50.78965325,13.76763906,285.1415097,0,0.563954149,55.67030297,-0.563954149,124.329697,0.96134031,0,324.9076806,13.76763906,333.918325,2,16,3% +2018-02-01 01:00:00,84.76959875,244.0185715,31.89897151,161.9350851,17.13680955,85.58660504,68.7260656,16.86053943,16.62007151,0.240467921,8.251012992,0,8.251012992,0.516738036,7.734274956,1.479508604,4.258927508,10.8644565,-10.8644565,0,0,0.537221382,0.129184509,4.155017878,0.570405731,1,0.091784645,0,0.952137743,0.990899707,0.724496596,1,16.10135344,0.374374948,0.076776933,0.312029739,0.805453118,0.529949714,0.961238037,0.922476074,0.088762474,3.993961228,16.19011591,4.368336176,29.52432392,0,0.424405036,64.88699007,-0.424405036,115.1130099,0.932188014,0,43.7123368,4.368336176,46.57132546,2,17,7% +2018-02-01 02:00:00,95.94270954,253.2311424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674516175,4.419717204,-9.591486005,9.591486005,1,0,#DIV/0!,0,0,1,0.145587162,0,0.103883812,0.961238037,1,0.472450048,0.747953452,0,0,0.115824807,0.026718594,0.724496596,0.448993192,0.99755822,0.958796257,0,0,0,0,0,0,0.242351184,75.97464918,-0.242351184,104.0253508,0.843687825,0,0,0,0,2,18,0% +2018-02-01 03:00:00,107.4915342,261.9479968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876081189,4.571855014,-3.10448446,3.10448446,1,0.9389482,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036700053,87.89676951,-0.036700053,92.10323049,0,0,0,0,0,2,19,0% +2018-02-01 04:00:00,119.2919798,270.873362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082037819,4.727632024,-1.665574413,1.665574413,1,0.814983689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1810423,100.4304767,0.1810423,79.56952331,0,0.773821449,0,0,0,2,20,0% +2018-02-01 05:00:00,131.0527633,280.9857789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.287302213,4.904126993,-0.984372921,0.984372921,1,0.698491373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.396033847,113.3304681,0.396033847,66.66953195,0,0.923748165,0,0,0,2,21,0% +2018-02-01 06:00:00,142.3373314,294.0252126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484255081,5.131708044,-0.554984699,0.554984699,1,0.625061663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593618729,126.414227,0.593618729,53.58577304,0,0.965770852,0,0,0,2,22,0% +2018-02-01 07:00:00,152.2100918,313.566295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656567257,5.472764271,-0.23460711,0.23460711,1,0.570273868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760325711,139.4929203,0.760325711,40.50707969,0,0.984238709,0,0,0,2,23,0% +2018-02-02 08:00:00,158.3608865,345.148595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.763918875,6.023979391,0.035601087,-0.035601087,1,0.524065545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884785915,152.2251875,0.884785915,27.77481255,0,0.993489155,0,0,0,2,0,0% +2018-02-02 09:00:00,157.3889941,23.81687197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746956154,0.415682833,0.288355904,-0.288355904,1,0.480841926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958507412,163.4371101,0.958507412,16.56288987,0,0.997835562,0,0,0,2,1,0% +2018-02-02 10:00:00,149.9876484,52.06148291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617778303,0.90864429,0.549557364,-0.549557364,1,0.436173845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976453977,167.5418867,0.976453977,12.45811333,0,0.99879431,0,0,0,2,2,0% +2018-02-02 11:00:00,139.6188876,69.50534298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436809286,1.213097083,0.850466751,-0.850466751,1,0.384715309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937388588,159.617529,0.937388588,20.38247096,0,0.996660328,0,0,0,2,3,0% +2018-02-02 12:00:00,128.1499556,81.57910501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236638661,1.423823983,1.247151133,-1.247151133,1,0.316878285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843958298,147.5604973,0.843958298,32.43950274,0,0.990755367,0,0,0,2,4,0% +2018-02-02 13:00:00,116.3355115,91.27035309,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030437712,1.592968171,1.88257558,-1.88257558,1,0.208214305,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702514614,134.6291017,0.702514614,45.37089834,0,0.978827103,0,0,0,2,5,0% +2018-02-02 14:00:00,104.5554366,100.0589549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824836619,1.746358209,3.333372273,-3.333372273,1,0,#DIV/0!,0,0,0.038356628,1,0.291453579,0,0.925689319,0.964451282,0.724496596,1,0,0,0.006443162,0.312029739,0.981891348,0.706387944,0.961238037,0.922476074,0,0,0,0,0,0,-0.522681539,121.5122964,0.522681539,58.48770364,0,0.954339457,0,0,0,2,6,0% +2018-02-02 15:00:00,93.08884432,108.8257563,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62470683,1.899367759,14.43691444,-14.43691444,1,0,#DIV/0!,0,0,0.659713952,1,0.069156418,0,0.954566816,0.993328779,0.724496596,1,0,0,0.085910775,0.312029739,0.785420619,0.509917214,0.961238037,0.922476074,0,0,0,0,0,0,-0.316700575,108.4635065,0.316700575,71.5364935,0,0.892122168,0,0,0,2,7,0% +2018-02-02 16:00:00,82.11597672,118.2466942,69.24417885,290.3621024,29.41569107,29.05069132,0,29.05069132,28.52869945,0.521991869,45.75717999,28.08113553,17.67604446,0.886991618,16.78905284,1.433194162,2.063794144,-4.808910132,4.808910132,0.647474244,0.647474244,0.424811032,0.416148138,13.38475463,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.42287105,0.642622408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.30149791,12.86593527,27.72436896,13.50855767,0,28.08113553,-0.096710746,95.54979179,0.096710746,84.45020821,0,0.532994372,27.72436896,28.47564486,46.36110901,2,8,67% +2018-02-02 17:00:00,72.30226534,128.9563408,241.2891197,596.8170474,59.85948588,130.0786918,70.20525102,59.87344083,58.05450152,1.818939305,60.30832498,0,60.30832498,1.804984357,58.50334063,1.261912587,2.250712739,-1.616094318,1.616094318,0.806522095,0.806522095,0.248081994,1.554320887,49.99230267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.80419507,1.307705022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.126100191,48.05450287,56.93029526,49.3622079,70.20525102,0,0.117632784,83.24449656,-0.117632784,96.75550344,0.624948427,0,100.8049565,49.3622079,133.1115343,2,9,32% +2018-02-02 18:00:00,63.96375661,141.5628619,393.3888139,724.1285202,75.54012646,304.5288913,228.3010473,76.22784398,73.26231293,2.965531047,97.65948594,0,97.65948594,2.277813526,95.38167242,1.116378155,2.470738038,-0.647397623,0.647397623,0.640865204,0.640865204,0.192024084,2.105016182,67.70455637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42252186,1.650268146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.525077058,65.08019485,71.94759891,66.730463,228.3010473,0,0.315276972,71.62246485,-0.315276972,108.3775352,0.891409286,0,275.4572725,66.730463,319.131026,2,10,16% +2018-02-02 19:00:00,57.84488789,156.452639,500.6626253,782.1964164,84.3673911,462.7733545,377.1757452,85.59760933,81.82340298,3.77420635,123.9354381,0,123.9354381,2.543988124,121.39145,1.009583749,2.730613673,-0.098424505,0.098424505,0.546985271,0.546985271,0.168511462,2.352551307,75.66613687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65176725,1.843110736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.704415413,72.73316886,80.35618266,74.5762796,377.1757452,0,0.48220081,61.17076073,-0.48220081,118.8292393,0.94630876,0,437.2808943,74.5762796,486.0895778,2,11,11% +2018-02-02 20:00:00,54.73517934,173.3319478,552.9301282,804.7865582,88.28144953,578.2384032,488.4507442,89.78765897,85.6194381,4.168220865,136.7263226,0,136.7263226,2.662011427,134.0643112,0.955309096,3.025213187,0.326101611,-0.326101611,0.47438703,0.47438703,0.159661131,2.327146849,74.84904217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.3006606,1.928618217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.68600997,71.94774636,83.98667057,73.87636458,488.4507442,0,0.606932036,52.63200175,-0.606932036,127.3679982,0.967618453,0,556.6206241,73.87636458,604.9712272,2,12,9% +2018-02-02 21:00:00,55.161332,190.8928114,545.8700861,801.9106322,87.76450934,635.290841,546.0577562,89.23308485,85.11808557,4.114999285,134.998946,0,134.998946,2.646423773,132.3525222,0.962746863,3.331708077,0.737671313,-0.737671313,0.404004465,0.404004465,0.160779115,2.056792274,66.15350972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.81874147,1.917325015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490139001,63.58926981,83.30888047,65.50659483,546.0577562,0,0.680945899,47.0823968,-0.680945899,132.9176032,0.976572728,0,616.5739929,65.50659483,659.446749,2,13,7% +2018-02-02 22:00:00,59.04485649,207.3864668,480.0539143,772.3874667,82.76340876,623.941301,540.0546652,83.8866358,80.26778662,3.618849182,118.8902515,0,118.8902515,2.495622138,116.3946294,1.030527152,3.619576669,1.226980023,-1.226980023,0.320327748,0.320327748,0.172404404,1.583269088,50.92337634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15644963,1.808069744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.147073065,48.9494863,78.3035227,50.75755604,540.0546652,0,0.699201746,45.63700501,-0.699201746,134.362995,0.978489881,0,606.7415478,50.75755604,639.9613531,2,14,5% +2018-02-02 23:00:00,65.75921269,221.7352624,361.0281106,702.515934,72.59456756,537.1329296,464.0057737,73.1271559,70.40557351,2.721582397,89.72443932,0,89.72443932,2.188994057,87.53544526,1.147714775,3.870010396,1.956074423,-1.956074423,0.195645262,0.195645262,0.201077327,0.972646637,31.28365931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67651526,1.585918743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704679178,30.07104326,68.38119444,31.656962,464.0057737,0,0.660491458,48.66263503,-0.660491458,131.337365,0.974298794,0,520.4614601,31.656962,541.1803086,2,15,4% +2018-02-02 00:00:00,74.5076688,233.854404,200.9030337,547.809895,54.57786371,365.3803623,310.9337306,54.44663168,52.93213975,1.51449193,50.35699047,0,50.35699047,1.645723962,48.71126651,1.300404139,4.08152932,3.46546195,-3.46546195,0,0,0.271662716,0.41143099,13.23303494,0.058801567,1,0.280930298,0,0.927298937,0.9660609,0.724496596,1,51.01502423,1.192321408,0.009785002,0.312029739,0.97262666,0.697123256,0.961238037,0.922476074,0.293483307,12.72009652,51.30850754,13.91241793,292.6503401,0,0.567594221,55.41736672,-0.567594221,124.5826333,0.961908899,0,332.8114739,13.91241793,341.9168732,2,16,3% +2018-02-02 01:00:00,84.55904292,244.2163376,34.53869883,172.707543,18.16257778,91.76777475,73.8924984,17.87527635,17.61490905,0.260367301,8.92197614,0,8.92197614,0.547668733,8.374307408,1.475833711,4.262379178,10.44534225,-10.44534225,0,0,0.525861668,0.136917183,4.403727261,0.556758225,1,0.09544556,0,0.951733504,0.990495467,0.724496596,1,17.06733947,0.396784133,0.075326419,0.312029739,0.808695752,0.533192347,0.961238037,0.922476074,0.094004755,4.233030148,17.16134422,4.62981428,32.75224211,0,0.427847546,64.66896265,-0.427847546,115.3310373,0.933135943,0,47.72363855,4.62981428,50.7537594,2,17,6% +2018-02-02 02:00:00,95.74249339,253.445006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671021744,4.423449827,-9.926108548,9.926108548,1,0,#DIV/0!,0,0,1,0.185414504,0,0.100405643,0.961238037,1,0.479498376,0.75500178,0,0,0.115824807,0.034719654,0.724496596,0.448993192,0.996793627,0.958031664,0,0,0,0,0,0,0.245665324,75.77884431,-0.245665324,104.2211557,0.846471072,0,0,0,0,2,18,0% +2018-02-02 03:00:00,107.3010376,262.18037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872756397,4.57591069,-3.138153256,3.138153256,1,0.933190497,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039737245,87.72262394,-0.039737245,92.27737606,0,0,0,0,0,2,19,0% +2018-02-02 04:00:00,119.1044888,271.13058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078765483,4.732121324,-1.675532315,1.675532315,1,0.816686591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17832869,100.2724258,0.17832869,79.72757417,0,0.769618868,0,0,0,2,20,0% +2018-02-02 05:00:00,130.8593252,281.2766667,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283926081,4.909203944,-0.988074922,0.988074922,1,0.699124453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39366801,113.1829271,0.39366801,66.8170729,0,0.922989426,0,0,0,2,21,0% +2018-02-02 06:00:00,142.1246569,294.3540241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480543211,5.137446887,-0.556144662,0.556144662,1,0.625260028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591600769,126.2706861,0.591600769,53.72931393,0,0.965483545,0,0,0,2,22,0% +2018-02-02 07:00:00,151.9595806,313.8912407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652195011,5.478435643,-0.234391173,0.234391173,1,0.570236941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758631662,139.3437163,0.758631662,40.65628369,0,0.984091862,0,0,0,2,23,0% +2018-02-03 08:00:00,158.069738,345.2435331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.758837377,6.025636374,0.036794313,-0.036794313,1,0.523861491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883369417,152.0515243,0.883369417,27.94847565,0,0.993398539,0,0,0,2,0,0% +2018-02-03 09:00:00,157.1220378,23.50163206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742296886,0.410180859,0.29046912,-0.29046912,1,0.480480545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957302922,163.1967145,0.957302922,16.80328551,0,0.997769929,0,0,0,2,1,0% +2018-02-03 10:00:00,149.7821645,51.64337581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614191932,0.901346945,0.552793547,-0.552793547,1,0.435620425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975381297,167.2601228,0.975381297,12.73987725,0,0.998737996,0,0,0,2,2,0% +2018-02-03 11:00:00,139.452891,69.1317329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433912099,1.206576357,0.855405425,-0.855405425,1,0.383870747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9363584,159.4487238,0.9363584,20.55127615,0,0.996601643,0,0,0,2,3,0% +2018-02-03 12:00:00,128.0016053,81.25661374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23404946,1.418195449,1.255246589,-1.255246589,1,0.31549388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842878319,147.4453229,0.842878319,32.5546771,0,0.990679457,0,0,0,2,4,0% +2018-02-03 13:00:00,116.1909462,90.98459781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027914572,1.5879808,1.898238796,-1.898238796,1,0.205535737,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701295951,134.531071,0.701295951,45.468929,0,0.978703424,0,0,0,2,5,0% +2018-02-03 14:00:00,104.4052347,99.79743107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822215101,1.741793757,3.37852861,-3.37852861,1,0,#DIV/0!,0,0,0.045445145,1,0.28777094,0,0.92625522,0.965017183,0.724496596,1,0,0,0.007608959,0.312029739,0.978649462,0.703146058,0.961238037,0.922476074,0,0,0,0,0,0,-0.521244801,121.4157874,0.521244801,58.58421262,0,0.954075782,0,0,0,2,6,0% +2018-02-03 15:00:00,92.92555345,108.5802091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621856867,1.895082152,15.29667385,-15.29667385,1,0,#DIV/0!,0,0,0.675927745,1,0.065280798,0,0.954970789,0.993732752,0.724496596,1,0,0,0.087505185,0.312029739,0.781992153,0.506488749,0.961238037,0.922476074,0,0,0,0,0,0,-0.314981335,108.359687,0.314981335,71.640313,0,0.891260435,0,0,0,2,7,0% +2018-02-03 16:00:00,81.93515638,118.0134343,72.0911374,298.7882408,30.17301991,29.80664548,0,29.80664548,29.26319203,0.543453445,46.68462758,28.2954688,18.38915878,0.909827877,17.4793309,1.430038252,2.059722989,-4.72109697,4.72109697,0.662491179,0.662491179,0.418539934,0.436801847,14.0490489,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.12889326,0.6591672,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316461451,13.50448019,28.44535471,14.16364739,0,28.2954688,-0.094700744,95.43409607,0.094700744,84.56590393,0,0.522021045,28.44535471,28.93447758,47.3823916,2,8,67% +2018-02-03 17:00:00,72.09393189,128.7377163,245.1675108,601.3179498,60.28785851,132.4879063,72.16977294,60.31813339,58.46995714,1.848176255,61.26160281,0,61.26160281,1.817901373,59.44370144,1.258276482,2.246897021,-1.606138732,1.606138732,0.804819589,0.804819589,0.245904762,1.576153139,50.69450294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.20354681,1.317063356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141917584,48.72948448,57.3454644,50.04654784,72.16977294,0,0.120019322,83.10678226,-0.120019322,96.89321774,0.633400415,0,103.0578285,50.04654784,135.8122931,2,9,32% +2018-02-03 18:00:00,63.72481323,141.3703869,397.7287118,727.071678,75.86650873,307.797935,231.2208344,76.5771006,73.57885357,2.998247031,98.72158607,0,98.72158607,2.287655156,96.43393092,1.112207806,2.467378716,-0.647061507,0.647061507,0.640807724,0.640807724,0.190749389,2.126726872,68.40284678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72679276,1.657398373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.540806379,65.75141816,72.26759914,67.40881653,231.2208344,0,0.318016561,71.45698279,-0.318016561,108.5430172,0.892775483,0,278.6958913,67.40881653,322.8136136,2,10,16% +2018-02-03 19:00:00,57.57576243,156.3094345,505.3141271,784.5296938,84.66192111,466.6231716,380.7048484,85.91832316,82.10905182,3.809271335,125.0721297,0,125.0721297,2.552869291,122.5192604,1.004886624,2.728114283,-0.101332944,0.101332944,0.547482644,0.547482644,0.167543151,2.374314357,76.36611136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.92634378,1.849545111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.720182669,73.40601097,80.64652645,75.25555608,380.7048484,0,0.485265059,60.97016017,-0.485265059,119.0298398,0.946963527,0,441.1601326,75.25555608,490.4133889,2,11,11% +2018-02-03 20:00:00,54.44475564,173.2663656,557.7848455,806.920835,88.57034337,582.5460711,492.4416326,90.1044385,85.89962072,4.204817775,137.9121162,0,137.9121162,2.670722642,135.2413936,0.950240246,3.024068562,0.321061608,-0.321061608,0.475248921,0.475248921,0.15878944,2.348701257,75.54230605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.56998279,1.934929463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701626066,72.61413796,84.27160886,74.54906742,492.4416326,0,0.610272546,52.39078756,-0.610272546,127.6092124,0.968069393,0,560.9892813,74.54906742,609.7801549,2,12,9% +2018-02-03 21:00:00,54.86660411,190.9185079,550.8190884,804.1192577,88.06290739,639.9760873,550.4162945,89.55979277,85.40748581,4.152306955,136.2078867,0,136.2078867,2.655421575,133.5524651,0.957602891,3.332156566,0.730184576,-0.730184576,0.405284773,0.405284773,0.159876281,2.077671693,66.8250636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.096924,1.923843892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505266069,64.23479294,83.60219007,66.15863684,550.4162945,0,0.68449585,46.80402853,-0.68449585,133.1959715,0.976953538,0,621.3333364,66.15863684,664.6328411,2,13,7% +2018-02-03 22:00:00,58.76285105,207.4900533,484.9790604,774.9802098,83.08866517,628.9572854,544.7180731,84.23921236,80.58323535,3.655977013,120.0942179,0,120.0942179,2.505429819,117.5887881,1.025605229,3.621384595,1.215416737,-1.215416737,0.322305186,0.322305186,0.171324232,1.602819551,51.55218641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45967095,1.815175375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161237308,49.55392246,78.62090826,51.36909784,544.7180731,0,0.702879978,45.34147581,-0.702879978,134.6585242,0.9788641,0,611.8258745,51.36909784,645.4459216,2,14,5% +2018-02-03 23:00:00,65.49935145,221.8901918,365.7888917,706.0603046,72.98318195,542.5103869,468.970446,73.53994091,70.78246973,2.757471176,90.89046397,0,90.89046397,2.200712215,88.68975175,1.143179341,3.872714426,1.935415734,-1.935415734,0.199178106,0.199178106,0.199522685,0.989822518,31.83609466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03880225,1.594408508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717123045,30.60206513,68.75592529,32.19647364,468.970446,0,0.664207353,48.37845562,-0.664207353,131.6215444,0.974722303,0,525.8718784,32.19647364,546.9438264,2,15,4% +2018-02-03 00:00:00,74.27173281,234.0392261,205.2568327,553.7825479,55.14002788,371.3732974,316.3486321,55.0246653,53.47735259,1.547312706,51.42957075,0,51.42957075,1.662675286,49.76689546,1.296286279,4.084755074,3.414001463,-3.414001463,0,0,0.268639183,0.415668821,13.36933815,0.050940706,1,0.284940885,0,0.926688197,0.96545016,0.724496596,1,51.52412428,1.204602584,0.008507541,0.312029739,0.976157901,0.700654497,0.961238037,0.922476074,0.297073866,12.85111636,51.82119815,14.05571894,300.2336096,0,0.571250635,55.16251755,-0.571250635,124.8374825,0.962472745,0,340.7878645,14.05571894,349.9870514,2,16,3% +2018-02-03 01:00:00,84.34737808,244.4199382,37.26576704,183.5458199,19.18707261,98.05292901,79.16349234,18.88943667,18.60851158,0.280925093,9.614077698,0,9.614077698,0.578561032,9.035516667,1.472139463,4.265932678,10.05535899,-10.05535899,0,0,0.514871265,0.144640258,4.652127894,0.543256774,1,0.099123532,0,0.95132424,0.990086203,0.724496596,1,18.03217813,0.419165498,0.073876529,0.312029739,0.811953775,0.536450371,0.961238037,0.922476074,0.099240496,4.471802284,18.13141863,4.890967782,36.15738886,0,0.431300982,64.44984791,-0.431300982,115.5501521,0.934071676,0,51.90501144,4.890967782,55.10605203,2,17,6% +2018-02-03 02:00:00,95.54170827,253.6644646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667517382,4.427280103,-10.28567726,10.28567726,1,0,#DIV/0!,0,0,1,0.224269862,0,0.096917974,0.961238037,1,0.486663567,0.762166971,0,0,0.115824807,0.042843452,0.724496596,0.448993192,0.99600165,0.957239687,0,0,0,0,0,0,0.248979169,75.58288711,-0.248979169,104.4171129,0.849179987,0,0,0,0,2,18,0% +2018-02-03 03:00:00,107.110036,262.4182578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869422791,4.580062617,-3.17252286,3.17252286,1,0.927312949,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042770186,87.54870111,-0.042770186,92.45129889,0,0,0,0,0,2,19,0% +2018-02-03 04:00:00,118.9163419,271.3934063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075481701,4.736708508,-1.685544308,1.685544308,1,0.818398743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.175620062,100.1147439,0.175620062,79.88525613,0,0.765294485,0,0,0,2,20,0% +2018-02-03 05:00:00,130.6648333,281.5733957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280531557,4.914382841,-0.991737276,0.991737276,1,0.699750752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39130461,113.0357004,0.39130461,66.96429956,0,0.922222308,0,0,0,2,21,0% +2018-02-03 06:00:00,141.9102223,294.6888794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.476800621,5.143291215,-0.557240222,0.557240222,1,0.62544738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589579606,126.1271814,0.589579606,53.87281857,0,0.96519381,0,0,0,2,22,0% +2018-02-03 07:00:00,151.7062859,314.2221672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.647774185,5.4842114,-0.234098692,0.234098692,1,0.570186924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756926066,139.193951,0.756926066,40.80604904,0,0.98394335,0,0,0,2,23,0% +2018-02-04 08:00:00,157.7745032,345.3468111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753684556,6.027438916,0.038076097,-0.038076097,1,0.523642293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.881930899,151.8761711,0.881930899,28.12382891,0,0.993306216,0,0,0,2,0,0% +2018-02-04 09:00:00,156.8489375,23.19685693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737530387,0.404861529,0.292688327,-0.292688327,1,0.480101038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956064534,162.952987,0.956064534,17.04701298,0,0.997702275,0,0,0,2,1,0% +2018-02-04 10:00:00,149.5697017,51.22908336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610483755,0.894116177,0.556164953,-0.556164953,1,0.435043881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974262257,166.9725693,0.974262257,13.02743066,0,0.998679116,0,0,0,2,2,0% +2018-02-04 11:00:00,139.2802406,68.75811886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430898781,1.200055562,0.860533705,-0.860533705,1,0.382993759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935269664,159.2717548,0.935269664,20.72824518,0,0.996539483,0,0,0,2,3,0% +2018-02-04 12:00:00,127.8470598,80.93283183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231352133,1.412544388,1.263649153,-1.263649153,1,0.314056957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84172872,147.3231209,0.84172872,32.67687912,0,0.990598439,0,0,0,2,4,0% +2018-02-04 13:00:00,116.0405396,90.69717014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025289483,1.582964241,1.914540985,-1.914540985,1,0.202747899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699998473,134.4268815,0.699998473,45.57311851,0,0.978571273,0,0,0,2,5,0% +2018-02-04 14:00:00,104.2494291,99.53416219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819495782,1.737198848,3.426020148,-3.426020148,1,0,#DIV/0!,0,0,0.052788353,1,0.283994267,0,0.926832651,0.965594614,0.724496596,1,0,0,0.008808631,0.312029739,0.97532446,0.699821056,0.961238037,0.922476074,0,0,0,0,0,0,-0.519722571,121.3136439,0.519722571,58.68635607,0,0.953794827,0,0,0,2,6,0% +2018-02-04 15:00:00,92.75680037,108.3329712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61891157,1.890767037,16.29035016,-16.29035016,1,0,#DIV/0!,0,0,0.692842643,1,0.061309103,0,0.955381098,0.994143061,0.724496596,1,0,0,0.089148539,0.312029739,0.778479748,0.502976344,0.961238037,0.922476074,0,0,0,0,0,0,-0.313172901,108.2505487,0.313172901,71.7494513,0,0.890343785,0,0,0,2,7,0% +2018-02-04 16:00:00,81.74891713,117.7786379,75.05103113,307.3563398,30.94191522,30.57466869,0,30.57466869,30.00890232,0.565766374,47.59144015,28.46143584,19.13000431,0.933012908,18.19699141,1.426787764,2.05562502,-4.634064118,4.634064118,0.677374674,0.677374674,0.412278349,0.458489212,14.74658909,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.84569835,0.675964675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.332173873,14.17498235,29.17787222,14.85094702,0,28.46143584,-0.092600777,95.31324565,0.092600777,84.68675435,0,0.510047726,29.17787222,29.36763766,48.39840372,2,8,66% +2018-02-04 17:00:00,71.88020404,128.5178787,249.1464336,605.8559176,60.72232382,134.9824033,74.21291057,60.76949277,58.89132171,1.878171057,62.23943946,0,62.23943946,1.831002105,60.40843735,1.254546227,2.243060131,-1.59590486,1.59590486,0.803069494,0.803069494,0.243721425,1.598446923,51.41154767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.60857847,1.326554792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158069354,49.41873515,57.76664782,50.74528994,74.21291057,0,0.122492673,82.96401627,-0.122492673,97.03598373,0.641812319,0,105.397408,50.74528994,138.6091854,2,9,32% +2018-02-04 18:00:00,63.48045803,141.1773736,402.1591945,730.0320184,76.19769071,311.1530476,234.2213526,76.93169507,73.90004919,3.031645881,99.80579426,0,99.80579426,2.297641514,97.50815274,1.107943003,2.464009998,-0.646562393,0.646562393,0.640722371,0.640722371,0.189471462,2.148816135,69.11331342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03553821,1.664633456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.556809975,66.43434571,72.59234819,68.09897916,234.2213526,0,0.320837096,71.28644357,-0.320837096,108.7135564,0.894157672,0,282.0231675,68.09897916,326.5925874,2,10,16% +2018-02-04 19:00:00,57.30129644,156.166997,510.0444384,786.870541,84.96022811,470.5522211,384.308927,86.24329418,82.39836376,3.84493042,126.2280435,0,126.2280435,2.561864347,123.6661792,1.000096289,2.725628281,-0.104132632,0.104132632,0.547961418,0.547961418,0.166574168,2.396388908,77.07610482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.20444142,1.856061999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736175606,74.08848369,80.94061703,75.94454569,384.308927,0,0.488401722,60.76441459,-0.488401722,119.2355854,0.947625259,0,445.1214633,75.94454569,494.8256496,2,11,11% +2018-02-04 20:00:00,54.14935367,173.2035645,562.7054856,809.0561314,88.86203547,586.9218263,496.4973974,90.42442888,86.18251724,4.241911638,139.113978,0,139.113978,2.679518236,136.4344598,0.945084509,3.022972477,0.316110934,-0.316110934,0.476095536,0.476095536,0.157919263,2.370508087,76.24368863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.84191368,1.94130184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717425039,73.28833358,84.55933872,75.22963542,496.4973974,0,0.613674847,52.14430473,-0.613674847,127.8556953,0.968523628,0,565.4287994,75.22963542,614.6650912,2,12,9% +2018-02-04 21:00:00,54.56769619,190.9490732,555.8210183,806.3225275,88.36306758,644.7156027,554.826994,89.88860868,85.69859506,4.190013616,137.4297135,0,137.4297135,2.664472512,134.765241,0.952385964,3.332690032,0.72279323,-0.72279323,0.406548768,0.406548768,0.158977557,2.098753496,67.50312684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.37674928,1.930401265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520539763,64.88657312,83.89728904,66.81697439,554.826994,0,0.688095613,46.52045143,-0.688095613,133.4795486,0.97733568,0,626.1495064,66.81697439,669.8798798,2,13,7% +2018-02-04 22:00:00,58.47774409,207.5997482,489.9451541,777.5585384,83.41443814,634.0119794,549.4193808,84.59259859,80.89918506,3.693413525,121.3081281,0,121.3081281,2.515253076,118.792875,1.020629174,3.623299133,1.203994733,-1.203994733,0.324258464,0.324258464,0.170252604,1.622535841,52.18633008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76337383,1.822292292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.175521694,50.16348548,78.93889553,51.98577777,549.4193808,0,0.706595521,45.04141164,-0.706595521,134.9585884,0.979238159,0,616.9513184,51.98577777,650.9749703,2,14,6% +2018-02-04 23:00:00,65.23741643,222.0514866,370.5812093,709.5721924,73.370384,547.9092154,473.9576215,73.95159391,71.15799622,2.79359769,92.06409243,0,92.06409243,2.212387786,89.85170464,1.138607712,3.87552955,1.91506937,-1.91506937,0.202657539,0.202657539,0.19798733,1.007151314,32.39344833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39977259,1.602867419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729677699,31.13781468,69.12945029,32.7406821,473.9576215,0,0.667948415,48.09108069,-0.667948415,131.9089193,0.97514392,0,531.3063433,32.7406821,552.7344649,2,15,4% +2018-02-04 00:00:00,74.03449329,234.2301603,209.6399844,559.6760875,55.69626009,377.3669389,321.7697718,55.59716711,54.01681235,1.580354755,52.50908908,0,52.50908908,1.679447739,50.82964134,1.292145668,4.088087504,3.363793948,-3.363793948,0,0,0.26567575,0.419861935,13.50420309,0.043143652,1,0.288962613,0,0.926072406,0.964834369,0.724496596,1,52.02694298,1.21675417,0.007231286,0.312029739,0.979698546,0.704195141,0.961238037,0.922476074,0.300655307,12.98075367,52.32759829,14.19750784,307.8874486,0,0.574921421,54.90587053,-0.574921421,125.0941295,0.963031593,0,348.8329385,14.19750784,358.1249234,2,16,3% +2018-02-04 01:00:00,84.13469419,244.6292991,40.07615506,194.4221045,20.20812176,104.4284943,84.52761104,19.90088331,19.59877233,0.302110985,10.32627721,0,10.32627721,0.609349431,9.716927779,1.468427429,4.269586715,9.691710565,-9.691710565,0,0,0.504243028,0.152337358,4.899693081,0.529904299,1,0.102817116,0,0.950910076,0.989672039,0.724496596,1,18.99379562,0.441471588,0.072427842,0.312029739,0.815225849,0.539722445,0.961238037,0.922476074,0.104459689,4.709771359,19.09825531,5.151242947,39.7360666,0,0.434763379,64.22976174,-0.434763379,115.7702383,0.934994913,0,56.25127546,5.151242947,59.62266094,2,17,6% +2018-02-04 02:00:00,95.34040868,253.8894257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664004042,4.431206414,-10.67299974,10.67299974,1,0,#DIV/0!,0,0,1,0.26218001,0,0.093421637,0.961238037,1,0.493944593,0.769447997,0,0,0.115824807,0.051089877,0.724496596,0.448993192,0.995181638,0.956419675,0,0,0,0,0,0,0.252291385,75.3868539,-0.252291385,104.6131461,0.851816459,0,0,0,0,2,18,0% +2018-02-04 03:00:00,106.9185663,262.6615491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866081013,4.584308851,-3.207609904,3.207609904,1,0.921312711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045797926,87.37505394,-0.045797926,92.62494606,0,0,0,0,0,2,19,0% +2018-02-04 04:00:00,118.7275599,271.6617046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072186834,4.741391197,-1.695609598,1.695609598,1,0.820120008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172916966,99.95746116,0.172916966,80.04253884,0,0.760843875,0,0,0,2,20,0% +2018-02-04 05:00:00,130.4692951,281.8757885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.277118771,4.919660591,-0.995359132,0.995359132,1,0.700370126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.388943817,112.8887966,0.388943817,67.11120341,0,0.921446729,0,0,0,2,21,0% +2018-02-04 06:00:00,141.6940302,295.029528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473027357,5.149236654,-0.55827099,0.55827099,1,0.625623652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587555069,125.9836997,0.587555069,54.01630027,0,0.964901594,0,0,0,2,22,0% +2018-02-04 07:00:00,151.4502291,314.5587096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.643305151,5.490085174,-0.233729579,0.233729579,1,0.570123802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755208474,139.0435891,0.755208474,40.95641093,0,0.983793116,0,0,0,2,23,0% +2018-02-05 08:00:00,157.4752679,345.4579848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748461915,6.029379262,0.039446364,-0.039446364,1,0.523407964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880469718,151.6990773,0.880469718,28.30092275,0,0.99321213,0,0,0,2,0,0% +2018-02-05 09:00:00,156.5698405,22.90246801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732659225,0.399723474,0.295013416,-0.295013416,1,0.479703424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954791508,162.7059176,0.954791508,17.29408238,0,0.997632546,0,0,0,2,1,0% +2018-02-05 10:00:00,149.3503649,50.81888221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606655607,0.886956817,0.559671632,-0.559671632,1,0.434444204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973096121,166.6794058,0.973096121,13.32059423,0,0.998617615,0,0,0,2,2,0% +2018-02-05 11:00:00,139.1010053,68.3847523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427770535,1.193539086,0.865852278,-0.865852278,1,0.382084229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934121755,159.0867184,0.934121755,20.91328161,0,0.996473787,0,0,0,2,3,0% +2018-02-05 12:00:00,127.6863786,80.60794393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228547716,1.406874025,1.272361771,-1.272361771,1,0.312567012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840509079,147.1939162,0.840509079,32.80608377,0,0.990512243,0,0,0,2,4,0% +2018-02-05 13:00:00,115.8843534,90.40820684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022563519,1.57792088,1.931495438,-1.931495438,1,0.199848516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698622049,134.3165551,0.698622049,45.68344492,0,0.978430544,0,0,0,2,5,0% +2018-02-05 14:00:00,104.0880889,99.26925201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816679864,1.732575294,3.475956543,-3.475956543,1,0,#DIV/0!,0,0,0.060388712,1,0.280125856,0,0.927421036,0.966182999,0.724496596,1,0,0,0.01004181,0.312029739,0.971918314,0.69641491,0.961238037,0.922476074,0,0,0,0,0,0,-0.518115066,121.2058986,0.518115066,58.79410145,0,0.95349634,0,0,0,2,6,0% +2018-02-05 15:00:00,92.58266323,108.0841213,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615872304,1.886423786,17.44993418,-17.44993418,1,0,#DIV/0!,0,0,0.710477317,1,0.057244197,0,0.955797176,0.994559139,0.724496596,1,0,0,0.090840467,0.312029739,0.774886132,0.499382728,0.961238037,0.922476074,0,0,0,0,0,0,-0.311275879,108.1361377,0.311275879,71.86386227,0,0.889370785,0,0,0,2,7,0% +2018-02-05 16:00:00,81.5573432,117.5423615,78.12356626,316.051187,31.72108811,31.3535087,0,31.3535087,30.76458026,0.588928442,48.47322466,28.57475369,19.89847097,0.956507845,18.94196312,1.423444168,2.051501218,-4.547962952,4.547962952,0.69209884,0.69209884,0.406037379,0.48122416,15.47782319,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.57208474,0.692986677,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.348645266,14.87787238,29.92073,15.57085906,0,28.57475369,-0.09041179,95.18729753,0.09041179,84.81270247,0,0.496974783,29.92073,29.77179109,49.40577183,2,8,65% +2018-02-05 17:00:00,71.66117714,128.2968626,253.2239594,610.4252311,61.16238832,137.5615911,76.33456527,61.22702582,59.31811665,1.908909168,63.24135235,0,63.24135235,1.844271673,61.39708067,1.250723487,2.239202673,-1.585416021,1.585416021,0.801275797,0.801275797,0.24153476,1.62118807,52.14298111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.01883,1.336168549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.174545238,50.1218168,58.19337523,51.45798535,76.33456527,0,0.125051458,82.81627256,-0.125051458,97.18372744,0.650164598,0,107.8234072,51.45798535,141.5016295,2,9,31% +2018-02-05 18:00:00,63.23079229,140.9838371,406.6778501,733.0064946,76.53335509,314.5925144,237.3012129,77.29130147,74.22559206,3.065709415,100.9115161,0,100.9115161,2.307763034,98.6037531,1.103585514,2.460632149,-0.645905711,0.645905711,0.640610071,0.640610071,0.1881916,2.171271025,69.83553987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.34846239,1.671966462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573078467,67.12857725,72.92154086,68.80054371,237.3012129,0,0.323736849,71.11093507,-0.323736849,108.8890649,0.895553572,0,285.4374897,68.80054371,330.4660695,2,10,16% +2018-02-05 19:00:00,57.02159336,156.0253332,514.8509116,789.2169144,85.2620546,474.5582219,387.9859692,86.57225271,82.69108907,3.881163646,127.4025298,0,127.4025298,2.57096553,124.8315643,0.995214549,2.723155782,-0.106824467,0.106824467,0.548421749,0.548421749,0.165605329,2.418762585,77.79571918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48582012,1.862655774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.752385259,74.78020438,81.23820538,76.64286015,387.9859692,0,0.491608786,60.55362264,-0.491608786,119.4463774,0.948293111,0,449.1626273,76.64286015,499.3238464,2,11,11% +2018-02-05 20:00:00,53.84907868,173.1435612,567.6893131,811.1908485,89.15629537,591.363053,500.615667,90.74738595,86.46790411,4.279481835,140.3312377,0,140.3312377,2.688391257,137.6428464,0.939843722,3.021925221,0.311250476,-0.311250476,0.476926723,0.476926723,0.157051213,2.392555656,76.95281424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.1162384,1.947730314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.733398428,73.96997209,84.84963683,75.91770241,500.615667,0,0.617136729,51.89265657,-0.617136729,128.1073434,0.968980677,0,569.9365448,75.91770241,619.6231626,2,12,9% +2018-02-05 21:00:00,54.26471836,190.9845346,560.8731796,808.5190412,88.66477595,649.5065959,559.2872911,90.21930475,85.99120581,4.228098941,138.6637661,0,138.6637661,2.673570133,135.9901959,0.947098003,3.333308949,0.715499161,-0.715499161,0.407796127,0.407796127,0.158083466,2.120027019,68.18735648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.65801786,1.93699246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535952359,65.54428068,84.19397022,67.48127314,559.2872911,0,0.691742881,46.23176815,-0.691742881,133.7682319,0.977718808,0,631.0196738,67.48127314,675.1848175,2,13,7% +2018-02-05 22:00:00,58.18964853,207.7155637,494.9496517,780.1211181,83.74052813,639.1025522,554.1559704,84.94658178,81.21544224,3.731139542,122.5313593,0,122.5313593,2.525085893,120.0062734,1.015600957,3.625320494,1.192716442,-1.192716442,0.326187165,0.326187165,0.169189993,1.642408651,52.82550797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06737226,1.829416134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.189919477,50.77788758,79.25729174,52.60730371,554.1559704,0,0.71034607,44.73692048,-0.71034607,135.2630795,0.979611774,0,622.1150048,52.60730371,656.5454329,2,14,6% +2018-02-05 23:00:00,64.97351457,222.2191256,375.4027595,713.0502712,73.75599458,553.3266661,478.9647424,74.36192378,71.53197921,2.829944572,93.24476066,0,93.24476066,2.224015367,91.0207453,1.134001756,3.878455402,1.895036223,-1.895036223,0.206083409,0.206083409,0.196471637,1.0246253,32.95547177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75925927,1.611291563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742337542,31.67805299,69.50159681,33.28934455,478.9647424,0,0.671712447,47.80062976,-0.671712447,132.1993702,0.975563386,0,536.7620627,33.28934455,558.549273,2,15,4% +2018-02-05 00:00:00,73.79604346,234.4271544,214.0503691,565.4891304,56.24643246,383.3585967,327.1945996,56.16399709,54.55039499,1.613602098,53.59502765,0,53.59502765,1.696037466,51.89899018,1.287983933,4.0915257,3.314811205,-3.314811205,0,0,0.262771948,0.424009366,13.63759875,0.03541234,1,0.29299398,0,0.925451778,0.964213741,0.724496596,1,52.52336173,1.22877337,0.005956686,0.312029739,0.983247296,0.707743892,0.961238037,0.922476074,0.304226768,13.10897865,52.8275885,14.33775202,315.6078733,0,0.578604578,54.64754417,-0.578604578,125.3524558,0.963585198,0,356.9426636,14.33775202,366.3264356,2,16,3% +2018-02-05 01:00:00,83.92108207,244.8443447,42.96579448,205.3106129,21.22377098,110.881527,89.97383672,20.90769029,20.58379598,0.323894308,11.05752932,0,11.05752932,0.639975002,10.41755431,1.464699194,4.27333997,9.351943762,-9.351943762,0,0,0.49396901,0.159993751,5.145948995,0.516703426,1,0.106524873,0,0.950491141,0.989253104,0.724496596,1,19.95032276,0.463659711,0.07098092,0.312029739,0.818510641,0.543007237,0.961238037,0.922476074,0.109653443,4.946481909,20.0599762,5.41014162,43.48404701,0,0.438232761,64.00882141,-0.438232761,115.9911786,0.935905381,0,60.75692977,5.41014162,64.29775926,2,17,6% +2018-02-05 02:00:00,95.13865114,254.1197953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660482708,4.435227122,-11.09131936,11.09131936,1,0,#DIV/0!,0,0,1,0.299170712,0,0.089917481,0.961238037,1,0.501340285,0.77684369,0,0,0.115824807,0.059458663,0.724496596,0.448993192,0.994332954,0.955570991,0,0,0,0,0,0,0.255600607,75.19082317,-0.255600607,104.8091768,0.854382311,0,0,0,0,2,18,0% +2018-02-05 03:00:00,106.7266672,262.9101315,0,0,0,0,0,0,0,0,0,0,0,0,0,1.862731742,4.588647431,-3.243431238,3.243431238,1,0.915186902,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.048819486,87.20173721,-0.048819486,92.79826279,0,0,0,0,0,2,19,0% +2018-02-05 04:00:00,118.5381657,271.935338,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06888128,4.746167,-1.705727246,1.705727246,1,0.821850228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.170219987,99.80060979,0.170219987,80.19939021,0,0.756262461,0,0,0,2,20,0% +2018-02-05 05:00:00,130.2727206,282.1836681,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2736879,4.925034103,-0.998939577,0.998939577,1,0.700982418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38658583,112.7422259,0.38658583,67.25777411,0,0.920662616,0,0,0,2,21,0% +2018-02-05 06:00:00,141.4760864,295.3757216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46922352,5.155278872,-0.559236548,0.559236548,1,0.625788772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585527013,125.8402298,0.585527013,54.1597702,0,0.964606843,0,0,0,2,22,0% +2018-02-05 07:00:00,151.1914353,314.9005128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638788347,5.496050765,-0.23328373,0.23328373,1,0.570047557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753478463,138.8925982,0.753478463,41.10740178,0,0.983641103,0,0,0,2,23,0% +2018-02-06 08:00:00,157.1721199,345.5766263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743170984,6.031449948,0.040905057,-0.040905057,1,0.523158513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878985257,151.5201968,0.878985257,28.47980318,0,0.993116225,0,0,0,2,0,0% +2018-02-06 09:00:00,156.2848951,22.61837215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727685991,0.394765065,0.297444302,-0.297444302,1,0.479287718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953483128,162.4555029,0.953483128,17.54449715,0,0.997560687,0,0,0,2,1,0% +2018-02-06 10:00:00,149.1242634,50.41303498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602709392,0.879873446,0.563313673,-0.563313673,1,0.433821378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971882182,166.3808079,0.971882182,13.61919209,0,0.998553435,0,0,0,2,2,0% +2018-02-06 11:00:00,138.915258,68.01188104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424528634,1.187031255,0.87136191,-0.87136191,1,0.381142027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93291407,158.8937198,0.93291407,21.1062802,0,0.996404496,0,0,0,2,3,0% +2018-02-06 12:00:00,127.5196236,80.2821346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225637293,1.401187579,1.281387596,-1.281387596,1,0.311023505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839219001,147.0577397,0.839219001,32.94226029,0,0.990420796,0,0,0,2,4,0% +2018-02-06 13:00:00,115.7224512,90.11784563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019737792,1.572853121,1.949116315,-1.949116315,1,0.196835169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697166568,134.2001171,0.697166568,45.7998829,0,0.978281128,0,0,0,2,5,0% +2018-02-06 14:00:00,103.9212846,99.00280561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813768579,1.727924927,3.528456849,-3.528456849,1,0,#DIV/0!,0,0,0.068248877,1,0.276167999,0,0.928019797,0.96678176,0.724496596,1,0,0,0.011308136,0.312029739,0.96843299,0.692929585,0.961238037,0.922476074,0,0,0,0,0,0,-0.516422524,121.0925859,0.516422524,58.90741406,0,0.953180056,0,0,0,2,6,0% +2018-02-06 15:00:00,92.4032217,107.8337393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612740458,1.882053796,18.81862167,-18.81862167,1,0,#DIV/0!,0,0,0.728851807,1,0.053088922,0,0.95621846,0.994980423,0.724496596,1,0,0,0.092580613,0.312029739,0.771214039,0.495710635,0.961238037,0.922476074,0,0,0,0,0,0,-0.309290895,108.0165017,0.309290895,71.98349828,0,0.88833989,0,0,0,2,7,0% +2018-02-06 16:00:00,81.36052062,117.304663,81.3082737,324.8575746,32.50927152,32.14193315,0,32.14193315,31.52899704,0.612936112,49.32565124,28.63124444,20.69440679,0.980274483,19.71413231,1.420008966,2.047352598,-4.462925579,4.462925579,0.706641087,0.706641087,0.399827349,0.505018905,16.24314396,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.30687122,0.710205526,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365884477,15.61352782,30.6727557,16.32373334,0,28.63124444,-0.08813476,95.05631027,0.08813476,84.94368973,0,0.482686946,30.6727557,30.14366128,50.40117913,2,8,64% +2018-02-06 17:00:00,71.43694806,128.0747046,257.398101,615.0203331,61.60757106,140.2248293,78.53457816,61.69025109,59.74987548,1.940375611,64.26684521,0,64.26684521,1.857695575,62.40914964,1.246809951,2.235325283,-1.574694725,1.574694725,0.799442347,0.799442347,0.239347419,1.644362199,52.88834078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.43385301,1.34589412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.191334816,50.83828486,58.62518783,52.18417898,78.53457816,0,0.127694279,82.66362623,-0.127694279,97.33637377,0.658439781,0,110.3354782,52.18417898,144.4889797,2,9,31% +2018-02-06 18:00:00,62.97591896,140.7897945,411.2822199,735.9921464,76.87318962,318.1145868,240.4589884,77.65559842,74.55517932,3.1004191,102.0381462,0,102.0381462,2.318010299,99.72013587,1.099137135,2.457245467,-0.645096847,0.645096847,0.640471748,0.640471748,0.186911045,2.194078387,70.56910303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.66527421,1.679390571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.589602323,67.83370606,73.25487653,69.51309663,240.4589884,0,0.326714068,70.93054631,-0.326714068,109.0694537,0.896960983,0,288.9372071,69.51309663,334.4321385,2,10,16% +2018-02-06 19:00:00,56.73675862,155.8844519,519.730854,791.5668296,85.56714569,478.6388617,391.7339305,86.90493125,82.98698054,3.917950713,128.5949279,0,128.5949279,2.580165152,126.0147628,0.990243245,2.720696939,-0.109409411,0.109409411,0.548863801,0.548863801,0.164637418,2.441422794,78.52454941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77024226,1.869320869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768802504,75.48078372,81.53904476,77.35010458,391.7339305,0,0.494884217,60.33788425,-0.494884217,119.6621157,0.948966267,0,453.2813303,77.35010458,503.9054267,2,11,11% +2018-02-06 20:00:00,53.54403839,173.0863747,572.7335473,813.3234363,89.45289424,595.8671046,504.7940378,91.07306684,86.75555943,4.317507403,141.5632142,0,141.5632142,2.697334807,138.8658794,0.934519765,3.020927129,0.30648102,-0.30648102,0.477742348,0.477742348,0.156185882,2.414832062,77.66930004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39274364,1.954209886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749537608,74.65868549,85.14228124,76.61289538,504.7940378,0,0.62065596,51.63594805,-0.62065596,128.364052,0.969440071,0,574.5098491,76.61289538,624.6514568,2,12,9% +2018-02-06 21:00:00,53.95778372,191.0249217,565.9728293,810.707446,88.96781998,654.3462446,563.7945904,90.5516542,86.28511195,4.266542255,139.9093731,0,139.9093731,2.682708029,137.2266651,0.941740983,3.334013837,0.708304117,-0.708304117,0.409026552,0.409026552,0.157194507,2.14148137,68.87740217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.94053162,1.943612834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551495963,66.20757884,84.49202758,68.15119168,563.7945904,0,0.695435318,45.93808343,-0.695435318,134.0619166,0.978102587,0,635.9409752,68.15119168,680.5445671,2,13,7% +2018-02-06 22:00:00,57.89868049,207.837513,499.9899616,782.6666676,84.06673731,644.2261428,558.9251923,85.30095053,81.53181501,3.769135528,123.7632772,0,123.7632772,2.534922303,121.2283549,1.010522607,3.627448911,1.181584102,-1.181584102,0.328090908,0.328090908,0.16813685,1.662428432,53.46941295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.3714818,1.836542579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.20442374,51.39683353,79.57590554,53.23337611,558.9251923,0,0.714129291,44.42811324,-0.714129291,135.5718868,0.979984667,0,627.314024,53.23337611,662.154204,2,14,6% +2018-02-06 23:00:00,64.7077558,222.3930876,380.2511884,716.4932835,74.13983722,558.7599617,483.9892201,74.77074166,71.90424758,2.866494077,94.43189266,0,94.43189266,2.235589639,92.19630302,1.12936339,3.881491613,1.875316887,-1.875316887,0.209455614,0.209455614,0.194975951,1.042236487,33.5219081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11709779,1.619677083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.755096787,32.22253313,69.87219458,33.84221021,483.9892201,0,0.675497219,47.50722601,-0.675497219,132.492774,0.97598045,0,542.2362115,33.84221021,564.3852612,2,15,4% +2018-02-06 00:00:00,73.55647918,234.6301553,218.4858177,571.2204207,56.79042315,389.3455701,332.6205493,56.72502074,55.07798236,1.647038382,54.68685682,0,54.68685682,1.712440792,52.97441603,1.283802748,4.095068734,3.267025522,-3.267025522,0,0,0.259927275,0.428110198,13.76949559,0.027748617,1,0.297033468,0,0.924826534,0.963588498,0.724496596,1,53.0132689,1.240657525,0.004684188,0.312029739,0.986802846,0.711299442,0.961238037,0.922476074,0.307787378,13.23576291,53.32105627,14.47642043,323.390789,0,0.582298071,54.3876604,-0.582298071,125.6123396,0.964133324,0,365.1128925,14.47642043,374.5874202,2,16,3% +2018-02-06 01:00:00,83.70663362,245.0649984,45.93058785,216.1875758,22.23227203,117.3997274,95.49159625,21.90813117,21.561887,0.346244172,11.80678782,0,11.80678782,0.67038503,11.13640279,1.460956362,4.277191103,9.033897739,-9.033897739,0,0,0.484040659,0.167596258,5.39047175,0.503656515,1,0.110245366,0,0.950067568,0.988829531,0.724496596,1,20.90008403,0.485691672,0.069536316,0.312029739,0.821806823,0.546303419,0.961238037,0.922476074,0.114813912,5.181526483,21.01489795,5.667218155,47.39663164,0,0.441707142,63.78714567,-0.441707142,116.2128543,0.936802826,0,65.41619643,5.667218155,69.12527737,2,17,6% +2018-02-06 02:00:00,94.93649429,254.3554785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656954406,4.439340571,-11.544403,11.544403,1,0,#DIV/0!,0,0,1,0.335266765,0,0.08640638,0.961238037,1,0.508849333,0.784352737,0,0,0.115824807,0.067949374,0.724496596,0.448993192,0.993454974,0.954693011,0,0,0,0,0,0,0.258905434,74.99487559,-0.258905434,105.0051244,0.856879295,0,0,0,0,2,18,0% +2018-02-06 03:00:00,106.5343797,263.1638919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859375692,4.593076386,-3.280003904,3.280003904,1,0.908932608,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051833852,87.02880758,-0.051833852,92.97119242,0,0,0,0,0,2,19,0% +2018-02-06 04:00:00,118.3481841,272.2141692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065565477,4.751033522,-1.715896158,1.715896158,1,0.823589215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167529737,99.64422366,0.167529737,80.35577634,0,0.751545522,0,0,0,2,20,0% +2018-02-06 05:00:00,130.0751226,282.4968579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270239164,4.930500296,-1.002477635,1.002477635,1,0.701587462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384230879,112.5960006,0.384230879,67.40399942,0,0.919869907,0,0,0,2,21,0% +2018-02-06 06:00:00,141.2563997,295.7272151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465389264,5.161413591,-0.560136442,0.560136442,1,0.625942663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583495326,125.6967626,0.583495326,54.30323736,0,0.964309511,0,0,0,2,22,0% +2018-02-06 07:00:00,150.929933,315.2472318,0,0,0,0,0,0,0,0,0,0,0,0,0,2.634224271,5.502102153,-0.232761016,0.232761016,1,0.569958168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75173564,138.7409489,0.75173564,41.25905112,0,0.983487256,0,0,0,2,23,0% +2018-02-07 08:00:00,156.8651485,345.7023252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737813323,6.033643806,0.04245214,-0.04245214,1,0.522893946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877476926,151.3394883,0.877476926,28.66051165,0,0.993018445,0,0,0,2,0,0% +2018-02-07 09:00:00,155.9942509,22.34446304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.722613292,0.38998445,0.299980926,-0.299980926,1,0.47885393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952138707,162.2017458,0.952138707,17.79825422,0,0.997486643,0,0,0,2,1,0% +2018-02-07 10:00:00,148.8915104,50.01178995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598647085,0.872870399,0.567091207,-0.567091207,1,0.433175382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970619752,166.0769481,0.970619752,13.92305187,0,0.998486521,0,0,0,2,2,0% +2018-02-07 11:00:00,138.7230753,67.63974853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421174412,1.180536317,0.877063447,-0.877063447,1,0.380167007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931646032,158.6928724,0.931646032,21.30712757,0,0.996331548,0,0,0,2,3,0% +2018-02-07 12:00:00,127.3468597,79.95558772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222621993,1.395488261,1.290730009,-1.290730009,1,0.309425858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83785811,146.9146277,0.83785811,33.08537234,0,0.990324025,0,0,0,2,4,0% +2018-02-07 13:00:00,115.5548987,89.8262247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01681345,1.567763376,1.96741871,-1.96741871,1,0.193705275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69563194,134.0775961,0.69563194,45.9224039,0,0.978122909,0,0,0,2,5,0% +2018-02-07 14:00:00,103.7490882,98.73492902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810763185,1.723249598,3.583650464,-3.583650464,1,0,#DIV/0!,0,0,0.076371713,1,0.272122979,0,0.928628362,0.967390325,0.724496596,1,0,0,0.012607254,0.312029739,0.964870443,0.689367039,0.961238037,0.922476074,0,0,0,0,0,0,-0.514645204,120.9737429,0.514645204,59.02625711,0,0.952845689,0,0,0,2,6,0% +2018-02-07 15:00:00,92.21855666,107.5819066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609517445,1.877658486,20.45618035,-20.45618035,1,0,#DIV/0!,0,0,0.747987629,1,0.048846097,0,0.956644394,0.995406357,0.724496596,1,0,0,0.094368642,0.312029739,0.767466199,0.491962795,0.961238037,0.922476074,0,0,0,0,0,0,-0.307218594,107.8916897,0.307218594,72.10831026,0,0.887249434,0,0,0,2,7,0% +2018-02-07 16:00:00,81.15853693,117.0656019,84.60451542,333.760397,33.30522718,32.93873627,0,32.93873627,32.30095169,0.637784574,50.14447829,28.62685853,21.51761976,1.004275483,20.51334428,1.416483686,2.043180193,-4.37906604,4.37906604,0.720981913,0.720981913,0.393657797,0.529883899,17.04288764,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.04890339,0.727594168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383899081,16.38227186,31.43280247,17.10986603,0,28.62685853,-0.085770687,94.92034383,0.085770687,85.07965617,0,0,31.43280247,17.10986603,42.63086759,2,8,36% +2018-02-07 17:00:00,71.20761488,127.8514424,261.6668195,619.6358424,62.05740462,142.9714304,80.81273044,62.15869992,60.18614491,1.972555014,65.31540957,0,65.31540957,1.871259717,63.44414985,1.242807332,2.231428624,-1.563762628,1.563762628,0.797572849,0.797572849,0.237161917,1.667954765,53.64715879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.85321177,1.355721295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.208427549,51.5676896,59.06163932,52.9234109,80.81273044,0,0.130419716,82.50615325,-0.130419716,97.49384675,0.666622382,0,112.9332142,52.9234109,147.5705281,2,9,31% +2018-02-07 18:00:00,62.71594236,140.5952645,415.9698058,738.9861075,77.21688779,321.7174878,243.6932179,78.02426983,74.88851373,3.135756102,103.1850694,0,103.1850694,2.328374067,100.8566953,1.094599688,2.453850278,-0.644141138,0.644141138,0.640308312,0.640308312,0.185630992,2.217224896,71.31357431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.98568792,1.686899085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606371889,68.54932017,73.59205981,70.23621925,243.6932179,0,0.329766981,70.74536718,-0.329766981,109.2546328,0.898377785,0,292.5206333,70.23621925,338.488834,2,10,16% +2018-02-07 19:00:00,56.44689928,155.7443637,524.6815357,793.9183665,85.87524971,482.7918039,395.5507388,87.24106513,83.28579409,3.955271043,129.8045685,0,129.8045685,2.589455625,127.2151129,0.985184245,2.718251938,-0.111888488,0.111888488,0.549287748,0.549287748,0.163671187,2.464356768,79.26218482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0574732,1.876051785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785418089,76.18982693,81.84289129,78.06587871,395.5507388,0,0.498225958,60.11730042,-0.498225958,119.8826996,0.949643928,0,457.4752487,78.06587871,508.567805,2,11,11% +2018-02-07 20:00:00,53.23434255,173.0320269,577.8353706,815.452398,89.75160555,600.4313117,509.0300811,91.4012306,87.04526349,4.355967102,142.8092176,0,142.8092176,2.706342055,140.1028755,0.929114553,3.019978581,0.301803252,-0.301803252,0.478542294,0.478542294,0.155323835,2.437325219,78.39275729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.6712182,1.960735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765833824,75.35410012,85.43705202,77.31483573,509.0300811,0,0.624230283,51.37428546,-0.624230283,128.6257145,0.969901355,0,579.1460172,77.31483573,629.7470309,2,12,9% +2018-02-07 21:00:00,53.64700791,191.0702667,571.1171877,812.8864399,89.27198918,659.2317044,568.3462725,90.88543193,86.58010933,4.305322602,141.1658542,0,141.1658542,2.691879852,138.4739743,0.936316922,3.334805257,0.701209705,-0.701209705,0.410239768,0.410239768,0.156311158,2.163105466,69.5729074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.22409432,1.95025779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567162546,66.87612492,84.79125687,68.82638271,568.3462725,0,0.699170566,45.63950376,-0.699170566,134.3604962,0.978486692,0,640.910521,68.82638271,685.956012,2,13,7% +2018-02-07 22:00:00,57.60495889,207.9656105,505.063454,785.1939618,84.39287019,649.3798692,563.7243737,85.65549543,81.84811377,3.807381656,125.0032383,0,125.0032383,2.544756413,122.4584818,1.005396198,3.629684634,1.170599736,-1.170599736,0.329969345,0.329969345,0.167093599,1.682585432,54.11773135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.6755202,1.843667358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219027418,52.02002184,79.89454762,53.8636892,563.7243737,0,0.717942828,44.11510332,-0.717942828,135.8848967,0.980356572,0,632.5454419,53.8636892,667.7981492,2,14,6% +2018-02-07 23:00:00,64.4402526,222.5733514,385.1241023,719.9000447,74.52173889,564.2063074,489.0284457,75.17786167,72.27463351,2.90322816,95.62490279,0,95.62490279,2.247105383,93.37779741,1.124694579,3.884637809,1.85591164,-1.85591164,0.212774107,0.212774107,0.193500584,1.059976665,34.09249319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.47312682,1.628020201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.767949485,32.77100122,70.24107631,34.39902142,489.0284457,0,0.67930048,47.21099579,-0.67930048,132.7890042,0.97639487,0,547.7259421,34.39902142,570.2394136,2,15,4% +2018-02-07 00:00:00,73.31589844,234.8391089,222.944121,576.8688357,57.32811709,395.3251585,338.0450487,57.2801098,55.59946284,1.680646956,55.78403753,0,55.78403753,1.728654249,54.05538328,1.279603822,4.098715662,3.220409607,-3.220409607,0,0,0.257141192,0.432163562,13.89986571,0.02015424,1,0.301079559,0,0.924196902,0.962958866,0.724496596,1,53.49656037,1.252404119,0.003414234,0.312029739,0.990363887,0.714860482,0.961238037,0.922476074,0.311336267,13.36107963,53.80789664,14.61348375,331.2320077,0,0.585999846,54.12634404,-0.585999846,125.873656,0.964675745,0,373.3393806,14.61348375,382.9036134,2,16,3% +2018-02-07 01:00:00,83.49144143,245.2911825,48.96642986,227.0312194,23.23207164,123.9714555,101.0707869,22.9006686,22.53153897,0.369129632,12.57301051,0,12.57301051,0.700532677,11.87247783,1.45720055,4.281138761,8.735661543,-8.735661543,0,0,0.474448958,0.175133169,5.632884742,0.49076565,1,0.11397717,0,0.949639495,0.988401458,0.724496596,1,21.8415876,0.50753354,0.068094565,0.312029739,0.825113077,0.549609673,0.961238037,0.922476074,0.119934221,5.414543071,21.96152182,5.922076611,51.46871644,0,0.445184531,63.56485439,-0.445184531,116.4351456,0.937687023,0,70.22306931,5.922076611,74.09895001,2,17,6% +2018-02-07 02:00:00,94.73399848,254.5963798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653420187,4.443545092,-12.03665212,12.03665212,1,0,#DIV/0!,0,0,1,0.370492106,0,0.082889223,0.961238037,1,0.516470291,0.791973695,0,0,0.115824807,0.076561418,0.724496596,0.448993192,0.992547092,0.953785128,0,0,0,0,0,0,0.262204446,74.79909355,-0.262204446,105.2009064,0.859309107,0,0,0,0,2,18,0% +2018-02-07 03:00:00,106.3417463,263.422717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856013606,4.597593736,-3.317345197,3.317345197,1,0.902546871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.054839986,86.85632316,-0.054839986,93.14367684,0,0,0,0,0,2,19,0% +2018-02-07 04:00:00,118.1576422,272.4980611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062239893,4.755988372,-1.726115106,1.726115106,1,0.825336758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164846855,99.48833808,0.164846855,80.51166192,0,0.746688178,0,0,0,2,20,0% +2018-02-07 05:00:00,129.8765158,282.8151824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266772822,4.936056108,-1.005972271,1.005972271,1,0.70218508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381879218,112.4501344,0.381879218,67.54986558,0,0.919068549,0,0,0,2,21,0% +2018-02-07 06:00:00,141.0349819,296.0837668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461524794,5.167636592,-0.560970192,0.560970192,1,0.626085242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581459918,125.5532912,0.581459918,54.44670885,0,0.96400955,0,0,0,2,22,0% +2018-02-07 07:00:00,150.6657538,315.5985321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629613475,5.508233499,-0.232161288,0.232161288,1,0.569855608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749979638,138.5886141,0.749979638,41.41138586,0,0.983331523,0,0,0,2,23,0% +2018-02-08 08:00:00,156.5544441,345.8346871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732390508,6.035953958,0.044087596,-0.044087596,1,0.522614267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875944162,151.1569146,0.875944162,28.84308537,0,0.992918736,0,0,0,2,0,0% +2018-02-08 09:00:00,155.6980576,22.08062182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.717443744,0.385379552,0.302623254,-0.302623254,1,0.478402065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95075758,161.9446555,0.95075758,18.05534451,0,0.997410359,0,0,0,2,1,0% +2018-02-08 10:00:00,148.6522224,49.61538005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.594470722,0.865951742,0.571004409,-0.571004409,1,0.432506185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969308173,165.7679952,0.969308173,14.23200477,0,0.998416818,0,0,0,2,2,0% +2018-02-08 11:00:00,138.5245369,67.26859276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417709264,1.174058427,0.882957828,-0.882957828,1,0.379159008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930317089,158.4842973,0.930317089,21.51570265,0,0.996254884,0,0,0,2,3,0% +2018-02-08 12:00:00,127.1681542,79.62848561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219502994,1.389779252,1.300392622,-1.300392622,1,0.307773454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836426056,146.7646222,0.836426056,33.23537784,0,0.990221853,0,0,0,2,4,0% +2018-02-08 13:00:00,115.3817636,89.53348204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013791672,1.562654052,1.986418697,-1.986418697,1,0.190456086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694018101,133.9490241,0.694018101,46.05097589,0,0.97795577,0,0,0,2,5,0% +2018-02-08 14:00:00,103.5715734,98.46572853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807664967,1.718551163,3.641678137,-3.641678137,1,0,#DIV/0!,0,0,0.084760302,1,0.267993066,0,0.92924616,0.968008123,0.724496596,1,0,0,0.013938823,0.312029739,0.961232618,0.685729214,0.961238037,0.922476074,0,0,0,0,0,0,-0.512783389,120.8494084,0.512783389,59.15059162,0,0.952492941,0,0,0,2,6,0% +2018-02-08 15:00:00,92.02875021,107.3287049,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606204698,1.873239282,22.44772694,-22.44772694,1,0,#DIV/0!,0,0,0.767907864,1,0.044518507,0,0.957074431,0.995836394,0.724496596,1,0,0,0.096204235,0.312029739,0.763645344,0.48814194,0.961238037,0.922476074,0,0,0,0,0,0,-0.305059646,107.7617524,0.305059646,72.2382476,0,0.886097627,0,0,0,2,7,0% +2018-02-08 16:00:00,80.9514811,116.8252381,88.01148877,342.7447349,34.10775092,33.74274417,0,33.74274417,33.07927639,0.663467779,50.92557554,28.55769659,22.36787895,1.028474535,21.33940441,1.41286988,2.038985054,-4.296481668,4.296481668,0.735104672,0.735104672,0.387537484,0.555827789,17.87733233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.7970587,0.745126299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.402695341,17.18437183,32.19975404,17.92949813,0,28.55769659,-0.083320599,94.77945967,0.083320599,85.22054033,0,0,32.19975404,17.92949813,43.93425198,2,8,36% +2018-02-08 17:00:00,70.97327679,127.627115,266.0280264,624.2665632,62.51143572,145.8006578,83.16874091,62.63191692,60.62648529,2.005431634,66.38652541,0,66.38652541,1.88495043,64.50157498,1.238717361,2.227513372,-1.552640528,1.552640528,0.795670858,0.795670858,0.234980639,1.691951084,54.41896291,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.2764837,1.36564017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.225812801,52.30957708,59.5022965,53.67521725,83.16874091,0,0.133226326,82.34393057,-0.133226326,97.65606943,0.674698801,0,115.6161463,53.67521725,150.7455025,2,9,30% +2018-02-08 18:00:00,62.45096798,140.4002668,420.7380744,741.9856093,77.56414927,325.3994118,247.0024065,78.39700531,75.22530399,3.171701326,104.3516626,0,104.3516626,2.338845282,102.0128173,1.089975012,2.450446926,-0.643043865,0.643043865,0.640120667,0.640120667,0.184352579,2.240697088,72.0685207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.30942352,1.694485445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623377413,69.27500336,73.93280094,70.96948881,247.0024065,0,0.332893797,70.5554884,-0.332893797,109.4445116,0.899801947,0,296.1860473,70.96948881,342.6341584,2,10,16% +2018-02-08 19:00:00,56.15212372,155.6050806,529.7001965,796.2696717,86.18611869,487.0146907,399.4342976,87.58039304,83.58728921,3.993103827,131.0307748,0,131.0307748,2.598829471,128.4319453,0.980039441,2.715820989,-0.114262792,0.114262792,0.549693778,0.549693778,0.162707356,2.487551599,80.00821031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.34728179,1.882843105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.802222665,76.90693501,82.14950446,78.78977812,399.4342976,0,0.501631937,59.89197307,-0.501631937,120.1080269,0.950325326,0,461.7420334,78.78977812,513.3083674,2,11,11% +2018-02-08 20:00:00,52.92010256,172.9805415,582.9919373,817.5762925,90.0522056,605.0529872,513.3213484,91.73163882,87.33679934,4.39483948,144.0685511,0,144.0685511,2.715406256,141.3531449,0.92363003,3.019079991,0.297217744,-0.297217744,0.479326462,0.479326462,0.154465611,2.460022904,79.12279288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95145354,1.967302589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.78227822,76.0558381,85.73373176,78.02314069,513.3213484,0,0.627857428,51.10777622,-0.627857428,128.8922238,0.970364086,0,583.8423329,78.02314069,634.9069181,2,12,9% +2018-02-08 21:00:00,53.33250864,191.1206041,576.3034477,815.0547754,89.57707579,664.160117,572.9397017,91.22041527,86.87599645,4.344418821,142.4325225,0,142.4325225,2.701079339,139.7314431,0.930827874,3.335683811,0.694217375,-0.694217375,0.411435527,0.411435527,0.155433871,2.18488808,70.27351114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.50851227,1.956922786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582943976,67.54957189,85.09145625,69.50649468,572.9397017,0,0.702946255,45.33613702,-0.702946255,134.663863,0.978870807,0,645.9254043,69.50649468,691.4160149,2,13,7% +2018-02-08 22:00:00,57.30860481,208.0998715,510.1674722,787.7018361,84.7187344,654.5608389,568.550829,86.01000988,82.16415198,3.845857901,126.2505926,0,126.2505926,2.554582421,123.6960101,1.000223844,3.632027931,1.159765141,-1.159765141,0.33182217,0.33182217,0.166060635,1.702869748,54.77014467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97930815,1.850786268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.233723336,52.64714634,80.21303148,54.49793261,568.550829,0,0.721784314,43.79800617,-0.721784314,136.2019938,0.980727228,0,637.8063102,54.49793261,673.4741171,2,14,6% +2018-02-08 23:00:00,64.17111935,222.7598949,390.0190801,723.2694491,74.9015308,569.6629035,494.0798017,75.58310186,72.64297329,2.940128571,96.82319897,0,96.82319897,2.258557511,94.56464145,1.119997317,3.887893608,1.836820413,-1.836820413,0.216038899,0.216038899,0.192045812,1.077837448,34.66695737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82718903,1.636317228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780889562,33.32319804,70.6080786,34.95951527,494.0798017,0,0.683119966,46.91206806,-0.683119966,133.0879319,0.976806414,0,553.2283979,34.95951527,576.1087015,2,15,4% +2018-02-08 00:00:00,73.07440073,235.0539602,227.4230432,582.4333936,57.85940695,401.2946771,343.4655338,57.82914332,56.11473235,1.714410964,56.88602444,0,56.88602444,1.744674598,55.14134985,1.275388892,4.102465525,3.174936496,-3.174936496,0,0,0.254413124,0.43616865,14.02868309,0.012630849,1,0.305130739,0,0.923563113,0.962325076,0.724496596,1,53.97314051,1.264010807,0.002147256,0.312029739,0.993929118,0.718425714,0.961238037,0.922476074,0.314872571,13.48490379,54.28801308,14.7489146,339.1272726,0,0.589707832,53.86372218,-0.589707832,126.1362778,0.96521225,0,381.617811,14.7489146,391.2706806,2,16,3% +2018-02-08 01:00:00,83.27559828,245.5228186,52.06922946,237.8217332,24.22180079,130.5857424,106.7017985,23.88394397,23.49142412,0.392519846,13.35516418,0,13.35516418,0.730376663,12.62478752,1.453433377,4.285181573,8.455538542,-8.455538542,0,0,0.465184544,0.182594166,5.872856031,0.478032628,1,0.117718875,0,0.949207061,0.987969024,0.724496596,1,22.77351542,0.529155406,0.066656184,0.312029739,0.828428101,0.552924697,0.961238037,0.922476074,0.125008405,5.645212602,22.89852383,6.174368008,55.69485734,0,0.448662942,63.342068,-0.448662942,116.657932,0.938557767,0,75.17136478,6.174368008,79.21236515,2,17,5% +2018-02-08 02:00:00,94.53122507,254.8424029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649881123,4.447839005,-12.57324383,12.57324383,1,0,#DIV/0!,0,0,1,0.404869956,0,0.079366902,0.961238037,1,0.524201605,0.799705009,0,0,0.115824807,0.085294062,0.724496596,0.448993192,0.991608716,0.952846753,0,0,0,0,0,0,0.265496206,74.60356049,-0.265496206,105.3964395,0.861673392,0,0,0,0,2,18,0% +2018-02-08 03:00:00,106.1488108,263.6864931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852646246,4.602197497,-3.355472792,3.355472792,1,0.896026668,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.05783684,86.68434288,-0.05783684,93.31565712,0,0,0,0,0,2,19,0% +2018-02-08 04:00:00,117.9665681,272.786877,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058905021,4.761029159,-1.736382765,1.736382765,1,0.827092631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162171996,99.33298915,0.162171996,80.66701085,0,0.741685363,0,0,0,2,20,0% +2018-02-08 05:00:00,129.6769167,283.1384674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26328916,4.941698495,-1.009422416,1.009422416,1,0.702775089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.379531119,112.3046421,0.379531119,67.69535787,0,0.918258497,0,0,0,2,21,0% +2018-02-08 06:00:00,140.8118467,296.4451384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45763035,5.173943717,-0.561737305,0.561737305,1,0.626216426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.579420721,125.4098095,0.579420721,54.59019046,0,0.963706918,0,0,0,2,22,0% +2018-02-08 07:00:00,150.3989319,315.9540891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624956554,5.51443914,-0.231484391,0.231484391,1,0.569739852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748210111,138.4355691,0.748210111,41.56443085,0,0.983173851,0,0,0,2,23,0% +2018-02-09 08:00:00,156.2400979,345.9733334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726904132,6.038373792,0.045811421,-0.045811421,1,0.522319475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874386425,150.9724422,0.874386425,29.02755782,0,0.992817045,0,0,0,2,0,0% +2018-02-09 09:00:00,155.3964654,21.82671708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712179967,0.380948078,0.305371273,-0.305371273,1,0.477932126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949339109,161.6842464,0.949339109,18.31575362,0,0.997331781,0,0,0,2,1,0% +2018-02-09 10:00:00,148.4065196,49.22402174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590182398,0.85912125,0.575053491,-0.575053491,1,0.431813751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967946812,165.4541144,0.967946812,14.54588559,0,0.998344269,0,0,0,2,2,0% +2018-02-09 11:00:00,138.3197266,66.89864497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414134649,1.16760162,0.889046073,-0.889046073,1,0.378117857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928926716,158.2681229,0.928926716,21.73187705,0,0.996174441,0,0,0,2,3,0% +2018-02-09 12:00:00,126.9835774,79.30100801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216281522,1.38406369,1.310379281,-1.310379281,1,0.306065635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834922519,146.6077712,0.834922519,33.3922288,0,0.990114204,0,0,0,2,4,0% +2018-02-09 13:00:00,115.2031157,89.23975458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010673677,1.557527541,2.006133374,-2.006133374,1,0.187084678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692325015,133.8144369,0.692325015,46.18556307,0,0.977779585,0,0,0,2,5,0% +2018-02-09 14:00:00,103.3888154,98.19531004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804475239,1.71383147,3.702693051,-3.702693051,1,0,#DIV/0!,0,0,0.093417945,1,0.263780522,0,0.929872625,0.968634588,0.724496596,1,0,0,0.015302504,0.312029739,0.957521449,0.682018045,0.961238037,0.922476074,0,0,0,0,0,0,-0.510837391,120.719624,0.510837391,59.28037596,0,0.952121495,0,0,0,2,6,0% +2018-02-09 15:00:00,91.83388588,107.0742158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602803673,1.86879761,24.91874235,-24.91874235,1,0,#DIV/0!,0,0,0.788637232,1,0.040108914,0,0.957508031,0.996269994,0.724496596,1,0,0,0.098087093,0.312029739,0.759754207,0.484250803,0.961238037,0.922476074,0,0,0,0,0,0,-0.302814749,107.6267422,0.302814749,72.37325782,0,0.884882547,0,0,0,2,7,0% +2018-02-09 16:00:00,80.73944364,116.5836318,91.5282287,351.7959254,34.91567685,34.55281882,0,34.55281882,33.86284037,0.68997845,51.66494502,28.42002982,23.24491521,1.052836482,22.19207873,1.409169128,2.034768229,-4.215254538,4.215254538,0.74899533,0.74899533,0.381474408,0.582857355,18.74669609,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.5502502,0.762776447,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.42227817,18.02003735,32.97252837,18.7828138,0,28.42002982,-0.080785557,94.633721,0.080785557,85.366279,0,0,32.97252837,18.7828138,45.26550434,2,8,37% +2018-02-09 17:00:00,70.73403411,127.4017613,270.4795843,628.9074889,62.96922525,148.7117217,85.60226153,63.10946013,61.07047077,2.038989357,67.47966119,0,67.47966119,1.898754473,65.58090672,1.234541788,2.223580208,-1.541348385,1.541348385,0.793739787,0.793739787,0.232805834,1.716336354,55.20327703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.70325944,1.375641152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243479846,53.06348964,59.94673928,54.43913079,85.60226153,0,0.136112645,82.17703635,-0.136112645,97.82296365,0.6826572,0,118.3837395,54.43913079,154.0130618,2,9,30% +2018-02-09 18:00:00,62.18110238,140.2048213,425.5844595,744.987983,77.91468006,329.1585238,250.3850234,78.7735004,75.56526498,3.208235424,105.5372945,0,105.5372945,2.349415078,103.1878795,1.085264969,2.447035759,-0.641810271,0.641810271,0.63990971,0.63990971,0.183076892,2.264481389,72.83350557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63620696,1.702143227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640609058,70.01033591,74.27681602,71.71247914,250.3850234,0,0.336092701,70.36100178,-0.336092701,109.6389982,0.901231521,0,299.9316914,71.71247914,346.8660748,2,10,16% +2018-02-09 19:00:00,55.85254148,155.4666151,534.7840499,798.618961,86.49950863,491.3051435,403.3824861,87.92265736,83.8912293,4.031428062,132.2728638,0,132.2728638,2.608279334,129.6645844,0.974810744,2.71340431,-0.1165335,0.1165335,0.550082092,0.550082092,0.161746613,2.510994277,80.76220743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.63944056,1.889689499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.819206806,77.63170572,82.45864737,79.52139522,403.3824861,0,0.505100061,59.66200512,-0.505100061,120.3379949,0.951009713,0,466.0793098,79.52139522,518.1244725,2,11,11% +2018-02-09 20:00:00,52.60143112,172.9319435,588.2003806,819.6937368,90.35447395,609.7294304,517.6653743,92.06405612,87.62995319,4.434102926,145.340513,0,145.340513,2.724520762,142.6159922,0.918068164,3.018231796,0.292724938,-0.292724938,0.480094777,0.480094777,0.153611723,2.482912799,79.85901057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.23324417,1.973906018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.798861871,76.76351854,86.03210604,78.73742456,517.6653743,0,0.63153511,50.8365288,-0.63153511,129.1634712,0.970827838,0,588.5960622,78.73742456,640.1281318,2,12,9% +2018-02-09 21:00:00,53.01440519,191.1759697,581.5287849,817.2112613,89.88287527,669.1286161,577.5722315,91.55638457,87.17257495,4.383809619,143.7086869,0,143.7086869,2.710300322,140.9983866,0.925275922,3.336650122,0.687328401,-0.687328401,0.412613611,0.412613611,0.154563072,2.206817895,70.97884939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.79359481,1.963603357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598832053,68.22756985,85.39242686,70.1911732,577.5722315,0,0.706760001,45.02809221,-0.706760001,134.9719078,0.979254627,0,650.9827069,70.1911732,696.9214259,2,13,7% +2018-02-09 22:00:00,57.00974098,208.2403119,515.2993445,790.1891898,85.0441414,659.766159,573.4018681,86.36429088,82.47974676,3.884544122,127.5046866,0,127.5046866,2.564394643,124.940292,0.995007686,3.634479078,1.149081862,-1.149081862,0.333649118,0.333649118,0.165038326,1.723271378,55.42633124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.28266985,1.857895189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.248504247,53.27789783,80.5311741,55.13579302,573.4018681,0,0.72565137,43.47693886,-0.72565137,136.5230611,0.981096389,0,643.0936761,55.13579302,679.1789499,2,14,6% +2018-02-09 23:00:00,63.90047173,222.9526957,394.9336864,726.600474,75.27904932,575.1269586,499.1406735,75.98628518,73.00910823,2.977176949,98.02618574,0,98.02618574,2.269941087,95.75624465,1.115273625,3.891258617,1.818042764,-1.818042764,0.219250066,0.219250066,0.190611872,1.095810332,35.24502709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17913187,1.64456459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.793910855,33.87886065,70.97304272,35.52342524,499.1406735,0,0.68695341,46.6105739,-0.68695341,133.3894261,0.97721486,0,558.7407262,35.52342524,581.9900975,2,15,4% +2018-02-09 00:00:00,72.83208639,235.274653,231.9203356,587.91326,58.38419416,407.2514721,348.8794634,58.37200874,56.62369529,1.748313453,57.99226932,0,57.99226932,1.760498869,56.23177045,1.271159709,4.106317342,3.13057946,-3.13057946,0,0,0.251742453,0.440124717,14.15592382,0.005179957,1,0.309185516,0,0.922925399,0.961687362,0.724496596,1,54.44292297,1.275475437,0.000883674,0.312029739,0.99749726,0.721993856,0.961238037,0.922476074,0.318395442,13.60721243,54.76131841,14.88268786,347.0722829,0,0.59341996,53.59992357,-0.59341996,126.4000764,0.965742639,0,389.9438207,14.88268786,399.6842423,2,16,2% +2018-02-09 01:00:00,83.05919654,245.7598269,55.23493077,248.5412229,25.20026365,137.2322957,112.3755287,24.85676696,24.44038272,0.416384239,14.15222938,0,14.15222938,0.759880928,13.39234845,1.449656454,4.289318149,8.192016734,-8.192016734,0,0,0.456237806,0.189970232,6.110095681,0.46545894,1,0.121469101,0,0.948770409,0.987532372,0.724496596,1,23.69471324,0.550531146,0.065221669,0.312029739,0.831750623,0.556247219,0.961238037,0.922476074,0.130031345,5.873256378,23.82474458,6.423787523,60.06933423,0,0.452140403,63.11890686,-0.452140403,116.8810931,0.939414882,0,80.25477109,6.423787523,84.45901155,2,17,5% +2018-02-09 02:00:00,94.32823585,255.0934508,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646338293,4.452220616,-13.16031157,13.16031157,1,0,#DIV/0!,0,0,1,0.438422939,0,0.075840303,0.961238037,1,0.532041636,0.80754504,0,0,0.115824807,0.094146452,0.724496596,0.448993192,0.990639272,0.951877309,0,0,0,0,0,0,0.26877928,74.4083602,-0.26877928,105.5916398,0.863973756,0,0,0,0,2,18,0% +2018-02-09 03:00:00,105.9556173,263.9551061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849274383,4.606885679,-3.394404887,3.394404887,1,0.889368887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.060823361,86.51292581,-0.060823361,93.48707419,0,0,0,0,0,2,19,0% +2018-02-09 04:00:00,117.7749906,273.0804799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055561362,4.766153498,-1.746697757,1.746697757,1,0.828856598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159505814,99.1782131,0.159505814,80.8217869,0,0.736531803,0,0,0,2,20,0% +2018-02-09 05:00:00,129.4763427,283.4665395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259788483,4.947424433,-1.012826991,1.012826991,1,0.703357306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377186859,112.1595387,0.377186859,67.84046126,0,0.917439709,0,0,0,2,21,0% +2018-02-09 06:00:00,140.5870097,296.8110951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453706204,5.180330867,-0.562437286,0.562437286,1,0.62633613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577377673,125.2663127,0.577377673,54.73368729,0,0.96340157,0,0,0,2,22,0% +2018-02-09 07:00:00,150.1295035,316.3135878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62025414,5.520713576,-0.230730165,0.230730165,1,0.569610872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746426724,138.2817905,0.746426724,41.71820946,0,0.983014188,0,0,0,2,23,0% +2018-02-10 08:00:00,155.9222015,346.1178991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.721355792,6.04089694,0.047623614,-0.047623614,1,0.522009572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872803191,150.7860407,0.872803191,29.2139593,0,0.992713317,0,0,0,2,0,0% +2018-02-10 09:00:00,155.0896245,21.58260489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.706824583,0.376687516,0.308224984,-0.308224984,1,0.477444113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94788268,161.4205376,0.94788268,18.57946242,0,0.997250856,0,0,0,2,1,0% +2018-02-10 10:00:00,148.1545253,48.83791403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585784268,0.8523824,0.579238698,-0.579238698,1,0.431098038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966535065,165.1354673,0.966535065,14.86453267,0,0.998268819,0,0,0,2,2,0% +2018-02-10 11:00:00,138.1087314,66.53012851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410452089,1.161169794,0.895329279,-0.895329279,1,0.377043365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927474421,158.0444846,0.927474421,21.95551537,0,0.996090157,0,0,0,2,3,0% +2018-02-10 12:00:00,126.7932027,78.97333117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212958857,1.37834465,1.320694065,-1.320694065,1,0.304301703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833347214,146.444129,0.833347214,33.55587097,0,0.990000999,0,0,0,2,4,0% +2018-02-10 13:00:00,115.0190272,88.94517743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007460727,1.5523862,2.026580889,-2.026580889,1,0.183587947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690552685,133.6738746,0.690552685,46.32612541,0,0.977594228,0,0,0,2,5,0% +2018-02-10 14:00:00,103.2008917,97.92377835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801195351,1.709092348,3.766862024,-3.766862024,1,0,#DIV/0!,0,0,0.102348158,1,0.259487602,0,0.930507193,0.969269157,0.724496596,1,0,0,0.016697969,0.312029739,0.953738864,0.67823546,0.961238037,0.922476074,0,0,0,0,0,0,-0.508807559,120.5844345,0.508807559,59.41556554,0,0.95173102,0,0,0,2,6,0% +2018-02-10 15:00:00,91.63404878,106.8185205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599315858,1.864334884,28.06219485,-28.06219485,1,0,#DIV/0!,0,0,0.810202175,1,0.035620059,0,0.957944661,0.996706624,0.724496596,1,0,0,0.10001693,0.312029739,0.755795527,0.480292123,0.961238037,0.922476074,0,0,0,0,0,0,-0.300484637,107.4867139,0.300484637,72.51328615,0,0.883602142,0,0,0,2,7,0% +2018-02-10 16:00:00,80.52251671,116.3408426,95.15360998,360.8996253,35.72788056,35.36786125,0,35.36786125,34.65055314,0.717308105,52.35874035,28.21031854,24.14842181,1.077327421,23.07109439,1.405383039,2.030530759,-4.135452869,4.135452869,0.762642219,0.762642219,0.375475829,0.610977456,19.65113522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.30742968,0.780520049,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442651087,18.88941864,33.75008077,19.66993869,0,28.21031854,-0.078166661,94.48319309,0.078166661,85.51680691,0,0,33.75008077,19.66993869,46.62366224,2,8,38% +2018-02-10 17:00:00,70.48998843,127.1754198,275.0193051,633.5538053,63.43034824,151.7037735,88.11287255,63.5909009,61.51768921,2.07321169,68.59427361,0,68.59427361,1.912659032,66.68161458,1.230282388,2.219629804,-1.529905348,1.529905348,0.791782913,0.791782913,0.230639621,1.741095664,55.99962154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.13314281,1.385714958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261417882,53.82896627,60.39456069,55.21468123,88.11287255,0,0.139077174,82.00555021,-0.139077174,97.99444979,0.690487373,0,121.2353866,55.21468123,157.3722912,2,9,30% +2018-02-10 18:00:00,61.90645324,140.0089476,430.506363,747.9906616,78.26819258,332.9929558,253.8394992,79.15345661,75.9081178,3.245338811,106.7413267,0,106.7413267,2.360074785,104.3812519,1.080471437,2.443617118,-0.640445567,0.640445567,0.639676332,0.639676332,0.181804961,2.288564127,73.60808922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96577013,1.709866148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65805692,70.75489517,74.62382705,72.46476132,253.8394992,0,0.339361856,70.16200033,-0.339361856,109.8379997,0.902664644,0,303.7557681,72.46476132,351.1825051,2,10,16% +2018-02-10 19:00:00,55.54826307,155.3289796,539.9302874,800.9645205,86.81517976,495.6607633,407.3931589,88.26760435,84.19738177,4.070222574,133.5301473,0,133.5301473,2.617797984,130.9123493,0.969500084,2.711002117,-0.118701882,0.118701882,0.550452907,0.550452907,0.160789609,2.534671716,81.52375528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.93372597,1.896585728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.83636103,78.36373448,82.770087,80.26032021,407.3931589,0,0.508628221,59.42750066,-0.508628221,120.5724993,0.951696371,0,470.4846778,80.26032021,523.0134522,2,11,11% +2018-02-10 20:00:00,52.27844194,172.8862586,593.4578185,821.8034071,90.65819379,614.4579293,522.0596788,92.39825047,87.92451476,4.473735713,146.6243979,0,146.6243979,2.733679036,143.8907189,0.91243094,3.017434444,0.288325137,-0.288325137,0.480847187,0.480847187,0.152762658,2.505982524,80.60101223,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.51638796,1.980541156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815575808,77.47675877,86.33196376,79.45729992,522.0596788,0,0.63526103,50.56065274,-0.63526103,129.4393473,0.971292197,0,593.4044562,79.45729992,645.4076698,2,12,9% +2018-02-10 21:00:00,52.69281804,191.2364003,586.7903655,819.3547651,90.18918687,674.1343339,582.2412101,91.89312376,87.46965013,4.423473637,144.9936545,0,144.9936545,2.719536747,142.2741178,0.919663167,3.337704835,0.680543869,-0.680543869,0.413773834,0.413773834,0.153699161,2.228883546,71.68855657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.07915477,1.970295115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614818542,68.90976739,85.69397331,70.8800625,582.2412101,0,0.710609415,44.71547936,-0.710609415,135.2845206,0.979637859,0,656.0795057,70.8800625,702.469089,2,13,7% +2018-02-10 22:00:00,56.7084912,208.3869471,520.4563944,792.654988,85.36890707,664.9929438,578.2748041,86.71813969,82.79471955,3.923420142,128.764866,0,128.764866,2.574187526,126.1906784,0.989749885,3.637038346,1.138551175,-1.138551175,0.335449972,0.335449972,0.164027012,1.743780273,56.0859678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.58543368,1.8649901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263362872,53.91196558,80.84879655,55.77695568,578.2748041,0,0.72954162,43.15201979,-0.72954162,136.8479802,0.981463814,0,648.4045915,55.77695568,684.9094935,2,14,6% +2018-02-10 23:00:00,63.62842607,223.15173,399.8654832,729.8921837,75.65413667,580.5957001,504.2084599,76.38724023,73.37288532,3.014354916,99.23326724,0,99.23326724,2.281251355,96.95201589,1.110525533,3.894732421,1.799577856,-1.799577856,0.222407751,0.222407751,0.189198968,1.113886742,35.82642658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.52880824,1.652758841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807007153,34.43772395,71.33581539,36.09048279,504.2084599,0,0.690798547,46.30664594,-0.690798547,133.6933541,0.977619998,0,564.2600891,36.09048279,587.8805883,2,15,4% +2018-02-10 00:00:00,72.58905593,235.5011299,236.4337488,593.3077531,58.90238964,413.192934,354.2843313,58.90860274,57.12626527,1.782337469,59.10222412,0,59.10222412,1.776124374,57.32609974,1.266918027,4.110270108,3.087311946,-3.087311946,0.002192252,0.002192252,0.249128519,0.446964999,14.3759308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.91193908,1.286796063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.32382462,13.8186915,55.2357637,15.10548757,354.2843313,0,0.597134168,53.33507793,-0.597134168,126.6649221,0.966266724,0,397.5689239,15.10548757,407.4551634,2,16,2% +2018-02-10 01:00:00,82.84232763,246.0021268,58.45953197,259.173645,26.16642629,143.9014965,118.0833919,25.81810464,25.37741199,0.440692645,14.96320464,0,14.96320464,0.789014296,14.17419035,1.445871377,4.29354708,7.943743921,-7.943743921,0,0,0.44759897,0.197253574,6.344352997,0.453045764,1,0.125226507,0,0.94832968,0.987091643,0.724496596,1,24.60418001,0.571638172,0.063791492,0.312029739,0.835079405,0.559576001,0.961238037,0.922476074,0.134998699,6.09843342,24.73917871,6.670071592,64.58621138,0,0.455614968,62.8954907,-0.455614968,117.1045093,0.940258215,0,85.4668945,6.670071592,89.83232296,2,17,5% +2018-02-10 02:00:00,94.12509235,255.3494256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64279277,4.45668822,-13.80517839,13.80517839,1,0,#DIV/0!,0,0,1,0.471173184,0,0.072310291,0.961238037,1,0.539988684,0.815492088,0,0,0.115824807,0.103117644,0.724496596,0.448993192,0.989638201,0.950876238,0,0,0,0,0,0,0.272052243,74.21357614,-0.272052243,105.7864239,0.866211771,0,0,0,0,2,18,0% +2018-02-10 03:00:00,105.7622097,264.2284417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845898783,4.611656284,-3.434160354,3.434160354,1,0.882570302,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063798508,86.34213049,-0.063798508,93.65786951,0,0,0,0,0,2,19,0% +2018-02-10 04:00:00,117.5829384,273.3787335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052209419,4.771359004,-1.757058696,1.757058696,1,0.830628423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.15684896,99.02404567,0.15684896,80.97595433,0,0.731221987,0,0,0,2,20,0% +2018-02-10 05:00:00,129.2748117,283.7992263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256271104,4.953230913,-1.016184927,1.016184927,1,0.703931547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374846712,112.014839,0.374846712,67.98516095,0,0.916612142,0,0,0,2,21,0% +2018-02-10 06:00:00,140.3604874,297.1814052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449752644,5.186793997,-0.563069654,0.563069654,1,0.626444272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575330716,125.1227958,0.575330716,54.87720424,0,0.963093463,0,0,0,2,22,0% +2018-02-10 07:00:00,149.8575062,316.6767222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615506892,5.527051467,-0.229898466,0.229898466,1,0.569468643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744629154,138.127256,0.744629154,41.87274402,0,0.982852481,0,0,0,2,23,0% +2018-02-11 08:00:00,155.6008465,346.2680322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.71574709,6.043517256,0.049524172,-0.049524172,1,0.521684557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.871193955,150.5976826,0.871193955,29.4023174,0,0.992607499,0,0,0,2,0,0% +2018-02-11 09:00:00,154.7776847,21.348129,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701380206,0.37259514,0.311184392,-0.311184392,1,0.476938024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9463877,161.1535524,0.9463877,18.84644764,0,0.99716753,0,0,0,2,1,0% +2018-02-11 10:00:00,147.8963662,48.45723773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581278542,0.845738345,0.583560297,-0.583560297,1,0.430359001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965072356,164.8122122,0.965072356,15.18778785,0,0.998190413,0,0,0,2,2,0% +2018-02-11 11:00:00,137.8916427,66.16325787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406663176,1.154766694,0.901808616,-0.901808616,1,0.375935334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925959747,157.8135244,0.925959747,22.18647556,0,0.996001972,0,0,0,2,3,0% +2018-02-11 12:00:00,126.5971068,78.64562703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209536337,1.372625134,1.331341277,-1.331341277,1,0.302480922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831699894,146.2737563,0.831699894,33.72624371,0,0.989882161,0,0,0,2,4,0% +2018-02-11 13:00:00,114.8295732,88.64988326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004154131,1.547232344,2.047780484,-2.047780484,1,0.179962602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688701153,133.5273816,0.688701153,46.47261842,0,0.97739957,0,0,0,2,5,0% +2018-02-11 14:00:00,103.0078815,97.65123661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797826688,1.704335597,3.834366872,-3.834366872,1,0,#DIV/0!,0,0,0.111554674,1,0.255116553,0,0.931149305,0.969911269,0.724496596,1,0,0,0.018124894,0.312029739,0.949886784,0.674383379,0.961238037,0.922476074,0,0,0,0,0,0,-0.506694285,120.4438875,0.506694285,59.55611247,0,0.951321169,0,0,0,2,6,0% +2018-02-11 15:00:00,91.42932581,106.5616985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595742768,1.859852495,32.19093342,-32.19093342,1,0,#DIV/0!,0,0,0.832630945,1,0.031054661,0,0.958383798,0.997145761,0.724496596,1,0,0,0.101993474,0.312029739,0.751772058,0.476268654,0.961238037,0.922476074,0,0,0,0,0,0,-0.298070084,107.3417247,0.298070084,72.65827529,0,0.882254216,0,0,0,2,7,0% +2018-02-11 16:00:00,80.30079427,116.0969292,98.88635056,370.0418691,36.54328205,36.18681434,0,36.18681434,35.44136726,0.74544708,53.00328403,27.92522868,25.07805534,1.101914784,23.97614056,1.401513252,2.026273666,-4.057132341,4.057132341,0.776035818,0.776035818,0.369548293,0.640190996,20.59074306,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.06759029,0.79833351,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.463816197,19.79260544,34.53140649,20.59093895,0,27.92522868,-0.075465051,94.32794352,0.075465051,85.67205648,0,0,34.53140649,20.59093895,48.00776421,2,8,39% +2018-02-11 17:00:00,70.24124259,126.9481281,279.6449506,638.200893,63.89439379,154.7759026,90.70007879,64.07582383,61.96774207,2.10808176,69.72980761,0,69.72980761,1.926651718,67.80315589,1.225940954,2.215662814,-1.518329772,1.518329772,0.789803373,0.789803373,0.228483989,1.766214007,56.8075138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.56575073,1.395852611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.279616036,54.60554304,60.84536677,56.00139565,90.70007879,0,0.142118383,81.82955348,-0.142118383,98.17044652,0.698180629,0,124.1704048,56.00139565,160.8221983,2,9,30% +2018-02-11 18:00:00,61.62712931,139.8126641,435.5011563,750.9911797,78.62440572,336.9008056,257.3642242,79.53658146,76.25358979,3.282991672,107.9631133,0,107.9631133,2.370815926,105.5922974,1.075596315,2.440191325,-0.63895494,0.63895494,0.63942142,0.63942142,0.180537766,2.312931556,74.39182949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29785095,1.717648067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675711039,71.50825614,74.97356199,73.2259042,257.3642242,0,0.342699397,69.95857851,-0.342699397,110.0414215,0.904099539,0,307.6564384,73.2259042,355.5813282,2,10,16% +2018-02-11 19:00:00,55.23939992,155.1921857,545.1360817,803.3047074,87.13289665,500.0791306,411.4641462,88.61498438,84.50551833,4.10946605,134.8019327,0,134.8019327,2.62737832,132.1745544,0.964109405,2.708614613,-0.120769308,0.120769308,0.550806458,0.550806458,0.159836965,2.558570781,82.29243136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.22991855,1.903526649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853675821,79.10261517,83.08359437,81.00614182,411.4641462,0,0.512214285,59.18856498,-0.512214285,120.811435,0.952384604,0,474.9557125,81.00614182,527.9726122,2,11,11% +2018-02-11 20:00:00,51.95124956,172.8435125,598.7613595,823.9040403,90.9631522,619.2357635,526.50177,92.73399359,88.22027754,4.513716046,147.9194985,0,147.9194985,2.742874657,145.1766238,0.906720355,3.016688383,0.284018497,-0.284018497,0.481583666,0.481583666,0.151918875,2.529219677,81.34839896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.8006864,1.987203352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.832411046,78.19517531,86.63309744,80.18237867,526.50177,0,0.639032878,50.28025862,-0.639032878,129.7197414,0.971756764,0,598.2647539,80.18237867,650.7425171,2,12,9% +2018-02-11 21:00:00,52.36786852,191.301933,592.0853543,821.4842141,90.49581395,679.1744055,586.9439848,92.23042077,87.76703127,4.463389498,146.2867318,0,146.2867318,2.728782685,143.5579491,0.913991728,3.338848597,0.673864669,-0.673864669,0.414916044,0.414916044,0.152842514,2.251073657,72.40226681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36500884,1.976993766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630895201,69.59581282,85.99590404,71.57280658,586.9439848,0,0.714492104,44.39840929,-0.714492104,135.6015907,0.98002022,0,661.2128773,71.57280658,708.0558478,2,13,7% +2018-02-11 22:00:00,56.40497998,208.5397924,525.6359492,795.0982635,85.69285218,670.238323,583.1669607,87.07136233,83.10889651,3.962465815,130.0304772,0,130.0304772,2.583955666,127.4465215,0.984452615,3.639705999,1.128174085,-1.128174085,0.337224559,0.337224559,0.163027001,1.764386374,56.74873084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88743253,1.872067084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278291922,54.54903863,81.16572445,56.42110571,583.1669607,0,0.733452691,42.82336831,-0.733452691,137.1766317,0.981829277,0,653.73612,56.42110571,690.6626053,2,14,6% +2018-02-11 23:00:00,63.3550989,223.3569726,404.81204,733.1437311,76.02664144,586.0663839,509.280582,76.78580184,73.73415769,3.051644151,100.4438496,0,100.4438496,2.292483748,98.15136585,1.105755074,3.898314579,1.781424451,-1.781424451,0.225512167,0.225512167,0.187807263,1.132058077,36.41087917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.87607699,1.660896671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820172223,34.99952202,71.69624921,36.66041869,509.280582,0,0.694653123,46.000418,-0.694653123,133.999582,0.978021629,0,569.7836738,36.66041869,593.7771846,2,15,4% +2018-02-11 00:00:00,72.34540958,235.7333314,240.9610439,598.6163438,59.41391426,419.1165081,359.6776765,59.43883166,57.62236553,1.816466132,60.21534358,0,60.21534358,1.791548729,58.42379485,1.262665596,4.114322789,3.045107542,-3.045107542,0.009409631,0.009409631,0.246570621,0.460765005,14.81978642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.38880952,1.297970955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333822677,14.24534241,55.7226322,15.54331336,359.6776765,0,0.600848407,53.0693155,-0.600848407,126.9306845,0.966784335,0,403.4533753,15.54331336,413.626163,2,16,3% +2018-02-11 01:00:00,82.62508159,246.249636,61.7391009,269.7047262,27.11940472,150.5843886,123.8173186,26.76707003,26.30165461,0.465415421,15.78710992,0,15.78710992,0.817750112,14.9693598,1.442079718,4.297866931,7.709506922,-7.709506922,0,0,0.439258174,0.204437528,6.575413651,0.44079396,1,0.128989795,0,0.947885016,0.986646979,0.724496596,1,25.50105696,0.592457173,0.062366094,0.312029739,0.838413251,0.562909847,0.961238037,0.922476074,0.139906839,6.32053771,25.6409638,6.912994882,69.23939237,0,0.45908472,62.67193812,-0.45908472,117.3280619,0.941087641,0,90.80130019,6.912994882,95.32571708,2,17,5% +2018-02-11 02:00:00,93.92185542,255.6102287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639245617,4.461240093,-14.51666178,14.51666178,1,0,#DIV/0!,0,0,1,0.503142391,0,0.068777707,0.961238037,1,0.548041012,0.823544416,0,0,0.115824807,0.112206609,0.724496596,0.448993192,0.988604959,0.949842996,0,0,0,0,0,0,0.275313692,74.01929096,-0.275313692,105.980709,0.868388982,0,0,0,0,2,18,0% +2018-02-11 03:00:00,105.5686312,264.5063849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842520202,4.61650731,-3.474758879,3.474758879,1,0.875627546,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.066761258,86.17201448,-0.066761258,93.82798552,0,0,0,0,0,2,19,0% +2018-02-11 04:00:00,117.39044,273.6815011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048849689,4.776643296,-1.767464221,1.767464221,1,0.832407873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.154202067,98.87052172,0.154202067,81.12947828,0,0.725750132,0,0,0,2,20,0% +2018-02-11 05:00:00,129.0723419,284.1363566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252737339,4.959114948,-1.019495186,1.019495186,1,0.704497634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.372510942,111.8705572,0.372510942,68.12944284,0,0.915775755,0,0,0,2,21,0% +2018-02-11 06:00:00,140.1322972,297.5558401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445769975,5.193329118,-0.563633956,0.563633956,1,0.626540773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.57327979,124.9792536,0.57327979,55.02074639,0,0.962782552,0,0,0,2,22,0% +2018-02-11 07:00:00,149.582979,317.0431947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610715489,5.533447618,-0.228989163,0.228989163,1,0.569313143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742817081,137.9719438,0.742817081,42.02805621,0,0.982688678,0,0,0,2,23,0% +2018-02-12 08:00:00,155.2761246,346.4233923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.710079623,6.046228802,0.051513083,-0.051513083,1,0.521344434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869558223,150.4073427,0.869558223,29.59265732,0,0.992499537,0,0,0,2,0,0% +2018-02-12 09:00:00,154.4607955,21.12312151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695849447,0.368668019,0.314249506,-0.314249506,1,0.476413859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944853599,160.8833177,0.944853599,19.11668232,0,0.997081749,0,0,0,2,1,0% +2018-02-12 10:00:00,147.632172,48.08215515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576667484,0.839191919,0.588018582,-0.588018582,1,0.42959659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96355814,164.4845036,0.96355814,15.51549639,0,0.998108995,0,0,0,2,2,0% +2018-02-12 11:00:00,137.6685552,65.7982379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402769565,1.148395893,0.908485322,-0.908485322,1,0.37479355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924382272,157.5753905,0.924382272,22.42460947,0,0.995909824,0,0,0,2,3,0% +2018-02-12 12:00:00,126.3953695,78.31806264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206015356,1.366908057,1.342325449,-1.342325449,1,0.300602518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829980355,146.0967201,0.829980355,33.90327993,0,0.98975761,0,0,0,2,4,0% +2018-02-12 13:00:00,114.6348313,88.35400175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000755244,1.542068238,2.069752542,-2.069752542,1,0.176205159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686770507,133.375007,0.686770507,46.62499296,0,0.977195476,0,0,0,2,5,0% +2018-02-12 14:00:00,102.8098667,97.37778589,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794370677,1.699562982,3.905405968,-3.905405968,1,0,#DIV/0!,0,0,0.12104144,1,0.250669624,0,0.931798405,0.970560368,0.724496596,1,0,0,0.019582959,0.312029739,0.945967128,0.670463724,0.961238037,0.922476074,0,0,0,0,0,0,-0.504498007,120.2980346,0.504498007,59.70196539,0,0.950891581,0,0,0,2,6,0% +2018-02-12 15:00:00,91.21980573,106.3038279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592085953,1.855351804,37.84786815,-37.84786815,1,0,#DIV/0!,0,0,0.855953713,1,0.026415422,0,0.958824927,0.99758689,0.724496596,1,0,0,0.104016463,0.312029739,0.747686566,0.472183162,0.961238037,0.922476074,0,0,0,0,0,0,-0.29557191,107.1918347,0.29557191,72.80816525,0,0.880836428,0,0,0,2,7,0% +2018-02-12 16:00:00,80.07437205,115.8519486,102.7250168,379.2091238,37.36084826,37.00866541,0,37.00866541,36.23428084,0.774384568,53.59508279,27.56164574,26.03343704,1.126567422,24.90686962,1.397561439,2.021997947,-3.980337302,3.980337302,0.789168543,0.789168543,0.36369766,0.670498904,21.56554957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.82976898,0.816194262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.485774173,20.72962653,35.31554315,21.54582079,0,27.56164574,-0.072681916,94.16804228,0.072681916,85.83195772,0,0,35.31554315,21.54582079,49.41685195,2,8,40% +2018-02-12 17:00:00,69.98790076,126.7199222,284.3542334,642.8443292,64.36096502,157.9271341,93.3633073,64.56382678,62.42024446,2.143582323,70.88569658,0,70.88569658,1.940720562,68.94497602,1.221519305,2.21167987,-1.50663923,1.50663923,0.787804172,0.787804172,0.226340801,1.791676299,57.62646863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.00071324,1.406045441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29806338,55.39275358,61.29877662,56.79879902,93.3633073,0,0.145234706,81.64912926,-0.145234706,98.35087074,0.705729672,0,127.1880328,56.79879902,164.3617108,2,9,29% +2018-02-12 18:00:00,61.34324036,139.615988,440.5661829,753.9871753,78.98304487,340.8801364,260.9575477,79.92258863,76.60141465,3.321173982,109.202002,0,109.202002,2.381630219,106.8203717,1.070641518,2.436758679,-0.637343549,0.637343549,0.639145856,0.639145856,0.179276231,2.337569871,75.18428238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.63219344,1.725482986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693561414,72.269992,75.32575485,73.99547498,260.9575477,0,0.34610343,69.7508322,-0.34610343,110.2491678,0.905534515,0,311.6318212,73.99547498,360.0603797,2,10,16% +2018-02-12 19:00:00,54.9260642,155.0562438,550.3985899,805.6379505,87.45242842,504.5578071,415.593255,88.9645521,84.81541504,4.14913706,136.0875238,0,136.0875238,2.637013382,133.4505104,0.958640665,2.706241981,-0.122737247,0.122737247,0.551142995,0.551142995,0.158889267,2.582678308,83.06781229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52780305,1.910507219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.871141643,79.84794081,83.39894469,81.75844803,415.593255,0,0.515856105,58.9453046,-0.515856105,121.0546954,0.953073746,0,479.4899649,81.75844803,532.999234,2,11,11% +2018-02-12 20:00:00,51.61996912,172.8037306,604.1081075,825.9944336,91.26914035,624.060207,530.9891458,93.07106111,88.51703902,4.554022091,149.2251061,0,149.2251061,2.752101329,146.4730048,0.900938421,3.015994059,0.279805023,-0.279805023,0.482304213,0.482304213,0.151080807,2.552611855,82.1007718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.08594482,1.993888044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849358599,78.91838471,86.93530342,80.91227275,530.9891458,0,0.642848334,49.99545799,-0.642848334,130.004542,0.972221156,0,603.1741849,80.91227275,656.1296491,2,12,9% +2018-02-12 21:00:00,52.03967854,191.3726053,597.4109195,823.5985952,90.80256424,684.2459733,591.6779055,92.56806776,88.0645319,4.503535858,147.5872263,0,147.5872263,2.738032338,144.849194,0.908263732,3.34008206,0.667291496,-0.667291496,0.416040123,0.416040123,0.151993479,2.27337687,73.11961481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.65097776,1.983695108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647053803,70.285355,86.29803156,72.26905011,591.6779055,0,0.718405676,44.07699351,-0.718405676,135.9230065,0.980401441,0,666.3799026,72.26905011,713.6785505,2,13,7% +2018-02-12 22:00:00,56.09933218,208.698862,530.8353469,797.5181167,86.01580262,675.4994461,588.0756762,87.42376987,83.4221088,4.001661071,131.3008695,0,131.3008695,2.593693813,128.7071757,0.979118055,3.642482286,1.117951319,-1.117951319,0.338972754,0.338972754,0.162038574,1.785079645,57.41429755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1885041,1.879122339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.293284126,55.18880667,81.48178822,57.06792901,588.0756762,0,0.737382216,42.4911046,-0.737382216,137.5088954,0.982192561,0,659.0853424,57.06792901,696.4351606,2,14,6% +2018-02-12 23:00:00,63.08060663,223.5683966,409.7709404,736.3543564,76.39641878,591.5362998,514.3544885,77.18181132,74.09278488,3.089026437,101.6573426,0,101.6573426,2.303633899,99.35370867,1.10096428,3.902004623,1.763580922,-1.763580922,0.22856359,0.22856359,0.186436888,1.150315738,36.99810831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.22080308,1.668974918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.833399836,35.563989,72.05420292,37.23296391,514.3544885,0,0.698514898,45.6920248,-0.698514898,134.3079752,0.978419565,0,575.308698,37.23296391,599.6769282,2,15,4% +2018-02-12 00:00:00,72.10124693,235.9711967,245.4999991,603.8386517,59.9186987,425.0197003,365.0570888,59.96261155,58.11192886,1.850682693,61.33108693,0,61.33108693,1.806769842,59.52431709,1.258404154,4.118474322,3.003939992,-3.003939992,0.016449696,0.016449696,0.24406802,0.474705425,15.26815826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.85939641,1.3089986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343922464,14.67633447,56.20331888,15.98533307,365.0570888,0,0.604560652,52.80276667,-0.604560652,127.1972333,0.967295312,0,409.3213295,15.98533307,419.7834103,2,16,3% +2018-02-12 01:00:00,82.40754684,246.5022712,65.06978635,280.1218663,28.05845257,157.2726574,129.5697472,27.70291023,27.2123867,0.490523535,16.62298892,0,16.62298892,0.84606587,15.77692305,1.438283021,4.302276245,7.488214144,-7.488214144,0,0,0.431205543,0.211516467,6.803096675,0.428704083,1,0.132757717,0,0.947436557,0.98619852,0.724496596,1,26.38461605,0.612971842,0.060945894,0.312029739,0.841751011,0.566247607,0.961238037,0.922476074,0.144752784,6.539395292,26.52936883,7.152367135,74.02266756,0,0.462547779,62.44836637,-0.462547779,117.5516336,0.941903059,0,96.25154584,7.152367135,100.9326271,2,17,5% +2018-02-12 02:00:00,93.71858491,255.8757605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635697877,4.465874497,-15.30547616,15.30547616,1,0,#DIV/0!,0,0,1,0.534351857,0,0.06524336,0.961238037,1,0.556196858,0.831700262,0,0,0.115824807,0.121412256,0.724496596,0.448993192,0.987539015,0.948777052,0,0,0,0,0,0,0.278562247,73.82558614,-0.278562247,106.1744139,0.870506905,0,0,0,0,2,18,0% +2018-02-12 03:00:00,105.3749245,264.7888207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839139381,4.621436744,-3.51622106,3.51622106,1,0.868537095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069710613,86.00263406,-0.069710613,93.99736594,0,0,0,0,0,2,19,0% +2018-02-12 04:00:00,117.1975235,273.9886466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04548266,4.782003996,-1.777913019,1.777913019,1,0.834194722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.151565749,98.71767491,0.151565749,81.28232509,0,0.720110164,0,0,0,2,20,0% +2018-02-12 05:00:00,128.8689511,284.4777601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249187501,4.965073563,-1.022756766,1.022756766,1,0.705055397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370179798,111.7267063,0.370179798,68.27329368,0,0.914930501,0,0,0,2,21,0% +2018-02-12 06:00:00,139.9024572,297.9341742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44175851,5.199932293,-0.564129764,0.564129764,1,0.626625561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571224826,124.8356808,0.571224826,55.1643192,0,0.96246879,0,0,0,2,22,0% +2018-02-12 07:00:00,149.305962,317.4127161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60588063,5.539896984,-0.228002147,0.228002147,1,0.569144353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740990188,137.8158328,0.740990188,42.18416717,0,0.982522723,0,0,0,2,23,0% +2018-02-13 08:00:00,154.948127,346.5836509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704354987,6.049025843,0.053590321,-0.053590321,1,0.520989205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867895514,150.214998,0.867895514,29.78500195,0,0.992389378,0,0,0,2,0,0% +2018-02-13 09:00:00,154.139106,20.9074039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690234906,0.364903036,0.317420337,-0.317420337,1,0.475871615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943279829,160.609864,0.943279829,19.39013598,0,0.99699346,0,0,0,2,1,0% +2018-02-13 10:00:00,147.3620753,47.71281025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571953406,0.832745634,0.592613864,-0.592613864,1,0.42881075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961991901,164.1524931,0.961991901,15.84750686,0,0.99802451,0,0,0,2,2,0% +2018-02-13 11:00:00,137.4395678,65.43526355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39877298,1.142060796,0.915360703,-0.915360703,1,0.37361779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922741615,157.3302367,0.922741615,22.6697633,0,0.99581365,0,0,0,2,3,0% +2018-02-13 12:00:00,126.1880741,77.99079976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20239737,1.361196242,1.35365135,-1.35365135,1,0.298665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828188436,145.9130938,0.828188436,34.08690619,0,0.989627266,0,0,0,2,4,0% +2018-02-13 13:00:00,114.434882,88.0576594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99726547,1.536896088,2.092518643,-2.092518643,1,0.172311926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684760882,133.2168048,0.684760882,46.78319519,0,0.97698181,0,0,0,2,5,0% +2018-02-13 14:00:00,102.6069311,97.10352499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790828783,1.694776226,3.98019603,-3.98019603,1,0,#DIV/0!,0,0,0.130812629,1,0.246149056,0,0.932453941,0.971215904,0.724496596,1,0,0,0.021071851,0.312029739,0.941981814,0.66647841,0.961238037,0.922476074,0,0,0,0,0,0,-0.502219209,120.1469306,0.502219209,59.85306941,0,0.95044188,0,0,0,2,6,0% +2018-02-13 15:00:00,91.00557915,106.044985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588346994,1.850834144,46.06504278,-46.06504278,1,0,#DIV/0!,0,0,0.880202686,1,0.021705026,0,0.959267541,0.998029504,0.724496596,1,0,0,0.106085649,0.312029739,0.743541833,0.468038429,0.961238037,0.922476074,0,0,0,0,0,0,-0.292990979,107.0371067,0.292990979,72.96289328,0,0.879346282,0,0,0,2,7,0% +2018-02-13 16:00:00,79.84334756,115.6059563,106.6680292,388.3883376,38.17959519,37.83244819,0,37.83244819,37.02833953,0.804108661,54.13084044,27.11668614,27.01415431,1.151255663,25.86289864,1.393529301,2.017704573,-3.905101876,3.905101876,0.802034559,0.802034559,0.357929133,0.701900144,22.57552139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.59304839,0.834080809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.508524265,21.70044987,36.10157266,22.53453068,0,27.11668614,-0.069818487,94.00356179,0.069818487,85.99643821,0,0,36.10157266,22.53453068,50.8499723,2,8,41% +2018-02-13 17:00:00,69.7300684,126.4908367,289.1448179,647.4798898,64.82967907,161.1564271,96.10190625,65.05452082,62.87482505,2.179695772,72.06136272,0,72.06136272,1.95485402,70.1065087,1.217019281,2.207681575,-1.494850522,1.494850522,0.785788185,0.785788185,0.224211797,1.817467391,58.4559988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.4376734,1.416285083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316748938,56.19012953,61.75442234,57.60641461,96.10190625,0,0.148424542,81.4643625,-0.148424542,98.5356375,0.713128488,0,130.2874294,57.60641461,167.9896756,2,9,29% +2018-02-13 18:00:00,61.05489716,139.4189348,445.6987596,756.9763893,79.343842,344.9289761,264.6177782,80.31119793,76.95133241,3.359865514,110.457334,0,110.457334,2.392509584,108.0648244,1.06560898,2.433319452,-0.635616524,0.635616524,0.638850517,0.638850517,0.178021231,2.36246522,75.9850024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.9685477,1.733365049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71159801,73.03967453,75.68014571,74.77303958,264.6177782,0,0.349572037,69.53885879,-0.349572037,110.4611412,0.906967964,0,315.6799934,74.77303958,364.6174523,2,10,16% +2018-02-13 19:00:00,54.60836883,154.9211633,555.7149561,807.9627497,87.77354872,509.0943359,419.7782695,89.31606645,85.12685238,4.189214074,137.3862213,0,137.3862213,2.646696344,134.739525,0.953095835,2.70388438,-0.124607265,0.124607265,0.551462787,0.551462787,0.157947069,2.606981119,83.84947423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.82716846,1.917522491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888748946,80.599304,83.71591741,82.51682649,419.7782695,0,0.519551514,58.69782728,-0.519551514,121.3021727,0.953763152,0,484.0849629,82.51682649,538.0905755,2,11,11% +2018-02-13 20:00:00,51.28471631,172.7669381,609.495164,828.0734446,91.57595357,628.9285292,535.5192965,93.40923269,88.81460069,4.594631998,150.5405119,0,150.5405119,2.761352879,147.779159,0.895087155,3.015351908,0.27568458,-0.27568458,0.48300885,0.48300885,0.15024886,2.576146667,82.85773226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.37197241,2.000590761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.866409491,79.6460039,87.2383819,81.64659466,535.5192965,0,0.646705072,49.7063634,-0.646705072,130.2936366,0.972685004,0,608.129971,81.64659466,661.5660343,2,12,9% +2018-02-13 21:00:00,51.70837055,191.4484544,602.7642363,825.6969541,91.10924987,689.3461886,596.4403273,92.90586125,88.36196982,4.543891422,148.8944477,0,148.8944477,2.747280041,146.1471677,0.902481317,3.341405877,0.660824854,-0.660824854,0.417145984,0.417145984,0.151152382,2.29578186,73.84023631,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.93688641,1.990395037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.663286142,70.97804379,86.60017255,72.96843882,596.4403273,0,0.722347738,43.75134421,-0.722347738,136.2486558,0.98078126,0,671.5776685,72.96843882,719.3340524,2,13,7% +2018-02-13 22:00:00,55.79167297,208.8641693,536.0519387,799.9137133,86.33758941,680.773485,592.9983065,87.77517848,83.73419254,4.040985943,132.5753956,0,132.5753956,2.603396873,129.9719987,0.973748389,3.645367443,1.107883346,-1.107883346,0.340694479,0.340694479,0.161061985,1.805850084,58.08234627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48849085,1.886152172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308332238,55.8309605,81.79682309,57.71711267,592.9983065,0,0.741327842,42.15534954,-0.741327842,137.8446505,0.982553457,0,664.4493593,57.71711267,702.2240552,2,14,6% +2018-02-13 23:00:00,62.8050654,223.7859734,414.7397854,739.5233849,76.76333028,597.0027744,519.427658,77.57511634,74.44863265,3.126483689,102.8731603,0,102.8731603,2.314697635,100.5584627,1.096155178,3.905802055,1.746045278,-1.746045278,0.231562361,0.231562361,0.185087935,1.168651142,37.58783794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56285749,1.676990557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.846683774,36.13085956,72.40954127,37.80785011,519.427658,0,0.702381654,45.38160189,-0.702381654,134.6183981,0.97881363,0,580.832413,37.80785011,605.5768947,2,15,4% +2018-02-13 00:00:00,71.85666682,236.214663,250.048413,608.9744369,60.41668299,430.9000779,370.4202102,60.47986765,58.59489709,1.884970558,62.4489186,0,62.4489186,1.821785906,60.62713269,1.254135426,4.122723611,2.963783247,-2.963783247,0.023316904,0.023316904,0.241619942,0.488778553,15.72079842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.32364385,1.319877687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.354118397,15.11142941,56.67776224,16.43130709,370.4202102,0,0.608268899,52.53556193,-0.608268899,127.4644381,0.967799513,0,415.1702612,16.43130709,425.924223,2,16,3% +2018-02-13 01:00:00,82.18981017,246.7599473,68.44782485,290.414028,28.98294828,163.9586002,135.3336062,28.62499407,28.10900546,0.515988616,17.46991042,0,17.46991042,0.873942826,16.5959676,1.434482799,4.306773543,7.278880892,-7.278880892,0,0,0.423431254,0.218485707,7.027251364,0.416776399,1,0.136529074,0,0.946984442,0.985746405,0.724496596,1,27.25424808,0.633168603,0.05953128,0.312029739,0.845091582,0.569588178,0.961238037,0.922476074,0.149534129,6.754861306,27.40378221,7.388029908,78.92975314,0,0.466002304,62.22489126,-0.466002304,117.7751087,0.942704393,0,101.8112072,7.388029908,106.6465251,2,17,5% +2018-02-13 02:00:00,93.51533964,256.1459206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632150578,4.47058968,-16.18477216,16.18477216,1,0,#DIV/0!,0,0,1,0.564822465,0,0.061708029,0.961238037,1,0.564454441,0.839957846,0,0,0.115824807,0.130733423,0.724496596,0.448993192,0.986439855,0.947677892,0,0,0,0,0,0,0.281796556,73.63254192,-0.281796556,106.3674581,0.872567029,0,0,0,0,2,18,0% +2018-02-13 03:00:00,105.181131,265.0756335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835757047,4.626442571,-3.558568472,3.558568472,1,0.861295261,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.072645597,85.83404417,-0.072645597,94.16595583,0,0,0,0,0,2,19,0% +2018-02-13 04:00:00,117.0042161,274.3000337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042108809,4.787438727,-1.788403828,1.788403828,1,0.835988756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148940599,98.56553772,0.148940599,81.43446228,0,0.714295697,0,0,0,2,20,0% +2018-02-13 05:00:00,128.6646574,284.8232676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245621902,4.971103806,-1.025968706,1.025968706,1,0.705604672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367853518,111.5832989,0.367853518,68.41670108,0,0.91407633,0,0,0,2,21,0% +2018-02-13 06:00:00,139.670986,298.3161851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437718575,5.206599643,-0.564556686,0.564556686,1,0.626698569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569165751,124.6920715,0.569165751,55.30792847,0,0.962152128,0,0,0,2,22,0% +2018-02-13 07:00:00,149.0264963,317.7850055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601003033,5.54639466,-0.22693733,0.22693733,1,0.568962259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739148163,137.6589026,0.739148163,42.34109742,0,0.982354564,0,0,0,2,23,0% +2018-02-14 08:00:00,154.6169452,346.7484906,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698574774,6.051902837,0.055755853,-0.055755853,1,0.520618877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866205362,150.0206282,0.866205362,29.97937183,0,0.992276968,0,0,0,2,0,0% +2018-02-14 09:00:00,153.8127645,20.70078849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.684539173,0.361296917,0.320696893,-0.320696893,1,0.475311291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941665865,160.3332253,0.941665865,19.66677471,0,0.99690261,0,0,0,2,1,0% +2018-02-14 10:00:00,147.0862112,47.34932923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567138669,0.826401694,0.597346475,-0.597346475,1,0.428001426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960373158,163.8163291,0.960373158,16.18367086,0,0.997936904,0,0,0,2,2,0% +2018-02-14 11:00:00,137.2047825,65.07451974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394675205,1.135764629,0.922436132,-0.922436132,1,0.372407821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921037432,157.0782217,0.921037432,22.92177825,0,0.99571339,0,0,0,2,3,0% +2018-02-14 12:00:00,125.9753072,77.66399488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198683887,1.355492421,1.365323982,-1.365323982,1,0.296669538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82632402,145.7229571,0.82632402,34.27704289,0,0.989491049,0,0,0,2,4,0% +2018-02-14 13:00:00,114.2298085,87.76097946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993686261,1.531718046,2.116101628,-2.116101628,1,0.168278999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682672463,133.0528333,0.682672463,46.94716667,0,0.976758434,0,0,0,2,5,0% +2018-02-14 14:00:00,102.399161,96.82855045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787202511,1.689977015,4.058974152,-4.058974152,1,0,#DIV/0!,0,0,0.140872635,1,0.241557088,0,0.933115364,0.971877327,0.724496596,1,0,0,0.02259126,0.312029739,0.937932755,0.662429351,0.961238037,0.922476074,0,0,0,0,0,0,-0.499858424,119.9906339,0.499858424,60.00936613,0,0.949971677,0,0,0,2,6,0% +2018-02-14 15:00:00,90.17882918,105.7852444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573917485,1.846300815,259.9073142,-259.9073142,1,0,#DIV/0!,0,0,0.977736523,1,0.003847506,0,0.960897035,0.999658998,0.724496596,1,0,0,0.114073262,0.312029739,0.727865424,0.45236202,0.961238037,0.922476074,0,0,0,0,0,0,-0.280383252,106.2830797,0.280383252,73.71692032,0,0.871672658,0,0,0,2,7,0% +2018-02-14 16:00:00,79.60782004,115.3590065,110.7136699,397.566982,38.99858944,38.65724449,0,38.65724449,37.82263808,0.834606409,54.60746842,26.58770599,28.01976243,1.175951361,26.84381107,1.38941857,2.013394485,-3.831450989,3.831450989,0.814629602,0.814629602,0.352247283,0.73439173,23.6205625,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.35655838,0.851972758,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.532064309,22.70498312,36.88862269,23.55695588,0,26.58770599,-0.066876042,93.83457686,0.066876042,86.16542314,0,0,36.88862269,23.55695588,52.30617917,2,8,42% +2018-02-14 17:00:00,69.4678522,126.260905,294.0143223,652.1035499,65.30016696,164.4626748,98.91514468,65.54753014,63.33112599,2.216404154,73.25621739,0,73.25621739,1.969040966,71.28717642,1.212442745,2.203668509,-1.482979668,1.482979668,0.783758149,0.783758149,0.222098592,1.843572082,59.29561541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.87628722,1.426563477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335661698,56.99720095,62.21194892,58.42376442,98.91514468,0,0.151686254,81.2753399,-0.151686254,98.7246601,0.720372241,0,133.4676733,58.42376442,171.7048587,2,9,29% +2018-02-14 18:00:00,60.76221148,139.2215187,450.8961781,759.9566651,79.70653556,349.0453189,268.3431836,80.70213527,77.30308942,3.39904585,111.7284448,0,111.7284448,2.403446133,109.3249987,1.060500651,2.429873891,-0.633778946,0.633778946,0.638536273,0.638536273,0.176773589,2.387603717,76.79354287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.30666992,1.741288542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729810765,73.81687439,76.03648068,75.55816293,268.3431836,0,0.35310327,69.32275711,-0.35310327,110.6772429,0.908398366,0,319.7989902,75.55816293,369.2502967,2,10,15% +2018-02-14 19:00:00,54.28642744,154.7869519,561.0823128,810.2776756,88.09603576,513.6862433,424.0169526,89.66929072,85.43961524,4.229675476,138.6973233,0,138.6973233,2.656420518,136.0409027,0.947476898,2.701541949,-0.126381012,0.126381012,0.551766115,0.551766115,0.157010894,2.631466029,84.6369931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12780802,1.924567622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.90648818,81.35629709,84.0342962,83.28086472,424.0169526,0,0.523298328,58.446242,-0.523298328,121.553758,0.954452208,0,488.7382127,83.28086472,543.243873,2,11,11% +2018-02-14 20:00:00,50.94560738,172.7331596,614.9196296,830.1399896,91.8833913,633.837997,540.089705,93.74829195,89.11276804,4.635523911,151.8650067,0,151.8650067,2.770623261,149.0943835,0.889168588,3.014762362,0.271656898,-0.271656898,0.483697624,0.483697624,0.149423415,2.599811745,83.61888252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.6585822,2.007307121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.883554759,80.37765048,87.54213696,82.3849576,540.089705,0,0.650600756,49.41308836,-0.650600756,130.5869116,0.973147953,0,613.1293278,82.3849576,667.0486348,2,12,9% +2018-02-14 21:00:00,51.37406753,191.5295178,608.1424881,827.7783938,91.4156873,694.4722135,601.2286115,93.243602,88.65916704,4.584434955,150.2077073,0,150.2077073,2.75652026,147.4511871,0.896646628,3.342820701,0.654465072,-0.654465072,0.418233571,0.418233571,0.150319521,2.318277339,74.56376824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22256368,1.997089545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67958404,71.67353021,86.90214772,73.67061975,601.2286115,0,0.726315903,43.42157421,-0.726315903,136.5784258,0.981159431,0,676.8032701,73.67061975,725.0192173,2,13,7% +2018-02-14 22:00:00,55.48212779,209.0357268,541.2830902,802.2842828,86.65804857,686.0576351,597.9322259,88.12540925,84.04498867,4.080420573,133.8534119,0,133.8534119,2.613059899,131.240352,0.968345806,3.648361686,1.097970395,-1.097970395,0.342389694,0.342389694,0.160097461,1.82668773,58.7525566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.78723992,1.893153001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.323429042,56.47519216,82.11066896,58.36834516,597.9322259,0,0.745287224,41.81622479,-0.745287224,138.1837752,0.982911771,0,669.825292,58.36834516,708.0262065,2,14,6% +2018-02-14 23:00:00,62.52859114,224.0096726,419.7161939,742.6502214,77.12724368,602.4631706,524.4976,77.96557067,74.80157271,3.163997959,104.0907215,0,104.0907215,2.325670966,101.7650505,1.091329792,3.909706344,1.728815203,-1.728815203,0.234508878,0.234508878,0.183760467,1.18705573,38.17979276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.90211691,1.684940698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860017836,36.69986904,72.76213474,38.38480973,524.4976,0,0.706251186,45.06928566,-0.706251186,134.9307143,0.979203659,0,586.3521036,38.38480973,611.4741939,2,15,4% +2018-02-14 00:00:00,71.61176739,236.4636659,254.6041054,614.0235894,60.90781571,436.7552678,375.7647342,60.99053363,59.07122034,1.919313292,63.56830844,0,63.56830844,1.836595369,61.73171307,1.249861124,4.127069532,2.924611523,-2.924611523,0.030015663,0.030015663,0.239225584,0.502976647,16.17745794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78150387,1.330607093,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364404869,15.55038791,57.14590874,16.88099501,375.7647342,0,0.61197117,52.26783177,-0.61197117,127.7321682,0.968296805,0,420.9977001,16.88099501,432.0459738,2,16,3% +2018-02-14 01:00:00,81.97195677,247.0225784,71.86954426,300.5716215,29.89238256,170.6350919,141.102292,29.53279992,28.99101694,0.541782982,18.32696871,0,18.32696871,0.901365625,17.42560308,1.43068054,4.311357319,7.080616848,-7.080616848,0,0,0.41592559,0.225341406,7.247754235,0.405010917,1,0.140302713,0,0.946528807,0.985290771,0.724496596,1,28.10945091,0.653036327,0.058122615,0.312029739,0.848433903,0.572930499,0.961238037,0.922476074,0.154248983,6.966817052,28.2636999,7.619853379,83.95432338,0,0.469446488,62.00162716,-0.469446488,117.9983728,0.943491588,0,107.4738978,7.619853379,112.4609394,2,17,5% +2018-02-14 02:00:00,93.31217745,256.4206077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.628604729,4.475383874,-17.1708702,17.1708702,1,0,#DIV/0!,0,0,1,0.594574668,0,0.058172458,0.961238037,1,0.572811966,0.848315371,0,0,0.115824807,0.140168879,0.724496596,0.448993192,0.985306985,0.946545022,0,0,0,0,0,0,0.285015293,73.44023728,-0.285015293,106.5597627,0.874570817,0,0,0,0,2,18,0% +2018-02-14 03:00:00,104.9872916,265.3667073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832373911,4.631522767,-3.601823706,3.601823706,1,0.85389818,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075565262,85.66629842,-0.075565262,94.33370158,0,0,0,0,0,2,19,0% +2018-02-14 04:00:00,116.8105447,274.6155267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038728605,4.792945117,-1.798935436,1.798935436,1,0.837789767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146327192,98.41414148,0.146327192,81.58585852,0,0.70830001,0,0,0,2,20,0% +2018-02-14 05:00:00,128.4594786,285.1727108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242040857,4.977202741,-1.029130084,1.029130084,1,0.706145299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365532325,111.4403465,0.365532325,68.55965347,0,0.913213192,0,0,0,2,21,0% +2018-02-14 06:00:00,139.437903,298.7016537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433650509,5.213327339,-0.564914355,0.564914355,1,0.626759734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567102491,124.5484198,0.567102491,55.45158021,0,0.961832516,0,0,0,2,22,0% +2018-02-14 07:00:00,148.7446243,318.1597901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596083438,5.552935885,-0.225794644,0.225794644,1,0.568766848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737290699,137.5011332,0.737290699,42.49886675,0,0.982184144,0,0,0,2,23,0% +2018-02-15 08:00:00,154.2826704,346.9176052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.692740576,6.054854443,0.058009633,-0.058009633,1,0.520233458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864487317,149.824215,0.864487317,30.17578497,0,0.992162252,0,0,0,2,0,0% +2018-02-15 09:00:00,153.4819188,20.50307992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.678764825,0.357846251,0.324079186,-0.324079186,1,0.474732885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940011209,160.0534388,0.940011209,19.94656117,0,0.996809145,0,0,0,2,1,0% +2018-02-15 10:00:00,146.8047173,46.99182125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.562225674,0.820162002,0.602216765,-0.602216765,1,0.427168557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958701463,163.4761572,0.958701463,16.52384281,0,0.997846121,0,0,0,2,2,0% +2018-02-15 11:00:00,136.9643052,64.71618152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390478084,1.129510447,0.929713052,-0.929713052,1,0.371163394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919269422,156.819509,0.919269422,23.18049099,0,0.995608982,0,0,0,2,3,0% +2018-02-15 12:00:00,125.7571585,77.3377991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194876474,1.349799231,1.377348597,-1.377348597,1,0.294613207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824387038,145.5263956,0.824387038,34.47360445,0,0.989348877,0,0,0,2,4,0% +2018-02-15 13:00:00,114.0196964,87.46408189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990019115,1.526536206,2.140525667,-2.140525667,1,0.164102242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680505479,132.8831556,0.680505479,47.1168444,0,0.976525206,0,0,0,2,5,0% +2018-02-15 14:00:00,102.1866447,96.55295654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783493402,1.685166994,4.142000138,-4.142000138,1,0,#DIV/0!,0,0,0.151226091,1,0.236895954,0,0.933782133,0.972544096,0.724496596,1,0,0,0.024140878,0.312029739,0.933821863,0.658318459,0.961238037,0.922476074,0,0,0,0,0,0,-0.497416235,119.8292062,0.497416235,60.17079377,0,0.949480563,0,0,0,2,6,0% +2018-02-15 15:00:00,89.99346212,105.5246787,0.00134681,0.752284014,0.001260969,0.001233099,0,0.001233099,0.001222946,1.01528E-05,0.209688431,0.209323858,0.000364573,3.80229E-05,0.00032655,1.570682219,1.841753085,-7132.440047,7132.440047,0,0,0.936263261,9.50572E-06,0.000305737,1,0.999179823,0,0.000140204,0.961238037,1,0.724099103,0.999602507,0.001175542,2.75409E-05,0.115824807,0.311578003,0.724496596,0.448993192,0.961309511,0.922547548,6.88686E-06,0.000293898,0.001182429,0.000321439,0,0.000171683,-0.278251105,106.1558529,0.278251105,73.84414709,0,0.870306195,0.001182429,0.000470855,0.001490594,2,7,26% +2018-02-15 16:00:00,79.36789038,115.1111517,114.8600895,406.7330876,39.81694937,39.48218531,0,39.48218531,38.61632143,0.865863872,55.02209403,25.9723076,29.04978643,1.200627932,27.8491585,1.385231007,2.009068603,-3.759401323,3.759401323,0.826950821,0.826950821,0.346656089,0.767968759,24.70051516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.11947701,0.86985085,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556390752,23.7430747,37.67586776,24.61292555,0,25.9723076,-0.063855901,93.66116459,0.063855901,86.33883541,0,0,37.67586776,24.61292555,53.78453527,2,8,43% +2018-02-15 17:00:00,69.20136012,126.0301589,298.9603205,656.7114844,65.77207349,167.8447049,101.8022129,66.04249198,63.7888028,2.253689177,74.46966163,0,74.46966163,1.983270689,72.48639094,1.207791581,2.199641229,-1.471041913,1.471041913,0.781716673,0.781716673,0.220002686,1.869975136,60.14482837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.31622358,1.436872863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35479062,57.81349675,62.6710142,59.25036961,101.8022129,0,0.155018171,81.08214991,-0.155018171,98.91785009,0.727457166,0,136.7277635,59.25036961,175.5059454,2,9,28% +2018-02-15 18:00:00,60.46529605,139.0237524,456.1557071,762.9259487,80.0708705,353.2271255,272.1319927,81.09513272,77.65643832,3.438694401,113.0146646,0,113.0146646,2.414432176,110.6002324,1.055318499,2.426422218,-0.63183584,0.63183584,0.638203982,0.638203982,0.175534076,2.412971446,77.60945624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64632232,1.749247892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.748189599,74.60116136,76.39451192,76.35040925,272.1319927,0,0.356695159,69.10262741,-0.356695159,110.8973726,0.909824282,0,323.9868069,76.35040925,373.9566227,2,10,15% +2018-02-15 19:00:00,53.96035441,154.6536164,566.4977825,812.5813685,88.41967225,518.3310397,428.3070472,90.02399248,85.7534929,4.270499574,140.0201254,0,140.0201254,2.666179352,137.3539461,0.94178585,2.699214807,-0.12806021,0.12806021,0.552053275,0.552053275,0.156081233,2.656119855,85.42994487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.42951917,1.931637865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924349793,82.1185125,84.35386896,84.05015036,428.3070472,0,0.527094349,58.19065892,-0.527094349,121.8093411,0.955140322,0,493.4472001,84.05015036,548.4563425,2,11,11% +2018-02-15 20:00:00,50.60275917,172.7024194,620.378606,832.193043,92.19125706,638.7858757,544.6978492,94.08802649,89.41135051,4.676675981,153.1978821,0,153.1978821,2.77990655,150.4179755,0.883184758,3.014225845,0.267721584,-0.267721584,0.484370602,0.484370602,0.14860483,2.623594747,84.38382561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.94559104,2.014032832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.900785463,81.11294287,87.8463765,83.1269757,544.6978492,0,0.654533048,49.11574732,-0.654533048,130.8842527,0.973609663,0,618.169466,83.1269757,672.574409,2,12,9% +2018-02-15 21:00:00,51.03689301,191.6158331,613.5428675,829.842073,91.72169729,699.6212217,606.0401267,93.581095,88.9559497,4.625145297,151.5263192,0,151.5263192,2.76574759,148.7605716,0.890761823,3.344327186,0.648212312,-0.648212312,0.419302856,0.419302856,0.149495173,2.340852063,75.28984897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50784246,2.003774714,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.695939351,72.37146662,87.20378181,74.37524134,606.0401267,0,0.730307786,43.08779699,-0.730307786,136.912203,0.981535716,0,682.0538112,74.37524134,730.7309191,2,13,7% +2018-02-15 22:00:00,55.1708224,209.213546,546.5261831,804.6291152,86.97702096,691.3491161,602.874828,88.47428809,84.35434286,4.119945222,135.1342787,0,135.1342787,2.622678093,132.5116006,0.962912502,3.651465217,1.088212469,-1.088212469,0.344058397,0.344058397,0.159145204,1.847582668,59.42460962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.08460293,1.90012135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338567353,57.12119509,82.42317029,59.02131644,602.874828,0,0.749258033,41.47385278,-0.749258033,138.5261472,0.983267315,0,675.2102839,59.02131644,713.8385551,2,14,6% +2018-02-15 23:00:00,62.2512995,224.2394621,424.6978044,745.7343471,77.48803255,607.9148886,529.5618547,78.35303392,75.15148247,3.201551442,105.3094497,0,105.3094497,2.336550082,102.9728996,1.08649014,3.913716927,1.71188809,-1.71188809,0.237403585,0.237403585,0.182454517,1.205520968,38.77369828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23846348,1.69282258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.873395838,37.27075362,73.11185932,38.9635762,529.5618547,0,0.710121314,44.75521335,-0.710121314,135.2447867,0.979589495,0,591.8650894,38.9635762,617.3659708,2,15,4% +2018-02-15 00:00:00,71.36664602,236.7181391,259.1649185,618.986119,61.39205325,442.5829552,381.0884042,61.49455095,59.54085633,1.953694627,64.68873191,0,64.68873191,1.851196918,62.83753499,1.245582949,4.131510926,2.88639936,-2.88639936,0.036550328,0.036550328,0.236884118,0.517291946,16.63788715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23293585,1.341185865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374776254,15.99296998,57.6077121,17.33415585,381.0884042,0,0.615665509,51.99970669,-0.615665509,128.0002933,0.96878707,0,426.8012306,17.33415585,438.1460889,2,16,3% +2018-02-15 01:00:00,81.75407035,247.2900767,75.33136607,310.5863906,30.78634666,177.2955496,146.8696452,30.42590438,29.85802472,0.567879658,19.1932838,0,19.1932838,0.928321941,18.26496186,1.426877704,4.316026045,6.892615247,-6.892615247,0,0,0.408678991,0.232080485,7.464506179,0.393407408,1,0.144077527,0,0.94606979,0.984831753,0.724496596,1,28.94981854,0.672566086,0.05672024,0.312029739,0.851776956,0.576273552,0.961238037,0.922476074,0.158895908,7.175167266,29.10871444,7.847733352,89.09003883,0,0.47287856,61.77868706,-0.47287856,118.2213129,0.944264608,0,113.233285,7.847733352,118.3694695,2,17,5% +2018-02-15 02:00:00,93.10915521,256.6997196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625061322,4.480255297,-18.28427629,18.28427629,1,0,#DIV/0!,0,0,1,0.623628467,0,0.054637367,0.961238037,1,0.581267622,0.856771027,0,0,0.115824807,0.149717319,0.724496596,0.448993192,0.984139928,0.945377965,0,0,0,0,0,0,0.28821716,73.24874996,-0.28821716,106.75125,0.876519698,0,0,0,0,2,18,0% +2018-02-15 03:00:00,104.7934462,265.6619258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82899067,4.636675302,-3.646010419,3.646010419,1,0.846341807,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.07846868,85.49944916,-0.07846868,94.50055084,0,0,0,0,0,2,19,0% +2018-02-15 04:00:00,116.6165357,274.9349896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03534251,4.798520797,-1.80950668,1.80950668,1,0.839597557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143726083,98.26351642,0.143726083,81.73648358,0,0.702116032,0,0,0,2,20,0% +2018-02-15 05:00:00,128.2534329,285.5259226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238444682,4.983367449,-1.032240018,1.032240018,1,0.706677129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.363216432,111.29786,0.363216432,68.70213997,0,0.91234103,0,0,0,2,21,0% +2018-02-15 06:00:00,139.2032286,299.0903639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429554668,5.22011161,-0.565202437,0.565202437,1,0.626808999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565034966,124.4047194,0.565034966,55.59528055,0,0.961509901,0,0,0,2,22,0% +2018-02-15 07:00:00,148.4603897,318.5368052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591122608,5.559516039,-0.22457404,0.22457404,1,0.568558112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735417498,137.3425059,0.735417498,42.65749408,0,0.982011408,0,0,0,2,23,0% +2018-02-16 08:00:00,153.9453938,347.0906996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68685399,6.057875512,0.060351604,-0.060351604,1,0.519832957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862740945,149.6257432,0.862740945,30.37425678,0,0.992045176,0,0,0,2,0,0% +2018-02-16 09:00:00,153.1467158,20.31407644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.672914429,0.354547518,0.327567226,-0.327567226,1,0.474136395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938315388,159.7705454,0.938315388,20.22945459,0,0.996713013,0,0,0,2,1,0% +2018-02-16 10:00:00,146.5177334,46.64037918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.55721686,0.814028181,0.607225108,-0.607225108,1,0.42631208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956976403,163.1321203,0.956976403,16.86787973,0,0.997752108,0,0,0,2,2,0% +2018-02-16 11:00:00,136.7182449,64.36041403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386183522,1.123301133,0.937192977,-0.937192977,1,0.369884251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917437325,156.5542658,0.917437325,23.44573422,0,0.995500364,0,0,0,2,3,0% +2018-02-16 12:00:00,125.5337208,77.01235814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19097675,1.344119214,1.389730697,-1.389730697,1,0.292495743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822377468,145.3235005,0.822377468,34.67649951,0,0.989200669,0,0,0,2,4,0% +2018-02-16 13:00:00,113.8046344,87.16708338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986265574,1.521352604,2.165816337,-2.165816337,1,0.159777283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678260213,132.7078391,0.678260213,47.29216093,0,0.97628198,0,0,0,2,5,0% +2018-02-16 14:00:00,101.9694728,96.27683525,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779703036,1.680347769,4.229559151,-4.229559151,1,0,#DIV/0!,0,0,0.161877863,1,0.232167883,0,0.93445371,0.973215673,0.724496596,1,0,0,0.025720405,0.312029739,0.929651046,0.654147642,0.961238037,0.922476074,0,0,0,0,0,0,-0.494893273,119.6627129,0.494893273,60.33728712,0,0.948968115,0,0,0,2,6,0% +2018-02-16 15:00:00,89.80314844,105.263359,0.056440208,1.27341709,0.052065128,0.050920642,0,0.050920642,0.050495172,0.00042547,0.366757994,0.351503457,0.015254538,0.001569956,0.013684582,1.567360619,1.837192197,-237.6522626,237.6522626,0,0,0.922482913,0.000392489,0.012623793,1,0.975106472,0,0.004207804,0.961238037,1,0.712633781,0.988137185,0.04853788,0.001129571,0.115824807,0.298549518,0.724496596,0.448993192,0.963352972,0.924591009,0.000284357,0.012148988,0.048822237,0.013278558,0,0.008750161,-0.276031678,106.0235049,0.276031678,73.97649511,0,0.86886137,0.048822237,0.020881235,0.062488588,2,7,28% +2018-02-16 16:00:00,79.12366108,114.8624431,119.1053146,415.875272,40.63384553,40.30645134,0,40.30645134,39.40858517,0.897866172,55.37206681,25.26834397,30.10372285,1.225260366,28.87846248,1.380968402,2.004727819,-3.688962218,3.688962218,0.838996617,0.838996617,0.341158962,0.802624447,25.81516121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.88103104,0.887696964,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.581498679,24.81451488,38.46252972,25.70221185,0,25.26834397,-0.060759429,93.48340437,0.060759429,86.51659563,0,0,38.46252972,25.70221185,55.28411333,2,8,44% +2018-02-16 17:00:00,68.9307013,125.7986287,303.980344,661.3000668,66.2450571,171.3012793,104.7622228,66.53905645,64.24752421,2.291532235,75.70108664,0,75.70108664,1.99753289,73.70355375,1.203067693,2.195600266,-1.459051742,1.459051742,0.779666233,0.779666233,0.217925463,1.896661291,61.00314685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75716405,1.447205779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.374124649,58.63854512,63.1312887,60.08575089,104.7622228,0,0.158418588,80.88488268,-0.158418588,99.11511732,0.734380472,0,140.0666193,60.08575089,179.3915416,2,9,28% +2018-02-16 18:00:00,60.16426456,138.8256472,461.4745937,765.882287,80.43659821,357.4723242,275.9823958,81.48992841,78.011138,3.478790415,114.3153182,0,114.3153182,2.425460216,111.889858,1.050064509,2.42296463,-0.629792168,0.629792168,0.637854493,0.637854493,0.174303416,2.438554477,78.43229446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98727314,1.75723767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.766724418,75.39210476,76.75399756,77.14934243,275.9823958,0,0.360345709,68.87857128,-0.360345709,111.1214287,0.911244359,0,328.2413988,77.14934243,378.7341004,2,10,15% +2018-02-16 19:00:00,53.63026478,154.5211624,571.95848,814.8725376,88.74424546,523.026221,432.6462773,90.37994364,86.06827902,4.311664618,141.3539218,0,141.3539218,2.675966432,138.6779554,0.936024699,2.696903048,-0.129646654,0.129646654,0.552324573,0.552324573,0.155158545,2.680929424,86.2279059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.73210356,1.938728571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942324241,82.88554299,84.6744278,84.82427156,432.6462773,0,0.530937364,57.93118935,-0.530937364,122.0688107,0.955826933,0,498.2093921,84.82427156,553.7251814,2,11,11% +2018-02-16 20:00:00,50.25628902,172.6747418,625.8691981,834.2316359,92.49935849,643.7694308,549.3412029,94.42822793,89.71016155,4.718066384,154.5384301,0,154.5384301,2.789196945,151.7492331,0.877137713,3.013742779,0.26387813,-0.26387813,0.485027872,0.485027872,0.147793435,2.647483369,85.1521658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.23281957,2.020763692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918092688,81.85150068,88.15091226,83.87226438,549.3412029,0,0.658499605,48.8144557,-0.658499605,131.1855443,0.97406981,0,623.2475935,83.87226438,678.1403131,2,12,9% +2018-02-16 21:00:00,50.69697106,191.7074376,618.9625794,831.8872046,92.02710485,704.7904008,610.8722513,93.91814947,89.25214809,4.666001375,152.8496002,0,152.8496002,2.774956755,150.0746435,0.884829066,3.345925987,0.642066581,-0.642066581,0.420353838,0.420353838,0.148679594,2.363494843,76.0181186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.79255962,2.010446723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712343968,73.07150709,87.50490358,75.08195381,610.8722513,0,0.734321009,42.75012666,-0.734321009,137.2498733,0.981909888,0,687.3264073,75.08195381,736.4660444,2,13,7% +2018-02-16 22:00:00,54.85788276,209.3976373,551.7786172,806.9475594,87.29435223,696.6451739,607.8235282,88.82164571,84.66210542,4.159540289,136.4173608,0,136.4173608,2.632246801,133.785114,0.957450675,3.654678216,1.078609362,-1.078609362,0.345700625,0.345700625,0.158205392,1.868525038,60.09818824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.38043601,1.907053847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35374003,57.76866448,82.73417604,59.67571833,607.8235282,0,0.753237953,41.12835669,-0.753237953,138.8716433,0.983619914,0,680.6015027,59.67571833,719.6580668,2,14,6% +2018-02-16 23:00:00,61.97330582,224.4753077,429.6822767,748.7753155,77.84557623,613.3553672,534.6179958,78.73737139,75.49824489,3.2391265,106.528774,0,106.528774,2.347331343,104.1814427,1.081638235,3.917833209,1.695261062,-1.695261062,0.240246974,0.240246974,0.181170089,1.224038362,39.36928134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.5717847,1.700633567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886811627,37.84325071,73.45859633,39.54388427,534.6179958,0,0.713989878,44.43952299,-0.713989878,135.560477,0.979970996,0,597.3687262,39.54388427,623.2494075,2,15,4% +2018-02-16 00:00:00,71.12139927,236.9780142,263.7287192,623.8621481,61.86935943,448.3808841,386.3890157,61.99186845,60.00376997,1.988098485,65.80967077,0,65.80967077,1.86558946,63.94408131,1.241302586,4.136046602,2.849121647,-2.849121647,0.042925193,0.042925193,0.234594699,0.531716679,17.10183615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.67790605,1.351613213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385226924,16.43893541,58.06313297,17.79054862,386.3890157,0,0.619349991,51.73131712,-0.619349991,128.2686829,0.969270201,0,432.578492,17.79054862,444.2220503,2,16,3% +2018-02-16 01:00:00,81.53623303,247.5623532,78.82980868,320.4513078,31.66452193,183.9339014,152.6299292,31.30397216,30.70971976,0.594252396,20.06800194,0,20.06800194,0.954802166,19.11319977,1.423075726,4.320778168,6.714143393,-6.714143393,0,0,0.401682085,0.238700541,7.677429941,0.381965425,1,0.147852454,0,0.945607523,0.984369486,0.724496596,1,29.77503125,0.691750919,0.055324469,0.312029739,0.855119768,0.579616364,0.961238037,0.922476074,0.16347386,7.379837685,29.93850512,8.071588604,94.33057349,0,0.47629679,61.55618247,-0.47629679,118.4438175,0.945023437,0,119.0831079,8.071588604,124.3658012,2,17,4% +2018-02-16 02:00:00,92.90632877,256.9831535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621521333,4.48520215,-19.55111607,19.55111607,1,0,#DIV/0!,0,0,1,0.652003419,0,0.051103442,0.961238037,1,0.589819592,0.865322996,0,0,0.115824807,0.159377366,0.724496596,0.448993192,0.982938229,0.944176265,0,0,0,0,0,0,0.291400887,73.05815632,-0.291400887,106.9418437,0.878415073,0,0,0,0,2,18,0% +2018-02-16 03:00:00,104.599634,265.9611723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825608009,4.64189814,-3.691153409,3.691153409,1,0.838621901,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081354952,85.33354732,-0.081354952,94.66645268,0,0,0,0,0,2,19,0% +2018-02-16 04:00:00,116.4222153,275.2582869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031950979,4.804163401,-1.820116459,1.820116459,1,0.841411936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141137808,98.11369161,0.141137808,81.88630839,0,0.695736314,0,0,0,2,20,0% +2018-02-16 05:00:00,128.0465386,285.8827369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234833695,4.989595033,-1.035297669,1.035297669,1,0.707200018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36090604,111.1558495,0.36090604,68.84415053,0,0.911459786,0,0,0,2,21,0% +2018-02-16 06:00:00,138.966984,299.4821026,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425431422,5.226948741,-0.565420629,0.565420629,1,0.626846312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562963094,124.2609642,0.562963094,55.73903583,0,0.961184231,0,0,0,2,22,0% +2018-02-16 07:00:00,148.1738375,318.9157939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586121329,5.56613064,-0.223275494,0.223275494,1,0.568336048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733528267,137.1830025,0.733528267,42.81699752,0,0.981836301,0,0,0,2,23,0% +2018-02-17 08:00:00,153.6052069,347.2674896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680916608,6.060961079,0.062781698,-0.062781698,1,0.519417387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860965831,149.4251999,0.860965831,30.5748001,0,0.991925686,0,0,0,2,0,0% +2018-02-17 09:00:00,152.8073019,20.1335708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66699054,0.351397101,0.331161023,-0.331161023,1,0.473521819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936577959,159.484589,0.936577959,20.51541101,0,0.996614161,0,0,0,2,1,0% +2018-02-17 10:00:00,146.2254013,46.29507994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552114703,0.808001573,0.612371894,-0.612371894,1,0.425431928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955197602,162.7843589,0.955197602,17.21564106,0,0.99765481,0,0,0,2,2,0% +2018-02-17 11:00:00,136.4667139,64.00737243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381793477,1.117139394,0.944877487,-0.944877487,1,0.368570123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915540926,156.2826629,0.915540926,23.71733709,0,0.995387477,0,0,0,2,3,0% +2018-02-17 12:00:00,125.3050898,76.68781209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186986386,1.338454817,1.40247604,-1.40247604,1,0.290316161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820295336,145.1143689,0.820295336,34.88563108,0,0.989046344,0,0,0,2,4,0% +2018-02-17 13:00:00,113.5847133,86.87009712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982427227,1.516169216,2.192000689,-2.192000689,1,0.155299495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675936996,132.5269557,0.675936996,47.47304433,0,0.976028609,0,0,0,2,5,0% +2018-02-17 14:00:00,101.7477378,96.00027616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775833032,1.675520902,4.321964721,-4.321964721,1,0,#DIV/0!,0,0,0.172833063,1,0.227375101,0,0.935129563,0.973891526,0.724496596,1,0,0,0.027329541,0.312029739,0.925422213,0.649918809,0.961238037,0.922476074,0,0,0,0,0,0,-0.492290219,119.4912225,0.492290219,60.50877751,0,0.948433895,0,0,0,2,6,0% +2018-02-17 15:00:00,89.60706012,105.0013545,0.153322184,2.079611245,0.139060125,0.136022756,0,0.136022756,0.134866949,0.001155807,0.61058002,0.569212105,0.041367914,0.004193176,0.037174739,1.563938232,1.832619355,-119.4392436,119.4392436,0,0,0.906979808,0.001048294,0.033716737,1,0.94988842,0,0.008372262,0.961238037,1,0.701029192,0.976532597,0.129639241,0.002997429,0.115824807,0.285366471,0.724496596,0.448993192,0.965385155,0.926623192,0.000759485,0.032484145,0.130398726,0.035481575,0,0.028524118,-0.273710823,105.8852024,0.273710823,74.11479765,0,0.867325455,0.130398726,0.060221268,0.169812342,2,7,30% +2018-02-17 16:00:00,78.87523633,114.6129302,123.4472534,424.9827566,41.44850041,41.12927273,0,41.12927273,40.19867519,0.93059754,55.65496323,24.47392221,31.18104101,1.249825216,29.9312158,1.376632572,2.000372997,-3.620136562,3.620136562,0.850766497,0.850766497,0.33575879,0.838350158,26.9642229,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.64049562,0.905494114,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607381836,25.91903669,39.24787746,26.8245308,0,24.47392221,-0.057588036,93.30137789,0.057588036,86.69862211,0,0,39.24787746,26.8245308,56.80399638,2,8,45% +2018-02-17 17:00:00,68.65598616,125.5663435,309.0718819,665.8658665,66.71878939,174.8310925,107.7942064,67.03688613,64.70697173,2.329914398,76.94987375,0,76.94987375,2.011817666,74.93805608,1.19827301,2.191546124,-1.447022898,1.447022898,0.777609179,0.777609179,0.215868195,1.923615268,61.87007941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19880247,1.457555051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393652714,59.47187367,63.59245519,60.92942872,107.7942064,0,0.161885767,80.68363015,-0.161885767,99.31636985,0.741140234,0,143.4830786,60.92942872,183.3601711,2,9,28% +2018-02-17 18:00:00,59.85923168,138.6272128,466.8500639,768.8238266,80.80347636,361.7788098,279.8925434,81.88626639,78.36695341,3.51931298,115.6297259,0,115.6297259,2.436522945,113.193203,1.04474068,2.419501296,-0.627652827,0.627652827,0.637488644,0.637488644,0.173082286,2.46433887,79.26160916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32929645,1.76525258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785405122,76.18927359,77.11470157,77.95452617,279.8925434,0,0.3640529,68.65069184,-0.3640529,111.3493082,0.912657322,0,332.5606809,77.95452617,383.5803591,2,10,15% +2018-02-17 19:00:00,53.29627433,154.389594,577.4615132,817.1499593,89.06954705,527.7692681,437.0323477,90.73692039,86.38377158,4.353148807,142.698005,0,142.698005,2.685775475,140.0122295,0.930195466,2.694606746,-0.131142201,0.131142201,0.552580327,0.552580327,0.154243261,2.705881587,87.03045324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03536701,1.945835189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960401999,83.65698202,84.99576901,85.60281721,437.0323477,0,0.534825148,57.66794586,-0.534825148,122.3320541,0.956511502,0,503.0222361,85.60281721,559.0475679,2,11,11% +2018-02-17 20:00:00,49.9063148,172.6501501,631.3885159,836.2548548,92.80750729,648.7859288,554.0172369,94.76869185,90.00901852,4.759673333,155.8859444,0,155.8859444,2.798488768,153.0874556,0.871029511,3.013313573,0.260125911,-0.260125911,0.485669539,0.485669539,0.14698954,2.671465358,85.92350901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.52009226,2.027495586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.935467558,82.59294512,88.45555982,84.6204407,554.0172369,0,0.662498081,48.50932989,-0.662498081,131.4906701,0.974528083,0,628.3609158,84.6204407,683.7433019,2,12,9% +2018-02-17 21:00:00,50.35442613,191.8043687,624.3988437,833.9130546,92.33173927,709.9769537,615.7223748,94.2545789,89.54759666,4.706982231,154.1768713,0,154.1768713,2.784142607,151.3927287,0.878850529,3.347617754,0.636027732,-0.636027732,0.421386542,0.421386542,0.147873015,2.386194559,76.74821952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07655602,2.017101841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728789835,73.77330786,87.80534586,75.7904097,615.7223748,0,0.738353203,42.40867798,-0.738353203,137.591322,0.982281732,0,692.6181866,75.7904097,742.221494,2,13,7% +2018-02-17 22:00:00,54.54343494,209.5880097,557.0378144,809.2390221,87.60989291,701.9430838,612.7757661,89.16731773,84.96813139,4.199186339,137.7020288,0,137.7020288,2.641761517,135.0602673,0.951962525,3.658000841,1.069160661,-1.069160661,0.347316448,0.347316448,0.157278179,1.889505058,60.77297778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67459981,1.913947226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368939982,58.41729786,83.04353979,60.33124508,612.7757661,0,0.757224688,40.77986037,-0.757224688,139.2201396,0.983969401,0,685.9961431,60.33124508,725.4817364,2,14,6% +2018-02-17 23:00:00,61.69472484,224.717173,434.6672974,751.7727508,78.19975977,618.7820876,539.6636334,79.11845418,75.84174849,3.276705692,107.7481299,0,107.7481299,2.358011283,105.3901187,1.07677608,3.922054555,1.678930989,-1.678930989,0.243039581,0.243039581,0.179907162,1.24259948,39.96627069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90197343,1.708371148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900259093,38.41709958,73.80223252,40.12547073,539.6636334,0,0.717854741,44.12235325,-0.717854741,135.8776467,0.980348026,0,602.8604101,40.12547073,629.1217282,2,15,4% +2018-02-17 00:00:00,70.87612263,237.243221,268.2934045,628.6519065,62.33970532,454.1468615,391.6644193,62.48244221,60.4599332,2.022509011,66.93061425,0,66.93061425,1.879772124,65.05084212,1.237021701,4.140675334,2.812753627,-2.812753627,0.04914449,0.04914449,0.232356459,0.546243095,17.56905563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.1163875,1.361888505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.395751263,16.88804454,58.51213876,18.24993305,391.6644193,0,0.623022718,51.4627931,-0.623022718,128.5372069,0.969746105,0,438.3271837,18.24993305,450.2713999,2,16,3% +2018-02-17 01:00:00,81.3185252,247.8393175,82.36149185,330.1604786,32.52667076,190.5445593,158.3778119,32.16674734,31.54587163,0.620875715,20.95029638,0,20.95029638,0.980799134,19.96949725,1.419276008,4.325612106,6.544534337,-6.544534337,0,0,0.394925711,0.245199784,7.886467907,0.370684309,1,0.151626479,0,0.945142139,0.983904102,0.724496596,1,30.58484717,0.710585634,0.053935595,0.312029739,0.858461409,0.582958005,0.961238037,0.922476074,0.167982153,7.580772929,30.75282932,8.291358563,99.66964218,0,0.479699486,61.33422317,-0.479699486,118.6657768,0.945768077,0,125.0171951,8.291358563,130.4437235,2,17,4% +2018-02-17 02:00:00,92.70375269,257.2708051,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617985713,4.490222619,-21.00520288,21.00520288,1,0,#DIV/0!,0,0,1,0.679718659,0,0.047571335,0.961238037,1,0.598466065,0.873969469,0,0,0.115824807,0.169147582,0.724496596,0.448993192,0.981701452,0.942939489,0,0,0,0,0,0,0.294565237,72.86853106,-0.294565237,107.1314689,0.880258314,0,0,0,0,2,18,0% +2018-02-17 03:00:00,104.4058931,266.2643298,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822226594,4.647189236,-3.737278753,3.737278753,1,0.830734003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084223209,85.16864218,-0.084223209,94.83135782,0,0,0,0,0,2,19,0% +2018-02-17 04:00:00,116.2276087,275.5852832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028554454,4.809870561,-1.830763752,1.830763752,1,0.84323273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.138562877,97.96469465,0.138562877,82.03530535,0,0.689152988,0,0,0,2,20,0% +2018-02-17 05:00:00,127.8388139,286.2429884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231208214,4.995882608,-1.038302252,1.038302252,1,0.707713832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358601333,111.0143239,0.358601333,68.98567611,0,0.910569397,0,0,0,2,21,0% +2018-02-17 06:00:00,138.729191,299.8766598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421281152,5.233835064,-0.565568668,0.565568668,1,0.626871628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560886787,124.1171472,0.560886787,55.88285279,0,0.96085545,0,0,0,2,22,0% +2018-02-17 07:00:00,147.8850137,319.2965066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581080404,5.572775331,-0.221899007,0.221899007,1,0.568100655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73162272,137.0226055,0.73162272,42.97739455,0,0.981658765,0,0,0,2,23,0% +2018-02-18 08:00:00,153.2622012,347.4477004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674930029,6.064106351,0.065299825,-0.065299825,1,0.518986762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859161576,149.2225746,0.859161576,30.7774254,0,0.991803729,0,0,0,2,0,0% +2018-02-18 09:00:00,152.4638229,19.96135058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660995699,0.348391291,0.334860577,-0.334860577,1,0.472889158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934798506,159.1956166,0.934798506,20.80438345,0,0.996512538,0,0,0,2,1,0% +2018-02-18 10:00:00,145.9278651,45.95598483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546921716,0.802083246,0.617657522,-0.617657522,1,0.424528032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953364723,162.4330116,0.953364723,17.56698839,0,0.997554174,0,0,0,2,2,0% +2018-02-18 11:00:00,136.2098278,63.65720162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377309968,1.111027761,0.952768219,-0.952768219,1,0.367220728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913580058,156.0048746,0.913580058,23.99512544,0,0.995270259,0,0,0,2,3,0% +2018-02-18 12:00:00,125.0713648,76.36429514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182907115,1.332808381,1.41559063,-1.41559063,1,0.288073434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818140721,144.8991036,0.818140721,35.1008964,0,0.988885819,0,0,0,2,4,0% +2018-02-18 13:00:00,113.3600271,86.57323255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978505713,1.510987952,2.219107301,-2.219107301,1,0.150663991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673536219,132.3405821,0.673536219,47.65941789,0,0.975764942,0,0,0,2,5,0% +2018-02-18 14:00:00,101.5215351,95.72336615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771885049,1.67068791,4.419562111,-4.419562111,1,0,#DIV/0!,0,0,0.184097035,1,0.222519835,0,0.935809165,0.974571128,0.724496596,1,0,0,0.028967988,0.312029739,0.921137276,0.645633872,0.961238037,0.922476074,0,0,0,0,0,0,-0.489607813,119.3148075,0.489607813,60.6851925,0,0.947877447,0,0,0,2,6,0% +2018-02-18 15:00:00,89.40473756,104.7387322,0.309134119,3.277611903,0.275082673,0.269118299,0,0.269118299,0.266787915,0.002330384,0.972399791,0.889151887,0.083247904,0.008294758,0.074953146,1.560407037,1.828035731,-79.09390202,79.09390202,0,0,0.889848954,0.002073689,0.066696979,1,0.923406907,0,0.012642526,0.961238037,1,0.689270498,0.964773902,0.256446692,0.005892365,0.115824807,0.272013372,0.724496596,0.448993192,0.967406768,0.928644805,0.001502381,0.064325092,0.257949073,0.070217457,0,0.068102893,-0.271280406,105.7404727,0.271280406,74.25952734,0,0.865688863,0.257949073,0.129173373,0.342490462,2,7,33% +2018-02-18 16:00:00,78.62272225,114.3626607,127.8836967,434.0453701,42.26018688,41.94992765,0,41.94992765,40.98588632,0.964041324,55.86859024,23.58740682,32.28118342,1.274300558,31.00688286,1.37222537,1.99600497,-3.552921672,3.552921672,0.862260921,0.862260921,0.330457971,0.875135406,28.14736292,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.39719291,0.923226416,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.634032623,27.05631588,40.03122553,27.97954229,0,23.58740682,-0.054343183,93.11516957,0.054343183,86.88483043,0,0,40.03122553,27.97954229,58.34327637,2,8,46% +2018-02-18 17:00:00,68.37732667,125.3333304,314.2323778,670.4056419,67.19295435,178.4327669,110.8971116,67.53565525,65.16683886,2.368816396,78.21539355,0,78.21539355,2.026115489,76.18927806,1.193409484,2.187479277,-1.434968435,1.434968435,0.775547744,0.775547744,0.213832053,1.950821761,62.74513375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.64084425,1.467913775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.413363725,60.31300918,64.05420798,61.78092296,110.8971116,0,0.165417927,80.47848644,-0.165417927,99.52151356,0.747735301,0,146.9758931,61.78092296,187.4102716,2,9,28% +2018-02-18 18:00:00,59.55031335,138.4284569,472.2793202,771.7488098,81.17126842,366.1444385,283.8605423,82.28389619,78.72365518,3.560241007,116.9572023,0,116.9572023,2.447613233,114.509589,1.039349039,2.416032351,-0.62542266,0.62542266,0.637107264,0.637107264,0.171871316,2.490310672,80.09695158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67217176,1.773287455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804221604,76.9922365,77.47639337,78.76552395,283.8605423,0,0.367814681,68.41909401,-0.367814681,111.580906,0.914061979,0,336.9425223,78.76552395,388.4929824,2,10,15% +2018-02-18 19:00:00,52.95849973,154.2589132,583.0039825,819.4124752,89.39537295,532.5576436,441.4629407,91.09470291,86.69977263,4.394930282,144.0516657,0,144.0516657,2.695600328,141.3560653,0.924300187,2.692325936,-0.132548783,0.132548783,0.552820866,0.552820866,0.153335784,2.730963221,87.83716482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.33911923,1.952953262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978573557,84.43242387,85.31769279,86.38537713,441.4629407,0,0.538755455,57.40104262,-0.538755455,122.5989574,0.957193515,0,507.8831567,86.38537713,564.4206584,2,11,11% +2018-02-18 20:00:00,49.55295497,172.6286666,636.9336755,838.2618405,93.11551914,653.8326349,558.7234171,95.10921776,90.30774268,4.801475088,157.2397202,0,157.2397202,2.807776462,154.4319438,0.864862218,3.012938615,0.256464186,-0.256464186,0.486295731,0.486295731,0.146193431,2.695528526,86.69746321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80723728,2.034224488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.952901241,83.33689933,88.76013852,85.37112382,558.7234171,0,0.666526126,48.20048761,-0.666526126,131.7995124,0.974984186,0,633.5066345,85.37112382,689.3803276,2,12,9% +2018-02-18 21:00:00,50.00938307,191.9066626,629.8488975,835.9189408,92.63543419,715.1780987,620.5878976,94.5902011,89.84213406,4.748067039,155.5074575,0,155.5074575,2.793300129,152.7141573,0.872828391,3.349403119,0.630095463,-0.630095463,0.422401019,0.422401019,0.147075647,2.408940184,77.47979699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.35967657,2.023736435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745268963,74.47652795,88.10494553,76.50026439,620.5878976,0,0.742402005,42.0635665,-0.742402005,137.9364335,0.982651044,0,697.926291,76.50026439,747.994184,2,13,7% +2018-02-18 22:00:00,54.22760486,209.78467,562.3012231,811.5029661,87.92349848,707.2401522,617.7290075,89.51114474,85.2722806,4.238864137,138.9876595,0,138.9876595,2.651217882,136.3364416,0.94645025,3.661433212,1.059865751,-1.059865751,0.348905972,0.348905972,0.156363698,1.910513043,61.4486668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.9669596,1.920798331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384160196,59.06679584,83.3511198,60.98759417,617.7290075,0,0.761215958,40.42848839,-0.761215958,139.5715116,0.984315618,0,691.3914293,60.98759417,731.30659,2,14,6% +2018-02-18 23:00:00,61.41567051,224.9650188,439.6505851,754.7263463,78.55047415,624.1925779,544.6964185,79.49615936,76.18188754,3.31427182,108.9669611,0,108.9669611,2.368586616,106.5983745,1.071905663,3.92638028,1.662894488,-1.662894488,0.245781984,0.245781984,0.178665688,1.261195978,40.56439798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.22892802,1.71603294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913732193,38.99204228,74.14266021,40.70807522,544.6964185,0,0.721713799,43.80384329,-0.721713799,136.1961567,0.98072046,0,608.3375824,40.70807522,634.9802034,2,15,4% +2018-02-18 00:00:00,70.63091018,237.5136866,272.856909,633.3557289,62.80306934,459.8787626,396.9125268,62.96623572,60.90932508,2.056910635,68.05106086,0,68.05106086,1.893744259,66.1573166,1.232741936,4.145395849,2.777270877,-2.777270877,0.055212398,0.055212398,0.230168514,0.560863493,18.03929789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54836007,1.372011269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.406343691,17.34005929,58.95470376,18.71207056,396.9125268,0,0.626681829,51.194264,-0.626681829,128.805736,0.970214696,0,444.0450705,18.71207056,456.2917464,2,16,3% +2018-02-18 01:00:00,81.10102513,248.1208769,85.92314318,339.7090562,33.37262876,197.1223971,164.1083512,33.01404582,32.36632087,0.647724947,21.83936874,0,21.83936874,1.006307889,20.83306085,1.415479915,4.330526246,6.383179525,-6.383179525,0,0,0.38840093,0.251576972,8.091580217,0.359563191,1,0.155398642,0,0.944673766,0.983435729,0.724496596,1,31.37909479,0.72906664,0.052553884,0.312029739,0.861800999,0.586297595,0.961238037,0.922476074,0.172420411,7.777934683,31.55151521,8.507001323,105.1010288,0,0.483085005,61.11291682,-0.483085005,118.8870832,0.946498547,0,131.0294863,8.507001323,136.5971485,2,17,4% +2018-02-18 02:00:00,92.5014799,257.5625693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614455387,4.495314863,-22.69109313,22.69109313,1,0,#DIV/0!,0,0,1,0.706792946,0,0.044041658,0.961238037,1,0.607205256,0.88270866,0,0,0.115824807,0.179026487,0.724496596,0.448993192,0.980429184,0.941667221,0,0,0,0,0,0,0.297709017,72.67994677,-0.297709017,107.3200532,0.882050771,0,0,0,0,2,18,0% +2018-02-18 03:00:00,104.2122603,266.5712802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818847063,4.65254653,-3.784414003,3.784414003,1,0.822673401,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087072618,85.00478087,-0.087072618,94.99521913,0,0,0,0,0,2,19,0% +2018-02-18 04:00:00,116.0327404,275.9158423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02515336,4.815639906,-1.841447671,1.841447671,1,0.845059788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.136001768,97.81655126,0.136001768,82.18344874,0,0.682357721,0,0,0,2,20,0% +2018-02-18 05:00:00,127.6302764,286.6065122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227568549,5.002227295,-1.041253066,1.041253066,1,0.708218451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356302469,110.8732909,0.356302469,69.12670915,0,0.909669791,0,0,0,2,21,0% +2018-02-18 06:00:00,138.489872,300.2738275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417104246,5.240766948,-0.565646349,0.565646349,1,0.626884912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558805944,123.973261,0.558805944,56.02673901,0,0.9605235,0,0,0,2,22,0% +2018-02-18 07:00:00,147.5939655,319.6786999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576000655,5.579445863,-0.220444625,0.220444625,1,0.567851941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729700569,136.8612976,0.729700569,43.13870242,0,0.981478743,0,0,0,2,23,0% +2018-02-19 08:00:00,152.9164682,347.6310655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66889585,6.067306675,0.067905866,-0.067905866,1,0.518541103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857327795,149.0178589,0.857327795,30.98214112,0,0.99167925,0,0,0,2,0,0% +2018-02-19 09:00:00,152.1164238,19.7971981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654932442,0.345526289,0.338665869,-0.338665869,1,0.472238415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932976641,158.9036777,0.932976641,21.09632226,0,0.99640809,0,0,0,2,1,0% +2018-02-19 10:00:00,145.6252709,45.62313934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541640452,0.796273997,0.623082388,-0.623082388,1,0.423600326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951477471,162.0782148,0.951477471,17.92178519,0,0.997450148,0,0,0,2,2,0% +2018-02-19 11:00:00,135.9477059,63.3100358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372735079,1.104968574,0.960866853,-0.960866853,1,0.36583578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911554605,155.7210782,0.911554605,24.27892177,0,0.995148651,0,0,0,2,3,0% +2018-02-19 12:00:00,124.8326486,76.04193513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178740732,1.327182138,1.429080696,-1.429080696,1,0.285766497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815913765,144.6778133,0.815913765,35.32218665,0,0.988719014,0,0,0,2,4,0% +2018-02-19 13:00:00,113.1306731,86.276595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97450273,1.50581065,2.247166311,-2.247166311,1,0.145865618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671058336,132.1488003,0.671058336,47.85119967,0,0.975490829,0,0,0,2,5,0% +2018-02-19 14:00:00,101.2909627,95.4461891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767860801,1.665850258,4.522732093,-4.522732093,1,0,#DIV/0!,0,0,0.195675339,1,0.217604326,0,0.936491993,0.975253956,0.724496596,1,0,0,0.030635444,0.312029739,0.916798164,0.64129476,0.961238037,0.922476074,0,0,0,0,0,0,-0.486846861,119.1335447,0.486846861,60.8664553,0,0.9472983,0,0,0,2,6,0% +2018-02-19 15:00:00,89.19599459,104.4755567,0.543708202,4.98874576,0.473705716,0.463520443,0,0.463520443,0.459421741,0.004098702,1.486771766,1.340659443,0.146112323,0.014283975,0.131828348,1.556763785,1.823442452,-58.74300328,58.74300328,0,0,0.8712499,0.003570994,0.114855435,1,0.895570071,0,0.01702166,0.961238037,1,0.677360234,0.952863638,0.441613653,0.010086358,0.115824807,0.258494395,0.724496596,0.448993192,0.969415415,0.930653452,0.002587173,0.110877705,0.444200825,0.120964063,0,0.140004971,-0.268736774,105.5891114,0.268736774,74.41088862,0,0.863944332,0.444200825,0.241920564,0.602532996,2,7,36% +2018-02-19 16:00:00,78.36622737,114.11168,132.4123165,443.0535409,43.06822596,42.76774002,0,42.76774002,41.76956004,0.998179973,56.01098835,22.60742328,33.40356507,1.298665918,32.10489915,1.36774869,1.991624532,-3.487310164,3.487310164,0.873481149,0.873481149,0.325258459,0.91296782,29.36418339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1504899,0.940879036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.661442078,28.22597,40.81193197,29.16684903,0,22.60742328,-0.051026391,92.92486704,0.051026391,87.07513296,0,0,40.81193197,29.16684903,59.90105133,2,8,47% +2018-02-19 17:00:00,68.09483682,125.0996141,319.4592225,674.9163306,67.66724715,182.1048433,114.0697947,68.03504854,65.62682999,2.408218559,79.49700423,0,79.49700423,2.040417167,77.45658706,1.188479106,2.183400158,-1.422900783,1.422900783,0.773484054,0.773484054,0.211818105,1.978265411,63.62781587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.08300522,1.478275292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433246556,61.16147681,64.51625178,62.63975211,114.0697947,0,0.169013238,80.26954838,-0.169013238,99.73045162,0.754165186,0,150.5437197,62.63975211,191.5401847,2,9,27% +2018-02-19 18:00:00,59.23762716,138.2293845,477.7595361,774.6555698,81.53974308,370.5670198,287.8844476,82.68257217,79.08101898,3.601553189,118.2970549,0,118.2970549,2.458724104,115.8383308,1.033891635,2.412557882,-0.623106478,0.623106478,0.636711173,0.636711173,0.170671095,2.516455905,80.93787217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01568344,1.781337243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823163737,77.80056135,77.83884717,79.58189859,287.8844476,0,0.371628965,68.1838851,-0.371628965,111.8161149,0.915457204,0,341.3847387,79.58189859,393.4694997,2,10,15% +2018-02-19 19:00:00,52.61705886,154.1291193,588.5829776,821.6589892,89.7215229,537.3887852,445.9357102,91.45307505,87.01608794,4.436987104,145.4141922,0,145.4141922,2.705434952,142.7087573,0.91834092,2.690060605,-0.133868412,0.133868412,0.553046536,0.553046536,0.15243649,2.75616123,88.64761939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.64317355,1.960078413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996829429,85.21146364,85.64000298,87.17154205,445.9357102,0,0.542726017,57.13059588,-0.542726017,122.8694041,0.957872484,0,512.7895492,87.17154205,569.8415801,2,11,11% +2018-02-19 20:00:00,49.19632868,172.6103115,642.5017986,840.2517854,93.42321355,658.9068096,563.4572007,95.44960891,90.60615896,4.843449952,158.5990543,0,158.5990543,2.817054583,155.7819997,0.858637915,3.012618258,0.252892086,-0.252892086,0.486906596,0.486906596,0.145405373,2.71966076,87.4736388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.09408637,2.040946456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970384962,84.08298884,89.06447133,86.12393529,563.4572007,0,0.670581379,47.88804824,-0.670581379,132.1119518,0.975437834,0,638.6819428,86.12393529,695.048336,2,12,9% +2018-02-19 21:00:00,49.661967,192.0143536,635.3099985,837.9042312,92.93802753,720.3910692,625.466231,94.92483822,90.13560309,4.789235124,156.8406889,0,156.8406889,2.802424435,154.0382645,0.866764837,3.351282682,0.624269308,-0.624269308,0.42339735,0.42339735,0.146287683,2.431720801,78.21249994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.64177017,2.030346963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761773442,75.1808299,88.40354361,77.21117687,625.466231,0,0.746465059,41.71490884,-0.746465059,138.2850912,0.983017628,0,703.2478746,77.21117687,753.7810456,2,13,7% +2018-02-19 22:00:00,53.91051806,209.9876223,567.5663237,813.7389094,88.23502956,712.5337195,622.680747,89.85297256,85.57441787,4.278554689,140.2736379,0,140.2736379,2.660611694,137.6130262,0.940916042,3.664975397,1.050723805,-1.050723805,0.350469336,0.350469336,0.155462059,1.931539443,62.1249481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.25738544,1.927604115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.399393751,59.71686315,83.65677919,61.64446726,622.680747,0,0.765209504,40.07436601,-0.765209504,139.925634,0.984658417,0,696.7846181,61.64446726,737.129689,2,14,6% +2018-02-19 23:00:00,61.13625547,225.2188022,444.6298989,757.6358644,78.89761657,629.5844189,549.7140486,79.87037032,76.51856233,3.35180799,110.184721,0,110.184721,2.379054241,107.8056667,1.06702895,3.930809636,1.647147917,-1.647147917,0.248474806,0.248474806,0.177445594,1.279819641,41.16339901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55255263,1.723616699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927224973,39.56782485,74.47977761,41.29144155,549.7140486,0,0.725564977,43.48413243,-0.725564977,136.5158676,0.981088184,0,613.7977354,41.29144155,640.8221581,2,15,4% +2018-02-19 00:00:00,70.38585406,237.7893348,277.4172139,637.9740542,63.25943765,465.5745401,402.1313197,63.44322034,61.3519322,2.09128814,69.17052078,0,69.17052078,1.907505448,67.26301533,1.2284649,4.150206818,2.742649265,-2.742649265,0.061133042,0.061133042,0.228029965,0.575570265,18.51231824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.97381087,1.381981203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.416998698,17.79474444,59.39080956,19.17672565,402.1313197,0,0.630325508,50.925858,-0.630325508,129.074142,0.970675906,0,449.7299926,19.17672565,462.280776,2,16,3% +2018-02-19 01:00:00,80.88380852,248.4069365,89.51160676,349.0931667,34.2022982,203.6627341,169.8169851,33.84574901,33.17097271,0.674776302,22.73445087,0,22.73445087,1.031325484,21.70312539,1.41168877,4.335518927,6.229522315,-6.229522315,0,0,0.382099031,0.257831371,8.292743178,0.348600983,1,0.159168044,0,0.944202528,0.982964491,0.724496596,1,32.15766692,0.747191802,0.051179574,0.312029739,0.865137715,0.589634311,0.961238037,0.922476074,0.176788543,7.971300172,32.33445546,8.718491975,110.6186171,0,0.486451759,60.89236842,-0.486451759,119.1076316,0.947214885,0,137.1140562,8.718491975,142.8201348,2,17,4% +2018-02-19 02:00:00,92.2995611,257.8583386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610931239,4.500477012,-24.66872668,24.66872668,1,0,#DIV/0!,0,0,1,0.733244728,0,0.040514973,0.961238037,1,0.616035439,0.891538843,0,0,0.115824807,0.189012588,0.724496596,0.448993192,0.979121027,0.940359064,0,0,0,0,0,0,0.300831082,72.49247333,-0.300831082,107.5075267,0.88379377,0,0,0,0,2,18,0% +2018-02-19 03:00:00,104.0187702,266.881904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815470024,4.657967938,-3.832588456,3.832588456,1,0.814435084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089902399,84.84200779,-0.089902399,95.15799221,0.493841316,0,0,0,0,2,19,0% +2018-02-19 04:00:00,115.837633,276.2498273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021748093,4.821469045,-1.852167513,1.852167513,1,0.846892989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.133454916,97.66928463,0.133454916,82.33071537,0,0.675341639,0,0,0,2,20,0% +2018-02-19 05:00:00,127.4209431,286.973143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223914993,5.00862621,-1.044149517,1.044149517,1,0.708713773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.354009576,110.7327558,0.354009576,69.2672442,0,0.908760883,0,0,0,2,21,0% +2018-02-19 06:00:00,138.249049,300.6733989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412901093,5.247740784,-0.565653545,0.565653545,1,0.626886143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556720442,123.8292965,0.556720442,56.17070349,0,0.960188317,0,0,0,2,22,0% +2018-02-19 07:00:00,147.3007405,320.0621351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570882912,5.586138068,-0.218912452,0.218912452,1,0.567589924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727761521,136.6990613,0.727761521,43.30093873,0,0.981296175,0,0,0,2,23,0% +2018-02-20 08:00:00,152.5680995,347.8173247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662815671,6.070557511,0.070599657,-0.070599657,1,0.518080437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855464113,148.8110458,0.855464113,31.18895418,0,0.991552195,0,0,0,2,0,0% +2018-02-20 09:00:00,151.7652499,19.64088971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648803301,0.342798194,0.342576844,-0.342576844,1,0.471569599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931112002,158.6088245,0.931112002,21.39117554,0,0.996300767,0,0,0,2,1,0% +2018-02-20 10:00:00,145.3177677,45.29657288,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536273509,0.790574337,0.628646865,-0.628646865,1,0.422648744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949535591,161.7201036,0.949535591,18.27989641,0,0.997342679,0,0,0,2,2,0% +2018-02-20 11:00:00,135.680472,62.96599784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368070967,1.098963979,0.969175083,-0.969175083,1,0.364414989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909464506,155.4314548,0.909464506,24.56854518,0,0.995022593,0,0,0,2,3,0% +2018-02-20 12:00:00,124.5890485,75.72085293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174489107,1.321578196,1.442952662,-1.442952662,1,0.283394251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813614675,144.4506135,0.813614675,35.54938649,0,0.988545848,0,0,0,2,4,0% +2018-02-20 13:00:00,112.8967526,85.98028511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970420048,1.500639067,2.276209433,-2.276209433,1,0.140898951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668503878,131.9516982,0.668503878,48.04830184,0,0.975206118,0,0,0,2,5,0% +2018-02-20 14:00:00,101.0561224,95.16882538,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763762064,1.661009348,4.631895234,-4.631895234,1,0,#DIV/0!,0,0,0.207573723,1,0.212630836,0,0.937177527,0.975939491,0.724496596,1,0,0,0.032331599,0.312029739,0.91240683,0.636903426,0.961238037,0.922476074,0,0,0,0,0,0,-0.484008248,118.9475159,0.484008248,61.05248408,0,0.946695975,0,0,0,2,6,0% +2018-02-20 15:00:00,88.98083659,104.2118896,0.878666358,7.341151821,0.748090618,0.732156684,0,0.732156684,0.725532926,0.006623758,2.188930018,1.953329494,0.235600524,0.022557692,0.213042831,1.55300857,1.818840593,-46.48572003,46.48572003,0,0,0.851393264,0.005639423,0.181383232,1,0.866304441,0,0.021508665,0.961238037,1,0.665312492,0.940815896,0.697409846,0.015838795,0.115824807,0.244826714,0.724496596,0.448993192,0.971406835,0.932644872,0.004085743,0.175256928,0.701495588,0.191095723,0,0.261151479,-0.26607943,105.4311026,0.26607943,74.56889741,0,0.862086188,0.701495588,0.416230806,0.973910326,2,7,39% +2018-02-20 16:00:00,78.10586328,113.8600309,137.0306601,451.9982812,43.8719838,43.58207661,0,43.58207661,42.54908161,1.032994998,56.08043459,21.53286237,34.54757221,1.322902182,33.22467003,1.363204479,1.987232426,-3.423290776,3.423290776,0.884429109,0.884429109,0.320161807,0.951833092,30.61422414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.89979568,0.958438127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.689599835,29.42755671,41.58939552,30.38599484,0,21.53286237,-0.047639257,92.73056188,0.047639257,87.26943812,0,0,41.58939552,30.38599484,61.47642142,2,8,48% +2018-02-20 17:00:00,67.80863319,124.8652164,324.7497451,679.395039,68.1413729,185.8457708,117.3110109,68.53475985,66.08665909,2.448100753,80.79404932,0,80.79404932,2.054713808,78.73933552,1.18348391,2.179309148,-1.410831826,1.410831826,0.771420141,0.771420141,0.209827333,2.005930777,64.51762912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52501045,1.488633159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453290019,62.01679916,64.97830047,63.50543232,117.3110109,0,0.172669808,80.05691624,-0.172669808,99.94308376,0.760429979,0,154.18511,63.50543232,195.7481454,2,9,27% +2018-02-20 18:00:00,58.92129282,138.0299973,483.2878493,777.5425249,81.90867352,375.044306,291.9622533,83.08205275,79.4388248,3.64322795,119.6485831,0,119.6485831,2.469848717,117.1787344,1.028370559,2.409077919,-0.620709086,0.620709086,0.636301195,0.636301195,0.16948217,2.542760554,81.78392011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35962,1.789396988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842221366,78.61381481,78.20184136,80.4032118,291.9622533,0,0.375493615,67.94517548,-0.375493615,112.0548245,0.916841943,0,345.8850811,80.4032118,398.5073751,2,10,15% +2018-02-20 19:00:00,52.27207106,154.0002078,594.1955741,823.888464,90.04780007,542.2600982,450.4482743,91.81182388,87.33252666,4.479297227,146.7848697,0,146.7848697,2.715273413,144.0695963,0.912319747,2.687810674,-0.135103203,0.135103203,0.553257698,0.553257698,0.151545727,2.781462546,89.4613967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.94734648,1.967206345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.015160146,85.99369734,85.96250662,87.96090368,450.4482743,0,0.546734533,56.8567246,-0.546734533,123.1432754,0.958547939,0,517.7387714,87.96090368,575.3074236,2,11,11% +2018-02-20 20:00:00,48.83655586,172.5951014,648.0900134,842.2239321,93.7304137,664.0057046,568.2160325,95.78967218,90.9040959,4.885576275,159.9632449,0,159.9632449,2.826317802,157.1369271,0.852358695,3.012352793,0.249408603,-0.249408603,0.487502306,0.487502306,0.14462561,2.743850041,88.25164925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.38047469,2.047657626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987910014,84.83084207,89.3683847,86.8784997,568.2160325,0,0.674661466,47.57213341,-0.674661466,132.4278666,0.975888757,0,643.8840222,86.8784997,700.7442627,2,12,9% +2018-02-20 21:00:00,49.31230319,192.127473,640.7794288,839.8683433,93.23936168,725.6131133,630.3547964,95.25831691,90.42785091,4.830466,158.175902,0,158.175902,2.811510771,155.3643912,0.860662052,3.353256987,0.618548627,-0.618548627,0.424375645,0.424375645,0.145509293,2.454525641,78.945982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.92268988,2.036929983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.778295472,75.88588076,88.70098535,77.92281074,630.3547964,0,0.750540012,41.36282294,-0.750540012,138.6371771,0.9833813,0,708.5801044,77.92281074,759.5790255,2,13,7% +2018-02-20 22:00:00,53.59229928,210.196866,572.8306365,815.9464258,88.54435223,717.8211647,627.6285121,90.19265262,85.87441332,4.318239302,141.5593587,0,141.5593587,2.669938914,138.8894198,0.935362076,3.668627389,1.041733766,-1.041733766,0.352006724,0.352006724,0.154573353,1.952574885,62.80152022,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.54575247,1.934361654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414633857,60.36721001,83.96038633,62.30157166,627.6285121,0,0.76920309,39.71761912,-0.76920309,140.2823809,0.984997661,0,702.1730027,62.30157166,742.9481353,2,14,6% +2018-02-20 23:00:00,60.85659052,225.478476,449.6030491,760.5011373,79.24109097,634.9552531,554.7142756,80.24097741,76.85167971,3.389297697,111.4008758,0,111.4008758,2.389411261,109.0114646,1.062147876,3.935341798,1.631687353,-1.631687353,0.251118718,0.251118718,0.176246783,1.298462436,41.76301538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.87275774,1.731120325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940731615,40.14419891,74.81348935,41.87531924,554.7142756,0,0.729406241,43.16335981,-0.729406241,136.8366402,0.981451094,0,619.2384219,41.87531924,646.6449808,2,15,4% +2018-02-20 00:00:00,70.14104382,238.0700856,281.9723612,642.5074284,63.70880488,471.2322367,407.3188606,63.91337611,61.78774935,2.125626764,70.28851907,0,70.28851907,1.921055528,68.36746354,1.224192155,4.155106844,2.70886489,-2.70886489,0.066910511,0.066910511,0.225939892,0.590355953,18.98787677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.39273489,1.39179819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427710878,18.25186939,59.82044576,19.64366758,407.3188606,0,0.633951987,50.65770146,-0.633951987,129.3422985,0.971129674,0,455.379878,19.64366758,468.2362656,2,16,3% +2018-02-20 01:00:00,80.66694772,248.697398,93.12385499,358.3098454,35.0156428,210.1613257,175.4995268,34.66179893,33.95979197,0.702006955,23.63480762,0,23.63480762,1.055850824,22.57895679,1.407903835,4.340588437,6.083052194,-6.083052194,0,0,0.376011526,0.263962706,8.489947993,0.337796366,1,0.162933856,0,0.943728544,0.982490507,0.724496596,1,32.92051559,0.764960328,0.049812874,0.312029739,0.868470803,0.592967399,0.961238037,0.922476074,0.181086717,8.160860942,33.10160231,8.92582127,116.2164244,0,0.489798226,60.67267956,-0.489798226,119.3273204,0.947917148,0,143.2651438,8.92582127,149.1069153,2,17,4% +2018-02-20 02:00:00,92.09804405,258.1580033,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607414103,4.505707148,-27.02070235,27.02070235,1,0,#DIV/0!,0,0,1,0.759092217,0,0.036991778,0.961238037,1,0.624954983,0.900458387,0,0,0.115824807,0.199104418,0.724496596,0.448993192,0.977776595,0.939014632,0,0,0,0,0,0,0.303930353,72.30617701,-0.303930353,107.693823,0.885488626,0,0,0,0,2,18,0% +2018-02-20 03:00:00,103.8254548,267.1960798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812096034,4.66345134,-3.881833518,3.881833518,1,0.806013682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092711834,84.68036372,-0.092711834,95.31963628,0.510694524,0,0,0,0,2,19,0% +2018-02-20 04:00:00,115.6423071,276.5870999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018339013,4.827355561,-1.862922855,1.862922855,1,0.84873226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130922695,97.52291457,0.130922695,82.47708543,0,0.668095243,0,0,0,2,20,0% +2018-02-20 05:00:00,127.2108291,287.3427145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.220247812,5.015076449,-1.046991168,1.046991168,1,0.709199724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35172273,110.5927212,0.35172273,69.40727875,0,0.907842568,0,0,0,2,21,0% +2018-02-20 06:00:00,138.0067438,301.0751675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40867207,5.254752969,-0.565590235,0.565590235,1,0.626875316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554630125,123.6852425,0.554630125,56.31475749,0,0.95984983,0,0,0,2,22,0% +2018-02-20 07:00:00,147.0053864,320.4465764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.565728011,5.592847835,-0.217302671,0.217302671,1,0.567314635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725805267,136.5358778,0.725805267,43.46412215,0,0.981110999,0,0,0,2,23,0% +2018-02-21 08:00:00,152.2171868,348.006222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656691088,6.073854391,0.073380965,-0.073380965,1,0.517604806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853570159,148.6021293,0.853570159,31.39787069,0,0.991422507,0,0,0,2,0,0% +2018-02-21 09:00:00,151.4104461,19.49219491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642610806,0.34020298,0.346593388,-0.346593388,1,0.470882729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929204253,158.3111104,0.929204253,21.68888963,0,0.996190517,0,0,0,2,1,0% +2018-02-21 10:00:00,145.0055073,44.97629803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530823536,0.784984486,0.634351282,-0.634351282,1,0.421673231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947538874,161.3588117,0.947538874,18.64118834,0,0.997231716,0,0,0,2,2,0% +2018-02-21 11:00:00,135.4082541,62.6251984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363319869,1.093015907,0.977694593,-0.977694593,1,0.362958067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907309766,155.1361888,0.907309766,24.86381117,0,0.994892029,0,0,0,2,3,0% +2018-02-21 12:00:00,124.3406765,75.40116165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170154199,1.315998531,1.457213111,-1.457213111,1,0.280955571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811243737,144.2176265,0.811243737,35.78237354,0,0.988366242,0,0,0,2,4,0% +2018-02-21 13:00:00,112.6583717,85.68439815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966259517,1.495474865,2.306269964,-2.306269964,1,0.135758298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873463,131.74937,0.665873463,48.25063,0,0.974910658,0,0,0,2,5,0% +2018-02-21 14:00:00,100.8171203,94.89135116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759590692,1.656166509,4.747516814,-4.747516814,1,0,#DIV/0!,0,0,0.219798092,1,0.207601666,0,0.937865249,0.976627212,0.724496596,1,0,0,0.034056133,0.312029739,0.907965264,0.63246186,0.961238037,0.922476074,0,0,0,0,0,0,-0.481092952,118.7568088,0.481092952,61.2431912,0,0.94606998,0,0,0,2,6,0% +2018-02-21 15:00:00,88.7593964,103.9477889,1.336285321,10.46004439,1.109815677,1.086424123,0,1.086424123,1.076350639,0.010073483,3.11169709,2.754234205,0.357462884,0.033465037,0.323997847,1.549143709,1.814231167,-38.30562968,38.30562968,0,0,0.830522987,0.008366259,0.26908766,1,0.835548013,0,0.026099895,0.961238037,1,0.653148501,0.928651905,1.034629176,0.023373842,0.115824807,0.231035402,0.724496596,0.448993192,0.973375817,0.934613853,0.006061326,0.260208126,1.040690502,0.283581968,0,0.452939288,-0.263309992,105.2665564,0.263309992,74.7334436,0,0.860109751,1.040690502,0.673159467,1.48125991,2,7,42% +2018-02-21 16:00:00,77.84174525,113.6077524,141.7361453,460.8711696,44.6708687,44.39234412,0,44.39234412,43.32387719,1.068466933,56.07544567,20.36288476,35.71256091,1.346991509,34.3655694,1.35859475,1.982829336,-3.360849102,3.360849102,0.895107265,0.895107265,0.315169208,0.99171492,31.89696082,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.64455866,0.975890763,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.718494083,30.660572,42.36305274,31.63646276,0,20.36288476,-0.044183464,92.53235041,0.044183464,87.46764959,0,0,42.36305274,31.63646276,63.06848489,2,8,49% +2018-02-21 17:00:00,67.51883554,124.6301555,330.1012047,683.8390317,68.61504531,189.653895,120.6194042,69.03449085,66.54604854,2.488442316,82.10585563,0,82.10585563,2.068996779,80.03685885,1.178425987,2.17520656,-1.398772977,1.398772977,0.769357957,0.769357957,0.207860633,2.033802307,65.41407334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.96659305,1.498981123,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473482848,62.87849544,65.4400759,64.37747656,120.6194042,0,0.176385668,79.84069451,-0.176385668,100.1593055,0.766530256,0,157.8984987,64.37747656,200.0322696,2,9,27% +2018-02-21 18:00:00,58.60143265,137.8302922,488.8613563,780.4081744,82.2778367,379.5739827,296.0918829,83.48209976,79.79685636,3.6852434,121.011076,0,121.011076,2.48098035,118.5300957,1.022787946,2.405592407,-0.618235312,0.618235312,0.635878155,0.635878155,0.168305053,2.569210558,82.63464315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.70377355,1.797461818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861384303,79.43156216,78.56515785,81.22902398,296.0918829,0,0.379406435,67.7030793,-0.379406435,112.2969207,0.918215203,0,350.4412262,81.22902398,403.6039978,2,10,15% +2018-02-21 19:00:00,51.92365749,153.8721688,599.8388319,826.0999185,90.37401084,547.1689477,454.9982083,92.17073945,87.64890097,4.521838488,148.1629794,0,148.1629794,2.725109871,145.4378695,0.906238783,2.685575973,-0.136255391,0.136255391,0.553454734,0.553454734,0.150663822,2.806854145,90.2780778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.2514575,1.974332825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033556273,86.77872228,86.28501377,88.7530551,454.9982083,0,0.550778663,56.57955111,-0.550778663,123.4204489,0.959219432,0,522.7281365,88.7530551,580.815236,2,11,11% +2018-02-21 20:00:00,48.47375726,172.5830484,653.6954565,844.1775718,94.03694651,669.1265593,572.9973412,96.12921809,91.20138561,4.927832473,161.3315926,0,161.3315926,2.835560897,158.4960317,0.846026665,3.012142427,0.24601257,-0.24601257,0.488083062,0.488083062,0.143854368,2.768084477,89.031112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.66624086,2.054354217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005467781,85.58009132,89.67170864,87.63444554,572.9973412,0,0.678763995,47.2528674,-0.678763995,132.7471326,0.976336694,0,649.1100383,87.63444554,706.4650302,2,12,9% +2018-02-21 21:00:00,48.96051666,192.2460471,646.2545017,841.8107438,93.53928371,730.8414953,635.2510267,95.5904686,90.71872919,4.871739413,159.5124405,0,159.5124405,2.820554527,156.691886,0.854522219,3.355326496,0.612932583,-0.612932583,0.425336045,0.425336045,0.14474063,2.477344127,79.67990295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.20229315,2.043482153,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794827387,76.59135349,88.99712054,78.63483564,635.2510267,0,0.754624518,41.00742821,-0.754624518,138.9925718,0.983741882,0,713.9201614,78.63483564,765.3850887,2,13,7% +2018-02-21 22:00:00,53.27307186,210.4123954,578.0917322,818.1251448,88.85133854,723.0999112,632.5698687,90.53004252,86.17214286,4.357899665,142.8442291,0,142.8442291,2.679195684,140.1650334,0.929790507,3.672389087,1.032894335,-1.032894335,0.353518355,0.353518355,0.153697646,1.97361023,63.47808925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.83194143,1.941068152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.429873893,61.01755389,84.26181533,62.95862204,632.5698687,0,0.773194508,39.35837403,-0.773194508,140.641626,0.985333219,0,707.5539202,62.95862204,748.7590791,2,14,6% +2018-02-21 23:00:00,60.57678382,225.7439871,454.5679112,763.3220696,79.58080885,640.3027955,559.6949167,80.60787877,77.18115384,3.426724925,112.6149079,0,112.6149079,2.399655009,110.2152529,1.057264328,3.939975842,1.616508569,-1.616508569,0.253714443,0.253714443,0.17506913,1.317116576,42.36299663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.1894608,1.738541885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.954246475,40.72092371,75.14370728,42.4594656,559.6949167,0,0.733235601,42.84166376,-0.733235601,137.1583362,0.981809094,0,624.6572664,42.4594656,652.4461374,2,15,4% +2018-02-21 00:00:00,69.89656552,238.3558542,286.5204694,646.9565084,64.15117516,476.8500012,412.4733083,64.37669286,62.21678053,2.159912325,71.40459965,0,71.40459965,1.934394624,69.47020502,1.219925204,4.160094447,2.675893995,-2.675893995,0.072548866,0.072548866,0.223897355,0.605213311,19.4657405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.80513598,1.40146232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.438474984,18.71121018,60.24361096,20.1126725,412.4733083,0,0.637559562,50.38991802,-0.637559562,129.610082,0.971575955,0,460.9927593,20.1126725,474.1561012,2,16,3% +2018-02-21 01:00:00,80.45051097,248.9921595,96.75700309,367.3569827,35.81268353,216.6143587,181.1521645,35.46219415,34.73279899,0.72939516,24.53974016,0,24.53974016,1.079884543,23.45985561,1.404126301,4.345732996,5.943299663,-5.943299663,0,0,0.370130144,0.269971136,8.683199747,0.327147763,1,0.166695339,0,0.943251923,0.982013887,0.724496596,1,33.66764814,0.782372676,0.048453956,0.312029739,0.871799584,0.59629618,0.961238037,0.922476074,0.185315342,8.346621879,33.85296348,9.128994554,121.8886391,0,0.493122965,60.45394749,-0.493122965,119.5460525,0.948605412,0,149.4771862,9.128994554,155.4519305,2,17,4% +2018-02-21 02:00:00,91.89697262,258.4614507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603904745,4.511003305,-29.86411641,29.86411641,1,0,#DIV/0!,0,0,1,0.784353481,0,0.033472496,0.961238037,1,0.633962404,0.909465808,0,0,0.115824807,0.209300591,0.724496596,0.448993192,0.976395508,0.937633545,0,0,0,0,0,0,0.307005833,72.12111959,-0.307005833,107.8788804,0.887136645,0,0,0,0,2,18,0% +2018-02-21 03:00:00,103.6323425,267.5136837,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808725588,4.668994575,-3.932183161,3.932183161,1,0.797403386,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095500288,84.51988487,-0.095500288,95.48011513,0.52644137,0,0,0,0,2,19,0% +2018-02-21 04:00:00,115.4467799,276.9275192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01492642,4.833297,-1.873713643,1.873713643,1,0.850577594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.128405407,97.37745657,0.128405407,82.62254343,0,0.660608297,0,0,0,2,20,0% +2018-02-21 05:00:00,126.9999472,287.7150585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216567229,5.021575079,-1.049777781,1.049777781,1,0.709676263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.349441946,110.4531858,0.349441946,69.54681416,0,0.906914716,0,0,0,2,21,0% +2018-02-21 06:00:00,137.7629765,301.478926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404417527,5.261799884,-0.565456531,0.565456531,1,0.626852451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55253479,123.5410846,0.55253479,56.45891542,0,0.959507961,0,0,0,2,22,0% +2018-02-21 07:00:00,146.7079507,320.8317901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560536778,5.599571083,-0.215615569,0.215615569,1,0.567026124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723831472,136.3717267,0.723831472,43.62827331,0,0.980923147,0,0,0,2,23,0% +2018-02-22 08:00:00,151.8638212,348.1975036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650523695,6.077192885,0.076249474,-0.076249474,1,0.517114262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851645561,148.3911033,0.851645561,31.60889669,0,0.99129013,0,0,0,2,0,0% +2018-02-22 09:00:00,151.0521575,19.3508752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636357491,0.337736485,0.350715315,-0.350715315,1,0.470177838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927253079,158.0105902,0.927253079,21.98940981,0,0.996077289,0,0,0,2,1,0% +2018-02-22 10:00:00,144.6886445,44.66230979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525293238,0.779504357,0.640195902,-0.640195902,1,0.420673742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945487157,160.9944716,0.945487157,19.00552843,0,0.997117209,0,0,0,2,2,0% +2018-02-22 11:00:00,135.1311857,62.28773491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358484113,1.087126058,0.98642703,-0.98642703,1,0.361464733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905090453,154.8354684,0.905090453,25.16453163,0,0.994756903,0,0,0,2,3,0% +2018-02-22 12:00:00,124.0876503,75.0829657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165738059,1.310444964,1.471868748,-1.471868748,1,0.278449309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80880132,143.978982,0.80880132,36.02101804,0,0.988180121,0,0,0,2,4,0% +2018-02-22 13:00:00,112.4156417,85.38902318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962023078,1.4903196,2.337382803,-2.337382803,1,0.130437689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663167805,131.5419175,0.663167805,48.45808254,0,0.974604301,0,0,0,2,5,0% +2018-02-22 14:00:00,100.5740677,94.61383766,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755348623,1.651322985,4.870112536,-4.870112536,1,0,#DIV/0!,0,0,0.23235448,1,0.202519167,0,0.938554639,0.977316602,0.724496596,1,0,0,0.035808703,0.312029739,0.903475508,0.627972104,0.961238037,0.922476074,0,0,0,0,0,0,-0.478102056,118.5615175,0.478102056,61.43848251,0,0.945419818,0,0,0,2,6,0% +2018-02-22 15:00:00,88.53188727,103.6833082,1.938302494,14.45765255,1.567888802,1.535222912,0,1.535222912,1.520611169,0.014611743,4.282468654,3.765227142,0.517241513,0.047277632,0.469963881,1.545172926,1.809615108,-32.46772782,32.46772782,0,0,0.808897892,0.011819408,0.380152792,1,0.803244969,0,0.030790081,0.961238037,1,0.640893466,0.91639687,1.461669295,0.032862689,0.115824807,0.217149783,0.724496596,0.448993192,0.975316833,0.93655487,0.008563121,0.36787014,1.470232416,0.400732829,0,0.740827384,-0.260431431,105.0956633,0.260431431,74.90433673,0,0.858010885,1.470232416,1.036370789,2.14851637,2,7,46% +2018-02-22 16:00:00,77.57399274,113.3548794,146.5260554,469.6643332,45.46432831,45.19798637,0,45.19798637,44.09341107,1.104575299,55.99478104,19.09692524,36.8978558,1.370917244,35.52693856,1.353921587,1.978415868,-3.299968215,3.299968215,0.905518509,0.905518509,0.310281528,1.032594954,33.21180325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.38426389,0.993224877,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.748111529,31.92444855,43.13237542,32.91767343,0,19.09692524,-0.040660795,92.33033438,0.040660795,87.66966562,0,0,43.13237542,32.91767343,64.67633433,2,8,50% +2018-02-22 17:00:00,67.22556726,124.3944444,335.5107834,688.2457227,69.08798571,193.527448,123.993498,69.53395004,67.00472803,2.529222006,83.43173153,0,83.43173153,2.083257677,81.34847385,1.17330749,2.171092626,-1.386735253,1.386735253,0.767299385,0.767299385,0.205918823,2.061864325,66.31664429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40749323,1.509313095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493813684,63.74608097,65.90130692,65.25539406,123.993498,0,0.180158763,79.62099257,-0.180158763,100.3790074,0.772467011,0,161.6821936,65.25539406,204.3905439,2,9,26% +2018-02-22 18:00:00,58.27817188,137.6302606,494.4771081,783.2510936,82.64701299,384.1536589,300.271181,83.88247792,80.15490061,3.727577309,122.3838121,0,122.3838121,2.492112377,119.8916997,1.017145981,2.402101198,-0.615690038,0.615690038,0.635442887,0.635442887,0.167140221,2.59579181,83.4895876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.04793931,1.805526933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88064233,80.25336728,78.92858164,82.05889421,300.271181,0,0.38336516,67.45771515,-0.38336516,112.5422848,0.919576046,0,355.050767,82.05889421,408.7566721,2,10,15% +2018-02-22 19:00:00,51.57194118,153.7449862,605.5097948,828.2924266,90.69996456,552.1126539,459.5830393,92.52961459,87.96502599,4.564588602,149.5477987,0,149.5477987,2.734938579,146.8128601,0.900100175,2.683356218,-0.137327353,0.137327353,0.55363805,0.55363805,0.149791077,2.832323063,91.09724574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55532889,1.98145369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052008417,87.56613766,86.60733731,89.54759135,459.5830393,0,0.55485602,56.29920162,-0.55485602,123.7007984,0.959886532,0,527.7549072,89.54759135,586.3620148,2,11,11% +2018-02-22 20:00:00,48.1080542,172.574158,659.3152773,846.1120441,94.34264267,674.2665993,577.7985384,96.46806096,91.49786391,4.970197056,162.703401,0,162.703401,2.844778764,159.8586223,0.839643943,3.01198726,0.242702645,-0.242702645,0.488649093,0.488649093,0.14309185,2.792352334,89.8116497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.95122708,2.06103253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02304976,86.33037384,89.97427684,88.39140637,577.7985384,0,0.682886554,46.93037754,-0.682886554,133.0696225,0.976781396,0,654.3571399,88.39140637,712.2075476,2,12,9% +2018-02-22 21:00:00,48.60673179,192.3700966,651.7325698,843.7309488,93.83764579,736.0734991,640.1523692,95.92112995,91.00809455,4.913035404,160.8496583,0,160.8496583,2.829551245,158.020107,0.848347508,3.357491568,0.607420131,-0.607420131,0.42627873,0.42627873,0.143981827,2.500165924,80.41393038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.48044214,2.050000245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.811361701,77.29692857,89.29180384,79.34692882,640.1523692,0,0.758716235,40.64884562,-0.758716235,139.3511544,0.984099209,0,719.2652441,79.34692882,771.196222,2,13,7% +2018-02-22 22:00:00,52.95295703,210.6341982,583.347244,820.2747537,89.15586714,728.3674352,637.5024284,90.86500673,86.4674888,4.397517932,144.1276714,0,144.1276714,2.688378344,141.4392931,0.924203449,3.676260276,1.024203943,-1.024203943,0.3550045,0.3550045,0.152834985,1.994636638,64.15437081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.11583918,1.947720959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445107455,61.66762145,84.56094664,63.61534241,637.5024284,0,0.777181579,38.99675711,-0.777181579,141.0032429,0.98566497,0,712.9247588,63.61534241,754.5597281,2,14,6% +2018-02-22 23:00:00,60.29694009,226.0152764,459.5224408,766.0986403,79.91669001,645.6248466,564.6538654,80.9709812,77.50690694,3.464074262,113.826319,0,113.826319,2.409783065,111.4165359,1.052380133,3.944710732,1.601607,-1.601607,0.256262762,0.256262762,0.173912486,1.335774588,42.96310244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50258707,1.745879627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.967764142,41.29776824,75.47035121,43.04364787,564.6538654,0,0.737051126,42.5191811,-0.737051126,137.4808189,0.982162101,0,630.0519779,43.04364787,658.2231846,2,15,4% +2018-02-22 00:00:00,69.65250086,238.6465504,291.0597504,651.3220669,64.58656314,482.4261041,417.5929328,64.8331713,62.63903996,2.194131343,72.51832944,0,72.51832944,1.947523178,70.57080626,1.215665472,4.165168053,2.643712898,-2.643712898,0.078052157,0.078052157,0.22190139,0.620135383,19.94568562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.2110278,1.410973913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.449285974,19.17255169,60.66031378,20.5835256,417.5929328,0,0.641146606,50.12262772,-0.641146606,129.8773723,0.972014716,0,466.5667899,20.5835256,480.0382957,2,16,3% +2018-02-22 01:00:00,80.23456142,249.2911149,100.4083239,376.2332727,36.59349485,223.0184486,186.7714623,36.24698633,35.49006597,0.756920358,25.44858951,0,25.44858951,1.103428885,24.34516062,1.400357271,4.350950751,5.80983177,-5.80983177,0,0,0.364446825,0.275857221,8.872516492,0.316653323,1,0.170451851,0,0.942772766,0.98153473,0.724496596,1,34.39912353,0.799430471,0.047102952,0.312029739,0.875123473,0.599620069,0.961238037,0.922476074,0.189475053,8.528600335,34.58859858,9.328030806,127.6296581,0,0.496424628,60.23626416,-0.496424628,119.7637358,0.949279775,0,155.7448518,9.328030806,161.8498614,2,17,4% +2018-02-22 02:00:00,91.69638594,258.7685649,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600403847,4.516363458,-33.37068974,33.37068974,1,0,#DIV/0!,0,0,1,0.809046525,0,0.029957452,0.961238037,1,0.643056413,0.918559817,0,0,0.115824807,0.219599853,0.724496596,0.448993192,0.974977384,0.936215421,0,0,0,0,0,0,0.31005662,71.93735727,-0.31005662,108.0626427,0.888739131,0,0,0,0,2,18,0% +2018-02-22 03:00:00,103.439457,267.8345892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805359102,4.674595432,-3.983674425,3.983674425,1,0.788597861,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098267221,84.36060191,-0.098267221,95.63939809,0.541183333,0,0,0,0,2,19,0% +2018-02-22 04:00:00,115.2510649,277.2709422,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011510548,4.839290862,-1.884540302,1.884540302,1,0.852429062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12590326,97.23292086,0.12590326,82.76707914,0,0.652869694,0,0,0,2,20,0% +2018-02-22 05:00:00,126.7883072,288.0900048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212873414,5.028119126,-1.052509364,1.052509364,1,0.710143391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347167159,110.3141435,0.347167159,69.68585655,0,0.90597716,0,0,0,2,21,0% +2018-02-22 06:00:00,137.5177652,301.8844658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400137782,5.268877889,-0.565252708,0.565252708,1,0.626817596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550434176,123.3968043,0.550434176,56.60319567,0,0.959162617,0,0,0,2,22,0% +2018-02-22 07:00:00,146.4084796,321.2175428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.555310022,5.606303737,-0.213851554,0.213851554,1,0.566724459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721839765,136.2065845,0.721839765,43.79341553,0,0.98073255,0,0,0,2,23,0% +2018-02-23 08:00:00,151.5080933,348.3909162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315072,6.080568571,0.079204766,-0.079204766,1,0.516608877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849689936,148.1779611,0.849689936,31.82203889,0,0.991155005,0,0,0,2,0,0% +2018-02-23 09:00:00,150.6905292,19.21668324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630045887,0.335394394,0.354942348,-0.354942348,1,0.469454973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925258184,157.7073191,0.925258184,22.29268085,0,0.995961029,0,0,0,2,1,0% +2018-02-23 10:00:00,144.3673377,44.35458493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519685375,0.774133545,0.646180905,-0.646180905,1,0.419650247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943380323,160.6272146,0.943380323,19.37278537,0,0.996999107,0,0,0,2,2,0% +2018-02-23 11:00:00,134.8494054,61.9536907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353566118,1.081295887,0.99537398,-0.99537398,1,0.359934714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902806711,154.5294851,0.902806711,25.47051491,0,0.99461716,0,0,0,2,3,0% +2018-02-23 12:00:00,123.8300934,74.7663599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161242842,1.30491915,1.486926374,-1.486926374,1,0.275874304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806287887,143.7348174,0.806287887,36.26518256,0,0.98798741,0,0,0,2,4,0% +2018-02-23 13:00:00,112.1686796,85.09424223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957712777,1.485174701,2.369584467,-2.369584467,1,0.12493088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660387728,131.3294498,0.660387728,48.67055017,0,0.974286903,0,0,0,2,5,0% +2018-02-23 14:00:00,100.3270809,94.33635039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75103789,1.646479919,5.000255203,-5.000255203,1,0,#DIV/0!,0,0,0.245249019,1,0.197385745,0,0.93924518,0.978007143,0.724496596,1,0,0,0.037588948,0.312029739,0.898939658,0.623436254,0.961238037,0.922476074,0,0,0,0,0,0,-0.475036756,118.3617432,0.475036756,61.63825677,0,0.944744987,0,0,0,2,6,0% +2018-02-23 15:00:00,88.29857003,103.418496,2.704825784,19.42447624,2.128089955,2.08431031,0,2.08431031,2.063920191,0.020390119,5.720769713,5.000783623,0.719986091,0.064169764,0.655816327,1.541100772,1.804993262,-28.09931517,28.09931517,0,0,0.78677524,0.016042441,0.515980048,1,0.769341818,0,0.035573043,0.961238037,1,0.628574411,0.904077815,1.983918592,0.044413275,0.115824807,0.20320092,0.724496596,0.448993192,0.977224458,0.938462495,0.011622694,0.499615067,1.995541286,0.544028342,0,1.153471658,-0.25744754,104.9186619,0.25744754,75.08133807,0,0.855785676,1.995541286,1.531152864,2.997650213,2,7,50% +2018-02-23 16:00:00,77.30272987,113.1014415,151.3975368,478.3704335,46.25184721,45.99848195,0,45.99848195,44.85718336,1.141298583,55.83744532,17.73469587,38.10274945,1.394663844,36.70808561,1.349187157,1.973992542,-3.240629179,3.240629179,0.915666082,0.915666082,0.305499338,1.074452768,34.55809444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.11843087,1.010429208,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.778437373,33.21855485,43.89686825,34.22898406,0,17.73469587,-0.037073144,92.12462155,0.037073144,87.87537845,0,0,43.89686825,34.22898406,66.29905374,2,8,51% +2018-02-23 17:00:00,66.92895575,124.1580908,340.975582,692.6126694,69.5599222,197.4645401,127.4316882,70.03285186,67.46243389,2.570417966,84.77096584,0,84.77096584,2.097488303,82.67347753,1.168130643,2.166967477,-1.374729321,1.374729321,0.765246249,0.765246249,0.20400265,2.090101019,67.22483345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84745752,1.519623135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514271073,64.61906693,66.36172859,66.13869007,127.4316882,0,0.183986944,79.39792525,-0.183986944,100.6020747,0.778241586,0,165.5343678,66.13869007,208.8208176,2,9,26% +2018-02-23 18:00:00,57.95163893,137.4298872,500.1321087,786.0699319,83.0159857,388.7808616,304.4979071,84.28295453,80.51274744,3.770207092,123.7660583,0,123.7660583,2.503238265,121.2628201,1.011446906,2.398604022,-0.613078216,0.613078216,0.634996239,0.634996239,0.165988114,2.62249017,84.34829861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.39191529,1.813587602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899985201,81.07879297,79.29190049,82.89238057,304.4979071,0,0.387367453,67.20920653,-0.387367453,112.7907935,0.92092359,0,359.7112064,82.89238057,413.9626116,2,10,15% +2018-02-23 19:00:00,51.21704714,153.6186359,611.2054922,830.4651147,91.02547357,557.0884877,464.2002428,92.88824487,88.28071969,4.607525174,150.9386018,0,150.9386018,2.744753876,148.1938479,0.893906106,2.68115099,-0.13832162,0.13832162,0.55380808,0.55380808,0.148927774,2.85785642,91.91848628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85878569,1.98856484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.070507248,88.3555453,86.92929294,90.34411014,464.2002428,0,0.558964169,56.01580664,-0.558964169,123.9841934,0.960548828,0,532.8162922,90.34411014,591.9447054,2,11,11% +2018-02-23 20:00:00,47.7395685,172.5684282,664.9466425,848.0267358,94.64733687,679.4230369,582.6170177,96.80601912,91.79337045,5.012648666,164.0779784,0,164.0779784,2.853966418,161.224012,0.833212654,3.011887257,0.239477296,-0.239477296,0.48920066,0.48920066,0.142338243,2.816642077,90.59289134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.23527921,2.067688955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.040647597,87.08133302,90.2759268,89.14902198,582.6170177,0,0.687026709,46.60479445,-0.687026709,133.3952055,0.977222626,0,659.6224586,89.14902198,717.9687105,2,12,9% +2018-02-23 21:00:00,48.25107188,192.4996348,657.211033,845.6285236,94.13430549,741.3064314,645.0562882,96.25014324,91.29580886,4.954334374,162.1869205,0,162.1869205,2.838496629,159.3484239,0.842140072,3.359752436,0.602009998,-0.602009998,0.427203917,0.427203917,0.143232996,2.522980987,81.14774123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.75700409,2.056481145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827891137,78.00229548,89.58489522,80.05877662,645.0562882,0,0.762812831,40.28719768,-0.762812831,139.7128023,0.984453121,0,724.6125716,80.05877662,777.0094398,2,13,7% +2018-02-23 22:00:00,52.63207327,210.8622545,588.5948778,822.3949972,89.45782376,733.6212725,642.4238554,91.19741712,86.76034031,4.437076813,145.4091261,0,145.4091261,2.69748345,142.7116426,0.918602971,3.680240609,1.015660741,-1.015660741,0.356465474,0.356465474,0.151985393,2.015645621,64.83009191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39733919,1.954317577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460328391,62.31715027,84.85766758,64.27146785,642.4238554,0,0.781162164,38.63289449,-0.781162164,141.3671055,0.985992804,0,718.2829659,64.27146785,760.3473562,2,14,6% +2018-02-23 23:00:00,60.01715978,226.2922774,464.4646867,768.8309048,80.24866325,650.9193028,569.5891019,81.33020097,77.82886997,3.501330999,115.034634,0,115.034634,2.419793283,112.6148407,1.047497046,3.949545312,1.586977732,-1.586977732,0.258764514,0.258764514,0.172776673,1.354429377,43.56310458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.81207018,1.753131996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.981279473,41.87451312,75.79334965,43.62764512,569.5891019,0,0.740850944,42.1960465,-0.740850944,137.8039535,0.982510041,0,635.4203614,43.62764512,663.9737825,2,15,4% +2018-02-23 00:00:00,69.40892641,238.9420784,295.5885245,655.6049939,65.01499474,487.9589523,422.6761284,65.28282392,63.05455277,2.228271154,73.62930193,0,73.62930193,1.960441971,71.66885996,1.211414296,4.170325989,2.612297944,-2.612297944,0.083424431,0.083424431,0.219951011,0.635115557,20.4274995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.61043452,1.420333534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.460139059,19.63568952,61.07057357,21.05602306,422.6761284,0,0.644711575,49.85594617,-0.644711575,130.1440538,0.97244594,0,472.1002587,21.05602306,485.8810047,2,16,3% +2018-02-23 01:00:00,80.01915645,249.5941536,104.0752609,384.9381596,37.35820084,229.370634,192.3543575,37.01627653,36.23171325,0.784563278,26.36073954,0,26.36073954,1.126487592,25.23425194,1.396597745,4.356239774,5.682248298,-5.682248298,0,0,0.358953708,0.281621898,9.057928312,0.306310905,1,0.174202864,0,0.94229116,0.981053123,0.724496596,1,35.11504863,0.816136426,0.045759953,0.312029739,0.878441987,0.602938583,0.961238037,0.922476074,0.193566695,8.706825228,35.30861533,9.522961654,133.4341201,0,0.499701972,60.01971541,-0.499701972,119.9802846,0.949940359,0,162.0630712,9.522961654,168.2956592,2,17,4% +2018-02-23 02:00:00,91.49631763,259.079226,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596911996,4.521785518,-37.80284422,37.80284422,1,0,#DIV/0!,0,0,1,0.833189342,0,0.026446868,0.961238037,1,0.652235964,0.927739368,0,0,0.115824807,0.230001135,0.724496596,0.448993192,0.97352183,0.934759867,0,0,0,0,0,0,0.313081924,71.75493993,-0.313081924,108.2450601,0.890297391,0,0,0,0,2,18,0% +2018-02-23 03:00:00,103.2468172,268.1586664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801996901,4.680251646,-4.036347942,4.036347942,1,0.779590159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101012207,84.20253918,-0.101012207,95.79746082,0.55501032,0,0,0,0,2,19,0% +2018-02-23 04:00:00,115.0551706,277.6172229,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008091549,4.8453346,-1.895403825,1.895403825,1,0.854286834,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123416358,97.08931167,0.123416358,82.91068833,0,0.64486732,0,0,0,2,20,0% +2018-02-23 05:00:00,126.5759148,288.4673803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209166468,5.034705571,-1.05518621,1.05518621,1,0.710601159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344898214,110.1755825,0.344898214,69.82441748,0,0.905029693,0,0,0,2,21,0% +2018-02-23 06:00:00,137.2711253,302.2915763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395833104,5.275983308,-0.564979229,0.564979229,1,0.626770828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548327949,123.2523788,0.548327949,56.74762125,0,0.958813694,0,0,0,2,22,0% +2018-02-23 07:00:00,146.1070182,321.6036007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550048527,5.613041718,-0.212011173,0.212011173,1,0.566409735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719829731,136.0404245,0.719829731,43.95957546,0,0.980539129,0,0,0,2,23,0% +2018-02-24 08:00:00,151.1500927,348.5862058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638066782,6.083977019,0.082246311,-0.082246311,1,0.516088742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847702887,147.9626948,0.847702887,32.03730521,0,0.99101707,0,0,0,2,0,0% +2018-02-24 09:00:00,150.3257063,19.08936257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623678526,0.333172229,0.359274105,-0.359274105,1,0.468714199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923219288,157.4013525,0.923219288,22.5986475,0,0.995841686,0,0,0,2,1,0% +2018-02-24 10:00:00,144.041748,44.05308178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514002763,0.768871323,0.652306372,-0.652306372,1,0.41860273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9412183,160.2571709,0.9412183,19.74282909,0,0.996877361,0,0,0,2,2,0% +2018-02-24 11:00:00,134.5630571,61.6231344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348568399,1.075526591,1.004536952,-1.004536952,1,0.358367753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900458753,154.2184339,0.900458753,25.78156611,0,0.994472748,0,0,0,2,3,0% +2018-02-24 12:00:00,123.5681351,74.45142882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156670808,1.299422566,1.502392857,-1.502392857,1,0.273229379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803703996,143.485278,0.803703996,36.51472203,0,0.987788041,0,0,0,2,4,0% +2018-02-24 13:00:00,111.9176084,84.80012975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953330758,1.48004147,2.40291314,-2.40291314,1,0.119231341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657534165,131.1120842,0.657534165,48.88791576,0,0.973958324,0,0,0,2,5,0% +2018-02-24 14:00:00,100.0762822,94.05894863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746660627,1.641638345,5.1385826,-5.1385826,1,0,#DIV/0!,0,0,0.258487916,1,0.192203869,0,0.939936353,0.978698316,0.724496596,1,0,0,0.039396479,0.312029739,0.894359875,0.618856471,0.961238037,0.922476074,0,0,0,0,0,0,-0.47189837,118.1575946,0.47189837,61.84240541,0,0.944044983,0,0,0,2,6,0% +2018-02-24 15:00:00,88.05973092,103.153395,3.653464878,25.42306588,2.792700581,2.736031716,0,2.736031716,2.708490355,0.027541361,7.436711504,6.46667642,0.970035085,0.084210226,0.885824858,1.536932243,1.800366377,-24.71318515,24.71318515,0,0,0.764397818,0.021052557,0.677122589,1,0.73378464,0,0.040442167,0.961238037,1,0.616218767,0.891722171,2.603503952,0.058068173,0.115824807,0.189219963,0.724496596,0.448993192,0.979093627,0.940331664,0.015252506,0.655979163,2.618756457,0.714047336,0,1.721528593,-0.254362572,104.7358178,0.254362572,75.26418217,0,0.853430199,2.618756457,2.183251827,4.047651113,2,7,55% +2018-02-24 16:00:00,77.02808556,112.8474627,156.3476,486.9826555,47.03294503,46.79334245,0,46.79334245,45.6147282,1.17861425,55.60268943,16.27618685,39.32650258,1.418216826,37.90828575,1.34439371,1.969559776,-3.182811426,3.182811426,0.9255535,0.9255535,0.300822942,1.117265865,35.93511078,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.84661179,1.027493262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.809455316,34.54219534,44.6560671,35.5696886,0,16.27618685,-0.033422519,91.91532596,0.033422519,88.08467404,0,0,44.6560671,35.5696886,67.9357169,2,8,52% +2018-02-24 17:00:00,66.62913258,123.921096,346.492619,696.9375683,70.03058927,201.463156,130.9322397,70.53091633,67.91890861,2.612007721,86.12282767,0,86.12282767,2.111680652,84.01114702,1.162897741,2.162831138,-1.362765533,1.362765533,0.763200321,0.763200321,0.202112788,2.118496456,68.13812832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28623838,1.529905444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.534843471,65.49696071,66.82108185,67.02686615,130.9322397,0,0.187867961,79.1716131,-0.187867961,100.8283869,0.78385563,0,169.4530551,67.02686615,213.3207985,2,9,26% +2018-02-24 18:00:00,57.62196549,137.2291492,505.8233158,788.8634108,83.38454112,393.4530328,308.7697334,84.68329936,80.87018954,3.813109816,125.1570707,0,125.1570707,2.514351571,122.6427191,1.005693019,2.395100483,-0.61040488,0.61040488,0.634539072,0.634539072,0.164849145,2.649291478,85.2103208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.73550224,1.821639154,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919402657,81.90740149,79.65490489,83.72904064,308.7697334,0,0.391410895,66.95768208,-0.391410895,113.0423179,0.922257005,0,364.4199545,83.72904064,419.218937,2,10,15% +2018-02-24 19:00:00,50.85910226,153.4930853,616.922942,832.617162,91.3503532,562.093671,468.8472423,93.24642873,88.59580301,4.650625726,152.33466,0,152.33466,2.754550196,149.5801098,0.887658789,2.678959717,-0.13924088,0.13924088,0.553965283,0.553965283,0.148074171,2.883441449,92.74138877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.16165576,1.99566224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089043514,89.14655047,87.25069927,91.14221271,468.8472423,0,0.563100623,55.72950116,-0.563100623,124.2704988,0.961205923,0,537.9094456,91.14221271,597.560201,2,11,11% +2018-02-24 20:00:00,47.36842211,172.5658485,670.5867418,849.9210808,94.95086797,684.5930722,587.4501571,97.14291509,92.08774897,5.055166117,165.4546383,0,165.4546383,2.863119001,162.5915193,0.826734927,3.011842233,0.2363348,-0.2363348,0.489738059,0.489738059,0.141593715,2.840942405,91.37447341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51824704,2.07431997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058253101,87.83261943,90.57650014,89.9069394,587.4501571,0,0.691182006,46.27625217,-0.691182006,133.7237478,0.977660154,0,664.9031111,89.9069394,723.7454048,2,12,9% +2018-02-24 21:00:00,47.89365866,192.634667,662.6873458,847.5030827,94.42912612,746.5376265,649.9602698,96.5773567,91.58173957,4.995617133,163.5236059,0,163.5236059,2.847386559,160.6762193,0.835902034,3.362109193,0.596700686,-0.596700686,0.428111862,0.428111862,0.142494235,2.545779604,81.88102312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.03185155,2.062921869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844408657,78.70715392,89.87626021,80.77007579,649.9602698,0,0.766911983,39.9226083,-0.766911983,140.0773917,0.98480347,0,729.9593893,80.77007579,782.8217885,2,13,7% +2018-02-24 22:00:00,52.31053578,211.0965363,593.8324221,824.4856779,89.75710161,738.8590259,647.3318725,91.52715346,87.05059383,4.476559633,146.6880537,0,146.6880537,2.706507782,143.9815459,0.912991083,3.684329597,1.007262597,-1.007262597,0.357901641,0.357901641,0.151148873,2.036629089,65.50499237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.67634192,1.960855675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475530842,62.96589027,85.15187276,64.92674594,647.3318725,0,0.785134163,38.26691161,-0.785134163,141.7330884,0.986316616,0,723.626055,64.92674594,766.1193117,2,14,6% +2018-02-24 23:00:00,59.73753853,226.5749165,469.3928014,771.5189936,80.57666679,656.184165,574.4987008,81.6854642,78.14698299,3.538481209,116.2394029,0,116.2394029,2.4296838,113.8097191,1.042616734,3.954478296,1.572615498,-1.572615498,0.261220601,0.261220601,0.171661488,1.373074271,44.16278847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.11785251,1.760297642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994787635,42.45095209,76.11264015,44.21124973,574.4987008,0,0.744633257,41.87239188,-0.744633257,138.1276081,0.982852851,0,640.7603263,44.21124973,669.695705,2,15,5% +2018-02-24 00:00:00,69.16591295,239.2423364,300.1052308,659.8062941,65.43650747,493.4470976,427.7214223,65.72567533,63.46335534,2.262319995,74.73713984,0,74.73713984,1.973152135,72.76398771,1.207172911,4.175566481,2.58162549,-2.58162549,0.088669729,0.088669729,0.218045208,0.650147619,20.9109823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.0033911,1.429542005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.471029737,20.10043158,61.47442083,21.52997358,427.7214223,0,0.648253019,49.58998386,-0.648253019,130.4100161,0.972869623,0,477.5915995,21.52997358,491.6825366,2,16,3% +2018-02-24 01:00:00,79.80434712,249.9011604,107.7554369,393.4717782,38.10697089,235.6683649,197.8981538,37.77021112,36.95790512,0.812305999,27.27561899,0,27.27561899,1.149065772,26.12655322,1.392848615,4.361598053,5.560178529,-5.560178529,0,0,0.353643139,0.287266443,9.239476279,0.296118082,1,0.177947971,0,0.941807178,0.980569141,0.724496596,1,35.81557408,0.83249424,0.044425006,0.312029739,0.88175475,0.606251346,0.961238037,0.922476074,0.197591306,8.88133604,36.01316538,9.71383028,139.296932,0,0.50295387,59.80438032,-0.50295387,120.1956197,0.950587304,0,168.4270605,9.71383028,174.7845681,2,17,4% +2018-02-24 02:00:00,91.29679532,259.3933109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593429675,4.527267333,-43.58271473,43.58271473,1,0,#DIV/0!,0,0,1,0.856799931,0,0.022940851,0.961238037,1,0.661500293,0.937003697,0,0,0.115824807,0.24050359,0.724496596,0.448993192,0.972028436,0.933266473,0,0,0,0,0,0,0.316081072,71.57391052,-0.316081072,108.4260895,0.891812736,0,0,0,0,2,18,0% +2018-02-24 03:00:00,103.0544358,268.4857824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798639213,4.685960898,-4.090248432,4.090248432,1,0.770372633,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103734937,84.04571421,-0.103734937,95.95428579,0.568002312,0,0,0,0,2,19,0% +2018-02-24 04:00:00,114.8591008,277.9662123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004669485,4.851425615,-1.906305847,1.906305847,1,0.856151189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120944695,96.94662676,0.120944695,83.05337324,0,0.636587904,0,0,0,2,20,0% +2018-02-24 05:00:00,126.3627717,288.8470093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205446419,5.041331347,-1.057808925,1.057808925,1,0.71104967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.342634861,110.0374856,0.342634861,69.96251441,0,0.904072058,0,0,0,2,21,0% +2018-02-24 06:00:00,137.0230695,302.7000448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391503713,5.283112428,-0.564636749,0.564636749,1,0.626712261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546215704,123.1077798,0.546215704,56.89222018,0,0.958461072,0,0,0,2,22,0% +2018-02-24 07:00:00,145.8036095,321.9897294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544753047,5.619780936,-0.210095116,0.210095116,1,0.56608207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717800909,135.8732166,0.717800909,44.12678339,0,0.980342802,0,0,0,2,23,0% +2018-02-25 08:00:00,150.7899079,348.7831178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631780371,6.087413781,0.085373454,-0.085373454,1,0.515553969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845683999,147.745295,0.845683999,32.25470502,0,0.990876261,0,0,0,2,0,0% +2018-02-25 09:00:00,149.9578334,18.96864794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617257931,0.331065361,0.363710097,-0.363710097,1,0.4679556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921136127,157.0927452,0.921136127,22.90725482,0,0.995719206,0,0,0,2,1,0% +2018-02-25 10:00:00,143.7120396,43.75774049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.508248266,0.763716645,0.658572283,-0.658572283,1,0.417531196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939001063,159.884469,0.939001063,20.11553097,0,0.996751924,0,0,0,2,2,0% +2018-02-25 11:00:00,134.2722901,61.29611961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343493557,1.069819106,1.013917369,-1.013917369,1,0.356763608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898046866,153.9025124,0.898046866,26.09748758,0,0.994323618,0,0,0,2,3,0% +2018-02-25 12:00:00,123.3019108,74.1382464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152024317,1.293956501,1.518275131,-1.518275131,1,0.270513351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801050299,143.2305159,0.801050299,36.76948414,0,0.987581947,0,0,0,2,4,0% +2018-02-25 13:00:00,111.6625571,84.50675214,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948879272,1.474921065,2.437408757,-2.437408757,1,0.113332243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654608163,130.8899455,0.654608163,49.11005454,0,0.973618429,0,0,0,2,5,0% +2018-02-25 14:00:00,99.82179929,93.781685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742219063,1.636799181,5.285806923,-5.285806923,1,0,#DIV/0!,0,0,0.272077453,1,0.186976069,0,0.940627639,0.979389603,0.724496596,1,0,0,0.041230883,0.312029739,0.889738381,0.614234977,0.961238037,0.922476074,0,0,0,0,0,0,-0.468688338,117.9491873,0.468688338,62.05081266,0,0.9433193,0,0,0,2,6,0% +2018-02-25 15:00:00,87.81566694,102.8880419,4.798743149,32.48488824,3.560595621,3.489405478,0,3.489405478,3.453230525,0.036174953,9.430462738,8.159586809,1.27087593,0.107365095,1.163510834,1.532672523,1.795735092,-22.01580794,22.01580794,0,0,0.741985039,0.026841274,0.863307631,1,0.696517101,0,0.045390709,0.961238037,1,0.603853478,0.879356882,3.319376531,0.073809643,0.115824807,0.175237101,0.724496596,0.448993192,0.980919781,0.942157818,0.019446411,0.836679933,3.338822943,0.910489576,0,2.476295057,-0.251181003,104.5474089,0.251181003,75.45259114,0,0.85094036,3.338822943,3.017668984,5.313826939,2,7,59% +2018-02-25 16:00:00,76.75019342,112.592961,161.3731278,495.4947063,47.80717563,47.5821117,0,47.5821117,46.36561289,1.216498802,55.29000967,14.72166379,40.56834589,1.441562735,39.12678315,1.339543577,1.965117884,-3.126493001,3.126493001,0.935184518,0.935184518,0.296252395,1.161009742,37.34206424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.56839072,1.044407294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841147606,35.89461252,45.40953832,36.93901981,0,14.72166379,-0.029711042,91.70256784,0.029711042,88.29743216,0,0,45.40953832,36.93901981,69.58538801,2,8,53% +2018-02-25 17:00:00,66.32623329,123.6834547,352.0588368,701.2182562,70.49972797,205.5211574,134.4932881,71.02786928,68.37390106,2.653968222,87.4865679,0,87.4865679,2.125826915,85.36074098,1.157611151,2.158683514,-1.350853921,1.350853921,0.761163315,0.761163315,0.200249846,2.147034614,69.05601357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.72359442,1.540154363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555519269,66.37926692,67.27911369,67.91942128,134.4932881,0,0.191799468,78.94218228,-0.191799468,101.0578177,0.789311059,0,173.4361534,67.91942128,217.8880563,2,9,26% +2018-02-25 18:00:00,57.28928623,137.0280159,511.5476482,791.6303246,83.75246873,398.1675336,313.0842486,85.08328503,81.22702278,3.856262251,126.5560957,0,126.5560957,2.525445946,124.0306498,0.999886671,2.391590046,-0.607675132,0.607675132,0.634072257,0.634072257,0.16372369,2.676181594,86.07519938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.07850392,1.829676991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938884455,82.73875567,80.01738837,84.56843266,313.0842486,0,0.395492996,66.70327551,-0.395492996,113.2967245,0.923575511,0,369.1743332,84.56843266,424.522681,2,10,15% +2018-02-25 19:00:00,50.49823502,153.3682924,622.6591588,834.7478002,91.67442219,567.125382,473.5214142,93.60396787,88.91010012,4.693867751,153.735244,0,153.735244,2.764322072,150.9709219,0.881360468,2.67678167,-0.140087981,0.140087981,0.554110145,0.554110145,0.147230505,2.909065533,93.56554739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.4637701,2.002741931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107608076,89.93876309,87.57137817,91.94150502,473.5214142,0,0.567262848,55.4404245,-0.567262848,124.5595755,0.961857439,0,543.031473,91.94150502,603.2053492,2,11,11% +2018-02-25 20:00:00,46.99473676,172.5663995,676.232796,851.7945602,95.25307941,689.7739009,592.2953248,97.47857608,92.38084762,5.097728458,166.8327023,0,166.8327023,2.872231791,163.9604705,0.820212888,3.011851849,0.233273246,-0.233273246,0.490261615,0.490261615,0.140858414,2.865242286,92.15604112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79998461,2.080922155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.075858282,88.58389205,90.87584289,90.6648142,592.2953248,0,0.695349973,45.94488787,-0.695349973,134.0551121,0.978093763,0,670.1962059,90.6648142,729.5345135,2,12,9% +2018-02-25 21:00:00,47.53461181,192.7751904,668.1590262,849.3542896,94.7219771,751.7644533,654.8618283,96.90262498,91.86576,5.036864971,164.8591087,0,164.8591087,2.856217096,162.0028916,0.829635485,3.364561789,0.591490473,-0.591490473,0.429002861,0.429002861,0.141765618,2.568552433,82.61347558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.3048628,2.069319563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.860907494,79.41121508,90.16577029,81.48053465,654.8618283,0,0.771011386,39.55520247,-0.771011386,140.4447975,0.985150115,0,735.3029756,81.48053465,788.6303559,2,13,7% +2018-02-25 22:00:00,51.98845589,211.3370073,599.0577559,826.5466553,90.05360172,744.078372,652.2242682,91.85410377,87.33815337,4.515950407,147.9639369,0,147.9639369,2.715448354,145.2484886,0.907369728,3.688526609,0.999007102,-0.999007102,0.359313413,0.359313413,0.150325408,2.05757939,66.17882606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95275508,1.967333089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490709264,63.61360485,85.44346435,65.58093794,652.2242682,0,0.789095527,37.89893278,-0.789095527,142.1010672,0.986636315,0,728.9516132,65.58093794,771.8730255,2,14,6% +2018-02-25 23:00:00,59.45816664,226.8631129,474.3050488,774.1631114,80.90064849,661.4175459,579.3808386,82.03670725,78.46119544,3.575511805,117.4402034,0,117.4402034,2.439453043,115.0007504,1.037740775,3.959508271,1.558514694,-1.558514694,0.26363198,0.26363198,0.170566703,1.391703059,44.76195431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.41988548,1.767375426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.008284128,43.02689309,76.4281696,44.79426852,579.3808386,0,0.748396339,41.54834584,-0.748396339,138.4516542,0.98319048,0,646.0698946,44.79426852,675.3868474,2,15,5% +2018-02-25 00:00:00,68.92352511,239.5472172,304.6084357,663.9270827,65.85115045,498.8892427,432.7274804,66.16176236,63.8654953,2.296267056,75.84149703,0,75.84149703,1.985655151,73.85584188,1.202942445,4.180887655,2.551671923,-2.551671923,0.093792091,0.093792091,0.216182951,0.66522579,21.3959481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.38994333,1.438600398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48195382,20.56659914,61.87189715,22.00519954,432.7274804,0,0.651769587,49.32484562,-0.651769587,130.6751544,0.973285773,0,483.0393974,22.00519954,497.4413604,2,16,3% +2018-02-25 01:00:00,79.59017782,250.212016,111.4466597,401.8348907,38.84001517,241.9094867,203.4005093,38.5089774,37.6688454,0.840131996,28.1927027,0,28.1927027,1.171169762,27.02153294,1.389110655,4.367023508,5.443278503,-5.443278503,0,0,0.348507665,0.29279244,9.417211351,0.286072146,1,0.181686888,0,0.941320879,0.980082842,0.724496596,1,36.50088985,0.848508505,0.04309811,0.312029739,0.8850615,0.609558096,0.961238037,0.922476074,0.201550102,9.052181752,36.70243995,9.900690257,145.2132891,0,0.506179314,59.59033082,-0.506179314,120.4096692,0.951220776,0,174.8323375,9.900690257,181.3121412,2,17,4% +2018-02-25 02:00:00,91.09784032,259.7106931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589957255,4.532806697,-51.43547157,51.43547157,1,0,#DIV/0!,0,0,1,0.879896289,0,0.019439387,0.961238037,1,0.670848943,0.946352347,0,0,0.115824807,0.251106627,0.724496596,0.448993192,0.970496767,0.931734804,0,0,0,0,0,0,0.319053517,71.39430476,-0.319053517,108.6056952,0.893286479,0,0,0,0,2,18,0% +2018-02-25 03:00:00,102.8623201,268.8158018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795286162,4.691720823,-4.145425176,4.145425176,1,0.760936854,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106435229,83.89013748,-0.106435229,96.10986252,0.580230727,0,0,0,0,2,19,0% +2018-02-25 04:00:00,114.6628538,278.3177594,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001244329,4.857561268,-1.917248687,1.917248687,1,0.858022525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118488148,96.80485732,0.118488148,83.19514268,0,0.628016865,0,0,0,2,20,0% +2018-02-25 05:00:00,126.1488753,289.228714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201713221,5.04799335,-1.060378437,1.060378437,1,0.711489082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340376748,109.8998293,0.340376748,70.10017072,0,0.90310395,0,0,0,2,21,0% +2018-02-25 06:00:00,136.773607,303.1096572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387149772,5.290261513,-0.564226127,0.564226127,1,0.62664204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544096957,122.9629744,0.544096957,57.03702555,0,0.958104614,0,0,0,2,22,0% +2018-02-25 07:00:00,145.4982947,322.3756948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539424298,5.626517302,-0.20810422,0.20810422,1,0.565741607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715752786,135.7049268,0.715752786,44.29507324,0,0.980143478,0,0,0,2,23,0% +2018-02-26 08:00:00,150.4276257,348.981397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.625457355,6.090874406,0.088585429,-0.088585429,1,0.515004689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843632841,147.5257507,0.843632841,32.47424934,0,0.990732511,0,0,0,2,0,0% +2018-02-26 09:00:00,149.5870541,18.85426639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610786612,0.329069027,0.368249731,-0.368249731,1,0.467179277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919008448,156.7815515,0.919008448,23.21844847,0,0.995593536,0,0,0,2,1,0% +2018-02-26 10:00:00,143.3783786,43.46848372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502424783,0.758668162,0.664978522,-0.664978522,1,0.416435665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936728629,159.5092358,0.936728629,20.49076424,0,0.996622748,0,0,0,2,2,0% +2018-02-26 11:00:00,133.9772578,60.97268498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338344272,1.064174107,1.023516578,-1.023516578,1,0.355122046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895571409,153.5819201,0.895571409,26.41807992,0,0.994169723,0,0,0,2,3,0% +2018-02-26 12:00:00,123.0315608,73.82687563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14730582,1.288522056,1.534580212,-1.534580212,1,0.267725018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798327541,142.9706898,0.798327541,37.02931023,0,0.987369065,0,0,0,2,4,0% +2018-02-26 13:00:00,111.4036594,84.21416746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944360655,1.469814499,2.473113153,-2.473113153,1,0.107226432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651610873,130.6631652,0.651610873,49.33683479,0,0.973267088,0,0,0,2,5,0% +2018-02-26 14:00:00,99.56376482,93.50460518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737715512,1.631963226,5.442726138,-5.442726138,1,0,#DIV/0!,0,0,0.286023997,1,0.181704924,0,0.941318525,0.980080489,0.724496596,1,0,0,0.043091724,0.312029739,0.885077449,0.609574045,0.961238037,0.922476074,0,0,0,0,0,0,-0.465408209,117.7366439,0.465408209,62.26335614,0,0.94256743,0,0,0,2,6,0% +2018-02-26 15:00:00,87.56667645,102.6224673,6.151796397,40.61021795,4.427618847,4.340484643,0,4.340484643,4.294109803,0.04637484,11.69265594,10.06757263,1.625083304,0.133509044,1.49157426,1.528326819,1.791099941,-19.81974075,19.81974075,0,0,0.719727794,0.033377261,1.073527451,1,0.657478995,0,0.050411998,0.961238037,1,0.591504442,0.867007846,4.127661677,0.091569868,0.115824807,0.161280904,0.724496596,0.448993192,0.982698949,0.943936986,0.024181712,1.040701302,4.151843389,1.13227117,0,3.4483551,-0.247907378,104.353716,0.247907378,75.64628395,0,0.848311771,4.151843389,4.057551391,6.807429623,2,7,64% +2018-02-26 16:00:00,76.4691911,112.3379481,166.4708905,503.9008224,48.5741273,48.36436603,0,48.36436603,47.10943814,1.25492789,54.89914378,13.07165988,41.8274839,1.464689158,40.36279474,1.334639161,1.960667069,-3.071650668,3.071650668,0.94456311,0.94456311,0.291787514,1.205658044,38.7781071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.28338384,1.061162309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.873495148,37.27499154,46.15687899,38.33615385,0,13.07165988,-0.025940938,91.486473,0.025940938,88.513527,0,0,46.15687899,38.33615385,71.24712496,2,8,54% +2018-02-26 17:00:00,66.02039672,123.4451547,357.6711157,705.4527158,70.9670868,209.6362929,138.1128496,71.52344324,68.82716729,2.696275951,88.86142247,0,88.86142247,2.139919508,86.72150297,1.152273296,2.154524395,-1.339004162,1.339004162,0.759136887,0.759136887,0.198414364,2.175699451,69.97797326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.15929117,1.550364399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576286846,67.26548964,67.73557801,68.81585404,138.1128496,0,0.195779032,78.70976396,-0.195779032,101.290236,0.794610035,0,177.4814343,68.81585404,222.5200345,2,9,25% +2018-02-26 18:00:00,56.95373817,136.8264486,517.3019986,794.3695441,84.11956208,402.9216563,317.4389684,85.48268789,81.58304691,3.899640975,127.9623738,0,127.9623738,2.536515165,125.4258587,0.994030252,2.388072032,-0.604894123,0.604894123,0.633596677,0.633596677,0.162612096,2.703146459,86.94248213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.42072785,1.837696602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958420408,83.57242084,80.37914826,85.41011745,317.4389684,0,0.399611202,66.4461249,-0.399611202,113.5538751,0.924878382,0,373.9715879,85.41011745,429.8708016,2,10,15% +2018-02-26 19:00:00,50.13457478,153.2442061,628.4111661,836.856316,91.99750338,572.1807673,478.2200993,93.96066803,89.22343921,4.737228812,155.1396269,0,155.1396269,2.774064161,152.3655627,0.875013399,2.674615957,-0.140865904,0.140865904,0.554243178,0.554243178,0.14639699,2.934716257,94.39056286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.76496355,2.009800042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126191938,90.73179934,87.89115549,92.74159938,478.2200993,0,0.571448276,55.14871967,-0.571448276,124.8512803,0.962503017,0,548.1794439,92.74159938,608.8769659,2,11,11% +2018-02-26 20:00:00,46.61863325,172.5700526,681.8820689,853.6467036,95.55381977,694.9627247,597.1498901,97.81283461,92.67251955,5.140315063,168.2115024,0,168.2115024,2.881300222,165.3302022,0.813648643,3.011915608,0.230290544,-0.230290544,0.490771687,0.490771687,0.140132472,2.889531009,92.93724995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.08035076,2.087492203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.09345538,89.33481969,91.17380614,91.42231189,597.1498901,0,0.699528139,45.61084121,-0.699528139,134.3891588,0.978523247,0,675.4988556,91.42231189,735.3329303,2,12,9% +2018-02-26 21:00:00,47.17404831,192.9211941,673.6236658,851.181857,95.01273443,756.9843263,659.7585166,97.22580966,92.14774992,5.078059732,166.1928412,0,166.1928412,2.864984503,163.3278567,0.823342464,3.367110034,0.586377421,-0.586377421,0.429877245,0.429877245,0.141047204,2.591290542,83.34481132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57592224,2.075671519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877381176,80.11420282,90.45330341,82.18987434,659.7585166,0,0.775108763,39.18510552,-0.775108763,140.8148945,0.985492924,0,740.640653,82.18987434,794.432282,2,13,7% +2018-02-26 22:00:00,51.66594049,211.5836239,604.2688579,828.5778455,90.34723328,749.2770704,657.0989056,92.17816475,87.62293085,4.555233895,149.236283,0,149.236283,2.724302429,146.5119806,0.901740773,3.692830881,0.990891584,-0.990891584,0.360701249,0.360701249,0.149514959,2.07848934,66.85136194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22649403,1.973747836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505858451,64.26007191,85.73235249,66.23381974,657.0989056,0,0.793044262,37.52908045,-0.793044262,142.4709196,0.986951817,0,734.2573111,66.23381974,777.6060215,2,14,6% +2018-02-26 23:00:00,59.17912863,227.1567793,479.1998118,776.7635342,81.22056601,666.6176763,584.2337995,82.38387686,78.77146627,3.612410596,118.6366421,0,118.6366421,2.449099737,116.1875424,1.032870643,3.964633717,1.544669399,-1.544669399,0.265999665,0.265999665,0.169492066,1.410310015,45.360418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.7181296,1.774364422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.021764805,43.60215915,76.7398944,45.37652358,584.2337995,0,0.752138552,41.22403305,-0.752138552,138.7759669,0.983522886,0,651.3472071,45.37652358,681.0452343,2,15,5% +2018-02-26 00:00:00,68.68182106,239.8566088,309.0968375,667.968578,66.25898415,504.2842448,437.693111,66.59113383,64.26103131,2.330102524,76.94205968,0,76.94205968,1.997952842,74.94410684,1.198723914,4.186287556,2.522413688,-2.522413688,0.098795544,0.098795544,0.21436319,0.680344747,21.88222575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.77014758,1.447510033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.492907454,21.03402772,62.26305504,22.48153775,437.693111,0,0.655260031,49.06063019,-0.655260031,130.9393698,0.973694415,0,488.4423927,22.48153775,503.1561095,2,16,3% +2018-02-26 01:00:00,79.37668614,250.5265979,115.1469244,410.0288225,39.55757991,248.0922206,208.8594216,39.23279908,38.36477292,0.868026155,29.11151194,0,29.11151194,1.192806986,27.91870495,1.385384523,4.372513997,5.331228642,-5.331228642,0,0,0.343540048,0.298201747,9.591193231,0.276170125,1,0.185419457,0,0.940832305,0.979594268,0.724496596,1,37.17122075,0.864184601,0.041779223,0.312029739,0.888362086,0.612858682,0.961238037,0.922476074,0.205444451,9.219419752,37.3766652,10.08360435,151.1786891,0,0.509377415,59.37763146,-0.509377415,120.6223685,0.951840956,0,181.2747331,10.08360435,187.8742505,2,17,4% +2018-02-26 02:00:00,90.89946759,260.0312437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586494998,4.53840136,-62.72072451,62.72072451,1,0,#DIV/0!,0,0,1,0.902496378,0,0.015942343,0.961238037,1,0.680281787,0.955785191,0,0,0.115824807,0.261809925,0.724496596,0.448993192,0.96892636,0.930164397,0,0,0,0,0,0,0.321998833,71.21615101,-0.321998833,108.783849,0.894719934,0,0,0,0,2,18,0% +2018-02-26 03:00:00,102.6704712,269.1485873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791937767,4.697529025,-4.201932464,4.201932464,1,0.751273539,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.10911302,83.7358124,-0.10911302,96.2641876,0.591759544,0,0,0,0,2,19,0% +2018-02-26 04:00:00,114.4664228,278.6717113,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997815961,4.863738894,-1.928235381,1.928235381,1,0.85990136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.116046479,96.663988,0.116046479,83.336012,0,0.619138154,0,0,0,2,20,0% +2018-02-26 05:00:00,125.9342184,289.6123153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197966752,5.054688456,-1.062895991,1.062895991,1,0.711919609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338123428,109.7625843,0.338123428,70.23741566,0,0.902125006,0,0,0,2,21,0% +2018-02-26 06:00:00,136.5227441,303.5201991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382771389,5.297426821,-0.56374841,0.56374841,1,0.626560346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.54197115,122.8179247,0.54197115,57.18207534,0,0.957744167,0,0,0,2,22,0% +2018-02-26 07:00:00,145.1911126,322.7612638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53406296,5.633246751,-0.206039452,0.206039452,1,0.565388511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713684804,135.5355175,0.713684804,44.46448251,0,0.979941061,0,0,0,2,23,0% +2018-02-27 08:00:00,150.063331,349.1807895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619099212,6.094354462,0.091881363,-0.091881363,1,0.514441051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84154896,147.3040493,0.84154896,32.69595073,0,0.99058575,0,0,0,2,0,0% +2018-02-27 09:00:00,149.2135104,18.74593886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604267045,0.327178354,0.372892325,-0.372892325,1,0.466385346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916836008,156.4678249,0.916836008,23.53217507,0,0.99546462,0,0,0,2,1,0% +2018-02-27 10:00:00,143.040932,43.18521778,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496535228,0.753724238,0.671524894,-0.671524894,1,0.415316169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934401052,159.1315953,0.934401052,20.86840474,0,0.996489786,0,0,0,2,2,0% +2018-02-27 11:00:00,133.6781168,60.65285439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333123275,1.05859201,1.033335877,-1.033335877,1,0.353442847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893032801,153.2568567,0.893032801,26.74314329,0,0.994011015,0,0,0,2,3,0% +2018-02-27 12:00:00,122.7572295,73.51736854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142517835,1.283120138,1.551315246,-1.551315246,1,0.264863158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795536549,142.7059635,0.795536549,37.29403654,0,0.987149336,0,0,0,2,4,0% +2018-02-27 13:00:00,111.1410535,83.92242526,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939777318,1.464722637,2.510070272,-2.510070272,1,0.100906393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648543543,130.431881,0.648543543,49.56811898,0,0.972904174,0,0,0,2,5,0% +2018-02-27 14:00:00,99.30231529,93.22774773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733152357,1.627131152,5.610237735,-5.610237735,1,0,#DIV/0!,0,0,0.30033404,1,0.176393046,0,0.942008502,0.980770465,0.724496596,1,0,0,0.044978546,0.312029739,0.880379393,0.604875989,0.961238037,0.922476074,0,0,0,0,0,0,-0.462059635,117.5200921,0.462059635,62.47990793,0,0.94178886,0,0,0,2,6,0% +2018-02-27 15:00:00,87.31305292,102.356695,7.720326106,49.77053679,5.387138787,5.282895755,0,5.282895755,5.224696676,0.058199079,14.20552051,12.17119596,2.034324558,0.162442111,1.871882447,1.523900253,1.786461339,-17.99965884,17.99965884,0,0,0.697786429,0.040610528,1.306174169,1,0.616605085,0,0.055499555,0.961238037,1,0.579196192,0.854699596,5.022177176,0.111244061,0.115824807,0.147377945,0.724496596,0.448993192,0.984427771,0.945665808,0.029422189,1.266422889,5.051599365,1.377666949,0,4.666374638,-0.244546206,104.1550175,0.244546206,75.84498248,0,0.845539662,5.051599365,5.323271783,8.535574282,2,7,69% +2018-02-27 16:00:00,76.18521925,112.0824293,171.637569,512.1957822,49.33342371,49.13971546,0,49.13971546,47.84583896,1.293876495,54.43006361,11.32696312,43.10310049,1.487584746,41.61551575,1.329682917,1.956207426,-3.018259939,3.018259939,0.953693462,0.953693462,0.287427887,1.251182779,40.24233907,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.99124031,1.077750084,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.906477664,38.68246701,46.89771798,39.76021709,0,11.32696312,-0.022114519,91.26717188,0.022114519,88.73282812,0,0,46.89771798,39.76021709,72.91998486,2,8,55% +2018-02-27 17:00:00,65.7117641,123.206177,363.3262936,709.6390839,71.43242303,213.8062149,141.7888359,72.01737899,69.27847192,2.738907071,90.24661744,0,90.24661744,2.153951112,88.09266633,1.146886641,2.150353448,-1.327225526,1.327225526,0.757122622,0.757122622,0.196606809,2.204475002,70.9034939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.59310235,1.560530248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597134635,68.15513529,68.19023698,69.71566553,141.7888359,0,0.199804153,78.47449334,-0.199804153,101.5255067,0.799754951,0,181.5865605,69.71566553,227.2140693,2,9,25% +2018-02-27 18:00:00,56.61545973,136.6244006,523.0832528,797.0800215,84.48561987,407.7126419,321.8313527,85.88128923,81.93806672,3.943222511,129.3751439,0,129.3751439,2.547553158,126.8275907,0.98812618,2.384545628,-0.602067015,0.602067015,0.633113213,0.633113213,0.161514672,2.730172172,87.81172195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.76198639,1.845693591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978000445,84.40796722,80.73998684,86.25366081,321.8313527,0,0.403762915,66.18637179,-0.403762915,113.8136282,0.926164952,0,378.8089061,86.25366081,435.260202,2,10,15% +2018-02-27 19:00:00,49.76825088,153.1207664,634.1760134,838.942054,92.31942459,577.2569589,482.940619,94.31633998,89.53565331,4.780686666,156.547088,0,156.547088,2.783771274,153.7633167,0.868619841,2.672461527,-0.141577748,0.141577748,0.55436491,0.55436491,0.14557382,2.960381476,95.21604451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06507562,2.016832811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144786302,91.5252837,88.20986192,93.54211651,482.940619,0,0.575654322,54.85453238,-0.575654322,125.1454676,0.963142318,0,553.3504091,93.54211651,614.5718535,2,11,11% +2018-02-27 20:00:00,46.24023056,172.5767711,687.5318806,855.4770905,95.8529435,700.1567676,602.0112383,98.14552932,92.96262359,5.182905731,169.5903843,0,169.5903843,2.890319906,166.7000644,0.80704427,3.012032869,0.227384448,-0.227384448,0.491268659,0.491268659,0.139415998,2.913798228,93.71776713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.3592098,2.094026933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.111036897,90.0850825,91.4702467,92.17910943,602.0112383,0,0.703714039,45.27425341,-0.703714039,134.7257466,0.978948412,0,680.8081924,92.17910943,741.1375759,2,12,9% +2018-02-27 21:00:00,46.81208171,193.0726604,679.0789399,852.9855475,95.30128117,762.1947172,664.6479374,97.54677981,92.42759591,5.119183893,167.5242363,0,167.5242363,2.873685251,164.6505511,0.817024956,3.369753619,0.581359399,-0.581359399,0.430735377,0.430735377,0.140339032,2.613985443,84.07475735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84492085,2.081975182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893823555,80.8158547,90.7387444,82.89782988,664.6479374,0,0.779201874,38.81244225,-0.779201874,141.1875578,0.985831777,0,745.9698013,82.89782988,800.224773,2,13,7% +2018-02-27 22:00:00,51.34309161,211.836336,609.4638127,830.5792199,90.63791385,754.452972,661.95373,92.49924198,87.90484632,4.594395659,150.504625,0,150.504625,2.733067521,147.7715575,0.896105997,3.697241539,0.982913127,-0.982913127,0.362065645,0.362065645,0.148717466,2.099352245,67.52238468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.49748191,1.980098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520973555,64.9050845,86.01845547,66.88518261,661.95373,0,0.796978439,37.15747443,-0.796978439,142.8425256,0.987263046,0,739.540911,66.88518261,783.3159253,2,14,6% +2018-02-27 23:00:00,58.900503,227.4558232,484.0755953,779.3206061,81.5363867,671.7829097,589.0559796,82.72693012,79.0777638,3.649166312,119.8283554,0,119.8283554,2.458622896,117.3697325,1.028007708,3.969853017,1.531073411,-1.531073411,0.268324716,0.268324716,0.168437301,1.428889916,45.95801146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01255444,1.781263919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03522588,44.17658871,77.04778032,45.95785263,589.0559796,0,0.75585834,40.89957377,-0.75585834,139.1004262,0.983850039,0,656.5905286,45.95785263,686.669024,2,15,5% +2018-02-27 00:00:00,68.44085244,240.1703954,313.5692672,671.9320916,66.66007977,509.6311137,442.6172637,67.01385,64.65003241,2.363817588,78.03854657,0,78.03854657,2.010047355,76.02849921,1.194518218,4.191764165,2.493827356,-2.493827356,0.103684095,0.103684095,0.212584863,0.69549964,22.36965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14407024,1.456272466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.503887122,21.50256729,62.64795736,22.95883975,442.6172637,0,0.658723209,48.79742998,-0.658723209,131.20257,0.974095585,0,493.7994797,22.95883975,508.8255811,2,16,3% +2018-02-27 01:00:00,79.16390298,250.8447811,118.8544107,418.0553933,40.2599424,254.2151386,214.2732072,39.94193135,39.04595659,0.895974752,30.03161373,0,30.03161373,1.213985807,28.81762792,1.381670756,4.378067341,5.223731748,-5.223731748,0,0,0.338733263,0.303496452,9.761489149,0.266408812,1,0.189145643,0,0.940341485,0.979103448,0.724496596,1,37.82682154,0.879528584,0.040468257,0.312029739,0.89165647,0.616153066,0.961238037,0.922476074,0.209275857,9.383114666,38.03609739,10.26264325,157.1889366,0,0.512547405,59.16633939,-0.512547405,120.8336606,0.952448048,0,187.7503932,10.26264325,194.4670879,2,17,4% +2018-02-27 02:00:00,90.10831854,260.3548324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572686842,4.54404905,-520.3408909,520.3408909,1,0,#DIV/0!,0,0,1,0.988702312,0,0.001921815,0.961238037,1,0.71906141,0.994564814,0,0,0.115824807,0.305853113,0.724496596,0.448993192,0.962211711,0.923449748,0,0,0,0,0,0,0.33467272,70.44736257,-0.33467272,109.5526374,0.900600312,0,0,0,0,2,18,0% +2018-02-27 03:00:00,102.4788847,269.4840006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788593952,4.703383092,-4.259829986,4.259829986,1,0.741372479,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111768368,83.58273573,-0.111768368,96.41726427,0.602646236,0,0,0,0,2,19,0% +2018-02-27 04:00:00,114.2697959,279.0279149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994384174,4.869955819,-1.93926967,1.93926967,1,0.861788335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113619344,96.52399736,0.113619344,83.47600264,0,0.609934092,0,0,0,2,20,0% +2018-02-27 05:00:00,125.71879,289.9976342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194206817,5.06141354,-1.065363135,1.065363135,1,0.712341516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335874362,109.6257162,0.335874362,70.37428381,0,0.901134812,0,0,0,2,21,0% +2018-02-27 06:00:00,136.2704838,303.9314573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378368616,5.304604631,-0.563204817,0.563204817,1,0.626467386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539837656,122.672588,0.539837656,57.32741195,0,0.957379562,0,0,0,2,22,0% +2018-02-27 07:00:00,144.8820998,323.1462068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.528669668,5.639965274,-0.203901895,0.203901895,1,0.565022967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711596358,135.3649482,0.711596358,44.63505175,0,0.979735447,0,0,0,2,23,0% +2018-02-28 08:00:00,149.6971059,349.3810446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612707378,6.097849573,0.095260299,-0.095260299,1,0.513863219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839431888,147.0801769,0.839431888,32.91982306,0,0.990435906,0,0,0,2,0,0% +2018-02-28 09:00:00,148.8373415,18.64338241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59770166,0.325388407,0.377637133,-0.377637133,1,0.465573936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914618576,156.1516177,0.914618576,23.84838232,0,0.995332403,0,0,0,2,1,0% +2018-02-28 10:00:00,142.6998663,42.90783431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490582509,0.748882984,0.678211152,-0.678211152,1,0.414172752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932018424,158.7516686,0.932018424,21.24833144,0,0.996352992,0,0,0,2,2,0% +2018-02-28 11:00:00,133.3750255,60.3366378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.327833335,1.053072989,1.043376547,-1.043376547,1,0.351725791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890431517,152.9275213,0.890431517,27.07247875,0,0.99384745,0,0,0,2,3,0% +2018-02-28 12:00:00,122.479064,73.20976645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137662932,1.277751469,1.56848757,-1.56848757,1,0.261926518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792678218,142.4365043,0.792678218,37.56349572,0,0.986922702,0,0,0,2,4,0% +2018-02-28 13:00:00,110.8748805,83.63156675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935131723,1.459646198,2.548326422,-2.548326422,1,0.094364206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645407495,130.1962349,0.645407495,49.8037651,0,0.972529564,0,0,0,2,5,0% +2018-02-28 14:00:00,99.03758994,92.95114425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728532028,1.622303511,5.789355277,-5.789355277,1,0,#DIV/0!,0,0,0.315014244,1,0.171043056,0,0.942697068,0.981459031,0.724496596,1,0,0,0.046890881,0.312029739,0.875646545,0.600143141,0.961238037,0.922476074,0,0,0,0,0,0,-0.458644346,117.2996642,0.458644346,62.70033581,0,0.940983067,0,0,0,2,6,0% +2018-02-28 15:00:00,87.05508114,102.0907428,9.508752828,59.91268536,6.430684549,6.308456679,0,6.308456679,6.236775683,0.071680995,16.94447846,14.44506238,2.499416078,0.193908866,2.305507212,1.519397796,1.781819598,-16.46859506,16.46859506,0,0,0.676291062,0.048477216,1.559193921,1,0.573824163,0,0.060647169,0.961238037,1,0.566951712,0.842455116,5.995026014,0.132704365,0.115824807,0.133552597,0.724496596,0.448993192,0.986103499,0.947341536,0.035121578,1.511769614,6.030147593,1.644473978,0,6.156136557,-0.241101902,103.9515846,0.241101902,76.04841538,0,0.842618807,6.030147593,6.831750421,10.50139161,2,7,74% +2018-02-28 16:00:00,75.8984205,111.826404,176.8697793,520.3749162,50.08472477,49.90780463,0,49.90780463,48.57448553,1.333319107,53.88296454,9.488599569,44.39436497,1.510239245,42.88412572,1.324677335,1.95173894,-2.966295081,2.966295081,0.962579976,0.962579976,0.28317288,1.297554571,41.73381531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.69164311,1.094163192,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.94007387,40.1161307,47.63171698,41.21029389,0,9.488599569,-0.01823416,91.04479832,0.01823416,88.95520168,0,0,47.63171698,41.21029389,74.60303013,2,8,57% +2018-02-28 17:00:00,65.40047792,122.9664961,369.0211878,713.7756596,71.8955041,218.0284993,145.5190724,72.50942698,69.72758939,2.781837589,91.64137407,0,91.64137407,2.167914715,89.47345935,1.141453672,2.146170227,-1.315526809,1.315526809,0.755122024,0.755122024,0.194827578,2.233345471,71.83206743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02481114,1.570646831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.618051191,69.04771548,68.64286233,70.61836231,145.5190724,0,0.203872282,78.23650854,-0.203872282,101.7634915,0.804748416,0,185.7491053,70.61836231,231.9674111,2,9,25% +2018-02-28 18:00:00,56.27458974,136.4218176,528.8883079,799.7607948,84.85044707,412.5376997,326.2588232,86.27887649,82.29189302,3.986983468,130.7936475,0,130.7936475,2.558554044,128.2350935,0.982176876,2.381009888,-0.599198935,0.599198935,0.632622742,0.632622742,0.160431694,2.757245057,88.68247902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.1020977,1.853663695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997614658,85.24497203,81.09971236,87.09863573,326.2588232,0,0.407945507,65.92416003,-0.407945507,114.07584,0.927434611,0,383.683437,87.09863573,440.6877521,2,10,15% +2018-02-28 19:00:00,49.39939177,152.9979048,639.9507901,841.0044183,92.64001944,582.351092,487.6802916,94.67080043,89.84658105,4.824219372,157.9569165,0,157.9569165,2.793438392,155.1634781,0.862182035,2.670317188,-0.142226694,0.142226694,0.554475887,0.554475887,0.144761161,2.986049354,96.04161171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36395119,2.023836605,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163382592,92.3188503,88.52733378,94.3426869,487.6802916,0,0.579878394,54.55801001,-0.579878394,125.44199,0.963775025,0,558.541419,94.3426869,620.2868208,2,11,11% +2018-02-28 20:00:00,45.85964528,172.5865111,693.1796178,857.2853506,96.15031136,705.3532887,606.8767833,98.47650548,93.25102472,5.225480759,170.9687103,0,170.9687103,2.899286644,168.0694237,0.800401804,3.012202864,0.22455258,-0.22455258,0.491752937,0.491752937,0.138709086,2.93803399,94.49727255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63643194,2.100523304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.128595624,90.83437275,91.76502756,92.93489606,606.8767833,0,0.70790523,44.93526634,-0.70790523,135.0647337,0.979369077,0,686.1213824,92.93489606,746.9454132,2,12,9% +2018-02-28 21:00:00,46.44882184,193.2295657,684.522613,854.7651716,95.58750758,767.3931643,669.5277522,97.86541215,92.70519155,5.1602206,168.8527487,0,168.8527487,2.882316034,165.9704326,0.810684875,3.372492134,0.576434112,-0.576434112,0.431577651,0.431577651,0.139641125,2.636629097,84.80305513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.11175633,2.088228155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.910228806,81.51592223,91.02198514,83.60415038,669.5277522,0,0.783288527,38.43733616,-0.783288527,141.5626638,0.986166562,0,751.2878663,83.60415038,806.0051107,2,13,7% +2018-02-28 22:00:00,51.02000629,212.0950883,614.6408117,832.5508015,90.92556913,759.6040224,666.7867726,92.81724981,88.18382774,4.633422064,151.7685223,0,151.7685223,2.741741389,149.0267809,0.890467094,3.701757617,0.975068615,-0.975068615,0.363407136,0.363407136,0.147932853,2.120161892,68.19169447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.76564946,1.986382303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.536050074,65.54845052,86.30169954,67.53483282,666.7867726,0,0.800896199,36.78423149,-0.800896199,143.2157685,0.987569937,0,744.8002707,67.53483282,789.0004681,2,14,6% +2018-02-28 23:00:00,58.62236239,227.7601481,488.9310226,781.8347321,81.84808697,676.9117187,593.845885,83.06583373,79.38006516,3.685768573,121.0150089,0,121.0150089,2.468021809,118.5469871,1.023153239,3.975164489,1.517720308,-1.517720308,0.270608231,0.270608231,0.167402114,1.447438012,46.554582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.303138,1.788073399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048663912,44.75003501,77.35180191,46.53810841,593.845885,0,0.759554239,40.57508367,-0.759554239,139.4249163,0.984171916,0,661.7982446,46.53810841,692.2565058,2,15,5% +2018-02-28 00:00:00,68.20066474,240.4884591,318.0246818,675.8190129,67.05451786,514.929002,447.4990208,67.42998112,65.03257674,2.397404386,79.13070719,0,79.13070719,2.021941118,77.10876607,1.190326152,4.197315424,2.465889721,-2.465889721,0.108461712,0.108461712,0.210846899,0.710686064,22.85810679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.5117864,1.464889457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.514889634,21.9720817,63.02667603,23.43697116,447.4990208,0,0.662158081,48.53533125,-0.662158081,131.4646687,0.974489331,0,499.1096973,23.43697116,514.4487262,2,16,3% +2018-02-28 01:00:00,78.95185303,251.1664396,122.5674726,425.9168396,40.94740501,260.2771266,219.6404716,40.63665505,39.71268967,0.923965381,30.9526181,0,30.9526181,1.234715341,29.71790276,1.377969786,4.383681341,5.120511381,-5.120511381,0,0,0.33408052,0.308678835,9.928172418,0.256784809,1,0.192865523,0,0.939848429,0.978610393,0.724496596,1,38.46797124,0.894547061,0.039165089,0.312029739,0.894944713,0.619441309,0.961238037,0.922476074,0.213045933,9.543336965,38.68101717,10.43788403,163.2401351,0,0.51568863,58.9565049,-0.51568863,121.0434951,0.953042268,0,194.2557657,10.43788403,201.0871521,2,17,4% +2018-02-28 02:00:00,89.94443293,260.6813289,0.012896529,0.93048872,0.011994115,0.325309231,0.313579563,0.011729668,0.011632448,9.72195E-05,0.00348858,0,0.00348858,0.000361667,0.003126913,1.569826498,4.549747488,1013.244234,-1013.244234,0,0,0.930026589,9.04167E-05,0.002908112,0.994244433,1,0.000986929,0,0.961150908,0.999912871,0.724496596,1,0.011183134,0.000262026,0.115374458,0.312029739,0.72536041,0.449857006,0.961238037,0.922476074,6.54413E-05,0.002795388,0.011248575,0.003057414,0.001804828,0,0.337005227,70.30547899,-0.337005227,109.694521,0.901634349,0,0.01287587,0.003057414,0.014876887,2,18,16% +2018-02-28 03:00:00,102.2875512,269.8219039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785254551,4.709280617,-4.319183101,4.319183101,1,0.731222499,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114401432,83.43089824,-0.114401432,96.56910176,0.612942533,0,0,0,0,2,19,0% +2018-02-28 04:00:00,114.072957,279.3862176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990948687,4.876209381,-1.950355964,1.950355964,1,0.863684203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111206309,96.38485868,0.111206309,83.61514132,0,0.600385223,0,0,0,2,20,0% +2018-02-28 05:00:00,125.5025755,290.3844929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.190433163,5.068165498,-1.067781681,1.067781681,1,0.712755111,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.333628935,109.4891858,0.333628935,70.51081425,0,0.900132903,0,0,0,2,21,0% +2018-02-28 06:00:00,136.0168267,304.3432211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373941464,5.311791264,-0.56259671,0.56259671,1,0.626363393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537695791,122.5269187,0.537695791,57.47308131,0,0.957010617,0,0,0,2,22,0% +2018-02-28 07:00:00,144.5712905,323.5302988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523245023,5.646668943,-0.20169272,0.20169272,1,0.564645176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709486812,135.1931762,0.709486812,44.80682377,0,0.979526527,0,0,0,2,23,0% +2018-03-01 08:00:00,149.3290301,349.5819168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606283243,6.101355453,0.09872122,-0.09872122,1,0.513271367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837281145,146.8541192,0.837281145,33.14588081,0,0.990282902,0,0,0,3,0,0% +2018-03-01 09:00:00,148.4586836,18.54631295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591092832,0.323694225,0.382483362,-0.382483362,1,0.464745182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91235593,155.8329813,0.91235593,24.16701869,0,0.995196827,0,0,0,3,1,0% +2018-03-01 10:00:00,142.355347,42.63621265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484569513,0.744142291,0.685037023,-0.685037023,1,0.413005459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929580863,158.3695732,0.929580863,21.63042676,0,0.996212318,0,0,0,3,2,0% +2018-03-01 11:00:00,133.0681433,60.02403266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32247723,1.047617,1.053639885,-1.053639885,1,0.349970657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887768077,152.5941106,0.887768077,27.4058894,0,0.993678984,0,0,0,3,3,0% +2018-03-01 12:00:00,122.1972131,72.90410101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132743706,1.272416601,1.586104759,-1.586104759,1,0.258913801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789753502,142.1624818,0.789753502,37.83751818,0,0.986689106,0,0,0,3,4,0% +2018-03-01 13:00:00,110.605283,83.34162561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930426359,1.454585771,2.587930534,-2.587930534,1,0.087591503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642204117,129.956372,0.642204117,50.04362798,0,0.972143134,0,0,0,3,5,0% +2018-03-01 14:00:00,98.76972962,92.67482009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723856983,1.617480744,5.98122823,-5.98122823,1,0,#DIV/0!,0,0,0.330071486,1,0.165657572,0,0.943383737,0.9821457,0.724496596,1,0,0,0.048828256,0.312029739,0.870881245,0.595377841,0.961238037,0.922476074,0,0,0,0,0,0,-0.455164135,117.0754955,0.455164135,62.92450451,0,0.940149517,0,0,0,3,6,0% +2018-03-01 15:00:00,86.79303509,101.8246229,11.51850761,70.96397096,7.548579015,7.407792882,0,7.407792882,7.320961506,0.086831376,19.87994384,16.85953081,3.020413036,0.227617509,2.792795527,1.51482423,1.77717493,-15.16431796,15.16431796,0,0,0.655343493,0.056904377,1.830240377,1,0.529058235,0,0.065848937,0.961238037,1,0.55479237,0.830295774,7.037186666,0.155812932,0.115824807,0.11982696,0.724496596,0.448993192,0.98772397,0.948962007,0.041227028,1.774361935,7.078413694,1.930174867,0,7.939857194,-0.23757874,103.7436796,0.23757874,76.25632042,0,0.839543458,7.078413694,8.596030035,12.70434343,3,7,79% +2018-03-01 16:00:00,75.60893845,111.5698659,182.1640943,528.4341046,50.82772667,50.66831307,0,50.66831307,49.29508318,1.373229889,53.2582523,7.557815118,45.70043718,1.532643494,44.16779369,1.31962492,1.947261507,-2.915729165,2.915729165,0.971227257,0.971227257,0.279021653,1.344742888,43.2515538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.38430898,1.110394994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.974261645,41.57503867,48.35857063,42.68543366,0,7.557815118,-0.014302285,90.8194885,0.014302285,89.1805115,0,0,48.35857063,42.68543366,76.29533325,3,8,58% +2018-03-01 17:00:00,65.08668121,122.726081,374.7526108,717.8609065,72.35610835,222.3006626,149.3013144,72.9993482,70.17430472,2.825043476,93.04491285,0,93.04491285,2.181803632,90.86310922,1.135976886,2.141974192,-1.303916278,1.303916278,0.753136506,0.753136506,0.193076996,2.26229529,72.7631931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.45421091,1.580709305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639025236,69.94274889,69.09323614,71.5234582,149.3013144,0,0.20798084,77.99594949,-0.20798084,102.0040505,0.80959324,0,189.966571,71.5234582,236.7772439,3,9,25% +2018-03-01 18:00:00,55.93126689,136.2186393,534.7140837,802.4109879,85.21385539,417.3940229,330.718779,86.67524387,82.64434325,4.030900627,132.2171324,0,132.2171324,2.569512146,129.6476203,0.976184762,2.377463758,-0.596294927,0.596294927,0.632126128,0.632126128,0.159363402,2.784351701,89.55432184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44088626,1.861602803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.017253329,86.08302052,81.45813959,87.94462332,330.718779,0,0.412156344,65.65963489,-0.412156344,114.3403651,0.928686812,0,388.5923081,87.94462332,446.1503052,3,10,15% +2018-03-01 19:00:00,49.02812473,152.875546,645.7326322,843.0428719,92.95912756,587.4603164,492.4364442,95.02387223,90.15606689,4.86780534,159.3684134,0,159.3684134,2.803060679,156.5653527,0.855702203,2.668181623,-0.142815962,0.142815962,0.554576657,0.554576657,0.14395916,3.011708379,96.86689415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.66144074,2.03080792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181972468,93.11214317,88.84341321,95.14295109,492.4364442,0,0.584117914,54.25930087,-0.584117914,125.7406991,0.964400845,0,563.749536,95.14295109,626.0186946,3,11,11% +2018-03-01 20:00:00,45.47699154,172.5992227,698.8227345,859.0711611,96.44579034,710.5495894,611.7439745,98.80561487,93.53759391,5.268020956,172.3458591,0,172.3458591,2.908196426,169.4376627,0.793723236,3.012424723,0.221792473,-0.221792473,0.492224943,0.492224943,0.13801181,2.962228716,95.27545809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.91189315,2.106978411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.146124621,91.5823943,92.05801777,93.68937271,611.7439745,0,0.712099302,44.59402195,-0.712099302,135.405978,0.979785074,0,691.4356329,93.68937271,752.7534536,3,12,9% +2018-03-01 21:00:00,46.084375,193.3918825,689.9525338,856.5205843,95.87131064,772.5772725,674.395682,98.18159053,92.9804369,5.201153637,170.1778536,0,170.1778536,2.890873743,167.2869798,0.804324078,3.375325097,0.57159914,-0.57159914,0.43240448,0.43240448,0.138953487,2.659213878,85.52945932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37633263,2.094428186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.926591403,82.21416957,91.30292403,84.30859775,674.395682,0,0.787366579,38.05990928,-0.787366579,141.9400907,0.986497178,0,756.5923609,84.30859775,811.7706519,3,13,7% +2018-03-01 22:00:00,50.69677719,212.3598215,619.7981428,834.4926584,91.21013209,764.7282557,671.5961454,93.13211028,88.45981007,4.672300204,153.0275575,0,153.0275575,2.750322012,150.2772355,0.884825682,3.706378084,0.967354785,-0.967354785,0.364726279,0.364726279,0.147161028,2.140912491,68.85910504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03093418,1.992598935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551083812,66.18999094,86.58201799,68.18258988,671.5961454,0,0.804795751,36.40946555,-0.804795751,143.5905345,0.987872435,0,750.0333377,68.18258988,794.6574791,3,14,6% +2018-03-01 23:00:00,58.34477439,228.0696546,493.7648202,784.3063661,82.15565078,682.0026818,598.6021192,83.40056257,79.67835479,3.722207782,122.1962933,0,122.1962933,2.477295993,119.7189973,1.018308414,3.980566397,1.504603536,-1.504603536,0.272851331,0.272851331,0.166386197,1.465949969,47.14999017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.58986534,1.794792514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062075762,45.32236399,77.6519411,47.1171565,598.6021192,0,0.763224864,40.25067449,-0.763224864,139.7493255,0.984488507,0,666.968848,47.1171565,697.8060846,3,15,5% +2018-03-01 00:00:00,67.96129827,240.8106802,322.4621454,679.6307859,67.44238595,520.1771816,452.3375766,67.83960503,65.40874917,2.430855861,80.21831727,0,80.21831727,2.033636772,78.18468049,1.186148419,4.202939243,2.438577965,-2.438577965,0.113132297,0.113132297,0.209148227,0.725900001,23.34743928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.87337765,1.473362919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525912079,22.4424467,63.39928973,23.91580962,452.3375766,0,0.665563694,48.27441498,-0.665563694,131.725585,0.97487571,0,504.3722058,23.91580962,520.0246249,3,16,3% +2018-03-01 01:00:00,78.74055594,251.4914468,126.2846175,433.6157236,41.62028801,266.2773356,224.960066,41.31726956,40.36528277,0.95198679,31.87417284,0,31.87417284,1.255005246,30.61916759,1.374281956,4.389353788,5.021310624,-5.021310624,0,0,0.329575279,0.313751312,10.09132069,0.247294589,1,0.196579266,0,0.939353139,0.978115103,0.724496596,1,39.09496628,0.909247029,0.037869566,0.312029739,0.898226959,0.622723555,0.961238037,0.922476074,0.216756366,9.700161291,39.31172265,10.60940832,169.3286591,0,0.518800527,58.74817242,-0.518800527,121.2518276,0.953623845,0,200.7875696,10.60940832,207.7312151,3,17,3% +2018-03-01 02:00:00,89.77988219,261.0106027,0.067528919,1.449170305,0.061961538,0.55235179,0.49174956,0.060602231,0.060093169,0.000509062,0.018241537,0,0.018241537,0.001868369,0.016373168,1.566954546,4.555494399,255.5031448,-255.5031448,0,0,0.917555607,0.000467092,0.015023292,0.977356845,1,0.003913826,0,0.960891126,0.999653089,0.724496596,1,0.057795736,0.001353627,0.114043167,0.312029739,0.727923522,0.452420118,0.961238037,0.922476074,0.000337094,0.01444096,0.05813283,0.015794587,0.011134761,0,0.339331794,70.1638314,-0.339331794,109.8361686,0.902651591,0,0.06818364,0.015794587,0.078520881,3,18,15% +2018-03-01 03:00:00,102.0964574,270.1621598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781919336,4.715219204,-4.380062934,4.380062934,1,0.720811434,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117012454,83.28028604,-0.117012454,96.71971396,0.622695057,0,0,0,0,3,19,0% +2018-03-01 04:00:00,113.875887,279.7464679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987509167,4.882496935,-1.961499249,1.961499249,1,0.865589817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108806868,96.2465413,0.108806868,83.7534587,0,0.590470183,0,0,0,3,20,0% +2018-03-01 05:00:00,125.2855583,290.7727153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186645497,5.074941257,-1.070153657,1.070153657,1,0.713160743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.33138648,109.3529508,0.33138648,70.64704922,0,0.899118769,0,0,0,3,21,0% +2018-03-01 06:00:00,135.761772,304.7552831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36948992,5.318983104,-0.56192556,0.56192556,1,0.62624862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535544837,122.3808685,0.535544837,57.61913153,0,0.956637136,0,0,0,3,22,0% +2018-03-01 07:00:00,144.2587183,323.913321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517789609,5.653353942,-0.199413163,0.199413163,1,0.564255349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707355511,135.0201578,0.707355511,44.97984222,0,0.979314186,0,0,0,3,23,0% +2018-03-02 08:00:00,148.9591814,349.7831678,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599828166,6.104867946,0.102263066,-0.102263066,1,0.512665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835096255,146.6258622,0.835096255,33.37413777,0,0.990126662,0,0,0,3,0,0% +2018-03-02 09:00:00,148.0776698,18.45444845,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584442887,0.322090887,0.387430191,-0.387430191,1,0.463899225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910047869,155.5119676,0.910047869,24.48803243,0,0.995057835,0,0,0,3,1,0% +2018-03-02 10:00:00,142.0075379,42.37022304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478499099,0.739499897,0.692002222,-0.692002222,1,0.41181434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927088525,157.985424,0.927088525,22.01457599,0,0.996067718,0,0,0,3,2,0% +2018-03-02 11:00:00,132.7576295,59.71502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317057742,1.042223821,1.064127219,-1.064127219,1,0.348177218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885043047,152.2568191,0.885043047,27.74318088,0,0.993505573,0,0,0,3,3,0% +2018-03-02 12:00:00,121.9118264,72.60039595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127762768,1.267115948,1.604174671,-1.604174671,1,0.255823664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786763404,141.884067,0.786763404,38.11593299,0,0.986448493,0,0,0,3,4,0% +2018-03-02 13:00:00,110.3324049,83.05262949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.925663738,1.449541837,2.628934396,-2.628934396,1,0.08057943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63893485,129.7124398,0.63893485,50.28756024,0,0.97174476,0,0,0,3,5,0% +2018-03-02 14:00:00,98.49887614,92.39879584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719129698,1.612663212,6.187165732,-6.187165732,1,0,#DIV/0!,0,0,0.345512887,1,0.160239193,0,0.944068032,0.982829995,0.724496596,1,0,0,0.050790192,0.312029739,0.866085828,0.590582423,0.961238037,0.922476074,0,0,0,0,0,0,-0.451620845,116.8477233,0.451620845,63.15227667,0,0.939287661,0,0,0,3,6,0% +2018-03-02 15:00:00,86.52717714,101.5583434,13.74840313,82.83753773,8.730512096,8.570896214,0,8.570896214,8.467254944,0.10364127,22.97911343,19.38239676,3.596716665,0.263257152,3.333459513,1.510184134,1.772527476,-14.04113376,14.04113376,0,0,0.635020083,0.065814288,2.116813736,1,0.482221822,0,0.071099273,0.961238037,1,0.542737927,0.818241331,8.13904752,0.180433182,0.115824807,0.106220891,0.724496596,0.448993192,0.98928757,0.950525607,0.047682228,2.051652857,8.186729747,2.232086039,0,10.03578207,-0.233980841,103.5315545,0.233980841,76.46844552,0,0.83630729,8.186729747,10.62508375,15.14063456,3,7,85% +2018-03-02 16:00:00,75.31691723,111.3128055,187.5170577,536.3697626,51.56216059,51.420954,0,51.420954,50.00737121,1.413582788,52.55652851,5.536057492,47.02047102,1.554789386,45.46568163,1.314528188,1.942774956,-2.866534177,2.866534177,0.979640095,0.979640095,0.274973174,1.392716218,44.79454102,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.06898733,1.126439617,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.009018159,43.05821667,49.07800549,44.18465629,0,5.536057492,-0.010321345,90.59138002,0.010321345,89.40861998,0,0,49.07800549,44.18465629,77.99597933,3,8,59% +2018-03-02 17:00:00,64.77051716,122.484897,380.5173786,721.8934488,72.81402504,226.6201746,153.1332603,73.48691426,70.61841353,2.868500731,94.45645543,0,94.45645543,2.19561151,92.26084392,1.130458783,2.137764736,-1.292401629,1.292401629,0.751167385,0.751167385,0.191355321,2.291309131,73.69637797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.88110519,1.590713065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660045665,70.83976169,69.54115085,72.43047475,153.1332603,0,0.212127234,77.75295723,-0.212127234,102.2470428,0.814292405,0,194.2364018,72.43047475,241.6406989,3,9,24% +2018-03-02 18:00:00,55.58562961,136.0148007,540.5575259,805.0298079,85.57566324,422.278798,335.2086058,87.07019221,82.99524125,4.074950963,133.6448525,0,133.6448525,2.580421987,131.0644305,0.970152253,2.373906104,-0.593359911,0.593359911,0.63162421,0.63162421,0.158310002,2.811478931,90.42682683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77818277,1.869506946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036906915,86.9217055,81.81508968,88.79121244,335.2086058,0,0.416392788,65.39294238,-0.416392788,114.6070576,0.929921071,0,393.5326354,88.79121244,451.6447081,3,10,15% +2018-03-02 19:00:00,48.65457607,152.7536096,651.5187198,845.0569325,93.27659415,592.5818014,497.2064174,95.37538399,90.46396068,4.911423312,160.7808901,0,160.7808901,2.812633467,157.9682566,0.849182549,2.666053432,-0.143348773,0.143348773,0.554667774,0.554667774,0.143167942,3.037347315,97.69153045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95739997,2.037743373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.20054779,93.90481495,89.15794776,95.94255832,497.2064174,0,0.58837032,53.95855378,-0.58837032,126.0414462,0.965019507,0,568.9718394,95.94255832,631.764325,3,11,11% +2018-03-02 20:00:00,45.09238166,172.6148521,704.458743,860.8342419,96.73925282,715.7430117,616.6102968,99.13271499,93.82220742,5.31050757,173.7212236,0,173.7212236,2.917045402,170.8041782,0.787010528,3.012697507,0.219101616,-0.219101616,0.492685107,0.492685107,0.137324228,2.986373132,96.05202553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.18547447,2.113389464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163617168,92.32886046,92.34909164,94.44224992,616.6102968,0,0.716293877,44.25066231,-0.716293877,135.7493377,0.980196248,0,696.7481911,94.44224992,758.5587549,3,12,9% +2018-03-02 21:00:00,45.7188451,193.5595803,695.36662,858.2516773,96.15259281,777.7447054,679.2495008,98.49520468,93.25323738,5.241967306,171.4990431,0,171.4990431,2.899355439,168.5996877,0.797944377,3.378251976,0.566852,-0.566852,0.433216288,0.433216288,0.138276112,2.681732479,86.25373493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63855883,2.100573146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942906052,82.91037084,91.58146488,85.01094398,679.2495008,0,0.791433933,37.68028257,-0.791433933,142.3197174,0.986823533,0,761.8808568,85.01094398,817.5188194,3,13,7% +2018-03-02 22:00:00,50.37349384,212.6304738,624.934169,836.4048937,91.49154124,769.8237779,676.3800264,93.44375144,88.7327337,4.711017739,154.281332,0,154.281332,2.758807536,151.5225245,0.879183323,3.711101857,0.959768299,-0.959768299,0.366023644,0.366023644,0.146401886,2.161598567,69.52444037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.29327875,1.998746669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.566070804,66.82953658,86.85934955,68.82828325,676.3800264,0,0.808675358,36.03328856,-0.808675358,143.9667114,0.988170491,0,755.2381326,68.82828325,800.2848675,3,14,6% +2018-03-02 23:00:00,58.06780304,228.384241,498.5757921,786.7359954,82.45906744,687.0544585,603.3233613,83.73109724,79.97262232,3.75847492,123.3719182,0,123.3719182,2.486445125,120.8854731,1.013474352,3.986056966,1.491716523,-1.491716523,0.27505514,0.27505514,0.165389232,1.484421749,47.74410611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.87272648,1.801421029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075458504,45.89345083,77.94818498,47.69487186,603.3233613,0,0.766868892,39.92645529,-0.766868892,140.0735447,0.984799807,0,672.1009146,47.69487186,703.3162543,3,15,5% +2018-03-02 00:00:00,67.72278978,241.1369379,326.8807999,683.3688794,67.82377526,525.3750102,457.1322065,68.24280374,65.77863819,2.464165544,81.30117149,0,81.30117149,2.045137067,79.25603442,1.18198566,4.208633515,2.411869866,-2.411869866,0.117699651,0.117699651,0.207487792,0.741137711,23.83753644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.22892904,1.481694843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.536951749,22.91354674,63.76588079,24.39524158,457.1322065,0,0.668939163,48.01475837,-0.668939163,131.9852416,0.975254787,0,509.5862536,24.39524158,525.5524513,3,16,3% +2018-03-02 01:00:00,78.53002793,251.8196761,130.0044756,441.1548339,42.27892137,272.2151184,230.2310338,41.98408455,41.0040559,0.980028651,32.79595572,0,32.79595572,1.274865472,31.52109025,1.370607549,4.395082469,4.925891139,-4.925891139,0,0,0.325211276,0.318716368,10.25101397,0.237934584,1,0.200287102,0,0.938855606,0.977617569,0.724496596,1,39.70811275,0.923635695,0.036581513,0.312029739,0.90150341,0.626000006,0.961238037,0.922476074,0.220408876,9.853664548,39.92852163,10.77730024,175.4511085,0,0.521882605,58.54138217,-0.521882605,121.4586178,0.954193013,0,207.3427434,10.77730024,214.3962709,3,17,3% +2018-03-02 02:00:00,89.61421392,261.3425237,0.153153769,2.181909373,0.138462567,0.880912359,0.745470412,0.135441947,0.134287409,0.001154538,0.041309062,0,0.041309062,0.004175157,0.037133905,1.564063089,4.561287515,145.6140765,-145.6140765,0,0,0.904075474,0.001043789,0.033571852,0.960585417,1,0.00686736,0,0.960626879,0.999388843,0.724496596,1,0.129205258,0.003024887,0.112706218,0.312029739,0.73051191,0.455008506,0.961238037,0.922476074,0.000751166,0.032270541,0.129956424,0.035295429,0.029382406,0,0.341659659,70.02197825,-0.341659659,109.9780217,0.903655535,0,0.156507997,0.035295429,0.179608149,3,18,15% +2018-03-02 03:00:00,101.9055881,270.5046319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778588039,4.721196469,-4.442546269,4.442546269,1,0.710126155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119601728,83.13088226,-0.119601728,96.86911774,0.63194584,0,0,0,0,3,19,0% +2018-03-02 04:00:00,113.6785655,280.1085154,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984065257,4.888815857,-1.972704952,1.972704952,1,0.867506105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.106420474,96.1090123,0.106420474,83.8909877,0,0.580165595,0,0,0,3,20,0% +2018-03-02 05:00:00,125.0677211,291.1621272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18284352,5.081737777,-1.072481236,1.072481236,1,0.713558783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.329146301,109.2169676,0.329146301,70.78303236,0,0.898091867,0,0,0,3,21,0% +2018-03-02 06:00:00,135.5053195,305.16744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365013978,5.326176598,-0.561192908,0.561192908,1,0.626123329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533384064,122.2343888,0.533384064,57.76561116,0,0.956258917,0,0,0,3,22,0% +2018-03-02 07:00:00,143.9444172,324.2950618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512304021,5.660016577,-0.1970645,0.1970645,1,0.563853704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705201808,134.8458501,0.705201808,45.1541499,0,0.97909831,0,0,0,3,23,0% +2018-03-03 08:00:00,148.5876371,349.9845688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593343496,6.108383057,0.105884755,-0.105884755,1,0.51204633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832876757,146.3953947,0.832876757,33.60460534,0,0.989967109,0,0,0,3,0,0% +2018-03-03 09:00:00,147.6944311,18.36751221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57775411,0.320573563,0.392476789,-0.392476789,1,0.463036206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907694222,155.1886299,0.907694222,24.81137011,0,0.99491537,0,0,0,3,1,0% +2018-03-03 10:00:00,141.6566012,42.10973021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472374097,0.734953439,0.699106463,-0.699106463,1,0.410599443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924541602,157.5993337,0.924541602,22.4006663,0,0.995919145,0,0,0,3,2,0% +2018-03-03 11:00:00,132.4436434,59.40959851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.311577651,1.036893101,1.074839927,-1.074839927,1,0.346345237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882257037,151.9158386,0.882257037,28.08416139,0,0.993327173,0,0,0,3,3,0% +2018-03-03 12:00:00,121.6230541,72.2986694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12272274,1.261849826,1.622705458,-1.622705458,1,0.252654713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783708976,141.6014314,0.783708976,38.39856855,0,0.986200807,0,0,0,3,4,0% +2018-03-03 13:00:00,110.0563906,82.76460199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920846379,1.444514809,2.671392862,-2.671392862,1,0.073318605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635601177,129.4645869,0.635601177,50.53541307,0,0.971334318,0,0,0,3,5,0% +2018-03-03 14:00:00,98.22517179,92.12308909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714352656,1.607851222,6.408665273,-6.408665273,1,0,#DIV/0!,0,0,0.36134582,1,0.154790502,0,0.944749493,0.983511456,0.724496596,1,0,0,0.052776206,0.312029739,0.861262625,0.585759221,0.961238037,0.922476074,0,0,0,0,0,0,-0.448016355,116.6164864,0.448016355,63.38351357,0,0.938396932,0,0,0,3,6,0% +2018-03-03 15:00:00,86.25775809,101.2919103,16.19503721,95.43748329,9.966022184,9.787594876,0,9.787594876,9.665509844,0.122085031,26.20759993,21.98041332,4.227186612,0.30051234,3.926674272,1.505481884,1.76787734,-13.0647473,13.0647473,0,0,0.615375072,0.075128085,2.416377461,1,0.433221301,0,0.076392901,0.961238037,1,0.530806584,0.806309988,9.290855708,0.206438768,0.115824807,0.092752081,0.724496596,0.448993192,0.990793185,0.952031222,0.054430042,2.341043826,9.34528575,2.547482594,0,12.45803006,-0.230312164,103.3154508,0.230312164,76.68454915,0,0.832903347,9.34528575,12.92381753,17.80366584,3,7,91% +2018-03-03 16:00:00,75.02250122,111.0552112,192.9251925,544.1788137,52.2877906,52.16547239,0,52.16547239,50.71112079,1.454351593,51.77857571,3.424959359,48.35361635,1.576669808,46.77694654,1.309389659,1.938279087,-2.818681175,2.818681175,0.987823441,0.987823441,0.271026246,1.441442198,46.36173602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.7454582,1.142291909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.044319966,44.56466411,49.78977816,45.70695602,0,3.424959359,-0.006293812,90.36061127,0.006293812,89.63938873,0,0,49.78977816,45.70695602,79.70406674,3,8,60% +2018-03-03 17:00:00,64.45212917,122.2429072,386.3123126,725.8720636,73.26905378,230.9844669,157.01256,73.97190687,71.05972148,2.912185391,95.87522506,0,95.87522506,2.209332306,93.66589276,1.124901864,2.133541219,-1.280989958,1.280989958,0.749215874,0.749215874,0.189662745,2.320371892,74.63113626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.30530717,1.600653735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101537,71.73828691,69.98640871,73.33894064,157.01256,0,0.216308862,77.50767331,-0.216308862,102.4923267,0.818849045,0,198.5559935,73.33894064,246.5548634,3,9,24% +2018-03-03 18:00:00,55.23781637,135.8102348,546.415603,807.616539,85.93569508,427.1892098,339.7256814,87.46352843,83.3444168,4.119111622,135.0760674,0,135.0760674,2.591278276,132.4847891,0.964081767,2.370335754,-0.590398631,0.590398631,0.631117802,0.631117802,0.157271671,2.838613779,91.29957681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.11382359,1.87737229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05656602,87.76062597,82.17038961,89.63799826,339.7256814,0,0.420652209,65.12422897,-0.420652209,114.875771,0.931136961,0,398.5015281,89.63799826,457.1678052,3,10,15% +2018-03-03 19:00:00,48.27887185,152.6320122,657.3062675,847.0461667,93.59226916,597.7127359,501.9875667,95.72516922,90.77011693,4.955052292,162.1936668,0,162.1936668,2.822152234,159.3715146,0.842625273,2.663931158,-0.143828299,0.143828299,0.554749777,0.554749777,0.142387611,3.062955133,98.51516592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.251689,2.044639687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.219100567,94.69652469,89.47078957,96.74116438,501.9875667,0,0.592633066,53.65591797,-0.592633066,126.344082,0.965630762,0,574.2054262,96.74116438,637.5205835,3,11,11% +2018-03-03 20:00:00,44.70592725,172.6333433,710.0851991,862.5743486,97.03057548,720.9309327,621.4732649,99.45766779,94.10474562,5.352922172,175.0942075,0,175.0942075,2.925829855,172.1683776,0.780265626,3.01302024,0.216477498,-0.216477498,0.493133857,0.493133857,0.136646385,3.010458181,96.82668348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.45706094,2.11975377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181066704,93.07349114,92.63812764,95.19324491,621.4732649,0,0.720486606,43.90532985,-0.720486606,136.0946702,0.980602457,0,702.0563383,95.19324491,764.3584133,3,12,9% +2018-03-03 21:00:00,45.35233499,193.7326274,700.7628374,859.9583712,96.4312606,782.8931721,684.0870235,98.80614857,93.5235023,5.282646272,172.8158214,0,172.8158214,2.9077583,169.9080631,0.791547569,3.381272217,0.562190197,-0.562190197,0.434013504,0.434013504,0.137608982,2.7041778,86.97565361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.89834775,2.10666099,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.959167611,83.60430653,91.85751536,85.71096752,684.0870235,0,0.795488533,37.29857677,-0.795488533,142.7014232,0.987145543,0,767.1509715,85.71096752,823.2470855,3,13,7% +2018-03-03 22:00:00,50.05024436,212.9069811,630.0473023,838.2876341,91.76973877,774.8887469,681.1366416,93.75210524,89.00254255,4.749562698,155.5294591,0,155.5294591,2.767196218,152.7622629,0.873541555,3.71592782,0.952305824,-0.952305824,0.367299802,0.367299802,0.145655316,2.182214838,70.18753052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55262927,2.00482424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581007222,67.46692405,87.13363649,69.47174829,681.1366416,0,0.812533329,35.6558119,-0.812533329,144.3441881,0.988464063,0,760.4127285,69.47174829,805.8805983,3,14,6% +2018-03-03 23:00:00,57.79151055,228.7038038,503.3627888,789.1241236,82.75832908,692.0657611,608.0083396,84.05742143,80.26286011,3.794561323,124.5416048,0,124.5416048,2.495468967,122.0461359,1.008652139,3.991634388,1.479052799,-1.479052799,0.277220764,0.277220764,0.1644109,1.502849479,48.33680526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15171409,1.807958772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088809332,46.46317579,78.24052342,48.27113456,608.0083396,0,0.77048505,39.60253411,-0.77048505,140.3974659,0.985105814,0,677.1930738,48.27113456,708.785566,3,15,5% +2018-03-03 00:00:00,67.48517421,241.4671103,331.2798312,687.0347568,68.19877723,530.5218924,461.8822326,68.63965977,66.14233247,2.497327301,82.37907526,0,82.37907526,2.05644476,80.3226305,1.177838486,4.214396111,2.385744011,-2.385744011,0.122167435,0.122167435,0.205864562,0.756395616,24.32828311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57852582,1.489887228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.548006049,23.38527109,64.12653187,24.87515832,461.8822326,0,0.672283648,47.75643653,-0.672283648,132.2435635,0.975626631,0,514.7511383,24.87515832,531.0314319,3,16,3% +2018-03-03 01:00:00,78.32028365,252.1510002,133.725764,448.5370891,42.92363681,278.0899656,235.4525535,42.63741208,41.62933078,1.008081295,33.71766572,0,33.71766572,1.294306021,32.4233597,1.366946821,4.400865165,4.834032326,-4.834032326,0,0,0.320982551,0.323576505,10.4073327,0.228701275,1,0.203989291,0,0.938355814,0.977117777,0.724496596,1,40.30771887,0.937720306,0.035300752,0.312029739,0.904774292,0.629270888,0.961238037,0.922476074,0.224005177,10.00392405,40.53172405,10.94164436,181.6042543,0,0.524934413,58.33617193,-0.524934413,121.6638281,0.954750005,0,213.9183869,10.94164436,221.0794743,3,17,3% +2018-03-03 02:00:00,89.4472017,261.6769622,0.278371665,3.182470962,0.247667183,1.33704326,1.094745673,0.242297587,0.240199103,0.002098483,0.074962512,0,0.074962512,0.007468079,0.067494433,1.561148176,4.567124567,101.4986117,-101.4986117,0,0,0.889699685,0.00186702,0.060049776,0.943905725,1,0.009852033,0,0.960357706,0.999119669,0.724496596,1,0.231199331,0.005410598,0.111361697,0.312029739,0.733129488,0.457626084,0.961238037,0.922476074,0.001339914,0.057722129,0.232539245,0.063132727,0.061408965,0,0.343992353,69.87970264,-0.343992353,110.1202974,0.904647931,0,0.288092738,0.063132727,0.329411845,3,18,14% +2018-03-03 03:00:00,101.7149281,270.849184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775260393,4.727210037,-4.506715341,4.506715341,1,0.699152597,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122169569,82.98266884,-0.122169569,97.01733116,0.640732779,0,0,0,0,3,19,0% +2018-03-03 04:00:00,113.4809727,280.4722106,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980616612,4.895163536,-1.983978797,1.983978797,1,0.869434046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104046573,95.97223834,0.104046573,84.02776166,0,0.56944597,0,0,0,3,20,0% +2018-03-03 05:00:00,124.8490482,291.5525561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17902696,5.088552047,-1.074766671,1.074766671,1,0.713949615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.326907709,109.0811931,0.326907709,70.91880693,0,0.897051634,0,0,0,3,21,0% +2018-03-03 06:00:00,135.2474709,305.5794922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360513672,5.333368265,-0.560400327,0.560400327,1,0.62598779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531212758,122.0874327,0.531212758,57.91256732,0,0.955875755,0,0,0,3,22,0% +2018-03-03 07:00:00,143.6284237,324.6753175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506788893,5.66665329,-0.19464802,0.19464802,1,0.563440462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703025078,134.6702132,0.703025078,45.32978684,0,0.978878782,0,0,0,3,23,0% +2018-03-04 08:00:00,148.2144756,350.1859022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586830598,6.111896987,0.109585194,-0.109585194,1,0.511413518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830622231,146.1627093,0.830622231,33.83729073,0,0.989804163,0,0,0,3,0,0% +2018-03-04 09:00:00,147.3090975,18.28523597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57102877,0.319137572,0.39762232,-0.39762232,1,0.462156268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90529486,154.8630251,0.90529486,25.13697492,0,0.994769376,0,0,0,3,1,0% +2018-03-04 10:00:00,141.3026979,41.85459688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46619732,0.730500523,0.706349469,-0.706349469,1,0.409360816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921940335,157.2114145,0.921940335,22.78858548,0,0.995766555,0,0,0,3,2,0% +2018-03-04 11:00:00,132.1263441,59.10772498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306039733,1.031624414,1.085779429,-1.085779429,1,0.344474472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879410704,151.5713585,0.879410704,28.42864147,0,0.993143744,0,0,0,3,3,0% +2018-03-04 12:00:00,121.3310464,71.99893613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117626245,1.256618493,1.64170558,-1.64170558,1,0.249405501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78059131,141.3147471,0.78059131,38.68525286,0,0.985945995,0,0,0,3,4,0% +2018-03-04 13:00:00,109.7773847,82.47756471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915976808,1.439505063,2.715364063,-2.715364063,1,0.065799087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63220462,129.2129633,0.63220462,50.78703667,0,0.970911682,0,0,0,3,5,0% +2018-03-04 14:00:00,97.94875911,91.8477164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709528345,1.603045062,6.647447707,-6.647447707,1,0,#DIV/0!,0,0,0.377577924,1,0.149314054,0,0.945427672,0.984189635,0.724496596,1,0,0,0.054785813,0.312029739,0.856413961,0.580910557,0.961238037,0.922476074,0,0,0,0,0,0,-0.444352577,116.3819243,0.444352577,63.61807572,0,0.937476741,0,0,0,3,6,0% +2018-03-04 15:00:00,85.98501769,101.0253289,18.85319495,108.6633965,11.2448746,11.04792349,0,11.04792349,10.90580014,0.142123347,29.53082278,24.62057293,4.910249849,0.339074458,4.571175391,1.500721666,1.763224617,-12.20892701,12.20892701,0,0,0.596443978,0.084768615,2.726450036,1,0.38195424,0,0.081724847,0.961238037,1,0.519015061,0.794518465,10.48306992,0.233720217,0.115824807,0.079436176,0.724496596,0.448993192,0.992240155,0.953478191,0.061414573,2.63997655,10.54448449,2.873696767,0,15.2166407,-0.226576508,103.0955998,0.226576508,76.90440016,0,0.829323989,10.54448449,15.49322193,20.68448838,3,7,96% +2018-03-04 16:00:00,74.72583499,110.7970714,198.3850078,551.858661,53.0044113,52.90164272,0,52.90164272,51.40613273,1.495509987,50.92534253,1.226322012,49.69902052,1.598278566,48.10074196,1.304211857,1.933773697,-2.772140447,2.772140447,0.995782374,0.995782374,0.267179521,1.49088772,47.95207397,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.41353011,1.15794738,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.080143078,46.09335745,50.49367319,47.25130483,0,1.226322012,-0.002222167,90.12732089,0.002222167,89.87267911,0,0,50.49367319,47.25130483,81.41870717,3,8,61% +2018-03-04 17:00:00,64.13166088,122.0000754,392.1342403,729.7956717,73.72100389,235.3909403,160.9368231,74.45411717,71.49804363,2.956073541,97.3004468,0,97.3004468,2.222960269,95.07748653,1.119308637,2.129303004,-1.269687749,1.269687749,0.747283083,0.747283083,0.187999405,2.349468665,75.56698851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72663909,1.610527148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.70218205,72.63786369,70.42882114,74.24839084,160.9368231,0,0.220523126,77.26023943,-0.220523126,102.7397606,0.823266411,0,202.9227018,74.24839084,251.5167887,3,9,24% +2018-03-04 18:00:00,54.88796606,135.6048738,552.2853019,810.1705367,86.29378089,432.1224448,344.2673799,87.8550649,83.69170501,4.163359892,136.5100415,0,136.5100415,2.602075884,133.9079656,0.957975728,2.36675153,-0.587415627,0.587415627,0.630607678,0.630607678,0.156248556,2.865743428,92.17215957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.44765022,1.88519512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076221358,88.59938571,82.52387158,90.48458083,344.2673799,0,0.424931992,64.8536412,-0.424931992,115.1463588,0.932334112,0,403.4960937,90.48458083,462.7164421,3,10,15% +2018-03-04 19:00:00,47.90113855,152.5106698,663.0925162,849.0101847,93.90600659,602.8503274,506.7772619,96.07306549,91.07439401,4.998671479,163.6060701,0,163.6060701,2.831612575,160.7744576,0.836032583,2.661813332,-0.144257626,0.144257626,0.554823197,0.554823197,0.141618257,3.088520947,99.33745037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.54417171,2.051493671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237622912,95.48693578,89.78179462,97.53842945,506.7772619,0,0.596903631,53.35154307,-0.596903631,126.6484569,0.966234385,0,579.4474103,97.53842945,643.2843616,3,11,11% +2018-03-04 20:00:00,44.31774026,172.6546402,715.6996874,864.2912671,97.31963825,726.1107575,626.3304189,99.78033864,94.38509208,5.395246557,176.4642215,0,176.4642215,2.934546164,173.5296753,0.773490485,3.013391941,0.21391766,-0.21391766,0.493571615,0.493571615,0.135978316,3.034474926,97.59914457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.72654062,2.126068707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198466754,93.81601012,92.92500738,95.94207883,626.3304189,0,0.724675168,43.55816768,-0.724675168,136.4418323,0.981003569,0,707.3573839,95.94207883,770.1495556,3,12,9% +2018-03-04 21:00:00,44.98494791,193.910992,706.1391803,861.6406085,96.70722314,788.0204147,688.9060957,99.11431896,93.79114355,5.323175415,174.1276992,0,174.1276992,2.916079589,171.2116197,0.785135455,3.384385267,0.557611279,-0.557611279,0.434796545,0.434796545,0.136952071,2.726542843,87.69499026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.1556147,2.112689736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975371008,84.29576028,92.13098571,86.40845002,688.9060957,0,0.799528352,36.91491314,-0.799528352,143.0850869,0.987463131,0,772.4003558,86.40845002,828.9529581,3,13,7% +2018-03-04 22:00:00,49.72711696,213.189278,635.1359797,840.1410207,92.04466878,779.9213537,685.864248,94.05710571,89.26918241,4.787923298,156.771558,0,156.771558,2.775486372,153.9960716,0.867901918,3.720854831,0.944964102,-0.944964102,0.368555311,0.368555311,0.144921201,2.202756092,70.84820783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.80893365,2.010830429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59588929,68.10199221,87.40482294,70.11282264,685.864248,0,0.816368004,35.27714756,-0.816368004,144.7228524,0.988753112,0,765.5552323,70.11282264,811.4426725,3,14,6% +2018-03-04 23:00:00,57.51595896,229.0282376,508.1246795,791.4712565,83.05342846,697.0353289,612.6558093,84.37951962,80.54906116,3.830458467,125.7050787,0,125.7050787,2.504367303,123.2007114,1.003842856,3.997296826,1.466606094,-1.466606094,0.279349276,0.279349276,0.163450885,1.521229328,48.92796439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.42682142,1.814405586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.10212547,47.03142044,78.52894689,48.84582602,612.6558093,0,0.774072089,39.27901942,-0.774072089,140.7209806,0.985406533,0,682.2439838,48.84582602,714.2126,3,15,5% +2018-03-04 00:00:00,67.2484864,241.8010746,335.6584397,690.6298517,68.56748056,535.6172471,466.586994,69.03025313,66.49991803,2.530335101,83.45183736,0,83.45183736,2.067562526,81.38427483,1.173707505,4.220224886,2.36017995,-2.36017995,0.126539147,0.126539147,0.204277541,0.771670178,24.81956551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.92225066,1.497942012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559072417,23.85751042,64.48132307,25.35545244,466.586994,0,0.675596331,47.49952413,-0.675596331,132.5004759,0.975991309,0,519.8661742,25.35545244,536.4608107,3,16,3% +2018-03-04 01:00:00,78.11133783,252.4852914,137.447255,455.7654593,43.55476132,283.90145,240.6238899,43.27756004,42.24142457,1.036135466,34.63901504,0,34.63901504,1.313336754,33.32567829,1.363300028,4.406699648,4.745530386,-4.745530386,0,0,0.316883457,0.328334188,10.56035614,0.219591257,1,0.207686089,0,0.93785375,0.976615713,0.724496596,1,40.89408892,0.951508007,0.034027105,0.312029739,0.908039832,0.632536428,0.961238037,0.922476074,0.227546942,10.15101601,41.12163586,11.10252401,187.7849874,0,0.52795552,58.13257867,-0.52795552,121.8674213,0.955295052,0,220.5117052,11.10252401,227.7780851,3,17,3% +2018-03-04 02:00:00,89.27877098,262.013788,0.452160512,4.505959375,0.3954418,1.947479437,1.560553089,0.386926347,0.383517771,0.003408577,0.12155558,0,0.12155558,0.011924029,0.109631551,1.558208506,4.573003287,77.69778998,-77.69778998,0,0,0.874560668,0.002981007,0.095879443,0.927309474,1,0.012869668,0,0.960083374,0.998845337,0.724496596,1,0.369289645,0.008638919,0.110008925,0.312029739,0.735777829,0.460274425,0.961238037,0.922476074,0.00213366,0.092162967,0.371423305,0.100801886,0.113437425,0,0.346330927,69.73693829,-0.346330927,110.2630617,0.905629411,0,0.474155573,0.100801886,0.540128392,3,18,14% +2018-03-04 03:00:00,101.5244632,271.1956802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771936155,4.733257536,-4.57265765,4.57265765,1,0.687875798,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124716284,82.83562814,-0.124716284,97.16437186,0.649090045,0,0,0,0,3,19,0% +2018-03-04 04:00:00,113.283091,280.8374047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977162924,4.901537375,-1.99532666,1.99532666,1,0.871374645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101684629,95.83618718,0.101684629,84.16381282,0,0.558283598,0,0,0,3,20,0% +2018-03-04 05:00:00,124.6295271,291.9438314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175195594,5.095381088,-1.07701223,1.07701223,1,0.714333628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.324670041,108.9455857,0.324670041,71.05441427,0,0.895997494,0,0,0,3,21,0% +2018-03-04 06:00:00,134.9882321,305.9912443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355989102,5.340554695,-0.55954939,0.55954939,1,0.625842271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529030245,121.9399558,0.529030245,58.06004422,0,0.955487445,0,0,0,3,22,0% +2018-03-04 07:00:00,143.3107779,325.0538927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501244928,5.673260674,-0.19216501,0.19216501,1,0.563015842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700824749,134.4932112,0.700824749,45.50678879,0,0.978655488,0,0,0,3,23,0% +2018-03-05 08:00:00,147.8397772,350.3869624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580290877,6.115406149,0.113363299,-0.113363299,1,0.510767424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828332304,145.9278045,0.828332304,34.07219545,0,0.989637752,0,0,0,3,0,0% +2018-03-05 09:00:00,146.9217985,18.20736216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564269126,0.317778418,0.402865953,-0.402865953,1,0.461259554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90284971,154.5352145,0.90284971,25.46478554,0,0.994619797,0,0,0,3,1,0% +2018-03-05 10:00:00,140.9459884,41.60468647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459971565,0.726138763,0.713730973,-0.713730973,1,0.408098505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919285016,156.821779,0.919285016,23.17822103,0,0.995609904,0,0,0,3,2,0% +2018-03-05 11:00:00,131.8058904,58.80937891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300446761,1.026417293,1.0969472,-1.0969472,1,0.34256467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876504755,151.2235662,0.876504755,28.77643376,0,0.992955244,0,0,0,3,3,0% +2018-03-05 12:00:00,121.0359539,71.70120942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112475909,1.251422182,1.661183816,-1.661183816,1,0.246074526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777411546,141.0241861,0.777411546,38.97581389,0,0.985684001,0,0,0,3,4,0% +2018-03-05 13:00:00,109.495532,82.19153873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911057549,1.434512968,2.760909647,-2.760909647,1,0.058010333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628746734,128.9577192,0.628746734,51.04228076,0,0.970476724,0,0,0,3,5,0% +2018-03-05 14:00:00,97.66978056,91.57269464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70465925,1.598245026,6.905500451,-6.905500451,1,0,#DIV/0!,0,0,0.394217113,1,0.143812383,0,0.946102137,0.9848641,0.724496596,1,0,0,0.056818525,0.312029739,0.85154215,0.576038746,0.961238037,0.922476074,0,0,0,0,0,0,-0.440631443,116.1441766,0.440631443,63.85582336,0,0.936526482,0,0,0,3,6,0% +2018-03-05 15:00:00,85.7091853,100.7586059,21.71622771,122.4141525,12.55733996,12.34239592,0,12.34239592,12.17868983,0.163706097,32.91512204,27.27112108,5.644000961,0.378650131,5.265350829,1.495907483,1.758569422,-11.45327511,11.45327511,0,0,0.578246836,0.094662533,3.044672456,1,0.328308673,0,0.087090414,0.961238037,1,0.507378673,0.782882077,11.7066199,0.262189437,0.115824807,0.066286894,0.724496596,0.448993192,0.993628222,0.954866259,0.068582683,2.946001162,11.77520258,3.208190599,0,18.3177755,-0.222777518,102.8722226,0.222777518,77.12777743,0,0.825560836,11.77520258,18.33062865,23.77223242,3,7,102% +2018-03-05 16:00:00,74.42706304,110.5383761,203.8930057,559.4071601,53.71184575,54.68716789,1.057900863,53.62926703,52.09223543,1.537031602,51.05583016,0,51.05583016,1.619610325,49.43621983,1.298997303,1.929258613,-2.726881659,2.726881659,0.996477918,0.996477918,0.263431527,1.53304415,49.30796968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.07303812,1.173402167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110685268,47.39669597,51.18372338,48.57009814,1.057900863,0,0.001891111,89.89164727,-0.001891111,90.10835273,0,0,51.18372338,48.57009814,82.97188121,3,8,62% +2018-03-05 17:00:00,63.80925611,121.7563668,397.9799982,733.6633303,74.16969397,239.8369729,164.9036275,74.93334537,71.93320404,3.000141334,98.73134815,0,98.73134815,2.23648993,96.49485822,1.113681612,2.125049486,-1.258500863,1.258500863,0.745370012,0.745370012,0.186365381,2.378584734,76.50346139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14493183,1.620329341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723276543,73.53803704,70.86820837,75.15836638,164.9036275,0,0.224767439,77.01079691,-0.224767439,102.9892031,0.82754785,0,207.3338507,75.15836638,256.5234984,3,9,24% +2018-03-05 18:00:00,54.53621808,135.3986519,558.163628,812.6912236,86.64975584,437.075697,348.8310778,88.2446192,84.036946,4.207673197,137.9460436,0,137.9460436,2.612809842,135.3332338,0.951836567,2.363152279,-0.584415206,0.584415206,0.630094576,0.630094576,0.155240778,2.892855192,93.04416709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77950899,1.892971836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.095863739,89.43759251,82.87537273,91.33056435,348.8310778,0,0.429229537,64.58132543,-0.429229537,115.4186746,0.93351221,0,408.5134432,91.33056435,468.287471,3,10,15% +2018-03-05 19:00:00,47.52150344,152.3894987,668.8747284,850.9486368,94.21766396,607.9918044,511.5728904,96.418914,91.37665377,5.042260237,165.0174321,0,165.0174321,2.841010195,162.1764219,0.829406701,2.659698498,-0.144639726,0.144639726,0.55488854,0.55488854,0.140859955,3.114033968,100.1580368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.83471528,2.058302215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.256107009,96.2757147,90.09082229,98.33401692,511.5728904,0,0.601179517,53.04557889,-0.601179517,126.9544211,0.966830167,0,584.6949253,98.33401692,649.0525727,3,11,11% +2018-03-05 20:00:00,43.92793365,172.6786878,721.2998143,865.9848093,97.60632369,731.2799189,631.1793233,100.1005956,94.66313291,5.437462679,177.8306817,0,177.8306817,2.943190788,174.8874909,0.766687076,3.01381165,0.211419716,-0.211419716,0.493998789,0.493998789,0.135320046,3.058414503,98.36912366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.99380404,2.132331707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.215810896,94.55614331,93.20961493,96.68847502,631.1793233,0,0.728857269,43.20931974,-0.728857269,136.7906803,0.981399463,0,712.648664,96.68847502,775.9293371,3,12,9% +2018-03-05 21:00:00,44.61678834,194.0946433,711.4936605,863.2983486,96.98039141,793.1242031,693.7045886,99.41961454,94.05607479,5.363539749,175.434192,0,175.434192,2.924316621,172.5098754,0.778709858,3.387590587,0.55311287,-0.55311287,0.435565818,0.435565818,0.136305349,2.748820644,88.41152091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.41027669,2.118657437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.991511199,84.98451679,92.40178789,87.10317423,693.7045886,0,0.803551391,36.52941392,-0.803551391,143.4705861,0.987776226,0,777.6266885,87.10317423,834.6339739,3,13,7% +2018-03-05 22:00:00,49.40420093,213.4772982,640.1986485,841.9652028,92.31627625,784.919812,690.5611242,94.35868774,89.53259991,4.826087834,158.0072506,0,158.0072506,2.78367634,155.2235743,0.862265971,3.725881733,0.937739984,-0.937739984,0.369790708,0.369790708,0.144199424,2.223217109,71.5063045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06214057,2.016764032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610713228,68.73457976,87.6728538,70.75134379,690.5611242,0,0.820177748,34.897409,-0.820177748,145.102591,0.989037605,0,770.6637741,70.75134379,816.9691136,3,14,6% +2018-03-05 23:00:00,57.24121113,229.3574359,512.860335,793.7778935,83.34435764,701.9619135,617.2645379,84.69737558,80.83121775,3.866157838,126.8620658,0,126.8620658,2.513139891,124.3489259,0.999047602,4.00304242,1.454370398,-1.454370398,0.281441704,0.281441704,0.162508878,1.539557428,49.51745907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69804106,1.820761296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115404116,47.59806515,78.81344518,49.41882645,617.2645379,0,0.777628784,38.95602113,-0.777628784,141.0439789,0.985701969,0,687.2523153,49.41882645,719.5959489,3,15,5% +2018-03-05 00:00:00,67.0127621,242.1387067,340.0158201,694.1555535,68.92996941,540.6604865,471.2458271,69.41465938,66.85147651,2.563182875,84.51926504,0,84.51926504,2.078492902,82.44077214,1.169593339,4.226117678,2.335158283,-2.335158283,0.130818104,0.130818104,0.202725771,0.786957825,25.3112688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26018204,1.505861032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.570148265,24.33015433,64.83033031,25.83601536,471.2458271,0,0.678876406,47.24409631,-0.678876406,132.7559037,0.976348891,0,524.9306711,25.83601536,541.8398265,3,16,3% +2018-03-05 01:00:00,77.90320634,252.8224218,141.1677535,462.8429134,44.17261308,289.6491881,245.7443602,43.90482797,42.84064582,1.064182155,35.55972349,0,35.55972349,1.331967264,34.22775622,1.359667448,4.412583683,4.660197217,-4.660197217,0,0,0.312908664,0.332991816,10.71016145,0.21060129,1,0.211377735,0,0.937349401,0.976111365,0.724496596,1,41.46751937,0.965005749,0.032760406,0.312029739,0.911300241,0.635796837,0.961238037,0.922476074,0.231035785,10.29501457,41.69855516,11.26002032,193.9902809,0,0.530945496,57.93063954,-0.530945496,122.0693605,0.955828375,0,227.1199701,11.26002032,234.4894282,3,17,3% +2018-03-05 02:00:00,89.108945,262.3528713,0.683471252,6.205628546,0.586966178,2.738165894,2.163746618,0.574419277,0.569266982,0.005152295,0.183414714,0,0.183414714,0.017699196,0.165715518,1.555244483,4.578921406,62.80733315,-62.80733315,0,0,0.85880156,0.004424799,0.142316745,0.910798174,1,0.015920363,0,0.959803805,0.998565768,0.724496596,1,0.548352934,0.012823007,0.108648008,0.312029739,0.738456989,0.462953585,0.961238037,0.922476074,0.003158782,0.136800269,0.551511717,0.149623276,0.193010149,0,0.348674852,69.59371542,-0.348674852,110.4062846,0.906599925,0,0.726494703,0.149623276,0.824420145,3,18,13% +2018-03-05 03:00:00,101.3341822,271.543985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768615124,4.739336601,-4.640465928,4.640465928,1,0.6762799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127242158,82.68974392,-0.127242158,97.31025608,0.657048475,0,0,0,0,3,19,0% +2018-03-05 04:00:00,113.0849059,281.2039496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973703943,4.907934791,-2.006754477,2.006754477,1,0.873328917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099334142,95.70082872,0.099334142,84.29917128,0,0.546648394,0,0,0,3,20,0% +2018-03-05 05:00:00,124.4091492,292.3357841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171349273,5.102221954,-1.079220156,1.079220156,1,0.714711206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322432684,108.8101073,0.322432684,71.18989275,0,0.894928872,0,0,0,3,21,0% +2018-03-05 06:00:00,134.7276136,306.4025056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35144045,5.347732559,-0.558641642,0.558641642,1,0.625687037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526835905,121.7919179,0.526835905,58.20808209,0,0.955093788,0,0,0,3,22,0% +2018-03-05 07:00:00,142.9915245,325.4306012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495672905,5.679835478,-0.189616735,0.189616735,1,0.562580061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698600303,134.3148137,0.698600303,45.68518627,0,0.978428316,0,0,0,3,23,0% +2018-03-06 08:00:00,147.4636249,350.5875571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573725782,6.118907187,0.117217998,-0.117217998,1,0.510108231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826006671,145.6906854,0.826006671,34.30931455,0,0.989467801,0,0,0,3,0,0% +2018-03-06 09:00:00,146.5326634,18.13364519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557477437,0.316491814,0.408206872,-0.408206872,1,0.460346203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900358758,154.2052645,0.900358758,25.7947355,0,0.994466581,0,0,0,3,1,0% +2018-03-06 10:00:00,140.586632,41.35986475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453699613,0.721865818,0.721250729,-0.721250729,1,0.406812551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916575997,156.4305403,0.916575997,23.5694597,0,0.99544915,0,0,0,3,2,0% +2018-03-06 11:00:00,131.4824407,58.51453266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294801499,1.021271255,1.108344773,-1.108344773,1,0.340615571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873539946,150.8726469,0.873539946,29.12735307,0,0.992761633,0,0,0,3,3,0% +2018-03-06 12:00:00,120.7379266,71.40550204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107274351,1.246261115,1.681149282,-1.681149282,1,0.24266023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774170858,140.7299201,0.774170858,39.27007991,0,0.985414774,0,0,0,3,4,0% +2018-03-06 13:00:00,109.2109768,81.90654551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906091125,1.429538898,2.808095059,-2.808095059,1,0.049941152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625229103,128.699005,0.625229103,51.30099502,0,0.970029314,0,0,0,3,5,0% +2018-03-06 14:00:00,97.38837819,91.29804177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699747853,1.59345143,7.185131203,-7.185131203,1,0,#DIV/0!,0,0,0.411271598,1,0.138287988,0,0.946772472,0.985534435,0.724496596,1,0,0,0.058873851,0.312029739,0.846649492,0.571146088,0.961238037,0.922476074,0,0,0,0,0,0,-0.436854903,115.9033831,0.436854903,64.09661691,0,0.935545522,0,0,0,3,6,0% +2018-03-06 15:00:00,85.4304805,100.4917493,24.77639593,136.5909177,13.89438307,13.66219109,0,13.66219109,13.47541616,0.186774938,36.3285962,29.90230525,6.426290958,0.418966914,6.007324043,1.491043166,1.753911897,-10.781698,10.781698,0,0,0.56079113,0.104741729,3.368854039,1,0.272162279,0,0.092485173,0.961238037,1,0.495911405,0.771414809,12.95308257,0.291782458,0.115824807,0.053316155,0.724496596,0.448993192,0.994957491,0.956195528,0.075885026,3.25682304,13.0289676,3.548605499,0,21.76402571,-0.218918693,102.6455306,0.218918693,77.35446939,0,0.821604703,13.0289676,21.43003138,27.05449453,3,7,108% +2018-03-06 16:00:00,74.12632958,110.2791175,209.4456914,566.822594,54.40994373,57.77379232,3.425619051,54.34817327,52.76928317,1.578890092,52.42319332,0,52.42319332,1.640660555,50.78253276,1.293748514,1.924733697,-2.682873996,2.682873996,0.988952164,0.988952164,0.259780678,1.56597821,50.36724226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.72384216,1.188652987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.134545883,48.41490907,51.85838805,49.60356206,3.425619051,0,0.006043547,89.65372815,-0.006043547,90.34627185,0,0,51.85838805,49.60356206,84.32292734,3,8,63% +2018-03-06 17:00:00,63.48505864,121.5117491,403.8464383,737.4742285,74.61495172,244.3199283,168.9105277,75.40940067,72.36503563,3.044365037,100.1671606,0,100.1671606,2.249916094,97.91724454,1.108023299,2.120780101,-1.247434549,1.247434549,0.743477561,0.743477561,0.184760703,2.407705585,77.44008803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56002478,1.630056551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.7443745,74.43835819,71.30439928,76.06841475,168.9105277,0,0.229039228,76.75948633,-0.229039228,103.2405137,0.831696784,0,211.7867419,76.06841475,261.571998,3,9,24% +2018-03-06 18:00:00,54.1827122,135.1915051,564.0476089,815.1780875,87.00346026,442.0461743,353.4141602,88.63201406,84.37998493,4.252029131,139.3833484,0,139.3833484,2.623475336,136.7598731,0.945666726,2.359536884,-0.581401429,0.581401429,0.62957919,0.62957919,0.154248434,2.91993652,93.91519568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10925106,1.90069895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115484069,90.27485833,83.22473513,92.17555728,353.4141602,0,0.433542272,64.3074274,-0.433542272,115.6925726,0.934670992,0,413.550699,92.17555728,473.8777577,3,10,15% +2018-03-06 19:00:00,47.14009461,152.2684172,674.6501906,852.8612114,94.52710236,613.1344216,516.3718621,96.76255957,91.67676146,5.08579811,166.4270905,0,166.4270905,2.850340904,163.5767495,0.822749861,2.657585226,-0.144977445,0.144977445,0.554946293,0.554946293,0.140112763,3.139483504,100.9765814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12319021,2.065062282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274545111,97.06253087,90.39773532,99.12759315,516.3718621,0,0.605458256,52.73817512,-0.605458256,127.2618249,0.967417924,0,589.9451299,99.12759315,654.8221571,3,11,11% +2018-03-06 20:00:00,43.53662152,172.705433,726.883207,867.6548116,97.89051689,736.4358793,636.01757,100.4183093,94.93875663,5.479552651,179.1930094,0,179.1930094,2.951760262,176.2412491,0.759857391,3.014278442,0.208981374,-0.208981374,0.49441577,0.49441577,0.13467159,3.082268102,99.13633739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.25874404,2.138540262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.233092747,95.29361833,93.49183679,97.43215859,636.01757,0,0.733030649,42.85893054,-0.733030649,137.1410695,0.981790028,0,717.9275447,97.43215859,781.6949439,3,12,9% +2018-03-06 21:00:00,44.24796228,194.283552,716.8243044,864.9315664,97.25067798,798.2023352,698.4803996,99.72193562,94.31821123,5.403724394,176.7348185,0,176.7348185,2.932466758,173.8023517,0.772272629,3.390887665,0.548692686,-0.548692686,0.436321714,0.436321714,0.135668779,2.771004249,89.1250219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.6622522,2.124562184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.007583145,85.67036109,92.66983534,87.79492327,698.4803996,0,0.80755568,36.14220235,-0.80755568,143.8577976,0.988084765,0,782.8276766,87.79492327,840.287698,3,13,7% +2018-03-06 22:00:00,49.08158705,213.7709752,645.2337614,843.7603358,92.58450663,789.8823559,695.2255691,94.6567868,89.79274215,4.864044641,159.2361602,0,159.2361602,2.791764475,156.4443957,0.856635296,3.731007362,0.930630459,-0.930630459,0.371006508,0.371006508,0.143489867,2.243592639,72.16165157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.31219919,2.022623859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62547523,69.3645243,87.93767442,71.38714815,695.2255691,0,0.823960952,34.51671129,-0.823960952,145.4832887,0.989317513,0,775.7365052,71.38714815,822.4579659,3,14,6% +2018-03-06 23:00:00,56.96733119,229.691291,517.5686205,796.0445245,83.63110746,706.8442739,621.833302,85.01097188,81.109321,3.901650883,128.0122907,0,128.0122907,2.521786456,125.4905042,0.994267495,4.008869291,1.442339985,-1.442339985,0.283499025,0.283499025,0.161584579,1.557829836,50.10516254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.96536449,1.827025703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128642413,48.16298808,79.0940069,49.99001378,621.833302,0,0.781153921,38.63365089,-0.781153921,141.3663491,0.985992128,0,692.2167477,49.99001378,724.934212,3,15,5% +2018-03-06 00:00:00,66.77803842,242.4798822,344.3511533,697.6132025,69.28632288,545.6510091,475.8580601,69.79294905,67.1970846,2.595864448,85.58116216,0,85.58116216,2.089238274,83.49192389,1.165496638,4.232072314,2.310660648,-2.310660648,0.135007447,0.135007447,0.201208337,0.802254918,25.80327591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59239369,1.513646018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.581230957,24.80309028,65.17362464,26.31673629,475.8580601,0,0.682123071,46.9902291,-0.682123071,133.0097709,0.976699445,0,529.9439276,26.31673629,547.1677052,3,16,3% +2018-03-06 01:00:00,77.69590667,253.1622631,144.8860849,469.772393,44.77749965,295.332822,250.8133166,44.51950533,43.42729282,1.092212508,36.47951555,0,36.47951555,1.350206826,35.12930872,1.356049387,4.418515032,4.577859133,-4.577859133,0,0,0.309053141,0.337551706,10.85682321,0.201728308,1,0.215064433,0,0.936842759,0.975604722,0.724496596,1,42.02829723,0.978220249,0.031500503,0.312029739,0.914555702,0.639052297,0.961238037,0.922476074,0.234473249,10.43599143,42.26277048,11.41421167,200.2171705,0,0.533903908,57.73039233,-0.533903908,122.2696077,0.956350189,0,233.7404994,11.41421167,241.2108726,3,17,3% +2018-03-06 02:00:00,88.93780672,262.6940821,0.980842013,8.329807774,0.826426468,3.732851786,2.923951124,0.808900662,0.801506661,0.007394001,0.262736309,0,0.262736309,0.024919807,0.237816502,1.552257557,4.584876658,52.61651569,-52.61651569,0,0,0.842568382,0.006229952,0.200376665,0.894378847,1,0.019003152,0,0.959519018,0.998280981,0.724496596,1,0.772342319,0.018054315,0.107279522,0.312029739,0.74116609,0.465662686,0.961238037,0.922476074,0.004436144,0.192609672,0.776778463,0.210663988,0.30883109,0,0.351022641,69.45012284,-0.351022641,110.5498772,0.907559046,0,1.057060912,0.210663988,1.194936279,3,18,13% +2018-03-06 03:00:00,101.1440764,271.8939633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765297153,4.745444876,-4.710238322,4.710238322,1,0.664348117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129747442,82.54500182,-0.129747442,97.45499818,0.664635947,0,0,0,0,3,19,0% +2018-03-06 04:00:00,112.8864068,281.5716985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97023948,4.914353219,-2.018268192,2.018268192,1,0.875297878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096994656,95.56613544,0.096994656,84.43386456,0,0.53450768,0,0,0,3,20,0% +2018-03-06 05:00:00,124.1879101,292.7282478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167487923,5.109071738,-1.081392646,1.081392646,1,0.715082723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320195075,108.6747226,0.320195075,71.32527737,0,0.893845194,0,0,0,3,21,0% +2018-03-06 06:00:00,134.4656306,306.8130904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346867985,5.354898615,-0.557678593,0.557678593,1,0.625522346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52462918,121.6432832,0.52462918,58.35671683,0,0.954694588,0,0,0,3,22,0% +2018-03-06 07:00:00,142.6707128,325.8052664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490073685,5.686374619,-0.187004431,0.187004431,1,0.562133331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696351292,134.1349958,0.696351292,45.8650042,0,0.978197161,0,0,0,3,23,0% +2018-03-07 08:00:00,147.0861047,350.7875071,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567136811,6.122396973,0.121148245,-0.121148245,1,0.50943612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823645089,145.4513636,0.823645089,34.54863637,0,0.989294241,0,0,0,3,0,0% +2018-03-07 09:00:00,146.1418217,18.06385171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550655963,0.315273688,0.413644279,-0.413644279,1,0.459416352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897822056,153.8732468,0.897822056,26.12675324,0,0.994309677,0,0,0,3,1,0% +2018-03-07 10:00:00,140.2247872,41.12000056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447384229,0.717679398,0.728908512,-0.728908512,1,0.405502993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913813685,156.0378125,0.913813685,23.96218752,0,0.995284251,0,0,0,3,2,0% +2018-03-07 11:00:00,131.1561529,58.22315819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289106703,1.016185811,1.119973747,-1.119973747,1,0.338626899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870517083,150.5187835,0.870517083,29.48121645,0,0.992562873,0,0,0,3,3,0% +2018-03-07 12:00:00,120.4371142,71.11182652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102024184,1.24113551,1.701611461,-1.701611461,1,0.239160992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770870463,140.4321202,0.770870463,39.56787982,0,0.985138259,0,0,0,3,4,0% +2018-03-07 13:00:00,108.9238631,81.62260705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901080044,1.424583237,2.856989845,-2.856989845,1,0.041579651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621653337,128.4369706,0.621653337,51.56302935,0,0.969569321,0,0,0,3,5,0% +2018-03-07 14:00:00,97.10469335,91.02377704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694796618,1.588664607,7.489035195,-7.489035195,1,0,#DIV/0!,0,0,0.428749905,1,0.132743333,0,0.947438275,0.986200238,0.724496596,1,0,0,0.060951302,0.312029739,0.84173827,0.566234865,0.961238037,0.922476074,0,0,0,0,0,0,-0.433024918,115.6596828,0.433024918,64.34031724,0,0.934533204,0,0,0,3,6,0% +2018-03-07 15:00:00,85.14911374,100.2247694,28.02516852,151.0993928,15.24777653,14.99926537,0,14.99926537,14.78799981,0.211265558,39.74168598,32.48688269,7.254803293,0.459776721,6.795026572,1.48613239,1.749252217,-10.1813333,10.1813333,0,0,0.544074392,0.11494418,3.696999953,1,0.213381468,0,0.09790494,0.961238037,1,0.484625997,0.760129401,14.21478791,0.322460762,0.115824807,0.040534211,0.724496596,0.448993192,0.996228376,0.957466413,0.083276667,3.570331482,14.29806457,3.892792243,0,25.55478398,-0.215003397,102.4157266,0.215003397,77.58427342,0,0.817445534,14.29806457,24.78243629,30.51767348,3,7,113% +2018-03-07 16:00:00,73.82377816,110.0192902,215.0395812,574.1036483,55.09857998,60.9328341,5.874620402,55.05821369,53.4371545,1.621059196,53.80026158,0,53.80026158,1.661425478,52.1388361,1.288467995,1.920198856,-2.640086314,2.640086314,0.981635039,0.981635039,0.256225294,1.598916511,51.42665124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.36582548,1.203697103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158409569,49.43325328,52.52423505,50.63695038,5.874620402,0,0.010232683,89.41370024,-0.010232683,90.58629976,0,0,52.52423505,50.63695038,85.66510634,3,8,63% +2018-03-07 17:00:00,63.15921191,121.2661927,409.7304342,741.2276818,75.05661393,248.8371635,172.9550623,75.88210118,72.79338009,3.088721084,101.6071213,0,101.6071213,2.26323384,99.34388746,1.102336201,2.116494334,-1.236493466,1.236493466,0.741606526,0.741606526,0.183185352,2.436816926,78.37640884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.97176578,1.639705212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765465567,75.33838536,71.73723134,76.97809058,172.9550623,0,0.233335946,76.50644724,-0.233335946,103.4935528,0.835716685,0,216.2786626,76.97809058,266.6592834,3,9,23% +2018-03-07 18:00:00,53.82758834,134.9833719,569.9343006,817.6306791,87.35473984,447.0311053,358.0140276,89.01707763,84.72067213,4.296405499,140.8212374,0,140.8212374,2.634067711,138.1871697,0.939468645,2.355904274,-0.578378116,0.578378116,0.629062173,0.629062173,0.153271596,2.946975016,94.78484668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.43673256,1.90837309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.135073367,91.11079995,83.57180593,93.01917304,358.0140276,0,0.437867654,64.03209195,-0.437867654,115.9679081,0.935810245,0,418.605001,93.01917304,479.4841894,3,10,15% +2018-03-07 19:00:00,46.7570407,152.1473451,680.4162184,854.7476346,94.83418658,618.2754659,521.1716151,97.10385082,91.97458596,5.129264864,167.8343904,0,167.8343904,2.859600626,164.9747897,0.816064309,2.655472121,-0.145273495,0.145273495,0.55499692,0.55499692,0.139376729,3.164858975,101.7927438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40947044,2.071770919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292929553,97.84705717,90.7024,99.91882809,521.1716151,0,0.609737417,52.42948106,-0.609737417,127.5705189,0.967997488,0,595.1952141,99.91882809,660.5900887,3,11,11% +2018-03-07 20:00:00,43.14391896,172.734825,732.4475181,869.3011348,98.17210559,741.5761365,640.8427833,100.7333532,95.21185439,5.521498779,180.550632,0,180.550632,2.9602512,177.5903808,0.753003438,3.014791429,0.206600435,-0.206600435,0.494822934,0.494822934,0.134032955,3.106026982,99.90050464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.521256,2.144691917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.250305975,96.02816496,93.77156198,98.17285687,640.8427833,0,0.737193083,42.50714498,-0.737193083,137.492855,0.982175164,0,723.1914277,98.17285687,787.4435991,3,12,9% +2018-03-07 21:00:00,43.87857714,194.4776907,722.1291566,866.5402517,97.51799716,803.2526413,703.2314569,100.0211844,94.57746974,5.443714611,178.029102,0,178.029102,2.940527417,175.0885745,0.765825642,3.394276025,0.544348538,-0.544348538,0.437064607,0.437064607,0.135042321,2.793086727,89.83527031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.91146134,2.130402104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.023581826,86.35307888,92.93504317,88.48348098,703.2314569,0,0.811539286,35.75340243,-0.811539286,144.2465976,0.988388688,0,788.0010603,88.48348098,845.911729,3,13,7% +2018-03-07 22:00:00,48.75936741,214.0702419,650.2397794,845.5265811,92.84930602,794.8072443,699.8559053,94.95133899,90.04955687,4.901782119,160.4579119,0,160.4579119,2.799749154,157.6581627,0.851011502,3.736230551,0.923632643,-0.923632643,0.372203205,0.372203205,0.142792411,2.263877402,72.81407928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.55905926,2.028408731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640171471,69.99166262,88.19923073,72.02007135,699.8559053,0,0.82771603,34.13517101,-0.82771603,145.864829,0.989592809,0,780.7716022,72.02007135,827.9072985,3,14,6% +2018-03-07 23:00:00,56.69438444,230.0296943,522.2483983,798.2716308,83.91366773,711.6811794,626.3608894,85.32029006,81.38336104,3.936929025,129.1554772,0,129.1554772,2.53030669,126.6251706,0.989503676,4.014775543,1.430509394,-1.430509394,0.285522176,0.285522176,0.160677693,1.576042545,50.69094586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22878219,1.833198584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141837459,48.72606529,79.37061965,50.55926387,626.3608894,0,0.78464631,38.31202193,-0.78464631,141.6879781,0.986277021,0,697.135972,50.55926387,730.225999,3,15,5% +2018-03-07 00:00:00,66.54435377,242.8244761,348.6636085,701.0040934,69.63661525,550.5882027,480.4230148,70.16518792,67.53681437,2.628373557,86.63732945,0,86.63732945,2.099800881,84.53752857,1.161418072,4.238086612,2.286669665,-2.286669665,0.139110146,0.139110146,0.199724358,0.817557748,26.29546753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.91895486,1.521298591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.592317806,25.27620358,65.51127266,26.79750217,480.4230148,0,0.685335534,46.73799927,-0.685335534,133.2620007,0.977043036,0,534.9052335,26.79750217,552.4436628,3,16,3% +2018-03-07 01:00:00,77.48945786,253.5046871,148.6010928,476.5568051,45.36971801,300.9520141,255.8301427,45.12187142,44.00165361,1.120217807,37.39811979,0,37.39811979,1.368064394,36.0300554,1.352446175,4.424491459,4.498355528,-4.498355528,0,0,0.305312142,0.342016099,11.0004134,0.192969415,1,0.21874636,0,0.936333818,0.975095781,0.724496596,1,42.57669999,0.991157997,0.030247253,0.312029739,0.917806373,0.642302969,0.961238037,0.922476074,0.237860807,10.57401578,42.8145608,11.56517378,206.4627496,0,0.536830321,57.53187538,-0.536830321,122.4681246,0.956860701,0,240.3706521,11.56517378,247.939827,3,17,3% +2018-03-07 02:00:00,88.76547291,263.0372911,1.352069018,10.91930806,1.11681367,4.951910869,3.858580784,1.093330085,1.083137617,0.010192467,0.36150084,0,0.36150084,0.033676053,0.327824787,1.549249764,4.590866786,45.20779994,-45.20779994,0,0,0.826003447,0.008419013,0.270784404,0.878061204,1,0.02211647,0,0.959229092,0.997991055,0.724496596,1,1.044096657,0.024398186,0.105904294,0.312029739,0.743903722,0.468400318,0.961238037,0.922476074,0.005980102,0.260288269,1.050076759,0.284686455,0.470510697,0,0.35337228,69.3062819,-0.35337228,110.6937181,0.908506162,0,1.477538627,0.284686455,1.663860218,3,18,13% +2018-03-07 03:00:00,100.9541403,272.2454809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761982142,4.751580015,-4.7820788,4.7820788,1,0.652062672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132232355,82.40138931,-0.132232355,97.59861069,0.671877717,0,0,0,0,3,19,0% +2018-03-07 04:00:00,112.6875865,281.9405056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966769411,4.920790118,-2.029873753,2.029873753,1,0.877282546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094665756,95.43208235,0.094665756,84.56791765,0,0.521825906,0,0,0,3,20,0% +2018-03-07 05:00:00,123.96581,293.1210587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163611545,5.115927581,-1.083531842,1.083531842,1,0.715448548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.317956708,108.5394002,0.317956708,71.46059982,0,0.892745887,0,0,0,3,21,0% +2018-03-07 06:00:00,134.2023035,307.2228183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34227206,5.362049717,-0.556661713,0.556661713,1,0.625348449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52240957,121.4940199,0.52240957,58.50598006,0,0.954289655,0,0,0,3,22,0% +2018-03-07 07:00:00,142.3483964,326.177721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484448203,5.692875177,-0.184329309,0.184329309,1,0.561675858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694077331,133.953738,0.694077331,46.04626202,0,0.977961918,0,0,0,3,23,0% +2018-03-08 08:00:00,146.7073046,350.9866458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560525502,6.1258726,0.125153014,-0.125153014,1,0.508751264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821247383,145.2098572,0.821247383,34.79014284,0,0.989117005,0,0,0,3,0,0% +2018-03-08 09:00:00,145.7494026,17.9977601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543806957,0.314120172,0.419177398,-0.419177398,1,0.458470133,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895239718,153.5392375,0.895239718,26.46076255,0,0.994149037,0,0,0,3,1,0% +2018-03-08 10:00:00,139.8606111,40.88496573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441028158,0.713577267,0.736704127,-0.736704127,1,0.404169864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910998546,155.64371,0.910998546,24.35628998,0,0.99511517,0,0,0,3,2,0% +2018-03-08 11:00:00,130.8271838,57.93522698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283365109,1.011160464,1.131835793,-1.131835793,1,0.33659837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867437017,150.1621566,0.867437017,29.83784335,0,0.992358927,0,0,0,3,3,0% +2018-03-08 12:00:00,120.1336656,70.82019508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096728007,1.236045581,1.722580214,-1.722580214,1,0.235575124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767511612,140.1309566,0.767511612,39.86904335,0,0.984854406,0,0,0,3,4,0% +2018-03-08 13:00:00,108.6343338,81.33974573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896026805,1.419646376,2.907667975,-2.907667975,1,0.032913181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618021067,128.1717659,0.618021067,51.82823409,0,0.969096609,0,0,0,3,5,0% +2018-03-08 14:00:00,96.81886657,90.74992071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689808,1.583884912,7.820380011,-7.820380011,1,0,#DIV/0!,0,0,0.446660892,1,0.127180843,0,0.948099164,0.986861127,0.724496596,1,0,0,0.063050388,0.312029739,0.836810746,0.561307342,0.961238037,0.922476074,0,0,0,0,0,0,-0.429143459,115.4132142,0.429143459,64.58678585,0,0.933488845,0,0,0,3,6,0% +2018-03-08 15:00:00,84.8652871,99.95767771,31.45347604,165.8513699,16.61015386,16.34640602,0,16.34640602,16.10929643,0.237109588,43.12753851,35.00042167,8.127116844,0.500857424,7.626259421,1.481178681,1.744590589,-9.641782188,9.641782188,0,0,0.52808643,0.125214356,4.027324108,1,0.15182038,0,0.103345764,0.961238037,1,0.473534014,0.749037418,15.48486848,0.354211572,0.115824807,0.027949773,0.724496596,0.448993192,0.997441565,0.958679602,0.090717375,3.884613694,15.57558585,4.238825266,0,29.68664436,-0.211034866,102.1830049,0.211034866,77.81699506,0,0.813072326,15.57558585,28.37621425,34.14725055,3,7,119% +2018-03-08 16:00:00,73.51955156,109.758891,220.6712094,581.2493828,55.77765226,64.16184634,8.402583303,55.75926304,54.09575025,1.663512788,55.18619156,0,55.18619156,1.681902013,53.50428955,1.283158239,1.915654032,-2.598487304,2.598487304,0.97452119,0.97452119,0.252763613,1.631841677,52.48563775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.99889277,1.218532283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.18226374,50.45119139,53.18115651,51.66972368,8.402583303,0,0.014456073,89.1716992,-0.014456073,90.8283008,0,0,53.18115651,51.66972368,86.99795726,3,8,64% +2018-03-08 17:00:00,62.83185886,121.0196705,415.6288867,744.9231265,75.49452619,253.3860327,177.0347589,76.35127379,73.21808768,3.13318611,103.0504741,0,103.0504741,2.27643851,100.7740356,1.096622812,2.112191711,-1.225681719,1.225681719,0.739757608,0.739757608,0.181639267,2.465904714,79.31197208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.38001086,1.649271951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786539571,76.23768434,72.16655043,77.88695629,177.0347589,0,0.237655072,76.25181799,-0.237655072,103.748182,0.839611054,0,220.806891,77.88695629,271.7823462,3,9,23% +2018-03-08 18:00:00,53.4709863,134.7741931,575.8207926,820.0486108,87.70344568,452.0277434,362.6280998,89.39964357,85.05886321,4.340780363,142.2590003,0,142.2590003,2.644582479,139.6144178,0.933244765,2.352253416,-0.575348851,0.575348851,0.628544138,0.628544138,0.152310314,2.973958467,95.65272721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.76181468,1.915991003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.154622786,91.94503972,83.91643747,93.86103073,362.6280998,0,0.442203176,63.75546289,-0.442203176,116.2445371,0.936929803,0,423.6735118,93.86103073,485.1036791,3,10,14% +2018-03-08 19:00:00,46.37247071,152.0262042,686.170162,856.6076694,95.13878535,623.4122602,525.9696198,97.44264047,92.26999995,5.172640521,169.2386854,0,169.2386854,2.868785403,166.3699,0.809352296,2.653357813,-0.145530468,0.145530468,0.555040865,0.555040865,0.138651883,3.190149939,102.6061881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.69343361,2.078425259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311252771,98.62897082,91.00468638,100.7073961,525.9696198,0,0.614014605,52.11964542,-0.614014605,127.8803546,0.968568712,0,600.4424037,100.7073961,666.3533802,3,11,11% +2018-03-08 20:00:00,42.74994174,172.7668151,737.9904321,870.9236639,98.45098052,746.6982287,645.6526248,101.0456038,95.48232021,5.563283605,181.9029847,0,181.9029847,2.968660308,178.9343244,0.746127238,3.015349761,0.204274784,-0.204274784,0.495220644,0.495220644,0.133404142,3.1296825,100.6613474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78123803,2.150784288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267444317,96.75951597,94.04868235,98.91030026,645.6526248,0,0.741342384,42.15410807,-0.741342384,137.8458919,0.98255478,0,728.4377552,98.91030026,793.1725686,3,12,9% +2018-03-08 21:00:00,43.50874135,194.6770336,727.4062867,868.1244106,97.78226532,808.27299,707.9557249,100.3172651,94.83376924,5.483495847,179.3165719,0,179.3165719,2.948496078,176.3680758,0.75937079,3.397755214,0.540078318,-0.540078318,0.437794858,0.437794858,0.134425928,2.815061199,90.54204486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.15782618,2.136175371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.039502256,87.03245745,93.19732843,89.16863282,707.9557249,0,0.815500309,35.36313864,-0.815500309,144.6368614,0.988687945,0,793.144619,89.16863282,851.5037058,3,13,7% +2018-03-08 22:00:00,48.43763503,214.3750308,655.2151786,847.264108,93.11062157,799.6927667,704.4504851,95.24228157,90.30299279,4.939288781,161.6721347,0,161.6721347,2.807628782,158.8645059,0.845396213,3.741550122,0.916743769,-0.916743769,0.373381272,0.373381272,0.142106936,2.284066122,73.46341789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80267151,2.034117495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65479813,70.6158316,88.45746964,72.64994909,704.4504851,0,0.831441434,33.75290588,-0.831441434,146.2470941,0.989863473,0,785.7672736,72.64994909,833.3152123,3,14,6% +2018-03-08 23:00:00,56.4224369,230.3725364,526.8985348,800.4596882,84.19202775,716.4714179,630.8461067,85.6253112,81.65332748,3.971983718,130.2913502,0,130.2913502,2.538700272,127.75265,0.984757296,4.020759266,1.41887341,-1.41887341,0.287512046,0.287512046,0.159787933,1.594191506,51.27467884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.48828421,1.839279705,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15498632,49.28717163,79.64327053,51.12645133,630.8461067,0,0.78810478,37.99124866,-0.78810478,142.0087513,0.986556659,0,702.0086982,51.12645133,735.4699381,3,15,5% +2018-03-08 00:00:00,66.31174746,243.172363,352.9523492,704.3294815,69.98091685,555.4714532,484.9400153,70.5314379,67.870734,2.660703896,87.68756625,0,87.68756625,2.110182845,85.5773834,1.157358326,4.244158385,2.263168845,-2.263168845,0.143129023,0.143129023,0.198272988,0.832862559,26.78772283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.23993111,1.528820288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.603406089,25.74937811,65.8433372,27.2781984,484.9400153,0,0.688513016,46.48748387,-0.688513016,133.5125161,0.977379732,0,539.8138791,27.2781984,557.6669144,3,16,3% +2018-03-08 01:00:00,77.28388017,253.8495659,152.3116421,483.1990252,45.94955545,306.5064527,260.7942564,45.71219631,44.56400682,1.148189495,38.31526966,0,38.31526966,1.385548633,36.92972102,1.348858168,4.43051073,4.421537579,-4.421537579,0,0,0.301681177,0.346387158,11.1410017,0.184321863,1,0.222423665,0,0.935822575,0.974584538,0.724496596,1,43.11299654,1.003825268,0.029000527,0.312029739,0.921052392,0.645548988,0.961238037,0.922476074,0.24119987,10.70915461,43.35419641,11.71297987,212.7241733,0,0.539724302,57.33512717,-0.539724302,122.6648728,0.95736011,0,247.0078343,11.71297987,254.6737454,3,17,3% +2018-03-08 02:00:00,88.5920768,263.3823695,1.803957425,14.00555052,1.459835132,6.411490322,4.982075612,1.42941471,1.415815716,0.013598993,0.481409779,0,0.481409779,0.044019415,0.437390363,1.546223431,4.596889539,39.58228407,-39.58228407,0,0,0.809240347,0.011004854,0.353953929,0.861855853,1,0.025258455,0,0.958934135,0.997696098,0.724496596,1,1.365255342,0.031891917,0.104523272,0.312029739,0.746668206,0.471164802,0.961238037,0.922476074,0.007798139,0.34023398,1.373053481,0.372125897,0.688244587,0,0.355721512,69.16232931,-0.355721512,110.8376707,0.909440607,0,1.998971055,0.372125897,2.242520012,3,18,12% +2018-03-08 03:00:00,100.7643708,272.5984045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758670039,4.757739694,-4.856097728,4.856097728,1,0.63940469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.134697094,82.25889534,-0.134697094,97.74110466,0.678796742,0,0,0,0,3,19,0% +2018-03-08 04:00:00,112.488441,282.310227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963293665,4.927242973,-2.041577143,2.041577143,1,0.879283943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092347068,95.29864668,0.092347068,84.70135332,0,0.508564296,0,0,0,3,20,0% +2018-03-08 05:00:00,123.7428528,293.5140554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159720207,5.122786668,-1.085639853,1.085639853,1,0.715809039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.315717122,108.4041112,0.315717122,71.59588876,0,0.891630382,0,0,0,3,21,0% +2018-03-08 06:00:00,133.9376567,307.6315145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337653101,5.369182811,-0.555592442,0.555592442,1,0.625165593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520176635,121.3441005,0.520176635,58.65589945,0,0.953878804,0,0,0,3,22,0% +2018-03-08 07:00:00,142.0246329,326.5478068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478797462,5.699334394,-0.181592551,0.181592551,1,0.561207845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691778096,133.7710259,0.691778096,46.22897411,0,0.977722487,0,0,0,3,23,0% +2018-03-09 08:00:00,146.3273148,351.1848185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553893429,6.129331366,0.129231297,-0.129231297,1,0.508053836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818813437,144.96619,0.818813437,35.03380997,0,0.988936029,0,0,0,3,0,0% +2018-03-09 09:00:00,145.3555347,17.93515954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536932667,0.313027586,0.424805467,-0.424805467,1,0.457507676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892611918,153.2033169,0.892611918,26.79668314,0,0.993984615,0,0,0,3,1,0% +2018-03-09 10:00:00,139.4942597,40.65463467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434634119,0.709557231,0.744637397,-0.744637397,1,0.402813195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9081311,155.2483477,0.9081311,24.75165228,0,0.99494187,0,0,0,3,2,0% +2018-03-09 11:00:00,130.4956894,57.65070969,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27757944,1.0061947,1.143932648,-1.143932648,1,0.334529686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86430065,149.8029443,0.86430065,30.19705566,0,0.99214976,0,0,0,3,3,0% +2018-03-09 12:00:00,119.827729,70.53061918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091388407,1.230991528,1.744065793,-1.744065793,1,0.231900873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764095593,139.8265989,0.764095593,40.17340109,0,0.984563161,0,0,0,3,4,0% +2018-03-09 13:00:00,108.3425312,81.05798389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890933889,1.414728704,2.960208173,-2.960208173,1,0.023928278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614333953,127.90354,0.614333953,52.09645995,0,0.968611042,0,0,0,3,5,0% +2018-03-09 14:00:00,96.5310375,90.47649371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684784435,1.579112711,8.182913511,-8.182913511,1,0,#DIV/0!,0,0,0.465013755,1,0.121602904,0,0.94875477,0.987516733,0.724496596,1,0,0,0.065170619,0.312029739,0.831869165,0.556365761,0.961238037,0.922476074,0,0,0,0,0,0,-0.425212508,115.1641152,0.425212508,64.83588477,0,0.932411738,0,0,0,3,6,0% +2018-03-09 15:00:00,84.57919509,99.69048732,35.05191886,180.7657075,17.97501686,17.69723995,0,17.69723995,17.43300378,0.26423617,46.46219212,37.4214355,9.040756625,0.542013079,8.498743546,1.476185433,1.739927237,-9.154550418,9.154550418,0,0,0.512811208,0.13550327,4.358250944,1,0.087319779,0,0.1088039,0.961238037,1,0.462645934,0.738149338,16.75726633,0.387047443,0.115824807,0.01557015,0.724496596,0.448993192,0.998597976,0.959836013,0.098171658,4.19795752,16.85543798,4.585004962,0,34.15380402,-0.207016231,101.9475528,0.207016231,78.05244717,0,0.808473045,16.85543798,32.19743489,37.92801517,3,7,125% +2018-03-09 16:00:00,73.21379173,109.4979184,226.3371318,588.2592027,56.44707925,67.45830358,11.00708713,56.45121645,54.74499155,1.706224905,56.58014575,0,56.58014575,1.702087707,54.87805805,1.277821724,1.9110992,-2.55804567,2.55804567,0.967605263,0.967605263,0.249393808,1.664736869,53.54366019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.6229682,1.23315675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.206096194,51.46820281,53.8290644,52.70135956,11.00708713,0,0.018711288,88.92785962,-0.018711288,91.07214038,0,0,53.8290644,52.70135956,88.3210502,3,8,64% +2018-03-09 17:00:00,62.50314183,120.7721576,421.5387265,748.560113,75.92854252,257.9638906,181.1471368,76.8167538,73.63901682,3.177736979,104.4964703,0,104.4964703,2.289525704,102.2069446,1.090885618,2.107871795,-1.215002914,1.215002914,0.737931425,0.737931425,0.180122342,2.494955162,80.24633435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.78462396,1.658753578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.807586521,77.1358289,72.59221049,78.79458247,181.1471368,0,0.241994108,75.99573583,-0.241994108,104.0042642,0.843383399,0,225.3686985,78.79458247,276.9381769,3,9,23% +2018-03-09 18:00:00,53.11304569,134.5639113,581.7042116,822.4315537,88.04943429,457.0333686,367.2538175,89.77955104,85.39441898,4.38513206,143.6959362,0,143.6959362,2.655015312,141.0409208,0.926997523,2.348583306,-0.57231701,0.57231701,0.628025662,0.628025662,0.151364615,3.000874857,96.51845086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.08436366,1.923549555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.174123619,92.77720622,84.25848728,94.70075578,367.2538175,0,0.446546361,63.47768298,-0.446546361,116.522317,0.938029543,0,428.753418,94.70075578,490.7331686,3,10,14% +2018-03-09 19:00:00,45.98651371,151.904917,691.909411,858.4411153,95.44077147,628.542167,530.7633816,97.77878548,92.56288008,5.215905404,170.6393388,0,170.6393388,2.877891399,167.7614474,0.802616076,2.651240952,-0.145750845,0.145750845,0.555078552,0.555078552,0.137938247,3.215346121,103.4165839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97496113,2.085022522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.32950732,99.40795413,91.30446845,101.4929767,530.7633816,0,0.618287466,51.80881629,-0.618287466,128.1911837,0.969131468,0,605.6839633,101.4929767,672.1090867,3,11,11% +2018-03-09 20:00:00,42.35480595,172.8013559,743.5096704,872.5223084,98.72703562,751.7997381,650.4447969,101.3549412,95.75005123,5.604889956,183.249512,0,183.249512,2.976984388,180.2725277,0.739230818,3.015952613,0.202002384,-0.202002384,0.495609247,0.495609247,0.13278514,3.153226142,101.4185919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.03859128,2.156815055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284501606,97.48740813,94.32309288,99.64422319,650.4447969,0,0.745476409,41.79996485,-0.745476409,138.2000351,0.982928796,0,733.6640142,99.64422319,798.8791654,3,12,9% +2018-03-09 21:00:00,43.13856398,194.881556,732.6537957,869.6840655,98.04340133,813.2612935,712.6512086,100.6100848,95.08703103,5.523053787,180.5967654,0,180.5967654,2.956370292,177.6403951,0.752909976,3.401324803,0.535879988,-0.535879988,0.438512814,0.438512814,0.13381955,2.836920869,91.24512699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.40127104,2.141880212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055339512,87.70828674,93.45661055,89.85016695,712.6512086,0,0.819436893,34.97153574,-0.819436893,145.0284643,0.988982489,0,798.2561764,89.85016695,857.0613136,3,13,7% +2018-03-09 22:00:00,48.11648342,214.685274,660.1584586,848.973095,93.36840197,804.5372506,709.0076971,95.52955347,90.55300016,4.976553313,162.8784632,0,162.8784632,2.815401812,160.0630613,0.83979106,3.746964887,0.909961169,-0.909961169,0.374541165,0.374541165,0.141433319,2.30415356,74.10949895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.0429881,2.039749029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66935141,71.23686929,88.71233951,73.27661832,709.0076971,0,0.83513565,33.37003441,-0.83513565,146.6299656,0.990129487,0,790.7217668,73.27661832,838.6798479,3,14,6% +2018-03-09 23:00:00,56.15155485,230.7197067,531.5179088,802.6091698,84.46617695,721.2138036,635.287787,85.92601658,81.91921007,4.00680651,131.4196376,0,131.4196376,2.546966882,128.8726707,0.980029512,4.026818531,1.407427024,-1.407427024,0.289469493,0.289469493,0.158915016,1.612272668,51.85623114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.74386067,1.845268836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.168086059,49.84618182,79.91194673,51.69145066,635.287787,0,0.791528194,37.67144616,-0.791528194,142.3285538,0.986831056,0,706.8336646,51.69145066,740.6646852,3,15,5% +2018-03-09 00:00:00,66.08025921,243.5234172,357.2165427,707.5905904,70.31929499,560.300155,489.4083971,70.89175798,68.19890879,2.692849188,88.73167267,0,88.73167267,2.120386194,86.61128648,1.153318094,4.250285436,2.240142491,-2.240142491,0.147066762,0.147066762,0.196853411,0.848165576,27.27992046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.55538521,1.53621258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614493072,26.22249719,66.16987828,27.75870977,489.4083971,0,0.691654756,46.23875971,-0.691654756,133.7612403,0.977709599,0,544.6691657,27.75870977,562.836686,3,16,3% +2018-03-09 01:00:00,77.07919462,254.1967715,156.0166243,489.7019039,46.51729087,311.9958591,265.7051169,46.29074214,45.11462292,1.176119215,39.2307048,0,39.2307048,1.40266795,37.82803685,1.345285731,4.436570611,4.347267051,-4.347267051,0,0,0.298155989,0.350666988,11.27865573,0.175783029,1,0.226096479,0,0.935309029,0.974070992,0.724496596,1,43.63744823,1.016228155,0.027760203,0.312029739,0.924293881,0.648790477,0.961238037,0.922476074,0.244491791,10.84147289,43.88194002,11.85770105,218.9986668,0,0.542585428,57.14018585,-0.542585428,122.8598142,0.957848612,0,253.6495091,11.85770105,261.4101373,3,17,3% +2018-03-09 02:00:00,88.41775692,263.7291889,2.342160178,17.60951479,1.855929046,8.123026295,6.305404165,1.81762213,1.799965937,0.017656193,0.62384696,0,0.62384696,0.055963108,0.567883852,1.543180975,4.60294268,35.16817053,-35.16817053,0,0,0.792400564,0.013990777,0.449991484,0.845773207,1,0.028427143,0,0.958634273,0.997396236,0.724496596,1,1.736269473,0.040545082,0.103137424,0.312029739,0.749457771,0.473954367,0.961238037,0.922476074,0.009891028,0.432548931,1.746160502,0.473094013,0.972462265,0,0.358068024,69.01840593,-0.358068024,110.9815941,0.910361728,0,2.63145293,0.473094013,2.941083499,3,18,12% +2018-03-09 03:00:00,100.5747667,272.9526016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755360824,4.763921601,-4.932412566,4.932412566,1,0.626354084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137141834,82.11750991,-0.137141834,97.88249009,0.685413948,0,0,0,0,3,19,0% +2018-03-09 04:00:00,112.2889689,282.6807201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959812221,4.933709297,-2.053384414,2.053384414,1,0.881303105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090038247,95.16580741,0.090038247,84.83419259,0,0.494680436,0,0,0,3,20,0% +2018-03-09 05:00:00,123.5190457,293.9070797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155814037,5.129646236,-1.08771876,1.08771876,1,0.716164553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313475899,108.2688297,0.313475899,71.7311703,0,0.890498105,0,0,0,3,21,0% +2018-03-09 06:00:00,133.6717185,308.0390092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333011604,5.376294935,-0.554472195,0.554472195,1,0.624974019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51792998,121.1935008,0.51792998,58.80649919,0,0.953461854,0,0,0,3,22,0% +2018-03-09 07:00:00,141.6994829,326.9153745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473122524,5.70574966,-0.178795325,0.178795325,1,0.560729491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689453317,133.5868497,0.689453317,46.41315025,0,0.977478774,0,0,0,3,23,0% +2018-03-10 08:00:00,145.9462272,351.3818809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547242196,6.132770753,0.133382104,-0.133382104,1,0.507344006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816343197,144.7203915,0.816343197,35.27960849,0,0.988751251,0,0,0,3,0,0% +2018-03-10 09:00:00,144.9603462,17.87584893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530035327,0.31199242,0.430527738,-0.430527738,1,0.45652911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889938889,152.8655687,0.889938889,27.1344313,0,0.993816367,0,0,0,3,1,0% +2018-03-10 10:00:00,139.1258876,40.42888387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428204813,0.705617136,0.752708167,-0.752708167,1,0.401433012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905211921,154.8518404,0.905211921,25.14815956,0,0.994764316,0,0,0,3,2,0% +2018-03-10 11:00:00,130.1618247,57.36957573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271752401,1.001287987,1.15626611,-1.15626611,1,0.332420539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861108929,149.4413223,0.861108929,30.55867769,0,0.991935337,0,0,0,3,3,0% +2018-03-10 12:00:00,119.519452,70.24310911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086007957,1.225973531,1.766078844,-1.766078844,1,0.22813642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760623731,139.5192155,0.760623731,40.48078448,0,0.984264475,0,0,0,3,4,0% +2018-03-10 13:00:00,108.048597,80.77734345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88580377,1.409830604,3.014694259,-3.014694259,1,0.014610608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610593676,127.632442,0.610593676,52.367558,0,0.968112483,0,0,0,3,5,0% +2018-03-10 14:00:00,96.24134506,90.20351724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679728348,1.574348373,8.581102677,-8.581102677,1,0,#DIV/0!,0,0,0.483818029,1,0.116011864,0,0.949404743,0.988166706,0.724496596,1,0,0,0.067311502,0.312029739,0.826915751,0.551412347,0.961238037,0.922476074,0,0,0,0,0,0,-0.421234062,114.9125235,0.421234062,65.08747645,0,0.931301147,0,0,0,3,6,0% +2018-03-10 15:00:00,84.29102546,99.42321205,38.81093472,195.7688372,19.33671035,19.04621041,0,19.04621041,18.75363719,0.29257322,49.72462189,39.73138827,9.993233623,0.583073162,9.410160461,1.471155924,1.735262403,-8.712634523,8.712634523,0,0,0.498228411,0.14576829,4.688409297,1,0.019705818,0,0.114275793,0.961238037,1,0.451971217,0.727474621,18.02670939,0.421005411,0.115824807,0.003401373,0.724496596,0.448993192,0.999698722,0.960936759,0.10560863,4.508846013,18.13231803,4.929851425,0,38.94844875,-0.202950525,101.709551,0.202950525,78.29044903,0,0.803634537,18.13231803,36.23017001,41.84423969,3,7,131% +2018-03-10 16:00:00,72.90663981,109.2363722,232.0339282,595.1328275,57.10679833,70.8196087,13.68562128,57.13398742,55.38481766,1.749169763,57.98129297,0,57.98129297,1.721980671,56.25931229,1.272460911,1.906534357,-2.518730285,2.518730285,0.960881936,0.960881936,0.246114001,1.697585766,54.60019363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.2379934,1.247569135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.229895108,52.48378294,54.46788851,53.73135207,13.68562128,0,0.022995911,88.68231523,-0.022995911,91.31768477,0,0,54.46788851,53.73135207,89.63398381,3,8,65% +2018-03-10 17:00:00,62.17320257,120.5236304,427.456916,752.1382974,76.35852493,262.5680924,185.2897079,77.27838446,74.05603367,3.222350791,105.9443695,0,105.9443695,2.30249126,103.6418782,1.085127091,2.103534177,-1.204460199,1.204460199,0.736128515,0.736128515,0.178634436,2.523954749,81.17906076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18547642,1.66814708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828596624,78.032401,73.01407305,79.70054808,185.2897079,0,0.246350583,75.73833697,-0.246350583,104.261663,0.847037217,0,229.9613515,79.70054808,282.1237662,3,9,23% +2018-03-10 18:00:00,52.75390579,134.3524703,587.581724,824.7792347,88.39256749,462.0452881,371.8886434,90.15664468,85.72720545,4.429439231,145.1313538,0,145.1313538,2.665362044,142.4659918,0.920729349,2.344892965,-0.569285771,0.569285771,0.62750729,0.62750729,0.150434508,3.027712391,97.38163819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40425067,1.931045727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193567321,93.60693471,84.59781799,95.53798044,371.8886434,0,0.45089477,63.19889403,-0.45089477,116.801106,0.939109381,0,433.8419318,95.53798044,496.3696292,3,10,14% +2018-03-10 19:00:00,45.59929874,151.7834067,697.6313983,860.2478063,95.74002193,633.6625894,535.5504422,98.11214718,92.85310702,5.259040161,172.0357243,0,172.0357243,2.886914904,169.1488094,0.7958579,2.649120196,-0.145937007,0.145937007,0.555110388,0.555110388,0.137235827,3.240437435,104.2236069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.25393831,2.091560021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.347685891,100.1836952,91.6016242,102.2752553,535.5504422,0,0.622553685,51.49714113,-0.622553685,128.5028589,0.969685641,0,610.9171982,102.2752553,677.8543073,3,11,11% +2018-03-10 20:00:00,41.95862779,172.8384013,749.0029974,874.0970019,99.00016831,756.8782943,655.2170453,101.6612489,96.01494796,5.646300975,184.5896687,0,184.5896687,2.985220346,181.6044484,0.732316205,3.016599177,0.199781261,-0.199781261,0.495989082,0.495989082,0.132175931,3.176649548,102.1719691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.29322009,2.162781979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301471784,98.21158303,94.59469187,100.374365,655.2170453,0,0.749593059,41.44486033,-0.749593059,138.5551397,0.983297141,0,738.8677394,100.374365,804.5607538,3,12,9% +2018-03-10 21:00:00,42.76815433,195.091234,737.8698233,871.2192561,98.30132679,818.215512,717.3159585,100.8995535,95.3371791,5.562374406,181.8692291,0,181.8692291,2.964147696,178.9050814,0.746445108,3.404984374,0.531751572,-0.531751572,0.439218815,0.439218815,0.133223129,2.85865906,91.94430195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.64172288,2.147514916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.071088758,88.38036031,93.71281163,90.52787522,717.3159585,0,0.823347227,34.57871853,-0.823347227,145.4212815,0.98927228,0,803.3336053,90.52787522,862.5822891,3,13,7% +2018-03-10 22:00:00,47.79600607,215.0009021,665.0681495,850.6537314,93.62259786,809.3390674,713.5259717,95.81309574,90.7995311,5.013564637,164.0765395,0,164.0765395,2.823066756,161.2534727,0.834197675,3.752473636,0.903282254,-0.903282254,0.375683327,0.375683327,0.140771435,2.324134552,74.75215636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.27996302,2.045302255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.683827572,71.85461603,88.9637906,73.89991829,713.5259717,0,0.838797204,32.98667553,-0.838797204,147.0133245,0.990390836,0,795.6333743,73.89991829,843.9993928,3,14,6% +2018-03-10 23:00:00,55.88180436,231.0710935,536.1054204,804.72055,84.73610545,725.9071854,639.6847971,86.22238834,82.18099923,4.041389111,132.5400722,0,132.5400722,2.555106222,129.984966,0.975321478,4.032951387,1.396165408,-1.396165408,0.291395343,0.291395343,0.158058662,1.630282009,52.43547346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.99550237,1.85116576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181133766,50.40297157,80.17663613,52.25413733,639.6847971,0,0.794915449,37.35272971,-0.794915449,142.6472703,0.987100229,0,711.6096456,52.25413733,745.8089334,3,15,5% +2018-03-10 00:00:00,65.84992868,243.8775123,361.4553683,710.7886185,70.65181485,565.0737218,493.8275165,71.2462052,68.52140196,2.724803245,89.76945172,0,89.76945172,2.130412895,87.63903882,1.149298068,4.256465562,2.217575616,-2.217575616,0.150925925,0.150925925,0.195464838,0.863463039,27.77193946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.8653779,1.54347689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625576032,26.69544457,66.49095393,28.23892146,493.8275165,0,0.694760022,45.99190281,-0.694760022,134.0080972,0.978032704,0,549.4704154,28.23892146,567.9522247,3,16,3% +2018-03-10 01:00:00,76.87542248,254.5461763,159.7149634,496.0682737,47.07319592,317.4199957,270.5622314,46.85776424,45.65376538,1.203998858,40.14417253,0,40.14417253,1.419430539,38.724742,1.341729236,4.442668875,4.275415246,-4.275415246,0,0,0.294732534,0.354857635,11.41344135,0.167350395,1,0.229764921,0,0.934793182,0.973555146,0.724496596,1,44.15031,1.028372593,0.026526165,0.312029739,0.92753095,0.652027546,0.961238037,0.922476074,0.247737878,10.97103395,44.39804788,11.99940655,225.283535,0,0.545413294,56.94708875,-0.545413294,123.0529112,0.9583264,0,260.293207,11.99940655,268.1465786,3,17,3% +2018-03-10 02:00:00,88.24265005,264.0776216,2.971100867,21.74147892,2.304360716,10.09310988,7.835836733,2.257273152,2.234875738,0.022397413,0.789862781,0,0.789862781,0.069484978,0.720377803,1.540124784,4.609023978,31.61441587,-31.61441587,0,0,0.775591546,0.017371244,0.558718935,0.829822858,1,0.031620597,0,0.958329632,0.997091596,0.724496596,1,2.156489779,0.05034163,0.101747695,0.312029739,0.752270659,0.476767255,0.961238037,0.922476074,0.012253437,0.537061892,2.168743217,0.587403522,1.333480302,0,0.360409555,68.8746497,-0.360409555,111.1253503,0.911268939,0,3.383902396,0.587403522,3.768346253,3,18,11% +2018-03-10 03:00:00,100.3853287,273.307941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752054506,4.770123442,-5.011148651,5.011148651,1,0.61288942,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139566745,81.97722359,-0.139566745,98.02277641,0.691748469,0,0,0,0,3,19,0% +2018-03-10 04:00:00,112.0891713,283.0518438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956325094,4.940186629,-2.065301739,2.065301739,1,0.883341088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087738968,95.03354486,0.087738968,84.96645514,0,0.480127787,0,0,0,3,20,0% +2018-03-10 05:00:00,123.294399,294.299976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151893212,5.13650357,-1.089770644,1.089770644,1,0.716515446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311232652,108.1335315,0.311232652,71.86646845,0,0.889348476,0,0,0,3,21,0% +2018-03-10 06:00:00,133.4045205,308.445138,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32834812,5.38338322,-0.553302378,0.553302378,1,0.624773969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515669257,121.0421996,0.515669257,58.95780042,0,0.953038625,0,0,0,3,22,0% +2018-03-10 07:00:00,141.3730101,327.2802826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467424499,5.712118509,-0.175938786,0.175938786,1,0.560240994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687102777,133.4012039,0.687102777,46.5987961,0,0.977230683,0,0,0,3,23,0% +2018-03-11 08:00:00,145.5641348,351.5776982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540573425,6.13618841,0.137604449,-0.137604449,1,0.506621943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813836663,144.4724957,0.813836663,35.52750433,0,0.988562611,0,0,0,3,0,0% +2018-03-11 09:00:00,144.5639645,17.8196359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523117161,0.311011318,0.436343469,-0.436343469,1,0.455534562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887220918,152.5260796,0.887220918,27.47392038,0,0.99364425,0,0,0,3,1,0% +2018-03-11 10:00:00,138.755648,40.2075914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421742913,0.701754854,0.76091629,-0.76091629,1,0.40002934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902241637,154.4543029,0.902241637,25.54569708,0,0.994582473,0,0,0,3,2,0% +2018-03-11 11:00:00,129.8257438,57.09179295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265886684,0.996439763,1.168838033,-1.168838033,1,0.330270614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857862848,149.0774639,0.857862848,30.92253614,0,0.991715625,0,0,0,3,3,0% +2018-03-11 12:00:00,119.2089813,69.9576737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080589222,1.220991743,1.788630408,-1.788630408,1,0.224279875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757097391,139.2089742,0.757097391,40.79102585,0,0.983958298,0,0,0,3,4,0% +2018-03-11 13:00:00,107.7526723,80.49784555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880638909,1.404952446,3.071215522,-3.071215522,1,0.004944903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606801948,127.3586205,0.606801948,52.64137952,0,0.967600792,0,0,0,3,5,0% +2018-03-11 14:00:00,95.94992744,89.9310124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674642151,1.569592266,9.020314329,-9.020314329,1,0,#DIV/0!,0,0,0.503083592,1,0.110410037,0,0.950048747,0.98881071,0.724496596,1,0,0,0.069472545,0.312029739,0.821952715,0.546449311,0.961238037,0.922476074,0,0,0,0,0,0,-0.417210132,114.6585763,0.417210132,65.34142369,0,0.930156314,0,0,0,3,6,0% +2018-03-11 15:00:00,84.00095996,99.15586623,42.72093092,210.7949108,20.69037524,20.38853251,0,20.38853251,20.06648408,0.322048423,52.89668267,41.91460721,10.98207546,0.623891153,10.35818431,1.466093326,1.730596338,-8.310211048,8.310211048,0.048716524,0.048716524,0.484314709,0.164063416,5.276843414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.28866777,0.452007016,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118863386,5.072302604,19.40753115,5.524309621,0,41.91460721,-0.198840698,101.4691744,0.198840698,78.5308256,0,0.798542424,19.40753115,38.99490165,44.92891438,3,7,132% +2018-03-11 16:00:00,72.5982362,108.9742533,237.7582039,601.8702627,57.75676358,74.24309954,16.43559371,57.80750583,56.01518406,1.792321771,59.38880874,0,59.38880874,1.741579522,57.64722922,1.267078253,1.90195952,-2.480510327,2.480510327,0.954345938,0.954345938,0.242922274,1.730372547,55.65472923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.84392556,1.261768435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.25364902,53.49744266,55.09757458,54.7592111,16.43559371,0,0.027307536,88.43519893,-0.027307536,91.56480107,0,0,55.09757458,54.7592111,90.93638306,3,8,65% +2018-03-11 17:00:00,61.8421822,120.2740668,433.3804507,755.6574352,76.78434292,267.1959951,189.4599785,77.73601657,74.46901168,3.267004898,107.393439,0,107.393439,2.315331243,105.0781078,1.079349696,2.09917847,-1.194056317,1.194056317,0.734349346,0.734349346,0.177175373,2.552890225,82.10972513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58244659,1.677449604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849560277,78.92699099,73.43200687,80.60444059,189.4599785,0,0.250722046,75.47975673,-0.250722046,104.5202433,0.850575974,0,234.5821126,80.60444059,287.3361068,3,9,22% +2018-03-11 18:00:00,52.39370555,134.1398148,593.450538,827.0914342,88.73271232,467.060837,376.5300625,90.53077449,86.05709366,4.47368083,146.5645723,0,146.5645723,2.675618665,143.8889537,0.914442669,2.341181426,-0.566258137,0.566258137,0.626989534,0.626989534,0.14951998,3.054459501,98.24191719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72135176,1.938476615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.212945511,94.43386761,84.93429728,96.37234423,376.5300625,0,0.455245995,62.91923694,-0.455245995,117.0807631,0.94016927,0,438.9362912,96.37234423,502.010063,3,10,14% +2018-03-11 19:00:00,45.21095468,151.6615964,703.3336027,862.0276104,96.0364179,638.7709724,540.3283811,98.44259135,93.14056556,5.302025787,173.4272272,0,173.4272272,2.895852336,170.5313749,0.789080017,2.646994206,-0.146091249,0.146091249,0.555136765,0.555136765,0.136544618,3.265414001,105.0269391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.53025439,2.09803516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365781328,100.9558887,91.89603572,103.0539239,540.3283811,0,0.626810991,51.18476681,-0.626810991,128.8152332,0.970231137,0,616.1394553,103.0539239,683.5861874,3,11,11% +2018-03-11 20:00:00,41.56152334,172.8779055,754.4682239,875.6477017,99.27027957,761.9315762,659.9671617,101.9644145,96.27691437,5.68750016,185.922921,0,185.922921,2.993365197,182.9295558,0.725385424,3.017288655,0.197609494,-0.197609494,0.496360476,0.496360476,0.131576488,3.199944542,102.9212162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54503217,2.168682896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318348928,98.93178783,94.8633811,101.1004707,659.9671617,0,0.75369028,41.08893943,-0.75369028,138.9110606,0.983659752,0,744.0465157,101.1004707,810.2147518,3,12,9% +2018-03-11 21:00:00,42.39762167,195.3060439,743.0525522,872.7300394,98.55596638,823.1336577,721.9480733,101.1855844,95.58414036,5.601444005,183.1335201,0,183.1335201,2.971826019,180.161694,0.739978093,3.408733516,0.527691139,-0.527691139,0.43991319,0.43991319,0.132636603,2.88026924,92.63935963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87911143,2.153077834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08674526,89.04847619,93.96585669,91.20155402,721.9480733,0,0.827229545,34.18481176,-0.827229545,145.8151882,0.989557285,0,808.3748317,91.20155402,868.0644248,3,13,7% +2018-03-11 22:00:00,47.4762961,215.3218444,669.9428181,852.3062182,93.87316219,814.0966374,718.0037855,96.09285194,91.04253999,5.050311948,165.2660148,0,165.2660148,2.830622195,162.4353926,0.828617684,3.758075136,0.896704505,-0.896704505,0.376808188,0.376808188,0.140121156,2.344004037,75.3912273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.51355241,2.050776145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.698222946,72.46891533,89.21177536,74.51969147,718.0037855,0,0.842424671,32.60294841,-0.842424671,147.3970516,0.990647512,0,800.5004392,74.51969147,849.2720869,3,14,6% +2018-03-11 23:00:00,55.61325083,231.4265835,540.6599974,806.7943056,85.00180453,730.5504531,644.0360432,86.51440994,82.4386865,4.075723436,133.6523939,0,133.6523939,2.56311803,131.0892759,0.970634335,4.039155858,1.385083888,-1.385083888,0.293290395,0.293290395,0.157218594,1.648215568,53.01227838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24320118,1.856970288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194126568,50.9574184,80.43732774,52.81438868,644.0360432,0,0.79826548,37.03521439,-0.79826548,142.9647856,0.987364196,0,716.3354578,52.81438868,750.9014189,3,15,5% +2018-03-11 00:00:00,65.62079509,244.2345215,365.6680242,713.924744,70.97854015,569.7915932,498.1967578,71.59483531,68.83827528,2.756560026,90.8007109,0,90.8007109,2.140264869,88.66044603,1.145298932,4.262696547,2.195453874,-2.195453874,0.154708965,0.154708965,0.194106499,0.878751226,28.2636601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.16996859,1.550614612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.636652272,27.16810515,66.80662087,28.71871976,498.1967578,0,0.697828114,45.746988,-0.697828114,134.253012,0.978349118,0,554.2169794,28.71871976,573.0128071,3,16,3% +2018-03-11 01:00:00,76.67258502,254.8976526,163.4056201,502.300952,47.61753582,322.7786709,275.3651588,47.41351201,46.18169142,1.231820587,41.05542884,0,41.05542884,1.435844395,39.61958444,1.338189055,4.448803294,4.205862106,-4.205862106,0,0,0.291406965,0.358961099,11.54542286,0.159021535,1,0.233429105,0,0.934275036,0.973036999,0.724496596,1,44.65183109,1.040264376,0.025298302,0.312029739,0.930763708,0.655260304,0.961238037,0.922476074,0.250939394,11.0978996,44.90277048,12.13816398,231.5761686,0,0.548207519,56.75587199,-0.548207519,123.244128,0.958793663,0,266.9365333,12.13816398,274.8807189,3,17,3% +2018-03-11 02:00:00,88.06688716,264.4275406,3.6939685,26.40143138,2.803374742,12.32364929,9.576959946,2.746689345,2.71884265,0.027846695,0.980177522,0,0.980177522,0.084532092,0.89564543,1.537057143,4.615131216,28.69352177,-28.69352177,0,0,0.758905968,0.021133023,0.679710663,0.814013265,1,0.034836973,0,0.958020339,0.996782302,0.724496596,1,2.624307266,0.061243213,0.100354965,0.312029739,0.755105195,0.479601791,0.961238037,0.922476074,0.0148748,0.653363743,2.639182066,0.714606956,1.781187516,0,0.362743967,68.73119165,-0.362743967,111.2688083,0.912161732,0,4.263913156,0.714606956,4.731609117,3,18,11% +2018-03-11 03:00:00,100.1960584,273.6642922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748751117,4.776342943,-5.092440017,5.092440017,1,0.598987778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141971988,81.8380272,-0.141971988,98.1619728,0.69781785,0,0,0,0,3,19,0% +2018-03-11 04:00:00,111.889051,283.423459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952832337,4.946672537,-2.077335439,2.077335439,1,0.885398972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085448926,94.90184038,0.085448926,85.09815962,0,0,0,0,0,3,20,0% +2018-03-11 05:00:00,123.0689255,294.6925914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147957958,5.143356002,-1.091797593,1.091797593,1,0.716862074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.308987027,107.9981946,0.308987027,72.00180536,0,0.888180908,0,0,0,3,21,0% +2018-03-11 06:00:00,133.1360974,308.8497413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323663252,5.39044488,-0.552084392,0.552084392,1,0.624565681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513394157,120.8901785,0.513394157,59.10982151,0,0.952608942,0,0,0,3,22,0% +2018-03-11 07:00:00,141.0452806,327.6423975,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46170454,5.718438605,-0.173024086,0.173024086,1,0.559742551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684726306,133.2140865,0.684726306,46.78591351,0,0.976978123,0,0,0,3,23,0% +2018-03-12 08:00:00,145.1811316,351.7721445,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533888758,6.139582137,0.141897349,-0.141897349,1,0.505887814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811293886,144.2225409,0.811293886,35.7774591,0,0.988370052,0,0,0,3,0,0% +2018-03-12 09:00:00,144.1665162,17.76633612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516180379,0.310081061,0.442251919,-0.442251919,1,0.454524157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884458346,152.1849388,0.884458346,27.81506124,0,0.993468225,0,0,0,3,1,0% +2018-03-12 10:00:00,138.3836927,39.99063676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415251069,0.697968281,0.769261626,-0.769261626,1,0.398602204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899220926,154.0558497,0.899220926,25.94415033,0,0.994396312,0,0,0,3,2,0% +2018-03-12 11:00:00,129.4876,56.8173275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25998496,0.991649437,1.18165032,-1.18165032,1,0.328079584,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854563449,148.7115399,0.854563449,31.28846008,0,0.991490594,0,0,0,3,3,0% +2018-03-12 12:00:00,118.8964632,69.67432008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075134752,1.216046289,1.811731927,-1.811731927,1,0.220329283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753517975,138.8960416,0.753517975,41.10395836,0,0.983644582,0,0,0,3,4,0% +2018-03-12 13:00:00,107.4548973,80.21951037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875441755,1.40009458,3.129867137,-3.129867137,1,0,#DIV/0!,0,0,0.005059386,1,0.309251483,0,0.922914997,0.96167696,0.724496596,1,0,0,0.000863154,0.312029739,0.997555308,0.722051904,0.961238037,0.922476074,0,0,0,0,0,0,-0.602960507,127.0822239,0.602960507,52.91777608,0,0.967075829,0,0,0,3,5,0% +2018-03-12 14:00:00,95.65692218,89.65900003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669528244,1.564844755,9.507053289,-9.507053289,1,0,#DIV/0!,0,0,0.522820666,1,0.104799699,0,0.950686462,0.989448425,0.724496596,1,0,0,0.071653248,0.312029739,0.816982251,0.541478847,0.961238037,0.922476074,0,0,0,0,0,0,-0.413142743,114.4024105,0.413142743,65.59758951,0,0.928976453,0,0,0,3,6,0% +2018-03-12 15:00:00,83.70917495,98.88846455,46.77238697,225.7856823,22.03188841,21.7201357,0,21.7201357,21.36754569,0.35259001,55.96298018,43.95813072,12.00484946,0.664342725,11.34050673,1.461000717,1.725929299,-7.942400058,7.942400058,0.111615907,0.111615907,0.471044773,0.186902531,6.011427871,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.53929767,0.481314043,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135410247,5.778413125,20.67470792,6.259727168,0,43.95813072,-0.194689629,101.2265932,0.194689629,78.77340684,0,0.793180979,20.67470792,41.12648031,47.59116675,3,7,130% +2018-03-12 16:00:00,72.28872051,108.7115635,243.5065921,608.4717738,58.39694396,77.72605584,19.25433965,58.47171618,56.63606064,1.835655549,60.80187579,0,60.80187579,1.760883322,59.04099247,1.261676185,1.897374718,-2.443355384,2.443355384,0.947992069,0.947992069,0.239816686,1.763081876,56.70677368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44073574,1.275753973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.277346817,54.50870781,55.71808256,55.78446178,19.25433965,0,0.031643768,88.18664293,-0.031643768,91.81335707,0,0,55.71808256,55.78446178,92.22789711,3,8,66% +2018-03-12 17:00:00,61.51022127,120.0234456,439.3063605,759.1173737,77.20587308,271.8449592,193.6554512,78.18950805,74.87783115,3.311676909,108.8429552,0,108.8429552,2.328041933,106.5149132,1.073555885,2.094804305,-1.183793636,1.183793636,0.732594324,0.732594324,0.175744947,2.581748614,83.03791012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97541941,1.686658455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870468082,79.81919771,73.8458875,81.50585616,193.6554512,0,0.255106072,75.22012951,-0.255106072,104.7798705,0.854003097,0,239.2282426,81.50585616,292.5721953,3,9,22% +2018-03-12 18:00:00,52.03258357,133.9258901,599.3079055,829.367982,89.06974089,472.0773795,381.1755838,90.90179571,86.38395957,4.51783614,147.9949216,0,147.9949216,2.68578132,145.3091402,0.908139902,2.337447736,-0.563236948,0.563236948,0.626472881,0.626472881,0.148621001,3.081104861,99.09892354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03554771,1.945839424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.232249983,95.25765472,85.2677977,97.20349415,381.1755838,0,0.45959766,62.63885172,-0.45959766,117.3611483,0.941209194,0,444.0337616,97.20349415,507.6515044,3,10,14% +2018-03-12 19:00:00,44.82161017,151.5394091,709.0135521,863.7804277,96.32984481,643.8648046,545.0948164,98.76998821,93.42514457,5.344843644,174.8132446,0,174.8132446,2.90470024,171.9085444,0.782284674,2.644861635,-0.146215784,0.146215784,0.555158061,0.555158061,0.135864603,3.290266157,105.8262698,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.80380256,2.104445436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.38378663,101.7242359,92.18758919,103.8286813,545.0948164,0,0.631057152,50.87183959,-0.631057152,129.1281604,0.970767874,0,621.348125,103.8286813,689.3019203,3,11,11% +2018-03-12 20:00:00,41.16360841,172.9198228,759.9032101,877.1743876,99.53727409,766.9573143,664.6929849,102.2643294,96.53585803,5.728471382,187.2487472,0,187.2487472,3.001416067,184.2473311,0.718440499,3.018020249,0.195485214,-0.195485214,0.496723749,0.496723749,0.130986779,3.223103139,103.6660763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79393866,2.174515724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335127252,99.64777565,95.12906591,101.8222914,664.6929849,0,0.757766066,40.73234697,-0.757766066,139.267653,0.984016576,0,749.1979806,101.8222914,815.8386339,3,12,9% +2018-03-12 21:00:00,42.02707502,195.5259622,748.2002115,874.2164892,98.80724787,828.0137965,726.5457025,101.468094,95.82784479,5.640249235,184.3892067,0,184.3892067,2.979403083,181.4098036,0.733510834,3.412571813,0.523696801,-0.523696801,0.440596262,0.440596262,0.132059904,2.901745035,93.33009502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.1133694,2.158567392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1023044,89.71243732,94.2156738,91.87100471,726.5457025,0,0.831082131,33.78994003,-0.831082131,146.21006,0.989837474,0,813.3778369,91.87100471,873.5055721,3,13,7% +2018-03-12 22:00:00,47.15744603,215.6480285,674.7810713,853.9307678,94.12005035,818.8084327,722.4396644,96.36876831,91.28198357,5.086784744,166.4465499,0,166.4465499,2.838066784,163.6084831,0.8230527,3.763768123,0.890225463,-0.890225463,0.377916169,0.377916169,0.139482351,2.363757069,76.0265527,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.74371468,2.056169724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71253395,73.07961427,89.45624863,75.13578399,722.4396644,0,0.84601667,32.21897221,-0.84601667,147.7810278,0.99089951,0,805.3213578,75.13578399,854.4962257,3,14,6% +2018-03-12 23:00:00,55.34595887,231.786062,545.1805983,808.8309167,85.26326681,735.1425406,648.3404742,86.80206636,82.69226473,4.109801635,134.75635,0,134.75635,2.571002082,132.1853479,0.96596921,4.045429942,1.374177934,-1.374177934,0.295155423,0.295155423,0.156394536,1.666069458,53.58652084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48695021,1.862682257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207061651,51.5094021,80.69401186,53.37208435,648.3404742,0,0.801577265,36.71901485,-0.801577265,143.2809851,0.987622981,0,721.0099639,53.37208435,755.9409257,3,15,5% +2018-03-12 00:00:00,65.39289705,244.5943172,369.8537307,717.0001269,71.29953346,574.4532394,502.5155363,71.93770311,69.14958946,2.788113649,91.82526304,0,91.82526304,2.149944001,89.67531903,1.141321361,4.268976168,2.173763513,-2.173763513,0.158418236,0.158418236,0.192777651,0.894026461,28.75496419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.46921562,1.55762711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.647719128,27.64036533,67.11693475,29.19799244,502.5155363,0,0.700858364,45.50408867,-0.700858364,134.4959113,0.97865891,0,558.9082415,29.19799244,578.0177436,3,16,3% +2018-03-12 01:00:00,76.47070327,255.251073,167.0875922,508.4027378,48.15056962,328.0717392,280.1135101,47.95822914,46.69865229,1.259576848,41.96423854,0,41.96423854,1.451917331,40.51232121,1.334665553,4.454971643,4.138495471,-4.138495471,0,0,0.288175615,0.362979333,11.67466307,0.150794101,1,0.237089137,0,0.933754591,0.972516554,0.724496596,1,45.14225527,1.051909164,0.024076505,0.312029739,0.933992258,0.658488854,0.961238037,0.922476074,0.254097563,11.22213021,45.39635283,12.27403938,237.8740452,0,0.550967745,56.56657031,-0.550967745,123.4334297,0.959250586,0,273.5771701,12.27403938,281.6102834,3,17,3% +2018-03-12 02:00:00,87.89059127,264.7788192,4.512768053,31.57998856,3.350377797,14.81225436,11.52888366,3.283370697,3.249351545,0.034019152,1.195199114,0,1.195199114,0.101026252,1.094172862,1.533980199,4.621262185,26.25156193,-26.25156193,0,0,0.742421892,0.025256563,0.812337886,0.798351637,1,0.038074562,0,0.957706508,0.996468471,0.724496596,1,3.137322983,0.073193176,0.098960042,0.312029739,0.757959818,0.482456413,0.961238037,0.922476074,0.017740336,0.780850075,3.155063319,0.854043251,2.324780512,0,0.365069279,68.58815367,-0.365069279,111.4118463,0.913039695,0,5.277680208,0.854043251,5.836634435,3,18,11% +2018-03-12 03:00:00,100.006959,274.0215257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745450709,4.782577844,-5.176430208,5.176430208,1,0.58462461,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.144357726,81.69991171,-0.144357726,98.30008829,0.703638212,0,0,0,0,3,19,0% +2018-03-12 04:00:00,111.6886129,283.7954277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949334032,4.953164616,-2.089491999,2.089491999,1,0.887477866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08316783,94.77067619,0.08316783,85.22932381,0,0,0,0,0,3,20,0% +2018-03-12 05:00:00,122.8426405,295.0847759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144008539,5.150200911,-1.093801705,1.093801705,1,0.717204798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306738694,107.8627985,0.306738694,72.13720147,0,0.886994807,0,0,0,3,21,0% +2018-03-12 06:00:00,132.8664864,309.2526647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.318957654,5.397477219,-0.550819635,0.550819635,1,0.624349395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511104407,120.7374218,0.511104407,59.26257821,0,0.95217263,0,0,0,3,22,0% +2018-03-12 07:00:00,140.7163627,328.0015926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455963841,5.724707743,-0.170052375,0.170052375,1,0.559234359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682323779,133.0254993,0.682323779,46.97450071,0,0.976721006,0,0,0,3,23,0% +2018-03-13 08:00:00,144.7973126,351.9651018,0,0,0,0,0,0,0,0,0,0,0,0,0,2.527189852,6.142949879,0.146259825,-0.146259825,1,0.505141786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808714969,143.9705698,0.808714969,36.02943024,0,0.98817352,0,0,0,3,0,0% +2018-03-13 09:00:00,143.7681269,17.71577289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509227174,0.309198566,0.448252345,-0.448252345,1,0.453498024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88165157,151.8422375,0.88165157,28.15776246,0,0.993288254,0,0,0,3,1,0% +2018-03-13 10:00:00,138.0101723,39.7779009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408731909,0.69425534,0.777744038,-0.777744038,1,0.397151626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89615052,153.656595,0.89615052,26.34340505,0,0.994205801,0,0,0,3,2,0% +2018-03-13 11:00:00,129.1475454,56.54614395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254049887,0.986916391,1.194704914,-1.194704914,1,0.325847117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851211819,148.3437191,0.851211819,31.6562809,0,0.991260214,0,0,0,3,3,0% +2018-03-13 12:00:00,118.5820433,69.39305383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06964709,1.211137267,1.835395247,-1.835395247,1,0.216282617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749886924,138.5805839,0.749886924,41.41941611,0,0.983323281,0,0,0,3,4,0% +2018-03-13 13:00:00,107.1554118,79.94235719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870214748,1.395257345,3.190750617,-3.190750617,1,0,#DIV/0!,0,0,0.015260316,1,0.30370994,0,0.923785774,0.962547737,0.724496596,1,0,0,0.002591084,0.312029739,0.992678778,0.717175374,0.961238037,0.922476074,0,0,0,0,0,0,-0.599071121,126.8034005,0.599071121,53.19659948,0,0.966537456,0,0,0,3,5,0% +2018-03-13 14:00:00,95.36246613,89.38750075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664389017,1.560106198,10.04928049,-10.04928049,1,0,#DIV/0!,0,0,0.54303982,1,0.099183096,0,0.951317586,0.990079549,0.724496596,1,0,0,0.073853109,0.312029739,0.81200654,0.536503136,0.961238037,0.922476074,0,0,0,0,0,0,-0.409033938,114.1441627,0.409033938,65.85583728,0,0.927760754,0,0,0,3,6,0% +2018-03-13 15:00:00,83.41584196,98.62102207,50.95593264,240.6902032,23.35779601,23.03759962,0,23.03759962,22.65347228,0.384127344,58.91069504,45.8515155,13.05917955,0.704323731,12.35485582,1.45588109,1.721261547,-7.60508301,7.60508301,0.16930052,0.16930052,0.458392081,0.211303298,6.796240424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.77537922,0.510280145,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15308852,6.532804803,21.92846774,7.043084948,0,45.8515155,-0.190500132,100.9819728,0.190500132,79.01802724,0,0.78753299,21.92846774,43.15266606,50.17102462,3,7,129% +2018-03-13 16:00:00,71.97823163,108.4483054,249.2757559,614.9378613,59.02732169,81.26570655,22.13913045,59.1265761,57.24743016,1.879145943,62.21968458,0,62.21968458,1.779891537,60.43979304,1.256257132,1.892779997,-2.407235529,2.407235529,0.94181521,0.94181521,0.236795277,1.795698884,57.7558488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02840738,1.289525359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.300977729,55.51711871,56.32938511,56.80664407,22.13913045,0,0.036002224,87.93677865,-0.036002224,92.06322135,0,0,56.32938511,56.80664407,93.50819752,3,8,66% +2018-03-13 17:00:00,61.17745968,119.7717468,445.2317119,762.5180456,77.62299871,276.5123513,197.8736277,78.63872361,75.2823789,3.356344711,110.2922031,0,110.2922031,2.34061981,107.9515833,1.067748099,2.090411332,-1.173674181,1.173674181,0.730863795,0.730863795,0.174342924,2.610517217,83.96320731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36428611,1.695771084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.891310838,80.70862856,74.25559694,82.40439964,197.8736277,0,0.259500256,74.95958885,-0.259500256,105.0404111,0.857321962,0,243.8970037,82.40439964,297.8290352,3,9,22% +2018-03-13 18:00:00,51.67067804,133.7106423,605.1511236,831.6087555,89.40353026,477.0923103,385.8227416,91.26956874,86.70768396,4.561884786,149.4217424,0,149.4217424,2.695846301,146.7258961,0.901823458,2.333690953,-0.560224887,0.560224887,0.625957788,0.625957788,0.147737527,3.107637387,99.9523008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.34672391,1.953131468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.251472708,96.0779534,85.59819661,98.03108487,385.8227416,0,0.463947426,62.35787748,-0.463947426,117.6421225,0.942229168,0,449.1316375,98.03108487,513.2910219,3,10,14% +2018-03-13 19:00:00,44.43139362,151.4167674,714.6688239,865.5061884,96.62019222,648.9416194,549.847407,99.0942124,93.70673693,5.387475472,176.1931858,0,176.1931858,2.913455286,173.2797305,0.77547411,2.642721133,-0.146312745,0.146312745,0.555174643,0.555174643,0.135195756,3.314984467,106.6212956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.07447985,2.110788437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401694961,102.4884449,92.47617481,104.5992333,549.847407,0,0.635289977,50.55850513,-0.635289977,129.4414949,0.971295783,0,626.5406427,104.5992333,694.9987489,3,11,11% +2018-03-13 20:00:00,40.76499858,172.9641077,765.3058669,878.6770613,99.80106018,771.9532915,669.3924026,102.5608889,96.79168999,5.769198891,188.566638,0,188.566638,3.009370191,185.5572678,0.711483445,3.018793166,0.193406602,-0.193406602,0.497079213,0.497079213,0.130406762,3.246117549,104.4062988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.03985407,2.180278459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351801114,100.3593057,95.39165519,102.5395842,669.3924026,0,0.761818456,40.37522768,-0.761818456,139.6247723,0.984367565,0,754.3198248,102.5395842,821.4299319,3,12,9% +2018-03-13 21:00:00,41.65662317,195.7509649,753.3110777,875.6786952,99.05510216,832.8540495,731.107047,101.7470025,96.06822536,5.678777104,185.6358691,0,185.6358691,2.986876805,182.6489923,0.72704523,3.416498852,0.519766719,-0.519766719,0.441268346,0.441268346,0.131492958,2.923080233,94.01630831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.34443235,2.163982077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.117761678,90.37205164,94.46219403,92.53603371,731.107047,0,0.834903317,33.39422779,-0.834903317,146.6057722,0.990112826,0,818.3406586,92.53603371,878.903642,3,13,7% +2018-03-13 22:00:00,46.83954777,215.9793802,679.5815564,855.5276036,94.36322016,823.4729776,726.8321839,96.64079374,91.51782091,5.122972828,167.6178155,0,167.6178155,2.845399251,164.7724163,0.817504329,3.769551302,0.883842732,-0.883842732,0.379007681,0.379007681,0.138854887,2.38338882,76.65797729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.97041051,2.061482071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726757087,73.6865636,89.6971676,75.74804567,726.8321839,0,0.849571867,31.83486617,-0.849571867,148.1651338,0.991146827,0,810.0945805,75.74804567,859.6701614,3,14,6% +2018-03-13 23:00:00,55.07999221,232.1494127,549.666213,810.8308664,85.52048621,739.6824261,652.597082,87.08534411,82.94172802,4.143616093,135.8516954,0,135.8516954,2.578758196,133.2729372,0.961327216,4.051771608,1.363443159,-1.363443159,0.296991177,0.296991177,0.155586216,1.683839862,54.15807814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72674381,1.868301535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219936248,52.05880471,80.94668006,53.92710624,652.597082,0,0.804849826,36.40424528,-0.804849826,143.5957547,0.98787661,0,725.6320728,53.92710624,760.9262853,3,15,5% +2018-03-13 00:00:00,65.16627255,244.9567715,374.0117295,720.0159089,71.6148562,579.0581607,506.7832982,72.27486245,69.45540405,2.819458401,92.84292613,0,92.84292613,2.159452145,90.68347399,1.137366017,4.275302187,2.152491356,-2.152491356,0.162055988,0.162055988,0.191477568,0.909285116,29.24573499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.76317624,1.564515728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.658773972,28.11211289,67.42195021,29.67662862,506.7832982,0,0.70385014,45.2632767,-0.70385014,134.7367233,0.978962151,0,563.5436179,29.67662862,582.9663778,3,16,3% +2018-03-13 01:00:00,76.26979811,255.60631,170.7599125,514.3764053,48.67254999,333.2990972,284.8069438,48.49215337,47.20489302,1.28726035,42.87037473,0,42.87037473,1.467656965,41.40271777,1.331159097,4.461171698,4.073210475,-4.073210475,0,0,0.28503499,0.366914241,11.80122326,0.142665829,1,0.240745117,0,0.93323185,0.971993814,0.724496596,1,45.62182057,1.063312475,0.02286067,0.312029739,0.937216699,0.661713295,0.961238037,0.922476074,0.257213567,11.34378468,45.87903414,12.40709715,244.174725,0,0.553693639,56.37921704,-0.553693639,123.620783,0.959697355,0,280.2128719,12.40709715,288.3330689,3,17,3% +2018-03-13 02:00:00,87.71387663,265.1313316,5.428409904,37.25963976,3.942130563,17.55276599,13.68858356,3.864182428,3.823260782,0.040921647,1.43505061,0,1.43505061,0.118869781,1.316180829,1.530895947,4.627414686,24.18066439,-24.18066439,0,0,0.726203554,0.029717445,0.955815195,0.782843954,1,0.041331805,0,0.957388247,0.99615021,0.724496596,1,3.692526832,0.086120752,0.097563656,0.312029739,0.760833091,0.485329687,0.961238037,0.922476074,0.020832103,0.918765922,3.713358936,1.004886674,2.972558681,0,0.36738368,68.44564775,-0.36738368,111.5543523,0.913902501,0,6.429987749,1.004886674,7.087665979,3,18,10% +2018-03-13 03:00:00,99.81803445,274.3795132,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742153354,4.788825905,-5.263273086,5.263273086,1,0.569773603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146724116,81.56286827,-0.146724116,98.43713173,0.709224392,0,0,0,0,3,19,0% +2018-03-13 04:00:00,111.4878635,284.1676139,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945830294,4.959660489,-2.101778067,2.101778067,1,0.889578907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080895406,94.64003552,0.080895406,85.35996448,0,0,0,0,0,3,20,0% +2018-03-13 05:00:00,122.6155617,295.4763819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140045265,5.157035727,-1.095785091,1.095785091,1,0.717543977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304487354,107.7273246,0.304487354,72.27267542,0,0.885789568,0,0,0,3,21,0% +2018-03-13 06:00:00,132.5957279,309.6537583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314232026,5.404477624,-0.549509505,0.549509505,1,0.624125349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508799776,120.5839164,0.508799776,59.41608356,0,0.951729516,0,0,0,3,22,0% +2018-03-13 07:00:00,140.3863271,328.3577487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450203633,5.730923839,-0.167024799,0.167024799,1,0.558716612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679895119,132.8354478,0.679895119,47.16455219,0,0.976459246,0,0,0,3,23,0% +2018-03-14 08:00:00,144.4127736,352.1564602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52047838,6.146289714,0.150690895,-0.150690895,1,0.504384029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806100068,143.7166289,0.806100068,36.28337112,0,0.987972961,0,0,0,3,0,0% +2018-03-14 09:00:00,143.3689218,17.66777709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50225973,0.308360882,0.454344003,-0.454344003,1,0.452456289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878801036,151.4980696,0.878801036,28.50193039,0,0.9931043,0,0,0,3,1,0% +2018-03-14 10:00:00,137.6352359,39.56926661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402188034,0.690613985,0.786363388,-0.786363388,1,0.39567763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.8930312,153.2566529,0.8930312,26.74334715,0,0.994010915,0,0,0,3,2,0% +2018-03-14 11:00:00,128.8057312,56.27820564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248084106,0.982239986,1.208003804,-1.208003804,1,0.323572872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847809092,147.9741678,0.847809092,32.02583223,0,0.991024459,0,0,0,3,3,0% +2018-03-14 12:00:00,118.2658665,69.11387917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064128763,1.20626475,1.859632632,-1.859632632,1,0.21213778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746205718,138.2627658,0.746205718,41.73723422,0,0.982994349,0,0,0,3,4,0% +2018-03-14 13:00:00,106.8543551,79.66640457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864960317,1.390441063,3.253974324,-3.253974324,1,0,#DIV/0!,0,0,0.025634288,1,0.29815559,0,0.924652253,0.963414216,0.724496596,1,0,0,0.004331524,0.312029739,0.987790477,0.712287073,0.961238037,0.922476074,0,0,0,0,0,0,-0.595135582,126.522298,0.595135582,53.47770196,0,0.965985531,0,0,0,3,5,0% +2018-03-14 14:00:00,95.06669541,89.11653511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659226844,1.555376956,10.65684426,-10.65684426,1,0,#DIV/0!,0,0,0.56375198,1,0.093562437,0,0.951941829,0.990703792,0.724496596,1,0,0,0.076071622,0.312029739,0.807027748,0.531524344,0.961238037,0.922476074,0,0,0,0,0,0,-0.404885772,113.8839692,0.404885772,66.11603076,0,0.92650838,0,0,0,3,6,0% +2018-03-14 15:00:00,83.12112802,98.35355438,55.26240618,255.4643954,24.66524447,24.3380877,0,24.3380877,23.92149634,0.416591361,61.72937904,47.58662073,14.14275831,0.743748126,13.39901018,1.450737362,1.716593355,-7.294761001,7.294761001,0.222368709,0.222368709,0.446329543,0.237227337,7.630046616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.99425218,0.538842985,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.171870398,7.33429103,23.16612258,7.873134015,0,47.58662073,-0.186274963,100.7354746,0.186274963,79.26452542,0,0.7815796,23.16612258,45.06586602,52.66083057,3,7,127% +2018-03-14 16:00:00,71.66690757,108.1844826,255.0623925,621.2692388,59.6478909,84.85923786,25.08718289,59.77205497,57.84928691,1.922768054,63.64143407,0,63.64143407,1.798603988,61.84283008,1.250823502,1.88817542,-2.372121368,2.372121368,0.935810335,0.935810335,0.233856079,1.828209163,58.80149111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.60693499,1.303082467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324531315,56.52222988,56.9314663,57.82531235,25.08718289,0,0.040380533,87.68573667,-0.040380533,92.31426333,0,0,56.9314663,57.82531235,94.77697673,3,8,66% +2018-03-14 17:00:00,60.84403666,119.5189518,451.1536098,765.8594636,78.03560953,281.1955472,202.1120128,79.08353446,75.68254798,3.400986479,111.7404775,0,111.7404775,2.353061548,109.387416,1.06192877,2.085999228,-1.163699655,1.163699655,0.729158051,0.729158051,0.172969046,2.639183616,84.88521724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.74894384,1.704785081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912079546,81.59489958,74.66102339,83.29968466,202.1120128,0,0.26390222,74.69826725,-0.26390222,105.3017327,0.860535887,0,248.5856636,83.29968466,303.1036412,3,9,22% +2018-03-14 18:00:00,51.30812674,133.4940184,610.9775359,833.8136762,89.73396231,482.1030575,390.4690985,91.633959,87.02815226,4.605806744,150.8443873,0,150.8443873,2.705810047,148.1385772,0.895495745,2.329910153,-0.557224482,0.557224482,0.625444688,0.625444688,0.146869495,3.134046244,100.8017004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65477023,1.960350168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270605835,96.89442862,85.92537606,98.85477878,390.4690985,0,0.468292989,62.07645231,-0.468292989,117.9235477,0.943229236,0,454.2272457,98.85477878,518.9257213,3,10,14% +2018-03-14 19:00:00,44.0404332,151.2935939,720.2970463,867.2048516,96.90735378,653.9989968,554.5838539,99.4151429,93.98523951,5.42990339,177.5664724,0,177.5664724,2.922114266,174.6443582,0.768650563,2.64057135,-0.146384184,0.146384184,0.555186859,0.555186859,0.134538041,3.339559716,107.4117201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.34218712,2.117061839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419499646,103.248231,92.76168677,105.3652928,554.5838539,0,0.639507324,50.24490832,-0.639507324,129.7550917,0.971814813,0,631.7144907,105.3652928,700.6739676,3,11,11% +2018-03-14 20:00:00,40.36580921,173.010715,770.6741556,880.1557444,100.0615497,776.9173446,674.0633525,102.8539921,97.0443248,5.809667319,189.8760965,0,189.8760965,3.017224912,186.8588716,0.704516276,3.019606619,0.191371893,-0.191371893,0.497427168,0.497427168,0.129836389,3.268980181,105.1416397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.28269626,2.185969177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368365013,101.0661433,95.65106127,103.2521125,674.0633525,0,0.765845541,40.01772613,-0.765845541,139.9822739,0.984712684,0,759.4097942,103.2521125,826.9862368,3,12,9% +2018-03-14 21:00:00,41.28637474,195.9810283,758.383474,877.1167618,99.29946316,837.6525932,735.6303603,102.0222329,96.30521797,5.717014969,186.8730987,0,186.8730987,2.99424519,183.8788535,0.720583175,3.420514215,0.515899099,-0.515899099,0.441929748,0.441929748,0.13093569,2.944268775,94.69780468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.57223866,2.169320448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133112705,91.02713186,94.70535136,93.19645231,735.6303603,0,0.838691486,32.99779938,-0.838691486,147.0022006,0.990383322,0,823.2613916,93.19645231,884.2566057,3,13,7% +2018-03-14 22:00:00,46.52269271,216.3158236,684.3429599,857.0969581,94.60263171,828.0888485,731.1799688,96.90887962,91.75001332,5.158866299,168.7794921,0,168.7794921,2.852618393,165.9268737,0.811974165,3.775423346,0.877553985,-0.877553985,0.38008312,0.38008312,0.138238628,2.402894571,77.28534929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19360268,2.066712315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740888937,74.28961743,89.93449162,76.35632975,731.1799688,0,0.853088979,31.45074966,-0.853088979,148.5492503,0.991389467,0,814.818611,76.35632975,864.7923017,3,14,6% +2018-03-14 23:00:00,54.81541384,232.5165177,554.1158601,812.7946385,85.77345779,744.1691308,656.8048999,87.36423098,83.18707157,4.177159413,136.9381918,0,136.9381918,2.586386223,134.3518056,0.956709452,4.0581788,1.352875328,-1.352875328,0.298798383,0.298798383,0.154793364,1.701523028,54.72682953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.96257737,1.873828014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.232747642,52.60551018,81.19532501,54.47933819,656.8048999,0,0.808082225,36.09101943,-0.808082225,143.9089806,0.988125108,0,730.2007379,54.47933819,765.8563752,3,15,5% +2018-03-14 00:00:00,64.94095911,245.3217555,378.1412811,722.9732108,71.92456843,583.6058849,510.9995189,72.60636602,69.75577732,2.850588705,93.85352269,0,93.85352269,2.168791112,91.68473158,1.133433556,4.281672361,2.131624797,-2.131624797,0.16562438,0.16562438,0.190205545,0.924523594,29.73585683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.05190645,1.571281777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.669814197,28.58323664,67.72172065,30.15451842,510.9995189,0,0.70680284,45.02462258,-0.70680284,134.9753774,0.979258915,0,568.1225549,30.15451842,587.8580841,3,16,3% +2018-03-14 01:00:00,76.06989041,255.9632365,174.4216435,520.2246934,49.18372261,338.460675,289.4451591,49.01551593,47.7006519,1.314864025,43.77361755,0,43.77361755,1.483070705,42.29054685,1.327670049,4.46740124,4.009909032,-4.009909032,0,0,0.281981763,0.370767676,11.92516298,0.134634545,1,0.244397135,0,0.932706818,0.971468781,0.724496596,1,46.0907588,1.074479677,0.021650696,0.312029739,0.940437119,0.664933715,0.961238037,0.922476074,0.260288545,11.46292025,46.35104734,12.53739993,250.4758418,0,0.556384891,56.19384433,-0.556384891,123.8061557,0.960134152,0,286.8414573,12.53739993,295.0469348,3,17,3% +2018-03-14 02:00:00,87.53684879,265.4849524,6.440823024,43.41615964,4.574932904,20.53586111,16.05032567,4.485535441,4.436981797,0.048553645,1.699603218,0,1.699603218,0.137951107,1.561652112,1.527806228,4.633586533,22.40299221,-22.40299221,0,0,0.710302532,0.034487777,1.109245449,0.767495045,1,0.044607284,0,0.957065654,0.995827617,0.724496596,1,4.286470511,0.099945107,0.096166457,0.312029739,0.763723706,0.488220302,0.961238037,0.922476074,0.024129987,1.066248918,4.310600498,1.166194025,3.731780241,0,0.369685523,68.30377604,-0.369685523,111.696224,0.914749911,0,7.72424614,1.166194025,8.487496806,3,18,10% +2018-03-14 03:00:00,99.62929038,274.7381272,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738859149,4.795084901,-5.353133641,5.353133641,1,0.554406543,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.149071312,81.42688841,-0.149071312,98.57311159,0.714590059,0,0,0,0,3,19,0% +2018-03-14 04:00:00,111.2868114,284.5398828,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942321273,4.966157807,-2.114200431,2.114200431,1,0.891703257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078631398,94.50990277,0.078631398,85.49009723,0,0,0,0,0,3,20,0% +2018-03-14 05:00:00,122.3877094,295.8672651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136068493,5.163857925,-1.097749858,1.097749858,1,0.717879971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30223274,107.5917561,0.30223274,72.40824385,0,0.884564581,0,0,0,3,21,0% +2018-03-14 06:00:00,132.3238648,310.0528776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309487121,5.411443569,-0.548155388,0.548155388,1,0.623893782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506480074,120.4296523,0.506480074,59.57034767,0,0.951279433,0,0,0,3,22,0% +2018-03-14 07:00:00,140.0552469,328.7107533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444425193,5.737084932,-0.163942498,0.163942498,1,0.558189508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6774403,132.6439414,0.6774403,47.35605859,0,0.976192758,0,0,0,3,23,0% +2018-03-15 08:00:00,144.0276114,352.3461175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513756033,6.149599857,0.155189581,-0.155189581,1,0.503614708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803449392,143.4607691,0.803449392,36.53923092,0,0.987768327,0,0,0,3,0,0% +2018-03-15 09:00:00,142.9690252,17.62218726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495280218,0.307565189,0.460526148,-0.460526148,1,0.45139908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87590725,151.1525308,0.87590725,28.84746917,0,0.99291633,0,0,0,3,1,0% +2018-03-15 10:00:00,137.2590313,39.36461893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395622024,0.687042209,0.795119539,-0.795119539,1,0.39418024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889863803,152.8561374,0.889863803,27.14386264,0,0.993811626,0,0,0,3,2,0% +2018-03-15 11:00:00,128.4623078,56.01347515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242090236,0.977619567,1.221549016,-1.221549016,1,0.321256505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844356448,147.60305,0.844356448,32.39694997,0,0.990783303,0,0,0,3,3,0% +2018-03-15 12:00:00,117.9480767,68.83679936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058582284,1.201428795,1.884456771,-1.884456771,1,0.207892602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742475871,137.9427511,0.742475871,42.05724891,0,0.982657744,0,0,0,3,4,0% +2018-03-15 13:00:00,106.5518654,79.39167062,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859680875,1.385646051,3.319654039,-3.319654039,1,0,#DIV/0!,0,0,0.036182281,1,0.292590546,0,0.925514038,0.964276001,0.724496596,1,0,0,0.006084029,0.312029739,0.982892175,0.707388771,0.961238037,0.922476074,0,0,0,0,0,0,-0.591155708,126.2390637,0.591155708,53.76093628,0,0.965419915,0,0,0,3,5,0% +2018-03-15 14:00:00,94.76974523,88.84612387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654044086,1.550657389,11.34207465,-11.34207465,1,0,#DIV/0!,0,0,0.584968438,1,0.087939896,0,0.952558918,0.991320881,0.724496596,1,0,0,0.078308274,0.312029739,0.802048025,0.526544621,0.961238037,0.922476074,0,0,0,0,0,0,-0.400700313,113.6219657,0.400700313,66.37803428,0,0.925218465,0,0,0,3,6,0% +2018-03-15 15:00:00,82.82519604,98.08607791,59.68289672,270.0705493,25.95191281,25.61928177,0,25.61928177,25.16936688,0.449914886,64.41073829,49.15738307,15.25335522,0.782545924,14.47080929,1.445572374,1.71192501,-7.00844334,7.00844334,0.271331913,0.271331913,0.43482998,0.264630327,8.51142097,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.19375281,0.566951858,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191723771,8.181501584,24.38547658,8.748453442,0,49.15738307,-0.182016822,100.4872561,0.182016822,79.51274393,0,0.775300115,24.38547658,46.8601782,55.05452601,3,7,126% +2018-03-15 16:00:00,71.3548854,107.9201001,260.8632363,627.4668138,60.25865641,88.50380171,28.09566886,60.40813286,58.44163559,1.966497264,65.06633263,0,65.06633263,1.817020822,63.24931181,1.245377688,1.883561076,-2.337984075,2.337984075,0.929972514,0.929972514,0.23099712,1.860598755,59.84325171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.17632307,1.3164254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.347997464,57.52360979,57.52432053,58.84003519,28.09566886,0,0.044776342,87.43364652,-0.044776342,92.56635348,0,0,57.52432053,58.84003519,96.03394676,3,8,67% +2018-03-15 17:00:00,60.51009065,119.2650437,457.0692007,769.1417146,78.44360141,285.891937,206.3681189,79.5238181,76.0782374,3.445580702,113.1870835,0,113.1870835,2.365364009,110.8217195,1.056100312,2.081567696,-1.153871453,1.153871453,0.72747733,0.72747733,0.171623031,2.667735677,85.80354964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.12929557,1.713698172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932765416,82.47763561,75.06206098,84.19133379,206.3681189,0,0.268309617,74.43629605,-0.268309617,105.5637039,0.863648126,0,253.2915001,84.19133379,308.3930442,3,9,22% +2018-03-15 18:00:00,50.94506696,133.2759669,616.7845353,835.9827072,90.06092369,487.1070857,395.1122488,91.9948369,87.34525455,4.649582358,152.2622206,0,152.2622206,2.715669139,149.5465515,0.889159156,2.326104435,-0.554238107,0.554238107,0.624933988,0.624933988,0.146016832,3.160320844,101.6467819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95958101,1.967493046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289641693,97.70675306,86.2492227,99.67424611,395.1122488,0,0.472632084,61.79471313,-0.472632084,118.2052869,0.944209467,0,459.3179486,99.67424611,524.5527492,3,10,14% +2018-03-15 19:00:00,43.64885687,151.1698115,725.8958998,868.876403,97.19122718,659.0345662,559.3019032,99.732663,94.26055308,5.472109913,178.9325391,0,178.9325391,2.930674097,176.001865,0.761816267,2.638410941,-0.146432069,0.146432069,0.555195048,0.555195048,0.133891412,3.363982914,108.1972541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.606829,2.123263407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.43719417,104.0033162,93.04402317,106.1265796,559.3019032,0,0.643707093,49.93119321,-0.643707093,130.0688068,0.97232492,0,636.8672014,106.1265796,706.3249252,3,11,11% +2018-03-15 20:00:00,39.96615551,173.0596004,776.0060891,881.6104776,100.318658,781.847366,678.7038239,103.143542,97.29368035,5.849861686,191.1766383,0,191.1766383,3.024977676,188.1516606,0.697541003,3.020459829,0.189379381,-0.189379381,0.497767908,0.497767908,0.129275607,3.29168363,105.8718606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.5223863,2.191586029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384813585,101.7680595,95.90719988,103.9596455,678.7038239,0,0.76984546,39.65998665,-0.76984546,140.3400133,0.9850519,0,764.4656911,103.9596455,832.5051999,3,12,9% +2018-03-15 21:00:00,40.91643828,196.2161285,763.4157694,878.5308067,99.54026765,842.4076603,740.1139484,102.2937119,96.53876132,5.754950538,188.1004982,0,188.1004982,3.001506334,185.0989918,0.714126566,3.424617488,0.512092203,-0.512092203,0.442580765,0.442580765,0.130388016,2.965304754,95.37439405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79672941,2.174581122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1483532,91.67749531,94.94508261,93.85207643,740.1139484,0,0.842445072,32.60077901,-0.842445072,147.399221,0.990648949,0,828.1381881,93.85207643,889.5624951,3,13,7% +2018-03-15 22:00:00,46.20697181,216.6572809,689.0640058,858.6390722,94.83824719,832.6546728,735.4816931,97.17297966,91.97852412,5.194455538,169.931269,0,169.931269,2.859723069,167.0715459,0.806463795,3.781382899,0.87135697,-0.87135697,0.381142872,0.381142872,0.137633437,2.422269702,77.90852011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.41325596,2.071859628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.754926153,74.88863293,90.16818211,76.96049256,735.4816931,0,0.856566766,31.06674224,-0.856566766,148.9332578,0.991627434,0,819.4920063,76.96049256,869.8611095,3,14,6% +2018-03-15 23:00:00,54.55228617,232.8872578,558.528585,814.7227167,86.02217752,748.6017172,660.9630013,87.63871587,83.42829148,4.210424398,138.0156079,0,138.0156079,2.59388604,135.4217219,0.952117008,4.064649435,1.342470358,-1.342470358,0.300577737,0.300577737,0.154015712,1.71911525,55.29265585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19444712,1.879261606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245493146,53.14940396,81.43994026,55.02866557,660.9630013,0,0.811273563,35.77945075,-0.811273563,144.2205492,0.988368508,0,734.7149558,55.02866557,770.7301168,3,15,5% +2018-03-15 00:00:00,64.71699397,245.6891402,382.2416615,725.8731313,72.22872861,588.0959644,515.1636993,72.93226505,70.05076595,2.881499104,94.85687893,0,94.85687893,2.177962663,92.67891626,1.129524627,4.288084434,2.11115179,-2.11115179,0.169125471,0.169125471,0.188960901,0.939738318,30.22521464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.33546074,1.577926535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680837212,29.05362598,68.01629795,30.63155252,515.1636993,0,0.709715895,44.7881955,-0.709715895,135.2118045,0.979549274,0,572.6445257,30.63155252,592.6922641,3,16,4% +2018-03-15 01:00:00,75.87100126,256.3217254,178.0718729,525.9502966,49.68432571,343.5564301,294.0278891,49.52854097,48.18615998,1.342380996,44.67375296,0,44.67375296,1.498165736,43.17558722,1.324198779,4.473658052,3.948499371,-3.948499371,0,0,0.279012766,0.374541434,12.04653999,0.126698168,1,0.248045263,0,0.932179499,0.970941462,0.724496596,1,46.54929502,1.085415976,0.020446491,0.312029739,0.943653596,0.668150192,0.961238037,0.922476074,0.263323591,11.57959246,46.81261861,12.66500843,256.7750943,0,0.559041208,56.01048321,-0.559041208,123.9895168,0.960561155,0,293.4607998,12.66500843,301.7497945,3,17,3% +2018-03-15 02:00:00,87.35960511,265.8395568,7.549079877,50.0200598,5.244792031,23.74967809,18.60612774,5.143550353,5.0866422,0.056908153,1.988511647,0,1.988511647,0.158149831,1.830361816,1.524712742,4.639775549,20.86097854,-20.86097854,0,0,0.694759112,0.039537458,1.27166055,0.752308715,1,0.047899723,0,0.956738817,0.99550078,0.724496596,1,4.915424894,0.114579014,0.094769028,0.312029739,0.766630474,0.491127069,0.961238037,0.922476074,0.027612592,1.222368491,4.943037486,1.336947505,4.608575693,0,0.371973321,68.16263135,-0.371973321,111.8373687,0.915581758,0,9.162565319,1.336947505,10.03757072,3,18,10% +2018-03-15 03:00:00,99.44073386,275.0972415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735568217,4.801352628,-5.446188881,5.446188881,1,0.53849316,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151399455,81.29196425,-0.151399455,98.70803575,0.719747821,0,0,0,0,3,19,0% +2018-03-15 04:00:00,111.0854676,284.9121016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938807161,4.972654252,-2.126765997,2.126765997,1,0.893852095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076375575,94.38026369,0.076375575,85.61973631,0,0,0,0,0,3,20,0% +2018-03-15 05:00:00,122.1591069,296.2572839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132078627,5.170665036,-1.099698103,1.099698103,1,0.718213141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299974621,107.4560788,0.299974621,72.54392121,0,0.883319233,0,0,0,3,21,0% +2018-03-15 06:00:00,132.0509435,310.4498828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304723744,5.418372617,-0.546758659,0.546758659,1,0.623654927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504145157,120.2746224,0.504145157,59.72537758,0,0.950822215,0,0,0,3,22,0% +2018-03-15 07:00:00,139.7231974,329.0605014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438629836,5.743189187,-0.160806602,0.160806602,1,0.557653238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674959348,132.4509934,0.674959348,47.54900657,0,0.975921465,0,0,0,3,23,0% +2018-03-16 08:00:00,143.6419239,352.533979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507024517,6.152878658,0.159754907,-0.159754907,1,0.502833991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800763209,143.2030453,0.800763209,36.79695466,0,0.987559569,0,0,0,3,0,0% +2018-03-16 09:00:00,142.5685608,17.57884963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.488290795,0.306808805,0.466798033,-0.466798033,1,0.450326525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872970771,150.8057193,0.872970771,29.19428074,0,0.992724314,0,0,0,3,1,0% +2018-03-16 10:00:00,136.8817048,39.16384554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389036435,0.683538052,0.804012353,-0.804012353,1,0.392659479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886649214,152.4551624,0.886649214,27.54483761,0,0.993607913,0,0,0,3,2,0% +2018-03-16 11:00:00,128.1174241,55.75191465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23607088,0.973054475,1.235342615,-1.235342615,1,0.31889766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840855112,147.2305278,0.840855112,32.76947224,0,0.990536724,0,0,0,3,3,0% +2018-03-16 12:00:00,117.628817,68.56181695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053010152,1.196629447,1.9098808,-1.9098808,1,0.203544837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738698933,137.6207023,0.738698933,42.37929771,0,0.982313426,0,0,0,3,4,0% +2018-03-16 13:00:00,106.2480801,79.11817327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854378821,1.380872622,3.387913601,-3.387913601,1,0,#DIV/0!,0,0,0.046905278,1,0.287016893,0,0.926370746,0.965132709,0.724496596,1,0,0,0.007848151,0.312029739,0.977985623,0.702482219,0.961238037,0.922476074,0,0,0,0,0,0,-0.587133339,125.953844,0.587133339,54.04615598,0,0.964840469,0,0,0,3,5,0% +2018-03-16 14:00:00,94.4717498,88.57628816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648843084,1.545947868,12.1206176,-12.1206176,1,0,#DIV/0!,0,0,0.606700872,1,0.082317608,0,0.953168597,0.991930561,0.724496596,1,0,0,0.08056255,0.312029739,0.797069504,0.5215661,0.961238037,0.922476074,0,0,0,0,0,0,-0.396479634,113.3582871,0.396479634,66.64171293,0,0.923890118,0,0,0,3,6,0% +2018-03-16 15:00:00,82.52820496,97.81861001,64.17857432,284.1657218,27.22619852,26.88903338,0,26.88903338,26.40522818,0.483805202,66.8861158,50.50430708,16.38180872,0.820970339,15.56083838,1.440388902,1.707256814,-6.743559188,6.743559188,0.31662977,0.31662977,0.424225667,0.293443802,9.438161393,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38170969,0.594790216,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.212599036,9.072319728,25.59430873,9.667109945,0,50.50430708,-0.177728358,100.2374709,0.177728358,79.76252906,0,0.768671794,25.59430873,48.48834629,57.32896161,3,7,124% +2018-03-16 16:00:00,71.04230106,107.6551645,266.622529,633.2414625,60.90137743,92.22233977,31.14745032,61.07488945,59.0649762,2.009913245,66.48212023,0,66.48212023,1.836401232,64.645719,1.239922062,1.878937077,-2.304795412,2.304795412,0.924296918,0.924296918,0.228417972,1.892511927,60.86968903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.77550177,1.330466441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371118448,58.51026038,58.14662022,59.84072683,31.14745032,0,0.04918732,87.18063653,-0.04918732,92.81936347,0,0,58.14662022,59.84072683,97.31117911,3,8,67% +2018-03-16 17:00:00,60.17575914,119.0100074,462.9157942,772.1326509,78.90252841,290.589098,210.5761171,80.01298085,76.52332606,3.489654793,114.6184961,0,114.6184961,2.379202351,112.2392938,1.050265127,2.077116473,-1.144190678,1.144190678,0.725821819,0.725821819,0.170446827,2.695948934,86.71098498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55713172,1.723724004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.953205825,83.34989698,75.51033754,85.07362098,210.5761171,0,0.27272013,74.17380523,-0.27272013,105.8261948,0.866661865,0,258.008628,85.07362098,313.6876114,3,9,22% +2018-03-16 18:00:00,50.58163542,133.0564376,622.5064097,837.9181379,90.44669316,492.067628,399.6555201,92.41210791,87.71939165,4.692716264,153.6611877,0,153.6611877,2.727301511,150.9338862,0.882816079,2.322272927,-0.551267987,0.551267987,0.624426068,0.624426068,0.145294397,3.186330201,102.4833322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.31921582,1.975920661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308485384,98.51087707,86.6277012,100.4867977,399.6555201,0,0.476962488,61.51279546,-0.476962488,118.4872045,0.945169953,0,464.3700904,100.4867977,530.1366898,3,10,14% +2018-03-16 19:00:00,43.25679227,151.0453439,731.3983912,870.3417175,97.53744974,663.9932143,563.8832886,100.1099258,94.59633575,5.513590017,180.2771218,0,180.2771218,2.941113984,177.3360078,0.754973449,2.63623857,-0.14645828,0.14645828,0.555199531,0.555199531,0.133357485,3.38819481,108.9759919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92959607,2.13082707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454735606,104.7518685,93.38433168,106.8826956,563.8832886,0,0.647887235,49.61750283,-0.647887235,130.3824972,0.972826076,0,641.9446988,106.8826956,711.8972854,3,11,11% +2018-03-16 20:00:00,39.56615253,173.11072,781.2344038,882.8696187,100.639338,786.6729607,683.1789952,103.4939655,97.6046906,5.889274931,192.4539734,0,192.4539734,3.034647359,189.419326,0.690559634,3.021352035,0.18742742,-0.18742742,0.498101713,0.498101713,0.128820924,3.31422901,106.5969975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82134118,2.198591681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401147636,102.4650887,96.22248881,104.6636803,683.1789952,0,0.773816406,39.30215325,-0.773816406,140.6978467,0.98538519,0,769.4169528,104.6636803,837.9172383,3,12,9% +2018-03-16 21:00:00,40.54692227,196.4562421,768.3412009,879.747393,99.84416545,847.0348816,744.4093056,102.625576,96.83349548,5.792080521,189.3038897,0,189.3038897,3.010669974,186.2932197,0.707677295,3.428808261,0.508344354,-0.508344354,0.443221685,0.443221685,0.129947692,2.986244628,96.04789238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.08003909,2.181220148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163524067,92.32488752,95.24356316,94.50610767,744.4093056,0,0.846162559,32.20329075,-0.846162559,147.7967093,0.990909699,0,832.8859644,94.50610767,894.7383217,3,13,7% +2018-03-16 22:00:00,45.89247562,217.0036725,693.6792274,859.9690078,95.13469335,837.0720978,739.5768194,97.49527837,92.26603134,5.229247028,171.0592218,0,171.0592218,2.868662014,168.1905598,0.800974802,3.787428575,0.865249514,-0.865249514,0.382187308,0.382187308,0.13714508,2.441625796,78.53107863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68961883,2.078335864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768949578,75.48705986,90.45856841,77.56539572,739.5768194,0,0.860004038,30.68296371,-0.860004038,149.3170363,0.991860738,0,824.0157784,77.56539572,874.7807786,3,14,6% +2018-03-16 23:00:00,54.29067105,233.2615122,562.8413597,816.4060909,86.32681821,752.8665663,664.8998843,87.96668204,83.72374613,4.242935915,139.0704761,0,139.0704761,2.603072081,136.467404,0.947550963,4.071181406,1.332224327,-1.332224327,0.302329912,0.302329912,0.153376821,1.736787823,55.86106657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47844936,1.885916862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.258296866,53.69578197,81.73674623,55.58169883,664.8998843,0,0.814422983,35.4696523,-0.814422983,144.5303477,0.988606841,0,739.0613202,55.58169883,775.4384304,3,15,5% +2018-03-16 00:00:00,64.49441413,246.0587961,386.2545208,728.4639137,72.57862283,592.3970599,519.0952006,73.3018593,70.39010957,2.911749732,95.84039373,0,95.84039373,2.188513265,93.65188047,1.125639876,4.294536145,2.091060835,-2.091060835,0.172561226,0.172561226,0.18790362,0.955170288,30.72155983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66165074,1.585570411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692017622,29.53073186,68.35366836,31.11630227,519.0952006,0,0.712588765,44.55406338,-0.712588765,135.4459366,0.979833303,0,576.9804333,31.11630227,597.3454308,3,16,4% +2018-03-16 01:00:00,75.67315202,256.68165,181.6630252,531.238316,50.2064823,348.4385681,298.3765439,50.06202423,48.69257161,1.369452619,45.56021436,0,45.56021436,1.513910683,44.04630368,1.320745658,4.479939921,3.888895581,-3.888895581,0,0,0.276371497,0.378477671,12.1731429,0.118854712,1,0.251689557,0,0.931649901,0.970411864,0.724496596,1,47.02752049,1.096823137,0.01924797,0.312029739,0.946866191,0.671362787,0.961238037,0.922476074,0.266489029,11.70128799,47.29400952,12.79811112,262.9130858,0,0.561662318,55.82916377,-0.561662318,124.1708362,0.960978539,0,299.9478426,12.79811112,308.3239504,3,17,3% +2018-03-16 02:00:00,87.18223536,266.1950212,8.742609045,56.90295171,5.945291311,27.12761121,21.29568689,5.831924322,5.766018842,0.06590548,2.29901925,0,2.29901925,0.179272469,2.119746781,1.521617056,4.645979572,19.51113921,-19.51113921,0,0,0.680036278,0.044818117,1.44150471,0.73728786,1,0.051207966,0,0.956407815,0.995169778,0.724496596,1,5.573382227,0.129882293,0.093371885,0.312029739,0.769552311,0.494048907,0.961238037,0.922476074,0.031246036,1.385629158,5.604628263,1.515511451,5.594635468,0,0.374245733,68.02229777,-0.374245733,111.9777022,0.916397942,0,10.73154069,1.515511451,11.72341263,3,18,9% +2018-03-16 03:00:00,99.25237365,275.4567311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.732280711,4.807626904,-5.542628864,5.542628864,1,0.522000951,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153708677,81.15808857,-0.153708677,98.84191143,0.72470932,0,0,0,0,3,19,0% +2018-03-16 04:00:00,110.8838452,285.2841395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935288185,4.979147539,-2.13948178,2.13948178,1,0.896026622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074127733,94.25110556,0.074127733,85.74889444,0,0,0,0,0,3,20,0% +2018-03-16 05:00:00,121.9297802,296.6462996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128076121,5.177454642,-1.101631904,1.101631904,1,0.71854384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297712801,107.3202803,0.297712801,72.67971966,0,0.882052905,0,0,0,3,21,0% +2018-03-16 06:00:00,131.7770129,310.8446395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299942753,5.425262421,-0.545320673,0.545320673,1,0.623409017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50179493,120.1188228,0.50179493,59.88117717,0,0.950357702,0,0,0,3,22,0% +2018-03-16 07:00:00,139.3902563,329.4068946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432818918,5.74923489,-0.157618233,0.157618233,1,0.557107995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672452344,132.2566212,0.672452344,47.7433788,0,0.975645289,0,0,0,3,23,0% +2018-03-17 08:00:00,143.25581,352.7199575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.500285556,6.156124596,0.164385905,-0.164385905,1,0.502042044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798041841,142.9435167,0.798041841,37.05648329,0,0.987346643,0,0,0,3,0,0% +2018-03-17 09:00:00,142.1676517,17.53761803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.481293612,0.306089178,0.473158909,-0.473158909,1,0.449238751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869992216,150.457735,0.869992216,29.542265,0,0.992528221,0,0,0,3,1,0% +2018-03-17 10:00:00,136.5034015,38.96683697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382433797,0.680099604,0.813041692,-0.813041692,1,0.391115372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883388373,152.0538417,0.883388373,27.94615826,0,0.993399753,0,0,0,3,2,0% +2018-03-17 11:00:00,127.771228,55.49348614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230028617,0.968544047,1.249386709,-1.249386709,1,0.316495979,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837306351,146.8567606,0.837306351,33.14323941,0,0.9902847,0,0,0,3,3,0% +2018-03-17 12:00:00,117.3082295,68.28893395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047414845,1.19186674,1.935918313,-1.935918313,1,0.19909216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734876487,137.2967804,0.734876487,42.70321957,0,0.981961356,0,0,0,3,4,0% +2018-03-17 13:00:00,105.9431354,78.84593031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849056532,1.376121086,3.458885599,-3.458885599,1,0,#DIV/0!,0,0,0.057804259,1,0.281436692,0,0.927222007,0.96598397,0.724496596,1,0,0,0.009623441,0.312029739,0.973072553,0.697569149,0.961238037,0.922476074,0,0,0,0,0,0,-0.583070333,125.6667846,0.583070333,54.33321543,0,0.964247052,0,0,0,3,5,0% +2018-03-17 14:00:00,94.17284219,88.30704957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643626162,1.541248768,13.01262958,-13.01262958,1,0,#DIV/0!,0,0,0.628961352,1,0.076697671,0,0.953770625,0.992532588,0.724496596,1,0,0,0.082833928,0.312029739,0.792094299,0.516590895,0.961238037,0.922476074,0,0,0,0,0,0,-0.392225817,113.0930673,0.392225817,66.90693267,0,0.922522415,0,0,0,3,6,0% +2018-03-17 15:00:00,82.23031002,97.55116913,68.73797992,297.7116063,28.48991967,28.1490194,0,28.1490194,27.63084347,0.518175928,69.15221085,51.6268156,17.52539525,0.859076195,16.66631905,1.435189655,1.702589091,-6.497886996,6.497886996,0.35864219,0.35864219,0.414471297,0.323583556,10.40755947,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.55981773,0.622397779,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234435185,10.00414204,26.79425292,10.62653982,0,51.6268156,-0.17341217,99.98626943,0.17341217,80.01373057,0,0.761669601,26.79425292,49.94911588,59.48495028,3,7,122% +2018-03-17 16:00:00,70.7292893,107.389684,272.3361573,638.6001591,61.57774404,96.01002507,34.23609222,61.77393285,59.72094786,2.052984989,67.88785053,0,67.88785053,1.85679618,66.03105435,1.234458976,1.874303569,-2.272527758,2.272527758,0.918778824,0.918778824,0.226109323,1.923941927,61.88058588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.40604668,1.345242512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393889377,59.48197289,58.79993605,60.8272154,34.23609222,0,0.053611155,86.92683375,-0.053611155,93.07316625,0,0,58.79993605,60.8272154,98.61013199,3,8,68% +2018-03-17 17:00:00,59.84117864,118.7538299,468.6901839,774.8368385,79.41319453,295.2834564,214.7316781,80.55177829,77.01859371,3.533184582,116.0339622,0,116.0339622,2.394600819,113.6393614,1.044425596,2.072645332,-1.134658161,1.134658161,0.724191663,0.724191663,0.169436436,2.723815535,87.60727067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.03320182,1.734880142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973395083,84.21144087,76.0065969,85.94632102,214.7316781,0,0.277131478,73.91092331,-0.277131478,106.0890767,0.869580221,0,262.733017,85.94632102,318.9831652,3,9,21% +2018-03-17 18:00:00,50.21796816,132.8353824,628.1403789,839.6231881,90.89175457,496.981768,404.0955477,92.88622032,88.15103282,4.735187504,155.040629,0,155.040629,2.740721755,152.2999072,0.876468888,2.318414785,-0.548316199,0.548316199,0.623921282,0.623921282,0.144699748,3.212066039,103.3110852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73412573,1.985643582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.327130911,99.30654476,87.06125664,101.2921883,404.0955477,0,0.481282024,61.23083343,-0.481282024,118.7691666,0.946110809,0,469.3804223,101.2921883,535.6741337,3,10,14% +2018-03-17 19:00:00,42.86436669,150.920115,736.8021036,871.6033663,97.94637464,668.8725276,568.325272,100.5472555,94.99293007,5.554325483,181.599645,0,181.599645,2.953444579,178.6462004,0.74812433,2.634052913,-0.146464615,0.146464615,0.555200614,0.555200614,0.132934439,3.412187502,109.7476794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.31081761,2.139760544,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.47211823,105.4936439,93.78293584,107.6334044,568.325272,0,0.652045752,49.30397906,-0.652045752,130.6960209,0.973318264,0,646.9443032,107.6334044,717.3882137,3,11,11% +2018-03-17 20:00:00,39.16591506,173.164031,786.3570417,883.9354618,101.0238969,791.392206,687.4866608,103.9055452,97.97765368,5.927891539,193.7076121,0,193.7076121,3.04624323,190.6613689,0.683574172,3.022282488,0.185514424,-0.185514424,0.498428855,0.498428855,0.128470773,3.336609116,107.3168187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.17984748,2.206992851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.417361947,103.1570081,96.59720942,105.364001,687.4866608,0,0.777756624,38.94436953,-0.777756624,141.0556305,0.985712537,0,774.2614302,105.364001,843.2200615,3,12,9% +2018-03-17 21:00:00,40.17793506,196.7013457,773.1580605,880.7687945,100.2114707,851.5328605,748.5147433,103.0181172,97.18972516,5.828392044,190.4828687,0,190.4828687,3.021745584,187.4611231,0.701237253,3.433086126,0.504653928,-0.504653928,0.443852785,0.443852785,0.129613175,3.007081889,96.71809034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.42246061,2.189244389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178620592,92.96910728,95.60108121,95.15835167,748.5147433,0,0.849842488,31.80545841,-0.849842488,148.1945416,0.991165568,0,837.5031219,95.15835167,899.7823599,3,13,7% +2018-03-17 22:00:00,45.57929423,217.3549174,698.1872355,861.0892788,95.49234128,841.3403105,743.4641853,97.87612516,92.61289486,5.263230297,172.163025,0,172.163025,2.879446419,169.2835786,0.795508755,3.793558954,0.859229518,-0.859229518,0.383216788,0.383216788,0.136771823,2.460956762,79.15282895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.02303725,2.086149129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782954797,76.08470991,90.80599204,78.17085904,743.4641853,0,0.863399654,30.29953401,-0.863399654,149.700466,0.992089391,0,828.3889227,78.17085904,879.5501865,3,14,6% +2018-03-17 23:00:00,54.0306297,233.6391588,567.0530372,817.8478972,86.68788576,756.9635326,668.6149211,88.34861148,84.07392616,4.274685319,140.1025336,0,140.1025336,2.6139596,137.488574,0.943012385,4.077772582,1.322133464,-1.322133464,0.304055551,0.304055551,0.152874388,1.754534469,56.4318597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.81505573,1.893804832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27115425,54.24445004,82.08620998,56.13825487,668.6149211,0,0.81752967,35.16173669,-0.81752967,144.8382633,0.98884014,0,743.2394823,56.13825487,779.9808473,3,15,5% +2018-03-17 00:00:00,64.27325632,246.4305931,390.1787686,730.7500131,72.97507417,596.5097995,522.7938607,73.7159388,70.77460643,2.94133237,96.80382751,0,96.80382751,2.200467735,94.60335978,1.121779944,4.301025228,2.071340952,-2.071340952,0.175933525,0.175933525,0.187029844,0.970811894,31.22464767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03124374,1.594231384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703349913,30.01431903,68.73459366,31.60855041,522.7938607,0,0.715420939,44.32229272,-0.715420939,135.6777073,0.980111076,0,581.1306467,31.60855041,601.8178108,3,16,4% +2018-03-17 01:00:00,75.4763643,257.0428839,185.1933091,536.0944391,50.7518867,353.1077923,302.4901969,50.61759545,49.22153006,1.39606539,46.43261852,0,46.43261852,1.530356639,44.90226188,1.317311064,4.486244643,3.831017161,-3.831017161,0,0,0.274048166,0.38258916,12.30538252,0.111102285,1,0.255330053,0,0.931118036,0.969879999,0.724496596,1,47.52700292,1.108738175,0.018055053,0.312029739,0.950074951,0.674571546,0.961238037,0.922476074,0.269794455,11.82840173,47.79679738,12.93713991,268.8828448,0,0.564247966,55.64991499,-0.564247966,124.350085,0.961386477,0,306.2971283,12.93713991,314.7642276,3,17,3% +2018-03-17 02:00:00,87.00482238,266.5512222,10.01645306,63.9956901,6.672556344,30.6413394,24.09447699,6.546862406,6.471354152,0.075508254,2.629807203,0,2.629807203,0.201202193,2.42860501,1.518520616,4.652196453,18.32002073,-18.32002073,0,0,0.666159598,0.050300548,1.617838538,0.722434588,1,0.054530975,0,0.956072721,0.994834684,0.724496596,1,6.256710341,0.145770304,0.091975486,0.312029739,0.772488237,0.496984833,0.961238037,0.922476074,0.035010088,1.55512794,6.291720429,1.700898244,6.687793428,0,0.376501557,67.8828513,-0.376501557,112.1171487,0.917198425,0,12.42575402,1.700898244,13.53895791,3,18,9% +2018-03-17 03:00:00,99.06422006,275.8164718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728996811,4.813905565,-5.642657938,5.642657938,1,0.504894972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155999097,81.02525483,-0.155999097,98.97474517,0.729485324,0,0,0,0,3,19,0% +2018-03-17 04:00:00,110.6819594,285.6558673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931764615,4.985635412,-2.152354905,2.152354905,1,0.898228056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071887688,94.12241702,0.071887688,85.87758298,0,0,0,0,0,3,20,0% +2018-03-17 05:00:00,121.6997581,297.0341769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124061477,5.184224378,-1.103553323,1.103553323,1,0.718872423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295447125,107.1843509,0.295447125,72.81564914,0,0.88076498,0,0,0,3,21,0% +2018-03-17 06:00:00,131.5021251,311.2370181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295145056,5.43211072,-0.543842774,0.543842774,1,0.623156281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499429342,119.9622527,0.499429342,60.03774727,0,0.949885738,0,0,0,3,22,0% +2018-03-17 07:00:00,139.0565036,329.7498414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426993834,5.75522044,-0.154378503,0.154378503,1,0.556553968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66991942,132.0608459,0.66991942,47.9391541,0,0.975364158,0,0,0,3,23,0% +2018-03-18 08:00:00,142.8693691,352.9039728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.493540891,6.159336268,0.169081604,-0.169081604,1,0.501239032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795285669,142.6822461,0.795285669,37.31775391,0,0.98712951,0,0,0,3,0,0% +2018-03-18 09:00:00,141.7664203,17.49835339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474290804,0.30540388,0.479608025,-0.479608025,1,0.448135887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866972257,150.10868,0.866972257,29.89132001,0,0.992328028,0,0,0,3,1,0% +2018-03-18 10:00:00,136.124265,38.77348649,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375816617,0.676725002,0.82220741,-0.82220741,1,0.389547941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880082269,151.6522891,0.880082269,28.3477109,0,0.993187129,0,0,0,3,2,0% +2018-03-18 11:00:00,127.4238659,55.23815148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223966006,0.964087616,1.263683432,-1.263683432,1,0.314051095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833711479,146.481906,0.833711479,33.51809397,0,0.990027214,0,0,0,3,3,0% +2018-03-18 12:00:00,116.9864552,68.01815179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041798824,1.1871407,1.962583364,-1.962583364,1,0.194532168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731010147,136.9711453,0.731010147,43.02885475,0,0.981601497,0,0,0,3,4,0% +2018-03-18 13:00:00,105.6371668,78.57495937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843716372,1.371391751,3.5327121,-3.5327121,1,0,#DIV/0!,0,0,0.068880201,1,0.275851976,0,0.928067466,0.966829429,0.724496596,1,0,0,0.011409452,0.312029739,0.968154678,0.692651274,0.961238037,0.922476074,0,0,0,0,0,0,-0.578968573,125.3780302,0.578968573,54.6219698,0,0.963639527,0,0,0,3,5,0% +2018-03-18 14:00:00,93.87315444,88.03843009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638395624,1.536560473,14.04452823,-14.04452823,1,0,#DIV/0!,0,0,0.651762337,1,0.071082146,0,0.954364773,0.993126736,0.724496596,1,0,0,0.085121881,0.312029739,0.787124507,0.511621103,0.961238037,0.922476074,0,0,0,0,0,0,-0.387940949,112.8264398,0.387940949,67.17356022,0,0.921114405,0,0,0,3,6,0% +2018-03-18 15:00:00,81.93166314,97.28377466,73.38242654,310.9963347,29.73281663,29.38945023,0,29.38945023,28.8362625,0.553187728,71.26937645,52.58040342,18.68897303,0.896554124,17.79241891,1.429977283,1.697922177,-6.269497781,6.269497781,0.397699046,0.397699046,0.405176253,0.355001083,11.41805512,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.71851236,0.649550411,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.257197076,10.97546889,27.97570944,11.6250193,0,52.58040342,-0.169070814,99.73379862,0.169070814,80.26620138,0,0.754265929,27.97570944,51.28462616,61.54047156,3,7,120% +2018-03-18 16:00:00,70.41598377,107.1236683,278.053251,643.8363754,62.24654009,99.83750249,37.37184239,62.4656601,60.36957724,2.096082856,69.29419274,0,69.29419274,1.876962849,67.41722989,1.228990763,1.869660719,-2.24115416,2.24115416,0.913413623,0.913413623,0.223865536,1.955220489,62.88661196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.02953392,1.359853195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416550589,60.44900342,59.4460845,61.80885662,37.37184239,0,0.058045559,86.67236403,-0.058045559,93.32763597,0,0,59.4460845,61.80885662,99.89874498,3,8,68% +2018-03-18 17:00:00,59.50648473,118.4965001,474.449405,777.4882145,79.92013191,299.9819737,218.8951286,81.08684508,77.51024506,3.576600023,117.4456381,0,117.4456381,2.409886851,115.0357512,1.038584085,2.068154079,-1.125274496,1.125274496,0.722586962,0.722586962,0.168448166,2.751538053,88.49892213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50579579,1.74595482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993479953,85.06853017,76.49927575,86.81448499,218.8951286,0,0.281541411,73.64777753,-0.281541411,106.3522225,0.872406232,0,267.4647501,86.81448499,324.2830942,3,9,21% +2018-03-18 18:00:00,49.85420063,132.6127544,633.7470669,841.2966283,91.33379993,501.8812169,408.5240149,93.35720197,88.57974888,4.777453086,156.4133647,0,156.4133647,2.754051054,153.6593136,0.870119947,2.314529195,-0.545384688,0.545384688,0.623419964,0.623419964,0.144117117,3.237639793,104.1336251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14622392,1.995300613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345659009,100.0972013,87.49188293,102.0925019,408.5240149,0,0.485588556,60.94895981,-0.485588556,119.0510402,0.94703217,0,474.3772671,102.0925019,541.1947678,3,10,14% +2018-03-18 19:00:00,42.47170713,150.7940493,742.1695485,872.8413244,98.35231217,673.7230409,572.7416263,100.9814146,95.38662708,5.594787551,182.9132847,0,182.9132847,2.965685093,179.9475996,0.741271128,2.631852652,-0.146452793,0.146452793,0.555198592,0.555198592,0.132520005,3.436003398,110.5136805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68925415,2.148628755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.489372765,106.2299532,94.17862692,108.378582,572.7416263,0,0.656180694,48.99076281,-0.656180694,131.0092372,0.973801477,0,651.9152683,108.378582,722.8468826,3,11,11% +2018-03-18 20:00:00,38.76555772,173.219491,791.4374505,884.9804783,101.4053436,796.0715355,691.7577473,104.3137881,98.34759834,5.966189806,194.9509181,0,194.9509181,3.057745255,191.8931728,0.676586619,3.023250447,0.183638865,-0.183638865,0.498749594,0.498749594,0.128128058,3.358808757,108.0308355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.53545235,2.215326028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433445511,103.8433482,96.96889787,106.0586742,691.7577473,0,0.781664414,38.58677877,-0.781664414,141.4132212,0.986033931,0,779.0655086,106.0586742,848.4787897,3,12,9% +2018-03-18 21:00:00,39.80958482,196.9514155,777.9299886,881.7693826,100.5755313,855.9827454,752.5755727,103.4071728,97.54280792,5.864364853,191.6508556,0,191.6508556,3.032723352,188.6181323,0.694808329,3.437450667,0.501019357,-0.501019357,0.444474334,0.444474334,0.129286096,3.027748575,97.38280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.7618572,2.197197745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193593536,93.6080534,95.95545073,95.80525115,752.5755727,0,0.853483448,31.4074057,-0.853483448,148.5925943,0.991416556,0,842.0713329,95.80525115,904.7739537,3,13,7% +2018-03-18 22:00:00,45.26751707,217.7109319,702.651042,862.1860206,95.84661908,845.5552773,747.301907,98.25337023,92.95648987,5.296880355,173.2560093,0,173.2560093,2.890129201,170.3658801,0.790067217,3.799772579,0.853294957,-0.853294957,0.384231658,0.384231658,0.13640714,2.480141637,79.76988047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.35331384,2.093888768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796854173,76.6778433,91.15016801,78.77173207,747.301907,0,0.866752521,29.91657326,-0.866752521,150.0834267,0.992313407,0,832.7078694,78.77173207,884.2623926,3,14,6% +2018-03-18 23:00:00,53.77222252,234.0200737,571.2247707,819.258918,87.04535582,761.004759,672.2780082,88.72675078,84.42061718,4.306133608,141.1247977,0,141.1247977,2.624738641,138.5000591,0.938502329,4.084420801,1.312194137,-1.312194137,0.305755276,0.305755276,0.152383721,1.772175809,56.99926583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.14830832,1.901614211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283935341,54.78986239,82.43224367,56.6914766,672.2780082,0,0.820592847,34.85581586,-0.820592847,145.1441841,0.989068443,0,747.3612064,56.6914766,784.464644,3,15,5% +2018-03-18 00:00:00,64.05355677,246.8044008,394.0712509,732.9863457,73.36713777,600.5650697,526.4395463,74.12552341,71.15484787,2.970675545,97.75942707,0,97.75942707,2.2122899,95.54713717,1.117945463,4.307549402,2.051981642,-2.051981642,0.179244162,0.179244162,0.186177341,0.986413711,31.72645572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39674627,1.602796501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714653376,30.49667601,69.11139965,32.09947251,526.4395463,0,0.718211941,44.09294836,-0.718211941,135.9070516,0.980382667,0,585.2236059,32.09947251,606.2320687,3,16,4% +2018-03-18 01:00:00,75.28065973,257.405301,188.7082958,540.8398668,51.28930507,357.7122175,306.5469114,51.16530613,49.74274328,1.422562844,47.30107289,0,47.30107289,1.546561785,45.7545111,1.313895375,4.492570014,3.774788562,-3.774788562,0,0,0.27179147,0.386640446,12.43568582,0.103439078,1,0.258966774,0,0.930583916,0.969345879,0.724496596,1,48.0184796,1.120478749,0.01686767,0.312029739,0.953279908,0.677776504,0.961238037,0.922476074,0.273074219,11.95365423,48.29155382,13.07413297,274.8379815,0,0.56679792,55.47276457,-0.56679792,124.5272354,0.961785138,0,312.6266399,13.07413297,321.1833984,3,17,3% +2018-03-18 02:00:00,86.82744253,266.9080375,11.3758336,71.3858868,7.425104265,34.3236364,27.03667058,7.286965815,7.201209976,0.085755839,2.98209685,0,2.98209685,0.223894289,2.758202561,1.515424753,4.658424054,17.26147024,-17.26147024,0,0,0.652708586,0.055973572,1.800302494,0.707750307,1,0.057867812,0,0.955733597,0.994495561,0.724496596,1,6.96401486,0.16221065,0.090580238,0.312029739,0.77543736,0.499933956,0.961238037,0.922476074,0.038897243,1.730519235,7.002912103,1.892729885,7.901458665,0,0.378739717,67.74436033,-0.378739717,112.2556397,0.917983215,0,14.25631853,1.892729885,15.49507238,3,18,9% +2018-03-18 03:00:00,98.87628478,276.176341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725716721,4.820186467,-5.746496243,5.746496243,1,0.487137576,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158270829,80.89345681,-0.158270829,99.10654319,0.734085815,0,0,0,0,3,19,0% +2018-03-18 04:00:00,110.4798278,286.0271573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928236752,4.992115645,-2.165392641,2.165392641,1,0.90045764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.069655281,93.99418792,0.069655281,86.00581208,0,0,0,0,0,3,20,0% +2018-03-18 05:00:00,121.4690716,297.4207829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120035239,5.190971926,-1.105464421,1.105464421,1,0.719199239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.293177465,107.0482823,0.293177465,72.95171767,0,0.879454832,0,0,0,3,21,0% +2018-03-18 06:00:00,131.2263346,311.6268937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290331604,5.438915333,-0.542326299,0.542326299,1,0.622896949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497048384,119.804914,0.497048384,60.19508596,0,0.949406171,0,0,0,3,22,0% +2018-03-18 07:00:00,138.7220211,330.0892559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421156013,5.761144341,-0.151088525,0.151088525,1,0.555991349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667360759,131.8636922,0.667360759,48.13630776,0,0.975078004,0,0,0,3,23,0% +2018-03-19 08:00:00,142.4827018,353.0859505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486792274,6.162512378,0.173841028,-0.173841028,1,0.500425123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792495124,142.4192999,0.792495124,37.5807001,0,0.986908129,0,0,0,3,0,0% +2018-03-19 09:00:00,141.3649887,17.46092295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4672845,0.304750596,0.486144613,-0.486144613,1,0.447018065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86391162,149.7586578,0.86391162,30.24134216,0,0.992123709,0,0,0,3,1,0% +2018-03-19 10:00:00,135.7444378,38.58368973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369187382,0.673412423,0.83150934,-0.83150934,1,0.387957218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876731945,151.2506182,0.876731945,28.74938184,0,0.992970026,0,0,0,3,2,0% +2018-03-19 11:00:00,127.0754837,54.98587216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217885589,0.959684511,1.27823493,-1.27823493,1,0.311562643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830071853,146.1061197,0.830071853,33.89388026,0,0.989764251,0,0,0,3,3,0% +2018-03-19 12:00:00,116.6636344,67.74947119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036164538,1.182451339,1.989890442,-1.989890442,1,0.189862382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727101568,136.6439555,0.727101568,43.35604453,0,0.981233816,0,0,0,3,4,0% +2018-03-19 13:00:00,105.3303089,78.30527778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838360692,1.366684919,3.609545382,-3.609545382,1,0,#DIV/0!,0,0,0.080134053,1,0.270264763,0,0.928906778,0.967668741,0.724496596,1,0,0,0.013205729,0.312029739,0.963233703,0.687730299,0.961238037,0.922476074,0,0,0,0,0,0,-0.574829963,125.0877253,0.574829963,54.91227471,0,0.963017756,0,0,0,3,5,0% +2018-03-19 14:00:00,93.57281793,87.77045196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.633153763,1.531883373,15.25162583,-15.25162583,1,0,#DIV/0!,0,0,0.675116659,1,0.065473065,0,0.954950831,0.993712794,0.724496596,1,0,0,0.087425874,0.312029739,0.782162214,0.50665881,0.961238037,0.922476074,0,0,0,0,0,0,-0.383627131,112.5585373,0.383627131,67.44146269,0,0.91966511,0,0,0,3,6,0% +2018-03-19 15:00:00,81.63241352,97.01644682,78.10440436,324.0053106,30.95406567,30.60947037,0,30.60947037,30.02068638,0.588783991,73.23657877,53.36588239,19.87069639,0.933379288,18.9373171,1.424754392,1.693256426,-6.056709253,6.056709253,0.434088027,0.434088027,0.396316519,0.38763671,12.46772908,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.85702564,0.676230117,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.280841477,11.98445543,29.13786712,12.66068554,0,53.36588239,-0.164706814,99.48020312,0.164706814,80.51979688,0,0.746430288,29.13786712,52.49459652,63.49453065,3,7,118% +2018-03-19 16:00:00,70.10251738,106.8571285,283.7707622,648.9515582,62.90773309,103.7018681,40.55185137,63.1500167,61.01083283,2.139183871,70.70040695,0,70.70040695,1.896900257,68.80350669,1.223519742,1.865008722,-2.210648409,2.210648409,0.908196832,0.908196832,0.221685041,1.986335379,63.88737376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64593318,1.374297779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43909322,61.41097373,60.0850264,62.78527151,40.55185137,0,0.062488256,86.41735248,-0.062488256,93.58264752,0,0,60.0850264,62.78527151,101.1767309,3,8,68% +2018-03-19 17:00:00,59.17181244,118.2380085,480.1908037,780.0869926,80.42322526,304.6821348,223.0640854,81.6180494,77.99816829,3.619881112,118.8528768,0,118.8528768,2.425056972,116.4278198,1.032742951,2.06364255,-1.116040081,1.116040081,0.721007784,0.721007784,0.167481811,2.779105463,89.38558479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.97480616,1.756945521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013452447,85.92082405,76.98825861,87.67776957,223.0640854,0,0.285947705,73.3844942,-0.285947705,106.6155058,0.875142853,0,272.2011986,87.67776957,329.5845453,3,9,21% +2018-03-19 18:00:00,49.49046807,132.3885084,639.3240844,842.9384693,91.77271329,506.7636059,412.9386836,93.82492238,89.00542738,4.819495,157.778812,0,157.778812,2.767285911,155.0115261,0.863771616,2.310615363,-0.542475289,0.542475289,0.622922428,0.622922428,0.143546467,3.263041888,104.9506438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55540228,2.004889222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.36406274,100.8825508,87.91946502,102.88744,412.9386836,0,0.489879984,60.66730645,-0.489879984,119.3326936,0.947934185,0,479.3581593,102.88744,546.695931,3,10,14% +2018-03-19 19:00:00,42.07894058,150.6670711,747.4986332,874.0555916,98.75516006,678.542593,577.1303049,101.4122881,95.77732762,5.634960442,184.2175303,0,184.2175303,2.977832444,181.2396979,0.734416059,2.629636465,-0.146424469,0.146424469,0.555193749,0.555193749,0.132114168,3.459634432,111.2737358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.06481038,2.157429469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506493369,106.9605473,94.57130374,109.1179768,577.1303049,0,0.660290158,48.67799433,-0.660290158,131.3220057,0.974275715,0,656.8553443,109.1179768,728.2708778,3,11,11% +2018-03-19 20:00:00,38.36519502,173.2770571,796.4738635,886.0047018,101.7835934,800.7090711,695.9904722,104.7185989,98.71444251,6.004156415,196.1834603,0,196.1834603,3.069150882,193.1143095,0.669598971,3.024255165,0.181799256,-0.181799256,0.499064186,0.499064186,0.12779276,3.380821331,108.7388355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.88807693,2.223589366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449393546,104.5239048,97.33747047,106.7474941,695.9904722,0,0.785538125,38.22952433,-0.785538125,141.7704757,0.986349366,0,783.8272312,106.7474941,853.6913312,3,12,9% +2018-03-19 21:00:00,39.44197945,197.2064265,782.6555544,882.7492491,100.9362818,860.382999,756.5903303,103.7926686,97.89268047,5.899988164,192.8075017,0,192.8075017,3.043601311,189.7639004,0.688392405,3.441901448,0.497439111,-0.497439111,0.445086592,0.445086592,0.128966416,3.048239416,98.04185788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.098168,2.205078789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208439081,94.241563,96.30660708,96.44664179,756.5903303,0,0.857084083,31.00925641,-0.857084083,148.9907436,0.991662666,0,846.5889915,96.44664179,909.7113896,3,13,7% +2018-03-19 22:00:00,44.95723271,218.0716294,707.0695382,863.2594241,96.19748235,849.7158357,751.0888735,98.62696217,93.29677332,5.330188846,174.3379047,0,174.3379047,2.900709024,171.4371957,0.784651733,3.806067937,0.847443861,-0.847443861,0.385232254,0.385232254,0.13605095,2.499176251,80.3820991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.68040723,2.101553813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810644687,77.26633114,91.49105192,79.36788495,751.0888735,0,0.870061597,29.5342017,-0.870061597,150.4657983,0.992532804,0,836.9713979,79.36788495,888.9160912,3,14,6% +2018-03-19 23:00:00,53.51550877,234.4041306,575.3557316,820.6395451,87.39920904,764.9894777,675.8884028,89.10107495,84.76380042,4.337274536,142.137067,0,142.137067,2.635408621,139.5016584,0.934021829,4.091123859,1.302402835,-1.302402835,0.307429687,0.307429687,0.151904647,1.789708398,57.56317416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.47818911,1.909344575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.296637642,55.33191253,82.77482675,57.2412571,675.8884028,0,0.823611788,34.55200077,-0.823611788,145.4479992,0.989291787,0,751.4256724,57.2412571,788.8889304,3,15,5% +2018-03-19 00:00:00,63.83535089,247.1800873,397.9313326,735.1738299,73.75483705,604.5625343,530.0319032,74.53063106,71.53085659,2.999774472,98.70703914,0,98.70703914,2.223980464,96.48305867,1.114137052,4.31410637,2.032972836,-2.032972836,0.182494859,0.182494859,0.185345639,1.001972286,32.22687296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75818016,1.611266275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.72592551,30.9776961,69.48410567,32.58896237,530.0319032,0,0.720961331,43.86609313,-0.720961331,136.1339069,0.980648153,0,589.2589125,32.58896237,610.5877366,3,16,4% +2018-03-19 01:00:00,75.08605962,257.7687744,192.2072144,545.4771851,51.81889125,362.2519925,310.5466928,51.70529966,50.25636049,1.448939171,48.16539519,0,48.16539519,1.562530763,46.60286443,1.310498963,4.498913822,3.720138737,-3.720138737,0,0,0.269599096,0.390632691,12.56409012,0.095863351,1,0.262599728,0,0.930047555,0.968809518,0.724496596,1,48.5020952,1.132048218,0.015685751,0.312029739,0.956481088,0.680977684,0.961238037,0.922476074,0.27632902,12.07708132,48.77842422,13.20912954,280.7766463,0,0.569311974,55.29773849,-0.569311974,124.7022615,0.962174691,0,318.9346071,13.20912954,327.5797182,3,17,3% +2018-03-19 02:00:00,86.650166,267.2653444,12.81759888,79.03733206,8.199263395,38.15865341,30.11000359,8.048649826,7.952025351,0.096624475,3.355013288,0,3.355013288,0.247238043,3.107775245,1.512330694,4.664660236,16.31474993,-16.31474993,0,0,0.639687938,0.061809511,1.988006338,0.693235806,1,0.06121764,0,0.955390503,0.994152466,0.724496596,1,7.691845302,0.179123121,0.089186497,0.312029739,0.778398875,0.502895471,0.961238037,0.922476074,0.042888649,1.910947309,7.734733951,2.09007043,9.236670967,0,0.380959261,67.60688587,-0.380959261,112.3931141,0.91875237,0,16.2209473,2.09007043,17.58885659,3,18,8% +2018-03-19 03:00:00,98.68858044,276.5362161,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722440663,4.826467472,-5.854381534,5.854381534,1,0.468688105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160523989,80.76268826,-0.160523989,99.23731174,0.738520076,0,0,0,0,3,19,0% +2018-03-19 04:00:00,110.277469,286.3978832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924704925,4.998586033,-2.178602459,2.178602459,1,0.902716652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067430359,93.86640875,0.067430359,86.13359125,0,0,0,0,0,3,20,0% +2018-03-19 05:00:00,121.2377542,297.8059871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115997988,5.197695007,-1.107367282,1.107367282,1,0.719524648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290903721,106.9120682,0.290903721,73.0879318,0,0.878121827,0,0,0,3,21,0% +2018-03-19 06:00:00,130.9496983,312.0141451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28550339,5.445674145,-0.540772601,0.540772601,1,0.622631251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494652084,119.646811,0.494652084,60.35318903,0,0.948918853,0,0,0,3,22,0% +2018-03-19 07:00:00,138.3868923,330.425057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415306913,5.767005177,-0.14774943,0.14774943,1,0.55542033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664776586,131.665188,0.664776586,48.33481201,0,0.974786761,0,0,0,3,23,0% +2018-03-20 08:00:00,142.0959094,353.2658207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480041473,6.165651706,0.178663176,-0.178663176,1,0.499600487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78967069,142.1547476,0.78967069,37.84525238,0,0.986682467,0,0,0,3,0,0% +2018-03-20 09:00:00,140.9634786,17.42519904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460276826,0.304127096,0.492767868,-0.492767868,1,0.445885421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860811083,149.4077736,0.860811083,30.59222642,0,0.991915246,0,0,0,3,1,0% +2018-03-20 10:00:00,135.3640619,38.39734404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362548568,0.670160078,0.840947269,-0.840947269,1,0.386343237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873338495,150.8489428,0.873338495,29.15105719,0,0.99274843,0,0,0,3,2,0% +2018-03-20 11:00:00,126.7262267,54.73660893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211789904,0.955334047,1.293043319,-1.293043319,1,0.309030259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82638888,145.7295561,0.82638888,34.27044389,0,0.989495798,0,0,0,3,3,0% +2018-03-20 12:00:00,116.3399075,67.48289185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030514437,1.177798652,2.017854427,-2.017854427,1,0.185080259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723152446,136.3153693,0.723152446,43.68463069,0,0.980858285,0,0,0,3,4,0% +2018-03-20 13:00:00,105.0226965,78.03690227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832991844,1.362000883,3.689548678,-3.689548678,1,0,#DIV/0!,0,0,0.091566709,1,0.26467706,0,0.92973961,0.968501574,0.724496596,1,0,0,0.015011811,0.312029739,0.95831133,0.682807926,0.961238037,0.922476074,0,0,0,0,0,0,-0.570656445,124.7960144,0.570656445,55.20398563,0,0.962381608,0,0,0,3,5,0% +2018-03-20 14:00:00,93.27196401,87.50313738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627902872,1.527217853,16.68221282,-16.68221282,1,0,#DIV/0!,0,0,0.699037466,1,0.059872442,0,0.955528599,0.994290562,0.724496596,1,0,0,0.089745354,0.312029739,0.777209507,0.501706103,0.961238037,0.922476074,0,0,0,0,0,0,-0.379286487,112.289493,0.379286487,67.71050696,0,0.918173527,0,0,0,3,6,0% +2018-03-20 15:00:00,81.33270847,96.74920634,82.89668714,336.7272572,32.15307016,31.80844671,0,31.80844671,31.18353647,0.624910243,75.05380978,53.98501454,21.06879524,0.969533698,20.09926154,1.419523552,1.688592199,-5.858048413,5.858048413,0.468061032,0.468061032,0.387869181,0.421429322,13.55461564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.97480137,0.702423864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.305324109,13.02921213,30.28012548,13.731636,0,53.98501454,-0.160322675,99.22562591,0.160322675,80.77437409,0,0.738128956,30.28012548,53.5795384,65.34686178,3,7,116% +2018-03-20 16:00:00,69.7890229,106.5900767,289.4856712,653.9472255,63.56129476,107.6002015,43.77324905,63.82695247,61.6446872,2.182265269,72.10576008,0,72.10576008,1.916607553,70.18915253,1.218048231,1.860347788,-2.180985126,2.180985126,0.903124112,0.903124112,0.21956629,2.017274648,64.88248702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.25521811,1.388575648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.461508615,62.36751445,60.71672673,63.75609009,43.77324905,0,0.066936975,86.16192407,-0.066936975,93.83807593,0,0,60.71672673,63.75609009,102.4438126,3,8,69% +2018-03-20 17:00:00,58.8372968,117.9783471,485.9117586,782.6334249,80.92236305,309.3814334,227.2361701,82.14526331,78.48225523,3.663008086,120.2550394,0,120.2550394,2.440107818,117.8149316,1.026904552,2.059110603,-1.106955171,1.106955171,0.719454173,0.719454173,0.166537157,2.806506969,90.26691142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44012894,1.767849807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033304745,86.76798873,77.47343369,88.53583854,227.2361701,0,0.290348154,73.12119937,-0.290348154,106.8788006,0.877792947,0,276.939741,88.53583854,334.8846766,3,9,21% +2018-03-20 18:00:00,49.12690596,132.1625994,644.8690844,844.5487462,92.2083821,511.6265944,417.3373397,94.28925472,89.42795916,4.861295552,159.1363985,0,159.1363985,2.780422933,156.3559756,0.85742626,2.306672508,-0.53958975,0.53958975,0.622428971,0.622428971,0.142987754,3.288262977,105.7618407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96155591,2.01440695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.382335333,101.6623041,88.34389124,103.676711,417.3373397,0,0.494154235,60.3860049,-0.494154235,119.6139951,0.948817016,0,484.3206606,103.676711,552.1749945,3,10,14% +2018-03-20 19:00:00,41.6861944,150.5391035,752.7873134,875.2461845,99.15481939,683.3290642,581.4892997,101.8397645,96.16493574,5.674828747,185.5118832,0,185.5118832,2.989883647,182.5219996,0.727561345,2.627403008,-0.146381255,0.146381255,0.555186359,0.555186359,0.131716911,3.483072765,112.0275931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.43739405,2.166160524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523474362,107.6851837,94.96086841,109.8513442,581.4892997,0,0.664372276,48.36581387,-0.664372276,131.6341861,0.97474099,0,661.7623238,109.8513442,733.6578316,3,11,11% +2018-03-20 20:00:00,37.96494155,173.3366848,801.464566,887.0081787,102.1585649,805.3029862,700.1831005,105.1198857,99.07810727,6.041778438,197.4048207,0,197.4048207,3.080457658,194.3243631,0.66261323,3.025295865,0.179994141,-0.179994141,0.499372879,0.499372879,0.127464855,3.402640453,109.4406135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.23764533,2.231781087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465201425,105.1984804,97.70284676,107.4302615,700.1831005,0,0.789376149,37.87275015,-0.789376149,142.1272498,0.986658841,0,788.5446934,107.4302615,858.8556509,3,12,9% +2018-03-20 21:00:00,39.07522648,197.4663508,787.3333792,883.7084966,101.2936601,864.73214,760.5576059,104.1745341,98.23928247,5.935251584,193.9524708,0,193.9524708,3.054377585,190.8980932,0.681991358,3.446437983,0.493911691,-0.493911691,0.445689816,0.445689816,0.128654091,3.068549336,98.69509473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.43133503,2.212886163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223153549,94.8694791,96.65448857,97.08236527,760.5576059,0,0.860643084,30.61113481,-0.860643084,149.3888652,0.991903908,0,851.05455,97.08236527,914.5930164,3,13,7% +2018-03-20 22:00:00,44.64852852,218.4369188,711.4416639,864.3096883,96.54488948,853.8208808,754.8240282,98.99685263,93.63370485,5.363147777,175.4084528,0,175.4084528,2.911184631,172.4972682,0.779263829,3.81244344,0.8416743,-0.8416743,0.386218907,0.386218907,0.135703171,2.518056595,80.98935586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.00427863,2.109143355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824323431,77.85004943,91.82860206,79.95919279,754.8240282,0,0.873325891,29.15253972,-0.873325891,150.8474603,0.992747604,0,841.1783473,79.95919279,893.5100398,3,14,6% +2018-03-20 23:00:00,53.2605461,234.7912001,579.4451334,821.9901737,87.74942829,768.916975,679.4454135,89.47156144,85.10345926,4.368102175,143.1391502,0,143.1391502,2.645969024,140.4931812,0.929571891,4.097879496,1.292756142,-1.292756142,0.309079369,0.309079369,0.151436992,1.807128911,58.12347776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.80468211,1.916995551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309258745,55.87049765,83.11394086,57.7874932,679.4454135,0,0.82658581,34.25040102,-0.82658581,145.749599,0.989510212,0,755.4321164,57.7874932,793.2528749,3,15,5% +2018-03-20 00:00:00,63.61867268,247.5575193,401.7584123,737.313374,74.13819637,608.5019014,533.5706206,74.93128082,71.90265621,3.028624616,99.64651863,0,99.64651863,2.235540161,97.41097847,1.110355304,4.320693799,2.014304828,-2.014304828,0.185687277,0.185687277,0.184534273,1.017484256,32.72579125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1155681,1.619641237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.73716388,31.45727534,69.85273198,33.07691658,533.5706206,0,0.723668713,43.64178716,-0.723668713,136.3582128,0.980907611,0,593.2362149,33.07691658,614.8843952,3,16,4% +2018-03-20 01:00:00,74.89258436,258.1331767,195.6893308,550.0089356,52.34079611,366.7273038,314.4895869,52.23771682,50.76252799,1.475188835,49.02541198,0,49.02541198,1.57826812,47.44714386,1.307122182,4.505273842,3.667000693,-3.667000693,0,0,0.267468829,0.39456703,12.690632,0.088373411,1,0.266228926,0,0.929508968,0.968270931,0.724496596,1,48.97799181,1.14344988,0.014509232,0.312029739,0.959678515,0.684175111,0.961238037,0.922476074,0.279559534,12.19871819,49.25755135,13.34216807,286.6970693,0,0.571789959,55.12486038,-0.571789959,124.8751396,0.962555303,0,325.2193357,13.34216807,333.9515178,3,17,3% +2018-03-20 02:00:00,86.47305695,267.6230202,14.3383484,86.91452546,8.991549262,42.13062317,33.30211377,8.828509403,8.720420877,0.108088527,3.747626959,0,3.747626959,0.271128386,3.476498574,1.509239558,4.670902856,15.46320606,-15.46320606,0,0,0.627097976,0.067782096,2.180105219,0.678891305,1,0.064579715,0,0.955043487,0.99380545,0.724496596,1,8.436922526,0.196431592,0.087794573,0.312029739,0.781372063,0.505868659,0.961238037,0.922476074,0.046966589,2.095600061,8.483889115,2.292031653,10.69359828,0,0.383159358,67.47048161,-0.383159358,112.5295184,0.919505993,0,18.31671682,2.292031653,19.8168057,3,18,8% +2018-03-20 03:00:00,98.50112004,276.8959747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719168862,4.832746444,-5.966571404,5.966571404,1,0.449502507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162758707,80.63294214,-0.162758707,99.36705786,0.742796773,0,0,0,0,3,19,0% +2018-03-20 04:00:00,110.074903,286.7679189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921169481,5.005044374,-2.191992122,2.191992122,1,0.90500642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065212773,93.73907004,0.065212773,86.26092996,0,0,0,0,0,3,20,0% +2018-03-20 05:00:00,121.0058404,298.18966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11195033,5.204391362,-1.109264057,1.109264057,1,0.719849016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288625803,106.7757027,0.288625803,73.2242973,0,0.876765315,0,0,0,3,21,0% +2018-03-20 06:00:00,130.6722748,312.3986537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280661437,5.452385086,-0.539183073,0.539183073,1,0.622359425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492240493,119.4879494,0.492240493,60.51205063,0,0.948423635,0,0,0,3,22,0% +2018-03-20 07:00:00,138.0512024,330.757167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409448018,5.772801589,-0.144362392,0.144362392,1,0.554841113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662167166,131.4653633,0.662167166,48.53463666,0,0.974490366,0,0,0,3,23,0% +2018-03-21 08:00:00,141.709094,353.4435166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473290271,6.168753085,0.183546999,-0.183546999,1,0.498765304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786812896,141.8886612,0.786812896,38.11133879,0,0.98645249,0,0,0,3,0,0% +2018-03-21 09:00:00,140.5620118,17.39105761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45326991,0.303531216,0.499476928,-0.499476928,1,0.444738104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857671478,149.0561334,0.857671478,30.94386661,0,0.99170262,0,0,0,3,1,0% +2018-03-21 10:00:00,134.9832788,38.21434747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355902651,0.666966185,0.850520908,-0.850520908,1,0.384706048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869903068,150.4473774,0.869903068,29.55262264,0,0.992522332,0,0,0,3,2,0% +2018-03-21 11:00:00,126.3762404,54.49032113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205681492,0.951035514,1.308110645,-1.308110645,1,0.306453595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822664023,145.3523688,0.822664023,34.64763124,0,0.989221847,0,0,0,3,3,0% +2018-03-21 12:00:00,116.0154152,67.21841187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024850978,1.173182605,2.046490515,-2.046490515,1,0.1801832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719164526,135.9855452,0.719164526,44.01445481,0,0.98047488,0,0,0,3,4,0% +2018-03-21 13:00:00,104.7144651,77.7698485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82761219,1.357339915,3.772896932,-3.772896932,1,0,#DIV/0!,0,0,0.103178976,1,0.259090881,0,0.930565639,0.969327602,0.724496596,1,0,0,0.016827224,0.312029739,0.953389273,0.677885869,0.961238037,0.922476074,0,0,0,0,0,0,-0.566450003,124.5030428,0.566450003,55.49695717,0,0.961730956,0,0,0,3,5,0% +2018-03-21 14:00:00,92.97072467,87.23650804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622645253,1.522564293,18.40411745,-18.40411745,1,0,#DIV/0!,0,0,0.723538162,1,0.054282289,0,0.956097889,0.994859852,0.724496596,1,0,0,0.092079749,0.312029739,0.772268484,0.49676508,0.961238037,0.922476074,0,0,0,0,0,0,-0.374921175,112.0194411,0.374921175,67.98055891,0,0.916638634,0,0,0,3,6,0% +2018-03-21 15:00:00,81.03269435,96.48207397,87.75231223,349.1537566,33.32942259,32.98593153,0,32.98593153,32.32441753,0.661513996,76.72193703,54.44036791,22.28156912,1.005005064,21.27656406,1.414287318,1.68392986,-5.672220819,5.672220819,0.499839422,0.499839422,0.379812472,0.456316752,14.67671532,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07145965,0.728122747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330599933,14.10781702,31.40205958,14.83593977,0,54.44036791,-0.1559209,98.97020932,0.1559209,81.02979068,0,0.72932458,31.40205958,54.54063824,67.0978165,3,7,114% +2018-03-21 16:00:00,69.47563372,106.3225253,295.1949732,658.8249442,64.20719912,111.529558,47.03313841,64.49641957,62.27111517,2.225304399,73.50952286,0,73.50952286,1.936083953,71.57343891,1.212578558,1.855678136,-2.152139863,2.152139863,0.898191282,0.898191282,0.217507766,2.048026567,65.87157444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.8573645,1.402686233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.483788276,63.3182629,61.34115277,64.72094913,47.03313841,0,0.071389432,85.90620452,-0.071389432,94.09379548,0,0,61.34115277,64.72094913,103.6997196,3,8,69% +2018-03-21 17:00:00,58.50307353,117.7175082,491.6096702,785.1277927,81.41743643,314.07736,231.4089983,82.66836167,78.96240032,3.705961351,121.6514923,0,121.6514923,2.455036107,119.1964562,1.021071256,2.054558106,-1.098019942,1.098019942,0.717926159,0.717926159,0.165613985,2.833731963,91.14256081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.90166267,1.778665302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053029161,87.60969623,77.95469183,89.38836153,231.4089983,0,0.294740551,72.85801966,-0.294740551,107.1419803,0.880359278,0,281.6777504,89.38836153,340.1806453,3,9,21% +2018-03-21 18:00:00,48.76365062,131.9349825,650.3797541,846.1275141,92.64069661,516.467858,421.7177829,94.7500751,89.8472378,4.902837308,160.48556,0,160.48556,2.79345881,157.6921012,0.851086259,2.302699843,-0.536729772,0.536729772,0.621939886,0.621939886,0.142440929,3.313293917,106.5669217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36458248,2.023851399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.400470164,102.4361786,88.76505264,104.46003,421.7177829,0,0.498409254,60.10518724,-0.498409254,119.8948128,0.949680835,0,489.262349,104.46003,557.6293495,3,10,14% +2018-03-21 19:00:00,41.29359671,150.410067,758.0335892,876.4131348,99.55119416,688.0803676,585.8166319,102.2637357,96.54935835,5.71437739,186.7958557,0,186.7958557,3.001835809,183.7940199,0.720709223,2.625150897,-0.146324741,0.146324741,0.555176694,0.555176694,0.13132821,3.50631078,112.7750075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80691568,2.174819825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540310224,108.4036269,95.34722591,110.5784467,585.8166319,0,0.668425208,48.05436235,-0.668425208,131.9456376,0.975197315,0,666.6340326,110.5784467,739.0054144,3,11,11% +2018-03-21 20:00:00,37.56491213,173.3983263,806.4078949,887.9909676,102.53018,809.8514999,704.3339398,105.5175601,99.43851675,6.07904334,198.6145936,0,198.6145936,3.091663222,195.5229304,0.6556314,3.026371711,0.178222072,-0.178222072,0.49967592,0.49967592,0.127144316,3.424259965,110.1359713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58408463,2.23989948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.480864688,105.8668848,98.06494932,108.1067843,704.3339398,0,0.793176919,37.51660139,-0.793176919,142.4833986,0.986962361,0,793.2160377,108.1067843,863.9697659,3,12,9% +2018-03-21 21:00:00,38.7094328,197.731156,791.9621401,884.6472379,101.6476072,869.0287431,764.4760412,104.5527019,98.58255677,5.970145138,195.0854403,0,195.0854403,3.065050396,192.0203899,0.675607054,3.451059706,0.490435599,-0.490435599,0.446284263,0.446284263,0.128349074,3.088673481,99.34235639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.76130334,2.220618578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237733423,95.49165164,96.99903676,97.71227021,764.4760412,0,0.864159191,30.21316593,-0.864159191,149.7868341,0.99214029,0,855.4665181,97.71227021,919.4172447,3,13,7% +2018-03-21 22:00:00,44.34149005,218.8067033,715.7664149,865.3370215,96.88880209,857.8693693,758.5063725,99.3629968,93.96724722,5.395749576,176.467409,0,176.467409,2.921554865,173.5458541,0.773904997,3.818897398,0.835984357,-0.835984357,0.387191945,0.387191945,0.135363717,2.536778861,81.5915283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32489225,2.116656554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.837887649,78.42888048,92.1627799,80.54553704,758.5063725,0,0.87654446,28.77170768,-0.87654446,151.2282923,0.992957828,0,845.3276199,80.54553704,898.043063,3,14,6% +2018-03-21 23:00:00,53.00738984,235.1811482,583.4922422,823.3112062,88.09599938,772.7865996,682.9484086,89.83819095,85.43957996,4.39861099,144.130869,0,144.130869,2.656419421,141.4744495,0.925153481,4.104685375,1.283250692,-1.283250692,0.310704897,0.310704897,0.150980584,1.824434198,58.68007526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12777411,1.924566828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321796366,56.40552035,83.44957048,58.33008717,682.9484086,0,0.829514288,33.95112413,-0.829514288,146.0488759,0.989723763,0,759.3798392,58.33008717,797.5557147,3,15,5% +2018-03-21 00:00:00,63.40355401,247.9365603,405.5519358,739.4058846,74.51724211,612.3829377,537.0554435,75.32749412,72.27027232,3.057221798,100.5777319,0,100.5777319,2.246969789,98.33076215,1.106600775,4.327309313,1.995968204,-1.995968204,0.188823024,0.188823024,0.183742785,1.032946405,33.2231071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.46893469,1.627921963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748366154,31.93531425,70.21730084,33.56323621,537.0554435,0,0.726333743,43.42008713,-0.726333743,136.5799129,0.981161122,0,597.1552223,33.56323621,619.1216892,3,16,4% +2018-03-21 01:00:00,74.7002526,258.4983786,199.1539613,554.437634,52.85516949,371.1383941,318.3756963,52.7626978,51.26139112,1.501306683,49.88096202,0,49.88096202,1.593778375,48.28718364,1.30376536,4.511647818,3.615311024,-3.615311024,0,0,0.265398535,0.398444594,12.81534778,0.08096759,1,0.269854386,0,0.928968167,0.96773013,0.724496596,1,49.44631071,1.154687007,0.013338042,0.312029739,0.962872223,0.687368819,0.961238037,0.922476074,0.282766432,12.31859974,49.72907715,13.47328675,292.5975836,0,0.574231756,54.95415065,-0.574231756,125.0458494,0.962927142,0,331.4792322,13.47328675,340.2972289,3,17,3% +2018-03-21 02:00:00,86.29617325,267.9809408,15.93451841,94.9832365,9.79870027,46.22412878,36.60077435,9.623354434,9.503233303,0.120121131,4.158975437,0,4.158975437,0.295466966,3.863508471,1.506152355,4.677149749,14.69331087,-14.69331087,0,0,0.614935451,0.073866742,2.375808326,0.664716485,1,0.067953391,0,0.954692592,0.993454555,0.724496596,1,9.196172801,0.214064811,0.086404729,0.312029739,0.784356291,0.508852887,0.961238037,0.922476074,0.051114643,2.283717331,9.247287445,2.497782142,12.27163627,0,0.385339305,67.33519365,-0.385339305,112.6648063,0.920244225,0,20.54018986,2.497782142,22.17493832,3,18,8% +2018-03-21 03:00:00,98.31391607,277.2554936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715901536,4.839021233,-6.083346011,6.083346011,1,0.429532873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164975139,80.50420978,-0.164975139,99.49579022,0.746924031,0,0,0,0,3,19,0% +2018-03-21 04:00:00,109.8721497,287.1371381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917630769,5.011488464,-2.205569815,2.205569815,1,0.907328342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063002355,93.61216138,0.063002355,86.38783862,0,0,0,0,0,3,20,0% +2018-03-21 05:00:00,120.773366,298.5716728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107892886,5.211058743,-1.111157015,1.111157015,1,0.72017273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286343619,106.6391799,0.286343619,73.36082008,0,0.87538462,0,0,0,3,21,0% +2018-03-21 06:00:00,130.3941238,312.7803024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275806786,5.459046112,-0.537559185,0.537559185,1,0.622081724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489813676,119.3283358,0.489813676,60.67166424,0,0.947920368,0,0,0,3,22,0% +2018-03-21 07:00:00,137.7150373,331.0855096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40358083,5.778532248,-0.140928646,0.140928646,1,0.554253907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659532784,131.26425,0.659532784,48.73575,0,0.974188757,0,0,0,3,23,0% +2018-03-22 08:00:00,141.3223584,353.6189723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46654046,6.171815364,0.188491378,-0.188491378,1,0.497919765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783922306,141.6211143,0.783922306,38.37888568,0,0.986218169,0,0,0,3,0,0% +2018-03-22 09:00:00,140.1607107,17.35837642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446265884,0.302960821,0.506270846,-0.506270846,1,0.443576276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854493684,148.7038441,0.854493684,31.29615589,0,0.991485817,0,0,0,3,1,0% +2018-03-22 10:00:00,134.6022308,38.03459754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349252108,0.663828957,0.860229858,-0.860229858,1,0.38304572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866426869,150.0460366,0.866426869,29.95396343,0,0.992291725,0,0,0,3,2,0% +2018-03-22 11:00:00,126.0256714,54.24696572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199562908,0.946788161,1.323438828,-1.323438828,1,0.303832321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818898802,144.9747111,0.818898802,35.02528895,0,0.988942394,0,0,0,3,3,0% +2018-03-22 12:00:00,115.6902996,66.95602697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019176641,1.168603125,2.075814143,-2.075814143,1,0.175168564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715139616,135.6546423,0.715139616,44.34535765,0,0.980083582,0,0,0,3,4,0% +2018-03-22 13:00:00,104.4057514,77.50413031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822224119,1.352702258,3.85977761,-3.85977761,1,0,#DIV/0!,0,0,0.114971531,1,0.25350826,0,0.931384546,0.970146509,0.724496596,1,0,0,0.018651477,0.312029739,0.948469269,0.672965865,0.961238037,0.922476074,0,0,0,0,0,0,-0.562212678,124.2089577,0.562212678,55.7910423,0,0.961065684,0,0,0,3,5,0% +2018-03-22 14:00:00,92.66923337,86.97058443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617383238,1.517923051,20.51569146,-20.51569146,1,0,#DIV/0!,0,0,0.74863232,1,0.04870463,0,0.956658522,0.995420486,0.724496596,1,0,0,0.094428456,0.312029739,0.767341267,0.491837863,0.961238037,0.922476074,0,0,0,0,0,0,-0.370533404,111.7485174,0.370533404,68.25148258,0,0.915059399,0,0,0,3,6,0% +2018-03-22 15:00:00,80.73251747,96.21506976,92.66455784,361.2788338,34.48287121,34.14163,0,34.14163,33.44308542,0.698544579,78.24257191,54.73519124,23.50738068,1.039785795,22.46759488,1.409048243,1.679269757,-5.498085081,5.498085081,0.529618387,0.529618387,0.372125784,0.492236083,15.83200447,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.14676577,0.753321269,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.356623366,15.2183249,32.50338914,15.97164617,0,54.73519124,-0.151504008,98.71409607,0.151504008,81.28590393,0,0.719975727,32.50338914,55.37965528,68.74826593,3,7,112% +2018-03-22 16:00:00,69.16248447,106.0544867,300.8956671,663.5863101,64.84542069,115.4869587,50.32858801,65.15837064,62.890092,2.268278637,74.91096682,0,74.91096682,1.955328688,72.95563813,1.207113073,1.85099998,-2.124089182,2.124089182,0.893394333,0.893394333,0.215507991,2.07857956,66.85426371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.45234858,1.416628978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505923815,64.2628612,61.95827239,65.67949018,50.32858801,0,0.075843319,85.65032107,-0.075843319,94.34967893,0,0,61.95827239,65.67949018,104.9441851,3,8,69% +2018-03-22 17:00:00,58.16927966,117.4554841,497.2819512,787.5703992,81.90833833,318.7673898,235.5801687,83.18722112,79.43849972,3.748721401,123.041605,0,123.041605,2.46983861,120.5717664,1.015245454,2.049984922,-1.089234545,1.089234545,0.716423767,0.716423767,0.164712068,2.86076999,92.01219672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35930752,1.789389665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072618119,88.44562334,78.43192564,90.235013,235.5801687,0,0.29912268,72.59508311,-0.29912268,107.4049169,0.882844504,0,286.4125828,90.235013,345.4695941,3,9,21% +2018-03-22 18:00:00,48.40083974,131.7056111,655.8538079,847.6748445,93.06954929,521.285078,426.0778159,95.20726203,90.26315899,4.944103037,161.8257392,0,161.8257392,2.806390301,159.0193489,0.844754014,2.298696557,-0.533897039,0.533897039,0.621455461,0.621455461,0.141905937,3.338125761,107.3655992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76438175,2.03322022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418460751,103.2038978,89.1828425,105.237118,426.0778159,0,0.502642987,59.82498679,-0.502642987,120.1750132,0.950525818,0,494.180807,105.237118,563.056396,3,10,14% +2018-03-22 19:00:00,40.90127673,150.279878,763.2355028,877.5564869,99.94419114,692.7944412,590.1103445,102.6840966,96.93050502,5.753591612,188.0689702,0,188.0689702,3.013686118,185.0552841,0.713861947,2.622878671,-0.146256521,0.146256521,0.555165028,0.555165028,0.130948037,3.529341092,113.5157415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.17328835,2.183405333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556995607,109.1156485,95.73028396,111.2990539,590.1103445,0,0.672447134,47.74378211,-0.672447134,132.2562179,0.975644712,0,671.4683214,111.2990539,744.3113262,3,11,11% +2018-03-22 20:00:00,37.16522162,173.4619281,811.3022407,888.9531388,102.8983635,814.3528731,708.4413359,105.9115372,99.79559819,6.115938986,199.8123865,0,199.8123865,3.102765314,196.7096212,0.648655485,3.027481773,0.176481585,-0.176481585,0.499973561,0.499973561,0.12683111,3.445673967,110.8247192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.92732489,2.247942908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49637906,106.5289355,98.42370395,108.7768784,708.4413359,0,0.796938899,37.16122496,-0.796938899,142.838775,0.987259933,0,797.8394498,108.7768784,869.0317411,3,12,9% +2018-03-22 21:00:00,38.34470416,198.0008034,796.5405758,885.5655973,101.9980678,873.2714394,768.3443304,104.927109,98.9224497,6.004659321,196.2061027,0,196.2061027,3.075618076,193.1304846,0.669241338,3.455765941,0.487009322,-0.487009322,0.44687019,0.44687019,0.128051314,3.108607265,99.9834954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.08802135,2.228274826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252175381,96.10793883,97.34019673,98.33621366,768.3443304,0,0.867631187,29.81547583,-0.867631187,150.1845242,0.992371827,0,859.8234637,98.33621366,924.1825489,3,13,7% +2018-03-22 22:00:00,44.03620028,219.180879,720.0428532,866.3416435,97.22918564,861.8603252,762.134971,99.72535413,94.29736696,5.427987175,177.5145448,0,177.5145448,2.931818685,174.5827261,0.768576685,3.825427996,0.830372101,-0.830372101,0.388151697,0.388151697,0.135032499,2.555339506,82.18850242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.64221589,2.124092657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851334773,79.00271472,92.49355067,81.12680738,762.134971,0,0.879716422,28.39182549,-0.879716422,151.6081745,0.993163503,0,849.4181881,81.12680738,902.514061,3,14,6% +2018-03-22 23:00:00,52.75609205,235.573836,587.4963909,824.6030569,88.43891205,776.5977748,686.3968263,90.2009485,85.77215255,4.428795954,145.1120613,0,145.1120613,2.666759503,142.4453018,0.920767507,4.111539069,1.273883137,-1.273883137,0.312306843,0.312306843,0.150535243,1.841621348,59.2328731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.44745553,1.932058182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334248398,56.93689065,83.78170393,58.86894884,686.3968263,0,0.832396655,33.65427465,-0.832396655,146.3457253,0.989932483,0,763.2682187,58.86894884,801.7967683,3,15,5% +2018-03-22 00:00:00,63.19002358,248.317071,409.3114129,741.4522757,74.89200417,616.2054852,540.486189,75.71929624,72.63373392,3.085562325,101.5005612,0,101.5005612,2.258270248,99.24229091,1.102873966,4.333950477,1.977953749,-1.977953749,0.191903677,0.191903677,0.182970721,1.048355727,33.71872389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8183078,1.636109107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.759530156,32.41171995,70.57783796,34.04782906,540.486189,0,0.72895614,43.20104516,-0.72895614,136.7989548,0.981408768,0,601.0157226,34.04782906,623.2993458,3,16,4% +2018-03-22 01:00:00,74.5090803,258.8642487,202.6004903,558.7657915,53.36216263,375.4855857,322.2052011,53.28038462,51.75309655,1.527288075,50.73190059,0,50.73190059,1.609066089,49.1228345,1.300428774,4.518033455,3.565009457,-3.565009457,0,0,0.263386148,0.402266522,12.93827414,0.073644205,1,0.273476154,0,0.928425161,0.967187124,0.724496596,1,49.90719454,1.165762904,0.012172106,0.312029739,0.966062271,0.690558866,0.961238037,0.922476074,0.285950391,12.43676123,50.19314494,13.60252414,298.4766553,0,0.576637307,54.7856254,-0.576637307,125.2143746,0.963290383,0,337.7128366,13.60252414,346.6154165,3,17,3% +2018-03-22 02:00:00,86.1195661,268.3389806,17.60245909,103.2109406,10.61770155,50.42432139,39.99408794,10.43023345,10.29753868,0.132694772,4.588082878,0,4.588082878,0.320162877,4.267920001,1.503069979,4.683398723,13.9939613,-13.9939613,0,0,0.603194218,0.080040719,2.574384669,0.650710497,1,0.071338131,0,0.95433785,0.993099813,0.724496596,1,9.96675081,0.231956914,0.08501718,0.312029739,0.787351019,0.511847615,0.961238037,0.922476074,0.055317788,2.474596465,10.0220686,2.70655338,13.96951508,0,0.387498532,67.20105998,-0.387498532,112.79894,0.920967253,0,22.88753453,2.70655338,24.65891958,3,18,8% +2018-03-22 03:00:00,98.12697956,277.6146484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712638878,4.845289666,-6.205011361,6.205011361,1,0.408726873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16717349,80.37647972,-0.16717349,99.62352028,0.750909517,0,0,0,0,3,19,0% +2018-03-22 04:00:00,109.6692284,287.5054135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.914089123,5.017916083,-2.219344296,2.219344296,1,0.909683917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.060798905,93.48567036,0.060798905,86.51432964,0,0,0,0,0,3,20,0% +2018-03-22 05:00:00,120.5403662,298.9518963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103826273,5.217694896,-1.113048604,1.113048604,1,0.720496211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28405706,106.5024928,0.28405706,73.49750725,0,0.873979027,0,0,0,3,21,0% +2018-03-22 06:00:00,130.1153052,313.1589745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270940483,5.465655188,-0.535902519,0.535902519,1,0.621798418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487371691,119.1679763,0.487371691,60.83202367,0,0.947408896,0,0,0,3,22,0% +2018-03-22 07:00:00,137.3784831,331.4100087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397706851,5.784195827,-0.137449526,0.137449526,1,0.553658943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656873743,131.0618802,0.656873743,48.9381198,0,0.973881871,0,0,0,3,23,0% +2018-03-23 08:00:00,140.9358055,353.7921209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459793839,6.174837377,0.1934951,-0.1934951,1,0.497064079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780999515,141.3521814,0.780999515,38.64781863,0,0.985979474,0,0,0,3,0,0% +2018-03-23 09:00:00,139.7596978,17.32703328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.439266888,0.30241378,0.513148563,-0.513148563,1,0.442400117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85127862,148.3510127,0.85127862,31.64898735,0,0.991264823,0,0,0,3,1,0% +2018-03-23 10:00:00,134.2210604,37.85798979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34259943,0.66074657,0.870073577,-0.870073577,1,0.381362345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862911155,149.6450356,0.862911155,30.35496445,0,0.992056607,0,0,0,3,2,0% +2018-03-23 11:00:00,125.6746673,54.00649618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193436731,0.942591176,1.339029618,-1.339029618,1,0.301166139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815094799,144.5967364,0.815094799,35.40326357,0,0.988657442,0,0,0,3,3,0% +2018-03-23 12:00:00,115.3647048,66.69572956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013493939,1.164060078,2.105840905,-2.105840905,1,0.170033685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711079585,135.3228214,0.711079585,44.67717863,0,0.979684383,0,0,0,3,4,0% +2018-03-23 13:00:00,104.0966943,77.23975883,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816830057,1.348088105,3.950391596,-3.950391596,1,0,#DIV/0!,0,0,0.126944885,1,0.24793126,0,0.93219602,0.970957983,0.724496596,1,0,0,0.020484055,0.312029739,0.94355309,0.668049686,0.961238037,0.922476074,0,0,0,0,0,0,-0.557946574,123.9139082,0.557946574,56.08609175,0,0.960385685,0,0,0,3,5,0% +2018-03-23 14:00:00,92.36762567,86.70538494,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61211919,1.513294446,23.16514815,-23.16514815,1,0,#DIV/0!,0,0,0.774333605,1,0.043141512,0,0.95721033,0.995972293,0.724496596,1,0,0,0.096790838,0.312029739,0.76243001,0.486926606,0.961238037,0.922476074,0,0,0,0,0,0,-0.366125439,111.4768606,0.366125439,68.52313945,0,0.913434783,0,0,0,3,6,0% +2018-03-23 15:00:00,80.43232491,95.9482122,97.62692045,373.0985907,35.61329151,35.27537233,0,35.27537233,34.53941937,0.735952964,79.61795559,54.8733063,24.74464929,1.073872138,23.67077715,1.403808895,1.674612214,-5.33463152,5.33463152,0.557570592,0.557570592,0.364789664,0.529123883,17.01844294,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.20060367,0.778016708,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383348452,16.35877468,33.58395212,17.13679139,0,54.8733063,-0.147074547,98.45743014,0.147074547,81.54256986,0,0.710036349,33.58395212,56.09883347,70.29951665,3,7,109% +2018-03-23 16:00:00,68.84971174,105.7859718,306.5847448,668.2329312,65.47593307,119.4693825,53.65662512,65.81275741,63.50159211,2.311165308,76.30936185,0,76.30936185,1.974340962,74.33502089,1.201654159,1.846313511,-2.096810712,2.096810712,0.88872944,0.88872944,0.213565529,2.108922156,67.8301859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.04014573,1.430403306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.527906923,65.20095473,62.56805266,66.63135804,53.65662512,0,0.08029629,85.39440332,-0.08029629,94.60559668,0,0,62.56805266,66.63135804,106.1769439,3,8,70% +2018-03-23 17:00:00,57.83605407,117.1922653,502.9260185,789.9615628,82.3949627,323.4489725,239.7472532,83.70171933,79.91045057,3.791268765,124.424748,0,124.424748,2.48451213,121.9402359,1.00942957,2.045390887,-1.080599162,1.080599162,0.71494703,0.71494703,0.163831179,2.887610733,92.87548725,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.81296463,1.800020581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092064146,89.27545104,78.90502877,91.07547162,239.7472532,0,0.303492302,72.33251984,-0.303492302,107.6674802,0.885251175,0,291.1415665,91.07547162,350.7486411,3,9,20% +2018-03-23 18:00:00,48.03861274,131.4744358,661.2889837,849.1908221,93.49483452,526.0759321,430.4152361,95.66069598,90.6756203,4.985075689,163.1563844,0,163.1563844,2.81921422,160.3371702,0.83843196,2.294661788,-0.531093254,0.531093254,0.620975985,0.620975985,0.141382719,3.36274976,108.1575916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16085524,2.042511105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436300754,103.9651911,89.597156,106.0077022,430.4152361,0,0.506853377,59.54553886,-0.506853377,120.4544611,0.951352142,0,499.0736128,106.0077022,568.4535337,3,10,14% +2018-03-23 19:00:00,40.50936481,150.148447,768.3911376,878.6762975,100.3337197,697.4692416,594.3684967,103.1007449,97.30828789,5.792456965,189.3307593,0,189.3307593,3.025431842,186.3053274,0.707021794,2.620584767,-0.14617822,0.14617822,0.555151638,0.555151638,0.130576363,3.55215657,114.2495657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.53642762,2.191915071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.573525343,109.8210283,96.10995296,112.0129433,594.3684967,0,0.676436247,47.43421744,-0.676436247,132.5657826,0.976083204,0,676.2630597,112.0129433,749.5732908,3,11,11% +2018-03-23 20:00:00,36.76598475,173.5274294,816.1460517,889.8947742,103.2630439,818.8054073,712.5036715,106.3017358,100.1492822,6.152453679,200.997821,0,200.997821,3.113761774,197.8840592,0.641687487,3.028624985,0.174771178,-0.174771178,0.500266058,0.500266058,0.126525202,3.46687686,111.5066771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.26729937,2.255909806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511740483,107.1844594,98.77903985,109.4403692,712.5036715,0,0.800660586,36.80676993,-0.800660586,143.1932301,0.987551566,0,802.4131562,109.4403692,874.039689,3,12,9% +2018-03-23 21:00:00,37.98114443,198.2752458,801.067496,886.4637117,102.3449907,877.4589196,772.1612228,105.2976967,99.25891157,6.038785157,197.3141679,0,197.3141679,3.086079081,194.2280888,0.662896024,3.460555864,0.483631302,-0.483631302,0.447447866,0.447447866,0.127760758,3.128346427,100.6183747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4114413,2.235853789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266476337,96.71820898,97.67791763,98.95406277,772.1612228,0,0.871057904,29.41819154,-0.871057904,150.5818085,0.992598535,0,864.124016,98.95406277,928.887471,3,13,7% +2018-03-23 22:00:00,43.7327386,219.5593333,724.2701206,867.3237888,97.56601025,865.7928485,765.7089593,100.0838892,94.62403506,5.459854102,178.5496512,0,178.5496512,2.941975189,175.6076761,0.763280279,3.83203327,0.824835555,-0.824835555,0.389098502,0.389098502,0.134709423,2.573735316,82.78017493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.9562217,2.13145101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864662475,79.57145284,92.82088417,81.70290385,765.7089593,0,0.882840952,28.01301202,-0.882840952,151.986988,0.993364657,0,853.449102,81.70290385,906.9220185,3,14,6% +2018-03-23 23:00:00,52.50670046,235.9691183,591.4569965,825.8661567,88.77816104,780.3500118,689.7901872,90.5598246,86.10117192,4.458652672,146.0825856,0,146.0825856,2.676989112,143.4055964,0.916414802,4.118438048,1.264650091,-1.264650091,0.313885787,0.313885787,0.150100788,1.858687772,59.78178794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.76372147,1.939469499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346612964,57.46452848,84.11033443,59.40399798,689.7901872,0,0.835232418,33.35995307,-0.835232418,146.6400469,0.990136423,0,767.0967231,59.40399798,805.9754517,3,15,5% +2018-03-23 00:00:00,62.97810589,248.698908,413.0364369,743.4534792,75.26251743,619.9694808,543.8627629,76.10671796,72.99307484,3.113643128,102.4149087,0,102.4149087,2.26944259,100.1454661,1.099175304,4.340614791,1.960252359,-1.960252359,0.194930793,0.194930793,0.182217622,1.063709511,34.21255435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16371996,1.644203431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.77065392,32.88640858,70.93437388,34.53061201,543.8627629,0,0.731535702,42.98470766,-0.731535702,137.0152923,0.981650636,0,604.8176009,34.53061201,627.4171959,3,16,4% +2018-03-23 01:00:00,74.31907964,259.2306529,206.0283891,562.9959366,53.86193058,379.7693044,325.9783807,53.79092367,52.23779465,1.553129024,51.57810419,0,51.57810419,1.624135936,49.95396826,1.297112637,4.524428416,3.516038424,-3.516038424,0,0,0.261429654,0.406033984,13.05944866,0.066401531,1,0.277094319,0,0.927879953,0.966641916,0.724496596,1,50.36078946,1.176680957,0.011011334,0.312029739,0.969248755,0.693745351,0.961238037,0.922476074,0.289112113,12.55323879,50.64990157,13.72991975,304.3329171,0,0.579006631,54.61929533,-0.579006631,125.3807047,0.963645203,0,343.9188573,13.72991975,352.9048152,3,17,3% +2018-03-23 02:00:00,85.94327945,268.6970122,19.33850372,111.5671434,11.44579904,54.71709126,43.47064348,11.24644778,11.10066597,0.14578181,5.033977192,0,5.033977192,0.345133072,4.688844121,1.499993196,4.689647553,13.35595782,-13.35595782,0,0,0.591865803,0.086283268,2.775166492,0.636871965,1,0.07473351,0,0.953979285,0.992741248,0.724496596,1,10.74605342,0.250047735,0.083632089,0.312029739,0.790355812,0.514852408,0.961238037,0.922476074,0.059562444,2.667595591,10.80561586,2.917643326,15.78540937,0,0.38963661,67.06810992,-0.38963661,112.9318901,0.921675303,0,25.35463782,2.917643326,27.26417702,3,18,8% +2018-03-23 03:00:00,97.94031899,277.973313,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709381037,4.851549545,-6.331903172,6.331903172,1,0.387027095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.169354033,80.24973669,-0.169354033,99.75026331,0.7547605,0,0,0,0,3,19,0% +2018-03-23 04:00:00,109.4661562,287.8726169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910544845,5.024324991,-2.233325074,2.233325074,1,0.912074771,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058602165,93.35958151,0.058602165,86.64041849,0,0,0,0,0,3,20,0% +2018-03-23 05:00:00,120.3068752,299.3302006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099751085,5.224297551,-1.114941515,1.114941515,1,0.720819918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281765973,106.3656318,0.281765973,73.63436822,0,0.872547771,0,0,0,3,21,0% +2018-03-23 06:00:00,129.8358782,313.5345532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266063561,5.472210272,-0.534214805,0.534214805,1,0.621509802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484914577,119.0068759,0.484914577,60.99312411,0,0.946889056,0,0,0,3,22,0% +2018-03-23 07:00:00,137.0416255,331.7305874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391827577,5.789790979,-0.133926484,0.133926484,1,0.553056467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654190339,130.8582856,0.654190339,49.14171438,0,0.973569645,0,0,0,3,23,0% +2018-03-24 08:00:00,140.549538,353.9628934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4530522,6.17781792,0.198556832,-0.198556832,1,0.496198471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778045134,141.0819365,0.778045134,38.91806346,0,0.985736376,0,0,0,3,0,0% +2018-03-24 09:00:00,139.3590956,17.29690438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432275061,0.301887932,0.520108888,-0.520108888,1,0.441209831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848027242,147.9977452,0.848027242,32.00225476,0,0.99103963,0,0,0,3,1,0% +2018-03-24 10:00:00,133.8399111,37.68441648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335947119,0.657717144,0.880051355,-0.880051355,1,0.379656044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859357233,149.2444894,0.859357233,30.75551055,0,0.991816979,0,0,0,3,2,0% +2018-03-24 11:00:00,125.3233774,53.7688614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187305566,0.938443666,1.354884551,-1.354884551,1,0.298454785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811253656,144.2185985,0.811253656,35.78140153,0,0.988366996,0,0,0,3,3,0% +2018-03-24 12:00:00,115.0387767,66.43750766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007805421,1.159553256,2.136586482,-2.136586482,1,0.164775882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706986374,134.9902444,0.706986374,45.00975555,0,0.979277279,0,0,0,3,4,0% +2018-03-24 13:00:00,103.7874353,76.97674158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811432468,1.343497588,4.044954208,-4.044954208,1,0,#DIV/0!,0,0,0.13909935,1,0.242361982,0,0.932999754,0.971761717,0.724496596,1,0,0,0.022324419,0.312029739,0.938642546,0.663139142,0.961238037,0.922476074,0,0,0,0,0,0,-0.553653866,123.6180464,0.553653866,56.38195361,0,0.959690868,0,0,0,3,5,0% +2018-03-24 14:00:00,92.06603958,86.440925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60685552,1.50867875,26.58673811,-26.58673811,1,0,#DIV/0!,0,0,0.800655695,1,0.037595015,0,0.95775315,0.996515113,0.724496596,1,0,0,0.099166216,0.312029739,0.75753691,0.482033506,0.961238037,0.922476074,0,0,0,0,0,0,-0.361699616,111.204612,0.361699616,68.79538801,0,0.911763746,0,0,0,3,6,0% +2018-03-24 15:00:00,80.13226498,95.68151723,102.633095,384.6108889,36.72066225,36.38709042,0,36.38709042,35.61339879,0.773691622,80.85086126,54.85901569,25.99184557,1.107263452,24.88458212,1.398571861,1.669957509,-5.180964166,5.180964166,0.583849257,0.583849257,0.357785783,0.566916406,18.23398037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.23295354,0.802208601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.410729006,17.5271955,34.64368255,18.3294041,0,54.85901569,-0.142635108,98.20035742,0.142635108,81.79964258,0,0.699455168,34.64368255,56.70082613,71.75323924,3,7,107% +2018-03-24 16:00:00,68.53745431,105.5169893,312.2591862,672.7664176,66.09870803,123.4737607,57.01423092,66.45952975,64.10558811,2.353941644,77.70397483,0,77.70397483,1.993119925,75.71085491,1.196204239,1.841618879,-2.070283174,2.070283174,0.884192964,0.884192964,0.211678986,2.139042967,68.79897472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.62072966,1.444008601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549729348,66.13219139,63.17045901,67.5762,57.01423092,0,0.084745953,85.13858369,-0.084745953,94.86141631,0,0,63.17045901,67.5762,107.3977304,3,8,70% +2018-03-24 17:00:00,57.50353774,116.9278399,508.5392906,792.3016138,82.87720414,328.1195255,243.9077909,84.21173463,80.37815065,3.833583981,125.8002922,0,125.8002922,2.499053489,123.3012387,1.003626065,2.040775793,-1.072114039,1.072114039,0.713495988,0.713495988,0.162971093,2.914244003,93.7321048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.26253574,1.810555746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.11135986,90.09886441,79.3738956,91.90942015,243.9077909,0,0.307847146,72.07046267,-0.307847146,107.9295373,0.887581733,0,295.8619953,91.90942015,356.0148726,3,9,20% +2018-03-24 18:00:00,47.67711088,131.2414032,666.6830423,850.6755435,93.91644839,530.8380896,434.7278302,96.11025934,91.08452096,5.025738381,164.4769496,0,164.4769496,2.831927434,161.6450222,0.832122563,2.2905946,-0.528320163,0.528320163,0.620501759,0.620501759,0.140871212,3.387157374,108.9426244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55390611,2.051721786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.453983987,104.7197944,90.0078901,106.7715162,434.7278302,0,0.511038355,59.26698119,-0.511038355,120.7330188,0.952159986,0,503.9383347,106.7715162,573.8181566,3,10,14% +2018-03-24 19:00:00,40.11799241,150.0156765,773.4986217,879.7726346,100.7196922,702.102742,598.5891609,103.5135812,97.68262182,5.830959338,190.5807664,0,190.5807664,3.037070335,187.5436961,0.700191057,2.618267484,-0.146091518,0.146091518,0.555136811,0.555136811,0.13021315,3.574750368,114.97626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.89625163,2.200347119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.589894473,110.5195544,96.48614611,112.7199015,598.5891609,0,0.680390748,47.12581499,-0.680390748,132.874185,0.976512816,0,681.0161333,112.7199015,754.7890544,3,11,11% +2018-03-24 20:00:00,36.36731551,173.5947595,820.9378403,890.815968,103.6241534,823.2074449,716.5193658,106.6880791,100.4995029,6.188576206,202.1705344,0,202.1705344,3.124650558,199.0458839,0.634729396,3.029800117,0.173089291,-0.173089291,0.500553678,0.500553678,0.126226553,3.487863386,112.1816759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.60394485,2.263798693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.52694515,107.833294,99.13089,110.0970927,716.5193658,0,0.804340505,36.45338772,-0.804340505,143.5466123,0.987837272,0,806.9354257,110.0970927,878.9917709,3,12,9% +2018-03-24 21:00:00,37.61885473,198.554426,805.5417907,887.3417319,102.6883292,881.5899387,775.9255272,105.6644115,99.59189722,6.072514281,198.4093654,0,198.4093654,3.096432006,195.3129334,0.656572876,3.465428477,0.480299913,-0.480299913,0.448017567,0.448017567,0.127477346,3.147887092,101.2468697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.73151977,2.243354447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280633483,97.32234225,98.01215325,99.56569669,775.9255272,0,0.874438223,29.02144093,-0.874438223,150.9785591,0.992820432,0,868.3668702,99.56569669,933.5306274,3,13,8% +2018-03-24 22:00:00,43.43117978,219.9419445,728.4474514,868.2837086,97.89925145,869.6661239,769.2275515,100.4385724,94.94722781,5.491344586,179.5725419,0,179.5725419,2.952023641,176.6205183,0.758017085,3.838711094,0.819372664,-0.819372664,0.390032712,0.390032712,0.134394391,2.591963483,83.36645543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26688686,2.138731079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87786872,80.13500795,93.14475558,82.27373903,769.2275515,0,0.885917292,27.63538425,-0.885917292,152.3646157,0.993561323,0,857.4194993,82.27373903,911.266016,3,14,6% +2018-03-24 23:00:00,52.25925737,236.3668439,595.3735749,827.1009583,89.11374712,784.0429226,693.1281063,90.91481634,86.42663885,4.488177494,147.0423245,0,147.0423245,2.68710827,144.3552162,0.912096106,4.125379669,1.255548094,-1.255548094,0.31544232,0.31544232,0.149677028,1.875631272,60.32674916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.07657266,1.946800795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.358888472,57.98836593,84.43546113,59.93516672,693.1281063,0,0.838021162,33.0682546,-0.838021162,146.9317454,0.990335636,0,770.8649248,59.93516672,810.0912928,3,15,5% +2018-03-24 00:00:00,62.76782013,249.0819242,416.7267018,745.4104533,75.62882321,623.6749733,547.1851763,76.48979705,73.34833515,3.141461904,103.3207016,0,103.3207016,2.28048806,101.0402135,1.095505126,4.347299685,1.942854964,-1.942854964,0.197905923,0.197905923,0.181483027,1.079005409,34.70452301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.50520968,1.652205837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781735746,33.35930757,71.28694543,35.0115134,547.1851763,0,0.734072314,42.77111414,-0.734072314,137.2288859,0.98188682,0,608.5608578,35.0115134,631.4751931,3,16,4% +2018-03-24 01:00:00,74.13025794,259.5974549,209.4372343,567.130633,54.35463437,383.9901015,329.6956335,54.29446794,52.7156416,1.578826339,52.419475,0,52.419475,1.638992774,50.78048223,1.293817076,4.530830317,3.468342696,-3.468342696,0,0,0.259527082,0.409748193,13.1789104,0.059237769,1,0.280709033,0,0.927332534,0.966094497,0.724496596,1,50.80724708,1.187444685,0.009855619,0.312029739,0.972431828,0.696928424,0.961238037,0.922476074,0.292252338,12.66806996,51.09949942,13.85551465,310.1651998,0,0.581339844,54.45516461,-0.581339844,125.5448354,0.963991789,0,350.0962052,13.85551465,359.1643624,3,17,3% +2018-03-24 02:00:00,85.76734947,269.0549061,21.13902897,120.0236034,12.28050518,59.0891956,47.01963803,12.06955757,11.91020264,0.15935493,5.495704853,0,5.495704853,0.370302542,5.125402312,1.496922639,4.69589398,12.77161221,-12.77161221,0,0,0.580939891,0.092575635,2.977550661,0.62319898,1,0.078139228,0,0.953616906,0.992378869,0.724496596,1,11.53172562,0.268282931,0.082249563,0.312029739,0.793370345,0.517866941,0.961238037,0.922476074,0.06383649,2.862134952,11.59556211,3.130417883,17.71704756,0,0.391753261,66.9363635,-0.391753261,113.0636365,0.922368644,0,27.93721125,3.130417883,29.98600714,3,18,7% +2018-03-24 03:00:00,97.75393932,278.33136,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706128098,4.857798643,-6.46439132,6.46439132,1,0.364370288,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171517122,80.12396057,-0.171517122,99.87603943,0.758483914,0,0,0,0,3,19,0% +2018-03-24 04:00:00,109.2629477,288.2386183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906998188,5.030712921,-2.247522574,2.247522574,1,0.914502686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056411809,93.23387529,0.056411809,86.76612471,0,0,0,0,0,3,20,0% +2018-03-24 05:00:00,120.0729248,299.7064546,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09566788,5.230864421,-1.116838739,1.116838739,1,0.721144362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279470153,106.2285844,0.279470153,73.77141564,0,0.871090018,0,0,0,3,21,0% +2018-03-24 06:00:00,129.5559002,313.9069205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261177024,5.478709307,-0.532497947,0.532497947,1,0.621216202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482442338,118.8450368,0.482442338,61.15496316,0,0.946360671,0,0,0,3,22,0% +2018-03-24 07:00:00,136.7045487,332.0471666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385944477,5.795316328,-0.130361108,0.130361108,1,0.552446752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651482857,130.6534964,0.651482857,49.34650356,0,0.97325201,0,0,0,3,23,0% +2018-03-25 08:00:00,140.1636579,354.1312174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446317321,6.180755728,0.203675112,-0.203675112,1,0.495323194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77505978,140.8104528,0.77505978,39.18954721,0,0.985488847,0,0,0,3,0,0% +2018-03-25 09:00:00,138.9590265,17.26786313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425292539,0.301381066,0.527150479,-0.527150479,1,0.440005648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844740532,147.6441466,0.844740532,32.35585336,0,0.990810227,0,0,0,3,1,0% +2018-03-25 10:00:00,133.4589264,37.51376547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329297682,0.654738722,0.890162291,-0.890162291,1,0.377926972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855766456,148.8445129,0.855766456,31.15548708,0,0.991572844,0,0,0,3,2,0% +2018-03-25 11:00:00,124.9719524,53.53400471,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181172041,0.934344644,1.371004916,-1.371004916,1,0.295698041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807377077,143.8404507,0.807377077,36.15954933,0,0.988071068,0,0,0,3,3,0% +2018-03-25 12:00:00,114.7126636,66.18134407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002113674,1.155082357,2.168066585,-2.168066585,1,0.159392468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702861991,134.6570753,0.702861991,45.34292469,0,0.978862279,0,0,0,3,4,0% +2018-03-25 13:00:00,103.4781181,76.71508155,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806033865,1.338930759,4.143696396,-4.143696396,1,0,#DIV/0!,0,0,0.151435016,1,0.236802564,0,0.933795445,0.972557408,0.724496596,1,0,0,0.024172002,0.312029739,0.933739489,0.658236085,0.961238037,0.922476074,0,0,0,0,0,0,-0.549336803,123.3215268,0.549336803,56.67847322,0,0.958981157,0,0,0,3,5,0% +2018-03-25 14:00:00,91.76461575,86.17721622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601594682,1.504076163,31.17377137,-31.17377137,1,0,#DIV/0!,0,0,0.827612219,1,0.032067253,0,0.958286829,0.997048792,0.724496596,1,0,0,0.10155387,0.312029739,0.752664204,0.4771608,0.961238037,0.922476074,0,0,0,0,0,0,-0.357258339,110.9319164,0.357258339,69.06808358,0,0.910045254,0,0,0,3,6,0% +2018-03-25 15:00:00,79.83248755,95.41499748,107.6769595,395.8150807,37.80504593,37.47679871,0,37.47679871,36.66508431,0.811714404,81.94451068,54.69702359,27.24748709,1.13996162,26.10752547,1.393339758,1.665305862,-5.036285469,5.036285469,0.608590771,0.608590771,0.351096893,0.60554977,19.47656216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.24387366,0.825898313,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.438718747,18.72161237,35.68259241,19.54751069,0,54.69702359,-0.138188326,97.94302604,0.138188326,82.05697396,0,0.688174936,35.68259241,57.18863142,73.1114079,3,7,105% +2018-03-25 16:00:00,68.22585332,105.2475445,317.9159586,677.1883759,66.71371527,127.4969749,60.39833953,67.09863539,64.70205061,2.396584784,79.09406952,0,79.09406952,2.011664663,77.08240486,1.190765775,1.836916181,-2.044486361,2.044486361,0.879781449,0.879781449,0.209847016,2.168930686,69.76026652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19407211,1.4574442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.571382899,67.05622164,63.76545501,68.51366584,60.39833953,0,0.089189865,84.88299768,-0.089189865,95.11700232,0.489398185,0,93.32429272,68.51366584,138.1651167,3,8,48% +2018-03-25 17:00:00,57.17187377,116.6621925,514.1191883,794.5908923,83.35495788,332.7764324,248.0592864,84.71714596,80.84149835,3.875647607,127.167609,0,127.167609,2.513459527,124.6541495,0.997837437,2.036139371,-1.063779513,1.063779513,0.7120707,0.7120707,0.162131583,2.940659766,94.58172652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.70792317,1.820992871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.13049799,90.91555312,79.83842116,92.73654599,248.0592864,0,0.31218491,71.80904723,-0.31218491,108.1909528,0.889838511,0,300.5711273,92.73654599,361.2653419,3,9,20% +2018-03-25 18:00:00,47.31647717,131.0064542,672.0337704,852.129117,94.33428894,535.5692105,439.013374,96.5558365,91.48976207,5.06607443,165.786895,0,165.786895,2.844526868,162.9423682,0.825828317,2.286493967,-0.525579571,0.525579571,0.62003309,0.62003309,0.140371352,3.411340303,109.7204305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.94343928,2.060850033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.471504437,105.4674513,90.41494372,107.5283013,439.013374,0,0.515195837,58.98945407,-0.515195837,121.0105459,0.952949526,0,508.7725306,107.5283013,579.1476532,3,10,14% +2018-03-25 19:00:00,39.72729171,149.8814599,778.5561331,880.8455786,101.1020237,706.6929332,602.7704236,103.9225096,98.05342464,5.869084995,191.8185473,0,191.8185473,3.048599041,188.7699483,0.693372043,2.615924962,-0.145998157,0.145998157,0.555120845,0.555120845,0.129858361,3.597115962,115.6956144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.25268141,2.208699627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60609827,111.2110252,96.85877968,113.4197248,602.7704236,0,0.684308849,46.81872378,-0.684308849,133.1812762,0.976933577,0,685.7254455,113.4197248,759.956387,3,11,11% +2018-03-25 20:00:00,35.96932664,173.6638369,825.6761907,891.7168278,103.9816284,827.5573731,720.4868786,107.0704945,100.8461986,6.224295893,203.3301815,0,203.3301815,3.135429747,200.1947518,0.62778318,3.031005746,0.171434286,-0.171434286,0.5008367,0.5008367,0.125935118,3.50862868,112.8495592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.93720201,2.271608179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541989535,108.4752887,99.47919154,110.7468969,720.4868786,0,0.807977214,36.10123201,-0.807977214,143.898768,0.988117067,0,811.4045727,110.7468969,883.8862018,3,12,9% +2018-03-25 21:00:00,37.25793259,198.8382759,809.9624406,888.1998244,103.0280421,885.6633225,779.6361169,106.0272055,99.92136654,6.105839007,199.4914467,0,199.4914467,3.106675604,196.3847711,0.650273596,3.470382593,0.477013444,-0.477013444,0.448579586,0.448579586,0.127201012,3.167225822,101.8688697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.04821821,2.250775899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294644327,97.92023234,98.34286254,100.1710082,779.6361169,0,0.877771078,28.62535228,-0.877771078,151.3746477,0.99303754,0,872.5507941,100.1710082,938.1107156,3,13,8% +2018-03-25 22:00:00,43.13159296,220.3285809,732.5741843,869.2216736,98.22889091,873.4794298,772.6900487,100.7893811,95.26692742,5.522453642,180.5830559,0,180.5830559,2.961963487,177.6210924,0.752788309,3.845459173,0.813981281,-0.813981281,0.390954692,0.390954692,0.134087295,2.610021656,83.94726834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.57419429,2.145932463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890951805,80.69330742,93.4651461,82.83923988,772.6900487,0,0.888944756,27.2590565,-0.888944756,152.7409435,0.993753535,0,861.3286136,82.83923988,915.5452393,3,14,6% +2018-03-25 23:00:00,52.01379876,236.7668552,599.2457553,828.3079394,89.44567801,787.6762319,696.4103035,91.26592842,86.74856079,4.517367626,147.9911884,0,147.9911884,2.697117211,145.2940712,0.907812045,4.132361182,1.246573583,-1.246573583,0.316977052,0.316977052,0.149263766,1.892450109,60.86770078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38601628,1.954052238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371073662,58.5083492,84.75708994,60.46240144,696.4103035,0,0.84076256,32.77926812,-0.84076256,147.2207319,0.990530178,0,774.5725116,60.46240144,814.1439441,3,15,5% +2018-03-25 00:00:00,62.55917937,249.4659688,420.3820176,747.3241895,75.99097036,627.3221377,550.4535582,76.86857945,73.69956223,3.169017219,104.2178953,0,104.2178953,2.291408133,101.9264872,1.091863657,4.354002528,1.92575247,-1.92575247,0.200830622,0.200830622,0.180766463,1.094241502,35.19456813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.84282251,1.660117392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792774243,33.83035758,71.63559676,35.49047497,550.4535582,0,0.736565959,42.56029627,-0.736565959,137.4397037,0.982117417,0,612.2456234,35.49047497,635.4734295,3,16,4% +2018-03-25 01:00:00,73.94261695,259.9645156,212.8267216,571.1724923,54.8404426,388.1486701,333.3574915,54.79117864,53.18680092,1.604377726,53.25594435,0,53.25594435,1.653641684,51.60230267,1.290542123,4.537236735,3.421869101,-3.421869101,0,0,0.25767649,0.413410421,13.29670023,0.052151021,1,0.28432052,0,0.926782886,0.965544849,0.724496596,1,51.24672583,1.198057771,0.00870483,0.312029739,0.975611709,0.700108305,0.961238037,0.922476074,0.295371861,12.78129403,51.54209769,13.9793518,315.9725579,0,0.58363716,54.29323012,-0.58363716,125.7067699,0.964330335,0,356.2440203,13.9793518,365.3932265,3,17,3% +2018-03-25 02:00:00,85.59180415,269.4125312,23.00050569,128.5544624,13.11959755,63.52834555,50.63096474,12.89738081,12.72399328,0.173387527,5.972343169,0,5.972343169,0.395604272,5.576738896,1.493858795,4.702135715,12.23444888,-12.23444888,0,0,0.570404744,0.098901068,3.18099832,0.609689122,1,0.081555119,0,0.953250712,0.992012675,0.724496596,1,12.3216597,0.286613949,0.080869655,0.312029739,0.796394412,0.520891008,0.961238037,0.922476074,0.068129231,3.057696581,12.38978893,3.344310529,19.76181628,0,0.393848364,66.80583117,-0.393848364,113.1941688,0.923047588,0,30.63088577,3.344310529,32.81967012,3,18,7% +2018-03-25 03:00:00,97.5678412,278.6886602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.702880073,4.864034708,-6.60288483,6.60288483,1,0.340686502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173663206,79.99912568,-0.173663206,100.0008743,0.762086392,0,0,0,0,3,19,0% +2018-03-25 04:00:00,109.0596137,288.6032868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903449339,5.037077586,-2.261948285,2.261948285,1,0.916969628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054227426,93.10852742,0.054227426,86.89147258,0,0,0,0,0,3,20,0% +2018-03-25 05:00:00,119.8385441,300.0805263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091577165,5.237393204,-1.118743605,1.118743605,1,0.721470114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277169331,106.0913339,0.277169331,73.90866607,0,0.869604861,0,0,0,3,21,0% +2018-03-25 06:00:00,129.2754263,314.2759578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256281832,5.485150224,-0.530754046,0.530754046,1,0.620917977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.479954931,118.6824585,0.479954931,61.31754146,0,0.945823552,0,0,0,3,22,0% +2018-03-25 07:00:00,136.3673348,332.3596654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380058985,5.800770461,-0.126755138,0.126755138,1,0.551830095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648751557,130.4475406,0.648751557,49.55245941,0,0.972928894,0,0,0,3,23,0% +2018-03-26 08:00:00,139.7782652,354.2970165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43959095,6.183649468,0.208848337,-0.208848337,1,0.49443852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044071,140.5378012,0.772044071,39.46219883,0,0.985236858,0,0,0,3,0,0% +2018-03-26 09:00:00,138.559612,17.2397795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418321439,0.300890915,0.534271843,-0.534271843,1,0.438787823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841419492,147.2903194,0.841419492,32.70968057,0,0.990576608,0,0,0,3,1,0% +2018-03-26 10:00:00,133.0782502,37.34591965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322653628,0.65180926,0.900405291,-0.900405291,1,0.376175316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852140214,148.4452195,0.852140214,31.55478046,0,0.99132421,0,0,0,3,2,0% +2018-03-26 11:00:00,124.6205439,53.30186326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175038806,0.930293011,1.387391746,-1.387391746,1,0.292895728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803466817,143.462446,0.803466817,36.53755397,0,0.987769676,0,0,0,3,3,0% +2018-03-26 12:00:00,114.3865156,65.92721569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996421316,1.150646981,2.200296935,-2.200296935,1,0.153880753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698708506,134.3234789,0.698708506,45.67652114,0,0.9784394,0,0,0,3,4,0% +2018-03-26 13:00:00,103.1688888,76.45477664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800636796,1.334387581,4.246866153,-4.246866153,1,0,#DIV/0!,0,0,0.163951736,1,0.231255181,0,0.934582796,0.973344759,0.724496596,1,0,0,0.026026213,0.312029739,0.928845811,0.653342407,0.961238037,0.922476074,0,0,0,0,0,0,-0.5449977,123.0245065,0.5449977,56.97549352,0,0.958256494,0,0,0,3,5,0% +2018-03-26 14:00:00,91.46349716,85.91426574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596339171,1.499486812,37.64122394,-37.64122394,1,0,#DIV/0!,0,0,0.855216716,1,0.02656037,0,0.958811222,0.997573185,0.724496596,1,0,0,0.103953034,0.312029739,0.747814164,0.47231076,0.961238037,0.922476074,0,0,0,0,0,0,-0.352804082,110.6589215,0.352804082,69.3410785,0,0.908278284,0,0,0,3,6,0% +2018-03-26 15:00:00,79.53314383,95.14866155,112.7525663,406.711786,38.86657318,38.54457907,0,38.54457907,37.6946026,0.849976472,82.90250241,54.39236671,28.5101357,1.171970584,27.33816511,1.388115224,1.660657423,-4.899883232,4.899883232,0.631916928,0.631916928,0.344706772,0.644960154,20.74413559,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.2334858,0.849088698,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467271436,19.94005217,36.70075724,20.78914087,0,54.39236671,-0.133736883,97.68558633,0.133736883,82.31441367,0,0.67613156,36.70075724,57.56553662,74.37624964,3,7,103% +2018-03-26 16:00:00,67.91505198,104.9776392,323.5520223,681.500409,67.32092272,131.535862,63.80584167,67.73002033,65.29094851,2.439071813,80.47890798,0,80.47890798,2.029974208,78.44893377,1.185341269,1.832205446,-2.019401082,2.019401082,0.875491613,0.875491613,0.208068311,2.19857412,70.71370125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.76014317,1.470709403,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592859466,67.97269937,64.35300264,69.44340877,63.80584167,0,0.093625537,84.62778373,-0.093625537,95.37221627,0.515957668,0,97.27411594,69.44340877,142.7234381,3,8,47% +2018-03-26 17:00:00,56.84120706,116.3953034,519.6631415,796.8297496,83.82812012,337.4170474,252.1992141,85.21783327,81.300393,3.917440267,128.5260722,0,128.5260722,2.527727114,125.9983451,0.992066214,2.031481277,-1.055596006,1.055596006,0.710671238,0.710671238,0.161312422,2.966848165,95.42403545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.14903017,1.83132969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.149471396,91.72521251,80.29850156,93.5565422,252.1992141,0,0.316503261,71.54841185,-0.316503261,108.4515882,0.892023745,0,305.2661889,93.5565422,366.4970746,3,9,20% +2018-03-26 18:00:00,46.95685598,130.7695238,677.338988,853.5516631,94.74825646,540.266951,443.2696366,96.99731435,91.89124695,5.106067401,167.0856891,0,167.0856891,2.857009516,164.2286796,0.819551743,2.282358752,-0.522873347,0.522873347,0.619570298,0.619570298,0.139883069,3.435290521,110.4907519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32936182,2.069893669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488856288,106.2079134,90.81821811,108.2778071,443.2696366,0,0.519323734,58.71310018,-0.519323734,121.2868998,0.953720942,0,513.5737534,108.2778071,584.4394126,3,10,14% +2018-03-26 19:00:00,39.33739515,149.7456803,783.5619069,881.8952224,101.4806331,711.2378291,606.9103909,104.3274382,98.42061755,5.906820632,193.0436716,0,193.0436716,3.060015511,189.9836561,0.686567065,2.613555162,-0.145899954,0.145899954,0.555104051,0.555104051,0.129511953,3.619247189,116.4074307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.6056412,2.216970821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.622132268,111.8952501,97.22777347,114.112221,606.9103909,0,0.688188773,46.51309499,-0.688188773,133.486905,0.977345516,0,690.3889228,114.112221,765.0730892,3,11,11% +2018-03-26 20:00:00,35.57212885,173.734568,830.3597671,892.5974753,104.3354098,831.8536298,724.4047149,107.4489149,101.1893122,6.25960267,204.4764367,0,204.4764367,3.146097562,201.3303391,0.62085077,3.032240236,0.169804448,-0.169804448,0.501115419,0.501115419,0.125650849,3.529168304,113.5101841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26701584,2.279336974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556870423,109.1103065,99.82388627,111.3896435,724.4047149,0,0.811569308,35.75045841,-0.811569308,144.2495416,0.988390967,0,815.8189631,111.3896435,888.721257,3,12,9% +2018-03-26 21:00:00,36.89847106,199.126716,814.3285252,889.0381724,103.3640938,889.6779734,783.291936,106.3860374,100.247285,6.138752396,200.5601877,0,200.5601877,3.1168088,197.4433789,0.643999809,3.475416823,0.473770097,-0.473770097,0.449134231,0.449134231,0.126931687,3.186359658,102.4842796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.36150339,2.258117365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308506725,98.51178776,98.67001012,100.7699051,783.291936,0,0.88105546,28.2300538,-0.88105546,151.7699462,0.993249884,0,876.6746343,100.7699051,942.6265218,3,13,8% +2018-03-26 22:00:00,42.83404088,220.7191016,736.6497713,870.1379751,98.55491693,877.2321446,776.0958449,101.1362997,95.58312256,5.553177138,181.5810601,0,181.5810601,2.971794374,178.6092657,0.747595045,3.852275045,0.80865915,-0.80865915,0.39186483,0.39186483,0.133788024,2.627907987,84.52255423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87813308,2.153054908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.903910391,81.2462941,93.78204347,83.39934901,776.0958449,0,0.891922738,26.88413947,-0.891922738,153.1158605,0.993941333,0,865.1757819,83.39934901,919.7589878,3,14,6% +2018-03-26 23:00:00,51.77035356,237.1689888,603.0732885,829.4876046,89.77396884,791.2497836,699.63661,91.61317363,87.06695245,4.546221188,148.9291173,0,148.9291173,2.707016391,146.2221009,0.903563125,4.139379738,1.237722873,-1.237722873,0.318490612,0.318490612,0.148860794,1.909143041,61.40460284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.69206644,1.96122416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383167634,59.02443989,85.07523408,60.98566405,699.63661,0,0.843456377,32.49307528,-0.843456377,147.5069247,0.990720111,0,778.2192943,60.98566405,818.1331917,3,15,5% +2018-03-26 00:00:00,62.35218999,249.8508878,424.0023185,749.1957148,76.34901584,630.9112825,553.6681626,77.24311989,74.04681132,3.196308576,105.1064756,0,105.1064756,2.302204526,102.8042711,1.088251011,4.360720631,1.90893573,-1.90893573,0.203706454,0.203706454,0.180067449,1.109416336,35.68264297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17661155,1.667939342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.803768359,34.29951368,71.9803799,35.96745302,553.6681626,0,0.739016724,42.35227725,-0.739016724,137.6477228,0.982342532,0,615.8721649,35.96745302,639.4121435,3,16,4% +2018-03-26 01:00:00,73.75615229,260.3316944,216.1966743,575.1241772,55.31953212,392.2458527,336.9646267,55.28122597,53.65144412,1.629781852,54.08747472,0,54.08747472,1.668088001,52.41938671,1.287287701,4.543645214,3.376566339,-3.376566339,0,0,0.255875962,0.417022,13.41286103,0.045139285,1,0.287929088,0,0.926230975,0.964992938,0.724496596,1,51.67939146,1.208524078,0.007558814,0.312029739,0.978788689,0.703285284,0.961238037,0.922476074,0.298471533,12.8929522,51.97786299,14.10147628,321.7542843,0,0.585898907,54.13348093,-0.585898907,125.8665191,0.964661046,0,362.3616874,14.10147628,371.5908216,3,17,3% +2018-03-26 02:00:00,85.41666324,269.7697551,24.91953917,137.136292,13.9611112,68.0232546,54.2952684,13.7279862,13.54013219,0.187854012,6.463009795,0,6.463009795,0.420979014,6.042030781,1.49080201,4.708370448,11.73897493,-11.73897493,0,0,0.560247567,0.105244753,3.385033047,0.596339486,1,0.084981149,0,0.952880685,0.991642649,0.724496596,1,13.11398848,0.304997862,0.079492364,0.312029739,0.799427925,0.523924521,0.961238037,0.922476074,0.072431342,3.253822521,13.18641982,3.558820384,21.91685594,0,0.395921952,66.67651375,-0.395921952,113.3234863,0.923712484,0,33.43129325,3.558820384,35.76047001,3,18,7% +2018-03-26 03:00:00,97.38202058,279.0450838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699636891,4.870255474,-6.747837389,6.747837389,1,0.315898155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175792835,79.87520049,-0.175792835,100.1247995,0.765574301,0,0,0,0,3,19,0% +2018-03-26 04:00:00,108.8561609,288.9664906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89989842,5.043416689,-2.276614863,2.276614863,1,0.91947776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.052048519,92.98350859,0.052048519,87.01649141,0,0,0,0,0,3,20,0% +2018-03-26 05:00:00,119.6037587,300.4522832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087479387,5.243881587,-1.120659805,1.120659805,1,0.721797803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274863162,105.9538597,0.274863162,74.04614035,0,0.868091301,0,0,0,3,21,0% +2018-03-26 06:00:00,128.9945088,314.6415462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378896,5.491530944,-0.528985402,0.528985402,1,0.620615521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477452261,118.5191369,0.477452261,61.48086305,0,0.945277488,0,0,0,3,22,0% +2018-03-26 07:00:00,136.0300633,332.668001,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374172486,5.806151934,-0.123110459,0.123110459,1,0.551206818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645996668,130.2404434,0.645996668,49.75955662,0,0.97260022,0,0,0,3,23,0% +2018-03-27 08:00:00,139.3934581,354.4602108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432874799,6.186497747,0.214074769,-0.214074769,1,0.493544748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768998614,140.2640502,0.768998614,39.73594976,0,0.984980377,0,0,0,3,0,0% +2018-03-27 09:00:00,138.1609718,17.21252008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.411363856,0.300415148,0.541471338,-0.541471338,1,0.437556637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838065138,146.9363635,0.838065138,33.06363654,0,0.990338766,0,0,0,3,1,0% +2018-03-27 10:00:00,132.6980254,37.18075686,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316017454,0.648926626,0.910779069,-0.910779069,1,0.374401296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848479931,148.0467212,0.848479931,31.95327883,0,0.991071087,0,0,0,3,2,0% +2018-03-27 11:00:00,124.269304,53.07236793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168908514,0.926287562,1.404045813,-1.404045813,1,0.290047714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799524678,143.0847364,0.799524678,36.91526365,0,0.987462843,0,0,0,3,3,0% +2018-03-27 12:00:00,114.0604838,65.67509336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990730989,1.146246616,2.233293262,-2.233293262,1,0.148238049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694528046,133.9896205,0.694528046,46.01037948,0,0.978008667,0,0,0,3,4,0% +2018-03-27 13:00:00,102.8598952,76.19581933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79524384,1.329867924,4.354730187,-4.354730187,1,0,#DIV/0!,0,0,0.176649132,1,0.225722033,0,0.935361519,0.974123482,0.724496596,1,0,0,0.027886433,0.312029739,0.923963435,0.648460031,0.961238037,0.922476074,0,0,0,0,0,0,-0.540638933,122.7271444,0.540638933,57.27285562,0,0.957516834,0,0,0,3,5,0% +2018-03-27 14:00:00,91.16282862,85.65207597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591091515,1.494910737,47.43910411,-47.43910411,1,0,#DIV/0!,0,0,0.883482624,1,0.021076535,0,0.959326194,0.998088158,0.724496596,1,0,0,0.106362902,0.312029739,0.742989092,0.467485688,0.961238037,0.922476074,0,0,0,0,0,0,-0.348339372,110.3857773,0.348339372,69.61422273,0,0.906461818,0,0,0,3,6,0% +2018-03-27 15:00:00,79.23438594,94.88251376,117.8541391,417.3027075,39.90543057,39.59056889,0,39.59056889,38.7021346,0.888434283,83.72874957,53.95035311,29.77839647,1.203295967,28.5751005,1.382900915,1.656012268,-4.771119411,4.771119411,0.653936838,0.653936838,0.338600162,0.685084007,22.03465664,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.20196389,0.871783832,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.496341031,21.18055009,37.69830492,22.05233392,0,53.95035311,-0.129283496,97.42819029,0.129283496,82.57180971,0,0.663253034,37.69830492,57.8350693,75.55020108,3,7,100% +2018-03-27 16:00:00,67.60519499,104.707271,329.1643423,685.7041207,67.92029742,135.587223,67.23359334,68.3536297,65.87224985,2.481379852,81.85775328,0,81.85775328,2.048047566,79.80970571,1.179933244,1.82748663,-1.995009067,1.995009067,0.871320333,0.871320333,0.206341601,2.227962238,71.65892416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.31891213,1.48380349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614151058,68.88128358,64.93306319,70.36508707,67.23359334,0,0.098050444,84.37308262,-0.098050444,95.62691738,0.540058402,0,101.2431302,70.36508707,147.2956723,3,8,45% +2018-03-27 17:00:00,56.51168372,116.1271484,525.1686001,799.0185506,84.29658875,342.0387056,256.3250273,85.71367832,81.75473558,3.95894274,129.8750605,0,129.8750605,2.541853172,127.3332073,0.986314947,2.02680109,-1.047564013,1.047564013,0.709297687,0.709297687,0.160513383,2.992799576,96.25872205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58576153,1.84156397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.168273105,92.52754501,80.75403464,94.36910898,256.3250273,0,0.320799845,71.28869699,-0.320799845,108.711303,0.894139576,0,309.9443857,94.36910898,371.7070802,3,9,20% +2018-03-27 18:00:00,46.59839244,130.5305407,682.5965578,854.9433167,95.15825413,544.9289724,447.4943895,97.43458286,92.28888167,5.145701183,168.3728107,0,168.3728107,2.869372459,165.5034383,0.813295374,2.278187709,-0.520203411,0.520203411,0.619113712,0.619113712,0.139406291,3.459000317,111.2533404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71158344,2.078850579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506033955,106.9409426,91.2176174,109.0197931,447.4943895,0,0.523419952,58.43806404,-0.523419952,121.561936,0.954474409,0,518.3395606,109.0197931,589.6908348,3,10,14% +2018-03-27 19:00:00,38.9484348,149.6082105,788.5142444,882.9216731,101.855443,715.7354754,611.0071964,104.728279,98.78412558,5.944153444,194.2557251,0,194.2557251,3.071317413,191.1844077,0.679778426,2.611155861,-0.14579879,0.14579879,0.555086751,0.555086751,0.129173878,3.641138276,117.1115233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.95505894,2.22515901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.637992286,112.5720507,97.59305123,114.7972097,611.0071964,0,0.692028767,46.20908135,-0.692028767,133.7909186,0.977748668,0,695.0045238,114.7972097,770.1370016,3,11,11% +2018-03-27 20:00:00,35.1758302,173.8068469,834.9873203,893.4580471,104.6854437,836.0947109,728.2714325,107.8232784,101.5287913,6.29448712,205.6089953,0,205.6089953,3.156652374,202.452343,0.613934054,3.033501741,0.168197984,-0.168197984,0.50139014,0.50139014,0.125373693,3.54947828,114.1634227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.59333601,2.2869839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.571584931,109.7382243,100.1649209,112.0252082,728.2714325,0,0.815115421,35.40122391,-0.815115421,144.5987761,0.988658994,0,820.1770227,112.0252082,893.495281,3,12,9% +2018-03-27 21:00:00,36.54055812,199.4196558,818.6392279,889.8569757,103.6964544,893.6328765,786.8920045,106.740872,100.5696237,6.171248295,201.6153894,0,201.6153894,3.126830698,198.4885587,0.63775305,3.480529587,0.470567983,-0.470567983,0.449681825,0.449681825,0.126669296,3.205286137,103.0930203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.67134761,2.265378197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322218895,99.09693243,98.9935665,101.3623106,786.8920045,0,0.884290426,27.83567297,-0.884290426,152.164327,0.99345749,0,880.7373225,101.3623106,947.0769275,3,13,8% +2018-03-27 22:00:00,42.53857941,221.1133569,740.673781,871.0329249,98.8773246,880.923751,779.4444307,101.4793203,95.89580844,5.583511823,182.5664496,0,182.5664496,2.981516155,179.5849334,0.74243827,3.859156098,0.803403913,-0.803403913,0.392763529,0.392763529,0.133496456,2.645621144,85.09227026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.17869865,2.160098305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.916743513,81.79392682,94.09544216,83.95402512,779.4444307,0,0.894850709,26.51073968,-0.894850709,153.4892603,0.994124758,0,868.9604482,83.95402512,923.9066785,3,14,6% +2018-03-27 23:00:00,51.52894349,237.5730766,606.8560491,830.6404849,90.09864227,794.7635431,702.8069701,91.95657302,87.38183578,4.574737235,149.8560815,0,149.8560815,2.716806493,147.139275,0.899349724,4.146432402,1.228992166,-1.228992166,0.319983651,0.319983651,0.148467898,1.925709332,61.93743169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.99474428,1.968317056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395169855,59.53661524,85.38991414,61.5049323,702.8069701,0,0.846102475,32.20974995,-0.846102475,147.79025,0.990905503,0,781.8052085,61.5049323,822.0589566,3,15,5% +2018-03-27 00:00:00,62.14685155,250.236525,427.5876639,751.0260898,76.70302467,634.4428497,556.8293678,77.6134819,74.39014548,3.223336424,105.9864587,0,105.9864587,2.312879198,103.6735795,1.084667179,4.36745127,1.892395558,-1.892395558,0.20653499,0.20653499,0.179385495,1.124528934,36.16871606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5066374,1.675673106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814717385,34.76674562,72.32135478,36.44241873,556.8293678,0,0.741424799,42.14707156,-0.741424799,137.8529284,0.982562277,0,619.4408865,36.44241873,643.2917207,3,16,4% +2018-03-27 01:00:00,73.57085347,260.6988495,219.547043,578.9883946,55.79208765,396.2826371,340.5178484,55.7647887,54.10975035,1.655038347,54.91405969,0,54.91405969,1.682337293,53.23172239,1.284053627,4.550053281,3.332384906,-3.332384906,0,0,0.254123612,0.420584323,13.52743759,0.038200458,1,0.291535125,0,0.925676756,0.964438719,0.724496596,1,52.10541668,1.218847642,0.006417392,0.312029739,0.981963131,0.706459727,0.961238037,0.922476074,0.301552265,13.00308755,52.40696895,14.22193519,327.5099106,0,0.588125516,53.97589833,-0.588125516,126.0241017,0.964984134,0,368.4488365,14.22193519,377.7568086,3,17,3% +2018-03-27 02:00:00,85.24193856,270.126445,26.89289747,145.7480629,14.80332563,72.5636502,58.00396944,14.55968077,14.35695075,0.202730021,6.966869234,0,6.966869234,0.446374886,6.520494348,1.487752489,4.714595861,11.28050168,-11.28050168,0,0,0.550454842,0.111593722,3.589237686,0.583146741,1,0.088417412,0,0.952506796,0.991268759,0.724496596,1,13.9070735,0.323397086,0.078117634,0.312029739,0.802470913,0.526967509,0.961238037,0.922476074,0.076734791,3.450111788,13.98380829,3.773508873,24.17914368,0,0.397974205,66.54840281,-0.397974205,113.4515972,0.924363717,0,36.33413141,3.773508873,38.80381749,3,18,7% +2018-03-27 03:00:00,97.19646873,279.4005008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696398401,4.87645867,-6.899753346,6.899753346,1,0.289918996,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177906659,79.75214773,-0.177906659,100.2478523,0.768953746,0,0,0,0,3,19,0% +2018-03-27 04:00:00,108.6525923,289.3280981,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896345477,5.04972793,-2.291536185,2.291536185,1,0.922029457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.049874504,92.85878459,0.049874504,87.14121541,0,0,0,0,0,3,20,0% +2018-03-27 05:00:00,119.3685908,300.8215933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083374932,5.250327265,-1.122591387,1.122591387,1,0.722128123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.272551233,105.8161367,0.272551233,74.18386334,0,0.866548253,0,0,0,3,21,0% +2018-03-27 06:00:00,128.7131966,315.0035668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246469072,5.497849396,-0.527194505,0.527194505,1,0.62030926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.474934182,118.3550647,0.474934182,61.64493527,0,0.944722254,0,0,0,3,22,0% +2018-03-27 07:00:00,135.6928104,332.9720899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368286313,5.811459286,-0.119429094,0.119429094,1,0.550577268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64321839,130.0322275,0.64321839,49.9677725,0,0.972265904,0,0,0,3,23,0% +2018-03-28 08:00:00,139.0093318,354.6207178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426170532,6.189299122,0.219352547,-0.219352547,1,0.492642195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765924008,139.989266,0.765924008,40.01073398,0,0.984719372,0,0,0,3,0,0% +2018-03-28 09:00:00,137.7632238,17.18594892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404421844,0.299951394,0.548747182,-0.548747182,1,0.436312395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834678494,146.5823756,0.834678494,33.41762443,0,0.990096695,0,0,0,3,1,0% +2018-03-28 10:00:00,132.3183936,37.01815061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309391629,0.646088611,0.921282161,-0.921282161,1,0.372605161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844787052,147.6491274,0.844787052,32.35087257,0,0.990813487,0,0,0,3,2,0% +2018-03-28 11:00:00,123.9183844,52.84544375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162783812,0.922326988,1.420967648,-1.420967648,1,0.28715391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795552497,142.7074716,0.795552497,37.29252845,0,0.987150596,0,0,0,3,3,0% +2018-03-28 12:00:00,113.7347201,65.42494209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98504534,1.141880652,2.26707133,-2.26707133,1,0.142461659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690322783,133.6556653,0.690322783,46.34433465,0,0.977570115,0,0,0,3,4,0% +2018-03-28 13:00:00,102.5512859,75.93819688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789857591,1.325371564,4.467575881,-4.467575881,1,0,#DIV/0!,0,0,0.189526597,1,0.220205335,0,0.936131333,0.974893296,0.724496596,1,0,0,0.029752024,0.312029739,0.919094303,0.643590899,0.961238037,0.922476074,0,0,0,0,0,0,-0.536262922,122.4296003,0.536262922,57.57039973,0,0.956762154,0,0,0,3,5,0% +2018-03-28 14:00:00,90.86275588,85.39064471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585854258,1.490347901,64.02379548,-64.02379548,1,0,#DIV/0!,0,0,0.912423284,1,0.015617923,0,0.959831621,0.998593584,0.724496596,1,0,0,0.108782629,0.312029739,0.738191304,0.462687899,0.961238037,0.922476074,0,0,0,0,0,0,-0.343866782,110.1126353,0.343866782,69.88736473,0,0.904594853,0,0,0,3,6,0% +2018-03-28 15:00:00,78.93636624,94.61655432,122.9760747,427.5904763,40.92185099,40.6149518,0,40.6149518,39.6879062,0.927045596,84.42742447,53.3765066,31.05091787,1.233944793,29.81697308,1.37769949,1.6513704,-4.649420522,4.649420522,0.674748574,0.674748574,0.332762703,0.72585827,23.34609708,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.14952504,0.893988802,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525881846,22.44115653,38.67540689,23.33514533,0,53.3765066,-0.124830906,97.17099093,0.124830906,82.82900907,0,0.649458167,38.67540689,58.00095344,76.6358709,3,7,98% +2018-03-28 16:00:00,67.29642779,104.4364335,334.7499023,689.8011213,68.51180666,139.6478375,70.67842841,68.96940907,66.44592291,2.523486163,83.22987318,0,83.22987318,2.065883752,81.16398942,1.17454424,1.822759623,-1.971292856,1.971292856,0.867264622,0.867264622,0.204665651,2.257084239,72.5955878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87034849,1.496725746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.635249848,69.7816403,65.50559834,71.27836604,70.67842841,0,0.102462038,84.11903673,-0.102462038,95.88096327,0.562014389,0,105.2278921,71.27836604,151.8781571,3,8,44% +2018-03-28 17:00:00,56.18345038,115.8576992,530.6330473,801.1576771,84.76026417,346.6387371,260.4341716,86.20456552,82.20442947,4.000136051,131.2139605,0,131.2139605,2.555834697,128.6581258,0.980586194,2.022098314,-1.039684063,1.039684063,0.707950136,0.707950136,0.159734236,3.018504654,97.08548572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0180244,1.851693537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.186896346,93.3222617,81.20492075,95.17395523,260.4341716,0,0.325072304,71.03004447,-0.325072304,108.9699555,0.896188065,0,314.6029171,95.17395523,376.8923673,3,9,20% +2018-03-28 18:00:00,46.24123179,130.2894274,687.8043963,856.3042279,95.56418856,549.5529549,451.6854191,97.86753575,92.68257568,5.184960069,169.6477519,0,169.6477519,2.881612879,166.766139,0.807061745,2.273979489,-0.517571718,0.517571718,0.618663666,0.618663666,0.138940939,3.482462328,112.0079593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.0900171,2.087718722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523032102,107.666311,91.6130492,109.7540297,451.6854191,0,0.527482411,58.1644912,-0.527482411,121.8355088,0.95521011,0,523.0675279,109.7540297,594.8993452,3,10,14% +2018-03-28 19:00:00,38.56054181,149.4689132,793.41152,883.9250524,102.2263805,720.1839603,615.0590111,105.1249491,99.14387796,5.981071176,195.4543114,0,195.4543114,3.082502547,192.3718088,0.673008416,2.608724664,-0.145696594,0.145696594,0.555069275,0.555069275,0.128844084,3.662783862,117.8077197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.30086661,2.233262602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.65367444,113.2412613,97.95454105,115.4745239,615.0590111,0,0.695827106,45.90683644,-0.695827106,134.0931636,0.978143069,0,699.5702501,115.4745239,775.1460165,3,11,11% +2018-03-28 20:00:00,34.78053569,173.8805563,839.5576916,894.2986944,105.0316811,840.2791773,732.0856484,108.1935289,101.8645884,6.32894051,206.7275751,0,206.7275751,3.167092711,203.5604824,0.607034863,3.034788213,0.166613041,-0.166613041,0.501661182,0.501661182,0.12510359,3.569555084,114.8091618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.91611699,2.294547888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.586130507,110.3589333,100.5022475,112.6534812,732.0856484,0,0.818614243,35.05368625,-0.818614243,144.9463138,0.98892117,0,824.4772436,112.6534812,898.206694,3,12,9% +2018-03-28 21:00:00,36.18427647,199.7169947,822.8938366,890.6564506,104.0251002,897.5271027,790.4354218,107.0916809,100.8883596,6.203321332,202.6568784,0,202.6568784,3.136740581,199.5201378,0.631534762,3.485719131,0.467405141,-0.467405141,0.450222703,0.450222703,0.126413755,3.224003287,103.6950281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97772869,2.272557873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335779406,99.67560529,99.3135081,101.9481632,790.4354218,0,0.887475099,27.44233611,-0.887475099,152.5576639,0.993660391,0,884.7378784,101.9481632,951.4609122,3,13,8% +2018-03-28 22:00:00,42.24525763,221.5111895,744.6458951,871.9068538,99.19611553,884.5538344,782.7353925,101.818442,96.20498666,5.613455297,183.5391474,0,183.5391474,2.991128878,180.5480185,0.737318839,3.866099587,0.798213132,-0.798213132,0.393651205,0.393651205,0.133212465,2.663160288,85.65638943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.47589251,2.16706269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929450563,82.33617962,94.40534307,84.50324231,782.7353925,0,0.897728225,26.13895908,-0.897728225,153.8610409,0.994303857,0,872.6821625,84.50324231,927.9878445,3,14,6% +2018-03-28 23:00:00,51.28958327,237.978947,610.5940288,831.767134,90.41972797,798.2175914,705.9214361,92.29615526,87.69323956,4.602915705,150.7720799,0,150.7720799,2.726488412,148.0455915,0.8951721,4.153516176,1.220377582,-1.220377582,0.321456832,0.321456832,0.148084855,1.942148721,62.46617896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.29407744,1.975331573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407080137,60.04486723,85.70115757,62.02019881,705.9214361,0,0.848700805,31.9293583,-0.848700805,148.0706417,0.991086423,0,785.3303088,62.02019881,825.9212885,3,15,5% +2018-03-28 00:00:00,61.94315728,250.6227229,431.1382293,752.8164022,77.05306909,637.9174044,559.9376676,77.97973684,74.72963476,3.250102086,106.8578896,0,106.8578896,2.323434328,104.5344552,1.081112044,4.374191695,1.876122777,-1.876122777,0.209317799,0.209317799,0.178720104,1.139578757,36.65277012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83296741,1.683320262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825620931,35.23203679,72.65858834,36.91535705,559.9376676,0,0.743790473,41.94468538,-0.743790473,138.0553146,0.982776767,0,622.9523192,36.91535705,647.1126821,3,16,4% +2018-03-28 01:00:00,73.38670444,261.0658391,222.8778952,582.7678777,56.25830019,400.2601405,344.0180879,56.24205259,54.56190487,1.680147718,55.73572139,0,55.73572139,1.696395322,54.03932607,1.28083962,4.556458458,3.289277137,-3.289277137,0,0,0.252417586,0.42409883,13.64047622,0.031332358,1,0.295139096,0,0.92512017,0.963882133,0.724496596,1,52.52497959,1.229032636,0.005280365,0.312029739,0.985135465,0.70963206,0.961238037,0.922476074,0.304615021,13.11174458,52.82959461,14.34077722,333.2391899,0,0.590317519,53.82045643,-0.590317519,126.1795436,0.96529982,0,374.5053248,14.34077722,383.8910766,3,17,3% +2018-03-28 02:00:00,85.06763479,270.4824683,28.91752705,154.3710464,15.64474701,77.14025053,61.74925783,15.3909927,15.17300017,0.217992534,7.483136075,0,7.483136075,0.471746845,7.011389229,1.484710314,4.720809641,10.8550046,-10.8550046,0,0,0.541012618,0.117936711,3.793250042,0.570107221,1,0.091864117,0,0.952129001,0.990890964,0.724496596,1,14.6994886,0.341778984,0.076745366,0.312029739,0.805523507,0.530020102,0.961238037,0.922476074,0.081032732,3.646216224,14.78052133,3.987995207,26.54556008,0,0.400005437,66.42148165,-0.400005437,113.5785184,0.925001699,0,39.3352095,3.987995207,41.94527261,3,18,7% +2018-03-28 03:00:00,97.01117283,279.7547813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693164377,4.882642033,-7.059194149,7.059194149,1,0.262653013,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.180005409,79.62992516,-0.180005409,100.3700748,0.772230569,0,0,0,0,3,19,0% +2018-03-28 04:00:00,108.4489072,289.6879783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892790501,5.056009024,-2.306727323,2.306727323,1,0.924627294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047704723,92.73431707,0.047704723,87.26568293,0,0,0,0,0,3,20,0% +2018-03-28 05:00:00,119.1330595,301.1883255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079264137,5.256727948,-1.124542723,1.124542723,1,0.722461821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.270233076,105.6781367,0.270233076,74.32186328,0,0.864974537,0,0,0,3,21,0% +2018-03-28 06:00:00,128.4315363,315.3619023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241553171,5.504103531,-0.525384009,0.525384009,1,0.619999647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47240051,118.190232,0.47240051,61.80976802,0,0.944157608,0,0,0,3,22,0% +2018-03-28 07:00:00,135.35565,333.2718488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362401754,5.816691065,-0.115713183,0.115713183,1,0.549941809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640416899,129.8229137,0.640416899,50.17708633,0,0.971925858,0,0,0,3,23,0% +2018-03-29 08:00:00,138.6259793,354.7784537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419479767,6.192052132,0.224679701,-0.224679701,1,0.491731198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762820845,139.7135124,0.762820845,40.2864876,0,0.98445381,0,0,0,3,0,0% +2018-03-29 09:00:00,137.3664834,17.15992895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397497418,0.29949726,0.556097478,-0.556097478,1,0.43505542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831260591,146.2284498,0.831260591,33.77155019,0,0.98985039,0,0,0,3,1,0% +2018-03-29 10:00:00,131.9394945,36.85797137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.302778592,0.643292956,0.931912945,-0.931912945,1,0.37078719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841063046,147.2525455,0.841063046,32.74745453,0,0.990551424,0,0,0,3,2,0% +2018-03-29 11:00:00,123.5679358,52.62101102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156667329,0.918409898,1.438157559,-1.438157559,1,0.284214262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791552142,142.3307991,0.791552142,37.66920092,0,0.986832967,0,0,0,3,3,0% +2018-03-29 12:00:00,113.4093756,65.17672199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979367007,1.137548394,2.301646979,-2.301646979,1,0.136548875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686094918,133.3217772,0.686094918,46.67822277,0,0.977123786,0,0,0,3,4,0% +2018-03-29 13:00:00,102.2432094,75.68189215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784480642,1.320898202,4.585713516,-4.585713516,1,0,#DIV/0!,0,0,0.202583316,1,0.214707298,0,0.936891968,0.975653931,0.724496596,1,0,0,0.03162233,0.312029739,0.914240366,0.638736962,0.961238037,0.922476074,0,0,0,0,0,0,-0.53187212,122.1320339,0.53187212,57.86796605,0,0.955992441,0,0,0,3,5,0% +2018-03-29 14:00:00,89.99350105,85.1299659,0.001390979,0.822295724,0.001297707,0.001269063,0,0.001269063,0.001258577,1.04858E-05,0.271781552,0.271405162,0.00037639,3.91307E-05,0.000337259,1.570682899,1.485798197,-8510.562092,8510.562092,0,0,0.932945506,9.78267E-06,0.000314644,1,0.999312678,0,0.000117501,0.961238037,1,0.724163459,0.999666863,0.001209792,2.83444E-05,0.115824807,0.311651141,0.724496596,0.448993192,0.961297942,0.922535979,7.08751E-06,0.000302458,0.001216879,0.000330803,0,0.000186543,-0.330057854,109.2722871,0.330057854,70.72771295,0,0.898511407,0.001216879,0.000498414,0.001543081,3,6,27% +2018-03-29 15:00:00,78.6392365,94.35078005,128.1129472,437.5785187,41.91610579,41.61795006,0,41.61795006,40.65218054,0.965769511,85.00290848,52.67651594,32.32639253,1.263925243,31.06246729,1.372513598,1.646731764,-4.534269448,4.534269448,0.694440567,0.694440567,0.327180872,0.767220597,24.67645171,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.07642222,0.915709536,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.555848711,23.719944,39.63227093,24.63565353,0,52.67651594,-0.12038186,96.91414131,0.12038186,83.08585869,0,0.63465503,39.63227093,58.06706934,77.63600647,3,7,96% +2018-03-29 16:00:00,66.98889577,104.1651172,340.305721,693.7930339,69.09541916,143.7144791,74.13717348,69.5773056,67.01193733,2.56536827,84.59454379,0,84.59454379,2.083481823,82.51106197,1.169176793,1.818024262,-1.948235678,1.948235678,0.863321612,0.863321612,0.203039252,2.285929606,73.52335395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41442309,1.509475488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.656148218,70.67344442,66.07057131,72.1829199,74.13717348,0,0.106857766,83.86578903,-0.106857766,96.13421097,0.582088289,0,109.2249518,72.1829199,156.4672292,3,8,43% +2018-03-29 17:00:00,55.85665346,115.5869242,536.0540119,803.2475303,85.21905004,351.214483,264.5241002,86.69038283,82.64938126,4.041001572,132.5421702,0,132.5421702,2.569668784,129.9725014,0.974882512,2.0173724,-1.031956678,1.031956678,0.706628675,0.706628675,0.158974745,3.04395437,97.90403607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44572899,1.861716286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.205334579,94.10908343,81.65106357,95.97079972,264.5241002,0,0.329318286,70.77259652,-0.329318286,109.2274035,0.898171201,0,319.2389923,95.97079972,382.0499613,3,9,20% +2018-03-29 18:00:00,45.88551882,130.0461023,692.9604818,857.6345641,95.9659703,554.1366105,455.8405394,98.29607104,93.07224222,5.223828819,170.9100197,0,170.9100197,2.893728081,168.0162916,0.800853382,2.269732664,-0.51498022,0.51498022,0.618220494,0.618220494,0.138486931,3.505669552,112.7543835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.4645794,2.096496144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539845657,108.3838022,92.00442506,110.4802984,455.8405394,0,0.531509058,57.89252738,-0.531509058,122.1074726,0.955928226,0,527.7552633,110.4802984,600.0624089,3,10,14% +2018-03-29 19:00:00,38.17384611,149.3276426,798.252185,884.9054962,102.5933771,724.5814237,619.0640533,105.5173704,99.49980829,6.017562153,196.6390529,0,196.6390529,3.09356885,193.5454841,0.666259303,2.606259028,-0.145595315,0.145595315,0.555051955,0.555051955,0.128522513,3.68417899,118.4958606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.64300039,2.241280101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669175137,113.9027284,98.31217552,116.1440085,619.0640533,0,0.699582109,45.60651385,-0.699582109,134.3934861,0.978528761,0,704.0841566,116.1440085,780.0980873,3,11,11% +2018-03-29 20:00:00,34.38634725,173.955569,844.0698114,895.1195823,105.3740784,844.4056601,735.8460441,108.5596159,102.1966612,6.362954775,207.8319153,0,207.8319153,3.177417253,204.6544981,0.600154977,3.036097431,0.165047732,-0.165047732,0.501928865,0.501928865,0.124840478,3.589395624,115.4473017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.23531795,2.302027984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600504911,110.9723377,100.8358229,113.2743657,735.8460441,0,0.822064514,34.70800331,-0.822064514,145.2919967,0.989177523,0,828.7181901,113.2743657,902.8539969,3,12,9% +2018-03-29 21:00:00,35.82970386,200.0186237,827.0917362,891.4368272,104.3500128,901.3598073,793.9213655,107.4384418,101.2034749,6.234966873,203.6845051,0,203.6845051,3.146537897,200.5379672,0.625346302,3.49098355,0.46427957,-0.46427957,0.450757207,0.450757207,0.126164981,3.242509569,104.2902538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.28062957,2.279655995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.349187145,100.2477588,99.62981671,102.5274148,793.9213655,0,0.890608668,27.05016822,-0.890608668,152.9498318,0.99385862,0,888.6754092,102.5274148,955.7775516,3,13,8% +2018-03-29 22:00:00,41.95411846,221.9124363,748.565897,872.7601073,99.51129711,888.122076,785.9684058,102.1536703,96.51066434,5.643005927,184.4991011,0,184.4991011,3.000632765,181.4984683,0.732237502,3.873102665,0.79308432,-0.79308432,0.394528283,0.394528283,0.132935921,2.680525008,86.21489852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.76972153,2.173948224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942031244,82.8730398,94.71175277,85.04698802,785.9684058,0,0.900554917,25.7688953,-0.900554917,154.2311047,0.994478677,0,876.3405735,85.04698802,932.0021262,3,14,6% +2018-03-29 23:00:00,51.05228154,238.3864257,614.2873203,832.8681219,90.73726142,801.6121113,708.9801558,92.6319555,88.0011982,4.630757297,151.677136,0,151.677136,2.736063217,148.9410728,0.891030404,4.16062802,1.211875204,-1.211875204,0.322910824,0.322910824,0.147711435,1.958461352,62.99084925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.590099,1.982268486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.418898583,60.54920027,86.00899758,62.53146876,708.9801558,0,0.851251401,31.65195935,-0.851251401,148.3480407,0.991262945,0,788.7947551,62.53146876,829.7203508,3,15,5% +2018-03-29 00:00:00,61.74109507,251.0093236,434.6542872,754.5677538,77.39922684,641.3356141,562.9936519,78.34196219,75.06535458,3.276607616,107.7208364,0,107.7208364,2.333872262,105.3869642,1.077585393,4.38093915,1.860108307,-1.860108307,0.212056435,0.212056435,0.178070777,1.154565637,37.13479968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.15567407,1.690882509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836478874,35.69538194,72.99215294,37.38626445,562.9936519,0,0.746114115,41.74511757,-0.746114115,138.2548824,0.982986122,0,626.4070997,37.38626445,650.8756621,3,16,4% +2018-03-29 01:00:00,73.20368463,261.4325217,226.1893945,586.4653569,56.71836419,404.1795798,347.4663723,56.71320744,55.00809624,1.705111199,56.55250538,0,56.55250538,1.710267949,54.84223743,1.277645321,4.562858275,3.247197342,-3.247197342,0,0,0.250756072,0.427566987,13.75202406,0.024532767,1,0.298741515,0,0.924561147,0.96332311,0.724496596,1,52.93826107,1.239083307,0.004147519,0.312029739,0.988306167,0.712802763,0.961238037,0.922476074,0.307660796,13.21896861,53.24592187,14.45805192,338.9420607,0,0.592475529,53.66712328,-0.592475529,126.3328767,0.965608329,0,380.5311986,14.45805192,389.9937045,3,17,2% +2018-03-29 02:00:00,84.89375085,270.8376933,30.99055512,162.9886576,16.48408659,81.7447099,65.52405945,16.22065045,15.98703056,0.233619895,8.011074914,0,8.011074914,0.49705603,7.514018884,1.481675467,4.727009487,10.45901271,-10.45901271,0,0,0.531906787,0.124264008,3.99675764,0.557217039,1,0.095321562,0,0.951747247,0.99050921,0.724496596,1,15.48999991,0.360115402,0.075375429,0.312029739,0.808585917,0.533082513,0.961238037,0.922476074,0.085319382,3.841835467,15.57531929,4.201950869,29.01293705,0,0.402016069,66.29572666,-0.402016069,113.7042733,0.925626862,0,42.43047318,4.201950869,45.18056598,3,18,6% +2018-03-29 03:00:00,96.82611709,280.107797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689934545,4.888803319,-7.226785208,7.226785208,1,0.233993254,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182089882,79.50848674,-0.182089882,100.4915133,0.775410334,0,0,0,0,3,19,0% +2018-03-29 04:00:00,108.2451026,290.0460015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889233439,5.062257709,-2.322204448,2.322204448,1,0.927274039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04553847,92.61006479,0.04553847,87.38993521,0,0,0,0,0,3,20,0% +2018-03-29 05:00:00,118.8971824,301.5523504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075147305,5.263081381,-1.126518451,1.126518451,1,0.722799691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267908184,105.5398295,0.267908184,74.46017054,0,0.863368897,0,0,0,3,21,0% +2018-03-29 06:00:00,128.1495724,315.7164377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236631973,5.51029134,-0.523556698,0.523556698,1,0.619687158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469851036,118.0246274,0.469851036,61.9753726,0,0.943583293,0,0,0,3,22,0% +2018-03-29 07:00:00,135.0186538,333.567196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356520061,5.821845846,-0.111964955,0.111964955,1,0.549300825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637592366,129.6125217,0.637592366,50.38747831,0,0.97157999,0,0,0,3,23,0% +2018-03-30 08:00:00,138.2434909,354.9333353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412804085,6.194755327,0.230054182,-0.230054182,1,0.490812107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759689722,139.4368521,0.759689722,40.56314789,0,0.984183656,0,0,0,3,0,0% +2018-03-30 09:00:00,136.9708635,17.13432409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390592548,0.299050371,0.563520227,-0.563520227,1,0.433786055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827812479,145.8746781,0.827812479,34.12532187,0,0.989599847,0,0,0,3,1,0% +2018-03-30 10:00:00,131.5614654,36.70008863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296180739,0.640537382,0.942669662,-0.942669662,1,0.368947683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837309402,146.8570803,0.837309402,33.14291974,0,0.990284917,0,0,0,3,2,0% +2018-03-30 11:00:00,123.2181069,52.39898715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150561664,0.914534851,1.455615651,-1.455615651,1,0.281228753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787525505,141.9548636,0.787525505,38.04513635,0,0.986509993,0,0,0,3,3,0% +2018-03-30 12:00:00,113.0846006,64.93038983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973698613,1.133249087,2.337036151,-2.337036151,1,0.13049697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68184668,132.9881182,0.68184668,47.01188177,0,0.976669732,0,0,0,3,4,0% +2018-03-30 13:00:00,101.9358136,75.42688492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779115573,1.316447486,4.709478762,-4.709478762,1,0,#DIV/0!,0,0,0.21581827,1,0.209230123,0,0.937643168,0.976405131,0.724496596,1,0,0,0.033496682,0.312029739,0.909403571,0.633900167,0.961238037,0.922476074,0,0,0,0,0,0,-0.527469,121.8346043,0.527469,58.16539567,0,0.955207699,0,0,0,3,5,0% +2018-03-30 14:00:00,89.74375083,84.87003092,0.083368873,1.591475725,0.076251194,0.074580409,0,0.074580409,0.073951939,0.00062847,0.54190714,0.519394136,0.022513003,0.002299255,0.020213748,1.566323935,1.481261476,-216.1045065,216.1045065,0,0,0.914624262,0.000574814,0.018487985,1,0.972592378,0,0.004627358,0.961238037,1,0.711458528,0.986961932,0.071085417,0.001653186,0.115824807,0.297214216,0.724496596,0.448993192,0.963560442,0.924798479,0.000416451,0.01779465,0.071501867,0.019447835,0,0.014235358,-0.326360075,109.0479951,0.326360075,70.95200492,0,0.896794985,0.071501867,0.032214033,0.092585308,3,6,29% +2018-03-30 15:00:00,78.34314727,94.08518571,133.2595112,447.2709368,42.88849785,42.59981789,0,42.59981789,41.5952514,1.004566485,85.45974604,51.85618827,33.60355778,1.293246452,32.31031133,1.367345866,1.642096268,-4.425198469,4.425198469,0.713092803,0.713092803,0.321841927,0.809109559,26.02374472,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.9829378,0.936952652,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.586197121,25.01501329,40.56913492,25.95196594,0,51.85618827,-0.115939096,96.65779364,0.115939096,83.34220636,0,0.618739092,40.56913492,58.03741678,78.55346345,3,7,94% +2018-03-30 16:00:00,66.68274358,103.8933113,345.8288638,697.6814975,69.6711059,147.7839316,77.60666256,70.17726905,67.570265,2.607004054,85.9510528,0,85.9510528,2.100840902,83.8502119,1.16383343,1.813280354,-1.925821337,1.925821337,0.859488534,0.859488534,0.201461223,2.314488152,74.44189498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95110888,1.522052082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676838788,71.55638099,66.62794766,73.07843308,77.60666256,0,0.111235088,83.61348215,-0.111235088,96.38651785,0.600501546,0,113.2308685,73.07843308,161.0592414,3,8,42% +2018-03-30 17:00:00,55.53143859,115.3147906,541.4290782,805.2885327,85.67285387,355.7633104,268.5922881,87.17102232,83.08950123,4.081521092,133.8591011,0,133.8591011,2.583352643,131.2757485,0.969206442,2.012622773,-1.024382327,1.024382327,0.705333385,0.705333385,0.158234674,3.069140032,98.71409352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86878904,1.871630196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223581505,94.88774146,82.09237055,96.75937166,268.5922881,0,0.333535469,70.51649487,-0.333535469,109.4835051,0.900090906,0,323.8498464,96.75937166,387.1769199,3,9,20% +2018-03-30 18:00:00,45.53139756,129.8004807,698.0628597,858.9345087,96.36351406,558.6776954,459.9576041,98.72009127,93.45779857,5.2622927,172.1591377,0,172.1591377,2.905715493,169.2534222,0.7946728,2.265445759,-0.512430836,0.512430836,0.617784524,0.617784524,0.138044179,3.528615346,113.4923991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.83519083,2.105180983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556469806,109.0932109,92.39166063,111.1983919,459.9576041,0,0.535497875,57.62231763,-0.535497875,122.3776824,0.956628948,0,532.4004195,111.1983919,605.177543,3,10,14% +2018-03-30 19:00:00,37.78847646,149.1842468,803.0347668,885.8631542,102.9563688,728.926065,623.0205953,105.9054697,99.85185446,6.053615275,197.8095908,0,197.8095908,3.104514389,194.7050764,0.659533333,2.603756298,-0.145496894,0.145496894,0.555035124,0.555035124,0.128209105,3.705319069,119.1757982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98140056,2.249210107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684491052,114.5563103,98.66589161,116.8055204,623.0205953,0,0.703292142,45.30826657,-0.703292142,134.6917334,0.978905789,0,708.544359,116.8055204,784.991236,3,11,11% +2018-03-30 20:00:00,33.9933642,174.0317497,848.5226921,895.9208872,105.7125963,848.4728608,739.5513669,108.921494,102.5249715,6.39652247,208.9217754,0,208.9217754,3.187624817,205.7341505,0.593296129,3.037427036,0.163500168,-0.163500168,0.502193514,0.502193514,0.124584289,3.608997175,116.077755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.55090234,2.309423329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614706168,111.5783533,101.1656085,113.8877767,739.5513669,0,0.825465035,34.36433286,-0.825465035,145.6356671,0.989428083,0,832.8984993,113.8877767,907.4357714,3,12,9% +2018-03-30 21:00:00,35.47691398,200.324427,831.2323959,892.1983458,104.6711787,905.1302248,797.3490874,107.7811374,101.5149565,6.266180914,204.6981403,0,204.6981403,3.156222233,201.5419181,0.619188957,3.496320823,0.461189263,-0.461189263,0.451285681,0.451285681,0.125922882,3.260803803,104.8786592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.58003746,2.286672264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.362441255,100.8133565,99.94247872,103.1000288,797.3490874,0,0.89369039,26.65929316,-0.89369039,153.3407068,0.994052213,0,892.5491032,103.1000288,960.0260101,3,13,8% +2018-03-30 22:00:00,41.66519987,222.3169291,752.4336521,873.5930405,99.82288119,891.6282393,789.1432235,102.4850157,96.81285302,5.672162699,185.4462785,0,185.4462785,3.010028175,182.4362503,0.727194921,3.880162396,0.788014994,-0.788014994,0.395395189,0.395395189,0.132666689,2.697715221,86.76779485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.06019678,2.180755166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954485495,83.40450479,95.01468227,85.58525995,789.1432235,0,0.903330483,25.40064243,-0.903330483,154.5993576,0.994649272,0,879.935415,85.58525995,935.9492559,3,14,6% +2018-03-30 23:00:00,50.81704233,238.7953366,617.9360934,833.9440259,91.05128226,804.9473669,711.9833534,92.96401345,88.30575016,4.658263289,152.5712922,0,152.5712922,2.745532104,149.8257601,0.886924705,4.167764863,1.203481154,-1.203481154,0.324346291,0.324346291,0.147347409,1.974647658,63.5114565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.88284593,1.989128663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430625507,61.04962777,86.31347143,63.03875643,711.9833534,0,0.853754366,31.3776062,-0.853754366,148.6223938,0.991435146,0,792.1987912,63.03875643,833.4563966,3,15,5% +2018-03-30 00:00:00,61.54064905,251.3961693,438.136179,756.2812449,77.74157891,644.69822,565.997981,78.70023905,75.39738347,3.302855587,108.5753846,0,108.5753846,2.34419544,106.2311892,1.07408695,4.387690881,1.844343287,-1.844343287,0.214752412,0.214752412,0.177437022,1.169489658,37.61480748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.47483287,1.698361616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847291276,36.1567837,73.32212414,37.85514532,565.997981,0,0.748396162,41.54836117,-0.748396162,138.4516388,0.983190464,0,629.8059419,37.85514532,654.5813774,3,16,4% +2018-03-30 01:00:00,73.02177057,261.7987566,229.4817712,590.0835238,57.17247381,408.0422326,350.8637893,57.17844331,55.44851278,1.729930525,57.36447331,0,57.36447331,1.723961029,55.64051228,1.274470322,4.56925028,3.206102025,-3.206102025,0,0,0.249137322,0.430990257,13.8621282,0.017799484,1,0.302342925,0,0.923999615,0.962761578,0.724496596,1,53.34544137,1.249003897,0.003018637,0.312029739,0.991475738,0.715972334,0.961238037,0.922476074,0.310690599,13.32480489,53.65613197,14.57380879,344.6185948,0,0.594600214,53.51586252,-0.594600214,126.4841375,0.965909886,0,386.5266394,14.57380879,396.0649058,3,17,2% +2018-03-30 02:00:00,84.72028167,271.1919894,33.10927993,171.5862549,17.32023652,86.36953931,69.32198009,17.04755922,16.79796749,0.249591738,8.54999728,0,8.54999728,0.522269036,8.027728244,1.478647858,4.733193119,10.08952006,-10.08952006,0,0,0.523123323,0.130567259,4.199491871,0.544472233,1,0.098790102,0,0.951361471,0.990123435,0.724496596,1,16.2775433,0.378382139,0.074007668,0.312029739,0.811658406,0.536155002,0.961238037,0.922476074,0.089589894,4.036711322,16.3671332,4.415093461,31.57808681,0,0.404006604,66.17110921,-0.404006604,113.8288908,0.926239647,0,45.61600917,4.415093461,48.50559954,3,18,6% +2018-03-30 03:00:00,96.64128436,280.4594206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686708605,4.894940308,-7.40322331,7.40322331,1,0.203820562,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184160911,79.38778436,-0.184160911,100.6122156,0.778498303,0,0,0,0,3,19,0% +2018-03-30 04:00:00,108.0411746,290.4020399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885674225,5.068471751,-2.337984665,2.337984665,1,0.929972615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.043375015,92.48598523,0.043375015,87.51401477,0,0,0,0,0,3,20,0% +2018-03-30 05:00:00,118.6609765,301.9135412,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071024734,5.269385351,-1.128523398,1.128523398,1,0.723142557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265576041,105.401184,0.265576041,74.59881597,0,0.861730004,0,0,0,3,21,0% +2018-03-30 06:00:00,127.8673493,316.067061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231706251,5.516410871,-0.521715441,0.521715441,1,0.619372285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467285556,117.8582399,0.467285556,62.14176013,0,0.942999047,0,0,0,3,22,0% +2018-03-30 07:00:00,134.6818927,333.8580529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350642471,5.826922257,-0.108186702,0.108186702,1,0.548654705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634744971,129.401072,0.634744971,50.59892797,0,0.971228206,0,0,0,3,23,0% +2018-03-31 08:00:00,137.861956,355.0852822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406145045,6.197407299,0.235473873,-0.235473873,1,0.489885286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756531257,139.1593481,0.756531257,40.84065188,0,0.983908877,0,0,0,3,0,0% +2018-03-31 09:00:00,136.5764754,17.10900144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383709177,0.298608407,0.571013349,-0.571013349,1,0.432504656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824335229,145.5211515,0.824335229,34.47884847,0,0.989345065,0,0,0,3,1,0% +2018-03-31 10:00:00,131.1844415,36.54437317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289600432,0.637819635,0.953550421,-0.953550421,1,0.367086964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833527634,146.4628352,0.833527634,33.53716482,0,0.990013986,0,0,0,3,2,0% +2018-03-31 11:00:00,122.8690448,52.17928873,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144469381,0.91070039,1.473341832,-1.473341832,1,0.278197397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783474499,141.5798073,0.783474499,38.42019266,0,0.986181714,0,0,0,3,3,0% +2018-03-31 12:00:00,112.7605436,64.68590089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968042752,1.12898195,2.373254908,-2.373254908,1,0.124303198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677580311,132.6548482,0.677580311,47.34515182,0,0.976208009,0,0,0,3,4,0% +2018-03-31 13:00:00,101.6292448,75.17315363,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773764939,1.31201904,4.839235415,-4.839235415,1,0,#DIV/0!,0,0,0.229230244,1,0.203775988,0,0.938384691,0.977146654,0.724496596,1,0,0,0.035374399,0.312029739,0.904585855,0.629082451,0.961238037,0.922476074,0,0,0,0,0,0,-0.523056041,121.5374689,0.523056041,58.46253114,0,0.954407949,0,0,0,3,5,0% +2018-03-31 14:00:00,89.49104778,84.61083024,0.240174788,2.861066754,0.214760575,0.21009529,0,0.21009529,0.208284751,0.001810539,0.987687948,0.922978966,0.064708982,0.006475824,0.058233158,1.561913435,1.476737571,-108.9325476,108.9325476,0,0,0.89418451,0.001618956,0.052071188,1,0.944930028,0,0.009179735,0.961238037,1,0.698794786,0.97429819,0.200211225,0.004623523,0.115824807,0.282828669,0.724496596,0.448993192,0.965772229,0.927010266,0.001172928,0.050177755,0.201384153,0.054801278,0,0.050828425,-0.322599592,108.8202102,0.322599592,71.17978977,0,0.895009103,0.201384153,0.100293181,0.267024035,3,6,33% +2018-03-31 15:00:00,78.04824736,93.81976573,138.410703,456.6723982,43.83935535,43.56083538,0,43.56083538,42.51743703,1.043398344,85.80260275,50.92140703,34.88119572,1.321918314,33.55927741,1.362198892,1.637463815,-4.321783355,4.321783355,0.730777829,0.730777829,0.316733854,0.851464806,27.38603507,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.86937771,0.957725318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.616883354,26.32449858,41.48626106,27.2822239,0,50.92140703,-0.111505331,96.40209859,0.111505331,83.59790141,0,0.601590947,41.48626106,57.91608137,79.391178,3,7,91% +2018-03-31 16:00:00,66.37811464,103.621005,351.3164533,701.468167,70.23884069,151.8530028,81.08375047,70.76925231,68.12088049,2.648371822,87.2987017,0,87.2987017,2.117960201,85.1807415,1.158516652,1.808527712,-1.904034129,1.904034129,0.855762702,0.855762702,0.199930405,2.342750041,75.35089447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48038143,1.534454955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69731443,72.43014588,67.17769586,73.96460083,81.08375047,0,0.11559149,83.36225756,-0.11559149,96.63774244,0.617442205,0,117.2422255,73.96460083,165.6505775,3,8,41% +2018-03-31 17:00:00,55.20795031,115.0412661,546.7558919,807.2811273,86.12158723,360.2826247,272.6362442,87.64638048,83.52470362,4.121676864,135.1641797,0,135.1641797,2.59688361,132.5672961,0.963560506,2.00784887,-1.016961385,1.016961385,0.704064329,0.704064329,0.15751378,3.094053279,99.51538918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.28712214,1.881433335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.241631068,95.65797733,82.5287532,97.53941067,272.6362442,0,0.337721563,70.26187996,-0.337721563,109.73812,0.901949045,0,328.4327532,97.53941067,392.2703467,3,9,19% +2018-03-31 18:00:00,45.17901118,129.5524781,703.1096431,860.204261,96.75673867,563.174019,464.0345155,99.13950349,93.83916601,5.300337485,173.394646,0,173.394646,2.917572665,170.4770733,0.788522498,2.261117296,-0.509925412,0.509925412,0.617356071,0.617356071,0.137612589,3.551293391,114.221803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.20177571,2.113771464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.572899973,109.7943416,92.77467569,111.9081131,464.0345155,0,0.539446893,57.35400564,-0.539446893,122.6459944,0.95731247,0,537.0007039,111.9081131,610.2423258,3,10,14% +2018-03-31 19:00:00,37.40456079,149.0385699,807.7578639,886.7981868,103.3152956,733.2161471,626.9269689,106.2891782,100.1999583,6.089219976,198.9655834,0,198.9655834,3.115337356,195.850246,0.652832741,2.601213757,-0.145403222,0.145403222,0.555019105,0.555019105,0.127903794,3.726199823,119.847395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.31601117,2.257051309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.699619087,115.2018747,99.01563026,117.458926,626.9269689,0,0.706955628,45.01224642,-0.706955628,134.9877536,0.979274203,0,712.9490383,117.458926,789.8235562,3,11,11% +2018-03-31 20:00:00,33.60168417,174.1089577,852.9154165,896.7027938,106.0471995,852.4795507,743.2004288,109.2791218,102.8494852,6.429636682,209.9969318,0,209.9969318,3.197714338,206.7992174,0.586460023,3.038774569,0.161968497,-0.161968497,0.502455445,0.502455445,0.124334955,3.628357301,116.7004432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86283721,2.316733152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.628732514,112.1769049,101.4915697,114.4936381,743.2004288,0,0.828814669,34.02283234,-0.828814669,145.9771677,0.989672882,0,837.0168803,114.4936381,911.9506766,3,12,9% +2018-03-31 21:00:00,35.12597776,200.6342835,835.3153512,892.9412529,104.9885876,908.8376595,800.7179052,108.1197543,101.8227943,6.296959956,205.6976711,0,205.6976711,3.165793283,202.5318778,0.613063965,3.50172884,0.458132249,-0.458132249,0.451808461,0.451808461,0.125687368,3.278885059,105.4602146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.87594293,2.293606457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375541064,101.3723696,100.251484,103.6659761,800.7179052,0,0.89671958,26.26983419,-0.89671958,153.7301658,0.994241209,0,896.3582218,103.6659761,964.2055299,3,13,8% +2018-03-31 22:00:00,41.3785365,222.724496,756.2490847,874.4060116,100.1308827,895.0721537,792.2596615,102.8124922,97.11156714,5.700925041,186.3806617,0,186.3806617,3.019315557,183.3613461,0.722191702,3.88727578,0.783002725,-0.783002725,0.396252338,0.396252338,0.132404633,2.714731051,87.31508244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34733215,2.187483843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966813405,83.93057843,95.31414556,86.11806227,792.2596615,0,0.906054683,25.03429219,-0.906054683,154.9657078,0.994815693,0,883.4664895,86.11806227,939.8290389,3,14,6% +2018-03-31 23:00:00,50.58386673,239.2055028,621.5405659,834.9954206,91.36183237,808.223679,714.9313076,93.29237136,88.60693603,4.685435326,153.4546025,0,153.4546025,2.754896335,150.6997062,0.882855023,4.174923612,1.195191667,-1.195191667,0.325763877,0.325763877,0.146992549,1.990708233,64.0280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.17235724,1.995913017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442261338,61.54616805,86.61461858,63.54208107,714.9313076,0,0.856209855,31.10634758,-0.856209855,148.8936524,0.991603101,0,795.5427206,63.54208107,837.1297418,3,15,5% +2018-03-31 00:00:00,61.34180131,251.7831024,441.5842831,757.9579562,78.08020686,648.0060049,568.9513555,79.05464939,75.72580054,3.328848852,109.4216282,0,109.4216282,2.354406322,107.0672219,1.070616402,4.394444138,1.828819204,-1.828819204,0.217407186,0.217407186,0.176818356,1.18435103,38.0928003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.79051985,1.705759366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.858058289,36.61624858,73.64857814,38.32200794,568.9513555,0,0.750637091,41.35440513,-0.750637091,138.6455949,0.983389916,0,633.1496036,38.32200794,658.2305914,3,16,4% +2018-03-31 01:00:00,72.84093768,262.164404,232.7552882,593.6249927,57.6208189,411.8493943,354.211448,57.63794629,55.88333861,1.754607678,58.17169465,0,58.17169465,1.737480288,56.43421436,1.271314193,4.575632031,3.165950101,-3.165950101,0,0,0.247559655,0.434370072,13.97083465,0.011130384,1,0.305943863,0,0.923435498,0.962197462,0.724496596,1,53.7466965,1.258798554,0.001893503,0.312029739,0.994644674,0.71914127,0.961238037,0.922476074,0.313705423,13.42929768,54.06040192,14.68809623,350.2689385,0,0.596692276,53.36663513,-0.596692276,126.6333649,0.966204714,0,392.4919014,14.68809623,402.1049666,3,17,2% +2018-03-31 02:00:00,84.54722012,271.545227,35.27115258,180.1509201,18.15224517,91.00801304,73.1372362,17.87077685,17.604888,0.265888847,9.099256464,0,9.099256464,0.547357166,8.551899298,1.475627365,4.739358279,9.743913992,-9.743913992,0,0,0.514648483,0.136839292,4.401222,0.5318689,1,0.102270112,0,0.950971611,0.989733575,0.724496596,1,17.06120138,0.396558404,0.072641924,0.312029739,0.814741257,0.539237853,0.961238037,0.922476074,0.093840219,4.230621995,17.1550416,4.627180399,34.23781482,0,0.405977589,66.04759758,-0.405977589,113.9524024,0.926840492,0,48.88803475,4.627180399,51.91643177,3,18,6% +2018-03-31 03:00:00,96.45665787,280.8095262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683486265,4.901050803,-7.589284879,7.589284879,1,0.172002159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186219333,79.26776954,-0.186219333,100.7322305,0.781499414,0,0,0,0,3,19,0% +2018-03-31 04:00:00,107.8371206,290.7559673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882112811,5.07464895,-2.354085816,2.354085816,1,0.932726074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041213636,92.36203639,0.041213636,87.63796361,0,0,0,0,0,3,20,0% +2018-03-31 05:00:00,118.4244601,302.2717738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066896744,5.275637688,-1.130562492,1.130562492,1,0.723491262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.26323615,105.2621709,0.26323615,74.73782915,0,0.860056484,0,0,0,3,21,0% +2018-03-31 06:00:00,127.5849128,316.4136639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.226776805,5.522460233,-0.519863146,0.519863146,1,0.619055524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464703894,117.6910603,0.464703894,62.30893975,0,0.942404603,0,0,0,3,22,0% +2018-03-31 07:00:00,134.3454385,334.1443448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344770237,5.831918995,-0.104380749,0.104380749,1,0.548003849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631874932,129.1885875,0.631874932,50.81141251,0,0.970870417,0,0,0,3,23,0% +2018-04-01 08:00:00,137.4814638,355.2342179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399504203,6.200006719,0.240936613,-0.240936613,1,0.488951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753346106,138.8810652,0.753346106,41.11893476,0,0.983629444,0,0,0,4,0,0% +2018-04-01 09:00:00,136.1834291,17.08383349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376849225,0.298169143,0.578574689,-0.578574689,1,0.431211591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82082995,145.1679615,0.82082995,34.83203853,0,0.989086043,0,0,0,4,1,0% +2018-04-01 10:00:00,130.8085564,36.39069943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283039999,0.635137522,0.964553214,-0.964553214,1,0.365205375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829719289,146.069913,0.829719289,33.93008701,0,0.989738655,0,0,0,4,2,0% +2018-04-01 11:00:00,122.5208946,51.96183379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138393013,0.906905085,1.491335812,-1.491335812,1,0.275120245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779401063,141.20577,0.779401063,38.79423005,0,0.985848176,0,0,0,4,3,0% +2018-04-01 12:00:00,112.4373515,64.443211,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962401986,1.124746212,2.410319417,-2.410319417,1,0.117964793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67329807,132.3221246,0.67329807,47.67787537,0,0.975738685,0,0,0,4,4,0% +2018-04-01 13:00:00,101.3236481,74.92067727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768431269,1.307612496,4.975378433,-4.975378433,1,0,#DIV/0!,0,0,0.242817824,1,0.198347048,0,0.939116308,0.977878271,0.724496596,1,0,0,0.037254791,0.312029739,0.899789142,0.624285738,0.961238037,0.922476074,0,0,0,0,0,0,-0.518635725,121.240783,0.518635725,58.75921696,0,0.95359322,0,0,0,4,5,0% +2018-04-01 14:00:00,89.23496753,84.35235526,0.501686497,4.807879523,0.437491984,0.428081911,0,0.428081911,0.424299987,0.003781925,1.667436145,1.532604448,0.134831697,0.013191997,0.121639699,1.557443991,1.472226331,-72.55150665,72.55150665,0,0,0.872042575,0.003297999,0.106074997,1,0.916228205,0,0.013782439,0.961238037,1,0.686155734,0.961659138,0.407853286,0.009356228,0.115824807,0.26847725,0.724496596,0.448993192,0.967935879,0.929173916,0.002389389,0.102329353,0.410242676,0.111685581,0,0.128389025,-0.318769312,108.5885144,0.318769312,71.41148558,0,0.893146758,0.410242676,0.226355823,0.558388034,4,6,36% +2018-04-01 15:00:00,77.75468349,93.55451599,143.5616388,465.7880342,44.76902594,44.5013029,0,44.5013029,43.41907463,1.082228274,86.03622757,49.87809484,36.15813273,1.349951312,34.80818142,1.357075236,1.632834334,-4.223638328,4.223638328,0.747561617,0.747561617,0.311845325,0.8942272,28.76142064,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.73606606,0.97803513,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.647864562,27.64657151,42.38393062,28.62460664,0,49.87809484,-0.107083246,96.14720462,0.107083246,83.85279538,0,0.583073551,42.38393062,57.70720451,80.15214183,4,7,89% +2018-04-01 16:00:00,66.07515081,103.3481898,356.7656748,705.1547118,70.79860036,155.9185358,84.56532409,71.35321169,68.66376134,2.689450355,88.63680736,0,88.63680736,2.13483902,86.50196834,1.153228935,1.803766188,-1.882858767,1.882858767,0.852141502,0.852141502,0.198445662,2.370705788,76.2500474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.00221915,1.546683603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717568273,73.29444587,67.71978743,74.84112947,84.56532409,0,0.119924497,83.11225489,-0.119924497,96.88774511,0.633071005,0,121.2556421,74.84112947,170.2376645,4,8,40% +2018-04-01 17:00:00,54.88633186,114.7663214,552.032163,809.2257761,86.56516586,364.7698799,276.6535216,88.11635835,83.95490672,4.161451624,136.4568483,0,136.4568483,2.610259142,133.8465891,0.957947205,2.003050178,-1.009694099,1.009694099,0.70282155,0.70282155,0.156811816,3.118686072,100.3076645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.70064972,1.891123863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259477443,96.41954249,82.96012716,98.31066635,276.6535216,0,0.341874332,70.00889029,-0.341874332,109.9911097,0.903747429,0,332.985036,98.31066635,397.3274009,4,9,19% +2018-04-01 18:00:00,44.82850211,129.3020123,708.0990117,861.4440337,97.14556693,567.6234511,468.0692319,99.55421911,94.21626966,5.337949453,174.6161007,0,174.6161007,2.929297272,171.6868035,0.782404961,2.256745843,-0.507465694,0.507465694,0.616935434,0.616935434,0.137192067,3.573697661,114.9424013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56426209,2.122265902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.58913179,110.4870082,93.15339388,112.6092741,468.0692319,0,0.543354198,57.08773313,-0.543354198,122.9122669,0.957978994,0,541.5538857,112.6092741,615.2544034,4,10,14% +2018-04-01 19:00:00,37.02222674,148.8904553,812.4201397,887.7107639,103.6701011,737.449999,630.7815678,106.6684312,100.544065,6.124366181,200.1067048,0,200.1067048,3.126036049,196.9806687,0.646159753,2.59862867,-0.145316117,0.145316117,0.555004209,0.555004209,0.127606513,3.74681723,120.5105217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64677967,2.264802476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.714556329,115.8392973,99.361336,118.1040998,630.7815678,0,0.710571048,44.71860363,-0.710571048,135.2813964,0.97963406,0,717.296444,118.1040998,794.5932152,4,11,11% +2018-04-01 20:00:00,33.21140402,174.1870489,857.2471265,897.4654923,106.3778557,856.4245669,746.792105,109.6324618,103.1701709,6.462290942,211.0571755,0,211.0571755,3.207684843,207.8494907,0.579648349,3.040137518,0.160450935,-0.160450935,0.502714964,0.502714964,0.124092403,3.647473775,117.3152947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.17109254,2.323956749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642582334,112.7679236,101.8136749,115.0918803,746.792105,0,0.832112333,33.68365888,-0.832112333,146.3163411,0.989911959,0,841.0721105,115.0918803,916.3974444,4,12,9% +2018-04-01 21:00:00,34.77696476,200.9480687,839.3401867,893.665797,105.3022319,912.4814766,804.0271946,108.4542819,102.1269811,6.327300866,206.6829966,0,206.6829966,3.175250815,203.5077458,0.606972539,3.507205424,0.455106635,-0.455106635,0.452325871,0.452325871,0.125458346,3.296752559,106.0348948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1683388,2.300458407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388486006,101.9247741,100.5568248,104.2252325,804.0271946,0,0.89969561,25.88191464,-0.89969561,154.1180854,0.994425649,0,900.1020893,104.2252325,968.3154195,4,13,8% +2018-04-01 22:00:00,41.09416123,223.1349619,760.0121554,875.1993761,100.4353181,898.453699,795.3175836,103.1361154,97.40682271,5.729292658,187.3022416,0,187.3022416,3.028495408,184.2737462,0.717228417,3.894439762,0.778045187,-0.778045187,0.397100126,0.397100126,0.132149621,2.731572713,87.85676818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63114304,2.194134614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979015132,84.45126737,95.61015817,86.64540198,795.3175836,0,0.90872732,24.66993515,-0.90872732,155.3300649,0.994977994,0,886.9336521,86.64540198,943.6413348,4,14,6% +2018-04-01 23:00:00,50.3527546,239.6167462,625.1009774,836.0228689,91.66895396,811.4414027,717.8243307,93.61707198,88.90479677,4.712275211,154.3271263,0,154.3271263,2.764157184,151.5629691,0.878821355,4.182101164,1.18700316,-1.18700316,0.327164194,0.327164194,0.146646634,2.006643704,64.54055931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.45867232,2.00262247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453806533,62.03884053,86.91247885,64.041463,717.8243307,0,0.858618056,30.83822937,-0.858618056,149.1617706,0.99176689,0,798.8268826,64.041463,840.7407393,4,15,5% +2018-04-01 00:00:00,61.14453365,252.169966,444.9989842,759.5989342,78.4151905,651.2597629,571.8544894,79.4052735,76.05068319,3.354590311,110.2596631,0,110.2596631,2.364507315,107.8951557,1.067173432,4.401196181,1.813528007,-1.813528007,0.220022135,0.220022135,0.176214313,1.199149965,38.56878491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.10280941,1.713077501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.868780067,37.07378309,73.97158948,38.78686059,571.8544894,0,0.752837404,41.16323602,-0.752837404,138.836764,0.983584596,0,636.4388567,38.78686059,661.8240812,4,16,4% +2018-04-01 01:00:00,72.6611619,262.5293251,236.0102096,597.0922694,58.06358145,415.602339,357.5104441,58.09189489,56.31275024,1.779144651,58.97423895,0,58.97423895,1.750831213,57.22340774,1.268176513,4.582001106,3.126703062,-3.126703062,0,0,0.246021482,0.437707803,14.07818756,0.00452347,1,0.309544828,0,0.922868727,0.96163069,0.724496596,1,54.14219506,1.268471253,0.000771918,0.312029739,0.997813438,0.722310034,0.961238037,0.922476074,0.316706224,13.53248937,54.45890128,14.80096063,355.8932562,0,0.598752425,53.2194012,-0.598752425,126.7805988,0.966493031,0,398.4272533,14.80096063,408.114186,4,17,2% +2018-04-01 02:00:00,84.37455884,271.8972778,37.47375514,188.6712421,18.97929383,95.65407388,76.96458279,18.68949109,18.4069981,0.282492995,9.658241525,0,9.658241525,0.572295735,9.08594579,1.472613857,4.745502724,9.419915946,-9.419915946,0,0,0.506468961,0.143073934,4.601749524,0.519403325,1,0.105761951,0,0.950577603,0.989339566,0.724496596,1,17.84018171,0.414626312,0.071278049,0.312029739,0.817834739,0.542331335,0.961238037,0.922476074,0.098066983,4.423376678,17.93824869,4.83800299,36.98892262,0,0.407929592,65.9251588,-0.407929592,114.0748412,0.927429829,0,52.24287885,4.83800299,55.40925505,4,18,6% +2018-04-01 03:00:00,96.27222289,281.1579892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680267268,4.907132631,-7.78583559,7.78583559,1,0.138390008,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.18826596,79.14839511,-0.18826596,100.8516049,0.784418267,0,0,0,0,4,19,0% +2018-04-01 04:00:00,107.6329404,291.1076596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878549193,5.080787137,-2.370526284,2.370526284,1,0.935537559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039053648,92.23817836,0.039053648,87.76182164,0,0,0,0,0,4,20,0% +2018-04-01 05:00:00,118.1876545,302.6269266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062763707,5.281836275,-1.13264069,1.13264069,1,0.723846655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260888063,105.1227632,0.260888063,74.87723682,0,0.858346923,0,0,0,4,21,0% +2018-04-01 06:00:00,127.3023113,316.7561425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221844478,5.528437612,-0.518002726,0.518002726,1,0.618737373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462105928,117.5230829,0.462105928,62.47691712,0,0.9417997,0,0,0,4,22,0% +2018-04-01 07:00:00,134.0093649,334.4260024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338904646,5.836834845,-0.100549437,0.100549437,1,0.547348656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628982522,128.9750947,0.628982522,51.02490528,0,0.970506535,0,0,0,4,23,0% +2018-04-02 08:00:00,137.1021045,355.380072,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392883134,6.202552353,0.246440206,-0.246440206,1,0.488009932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750134978,138.6020715,0.750134978,41.39792852,0,0.983345329,0,0,0,4,0,0% +2018-04-02 09:00:00,135.7918344,17.05869986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370014608,0.297730479,0.586202029,-0.586202029,1,0.429907239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817297802,144.815201,0.817297802,35.18479897,0,0.988822789,0,0,0,4,1,0% +2018-04-02 10:00:00,130.433942,36.23894743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276501744,0.63248895,0.975675911,-0.975675911,1,0.363303282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825885955,145.6784166,0.825885955,34.32158342,0,0.989458953,0,0,0,4,2,0% +2018-04-02 11:00:00,122.1737995,51.74654361,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132335061,0.903147563,1.509597096,-1.509597096,1,0.271997382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775307163,140.8328894,0.775307163,39.16711063,0,0.985509431,0,0,0,4,3,0% +2018-04-02 12:00:00,112.1151694,64.20227823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956778847,1.120541142,2.448245933,-2.448245933,1,0.111478977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669002225,131.9901027,0.669002225,48.00989728,0,0.975261833,0,0,0,4,4,0% +2018-04-02 13:00:00,101.0191662,74.6694369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763117059,1.303227524,5.118337319,-5.118337319,1,0,#DIV/0!,0,0,0.256579389,1,0.192945427,0,0.939837805,0.978599768,0.724496596,1,0,0,0.039137158,0.312029739,0.895015339,0.619511935,0.961238037,0.922476074,0,0,0,0,0,0,-0.514210529,120.9447002,0.514210529,59.05529979,0,0.952763562,0,0,0,4,5,0% +2018-04-02 14:00:00,88.97569254,84.0945997,0.89795958,7.600972365,0.762080148,0.745869819,0,0.745869819,0.73910062,0.006769199,2.634034454,2.393334229,0.240700225,0.022979528,0.217720696,1.552918789,1.467727648,-54.24637655,54.24637655,0,0,0.84867979,0.005744882,0.184775155,1,0.886451771,0,0.018432323,0.961238037,1,0.673555542,0.949058947,0.710451629,0.016196855,0.115824807,0.254177287,0.724496596,0.448993192,0.970048719,0.931286756,0.004162147,0.178427642,0.714613776,0.194624497,0,0.271758864,-0.314872113,108.3530935,0.314872113,71.64690645,0,0.891205372,0.714613776,0.436817456,1.000502065,4,6,40% +2018-04-02 15:00:00,77.4626,93.28943536,148.7076126,474.6233497,45.67787174,45.42153617,0,45.42153617,44.30051538,1.121020798,86.16541974,48.73218104,37.43323871,1.377356366,36.05588234,1.351977417,1.628207804,-4.130411747,4.130411747,0.763504302,0.763504302,0.307165659,0.937338915,30.14804159,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.58334043,0.997889999,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.679098853,28.97944432,43.26243928,29.97733431,0,48.73218104,-0.102675482,95.89325756,0.102675482,84.10674244,0,0.563028824,43.26243928,57.41495692,80.83938029,4,7,87% +2018-04-02 16:00:00,65.77399211,103.0748609,362.1737817,708.7428129,71.35036488,159.9774189,88.04831179,71.92910707,69.19888812,2.730218949,89.96470322,0,89.96470322,2.151476756,87.81322647,1.147972724,1.798995699,-1.862280332,1.862280332,0.848622383,0.848622383,0.197005881,2.398346266,77.13906018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.51660337,1.558737586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.737593705,74.14899877,68.25419708,75.70773636,88.04831179,0,0.124231682,82.86361144,-0.124231682,97.13638856,0.647526177,0,125.2677838,75.70773636,174.8169831,4,8,40% +2018-04-02 17:00:00,54.566725,114.4899316,557.2556684,811.1229591,87.00350969,369.2225867,280.6417252,88.58086148,84.38003287,4.200828614,137.7365653,0,137.7365653,2.623476826,135.1130885,0.952369013,1.998226267,-1.002580568,1.002580568,0.701605064,0.701605064,0.156128532,3.14303068,101.0906708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10929714,1.90070003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.277115028,97.1721979,83.38641217,99.07289793,280.6417252,0,0.345991594,69.75766192,-0.345991594,110.2423381,0.905487818,0,337.5040757,99.07289793,402.345306,4,9,19% +2018-04-02 18:00:00,44.48001204,129.0490058,713.0292107,862.6540517,97.52992548,572.023927,472.0597733,99.96415375,94.58903838,5.375115375,175.8230744,0,175.8230744,2.9408871,172.8821873,0.776322661,2.252330048,-0.505053301,0.505053301,0.616522891,0.616522891,0.13678251,3.59582239,115.6540086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92258156,2.130662693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605161081,111.1710322,93.52774264,113.3016949,472.0597733,0,0.54721794,56.8236394,-0.54721794,123.1763606,0.958628727,0,546.057802,113.3016949,620.2114953,4,10,14% +2018-04-02 19:00:00,36.64160202,148.7397476,817.0203173,888.6010623,104.0207321,741.6260178,634.5828503,107.0431674,100.8841232,6.159044262,201.2326439,0,201.2326439,3.136608867,198.0960351,0.639516598,2.595998325,-0.145237294,0.145237294,0.55499073,0.55499073,0.127317191,3.767167475,121.1650556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97365652,2.272462447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.729300012,116.4684601,99.70295653,118.7409226,634.5828503,0,0.714136948,44.42748653,-0.714136948,135.5725135,0.979985418,0,721.5848963,118.7409226,799.2984553,4,11,11% +2018-04-02 20:00:00,32.82262072,174.2658777,861.5170133,898.2091762,106.7045354,860.3068106,750.3253315,109.9814791,103.4869999,6.494479153,212.1023096,0,212.1023096,3.217535439,208.8847742,0.572862801,3.041513339,0.158945791,-0.158945791,0.502972358,0.502972358,0.123856562,3.666344509,117.9222424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47564065,2.331093473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.656254116,113.3513448,102.1318948,115.6824382,750.3253315,0,0.83535701,33.34696921,-0.83535701,146.6530308,0.990145352,0,845.063034,115.6824382,920.7748762,4,12,9% +2018-04-02 21:00:00,34.42994425,201.2656552,843.3065225,894.3722255,105.6121055,916.061095,807.2763833,108.7847116,102.4275109,6.357200781,207.6540245,0,207.6540245,3.184594648,204.4694299,0.600915888,3.512748355,0.452110631,-0.452110631,0.452838218,0.452838218,0.125235727,3.314405595,106.6026771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45721947,2.307227982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401275571,102.4705481,100.858495,104.7777761,807.2763833,0,0.902617904,25.49565842,-0.902617904,154.5043416,0.994605575,0,903.7800862,104.7777761,972.3550451,4,13,8% +2018-04-02 22:00:00,40.81210639,223.5481494,763.7228432,875.9734825,100.7362045,901.7727929,798.3168912,103.4559016,97.69863626,5.75726539,188.2110137,0,188.2110137,3.037568243,185.1734454,0.712305631,3.901651243,0.773140196,-0.773140196,0.397938929,0.397938929,0.131901521,2.748240422,88.39285898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.91164532,2.200707852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.99109083,84.96657824,95.90273615,87.16728609,798.3168912,0,0.91134824,24.30766176,-0.91134824,155.6923382,0.99513623,0,890.3367978,87.16728609,947.3860432,4,14,6% +2018-04-02 23:00:00,50.12370585,240.0288884,628.6175678,837.026916,91.97268828,814.60091,720.6627529,93.93815714,89.19937238,4.738784756,155.1889231,0,155.1889231,2.773315895,152.4156072,0.8748237,4.189294402,1.178912281,-1.178912281,0.328547816,0.328547816,0.146309446,2.022454635,65.04909322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.7418296,2.009257925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465261499,62.52766266,87.2070911,64.53692059,720.6627529,0,0.860979186,30.57329575,-0.860979186,149.4267043,0.991926587,0,802.0516358,64.53692059,844.2897596,4,15,5% +2018-04-02 00:00:00,60.94882885,252.5566034,448.3806511,761.2051796,78.74660609,654.4602774,574.7080893,79.75218811,76.37210537,3.380082744,111.0895807,0,111.0895807,2.374500718,108.71508,1.063757739,4.407944277,1.798462174,-1.798462174,0.222598544,0.222598544,0.175624452,1.213886577,39.04276503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.41177263,1.720317687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.879456693,37.52939081,74.29122933,39.24970849,574.7080893,0,0.754997607,40.9748393,-0.754997607,139.0251607,0.983774625,0,639.6744641,39.24970849,665.3626133,4,16,4% +2018-04-02 01:00:00,72.48242101,262.8933818,239.2467767,600.4877292,58.50093312,419.3022915,360.7618341,58.54045741,56.73691414,1.803543261,59.77216988,0,59.77216988,1.764018979,58.0081509,1.265056897,4.588355094,3.088325039,-3.088325039,0.002019003,0.002019003,0.244521301,0.443755715,14.27270919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.53767997,1.278025745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321499505,13.71947096,54.85917947,14.9974967,360.7618341,0,0.600781359,53.07412111,-0.600781359,126.9258789,0.966775048,0,403.6347188,14.9974967,413.4502805,4,17,2% +2018-04-02 02:00:00,84.20229163,272.2480142,39.71477995,197.1371241,19.8006766,100.3022476,80.79924767,19.50299993,19.20361314,0.299386787,10.22637166,0,10.22637166,0.597063456,9.6293082,1.469607227,4.751624231,9.115532013,-9.115532013,0,0,0.498571983,0.149265864,4.800903286,0.50707206,1,0.109265937,0,0.950179385,0.988941348,0.724496596,1,18.61379797,0.432570442,0.069915909,0.312029739,0.820939088,0.545435684,0.961238037,0.922476074,0.102267382,4.61481085,18.71606535,5.047381291,39.8282067,0,0.409863175,65.80376001,-0.409863175,114.19624,0.92800807,0,55.67696256,5.047381291,58.98037267,4,18,6% +2018-04-02 03:00:00,96.08796793,281.5046866,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677051412,4.913183641,-7.993841939,7.993841939,1,0.102818827,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190301563,79.02961641,-0.190301563,100.9703836,0.787259121,0,0,0,0,4,19,0% +2018-04-02 04:00:00,107.4286374,291.4569943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874983433,5.086884179,-2.387324834,2.387324834,1,0.938410281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036894422,92.11437454,0.036894422,87.88562546,0,0,0,0,0,4,20,0% +2018-04-02 05:00:00,117.950585,302.9788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058626064,5.287979046,-1.13476291,1.13476291,1,0.724209576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258531397,104.9829383,0.258531397,75.01706175,0,0.856599892,0,0,0,4,21,0% +2018-04-02 06:00:00,127.0195971,317.0943973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216910183,5.534341272,-0.516137064,0.516137064,1,0.618418326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459491607,117.3543067,0.459491607,62.64569332,0,0.941184084,0,0,0,4,22,0% +2018-04-02 07:00:00,133.6737485,334.7029614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333047035,5.841668692,-0.096695103,0.096695103,1,0.546689526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626068087,128.7606252,0.626068087,51.2393748,0,0.970136482,0,0,0,4,23,0% +2018-04-03 08:00:00,136.7239699,355.5227806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38628344,6.205043087,0.251982434,-0.251982434,1,0.487062156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746898652,138.322439,0.746898652,41.67756102,0,0.983056513,0,0,0,4,0,0% +2018-04-03 09:00:00,135.4018012,17.03348841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363207244,0.297290456,0.593893092,-0.593893092,1,0.428591989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813739999,144.4629657,0.813739999,35.53703434,0,0.988555312,0,0,0,4,1,0% +2018-04-03 10:00:00,130.0607291,36.08900393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269987949,0.629871942,0.986916263,-0.986916263,1,0.361381069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822029261,145.2884495,0.822029261,34.71155047,0,0.989174915,0,0,0,4,2,0% +2018-04-03 11:00:00,121.8279011,51.53334401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126297995,0.899426527,1.52812497,-1.52812497,1,0.268828929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771194794,140.4613018,0.771194794,39.53869816,0,0.985165537,0,0,0,4,3,0% +2018-04-03 12:00:00,111.7941402,63.96306401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951175831,1.116366067,2.487050778,-2.487050778,1,0.104842958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664695057,131.6589352,0.664695057,48.34106476,0,0.974777536,0,0,0,4,4,0% +2018-04-03 13:00:00,100.7159402,74.41941669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757824765,1.298863849,5.268579969,-5.268579969,1,0,#DIV/0!,0,0,0.270513107,1,0.187573217,0,0.940548983,0.979310946,0.724496596,1,0,0,0.04102079,0.312029739,0.89026633,0.614762926,0.961238037,0.922476074,0,0,0,0,0,0,-0.509782921,120.6493713,0.509782921,59.35062871,0,0.951919037,0,0,0,4,5,0% +2018-04-03 14:00:00,88.71369196,83.83756069,1.456187572,11.37900161,1.200746912,1.17551732,0,1.17551732,1.164539963,0.010977357,3.927185893,3.537909407,0.389276486,0.03620695,0.353069536,1.548346016,1.463241471,-43.24281244,43.24281244,0,0,0.824582585,0.009051737,0.291134991,1,0.855597965,0,0.023121109,0.961238037,1,0.661021622,0.936525026,1.119400108,0.025374007,0.115824807,0.239960824,0.724496596,0.448993192,0.972106195,0.933344232,0.006557953,0.281384556,1.125958061,0.306758563,0,0.510881319,-0.310915626,108.114419,0.310915626,71.88558099,0,0.889184667,1.125958061,0.761026399,1.624034618,4,6,44% +2018-04-03 15:00:00,77.17213867,93.02452665,153.8440934,483.1841433,46.566265,46.32186206,0,46.32186206,45.1621203,1.15974176,86.19500005,47.48957376,38.70542629,1.404144701,37.30128159,1.346907911,1.623584275,-4.041782373,4.041782373,0.778660817,0.778660817,0.302684776,0.980743527,31.5440831,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.41154786,1.017298056,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.710545346,30.32137251,44.1220932,31.33867057,0,47.48957376,-0.098284628,95.64040027,0.098284628,84.35959973,0,0.541273447,44.1220932,57.04351586,81.45593346,4,7,85% +2018-04-03 16:00:00,65.47477649,102.8010185,367.5380998,712.2341599,71.89411746,164.0265934,91.52969142,72.496902,69.72624456,2.770657445,91.2817404,0,91.2817404,2.167872902,89.1138675,1.142750427,1.794216248,-1.842284246,1.842284246,0.845202851,0.845202851,0.195609972,2.425662707,78.01765081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02351843,1.570616538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757384374,74.9935335,68.78090281,76.56415004,91.52969142,0,0.128510673,82.6164617,-0.128510673,97.3835383,0.660927258,0,129.2753708,76.56415004,179.3850757,4,8,39% +2018-04-03 17:00:00,54.24926986,114.2120782,562.424255,812.9731725,87.4365429,373.6383192,284.5985191,89.03980012,84.80000852,4.239791603,139.0028065,0,139.0028065,2.636534375,136.3662721,0.946828376,1.993376811,-0.995620727,0.995620727,0.700414861,0.700414861,0.155463677,3.167079677,101.8641692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51299372,1.910160179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294538445,97.91571401,83.80753216,99.82587419,284.5985191,0,0.350071231,69.50832803,-0.350071231,110.491672,0.907171925,0,341.9873186,99.82587419,407.3213568,4,9,19% +2018-04-03 18:00:00,44.13368188,128.7933873,717.8985517,863.8345511,97.90974476,576.3734534,476.0042262,100.3692272,94.95740471,5.411822524,177.0151555,0,177.0151555,2.952340053,174.0628154,0.77027806,2.247868664,-0.502689714,0.502689714,0.616118694,0.616118694,0.136383817,3.617662063,116.3564476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.27666929,2.138960318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62098385,111.8462432,93.89765314,113.9852036,476.0042262,0,0.551036336,56.56186094,-0.551036336,123.4381391,0.959261882,0,550.5103631,113.9852036,625.1113991,4,10,14% +2018-04-03 19:00:00,36.2628146,148.5862945,821.5571774,889.4692652,104.3671386,745.7426717,638.3293424,107.4133293,101.2200843,6.19324503,202.3431036,0,202.3431036,3.147054302,199.1960493,0.632905511,2.593320062,-0.145168354,0.145168354,0.55497894,0.55497894,0.127035758,3.787246923,121.8108796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.2965951,2.280030129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743847504,117.0892508,100.0404426,119.3692809,638.3293424,0,0.717651938,44.13904115,-0.717651938,135.8609589,0.980328343,0,725.8127888,119.3692809,803.9375958,4,11,11% +2018-04-03 20:00:00,32.43543173,174.3452982,865.724313,898.9340408,107.027211,864.1252469,753.7991057,110.3261412,103.7999457,6.526195555,213.132148,0,213.132148,3.227265299,209.9048827,0.566105078,3.042899488,0.157451486,-0.157451486,0.5032279,0.5032279,0.12362736,3.684967522,118.5212225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.77645601,2.338142723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669746426,113.9271072,102.4462024,116.26525,753.7991057,0,0.838547737,33.01291951,-0.838547737,146.9870805,0.990373102,0,848.9885614,116.26525,925.0818422,4,12,9% +2018-04-03 21:00:00,34.0849858,201.5869139,847.2140065,895.060783,105.9182037,919.5759841,810.4649481,109.1110361,102.724379,6.386657046,208.6106692,0,208.6106692,3.193824637,205.4168446,0.594895228,3.518355376,0.44914257,-0.44914257,0.453345787,0.453345787,0.12501942,3.331843485,107.1635396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.74258042,2.313915077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.413909263,103.0096705,101.1564897,105.3235855,810.4649481,0,0.905485933,25.11119023,-0.905485933,154.8888098,0.994781031,0,907.391646,105.3235855,976.3238263,4,13,8% +2018-04-03 22:00:00,40.5324045,223.9638786,767.3811361,876.7286702,101.0335588,905.0293845,801.2575172,103.7718673,97.9870242,5.784843147,189.1069755,0,189.1069755,3.046534571,186.0604409,0.707423912,3.908907086,0.768285726,-0.768285726,0.398769093,0.398769093,0.131660206,2.764734339,88.92336005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.18885478,2.207203926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003040617,85.47651604,96.19189539,87.68371997,801.2575172,0,0.913917321,23.94756287,-0.913917321,156.0524371,0.995290456,0,893.6758549,87.68371997,951.063096,4,14,6% +2018-04-03 23:00:00,49.89672121,240.4417504,632.090566,838.0080855,92.27307481,817.7025803,723.4469134,94.25566684,89.49070116,4.764965683,156.0400495,0,156.0400495,2.782373657,153.2576758,0.870862071,4.196500204,1.170915933,-1.170915933,0.329915272,0.329915272,0.145980782,2.038141473,65.55363585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0218659,2.015820243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476626559,63.01264823,87.49849246,65.02846847,723.4469134,0,0.863293476,30.31158986,-0.863293476,149.6884101,0.992082268,0,805.2173473,65.02846847,847.7771793,4,15,5% +2018-04-03 00:00:00,60.7546714,252.9428586,451.7296225,762.7776434,79.0745254,657.6083084,577.512843,80.09546541,76.6901367,3.405328706,111.9114656,0,111.9114656,2.384388695,109.5270769,1.060369052,4.414685702,1.783614748,-1.783614748,0.225137604,0.225137604,0.175048351,1.228560829,39.51473942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.71747645,1.727481493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890088139,37.98307055,74.60756459,39.71055204,577.512843,0,0.757118209,40.78920004,-0.757118209,139.2108,0.983960114,0,642.8571676,39.71055204,668.8469297,4,16,4% +2018-04-03 01:00:00,72.30469537,263.2564369,242.4651935,603.8136093,58.93303409,422.950412,363.9666213,58.98379072,57.15598567,1.827805046,60.56554174,0,60.56554174,1.777048418,58.78849332,1.261954999,4.594691601,3.050782746,-3.050782746,0.008439114,0.008439114,0.243057708,0.45593798,14.66453273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.94050746,1.287465529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330325515,14.09610665,55.27083298,15.38357218,363.9666213,0,0.602779758,52.93075636,-0.602779758,127.0692436,0.967050964,0,407.2451049,15.38357218,417.3133452,4,17,2% +2018-04-03 02:00:00,84.03041428,272.5973101,41.99201343,205.5396251,20.61578405,104.9475732,84.63687754,20.31069564,19.9941421,0.316553535,10.80309178,0,10.80309178,0.621641953,10.18144982,1.466607401,4.757720594,8.829011148,-8.829011148,0,0,0.490945358,0.155410488,4.998535525,0.494871976,1,0.11278233,0,0.949776904,0.988538867,0.724496596,1,19.38145477,0.450377479,0.068555397,0.312029739,0.824054486,0.548551082,0.961238037,0.922476074,0.106439089,4.804782475,19.48789385,5.255159955,42.75245875,0,0.411778885,65.68336937,-0.411778885,114.3166306,0.92857561,0,59.1867843,5.255159955,62.62618139,4,18,6% +2018-04-03 03:00:00,95.90388539,281.8494964,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673838566,4.919201707,-8.214385428,8.214385428,1,0.06510367,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.192326855,78.91139197,-0.192326855,101.088608,0.790025905,0,0,0,0,4,19,0% +2018-04-03 04:00:00,107.2242195,291.8038514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871415668,5.092937977,-2.404500526,2.404500526,1,0.941347497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0347354,91.99059225,0.0347354,88.00940775,0,0,0,0,0,4,20,0% +2018-04-03 05:00:00,117.7132815,303.3275234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054484335,5.294063996,-1.136933998,1.136933998,1,0.724580854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256165845,104.8426779,0.256165845,75.15732207,0,0.854813948,0,0,0,4,21,0% +2018-04-03 06:00:00,126.7368265,317.4283336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211974906,5.540169561,-0.514269001,0.514269001,1,0.618098868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45686096,117.1847358,0.45686096,62.81526424,0,0.940557512,0,0,0,4,22,0% +2018-04-03 07:00:00,133.3386693,334.9751637,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3271988,5.84641952,-0.09282007,0.09282007,1,0.546026856,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623132049,128.5452158,0.623132049,51.45478421,0,0.969760186,0,0,0,4,23,0% +2018-04-04 08:00:00,136.3471537,355.6622865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379706758,6.207477925,0.25756106,-0.25756106,1,0.486108154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743637975,138.0422443,0.743637975,41.95775565,0,0.982762982,0,0,0,4,0,0% +2018-04-04 09:00:00,135.0134397,17.0080956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356429058,0.296847268,0.601645541,-0.601645541,1,0.427266243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810157817,144.1113535,0.810157817,35.88864653,0,0.98828363,0,0,0,4,1,0% +2018-04-04 10:00:00,129.6890473,35.94076305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26350088,0.627284651,0.998271902,-0.998271902,1,0.35943914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818150885,144.9001163,0.818150885,35.09988371,0,0.988886578,0,0,0,4,2,0% +2018-04-04 11:00:00,121.4833391,51.32216584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284254,0.895740773,1.546918499,-1.546918499,1,0.265615046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767065974,140.091142,0.767065974,39.90885797,0,0.984816559,0,0,0,4,3,0% +2018-04-04 12:00:00,111.4744049,63.72553366,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945595397,1.11222038,2.526750317,-2.526750317,1,0.098053937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660378851,131.3287725,0.660378851,48.6712275,0,0.974285885,0,0,0,4,4,0% +2018-04-04 13:00:00,100.4141085,74.17060443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752556808,1.294521255,5.426617032,-5.426617032,1,0,#DIV/0!,0,0,0.284616928,1,0.182232476,0,0.941249657,0.98001162,0.724496596,1,0,0,0.042904972,0.312029739,0.885543979,0.610040575,0.961238037,0.922476074,0,0,0,0,0,0,-0.505355357,120.3549446,0.505355357,59.64505543,0,0.951059721,0,0,0,4,5,0% +2018-04-04 14:00:00,88.44954255,83.58123916,2.198414126,16.23402859,1.75916539,1.722692637,0,1.722692637,1.706120063,0.016572574,5.568450768,4.982374483,0.586076284,0.053045327,0.533030957,1.543735739,1.458767816,-35.91203145,35.91203145,0,0,0.800197456,0.013261332,0.426530016,1,0.823678956,0,0.027838627,0.961238037,1,0.648585162,0.924088566,1.6399875,0.036981198,0.115824807,0.225863825,0.724496596,0.448993192,0.974103609,0.935341646,0.00960779,0.412569287,1.64959529,0.449550485,0,0.878497472,-0.306909308,107.8730694,0.306909308,72.1269306,0,0.887085423,1.64959529,1.228852787,2.453854861,4,6,49% +2018-04-04 15:00:00,76.88343849,92.75979709,158.9667228,491.4764382,47.43458449,47.20261506,0,47.20261506,46.00425675,1.198358304,86.12978637,46.15613624,39.97365014,1.430327737,38.5433224,1.341869142,1.618963873,-3.957456142,3.957456142,0.793081452,0.793081452,0.298393171,1.024386079,32.94777759,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22104145,1.036267577,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.742164227,31.67065705,44.96320567,32.70692463,0,46.15613624,-0.093913223,95.38877241,0.093913223,84.61122759,0,0.517593609,44.96320567,56.59704577,82.00484019,4,7,82% +2018-04-04 16:00:00,65.17763956,102.5266682,372.8560319,715.6304489,72.42984465,168.0630607,95.00649688,73.05656386,70.2458176,2.810746263,92.58728876,0,92.58728876,2.184027054,90.40326171,1.137564409,1.789427931,-1.822856247,1.822856247,0.841880467,0.841880467,0.194256867,2.452646711,78.88554915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.5229518,1.582320166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776934193,75.8277904,69.299886,77.41011057,95.00649688,0,0.132759159,82.37093717,-0.132759159,97.62906283,0.673378152,0,133.2751853,77.41011057,183.9385544,4,8,38% +2018-04-04 17:00:00,53.93410461,113.9327491,567.5358432,814.7769278,87.86419403,378.0147206,288.5216313,89.49308931,85.2147644,4.278324914,140.2550655,0,140.2550655,2.649429634,137.6056359,0.941327705,1.988501598,-0.988814349,0.988814349,0.699250902,0.699250902,0.154816995,3.19082595,102.6279309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.91167284,1.919502751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311742538,98.64987085,84.22341538,100.5693736,288.5216313,0,0.354111195,69.26101861,-0.354111195,110.7389814,0.908801414,0,346.4322818,100.5693736,412.2529255,4,9,19% +2018-04-04 18:00:00,43.78965155,128.5350925,722.7054147,864.9857787,98.28495913,580.6701121,479.9007484,100.7693637,95.32130498,5.448058688,178.1919491,0,178.1919491,2.963654151,175.228295,0.764273598,2.243360569,-0.500376276,0.500376276,0.615723072,0.615723072,0.13599588,3.639211412,117.0495487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.62646406,2.147157343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.636596279,112.5124784,94.26306034,114.6596358,479.9007484,0,0.554807675,56.30253109,-0.554807675,123.6974689,0.95987868,0,554.9095573,114.6596358,629.9519957,4,10,14% +2018-04-04 19:00:00,35.88599265,148.4299472,826.0295595,890.3155613,104.7092738,749.7985027,642.0196401,107.7788626,101.5519029,6.226959736,203.4378011,0,203.4378011,3.157370941,200.2804301,0.626328727,2.590591288,-0.145110779,0.145110779,0.554969094,0.554969094,0.126762139,3.807052117,122.4478827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.61555174,2.287504499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758196299,117.7015624,100.373748,119.9890669,642.0196401,0,0.721114701,43.85341091,-0.721114701,136.1465891,0.980662903,0,729.9785921,119.9890669,808.5090366,4,11,11% +2018-04-04 20:00:00,32.0499351,174.4251649,869.8683054,899.6402827,107.3458574,867.8789063,757.2124879,110.6664184,104.1089837,6.55743472,214.1465153,0,214.1465153,3.236873663,210.9096416,0.559376893,3.044293426,0.155966551,-0.155966551,0.503481839,0.503481839,0.123404723,3.703340929,119.1121744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0735151,2.34510395,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683057897,114.4951527,102.756573,116.8402567,757.2124879,0,0.841683618,32.68166513,-0.841683618,147.3183349,0.990595256,0,852.8476712,116.8402567,929.3172823,4,12,9% +2018-04-04 21:00:00,33.74215952,201.9117138,851.0623126,895.7317111,106.2205226,923.0256639,813.5924148,109.4332491,103.0175819,6.415667202,209.5528516,0,209.5528516,3.202940667,206.3499109,0.58891178,3.524024204,0.446200908,-0.446200908,0.45384884,0.45384884,0.124809337,3.34906556,107.7174607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02441817,2.32051961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.426386597,103.5421205,101.4508048,105.8626401,813.5924148,0,0.90829922,24.72863559,-0.90829922,155.2713644,0.994952061,0,910.9362547,105.8626401,980.2212354,4,13,8% +2018-04-04 22:00:00,40.2550885,224.3819678,770.9870278,877.4652689,101.3273976,908.2234532,804.1394246,104.0840286,98.2720027,5.812025882,189.990126,0,189.990126,3.055394896,186.9347311,0.702583835,3.91620412,0.763479912,-0.763479912,0.399590935,0.399590935,0.131425554,2.781054555,89.44827431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46278696,2.213623201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014864558,85.9810836,96.47765151,88.1947068,804.1394246,0,0.916434477,23.58972983,-0.916434477,156.4102702,0.995440726,0,896.9507839,88.1947068,954.6724556,4,14,6% +2018-04-04 23:00:00,49.67180249,240.8551531,635.5201856,838.9668796,92.57015108,820.7467974,726.1771583,94.56963908,89.77881948,4.790819604,156.8805584,0,156.8805584,2.791331603,154.0892268,0.866936499,4.203715442,1.163011274,-1.163011274,0.331267048,0.331267048,0.145660442,2.053704525,66.05419707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.29881618,2.022310244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487901937,63.49380672,87.78671812,65.51611696,726.1771583,0,0.865561175,30.05315397,-0.865561175,149.946846,0.992234008,0,808.3243904,65.51611696,851.2033786,4,15,5% +2018-04-04 00:00:00,60.56204783,253.3285762,455.0462035,764.3172262,79.39901553,660.7045892,580.2694164,80.43517276,77.00484226,3.430330494,112.7253936,0,112.7253936,2.39417327,110.3312204,1.057007136,4.421417743,1.768979318,-1.768979318,0.22764041,0.22764041,0.174485613,1.24317251,39.9847013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01998341,1.734570384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900674252,38.43481578,74.92065766,40.16938617,580.2694164,0,0.75919971,40.60630321,-0.75919971,139.3936968,0.984141176,0,645.9876836,40.16938617,672.2777435,4,16,4% +2018-04-04 01:00:00,72.12796808,263.6183542,245.6656217,607.0720106,59.360033,426.547792,367.1257518,59.42204021,57.57010899,1.851931226,61.35439821,0,61.35439821,1.78992401,59.5644742,1.258870526,4.60100825,3.014045334,-3.014045334,0.014721581,0.014721581,0.241629385,0.46815673,15.05752973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.33857855,1.296793852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339177958,14.47387032,55.6777565,15.77066417,367.1257518,0,0.604748276,52.78926982,-0.604748276,127.2107302,0.967320971,0,410.8061953,15.77066417,421.1277796,4,17,3% +2018-04-04 02:00:00,83.85892492,272.9450402,44.30332515,213.8708341,21.42409056,109.5855488,88.47349644,21.11205236,20.77807518,0.333977179,11.38786948,0,11.38786948,0.646015377,10.74185411,1.463614347,4.763789628,8.558809824,-8.558809824,0,0,0.483577485,0.161503844,5.194518795,0.482800262,1,0.116311322,0,0.949370112,0.988132075,0.724496596,1,20.14263571,0.468035941,0.067196434,0.312029739,0.827181061,0.551677657,0.961238037,0.922476074,0.110580192,4.993169049,20.2532159,5.46120499,45.75846918,0,0.41367724,65.5639564,-0.41367724,114.4360436,0.929132824,0,62.76891157,5.46120499,66.34316101,4,18,6% +2018-04-04 03:00:00,95.71997174,282.1922984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670628667,4.925184731,-8.448679911,8.448679911,1,0.025036953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.19434249,78.79368375,-0.19434249,101.2063163,0.792722243,0,0,0,0,4,19,0% +2018-04-04 04:00:00,107.0196991,292.1481128,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867846113,5.098946473,-2.422072672,2.422072672,1,0.944352511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032576093,91.86680294,0.032576093,88.13319706,0,0,0,0,0,4,20,0% +2018-04-04 05:00:00,117.4757783,303.6727408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050339122,5.300089175,-1.139158709,1.139158709,1,0.724961302,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.253791182,104.7019688,0.253791182,75.29803117,0,0.852987639,0,0,0,4,21,0% +2018-04-04 06:00:00,126.4540602,317.757862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207039704,5.545920916,-0.512401323,0.512401323,1,0.617779477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.4542141,117.0143795,0.4542141,62.98562053,0,0.939919754,0,0,0,4,22,0% +2018-04-04 07:00:00,133.0042103,335.2425575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321361388,5.851086421,-0.088926647,0.088926647,1,0.545361042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620174913,128.3289086,0.620174913,51.67109136,0,0.969377584,0,0,0,4,23,0% +2018-04-05 08:00:00,135.9717516,355.79854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373154755,6.209855997,0.26317383,-0.26317383,1,0.485148314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740353869,137.7615685,0.740353869,42.23843146,0,0.982464728,0,0,0,4,0,0% +2018-04-05 09:00:00,134.6268603,16.98242644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349681974,0.296399256,0.609456984,-0.609456984,1,0.425930407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806552593,143.7604651,0.806552593,36.23953494,0,0.988007762,0,0,0,4,1,0% +2018-04-05 10:00:00,129.3190252,35.79412617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257042776,0.624725355,1.009740336,-1.009740336,1,0.357477922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814252543,144.513522,0.814252543,35.48647801,0,0.98859399,0,0,0,4,2,0% +2018-04-05 11:00:00,121.1402513,51.1129451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114296241,0.892089182,1.56597651,-1.56597651,1,0.262355934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762922749,139.722543,0.762922749,40.27745705,0,0.984462565,0,0,0,4,3,0% +2018-04-05 12:00:00,111.1561021,63.48965644,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940039966,1.108103546,2.567360931,-2.567360931,1,0.091109113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656055898,130.9997623,0.656055898,49.00023773,0,0.973786982,0,0,0,4,4,0% +2018-04-05 13:00:00,100.1138073,73.92299149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747315563,1.290199594,5.593006888,-5.593006888,1,0,#DIV/0!,0,0,0.29888858,1,0.176925221,0,0.941939659,0.980701622,0.724496596,1,0,0,0.044788982,0.312029739,0.880850122,0.605346718,0.961238037,0.922476074,0,0,0,0,0,0,-0.500930276,120.0615657,0.500930276,59.93843433,0,0.95018571,0,0,0,4,5,0% +2018-04-05 14:00:00,88.1838356,83.32563987,3.140286268,22.20453631,2.436563659,2.386765079,0,2.386765079,2.363092275,0.023672804,7.559800737,6.72493059,0.834870147,0.073471384,0.761398763,1.539098278,1.454306767,-30.68800596,30.68800596,0,0,0.77590495,0.018367846,0.590773069,1,0.790712306,0,0.032574494,0.961238037,1,0.636276428,0.911779832,2.271494179,0.050984431,0.115824807,0.211920814,0.724496596,0.448993192,0.976036918,0.937274955,0.013307442,0.571823737,2.284801621,0.622808168,0,1.407445219,-0.302862915,107.6296378,0.302862915,72.37036216,0,0.884908807,2.284801621,1.868268837,3.507546209,4,6,54% +2018-04-05 15:00:00,76.59663548,92.49525835,164.0713118,499.5064219,48.28321241,48.06413426,0,48.06413426,46.82729541,1.236838852,85.97457287,44.73766678,41.23690609,1.455917,39.78098909,1.336863485,1.614346801,-3.877163352,3.877163352,0.806812328,0.806812328,0.29428187,1.068213137,34.35740645,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.01217751,1.05480691,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.773916782,33.02564593,45.78609429,34.08045284,0,44.73766678,-0.089563747,95.13851028,0.089563747,84.86148972,0,0.491738408,45.78609429,56.07968187,82.48912448,4,7,80% +2018-04-05 16:00:00,64.88271437,102.2518209,378.1250614,718.9333799,72.95753639,172.0838869,98.47582294,73.60806392,70.75759748,2.850466433,93.88073781,0,93.88073781,2.199938907,91.68079891,1.132416993,1.784630941,-1.803982385,1.803982385,0.838652847,0.838652847,0.192945519,2.479290258,79.74249721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0148941,1.593848249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796237352,76.65152147,69.81113145,78.24536972,98.47582294,0,0.136974893,82.12716606,-0.136974893,97.87283394,0.6849696,0,137.2640765,78.24536972,188.4741061,4,8,37% +2018-04-05 17:00:00,53.62136533,113.651939,572.5884299,816.5347516,88.28639614,382.3495067,292.4088577,89.940649,85.62423556,4.316413447,141.4928546,0,141.4928546,2.662160586,138.830694,0.935869374,1.983600537,-0.982161057,0.982161057,0.698113122,0.698113122,0.154188229,3.214262705,103.3817376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.30527209,1.928726282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.328722388,99.37445846,84.63399448,101.3031847,292.4088577,0,0.358109507,69.01586029,-0.358109507,110.9841397,0.910377904,0,350.8365574,101.3031847,417.1374658,4,9,19% +2018-04-05 18:00:00,43.44805975,128.2740643,727.4482511,866.1079918,98.65550693,584.9120632,483.7475716,101.1644916,95.68067939,5.483812192,179.3530781,0,179.3530781,2.974827534,176.3782506,0.758311696,2.238804767,-0.498114189,0.498114189,0.615336233,0.615336233,0.135618591,3.660465427,117.7331509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.97190842,2.155252422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651994741,113.1695828,94.62390316,115.3248353,483.7475716,0,0.558530317,56.04577978,-0.558530317,123.9542202,0.960479345,0,559.2534537,115.3248353,634.7312519,4,10,13% +2018-04-05 19:00:00,35.51126431,148.2705615,830.436364,891.1401456,105.0470941,753.7921293,645.6524126,108.1397167,101.8795366,6.260180089,204.5164684,0,204.5164684,3.167557469,201.3489109,0.619788484,2.587809482,-0.145065937,0.145065937,0.554961426,0.554961426,0.12649626,3.826579784,123.0759596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.93048576,2.294884603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.772344027,118.3052938,100.7028298,120.6001784,645.6524126,0,0.724523989,43.57073632,-0.724523989,136.4292637,0.980989172,0,734.0808558,120.6001784,813.0112605,4,11,11% +2018-04-05 20:00:00,31.6662293,174.5053329,873.9483167,900.3281007,107.6604516,871.5668865,760.5646032,111.0022833,104.4140918,6.588191569,215.1452475,0,215.1452475,3.24635984,211.8988876,0.552679963,3.045692621,0.154489628,-0.154489628,0.503734407,0.503734407,0.123188579,3.721462948,119.6950408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3667966,2.351976653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696187237,115.0554261,103.0629838,117.4074027,760.5646032,0,0.844763817,32.35336032,-0.844763817,147.6466397,0.990811859,0,856.6394121,117.4074027,933.4802091,4,12,9% +2018-04-05 21:00:00,33.4015358,202.2399225,854.8511425,896.385249,106.5190597,926.4097061,816.6583601,109.751346,103.307117,6.444229003,210.4804993,0,210.4804993,3.211942662,207.2685566,0.582966775,3.529752527,0.443284224,-0.443284224,0.454347623,0.454347623,0.12460539,3.366071165,108.2644195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30273034,2.327041525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.4387071,104.067878,101.7414374,106.3949195,816.6583601,0,0.911057339,24.34812061,-0.911057339,155.6518794,0.995118712,0,914.4134531,106.3949195,984.0468,4,13,8% +2018-04-05 22:00:00,39.98019157,224.8022335,774.5405191,878.1835996,101.6177375,911.3550095,806.9626081,104.3924014,98.55358782,5.8388136,190.8604659,0,190.8604659,3.064149716,187.7963162,0.697785978,3.92353914,0.758721046,-0.758721046,0.400404749,0.400404749,0.131197445,2.797201099,89.96760267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.73345728,2.219966039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.026562674,86.48028177,96.76001996,88.70024781,806.9626081,0,0.918899657,23.23425432,-0.918899657,156.7657457,0.995587095,0,900.1615784,88.70024781,958.2141166,4,14,6% +2018-04-05 23:00:00,49.44895245,241.2689173,638.9066267,839.9037802,92.86395279,823.7339515,728.8538415,94.88011001,90.06376198,4.816348028,157.7104995,0,157.7104995,2.800190808,154.9103087,0.863047032,4.21093699,1.155195706,-1.155195706,0.332603589,0.332603589,0.145348239,2.069143964,66.55078253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.57271376,2.028728708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499087759,63.97114355,88.07180152,65.99987226,728.8538415,0,0.867782547,29.79802924,-0.867782547,150.2019708,0.992381879,0,811.3731461,65.99987226,854.5687425,4,15,5% +2018-04-05 00:00:00,60.37094652,253.7136015,458.3306667,765.8247815,79.72013919,663.7498285,582.9784554,80.77137303,77.31628286,3.455090165,113.5314328,0,113.5314328,2.403856333,111.1275765,1.053671789,4.428137704,1.754549993,-1.754549993,0.23010797,0.23010797,0.173935861,1.257721241,40.4526385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31935195,1.74158573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911214758,38.88461482,75.23056671,40.62620055,582.9784554,0,0.76124261,40.42613357,-0.76124261,139.5738664,0.984317917,0,649.0667058,40.62620055,675.6557416,4,16,4% +2018-04-05 01:00:00,71.95222499,263.9789987,248.8481821,610.2649072,59.78206769,430.0954587,370.2401182,59.85534049,57.97941778,1.87592271,62.13877272,0,62.13877272,1.802649913,60.33612281,1.25580323,4.607302683,2.978084192,-2.978084192,0.020871298,0.020871298,0.240235099,0.48040951,15.45162124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.73202172,1.306013726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.348055055,14.85268606,56.08007678,16.15869979,370.2401182,0,0.606687545,52.64962566,-0.606687545,127.3503743,0.967585254,0,414.3189555,16.15869979,424.8945014,4,17,3% +2018-04-05 02:00:00,83.68782406,273.2910807,46.64666119,222.1237701,22.22514432,114.2120904,92.30547396,21.90661645,21.55497422,0.351642236,11.98019316,0,11.98019316,0.670170103,11.31002306,1.460628074,4.769829174,8.303562219,-8.303562219,0,0,0.476457345,0.167542526,5.388743555,0.470854418,1,0.119853038,0,0.948958969,0.987720933,0.724496596,1,20.89689419,0.485535959,0.065838965,0.312029739,0.830318878,0.554815474,0.961238037,0.922476074,0.114689137,5.179865276,21.01158333,5.665401234,48.84303373,0,0.41555874,65.4454921,-0.41555874,114.5545079,0.929680066,0,66.41997817,5.665401234,70.12786997,4,18,6% +2018-04-05 03:00:00,95.53622734,282.5329741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667421722,4.931130644,-8.698092739,8.698092739,1,0,#DIV/0!,0,0,1,0.01731023,0,0.11446518,0.961238037,1,0.451606075,0.72710948,0,0,0.115824807,0.002984488,0.724496596,0.448993192,0.999735799,0.960973836,0,0,0,0,0,0,0.196349065,78.676457,-0.196349065,101.323543,0.795351474,0,0,0,0,4,19,0% +2018-04-05 04:00:00,106.8150928,292.4896631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864275059,5.104907649,-2.440060859,2.440060859,1,0.947428672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.030416084,91.74298207,0.030416084,88.25701793,0,0,0,0,0,4,20,0% +2018-04-05 05:00:00,117.2381141,304.0144257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0461911,5.306052702,-1.141441711,1.141441711,1,0.725351718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251407258,104.5608021,0.251407258,75.43919788,0,0.851119505,0,0,0,4,21,0% +2018-04-05 06:00:00,126.1713629,318.0828978,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202105704,5.551593862,-0.51053677,0.51053677,1,0.617460619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451551218,116.8432521,0.451551218,63.15674786,0,0.93927059,0,0,0,4,22,0% +2018-04-05 07:00:00,132.6704573,335.5050963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3155363,5.855668588,-0.085017127,0.085017127,1,0.544692475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617197257,128.1117509,0.617197257,51.88824907,0,0.968988622,0,0,0,4,23,0% +2018-04-06 08:00:00,135.5978606,355.9314977,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366629126,6.212176546,0.268818473,-0.268818473,1,0.484183023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737047323,137.4804965,0.737047323,42.51950349,0,0.982161751,0,0,0,4,0,0% +2018-04-06 09:00:00,134.2421733,16.9563939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34296792,0.295944903,0.617324971,-0.617324971,1,0.424584902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802925718,143.4104031,0.802925718,36.58959686,0,0.987727739,0,0,0,4,1,0% +2018-04-06 10:00:00,128.9507899,35.64900153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.250615856,0.622192452,1.021318945,-1.021318945,1,0.355497864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810335997,144.1287722,0.810335997,35.87122778,0,0.9882972,0,0,0,4,2,0% +2018-04-06 11:00:00,120.7987732,50.90562259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108336324,0.888470722,1.585297582,-1.585297582,1,0.259051836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758767185,139.3556359,0.758767185,40.64436411,0,0.984103634,0,0,0,4,3,0% +2018-04-06 12:00:00,110.8393682,63.2554053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.934511915,1.104015092,2.608898981,-2.608898981,1,0.084005688,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651728489,130.6720497,0.651728489,49.32795033,0,0.973280935,0,0,0,4,4,0% +2018-04-06 13:00:00,99.81517012,73.67657268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742103362,1.285898775,5.768361274,-5.768361274,1,0,#DIV/0!,0,0,0.313325556,1,0.171653434,0,0.942618833,0.981380796,0.724496596,1,0,0,0.04667209,0.312029739,0.876186567,0.600683163,0.961238037,0.922476074,0,0,0,0,0,0,-0.496510099,119.7693774,0.496510099,60.23062262,0,0.949297114,0,0,0,4,5,0% +2018-04-06 14:00:00,87.91713276,83.07077117,4.29078647,29.27708465,3.2267142,3.161762622,0,3.161762622,3.129416861,0.032345761,9.885224364,8.747576169,1.137648195,0.097297338,1.040350857,1.534443436,1.449858469,-26.78362836,26.78362836,0,0,0.752009969,0.024324335,0.782354215,1,0.756716089,0,0.037318907,0.961238037,1,0.624122678,0.899626082,3.00811452,0.067246883,0.115824807,0.19816252,0.724496596,0.448993192,0.977903025,0.939141062,0.017622898,0.757688827,3.025737418,0.824935709,0,2.12814454,-0.298785766,107.384688,0.298785766,72.61531198,0,0.882656018,3.025737418,2.703355294,4.795029391,4,6,58% +2018-04-06 15:00:00,76.31186264,92.23092628,169.1538361,507.280391,49.11253158,48.90676061,0,48.90676061,47.63160755,1.275153067,85.73411253,43.23988254,42.49422999,1.480924033,41.01330595,1.331893261,1.609733336,-3.800656234,3.800656234,0.819895815,0.819895815,0.290342405,1.112172818,35.77130089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.78531293,1.072924421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.80576542,34.38473504,46.59107835,35.45765946,0,43.23988254,-0.085238624,94.88974682,0.085238624,85.11025318,0,0,46.59107835,35.45765946,69.79740731,4,7,50% +2018-04-06 16:00:00,64.59013131,101.9764929,383.3427538,722.1446528,73.4771859,176.0862054,101.9348281,74.15137724,71.26157764,2.889799603,95.16149711,0,95.16149711,2.215608257,92.94588886,1.127310456,1.77982556,-1.785649034,1.785649034,0.835517659,0.835517659,0.191674905,2.505585707,80.58824924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.499339,1.60520064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815288315,77.46449049,70.31462731,79.06969113,101.9348281,0,0.141155692,81.88527333,-0.141155692,98.11472667,0.695781199,0,141.2389642,79.06969113,192.9884957,4,8,37% +2018-04-06 17:00:00,53.31118576,113.369649,577.5800907,818.2471831,88.70308674,386.640468,296.2580639,90.38240409,86.0283614,4.354042695,142.7157053,0,142.7157053,2.674725345,140.04098,0.93045572,1.978673646,-0.975660329,0.975660329,0.697001432,0.697001432,0.15357712,3.237383482,104.1253812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.69373322,1.937829407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345473312,100.089277,85.03920654,102.0271064,296.2580639,0,0.362064264,68.77297624,-0.362064264,111.2270238,0.911902969,0,355.1978144,102.0271064,421.9725151,4,9,19% +2018-04-06 18:00:00,43.10904377,128.0102527,732.1255853,867.2014576,99.02133059,589.0975465,487.5430024,101.554544,96.03547212,5.519071913,180.4981829,0,180.4981829,2.985858467,177.5123244,0.752394751,2.234200386,-0.49590453,0.49590453,0.614958359,0.614958359,0.135251837,3.681419367,118.4071016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.31294869,2.163244295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6671758,113.8174099,94.98012449,115.9806542,487.5430024,0,0.562202702,55.79173346,-0.562202702,124.2082665,0.961064106,0,563.5402042,115.9806542,639.4472228,4,10,13% +2018-04-06 19:00:00,35.13875753,148.1079969,834.7765541,891.9432188,105.3805592,757.7222476,649.2264029,108.4958448,102.2029465,6.292898276,205.5788529,0,205.5788529,3.177612671,202.4012403,0.613287014,2.584972194,-0.145035088,0.145035088,0.55495615,0.55495615,0.126238044,3.845826847,123.6950113,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.24135964,2.302169563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786288459,118.9003499,101.0276481,121.2025194,649.2264029,0,0.727878624,43.2911548,-0.727878624,136.7088452,0.981307229,0,738.1182102,121.2025194,817.4428351,4,11,11% +2018-04-06 20:00:00,31.28441301,174.5856573,877.9637217,900.9976955,107.9709733,875.1883541,763.8546427,111.3337114,104.7152501,6.618461387,216.1281922,0,216.1281922,3.255723215,212.872469,0.546016012,3.047094546,0.153019462,-0.153019462,0.50398582,0.50398582,0.122978855,3.739331912,120.2697682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6562814,2.358760386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.709133241,115.6078758,103.3654146,117.9666362,763.8546427,0,0.847787565,32.02815796,-0.847787565,147.971842,0.991022961,0,860.3629047,117.9666362,937.5697088,4,12,9% +2018-04-06 21:00:00,33.0631851,202.5714056,858.5802289,897.0216336,106.8138138,929.7277369,819.6624132,110.0653236,103.5929832,6.472340431,211.3935474,0,211.3935474,3.220830587,208.1727168,0.577061441,3.535537998,0.440391209,-0.440391209,0.454842357,0.454842357,0.124407493,3.382859683,108.8043959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.57751582,2.333480796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.450870324,104.5869239,102.0283861,106.9204047,819.6624132,0,0.913759917,23.96977187,-0.913759917,156.0302281,0.995281032,0,917.8228383,106.9204047,987.8001048,4,13,8% +2018-04-06 22:00:00,39.70774687,225.2244902,778.0416223,878.8839753,101.9045952,914.4240985,809.7270963,104.6970021,98.83179571,5.865206395,191.7179987,0,191.7179987,3.072799535,188.6451992,0.693030921,3.93090891,0.754007564,-0.754007564,0.401210802,0.401210802,0.130975763,2.813173954,90.48134458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00088129,2.226232803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038134953,86.97411004,97.03901624,89.20034284,809.7270963,0,0.921312846,22.88122806,-0.921312846,157.1187719,0.995729618,0,903.3082686,89.20034284,961.688109,4,14,6% +2018-04-06 23:00:00,49.22817455,241.6828638,642.2500808,840.819251,93.15451419,826.6644429,731.4773286,95.18711428,90.34556189,4.841552397,158.5299201,0,158.5299201,2.808952306,155.7209678,0.859193731,4.218161719,1.147466852,-1.147466852,0.333925301,0.333925301,0.14504399,2.084459857,67.04339428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.84359055,2.035076384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51018407,64.4446607,88.35377462,66.47973708,731.4773286,0,0.869957875,29.54625536,-0.869957875,150.4537446,0.992525953,0,814.3640071,66.47973708,857.8736654,4,15,5% +2018-04-06 00:00:00,60.18135751,254.0977811,461.5832575,767.3011204,80.03795519,666.7447158,585.6405907,81.1041251,77.62451553,3.479609569,114.3296445,0,114.3296445,2.413439658,111.9162048,1.050362837,4.434842902,1.740321344,-1.740321344,0.232541212,0.232541212,0.17339874,1.272206494,40.91853404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.61563692,1.748528816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921709274,39.33245133,75.5373462,41.08098015,585.6405907,0,0.763247407,40.24867539,-0.763247407,139.7513246,0.984490442,0,652.0949104,41.08098015,678.9815903,4,16,4% +2018-04-06 01:00:00,71.77745432,264.3382364,252.012959,613.3941581,60.19926627,433.5943829,373.3105665,60.28381641,58.38403628,1.899780136,62.9186896,0,62.9186896,1.81522999,61.10345961,1.252752907,4.613572564,2.94287274,-2.94287274,0.026892811,0.026892811,0.238873693,0.492693767,15.84672516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.12095641,1.315127948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356954957,15.23247499,56.47791137,16.54760294,373.3105665,0,0.608598177,52.51178907,-0.608598177,127.4882109,0.967843987,0,417.7842983,16.54760294,428.6143735,4,17,3% +2018-04-06 02:00:00,83.51711431,273.6353092,49.02004021,230.2922993,23.01855937,118.8234984,96.12949972,22.69399864,22.32446488,0.369533769,12.57957078,0,12.57957078,0.694094494,11.88547628,1.457648627,4.775837095,8.06205516,-8.06205516,0,0,0.469574469,0.173523624,5.581116219,0.459032224,1,0.123407536,0,0.948543443,0.987305406,0.724496596,1,21.64384587,0.502869098,0.064482965,0.312029739,0.833467948,0.557964544,0.961238037,0.922476074,0.118764684,5.364781198,21.76261055,5.867650296,52.00296168,0,0.417423857,65.32794871,-0.417423857,114.6720513,0.930217675,0,70.13668467,5.867650296,73.97694443,4,18,5% +2018-04-06 03:00:00,95.35265615,282.8714068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6642178,4.937037408,-8.964170354,8.964170354,1,0,#DIV/0!,0,0,1,0.059369851,0,0.111095893,0.961238037,1,0.458145287,0.733648691,0,0,0.115824807,0.0104438,0.724496596,0.448993192,0.999066045,0.960304082,0,0,0,0,0,0,0.198347124,78.55968003,-0.198347124,101.44032,0.797916688,0,0,0,0,4,19,0% +2018-04-06 04:00:00,106.610421,292.8283892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860702864,5.110819535,-2.45848498,2.45848498,1,0.950579382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028255019,91.61910881,0.028255019,88.38089119,0,0,0,0,0,4,20,0% +2018-04-06 05:00:00,117.0003317,304.3524739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042041014,5.311952757,-1.14378759,1.14378759,1,0.725752887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249013997,104.4191733,0.249013997,75.58082674,0,0.849208074,0,0,0,4,21,0% +2018-04-06 06:00:00,125.8888024,318.4033616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197174093,5.55718701,-0.508678032,0.508678032,1,0.617142756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448872579,116.6713728,0.448872579,63.32862723,0,0.938609814,0,0,0,4,22,0% +2018-04-06 07:00:00,132.3374987,335.7627396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309725077,5.860165312,-0.081093795,0.081093795,1,0.544021545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614199732,127.8937944,0.614199732,52.10620561,0,0.968593257,0,0,0,4,23,0% +2018-04-07 08:00:00,135.2255789,356.0611222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360131585,6.21443892,0.274492695,-0.274492695,1,0.483212674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73371939,137.1991167,0.73371939,42.80088332,0,0.981854057,0,0,0,4,0,0% +2018-04-07 09:00:00,133.8594889,16.92991829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336288816,0.295482816,0.625246984,-0.625246984,1,0.423230158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799278635,143.0612722,0.799278635,36.93872784,0,0.987443592,0,0,0,4,1,0% +2018-04-07 10:00:00,128.5844668,35.50530368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244222313,0.619684451,1.033004975,-1.033004975,1,0.353499435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80640304,143.7459728,0.80640304,36.2540272,0,0.987996266,0,0,0,4,2,0% +2018-04-07 11:00:00,120.4590385,50.70014351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102406835,0.884884436,1.604880023,-1.604880023,1,0.255703042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754601367,138.9905503,0.754601367,41.00944968,0,0.98373985,0,0,0,4,3,0% +2018-04-07 12:00:00,110.5243369,63.02275656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929013583,1.099954606,2.651380755,-2.651380755,1,0.076740877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647398917,130.3457772,0.647398917,49.65422276,0,0.972767866,0,0,0,4,4,0% +2018-04-07 13:00:00,99.51832813,73.43134586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736922492,1.281618759,5.953351679,-5.953351679,1,0,#DIV/0!,0,0,0.327925105,1,0.166419052,0,0.94328704,0.982049003,0.724496596,1,0,0,0.048553561,0.312029739,0.871555096,0.596051692,0.961238037,0.922476074,0,0,0,0,0,0,-0.492097229,119.4785198,0.492097229,60.52148022,0,0.948394063,0,0,0,4,5,0% +2018-04-07 14:00:00,87.64994819,82.81664473,5.652689605,37.39405252,4.119359862,4.037758326,0,4.037758326,3.995145964,0.042612362,12.51429447,11.01952053,1.494773938,0.124213899,1.370560039,1.529780185,1.445423126,-23.75986746,23.75986746,0,0,0.728743333,0.031053475,0.998786491,1,0.721706632,0,0.042062952,0.961238037,1,0.612147473,0.887650878,3.840286263,0.0855608,0.115824807,0.184615112,0.724496596,0.448993192,0.979699814,0.940937851,0.022498137,0.967736833,3.8627844,1.053297632,0,3.066659485,-0.294686448,107.1387364,0.294686448,72.8612636,0,0.880328133,3.8627844,3.75296425,6.319024442,4,6,64% +2018-04-07 15:00:00,76.02924997,91.96682063,174.2104308,514.8047025,49.92292295,49.73083444,0,49.73083444,48.41756263,1.313271815,85.41310266,41.66840644,43.74469622,1.505360323,42.2393359,1.32696074,1.605123823,-3.727706826,3.727706826,0.832370899,0.832370899,0.286566784,1.15621479,37.18784212,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.54080285,1.09062843,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.83767368,35.74636835,47.37847653,36.83699678,0,41.66840644,-0.080940221,94.64261171,0.080940221,85.35738829,0,0,47.37847653,36.83699678,71.48755418,4,7,51% +2018-04-07 16:00:00,64.30001806,101.7007051,388.5067575,725.2659639,73.98878948,180.0672186,105.3807361,74.68648253,71.75775449,2.928728044,96.42899632,0,96.42899632,2.231034992,94.19796133,1.122247024,1.775012155,-1.767842895,1.767842895,0.83247263,0.83247263,0.190444022,2.531525793,81.42257156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97628305,1.616377257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.834081819,78.26647284,70.81036487,79.8828501,105.3807361,0,0.145299437,81.64538071,-0.145299437,98.35461929,0.705883043,0,145.1968396,79.8828501,197.4785673,4,8,36% +2018-04-07 17:00:00,53.00369728,113.0858865,582.5089801,819.9147732,89.11420776,390.8854695,300.0671852,90.81828435,86.4270856,4.391198745,143.9231684,0,143.9231684,2.68712216,141.2360463,0.925089033,1.973721057,-0.969311526,0.969311526,0.695915723,0.695915723,0.152983406,3.260182149,104.8586647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0770021,1.946810858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361990869,100.794137,85.43899296,102.7409479,300.0671852,0,0.365973629,68.53248621,-0.365973629,111.4675138,0.913378134,0,359.5137987,102.7409479,426.7556943,4,9,19% +2018-04-07 18:00:00,42.77273934,127.7436149,736.7360157,868.2664525,99.38237661,593.2248813,491.2854227,101.9394586,96.38563127,5.553827285,181.626922,0,181.626922,2.996745337,178.6301766,0.746525132,2.229546679,-0.493748261,0.493748261,0.614589615,0.614589615,0.134895505,3.702068767,119.0712573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.64953498,2.171131795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682136219,114.4558216,95.3316712,116.6269534,491.2854227,0,0.565823338,55.54051506,-0.565823338,124.4594849,0.961633196,0,567.7680424,116.6269534,644.0980509,4,10,13% +2018-04-07 19:00:00,34.7685999,147.9421169,839.0491578,892.7249871,105.7096322,761.5876314,652.7404277,108.8472037,102.5220968,6.325106968,206.6247179,0,206.6247179,3.187535438,203.4371825,0.606826544,2.582077042,-0.145019393,0.145019393,0.554953466,0.554953466,0.125987412,3.864790436,124.3049456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.54813902,2.309358574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.800027515,119.4866418,101.3481665,121.7960004,652.7404277,0,0.731177504,43.01480061,-0.731177504,136.9851994,0.981617152,0,742.0893662,121.7960004,821.8024126,4,11,11% +2018-04-07 20:00:00,30.90458485,174.6659929,881.9139456,901.6492701,108.2774045,878.7425453,767.0818642,111.6606811,105.0124412,6.648239844,217.0952098,0,217.0952098,3.264963246,213.8302466,0.53938676,3.048496667,0.151554892,-0.151554892,0.504236277,0.504236277,0.122775476,3.75694629,120.8363071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9419529,2.365454758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721894798,116.1524546,103.6638477,118.5179094,767.0818642,0,0.850754156,31.70620943,-0.850754156,148.2937906,0.991228615,0,864.0173416,118.5179094,941.5849429,4,12,9% +2018-04-07 21:00:00,32.7271776,202.9060262,862.2493383,897.6411006,107.1047854,932.9794377,822.6042571,110.3751806,103.8751809,6.499999727,212.2919393,0,212.2919393,3.229604453,209.0623348,0.571197004,3.54137823,0.437520654,-0.437520654,0.455333251,0.455333251,0.124215561,3.399430548,109.3373719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.84877498,2.339837433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.46287586,105.0992407,102.3116508,107.4390781,822.6042571,0,0.916406631,23.59371624,-0.916406631,156.4062838,0.995439068,0,921.1640657,107.4390781,991.4807936,4,13,8% +2018-04-07 22:00:00,39.43778719,225.6485503,781.4903646,879.566703,102.1879878,917.4308019,812.4329546,104.9978474,99.10664289,5.891204471,192.5627315,0,192.5627315,3.081344864,189.4813867,0.688319236,3.938310155,0.749338032,-0.749338032,0.402009339,0.402009339,0.130760394,2.828973079,90.98949875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.26507485,2.232423865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.049581366,87.46256715,97.31465622,89.69499102,812.4329546,0,0.923674068,22.53074247,-0.923674068,157.4692575,0.995868351,0,906.3909234,89.69499102,965.0945011,4,14,6% +2018-04-07 23:00:00,49.00947264,242.0968134,645.5507349,841.71374,93.44186844,829.5386857,734.0480002,95.49068546,90.62425134,4.866434121,159.3388667,0,159.3388667,2.817617097,156.5212496,0.855376662,4.225386502,1.139822538,-1.139822538,0.335232556,0.335232556,0.144747521,2.099652177,67.53203151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.11147745,2.041353995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.521190855,64.91435739,88.6326683,66.95571139,734.0480002,0,0.872087463,29.2978702,-0.872087463,150.7021298,0.992666301,0,817.2973816,66.95571139,861.1185556,4,15,5% +2018-04-07 00:00:00,59.99327215,254.4809621,464.8041995,768.7470163,80.35251899,669.6899273,588.2564428,81.43348446,77.92959407,3.50389039,115.1200844,0,115.1200844,2.422924917,112.6971595,1.047080128,4.441530672,1.726288371,-1.726288371,0.234940992,0.234940992,0.172873909,1.286627616,41.38236689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.90889002,1.755400854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.932157328,39.77830511,75.84104734,41.53370597,588.2564428,0,0.765214603,40.07391218,-0.765214603,139.9260878,0.984658853,0,655.0729615,41.53370597,682.2559414,4,16,4% +2018-04-07 01:00:00,71.6036464,264.6959348,255.1600056,616.461519,60.61174813,437.0454874,376.3379032,60.70758419,58.78408029,1.923503902,63.69416534,0,63.69416534,1.82766784,61.8664975,1.249719386,4.619815579,2.908386229,-2.908386229,0.032790352,0.032790352,0.237544077,0.505006862,16.24275664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.50549394,1.324139128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.365875753,15.6131555,56.87136969,16.93729463,376.3379032,0,0.610480771,52.37572607,-0.610480771,127.6242739,0.968097338,0,421.2030921,16.93729463,432.2882127,4,17,3% +2018-04-07 02:00:00,83.34680026,273.9776048,51.42155033,238.3710604,23.80400849,123.4164279,99.94256068,23.47386718,23.08622981,0.387637367,13.1855289,0,13.1855289,0.717778684,12.46775022,1.454676086,4.781811281,7.833207146,-7.833207146,0,0,0.462918919,0.179444671,5.771557453,0.447331714,1,0.126974813,0,0.948123506,0.98688547,0.724496596,1,22.38316209,0.520028213,0.063128428,0.312029739,0.836628227,0.561124823,0.961238037,0.922476074,0.122805873,5.547840555,22.50596797,6.067868768,55.23508368,0,0.419273046,65.21129962,-0.419273046,114.7887004,0.930745971,0,73.91579956,6.067868768,77.88709831,4,18,5% +2018-04-07 03:00:00,95.16926533,283.2074815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661017027,4.942903019,-9.24866922,9.24866922,1,0,#DIV/0!,0,0,1,0.100532798,0,0.107705247,0.961238037,1,0.464818291,0.740321695,0,0,0.115824807,0.018042492,0.724496596,0.448993192,0.998369972,0.959608009,0,0,0,0,0,0,0.200337163,78.44332391,-0.200337163,101.5566761,0.800420744,0,0,0,0,4,19,0% +2018-04-07 04:00:00,106.4057079,293.1641807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857129945,5.116680202,-2.477365288,2.477365288,1,0.953808105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.026092603,91.4951657,0.026092603,88.5048343,0,0,0,0,0,4,20,0% +2018-04-07 05:00:00,116.7624772,304.6867848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03788967,5.317787582,-1.146200863,1.146200863,1,0.726165581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.246611385,104.2770816,0.246611385,75.72291842,0,0.847251858,0,0,0,4,21,0% +2018-04-07 06:00:00,125.6064498,318.7191785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19224611,5.562699055,-0.506827768,0.506827768,1,0.616826342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446178517,116.4987646,0.446178517,63.50123541,0,0.937937231,0,0,0,4,22,0% +2018-04-07 07:00:00,132.0054248,336.0154519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303929294,5.864575973,-0.07715893,0.07715893,1,0.543348644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611183057,127.6750949,0.611183057,52.3249051,0,0.968191449,0,0,0,4,23,0% +2018-04-08 08:00:00,134.8550056,356.1873818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353663861,6.216642566,0.280194172,-0.280194172,1,0.482237664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.730371181,136.9175205,0.730371181,43.08247951,0,0.981541658,0,0,0,4,0,0% +2018-04-08 09:00:00,133.4789167,16.90292658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329646578,0.295011722,0.633220437,-0.633220437,1,0.421866617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795612835,142.7131779,0.795612835,37.28682213,0,0.987155363,0,0,0,4,1,0% +2018-04-08 10:00:00,128.2201802,35.36295294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.237864311,0.617199962,1.044795523,-1.044795523,1,0.351483132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802455503,143.3652296,0.802455503,36.63477044,0,0.987691249,0,0,0,4,2,0% +2018-04-08 11:00:00,120.1211787,50.49645711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096510069,0.881329437,1.624721847,-1.624721847,1,0.25230989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750427397,138.6274139,0.750427397,41.37258611,0,0.983371303,0,0,0,4,3,0% +2018-04-08 12:00:00,110.21114,62.79168959,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923547265,1.095921726,2.694822405,-2.694822405,1,0.069311917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643069472,130.021085,0.643069472,49.97891504,0,0.972247903,0,0,0,4,4,0% +2018-04-08 13:00:00,99.22340987,73.18731175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731775197,1.277359561,6.148716649,-6.148716649,1,0,#DIV/0!,0,0,0.342684214,1,0.161223978,0,0.943944153,0.982706116,0.724496596,1,0,0,0.050432653,0.312029739,0.866957462,0.591454058,0.961238037,0.922476074,0,0,0,0,0,0,-0.487694046,119.1891303,0.487694046,60.81086972,0,0.947476706,0,0,0,4,5,0% +2018-04-08 14:00:00,87.38274423,82.56327525,7.223447791,46.46444686,5.101702439,5.002320688,0,5.002320688,4.947867288,0.054453401,15.40654504,13.50130134,1.905243699,0.153835152,1.751408547,1.525116596,1.441000994,-21.35252078,21.35252078,0,0,0.706269719,0.038458788,1.236966822,1,0.685697653,0,0.046798683,0.961238037,1,0.600370659,0.875874063,4.756078238,0.105678907,0.115824807,0.171300213,0.724496596,0.448993192,0.981426081,0.942664117,0.027863261,1.198921563,4.783941499,1.30460047,0,4.243490703,-0.290572734,106.8922479,0.290572734,73.10775214,0,0.877926043,4.783941499,5.030071472,8.076022676,4,6,69% +2018-04-08 15:00:00,75.74892448,91.7029648,179.2373842,522.0857317,50.71476343,50.53669331,0,50.53669331,49.1855262,1.351167112,85.01617287,40.0287567,44.98741617,1.529237235,43.45817894,1.322068137,1.60051867,-3.658105092,3.658105092,0.844273497,0.844273497,0.282947465,1.200290274,38.60546119,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.27899864,1.107927171,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.869606218,37.10903773,48.14860486,38.2169649,0,40.0287567,-0.07667085,94.39723143,0.07667085,85.60276857,0,0,48.14860486,38.2169649,73.16084405,4,7,52% +2018-04-08 16:00:00,64.01249957,101.4244834,393.6148023,728.2990011,74.49234627,184.0241982,108.8108364,75.21336183,72.24612718,2.967234644,97.68268503,0,97.68268503,2.246219088,95.43646594,1.11722888,1.770191177,-1.750551016,1.750551016,0.829515544,0.829515544,0.189251893,2.55710362,82.24524241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44572547,1.627378083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.852612868,79.05725536,71.29833833,80.68463344,108.8108364,0,0.149404072,81.40760675,-0.149404072,98.59239325,0.7153371,0,149.1347665,80.68463344,201.9412454,4,8,35% +2018-04-08 17:00:00,52.69902882,112.8006652,587.3733309,821.5380825,89.5197054,395.0824504,303.8342262,91.24822427,86.82035599,4.427868276,145.1148139,0,145.1148139,2.69934941,142.4154644,0.919771566,1.968743007,-0.9631139,0.9631139,0.694855867,0.694855867,0.152406827,3.282652907,105.5814015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.45502855,1.955669459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378270857,101.4888591,85.83329941,103.4445286,303.8342262,0,0.369835839,68.29450658,-0.369835839,111.7054934,0.914804882,0,363.7823328,103.4445286,431.4847079,4,9,19% +2018-04-08 18:00:00,42.43928059,127.4741151,741.2782146,869.3032614,99.7385955,597.2924654,494.9732883,102.3191771,96.73110885,5.588068299,182.738972,0,182.738972,3.00748665,179.7314853,0.740705178,2.224843019,-0.491646236,0.491646236,0.614230148,0.614230148,0.134549476,3.722409436,119.7254832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.98162117,2.17891384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696872965,115.0846884,95.67849413,117.2636022,494.9732883,0,0.56939081,55.29224398,-0.56939081,124.707756,0.962186851,0,571.9352838,117.2636022,648.6819662,4,10,13% +2018-04-08 19:00:00,34.40091853,147.772789,843.2532677,893.4856624,106.0342798,765.3871314,656.1933771,109.1937543,102.836955,6.356799324,207.6538424,0,207.6538424,3.19732476,204.4565176,0.600409294,2.579121712,-0.145019921,0.145019921,0.554953557,0.554953557,0.125744286,3.883467897,124.9056769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.85079275,2.316450905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.813559272,120.0640877,101.664352,122.3805386,656.1933771,0,0.734419594,42.74180475,-0.734419594,137.2581953,0.981919028,0,745.9931148,122.3805386,826.0887297,4,11,11% +2018-04-08 20:00:00,30.52684333,174.7461939,885.798466,902.2830302,108.57973,882.2287654,770.2455919,111.9831735,105.3056505,6.677523,218.046173,0,218.046173,3.274079477,214.7720935,0.532793926,3.049896439,0.150094842,-0.150094842,0.50448596,0.50448596,0.122578368,3.774304688,121.3946128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2237968,2.372059436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.734470898,116.6891193,103.9582677,119.0611788,770.2455919,0,0.853662948,31.38766449,-0.853662948,148.6123355,0.991428874,0,867.6019876,119.0611788,945.5251479,4,12,9% +2018-04-08 21:00:00,32.39358298,203.2436447,865.8582729,898.2438851,107.3919764,936.1645465,825.483629,110.6809175,104.1537121,6.527205401,213.1756271,0,213.1756271,3.238264323,209.9373628,0.565374679,3.547270785,0.434671449,-0.434671449,0.455820494,0.455820494,0.124029509,3.41578326,109.8633313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1165097,2.346111479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.474723344,105.6048129,102.5912331,107.9509244,825.483629,0,0.918997215,23.22008085,-0.918997215,156.7799192,0.995592871,0,924.4368493,107.9509244,995.0885703,4,13,8% +2018-04-08 22:00:00,39.17034474,226.0742241,784.886791,880.2320838,102.4679326,920.3752402,815.0802857,105.2949546,99.37814641,5.916808168,193.3946758,0,193.3946758,3.089786236,190.3048896,0.683651485,3.945739564,0.744711134,-0.744711134,0.402800585,0.402800585,0.130551226,2.844598425,91.49206361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.52605436,2.23853961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060901876,87.94565161,97.58695623,90.18419122,815.0802857,0,0.925983386,22.18288852,-0.925983386,157.8171115,0.996003351,0,909.409652,90.18419122,968.4334015,4,14,6% +2018-04-08 23:00:00,48.7928507,242.5105868,648.808775,842.587681,93.72604782,832.3571109,736.5662546,95.79085627,90.89986167,4.890994604,160.1373853,0,160.1373853,2.826186154,157.3111991,0.851595896,4.232608211,1.132260772,-1.132260772,0.336525694,0.336525694,0.144458662,2.114720827,68.0166911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37640458,2.047562248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53210804,65.38023063,88.90851262,67.42779288,736.5662546,0,0.87417164,29.05290947,-0.87417164,150.9470905,0.992802995,0,820.1736959,67.42779288,864.3038378,4,15,5% +2018-04-08 00:00:00,59.80668289,254.8629928,467.993698,770.1632083,80.66388311,672.5861296,590.826626,81.7595036,78.23156942,3.527934177,115.902804,0,115.902804,2.432313694,113.4704903,1.043823531,4.448198367,1.712446455,-1.712446455,0.237308099,0.237308099,0.172361046,1.300983841,41.84411242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.19916021,1.762202991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.942558364,40.22215247,76.14171857,41.98435546,590.826626,0,0.767144703,39.90182646,-0.767144703,140.0981735,0.984823248,0,658.0015155,41.98435546,685.4794365,4,16,4% +2018-04-08 01:00:00,71.43079343,265.0519625,258.2893477,619.4686517,61.01962483,440.4496528,379.3229006,61.12675221,59.17965801,1.947094205,64.46520955,0,64.46520955,1.839966827,62.62524272,1.246702533,4.626029435,2.874601578,-2.874601578,0.038567868,0.038567868,0.236245224,0.517346079,16.63962828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.88573828,1.333049703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374815473,15.99464362,57.26055376,17.32769332,379.3229006,0,0.61233591,52.24140321,-0.61233591,127.7585968,0.968345472,0,424.5761668,17.32769332,435.9167955,4,17,3% +2018-04-08 02:00:00,83.17688825,274.3178482,53.84934552,246.3553942,24.58121677,127.9878602,103.7419187,24.2459415,23.84000239,0.405939113,13.79761165,0,13.79761165,0.741214381,13.05639727,1.451710562,4.787749649,7.616050806,-7.616050806,0,0,0.456481254,0.185303595,5.960000596,0.435751158,1,0.130554803,0,0.947699142,0.986461105,0.724496596,1,23.11456387,0.537007295,0.061775374,0.312029739,0.839799617,0.564296213,0.961238037,0.922476074,0.126811985,5.728979273,23.24137586,6.265986568,58.53625751,0,0.421106747,65.09551919,-0.421106747,114.9044808,0.93126526,0,77.75415895,6.265986568,81.85512184,4,18,5% +2018-04-08 03:00:00,94.98606503,283.5410853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657819578,4.948725504,-9.553593221,9.553593221,1,0,#DIV/0!,0,0,1,0.140830252,0,0.104292875,0.961238037,1,0.471627496,0.7471309,0,0,0.115824807,0.025784155,0.724496596,0.448993192,0.997646516,0.958884553,0,0,0,0,0,0,0.202319634,78.3273622,-0.202319634,101.6726378,0.802866299,0,0,0,0,4,19,0% +2018-04-08 04:00:00,106.2009806,293.4969297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853556781,5.122487767,-2.496722428,2.496722428,1,0.957118371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023928596,91.37113842,0.023928596,88.62886158,0,0,0,0,0,4,20,0% +2018-04-08 05:00:00,116.5246,305.0172612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03373793,5.323555484,-1.148685988,1.148685988,1,0.726590563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.244199474,104.1345301,0.244199474,75.86546992,0,0.845249354,0,0,0,4,21,0% +2018-04-08 06:00:00,125.3243788,319.0302784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187323043,5.568128772,-0.504988599,0.504988599,1,0.616511826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443469429,116.3254548,0.443469429,63.6745452,0,0.937252657,0,0,0,4,22,0% +2018-04-08 07:00:00,131.6743277,336.2632024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298150559,5.868900035,-0.073214813,0.073214813,1,0.54267416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60814801,127.4557121,0.60814801,52.54428786,0,0.967783173,0,0,0,4,23,0% +2018-04-09 08:00:00,134.4862405,356.3102497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347227696,6.218787015,0.285920551,-0.285920551,1,0.481258396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727003866,136.6358021,0.727003866,43.3641979,0,0.981224575,0,0,0,4,0,0% +2018-04-09 09:00:00,133.100566,16.87535191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323043112,0.294530453,0.641242664,-0.641242664,1,0.420494736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791929857,142.3662271,0.791929857,37.63377288,0,0.986863095,0,0,0,4,1,0% +2018-04-09 10:00:00,127.8580525,35.22187505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231543991,0.614737688,1.05668753,-1.05668753,1,0.349449479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798495246,142.9866482,0.798495246,37.0133518,0,0.98738222,0,0,0,4,2,0% +2018-04-09 11:00:00,119.7853232,50.29451642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090648285,0.877804907,1.64482075,-1.64482075,1,0.248872775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.74624739,138.2663525,0.74624739,41.73364753,0,0.982998091,0,0,0,4,3,0% +2018-04-09 12:00:00,109.8999067,62.56218664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918115219,1.091916144,2.739239878,-2.739239878,1,0.061716082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638742441,129.6981103,0.638742441,50.30188969,0,0.971721187,0,0,0,4,4,0% +2018-04-09 13:00:00,98.93054145,72.94447371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726663679,1.273121237,6.355270185,-6.355270185,1,0,#DIV/0!,0,0,0.357599589,1,0.156070075,0,0.94459006,0.983352023,0.724496596,1,0,0,0.052308617,0.312029739,0.862395391,0.586891987,0.961238037,0.922476074,0,0,0,0,0,0,-0.483302914,118.9013437,0.483302914,61.09865634,0,0.946545213,0,0,0,4,5,0% +2018-04-09 14:00:00,87.11593331,82.31068035,8.996251336,56.37526895,6.159718097,6.041797412,0,6.041797412,5.973979869,0.067817543,18.5157699,16.14878638,2.366983519,0.185738228,2.181245291,1.520459867,1.436592382,-19.39311091,19.39311091,0,0,0.684698311,0.046434557,1.493494967,1,0.648700135,0,0.051519073,0.961238037,1,0.588808641,0.864312046,5.742416682,0.127340819,0.115824807,0.15823526,0.724496596,0.448993192,0.983081403,0.94431944,0.033641678,1.447890098,5.77605836,1.575230918,0,5.673066479,-0.286451607,106.6456377,0.286451607,73.35436234,0,0.875450447,5.77605836,6.541719501,10.05748294,4,6,74% +2018-04-09 15:00:00,75.47101027,91.43938571,184.2311322,529.1298365,51.48842427,51.3246704,0,51.3246704,49.93585831,1.388812094,84.54787507,38.32633815,46.22153692,1.552565964,44.66897095,1.317217619,1.595918347,-3.591657246,3.591657246,0.855636747,0.855636747,0.279477326,1.244352031,40.02263875,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.00024641,1.124828756,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.90152881,38.4712827,48.90177522,39.59611145,0,38.32633815,-0.072432767,94.15372935,0.072432767,85.84627065,0,0,48.90177522,39.59611145,74.81663824,4,7,53% +2018-04-09 16:00:00,63.72769808,101.147858,398.6647002,731.2454414,74.98785805,187.954486,112.2224857,75.73200036,72.72669746,3.005302907,98.92203275,0,98.92203275,2.261160596,96.66087215,1.112258156,1.765363153,-1.73376079,1.73376079,0.826644247,0.826644247,0.188097562,2.582312657,83.05605169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.90766789,1.638203155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87087673,79.83663608,71.77854462,81.47483923,112.2224857,0,0.153467604,81.17206689,-0.153467604,98.82793311,0.72419834,0,153.0498825,81.47483923,206.3735353,4,8,35% +2018-04-09 17:00:00,52.39730685,112.5140047,592.1714545,823.1176791,89.91953005,399.2294242,307.5572611,91.67216301,87.20812445,4.464038558,146.2902307,0,146.2902307,2.711405599,143.5788251,0.914505524,1.963739837,-0.957066612,0.957066612,0.69382172,0.69382172,0.15184712,3.304790284,106.2934157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.82776634,1.964404126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.394309311,102.1732742,86.22207565,104.1376784,307.5572611,0,0.373649199,68.05915036,-0.373649199,111.9408496,0.916184645,0,368.0013159,104.1376784,436.1573436,4,9,19% +2018-04-09 18:00:00,42.1087999,127.2017243,745.7509281,870.3121765,100.0899417,601.2987754,498.6051292,102.6936462,97.07186071,5.621785503,183.8340276,0,183.8340276,3.018081036,180.8159465,0.734937202,2.220088903,-0.489599212,0.489599212,0.613880086,0.613880086,0.134213634,3.742437465,120.3696534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.30916482,2.186589437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711383203,115.7038893,96.02054803,117.8904788,498.6051292,0,0.572903773,55.04703611,-0.572903773,124.9529639,0.962725309,0,576.0403249,117.8904788,653.1972854,4,10,13% +2018-04-09 19:00:00,34.03584003,147.5998843,847.3880417,894.2254616,106.3544719,769.1196754,659.5842143,109.5354611,103.1474921,6.387968997,208.6660212,0,208.6660212,3.206979733,205.4590414,0.594037472,2.576103956,-0.145037656,0.145037656,0.55495659,0.55495659,0.125508582,3.901856788,125.4971269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.14929284,2.323445899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826881961,120.6326118,101.9761748,122.9560577,659.5842143,0,0.737603929,42.47229486,-0.737603929,137.5277051,0.982212942,0,749.8283267,122.9560577,830.3006074,4,11,11% +2018-04-09 20:00:00,30.15128666,174.8261136,889.6168126,902.8991836,108.8779373,885.6463892,773.3452161,112.3011731,105.5948657,6.706307309,218.9809674,0,218.9809674,3.283071526,215.6978958,0.526239226,3.0512913,0.148638321,-0.148638321,0.50473504,0.50473504,0.122387455,3.791405858,121.9446453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5018015,2.378574144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.746860638,117.2178314,104.2486621,119.5964056,773.3452161,0,0.856513363,31.07267109,-0.856513363,148.9273289,0.991623795,0,871.1161798,119.5964056,949.3896354,4,12,9% +2018-04-09 21:00:00,32.06247032,203.5841184,869.4068715,898.8302212,107.6753907,939.2828574,828.3003207,110.9825367,104.4285804,6.553956236,214.0445719,0,214.0445719,3.246810311,210.7977616,0.559595673,3.553213171,0.431842569,-0.431842569,0.456304261,0.456304261,0.123849252,3.43191739,110.3822604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3807236,2.352303018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.486412466,106.1036273,102.8671361,108.4559303,828.3003207,0,0.921531454,22.84899301,-0.921531454,157.151007,0.995742492,0,927.6409618,108.4559303,998.6231991,4,13,8% +2018-04-09 22:00:00,38.90545101,226.5013194,788.230965,880.8804137,102.7444481,923.2575725,817.6692306,105.5883419,99.64632391,5.942017964,194.2138475,0,194.2138475,3.098124197,191.1157233,0.679028217,3.953193783,0.740125671,-0.740125671,0.403584746,0.403584746,0.13034815,2.860049941,91.98903748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.78383678,2.244580434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072096447,88.4233618,97.85593322,90.66794223,817.6692306,0,0.928240903,21.83775651,-0.928240903,158.1622435,0.996134673,0,912.3646047,90.66794223,971.7049595,4,14,7% +2018-04-09 23:00:00,48.57831281,242.9240048,652.0243877,843.4414947,94.00708392,835.1201666,739.0325078,96.08765874,91.17242349,4.915235251,160.9255221,0,160.9255221,2.834660429,158.0908617,0.847851504,4.239823715,1.124779738,-1.124779738,0.337805026,0.337805026,0.144177251,2.129665644,68.4973678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.63840137,2.053701832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.54293551,65.84227535,89.18133688,67.89597718,739.0325078,0,0.876210754,28.8114066,-0.876210754,151.1885934,0.992936103,0,822.9933954,67.89597718,867.4299545,4,15,5% +2018-04-09 00:00:00,59.62158321,255.2437225,471.1519421,771.5504031,80.97209735,675.4339814,593.3517492,82.08223222,78.53048986,3.551742355,116.6778507,0,116.6778507,2.44160749,114.2362432,1.040592932,4.454843352,1.698791342,-1.698791342,0.23964326,0.23964326,0.17185984,1.315274296,42.30374258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.48649391,1.768936315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95291175,40.66396646,76.43940566,42.43290278,593.3517492,0,0.769038221,39.73239971,-0.769038221,140.2676003,0.984983726,0,660.8812221,42.43290278,688.6527083,4,16,4% +2018-04-09 01:00:00,71.25888942,265.4061895,261.4009847,622.41713,61.42300053,443.8077205,382.2662991,61.54142148,59.57087044,1.970551039,65.23182522,0,65.23182522,1.852130093,63.37969513,1.243702242,4.632211862,2.841497247,-2.841497247,0.044229042,0.044229042,0.234976164,0.529708622,17.03725016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.26178656,1.341861947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.383772094,16.3768529,57.64555865,17.71871484,382.2662991,0,0.614164168,52.10878765,-0.614164168,127.8912124,0.968588543,0,427.9043162,17.71871484,439.5008606,4,17,3% +2018-04-09 02:00:00,83.00738638,274.6559215,56.3016401,254.241272,25.34995508,132.5350724,107.5250865,25.00998595,24.5855604,0.424425545,14.41537916,0,14.41537916,0.764394677,13.65098448,1.448752196,4.79365014,7.409718249,-7.409718249,0,0,0.450252515,0.191098669,6.146390101,0.424289047,1,0.134147379,0,0.94727034,0.986032303,0.724496596,1,23.83781583,0.553801341,0.060423843,0.312029739,0.842981967,0.567478563,0.961238037,0.922476074,0.13078251,5.908143954,23.96859834,6.461945296,61.90337004,0,0.42292538,64.98058281,-0.42292538,115.0194172,0.931775835,0,81.64866263,6.461945296,85.87787658,4,18,5% +2018-04-09 03:00:00,94.80306827,283.8721071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654625682,4.954502923,-9.881239006,9.881239006,1,0,#DIV/0!,0,0,1,0.180290969,0,0.100858494,0.961238037,1,0.47857519,0.754078594,0,0,0.115824807,0.033672263,0.724496596,0.448993192,0.996894588,0.958132625,0,0,0,0,0,0,0.204294948,78.21177093,-0.204294948,101.7882291,0.805255817,0,0,0,0,4,19,0% +2018-04-09 04:00:00,105.9962696,293.8265306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8499839,5.128240389,-2.516577452,2.516577452,1,0.96051378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.021762812,91.24701573,0.021762812,88.75298427,0,0,0,0,0,4,20,0% +2018-04-09 05:00:00,116.2867528,305.3438096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029586712,5.329254829,-1.151247359,1.151247359,1,0.727028583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.241778375,103.9915253,0.241778375,76.00847471,0,0.84319904,0,0,0,4,21,0% +2018-04-09 06:00:00,125.0426658,319.3365957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182406223,5.573475016,-0.50316312,0.50316312,1,0.616199651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440745779,116.1514744,0.440745779,63.84852557,0,0.936555919,0,0,0,4,22,0% +2018-04-09 07:00:00,131.344301,336.5059651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292390506,5.873137044,-0.069263726,0.069263726,1,0.541998484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605095432,127.2357094,0.605095432,52.76429058,0,0.967368406,0,0,0,4,23,0% +2018-04-10 08:00:00,134.119384,356.4297039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340824842,6.220871885,0.291669441,-0.291669441,1,0.480275278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723618666,136.3540581,0.723618666,43.64594188,0,0.980902833,0,0,0,4,0,0% +2018-04-10 09:00:00,132.7245455,16.84713332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316480317,0.294037946,0.649310922,-0.649310922,1,0.419114982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78823128,142.0205277,0.78823128,37.97947228,0,0.986566841,0,0,0,4,1,0% +2018-04-10 10:00:00,127.4982049,35.08200099,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225263465,0.612296425,1.068677773,-1.068677773,1,0.347399027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794524158,142.6103343,0.794524158,37.38966573,0,0.987069251,0,0,0,4,2,0% +2018-04-10 11:00:00,119.4515994,50.09427824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084823706,0.874310092,1.665174087,-1.665174087,1,0.24539215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742063478,137.9074901,0.742063478,42.09250987,0,0.98262032,0,0,0,4,3,0% +2018-04-10 12:00:00,109.5907639,62.33423288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912719659,1.0879376,2.784648849,-2.784648849,1,0.05395069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634420108,129.3769883,0.634420108,50.62301174,0,0.97118787,0,0,0,4,4,0% +2018-04-10 13:00:00,98.63984647,72.70283783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721590095,1.268903896,6.573911496,-6.573911496,1,0,#DIV/0!,0,0,0.372667651,1,0.150959168,0,0.945224661,0.983986624,0.724496596,1,0,0,0.054180697,0.312029739,0.857870579,0.582367175,0.961238037,0.922476074,0,0,0,0,0,0,-0.478926171,118.615292,0.478926171,61.38470796,0,0.945599775,0,0,0,4,5,0% +2018-04-10 14:00:00,86.8498827,82.0588806,10.96109032,67.00179962,7.279192413,7.142327233,0,7.142327233,7.059697904,0.082629329,21.79371136,18.9165736,2.877137759,0.219494509,2.657643251,1.515816408,1.432197647,-17.76917616,17.76917616,0,0,0.664093827,0.054873627,1.764924476,1,0.610722535,0,0.05621793,0.961238037,1,0.577474782,0.852978186,6.786050154,0.15029273,0.115824807,0.14543399,0.724496596,0.448993192,0.984666016,0.945904053,0.039755756,1.711229928,6.82580591,1.861522657,0,7.36379581,-0.282329336,106.3992761,0.282329336,73.60072393,0,0.872901861,6.82580591,8.289393723,12.25104831,4,6,79% +2018-04-10 15:00:00,75.19562839,91.17611384,189.1882551,535.9433307,52.24426993,52.09509341,0,52.09509341,50.66891243,1.42618098,84.01267483,36.56643453,47.4462403,1.575357499,45.8708828,1.312411299,1.591323386,-3.528184232,3.528184232,0.866491272,0.866491272,0.276149647,1.288354366,41.43790509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.70488592,1.141341146,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.933408352,39.83169054,49.63829427,40.97303169,0,36.56643453,-0.068228173,93.91222569,0.068228173,86.08777431,0,0,49.63829427,40.97303169,76.45432405,4,7,54% +2018-04-10 16:00:00,63.44573295,100.8708639,403.6543459,734.1069482,75.47532922,191.8554967,115.6131102,76.24238654,73.19946957,3.042916964,100.1465292,0,100.1465292,2.27585965,97.87066951,1.107336936,1.760528695,-1.71745995,1.71745995,0.823856639,0.823856639,0.186980098,2.607146734,83.85480097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.36211443,1.648852569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888868934,80.60442426,72.25098336,82.25327683,115.6131102,0,0.157488102,80.93887335,-0.157488102,99.06112665,0.732515699,0,156.9394016,82.25327683,210.7725262,4,8,34% +2018-04-10 17:00:00,52.09865521,112.2259309,596.9017416,824.6541385,90.31363624,403.32448,311.2344357,92.09004435,87.59034689,4.499697461,147.4490273,0,147.4490273,2.723289355,144.7257379,0.909293069,1.958712,-0.951168736,0.951168736,0.692813123,0.692813123,0.151304025,3.32658914,106.9945418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.19517309,1.973013867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410102508,102.8472233,86.6052756,104.8202372,311.2344357,0,0.377412082,67.82652707,-0.377412082,112.1734729,0.917518815,0,372.1687261,104.8202372,440.771475,4,9,18% +2018-04-10 18:00:00,41.78142783,126.9264212,750.1529768,871.2934975,100.4363738,605.2423672,502.1795506,103.0628166,97.40784657,5.654970005,184.9118014,0,184.9118014,3.028527241,181.8832742,0.729223482,2.215283957,-0.48760785,0.48760785,0.613539543,0.613539543,0.133887856,3.762149218,121.0036512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63212721,2.194157677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.725664302,116.3133121,96.35779152,118.5074698,502.1795506,0,0.576360953,54.80500362,-0.576360953,125.1949964,0.963248807,0,580.0816447,118.5074698,657.6424136,4,10,13% +2018-04-10 19:00:00,33.67349036,147.4232785,851.4527026,894.9446061,106.6701818,772.7842684,662.911976,109.8722924,103.4536823,6.418610127,209.6610651,0,209.6610651,3.216499553,206.4445655,0.587713277,2.573021605,-0.145073499,0.145073499,0.554962719,0.554962719,0.12528022,3.919954882,126.0792238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.44361446,2.330342977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839993968,121.1921455,102.2836084,123.5224885,662.911976,0,0.740729618,42.20639505,-0.740729618,137.7936049,0.982498986,0,753.5939529,123.5224885,834.4369512,4,11,11% +2018-04-10 20:00:00,29.77801286,174.9056044,893.3685669,903.4979403,109.1720163,888.9948605,776.3801937,112.6146668,105.8800772,6.734589618,219.8994912,0,219.8994912,3.291939092,216.6075521,0.519724369,3.052678676,0.147184416,-0.147184416,0.504983672,0.504983672,0.122202661,3.808248695,122.4863688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7759575,2.384998666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.759063216,117.7385567,104.5350207,120.1235554,776.3801937,0,0.859304885,30.76137521,-0.859304885,149.2386248,0.991813434,0,874.5593272,120.1235554,953.1777917,4,12,9% +2018-04-10 21:00:00,31.73390813,203.9273014,872.8950084,899.4003421,107.9550338,942.3342202,831.0541777,111.2800425,104.6997912,6.580251286,214.8987434,0,214.8987434,3.25524258,211.6435008,0.553861181,3.559202844,0.429033081,-0.429033081,0.456784712,0.456784712,0.123674706,3.447832571,110.8941473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6414218,2.358412168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49794296,106.5956725,103.1393647,108.9540846,831.0541777,0,0.924009186,22.48058023,-0.924009186,157.5194198,0.995887984,0,930.7762342,108.9540846,1002.084504,4,13,8% +2018-04-10 22:00:00,38.64313685,226.9296419,791.5229675,881.5119834,103.0175529,926.0779955,820.1999674,105.8780281,99.91119358,5.96683447,195.0202667,0,195.0202667,3.106359314,191.9139074,0.674449971,3.960669422,0.735580553,-0.735580553,0.404362006,0.404362006,0.13015106,2.875327566,92.48041839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.03843958,2.250546749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083165033,88.89569582,98.12160461,91.14624257,820.1999674,0,0.930446758,21.49543616,-0.930446758,158.5045638,0.996262374,0,915.2559712,91.14624257,974.9093641,4,14,7% +2018-04-10 23:00:00,48.36586323,243.3368881,655.1977579,844.2755881,94.28500746,837.828317,741.4471929,96.38112406,91.44196661,4.939157456,161.7033229,0,161.7033229,2.843040849,158.860282,0.844143559,4.247029888,1.117377789,-1.117377789,0.339070834,0.339070834,0.143903129,2.144486391,68.97405397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89749647,2.059773417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553673091,66.30048423,89.45116956,68.36025765,741.4471929,0,0.878205178,28.57339274,-0.878205178,151.4266073,0.993065697,0,825.7569427,68.36025765,870.4973641,4,15,5% +2018-04-10 00:00:00,59.43796773,255.6230012,474.2791016,772.9092758,81.27720866,678.2341313,595.8324141,82.40171714,78.82640093,3.575316204,117.4452669,0,117.4452669,2.450807722,114.9944592,1.037388238,4.461463014,1.685319128,-1.685319128,0.241947145,0.241947145,0.171369998,1.329497995,42.76122563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77093489,1.775601852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.963216772,41.10371658,76.73415166,42.87931843,595.8324141,0,0.77089567,39.56561249,-0.77089567,140.4343875,0.98514038,0,663.7127227,42.87931843,691.776379,4,16,4% +2018-04-10 01:00:00,71.08793027,265.758487,264.4948868,625.3084414,61.82197204,447.1204909,385.1688053,61.95168566,59.95781148,1.99387418,65.99400808,0,65.99400808,1.864160556,64.12984753,1.240718442,4.638360614,2.809053155,-2.809053155,0.049777308,0.049777308,0.233735982,0.542091605,17.43552944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.633729,1.350577977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.392743522,16.75969409,58.02647253,18.11027207,385.1688053,0,0.615966105,51.97784719,-0.615966105,128.0221528,0.968826702,0,431.188296,18.11027207,443.0411069,4,17,3% +2018-04-10 02:00:00,82.83830468,274.9917082,58.77670087,262.025222,26.11003363,137.0556039,111.2898005,25.76580338,25.32271978,0.443083599,15.03840547,0,15.03840547,0.78731385,14.25109162,1.445801163,4.799510723,7.213428782,-7.213428782,0,0,0.444224212,0.196828462,6.330679945,0.412944095,1,0.137752347,0,0.946837097,0.98559906,0.724496596,1,24.5527201,0.570406204,0.059073901,0.312029739,0.846175069,0.570671665,0.961238037,0.922476074,0.134717109,6.085290362,24.68743721,6.655696566,65.33333449,0,0.424729343,64.86646706,-0.424729343,115.1335329,0.932277971,0,85.59626574,6.655696566,89.95228603,4,18,5% +2018-04-10 03:00:00,94.62029102,284.2004375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651435618,4.960233371,-10.23425126,10.23425126,1,0,#DIV/0!,0,0,1,0.218941439,0,0.09740191,0.961238037,1,0.485663515,0.761166919,0,0,0.115824807,0.04171015,0.724496596,0.448993192,0.996113079,0.957351115,0,0,0,0,0,0,0.206263468,78.09652874,-0.206263468,101.9034713,0.807591587,0,0,0,0,4,19,0% +2018-04-10 04:00:00,105.7916085,294.1528809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84641189,5.133936276,-2.536951792,2.536951792,1,0.963997997,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.019595121,91.12278959,0.019595121,88.87721041,0,0,0,0,0,4,20,0% +2018-04-10 05:00:00,116.048991,305.6663401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025436987,5.334884048,-1.153889293,1.153889293,1,0.72748038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239348261,103.8480774,0.239348261,76.15192258,0,0.841099381,0,0,0,4,21,0% +2018-04-10 06:00:00,124.7613896,319.6380691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177497028,5.57873672,-0.501353885,0.501353885,1,0.615890253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438008091,115.9768584,0.438008091,64.02314161,0,0.935846857,0,0,0,4,22,0% +2018-04-10 07:00:00,131.01544,336.7437187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2866508,5.877286627,-0.06530795,0.06530795,1,0.541322007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602026227,127.0151537,0.602026227,52.98484631,0,0.96694714,0,0,0,4,23,0% +2018-04-11 08:00:00,133.7545371,356.5457274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334457061,6.222896877,0.297438418,-0.297438418,1,0.479288724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720216859,136.0723877,0.720216859,43.92761235,0,0.980576465,0,0,0,4,0,0% +2018-04-11 09:00:00,132.3509635,16.8182158,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309960081,0.29353324,0.657422384,-0.657422384,1,0.417727841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784518728,141.6761884,0.784518728,38.32381163,0,0.986266659,0,0,0,4,1,0% +2018-04-11 10:00:00,127.1407567,34.94326713,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219024818,0.609875063,1.080762859,-1.080762859,1,0.345332356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790544159,142.2363931,0.790544159,37.76360687,0,0.986752426,0,0,0,4,2,0% +2018-04-11 11:00:00,119.1201324,49.89570332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079038516,0.870844306,1.68577886,-1.68577886,1,0.241868526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7378778,137.5509491,0.7378778,42.44905086,0,0.982238102,0,0,0,4,3,0% +2018-04-11 12:00:00,109.2838361,62.10781657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907362759,1.08398589,2.831064661,-2.831064661,1,0.046013119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63010475,129.0578512,0.63010475,50.94214881,0,0.970648114,0,0,0,4,4,0% +2018-04-11 13:00:00,98.35144589,72.46241306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716556555,1.264707692,6.805636336,-6.805636336,1,0,#DIV/0!,0,0,0.387884521,1,0.145893042,0,0.945847871,0.984609834,0.724496596,1,0,0,0.056048133,0.312029739,0.853384694,0.57788129,0.961238037,0.922476074,0,0,0,0,0,0,-0.474566134,118.3311048,0.474566134,61.66889522,0,0.944640607,0,0,0,4,5,0% +2018-04-11 14:00:00,86.58491975,81.80789967,13.1057144,78.215987,8.446457803,8.290562348,0,8.290562348,8.191765936,0.098796411,25.19291536,21.7605913,3.432324057,0.254691867,3.17763219,1.511191932,1.427817203,-16.40281304,16.40281304,0,0,0.644486637,0.063672967,2.047941484,1,0.57177114,0,0.06088979,0.961238037,1,0.566379792,0.841883196,7.874237007,0.174300493,0.115824807,0.132906943,0.724496596,0.448993192,0.986180692,0.947418729,0.046130848,1.985646588,7.920367855,2.159947081,0,9.3185132,-0.278211554,106.1534936,0.278211554,73.84650637,0,0.870280649,7.920367855,10.26966879,14.64166069,4,6,85% +2018-04-11 15:00:00,74.92289676,90.91318345,194.1054758,542.5324631,52.98265747,52.84828393,0,52.84828393,51.38503487,1.463249067,83.41494384,34.75420134,48.6607425,1.597622608,47.06311989,1.307651234,1.586734385,-3.467520344,3.467520344,0.876865408,0.876865408,0.272958077,1.332253142,42.84984065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.39325004,1.157472141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.965212867,41.18889671,50.3584629,42.34636885,0,34.75420134,-0.064059211,93.6728373,0.064059211,86.3271627,0,0,50.3584629,42.34636885,78.07331439,4,7,55% +2018-04-11 16:00:00,63.16672055,100.5935411,408.5817194,736.8851705,75.95476688,195.7247216,118.9802096,76.744512,73.66445041,3.080061586,101.3556847,0,101.3556847,2.290316465,99.06536825,1.102467251,1.755688498,-1.701636553,1.701636553,0.821150678,0.821150678,0.185898593,2.631600048,84.6413036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.8090717,1.659326482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906585276,81.36044051,72.71565698,83.01976699,118.9802096,0,0.161463705,80.70813491,-0.161463705,99.29186509,0.740332883,0,160.8006185,83.01976699,215.1353956,4,8,34% +2018-04-11 17:00:00,51.80319493,111.9364761,601.5626642,826.1480418,90.70198274,407.3657866,314.8639699,92.50181677,87.9669833,4.534833464,148.590832,0,148.590832,2.734999434,145.8558326,0.904136315,1.953660061,-0.945419258,0.945419258,0.691829905,0.691829905,0.150777281,3.348044662,107.6846252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55721034,1.98149778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.425646961,103.5105577,86.9828573,105.4920555,314.8639699,0,0.381122939,67.59674255,-0.381122939,112.4032574,0.918808736,0,376.2826235,105.4920555,445.325064,4,9,18% +2018-04-11 18:00:00,41.45729289,126.6481923,754.4832564,872.2475301,100.7778541,609.1218786,505.6952351,103.4266435,97.73903,5.687613482,185.9720248,0,185.9720248,3.038824133,182.9332006,0.72356626,2.210427948,-0.485672716,0.485672716,0.613208616,0.613208616,0.133572022,3.781541337,121.6273684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.95047332,2.20161774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.739713826,116.9128528,96.69018714,119.1144705,505.6952351,0,0.579761155,54.56625473,-0.579761155,125.4337453,0.963757589,0,584.0578075,119.1144705,662.0158462,4,10,13% +2018-04-11 19:00:00,33.31399482,147.2428527,855.4465382,895.643322,106.9813864,776.3799942,666.1757739,110.2042202,103.7555029,6.448717347,210.6388007,0,210.6388007,3.22588352,207.4129172,0.581438897,2.56987258,-0.14512826,0.14512826,0.554972084,0.554972084,0.125059114,3.937760159,126.6519027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.73373591,2.337141629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85289383,121.7426263,102.5866297,124.0797679,666.1757739,0,0.743795837,41.94422559,-0.743795837,138.0557744,0.982777252,0,757.2890263,124.0797679,838.4967528,4,11,11% +2018-04-11 20:00:00,29.40711973,174.9845187,897.053361,904.0795122,109.4619595,892.2736927,779.350048,112.9236447,106.1612776,6.762367152,220.8016551,0,220.8016551,3.300681951,217.5009731,0.513251063,3.054055991,0.145732302,-0.145732302,0.505231998,0.505231998,0.122023911,3.824832222,123.019752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.046258,2.391332838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771077925,118.2512649,104.817336,120.6425978,779.350048,0,0.862037064,30.45392053,-0.862037064,149.5460795,0.991997854,0,877.9309108,120.6425978,956.8890782,4,12,9% +2018-04-11 21:00:00,31.40796446,204.273045,876.322591,899.9544798,108.2309125,945.3185394,833.7450984,111.573441,104.9673512,6.606089851,215.7381192,0,215.7381192,3.263561342,212.4745579,0.548172391,3.565237209,0.426242145,-0.426242145,0.45726199,0.45726199,0.123505788,3.463528488,111.398982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8986106,2.364439083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509314599,107.0809387,103.4079252,109.4453778,833.7450984,0,0.9264303,22.1149702,-0.9264303,157.8850298,0.996029399,0,933.8425545,109.4453778,1005.472365,4,13,8% +2018-04-11 22:00:00,38.38343268,227.3589954,794.7628934,882.127078,103.2872661,928.8367412,822.6727089,106.1640323,100.1727739,5.9912584,195.8139571,0,195.8139571,3.114492162,192.6994649,0.669917279,3.968163054,0.731074812,-0.731074812,0.405132534,0.405132534,0.12995985,2.890431211,92.96620352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.28988057,2.25643897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.094107573,89.36265097,98.38398814,91.61908994,822.6727089,0,0.932601129,21.15601666,-0.932601129,158.8439833,0.996386511,0,918.0839786,91.61908994,978.0468406,4,14,7% +2018-04-11 23:00:00,48.15550669,243.7490577,658.329065,845.0903544,94.55984811,840.4820383,743.810756,96.67128237,91.7085198,4.962762571,162.470832,0,162.470832,2.851328309,159.6195037,0.840472145,4.254223606,1.110053457,-1.110053457,0.340323368,0.340323368,0.143636144,2.159182738,69.44673901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.15371753,2.065777654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.564320544,66.75484707,89.71803808,68.82062472,743.810756,0,0.880155302,28.33889693,-0.880155302,151.6611031,0.993191844,0,828.4648141,68.82062472,873.5065366,4,15,5% +2018-04-11 00:00:00,59.25583252,256.0006802,477.375323,774.2404684,81.57926085,680.9872134,598.2692115,82.71800197,79.11934514,3.598656829,118.2050896,0,118.2050896,2.45991571,115.7451739,1.034209379,4.468054757,1.67202626,-1.67202626,0.244220359,0.244220359,0.17089124,1.343653816,43.21652551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.052524,1.782200558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973472616,41.54136814,77.02599662,43.3235687,598.2692115,0,0.772717568,39.4014448,-0.772717568,140.5985552,0.985293305,0,666.4966452,43.3235687,694.8510545,4,16,4% +2018-04-11 01:00:00,70.9179141,266.1087278,267.5709902,628.1439865,62.21662852,450.3887178,388.0310871,62.35763076,60.34056762,2.017063147,66.75174532,0,66.75174532,1.876060905,64.87568441,1.2377511,4.644473468,2.777250618,-2.777250618,0.055215862,0.055215862,0.232523819,0.554492027,17.83436965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.00164876,1.359199739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401727586,17.14307447,58.40337634,18.50227421,388.0310871,0,0.617742262,51.84855071,-0.617742262,128.1514493,0.969060095,0,434.4288184,18.50227421,446.5381869,4,17,3% +2018-04-11 02:00:00,82.66965545,275.3250937,61.27283712,269.7042553,26.86129541,141.5472212,115.0339924,26.51322877,26.05132824,0.461900528,15.66627592,0,15.66627592,0.809967164,14.85630875,1.442857679,4.805329398,7.026478539,-7.026478539,0,0,0.438388308,0.202491791,6.51283206,0.40171525,1,0.14136944,0,0.946399422,0.985161385,0.724496596,1,25.2591103,0.586818453,0.057725638,0.312029739,0.849378651,0.573875246,0.961238037,0.922476074,0.138615586,6.260381904,25.39772588,6.847200357,68.82308343,0,0.426519012,64.75315016,-0.426519012,115.2468498,0.932771931,0,89.59396633,6.847200357,94.07532202,4,18,5% +2018-04-11 03:00:00,94.43775247,284.5259696,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648249719,4.965914978,-10.6156906,10.6156906,1,0,#DIV/0!,0,0,1,0.256806004,0,0.093923023,0.961238037,1,0.492894444,0.768397848,0,0,0.115824807,0.049900974,0.724496596,0.448993192,0.995300858,0.956538895,0,0,0,0,0,0,0.20822551,77.98161717,-0.20822551,102.0183828,0.809875723,0,0,0,0,4,19,0% +2018-04-11 04:00:00,105.5870343,294.4758805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842841396,5.139573682,-2.557867209,2.557867209,1,0.967574744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017425453,90.99845544,0.017425453,89.00154456,0,0,0,0,0,4,20,0% +2018-04-11 05:00:00,115.8113737,305.9847665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021289782,5.340441637,-1.156616005,1.156616005,1,0.727946675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.236909373,103.7042006,0.236909373,76.29579943,0,0.838948832,0,0,0,4,21,0% +2018-04-11 06:00:00,124.4806319,319.9346424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172596882,5.583912901,-0.499563401,0.499563401,1,0.615584063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435256959,115.8016457,0.435256959,64.19835428,0,0.935125329,0,0,0,4,22,0% +2018-04-11 07:00:00,130.6878418,336.9764466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280933131,5.881348495,-0.06134976,0.06134976,1,0.540645116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59894136,126.7941157,0.59894136,53.20588431,0,0.966519373,0,0,0,4,23,0% +2018-04-12 08:00:00,133.3918012,356.658308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328126125,6.22486178,0.303225028,-0.303225028,1,0.478299156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716799779,135.7908924,0.716799779,44.20910763,0,0.980245514,0,0,0,4,0,0% +2018-04-12 09:00:00,131.9799276,16.78855047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303484283,0.293015482,0.665574143,-0.665574143,1,0.416333808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780793868,141.3333188,0.780793868,38.6666812,0,0.985962612,0,0,0,4,1,0% +2018-04-12 10:00:00,126.7858259,34.80561548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212830107,0.607472588,1.092939226,-1.092939226,1,0.343250074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786557194,141.86493,0.786557194,38.13507004,0,0.986431832,0,0,0,4,2,0% +2018-04-12 11:00:00,118.7910453,49.69875665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073294862,0.867406938,1.706631702,-1.706631702,1,0.23830248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733692508,137.1968499,0.733692508,42.80315006,0,0.98185156,0,0,0,4,3,0% +2018-04-12 12:00:00,108.9792453,61.88292936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902046647,1.080060868,2.878502266,-2.878502266,1,0.037900811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625798631,128.7408289,0.625798631,51.25917113,0,0.970102094,0,0,0,4,4,0% +2018-04-12 13:00:00,98.06545783,72.22321156,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711565122,1.260532838,7.051550279,-7.051550279,1,0,#DIV/0!,0,0,0.403246018,1,0.140873437,0,0.946459615,0.985221578,0.724496596,1,0,0,0.057910157,0.312029739,0.848939368,0.573435964,0.961238037,0.922476074,0,0,0,0,0,0,-0.470225086,118.0489083,0.470225086,61.95109166,0,0.943667944,0,0,0,4,5,0% +2018-04-12 14:00:00,86.32133711,81.5577647,15.41644412,89.89272151,9.648866234,9.474132984,0,9.474132984,9.357917317,0.116215668,28.6687396,24.63989532,4.028844279,0.290948917,3.737895362,1.506591547,1.423451525,-15.23837669,15.23837669,0,0,0.625881439,0.072737229,2.339479329,1,0.531850456,0,0.065529828,0.961238037,1,0.555532102,0.831035507,8.99518607,0.199157122,0.115824807,0.12066192,0.724496596,0.448993192,0.987626628,0.948864665,0.052697875,2.268078964,9.047883946,2.467236086,0,11.53515577,-0.274103341,105.9085863,0.274103341,74.09141371,0,0.867587047,9.047883946,12.47498781,17.21251397,4,6,90% +2018-04-12 15:00:00,74.6529299,90.65063285,198.9796595,548.9034024,53.70393633,53.58455722,0,53.58455722,52.0845645,1.499992723,82.7589531,32.89465912,49.86429398,1.619371827,48.24492215,1.302939423,1.582152012,-3.409511977,3.409511977,0.886785423,0.886785423,0.269896614,1.376005805,44.25707668,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.06566453,1.173229376,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.996911522,42.54158551,51.06257605,43.71481488,0,32.89465912,-0.059927956,93.43567753,0.059927956,86.56432247,0,0,51.06257605,43.71481488,79.6730481,4,7,56% +2018-04-12 16:00:00,62.89077394,100.3159344,413.4448896,739.5817427,76.426181,199.5597337,122.3213618,77.23837188,74.12164966,3.116722218,102.5490315,0,102.5490315,2.30453134,100.2445002,1.097651074,1.750843348,-1.686278955,1.686278955,0.818524375,0.818524375,0.18485216,2.65566717,85.415385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.24854901,1.669625111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924021825,82.10451699,73.17257083,83.7741421,122.3213618,0,0.16539262,80.47995671,-0.16539262,99.52004329,0.74768905,0,164.6309136,83.7741421,219.4594141,4,8,33% +2018-04-12 17:00:00,51.51104395,111.64568,606.1527781,827.5999766,91.08453263,411.3515963,318.4441627,92.90743358,88.3379979,4.569435681,149.7152936,0,149.7152936,2.746534725,146.9687588,0.899037318,1.948584711,-0.939817071,0.939817071,0.690871874,0.690871874,0.150266626,3.369152377,108.3635218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.91384368,1.989855059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440939428,104.163139,87.35478311,106.152994,318.4441627,0,0.384780294,67.36989865,-0.384780294,112.6301014,0.920055716,0,380.3411551,106.152994,449.8161666,4,9,18% +2018-04-12 18:00:00,41.13652134,126.3670333,758.7407395,873.1745869,101.1143492,612.936033,509.1509463,103.7850867,98.06537847,5.719708187,187.0144474,0,187.0144474,3.0489707,183.9654767,0.71796774,2.205520797,-0.483794272,0.483794272,0.612887383,0.612887383,0.133266008,3.800610738,122.2407058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.26417189,2.208968893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753529542,117.5024161,97.01770143,119.711385,509.1509463,0,0.583103258,54.33089341,-0.583103258,125.6691066,0.964251894,0,587.9674657,119.711385,666.316173,4,10,13% +2018-04-12 19:00:00,32.95747793,147.058494,859.3689014,896.3218392,107.2880657,779.9060172,669.3747968,110.5312204,104.0529347,6.478285778,211.5990706,0,211.5990706,3.235131031,208.3639396,0.575216503,2.566654914,-0.145202659,0.145202659,0.554984807,0.554984807,0.124845181,3.955270796,127.215105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0196386,2.343841419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865580228,122.2839977,102.8852189,124.6278392,669.3747968,0,0.746801838,41.68590253,-0.746801838,138.3140975,0.983047835,0,760.9126636,124.6278392,842.4790917,4,11,11% +2018-04-12 20:00:00,29.03870501,175.0627093,900.6708762,904.6441124,109.7477621,895.482469,782.2543694,113.2280996,106.4384621,6.78963751,221.6873815,0,221.6873815,3.309299952,218.3780815,0.506821013,3.055420674,0.144281244,-0.144281244,0.505480144,0.505480144,0.121851128,3.841155579,123.5447673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3126984,2.39757655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.782904141,118.7559296,105.0956025,121.1535061,782.2543694,0,0.864709512,30.15044809,-0.864709512,149.8495519,0.992177113,0,881.2304848,121.1535061,960.5230315,4,12,9% +2018-04-12 21:00:00,31.08470712,204.621198,879.6895571,900.4928644,108.5030353,948.235773,836.3730331,111.8627399,105.2312685,6.631471464,216.5626847,0,216.5626847,3.271766848,213.2909178,0.542530486,3.571313625,0.423469019,-0.423469019,0.457736222,0.457736222,0.123342416,3.479004859,111.8967553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1522979,2.370383944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520527178,107.5594174,103.6728251,109.9298013,836.3730331,0,0.928794737,21.75229073,-0.928794737,158.2477093,0.996166792,0,936.8398666,109.9298013,1008.786723,4,13,8% +2018-04-12 22:00:00,38.12636881,227.7891819,797.9508471,882.7259754,103.5536069,931.5340745,825.0877003,106.4463741,100.4310836,6.015290541,196.5949446,0,196.5949446,3.122523321,193.4724212,0.665430668,3.975671225,0.726607599,-0.726607599,0.405896472,0.405896472,0.129774418,2.90536074,93.4463885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.53817764,2.262257516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.104923966,89.82422303,98.6431016,92.08648055,825.0877003,0,0.934704227,20.81958683,-0.934704227,159.1804132,0.996507143,0,920.8488882,92.08648055,981.117648,4,14,7% +2018-04-12 23:00:00,47.94724871,244.1603353,661.4184774,845.8861714,94.83163414,843.081815,746.1236526,96.95816235,91.97211048,4.986051867,163.2280911,0,163.2280911,2.859523661,160.3685675,0.836837357,4.261401754,1.102805454,-1.102805454,0.34156285,0.34156285,0.143376149,2.173754238,69.91540853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40709092,2.071715158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574877546,67.20535004,89.98196847,69.2770652,746.1236526,0,0.882061532,28.10794641,-0.882061532,151.8920536,0.993314612,0,831.1174952,69.2770652,876.4579488,4,15,5% +2018-04-12 00:00:00,59.07517542,256.3766123,480.4407235,775.5445884,81.87829427,683.693842,600.6627153,83.03112671,79.4093616,3.621765113,118.9573484,0,118.9573484,2.468932671,116.4884158,1.031056317,4.474616009,1.658909539,-1.658909539,0.246463451,0.246463451,0.170423302,1.357740478,43.66960098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33129885,1.788733316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.983678354,41.97688151,77.31497721,43.76561483,600.6627153,0,0.774504425,39.23987641,-0.774504425,140.7601236,0.98544259,0,669.2335989,43.76561483,697.8773185,4,16,4% +2018-04-12 01:00:00,70.74884155,266.456786,270.6291901,630.9250769,62.60705109,453.613102,390.8537674,62.75933466,60.71921751,2.040117149,67.50501396,0,67.50501396,1.887833586,65.61718037,1.234800227,4.65054823,2.746072307,-2.746072307,0.060547668,0.060547668,0.23133887,0.566906751,18.23366985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.36562144,1.367729007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410722011,17.52689701,58.77634345,18.89462602,390.8537674,0,0.619493157,51.72086848,-0.619493157,128.2791315,0.969288858,0,437.6265454,18.89462602,449.9927002,4,17,3% +2018-04-12 02:00:00,82.50145359,275.6559651,63.78838974,277.2757964,27.60361014,146.0078842,118.7557609,27.25212328,26.77125945,0.480863826,16.2985843,0,16.2985843,0.832350692,15.46623361,1.439922003,4.811104193,6.848231611,-6.848231611,0,0,0.432737215,0.208087673,6.692814863,0.390601697,1,0.144998307,0,0.945957332,0.984719295,0.724496596,1,25.95684579,0.603035243,0.056379174,0.312029739,0.852592367,0.577088963,0.961238037,0.922476074,0.14247785,6.43338822,26.09932364,7.036423463,72.36955919,0,0.428294725,64.64061231,-0.428294725,115.3593877,0.93325796,0,93.6387908,7.036423463,98.24398923,4,18,5% +2018-04-12 03:00:00,94.25547529,284.8485985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645068382,4.971545914,-11.02911795,11.02911795,1,0,#DIV/0!,0,0,1,0.293906952,0,0.09042184,0.961238037,1,0.500269745,0.775773149,0,0,0.115824807,0.05824768,0.724496596,0.448993192,0.994456787,0.955694824,0,0,0,0,0,0,0.210181333,77.86702098,-0.210181333,102.132979,0.812110177,0,0,0,0,4,19,0% +2018-04-12 04:00:00,105.3825877,294.7954323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839273129,5.145150914,-2.579345719,2.579345719,1,0.971247786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.015253804,90.87401247,0.015253804,89.12598753,0,0,0,0,0,4,20,0% +2018-04-12 05:00:00,115.5739632,306.2990067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017146187,5.345926163,-1.159431579,1.159431579,1,0.728428167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234462023,103.559913,0.234462023,76.44008698,0,0.836745848,0,0,0,4,21,0% +2018-04-12 06:00:00,124.2004771,320.226264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167707258,5.589002659,-0.497794115,0.497794115,1,0.615281497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432493051,115.6258798,0.432493051,64.37412023,0,0.934391206,0,0,0,4,22,0% +2018-04-12 07:00:00,130.3616049,337.2041373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275239224,5.885322447,-0.057391417,0.057391417,1,0.5399682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595841866,126.5726701,0.595841866,53.42732988,0,0.966085118,0,0,0,4,23,0% +2018-04-13 08:00:00,133.0312786,356.767439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321833819,6.226766474,0.309026791,-0.309026791,1,0.477306996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713368814,135.5096766,0.713368814,44.49032343,0,0.979910028,0,0,0,4,0,0% +2018-04-13 09:00:00,131.6115449,16.75809483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297054792,0.292483931,0.673763218,-0.673763218,1,0.414933393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777058411,140.9920298,0.777058411,39.00797025,0,0.985654773,0,0,0,4,1,0% +2018-04-13 10:00:00,126.4335287,34.66899396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20668136,0.605088093,1.105203145,-1.105203145,1,0.341152821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782565236,141.4960498,0.782565236,38.50395024,0,0.986107563,0,0,0,4,2,0% +2018-04-13 11:00:00,118.4644585,49.50340781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067594848,0.863997457,1.727728868,-1.727728868,1,0.234694652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729509758,136.8453111,0.729509758,43.15468889,0,0.981460821,0,0,0,4,3,0% +2018-04-13 12:00:00,108.6771106,61.65956665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896773401,1.076162453,2.926976178,-2.926976178,1,0.029611284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621504005,128.4260482,0.621504005,51.57395177,0,0.969549995,0,0,0,4,4,0% +2018-04-13 13:00:00,97.78199737,71.98524896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706617803,1.256379607,7.312884281,-7.312884281,1,0,#DIV/0!,0,0,0.418747658,1,0.135902048,0,0.947059835,0.985821798,0.724496596,1,0,0,0.059766,0.312029739,0.844536196,0.569032792,0.961238037,0.922476074,0,0,0,0,0,0,-0.46590528,117.768826,0.46590528,62.23117402,0,0.942682049,0,0,0,4,5,0% +2018-04-13 14:00:00,86.05939739,81.30850648,17.87882304,101.914144,10.87505052,10.68190575,0,10.68190575,10.54712763,0.13477812,32.18061679,27.51776625,4.662850538,0.327922898,4.33492764,1.502019837,1.419101148,-14.23508154,14.23508154,0,0,0.608264342,0.081980724,2.636781907,1,0.490963587,0,0.070133766,0.961238037,1,0.544938188,0.820441592,10.13830025,0.224686032,0.115824807,0.108704402,0.724496596,0.448993192,0.989005356,0.950243393,0.059394756,2.555764424,10.19769501,2.780450455,0,14.00754503,-0.270009296,105.66482,0.270009296,74.33517999,0,0.86482119,10.19769501,14.89447222,19.94582919,4,6,96% +2018-04-13 15:00:00,74.38583869,90.38850472,203.8078143,555.0622262,54.40844832,54.30422225,0,54.30422225,52.76783286,1.536389393,82.04886694,30.99268728,51.05617966,1.640615463,49.41556419,1.298277802,1.577577013,-3.354016509,3.354016509,0.896275707,0.896275707,0.266959579,1.419571409,45.65829627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.72244807,1.188620318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.028474654,43.88849107,51.75092272,45.07711139,0,30.99268728,-0.055836419,93.20085587,0.055836419,86.79914413,0,0,51.75092272,45.07711139,81.25299058,4,7,57% +2018-04-13 16:00:00,62.6180026,100.0380947,418.2420187,742.1982856,76.88958475,203.3581936,125.6342285,77.72396508,74.57108008,3.152885003,103.7261243,0,103.7261243,2.318504673,101.4076197,1.092890316,1.745994131,-1.671375791,1.671375791,0.815975783,0.815975783,0.183839933,2.679343062,86.17688305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.68055862,1.679748743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.941174927,82.83649788,73.62173355,84.51624662,125.6342285,0,0.169273132,80.25443987,-0.169273132,99.74556013,0.754619396,0,168.4277592,84.51624662,223.7419523,4,8,33% +2018-04-13 17:00:00,51.22231684,111.3535896,610.6707262,829.0105362,91.4612535,415.2802498,321.9733967,93.30685313,88.70335925,4.603493883,150.8220819,0,150.8220819,2.757894249,148.0641877,0.893998079,1.943486772,-0.934360973,0.934360973,0.689938827,0.689938827,0.149771799,3.38990815,109.0310988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.2650429,1.998084995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.455976915,104.8048394,87.72101982,106.8029244,321.9733967,0,0.388382756,67.14609288,-0.388382756,112.8539071,0.92126102,0,384.3425596,106.8029244,454.2429375,4,9,18% +2018-04-13 18:00:00,40.81923688,126.0829493,762.9244772,874.0749864,101.4458296,616.6836429,512.5455324,104.1381105,98.38686351,5.75124697,188.0388384,0,188.0388384,3.058966057,184.9798723,0.712430082,2.200562596,-0.481972874,0.481972874,0.612575905,0.612575905,0.132969688,3.819354608,122.8435732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57319553,2.216210495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.767109412,118.0819151,97.34030494,120.2981256,512.5455324,0,0.586386226,54.09901901,-0.586386226,125.900981,0.964731967,0,591.8093646,120.2981256,670.5420819,4,10,13% +2018-04-13 19:00:00,32.60406324,146.8700972,863.2192106,896.9803918,107.5902031,783.3615856,672.508313,110.8532726,104.3459615,6.507311035,212.5417332,0,212.5417332,3.24424159,209.2974916,0.569048253,2.56336677,-0.145297322,0.145297322,0.555000995,0.555000995,0.124638333,3.972485169,127.7687784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3013072,2.350441988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.878051982,122.8162097,103.1793592,125.1666517,672.508313,0,0.74974695,41.43153733,-0.74974695,138.5684627,0.983310832,0,764.4640683,125.1666517,846.3831384,4,11,11% +2018-04-13 20:00:00,28.67286634,175.1400304,904.2208423,905.1919554,110.0294212,898.6208436,785.0928167,113.5280269,106.7116282,6.816398654,222.5566049,0,222.5566049,3.317793016,219.2388119,0.500435924,3.056770183,0.142830598,-0.142830598,0.505728219,0.505728219,0.121684235,3.857218015,124.0613905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.575276,2.403729746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794541322,119.2525274,105.3698174,121.6562572,785.0928167,0,0.867321911,29.8510959,-0.867321911,150.1489041,0.992351278,0,884.4576771,121.6562572,964.0792643,4,12,9% +2018-04-13 21:00:00,30.76420384,204.9716071,882.9958726,901.0157236,108.7714117,951.085932,838.9379838,112.1479482,105.4915523,6.656395867,217.3724317,0,217.3724317,3.279859386,214.0925723,0.536936649,3.577429417,0.420713063,-0.420713063,0.458207518,0.458207518,0.123184507,3.494261421,112.3874587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4024926,2.37624696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531580505,108.0311002,103.9340731,110.4073472,838.9379838,0,0.93110249,21.39266966,-0.93110249,158.6073303,0.996300219,0,939.76817,110.4073472,1012.027571,4,13,8% +2018-04-13 22:00:00,37.87197565,228.2200021,801.0869398,883.3089468,103.8165945,934.1702902,827.4452174,106.7250728,100.6861411,6.038931733,197.3632566,0,197.3632566,3.130453366,194.2328032,0.660990669,3.983190455,0.722178194,-0.722178194,0.406653945,0.406653945,0.129594666,2.920115951,93.92096683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.78334862,2.268002807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115614066,90.28040577,98.89896268,92.54840858,827.4452174,0,0.936756296,20.48623524,-0.936756296,159.5137648,0.996624325,0,923.5509936,92.54840858,984.1220761,4,14,7% +2018-04-13 23:00:00,47.74109589,244.5705431,664.4661486,846.663401,95.1003922,845.6281356,748.3863446,97.24179099,92.23276449,5.0090265,163.9751384,0,163.9751384,2.867627708,161.1075106,0.833239312,4.26856123,1.095632678,-1.095632678,0.342789467,0.342789467,0.143123005,2.188200307,70.38004377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65764147,2.077586513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.585343674,67.65197511,90.24298515,69.72956162,748.3863446,0,0.883924289,27.88056678,-0.883924289,152.1194332,0.993434069,0,833.7154769,69.72956162,879.3520804,4,15,5% +2018-04-13 00:00:00,58.89599633,256.7506514,483.4753856,776.8222081,82.17434543,686.3546064,603.013479,83.34112741,79.69648573,3.644641678,119.7020644,0,119.7020644,2.477859706,117.2242047,1.027929052,4.481144223,1.645966122,-1.645966122,0.248676905,0.248676905,0.169965934,1.371756518,44.12040501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.60729349,1.795200922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993832928,42.4102115,77.60112641,44.20541242,603.013479,0,0.776256745,39.08088721,-0.776256745,140.9191128,0.985588321,0,671.924169,44.20541242,700.8557273,4,16,4% +2018-04-13 01:00:00,70.58071604,266.8025376,273.6693355,633.6529348,62.99331255,456.7942862,393.6374194,63.15686681,61.09383176,2.06303505,68.25377963,0,68.25377963,1.899480794,66.35429883,1.231865883,4.656582734,2.715502195,-2.715502195,0.065775465,0.065775465,0.230180383,0.57933248,18.63332398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.72571491,1.376167369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.419724409,17.91105977,59.14543931,19.28722713,393.6374194,0,0.621219279,51.59477253,-0.621219279,128.4052275,0.969513123,0,440.7820829,19.28722713,453.4051873,4,17,3% +2018-04-13 02:00:00,82.33371689,275.9842115,66.3217216,284.7376226,28.3368692,150.4357158,122.4533466,27.98236919,27.48240804,0.499961152,16.93493041,0,16.93493041,0.854461158,16.08046925,1.436994445,4.816833175,6.678112282,-6.678112282,0,0,0.427263776,0.21361529,6.87060201,0.37960287,1,0.14863851,0,0.945510858,0.984272822,0.724496596,1,26.64580696,0.6190542,0.055034655,0.312029739,0.855815799,0.580312395,0.961238037,0.922476074,0.146303889,6.604283988,26.79211085,7.223338188,75.96970481,0,0.430056785,64.52883607,-0.430056785,115.4711639,0.933736284,0,97.7277807,7.223338188,102.4553111,4,18,5% +2018-04-13 03:00:00,94.07348585,285.1682217,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641892067,4.97712439,-11.47870037,11.47870037,1,0,#DIV/0!,0,0,1,0.330264634,0,0.08689848,0.961238037,1,0.507790949,0.783294353,0,0,0.115824807,0.066752964,0.724496596,0.448993192,0.993579719,0.954817755,0,0,0,0,0,0,0.212131135,77.75272847,-0.212131135,102.2472715,0.814296741,0,0,0,0,4,19,0% +2018-04-13 04:00:00,105.1783131,295.1114426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835707865,5.150666333,-2.601409523,2.601409523,1,0.975020919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.013080241,90.74946396,0.013080241,89.25053604,0,0,0,0,0,4,20,0% +2018-04-13 05:00:00,115.3368256,306.6089827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013007355,5.351336264,-1.162339944,1.162339944,1,0.728925527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232006599,103.4152374,0.232006599,76.58476256,0,0.834488888,0,0,0,4,21,0% +2018-04-13 06:00:00,123.9210125,320.5128878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162829681,5.594005186,-0.496048397,0.496048397,1,0.614982961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429717107,115.4496084,0.429717107,64.55039161,0,0.933644381,0,0,0,4,22,0% +2018-04-13 07:00:00,130.0368299,337.4267846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269570831,5.889208375,-0.053435158,0.053435158,1,0.53929164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592728849,126.3508957,0.592728849,53.64910431,0,0.965644396,0,0,0,4,23,0% +2018-04-14 08:00:00,132.6730721,356.8731189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315581937,6.228610936,0.31484121,-0.31484121,1,0.476312672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709925415,135.2288472,0.709925415,44.7711528,0,0.979570066,0,0,0,4,0,0% +2018-04-14 09:00:00,131.245922,16.72681292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290673468,0.291937959,0.681986557,-0.681986557,1,0.41352712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77331411,140.652433,0.77331411,39.34756702,0,0.98534322,0,0,0,4,1,0% +2018-04-14 10:00:00,126.0839794,34.53335658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200580574,0.602720774,1.117550719,-1.117550719,1,0.339041261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778570279,141.1298573,0.778570279,38.87014272,0,0.985779722,0,0,0,4,2,0% +2018-04-14 11:00:00,118.1404902,49.30963115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061940534,0.860615416,1.749066232,-1.749066232,1,0.231045748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72533171,136.4964492,0.72533171,43.50355078,0,0.981066022,0,0,0,4,3,0% +2018-04-14 12:00:00,108.3775481,61.43772771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89154505,1.072290634,2.97650042,-2.97650042,1,0.021142139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617223105,128.1136332,0.617223105,51.88636677,0,0.968992015,0,0,0,4,4,0% +2018-04-14 13:00:00,97.50117629,71.74854451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701716551,1.252248335,7.591012997,-7.591012997,1,0,#DIV/0!,0,0,0.434384657,1,0.130980518,0,0.947648484,0.986410447,0.724496596,1,0,0,0.061614892,0.312029739,0.840176732,0.564673327,0.961238037,0.922476074,0,0,0,0,0,0,-0.46160893,117.4909777,0.46160893,62.50902234,0,0.941683205,0,0,0,4,5,0% +2018-04-14 14:00:00,85.7993371,81.06015964,20.47812084,114.1723036,12.11502976,11.90408964,0,11.90408964,11.74971691,0.154372725,35.69272192,30.36225159,5.330470332,0.365312847,4.965157485,1.497480928,1.414766678,-13.36236658,13.36236658,0,0,0.591608471,0.091328212,2.937429228,1,0.44911259,0,0.0746978,0.961238037,1,0.534602847,0.810106251,11.29427482,0.250741314,0.115824807,0.097037903,0.724496596,0.448993192,0.990318666,0.951556703,0.066166979,2.846266666,11.3604418,3.09700798,0,16.72618216,-0.265933599,105.4224348,0.265933599,74.57756523,0,0.861983141,11.3604418,17.51469501,22.82345939,4,6,101% +2018-04-14 15:00:00,74.12173009,90.12684619,208.5870928,561.0149124,55.09652784,55.00758186,0,55.00758186,53.43516424,1.572417613,81.2887378,29.05301862,52.23571918,1.661363599,50.57435558,1.293668237,1.57301021,-3.300901298,3.300901298,0.905358943,0.905358943,0.264141597,1.46291065,47.05223521,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.36391238,1.203652272,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.059873786,45.2283982,52.42378616,46.43205048,0,29.05301862,-0.051786535,92.96847776,0.051786535,87.03152224,0,0,52.42378616,46.43205048,82.81263456,4,7,58% +2018-04-14 16:00:00,62.34851215,99.76007839,422.9713661,744.7364059,77.34499469,207.1178543,128.9165598,78.20129455,75.01275772,3.188536822,104.8865417,0,104.8865417,2.332236962,102.5543047,1.088186821,1.74114183,-1.656915946,1.656915946,0.813503004,0.813503004,0.182861066,2.70262308,86.92564847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10511597,1.68969774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958041222,83.55623969,74.06315719,85.24593743,128.9165598,0,0.173103609,80.03168126,-0.173103609,99.96831874,0.761155647,0,172.1887247,85.24593743,227.9804858,4,8,32% +2018-04-14 17:00:00,50.93712447,111.0602599,615.1152423,830.38032,91.83211761,419.1501815,325.4501425,93.70003896,89.06304044,4.636998522,151.9108892,0,151.9108892,2.76907717,149.1418121,0.889020534,1.938367203,-0.929049662,0.929049662,0.689030539,0.689030539,0.149292541,3.4103082,109.6872346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.61078215,2.006186984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.470756682,105.435542,88.08153883,107.441729,325.4501425,0,0.391929017,66.92541816,-0.391929017,113.0745818,0.922425879,0,388.2851725,107.441729,458.6036353,4,9,18% +2018-04-14 18:00:00,40.50556033,125.7959558,767.0336022,874.9490537,101.7722702,620.3636135,515.8779295,104.485684,98.70346073,5.78222329,189.0449867,0,189.0449867,3.068809445,185.9761773,0.706955393,2.195553614,-0.480208772,0.480208772,0.612274226,0.612274226,0.132682936,3.83777042,123.4358889,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.87752082,2.223341997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780451605,118.6512716,97.65797243,120.8746136,515.8779295,0,0.589609106,53.87072591,-0.589609106,126.1292741,0.965198053,0,595.5823457,120.8746136,674.6923628,4,10,13% +2018-04-14 19:00:00,32.2538731,146.6775654,866.9969512,897.6192178,107.8877856,786.7460327,675.5756726,111.1703601,104.6345708,6.535789239,213.4666634,0,213.4666634,3.2532148,210.2134486,0.562936282,2.560006454,-0.145412771,0.145412771,0.555020738,0.555020738,0.124438483,3.989401847,128.3128769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5787294,2.356943048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890308058,123.3392179,103.4690375,125.6961609,675.5756726,0,0.75263058,41.18123643,-0.75263058,138.8187636,0.983566345,0,767.9425329,125.6961609,850.2081563,4,11,11% +2018-04-14 20:00:00,28.30970123,175.2163384,907.7030374,905.7232567,110.3069369,901.6885427,787.8651181,113.8234246,106.9807757,6.842648911,223.4092716,0,223.4092716,3.326161136,220.0831104,0.494097497,3.058102008,0.141379822,-0.141379822,0.505976316,0.505976316,0.121523155,3.873018883,124.5696007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8339909,2.40979242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805988997,119.7410384,105.6399798,122.1508309,787.8651181,0,0.869874006,29.55599846,-0.869874006,150.4440015,0.992520411,0,887.612191,122.1508309,967.5574668,4,12,9% +2018-04-14 21:00:00,30.44652227,205.3241173,886.2415307,901.5232831,109.0360524,953.8690801,841.440004,112.4290762,105.7482131,6.680863008,218.1673589,0,218.1673589,3.287839281,214.8795197,0.531392059,3.583581881,0.417973745,-0.417973745,0.45867597,0.45867597,0.123031982,3.509297921,112.8710843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6492048,2.382028367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542474397,108.4959794,104.1916792,110.8780078,841.440004,0,0.933353602,21.03623473,-0.933353602,158.9637653,0.996429735,0,942.6275192,110.8780078,1015.194958,4,13,8% +2018-04-14 22:00:00,37.62028382,228.6512557,804.1712873,883.876256,104.0762477,936.7457129,829.7455652,107.0001477,100.9379648,6.062182847,198.1189218,0,198.1189218,3.138282869,194.980639,0.656597818,3.990717251,0.717786005,-0.717786005,0.407405053,0.407405053,0.129420497,2.934696569,94.3899296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.02541116,2.273675255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126177674,90.73119063,99.15158883,93.00486589,829.7455652,0,0.938757614,20.1560502,-0.938757614,159.8439498,0.996738115,0,926.1906195,93.00486589,987.0604441,4,14,7% +2018-04-14 23:00:00,47.53705609,244.9795043,667.4722148,847.422389,95.36614716,848.1214912,750.5992978,97.52219345,92.49050596,5.031687497,164.7120074,0,164.7120074,2.8756412,161.8363662,0.829678145,4.27569895,1.088534211,-1.088534211,0.344003376,0.344003376,0.14287658,2.202520216,70.84062127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90539237,2.083392261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.595718399,68.09469971,90.50111077,70.17809198,750.5992978,0,0.885744002,27.65678213,-0.885744002,152.3432179,0.993550281,0,836.259254,70.17809198,882.1894116,4,15,5% +2018-04-14 00:00:00,58.71829738,257.1226535,486.4793554,778.0738641,82.46744696,688.9700689,605.3220328,83.64803603,79.98074916,3.667286871,120.4392498,0,120.4392498,2.486697798,117.952552,1.024827621,4.487636885,1.633193512,-1.633193512,0.25086115,0.25086115,0.169518904,1.385700284,44.56888445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.88053831,1.80160409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.003935139,42.841307,77.88447345,44.64291109,605.3220328,0,0.777975024,38.92445743,-0.777975024,141.0755426,0.985730585,0,674.5689147,44.64291109,703.7868072,4,16,4% +2018-04-14 01:00:00,70.41354397,267.1458606,276.6912269,636.3286948,63.37547741,459.9328526,396.3825643,63.55028827,61.46447293,2.085815343,68.99799586,0,68.99799586,1.911004474,67.08699139,1.22894818,4.662574851,2.68552548,-2.68552548,0.070901785,0.070901785,0.229047658,0.591765742,19.03322045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.0819893,1.384516236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.428732266,18.29545546,59.51072156,19.6799717,396.3825643,0,0.62292109,51.47023684,-0.62292109,128.5297632,0.969733011,0,443.8959794,19.6799717,456.7761273,4,17,3% +2018-04-14 02:00:00,82.16646619,276.3097243,68.87121016,292.0878168,29.06098157,154.8289782,126.1251121,28.70386602,28.18468575,0.519180274,17.57491808,0,17.57491808,0.876295818,16.69862227,1.43407537,4.822514444,6.515598199,-6.515598199,0,0,0.421961245,0.219073954,7.046171437,0.368718443,1,0.15228952,0,0.945060045,0.983822008,0.724496596,1,27.32589153,0.634873337,0.053692262,0.312029739,0.859048445,0.583545041,0.961238037,0.922476074,0.15009375,6.773048,27.47598528,7.407921337,79.62045719,0,0.431805453,64.41780658,-0.431805453,115.5821934,0.934207113,0,101.8579827,7.407921337,106.7063191,4,18,5% +2018-04-14 03:00:00,93.89181429,285.4847393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6387213,4.982648665,-11.96934562,11.96934562,1,0,#DIV/0!,0,0,1,0.365897595,0,0.083353179,0.961238037,1,0.515459326,0.79096273,0,0,0.115824807,0.075419237,0.724496596,0.448993192,0.992668503,0.95390654,0,0,0,0,0,0,0.214075054,77.63873159,-0.214075054,102.3612684,0.816437055,0,0,0,0,4,19,0% +2018-04-14 04:00:00,104.9742588,295.4238208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832146447,5.156118361,-2.624080955,2.624080955,1,0.978897962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010904903,90.62481729,0.010904903,89.37518271,0,0,0,0,0,4,20,0% +2018-04-14 05:00:00,115.1000304,306.914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008874499,5.356670658,-1.16534485,1.16534485,1,0.729439396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229543564,103.270201,0.229543564,76.72979905,0,0.832176424,0,0,0,4,21,0% +2018-04-14 06:00:00,123.6423282,320.7944725,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157965722,5.598919768,-0.494328536,0.494328536,1,0.614688848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426929944,115.2728839,0.426929944,64.72711612,0,0.932884767,0,0,0,4,22,0% +2018-04-14 07:00:00,129.7136189,337.6443875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263929735,5.893006263,-0.049483195,0.049483195,1,0.538615814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58960348,126.128875,0.58960348,53.87112499,0,0.965197244,0,0,0,4,23,0% +2018-04-15 08:00:00,132.3172851,356.9753519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309372282,6.230395239,0.320665769,-0.320665769,1,0.475316613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706471086,134.9485137,0.706471086,45.0514863,0,0.979225695,0,0,0,4,0,0% +2018-04-15 09:00:00,130.8831644,16.69467524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284342155,0.29137705,0.690241038,-0.690241038,1,0.41211552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769562757,140.3146411,0.769562757,39.68535893,0,0.985028041,0,0,0,4,1,0% +2018-04-15 10:00:00,125.7372904,34.39866342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194529711,0.600369935,1.129977888,-1.129977888,1,0.33691609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774574341,140.7664568,0.774574341,39.23354318,0,0.985448417,0,0,0,4,2,0% +2018-04-15 11:00:00,117.8192556,49.11740578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056333933,0.857260451,1.770639276,-1.770639276,1,0.22735654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721160524,136.1503788,0.721160524,43.84962125,0,0.980667309,0,0,0,4,3,0% +2018-04-15 12:00:00,108.0806708,61.21741575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886363564,1.068445464,3.027088467,-3.027088467,1,0.012491074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612958144,127.8037047,0.612958144,52.19629525,0,0.968428362,0,0,0,4,4,0% +2018-04-15 13:00:00,97.2231029,71.51312111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696863255,1.248139422,7.887476326,-7.887476326,1,0,#DIV/0!,0,0,0.450151929,1,0.126110437,0,0.948225528,0.986987491,0.724496596,1,0,0,0.063456063,0.312029739,0.835862482,0.560359078,0.961238037,0.922476074,0,0,0,0,0,0,-0.457338207,117.2154798,0.457338207,62.78452019,0,0.940671719,0,0,0,4,5,0% +2018-04-15 14:00:00,85.54137017,80.81276263,23.19970612,126.5705293,13.36020741,13.13223705,0,13.13223705,12.95734786,0.174889184,39.17419563,33.14629874,6.027896892,0.402859547,5.625037345,1.492978556,1.410448786,-12.5968912,12.5968912,0,0,0.575878304,0.100714887,3.239336966,1,0.406298798,0,0.079218535,0.961238037,1,0.524529441,0.800032845,12.45509562,0.277206101,0.115824807,0.085664283,0.724496596,0.448993192,0.991568539,0.952806575,0.072967593,3.137477682,12.52806322,3.414683782,0,19.67899741,-0.261880067,105.181648,0.261880067,74.81835202,0,0.859072907,12.52806322,20.32037729,25.82734375,4,6,106% +2018-04-15 15:00:00,73.860707,89.86570888,213.3147906,566.7673304,55.76850184,55.69493274,0,55.69493274,54.08687575,1.608056996,80.48250236,27.0802356,53.40226676,1.681626094,51.72064066,1.289112525,1.568452505,-3.250042809,3.250042809,0.914056257,0.914056257,0.261437576,1.505985869,48.43768234,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.99036226,1.218332381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091081636,46.56014268,53.0814439,47.77847506,0,27.0802356,-0.047780163,92.73864441,0.047780163,87.26135559,0,0,53.0814439,47.77847506,84.35150026,4,7,59% +2018-04-15 16:00:00,62.08240412,99.48194751,427.6312906,747.1976968,77.7924309,210.8365644,132.1661971,78.67036738,75.44670208,3.223665301,106.0298862,0,106.0298862,2.345728815,103.6841574,1.08354236,1.73628753,-1.642888556,1.642888556,0.811104179,0.811104179,0.18191473,2.72550299,87.66154503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52223979,1.699472541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.974617639,84.26361145,74.49685743,85.96308399,132.1661971,0,0.176882501,79.81177334,-0.176882501,100.1882267,0.767326475,0,175.9114795,85.96308399,232.1725987,4,8,32% +2018-04-15 17:00:00,50.65557377,110.7657538,619.4851521,831.7099331,92.19710194,422.9599207,328.8729608,94.08695989,89.41701914,4.669940748,152.9814301,0,152.9814301,2.780082795,150.2013473,0.884106547,1.933227102,-0.92388174,0.92388174,0.688146772,0.688146772,0.14882859,3.4303491,110.3318188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95103994,2.014160521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485276246,106.0551409,88.43631619,108.0693014,328.8729608,0,0.395417859,66.70796261,-0.395417859,113.2920374,0.923551488,0,392.1674284,108.0693014,462.8966248,4,9,18% +2018-04-15 18:00:00,40.19560941,125.5060785,771.0673287,875.7971201,102.0936502,623.9749444,519.1471632,104.8277812,99.01514993,5.812631224,190.0327012,0,190.0327012,3.078500238,186.9542009,0.701545729,2.190494302,-0.478502109,0.478502109,0.611982369,0.611982369,0.132405623,3.855855921,124.0175808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17712834,2.230362943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793554489,119.2104159,97.97068283,121.4407789,519.1471632,0,0.592771033,53.64610334,-0.592771033,126.3538967,0.965650399,0,599.2853482,121.4407789,678.7659092,4,10,13% +2018-04-15 19:00:00,31.90702853,146.4808104,870.7016756,898.2385589,108.1808035,790.0587786,678.5763084,111.4824702,104.9187531,6.563717016,214.3737522,0,214.3737522,3.262050371,211.1117019,0.556882702,2.556572433,-0.145549434,0.145549434,0.555044109,0.555044109,0.124245544,4.006019594,128.8473607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8518963,2.363344389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902347559,123.8529841,103.7542439,126.2163285,678.5763084,0,0.755452214,40.93510102,-0.755452214,139.064899,0.983814477,0,771.3474398,126.2163285,853.9535024,4,11,11% +2018-04-15 20:00:00,27.94930697,175.2914916,911.1172881,906.2382328,110.5803111,904.6853648,790.5710711,114.1142937,107.2459067,6.868386975,224.2453394,0,224.2453394,3.334404378,220.910935,0.48780743,3.059413679,0.139928463,-0.139928463,0.506224513,0.506224513,0.121367811,3.888557639,125.0693805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0888448,2.415764621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.817246772,120.2214458,105.9060916,122.6372104,790.5710711,0,0.872365613,29.26528644,-0.872365613,150.7347136,0.992684582,0,890.6938046,122.6372104,970.9574061,4,12,9% +2018-04-15 21:00:00,30.13172997,205.678572,889.4265518,902.0157661,109.2969695,956.5853339,843.8791983,112.7061356,106.0012626,6.704873043,218.9474718,0,218.9474718,3.295706893,215.6517649,0.525897897,3.589768283,0.415250631,-0.415250631,0.459141649,0.459141649,0.122884761,3.524114116,113.347624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8924456,2.387728425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.553208681,108.9540476,104.4456542,111.341776,843.8791983,0,0.935548169,20.68311337,-0.935548169,159.3168866,0.996555398,0,945.4180241,111.341776,1018.28899,4,13,8% +2018-04-15 22:00:00,37.37132417,229.0827417,807.2040101,884.4281594,104.3325854,939.2606957,831.9890779,107.2716178,101.186573,6.085044793,198.8619701,0,198.8619701,3.146012396,195.7159577,0.652252653,3.998248103,0.713430566,-0.713430566,0.408149877,0.408149877,0.129251817,2.949102241,94.85326556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26438277,2.279275271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136614535,91.17656677,99.40099731,93.45584204,831.9890779,0,0.940708489,19.82911964,-0.940708489,160.1708804,0.996848572,0,928.7681211,93.45584204,989.9331006,4,14,7% +2018-04-15 23:00:00,47.33513838,245.3870436,670.4367951,848.1634655,95.62892218,850.5623754,752.7629823,97.7993931,92.74535734,5.054035755,165.4387279,0,165.4387279,2.883564837,162.555163,0.826154017,4.282811852,1.081509314,-1.081509314,0.345204704,0.345204704,0.142636745,2.216713091,71.29711289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.15036522,2.089132908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606001088,68.53349683,90.75636631,70.62262974,752.7629823,0,0.887521112,27.43661497,-0.887521112,152.563385,0.993663312,0,838.7493245,70.62262974,884.9704232,4,15,6% +2018-04-15 00:00:00,58.54208293,257.4924761,489.4526424,779.3000599,82.75762767,691.5407651,607.5888845,83.95188062,80.26217986,3.689700764,121.1689076,0,121.1689076,2.495447817,118.6734598,1.021752098,4.494091507,1.620589534,-1.620589534,0.253016557,0.253016557,0.169081992,1.399569935,45.0149801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.1510602,1.807943449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013983654,43.2701111,78.16504385,45.07805455,607.5888845,0,0.779659743,38.77056765,-0.779659743,141.2294324,0.98586946,0,677.1683696,45.07805455,706.6710547,4,16,4% +2018-04-15 01:00:00,70.2473346,267.4866349,279.6946164,638.9534089,63.75360221,463.0293252,399.0896732,63.93965204,61.83119588,2.108456162,69.73760428,0,69.73760428,1.922406332,67.81519795,1.22604728,4.668522485,2.656128499,-2.656128499,0.075928965,0.075928965,0.227940041,0.604202896,19.43324207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.43449734,1.392776844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437742941,18.67997146,59.87224029,20.0727483,399.0896732,0,0.62459902,51.34723735,-0.62459902,128.6527627,0.969948642,0,446.9687267,20.0727483,460.105939,4,17,3% +2018-04-15 02:00:00,81.99972536,276.6323968,71.43524309,299.3247321,29.7758711,159.1860559,129.7695282,29.41652776,28.87801873,0.538509037,18.21815411,0,18.21815411,0.897852375,17.32030173,1.431165193,4.828146143,6.360214306,-6.360214306,0,0,0.416823263,0.224463094,7.219504682,0.357948317,1,0.155950712,0,0.944604948,0.983366911,0.724496596,1,27.99701193,0.650490989,0.052352204,0.312029739,0.862289724,0.58678632,0.961238037,0.922476074,0.153847521,6.939662507,28.15085945,7.590153496,83.31874397,0,0.433540948,64.30751157,-0.433540948,115.6924884,0.93467064,0,106.0264432,7.590153496,110.9940469,4,18,5% +2018-04-15 03:00:00,93.7104944,285.7980542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635556671,4.988117042,-12.50687453,12.50687453,1,0,#DIV/0!,0,0,1,0.400822742,0,0.079786292,0.961238037,1,0.523275864,0.798779268,0,0,0.115824807,0.084248601,0.724496596,0.448993192,0.991721998,0.952960035,0,0,0,0,0,0,0.216013162,77.52502591,-0.216013162,102.4749741,0.818532623,0,0,0,0,4,19,0% +2018-04-15 04:00:00,104.770477,295.7324798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828589782,5.161505478,-2.647382457,2.647382457,1,0.982882753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008728,90.50008392,0.008728,89.49991608,0,0,0,0,0,4,20,0% +2018-04-15 05:00:00,114.8636506,307.2158523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004748893,5.361928137,-1.168449862,1.168449862,1,0.729970384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227073458,103.124835,0.227073458,76.87516503,0,0.829806938,0,0,0,4,21,0% +2018-04-15 06:00:00,123.3645168,321.0709825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153116999,5.603745778,-0.49263674,0.49263674,1,0.614399534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424132452,115.0957628,0.424132452,64.90423717,0,0.932112298,0,0,0,4,22,0% +2018-04-15 07:00:00,129.3920755,337.8569503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258317744,5.896716183,-0.045537713,0.045537713,1,0.537941097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586466998,125.9066944,0.586466998,54.09330557,0,0.964743711,0,0,0,4,23,0% +2018-04-16 08:00:00,131.964021,357.0741473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303206661,6.232119544,0.326497936,-0.326497936,1,0.474319254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703007386,134.6687878,0.703007386,45.33121223,0,0.978876992,0,0,0,4,0,0% +2018-04-16 09:00:00,130.5233772,16.66165841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278062683,0.290800798,0.698523468,-0.698523468,1,0.410699141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765806186,139.9787673,0.765806186,40.02123271,0,0.984709329,0,0,0,4,1,0% +2018-04-16 10:00:00,125.3935724,34.26488035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188530699,0.59803498,1.142480419,-1.142480419,1,0.334778031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770579458,140.4059522,0.770579458,39.59404777,0,0.985113765,0,0,0,4,2,0% +2018-04-16 11:00:00,117.5008674,48.92671543,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05077701,0.853932276,1.792443066,-1.792443066,1,0.223627872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716998358,135.8072121,0.716998358,44.1927879,0,0.980264833,0,0,0,4,3,0% +2018-04-16 12:00:00,107.7865887,60.99863775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881230863,1.064627068,3.078753137,-3.078753137,1,0.003655895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608711312,127.4963807,0.608711312,52.50361935,0,0.967859256,0,0,0,4,4,0% +2018-04-16 13:00:00,96.94788214,71.27900518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692059746,1.244053328,8.204004687,-8.204004687,1,0,#DIV/0!,0,0,0.466044071,1,0.121293343,0,0.948790945,0.987552908,0.724496596,1,0,0,0.065288741,0.312029739,0.831594912,0.556091508,0.961238037,0.922476074,0,0,0,0,0,0,-0.453095241,116.9424455,0.453095241,63.05755452,0,0.939647925,0,0,0,4,5,0% +2018-04-16 14:00:00,85.28569104,80.56635764,25.97580475,138.3601655,14.60434184,14.35978364,0,14.35978364,14.16396705,0.195816588,42.41498313,35.67647374,6.738509391,0.440374791,6.2981346,1.488516114,1.406148207,-11.92053032,11.92053032,0,0,0.562228658,0.110093698,3.540991762,1,0.362523157,0,0.083692927,0.961238037,1,0.514720104,0.790223508,13.61494388,0.304011479,0.115824807,0.074584023,0.724496596,0.448993192,0.992757091,0.953995128,0.079762509,3.427847293,13.69470639,3.731858772,0,22.74292583,-0.257852205,104.9426577,0.257852205,75.05734234,0,0.856090469,13.69470639,23.20186082,28.87986026,4,6,111% +2018-04-16 15:00:00,73.60286831,89.60514875,217.8430171,571.4382974,56.52973911,56.46735158,0,56.46735158,54.8251589,1.64219268,79.56304679,25.03990498,54.52314181,1.704580207,52.8185616,1.284612391,1.563904872,-3.201325889,3.201325889,0.922387341,0.922387341,0.259497595,1.54781199,49.78295417,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.70002811,1.234962557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.121384518,47.85326914,53.82141263,49.08823169,0,25.03990498,-0.043819088,92.51145295,0.043819088,87.48854705,0,0,53.82141263,49.08823169,85.94867851,4,7,60% +2018-04-16 16:00:00,61.81977605,99.20376986,432.0466592,748.8838074,78.38886594,214.5367624,135.2546597,79.28210262,76.02515241,3.256950215,107.1184281,0,107.1184281,2.363713532,104.7547146,1.078958635,1.731432414,-1.629283004,1.629283004,0.808777493,0.808777493,0.181436112,2.747146836,88.3576855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.07826825,1.712502408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990298531,84.93276815,75.06856678,86.64527056,135.2546597,0,0.180608338,79.59480424,-0.180608338,100.4051958,0.773157853,0,179.6417691,86.64527056,236.3493658,4,8,32% +2018-04-16 17:00:00,50.37776778,110.4701419,623.5935154,832.4229058,92.73834886,426.6531903,332.0103335,94.6428568,89.94194548,4.700911326,153.9938709,0,153.9938709,2.796403386,151.1974675,0.879257918,1.928067701,-0.918855725,0.918855725,0.687287273,0.687287273,0.148716025,3.449494258,110.9475929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.4556191,2.025984734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.499146848,106.6470464,88.95476595,108.6730311,332.0103335,0,0.398848147,66.49380969,-0.398848147,113.5061903,0.924639006,0,395.9444708,108.6730311,467.0687962,4,9,18% +2018-04-16 18:00:00,39.88949871,125.2133543,774.8328997,876.1144274,102.6054518,627.4039113,522.0513748,105.3525366,99.51151888,5.841017688,190.9611402,0,190.9611402,3.093932946,187.8672072,0.69620309,2.185385299,-0.476852928,0.476852928,0.611700343,0.611700343,0.132422683,3.873295799,124.5785073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.65425705,2.241543887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806189621,119.7495998,98.46044667,121.9911436,522.0513748,0,0.595871222,53.42523549,-0.595871222,126.5747645,0.966089252,0,602.8086688,121.9911436,682.6494325,4,10,13% +2018-04-16 19:00:00,31.56364916,146.2797536,874.1378466,898.3721605,108.6715811,793.1403797,681.1560274,111.9843523,105.394732,6.589620325,215.2216905,0,215.2216905,3.276849126,211.9448413,0.550889602,2.55306333,-0.145707649,0.145707649,0.555071165,0.555071165,0.124318586,4.022199397,129.3677588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3094253,2.374066037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.914069771,124.3532105,104.223495,126.7272766,681.1560274,0,0.758211415,40.69322706,-0.758211415,139.3067729,0.984055332,0,774.5187158,126.7272766,857.4591838,4,11,11% +2018-04-16 20:00:00,27.59178066,175.3653508,914.267218,906.2846256,111.0543138,907.4124653,792.8147164,114.5977489,107.7056164,6.892132477,225.0233693,0,225.0233693,3.348697306,221.674672,0.481567419,3.060702765,0.13847616,-0.13847616,0.506472871,0.506472871,0.121468113,3.903846368,125.5611186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5307353,2.426119799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.828323404,120.6941231,106.3590587,123.1202429,792.8147164,0,0.874796608,28.97908661,-0.874796608,151.0209134,0.992843857,0,893.5002797,123.1202429,974.0800163,4,12,9% +2018-04-16 21:00:00,29.81989436,206.0348123,892.3553208,902.0333633,109.7576327,958.9993435,845.824357,113.1749865,106.4480352,6.726951341,219.6714765,0,219.6714765,3.30959759,216.3618789,0.520455339,3.595985849,0.412543386,-0.412543386,0.459604616,0.459604616,0.122997678,3.5388607,113.8219249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3219003,2.397792188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563892531,109.4099636,104.8857929,111.8077558,845.824357,0,0.937686333,20.33343285,-0.937686333,159.6665672,0.996677265,0,947.8996995,111.8077558,1021.07564,4,13,8% +2018-04-16 22:00:00,37.12512767,229.5142579,809.9920136,884.4741593,104.7836882,941.4436701,833.7135347,107.7301353,101.6240734,6.106061941,199.5515563,0,199.5515563,3.159614809,196.3919415,0.647955713,4.005779481,0.709111525,-0.709111525,0.408888477,0.408888477,0.129363853,2.963619547,95.32019202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68492479,2.289130174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147132274,91.62539425,99.83205706,93.91452442,833.7135347,0,0.942609262,19.50553112,-0.942609262,160.4944689,0.996955751,0,931.0075606,93.91452442,992.4727385,4,14,7% +2018-04-16 23:00:00,47.13535299,245.7929861,673.1718649,848.335494,96.07574625,852.6408529,754.387491,98.25336189,93.17870802,5.074653867,166.1153506,0,166.1153506,2.897038231,163.2183124,0.822667104,4.289896886,1.07455741,-1.07455741,0.34639355,0.34639355,0.142720977,2.231208086,71.76332177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.56691837,2.098894337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.616502663,68.98163454,91.18342104,71.08052888,754.387491,0,0.889256074,27.22008613,-0.889256074,152.7799139,0.993773226,0,840.8735119,71.08052888,887.3942964,4,15,6% +2018-04-16 00:00:00,58.36735938,257.8599785,492.2170197,779.8445137,83.21115807,693.7139667,609.3013923,84.41257444,80.70203464,3.710539807,121.8528385,0,121.8528385,2.509123432,119.3437151,1.018702597,4.500505634,1.608152314,-1.608152314,0.255143447,0.255143447,0.169053801,1.413954175,45.4776267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.57386534,1.817851385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.024404986,43.71482461,78.59827033,45.532676,609.3013923,0,0.781311379,38.61919868,-0.781311379,141.3808013,0.986005028,0,679.3725066,45.532676,709.1727323,4,16,4% +2018-04-16 01:00:00,70.08209993,267.8247422,282.5224532,640.7010185,64.25272686,465.6862809,401.2412372,64.44504366,62.31527007,2.12977359,70.43829649,0,70.43829649,1.937456782,68.50083971,1.223163391,4.67442357,2.627298619,-2.627298619,0.080859165,0.080859165,0.227425205,0.617410625,19.85804802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.89980787,1.403680843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.447311896,19.08831109,60.34711977,20.49199194,401.2412372,0,0.626253472,51.2257518,-0.626253472,128.7742482,0.970160123,0,449.6153679,20.49199194,463.0269668,4,17,3% +2018-04-16 02:00:00,81.83352108,276.9521247,73.91747953,305.5355122,30.51620963,163.1416958,132.9884413,30.1532545,29.59603332,0.557221184,18.84232501,0,18.84232501,0.920176313,17.9221487,1.428264381,4.833726447,6.211527481,-6.211527481,0,0,0.412841588,0.230044078,7.399008329,0.347292599,1,0.159621373,0,0.944145639,0.982907602,0.724496596,1,28.69175194,0.666664607,0.051014719,0.312029739,0.865538977,0.590035573,0.961238037,0.922476074,0.157744875,7.112208241,28.84949681,7.778872848,86.8025398,0,0.43526345,64.19794119,-0.43526345,115.8020588,0.935127042,0,110.0208991,7.778872848,115.1120158,4,18,5% +2018-04-16 03:00:00,93.52956339,286.1080717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632398829,4.993527868,-13.09824463,13.09824463,1,0,#DIV/0!,0,0,1,0.43505552,0,0.076198291,0.961238037,1,0.531241258,0.806744662,0,0,0.115824807,0.093242833,0.724496596,0.448993192,0.990739067,0.951977104,0,0,0,0,0,0,0.217945479,77.41161034,-0.217945479,102.5883897,0.820584825,0,0,0,0,4,19,0% +2018-04-16 04:00:00,104.5670229,296.0373357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825038839,5.166826218,-2.671336594,2.671336594,1,0.986979152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006549808,90.37527904,0.006549808,89.62472096,0,0,0,0,0,4,20,0% +2018-04-16 05:00:00,114.6277622,307.5126116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000631864,5.367107564,-1.171658368,1.171658368,1,0.730519071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224596889,102.9791749,0.224596889,77.02082507,0,0.827378929,0,0,0,4,21,0% +2018-04-16 06:00:00,123.0876735,321.3423864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148285171,5.608482669,-0.490975141,0.490975141,1,0.614115384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.421325589,114.9183058,0.421325589,65.08169421,0,0.931326933,0,0,0,4,22,0% +2018-04-16 07:00:00,129.0723045,338.0644816,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252736687,5.900338287,-0.041600884,0.041600884,1,0.53726786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583320701,125.6844436,0.583320701,54.31555637,0,0.964283858,0,0,0,4,23,0% +2018-04-17 08:00:00,131.6133839,357.1695188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297086888,6.233784091,0.332335146,-0.332335146,1,0.473321033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699535926,134.3897831,0.699535926,45.61021689,0,0.978524043,0,0,0,4,0,0% +2018-04-17 09:00:00,130.1666645,16.62774452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271836872,0.290208889,0.706830563,-0.706830563,1,0.409278544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762046263,139.6449255,0.762046263,40.3550745,0,0.984387186,0,0,0,4,1,0% +2018-04-17 10:00:00,125.052934,34.13197849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182585438,0.595715405,1.155053878,-1.155053878,1,0.332627843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766587685,140.048447,0.766587685,39.95155299,0,0.984775889,0,0,0,4,2,0% +2018-04-17 11:00:00,117.185436,48.73754809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045271693,0.850630683,1.814472197,-1.814472197,1,0.219860669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71284737,135.4670599,0.71284737,44.53294005,0,0.979858758,0,0,0,4,3,0% +2018-04-17 12:00:00,107.4954091,60.78140425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876148819,1.060835628,3.131506411,-3.131506411,1,0,#DIV/0!,0,0,0.005336812,1,0.309099715,0,0.922938928,0.961700892,0.724496596,1,0,0,0.000910366,0.312029739,0.997421759,0.721918355,0.961238037,0.922476074,0,0,0,0,0,0,-0.604484781,127.1917762,0.604484781,52.80822376,0,0.967284932,0,0,0,4,4,0% +2018-04-17 13:00:00,96.67561599,71.04622647,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687307805,1.239990573,8.542548608,-8.542548608,1,0,#DIV/0!,0,0,0.48205533,1,0.11653073,0,0.949344726,0.988106689,0.724496596,1,0,0,0.067112154,0.312029739,0.827375449,0.551872045,0.961238037,0.922476074,0,0,0,0,0,0,-0.448882124,116.6719848,0.448882124,63.32801523,0,0.938612183,0,0,0,4,5,0% +2018-04-17 14:00:00,85.03247764,80.32099035,28.83923423,150.0759239,15.8440033,15.58365048,0,15.58365048,15.36624815,0.217402329,45.56742224,38.09726086,7.470161386,0.477755158,6.992406228,1.484096706,1.40186574,-11.31900182,11.31900182,0,0,0.549390569,0.119438789,3.841562036,1,0.3177866,0,0.088118228,0.961238037,1,0.505175937,0.780679341,14.7706222,0.331145502,0.115824807,0.063796467,0.724496596,0.448993192,0.993886531,0.955124568,0.086532996,3.716490767,14.8571552,4.047636269,0,25.99046185,-0.253853249,104.7056454,0.253853249,75.29435461,0,0.853035808,14.8571552,26.2184309,32.01659385,4,6,115% +2018-04-17 15:00:00,73.34830939,89.34522593,222.3129045,575.931026,57.27824359,57.22698179,0,57.22698179,55.55109322,1.675888579,78.6120316,22.98254368,55.62948792,1.727150379,53.90233754,1.2801695,1.559368363,-3.154643175,3.154643175,0.930370555,0.930370555,0.257646958,1.589262518,51.11614564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.39782379,1.25131457,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.151415284,49.13478349,54.54923907,50.38609806,0,22.98254368,-0.039905028,92.28699693,0.039905028,87.71300307,0,0,54.54923907,50.38609806,87.52593253,4,7,60% +2018-04-17 16:00:00,61.5607219,98.92561861,436.388954,750.5041816,78.97850548,218.1894005,138.3027041,79.88669641,76.59701214,3.289684267,108.1890476,0,108.1890476,2.38149334,105.8075542,1.074437287,1.726577759,-1.616088965,1.616088965,0.806521179,0.806521179,0.180981908,2.768392165,89.04100832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62796158,1.725383818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.0056907,85.58960403,75.63365228,87.31498785,138.3027041,0,0.184279725,79.38085831,-0.184279725,100.6191417,0.778673352,0,183.3262825,87.31498785,240.4721958,4,8,31% +2018-04-17 17:00:00,50.10380608,110.1735026,627.6248619,833.1021837,93.27423063,430.2823501,335.0893803,95.19296975,90.46166843,4.731301319,154.9874764,0,154.9874764,2.812562199,152.1749142,0.874476384,1.922890369,-0.913970079,0.913970079,0.686451778,0.686451778,0.14861462,3.468278673,111.5517643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95519658,2.037691739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.512756092,107.2277989,89.46795267,109.2654906,335.0893803,0,0.402218824,66.28303866,-0.402218824,113.7169613,0.925689557,0,399.6566928,109.2654906,471.1687711,4,9,18% +2018-04-17 18:00:00,39.58734009,124.91783,778.5215408,876.4101897,103.1124635,630.7619881,524.8899216,105.8720665,100.0032422,5.868824224,191.8707822,0,191.8707822,3.109221218,188.761561,0.690929427,2.180227428,-0.475261197,0.475261197,0.611428141,0.611428141,0.132446513,3.890403252,125.1287418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.12692026,2.252620188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818583913,120.2785061,98.94550417,122.5311263,524.8899216,0,0.598908967,53.20820192,-0.598908967,126.7917981,0.966514858,0,606.2594124,122.5311263,686.4535839,4,10,13% +2018-04-17 19:00:00,31.22385363,146.0743252,877.5001649,898.4897717,109.1579675,796.1493078,683.6678889,112.4814189,105.866452,6.614966901,216.0515898,0,216.0515898,3.29151547,212.7600743,0.544959051,2.549477928,-0.145887674,0.145887674,0.555101951,0.555101951,0.124396521,4.038078236,129.8784769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7628605,2.384691754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925573936,124.8441321,104.6884345,127.2288239,683.6678889,0,0.760907815,40.45570567,-0.760907815,139.5442943,0.984289018,0,777.6152292,127.2288239,860.8839498,4,11,11% +2018-04-17 20:00:00,27.23721944,175.4377777,917.3488902,906.3177659,111.5243143,910.0687815,794.9919734,115.0768082,108.1614447,6.915363424,225.7847287,0,225.7847287,3.362869557,222.4218591,0.475379158,3.061966853,0.137022631,-0.137022631,0.50672144,0.50672144,0.121572409,3.918870774,126.0443551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9688948,2.436387546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839208535,121.1586285,106.8081033,123.595016,794.9919734,0,0.877166931,28.69752212,-0.877166931,151.3024779,0.992998307,0,896.2337871,123.595016,977.1242532,4,12,9% +2018-04-17 21:00:00,29.51108268,206.3926757,895.223474,902.0389,110.2147125,961.3474559,847.707551,113.639905,106.8913323,6.748572691,220.380676,0,220.380676,3.323380231,217.0572958,0.515065559,3.602231744,0.409851758,-0.409851758,0.460064911,0.460064911,0.12311419,3.553383895,114.2890407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7480144,2.407777664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574414536,109.8589732,105.3224289,112.2667508,847.707551,0,0.939768286,19.98732059,-0.939768286,160.0126794,0.996795395,0,950.3134124,112.2667508,1023.789756,4,13,8% +2018-04-17 22:00:00,36.88172522,229.9455998,812.728537,884.5080698,105.2316497,943.5679773,835.382759,108.1852183,102.0585272,6.12669101,200.2285657,0,200.2285657,3.173122503,197.0554432,0.643707539,4.013307817,0.704828634,-0.704828634,0.409620894,0.409620894,0.129479457,2.977956958,95.78133242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.10253837,2.298916452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.157519679,92.06865994,100.2600581,94.3675764,835.382759,0,0.944460302,19.18537183,-0.944460302,160.8146282,0.997059712,0,933.1865515,94.3675764,994.9482429,4,14,7% +2018-04-17 23:00:00,46.937711,246.1971574,675.8654794,848.4937334,96.51985812,854.6693303,755.9649425,98.70438775,93.60942828,5.09495947,166.7818402,0,166.7818402,2.910429843,163.8714104,0.8192176,4.296951006,1.067678067,-1.067678067,0.347569987,0.347569987,0.142809274,2.245567942,72.22518409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.98094307,2.108596514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62690633,69.42559417,91.6078494,71.53419068,755.9649425,0,0.890949353,27.00721442,-0.890949353,152.9927856,0.993880087,0,842.9463524,71.53419068,889.7640495,4,15,6% +2018-04-17 00:00:00,58.19413485,258.2250207,494.9503338,780.3693678,83.66228254,695.8456028,610.9749021,84.87070072,81.13955604,3.731144684,122.5291653,0,122.5291653,2.5227265,120.0064388,1.015679258,4.506876821,1.595880239,-1.595880239,0.257242096,0.257242096,0.169031672,1.428251239,45.93746944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.99442756,1.827706761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.034763161,44.15684294,79.02919072,45.98454971,610.9749021,0,0.782930401,38.47033123,-0.782930401,141.5296688,0.986137363,0,681.5343695,45.98454971,711.6303376,4,16,4% +2018-04-17 01:00:00,69.91785426,268.1600653,285.3304067,642.40682,64.7490775,468.3050896,403.3574946,64.94759505,62.79665392,2.150941129,71.13408412,0,71.13408412,1.952423585,69.18166053,1.220296763,4.680276061,2.599024127,-2.599024127,0.085694387,0.085694387,0.226926665,0.630601543,20.2823133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.36253233,1.414524241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456868671,19.49613102,60.819401,20.91065526,403.3574946,0,0.627884826,51.10575932,-0.627884826,128.8942407,0.970367561,0,452.2244293,20.91065526,465.9100349,4,17,3% +2018-04-17 02:00:00,81.66788249,277.2688049,76.40810461,311.6251308,31.2502379,167.0557266,136.1718021,30.8839245,30.30792793,0.575996567,19.46833956,0,19.46833956,0.942309974,18.52602958,1.425373443,4.839253558,6.069141769,-6.069141769,0,0,0.408991141,0.235577493,7.576981983,0.336751574,1,0.163300703,0,0.9436822,0.982444163,0.724496596,1,29.38023291,0.682700368,0.049680071,0.312029739,0.868795471,0.593292066,0.961238037,0.922476074,0.161622244,7.283283286,29.54185515,7.965983655,90.3157334,0,0.436973108,64.08908756,-0.436973108,115.9109124,0.935576483,0,114.0391313,7.965983655,119.2527083,4,18,5% +2018-04-17 03:00:00,93.34906148,286.4146988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629248476,4.998879521,-13.75184354,13.75184354,1,0,#DIV/0!,0,0,1,0.468610119,0,0.072589755,0.961238037,1,0.539355907,0.814859312,0,0,0.115824807,0.102403372,0.724496596,0.448993192,0.98971859,0.950956627,0,0,0,0,0,0,0.219871971,77.29848665,-0.219871971,102.7015133,0.822594934,0,0,0,0,4,19,0% +2018-04-17 04:00:00,104.3639552,296.338307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821494638,5.172079158,-2.695966106,2.695966106,1,0.991191047,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.004370659,90.25042112,0.004370659,89.74957888,0,0,0,0,0,4,20,0% +2018-04-17 05:00:00,114.392444,307.8048369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996524786,5.372207857,-1.174973605,1.174973605,1,0.73108601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.222114526,102.8332597,0.222114526,77.16674027,0,0.824890905,0,0,0,4,21,0% +2018-04-17 06:00:00,122.8118953,321.6086567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143471933,5.613129962,-0.489345823,0.489345823,1,0.613836754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.418510373,114.7405768,0.418510373,65.25942324,0,0.930528648,0,0,0,4,22,0% +2018-04-17 07:00:00,128.7544121,338.2669932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247188418,5.903872783,-0.037674885,0.037674885,1,0.536596474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580165946,125.4622152,0.580165946,54.53778477,0,0.963817761,0,0,0,4,23,0% +2018-04-18 08:00:00,131.2654781,357.2614835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291014788,6.235389178,0.338174782,-0.338174782,1,0.472322396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696058363,134.1116152,0.696058363,45.88838483,0,0.978166943,0,0,0,4,0,0% +2018-04-18 09:00:00,129.8131304,16.59291999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265666537,0.289601086,0.715158926,-0.715158926,1,0.40785431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758284892,139.3132302,0.758284892,40.68676979,0,0.984061722,0,0,0,4,1,0% +2018-04-18 10:00:00,124.7154833,33.9999334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176695811,0.593410783,1.167693595,-1.167693595,1,0.330466324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762601098,139.6940447,0.762601098,40.30595533,0,0.984434923,0,0,0,4,2,0% +2018-04-18 11:00:00,116.8730702,48.54989538,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039819881,0.847355526,1.836720711,-1.836720711,1,0.216055949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708709727,135.1300319,0.708709727,44.86996812,0,0.979449254,0,0,0,4,3,0% +2018-04-18 12:00:00,107.2072371,60.5657289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87111927,1.057071383,3.185359163,-3.185359163,1,0,#DIV/0!,0,0,0.014365436,1,0.304192885,0,0.923710135,0.962472098,0.724496596,1,0,0,0.002440159,0.312029739,0.993103786,0.717600382,0.961238037,0.922476074,0,0,0,0,0,0,-0.600280715,126.890005,0.600280715,53.10999501,0,0.966705637,0,0,0,4,4,0% +2018-04-18 13:00:00,96.40640427,70.81481772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682609175,1.235951728,8.905313414,-8.905313414,1,0,#DIV/0!,0,0,0.498179545,1,0.111824061,0,0.949886869,0.988648832,0.724496596,1,0,0,0.06892552,0.312029739,0.823205491,0.547702087,0.961238037,0.922476074,0,0,0,0,0,0,-0.444700926,116.4042057,0.444700926,63.59579432,0,0.937564884,0,0,0,4,5,0% +2018-04-18 14:00:00,84.78189429,80.07670968,31.7772563,161.6626767,17.07447568,16.79916762,0,16.79916762,16.55961724,0.239550381,48.61689704,40.39727491,8.219622134,0.51485844,7.704763694,1.479723201,1.397602238,-10.78090546,10.78090546,0,0,0.537317493,0.12871461,4.139904311,1,0.272090474,0,0.092491933,0.961238037,1,0.495897182,0.771400586,15.91773397,0.35856736,0.115824807,0.053300058,0.724496596,0.448993192,0.994959116,0.956197153,0.093253297,4.002227295,16.01098727,4.360794655,0,29.40556123,-0.249886218,104.4707793,0.249886218,75.52922073,0,0.849908933,16.01098727,29.35284383,35.2218365,4,6,120% +2018-04-18 15:00:00,73.09712287,89.08600439,226.7222241,580.2507801,58.01417056,57.97395716,0,57.97395716,56.26482926,1.709127893,77.63280511,20.91203569,56.72076942,1.749341292,54.97142813,1.275785468,1.554844094,-3.109894629,3.109894629,0.938023007,0.938023007,0.255882152,1.630306014,52.43624555,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.08389402,1.267391811,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.181151157,50.40371373,55.26504518,51.67110554,0,20.91203569,-0.036039651,92.06536717,0.036039651,87.93463283,0,0,55.26504518,51.67110554,89.08275034,4,7,61% +2018-04-18 16:00:00,61.30533284,98.64757197,440.6568241,752.0600513,79.56131651,221.7926725,141.3085659,80.48410654,77.16224927,3.321857275,109.241416,0,109.241416,2.399067243,106.8423488,1.069979907,1.72172493,-1.603296453,1.603296453,0.804333531,0.804333531,0.18055165,2.789235445,89.71139985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.17128901,1.738116051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020791585,86.23400987,76.19208059,87.97212592,141.3085659,0,0.187895323,79.17001696,-0.187895323,100.829983,0.783894387,0,186.9630723,87.97212592,244.5390692,4,8,31% +2018-04-18 17:00:00,49.8337855,109.8759214,631.5782722,833.7481778,93.80470346,433.8462241,338.1089748,95.73724934,90.97614555,4.761103796,155.9620222,0,155.9620222,2.828557912,153.1334643,0.869763636,1.917696597,-0.909223244,0.909223244,0.685640022,0.685640022,0.148524273,3.486699661,112.1442465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.44973155,2.049280578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.526102035,107.7973154,89.97583358,109.846596,338.1089748,0,0.405528892,66.07572552,-0.405528892,113.9242745,0.926704223,0,403.3028482,109.846596,475.1952483,4,9,18% +2018-04-18 18:00:00,39.28924329,124.6195627,782.1326907,876.6846084,103.6146541,634.0484431,527.6621065,106.3863365,100.4902899,5.896046597,192.7614902,0,192.7614902,3.124364117,189.6371261,0.685726656,2.175021682,-0.473726825,0.473726825,0.611165748,0.611165748,0.132477079,3.907176674,125.6682327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.59508903,2.263591167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.8307362,120.7970853,99.42582523,123.0606764,527.6621065,0,0.601883621,52.99507849,-0.601883621,127.0049215,0.966927462,0,609.6368067,123.0606764,690.1775582,4,10,13% +2018-04-18 19:00:00,30.88776008,145.8644639,880.7883682,898.5915323,109.6399463,799.0852216,686.1115695,112.9736521,106.3338974,6.639754766,216.8633862,0,216.8633862,3.306048909,213.5573373,0.539093112,2.545815157,-0.146089711,0.146089711,0.555136502,0.555136502,0.12447933,4.053655353,130.3794905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2121868,2.39522118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.936859504,125.3257255,105.1490463,127.7209467,686.1115695,0,0.763541103,40.22262389,-0.763541103,139.7773761,0.984515641,0,780.6366176,127.7209467,864.2274228,4,11,11% +2018-04-18 20:00:00,26.88572083,175.5086332,920.3622699,906.3377793,111.9903082,912.6543095,797.1028427,115.5514668,108.6133872,6.938079553,226.5294089,0,226.5294089,3.376920993,223.1524879,0.46924435,3.063203516,0.135567651,-0.135567651,0.506970256,0.506970256,0.121680681,3.93363059,126.5190815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4033191,2.446567764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.849901972,121.6149536,107.2532211,124.0615213,797.1028427,0,0.879476571,28.42071313,-0.879476571,151.5792869,0.993148002,0,898.8943169,124.0615213,980.0901014,4,12,9% +2018-04-18 21:00:00,29.20536194,206.751994,898.0311173,902.0325087,110.6682123,963.6299326,849.5290374,114.1008952,107.3311574,6.769737892,221.0750964,0,221.0750964,3.337054922,217.7380414,0.509729725,3.60850303,0.407175564,-0.407175564,0.460522567,0.460522567,0.123234273,3.567683529,114.7489661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.170791,2.417684931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.584774572,110.3010709,105.7555656,112.7187559,849.5290374,0,0.941794258,19.64490475,-0.941794258,160.3550953,0.996909848,0,952.6594294,112.7187559,1026.431601,4,13,8% +2018-04-18 22:00:00,36.64114734,230.3765592,815.4137313,884.5300455,105.6764771,945.6340525,836.9971779,108.6368745,102.4899414,6.146933139,200.8930354,0,200.8930354,3.186535689,197.7064997,0.639508663,4.020829477,0.700581728,-0.700581728,0.410347158,0.410347158,0.129598599,2.992114,96.23667158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.51723006,2.308634259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167776408,92.50634926,100.6850065,94.81498352,836.9971779,0,0.946262009,18.86872848,-0.946262009,161.1312715,0.997160512,0,935.305541,94.81498352,997.3600514,4,14,7% +2018-04-18 23:00:00,46.74222383,246.5993819,678.517735,848.6383831,96.96126374,856.6483109,757.4958337,99.15247718,94.03752389,5.114953293,167.4382203,0,167.4382203,2.923739851,164.5144804,0.815805706,4.303971148,1.060870972,-1.060870972,0.348734069,0.348734069,0.142901591,2.259791512,72.68266302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.39244485,2.118239569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.637211258,69.86534031,92.02965611,71.98357988,757.4958337,0,0.892601429,26.79801617,-0.892601429,153.2019838,0.993983957,0,844.9683623,71.98357988,892.0801757,4,15,6% +2018-04-18 00:00:00,58.02241856,258.5874626,497.6525271,780.8749298,84.11100229,697.9361372,612.609877,85.32626019,81.57474523,3.751514959,123.1978739,0,123.1978739,2.536257055,120.6616168,1.012682244,4.513202627,1.583771914,-1.583771914,0.259312741,0.259312741,0.169015523,1.442458949,46.39443821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.41274796,1.837509603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.045056598,44.59609871,79.45780456,46.43360831,612.609877,0,0.784517281,38.32394529,-0.784517281,141.6760547,0.986266541,0,683.6544289,46.43360831,714.0442969,4,16,4% +2018-04-18 01:00:00,69.75461359,268.4924873,288.1181449,644.0715432,65.24265516,470.8861244,405.4388198,65.44730466,63.27534839,2.171956278,71.82488672,0,71.82488672,1.967306773,69.85757995,1.217447676,4.68607792,2.571294091,-2.571294091,0.090436503,0.090436503,0.226444104,0.643771737,20.70591202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.82267166,1.42530706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466410432,19.90331022,61.2890821,21.32861728,405.4388198,0,0.629493453,50.98723969,-0.629493453,129.0127603,0.970571056,0,454.7962657,21.32861728,468.7554191,4,17,3% +2018-04-18 02:00:00,81.50284054,277.5823347,78.90565545,317.593832,31.97787055,170.9273466,139.3189027,31.60844393,31.01361976,0.594824161,20.09584048,0,20.09584048,0.964250783,19.1315897,1.422492917,4.844725686,5.932694075,-5.932694075,0,0,0.405267156,0.241062696,7.753404941,0.32632566,1,0.166987828,0,0.943214729,0.981976692,0.724496596,1,30.06235975,0.69859641,0.048348545,0.312029739,0.872058406,0.596555002,0.961238037,0.922476074,0.165479617,7.452867745,30.22783937,8.151464154,93.8555698,0,0.438670052,63.98094404,-0.438670052,116.019056,0.936019117,0,118.0784469,8.151464154,123.4134172,4,18,5% +2018-04-18 03:00:00,93.16903118,286.7178437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626106355,5.004170396,-14.47787929,14.47787929,1,0,#DIV/0!,0,0,1,0.501499704,0,0.068961362,0.961238037,1,0.54761993,0.823123334,0,0,0.115824807,0.11173133,0.724496596,0.448993192,0.988659462,0.949897499,0,0,0,0,0,0,0.221792574,77.18565867,-0.221792574,102.8143413,0.824564138,0,0,0,0,4,19,0% +2018-04-18 04:00:00,104.1613345,296.6353137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817958241,5.177262902,-2.721294037,2.721294037,1,0.995522378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002190928,90.12553105,0.002190928,89.87446895,0,0,0,0,0,4,20,0% +2018-04-18 05:00:00,114.157777,308.0924682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992429075,5.377227971,-1.178398713,1.178398713,1,0.731671738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219627087,102.687131,0.219627087,77.31286905,0,0.822341378,0,0,0,4,21,0% +2018-04-18 06:00:00,122.5372811,321.8697679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138679011,5.617687213,-0.487750856,0.487750856,1,0.613563998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41568787,114.5626424,0.41568787,65.4373576,0,0.929717443,0,0,0,4,22,0% +2018-04-18 07:00:00,128.4385055,338.4644989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241674807,5.907319907,-0.033761934,0.033761934,1,0.53592732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577004134,125.2401041,0.577004134,54.7598959,0,0.963345508,0,0,0,4,23,0% +2018-04-19 08:00:00,130.920409,357.3500602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284992195,6.236935132,0.344014141,-0.344014141,1,0.471323807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692576397,133.8344006,0.692576397,46.16559935,0,0.977805798,0,0,0,4,0,0% +2018-04-19 09:00:00,129.4628789,16.55717415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259553496,0.288977204,0.723505001,-0.723505001,1,0.406427048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754524013,138.9837965,0.754524013,41.01620354,0,0.983733057,0,0,0,4,1,0% +2018-04-19 10:00:00,124.3813276,33.86872385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170863694,0.591120745,1.180394599,-1.180394599,1,0.328294325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758621801,139.3428491,0.758621801,40.65715092,0,0.984091006,0,0,0,4,2,0% +2018-04-19 11:00:00,116.563878,48.36375171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03442346,0.844106706,1.85918198,-1.85918198,1,0.212214846,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704587607,134.7962371,0.704587607,45.20376293,0,0.979036504,0,0,0,4,3,0% +2018-04-19 12:00:00,106.9221773,60.35162772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866144037,1.053334613,3.240320804,-3.240320804,1,0,#DIV/0!,0,0,0.023412516,1,0.299338335,0,0.924468275,0.963230238,0.724496596,1,0,0,0.003960192,0.312029739,0.98883144,0.713328035,0.961238037,0.922476074,0,0,0,0,0,0,-0.596101276,126.5911795,0.596101276,53.40882054,0,0.966121636,0,0,0,4,4,0% +2018-04-19 13:00:00,96.14034564,70.584814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677965575,1.231937406,9.294800242,-9.294800242,1,0,#DIV/0!,0,0,0.514410067,1,0.107174789,0,0.95041738,0.989179343,0.724496596,1,0,0,0.070728045,0.312029739,0.81908643,0.543583026,0.961238037,0.922476074,0,0,0,0,0,0,-0.440553706,116.1392151,0.440553706,63.86078491,0,0.936506459,0,0,0,4,5,0% +2018-04-19 14:00:00,84.53409447,79.83356717,34.77783799,173.0746391,18.29188767,18.0024898,0,18.0024898,17.74031977,0.262170033,51.55224992,42.56839256,8.983857367,0.551567903,8.432289464,1.475398279,1.393358601,-10.29703635,10.29703635,0,0,0.525963911,0.137891976,4.435079942,1,0.225437028,0,0.096811727,0.961238037,1,0.486883378,0.762386782,17.05267015,0.386250931,0.115824807,0.043092529,0.724496596,0.448993192,0.995977119,0.957215156,0.099902267,4.284081159,17.15257241,4.67033209,0,32.97190063,-0.245953958,104.2382167,0.245953958,75.7617833,0,0.846709919,17.15257241,32.58796742,38.48074533,4,6,124% +2018-04-19 15:00:00,72.84939971,88.8275513,231.068829,584.4026142,58.7376667,58.70840376,0,58.70840376,56.96650933,1.741894437,76.6286067,18.83213652,57.79647018,1.77115737,56.02531281,1.271461883,1.550333237,-3.066987152,3.066987152,0.945360618,0.945360618,0.254199872,1.670912137,53.74227804,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.75837559,1.283197485,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.210570155,51.65912184,55.96894575,52.94231933,0,18.83213652,-0.032224593,91.84665288,0.032224593,88.15334712,0,0,55.96894575,52.94231933,90.6186349,4,7,62% +2018-04-19 16:00:00,61.05369829,98.36971251,444.8489719,753.5526112,80.13726715,225.3448259,144.2705335,81.07429233,77.72083287,3.353459455,110.2752178,0,110.2752178,2.41643428,107.8587835,1.065588056,1.716875368,-1.590895891,1.590895891,0.80221291,0.80221291,0.180144886,2.809673344,90.36875294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70822081,1.75069841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035598773,86.86588267,76.74381959,88.61658108,144.2705335,0,0.19145383,78.96235978,-0.19145383,101.0376402,0.78884043,0,190.5502492,88.61658108,248.5480292,4,8,30% +2018-04-19 17:00:00,49.56780107,109.5774901,635.4528784,834.3612927,94.32972596,437.3436872,341.0680383,96.2756489,91.48533668,4.790312214,156.9172967,0,156.9172967,2.844389277,154.0729074,0.865121332,1.912487989,-0.904613689,0.904613689,0.684851741,0.684851741,0.148444879,3.504754744,112.7249601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.93918543,2.060750349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539182881,108.3555193,90.47836832,110.4162697,341.0680383,0,0.408777398,65.87194403,-0.408777398,114.128056,0.92768404,0,406.8817439,110.4162697,479.1469841,4,9,18% +2018-04-19 18:00:00,38.99531679,124.3186186,785.665837,876.9378845,104.1119951,637.2625971,530.3672819,106.8953152,100.9726343,5.922680946,193.6331391,0,193.6331391,3.139360784,190.4937783,0.680596671,2.169769217,-0.472249702,0.472249702,0.610913145,0.610913145,0.132514347,3.923614647,126.1969344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.05873677,2.274456201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842645455,121.3052935,99.90138223,123.5797497,530.3672819,0,0.604794583,52.78593836,-0.604794583,127.2140616,0.967327302,0,612.940134,123.5797497,693.8206085,4,10,13% +2018-04-19 19:00:00,30.5554868,145.6501151,884.0022392,898.6775833,110.1175032,801.9478314,688.4867949,113.4610365,106.7970542,6.663982283,217.6570265,0,217.6570265,3.320449013,214.3365775,0.533293849,2.542074064,-0.14631393,0.14631393,0.555174845,0.555174845,0.124566996,4.068930144,130.8707803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6573907,2.405654007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.947926038,125.7979719,105.6053168,128.2036259,688.4867949,0,0.766111014,39.99406571,-0.766111014,140.0059343,0.984735307,0,783.5825723,128.2036259,867.4892814,4,11,11% +2018-04-19 20:00:00,26.53738294,175.5777752,923.3073599,906.3447926,112.452293,915.1690928,799.1473705,116.0217224,109.0614415,6.960280886,227.2574106,0,227.2574106,3.390851539,223.8665591,0.463164707,3.064410271,0.134111034,-0.134111034,0.507219352,0.507219352,0.121792913,3.948125666,126.985293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8340059,2.456660397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860403605,122.0630938,107.6944095,124.5197541,799.1473705,0,0.881725561,28.14877751,-0.881725561,151.8512225,0.993293013,0,901.4819089,124.5197541,982.9775976,4,12,9% +2018-04-19 21:00:00,28.9027985,207.1125903,900.778386,902.0143221,111.1181371,965.8470759,851.2891127,114.5579632,107.7675153,6.790447964,221.7547703,0,221.7547703,3.350621816,218.4041485,0.504448997,3.614796624,0.404514664,-0.404514664,0.460977608,0.460977608,0.123357908,3.581759505,115.2016979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5902348,2.4275141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.594972569,110.7362539,106.1852074,113.163768,851.2891127,0,0.943764519,19.30631476,-0.943764519,160.6936852,0.997020683,0,954.9380596,113.163768,1029.001482,4,13,8% +2018-04-19 22:00:00,36.40342337,230.8069223,818.047767,884.5402398,106.1181782,947.6423627,838.5572495,109.0851132,102.9183236,6.166789612,201.5450067,0,201.5450067,3.199854607,198.3451521,0.635359597,4.028340731,0.6963707,-0.6963707,0.411067286,0.411067286,0.129721249,3.006090235,96.68619532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92900733,2.31828377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.177902142,92.93844858,101.1069095,95.25673235,838.5572495,0,0.948014812,18.55568695,-0.948014812,161.4443131,0.997258208,0,937.3650094,95.25673235,999.7086356,4,14,7% +2018-04-19 23:00:00,46.54890237,246.9994816,681.1287374,848.7696387,97.39996944,858.5783185,758.9806814,99.59763713,94.46300099,5.134636132,168.0845167,0,168.0845167,2.936968446,165.1475482,0.81243161,4.310954205,1.054135895,-1.054135895,0.349885835,0.349885835,0.142997886,2.273877647,73.13572152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80142963,2.127823642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647416614,70.30083738,92.44884625,72.42866102,758.9806814,0,0.894212807,26.59250427,-0.894212807,153.4074957,0.994084898,0,846.9400798,72.42866102,894.3431898,4,15,6% +2018-04-19 00:00:00,57.85221993,258.9471632,500.3235414,781.3614965,84.5573181,699.9860416,614.2067884,85.77925317,82.00760298,3.771650193,123.8589503,0,123.8589503,2.549715124,121.3092352,1.009711717,4.519480587,1.571826097,-1.571826097,0.261355596,0.261355596,0.169005276,1.456575086,46.84846172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.82882729,1.847259928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055283692,45.03252337,79.88411099,46.8797833,614.2067884,0,0.786072504,38.18001911,-0.786072504,141.8199809,0.986392636,0,685.733164,46.8797833,716.4150446,4,16,4% +2018-04-19 01:00:00,69.59239456,268.8218908,290.8853276,645.695885,65.73345892,473.4297506,407.4855815,65.94416908,63.75135261,2.19281647,72.51062175,0,72.51062175,1.982106317,70.52851543,1.214616419,4.691827096,2.544098188,-2.544098188,0.095087276,0.095087276,0.225977224,0.656917252,21.12871695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.28022502,1.436029279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.475934313,20.30972641,61.75615934,21.74575569,407.4855815,0,0.631079725,50.87017231,-0.631079725,129.1298277,0.970770708,0,457.3312257,21.74575569,471.5633879,4,17,3% +2018-04-19 02:00:00,81.33842699,277.8926117,81.40869639,323.4420109,32.69903283,174.7558443,142.4291148,32.32672948,31.71303634,0.613693141,20.72447744,0,20.72447744,0.985996486,19.73848096,1.419623359,4.85014104,5.80185021,-5.80185021,0,0,0.401665108,0.246499122,7.928259086,0.316015358,1,0.170681815,0,0.942743331,0.981505294,0.724496596,1,30.73804817,0.714351098,0.047020444,0.312029739,0.875326937,0.599823533,0.961238037,0.922476074,0.169317003,7.620944199,30.90736517,8.335295297,97.41932712,0,0.440354407,63.87350414,-0.440354407,116.1264959,0.936455093,0,122.1361902,8.335295297,127.5914743,4,18,4% +2018-04-19 03:00:00,92.98951632,287.0174144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62297323,5.009398892,-15.28890766,15.28890766,1,0,#DIV/0!,0,0,1,0.533736688,0,0.065313864,0.961238037,1,0.556033193,0.831536597,0,0,0.115824807,0.121227521,0.724496596,0.448993192,0.987560597,0.948798634,0,0,0,0,0,0,0.223707206,77.07313112,-0.223707206,102.9268689,0.826493566,0,0,0,0,4,19,0% +2018-04-19 04:00:00,103.9592232,296.9282763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814430734,5.182376063,-2.74734394,2.74734394,1,0.999977174,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-1.10129E-05,90.00063099,1.10129E-05,89.99936901,0,0,0,0,0,4,20,0% +2018-04-19 05:00:00,113.9238435,308.3754467,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988346165,5.382166877,-1.181936805,1.181936805,1,0.732276787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217135314,102.5408317,0.217135314,77.45916831,0,0.819728843,0,0,0,4,21,0% +2018-04-19 06:00:00,122.2639306,322.1256958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133908146,5.622153997,-0.486192344,0.486192344,1,0.613297477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412859179,114.384571,0.412859179,65.61542901,0,0.928893331,0,0,0,4,22,0% +2018-04-19 07:00:00,128.1246924,338.6570123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236197736,5.9106799,-0.029864322,0.029864322,1,0.53526079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573836702,125.0182064,0.573836702,54.98179364,0,0.962867198,0,0,0,4,23,0% +2018-04-20 08:00:00,130.578282,357.4352672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279020952,6.238422276,0.349850395,-0.349850395,1,0.470325748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68909176,133.5582568,0.68909176,46.44174324,0,0.977440723,0,0,0,4,0,0% +2018-04-20 09:00:00,129.1160148,16.52049738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253499576,0.288337073,0.731865035,-0.731865035,1,0.404997398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750765593,138.6567395,0.750765593,41.34326052,0,0.983401317,0,0,0,4,1,0% +2018-04-20 10:00:00,124.0505746,33.7383303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165090966,0.588844948,1.193151564,-1.193151564,1,0.326112755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754651919,138.9949645,0.754651919,41.00503545,0,0.983744288,0,0,0,4,2,0% +2018-04-20 11:00:00,116.2579676,48.17911287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029084316,0.84088415,1.8818486,-1.8818486,1,0.208338626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700483209,134.4657848,0.700483209,45.53421522,0,0.978620702,0,0,0,4,3,0% +2018-04-20 12:00:00,106.6403339,60.139118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861224941,1.049625618,3.296398897,-3.296398897,1,0,#DIV/0!,0,0,0.032473781,1,0.294537736,0,0.925213228,0.963975191,0.724496596,1,0,0,0.005469831,0.312029739,0.984606147,0.709102743,0.961238037,0.922476074,0,0,0,0,0,0,-0.591948643,126.2954121,0.591948643,53.70458794,0,0.965533213,0,0,0,4,4,0% +2018-04-20 13:00:00,95.8775385,70.35625176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673378726,1.227948243,9.713855104,-9.713855104,1,0,#DIV/0!,0,0,0.530739687,1,0.102584368,0,0.950936267,0.989698231,0.724496596,1,0,0,0.072518913,0.312029739,0.815019656,0.539516252,0.961238037,0.922476074,0,0,0,0,0,0,-0.436442527,115.8771197,0.436442527,64.1228803,0,0.935437379,0,0,0,4,5,0% +2018-04-20 14:00:00,84.28922321,79.591616,37.82965531,184.274272,19.49309219,19.19047946,0,19.19047946,18.90530354,0.285175921,54.36530595,44.60527939,9.760026557,0.587788651,9.172237906,1.471124469,1.389135756,-9.85988509,9.85988509,0,0,0.515286011,0.146947163,4.726325884,1,0.177829918,0,0.101075444,0.961238037,1,0.478133498,0.753636902,18.17249686,0.414181837,0.115824807,0.033171087,0.724496596,0.448993192,0.996942806,0.958180843,0.106462719,4.561253657,18.27895958,4.975435494,0,36.67312623,-0.242059181,104.0081068,0.242059181,75.99189317,0,0.843438944,18.27895958,35.90697837,41.77935878,4,6,129% +2018-04-20 15:00:00,72.60523011,88.56993611,235.3506332,588.3913581,59.44886818,59.43043795,0,59.43043795,57.65626547,1.774172485,75.60257538,16.74648686,58.85608852,1.792602719,57.0634858,1.26720032,1.545837003,-3.025834217,3.025834217,0.952398184,0.952398184,0.252597018,1.711051439,55.03329599,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.42139543,1.298734567,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.239650943,52.9000974,56.66104637,54.19883197,0,16.74648686,-0.028461477,91.63094273,0.028461477,88.36905727,0,0,56.66104637,54.19883197,92.13309792,4,7,63% +2018-04-20 16:00:00,60.80590679,98.09212606,448.964135,754.9830105,80.70632527,228.8441445,147.1869314,81.65721308,78.27273179,3.384481293,111.2901459,0,111.2901459,2.433593481,108.8565525,1.061263278,1.71203057,-1.578878176,1.578878176,0.80015776,0.80015776,0.179761186,2.829702662,91.01296466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.23872704,1.763130193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050109946,87.48512348,77.28883699,89.24825367,147.1869314,0,0.194953965,78.75796563,-0.194953965,101.2420344,0.793529197,0,194.0859644,89.24825367,252.4971615,4,8,30% +2018-04-20 17:00:00,49.30594684,109.2783057,639.2478496,834.9419216,94.84925817,440.773647,343.9655236,96.80812339,91.98920308,4.81892031,157.8530972,0,157.8530972,2.86005509,154.9930421,0.860551113,1.907266236,-0.900139959,0.900139959,0.684086688,0.684086688,0.148376343,3.522441605,113.2938303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.42352098,2.072100177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.551996952,108.9023391,90.97551793,110.9744392,343.9655236,0,0.411963413,65.67176686,-0.411963413,114.3282331,0.928629999,0,410.3922217,110.9744392,483.0227727,4,9,18% +2018-04-20 18:00:00,38.70566842,124.0150712,789.1205068,877.1702165,104.6044599,640.4038071,533.0048339,107.3989732,101.4502494,5.948723706,194.4856134,0,194.4856134,3.154210414,191.331403,0.675541353,2.164471314,-0.470829727,0.470829727,0.610670315,0.610670315,0.132558284,3.939715916,126.7148065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.51783861,2.285214708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85431077,121.8030919,100.3721494,124.0883066,533.0048339,0,0.607641281,52.58085307,-0.607641281,127.4191469,0.96771461,0,616.1687142,124.0883066,697.3820291,4,10,13% +2018-04-20 19:00:00,30.22715255,145.4312291,887.1416003,898.7480657,110.5906263,804.7368868,690.7933278,113.943559,107.2559109,6.687648114,218.4324674,0,218.4324674,3.334715419,215.097752,0.527563335,2.538253783,-0.146560494,0.146560494,0.55521701,0.55521701,0.124659498,4.083902165,131.3523319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0984612,2.415989969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.958773216,126.2608577,106.0572344,128.6768477,690.7933278,0,0.768617318,39.77011293,-0.768617318,140.2298871,0.984948122,0,786.4528254,128.6768477,870.6692486,4,11,11% +2018-04-20 20:00:00,26.19230422,175.6450546,926.1842023,906.3389337,112.9102683,917.6132163,801.1256415,116.4875748,109.5056071,6.981967739,227.968744,0,227.968744,3.404661183,224.5640828,0.457141947,3.065584517,0.132652605,-0.132652605,0.507468758,0.507468758,0.121909085,3.962355998,127.4429894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2609548,2.466665437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870713432,122.5030489,108.1316682,124.9697144,801.1256415,0,0.883913966,27.88183152,-0.883913966,152.1181685,0.993433409,0,903.9966451,124.9697144,985.7868238,4,12,9% +2018-04-20 21:00:00,28.60345731,207.4742768,903.4654518,901.9844748,111.564494,967.9992287,852.9881116,115.0111171,108.2004129,6.810704201,222.4197399,0,222.4197399,3.364081124,219.0556587,0.499224507,3.621109243,0.401868934,-0.401868934,0.461430054,0.461430054,0.123485069,3.595611856,115.6472371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0063525,2.437265322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60500855,111.1645232,106.611361,113.6017885,852.9881116,0,0.945679372,18.97168161,-0.945679372,161.0283184,0.997127957,0,957.1496545,113.6017885,1031.499753,4,13,8% +2018-04-20 22:00:00,36.16858042,231.2364684,820.6308472,884.5388084,106.556763,949.5934133,840.0634679,109.5299454,103.3436834,6.186261962,202.1845294,0,202.1845294,3.213079556,198.9714498,0.631260814,4.035837724,0.692195463,-0.692195463,0.411781294,0.411781294,0.129847377,3.019885329,97.12989298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33787937,2.327865201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.187896641,93.36494765,101.525776,95.69281285,840.0634679,0,0.949719176,18.24633145,-0.949719176,161.7536685,0.997352858,0,939.3654769,95.69281285,1001.994509,4,14,7% +2018-04-20 23:00:00,46.35775576,247.3972755,683.6986196,848.8876976,97.83598319,860.4599114,760.4200351,100.0398763,94.88586732,5.15400899,168.7207618,0,168.7207618,2.950115869,165.7706459,0.809095472,4.317897018,1.047472636,-1.047472636,0.351025319,0.351025319,0.143098114,2.287825276,73.58432523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.20790482,2.137348905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657521625,70.73205233,92.86542645,72.86940124,760.4200351,0,0.895784021,26.39068694,-0.895784021,153.6093131,0.994182974,0,848.8620784,72.86940124,896.5536441,4,15,6% +2018-04-20 00:00:00,57.6835472,259.3039798,502.9633396,781.8293647,85.0012321,701.9958161,615.7661347,86.22968144,82.43813133,3.791550107,124.5123856,0,124.5123856,2.563100769,121.9492848,1.006767823,4.525708211,1.560041616,-1.560041616,0.263370861,0.263370861,0.16900085,1.470597495,47.29947057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24266752,1.856957782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065442879,45.46605024,80.3081104,47.32300802,615.7661347,0,0.787596581,38.03852788,-0.787596581,141.9614721,0.986515722,0,687.7710836,47.32300802,718.7430459,4,16,5% +2018-04-20 01:00:00,69.43121319,269.1481573,293.6316305,647.280533,66.22148868,475.9363545,409.4981688,66.43818572,64.22466646,2.213519261,73.19121058,0,73.19121058,1.996822215,71.19438836,1.211803274,4.69752152,2.517426503,-2.517426503,0.099648403,0.099648403,0.225525733,0.670034177,21.55060235,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.73519231,1.446690897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48543748,20.7152587,62.22062979,22.16194959,409.4981688,0,0.632644036,50.75453477,-0.632644036,129.2454652,0.970966614,0,459.8296803,22.16194959,474.3342331,4,17,3% +2018-04-20 02:00:00,81.1746731,278.1995322,83.91583812,329.170248,33.41366451,178.5406252,145.5019129,33.03871227,32.40611924,0.632593034,21.35391176,0,21.35391176,1.007545268,20.3463665,1.416765315,4.855497814,5.676301257,-5.676301257,0,0,0.398180668,0.251886317,8.101529809,0.305821173,1,0.1743817,0,0.94226812,0.981030083,0.724496596,1,31.4072283,0.729963117,0.045696073,0.312029739,0.87860019,0.603096786,0.961238037,0.922476074,0.173134453,7.787498609,31.58036275,8.517461726,101.0043472,0,0.442026319,63.76676013,-0.442026319,116.2332399,0.936884563,0,126.2097765,8.517461726,131.7842849,4,18,4% +2018-04-20 03:00:00,92.81056066,287.3133188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619849864,5.014563399,-16.20055576,16.20055576,1,0,#DIV/0!,0,0,1,0.56533303,0,0.061648061,0.961238037,1,0.564595367,0.840098771,0,0,0.115824807,0.13089251,0.724496596,0.448993192,0.986420923,0.94765896,0,0,0,0,0,0,0.225615796,76.96090818,-0.225615796,103.0390918,0.828384311,0,0,0,0,4,19,0% +2018-04-20 04:00:00,103.7576837,297.2171152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810913204,5.187417253,-2.774140176,2.774140176,1,0.9954404,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.002168693,89.87574295,-0.002168693,90.12425705,0,0,0,0,0,4,20,0% +2018-04-20 05:00:00,113.6907258,308.6537133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984277494,5.387023546,-1.185591063,1.185591063,1,0.732901702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.214639955,102.3944051,0.214639955,77.60559486,0,0.817051759,0,0,0,4,21,0% +2018-04-20 06:00:00,121.9919436,322.3764155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129161077,5.626529882,-0.484672475,0.484672475,1,0.613037564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410025408,114.2064309,0.410025408,65.79356909,0,0.928056337,0,0,0,4,22,0% +2018-04-20 07:00:00,127.8130805,338.8445457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230759082,5.913952976,-0.025984457,0.025984457,1,0.534597293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570665097,124.796618,0.570665097,55.20338198,0,0.962382937,0,0,0,4,23,0% +2018-04-21 08:00:00,130.2392028,357.5171214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.273102904,6.239850901,0.355680565,-0.355680565,1,0.469328731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685606201,133.2833001,0.685606201,46.71669991,0,0.977071838,0,0,0,4,0,0% +2018-04-21 09:00:00,128.7726429,16.48287925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247506605,0.287680513,0.740235045,-0.740235045,1,0.403566042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.747011618,138.3321739,0.747011618,41.66782613,0,0.983066637,0,0,0,4,1,0% +2018-04-21 10:00:00,123.7233324,33.60873303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159379512,0.586583049,1.205958761,-1.205958761,1,0.323922595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750693601,138.6504955,0.750693601,41.34950451,0,0.98339493,0,0,0,4,2,0% +2018-04-21 11:00:00,115.9554473,47.99597453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023804341,0.837687783,1.904712283,-1.904712283,1,0.204428706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69639875,134.1387845,0.69639875,45.86121545,0,0.978202054,0,0,0,4,3,0% +2018-04-21 12:00:00,106.3618114,59.92821687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856363808,1.045944699,3.353598779,-3.353598779,1,0,#DIV/0!,0,0,0.041544703,1,0.289792784,0,0.925944876,0.964706839,0.724496596,1,0,0,0.006968427,0.312029739,0.980429362,0.704925958,0.961238037,0.922476074,0,0,0,0,0,0,-0.587825007,126.0028155,0.587825007,53.99718445,0,0.964940672,0,0,0,4,4,0% +2018-04-21 13:00:00,95.61808164,70.12916745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668850349,1.223984874,10.16572828,-10.16572828,1,0,#DIV/0!,0,0,0.547160563,1,0.09805427,0,0.951443545,0.990205509,0.724496596,1,0,0,0.074297284,0.312029739,0.811006575,0.535503171,0.961238037,0.922476074,0,0,0,0,0,0,-0.432369466,115.6180267,0.432369466,64.38197332,0,0.934358162,0,0,0,4,5,0% +2018-04-21 14:00:00,84.04741901,79.35090973,40.92207666,195.2312167,20.67555628,20.36059988,0,20.36059988,20.05211198,0.308487899,57.05042954,46.50495397,10.54547557,0.623444307,9.922031264,1.46690419,1.384934639,-9.463267914,9.463267914,0,0,0.505242108,0.155861077,5.013027994,1,0.129274684,0,0.105281027,0.961238037,1,0.469646053,0.745149457,19.27485275,0.442354834,0.115824807,0.02353254,0.724496596,0.448993192,0.997858413,0.95909645,0.112920819,4.833097339,19.38777357,5.275452173,0,40.49304074,-0.238204498,103.7805926,0.238204498,76.21940742,0,0.840096323,19.38777357,39.29350681,45.10458791,4,6,133% +2018-04-21 15:00:00,72.36470427,88.31322909,239.5655961,592.2216102,60.14789939,60.14016496,0,60.14016496,58.3342183,1.805946656,74.55775839,14.65862493,59.89913346,1.813681089,58.08545237,1.263002352,1.541356621,-2.986355484,2.986355484,0.959149445,0.959149445,0.251070689,1.750695203,56.30837571,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.07306948,1.314005775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.268372715,54.12575253,57.34144219,55.4397583,0,14.65862493,-0.024751925,91.41832569,0.024751925,88.58167431,0,0,57.34144219,55.4397583,93.62565521,4,7,63% +2018-04-21 16:00:00,60.56204667,97.81490018,453.0010743,756.3523474,81.26845748,232.2889343,150.0561072,82.23282708,78.81791364,3.414913447,112.285899,0,112.285899,2.450543842,109.8353551,1.057007116,1.707192066,-1.567234722,1.567234722,0.798166612,0.798166612,0.179400143,2.849320287,91.64393489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.76277657,1.775410671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064322848,88.09163606,77.82709942,89.86704673,150.0561072,0,0.198394449,78.55691354,-0.198394449,101.4430865,0.79797682,0,197.5683946,89.86704673,256.3845794,4,8,30% +2018-04-21 17:00:00,49.04831643,108.9784684,642.9623823,835.4904436,95.36326089,444.13503,346.8004012,97.33462875,92.48770672,4.846922026,158.7692277,0,158.7692277,2.875554169,155.8936736,0.856054614,1.902033088,-0.89580071,0.89580071,0.683344633,0.683344633,0.14831857,3.53975807,113.8507874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90270164,2.083329207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564542672,109.4377073,91.46724432,111.5210365,346.8004012,0,0.415086018,65.47526645,-0.415086018,114.5247336,0.92954304,0,413.8331434,111.5210365,486.8214314,4,9,18% +2018-04-21 18:00:00,38.42040567,123.7089991,792.4962606,877.3817982,105.0920233,643.4714541,535.5741715,107.8972826,101.923111,5.974171564,195.3188058,0,195.3188058,3.168912249,192.1498936,0.670562579,2.159129348,-0.469466848,0.469466848,0.610437249,0.610437249,0.132608857,3.955479398,127.2218143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97237113,2.295866137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865731359,122.290447,100.8381025,124.5863132,535.5741715,0,0.610423162,52.37989338,-0.610423162,127.6201066,0.968089609,0,619.3218927,124.5863132,700.8611429,4,10,13% +2018-04-21 19:00:00,29.90287649,145.2077586,890.2063136,898.8031203,111.0593053,807.4521684,693.0309597,114.4212087,107.7104575,6.710751216,219.189675,0,219.189675,3.34884782,215.8408272,0.521903651,2.534353487,-0.146829598,0.146829598,0.55526303,0.55526303,0.124756816,4.09857116,131.8241373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5353887,2.426228846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.969400854,126.7143749,106.5047895,129.1406038,693.0309597,0,0.771059806,39.55084586,-0.771059806,140.4491541,0.985154187,0,789.2471412,129.1406038,873.7670836,4,11,11% +2018-04-21 20:00:00,25.85058292,175.7103126,928.992883,906.3203328,113.3642358,919.9868021,803.0377755,116.9490266,109.9458858,7.00314076,228.66343,0,228.66343,3.41834998,225.24508,0.451177785,3.066723484,0.131192168,-0.131192168,0.507718508,0.507718508,0.122029176,3.976321782,127.892177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6841675,2.476582924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.880831595,122.9348252,108.5649991,125.4114081,803.0377755,0,0.886041884,27.61999013,-0.886041884,152.3800099,0.993569259,0,906.4386467,125.4114081,988.517905,4,12,9% +2018-04-21 21:00:00,28.30740059,207.8368516,906.0925335,901.9431053,112.0072927,970.086777,854.6264093,115.4603678,108.6298595,6.830508253,223.0700583,0,223.0700583,3.377433137,219.6926251,0.494057343,3.627437368,0.399238232,-0.399238232,0.461879931,0.461879931,0.123615733,3.609240818,116.0855914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4191529,2.44693881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614882687,111.585886,107.0340356,114.0328248,854.6264093,0,0.947539157,18.64113772,-0.947539157,161.3588623,0.997231732,0,959.2946101,114.0328248,1033.926813,4,13,8% +2018-04-21 22:00:00,35.93664192,231.6649686,823.1632235,884.5259128,106.9922441,951.487757,841.5163718,109.9713852,103.7660331,6.205352084,202.8116647,0,202.8116647,3.226210918,199.5854538,0.627212724,4.043316463,0.688055912,-0.688055912,0.412489199,0.412489199,0.129976949,3.03349915,97.56776024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74385799,2.337378827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.197759808,93.78584231,101.9416178,96.12322114,841.5163718,0,0.951375601,17.94074323,-0.951375601,162.0592568,0.997444521,0,941.3075126,96.12322114,1004.218238,4,14,7% +2018-04-21 23:00:00,46.1687899,247.7925788,686.2275629,848.9927652,98.26931593,862.2936978,761.8144911,100.4792067,95.30613348,5.173073233,169.3469999,0,169.3469999,2.96318245,166.3838175,0.805797395,4.324796362,1.040880976,-1.040880976,0.352152559,0.352152559,0.143202228,2.30163352,74.02844581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.61188065,2.146815598,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66752565,71.15895792,93.2794063,73.30577352,761.8144911,0,0.897315646,26.19256613,-0.897315646,153.8074339,0.994278248,0,850.7349837,73.30577352,898.7121464,4,15,6% +2018-04-21 00:00:00,57.51640602,259.6577675,505.5719309,782.2788425,85.44274963,703.9660126,617.2884624,86.67755025,82.86633548,3.81121477,125.1581821,0,125.1581821,2.576414151,122.581768,1.003850659,4.531882971,1.548417278,-1.548417278,0.26535874,0.26535874,0.169002163,1.484524183,47.74740076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65427363,1.866603282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075532717,45.89661777,80.72980635,47.76322105,617.2884624,0,0.789090065,37.89944225,-0.789090065,142.1005577,0.986635877,0,689.7687497,47.76322105,721.0288226,4,16,5% +2018-04-21 01:00:00,69.2710833,269.471167,296.3567724,648.8261892,66.70674799,478.4063743,411.4770183,66.92935595,64.69529342,2.234062532,73.86658514,0,73.86658514,2.011454574,71.85513057,1.20900848,4.703159103,2.49126932,-2.49126932,0.104121545,0.104121545,0.225089332,0.683118746,21.97144707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.18757684,1.457291991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.494917206,21.11979065,62.68249405,22.57708264,411.4770183,0,0.634186821,50.64030144,-0.634186821,129.3596986,0.971158879,0,462.2920538,22.57708264,477.0683029,4,17,3% +2018-04-21 02:00:00,81.01160815,278.5029919,86.42576003,334.779349,34.12172411,182.2812437,148.5369016,33.74434212,33.09282823,0.651513885,21.983822,0,21.983822,1.028895878,20.95492612,1.413919295,4.860794186,5.555760349,-5.555760349,0,0,0.39480965,0.257223969,8.273207058,0.295743544,1,0.178086511,0,0.941789214,0.980551178,0.724496596,1,32.06984874,0.745431561,0.044375736,0.312029739,0.881877287,0.606373882,0.961238037,0.922476074,0.176932082,7.952521311,32.24678082,8.697952872,104.6080718,0,0.443685974,63.66070162,-0.443685974,116.3392984,0.937307684,0,130.2967304,8.697952872,135.9893666,4,18,4% +2018-04-21 03:00:00,92.63220642,287.605464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616736995,5.019662294,-17.23253168,17.23253168,1,0,#DIV/0!,0,0,1,0.596300525,0,0.057964772,0.961238037,1,0.573305992,0.848809396,0,0,0.115824807,0.140726684,0.724496596,0.448993192,0.985239377,0.946477414,0,0,0,0,0,0,0.227518306,76.84899205,-0.227518306,103.151008,0.830237464,0,0,0,0,4,19,0% +2018-04-21 04:00:00,103.5567766,297.5017503,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807406715,5.192385073,-2.80170826,2.80170826,1,0.99072598,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004347824,89.75088726,-0.004347824,90.24911274,0,0,0,0,0,4,20,0% +2018-04-21 05:00:00,113.4585047,308.9272089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980224471,5.391796944,-1.189364831,1.189364831,1,0.733547055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212141736,102.2478931,0.212141736,77.75210695,0,0.814308519,0,0,0,4,21,0% +2018-04-21 06:00:00,121.721418,322.6219012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124439515,5.630814415,-0.483193572,0.483193572,1,0.612784657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407187648,114.0282892,0.407187648,65.97171077,0,0.927206491,0,0,0,4,22,0% +2018-04-21 07:00:00,127.5037757,339.0271087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225360695,5.917139301,-0.022124888,0.022124888,1,0.533937268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56749076,124.5754335,0.56749076,55.42456646,0,0.961892839,0,0,0,4,23,0% +2018-04-22 08:00:00,129.903276,357.5956358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.267239875,6.241221235,0.361501492,-0.361501492,1,0.468333294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682121467,133.0096452,0.682121467,46.99035478,0,0.976699272,0,0,0,4,0,0% +2018-04-22 09:00:00,128.4328676,16.44430676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241576408,0.287007296,0.748610791,-0.748610791,1,0.402133705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743264081,138.0102126,0.743264081,41.98978744,0,0.982729159,0,0,0,4,1,0% +2018-04-22 10:00:00,123.3997088,33.47991047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153731215,0.584334671,1.218810022,-1.218810022,1,0.3217249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746749002,138.3095457,0.746749002,41.69045426,0,0.983043098,0,0,0,4,2,0% +2018-04-22 11:00:00,115.656426,47.81433058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018585434,0.834517498,1.927763787,-1.927763787,1,0.200486666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692336462,133.8153458,0.692336462,46.18465419,0,0.977780779,0,0,0,4,3,0% +2018-04-22 12:00:00,106.0867153,59.71893982,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851562474,1.042292126,3.411923221,-3.411923221,1,0,#DIV/0!,0,0,0.050620484,1,0.285105195,0,0.926663104,0.965425067,0.724496596,1,0,0,0.008455307,0.312029739,0.976302564,0.70079916,0.961238037,0.922476074,0,0,0,0,0,0,-0.583732581,125.713503,0.583732581,54.28649699,0,0.964344339,0,0,0,4,4,0% +2018-04-22 13:00:00,95.3620745,69.90359612,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664382182,1.220047911,10.6541469,-10.6541469,1,0,#DIV/0!,0,0,0.563664175,1,0.093585987,0,0.951939229,0.990701192,0.724496596,1,0,0,0.07606229,0.312029739,0.807048607,0.531545203,0.961238037,0.922476074,0,0,0,0,0,0,-0.428336617,115.3620439,0.428336617,64.63795606,0,0.933269377,0,0,0,4,5,0% +2018-04-22 14:00:00,83.8088152,79.11150083,44.04513536,205.9213056,21.83726385,21.51082061,0,21.51082061,21.17878977,0.332030835,59.60412473,48.26639765,11.33772708,0.658474076,10.679253,1.462739767,1.380756166,-9.10204885,9.10204885,0,0,0.495792865,0.164618519,5.294697443,1,0.079779201,0,0.109426508,0.961238037,1,0.46141917,0.736922574,20.3578583,0.470771519,0.115824807,0.014173409,0.724496596,0.448993192,0.998726135,0.959964172,0.119265557,5.099093161,20.47712386,5.569864679,0,44.41574302,-0.234392442,103.555812,0.234392442,76.44418798,0,0.836682541,20.47712386,42.73174143,48.44419399,4,6,137% +2018-04-22 15:00:00,72.1279127,88.05749995,243.7117138,595.8977385,60.83487249,60.83767847,0,60.83767847,59.00047663,1.837201843,73.49711835,12.57199588,60.92512248,1.834395862,59.09072661,1.258869559,1.536893305,-2.94847639,2.94847639,0.965627152,0.965627152,0.249618172,1.789815335,57.56661364,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.71350233,1.329013558,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.296715118,55.33521868,58.01021745,56.66423224,0,12.57199588,-0.021097573,91.20889157,0.021097573,88.79110843,0,0,58.01021745,56.66423224,95.09582416,4,7,64% +2018-04-22 16:00:00,60.32220638,97.53812257,456.9585676,757.6616676,81.82362871,235.6775146,152.8764235,82.80109111,79.3563444,3.444746703,113.2621795,0,113.2621795,2.467284303,110.7948952,1.052821113,1.702361385,-1.55595748,1.55595748,0.79623809,0.79623809,0.179061373,2.868523175,92.26156578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.28033671,1.787539078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.078235275,88.68532637,78.35857198,90.47286545,152.8764235,0,0.201773998,78.35928321,-0.201773998,101.6407168,0.802198001,0,200.9957333,90.47286545,260.2084143,4,8,29% +2018-04-22 17:00:00,48.79500325,108.6780799,646.5956964,836.0072224,95.87169541,447.4267726,349.571651,97.85512154,92.98081006,4.874311482,159.665498,0,159.665498,2.890885345,156.7746126,0.851633465,1.89679032,-0.891594746,0.891594746,0.682625371,0.682625371,0.148271472,3.5567021,114.3957656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37669133,2.094436592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.576818564,109.9615612,91.95350989,112.0559978,349.571651,0,0.418144295,65.28251557,-0.418144295,114.7174844,0.930424053,0,417.2033824,112.0559978,490.5417918,4,9,18% +2018-04-22 18:00:00,38.13963571,123.4004845,795.7926912,877.5728195,105.5746616,646.4649363,538.0747188,108.3902174,102.391196,5.99902145,196.1326169,0,196.1326169,3.183465575,192.9491513,0.665662219,2.153744754,-0.468161083,0.468161083,0.61021395,0.61021395,0.132666036,3.970904193,127.7179287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.42231222,2.306409972,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87690657,122.7673311,101.2992188,125.0737411,538.0747188,0,0.613139681,52.18312976,-0.613139681,127.8168702,0.968452513,0,622.3990326,125.0737411,704.2572947,4,10,13% +2018-04-22 19:00:00,29.58277789,144.9796561,893.1962823,898.8428884,111.5235323,810.0934833,695.1995061,114.8939772,108.1606863,6.733290864,219.9286257,0,219.9286257,3.362845976,216.5657797,0.516316876,2.530372348,-0.147121484,0.147121484,0.555312945,0.555312945,0.12485893,4.112937098,132.2861952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9681658,2.436370462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.979808927,127.1585226,106.9479747,129.594893,695.1995061,0,0.773438289,39.33634372,-0.773438289,140.6636563,0.985353601,0,791.9653117,129.594893,876.7825773,4,11,11% +2018-04-22 20:00:00,25.51231615,175.7733775,931.7335383,906.2891235,113.8142003,922.2900091,804.8839259,117.4060832,110.3822823,7.023800978,229.3415017,0,229.3415017,3.43191807,225.9095836,0.445273917,3.067824174,0.129729482,-0.129729482,0.507968642,0.507968642,0.122153165,3.990023469,128.3328704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1036483,2.486412959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890758421,123.3584364,108.9944067,125.8448493,804.8839259,0,0.88810944,27.36336701,-0.88810944,152.636633,0.993700632,0,908.8080727,125.8448493,991.1710097,4,12,9% +2018-04-22 21:00:00,28.01468657,208.2000977,908.659908,901.8903583,112.446546,972.1101541,856.2044241,115.9057299,109.0558677,6.849862206,223.705793,0,223.705793,3.390678245,220.3151148,0.48894852,3.633777208,0.396622369,-0.396622369,0.46232727,0.46232727,0.123749871,3.6226469,116.5167771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8286482,2.456534846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.624595347,112.0003581,107.4532436,114.4568929,856.2044241,0,0.949344248,18.31481656,-0.949344248,161.6851834,0.997332066,0,961.373371,114.4568929,1036.283118,4,13,8% +2018-04-22 22:00:00,35.70762616,232.0921858,825.6452113,884.5017236,107.4246379,953.3260032,842.9165521,110.4094511,104.1853887,6.224062356,203.4264896,0,203.4264896,3.239249188,200.1872405,0.623215645,4.050772811,0.683951887,-0.683951887,0.413191028,0.413191028,0.130109927,3.046931847,97.99980196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1469585,2.34682501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.207491751,94.20113724,102.3544503,96.54796225,842.9165521,0,0.952984635,17.63899914,-0.952984635,162.3610009,0.997533257,0,943.1917438,96.54796225,1006.380454,4,14,7% +2018-04-22 23:00:00,45.98200607,248.1852033,688.7158161,849.0850607,98.69998292,864.0803509,763.1647059,100.915645,95.72381427,5.191830737,169.9632919,0,169.9632919,2.976168649,166.9871233,0.802537403,4.331648952,1.034360626,-1.034360626,0.353267605,0.353267605,0.143310173,2.315301779,74.46806401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.01337131,2.156224055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.677428257,71.58153566,93.69079957,73.73775971,763.1647059,0,0.898808307,25.99813604,-0.898808307,154.001864,0.994370786,0,852.5594877,73.73775971,900.8193767,4,15,6% +2018-04-22 00:00:00,57.35079807,260.0083801,508.1493934,782.7102594,85.88188099,705.8972545,618.7743844,87.12287017,83.2922254,3.83064477,125.7963592,0,125.7963592,2.589655582,123.2067036,1.000960255,4.538002315,1.536951798,-1.536951798,0.267319452,0.267319452,0.169009118,1.49835343,48.19219686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.06365523,1.876196654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085551959,46.32417271,81.14920719,48.20036936,618.7743844,0,0.790553563,37.76272706,-0.790553563,142.2372729,0.986753179,0,691.7267978,48.20036936,723.2729755,4,16,5% +2018-04-22 01:00:00,69.11201529,269.7907992,299.0605396,650.3335907,67.18924668,480.8403267,413.422639,67.41768766,65.16324299,2.254444671,74.53669392,0,74.53669392,2.026003689,72.51069023,1.20623222,4.708737738,2.465616948,-2.465616948,0.108508359,0.108508359,0.22466771,0.696167429,22.39113759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.63738777,1.467832776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.504370933,21.52321314,63.1417587,22.99104592,413.422639,0,0.635708573,50.52744215,-0.635708573,129.4725579,0.971347608,0,464.7188502,22.99104592,479.7660299,4,17,3% +2018-04-22 02:00:00,80.84925814,278.8028859,88.93723101,340.2703743,34.82319254,185.977429,151.5338378,34.44359121,33.7731448,0.670446415,22.61390908,0,22.61390908,1.050047739,21.56386134,1.411085752,4.866028323,5.439959968,-5.439959968,0,0,0.391547973,0.262511935,8.4432862,0.285782776,1,0.181795297,0,0.941306732,0.980068695,0.724496596,1,32.7258799,0.760756012,0.043059724,0.312029739,0.88515737,0.609653966,0.961238037,0.922476074,0.18071009,8.116007851,32.90658999,8.876763864,108.2280769,0,0.445333621,63.5553143,-0.445333621,116.4446857,0.937724623,0,134.3947227,8.876763864,140.2043871,4,18,4% +2018-04-22 03:00:00,92.45449292,287.8937567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363531,5.02469395,-18.41005926,18.41005926,1,0,#DIV/0!,0,0,1,0.62665103,0,0.054264804,0.961238037,1,0.582164542,0.857667947,0,0,0.115824807,0.150730309,0.724496596,0.448993192,0.984014903,0.94525294,0,0,0,0,0,0,0.229414755,76.73738163,-0.229414755,103.2626184,0.832054123,0,0,0,0,4,19,0% +2018-04-22 04:00:00,103.3565602,297.7821013,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80391228,5.197278121,-2.830075203,2.830075203,1,0.985874947,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006526066,89.62608133,-0.006526066,90.37391867,0,0,0,0,0,4,20,0% +2018-04-22 05:00:00,113.2272584,309.1958732,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976188461,5.396486021,-1.1932617,1.1932617,1,0.734213458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.209641336,102.1013345,0.209641336,77.89866552,0,0.811497418,0,0,0,4,21,0% +2018-04-22 06:00:00,121.4524492,322.8621254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119745122,5.635007118,-0.481758125,0.481758125,1,0.612539181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.404346953,113.8502103,0.404346953,66.14978969,0,0.926343819,0,0,0,4,22,0% +2018-04-22 07:00:00,127.1968815,339.2047075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22000438,5.920238983,-0.018288328,0.018288328,1,0.533281178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564315104,124.3547444,0.564315104,55.64525557,0,0.96139702,0,0,0,4,23,0% +2018-04-23 08:00:00,129.5706044,357.6708191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26143366,6.242533432,0.367309824,-0.367309824,1,0.46734001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678639288,132.7374035,0.678639288,47.2625965,0,0.976323157,0,0,0,4,0,0% +2018-04-23 09:00:00,128.0967924,16.40476313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235710789,0.28631713,0.756987766,-0.756987766,1,0.400701157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739524966,137.6909657,0.739524966,42.30903429,0,0.98238903,0,0,0,4,1,0% +2018-04-23 10:00:00,123.0798115,33.35183782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148147953,0.582099381,1.231698727,-1.231698727,1,0.319520802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742820282,137.9722177,0.742820282,42.0277823,0,0.982688968,0,0,0,4,2,0% +2018-04-23 11:00:00,115.3610123,47.63417185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013429494,0.831373135,1.950992867,-1.950992867,1,0.19651426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688298583,133.4955774,0.688298583,46.50442255,0,0.977357107,0,0,0,4,3,0% +2018-04-23 12:00:00,105.815151,59.51129944,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846822783,1.038668117,3.471372133,-3.471372133,1,0,#DIV/0!,0,0,0.05969605,1,0.280476712,0,0.927367799,0.966129762,0.724496596,1,0,0,0.00992978,0.312029739,0.97222726,0.696723856,0.961238037,0.922476074,0,0,0,0,0,0,-0.579673585,125.4275876,0.579673585,54.57241237,0,0.96374456,0,0,0,4,4,0% +2018-04-23 13:00:00,95.10961712,69.67957021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659975969,1.216137922,11.18340428,-11.18340428,1,0,#DIV/0!,0,0,0.580241299,1,0.08918103,0,0.952423335,0.991185298,0.724496596,1,0,0,0.077813037,0.312029739,0.803147186,0.527643782,0.961238037,0.922476074,0,0,0,0,0,0,-0.42434609,115.10928,0.42434609,64.89071997,0,0.932171649,0,0,0,4,5,0% +2018-04-23 14:00:00,83.57354073,78.87343954,47.18949737,216.3256714,22.97663144,22.63953559,0,22.63953559,22.28380123,0.355734364,62.02468236,49.89021217,12.13447019,0.692830213,11.44163998,1.458633453,1.376601212,-8.771928316,8.771928316,0,0,0.486901381,0.173207553,5.570950307,1,0.029354061,0,0.113509987,0.961238037,1,0.453450649,0.728954053,21.42003735,0.499438374,0.115824807,0.005089997,0.724496596,0.448993192,0.999548112,0.960786149,0.125488283,5.358830636,21.54552563,5.858269011,0,48.42573186,-0.230625482,103.3338993,0.230625482,76.66610075,0,0.833198285,21.54552563,46.20650574,51.7867595,4,6,140% +2018-04-23 15:00:00,71.89494629,87.80281653,247.787016,599.423889,61.50988788,61.52306101,0,61.52306101,59.65513782,1.867923192,72.42353839,10.48995751,61.93358088,1.854750067,60.07883081,1.254803528,1.532448241,-2.912127714,2.912127714,0.971843141,0.971843141,0.248236929,1.828384327,58.80712499,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.34278756,1.34376011,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.324658221,56.52764538,58.66744578,57.87140549,0,10.48995751,-0.017500066,91.0027311,0.017500066,88.9972689,0,0,58.66744578,57.87140549,96.54312325,4,7,65% +2018-04-23 16:00:00,60.08647449,97.26187972,460.8354088,758.9119659,82.37180217,239.0082154,155.646255,83.36196039,79.88798842,3.473971969,114.218694,0,114.218694,2.483813755,111.7348802,1.048706816,1.697540038,-1.545038936,1.545038936,0.794370909,0.794370909,0.178744516,2.887308361,92.86576196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79137315,1.79951461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.091845079,89.26610272,78.88321823,91.06561733,155.646255,0,0.205091318,78.16515526,-0.205091318,101.8348447,0.806206159,0,204.3661877,91.06561733,263.9668129,4,8,29% +2018-04-23 17:00:00,48.54610037,108.3772419,650.1470349,836.4926068,96.37452349,450.6478186,352.2782597,98.36955899,93.46847602,4.901082972,160.5417232,0,160.5417232,2.906047467,157.6356757,0.847289291,1.891539705,-0.887521021,0.887521021,0.681928723,0.681928723,0.148234966,3.57327181,114.9287044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.8454544,2.105421497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588823262,110.4738422,92.43427766,112.5792637,352.2782597,0,0.421137326,65.09358752,-0.421137326,114.9064125,0.931273882,0,420.50182,112.5792637,494.1826965,4,9,18% +2018-04-23 18:00:00,37.86346508,123.0896112,799.0094253,877.7434662,106.0523526,649.3836666,540.5059131,108.8777535,102.8544829,6.023270551,196.9269555,0,196.9269555,3.197869724,193.7290858,0.660842132,2.14831899,-0.466912534,0.466912534,0.610000435,0.610000435,0.132729789,3.985989609,128.2031276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86764124,2.316845729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887835903,123.2337227,101.7554771,125.5505684,540.5059131,0,0.615790301,51.99063258,-0.615790301,128.0093674,0.968803528,0,625.3995126,125.5505684,707.5698486,4,10,13% +2018-04-23 19:00:00,29.26697555,144.7468724,896.1114552,898.8675126,111.9833016,812.6606642,697.2988057,115.3618585,108.6065919,6.755266668,220.6493069,0,220.6493069,3.376709717,217.2725971,0.510805085,2.526309505,-0.147436461,0.147436461,0.555366809,0.555366809,0.124965819,4.1270002,132.7385129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3967871,2.446414695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989997596,127.5933076,107.3867847,130.0397222,697.2988057,0,0.775752595,39.12668464,-0.775752595,140.8733154,0.985546461,0,794.607155,130.0397222,879.7155525,4,11,11% +2018-04-23 20:00:00,25.17759907,175.8340627,934.4063609,906.2454442,114.2601695,924.5230344,806.6642807,117.8587537,110.8148038,7.043949843,230.0030061,0,230.0030061,3.445365686,226.5576404,0.439432001,3.068883331,0.128264245,-0.128264245,0.508219212,0.508219212,0.122281027,4.003461801,128.7650933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5194045,2.496155711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900494446,123.7739055,109.4198989,126.2700612,806.6642807,0,0.890116784,27.11207437,-0.890116784,152.8879256,0.993827596,0,911.1051215,126.2700612,993.7463512,4,12,9% +2018-04-23 21:00:00,27.72536829,208.5637819,911.1679184,901.8263865,112.8822706,974.0698435,857.7226211,116.3472223,109.4784537,6.868768648,224.3270279,0,224.3270279,3.403816951,220.923211,0.483898963,3.640124694,0.394021091,-0.394021091,0.462772115,0.462772115,0.123887451,3.635830937,116.940821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2348539,2.466053794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634147137,112.4079652,107.869001,114.874019,857.7226211,0,0.95109506,17.99285213,-0.95109506,162.0071479,0.997429019,0,963.3864339,114.874019,1038.569182,4,13,8% +2018-04-23 22:00:00,35.48154529,232.5178751,828.0772008,884.4664231,107.8539654,955.1088236,844.2646575,110.8441662,104.6017704,6.242395721,204.0290995,0,204.0290995,3.252194997,200.7769045,0.619269789,4.058202491,0.679883153,-0.679883153,0.413886823,0.413886823,0.130246269,3.060183917,98.4260341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5472005,2.356204204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.217092831,94.61084779,102.7642933,96.96705199,844.2646575,0,0.954546872,17.34117035,-0.954546872,162.6588297,0.997619125,0,945.0188625,96.96705199,1008.481859,4,14,7% +2018-04-23 23:00:00,45.79740001,248.5749581,691.1637089,849.1648207,99.12800458,865.8206177,764.4714042,101.3492135,96.1389295,5.210283986,170.5697183,0,170.5697183,2.989075081,167.5806432,0.799315419,4.338451456,1.027911192,-1.027911192,0.354370523,0.354370523,0.143421889,2.328829807,74.90317188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.41239586,2.165574721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687229267,71.99977789,94.09962512,74.16535262,764.4714042,0,0.900262688,25.80738207,-0.900262688,154.1926179,0.994460655,0,854.3363585,74.16535262,902.8760985,4,15,6% +2018-04-23 00:00:00,57.18672012,260.3556699,510.6958886,783.1239726,86.3186426,707.7902499,620.2245915,87.56565837,83.71581704,3.849841327,126.4269564,0,126.4269564,2.602825556,123.8241308,0.998096554,4.544063667,1.525643741,-1.525643741,0.269253244,0.269253244,0.169021613,1.51208385,48.63381436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47082763,1.885738255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095499602,46.74867224,81.56632723,48.63441049,620.2245915,0,0.791987748,37.62834042,-0.791987748,142.3716596,0.98686771,0,693.6459497,48.63441049,725.4761987,4,16,5% +2018-04-23 01:00:00,68.95401514,270.1069326,301.742802,651.803522,67.66900245,483.2388237,415.3356266,67.90319705,65.62853235,2.274664698,75.20150589,0,75.20150589,2.040470096,73.1610358,1.203474597,4.714255306,2.440459612,-2.440459612,0.112810516,0.112810516,0.224260536,0.709177002,22.80957017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.0846416,1.478313638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.513796324,21.92542645,63.59843792,23.40374009,415.3356266,0,0.637209853,50.41592147,-0.637209853,129.5840785,0.971532915,0,467.1106698,23.40374009,482.4279496,4,17,3% +2018-04-23 02:00:00,80.68764492,279.0991089,91.4491236,345.6446495,35.51807476,189.6290988,154.492643,35.13645588,34.44707376,0.689382122,23.24389978,0,23.24389978,1.071001002,22.17289878,1.40826507,4.871198389,5.32864986,-5.32864986,0,0,0.388391636,0.26775025,8.61176844,0.275938999,1,0.185507146,0,0.94082079,0.979582753,0.724496596,1,33.37531561,0.77593658,0.041748307,0.312029739,0.88843962,0.612936216,0.961238037,0.922476074,0.184468771,8.277959389,33.55978438,9.053895969,111.8620977,0,0.446969577,63.45057922,-0.446969577,116.5494208,0.938135563,0,138.5015964,9.053895969,144.4271902,4,18,4% +2018-04-23 03:00:00,92.27745568,288.1781032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610545427,5.029656733,-19.76596002,19.76596002,1,0,#DIV/0!,0,0,1,0.656396581,0,0.05054893,0.961238037,1,0.591170479,0.866673883,0,0,0.115824807,0.160903582,0.724496596,0.448993192,0.982746444,0.943984481,0,0,0,0,0,0,0.231305229,76.62607178,-0.231305229,103.3739282,0.83383541,0,0,0,0,4,19,0% +2018-04-23 04:00:00,103.157089,298.0580874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80043085,5.202094988,-2.859269794,2.859269794,1,0.980882378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00870317,89.50133882,-0.00870317,90.49866118,0,0,0,0,0,4,20,0% +2018-04-23 05:00:00,112.9970612,309.4596459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972170762,5.401089722,-1.19728556,1.19728556,1,0.734901579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.207139377,101.9547649,0.207139377,78.04523511,0,0.808616634,0,0,0,4,21,0% +2018-04-23 06:00:00,121.1851285,323.097059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115079496,5.639107483,-0.480368813,0.480368813,1,0.612301595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.401504327,113.6722549,0.401504327,66.32774505,0,0.925468341,0,0,0,4,22,0% +2018-04-23 07:00:00,126.8924976,339.3773446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21469188,5.92325207,-0.014477663,0.014477663,1,0.532629516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.5611395,124.1346384,0.5611395,55.86536155,0,0.960895597,0,0,0,4,23,0% +2018-04-24 08:00:00,129.2412878,357.7426753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255686001,6.243787558,0.373102017,-0.373102017,1,0.466349487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675161362,132.4666821,0.675161362,47.53331786,0,0.975943629,0,0,0,4,0,0% +2018-04-24 09:00:00,127.7645188,16.36422718,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22991152,0.285609644,0.7653612,-0.7653612,1,0.399269216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735796236,137.3745399,0.735796236,42.62546012,0,0.982046404,0,0,0,4,1,0% +2018-04-24 10:00:00,122.7637468,33.22448641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142631584,0.57987668,1.244617801,-1.244617801,1,0.31731151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738909585,137.6386116,0.738909585,42.36138838,0,0.982332722,0,0,0,4,2,0% +2018-04-24 11:00:00,115.0693148,47.45548539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008338411,0.828254468,1.974388252,-1.974388252,1,0.192513413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684287352,133.1795872,0.684287352,46.82041283,0,0.976931281,0,0,0,4,3,0% +2018-04-24 12:00:00,105.5472242,59.30530474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842146578,1.035072832,3.531942302,-3.531942302,1,0,#DIV/0!,0,0,0.068766055,1,0.275909094,0,0.928058852,0.966820815,0.724496596,1,0,0,0.011391138,0.312029739,0.96820498,0.692701576,0.961238037,0.922476074,0,0,0,0,0,0,-0.575650249,125.1451822,0.575650249,54.85481777,0,0.963141703,0,0,0,4,4,0% +2018-04-24 13:00:00,94.86080981,69.45711889,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655633462,1.212255414,11.7584705,-11.7584705,1,0,#DIV/0!,0,0,0.596881994,1,0.084840926,0,0.952895884,0.991657847,0.724496596,1,0,0,0.079548603,0.312029739,0.799303759,0.523800354,0.961238037,0.922476074,0,0,0,0,0,0,-0.420400001,114.8598438,0.420400001,65.14015618,0,0.931065652,0,0,0,4,5,0% +2018-04-24 14:00:00,83.3417207,78.63677312,50.34642764,226.4299589,24.09243645,23.74549324,0,23.74549324,23.3659606,0.379532638,64.31187306,51.37832294,12.93355012,0.726475851,12.20707427,1.45458743,1.372470604,-8.469280462,8.469280462,0.021514052,0.021514052,0.478533187,0.185876888,5.978439656,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.4602501,0.526329281,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.134667172,5.746703598,22.59491727,6.273032879,0,51.37832294,-0.22690603,103.1149849,0.22690603,76.88501509,0,0.829644463,22.59491727,48.89877402,54.59818689,4,6,142% +2018-04-24 15:00:00,71.66589602,87.54924411,251.7895684,602.8039991,62.1730351,62.19638482,0,62.19638482,60.2982887,1.898096123,71.33982496,8.415782585,62.92404238,1.874746402,61.04929597,1.250805847,1.528022567,-2.877245123,2.877245123,0.977808416,0.977808416,0.246924587,1.866375261,60.02904401,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.96100865,1.358247387,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.352182523,57.70220042,59.31319118,59.06044781,0,8.415782585,-0.01396106,90.79993578,0.01396106,89.20006422,0,0,59.31319118,59.06044781,97.96707306,4,7,65% +2018-04-24 16:00:00,59.85493941,96.98625611,464.6304115,760.1041893,82.91293975,242.2793792,158.3639902,83.915389,80.4128087,3.502580302,115.1551536,0,115.1551536,2.50013105,112.6550226,1.044665766,1.692729498,-1.53447208,1.53447208,0.79256387,0.79256387,0.178449231,2.905672977,93.45643112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.29585037,1.811336435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.10515018,89.83387638,79.40100055,91.64521281,158.3639902,0,0.208345109,77.97461098,-0.208345109,102.025389,0.810013565,0,207.6779808,91.64521281,267.6579397,4,8,29% +2018-04-24 17:00:00,48.30170029,108.0760551,653.6156677,836.9469321,96.87170763,453.7971216,354.9192224,98.87789922,93.95066822,4.927230991,161.3977253,0,161.3977253,2.921039403,158.4766859,0.843023704,1.886283004,-0.883578646,0.883578646,0.681254537,0.681254537,0.148208974,3.589465483,115.4495486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30895588,2.116283104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600555523,110.9744975,92.90951141,113.0907806,354.9192224,0,0.424064189,64.90855598,-0.424064189,115.091444,0.932093322,0,423.7273483,113.0907806,497.7430024,4,9,17% +2018-04-24 18:00:00,37.59199939,122.7764635,802.1461267,877.8939214,106.5250761,652.2270745,542.8672061,109.3598683,103.312952,6.046916331,197.7017394,0,197.7017394,3.21212408,194.4896153,0.656104162,2.142853532,-0.465721391,0.465721391,0.609796738,0.609796738,0.132800088,4.000735177,128.6773957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30833917,2.327172961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.898519017,123.6896073,102.2068582,126.0167802,542.8672061,0,0.61837449,51.80247193,-0.61837449,128.1975281,0.969142848,0,628.3227286,126.0167802,710.7981909,4,10,13% +2018-04-24 19:00:00,28.95558735,144.5093557,898.9518294,898.8771374,112.4386101,815.153571,699.3287212,115.8248498,109.0481712,6.776678609,221.3517177,0,221.3517177,3.39043895,217.9612787,0.505370336,2.522164057,-0.147774907,0.147774907,0.555424687,0.555424687,0.125077459,4.14076096,133.1811062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.82125,2.456361478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99996722,128.0187451,107.8212172,130.4751066,699.3287212,0,0.778002568,38.92194552,-0.778002568,141.0780545,0.98573286,0,797.1725177,130.4751066,882.5658654,4,11,11% +2018-04-24 20:00:00,24.8465242,175.8921658,937.0116029,906.1894384,114.7021544,926.6861142,808.3790637,118.3070505,111.2434612,7.063589258,230.6480046,0,230.6480046,3.45869316,227.1893115,0.433653655,3.069897421,0.126796089,-0.126796089,0.508470281,0.508470281,0.122412736,4.016637836,129.1888799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9314463,2.505811421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.910040439,124.1812653,109.8414867,126.6870767,808.3790637,0,0.892064098,26.86622252,-0.892064098,153.1337775,0.993950216,0,913.3300317,126.6870767,996.2441896,4,12,9% +2018-04-24 21:00:00,27.43949293,208.9276546,913.6169779,901.7513507,113.3144874,975.9663808,859.1815126,116.7848682,109.8976375,6.887230693,224.9338637,0,224.9338637,3.416849881,221.5170138,0.478909497,3.646475472,0.391434076,-0.391434076,0.46321452,0.46321452,0.124028439,3.648794112,117.3577613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6377893,2.475496107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.643538913,112.8087441,108.2813282,115.2842402,859.1815126,0,0.952792044,17.67537855,-0.952792044,162.3246214,0.997522652,0,965.334349,115.2842402,1040.785578,4,13,8% +2018-04-24 22:00:00,35.25840473,232.9417844,830.4596607,884.4202062,108.2802522,956.8369549,845.5613961,111.2755588,105.0152031,6.26035571,204.6196086,0,204.6196086,3.265049117,201.3545595,0.615375251,4.065601103,0.67584939,-0.67584939,0.414576637,0.414576637,0.130385926,3.073256225,98.84648445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9446077,2.36551697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.226563673,95.01500066,103.1711714,97.38051763,845.5613961,0,0.956062955,17.04732151,-0.956062955,162.9526785,0.997702189,0,946.7896269,97.38051763,1010.523228,4,14,7% +2018-04-24 23:00:00,45.61496145,248.96165,693.5716554,849.2323006,99.55340677,867.5153213,765.735381,101.7799403,96.55150424,5.228436104,171.1663803,0,171.1663803,3.001902527,168.1644777,0.796131265,4.345200503,1.021532171,-1.021532171,0.3554614,0.3554614,0.143537306,2.342217729,75.3337735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80897839,2.174868162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696928772,72.41368854,94.50590716,74.58855671,765.735381,0,0.901679529,25.62028036,-0.901679529,154.3797196,0.994547926,0,856.0664422,74.58855671,904.8831608,4,15,6% +2018-04-24 00:00:00,57.02416376,260.6994892,513.2116665,783.5203681,86.75305733,709.6457936,621.6398547,88.00593889,84.13713256,3.868806324,127.0500351,0,127.0500351,2.615924763,124.4341103,0.995259411,4.550064445,1.514491511,-1.514491511,0.271160388,0.271160388,0.169039527,1.525714421,49.07222037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.87581213,1.895228586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105374904,47.17008477,81.98118704,49.06531336,621.6398547,0,0.793393356,37.49623357,-0.793393356,142.5037664,0.986979558,0,695.5270161,49.06531336,727.6392824,4,16,5% +2018-04-24 01:00:00,68.79708417,270.419446,304.4035179,653.2368165,68.1460413,485.6025752,417.2166662,68.38590902,66.09118672,2.294722298,75.86101175,0,75.86101175,2.054854577,73.80615717,1.200735635,4.719709694,2.415787431,-2.415787431,0.117029708,0.117029708,0.223867457,0.722144567,23.22665163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52936258,1.488735146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.52319128,22.32634101,64.05255386,23.81507616,417.2166662,0,0.638691292,50.3056985,-0.638691292,129.6943015,0.971714918,0,469.4682125,23.81507616,485.0547036,4,17,3% +2018-04-24 02:00:00,80.52678589,279.3915557,93.96041838,350.9037505,36.20639915,193.2363564,157.4134004,35.82295595,35.11464263,0.708313323,23.87354779,0,23.87354779,1.091756522,22.78179127,1.40545755,4.87630255,5.221595537,-5.221595537,0,0,0.385336717,0.27293913,8.778660657,0.266212164,1,0.189221191,0,0.940331502,0.979093465,0.724496596,1,34.01817241,0.790973884,0.040441735,0.312029739,0.891723257,0.616219853,0.961238037,0.922476074,0.18820851,8.438382536,34.20638092,9.22935642,115.5080385,0,0.448594238,63.3464726,-0.448594238,116.6535274,0.938540699,0,142.6153761,9.22935642,148.6558053,4,18,4% +2018-04-24 03:00:00,92.10112614,288.4584104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607467896,5.034549016,-21.34374903,21.34374903,1,0,#DIV/0!,0,0,1,0.685549398,0,0.046817888,0.961238037,1,0.600323261,0.875826665,0,0,0.115824807,0.17124664,0.724496596,0.448993192,0.981432946,0.942670983,0,0,0,0,0,0,0.233189888,76.51505316,-0.233189888,103.4849468,0.835582469,0,0,0,0,4,19,0% +2018-04-24 04:00:00,102.9584133,298.3296284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796963304,5.206834272,-2.889322768,2.889322768,1,0.975743017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.010878955,89.37666951,-0.010878955,90.62333049,0,0,0,0,0,4,20,0% +2018-04-24 05:00:00,112.7679835,309.7184662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968172603,5.40560699,-1.201440617,1.201440617,1,0.735612136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204636416,101.808216,0.204636416,78.19178399,0,0.805664212,0,0,0,4,21,0% +2018-04-24 06:00:00,120.9195434,323.3266717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110444162,5.643114981,-0.479028507,0.479028507,1,0.612072389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398660718,113.4944802,0.398660718,66.50551982,0,0.924580068,0,0,0,4,22,0% +2018-04-24 07:00:00,126.5907202,339.5450197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209424871,5.926178553,-0.010695943,0.010695943,1,0.531982804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557965272,123.9151993,0.557965272,56.08480075,0,0.960388688,0,0,0,4,23,0% +2018-04-25 08:00:00,128.915423,357.8112037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249998588,6.244983605,0.378874343,-0.378874343,1,0.465362361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671689351,132.197584,0.671689351,47.80241604,0,0.975560827,0,0,0,4,0,0% +2018-04-25 09:00:00,127.436146,16.32267365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224180333,0.284884398,0.773726062,-0.773726062,1,0.39783874,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732079826,137.0610377,0.732079826,42.93896227,0,0.981701437,0,0,0,4,1,0% +2018-04-25 10:00:00,122.4516197,33.09782384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137183938,0.577666001,1.257559725,-1.257559725,1,0.315098311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735019042,137.3088252,0.735019042,42.69117485,0,0.981974551,0,0,0,4,2,0% +2018-04-25 11:00:00,114.7814407,47.27825454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00331406,0.825161206,1.997937633,-1.997937633,1,0.188486232,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680304995,132.867481,0.680304995,47.13251897,0,0.976503553,0,0,0,4,3,0% +2018-04-25 12:00:00,105.28304,59.10096111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837535695,1.031506362,3.59362716,-3.59362716,1,0,#DIV/0!,0,0,0.077824892,1,0.271404109,0,0.928736156,0.967498119,0.724496596,1,0,0,0.012838654,0.312029739,0.964237266,0.688733862,0.961238037,0.922476074,0,0,0,0,0,0,-0.571664795,124.8663988,0.571664795,55.13360125,0,0.962536157,0,0,0,4,4,0% +2018-04-25 13:00:00,94.61575266,69.23626796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651356408,1.208400838,12.38513035,-12.38513035,1,0,#DIV/0!,0,0,0.613575605,1,0.080567208,0,0.9533569,0.992118863,0.724496596,1,0,0,0.081268049,0.312029739,0.795519769,0.520016365,0.961238037,0.922476074,0,0,0,0,0,0,-0.416500472,114.613844,0.416500472,65.38615605,0,0.929952117,0,0,0,4,5,0% +2018-04-25 14:00:00,83.1134764,78.40154579,53.50775748,236.2236371,25.18375644,24.82773734,0,24.82773734,24.42437326,0.403364078,66.46668259,52.73372413,13.73295847,0.759383175,12.97357529,1.450603816,1.368365113,-8.19102667,8.19102667,0.069098253,0.069098253,0.470656174,0.204599534,6.58062432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.47763661,0.550170525,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.148231666,6.325546402,23.62586827,6.875716927,0,52.73372413,-0.223236441,102.8991962,0.223236441,77.10080378,0,0.826022232,23.62586827,50.43494541,56.63453134,4,6,140% +2018-04-25 15:00:00,71.44085252,87.29684529,255.717479,606.0418139,62.8243942,62.85771329,0,62.85771329,60.93000692,1.927706372,70.24870832,6.352657656,63.89605066,1.894387282,62.00166338,1.246878097,1.523617377,-2.843768732,2.843768732,0.983533216,0.983533216,0.245678921,1.903761864,61.23152568,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56824023,1.372477137,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.37926899,58.85807154,59.94750922,60.23054868,0,6.352657656,-0.01048221,90.6005974,0.01048221,89.3994026,0,0,59.94750922,60.23054868,99.36719872,4,7,66% +2018-04-25 16:00:00,59.62768895,96.71133415,468.3424162,761.2392424,83.44700257,245.4893685,161.028038,84.46133051,80.93076755,3.530562962,116.0712761,0,116.0712761,2.516235014,113.5550411,1.040699498,1.687931205,-1.524250357,1.524250357,0.790815852,0.790815852,0.178175198,2.923614277,94.03348502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.79373212,1.823003702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.118148592,90.38856254,79.91188071,92.21156624,161.028038,0,0.211534074,77.78773196,-0.211534074,102.212268,0.813631461,0,210.9293585,92.21156624,271.2799843,4,8,29% +2018-04-25 17:00:00,48.06189439,107.7746193,657.0008971,837.3705225,97.36321145,456.8736511,357.4935494,99.38010167,94.42735139,4.952750281,162.2333341,0,162.2333341,2.935860057,159.297474,0.838838302,1.881021957,-0.879766864,0.879766864,0.680602684,0.680602684,0.148193422,3.60528159,115.958249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.76716188,2.127020617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.612014239,111.4634796,93.37917611,113.5905003,357.4935494,0,0.426923972,64.72749454,-0.426923972,115.2725055,0.932883128,0,426.8788769,113.5905003,501.2215875,4,9,17% +2018-04-25 18:00:00,37.32534277,122.4611269,805.2025001,878.0243658,106.9928135,654.9946117,545.1580697,109.8365419,103.7665854,6.069956565,198.4568966,0,198.4568966,3.226228088,195.2306685,0.651450126,2.13734987,-0.464587919,0.464587919,0.609602903,0.609602903,0.132876902,4.015140662,129.1407257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74438882,2.337391267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.908955742,124.1349776,102.6533446,126.4723689,545.1580697,0,0.620891733,51.61871721,-0.620891733,128.3812828,0.969470662,0,631.1680995,126.4723689,713.9417355,4,10,13% +2018-04-25 19:00:00,28.64872983,144.2670526,901.7174522,898.8719096,112.8894576,817.5720948,701.2891438,116.282951,109.4854239,6.797527042,222.0358697,0,222.0358697,3.404033664,218.631836,0.500014662,2.51793507,-0.148137261,0.148137261,0.555486653,0.555486653,0.125193826,4.154220146,133.6139999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2415539,2.466210802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.009718354,128.434859,108.2512723,130.9010698,701.2891438,0,0.780188074,38.7222015,-0.780188074,141.2777985,0.985912889,0,799.6612778,130.9010698,885.33341,4,11,11% +2018-04-25 20:00:00,24.51918119,175.9474689,939.549576,906.1212551,115.1401692,928.7795257,810.0285358,118.7509899,111.6682683,7.082721571,231.2765733,0,231.2765733,3.471900924,227.8046724,0.427940442,3.070862642,0.125324586,-0.125324586,0.508721923,0.508721923,0.122548264,4.029552941,129.6042741,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.339787,2.5153804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919397389,124.580558,110.2591844,127.0959384,810.0285358,0,0.893951589,26.62591934,-0.893951589,153.3740807,0.99406856,0,915.4830842,127.0959384,998.664834,4,12,9% +2018-04-25 21:00:00,27.15710169,209.2914515,916.0075671,901.6654202,113.7432208,977.8003533,860.5816583,117.218695,110.313443,6.905251964,225.5264176,0,225.5264176,3.429777774,222.0966398,0.47398084,3.652824925,0.388860934,-0.388860934,0.463654553,0.463654553,0.124172796,3.661537938,117.7676466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0374774,2.484862322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652771772,113.2027414,108.6902492,115.6876037,860.5816583,0,0.954435691,17.36252976,-0.954435691,162.6374702,0.997613024,0,967.2177194,115.6876037,1042.932942,4,13,8% +2018-04-25 22:00:00,35.03820339,233.3636557,832.793134,884.3632793,108.7035284,958.5111947,846.8075324,111.7036623,105.4257159,6.277946417,205.1981495,0,205.1981495,3.277812454,201.9203371,0.611532013,4.072964146,0.671850202,-0.671850202,0.415260538,0.415260538,0.130528848,3.086149981,99.26119197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3392082,2.374763965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235905156,95.41363331,103.5751134,97.78839727,846.8075324,0,0.957533575,16.75751051,-0.957533575,163.2424895,0.99778251,0,948.5048584,97.78839727,1012.505409,4,14,7% +2018-04-25 23:00:00,45.43467452,249.3450847,695.940149,849.2877719,99.97622042,869.1653555,766.9574962,102.2078593,96.9615685,5.24629081,171.7533984,0,171.7533984,3.014651919,168.7387464,0.792984665,4.351892702,1.015222963,-1.015222963,0.356540338,0.356540338,0.143656348,2.355466024,75.75988421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.20314776,2.184105053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706527116,72.82328237,94.90967487,75.00738742,766.9574962,0,0.903059624,25.43679804,-0.903059624,154.563202,0.99463267,0,857.7506573,75.00738742,906.8414922,4,15,6% +2018-04-25 00:00:00,56.86311575,261.0396901,515.6970583,783.8998575,87.18515396,711.4647595,623.0210174,88.44374215,84.55619989,3.887542257,127.6656764,0,127.6656764,2.628954071,125.0367223,0.992448593,4.556002071,1.503493379,-1.503493379,0.273041179,0.273041179,0.169062733,1.53924446,49.50739294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.27863558,1.904668275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115177371,47.5883892,82.39381296,49.49305747,623.0210174,0,0.794771183,37.36635132,-0.794771183,142.6336487,0.987088811,0,697.3708884,49.49305747,729.7631046,4,16,5% +2018-04-25 01:00:00,68.64121943,270.7282187,307.0427267,654.6343484,68.62039668,487.9323788,419.0665225,68.86585631,66.55123854,2.31461777,76.51522206,0,76.51522206,2.069158142,74.44606392,1.198015282,4.725098795,2.391590478,-2.391590478,0.121167631,0.121167631,0.223488103,0.735067539,23.64229884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.97158188,1.49909803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53255393,22.72587692,64.50413581,24.22497495,419.0665225,0,0.640153581,50.19672739,-0.640153581,129.8032726,0.971893743,0,471.792267,24.22497495,487.6470286,4,17,3% +2018-04-25 02:00:00,80.3666944,279.6801222,96.47019763,356.0494638,36.88821439,196.79947,160.2963382,36.50313172,35.77589862,0.727233099,24.50263207,0,24.50263207,1.112315767,23.39031631,1.402663426,4.881338985,5.118577277,-5.118577277,0,0,0.38237938,0.278078942,8.943974656,0.256602067,1,0.192936605,0,0.939838978,0.978600941,0.724496596,1,34.65448667,0.805868987,0.039140242,0.312029739,0.895007541,0.619504137,0.961238037,0.922476074,0.191929774,8.59728864,34.84641645,9.403157626,119.1639665,0,0.45020806,63.24296638,-0.45020806,116.7570336,0.938940238,0,146.7342595,9.403157626,152.8884381,4,18,4% +2018-04-25 03:00:00,91.92553202,288.7345859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6044032,5.039369188,-23.20237115,23.20237115,1,0,#DIV/0!,0,0,1,0.714121771,0,0.043072387,0.961238037,1,0.609622338,0.885125742,0,0,0.115824807,0.181759533,0.724496596,0.448993192,0.980073363,0.9413114,0,0,0,0,0,0,0.235068952,76.40431271,-0.235068952,103.5956873,0.837296452,0,0,0,0,4,19,0% +2018-04-25 04:00:00,102.7605799,298.5966446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79351046,5.211494584,-2.92026683,2.92026683,1,0.970451271,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013053301,89.25207971,-0.013053301,90.74792029,0,0,0,0,0,4,20,0% +2018-04-25 05:00:00,112.540092,309.9722741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964195146,5.410036772,-1.205731361,1.205731361,1,0.736345896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202132956,101.6617163,0.202132956,78.33828372,0,0.802638061,0,0,0,4,21,0% +2018-04-25 06:00:00,120.6557774,323.5509328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.105840577,5.647029075,-0.477740241,0.477740241,1,0.611852082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395817027,113.3169397,0.395817027,66.68306034,0,0.923679007,0,0,0,4,22,0% +2018-04-25 07:00:00,126.2916415,339.7077298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204204961,5.92901838,-0.006946368,0.006946368,1,0.531341589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554793704,123.6965068,0.554793704,56.30349322,0,0.959876411,0,0,0,4,23,0% +2018-04-26 08:00:00,128.5931037,357.8764004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244373055,6.246121502,0.384622901,-0.384622901,1,0.4643793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66822488,131.9302076,0.66822488,48.0697924,0,0.97517489,0,0,0,4,0,0% +2018-04-26 09:00:00,127.1117707,16.28007408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218518917,0.284140895,0.782077088,-0.782077088,1,0.396410631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728377643,136.7505581,0.728377643,43.24944194,0,0.981354291,0,0,0,4,1,0% +2018-04-26 10:00:00,122.143533,32.97181473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13180681,0.575466727,1.270516554,-1.270516554,1,0.312882563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731150759,136.9829532,0.731150759,43.01704681,0,0.981614651,0,0,0,4,2,0% +2018-04-26 11:00:00,114.4974959,47.10245962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998358289,0.822093006,2.021627676,-2.021627676,1,0.184434996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676353723,132.559363,0.676353723,47.44063701,0,0.976074185,0,0,0,4,3,0% +2018-04-26 12:00:00,105.0227026,58.89827097,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83299195,1.027968752,3.656416578,-3.656416578,1,0,#DIV/0!,0,0,0.086866709,1,0.266963522,0,0.929399613,0.968161576,0.724496596,1,0,0,0.014271593,0.312029739,0.960325663,0.684822259,0.961238037,0.922476074,0,0,0,0,0,0,-0.567719436,124.5913477,0.567719436,55.40865229,0,0.961928328,0,0,0,4,4,0% +2018-04-26 13:00:00,94.37454494,69.01704041,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647146539,1.204574595,13.07015687,-13.07015687,1,0,#DIV/0!,0,0,0.630310785,1,0.076361406,0,0.953806412,0.992568375,0.724496596,1,0,0,0.082970413,0.312029739,0.791796656,0.516293252,0.961238037,0.922476074,0,0,0,0,0,0,-0.412649611,114.3713882,0.412649611,65.62861176,0,0.928831826,0,0,0,4,5,0% +2018-04-26 14:00:00,82.88892528,78.16779925,56.66585426,245.6994056,26.2499183,25.88555755,0,25.88555755,25.45838641,0.427171145,68.49108542,53.96026111,14.53082431,0.791531889,13.73929242,1.44668466,1.364285466,-7.934536238,7.934536238,0.1129607,0.1129607,0.463240494,0.223783525,7.197647402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.47156937,0.573462159,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162130402,6.918652458,24.63369977,7.492114617,0,53.96026111,-0.219619014,102.6866568,0.219619014,77.31334317,0,0.822333009,24.63369977,51.86541851,58.57857888,4,6,138% +2018-04-26 15:00:00,71.21990546,87.04568053,259.568908,609.1409051,63.46403745,63.50710263,0,63.50710263,61.55036256,1.956740071,69.1528407,4.303678874,64.84916182,1.913674886,62.93548694,1.243021843,1.519233725,-2.811642655,2.811642655,0.989027098,0.989027098,0.24449784,1.940518596,62.41374855,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.16454967,1.386450941,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.405899117,59.99446913,60.57044879,61.38092007,0,4.303678874,-0.007065162,90.4048073,0.007065162,89.5951927,0,0,60.57044879,61.38092007,100.7430334,4,7,66% +2018-04-26 16:00:00,59.40480969,96.43719471,471.9703001,762.3179937,83.97395188,248.6365764,163.6368375,84.99973888,81.4418274,3.557911483,116.966788,0,116.966788,2.53212448,114.4346635,1.036809521,1.683146569,-1.514367604,1.514367604,0.789125802,0.789125802,0.17792211,2.941129682,94.59684065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28498229,1.834515566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.130838443,90.9300814,80.41582073,92.76459697,163.6368375,0,0.214656926,77.60459928,-0.214656926,102.3954007,0.817070176,0,214.1186004,92.76459697,274.8311738,4,8,28% +2018-04-26 17:00:00,47.82677243,107.4730342,660.3020656,837.7636932,97.8490002,459.8764042,360.0002765,99.8761277,94.89849182,4.977635883,163.0483889,0,163.0483889,2.95050838,160.0978805,0.834734649,1.875758303,-0.876085019,0.876085019,0.679973051,0.679973051,0.148188239,3.620718809,116.454763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22003997,2.137633278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.623198452,111.9407478,93.84323843,114.0783811,360.0002765,0,0.429715777,64.550476,-0.429715777,115.449524,0.933644021,0,429.9553441,114.0783811,504.6173629,4,9,17% +2018-04-26 18:00:00,37.06359736,122.1436889,808.1782959,878.1349796,107.4555487,657.6857609,547.3780042,110.3077568,104.2153674,6.09238937,199.1923659,0,199.1923659,3.240181261,195.9521846,0.646881807,2.131809531,-0.463512437,0.463512437,0.609418985,0.609418985,0.132960201,4.029206066,129.5931174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1757752,2.347500294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919146079,124.5698337,103.0949213,126.917334,547.3780042,0,0.623341533,51.43943637,-0.623341533,128.5605636,0.969787151,0,633.9350766,126.917334,716.9999334,4,10,13% +2018-04-26 19:00:00,28.34651787,144.0199096,904.4084219,898.8519786,113.3358462,819.9161629,703.1799979,116.736165,109.9183523,6.817812708,222.7017867,0,222.7017867,3.417493928,219.2842928,0.494740068,2.513621612,-0.148524005,0.148524005,0.55555279,0.55555279,0.125314895,4.167378784,134.037227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6577011,2.475962717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.019251743,128.8416809,108.6769529,131.3176436,703.1799979,0,0.782309006,38.52752531,-0.782309006,141.4724747,0.986086636,0,802.0733517,131.3176436,888.0181231,4,11,11% +2018-04-26 20:00:00,24.1956569,175.9997404,942.0206479,906.0410477,115.5742314,930.8035889,811.6129974,119.1905915,112.0892419,7.101349555,231.8888019,0,231.8888019,3.484989502,228.4038124,0.422293878,3.071774953,0.12384927,-0.12384927,0.508974217,0.508974217,0.122687578,4.042208755,130.0113285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7444429,2.524863031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928566482,124.9718342,110.6730094,127.4966973,811.6129974,0,0.895779501,26.3912696,-0.895779501,153.6087304,0.994182692,0,917.5646042,127.4966973,1001.008643,4,12,9% +2018-04-26 21:00:00,26.87823025,209.6548942,918.340227,901.5687708,114.1684989,979.5723962,861.9236623,117.6487339,110.7258974,6.922836539,226.1048217,0,226.1048217,3.442601478,222.6622202,0.469113615,3.659168197,0.386301235,-0.386301235,0.464092288,0.464092288,0.124320481,3.674064217,118.1705347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4339442,2.494153052,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.661847018,113.5900128,109.0957913,116.0841659,861.9236623,0,0.956026529,17.05443934,-0.956026529,162.9455607,0.997700196,0,969.0371981,116.0841659,1045.011963,4,13,8% +2018-04-26 22:00:00,34.82093437,233.7832264,835.0782268,884.2958578,109.1238277,960.1323945,848.0038804,112.1285141,105.8333417,6.295172412,205.7648703,0,205.7648703,3.290486029,202.4743843,0.607739953,4.080287036,0.667885143,-0.667885143,0.415938603,0.415938603,0.130674977,3.098866688,99.67020496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7310336,2.383945927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245118366,95.80679215,103.9761519,98.19073807,848.0038804,0,0.958959462,16.47178864,-0.958959462,163.5282114,0.997860153,0,950.1654335,98.19073807,1014.429308,4,14,7% +2018-04-26 23:00:00,45.25651855,249.7250679,698.2697478,849.3315189,100.3964806,870.771672,768.1386634,102.6330086,97.36915633,5.263852309,172.3309089,0,172.3309089,3.027324315,169.3035846,0.789875257,4.35852466,1.0089829,-1.0089829,0.357607452,0.357607452,0.143778935,2.368575455,76.18152856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.59493668,2.193286161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716024854,73.22858296,95.31096153,75.42186912,768.1386634,0,0.904403812,25.25689411,-0.904403812,154.7431059,0.994714961,0,859.3899822,75.42186912,908.7520871,4,15,6% +2018-04-26 00:00:00,56.70355894,261.3761258,518.1524597,784.2628696,87.61496592,713.2480836,624.36898,88.87910354,84.97305143,3.90605211,128.2739773,0,128.2739773,2.641914487,125.6320628,0.989663801,4.561873981,1.492647535,-1.492647535,0.274895928,0.274895928,0.169091093,1.552673557,49.93931887,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67932914,1.914058053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.124906706,48.00357283,82.80423585,49.91763088,624.36898,0,0.796122071,37.23863309,-0.796122071,142.7613669,0.987195561,0,699.1785214,49.91763088,731.8486125,4,16,5% +2018-04-26 01:00:00,68.48641463,271.0331314,309.6605317,655.9970154,69.09210754,490.2290974,420.8860199,69.34307746,67.00872557,2.334351889,77.164163,0,77.164163,2.083381965,75.08078104,1.195313428,4.730420525,2.367858898,-2.367858898,0.12522597,0.12522597,0.223122098,0.747943589,24.05643685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41133582,1.509403142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.541882584,23.12396213,64.9532184,24.63336527,420.8860199,0,0.641597462,50.08895841,-0.641597462,129.9110416,0.972069517,0,474.0836886,24.63336527,490.2057335,4,17,3% +2018-04-26 02:00:00,80.20738072,279.9647052,98.97762927,361.0837287,37.56358445,200.3188386,163.1417996,37.17703896,36.43090378,0.746135178,25.13095281,0,25.13095281,1.132680666,23.99827214,1.399882878,4.886305896,5.019389476,-5.019389476,0,0,0.379515904,0.283170166,9.107725946,0.247108406,1,0.196652581,0,0.939343331,0.978105294,0.724496596,1,35.28430984,0.820623287,0.037844045,0.312029739,0.89829175,0.622788346,0.961238037,0.922476074,0.19563308,8.754692608,35.47994292,9.575315895,122.8280896,0,0.451811551,63.14002926,-0.451811551,116.8599707,0.939334392,0,150.8565918,9.575315895,157.1234446,4,18,4% +2018-04-26 03:00:00,91.75069824,289.0065385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601351775,5.044115656,-25.42369128,25.42369128,1,0,#DIV/0!,0,0,1,0.742125875,0,0.039313126,0.961238037,1,0.619067098,0.894570502,0,0,0.115824807,0.192442158,0.724496596,0.448993192,0.978666662,0.939904699,0,0,0,0,0,0,0.236942688,76.29383471,-0.236942688,103.7061653,0.838978506,0,0,0,0,4,19,0% +2018-04-26 04:00:00,102.5636329,298.8590577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790073086,5.216074557,-2.952136552,2.952136552,1,0.965001227,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015226129,89.12757335,-0.015226129,90.87242665,0,0,0,0,0,4,20,0% +2018-04-26 05:00:00,112.3134503,310.2210103,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960239503,5.414378039,-1.2101625,1.2101625,1,0.737103665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.199629461,101.5152918,0.199629461,78.48470822,0,0.799535967,0,0,0,4,21,0% +2018-04-26 06:00:00,120.3939109,323.7698115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101270145,5.65084923,-0.47650718,0.47650718,1,0.611641217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.392974115,113.1396846,0.392974115,66.86031543,0,0.922765157,0,0,0,4,22,0% +2018-04-26 07:00:00,125.9953503,339.8654709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199033704,5.931771482,-0.003232259,0.003232259,1,0.530706439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551626045,123.4786381,0.551626045,56.5213619,0,0.959358885,0,0,0,4,23,0% +2018-04-27 08:00:00,128.2744203,357.9382592,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238810981,6.247201142,0.390343648,-0.390343648,1,0.463400994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664769549,131.6646483,0.664769549,48.33535173,0,0.974785965,0,0,0,4,0,0% +2018-04-27 09:00:00,126.7914873,16.23639833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212928916,0.28337861,0.790408794,-0.790408794,1,0.394985825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724691572,136.4431963,0.724691572,43.55680366,0,0.981005131,0,0,0,4,1,0% +2018-04-27 10:00:00,121.8395874,32.84642223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12650196,0.573278215,1.283479941,-1.283479941,1,0.310665693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727306821,136.661088,0.727306821,43.33891203,0,0.981253223,0,0,0,4,2,0% +2018-04-27 11:00:00,114.2175846,46.9280792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993472916,0.819049494,2.045444031,-2.045444031,1,0.180362159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672435725,132.2553347,0.672435725,47.74466525,0,0.975643451,0,0,0,4,3,0% +2018-04-27 12:00:00,104.7663144,58.69723484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828517131,1.02446001,3.720296676,-3.720296676,1,0,#DIV/0!,0,0,0.095885429,1,0.262589086,0,0.93004913,0.968811093,0.724496596,1,0,0,0.015689208,0.312029739,0.956471711,0.680968307,0.961238037,0.922476074,0,0,0,0,0,0,-0.563816362,124.3201377,0.563816362,55.67986233,0,0.961318643,0,0,0,4,4,0% +2018-04-27 13:00:00,94.13728441,68.79945744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643005562,1.200777056,13.82153132,-13.82153132,1,0,#DIV/0!,0,0,0.64707552,1,0.072225035,0,0.954244451,0.993006414,0.724496596,1,0,0,0.084654726,0.312029739,0.788135838,0.512632434,0.961238037,0.922476074,0,0,0,0,0,0,-0.408849505,114.132583,0.408849505,65.86741704,0,0.927705612,0,0,0,4,5,0% +2018-04-27 14:00:00,82.66818055,77.93557363,59.81359382,254.8526847,27.29045587,26.91844807,0,26.91844807,26.46754794,0.450900136,70.38785167,55.06244541,15.32540625,0.822907936,14.50249832,1.442831937,1.360232364,-7.697547749,7.697547749,0.153488118,0.153488118,0.456258421,0.24335815,7.827234629,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.44161382,0.596193998,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176312151,7.523835649,25.61792597,8.120029647,0,55.06244541,-0.216055976,102.4774864,0.216055976,77.52251357,0,0.81857849,25.61792597,53.19296309,60.43165646,4,6,136% +2018-04-27 15:00:00,71.00314278,86.79580913,263.3420791,612.1046897,64.09203113,64.14460374,0,64.14460374,62.15941991,1.985183828,68.0547929,2.271845743,65.78294716,1.932611213,63.85033595,1.239238621,1.514872646,-2.780814589,2.780814589,0.994299008,0.994299008,0.243379377,1.976620762,63.57491829,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.74999877,1.400170245,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.432055013,61.11062965,61.18205378,62.5107999,0,2.271845743,-0.003711531,90.21265557,0.003711531,89.78734443,0,0,61.18205378,62.5107999,102.0941221,4,7,67% +2018-04-27 16:00:00,59.18638624,96.16391829,475.5129886,763.3412822,84.49374997,251.7194401,166.1888707,85.53056942,81.94595166,3.584617765,117.8414277,0,117.8414277,2.54779831,115.2936294,1.032997312,1.678376996,-1.504817971,1.504817971,0.787492719,0.787492719,0.177689678,2.958216813,95.14642149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.7695657,1.845871203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.143218011,91.45835941,80.91278371,93.30423061,166.1888707,0,0.217712411,77.4252927,-0.217712411,102.5747073,0.820339229,0,217.2440338,93.30423061,278.3097867,4,8,28% +2018-04-27 17:00:00,47.59642178,107.1714005,663.5185639,838.1267538,98.32904133,462.8044178,362.4384766,100.3659411,95.36405794,5.001883206,163.8427412,0,163.8427412,2.964983392,160.8777578,0.830714272,1.870493803,-0.87253252,0.87253252,0.679365538,0.679365538,0.148193354,3.63577604,116.9390554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66755984,2.148120374,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634107365,112.406268,94.3016672,114.5543884,362.4384766,0,0.432438739,64.3775715,-0.432438739,115.6224285,0.934376686,0,432.95573,114.5543884,507.9292861,4,9,17% +2018-04-27 18:00:00,36.80686279,121.8242411,811.0733138,878.2259433,107.9132681,660.3000463,549.5265482,110.7734981,104.6592849,6.114213238,199.9080984,0,199.9080984,3.25398319,196.6541152,0.642400943,2.126234115,-0.462495289,0.462495289,0.609245042,0.609245042,0.133049955,4.042931618,130.0345783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6024855,2.357499744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.929090194,124.9941828,103.5315757,127.3516825,549.5265482,0,0.625723429,51.2646951,-0.625723429,128.7353049,0.970092492,0,636.6231542,127.3516825,719.9722834,4,10,13% +2018-04-27 19:00:00,28.04906446,143.7678766,907.0248874,898.8174964,113.777781,822.1857458,705.001248,117.1844979,110.3469611,6.83753673,223.349505,0,223.349505,3.430819893,219.9186851,0.489548527,2.509222805,-0.148935635,0.148935635,0.555623183,0.555623183,0.125440639,4.180238129,134.4508277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0696963,2.485617333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.028568295,129.2392497,109.0982646,131.724867,705.001248,0,0.784365292,38.33798642,-0.784365292,141.6620136,0.986254191,0,804.4087001,131.724867,890.6199911,4,11,11% +2018-04-27 20:00:00,23.87603575,176.0487379,944.4252366,905.9489737,116.0043613,932.7586677,813.1327895,119.6258781,112.5064018,7.119476361,232.4847923,0,232.4847923,3.497959503,228.9868328,0.416715436,3.072630121,0.122369658,-0.122369658,0.509227246,0.509227246,0.122830645,4.054607142,130.4101033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1454328,2.534259752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937549072,125.3551517,111.0829818,127.8894115,813.1327895,0,0.89754811,26.1623742,-0.89754811,153.8376258,0.99429268,0,919.5749622,127.8894115,1003.276024,4,12,9% +2018-04-27 21:00:00,26.60290961,210.0176931,920.6155476,901.461583,114.5903525,981.2831892,863.2081698,118.0750194,111.1350306,6.939988868,226.66922,0,226.66922,3.455321921,223.213898,0.464308363,3.665500231,0.383754532,-0.383754532,0.4645278,0.4645278,0.12447145,3.686374965,118.5664907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8272186,2.503368969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.670766114,113.9706208,109.4979847,116.4739897,863.2081698,0,0.957565121,16.75124048,-0.957565121,163.2487595,0.99778423,0,970.7934839,116.4739897,1047.023381,4,13,8% +2018-04-27 22:00:00,34.60658624,234.2002309,837.3155925,884.2181626,109.5411868,961.7014488,849.1512943,112.5501545,106.2381159,6.31203862,206.3199304,0,206.3199304,3.303070947,203.0168595,0.603998873,4.087565139,0.663953748,-0.663953748,0.416610912,0.416610912,0.130824253,3.11140805,100.0735783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.120118,2.393063657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.254204541,96.19452993,104.3743225,98.58759359,849.1512943,0,0.960341384,16.19020136,-0.960341384,163.8097986,0.997935181,0,951.7722733,98.58759359,1016.295882,4,14,7% +2018-04-27 23:00:00,45.0804695,250.1014055,700.561054,849.3638321,100.8142253,872.3352639,769.2798343,103.0554296,97.77430447,5.281125143,172.8990592,0,172.8990592,3.039920859,169.8591384,0.786802621,4.36509299,1.002811297,-1.002811297,0.358662858,0.358662858,0.143904981,2.381546975,76.59873724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.98438048,2.202412314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725422676,73.62961981,95.70980316,75.83203212,769.2798343,0,0.905712965,25.08052077,-0.905712965,154.9194792,0.994794872,0,860.9854376,75.83203212,910.615986,4,15,6% +2018-04-27 00:00:00,56.54547364,261.7086508,520.5783077,784.6098398,88.04252946,714.9967402,625.6846787,89.31206153,85.38772236,3.924339177,128.8750449,0,128.8750449,2.654807106,126.2202378,0.986904692,4.567677637,1.481952164,-1.481952164,0.276724944,0.276724944,0.169124468,1.566001478,50.36799062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07792661,1.923398711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.13456274,48.41562842,83.21248935,50.33902713,625.6846787,0,0.797446893,37.11301445,-0.797446893,142.8869856,0.9872999,0,700.95091,50.33902713,733.8967964,4,16,5% +2018-04-27 01:00:00,68.33266148,271.334066,312.2570742,657.3257165,69.56121559,492.4936291,422.6760151,69.81761401,67.46368828,2.353925723,77.80787012,0,77.80787012,2.097527304,75.71034282,1.192629929,4.735672824,2.344583072,-2.344583072,0.12920637,0.12920637,0.222769062,0.760770552,24.4689961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84866329,1.519651391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.551175676,23.52052977,65.39983896,25.04018117,422.6760151,0,0.643023701,49.98233942,-0.643023701,130.0176606,0.972242368,0,476.343369,25.04018117,492.7316667,4,17,3% +2018-04-27 02:00:00,80.04885331,280.2452033,101.4819437,366.0085681,38.23258232,203.7949478,165.9502052,37.84474265,37.0797289,0.765013758,25.75832558,0,25.75832558,1.15285342,24.60547216,1.397116053,4.891201511,4.9238402,-4.9238402,0,0,0.376742708,0.288213355,9.269932224,0.237730845,1,0.200368314,0,0.938844674,0.977606638,0.724496596,1,35.90770256,0.835238378,0.036553361,0.312029739,0.901575167,0.626071762,0.961238037,0.922476074,0.199318966,8.910611453,36.10702153,9.745849831,126.4987227,0,0.453405247,63.03762813,-0.453405247,116.9623719,0.939723376,0,154.9808283,9.745849831,161.3592921,4,18,4% +2018-04-27 03:00:00,91.57664824,289.2741788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59831403,5.048786861,-28.12481014,28.12481014,1,0,#DIV/0!,0,0,1,0.769573546,0,0.035540824,0.961238037,1,0.628656793,0.904160197,0,0,0.115824807,0.20329417,0.724496596,0.448993192,0.977211847,0.938449884,0,0,0,0,0,0,0.238811383,76.18360214,-0.238811383,103.8163979,0.840629746,0,0,0,0,4,19,0% +2018-04-27 04:00:00,102.3676146,299.1167912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786651923,5.220572855,-2.984968143,2.984968143,1,0.959386694,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017397379,89.0031533,-0.017397379,90.9968467,0,0,0,0,0,4,20,0% +2018-04-27 05:00:00,112.0881206,310.4646176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956306757,5.418629789,-1.214738869,1.214738869,1,0.737886271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.19712638,101.3689676,0.19712638,78.63103235,0,0.796355612,0,0,0,4,21,0% +2018-04-27 06:00:00,120.1340222,323.9832787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096734231,5.654574934,-0.475332572,0.475332572,1,0.611440347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.390132834,112.962765,0.390132834,67.03723502,0,0.921838524,0,0,0,4,22,0% +2018-04-27 07:00:00,125.7019333,340.018239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193912612,5.934437788,0.000442973,-0.000442973,1,0.530077937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548463533,123.2616686,0.548463533,56.73833138,0,0.958836236,0,0,0,4,23,0% +2018-04-28 08:00:00,127.9594613,357.9967737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.233313909,6.248222412,0.39603242,-0.39603242,1,0.462428157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661324942,131.4009989,0.661324942,48.59900115,0,0.974394202,0,0,0,4,0,0% +2018-04-28 09:00:00,126.4753875,16.19161638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207411934,0.282597017,0.798715506,-0.798715506,1,0.393565294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721023479,136.1390455,0.721023479,43.86095449,0,0.980654131,0,0,0,4,1,0% +2018-04-28 10:00:00,121.5398815,32.72160968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121271105,0.571099826,1.296441163,-1.296441163,1,0.308449193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723489293,136.3433195,0.723489293,43.65668053,0,0.980890477,0,0,0,4,2,0% +2018-04-28 11:00:00,113.9418086,46.75509171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988659715,0.816030292,2.069371359,-2.069371359,1,0.176270345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668553168,131.9554956,0.668553168,48.04450438,0,0.975211633,0,0,0,4,3,0% +2018-04-28 12:00:00,104.5139756,58.49785288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824112989,1.020980138,3.785249634,-3.785249634,1,0,#DIV/0!,0,0,0.104874771,1,0.25828253,0,0.930684624,0.969446587,0.724496596,1,0,0,0.017090749,0.312029739,0.952676936,0.677173531,0.961238037,0.922476074,0,0,0,0,0,0,-0.559957735,124.0528749,0.559957735,55.94712512,0,0.960707547,0,0,0,4,4,0% +2018-04-28 13:00:00,93.90406673,68.58353984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638935146,1.197008583,14.64872461,-14.64872461,1,0,#DIV/0!,0,0,0.663857157,1,0.068159582,0,0.954671059,0.993433022,0.724496596,1,0,0,0.086320007,0.312029739,0.784538703,0.509035299,0.961238037,0.922476074,0,0,0,0,0,0,-0.405102209,113.8975322,0.405102209,66.10246777,0,0.926574358,0,0,0,4,5,0% +2018-04-28 14:00:00,82.45135094,77.70490887,62.94433434,263.6811755,28.30507428,27.92607284,0,27.92607284,27.45157186,0.47450098,72.1603823,56.04529727,16.11508503,0.853502424,15.2615826,1.439047547,1.356206505,-7.47810638,7.47810638,0.191014803,0.191014803,0.449684226,0.263254418,8.467167008,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.38749504,0.618359601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19072693,8.138962992,26.57822197,8.757322593,0,56.04529727,-0.212549482,102.2718004,0.212549482,77.72819961,0,0.814760659,26.57822197,54.42082595,62.19556414,4,6,134% +2018-04-28 15:00:00,70.79065001,86.54729063,267.0352906,614.9364479,64.70843725,64.77026393,0,64.77026393,62.75723911,2.013024817,66.95705011,0.26005415,66.69699597,1.951198132,64.74579783,1.235529922,1.51053518,-2.751235435,2.751235435,0.999357341,0.999357341,0.242321669,2.012044618,64.71427126,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.32464532,1.413636404,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.457719476,62.20581907,61.7823648,63.61945547,0,0.26005415,-0.000422896,90.02423016,0.000422896,89.97576984,0,0,61.7823648,63.61945547,103.420026,4,7,67% +2018-04-28 16:00:00,58.97250059,95.89158646,478.9694657,764.309923,85.00636105,254.7364545,168.6826747,86.05377977,82.44310563,3.61067415,118.6949477,0,118.6949477,2.563255426,116.1316923,1.029264303,1.673623909,-1.495595858,1.495595858,0.785915645,0.785915645,0.17747762,2.974873523,95.68215856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.247449,1.85706983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.155285741,91.97333026,81.40273474,93.83040009,168.6826747,0,0.220699313,77.2498897,-0.220699313,102.7501103,0.823447414,0,220.304047,93.83040009,281.7141673,4,8,28% +2018-04-28 17:00:00,47.3709269,106.8698221,666.6498388,838.4600103,98.80330501,465.6567821,364.8072732,100.8495089,95.82402082,5.025488079,164.6162558,0,164.6162558,2.979284192,161.6369716,0.826778644,1.865230267,-0.869108798,0.869108798,0.678780047,0.678780047,0.148208699,3.650452418,117.4110981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.10969366,2.158481255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.644740351,112.8600135,94.75443401,115.0184947,364.8072732,0,0.435092036,64.20884957,-0.435092036,115.7911504,0.935081785,0,435.8790704,115.0184947,511.1563748,4,9,17% +2018-04-28 18:00:00,36.55523572,121.5028816,813.8874067,878.2974381,108.3659608,662.8370437,551.6032894,111.2337543,105.0983273,6.135427059,200.6040582,0,200.6040582,3.267633546,197.3364246,0.638009222,2.120625335,-0.461536809,0.461536809,0.609081132,0.609081132,0.133146133,4.056317762,130.4651227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0245098,2.367389381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93878841,125.4080384,103.9632982,127.7754278,551.6032894,0,0.628037001,51.0945559,-0.628037001,128.9054441,0.970386856,0,639.2318802,127.7754278,722.8583422,4,10,13% +2018-04-28 19:00:00,27.75648068,143.5109098,909.5670457,898.7686171,114.2152696,824.3808633,706.7529049,117.6279584,110.7712579,6.856700593,223.9790726,0,223.9790726,3.444011789,220.5350608,0.484441977,2.504737888,-0.149372637,0.149372637,0.555697915,0.555697915,0.125571029,4.192799628,134.8548487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4775464,2.495174817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.037669058,129.62761,109.5152155,132.1227848,706.7529049,0,0.786356901,38.15365021,-0.786356901,141.8463498,0.98641564,0,806.6673348,132.1227848,893.139055,4,11,11% +2018-04-28 20:00:00,23.56040037,176.094211,946.7638027,905.8451929,116.4305812,934.6451706,814.5882955,120.056875,112.9197696,7.137105459,233.0646568,0,233.0646568,3.510811606,229.5538452,0.41120656,3.073423775,0.120885283,-0.120885283,0.509481089,0.509481089,0.122977432,4.066750132,130.8006636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5427776,2.543571057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946346627,125.7305731,111.4891243,128.2741442,814.5882955,0,0.899257734,25.93932943,-0.899257734,154.0606706,0.994398588,0,921.5145749,128.2741442,1005.467437,4,12,9% +2018-04-28 21:00:00,26.33116732,210.3795489,922.8341549,901.3440394,115.0088145,982.9334502,864.4358621,118.4975881,111.5408744,6.956713666,227.2197651,0,227.2197651,3.467940095,223.751825,0.459565566,3.671815807,0.381220396,-0.381220396,0.464961162,0.464961162,0.124625659,3.698472332,118.9555836,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2173312,2.512510794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679530615,114.3446317,109.8968618,116.8571425,864.4358621,0,0.959052065,16.45306606,-0.959052065,163.5469339,0.997865187,0,972.487315,116.8571425,1048.967978,4,13,8% +2018-04-28 22:00:00,34.39514448,234.6144018,839.5059125,884.1304161,109.9556441,963.2192827,850.2506567,112.968626,106.6400758,6.328550177,206.8634963,0,206.8634963,3.315568364,203.5479279,0.600308518,4.094793784,0.660055576,-0.660055576,0.417277538,0.417277538,0.130976617,3.123775878,100.4713702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5064971,2.402117993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.26316499,96.57690261,104.7696621,98.9790206,850.2506567,0,0.961680134,15.9127893,-0.961680134,164.0872107,0.998007661,0,953.3263308,98.9790206,1018.10612,4,14,7% +2018-04-28 23:00:00,44.90650149,250.4739048,702.8146907,849.3850014,101.2294936,873.857146,770.3819811,103.4751649,98.17705091,5.298114009,173.4580014,0,173.4580014,3.05244273,170.4055587,0.783766306,4.371594329,0.996707506,-0.996707506,0.359706668,0.359706668,0.144034402,2.394381617,77.01154343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.37151568,2.211484367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.734721331,74.02642482,96.10623701,76.23790919,770.3819811,0,0.906987973,24.90762511,-0.906987973,155.0923749,0.994872477,0,862.5380671,76.23790919,912.4342539,4,15,6% +2018-04-28 00:00:00,56.38883925,262.0371213,522.975053,784.9411984,88.4678816,716.7117163,626.9690609,89.74265542,85.80024856,3.942406855,129.4689894,0,129.4689894,2.667633042,126.8013564,0.984170906,4.573410529,1.471405535,-1.471405535,0.278528524,0.278528524,0.169162718,1.579228048,50.79340259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.47446249,1.932691058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144145345,48.82455059,83.61860783,50.75724164,626.9690609,0,0.798746533,36.98942876,-0.798746533,143.0105712,0.987401919,0,702.6890618,50.75724164,735.9086613,4,16,5% +2018-04-28 01:00:00,68.17995132,271.6309064,314.8325049,658.6213281,70.02776231,494.7268737,424.4373664,70.28950731,67.9161669,2.373340408,78.44638122,0,78.44638122,2.111595409,76.33478581,1.189964634,4.740853668,2.321753782,-2.321753782,0.133110409,0.133110409,0.222428629,0.773546332,24.87990909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28360294,1.529843685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.560431684,23.91551497,65.84403463,25.44535866,424.4373664,0,0.644433073,49.87681748,-0.644433073,130.1231825,0.972412424,0,478.5722029,25.44535866,495.2256812,4,17,3% +2018-04-28 02:00:00,79.89112043,280.5215168,103.9824064,370.8260177,38.89528334,207.228322,168.7220117,38.50631034,37.72244704,0.783863302,26.3845746,0,26.3845746,1.172836301,25.2117383,1.394363095,4.896024091,4.831750805,-4.831750805,0,0,0.374056388,0.293209075,9.43061176,0.228469096,1,0.204082961,0,0.938343129,0.977105093,0.724496596,1,36.52472849,0.849715908,0.035268415,0.312029739,0.904857042,0.629353638,0.961238037,0.922476074,0.202987954,9.065062735,36.72771644,9.914778643,130.1742461,0,0.454989681,62.93572968,-0.454989681,117.0642703,0.940107398,0,159.1054882,9.914778643,165.5945125,4,18,4% +2018-04-28 03:00:00,91.40340547,289.5374194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595290373,5.053381277,-31.47927297,31.47927297,1,0,#DIV/0!,0,0,1,0.79647604,0,0.031756255,0.961238037,1,0.638390448,0.913893852,0,0,0.115824807,0.214314858,0.724496596,0.448993192,0.975707972,0.936946009,0,0,0,0,0,0,0.240675319,76.07359835,-0.240675319,103.9264016,0.842251236,0,0,0,0,4,19,0% +2018-04-28 04:00:00,102.1725677,299.3697709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783247712,5.224988183,-3.018799126,3.018799126,1,0.953601256,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.019566982,88.87882298,-0.019566982,91.12117702,0,0,0,0,0,4,20,0% +2018-04-28 05:00:00,111.8641644,310.7030411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952397983,5.422791063,-1.219465311,1.219465311,1,0.73869454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194624171,101.2227696,0.194624171,78.77723043,0,0.793094603,0,0,0,4,21,0% +2018-04-28 06:00:00,119.8761887,324.1913069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092234188,5.658205711,-0.474219689,0.474219689,1,0.611250033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387294042,112.7862313,0.387294042,67.21376874,0,0.920899124,0,0,0,4,22,0% +2018-04-28 07:00:00,125.4114759,340.1660316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188843174,5.937017255,0.004075863,-0.004075863,1,0.529456676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545307411,123.0456735,0.545307411,56.95432647,0,0.9583086,0,0,0,4,23,0% +2018-04-29 08:00:00,127.6483134,358.0519386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227883354,6.249185221,0.401684956,-0.401684956,1,0.461461517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657892643,131.1393511,0.657892643,48.86064886,0,0.973999758,0,0,0,4,0,0% +2018-04-29 09:00:00,126.1635616,16.14570012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201969546,0.281795627,0.80699138,-0.80699138,1,0.392150036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717375223,135.838197,0.717375223,44.16180302,0,0.980301468,0,0,0,4,1,0% +2018-04-29 10:00:00,121.2445116,32.59734245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116115927,0.568930953,1.309391144,-1.309391144,1,0.306234616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719700225,136.029736,0.719700225,43.97026401,0,0.98052663,0,0,0,4,2,0% +2018-04-29 11:00:00,113.6702672,46.58347712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983920424,0.813035053,2.093393339,-2.093393339,1,0.172162345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664708194,131.6599427,0.664708194,48.34005727,0,0.974779023,0,0,0,4,3,0% +2018-04-29 12:00:00,104.2657842,58.30012638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819781231,1.01752916,3.851253471,-3.851253471,1,0,#DIV/0!,0,0,0.113828265,1,0.254045553,0,0.931306019,0.970067982,0.724496596,1,0,0,0.018475464,0.312029739,0.948942838,0.673439434,0.961238037,0.922476074,0,0,0,0,0,0,-0.556145685,123.789663,0.556145685,56.21033695,0,0.9600955,0,0,0,4,4,0% +2018-04-29 13:00:00,93.67498494,68.3693095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634936914,1.193269558,15.56306077,-15.56306077,1,0,#DIV/0!,0,0,0.68064244,1,0.064166502,0,0.955086281,0.993848244,0.724496596,1,0,0,0.087965275,0.312029739,0.781006604,0.5055032,0.961238037,0.922476074,0,0,0,0,0,0,-0.401409736,113.6663375,0.401409736,66.33366246,0,0.925438995,0,0,0,4,5,0% +2018-04-29 14:00:00,82.23854041,77.47584613,66.05189072,272.184478,29.29361967,28.90823601,0,28.90823601,28.41030895,0.497927053,73.81256825,56.91421191,16.89835634,0.883310715,16.01504563,1.435333302,1.352208606,-7.274513607,7.274513607,0.225831217,0.225831217,0.443494037,0.283405368,9.115290822,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.3090696,0.639955606,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205326224,8.761964255,27.51439583,9.401919861,0,56.91421191,-0.209101608,102.0697094,0.209101608,77.93029064,0,0.8108818,27.51439583,55.55261847,63.87247356,4,6,132% +2018-04-29 15:00:00,70.58250967,86.30018624,270.6469245,617.6393368,65.31331487,67.11303804,1.728909759,65.38412829,63.34387745,2.040250839,67.59091772,0,67.59091772,1.969437424,65.62148029,1.231897188,1.506222395,-2.722858975,2.722858975,0.995789998,0.995789998,0.241322952,2.033734213,65.4118832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8885444,1.426850709,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473433514,62.87639019,62.36197792,64.3032409,1.728909759,0,0.002799222,89.83961617,-0.002799222,90.16038383,0,0,62.36197792,64.3032409,104.447163,4,7,67% +2018-04-29 16:00:00,58.76323146,95.62028348,482.3387828,765.2247127,85.51175195,257.6861834,171.1168528,86.56933061,82.93325713,3.636073485,119.527117,0,119.527117,2.578494826,116.9486222,1.025611868,1.668888778,-1.486695849,1.486695849,0.784393653,0.784393653,0.177285665,2.991097927,96.20399117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.71860127,1.868110724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167040266,92.47493561,81.88564154,94.34304634,171.1168528,0,0.223616475,77.07846475,-0.223616475,102.9215352,0.826402879,0,223.2971013,94.34304634,285.0427383,4,8,28% +2018-04-29 17:00:00,47.15036872,106.5684075,669.6953987,838.7637673,99.27176452,468.4326519,367.1058505,101.3268013,96.27835454,5.048446796,165.3688129,0,165.3688129,2.993409974,162.3754029,0.822929178,1.859969589,-0.865813272,0.865813272,0.678216479,0.678216479,0.148234204,3.664747312,117.870871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54641651,2.168715336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.655096952,113.3019647,95.20151347,115.47068,367.1058505,0,0.437674903,64.04437535,-0.437674903,115.9556247,0.935759956,0,438.7244681,115.47068,514.2977188,4,9,17% +2018-04-29 18:00:00,36.30880945,121.1797177,816.6204817,878.3496471,108.8136189,665.2963896,553.6078726,111.688517,105.5324868,6.156030133,201.2802224,0,201.2802224,3.28113209,197.9990903,0.633708272,2.114985061,-0.460637295,0.460637295,0.608927306,0.608927306,0.133248702,4.069365138,130.8847712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4418405,2.37716903,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.94824119,125.8114205,104.3900817,128.1885895,553.6078726,0,0.630281887,50.92907732,-0.630281887,129.0709227,0.970670416,0,641.7608656,128.1885895,725.6577336,4,10,13% +2018-04-29 19:00:00,27.46887577,143.2489763,912.0351391,898.7054965,114.6483221,826.5015888,708.4350305,118.0665583,111.1912521,6.875306124,224.5905486,0,224.5905486,3.457069917,221.1334787,0.479422324,2.500166287,-0.149835453,0.149835453,0.555777061,0.555777061,0.125706036,4.205064872,135.2493411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8812609,2.504635387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046555185,130.0068111,109.9278161,132.5114465,708.4350305,0,0.788283852,37.97457723,-0.788283852,142.0254228,0.986571072,0,808.8493233,132.5114465,895.5754148,4,11,11% +2018-04-29 20:00:00,23.24883246,176.1359048,949.0368405,905.7298659,116.8529156,936.4635502,815.9799406,120.4836096,113.329369,7.154240579,233.6285161,0,233.6285161,3.523546545,230.1049696,0.405768674,3.074151469,0.119395719,-0.119395719,0.509735819,0.509735819,0.123127902,4.078639847,131.1830777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9365002,2.552797477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.954960685,126.0981641,111.8914609,128.6509616,815.9799406,0,0.900908727,25.72222635,-0.900908727,154.2777736,0.994500482,0,923.3839052,128.6509616,1007.583387,4,12,9% +2018-04-29 21:00:00,26.06302883,210.7401549,924.996696,901.2163223,115.423919,984.5239289,865.6074511,118.9164778,111.943462,6.973015815,227.7566152,0,227.7566152,3.480457027,224.2761582,0.454885666,3.678109569,0.378698443,-0.378698443,0.465392442,0.465392442,0.124783061,3.710358515,119.3378841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6043136,2.521579268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.688142113,114.7121134,110.2924558,117.2336927,865.6074511,0,0.960487987,16.16004886,-0.960487987,163.8399511,0.997943128,0,974.1194633,117.2336927,1050.84657,4,13,8% +2018-04-29 22:00:00,34.18659312,235.0254705,841.6498774,884.0328379,110.3672384,964.6868393,851.302868,113.3839713,107.039259,6.34471229,207.3957365,0,207.3957365,3.32797945,204.0677571,0.59666861,4.101968286,0.656190244,-0.656190244,0.417938549,0.417938549,0.131132008,3.135971985,100.8636389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8902072,2.411109783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.272001028,96.95396621,105.1622082,99.365076,851.302868,0,0.962976523,15.63958942,-0.962976523,164.3604106,0.998077654,0,954.8285777,99.365076,1019.861033,4,14,7% +2018-04-29 23:00:00,44.73458841,250.8423745,705.0312782,849.39531,101.6423245,875.3383361,771.4460791,103.8922569,98.57743336,5.314823581,174.0078871,0,174.0078871,3.064891103,170.942996,0.780765857,4.378025339,0.990670962,-0.990670962,0.360738977,0.360738977,0.144167114,2.407080379,77.41997927,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.75637852,2.220503171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743921541,74.41902889,96.50030006,76.63953206,771.4460791,0,0.908229737,24.7381507,-0.908229737,155.2618493,0.99494785,0,864.0489177,76.63953206,914.2079586,4,15,6% +2018-04-29 00:00:00,56.2336358,262.3613955,525.3431333,785.2573587,88.89105807,718.3939858,628.2230627,90.17092314,86.2106647,3.960258444,130.0559182,0,130.0559182,2.680393374,127.3755249,0.981462095,4.579070181,1.461006076,-1.461006076,0.280306936,0.280306936,0.16920571,1.59235304,51.21554744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86897009,1.941935875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153654357,49.23033228,84.02262445,51.17226815,628.2230627,0,0.800021873,36.8678089,-0.800021873,143.1321911,0.987501709,0,704.3939723,51.17226815,737.8851984,4,16,5% +2018-04-29 01:00:00,68.02827662,271.9235384,317.3869558,659.8846812,70.49178599,496.9297004,426.1709049,70.75879549,68.36619856,2.392596937,79.07972944,0,79.07972944,2.125587435,76.954142,1.187317411,4.745961059,2.299362372,-2.299362372,0.136939566,0.136939566,0.222100451,0.786268789,25.28910703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71619049,1.539980861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.569649061,24.3088516,66.28583955,25.84883246,426.1709049,0,0.645826335,49.77234049,-0.645826335,130.2276595,0.972579806,0,480.7710557,25.84883246,497.6885995,4,17,4% +2018-04-29 02:00:00,79.73419163,280.7935481,106.478291,375.5380614,39.55175904,210.6194791,171.4576732,39.16180591,38.35912757,0.802678334,27.00952588,0,27.00952588,1.192631465,25.81689441,1.39162417,4.900771932,4.742955518,-4.742955518,0,0,0.371453736,0.298157866,9.589781893,0.219322989,1,0.207795622,0,0.937838829,0.976600792,0.724496596,1,37.13544847,0.864057437,0.033989447,0.312029739,0.908136578,0.632633174,0.961238037,0.922476074,0.206640517,9.21806312,37.34208899,10.08212056,133.8530639,0,0.456565368,62.83430193,-0.456565368,117.1656981,0.940486656,0,163.2291095,10.08212056,169.8276558,4,18,4% +2018-04-29 03:00:00,91.23099491,289.796175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592281241,5.057897414,-35.75569464,35.75569464,1,0,#DIV/0!,0,0,1,0.822843846,0,0.027960284,0.961238037,1,0.64826676,0.923770165,0,0,0.115824807,0.225503031,0.724496596,0.448993192,0.974154168,0.935392205,0,0,0,0,0,0,0.242534745,75.96380849,-0.242534745,104.0361915,0.843843971,0,0,0,0,4,19,0% +2018-04-29 04:00:00,101.978536,299.6179249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77986122,5.229319288,-3.053667992,3.053667992,1,0.947638328,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021734832,88.75458779,-0.021734832,91.24541221,0,0,0,0,0,4,20,0% +2018-04-29 05:00:00,111.6416444,310.9362286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948514278,5.426860952,-1.224346572,1.224346572,1,0.739529285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192123328,101.0767252,0.192123328,78.92327478,0,0.789750501,0,0,0,4,21,0% +2018-04-29 06:00:00,119.6204886,324.3938717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087771378,5.661741135,-0.473171784,0.473171784,1,0.61107083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384458631,112.6101355,0.384458631,67.38986447,0,0.919946996,0,0,0,4,22,0% +2018-04-29 07:00:00,125.1240634,340.3088485,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183826879,5.93950988,0.007662916,-0.007662916,1,0.528843254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542158949,122.8307291,0.542158949,57.16927089,0,0.957776123,0,0,0,4,23,0% +2018-04-30 08:00:00,127.3410628,358.1037512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222520819,6.250089523,0.407296921,-0.407296921,1,0.460501814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654474254,130.8797971,0.654474254,49.12020288,0,0.973602801,0,0,0,4,0,0% +2018-04-30 09:00:00,125.8560986,16.09862498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196603303,0.280974011,0.815230419,-0.815230419,1,0.390741077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713748669,135.5407417,0.713748669,44.45925832,0,0.97994733,0,0,0,4,1,0% +2018-04-30 10:00:00,120.953572,32.47358956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111038073,0.566771058,1.322320466,-1.322320466,1,0.304023572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715941659,135.7204248,0.715941659,44.27957522,0,0.980161907,0,0,0,4,2,0% +2018-04-30 11:00:00,113.4030576,46.41321853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979256737,0.81006348,2.117492673,-2.117492673,1,0.168041116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660902923,131.3687712,0.660902923,48.63122876,0,0.974345924,0,0,0,4,3,0% +2018-04-30 12:00:00,104.0218352,58.10405929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815523518,1.014107143,3.918281789,-3.918281789,1,0,#DIV/0!,0,0,0.122739268,1,0.249879817,0,0.93191325,0.970675214,0.724496596,1,0,0,0.019842601,0.312029739,0.945270893,0.669767489,0.961238037,0.922476074,0,0,0,0,0,0,-0.552382308,123.5306033,0.552382308,56.46939675,0,0.959482981,0,0,0,4,4,0% +2018-04-30 13:00:00,93.45012916,68.15679073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63101244,1.189560406,16.57819149,-16.57819149,1,0,#DIV/0!,0,0,0.697417521,1,0.060247211,0,0.955490169,0.994252132,0.724496596,1,0,0,0.089589546,0.312029739,0.777540849,0.502037445,0.961238037,0.922476074,0,0,0,0,0,0,-0.397774055,113.4390975,0.397774055,66.56090255,0,0.9243005,0,0,0,4,5,0% +2018-04-30 14:00:00,82.02984801,77.24842915,69.13050896,280.3637601,30.25605336,29.8648567,0,29.8648567,29.34372172,0.521134977,75.34867033,57.67484643,17.6738239,0.912331642,16.76149226,1.431690933,1.348239431,-7.085286584,7.085286584,0.258190944,0.258190944,0.437665711,0.3037463,9.769525136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.20630146,0.660981169,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.220063161,9.390839163,28.42636462,10.05182033,0,57.67484643,-0.205714342,101.8713191,0.205714342,78.12868086,0,0.806944511,28.42636462,56.59222108,65.46484147,4,6,130% +2018-04-30 15:00:00,70.37880084,86.05456024,274.1754527,620.2164008,65.90672112,69.67861493,3.692374241,65.98624069,63.91939031,2.066850374,68.46434361,0,68.46434361,1.987330812,66.4770128,1.228341798,1.501935413,-2.695641602,2.695641602,0.991135553,0.991135553,0.240381553,2.052933036,66.02938335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.44174926,1.439814408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487342996,63.46995483,62.92909226,64.90976924,3.692374241,0,0.005953364,89.65889533,-0.005953364,90.34110467,0,0,62.92909226,64.90976924,105.411238,4,7,68% +2018-04-30 16:00:00,58.55865395,95.35009778,485.6200646,766.0864323,86.00989261,260.567269,173.4900828,87.07718618,83.41637701,3.660809174,120.3377226,0,120.3377226,2.593515605,117.744207,1.022041317,1.664173148,-1.478112666,1.478112666,0.782925843,0.782925843,0.177113548,3.00688841,96.71186738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.18299447,1.878993227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178480417,92.96312554,82.36147489,94.84211877,173.4900828,0,0.226462806,76.91108869,-0.226462806,103.0889113,0.829213192,0,226.2217402,94.84211877,288.2940101,4,8,27% +2018-04-30 17:00:00,46.93482433,106.2672719,672.6548173,839.0383289,99.73439646,471.1312545,369.3334619,101.7977926,96.72703643,5.070756143,166.1003082,0,166.1003082,3.007360034,163.0929482,0.819167218,1.854713782,-0.862645317,0.862645317,0.677674727,0.677674727,0.148269802,3.678660322,118.3183613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.97770661,2.178822107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66517688,113.7321093,95.64288349,115.9109314,369.3334619,0,0.440186639,63.88420996,-0.440186639,116.11579,0.936411818,0,441.4911021,115.9109314,517.3524885,4,9,17% +2018-04-30 18:00:00,36.06767367,120.8548682,819.2725008,878.3827547,109.2562372,667.6777872,555.5400064,112.1377808,105.9617586,6.176022173,201.9365817,0,201.9365817,3.294478666,198.642103,0.629499659,2.109315367,-0.459796984,0.459796984,0.608783605,0.608783605,0.133357628,4.082074558,131.2935498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8544728,2.386838578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957449122,126.2043541,104.8119219,128.5911927,555.5400064,0,0.632457779,50.76831329,-0.632457779,129.2316867,0.970943339,0,644.2097909,128.5911927,728.3701547,4,10,13% +2018-04-30 19:00:00,27.18635714,142.9820574,914.4294513,898.6282915,115.0769505,828.5480526,710.0477413,118.5003113,111.6069558,6.89335546,225.184002,0,225.184002,3.469994645,221.7140074,0.474491444,2.495507672,-0.150324463,0.150324463,0.555860687,0.555860687,0.12584563,4.217035561,135.6343596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2808511,2.513999308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.055227908,130.3769055,110.336079,132.8909049,710.0477413,0,0.790146213,37.80082259,-0.790146213,142.1991774,0.986720572,0,810.9547928,132.8909049,897.9292322,4,11,11% +2018-04-30 20:00:00,22.94141351,176.1735632,951.2448705,905.6031531,117.2713901,938.2143025,817.3081918,120.9061106,113.735225,7.170885641,234.1764971,0,234.1764971,3.536165096,230.640332,0.400403201,3.074808732,0.11790061,-0.11790061,0.509991498,0.509991498,0.123282021,4.09027845,131.5574152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3266244,2.561939575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.963392813,126.4579915,112.2900172,129.0199311,817.3081918,0,0.902501486,25.51115021,-0.902501486,154.4888498,0.994598429,0,925.183461,129.0199311,1009.624425,4,12,9% +2018-04-30 21:00:00,25.79851868,211.0991981,927.1038279,901.0786114,115.8357005,986.0554015,866.7236745,119.331727,112.3428267,6.988900265,228.2799305,0,228.2799305,3.492873758,224.7870567,0.450269093,3.684376056,0.376188367,-0.376188367,0.46582169,0.46582169,0.124943611,3.722035683,119.713462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9881982,2.530575147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696602182,115.0731332,110.6848004,117.6037083,866.7236745,0,0.961873541,15.87232171,-0.961873541,164.1276783,0.998018115,0,975.690728,117.6037083,1052.660003,4,13,8% +2018-04-30 22:00:00,33.98091607,235.4331681,843.7481707,883.9256416,110.7760079,966.1050689,852.3088362,113.7962327,107.4357026,6.360530111,207.9168179,0,207.9168179,3.340305359,204.5765126,0.593078868,4.109083952,0.652357462,-0.652357462,0.418593993,0.418593993,0.131290368,3.147998099,101.25044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2712838,2.420039862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280713907,97.32577421,105.5519977,99.74581408,852.3088362,0,0.964231374,15.37063609,-0.964231374,164.6293639,0.998145226,0,956.2799937,99.74581408,1021.561634,4,14,7% +2018-04-30 23:00:00,44.56470536,251.2066252,707.2114141,849.3950284,102.0527551,876.7798388,772.4730925,104.3067463,98.97548797,5.331258367,174.5488623,0,174.5488623,3.0772671,171.4715952,0.777800839,4.384382712,0.98470123,-0.98470123,0.361759862,0.361759862,0.144303037,2.419644134,77.82407283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.13900375,2.229469538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753023938,74.80745898,96.89202769,77.03692852,772.4730925,0,0.90943915,24.5720391,-0.90943915,155.4279609,0.99502106,0,865.5190234,77.03692852,915.9381524,4,15,6% +2018-04-30 00:00:00,56.0798453,262.6813333,527.6829514,785.5587081,89.31209164,720.0444891,629.4475896,90.59689954,86.61900255,3.977896982,130.63593,0,130.63593,2.69308909,127.9428409,0.978777944,4.584654149,1.450752438,-1.450752438,0.282060411,0.282060411,0.16925332,1.605376077,51.63441308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.26147997,1.951133878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.163089503,49.63296186,84.42456947,51.58409574,629.4475896,0,0.801273773,36.7480886,-0.801273773,143.2519114,0.987599355,0,706.0666031,51.58409574,739.8273621,4,16,5% +2018-04-30 01:00:00,67.87763226,272.2118494,319.9205164,661.1165443,70.95331937,499.1029224,427.8774114,71.22551099,68.813815,2.411695988,79.70793748,0,79.70793748,2.139504369,77.56843311,1.184688171,4.750993034,2.27740085,-2.27740085,0.140695207,0.140695207,0.221784211,0.798935656,25.69651702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14645644,1.550063632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.578826163,24.70046957,66.7252826,26.2505332,427.8774114,0,0.647204211,49.66885848,-0.647204211,130.3311415,0.972744631,0,482.9407374,26.2505332,500.1211864,4,17,4% +2018-04-30 02:00:00,79.57807898,281.0612012,108.9688559,380.1465832,40.20207224,213.9688945,174.1576098,39.8112847,38.98983143,0.821453264,27.63300152,0,27.63300152,1.212240808,26.42076071,1.388899491,4.905443361,4.65730086,-4.65730086,0,0,0.368931764,0.303060202,9.747457858,0.210292519,1,0.211505305,0,0.93733192,0.976093883,0.724496596,1,37.73991616,0.878264339,0.032716725,0.312029739,0.911412899,0.635909495,0.961238037,0.922476074,0.210277048,9.369627256,37.95019321,10.24789159,137.5335673,0,0.458132777,62.7333155,-0.458132777,117.2666845,0.940861334,0,167.3502089,10.24789159,174.057249,4,18,4% +2018-04-30 03:00:00,91.05944423,290.0503625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589287117,5.062333822,-41.39314194,41.39314194,1,0,#DIV/0!,0,0,1,0.848686551,0,0.024153893,0.961238037,1,0.658284013,0.933787417,0,0,0.115824807,0.236856901,0.724496596,0.448993192,0.972549663,0.9337877,0,0,0,0,0,0,0.244389861,75.85422072,-0.244389861,104.1457793,0.845408861,0,0,0,0,4,19,0% +2018-04-30 04:00:00,101.7855658,299.8611841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776493255,5.233564962,-3.089613857,3.089613857,1,0.941491223,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02390077,88.63045632,-0.02390077,91.36954368,0,0,0,0,0,4,20,0% +2018-04-30 05:00:00,111.4206256,311.1641308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944656772,5.430838597,-1.229387199,1.229387199,1,0.740391283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1896244,100.9308654,0.1896244,79.06913457,0,0.786320853,0,0,0,4,21,0% +2018-04-30 06:00:00,119.3670011,324.590952,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083347187,5.665180835,-0.472192047,0.472192047,1,0.610903285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381627541,112.4345328,0.381627541,67.56546723,0,0.918982202,0,0,0,4,22,0% +2018-04-30 07:00:00,124.8397818,340.4466928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178865229,5.941915716,0.011200631,-0.011200631,1,0.528238269,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539019454,122.6169138,0.539019454,57.38308622,0,0.95723897,0,0,0,4,23,0% +2018-05-01 08:00:00,127.0377956,358.1522128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217227808,6.250935337,0.412863919,-0.412863919,1,0.459549801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651071403,130.6224299,0.651071403,49.37757013,0,0.973203508,0,0,0,5,0,0% +2018-05-01 09:00:00,125.5530864,16.05037104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191314744,0.280131821,0.823426482,-0.823426482,1,0.389339468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710145696,135.2467708,0.710145696,44.75322924,0,0.979591913,0,0,0,5,1,0% +2018-05-01 10:00:00,120.6671554,32.35032484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106039161,0.564619683,1.33521938,-1.33521938,1,0.301817728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712215634,135.4154726,0.712215634,44.58452744,0,0.979796543,0,0,0,5,2,0% +2018-05-01 11:00:00,113.1402745,46.24430329,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974670306,0.807115353,2.141651082,-2.141651082,1,0.163909785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657139456,131.0820746,0.657139456,48.91792539,0,0.97391265,0,0,0,5,3,0% +2018-05-01 12:00:00,103.7822209,57.90965927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81134146,1.010714223,3.986303505,-3.986303505,1,0,#DIV/0!,0,0,0.131600973,1,0.245786944,0,0.932506263,0.971268226,0.724496596,1,0,0,0.021191411,0.312029739,0.941662544,0.66615914,0.961238037,0.922476074,0,0,0,0,0,0,-0.548669661,123.275794,0.548669661,56.72420603,0,0.958870485,0,0,0,5,4,0% +2018-05-01 13:00:00,93.22958637,67.94601129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627163242,1.185881611,17.71072386,-17.71072386,1,0,#DIV/0!,0,0,0.71416799,1,0.056403078,0,0.955882783,0.994644747,0.724496596,1,0,0,0.09119184,0.312029739,0.7741427,0.498639296,0.961238037,0.922476074,0,0,0,0,0,0,-0.39419708,113.2159074,0.39419708,66.78409258,0,0.923159893,0,0,0,5,5,0% +2018-05-01 14:00:00,81.82536781,77.02270518,72.1748412,288.2214712,31.19243003,30.79594761,0,30.79594761,30.25186317,0.54408444,76.77321752,58.33302481,18.44019271,0.940566853,17.49962586,1.42812208,1.344299804,-6.909125056,6.909125056,0.288316339,0.288316339,0.432178714,0.324214949,10.42786725,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.07924157,0.681437483,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234892627,10.02366264,29.31413419,10.70510013,0,58.33302481,-0.202389588,101.6767305,0.202389588,78.32326947,0,0.802951718,29.31413419,57.54370262,66.97533668,5,6,128% +2018-05-01 15:00:00,70.17959884,85.81048094,277.6194409,622.6705797,66.48871192,72.20442975,5.627785206,66.57664455,64.48383194,2.092812613,69.3169276,0,69.3169276,2.004879982,67.31204762,1.224865067,1.497675425,-2.669542089,2.669542089,0.986672274,0.986672274,0.239495879,2.071600302,66.62978678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.98431202,1.452528722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500867367,64.04708544,63.48517938,65.49961417,5.627785206,0,0.009038142,89.48214555,-0.009038142,90.51785445,0,0,63.48517938,65.49961417,106.3533669,5,7,68% +2018-05-01 16:00:00,58.35883911,95.08112301,488.8125133,766.8958494,86.5007564,263.378438,175.8011234,87.57731465,83.89243945,3.6848752,121.1265701,0,121.1265701,2.608316959,118.5182531,1.01855389,1.659478653,-1.469841135,1.469841135,0.781511328,0.781511328,0.176961011,3.022243637,97.20574426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.6406038,1.889716758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189605227,93.43785878,82.83020903,95.32757554,175.8011234,0,0.229237286,76.74782823,-0.229237286,103.2521718,0.831885396,0,229.0765961,95.32757554,291.4665877,5,8,27% +2018-05-01 17:00:00,46.72436664,105.9665384,675.5277361,839.2839998,100.191181,473.7518966,371.489436,102.2624606,97.17004722,5.092413419,166.8106544,0,166.8106544,3.021133773,163.7895206,0.815494039,1.849464991,-0.859604247,0.859604247,0.677154673,0.677154673,0.148315422,3.692191276,118.7535632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.40354543,2.188801134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67498001,114.150442,96.07852544,116.3392431,371.489436,0,0.442626615,63.72841001,-0.442626615,116.27159,0.937037972,0,444.1782333,116.3392431,520.3199411,5,9,17% +2018-05-01 18:00:00,35.83191422,120.5284649,821.843481,878.3969474,109.6938136,669.9810113,557.3994676,112.5815437,106.3861404,6.195403308,202.5731402,0,202.5731402,3.307673206,199.265467,0.62538488,2.103618554,-0.459016032,0.459016032,0.608650054,0.608650054,0.133472877,4.094446991,131.6914898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2624047,2.396397978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.966412907,126.5868691,105.2288176,128.9832671,557.3994676,0,0.634564441,50.61231267,-0.634564441,129.3876873,0.971205796,0,646.5784113,128.9832671,730.9953799,5,10,13% +2018-05-01 19:00:00,26.90903046,142.7101511,916.7503046,898.5371595,115.5011691,830.5204443,711.5912106,118.9292337,112.0183827,6.910851033,225.7595115,0,225.7595115,3.482786402,222.2767251,0.46965118,2.490762013,-0.150839969,0.150839969,0.555948843,0.555948843,0.12598978,4.228713472,136.0099614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6763303,2.523266892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063688515,130.7379482,110.7400188,133.2612151,711.5912106,0,0.791944109,37.63243549,-0.791944109,142.3675645,0.986864231,0,812.983932,133.2612151,900.200732,5,11,11% +2018-05-01 20:00:00,22.63822538,176.206931,953.3884335,905.4652137,117.6860315,939.8979655,818.5735573,121.3244082,114.1373635,7.187044724,234.7087317,0,234.7087317,3.548668066,231.1600636,0.39511157,3.075391111,0.116399677,-0.116399677,0.510248172,0.510248172,0.123439752,4.101668103,131.9237456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7131752,2.570997934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971644578,126.8101222,112.6848198,129.3811202,818.5735573,0,0.90403645,25.30617988,-0.90403645,154.6938201,0.994692496,0,926.9137942,129.3811202,1011.59115,5,12,9% +2018-05-01 21:00:00,25.53766137,211.4563607,929.1562082,900.9310824,116.2441934,987.5286662,867.7852921,119.7433741,112.7390021,7.004371975,228.7898714,0,228.7898714,3.505191327,225.2846801,0.445716274,3.690609719,0.373689951,-0.373689951,0.466248944,0.466248944,0.125107267,3.733505932,120.0823846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.369017,2.539499184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.704912338,115.4277556,111.0739294,117.9672548,867.7852921,0,0.963209405,15.59001751,-0.963209405,164.4099825,0.998090208,0,977.201932,117.9672548,1054.409141,5,13,8% +2018-05-01 22:00:00,33.77809815,235.8372259,845.8014574,883.8090325,111.1819899,967.4749217,853.2694704,114.2054513,107.8294426,6.376008654,208.4269029,0,208.4269029,3.352547212,205.0743557,0.589539028,4.11613609,0.648557048,-0.648557048,0.419243902,0.419243902,0.131451641,3.159855808,101.6318247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6497618,2.428909043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289304777,97.69237568,105.9390665,100.1212847,853.2694704,0,0.965445519,15.10596181,-0.965445519,164.8940382,0.998210439,0,957.6815588,100.1212847,1023.208937,5,14,7% +2018-05-01 23:00:00,44.39682952,251.5664689,709.3556606,849.3844114,102.4608203,878.1826355,773.4639643,104.7186711,99.37124854,5.347422603,175.0810643,0,175.0810643,3.089571772,171.9914926,0.774870853,4.390663169,0.978798027,-0.978798027,0.362769369,0.362769369,0.144442099,2.432073565,78.22384605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.51942386,2.238384232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762029019,75.19173621,97.28145288,77.43012044,773.4639643,0,0.910617094,24.40923089,-0.910617094,155.5907691,0.995092179,0,866.9493949,77.43012044,917.6258601,5,15,6% +2018-05-01 00:00:00,55.92745262,262.9967964,529.9948604,785.8456028,89.73101102,721.6641191,630.643504,91.02061509,87.02528996,3.995325129,131.209111,0,131.209111,2.705721054,128.50339,0.97611819,4.59016002,1.440643532,-1.440643532,0.283789136,0.283789136,0.169305436,1.618296569,52.04998053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65201888,1.960285693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.172450356,50.0324211,84.82446924,51.9927068,630.643504,0,0.802503064,36.63020345,-0.802503064,143.3697966,0.987694942,0,707.7078683,51.9927068,741.7360551,5,16,5% +2018-05-01 01:00:00,67.72801639,272.4957286,322.4332187,662.3176136,71.41238812,501.2472798,429.5576009,71.68967894,69.25904114,2.430637799,80.33101386,0,80.33101386,2.153346986,78.17766687,1.182076882,4.755947662,2.255861948,-2.255861948,0.144378576,0.144378576,0.221479624,0.811544478,26.10206009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.57442474,1.560092561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587961212,25.090293,67.16238595,26.65038556,429.5576009,0,0.648567382,49.56632448,-0.648567382,130.4336755,0.972907008,0,485.0819862,26.65038556,502.5241305,5,17,4% +2018-05-01 02:00:00,79.42279788,281.3243824,111.4533285,384.6533379,40.84627414,217.2769777,176.8221872,40.45479053,39.61460827,0.840182269,28.25481574,0,28.25481574,1.231665872,27.02314987,1.386189324,4.910036738,4.574644901,-4.574644901,0,0,0.366487701,0.307916468,9.903652066,0.201377887,1,0.21521092,0,0.936822567,0.97558453,0.724496596,1,38.3381752,0.892337731,0.031450546,0.312029739,0.914685042,0.639181638,0.961238037,0.922476074,0.213897848,9.51976707,38.55207305,10.4121048,141.2141088,0,0.459692325,62.63274442,-0.459692325,117.3672556,0.941231597,0,171.4672542,10.4121048,178.2817686,5,18,4% +2018-05-01 03:00:00,90.88878459,290.2999009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586308544,5.066689089,-49.16178332,49.16178332,1,0,#DIV/0!,0,0,1,0.874012792,0,0.020338199,0.961238037,1,0.668440003,0.943943407,0,0,0.115824807,0.248373994,0.724496596,0.448993192,0.970893806,0.932131843,0,0,0,0,0,0,0.246240799,75.74482705,-0.246240799,104.255173,0.846946728,0,0,0,0,5,19,0% +2018-05-01 04:00:00,101.5937069,300.099482,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773144685,5.237724045,-3.126676189,3.126676189,1,0.935153191,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.026064569,88.50644107,-0.026064569,91.49355893,0,0,0,0,0,5,20,0% +2018-05-01 05:00:00,111.2011757,311.3867021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940826647,5.434723199,-1.234591472,1.234591472,1,0.741281266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.187128001,100.7852248,0.187128001,79.21477516,0,0.782803216,0,0,0,5,21,0% +2018-05-01 06:00:00,119.1158079,324.7825301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078963039,5.668524503,-0.471283573,0.471283573,1,0.610747927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378801772,112.2594814,0.378801772,67.74051858,0,0.918004841,0,0,0,5,22,0% +2018-05-01 07:00:00,124.5587183,340.5795712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173959746,5.944234882,0.014685519,-0.014685519,1,0.527642318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535890288,122.4043087,0.535890288,57.5956913,0,0.95669732,0,0,0,5,23,0% +2018-05-02 08:00:00,126.7385986,358.1973287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212005834,6.251722757,0.418381504,-0.418381504,1,0.458606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647685755,130.3673442,0.647685755,49.63265585,0,0.972802069,0,0,0,5,0,0% +2018-05-02 09:00:00,125.2546128,16.00092372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186105396,0.279268802,0.831573299,-0.831573299,1,0.38794628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706568199,134.9563761,0.706568199,45.04362391,0,0.979235423,0,0,0,5,1,0% +2018-05-02 10:00:00,120.3853531,32.22752761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101120783,0.562476467,1.348077822,-1.348077822,1,0.299618805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708524188,135.1149658,0.708524188,44.88503425,0,0.979430779,0,0,0,5,2,0% +2018-05-02 11:00:00,112.8820101,46.07672361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970162743,0.804190536,2.165849307,-2.165849307,1,0.159771644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653419873,130.7999446,0.653419873,49.20005535,0,0.973479524,0,0,0,5,3,0% +2018-05-02 12:00:00,103.5470308,57.71693825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807236618,1.007350607,4.055282568,-4.055282568,1,0,#DIV/0!,0,0,0.140406422,1,0.241768515,0,0.933085009,0.971846973,0.724496596,1,0,0,0.022521145,0.312029739,0.938119204,0.662615799,0.961238037,0.922476074,0,0,0,0,0,0,-0.545009765,123.025331,0.545009765,56.97466903,0,0.958258525,0,0,0,5,4,0% +2018-05-02 13:00:00,93.01344018,67.73700295,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62339078,1.182233727,18.98106241,-18.98106241,1,0,#DIV/0!,0,0,0.730878888,1,0.052635427,0,0.95626419,0.995026153,0.724496596,1,0,0,0.092771183,0.312029739,0.770813369,0.495309965,0.961238037,0.922476074,0,0,0,0,0,0,-0.390680675,112.9968596,0.390680675,67.00314041,0,0.922018241,0,0,0,5,5,0% +2018-05-02 14:00:00,81.62518884,76.79872553,75.17992212,295.7610987,32.10287929,31.70159704,0,31.70159704,31.13485903,0.566738009,78.0909218,58.89465902,19.19626278,0.968020258,18.22824252,1.424628298,1.340390622,-6.744884202,6.744884202,0.31640318,0.31640318,0.427014,0.344751601,11.08839655,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.92801077,0.701327381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.249771361,10.65858853,30.17778214,11.35991591,0,58.89465902,-0.19912916,101.4860393,0.19912916,78.51396072,0,0.798906689,30.17778214,58.41125295,68.40677896,5,6,127% +2018-05-02 15:00:00,69.98497496,85.56802114,280.9775524,625.0047159,67.05934253,74.68809173,7.532708326,67.15538341,65.03725593,2.118127475,70.14834722,0,70.14834722,2.0220866,68.12626062,1.22146824,1.493443703,-2.644521408,2.644521408,0.982393485,0.982393485,0.238664413,2.089735107,67.21306445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.51628421,1.464994858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514005971,64.60775412,64.03029018,66.07274898,7.532708326,0,0.012052242,89.30944066,-0.012052242,90.69055934,0,0,64.03029018,66.07274898,107.2735829,5,7,68% +2018-05-02 16:00:00,58.16385376,94.81345847,491.9154117,767.6537204,86.98432042,266.1185064,178.048818,88.06968838,84.36142222,3.708266159,121.893485,0,121.893485,2.622898199,119.2705868,1.015150754,1.654807025,-1.461876169,1.461876169,0.780149238,0.780149238,0.176827801,3.03716256,97.68558811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.09140788,1.900280816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.200413936,93.89910295,83.29182182,95.79938376,178.048818,0,0.231938976,76.5887457,-0.231938976,103.4112543,0.834426055,0,231.8603947,95.79938376,294.5591754,5,8,27% +2018-05-02 17:00:00,46.51906406,105.6663382,678.3138664,839.5010857,100.6421019,476.2939678,373.5731802,102.7207877,97.60737122,5.113416446,167.4997809,0,167.4997809,3.034730703,164.4650502,0.811910833,1.84422551,-0.856689302,0.856689302,0.676656189,0.676656189,0.148370993,3.705340231,119.1764789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82391789,2.198652064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684506384,114.5569646,96.50842427,116.7556166,373.5731802,0,0.444994279,63.57702728,-0.444994279,116.4229727,0.937639005,0,446.7852092,116.7556166,523.1994251,5,9,17% +2018-05-02 18:00:00,35.60161281,120.2006539,824.3334948,878.3924134,110.1263486,672.2059112,559.1861042,113.019807,106.8056329,6.214174084,203.1899153,0,203.1899153,3.320715734,199.8691996,0.621365363,2.097897173,-0.458294511,0.458294511,0.608526667,0.608526667,0.133594412,4.106483556,132.0786271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6656369,2.405847245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.975133358,126.9590002,105.6407702,129.3648475,559.1861042,0,0.636601701,50.4611189,-0.636601701,129.5388811,0.971457954,0,648.866559,129.3648475,733.5332644,5,10,13% +2018-05-02 19:00:00,26.63699944,142.4332749,918.9980594,898.4322588,115.9209941,832.4190142,713.0656702,119.353344,112.4255484,6.927795559,226.317165,0,226.317165,3.495445675,222.8217193,0.464903343,2.485929612,-0.151382183,0.151382183,0.556041568,0.556041568,0.126138454,4.240100448,136.3762056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0677135,2.532438493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.07193834,131.0899962,111.1396518,133.6224347,713.0656702,0,0.793677724,37.46945887,-0.793677724,142.5305411,0.987002138,0,814.9369925,133.6224347,902.3902036,5,11,11% +2018-05-02 20:00:00,22.33935048,176.235756,955.4680878,905.316205,118.0968676,941.5151196,819.7765863,121.7385333,114.5358113,7.202722037,235.2253562,0,235.2253562,3.561056289,231.6642999,0.389895219,3.075894202,0.114892736,-0.114892736,0.510505875,0.510505875,0.123601059,4.112810946,132.2821377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0961784,2.579973159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97971753,127.1546224,113.0758959,129.7345955,819.7765863,0,0.905514097,25.10738742,-0.905514097,154.8926126,0.994782748,0,928.5755012,129.7345955,1013.484199,5,12,9% +2018-05-02 21:00:00,25.28048183,211.8113203,931.1544912,900.7739062,116.649432,988.9445414,868.7930843,120.1514571,113.1320212,7.019435876,229.2865977,0,229.2865977,3.517410766,225.7691869,0.441227644,3.696804933,0.371203077,-0.371203077,0.466674225,0.466674225,0.125273983,3.744771251,120.444716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.746802,2.548352126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.713074024,115.7760424,111.459876,118.3243945,868.7930843,0,0.964496283,15.31326899,-0.964496283,164.686731,0.998159468,0,978.6539192,118.3243945,1056.094869,5,13,8% +2018-05-02 22:00:00,33.57812553,236.2373754,847.8103788,883.6832066,111.5852197,968.7973437,854.1856772,114.6116664,108.2205137,6.391152752,208.926148,0,208.926148,3.364706081,205.5614419,0.586048847,4.123120016,0.644788942,-0.644788942,0.419888286,0.419888286,0.131615775,3.17154653,102.0078385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0256741,2.437718101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297774664,98.05381443,106.3234488,100.4915325,854.1856772,0,0.966619792,14.84559752,-0.966619792,165.1544025,0.998273354,0,959.0342495,100.4915325,1024.803948,5,14,7% +2018-05-02 23:00:00,44.2309407,251.9217197,711.4645376,849.3636962,102.8665521,879.547678,774.4196117,105.1280663,99.76474605,5.363320208,175.6046203,0,175.6046203,3.101806084,172.5028142,0.771975546,4.396863467,0.972961232,-0.972961232,0.36376752,0.36376752,0.14458423,2.444369134,78.6193138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.89766864,2.247247949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770937116,75.57187486,97.66860576,77.81912281,774.4196117,0,0.911764436,24.24966621,-0.911764436,155.7503338,0.995161274,0,868.3410132,77.81912281,919.2720727,5,15,6% +2018-05-02 00:00:00,55.77644595,263.3076486,532.2791564,786.1183649,90.1478403,723.2537144,631.811619,91.44209542,87.4295503,4.012545116,131.775534,0,131.775534,2.718289995,129.057244,0.973482627,4.595585415,1.430678537,-1.430678537,0.285493251,0.285493251,0.169361958,1.631113685,52.46222303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.0406093,1.969391848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181736312,50.42868428,85.22234561,52.39807613,631.811619,0,0.803710544,36.51409144,-0.803710544,143.4859086,0.987788548,0,709.3186273,52.39807613,743.6121202,5,16,5% +2018-05-02 01:00:00,67.57943085,272.7750674,324.9250296,663.48851,71.86901025,503.3634324,431.2121158,72.15131655,69.70189442,2.449422122,80.9489511,0,80.9489511,2.167115827,78.78183528,1.179483575,4.760823044,2.234739107,-2.234739107,0.147990795,0.147990795,0.221186439,0.824092585,26.50565034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.00011216,1.57006804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.597052273,25.4782393,67.59716443,27.04830734,431.2121158,0,0.649916478,49.46469501,-0.649916478,130.535305,0.973067038,0,487.1954605,27.04830734,504.8980367,5,17,4% +2018-05-02 02:00:00,79.26836744,281.5829997,113.9308967,389.0599408,41.48440303,220.5440606,179.4517062,41.09235445,40.23349522,0.858859224,28.87477277,0,28.87477277,1.250907813,27.62386495,1.383494004,4.914550462,4.494856357,-4.494856357,0,0,0.36411899,0.312726953,10.05837381,0.192579494,1,0.218911264,0,0.936310955,0.975072918,0.724496596,1,38.93025822,0.906278452,0.030191239,0.312029739,0.917951949,0.642448545,0.961238037,0.922476074,0.217503113,9.66849149,39.14776134,10.57476994,144.8929874,0,0.461244367,62.53256657,-0.461244367,117.4674334,0.941597592,0,175.5786494,10.57476994,182.4996248,5,18,4% +2018-05-02 03:00:00,90.1227182,290.5447119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572938163,5.070961847,-354.7879087,354.7879087,1,0,#DIV/0!,0,0,1,0.983389383,0,0.002818578,0.961238037,1,0.716535078,0.992038483,0,0,0.115824807,0.302982367,0.724496596,0.448993192,0.962661598,0.923899635,0,0,0,0,0,0,0.257887476,75.05525069,-0.257887476,104.9447493,0.856116991,0,0,0,0,5,19,0% +2018-05-02 04:00:00,101.4030124,300.3327551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769816438,5.241795428,-3.164894612,3.164894612,1,0.928617456,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.028225926,88.38255877,-0.028225926,91.61744123,0,0,0,0,0,5,20,0% +2018-05-02 05:00:00,110.9833651,311.6039001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.937025137,5.438514018,-1.239963349,1.239963349,1,0.742199911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184634818,100.6398422,0.184634818,79.36015776,0,0.779195173,0,0,0,5,21,0% +2018-05-02 06:00:00,118.8669928,324.9685922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074620396,5.671771899,-0.47044935,0.47044935,1,0.610605267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.375982391,112.0850436,0.375982391,67.91495638,0,0.917015049,0,0,0,5,22,0% +2018-05-02 07:00:00,124.2809615,340.7074944,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169111976,5.946467563,0.018114113,-0.018114113,1,0.527055994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532772859,122.1929979,0.532772859,57.80700207,0,0.956151376,0,0,0,5,23,0% +2018-05-03 08:00:00,126.4435585,358.2391087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206856414,6.252451957,0.423845189,-0.423845189,1,0.457671894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644319011,130.1146364,0.644319011,49.88536358,0,0.972398689,0,0,0,5,0,0% +2018-05-03 09:00:00,124.9607645,15.95027396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180976776,0.278384797,0.839664475,-0.839664475,1,0.386562608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703018091,134.6696502,0.703018091,45.33034978,0,0.978878075,0,0,0,5,1,0% +2018-05-03 10:00:00,120.1082545,32.10518285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0962845,0.560341148,1.360885417,-1.360885417,1,0.297428577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704869356,134.8189905,0.704869356,45.18100952,0,0.979064869,0,0,0,5,2,0% +2018-05-03 11:00:00,112.6283544,45.91047679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965735616,0.801288981,2.190067119,-2.190067119,1,0.155630155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64974623,130.5224714,0.64974623,49.47752856,0,0.973046879,0,0,0,5,3,0% +2018-05-03 12:00:00,103.316351,57.52591261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803210497,1.00401658,4.125177696,-4.125177696,1,0,#DIV/0!,0,0,0.149148517,1,0.237826064,0,0.933649454,0.972411417,0.724496596,1,0,0,0.023831063,0.312029739,0.934642244,0.65913884,0.961238037,0.922476074,0,0,0,0,0,0,-0.541404599,122.7793072,0.541404599,57.22069275,0,0.957647626,0,0,0,5,4,0% +2018-05-03 13:00:00,92.8017707,67.52980157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61969645,1.178617381,20.41455603,-20.41455603,1,0,#DIV/0!,0,0,0.74753474,1,0.048945533,0,0.956634461,0.995396424,0.724496596,1,0,0,0.094326606,0.312029739,0.767554015,0.49205061,0.961238037,0.922476074,0,0,0,0,0,0,-0.387226642,112.7820427,0.387226642,67.21795733,0,0.920876653,0,0,0,5,5,0% +2018-05-03 14:00:00,81.42939505,76.57654561,78.14114664,302.9869594,32.98759038,32.58195379,0,32.58195379,31.99289282,0.58906097,79.30660694,59.36568369,19.94092325,0.994697561,18.94622569,1.421211052,1.336512851,-6.591552207,6.591552207,0.342624495,0.342624495,0.422153907,0.36529917,11.74927703,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.75278549,0.720654997,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264658005,11.29385199,31.01744349,12.01450698,0,59.36568369,-0.195934781,101.2993361,0.195934781,78.70066391,0,0.794813046,31.01744349,59.19912689,69.76208806,5,6,125% +2018-05-03 15:00:00,69.79499626,85.32725821,284.2485491,627.2215587,67.61866804,77.12733138,9.404830041,67.72250134,65.57971571,2.14278563,70.95830397,0,70.95830397,2.038952328,68.91935164,1.218152486,1.489241597,-2.62054256,2.62054256,0.978292861,0.978292861,0.23788571,2.107336839,67.77919667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.03771719,1.477214021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526758366,65.15194195,64.56447555,66.62915597,9.404830041,0,0.01499443,89.14085022,-0.01499443,90.85914978,0,0,64.56447555,66.62915597,108.1719256,5,7,68% +2018-05-03 16:00:00,57.97376018,94.54720919,494.9281254,768.3607914,87.46056562,268.7863816,180.2320975,88.55428414,84.82330687,3.730977268,122.6383128,0,122.6383128,2.637258749,120.0010541,1.011832995,1.650160099,-1.454212748,1.454212748,0.778838716,0.778838716,0.17671367,3.051644427,98.15137474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.53538897,1.910684986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.210905999,94.34683476,83.74629497,96.25751975,180.2320975,0,0.234567015,76.43389881,-0.234567015,103.5661012,0.8368413,0,234.5719578,96.25751975,297.5705793,5,8,27% +2018-05-03 17:00:00,46.3189803,105.3668112,681.0129908,839.689894,101.0871468,478.7569428,375.5841829,103.17276,98.03899637,5.133763585,168.1676346,0,168.1676346,3.048150448,165.1194841,0.808418712,1.838997778,-0.853899649,0.853899649,0.67617913,0.67617913,0.148436444,3.718107477,119.5871174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.2388124,2.208374624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69375621,114.9516859,96.93256861,117.1600605,375.5841829,0,0.447289155,63.43010851,-0.447289155,116.5698915,0.938215488,0,449.3114659,117.1600605,525.9903823,5,9,17% +2018-05-03 18:00:00,35.37684668,119.8715956,826.7426705,878.3693434,110.5538461,674.3524117,560.8998365,113.4525752,107.2202397,6.232335468,203.7869385,0,203.7869385,3.33360636,200.4533322,0.617442454,2.092154023,-0.457632404,0.457632404,0.60841344,0.60841344,0.133722197,4.118185522,132.4550025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0641727,2.41518646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.983611392,127.3207866,106.0477841,129.7359731,560.8998365,0,0.638569459,50.31476981,-0.638569459,129.6852302,0.971699982,0,651.0741453,129.7359731,735.9837449,5,10,13% +2018-05-03 19:00:00,26.37036552,142.1514664,921.1731135,898.3137482,116.3364437,834.2440732,714.4714105,119.7726627,112.8284707,6.944192034,226.8570593,0,226.8570593,3.507973014,223.3490863,0.460249703,2.481011126,-0.151951231,0.151951231,0.556138881,0.556138881,0.126291619,4.251198391,136.7331537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4550177,2.541514507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.079978763,131.4331082,111.5349965,133.9746227,714.4714105,0,0.795347296,37.31192908,-0.795347296,142.6880709,0.987134381,0,816.81429,133.9746227,904.4980011,5,11,11% +2018-05-03 20:00:00,22.04487178,176.2597898,957.4844089,905.1562832,118.5039267,943.0663868,820.9178688,122.148518,114.9305961,7.217921918,235.7265109,0,235.7265109,3.573330623,232.1531803,0.384755596,3.076313672,0.11337969,-0.11337969,0.510764621,0.510764621,0.123765907,4.123709092,132.6326595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4756606,2.588865873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.987613199,127.4915573,113.4632738,130.0804232,820.9178688,0,0.90693495,24.91483759,-0.90693495,155.0851624,0.994869254,0,930.1692218,130.0804232,1015.304257,5,12,9% +2018-05-03 21:00:00,25.02700547,212.1637509,933.0993266,900.6072494,117.0514501,990.3038645,869.7478506,120.5560139,113.5219171,7.034096867,229.7702679,0,229.7702679,3.529533096,226.2407348,0.436803647,3.702956006,0.368727727,-0.368727727,0.467097535,0.467097535,0.125443719,3.755833527,120.8005168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1215847,2.557134713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721088605,116.1180516,111.8426733,118.6751863,869.7478506,0,0.965734899,15.04220839,-0.965734899,164.9577916,0.998225957,0,980.047554,118.6751863,1057.71809,5,13,8% +2018-05-03 22:00:00,33.38098596,236.6333491,849.775551,883.5483504,111.9857316,970.0732753,855.0583596,115.0149156,108.6089486,6.40596705,209.4147037,0,209.4147037,3.37678299,206.0379207,0.582608113,4.130031062,0.6410532,-0.6410532,0.420527136,0.420527136,0.131782718,3.183071504,102.3785213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3990525,2.446467781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306124469,98.41012883,106.705177,100.8565966,855.0583596,0,0.967755029,14.58957258,-0.967755029,165.4104274,0.998334032,0,960.3390371,100.8565966,1026.347662,5,14,7% +2018-05-03 23:00:00,44.06702143,252.272194,713.5385214,849.333103,103.2699796,880.8758877,775.3409243,105.5349634,100.1560086,5.378954774,176.1196465,0,176.1196465,3.113970909,173.0056756,0.769114616,4.402980397,0.967190879,-0.967190879,0.364754308,0.364754308,0.144729368,2.456531078,79.01048373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.27376513,2.256061323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779748403,75.94788227,98.05351353,78.20394359,775.3409243,0,0.912882027,24.09328504,-0.912882027,155.906715,0.99522841,0,869.6948288,78.20394359,920.8777459,5,15,6% +2018-05-03 00:00:00,55.62681691,263.6137557,534.5360776,786.3772836,90.56259893,724.8140584,632.9526973,91.86136118,87.83180244,4.029558742,132.3352572,0,132.3352572,2.730796498,129.6044607,0.970871107,4.600927991,1.420856885,-1.420856885,0.287172852,0.287172852,0.1694228,1.643826346,52.8711059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.42726935,1.978452767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190946592,50.82171804,85.61821594,52.8001708,632.9526973,0,0.804896976,36.39969313,-0.804896976,143.6003069,0.987880249,0,710.8996839,52.8001708,745.4563397,5,16,5% +2018-05-03 01:00:00,67.43188117,273.0497589,327.3958505,664.6297816,72.32319611,505.4519593,432.8415262,72.61043312,70.14238491,2.468048214,81.56172562,0,81.56172562,2.180811207,79.38091442,1.176908347,4.765617315,2.214026439,-2.214026439,0.15153287,0.15153287,0.220904437,0.836577085,26.90719477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.42352837,1.579990296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.60609725,25.86421908,68.02962562,27.44420937,432.8415262,0,0.651252078,49.36393018,-0.651252078,130.6360698,0.973224813,0,489.2817391,27.44420937,507.2434252,5,17,4% +2018-05-03 02:00:00,79.11481047,281.8369635,116.4007063,393.367872,42.11648453,223.7703964,182.0464016,41.72399482,40.84651713,0.877477692,29.49266629,0,29.49266629,1.269967402,28.22269889,1.38081393,4.918982968,4.417813637,-4.417813637,0,0,0.361823273,0.31749185,10.21162928,0.183897939,1,0.222605024,0,0.935797285,0.974559248,0.724496596,1,39.51618703,0.92008706,0.028939167,0.312029739,0.921212466,0.645709062,0.961238037,0.922476074,0.221092933,9.815806484,39.73727996,10.73589354,148.5684436,0,0.462789197,62.43276375,-0.462789197,117.5672362,0.941959449,0,179.6827291,10.73589354,186.7091568,5,18,4% +2018-05-03 03:00:00,89.98256512,290.7847194,0.003076372,0.517228902,0.002918981,0.136947342,0.134093187,0.002854154,0.002830963,2.3191E-05,0.00083392,0,0.00083392,8.80181E-05,0.000745902,1.570492031,5.075150769,2488.265213,-2488.265213,0,0,0.948838857,2.20045E-05,0.000707741,0.997652517,1,0.000401886,0,0.961202586,0.999964549,0.724496596,1,0.002721387,6.37688E-05,0.115641332,0.312029739,0.724848321,0.449344917,0.961238037,0.922476074,1.59357E-05,0.000680307,0.002737322,0.000744076,0.000314781,0,0.259253083,74.97425264,-0.259253083,105.0257474,0.857138263,0,0.003007134,0.000744076,0.003494117,5,19,16% +2018-05-03 04:00:00,101.2135389,300.5609428,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766509501,5.245778055,-3.204308782,3.204308782,1,0.921877236,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030384465,88.25883039,-0.030384465,91.74116961,0,0,0,0,0,5,20,0% +2018-05-03 05:00:00,110.7672676,311.8156858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933253523,5.442210377,-1.24550644,1.24550644,1,0.743147835,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.182145608,100.4947604,0.182145608,79.50523959,0,0.775494342,0,0,0,5,21,0% +2018-05-03 06:00:00,118.6206415,325.1491282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070320755,5.674922848,-0.469692243,0.469692243,1,0.610475794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.373170524,111.9112851,0.373170524,68.08871491,0,0.916012997,0,0,0,5,22,0% +2018-05-03 07:00:00,124.0066012,340.8304769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164323485,5.948614013,0.021482972,-0.021482972,1,0.526479885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52966863,121.9830682,0.52966863,58.01693179,0,0.955601357,0,0,0,5,23,0% +2018-05-04 08:00:00,126.1527628,358.2775673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201781072,6.253123186,0.429250455,-0.429250455,1,0.456747539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640972903,129.8644047,0.640972903,50.13559529,0,0.971993582,0,0,0,5,0,0% +2018-05-04 09:00:00,124.6716278,15.89841806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175930388,0.277479741,0.847693504,-0.847693504,1,0.385189563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6994973,134.3866862,0.6994973,45.61331375,0,0.978520096,0,0,0,5,1,0% +2018-05-04 10:00:00,119.8359473,31.98328103,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091531842,0.55821356,1.373631498,-1.373631498,1,0.295248869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701253166,134.5276324,0.701253166,45.47236763,0,0.978699074,0,0,0,5,2,0% +2018-05-04 11:00:00,112.3793945,45.74556501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961390446,0.798410728,2.214283321,-2.214283321,1,0.15148894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64612056,130.2497433,0.64612056,49.75025672,0,0.972615061,0,0,0,5,3,0% +2018-05-04 12:00:00,103.0902647,57.33660304,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799264547,1.000712505,4.195942095,-4.195942095,1,0,#DIV/0!,0,0,0.157820036,1,0.233961079,0,0.93419957,0.972961533,0.724496596,1,0,0,0.025120429,0.312029739,0.931233001,0.655729597,0.961238037,0.922476074,0,0,0,0,0,0,-0.537856096,122.5378129,0.537856096,57.4621871,0,0.957038332,0,0,0,5,4,0% +2018-05-04 13:00:00,92.5946544,67.32444697,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616081589,1.175033267,22.04308641,-22.04308641,1,0,#DIV/0!,0,0,0.764119572,1,0.045334615,0,0.956993675,0.995755638,0.724496596,1,0,0,0.095857151,0.312029739,0.764365739,0.488862335,0.961238037,0.922476074,0,0,0,0,0,0,-0.383836728,112.5715419,0.383836728,67.42845815,0,0.91973628,0,0,0,5,5,0% +2018-05-04 14:00:00,81.23806541,76.35622479,81.05424811,309.9040208,33.84679902,33.43721431,0,33.43721431,32.82619315,0.61102116,80.42514911,59.75200237,20.67314674,1.020605872,19.65254087,1.417871719,1.332667527,-6.448231661,6.448231661,0.367133752,0.367133752,0.417582049,0.385803243,12.40875849,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.55378546,0.73942548,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.279513136,11.92777065,31.8332986,12.66719613,0,59.75200237,-0.19280809,101.1167067,0.19280809,78.88329332,0,0.790674782,31.8332986,59.91159758,71.04424098,5,6,123% +2018-05-04 15:00:00,69.60972547,85.08827385,287.4312923,629.323769,68.16674353,79.52000038,11.24195718,68.2780432,66.11126471,2.166778493,71.7465234,0,71.7465234,2.055478826,69.69104457,1.214918901,1.485070533,-2.597570451,2.597570451,0.974364399,0.974364399,0.237158394,2.124405182,68.32817324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.5486623,1.489187412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.539124322,65.6796391,65.08778662,67.16882651,11.24195718,0,0.017863551,88.97643948,-0.017863551,91.02356052,0,0,65.08778662,67.16882651,109.0484402,5,7,68% +2018-05-04 16:00:00,57.78861606,94.28248563,497.8501028,769.0177987,87.92947687,271.3810636,182.3499805,89.03108308,85.27807872,3.753004368,123.3609195,0,123.3609195,2.651398153,120.7095213,1.00860162,1.645539801,-1.446845927,1.446845927,0.777578915,0.777578915,0.176618376,3.065688779,98.60308936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97253297,1.920928936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221081084,94.78104005,84.19361405,96.70196898,182.3499805,0,0.237120624,76.28334064,-0.237120624,103.7166594,0.839136857,0,237.2102037,96.70196898,300.4997083,5,8,27% +2018-05-04 17:00:00,46.12417421,105.0681052,683.6249626,839.8507339,101.526307,481.1403813,377.5220133,103.618368,98.46491427,5.153453732,168.8141797,0,168.8141797,3.061392749,165.7527869,0.805018705,1.833784375,-0.85123438,0.85123438,0.675723342,0.675723342,0.148511702,3.730493531,119.9854954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.64822089,2.217968625,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.702729864,115.3346221,97.35095075,117.5525907,377.5220133,0,0.449510845,63.28769537,-0.449510845,116.7123046,0.938767979,0,451.7565281,117.5525907,528.6923476,5,9,17% +2018-05-04 18:00:00,35.15768842,119.5414647,829.0711923,878.3279304,110.9763126,676.4205128,562.5406566,113.8798562,107.6299673,6.249888849,204.3642545,0,204.3642545,3.346345285,201.0179092,0.61361742,2.086392152,-0.457029606,0.457029606,0.608310355,0.608310355,0.133856192,4.129554305,132.8206617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4580185,2.424415768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.991848036,127.6722721,106.4498666,130.0966879,562.5406566,0,0.640467685,50.17329753,-0.640467685,129.8267025,0.971932049,0,653.2011595,130.0966879,738.3468397,5,10,13% +2018-05-04 19:00:00,26.10922764,141.8647842,923.2759016,898.1817875,116.7475381,835.9959928,715.80878,120.1872128,113.2271691,6.96004374,227.3793007,0,227.3793007,3.520369027,223.8589317,0.455691987,2.476007577,-0.152547154,0.152547154,0.556240789,0.556240789,0.126449242,4.262009269,137.0808686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8382617,2.550495376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.087811207,131.7673451,111.9260729,134.3178404,715.80878,0,0.796953122,37.15987587,-0.796953122,142.8401241,0.987261053,0,818.6162026,134.3178404,906.5245428,5,11,11% +2018-05-04 20:00:00,21.75487263,176.2787887,959.4379889,904.9856026,118.9072383,944.55243,821.9980348,122.5543952,115.3217464,7.232648829,236.2123404,0,236.2123404,3.585491957,232.6268484,0.379694156,3.076645264,0.111860528,-0.111860528,0.511024413,0.511024413,0.123934261,4.134364629,132.9753782,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8516491,2.597676717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9953331,127.8209915,113.8469822,130.4186683,821.9980348,0,0.908299571,24.72858751,-0.908299571,155.2714125,0.994952082,0,931.6956386,130.4186683,1017.052049,5,12,9% +2018-05-04 21:00:00,24.77725814,212.5133226,934.9913601,900.4312736,117.4502814,991.6074916,870.6504097,120.9570818,113.908722,7.048359814,230.2410395,0,230.2410395,3.541559328,226.6994802,0.432444734,3.709057184,0.366263976,-0.366263976,0.467518861,0.467518861,0.125616435,3.766694538,121.1498443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4933963,2.565847677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728957371,116.4538385,112.2223537,119.0196861,870.6504097,0,0.966926,14.77696701,-0.966926,165.223033,0.998289735,0,981.3837203,119.0196861,1059.279724,5,13,8% +2018-05-04 22:00:00,33.18666867,237.0248805,851.6975659,883.4046414,112.3835578,971.3036515,855.8884166,115.4152349,108.9947789,6.42045601,209.8927144,0,209.8927144,3.388778919,206.5039355,0.579216636,4.136864573,0.63734999,-0.63734999,0.421160422,0.421160422,0.131952423,3.194431804,102.7439076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7699273,2.455158791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.314354968,98.76135204,107.0842823,101.2165108,855.8884166,0,0.968852071,14.33791465,-0.968852071,165.6620854,0.998392534,0,961.5968876,101.2165108,1027.84107,5,14,7% +2018-05-04 23:00:00,43.90505692,252.6177102,715.5780463,849.292835,103.6711287,882.1681561,776.2287648,105.9393912,100.5450616,5.394329575,176.626249,0,176.626249,3.126067035,173.500182,0.766287802,4.409010792,0.961487151,-0.961487151,0.365729703,0.365729703,0.144877458,2.46855942,79.39735656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64773767,2.264824926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.788462896,76.31975915,98.43620057,78.58458408,776.2287648,0,0.913970698,23.94002721,-0.913970698,156.0599728,0.995293651,0,871.0117619,78.58458408,922.4438005,5,15,6% +2018-05-04 00:00:00,55.47856036,263.9149856,536.7658068,786.6226165,90.97530191,726.345881,634.0674527,92.27842828,88.2320609,4.046367382,132.8883253,0,132.8883253,2.743241016,130.1450843,0.968283543,4.606185445,1.411178245,-1.411178245,0.288827997,0.288827997,0.169487886,1.656433237,53.27658687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.812013,1.987468778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.200080242,51.21148177,86.01209324,53.19895055,634.0674527,0,0.806063085,36.28695163,-0.806063085,143.7130484,0.987970116,0,712.4517878,53.19895055,747.2694369,5,16,5% +2018-05-04 01:00:00,67.28537645,273.3196985,329.8455202,665.7419085,72.77494884,507.5133632,434.4463327,73.06703048,70.58051562,2.486514859,82.16929841,0,82.16929841,2.194433218,79.97486519,1.174351358,4.770328649,2.19371866,-2.19371866,0.155005704,0.155005704,0.220633431,0.848994875,27.30659358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.84467627,1.589859397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.615093897,26.24813641,68.45977017,27.83799581,434.4463327,0,0.65257471,49.26399359,-0.65257471,130.7360064,0.97338042,0,491.3413241,27.83799581,509.5607356,5,17,4% +2018-05-04 02:00:00,78.96215332,282.0861865,118.8618623,397.5784856,42.74253233,226.9561629,184.6064447,42.3497182,41.45368728,0.896030925,30.1082797,0,30.1082797,1.288845053,28.81943464,1.37814956,4.92333273,4.343403908,-4.343403908,0,0,0.359598373,0.322211263,10.36342182,0.175333992,1,0.226290783,0,0.93528178,0.974043743,0.724496596,1,40.09597344,0.933763853,0.02769472,0.312029739,0.924465351,0.648961946,0.961238037,0.922476074,0.2246673,9.961715245,40.32064074,10.8954791,152.2386599,0,0.464327048,62.33332154,-0.464327048,117.6666785,0.942317279,0,183.7777605,10.8954791,190.9086336,5,18,4% +2018-05-04 03:00:00,89.84250683,291.0198502,0.035452415,0.761353658,0.033359628,0.231052685,0.198431718,0.032620967,0.032353712,0.000267255,0.009601764,0,0.009601764,0.001005916,0.008595848,1.568047552,5.079254575,274.4788135,-274.4788135,0,0,0.940969132,0.000251479,0.008088428,0.978906731,1,0.003643252,0,0.960915228,0.999677191,0.724496596,1,0.031115628,0.000728783,0.114165968,0.312029739,0.727686496,0.452183092,0.961238037,0.922476074,0.000181536,0.007774905,0.031297164,0.008503687,0.004185574,0,0.260630149,74.89254374,-0.260630149,105.1074563,0.858157268,0,0.034889045,0.008503687,0.040454538,5,19,16% +2018-05-04 04:00:00,101.0253462,300.7839878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763224919,5.249670925,-3.244958288,3.244958288,1,0.914925761,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032539743,88.13528087,-0.032539743,91.86471913,0,0,0,0,0,5,20,0% +2018-05-04 05:00:00,110.5529591,312.0220241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929513134,5.445811659,-1.251223997,1.251223997,1,0.744125595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.179661194,100.3500259,0.179661194,79.64997406,0,0.771698387,0,0,0,5,21,0% +2018-05-04 06:00:00,118.3768417,325.3241321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066065645,5.677977242,-0.469014996,0.469014996,1,0.610359978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370367356,111.7382748,0.370367356,68.26172515,0,0.914998901,0,0,0,5,22,0% +2018-05-04 07:00:00,123.7357279,340.9485372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159595855,5.950674554,0.024788687,-0.024788687,1,0.525914575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526579104,121.7746087,0.526579104,58.22539127,0,0.955047505,0,0,0,5,23,0% +2018-05-05 08:00:00,125.8662988,358.312723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196781331,6.253736769,0.43459275,-0.43459275,1,0.455833952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637649194,129.6167483,0.637649194,50.38325169,0,0.971586978,0,0,0,5,0,0% +2018-05-05 09:00:00,124.3872878,15.84535741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17096772,0.276553658,0.855653772,-0.855653772,1,0.383828277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696007765,134.1075775,0.696007765,45.89242245,0,0.978161721,0,0,0,5,1,0% +2018-05-05 10:00:00,119.5685171,31.86181779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086864306,0.556093626,1.386305108,-1.386305108,1,0.293081554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69767764,134.2409764,0.69767764,45.75902359,0,0.978333664,0,0,0,5,2,0% +2018-05-05 11:00:00,112.135215,45.58199509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957128708,0.795555894,2.238475756,-2.238475756,1,0.14735179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642544866,129.9818466,0.642544866,50.01815344,0,0.972184422,0,0,0,5,3,0% +2018-05-05 12:00:00,102.8688518,57.14903424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795400162,0.997438812,4.267523158,-4.267523158,1,0,#DIV/0!,0,0,0.166413639,1,0.230174997,0,0.934735338,0.973497301,0.724496596,1,0,0,0.026388515,0.312029739,0.927892771,0.652389367,0.961238037,0.922476074,0,0,0,0,0,0,-0.534366145,122.3009351,0.534366145,57.69906486,0,0.956431198,0,0,0,5,4,0% +2018-05-05 13:00:00,92.39216415,67.12098268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612547468,1.171482145,23.9073092,-23.9073092,1,0,#DIV/0!,0,0,0.780616934,1,0.041803843,0,0.957341915,0.996103878,0.724496596,1,0,0,0.09736187,0.312029739,0.76124959,0.485746186,0.961238037,0.922476074,0,0,0,0,0,0,-0.380512615,112.3654388,0.380512615,67.63456116,0,0.918598312,0,0,0,5,5,0% +2018-05-05 14:00:00,81.05127395,76.13782609,83.91527674,316.5177472,34.68077627,34.26761171,0,34.26761171,33.63502291,0.632588802,81.45142738,60.05944364,21.39198375,1.045753363,20.34623038,1.414611593,1.328855751,-6.314124057,6.314124057,0.390067503,0.390067503,0.413283226,0.406212074,13.06517666,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.33126339,0.757644752,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.294299265,12.55874476,32.62556265,13.31638951,0,60.05944364,-0.189750635,100.9382319,0.189750635,79.06176807,0,0.786496271,32.62556265,60.55291797,72.25623641,5,6,121% +2018-05-05 15:00:00,69.42922104,84.85115376,290.5247403,631.31392,68.70362411,81.86406983,13.04201527,68.82205457,66.63195635,2.190098211,72.51275462,0,72.51275462,2.071667756,70.44108687,1.211768504,1.480932007,-2.575571776,2.575571776,0.970602404,0.970602404,0.236481148,2.140940101,68.85999307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.04917092,1.500916237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551103815,66.19084456,65.60027473,67.69176079,13.04201527,0,0.020658526,88.81626942,-0.020658526,91.18373058,0,0,65.60027473,67.69176079,109.9031783,5,7,68% +2018-05-05 16:00:00,57.6084745,94.01940325,500.6808736,769.6254686,88.39104282,273.9016426,184.4015719,89.50007066,85.72572675,3.774343913,124.0611905,0,124.0611905,2.665316069,121.3958745,1.005457557,1.640948148,-1.439770832,1.439770832,0.776369003,0.776369003,0.176541681,3.079295443,99.04072645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40282929,1.931012419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.230939066,95.20171347,84.63376835,97.13272588,184.4015719,0,0.239599103,76.13711969,-0.239599103,103.8628803,0.841318084,0,239.7741455,97.13272588,303.3455719,5,8,27% +2018-05-05 17:00:00,45.93469973,104.7703757,686.1497046,839.9839156,101.9595775,483.443926,379.3863197,104.0576064,98.88512006,5.172486304,169.4393973,0,169.4393973,3.074457453,166.3649399,0.801711751,1.828588014,-0.848692522,0.848692522,0.675288659,0.675288659,0.148596694,3.742499139,120.3716371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05213868,2.227433959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711427886,115.7057961,97.76356657,117.9332301,379.3863197,0,0.451659029,63.14982455,-0.451659029,116.8501754,0.939297021,0,454.1200065,117.9332301,531.3049469,5,9,17% +2018-05-05 18:00:00,34.94420581,119.2104495,831.3192985,878.2683692,111.3937578,678.4102873,564.1086262,114.3016611,108.034825,6.266836023,204.9219214,0,204.9219214,3.358932798,201.5629886,0.609891446,2.080614847,-0.456485935,0.456485935,0.608217382,0.608217382,0.133996357,4.140591471,133.1756549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.8471831,2.433535378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999844425,128.0135051,106.8470276,130.4470404,564.1086262,0,0.642296416,50.03672859,-0.642296416,129.9632714,0.972154322,0,655.2476666,130.4470404,740.6226457,5,10,13% +2018-05-05 19:00:00,25.85368195,141.5733082,925.3068952,898.036537,117.1542994,837.6752024,717.0781831,120.5970192,113.621665,6.975354227,227.8840039,0,227.8840039,3.532634379,224.3513696,0.451231874,2.470920361,-0.153169911,0.153169911,0.556347287,0.556347287,0.12661129,4.272535107,137.4194158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2174662,2.559381582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.095437141,132.0927695,112.3129033,134.652151,717.0781831,0,0.798495555,37.01332235,-0.798495555,142.9866777,0.987382244,0,820.3431688,134.652151,908.4703086,5,11,11% +2018-05-05 20:00:00,21.4694367,176.2925138,961.3294363,904.8043164,119.3068326,945.9739513,823.0177525,122.9561988,115.7092914,7.246907358,236.6829929,0,236.6829929,3.597541199,233.0854517,0.374712359,3.076884812,0.110335323,-0.110335323,0.511285238,0.511285238,0.124106085,4.144779626,133.3103604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2241721,2.606406352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.00287873,128.1429891,114.2270509,130.7493955,823.0177525,0,0.909608561,24.54868647,-0.909608561,155.4513135,0.9950313,0,933.1554752,130.7493955,1018.72834,5,12,9% +2018-05-05 21:00:00,24.53126603,212.8597021,936.8312334,900.2461367,117.8459589,992.8562961,871.5015981,121.354698,114.2924684,7.062229557,230.6990693,0,230.6990693,3.553490466,227.1455788,0.428151362,3.715102647,0.363811985,-0.363811985,0.467938176,0.467938176,0.12579209,3.777355972,121.4927526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.862268,2.574491746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681543,116.783455,112.5989495,119.3579468,871.5015981,0,0.968070356,14.51767486,-0.968070356,165.4823251,0.998350861,0,982.6633207,119.3579468,1060.78071,5,13,8% +2018-05-05 22:00:00,32.99516432,237.411704,853.5769925,883.2522491,112.7787295,972.4894019,856.6767433,115.8126586,109.3780347,6.434623922,210.360319,0,210.360319,3.400694803,206.9596242,0.575874255,4.143615918,0.633679579,-0.633679579,0.421788099,0.421788099,0.132124847,3.205628345,103.1040269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1383273,2.463791808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322466824,99.10751236,107.4607941,101.5713042,856.6767433,0,0.96991176,14.09064944,-0.96991176,165.9093506,0.998448919,0,962.8087622,101.5713042,1029.285149,5,14,7% +2018-05-05 23:00:00,43.7450349,252.958089,717.5835076,849.2430804,104.070023,883.4253461,777.0839707,106.3413754,100.9319278,5.409447589,177.1245245,0,177.1245245,3.13809517,173.9864293,0.76349489,4.414951523,0.955850364,-0.955850364,0.36669365,0.36669365,0.145028449,2.480453982,79.77992658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.01960815,2.273539269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.797080466,76.6875,98.81668861,78.96103927,777.0839707,0,0.915031266,23.78983242,-0.915031266,156.2101676,0.995357058,0,872.2927039,78.96103927,923.9711248,5,15,6% +2018-05-05 00:00:00,55.33167432,264.2112085,538.9684746,786.8545924,91.38596003,727.8498615,635.1565533,92.69330818,88.63033616,4.062972023,133.4347705,0,133.4347705,2.755623873,130.6791466,0.965719898,4.611355509,1.401642497,-1.401642497,0.290458706,0.290458706,0.169557153,1.668932828,53.67861666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.19485033,1.996440116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.209136152,51.5979281,86.40398649,53.59436821,635.1565533,0,0.807209565,36.17581253,-0.807209565,143.8241875,0.988058217,0,713.9756378,53.59436821,749.0520799,5,16,5% +2018-05-05 01:00:00,67.13992915,273.5847836,332.2738187,666.8253093,73.22426483,509.5480745,436.0269711,73.52110348,71.01628308,2.504820398,82.77161603,0,82.77161603,2.207981754,80.56363427,1.171812823,4.774955257,2.173811027,-2.173811027,0.15841011,0.15841011,0.220373261,0.861342655,27.70374064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.26355253,1.599675264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.624039822,26.62988926,68.88759235,28.22956453,436.0269711,0,0.653884856,49.16485221,-0.653884856,130.8351478,0.973533938,0,493.3746465,28.22956453,511.8503319,5,17,4% +2018-05-05 02:00:00,78.81042564,282.3305836,121.3134308,401.6930221,43.36254926,230.1014679,187.1319476,42.9695203,42.05500841,0.914511885,30.72138667,0,30.72138667,1.307540851,29.41384582,1.375501412,4.927598263,4.271522251,-4.271522251,0,0,0.35744228,0.326885213,10.5137521,0.166888577,1,0.229967023,0,0.934764679,0.973526642,0.724496596,1,40.66962027,0.947308896,0.026458318,0.312029739,0.927709271,0.652205867,0.961238037,0.922476074,0.228226103,10.10621843,40.89784637,11.05352733,155.9017631,0,0.465858099,62.23422912,-0.465858099,117.7657709,0.94267118,0,187.8619454,11.05352733,195.0962579,5,18,4% +2018-05-05 03:00:00,89.70226016,291.2500336,0.08412785,1.092477178,0.078450774,0.362974497,0.286255113,0.076719385,0.076085193,0.000634191,0.022763351,0,0.022763351,0.00236558,0.020397771,1.565599786,5.083272032,144.6794567,-144.6794567,0,0,0.932518466,0.000591395,0.019021298,0.960335546,1,0.006911721,0,0.960622894,0.999384858,0.724496596,1,0.073206157,0.001713855,0.112686186,0.312029739,0.730550801,0.455047397,0.961238037,0.922476074,0.000425582,0.018283995,0.073631739,0.01999785,0.011354153,0,0.262023883,74.80981382,-0.262023883,105.1901862,0.8591777,0,0.083386974,0.01999785,0.096475167,5,19,16% +2018-05-05 04:00:00,100.8384969,301.0018357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759963784,5.253473087,-3.286882565,3.286882565,1,0.907756287,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03469125,88.01193891,-0.03469125,91.98806109,0,0,0,0,0,5,20,0% +2018-05-05 05:00:00,110.3405181,312.2228831,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92580534,5.449317311,-1.257118897,1.257118897,1,0.745133682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177182461,100.2056889,0.177182461,79.79431108,0,0.767805025,0,0,0,5,21,0% +2018-05-05 06:00:00,118.1356824,325.4936012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061856622,5.680935035,-0.46842023,0.46842023,1,0.610258267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367574125,111.5660849,0.367574125,68.43391512,0,0.913973015,0,0,0,5,22,0% +2018-05-05 07:00:00,123.4684329,341.061697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154930677,5.952649565,0.028027876,-0.028027876,1,0.52536064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523505829,121.5677108,0.523505829,58.43228923,0,0.95449008,0,0,0,5,23,0% +2018-05-06 08:00:00,125.5842534,358.3445983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191858711,6.254293097,0.439867495,-0.439867495,1,0.454931918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634349672,129.3717675,0.634349672,50.62823251,0,0.971179119,0,0,0,5,0,0% +2018-05-06 09:00:00,124.1078289,15.79109807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166090242,0.275606654,0.863538557,-0.863538557,1,0.382479899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69255143,133.8324176,0.69255143,46.16758241,0,0.977803196,0,0,0,5,1,0% +2018-05-06 10:00:00,119.306048,31.74079363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082283354,0.553981356,1.398895011,-1.398895011,1,0.290928554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694144786,133.9591068,0.694144786,46.04089316,0,0.977968918,0,0,0,5,2,0% +2018-05-06 11:00:00,111.8958976,45.41977816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952951832,0.792724674,2.262621304,-2.262621304,1,0.143222658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639021123,129.7188657,0.639021123,50.28113426,0,0.971755325,0,0,0,5,3,0% +2018-05-06 12:00:00,102.6521889,56.96323471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79161868,0.994195998,4.339862153,-4.339862153,1,0,#DIV/0!,0,0,0.174921881,1,0.226469211,0,0.935256749,0.974018712,0.724496596,1,0,0,0.0276346,0.312029739,0.924622809,0.649119405,0.961238037,0.922476074,0,0,0,0,0,0,-0.53093659,122.0687583,0.53093659,57.93124167,0,0.955826796,0,0,0,5,4,0% +2018-05-06 13:00:00,92.19436924,66.91945566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609095295,1.167964835,26.05988469,-26.05988469,1,0,#DIV/0!,0,0,0.797009918,1,0.038354337,0,0.957679271,0.996441234,0.724496596,1,0,0,0.098839828,0.312029739,0.758206561,0.482703157,0.961238037,0.922476074,0,0,0,0,0,0,-0.37725593,112.1638119,0.37725593,67.83618812,0,0.917463979,0,0,0,5,5,0% +2018-05-06 14:00:00,80.86909,75.92141592,86.72057895,322.8339684,35.48981906,35.07340643,0,35.07340643,34.41967007,0.653736355,82.39028313,60.29372576,22.09655737,1.070148988,21.02640838,1.411431884,1.325078681,-6.188516769,6.188516769,0.411547614,0.411547614,0.409243336,0.426476569,13.71695245,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.08549609,0.775319299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.308980822,13.18525644,33.39447691,13.96057574,0,60.29372576,-0.186763884,100.7639881,0.186763884,79.23601193,0,0.782282286,33.39447691,61.12728937,73.40106526,5,6,120% +2018-05-06 15:00:00,69.25353715,84.61598738,293.5279461,633.1944993,69.22936479,84.15762793,14.80304627,69.35458166,67.14184401,2.212737645,73.25676967,0,73.25676967,2.087520778,71.16924889,1.208702242,1.47682758,-2.554514934,2.554514934,0.967001471,0.967001471,0.235852721,2.156941837,69.37466391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.53929433,1.512401697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562697018,66.68556575,66.10199135,68.19796744,14.80304627,0,0.023378356,88.66039684,-0.023378356,91.33960316,0,0,66.10199135,68.19796744,110.7361971,5,7,68% +2018-05-06 16:00:00,57.433384,93.75808222,503.4200461,770.1845165,88.84525575,276.3472975,186.3860611,89.96123644,86.16624349,3.794992953,124.7390308,0,124.7390308,2.679012265,122.0600186,1.002401651,1.636387235,-1.432982669,1.432982669,0.775208159,0.775208159,0.176483349,3.092464524,99.46428936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.82627073,1.940935266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24048002,95.60885824,85.06675075,97.54979351,186.3860611,0,0.242001828,75.99527994,-0.242001828,104.0047201,0.843389991,0,242.2628891,97.54979351,306.1072779,5,8,26% +2018-05-06 17:00:00,45.75060589,104.473785,688.5872067,840.0897506,102.3869568,485.6673,381.1768265,104.4904735,99.29961232,5.190861225,170.043285,0,170.043285,3.087344516,166.9559405,0.798498708,1.82341153,-0.84627304,0.84627304,0.674874903,0.674874903,0.148691343,3.754125261,120.7455731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.45056441,2.236770592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.719850972,116.0652377,98.17041538,118.3020082,381.1768265,0,0.453733457,63.01652783,-0.453733457,116.9834722,0.939803145,0,456.4015956,118.3020082,533.827894,5,9,17% +2018-05-06 18:00:00,34.73646173,118.8787516,833.4872798,878.1908569,111.8061941,680.3218781,565.6038741,114.718004,108.4348248,6.283179182,205.46001,0,205.46001,3.371369272,202.0886408,0.606265628,2.074825626,-0.456001131,0.456001131,0.608134476,0.608134476,0.134142652,4.151298724,133.520037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2316781,2.442545561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007601794,128.3445382,107.2392799,130.7870838,565.6038741,0,0.644055754,49.90508402,-0.644055754,130.094916,0.972366969,0,657.2138049,130.7870838,742.8113355,5,10,13% +2018-05-06 19:00:00,25.60382164,141.2771401,927.2666001,897.8781579,117.5567514,839.2821868,718.2800778,121.0021089,114.0119816,6.990127311,228.3712925,0,228.3712925,3.544769793,224.8265227,0.446870989,2.465751253,-0.153819388,0.153819388,0.556458354,0.556458354,0.126777726,4.282777996,137.7488623,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5926534,2.568173648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102858079,132.409446,112.6955115,134.9776196,718.2800778,0,0.799974998,36.87228507,-0.799974998,143.1277149,0.987498047,0,821.9956853,134.9776196,910.3358378,5,11,11% +2018-05-06 20:00:00,21.18864783,176.3007318,963.1593755,904.6125767,119.7027407,947.3316903,823.9777266,123.3539636,116.0932614,7.260702213,237.1386209,0,237.1386209,3.609479288,233.5291417,0.369811669,3.077028244,0.108804224,-0.108804224,0.511547072,0.511547072,0.124281343,4.154956136,133.6376719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5932587,2.615055457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.010251577,128.4576134,114.6035103,131.0726689,823.9777266,0,0.910862559,24.37517573,-0.910862559,155.6248243,0.995106976,0,934.5494944,131.0726689,1020.333935,5,12,9% +2018-05-06 21:00:00,24.28905561,213.2025523,938.6195851,900.0519925,118.2385158,994.0511679,872.3022687,121.7488992,114.6731883,7.075710907,231.1445129,0,231.1445129,3.565327505,227.5791854,0.423923993,3.721086512,0.361372001,-0.361372001,0.468355438,0.468355438,0.125970646,3.787819425,121.8292933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2282304,2.583067641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.744262279,117.1069507,112.9724927,119.6900183,872.3022687,0,0.969168755,14.26446029,-0.969168755,165.7355397,0.998409397,0,983.8872752,119.6900183,1062.221998,5,13,8% +2018-05-06 22:00:00,32.80646487,237.7935555,855.4143782,883.0913346,113.1712761,973.6314504,857.4242309,116.2072195,109.7587446,6.448474911,210.8176512,0,210.8176512,3.412531533,207.4051196,0.572580828,4.150280483,0.630042334,-0.630042334,0.422410105,0.422410105,0.132299946,3.216661896,103.4589038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5042802,2.472367479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.330460594,99.44863356,107.8347408,101.921001,857.4242309,0,0.970934939,13.8478006,-0.970934939,166.1521994,0.998503244,0,963.9756165,101.921001,1030.680873,5,14,7% +2018-05-06 23:00:00,43.58694551,253.2931535,719.5552629,849.1840125,104.4666834,884.6482934,777.9073544,106.7409389,101.3166274,5.424311513,177.6145602,0,177.6145602,3.150055944,174.4645042,0.76073571,4.420799502,0.950280955,-0.950280955,0.367646075,0.367646075,0.145182293,2.4922144,80.15818202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.38939603,2.282204808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805600849,77.05109353,99.19499688,79.33329834,777.9073544,0,0.916064531,23.6426402,-0.916064531,156.3573598,0.995418692,0,873.5385184,79.33329834,925.4605755,5,15,6% +2018-05-06 00:00:00,55.18615975,264.5022967,541.1441624,787.0734126,91.79458013,729.326631,636.2206228,93.10600813,89.02663486,4.079373276,133.9746126,0,133.9746126,2.767945277,131.2066673,0.963180189,4.616435957,1.39224971,-1.39224971,0.292064967,0.292064967,0.169630547,1.681323379,54.07713937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.57578772,2.005366931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218113064,51.98100328,86.79390078,53.98637021,636.2206228,0,0.808337078,36.06622379,-0.808337078,143.9337762,0.988144616,0,715.4718841,53.98637021,750.8048837,5,16,5% +2018-05-06 01:00:00,66.99555489,273.844914,334.6804707,667.880345,73.67113423,511.556456,437.5838156,73.97264047,71.44967772,2.522962757,83.36861142,0,83.36861142,2.221456515,81.14715491,1.169293017,4.779495389,2.154299287,-2.154299287,0.161746814,0.161746814,0.220123792,0.873616938,28.09852378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68014794,1.609437683,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632932498,27.00936984,69.31308044,28.61880752,437.5838156,0,0.655182951,49.06647625,-0.655182951,130.9335237,0.973685438,0,495.3820695,28.61880752,514.1125067,5,17,4% +2018-05-06 02:00:00,78.65966019,282.5700719,123.7544413,405.7126181,43.97652809,233.2063532,189.6229664,43.58338677,42.65047352,0.932913252,31.33175164,0,31.33175164,1.326054578,30.00569706,1.372870059,4.931778122,4.202070916,-4.202070916,0,0,0.35535313,0.331513645,10.66261838,0.158562756,1,0.233632132,0,0.934246242,0.973008205,0.724496596,1,41.23712217,0.960722028,0.025230406,0.312029739,0.930942815,0.655439411,0.961238037,0.922476074,0.231769142,10.24931436,41.46889131,11.21003639,159.5558263,0,0.467382472,62.13547915,-0.467382472,117.8645208,0.943021234,0,191.9334236,11.21003639,199.2701682,5,18,4% +2018-05-06 03:00:00,89.56168815,291.4752013,0.153080726,1.5300769,0.141375775,0.541345743,0.403078982,0.138266761,0.137112774,0.001153987,0.041379196,0,0.041379196,0.004263001,0.037116194,1.563146342,5.08720195,97.93847081,-97.93847081,0,0,0.923537395,0.00106575,0.034278193,0.941922295,1,0.010210137,0,0.960325266,0.999087229,0.724496596,1,0.13198153,0.00308853,0.111200817,0.312029739,0.733443673,0.457940268,0.961238037,0.922476074,0.000764615,0.032949503,0.132746145,0.036038033,0.023409902,0,0.263437075,74.72589582,-0.263437075,105.2741042,0.860201354,0,0.152883375,0.036038033,0.176469547,5,19,15% +2018-05-06 04:00:00,100.6530565,301.214435,0,0,0,0,0,0,0,0,0,0,0,0,0,1.756727238,5.257183646,-3.330120774,3.330120774,1,0.900362118,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036838413,87.88883675,-0.036838413,92.11116325,0,0,0,0,0,5,20,0% +2018-05-06 05:00:00,110.1300251,312.4182345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.922131543,5.452726835,-1.263193628,1.263193628,1,0.746172522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17471035,100.0618027,0.17471035,79.93819729,0,0.763812032,0,0,0,5,21,0% +2018-05-06 06:00:00,117.897254,325.6575363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057695262,5.683796243,-0.467910436,0.467910436,1,0.610171087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.364792119,111.3947899,0.364792119,68.60521009,0,0.912935635,0,0,0,5,22,0% +2018-05-06 07:00:00,123.204808,341.1699815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150329554,5.954539485,0.031197192,-0.031197192,1,0.524818656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520450388,121.3624675,0.520450388,58.63753254,0,0.953929364,0,0,0,5,23,0% +2018-05-07 08:00:00,125.3067137,358.3732192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187014729,6.254792626,0.445070081,-0.445070081,1,0.454042223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631076145,129.1295633,0.631076145,50.87043671,0,0.970770258,0,0,0,5,0,0% +2018-05-07 09:00:00,123.8333341,15.73565053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161299403,0.274638912,0.871341039,-0.871341039,1,0.381145596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689130247,133.5612997,0.689130247,46.43870028,0,0.977444775,0,0,0,5,1,0% +2018-05-07 10:00:00,119.0486216,31.62021357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077790417,0.551876837,1.411389698,-1.411389698,1,0.288791836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690656601,133.682107,0.690656601,46.31789301,0,0.977605122,0,0,0,5,2,0% +2018-05-07 11:00:00,111.6615216,45.25892946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9488612,0.789917335,2.286695894,-2.286695894,1,0.139105661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635551272,129.4608833,0.635551272,50.53911668,0,0.971328141,0,0,0,5,3,0% +2018-05-07 12:00:00,102.4403494,56.7792365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787921385,0.990984624,4.412893949,-4.412893949,1,0,#DIV/0!,0,0,0.183337218,1,0.222845063,0,0.935763802,0.974525765,0.724496596,1,0,0,0.028857972,0.312029739,0.921424332,0.645920927,0.961238037,0.922476074,0,0,0,0,0,0,-0.527569227,121.8413639,0.527569227,58.15863606,0,0.955225708,0,0,0,5,4,0% +2018-05-07 13:00:00,92.00133539,66.71991613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605726219,1.164482213,28.57024864,-28.57024864,1,0,#DIV/0!,0,0,0.813281182,1,0.034987163,0,0.958005836,0.996767799,0.724496596,1,0,0,0.1002901,0.312029739,0.755237589,0.479734185,0.961238037,0.922476074,0,0,0,0,0,0,-0.374068236,111.9667358,0.374068236,68.03326417,0,0.916334548,0,0,0,5,5,0% +2018-05-07 14:00:00,80.69157824,75.7070639,89.46677914,328.8587728,36.27424267,35.85487879,0,35.85487879,35.18044042,0.674438372,83.2464875,60.46042883,22.78605867,1.093802254,21.69225641,1.408333719,1.321337532,-6.070771994,6.070771994,0.431683157,0.431683157,0.405449297,0.446550247,14.36259093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.81677749,0.79245601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.323524133,13.80586871,34.14030162,14.59832472,0,60.46042883,-0.18384922,100.5940468,0.18384922,79.40595319,0,0.778038008,34.14030162,61.63883636,74.48168724,5,6,118% +2018-05-07 15:00:00,69.08272373,84.3828676,296.4400556,634.9679108,69.74402058,86.39887849,16.5232071,69.87567139,67.64098103,2.234690356,73.9783631,0,73.9783631,2.103039548,71.87532355,1.205720985,1.472758872,-2.534369918,2.534369918,0.963556471,0.963556471,0.235271918,2.172410899,69.87220212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.01908381,1.523644994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573904301,67.1638184,66.59298812,68.68746339,16.5232071,0,0.026022114,88.5088744,-0.026022114,91.4911256,0,0,66.59298812,68.68746339,111.5475592,5,7,68% +2018-05-07 16:00:00,57.26338852,93.49864706,506.0673065,770.695647,89.2921115,278.7172947,188.3027207,90.414574,86.59962488,3.81494912,125.3943641,0,125.3943641,2.692486614,122.7018775,0.999434671,1.631859237,-1.426476722,1.426476722,0.774095576,0.774095576,0.176443154,3.105196396,99.87379013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.24285341,1.950697387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249704218,96.00248596,85.49255763,97.95318335,188.3027207,0,0.244328253,75.85786097,-0.244328253,104.142139,0.845357273,0,244.675632,97.95318335,308.7840314,5,8,26% +2018-05-07 17:00:00,45.57193678,104.1785025,690.9375244,840.1685507,102.808447,487.8103052,382.8933334,104.9169719,99.70839296,5.208578912,170.6258562,0,170.6258562,3.100053999,167.5258022,0.795380343,1.818257879,-0.843974845,0.843974845,0.674481888,0.674481888,0.148795576,3.765373072,121.1073414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.84349991,2.245978569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.727999973,116.4129831,98.57149988,118.6589616,382.8933334,0,0.455733951,62.8878321,-0.455733951,117.1121679,0.940286866,0,458.6010724,118.6589616,536.2609896,5,9,17% +2018-05-07 18:00:00,34.53451404,118.5465855,835.5754779,878.0955921,112.2136364,682.1554968,567.0265946,115.1289021,108.8299812,6.298920901,205.9786037,0,205.9786037,3.383655162,202.5949486,0.602740976,2.069028234,-0.455574865,0.455574865,0.60806158,0.60806158,0.134295033,4.161677909,133.8538672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6115175,2.451446646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015121478,128.6654286,107.626639,131.1168752,567.0265946,0,0.645745862,49.77837934,-0.645745862,130.2216207,0.972570158,0,659.0997838,131.1168752,744.9131563,5,10,13% +2018-05-07 19:00:00,25.3597367,140.976404,929.1555564,897.706812,117.95492,840.817485,719.414974,121.402511,114.398144,7.004367061,228.8412981,0,228.8412981,3.556776045,225.284522,0.442610903,2.460502418,-0.154495397,0.154495397,0.556573959,0.556573959,0.126948517,4.292740083,138.0692773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9638473,2.576872137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110075577,132.717441,113.0739229,135.2943132,719.414974,0,0.801391907,36.736774,-0.801391907,143.263226,0.987608554,0,823.574305,135.2943132,912.1217271,5,11,11% +2018-05-07 20:00:00,20.91259,176.3032159,964.9284461,904.4105341,120.0949943,948.6264221,824.8786967,123.7477254,116.4736872,7.274038214,237.5793805,0,237.5793805,3.621307183,233.9580733,0.364993551,3.077071599,0.107267451,-0.107267451,0.511809875,0.511809875,0.12446,4.164896191,133.9573783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9589384,2.623624726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.017453113,128.7649273,114.9763915,131.388552,824.8786967,0,0.912062239,24.20808834,-0.912062239,155.7919117,0.99517918,0,935.8784963,131.388552,1021.869676,5,12,9% +2018-05-07 21:00:00,24.0506536,213.5415327,940.3570498,899.8489907,118.6279848,995.1930126,873.0532906,122.139722,115.0509133,7.08880865,231.5775252,0,231.5775252,3.577071431,228.0004538,0.419763093,3.727002836,0.358944346,-0.358944346,0.468770591,0.468770591,0.126152066,3.798086408,122.1595147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5913141,2.591576075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.751700673,117.4243721,113.3430147,120.0159482,873.0532906,0,0.970222004,14.01744953,-0.970222004,165.9825505,0.998465403,0,985.0565203,120.0159482,1063.604558,5,13,8% +2018-05-07 22:00:00,32.62056366,238.1701717,857.2102489,882.9220514,113.5612261,974.7307146,858.1317655,116.5989491,110.1369361,6.462012944,211.2648393,0,211.2648393,3.424289963,207.8405493,0.56933624,4.156853677,0.626438709,-0.626438709,0.423026361,0.423026361,0.132477681,3.227533081,103.8085585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8678123,2.480886421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33833673,99.78473494,108.206149,102.2656214,858.1317655,0,0.971922452,13.60938962,-0.971922452,166.3906104,0.998555566,0,965.0984002,102.2656214,1032.029204,5,14,7% +2018-05-07 23:00:00,43.43078132,253.6227291,721.4936332,849.1157907,104.8611282,885.8378056,778.6997035,107.138102,101.6991783,5.438923767,178.0964344,0,178.0964344,3.161949911,174.9344845,0.758010131,4.426551681,0.944779477,-0.944779477,0.368586883,0.368586883,0.145338952,2.503840123,80.53210524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.75711847,2.290821947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.814023646,77.41052274,99.57114212,79.70134469,778.6997035,0,0.917071278,23.49839008,-0.917071278,156.5016099,0.995478611,0,874.7500413,79.70134469,926.9129774,5,15,6% +2018-05-07 00:00:00,55.04202054,264.788125,543.2929033,787.2792526,92.20116518,730.7767729,637.2602417,93.51653126,89.42095987,4.095571393,134.5078597,0,134.5078597,2.780205316,131.7276544,0.960664485,4.621424601,1.383000134,-1.383000134,0.293646738,0.293646738,0.169708024,1.693602952,54.47209266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95482791,2.014249287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227009573,52.36064741,87.18183749,54.3748967,637.2602417,0,0.809446254,35.95813585,-0.809446254,144.0418641,0.988229376,0,716.9411286,54.3748967,752.528411,5,16,5% +2018-05-07 01:00:00,66.85227242,274.0999915,337.0651468,668.9073228,74.11554106,513.5388043,439.1171808,74.4216235,71.88068404,2.540939453,83.96020426,0,83.96020426,2.23485702,81.72534723,1.166792266,4.783947331,2.135179628,-2.135179628,0.165016468,0.165016468,0.219884915,0.885814057,28.49082503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.09444762,1.619146303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.641769269,27.38646472,69.73621689,29.00561103,439.1171808,0,0.656469388,48.96883915,-0.656469388,131.0311609,0.973834986,0,497.3638906,29.00561103,516.3474829,5,17,4% +2018-05-07 02:00:00,78.50989276,282.804571,126.1838859,409.6383114,44.58445194,236.2707955,192.0795019,44.19129365,43.24006621,0.951227433,31.93912978,0,31.93912978,1.344385725,30.59474405,1.370256124,4.935870903,4.134958709,-4.134958709,0,0,0.353329204,0.336096431,10.81001655,0.150357709,1,0.237284403,0,0.933726744,0.972488707,0.724496596,1,41.79846606,0.974002881,0.024011452,0.312029739,0.93416449,0.658661085,0.961238037,0.922476074,0.235296119,10.39099909,42.03376218,11.36500197,163.198868,0,0.468900238,62.03706772,-0.468900238,117.9629323,0.94336751,0,195.9902719,11.36500197,203.4284384,5,18,4% +2018-05-07 03:00:00,89.42075828,291.695288,0.246433862,2.094261994,0.225261914,0.775035974,0.554708815,0.220327159,0.218469437,0.001857723,0.066543221,0,0.066543221,0.006792478,0.059750743,1.560686652,5.091043188,73.85671988,-73.85671988,0,0,0.914086694,0.001698119,0.054617359,0.923664642,1,0.013538902,0,0.960022236,0.9987842,0.724496596,1,0.210381948,0.004921127,0.109709807,0.312029739,0.736365406,0.460862002,0.961238037,0.922476074,0.001214724,0.052500283,0.211596672,0.05742141,0.042343896,0,0.264870783,74.64072513,-0.264870783,105.3592749,0.861228708,0,0.248064451,0.05742141,0.285645615,5,19,15% +2018-05-07 04:00:00,100.4690927,301.4217377,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753516464,5.260801759,-3.374711623,3.374711623,1,0.892736634,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.038980601,87.7660101,-0.038980601,92.2339899,0,0,0,0,0,5,20,0% +2018-05-07 05:00:00,109.9215624,312.6080531,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918493183,5.456039795,-1.269450263,1.269450263,1,0.74724247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17224586,99.91842382,0.17224586,80.08157618,0,0.75971726,0,0,0,5,21,0% +2018-05-07 06:00:00,117.6616481,325.8159418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053583163,5.686560941,-0.467487974,0.467487974,1,0.610098841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.362022671,111.2244673,0.362022671,68.77553274,0,0.911887103,0,0,0,5,22,0% +2018-05-07 07:00:00,122.9449452,341.273419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145794092,5.956344811,0.034293323,-0.034293323,1,0.524289186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.517414397,121.1589736,0.517414397,58.84102636,0,0.953365658,0,0,0,5,23,0% +2018-05-08 08:00:00,125.033766,358.3986155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182250893,6.255235875,0.450195883,-0.450195883,1,0.453165659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627830443,128.8902374,0.627830443,51.10976265,0,0.970360663,0,0,0,5,0,0% +2018-05-08 09:00:00,123.5638852,15.67902958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156596634,0.27365069,0.879054311,-0.879054311,1,0.379826549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685746165,133.2943171,0.685746165,46.70568289,0,0.977086723,0,0,0,5,1,0% +2018-05-08 10:00:00,118.7963179,31.50008715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073386886,0.549780235,1.423777408,-1.423777408,1,0.286673413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687215063,133.4100592,0.687215063,46.58994075,0,0.977242573,0,0,0,5,2,0% +2018-05-08 11:00:00,111.4321635,45.09946826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944858145,0.787134212,2.310674533,-2.310674533,1,0.135005072,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632137225,129.2079797,0.632137225,50.79202026,0,0.97090325,0,0,0,5,3,0% +2018-05-08 12:00:00,102.2334037,56.59707519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784309501,0.987805309,4.48654678,-4.48654678,1,0,#DIV/0!,0,0,0.191652027,1,0.219303847,0,0.936256501,0.975018464,0.724496596,1,0,0,0.03005793,0.312029739,0.918298514,0.642795109,0.961238037,0.922476074,0,0,0,0,0,0,-0.524265802,121.6188305,0.524265802,58.38116948,0,0.95462853,0,0,0,5,4,0% +2018-05-08 13:00:00,91.81312464,66.52241747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602441322,1.161035211,31.53185541,-31.53185541,1,0,#DIV/0!,0,0,0.829412993,1,0.031703334,0,0.958321707,0.99708367,0.724496596,1,0,0,0.101711781,0.312029739,0.752343556,0.476840152,0.961238037,0.922476074,0,0,0,0,0,0,-0.370951034,111.774282,0.370951034,68.225718,0,0.915211321,0,0,0,5,5,0% +2018-05-08 14:00:00,80.51879866,75.49484272,92.15076495,334.5984226,37.03437504,36.61232338,0,36.61232338,35.91765199,0.694671391,84.02471602,60.56497312,23.4597429,1.11672305,22.34301985,1.405318146,1.317633574,-5.960317288,5.960317288,0.450572024,0.450572024,0.401888959,0.466389216,15.00068038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.52541329,0.809062048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337897399,14.41922456,34.86331069,15.22828661,0,60.56497312,-0.181007946,100.4284753,0.181007946,79.57152471,0,0.773769032,34.86331069,62.09158726,75.50101272,5,6,117% +2018-05-08 15:00:00,68.91682634,84.15189064,299.2603084,636.6364793,70.24764676,88.58614113,18.2007695,70.38537163,68.12942102,2.255950613,74.67735222,0,74.67735222,2.118225736,72.55912648,1.20282553,1.468727563,-2.515108215,2.515108215,0.960262526,0.960262526,0.234737601,2.187348068,70.35263284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48859091,1.534647335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58472623,67.62562668,67.07331714,69.16027401,18.2007695,0,0.028588952,88.36175052,-0.028588952,91.63824948,0,0,67.07331714,69.16027401,112.3373333,5,7,67% +2018-05-08 16:00:00,57.09852727,93.24122645,508.6224192,771.1595548,89.73160954,281.0109889,190.1509079,90.86008108,87.02587044,3.834210639,126.0271333,0,126.0271333,2.705739102,123.3213942,0.996557299,1.6273664,-1.420248346,1.420248346,0.773030461,0.773030461,0.17642087,3.117491707,100.2692496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65257685,1.960298769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.258612129,96.38261665,85.91118898,98.34291542,190.1509079,0,0.246577906,75.72489777,-0.246577906,104.2751022,0.84722433,0,247.0116645,98.34291542,311.3751358,5,8,26% +2018-05-08 17:00:00,45.39873136,103.884704,693.2007795,840.2206288,103.2240533,489.8728237,384.5357161,105.3371076,100.1114673,5.225640285,171.1871407,0,171.1871407,3.112586065,168.0745546,0.792357339,1.813130127,-0.84179679,0.84179679,0.674109419,0.674109419,0.148909315,3.776243957,121.4569864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.23095028,2.255058008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.735875892,116.7490752,98.96682617,119.0041332,384.5357161,0,0.457660408,62.76375933,-0.457660408,117.2362407,0.940748688,0,460.7182966,119.0041332,538.6041217,5,9,17% +2018-05-08 18:00:00,34.3384153,118.2141785,837.5842854,877.9827754,112.6161027,683.9114238,568.3770479,115.5343758,109.2203117,6.314064141,206.4777982,0,206.4777982,3.395791005,203.0820072,0.599318407,2.063226637,-0.455206733,0.455206733,0.607998626,0.607998626,0.134453457,4.171731005,134.1772094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.986718,2.460239024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.022404912,128.9762373,108.0091229,131.4364763,568.3770479,0,0.647366969,49.65662449,-0.647366969,130.3433755,0.972764054,0,660.9058845,131.4364763,746.9284295,5,10,13% +2018-05-08 19:00:00,25.1215136,140.6712471,930.9743372,897.5226618,118.3488327,842.2816899,720.4834334,121.7982565,114.7801787,7.018077799,229.2941605,0,229.2941605,3.568653967,225.7255065,0.438453125,2.455176425,-0.155197678,0.155197678,0.556694056,0.556694056,0.127123625,4.302423572,138.3807316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3310737,2.585477651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.117091232,133.0168227,113.4481649,135.6023004,720.4834334,0,0.802746787,36.60679239,-0.802746787,143.3932076,0.987713858,0,825.0796369,135.6023004,913.8286304,5,11,11% +2018-05-08 20:00:00,20.64134722,176.2997466,966.6373019,904.198338,120.4836261,949.8589573,825.7214367,124.1375206,116.8506003,7.286920291,238.0054311,0,238.0054311,3.633025866,234.3724052,0.360259471,3.077011049,0.105725301,-0.105725301,0.512073598,0.512073598,0.12464202,4.174601803,134.2695441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3212416,2.632114872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024484796,129.064993,115.3457264,131.6971078,825.7214367,0,0.913208311,24.04744878,-0.913208311,155.9525512,0.99524798,0,937.143318,131.6971078,1023.336441,5,12,9% +2018-05-08 21:00:00,23.81608709,213.8763,942.0442571,899.6372772,119.0143982,996.2827494,873.7555469,122.5272025,115.4256749,7.101527531,231.99826,0,231.99826,3.588723221,228.4095367,0.415669135,3.732845628,0.356529422,-0.356529422,0.469183568,0.469183568,0.126336313,3.808158337,122.4834626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9515492,2.600017757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758997751,117.7357631,113.7105469,120.3357809,873.7555469,0,0.971230927,13.77676611,-0.971230927,166.2232339,0.998518938,0,986.1720073,120.3357809,1064.929369,5,13,8% +2018-05-08 22:00:00,32.43745556,238.5412916,858.9651076,882.7445451,113.9486061,975.7881041,858.8002271,116.987877,110.5126352,6.47524181,211.702006,0,211.702006,3.435970899,208.2660351,0.5661404,4.163330941,0.622869248,-0.622869248,0.423636775,0.423636775,0.132658015,3.238242374,104.1530061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2289485,2.48934922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346095577,100.1158312,108.5750441,102.6051804,858.8002271,0,0.972875145,13.37543589,-0.972875145,166.6245641,0.998605944,0,966.1780553,102.6051804,1033.331094,5,14,7% +2018-05-08 23:00:00,43.27653745,253.9466439,723.3989009,849.0385598,105.2533732,886.9946609,779.4617787,107.5328822,102.0795957,5.45328648,178.5702163,0,178.5702163,3.173777546,175.3964387,0.755318067,4.43220506,0.939346599,-0.939346599,0.36951596,0.36951596,0.145498387,2.515330413,80.90167246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.12279014,2.299391028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.822348321,77.76576481,99.94513847,80.06515584,779.4617787,0,0.918052272,23.35702189,-0.918052272,156.6429781,0.99553687,0,875.9280781,80.06515584,928.3291213,5,15,6% +2018-05-08 00:00:00,54.89926364,265.0685704,545.4146801,787.4722611,92.60571413,732.200821,638.2759446,93.92487641,89.81331017,4.111566243,135.0345077,0,135.0345077,2.79240396,132.2421038,0.958172907,4.626319296,1.373894186,-1.373894186,0.295203946,0.295203946,0.169789552,1.705769403,54.86340755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.33196995,2.023087163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235824126,52.73679417,87.56779407,54.75988134,638.2759446,0,0.810537686,35.85150186,-0.810537686,144.1484981,0.988312554,0,718.3839228,54.75988134,754.22317,5,16,5% +2018-05-08 01:00:00,66.71010371,274.3499204,339.4274616,669.9064963,74.55746316,515.4953475,440.6273194,74.86802814,72.30928056,2.558747581,84.54630043,0,84.54630043,2.248182602,82.29811783,1.164310954,4.788309414,2.116448668,-2.116448668,0.168219651,0.168219651,0.219656544,0.897930153,28.88052033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50643089,1.628800642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.650547339,27.76105467,70.15697823,29.38985531,440.6273194,0,0.657744509,48.87191777,-0.657744509,131.1280822,0.973982642,0,499.3203388,29.38985531,518.5554113,5,17,4% +2018-05-08 02:00:00,78.36116229,283.0340031,128.6007175,413.4710408,45.18629404,239.2947033,194.5014962,44.79320709,43.82376056,0.969446529,32.54326632,0,32.54326632,1.362533485,31.18073284,1.367660288,4.939875249,4.07010049,-4.07010049,0,0,0.351368911,0.340633371,10.95594014,0.142274738,1,0.240922038,0,0.933206481,0.971968444,0.724496596,1,42.35363099,0.987150872,0.022801948,0.312029739,0.937372723,0.661869319,0.961238037,0.922476074,0.238806643,10.53126639,42.59243763,11.51841726,166.8288469,0,0.470411412,61.93899449,-0.470411412,118.0610055,0.943710062,0,200.030499,11.51841726,207.5690727,5,18,4% +2018-05-08 03:00:00,89.27951054,291.9102311,0.368291823,2.804837932,0.333022158,1.072754745,0.746998095,0.325756651,0.322980312,0.002776339,0.099338463,0,0.099338463,0.010041847,0.089296616,1.558221414,5.094794653,59.17758955,-59.17758955,0,0,0.904234463,0.002510462,0.080745078,0.905569601,1,0.016896681,0,0.959713861,0.998475824,0.724496596,1,0.311150889,0.007275284,0.108213879,0.312029739,0.739314773,0.463811369,0.961238037,0.922476074,0.00179071,0.07761524,0.312941599,0.084890524,0.070539328,0,0.266324869,74.55430841,-0.266324869,105.4456916,0.862259365,0,0.373764795,0.084890524,0.429323945,5,19,15% +2018-05-08 04:00:00,100.2866759,301.6236985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750332691,5.26432664,-3.4206931,3.4206931,1,0.884873338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041117121,87.6434982,-0.041117121,92.3565018,0,0,0,0,0,5,20,0% +2018-05-08 05:00:00,109.7152144,312.7923176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91489173,5.459255817,-1.275890415,1.275890415,1,0.748343801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169790044,99.77561202,0.169790044,80.22438798,0,0.755518659,0,0,0,5,21,0% +2018-05-08 06:00:00,117.4289573,325.9688256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049521942,5.689229266,-0.467155049,0.467155049,1,0.610041908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.359267164,111.0551969,0.359267164,68.94480309,0,0.910827805,0,0,0,5,22,0% +2018-05-08 07:00:00,122.6889367,341.3720415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141325902,5.958066098,0.037313009,-0.037313009,1,0.523772789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51439951,120.9573259,0.51439951,59.04267415,0,0.952799285,0,0,0,5,23,0% +2018-05-09 08:00:00,124.7654963,358.4208205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177568704,6.255623426,0.455240268,-0.455240268,1,0.452303019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624614413,128.653892,0.624614413,51.34610805,0,0.969950614,0,0,0,5,0,0% +2018-05-09 09:00:00,123.2995629,15.62125456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151983339,0.272642325,0.886671393,-0.886671393,1,0.378523951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682401139,133.0315626,0.682401139,46.96843738,0,0.976729313,0,0,0,5,1,0% +2018-05-09 10:00:00,118.5492143,31.38042852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069074114,0.547691798,1.436046154,-1.436046154,1,0.284575334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683822133,133.1430449,0.683822133,46.85695512,0,0.976881571,0,0,0,5,2,0% +2018-05-09 11:00:00,111.2078965,44.94141799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940943949,0.784375715,2.334531353,-2.334531353,1,0.130925316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628780853,128.9602333,0.628780853,51.03976674,0,0.970481039,0,0,0,5,3,0% +2018-05-09 12:00:00,102.0314185,56.41678999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780784193,0.984658739,4.560742089,-4.560742089,1,0,#DIV/0!,0,0,0.199858626,1,0.215846804,0,0.936734861,0.975496825,0.724496596,1,0,0,0.031233782,0.312029739,0.915246483,0.639743079,0.961238037,0.922476074,0,0,0,0,0,0,-0.521028007,121.4012335,0.521028007,58.59876653,0,0.954035869,0,0,0,5,4,0% +2018-05-09 13:00:00,91.62979514,66.32701636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599241618,1.157624819,35.07352946,-35.07352946,1,0,#DIV/0!,0,0,0.845387279,1,0.028503808,0,0.958626988,0.997388951,0.724496596,1,0,0,0.10310398,0.312029739,0.749525282,0.474021878,0.961238037,0.922476074,0,0,0,0,0,0,-0.367905761,111.586518,0.367905761,68.413482,0,0.914095632,0,0,0,5,5,0% +2018-05-09 14:00:00,80.35080645,75.28482824,94.76967566,340.0592891,37.7705526,37.34604493,0,37.34604493,36.63163108,0.714413846,84.72952886,60.61260227,24.11692659,1.138921519,22.97800507,1.402386129,1.31396813,-5.856637416,5.856637416,0.468302326,0.468302326,0.398551038,0.485952147,15.62989148,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.21171715,0.825144764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.352070676,15.02404621,35.56378782,15.84919097,0,60.61260227,-0.178241278,100.267336,0.178241278,79.73266405,0,0.769481365,35.56378782,62.4894589,76.46188888,5,6,115% +2018-05-09 15:00:00,68.75588593,83.92315612,301.9880405,638.2024565,70.74029944,90.71785328,19.83412147,70.88373181,68.6072184,2.276513409,75.35357774,0,75.35357774,2.133081032,73.22049671,1.20001659,1.464735393,-2.496702682,2.496702682,0.957114994,0.957114994,0.234248679,2.201754417,70.81599052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94786793,1.545409946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59516358,68.07102371,67.54303151,69.61643365,19.83412147,0,0.031078103,88.21906912,-0.031078103,91.78093088,0,0,67.54303151,69.61643365,113.105595,5,7,67% +2018-05-09 16:00:00,56.93883451,92.9859533,511.0852299,771.5769269,90.16375327,283.2278271,191.9300673,91.29775978,87.44498344,3.852776347,126.637301,0,126.637301,2.71876983,123.9185311,0.993770134,1.622911043,-1.41429295,1.41429295,0.772012028,0.772012028,0.176416277,3.129351387,100.6506977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.05544421,1.969739487,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267204427,96.74927905,86.32264864,98.71901853,191.9300673,0,0.248750398,75.59642052,-0.248750398,104.4035795,0.848995296,0,249.270373,98.71901853,313.8799963,5,8,26% +2018-05-09 17:00:00,45.23102319,103.5925716,695.3771618,840.2462999,103.6337851,491.85482,386.1039291,105.7508909,100.5088441,5.242046774,171.7271847,0,171.7271847,3.124940989,168.6022437,0.789430279,1.808031455,-0.839737661,0.839737661,0.673757287,0.673757287,0.149032483,3.78673952,121.7945598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.61292402,2.264009109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743479892,117.0735636,99.35640391,119.3375727,386.1039291,0,0.459512799,62.64432622,-0.459512799,117.3556738,0.941189103,0,462.7532144,119.3375727,540.857269,5,9,17% +2018-05-09 18:00:00,34.14821249,117.8817707,839.5141471,877.8526097,113.0136136,685.5900106,569.6555622,115.9344484,109.6058361,6.328612253,206.9577019,0,206.9577019,3.407777425,203.5499245,0.595998742,2.057425027,-0.454896255,0.454896255,0.607945531,0.607945531,0.134617879,4.181460127,134.4901314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3572988,2.468923144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.029453628,129.2770299,108.3867524,131.745953,569.6555622,0,0.64891937,49.53982356,-0.64891937,130.4601764,0.972948825,0,662.6324622,131.745953,748.8575535,5,10,13% +2018-05-09 19:00:00,24.88923493,140.3618409,932.7235487,897.3258706,118.7385188,843.6754492,721.4860707,122.1893785,115.1581144,7.031264094,229.7300275,0,229.7300275,3.580404441,226.1496231,0.434399098,2.449776268,-0.155925891,0.155925891,0.556818587,0.556818587,0.127303014,4.311830715,138.6832976,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6943598,2.59399083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123906675,133.3076608,113.8182665,135.9016516,721.4860707,0,0.804040198,36.48233651,-0.804040198,143.5176635,0.987814054,0,826.5123472,135.9016516,915.4572601,5,11,11% +2018-05-09 20:00:00,20.37500357,176.2901143,968.2866093,903.9761364,120.8686694,951.0301413,826.5067548,124.5233865,117.224033,7.299353467,238.4169352,0,238.4169352,3.644636339,234.7722989,0.355610897,3.076842934,0.104178148,-0.104178148,0.512338177,0.512338177,0.124827368,4.184074949,134.574233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6801994,2.640526621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031348057,129.3578716,115.7115474,131.9983982,826.5067548,0,0.914301519,23.89327253,-0.914301519,156.1067275,0.995313445,0,938.3448332,131.9983982,1024.735145,5,12,9% +2018-05-09 21:00:00,23.58538385,214.2065092,943.6818288,899.4169936,119.3977879,997.3213103,874.4099341,122.9113763,115.797504,7.113872239,232.4068688,0,232.4068688,3.600283835,228.806585,0.411642604,3.738608864,0.354127714,-0.354127714,0.469594284,0.469594284,0.126523352,3.818036521,122.8011789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3089654,2.608393383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766154462,118.0411642,114.0751199,120.6495575,874.4099341,0,0.972196368,13.54253028,-0.972196368,166.4574697,0.998570061,0,987.234701,120.6495575,1066.197423,5,13,8% +2018-05-09 22:00:00,32.25713732,238.9066561,860.6794303,882.5589526,114.3334412,976.8045179,859.4304866,117.3740312,110.8858661,6.488165098,212.1292676,0,212.1292676,3.447575099,208.6816925,0.562993254,4.169707754,0.619334589,-0.619334589,0.424241237,0.424241237,0.132840913,3.248790081,104.4922567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5877123,2.497756423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353737355,100.4419317,108.9414496,102.9396881,859.4304866,0,0.973793857,13.14595689,-0.973793857,166.8540431,0.998654431,0,967.215513,102.9396881,1034.58748,5,14,7% +2018-05-09 23:00:00,43.12421197,254.2647287,725.2713051,848.9524492,105.6434313,888.1196037,780.1943102,107.9252935,102.457892,5.467401454,179.0359641,0,179.0359641,3.185539235,175.8504248,0.752659486,4.437756688,0.933983105,-0.933983105,0.370433172,0.370433172,0.145660569,2.526684321,81.26685318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.486423,2.307912332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830574189,78.11679041,100.3169972,80.42470274,780.1943102,0,0.919008256,23.21847625,-0.919008256,156.7815237,0.995593525,0,877.0734004,80.42470274,929.7097599,5,15,6% +2018-05-09 00:00:00,54.75789942,265.3435127,547.5094206,787.6525594,93.00822152,733.5992539,639.2682161,94.33103776,90.20368048,4.127357282,135.5545389,0,135.5545389,2.804541043,132.7499979,0.955705636,4.631117945,1.364932464,-1.364932464,0.296736491,0.296736491,0.169875107,1.717820361,55.25100778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70720874,2.031880438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244555004,53.10937025,87.95176374,55.14125069,639.2682161,0,0.811611933,35.74627809,-0.811611933,144.2537219,0.988394203,0,719.8007627,55.14125069,755.8896084,5,16,5% +2018-05-09 01:00:00,66.56907427,274.5946078,341.7669687,670.8780627,74.99687165,517.42624,442.114417,75.31182304,72.73543926,2.576383773,85.12679079,0,85.12679079,2.261432389,82.8653584,1.161849526,4.792580013,2.098103446,-2.098103446,0.171356869,0.171356869,0.219438619,0.909961161,29.2674789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.91607085,1.638400068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.659263763,28.13301396,70.57533461,29.77141403,442.114417,0,0.659008606,48.77569278,-0.659008606,131.2243072,0.974128457,0,501.2515693,29.77141403,520.7363643,5,17,4% +2018-05-09 02:00:00,78.2135111,283.258293,131.0038427,417.2116393,45.78201693,242.2779088,196.8888262,45.38908251,44.40152021,0.987562303,33.1438951,0,33.1438951,1.380496728,31.76339838,1.365083288,4.943789847,4.007416779,-4.007416779,0,0,0.349470794,0.345124182,11.10038005,0.134315264,1,0.244543142,0,0.932685768,0.971447731,0.724496596,1,42.90258738,1.00016518,0.021602415,0.312029739,0.940565861,0.665062456,0.961238037,0.922476074,0.242300219,10.67010753,43.1448876,11.67027271,170.4436516,0,0.471915948,61.8412631,-0.471915948,118.1587369,0.944048929,0,204.0520343,11.67027271,211.6899944,5,18,4% +2018-05-09 03:00:00,89.13803387,292.119971,0.522578501,3.680346093,0.467212922,1.442654853,0.985590707,0.457064146,0.453124729,0.003939417,0.140793401,0,0.140793401,0.014088193,0.126705208,1.55575218,5.098455305,49.30064508,-49.30064508,0,0,0.894053087,0.003522048,0.113281182,0.887649957,1,0.020280929,0,0.959400308,0.998162271,0.724496596,1,0.436701321,0.010206848,0.106714272,0.312029739,0.742289476,0.466786072,0.961238037,0.922476074,0.002505362,0.108890181,0.439206683,0.119097029,0.110731158,0,0.267798376,74.46670069,-0.267798376,105.5332993,0.86329237,0,0.534800047,0.119097029,0.612746671,5,19,15% +2018-05-09 04:00:00,100.1058795,301.8202759,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747177198,5.267757563,-3.468102098,3.468102098,1,0.876765922,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.043247213,87.52134416,-0.043247213,92.47865584,0,0,0,0,0,5,20,0% +2018-05-09 05:00:00,109.5110674,312.9710102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911328694,5.462374592,-1.282515171,1.282515171,1,0.749476701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167344021,99.63343056,0.167344021,80.36656944,0,0.751214302,0,0,0,5,21,0% +2018-05-09 06:00:00,117.1992755,326.1161995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045513238,5.691801425,-0.466913689,0.466913689,1,0.610000633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356527032,110.8870617,0.356527032,69.11293832,0,0.909758179,0,0,0,5,22,0% +2018-05-09 07:00:00,122.4368755,341.4658847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136926603,5.959703971,0.040253058,-0.040253058,1,0.523270011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511407416,120.7576226,0.511407416,59.24237745,0,0.952230593,0,0,0,5,23,0% +2018-05-10 08:00:00,124.5019901,358.439872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172969653,6.255955937,0.460198616,-0.460198616,1,0.451455091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621429919,128.4206301,0.621429919,51.5793699,0,0.969540404,0,0,0,5,0,0% +2018-05-10 09:00:00,123.0404463,15.56234962,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147460901,0.27161424,0.894185255,-0.894185255,1,0.377239005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679097119,132.7731289,0.679097119,47.22687106,0,0.976372829,0,0,0,5,1,0% +2018-05-10 10:00:00,118.307386,31.26125682,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064853416,0.54561186,1.448183761,-1.448183761,1,0.282499681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680479753,132.8811441,0.680479753,47.11885594,0,0.976522428,0,0,0,5,2,0% +2018-05-10 11:00:00,110.9887912,44.7848066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93711984,0.78164233,2.358239674,-2.358239674,1,0.126870954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548399,128.7177198,0.62548399,51.28228017,0,0.970061903,0,0,0,5,3,0% +2018-05-10 12:00:00,101.8344567,56.23842405,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777346561,0.981545666,4.635394441,-4.635394441,1,0,#DIV/0!,0,0,0.207949303,1,0.212475112,0,0.937198905,0.975960868,0.724496596,1,0,0,0.032384856,0.312029739,0.912269317,0.636765913,0.961238037,0.922476074,0,0,0,0,0,0,-0.51785748,121.1886449,0.51785748,58.81135508,0,0.953448339,0,0,0,5,4,0% +2018-05-10 13:00:00,91.45140087,66.133773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596128051,1.154252086,39.3779269,-39.3779269,1,0,#DIV/0!,0,0,0.861185693,1,0.025389481,0,0.958921783,0.997683746,0.724496596,1,0,0,0.104465829,0.312029739,0.746783525,0.471280121,0.961238037,0.922476074,0,0,0,0,0,0,-0.36493378,111.4035075,0.36493378,68.59649251,0,0.912988842,0,0,0,5,5,0% +2018-05-10 14:00:00,80.18765169,75.07709974,97.32089326,345.247803,38.48311742,38.05635544,0,38.05635544,37.32270944,0.733646002,85.36535571,60.60837042,24.75698529,1.160407978,23.59657731,1.399538541,1.310342583,-5.759267338,5.759267338,0.48495359,0.48495359,0.395425033,0.505200253,16.24897676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.87600795,0.84071163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.366015864,15.61913452,36.24202382,16.45984615,0,60.60837042,-0.175550344,100.1106863,0.175550344,79.88931372,0,0.765181418,36.24202382,62.83624494,77.36708941,5,6,113% +2018-05-10 15:00:00,68.59993851,83.69676725,304.6226889,639.668029,71.22203626,92.7925734,21.42176981,71.37080359,69.07442909,2.296374502,76.00690489,0,76.00690489,2.147607175,73.85929771,1.197294794,1.460784162,-2.479127421,2.479127421,0.954109447,0.954109447,0.233804109,2.215631327,71.26231966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39696861,1.555934087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.605217354,68.50005225,68.00218597,70.05598634,21.42176981,0,0.033488886,88.08086933,-0.033488886,91.91913067,0,0,68.00218597,70.05598634,113.8524279,5,7,67% +2018-05-10 16:00:00,56.78433918,92.73296483,513.4556696,771.9484447,90.58855034,285.3673528,193.6397358,91.72761703,87.85697131,3.870645722,127.2248507,0,127.2248507,2.731579029,124.4932717,0.991073682,1.618495561,-1.408605973,1.408605973,0.771039498,0.771039498,0.176429156,3.140776661,101.0181738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.45146262,1.979019708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275481999,97.10251104,86.72694462,99.08153075,193.6397358,0,0.250845425,75.47245428,-0.250845425,104.5275457,0.850674061,0,251.4512449,99.08153075,316.2981252,5,8,26% +2018-05-10 17:00:00,45.06884009,103.3022941,697.4669321,840.2458818,104.0376553,493.7563462,387.5980097,106.1583365,100.9005361,5.257800346,172.2460519,0,172.2460519,3.137119165,169.1089327,0.78659965,1.802965157,-0.837796164,0.837796164,0.673425272,0.673425272,0.149165001,3.796861586,122.1201202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.98943326,2.272832156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.750813294,117.3865046,99.74024655,119.6593368,387.5980097,0,0.461291175,62.52954393,-0.461291175,117.4704561,0.941608592,0,464.7058627,119.6593368,543.0205054,5,9,17% +2018-05-10 18:00:00,33.9639466,117.5496154,841.3655609,877.7053009,113.4061926,687.1916833,570.8625369,116.3291465,109.9865775,6.342568992,207.4184364,0,207.4184364,3.419615132,203.9988212,0.592782695,2.051627823,-0.45464286,0.45464286,0.607902198,0.607902198,0.134788251,4.190867524,134.7927056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7232818,2.477499522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036269255,129.5678757,108.7595511,132.0453752,570.8625369,0,0.650403428,49.42797444,-0.650403428,130.5720256,0.973124636,0,664.2799497,132.0453752,750.7010069,5,10,13% +2018-05-10 19:00:00,24.66297905,140.0483831,934.4038302,897.1166027,119.1240095,844.9994676,722.4235557,122.5759119,115.5319811,7.043930766,230.1490552,0,230.1490552,3.592028407,226.5570268,0.430450188,2.444305397,-0.156679613,0.156679613,0.556947482,0.556947482,0.127486645,4.320963808,138.9770493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0537347,2.602412353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13052357,133.590026,114.1842583,136.1924384,722.4235557,0,0.805272752,36.36339529,-0.805272752,143.6366047,0.987909237,0,827.8731616,136.1924384,917.0083887,5,11,11% +2018-05-10 20:00:00,20.11364319,176.2741218,969.8770456,903.7440757,121.2501578,952.140855,827.235494,124.905361,117.5940182,7.311342848,238.8140582,0,238.8140582,3.656139623,235.1579186,0.351049298,3.076563812,0.102626451,-0.102626451,0.512603533,0.512603533,0.125016009,4.193317558,134.8715071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0358432,2.648860711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.038044296,129.6436227,116.0738875,132.2924834,827.235494,0,0.915342647,23.74556566,-0.915342647,156.2544343,0.995375647,0,939.4839524,132.2924834,1026.066737,5,12,9% +2018-05-10 21:00:00,23.35857269,214.5318146,945.2703758,899.1882765,119.778185,998.3096387,875.0173605,123.2922782,116.1664308,7.125847377,232.8035008,0,232.8035008,3.611754213,229.1917466,0.407684002,3.744286515,0.351739796,-0.351739796,0.470002642,0.470002642,0.126713148,3.827722141,123.1127018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6635919,2.616703633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.773171661,118.3406117,114.4367636,120.9573154,875.0173605,0,0.973119182,13.31485822,-0.973119182,166.6851418,0.998618832,0,988.2455782,120.9573154,1067.409722,5,13,8% +2018-05-10 22:00:00,32.07960812,239.2660092,862.3536612,882.3654014,114.7157546,977.7808405,860.0234029,117.7574375,111.2566514,6.500786158,212.5467324,0,212.5467324,3.459103258,209.0876291,0.559894784,4.175979648,0.615835473,-0.615835473,0.424839621,0.424839621,0.133026344,3.259176314,104.8263136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9441251,2.506108535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361262145,100.7630399,109.3053873,103.2691484,860.0234029,0,0.974679426,12.92096855,-0.974679426,167.0790315,0.998701082,0,968.2116903,103.2691484,1035.799283,5,14,7% +2018-05-10 23:00:00,42.97380637,254.5768179,727.1110359,848.8575717,106.0313118,889.2133394,780.8979928,108.3153467,102.8340765,5.481270122,179.4937241,0,179.4937241,3.197235264,176.2964889,0.750034413,4.443203672,0.928689904,-0.928689904,0.371338363,0.371338363,0.145825474,2.537900661,81.62760923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.84802584,2.316386065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.838700389,78.46356284,100.6867262,80.77994891,780.8979928,0,0.919939951,23.08269527,-0.919939951,156.9173047,0.995648626,0,878.18674,80.77994891,931.055601,5,15,6% +2018-05-10 00:00:00,54.61794206,265.6128347,549.5769901,787.8202381,93.40867698,734.9724884,640.2374841,94.73500422,90.59206073,4.142943494,136.0679203,0,136.0679203,2.816616252,133.251304,0.95326292,4.635818501,1.356115748,-1.356115748,0.298244238,0.298244238,0.169964679,1.729753198,55.63480882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.08053461,2.040628887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253200303,53.47829441,88.33373491,55.5189233,640.2374841,0,0.812669507,35.64242453,-0.812669507,144.3575755,0.988474374,0,721.1920814,55.5189233,757.5281063,5,16,5% +2018-05-10 01:00:00,66.42921356,274.8339632,344.0831526,671.8221599,75.43373026,519.3315535,443.5785844,75.75296912,73.15912497,2.593844146,85.7015493,0,85.7015493,2.274605288,83.42694401,1.159408496,4.796757554,2.080141436,-2.080141436,0.174428554,0.174428554,0.219231106,0.921902777,29.65156233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.32333367,1.647943788,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.667915424,28.50220956,70.99124909,30.15015335,443.5785844,0,0.660261913,48.68014918,-0.660261913,131.3198508,0.974272476,0,503.1576547,30.15015335,522.8903271,5,17,4% +2018-05-10 02:00:00,78.06698532,283.4773687,133.3921149,420.8608246,46.37157121,245.2201569,199.2412936,45.97886336,44.97329725,1.005566107,33.74073658,0,33.74073658,1.398273965,32.34246261,1.362525931,4.947613438,3.946833444,-3.946833444,0,0,0.347633526,0.349568491,11.24332431,0.12648084,1,0.248145716,0,0.932164939,0.970926902,0.724496596,1,43.44529601,1.013044728,0.020413395,0.312029739,0.943742157,0.668238752,0.961238037,0.922476074,0.245776242,10.80751099,43.69107226,11.82055572,174.0410873,0,0.473413732,61.74388158,-0.473413732,118.2561184,0.944384137,0,208.0527143,11.82055572,215.7890316,5,18,4% +2018-05-10 03:00:00,88.99644932,292.3244516,0.712888563,4.737169902,0.629920026,1.891971258,1.27567159,0.616299668,0.610925613,0.005374055,0.191842499,0,0.191842499,0.018994413,0.172848086,1.553281063,5.102024165,42.20708433,-42.20708433,0,0,0.883616401,0.004748603,0.152731403,0.869921793,1,0.023688273,0,0.959081833,0.997843797,0.724496596,1,0.589007997,0.013761388,0.105212569,0.312029739,0.745286477,0.469783073,0.961238037,0.922476074,0.003368894,0.146811234,0.592376891,0.160572622,0.165937073,0,0.269289811,74.37798912,-0.269289811,105.6220109,0.864326432,0,0.73580069,0.160572622,0.840892259,5,19,14% +2018-05-10 04:00:00,99.92677966,302.0114321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744051316,5.271093868,-3.516973951,3.516973951,1,0.868408343,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045370044,87.39959532,-0.045370044,92.60040468,0,0,0,0,0,5,20,0% +2018-05-10 05:00:00,109.3092105,313.1441176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907805625,5.465395885,-1.289325018,1.289325018,1,0.750641253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164908972,99.49194651,0.164908972,80.50805349,0,0.746802428,0,0,0,5,21,0% +2018-05-10 06:00:00,116.9726979,326.2580796,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041558714,5.694277701,-0.466765713,0.466765713,1,0.609975328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.353803763,110.7201476,0.353803763,69.27985244,0,0.908678722,0,0,0,5,22,0% +2018-05-10 07:00:00,122.1888546,341.5549885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132597821,5.961259126,0.043110368,-0.043110368,1,0.522781383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508439844,120.5599643,0.508439844,59.44003567,0,0.951659949,0,0,0,5,23,0% +2018-05-11 08:00:00,124.2433325,358.4558122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168455225,6.256234146,0.465066336,-0.465066336,1,0.450622662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618278852,128.1905557,0.618278852,51.80944425,0,0.969130341,0,0,0,5,0,0% +2018-05-11 09:00:00,122.7866131,15.50234428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143030675,0.27056695,0.901588846,-0.901588846,1,0.375972916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675836059,132.5191087,0.675836059,47.48089133,0,0.976017561,0,0,0,5,1,0% +2018-05-11 10:00:00,118.0709059,31.14259658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060726059,0.543540848,1.460177899,-1.460177899,1,0.280448563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677189843,132.6244358,0.677189843,47.37556418,0,0.976165461,0,0,0,5,2,0% +2018-05-11 11:00:00,110.7749145,44.62966689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933386986,0.778934631,2.381772088,-2.381772088,1,0.122846674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622248426,128.480513,0.622248426,51.51948703,0,0.969646241,0,0,0,5,3,0% +2018-05-11 12:00:00,101.6425773,56.06202475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773997635,0.978466917,4.710411506,-4.710411506,1,0,#DIV/0!,0,0,0.215916346,1,0.20918989,0,0.937648662,0.976410625,0.724496596,1,0,0,0.033510492,0.312029739,0.909368037,0.633864633,0.961238037,0.922476074,0,0,0,0,0,0,-0.514755796,120.9811334,0.514755796,59.01886658,0,0.952866562,0,0,0,5,4,0% +2018-05-11 13:00:00,91.27799131,65.94275142,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593101483,1.15091813,44.71290923,-44.71290923,1,0,#DIV/0!,0,0,0.876789693,1,0.022361178,0,0.959206205,0.997968168,0.724496596,1,0,0,0.105796489,0.312029739,0.744118971,0.468615567,0.961238037,0.922476074,0,0,0,0,0,0,-0.362036379,111.2253098,0.362036379,68.77469018,0,0.911892332,0,0,0,5,5,0% +2018-05-11 14:00:00,80.0293791,74.8717401,99.80203593,350.1704177,39.17241528,38.74357233,0,38.74357233,37.99122243,0.752349903,85.93648432,60.55713238,25.37935193,1.181192852,24.19815908,1.396776164,1.306758381,-5.667786143,5.667786143,0.500597796,0.500597796,0.392501164,0.524097282,16.85677015,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.51860807,0.8557702,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.379706697,16.20336865,36.89831476,17.05913885,0,60.55713238,-0.172936174,99.95857852,0.172936174,80.04142148,0,0.760875991,36.89831476,63.13560697,78.21930681,5,6,112% +2018-05-11 15:00:00,68.4490148,83.47283097,307.1637967,641.0353256,71.69291723,94.80898517,22.96234347,71.8466417,69.53111126,2.315530446,76.63722471,0,76.63722471,2.161805973,74.47541874,1.194660678,1.456875736,-2.462357659,2.462357659,0.951241649,0.951241649,0.233402888,2.228980524,71.69167573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.83594888,1.566221068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614888802,68.91276564,68.45083768,70.4789867,22.96234347,0,0.035820715,87.94718507,-0.035820715,92.05281493,0,0,68.45083768,70.4789867,114.5779249,5,7,67% +2018-05-11 16:00:00,56.63506454,92.48240281,515.7337595,772.2747875,91.00601313,287.4292121,195.2795471,92.14966499,88.26184606,3.887818926,127.789788,0,127.789788,2.744167072,125.045621,0.988468348,1.614122429,-1.403182859,1.403182859,0.770112091,0.770112091,0.17645929,3.15176907,101.3717274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.84064364,1.988139702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.283445962,97.44236026,87.1240896,99.43049996,195.2795471,0,0.252862777,75.35301854,-0.252862777,104.6469815,0.852264293,0,253.5538747,99.43049996,318.6291483,5,8,26% +2018-05-11 17:00:00,44.91220374,103.0140671,699.4704265,840.219697,104.435681,495.5775472,389.0180838,106.5594634,101.2865599,5.272903532,172.7438242,0,172.7438242,3.149121109,169.5947031,0.78386583,1.797934647,-0.835970917,0.835970917,0.673113136,0.673113136,0.149306786,3.806612214,122.4337339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.36049399,2.281527523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757877591,117.6879621,100.1183716,119.9694896,389.0180838,0,0.462995673,62.41941764,-0.462995673,117.5805824,0.94200763,0,466.5763747,119.9694896,545.0940062,5,9,17% +2018-05-11 18:00:00,33.7856522,117.2179793,843.1390807,877.5410585,113.7938665,688.7169472,571.9984471,116.7185001,110.3625616,6.355938534,207.8601366,0,207.8601366,3.43130493,204.4288316,0.589670871,2.045839681,-0.454445884,0.454445884,0.607868513,0.607868513,0.134964526,4.19995558,135.0850087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.084692,2.485968741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.042853521,129.8488486,109.1275455,132.3348173,571.9984471,0,0.651819583,49.32106845,-0.651819583,130.6789316,0.973291657,0,665.8488621,132.3348173,752.4593533,5,10,13% +2018-05-11 19:00:00,24.44281956,139.7310987,936.0158544,896.8950238,119.5053377,846.2545096,723.2966159,122.9578937,115.9018108,7.056082886,230.5514076,0,230.5514076,3.603526859,226.9478807,0.42660768,2.438767739,-0.157458326,0.157458326,0.557080649,0.557080649,0.12767448,4.329825179,139.2620614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4092291,2.610742942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136943603,133.8639906,114.5461727,136.4747335,723.2966159,0,0.806445121,36.24994994,-0.806445121,143.7500501,0.987999501,0,829.1628682,136.4747335,918.4828517,5,11,11% +2018-05-11 20:00:00,19.85735027,176.2515868,971.4092979,903.5023008,121.6281257,953.1920156,827.908533,125.2834826,117.960589,7.322893613,239.1969676,0,239.1969676,3.66753675,235.5294309,0.346576143,3.076170502,0.101070761,-0.101070761,0.512869572,0.512869572,0.125207908,4.202331497,135.1614264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.388205,2.657117891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044574864,129.9223041,116.4327798,132.579422,827.908533,0,0.916332512,23.60432419,-0.916332512,156.3956758,0.995434655,0,940.5616244,132.579422,1027.332205,5,12,9% +2018-05-11 21:00:00,23.13568384,214.8518719,946.8104944,898.9512573,120.1556199,999.2486873,875.5787452,123.6699421,116.5324847,7.137457441,233.1883014,0,233.1883014,3.623135268,229.5651662,0.403793858,3.749872569,0.349366338,-0.349366338,0.470408527,0.470408527,0.12690567,3.837216228,123.4180642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0154568,2.624949168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780050095,118.6341378,114.7955069,121.2590869,875.5787452,0,0.974000245,13.09386127,-0.974000245,166.9061387,0.998665311,0,989.2056265,121.2590869,1068.567274,5,13,8% +2018-05-11 22:00:00,31.90487001,239.6190986,863.9882081,882.1640085,115.095567,978.717939,860.5798199,118.1381191,111.625011,6.513108063,212.9545,0,212.9545,3.470556003,209.483944,0.556845029,4.182142222,0.612372746,-0.612372746,0.425431782,0.425431782,0.13321428,3.269400966,105.1551736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2982065,2.51440601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368669871,101.0791526,109.6668763,103.5935586,860.5798199,0,0.975532681,12.70048562,-0.975532681,167.2995144,0.998745951,0,969.1674868,103.5935586,1036.967399,5,14,7% +2018-05-11 23:00:00,42.82532601,254.8827495,728.918228,848.7540214,106.4170205,890.2765292,781.573481,108.7030482,103.2081547,5.494893499,179.9435293,0,179.9435293,3.208865805,176.7346635,0.747442942,4.448543185,0.923468043,-0.923468043,0.372231353,0.372231353,0.145993085,2.54897798,81.98389389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.207604,2.324812352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.84672587,78.80603722,101.0543299,81.13084957,781.573481,0,0.920848045,22.94962317,-0.920848045,157.0503768,0.995702225,0,879.2687838,81.13084957,932.3673023,5,15,6% +2018-05-11 00:00:00,54.47941007,265.8764225,551.6171849,787.9753555,93.80706466,736.3208728,641.1841139,95.13675889,90.97843555,4.158323344,136.574602,0,136.574602,2.828629111,133.7459729,0.95084508,4.640418977,1.347445017,-1.347445017,0.299727021,0.299727021,0.170058271,1.741565,56.014717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.45193278,2.049332162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261757914,53.84347661,88.7136907,55.89280877,641.1841139,0,0.813710872,35.53990543,-0.813710872,144.4600946,0.988553113,0,722.5582425,55.89280877,759.138968,5,16,5% +2018-05-11 01:00:00,66.29055539,275.0678997,346.3754222,672.738862,75.86799465,521.2112699,445.019851,76.19141893,73.58029469,2.611124242,86.27043128,0,86.27043128,2.287699962,83.98273132,1.156988455,4.800840516,2.062560552,-2.062560552,0.177435062,0.177435062,0.219034001,0.933750436,30.03262375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72817801,1.657430835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.676499012,28.8685003,71.40467703,30.52593113,445.019851,0,0.661504599,48.58527677,-0.661504599,131.4147232,0.974414736,0,505.0385774,30.52593113,525.0171888,5,17,4% +2018-05-11 02:00:00,77.92163525,283.6911612,135.7643262,424.4191909,46.95489449,248.1210959,201.5586159,46.56248001,45.53903118,1.023448838,34.33349602,0,34.33349602,1.415863314,32.91763271,1.359989094,4.951344821,3.888281384,-3.888281384,0,0,0.345855909,0.353965828,11.38475779,0.118773154,1,0.251727656,0,0.93164435,0.970406313,0.724496596,1,43.98170707,1.025788151,0.019235463,0.312029739,0.946899774,0.67139637,0.961238037,0.922476074,0.249233987,10.94346223,44.23094106,11.96925038,177.6188634,0,0.474904576,61.64686283,-0.474904576,118.3531372,0.944715691,0,212.0302684,11.96925038,219.8639034,5,18,4% +2018-05-11 03:00:00,88.85489834,292.5236203,0.942362412,5.988782386,0.822679807,2.426723209,1.621746307,0.804976902,0.797872976,0.007103926,0.253293509,0,0.253293509,0.024806832,0.228486677,1.550810533,5.105500314,36.8712208,-36.8712208,0,0,0.872997264,0.006201708,0.199468244,0.852402803,1,0.027114777,0,0.958758758,0.997520721,0.724496596,1,0.76953246,0.017972465,0.103710559,0.312029739,0.748302238,0.472798833,0.961238037,0.922476074,0.004388569,0.191736463,0.773921028,0.209708928,0.239365209,0,0.270797335,74.2882816,-0.270797335,105.7117184,0.865360073,0,0.981058123,0.209708928,1.118308423,5,19,14% +2018-05-11 04:00:00,99.74945611,302.1971333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740956436,5.274334967,-3.567341906,3.567341906,1,0.859794915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0474847,87.27830365,-0.0474847,92.72169635,0,0,0,0,0,5,20,0% +2018-05-11 05:00:00,109.1097348,313.3116307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904324118,5.46831954,-1.296319764,1.296319764,1,0.751837425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162486156,99.35123115,0.162486156,80.64876885,0,0.742281476,0,0,0,5,21,0% +2018-05-11 06:00:00,116.7493217,326.3944868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037660063,5.696658455,-0.4667127,0.4667127,1,0.609966262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351098908,110.554544,0.351098908,69.44545603,0,0.907589987,0,0,0,5,22,0% +2018-05-11 07:00:00,121.9449678,341.6393976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128341194,5.962732343,0.045881947,-0.045881947,1,0.522307415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50549857,120.3644541,0.50549857,59.63554588,0,0.951087752,0,0,0,5,23,0% +2018-05-12 08:00:00,123.9896078,358.4686886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164026895,6.256458881,0.469838895,-0.469838895,1,0.449806506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61516312,127.9637739,0.61516312,52.03622613,0,0.968720745,0,0,0,5,0,0% +2018-05-12 09:00:00,122.5381392,15.44127384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138693988,0.269501069,0.90887512,-0.90887512,1,0.37472689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672619911,132.2695943,0.672619911,47.73040574,0,0.975663812,0,0,0,5,1,0% +2018-05-12 10:00:00,117.8398438,31.02447814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056693264,0.541479292,1.472016141,-1.472016141,1,0.278424104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673954296,132.3729979,0.673954296,47.62700212,0,0.975810993,0,0,0,5,2,0% +2018-05-12 11:00:00,110.5663295,44.47603686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929746491,0.776253281,2.405100556,-2.405100556,1,0.118857271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619075904,128.2486834,0.619075904,51.75131655,0,0.969234459,0,0,0,5,3,0% +2018-05-12 12:00:00,101.455835,55.88764398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770738366,0.975423399,4.785694153,-4.785694153,1,0,#DIV/0!,0,0,0.223752075,1,0.205992179,0,0.938084172,0.976846136,0.724496596,1,0,0,0.034610055,0.312029739,0.906543601,0.631040197,0.961238037,0.922476074,0,0,0,0,0,0,-0.511724461,120.7787636,0.511724461,59.22123637,0,0.952291167,0,0,0,5,4,0% +2018-05-12 13:00:00,91.109611,65.75401962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590162692,1.147624139,51.48775639,-51.48775639,1,0,#DIV/0!,0,0,0.892180629,1,0.019419652,0,0.959480367,0.99824233,0.724496596,1,0,0,0.107095148,0.312029739,0.741532234,0.46602883,0.961238037,0.922476074,0,0,0,0,0,0,-0.359214761,111.0519797,0.359214761,68.94802033,0,0.910807502,0,0,0,5,5,0% +2018-05-12 14:00:00,79.87602763,74.66883594,102.2109537,354.8335836,39.83879468,39.40801737,0,39.40801737,38.63750803,0.770509343,86.44705201,60.46353629,25.98351572,1.201286649,24.78222907,1.394099675,1.303217036,-5.581811781,5.581811781,0.515300278,0.515300278,0.389770306,0.542609505,17.45218688,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.13984237,0.870328088,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.393118739,16.77570585,37.53296111,17.64603394,0,60.46353629,-0.1703997,99.81105928,0.1703997,80.18894072,0,0.756572254,37.53296111,63.39106786,79.0211472,5,6,111% +2018-05-12 15:00:00,68.30313976,83.25145809,309.6110204,642.3064271,72.15300562,96.76590249,24.45459755,72.31130494,69.97732629,2.333978652,77.24445578,0,77.24445578,2.175679336,75.06877645,1.192114678,1.453012051,-2.446369622,2.446369622,0.948507534,0.948507534,0.233044048,2.241804109,72.1041263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.26486775,1.576272273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.624179446,69.30922881,68.88904719,70.88550108,24.45459755,0,0.038073101,87.81804463,-0.038073101,92.18195537,0,0,68.88904719,70.88550108,115.2821899,5,7,67% +2018-05-12 16:00:00,56.4910277,92.23441348,517.9196176,772.5566356,91.41615931,289.4131604,196.8492387,92.56392166,88.65962482,3.904296847,128.332142,0,128.332142,2.756534493,125.5756075,0.985954431,1.609794199,-1.398019029,1.398019029,0.769229024,0.769229024,0.176506462,3.162330492,101.7114191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22300371,1.997099857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.291097676,97.76888478,87.51410138,99.76598464,196.8492387,0,0.25480234,75.2381268,-0.25480234,104.7618732,0.853769463,0,255.5779702,99.76598464,320.8728119,5,8,26% +2018-05-12 17:00:00,44.76112918,102.7280928,701.3880606,840.1680744,104.827884,497.3186666,390.3643707,106.954296,101.6669365,5.287359468,173.2206031,0,173.2206031,3.160947475,170.0596557,0.781229081,1.792943454,-0.834260431,0.834260431,0.672820626,0.672820626,0.149457754,3.81599371,122.7354751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.72612644,2.290095685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764674453,117.9780071,100.4908009,120.2681028,390.3643707,0,0.464626522,62.3139461,-0.464626522,117.6860539,0.942386686,0,468.3649864,120.2681028,547.0780543,5,9,17% +2018-05-12 18:00:00,33.6133569,116.8871424,844.8353194,877.3600966,114.1766652,690.1663911,573.0638481,117.102543,110.7338175,6.368725497,208.2829521,0,208.2829521,3.442847723,204.8401043,0.586663751,2.040065487,-0.454304553,0.454304553,0.607844344,0.607844344,0.135146652,4.208726822,135.367122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4415573,2.494331455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.049208256,130.1200266,109.4907656,132.6143581,573.0638481,0,0.653168352,49.21908984,-0.653168352,130.7809102,0.973450057,0,667.3398013,132.6143581,754.1332463,5,10,13% +2018-05-12 19:00:00,24.2288248,139.4102417,937.5603289,896.6613011,119.8825383,847.4414027,724.1060395,123.3353632,116.2676374,7.067725787,230.9372573,0,230.9372573,3.614900848,227.3223564,0.422872767,2.433167728,-0.158261412,0.158261412,0.557217985,0.557217985,0.127866479,4.338417192,139.5384101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7608755,2.618983359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.143168487,134.1296274,114.904044,136.7486108,724.1060395,0,0.807558036,36.14197349,-0.807558036,143.8580265,0.988084945,0,830.3823204,136.7486108,919.8815512,5,11,11% +2018-05-12 20:00:00,19.6062089,176.2223453,972.8840623,903.250955,122.0026079,954.1845776,828.5267874,125.6577902,118.3237791,7.334011009,239.5658333,0,239.5658333,3.67882877,235.8870046,0.342192899,3.075660141,0.099511728,-0.099511728,0.513136182,0.513136182,0.125403029,4.211118562,135.4440486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7373172,2.665298921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.050941063,130.1939714,116.7882582,132.8592703,828.5267874,0,0.917271975,23.46953362,-0.917271975,156.5304664,0.99549054,0,941.5788373,132.8592703,1028.532572,5,12,9% +2018-05-12 21:00:00,22.91674921,215.1663394,948.3027648,898.7060618,120.5301218,1000.139419,876.0950177,124.0444008,116.895694,7.148706805,233.5614123,0,233.5614123,3.634427882,229.9269844,0.399972728,3.755361062,0.347008113,-0.347008113,0.470811807,0.470811807,0.127100886,3.846519652,123.7172943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3645874,2.633130629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786790394,118.9217691,115.1513778,121.5548997,876.0950177,0,0.974840446,12.87964483,-0.974840446,167.1203552,0.998709555,0,990.1158433,121.5548997,1069.671094,5,13,8% +2018-05-12 22:00:00,31.7329283,239.9656769,865.5834391,881.95488,115.4728967,979.6166607,861.1005642,118.5160964,111.9909629,6.525133588,213.3526601,0,213.3526601,3.481933887,209.8707262,0.55384408,4.188191153,0.608947369,-0.608947369,0.426017556,0.426017556,0.133404697,3.279463696,105.4788256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6499733,2.522649248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375960284,101.3902592,110.0259336,103.9129085,861.1005642,0,0.976354441,12.48452188,-0.976354441,167.5154781,0.998789089,0,970.083782,103.9129085,1038.092702,5,14,7% +2018-05-12 23:00:00,42.67878053,255.1823657,730.6929566,848.6418733,106.800559,891.3097863,782.221386,109.0884003,103.5801281,5.508272153,180.3853979,0,180.3853979,3.220430907,177.164967,0.744885241,4.453772475,0.9183187,-0.9183187,0.373111943,0.373111943,0.146163389,2.559914544,82.33565137,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.56515901,2.333191229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.854649373,79.14415989,101.4198084,81.47735111,782.221386,0,0.921733196,22.81920684,-0.921733196,157.1807932,0.995754368,0,880.32017,81.47735111,933.6454668,5,15,6% +2018-05-12 00:00:00,54.34232653,266.134166,553.6297277,788.1179361,94.20336292,737.6446819,642.1084032,95.5362787,91.36278396,4.173494742,137.0745162,0,137.0745162,2.840578966,134.2339372,0.948452521,4.644917449,1.338921443,-1.338921443,0.301184638,0.301184638,0.170155897,1.753252556,56.39062898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.82138309,2.057989791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270225509,54.20481749,89.0916086,56.26280728,642.1084032,0,0.814736442,35.43868979,-0.814736442,144.5613102,0.988630461,0,723.8995351,56.26280728,760.7224172,5,16,5% +2018-05-12 01:00:00,66.15313821,275.2963338,348.6431061,673.6281788,76.299612,523.0652753,446.4381592,76.62711619,73.99889719,2.628219001,86.83327234,0,86.83327234,2.300714817,84.53255753,1.154590072,4.804827443,2.045359136,-2.045359136,0.180376677,0.180376677,0.218847327,0.945499291,30.41050734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.13055466,1.666860053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685011018,29.23173638,71.81556568,30.89859643,446.4381592,0,0.662736764,48.49107055,-0.662736764,131.5089295,0.974555264,0,506.8942239,30.89859643,527.1167372,5,17,4% +2018-05-12 02:00:00,77.77751557,283.8996055,138.1192031,427.8872063,47.53191086,250.9802711,203.8404219,47.13984926,46.09864837,1.041200895,34.92186237,0,34.92186237,1.433262486,33.48859988,1.357473731,4.954982861,3.831696189,-3.831696189,0,0,0.344136874,0.358315622,11.52466209,0.111194027,1,0.255286746,0,0.93112438,0.969886343,0.724496596,1,44.51175975,1.038393792,0.018069219,0.312029739,0.950036782,0.674533378,0.961238037,0.922476074,0.252672607,11.07794357,44.76443236,12.11633736,181.1745845,0,0.476388214,61.55022498,-0.476388214,118.449775,0.945043583,0,215.9823108,12.11633736,223.9122113,5,18,4% +2018-05-12 03:00:00,88.71353461,292.7174285,1.213590404,7.445185379,1.04643728,3.051496509,2.027464617,1.024031892,1.014883335,0.009148557,0.325802989,0,0.325802989,0.031553945,0.294249044,1.54834327,5.108882906,32.71647218,-32.71647218,0,0,0.862265618,0.007888486,0.253720834,0.83511118,1,0.030556129,0,0.958431449,0.997193412,0.724496596,1,0.979182645,0.022860726,0.10221016,0.312029739,0.75133288,0.475829476,0.961238037,0.922476074,0.005568525,0.243886116,0.984751171,0.266746842,0.334306248,0,0.27231889,74.19769898,-0.27231889,105.802301,0.866391731,0,1.27439134,0.266746842,1.448971813,5,19,14% +2018-05-12 04:00:00,99.57399196,302.3773505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737894009,5.27748035,-3.619236589,3.619236589,1,0.850920402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049590184,87.15752594,-0.049590184,92.84247406,0,0,0,0,0,5,20,0% +2018-05-12 05:00:00,108.9127344,313.4735456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.900885813,5.471145488,-1.303498463,1.303498463,1,0.753065055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.160076904,99.21136002,0.160076904,80.78863998,0,0.737650131,0,0,0,5,21,0% +2018-05-12 06:00:00,116.5292451,326.525447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033819002,5.698944142,-0.466755956,0.466755956,1,0.609973659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34841408,110.3903438,0.34841408,69.6096562,0,0.906492596,0,0,0,5,22,0% +2018-05-12 07:00:00,121.7053092,341.7191621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124158363,5.964124495,0.048564941,-0.048564941,1,0.521848596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502585408,120.1711971,0.502585408,59.82880287,0,0.950514422,0,0,0,5,23,0% +2018-05-13 08:00:00,123.7409001,358.4785541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159686126,6.256631067,0.474511839,-0.474511839,1,0.449007386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612084657,127.7403904,0.612084657,52.25960963,0,0.968311953,0,0,0,5,0,0% +2018-05-13 09:00:00,122.2950988,15.37917965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134452134,0.268417321,0.916037073,-0.916037073,1,0.373502124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669450624,132.0246778,0.669450624,47.97532218,0,0.975311893,0,0,0,5,1,0% +2018-05-13 10:00:00,117.6142665,30.90693776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052756197,0.539427826,1.483686017,-1.483686017,1,0.276428437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67077498,132.1269064,0.67077498,47.87309363,0,0.975459355,0,0,0,5,2,0% +2018-05-13 11:00:00,110.3630954,44.32395978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926199387,0.773599036,2.428196534,-2.428196534,1,0.114907626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615968115,128.022299,0.615968115,51.977701,0,0.968826967,0,0,0,5,3,0% +2018-05-13 12:00:00,101.2742795,55.7153382,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767569624,0.972416095,4.861136634,-4.861136634,1,0,#DIV/0!,0,0,0.231448887,1,0.202882943,0,0.938505485,0.977267448,0.724496596,1,0,0,0.035682935,0.312029739,0.903796895,0.628293491,0.961238037,0.922476074,0,0,0,0,0,0,-0.508764909,120.5815959,0.508764909,59.41840407,0,0.951722782,0,0,0,5,4,0% +2018-05-13 13:00:00,90.94629915,65.5676496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587312363,1.144371368,60.36064782,-60.36064782,1,0,#DIV/0!,0,0,0.907339843,1,0.01656557,0,0.95974439,0.998506353,0.724496596,1,0,0,0.108361034,0.312029739,0.739023843,0.463520439,0.961238037,0.922476074,0,0,0,0,0,0,-0.356470039,110.8835666,0.356470039,69.11643337,0,0.909735758,0,0,0,5,5,0% +2018-05-13 14:00:00,79.72763006,74.46847757,104.545725,359.2437293,40.48260628,40.05001617,0,40.05001617,39.26190633,0.788109836,86.90103951,60.33201814,26.56902137,1.220699944,25.34832142,1.391509649,1.299720123,-5.500996504,5.500996504,0.529120504,0.529120504,0.387223928,0.560705717,18.03422328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.74003777,0.884392954,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.406229383,17.33518138,38.14626715,18.21957433,0,60.33201814,-0.167941743,99.66816917,0.167941743,80.33183083,0,0.752277712,38.14626715,63.60600691,79.77512655,5,6,109% +2018-05-13 15:00:00,68.16233217,83.03276307,311.9641354,643.4833744,72.60236895,98.66227414,25.89741706,72.76485708,70.41313965,2.351717427,77.82854572,0,77.82854572,2.189229298,75.63931642,1.189657122,1.449195103,-2.431140424,2.431140424,0.945903188,0.945903188,0.232726653,2.254104592,72.49975213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68378813,1.586089174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.633091104,69.68951941,69.31687923,71.27560858,25.89741706,0,0.040245666,87.69347025,-0.040245666,92.30652975,0,0,69.31687923,71.27560858,115.9653395,5,7,67% +2018-05-13 16:00:00,56.3522392,91.98914734,520.0134639,772.7946738,91.81901228,291.3190679,198.3486565,92.97041143,89.05033028,3.920081145,128.8519668,0,128.8519668,2.768681996,126.0832848,0.983532115,1.605513497,-1.393109859,1.393109859,0.768389506,0.768389506,0.176570452,3.172463168,102.0373207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.59856466,2.005900681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298438765,98.08215387,87.89700343,100.0880546,198.3486565,0,0.256664109,75.12778616,-0.256664109,104.8722138,0.855192864,0,257.5233591,100.0880546,323.028989,5,8,25% +2018-05-13 17:00:00,44.61562442,102.4445796,703.2203344,840.0913508,105.2142907,498.9800524,391.6371888,107.3428636,102.0416917,5.301171922,173.6765107,0,173.6765107,3.172599065,170.5039117,0.778689544,1.787995215,-0.832663099,0.832663099,0.672547466,0.672547466,0.149617816,3.825008643,123.0254263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.08635536,2.298537222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771205741,118.2567193,100.8575611,120.5552565,391.6371888,0,0.466184051,62.21312128,-0.466184051,117.7868787,0.942746223,0,470.0720418,120.5552565,548.9730461,5,9,17% +2018-05-13 18:00:00,33.44708087,116.5573976,846.4549516,877.1626348,114.5546222,691.5406918,574.0593791,117.4813127,111.1003777,6.38093497,208.6870475,0,208.6870475,3.454244522,205.2328029,0.583761686,2.034310355,-0.454217981,0.454217981,0.607829539,0.607829539,0.135334576,4.217183928,135.6391316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.793909,2.502588398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.0553354,130.3814926,109.8492444,132.884081,574.0593791,0,0.654450334,49.12201552,-0.654450334,130.8779845,0.973600008,0,668.7534607,132.884081,755.723434,5,10,13% +2018-05-13 19:00:00,24.02105715,139.0860954,939.0379979,896.4156042,120.2556482,848.56104,724.8526782,123.7083618,116.6294967,7.078865079,231.3067859,0,231.3067859,3.62615149,227.6806344,0.419246537,2.427510308,-0.159088147,0.159088147,0.557359365,0.557359365,0.128062601,4.346742245,139.8061724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1087085,2.62713441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14919996,134.3870107,115.2579084,137.0141451,724.8526782,0,0.808612294,36.03943046,-0.808612294,143.9605695,0.988165669,0,831.5324403,137.0141451,921.2054581,5,11,11% +2018-05-13 20:00:00,19.36030272,176.1862537,974.3020446,902.99018,122.3736397,955.1195343,829.091211,126.0283233,118.6836229,7.344700359,239.9208275,0,239.9208275,3.690016747,236.2308108,0.337901027,3.075030225,0.097950103,-0.097950103,0.513403235,0.513403235,0.125601337,4.21968048,135.7194293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0832127,2.673404572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057144143,130.4586778,117.1403569,133.1320823,829.091211,0,0.918161935,23.34116844,-0.918161935,156.6588316,0.995543375,0,942.5366194,133.1320823,1029.668905,5,12,9% +2018-05-13 21:00:00,22.70180247,215.4748797,949.7477502,898.4528103,120.9017189,1000.982804,876.567118,124.4156858,117.256086,7.159599716,233.9229707,0,233.9229707,3.645632906,230.2773378,0.396221199,3.760746106,0.344665994,-0.344665994,0.471212333,0.471212333,0.127298768,3.855633117,124.0104147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.71101,2.64124863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793393068,119.2035276,115.504403,121.8447762,876.567118,0,0.975640688,12.67230728,-0.975640688,167.3276927,0.998751625,0,990.9772365,121.8447762,1070.722206,5,13,8% +2018-05-13 22:00:00,31.56379174,240.305502,867.1396815,881.738111,115.8477595,980.4778317,861.5864444,118.8913873,112.3545221,6.536865201,213.7412926,0,213.7412926,3.493237381,210.2480552,0.55089209,4.194122221,0.605560412,-0.605560412,0.42659676,0.42659676,0.133597576,3.289363924,105.7972509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9994402,2.530838591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383132965,101.6963418,110.3825732,104.2271804,861.5864444,0,0.977145519,12.27309023,-0.977145519,167.7269098,0.998830549,0,970.9614343,104.2271804,1039.176039,5,14,7% +2018-05-13 23:00:00,42.53418394,255.475514,732.4352363,848.5211829,107.1819249,892.313674,782.8422734,109.4714006,103.9499944,5.521406193,180.8193334,0,180.8193334,3.231930495,177.5874029,0.742361554,4.458888878,0.913243191,-0.913243191,0.373979906,0.373979906,0.146336385,2.570708328,82.68281657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.92068855,2.341522642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862469432,79.47786828,101.783158,81.81939092,782.8422734,0,0.922596028,22.69139621,-0.922596028,157.3086038,0.995805099,0,881.3414859,81.81939092,934.8906409,5,15,6% +2018-05-13 00:00:00,54.20671926,266.3859593,555.614266,788.2479703,94.5975442,738.9441151,643.0105808,95.93353424,91.74507921,4.18845503,137.5675765,0,137.5675765,2.852464985,134.7151115,0.946085728,4.64931207,1.330546385,-1.330546385,0.302616857,0.302616857,0.170257587,1.764812346,56.76243155,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.18885984,2.066601172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278600537,54.56220827,89.46746037,56.62880944,643.0105808,0,0.815746574,35.3387516,-0.815746574,144.6612484,0.988706454,0,725.2161717,56.62880944,762.2785949,5,16,5% +2018-05-13 01:00:00,66.01700514,275.519186,350.8854514,674.4900562,76.72852099,524.8933593,447.8333635,77.05999573,74.41487298,2.645122747,87.3898881,0,87.3898881,2.313648006,85.07624009,1.152214102,4.808716948,2.028535929,-2.028535929,0.183253615,0.183253615,0.218671138,0.957144217,30.78504818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53040642,1.676230104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.693447727,29.59175927,72.22385415,31.26798938,447.8333635,0,0.663958437,48.39753094,-0.663958437,131.6024691,0.974694081,0,508.7243831,31.26798938,529.1886567,5,17,4% +2018-05-13 02:00:00,77.63468538,284.1026406,140.4554048,431.265216,48.10253097,253.7971234,206.086249,47.71087435,46.65206218,1.05881217,35.50550782,0,35.50550782,1.450468788,34.05503904,1.354980874,4.958526492,3.777017776,-3.777017776,0,0,0.342475471,0.362617197,11.66301555,0.103745405,1,0.258820667,0,0.930605428,0.969367392,0.724496596,1,45.03538237,1.0508597,0.016915291,0.312029739,0.953151157,0.677647753,0.961238037,0.922476074,0.25609113,11.21093417,45.2914735,12.26179387,184.7057477,0,0.477864296,61.45399149,-0.477864296,118.5460085,0.945367785,0,219.906337,12.26179387,227.9314359,5,18,4% +2018-05-13 03:00:00,88.57251853,292.9058323,1.528548268,9.112563415,1.301539056,3.769312104,2.49549641,1.273815694,1.262292852,0.011522843,0.409860429,0,0.409860429,0.039246205,0.370614225,1.545882075,5.112171171,29.39370012,-29.39370012,0,0,0.85148705,0.009811551,0.315573213,0.818064886,1,0.034007779,0,0.958100312,0.996862275,0.724496596,1,1.218305069,0.028433742,0.10071335,0.312029739,0.754374306,0.478870902,0.961238037,0.922476074,0.00690979,0.303340976,1.22521486,0.331774717,0.454018424,0,0.273852296,74.10636985,-0.273852296,105.8936302,0.867419825,0,1.619039442,0.331774717,1.836179359,5,19,13% +2018-05-13 04:00:00,99.4004737,302.5520592,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734865544,5.280529592,-3.672685467,3.672685467,1,0.841780105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051685414,87.03732384,-0.051685414,92.96267616,0,0,0,0,0,5,20,0% +2018-05-13 05:00:00,108.7183057,313.6298634,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897492392,5.47387375,-1.310859357,1.310859357,1,0.754323842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.157682625,99.07241299,0.157682625,80.92758701,0,0.732907359,0,0,0,5,21,0% +2018-05-13 06:00:00,116.3125681,326.6509918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030037274,5.701135311,-0.466896495,0.466896495,1,0.609997693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.345750952,110.2276434,0.345750952,69.77235663,0,0.905387238,0,0,0,5,22,0% +2018-05-13 07:00:00,121.4699732,341.794337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120050974,5.965436546,0.05115665,-0.05115665,1,0.521405387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499702217,119.9803008,0.499702217,60.01969922,0,0.949940408,0,0,0,5,23,0% +2018-05-14 08:00:00,123.4972919,358.4854673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15543436,6.256751726,0.479080815,-0.479080815,1,0.448226045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60904541,127.5205119,0.60904541,52.47948814,0,0.967904315,0,0,0,5,0,0% +2018-05-14 09:00:00,122.0575638,15.31610916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130306365,0.267316533,0.923067772,-0.923067772,1,0.372299804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666330136,131.7844509,0.666330136,48.2155491,0,0.974962121,0,0,0,5,1,0% +2018-05-14 10:00:00,117.3942373,30.79001769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048915964,0.537387185,1.495175065,-1.495175065,1,0.274463695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667653727,131.8862356,0.667653727,48.11376445,0,0.97511088,0,0,0,5,2,0% +2018-05-14 11:00:00,110.165267,44.17348418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92274663,0.770972741,2.451031082,-2.451031082,1,0.111002689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612926692,127.801424,0.612926692,52.19857599,0,0.968424176,0,0,0,5,3,0% +2018-05-14 12:00:00,101.0979554,55.54516829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764492188,0.96944607,4.93662679,-4.93662679,1,0,#DIV/0!,0,0,0.238999285,1,0.199863058,0,0.938912659,0.977674622,0.724496596,1,0,0,0.036728548,0.312029739,0.90112873,0.625625326,0.961238037,0.922476074,0,0,0,0,0,0,-0.505878495,120.3896862,0.505878495,59.61031382,0,0.951162037,0,0,0,5,4,0% +2018-05-14 13:00:00,90.17994887,65.3837172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573937027,1.141161142,317.3664179,-317.3664179,1,0,#DIV/0!,0,0,0.981732724,1,0.003150922,0,0.960959039,0.999721002,0.724496596,1,0,0,0.114389556,0.312029739,0.727255251,0.451751847,0.961238037,0.922476074,0,0,0,0,0,0,-0.343860252,110.1122369,0.343860252,69.88776313,0,0.904592092,0,0,0,5,5,0% +2018-05-14 14:00:00,79.58421287,74.27075877,106.8046516,363.4072421,41.10420208,40.66989731,0,40.66989731,39.86475873,0.805138578,87.3022657,60.16679802,27.13546767,1.239443351,25.89602432,1.389006547,1.296269278,-5.425023008,5.425023008,0.542112737,0.542112737,0.384854044,0.578357209,18.60195594,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.31952242,0.897972489,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419017829,17.88090761,38.73854025,18.7788801,0,60.16679802,-0.165563013,99.5299426,0.165563013,80.4700574,0,0.748000181,38.73854025,63.78365591,80.48366737,5,6,108% +2018-05-14 15:00:00,68.02660442,82.8168638,314.2230392,644.5681734,73.04107938,100.4971854,27.28981801,73.20736734,70.83862135,2.368745997,78.38947183,0,78.38947183,2.202458036,76.18701379,1.187288226,1.44542695,-2.416647991,2.416647991,0.943424836,0.943424836,0.23244979,2.26588491,72.87864763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.09277732,1.59567335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641625904,70.05372817,69.73440322,71.64940152,27.28981801,0,0.042338141,87.57347793,-0.042338141,92.42652207,0,0,69.73440322,71.64940152,116.6275035,5,7,67% +2018-05-14 16:00:00,56.21870281,91.74675879,522.0156229,772.9895928,92.21460144,293.1469222,199.7777569,93.36916524,89.43399097,3.935174266,129.3493419,0,129.3493419,2.780610469,126.5687315,0.981201465,1.601283019,-1.388450671,1.388450671,0.767592738,0.767592738,0.176651038,3.182169707,102.3495164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96735391,2.014542819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.30547112,98.38224822,88.27282503,100.396791,199.7777569,0,0.258448185,75.02199719,-0.258448185,104.9780028,0.856537623,0,259.3899901,100.396791,325.0976819,5,8,25% +2018-05-14 17:00:00,44.4756902,102.1637418,704.9678333,839.9898716,105.5949328,500.5621576,392.8369564,107.7252013,102.410856,5.314345307,174.1116899,0,174.1116899,3.184076828,170.927613,0.776247231,1.78309367,-0.831177199,0.831177199,0.672293362,0.672293362,0.149786881,3.833659851,123.3036789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.44121015,2.306852823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.777473512,118.5241863,101.2186837,120.8310391,392.8369564,0,0.467668682,62.11692823,-0.467668682,117.8830718,0.943086705,0,471.6979943,120.8310391,550.7794927,5,9,17% +2018-05-14 18:00:00,33.28683657,116.2290501,847.9987148,876.9488987,114.9277747,692.8406143,574.9857635,117.8548508,111.4622783,6.392572508,209.0726026,0,209.0726026,3.465496446,205.6071062,0.580964896,2.02857961,-0.45418517,0.45418517,0.607823928,0.607823928,0.135528242,4.225329728,135.9011285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1417815,2.510740378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061237004,130.633334,110.2030186,133.1440744,574.9857635,0,0.655666213,49.02981492,-0.655666213,130.9701851,0.973741686,0,670.0906253,133.1440744,757.2307591,5,10,13% +2018-05-14 19:00:00,23.81957266,138.7589727,940.4496418,896.158105,120.6247065,849.6143799,725.5374467,124.0769332,116.9874266,7.089506647,231.6601838,0,231.6601838,3.63727996,228.0229038,0.415729969,2.42180094,-0.159937705,0.159937705,0.557504648,0.557504648,0.128262802,4.354802777,140.0654268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4527643,2.635196949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155039787,134.6362159,115.607804,137.2714129,725.5374467,0,0.809608754,35.94227679,-0.809608754,144.0577232,0.988241774,0,832.6142178,137.2714129,922.4556121,5,11,11% +2018-05-14 20:00:00,19.11971473,176.1431915,975.6639599,902.7201165,122.7412568,955.9979172,829.602795,126.3951221,119.0401551,7.354967052,240.2621247,0,240.2621247,3.70110176,236.5610229,0.333701974,3.074278647,0.096386736,-0.096386736,0.513670587,0.513670587,0.125802799,4.228018905,135.9876217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.425925,2.681435626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063185304,130.7164745,117.4891103,133.3979101,829.602795,0,0.919003332,23.21919191,-0.919003332,156.7808081,0.995593233,0,943.4360392,133.3979101,1030.742303,5,12,9% +2018-05-14 21:00:00,22.49087909,215.7771609,951.1459969,898.1916176,121.2704384,1001.779823,876.9959952,124.7838275,117.6136872,7.17014029,234.2731101,0,234.2731101,3.656751158,230.6163589,0.392539892,3.766021908,0.342340956,-0.342340956,0.471609938,0.471609938,0.127499289,3.864557162,124.2974427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0547498,2.649303766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.799858508,119.4794298,115.8546083,122.1287335,876.9959952,0,0.976401893,12.47193908,-0.976401893,167.5280609,0.998791578,0,991.7908225,122.1287335,1071.721636,5,13,8% +2018-05-14 22:00:00,31.39747261,240.6383381,868.6572212,881.5137854,116.2201683,981.3022564,862.0382499,119.2640065,112.7157014,6.548305056,214.1204671,0,214.1204671,3.50446688,210.6160002,0.547989274,4.199931307,0.602213054,-0.602213054,0.427169192,0.427169192,0.133792899,3.299100829,106.1104232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3466195,2.538974325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39018732,101.9973749,110.7368069,104.5363492,862.0382499,0,0.977906715,12.06620283,-0.977906715,167.9337972,0.998870379,0,971.80128,104.5363492,1040.21823,5,14,7% +2018-05-14 23:00:00,42.39155472,255.7620468,734.1450205,848.3919866,107.5611115,893.2887053,783.4366629,109.8520424,104.3177471,5.534295269,181.2453242,0,181.2453242,3.243364369,178.0019599,0.739872205,4.463889818,0.908242955,-0.908242955,0.374834997,0.374834997,0.146512077,2.581357023,83.02531523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2741864,2.349806444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870184376,79.80709102,102.1443708,82.15689747,783.4366629,0,0.923437132,22.56614452,-0.923437132,157.4338555,0.995854462,0,882.3332675,82.15689747,936.1033138,5,15,6% +2018-05-14 00:00:00,54.0726208,266.6317008,557.5703729,788.3654157,94.98957505,740.2192965,643.8908066,96.32848988,92.12528889,4.203200989,138.0536784,0,138.0536784,2.864286162,135.1893922,0.943745268,4.653601069,1.322321375,-1.322321375,0.304023416,0.304023416,0.170363383,1.776240549,57.13000185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.55433183,2.075165574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286880231,54.91553082,89.84121207,56.99069639,643.8908066,0,0.816741569,35.24006996,-0.816741569,144.75993,0.988781125,0,726.5082882,56.99069639,763.8075592,5,16,5% +2018-05-14 01:00:00,65.88220399,275.736381,353.1016247,675.3243789,77.1546519,526.6952153,449.2052316,77.48998367,74.82815448,2.661829198,87.9400744,0,87.9400744,2.326497425,85.61357698,1.149861378,4.812507716,2.012090042,-2.012090042,0.186066027,0.186066027,0.218505514,0.968679807,31.15607242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92766831,1.685539465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701805223,29.94840188,72.62947353,31.63394135,449.2052316,0,0.665169577,48.30466379,-0.665169577,131.6953362,0.974831198,0,510.5287478,31.63394135,531.2325297,5,17,4% +2018-05-14 02:00:00,77.49320811,284.3002097,142.7715239,434.5534488,48.66665255,256.5709913,208.2955458,48.27544547,47.19917341,1.076272054,36.08408806,0,36.08408806,1.467479135,34.61660892,1.352511629,4.961974723,3.724190036,-3.724190036,0,0,0.340870863,0.366869784,11.79979335,0.096429345,1,0.262326996,0,0.930087917,0.96884988,0.724496596,1,45.55249288,1.063183638,0.015774334,0.312029739,0.956240786,0.680737382,0.961238037,0.922476074,0.259488464,11.3424102,45.81198134,12.40559384,188.2097427,0,0.479332396,61.35819118,-0.479332396,118.6418088,0.945688252,0,223.799724,12.40559384,231.918937,5,18,4% +2018-05-14 03:00:00,88.43201347,293.0887919,1.888562583,10.99315009,1.587755788,4.58157779,3.027461915,1.554115876,1.539879093,0.014236782,0.505780559,0,0.505780559,0.047876695,0.457903863,1.543429799,5.11536442,26.6790735,-26.6790735,0,0,0.840721829,0.011969174,0.384969773,0.801281203,1,0.037465022,0,0.957765784,0.996527747,0.724496596,1,1.48670478,0.034686503,0.099222131,0.312029739,0.757422276,0.481918872,0.961238037,0.922476074,0.008410434,0.370047589,1.495115215,0.404734092,0.60161359,0,0.275395304,74.0144269,-0.275395304,105.9855731,0.868442801,0,2.017582206,0.404734092,2.282472574,5,19,13% +2018-05-14 04:00:00,99.22899103,302.7212401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731872607,5.283482356,-3.727712306,3.727712306,1,0.832369962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.053769228,86.91776376,-0.053769228,93.08223624,0,0,0,0,0,5,20,0% +2018-05-14 05:00:00,108.5265475,313.7805909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894145579,5.47650444,-1.318399834,1.318399834,1,0.75561334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155304799,98.93447404,0.155304799,81.06552596,0,0.728052448,0,0,0,5,21,0% +2018-05-14 06:00:00,116.0993915,326.7711577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026316641,5.703232602,-0.467135022,0.467135022,1,0.610038483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343111253,110.0665422,0.343111253,69.93345779,0,0.904274672,0,0,0,5,22,0% +2018-05-14 07:00:00,121.2390539,341.8649831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116020673,5.966669552,0.053654534,-0.053654534,1,0.520978224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496850892,119.7918745,0.496850892,60.20812554,0,0.949366186,0,0,0,5,23,0% +2018-05-15 08:00:00,123.2588649,358.4894925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151273024,6.256821978,0.483541583,-0.483541583,1,0.447463209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606047343,127.3042456,0.606047343,52.69575441,0,0.967498195,0,0,0,5,0,0% +2018-05-15 09:00:00,121.8256036,15.25211574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126257896,0.266199638,0.92996037,-0.92996037,1,0.3711211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663260379,131.5490044,0.663260379,48.45099558,0,0.974614825,0,0,0,5,1,0% +2018-05-15 10:00:00,117.1798163,30.67376589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045173611,0.535358209,1.506470855,-1.506470855,1,0.272532001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664592332,131.6510578,0.664592332,48.34894217,0,0.974765909,0,0,0,5,2,0% +2018-05-15 11:00:00,109.9728947,44.02466364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9193891,0.768375333,2.473574938,-2.473574938,1,0.107147462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609953207,127.5861196,0.609953207,52.41388038,0,0.968026499,0,0,0,5,3,0% +2018-05-15 12:00:00,100.9269024,55.37719942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761506751,0.96651446,5.012046149,-5.012046149,1,0,#DIV/0!,0,0,0.246395897,1,0.196933317,0,0.939305762,0.978067725,0.724496596,1,0,0,0.03774634,0.312029739,0.898539844,0.62303644,0.961238037,0.922476074,0,0,0,0,0,0,-0.503066494,120.2030858,0.503066494,59.79691419,0,0.95060956,0,0,0,5,4,0% +2018-05-15 13:00:00,90.05299245,65.20230193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571721219,1.137994849,1077.417909,-1077.417909,1,0,#DIV/0!,0,0,0.994586376,1,0.000928145,0,0.961156104,0.999918067,0.724496596,1,0,0,0.115401261,0.312029739,0.725308953,0.449805548,0.961238037,0.922476074,0,0,0,0,0,0,-0.341690749,109.9799172,0.341690749,70.02008284,0,0.903668851,0,0,0,5,5,0% +2018-05-15 14:00:00,79.44579639,74.07577662,108.9862457,367.3304373,41.70393325,41.26799015,0,41.26799015,40.44640579,0.821584356,87.65438253,59.97187801,27.68250452,1.257527459,26.42497706,1.386590724,1.292866198,-5.353601295,5.353601295,0.554326569,0.554326569,0.382653178,0.595537681,19.15453898,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.8786237,0.911074363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.431465023,18.41207145,39.31008872,19.32314581,0,59.97187801,-0.163264113,99.39640808,0.163264113,80.60359192,0,0.743747762,39.31008872,63.92709586,81.14909442,5,6,106% +2018-05-15 15:00:00,67.89596278,82.6038814,316.3877453,645.5627937,73.46921339,102.2698533,28.63094335,73.63891,71.25384553,2.385064467,78.92723971,0,78.92723971,2.215367856,76.71187185,1.185008099,1.441709705,-2.40287103,2.40287103,0.941068837,0.941068837,0.232212576,2.277148394,73.24092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.4919066,1.60502647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.64978626,70.40195816,70.14169286,72.00698463,28.63094335,0,0.044350362,87.45807769,-0.044350362,92.54192231,0,0,70.14169286,72.00698463,117.2688242,5,7,67% +2018-05-15 16:00:00,56.09041579,91.50740583,523.9265176,773.1420876,92.60296179,294.8968221,201.1366018,93.76022022,89.81064082,3.949579397,129.824371,0,129.824371,2.792320967,127.03205,0.978962434,1.597105522,-1.384036741,1.384036741,0.766837912,0.766837912,0.176747996,3.191453065,102.6481011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.32940407,2.023027035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.312196881,98.66925919,88.64160096,100.6922862,201.1366018,0,0.26015477,74.92075417,-0.26015477,105.0792458,0.857806714,0,261.1779285,100.6922862,327.079016,5,8,25% +2018-05-15 17:00:00,44.34132025,101.8857988,706.6312227,839.8639896,105.9698464,502.0655351,393.9641859,108.1013492,102.7744645,5.326884639,174.5263029,0,174.5263029,3.195381855,171.330921,0.773902033,1.778242649,-0.829800895,0.829800895,0.672058,0.672058,0.149964852,3.841950416,123.570332,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.79072451,2.315043277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.783479998,118.7805034,101.5742045,121.0955466,393.9641859,0,0.469080935,62.02534541,-0.469080935,117.9746546,0.943408586,0,473.2434002,121.0955466,552.4980136,5,9,17% +2018-05-15 18:00:00,33.13262894,115.9024164,849.4674033,876.7191188,115.296163,694.0670061,575.8438037,118.2232024,111.8195583,6.403644103,209.4398114,0,209.4398114,3.476604712,205.9632067,0.578273465,2.022878778,-0.454205013,0.454205013,0.607827321,0.607827321,0.135727589,4.233167188,136.1532082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.4852127,2.518788279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066915218,130.8756425,110.5521279,133.3944308,575.8438037,0,0.656816752,48.94245035,-0.656816752,131.0575497,0.973875267,0,671.3521658,133.3944308,758.6561529,5,10,13% +2018-05-15 19:00:00,23.62442106,138.4292158,941.7960736,895.8889773,120.9897541,850.6024407,726.1613175,124.4411232,117.3414666,7.099656619,231.9976493,0,231.9976493,3.648287489,228.3493618,0.412323931,2.416045597,-0.160809158,0.160809158,0.557653675,0.557653675,0.12846704,4.362601248,140.3162525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.793081,2.643171867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160689753,134.8773191,115.9537707,137.5204909,726.1613175,0,0.810548333,35.85046028,-0.810548333,144.1495397,0.988313364,0,833.6287052,137.5204909,923.6331161,5,11,11% +2018-05-15 20:00:00,18.88452739,176.0930618,976.9705297,902.4409035,123.1054954,956.8207911,830.062564,126.758227,119.3934105,7.364816527,240.5899008,0,240.5899008,3.712084898,236.8778159,0.329597181,3.073403718,0.094822569,-0.094822569,0.513938075,0.513938075,0.126007379,4.236135413,136.2486765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7654875,2.689392872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069065687,130.9674103,117.8345532,133.6568032,830.062564,0,0.919797142,23.10355649,-0.919797142,156.8964435,0.995640188,0,944.2782003,133.6568032,1031.753905,5,12,9% +2018-05-15 21:00:00,22.28401654,216.072856,952.4980322,897.9225927,121.6363062,1002.53146,877.3826051,125.1488553,117.9685228,7.180332504,234.611959,0,234.611959,3.667783422,230.9441756,0.388929459,3.771182762,0.340034065,-0.340034065,0.47200444,0.47200444,0.127702423,3.873292161,124.5783903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3958312,2.657296604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806186986,119.7494873,116.2020182,122.4067839,877.3826051,0,0.977124991,12.27862222,-0.977124991,167.7213778,0.998829474,0,992.5576239,122.4067839,1072.670416,5,13,8% +2018-05-15 22:00:00,31.23398676,240.9639549,870.1363033,881.2819764,116.5901337,982.0907158,862.4567498,119.633966,113.074511,6.559455001,214.4902435,0,214.4902435,3.515622702,210.9746208,0.545135907,4.205614392,0.598906574,-0.598906574,0.427734634,0.427734634,0.133990656,3.30867336,106.4183087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6915209,2.54705668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397122586,102.2933262,111.0886435,104.8403829,862.4567498,0,0.978638816,11.86387127,-0.978638816,168.1361287,0.998908628,0,972.604132,104.8403829,1041.220066,5,14,7% +2018-05-15 23:00:00,42.25091572,256.0418211,735.8222038,848.2543022,107.938108,894.2353436,784.0050292,110.2303144,104.6833758,5.546938585,181.6633446,0,181.6633446,3.254732206,178.4086124,0.737417591,4.468772801,0.90331955,-0.90331955,0.375676949,0.375676949,0.146690474,2.591858047,83.36306426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6256427,2.358042404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877792332,80.13174824,102.503435,82.48979064,784.0050292,0,0.924257062,22.44340839,-0.924257062,157.5565916,0.995902496,0,883.2960005,82.48979064,937.2839187,5,15,6% +2018-05-15 00:00:00,53.94006824,266.8712931,559.49755,788.4701985,95.37941637,741.4702777,644.7491737,96.72110392,92.50337506,4.217728865,138.5326999,0,138.5326999,2.876041316,135.6566586,0.94143179,4.657782744,1.314248108,-1.314248108,0.305404026,0.305404026,0.170473341,1.787533057,57.49320772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91776264,2.083682143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295061615,55.26465812,90.21282426,57.34834027,644.7491737,0,0.817721678,35.14262897,-0.817721678,144.857371,0.988854501,0,727.7759468,57.34834027,765.3092885,5,16,5% +2018-05-15 01:00:00,65.74878701,275.9478473,355.2907164,676.1309751,77.57792708,528.4704464,450.5534486,77.91699785,75.23866635,2.678331496,88.48360835,0,88.48360835,2.339260734,86.14434761,1.147532812,4.816198499,1.996020921,-1.996020921,0.188814009,0.188814009,0.218350561,0.980100391,31.52339765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32226794,1.694786438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710079397,30.30148887,73.03234733,31.99627531,450.5534486,0,0.666370075,48.21248016,-0.666370075,131.7875198,0.974966619,0,512.3069196,31.99627531,533.2478418,5,17,4% +2018-05-15 02:00:00,77.35315131,284.4922597,145.0660892,437.7520273,49.22416119,259.3011167,210.4676761,48.83344056,47.73987111,1.093569457,36.65724292,0,36.65724292,1.484290078,35.17295284,1.350067177,4.965326628,3.673160503,-3.673160503,0,0,0.339322315,0.371072519,11.93496778,0.089248004,1,0.265803216,0,0.929572288,0.968334251,0.724496596,1,46.06299971,1.075363108,0.014647025,0.312029739,0.959303475,0.683800071,0.961238037,0.922476074,0.262863394,11.472345,46.32586311,12.5477081,191.683856,0,0.480792008,61.26285792,-0.480792008,118.7371421,0.946004927,0,227.6597353,12.5477081,235.8719593,5,18,4% +2018-05-15 03:00:00,88.29218336,293.266272,2.294303096,13.08528606,1.90432742,5.488113325,3.623912977,1.864200348,1.846904922,0.017295426,0.613702846,0,0.613702846,0.057422498,0.556280348,1.540989303,5.118462031,24.42245487,-24.42245487,0,0,0.830024343,0.014355624,0.46172623,0.784776468,1,0.040923065,0,0.957428323,0.996190286,0.724496596,1,1.783686862,0.041602404,0.097738501,0.312029739,0.760472464,0.48496906,0.961238037,0.922476074,0.010065843,0.443828815,1.793752705,0.48543122,0.779951352,0,0.276945644,73.92200453,-0.276945644,106.0779955,0.869459157,0,2.47188855,0.48543122,2.789593575,5,19,13% +2018-05-15 04:00:00,99.0596367,302.8848781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728916816,5.286338377,-3.784336634,3.784336634,1,0.822686631,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055840385,86.79891657,-0.055840385,93.20108343,0,0,0,0,0,5,20,0% +2018-05-15 05:00:00,108.3375605,313.9257389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890847135,5.479037751,-1.326116408,1.326116408,1,0.756932952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152944976,98.79763101,0.152944976,81.20236899,0,0.723085045,0,0,0,5,21,0% +2018-05-15 06:00:00,115.8898175,326.8859862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022658885,5.705236737,-0.467471946,0.467471946,1,0.610096101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340496769,109.9071428,0.340496769,70.09285717,0,0.903155729,0,0,0,5,22,0% +2018-05-15 07:00:00,121.0126459,341.9311652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112069107,5.967824648,0.056056209,-0.056056209,1,0.520567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494033363,119.6060294,0.494033363,60.3939706,0,0.94879226,0,0,0,5,23,0% +2018-05-16 08:00:00,123.0257,358.4906984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147203529,6.256843025,0.487890002,-0.487890002,1,0.446719585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603092433,127.0916994,0.603092433,52.9083006,0,0.967093969,0,0,0,5,0,0% +2018-05-16 09:00:00,121.5992862,15.18725799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122307912,0.265067656,0.936708093,-0.936708093,1,0.369967171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660243274,131.3184289,0.660243274,48.68157112,0,0.974270338,0,0,0,5,1,0% +2018-05-16 10:00:00,116.9710606,30.5582356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041530138,0.533341825,1.517560988,-1.517560988,1,0.270635476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661592564,131.4214442,0.661592564,48.57855581,0,0.974424785,0,0,0,5,2,0% +2018-05-16 11:00:00,109.7860253,43.87755648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916127615,0.765807828,2.495798509,-2.495798509,1,0.103347008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607049186,127.3764443,0.607049186,52.62355565,0,0.967634351,0,0,0,5,3,0% +2018-05-16 12:00:00,100.7611562,55.21150086,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758613933,0.963622475,5.087269801,-5.087269801,1,0,#DIV/0!,0,0,0.253631466,1,0.194094443,0,0.939684869,0.978446832,0.724496596,1,0,0,0.038735781,0.312029739,0.896030909,0.620527505,0.961238037,0.922476074,0,0,0,0,0,0,-0.500330115,120.0218426,0.500330115,59.97815739,0,0.950065979,0,0,0,5,4,0% +2018-05-16 13:00:00,89.92991213,65.02348684,0.012122212,0.460790512,0.011558544,0.011301394,0,0.011301394,0.011210011,9.13824E-05,0.159763451,0.156475748,0.003287703,0.000348533,0.002939171,1.569573063,1.134873936,-814.4029336,814.4029336,0,0,0.953501199,8.71332E-05,0.002802503,1,0.992795454,0,0.001227893,0.961238037,1,0.721020607,0.996524011,0.010775489,0.000251991,0.115824807,0.308079505,0.724496596,0.448993192,0.961861643,0.92309968,6.31277E-05,0.002694837,0.010838617,0.002946828,0,0.001127337,-0.339581097,109.8513543,0.339581097,70.14864568,0,0.902759767,0.010838617,0.003964543,0.013433331,5,5,24% +2018-05-16 14:00:00,79.31239568,73.88363136,111.1632386,371.5947592,42.24949407,41.81351139,0,41.81351139,40.97551594,0.837995448,88.07047544,59.8436831,28.22679234,1.27397813,26.95281421,1.384262442,1.28951263,-5.286466195,5.286466195,0.565807348,0.565807348,0.380067139,0.612431968,19.69791731,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.3872245,0.922992819,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.443704876,18.93438736,39.83092938,19.85738018,0,59.8436831,-0.161045552,99.26758899,0.161045552,80.73241101,0,0.739528836,39.83092938,64.11350947,81.79193905,5,6,105% +2018-05-16 15:00:00,67.77040815,82.39394,318.5645962,646.9707664,73.80331095,103.9226106,29.94326729,73.97934331,71.57786882,2.401474488,79.46511668,0,79.46511668,2.22544213,77.23967455,1.182816758,1.438045537,-2.389789084,2.389789084,0.938831692,0.938831692,0.231674555,2.28861199,73.60962864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80337011,1.612325248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658091596,70.75637493,70.4614617,72.36870018,29.94326729,0,0.046282257,87.34727439,-0.046282257,92.65272561,0,0,70.4614617,72.36870018,117.8253286,5,7,67% +2018-05-16 16:00:00,55.96736975,91.27124981,525.8656072,773.6597792,92.87534251,296.5708778,202.5318725,94.03900534,90.07480826,3.964197074,130.302739,0,130.302739,2.80053425,127.5022047,0.976814876,1.592983822,-1.379863346,1.379863346,0.766124219,0.766124219,0.176614217,3.200811672,102.9491061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58333186,2.028977531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.31897716,98.95859663,88.90230902,100.9875742,202.5318725,0,0.261784156,74.82404597,-0.261784156,105.175954,0.859002956,0,262.8777861,100.9875742,328.9721337,5,8,25% +2018-05-16 17:00:00,44.21250221,101.6109749,708.3364789,840.0594533,106.216754,503.5356166,395.1819501,108.3536665,103.0139269,5.33973958,174.9472072,0,174.9472072,3.20282703,171.7443801,0.771653734,1.773446068,-0.828532272,0.828532272,0.671841053,0.671841053,0.149952399,3.850215348,123.8361606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02090489,2.32043728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789467913,119.0360279,101.8103728,121.3564652,395.1819501,0,0.470421407,61.93834554,-0.470421407,118.0616545,0.94371232,0,474.7484477,121.3564652,554.173827,5,9,17% +2018-05-16 18:00:00,32.98445627,115.5778238,850.9904868,876.7817004,115.5299586,695.2985446,576.8371148,118.4614299,112.0463041,6.41512575,209.8161505,0,209.8161505,3.483654512,206.332496,0.575687364,2.017213567,-0.454276317,0.454276317,0.607839515,0.607839515,0.135759401,4.240904835,136.4020775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7031694,2.523895835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.072521117,131.1148652,110.7756905,133.6387611,576.8371148,0,0.657902776,48.85987796,-0.657902776,131.140122,0.974000929,0,672.615576,133.6387611,760.0794723,5,10,13% +2018-05-16 19:00:00,23.43564642,138.0971952,943.2084963,895.8963376,121.2170095,851.6311295,726.958956,124.6721735,117.5618695,7.110304058,232.3469601,0,232.3469601,3.655140081,228.69182,0.409029192,2.410250743,-0.161701498,0.161701498,0.557806274,0.557806274,0.128515604,4.370242218,140.5620124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0049406,2.648136546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16622561,135.1135528,116.1711662,137.7616894,726.958956,0,0.811431999,35.76392155,-0.811431999,144.2360785,0.988380542,0,834.6832531,137.7616894,924.8455236,5,11,11% +2018-05-16 20:00:00,18.65482312,176.0357909,978.3534338,902.4335699,123.3312131,957.7177052,830.7301418,126.9875634,119.612322,7.375241442,240.9320081,0,240.9320081,3.718891119,237.213117,0.325588085,3.072404152,0.093258628,-0.093258628,0.514205525,0.514205525,0.126059979,4.244044087,136.5030466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9759136,2.694323956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074795494,131.2119206,118.0507091,133.9062445,830.7301418,0,0.92054437,22.99420476,-0.92054437,157.0057952,0.995684313,0,945.1956794,133.9062445,1032.834638,5,12,9% +2018-05-16 21:00:00,22.08125447,216.3616417,953.9349138,897.9315937,121.865102,1003.388903,878.0073195,125.3815839,118.1904196,7.191164324,234.9672466,0,234.9672466,3.67468246,231.2925641,0.385390593,3.776223024,0.337746474,-0.337746474,0.472395641,0.472395641,0.127749913,3.881769301,124.8510442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6091269,2.662294933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.812328645,120.0115726,116.4214555,122.6738676,878.0073195,0,0.977810922,12.09243037,-0.977810922,167.9075696,0.99886537,0,993.4325613,122.6738676,1073.720154,5,13,8% +2018-05-16 22:00:00,31.0733535,241.2821261,871.7061789,881.3461407,116.8268498,983.0151975,863.1398189,119.8753786,113.3040892,6.571289386,214.8780159,0,214.8780159,3.522760565,211.3552553,0.542332328,4.211167526,0.595642339,-0.595642339,0.428292851,0.428292851,0.134020904,3.317933113,106.7161342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9122003,2.552228038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403831246,102.5796074,111.3160315,105.1318354,863.1398189,0,0.979342598,11.66610681,-0.979342598,168.3338932,0.998945343,0,973.5455343,105.1318354,1042.352218,5,14,7% +2018-05-16 23:00:00,42.11229386,256.3146975,737.5926504,848.4452172,108.1888622,895.3464828,784.859629,110.4868537,104.9265688,5.560284959,182.100171,0,182.100171,3.262293368,178.8378776,0.734998183,4.473535392,0.898474638,-0.898474638,0.376505477,0.376505477,0.146678335,2.601983254,83.68872572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.859409,2.36352044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88512801,80.44478641,102.744537,82.80830685,784.859629,0,0.925056342,22.32314758,-0.925056342,157.6768524,0.995949238,0,884.4248866,82.80830685,938.6212673,5,15,6% +2018-05-16 00:00:00,53.80910285,267.1046415,561.5156584,788.9556515,95.65513349,742.9115363,645.9078158,97.00372051,92.77077829,4.232942218,139.0303276,0,139.0303276,2.884355205,136.1459724,0.939146012,4.661855442,1.306328415,-1.306328415,0.306758374,0.306758374,0.170351676,1.798379244,57.84205838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.1748008,2.089705527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302919641,55.59998665,90.47772044,57.68969217,645.9078158,0,0.818687102,35.04641725,-0.818687102,144.9535828,0.988926606,0,729.2331445,57.68969217,766.9898942,5,16,5% +2018-05-16 01:00:00,65.61681045,276.1535158,357.5611281,677.3914251,77.90873558,530.4542047,452.1992581,78.25494657,75.55949975,2.695446818,89.04407103,0,89.04407103,2.34923583,86.6948352,1.145229387,4.819788092,1.9803283,-1.9803283,0.191497605,0.191497605,0.217889277,0.991012309,31.87436244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63066521,1.702013362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717985044,30.63884957,73.34865025,32.34086294,452.1992581,0,0.667559761,48.12099575,-0.667559761,131.8790042,0.975100339,0,514.2883,32.34086294,535.454748,5,17,4% +2018-05-16 02:00:00,77.21458622,284.6787405,147.4205253,441.4384262,49.73009596,262.2222656,212.8803973,49.34186827,48.23055008,1.11131819,37.24335901,0,37.24335901,1.499545878,35.74381313,1.34764876,4.968581332,3.623880008,-3.623880008,0,0,0.337334953,0.374886469,12.05763752,0.082203617,1,0.269246719,0,0.929059004,0.967820967,0.724496596,1,46.52485705,1.086415884,0.013534061,0.312029739,0.962336952,0.686833548,0.961238037,0.922476074,0.265974799,11.59025982,46.79083185,12.6766757,195.3808586,0,0.482242561,61.16803005,-0.482242561,118.8319699,0.946317737,0,231.6832039,12.6766757,239.9798346,5,18,4% +2018-05-16 03:00:00,88.15319094,293.4382398,2.752872179,15.47596808,2.25412324,6.51697879,4.31007337,2.206905421,2.186153107,0.020752313,0.735435864,0,0.735435864,0.067970133,0.667465731,1.538563428,5.121463436,22.51936627,-22.51936627,0,0,0.818825973,0.016992533,0.546538277,0.768565917,1,0.044377069,0,0.957088411,0.995850374,0.724496596,1,2.111953432,0.04924413,0.096264431,0.312029739,0.763520502,0.488017098,0.961238037,0.922476074,0.011890689,0.52535338,2.12384412,0.57459751,0.997497878,0,0.278501051,73.82923691,-0.278501051,106.1707631,0.870467464,0,2.992133568,0.57459751,3.368196147,5,19,13% +2018-05-16 04:00:00,98.89250616,303.0429613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725999838,5.28909745,-3.842573276,3.842573276,1,0.812727579,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.057897579,86.68085695,-0.057897579,93.31914305,0,0,0,0,0,5,20,0% +2018-05-16 05:00:00,108.1514477,314.065322,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887598854,5.481473936,-1.334004738,1.334004738,1,0.758281935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150604762,98.66197503,0.150604762,81.33802497,0,0.718005186,0,0,0,5,21,0% +2018-05-16 06:00:00,115.6839494,326.9955218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019065808,5.707148494,-0.467907405,0.467907405,1,0.610170568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.337909331,109.7495503,0.337909331,70.25044971,0,0.902031313,0,0,0,5,22,0% +2018-05-16 07:00:00,120.790844,341.9929515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108197934,5.968903023,0.058359411,-0.058359411,1,0.520173643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491251593,119.4228784,0.491251593,60.57712157,0,0.94821916,0,0,0,5,23,0% +2018-05-17 08:00:00,122.7978778,358.4891573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143227281,6.256816128,0.492122001,-0.492122001,1,0.445995871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600182673,126.8829817,0.600182673,53.11701826,0,0.96669203,0,0,0,5,0,0% +2018-05-17 09:00:00,121.3786782,15.12159862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118457576,0.263921684,0.943304208,-0.943304208,1,0.368839169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657280739,131.0928147,0.657280739,48.90718527,0,0.973929005,0,0,0,5,1,0% +2018-05-17 10:00:00,116.7680257,30.44348439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03798651,0.531339038,1.528433038,-1.528433038,1,0.268776246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658656168,131.1974649,0.658656168,48.80253509,0,0.974087859,0,0,0,5,2,0% +2018-05-17 11:00:00,109.6047033,43.73222502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912962948,0.763271316,2.517671804,-2.517671804,1,0.099606454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604216113,127.172455,0.604216113,52.82754497,0,0.967248152,0,0,0,5,3,0% +2018-05-17 12:00:00,100.600749,55.04814537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755814301,0.960771384,5.16216606,-5.16216606,1,0,#DIV/0!,0,0,0.260698815,1,0.191347106,0,0.940050059,0.978812022,0.724496596,1,0,0,0.03969636,0.312029739,0.893602554,0.61809915,0.961238037,0.922476074,0,0,0,0,0,0,-0.497670515,119.8460018,0.497670515,60.15399819,0,0.949531922,0,0,0,5,4,0% +2018-05-17 13:00:00,89.81048423,64.84735804,0.04068495,0.655554009,0.038516595,0.037661878,0,0.037661878,0.037355177,0.0003067,0.232293772,0.221267817,0.011025955,0.001161417,0.009864537,1.567488653,1.131799909,-301.1044255,301.1044255,0,0,0.946703753,0.000290354,0.009338794,1,0.980400628,0,0.003321095,0.961238037,1,0.715122146,0.99062555,0.035907217,0.000836827,0.115824807,0.301376877,0.724496596,0.448993192,0.962912466,0.924150503,0.000210361,0.008985347,0.036117578,0.009822173,0,0.00433671,-0.337527975,109.7263363,0.337527975,70.27366366,0,0.901864131,0.036117578,0.013733297,0.045105746,5,5,25% +2018-05-17 14:00:00,79.18402181,73.694426,113.3361728,376.2056143,42.73921808,42.3048489,0,42.3048489,41.45047296,0.854375944,88.55040703,59.78199467,28.76841237,1.288745116,27.47966725,1.382021896,1.286210374,-5.223375421,5.223375421,0.576596505,0.576596505,0.3771013,0.62904498,20.23224888,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.84377125,0.933691449,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.455740947,19.4480072,40.2995122,20.38169865,0,59.78199467,-0.158907769,99.1435049,0.158907769,80.8564951,0,0.735352073,40.2995122,64.34251233,82.41039967,5,6,104% +2018-05-17 15:00:00,67.64993745,82.18716637,320.7542456,648.7894062,74.04271673,105.4567511,31.22871446,74.22803662,71.81005563,2.41798099,80.0032415,0,80.0032415,2.232661098,77.77058041,1.180714147,1.434436656,-2.377382624,2.377382624,0.936710063,0.936710063,0.230839397,2.30027337,73.98469872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.0265569,1.617555365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666540226,71.11690655,70.69309713,72.73446192,31.22871446,0,0.048133823,87.24106904,-0.048133823,92.75893096,0,0,70.69309713,72.73446192,118.2963478,5,7,67% +2018-05-17 16:00:00,55.84955197,91.03845488,527.8336326,774.5404141,93.03152917,298.1702342,203.964916,94.2053182,90.22628532,3.979032881,130.7846191,0,130.7846191,2.805243854,127.9793753,0.974758568,1.588920784,-1.375925823,1.375925823,0.765450863,0.765450863,0.176251613,3.210246035,103.2525476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.72893737,2.032389623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.325812324,99.25027618,89.0547497,101.2826658,203.964916,0,0.263336699,74.73185741,-0.263336699,105.2681426,0.860129009,0,264.4908908,101.2826658,330.7783699,5,8,25% +2018-05-17 17:00:00,44.0892189,101.3394984,710.084457,840.5746724,106.3356195,504.9734234,396.4912986,108.4821248,103.1292082,5.352916578,175.3746089,0,175.3746089,3.206411265,172.1681977,0.769502034,1.76870791,-0.827369369,0.827369369,0.671642185,0.671642185,0.149750665,3.858457134,124.1012448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.13171768,2.323034046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.795439059,119.2908369,101.9271567,121.613871,396.4912986,0,0.471690751,61.85589707,-0.471690751,118.1441029,0.943998346,0,476.2142866,121.613871,555.8081329,5,9,17% +2018-05-17 18:00:00,32.8423114,115.2556083,852.568875,877.1354447,115.6292011,696.5361917,577.9666133,118.5695784,112.1425541,6.427024306,210.2018415,0,210.2018415,3.48664704,206.7151944,0.573206468,2.011589846,-0.454397827,0.454397827,0.607860295,0.607860295,0.135624469,4.248546074,136.647846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7956885,2.526063912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.078057168,131.3511072,110.8737457,133.8771712,577.9666133,0,0.65892516,48.78204918,-0.65892516,131.2179508,0.974118848,0,673.8819175,133.8771712,761.5018484,5,10,13% +2018-05-17 19:00:00,23.25328798,137.7633073,944.6877831,896.1791707,121.3065406,852.7013207,727.9311643,124.7701564,117.6487008,7.121455546,232.70833,0,232.70833,3.657839772,229.0504902,0.405846437,2.404423301,-0.162613651,0.162613651,0.557962262,0.557962262,0.128409134,4.377729248,140.802821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0884062,2.650092463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171649938,135.3450272,116.2600562,137.9951197,727.9311643,0,0.812260749,35.68259554,-0.812260749,144.3174045,0.988443412,0,835.7788202,137.9951197,926.0938661,5,11,11% +2018-05-17 20:00:00,18.43068477,175.9713265,979.8134106,902.6971308,123.4184776,958.6893563,831.6061538,127.0832025,119.6969551,7.386247364,241.2886278,0,241.2886278,3.721522464,237.5671053,0.321676133,3.071279037,0.091696001,-0.091696001,0.51447275,0.51447275,0.125961205,4.251748135,136.7508353,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0572661,2.696230357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.08037705,131.4501045,118.1376432,134.1463348,831.6061538,0,0.921246036,22.89107089,-0.921246036,157.1089291,0.995725682,0,946.1892481,134.1463348,1033.985341,5,12,9% +2018-05-17 21:00:00,21.8826346,216.6431949,955.457154,898.2175227,121.9568706,1004.352542,878.8704809,125.4820606,118.279421,7.202639614,235.3390985,0,235.3390985,3.677449622,231.6616489,0.381924023,3.781137053,0.335479396,-0.335479396,0.472783334,0.472783334,0.127642428,3.889991153,125.1154872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6946785,2.664299733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818285349,120.2657653,116.5129638,122.9300651,878.8704809,0,0.978460627,11.91342915,-0.978460627,168.0865709,0.998899323,0,994.4160926,122.9300651,1074.871362,5,13,8% +2018-05-17 22:00:00,30.91559505,241.5926269,873.3670622,881.704889,116.9303109,984.0756277,864.0873873,119.9882404,113.4044306,6.583809827,215.283836,0,215.283836,3.525880301,211.7579557,0.539578924,4.216586788,0.592421787,-0.592421787,0.428843597,0.428843597,0.133884498,3.326881968,107.0039602,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0086522,2.554488275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.41031466,102.8562766,111.4189669,105.4107649,864.0873873,0,0.980018823,11.47292021,-0.980018823,168.5270798,0.998980572,0,974.6254791,105.4107649,1043.614717,5,14,7% +2018-05-17 23:00:00,41.97571935,256.580538,739.4562369,848.9627693,108.3132707,896.6214032,785.9998438,110.6215594,105.0472259,5.574333461,182.5557705,0,182.5557705,3.266044744,179.2897258,0.732614509,4.478175185,0.893709958,-0.893709958,0.377320286,0.377320286,0.146476918,2.611734046,84.00234469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9753892,2.366238299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.892192426,80.7462489,102.8675816,83.1124872,785.9998438,0,0.925835469,22.20532432,-0.925835469,157.7946757,0.995994724,0,885.7192792,83.1124872,940.1147398,5,15,6% +2018-05-17 00:00:00,53.67976916,267.3316528,563.6242563,789.8187444,95.81642204,744.5415011,647.36546,97.17604111,92.92720339,4.24883772,139.546445,0,139.546445,2.889218649,136.6572264,0.936888714,4.665817536,1.298564227,-1.298564227,0.308086128,0.308086128,0.17000053,1.808780577,58.17660101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.32516255,2.093229076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310455371,55.92156175,90.63561792,58.01479082,647.36546,0,0.819638005,34.95142693,-0.819638005,145.0485731,0.98899746,0,730.8784137,58.01479082,768.847934,5,16,5% +2018-05-17 01:00:00,65.48633369,276.3533192,359.9122557,679.1009402,78.1462966,532.6439596,454.1408915,78.50306804,75.78989743,2.713170611,89.62129248,0,89.62129248,2.356399172,87.26489331,1.142952138,4.823275319,1.965012128,-1.965012128,0.194116825,0.194116825,0.217125967,1.001417676,32.2090348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.85213222,1.707203178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725523697,30.96054938,73.57765592,32.66775256,454.1408915,0,0.668738423,48.03022982,-0.668738423,131.9697702,0.97523235,0,516.470545,32.66775256,537.8509357,5,17,4% +2018-05-17 02:00:00,77.07758685,284.8596033,149.8346652,445.6092282,50.18244557,265.3325798,215.5338031,49.79877668,48.66925968,1.129516997,37.8423352,0,37.8423352,1.513185888,36.32914931,1.34525767,4.971737984,3.576302263,-3.576302263,0,0,0.334918795,0.378296472,12.16731492,0.075298462,1,0.272654832,0,0.928548542,0.967310505,0.724496596,1,46.93623439,1.096298024,0.012436156,0.312029739,0.965338887,0.689835483,0.961238037,0.922476074,0.268810083,11.69568591,47.20504448,12.79198393,199.3044393,0,0.483683437,61.07374925,-0.483683437,118.9262508,0.946626603,0,235.8719288,12.79198393,244.2440265,5,18,4% +2018-05-17 03:00:00,88.01519626,293.6046646,3.266643914,18.19110234,2.636605414,7.676314681,5.094587307,2.581727374,2.557102033,0.024625342,0.871539018,0,0.871539018,0.079503381,0.792035637,1.536154967,5.124368097,20.89485043,-20.89485043,0,0,0.807129728,0.019875845,0.639275508,0.752663577,1,0.047822193,0,0.956746543,0.995508506,0.724496596,1,2.471014094,0.057599929,0.094801855,0.312029739,0.766562012,0.491058608,0.961238037,0.922476074,0.013881688,0.614495934,2.484895782,0.672095864,1.260077001,0,0.280059296,73.73625631,-0.280059296,106.2637437,0.871466379,0,3.583010523,0.672095864,4.022883824,5,19,12% +2018-05-17 04:00:00,98.72769675,303.1954798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723123371,5.291759399,-3.902432066,3.902432066,1,0.802491123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059939457,86.56366236,-0.059939457,93.43633764,0,0,0,0,0,5,20,0% +2018-05-17 05:00:00,107.9683133,314.1993566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884402555,5.48381328,-1.342059696,1.342059696,1,0.759659414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148285804,98.52759946,0.148285804,81.47240054,0,0.712813307,0,0,0,5,21,0% +2018-05-17 06:00:00,115.4818912,327.0998106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015539228,5.708968678,-0.46844132,0.46844132,1,0.610261873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335350799,109.5938713,0.335350799,70.40612874,0,0.900902398,0,0,0,5,22,0% +2018-05-17 07:00:00,120.5737434,342.0504114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104408813,5.969905887,0.060561959,-0.060561959,1,0.519796985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488507564,119.2425352,0.488507564,60.75746477,0,0.94764744,0,0,0,5,23,0% +2018-05-18 08:00:00,122.5754788,358.4849432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139345688,6.256742577,0.49623354,-0.49623354,1,0.445292756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597320061,126.6782013,0.597320061,53.32179867,0,0.966292783,0,0,0,5,0,0% +2018-05-18 09:00:00,121.1638461,15.05520274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114708048,0.262762857,0.949741974,-0.949741974,1,0.367738247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654374687,130.8722524,0.654374687,49.1277476,0,0.973591176,0,0,0,5,1,0% +2018-05-18 10:00:00,116.570766,30.32957271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034543678,0.529350905,1.5390745,-1.5390745,1,0.266956449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655784873,130.97919,0.655784873,49.02080999,0,0.973755484,0,0,0,5,2,0% +2018-05-18 11:00:00,109.4289715,43.5887344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909895849,0.760766932,2.539164334,-2.539164334,1,0.095931015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601455448,126.9742077,0.601455448,53.02579229,0,0.966868323,0,0,0,5,3,0% +2018-05-18 12:00:00,100.4457117,54.88720824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753108389,0.957962501,5.236596043,-5.236596043,1,0,#DIV/0!,0,0,0.267590807,1,0.188691949,0,0.940401411,0.979163374,0.724496596,1,0,0,0.040627577,0.312029739,0.891255382,0.615751977,0.961238037,0.922476074,0,0,0,0,0,0,-0.495088817,119.6756072,0.495088817,60.32439277,0,0.94900802,0,0,0,5,4,0% +2018-05-18 13:00:00,89.69462252,64.67400384,0.079856995,0.904480653,0.075036278,0.073375653,0,0.073375653,0.072773658,0.000601996,0.325105545,0.303480672,0.021624874,0.002262621,0.019362253,1.565466484,1.128774307,-186.8110074,186.8110074,0,0,0.939633132,0.000565655,0.018193414,1,0.968230487,0,0.005352952,0.961238037,1,0.709429237,0.984932641,0.069952808,0.001624973,0.115824807,0.294908666,0.724496596,0.448993192,0.9639178,0.925155837,0.000409815,0.017514552,0.070362623,0.019139525,0,0.009641433,-0.335530308,109.6047889,0.335530308,70.39521109,0,0.900982165,0.070362623,0.027826284,0.08857437,5,5,26% +2018-05-18 14:00:00,79.06068326,73.50826546,115.43041,380.5929105,43.20558833,42.77294361,0,42.77294361,41.90278043,0.870163188,88.98668477,59.69643756,29.29024721,1.3028079,27.98743931,1.379869232,1.28296126,-5.164107918,5.164107918,0.586731845,0.586731845,0.374299878,0.645154707,20.75039309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.2785464,0.943879888,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467412389,19.94606712,40.74595878,20.88994701,0,59.69643756,-0.156851155,99.02417298,0.156851155,80.97582702,0,0.731226447,40.74595878,64.54156092,82.98711958,5,6,104% +2018-05-18 15:00:00,67.53454497,81.98368899,322.8508095,650.5176437,74.27088707,106.929278,32.46414645,74.46513157,72.03134579,2.433785775,80.51845789,0,80.51845789,2.239541275,78.27891661,1.178700169,1.430885306,-2.365633169,2.365633169,0.934700787,0.934700787,0.230047083,2.311421551,74.34326253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23926942,1.62254003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674617045,71.46157173,70.91388647,73.08411176,32.46414645,0,0.049905098,87.13946033,-0.049905098,92.86053967,0,0,70.91388647,73.08411176,118.7459759,5,7,67% +2018-05-18 16:00:00,55.73694683,90.80918691,529.7122791,775.3769421,93.18031194,299.69351,205.3297333,94.36377665,90.37058174,3.993194911,131.2446051,0,131.2446051,2.809730204,128.4348749,0.972793237,1.584919303,-1.372219654,1.372219654,0.764817071,0.764817071,0.175907404,3.21926378,103.5425893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.86764058,2.035639968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33234565,99.52907529,89.19998623,101.5647153,205.3297333,0,0.264812793,74.6441708,-0.264812793,105.3558292,0.861187369,0,266.0273591,101.5647153,332.4994339,5,8,25% +2018-05-18 17:00:00,43.97144976,101.0716002,711.7507284,841.0640844,106.4488027,506.3349597,397.7305035,108.6044562,103.2389786,5.365477635,175.7820286,0,175.7820286,3.209824156,172.5722045,0.767446575,1.764032203,-0.826310235,0.826310235,0.671461062,0.671461062,0.149559106,3.866347367,124.3550218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.23723307,2.325506674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801155506,119.534777,102.0383886,121.8602837,397.7305035,0,0.472889654,61.77796571,-0.472889654,118.2220343,0.944267088,0,477.6022131,121.8602837,557.3573315,5,9,17% +2018-05-18 18:00:00,32.70618308,114.9361127,854.07483,877.4720235,115.7238223,697.7031507,579.0304518,118.6726989,112.2343221,6.438376831,210.5698309,0,210.5698309,3.489500219,207.0803307,0.57083058,2.006013596,-0.454568267,0.454568267,0.607889442,0.607889442,0.135496116,4.255888766,136.8840123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8838995,2.52813103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.083376924,131.5781192,110.9672764,134.1062502,579.0304518,0,0.659884801,48.70891233,-0.659884801,131.2910877,0.974229199,0,675.0756496,134.1062502,762.8455082,5,10,13% +2018-05-18 19:00:00,23.07738109,137.4279712,946.104425,896.4493776,121.3922342,853.709201,728.8452558,124.8639452,117.7318105,7.132134791,233.0543952,0,233.0543952,3.660423751,229.3939714,0.402776283,2.398570581,-0.163544516,0.163544516,0.558121449,0.558121449,0.128307437,4.38496309,141.0354862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1682944,2.651964547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176890831,135.5686739,116.3451852,138.2206384,728.8452558,0,0.813035598,35.60641321,-0.813035598,144.3935868,0.988502078,0,836.8102349,138.2206384,927.2728783,5,11,11% +2018-05-18 20:00:00,18.21219568,175.8996339,981.2202197,902.9505074,123.5025231,959.6082549,832.432936,127.1753189,119.7784664,7.396852485,241.6322592,0,241.6322592,3.724056749,237.9082024,0.317862779,3.070027765,0.090135808,-0.090135808,0.514739559,0.514739559,0.125866264,4.259236939,136.991701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1356179,2.698066437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085802663,131.6816337,118.2214206,134.3797002,832.432936,0,0.921903171,22.79408224,-0.921903171,157.2059178,0.995764369,0,947.128478,134.3797002,1035.077304,5,12,9% +2018-05-18 21:00:00,21.68820007,216.9171894,956.9346816,898.4943703,122.0458955,1005.272956,879.693417,125.5795393,118.3657614,7.213777841,235.7000266,0,235.7000266,3.680134051,232.0198926,0.3785305,3.78591916,0.333234079,-0.333234079,0.473167306,0.473167306,0.127538376,3.89802756,125.3739657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7776722,2.666244592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824107698,120.5142247,116.6017799,123.1804693,879.693417,0,0.979075046,11.7416764,-0.979075046,168.2583236,0.998931392,0,995.3551492,123.1804693,1075.974303,5,13,8% +2018-05-18 22:00:00,30.76073546,241.8952324,874.9900708,882.0544448,117.0313402,985.1012404,865.0027821,120.0984582,113.5024135,6.596044751,215.6803996,0,215.6803996,3.528926706,212.1514729,0.536876114,4.221868251,0.589246387,-0.589246387,0.429386623,0.429386623,0.133751621,3.335666576,107.2865034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1028371,2.556695386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.416679079,103.1278679,111.5195162,105.6845632,865.0027821,0,0.980668242,11.28432102,-0.980668242,168.715679,0.999014358,0,975.6697152,105.6845632,1044.838148,5,14,7% +2018-05-18 23:00:00,41.8412244,256.8392053,741.2867339,849.4692589,108.4353337,897.8676437,787.1139029,110.7537408,105.1656083,5.588132521,183.0032763,0,183.0032763,3.269725394,179.733551,0.730267129,4.48268978,0.889027283,-0.889027283,0.37812107,0.37812107,0.146279879,2.621333982,84.31111163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0891829,2.368904918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899147546,81.04304743,102.9883304,83.41195235,787.1139029,0,0.926594923,22.08990201,-0.926594923,157.910098,0.996038988,0,886.9844655,83.41195235,941.5759201,5,15,6% +2018-05-18 00:00:00,53.55211362,267.5522342,565.7023308,790.6650181,95.97505158,746.1451281,648.7995753,97.34555279,93.08104966,4.264503123,140.0550815,0,140.0550815,2.894001915,137.1610796,0.934660704,4.669667408,1.290957513,-1.290957513,0.309386953,0.309386953,0.169656454,1.819040496,58.50659528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.47304545,2.096694536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317888647,56.23876479,90.79093409,58.33545932,648.7995753,0,0.82057453,34.85765221,-0.82057453,145.1423478,0.989067083,0,732.4972373,58.33545932,770.6766287,5,16,5% +2018-05-18 01:00:00,65.35741771,276.5471905,362.2337899,680.7760494,78.37984378,534.8029114,456.0558377,78.74707362,76.0164023,2.730671316,90.19121764,0,90.19121764,2.363441481,87.82777616,1.14070213,4.826659012,1.950072441,-1.950072441,0.196671662,0.196671662,0.216379162,1.011700545,32.53976721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.06985732,1.712305307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732973601,31.27846195,73.80283092,32.99076726,456.0558377,0,0.66990582,47.94020362,-0.66990582,132.0597964,0.975362643,0,518.6226581,32.99076726,540.2144554,5,17,4% +2018-05-18 02:00:00,76.94222852,285.0348002,152.2243747,449.685683,50.62535959,268.3951664,218.1488165,50.24634984,49.09881821,1.147531637,38.43510343,0,38.43510343,1.526541379,36.90856205,1.342895221,4.974795747,3.530383332,-3.530383332,0,0,0.332570652,0.381635345,12.27470455,0.068534803,1,0.276024838,0,0.928041394,0.966803357,0.724496596,1,47.33846913,1.105974033,0.011354029,0.312029739,0.968306913,0.692803509,0.961238037,0.922476074,0.271604181,11.79891291,47.61007331,12.90488694,203.1980303,0,0.485113991,60.98005892,-0.485113991,119.0199411,0.946931441,0,240.024677,12.90488694,248.4706674,5,18,4% +2018-05-18 03:00:00,87.87835509,293.7655164,3.828581657,21.13991978,3.045955883,8.93635707,5.95338653,2.98297054,2.954109075,0.028861466,1.020130757,0,1.020130757,0.091846808,0.928283949,1.533766638,5.12717549,19.49372432,-19.49372432,0,0,0.795583366,0.022961702,0.738527269,0.737082156,1,0.051253633,0,0.956403228,0.995165191,0.724496596,1,2.855425405,0.0665427,0.093352647,0.312029739,0.769592652,0.494089248,0.961238037,0.922476074,0.016007932,0.709900502,2.871433337,0.776443202,1.565251549,0,0.281618218,73.64319124,-0.281618218,106.3568088,0.872454668,0,4.237044357,0.776443202,4.745210904,5,19,12% +2018-05-18 04:00:00,98.56530641,303.3424244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720289125,5.294324066,-3.963917824,3.963917824,1,0.791976439,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061964647,86.44741136,-0.061964647,93.55258864,0,0,0,0,0,5,20,0% +2018-05-18 05:00:00,107.7882615,314.3278594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881260058,5.486056077,-1.350275485,1.350275485,1,0.761064397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.145989764,98.3945984,0.145989764,81.6054016,0,0.707510234,0,0,0,5,21,0% +2018-05-18 06:00:00,115.2837467,327.1988989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012080954,5.710698095,-0.469073466,0.469073466,1,0.610369977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.332823043,109.4402126,0.332823043,70.55978743,0,0.899770017,0,0,0,5,22,0% +2018-05-18 07:00:00,120.3614389,342.1036137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100703401,5.970834442,0.062661704,-0.062661704,1,0.519437907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.485803258,119.0651131,0.485803258,60.93488688,0,0.947077677,0,0,0,5,23,0% +2018-05-19 08:00:00,122.3585834,358.4781293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135560149,6.256623652,0.500220566,-0.500220566,1,0.444610935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594506592,126.4774661,0.594506592,53.52253386,0,0.965896643,0,0,0,5,0,0% +2018-05-19 09:00:00,120.9548558,14.98813576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11106048,0.261592318,0.956014604,-0.956014604,1,0.366665564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651527019,130.6568318,0.651527019,49.34316824,0,0.973257212,0,0,0,5,1,0% +2018-05-19 10:00:00,116.3793354,30.21656193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031202583,0.527378494,1.549472739,-1.549472739,1,0.265178245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65298039,130.7666893,0.65298039,49.23331074,0,0.973428022,0,0,0,5,2,0% +2018-05-19 11:00:00,109.2588721,43.44715084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906927055,0.758295833,2.560245042,-2.560245042,1,0.092326001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59876863,126.7817581,0.59876863,53.21824193,0,0.966495291,0,0,0,5,3,0% +2018-05-19 12:00:00,100.296074,54.72876567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750496718,0.955197157,5.310413355,-5.310413355,1,0,#DIV/0!,0,0,0.274300315,1,0.186129609,0,0.940739,0.979500963,0.724496596,1,0,0,0.041528939,0.312029739,0.888989987,0.613486583,0.961238037,0.922476074,0,0,0,0,0,0,-0.492586123,119.5107021,0.492586123,60.48929789,0,0.948494907,0,0,0,5,4,0% +2018-05-19 13:00:00,89.58232988,64.50351322,0.130773049,1.2133622,0.121928058,0.1192373,0,0.1192373,0.118251477,0.000985822,0.440147673,0.404763652,0.035384021,0.003676581,0.03170744,1.563506608,1.125798685,-136.5463419,136.5463419,0,0,0.932363809,0.000919145,0.029562869,1,0.956295527,0,0.00732339,0.961238037,1,0.703939196,0.9794426,0.113667818,0.002632358,0.115824807,0.288671877,0.724496596,0.448993192,0.964878998,0.926117035,0.000665918,0.02847451,0.114333736,0.031106868,0,0.017689982,-0.33358848,109.486727,0.33358848,70.51327302,0,0.900114728,0.114333736,0.047029881,0.145113852,5,5,27% +2018-05-19 14:00:00,78.94238713,73.32525507,117.4448595,384.7617263,43.64911538,43.21828246,0,43.21828246,42.33293351,0.88534896,89.38243524,59.59038745,29.79204779,1.316181877,28.47586591,1.377804575,1.279767126,-5.108462313,5.108462313,0.596247804,0.596247804,0.371656244,0.660740204,21.25167624,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.6920259,0.953569289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478704028,20.42791955,41.17072993,21.38148884,0,59.59038745,-0.154876079,98.9096093,0.154876079,81.0903907,0,0.727161248,41.17072993,64.71330934,83.52429662,5,6,103% +2018-05-19 15:00:00,67.42422374,81.7836365,324.8544944,652.1574871,74.48799396,108.3396031,33.64880661,74.69079651,72.24190611,2.448890398,81.01082104,0,81.01082104,2.246087849,78.7647332,1.1767747,1.427393731,-2.354523375,2.354523375,0.932800901,0.932800901,0.229296486,2.322060939,74.68546183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44166801,1.627283001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.682325246,71.79050671,71.12399325,73.41778971,33.64880661,0,0.051596136,87.04244591,-0.051596136,92.95755409,0,0,71.12399325,73.41778971,119.1744683,5,7,68% +2018-05-19 16:00:00,55.62953715,90.58361172,531.5021363,776.1702244,93.32178284,301.140957,206.6264826,94.51447437,90.50778676,4.006687611,131.6828425,0,131.6828425,2.813996073,128.8688465,0.970918585,1.580982273,-1.368740527,1.368740527,0.764222105,0.764222105,0.1755812,3.227868758,103.819355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.99952727,2.038730576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.338579927,99.79511298,89.3381072,101.8338436,206.6264826,0,0.266212844,74.56096738,-0.266212844,105.4390326,0.862180362,0,267.4874027,101.8338436,334.1356166,5,8,25% +2018-05-19 17:00:00,43.85917217,100.8075109,713.3360885,841.5281772,106.5563762,507.6209222,398.9001851,108.7207371,103.3433083,5.377428749,176.1696613,0,176.1696613,3.213067894,172.9565934,0.765486962,1.759422977,-0.825352976,0.825352976,0.671297361,0.671297361,0.149377521,3.873889703,124.5976093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33751881,2.327856752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806619903,119.7679613,102.1441387,122.0958181,398.9001851,0,0.47401881,61.70451594,-0.47401881,118.2954841,0.944518954,0,478.9129243,122.0958181,558.8221953,5,9,17% +2018-05-19 18:00:00,32.57605697,114.6196829,855.5092304,877.7917671,115.8138871,698.8003886,580.0295276,118.770861,112.3216711,6.449189947,210.9203337,0,210.9203337,3.492216003,207.4281177,0.568559451,2.000490854,-0.454786381,0.454786381,0.607926741,0.607926741,0.135374211,4.262936155,137.1106805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9678626,2.530098607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.088482733,131.7960013,111.0563453,134.3261,580.0295276,0,0.660782602,48.64041421,-0.660782602,131.3595858,0.974332148,0,676.197761,134.3261,764.1115069,5,10,13% +2018-05-19 19:00:00,22.90795762,137.0916232,947.4592686,896.7072054,121.4741477,854.6558703,729.7022682,124.9536021,117.8112539,7.142348175,233.3853627,0,233.3853627,3.662893744,229.722469,0.399819285,2.392700203,-0.164492994,0.164492994,0.558283648,0.558283648,0.128210417,4.391946212,141.2600874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.2446584,2.653754049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18195008,135.7845691,116.4266085,138.4383231,729.7022682,0,0.813757561,35.53530308,-0.813757561,144.4646969,0.988556638,0,837.7786299,138.4383231,928.3837436,5,11,11% +2018-05-19 20:00:00,17.99943923,175.8206916,982.574566,903.1938933,123.5833967,960.4755021,833.2115387,127.2639634,119.8569013,7.40706212,241.9630748,0,241.9630748,3.726495384,238.2365794,0.314149478,3.068649962,0.088579167,-0.088579167,0.51500576,0.51500576,0.125775082,4.266511855,137.2256873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2110125,2.69983322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.091073315,131.9065503,118.3020858,134.6063835,833.2115387,0,0.922516798,22.70316091,-0.922516798,157.2968391,0.995800445,0,948.0145068,134.6063835,1036.111693,5,12,9% +2018-05-19 21:00:00,21.49799412,217.1832934,958.3679617,898.7622869,122.1322091,1006.151122,880.4770675,125.6740549,118.4494724,7.224582512,236.0501446,0,236.0501446,3.682736725,232.3674079,0.37521078,3.790563551,0.33101177,-0.33101177,0.473547343,0.473547343,0.1274377,3.905878487,125.6264785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8581383,2.668130221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.829795668,120.7569496,116.687934,123.4250798,880.4770675,0,0.979655111,11.57722212,-0.979655111,168.4227779,0.99896163,0,996.2507405,123.4250798,1077.029987,5,13,8% +2018-05-19 22:00:00,30.60879891,242.1897162,876.5753494,882.3949133,117.1299519,986.0927647,865.8867178,120.206047,113.5980517,6.607995251,216.0677423,0,216.0677423,3.531900214,212.5358421,0.534224321,4.227007962,0.586117601,-0.586117601,0.429921677,0.429921677,0.133622229,3.344285335,107.5637123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1947682,2.558849682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.422923341,103.3943316,111.6176916,105.9531813,865.8867178,0,0.981291602,11.10031614,-0.981291602,168.8996839,0.999046746,0,976.6789996,105.9531813,1046.023238,5,14,7% +2018-05-19 23:00:00,41.70884142,257.0905613,743.0839075,849.9647323,108.5550437,899.0855855,788.2021965,110.883389,105.2817086,5.601680375,183.4426316,0,183.4426316,3.273335094,180.1692965,0.72795661,4.48707677,0.884428364,-0.884428364,0.378907532,0.378907532,0.146087195,2.630779827,84.61492248,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2007829,2.371520133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.905991029,81.33508198,103.106774,83.70660211,788.2021965,0,0.927335178,21.97684358,-0.927335178,158.0231564,0.996082063,0,888.2208437,83.70660211,943.0051406,5,15,6% +2018-05-19 00:00:00,53.4261827,267.7662929,567.7492369,791.4944333,96.13098976,747.7223744,650.2101551,97.5122193,93.23228574,4.279933566,140.5560797,0,140.5560797,2.898704027,137.6573757,0.932462795,4.673403437,1.283510194,-1.283510194,0.310660519,0.310660519,0.169319452,1.829154166,58.83188567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.61841931,2.1001012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325215967,56.55144628,90.94363528,58.65154748,650.2101551,0,0.821496814,34.76508753,-0.821496814,145.2349125,0.989135491,0,734.0895765,58.65154748,772.4758413,5,16,5% +2018-05-19 01:00:00,65.23012335,276.735063,364.524663,682.4166258,78.60932174,536.9305728,457.9436713,78.98690154,76.23896065,2.747940886,90.75358596,0,90.75358596,2.370361088,88.38322487,1.138480424,4.829938005,1.935509212,-1.935509212,0.19916212,0.19916212,0.215648843,1.021854471,32.86635238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.28378887,1.717318539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.740330085,31.59238804,74.02411895,33.30970658,457.9436713,0,0.671061715,47.85093855,-0.671061715,132.1490615,0.975491205,0,520.7441425,33.30970658,542.5446793,5,17,4% +2018-05-19 02:00:00,76.80858605,285.2042835,154.5880087,453.6676436,51.05879682,271.4090801,220.7245447,50.68453541,49.51918571,1.165349708,39.02126358,0,39.02126358,1.539611111,37.48165247,1.34056272,4.977753788,3.486081045,-3.486081045,0,0,0.330289505,0.384902778,12.37979643,0.061914822,1,0.279354022,0,0.927538059,0.966300022,0.724496596,1,47.73154715,1.115443009,0.010288391,0.312029739,0.971238665,0.69573526,0.961238037,0.922476074,0.274356007,11.89993121,48.00590316,13.01537422,207.0584238,0,0.486533584,60.88700237,-0.486533584,119.1129976,0.947232171,0,244.1383035,13.01537422,252.6566056,5,18,3% +2018-05-19 03:00:00,87.74281712,293.9207654,4.43723351,24.3097136,3.479793404,10.29223598,6.883921441,3.408314534,3.374864794,0.03344974,1.180787247,0,1.180787247,0.10492861,1.075858637,1.531401054,5.129885096,18.27445353,-18.27445353,0,0,0.784225891,0.026232153,0.843716198,0.721832937,1,0.054666677,0,0.956058981,0.994820944,0.724496596,1,3.262958604,0.076020421,0.091918609,0.312029739,0.772608153,0.497104749,0.961238037,0.922476074,0.018256848,0.811012102,3.281215453,0.887032523,1.914880213,0,0.283175752,73.55016466,-0.283175752,106.4498353,0.87343121,0,4.953731593,0.887032523,5.534276639,5,19,12% +2018-05-19 04:00:00,98.40543185,303.483786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717498788,5.296791291,-4.027030567,4.027030567,1,0.781183525,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063971791,86.33218179,-0.063971791,93.66781821,0,0,0,0,0,5,20,0% +2018-05-19 05:00:00,107.6113951,314.4508468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878173158,5.488202612,-1.358645795,1.358645795,1,0.762495804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143718281,98.26306474,0.143718281,81.73693526,0,0.702097148,0,0,0,5,21,0% +2018-05-19 06:00:00,115.0896181,327.2928313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00869277,5.712337524,-0.469803536,0.469803536,1,0.610494826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.330327908,109.2886794,0.330327908,70.7113206,0,0.898635254,0,0,0,5,22,0% +2018-05-19 07:00:00,120.1540237,342.1526248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097083322,5.971689847,0.064656492,-0.064656492,1,0.519096778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.483140631,118.8907233,0.483140631,61.10927673,0,0.946510463,0,0,0,5,23,0% +2018-05-20 08:00:00,122.1472707,358.4687866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.131872045,6.256460592,0.504078992,-0.504078992,1,0.443951105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591744229,126.280882,0.591744229,53.71911805,0,0.965504034,0,0,0,5,0,0% +2018-05-20 09:00:00,120.7517728,14.92046131,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107516012,0.260411176,0.962115247,-0.962115247,1,0.365622292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648739608,130.446641,0.648739608,49.553359,0,0.972927474,0,0,0,5,1,0% +2018-05-20 10:00:00,116.1937874,30.10451223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02796416,0.525422858,1.559614981,-1.559614981,1,0.26344382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650244405,130.5600315,0.650244405,49.4399685,0,0.973105836,0,0,0,5,2,0% +2018-05-20 11:00:00,109.0944469,43.30753958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904057295,0.755859157,2.580882306,-2.580882306,1,0.088796821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596157074,126.5951613,0.596157074,53.4048387,0,0.966129486,0,0,0,5,3,0% +2018-05-20 12:00:00,100.1518653,54.57289289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747979802,0.952476663,5.383464039,-5.383464039,1,0,#DIV/0!,0,0,0.280820206,1,0.18366072,0,0.9410629,0.979824863,0.724496596,1,0,0,0.042399953,0.312029739,0.886806962,0.611303558,0.961238037,0.922476074,0,0,0,0,0,0,-0.490163513,119.3513293,0.490163513,60.64867065,0,0.947993223,0,0,0,5,4,0% +2018-05-20 13:00:00,89.47366439,64.33597401,0.194224646,1.586368132,0.179652014,0.175698991,0,0.175698991,0.174234843,0.001464147,0.578713494,0.526204309,0.052509185,0.005417171,0.047092014,1.561610037,1.122874574,-108.3233615,108.3233615,0,0,0.924970224,0.001354293,0.043558711,1,0.944612268,0,0.009231357,0.961238037,1,0.698652113,0.974155517,0.167481159,0.003867381,0.115824807,0.28266663,0.724496596,0.448993192,0.965796899,0.927034935,0.000981181,0.04197535,0.168462339,0.045842731,0,0.029145263,-0.331703782,109.3722208,0.331703782,70.6277792,0,0.8992631,0.168462339,0.072051991,0.215618926,5,5,28% +2018-05-20 14:00:00,78.82913998,73.14549871,119.3785212,388.7169241,44.07028323,43.6413273,0,43.6413273,42.74140158,0.899925718,89.74062744,59.46704122,30.27358621,1.328881641,28.94470457,1.375828039,1.276629786,-5.056255338,5.056255338,0.605175723,0.605175723,0.369164258,0.67578188,21.73546826,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.08466095,0.962770225,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.489601672,20.89295884,41.57426262,21.85572906,0,59.46704122,-0.152982897,98.79982959,0.152982897,81.20017041,0,0.72316608,41.57426262,64.86027614,84.02401615,5,6,102% +2018-05-20 15:00:00,67.31896627,81.58713568,326.7655164,653.710835,74.69420067,109.6871817,34.7819903,74.90519142,72.44189493,2.463296489,81.48038836,0,81.48038836,2.252305742,79.22808262,1.17493761,1.423964145,-2.344037084,2.344037084,0.931007639,0.931007639,0.228586546,2.332195822,75.0114345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.63390487,1.631787843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.689667934,72.10384404,71.3235728,73.73563188,34.7819903,0,0.053206997,86.95002341,-0.053206997,93.04997659,0,0,71.3235728,73.73563188,119.5820692,5,7,68% +2018-05-20 16:00:00,55.52730505,90.36189275,533.2037928,776.9210816,93.45603075,302.5128362,207.8553342,94.65750203,90.63798661,4.019515416,132.0994769,0,132.0994769,2.818044143,129.2814328,0.969134298,1.577112547,-1.365484392,1.365484392,0.763665273,0.763665273,0.175272629,3.236064762,104.0829667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.12468031,2.041663389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.344517904,100.0485065,89.46919822,102.0901699,207.8553342,0,0.267537256,74.48222837,-0.267537256,105.5177716,0.863110141,0,268.871245,102.0901699,335.6872195,5,8,25% +2018-05-20 17:00:00,43.75236219,100.547459,714.8413278,841.9674201,106.6584111,508.8320041,400.0009618,108.8310424,103.4422665,5.388775879,176.5377007,0,176.5377007,3.216144622,173.3215561,0.763622776,1.754884213,-0.824495797,0.824495797,0.671150775,0.671150775,0.149205715,3.881087774,124.829124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.43264116,2.330085831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81183488,119.9905021,102.244476,122.3205879,400.0009618,0,0.475078907,61.63551221,-0.475078907,118.3644878,0.944754326,0,480.1471149,122.3205879,560.2034932,5,9,17% +2018-05-20 18:00:00,32.45191632,114.3066639,856.8729496,878.0949954,115.8994592,699.8288634,580.9647302,118.8641332,112.4046629,6.459470238,211.2535635,0,211.2535635,3.494796319,207.7587671,0.566392788,1.995027641,-0.455050961,0.455050961,0.607971987,0.607971987,0.135258628,4.26969147,137.3279546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0476375,2.531968037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093376935,132.0048535,111.1410144,134.5368216,580.9647302,0,0.661619453,48.57650129,-0.661619453,131.4234987,0.974427857,0,677.2492314,134.5368216,765.3008904,5,10,13% +2018-05-20 19:00:00,22.74504596,136.7547119,948.753157,896.9528949,121.5523377,855.5424177,730.5032294,125.0391883,117.8870862,7.152102052,233.7014387,0,233.7014387,3.665251462,230.0361872,0.396975941,2.386819991,-0.165458027,0.165458027,0.558448679,0.558448679,0.12811798,4.398681098,141.4767045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3175513,2.655462207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.186829482,135.9927897,116.5043808,138.6482519,730.5032294,0,0.81442764,35.46919252,-0.81442764,144.5308075,0.988607192,0,838.685127,138.6482519,929.4276348,5,11,11% +2018-05-20 20:00:00,17.79249781,175.7344874,983.8771553,903.4274784,123.6611448,961.2921898,833.9430032,127.3491866,119.932305,7.416881588,242.281247,0,242.281247,3.728839775,238.5524072,0.310537669,3.067145414,0.087027161,-0.087027161,0.515271169,0.515271169,0.125687586,4.27357428,137.4528392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2834934,2.701531724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.096190018,132.1248973,118.3796834,134.826429,833.9430032,0,0.923087933,22.61822482,-0.923087933,157.3817752,0.995833979,0,948.8484629,134.826429,1037.089664,5,12,9% +2018-05-20 21:00:00,21.31205849,217.4411677,959.7574667,899.0214208,122.2158442,1006.988009,881.2223667,125.7656428,118.5305856,7.235057187,236.3895681,0,236.3895681,3.685258632,232.7043095,0.371965591,3.795064305,0.328813674,-0.328813674,0.47392324,0.47392324,0.127340342,3.913543972,125.8730269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9361074,2.669957334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.835349286,120.9939412,116.7714567,123.6638986,881.2223667,0,0.980201746,11.42010797,-0.980201746,168.579892,0.998990093,0,997.1038707,123.6638986,1078.039419,5,13,8% +2018-05-20 22:00:00,30.45980805,242.4758499,878.1230573,882.7264002,117.2261612,987.0509324,866.7399099,120.3110224,113.6913599,6.619662527,216.4459031,0,216.4459031,3.534801279,212.9111018,0.53162394,4.232001938,0.58303684,-0.58303684,0.430448518,0.430448518,0.13349628,3.35273675,107.8355388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2844596,2.560951493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.429046362,103.6556217,111.713506,106.2165731,866.7399099,0,0.981889643,10.92090826,-0.981889643,169.0790917,0.99907778,0,977.6540914,106.2165731,1047.170714,5,14,7% +2018-05-20 23:00:00,41.57860128,257.3344679,744.847547,850.4492399,108.6723947,900.275622,789.2651255,111.0104965,105.395521,5.614975434,183.873785,0,183.873785,3.276873659,180.5969113,0.725683491,4.491333744,0.879914877,-0.879914877,0.379679383,0.379679383,0.145898842,2.640068483,84.91367758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3101837,2.374083811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912720629,81.62225674,103.2229044,83.99634055,789.2651255,0,0.928056712,21.8661098,-0.928056712,158.1338902,0.996123982,0,889.4288241,83.99634055,944.4027491,5,15,6% +2018-05-20 00:00:00,53.30202116,267.9737361,569.7643622,792.3069626,96.2842066,749.2732214,651.5972144,97.67600695,93.38088252,4.295124431,141.0492902,0,141.0492902,2.90332408,138.1459661,0.930295767,4.677024004,1.276224061,-1.276224061,0.311906522,0.311906522,0.168989521,1.839116912,59.15232182,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.76125619,2.103448413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.332433942,56.85946171,91.09369014,58.96291012,651.5972144,0,0.822405009,34.67372591,-0.822405009,145.3262741,0.989202705,0,735.6554172,58.96291012,774.2454626,5,16,5% +2018-05-20 01:00:00,65.10450944,276.9168701,366.7838476,684.0225737,78.83467922,539.026497,459.8040027,79.22249435,76.45752277,2.764971573,91.30814678,0,91.30814678,2.377156448,88.93099033,1.136288048,4.833111137,1.921322194,-1.921322194,0.201588243,0.201588243,0.214934981,1.031873176,33.18858839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49387909,1.722241754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747588604,31.90213355,74.2414677,33.62437531,459.8040027,0,0.67220589,47.76245444,-0.67220589,132.2375456,0.975618027,0,522.8345418,33.62437531,544.841023,5,17,4% +2018-05-20 02:00:00,76.67673198,285.3680056,156.9239721,457.5550727,51.48272555,274.373448,223.2601574,51.11329061,49.93033143,1.182959187,39.60042796,0,39.60042796,1.552394126,38.04803384,1.338261433,4.980611278,3.443354461,-3.443354461,0,0,0.328074321,0.388098532,12.48258286,0.055440543,1,0.282639707,0,0.927039034,0.965800997,0.724496596,1,48.11546437,1.12470426,0.009239935,0.312029739,0.974131812,0.698628407,0.961238037,0.922476074,0.277064499,11.99873344,48.39252887,13.1234377,210.8824931,0,0.487941607,60.79462108,-0.487941607,119.2053789,0.947528722,0,248.2097481,13.1234377,256.7987756,5,18,3% +2018-05-20 03:00:00,87.60872437,294.0703819,5.090670196,27.68519572,3.935546438,11.73805543,7.882804618,3.855250814,3.816875192,0.038375622,1.352963172,0,1.352963172,0.118671246,1.234291927,1.529060694,5.132496397,17.20517153,-17.20517153,0,0,0.773090042,0.029667811,0.954218798,0.706925691,1,0.058056743,0,0.955714318,0.994476281,0.724496596,1,3.691202489,0.085976914,0.090501446,0.312029739,0.775604366,0.500100962,0.961238037,0.922476074,0.020615017,0.917231404,3.711817506,1.003208318,2.310247516,0,0.284729958,73.45729244,-0.284729958,106.5427076,0.874395015,0,5.731886417,1.003208318,6.388466197,5,19,11% +2018-05-20 04:00:00,98.24816682,303.6195552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714753995,5.299160911,-4.091765818,4.091765818,1,0.770113145,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.065959577,86.2180489,-0.065959577,93.7819511,0,0,0,0,0,5,20,0% +2018-05-20 05:00:00,107.4378136,314.5683342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875143589,5.490253154,-1.367163943,1.367163943,1,0.763952493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141472948,98.13308839,0.141472948,81.86691161,0,0.696575543,0,0,0,5,21,0% +2018-05-20 06:00:00,114.899604,327.3816504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005376399,5.71388771,-0.470631205,0.470631205,1,0.610636366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.327867187,109.1393734,0.327867187,70.86062655,0,0.897499225,0,0,0,5,22,0% +2018-05-20 07:00:00,119.951588,342.1975078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093550153,5.972473203,0.066544138,-0.066544138,1,0.518773972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480521584,118.719473,0.480521584,61.28052696,0,0.945946401,0,0,0,5,23,0% +2018-05-21 08:00:00,121.9416173,358.4569823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128282717,6.256254567,0.507804686,-0.507804686,1,0.443313974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589034888,126.0885508,0.589034888,53.91144924,0,0.965115384,0,0,0,5,0,0% +2018-05-21 09:00:00,120.5546605,14.85223945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104075755,0.25922048,0.968036991,-0.968036991,1,0.364609614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64601428,130.2417653,0.64601428,49.75823466,0,0.97260233,0,0,0,5,1,0% +2018-05-21 10:00:00,116.0141743,29.99348076,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024829321,0.523484993,1.569488328,-1.569488328,1,0.261755378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647578563,130.3592837,0.647578563,49.64071631,0,0.972789291,0,0,0,5,2,0% +2018-05-21 11:00:00,108.9357372,43.16996311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901287288,0.753457994,2.601044004,-2.601044004,1,0.085348968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593622164,126.4144715,0.593622164,53.58552847,0,0.965771339,0,0,0,5,3,0% +2018-05-21 12:00:00,100.0131148,54.41966239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745558149,0.949802286,5.455586816,-5.455586816,1,0,#DIV/0!,0,0,0.287143361,1,0.181285918,0,0.94137318,0.980135143,0.724496596,1,0,0,0.043240133,0.312029739,0.884706902,0.609203498,0.961238037,0.922476074,0,0,0,0,0,0,-0.487822048,119.1975313,0.487822048,60.80246867,0,0.947503608,0,0,0,5,4,0% +2018-05-21 13:00:00,89.36871612,64.17147117,0.270611574,2.025716025,0.248292722,0.242845765,0,0.242845765,0.24080578,0.002039984,0.741339065,0.668239214,0.073099851,0.007486942,0.065612909,1.559778345,1.120003458,-90.28785819,90.28785819,0,0,0.917524402,0.001871735,0.060201445,1,0.933201013,0,0.011075234,0.961238037,1,0.693569664,0.969073068,0.231471676,0.0053305,0.115824807,0.276894821,0.724496596,0.448993192,0.966672049,0.927910086,0.001356066,0.058039177,0.232827742,0.063369678,0,0.044637703,-0.329878031,109.2613727,0.329878031,70.73862735,0,0.898428827,0.232827742,0.103473477,0.300549063,5,5,29% +2018-05-21 14:00:00,78.7209481,72.96909715,121.2304733,392.4631349,44.46954859,44.04251414,0,44.04251414,43.12862762,0.913886516,90.06407494,59.32942216,30.73465278,1.340920965,29.39373182,1.373939735,1.273550997,-5.007320252,5.007320252,0.613544115,0.613544115,0.366818238,0.690261393,22.20117917,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.45687735,0.971492675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.50009203,21.34061788,41.95696938,22.31211055,0,59.32942216,-0.151171962,98.69484958,0.151171962,81.30515042,0,0.719250837,41.95696938,64.98484708,84.48825209,5,6,101% +2018-05-21 15:00:00,67.21876503,81.39430968,328.584094,655.1794751,74.88966135,110.9715041,35.86303668,75.10846744,72.63146175,2.477005695,81.9272174,0,81.9272174,2.258199603,79.66901779,1.173188769,1.420598696,-2.334159305,2.334159305,0.92931844,0.92931844,0.227916271,2.341830335,75.32131357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8161237,1.636057925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696648106,72.40171159,71.51277181,74.03776951,35.86303668,0,0.054737729,86.86219088,-0.054737729,93.13780912,0,0,71.51277181,74.03776951,119.9690112,5,7,68% +2018-05-21 16:00:00,55.43023235,90.14418907,534.8178282,777.630293,93.58314099,303.8094078,209.0164611,94.79294671,90.76126401,4.031682697,132.4946513,0,132.4946513,2.821876986,129.6727744,0.96744006,1.573312901,-1.362447488,1.362447488,0.763145932,0.763145932,0.174981341,3.243855511,104.3335439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.24317924,2.04444027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.350162275,100.2893709,89.59334151,102.3338112,209.0164611,0,0.268786418,74.40793558,-0.268786418,105.5920644,0.863978696,0,270.179111,102.3338112,337.1545438,5,8,25% +2018-05-21 17:00:00,43.65099504,100.2916671,716.2672261,842.3822625,106.7549765,509.9688849,401.03344,108.935445,103.5359201,5.399524903,176.8863381,0,176.8863381,3.219056425,173.6672816,0.761853585,1.750419804,-0.823737024,0.823737024,0.671021017,0.671021017,0.149043503,3.887945169,125.0496814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.52266453,2.332195422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81680304,120.2025102,102.3394676,122.5347056,401.03344,0,0.476070613,61.57091956,-0.476070613,118.4290804,0.944973563,0,481.3054664,122.5347056,561.5019806,5,9,17% +2018-05-21 18:00:00,32.33374221,113.997396,858.166852,878.3820177,115.9806014,700.7895145,581.8369319,118.9525826,112.4833584,6.469224222,211.5697318,0,211.5697318,3.497243056,208.0724888,0.564330261,1.989629899,-0.455360878,0.455360878,0.608024986,0.608024986,0.135149244,4.276157941,137.5359386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1232826,2.533740689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.098061871,132.2047756,111.2213445,134.7385163,581.8369319,0,0.662396224,48.51712047,-0.662396224,131.4828795,0.974516478,0,678.2310221,134.7385163,766.4146862,5,10,13% +2018-05-21 19:00:00,22.58867074,136.4176925,949.9869302,897.1866812,121.6268604,856.3699145,731.24915,125.1207645,117.9593618,7.161402756,234.0028284,0,234.0028284,3.667498595,230.3353298,0.394246678,2.380937892,-0.166438617,0.166438617,0.558616369,0.558616369,0.128030035,4.405170269,141.6854185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3870253,2.657090248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.191530864,136.1934136,116.5785562,138.8505038,731.24915,0,0.815046818,35.40800856,-0.815046818,144.5919914,0.988653831,0,839.5308296,138.8505038,930.4057074,5,11,11% +2018-05-21 20:00:00,17.5914517,175.641015,985.1286988,903.6514495,123.735814,962.0593971,834.6283582,127.4310389,120.0047226,7.426316252,242.5869498,0,242.5869498,3.731091328,238.8558585,0.307028752,3.065514014,0.085480815,-0.085480815,0.515535609,0.515535609,0.125603704,4.280425696,137.6732042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.353104,2.703162966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.101153845,132.3367206,118.4542579,135.0398835,834.6283582,0,0.923617573,22.53918858,-0.923617573,157.4608114,0.99586504,0,949.6314615,135.0398835,1038.012364,5,12,9% +2018-05-21 21:00:00,21.13043201,217.6904652,961.1036848,899.2719206,122.2968343,1007.784583,881.9302445,125.854339,118.6091335,7.245205548,236.7184164,0,236.7184164,3.687700781,233.0307157,0.368795611,3.799415368,0.326640928,-0.326640928,0.474294801,0.474294801,0.127246244,3.921024192,126.1136164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0116106,2.671726662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840768679,121.2252051,116.8523793,123.8969318,881.9302445,0,0.980715871,11.27036667,-0.980715871,168.7296333,0.999016834,0,997.91554,123.8969318,1079.003604,5,13,8% +2018-05-21 22:00:00,30.3137825,242.7534043,879.6333824,883.0490147,117.3199846,987.9764836,867.5630814,120.4134022,113.7823542,6.631047995,216.814928,0,216.814928,3.537630401,213.2772976,0.529075313,4.236846176,0.580005427,-0.580005427,0.43096692,0.43096692,0.133373729,3.361019511,108.1019409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3719268,2.563001183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.435047195,103.9116975,111.806974,106.4746986,867.5630814,0,0.98246311,10.74609436,-0.98246311,169.2539056,0.999107504,0,978.5957587,106.4746986,1048.281319,5,14,7% +2018-05-21 23:00:00,41.45053191,257.5707875,746.5774831,850.9228415,108.7873831,901.4381704,790.3031118,111.1350586,105.5070421,5.628016424,184.2966953,0,184.2966953,3.280340984,181.0163544,0.723448258,4.495458299,0.875488374,-0.875488374,0.38043636,0.38043636,0.145714793,2.649197082,85.20728473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4173821,2.376595876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919334268,81.9044831,103.3367163,84.28107897,790.3031118,0,0.928760016,21.75765815,-0.928760016,158.2423419,0.99616478,0,890.6088416,84.28107897,945.7691222,5,15,6% +2018-05-21 00:00:00,53.17967065,268.1744721,571.7471481,793.1025992,96.43467609,750.7976929,652.9608066,97.83688631,93.5268148,4.31007151,141.5345768,0,141.5345768,2.90786129,138.6267155,0.928160348,4.680527507,1.269100709,-1.269100709,0.313124686,0.313124686,0.16866665,1.848924324,59.46776189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90153185,2.106735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339539379,57.1626747,91.24107123,59.2694103,652.9608066,0,0.82329929,34.58355773,-0.82329929,145.4164423,0.989268744,0,737.1947882,59.2694103,775.9854318,5,16,5% +2018-05-21 01:00:00,64.98063144,277.0925461,369.010381,685.5938442,79.0558714,541.0903013,461.6365,79.45380131,76.67204519,2.781756123,91.85466534,0,91.85466534,2.383826208,89.47083913,1.134125969,4.836177262,1.907510812,-1.907510812,0.203950129,0.203950129,0.214237527,1.041750656,33.50628209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7000862,1.727073973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754744804,32.20751282,74.454831,33.93458679,461.6365,0,0.673338164,47.67476835,-0.673338164,132.3252316,0.975743107,0,524.8934638,33.93458679,547.1029722,5,17,4% +2018-05-21 02:00:00,76.54673511,285.5259198,159.2307447,461.3480735,51.89712717,277.2874983,225.7549124,51.53258592,50.33223731,1.200348613,40.17222743,0,40.17222743,1.564889864,38.60733757,1.335992559,4.983367401,3.402163497,-3.402163497,0,0,0.325924037,0.391222466,12.58305933,0.049113781,1,0.28587929,0,0.926544812,0.965306775,0.724496596,1,48.49022987,1.13375738,0.008209325,0.312029739,0.976984088,0.701480684,0.961238037,0.922476074,0.27972864,12.09531525,48.76995851,13.22907263,214.6672351,0,0.489337499,60.7029534,-0.489337499,119.2970466,0.947821033,0,252.2360791,13.22907263,260.8942425,5,18,3% +2018-05-21 03:00:00,87.47621011,294.2143367,5.786561469,31.24908984,4.410532785,13.26711968,8.945959188,4.321160493,4.277538948,0.043621545,1.536012659,0,1.536012659,0.132993837,1.403018823,1.526747884,5.135008882,16.26101793,-16.26101793,0,0,0.762202702,0.033248459,1.069384737,0.692368665,1,0.061419417,0,0.955369752,0.994131715,0.724496596,1,4.137638386,0.096353582,0.089102765,0.312029739,0.77857729,0.503073886,0.961238037,0.922476074,0.023068573,1.027933285,4.160706958,1.124286867,2.752057367,0,0.286279032,73.36468235,-0.286279032,106.6353176,0.875345225,0,6.569707233,1.124286867,7.305530502,5,19,11% +2018-05-21 04:00:00,98.09360065,303.7497225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712056306,5.30143276,-4.158114808,4.158114808,1,0.758766799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.067926761,86.10508413,-0.067926761,93.89491587,0,0,0,0,0,5,20,0% +2018-05-21 05:00:00,107.2676119,314.6803359,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872173009,5.492207953,-1.375822991,1.375822991,1,0.765433278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.139255283,98.00475496,0.139255283,81.99524504,0,0.690947194,0,0,0,5,21,0% +2018-05-21 06:00:00,114.7137986,327.4653963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002133483,5.715349352,-0.471556162,0.471556162,1,0.610794543,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325442595,108.9923916,0.325442595,71.00760836,0,0.896363074,0,0,0,5,22,0% +2018-05-21 07:00:00,119.7542177,342.2383219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090105393,5.973185543,0.068322416,-0.068322416,1,0.518469868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477947946,118.5514647,0.477947946,61.44853533,0,0.945386097,0,0,0,5,23,0% +2018-05-22 08:00:00,121.7416967,358.4427785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124793444,6.256006665,0.511393477,-0.511393477,1,0.442700254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586380409,125.9005696,0.586380409,54.09943042,0,0.964731121,0,0,0,5,0,0% +2018-05-22 09:00:00,120.3635803,14.7835257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100740776,0.258021198,0.973772886,-0.973772886,1,0.363628719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643352797,130.0422859,0.643352797,49.95771408,0,0.972282144,0,0,0,5,1,0% +2018-05-22 10:00:00,115.840547,29.88352052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021798952,0.521565825,1.579079809,-1.579079809,1,0.260115138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644984456,130.1645101,0.644984456,49.83548993,0,0.972478752,0,0,0,5,2,0% +2018-05-22 11:00:00,108.782783,43.03447998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898617733,0.751093368,2.620697631,-2.620697631,1,0.081988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591165245,126.2397412,0.591165245,53.76025879,0,0.96542128,0,0,0,5,3,0% +2018-05-22 12:00:00,99.87985098,54.26914275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743232256,0.947175223,5.526613569,-5.526613569,1,0,#DIV/0!,0,0,0.293262691,1,0.179005836,0,0.941669903,0.980431866,0.724496596,1,0,0,0.044048993,0.312029739,0.882690395,0.607186991,0.961238037,0.922476074,0,0,0,0,0,0,-0.485562761,119.0493495,0.485562761,60.95065046,0,0.9470267,0,0,0,5,4,0% +2018-05-22 13:00:00,89.26759153,64.01008567,0.359920486,2.531486949,0.327561523,0.320397567,0,0.320397567,0.317684335,0.002713233,0.927758644,0.830614567,0.097144077,0.009877188,0.087266889,1.558013388,1.117186749,-77.79792192,77.79792192,0,0,0.910094135,0.002469297,0.079421084,1,0.922084288,0,0.012853106,0.961238037,1,0.688694332,0.964197736,0.305370266,0.007014388,0.115824807,0.271359229,0.724496596,0.448993192,0.967504845,0.928742882,0.001788997,0.076600418,0.307159264,0.083614806,0,0.064717925,-0.328113312,109.1543011,0.328113312,70.84569886,0,0.897613619,0.307159264,0.141706497,0.399903332,5,5,30% +2018-05-22 14:00:00,78.61781756,72.79614678,122.9998667,396.0047567,44.84734159,44.42225372,0,44.42225372,43.49502877,0.927224951,90.35543942,59.18038487,31.17505455,1.352312818,29.82274173,1.372139767,1.270532444,-4.961505301,4.961505301,0.621378933,0.621378933,0.364612928,0.704161581,22.64825699,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.80907607,0.979746033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.510162669,21.77036609,42.31923874,22.75011212,0,59.18038487,-0.149443621,98.59468498,0.149443621,81.40531502,0,0.715425666,42.31923874,65.0892784,84.91886966,5,6,101% +2018-05-22 15:00:00,67.12361246,81.20527674,330.3104453,656.5650879,75.07452128,112.1920924,36.89132531,75.30076713,72.81074747,2.490019661,82.35136548,0,82.35136548,2.263773812,80.08759167,1.171528043,1.417299449,-2.324876175,2.324876175,0.927730931,0.927730931,0.227284733,2.350968464,75.61522721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.98845996,1.640096421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703268649,72.68423256,71.69172861,74.32432898,36.89132531,0,0.056188375,86.77894686,-0.056188375,93.22105314,0,0,71.69172861,74.32432898,120.3355154,5,7,68% +2018-05-22 16:00:00,55.33830072,89.93065386,536.3448117,778.2985964,93.70319526,305.0309274,210.1100355,94.92089193,90.87769819,4.043193744,132.8685063,0,132.8685063,2.825497065,130.0430092,0.96583555,1.569586008,-1.359626338,1.359626338,0.762663487,0.762663487,0.174707004,3.251244645,104.5712038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.3551002,2.047063005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355515677,100.5178187,89.71061588,102.5648817,210.1100355,0,0.269960702,74.33807159,-0.269960702,105.6619284,0.864787858,0,271.4112233,102.5648817,338.5378871,5,8,25% +2018-05-22 17:00:00,43.55504517,100.0403512,717.6145506,842.7731343,106.8461394,511.0322264,401.9982107,109.0340157,103.6243341,5.409681604,177.2157614,0,177.2157614,3.221805324,173.993956,0.760178944,1.746033514,-0.823075116,0.823075116,0.670907824,0.670907824,0.148890709,3.894465445,125.2593959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.60765147,2.33418699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.821526958,120.4040958,102.4291784,122.7382828,401.9982107,0,0.476994572,61.51070394,-0.476994572,118.4892961,0.945177004,0,482.3886429,122.7382828,562.7183942,5,9,17% +2018-05-22 18:00:00,32.22151359,113.6922127,859.3917928,878.6531326,116.0573752,701.6832596,582.6469842,119.0362754,112.5578171,6.478458342,211.8690479,0,211.8690479,3.499558067,208.3694898,0.562371502,1.984303446,-0.455715091,0.455715091,0.60808556,0.60808556,0.135045943,4.282338804,137.7347364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1948551,2.535417907,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102539886,132.3958676,111.297395,134.9312855,582.6469842,0,0.663113762,48.46221944,-0.663113762,131.5377806,0.974598157,0,679.1440718,134.9312855,767.4538995,5,10,13% +2018-05-22 19:00:00,22.43885254,136.0810237,951.1614256,897.4087935,121.6977713,857.1394117,731.9410206,125.1983911,118.0281345,7.170256599,234.2897366,0,234.2897366,3.669636821,230.6200998,0.391631857,2.375061912,-0.167433839,0.167433839,0.558786562,0.558786562,0.127946496,4.411416305,141.8863125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4531323,2.658639385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196056096,136.3865205,116.6491884,139.0451599,731.9410206,0,0.815616056,35.35167829,-0.815616056,144.6483217,0.988696646,0,840.3168203,139.0451599,931.3190966,5,11,11% +2018-05-22 20:00:00,17.39637828,175.5402737,986.3299153,903.8659913,123.8074512,962.7781891,835.2686178,127.5095712,120.0741997,7.435371529,242.8803588,0,242.8803588,3.733251454,239.1471073,0.303624079,3.063755746,0.083941079,-0.083941079,0.51579892,0.51579892,0.125523366,4.287067699,137.8868339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.419888,2.70472797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.105965954,132.5420695,118.525854,135.2467975,835.2686178,0,0.924106699,22.46596393,-0.924106699,157.5340361,0.995893694,0,950.3646031,135.2467975,1038.880927,5,12,9% +2018-05-22 21:00:00,20.95314976,217.9308323,962.407125,899.5139356,122.3752137,1008.541807,882.6016263,125.940181,118.6851495,7.25503143,237.036814,0,237.036814,3.690064211,233.3467498,0.365701452,3.803610565,0.32449459,-0.32449459,0.474661846,0.474661846,0.127155349,3.928319495,126.3482585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0846801,2.673438959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846054102,121.4507519,116.9307342,124.1241909,882.6016263,0,0.981198391,11.12802133,-0.981198391,168.8719787,0.999041906,0,998.686745,124.1241909,1079.923545,5,13,8% +2018-05-22 22:00:00,30.17073819,243.02215,881.1065475,883.3628711,117.4114408,988.8701699,868.3569639,120.513206,113.8710527,6.642153336,217.1748717,0,217.1748717,3.540388143,213.6344835,0.526578719,4.241536673,0.577024584,-0.577024584,0.431476674,0.431476674,0.133254532,3.369132541,108.3628838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4571871,2.564999157,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440925057,104.1625257,111.8981122,106.7275249,868.3569639,0,0.983012748,10.57586508,-0.983012748,169.4241349,0.99913596,0,979.5047807,106.7275249,1049.355811,5,14,7% +2018-05-22 23:00:00,41.32465757,257.7993838,748.2735968,851.3856081,108.9000086,902.5736772,791.3166032,111.257074,105.6162716,5.640802445,184.7113338,0,184.7113338,3.283737059,181.4275968,0.721251337,4.499448056,0.871150264,-0.871150264,0.381178221,0.381178221,0.145535014,2.658163041,85.49566076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5223776,2.379056321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.925830074,82.18168111,103.4482076,84.56073743,791.3166032,0,0.929445595,21.65144231,-0.929445595,158.3485577,0.99620449,0,891.7613605,84.56073743,947.104672,5,15,6% +2018-05-22 00:00:00,53.05916903,268.3684101,573.6971006,793.8813601,96.58237697,752.2958625,654.3010295,97.99483302,93.67006195,4.324771075,142.0118191,0,142.0118191,2.912315017,139.0995041,0.926057198,4.683912365,1.262141513,-1.262141513,0.314314779,0.314314779,0.168350819,1.858572306,59.77807417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.03922646,2.109962316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346529309,57.46095866,91.38575577,59.57092098,654.3010295,0,0.824179862,34.49457024,-0.824179862,145.5054298,0.989333631,0,738.7077687,59.57092098,777.6957451,5,16,5% +2018-05-22 01:00:00,64.85854076,277.2620266,371.2033768,687.1304412,79.27286082,543.1216772,463.4408978,79.68077943,76.88249158,2.798287852,92.3929256,0,92.3929256,2.39036924,90.00255636,1.131995084,4.839135255,1.89407412,-1.89407412,0.206247939,0.206247939,0.213556411,1.051481229,33.81925076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.90237528,1.731814377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761794571,32.50835021,74.66416985,34.24016458,463.4408978,0,0.6744584,47.58789406,-0.6744584,132.4121059,0.975866443,0,526.9205905,34.24016458,549.3300934,5,17,4% +2018-05-22 02:00:00,76.41865992,285.6779804,161.5068934,465.0468979,52.30199741,280.1505723,228.2081659,51.94240639,50.72489921,1.217507183,40.73631436,0,40.73631436,1.577098196,39.15921617,1.333757226,4.986021359,3.362468784,-3.362468784,0,0,0.323837555,0.394274549,12.6812248,0.042936123,1,0.289070257,0,0.926055878,0.964817841,0.724496596,1,48.85586687,1.142602274,0.007197191,0.312029739,0.979793307,0.704289903,0.961238037,0.922476074,0.282347477,12.18967563,49.13821435,13.33227791,218.409792,0,0.490720757,60.61203412,-0.490720757,119.3879659,0.948109058,0,256.2145166,13.33227791,264.9402258,5,18,3% +2018-05-22 03:00:00,87.34539843,294.3526013,6.522250653,34.98269552,4.902028387,14.87214703,10.06876541,4.803381625,4.754214144,0.04916748,1.729209425,0,1.729209425,0.147814242,1.581395183,1.524464789,5.137422055,15.42231399,-15.42231399,0,0,0.751585403,0.036953561,1.188553536,0.678168633,1,0.064750469,0,0.955025791,0.993787755,0.724496596,1,4.59970507,0.107090915,0.087724062,0.312029739,0.781523088,0.506019684,0.961238037,0.922476074,0.02560355,1.142482868,4.62530862,1.249573783,3.240444533,0,0.287821314,73.27243383,-0.287821314,106.7275662,0.876281107,0,7.464848943,1.249573783,8.282669993,5,19,11% +2018-05-22 04:00:00,97.94181765,303.8742787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709407193,5.303606676,-4.226064407,4.226064407,1,0.747146733,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069872176,85.99335452,-0.069872176,94.00664548,0,0,0,0,0,5,20,0% +2018-05-22 05:00:00,107.1008795,314.7868655,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869262979,5.494067245,-1.384615792,1.384615792,1,0.766936935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137066718,97.87814518,0.137066718,82.12185482,0,0.685214143,0,0,0,5,21,0% +2018-05-22 06:00:00,114.5322906,327.5441068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998965571,5.716723109,-0.472578121,0.472578121,1,0.610969308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.323055763,108.8478255,0.323055763,71.15217446,0,0.895227959,0,0,0,5,22,0% +2018-05-22 07:00:00,119.5619942,342.2751222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086750459,5.97382783,0.069989067,-0.069989067,1,0.518184854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475421458,118.3867946,0.475421458,61.61320535,0,0.944830157,0,0,0,5,23,0% +2018-05-23 08:00:00,121.5475782,358.4262328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121405438,6.255717888,0.514841176,-0.514841176,1,0.442110663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583782559,125.7170298,0.583782559,54.28297015,0,0.964351672,0,0,0,5,0,0% +2018-05-23 09:00:00,120.1785904,14.71437074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097512093,0.256814217,0.979315968,-0.979315968,1,0.362680796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640756852,129.8482793,0.640756852,50.15172074,0,0.97196728,0,0,0,5,1,0% +2018-05-23 10:00:00,115.6729538,29.77468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0188739,0.5196662,1.588376434,-1.588376434,1,0.258525322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642463618,129.9757716,0.642463618,50.02422842,0,0.972174581,0,0,0,5,2,0% +2018-05-23 11:00:00,108.6356229,42.90114441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896049305,0.748766223,2.639810449,-2.639810449,1,0.078719516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588787612,126.0710206,0.588787612,53.92897937,0,0.965079735,0,0,0,5,3,0% +2018-05-23 12:00:00,99.75210136,54.12139827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741002605,0.944596596,5.596370021,-5.596370021,1,0,#DIV/0!,0,0,0.299171175,1,0.176821101,0,0.941953133,0.980715096,0.724496596,1,0,0,0.04482606,0.312029739,0.880758025,0.605254621,0.961238037,0.922476074,0,0,0,0,0,0,-0.483386652,118.9068242,0.483386652,61.0931758,0,0.946563135,0,0,0,5,4,0% +2018-05-23 13:00:00,89.17040323,63.85189397,0.461728446,3.101586056,0.416821546,0.407733542,0,0.407733542,0.404252838,0.003480704,1.13691443,1.012394315,0.124520115,0.012568708,0.111951408,1.556317132,1.114425783,-68.66257964,68.66257964,0,0,0.90274175,0.003142177,0.10106321,1,0.911285751,0,0.014562944,0.961238037,1,0.684028901,0.959532305,0.388583204,0.008904552,0.115824807,0.266062962,0.724496596,0.448993192,0.968295621,0.929533658,0.002276496,0.097511533,0.390859701,0.106416085,0,0.089813801,-0.326411809,109.051131,0.326411809,70.94886905,0,0.896819267,0.390859701,0.186962833,0.513223136,5,5,31% +2018-05-23 14:00:00,78.51975399,72.62673919,124.6859226,399.3459618,45.20406714,44.78093288,0,44.78093288,43.84099773,0.939935152,90.61723458,59.02261967,31.59461491,1.36306941,30.2315455,1.370428235,1.267575724,-4.918672268,4.918672268,0.628703813,0.628703813,0.362543471,0.717466433,23.07618676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.14163459,0.987539147,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.519801988,22.18170846,42.66143658,23.1692476,0,59.02261967,-0.147798213,98.49935129,0.147798213,81.50064871,0,0.711700917,42.66143658,65.17570017,85.31762883,5,6,100% +2018-05-23 15:00:00,67.03350085,81.02014964,331.9447916,657.8692535,75.24891757,113.3485015,37.86627642,75.48222512,72.97988507,2.502340053,82.75289034,0,82.75289034,2.269032504,80.48385784,1.169955299,1.414068372,-2.316174867,2.316174867,0.92624292,0.92624292,0.226691063,2.35961406,75.89329928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15104145,1.643906325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709532354,72.95152601,71.86057381,74.59543234,37.86627642,0,0.05755897,86.70029024,-0.05755897,93.29970976,0,0,71.86057381,74.59543234,120.6817924,5,7,68% +2018-05-23 16:00:00,55.25149153,89.72143387,537.7853036,778.9266914,93.81627191,306.1776483,211.1362304,95.04141795,90.98736517,4.05405278,133.2211799,0,133.2211799,2.828906743,130.3922731,0.964320444,1.565934431,-1.357017736,1.357017736,0.76221739,0.76221739,0.174449304,3.258235735,104.7960614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.46051627,2.049533306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.360580699,100.7339603,89.82109697,102.7834936,211.1362304,0,0.271060464,74.27261962,-0.271060464,105.7273804,0.865539311,0,272.5678043,102.7834936,339.8375452,5,8,25% +2018-05-23 17:00:00,43.4644862,99.79371919,718.8840572,843.1404469,106.9319651,512.022674,402.8958505,109.1268235,103.7075718,5.419251681,177.5261559,0,177.5261559,3.224393286,174.3017626,0.758598392,1.741728973,-0.822508659,0.822508659,0.670810954,0.670810954,0.148747165,3.900652129,125.4583809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.68766277,2.336061959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826009189,120.5953677,102.513672,122.9314297,402.8958505,0,0.477851409,61.45483208,-0.477851409,118.5451679,0.945364963,0,483.3972926,122.9314297,563.8534547,5,9,17% +2018-05-23 18:00:00,32.1152072,113.3914389,860.5486181,878.9086288,116.1298407,702.5109947,583.3957182,119.1152765,112.6280975,6.487178981,212.1517187,0,212.1517187,3.501743171,208.6499756,0.560516106,1.979053953,-0.45611264,0.45611264,0.608153545,0.608153545,0.134948611,4.288237305,137.9244525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2624114,2.537001007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10681333,132.5782299,111.3692247,135.1152309,583.3957182,0,0.663772887,48.41174662,-0.663772887,131.5882534,0.974673031,0,679.9892974,135.1152309,768.4195137,5,10,13% +2018-05-23 19:00:00,22.2956076,135.7451658,952.2774783,897.6194555,121.7651255,857.8519393,732.5798117,125.2721276,118.0934577,7.178669875,234.5623675,0,234.5623675,3.6716678,230.8906997,0.389131761,2.369200086,-0.168442839,0.168442839,0.558959112,0.558959112,0.127867274,4.417421843,142.0794713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5159235,2.660110822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.200407088,136.572192,116.7163306,139.2323029,732.5798117,0,0.816136289,35.30012896,-0.816136289,144.699871,0.988735723,0,841.0441601,139.2323029,932.1689177,5,11,11% +2018-05-23 20:00:00,17.20735166,175.4322684,987.4815311,904.0712863,123.8761033,963.4496159,835.8647812,127.5848347,120.1407818,7.444052895,243.1616514,0,243.1616514,3.73532157,239.4263299,0.300324942,3.061870697,0.08240883,-0.08240883,0.51606095,0.51606095,0.125446501,4.293501999,138.0937831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4838892,2.706227762,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110627583,132.740997,118.5945168,135.4472247,835.8647812,0,0.924556276,22.39846003,-0.924556276,157.60154,0.995920004,0,951.0489728,135.4472247,1039.696472,5,12,9% +2018-05-23 21:00:00,20.78024298,218.1619099,963.6683157,899.747616,122.4510181,1009.260639,883.2374317,126.0232069,118.7586681,7.264538819,237.3448901,0,237.3448901,3.692349992,233.6525401,0.362683659,3.807643631,0.322375633,-0.322375633,0.475024209,0.475024209,0.127067598,3.935430399,126.5769696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.155349,2.675095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851205927,121.6705977,117.0065549,124.3456927,883.2374317,0,0.981650205,10.993085,-0.981650205,169.006915,0.99906536,0,999.4184774,124.3456927,1080.800246,5,13,8% +2018-05-23 22:00:00,30.03068737,243.2818586,882.5428091,883.6680882,117.5005503,989.732752,869.1222964,120.6104557,113.9574752,6.652980482,217.5257969,0,217.5257969,3.543075123,213.9827218,0.524134371,4.246069442,0.574095429,-0.574095429,0.431977589,0.431977589,0.133138641,3.377074988,108.6183402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5402597,2.566945866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446679333,104.4080801,111.9869391,106.975026,869.1222964,0,0.983539304,10.41020465,-0.983539304,169.5897953,0.999163191,0,980.3819458,106.975026,1050.394961,5,14,7% +2018-05-23 23:00:00,41.20099898,258.0201223,749.9358172,851.8376216,109.0102739,903.6826153,792.3060704,111.3765449,105.723212,5.653332964,185.1176833,0,185.1176833,3.287061964,181.8306213,0.719093087,4.503300671,0.866901816,-0.866901816,0.381904748,0.381904748,0.145359471,2.666964049,85.77873146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6251727,2.381465203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932206375,82.45377943,103.5573791,84.83524463,792.3060704,0,0.930113968,21.5474125,-0.930113968,158.4525875,0.996243147,0,892.8868719,84.83524463,948.4098428,5,15,6% +2018-05-23 00:00:00,52.94055045,268.5554617,575.6137881,794.6432848,96.72729249,753.7678507,655.6180231,98.14982761,93.81060774,4.339219875,142.4809119,0,142.4809119,2.916684754,139.5642272,0.923986913,4.687177031,1.25534763,-1.25534763,0.315476601,0.315476601,0.168042001,1.868057079,60.08313708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.17432442,2.113128176,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353400995,57.75419673,91.52772541,59.86732491,655.6180231,0,0.825046956,34.40674779,-0.825046956,145.5932522,0.989397389,0,740.1944854,59.86732491,779.3764522,5,16,5% +2018-05-23 01:00:00,64.73828487,277.4252489,373.3620235,688.6324176,79.4856171,545.1203864,465.2169933,79.90339311,77.08883247,2.814560642,92.92272987,0,92.92272987,2.396784626,90.52594524,1.129896223,4.841984022,1.881010824,-1.881010824,0.208481894,0.208481894,0.212891542,1.06105954,34.12732218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.10071799,1.736462303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768734025,32.80448017,74.86945201,34.54094248,465.2169933,0,0.675566502,47.50184222,-0.675566502,132.4981578,0.975988041,0,528.9156741,34.54094248,551.5220301,5,17,4% +2018-05-23 02:00:00,76.29256661,285.8241432,163.7510713,468.6519343,52.69734521,282.9621182,230.6193676,52.34275057,51.10832582,1.234424744,41.29236247,0,41.29236247,1.589019391,39.70334308,1.331556482,4.98857238,3.324231705,-3.324231705,0,0,0.321813743,0.397254848,12.77708146,0.036908936,1,0.292210192,0,0.925572705,0.964334668,0.724496596,1,49.21241163,1.151239139,0.00620413,0.312029739,0.982557368,0.707053964,0.961238037,0.922476074,0.284920116,12.2818167,49.49733175,13.43305583,222.1074521,0,0.492090933,60.52189457,-0.492090933,119.4781054,0.948392763,0,260.142432,13.43305583,268.9340984,5,18,3% +2018-05-23 03:00:00,87.21640464,294.4851484,7.294823115,38.86639473,5.4073235,16.5454608,11.2461966,5.299264203,5.244272745,0.054991458,1.931765075,0,1.931765075,0.163050754,1.768714321,1.522213423,5.139735438,14.67328327,-14.67328327,0,0,0.741254917,0.040762689,1.311068186,0.66433103,1,0.068045855,0,0.954682937,0.9934449,0.724496596,1,5.074851926,0.118129717,0.086366733,0.312029739,0.784438091,0.508934687,0.961238037,0.922476074,0.028206156,1.26024861,5.103058082,1.378378326,3.77499923,0,0.289355282,73.18063838,-0.289355282,106.8193616,0.877202048,0,8.414495138,1.378378326,9.316616185,5,19,11% +2018-05-23 04:00:00,97.79289714,303.9932149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70680804,5.305682504,-4.295596703,4.295596703,1,0.73525601,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.071794731,85.88292283,-0.071794731,94.11707717,0,0,0,0,0,5,20,0% +2018-05-23 05:00:00,106.9377007,314.8879358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866414972,5.495831255,-1.393534977,1.393534977,1,0.768462206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134908606,97.75333503,0.134908606,82.24666497,0,0.679378721,0,0,0,5,21,0% +2018-05-23 06:00:00,114.3551637,327.6178177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995874123,5.718009606,-0.473696803,0.473696803,1,0.611160614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320708237,108.7057615,0.320708237,71.29423855,0,0.894095055,0,0,0,5,22,0% +2018-05-23 07:00:00,119.3749936,342.3079605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083486683,5.974400966,0.07154182,-0.07154182,1,0.517919318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472943779,118.2255539,0.472943779,61.77444611,0,0.944279189,0,0,0,5,23,0% +2018-05-24 08:00:00,121.3593273,358.4073983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11811984,6.255389165,0.518143594,-0.518143594,1,0.441545916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581243018,125.5380175,0.581243018,54.46198251,0,0.963977461,0,0,0,5,0,0% +2018-05-24 09:00:00,119.9997458,14.64482096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094390665,0.255600344,0.984659304,-0.984659304,1,0.361767031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638228063,129.6598172,0.638228063,50.34018281,0,0.971658099,0,0,0,5,1,0% +2018-05-24 10:00:00,115.5114411,29.6670036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016054971,0.517786892,1.597365259,-1.597365259,1,0.256988142,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640017517,129.7931257,0.640017517,50.20687431,0,0.971877138,0,0,0,5,2,0% +2018-05-24 11:00:00,108.4942938,42.77000664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.893582646,0.746477437,2.658349645,-2.658349645,1,0.075549126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58649051,125.9083577,0.58649051,54.09164232,0,0.964747129,0,0,0,5,3,0% +2018-05-24 12:00:00,99.62989228,53.97648917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738869654,0.942067455,5.66467658,-5.66467658,1,0,#DIV/0!,0,0,0.304861894,1,0.174732323,0,0.942222928,0.980984891,0.724496596,1,0,0,0.045570869,0.312029739,0.878910356,0.603406952,0.961238037,0.922476074,0,0,0,0,0,0,-0.481294681,118.7699939,0.481294681,61.23000612,0,0.946113541,0,0,0,5,4,0% +2018-05-24 13:00:00,89.07726335,63.69696833,0.575227223,3.73183264,0.51512943,0.503932683,0,0.503932683,0.499596377,0.004336306,1.367012098,1.212008545,0.155003553,0.015533053,0.1394705,1.554691534,1.111721821,-61.71263644,61.71263644,0,0,0.895523385,0.003883263,0.124899094,1,0.900829424,0,0.016202719,0.961238037,1,0.679576151,0.955079556,0.480231041,0.010980284,0.115824807,0.261009094,0.724496596,0.448993192,0.969044699,0.930282736,0.002813411,0.120552687,0.483044452,0.131532971,0,0.120195586,-0.324775697,108.9519862,0.324775697,71.04801381,0,0.896047594,0.483044452,0.239233937,0.639618279,5,5,32% +2018-05-24 14:00:00,78.42676223,72.46096138,126.2879338,402.4907084,45.54010689,45.11891643,0,45.11891643,44.16690464,0.95201179,90.85183021,58.85865629,31.99317392,1.373202248,30.61997167,1.368805223,1.264682355,-4.878695122,4.878695122,0.635540308,0.635540308,0.360605368,0.730161083,23.48449034,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.45490871,0.994880354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528999219,22.57418539,42.98390793,23.56906575,0,58.85865629,-0.146236062,98.40886337,0.146236062,81.59113663,0,0.708087074,42.98390793,65.24611943,85.68618818,5,6,99% +2018-05-24 15:00:00,66.94842191,80.83903595,333.4873619,659.0934603,75.41298014,114.4403231,38.78735395,75.65296914,73.13900054,2.5139686,83.13185148,0,83.13185148,2.273979595,80.85787189,1.168470391,1.410907341,-2.308043504,2.308043504,0.924852375,0.924852375,0.226134447,2.367770871,76.15565037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.3039893,1.647490476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715441936,73.20370786,72.01943123,74.85119833,38.78735395,0,0.058849551,86.62621982,-0.058849551,93.37378018,0,0,72.01943123,74.85119833,121.0080435,5,7,68% +2018-05-24 16:00:00,55.16978551,89.5166696,539.1398608,779.5152427,93.92244652,307.2498271,212.0952249,95.15460223,91.09033822,4.064264004,133.5528095,0,133.5528095,2.8321083,130.7207012,0.962894405,1.56236062,-1.354618713,1.354618713,0.761807133,0.761807133,0.174207944,3.264832307,105.0082298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55949789,2.051852822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365359893,100.9379046,89.92485778,102.9897575,212.0952249,0,0.272086052,74.21156312,-0.272086052,105.7884369,0.866234608,0,273.6490818,102.9897575,341.0538182,5,8,25% +2018-05-24 17:00:00,43.37929065,99.55197118,720.0764947,843.484595,107.0125173,512.9408627,403.7269269,109.2139358,103.785695,5.428240779,177.8177051,0,177.8177051,3.22682223,174.5908829,0.757111449,1.737509674,-0.822036342,0.822036342,0.670730183,0.670730183,0.148612707,3.906508724,125.6467491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76275775,2.337821721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830252272,120.7764344,102.59301,123.1142562,403.7269269,0,0.478641731,61.40327113,-0.478641731,118.5967289,0.945537734,0,484.3320535,123.1142562,564.9078719,5,9,17% +2018-05-24 18:00:00,32.01479738,113.0953911,861.6381675,879.1487857,116.1980575,703.273599,584.0839492,119.1896498,112.6942573,6.495392464,212.4179496,0,212.4179496,3.503800158,208.9141494,0.558763624,1.973886944,-0.456552638,0.456552638,0.608228789,0.608228789,0.134857138,4.2938567,138.1051915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3260067,2.538491287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110884563,132.7519632,111.4368912,135.2904545,584.0839492,0,0.664374403,48.36565085,-0.664374403,131.6343491,0.974741231,0,680.7675987,135.2904545,769.3124953,5,10,13% +2018-05-24 19:00:00,22.15894773,135.4105805,953.3359205,897.8188859,121.8289777,858.5085098,733.1664764,125.3420334,118.1553845,7.186648859,234.8209244,0,234.8209244,3.673593178,231.1473313,0.386746597,2.363360472,-0.169464826,0.169464826,0.559133882,0.559133882,0.127792287,4.423189564,142.264981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5754498,2.661505752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204585782,136.7505111,116.7800356,139.4120168,733.1664764,0,0.816608436,35.25328774,-0.816608436,144.7467123,0.988771144,0,841.7138915,139.4120168,932.9562683,5,11,11% +2018-05-24 20:00:00,17.02444266,175.3170126,988.5842768,904.2675144,123.9418175,964.0747133,836.417833,127.6568803,120.2045144,7.452365858,243.4310064,0,243.4310064,3.737303096,239.6937033,0.297132578,3.059859105,0.080884887,-0.080884887,0.516321559,0.516321559,0.125373041,4.299730394,138.2941097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5451515,2.70766337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115140033,132.9335585,118.6602915,135.6412219,836.417833,0,0.924967247,22.33658342,-0.924967247,157.6634166,0.995944032,0,951.6856404,135.6412219,1040.460107,5,12,9% +2018-05-24 21:00:00,20.61173954,218.3833363,964.8878001,899.973112,122.5242835,1009.942029,883.8385724,126.1034561,118.8297243,7.273731807,237.6427774,0,237.6427774,3.694559214,233.9482182,0.35974272,3.811508249,0.320284961,-0.320284961,0.475381735,0.475381735,0.126982934,3.94235756,126.7997709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2236509,2.676695574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.856224632,121.8847629,117.0798755,124.5614584,883.8385724,0,0.982072198,10.86556023,-0.982072198,169.1344398,0.999087246,0,1000.111721,124.5614584,1081.634704,5,13,8% +2018-05-24 22:00:00,29.89363923,243.5323039,883.9424499,883.9647877,117.5873351,990.5649947,869.8598201,120.7051747,114.0416431,6.663531566,217.8677729,0,217.8677729,3.545692004,214.3220809,0.52174243,4.250440539,0.571218992,-0.571218992,0.432469489,0.432469489,0.133026008,3.384846189,108.8682888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6211651,2.568841787,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.452309541,104.6483402,112.0734747,107.217182,869.8598201,0,0.984043519,10.24909161,-0.984043519,169.7509084,0.999189239,0,981.2280464,107.217182,1051.399548,5,14,7% +2018-05-24 23:00:00,41.07957395,258.2328715,751.5641124,852.2789714,109.1181841,904.7654758,793.2719998,111.493476,105.8278682,5.665607741,185.5157362,0,185.5157362,3.290315853,182.2254204,0.716973821,4.507013845,0.862744175,-0.862744175,0.382615746,0.382615746,0.145188125,2.675598034,86.05643009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7257723,2.383822635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938461668,82.72071392,103.664234,85.10453655,793.2719998,0,0.930765661,21.44551631,-0.930765661,158.5544837,0.996280786,0,893.9858852,85.10453655,949.6851023,5,15,6% +2018-05-24 00:00:00,52.82384603,268.7355407,577.4968305,795.3884305,96.86940959,755.2138129,656.9119584,98.30185453,93.94843948,4.353415044,142.9417627,0,142.9417627,2.920970109,140.0207926,0.921950037,4.690320002,1.248720032,-1.248720032,0.316609987,0.316609987,0.167740158,1.877375132,60.38283769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30681353,2.116232901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360151893,58.04228036,91.66696543,60.15851326,656.9119584,0,0.825900822,34.32007263,-0.825900822,145.6799274,0.989460043,0,741.6551002,60.15851326,781.0276439,5,16,5% +2018-05-24 01:00:00,64.61990794,277.5821524,375.4855722,690.0998649,79.69411552,547.0862461,466.9646333,80.12161275,77.2910439,2.830568849,93.44389581,0,93.44389581,2.403071623,91.04082419,1.127830156,4.844722505,1.868319349,-1.868319349,0.210652264,0.210652264,0.212242817,1.070480522,34.43033335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.29509131,1.741017211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775559494,33.09574604,75.0706508,34.83676325,466.9646333,0,0.676662404,47.41662118,-0.676662404,132.5833788,0.976107909,0,530.8785225,34.83676325,553.6784874,5,17,4% +2018-05-24 02:00:00,76.16851171,285.9643657,165.9620067,472.1636795,53.08319004,285.7216714,232.9880437,52.73362771,51.482536,1.251091709,41.84006401,0,41.84006401,1.600654036,40.23940997,1.329391316,4.991019725,3.287414576,-3.287414576,0,0,0.319851459,0.400163509,12.870634,0.031033396,1,0.295296763,0,0.925095759,0.963857722,0.724496596,1,49.55991073,1.1596684,0.005230706,0.312029739,0.985274242,0.709770838,0.961238037,0.922476074,0.28744571,12.37174296,49.84735644,13.53141136,225.7576334,0,0.49344762,60.43256339,-0.49344762,119.5674366,0.948672122,0,264.0173296,13.53141136,272.8733677,5,18,3% +2018-05-24 03:00:00,87.08933609,294.611952,8.101166279,42.88008545,5.923766089,18.27915174,12.47293904,5.806212698,5.745142685,0.061070013,2.14284496,0,2.14284496,0.178623404,1.964221556,1.519995658,5.141948578,14.001136,-14.001136,0,0,0.731223861,0.044655851,1.436285671,0.650860125,1,0.071301699,0,0.954341683,0.993103646,0.724496596,1,5.560580147,0.129412048,0.085032079,0.312029739,0.787318781,0.511815377,0.961238037,0.922476074,0.030862979,1.380612419,5.591443126,1.510024467,4.35480038,0,0.290879529,73.08938055,-0.290879529,106.9106194,0.878107532,0,9.415426141,1.510024467,10.40370695,5,19,10% +2018-05-24 04:00:00,97.64691408,304.1065232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.704260155,5.307660106,-4.366688258,4.366688258,1,0.723098638,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073693398,85.77384827,-0.073693398,94.22615173,0,0,0,0,0,5,20,0% +2018-05-24 05:00:00,106.7781552,314.9835599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863630377,5.49750021,-1.402572894,1.402572894,1,0.770007781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132782229,97.63039642,0.132782229,82.36960358,0,0.673443586,0,0,0,5,21,0% +2018-05-24 06:00:00,114.1824966,327.6865633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992860514,5.719209445,-0.474911904,0.474911904,1,0.611368408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.318401487,108.5662811,0.318401487,71.4337189,0,0.892965557,0,0,0,5,22,0% +2018-05-24 07:00:00,119.1932878,342.3368857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080315318,5.974905807,0.072978422,-0.072978422,1,0.517673644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470516491,118.0678283,0.470516491,61.93217169,0,0.943733799,0,0,0,5,23,0% +2018-05-25 08:00:00,121.1770054,358.3863249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114937722,6.255021364,0.521296583,-0.521296583,1,0.441006724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578763397,125.3636135,0.578763397,54.63638653,0,0.963608911,0,0,0,5,0,0% +2018-05-25 09:00:00,119.8270983,14.57491942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091377399,0.254380332,0.989796031,-0.989796031,1,0.360888599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635767978,129.4769673,0.635767978,50.5230327,0,0.971354957,0,0,0,5,1,0% +2018-05-25 10:00:00,115.3560524,29.56053257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013342926,0.515928622,1.60603346,-1.60603346,1,0.255505792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637647557,129.6166266,0.637647557,50.3833734,0,0.971586777,0,0,0,5,2,0% +2018-05-25 11:00:00,108.3588305,42.64111376,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891218366,0.744227832,2.676282516,-2.676282516,1,0.072482425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584275129,125.7517977,0.584275129,54.24820231,0,0.964423878,0,0,0,5,3,0% +2018-05-25 12:00:00,99.5132484,53.83447242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736833834,0.939588795,5.731349354,-5.731349354,1,0,#DIV/0!,0,0,0.310328073,1,0.172740086,0,0.942479346,0.981241309,0.724496596,1,0,0,0.046282969,0.312029739,0.877147932,0.601644527,0.961238037,0.922476074,0,0,0,0,0,0,-0.479287766,118.6388952,0.479287766,61.36110479,0,0.945678539,0,0,0,5,4,0% +2018-05-25 13:00:00,88.98827939,63.54537748,0.699263309,4.416154275,0.621287546,0.607824777,0,0.607824777,0.602553435,0.005271342,1.61561088,1.427332283,0.188278597,0.018734112,0.169544485,1.553138471,1.109076061,-56.26718981,56.26718981,0,0,0.888488697,0.004683528,0.150638359,1,0.890739159,0,0.017770476,0.961238037,1,0.675338664,0.950842069,0.579197281,0.013215799,0.115824807,0.256200467,0.724496596,0.448993192,0.969752418,0.930990455,0.0033932,0.145443934,0.582590481,0.158659734,0,0.155951526,-0.32320707,108.8569862,0.32320707,71.14301381,0,0.895300414,0.582590481,0.298283199,0.777810869,5,5,34% +2018-05-25 14:00:00,78.33884588,72.29889642,127.8052687,405.4427578,45.85582153,45.43654942,0,45.43654942,44.47309932,0.963450101,91.06145618,58.69086688,32.37058929,1.382722209,30.98786708,1.367270793,1.261853788,-4.841458778,4.841458778,0.641908098,0.641908098,0.358794453,0.742231828,23.872727,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.74923468,1.001777533,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537744433,22.94737323,43.28697911,23.94915077,0,58.69086688,-0.144757468,98.32323493,0.144757468,81.67676507,0,0.704594676,43.28697911,65.3024231,86.02610899,5,6,99% +2018-05-25 15:00:00,66.86836639,80.66203866,334.9384023,660.2391158,75.56683293,115.4671922,39.65407089,75.81312126,73.2882141,2.524907155,83.48831225,0,83.48831225,2.278618825,81.20969343,1.167073159,1.407818156,-2.300471037,2.300471037,0.923557406,0.923557406,0.22561412,2.375442587,76.40239913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44741905,1.650851582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.721000068,73.44089215,72.16841912,75.09174373,39.65407089,0,0.060060166,86.55673375,-0.060060166,93.44326625,0,0,72.16841912,75.09174373,121.3144636,5,7,68% +2018-05-25 16:00:00,55.09316235,89.31649599,540.4090443,780.0648848,94.02179255,308.2477325,212.9872122,95.26052025,91.18668861,4.073831645,133.8635334,0,133.8635334,2.835103949,131.0284294,0.961557078,1.558866931,-1.352426495,1.352426495,0.761432241,0.761432241,0.173982641,3.271037859,105.2078217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.65211354,2.05402316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.369855794,101.12976,90.02196934,103.1837831,212.9872122,0,0.273037816,74.15488514,-0.273037816,105.8451149,0.866875183,0,274.6552979,103.1837831,342.1870203,5,8,25% +2018-05-25 17:00:00,43.2994295,99.31530042,721.19261,843.8059587,107.0878583,513.7874257,404.4920069,109.2954188,103.8587643,5.436654527,178.090592,0,178.090592,3.22909404,174.861498,0.755717609,1.73337899,-0.821656936,0.821656936,0.670665301,0.670665301,0.148487182,3.912038724,125.8246129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.83299468,2.33946764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.834258738,120.9474039,102.6672534,123.2868715,404.4920069,0,0.479366142,61.35598808,-0.479366142,118.6440119,0.945695595,0,485.1935627,123.2868715,565.8823544,5,9,17% +2018-05-25 18:00:00,31.92025576,112.8043782,862.6612763,879.3738746,116.262084,703.9719422,584.7124839,119.2594583,112.7563532,6.50310509,212.6679448,0,212.6679448,3.505730793,209.162214,0.557113561,1.968807811,-0.457034248,0.457034248,0.608311149,0.608311149,0.134771419,4.299200247,138.2770583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3856956,2.539890026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114755944,132.9171681,111.5004515,135.4570581,584.7124839,0,0.664919098,48.32388086,-0.664919098,131.6761191,0.974802882,0,681.4798659,135.4570581,770.1338013,5,10,13% +2018-05-25 19:00:00,22.02888006,135.077732,954.3375813,898.0072981,121.8893818,859.1101218,733.7019548,125.4081671,118.2139673,7.194199802,235.0656101,0,235.0656101,3.675414586,231.3901955,0.384476488,2.35755117,-0.17049905,0.17049905,0.559310744,0.559310744,0.127721452,4.428722175,142.4429288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6317618,2.662825356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.20859414,136.9215612,116.8403559,139.5843866,733.7019548,0,0.817033399,35.21108124,-0.817033399,144.7889188,0.988802991,0,842.3270436,139.5843866,933.6822329,5,11,11% +2018-05-25 20:00:00,16.84771901,175.1945322,989.6388836,904.4548524,124.0046406,964.6545034,836.9287443,127.7257591,120.2654432,7.46031593,243.6886024,0,243.6886024,3.739197442,239.949405,0.294048168,3.057721419,0.079370022,-0.079370022,0.516580616,0.516580616,0.125302919,4.305754733,138.4878731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6037185,2.709035818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119504647,133.1198113,118.7232231,135.8288471,836.9287443,0,0.925340543,22.28023788,-0.925340543,157.7197621,0.995965839,0,952.275662,135.8288471,1041.172926,5,12,9% +2018-05-25 21:00:00,20.44766486,218.5947491,966.0661275,900.1905723,122.5950463,1010.586918,884.40595,126.1809678,118.8983533,7.282614537,237.9306103,0,237.9306103,3.696692973,234.2339173,0.356879076,3.8151981,0.318223428,-0.318223428,0.475734278,0.475734278,0.126901299,3.949101724,127.0166864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2896197,2.678241475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861110756,122.0932703,117.1507305,124.7715118,884.40595,0,0.982465244,10.74543872,-0.982465244,169.2545613,0.999107614,0,1000.767449,124.7715118,1082.427908,5,13,8% +2018-05-25 22:00:00,29.759601,243.7732633,885.305767,884.2530918,117.6718178,991.3676591,870.5702719,120.7973872,114.1235784,6.673808826,218.2008724,0,218.2008724,3.548239471,214.6526329,0.519403022,4.254646074,0.568396239,-0.568396239,0.432952208,0.432952208,0.132916583,3.392445606,109.1127122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6999244,2.570687418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.457815293,104.8832892,112.1577397,107.4539766,870.5702719,0,0.984526127,10.09249995,-0.984526127,169.9075001,0.999214146,0,982.0438707,107.4539766,1052.370349,5,14,7% +2018-05-25 23:00:00,40.96039844,258.437503,753.1584742,852.7097513,109.2237455,905.8227555,794.2148822,111.6078733,105.9302466,5.677626714,185.9054908,0,185.9054908,3.29349892,182.6119918,0.714893816,4.510585338,0.858678397,-0.858678397,0.383311035,0.383311035,0.145020934,2.684063084,86.32869519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8241823,2.386128756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.944594568,82.98242549,103.7687768,85.36855425,794.2148822,0,0.931401196,21.34570006,-0.931401196,158.6542999,0.996317441,0,895.0589156,85.36855425,950.930927,5,15,6% +2018-05-25 00:00:00,52.70908487,268.9085636,579.3458813,796.1168641,97.00871749,756.6339233,658.1830226,98.4509007,94.08354673,4.36735397,143.3942871,0,143.3942871,2.925170756,140.4691164,0.919947077,4.693339822,1.242259557,-1.242259557,0.317714794,0.317714794,0.167445253,1.886523149,60.67706936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.43668376,2.119276255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3667796,58.32510703,91.80346336,60.44438329,658.1830226,0,0.826741716,34.23452607,-0.826741716,145.7654739,0.98952162,0,743.0897939,60.44438329,782.6494339,5,16,5% +2018-05-25 01:00:00,64.50345185,277.732679,377.5733176,691.5328987,79.89833513,549.0191073,468.6836946,80.33541268,77.48910553,2.846307156,93.95625185,0,93.95625185,2.409229598,91.54702225,1.125797614,4.847349688,1.855997945,-1.855997945,0.212759348,0.212759348,0.21161012,1.079739325,34.72812826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48547568,1.745478642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782267465,33.38199783,75.26774314,35.12747648,468.6836946,0,0.677746056,47.33223802,-0.677746056,132.667762,0.976226055,0,532.8089775,35.12747648,555.7992083,5,17,4% +2018-05-25 02:00:00,76.04654915,286.0986077,168.1384855,475.5827018,53.459558,288.4288267,235.3137727,53.11505401,51.84755508,1.267498925,42.37912536,0,42.37912536,1.612002918,40.76712244,1.327262668,4.99336269,3.251980887,-3.251980887,0,0,0.317949563,0.40300073,12.96188877,0.025310536,1,0.298327707,0,0.924625498,0.963387461,0.724496596,1,49.89841752,1.167890627,0.004277462,0.312029739,0.987941963,0.712438559,0.961238037,0.922476074,0.289923439,12.45946052,50.18834096,13.62735114,229.3578549,0,0.494790437,60.34406756,-0.494790437,119.6559324,0.948947117,0,267.8368162,13.62735114,276.755645,5,18,3% +2018-05-25 03:00:00,86.96429353,294.7329879,8.938020154,47.00353715,6.44879332,20.0652103,13.74349332,6.321716979,6.254338408,0.067378571,2.361581379,0,2.361581379,0.194454912,2.167126467,1.517813254,5.144061054,13.39540104,-13.39540104,0,0,0.721501318,0.048613728,1.563584602,0.637759225,1,0.074514269,0,0.954002519,0.992764482,0.724496596,1,6.054472786,0.140881922,0.08372132,0.312029739,0.790161773,0.514658369,0.961238037,0.922476074,0.033561129,1.502976993,6.088033915,1.643858915,4.978453669,0,0.292392746,72.99873931,-0.292392746,107.0012607,0.878997126,0,10.46408038,1.643858915,11.53995316,5,19,10% +2018-05-25 04:00:00,97.50393997,304.2141968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701764786,5.309539365,-4.439309063,4.439309063,1,0.710679749,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075567191,85.66618755,-0.075567191,94.33381245,0,0,0,0,0,5,20,0% +2018-05-25 05:00:00,106.6223188,315.073751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860910519,5.499074341,-1.411721497,1.411721497,1,0.771572284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130688817,97.50939824,0.130688817,82.49060176,0,0.667411795,0,0,0,5,21,0% +2018-05-25 06:00:00,114.0143642,327.7503777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98992605,5.720323215,-0.476223039,0.476223039,1,0.611592626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316136926,108.4294626,0.316136926,71.57053737,0,0.891840684,0,0,0,5,22,0% +2018-05-25 07:00:00,119.0169448,342.3619453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077237552,5.975343179,0.074296673,-0.074296673,1,0.51744821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468141115,117.9136998,0.468141115,62.08630021,0,0.943194598,0,0,0,5,23,0% +2018-05-26 08:00:00,121.0006707,358.3630603,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1118601,6.254615319,0.524296067,-0.524296067,1,0.440493782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576345239,125.1938946,0.576345239,54.80610539,0,0.963246442,0,0,0,5,0,0% +2018-05-26 09:00:00,119.6606971,14.50470716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088473149,0.253154897,0.994719398,-0.994719398,1,0.360046654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633378082,129.2997934,0.633378082,50.70020659,0,0.971058209,0,0,0,5,1,0% +2018-05-26 10:00:00,115.2068287,29.45530628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010738481,0.514092077,1.614368405,-1.614368405,1,0.254080433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635355085,129.4463254,0.635355085,50.55367458,0,0.971303849,0,0,0,5,2,0% +2018-05-26 11:00:00,108.2292655,42.5145109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88895703,0.742018195,2.693576657,-2.693576657,1,0.069524952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582142602,125.6013834,0.582142602,54.39861659,0,0.964110392,0,0,0,5,3,0% +2018-05-26 12:00:00,99.40219234,53.69540279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73489554,0.937161572,5.796201322,-5.796201322,1,0,#DIV/0!,0,0,0.315563123,1,0.170844943,0,0.942722444,0.981484407,0.724496596,1,0,0,0.04696193,0.312029739,0.875471265,0.599967861,0.961238037,0.922476074,0,0,0,0,0,0,-0.477366773,118.5135626,0.477366773,61.48643742,0,0.945258734,0,0,0,5,4,0% +2018-05-26 13:00:00,88.90355154,63.39718763,0.8323886,5.146855478,0.733901113,0.718046184,0,0.718046184,0.711771287,0.006274897,1.879736144,1.655784065,0.223952079,0.022129826,0.201822253,1.551659691,1.106489661,-51.90284631,51.90284631,0,0,0.88168088,0.005532457,0.177942822,1,0.881038248,0,0.019264383,0.961238037,1,0.671318716,0.946822121,0.684181634,0.015581458,0.115824807,0.25163956,0.724496596,0.448993192,0.970419149,0.931657186,0.004008246,0.171858593,0.68818988,0.187440051,0,0.196974973,-0.321707899,108.7662429,0.321707899,71.23375711,0,0.894579508,0.68818988,0.363649826,0.926191418,5,5,35% +2018-05-26 14:00:00,78.25600676,72.14062442,129.2373764,408.2056933,46.15155328,45.7341596,0,45.7341596,44.75991367,0.974245934,91.24820621,58.52146842,32.72673779,1.391639612,31.33509818,1.365824977,1.259091421,-4.806857954,4.806857954,0.647825187,0.647825187,0.357106857,0.753666159,24.2404944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.02493154,1.008238162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.546028567,23.30088525,43.57096011,24.30912341,0,58.52146842,-0.143362695,98.24247798,0.143362695,81.75752202,0,0.701234236,43.57096011,65.34638058,86.33885928,5,6,98% +2018-05-26 15:00:00,66.79332342,80.48925719,336.298185,661.3075575,75.71059528,116.4287953,40.465996,75.96279926,73.42764149,2.535157772,83.82234227,0,83.82234227,2.28295379,81.53938848,1.165763412,1.40480255,-2.293447136,2.293447136,0.922356249,0.922356249,0.22512936,2.382632886,76.63366387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58144195,1.653992249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726209415,73.66319261,72.30765137,75.31718486,40.465996,0,0.061190887,86.49182882,-0.061190887,93.50817118,0,0,72.30765137,75.31718486,121.6012425,5,7,68% +2018-05-26 16:00:00,55.02160006,89.12104344,541.5934283,780.5762272,94.11438217,309.1716565,213.8124101,95.35924633,91.2764863,4.082760032,134.1534929,0,134.1534929,2.837895867,131.315597,0.960308081,1.555455641,-1.35043845,1.35043845,0.761092266,0.761092266,0.173773124,3.276855901,105.3949499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.7384305,2.056045895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.374070946,101.3096347,90.11250145,103.3656806,213.8124101,0,0.273916118,74.10256769,-0.273916118,105.8974323,0.867462367,0,275.5867207,103.3656806,343.2374914,5,8,25% +2018-05-26 17:00:00,43.22487173,99.08389427,722.2331551,844.1049063,107.1580501,514.5630049,405.1916668,109.3713382,103.9268396,5.444498595,178.3450008,0,178.3450008,3.231210583,175.1137902,0.75441633,1.729340191,-0.82136926,0.82136926,0.670616106,0.670616106,0.148370439,3.917245627,125.9920848,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89843124,2.341001068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838031122,121.1083842,102.7364624,123.4493853,405.1916668,0,0.480025248,61.312949,-0.480025248,118.687051,0.945838812,0,485.9824671,123.4493853,566.7776208,5,9,17% +2018-05-26 18:00:00,31.83155094,112.5187027,863.6187795,879.5841596,116.3219783,704.6068931,585.2821285,119.3247646,112.8144414,6.510323154,212.9019086,0,212.9019086,3.507536827,209.3943717,0.55556537,1.963821832,-0.457556655,0.457556655,0.608400486,0.608400486,0.134691349,4.3042712,138.4401576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4415322,2.541198491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118429832,133.0739453,111.5599621,135.6151438,585.2821285,0,0.665407763,48.2863845,-0.665407763,131.7136155,0.974858105,0,682.126989,135.6151438,770.8843883,5,10,13% +2018-05-26 19:00:00,21.90540697,134.7470882,955.2832864,898.1849005,121.9463915,859.6577671,734.1871803,125.4705868,118.2692579,7.201328926,235.2966263,0,235.2966263,3.677133639,231.6194927,0.382321476,2.351780347,-0.171544779,0.171544779,0.559489574,0.559489574,0.12765469,4.434022383,142.6134017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6849093,2.664070804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212434122,137.0854263,116.8973434,139.7494971,734.1871803,0,0.817412072,35.17343498,-0.817412072,144.826565,0.988831341,0,842.8846377,139.7494971,934.3478885,5,11,11% +2018-05-26 20:00:00,16.67724579,175.0648699,990.6460785,904.6334731,124.0646189,965.1899968,837.3984753,127.7915214,120.3236129,7.46790859,243.934617,0,243.934617,3.741006008,240.193611,0.291072849,3.055458385,0.077864987,-0.077864987,0.516837993,0.516837993,0.125236067,4.311576878,138.6751333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6596334,2.710346118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123722771,133.2998129,118.7833562,136.010159,837.3984753,0,0.925677084,22.2293241,-0.925677084,157.7706759,0.995985484,0,952.8200816,136.010159,1041.836011,5,12,9% +2018-05-26 21:00:00,20.28804303,218.7957891,967.2038444,900.4001422,122.6633424,1011.196234,884.9404528,126.2557812,118.9645901,7.291191128,238.2085223,0,238.2085223,3.698752353,234.50977,0.35409315,3.81870691,0.316191858,-0.316191858,0.476081697,0.476081697,0.126822637,3.955663661,127.2277409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.353289,2.679733489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865864857,122.2961439,117.2191539,124.9758773,884.9404528,0,0.982830201,10.63270089,-0.982830201,169.3672991,0.999126512,0,1001.386622,124.9758773,1083.180834,5,13,8% +2018-05-26 22:00:00,29.62857924,244.0045184,886.6330583,884.5331207,117.7540211,992.1414944,871.254377,120.8871174,114.2033029,6.683814509,218.5251683,0,218.5251683,3.550718202,214.9744501,0.51711626,4.258682237,0.565628099,-0.565628099,0.433425588,0.433425588,0.132810321,3.399872752,109.3515947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7765587,2.57248325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.463196236,105.1129122,112.2397549,107.6853955,871.254377,0,0.98498785,9.94040052,-0.98498785,170.0595995,0.999237953,0,982.8301947,107.6853955,1053.308132,5,14,7% +2018-05-26 23:00:00,40.84348788,258.633892,754.7189008,853.1300534,109.3269649,906.8549439,795.1352005,111.7197434,106.0303535,5.689389869,186.2869467,0,186.2869467,3.296611365,182.9903353,0.712853341,4.514012973,0.854705485,-0.854705485,0.383990443,0.383990443,0.14485786,2.692357365,86.59546777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9204089,2.388383712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950603746,83.23885744,103.8710126,85.62724115,795.1352005,0,0.932021088,21.24791024,-0.932021088,158.7520898,0.996353145,0,896.1064705,85.62724115,952.1477873,5,15,6% +2018-05-26 00:00:00,52.59629536,269.0744502,581.1606077,796.8286545,97.14520612,758.0283553,659.4314014,98.59695387,94.21591973,4.381034144,143.8384042,0,143.8384042,2.929286392,140.9091178,0.917978528,4.696235088,1.235966964,-1.235966964,0.31879089,0.31879089,0.167157245,1.89549792,60.96572882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56392572,2.122258019,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37328179,58.60257749,91.93720751,60.72483551,659.4314014,0,0.827569889,34.15008984,-0.827569889,145.8499102,0.989582142,0,744.4987463,60.72483551,784.2419366,5,16,5% +2018-05-26 01:00:00,64.38895745,277.876773,379.6245762,692.9316423,80.09825637,550.9188299,470.3740611,80.54476882,77.68299841,2.86177041,94.45963161,0,94.45963161,2.415257961,92.04437365,1.123799309,4.849864603,1.844044789,-1.844044789,0.214803458,0.214803458,0.210993338,1.08883123,35.02055519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.67185289,1.749846171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.78885452,33.66308972,75.46070741,35.41293589,470.3740611,0,0.678817408,47.24869992,-0.678817408,132.7513001,0.97634249,0,534.7068895,35.41293589,557.8839477,5,17,4% +2018-05-26 02:00:00,75.92673144,286.2268313,170.2793288,478.9096013,53.82647771,291.0832058,237.5961575,53.48704831,52.20341081,1.283637507,42.90926159,0,42.90926159,1.623066901,41.28619468,1.325171454,4.995600613,3.217895557,-3.217895557,0,0,0.316106941,0.405766725,13.0508527,0.019741293,1,0.301300809,0,0.924162376,0.962924339,0.724496596,1,50.2279882,1.175906445,0.003344922,0.312029739,0.990558604,0.7150552,0.961238037,0.922476074,0.292352488,12.54497603,50.52034069,13.72088248,232.9057021,0,0.49611901,60.25643375,-0.49611901,119.7435663,0.94921773,0,271.5985626,13.72088248,280.5786057,5,18,3% +2018-05-26 03:00:00,86.84137248,294.8482342,9.802018468,51.21667088,6.979952734,21.89562994,15.05225678,6.843373162,6.769481406,0.073891756,2.58708419,0,2.58708419,0.210471328,2.376612862,1.515667877,5.14607248,12.84743026,-12.84743026,0,0,0.712093408,0.052617832,1.692370351,0.625030881,1,0.077679955,0,0.953665933,0.992427896,0.724496596,1,6.554215094,0.152485761,0.082435608,0.312029739,0.792963792,0.517460388,0.961238037,0.922476074,0.036288336,1.626770754,6.590503431,1.779256515,5.644131469,0,0.293893697,72.90878951,-0.293893697,107.0912105,0.879870458,0,11.55660797,1.779256515,12.72109578,5,19,10% +2018-05-26 04:00:00,97.36404413,304.3162308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699323143,5.311320195,-4.513421252,4.513421252,1,0.698005819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077415151,85.55999611,-0.077415151,94.44000389,0,0,0,0,0,5,20,0% +2018-05-26 05:00:00,106.4702647,315.1585237,0,0,0,0,0,0,0,0,0,0,0,0,0,1.858256675,5.500553904,-1.420972221,1.420972221,1,0.773154251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12862957,97.39040758,0.12862957,82.60959242,0,0.661286891,0,0,0,5,21,0% +2018-05-26 06:00:00,113.8508385,327.8092948,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987071987,5.721351513,-0.477629689,0.477629689,1,0.611833177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313915928,108.2953818,0.313915928,71.70461821,0,0.890721685,0,0,0,5,22,0% +2018-05-26 07:00:00,118.8460296,342.3831861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07425452,5.975713901,0.075494471,-0.075494471,1,0.517243375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465819124,117.7632473,0.465819124,62.23675273,0,0.9426622,0,0,0,5,23,0% +2018-05-27 08:00:00,120.8303783,358.3376513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108887938,6.254171849,0.527138083,-0.527138083,1,0.440007768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573990038,125.0289346,0.573990038,54.97106542,0,0.962890474,0,0,0,5,0,0% +2018-05-27 09:00:00,119.5005883,14.43422466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085678723,0.251924745,0.999422818,-0.999422818,1,0.359242322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631059806,129.1283564,0.631059806,50.87164358,0,0.970768207,0,0,0,5,1,0% +2018-05-27 10:00:00,115.0638084,29.35136364,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008242307,0.512277936,1.622357734,-1.622357734,1,0.252714177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633141388,129.2822706,0.633141388,50.71772941,0,0.971028698,0,0,0,5,2,0% +2018-05-27 11:00:00,108.1056288,42.39024256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886799163,0.739849303,2.710200169,-2.710200169,1,0.066682164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580094009,125.457155,0.580094009,54.54284496,0,0.963807074,0,0,0,5,3,0% +2018-05-27 12:00:00,99.29674428,53.55933408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733055124,0.934786725,5.859043648,-5.859043648,1,0,#DIV/0!,0,0,0.320560683,1,0.169047406,0,0.942952279,0.981714242,0.724496596,1,0,0,0.04760734,0.312029739,0.873880831,0.598377427,0.961238037,0.922476074,0,0,0,0,0,0,-0.475532518,118.3940279,0.475532518,61.60597211,0,0.94485472,0,0,0,5,4,0% +2018-05-27 13:00:00,88.82317119,63.2524636,0.972917079,5.91493151,0.851435664,0.833095997,0,0.833095997,0.825761737,0.00733426,2.156003244,1.894434307,0.261568937,0.025673927,0.23589501,1.550256789,1.10396375,-48.34256183,48.34256183,0,0,0.875136928,0.006418482,0.206440434,1,0.87174914,0,0.020682756,0.961238037,1,0.667518222,0.943021626,0.793753591,0.018044965,0.115824807,0.247328437,0.724496596,0.448993192,0.9710453,0.932283337,0.004650168,0.199436745,0.798403759,0.21748171,0,0.24296283,-0.320280007,108.6798594,0.320280007,71.32014062,0,0.893886603,0.798403759,0.434662929,1.082881953,5,5,36% +2018-05-27 14:00:00,78.17824436,71.98622363,130.5837928,410.7829396,46.42762841,46.0120599,0,46.0120599,45.02766411,0.984395789,91.41404135,58.35252463,33.06151671,1.399964296,31.66155242,1.364467768,1.256396618,-4.774796148,4.774796148,0.653308079,0.653308079,0.355538979,0.7644528,24.58742983,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.28230345,1.014269367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.553843451,23.63437278,43.8361469,24.64864215,0,58.35252463,-0.142051967,98.16660219,0.142051967,81.83339781,0,0.698016138,43.8361469,65.37964603,86.62581764,5,6,98% +2018-05-27 15:00:00,66.72327997,80.32078847,337.5670188,662.3000639,75.84438322,117.3248788,41.22276084,76.102118,73.55739523,2.544722777,84.13401991,0,84.13401991,2.28698799,81.84703192,1.164540923,1.401862217,-2.286962076,2.286962076,0.921247238,0.921247238,0.224679483,2.389345485,76.84956411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.70616619,1.656915014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.73107267,73.87072414,72.43723886,75.52763915,41.22276084,0,0.062241819,86.43149983,-0.062241819,93.56850017,0,0,72.43723886,75.52763915,121.8685681,5,7,68% +2018-05-27 16:00:00,54.95507443,88.93043902,542.6936095,781.0498591,94.20028702,310.0219252,214.5710707,95.45085447,91.35980081,4.091053663,134.4228349,0,134.4228349,2.840486216,131.5823487,0.95914699,1.552128966,-1.348652043,1.348652043,0.760786772,0.760786772,0.173579134,3.28228998,105.5697286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.81851557,2.057922594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378007917,101.4776386,90.19652349,103.5355612,214.5710707,0,0.274721349,74.05459094,-0.274721349,105.9454091,0.867997399,0,276.4436548,103.5355612,344.2056089,5,8,25% +2018-05-27 17:00:00,43.15558382,98.85793562,723.1988944,844.3817968,107.2231545,515.2682628,405.8265032,109.4417595,103.9899808,5.451778746,178.5811186,0,178.5811186,3.23317372,175.3479448,0.753207028,1.725396468,-0.821172146,0.821172146,0.670582397,0.670582397,0.148262332,3.922132945,126.1492777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.95912498,2.342423354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.841571967,121.2594841,102.8006969,123.6019074,405.8265032,0,0.480619673,61.27411833,-0.480619673,118.7258817,0.945967638,0,486.6994355,123.6019074,567.5944119,5,9,17% +2018-05-27 18:00:00,31.74864811,112.2386621,864.5115158,879.7798989,116.3777981,705.1793295,585.7936984,119.3856311,112.8685781,6.517052977,213.120046,0,213.120046,3.509220002,209.610826,0.554118443,1.958934202,-0.458119044,0.458119044,0.60849666,0.60849666,0.134616828,4.309072808,138.5945939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4935705,2.542417946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121908581,133.2223953,111.615479,135.7648133,585.7936984,0,0.665841194,48.2531081,-0.665841194,131.7468919,0.974907019,0,682.7098674,135.7648133,771.5652224,5,10,13% +2018-05-27 19:00:00,21.78852592,134.4191227,956.1738576,898.3518969,122.0000598,860.1524357,734.6230855,125.5293503,118.3213079,7.208042428,235.5141739,0,235.5141739,3.678751935,231.835422,0.380281516,2.346056268,-0.172601278,0.172601278,0.559670247,0.559670247,0.127591922,4.439092866,142.7764858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7349417,2.665243254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.21610767,137.242189,116.9510494,139.9074322,734.6230855,0,0.817745349,35.14027272,-0.817745349,144.8597273,0.988856271,0,843.3876942,139.9074322,934.9543105,5,11,11% +2018-05-27 20:00:00,16.5130858,174.9280904,991.6065791,904.8035449,124.1217979,965.6821944,837.8279774,127.854217,120.3790678,7.475149249,244.1692257,0,244.1692257,3.742730169,240.4264955,0.288207717,3.053071132,0.076370537,-0.076370537,0.517093559,0.517093559,0.125172423,4.317198653,138.8559489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7129388,2.711595266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127795728,133.4736198,118.8407345,136.185215,837.8279774,0,0.925977779,22.18373935,-0.925977779,157.8162606,0.996003024,0,953.3199335,136.185215,1042.450433,5,12,9% +2018-05-27 21:00:00,20.13289807,218.9861027,968.3014852,900.6019627,122.729207,1011.770888,885.4429542,126.3279342,119.0284686,7.299465608,238.4766441,0,238.4766441,3.700738413,234.7759057,0.351385359,3.822028509,0.314191077,-0.314191077,0.476423851,0.476423851,0.126746895,3.962044107,127.4329579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4146914,2.681172382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870487468,122.4934063,117.2851789,125.1745787,885.4429542,0,0.983167915,10.52731565,-0.983167915,169.4726844,0.999143987,0,1001.970183,125.1745787,1083.894441,5,13,8% +2018-05-27 22:00:00,29.50058123,244.2258564,887.9246084,884.8049889,117.8339664,992.8872294,871.9128411,120.9743883,114.2808375,6.693550759,218.8407302,0,218.8407302,3.553128848,215.2876013,0.514882274,4.262545313,0.562915491,-0.562915491,0.433889471,0.433889471,0.132707175,3.407127112,109.5849198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8510879,2.574229755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.468451994,105.3371932,112.3195399,107.911423,871.9128411,0,0.985429391,9.792762653,-0.985429391,170.2072373,0.999260697,0,983.5877737,107.911423,1054.213642,5,14,7% +2018-05-27 23:00:00,40.72885849,258.8219181,756.2453783,853.5399645,109.4278479,907.8625083,796.0334167,111.8290916,106.1281945,5.700897101,186.6601008,0,186.6601008,3.29965336,183.3604475,0.710852681,4.517294648,0.850826425,-0.850826425,0.384653802,0.384653802,0.144698865,2.700479031,86.85668846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.0144574,2.390587627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956487865,83.4899527,103.9709452,85.88054033,796.0334167,0,0.932625829,21.15209515,-0.932625829,158.8479049,0.996387931,0,897.1290345,85.88054033,953.3361305,5,15,6% +2018-05-27 00:00:00,52.48550646,269.2331232,582.9406683,797.5238637,97.27886454,759.3972618,660.657261,98.74000085,94.34554786,4.394452993,144.2740308,0,144.2740308,2.933316687,141.3407141,0.916044897,4.699004456,1.229842995,-1.229842995,0.319838151,0.319838151,0.166876099,1.904296245,61.24871321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68852921,2.125177954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379656147,58.87459284,92.06818535,60.9997708,660.657261,0,0.828385571,34.06674751,-0.828385571,145.9332525,0.989641633,0,745.8821162,60.9997708,785.8052462,5,16,5% +2018-05-27 01:00:00,64.27646585,278.0143818,381.6386624,694.2962099,80.29385886,552.7852577,472.0356015,80.7496562,77.87270276,2.876953442,94.95386825,0,94.95386825,2.421156097,92.53271216,1.121835961,4.85226633,1.832458098,-1.832458098,0.216784899,0.216784899,0.21039236,1.097751565,35.30746384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.85420393,1.754119351,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.795317272,33.93887723,75.6495212,35.69299658,472.0356015,0,0.679876391,47.16601544,-0.679876391,132.8339846,0.97645722,0,536.5720923,35.69299658,559.9324447,5,17,4% +2018-05-27 02:00:00,75.80911093,286.349001,172.3833709,482.1449706,54.18397615,293.6844255,239.8347974,53.84962802,52.55012935,1.299498665,43.43019086,0,43.43019086,1.633846799,41.79634407,1.323118589,4.997732878,3.185125175,-3.185125175,0,0,0.314322523,0.4084617,13.13753234,0.014326561,1,0.304213879,0,0.923706846,0.962468809,0.724496596,1,50.54867799,1.183716444,0.0024336,0.312029739,0.993122261,0.717618857,0.961238037,0.922476074,0.294732023,12.62829579,50.84341001,13.81201224,236.3987895,0,0.497432955,60.1696895,-0.497432955,119.8303105,0.949483941,0,275.3002645,13.81201224,284.3399502,5,18,3% +2018-05-27 03:00:00,86.72066478,294.957671,10.68972127,55.49977137,7.51491497,23.76248466,16.39358847,7.368896191,7.288312557,0.080583634,2.818449098,0,2.818449098,0.226602413,2.591846684,1.51356113,5.147982512,12.35002507,-12.35002507,0,0,0.703003827,0.056650603,1.822078139,0.612677077,1,0.080795228,0,0.953332411,0.992094374,0.724496596,1,7.057606912,0.164172677,0.081176046,0.312029739,0.795721643,0.520218238,0.961238037,0.922476074,0.039032994,1.751450813,7.096639906,1.915623491,6.349612609,0,0.295381189,72.81960345,-0.295381189,107.1803965,0.880727203,0,12.68891646,1.915623491,13.94265372,5,19,10% +2018-05-27 04:00:00,97.22729476,304.4126223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696936416,5.313002544,-4.588977648,4.588977648,1,0.685084914,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.079236318,85.45532938,-0.079236318,94.54467062,0,0,0,0,0,5,20,0% +2018-05-27 05:00:00,106.3220647,315.2378942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855670096,5.50193918,-1.430315846,1.430315846,1,0.774752105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126605675,97.27349092,0.126605675,82.72650908,0,0.655072994,0,0,0,5,21,0% +2018-05-27 06:00:00,113.6919893,327.8633499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984299547,5.722294953,-0.479131139,0.479131139,1,0.61208994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311739848,108.1641131,0.311739848,71.83588687,0,0.889609853,0,0,0,5,22,0% +2018-05-27 07:00:00,118.6806053,342.4006555,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071367321,5.9760188,0.076569847,-0.076569847,1,0.517059475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463551965,117.6165479,0.463551965,62.38345207,0,0.942137228,0,0,0,5,23,0% +2018-05-28 08:00:00,120.6661814,358.3101454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106022162,6.25369178,0.529818812,-0.529818812,1,0.439549337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571699251,124.8688049,0.571699251,55.13119513,0,0.962541428,0,0,0,5,0,0% +2018-05-28 09:00:00,119.3468158,14.36351319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082994888,0.250690597,1.003899909,-1.003899909,1,0.358476694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628814533,128.962715,0.628814533,51.037285,0,0.970485298,0,0,0,5,1,0% +2018-05-28 10:00:00,114.9270276,29.24874446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005855031,0.510486893,1.629989432,-1.629989432,1,0.25140908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631007704,129.1245083,0.631007704,50.87549166,0,0.970761665,0,0,0,5,2,0% +2018-05-28 11:00:00,107.9879478,42.26835384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884745241,0.737721944,2.726121851,-2.726121851,1,0.063959397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578130375,125.3191503,0.578130375,54.6808497,0,0.963514318,0,0,0,5,3,0% +2018-05-28 12:00:00,99.19692173,53.42632025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731312892,0.932465196,5.919687066,-5.919687066,1,0,#DIV/0!,0,0,0.325314662,1,0.167347936,0,0.943168909,0.981930872,0.724496596,1,0,0,0.048218817,0.312029739,0.87237706,0.596873656,0.961238037,0.922476074,0,0,0,0,0,0,-0.47378576,118.2803204,0.47378576,61.71967963,0,0.944467069,0,0,0,5,4,0% +2018-05-28 13:00:00,88.74722008,63.11126991,1.118983594,6.710400967,0.972271466,0.951389265,0,0.951389265,0.942953894,0.008435371,2.440743076,2.140114977,0.300628099,0.029317572,0.271310527,1.548931192,1.101499455,-45.39751379,45.39751379,0,0,0.868888044,0.007329393,0.235738474,1,0.862893228,0,0.022024076,0.961238037,1,0.663938713,0.939442117,0.90640315,0.020572495,0.115824807,0.243268721,0.724496596,0.448993192,0.971631312,0.932869349,0.00531012,0.227798044,0.91171327,0.248370539,0,0.293424256,-0.318925052,108.597929,0.318925052,71.40207096,0,0.893223354,0.91171327,0.510463936,1.245801707,5,5,37% +2018-05-28 14:00:00,78.10555538,71.83577145,131.8441457,413.1777792,46.68435933,46.27055051,0,46.27055051,45.27665365,0.993896861,91.560793,58.18594776,33.37484524,1.407705681,31.96713955,1.363199106,1.253770733,-4.745184758,4.745184758,0.658371925,0.658371925,0.354087465,0.774581735,24.91321121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52164167,1.019877974,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56118183,23.94752624,44.0828235,24.96740421,0,58.18594776,-0.140825453,98.09561444,0.140825453,81.90438556,0,0.694950546,44.0828235,65.4037604,86.8882766,5,6,97% +2018-05-28 15:00:00,66.65822033,80.15672799,338.7452576,663.2178643,75.96831068,118.1552567,41.92406602,76.23119066,73.67758582,2.553604839,84.42343443,0,84.42343443,2.29072486,82.13270957,1.163405418,1.398998821,-2.281006635,2.281006635,0.920228798,0.920228798,0.224263835,2.395584179,77.05022198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.82169795,1.659622363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.735592583,74.06360411,72.55729053,75.72322648,41.92406602,0,0.063213113,86.37573896,-0.063213113,93.62426104,0,0,72.55729053,75.72322648,122.1166278,5,7,68% +2018-05-28 16:00:00,54.89355858,88.74480756,543.7102154,781.4863547,94.27957901,310.798909,215.2634899,95.53541912,91.43670185,4.098717268,134.6717137,0,134.6717137,2.842877162,131.8288366,0.958073335,1.548889086,-1.347064791,1.347064791,0.760515336,0.760515336,0.173400419,3.287343711,105.7322739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89243578,2.059654826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381669328,101.6338834,90.27410511,103.6935382,215.2634899,0,0.275453933,74.01093258,-0.275453933,105.9890674,0.868481444,0,277.2264517,103.6935382,345.0917986,5,8,24% +2018-05-28 17:00:00,43.09152928,98.63760405,724.0906106,844.6369818,107.2832335,515.9038914,406.3971424,109.506749,104.0482481,5.45850088,178.7991371,0,178.7991371,3.234985322,175.5641518,0.752089066,1.721550957,-0.821064414,0.821064414,0.670563974,0.670563974,0.148162719,3.926704219,126.2963056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0151338,2.343735853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.844883839,121.4008129,102.8600176,123.7445487,406.3971424,0,0.481150069,61.23945817,-0.481150069,118.7605418,0.946082318,0,487.3451681,123.7445487,568.3335003,5,9,17% +2018-05-28 18:00:00,31.67150879,111.9645505,865.3403304,879.9613456,116.4296013,705.6901461,586.248026,119.4421201,112.9188192,6.523300932,213.3225637,0,213.3225637,3.510782058,209.8117817,0.552772107,1.954150053,-0.458720574,0.458720574,0.608599528,0.608599528,0.134547758,4.313608306,138.740471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5418641,2.54354965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.125194533,133.362618,111.6670586,135.9061677,586.248026,0,0.666220203,48.22399577,-0.666220203,131.7760042,0.974949739,0,683.2294186,135.9061677,772.1772873,5,10,13% +2018-05-28 19:00:00,21.67822938,134.0943163,957.0101125,898.508486,122.0504391,860.5951223,735.0106077,125.5845146,118.3701681,7.214346471,235.7184527,0,235.7184527,3.680271058,232.0381817,0.378356479,2.340387328,-0.173667788,0.173667788,0.559852631,0.559852631,0.127533072,4.443936256,142.9322659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.781908,2.666343854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219616689,137.3919307,117.0015247,140.0582745,735.0106077,0,0.81803413,35.11151593,-0.81803413,144.8884841,0.988877856,0,843.8372385,140.0582745,935.502578,5,11,11% +2018-05-28 20:00:00,16.35529999,174.7842851,992.5210893,904.9652309,124.1762224,966.1320891,838.2181947,127.9138944,120.4318512,7.482043214,244.3926004,0,244.3926004,3.744371268,240.6482291,0.285453835,3.050561256,0.074887449,-0.074887449,0.517347182,0.517347182,0.125111923,4.322621806,139.0303762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7636762,2.712784237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131724783,133.6412859,118.895401,136.3540701,838.2181947,0,0.926243535,22.14337722,-0.926243535,157.8566228,0.996018517,0,953.7762439,136.3540701,1043.017256,5,12,9% +2018-05-28 21:00:00,19.98225509,219.1653449,969.3595627,900.7961681,122.7926736,1012.311774,885.9143104,126.3974632,119.0900214,7.307441843,238.735101,0,238.735101,3.702652165,235.0324488,0.348756143,3.825156875,0.312221929,-0.312221929,0.476760595,0.476760595,0.126674021,3.968243701,127.6323582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4738584,2.682558889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.874979053,122.6850774,117.3488374,125.3676363,885.9143104,0,0.983479217,10.42924007,-0.983479217,169.5707599,0.999160085,0,1002.519055,125.3676363,1084.569666,5,13,8% +2018-05-28 22:00:00,29.37561621,244.4370708,889.1806755,885.0688035,117.9116735,993.6055652,872.5463442,121.059221,114.3562015,6.703019524,219.1476214,0,219.1476214,3.555472004,215.5921494,0.512701223,4.266231699,0.560259354,-0.560259354,0.434343697,0.434343697,0.132607103,3.41420807,109.8126678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9235306,2.575927364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.473582124,105.5561132,112.3971128,108.1320406,872.5463442,0,0.985851428,9.649555665,-0.985851428,170.3504443,0.999282419,0,984.317334,108.1320406,1055.087592,5,14,7% +2018-05-28 23:00:00,40.61652852,259.0014651,757.7378649,853.9395608,109.5263981,908.845882,796.9099608,111.9359212,106.2237731,5.712148095,187.0249431,0,187.0249431,3.302625013,183.7223181,0.708892153,4.520428334,0.847042223,-0.847042223,0.385300938,0.385300938,0.144543916,2.708426145,87.11229497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1063311,2.39274058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962245522,83.7356514,104.0685767,86.12839198,796.9099608,0,0.933215882,21.05820621,-0.933215882,158.9417938,0.996421829,0,898.1270575,86.12839198,954.4963675,5,15,6% +2018-05-28 00:00:00,52.37674891,269.3845093,584.6856951,798.20254,97.40967953,760.7407585,661.8607325,98.88002603,94.47241829,4.407607742,144.7010773,0,144.7010773,2.937261241,141.763816,0.91414672,4.701646641,1.223888418,-1.223888418,0.320856443,0.320856443,0.166601783,1.912914856,61.52591737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.81048189,2.128035771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385900301,59.14105203,92.19638219,61.2690878,661.8607325,0,0.829188958,33.98448568,-0.829188958,146.0155143,0.989700114,0,747.2400243,61.2690878,787.3394169,5,16,5% +2018-05-28 01:00:00,64.16601954,278.1454557,383.6148685,695.6266933,80.4851194,554.6181961,473.6681491,80.95004701,78.05819609,2.891850918,95.43878951,0,95.43878951,2.426923308,93.0118662,1.119908309,4.854554002,1.821236219,-1.821236219,0.218703953,0.218703953,0.20980709,1.106495625,35.58870285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03250717,1.758297675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.801652314,34.20921486,75.83415948,35.96751254,473.6681491,0,0.680922905,47.08419571,-0.680922905,132.9158043,0.976570248,0,538.4043814,35.96751254,561.944399,5,17,4% +2018-05-28 02:00:00,75.69374091,286.4650844,174.4494393,485.2893631,54.53207524,296.2320693,242.0292637,54.20280554,52.88773197,1.315073562,43.94162955,0,43.94162955,1.644343271,42.29728627,1.321105002,4.999758915,3.153638166,-3.153638166,0,0,0.312595302,0.411085818,13.22193299,0.009067232,1,0.307064733,0,0.923259364,0.962021327,0.724496596,1,50.86053796,1.191321102,0.001544009,0.312029739,0.995631033,0.720127629,0.961238037,0.922476074,0.29706117,12.70942491,51.15759913,13.90074602,239.8347282,0,0.498731854,60.08386446,-0.498731854,119.9161355,0.949745726,0,278.9396072,13.90074602,288.0373674,5,18,3% +2018-05-28 03:00:00,86.60225988,295.0612813,11.59764089,59.83364423,8.051480268,25.65798608,17.76185974,7.896126347,7.808698431,0.087427916,3.054764145,0,3.054764145,0.242781837,2.811982308,1.511494575,5.149790854,11.89715071,-11.89715071,0,0,0.694234314,0.060695459,1.952174608,0.6006994,1,0.083856626,0,0.953002442,0.991764405,0.724496596,1,7.562569169,0.175894614,0.079943694,0.312029739,0.79843219,0.522928786,0.961238037,0.922476074,0.041784181,1.876504487,7.60435335,2.052399102,7.092321254,0,0.296854052,72.7312522,-0.296854052,107.2687478,0.881567062,0,13.85671016,2.052399102,15.19996433,5,19,10% +2018-05-28 04:00:00,97.09376006,304.5033709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694605796,5.314586405,-4.665920244,4.665920244,1,0.671926955,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081029714,85.35224384,-0.081029714,94.64775616,0,0,0,0,0,5,20,0% +2018-05-28 05:00:00,106.1777897,315.3118806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853152023,5.503230488,-1.439742367,1.439742367,1,0.776364135,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124618328,97.15871525,0.124618328,82.84128475,0,0.648774909,0,0,0,5,21,0% +2018-05-28 06:00:00,113.5378858,327.9125798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981609933,5.723154177,-0.480726424,0.480726424,1,0.61236275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309610036,108.035731,0.309610036,71.96426898,0,0.888506527,0,0,0,5,22,0% +2018-05-28 07:00:00,118.5207334,342.4144024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068577029,5.976258727,0.077521005,-0.077521005,1,0.516896817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461341068,117.4736781,0.461341068,62.52632191,0,0.941620314,0,0,0,5,23,0% +2018-05-29 08:00:00,120.5081314,358.2805915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103263669,6.253175967,0.532334621,-0.532334621,1,0.439119108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569474306,124.7135756,0.569474306,55.28642435,0,0.962199726,0,0,0,5,0,0% +2018-05-29 09:00:00,119.1994216,14.29261598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080422374,0.249453208,1.008144534,-1.008144534,1,0.357750821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626643613,128.8029262,0.626643613,51.19707379,0,0.970209831,0,0,0,5,1,0% +2018-05-29 10:00:00,114.7965196,29.14749052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003577237,0.508719678,1.637251899,-1.637251899,1,0.250167125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628955226,128.973083,0.628955226,51.02691701,0,0.970503085,0,0,0,5,2,0% +2018-05-29 11:00:00,107.876247,42.1488915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882795694,0.735636933,2.741311392,-2.741311392,1,0.061361832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576252668,125.1874046,0.576252668,54.81259542,0,0.963232506,0,0,0,5,3,0% +2018-05-29 12:00:00,99.10273922,53.29641639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729669097,0.930197946,5.977943344,-5.977943344,1,0,#DIV/0!,0,0,0.329819276,1,0.165746943,0,0.943372395,0.982134358,0.724496596,1,0,0,0.048796003,0.312029739,0.870960333,0.595456928,0.961238037,0.922476074,0,0,0,0,0,0,-0.472127199,118.1724664,0.472127199,61.82753356,0,0.944096336,0,0,0,5,4,0% +2018-05-29 13:00:00,88.67576999,62.97367164,1.268601631,7.522635783,1.094752645,1.071305068,0,1.071305068,1.061741813,0.009563255,2.730122042,2.389524057,0.340597984,0.033010831,0.307587153,1.547684153,1.099097912,-42.93465995,42.93465995,0,0,0.862960143,0.008252708,0.265435453,1,0.8544907,0,0.023286995,0.961238037,1,0.660581341,0.936084745,1.020586616,0.023129688,0.115824807,0.239461601,0.724496596,0.448993192,0.97217766,0.933415697,0.005979059,0.256553302,1.026565675,0.27968299,0,0.347697973,-0.317644523,108.5205353,0.317644523,71.4794647,0,0.892591336,1.026565675,0.590035188,1.412731905,5,5,38% +2018-05-29 14:00:00,78.03793337,71.68934533,133.0181582,415.3933666,46.92204643,46.50992067,0,46.50992067,45.50717361,1.002747064,91.69016569,58.02350036,33.66666532,1.414872824,32.2517925,1.362018879,1.251215115,-4.717942312,4.717942312,0.663030658,0.663030658,0.352749181,0.784044236,25.21755778,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.74322622,1.025070544,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56803738,24.24007573,44.3112636,25.26514628,0,58.02350036,-0.139683262,98.02951839,0.139683262,81.97048161,0,0.692047305,44.3112636,65.42015333,87.12744555,5,6,97% +2018-05-29 15:00:00,66.5981257,79.99717064,339.8333076,664.0621466,76.08249038,118.9198155,42.56968593,76.3501296,73.78832258,2.561807019,84.69068768,0,84.69068768,2.2941678,82.39651988,1.162356569,1.39621402,-2.275572019,2.275572019,0.919299424,0.919299424,0.223881793,2.401352882,77.23576327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.92814234,1.662116761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.739771988,74.24195346,72.66791433,75.90407023,42.56968593,0,0.064104973,86.32453531,-0.064104973,93.67546469,0,0,72.66791433,75.90407023,122.3456102,5,7,68% +2018-05-29 16:00:00,54.83702248,88.5642725,544.6439102,781.8862759,94.3523308,311.5030299,215.8900142,95.61301576,91.5072599,4.105755854,134.9002926,0,134.9002926,2.845070897,132.0552217,0.957086594,1.545738155,-1.345674227,1.345674227,0.760277536,0.760277536,0.173236731,3.292020794,105.882705,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96025887,2.06124418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.385057859,101.7784835,90.34531673,103.8397277,215.8900142,0,0.276114341,73.97156736,-0.276114341,106.0284326,0.868915599,0,277.9355178,103.8397277,345.8965428,5,8,24% +2018-05-29 17:00:00,43.03266836,98.42307677,724.9091095,844.8708078,107.3383498,516.4706209,406.9042473,109.5663735,104.1017025,5.46467107,178.9992536,0,178.9992536,3.236647282,175.7626063,0.751061749,1.71780675,-0.821044845,0.821044845,0.670560627,0.670560627,0.148071459,3.930963024,126.4332834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0665161,2.344939938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.847969329,121.5324812,102.9144854,123.8774211,406.9042473,0,0.481617122,61.20892781,-0.481617122,118.7910722,0.946183093,0,487.9204048,123.8774211,568.9956993,5,9,17% +2018-05-29 18:00:00,31.60009055,111.6966593,866.1060774,880.1287486,116.4774455,706.1402611,586.6459669,119.4942942,112.9652208,6.529073456,213.5096706,0,213.5096706,3.512224738,209.9974459,0.551525624,1.949474469,-0.459360362,0.459360362,0.608708938,0.608708938,0.134484041,4.317880907,138.8778926,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5864671,2.544594867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128290018,133.4947128,111.7147571,136.0393077,586.6459669,0,0.666545625,48.19898894,-0.666545625,131.8010111,0.97498638,0,683.6865849,136.0393077,772.721591,5,10,13% +2018-05-29 19:00:00,21.57450474,133.7731582,957.7928641,898.6548621,122.0975815,860.9868295,735.3506934,125.6361361,118.4158889,7.220247183,235.9096614,0,235.9096614,3.681692574,232.2279688,0.376546142,2.334782061,-0.174743508,0.174743508,0.560036589,0.560036589,0.127478066,4.448555113,143.0808242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8258566,2.667373737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222963036,137.5347306,117.0488196,140.2021043,735.3506934,0,0.818279324,35.08708338,-0.818279324,144.9129166,0.988896171,0,844.2343046,140.2021043,935.9937779,5,11,11% +2018-05-29 20:00:00,16.20394768,174.6335761,993.3902961,905.1186882,124.2279357,966.5406671,838.5700664,127.9706007,120.4820051,7.488595662,244.604909,0,244.604909,3.745930613,240.8589784,0.282812239,3.047930888,0.073416537,-0.073416537,0.517598722,0.517598722,0.125054509,4.327847975,139.1984677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.811886,2.713913977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.135511125,133.8028619,118.9473971,136.5167758,838.5700664,0,0.926475254,22.10812746,-0.926475254,157.8918725,0.996032018,0,954.1900324,136.5167758,1043.537532,5,12,9% +2018-05-29 21:00:00,19.83614122,219.3331818,970.3785624,900.9828856,122.853774,1012.819761,886.3553583,126.4644029,119.1492794,7.315123493,238.9840117,0,238.9840117,3.704494568,235.2795171,0.346205975,3.828086182,0.310285294,-0.310285294,0.477091779,0.477091779,0.126603965,3.974262948,127.8259579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5308195,2.683893704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.879339977,122.8711728,117.4101594,125.5550665,886.3553583,0,0.983764922,10.3384193,-0.983764922,169.6615807,0.99917485,0,1003.034141,125.5550665,1085.207421,5,13,8% +2018-05-29 22:00:00,29.25369635,244.6379619,890.4014829,885.3246618,117.9871599,994.2971694,873.1555353,121.1416342,114.4294117,6.712222485,219.4458964,0,219.4458964,3.557748196,215.8881482,0.51057332,4.269737911,0.557660665,-0.557660665,0.434788099,0.434788099,0.132510067,3.421114862,110.034814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.993903,2.577576457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478586071,105.7696486,112.4724891,108.347225,873.1555353,0,0.986254617,9.510750176,-0.986254617,170.4892498,0.999303152,0,985.019568,108.347225,1055.93066,5,14,7% +2018-05-29 23:00:00,40.50651914,259.1724216,759.1962788,854.328906,109.6226165,909.8054552,797.7652229,112.0402323,106.3170901,5.723142235,187.3814538,0,187.3814538,3.305526351,184.0759275,0.706972127,4.523412087,0.843353928,-0.843353928,0.385931674,0.385931674,0.144392984,2.716196621,87.36222021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.196031,2.394842589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967875206,83.97588905,104.1639062,86.37073164,797.7652229,0,0.933791678,20.96619915,-0.933791678,159.0338008,0.996454867,0,899.1009449,86.37073164,955.6288614,5,15,6% +2018-05-29 00:00:00,52.27005601,269.5285382,586.3952796,798.8647124,97.53763456,762.0589111,663.0419008,99.01701032,94.596515,4.420495312,145.1194441,0,145.1194441,2.941119558,142.1783246,0.912284578,4.70416042,1.218104068,-1.218104068,0.321845626,0.321845626,0.166334276,1.921350353,61.79723195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92976838,2.130831108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39201179,59.40184992,92.32178017,61.53268103,663.0419008,0,0.829980209,33.90329497,-0.829980209,146.096705,0.9897576,0,748.5725404,61.53268103,788.8444495,5,16,5% +2018-05-29 01:00:00,64.05766322,278.2699483,385.55245,696.9231523,80.67201058,556.4173967,475.2714877,81.14590904,78.23945181,2.906457226,95.91421405,0,95.91421405,2.432558767,93.48165528,1.118017134,4.856726807,1.810377684,-1.810377684,0.220560872,0.220560872,0.209237448,1.115058611,35.86411793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.20673706,1.762380546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807856168,34.47395432,76.01459323,36.23633486,475.2714877,0,0.681956807,47.00325526,-0.681956807,132.9967447,0.976681574,0,540.2034977,36.23633486,563.9194541,5,17,4% +2018-05-29 02:00:00,75.58067638,286.5750518,176.4763402,488.3432705,54.8707895,298.7256681,244.1790822,54.54658594,53.21623274,1.330353196,44.4432886,0,44.4432886,1.654556755,42.78873185,1.319131654,5.001678208,3.123404879,-3.123404879,0,0,0.310924339,0.413639189,13.30405819,0.003964225,1,0.309851181,0,0.922820386,0.961582349,0.724496596,1,51.16361284,1.198720737,0.000676662,0.312029739,0.998083013,0.722579609,0.961238037,0.922476074,0.299339003,12.78836677,51.46295185,13.98708751,243.2111014,0,0.500015249,59.99899111,-0.500015249,120.0010089,0.95000305,0,282.5142399,13.98708751,291.6685089,5,18,3% +2018-05-29 03:00:00,86.48624585,295.1590508,12.52226344,64.19973269,8.587580901,27.57452603,19.15149427,8.423031763,8.328633652,0.094398111,3.295114998,0,3.295114998,0.258947249,3.036167749,1.509469748,5.151497253,11.48371471,-11.48371471,0,0,0.685785037,0.064736812,2.082158413,0.58909916,1,0.086860727,0,0.952676516,0.991438479,0.724496596,1,8.067146532,0.1876064,0.078739586,0.312029739,0.801092341,0.525588937,0.961238037,0.922476074,0.044531661,2.001449865,8.111678193,2.189056266,7.869365082,0,0.298311122,72.64380662,-0.298311122,107.3561934,0.882389756,0,15.05552532,2.189056266,16.48821887,5,19,10% +2018-05-29 04:00:00,96.96350887,304.5884787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692332484,5.316071817,-4.744178758,4.744178758,1,0.658543961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082794332,85.25079778,-0.082794332,94.74920222,0,0,0,0,0,5,20,0% +2018-05-29 05:00:00,106.0375111,315.3805039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850703699,5.504428189,-1.449240907,1.449240907,1,0.777988481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.122668747,97.04614871,0.122668747,82.95385129,0,0.642398217,0,0,0,5,21,0% +2018-05-29 06:00:00,113.3885964,327.9570236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979004341,5.723929867,-0.482414295,0.482414295,1,0.612651393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307527851,107.9103103,0.307527851,72.0896897,0,0.8874131,0,0,0,5,22,0% +2018-05-29 07:00:00,118.3664743,342.4244774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065884701,5.976434569,0.078346348,-0.078346348,1,0.516755675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459187858,117.3347139,0.459187858,62.66528613,0,0.941112103,0,0,0,5,23,0% +2018-05-30 08:00:00,120.3562783,358.2490409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100613332,6.252625305,0.534682082,-0.534682082,1,0.438717668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567316614,124.5633163,0.567316614,55.43668372,0,0.961865793,0,0,0,5,0,0% +2018-05-30 09:00:00,119.0584458,14.22157892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077961881,0.248213377,1.01215084,-1.01215084,1,0.357065702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62454836,128.649046,0.62454836,51.35095404,0,0.969942148,0,0,0,5,1,0% +2018-05-30 10:00:00,114.6723156,29.04764632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001409468,0.506977068,1.644134014,-1.644134014,1,0.248990214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626985099,128.8280372,0.626985099,51.1719628,0,0.970253288,0,0,0,5,2,0% +2018-05-30 11:00:00,107.7705481,42.0319046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880950902,0.733595126,2.755739558,-2.755739558,1,0.05889447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574461807,125.0619509,0.574461807,54.93804911,0,0.962962012,0,0,0,5,3,0% +2018-05-30 12:00:00,99.01420815,53.16967932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728123939,0.927985966,6.033626791,-6.033626791,1,0,#DIV/0!,0,0,0.334069081,1,0.164244774,0,0.943562797,0.98232476,0.724496596,1,0,0,0.049338575,0.312029739,0.869630975,0.594127571,0.961238037,0.922476074,0,0,0,0,0,0,-0.470557476,118.0704896,0.470557476,61.92951042,0,0.943743055,0,0,0,5,4,0% +2018-05-30 13:00:00,88.60888273,62.83973499,1.419717906,8.340672922,1.217229794,1.191228258,0,1.191228258,1.180525825,0.010702433,3.020251404,2.639320392,0.380931013,0.036703969,0.344227043,1.54651675,1.096760277,-40.85764853,40.85764853,0,0,0.857374405,0.009175992,0.295131456,1,0.846560416,0,0.024470336,0.961238037,1,0.657446891,0.932950295,1.134766326,0.025682502,0.115824807,0.235907853,0.724496596,0.448993192,0.972684844,0.933922881,0.006647975,0.285314565,1.141414302,0.310997067,0,0.404976223,-0.316439743,108.4477516,0.316439743,71.55224837,0,0.891992034,1.141414302,0.672232632,1.581377115,5,5,39% +2018-05-30 14:00:00,77.97536844,71.54702318,134.1056514,417.4327383,47.14097942,46.73045001,0,46.73045001,45.71950496,1.010945047,91.80373955,57.86679729,33.93694227,1.421474461,32.5154678,1.360926915,1.248731125,-4.692993831,4.692993831,0.667297099,0.667297099,0.351521199,0.792832866,25.50023032,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.94732719,1.029853408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574404713,24.51179134,44.52173191,25.54164474,0,57.86679729,-0.138625441,97.96831423,0.138625441,82.03168577,0,0.689315844,44.52173191,65.43014498,87.34445319,5,6,96% +2018-05-30 15:00:00,66.54297397,79.84221114,340.8316313,664.8340628,76.18703457,119.6185189,43.15947172,76.45904718,73.88971437,2.569332804,84.93589521,0,84.93589521,2.297320192,82.63857501,1.16139399,1.393509466,-2.270649799,2.270649799,0.918457674,0.918457674,0.223532758,2.40665564,77.40631821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.02560399,1.664400659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743613819,74.40589736,72.76921781,76.07029802,43.15947172,0,0.06491766,86.27787457,-0.06491766,93.72212543,0,0,72.76921781,76.07029802,122.5557065,5,7,68% +2018-05-30 16:00:00,54.78543276,88.38895632,545.4953993,782.2501754,94.41861623,312.1347668,216.4510455,95.68372132,91.57154658,4.112174738,135.1087447,0,135.1087447,2.847069647,132.2616751,0.956186184,1.54267831,-1.344477879,1.344477879,0.760072948,0.760072948,0.173087832,3.296325033,106.0211441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.02205367,2.062692267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388176265,101.9115564,90.41022993,103.9742487,216.4510455,0,0.276703096,73.93646668,-0.276703096,106.0635333,0.869300902,0,278.5713189,103.9742487,346.6203852,5,8,24% +2018-05-30 17:00:00,42.9789578,98.21452901,725.655223,845.083617,107.3885671,516.9692234,407.3485222,109.6207011,104.1504056,5.470295589,179.1816717,0,179.1816717,3.238161519,175.9435102,0.750124323,1.714166904,-0.821112169,0.821112169,0.67057214,0.67057214,0.147988416,3.934912977,126.5603275,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1133314,2.346036997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.850831057,121.6546008,102.9641624,124.0006378,407.3485222,0,0.482021559,61.18248337,-0.482021559,118.8175166,0.9462702,0,488.4259299,124.0006378,569.5818673,5,9,17% +2018-05-30 18:00:00,31.53434695,111.4352775,866.8096216,880.2823532,116.521389,706.5306199,586.9884036,119.5422162,113.0078392,6.53437707,213.6815781,0,213.6815781,3.513549795,210.1680283,0.550378182,1.944912496,-0.46003747,0.46003747,0.60882473,0.60882473,0.134425583,4.321893804,139.0069612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6274335,2.545554866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131197349,133.6187784,111.7586308,136.1643333,586.9884036,0,0.666818324,48.17802607,-0.666818324,131.8219739,0.975017058,0,684.082337,136.1643333,773.1991698,5,10,13% +2018-05-30 19:00:00,21.47733423,133.456145,958.5229204,898.7912149,122.1415382,861.3285711,735.6443002,125.6842709,118.4585202,7.225750656,236.0879975,0,236.0879975,3.683018032,232.4049794,0.374850197,2.329249137,-0.175827586,0.175827586,0.560221978,0.560221978,0.127426831,4.452951919,143.2222407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8668354,2.668334027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.226148507,137.6706654,117.0929839,140.3389995,735.6443002,0,0.818481854,35.06689096,-0.818481854,144.933109,0.988911291,0,844.5799384,140.3389995,936.4290068,5,11,11% +2018-05-30 20:00:00,16.05908664,174.4761191,994.2148669,905.2640684,124.2769797,966.9089084,838.8845265,128.0243819,120.5295703,7.494811624,244.8063146,0,244.8063146,3.747409472,241.0589051,0.280283937,3.045182745,0.071958665,-0.071958665,0.517848033,0.517848033,0.125000122,4.332878671,139.3602722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8576075,2.714985406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139155847,133.9583945,118.9967634,136.6733799,838.8845265,0,0.926673836,22.07787602,-0.926673836,157.922124,0.996043583,0,954.5623128,136.6733799,1044.012306,5,12,9% +2018-05-30 21:00:00,19.69458615,219.4892928,971.358938,901.1622345,122.912538,1013.2957,886.7669148,126.5287855,119.2062715,7.322513978,239.223487,0,239.223487,3.70626652,235.5172205,0.343735373,3.830810832,0.308382099,-0.308382099,0.477417245,0.477417245,0.126536683,3.98010219,128.0137679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5856024,2.685177477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.883570488,123.051703,117.4691729,125.7368805,886.7669148,0,0.984025829,10.25478647,-0.984025829,169.7452135,0.999188326,0,1003.516322,125.7368805,1085.808595,5,13,8% +2018-05-30 22:00:00,29.13483737,244.828338,891.5872126,885.5726506,118.0604402,994.9626728,873.7410295,121.2216434,114.5004823,6.721161017,219.7356,0,219.7356,3.559957869,216.1756421,0.508498839,4.273060601,0.555120445,-0.555120445,0.435222503,0.435222503,0.132416031,3.427846542,110.2513279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0622189,2.579177358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.483463151,105.97777,112.545682,108.5569474,873.7410295,0,0.986639582,9.376319093,-0.986639582,170.6236809,0.999322933,0,985.6951304,108.5569474,1056.743481,5,14,7% +2018-05-30 23:00:00,40.39885496,259.3346811,760.6204917,854.7080486,109.7165004,910.7415695,798.5995478,112.1420217,106.4081431,5.733878554,187.7296017,0,187.7296017,3.308357299,184.4212444,0.705093033,4.52624405,0.83976264,-0.83976264,0.38654582,0.38654582,0.144246049,2.723788193,87.60639124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2835546,2.396893601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973375274,84.21059554,104.2569299,86.60748914,798.5995478,0,0.934353607,20.8760347,-0.934353607,159.1239653,0.996487069,0,900.0510527,86.60748914,956.7339222,5,15,6% +2018-05-30 00:00:00,52.16546419,269.6651439,588.0689649,799.5103885,97.66270928,763.3517285,664.200798,99.15093052,94.71781826,4.433112259,145.52902,0,145.52902,2.944891022,142.584129,0.910459106,4.706544639,1.212490859,-1.212490859,0.322805541,0.322805541,0.166073565,1.929599171,62.0625423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.04636968,2.13356352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397988031,59.65687633,92.44435771,61.79043985,664.200798,0,0.830759434,33.82317053,-0.830759434,146.1768295,0.989814105,0,749.8796762,61.79043985,790.3202833,5,16,5% +2018-05-30 01:00:00,63.9514442,278.3878161,387.4506179,698.1856097,80.85450007,558.1825485,476.8453435,81.33720499,78.41643857,2.920766418,96.37994957,0,96.37994957,2.438061499,93.94188807,1.116163263,4.858783988,1.799881246,-1.799881246,0.222355869,0.222355869,0.208683368,1.123435608,36.13355094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37686347,1.766367256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813925274,34.73294357,76.19078875,36.49931083,476.8453435,0,0.682977903,46.92321256,-0.682977903,133.0767874,0.976791189,0,541.9691189,36.49931083,565.8571879,5,17,4% +2018-05-30 02:00:00,75.46997446,286.6788764,178.4628506,491.3071122,55.20012485,301.1646894,246.2837236,54.88096577,53.53563742,1.345328351,44.93487173,0,44.93487173,1.664487431,43.2703843,1.317199541,5.00349029,3.094397571,-3.094397571,0.000980539,0.000980539,0.30930877,0.417032981,13.41321422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46049102,1.205915478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.302138975,12.8932917,51.76262999,14.09920718,246.2837236,0,0.501282635,59.91510523,-0.501282635,120.0848948,0.950255871,0,285.7951842,14.09920718,295.0228333,5,18,3% +2018-05-30 03:00:00,86.37270998,295.250968,13.46006763,68.58020481,9.121281084,29.50470913,20.55700065,8.947708481,8.846240806,0.101467675,3.538589511,0,3.538589511,0.275040279,3.263549233,1.507488173,5.153101512,11.10539326,-11.10539326,0,0,0.677654922,0.06876007,2.211560201,0.577877471,1,0.08980414,0,0.952355129,0.991117093,0.724496596,1,8.569507635,0.199265746,0.077564728,0.312029739,0.803699037,0.528195633,0.961238037,0.922476074,0.047265867,2.125835786,8.616773503,2.325101532,8.677573097,0,0.299751229,72.55733805,-0.299751229,107.442662,0.883195012,0,16.28076278,2.325101532,17.80249523,5,19,9% +2018-05-30 04:00:00,96.83661105,304.6679507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690117699,5.317458866,-4.823669332,4.823669332,1,0.644950272,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084529126,85.15105167,-0.084529126,94.84894833,0,0,0,0,0,5,20,0% +2018-05-30 05:00:00,105.9013003,315.4437871,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848326372,5.50553269,-1.458799652,1.458799652,1,0.779623123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120758174,96.93586097,0.120758174,83.06413903,0,0.635949354,0,0,0,5,21,0% +2018-05-30 06:00:00,113.2441893,327.9967225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976483961,5.724622744,-0.484193186,0.484193186,1,0.612955601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305494666,107.7879267,0.305494666,72.21207335,0,0.886331021,0,0,0,5,22,0% +2018-05-30 07:00:00,118.217888,342.4309337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063291381,5.976547253,0.079044502,-0.079044502,1,0.516636284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457093758,117.1997314,0.457093758,62.80026856,0,0.940613251,0,0,0,5,23,0% +2018-05-31 08:00:00,120.2106707,358.2155474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098072,6.252040734,0.536858001,-0.536858001,1,0.438345564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565227569,124.4180956,0.565227569,55.58190441,0,0.961540054,0,0,0,5,0,0% +2018-05-31 09:00:00,118.9239264,14.15045095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075614075,0.24697196,1.015913289,-1.015913289,1,0.356422285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622530059,128.5011291,0.622530059,51.49887092,0,0.969682593,0,0,0,5,1,0% +2018-05-31 10:00:00,114.5544442,28.94925937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999352223,0.505259892,1.650625195,-1.650625195,1,0.247880157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625098426,128.689412,0.625098426,51.31058799,0,0.970012597,0,0,0,5,2,0% +2018-05-31 11:00:00,107.67087,41.91744476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879211191,0.731597425,2.769378367,-2.769378367,1,0.056562097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572758652,124.9428199,0.572758652,55.05718014,0,0.962703196,0,0,0,5,3,0% +2018-05-31 12:00:00,98.93133665,53.04616776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726677558,0.925830283,6.086555794,-6.086555794,1,0,#DIV/0!,0,0,0.338058998,1,0.162841716,0,0.943740179,0.982502142,0.724496596,1,0,0,0.049846239,0.312029739,0.868389256,0.592885852,0.961238037,0.922476074,0,0,0,0,0,0,-0.469077169,117.9744103,0.469077169,62.02558975,0,0.943407731,0,0,0,5,4,0% +2018-05-31 13:00:00,88.5466104,62.7095274,1.570262243,9.153496891,1.338095569,1.309584351,0,1.309584351,1.297747051,0.0118373,3.307282952,2.886206173,0.421076779,0.040348518,0.380728261,1.545429893,1.094487725,-39.09508138,39.09508138,0,0,0.852147834,0.01008713,0.324436763,1,0.839119827,0,0.025573089,0.961238037,1,0.654535808,0.930039212,1.247443828,0.028197919,0.115824807,0.232607867,0.724496596,0.448993192,0.973153381,0.934391417,0.007308091,0.313703535,1.254751919,0.341901454,0,0.464333347,-0.315311865,108.3796418,0.315311865,71.6203582,0,0.891426836,1.254751919,0.75582066,1.749421424,5,5,39% +2018-05-31 14:00:00,77.91784714,71.40888353,135.1065437,419.2988194,47.34143828,46.93240944,0,46.93240944,45.91391925,1.018490195,91.90297272,57.71730797,34.18566476,1.427519035,32.75814572,1.359922979,1.246320133,-4.670270291,4.670270291,0.671183053,0.671183053,0.35040078,0.800941472,25.76103095,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.1342056,1.034232682,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.58027937,24.76248282,44.71448497,25.7967155,0,57.71730797,-0.137651969,97.91199849,0.137651969,82.08800151,0,0.686765093,44.71448497,65.43494789,87.54034967,5,6,96% +2018-05-31 15:00:00,66.49273951,79.69194411,341.7407499,665.5347335,76.28205536,120.2514084,43.69335231,76.55805607,73.98186994,2.576186125,85.15918677,0,85.15918677,2.30018542,82.85900135,1.160517233,1.390886812,-2.266231868,2.266231868,0.917702164,0.917702164,0.223216153,2.411496652,77.56202179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.11418743,1.666476507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121115,74.55556555,72.86130854,76.22204206,43.69335231,0,0.065651498,86.23573886,-0.065651498,93.76426114,0,0,72.86130854,76.22204206,122.7471106,5,7,68% +2018-05-31 16:00:00,54.73875261,88.21898058,546.2654308,782.5785984,94.47851049,312.6946572,216.9470428,95.74761437,91.62963481,4.117979561,135.2972538,0,135.2972538,2.84887568,132.4483781,0.955371462,1.539711674,-1.343473253,1.343473253,0.759901147,0.759901147,0.172953486,3.300260337,106.147717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.07789028,2.064000732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39102738,102.0332231,90.46891766,104.0972239,216.9470428,0,0.277220771,73.90559854,-0.277220771,106.0944015,0.869638335,0,279.1343827,104.0972239,347.2639337,5,8,24% +2018-05-31 17:00:00,42.9303508,98.01213396,726.3298102,845.2757484,107.4339501,517.4005155,407.7307145,109.669801,104.1944201,5.475380912,179.3466016,0,179.3466016,3.239529984,176.1070716,0.749275971,1.710634445,-0.821265056,0.821265056,0.670598286,0.670598286,0.147913453,3.938557736,126.6775555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1556398,2.347028445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853471673,121.7672848,103.0091115,124.1143132,407.7307145,0,0.482364146,61.16007771,-0.482364146,118.8399223,0.946343871,0,488.8625743,124.1143132,570.09291,5,9,17% +2018-05-31 18:00:00,31.47422748,111.1806914,867.4518387,880.4224013,116.5614899,706.8621961,587.2762468,119.5859493,113.0467309,6.539218373,213.8385003,0,213.8385003,3.514758987,210.3237413,0.549328899,1.940469129,-0.460750899,0.460750899,0.608946734,0.608946734,0.13437229,4.325650166,139.1277787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6648177,2.546430921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13391882,133.7349128,111.7987365,136.2813437,587.2762468,0,0.667039192,48.16104258,-0.667039192,131.8389574,0.975041886,0,684.4176756,136.2813437,773.6110895,5,10,13% +2018-05-31 19:00:00,21.3866949,133.1437803,959.201084,898.9177297,122.1823602,861.6213719,735.8923977,125.7289742,118.4981113,7.230862939,236.253657,0,236.253657,3.684248966,232.5694081,0.373268242,2.323797345,-0.176919116,0.176919116,0.56040864,0.56040864,0.127379297,4.457129071,143.3565922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9048918,2.669225834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.229174839,137.7998093,117.1340667,140.4690351,735.8923977,0,0.818642656,35.05085167,-0.818642656,144.9491483,0.98892329,0,844.8751978,140.4690351,936.8093719,5,11,11% +2018-05-31 20:00:00,15.92077293,174.312105,994.9954488,905.4015166,124.3233953,967.2377867,839.1625046,128.0752822,120.5745862,7.500695981,244.9969753,0,244.9969753,3.748809072,241.2481662,0.277869907,3.042320158,0.070514744,-0.070514744,0.518094958,0.518094958,0.124948707,4.337715269,139.5158339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9008785,2.715999411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142659946,134.1079262,119.0435385,136.8239257,839.1625046,0,0.92684018,22.05250522,-0.92684018,157.9474948,0.996053267,0,954.8940924,136.8239257,1044.442615,5,12,9% +2018-05-31 21:00:00,19.5576224,219.6333721,972.3011099,901.334326,122.9689933,1013.740417,887.1497757,126.5906409,119.2610244,7.329616468,239.4536299,0,239.4536299,3.707968854,235.745661,0.341344905,3.83332549,0.306513319,-0.306513319,0.477736825,0.477736825,0.126472131,3.985761597,128.1957939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.638233,2.686410812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887670709,123.2266733,117.5259037,125.9130841,887.1497757,0,0.98426272,10.17826284,-0.98426272,169.8217372,0.999200555,0,1003.966452,125.9130841,1086.374047,5,13,8% +2018-05-31 22:00:00,29.01905876,245.0080155,892.7380036,885.8128457,118.1315265,995.6026678,874.3034065,121.2992613,114.5694251,6.729836165,220.0167661,0,220.0167661,3.562101382,216.4546647,0.506478121,4.276196564,0.552639766,-0.552639766,0.435646724,0.435646724,0.132324967,3.434401973,110.4621731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1284893,2.580730325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488212538,106.1804424,112.6167018,108.7611728,874.3034065,0,0.987006918,9.246238315,-0.987006918,170.7537617,0.999341794,0,986.3446364,108.7611728,1057.526649,5,14,7% +2018-05-31 23:00:00,40.29356427,259.4881424,762.0103261,855.0770222,109.8080443,911.6545158,799.4132335,112.2412823,106.4969266,5.744355713,188.0693435,0,188.0693435,3.311117683,184.7582258,0.703255364,4.528922455,0.836269517,-0.836269517,0.38714318,0.38714318,0.144103092,2.731198399,87.84472895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3688966,2.39889349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978743943,84.4396948,104.3476406,86.83858829,799.4132335,0,0.934902018,20.78767897,-0.934902018,159.212321,0.99651846,0,900.9776847,86.83858829,957.8118039,5,15,6% +2018-05-31 00:00:00,52.06301312,269.7942641,589.7062438,800.1395534,97.78487933,764.6191602,665.337401,99.28175919,94.83630443,4.445454758,145.9296811,0,145.9296811,2.9485749,142.9811062,0.908670997,4.708798211,1.20704979,-1.20704979,0.323736018,0.323736018,0.165819644,1.937657574,62.32172824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.16026309,2.136232477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.403826316,59.90601571,92.56408941,62.04224818,665.337401,0,0.831526698,33.74411229,-0.831526698,146.2558877,0.98986964,0,751.1613828,62.04224818,791.7667934,5,16,5% +2018-05-31 01:00:00,63.84741259,278.4990193,389.3085363,699.414051,81.03255048,559.9132755,478.3893832,81.5238923,78.58912011,2.934772191,96.83579226,0,96.83579226,2.443430375,94.39236189,1.114347569,4.86072485,1.789745874,-1.789745874,0.224089119,0.224089119,0.208144808,1.13162157,36.3968396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54285153,1.770256989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.819855975,34.98602665,76.36270751,36.75628364,478.3893832,0,0.683985949,46.84409014,-0.683985949,133.1559099,0.976899083,0,543.7008574,36.75628364,567.7571099,5,17,4% +2018-05-31 02:00:00,75.36169449,286.7765349,180.4077167,494.1812324,55.52007848,303.5485341,248.3426012,55.20593284,53.84594327,1.359989573,45.41607481,0,45.41607481,1.674135214,43.7419396,1.315309699,5.005194752,3.066590335,-3.066590335,0.005735857,0.005735857,0.307747803,0.423933859,13.63517016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.7587688,1.212905263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307138637,13.10664419,52.06590744,14.31954946,248.3426012,0,0.502533453,59.83224606,-0.502533453,120.1677539,0.950504136,0,288.1165771,14.31954946,297.4884359,5,18,3% +2018-05-31 03:00:00,86.26173909,295.3370247,14.40754179,72.95801842,9.650775238,31.44137822,21.97299933,9.468378893,9.359768757,0.108610136,3.784281794,0,3.784281794,0.291006481,3.493275313,1.505551366,5.154603483,10.75849378,-10.75849378,0,0,0.669841905,0.07275162,2.339942189,0.567035298,1,0.092683508,0,0.95203878,0.990800743,0.724496596,1,9.067943724,0.210833205,0.076420105,0.312029739,0.806249252,0.530745848,0.961238037,0.922476074,0.04997789,2.249241436,9.117921614,2.460074641,9.51353311,0,0.301173193,72.47191859,-0.301173193,107.5280814,0.883982568,0,17.52771904,2.460074641,19.13778869,5,19,9% +2018-05-31 04:00:00,96.7131375,304.7417949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687962679,5.318747689,-4.904293395,4.904293395,1,0.631162745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086233015,85.05306823,-0.086233015,94.94693177,0,0,0,0,0,5,20,0% +2018-05-31 05:00:00,105.7692293,315.5017566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846021299,5.506544448,-1.468405836,1.468405836,1,0.781265877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118887879,96.8279233,0.118887879,83.1720767,0,0.629435681,0,0,0,5,21,0% +2018-05-31 06:00:00,113.1047326,328.0317206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974049983,5.725233576,-0.486061207,0.486061207,1,0.613275051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303511865,107.6686565,0.303511865,72.33134345,0,0.885261795,0,0,0,5,22,0% +2018-05-31 07:00:00,118.0750336,342.4338268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060798101,5.976597748,0.079614324,-0.079614324,1,0.516538838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.455060191,117.0688071,0.455060191,62.93119293,0,0.940124425,0,0,0,5,23,0% +2018-06-01 08:00:00,120.0713562,358.1801677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095640503,6.251423242,0.538859433,-0.538859433,1,0.438003299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563208546,124.2779818,0.563208546,55.72201819,0,0.961222938,0,0,0,6,0,0% +2018-06-01 09:00:00,118.7958997,14.07928407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073379587,0.245729863,1.019426685,-1.019426685,1,0.355821459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620589961,128.3592293,0.620589961,51.64077066,0,0.969431504,0,0,0,6,1,0% +2018-06-01 10:00:00,114.4429314,28.85238025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997405958,0.503569032,1.656715456,-1.656715456,1,0.246838661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623296265,128.5572468,0.623296265,51.44275321,0,0.969781326,0,0,0,6,2,0% +2018-06-01 11:00:00,107.5772285,41.80556617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877576837,0.729644775,2.78220125,-2.78220125,1,0.054369254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571144011,124.8300397,0.571144011,55.1699603,0,0.962456405,0,0,0,6,3,0% +2018-06-01 12:00:00,98.85412954,52.92594234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72533004,0.923731954,6.136554333,-6.136554333,1,0,#DIV/0!,0,0,0.341784343,1,0.161537991,0,0.943904607,0.98266657,0.724496596,1,0,0,0.050318736,0.312029739,0.867235389,0.591731985,0.961238037,0.922476074,0,0,0,0,0,0,-0.467686795,117.8842458,0.467686795,62.11575415,0,0.943090845,0,0,0,6,4,0% +2018-06-01 13:00:00,88.48899574,62.58311751,1.718191845,9.950286669,1.455813308,1.424867621,0,1.424867621,1.411915166,0.012952456,3.587489497,3.126995849,0.460493648,0.043898143,0.416595505,1.544424328,1.092281457,-37.5930266,37.5930266,0,0,0.847293806,0.010974536,0.352978791,1,0.832184915,0,0.026594407,0.961238037,1,0.651848226,0.927351631,1.357186562,0.030644497,0.115824807,0.229561689,0.724496596,0.448993192,0.9735838,0.934821837,0.007951014,0.341358362,1.365137576,0.372002858,0,0.524757074,-0.314261885,108.3162602,0.314261885,71.68373975,0,0.890897028,1.365137576,0.839507376,1.914578363,6,5,40% +2018-06-01 14:00:00,77.86535249,71.27500542,136.0208492,420.9944266,47.52369374,47.11606165,0,47.11606165,46.09067903,1.025382617,91.98920352,57.57635912,34.41284439,1.43301471,32.97982968,1.359006774,1.243983519,-4.649708189,4.649708189,0.67469938,0.67469938,0.349385363,0.808365159,25.99980225,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.30411383,1.038214279,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585657806,24.99199887,44.88977164,26.03021315,0,57.57635912,-0.136762759,97.86056405,0.136762759,82.13943595,0,0.684403397,44.88977164,65.4356689,87.71610822,6,6,95% +2018-06-01 15:00:00,66.44739325,79.546464,342.5612427,666.1652492,76.36766495,120.8186029,44.17133346,76.64726943,74.06489809,2.582371346,85.36070621,0,85.36070621,2.302766865,83.05793934,1.159725792,1.388347705,-2.262310421,2.262310421,0.917031557,0.917031557,0.222931422,2.415880261,77.70301374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19399724,1.668346755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750297025,74.69109239,72.94429426,76.35943914,44.17133346,0,0.066306871,86.19810674,-0.066306871,93.80189326,0,0,72.94429426,76.35943914,122.92002,6,7,69% +2018-06-01 16:00:00,54.69694178,88.05446574,546.954795,782.8720826,94.53209018,313.1832966,217.3785214,95.80477516,91.68159888,4.123176279,135.4660138,0,135.4660138,2.850491305,132.6155225,0.954641725,1.536840348,-1.342657832,1.342657832,0.759761702,0.759761702,0.172833461,3.303830721,106.2625528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12784012,2.065171247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393614111,102.1436077,90.52145423,104.2087789,217.3785214,0,0.277667995,73.87892746,-0.277667995,106.1210725,0.869928833,0,279.6252976,104.2087789,347.8278592,6,8,24% +2018-06-01 17:00:00,42.88679707,97.81606249,726.9337564,845.4475378,107.4745644,517.7653572,408.0516137,109.7137435,104.2338098,5.479933714,179.49426,0,179.49426,3.240754657,176.2535054,0.748515815,1.707212352,-0.821502118,0.821502118,0.670638826,0.670638826,0.147846435,3.941901,126.7850864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1935027,2.347915717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855893856,121.8706475,103.0493965,124.2185632,408.0516137,0,0.482645694,61.14166049,-0.482645694,118.8583395,0.946404338,0,489.2312141,124.2185632,570.5297793,6,9,17% +2018-06-01 18:00:00,31.41967771,110.9331836,868.033614,880.5491316,116.5978069,707.1359912,587.5104343,119.6255569,113.0819529,6.543604041,213.9806535,0,213.9806535,3.515854079,210.4647995,0.548376826,1.936149304,-0.461499593,0.461499593,0.609074768,0.609074768,0.134324069,4.329153132,139.2404461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6986744,2.547224312,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136456707,133.843213,111.8351311,136.3904374,587.5104343,0,0.667209146,48.14797093,-0.667209146,131.8520291,0.975060979,0,684.6936305,136.3904374,773.9584439,6,10,13% +2018-06-01 19:00:00,21.30255867,132.8365727,959.8281511,899.0345873,122.2200977,861.866267,736.0959662,125.7703008,118.5347108,7.235590036,236.4068346,0,236.4068346,3.685386889,232.7214477,0.371799788,2.31843556,-0.178017138,0.178017138,0.560596413,0.560596413,0.127335396,4.461088876,143.4839531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9400727,2.670050255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.232043704,137.9222334,117.1721164,140.5922837,736.0959662,0,0.818762678,35.03887581,-0.818762678,144.9611242,0.988932243,0,845.1211515,140.5922837,937.1359894,6,11,11% +2018-06-01 20:00:00,15.78906073,174.1417608,995.7326677,905.5311722,124.3672215,967.5282682,839.4049239,128.1233444,120.6170909,7.506253448,245.1770441,0,245.1770441,3.750130594,241.4269135,0.275571096,3.039347091,0.069085735,-0.069085735,0.518339333,0.518339333,0.124900212,4.342359007,139.6651924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9417357,2.71695685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146024319,134.2514954,119.08776,136.9684522,839.4049239,0,0.926975183,22.03189421,-0.926975183,157.9681058,0.996061123,0,955.1863714,136.9684522,1044.829484,6,12,9% +2018-06-01 21:00:00,19.42528543,219.7651304,973.205465,901.499263,123.0231652,1014.154712,887.504715,126.6499967,119.3135628,7.336433879,239.6745347,0,239.6745347,3.709602337,235.9649324,0.339035189,3.835625107,0.304679972,-0.304679972,0.478050346,0.478050346,0.12641027,3.991241166,128.3720357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6887349,2.687594265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891640638,123.3960836,117.5803755,126.0836778,887.504715,0,0.984476362,10.10875813,-0.984476362,169.8912419,0.999211579,0,1004.385363,126.0836778,1086.904609,6,13,8% +2018-06-01 22:00:00,28.90638386,245.1768192,893.853952,886.0453119,118.2004278,996.2177077,874.8432103,121.3744974,114.6362488,6.738248655,220.2894183,0,220.2894183,3.564179011,216.7252393,0.504511573,4.279142744,0.550219746,-0.550219746,0.436060571,0.436060571,0.132236846,3.440779828,110.6673069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1927227,2.582235561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492833273,106.3776248,112.685556,108.9598604,874.8432103,0,0.987357191,9.120487272,-0.987357191,170.8795127,0.999359765,0,986.9686612,108.9598604,1058.280711,6,14,7% +2018-06-01 23:00:00,40.190679,259.6327096,763.3655563,855.4358457,109.8972388,912.5445345,800.2065309,112.3380036,106.5834316,5.754572011,188.4006243,0,188.4006243,3.313807227,185.0868171,0.701459677,4.531445629,0.832875772,-0.832875772,0.387723544,0.387723544,0.143964105,2.738424591,88.07714813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.4520485,2.400842055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983979294,84.66310496,104.4360278,87.06394701,800.2065309,0,0.935437222,20.70110366,-0.935437222,159.2988963,0.996549059,0,901.881093,87.06394701,958.862705,6,15,6% +2018-06-01 00:00:00,51.96274564,269.9158405,591.3065593,800.7521709,97.90411648,765.861097,666.4516322,99.40946475,94.95194614,4.457518613,146.3212915,0,146.3212915,2.95217034,143.3691212,0.906921,4.71092012,1.201781939,-1.201781939,0.324636874,0.324636874,0.165572519,1.945521656,62.57466413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.2714223,2.138837361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409523817,60.14914731,92.68094612,62.28798467,666.4516322,0,0.832282017,33.66612502,-0.832282017,146.333875,0.98992421,0,752.4175514,62.28798467,793.1837916,6,16,5% +2018-06-01 01:00:00,63.74562117,278.6035213,391.1253236,700.6084253,81.20611951,561.6091381,479.9032148,81.70592329,78.75745539,2.948467901,97.28152712,0,97.28152712,2.448664122,94.832863,1.112570973,4.862548755,1.779970743,-1.779970743,0.225760765,0.225760765,0.207621738,1.139611329,36.65381772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.70466181,1.774048821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825644528,35.23304379,76.53030633,37.00709261,479.9032148,0,0.68498065,46.76591457,-0.68498065,133.2340854,0.977005237,0,545.3982606,37.00709261,569.6186626,6,17,4% +2018-06-01 02:00:00,75.25589793,286.8680069,182.3096547,496.9659035,55.83063915,305.8765381,250.3550715,55.52146657,54.14713939,1.374327185,45.88658624,0,45.88658624,1.683499763,44.20308648,1.313463201,5.006791238,3.039958992,-3.039958992,0.010290084,0.010290084,0.306240716,0.430686045,13.85234368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.04828996,1.219689848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312030574,13.31539965,52.36032054,14.53508949,250.3550715,0,0.503767099,59.7504562,-0.503767099,120.2495438,0.950747786,0,290.3848504,14.53508949,299.8977758,6,18,3% +2018-06-01 03:00:00,86.15341965,295.4172153,15.361199,77.31696533,10.17438485,33.37763303,23.39424422,9.983388813,9.867589606,0.115799207,4.031295785,0,4.031295785,0.306795243,3.724500542,1.503660835,5.156003075,10.43984571,-10.43984571,0,0,0.662343145,0.076698811,2.466897402,0.55657348,1,0.095495506,0,0.951727967,0.99048993,0.724496596,1,9.560865938,0.222272109,0.07530668,0.312029739,0.808739994,0.53323659,0.961238037,0.922476074,0.052659446,2.371275615,9.613525384,2.593547724,10.37362829,0,0.30257582,72.38762126,-0.30257582,107.6123787,0.884752162,0,18.79161545,2.593547724,20.48904056,6,19,9% +2018-06-01 04:00:00,96.59316006,304.810022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685868678,5.319938477,-4.985936652,4.985936652,1,0.617200926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087904878,84.95691234,-0.087904878,95.04308766,0.481203351,0,0,0,0,6,20,0% +2018-06-01 05:00:00,105.6413704,315.5544408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84378974,5.507463962,-1.478045738,1.478045738,1,0.782914397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117059157,96.72240838,0.117059157,83.27759162,0,0.622865539,0,0,0,6,21,0% +2018-06-01 06:00:00,112.970294,328.0620641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971703587,5.72576317,-0.488016139,0.488016139,1,0.613609364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301580846,107.5525772,0.301580846,72.44742282,0,0.884206978,0,0,0,6,22,0% +2018-06-01 07:00:00,117.9379692,342.4332147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058405876,5.976587064,0.080054916,-0.080054916,1,0.516463493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453088573,116.9420169,0.453088573,63.05798305,0,0.939646301,0,0,0,6,23,0% +2018-06-02 08:00:00,119.9383808,358.1429609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093319644,6.25077386,0.540683696,-0.540683696,1,0.437691332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561260903,124.1430425,0.561260903,55.85695748,0,0.960914871,0,0,0,6,0,0% +2018-06-02 09:00:00,118.6744001,14.00813321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071259019,0.244488047,1.022686196,-1.022686196,1,0.35526405,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618729285,128.2233994,0.618729285,51.77660062,0,0.969189214,0,0,0,6,1,0% +2018-06-02 10:00:00,114.3378008,28.75706238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995571083,0.501905422,1.662395443,-1.662395443,1,0.245867326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621579627,128.4315792,0.621579627,51.56842081,0,0.969559783,0,0,0,6,2,0% +2018-06-02 11:00:00,107.4896363,41.69632541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876048064,0.727738164,2.79418319,-2.79418319,1,0.052320222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569618633,124.7236362,0.569618633,55.27636381,0,0.962221973,0,0,0,6,3,0% +2018-06-02 12:00:00,98.78258841,52.80906541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724081411,0.921692066,6.183453441,-6.183453441,1,0,#DIV/0!,0,0,0.345240839,1,0.160333755,0,0.944056147,0.98281811,0.724496596,1,0,0,0.050755842,0.312029739,0.866169525,0.590666121,0.961238037,0.922476074,0,0,0,0,0,0,-0.466386806,117.8000107,0.466386806,62.19998929,0,0.94279285,0,0,0,6,4,0% +2018-06-02 13:00:00,88.43607272,62.46057503,1.861529544,10.72062437,1.568939145,1.535662837,0,1.535662837,1.521629841,0.014032996,3.857330053,3.358671359,0.498658694,0.047309304,0.45134939,1.543500647,1.090142687,-36.3100896,36.3100896,0,0,0.842822586,0.011827326,0.38040746,1,0.825770153,0,0.027533595,0.961238037,1,0.649384007,0.924887411,1.462648481,0.032992795,0.115824807,0.226769056,0.724496596,0.448993192,0.973976634,0.935214671,0.008568857,0.367938899,1.471217339,0.400931695,0,0.585180799,-0.313290648,108.2576526,0.313290648,71.74234742,0,0.89040379,1.471217339,0.921978896,2.074634086,6,5,41% +2018-06-02 14:00:00,77.81786401,71.14546826,136.848674,422.5222679,47.68800741,47.28166115,0,47.28166115,46.25003804,1.03162311,92.06365266,57.44513789,34.61851477,1.437969374,33.1805454,1.358177944,1.241722669,-4.631249191,4.631249191,0.677856054,0.677856054,0.348472557,0.815100253,26.21642602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.45729577,1.041803916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.590537358,25.20022588,45.04783313,26.24202979,0,57.44513789,-0.135957658,97.81400023,0.135957658,82.18599977,0,0.682238442,45.04783313,65.43331118,87.87262663,6,6,95% +2018-06-02 15:00:00,66.40690278,79.40586483,343.2937446,666.7266708,76.44397548,121.3202962,44.59349535,76.72680083,74.13890757,2.587893254,85.54061079,0,85.54061079,2.305067909,83.23554288,1.1590191,1.385893787,-2.258877941,2.258877941,0.916444568,0.916444568,0.222678032,2.419810952,77.82943827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26513797,1.670013853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753144798,74.81261645,73.01828277,76.4826303,44.59349535,0,0.066884223,86.16495333,-0.066884223,93.83504667,0,0,73.01828277,76.4826303,123.0746346,6,7,69% +2018-06-02 16:00:00,54.65995677,87.89553087,547.5643215,783.1311586,94.57943312,313.6013361,217.7460507,95.8552854,91.72751425,4.127771148,135.6152281,0,135.6152281,2.85191887,132.7633092,0.953996215,1.534066411,-1.342029076,1.342029076,0.759654178,0.759654178,0.172727531,3.307040294,106.3657837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.17197573,2.066205513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395939436,102.2428372,90.56791516,104.3090427,217.7460507,0,0.278045444,73.85641472,-0.278045444,106.1435853,0.870173281,0,280.0447105,104.3090427,348.3128927,6,8,24% +2018-06-02 17:00:00,42.84824305,97.62648265,727.4679707,845.5993173,107.5104767,518.064649,408.312049,109.7526,104.2686391,5.483960847,179.6248694,0,179.6248694,3.241837543,176.3830318,0.74784292,1.703903559,-0.821821907,0.821821907,0.670693513,0.670693513,0.147787231,3.944946498,126.88304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.226982,2.348700264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858100309,121.9648043,103.0850823,124.3135046,408.312049,0,0.482867051,61.12717831,-0.482867051,118.8728217,0.946451829,0,489.5327679,124.3135046,570.8934703,6,9,17% +2018-06-02 18:00:00,31.37063952,110.6930327,868.5558408,880.6627793,116.6303987,707.353031,587.6919283,119.6611027,113.1135619,6.547540808,214.1082562,0,214.1082562,3.516836842,210.5914194,0.547520948,1.93195788,-0.462282439,0.462282439,0.609208643,0.609208643,0.134280829,4.332405809,139.3450634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7290582,2.54793632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.138813261,133.9437752,111.8678714,136.4917115,587.6919283,0,0.667329132,48.13874088,-0.667329132,131.8612591,0.975074453,0,684.9112572,136.4917115,774.2423525,6,10,13% +2018-06-02 19:00:00,21.22489248,132.5350331,960.4049104,899.1419638,122.2548001,862.0642992,736.2559945,125.8083046,118.5683668,7.239937891,236.547723,0,236.547723,3.686433294,232.8612897,0.370444257,2.313172702,-0.179120642,0.179120642,0.560785123,0.560785123,0.127295059,4.46483355,143.6043947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9724241,2.670808372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234756708,138.0380065,117.2071808,140.7088148,736.2559945,0,0.818842879,35.03087128,-0.818842879,144.9691287,0.988938225,0,845.3188769,140.7088148,937.409982,6,11,11% +2018-06-02 20:00:00,15.66400212,173.9653496,996.4271274,905.6531683,124.4084962,967.7813097,839.6127001,128.1686096,120.657121,7.511488579,245.3466685,0,245.3466685,3.751375179,241.5952933,0.273388411,3.036268135,0.067672646,-0.067672646,0.518580986,0.518580986,0.124854586,4.346810986,139.8083834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9802141,2.717858547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149249762,134.389136,119.1294639,137.1069945,839.6127001,0,0.927079736,22.01591939,-0.927079736,157.9840806,0.996067206,0,955.4401406,137.1069945,1045.173926,6,12,9% +2018-06-02 21:00:00,19.29761358,219.8842959,974.072356,901.6571406,123.075077,1014.539362,887.8324836,126.7068782,119.3639094,7.34296887,239.8862878,0,239.8862878,3.711167671,236.1751201,0.336806895,3.837704937,0.302883124,-0.302883124,0.478357625,0.478357625,0.126351062,3.996540728,128.5424878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7371299,2.688728344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.895480153,123.5599287,117.6326101,126.248657,887.8324836,0,0.984667501,10.04617105,-0.984667501,169.953829,0.999221438,0,1004.773861,126.248657,1087.401082,6,13,8% +2018-06-02 22:00:00,28.79683982,245.334583,894.9351112,886.2701039,118.2671506,996.8083069,875.3609483,121.4473586,114.7009597,6.746398891,220.5535699,0,220.5535699,3.56619095,216.9873789,0.502599669,4.281896242,0.547861544,-0.547861544,0.436463848,0.436463848,0.132151649,3.446978599,110.8666807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2549253,2.583693204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497324261,106.5692705,112.7522496,109.1529637,875.3609483,0,0.987690936,8.999049404,-0.987690936,171.0009506,0.999376877,0,987.5677401,109.1529637,1059.006172,6,14,7% +2018-06-02 23:00:00,40.09023463,259.7682924,764.6859094,855.7845235,109.9840716,913.4118161,800.9796446,112.4321715,106.6676461,5.76452539,188.7233775,0,188.7233775,3.316425558,185.406952,0.699706592,4.533811994,0.829582662,-0.829582662,0.388286699,0.388286699,0.143829081,2.745463942,88.30355783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5329987,2.402739027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.98907928,84.88073858,104.522078,87.2834776,800.9796446,0,0.935959488,20.61628612,-0.935959488,159.3837139,0.996578884,0,902.7614786,87.2834776,959.8867691,6,15,6% +2018-06-02 00:00:00,51.8647077,270.029819,592.8693073,801.3481843,98.02038877,767.0773729,667.5433612,99.53401166,95.06471239,4.469299267,146.7037039,0,146.7037039,2.955676378,143.7480276,0.905209915,4.71290942,1.196688454,-1.196688454,0.325507911,0.325507911,0.165332203,1.953187353,62.82121932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37981751,2.141377474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.415077589,60.38614553,92.7948951,62.52752301,667.5433612,0,0.833025362,33.58921821,-0.833025362,146.4107818,0.989977818,0,753.6480152,62.52752301,794.5710284,6,16,5% +2018-06-02 01:00:00,63.64612523,278.7012894,392.9000557,701.7686482,81.37516027,563.2696356,481.38639,81.88324553,78.92139895,2.961846581,97.71692867,0,97.71692867,2.453761325,95.26316734,1.110834441,4.864255129,1.77055522,-1.77055522,0.227370915,0.227370915,0.207114148,1.147399608,36.90431556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.86225059,1.777741727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83128711,35.47383184,76.6935377,37.25157357,481.38639,0,0.685961665,46.68871638,-0.685961665,133.3112836,0.977109629,0,547.0608148,37.25157357,571.4412247,6,17,4% +2018-06-02 02:00:00,75.15264821,286.9532751,184.1673536,499.6613297,56.13178775,308.1479756,252.320437,55.82753855,54.43920724,1.388331304,46.34608761,0,46.34608761,1.692580505,44.6535071,1.311661153,5.00827945,3.014480979,-3.014480979,0.014647081,0.014647081,0.304786851,0.437282287,14.06450149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3290367,1.226268814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316809528,13.5193338,52.64584623,14.74560262,252.320437,0,0.504982919,59.66978147,-0.504982919,120.3302185,0.95098675,0,292.5992386,14.74560262,302.2499406,6,18,3% +2018-06-02 03:00:00,86.04783779,295.4915377,16.31759022,81.64169706,10.69055411,35.30684264,24.81563929,10.49120334,10.36819446,0.123008888,4.278748318,0,4.278748318,0.32235965,3.956388668,1.501818084,5.157300244,10.14671303,-10.14671303,0,0,0.655155201,0.080589913,2.592048614,0.546492754,1,0.098236848,0,0.951423193,0.990185156,0.724496596,1,10.04680141,0.233548469,0.074225396,0.312029739,0.811168309,0.535664905,0.961238037,0.922476074,0.055302855,2.491575721,10.10210426,2.72512419,11.25407223,0,0.303957906,72.30451996,-0.303957906,107.69548,0.885503539,0,20.06762505,2.72512419,21.85116433,6,19,9% +2018-06-02 04:00:00,96.47675133,304.8726455,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683836962,5.321031464,-5.068468172,5.068468172,1,0.603087205,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089543564,84.8626508,-0.089543564,95.1373492,0.491612575,0,0,0,0,6,20,0% +2018-06-02 05:00:00,105.5177959,315.6018713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841632959,5.508291779,-1.487704702,1.487704702,1,0.784566177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115273324,96.61939018,0.115273324,83.38060982,0,0.616248301,0,0,0,6,21,0% +2018-06-02 06:00:00,112.8409408,328.0878016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969445948,5.726212374,-0.490055437,0.490055437,1,0.613958105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299703013,107.4397663,0.299703013,72.56023374,0,0.883168177,0,0,0,6,22,0% +2018-06-02 07:00:00,117.8067521,342.4291572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056115705,5.976516248,0.080365624,-0.080365624,1,0.516410358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451180317,116.8194371,0.451180317,63.18056291,0,0.939179563,0,0,0,6,23,0% +2018-06-03 08:00:00,119.8117891,358.1039885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091110202,6.250093664,0.542328378,-0.542328378,1,0.437410075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559385976,124.0133445,0.559385976,55.98665551,0,0.960616279,0,0,0,6,0,0% +2018-06-03 09:00:00,118.5594599,13.93705601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069252934,0.243247515,1.025687368,-1.025687368,1,0.354750819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616949214,128.0936906,0.616949214,51.90630941,0,0.968956052,0,0,0,6,1,0% +2018-06-03 10:00:00,114.2390735,28.66336184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993847967,0.500270039,1.667656477,-1.667656477,1,0.244967636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619949477,128.3124451,0.619949477,51.68755486,0,0.969348267,0,0,0,6,2,0% +2018-06-03 11:00:00,107.4081033,41.58978124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874625045,0.725878618,2.805300854,-2.805300854,1,0.05041899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568183214,124.6236327,0.568183214,55.3763673,0,0.962000216,0,0,0,6,3,0% +2018-06-03 12:00:00,98.71671165,52.69560084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722931645,0.919711736,6.227092646,-6.227092646,1,0,#DIV/0!,0,0,0.348424631,1,0.159229103,0,0.944194868,0.982956831,0.724496596,1,0,0,0.051157364,0.312029739,0.865191762,0.589688358,0.961238037,0.922476074,0,0,0,0,0,0,-0.465177593,117.7217162,0.465177593,62.2782838,0,0.942514169,0,0,0,6,4,0% +2018-06-03 13:00:00,88.38786703,62.34197046,1.998396158,11.4546666,1.676138405,1.640661402,0,1.640661402,1.625596648,0.015064754,4.113500755,3.578424712,0.535076042,0.050541757,0.484534285,1.542659298,1.088072647,-35.21407849,35.21407849,0,0,0.838741807,0.012635439,0.406399162,1,0.819888482,0,0.028390103,0.961238037,1,0.647142769,0.922646174,1.56258533,0.035215682,0.115824807,0.224229441,0.724496596,0.448993192,0.974332413,0.93557045,0.009154333,0.39313061,1.571739663,0.428346292,0,0.644515507,-0.312398853,108.2038562,0.312398853,71.79614385,0,0.889948196,1.571739663,1.001931705,2.227483925,6,5,42% +2018-06-03 14:00:00,77.77535796,71.02035156,137.5902117,423.8849416,47.83463179,47.42945429,0,47.42945429,46.39224115,1.037213134,92.12742556,57.32469513,34.80273043,1.44239064,33.3603398,1.357436073,1.239538971,-4.614839827,4.614839827,0.680662221,0.680662221,0.347660137,0.821144251,26.41082179,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.59398681,1.045007108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.594916215,25.38708649,45.18890303,26.43209359,0,57.32469513,-0.135236451,97.77229292,0.135236451,82.22770708,0,0.680277195,45.18890303,65.4287764,88.0107286,6,6,95% +2018-06-03 15:00:00,66.37123253,79.27023994,343.9389423,667.2200293,76.51109892,121.7567537,44.95998971,76.79676402,74.20400699,2.592757028,85.69907048,0,85.69907048,2.307091928,83.39197856,1.158396536,1.383526686,-2.255927198,2.255927198,0.915939961,0.915939961,0.22245547,2.423293331,77.94144354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32771401,1.671480248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755667769,74.92028018,73.08338178,76.59176042,44.95998971,0,0.067384053,86.13625043,-0.067384053,93.86374957,0,0,73.08338178,76.59176042,123.2111571,6,7,69% +2018-06-03 16:00:00,54.62775102,87.74229333,548.0948766,783.356349,94.62061821,313.949479,218.0502508,95.89922815,91.76745746,4.131770696,135.7451092,0,135.7451092,2.853160752,132.8919485,0.953434118,1.531391912,-1.341584425,1.341584425,0.759578138,0.759578138,0.172635473,3.309893248,106.4575445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21037065,2.067105252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.398006391,102.3310411,90.60837704,104.3981464,218.0502508,0,0.278353844,73.83801849,-0.278353844,106.1619815,0.870372518,0,280.393323,104.3981464,348.7198218,6,8,24% +2018-06-03 17:00:00,42.81463214,97.44355926,727.9333836,845.7314155,107.541754,518.2993287,408.512886,109.7864427,104.2989734,5.487469326,179.7386572,0,179.7386572,3.242780671,176.4958766,0.747256299,1.700710944,-0.822222924,0.822222924,0.670762091,0.670762091,0.147735708,3.94769798,126.9715372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2561404,2.349383557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860093748,122.0498711,103.1162341,124.3992547,408.512886,0,0.483029102,61.11657497,-0.483029102,118.883425,0.946486568,0,489.7681937,124.3992547,571.1850179,6,9,17% +2018-06-03 18:00:00,31.32705133,110.4605119,869.0194182,880.7635757,116.6593239,707.5143633,587.821713,119.6926503,113.1416149,6.551035449,214.2215281,0,214.2215281,3.517709044,210.7038191,0.546760191,1.927899626,-0.463098272,0.463098272,0.609348158,0.609348158,0.134242482,4.335411265,139.4417292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7560238,2.548568227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140990703,134.036694,111.8970145,136.5852622,587.821713,0,0.667400116,48.13327972,-0.667400116,131.8667203,0.975082422,0,685.0716343,136.5852622,774.4639567,6,10,13% +2018-06-03 19:00:00,21.15365852,132.2396733,960.9321409,899.2400309,122.2865162,862.2165166,736.3734777,125.8430389,118.5991265,7.243912378,236.6765125,0,236.6765125,3.687389651,232.9891229,0.36920099,2.308017701,-0.180228571,0.180228571,0.56097459,0.56097459,0.127258222,4.468365218,143.7179853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0019915,2.67150125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.237315389,138.1471941,117.2393069,140.8186953,736.3734777,0,0.818884227,35.02674392,-0.818884227,144.9732561,0.988941308,0,845.469457,140.8186953,937.6324767,6,11,11% +2018-06-03 20:00:00,15.54564689,173.7831705,997.0794093,905.7676321,124.4472556,967.9978571,839.7867397,128.2111175,120.6947117,7.516405756,245.5059905,0,245.5059905,3.752543919,241.7534466,0.271322723,3.03308851,0.066276525,-0.066276525,0.518819736,0.518819736,0.12481178,4.35107217,139.9454377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0163477,2.718705295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152336976,134.5208778,119.1686847,137.2395831,839.7867397,0,0.927154725,22.00445494,-0.927154725,157.9955451,0.996071569,0,955.6563798,137.2395831,1045.476942,6,12,9% +2018-06-03 21:00:00,19.17464809,219.9906152,974.9021025,901.8080461,123.12475,1014.895117,888.1338087,126.7613084,119.4120845,7.349223849,240.0889673,0,240.0889673,3.712665496,236.3763018,0.334660742,3.839560559,0.301123873,-0.301123873,0.478658475,0.478658475,0.126294476,4.00165995,128.7071396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7834377,2.689813513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.899189011,123.7181982,117.6826267,126.4080117,888.1338087,0,0.984836865,9.99038995,-0.984836865,170.0096101,0.99923017,0,1005.132724,126.4080117,1087.864239,6,13,8% +2018-06-03 22:00:00,28.69045749,245.4811498,895.9814939,886.4872658,118.3316987,997.3749405,875.8570922,121.5178483,114.7635614,6.754286965,220.8092238,0,220.8092238,3.568137312,217.2410865,0.500742947,4.284454315,0.545566359,-0.545566359,0.436856347,0.436856347,0.132069356,3.452996603,111.0602403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3151004,2.585103336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.501684284,106.7553274,112.8167847,109.3404307,875.8570922,0,0.988008656,8.881912623,-0.988008656,171.1180874,0.999393156,0,988.1423682,109.3404307,1059.703493,6,14,7% +2018-06-03 23:00:00,39.99227004,259.8948058,765.9710674,856.1230466,110.0685274,914.2565023,801.7327337,112.5237686,106.7495552,5.774213453,189.0375256,0,189.0375256,3.318972211,185.7185534,0.697996788,4.53602007,0.826391489,-0.826391489,0.388832422,0.388832422,0.143698022,2.752313454,88.52386168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6117329,2.404584068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.994041728,85.09250302,104.6057746,87.49708709,801.7327337,0,0.936469047,20.53320938,-0.936469047,159.4667906,0.996607952,0,903.6189926,87.49708709,960.8840862,6,15,6% +2018-06-03 00:00:00,51.76894811,270.1361496,594.3938391,801.9275175,98.13366077,768.2677671,668.6124064,99.65536065,95.17456882,4.480791832,147.0767599,0,147.0767599,2.959091947,144.1176679,0.903538595,4.714765239,1.191770542,-1.191770542,0.326348924,0.326348924,0.165098718,1.96065046,63.0612585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48541569,2.143852042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.420484584,60.61688032,92.90590027,62.76073236,668.6124064,0,0.833756657,33.51340603,-0.833756657,146.486594,0.990030464,0,754.8525511,62.76073236,795.9281953,6,16,5% +2018-06-03 01:00:00,63.54898244,278.7922938,394.6317688,702.8946036,81.53962162,564.8942095,482.8384073,82.05580215,79.08090118,2.974900967,98.14176168,0,98.14176168,2.458720441,95.68304124,1.10913898,4.865843456,1.761498844,-1.761498844,0.228919646,0.228919646,0.206622041,1.154981034,37.14816026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01557021,1.78133459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836779827,35.70822464,76.85235003,37.48955923,482.8384073,0,0.686928602,46.61252985,-0.686928602,133.3874702,0.977212232,0,548.6879475,37.48955923,573.2241143,6,17,4% +2018-06-03 02:00:00,75.05201048,287.0323257,185.9794786,502.2676521,56.42349787,310.3620628,254.2379497,56.12411309,54.72212122,1.401991868,46.79425442,0,46.79425442,1.701376641,45.09287778,1.309904693,5.009659143,2.990135247,-2.990135247,0.018810447,0.018810447,0.303385612,0.44371534,14.2714106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.60098438,1.232641585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321470253,13.7182227,52.92245463,14.95086429,254.2379497,0,0.506180218,59.59027075,-0.506180218,120.4097293,0.951220952,0,294.7589192,14.95086429,304.5439608,6,18,3% +2018-06-03 03:00:00,85.94507925,295.5599922,17.2733155,85.91773344,11.1978445,37.22265212,26.2322504,10.99040172,10.86018817,0.130213549,4.525771654,0,4.525771654,0.337656327,4.188115326,1.500024609,5.158495001,9.87672392,-9.87672392,0,0,0.648274183,0.084414082,2.715047043,0.536793763,1,0.100904289,0,0.951124958,0.989886921,0.724496596,1,10.52438834,0.24463086,0.073177171,0.312029739,0.813531289,0.538027884,0.961238037,0.922476074,0.057901003,2.60980649,10.58228934,2.854437349,12.150942,0,0.305318231,72.22268953,-0.305318231,107.7773105,0.886236442,0,21.35089694,2.854437349,23.2190691,6,19,9% +2018-06-03 04:00:00,96.36398447,304.9296819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681868809,5.322026936,-5.151739548,5.151739548,1,0.588846961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091147891,84.77035217,-0.091147891,95.22964783,0.501440953,0,0,0,0,6,20,0% +2018-06-03 05:00:00,105.3985782,315.6440816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839552217,5.509028489,-1.497367158,1.497367158,1,0.786218555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113531712,96.51894371,0.113531712,83.48105629,0,0.609594417,0,0,0,6,21,0% +2018-06-03 06:00:00,112.7167397,328.1089838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96727823,5.726582073,-0.492176231,0.492176231,1,0.614320782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297879774,107.3303018,0.297879774,72.66969815,0,0.882147046,0,0,0,6,22,0% +2018-06-03 07:00:00,117.6814385,342.4217164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053928571,5.976386382,0.080546049,-0.080546049,1,0.516379504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449336823,116.7011432,0.449336823,63.29885685,0,0.9387249,0,0,0,6,23,0% +2018-06-04 08:00:00,119.6916242,358.0633142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08901293,6.249383764,0.543791351,-0.543791351,1,0.437159892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557585076,123.8889536,0.557585076,56.1110464,0,0.960327586,0,0,0,6,0,0% +2018-06-04 09:00:00,118.4511094,13.86611261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067361862,0.242009319,1.02842615,-1.02842615,1,0.35428246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615250896,127.9701531,0.615250896,52.02984692,0,0.968732341,0,0,0,6,1,0% +2018-06-04 10:00:00,114.1467681,28.57133718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992236934,0.498663906,1.672490592,-1.672490592,1,0.244140954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618406732,128.1998788,0.618406732,51.80012124,0,0.969147064,0,0,0,6,2,0% +2018-06-04 11:00:00,107.3326365,41.48599442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873307901,0.724067196,2.815532718,-2.815532718,1,0.048669238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566838392,124.5300502,0.566838392,55.46994984,0,0.961791437,0,0,0,6,3,0% +2018-06-04 12:00:00,98.65649454,52.58561384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721880658,0.917792101,6.267321414,-6.267321414,1,0,#DIV/0!,0,0,0.351332303,1,0.158224068,0,0.944320841,0.983082804,0.724496596,1,0,0,0.051523149,0.312029739,0.864302139,0.588798734,0.961238037,0.922476074,0,0,0,0,0,0,-0.464059488,117.6493707,0.464059488,62.35062927,0,0.942255193,0,0,0,6,4,0% +2018-06-04 13:00:00,88.34439658,62.22737493,2.127037505,12.14328218,1.77619732,1.738672924,0,1.738672924,1.722638417,0.016034507,4.352973428,3.783689656,0.569283772,0.053558903,0.515724869,1.541900596,1.086072577,-34.27969326,34.27969326,0,0,0.835056888,0.013389726,0.430659604,1,0.814551288,0,0.029163519,0.961238037,1,0.645123921,0.920627325,1.65586557,0.037288547,0.115824807,0.221942084,0.724496596,0.448993192,0.974651657,0.935889694,0.009700811,0.416647362,1.665566381,0.45393591,0,0.701680372,-0.311587065,108.1549005,0.311587065,71.84509954,0,0.889531208,1.665566381,1.078102498,2.371162904,6,5,42% +2018-06-04 14:00:00,77.73780733,70.89973473,138.2457404,425.0849377,47.96381053,47.55967946,0,47.55967946,46.51752468,1.042154786,92.18151481,57.21594864,34.96556617,1.446285855,33.51928032,1.356780691,1.23743381,-4.60043119,4.60043119,0.683126243,0.683126243,0.346946028,0.826495792,26.58294573,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7144141,1.047829179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.598793388,25.55253857,45.31320749,26.60036775,0,57.21594864,-0.134598861,97.73542464,0.134598861,82.26457536,0,0.678525833,45.31320749,65.42286694,88.13116544,6,6,94% +2018-06-04 15:00:00,66.34034384,79.13968176,344.4975735,667.6463269,76.56914706,122.1283108,45.27103784,76.85727299,74.26030477,2.596968226,85.83626745,0,85.83626745,2.308842294,83.52742516,1.157857427,1.381248016,-2.25345123,2.25345123,0.915516546,0.915516546,0.222263241,2.426332123,78.03918153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38182957,1.672748382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757869363,75.01422965,73.13969893,76.68697804,45.27103784,0,0.067806915,86.11196666,-0.067806915,93.88803334,0,0,73.13969893,76.68697804,123.3297923,6,7,69% +2018-06-04 16:00:00,54.60027502,87.5948685,548.5473613,783.5481686,94.65572535,314.2284789,218.2917912,95.93668771,91.80150599,4.135181717,135.855878,0,135.855878,2.854219362,133.0016586,0.952954572,1.528818863,-1.341321304,1.341321304,0.759533142,0.759533142,0.17255707,3.312393853,106.5379726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2430994,2.067872211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39981807,102.4083516,90.64291747,104.4762238,218.2917912,0,0.278593965,73.82369393,-0.278593965,106.1763061,0.87052734,0,280.6718898,104.4762238,349.0494887,6,8,24% +2018-06-04 17:00:00,42.78590482,97.2674535,728.330945,845.844157,107.5684643,518.4703697,408.6550251,109.8153446,104.3248783,5.490466312,179.835856,0,179.835856,3.243586085,176.5922699,0.746754913,1.697637319,-0.822703617,0.822703617,0.670844294,0.670844294,0.14769174,3.950159214,127.0506989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2810412,2.349967077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861876904,122.1259644,103.1429181,124.4759315,408.6550251,0,0.483132764,61.10979157,-0.483132764,118.8902084,0.946508778,0,489.9384866,124.4759315,571.4054942,6,9,17% +2018-06-04 18:00:00,31.28884835,110.2358883,869.4252492,880.8517485,116.6846412,707.6210559,587.9007924,119.7202635,113.1661687,6.554094776,214.32069,0,214.32069,3.518472452,210.8022175,0.546093423,1.923979205,-0.463945874,0.463945874,0.609493107,0.609493107,0.13420894,4.338172524,139.5305407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7796259,2.549121314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142991226,134.1220631,111.9226171,136.6711844,587.9007924,0,0.667423086,48.13151244,-0.667423086,131.8684876,0.975085001,0,685.1758617,136.6711844,774.6244185,6,10,13% +2018-06-04 19:00:00,21.08881429,131.9510031,961.4106118,899.3289553,122.3152939,862.3239711,736.4494153,125.8745558,118.6270365,7.247519293,236.7933911,0,236.7933911,3.688257407,233.1051337,0.368069245,2.302979455,-0.181339824,0.181339824,0.561164626,0.561164626,0.127224822,4.471685908,143.8247901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0288197,2.672129936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239721218,138.2498589,117.2685409,140.9219888,736.4494153,0,0.818887695,35.02639773,-0.818887695,144.9736023,0.988941566,0,845.5739792,140.9219888,937.8046025,6,11,11% +2018-06-04 20:00:00,15.43404231,173.5955581,997.6900714,905.8746845,124.4835346,968.178844,839.9279381,128.2509059,120.7298967,7.521009184,245.6551465,0,245.6551465,3.753637863,241.9015087,0.269374855,3.029814055,0.064898459,-0.064898459,0.519055399,0.519055399,0.124771748,4.355143392,140.0763822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0501689,2.719497854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155286562,134.6467466,119.2054555,137.3662445,839.9279381,0,0.927201027,21.99737329,-0.927201027,158.0026267,0.996074262,0,955.8360563,137.3662445,1045.739516,6,12,9% +2018-06-04 21:00:00,19.05643307,220.0838551,975.6949904,901.952059,123.1722032,1015.222701,888.4093927,126.8133078,119.4581069,7.355200973,240.282643,0,240.282643,3.714096385,236.5685466,0.332597501,3.841187903,0.299403357,-0.299403357,0.4789527,0.4789527,0.126240479,4.006598338,128.8659752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8276761,2.690850187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902766857,123.870877,117.730443,126.5617272,888.4093927,0,0.98498516,9.941293564,-0.98498516,170.0587064,0.999237814,0,1005.462702,126.5617272,1088.294822,6,13,8% +2018-06-04 22:00:00,28.58727143,245.6163722,896.9930717,886.6968321,118.3940731,997.9180447,876.3320771,121.5859676,114.824055,6.761912666,221.0563734,0,221.0563734,3.570018131,217.4863553,0.498942011,4.286814391,0.543335422,-0.543335422,0.43723786,0.43723786,0.131989953,3.458831985,111.2479263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3732492,2.586465983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505911999,106.9357383,112.8791612,109.5222043,876.3320771,0,0.988310824,8.769069808,-0.988310824,171.2309302,0.999408629,0,988.6930005,109.5222043,1060.373093,6,14,7% +2018-06-04 23:00:00,39.89682748,260.0121708,767.2206686,856.4513929,110.1505876,915.0786868,802.4659123,112.6127744,106.829141,5.783633475,189.3429803,0,189.3429803,3.321446628,186.0215337,0.696331001,4.538068476,0.823303588,-0.823303588,0.389360484,0.389360484,0.143570934,2.75896997,88.73795813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6882337,2.406376775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.998864351,85.29830066,104.6870981,87.70467744,802.4659123,0,0.936966089,20.4518623,-0.936966089,159.5481377,0.996636276,0,904.4537364,87.70467744,961.8546937,6,15,6% +2018-06-04 00:00:00,51.67551852,270.2347865,595.8794626,802.4900761,98.24389366,769.432005,669.6585362,99.77346888,95.28147779,4.49199109,147.4402904,0,147.4402904,2.962415875,144.4778746,0.901907941,4.716486777,1.18702947,-1.18702947,0.327159695,0.327159695,0.164872092,1.967906634,63.294642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.58818066,2.146260217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.425741658,60.84121742,93.01392231,62.98747763,669.6585362,0,0.834475785,33.43870727,-0.834475785,146.5612927,0.990082144,0,756.0308815,62.98747763,797.2549258,6,16,5% +2018-06-04 01:00:00,63.4542527,278.8765087,396.3194616,703.9861453,81.69944834,566.482245,484.258713,82.22353204,79.23590854,2.987623508,98.5557817,0,98.5557817,2.463539806,96.0922419,1.107485634,4.867313284,1.752801317,-1.752801317,0.230407011,0.230407011,0.206145436,1.162350143,37.38517614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.16456917,1.784826204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842118721,35.93605332,77.00668789,37.72087952,484.258713,0,0.687881027,46.53739299,-0.687881027,133.462607,0.977313012,0,550.2790293,37.72087952,574.9665905,6,17,4% +2018-06-04 02:00:00,74.95405157,287.1051477,187.7446722,504.7849503,56.7057361,312.5179594,256.1068118,56.41114757,54.99584893,1.415298643,47.23075657,0,47.23075657,1.709887165,45.52086941,1.308194988,5.010930127,2.966902181,-2.966902181,0.022783535,0.022783535,0.30203646,0.449977979,14.47283859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.86410186,1.23880743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326007514,13.91184296,53.19010937,15.15065039,256.1068118,0,0.507358256,59.51197587,-0.507358256,120.4880241,0.951450308,0,296.8630143,15.15065039,306.778812,6,18,3% +2018-06-04 03:00:00,85.84522946,295.6225825,18.22503262,90.13145489,11.69492836,39.11898315,27.63931204,11.47967112,11.34228312,0.137387994,4.771515399,0,4.771515399,0.35264524,4.41887016,1.498281901,5.159587408,9.62781385,-9.62781385,0,0,0.641695881,0.08816131,2.835570781,0.527477077,1,0.103494634,0,0.950833762,0.989595725,0.724496596,1,10.99237003,0.255490276,0.0721629,0.312029739,0.815826068,0.540322664,0.961238037,0.922476074,0.060447308,2.725658491,11.05281734,2.981148766,13.06020851,0,0.306655563,72.1422057,-0.306655563,107.8577943,0.886950618,0,22.63657735,2.981148766,24.58767959,6,19,9% +2018-06-04 04:00:00,96.25493309,304.9811501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679965504,5.322925226,-5.23558409,5.23558409,1,0.5745087,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092716649,84.68008669,-0.092716649,95.31991331,0.510722528,0,0,0,0,6,20,0% +2018-06-04 05:00:00,105.2837894,315.6811081,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837548775,5.509674723,-1.507016641,1.507016641,1,0.787868713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111835674,96.42114494,0.111835674,83.57885506,0,0.602915466,0,0,0,6,21,0% +2018-06-04 06:00:00,112.5977566,328.1256636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965201583,5.72687319,-0.494375328,0.494375328,1,0.61469685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296112541,107.2242622,0.296112541,72.77573781,0,0.881145281,0,0,0,6,22,0% +2018-06-04 07:00:00,117.5620834,342.4109562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051845431,5.976198581,0.080596051,-0.080596051,1,0.516370953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447559481,116.5872103,0.447559481,63.41278972,0,0.938283006,0,0,0,6,23,0% +2018-06-05 08:00:00,119.5779278,358.021004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087028552,6.248645311,0.545070786,-0.545070786,1,0.436941095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.555859489,123.7699347,0.555859489,56.23006534,0,0.96004921,0,0,0,6,0,0% +2018-06-05 09:00:00,118.349377,13.79536563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065586297,0.240774552,1.030898913,-1.030898913,1,0.353859593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613635437,127.8528355,0.613635437,52.14716453,0,0.968518395,0,0,0,6,1,0% +2018-06-05 10:00:00,114.0609006,28.48104933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990738263,0.497088085,1.676890587,-1.676890587,1,0.24338851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616952259,128.0939123,0.616952259,51.90608773,0,0.968956452,0,0,0,6,2,0% +2018-06-05 11:00:00,107.2632398,41.38502761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872096701,0.722304993,2.824859219,-2.824859219,1,0.047074312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565584746,124.442907,0.565584746,55.55709305,0,0.961595918,0,0,0,6,3,0% +2018-06-05 12:00:00,98.60192913,52.47917083,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720928312,0.91593432,6.304000644,-6.304000644,1,0,#DIV/0!,0,0,0.353960894,1,0.157318614,0,0.944434138,0.983196101,0.724496596,1,0,0,0.051853076,0.312029739,0.863500634,0.58799723,0.961238037,0.922476074,0,0,0,0,0,0,-0.463032757,117.5829796,0.463032757,62.41702038,0,0.942016279,0,0,0,6,4,0% +2018-06-05 13:00:00,88.30567182,62.1168601,2.245846721,12.77816085,1.868031062,1.828633175,0,1.828633175,1.811703033,0.016930141,4.573023916,3.972164348,0.600859568,0.056328029,0.544531539,1.541224721,1.08414373,-33.48689046,33.48689046,0,0,0.831771396,0.014082007,0.452925758,1,0.809768365,0,0.02985356,0.961238037,1,0.643326679,0.918830083,1.741477867,0.039189445,0.115824807,0.219906016,0.724496596,0.448993192,0.974934875,0.936172912,0.010202366,0.438233355,1.751680233,0.477422801,0,0.755631318,-0.310855717,108.1108075,0.310855717,71.8891925,0,0.889153674,1.751680233,1.149295163,2.503870932,6,5,43% +2018-06-05 14:00:00,77.70518184,70.78369696,138.8156224,426.1246447,48.07577917,47.67256785,0,47.67256785,46.62611705,1.046450797,92.22680293,57.11968601,35.10711691,1.449662123,33.65745479,1.356211269,1.235408569,-4.587978609,4.587978609,0.68525576,0.68525576,0.346328305,0.831154637,26.7327902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.81879722,1.050275273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.602168705,25.69657477,45.42096592,26.74685004,0,57.11968601,-0.134044549,97.70337445,0.134044549,82.29662555,0,0.676989682,45.42096592,65.41628812,88.23461817,6,6,94% +2018-06-05 15:00:00,66.31419496,79.01428166,344.9704269,668.0065397,76.6182318,122.4353727,45.5269305,76.90844221,74.30790942,2.600532794,85.9523963,0,85.9523963,2.31032238,83.64207392,1.157401043,1.379059371,-2.251443319,2.251443319,0.915173173,0.915173173,0.22210087,2.428932177,78.12280823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42758897,1.6738207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759753094,75.09461481,73.18734206,76.76843551,45.5269305,0,0.06815342,86.09206734,-0.06815342,93.90793266,0,0,73.18734206,76.76843551,123.4307477,6,7,69% +2018-06-05 16:00:00,54.57747629,87.45336955,548.922712,783.7071257,94.68483557,314.4391402,218.4713905,95.9677497,91.82973843,4.138011269,135.9477639,0,135.9477639,2.855097142,133.0926667,0.952556659,1.526349241,-1.341237108,1.341237108,0.759518744,0.759518744,0.172492108,3.314546457,106.6072077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2702375,2.068508161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401377625,102.4749031,90.67161512,104.5434112,218.4713905,0,0.278766625,73.81339316,-0.278766625,106.1866068,0.8706385,0,280.8812189,104.5434112,349.3027907,6,8,24% +2018-06-05 17:00:00,42.76199869,97.09832256,728.6616251,845.9378632,107.5906762,518.5787813,408.7394019,109.8393794,104.3464203,5.492959118,179.916703,0,179.916703,3.244255854,176.6724472,0.746337672,1.694685427,-0.823262378,0.823262378,0.670939848,0.670939848,0.147655197,3.952333986,127.1206471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3017482,2.350452322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.863452519,122.1932012,103.1652007,124.5436535,408.7394019,0,0.483178989,61.1067665,-0.483178989,118.8932335,0.946518679,0,490.0446796,124.5436535,571.5560099,6,9,17% +2018-06-05 18:00:00,31.25596256,110.0194225,869.774242,880.9275218,116.706409,707.6741968,587.930191,119.7440058,113.1872802,6.556725631,214.4059637,0,214.4059637,3.519128832,210.8868349,0.545519458,1.920201164,-0.46482398,0.46482398,0.609643272,0.609643272,0.134180116,4.340692569,139.6115941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.799919,2.549596859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14481699,134.1999746,111.944736,136.7495715,587.930191,0,0.66739905,48.13336178,-0.66739905,131.8666382,0.975082303,0,685.2250605,136.7495715,774.72492,6,10,13% +2018-06-05 19:00:00,21.03031269,131.6695289,961.8410818,899.4088993,122.3411805,862.3877186,736.4848118,125.9029068,118.6521425,7.250764358,236.8985441,0,236.8985441,3.689037982,233.2095061,0.367048199,2.298066804,-0.182453255,0.182453255,0.561355034,0.561355034,0.127194796,4.474797556,143.9248714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0529525,2.67269546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241975597,138.3460609,117.2949281,141.0187563,736.4848118,0,0.818854263,35.02973496,-0.818854263,144.970265,0.988939073,0,845.6335355,141.0187563,937.9274911,6,11,11% +2018-06-05 20:00:00,15.32923282,173.4028828,998.2596485,905.9744407,124.5173662,968.3251916,840.0371805,128.2880111,120.7627082,7.525302897,245.7942672,0,245.7942672,3.754658012,242.0396092,0.267545585,3.026451237,0.063539575,-0.063539575,0.519287782,0.519287782,0.124734448,4.359025347,140.2012392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0817086,2.720236949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158099025,134.766764,119.2398076,137.4870009,840.0371805,0,0.927219514,21.9945453,-0.927219514,158.0054547,0.996075337,0,955.9801251,137.4870009,1045.962617,6,12,9% +2018-06-05 21:00:00,18.94301547,220.1638042,976.4512715,902.0892511,123.2174535,1015.522808,888.6599133,126.8628948,119.5019927,7.360902139,240.4673766,0,240.4673766,3.715460848,236.7519157,0.33061799,3.842583277,0.297722747,-0.297722747,0.479240101,0.479240101,0.126189045,4.01135524,129.0189735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8698608,2.691838736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.906213216,124.0179448,117.7760741,126.7097835,888.6599133,0,0.985113072,9.898751618,-0.985113072,170.1012484,0.999244405,0,1005.76452,126.7097835,1088.69354,6,13,8% +2018-06-05 22:00:00,28.48731999,245.7401131,897.9697754,886.8988271,118.4542724,998.4380155,876.786301,121.6517145,114.882439,6.769275471,221.2950017,0,221.2950017,3.571833362,217.7231684,0.497197529,4.288974078,0.541169997,-0.541169997,0.43760817,0.43760817,0.131913429,3.464482725,111.4296735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4293702,2.587781112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51000594,107.1104406,112.9393761,109.6982217,876.786301,0,0.988597881,8.660519404,-0.988597881,171.3394806,0.999423319,0,989.2200508,109.6982217,1061.015343,6,14,7% +2018-06-05 23:00:00,39.80395262,260.1203146,768.4343064,856.769527,110.2302307,915.8784136,803.1792487,112.6991649,106.9063826,5.792782389,189.6396424,0,189.6396424,3.323848162,186.3157942,0.694710029,4.539955941,0.820320332,-0.820320332,0.389870651,0.389870651,0.143447826,2.765430169,88.94574034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7624813,2.408116679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003544744,85.49802883,104.766026,87.90614551,803.1792487,0,0.937450765,20.37223978,-0.937450765,159.6277602,0.996663866,0,905.2657608,87.90614551,962.7985749,6,15,6% +2018-06-05 00:00:00,51.5844734,270.3256885,597.3254421,803.0357472,98.35104523,770.5697572,670.6814674,99.88828984,95.38539834,4.502891494,147.7941159,0,147.7941159,2.965646891,144.828469,0.900318904,4.718073318,1.182466557,-1.182466557,0.327939999,0.327939999,0.164652363,1.974951395,63.5212257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68807305,2.148601077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430845562,61.05901829,93.11891861,63.20761937,670.6814674,0,0.83518258,33.36514551,-0.83518258,146.6348545,0.990132851,0,757.182672,63.20761937,798.5507947,6,16,5% +2018-06-05 01:00:00,63.36199819,278.9539121,397.9620941,705.0430968,81.85458108,568.0330698,485.6467,82.38636982,79.38636345,3.000006365,98.95873478,0,98.95873478,2.468217631,96.49051715,1.105875489,4.868664228,1.744462506,-1.744462506,0.231833031,0.231833031,0.205684366,1.169501384,37.61518464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30919216,1.788215271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847299771,36.15714624,77.15649193,37.94536151,485.6467,0,0.68881846,46.46334766,-0.68881846,133.5366523,0.977411934,0,551.8333721,37.94536151,576.6678523,6,17,5% +2018-06-05 02:00:00,74.85883998,287.171734,189.461554,507.2132411,56.97846191,314.614767,257.9261747,56.68859228,55.26035106,1.428241223,47.65525812,0,47.65525812,1.718110855,45.93714727,1.306533232,5.012092277,2.944763551,-2.944763551,0.026569464,0.026569464,0.300738914,0.456062996,14.66855366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.11835137,1.244765466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330416088,14.09997172,53.44876746,15.34473719,257.9261747,0,0.508516249,59.43495173,-0.508516249,120.5650483,0.951674725,0,298.9105888,15.34473719,308.9534124,6,18,3% +2018-06-05 03:00:00,85.74837363,295.6793153,19.16946292,94.27007761,12.18058126,40.99002805,29.03222874,11.95779931,11.8132918,0.144507509,5.015147688,0,5.015147688,0.367289467,4.647858222,1.496591448,5.160577583,9.398179394,-9.398179394,0,0,0.635415886,0.091822367,2.953322949,0.518543222,1,0.106004736,0,0.950550102,0.989312066,0.724496596,1,11.44958786,0.266099968,0.07118346,0.312029739,0.818049831,0.542546427,0.961238037,0.922476074,0.062935679,2.838846354,11.51252354,3.104946322,13.97776332,0,0.307968652,72.0631454,-0.307968652,107.9368546,0.887645813,0,23.91982663,3.104946322,25.9519519,6,19,8% +2018-06-05 04:00:00,96.14967125,305.0270723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678128338,5.323726719,-5.319816013,5.319816013,1,0.560104193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0942486,84.59192627,-0.0942486,95.40807373,0.519488142,0,0,0,0,6,20,0% +2018-06-05 05:00:00,105.1735016,315.7129896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835623888,5.510231161,-1.516635795,1.516635795,1,0.789513686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.110186574,96.32607083,0.110186574,83.67392917,0,0.596224205,0,0,0,6,21,0% +2018-06-05 06:00:00,112.4840567,328.1378963,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963217146,5.72708669,-0.496649194,0.496649194,1,0.615085704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294402728,107.1217258,0.294402728,72.8782742,0,0.880164617,0,0,0,6,22,0% +2018-06-05 07:00:00,117.4487405,342.3969429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049867225,5.975954003,0.080515767,-0.080515767,1,0.516384683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445849669,116.4777132,0.445849669,63.52228682,0,0.937854576,0,0,0,6,23,0% +2018-06-06 08:00:00,119.4707394,357.9771262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085157763,6.2478795,0.546165171,-0.546165171,1,0.436753945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554210475,123.6563515,0.554210475,56.34364855,0,0.959781568,0,0,0,6,0,0% +2018-06-06 09:00:00,118.2542886,13.72488037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063926691,0.239544352,1.033102485,-1.033102485,1,0.35348276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612103904,127.7417849,0.612103904,52.25821509,0,0.968314522,0,0,0,6,1,0% +2018-06-06 10:00:00,113.9814839,28.39256178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989352181,0.495543686,1.680850075,-1.680850075,1,0.242711398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615586872,127.9945758,0.615586872,52.00542419,0,0.968776695,0,0,0,6,2,0% +2018-06-06 11:00:00,107.1999141,41.28694546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870991459,0.720593136,2.833262912,-2.833262912,1,0.045637196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564422795,124.3622187,0.564422795,55.63778125,0,0.961413925,0,0,0,6,3,0% +2018-06-06 12:00:00,98.55300404,52.37633954,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720074408,0.914139575,6.337004194,-6.337004194,1,0,#DIV/0!,0,0,0.356307927,1,0.156512636,0,0.944534831,0.983296794,0.724496596,1,0,0,0.052147065,0.312029739,0.862787164,0.58728376,0.961238037,0.922476074,0,0,0,0,0,0,-0.462097601,117.5225449,0.462097601,62.47745509,0,0.94179775,0,0,0,6,4,0% +2018-06-06 13:00:00,88.27169591,62.01049816,2.353382493,13.35189745,1.950688964,1.909609286,0,1.909609286,1.891868495,0.017740791,4.77125214,4.141826839,0.629425301,0.05882047,0.570604832,1.54063173,1.082287364,-32.81970525,32.81970525,0,0,0.828887344,0.014705117,0.472967124,1,0.805547869,0,0.030460076,0.961238037,1,0.641750078,0.917253482,1.818535958,0.040899184,0.115824807,0.218120073,0.724496596,0.448993192,0.975182559,0.936420596,0.010653807,0.457664373,1.829189765,0.498563557,0,0.805387057,-0.310205112,108.0715919,0.310205112,71.9284081,0,0.888816325,1.829189765,1.214404721,2.623993367,6,5,43% +2018-06-06 14:00:00,77.67744768,70.67231721,139.3003063,427.0063611,48.17076644,47.76834465,0,47.76834465,46.7182401,1.050104549,92.26406527,57.03656691,35.22749836,1.452526339,33.77497202,1.355727217,1.233464625,-4.577441288,4.577441288,0.687057748,0.687057748,0.345805172,0.835121683,26.86038402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9073494,1.052350388,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.605042816,25.81922281,45.51239222,26.8715732,0,57.03656691,-0.133573108,97.67611775,0.133573108,82.32388225,0,0.675673157,45.51239222,65.4096504,88.32170021,6,6,94% +2018-06-06 15:00:00,66.29274078,78.8941299,345.358346,668.3016228,76.65846568,122.6784171,45.72802985,76.9503872,74.3469301,2.603457092,86.04766498,0,86.04766498,2.31153558,83.7361294,1.157026597,1.376962327,-2.249896941,2.249896941,0.914908727,0.914908727,0.221967897,2.43109849,78.19248427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.46509714,1.674699659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.76132258,75.16159008,73.22641972,76.83628974,45.72802985,0,0.068424239,86.07651428,-0.068424239,93.92348572,0,0,73.22641972,76.83628974,123.5142346,6,7,69% +2018-06-06 16:00:00,54.5592992,87.31790741,549.2219041,783.8337246,94.70803137,314.5823221,218.5898206,95.9925015,91.85223479,4.140266706,136.0210059,0,136.0210059,2.855796581,133.1652093,0.952239409,1.52398498,-1.341329186,1.341329186,0.75953449,0.75953449,0.172440375,3.316355505,106.6653929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29186185,2.069014902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402688274,102.5308329,90.69455012,104.5998478,218.5898206,0,0.278872692,73.80706505,-0.278872692,106.192935,0.870706719,0,281.0221756,104.5998478,349.480684,6,8,24% +2018-06-06 17:00:00,42.74284828,96.93631958,728.926417,846.0128532,107.608459,518.6256127,408.7669905,109.8586221,104.3636669,5.494955231,179.9814411,0,179.9814411,3.244792071,176.736649,0.746003434,1.691857941,-0.823897536,0.823897536,0.671048466,0.671048466,0.147625956,3.954226112,127.1815043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3183263,2.35084081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864823358,122.2516995,103.1831497,124.6025404,408.7669905,0,0.483168771,61.10743522,-0.483168771,118.8925648,0.946516491,0,490.087847,124.6025404,571.6377176,6,9,17% +2018-06-06 18:00:00,31.22832264,109.8113681,870.067311,880.9911169,116.7246861,707.6748975,587.9109564,119.763941,113.2050061,6.558934908,214.4775728,0,214.4775728,3.519679954,210.9578928,0.54503705,1.91656993,-0.46573126,0.46573126,0.609798426,0.609798426,0.134155926,4.342974346,139.6849839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8169579,2.549996145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14647013,134.2705197,111.963428,136.8205158,587.9109564,0,0.66732904,48.13874796,-0.66732904,131.861252,0.975074443,0,685.2203764,136.8205158,774.7666676,6,10,13% +2018-06-06 19:00:00,20.97810192,131.3957522,962.2243005,899.4800209,122.3642222,862.4088207,736.4806781,125.9281426,118.6744894,7.253653222,236.9921547,0,236.9921547,3.689732775,233.3024219,0.366136949,2.2932885,-0.183567665,0.183567665,0.561545609,0.561545609,0.127168086,4.477702001,144.0182884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0744332,2.673198835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.244079857,138.4358568,117.3185131,141.1090556,736.4806781,0,0.818784921,35.03665596,-0.818784921,144.963344,0.988933902,0,845.649224,141.1090556,938.0022788,6,11,11% +2018-06-06 20:00:00,15.23125978,173.2055515,998.7886518,906.0670097,124.5487824,968.4378097,840.1153419,128.3224678,120.793177,7.529290747,245.9234775,0,245.9234775,3.755605324,242.1678722,0.265835632,3.023007157,0.062201044,-0.062201044,0.519516685,0.519516685,0.124699837,4.36271859,140.3200266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1109964,2.720923273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160774768,134.8809469,119.2717711,137.6018702,840.1153419,0,0.927211048,21.99584037,-0.927211048,158.0041596,0.996074844,0,956.0895296,137.6018702,1046.147202,6,12,9% +2018-06-06 21:00:00,18.83444535,220.2302754,977.1711625,902.2196862,123.2605156,1015.796108,888.8860227,126.9100853,119.5437563,7.366328982,240.643221,0,240.643221,3.716759329,236.9264616,0.328723084,3.843743419,0.296083255,-0.296083255,0.479520471,0.479520471,0.126140149,4.015929829,129.166108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9100056,2.692779481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90952749,124.159376,117.8195331,126.8521555,888.8860227,0,0.985221267,9.862625466,-0.985221267,170.1373745,0.999249979,0,1006.038873,126.8521555,1089.061071,6,13,8% +2018-06-06 22:00:00,28.39064557,245.8522468,898.9114917,887.0932647,118.5122923,998.9352074,877.2201235,121.7150839,114.9387094,6.776374526,221.5250813,0,221.5250813,3.573582875,217.9514984,0.495510242,4.29093118,0.539071386,-0.539071386,0.437967053,0.437967053,0.131839779,3.469946611,111.6054109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4834594,2.589048628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513964508,107.2793661,112.9974239,109.8684147,877.2201235,0,0.988870233,8.556266204,-0.988870233,171.4437338,0.999437248,0,989.7238903,109.8684147,1061.63057,6,14,7% +2018-06-06 23:00:00,39.71369482,260.2191711,769.611526,857.0773995,110.307432,916.6556746,803.8727619,112.7829127,106.9812559,5.801656769,189.9274008,0,189.9274008,3.326176066,186.6012247,0.693134733,4.541681313,0.817443138,-0.817443138,0.39036268,0.39036268,0.143328716,2.77169055,89.14709572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8344524,2.409803237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008080368,85.69157928,104.8425328,88.10138252,803.8727619,0,0.937923182,20.29434331,-0.937923182,159.7056567,0.99669073,0,906.0550629,88.10138252,963.7156557,6,15,6% +2018-06-06 00:00:00,51.49587041,270.4088196,598.7309932,803.5643974,98.45506953,771.6806346,671.6808616,99.99977305,95.48628592,4.513487132,148.1380448,0,148.1380448,2.968783607,145.1692612,0.89877249,4.719524229,1.178083187,-1.178083187,0.328689599,0.328689599,0.164439574,1.981780105,63.74086051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78505002,2.150873617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43579294,61.27013962,93.22084296,63.42101324,671.6808616,0,0.83587683,33.29274953,-0.83587683,146.7072505,0.990182575,0,758.3075277,63.42101324,799.8153125,6,16,5% +2018-06-06 01:00:00,63.27228364,279.024486,399.5585829,706.0652481,82.00495592,569.5459478,487.0017025,82.5442453,79.53220393,3.012041372,99.35035635,0,99.35035635,2.472751987,96.87760436,1.104309675,4.869895974,1.736482452,-1.736482452,0.233197701,0.233197701,0.20523888,1.1764291,37.83800382,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.44937957,1.791500397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.852318879,36.37132851,77.30169845,38.16282891,487.0017025,0,0.689740366,46.39043991,-0.689740366,133.6095601,0.977508955,0,553.3502237,38.16282891,578.327032,6,17,5% +2018-06-06 02:00:00,74.76644613,287.2320808,191.1287155,509.5524711,57.24162693,316.6515215,259.6951318,56.95638967,55.51558068,1.44080899,48.06741613,0,48.06741613,1.726046251,46.34136988,1.304920655,5.013145528,2.923702509,-2.923702509,0.030171114,0.030171114,0.299492553,0.461963191,14.8583242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.36368779,1.250514633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334690759,14.28238638,53.69837855,15.53290101,259.6951318,0,0.509653366,59.35925664,-0.509653366,120.6407434,0.951894104,0,300.9006434,15.53290101,311.0666165,6,18,3% +2018-06-06 03:00:00,85.65459717,295.7302009,20.10339359,98.32161121,12.65367311,42.83023642,30.40657038,12.42366605,12.27211818,0.151547873,5.255855456,0,5.255855456,0.381554931,4.874300525,1.49495474,5.161465703,9.186240696,-9.186240696,0,0,0.629429706,0.095388733,3.068029544,0.509992716,1,0.108431493,0,0.950274475,0.989036438,0.724496596,1,11.8949729,0.276435249,0.070239706,0.312029739,0.820199807,0.544696403,0.961238037,0.922476074,0.065360468,2.949106696,11.96033337,3.225541945,14.89944096,0,0.309256226,71.98558708,-0.309256226,108.0144129,0.888321767,0,25.1958311,3.225541945,27.30688379,6,19,8% +2018-06-06 04:00:00,96.0482737,305.0674737,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676358617,5.324431856,-5.404229545,5.404229545,1,0.545668629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095742473,84.50594484,-0.095742473,95.49405516,0.527765733,0,0,0,0,6,20,0% +2018-06-06 05:00:00,105.0677866,315.7397681,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833778814,5.510698533,-1.526206351,1.526206351,1,0.791150347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108585801,96.2337996,0.108585801,83.7662004,0,0.589534639,0,0,0,6,21,0% +2018-06-06 06:00:00,112.3757046,328.1457398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961326044,5.727223585,-0.49899394,0.49899394,1,0.615486679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292751756,107.0227717,0.292751756,72.97722831,0,0.879206832,0,0,0,6,22,0% +2018-06-06 07:00:00,117.3414624,342.3797454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047994869,5.975653849,0.080305635,-0.080305635,1,0.516420617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.444208755,116.3727263,0.444208755,63.62727372,0,0.93744031,0,0,0,6,23,0% +2018-06-07 08:00:00,119.3700972,357.9317521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083401225,6.247087572,0.547073339,-0.547073339,1,0.436598639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.552639267,123.5482668,0.552639267,56.45173317,0,0.959525068,0,0,0,6,0,0% +2018-06-07 09:00:00,118.1658677,13.65472522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062383455,0.238319914,1.035034184,-1.035034184,1,0.35315242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610657326,127.6370471,0.610657326,52.36295292,0,0.968121018,0,0,0,6,1,0% +2018-06-07 10:00:00,113.9085284,28.30594092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988078867,0.494031867,1.684363553,-1.684363553,1,0.242110558,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614311331,127.9018974,0.614311331,52.09810259,0,0.968608045,0,0,0,6,2,0% +2018-06-07 11:00:00,107.1426566,41.19181501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869992127,0.718932797,2.840728637,-2.840728637,1,0.044360482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563352994,124.2879983,0.563352994,55.71200173,0,0.961245701,0,0,0,6,3,0% +2018-06-07 12:00:00,98.50970411,52.27718927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719318682,0.912409076,6.366220401,-6.366220401,1,0,#DIV/0!,0,0,0.358371441,1,0.155805954,0,0.944622999,0.983384962,0.724496596,1,0,0,0.052405073,0.312029739,0.862161577,0.586658172,0.961238037,0.922476074,0,0,0,0,0,0,-0.461254149,117.4680651,0.461254149,62.53193493,0,0.941599891,0,0,0,6,4,0% +2018-06-07 13:00:00,88.24246471,61.90836209,2.448383666,13.85805519,2.023357569,1.980802823,0,1.980802823,1.962345872,0.01845695,4.94559547,4.290944808,0.654650662,0.061011696,0.593638966,1.540121549,1.080504753,-32.26539025,32.26539025,0,0,0.826405435,0.015252924,0.490586468,1,0.801896264,0,0.030983044,0.961238037,1,0.64039298,0.915896384,1.886281494,0.042401374,0.115824807,0.2165829,0.724496596,0.448993192,0.975395187,0.936633224,0.011050692,0.47474852,1.897332186,0.517149894,0,0.850052196,-0.309635425,108.0372609,0.309635425,71.96273911,0,0.888519769,1.897332186,1.272438075,2.730117457,6,5,44% +2018-06-07 14:00:00,77.65456723,70.56567443,139.7003321,427.7323106,48.24899593,47.8472308,0,47.8472308,46.79411069,1.053120113,92.29397319,56.96712503,35.32684816,1.454885247,33.87196291,1.355327877,1.231603358,-4.568781928,4.568781928,0.688538586,0.688538586,0.345374955,0.838398987,26.96579341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.98027909,1.054059409,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607417212,25.92054632,45.5876963,26.97460573,0,56.96712503,-0.133184058,97.65362587,0.133184058,82.34637413,0,0.674579694,45.5876963,65.40347148,88.39296032,6,6,94% +2018-06-07 15:00:00,66.27593253,78.77931586,345.6622358,668.5325173,76.68996279,122.8579988,45.87477338,76.9832254,74.37747746,2.605747942,86.12229633,0,86.12229633,2.312485334,83.809811,1.156733238,1.374958444,-2.248805706,2.248805706,0.914722115,0.914722115,0.221863874,2.432836232,78.24837604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49446042,1.675387753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762581568,75.21531537,73.25704199,76.89070312,45.87477338,0,0.068620108,86.06526538,-0.068620108,93.93473462,0,0,73.25704199,76.89070312,123.5804694,6,7,69% +2018-06-07 16:00:00,54.54568459,87.18859095,549.4459578,783.9284681,94.72539721,314.658944,218.6479113,96.0110327,91.86907698,4.141955717,136.075854,0,136.075854,2.856320225,133.2195337,0.952001789,1.521727982,-1.341594817,1.341594817,0.759579915,0.759579915,0.172401664,3.317825561,106.712675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30805121,2.06939428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403753324,102.5762822,90.71180453,104.6456765,218.6479113,0,0.27891309,73.80465476,-0.27891309,106.1953452,0.870732688,0,281.095688,104.6456765,349.5841904,6,8,24% +2018-06-07 17:00:00,42.72838476,96.78159382,729.1263415,846.069446,107.6218835,518.6119581,408.7388091,109.873149,104.3766866,5.496462346,180.0303199,0,180.0303199,3.24519687,176.785123,0.745750998,1.689157467,-0.824607337,0.824607337,0.671169849,0.671169849,0.147603889,3.955839449,127.2333948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3308414,2.351134086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865992215,122.3015786,103.1968336,124.6527127,408.7388091,0,0.483103144,61.11172988,-0.483103144,118.8882701,0.946502433,0,490.0691109,124.6527127,571.6518183,6,9,17% +2018-06-07 18:00:00,31.20585375,109.6119717,870.3053806,881.042753,116.7395314,707.6242978,587.8441644,119.7801334,113.2194038,6.560729577,214.5357432,0,214.5357432,3.520127596,211.0156156,0.544644894,1.913089806,-0.466666318,0.466666318,0.60995833,0.60995833,0.134136286,4.345020769,139.7508038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8307975,2.55032046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147952756,134.3337883,111.9787502,136.8841088,587.8441644,0,0.667214119,48.1475884,-0.667214119,131.8524116,0.975061538,0,685.1629852,136.8841088,774.7508967,6,10,13% +2018-06-07 19:00:00,20.93212538,131.1301691,962.5610096,899.542474,122.3844648,862.3883492,736.438036,125.9503132,118.6941217,7.256191478,237.0744041,0,237.0744041,3.690343166,233.3840609,0.365334507,2.2886532,-0.184681798,0.184681798,0.561736137,0.561736137,0.127144631,4.480400984,144.1050969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0933045,2.673641061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.246035261,138.5193005,117.3393398,141.1929415,736.438036,0,0.818680671,35.04705891,-0.818680671,144.9529411,0.988926126,0,845.6221539,141.1929415,938.0301103,6,11,11% +2018-06-07 20:00:00,15.14016121,173.0040088,999.2775684,906.1524948,124.5778131,968.5175986,840.1632899,128.3543088,120.8213324,7.532976407,246.0428964,0,246.0428964,3.756480708,242.2864157,0.264245662,3.019489573,0.060884089,-0.060884089,0.519741897,0.519741897,0.124667877,4.366223524,140.4327573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1380603,2.721557485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16331408,134.989308,119.3013744,137.7108655,840.1632899,0,0.92717649,22.00112632,-0.92717649,157.9988737,0.996072835,0,956.165204,137.7108655,1046.294211,6,12,9% +2018-06-07 21:00:00,18.73077615,220.2831088,977.8548422,902.3434199,123.3014018,1016.04324,889.0883479,126.9548925,119.5834096,7.371482848,240.8102199,0,240.8102199,3.717992198,237.0922277,0.326913715,3.844665536,0.294486138,-0.294486138,0.479793594,0.479793594,0.126093768,4.020321088,129.307346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9481219,2.693672691,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912708943,124.2951394,117.8608308,126.9888121,889.0883479,0,0.985310391,9.832768645,-0.985310391,170.1672314,0.999254569,0,1006.286425,126.9888121,1089.398063,6,13,8% +2018-06-07 22:00:00,28.29729509,245.9526601,899.8180593,887.2801476,118.5681253,999.4099308,877.6338633,121.7760675,114.9928589,6.783208616,221.7465727,0,221.7465727,3.575266448,218.1713062,0.493880969,4.292683722,0.53704094,-0.53704094,0.43831428,0.43831428,0.131768999,3.475221228,111.7750607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5355099,2.590268371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51778595,107.4424399,113.0532959,110.0327083,877.6338633,0,0.989128254,8.456322279,-0.989128254,171.5436777,0.999450438,0,990.2048449,110.0327083,1062.219052,6,14,7% +2018-06-07 23:00:00,39.62610759,260.3086817,770.7518186,857.3749453,110.3821631,917.4104046,804.5464183,112.8639863,107.0537336,5.810252776,190.2061314,0,190.2061314,3.328429483,186.8777019,0.691606047,4.543243567,0.814673473,-0.814673473,0.390836321,0.390836321,0.143213626,2.777747404,89.34190497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9041207,2.41143583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012468539,85.87883734,104.9165892,88.29027317,804.5464183,0,0.938383402,20.21818161,-0.938383402,159.7818184,0.996716875,0,906.8215812,88.29027317,964.6057991,6,15,6% +2018-06-07 00:00:00,51.40977075,270.4841489,600.0952766,804.0758708,98.55591635,772.7641821,672.6563186,100.1078635,95.58409184,4.523771676,148.471872,0,148.471872,2.97182451,145.5000475,0.897269767,4.720838973,1.173880823,-1.173880823,0.329408246,0.329408246,0.164233781,1.988387946,63.95339138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87906479,2.153076741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440580298,61.47443238,93.31964509,63.62750912,672.6563186,0,0.836558269,33.22155384,-0.836558269,146.7784462,0.9902313,0,759.4049861,63.62750912,801.0479183,6,16,5% +2018-06-07 01:00:00,63.18517674,279.088217,401.1077941,707.0523507,82.15050364,571.0200712,488.3229884,82.69708284,79.67336286,3.02371998,99.73036933,0,99.73036933,2.477140788,97.25322854,1.102789373,4.87100829,1.728861403,-1.728861403,0.234500977,0.234500977,0.204809043,1.183127503,38.05344747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.5850669,1.794680068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.857171848,36.57842115,77.44223875,38.37310121,488.3229884,0,0.690646156,46.31872047,-0.690646156,133.6812795,0.977604028,0,554.828759,38.37310121,579.9431863,6,17,5% +2018-06-07 02:00:00,74.67694278,287.2861888,192.7447127,511.8025052,57.49517371,318.6271827,261.4127096,57.21447315,55.76148209,1.45299106,48.46687875,0,48.46687875,1.733691622,46.73318713,1.303358527,5.01408989,2.903703619,-2.903703619,0.033591126,0.033591126,0.298297021,0.467671347,15.04191814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.60005758,1.256053678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338826299,14.45886387,53.93888388,15.71491755,261.4127096,0,0.510768718,59.28495275,-0.510768718,120.7150473,0.952108336,0,302.8321037,15.71491755,313.1172029,6,18,3% +2018-06-07 03:00:00,85.56398606,295.7752533,21.02367691,102.2748029,13.11315841,44.63429625,31.75806259,12.87623366,12.7177483,0.158485357,5.492843979,0,5.492843979,0.395410108,5.09743387,1.493373278,5.162252016,8.990610688,-8.990610688,0,0,0.623732873,0.098852527,3.179437075,0.501826128,1,0.110771843,0,0.950007371,0.988769334,0.724496596,1,12.32753686,0.286473278,0.069332478,0.312029739,0.822273262,0.546769858,0.961238037,0.922476074,0.067716419,3.056195852,12.39525327,3.34266913,15.821037,0,0.310516977,71.90961133,-0.310516977,108.0903887,0.888978208,0,26.4598104,3.34266913,28.64752049,6,19,8% +2018-06-07 04:00:00,95.95081617,305.1023833,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674657662,5.325041144,-5.488598027,5.488598027,1,0.531240768,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097196953,84.42221877,-0.097196953,95.57778123,0.535580579,0,0,0,0,6,20,0% +2018-06-07 05:00:00,104.9667168,315.761489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832014814,5.511077634,-1.535709097,1.535709097,1,0.792775412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107034771,96.14441115,0.107034771,83.85558885,0,0.582862085,0,0,0,6,21,0% +2018-06-07 06:00:00,112.2727644,328.1492554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959529398,5.727284946,-0.501405288,0.501405288,1,0.615899044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291161059,106.9274797,0.291161059,73.07252026,0,0.878273739,0,0,0,6,22,0% +2018-06-07 07:00:00,117.2403006,342.3594358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046229261,5.97529938,0.079966419,-0.079966419,1,0.516478627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.442638104,116.2723241,0.442638104,63.72767594,0,0.937040904,0,0,0,6,23,0% +2018-06-08 08:00:00,119.2760374,357.8849564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081759572,6.246270833,0.547794499,-0.547794499,1,0.436475313,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551147078,123.445743,0.551147078,56.55425705,0,0.959280114,0,0,0,6,0,0% +2018-06-08 09:00:00,118.0841354,13.58497233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060956958,0.237102496,1.036691859,-1.036691859,1,0.35286894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609296687,127.5386662,0.609296687,52.46133376,0,0.967938172,0,0,0,6,1,0% +2018-06-08 10:00:00,113.8420408,28.22125666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986918439,0.492553848,1.687426466,-1.687426466,1,0.241586769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613126343,127.8159029,0.613126343,52.18409713,0,0.968450739,0,0,0,6,2,0% +2018-06-08 11:00:00,107.0914608,41.09970605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869098591,0.717325192,2.847243696,-2.847243696,1,0.043246341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56237573,124.2202551,0.56237573,55.77974492,0,0.961091469,0,0,0,6,3,0% +2018-06-08 12:00:00,98.47201007,52.18179127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718660797,0.910744067,6.391553563,-6.391553563,1,0,#DIV/0!,0,0,0.360150019,1,0.155198299,0,0.944698722,0.983460685,0.724496596,1,0,0,0.052627106,0.312029739,0.86162364,0.586120236,0.961238037,0.922476074,0,0,0,0,0,0,-0.460502453,117.4195347,0.460502453,62.58046534,0,0.941422945,0,0,0,6,4,0% +2018-06-08 13:00:00,88.21796667,61.81052594,2.529780668,14.29121153,2.08536208,2.041551275,0,2.041551275,2.02248072,0.019070555,5.094336871,4.418080898,0.676255973,0.062881361,0.613374612,1.539693978,1.07879719,-31.81377828,31.81377828,0,0,0.82432525,0.01572034,0.50562018,1,0.798818266,0,0.031422576,0.961238037,1,0.639254064,0.914757468,1.944085396,0.043682444,0.115824807,0.215292948,0.724496596,0.448993192,0.975573221,0.936811258,0.011389333,0.489326581,1.955474729,0.533009025,0,0.888837175,-0.309146701,108.0078143,0.309146701,71.99218573,0,0.888264488,1.955474729,1.322531522,2.82104516,6,5,44% +2018-06-08 14:00:00,77.63649853,70.4638478,140.0163377,428.3046623,48.31068821,47.90944501,0,47.90944501,46.85394272,1.055502296,92.31709726,56.91176965,35.40532761,1.456745497,33.94858212,1.355012519,1.229826148,-4.561966315,4.561966315,0.689704124,0.689704124,0.34503608,0.840989817,27.04912339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.03779191,1.055407154,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.609294259,26.00064627,45.64708617,27.05605342,0,56.91176965,-0.132876839,97.63586564,0.132876839,82.36413436,0,0.673711699,45.64708617,65.39817844,88.448886,6,6,94% +2018-06-08 15:00:00,66.26371731,78.66992823,345.8830708,668.7001591,76.71283974,122.9747563,45.96767908,77.00707727,74.39966458,2.607412689,86.17653016,0,86.17653016,2.313175158,83.863355,1.156520042,1.37304927,-2.24816328,2.24816328,0.914612253,0.914612253,0.221788362,2.434150798,78.29065701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51578752,1.675887528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763533967,75.25595745,73.27932149,76.93184498,45.96767908,0,0.06874184,86.05827415,-0.06874184,93.94172585,0,0,73.27932149,76.93184498,123.6296754,6,7,69% +2018-06-08 16:00:00,54.5365694,87.06552721,549.595946,783.9918629,94.7370202,314.6699941,218.6465582,96.02343589,91.8803495,4.143086391,136.1125708,0,136.1125708,2.856670701,133.2559001,0.951842699,1.519580115,-1.342031175,1.342031175,0.759654537,0.759654537,0.172375762,3.318961335,106.7492054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31888678,2.069648199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404576189,102.6113966,90.72346296,104.6810448,218.6465582,0,0.278888811,73.80610334,-0.278888811,106.1938967,0.870717081,0,281.1027559,104.6810448,349.6144062,6,8,24% +2018-06-08 17:00:00,42.71853555,96.63429088,729.2624535,846.1079622,107.6310222,518.5389658,408.6559276,109.8830382,104.3855498,5.497488416,180.0635974,0,180.0635974,3.245472436,176.8181249,0.745579097,1.686586546,-0.825389926,0.825389926,0.67130368,0.67130368,0.147588871,3.957177916,127.2764445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3393609,2.351333732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866961929,122.3429596,103.2063229,124.6942934,408.6559276,0,0.482983196,61.11957882,-0.482983196,118.8804212,0.94647673,0,489.9896488,124.6942934,571.5995699,6,9,17% +2018-06-08 18:00:00,31.18847718,109.4214733,870.4893895,881.0826488,116.7510046,707.5235732,587.7309254,119.7926478,113.2305311,6.562116715,214.5807042,0,214.5807042,3.520473555,211.0602307,0.544341615,1.909764981,-0.467627673,0.467627673,0.610122731,0.610122731,0.134121112,4.346834727,139.809147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8414934,2.550571107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149266963,134.38987,111.9907604,136.9404411,587.7309254,0,0.667055385,48.15979723,-0.667055385,131.8402028,0.975043705,0,685.0540996,136.9404411,774.6788795,6,10,13% +2018-06-08 19:00:00,20.89232139,130.8732694,962.8519456,899.5964093,122.4019537,862.3273903,736.3579224,125.9694679,118.7110832,7.258384676,237.1454722,0,237.1454722,3.69087052,233.4546017,0.364639797,2.284169455,-0.185794328,0.185794328,0.561926391,0.561926391,0.127124377,4.482896147,144.18535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1096086,2.674023127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247842998,138.5964427,117.3574516,141.2704659,736.3579224,0,0.818542532,35.0608394,-0.818542532,144.9391606,0.988915819,0,845.5534497,141.2704659,938.0121442,6,11,11% +2018-06-08 20:00:00,15.05597156,172.7987381,999.7268614,906.2309932,124.6044871,968.5654522,840.1818868,128.3835654,120.847202,7.536363368,246.152637,0,246.152637,3.757285026,242.395352,0.262776276,3.015906923,0.059589992,-0.059589992,0.519963201,0.519963201,0.124638531,4.369540389,140.5394391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1629272,2.722140211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.165717137,135.0918545,119.3286444,137.8139948,840.1818868,0,0.927116699,22.01026913,-0.927116699,157.9897309,0.996069357,0,956.2080759,137.8139948,1046.404579,6,12,9% +2018-06-08 21:00:00,18.632065,220.3221749,978.5024492,902.4604992,123.3401219,1016.264818,889.267491,126.997327,119.6209622,7.376364783,240.9684073,0,240.9684073,3.719159753,237.2492475,0.325190881,3.845347368,0.292932711,-0.292932711,0.480059246,0.480059246,0.126049886,4.024527795,129.4426481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9842188,2.69451858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.915756688,124.425197,117.8999755,127.1197155,889.267491,0,0.985381068,9.809027375,-0.985381068,170.1909726,0.999258209,0,1006.507816,127.1197155,1089.705128,6,13,8% +2018-06-08 22:00:00,28.2073205,246.0412535,900.6892643,887.4594664,118.6217609,999.8624496,878.0277963,121.8346533,115.0448772,6.789776127,221.9594237,0,221.9594237,3.576883759,218.38254,0.492310616,4.29422997,0.535080062,-0.535080062,0.43864961,0.43864961,0.131701093,3.480303923,111.9385376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5855119,2.591440107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.521468345,107.5995802,113.1069802,110.1910203,878.0277963,0,0.989372281,8.360707903,-0.989372281,171.6392921,0.999462906,0,990.663193,110.1910203,1062.781012,6,14,7% +2018-06-08 23:00:00,39.54124909,260.3887958,771.8546149,857.6620824,110.4543914,918.1424763,805.2001262,112.9423501,107.1237839,5.81856612,190.475695,0,190.475695,3.330607433,187.1450876,0.690124987,4.544641822,0.812012868,-0.812012868,0.391291311,0.391291311,0.143102586,2.783596785,89.53004117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9714558,2.413013748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016706395,86.05968101,104.9881622,88.47269476,805.2001262,0,0.938831438,20.14377131,-0.938831438,159.8562287,0.996742303,0,907.5651906,88.47269476,965.4687999,6,15,6% +2018-06-08 00:00:00,51.32623967,270.5516517,601.4173899,804.5699863,98.65353072,773.8198711,673.60737,100.2125011,95.67876277,4.533738325,148.7953771,0,148.7953771,2.974767944,145.8206092,0.895811875,4.72201712,1.169861022,-1.169861022,0.330095672,0.330095672,0.164035048,1.994769881,64.15865635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.9700661,2.155209249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445203988,61.67174087,93.41527009,63.82695012,673.60737,0,0.83722657,33.15159927,-0.83722657,146.8484007,0.99027901,0,760.4745093,63.82695012,802.2479716,6,16,5% +2018-06-08 01:00:00,63.10074862,279.1450969,402.6085344,708.0041132,82.29114902,572.4545505,489.60975,82.84480045,79.80976726,3.035033195,100.0984822,0,100.0984822,2.481381765,97.6171004,1.101315824,4.872001031,1.721599836,-1.721599836,0.235742778,0.235742778,0.204394944,1.189590641,38.2613242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.716184,1.797752642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86185437,36.77824016,77.57803837,38.5759928,489.60975,0,0.691535177,46.24824535,-0.691535177,133.7517546,0.977697098,0,556.2680703,38.5759928,581.515286,6,17,5% +2018-06-08 02:00:00,74.59040544,287.334063,194.3080587,513.963116,57.73903456,320.5406228,263.077857,57.46276586,55.99798963,1.464776222,48.85328337,0,48.85328337,1.741044926,47.11223844,1.301848165,5.014925452,2.884752882,-2.884752882,0.036831892,0.036831892,0.297152032,0.473180217,15.21910233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.82739762,1.261381122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.342817456,14.62918004,54.17021508,15.89056116,263.077857,0,0.511861355,59.21210661,-0.511861355,120.7878934,0.952317298,0,304.7038091,15.89056116,315.1038636,6,18,3% +2018-06-08 03:00:00,85.47662738,295.8144909,21.92722839,106.1190768,13.55806666,46.39711283,33.08257519,13.31453764,13.14924093,0.16529671,5.725336121,0,5.725336121,0.408825734,5.316510388,1.491848581,5.162936842,8.810069451,-8.810069451,0,0,0.61832104,0.102206433,3.287310232,0.49404412,1,0.113022755,0,0.949749281,0.988511244,0.724496596,1,12.74636297,0.296192852,0.068462609,0.312029739,0.824267495,0.548764091,0.961238037,0.922476074,0.069998624,3.159887634,12.81636159,3.456080486,16.73832345,0,0.311749557,71.83530141,-0.311749557,108.1646986,0.889614848,0,27.70702267,3.456080486,29.96895823,6,19,8% +2018-06-08 04:00:00,95.85737572,305.1318342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673026819,5.32555516,-5.572673162,5.572673162,1,0.516863074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098610677,84.3408273,-0.098610677,95.6591727,0.542955514,0,0,0,0,6,20,0% +2018-06-08 05:00:00,104.8703651,315.7782016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830333159,5.511369325,-1.545123839,1.545123839,1,0.794385428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105534937,96.05798746,0.105534937,83.94201254,0,0.576223247,0,0,0,6,21,0% +2018-06-08 06:00:00,112.1753,328.1485085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957828324,5.727271909,-0.503878544,0.503878544,1,0.616321995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289632089,106.835931,0.289632089,73.16406899,0,0.877367195,0,0,0,6,22,0% +2018-06-08 07:00:00,117.1453054,342.3360903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044571283,5.974891924,0.079499239,-0.079499239,1,0.516558519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441139077,116.1765813,0.441139077,63.82341869,0,0.93665706,0,0,0,6,23,0% +2018-06-09 08:00:00,119.1885943,357.8368182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080233401,6.245430662,0.548328268,-0.548328268,1,0.436384033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549735097,123.3488414,0.549735097,56.65115859,0,0.959047102,0,0,0,6,0,0% +2018-06-09 09:00:00,118.00911,13.51569819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059647517,0.235893434,1.038073937,-1.038073937,1,0.352632591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608022936,127.4466852,0.608022936,52.55331477,0,0.96776626,0,0,0,6,1,0% +2018-06-09 10:00:00,113.7820243,28.13858289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985870953,0.491110918,1.690035282,-1.690035282,1,0.241140635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612032556,127.7366155,0.612032556,52.26338448,0,0.968304999,0,0,0,6,2,0% +2018-06-09 11:00:00,107.0463157,41.0106916,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868310662,0.715771597,2.852798038,-2.852798038,1,0.042296493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561491318,124.1589952,0.561491318,55.84100481,0,0.960951428,0,0,0,6,3,0% +2018-06-09 12:00:00,98.43989794,52.090219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718100334,0.90914583,6.412925389,-6.412925389,1,0,#DIV/0!,0,0,0.361642831,1,0.154689307,0,0.944762086,0.983524049,0.724496596,1,0,0,0.052813217,0.312029739,0.861173039,0.585669635,0.961238037,0.922476074,0,0,0,0,0,0,-0.459842485,117.3769438,0.459842485,62.62305621,0,0.941267115,0,0,0,6,4,0% +2018-06-09 13:00:00,88.19818257,61.71706506,2.596704188,14.6469902,2.136166733,2.091328478,0,2.091328478,2.071753424,0.019575053,5.216109189,4.522094886,0.694014303,0.064413309,0.629600994,1.53934868,1.07716599,-31.45680557,31.45680557,0,0,0.822645391,0.016103327,0.517938356,1,0.796316766,0,0.031778921,0.961238037,1,0.638331817,0.913835221,1.991448195,0.044731644,0.115824807,0.214248457,0.724496596,0.448993192,0.975717113,0.93695515,0.011666806,0.50127211,2.003115,0.546003755,0,0.92107491,-0.308738848,107.9832441,0.308738848,72.01675594,0,0.888050831,2.003115,1.363965094,2.895802875,6,5,45% +2018-06-09 14:00:00,77.62319478,70.36691689,140.2490674,428.7255531,48.35606326,47.95520625,0,47.95520625,46.89794953,1.057256712,92.33391075,56.87078688,35.46312387,1.458113722,34.00501015,1.354780325,1.228134384,-4.556962901,4.556962901,0.690559758,0.690559758,0.344787057,0.842898705,27.11051979,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.08009294,1.056398428,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610677242,26.05966282,45.69077018,27.11606125,0,56.87078688,-0.132650798,97.62279879,0.132650798,82.37720121,0,0.673070493,45.69077018,65.39410983,88.48990718,6,6,94% +2018-06-09 15:00:00,66.25603752,78.56605514,346.0219053,668.8054884,76.72721692,123.0294195,46.00735195,77.02206752,74.41360824,2.608459282,86.21062573,0,86.21062573,2.313608684,83.89701704,1.156386004,1.371236342,-2.247963304,2.247963304,0.914578055,0.914578055,0.221740924,2.435047856,78.31950948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5291907,1.676201615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764183883,75.28369154,73.29337458,76.95989315,46.00735195,0,0.068790333,86.05548912,-0.068790333,93.94451088,0,0,73.29337458,76.95989315,123.6620855,6,7,69% +2018-06-09 16:00:00,54.53188606,86.94882143,549.6730032,784.0244231,94.74299089,314.6165383,218.5867309,96.02980743,91.88614015,4.143667281,136.1314343,0,136.1314343,2.85685074,133.2745835,0.951760959,1.517543215,-1.342635294,1.342635294,0.759757847,0.759757847,0.17236246,3.319767727,106.7751417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32445297,2.069778636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405160417,102.6363276,90.72961338,104.7061062,218.5867309,0,0.278800921,73.81134706,-0.278800921,106.1886529,0.870660563,0,281.0444596,104.7061062,349.5725121,6,8,24% +2018-06-09 17:00:00,42.71322376,96.49455272,729.3358498,846.1287271,107.6359498,518.4078465,408.519476,109.8883705,104.3903288,5.498041708,180.0815418,0,180.0815418,3.24562102,176.8359207,0.745486389,1.684147655,-0.82624333,0.82624333,0.671449621,0.671449621,0.147580775,3.958245524,127.3107824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3439547,2.351441381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867735407,122.3759666,103.2116901,124.7274079,408.519476,0,0.482810077,61.13090602,-0.482810077,118.869094,0.94643961,0,489.8507035,124.7274079,571.4822975,6,9,17% +2018-06-09 18:00:00,31.17610992,109.240106,870.6202968,881.1110235,116.7591663,707.3739421,587.5723919,119.8015502,113.2384467,6.563103549,214.6126903,0,214.6126903,3.52071966,211.0919706,0.544125766,1.906599524,-0.468613746,0.468613746,0.61029136,0.61029136,0.13411032,4.348419108,139.8601061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8491022,2.550749409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150414841,134.4388538,111.999517,136.9896032,587.5723919,0,0.666853979,48.17528473,-0.666853979,131.8247153,0.975021067,0,684.8949773,136.9896032,774.5519328,6,10,13% +2018-06-09 19:00:00,20.8586229,130.6255362,963.0978428,899.6419752,122.4167338,862.2270514,736.2413954,125.985656,118.7254176,7.260238353,237.2055385,0,237.2055385,3.691316194,233.5142223,0.364051647,2.279845694,-0.186903846,0.186903846,0.56211613,0.56211613,0.127107266,4.485189039,144.2590972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1233873,2.674346017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.249504191,138.6673314,117.3728915,141.3416774,736.2413954,0,0.818371547,35.07788991,-0.818371547,144.9221101,0.988903057,0,845.4442579,141.3416774,937.949559,6,11,11% +2018-06-09 20:00:00,14.97872114,172.5902627,1000.136971,906.3025967,124.6288314,968.5822609,840.1719936,128.4102673,120.8708123,7.539454947,246.2528069,0,246.2528069,3.758019098,242.4947878,0.261428002,3.012268341,0.058320106,-0.058320106,0.520180364,0.520180364,0.124611763,4.372669258,140.6400743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1856223,2.722672044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.167983992,135.1885889,119.3536063,137.911261,840.1719936,0,0.927032535,22.02313265,-0.927032535,157.9768673,0.99606446,0,956.2190698,137.911261,1046.479232,6,12,9% +2018-06-09 21:00:00,18.53837282,220.347378,979.1140809,902.5709624,123.3766833,1016.461427,889.4240303,127.0373966,119.656421,7.380975522,241.1178069,0,241.1178069,3.720262212,237.3975447,0.323555644,3.845787245,0.291424352,-0.291424352,0.48031719,0.48031719,0.126008486,4.028548504,129.5719679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0183033,2.695317308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.918669677,124.5495041,117.9369729,127.2448214,889.4240303,0,0.985433908,9.791240973,-0.985433908,170.208759,0.99926093,0,1006.703657,127.2448214,1089.982847,6,13,8% +2018-06-09 22:00:00,28.12077905,246.1179434,901.5248374,887.6311991,118.6731848,1000.29298,878.4021541,121.8908255,115.0947504,6.79607503,222.1635687,0,222.1635687,3.578434379,218.5851343,0.490800183,4.295568461,0.53319022,-0.53319022,0.438972792,0.438972792,0.131636068,3.485191792,112.0957483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.633452,2.592563527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525009589,107.750697,113.1584615,110.3432605,878.4021541,0,0.989602613,8.269452295,-0.989602613,171.7305477,0.999474669,0,991.0991634,110.3432605,1063.316621,6,14,7% +2018-06-09 23:00:00,39.45918247,260.4594724,772.9192808,857.9387109,110.5240802,918.8516965,805.8337331,113.0179634,107.1913714,5.826592021,190.735937,0,190.735937,3.332708808,187.4032282,0.688692654,4.545875361,0.809462927,-0.809462927,0.391727376,0.391727376,0.142995631,2.789234489,89.71136908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0364234,2.414536186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020790892,86.2339803,105.0572143,88.64851649,805.8337331,0,0.939267249,20.07113762,-0.939267249,159.9288624,0.996767014,0,908.2856985,88.64851649,966.3043795,6,15,6% +2018-06-09 00:00:00,51.24534682,270.6113102,602.6963627,805.0465353,98.7478525,774.8470937,674.5334736,100.3136202,95.7702404,4.543379762,149.108323,0,149.108323,2.977612094,146.1307109,0.894400028,4.723058357,1.166025445,-1.166025445,0.330751595,0.330751595,0.163843452,2.000920638,64.35648584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.05799787,2.157269826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449660191,61.86190211,93.50765806,64.01917193,674.5334736,0,0.837881345,33.08293353,-0.837881345,146.9170665,0.990325679,0,761.5154785,64.01917193,803.4147462,6,16,6% +2018-06-09 01:00:00,63.01907412,279.195123,404.0595461,708.9201973,82.42681028,573.8484078,490.8610985,82.98730937,79.94133783,3.045971534,100.4543874,0,100.4543874,2.485472453,97.96891498,1.099890335,4.872874153,1.714698472,-1.714698472,0.236922981,0.236922981,0.203996691,1.195812383,38.46143683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84265464,1.800716331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866362001,36.97059603,77.70901664,38.77131236,490.8610985,0,0.692406706,46.17907628,-0.692406706,133.8209237,0.977788105,0,557.6671602,38.77131236,583.0422087,6,17,5% +2018-06-09 02:00:00,74.5069126,287.3757137,195.8172176,516.0339763,57.97313077,322.3906186,264.6894387,57.70117988,56.22502698,1.4761529,49.2262553,0,49.2262553,1.748103791,47.47815151,1.30039094,5.015652394,2.866837733,-2.866837733,0.039895563,0.039895563,0.296057372,0.478482503,15.38964207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.04563456,1.266495246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346658945,14.79310933,54.3922935,16.05960458,264.6894387,0,0.512930254,59.14078962,-0.512930254,120.8592104,0.95252086,0,306.5145053,16.05960458,317.0251953,6,18,3% +2018-06-09 03:00:00,85.39260961,295.8479372,22.81102537,109.8444775,13.98749367,48.11378948,34.3761112,13.73767827,13.56571913,0.171959145,5.95257174,0,5.95257174,0.421774543,5.530797197,1.490382195,5.16352059,8.643542487,-8.643542487,0,0,0.613190045,0.105443636,3.391429782,0.486647478,1,0.115181229,0,0.949500692,0.988262655,0.724496596,1,13.15059786,0.30557422,0.06763092,0.312029739,0.826179835,0.550676431,0.961238037,0.922476074,0.072202473,3.259971306,13.22280034,3.565545526,17.64706339,0,0.312952567,71.7627437,-0.312952567,108.2372563,0.890231379,0,28.93276992,3.565545526,31.26634816,6,19,8% +2018-06-09 04:00:00,95.7680309,305.1558645,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671467457,5.325974566,-5.656184593,5.656184593,1,0.502581778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099982228,84.26185289,-0.099982228,95.73814711,0.549911126,0,0,0,0,6,20,0% +2018-06-09 05:00:00,104.7788048,315.7899602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82873513,5.51157455,-1.554429394,1.554429394,1,0.795976772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.10408779,95.97461281,0.10408779,84.02538719,0,0.569636262,0,0,0,6,21,0% +2018-06-09 06:00:00,112.083375,328.1435689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956223931,5.727185696,-0.506408568,0.506408568,1,0.616754655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288166318,106.748208,0.288166318,73.25179205,0,0.87648909,0,0,0,6,22,0% +2018-06-09 07:00:00,117.0565261,342.3097898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043021791,5.974432893,0.078905603,-0.078905603,1,0.516660037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.439713036,116.0855732,0.439713036,63.91442684,0,0.936289475,0,0,0,6,23,0% +2018-06-10 08:00:00,119.1078,357.7874212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078823274,6.244568522,0.548674707,-0.548674707,1,0.436324789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548404491,123.2576231,0.548404491,56.74237688,0,0.958826421,0,0,0,6,0,0% +2018-06-10 09:00:00,117.9408063,13.44698419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058455393,0.234694149,1.039179467,-1.039179467,1,0.352443534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606836972,127.3611452,0.606836972,52.63885483,0,0.967605548,0,0,0,6,1,0% +2018-06-10 10:00:00,113.7284779,28.05799785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984936393,0.489704444,1.692187573,-1.692187573,1,0.240772571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61103055,127.6640558,0.61103055,52.33594419,0,0.968171031,0,0,0,6,2,0% +2018-06-10 11:00:00,107.0072058,40.92484807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867628064,0.714273345,2.857384447,-2.857384447,1,0.041512171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560699989,124.1042205,0.560699989,55.89577951,0,0.960825752,0,0,0,6,3,0% +2018-06-10 12:00:00,98.41333843,52.00254829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717636784,0.907615687,6.430276348,-6.430276348,1,0,#DIV/0!,0,0,0.362849674,1,0.154278506,0,0.944813184,0.983575147,0.724496596,1,0,0,0.052963509,0.312029739,0.860809358,0.585305954,0.961238037,0.922476074,0,0,0,0,0,0,-0.459274118,117.3402776,0.459274118,62.65972245,0,0.941132554,0,0,0,6,4,0% +2018-06-10 13:00:00,88.18308515,61.62805609,2.64849126,14.92208081,2.175374275,2.12974416,0,2.12974416,2.109778714,0.019965446,5.309896248,4.602143318,0.70775293,0.065595561,0.642157369,1.53908518,1.07561249,-31.18815339,31.18815339,0,0,0.821363584,0.01639889,0.527444678,1,0.794392763,0,0.032052476,0.961238037,1,0.637624518,0.913127922,2.027999549,0.045541031,0.115824807,0.213447441,0.724496596,0.448993192,0.975827302,0.937065338,0.01188094,0.51049132,2.039880489,0.556032351,0,0.946233971,-0.308411633,107.9635342,0.308411633,72.0364658,0,0.887879008,2.039880489,1.39617363,2.953648207,6,5,45% +2018-06-10 14:00:00,77.61460371,70.27496158,140.3993821,428.9971124,48.38534307,47.98473631,0,47.98473631,46.92634646,1.058389847,92.34479322,56.84434092,35.50045229,1.458996617,34.04145568,1.354630382,1.226529461,-4.553742375,4.553742375,0.6911105,0.6911105,0.344626467,0.844131521,27.15017139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10738915,1.057038082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611570413,26.09777745,45.71895956,27.15481553,0,56.84434092,-0.132505183,97.61438135,0.132505183,82.38561865,0,0.67265627,45.71895956,65.39151788,88.51640018,6,6,94% +2018-06-10 15:00:00,66.25283028,78.467784,346.0798842,668.8494605,76.73321983,123.022817,45.99449054,77.02832649,74.41943014,2.608896352,86.22486438,0,86.22486438,2.313789693,83.91107469,1.156330027,1.369521187,-2.248199308,2.248199308,0.914618414,0.914618414,0.221721121,2.435533403,78.33512632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53478693,1.676332756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764535659,75.29870304,73.29932259,76.9750358,45.99449054,0,0.068766581,86.05685322,-0.068766581,93.94314678,0,0,73.29932259,76.9750358,123.677944,6,7,69% +2018-06-10 16:00:00,54.53156194,86.83857689,549.6783359,784.0266762,94.74340406,314.4997299,218.4694815,96.03024835,91.88654086,4.143707481,136.1327397,0,136.1327397,2.856863198,133.2758765,0.951755302,1.515619084,-1.343404031,1.343404031,0.759889309,0.759889309,0.172361539,3.320249864,106.7906489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32483815,2.069787662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405509724,102.6512337,90.73034788,104.7210214,218.4694815,0,0.278650572,73.82031688,-0.278650572,106.1796831,0.870563799,0,280.9219697,104.7210214,349.4597838,6,8,24% +2018-06-10 17:00:00,42.71236775,96.36251738,729.3476772,846.132073,107.6367438,518.2198822,408.3306525,109.8892297,104.3910989,5.498130868,180.0844334,0,180.0844334,3.245644963,176.8387884,0.745471449,1.681843204,-0.827165432,0.827165432,0.671607309,0.671607309,0.14757947,3.9590464,127.3365413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3446949,2.351458727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868315639,122.400727,103.2130106,124.7521857,408.3306525,0,0.482585007,61.14563056,-0.482585007,118.8543694,0.946391311,0,489.653592,124.7521857,571.3014025,6,9,17% +2018-06-10 18:00:00,31.16866418,109.0680956,870.6990874,881.1280986,116.7640785,707.1766738,587.3697657,119.8069082,113.2432107,6.563697506,214.6319421,0,214.6319421,3.520867779,211.1110743,0.543995813,1.903597377,-0.46962285,0.46962285,0.610463927,0.610463927,0.134103825,4.349776806,139.9037743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8536815,2.55085672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151398489,134.4808294,112.00508,137.0316861,587.3697657,0,0.666611094,48.19395686,-0.666611094,131.8060431,0.974993748,0,684.686929,137.0316861,774.3714269,6,10,13% +2018-06-10 19:00:00,20.83095699,130.3874441,963.2994374,899.679318,122.42885,862.0884656,736.0895391,125.9989265,118.7371685,7.261758059,237.2547828,0,237.2547828,3.691681543,233.5631013,0.363568786,2.275690203,-0.188008857,0.188008857,0.562305098,0.562305098,0.127093244,4.487281123,144.3263859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1346827,2.674610711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251019899,138.7320118,117.3857026,141.4066225,736.0895391,0,0.81816879,35.09809948,-0.81816879,144.9019005,0.988887916,0,845.2957528,141.4066225,937.8435591,6,11,11% +2018-06-10 20:00:00,14.90843555,172.3791457,1000.508316,906.3673918,124.6508719,968.5689154,840.1344729,128.4344425,120.8921882,7.542254306,246.3435085,0,246.3435085,3.758683701,242.5848248,0.260201287,3.008583654,0.05707586,-0.05707586,0.520393143,0.520393143,0.124587542,4.37561004,140.73466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2061697,2.723153547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.170114579,135.2795083,119.3762843,138.0026618,840.1344729,0,0.926924866,22.03957831,-0.926924866,157.9604217,0.996058195,0,956.1991112,138.0026618,1046.519093,6,12,9% +2018-06-10 21:00:00,18.44976428,220.3586599,979.6897938,902.674839,123.4110905,1016.633628,889.5585214,127.0751063,119.6897908,7.385315488,241.2584327,0,241.2584327,3.721299718,237.537133,0.322009133,3.84598415,0.289962504,-0.289962504,0.480567181,0.480567181,0.125969558,4.032381545,129.6952517,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0503795,2.696068978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.921446703,124.6680091,117.9718262,127.3640781,889.5585214,0,0.985469499,9.779242276,-0.985469499,170.2207577,0.999262763,0,1006.874532,127.3640781,1090.231774,6,13,8% +2018-06-10 22:00:00,28.03773347,246.1826634,902.3244522,887.7953109,118.7223793,1000.701688,878.7571235,121.9445643,115.1424615,6.802102864,222.358928,0,222.358928,3.579917773,218.7790102,0.489350764,4.296698037,0.531372948,-0.531372948,0.439283564,0.439283564,0.131573935,3.489881671,112.2465909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6793136,2.59363824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.528407391,107.8956927,113.207721,110.4893309,878.7571235,0,0.989819514,8.182594127,-0.989819514,171.8174059,0.99948574,0,991.5129352,110.4893309,1063.825993,6,14,7% +2018-06-10 23:00:00,39.37997609,260.5206806,773.9451151,858.204712,110.5911882,919.5378037,806.4470227,113.090781,107.2564558,5.834325193,190.9866859,0,190.9866859,3.334732362,187.6519536,0.687310242,4.546943646,0.807025324,-0.807025324,0.392144231,0.392144231,0.142892805,2.794656043,89.8857449,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.098985,2.416002244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02471879,86.40159697,105.1237038,88.81759921,806.4470227,0,0.939690742,20.00031472,-0.939690742,159.9996853,0.996791005,0,908.982842,88.81759921,967.1121843,6,15,6% +2018-06-10 00:00:00,51.16716641,270.6631142,603.9311536,805.5052813,98.83881617,775.8451593,675.43401,100.4111493,95.85846119,4.552688138,149.4104553,0,149.4104553,2.980354984,146.4301003,0.893035523,4.723962507,1.162375857,-1.162375857,0.331375711,0.331375711,0.163659079,2.006834702,64.54670246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.14279905,2.15925704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45394491,62.04474555,93.59674396,64.20400259,675.43401,0,0.838522137,33.01561156,-0.838522137,146.9843884,0.990371282,0,762.5271904,64.20400259,804.547426,6,16,6% +2018-06-10 01:00:00,62.94023194,279.2382994,405.4595044,709.8002165,82.55739888,575.2005728,492.076059,83.12451371,80.0679887,3.056525011,100.7977613,0,100.7977613,2.489410181,98.30835108,1.098514279,4.873627723,1.708158274,-1.708158274,0.238041421,0.238041421,0.203614413,1.201786417,38.65358229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.96439627,1.803569202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870690168,37.15529356,77.83508644,38.95886276,492.076059,0,0.693259945,46.11128101,-0.693259945,133.888719,0.977876981,0,559.0249376,38.95886276,584.5227341,6,17,5% +2018-06-10 02:00:00,74.42654589,287.4111571,197.2706038,518.0146558,58.19737234,324.1758471,266.2462311,57.92961597,56.44250683,1.487109139,49.58540732,0,49.58540732,1.754865501,47.83054182,1.298988277,5.016270998,2.849947001,-2.849947001,0.042784049,0.042784049,0.295012897,0.483570862,15.5533012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.25468446,1.271394082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350345444,14.95042471,54.60502991,16.2218188,266.2462311,0,0.513974321,59.07107819,-0.513974321,120.9289218,0.952718875,0,308.2628398,16.2218188,318.8796958,6,18,3% +2018-06-10 03:00:00,85.31202266,295.8756211,23.67210691,113.4416184,14.40059407,49.77961111,35.63479775,14.14481336,13.96636302,0.178450341,6.173807429,0,6.173807429,0.434231044,5.739576385,1.488975687,5.164003764,8.490082218,-8.490082218,0,0,0.608335968,0.108557761,3.491590756,0.479637129,1,0.117244297,0,0.949262087,0.98802405,0.724496596,1,13.53944446,0.314598913,0.066838225,0.312029739,0.828007643,0.552504239,0.961238037,0.922476074,0.074323626,3.356249843,13.61376808,3.670848756,18.54302568,0,0.314124554,71.69202801,-0.314124554,108.307972,0.89082747,0,30.13240473,3.670848756,32.53490182,6,19,8% +2018-06-10 04:00:00,95.68286169,305.1745173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669980974,5.32630012,-5.738839919,5.738839919,1,0.488446885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101310132,84.18538132,-0.101310132,95.81461868,0.556465947,0,0,0,0,6,20,0% +2018-06-10 05:00:00,104.6921099,315.796824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827222018,5.511694346,-1.563603604,1.563603604,1,0.797545654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102694862,95.89437388,0.102694862,84.10562612,0,0.563120725,0,0,0,6,21,0% +2018-06-10 06:00:00,111.9970526,328.1345114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95471732,5.727027614,-0.508989759,0.508989759,1,0.617196065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286765239,106.6643944,0.286765239,73.33560564,0,0.87564135,0,0,0,6,22,0% +2018-06-10 07:00:00,116.9740102,342.2806202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041581617,5.973923788,0.078187429,-0.078187429,1,0.516782852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438361342,115.999375,0.438361342,64.000625,0,0.935938847,0,0,0,6,23,0% +2018-06-11 08:00:00,119.0336839,357.7368547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077529705,6.243685971,0.548834355,-0.548834355,1,0.436297487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547156402,123.1721481,0.547156402,56.82785186,0,0.95861845,0,0,0,6,0,0% +2018-06-11 09:00:00,117.8792357,13.37891689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057380782,0.23350615,1.040008166,-1.040008166,1,0.352301819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605739648,127.2820852,0.605739648,52.71791484,0,0.967456286,0,0,0,6,1,0% +2018-06-11 10:00:00,113.681396,27.97958433,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984114658,0.48833587,1.693882083,-1.693882083,1,0.240482793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610120838,127.5982409,0.610120838,52.40175914,0,0.968049021,0,0,0,6,2,0% +2018-06-11 11:00:00,106.9741096,40.84225534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867050428,0.71283183,2.860998705,-2.860998705,1,0.040894096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560001887,124.0559283,0.560001887,55.94407173,0,0.960714587,0,0,0,6,3,0% +2018-06-11 12:00:00,98.39229646,51.91885723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717269532,0.906155003,6.443566756,-6.443566756,1,0,#DIV/0!,0,0,0.363771005,1,0.153965304,0,0.944852116,0.983614079,0.724496596,1,0,0,0.053078146,0.312029739,0.860532077,0.585028673,0.961238037,0.922476074,0,0,0,0,0,0,-0.458797127,117.3095155,0.458797127,62.69048452,0,0.94101937,0,0,0,6,4,0% +2018-06-11 13:00:00,88.17263884,61.54357686,2.68468838,15.1142449,2.2027244,2.156542447,0,2.156542447,2.136304132,0.020238315,5.375030451,4.657676403,0.717354048,0.066420268,0.65093378,1.538902858,1.07413805,-31.00298057,31.00298057,0,0,0.820476751,0.016605067,0.534076033,1,0.793045313,0,0.032243784,0.961238037,1,0.637130222,0.912633626,2.05349679,0.046105426,0.115824807,0.212887669,0.724496596,0.448993192,0.975904221,0.937142258,0.012030314,0.516922713,2.065527104,0.563028139,0,0.96392796,-0.308164677,107.9486602,0.308164677,72.05133981,0,0.887749088,2.065527104,1.418754307,2.994073423,6,5,45% +2018-06-11 14:00:00,77.61066715,70.1880619,140.4682656,429.1214834,48.39875388,47.998262,0,47.998262,46.93935288,1.05890912,92.35003418,56.83247589,35.51755829,1.459401002,34.05815729,1.354561676,1.225012776,-4.552277292,4.552277292,0.691361044,0.691361044,0.34455294,0.844695516,27.16831141,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11989141,1.057331058,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611979026,26.11521432,45.73187044,27.17254538,0,56.83247589,-0.13243913,97.61056313,0.13243913,82.38943687,0,0.672468072,45.73187044,65.39057089,88.52869128,6,6,94% +2018-06-11 15:00:00,66.254027,78.37520129,346.0582505,668.8330542,76.73098005,122.9558827,45.92989151,77.02599116,74.4172579,2.608733268,86.21955152,0,86.21955152,2.313722156,83.90582937,1.156350914,1.367905314,-2.24886464,2.24886464,0.914732193,0.914732193,0.221728509,2.435613807,78.33771239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53269889,1.676283826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764593912,75.30118887,73.2972928,76.97747269,45.92989151,0,0.068671683,86.06230335,-0.068671683,93.93769665,0,0,73.2972928,76.97747269,123.6775091,6,7,69% +2018-06-11 16:00:00,54.53551901,86.73489461,549.6132288,783.9991662,94.73835938,314.3208158,218.2959509,96.02486498,91.8816483,4.143216677,136.1168016,0,136.1168016,2.856711083,133.2600905,0.951824366,1.513809487,-1.34433404,1.34433404,0.76004835,0.76004835,0.172372779,3.320413134,106.7959002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32013523,2.069677455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405628012,102.6562815,90.72576325,104.7259589,218.2959509,0,0.278439009,73.83293804,-0.278439009,106.167062,0.87042746,0,280.7365533,104.7259589,349.2775989,6,8,24% +2018-06-11 17:00:00,42.7158807,96.23831867,729.2991381,846.1183412,107.6334851,517.9764327,408.0907293,109.8857034,104.3879384,5.49776496,180.0725663,0,180.0725663,3.245546702,176.8270196,0.745532761,1.679675527,-0.828153963,0.828153963,0.671776358,0.671776358,0.147584824,3.959584812,127.3538585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.341657,2.351387537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868705718,122.417373,103.2103627,124.7687605,408.0907293,0,0.482309282,61.16366624,-0.482309282,118.8363338,0.94633208,0,489.3997114,124.7687605,571.0583698,6,9,17% +2018-06-11 18:00:00,31.16604714,108.9056602,870.7267768,881.1340987,116.7658047,706.9330931,587.124302,119.8087911,113.2448849,6.56390624,214.6387078,0,214.6387078,3.520919831,211.117788,0.543950138,1.900762345,-0.470653179,0.470653179,0.610640124,0.610640124,0.134101543,4.350910745,139.9402457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8552908,2.550894432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152220024,134.5158871,112.0075108,137.0667815,587.124302,0,0.666327978,48.21571497,-0.666327978,131.784285,0.974961878,0,684.431323,137.0667815,774.1387901,6,10,13% +2018-06-11 19:00:00,20.80924475,130.159458,963.4574706,899.7085829,122.4383475,861.9127962,735.9034672,126.009329,118.7463796,7.26294938,237.2933862,0,237.2933862,3.691967927,233.6014183,0.363189836,2.271711094,-0.189107774,0.189107774,0.562493024,0.562493024,0.127082255,4.489173788,144.3872605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1435368,2.674818195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.252391128,138.7905268,117.3959279,141.465345,735.9034672,0,0.817935364,35.12135336,-0.817935364,144.8786466,0.988870475,0,845.1091394,141.465345,937.6953784,6,11,11% +2018-06-11 20:00:00,14.84513509,172.1659893,1000.841297,906.4254602,124.6706332,968.5263087,840.0701907,128.4561181,120.9113536,7.544764455,246.4248394,0,246.4248394,3.759279576,242.6655598,0.259096485,3.004863374,0.055858758,-0.055858758,0.520601279,0.520601279,0.124565836,4.378362483,140.823188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2245922,2.723585256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.172108715,135.3646048,119.3967009,138.08819,840.0701907,0,0.926794566,22.05946506,-0.926794566,157.9405349,0.996050612,0,956.1491281,138.08819,1046.525087,6,12,9% +2018-06-11 21:00:00,18.36630756,220.3560025,980.2296034,902.77215,123.4433459,1016.781956,889.6714981,127.1104584,119.7210736,7.389384801,241.3902884,0,241.3902884,3.722272337,237.668016,0.320552538,3.84593777,0.288548682,-0.288548682,0.480808959,0.480808959,0.125933093,4.036025026,129.8124386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0804497,2.696773637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.924086392,124.7806536,118.0045361,127.4774272,889.6714981,0,0.985488418,9.772858305,-0.985488418,170.2271417,0.999263737,0,1007.021002,127.4774272,1090.452428,6,13,8% +2018-06-11 22:00:00,27.95825198,246.2353659,903.0877254,887.951754,118.7693229,1001.088692,879.0928462,121.9958463,115.1879896,6.80785674,222.5454079,0,222.5454079,3.581333297,218.9640746,0.48796355,4.297617869,0.529629841,-0.529629841,0.439581652,0.439581652,0.131514713,3.494370137,112.3909554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.723077,2.594663782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531659269,108.0344614,113.2547362,110.6291251,879.0928462,0,0.99002321,8.100181892,-0.99002321,171.8998181,0.999496134,0,991.904637,110.6291251,1064.309187,6,14,7% +2018-06-11 23:00:00,39.30370348,260.572401,774.931349,858.4599483,110.6556696,920.2004673,807.0397146,113.1607527,107.3189929,5.841759841,191.2277541,0,191.2277541,3.336676714,187.8910774,0.685979034,4.547846337,0.804701806,-0.804701806,0.392541576,0.392541576,0.142794158,2.799856709,90.05301621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.159098,2.417410921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.028486655,86.56238451,105.1875847,88.97979543,807.0397146,0,0.940101767,19.93134607,-0.940101767,160.0686539,0.996814269,0,909.6562876,88.97979543,967.8917841,6,15,6% +2018-06-11 00:00:00,51.09177722,270.7070619,605.1206499,805.9459592,98.92635085,776.8132933,676.3082819,100.5050114,95.94335637,4.561655063,149.7015019,0,149.7015019,2.982994477,146.7185074,0.891719733,4.724729539,1.158914126,-1.158914126,0.331967702,0.331967702,0.163482028,2.012506312,64.72912093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22440353,2.161169344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458053972,62.22009313,93.6824575,64.38126248,676.3082819,0,0.839148425,32.94969569,-0.839148425,147.0503043,0.990415785,0,763.5088555,64.38126248,805.6451042,6,16,6% +2018-06-11 01:00:00,62.86430466,279.2746369,406.8070169,710.6437358,82.68281946,576.5098808,493.2535703,83.25631052,80.18962739,3.066683129,101.1282632,0,101.1282632,2.493192074,98.63507109,1.097189098,4.874261931,1.701980445,-1.701980445,0.239097892,0.239097892,0.203248263,1.207506247,38.83755168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.08132001,1.80630917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.874834165,37.33213193,77.95615417,39.1384411,493.2535703,0,0.694094024,46.04493346,-0.694094024,133.9550665,0.97796365,0,560.3402162,39.1384411,585.9555432,6,17,5% +2018-06-11 02:00:00,74.34939001,287.4404156,198.6665809,519.9046206,58.41165789,325.8948845,267.746921,58.14796349,56.65033089,1.497632604,49.93033962,0,49.93033962,1.761327001,48.16901262,1.297641653,5.016781656,2.834070872,-2.834070872,0.045499027,0.045499027,0.294018539,0.48843791,15.70984218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.45445285,1.276075417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.353871603,15.10089786,54.80832445,16.37697327,267.746921,0,0.514992386,59.00305395,-0.514992386,120.9969461,0.952911186,0,309.9473605,16.37697327,320.665762,6,18,3% +2018-06-11 03:00:00,85.234958,295.8975773,24.5075741,116.901635,14.79657453,51.39002948,36.85487782,14.53515166,14.35040321,0.184748446,6.388316394,0,6.388316394,0.446171315,5.942145078,1.487630655,5.164386972,8.348852383,-8.348852383,0,0,0.603755168,0.111542829,3.587600802,0.473014149,1,0.119209028,0,0.949033945,0.987795908,0.724496596,1,13.91215554,0.323249599,0.066085328,0.312029739,0.829748315,0.554244911,0.961238037,0.922476074,0.076357973,3.448538352,13.98851351,3.771787952,19.42199914,0,0.315264007,71.62324764,-0.315264007,108.3767524,0.891402764,0,31.30133723,3.771787952,33.76989701,6,19,8% +2018-06-11 04:00:00,95.60194945,305.1878418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668568789,5.326532676,-5.820325112,5.820325112,1,0.474512096,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102592855,84.11150174,-0.102592855,95.88849826,0.562636625,0,0,0,0,6,20,0% +2018-06-11 05:00:00,104.6103547,315.798858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82579512,5.511729846,-1.572623379,1.572623379,1,0.799088126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101357726,95.81735975,0.101357726,84.18264025,0,0.556697695,0,0,0,6,21,0% +2018-06-11 06:00:00,111.9163952,328.1214168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953309582,5.726799069,-0.511616052,0.511616052,1,0.617645187,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285430366,106.5845753,0.285430366,73.41542466,0,0.874825926,0,0,0,6,22,0% +2018-06-11 07:00:00,116.8978037,342.248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040251563,5.973366205,0.077347057,-0.077347057,1,0.516926564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437085351,115.9180624,0.437085351,64.08193758,0,0.935605867,0,0,0,6,23,0% +2018-06-12 08:00:00,118.9662728,357.6852135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076353159,6.24278466,0.548808239,-0.548808239,1,0.436301953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545991942,123.0924756,0.545991942,56.90752444,0,0.958423557,0,0,0,6,0,0% +2018-06-12 09:00:00,117.8244053,13.31158818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056423812,0.232331042,1.04056044,-1.04056044,1,0.352207374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604731762,127.2095421,0.604731762,52.79045788,0,0.967318714,0,0,0,6,1,0% +2018-06-12 10:00:00,113.6407678,27.90342971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983405562,0.487006721,1.69511876,-1.69511876,1,0.240271309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609303857,127.5391843,0.609303857,52.46081568,0,0.967939138,0,0,0,6,2,0% +2018-06-12 11:00:00,106.9470006,40.76299678,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866577286,0.711448507,2.86363966,-2.86363966,1,0.040442466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559397065,124.014111,0.559397065,55.98588896,0,0.960618051,0,0,0,6,3,0% +2018-06-12 12:00:00,98.37673096,51.83922618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716997863,0.904765179,6.452777337,-6.452777337,1,0,#DIV/0!,0,0,0.364407948,1,0.153748986,0,0.944878992,0.983640955,0.724496596,1,0,0,0.053157347,0.312029739,0.860340568,0.584837164,0.961238037,0.922476074,0,0,0,0,0,0,-0.458411182,117.2846314,0.458411182,62.7153686,0,0.940927617,0,0,0,6,4,0% +2018-06-12 13:00:00,88.16679987,61.46370632,2.705050814,15.22230454,2.218090519,2.171598721,0,2.171598721,2.151206906,0.020391816,5.411185568,4.688431067,0.722754501,0.066883613,0.655870888,1.538800949,1.072744046,-30.89773017,30.89773017,0,0,0.819981091,0.016720903,0.537801726,1,0.792271535,0,0.032353544,0.961238037,1,0.636846761,0.912350165,2.067821903,0.046422355,0.115824807,0.212566667,0.724496596,0.448993192,0.9759483,0.937186337,0.012114237,0.520536321,2.07993614,0.566958676,0,0.97392059,-0.307997456,107.9385892,0.307997456,72.06141076,0,0.887660997,2.07993614,1.431469997,3.016804624,6,5,45% +2018-06-12 14:00:00,77.61132093,70.10629794,140.4568252,429.1008306,48.39652686,47.99601589,0,47.99601589,46.93719301,1.058822877,92.34983657,56.83511931,35.51471726,1.459333849,34.05538342,1.354573087,1.223585725,-4.552541871,4.552541871,0.691315799,0.691315799,0.344565149,0.844599309,27.16521707,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11781527,1.057282406,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611909324,26.11223993,45.72972459,27.16952233,0,56.83511931,-0.132451665,97.6112877,0.132451665,82.3887123,0,0.672503801,45.72972459,65.39135607,88.52705932,6,6,94% +2018-06-12 15:00:00,66.2595534,78.28839251,345.9583463,668.7572743,76.72063547,122.8296542,45.81444876,77.01520539,74.40722525,2.607980148,86.19501665,0,86.19501665,2.313410229,83.88160642,1.156447368,1.366390215,-2.249952439,2.249952439,0.914918217,0.914918217,0.221762638,2.435295814,78.32748466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52305512,1.676057835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764363527,75.29135758,73.28741865,76.96741542,45.81444876,0,0.068506842,86.07177035,-0.068506842,93.92822965,0,0,73.28741865,76.96741542,123.6610527,6,7,69% +2018-06-12 16:00:00,54.54367385,86.63787329,549.4790454,783.9424551,94.72796141,314.0811364,218.0673674,96.01376901,91.87156386,4.142205145,136.0839538,0,136.0839538,2.856397545,133.2275562,0.951966695,1.512116146,-1.345421766,1.345421766,0.760234362,0.760234362,0.172395949,3.320263182,106.7910772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31044169,2.069450298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405519372,102.6516454,90.71596106,104.7210957,218.0673674,0,0.27816757,73.84913007,-0.27816757,106.1508699,0.870252231,0,280.4895741,104.7210957,349.0274369,6,8,24% +2018-06-12 17:00:00,42.72367079,96.12208597,729.1914897,846.0878826,107.6262577,517.6789344,407.801052,109.8778824,104.380929,5.496953461,180.0462477,0,180.0462477,3.245328769,176.800919,0.745668724,1.677646884,-0.829206498,0.829206498,0.671956352,0.671956352,0.1475967,3.959865169,127.3628758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3349192,2.351229646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868908835,122.4260407,103.2038281,124.7772703,407.801052,0,0.481984272,61.18492168,-0.481984272,118.8150783,0.946262175,0,489.0905385,124.7772703,570.7547664,6,9,17% +2018-06-12 18:00:00,31.16816113,108.7530097,870.7044101,881.129252,116.7644103,706.6445791,586.837309,119.8072701,113.2435325,6.563737631,214.6332427,0,214.6332427,3.520877785,211.1123649,0.543987033,1.898098091,-0.471702813,0.471702813,0.610819622,0.610819622,0.134103387,4.351823873,139.969615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8539909,2.55086397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152881582,134.544118,112.0068725,137.0949819,586.837309,0,0.666005932,48.24045588,-0.666005932,131.7595441,0.974925594,0,684.1295843,137.0949819,773.855508,6,10,13% +2018-06-12 19:00:00,20.79340146,129.9420313,963.5726873,899.7299143,122.4452715,861.701235,735.6843223,126.0169127,118.7530948,7.263817931,237.3215306,0,237.3215306,3.692176711,233.6293539,0.362913318,2.267916284,-0.190198916,0.190198916,0.56267962,0.56267962,0.127074245,4.490868344,144.4417632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1499917,2.674969458,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253618827,138.8429169,117.4036105,141.5178863,735.6843223,0,0.817672404,35.1475333,-0.817672404,144.8524667,0.988850816,0,844.8856532,141.5178863,937.5062795,6,11,11% +2018-06-12 20:00:00,14.78883469,171.9514321,1001.136293,906.4768787,124.6881384,968.4553353,839.9800161,128.4753192,120.928331,7.546988258,246.4968924,0,246.4968924,3.759807423,242.737085,0.258113858,3.001118644,0.05467038,-0.05467038,0.520804504,0.520804504,0.124546617,4.380926172,140.905645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2409115,2.723967679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173966099,135.4438656,119.4148776,138.1678333,839.9800161,0,0.926642517,22.0826497,-0.926642517,157.9173503,0.996041759,0,956.0700505,138.1678333,1046.498134,6,12,9% +2018-06-12 21:00:00,18.28807435,220.3394292,980.7334846,902.8629078,123.4734492,1016.906924,889.7634714,127.1434524,119.7502691,7.393183271,241.5133679,0,241.5133679,3.72318006,237.7901879,0.319187111,3.845648512,0.287184463,-0.287184463,0.481042254,0.481042254,0.125899086,4.039476828,129.9234604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1085136,2.69743128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.926587211,124.887372,118.0351008,127.5848033,889.7634714,0,0.985491223,9.771911441,-0.985491223,170.2280886,0.999263881,0,1007.1436,127.5848033,1090.645302,6,13,8% +2018-06-12 22:00:00,27.88240832,246.2760226,903.8142166,888.100468,118.8139907,1001.454062,879.4094183,122.0446438,115.2313105,6.813333337,222.722901,0,222.722901,3.582680196,219.1402208,0.486639829,4.298327462,0.527962564,-0.527962564,0.439866774,0.439866774,0.131458422,3.498653508,112.5287233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7647187,2.595639606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534762556,108.1668891,113.2994812,110.7625287,879.4094183,0,0.990213889,8.022274281,-0.990213889,171.9777257,0.999505859,0,992.2743471,110.7625287,1064.766207,6,14,7% +2018-06-12 23:00:00,39.2304434,260.6146254,775.8771462,858.704264,110.7174741,920.8392877,807.6114643,113.2278234,107.3789338,5.84888966,191.4589372,0,191.4589372,3.338540348,188.1203969,0.684700404,4.548583292,0.802494192,-0.802494192,0.3929191,0.3929191,0.142699749,2.804831483,90.21302203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2167155,2.418761117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.032090861,86.71618819,105.2488063,89.13494931,807.6114643,0,0.940500121,19.86428447,-0.940500121,160.1357155,0.996836796,0,910.3056307,89.13494931,968.6426723,6,15,6% +2018-06-12 00:00:00,51.01926261,270.7431596,606.2636679,806.3682762,99.01038026,777.7506377,677.1555141,100.5951236,96.02485199,4.570271616,149.9811736,0,149.9811736,2.985528274,146.9956454,0.890454115,4.725359562,1.155642225,-1.155642225,0.33252723,0.33252723,0.163312409,2.017929467,64.90354825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.30274021,2.163005072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.46198303,62.3877593,93.76472324,64.55076437,677.1555141,0,0.839759616,32.88525561,-0.839759616,147.1147444,0.990459152,0,764.4595993,64.55076437,806.7067835,6,16,6% +2018-06-12 01:00:00,62.79137872,279.3041531,408.1006244,711.4502721,82.80296994,577.7750747,494.3924849,83.38258978,80.30615489,3.076434889,101.4455363,0,101.4455363,2.496815054,98.94872122,1.0959163,4.874777087,1.696166433,-1.696166433,0.240092146,0.240092146,0.202898415,1.212965198,39.0131303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.19333067,1.808934007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.878789157,37.50090478,78.07211983,39.30983879,494.3924849,0,0.694907999,45.98011364,-0.694907999,134.0198864,0.978048029,0,561.6117153,39.30983879,587.3392186,6,17,5% +2018-06-12 02:00:00,74.27553275,287.4635179,200.0034627,521.7032327,58.61587478,327.5462066,269.1901062,58.35610047,56.84838989,1.507710584,50.26063998,0,50.26063998,1.767484894,48.49315509,1.2963526,5.017184866,2.819200876,-2.819200876,0.048041946,0.048041946,0.2930743,0.49307622,15.85902618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64483469,1.280536789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.357232043,15.24429919,55.00206674,16.52483598,269.1901062,0,0.515983205,58.93680354,-0.515983205,121.0631965,0.953097621,0,311.5665166,16.52483598,322.3816912,6,18,3% +2018-06-12 03:00:00,85.16150863,295.9138463,25.31459024,120.2161367,15.17468736,52.94064885,38.03270222,14.90794663,14.71711455,0.190832074,6.5953883,0,6.5953883,0.457572813,6.137815487,1.486348721,5.16467092,8.219115005,-8.219115005,0,0,0.599444321,0.114393203,3.679278638,0.466779782,1,0.121072528,0,0.948816736,0.987578699,0.724496596,1,14.26802767,0.331509945,0.065373029,0.312029739,0.831399283,0.555895879,0.961238037,0.922476074,0.07830161,3.536662575,14.34632928,3.86817252,20.27980576,0,0.31636936,71.55649939,-0.31636936,108.4435006,0.891956882,0,32.4350416,3.86817252,34.96668315,6,19,8% +2018-06-12 04:00:00,95.52537694,305.1958922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667232347,5.326673183,-5.900305334,5.900305334,1,0.460834672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103828809,84.04030657,-0.103828809,95.95969343,0.568438085,0,0,0,0,6,20,0% +2018-06-12 05:00:00,104.5336139,315.7961323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824455742,5.511682273,-1.581464763,1.581464763,1,0.800600092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100077995,95.74366181,0.100077995,84.25633819,0,0.550389673,0,0,0,6,21,0% +2018-06-12 06:00:00,111.8414647,328.1043704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952001799,5.726501553,-0.514280934,0.514280934,1,0.618100909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284163231,106.5088374,0.284163231,73.49116265,0,0.874044793,0,0,0,6,22,0% +2018-06-12 07:00:00,116.8279511,342.2140449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039032404,5.97276183,0.076387241,-0.076387241,1,0.517090702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435886415,115.8417113,0.435886415,64.15828873,0,0.935291217,0,0,0,6,23,0% +2018-06-13 08:00:00,118.9055907,357.6325972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075294057,6.241866334,0.548597867,-0.548597867,1,0.436337929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544912197,123.0186637,0.544912197,56.98133632,0,0.958242098,0,0,0,6,0,0% +2018-06-13 09:00:00,117.7763191,13.24509502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055584549,0.231170518,1.040837364,-1.040837364,1,0.352160017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603814066,127.1435511,0.603814066,52.85644886,0,0.967193052,0,0,0,6,1,0% +2018-06-13 10:00:00,113.6065783,27.82962578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982808842,0.4857186,1.695898728,-1.695898728,1,0.240137927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608579977,127.4868968,0.608579977,52.51310324,0,0.96784153,0,0,0,6,2,0% +2018-06-13 11:00:00,106.9258469,40.68715911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866208084,0.71012489,2.865309155,-2.865309155,1,0.040156966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558885492,123.9787571,0.558885492,56.02124295,0,0.960536236,0,0,0,6,3,0% +2018-06-13 12:00:00,98.3665955,51.76373774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716820965,0.903447657,6.457909014,-6.457909014,1,0,#DIV/0!,0,0,0.364762268,1,0.153628726,0,0.944893929,0.983655892,0.724496596,1,0,0,0.053201388,0.312029739,0.860234099,0.584730695,0.961238037,0.922476074,0,0,0,0,0,0,-0.458115859,117.265594,0.458115859,62.734406,0,0.940857304,0,0,0,6,4,0% +2018-06-13 13:00:00,88.16551693,61.38852457,2.709537381,15.24610996,2.221474342,2.174914331,0,2.174914331,2.154488694,0.020425637,5.418363549,4.694419193,0.723944356,0.066985648,0.656958708,1.538778557,1.071431877,-30.8699993,30.8699993,0,0,0.819872188,0.016746412,0.538622173,1,0.792066699,0,0.032382587,0.961238037,1,0.636771771,0.912275175,2.070976483,0.046491932,0.115824807,0.212481746,0.724496596,0.448993192,0.975959958,0.937197994,0.012132718,0.521332431,2.083109201,0.567824363,0,0.976126078,-0.30790931,107.9332809,0.30790931,72.06671914,0,0.887614523,2.083109201,1.434248046,3.021795862,6,5,45% +2018-06-13 14:00:00,77.61649558,70.02974995,140.366279,428.9373274,48.37889673,47.9782348,0,47.9782348,46.9200945,1.058140302,92.34431976,56.85208807,35.4922317,1.458802236,34.03342946,1.354663402,1.222249711,-4.554512048,4.554512048,0.690978879,0.690978879,0.344661817,0.843852775,27.14120598,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10137952,1.056897254,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611368463,26.08915955,45.71274799,27.14605681,0,56.85208807,-0.132541713,97.61649298,0.132541713,82.38350702,0,0.67276027,45.71274799,65.39388291,88.51173647,6,6,94% +2018-06-13 15:00:00,66.26933013,78.20744223,345.7816,668.6231454,76.70232932,122.6452631,45.64914425,76.99611885,74.38947109,2.606647759,86.15161046,0,86.15161046,2.31285823,83.83875223,1.156618004,1.364977367,-2.251455677,2.251455677,0.915175286,0.915175286,0.221823051,2.434586494,78.30467047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.50598915,1.675657915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763849627,75.26942772,73.26983878,76.94508563,45.64914425,0,0.068273353,86.08517965,-0.068273353,93.91482035,0,0,73.26983878,76.94508563,123.6288584,6,7,69% +2018-06-13 16:00:00,54.55593836,86.54760945,549.2772162,783.8571188,94.71231884,313.7821141,217.7850375,95.99707665,91.85639298,4.140683671,136.0345462,0,136.0345462,2.855925864,133.1786204,0.952180751,1.510540745,-1.346663466,1.346663466,0.760446705,0.760446705,0.172430816,3.319805869,106.7763685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29585886,2.069108567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405188051,102.6375068,90.70104691,104.7066154,217.7850375,0,0.277837673,73.86880745,-0.277837673,106.1311925,0.870038803,0,280.1824803,104.7066154,348.710866,6,8,24% +2018-06-13 17:00:00,42.73564194,96.01394453,729.0260346,846.0410549,107.6151483,517.3288897,407.4630289,109.8658607,104.3701545,5.495706191,180.0057962,0,180.0057962,3.244993779,176.7608025,0.74587766,1.67575946,-0.830320474,0.830320474,0.672146853,0.672146853,0.147614959,3.959891978,127.3637381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3245625,2.350986947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868928258,122.4268695,103.1934907,124.7778565,407.4630289,0,0.481611414,61.209301,-0.481611414,118.790699,0.946181863,0,488.7276183,124.7778565,570.3922298,6,9,17% +2018-06-13 18:00:00,31.17490448,108.6103459,870.6330538,881.1137883,116.7599617,706.3125562,586.5101385,119.8024177,113.239218,6.563199716,214.6158074,0,214.6158074,3.520743642,211.0950637,0.544104727,1.895608138,-0.472769725,0.472769725,0.611002074,0.611002074,0.134109268,4.352519133,139.991977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8498436,2.550766784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153385295,134.5656131,112.0032289,137.1163799,586.5101385,0,0.665646306,48.26807264,-0.665646306,131.7319274,0.974885033,0,683.7831849,137.1163799,773.5231132,6,10,13% +2018-06-13 19:00:00,20.78333768,129.735605,963.6458304,899.743454,122.4496669,861.4549948,735.4332678,126.021727,118.7573577,7.264369315,237.3393975,0,237.3393975,3.692309248,233.6470883,0.362737672,2.264313465,-0.19128052,0.19128052,0.562864585,0.562864585,0.127069161,4.492366004,144.4899331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1540893,2.675065481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254703878,138.8892196,117.4087932,141.5642851,735.4332678,0,0.817381071,35.17651829,-0.817381071,144.8234817,0.988829021,0,844.6265517,141.5642851,937.2775451,6,11,11% +2018-06-13 20:00:00,14.73954437,171.7361447,1001.393659,906.5217187,124.7034093,968.3568856,839.8648158,128.4920698,120.9431414,7.548928394,246.5597543,0,246.5597543,3.760267897,242.7994864,0.25725358,2.99736117,0.053512376,-0.053512376,0.521002534,0.521002534,0.124529857,4.383300523,140.9820123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2551478,2.724301291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.175686308,135.5172728,119.4308341,138.241574,839.8648158,0,0.926469602,22.10898788,-0.926469602,157.8910121,0.996031689,0,955.9628048,138.241574,1046.43915,6,12,9% +2018-06-13 21:00:00,18.2151399,220.3090035,981.2013699,902.9471162,123.5013973,1017.009012,889.8349275,127.1740849,119.7773745,7.396710388,241.6276549,0,241.6276549,3.7240228,237.9036321,0.317914165,3.845117483,0.28587149,-0.28587149,0.481266786,0.481266786,0.125867535,4.042734612,130.0282419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1345683,2.698041841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928947464,124.988092,118.0635158,127.6861338,889.8349275,0,0.985478453,9.776221304,-0.985478453,170.2237787,0.999263224,0,1007.242834,127.6861338,1090.810855,6,13,8% +2018-06-13 22:00:00,27.81028159,246.3046229,904.5034291,888.24138,118.8563543,1001.797816,879.7068908,122.0909256,115.2723966,6.818528913,222.891286,0,222.891286,3.583957614,219.3073284,0.48538098,4.298826632,0.526372838,-0.526372838,0.440138633,0.440138633,0.13140509,3.502727846,112.6597681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8042123,2.596565091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.537714401,108.2928543,113.3419267,110.8894194,879.7068908,0,0.990391701,7.948940477,-0.990391701,172.0510595,0.999514924,0,992.622093,110.8894194,1065.197,6,14,7% +2018-06-13 23:00:00,39.16027958,260.6473557,776.7816059,858.9374854,110.7765472,921.453799,808.1618656,113.2919334,107.4362256,5.855707859,191.6800152,0,191.6800152,3.340321619,188.3396936,0.683475815,4.549154544,0.800404369,-0.800404369,0.393276481,0.393276481,0.142609643,2.809575103,90.36559317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2717865,2.420051642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035527598,86.86284538,105.3073141,89.28289702,808.1618656,0,0.940885547,19.79919183,-0.940885547,160.2008082,0.996858574,0,910.9303988,89.28289702,969.3642692,6,15,6% +2018-06-13 00:00:00,50.94971022,270.7714209,607.3589568,806.7719126,99.09082308,778.6562556,677.9748581,100.6813975,96.10286915,4.578528366,150.2491648,0,150.2491648,2.987953922,147.2612108,0.889240196,4.725852814,1.152562229,-1.152562229,0.33305394,0.33305394,0.163150345,2.023097937,65.069784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37773328,2.164762445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465727568,62.54755143,93.84346085,64.71231387,677.9748581,0,0.840355059,32.82236802,-0.840355059,147.177632,0.99050134,0,765.3784662,64.71231387,807.7313814,6,16,6% +2018-06-13 01:00:00,62.7215441,279.3268716,409.3388053,712.2192965,82.91774184,578.9948096,495.4915748,83.50323481,80.41746599,3.08576882,101.7492083,0,101.7492083,2.50027585,99.2489325,1.094697456,4.875173598,1.690717933,-1.690717933,0.241023895,0.241023895,0.202565065,1.218156426,39.18009805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.30032714,1.811441342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.882550184,37.66140053,78.18287732,39.47284187,495.4915748,0,0.695700857,45.91690723,-0.695700857,134.0830928,0.97813003,0,562.838066,39.47284187,588.6722515,6,17,5% +2018-06-13 02:00:00,74.2050647,287.4804973,201.2795168,523.4097534,58.80989951,329.1281943,270.5743002,58.55389407,57.03656405,1.517330019,50.57588464,0,50.57588464,1.773335456,48.80254919,1.295122701,5.017481212,2.80532987,-2.80532987,0.050414027,0.050414027,0.29218025,0.497478336,16.00061334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.82571486,1.284775501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.360421361,15.38039816,55.18613622,16.66517366,270.5743002,0,0.516945469,58.87241831,-0.516945469,121.1275817,0.953277999,0,313.1186638,16.66517366,324.0256866,6,18,3% +2018-06-13 03:00:00,85.09176898,295.9244732,26.09038231,123.3771664,15.53422509,54.42721524,39.16472403,15.26249121,15.06581089,0.196680322,6.794329456,0,6.794329456,0.468414202,6.325915254,1.485131535,5.164856395,8.100219344,-8.100219344,0,0,0.59540044,0.11710355,3.766452723,0.460935448,1,0.122831946,0,0.948610927,0.98737289,0.724496596,1,14.60639597,0.339364495,0.064702116,0.312029739,0.832958017,0.557454613,0.961238037,0.922476074,0.08015081,3.620457621,14.68654678,3.959822116,21.11231443,0,0.317438998,71.49188319,-0.317438998,108.5081168,0.892489422,0,33.52906408,3.959822116,36.12068846,6,19,8% +2018-06-13 04:00:00,95.45322827,305.1987274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665973115,5.326722667,-5.97842633,5.97842633,1,0.447475195,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105016354,83.9718912,-0.105016354,96.0281088,0.573883681,0,0,0,0,6,20,0% +2018-06-13 05:00:00,104.4619631,315.788721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823205199,5.511552923,-1.590103062,1.590103062,1,0.802077328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098857318,95.67337355,0.098857318,84.32662645,0,0.544220547,0,0,0,6,21,0% +2018-06-13 06:00:00,111.772323,328.0834617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950795048,5.726136628,-0.516977493,0.516977493,1,0.618562048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.282965383,106.437268,0.282965383,73.56273196,0,0.87329994,0,0,0,6,22,0% +2018-06-13 07:00:00,116.7644958,342.1768363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037924902,5.972112417,0.075311107,-0.075311107,1,0.517274732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434765886,115.7703978,0.434765886,64.22960224,0,0.934995577,0,0,0,6,23,0% +2018-06-14 08:00:00,118.8516602,357.5791102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074352792,6.240932809,0.548205183,-0.548205183,1,0.436405082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543918232,122.9507704,0.543918232,57.04922962,0,0.958074418,0,0,0,6,0,0% +2018-06-14 09:00:00,117.7349781,13.17953865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054863012,0.230026343,1.040840627,-1.040840627,1,0.352159459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60298727,127.0841461,0.60298727,52.91585394,0,0.96707951,0,0,0,6,1,0% +2018-06-14 10:00:00,113.578809,27.75826823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982324177,0.484473175,1.696224186,-1.696224186,1,0.24008227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607949512,127.4413866,0.607949512,52.55861342,0,0.967756328,0,0,0,6,2,0% +2018-06-14 11:00:00,106.9106127,40.6148321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865942197,0.708862545,2.86601181,-2.86601181,1,0.040036805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558467067,123.9498513,0.558467067,56.05014866,0,0.960469206,0,0,0,6,3,0% +2018-06-14 12:00:00,98.36183947,51.69247654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716737957,0.902203914,6.458981913,-6.458981913,1,0,#DIV/0!,0,0,0.364836297,1,0.153603606,0,0.944897048,0.983659011,0.724496596,1,0,0,0.053210588,0.312029739,0.86021186,0.584708456,0.961238037,0.922476074,0,0,0,0,0,0,-0.457910657,117.252368,0.457910657,62.74763202,0,0.940808394,0,0,0,6,4,0% +2018-06-14 13:00:00,88.16873247,61.31811281,2.698300855,15.18648703,2.212998342,2.166609208,0,2.166609208,2.146268277,0.020340932,5.396875637,4.67591129,0.720964347,0.066730065,0.654234282,1.538834679,1.07020296,-30.91846279,30.91846279,0,0,0.820145143,0.016682516,0.536567069,1,0.792424414,0,0.032331864,0.961238037,1,0.636902743,0.912406147,2.063074705,0.046316706,0.115824807,0.212630063,0.724496596,0.448993192,0.975939597,0.937177634,0.012086426,0.519339811,2.075161131,0.565656516,0,0.970605027,-0.307899469,107.9326882,0.307899469,72.06731176,0,0.887609333,2.075161131,1.427174597,3.009218361,6,5,45% +2018-06-14 14:00:00,77.62611759,69.95849837,140.1979328,428.6331221,48.34609793,47.94515594,0,47.94515594,46.8882847,1.056871237,92.33352207,56.88309688,35.45042519,1.457813231,33.99261196,1.354831337,1.221006136,-4.558165787,4.558165787,0.690354052,0.690354052,0.344841732,0.842466831,27.09662926,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.07080274,1.056180723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610364351,26.04631071,45.68116709,27.10249144,0,56.88309688,-0.132708122,97.62611252,0.132708122,82.37388748,0,0.67323331,45.68116709,65.39808705,88.4829071,6,6,94% +2018-06-14 15:00:00,66.28327419,78.1324343,345.5295027,668.4316962,76.6762078,122.4039145,45.43502991,76.96888457,74.36413723,2.604747343,86.08969889,0,86.08969889,2.31207057,83.77762832,1.156861374,1.363668231,-2.253367275,2.253367275,0.915502189,0.915502189,0.221909293,2.43349312,78.26950381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.48163728,1.675087257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763057481,75.23562419,73.24469476,76.91071144,45.43502991,0,0.067972584,86.10245256,-0.067972584,93.89754744,0,0,73.24469476,76.91071144,123.5812172,6,7,69% +2018-06-14 16:00:00,54.57222119,86.46419762,549.0092165,783.7437385,94.69154283,313.425231,217.4503242,95.97490681,91.83624344,4.138663376,135.9689401,0,135.9689401,2.855299391,133.1136407,0.95246494,1.509084934,-1.348055271,1.348055271,0.760684718,0.760684718,0.172477146,3.319047178,106.7519664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.27649035,2.068654689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404638382,102.6140506,90.68112873,104.6827053,217.4503242,0,0.277450796,73.891881,-0.277450796,106.108119,0.869787866,0,279.8167822,104.6827053,348.3295192,6,8,24% +2018-06-14 17:00:00,42.75169532,95.91401556,728.8041011,845.9782179,107.6002449,516.9278453,407.0781116,109.8497337,104.3557005,5.494033162,179.9515365,0,179.9515365,3.244544386,176.7069921,0.746157844,1.67401537,-0.831493219,0.831493219,0.672347405,0.672347405,0.147639461,3.959669784,127.3565915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3106687,2.350661363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868767279,122.42,103.179436,124.7706614,407.0781116,0,0.48119219,61.23670517,-0.48119219,118.7632948,0.946091414,0,488.3125423,124.7706614,569.9724447,6,9,17% +2018-06-14 18:00:00,31.18617318,108.4778625,870.5137808,881.0879362,116.7525254,705.9384749,586.1441683,119.7943066,113.232006,6.562300586,214.586664,0,214.586664,3.520519412,211.0661446,0.544301403,1.893295866,-0.473851804,0.473851804,0.611187121,0.611187121,0.134119101,4.352999422,140.0074247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8429111,2.55060433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153733263,134.5804621,111.9966444,137.1310664,586.1441683,0,0.665250475,48.29845596,-0.665250475,131.701544,0.974840339,0,683.3936243,137.1310664,773.1431647,6,10,13% +2018-06-14 19:00:00,20.77896082,129.5406051,963.6776306,899.7493401,122.4515778,861.1752947,735.1514747,126.02382,118.759211,7.264609039,237.3471655,0,237.3471655,3.69236687,233.6547986,0.362661282,2.260910075,-0.192350757,0.192350757,0.563047606,0.563047606,0.127066951,4.493667866,144.5318054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1558708,2.675107228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255647072,138.9294689,117.4115179,141.6045762,735.1514747,0,0.817062533,35.20818608,-0.817062533,144.7918139,0.988805173,0,844.3330993,141.6045762,937.0104623,6,11,11% +2018-06-14 20:00:00,14.69727012,171.5208227,1001.613723,906.560045,124.7164659,968.2318363,839.7254446,128.5063916,120.9558043,7.550587327,246.613505,0,246.613505,3.760661601,242.8528434,0.256515755,2.993603092,0.052386453,-0.052386453,0.521195079,0.521195079,0.124515532,4.385484776,141.0522654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2673198,2.724586528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.177268791,135.5848027,119.4445886,138.3093892,839.7254446,0,0.926276698,22.13833572,-0.926276698,157.8616643,0.996020449,0,955.8283033,138.3093892,1046.349032,6,12,9% +2018-06-14 21:00:00,18.14758292,220.2648257,981.6331492,903.0247701,123.5271848,1017.088673,889.8863233,127.2023497,119.8023844,7.399965323,241.7331224,0,241.7331224,3.724800388,238.008322,0.316735073,3.844346434,0.284611455,-0.284611455,0.481482264,0.481482264,0.125838441,4.045795825,130.1267011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1586088,2.698605201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931165303,125.0827347,118.0897741,127.7813399,889.8863233,0,0.985450624,9.78560725,-0.985450624,170.2143927,0.999261791,0,1007.319175,127.7813399,1090.949506,6,13,8% +2018-06-14 22:00:00,27.74195579,246.3211717,905.1548143,888.3744052,118.8963818,1002.119927,879.9852705,122.1346565,115.3112172,6.823439329,223.0504288,0,223.0504288,3.585164592,219.4652643,0.484188469,4.299115463,0.524862437,-0.524862437,0.440396927,0.440396927,0.131354747,3.506588991,112.7839558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8415281,2.597439543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540511787,108.4122282,113.3820398,111.0096678,879.9852705,0,0.990556758,7.880260097,-0.990556758,172.1197399,0.999523337,0,992.9478536,111.0096678,1065.601461,6,14,7% +2018-06-14 23:00:00,39.09330012,260.6706022,777.6437703,859.1594228,110.8328304,922.0434754,808.6904566,113.3530188,107.4908116,5.862207219,191.8907541,0,191.8907541,3.342018766,188.5487354,0.682306803,4.549560272,0.798434283,-0.798434283,0.393613386,0.393613386,0.14252391,2.814082092,90.51055341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3242567,2.421281219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038792896,87.00218667,105.3630496,89.42346789,808.6904566,0,0.94125774,19.73613842,-0.94125774,160.2638616,0.996879587,0,911.5300579,89.42346789,970.0559292,6,15,6% +2018-06-14 00:00:00,50.88321131,270.7918649,608.4052092,807.1565258,99.16759364,779.5291428,678.7654025,100.7637403,96.1773248,4.586415458,150.5051557,0,150.5051557,2.990268838,147.5148868,0.888079571,4.726209629,1.149676306,-1.149676306,0.333547462,0.333547462,0.162995964,2.0280053,65.22762168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.44930288,2.166439594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469282937,62.69927101,93.91858582,64.86571061,678.7654025,0,0.840934045,32.76111567,-0.840934045,147.2388843,0.990542305,0,766.2644322,64.86571061,808.7177424,6,16,6% +2018-06-14 01:00:00,62.6548937,279.34282,410.5199869,712.950241,83.02702138,580.1676684,496.549545,83.61812342,80.52345035,3.094673065,102.0388947,0,102.0388947,2.503571032,99.53532365,1.093534188,4.875451952,1.685636869,-1.685636869,0.241892808,0.241892808,0.202248426,1.223072959,39.33823063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.40220334,1.81382869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886112195,37.81340359,78.28831553,39.62723228,496.549545,0,0.69647153,45.8554046,-0.69647153,134.1445954,0.978209557,0,564.0178257,39.62723228,589.9530567,6,17,5% +2018-06-14 02:00:00,74.13807868,287.4913911,202.4929759,525.0233562,58.99359929,330.6391498,271.8979476,58.7412022,57.21472461,1.526477586,50.87564108,0,50.87564108,1.778874682,49.0967664,1.293953574,5.017671345,2.79245198,-2.79245198,0.052616276,0.052616276,0.291336522,0.501636797,16.13436374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.99696956,1.288788652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363434151,15.50896413,55.36040372,16.79775278,271.8979476,0,0.517877813,58.80999324,-0.517877813,121.1900068,0.95345213,0,314.6020808,16.79775278,325.5958741,6,18,3% +2018-06-14 03:00:00,85.02583451,295.9295063,26.83224681,126.3771787,15.87451734,55.84561501,40.24750013,15.59811488,15.39584207,0.20227281,6.984464161,0,6.984464161,0.478675269,6.505788893,1.483980761,5.164944239,7.991592048,-7.991592048,0,0,0.591620875,0.119668817,3.848960519,0.455482729,1,0.124484482,0,0.948416973,0.987178936,0.724496596,1,14.92663118,0.346798603,0.06407337,0.312029739,0.834422036,0.558918632,0.961238037,0.922476074,0.081902018,3.699767253,15.0085332,4.046565855,21.91545894,0,0.318471266,71.42950129,-0.318471266,108.5704987,0.892999965,0,34.57903726,4.046565855,37.22743368,6,19,8% +2018-06-14 04:00:00,95.38558851,305.1964089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664792578,5.3266822,-6.054316787,6.054316787,1,0.434497163,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106153816,83.9063531,-0.106153816,96.0936469,0.578985373,0,0,0,0,6,20,0% +2018-06-14 05:00:00,104.3954778,315.7767009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822044812,5.511343132,-1.598513041,1.598513041,1,0.803515519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.097697365,95.60658986,0.097697365,84.39341014,0,0.53821547,0,0,0,6,21,0% +2018-06-14 06:00:00,111.7090317,328.0587824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949690407,5.725705893,-0.519698507,0.519698507,1,0.619027368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281838382,106.3699558,0.281838382,73.6300442,0,0.872593362,0,0,0,6,22,0% +2018-06-14 07:00:00,116.707481,342.1371498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036929805,5.971419758,0.074122085,-0.074122085,1,0.517478066,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433725108,115.7041982,0.433725108,64.29580176,0,0.934719609,0,0,0,6,23,0% +2018-06-15 08:00:00,118.8045027,357.5248588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073529738,6.239985944,0.547632498,-0.547632498,1,0.436503017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543011093,122.8888532,0.543011093,57.11114677,0,0.95792085,0,0,0,6,0,0% +2018-06-15 09:00:00,117.700382,13.11502314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054259197,0.228900335,1.04057244,-1.04057244,1,0.352205322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602252055,127.03136,0.602252055,52.96863998,0,0.966978282,0,0,0,6,1,0% +2018-06-15 10:00:00,113.5574395,27.6894554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981951209,0.483272165,1.69609827,-1.69609827,1,0.240103803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607412733,127.4026609,0.607412733,52.59733905,0,0.967683649,0,0,0,6,2,0% +2018-06-15 11:00:00,106.9012598,40.54610763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865778959,0.707663077,2.865754707,-2.865754707,1,0.040080772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558141642,123.9273771,0.558141642,56.07262294,0,0.960417005,0,0,0,6,3,0% +2018-06-15 12:00:00,98.36240977,51.62552858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716747911,0.901035452,6.456033817,-6.456033817,1,0,#DIV/0!,0,0,0.36463284,1,0.153672649,0,0.944888474,0.983650437,0.724496596,1,0,0,0.053185302,0.312029739,0.860272985,0.584769581,0.961238037,0.922476074,0,0,0,0,0,0,-0.457795023,117.2449157,0.457795023,62.75508435,0,0.940780814,0,0,0,6,4,0% +2018-06-15 13:00:00,88.17638445,61.2525528,2.671675297,15.04517147,2.192896987,2.146913269,0,2.146913269,2.126773052,0.020140217,5.347320035,4.633417492,0.713902542,0.066123935,0.647778607,1.538968231,1.069058722,-31.04284118,31.04284118,0,0,0.820794724,0.016530984,0.531693263,1,0.793336857,0,0.03220241,0.961238037,1,0.637237098,0.912740502,2.044335153,0.045901483,0.115824807,0.213008701,0.724496596,0.448993192,0.975887596,0.937125633,0.011976641,0.514613641,2.056311795,0.560515124,0,0.957556621,-0.307967078,107.9367598,0.307967078,72.06324022,0,0.887644983,2.056311795,1.410485455,2.979446315,6,5,45% +2018-06-15 14:00:00,77.64011122,69.89262339,139.9531475,428.1902909,48.29835937,47.89701158,0,47.89701158,46.84198564,1.055025942,92.31740288,56.92776821,35.38963467,1.456373737,33.93326093,1.355075572,1.219856401,-4.563483572,4.563483572,0.689444658,0.689444658,0.345103774,0.840453161,27.03186269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.02629831,1.055137815,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.608905454,25.98405462,45.63520377,27.03919244,0,56.92776821,-0.132949694,97.6400773,0.132949694,82.3599227,0,0.673917901,45.63520377,65.40383452,88.44070538,6,6,94% +2018-06-15 15:00:00,66.30130073,78.06345142,345.2035753,668.1839377,76.642417,122.1068595,45.17320377,76.93365571,74.33136534,2.602290365,86.00965511,0,86.00965511,2.311051653,83.69860346,1.157175996,1.362464253,-2.255680271,2.255680271,0.915897734,0.915897734,0.222020925,2.43202302,78.22222033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4501357,1.674349055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761992399,75.19017351,73.2121281,76.86452257,45.17320377,0,0.067605941,86.12350813,-0.067605941,93.87649187,0,0,73.2121281,76.86452257,123.5184208,6,7,69% +2018-06-15 16:00:00,54.59242961,86.38773,548.6765365,783.6028896,94.66574476,313.0119986,217.0646198,95.94737877,91.81122327,4.136155494,135.8875001,0,135.8875001,2.854521484,133.0329786,0.952817643,1.507750322,-1.349593268,1.349593268,0.760947731,0.760947731,0.172534706,3.317993098,106.7180636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.25244002,2.068091098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403874705,102.5814619,90.65631472,104.649553,217.0646198,0,0.277008447,73.91825966,-0.277008447,106.0817403,0.869500089,0,279.394021,104.649553,347.8850605,6,8,25% +2018-06-15 17:00:00,42.77173121,95.82241582,728.5270183,845.8997267,107.5816352,516.4773632,406.6477669,109.8295963,104.3376519,5.491944395,179.8837934,0,179.8837934,3.243983234,176.6398102,0.746507536,1.672416653,-0.832722012,0.832722012,0.672557541,0.672557541,0.147670069,3.959203077,127.3415806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2933197,2.35025481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868429152,122.405571,103.1617489,124.7558258,406.6477669,0,0.480728098,61.26703394,-0.480728098,118.7329661,0.945991101,0,487.8469177,124.7558258,569.4971106,6,9,17% +2018-06-15 18:00:00,31.20186273,108.355744,870.3476515,881.0519191,116.7421672,705.5237862,585.7407779,119.7830083,113.2219601,6.561048234,214.5460717,0,214.5460717,3.520207073,211.0258646,0.544575237,1.891164496,-0.474946899,0.474946899,0.611374393,0.611374393,0.1341328,4.353267533,140.0160481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8332546,2.550378041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153927508,134.5887512,111.9871822,137.1391293,585.7407779,0,0.66481982,48.33149607,-0.66481982,131.6685039,0.974791653,0,682.962403,137.1391293,772.7172203,6,10,13% +2018-06-15 19:00:00,20.78017711,129.3574396,963.6687943,899.7477046,122.4510469,860.8633404,734.840102,126.0232384,118.758696,7.264542427,237.345007,0,237.345007,3.692350859,233.6526561,0.36268251,2.257713232,-0.193407762,0.193407762,0.563228365,0.563228365,0.127067565,4.494774883,144.5674109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1553758,2.675095628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256449102,138.9636943,117.4118249,141.6387899,734.840102,0,0.816717951,35.2424151,-0.816717951,144.7575849,0.988779355,0,844.0065468,141.6387899,936.706302,6,11,11% +2018-06-15 20:00:00,14.66201467,171.3061768,1001.796777,906.5919155,124.7273259,968.081038,839.5627339,128.5183041,120.9663369,7.551967268,246.6582161,0,246.6582161,3.760989072,242.8972271,0.255900431,2.989856815,0.051294345,-0.051294345,0.52138184,0.52138184,0.124503621,4.387478007,141.1163746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2774442,2.72482378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178712881,135.6464269,119.4561571,138.3712506,839.5627339,0,0.92606466,22.1705519,-0.92606466,157.8294481,0.99600809,0,955.6674319,138.3712506,1046.228648,6,12,9% +2018-06-15 21:00:00,18.08548496,220.2070277,982.028673,903.0958562,123.5508036,1017.14632,889.9180818,127.228238,119.8252911,7.402946948,241.8297339,0,241.8297339,3.725512584,238.1042213,0.315651259,3.84333767,0.283406074,-0.283406074,0.481688397,0.481688397,0.125811809,4.048657746,130.2187503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1806275,2.699121185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933238755,125.1712159,118.1138663,127.8703371,889.9180818,0,0.985408222,9.799891145,-0.985408222,170.2001089,0.999259607,0,1007.373059,127.8703371,1091.061638,6,13,8% +2018-06-15 22:00:00,27.67751875,246.3256864,905.7677815,888.4994493,118.9340389,1002.420322,880.2445232,122.1757989,115.3477388,6.828060135,223.2001853,0,223.2001853,3.586300092,219.6138852,0.483063831,4.299194259,0.523433156,-0.523433156,0.440641348,0.440641348,0.131307429,3.510232619,112.9011474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.876634,2.598262209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543151583,108.5248772,113.4197856,111.1231395,880.2445232,0,0.990709138,7.81632245,-0.990709138,172.1836776,0.9995311,0,993.2515624,111.1231395,1065.979435,6,14,7% +2018-06-15 23:00:00,39.02959617,260.6843812,778.4626409,859.369875,110.8862626,922.6077441,809.1967312,113.4110129,107.5426327,5.868380211,192.09091,0,192.09091,3.343629945,188.74728,0.681194959,4.549800761,0.796585912,-0.796585912,0.393929476,0.393929476,0.142442626,2.818346828,90.647722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3740691,2.422448513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041882683,87.13403834,105.4159518,89.55648686,809.1967312,0,0.941616357,19.67520141,-0.941616357,160.3247986,0.996899818,0,912.1040258,89.55648686,970.7169553,6,15,6% +2018-06-15 00:00:00,50.81985941,270.8045146,609.4010819,807.5217579,99.24060349,780.3682473,679.5261914,100.8420559,96.24813314,4.593922767,150.7488181,0,150.7488181,2.992470354,147.7563477,0.886973872,4.726430409,1.146986681,-1.146986681,0.334007415,0.334007415,0.162849405,2.032645035,65.37685151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.51736655,2.168034585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472644409,62.8427164,93.99001096,65.01075099,679.5261914,0,0.841495829,32.70158578,-0.841495829,147.2984142,0.990581999,0,767.116424,65.01075099,809.6646603,6,16,6% +2018-06-15 01:00:00,62.591522,279.3520291,411.6425691,713.6425124,83.13069155,581.2921877,497.5650576,83.72713005,80.62399448,3.103135565,102.3142038,0,102.3142038,2.50669707,99.80750672,1.092428143,4.87561268,1.680925339,-1.680925339,0.242698527,0.242698527,0.201948724,1.227707776,39.48730231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49885018,1.816093494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889470105,37.95669695,78.38832029,39.77279044,497.5650576,0,0.697218914,45.79569922,-0.697218914,134.2043008,0.978286512,0,565.1495052,39.77279044,591.1800011,6,17,5% +2018-06-15 02:00:00,74.07466846,287.4962386,203.6420606,526.5431544,59.16683531,332.077327,273.1594502,58.9178768,57.38273693,1.535139872,51.15947367,0,51.15947367,1.784098387,49.37537528,1.292846857,5.01775595,2.780562429,-2.780562429,0.054649509,0.054649509,0.290543295,0.505544212,16.26003966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.15846939,1.292573208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366265061,15.6297686,55.52473445,16.92234181,273.1594502,0,0.518778846,58.74962548,-0.518778846,121.2503745,0.953619817,0,316.0149995,16.92234181,327.0903337,6,18,4% +2018-06-15 03:00:00,84.9638005,295.9289954,27.53756353,129.209049,16.19493145,57.19188871,41.27770441,15.9141843,15.70659452,0.207589786,7.165138034,0,7.165138034,0.488336936,6.676801098,1.482898064,5.164935321,7.892727865,-7.892727865,0,0,0.588103281,0.122084234,3.92664863,0.45042331,1,0.126027414,0,0.948235318,0.986997281,0.724496596,1,15.22814007,0.353798448,0.063487551,0.312029739,0.835788932,0.560285528,0.961238037,0.922476074,0.083551847,3.77444402,15.31169191,4.128242468,22.68526416,0,0.319464501,71.36945671,-0.319464501,108.6305433,0.893488088,0,35.58070521,4.128242468,38.28255734,6,19,8% +2018-06-15 04:00:00,95.32254264,305.1889991,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66369222,5.326552875,-6.127592001,6.127592001,1,0.421966363,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107239507,83.84379044,-0.107239507,96.15620956,0.583753919,0,0,0,0,6,20,0% +2018-06-15 05:00:00,104.3342335,315.7601491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820975897,5.511054248,-1.606669224,1.606669224,1,0.804910309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096599809,95.54340566,0.096599809,84.45659434,0,0.532400633,0,0,0,6,21,0% +2018-06-15 06:00:00,111.6516518,328.0304242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94868894,5.725210949,-0.522436554,0.522436554,1,0.619495602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280783777,106.3069886,0.280783777,73.69301145,0,0.871927034,0,0,0,6,22,0% +2018-06-15 07:00:00,116.6569487,342.0950883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03604785,5.970685645,0.072823838,-0.072823838,1,0.51770008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432765408,115.6431883,0.432765408,64.35681169,0,0.934463963,0,0,0,6,23,0% +2018-06-16 08:00:00,118.7641387,357.4699501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072825254,6.239027607,0.546882417,-0.546882417,1,0.436631288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542191797,122.832969,0.542191797,57.16703105,0,0.957781711,0,0,0,6,0,0% +2018-06-16 09:00:00,117.6725296,13.05165327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053773081,0.227794322,1.040035452,-1.040035452,1,0.352297152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601609064,126.9852255,0.601609064,53.01477452,0,0.96688955,0,0,0,6,1,0% +2018-06-16 10:00:00,113.5424482,27.62328652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981689562,0.4821173,1.695524913,-1.695524913,1,0.240201853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606969876,127.3707263,0.606969876,52.62927369,0,0.967623589,0,0,0,6,2,0% +2018-06-16 11:00:00,106.8977492,40.48107813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865717686,0.706528098,2.864547076,-2.864547076,1,0.040287289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557909033,123.9113164,0.557909033,56.08868359,0,0.960379655,0,0,0,6,3,0% +2018-06-16 12:00:00,98.36825225,51.56297985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716849881,0.899943771,6.449118483,-6.449118483,1,0,#DIV/0!,0,0,0.364155078,1,0.153834845,0,0.944868326,0.983630289,0.724496596,1,0,0,0.053125909,0.312029739,0.86041658,0.584913176,0.961238037,0.922476074,0,0,0,0,0,0,-0.457768373,117.2431982,0.457768373,62.75680182,0,0.940774455,0,0,0,6,4,0% +2018-06-16 13:00:00,88.18840787,61.19192566,2.623335802,14.73541198,2.157505525,2.112224587,0,2.112224587,2.092448774,0.019775813,5.24126067,4.540145781,0.701114889,0.065056752,0.636058137,1.539178079,1.068000578,-31.24390387,31.24390387,0,0,0.82242827,0.016264188,0.523112193,1,0.794795014,0,0.031995321,0.961238037,1,0.637772246,0.91327565,2.011341351,0.045169353,0.115824807,0.213614741,0.724496596,0.448993192,0.975804299,0.937042336,0.011783349,0.506294215,2.0231247,0.551463568,0,0.931660553,-0.308111221,107.9454407,0.308111221,72.05455928,0,0.887720938,2.0231247,1.378518148,2.925337258,6,5,45% +2018-06-16 14:00:00,77.65840022,69.83220387,139.5520738,427.0324744,48.27827353,47.87450794,0,47.87450794,46.82250546,1.052002479,92.20035681,56.90857277,35.29178405,1.455768075,33.83601597,1.355394776,1.218801881,-4.570448907,4.570448907,0.688253515,0.688253515,0.345951674,0.837502049,26.9369448,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.00757323,1.054699015,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.606767384,25.89281594,45.61434061,26.94751496,0,56.90857277,-0.133265211,97.65831739,0.133265211,82.34168261,0,0.674808308,45.61434061,65.34989264,88.38453835,6,6,94% +2018-06-16 15:00:00,66.32332484,78.00057408,344.6969348,667.3926383,76.6887485,121.8067615,44.83199067,76.97477088,74.37629978,2.598471095,85.88821133,0,85.88821133,2.312448719,83.57576261,1.157560389,1.361366836,-2.258387988,2.258387988,0.916360781,0.916360781,0.222481667,2.429489854,78.14074502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49332839,1.675361225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.760157129,75.11185634,73.25348552,76.78721757,44.83199067,0,0.067174835,86.14826493,-0.067174835,93.85173507,0,0,73.25348552,76.78721757,123.5091837,6,7,69% +2018-06-16 16:00:00,54.61647134,86.31829528,548.1607571,783.036777,94.74580438,312.5403031,216.519167,96.02113614,91.8888688,4.132267331,135.7648575,0,135.7648575,2.856935577,132.9079219,0.953237251,1.506538457,-1.35127359,1.35127359,0.761235083,0.761235083,0.1728431,3.316160862,106.6591325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32707586,2.0698401,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402547256,102.5248152,90.72962311,104.5946553,216.519167,0,0.27651213,73.94785248,-0.27651213,106.0521475,0.869176106,0,278.9229096,104.5946553,347.3780196,6,8,25% +2018-06-16 17:00:00,42.79565092,95.73925618,728.070312,845.4662119,107.682901,515.9346765,406.0103107,109.9243658,104.4358643,5.48850155,179.7761132,0,179.7761132,3.247036774,176.5290764,0.746925014,1.670965244,-0.834004141,0.834004141,0.672776798,0.672776798,0.147901788,3.958162939,127.3081262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3877251,2.352467089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867675575,122.3734133,103.2554007,124.7258804,406.0103107,0,0.480220623,61.30018778,-0.480220623,118.6998122,0.94588119,0,487.2929164,124.7258804,568.9235106,6,9,17% +2018-06-16 18:00:00,31.22187004,108.2441637,870.0066812,880.7022003,116.8596941,704.9939453,585.0995243,119.894421,113.3359432,6.558477856,214.4669434,0,214.4669434,3.523750944,210.9431925,0.544924431,1.889217053,-0.47605286,0.47605286,0.611563523,0.611563523,0.134320456,4.353114175,140.0111156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9428195,2.552945564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153816401,134.5840099,112.0966359,137.1369555,585.0995243,0,0.664355697,48.36708479,-0.664355697,131.6329152,0.974739112,0,682.4160264,137.1369555,772.169421,6,10,13% +2018-06-16 19:00:00,20.78689318,129.1864929,963.4892797,899.4548646,122.5827339,860.4181937,734.2685924,126.1496014,118.8864122,7.26318917,237.3054525,0,237.3054525,3.69632171,233.6091308,0.362799727,2.254729651,-0.194449676,0.194449676,0.563406543,0.563406543,0.127227917,4.495575767,144.5931701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2781415,2.677972496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25702934,138.988455,117.5351708,141.6664275,734.2685924,0,0.816348459,35.27908655,-0.816348459,144.7209135,0.988751645,0,843.5444496,141.6664275,936.262293,6,11,11% +2018-06-16 20:00:00,14.63377768,171.0929217,1001.811746,906.3410349,124.8720522,967.7804076,839.1216283,128.6587792,121.1066991,7.552080108,246.6662095,0,246.6662095,3.765353104,242.9008564,0.255407603,2.98613481,0.050237779,-0.050237779,0.521562523,0.521562523,0.124646225,4.389253468,141.1734795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4123657,2.727985506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179999196,135.7013183,119.5923649,138.4293038,839.1216283,0,0.925834312,22.20549979,-0.925834312,157.7945002,0.995994657,0,955.3530229,138.4293038,1045.952234,6,12,9% +2018-06-16 21:00:00,18.02892899,220.1357691,982.2567372,902.8802497,123.7075732,1017.036587,889.6545876,127.3819996,119.9773335,7.404666192,241.8897579,0,241.8897579,3.730239765,238.1595181,0.314664172,3.842093972,0.282257052,-0.282257052,0.481884891,0.481884891,0.125942199,4.051370155,130.3059907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3267765,2.702546011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.935203886,125.2550747,118.2619804,127.9576207,889.6545876,0,0.985351698,9.818899948,-0.985351698,170.1811001,0.999256697,0,1007.255285,127.9576207,1091.000988,6,13,8% +2018-06-16 22:00:00,27.61706033,246.3181947,906.2120079,888.3206968,119.101606,1002.533234,880.1915718,122.3416621,115.5102532,6.831408901,223.3129459,0,223.3129459,3.59135286,219.7215931,0.482008633,4.299063505,0.52208678,-0.52208678,0.440871592,0.440871592,0.131427972,3.51378097,113.0152745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.032849,2.601922922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.545722351,108.6345806,113.5785714,111.2365035,880.1915718,0,0.990848885,7.757225016,-0.990848885,172.242775,0.999538218,0,993.3636869,111.2365035,1066.165754,6,14,7% +2018-06-16 23:00:00,38.96926008,260.688714,779.1101512,859.2427435,111.0631059,922.9605824,809.3731775,113.5874049,107.7141435,5.873261417,192.2532388,0,192.2532388,3.348962423,188.9042764,0.680141895,4.549876382,0.794861215,-0.794861215,0.394224416,0.394224416,0.142551224,2.822562971,90.78332763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5389318,2.426311875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.044937264,87.26438763,105.5838691,89.69069951,809.3731775,0,0.941961028,19.61646298,-0.941961028,160.383537,0.996919248,0,912.4635683,89.69069951,971.1643373,6,15,6% +2018-06-16 00:00:00,50.75974843,270.8093959,610.2230011,807.4910664,99.42550047,780.9670642,679.9394907,101.0275735,96.42745479,4.600118742,150.9536772,0,150.9536772,2.99804568,147.9556315,0.885924738,4.726515604,1.144495568,-1.144495568,0.33443342,0.33443342,0.162933059,2.037283198,65.52603075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.68973734,2.17207389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476004741,62.98611316,94.16574208,65.15818705,679.9394907,0,0.842039645,32.64386804,-0.842039645,147.356132,0.990620373,0,767.727654,65.15818705,810.3723842,6,16,6% +2018-06-16 01:00:00,62.53152316,279.3545312,412.5918401,713.8402915,83.32549237,582.1422596,498.2190467,83.9232129,80.81292133,3.11029157,102.5502395,0,102.5502395,2.512571033,100.0376685,1.091380965,4.875656349,1.676585504,-1.676585504,0.243440682,0.243440682,0.20195623,1.232398759,39.63818043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.68045385,1.82034916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.892868706,38.10172674,78.57332256,39.92207591,498.2190467,0,0.697941896,45.73788561,-0.697941896,134.2621144,0.978360799,0,566.011307,39.92207591,592.1395072,6,17,5% +2018-06-16 02:00:00,74.01492686,287.4950802,204.6317899,527.4093068,59.39016755,333.2086932,274.0667574,59.14193575,57.59933488,1.542600869,51.40617928,0,51.40617928,1.790832678,49.61534661,1.291804169,5.017735733,2.769657258,-2.769657258,0.056514403,0.056514403,0.290229429,0.509585377,16.39001742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.36667158,1.297452179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369192871,15.75470817,55.73586445,17.05216035,274.0667574,0,0.519647177,58.69141219,-0.519647177,121.3085878,0.953780869,0,317.1354944,17.05216035,328.2957923,6,18,4% +2018-06-16 03:00:00,84.90576037,295.9229908,28.16752176,131.4718064,16.49359355,58.33439897,42.12580945,16.20858952,15.99625085,0.212338677,7.326884463,0,7.326884463,0.4973427,6.829541763,1.481885072,5.164830521,7.803180831,-7.803180831,0,0,0.585553592,0.124335675,3.999062711,0.445758865,1,0.127458142,0,0.948066385,0.986828348,0.724496596,1,15.50916276,0.360323093,0.062945387,0.312029739,0.837056401,0.561552997,0.961238037,0.922476074,0.085090497,3.84405119,15.59425325,4.204374283,23.34785643,0,0.320417058,71.31185134,-0.320417058,108.6881487,0.893953377,0,36.46614835,4.204374283,39.21782723,6,19,8% +2018-06-16 04:00:00,95.26417392,305.1765605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662673494,5.326335781,-6.197858931,6.197858931,1,0.40995001,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108271765,83.78430001,-0.108271765,96.21569999,0.588199088,0,0,0,0,6,20,0% +2018-06-16 05:00:00,104.2783035,315.7391418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819999734,5.510687602,-1.61454627,1.61454627,1,0.806257363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095566288,95.48391405,0.095566288,84.51608595,0,0.526802952,0,0,0,6,21,0% +2018-06-16 06:00:00,111.6002426,327.9984773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947791679,5.72465337,-0.525184149,0.525184149,1,0.619965469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279803076,106.248452,0.279803076,73.75154798,0,0.871302894,0,0,0,6,22,0% +2018-06-16 07:00:00,116.6129397,342.0507522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035279749,5.969911835,0.071420176,-0.071420176,1,0.51794012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431888064,115.5874412,0.431888064,64.41255876,0,0.934229262,0,0,0,6,23,0% +2018-06-17 08:00:00,118.7305879,357.4144889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072239682,6.238059626,0.545957776,-0.545957776,1,0.436789411,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541461313,122.7831722,0.541461313,57.21682775,0,0.957657299,0,0,0,6,0,0% +2018-06-17 09:00:00,117.6514188,12.98953222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053404628,0.226710106,1.039232675,-1.039232675,1,0.352434435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601058898,126.9457734,0.601058898,53.05422664,0,0.966813477,0,0,0,6,1,0% +2018-06-17 10:00:00,113.5338131,27.55985937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981538851,0.481010287,1.694508738,-1.694508738,1,0.240375629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606621138,127.3455882,0.606621138,52.65441184,0,0.967576232,0,0,0,6,2,0% +2018-06-17 11:00:00,106.900041,40.41983447,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865757687,0.705459195,2.862400051,-2.862400051,1,0.040654452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557769026,123.901651,0.557769026,56.09834902,0,0.960357159,0,0,0,6,3,0% +2018-06-17 12:00:00,98.37931278,51.50491443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717042924,0.898930338,6.438304179,-6.438304179,1,0,#DIV/0!,0,0,0.363406506,1,0.154089171,0,0.944836721,0.983598684,0.724496596,1,0,0,0.053032803,0.312029739,0.860641738,0.585138334,0.961238037,0.922476074,0,0,0,0,0,0,-0.457830103,117.2471764,0.457830103,62.75282361,0,0.940789182,0,0,0,6,4,0% +2018-06-17 13:00:00,88.20473597,61.13631009,2.561009757,14.35318087,2.111351275,2.066992217,0,2.066992217,2.047686244,0.019305973,5.110141281,4.425529784,0.684611497,0.063665031,0.620946466,1.539463058,1.067029904,-31.52350184,31.52350184,0,0,0.82442141,0.015916258,0.511921561,1,0.796788857,0,0.03171173,0.961238037,1,0.638505636,0.914009041,1.968313905,0.044214791,0.115824807,0.214445313,0.724496596,0.448993192,0.975690012,0.936928049,0.011531275,0.495444418,1.97984518,0.539659209,0,0.899316964,-0.308330942,107.9586741,0.308330942,72.04132592,0,0.88783658,1.97984518,1.338105706,2.855608603,6,5,44% +2018-06-17 14:00:00,77.68090918,69.77731561,139.0775577,425.7405164,48.24329653,47.83700852,0,47.83700852,46.78858314,1.048425376,92.07737095,56.90169352,35.17567743,1.454713389,33.72096404,1.355787631,1.217843901,-4.579048677,4.579048677,0.686782868,0.686782868,0.346880527,0.833950876,26.82272685,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9749658,1.053934898,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.604194571,25.7830253,45.57916037,26.8369602,0,56.90169352,-0.133653461,97.68076328,0.133653461,82.31923672,0,0.675898203,45.57916037,65.29671258,88.31455282,6,6,94% +2018-06-17 15:00:00,66.34926303,77.94387881,344.1195803,666.5467983,76.72744028,121.4537258,44.44578218,77.00794361,74.41382486,2.594118753,85.74939173,0,85.74939173,2.313615419,83.43577631,1.158013096,1.360377317,-2.261484175,2.261484175,0.916890261,0.916890261,0.222967377,2.426593213,78.04757908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52939892,1.676206495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758058522,75.0223017,73.28745745,76.69850819,44.44578218,0,0.066680663,86.17664257,-0.066680663,93.82335743,0,0,73.28745745,76.69850819,123.4850971,6,7,68% +2018-06-17 16:00:00,54.64425607,86.2559767,547.5832725,782.4441426,94.820887,312.015483,215.9258815,96.08960141,91.96168741,4.127914008,135.6271037,0,135.6271037,2.859199595,132.7679041,0.953722186,1.505450793,-1.3530925,1.3530925,0.761546135,0.761546135,0.173162497,3.314043757,106.5910392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.39707187,2.071480373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401013421,102.4593612,90.79808529,104.5308416,215.9258815,0,0.275963318,73.98057017,-0.275963318,106.0194298,0.868816499,0,278.3980538,104.5308416,346.811399,6,8,25% +2018-06-17 17:00:00,42.82335826,95.66463927,727.5610638,845.0176341,107.7805057,515.3458195,405.3306311,110.0151884,104.5305258,5.484662622,179.6555833,0,179.6555833,3.249979916,176.4056033,0.747408598,1.669662933,-0.835336958,0.835336958,0.673004723,0.673004723,0.148139464,3.956885868,127.2670512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4787174,2.354599385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866750341,122.3339305,103.3454678,124.6885298,405.3306311,0,0.47967121,61.33606957,-0.47967121,118.6639304,0.945761932,0,486.6917487,124.6885298,568.2978977,6,9,17% +2018-06-17 18:00:00,31.24609487,108.1432803,869.6208979,880.3427211,116.9743298,704.4265017,584.4238099,120.0026918,113.4471222,6.555569658,214.3768625,0,214.3768625,3.527207633,210.8496548,0.545347234,1.887456305,-0.477167583,0.477167583,0.611754152,0.611754152,0.134511866,4.352752888,139.9994954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.049689,2.555449923,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.15355465,134.5728401,112.2032437,137.12829,584.4238099,0,0.663859422,48.40511726,-0.663859422,131.5948827,0.974682849,0,681.831108,137.12829,771.5788312,6,10,13% +2018-06-17 19:00:00,20.79901723,129.0281206,963.2704516,899.1547962,122.7119844,859.9432832,733.6699784,126.2733049,119.0117653,7.261539551,237.2562924,0,237.2562924,3.70021909,233.5560733,0.363011332,2.251965533,-0.19547468,0.19547468,0.563581829,0.563581829,0.127390998,4.496182451,144.6126832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3986357,2.680796134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25746888,139.0072117,117.6561046,141.6880078,733.6699784,0,0.815955141,35.31808619,-0.815955141,144.6819138,0.988722121,0,843.051842,141.6880078,935.7838094,6,11,11% +2018-06-17 20:00:00,14.61255538,170.8817637,1001.790202,906.0839186,125.014555,967.4558042,838.6589815,128.7968227,121.244905,7.551917702,246.6652829,0,246.6652829,3.769650089,242.8956328,0.255037204,2.982449409,0.049218438,-0.049218438,0.521736841,0.521736841,0.124791154,4.390834875,141.224343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5452144,2.731098657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18114492,135.7502102,119.7263593,138.4813089,838.6589815,0,0.925586432,22.24304927,-0.925586432,157.7569507,0.995980193,0,955.014094,138.4813089,1045.647341,6,12,9% +2018-06-17 21:00:00,17.9779976,220.0512327,982.4481677,902.6582426,123.8621118,1016.90576,889.3724384,127.5333214,120.1272121,7.406109276,241.9408323,0,241.9408323,3.734899672,238.2059327,0.313775251,3.840618534,0.281166047,-0.281166047,0.482071464,0.482071464,0.126074958,4.05387672,130.3866104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4708455,2.705922098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937019884,125.3325694,118.4078654,128.0384915,889.3724384,0,0.985281468,9.842467786,-0.985281468,170.1575322,0.99925308,0,1007.116014,128.0384915,1090.914646,6,13,8% +2018-06-17 22:00:00,27.56067036,246.298734,906.6165744,888.1340885,119.2667064,1002.624414,880.1195805,122.5048339,115.6703752,6.834458694,223.4160161,0,223.4160161,3.596331246,219.8196849,0.481024442,4.298723852,0.52082503,-0.52082503,0.441087364,0.441087364,0.13155143,3.517102113,113.1220939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1867644,2.605529745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548128508,108.7372595,113.7348929,111.3427892,880.1195805,0,0.990976016,7.703071425,-0.990976016,172.2969286,0.999544692,0,993.4537479,111.3427892,1066.325377,6,14,7% +2018-06-17 23:00:00,38.9123833,260.6836262,779.7123314,859.1042162,111.2369755,923.2870554,809.5264842,113.7605712,107.8827703,5.877800906,192.4044872,0,192.4044872,3.354205234,189.050282,0.679149208,4.549787583,0.793262079,-0.793262079,0.394497885,0.394497885,0.142664122,2.826524614,90.91074772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7010223,2.430110274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.047807461,87.38686866,105.7488298,89.81697894,809.5264842,0,0.942291365,19.56000822,-0.942291365,160.4399918,0.996937856,0,912.7964274,89.81697894,971.5798438,6,15,6% +2018-06-17 00:00:00,50.70297053,270.8065371,610.9918298,807.441053,99.60650644,781.5302658,680.3213486,101.2089173,96.60300276,4.605914497,151.1455466,0,151.1455466,3.003503678,148.142043,0.884933776,4.726465708,1.142205099,-1.142205099,0.334825114,0.334825114,0.163024285,2.04163965,65.66614923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.85848073,2.17602819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479160976,63.12080038,94.33764171,65.29682857,680.3213486,0,0.842564725,32.58805252,-0.842564725,147.4119475,0.990657378,0,768.3030051,65.29682857,811.0384734,6,16,6% +2018-06-17 01:00:00,62.4749889,279.3503601,413.4792734,713.9994317,83.51459437,582.9414212,498.8281186,84.11330263,80.99632121,3.116981417,102.7711101,0,102.7711101,2.518273156,100.2528369,1.090394256,4.87558355,1.67261946,-1.67261946,0.244118916,0.244118916,0.201980123,1.236792885,39.77951064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85674479,1.824480329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896052235,38.23757871,78.75279703,40.06205904,498.8281186,0,0.698639378,45.68205724,-0.698639378,134.3179428,0.978432319,0,566.82235,40.06205904,593.0421664,6,17,5% +2018-06-17 02:00:00,73.95894376,287.4879571,205.5534263,528.1813491,59.60313767,334.2640238,274.9085921,59.35543171,57.80588316,1.549548553,51.63606253,0,51.63606253,1.797254513,49.83880801,1.29082708,5.017611412,2.759733007,-2.759733007,0.05821155,0.05821155,0.289964214,0.513360009,16.51142255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.56521365,1.302104777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.371927579,15.8714074,55.93714122,17.17351218,274.9085921,0,0.520481446,58.63544855,-0.520481446,121.3645515,0.953935096,0,318.1820954,17.17351218,329.4218157,6,18,4% +2018-06-17 03:00:00,84.85180375,295.9115428,28.75511213,133.5469318,16.77166305,59.39498474,42.91228104,16.48270371,16.26593553,0.216768181,7.477737372,0,7.477737372,0.505727522,6.972009851,1.480943352,5.164630716,7.722556315,-7.722556315,0,0,0.583258482,0.12643188,4.066483882,0.44149093,1,0.128774235,0,0.947910574,0.986672537,0.724496596,1,15.77079202,0.366397868,0.062447553,0.312029739,0.838222294,0.56271889,0.961238037,0.922476074,0.086523802,3.908858984,15.85731582,4.275256852,23.96689816,0,0.321327345,71.2567839,-0.321327345,108.7432161,0.89439544,0,37.29320025,4.275256852,40.09127036,6,19,8% +2018-06-17 04:00:00,95.21056189,305.1591547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661737788,5.326031991,-6.264722238,6.264722238,1,0.398515711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109248986,83.72797525,-0.109248986,96.27202475,0.59232985,0,0,0,0,6,20,0% +2018-06-17 05:00:00,104.2277574,315.7137535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819117539,5.510244492,-1.622119366,1.622119366,1,0.807552439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094598374,95.42820421,0.094598374,84.57179579,0,0.521449687,0,0,0,6,21,0% +2018-06-17 06:00:00,111.5548595,327.9630287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946999595,5.724034676,-0.527933858,0.527933858,1,0.620435696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278897712,106.1944277,0.278897712,73.80557225,0,0.870722803,0,0,0,6,22,0% +2018-06-17 07:00:00,116.5754916,342.0042386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034626156,5.969100019,0.069915005,-0.069915005,1,0.51819752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431094283,115.5370262,0.431094283,64.46297384,0,0.934016091,0,0,0,6,23,0% +2018-06-18 08:00:00,118.7038673,357.3585762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071773319,6.237083765,0.544861602,-0.544861602,1,0.436976868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540820541,122.7395141,0.540820541,57.26048586,0,0.95754789,0,0,0,6,0,0% +2018-06-18 09:00:00,117.637046,12.92875942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053153776,0.22564942,1.038167447,-1.038167447,1,0.3526166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600602097,126.9130319,0.600602097,53.08696814,0,0.966750207,0,0,0,6,1,0% +2018-06-18 10:00:00,113.5315111,27.49926818,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981498674,0.479952772,1.693055001,-1.693055001,1,0.240624233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606366664,127.3272502,0.606366664,52.67274976,0,0.967541641,0,0,0,6,2,0% +2018-06-18 11:00:00,106.9080957,40.36246391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865898267,0.704457889,2.859326531,-2.859326531,1,0.041180055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557721371,123.8983614,0.557721371,56.1016386,0,0.9603495,0,0,0,6,3,0% +2018-06-18 12:00:00,98.3955376,51.45141249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7173261,0.897996553,6.42367257,-6.42367257,1,0,#DIV/0!,0,0,0.362390888,1,0.154434602,0,0.944793772,0.983555735,0.724496596,1,0,0,0.052906392,0.312029739,0.860947549,0.585444145,0.961238037,0.922476074,0,0,0,0,0,0,-0.457979591,117.2568108,0.457979591,62.74318915,0,0.940824829,0,0,0,6,4,0% +2018-06-18 13:00:00,88.22530082,61.08578048,2.485580343,13.9035685,2.054995291,2.011766955,0,2.011766955,1.9930296,0.018737355,4.955615724,4.290992302,0.664623421,0.06196569,0.602657731,1.539821983,1.066147996,-31.88462952,31.88462952,0,0,0.826766794,0.015491423,0.4982574,1,0.799307469,0,0.031352797,0.961238037,1,0.639434773,0.914938177,1.91577586,0.043049191,0.115824807,0.215497616,0.724496596,0.448993192,0.975544998,0.936783035,0.011223483,0.482196452,1.926999343,0.525245644,0,0.861170105,-0.30862525,107.9764012,0.30862525,72.02359881,0,0.887991221,1.926999343,1.289957137,2.77125049,6,5,44% +2018-06-18 14:00:00,77.70756429,69.72802947,138.5310213,424.3160414,48.19354494,47.7846371,0,47.7846371,46.74033175,1.044305354,91.94806679,56.90640362,35.04166317,1.453213195,33.58844997,1.35625285,1.216983695,-4.589273316,4.589273316,0.685034352,0.685034352,0.347889913,0.8298131,26.68964178,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.92858473,1.052848013,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.601196767,25.65509886,45.5297815,26.70794688,0,56.90640362,-0.134113251,97.70734661,0.134113251,82.29265339,0,0.677180761,45.5297815,65.24386861,88.23058863,6,6,94% +2018-06-18 15:00:00,66.37903404,77.89343625,343.4729747,665.6471618,76.75859045,121.0490539,44.01577376,77.03328011,74.44403574,2.589244367,85.59355402,0,85.59355402,2.314554711,83.2789993,1.158532698,1.359496928,-2.264963087,2.264963087,0.917485189,0.917485189,0.223477817,2.423339619,77.94293233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55843877,1.676887009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755701305,74.92171126,73.31414007,76.59859827,44.01577376,0,0.066124782,86.20856261,-0.066124782,93.79143739,0,0,73.31414007,76.59859827,123.4463907,6,7,68% +2018-06-18 16:00:00,54.67569636,86.20085002,546.9454732,781.8254164,94.89107747,311.4390018,215.2861344,96.15286738,92.02976137,4.123106008,135.4745784,0,135.4745784,2.861316096,132.6132623,0.954270922,1.504488651,-1.355046436,1.355046436,0.761880278,0.761880278,0.173492756,3.311647099,106.5139544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.46250715,2.073013772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39927705,102.3852644,90.8617842,104.4582782,215.2861344,0,0.275363438,74.01632616,-0.275363438,105.9836738,0.86842179,0,277.8209545,104.4582782,346.1868084,6,8,25% +2018-06-18 17:00:00,42.85476049,95.59865709,727.0004829,844.5542575,107.8745186,514.7122507,404.61011,110.1021406,104.6217039,5.480436726,179.5224987,0,179.5224987,3.252814752,176.269684,0.747956671,1.668511327,-0.836717916,0.836717916,0.67324088,0.67324088,0.148383008,3.955375767,127.2184812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5663613,2.356653215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865656279,122.2872431,103.4320175,124.6438963,404.61011,0,0.479081251,61.37458577,-0.479081251,118.6254142,0.94563357,0,486.0449202,124.6438963,567.6218575,6,9,17% +2018-06-18 18:00:00,31.27444062,108.0532345,869.1912365,879.9736407,117.0861255,703.8227705,583.714893,120.1078775,113.5555468,6.552330689,214.2760571,0,214.2760571,3.530578684,210.7454784,0.545841961,1.88588471,-0.478289047,0.478289047,0.611945934,0.611945934,0.134706979,4.352185976,139.9812615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1539109,2.557892238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153143924,134.555313,112.3070548,137.1132053,583.714893,0,0.663332248,48.44549316,-0.663332248,131.5545068,0.974622992,0,681.2090104,137.1132053,770.946861,6,10,13% +2018-06-18 19:00:00,20.81645952,128.8826431,963.0128993,898.8475819,122.838829,859.4396641,733.045281,126.3943831,119.1347851,7.259598013,237.1976707,0,237.1976707,3.704043922,233.4936268,0.363315757,2.24942647,-0.196481032,0.196481032,0.563753925,0.563753925,0.127556785,4.496595529,144.6259692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5168869,2.683567212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257768154,139.0199827,117.7746551,141.7035499,733.045281,0,0.815539025,35.35930558,-0.815539025,144.6406944,0.988690855,0,842.529821,141.7035499,935.2719603,6,11,11% +2018-06-18 20:00:00,14.59833975,170.6733914,1001.732343,905.8205832,125.1548423,967.1079294,838.1754859,128.9324436,121.380962,7.551481537,246.6554846,0,246.6554846,3.773880267,242.8816043,0.254789094,2.978812625,0.048237929,-0.048237929,0.521904518,0.521904518,0.124938406,4.392221108,141.268929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6759976,2.734163407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.182149241,135.793068,119.8581469,138.5272314,838.1754859,0,0.925321749,22.28307798,-0.925321749,157.716922,0.995964741,0,954.6513779,138.5272314,1045.31468,6,12,9% +2018-06-18 21:00:00,17.932771,219.9536238,982.602752,902.4297848,124.0144031,1016.754119,889.0719329,127.6821859,120.2749113,7.407274598,241.9829052,0,241.9829052,3.739491818,238.2434134,0.312985898,3.838914937,0.280134629,-0.280134629,0.482247847,0.482247847,0.126210112,4.05617471,130.4605217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6128196,2.709249092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93868477,125.4036157,118.5515044,128.1128648,889.0719329,0,0.985197904,9.870437405,-0.985197904,170.1295626,0.999248776,0,1006.955545,128.1128648,1090.802852,6,13,8% +2018-06-18 22:00:00,27.50843673,246.2673515,906.9808689,887.939495,119.4292989,1002.693688,880.0284179,122.6652698,115.8280649,6.8372049,223.5092463,0,223.5092463,3.601234008,219.9080123,0.480112793,4.298176124,0.519649532,-0.519649532,0.441288386,0.441288386,0.131677859,3.52019193,113.2214731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3383417,2.60908178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55036707,108.8327865,113.8887087,111.4418683,880.0284179,0,0.991090522,7.65396946,-0.991090522,172.3460305,0.999550521,0,993.5215728,111.4418683,1066.458047,6,14,7% +2018-06-18 23:00:00,38.8590545,260.6691484,780.2682099,858.9540561,111.4078043,923.5865247,809.6560854,113.9304393,108.0484479,5.881991353,192.5444175,0,192.5444175,3.35935635,189.1850611,0.678218445,4.549534899,0.791790274,-0.791790274,0.394749578,0.394749578,0.142781422,2.830226567,91.02981524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.860278,2.43384224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050489513,87.5013209,105.9107675,89.93516314,809.6560854,0,0.942606976,19.50592341,-0.942606976,160.4940766,0.996955623,0,913.1019543,89.93516314,971.9627199,6,15,6% +2018-06-18 00:00:00,50.64961435,270.7959695,611.7063034,807.3713188,99.78352529,782.0567786,680.6707942,101.3859843,96.77468384,4.611300501,151.3241168,0,151.3241168,3.008841449,148.3152753,0.884002535,4.726281269,1.14011725,-1.14011725,0.335182157,0.335182157,0.163123258,2.045708519,65.79701805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.02350711,2.179895388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482108858,63.24659646,94.50561597,65.42649185,680.6707942,0,0.843070318,32.53422795,-0.843070318,147.4657721,0.990692966,0,768.841384,65.42649185,811.6617144,6,16,6% +2018-06-18 01:00:00,62.42200675,279.3395515,414.3034021,714.1192881,83.69786522,583.6882306,499.3909708,84.29725982,81.17406577,3.123194048,102.9764559,0,102.9764559,2.523799449,100.4526565,1.089469544,4.875394906,1.669029126,-1.669029126,0.244732899,0.244732899,0.202020705,1.240884007,39.91109518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02759962,1.828484109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899016239,38.36406278,78.92661586,40.19254688,499.3909708,0,0.699310296,45.62830488,-0.699310296,134.3716951,0.978500981,0,567.5811708,40.19254688,593.8863889,6,17,5% +2018-06-18 02:00:00,73.90680426,287.4749114,206.4053948,528.8583647,59.80556399,335.2416493,275.6834727,59.55817663,58.00220558,1.555971052,51.84873607,0,51.84873607,1.803358413,50.04537766,1.289917074,5.01738372,2.750786431,-2.750786431,0.059741505,0.059741505,0.289748066,0.516861819,16.62405281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.75392622,1.306527032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374464629,15.97967189,56.12839085,17.28619892,275.6834727,0,0.521280348,58.58182601,-0.521280348,121.418174,0.954082323,0,319.1531189,17.28619892,330.4665904,6,18,4% +2018-06-18 03:00:00,84.80201475,295.8947017,29.29821926,135.4298875,17.02860179,60.37066595,43.63467698,16.73598897,16.51512662,0.220862352,7.617167636,0,7.617167636,0.513475173,7.103692463,1.48007437,5.164336783,7.650504494,-7.650504494,0,0,0.581216272,0.128368793,4.128781654,0.437620795,1,0.12997347,0,0.947768252,0.986530215,0.724496596,1,16.01252464,0.372011015,0.061994661,0.312029739,0.839284645,0.563781241,0.961238037,0.922476074,0.087848832,3.968741972,16.10037347,4.340752987,24.53923494,0,0.322193851,71.20434832,-0.322193851,108.7956517,0.894813922,0,38.05842254,4.340752987,40.89935855,6,19,7% +2018-06-18 04:00:00,95.16178068,305.136842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660886395,5.325642561,-6.327790633,6.327790633,1,0.387730381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110169655,83.67490446,-0.110169655,96.32509554,0.596154521,0,0,0,0,6,20,0% +2018-06-18 05:00:00,104.1826595,315.6840561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818330432,5.509726175,-1.629364576,1.629364576,1,0.808791443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093697537,95.37635978,0.093697537,84.62364022,0,0.516368042,0,0,0,6,21,0% +2018-06-18 06:00:00,111.5155532,327.9241622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94631357,5.723356327,-0.530678395,0.530678395,1,0.62090504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278069018,106.1449914,0.278069018,73.85500856,0,0.870188526,0,0,0,6,22,0% +2018-06-18 07:00:00,116.5446377,341.9556395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034087654,5.968251806,0.068312279,-0.068312279,1,0.518471602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430385169,115.4920064,0.430385169,64.50799356,0,0.933824993,0,0,0,6,23,0% +2018-06-19 08:00:00,118.6839907,357.3023077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071426408,6.236101694,0.54359709,-0.54359709,1,0.437193112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540270289,122.7020405,0.540270289,57.29795948,0,0.95745373,0,0,0,6,0,0% +2018-06-19 09:00:00,117.6294052,12.86942907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053020418,0.22461391,1.03684342,-1.03684342,1,0.352843022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600239118,126.8870252,0.600239118,53.11297484,0,0.966699864,0,0,0,6,1,0% +2018-06-19 10:00:00,113.535518,27.44160202,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981568607,0.478946307,1.691169576,-1.691169576,1,0.240946659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606206539,127.3157136,0.606206539,52.68428642,0,0.96751986,0,0,0,6,2,0% +2018-06-19 11:00:00,106.9218728,40.30904848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866138723,0.703525614,2.855341111,-2.855341111,1,0.041861602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557765778,123.9014268,0.557765778,56.09857321,0,0.960356637,0,0,0,6,3,0% +2018-06-19 12:00:00,98.41687331,51.40254879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717698479,0.89714372,6.405317853,-6.405317853,1,0,#DIV/0!,0,0,0.361112248,1,0.154870108,0,0.944739585,0.983501548,0.724496596,1,0,0,0.052747094,0.312029739,0.8613331,0.585829696,0.961238037,0.922476074,0,0,0,0,0,0,-0.458216196,117.2720617,0.458216196,62.72793835,0,0.940881203,0,0,0,6,4,0% +2018-06-19 13:00:00,88.25003347,61.04040541,2.39805746,13.39227541,1.989085099,1.947184414,0,1.947184414,1.929106844,0.01807757,4.779536003,4.138120954,0.641415049,0.059978255,0.581436795,1.540253649,1.065356051,-32.33152128,32.33152128,0,0,0.829456814,0.014994564,0.482276711,1,0.802339098,0,0.030919711,0.961238037,1,0.640557213,0.916060617,1.854330876,0.041685695,0.115824807,0.216768919,0.724496596,0.448993192,0.975369483,0.93660752,0.01086351,0.466702915,1.865194386,0.50838861,0,0.817944721,-0.308993119,107.9985617,0.308993119,72.00143833,0,0.888184099,1.865194386,1.234874105,2.67339479,6,5,43% +2018-06-19 14:00:00,77.73829356,69.6844099,137.9138679,422.7605064,48.1291196,47.71750206,0,47.71750206,46.67784907,1.039652991,91.81199979,56.92191527,34.89008452,1.451270533,33.43881398,1.356789177,1.21622239,-4.601116813,4.601116813,0.683008995,0.683008995,0.34897955,0.825102271,26.53812529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.868524,1.051440561,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.597783786,25.50945546,45.46630779,26.56089602,0,56.92191527,-0.134643408,97.7380004,0.134643408,82.2619996,0,0.678648734,45.46630779,65.19088174,88.13243606,6,6,94% +2018-06-19 15:00:00,66.41255924,77.84930965,342.7585313,664.6944068,76.78229007,120.5940223,43.54314293,77.05087932,74.46702073,2.583858591,85.42104358,0,85.42104358,2.315269342,83.10577424,1.159117823,1.358726774,-2.268819505,2.268819505,0.918144676,0.918144676,0.224012776,2.419735289,77.82700467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58053281,1.677404757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75308998,74.81027719,73.33362279,76.48768194,43.54314293,0,0.065508514,86.24394891,-0.065508514,93.75605109,0,0,73.33362279,76.48768194,123.3932809,6,7,68% +2018-06-19 16:00:00,54.71070805,86.15298186,546.2486901,781.1809963,94.95645569,310.8122696,214.601248,96.21102156,92.0931682,4.117853363,135.3076067,0,135.3076067,2.863287491,132.4443192,0.954881992,1.503653194,-1.357132039,1.357132039,0.762236937,0.762236937,0.173833745,3.308975935,106.4280406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.52345621,2.07444204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397341801,102.3026808,90.92079801,104.3771228,214.601248,0,0.274713862,74.05503709,-0.274713862,105.9449629,0.867992439,0,277.1930586,104.3771228,345.505798,6,8,25% +2018-06-19 17:00:00,42.88976869,95.54138911,726.3897171,844.0763266,107.965005,514.0353608,403.8500665,110.1852943,104.7094618,5.475832516,179.37714,0,179.37714,3.25554325,176.1215968,0.748567679,1.667511812,-0.838144596,0.838144596,0.673484857,0.673484857,0.148632342,3.953636322,127.1625346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6507175,2.358630002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864396056,122.2334652,103.5151135,124.5920952,403.8500665,0,0.478452071,61.41564695,-0.478452071,118.584353,0.945496324,0,485.353867,124.5920952,566.8969015,6,9,17% +2018-06-19 18:00:00,31.30681476,107.9741472,868.7185766,879.5951053,117.1951289,703.1839946,582.9739637,120.2100309,113.6612634,6.548767579,214.1647421,0,214.1647421,3.533865541,210.6308766,0.546406996,1.884504375,-0.479415331,0.479415331,0.61213854,0.61213854,0.134905747,4.351415585,139.9564831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2555297,2.560273554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152585779,134.5314951,112.4081154,137.0917686,582.9739637,0,0.662775361,48.48811732,-0.662775361,131.5118827,0.974559658,0,680.551022,137.0917686,770.2748428,6,10,13% +2018-06-19 19:00:00,20.83913265,128.7503418,962.7171687,898.5332951,122.9632957,858.9083227,732.3954554,126.5128673,119.2554986,7.257368671,237.1297206,0,237.1297206,3.70779705,233.4219235,0.363711478,2.247117378,-0.197467084,0.197467084,0.56392255,0.56392255,0.127725255,4.496815517,144.6330447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6329214,2.686286341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257927534,139.026784,117.8908489,141.7130703,732.3954554,0,0.815101076,35.40264275,-0.815101076,144.5973572,0.988657914,0,841.9794123,141.7130703,934.7277826,6,11,11% +2018-06-19 20:00:00,14.5911179,170.4684673,1001.638341,905.5510399,125.2929203,966.7374274,837.671778,129.0656494,121.5148765,7.550772908,246.6368562,0,246.6368562,3.778043829,242.8588123,0.254663049,2.975236024,0.04729776,-0.04729776,0.522065296,0.522065296,0.125087984,4.39341106,141.3072019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8047213,2.737179893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183011357,135.8298574,119.9877327,138.5670373,837.671778,0,0.925040932,22.32547199,-0.925040932,157.674528,0.995948338,0,954.2655476,138.5670373,1044.954902,6,12,10% +2018-06-19 21:00:00,17.89332569,219.843169,982.7202729,902.1948246,124.1644307,1016.581906,888.7533304,127.8285755,120.420415,7.40816052,242.0159234,0,242.0159234,3.744015703,238.2719077,0.312297447,3.836987137,0.279164262,-0.279164262,0.482413789,0.482413789,0.126347684,4.058261513,130.5276404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7526833,2.712526632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940196651,125.4681328,118.69288,128.1806595,888.7533304,0,0.98510134,9.902661134,-0.98510134,170.0973389,0.999243801,0,1006.774136,128.1806595,1090.665814,6,13,8% +2018-06-19 22:00:00,27.4604441,246.2241052,907.3042997,887.7367895,119.5893432,1002.740862,879.9179357,122.8229264,115.9832833,6.839643058,223.5924918,0,223.5924918,3.606059937,219.9864319,0.479275164,4.297421334,0.518561788,-0.518561788,0.441474401,0.441474401,0.131807315,3.523046519,113.3132864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4875436,2.612578149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55243521,108.921041,114.0399788,111.5336192,879.9179357,0,0.991192374,7.610029531,-0.991192374,172.3899705,0.999555706,0,993.5669718,111.5336192,1066.563495,6,14,7% +2018-06-19 23:00:00,38.80935842,260.6453172,780.7768608,858.7920346,111.5755275,923.8583638,809.7614243,114.0969394,108.2111137,5.885825778,192.6728032,0,192.6728032,3.364413823,189.3083894,0.677351085,4.549118965,0.790447414,-0.790447414,0.394979221,0.394979221,0.14290322,2.833663948,91.14037321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0166385,2.437506362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052979884,87.60759342,106.0696183,90.04509979,809.7614243,0,0.94290747,19.45429502,-0.94290747,160.545705,0.996972527,0,913.3795121,90.04509979,972.3122291,6,15,6% +2018-06-19 00:00:00,50.59976383,270.7777279,612.3652278,807.2814847,99.9564654,782.5455713,680.9868943,101.5586769,96.94240917,4.616267751,151.4890954,0,151.4890954,3.014056232,148.4750392,0.88313248,4.725962894,1.138233802,-1.138233802,0.335504245,0.335504245,0.163230146,2.049484321,65.91846083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.18473108,2.18367348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484844414,63.36333188,94.66957549,65.54700536,680.9868943,0,0.843555696,32.48248077,-0.843555696,147.5175192,0.990727091,0,769.3417403,65.54700536,812.2409444,6,16,6% +2018-06-19 01:00:00,62.37265895,279.3221435,415.0628519,714.1992556,83.87517943,584.381319,499.9063666,84.4749524,81.3460333,3.128919101,103.16594,0,103.16594,2.529146126,100.6367939,1.088608262,4.875091077,1.665816178,-1.665816178,0.245282346,0.245282346,0.202078261,1.244666425,40.03275073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.19290136,1.832357759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901756588,38.48100272,79.09465795,40.31336048,499.9063666,0,0.699953637,45.57671558,-0.699953637,134.4232844,0.978566697,0,568.2863801,40.31336048,594.6706683,6,17,5% +2018-06-19 02:00:00,73.85858766,287.4559861,207.1862314,529.4395114,59.99727464,336.1399999,276.3900072,59.74999277,58.18813544,1.561857328,52.04383972,0,52.04383972,1.809139197,50.23470053,1.289075535,5.017053413,2.742814358,-2.742814358,0.06110481,0.06110481,0.289581379,0.520085017,16.72772194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.93264908,1.31071519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.376799825,16.0793226,56.30944891,17.39003779,276.3900072,0,0.522042653,58.53063137,-0.522042653,121.4693686,0.954222385,0,320.0469808,17.39003779,331.4284128,6,18,4% +2018-06-19 03:00:00,84.75647095,295.8725179,29.79489687,137.1166802,17.26391968,61.25872152,44.29076619,16.96795532,16.74334881,0.224606518,7.744688575,0,7.744688575,0.520570875,7.2241177,1.47927948,5.163949604,7.586715606,-7.586715606,0,0,0.579425388,0.130142719,4.185837201,0.434149451,1,0.131053864,0,0.947639752,0.986401715,0.724496596,1,16.23390278,0.377151827,0.061587252,0.312029739,0.840241704,0.5647383,0.961238037,0.922476074,0.089062903,4.023585934,16.32296569,4.400737761,25.06195438,0,0.323015159,71.15463274,-0.323015159,108.8453673,0.895208503,0,38.75864035,4.400737761,41.6388352,6,19,7% +2018-06-19 04:00:00,95.11789797,305.109682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660120497,5.32516853,-6.386682919,6.386682919,1,0.377659207,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111032361,83.62516991,-0.111032361,96.37483009,0.599680838,0,0,0,0,6,20,0% +2018-06-19 05:00:00,104.1430675,315.6501195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817639421,5.50913387,-1.636259101,1.636259101,1,0.809970476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092865135,95.32845782,0.092865135,84.67154218,0,0.511584804,0,0,0,6,21,0% +2018-06-19 06:00:00,111.482368,327.8819574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94573438,5.722619715,-0.533410684,0.533410684,1,0.621372289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277318208,106.100212,0.277318208,73.899788,0,0.869701705,0,0,0,6,22,0% +2018-06-19 07:00:00,116.520406,341.9050423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03366473,5.967368718,0.066615988,-0.066615988,1,0.518761685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429761713,115.4524388,0.429761713,64.54756121,0,0.933656458,0,0,0,6,23,0% +2018-06-20 08:00:00,118.6709679,357.2457733,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071199116,6.235114984,0.542167595,-0.542167595,1,0.43743757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539811258,122.6707913,0.539811258,57.32920874,0,0.957375033,0,0,0,6,0,0% +2018-06-20 09:00:00,117.6284873,12.81162942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053004398,0.223605116,1.035264553,-1.035264553,1,0.353113024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599970329,126.8677726,0.599970329,53.13222736,0,0.966662545,0,0,0,6,1,0% +2018-06-20 10:00:00,113.5458074,27.38694402,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98174819,0.477992345,1.688858945,-1.688858945,1,0.2413418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606140774,127.3109758,0.606140774,52.68902415,0,0.967510911,0,0,0,6,2,0% +2018-06-20 11:00:00,106.9413312,40.25966421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866478336,0.702663696,2.850460037,-2.850460037,1,0.042696314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557901904,123.9108243,0.557901904,56.08917574,0,0.96037851,0,0,0,6,3,0% +2018-06-20 12:00:00,98.44326665,51.35839187,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718159129,0.896373037,6.383345922,-6.383345922,1,0,#DIV/0!,0,0,0.359574862,1,0.155394656,0,0.944674262,0.983436225,0.724496596,1,0,0,0.052555341,0.312029739,0.86179747,0.586294066,0.961238037,0.922476074,0,0,0,0,0,0,-0.45853925,117.2928881,0.45853925,62.7071119,0,0.940958081,0,0,0,6,4,0% +2018-06-20 13:00:00,88.27886381,61.00024689,2.299566205,12.82555653,1.914350924,1.873961282,0,1.873961282,1.856626181,0.017335101,4.583937911,3.968656717,0.615281193,0.057724744,0.55755645,1.540756833,1.064655153,-32.86979229,32.86979229,0,0,0.832483501,0.014431186,0.464156545,1,0.805871201,0,0.030413689,0.961238037,1,0.641870555,0.917373959,1.784659705,0.040139114,0.115824807,0.218256541,0.724496596,0.448993192,0.975163657,0.936401694,0.010455345,0.449135903,1.79511505,0.489275017,0,0.770430561,-0.30943349,108.0250933,0.30943349,71.97490671,0,0.888414387,1.79511505,1.173736612,2.563302188,6,5,43% +2018-06-20 14:00:00,77.77302687,69.64651423,137.2274814,421.0752081,48.05010595,47.63569669,0,47.63569669,46.60121797,1.03447872,91.66866208,56.94738247,34.72127961,1.44888798,33.27239163,1.357395388,1.215560986,-4.614576631,4.614576631,0.68070723,0.68070723,0.350149296,0.819832008,26.36861553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.79486327,1.04971441,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.593965499,25.34651623,45.38882877,26.39623064,0,56.94738247,-0.135242782,97.77265901,0.135242782,82.22734099,0,0.680294502,45.38882877,65.13722183,88.01983772,6,6,94% +2018-06-20 15:00:00,66.44976265,77.81155413,341.9776129,663.6891464,76.79862313,120.0898811,43.02904814,77.06083298,74.48286128,2.577971698,85.23219338,0,85.23219338,2.315761844,82.91643153,1.159767145,1.358067816,-2.273048731,2.273048731,0.918867916,0.918867916,0.224572078,2.415786128,77.69998608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.59575936,1.677761573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750228826,74.68818209,73.34598818,76.36594366,43.02904814,0,0.064833135,86.28272772,-0.064833135,93.71727228,0,0,73.34598818,76.36594366,123.325971,6,7,68% +2018-06-20 16:00:00,54.74921033,86.11242897,545.4941938,780.5112476,95.01709658,310.1366412,213.872495,96.26414619,92.15198054,4.11216565,135.1264988,0,135.1264988,2.865116038,132.2613828,0.955553983,1.502945413,-1.359346156,1.359346156,0.762615573,0.762615573,0.174185349,3.306035047,106.3334515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57998887,2.075766816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395211137,102.2117582,90.9752,104.287525,213.872495,0,0.274015904,74.09662295,-0.274015904,105.9033771,0.867528839,0,276.5157574,104.287525,344.7698567,6,8,25% +2018-06-20 17:00:00,42.92829789,95.49290153,725.729853,843.5840662,108.0520259,513.3164711,403.0517543,110.2647168,104.7938586,5.470858182,179.2197723,0,179.2197723,3.25816725,175.9616051,0.74924014,1.666665544,-0.83961471,0.83961471,0.673736261,0.673736261,0.148887393,3.951670995,127.099323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.731843,2.360531082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.862972184,122.1727037,103.5948151,124.5332348,403.0517543,0,0.47778493,61.45916801,-0.47778493,118.540832,0.945350404,0,484.6199539,124.5332348,566.1244654,6,9,17% +2018-06-20 18:00:00,31.3431289,107.9061177,868.2037424,879.207248,117.3013845,702.511343,582.2021415,120.3092015,113.764315,6.544886541,214.0431186,0,214.0431186,3.537069539,210.5060491,0.547040797,1.883317037,-0.480544622,0.480544622,0.61233166,0.61233166,0.13510813,4.350443708,139.9252242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3545868,2.56259484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151881657,134.5014478,112.5064684,137.0640427,582.2021415,0,0.662189879,48.53289994,-0.662189879,131.4671001,0.974492957,0,679.8583546,137.0640427,769.5640292,6,10,13% +2018-06-20 19:00:00,20.86695162,128.631458,962.3837632,898.2120009,123.0854098,858.3501756,731.7213897,126.6287859,119.3739305,7.254855319,237.0525647,0,237.0525647,3.711479242,233.3410855,0.364197011,2.245042464,-0.19843129,0.19843129,0.564087439,0.564087439,0.127896391,4.496842861,144.6339242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7467626,2.688954076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257947345,139.0276294,118.00471,141.7165835,731.7213897,0,0.814642188,35.4480024,-0.814642188,144.5519976,0.98862336,0,841.4015691,141.7165835,934.1522387,6,11,11% +2018-06-20 20:00:00,14.59087179,170.2676232,1001.508342,905.2752947,125.4287939,966.3448841,837.1484381,129.1964459,121.646653,7.549792923,246.6094336,0,246.6094336,3.78214092,242.8272926,0.254658753,2.971730635,0.046399337,-0.046399337,0.522218936,0.522218936,0.125239889,4.394403653,141.3391271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9313899,2.740148221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183730487,135.8605451,120.1151204,138.6006933,837.1484381,0,0.924744598,22.37012604,-0.924744598,157.629874,0.995931017,0,953.8572157,138.6006933,1044.568597,6,12,10% +2018-06-20 21:00:00,17.8597337,219.7201167,982.800512,901.9533082,124.3121778,1016.389324,888.4168515,127.9724724,120.563707,7.408765396,242.0398334,0,242.0398334,3.748470825,238.2913626,0.311711157,3.834839469,0.278256299,-0.278256299,0.48256906,0.48256906,0.126487702,4.060134648,130.5878869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.890421,2.715754352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941553731,125.5260441,118.8319748,128.2417984,888.4168515,0,0.984992065,9.939001542,-0.984992065,170.0609985,0.99923817,0,1006.572003,128.2417984,1090.503696,6,13,8% +2018-06-20 22:00:00,27.41677341,246.1690644,907.5862986,887.5258482,119.7468007,1002.765731,879.7879696,122.9777618,116.1359929,6.841768885,223.6656136,0,223.6656136,3.610807861,220.0548058,0.478512966,4.296460691,0.517563168,-0.517563168,0.441645175,0.441645175,0.131939851,3.525662215,113.3974162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6343338,2.616018003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554330273,109.0019098,114.1886641,111.6179278,879.7879696,0,0.991281518,7.571363852,-0.991281518,172.4286361,0.999560242,0,993.5897398,111.6179278,1066.641441,6,14,7% +2018-06-20 23:00:00,38.76337542,260.612175,781.2374083,858.6179334,111.7400835,924.1019608,809.8419555,114.2600053,108.3707077,5.88929758,192.7894303,0,192.7894303,3.369375794,189.4200545,0.67654853,4.548540524,0.789234955,-0.789234955,0.395186563,0.395186563,0.143029612,2.83683221,91.24227542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1700463,2.441101293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055275279,87.7055457,106.2253216,90.14664699,809.8419555,0,0.943192454,19.40520936,-0.943192454,160.5947906,0.99698855,0,913.6284782,90.14664699,972.6276557,6,15,6% +2018-06-20 00:00:00,50.55349787,270.7518512,612.9674843,807.1711931,100.12524,782.9956586,681.2687562,101.7269024,97.10609462,4.620807815,151.6402087,0,151.6402087,3.01914541,148.6210633,0.882324986,4.725511259,1.136556334,-1.136556334,0.335791109,0.335791109,0.163345108,2.052961989,66.03031456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34207176,2.187360572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487363972,63.47084994,94.82943573,65.65821052,681.2687562,0,0.844020156,32.43289483,-0.844020156,147.5671052,0.990759709,0,769.8030701,65.65821052,812.7750557,6,16,6% +2018-06-20 01:00:00,62.32702209,279.2981762,415.756346,714.2387704,84.04641873,585.019395,500.3731389,84.64625606,81.51210911,3.134146953,103.3392492,0,103.3392492,2.534309623,100.8049396,1.087811748,4.87467277,1.662982036,-1.662982036,0.245767012,0.245767012,0.202153063,1.248134913,40.14430923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.35253974,1.836098695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904269495,38.58823699,79.25680923,40.42433569,500.3731389,0,0.700568437,45.52737243,-0.700568437,134.4726276,0.978629385,0,568.9366666,40.42433569,595.3935858,6,17,5% +2018-06-20 02:00:00,73.81436712,287.4312261,207.8945881,529.924022,60.1781079,336.9576102,277.0268971,59.93071313,58.36351591,1.56719722,52.2210418,0,52.2210418,1.814591987,50.40644981,1.288303742,5.016621269,2.735813676,-2.735813676,0.062301997,0.062301997,0.289464524,0.523024337,16.82226056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.10123146,1.314665717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378929352,16.17019671,56.48016081,17.48486243,277.0268971,0,0.5227672,58.4819465,-0.5227672,121.5180535,0.954355132,0,320.8622017,17.48486243,332.3056944,6,18,4% +2018-06-20 03:00:00,84.71524314,295.8450424,30.24337413,138.6038432,17.47717308,62.0566907,44.87853154,17.17815916,16.95017183,0.227987329,7.859857456,0,7.859857456,0.527001252,7.332856204,1.478559919,5.163470066,7.530916873,-7.530916873,0,0,0.577884366,0.131750313,4.237542958,0.431077595,1,0.132013678,0,0.94752537,0.986287333,0.724496596,1,16.43451233,0.381810613,0.061225789,0.312029739,0.841091932,0.565588528,0.961238037,0.922476074,0.090163574,4.073287474,16.5246759,4.455098087,25.53240209,0,0.32378995,71.10771938,-0.32378995,108.8922806,0.895578901,0,39.39095651,4.455098087,42.30672911,6,19,7% +2018-06-20 04:00:00,95.07897475,305.0777333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659441159,5.324610921,-6.441033356,6.441033356,1,0.368364735,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111835804,83.57884755,-0.111835804,96.42115245,0.602915986,0,0,0,0,6,20,0% +2018-06-20 05:00:00,104.1090325,315.6120114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817045398,5.508468758,-1.642781438,1.642781438,1,0.811085861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092102408,95.28456868,0.092102408,84.71543132,0,0.50712603,0,0,0,6,21,0% +2018-06-20 06:00:00,111.4553423,327.8364907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945262692,5.72182617,-0.536123883,0.536123883,1,0.621836273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276646374,106.0601514,0.276646374,73.93984862,0,0.869263852,0,0,0,6,22,0% +2018-06-20 07:00:00,116.502819,341.8525292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033357779,5.966452191,0.064830145,-0.064830145,1,0.519067082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429224785,115.4183731,0.429224785,64.58162692,0,0.933510921,0,0,0,6,23,0% +2018-06-21 08:00:00,118.6648039,357.1890576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071091534,6.234125107,0.540576636,-0.540576636,1,0.43770964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539444037,122.6458001,0.539444037,57.35419994,0,0.957311979,0,0,0,6,0,0% +2018-06-21 09:00:00,117.6342804,12.75544285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053105506,0.222624475,1.033435111,-1.033435111,1,0.353425877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599796001,126.8552887,0.599796001,53.1447113,0,0.966638324,0,0,0,6,1,0% +2018-06-21 10:00:00,113.5623511,27.33537137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982036932,0.477092233,1.686130188,-1.686130188,1,0.241808445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606169305,127.3130312,0.606169305,52.68696879,0,0.967514794,0,0,0,6,2,0% +2018-06-21 11:00:00,106.9664289,40.21438108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866916374,0.701873356,2.844701145,-2.844701145,1,0.043681143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558129357,123.9265288,0.558129357,56.07347124,0,0.960415033,0,0,0,6,3,0% +2018-06-21 12:00:00,98.47466442,51.31900404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718707124,0.895685589,6.35787346,-6.35787346,1,0,#DIV/0!,0,0,0.357783255,1,0.156007203,0,0.944597902,0.983359865,0.724496596,1,0,0,0.052331575,0.312029739,0.862339733,0.586836329,0.961238037,0.922476074,0,0,0,0,0,0,-0.45894806,117.3192485,0.45894806,62.68075146,0,0.94105521,0,0,0,6,4,0% +2018-06-21 13:00:00,88.31172048,60.96536037,2.19133473,12.21016203,1.831601714,1.792891371,0,1.792891371,1.776372164,0.016519207,4.371025899,3.784481874,0.586544025,0.05522955,0.531314476,1.541330291,1.064046268,-33.50663566,33.50663566,0,0,0.8358384,0.013807387,0.444093041,1,0.80989048,0,0.029835978,0.961238037,1,0.643372425,0.918875829,1.707516492,0.038425862,0.115824807,0.219957839,0.724496596,0.448993192,0.974927677,0.936165714,0.010003405,0.429686067,1.717519897,0.46811193,0,0.719466031,-0.309945262,108.0559318,0.309945262,71.94406821,0,0.888681193,1.717519897,1.107487861,2.442348552,6,5,42% +2018-06-21 14:00:00,77.81169586,69.61439265,136.4732284,419.261291,47.95657473,47.53929991,0,47.53929991,46.51050706,1.028792842,91.51748506,56.98190314,34.53558192,1.446067669,33.08951425,1.358070289,1.215000359,-4.629653624,4.629653624,0.678128912,0.678128912,0.351399137,0.814016014,26.18155318,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7076685,1.047671104,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.589751831,25.16670478,45.29742033,26.21437589,0,56.98190314,-0.135910241,97.811258,0.135910241,82.188742,0,0.682110137,45.29742033,65.08230963,87.89249034,6,6,94% +2018-06-21 15:00:00,66.49057083,77.7802168,341.1315338,662.6319316,76.8076668,119.5378556,42.4746297,77.06322586,74.49163226,2.571593596,85.0273244,0,85.0273244,2.316034544,82.71128986,1.160479383,1.357520876,-2.277646562,2.277646562,0.919654191,0.919654191,0.225155575,2.411497746,77.56205699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60419036,1.677959143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121908,74.5555994,73.35131226,76.23355854,42.4746297,0,0.064099884,86.32482751,-0.064099884,93.67517249,0,0,73.35131226,76.23355854,123.2446517,6,7,68% +2018-06-21 16:00:00,54.79112566,86.0792384,544.683196,779.8165047,95.07307017,309.4134177,213.1010994,96.31231833,92.20626632,4.106052006,134.9315508,0,134.9315508,2.866803848,132.064747,0.956285544,1.502366128,-1.361685827,1.361685827,0.763015681,0.763015681,0.174547463,3.302828956,106.2303326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.63217042,2.076989629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392888335,102.1126364,91.02505876,104.189626,213.1010994,0,0.273270825,74.14100692,-0.273270825,105.8589931,0.867031328,0,275.7903879,104.189626,343.9804143,6,8,25% +2018-06-21 17:00:00,42.97026702,95.4532475,725.0219168,843.0776822,108.1356383,512.5568353,402.2163641,110.3404712,104.8749498,5.46552146,179.0506462,0,179.0506462,3.260688471,175.7899577,0.74997264,1.665973451,-0.841126093,0.841126093,0.673994723,0.673994723,0.149148096,3.949483035,127.0289507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8097908,2.362357698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861387014,122.1050592,103.6711779,124.4674169,402.2163641,0,0.477081024,61.505068,-0.477081024,118.494932,0.945195999,0,483.844476,124.4674169,565.305911,6,9,17% +2018-06-21 18:00:00,31.38329882,107.8492251,867.6475032,878.8101891,117.4049332,701.8059121,581.4004775,120.4054346,113.8647412,6.540693375,213.9113743,0,213.9113743,3.540191913,210.3711824,0.547741894,1.882324073,-0.481675208,0.481675208,0.612525001,0.612525001,0.135314091,4.349272183,139.8875439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4511203,2.56485699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151032891,134.4652281,112.6021532,137.0300851,581.4004775,0,0.661576851,48.57975643,-0.661576851,131.4202436,0.97442299,0,679.1321451,137.0300851,768.8155952,6,10,13% +2018-06-21 19:00:00,20.89983408,128.5261932,962.0131432,897.8837551,123.2051942,857.7660703,731.0239058,126.7421644,119.490103,7.252061429,236.9663155,0,236.9663155,3.715091184,233.2512244,0.364770918,2.243205246,-0.199372201,0.199372201,0.564248344,0.564248344,0.128070178,4.496677935,144.6286196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.858432,2.691570916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257827857,139.0225304,118.1162599,141.7141013,731.0239058,0,0.814163194,35.49529576,-0.814163194,144.5047042,0.988587251,0,840.7971733,141.7141013,933.5462183,6,11,11% +2018-06-21 20:00:00,14.59757848,170.0714582,1001.342469,904.9933482,125.5624664,965.9308277,836.6059904,129.3248372,121.7762947,7.548542501,246.5732464,0,246.5732464,3.786171638,242.7870748,0.254775807,2.968306909,0.045543965,-0.045543965,0.522365213,0.522365213,0.125394129,4.395197831,141.3646706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0560065,2.743068463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184305867,135.8850985,120.2403124,138.6281669,836.6059904,0,0.924433303,22.41694346,-0.924433303,157.5830565,0.99591281,0,953.4269349,138.6281669,1044.156298,6,12,10% +2018-06-21 21:00:00,17.8320627,219.584737,982.8432469,901.7051804,124.4576274,1016.176536,888.0626772,128.1138583,120.7047707,7.40908755,242.0545808,0,242.0545808,3.752856666,238.3017242,0.311228206,3.832476647,0.277411983,-0.277411983,0.482713447,0.482713447,0.12663019,4.06179176,130.6411853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0260169,2.718931879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942754303,125.5772765,118.9687712,128.2962084,888.0626772,0,0.984870328,9.979331896,-0.984870328,170.0206681,0.999231895,0,1006.349323,128.2962084,1090.316626,6,13,8% +2018-06-21 22:00:00,27.37750202,246.1023106,907.8263184,887.3065495,119.9016335,1002.768073,879.6383378,123.1297351,116.2861569,6.843578256,223.728478,0,223.728478,3.615476641,220.1130014,0.477827551,4.295295616,0.516654917,-0.516654917,0.441800495,0.441800495,0.13207552,3.52803558,113.4737518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7786772,2.619400519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556049768,109.0752864,114.3347269,111.6946869,879.6383378,0,0.991357878,7.538086181,-0.991357878,172.4619138,0.999564127,0,993.5896542,111.6946869,1066.691593,6,14,7% +2018-06-21 23:00:00,38.72118172,260.5697709,781.6490226,858.4315426,111.9014133,924.316715,809.8971417,114.4195733,108.5271728,5.892400502,192.8940956,0,192.8940956,3.374240483,189.5198551,0.675812111,4.547800434,0.788154203,-0.788154203,0.395371383,0.395371383,0.14316069,2.839727124,91.33538581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3204465,2.444625744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.057372635,87.79504695,106.3778192,90.23967269,809.8971417,0,0.943461536,19.35875283,-0.943461536,160.6412472,0.997003669,0,913.8482408,90.23967269,972.9083018,6,15,6% +2018-06-21 00:00:00,50.51089055,270.718382,613.5120247,807.0401047,100.2897669,783.4060963,681.5155231,101.8905732,97.26566037,4.624912791,151.7771999,0,151.7771999,3.024106501,148.7530934,0.881581348,4.724927111,1.135086236,-1.135086236,0.336042511,0.336042511,0.163468299,2.056136847,66.13242893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49545242,2.190954865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489664147,63.56900616,94.98511657,65.75996103,681.5155231,0,0.844463019,32.38555165,-0.844463019,147.6144484,0.990790776,0,770.2244106,65.75996103,813.2629899,6,16,6% +2018-06-21 01:00:00,62.28516739,279.2676929,416.3826995,714.2373045,84.21147142,585.6012374,500.7901839,84.81105352,81.67218485,3.13886867,103.4960928,0,103.4960928,2.539286571,100.9568062,1.087081246,4.874140735,1.660527908,-1.660527908,0.246186693,0.246186693,0.202245366,1.251284699,40.2456172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.50641063,1.839704476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.906551505,38.68561806,79.41296214,40.52532254,500.7901839,0,0.701153777,45.48035484,-0.701153777,134.5196452,0.978688967,0,569.53079,40.52532254,596.0538031,6,17,5% +2018-06-21 02:00:00,73.77421001,287.4006775,208.5292275,530.3111914,60.34791091,337.6931099,277.5929298,60.10018013,58.52819873,1.5719814,52.38003765,0,52.38003765,1.819712174,50.56032547,1.287602868,5.016088095,2.729781443,-2.729781443,0.063333569,0.063333569,0.289397854,0.52567502,16.90751563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.25953085,1.318375275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.380849762,16.25214713,56.64038061,17.57052241,277.5929298,0,0.523452898,58.43584864,-0.523452898,121.5641514,0.954480422,0,321.5973973,17.57052241,333.0969528,6,18,4% +2018-06-21 03:00:00,84.67839565,295.8123265,30.64205425,139.8883945,17.66796019,62.76236093,45.39616217,17.36619876,17.13520601,0.230992748,7.962275001,0,7.962275001,0.532754188,7.429520813,1.477916809,5.162899065,7.482870703,-7.482870703,0,0,0.576591897,0.133188547,4.283801502,0.428405688,1,0.132851407,0,0.947425365,0.986187328,0.724496596,1,16.61397844,0.385978595,0.060910668,0.312029739,0.841834002,0.566330598,0.961238037,0.922476074,0.091148624,4.117752946,16.70512706,4.503731541,25.9481881,0,0.324517,71.06368482,-0.324517,108.9363152,0.895924867,0,39.95275403,4.503731541,42.90035625,6,19,7% +2018-06-21 04:00:00,95.04506567,305.0410541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658849334,5.323970748,-6.490496328,6.490496328,1,0.359906068,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112578782,83.53600747,-0.112578782,96.46399253,0.605866576,0,0,0,0,6,20,0% +2018-06-21 05:00:00,104.0805995,315.5697973,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816549148,5.507731983,-1.648911454,1.648911454,1,0.812134156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091410484,95.24475637,0.091410484,84.75524363,0,0.503016788,0,0,0,6,21,0% +2018-06-21 06:00:00,111.4345083,327.7878347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944899071,5.720976964,-0.538811391,0.538811391,1,0.622295864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276054494,106.024865,0.276054494,73.97513505,0,0.868876341,0,0,0,6,22,0% +2018-06-21 07:00:00,116.4918942,341.7981779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033167106,5.965503581,0.062958786,-0.062958786,1,0.519387103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428775143,115.3898528,0.428775143,64.61014724,0,0.933388763,0,0,0,6,23,0% +2018-06-22 08:00:00,118.6655,357.1322395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071103683,6.233133445,0.538827885,-0.538827885,1,0.438008694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539169116,122.6270949,0.539169116,57.37290513,0,0.957264718,0,0,0,6,0,0% +2018-06-22 09:00:00,117.6467691,12.7009464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053323475,0.221673333,1.03135966,-1.03135966,1,0.3537808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599716318,126.8495831,0.599716318,53.15041688,0,0.966627248,0,0,0,6,1,0% +2018-06-22 10:00:00,113.5851189,27.2869559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982434305,0.476247223,1.682990965,-1.682990965,1,0.242345284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606291998,127.3218705,0.606291998,52.67812953,0,0.967531486,0,0,0,6,2,0% +2018-06-22 11:00:00,106.9971228,40.17326361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867452083,0.701155721,2.838083784,-2.838083784,1,0.044812778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558447692,123.9485131,0.558447692,56.05148689,0,0.9604661,0,0,0,6,3,0% +2018-06-22 12:00:00,98.51101337,51.2844419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719341533,0.895082366,6.329026932,-6.329026932,1,0,#DIV/0!,0,0,0.355742192,1,0.156706697,0,0.9445106,0.983272563,0.724496596,1,0,0,0.052076252,0.312029739,0.862958953,0.587455549,0.961238037,0.922476074,0,0,0,0,0,0,-0.459441902,117.3511004,0.459441902,62.64889965,0,0.941172312,0,0,0,6,4,0% +2018-06-22 13:00:00,88.34853068,60.93579529,2.074681232,11.55327317,1.741720681,1.704841199,0,1.704841199,1.689201376,0.015639823,4.143156476,3.587606686,0.555549789,0.052519305,0.503030485,1.54197275,1.06353026,-34.25108997,34.25108997,0,0,0.839512429,0.013129826,0.422300344,1,0.814382913,0,0.02918786,0.961238037,1,0.645060461,0.920563865,1.623724614,0.036563866,0.115824807,0.221870187,0.724496596,0.448993192,0.974661673,0.93589971,0.009512514,0.408561559,1.633237129,0.445125425,0,0.665921103,-0.310527297,108.0910107,0.310527297,71.90898929,0,0.88898356,1.633237129,1.037118338,2.312010339,6,5,42% +2018-06-22 14:00:00,77.85423373,69.58808883,135.6524608,417.3197594,47.84858289,47.42837712,0,47.42837712,46.40577157,1.022605549,91.35784187,57.02452091,34.33332096,1.442811317,32.89050964,1.358812715,1.21454127,-4.646351925,4.646351925,0.675273335,0.675273335,0.352729192,0.807668086,25.97738199,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.60699277,1.045311887,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585152779,24.97044767,45.19214555,26.01575956,0,57.02452091,-0.13664467,97.85373397,0.13664467,82.14626603,0,0.684087448,45.19214555,65.02551854,87.75004692,6,6,94% +2018-06-22 15:00:00,66.53491274,77.75533731,340.2215636,661.5232554,76.80949192,118.9391486,41.88101237,77.0581362,74.49340234,2.564733857,84.80674663,0,84.80674663,2.316089578,82.49065705,1.161253295,1.357086647,-2.282609248,2.282609248,0.920502861,0.920502861,0.22576315,2.406875476,77.41338888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60589183,1.677999015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743773089,74.41269396,73.34966491,76.09069297,41.88101237,0,0.063309962,86.37017879,-0.063309962,93.62982121,0,0,73.34966491,76.09069297,123.1495016,6,7,68% +2018-06-22 16:00:00,54.83637962,86.05344821,543.8168537,779.0970726,95.12444193,308.6438514,212.2882412,96.35561018,92.25608903,4.099521152,134.7230452,0,134.7230452,2.868352896,131.8546923,0.957075374,1.501916004,-1.364148267,1.364148267,0.763436782,0.763436782,0.174919996,3.299361936,106.1188213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68006191,2.078111909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390376491,102.0054475,91.0704384,104.0835594,212.2882412,0,0.272479834,74.18811512,-0.272479834,105.8118849,0.866500182,0,275.0182381,104.0835594,343.138846,6,8,25% +2018-06-22 17:00:00,43.01559872,95.42246816,724.2668775,842.5573622,108.2158952,511.7576442,401.3450279,110.4126163,104.9527866,5.459829654,178.8699982,0,178.8699982,3.263108513,175.6068897,0.750763827,1.66543625,-0.842676693,0.842676693,0.674259891,0.674259891,0.149414392,3.947075479,126.9515154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8846106,2.36411101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.859642748,122.0306254,103.7442533,124.3947364,401.3450279,0,0.476341488,61.55326981,-0.476341488,118.4467302,0.945033288,0,483.0286646,124.3947364,564.4425317,6,9,17% +2018-06-22 18:00:00,31.42724436,107.8035291,867.0505757,878.4040363,117.5058125,701.0687304,580.5699582,120.4987722,113.9625787,6.536193483,213.7696842,0,213.7696842,3.543233797,210.2264504,0.548508889,1.881526528,-0.482805472,0.482805472,0.612718288,0.612718288,0.135523597,4.347902694,139.8434964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5451654,2.567060824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150040701,134.422888,112.6952061,136.9899488,580.5699582,0,0.660937261,48.6286071,-0.660937261,131.3713929,0.974349854,0,678.3734604,136.9899488,768.0306421,6,10,13% +2018-06-22 19:00:00,20.93770044,128.434711,961.6057266,897.5486052,123.3226691,857.1567888,730.3037631,126.8530257,119.6040356,7.248990151,236.871075,0,236.871075,3.718633485,233.1524415,0.365431811,2.24160858,-0.200288452,0.200288452,0.564405032,0.564405032,0.128246604,4.496321028,144.6171403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9679484,2.694137301,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257569278,139.011496,118.2255177,141.7056333,730.3037631,0,0.813664863,35.54444029,-0.813664863,144.4555597,0.988549638,0,840.1670386,141.7056333,932.9105415,6,11,11% +2018-06-22 20:00:00,14.61121064,169.8805371,1001.140816,904.7051954,125.6939393,965.4957303,836.0449047,129.4508256,121.9038032,7.547022356,246.5283177,0,246.5283177,3.79013603,242.7381817,0.255013733,2.964974708,0.044732863,-0.044732863,0.52250392,0.52250392,0.125550709,4.395792537,141.3837984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1785725,2.745940652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184736729,135.9034848,120.3633092,138.6494255,836.0449047,0,0.924107553,22.46583587,-0.924107553,157.5341641,0.995893744,0,952.9751994,138.6494255,1043.718475,6,12,10% +2018-06-22 21:00:00,17.81037635,219.4373223,982.8482475,901.450383,124.6007618,1015.943663,887.6909485,128.2527143,120.8435891,7.409125246,242.0601093,0,242.0601093,3.757172695,238.3029366,0.310849708,3.829903775,0.276632461,-0.276632461,0.482846753,0.482846753,0.126775178,4.06323058,130.6874627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1594543,2.722058828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943796724,125.6217601,119.103251,128.3438189,887.6909485,0,0.984736337,10.02353639,-0.984736337,169.9764636,0.999224987,0,1006.106228,128.3438189,1090.10469,6,13,8% +2018-06-22 22:00:00,27.34270433,246.0239371,908.0238257,887.0787729,120.0538045,1002.747644,879.4688378,123.2788065,116.4337394,6.845067149,223.7809544,0,223.7809544,3.620065158,220.1608893,0.477220217,4.293927741,0.515838174,-0.515838174,0.441940166,0.441940166,0.132214377,3.530163355,113.5421884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9205391,2.622724884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557591334,109.1410702,114.4781304,111.7637951,879.4688378,0,0.991421354,7.510311921,-0.991421354,172.4896881,0.999567356,0,993.5664714,111.7637951,1066.71364,6,14,7% +2018-06-22 23:00:00,38.68285007,260.5181606,782.0109106,858.2326582,112.0594599,924.50203,809.9264477,114.5755823,108.6804537,5.895128567,192.9866053,0,192.9866053,3.379006171,189.6075991,0.675143098,4.546899664,0.787206339,-0.787206339,0.395533477,0.395533477,0.143296543,2.842344728,91.41957696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.467786,2.448078468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05926908,87.87597469,106.5270551,90.32405316,809.9264477,0,0.943714318,19.31501261,-0.943714318,160.6849874,0.997017864,0,914.0381922,90.32405316,973.1534785,6,15,6% +2018-06-22 00:00:00,50.4720119,270.6773671,613.9978594,806.8878946,100.4499672,783.7759707,681.7263654,102.0496053,97.42103004,4.628575218,151.8998268,0,151.8998268,3.028937131,148.8708896,0.880902788,4.724211266,1.133824748,-1.133824748,0.336258238,0.336258238,0.163599865,2.059004565,66.22466461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.64479966,2.194454641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491741799,63.6576666,95.13654146,65.85212124,681.7263654,0,0.84488362,32.34053111,-0.84488362,147.6594689,0.990820252,0,770.6048305,65.85212124,813.7037268,6,16,6% +2018-06-22 01:00:00,62.24716148,279.230739,416.9408063,714.1943565,84.3702311,586.1256821,501.1564489,84.96923326,81.82615734,3.143075915,103.6361994,0,103.6361994,2.544073761,101.0921257,1.086417918,4.873495768,1.658454853,-1.658454853,0.246541206,0.246541206,0.202355418,1.254111414,40.33653406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65441485,1.843172779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90859945,38.77301081,79.5630143,40.61618359,501.1564489,0,0.701708778,45.43573926,-0.701708778,134.5642607,0.978745369,0,570.0675678,40.61618359,596.6500476,6,17,5% +2018-06-22 02:00:00,73.7381786,287.3643879,209.0890092,530.6003541,60.50653729,338.3452057,278.0869625,60.25824321,58.68204194,1.576201271,52.52054637,0,52.52054637,1.824495345,50.69605103,1.286974001,5.015454722,2.724715055,-2.724715055,0.064199973,0.064199973,0.289381721,0.528032777,16.98334921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.4074108,1.321840666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382557949,16.32504125,56.78996875,17.64688192,278.0869625,0,0.524098713,58.39241117,-0.524098713,121.6075888,0.954598125,0,322.2512617,17.64688192,333.8007929,6,18,4% +2018-06-22 03:00:00,84.64598712,295.7744218,30.98950792,140.9677778,17.83591473,63.37374748,45.84203938,17.5317081,17.2980961,0.233612001,8.051583617,0,8.051583617,0.537818637,7.51376498,1.477351174,5.162237504,7.442373713,-7.442373713,0,0,0.575546884,0.134454659,4.324524024,0.42613403,1,0.133565761,0,0.947339961,0.986101924,0.724496596,1,16.77195949,0.389647771,0.060642225,0.312029739,0.842466777,0.566963373,0.961238037,0.922476074,0.092016029,4.156896983,16.86397552,4.546544755,26.30718638,0,0.325195162,71.02260075,-0.325195162,108.9773993,0.896246175,0,40.4416907,4.546544755,43.41731331,6,19,7% +2018-06-22 04:00:00,95.01621981,304.9997017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658345878,5.323249013,-6.534750396,6.534750396,1,0.352338177,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113260187,83.49671457,-0.113260187,96.50328543,0.608538604,0,0,0,0,6,20,0% +2018-06-22 05:00:00,104.0578077,315.5235411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816151356,5.50692466,-1.654630402,1.654630402,1,0.813112153,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090790391,95.20907935,0.090790391,84.79092065,0,0.499280929,0,0,0,6,21,0% +2018-06-22 06:00:00,111.4198933,327.7360594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944643991,5.720073315,-0.541466835,0.541466835,1,0.622749972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275543442,105.9944024,0.275543442,74.00559763,0,0.86854041,0,0,0,6,22,0% +2018-06-22 07:00:00,116.4876446,341.7420622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033092936,5.964524178,0.061005982,-0.061005982,1,0.519721052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428413448,115.3669156,0.428413448,64.63308435,0,0.933290312,0,0,0,6,23,0% +2018-06-23 08:00:00,118.6730537,357.075394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071235521,6.232141302,0.536925177,-0.536925177,1,0.438334077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538986888,122.6146985,0.538986888,57.38530146,0,0.957233365,0,0,0,6,0,0% +2018-06-23 09:00:00,117.6659357,12.64821265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053657995,0.220752955,1.029043061,-1.029043061,1,0.354176962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59973138,126.8506616,0.59973138,53.14933844,0,0.966629342,0,0,0,6,1,0% +2018-06-23 10:00:00,113.6140787,27.24176498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98293975,0.475458493,1.679449499,-1.679449499,1,0.24295091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60650865,127.3374815,0.60650865,52.66251851,0,0.967560945,0,0,0,6,2,0% +2018-06-23 11:00:00,107.0333689,40.13637171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868084696,0.700511836,2.830628745,-2.830628745,1,0.046087665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558856417,123.9767482,0.558856417,56.0232518,0,0.960531581,0,0,0,6,3,0% +2018-06-23 12:00:00,98.55226005,51.25475722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720061423,0.894564271,6.296941586,-6.296941586,1,0,#DIV/0!,0,0,0.353456668,1,0.157492072,0,0.944412448,0.983174411,0.724496596,1,0,0,0.051789844,0.312029739,0.863654181,0.588150777,0.961238037,0.922476074,0,0,0,0,0,0,-0.460020027,117.3883998,0.460020027,62.61160015,0,0.94130908,0,0,0,6,4,0% +2018-06-23 13:00:00,88.38921987,60.91159588,1.951000161,10.86243297,1.64566028,1.610745014,0,1.610745014,1.596037551,0.014707463,3.902819898,3.380154592,0.522665306,0.049622729,0.473042577,1.54268291,1.063107901,-35.11439537,35.11439537,0,0,0.843495717,0.012405682,0.399009388,1,0.819333777,0,0.028470654,0.961238037,1,0.646932288,0.922435692,1.534172002,0.034572475,0.115824807,0.223990954,0.724496596,0.448993192,0.974365751,0.935603788,0.008987875,0.385986828,1.543159877,0.420559304,0,0.610679762,-0.311178407,108.1302611,0.311178407,71.86973886,0,0.889320471,1.543159877,0.963649317,2.173849082,6,5,41% +2018-06-23 14:00:00,77.90057497,69.56764073,134.7665212,415.2514916,47.72617482,47.30298152,0,47.30298152,46.28705456,1.015926963,91.18905004,57.07422644,34.11482361,1.439120262,32.67570334,1.359621522,1.214184384,-4.664678824,4.664678824,0.67213925,0.67213925,0.354139696,0.800802149,25.75654985,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.49287745,1.042637731,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.580178431,24.75817542,45.07305588,25.80081315,0,57.07422644,-0.137444964,97.90002419,0.137444964,82.09997581,0,0.686218029,45.07305588,64.96617633,87.59211897,6,6,94% +2018-06-23 15:00:00,66.58271937,77.73694886,339.2489336,660.3635586,76.80416362,118.2949462,41.24930975,77.04563647,74.48823471,2.557401761,84.57076056,0,84.57076056,2.31592891,82.25483165,1.162087678,1.356765708,-2.287933442,2.287933442,0.921413352,0.921413352,0.226394709,2.401924401,77.25414529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.6009245,1.677882612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740186052,74.25962295,73.34111055,75.93750557,41.24930975,0,0.062464546,86.41871365,-0.062464546,93.58128635,0,0,73.34111055,75.93750557,123.0406892,6,7,68% +2018-06-23 16:00:00,54.88490046,86.03508857,542.8962754,778.3532297,95.17127325,307.8291528,211.4350632,96.39408967,92.30150822,4.092581444,134.5012524,0,134.5012524,2.869765033,131.6314874,0.957922223,1.501595568,-1.366730834,1.366730834,0.763878427,0.763878427,0.175302866,3.295638036,105.9990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.72372056,2.079134998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.387678538,101.8903167,91.1113991,103.9694517,211.4350632,0,0.271644101,74.23787613,-0.271644101,105.7621239,0.865935631,0,274.2005539,103.9694517,342.2464807,6,8,25% +2018-06-23 17:00:00,43.06421901,95.40059393,723.4656522,842.0232772,108.2928461,510.9200337,400.4388268,110.481207,105.0274173,5.453789679,178.6780522,0,178.6780522,3.265428869,175.4126234,0.751612411,1.665054472,-0.844264546,0.844264546,0.67453143,0.67453143,0.14968623,3.944451168,126.8671085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9563484,2.3657921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.857741444,121.9494903,103.8140898,124.3152824,400.4388268,0,0.475567407,61.60369971,-0.475567407,118.3963003,0.944862433,0,482.1736941,124.3152824,563.5355602,6,9,17% +2018-06-23 18:00:00,31.47488917,107.7690724,866.4136269,877.9888858,117.604057,700.3007656,579.7115129,120.5892527,114.0578608,6.531391894,213.6182111,0,213.6182111,3.546196231,210.0720148,0.549340448,1.880925145,-0.483933869,0.483933869,0.612911255,0.612911255,0.13573662,4.346336766,139.7931308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6367542,2.569207098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148906192,134.3744747,112.7856604,136.9436818,579.7115129,0,0.66027204,48.67937658,-0.66027204,131.3206234,0.974273637,0,677.5833047,136.9436818,767.2102055,6,10,13% +2018-06-23 19:00:00,20.98047395,128.3571404,961.1618898,897.2065899,123.4378521,856.523053,729.5616633,126.9613898,119.7157454,7.245644322,236.7669348,0,236.7669348,3.722106678,233.0448281,0.366178349,2.240254719,-0.201178751,0.201178751,0.564557282,0.564557282,0.128425662,4.495772329,144.5994922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0753281,2.696653618,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257171748,138.994532,118.3324999,141.6911856,729.5616633,0,0.81314791,35.59535909,-0.81314791,144.4046409,0.988510572,0,839.5119168,141.6911856,932.245964,6,11,11% +2018-06-23 20:00:00,14.63173707,169.695392,1000.903449,904.410825,125.8232123,965.0400106,835.4655994,129.5744112,122.0291782,7.545232979,246.4746633,0,246.4746633,3.79403409,242.6806292,0.255371987,2.961743316,0.043967175,-0.043967175,0.52263486,0.52263486,0.12570964,4.396186684,141.3964756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2990877,2.748764783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185022287,135.9156706,120.48411,138.6644354,835.4655994,0,0.923767801,22.51672261,-0.923767801,157.4832774,0.995873844,0,952.5024481,138.6644354,1043.255548,6,12,10% +2018-06-23 21:00:00,17.79473502,219.278188,982.8152701,901.1888541,124.7415623,1015.690787,887.3017663,128.3890206,120.9801439,7.408876649,242.0563592,0,242.0563592,3.761418349,238.2949409,0.310576716,3.827126358,0.275918805,-0.275918805,0.482968795,0.482968795,0.126922694,4.064448893,130.7266478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.290716,2.72513479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944679387,125.6594263,119.2353954,128.3845611,887.3017663,0,0.984590258,10.07151013,-0.984590258,169.9284899,0.999217454,0,1005.842807,128.3845611,1089.867935,6,13,8% +2018-06-23 22:00:00,27.31245259,245.9340503,908.1782919,886.8423967,120.2032767,1002.704178,879.2792423,123.424936,116.5787044,6.846231581,223.8229137,0,223.8229137,3.624572295,220.1983414,0.476692225,4.29235892,0.515113993,-0.515113993,0.442064009,0.442064009,0.132356474,3.532042412,113.6026253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.059885,2.625990289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558952704,109.1991645,114.6188377,111.8251548,879.2792423,0,0.991471817,7.488158328,-0.991471817,172.5118417,0.999569923,0,993.5199223,111.8251548,1066.70725,6,14,7% +2018-06-23 23:00:00,38.64845058,260.4574064,782.3223037,858.0210789,112.2141675,924.6573051,809.9293327,114.7279723,108.8304964,5.89747598,193.0667711,0,193.0667711,3.383671178,189.6831,0.674542713,4.545839304,0.786392443,-0.786392443,0.395672662,0.395672662,0.14343726,2.844681267,91.49472808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6120127,2.45145825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060961894,87.9482128,106.6729746,90.39967105,809.9293327,0,0.943950391,19.27407747,-0.943950391,160.7259225,0.997031115,0,914.19772,90.39967105,973.3624967,6,15,6% +2018-06-23 00:00:00,50.4369287,270.6288574,614.4240429,806.7142455,100.6057647,784.1043861,681.9004684,102.2039176,97.57212967,4.631787969,152.0078578,0,152.0078578,3.033635,148.9742228,0.88029047,4.723364613,1.132773001,-1.132773001,0.336438098,0.336438098,0.163739954,2.061561086,66.30689109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.79004237,2.197858231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493593989,63.73670582,95.28363636,65.93456405,681.9004684,0,0.845281303,32.29791232,-0.845281303,147.7020877,0.990848094,0,770.9434159,65.93456405,814.0962694,6,16,6% +2018-06-23 01:00:00,62.21306722,279.1873627,417.4296224,714.10944,84.522595,586.5916039,501.4709162,85.12068772,81.9739269,3.146760816,103.7593129,0,103.7593129,2.548668094,101.2106448,1.085822861,4.87273871,1.656763858,-1.656763858,0.246830384,0.246830384,0.202483462,1.256611022,40.41693004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.79645657,1.846501358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.910410408,38.85029049,79.70686698,40.69679185,501.4709162,0,0.702232582,45.39360002,-0.702232582,134.6064,0.978798519,0,570.545857,40.69679185,597.1810933,6,17,5% +2018-06-23 02:00:00,73.70633103,287.3224066,209.5728734,530.7908588,60.65384432,338.9126592,278.5079032,60.40475597,58.82490712,1.579848843,52.64230669,0,52.64230669,1.828937195,50.8133695,1.286418156,5.014722009,2.720612442,-2.720612442,0.064901561,0.064901561,0.289416485,0.530093735,17.0496367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.54473824,1.325058772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.384051107,16.38875931,56.92878935,17.71381809,278.5079032,0,0.524703654,58.35170445,-0.524703654,121.6482955,0.954708116,0,322.8225448,17.71381809,334.4158845,6,18,4% +2018-06-23 03:00:00,84.61807138,295.731381,31.28446416,141.8397995,17.98069897,63.88906936,46.2147193,17.67435006,17.43851455,0.235835505,8.12746495,0,8.12746495,0.542184416,7.585280534,1.476863952,5.1614863,7.409256236,-7.409256236,0,0,0.574748504,0.135546104,4.359628638,0.424262859,1,0.134155644,0,0.94726935,0.986031313,0.724496596,1,16.90814048,0.392810763,0.060420741,0.312029739,0.842989288,0.567485884,0.961238037,0.922476074,0.092763924,4.190640874,17.0009044,4.583451637,26.60753038,0,0.325823355,70.98453487,-0.325823355,109.0154651,0.896542615,0,40.85568926,4.583451637,43.85546669,6,19,7% +2018-06-23 04:00:00,94.99248159,304.9537334,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657931568,5.322446713,-6.573501865,6.573501865,1,0.345711285,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113878977,83.46102959,-0.113878977,96.53897041,0.610937399,0,0,0,0,6,20,0% +2018-06-23 05:00:00,104.0406918,315.4733055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815852628,5.506047883,-1.659920896,1.659920896,1,0.814016881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09024308,95.17759148,0.09024308,84.82240852,0,0.495940899,0,0,0,6,21,0% +2018-06-23 06:00:00,111.4115201,327.6812324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94449785,5.719116402,-0.544084046,0.544084046,1,0.623197541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275114009,105.9688085,0.275114009,74.03119153,0,0.868257165,0,0,0,6,22,0% +2018-06-23 07:00:00,116.4900792,341.6842529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033135428,5.963515216,0.058975851,-0.058975851,1,0.520068225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428140271,115.3495948,0.428140271,64.65040515,0,0.933215844,0,0,0,6,23,0% +2018-06-24 08:00:00,118.6874594,357.0185923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071486948,6.231149926,0.534872516,-0.534872516,1,0.438685102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538897666,122.6086297,0.538897666,57.39137033,0,0.957218006,0,0,0,6,0,0% +2018-06-24 09:00:00,117.6917598,12.59731082,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054108712,0.219864551,1.026490477,-1.026490477,1,0.35461348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599841214,126.8585263,0.599841214,53.14147374,0,0.966644607,0,0,0,6,1,0% +2018-06-24 10:00:00,113.6491968,27.19986259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983552676,0.474727158,1.675514568,-1.675514568,1,0.243623823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606818998,127.3598495,0.606818998,52.64015049,0,0.967603107,0,0,0,6,2,0% +2018-06-24 11:00:00,107.0751219,40.10376172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868813425,0.699942684,2.822358206,-2.822358206,1,0.04750201,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559354994,124.011203,0.559354994,55.98879701,0,0.960611328,0,0,0,6,3,0% +2018-06-24 12:00:00,98.59835058,51.22999787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720865855,0.894132139,6.261760512,-6.261760512,1,0,#DIV/0!,0,0,0.350931916,1,0.158362246,0,0.944303535,0.983065498,0.724496596,1,0,0,0.051472832,0.312029739,0.864424451,0.588921047,0.961238037,0.922476074,0,0,0,0,0,0,-0.460681654,117.4311021,0.460681654,62.56889785,0,0.941465181,0,0,0,6,4,0% +2018-06-24 13:00:00,88.43371135,60.89280208,1.821747514,10.14547055,1.544436403,1.511599049,0,1.511599049,1.497865947,0.013733102,3.652619686,3.164345454,0.488274232,0.046570456,0.441703776,1.543459433,1.062779887,-36.11046509,36.11046509,0,0,0.847777418,0.011642614,0.374466487,1,0.824727664,0,0.027685727,0.961238037,1,0.648985498,0.924488902,1.439805723,0.032472351,0.115824807,0.226317471,0.724496596,0.448993192,0.974039999,0.935278036,0.008435034,0.362201249,1.448240757,0.394673599,0,0.554622221,-0.311897357,108.1736113,0.311897357,71.82638868,0,0.889690851,1.448240757,0.888115915,2.029494861,6,5,40% +2018-06-24 14:00:00,77.95065492,69.55308152,133.8167507,413.057259,47.58938418,47.16315585,0,47.16315585,46.15438866,1.008767191,91.01037428,57.12995829,33.880416,1.434995519,32.44542048,1.360495582,1.213930278,-4.684644588,4.684644588,0.668724904,0.668724904,0.355630995,0.793432312,25.51951057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.36535395,1.039649369,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574839009,24.53032424,44.94019296,25.56997361,0,57.12995829,-0.138310021,97.95006625,0.138310021,82.04993375,0,0.688493295,44.94019296,64.90356686,87.4182794,6,6,95% +2018-06-24 15:00:00,66.63392323,77.72507907,338.214846,659.1532379,76.79174238,117.606425,40.58063066,77.02579438,74.47618801,2.549606371,84.31965948,0,84.31965948,2.315554364,82.00410512,1.162981354,1.356558541,-2.293616132,2.293616132,0.922385149,0.922385149,0.227050182,2.396649404,77.08448325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58934476,1.677611254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736364335,74.09653736,73.32570909,75.77414861,40.58063066,0,0.06156479,86.47036528,-0.06156479,93.52963472,0,0,73.32570909,75.77414861,122.9183739,6,7,68% +2018-06-24 16:00:00,54.93661866,86.02418282,541.9225298,777.5852325,95.21362217,306.9705006,210.5426795,96.4278211,92.34258016,4.085240938,134.2664335,0,134.2664335,2.871042009,131.3953915,0.958824876,1.501405226,-1.369430996,1.369430996,0.764340182,0.764340182,0.175696003,3.291661113,105.8711364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.76320047,2.080060162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384797271,101.7673633,91.14799774,103.8474235,210.5426795,0,0.270764761,74.29022037,-0.270764761,105.7097796,0.865337861,0,273.3385496,103.8474235,341.3046113,6,8,25% +2018-06-24 17:00:00,43.11605673,95.38764591,722.6191136,841.4755837,108.3665377,510.0450951,399.4988003,110.5462949,105.0988868,5.447408114,178.4750212,0,178.4750212,3.267650942,175.2073703,0.75251715,1.664828487,-0.845887754,0.845887754,0.674809015,0.674809015,0.149963564,3.941612761,126.7758156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0250476,2.367401984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855685028,121.8617361,103.8807326,124.2291381,399.4988003,0,0.474759824,61.65628664,-0.474759824,118.3437134,0.944683591,0,481.2806937,124.2291381,562.58618,6,9,17% +2018-06-24 18:00:00,31.52616031,107.7458823,865.7372798,877.5648231,117.6996984,699.502934,578.8260224,120.6769115,114.1506182,6.526293304,213.4571068,0,213.4571068,3.549080173,209.9080266,0.550235298,1.880520401,-0.485058908,0.485058908,0.613103648,0.613103648,0.135953136,4.344575777,139.7364914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7259162,2.571296503,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147630361,134.3200306,112.8735465,136.8913271,578.8260224,0,0.65958207,48.73199315,-0.65958207,131.2680068,0.974194422,0,676.7626289,136.8913271,766.3552647,6,10,13% +2018-06-24 19:00:00,21.02808053,128.2935789,960.6819692,896.8577397,123.5507585,855.8655317,728.798258,127.0672738,119.8252473,7.242026477,236.653977,0,236.653977,3.725511223,232.9284658,0.367009241,2.239145362,-0.202041858,0.202041858,0.564704882,0.564704882,0.128607346,4.49503192,144.5756781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1805855,2.699120199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256635325,138.971641,118.4372208,141.6707612,728.798258,0,0.812613,35.64798015,-0.812613,144.3520199,0.988470096,0,838.8325047,141.6707612,931.5531845,6,11,11% +2018-06-24 20:00:00,14.65912321,169.5165229,1000.630401,904.1102193,125.9502834,964.5640376,834.8684453,129.6955923,122.1524176,7.543174629,246.4122913,0,246.4122913,3.797865751,242.6144256,0.255849965,2.958621461,0.043247996,-0.043247996,0.522757847,0.522757847,0.125870934,4.396379133,141.4026654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4175501,2.751540808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185161716,135.9216205,120.6027118,138.6731613,834.8684453,0,0.923414455,22.56953009,-0.923414455,157.4304699,0.995853133,0,952.0090684,138.6731613,1042.767879,6,12,10% +2018-06-24 21:00:00,17.78519639,219.1076736,982.744052,900.9205269,124.880009,1015.417947,886.8951914,128.5227558,121.114416,7.408339776,242.0432662,0,242.0432662,3.76559303,238.2776732,0.310410235,3.82415032,0.27527203,-0.27527203,0.4830794,0.4830794,0.12707277,4.065444487,130.7586696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4197835,2.728159332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945400692,125.6902068,119.3651842,128.4183662,886.8951914,0,0.984432217,10.12315881,-0.984432217,169.8768412,0.999209301,0,1005.559109,128.4183662,1089.606361,6,13,8% +2018-06-24 22:00:00,27.28681776,245.8327695,908.2891841,886.5972963,120.3500125,1002.637379,879.0692959,123.5680831,116.7210156,6.847067532,223.8542254,0,223.8542254,3.628996921,220.2252285,0.476244812,4.290591237,0.514483361,-0.514483361,0.442171853,0.442171853,0.132501867,3.533669696,113.6549643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1966799,2.629195916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560131666,109.2494748,114.7568115,111.8786707,879.0692959,0,0.99150911,7.471744639,-0.99150911,172.5282554,0.99957182,0,993.4497074,111.8786707,1066.67206,6,14,7% +2018-06-24 23:00:00,38.61805168,260.3875776,782.5824451,857.7966029,112.3654809,924.7819262,809.9052422,114.8766841,108.977247,5.899437035,193.1344081,0,193.1344081,3.388233832,189.7461742,0.674012153,4.544620561,0.785713528,-0.785713528,0.395788763,0.395788763,0.143582931,2.846733125,91.56072288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.753075,2.454763877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.062448458,88.01164951,106.8155234,90.46641339,809.9052422,0,0.944169328,19.23603874,-0.944169328,160.7639613,0.997043397,0,914.3261976,90.46641339,973.5346558,6,15,6% +2018-06-24 00:00:00,50.40570551,270.5729082,614.7896579,806.5188426,100.7570843,784.3904506,682.0370199,102.3534306,97.7188865,4.634544129,152.1010682,0,152.1010682,3.038197847,149.0628703,0.879745523,4.722388114,1.131932063,-1.131932063,0.336581906,0.336581906,0.163888711,2.063802554,66.37898442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.93111062,2.201163998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495217925,63.80600468,95.42632855,66.00716867,682.0370199,0,0.845655407,32.25777456,-0.845655407,147.7422254,0.990874262,0,771.2392574,66.00716867,814.4396291,6,16,6% +2018-06-24 01:00:00,62.18294476,279.1376152,417.8481481,713.9820716,84.66846228,586.9978984,501.7325868,85.26531159,82.11539575,3.14991584,103.8651877,0,103.8651877,2.553066531,101.3121212,1.085297125,4.871870451,1.655455914,-1.655455914,0.247054055,0.247054055,0.202629742,1.258779754,40.48668393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93244181,1.849688011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911981647,38.91734058,79.84442345,40.76702859,501.7325868,0,0.702724349,45.35401034,-0.702724349,134.6459897,0.978848346,0,570.964536,40.76702859,597.6457408,6,17,5% +2018-06-24 02:00:00,73.67872223,287.2747845,209.9798228,530.8820414,60.78968996,339.3942631,278.8546899,60.53957312,58.95665652,1.5829166,52.74507254,0,52.74507254,1.833033442,50.91203909,1.285936292,5.013890848,2.717472266,-2.717472266,0.065438563,0.065438563,0.28950253,0.531854379,17.10626507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.67138077,1.328026489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385326687,16.44319266,57.05670746,17.77121915,278.8546899,0,0.52526676,58.31379685,-0.52526676,121.6862032,0.954810272,0,323.3100298,17.77121915,334.9409373,6,18,4% +2018-06-24 03:00:00,84.59469843,295.6832574,31.52580028,142.5025669,18.1019969,64.30672499,46.51291529,17.7938097,17.5561549,0.237654799,8.189637267,0,8.189637267,0.545841996,7.643795271,1.476456017,5.160646384,7.383382105,-7.383382105,0,0,0.574196269,0.136460499,4.389038725,0.422792431,1,0.134620126,0,0.947213694,0.985975658,0.724496596,1,17.02222646,0.395460668,0.06024646,0.312029739,0.843400717,0.567897312,0.961238037,0.922476074,0.093390572,4.218910968,17.11561703,4.614371636,26.84760677,0,0.326400543,70.9495519,-0.326400543,109.0504481,0.896813981,0,41.19292613,4.614371636,44.21294008,6,19,7% +2018-06-24 04:00:00,94.97389173,304.9032063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657607114,5.32156485,-6.606487967,6.606487967,1,0.34007033,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11443417,83.42901005,-0.11443417,96.57098995,0.613067572,0,0,0,0,6,20,0% +2018-06-24 05:00:00,104.0292829,315.4191522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815653504,5.505102729,-1.664766875,1.664766875,1,0.814845592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089769435,95.15034303,0.089769435,84.84965697,0,0.493017551,0,0,0,6,21,0% +2018-06-24 06:00:00,111.4094078,327.6234195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944460984,5.718107377,-0.546657024,0.546657024,1,0.623637547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274766914,105.9481243,0.274766914,74.05187575,0,0.868027581,0,0,0,6,22,0% +2018-06-24 07:00:00,116.4992039,341.6248186,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033294684,5.962477891,0.056872575,-0.056872575,1,0.520427907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427956112,115.3379196,0.427956112,64.66208037,0,0.93316559,0,0,0,6,23,0% +2018-06-25 08:00:00,118.7087088,356.9619036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071857819,6.230160522,0.532674086,-0.532674086,1,0.439061056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53890169,122.6089034,0.53890169,57.39109663,0,0.957218699,0,0,0,6,0,0% +2018-06-25 09:00:00,117.724219,12.54830795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054675231,0.219009289,1.023707376,-1.023707376,1,0.355089418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60004578,126.8731765,0.60004578,53.12682351,0,0.966673025,0,0,0,6,1,0% +2018-06-25 10:00:00,113.6904375,27.16131046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984272462,0.474054297,1.671195506,-1.671195506,1,0.244362426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607222721,127.3889574,0.607222721,52.61104261,0,0.96765789,0,0,0,6,2,0% +2018-06-25 11:00:00,107.1223355,40.07548744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869637458,0.699449205,2.813295685,-2.813295685,1,0.049051793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559942836,124.0518446,0.559942836,55.94815545,0,0.960705171,0,0,0,6,3,0% +2018-06-25 12:00:00,98.64923027,51.21020879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721753873,0.893786754,6.223633733,-6.223633733,1,0,#DIV/0!,0,0,0.348173409,1,0.159316109,0,0.944183952,0.982945915,0.724496596,1,0,0,0.05112572,0.312029739,0.865268775,0.589765371,0.961238037,0.922476074,0,0,0,0,0,0,-0.461425967,117.4791609,0.461425967,62.52083909,0,0.941640255,0,0,0,6,4,0% +2018-06-25 13:00:00,88.48192577,60.87945047,1.688424884,9.410416984,1.439121353,1.408454595,0,1.408454595,1.395726535,0.01272806,3.39524899,2.94247601,0.45277298,0.043394819,0.409378161,1.544300933,1.062546858,-37.25651261,37.25651261,0,0,0.852345501,0.010848705,0.348931634,1,0.83054847,0,0.026834502,0.961238037,1,0.65121761,0.926721014,1.341625434,0.030285334,0.115824807,0.228846994,0.724496596,0.448993192,0.973684495,0.934922532,0.00785985,0.337457443,1.349485284,0.367742777,0,0.498607061,-0.312682851,108.2209861,0.312682851,71.77901385,0,0.890093565,1.349485284,0.811549714,1.88062834,6,5,39% +2018-06-25 14:00:00,78.00440926,69.5444405,132.8044976,410.7377488,47.43823606,47.00893461,0,47.00893461,46.00779821,1.0011364,90.82102952,57.19060368,33.63042584,1.430437846,32.19998799,1.361433773,1.213779463,-4.706262257,4.706262257,0.665028065,0.665028065,0.357203535,0.785572936,25.266726,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22444563,1.03634735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.569144918,24.2873381,44.79359055,25.32368545,0,57.19060368,-0.139238733,98.0037974,0.139238733,81.9962026,0,0.690904517,44.79359055,64.83693187,87.22806572,6,6,95% +2018-06-25 15:00:00,66.68845782,77.71975098,337.1204841,657.892655,76.77228516,116.8747603,39.87608623,76.99867411,74.4573175,2.541356609,84.05373207,0,84.05373207,2.314967657,81.73876441,1.163933162,1.356465548,-2.299654554,2.299654554,0.92341778,0.92341778,0.227729517,2.391055218,76.90455502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5712057,1.677186187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732311366,73.9235835,73.30351707,75.60076968,39.87608623,0,0.060611843,86.5250673,-0.060611843,93.4749327,0,0,73.30351707,75.60076968,122.7827088,6,7,67% +2018-06-25 16:00:00,54.99146633,86.02074852,540.8966559,776.7933196,95.25154411,306.0690522,209.6121861,96.45686608,92.37935861,4.077507468,134.018842,0,134.018842,2.872185496,131.1466565,0.959782148,1.501345287,-1.372246286,1.372246286,0.764821625,0.764821625,0.17609934,3.287434868,105.7352059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79855332,2.080888614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381735371,101.6367017,91.18028869,103.7175903,209.6121861,0,0.269842931,74.34507946,-0.269842931,105.6549205,0.864707023,0,272.4334181,103.7175903,340.3145066,6,8,25% +2018-06-25 17:00:00,43.17104305,95.38363717,721.7280987,840.9144265,108.4370138,509.1338862,398.5259572,110.607929,105.1672378,5.440691267,178.2611095,0,178.2611095,3.269776057,174.9913334,0.753476843,1.664758521,-0.847544458,0.847544458,0.675092328,0.675092328,0.150246352,3.938562765,126.6777173,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0907492,2.368941623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853475316,121.7674403,103.9442245,124.1363819,398.5259572,0,0.473919753,61.71096148,-0.473919753,118.2890385,0.944496906,0,480.3507582,124.1363819,561.5955374,6,9,17% +2018-06-25 18:00:00,31.58098771,107.7339726,865.0221189,877.1319243,117.792766,698.6761101,577.9143285,120.7617816,114.2408795,6.520902119,213.2865141,0,213.2865141,3.551886503,209.7346276,0.551192217,1.880312539,-0.486179131,0.486179131,0.613295218,0.613295218,0.136173126,4.342620959,139.6736177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8126787,2.57332968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146214102,134.2595941,112.9588928,136.8329238,577.9143285,0,0.658868196,48.786388,-0.658868196,131.213612,0.974112288,0,675.9123415,136.8329238,765.4667535,6,10,13% +2018-06-25 19:00:00,21.08044862,128.2440953,960.1662643,896.5020774,123.6614012,855.1848483,728.0141557,127.1706926,119.9325537,7.238138876,236.5322747,0,236.5322747,3.728847508,232.8034272,0.367923236,2.23828171,-0.202876562,0.202876562,0.564847625,0.564847625,0.128791654,4.494099766,144.5456968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2837325,2.701537326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255959982,138.9428219,118.5396924,141.6443592,728.0141557,0,0.812060757,35.70223562,-0.812060757,144.2977644,0.988428252,0,838.1294521,141.6443592,930.8328523,6,11,11% +2018-06-25 20:00:00,14.69333149,169.3443996,1000.321675,903.8033539,126.0751483,964.0681351,834.2537704,129.8143647,122.2735174,7.540847321,246.3412022,0,246.3412022,3.801630887,242.5395713,0.256447013,2.955617343,0.042576383,-0.042576383,0.522872699,0.522872699,0.126034606,4.396368665,141.4023287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5339558,2.754268637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185154132,135.9212968,120.7191099,138.6755655,834.2537704,0,0.923047881,22.62419097,-0.923047881,157.375809,0.995831629,0,951.4954012,138.6755655,1042.255785,6,12,10% +2018-06-25 21:00:00,17.78181606,218.9261435,982.6343067,900.6453289,125.0160806,1015.125142,886.4712454,128.653897,121.2463845,7.40751247,242.0207603,0,242.0207603,3.769696091,238.2510642,0.310351237,3.820982022,0.27469311,-0.27469311,0.483178401,0.483178401,0.127225439,4.066215123,130.7834559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5466366,2.731131985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945959014,125.7140324,119.4925957,128.4451644,886.4712454,0,0.984262303,10.17839826,-0.984262303,169.8216017,0.999200533,0,1005.255137,128.4451644,1089.319928,6,13,8% +2018-06-25 22:00:00,27.26587029,245.7202284,908.3559563,886.3433422,120.4939734,1002.546917,878.838711,123.7082064,116.8606355,6.847570889,223.874756,0,223.874756,3.633337873,220.2414182,0.47587921,4.288627025,0.513947229,-0.513947229,0.442263537,0.442263537,0.132650612,3.535042176,113.699108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3308879,2.632340921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561126023,109.2919074,114.8920139,111.9242483,878.838711,0,0.991533043,7.46119203,-0.991533043,172.538808,0.999573037,0,993.3554934,111.9242483,1066.607675,6,14,7% +2018-06-25 23:00:00,38.59172102,260.3087508,782.7905775,857.5590239,112.513344,924.8752574,809.8535998,115.0216576,109.1206516,5.901006026,193.1893308,0,193.1893308,3.392692453,189.7966384,0.673552596,4.543244774,0.785170566,-0.785170566,0.395881615,0.395881615,0.143733646,2.848496766,91.61744764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8909209,2.457994133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06372621,88.06617551,106.9546471,90.52416965,809.8535998,0,0.944370681,19.20099109,-0.944370681,160.7990089,0.997054688,0,914.4229757,90.52416965,973.6692343,6,15,6% +2018-06-25 00:00:00,50.37840553,270.509579,615.0938007,806.3013668,100.9038514,784.6332634,682.1351985,102.4980648,97.86122796,4.636836887,152.1792367,0,152.1792367,3.042623414,149.1366133,0.879269048,4.721282812,1.131302976,-1.131302976,0.336689487,0.336689487,0.164046282,2.065725256,66.44082512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.06793464,2.204370306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496610916,63.8654483,95.56454556,66.06981861,682.1351985,0,0.846005261,32.2201982,-0.846005261,147.7798018,0.990898713,0,771.4914357,66.06981861,814.7328105,6,16,6% +2018-06-25 01:00:00,62.15685237,279.0815504,418.1954123,713.8117602,84.80773247,587.3434643,501.9404642,85.40300009,82.25046643,3.152533664,103.9535854,0,103.9535854,2.557266041,101.3963194,1.084841727,4.870891937,1.654532094,-1.654532094,0.247212038,0.247212038,0.202794507,1.260614044,40.54568099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.06227688,1.852730542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913310584,38.9740508,79.97558746,40.82678134,501.9404642,0,0.703183237,45.31704322,-0.703183237,134.6829568,0.978894778,0,571.3224869,40.82678134,598.0427987,6,17,5% +2018-06-25 02:00:00,73.65540485,287.2215749,210.3089069,530.873202,60.91393019,339.7888198,279.126272,60.66254782,59.07715044,1.585397375,52.8286091,0,52.8286091,1.836779744,50.99182935,1.285529326,5.012962165,2.715294089,-2.715294089,0.065811053,0.065811053,0.289640278,0.533311504,17.15313122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78720411,1.330740672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386382369,16.48824218,57.17358648,17.81898285,279.126272,0,0.525787082,58.27875562,-0.525787082,121.7212444,0.954904472,0,323.712512,17.81898285,335.3746799,6,18,4% +2018-06-25 03:00:00,84.57591528,295.6301056,31.71253298,142.954434,18.1995082,64.62527075,46.7354824,17.88978835,17.65072588,0.239062469,8.237853097,0,8.237853097,0.548782321,7.689070776,1.47612819,5.159718711,7.364648571,-7.364648571,0,0,0.573890084,0.13719558,4.41268147,0.421723107,1,0.134958423,0,0.947173128,0.985935091,0.724496596,1,17.11393686,0.397590924,0.060119591,0.312029739,0.84370037,0.568196966,0.961238037,0.922476074,0.093894339,4.241637273,17.2078312,4.639228197,27.02604956,0,0.326925728,70.91771447,-0.326925728,109.0822855,0.897060064,0,41.45182094,4.639228197,44.48810301,6,19,7% +2018-06-25 04:00:00,94.96048805,304.8481783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657373176,5.320604429,-6.633479732,6.633479732,1,0.335454466,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11492482,83.40071119,-0.11492482,96.59928881,0.614932971,0,0,0,0,6,20,0% +2018-06-25 05:00:00,104.0236088,315.3611427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815554473,5.504090273,-1.669153559,1.669153559,1,0.815595759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089370293,95.12738155,0.089370293,84.87261845,0,0.490529975,0,0,0,6,21,0% +2018-06-25 06:00:00,111.4135729,327.5626858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944533678,5.717047373,-0.549179916,0.549179916,1,0.624068986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274502821,105.9323877,0.274502821,74.06761227,0,0.867852509,0,0,0,6,22,0% +2018-06-25 07:00:00,116.5150219,341.5638265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033570761,5.961413378,0.05470042,-0.05470042,1,0.520799367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.42786141,115.3319162,0.42786141,64.66808381,0,0.93313973,0,0,0,6,23,0% +2018-06-26 08:00:00,118.7367911,356.9053957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072347948,6.229174273,0.530334262,-0.530334262,1,0.43946119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538999139,122.6155319,0.538999139,57.38446814,0,0.957235473,0,0,0,6,0,0% +2018-06-26 09:00:00,117.7632886,12.50126987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055357123,0.21818832,1.020699537,-1.020699537,1,0.355603789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60034498,126.894609,0.60034498,53.10539098,0,0.966714553,0,0,0,6,1,0% +2018-06-26 10:00:00,113.7377633,27.12616905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985098453,0.473440963,1.666502198,-1.666502198,1,0.245165029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607719442,127.4247858,0.607719442,52.57521419,0,0.967725193,0,0,0,6,2,0% +2018-06-26 11:00:00,107.1749616,40.05160102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870555956,0.699032308,2.803465992,-2.803465992,1,0.050732769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56061931,124.0986379,0.56061931,55.90136205,0,0.960812919,0,0,0,6,3,0% +2018-06-26 12:00:00,98.7048433,51.1954328,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722724503,0.893528864,6.182717273,-6.182717273,1,0,#DIV/0!,0,0,0.345186863,1,0.16035252,0,0.944053788,0.982815751,0.724496596,1,0,0,0.050749025,0.312029739,0.866186135,0.59068273,0.961238037,0.922476074,0,0,0,0,0,0,-0.462252114,117.5325281,0.462252114,62.46747193,0,0.941833918,0,0,0,6,4,0% +2018-06-26 13:00:00,88.5337806,60.87157501,1.552561769,8.665409857,1.330835048,1.302409327,0,1.302409327,1.290705461,0.011703866,3.133462664,2.716896501,0.416566163,0.040129587,0.376436576,1.545205971,1.062409405,-38.57389426,38.57389426,0,0,0.857186538,0.010032397,0.322676365,1,0.836779413,0,0.025918463,0.961238037,1,0.653626043,0.929129447,1.240675184,0.028034283,0.115824807,0.231576666,0.724496596,0.448993192,0.973299311,0.934537348,0.007268437,0.312019191,1.247943621,0.340053475,0,0.443453443,-0.313533525,108.2723067,0.313533525,71.72769326,0,0.890527421,1.247943621,0.734960925,1.728960847,6,5,39% +2018-06-26 14:00:00,78.06177352,69.54174376,131.7311265,408.2935847,47.27274896,46.84034603,0,46.84034603,45.84730116,0.993044875,90.62018408,57.25499953,33.36518454,1.425447799,31.93973675,1.362434968,1.213732396,-4.729547458,4.729547458,0.661046061,0.661046061,0.358857851,0.777238689,24.99866799,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.07016976,1.032732078,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.563106785,24.02967054,44.63327654,25.06240262,0,57.25499953,-0.140229976,98.06115417,0.140229976,81.93884583,0,0.693442854,44.63327654,64.76547289,87.02098324,6,6,95% +2018-06-26 15:00:00,66.74625712,77.72098373,335.9670225,656.5821454,76.74584649,116.1011337,39.13679634,76.96433739,74.43167606,2.532661329,83.77326473,0,83.77326473,2.314170434,81.4590943,1.16494195,1.356487064,-2.306046132,2.306046132,0.924510804,0.924510804,0.228432677,2.385146477,76.7145096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54655817,1.676608602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728030504,73.74090461,73.27458868,75.41751321,39.13679634,0,0.059606854,86.58275321,-0.059606854,93.41724679,0,0,73.27458868,75.41751321,122.6338427,6,7,67% +2018-06-26 16:00:00,55.04937663,86.02479832,539.8196726,775.9777164,95.28509267,305.1259539,208.6446696,96.48128427,92.41189556,4.069388713,133.7587265,0,133.7587265,2.873197109,130.8855294,0.960792873,1.501415969,-1.375174272,1.375174272,0.76532234,0.76532234,0.17651282,3.282962887,105.5913716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.82982907,2.081621524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378495436,101.4984427,91.20832451,103.5800642,208.6446696,0,0.268879718,74.40238557,-0.268879718,105.5976144,0.864043244,0,271.4863418,103.5800642,339.2774222,6,8,25% +2018-06-26 17:00:00,43.22911089,95.38857381,720.793416,840.3399407,108.5043166,508.1874411,397.5212848,110.6661563,105.2325111,5.433645234,178.0365142,0,178.0365142,3.271805484,174.7647088,0.754490318,1.664844682,-0.849232811,0.849232811,0.675381053,0.675381053,0.150534556,3.935303555,126.5728898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1534924,2.370411935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851114029,121.6666761,104.0046064,124.0370881,397.5212848,0,0.473048186,61.76765647,-0.473048186,118.2323435,0.944302523,0,479.3849584,124.0370881,560.5647518,6,9,17% +2018-06-26 18:00:00,31.63930374,107.7333456,864.2686957,876.6902576,117.8832869,697.8211361,576.9772427,120.8438933,114.3286708,6.515222497,213.1065675,0,213.1065675,3.554616042,209.5519514,0.552210023,1.880301596,-0.487293095,0.487293095,0.613485717,0.613485717,0.136396571,4.340473411,139.6045452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8970671,2.575307222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.144658211,134.1931989,113.0417253,136.7685062,576.9772427,0,0.658131236,48.84249452,-0.658131236,131.1575055,0.974027311,0,675.0333173,136.7685062,764.5455692,6,10,13% +2018-06-26 19:00:00,21.13750887,128.2087325,959.6150405,896.1396184,123.769791,854.4815873,727.2099287,127.2716586,120.0376751,7.233983519,236.4018925,0,236.4018925,3.73211586,232.6697766,0.368919125,2.237664512,-0.203681674,0.203681674,0.564985307,0.564985307,0.128978586,4.49297571,144.5095433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3847792,2.703905236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255145607,138.9080697,118.6399248,141.611975,727.2099287,0,0.811491774,35.75806113,-0.811491774,144.2419389,0.988385081,0,837.403369,141.611975,930.0855744,6,11,11% +2018-06-26 20:00:00,14.73432161,169.1794632,999.9772401,903.4901978,126.1978007,963.5525857,833.6218635,129.9307222,122.3924714,7.538250828,246.2613885,0,246.2613885,3.805329312,242.4560592,0.257162425,2.952738659,0.041953372,-0.041953372,0.522979241,0.522979241,0.126200673,4.396153963,141.3954231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.648299,2.756948133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184998581,135.9146589,120.8332975,138.6716071,833.6218635,0,0.922668409,22.68064352,-0.922668409,157.3193565,0.995809351,0,950.9617443,138.6716071,1041.719538,6,12,10% +2018-06-26 21:00:00,17.7846479,218.7339879,982.4857203,900.3631813,125.1497538,1014.812331,886.0299115,128.7824193,121.3760269,7.406392363,241.9887645,0,241.9887645,3.77372683,238.2150377,0.310400662,3.817628275,0.274182997,-0.274182997,0.483265636,0.483265636,0.127380736,4.066758496,130.8009326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6712539,2.734052242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946352687,125.7308317,119.6176065,128.4648839,886.0299115,0,0.984080569,10.23715399,-0.984080569,169.762846,0.999191152,0,1004.930855,128.4648839,1089.008552,6,13,8% +2018-06-26 22:00:00,27.24968075,245.5965752,908.378043,886.0803985,120.6351194,1002.432429,878.5871659,123.8452628,116.9975254,6.847737389,223.8843673,0,223.8843673,3.637593945,220.2467734,0.475596649,4.286468869,0.513506519,-0.513506519,0.442338903,0.442338903,0.132802769,3.536156802,113.7349582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4624716,2.63542443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561933565,109.3263679,115.0244052,111.9617924,878.5871659,0,0.991543394,7.456623296,-0.991543394,172.5433767,0.999573564,0,993.2369095,111.9617924,1066.513663,6,14,7% +2018-06-26 23:00:00,38.56952608,260.2210106,782.9459345,857.3081296,112.6577003,924.9366341,809.773802,115.1628321,109.2606549,5.902177172,193.2313518,0,193.2313518,3.397045325,189.8343064,0.673165221,4.541713418,0.78476451,-0.78476451,0.395951055,0.395951055,0.143889502,2.849968687,91.66478968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.0254974,2.461147774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064792612,88.11168248,107.0902901,90.57283026,809.773802,0,0.944553975,19.16903324,-0.944553975,160.8309668,0.997064963,0,914.4873757,90.57283026,973.7654816,6,15,6% +2018-06-26 00:00:00,50.35509129,270.4389344,615.3355702,806.061491,101.0459902,784.8319045,682.1941643,102.6377402,97.99908077,4.638659447,152.2421425,0,152.2421425,3.046909424,149.1952331,0.878862138,4.720049831,1.130886788,-1.130886788,0.336760659,0.336760659,0.164212822,2.067325562,66.49229646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20044401,2.207475506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497770332,63.91492451,95.69821435,66.12240002,682.1941643,0,0.846330177,32.18526536,-0.846330177,147.8147346,0.990921402,0,771.6990123,66.12240002,814.9748006,6,16,6% +2018-06-26 01:00:00,62.13484716,279.0192258,418.4704592,713.597998,84.94030418,587.6271906,502.0935429,85.53364769,82.37904061,3.154607084,104.0242713,0,104.0242713,2.561263567,101.4630077,1.084457663,4.869804167,1.653993596,-1.653993596,0.247304126,0.247304126,0.202978017,1.262110478,40.59381145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.18586727,1.855626736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914394745,39.02031563,80.10026202,40.87594237,502.0935429,0,0.703608396,45.28277215,-0.703608396,134.7172279,0.978937744,0,571.6185822,40.87594237,598.3710689,6,17,5% +2018-06-26 02:00:00,73.63642992,287.1628331,210.5592095,530.7635849,61.02641679,340.0951252,279.3215957,60.77352942,59.18624516,1.587284262,52.89268974,0,52.89268974,1.84017163,51.05251811,1.285198152,5.011936928,2.714078511,-2.714078511,0.066018929,0.066018929,0.289830195,0.534462174,17.19014073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.89207011,1.333198082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387216026,16.52381713,57.27928613,17.85701521,279.3215957,0,0.526263677,58.24664762,-0.526263677,121.7533524,0.954990593,0,324.0287824,17.85701521,335.7158417,6,18,4% +2018-06-26 03:00:00,84.56176661,295.5719819,31.84381164,143.1939601,18.27294354,64.84340483,46.88140586,17.96199898,17.72194687,0.240052103,8.271897475,0,8.271897475,0.550996668,7.720900807,1.475881249,5.158704261,7.35298629,-7.35298629,0,0,0.573830286,0.137749167,4.430486718,0.421055412,1,0.135169879,0,0.947147758,0.985909721,0.724496596,1,17.18300096,0.39919521,0.060040318,0.312029739,0.843887672,0.568384268,0.961238037,0.922476074,0.094273666,4.258752356,17.27727463,4.657947566,27.1417362,0,0.327397928,70.88908379,-0.327397928,109.1109162,0.897280646,0,41.63102923,4.657947566,44.67956275,6,19,7% +2018-06-26 04:00:00,94.95230614,304.7887079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657230375,5.319566475,-6.654284641,6.654284641,1,0.331896617,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115350007,83.37618667,-0.115350007,96.62381333,0.616536654,0,0,0,0,6,20,0% +2018-06-26 05:00:00,104.0236951,315.2993388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815555979,5.503011592,-1.673067432,1.673067432,1,0.816265071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089046452,95.10875258,0.089046452,84.89124742,0,0.488495317,0,0,0,6,21,0% +2018-06-26 06:00:00,111.4240291,327.4990958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944716173,5.715937519,-0.551646991,0.551646991,1,0.624490881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274322347,105.9216346,0.274322347,74.07836542,0,0.867732677,0,0,0,6,22,0% +2018-06-26 07:00:00,116.5375342,341.5013432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033963674,5.96032284,0.052463744,-0.052463744,1,0.521181861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427856552,115.3316083,0.427856552,64.66839173,0,0.933138403,0,0,0,6,23,0% +2018-06-27 08:00:00,118.7716935,356.8491358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072957109,6.228192353,0.527857614,-0.527857614,1,0.439884721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539190137,122.628525,0.539190137,57.37147504,0,0.957268333,0,0,0,6,0,0% +2018-06-27 09:00:00,117.8089417,12.45626204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056153921,0.217402785,1.017473053,-1.017473053,1,0.35615555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600738658,126.9228184,0.600738658,53.07718156,0,0.966769132,0,0,0,6,1,0% +2018-06-27 10:00:00,113.7911348,27.09449826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986029961,0.472888204,1.66144507,-1.66144507,1,0.246029849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608308731,127.4673134,0.608308731,52.53268662,0,0.967804895,0,0,0,6,2,0% +2018-06-27 11:00:00,107.2329503,40.03215362,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87156805,0.698692887,2.792895156,-2.792895156,1,0.052540489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561383733,124.1515462,0.561383733,55.84845381,0,0.960934363,0,0,0,6,3,0% +2018-06-27 12:00:00,98.76513239,51.18571117,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723776746,0.89335919,6.139172134,-6.139172134,1,0,#DIV/0!,0,0,0.341978238,1,0.161470301,0,0.943913133,0.982675096,0.724496596,1,0,0,0.050343289,0.312029739,0.867175478,0.591672074,0.961238037,0.922476074,0,0,0,0,0,0,-0.463159202,117.5911537,0.463159202,62.40884635,0,0.942045759,0,0,0,6,4,0% +2018-06-27 13:00:00,88.58918975,60.86920754,1.41569588,7.918585091,1.220734013,1.194596492,0,1.194596492,1.183924378,0.010672114,2.870044307,2.489982816,0.380061491,0.036809635,0.343251857,1.546173043,1.062368085,-40.0892551,40.0892551,0,0,0.862285488,0.009202409,0.295981095,1,0.843403042,0,0.024939168,0.961238037,1,0.656208085,0.931711489,1.138033145,0.025742858,0.115824807,0.234503489,0.724496596,0.448993192,0.972884524,0.934122561,0.006667114,0.286158819,1.144700259,0.311901677,0,0.389923735,-0.314447946,108.32749,0.314447946,71.67250998,0,0.89099117,1.144700259,0.659320282,1.576212197,6,5,38% +2018-06-27 14:00:00,78.1226827,69.54501477,130.5980241,405.725344,47.09293641,46.6574137,0,46.6574137,45.67291063,0.984503071,90.40696282,57.32193408,33.08502875,1.420025787,31.66500296,1.363498034,1.213789486,-4.75451828,4.75451828,0.656775799,0.656775799,0.360594555,0.768444595,24.71581967,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.90253895,1.028803849,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556735493,23.75778598,44.45927444,24.78658983,0,57.32193408,-0.141282606,98.12207194,0.141282606,81.87792806,0,0.696099394,44.45927444,64.68835341,86.79650798,6,6,95% +2018-06-27 15:00:00,66.80725516,77.7287932,334.7556335,655.2220244,76.71247928,115.2867382,38.36389385,76.92284435,74.39931499,2.523529366,83.47854329,0,83.47854329,2.313164289,81.165379,1.166006567,1.356623365,-2.312788416,2.312788416,0.925663802,0.925663802,0.229159636,2.378927748,76.51449389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51545148,1.675879653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723525055,73.5486419,73.23897654,75.22452155,38.36389385,0,0.058550983,86.64335602,-0.058550983,93.35664398,0,0,73.23897654,75.22452155,122.4719214,6,7,67% +2018-06-27 16:00:00,55.11028347,86.03634053,538.6925846,775.1386378,95.31432011,304.1423472,207.6412133,96.50113393,92.44024168,4.060892247,133.4863323,0,133.4863323,2.874078424,130.6122539,0.961855898,1.501617419,-1.378212524,1.378212524,0.765841912,0.765841912,0.176936388,3.27824866,105.4397458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.85707644,2.082260034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375079995,101.3526943,91.23215644,103.4349543,207.6412133,0,0.267876226,74.46207105,-0.267876226,105.537929,0.863346632,0,270.4984985,103.4349543,338.1946074,6,8,25% +2018-06-27 17:00:00,43.29019458,95.40245575,719.8158512,839.7522531,108.5684864,507.2067775,396.4857555,110.7210219,105.294746,5.426275938,177.8014273,0,177.8014273,3.273740441,174.5276869,0.755556429,1.665086967,-0.850950966,0.850950966,0.675674875,0.675674875,0.150828141,3.931837387,126.461406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2133149,2.371813805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.848602803,121.5595136,104.0619177,123.9313274,396.4857555,0,0.472146105,61.82630473,-0.472146105,118.1736953,0.944100577,0,478.3843484,123.9313274,559.4949236,6,9,17% +2018-06-27 18:00:00,31.70104291,107.7439927,863.4775329,876.2398837,117.9712864,696.9388272,576.0155519,120.9232753,114.4140169,6.509258377,212.9173944,0,212.9173944,3.557269554,209.3601248,0.553287575,1.880487422,-0.488399359,0.488399359,0.613674899,0.613674899,0.136623458,4.338134107,139.5293051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.979105,2.577229682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142963393,134.1208753,113.1220684,136.698105,576.0155519,0,0.657371985,48.90024791,-0.657371985,131.0997521,0.973939564,0,674.1264037,136.698105,763.5925795,6,10,13% +2018-06-27 19:00:00,21.19919408,128.1875096,959.0285306,895.7703713,123.8759367,853.7562993,726.3861171,127.3701823,120.1406201,7.229562159,236.262887,0,236.262887,3.735316545,232.5275705,0.369995735,2.237294102,-0.204456012,0.204456012,0.565117727,0.565117727,0.129168145,4.491659471,144.4672086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4837338,2.706224121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254191996,138.8673759,118.7379258,141.5736001,726.3861171,0,0.810906612,35.81539532,-0.810906612,144.1846047,0.988340619,0,836.6548302,141.5736001,929.3119199,6,11,11% +2018-06-27 20:00:00,14.78205085,169.0221259,999.5970342,903.170713,126.3182326,963.0176334,832.9729769,130.0446565,122.5092718,7.535384675,246.1728347,0,246.1728347,3.808960777,242.3638739,0.257995458,2.949992605,0.041379989,-0.041379989,0.523077295,0.523077295,0.126369155,4.395733601,141.3819028,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7605719,2.759579117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18469403,135.9016627,120.945266,138.6612418,832.9729769,0,0.922276337,22.73883113,-0.922276337,157.2611689,0.995786314,0,950.4083561,138.6612418,1041.159366,6,12,10% +2018-06-27 21:00:00,17.79374424,218.5316227,982.2979492,900.0739981,125.2810033,1014.479431,885.5711352,128.9082957,121.5033188,7.404976865,241.9471949,0,241.9471949,3.777684488,238.1695104,0.310559423,3.814096335,0.273742632,-0.273742632,0.483340942,0.483340942,0.1275387,4.067072224,130.8110232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7936117,2.736919552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946579981,125.7405311,119.7401916,128.4774507,885.5711352,0,0.983887033,10.2993608,-0.983887033,169.7006392,0.999181158,0,1004.586184,128.4774507,1088.672106,6,13,8% +2018-06-27 22:00:00,27.23832016,245.4619734,908.3548549,885.8083224,120.7734087,1002.29351,878.3143026,123.9792074,117.1316448,6.847562587,223.882915,0,223.882915,3.641763878,220.2411511,0.47539837,4.284119624,0.513162144,-0.513162144,0.442397795,0.442397795,0.132958401,3.537010479,113.7624154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5913923,2.638445533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562552052,109.3527609,115.1539444,111.9912064,878.3143026,0,0.991539908,7.458162216,-0.991539908,172.5418378,0.999573386,0,993.093546,111.9912064,1066.389551,6,14,7% +2018-06-27 23:00:00,38.55153459,260.1244494,783.0477338,857.0436989,112.7984912,924.9653589,809.6652138,115.3001451,109.3972005,5.902944578,193.2602796,0,193.2602796,3.401290692,189.8589889,0.67285121,4.540028106,0.784496307,-0.784496307,0.39599692,0.39599692,0.144050594,2.851145385,91.70263633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1567503,2.464223528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065645126,88.14806212,107.2223954,90.61228565,809.6652138,0,0.944718706,19.14026826,-0.944718706,160.8597317,0.997074193,0,914.518685,90.61228565,973.8226137,6,15,6% +2018-06-27 00:00:00,50.3358251,270.3610439,615.5140601,805.7988767,101.183424,784.9854283,682.2130529,102.7723754,98.13237044,4.640004979,152.2895636,0,152.2895636,3.051053561,149.23851,0.87852588,4.718690386,1.130684576,-1.130684576,0.336795239,0.336795239,0.164388485,2.068599899,66.5332835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.32856711,2.210477919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498693585,63.95432282,95.8272607,66.16480074,682.2130529,0,0.846629442,32.15306038,-0.846629442,147.8469396,0.990942285,0,771.8610224,66.16480074,815.1645612,6,16,6% +2018-06-27 01:00:00,62.11698552,278.9507021,418.6723409,713.3402548,85.06607426,587.8479473,502.1908001,85.65714722,82.50101826,3.156128953,104.0770123,0,104.0770123,2.565055999,101.5119563,1.084145919,4.868608202,1.653841794,-1.653841794,0.247330086,0.247330086,0.203180545,1.263265765,40.63096944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.30311683,1.85837434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915231746,39.0560333,80.21834858,40.91440764,502.1908001,0,0.703998964,45.25127153,-0.703998964,134.7487285,0.978977168,0,571.8516759,40.91440764,598.6293374,6,17,5% +2018-06-27 02:00:00,73.6218473,287.098617,210.7298406,530.5523664,61.12699595,340.3119569,279.4395948,60.87236204,59.28379149,1.588570551,52.93709406,0,52.93709406,1.843204462,51.09388959,1.284943637,5.010816145,2.71382727,-2.71382727,0.066061894,0.066061894,0.290072805,0.5353037,17.21720709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.98583534,1.335395359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387825709,16.54983434,57.37366105,17.8852297,279.4395948,0,0.526695596,58.21753977,-0.526695596,121.7824602,0.955068506,0,324.2576173,17.8852297,335.9631424,6,18,4% +2018-06-27 03:00:00,84.5522952,295.5089441,31.91891487,143.219883,18.32202143,64.95995786,46.94979472,18.01016315,17.76954488,0.240618263,8.291587002,0,8.291587002,0.552476547,7.739110455,1.475715941,5.157604044,7.348359323,-7.348359323,0,0,0.574017679,0.138119137,4.442386221,0.420790079,1,0.135253957,0,0.947137668,0.985899631,0.724496596,1,17.22915492,0.400267378,0.060008804,0.312029739,0.843962144,0.56845874,0.961238037,0.922476074,0.094527058,4.27019061,17.32368198,4.670457987,27.19378688,0,0.327816178,70.86372011,-0.327816178,109.1362799,0.897475496,0,41.72943935,4.670457987,44.78616069,6,19,7% +2018-06-27 04:00:00,94.94937977,304.7248547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6571793,5.318452028,-6.668749062,6.668749062,1,0.329423055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115708831,83.35548898,-0.115708831,96.64451102,0.617880865,0,0,0,0,6,20,0% +2018-06-27 05:00:00,104.0295653,315.2338027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815658434,5.50186777,-1.676496252,1.676496252,1,0.816851434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088798684,95.09450003,0.088798684,84.90549997,0,0.486928592,0,0,0,6,21,0% +2018-06-27 06:00:00,111.4407883,327.4327143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945008677,5.714778943,-0.554052642,0.554052642,1,0.624902272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274226073,105.9158985,0.274226073,74.08410149,0,0.867668687,0,0,0,6,22,0% +2018-06-27 07:00:00,116.5667395,341.4374353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034473403,5.959207436,0.050166999,-0.050166999,1,0.521574628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427941881,115.3370175,0.427941881,64.66298251,0,0.933161704,0,0,0,6,23,0% +2018-06-28 08:00:00,118.813401,356.7931912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073685043,6.227215936,0.525248908,-0.525248908,1,0.440330836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539474757,122.6478904,0.539474757,57.35210956,0,0.957317257,0,0,0,6,0,0% +2018-06-28 09:00:00,117.8611497,12.41334998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057065123,0.216653828,1.014034316,-1.014034316,1,0.356743609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601226605,126.9577974,0.601226605,53.04220261,0,0.966836681,0,0,0,6,1,0% +2018-06-28 10:00:00,113.8505105,27.06635788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987066263,0.472397062,1.656035054,-1.656035054,1,0.246955016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608990105,127.5165167,0.608990105,52.48348325,0,0.96789686,0,0,0,6,2,0% +2018-06-28 11:00:00,107.29625,40.01719578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872672838,0.698431824,2.78161032,-2.78161032,1,0.054470309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562235375,124.2105302,0.562235375,55.78946977,0,0.961069274,0,0,0,6,3,0% +2018-06-28 12:00:00,98.83003877,51.18108395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724909576,0.89327843,6.093163162,-6.093163162,1,0,#DIV/0!,0,0,0.338553723,1,0.162668233,0,0.943762081,0.982524044,0.724496596,1,0,0,0.04990907,0.312029739,0.868235717,0.592732313,0.961238037,0.922476074,0,0,0,0,0,0,-0.464146294,117.6549856,0.464146294,62.34501437,0,0.942275344,0,0,0,6,4,0% +2018-06-28 13:00:00,88.6480633,60.87237816,1.279351471,7.177956285,1.109997948,1.086171707,0,1.086171707,1.076527415,0.009644292,2.60776811,2.264104,0.343664109,0.033470534,0.310193576,1.54720058,1.062423422,-41.83610783,41.83610783,0,0,0.867625491,0.008367633,0.269131854,1,0.850401287,0,0.023898246,0.961238037,1,0.658960877,0.934464281,1.034799099,0.023435259,0.115824807,0.237624295,0.724496596,0.448993192,0.972440215,0.933678252,0.006062322,0.260154012,1.040861421,0.283589271,0,0.338707044,-0.315424601,108.3864485,0.315424601,71.61355151,0,0.891483512,1.040861421,0.585541016,1.424086305,6,5,37% +2018-06-28 14:00:00,78.18707119,69.55427467,129.4066022,403.033569,46.89880795,46.46015748,0,46.46015748,45.48463585,0.975521629,90.18045015,57.39014913,32.79030102,1.414172098,31.37612892,1.364621825,1.213951102,-4.781195228,4.781195228,0.652213772,0.652213772,0.362414337,0.759206036,24.41867588,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.72156207,1.024562871,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.550042189,23.47216006,44.27160426,24.49672293,0,57.39014913,-0.142395457,98.1864848,0.142395457,81.8135152,0,0.698865201,44.27160426,64.60470107,86.55408901,6,6,96% +2018-06-28 15:00:00,66.87138594,77.74319224,333.4874905,653.8125915,76.67223519,114.4327803,37.55852631,76.87425398,74.36028441,2.513969569,83.16985383,0,83.16985383,2.311950781,80.85790305,1.16712586,1.356874676,-2.31987905,2.31987905,0.926876372,0.926876372,0.229910379,2.372403551,76.30465328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4779338,1.675000471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.718798297,73.34693512,73.1967321,75.02193559,37.55852631,0,0.057445401,86.70680805,-0.057445401,93.29319195,0,0,73.1967321,75.02193559,122.2970885,6,7,67% +2018-06-28 16:00:00,55.1741213,86.05537956,537.5163857,774.2762903,95.33927764,303.1193722,206.6029,96.51647222,92.46444665,4.052025563,133.2019019,0,133.2019019,2.874830985,130.3270709,0.962970079,1.501949712,-1.381358602,1.381358602,0.766379923,0.766379923,0.177369993,3.273295599,105.2804383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88034318,2.082805263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371491519,101.1995619,91.2518347,103.2823671,206.6029,0,0.266833561,74.52406818,-0.266833561,105.4759318,0.862617274,0,269.4710652,103.2823671,337.0673088,6,8,25% +2018-06-28 17:00:00,43.35422971,95.42527727,718.79617,839.1514838,108.6295624,506.1928992,395.4203298,110.7725695,105.3539803,5.41858915,177.5560355,0,177.5560355,3.275582107,174.2804533,0.756674053,1.665485278,-0.852697066,0.852697066,0.675973476,0.675973476,0.151127075,3.928166414,126.3433349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2702532,2.373148086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845943195,121.4460192,104.1161964,123.8191673,395.4203298,0,0.47121448,61.88684005,-0.47121448,118.11316,0.943891206,0,477.3499685,123.8191673,558.3871371,6,9,17% +2018-06-28 18:00:00,31.76614173,107.7658955,862.6491256,875.7808565,118.0567882,696.0299751,575.0300211,120.999954,114.4969405,6.503013494,212.7191157,0,212.7191157,3.559847749,209.1592679,0.554423764,1.880869698,-0.489496479,0.489496479,0.613862518,0.613862518,0.136853774,4.335603897,139.4479249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0588143,2.579097576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141130265,134.0426496,113.1999446,136.6217471,575.0300211,0,0.65659122,48.95958491,-0.65659122,131.0404151,0.973849119,0,673.1924239,136.6217471,762.608625,6,10,13% +2018-06-28 19:00:00,21.26543913,128.1804232,958.4069359,895.3943377,123.9798451,853.0095031,725.5432315,127.4662716,120.2413953,7.224876316,236.1153074,0,236.1153074,3.738449766,232.3768577,0.37115193,2.237170422,-0.205198392,0.205198392,0.565244681,0.565244681,0.129360338,4.490150641,144.4186794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5806028,2.70849413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253098854,138.8207279,118.8337016,141.529222,725.5432315,0,0.810305807,35.87417963,-0.810305807,144.1258204,0.988294901,0,835.8843778,141.529222,928.512423,6,11,11% +2018-06-28 20:00:00,14.83647424,168.8727712,999.1809615,902.8448544,126.4364335,962.4634847,832.3073281,130.1561567,122.6239085,7.532248143,246.0755172,0,246.0755172,3.812524971,242.2629922,0.258945325,2.947385874,0.040857254,-0.040857254,0.523166688,0.523166688,0.126540075,4.39510604,141.3617183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8707651,2.762161363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184239365,135.8822606,121.0550045,138.644422,832.3073281,0,0.92187193,22.79870211,-0.92187193,157.2012979,0.995762531,0,949.8354562,138.644422,1040.575458,6,12,10% +2018-06-28 21:00:00,17.80915589,218.3194884,982.0706191,899.7776865,125.409802,1014.126321,885.0948244,129.031497,121.6282338,7.403263155,241.8959599,0,241.8959599,3.781568245,238.1143916,0.310828407,3.810393894,0.273372946,-0.273372946,0.483404163,0.483404163,0.127699373,4.067153829,130.8136479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9136847,2.73973332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946639104,125.7430541,119.8603238,128.4827874,885.0948244,0,0.983681678,10.36496251,-0.983681678,169.6350375,0.999170549,0,1004.221005,128.4827874,1088.31042,6,13,8% +2018-06-28 22:00:00,27.23186008,245.3166015,908.2857766,885.5269628,120.9087978,1002.12972,878.0197267,124.1099933,117.2629514,6.847041846,223.8702487,0,223.8702487,3.645846359,220.2244023,0.47528562,4.281582406,0.512915009,-0.512915009,0.442440057,0.442440057,0.133117573,3.537600057,113.7813783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7176092,2.641403276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562979199,109.3709887,115.2805884,112.0123919,878.0197267,0,0.991522295,7.465932649,-0.991522295,172.5340674,0.99957249,0,992.9249534,112.0123919,1066.234824,6,14,7% +2018-06-28 23:00:00,38.53781474,260.0191676,783.0951751,856.7655017,112.935657,924.9606998,809.5271674,115.4335324,109.5302302,5.903302211,193.2759183,0,193.2759183,3.405426745,189.8704916,0.672611754,4.538190593,0.78436691,-0.78436691,0.396019048,0.396019048,0.144217026,2.852023344,91.73087451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2846235,2.467220084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066281204,88.17520573,107.3509047,90.64242581,809.5271674,0,0.944864337,19.11480364,-0.944864337,160.8851964,0.99708235,0,914.5161554,90.64242581,973.8398102,6,15,6% +2018-06-28 00:00:00,50.32066919,270.275982,615.6283557,805.513172,101.3160744,785.0928608,682.1909733,102.9018875,98.26102094,4.640866588,152.3212758,0,152.3212758,3.05505346,149.2662223,0.878261359,4.717205775,1.13069746,-1.13069746,0.336793036,0.336793036,0.164573437,2.06954473,66.56367254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.45223087,2.213375832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499378112,63.98353392,95.95160898,66.19690975,682.1909733,0,0.846902319,32.1236699,-0.846902319,147.8763301,0.990961314,0,771.9764723,66.19690975,815.3010258,6,16,6% +2018-06-28 01:00:00,62.10332328,278.8760434,418.8001132,713.0379745,85.18493739,588.0045817,502.2311923,85.77338939,82.61629723,3.157092156,104.1115763,0,104.1115763,2.568640161,101.5429362,1.083907468,4.867305162,1.654078254,-1.654078254,0.247289649,0.247289649,0.203402374,1.26407672,40.65705255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41392736,1.860971053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915819281,39.08110538,80.32974664,40.94207643,502.2311923,0,0.70435406,45.22261686,-0.70435406,134.7773831,0.979012974,0,572.0205998,40.94207643,598.81637,6,17,5% +2018-06-28 02:00:00,73.61170584,287.0289867,210.8199333,530.2386476,61.21550735,340.4380701,279.4791864,60.95888365,59.36963395,1.589249708,52.96160703,0,52.96160703,1.845873408,51.11573362,1.284766635,5.009600867,2.714543304,-2.714543304,0.065939445,0.065939445,0.290368688,0.535833628,17.2342514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.06835038,1.337329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38820964,16.56621798,57.45656002,17.90354698,279.4791864,0,0.527081886,58.19149917,-0.527081886,121.8085008,0.955138079,0,324.3977734,17.90354698,336.1152868,6,18,4% +2018-06-28 03:00:00,84.54754208,295.4410518,31.93725004,143.0311069,18.34646661,64.97388989,46.93988046,18.03400943,17.79325295,0.240756481,8.29676969,0,8.29676969,0.55321366,7.74355603,1.475632984,5.1564191,7.350765238,-7.350765238,0,0,0.574453548,0.138303415,4.448313238,0.420928076,1,0.135210225,0,0.947142916,0.985904879,0.724496596,1,17.25214021,0.400801413,0.060025195,0.312029739,0.843923409,0.568420005,0.961238037,0.922476074,0.094653076,4.275887884,17.34679329,4.676689297,27.18156687,0,0.328179523,70.84168286,-0.328179523,109.1583171,0.897644364,0,41.74617359,4.676689297,44.8069732,6,19,7% +2018-06-28 04:00:00,94.95174104,304.6566795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657220512,5.317262146,-6.676760396,6.676760396,1,0.328053037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116000407,83.33866963,-0.116000407,96.66133037,0.618967031,0,0,0,0,6,20,0% +2018-06-28 05:00:00,104.0412412,315.1645968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815862216,5.5006599,-1.67942908,1.67942908,1,0.817352977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088627731,95.0846664,0.088627731,84.9153336,0,0.485842493,0,0,0,6,21,0% +2018-06-28 06:00:00,111.4638605,327.3636058,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945411362,5.713572773,-0.556391392,0.556391392,1,0.625302221,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274214543,105.9152115,0.274214543,74.08478849,0,0.86766102,0,0,0,6,22,0% +2018-06-28 07:00:00,116.6026349,341.372169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035099896,5.958068324,0.04781472,-0.04781472,1,0.521976891,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428117695,115.3481635,0.428117695,64.65183645,0,0.933209686,0,0,0,6,23,0% +2018-06-29 08:00:00,118.8618969,356.7376291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074531456,6.226246194,0.522513085,-0.522513085,1,0.44079869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539853024,122.6736341,0.539853024,57.32636588,0,0.957382199,0,0,0,6,0,0% +2018-06-29 09:00:00,117.9198819,12.37259947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058090193,0.215942598,1.010390001,-1.010390001,1,0.357366823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601808564,126.9995366,0.601808564,53.00046337,0,0.966917101,0,0,0,6,1,0% +2018-06-29 10:00:00,113.915847,27.04180776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9882066,0.471968581,1.650283558,-1.650283558,1,0.24793858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609763033,127.5723707,0.609763033,52.42762933,0,0.968000933,0,0,0,6,2,0% +2018-06-29 11:00:00,107.3648073,40.00677761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873869389,0.698249992,2.769639617,-2.769639617,1,0.05651742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56317346,124.275549,0.56317346,55.72445099,0,0.961217407,0,0,0,6,3,0% +2018-06-29 12:00:00,98.89950211,51.18159015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72612194,0.893287265,6.044857862,-6.044857862,1,0,#DIV/0!,0,0,0.334919721,1,0.163945059,0,0.943600726,0.982362689,0.724496596,1,0,0,0.049446948,0.312029739,0.869365729,0.593862325,0.961238037,0.922476074,0,0,0,0,0,0,-0.465212414,117.72397,0.465212414,62.27602999,0,0.942522215,0,0,0,6,4,0% +2018-06-29 13:00:00,88.71030747,60.88111531,1.145015984,6.45128353,0.999813848,0.978297386,0,0.978297386,0.969665772,0.008631614,2.349355926,2.041585468,0.307770458,0.030148076,0.277622382,1.548286946,1.062575914,-43.85704194,43.85704194,0,0,0.873187678,0.007537019,0.242416443,1,0.857755516,0,0.022797405,0.961238037,1,0.661881392,0.937384796,0.932079623,0.021135919,0.115824807,0.240935728,0.724496596,0.448993192,0.971966481,0.933204518,0.005460545,0.234284051,0.937540167,0.25541997,0,0.290404272,-0.316461904,108.4490902,0.316461904,71.55090983,0,0.892003099,0.937540167,0.514461481,1.274244917,6,5,36% +2018-06-29 14:00:00,78.25487269,69.5695424,128.1582977,400.2187727,46.69036948,46.24859395,0,46.24859395,45.28248257,0.966111383,89.93969278,57.45834282,32.48134996,1.407886909,31.07346305,1.365805184,1.214217574,-4.809601241,4.809601241,0.647356057,0.647356057,0.364317959,0.749538753,24.10774283,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52724465,1.020009273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.543038275,23.17327939,44.07028293,24.19328866,0,57.45834282,-0.143567336,98.25432556,0.143567336,81.74567444,0,0.701731365,44.07028293,64.51360999,86.29315039,6,6,96% +2018-06-29 15:00:00,66.93858336,77.76419094,332.1637683,652.3541312,76.6251648,113.5404797,36.7218555,76.81862415,74.31463336,2.503990792,82.84748273,0,82.84748273,2.310531435,80.53695129,1.168298676,1.357241172,-2.327315764,2.327315764,0.928148125,0.928148125,0.230684897,2.365578363,76.08513179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.43405228,1.67397216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.713853471,73.13592271,73.14790575,74.80989487,36.7218555,0,0.05629129,86.77304092,-0.05629129,93.22695908,0,0,73.14790575,74.80989487,122.1094857,6,7,67% +2018-06-29 16:00:00,55.24082512,86.08191613,536.2920595,773.390872,95.36001545,302.0581674,205.5308122,96.52735522,92.48455914,4.042796075,132.9056751,0,132.9056751,2.875456307,130.0302188,0.96413428,1.502412863,-1.384610055,1.384610055,0.766935954,0.766935954,0.177813588,3.268107036,105.1135563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89967607,2.083258306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367732423,101.0391485,91.26740849,103.1224068,205.5308122,0,0.265752829,74.58830919,-0.265752829,105.4116908,0.861855248,0,268.4052177,103.1224068,335.8967705,6,8,25% +2018-06-29 17:00:00,43.42115313,95.45702727,717.7351179,838.5377456,108.6875822,505.1467975,394.3259564,110.8208411,105.4102506,5.410590491,177.3005206,0,177.3005206,3.277331617,174.023189,0.757842087,1.66603942,-0.85446924,0.85446924,0.676276536,0.676276536,0.151431328,3.924292679,126.2187422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3243423,2.3744156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.843136687,121.326256,104.167479,123.7006716,394.3259564,0,0.470254271,61.94919691,-0.470254271,118.0508031,0.943674544,0,476.282846,123.7006716,557.2424615,6,9,17% +2018-06-29 18:00:00,31.83453874,107.7990263,861.7839423,875.3132232,118.1398141,695.0953483,574.0213941,121.0739542,114.5774628,6.496491376,212.5118455,0,212.5118455,3.562351285,208.9494942,0.555617517,1.881447939,-0.490583007,0.490583007,0.614048325,0.614048325,0.137087509,4.332883508,139.3604278,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1362154,2.58091138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139159352,133.958544,113.2753748,136.5394554,574.0213941,0,0.655789698,49.02044382,-0.655789698,130.9795562,0.973756045,0,672.2321775,136.5394554,761.5945202,6,10,13% +2018-06-29 19:00:00,21.33618113,128.1874488,957.7504266,895.0115124,124.0815211,852.241686,724.6817534,127.5599327,120.3400054,7.219927271,235.959195,0,235.959195,3.741515672,232.2176794,0.37238661,2.237293042,-0.205907637,0.205907637,0.565365969,0.565365969,0.129555172,4.488448689,144.3639388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6753905,2.710715368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251865796,138.7681091,118.9272563,141.4788245,724.6817534,0,0.809689868,35.93435825,-0.809689868,144.0656417,0.988247961,0,835.0925218,141.4788245,927.6875828,6,11,11% +2018-06-29 20:00:00,14.89754485,168.7317527,998.7288938,902.5125704,126.5523912,961.8903096,831.6250997,130.2652099,122.7363696,7.528840266,245.9694047,0,245.9694047,3.816021522,242.1533832,0.260011208,2.944924636,0.040386182,-0.040386182,0.523247246,0.523247246,0.126713457,4.394269625,141.3348164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.978867,2.764694602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183633385,135.8564014,121.1625004,138.621096,831.6250997,0,0.92145542,22.86020954,-0.92145542,157.1397905,0.995738015,0,949.2432265,138.621096,1039.967961,6,12,10% +2018-06-29 21:00:00,17.83093195,218.098049,981.8033247,899.4741461,125.5361208,1013.752842,884.6008502,129.1519917,121.7507435,7.401248177,241.8349602,0,241.8349602,3.78537722,238.049583,0.311208471,3.806529047,0.273074864,-0.273074864,0.483455138,0.483455138,0.127862799,4.067000744,130.8087241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0314457,2.74249291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946528194,125.7383212,119.9779739,128.4808141,884.6008502,0,0.983464454,10.4339118,-0.983464454,169.5660882,0.999159322,0,1003.835159,128.4808141,1087.923283,6,13,8% +2018-06-29 22:00:00,27.23037248,245.1606533,908.170167,885.236161,121.0412412,1001.940579,877.7030073,124.2375715,117.3914012,6.846170331,223.8462114,0,223.8462114,3.649840016,220.1963714,0.475259656,4.278860596,0.512766018,-0.512766018,0.442465536,0.442465536,0.133280354,3.537922325,113.7917435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.84108,2.644296667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563212681,109.3809521,115.4042927,112.0252488,877.7030073,0,0.991490233,7.480057424,-0.991490233,172.5199426,0.99957086,0,992.7306423,112.0252488,1066.048927,6,14,7% +2018-06-29 23:00:00,38.52843507,259.905274,783.0874396,856.4732984,113.0691358,924.9218901,809.358962,115.5629281,109.6596842,5.903243897,193.2780676,0,193.2780676,3.409451626,189.868616,0.672448048,4.536202774,0.784377279,-0.784377279,0.396017275,0.396017275,0.144388902,2.852599032,91.74939061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4090596,2.470136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066698288,88.19300411,107.4757579,90.66314021,809.358962,0,0.944990303,19.0927511,-0.944990303,160.9072489,0.997089404,0,914.4790031,90.66314021,973.8162151,6,15,6% +2018-06-29 00:00:00,50.30968574,270.183828,615.6775339,805.2040116,101.4438614,785.1531989,682.1270069,103.026192,98.38495465,4.641237314,152.3370529,0,152.3370529,3.058906708,149.2781462,0.878069662,4.715597385,1.130926603,-1.130926603,0.33675385,0.33675385,0.164767846,2.070156559,66.58335106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57136066,2.216167497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49982138,64.00244966,96.07118204,66.21861715,682.1270069,0,0.847148048,32.09718286,-0.847148048,147.9028171,0.990978439,0,772.0443387,66.21861715,815.3830993,6,16,6% +2018-06-29 01:00:00,62.09391576,278.7953172,418.8528358,712.6905739,85.2967859,588.0959179,502.2136552,85.8822627,82.7247731,3.157489601,104.1277322,0,104.1277322,2.572012807,101.5557194,1.083743275,4.865896224,1.654704748,-1.654704748,0.247182512,0.247182512,0.203643807,1.264540266,40.67196179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.51819849,1.863414523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916155118,39.0954367,80.43435361,40.95885123,502.2136552,0,0.70467279,45.19688468,-0.70467279,134.8031153,0.979045082,0,572.1241629,40.95885123,598.9309119,6,17,5% +2018-06-29 02:00:00,73.60605345,286.9540049,210.8286436,529.8214503,61.29178385,340.4721961,279.4392703,61.0329258,59.44361043,1.58931537,52.96601896,0,52.96601896,1.848173426,51.11784554,1.284667982,5.008292187,2.716230789,-2.716230789,0.065650868,0.065650868,0.290718485,0.536049742,17.24120237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.13945939,1.338995356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388366214,16.57289952,57.5278256,17.91189488,279.4392703,0,0.527421587,58.16859316,-0.527421587,121.8314068,0.955199178,0,324.4479869,17.91189488,336.1709639,6,18,4% +2018-06-29 03:00:00,84.54754662,295.3683662,31.89835524,142.6267007,18.34600964,64.88429257,46.85101954,18.03327304,17.79280976,0.240463276,8.287325415,0,8.287325415,0.55319988,7.734125535,1.475633063,5.155150496,7.360235377,-7.360235377,0,0,0.575139674,0.13829997,4.44820244,0.421470622,1,0.135038364,0,0.947163538,0.985925501,0.724496596,1,17.25170323,0.40079143,0.060089619,0.312029739,0.84377118,0.568267776,0.961238037,0.922476074,0.094650337,4.275781381,17.34635357,4.676572811,27.10469121,0,0.328487018,70.82303067,-0.328487018,109.1769693,0.897786983,0,41.68059251,4.676572811,44.74131589,6,19,7% +2018-06-29 04:00:00,94.95942048,304.5842439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657354543,5.315997905,-6.678248788,6.678248788,1,0.327798507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116223866,83.32577918,-0.116223866,96.67422082,0.619795761,0,0,0,0,6,20,0% +2018-06-29 05:00:00,104.0587426,315.0917844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816167674,5.499389083,-1.681856339,1.681856339,1,0.817768063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088534313,95.0792928,0.088534313,84.9207072,0,0.485247213,0,0,0,6,21,0% +2018-06-29 06:00:00,111.4932536,327.2918351,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945924368,5.712320137,-0.558657913,0.558657913,1,0.625689819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274288264,105.9196039,0.274288264,74.08039614,0,0.867710028,0,0,0,6,22,0% +2018-06-29 07:00:00,116.6452155,341.3056107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035843067,5.956906662,0.045411512,-0.045411512,1,0.522387864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428384251,115.3650643,0.428384251,64.63493573,0,0.933282357,0,0,0,6,23,0% +2018-06-30 08:00:00,118.9171626,356.6825169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075496024,6.225284305,0.519655253,-0.519655253,1,0.441287408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540324915,122.70576,0.540324915,57.29424003,0,0.957463086,0,0,0,6,0,0% +2018-06-30 09:00:00,117.9851059,12.33407654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059228566,0.215270246,1.006547036,-1.006547036,1,0.358024009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602484226,127.0480252,0.602484226,52.9519748,0,0.967010275,0,0,0,6,1,0% +2018-06-30 10:00:00,113.9870991,27.02090781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989450185,0.471603808,1.644202407,-1.644202407,1,0.248978518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610626933,127.6348481,0.610626933,52.36515189,0,0.968116943,0,0,0,6,2,0% +2018-06-30 11:00:00,107.438567,40.00094875,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875156738,0.69814826,2.757012021,-2.757012021,1,0.058676866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564197164,124.3465595,0.564197164,55.6534405,0,0.961378498,0,0,0,6,3,0% +2018-06-30 12:00:00,98.97346068,51.18726774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727412761,0.893386357,5.994425171,-5.994425171,1,0,#DIV/0!,0,0,0.331082823,1,0.165299485,0,0.943429164,0.982191127,0.724496596,1,0,0,0.048957519,0.312029739,0.870564358,0.595060954,0.961238037,0.922476074,0,0,0,0,0,0,-0.466356548,117.7980509,0.466356548,62.20194915,0,0.942785895,0,0,0,6,4,0% +2018-06-30 13:00:00,88.7758246,60.89544584,1.014115472,5.74593478,0.891357793,0.872124898,0,0.872124898,0.864480067,0.007644831,2.097430402,1.824668638,0.272761763,0.026877726,0.245884037,1.549430435,1.062826029,-46.20687046,46.20687046,0,0,0.878950986,0.006719432,0.216120017,1,0.865446607,0,0.021638425,0.961238037,1,0.664966432,0.940469836,0.830971123,0.018869141,0.115824807,0.24443424,0.724496596,0.448993192,0.971463432,0.932701469,0.004868205,0.208825508,0.835839328,0.227694648,0,0.245515357,-0.317558188,108.5153186,0.317558188,71.48468144,0,0.892548541,0.835839328,0.446829022,1.128279986,6,5,35% +2018-06-30 14:00:00,78.32602035,69.5908348,126.8545711,397.2814419,46.46762338,46.02273643,0,46.02273643,45.06645309,0.956283341,89.68370238,57.52517265,32.15852973,1.401170292,30.75735944,1.367046945,1.214589196,-4.839761772,4.839761772,0.642198303,0.642198303,0.366306259,0.739458816,23.78353738,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.31958889,1.015143107,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.535735395,22.86164078,43.85532429,23.87678389,0,57.52517265,-0.144797029,98.32552579,0.144797029,81.67447421,0,0.704689049,43.85532429,64.41414307,86.01309264,6,6,96% +2018-06-30 15:00:00,67.00878138,77.79179663,330.7856415,650.8469129,76.57131743,112.611067,35.85505545,76.75601158,74.26240969,2.49360189,82.51171622,0,82.51171622,2.308907739,80.20280848,1.169523863,1.357722982,-2.335096373,2.335096373,0.929478688,0.929478688,0.231483196,2.358456613,75.85607183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38385291,1.672795797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708693788,72.91574157,73.09254669,74.58853737,35.85505545,0,0.055089845,86.84198565,-0.055089845,93.15801435,0,0,73.09254669,74.58853737,121.9092526,6,7,67% +2018-06-30 16:00:00,55.3103306,86.11594736,535.0205774,772.4825729,95.37658262,300.9598683,204.4260305,96.53383786,92.50062675,4.033211106,132.5978891,0,132.5978891,2.875955868,129.7219332,0.965347379,1.50300682,-1.387964417,1.387964417,0.767509584,0.767509584,0.17826713,3.262686222,104.9392043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91512087,2.083620236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363805062,100.8715548,91.27892593,102.955175,204.4260305,0,0.264635136,74.65472637,-0.264635136,105.3452736,0.861060614,0,267.3021293,102.955175,334.6842322,6,8,25% +2018-06-30 17:00:00,43.49090308,95.49768952,716.6334194,837.911144,108.7425819,504.0694486,393.2035713,110.8658773,105.4635919,5.402285422,177.0350595,0,177.0350595,3.278990062,173.7560694,0.759059453,1.66674911,-0.856265608,0.856265608,0.676583733,0.676583733,0.151740875,3.920218117,126.0876903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.375616,2.375617138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840184681,121.2002839,104.2158007,123.575901,393.2035713,0,0.46926643,62.01331054,-0.46926643,117.9866895,0.943450721,0,475.1839934,123.575901,556.0619491,6,9,17% +2018-06-30 18:00:00,31.90617466,107.8433484,860.8824234,874.8370239,118.2203841,694.1356908,572.9903922,121.1452987,114.6556033,6.489695346,212.2956913,0,212.2956913,3.564780767,208.7309105,0.5568678,1.882221505,-0.491657489,0.491657489,0.614232072,0.614232072,0.137324658,4.329973542,139.2668333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2113271,2.582671531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137051091,133.8685774,113.3483782,136.451249,572.9903922,0,0.654968156,49.08276459,-0.654968156,130.9172354,0.973660411,0,671.2464387,136.451249,760.5510521,6,10,13% +2018-06-30 19:00:00,21.41135951,128.208541,957.0591409,894.6218833,124.1809674,851.4533032,723.802134,127.6511692,120.4364531,7.214716067,235.7945835,0,235.7945835,3.744514347,232.0500692,0.373698721,2.23766117,-0.206582566,0.206582566,0.565481389,0.565481389,0.129752658,4.486552957,144.3029655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7680997,2.712887898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.250492344,138.7094993,119.0185921,141.4223872,723.802134,0,0.809059277,35.99587821,-0.809059277,144.0041218,0.988199831,0,834.2797386,141.4223872,926.8378626,6,11,11% +2018-06-30 20:00:00,14.96521398,168.5993928,998.2406703,902.1738018,126.6660911,961.2982404,830.9264395,130.3718009,122.8466411,7.525159831,245.8544577,0,245.8544577,3.819449994,242.0350077,0.261192257,2.942614521,0.039967784,-0.039967784,0.523318796,0.523318796,0.126889331,4.393222588,141.3011401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0848641,2.767178519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18287481,135.8240305,121.2677389,138.591209,830.9264395,0,0.92102701,22.92331136,-0.92102701,157.0766886,0.995712776,0,948.6318103,138.591209,1039.336985,6,12,10% +2018-06-30 21:00:00,17.85911961,217.8677894,981.4956305,899.1632693,125.6599282,1013.358793,884.0890464,129.2697464,121.8708177,7.398928648,241.7640894,0,241.7640894,3.789110471,237.974979,0.311700439,3.802510259,0.272849306,-0.272849306,0.48349371,0.48349371,0.128029025,4.066610312,130.7961665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1468656,2.745197637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946245328,125.7262503,120.0931109,128.471448,884.0890464,0,0.983235277,10.50617006,-0.983235277,169.4938299,0.999147471,0,1003.428446,128.471448,1087.510439,6,13,8% +2018-06-30 22:00:00,27.23392961,244.994337,908.0073595,884.9357502,121.1706915,1001.725568,877.3636774,124.3618911,117.5169481,6.84494302,223.8106403,0,223.8106403,3.653743422,220.1568969,0.47532174,4.275957829,0.512716068,-0.512716068,0.442474078,0.442474078,0.133446817,3.53797402,113.7934062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9617605,2.647124672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563250134,109.3825504,115.5250106,112.029675,877.3636774,0,0.991443364,7.500657119,-0.991443364,172.4993429,0.999568476,0,992.5100844,112.029675,1065.831266,6,14,7% +2018-06-30 23:00:00,38.52346435,259.7828847,783.023691,856.1668399,113.1988646,924.8481294,809.1598649,115.6882645,109.7855011,5.902763333,193.2665228,0,193.2665228,3.413363426,189.8531594,0.672361292,4.534066678,0.784528383,-0.784528383,0.395991435,0.395991435,0.144566334,2.852868907,91.75807073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5299996,2.472970182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066893812,88.20134777,107.5968934,90.67431795,809.1598649,0,0.945096011,19.07422632,-0.945096011,160.9257737,0.997095322,0,914.4064096,90.67431795,973.7509372,6,15,6% +2018-06-30 00:00:00,50.30293673,270.0846662,615.6606642,804.8710165,101.5667033,785.1654122,682.0202097,103.1452026,98.50409242,4.641110143,152.3366668,0,152.3366668,3.062610845,149.2740559,0.877951869,4.713866684,1.131373221,-1.131373221,0.336677474,0.336677474,0.16497189,2.07043193,66.59220792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.68588042,2.218851131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500020885,64.01096322,96.1859013,66.22981435,682.0202097,0,0.847365846,32.07369026,-0.847365846,147.9263097,0.990993609,0,772.0635706,66.22981435,815.4096595,6,16,6% +2018-06-30 01:00:00,62.08881762,278.7085942,418.8295733,712.2974425,85.40150981,588.1207583,502.1371048,85.98365343,82.82633919,3.157314238,104.1252497,0,104.1252497,2.575170619,101.5500791,1.083654296,4.864382623,1.655723263,-1.655723263,0.247008336,0.247008336,0.203905157,1.264653438,40.67560178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.61582768,1.865702347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916237111,39.0989356,80.53206479,40.96463795,502.1371048,0,0.704954244,45.17415242,-0.704954244,134.8258476,0.979073411,0,572.1611527,40.96463795,598.971689,6,17,5% +2018-06-30 02:00:00,73.60493694,286.8737362,210.7551519,529.2997167,61.35565132,340.4130443,279.3187308,61.09431341,59.50555205,1.588761359,52.95012589,0,52.95012589,1.850099266,51.10002663,1.284648495,5.006891234,2.718895165,-2.718895165,0.065195233,0.065195233,0.291122901,0.53595007,17.23799656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.19900004,1.34039062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388294001,16.56981797,57.58729404,17.91020859,279.3187308,0,0.527713736,58.14888908,-0.527713736,121.8511109,0.955251661,0,324.4069756,17.91020859,336.1288489,6,18,4% +2018-06-30 03:00:00,84.55234638,295.2909497,31.80190282,142.0059048,18.32038733,64.69039503,46.6826988,18.00769624,17.76796006,0.239736177,8.263166801,0,8.263166801,0.552427273,7.710739528,1.475716835,5.153799323,7.37683541,-7.37683541,0,0,0.576078338,0.138106818,4.441990015,0.42241919,1,0.134738157,0,0.947199544,0.985961507,0.724496596,1,17.22759571,0.400231679,0.060202189,0.312029739,0.843505265,0.568001861,0.961238037,0.922476074,0.094517515,4.269809762,17.32211322,4.670041441,26.96303096,0,0.32873773,70.80782126,-0.32873773,109.1921787,0.897903068,0,41.53230146,4.670041441,44.58875018,6,19,7% +2018-06-30 04:00:00,94.97244695,304.5076102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657581898,5.314660396,-6.673188268,6.673188268,1,0.328663907,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116378356,83.31686712,-0.116378356,96.68313288,0.620366846,0,0,0,0,6,20,0% +2018-06-30 05:00:00,104.0820878,315.0154286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816575124,5.498056423,-1.683769862,1.683769862,1,0.818095294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08851912,95.07841885,0.08851912,84.92158115,0,0.485150279,0,0,0,6,21,0% +2018-06-30 06:00:00,111.5289738,327.2174666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946547805,5.711022162,-0.560847046,0.560847046,1,0.626064183,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274447711,105.929104,0.274447711,74.07089595,0,0.867815933,0,0,0,6,22,0% +2018-06-30 07:00:00,116.6944745,341.2378262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0367028,5.955723599,0.042962035,-0.042962035,1,0.522806749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428741761,115.3877356,0.428741761,64.6122644,0,0.933379683,0,0,0,6,23,0% +2018-07-01 08:00:00,118.9791777,356.6279219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076578392,6.224331442,0.516680662,-0.516680662,1,0.441796092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540890361,122.7442701,0.540890361,57.25572986,0,0.957559824,0,0,0,7,0,0% +2018-07-01 09:00:00,118.0567873,12.29784735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060479642,0.214637927,1.002512581,-1.002512581,1,0.358713941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603253234,127.1032504,0.603253234,52.89674962,0,0.967116068,0,0,0,7,1,0% +2018-07-01 10:00:00,114.0642199,27.0037179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990796196,0.471303788,1.637803794,-1.637803794,1,0.250072745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611581176,127.7039203,0.611581176,52.29607972,0,0.968244704,0,0,0,7,2,0% +2018-07-01 11:00:00,107.5174723,39.99975829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876533895,0.698127482,2.743757195,-2.743757195,1,0.060943575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565305621,124.4235168,0.565305621,55.57648316,0,0.961552268,0,0,0,7,3,0% +2018-07-01 12:00:00,99.05185144,51.19815354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728780938,0.89357635,5.942034285,-5.942034285,1,0,#DIV/0!,0,0,0.327049781,1,0.166730183,0,0.943247493,0.982009457,0.724496596,1,0,0,0.048441396,0.312029739,0.871830418,0.596327013,0.961238037,0.922476074,0,0,0,0,0,0,-0.46757764,117.8771704,0.46757764,62.12282958,0,0.943065887,0,0,0,7,4,0% +2018-07-01 13:00:00,88.84451321,60.91539494,0.887989325,5.068743652,0.785774653,0.768774687,0,0.768774687,0.762080648,0.006694039,1.854465279,1.615467981,0.238997298,0.023694005,0.215303293,1.550629278,1.063174207,-48.95720723,48.95720723,0,0,0.884892003,0.005923501,0.190520162,1,0.873455032,0,0.020423162,0.961238037,1,0.668212618,0.943716022,0.732540906,0.016658691,0.115824807,0.248116072,0.724496596,0.448993192,0.970931199,0.932169236,0.004291556,0.184047443,0.736832463,0.200706134,0,0.204429345,-0.318711715,108.5850327,0.318711715,71.41496726,0,0.893118412,0.736832463,0.383285745,0.987685317,7,5,34% +2018-07-01 14:00:00,78.40044695,69.61816649,125.4969038,394.2220385,46.2305683,45.78259477,0,45.78259477,44.8365461,0.946048671,89.41145812,57.58925862,31.8221995,1.394022207,30.42817729,1.368345934,1.215066224,-4.871704894,4.871704894,0.636735707,0.636735707,0.36838015,0.728982593,23.44658604,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.09859355,1.009964344,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528145407,22.53775034,43.62673896,23.54771468,0,57.58925862,-0.146083306,98.40001606,0.146083306,81.59998394,0,0.707729542,43.62673896,64.30533431,85.71329415,7,6,96% +2018-07-01 15:00:00,67.08191414,77.82601392,329.3542815,649.2911899,76.510741,111.6457816,34.95931007,76.68647155,74.20365986,2.482811693,82.16283981,0,82.16283981,2.307081136,79.85575867,1.17080027,1.358320187,-2.343218784,2.343218784,0.930867702,0.930867702,0.232305287,2.35104267,75.61761394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32738033,1.671472429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703322411,72.68652677,73.03070274,74.3579992,34.95931007,0,0.053842268,86.91357282,-0.053842268,93.08642718,0,0,73.03070274,74.3579992,121.6965261,7,7,67% +2018-07-01 16:00:00,55.38257423,86.15746681,533.7028966,771.5515733,95.38902693,299.8256048,203.2896311,96.53597369,92.51269582,4.023277872,132.2787774,0,132.2787774,2.87633111,129.4024463,0.966608269,1.503731471,-1.391419218,1.391419218,0.76810039,0.76810039,0.178730578,3.257036317,104.757484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92672211,2.083892098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.359711724,100.6968782,91.28643384,102.7807703,203.2896311,0,0.263481585,74.72325219,-0.263481585,105.2767478,0.860233417,0,266.1629678,102.7807703,333.4309263,7,8,25% +2018-07-01 17:00:00,43.56341931,95.54724267,715.4917761,837.2717767,108.7945962,502.9618121,392.0540952,110.907717,105.5140377,5.393679233,176.7598233,0,176.7598233,3.280558485,173.4792648,0.7603251,1.667613976,-0.858084282,0.858084282,0.676894744,0.676894744,0.152055691,3.915944547,125.9502376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4241065,2.376753455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.837088494,121.0681591,104.261195,123.4449126,392.0540952,0,0.468251894,62.07911711,-0.468251894,117.9208829,0.943219866,0,474.0544061,123.4449126,554.8466325,7,9,17% +2018-07-01 18:00:00,31.98099246,107.8988163,859.9449805,874.3522911,118.2985163,693.1517203,571.9377122,121.2140081,114.7313796,6.482628505,212.0707534,0,212.0707534,3.567136743,208.5036166,0.558173616,1.883189603,-0.492718474,0.492718474,0.614413511,0.614413511,0.137565215,4.326874474,139.1671566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2841661,2.584378427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134805827,133.7727644,113.4189719,136.3571428,571.9377122,0,0.65412731,49.14648894,-0.65412731,130.8535111,0.97356228,0,670.2359552,136.3571428,759.478978,7,10,13% +2018-07-01 19:00:00,21.49091625,128.2436343,956.333185,894.2254312,124.2781851,850.6447762,722.9047935,127.7399827,120.5307392,7.209243506,235.6214986,0,235.6214986,3.747445817,231.8740528,0.375087248,2.238273662,-0.207222008,0.207222008,0.56559074,0.56559074,0.12995281,4.484462661,144.2357344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8587312,2.715011738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.248977932,138.6448742,119.1077091,141.3598859,722.9047935,0,0.808414487,36.05868946,-0.808414487,143.9413105,0.988150539,0,833.4464707,141.3598859,925.9636889,7,11,11% +2018-07-01 20:00:00,15.03943143,168.4759818,997.716098,901.8284829,126.7775168,960.687372,830.2114597,130.4759123,122.9547069,7.521205384,245.730629,0,245.730629,3.82280989,241.9078191,0.262487596,2.940460593,0.039603061,-0.039603061,0.523381167,0.523381167,0.127067727,4.391963051,141.260629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1887411,2.769612752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.181962279,135.7850897,121.3707034,138.5547024,830.2114597,0,0.920586869,22.98797043,-0.920586869,157.0120296,0.99568682,0,948.0013119,138.5547024,1038.682594,7,12,10% +2018-07-01 21:00:00,17.89376382,217.6292136,981.1470715,898.8449413,125.7811912,1012.943935,883.5592102,129.3847252,121.9884242,7.396301063,241.6832338,0,241.6832338,3.792766996,237.8904668,0.312305094,3.798346326,0.272697182,-0.272697182,0.483519725,0.483519725,0.128198101,4.065979791,130.7758868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2599134,2.747846778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945788518,125.7067567,120.2057019,128.4546035,883.5592102,0,0.982994029,10.58170728,-0.982994029,169.4182927,0.999134991,0,1003.000625,128.4546035,1087.071594,7,13,8% +2018-07-01 22:00:00,27.24260364,244.8178752,907.796664,884.6255559,121.2970998,1001.484134,877.001235,124.4828994,117.6395447,6.843354708,223.7633664,0,223.7633664,3.657555097,220.1058113,0.47547313,4.272877991,0.512766052,-0.512766052,0.44246553,0.44246553,0.133617036,3.53775183,113.7862598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.079605,2.649886217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563089158,109.375681,115.6426942,112.0255672,877.001235,0,0.991381302,7.527848792,-0.991381302,172.4721512,0.999565319,0,992.2627131,112.0255672,1065.581206,7,14,7% +2018-07-01 23:00:00,38.52297135,259.6521239,782.9030777,855.8458677,113.3247783,924.7385851,808.9291129,115.8094722,109.9076181,5.9018541,193.2410755,0,193.2410755,3.417160189,189.8239153,0.672352688,4.531784471,0.784821195,-0.784821195,0.395941361,0.395941361,0.144749435,2.852829427,91.75680089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6473831,2.475720925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066865208,88.20012716,107.7142483,90.67584808,808.9291129,0,0.945180836,19.0593485,-0.945180836,160.9406515,0.99710007,0,914.2975234,90.67584808,973.6430525,7,15,6% +2018-07-01 00:00:00,50.30048376,269.9785852,615.5768112,804.5137942,101.684517,785.128445,681.8696133,103.2588317,98.61835367,4.640478024,152.3198881,0,152.3198881,3.066163364,149.2537248,0.877909057,4.712015221,1.132038577,-1.132038577,0.336563691,0.336563691,0.16518575,2.07036744,66.5901337,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.79571267,2.22142492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499974162,64.00896939,96.29568684,66.23039431,681.8696133,0,0.847554906,32.0532849,-0.847554906,147.9467151,0.991006772,0,772.0330911,66.23039431,815.3795596,7,16,6% +2018-07-01 01:00:00,62.08808274,278.6159481,418.7293978,711.8579427,85.49899693,588.0778856,502.0004399,86.07744579,82.92088671,3.156559073,104.1039006,0,104.1039006,2.578110215,101.5257904,1.08364147,4.862765644,1.657135998,-1.657135998,0.246766744,0.246766744,0.204186755,1.264413392,40.66788108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.70671036,1.867832075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916063198,39.09151418,80.62277356,40.95934625,502.0004399,0,0.705197498,45.15449821,-0.705197498,134.8455018,0.979097877,0,572.1303383,40.95934625,598.9374112,7,17,5% +2018-07-01 02:00:00,73.60840195,286.7882476,210.5986658,528.6723091,61.40692867,340.2593039,279.116439,61.1428649,59.5552832,1.5875817,52.91373021,0,52.91373021,1.851645467,51.06208475,1.284708971,5.005399176,2.722543161,-2.722543161,0.064571388,0.064571388,0.291582705,0.535532892,17.22457868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.24680351,1.341510837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387991757,16.55692019,57.63479526,17.89843103,279.116439,0,0.527957365,58.13245421,-0.527957365,121.8675458,0.955295383,0,324.2734408,17.89843103,335.9876059,7,18,4% +2018-07-01 03:00:00,84.56197705,295.2088664,31.647704,141.1681454,18.26934384,64.39157238,46.4345429,17.95702948,17.71845572,0.238573761,8.224240363,0,8.224240363,0.550888123,7.673352239,1.475884922,5.1523667,7.400666241,-7.400666241,0,0,0.57727233,0.137722031,4.429613929,0.42377552,1,0.134309495,0,0.947250921,0.986012884,0.724496596,1,17.17957569,0.39911657,0.060363002,0.312029739,0.843125566,0.567622162,0.961238037,0.922476074,0.094253344,4.257913397,17.27382903,4.657029968,26.75672032,0,0.328930743,70.79611123,-0.328930743,109.2038888,0.897992317,0,41.30115831,4.657029968,44.34909129,7,19,7% +2018-07-01 04:00:00,94.9908476,304.4268417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65790305,5.31325072,-6.661597219,6.661597219,1,0.330646093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116463042,83.31198175,-0.116463042,96.68801825,0.620679253,0,0,0,0,7,20,0% +2018-07-01 05:00:00,104.1112928,314.9355929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817084849,5.496663028,-1.685162946,1.685162946,1,0.818333526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088582813,95.08208262,0.088582813,84.91791738,0,0.485556422,0,0,0,7,21,0% +2018-07-01 06:00:00,111.5710256,327.1405646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947281746,5.70967997,-0.56295383,0.56295383,1,0.626424464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274693318,105.9437387,0.274693318,74.05626126,0,0.867978827,0,0,0,7,22,0% +2018-07-01 07:00:00,116.7504036,341.1688811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037678946,5.954520281,0.040470977,-0.040470977,1,0.523232745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429190395,115.4161915,0.429190395,64.58380848,0,0.933501587,0,0,0,7,23,0% +2018-07-02 08:00:00,119.0479202,356.5739112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077778176,6.223388778,0.513594685,-0.513594685,1,0.442323826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541549242,122.7891649,0.541549242,57.21083514,0,0.957672293,0,0,0,7,0,0% +2018-07-02 09:00:00,118.1348901,12.26397809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061842794,0.214046797,0.998293989,-0.998293989,1,0.359435363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60411518,127.1651977,0.60411518,52.83480227,0,0.967234326,0,0,0,7,1,0% +2018-07-02 10:00:00,114.1471607,26.99029773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992243785,0.471069562,1.63110023,-1.63110023,1,0.251219122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612625085,127.7795567,0.612625085,52.22044334,0,0.968384015,0,0,0,7,2,0% +2018-07-02 11:00:00,107.6014648,40.0032547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877999842,0.698188506,2.729905351,-2.729905351,1,0.06331238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56649792,124.5063743,0.56649792,55.49362566,0,0.961738423,0,0,0,7,3,0% +2018-07-02 12:00:00,99.13461012,51.21428319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.730225349,0.893857866,5.887853581,-5.887853581,1,0,#DIV/0!,0,0,0.322827486,1,0.168235794,0,0.943055815,0.981817778,0.724496596,1,0,0,0.047899206,0.312029739,0.873162692,0.597659288,0.961238037,0.922476074,0,0,0,0,0,0,-0.468874601,117.9612692,0.468874601,62.03873078,0,0.943361679,0,0,0,7,4,0% +2018-07-02 13:00:00,88.9162682,60.94098607,0.767864995,4.42586851,0.684156064,0.669314725,0,0.669314725,0.663526235,0.005788491,1.622734411,1.415926823,0.206807588,0.02062983,0.186177758,1.551881639,1.063620856,-52.20328843,52.20328843,0,0,0.890984833,0.005157457,0.165881559,1,0.881760936,0,0.019153539,0.961238037,1,0.671616384,0.947119789,0.637806655,0.014527354,0.115824807,0.251977256,0.724496596,0.448993192,0.970369935,0.931607972,0.00373656,0.160206213,0.641543215,0.174733566,0,0.167417862,-0.319920671,108.6581275,0.319920671,71.34187254,0,0.893711255,0.641543215,0.324356794,0.85382825,7,5,33% +2018-07-02 14:00:00,78.47808495,69.65154993,124.086797,391.041002,45.97919929,45.52817547,0,45.52817547,44.59275678,0.93541869,89.12190929,57.64918623,31.47272305,1.386442504,30.08628055,1.369700973,1.215648875,-4.905461398,4.905461398,0.630963005,0.630963005,0.370540625,0.718126731,23.09742423,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.86425399,1.004472874,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.520280372,22.20212272,43.38453436,23.2065956,0,57.64918623,-0.147424914,98.47772594,0.147424914,81.52227406,0,0.7108443,43.38453436,64.18619104,85.39311267,7,6,97% +2018-07-02 15:00:00,67.15791609,77.86684466,327.8708551,647.6871993,76.44348182,110.6458691,34.03581127,76.61005779,74.13842879,2.471628999,81.8011378,0,81.8011378,2.305053023,79.49608478,1.172126755,1.359032817,-2.351680997,2.351680997,0.932314826,0.932314826,0.233151195,2.343340838,75.36989653,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26467775,1.670003069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69774246,72.44841138,72.96242021,74.11841445,34.03581127,0,0.052549767,86.98773268,-0.052549767,93.01226732,0,0,72.96242021,74.11841445,121.4714401,7,7,66% +2018-07-02 16:00:00,55.45749341,86.20646454,532.3399587,770.5980442,95.3973948,298.656499,202.1226842,96.53381483,92.52081136,4.01300347,131.9485696,0,131.9485696,2.876583432,129.0719862,0.967915855,1.504586643,-1.394971983,1.394971983,0.768707948,0.768707948,0.179203896,3.251160385,104.5684938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93452308,2.084074904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355454632,100.5152137,91.28997771,102.5992886,202.1226842,0,0.262293274,74.79381946,-0.262293274,105.2061805,0.859373686,0,264.9888939,102.5992886,332.1380763,7,8,25% +2018-07-02 17:00:00,43.63864319,95.6056604,714.3108661,836.6197336,108.843658,501.8248293,390.8784322,110.9463972,105.5616201,5.384777035,176.4749774,0,176.4749774,3.282037879,173.1929395,0.761638005,1.668633558,-0.859923371,0.859923371,0.677209247,0.677209247,0.152375756,3.91147367,125.8064388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4698445,2.377825271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833849359,120.9299343,104.3036938,123.3077596,390.8784322,0,0.467211585,62.14655378,-0.467211585,117.8534462,0.942982106,0,472.895061,123.3077596,553.5975234,7,9,17% +2018-07-02 18:00:00,32.05893749,107.965376,858.9719957,873.8590504,118.3742271,692.1441271,570.864026,121.2801011,114.8048074,6.475293735,211.8371249,0,211.8371249,3.569419701,208.2677052,0.559534014,1.884351289,-0.493764511,0.493764511,0.614592394,0.614592394,0.137809181,4.323586654,139.061409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3547477,2.586032423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.132423813,133.6711158,113.4871715,136.2571482,570.864026,0,0.653267853,49.21156045,-0.653267853,130.7884395,0.973461717,0,669.2014463,136.2571482,758.3790246,7,10,13% +2018-07-02 19:00:00,21.57479585,128.2926436,955.5726331,893.8221296,124.3731726,849.8164929,721.9901201,127.8263728,120.6228626,7.203510144,235.4399582,0,235.4399582,3.750310044,231.6896481,0.376551223,2.239129038,-0.207824796,0.207824796,0.565693823,0.565693823,0.130155645,4.482176896,144.1622164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9472837,2.71708686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247321903,138.5742058,119.1946056,141.2912927,721.9901201,0,0.807755924,36.122745,-0.807755924,143.877255,0.988100114,0,832.5931252,141.2912927,925.0654505,7,11,11% +2018-07-02 20:00:00,15.12014564,168.3617769,997.154952,901.4765404,126.8866497,960.0577612,829.4802368,130.5775243,123.0605491,7.516975228,245.5978634,0,245.5978634,3.826100651,241.7717628,0.263896325,2.938467341,0.039293005,-0.039293005,0.52343419,0.52343419,0.127248678,4.390489028,141.2132194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2904806,2.771996897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.180894355,135.7395178,121.471375,138.5115147,829.4802368,0,0.920135133,23.05415448,-0.920135133,156.9458455,0.995660156,0,947.3517966,138.5115147,1038.004813,7,12,10% +2018-07-02 21:00:00,17.93490704,217.3828424,980.7571542,898.5190401,125.8998745,1012.507992,883.0111019,129.4968905,122.1035288,7.393361702,241.5922726,0,241.5922726,3.796345738,237.7959268,0.313023179,3.794046337,0.272619393,-0.272619393,0.483533028,0.483533028,0.12837008,4.065106366,130.7477944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3705563,2.750439564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945155724,125.6797532,120.315712,128.4301928,883.0111019,0,0.982740557,10.66050171,-0.982740557,169.3394983,0.999121872,0,1002.551417,128.4301928,1086.60641,7,13,8% +2018-07-02 22:00:00,27.25646643,244.6315045,907.5373682,884.305396,121.4204151,1001.215686,876.615144,124.6005416,117.7591416,6.841400027,223.7042155,0,223.7042155,3.66127351,220.042942,0.475715082,4.269625208,0.512916858,-0.512916858,0.442439741,0.442439741,0.133791092,3.537252407,113.7701966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1945661,2.652580194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562727328,109.3602405,115.7572934,112.0128207,876.615144,0,0.991303624,7.561744739,-0.991303624,172.4382553,0.999561367,0,991.9879248,112.0128207,1065.298076,7,14,7% +2018-07-02 23:00:00,38.52702465,259.513123,782.7247344,855.5101145,113.4468107,924.5923938,808.6659134,115.9264805,110.0259708,5.900509673,193.2015139,0,193.2015139,3.420839917,189.7806739,0.672423431,4.529358449,0.785256699,-0.785256699,0.395866885,0.395866885,0.144938323,2.852477054,91.74546739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7611482,2.478386875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066609916,88.18923296,107.8277581,90.66761984,808.6659134,0,0.945244129,19.04824,-0.945244129,160.95176,0.997103612,0,914.1514614,90.66761984,973.4916052,7,15,6% +2018-07-02 00:00:00,50.3023879,269.8656784,615.4250362,804.1319391,101.7972182,785.0412177,681.6742273,103.3669904,98.72765648,4.639333879,152.2864869,0,152.2864869,3.06956172,149.2169252,0.87794229,4.710044626,1.132923983,-1.132923983,0.336412278,0.336412278,0.165409615,2.069959747,66.57702089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.9007787,2.223887017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49967879,63.99636486,96.40045749,66.22025188,681.6742273,0,0.847714404,32.03606124,-0.847714404,147.9639388,0.991017871,0,771.9517992,66.22025188,815.2916296,7,16,6% +2018-07-02 01:00:00,62.09176404,278.5174558,418.5513912,711.3714095,85.58913292,587.9660653,501.8025433,86.16352196,83.00830478,3.155217183,104.0634588,0,104.0634588,2.580828148,101.4826306,1.083705721,4.861046627,1.658945374,-1.658945374,0.246457322,0.246457322,0.204488946,1.263817416,40.64871246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79073993,1.869801208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915631416,39.07308856,80.70637134,40.94288977,501.8025433,0,0.705401618,45.1380007,-0.705401618,134.8619993,0.979118393,0,572.0304713,40.94288977,598.8267738,7,17,5% +2018-07-02 02:00:00,73.61649283,286.6976078,210.3584219,527.9380087,61.44542774,340.0096466,278.8312546,61.17839202,59.59262138,1.58577064,52.8566412,0,52.8566412,1.852806356,51.00383484,1.284850184,5.003817214,2.727182824,-2.727182824,0.063777959,0.063777959,0.292098729,0.534796752,17.20090191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.28269439,1.342351898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387458427,16.53416118,57.67015282,17.87651308,278.8312546,0,0.528151506,58.11935556,-0.528151506,121.8806444,0.955330195,0,324.0460697,17.87651308,335.74589,7,18,4% +2018-07-02 03:00:00,84.57647233,295.1221815,31.4357137,140.1130499,18.192632,63.98735515,46.10632244,17.88103271,17.64405702,0.236975688,8.170527715,0,8.170527715,0.548574978,7.621952737,1.476137912,5.150853762,7.431865385,-7.431865385,0,0,0.578724955,0.137143745,4.411014255,0.425541618,1,0.133752375,0,0.947317631,0.986079594,0.724496596,1,17.10740889,0.397440704,0.060572139,0.312029739,0.842632077,0.567128673,0.961238037,0.922476074,0.093856631,4.240034683,17.20126552,4.637475387,26.48616341,0,0.329065155,70.78795599,-0.329065155,109.212044,0.898054407,0,40.9872813,4.637475387,44.02241619,7,19,7% +2018-07-02 04:00:00,95.01464776,304.3420023,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658318441,5.311769992,-6.643538042,6.643538042,1,0.333734394,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116477111,83.31117011,-0.116477111,96.68882989,0.620731112,0,0,0,0,7,20,0% +2018-07-02 05:00:00,104.1463722,314.8523409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817697098,5.495210007,-1.686030386,1.686030386,1,0.818481867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088726025,95.09032051,0.088726025,84.90967949,0,0.486467488,0,0,0,7,21,0% +2018-07-02 06:00:00,111.6194112,327.0611931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948126234,5.708294675,-0.564973511,0.564973511,1,0.62676985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275025482,105.9635327,0.275025482,74.03646729,0,0.868198664,0,0,0,7,22,0% +2018-07-02 07:00:00,116.8129923,341.0988408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038771325,5.953297846,0.037943049,-0.037943049,1,0.523665046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429730276,115.450444,0.429730276,64.54955598,0,0.933647947,0,0,0,7,23,0% +2018-07-03 08:00:00,119.1233663,356.5205519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079094957,6.222457481,0.510402802,-0.510402802,1,0.44286967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542301393,122.8404425,0.542301393,57.15955752,0,0.957800347,0,0,0,7,0,0% +2018-07-03 09:00:00,118.2193766,12.23253499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063317361,0.213498011,0.993898795,-0.993898795,1,0.360186985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605069608,127.233851,0.605069608,52.76614899,0,0.96736488,0,0,0,7,1,0% +2018-07-03 10:00:00,114.2358709,26.98070685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993792072,0.470902169,1.624104498,-1.624104498,1,0.252415463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613757935,127.861725,0.613757935,52.13827504,0,0.968534658,0,0,0,7,2,0% +2018-07-03 11:00:00,107.6904848,40.01148575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879553533,0.698332165,2.715487125,-2.715487125,1,0.065778042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567773109,124.5950834,0.567773109,55.40491657,0,0.961936654,0,0,0,7,3,0% +2018-07-03 12:00:00,99.22167125,51.23569104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731744853,0.894231503,5.832049702,-5.832049702,1,0,#DIV/0!,0,0,0.318422948,1,0.169814928,0,0.942854231,0.981616194,0.724496596,1,0,0,0.04733159,0.312029739,0.874559938,0.599056534,0.961238037,0.922476074,0,0,0,0,0,0,-0.470246306,118.050286,0.470246306,61.94971403,0,0.943672743,0,0,0,7,4,0% +2018-07-03 13:00:00,88.99098085,60.97224091,0.654833396,3.822658095,0.587517167,0.574737767,0,0.574737767,0.569801356,0.004936411,1.404261203,1.227773455,0.176487749,0.01771581,0.158771938,1.55318562,1.064166356,-56.07443072,56.07443072,0,0,0.897200983,0.004428953,0.142450339,1,0.890344217,0,0.01783155,0.961238037,1,0.675173977,0.950677381,0.547714737,0.012496458,0.115824807,0.256013601,0.724496596,0.448993192,0.969779821,0.931017858,0.003208761,0.137539983,0.550923498,0.150036441,0,0.134632459,-0.321183173,108.7344932,0.321183173,71.26550676,0,0.894325593,0.550923498,0.270441695,0.727922179,7,5,32% +2018-07-03 14:00:00,78.55886649,69.69099532,122.6257717,387.7387573,45.71350826,45.25948219,0,45.25948219,44.33507732,0.924404865,88.81397833,57.70350931,31.11046901,1.378430939,29.73203807,1.371110877,1.216337327,-4.94106485,4.94106485,0.624874456,0.624874456,0.372788751,0.706908151,22.73659612,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.61656269,0.998668523,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.512152549,21.85528102,43.12871524,22.85394954,0,57.70350931,-0.148820587,98.55858402,0.148820587,81.44141598,0,0.714024977,43.12871524,64.05569646,85.05188746,7,6,97% +2018-07-03 15:00:00,67.23672193,77.91428796,326.3365257,646.0351633,76.36958483,109.6125815,33.08575886,76.52682265,74.06676007,2.460062576,81.4268936,0,81.4268936,2.302824756,79.12406884,1.173502176,1.359860859,-2.360481095,2.360481095,0.933819731,0.933819731,0.234020953,2.335355363,75.1130562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19578705,1.668388697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69195701,72.20152668,72.88774406,73.86991538,33.08575886,0,0.051213557,87.06439509,-0.051213557,92.93560491,0,0,72.88774406,73.86991538,121.2341263,7,7,66% +2018-07-03 16:00:00,55.53502644,86.26292705,530.9326909,769.6221478,95.40173135,297.4536666,200.9262546,96.52741204,92.52501715,4.002394891,131.607492,0,131.607492,2.876714195,128.7307778,0.969269061,1.505572099,-1.398620227,1.398620227,0.769331835,0.769331835,0.179687054,3.245061402,104.3723295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93856585,2.084169642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351035939,100.3266531,91.28960178,102.4108228,200.9262546,0,0.2610713,74.86636122,-0.2610713,105.1336388,0.858481438,0,263.7810617,102.4108228,330.806897,7,8,25% +2018-07-03 17:00:00,43.71651763,95.67291147,713.0913447,835.9550968,108.8897986,500.6594242,389.677471,110.9819532,105.6063694,5.375583767,176.1806816,0,176.1806816,3.283429188,172.8972524,0.76299717,1.66980731,-0.86178098,0.86178098,0.677526917,0.677526917,0.152701052,3.906807079,125.6563452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5128592,2.37883327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830468429,120.7856586,104.3433276,123.1644919,389.677471,0,0.466146414,62.21555872,-0.466146414,117.7844413,0.942737564,0,471.7069174,123.1644919,552.315614,7,9,17% +2018-07-03 18:00:00,32.13995737,108.0429651,857.9638233,873.3573197,118.4475308,691.1135755,569.7699811,121.3435944,114.8759007,6.467693706,211.5948922,0,211.5948922,3.571630077,208.0232621,0.560948078,1.885705474,-0.494794153,0.494794153,0.614768473,0.614768473,0.138056556,4.320110311,138.9495979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4230853,2.587633833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.129905214,133.5636387,113.5529905,136.1512725,569.7699811,0,0.652390457,49.27792449,-0.652390457,130.7220755,0.973358781,0,668.1436047,136.1512725,757.2518895,7,10,13% +2018-07-03 19:00:00,21.66294534,128.3554656,954.7775283,893.411945,124.465927,848.9688079,721.0584715,127.9103364,120.7128201,7.197516308,235.2499727,0,235.2499727,3.75310693,231.4968658,0.378089722,2.240225488,-0.20838977,0.20838977,0.565790439,0.565790439,0.130361182,4.47969464,144.0823785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0337542,2.719113195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.245523518,138.4974626,119.2792777,141.2165758,721.0584715,0,0.807083984,36.18800069,-0.807083984,143.8119993,0.988048579,0,831.7200756,141.2165758,924.1435001,7,11,11% +2018-07-03 20:00:00,15.20730373,168.2570023,996.5569765,901.1178946,126.9934694,959.4094279,828.7328128,130.6766152,123.1641477,7.512467437,245.4560984,0,245.4560984,3.829321658,241.6267767,0.265417521,2.936638679,0.039038602,-0.039038602,0.523477695,0.523477695,0.127432222,4.388798436,141.1588441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3900636,2.774330506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179669527,135.6872502,121.5697331,138.4615807,828.7328128,0,0.919671907,23.12183594,-0.919671907,156.8781641,0.995632785,0,946.6832918,138.4615807,1037.303627,7,12,10% +2018-07-03 21:00:00,17.98258898,217.1292115,980.3253574,898.1854367,126.0159413,1012.050649,882.4444466,129.6062024,122.2160957,7.390106635,241.4910783,0,241.4910783,3.799845579,237.6912327,0.313855386,3.789619643,0.272616831,-0.272616831,0.483533466,0.483533466,0.128545019,4.063987143,130.7117964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4787599,2.752975187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944344851,125.6451505,120.4231048,128.3981257,882.4444466,0,0.982474677,10.74253946,-0.982474677,169.2574605,0.999108103,0,1002.080502,128.3981257,1086.114507,7,13,8% +2018-07-03 22:00:00,27.27558934,244.4354752,907.2287376,883.9750805,121.540585,1000.919596,876.2048342,124.7147614,117.875688,6.839073439,223.633008,0,223.633008,3.664897076,219.968111,0.476048839,4.26620385,0.513169367,-0.513169367,0.442396559,0.442396559,0.133969064,3.536472363,113.7451078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3065949,2.655205456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562162189,109.3361241,115.8687571,111.9913295,876.2048342,0,0.991209881,7.602451365,-0.991209881,172.3975486,0.999556596,0,991.685079,111.9913295,1064.981164,7,14,7% +2018-07-03 23:00:00,38.53569256,259.3660214,782.4877822,855.1593035,113.5648941,924.4086615,808.3694446,116.0392169,110.1404935,5.898723426,193.1476227,0,193.1476227,3.424400566,189.7232221,0.672574715,4.526791041,0.785835883,-0.785835883,0.395767839,0.395767839,0.145133121,2.851808261,91.72395671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8712317,2.480966553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066125377,88.16855608,107.9373571,90.64952263,808.3694446,0,0.945285213,19.04102609,-0.945285213,160.9589739,0.997105911,0,913.9673088,90.64952263,973.2956083,7,15,6% +2018-07-03 00:00:00,50.30870965,269.7460439,615.2043972,803.7250318,101.9047209,784.9026263,681.4330382,103.4695881,98.83191753,4.63767061,152.236232,0,152.236232,3.072803322,149.1634287,0.878052626,4.70795661,1.134030805,-1.134030805,0.336223,0.336223,0.165643681,2.06920557,66.55276397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00099839,2.226235547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499132391,63.97304818,96.50013078,66.19928373,681.4330382,0,0.847843493,32.02211524,-0.847843493,147.9778848,0.991026852,0,771.8185693,66.19928373,815.1446765,7,16,6% +2018-07-03 01:00:00,62.09991357,278.4131969,418.2946441,710.8371494,85.67180115,587.7840437,501.5422818,86.24176196,83.08848025,3.153281716,104.0037002,0,104.0037002,2.5833209,101.4203793,1.083847957,4.859226967,1.661154043,-1.661154043,0.246079618,0.246079618,0.204812092,1.262862929,40.61801287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86780764,1.871607198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914939893,39.04357895,80.78274753,40.91518615,501.5422818,0,0.705565659,45.12473908,-0.705565659,134.8752609,0.979134873,0,571.8602859,40.91518615,598.638457,7,17,5% +2018-07-03 02:00:00,73.62925263,286.601888,210.0336862,527.0955122,61.47095286,339.6627246,278.4620251,61.20069947,59.61737683,1.583322645,52.77867494,0,52.77867494,1.853576032,50.92509891,1.285072884,5.002146588,2.732823569,-2.732823569,0.062813335,0.062813335,0.292671876,0.533740461,17.16692795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30649027,1.342909526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386693147,16.50150412,57.69318341,17.84441365,278.4620251,0,0.528295193,58.10965993,-0.528295193,121.8903401,0.955355944,0,323.7235342,17.84441365,335.402346,7,18,4% +2018-07-03 03:00:00,84.59586394,295.0309616,31.16603443,138.8404633,18.09001453,63.47743796,45.69796138,17.77947658,17.54453385,0.234942732,8.102046557,0,8.102046557,0.545480683,7.556565874,1.476476359,5.149261676,7.470608941,-7.470608941,0,0,0.580440048,0.136370171,4.386133461,0.427719771,1,0.133066898,0,0.947399614,0.986161577,0.724496596,1,17.01086981,0.395198898,0.060829664,0.312029739,0.842024885,0.566521481,0.961238037,0.922476074,0.093326254,4.216118318,17.10419607,4.611317216,26.15203979,0,0.329140081,70.78340976,-0.329140081,109.2165902,0.898088997,0,40.59105525,4.611317216,43.60907014,7,19,7% +2018-07-03 04:00:00,95.043871,304.2531564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658828483,5.310219339,-6.619115922,6.619115922,1,0.337910822,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11641977,83.31447799,-0.11641977,96.68552201,0.620519682,0,0,0,0,7,20,0% +2018-07-03 05:00:00,104.1873382,314.7657365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81841209,5.493698474,-1.686368468,1.686368468,1,0.818539682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088949359,95.10316736,0.088949359,84.89683264,0,0.487882401,0,0,0,7,21,0% +2018-07-03 06:00:00,111.6741312,326.9794159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949081278,5.706867393,-0.566901553,0.566901553,1,0.627099565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275444562,105.9885089,0.275444562,74.01149111,0,0.868475269,0,0,0,7,22,0% +2018-07-03 07:00:00,116.8822285,341.0277702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039979724,5.95205743,0.035382977,-0.035382977,1,0.524102844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430361486,115.4905032,0.430361486,64.50949684,0,0.9338186,0,0,0,7,23,0% +2018-07-04 08:00:00,119.2054901,356.4679108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080528288,6.221538722,0.507110591,-0.507110591,1,0.443432671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543146598,122.8980994,0.543146598,57.10190058,0,0.957943822,0,0,0,7,0,0% +2018-07-04 09:00:00,118.310207,12.20358447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064902651,0.21299273,0.989334694,-0.989334694,1,0.360967493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606116013,127.3091922,0.606116013,52.69080782,0,0.967507542,0,0,0,7,1,0% +2018-07-04 10:00:00,114.3302984,26.97500481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995440142,0.47080265,1.61682963,-1.61682963,1,0.253659539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614978953,127.950391,0.614978953,52.049609,0,0.968696405,0,0,0,7,2,0% +2018-07-04 11:00:00,107.7844706,40.02449867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881193894,0.698559283,2.700533493,-2.700533493,1,0.068335263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56913019,124.6895935,0.56913019,55.31040648,0,0.962146639,0,0,0,7,3,0% +2018-07-04 12:00:00,99.31296789,51.26241035,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73333828,0.894697843,5.774786843,-5.774786843,1,0,#DIV/0!,0,0,0.313843291,1,0.17146616,0,0.942642846,0.981404809,0.724496596,1,0,0,0.046739202,0.312029739,0.876020881,0.600517477,0.961238037,0.922476074,0,0,0,0,0,0,-0.471691589,118.1441574,0.471691589,61.85584261,0,0.943998534,0,0,0,7,4,0% +2018-07-04 13:00:00,89.06853892,61.00917951,0.549825762,3.263529508,0.496772695,0.485937985,0,0.485937985,0.481793166,0.004144819,1.200770496,1.052479345,0.148291151,0.01497953,0.133311622,1.554539264,1.064811056,-60.75060389,60.75060389,0,0,0.903509311,0.003744882,0.120448291,1,0.899184593,0,0.016459255,0.961238037,1,0.678881441,0.954384845,0.463117917,0.010585381,0.115824807,0.260220687,0.724496596,0.448993192,0.969161069,0.930399106,0.002713155,0.116263107,0.465831071,0.126848488,0,0.106106133,-0.322497266,108.8140164,0.322497266,71.18598362,0,0.894959926,0.465831071,0.221809225,0.611000773,7,5,31% +2018-07-04 14:00:00,78.64272315,69.73651075,121.1153743,384.3157297,45.43348544,44.97651707,0,44.97651707,44.06349822,0.913018851,88.48656454,57.75075261,30.73581193,1.369987218,29.36582471,1.372574452,1.217131721,-4.978551554,4.978551554,0.618463852,0.618463852,0.375125666,0.695344067,22.36465542,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.35551053,0.992551076,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.503774409,21.49775747,42.85928494,22.49030855,0,57.75075261,-0.150269032,98.64251766,0.150269032,81.35748234,0,0.717263445,42.85928494,63.9128123,84.68894233,7,6,98% +2018-07-04 15:00:00,67.31826638,77.96834027,324.7524576,644.3352946,76.28909417,108.5471808,32.11036314,76.4368177,73.9886965,2.448121202,81.04039087,0,81.04039087,2.300397666,78.7399932,1.174925395,1.36080425,-2.3696172,2.3696172,0.935382097,0.935382097,0.234914601,2.327090461,74.84722855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12074937,1.666630278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.685969117,71.94600304,72.80671849,73.61263332,32.11036314,0,0.049834866,87.1434893,-0.049834866,92.8565107,0,0,72.80671849,73.61263332,120.9847147,7,7,66% +2018-07-04 16:00:00,55.61511217,86.32683755,529.4820109,768.6240397,95.40208083,296.2182211,199.701406,96.51681515,92.5253561,3.991459052,131.2557684,0,131.2557684,2.876724733,128.3790437,0.970666821,1.506687548,-1.402361442,1.402361442,0.76997162,0.76997162,0.180180023,3.238742276,104.1690847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93889165,2.084177276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346457754,100.1312865,91.28534941,102.2154638,199.701406,0,0.259816758,74.94081052,-0.259816758,105.0591895,0.857556678,0,262.5406237,102.2154638,329.4386004,7,8,25% +2018-07-04 17:00:00,43.79698682,95.74895997,711.8338492,835.2779421,108.9330481,499.4665082,388.4520892,111.014419,105.6483148,5.366104235,175.8770914,0,175.8770914,3.28473332,172.5923581,0.764401623,1.671134607,-0.863655196,0.863655196,0.677847427,0.677847427,0.153031565,3.901946269,125.5000049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5531787,2.379778108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826946789,120.6353783,104.3801255,123.0151564,388.4520892,0,0.465057282,62.28607071,-0.465057282,117.7139293,0.942486363,0,470.4909221,123.0151564,551.0018816,7,9,17% +2018-07-04 18:00:00,32.22400169,108.1315135,856.9207929,872.8471107,118.5184401,690.0607081,568.6562053,121.4045028,114.9446719,6.459830902,211.3441356,0,211.3441356,3.573768257,207.7703673,0.562414928,1.887250935,-0.495805944,0.495805944,0.6149415,0.6149415,0.138307345,4.316445564,138.831727,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4891907,2.589182936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127250117,133.4503367,113.6164409,136.0395197,568.6562053,0,0.651495776,49.3455279,-0.651495776,130.6544721,0.973253532,0,667.0631009,136.0395197,756.0982457,7,10,13% +2018-07-04 19:00:00,21.75531391,128.4319793,953.9478854,892.9948376,124.5564431,848.1020473,720.1101784,127.9918689,120.8006068,7.19126211,235.0515456,0,235.0515456,3.755836324,231.2957093,0.379701858,2.241560905,-0.20891577,0.20891577,0.56588039,0.56588039,0.130569442,4.47701476,143.9961843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1181381,2.721090632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.243581953,138.4146095,119.3617201,141.1357001,720.1101784,0,0.806399038,36.25441494,-0.806399038,143.7455851,0.987995958,0,830.8276655,141.1357001,923.1981585,7,11,11% +2018-07-04 20:00:00,15.30085154,168.1618507,995.9218867,900.7524585,127.0979533,958.7423584,827.9691975,130.7731609,123.2654811,7.507679861,245.3052641,0,245.3052641,3.832472233,241.4727918,0.267050238,2.934977971,0.038840832,-0.038840832,0.523511516,0.523511516,0.127618396,4.386889088,141.0974329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.487469,2.776613087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178286211,135.6282194,121.6657552,138.4048325,827.9691975,0,0.919197266,23.19099154,-0.919197266,156.8090085,0.995604712,0,945.9957897,138.4048325,1036.578984,7,12,10% +2018-07-04 21:00:00,18.03684647,216.8688708,979.8511325,897.8439948,126.1293526,1011.571554,881.858935,129.7126189,122.3260872,7.386531728,241.3795167,0,241.3795167,3.803265348,237.5762514,0.314802358,3.78507584,0.272690386,-0.272690386,0.483520887,0.483520887,0.128722975,4.062619152,130.6677971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5844879,2.755452798,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943353746,125.6028568,120.5278417,128.3583096,881.858935,0,0.982196172,10.82781375,-0.982196172,169.1721862,0.999093673,0,1001.587524,128.3583096,1085.59547,7,13,8% +2018-07-04 22:00:00,27.30004325,244.2300516,906.870015,883.6344117,121.6575553,1000.595202,875.7697021,124.8255004,117.9891311,6.836369237,223.5495587,0,223.5495587,3.668424161,219.8811345,0.476475641,4.262618533,0.513524462,-0.513524462,0.442335835,0.442335835,0.13415104,3.535408266,113.7108827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4156408,2.657760817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561391254,109.3032257,115.977032,111.9609865,875.7697021,0,0.991099589,7.650068241,-0.991099589,172.3499318,0.999550983,0,991.3534987,111.9609865,1064.629725,7,14,7% +2018-07-04 23:00:00,38.54904324,259.2109662,782.1913261,854.7931478,113.6789589,924.1864617,808.0388543,116.1476074,110.2511188,5.896488615,193.0791829,0,193.0791829,3.427840041,189.6513429,0.672807728,4.524084818,0.786559756,-0.786559756,0.395644049,0.395644049,0.145333955,2.850819515,91.69215522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.977569,2.483458441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065409034,88.13798728,108.0429781,90.62144572,808.0388543,0,0.945303383,19.03783485,-0.945303383,160.9621651,0.997106928,0,913.7441177,90.62144572,973.0540415,7,15,6% +2018-07-04 00:00:00,50.31950916,269.6197848,614.9139458,803.2926371,102.0069373,784.7115398,681.1450069,103.5665329,98.93105182,4.635481064,152.1688909,0,152.1688909,3.075885526,149.0930054,0.878241113,4.705752973,1.135360474,-1.135360474,0.335995614,0.335995614,0.165888151,2.068101675,66.51725891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.09629003,2.228468593,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498332623,63.93891937,96.59462266,66.16738796,681.1450069,0,0.847941305,32.0115446,-0.847941305,147.9884554,0.991033654,0,771.632248,66.16738796,814.9374801,7,16,6% +2018-07-04 01:00:00,62.11258263,278.3032549,417.9582527,710.2544362,85.74688212,587.5305442,501.2185011,86.31204311,83.16129725,3.150745855,103.9244022,0,103.9244022,2.585584868,101.3388173,1.084069074,4.857308116,1.663764907,-1.663764907,0.245633134,0.245633134,0.205156571,1.261547466,40.57570306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93780211,1.873247435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913986845,39.00290915,80.85178896,40.87615659,501.2185011,0,0.70568866,45.11479329,-0.70568866,134.8852067,0.979147225,0,571.6184933,40.87615659,598.3711203,7,17,5% +2018-07-04 02:00:00,73.64672338,286.5011616,209.6237498,526.1434225,61.48329982,339.2171645,278.0075806,61.20958385,59.62935148,1.580232371,52.67965341,0,52.67965341,1.853948339,50.82570507,1.285377806,5.00038858,2.739476263,-2.739476263,0.061675657,0.061675657,0.29330312,0.532363084,17.12262678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31800076,1.34317926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385695242,16.45892015,57.703696,17.80209942,278.0075806,0,0.528387449,58.10343416,-0.528387449,121.8965658,0.955372468,0,323.3044845,17.80209942,334.9556025,7,18,4% +2018-07-04 03:00:00,84.62018183,294.9352752,30.83891868,137.3504608,17.9612648,62.86168589,45.20954269,17.6521432,17.4196664,0.232476795,8.018851279,0,8.018851279,0.541598404,7.477252875,1.476900786,5.147591632,7.51711434,-7.51711434,0,0,0.582422004,0.135399601,4.3549166,0.43031258,1,0.132253261,0,0.947496786,0.986258749,0.724496596,1,16.88974253,0.3923862,0.061135633,0.312029739,0.841304158,0.565800754,0.961238037,0.922476074,0.092661168,4.186111483,16.98240369,4.578497683,25.75530775,0,0.329154649,70.78252584,-0.329154649,109.2174742,0.89809572,0,40.11313535,4.578497683,43.10967051,7,19,7% +2018-07-04 04:00:00,95.07853933,304.16037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659433559,5.30859991,-6.588476649,6.588476649,1,0.343150446,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11629024,83.3219503,-0.11629024,96.6780497,0.620041303,0,0,0,0,7,20,0% +2018-07-04 05:00:00,104.2342016,314.675844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81923001,5.492129554,-1.686174933,1.686174933,1,0.818506586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089253391,95.1206567,0.089253391,84.8793433,0,0.489797197,0,0,0,7,21,0% +2018-07-04 06:00:00,111.7351841,326.8952972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950146853,5.705399245,-0.568733623,0.568733623,1,0.627412867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275950884,106.0186886,0.275950884,73.98131138,0,0.868808335,0,0,0,7,22,0% +2018-07-04 07:00:00,116.958098,340.9557347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041303897,5.950800174,0.032795504,-0.032795504,1,0.524545328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431084064,115.5363772,0.431084064,64.46362277,0,0.934013342,0,0,0,7,23,0% +2018-07-05 08:00:00,119.2942639,356.4160558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082077685,6.22063368,0.503723736,-0.503723736,1,0.444011857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544084596,122.9621303,0.544084596,57.03786968,0,0.958102526,0,0,0,7,0,0% +2018-07-05 09:00:00,118.4073397,12.17719372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066597936,0.212532124,0.984609546,-0.984609546,1,0.361775541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607253838,127.3912014,0.607253838,52.60879863,0,0.96766211,0,0,0,7,1,0% +2018-07-05 10:00:00,114.4303885,26.97325157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997187044,0.47077205,1.609288891,-1.609288891,1,0.254949081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616287315,128.0455186,0.616287315,51.95448143,0,0.96886901,0,0,0,7,2,0% +2018-07-05 11:00:00,107.8833583,40.04234053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88291981,0.698870682,2.685075712,-2.685075712,1,0.0709787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570568116,124.7898517,0.570568116,55.21014831,0,0.962368044,0,0,0,7,3,0% +2018-07-05 12:00:00,99.40843125,51.2944735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735004429,0.895257451,5.716226221,-5.716226221,1,0,#DIV/0!,0,0,0.309095752,1,0.173188023,0,0.94242177,0.981183733,0.724496596,1,0,0,0.046122713,0.312029739,0.877544211,0.602040806,0.961238037,0.922476074,0,0,0,0,0,0,-0.473209241,118.2428178,0.473209241,61.75718219,0,0.944338496,0,0,0,7,4,0% +2018-07-05 13:00:00,89.14882669,61.0518205,0.453592755,2.751864578,0.412713173,0.403687722,0,0.403687722,0.400268348,0.003419374,1.013645059,0.891221419,0.12242364,0.012444825,0.109978815,1.55594055,1.065555282,-66.48974078,66.48974078,0,0,0.909876024,0.003111206,0.100067087,1,0.90826167,0,0.01503878,0.961238037,1,0.682734615,0.958238019,0.384753161,0.008811046,0.115824807,0.264593849,0.724496596,0.448993192,0.968513926,0.929751963,0.002254058,0.096560533,0.387007219,0.105371579,0,0.081759165,-0.323860929,108.896579,0.323860929,71.10342099,0,0.895612745,0.387007219,0.178596129,0.503894814,7,5,30% +2018-07-05 14:00:00,78.72958548,69.7881024,119.5571832,380.7723679,45.13912156,44.67928305,0,44.67928305,43.7780105,0.901272548,88.13854877,57.78941444,30.34913432,1.361111061,28.98802326,1.374090485,1.218032166,-5.017960423,5.017960423,0.611724539,0.611724539,0.377552568,0.68345204,21.98216697,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.08108887,0.98612033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.495158677,21.13009502,42.57624755,22.11621535,0,57.78941444,-0.151768929,98.72945251,0.151768929,81.27054749,0,0.720551803,42.57624755,63.75648212,84.30358997,7,6,98% +2018-07-05 15:00:00,67.40248366,78.0289957,323.1198256,642.5878043,76.20205424,107.450945,31.11085008,76.34009488,73.90428115,2.435813732,80.64191576,0,80.64191576,2.297773091,78.34414267,1.176395264,1.361862887,-2.379087409,2.379087409,0.937001598,0.937001598,0.235832184,2.318550367,74.57254978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03960612,1.664728782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.679781849,71.68197135,72.71938797,73.34670013,31.11085008,0,0.04841494,87.22494342,-0.04841494,92.77505658,0,0,72.71938797,73.34670013,120.7233363,7,7,66% +2018-07-05 16:00:00,55.69768956,86.39817618,527.9888354,767.6038732,95.39848734,294.9512819,198.4492081,96.50207383,92.52187096,3.980202864,130.8936224,0,130.8936224,2.876616376,128.017006,0.972108069,1.507932642,-1.40619306,1.40619306,0.770626866,0.770626866,0.180682774,3.232205887,103.9588519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93554161,2.084098772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.341722162,99.92920276,91.27726377,102.0133015,198.4492081,0,0.258530754,75.01709987,-0.258530754,104.9829001,0.856599411,0,261.2687386,102.0133015,328.0344042,7,8,26% +2018-07-05 17:00:00,43.87999565,95.83376577,710.5390064,834.5883413,108.9734358,498.2469891,387.2031614,111.0438278,105.6874846,5.356343163,175.5643596,0,175.5643596,3.285951157,172.2784084,0.7658504,1.672614747,-0.865544074,0.865544074,0.678170444,0.678170444,0.153367281,3.89689267,125.3374638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5908302,2.380660427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.823285474,120.4791376,104.4141157,122.859798,387.2031614,0,0.463945088,62.35802871,-0.463945088,117.6419713,0.942228625,0,469.2480181,122.859798,549.6572987,7,9,17% +2018-07-05 18:00:00,32.31102143,108.2309439,855.8432159,872.3284299,118.5869668,688.9861539,567.523314,121.4628399,115.0111322,6.451707671,211.0849309,0,211.0849309,3.575834588,207.5090963,0.563933709,1.888986324,-0.496798412,0.496798412,0.615111222,0.615111222,0.138561555,4.312592439,138.7077973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5530749,2.590679987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124458542,133.3312108,113.6775335,135.9218907,567.523314,0,0.650584453,49.4143184,-0.650584453,130.5856816,0.973146027,0,665.9605917,135.9218907,754.9187507,7,10,13% +2018-07-05 19:00:00,21.85185249,128.5220484,953.0836955,892.5707615,124.6447143,847.2165142,719.1455504,128.0709638,120.8862163,7.184747481,234.8446744,0,234.8446744,3.758498027,231.0861764,0.381386774,2.243132907,-0.209401626,0.209401626,0.565963477,0.565963477,0.13078045,4.474136017,143.903594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2004292,2.723019026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241496314,138.3256082,119.4419256,141.0486273,719.1455504,0,0.805701443,36.32194808,-0.805701443,143.6780519,0.987942273,0,829.9162154,141.0486273,922.229721,7,11,11% +2018-07-05 20:00:00,15.40073352,168.0764855,995.2493702,900.3801391,127.2000772,958.0565091,827.1893734,130.8671357,123.3645255,7.502610148,245.1452841,0,245.1452841,3.835551646,241.3097324,0.268793507,2.933488067,0.03870068,-0.03870068,0.523535483,0.523535483,0.127807242,4.384758696,141.0289122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5826744,2.778844111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176742749,135.5623547,121.7594171,138.3411988,827.1893734,0,0.918711262,23.26160155,-0.918711262,156.7383985,0.995575937,0,945.2892523,138.3411988,1035.8308,7,12,10% +2018-07-05 21:00:00,18.09771344,216.6023835,979.333903,897.4945708,126.2400675,1011.070322,881.2542256,129.8160963,122.4334637,7.382632633,241.2574469,0,241.2574469,3.806603812,237.4508431,0.315864687,3.780424759,0.27284095,-0.27284095,0.483495139,0.483495139,0.12890401,4.060999335,130.6156982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6877023,2.757871504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942180194,125.5527773,120.6298825,128.3106488,881.2542256,0,0.981904798,10.91632393,-0.981904798,169.0836761,0.999078566,0,1001.072091,128.3106488,1085.048844,7,13,8% +2018-07-05 22:00:00,27.32989869,244.015513,906.4604176,883.2831827,121.7712697,1000.241808,875.3091098,124.9326981,118.0994166,6.833281519,223.453676,0,223.453676,3.671853068,219.7818229,0.476996716,4.258874128,0.513983037,-0.513983037,0.442257414,0.442257414,0.134337106,3.534056618,113.6674091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5216514,2.660245049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560411989,109.2614371,116.0820633,111.9216822,875.3091098,0,0.990972235,7.704687353,-0.990972235,172.2953126,0.9995445,0,990.9924694,111.9216822,1064.242972,7,14,7% +2018-07-05 23:00:00,38.56714497,259.0481135,781.8344508,854.4113488,113.7889337,923.9248323,807.6732565,116.2515759,110.3577775,5.893798338,192.9959705,0,192.9959705,3.431156188,189.5648144,0.673123663,4.521242501,0.787429351,-0.787429351,0.39549534,0.39549534,0.145540956,2.849507253,91.64994839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0800934,2.485860978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064458305,88.09741647,108.1445517,90.58327744,807.6732565,0,0.945297903,19.03879735,-0.945297903,160.9612027,0.997106621,0,913.4809036,90.58327744,972.765847,7,15,6% +2018-07-05 00:00:00,50.33484651,269.4870096,614.5527205,802.8343014,102.1037777,784.4667935,680.8090634,103.6577301,99.02497212,4.632757995,152.0842278,0,152.0842278,3.078805622,149.0054221,0.8785088,4.703435609,1.136914505,-1.136914505,0.335729859,0.335729859,0.166143236,2.066644848,66.47040236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.1865698,2.230584192,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497277157,63.89387907,96.68384695,66.12446327,680.8090634,0,0.848006945,32.00444905,-0.848006945,147.995551,0.991038219,0,771.3916484,66.12446327,814.6687871,7,16,6% +2018-07-05 01:00:00,62.12982222,278.1877168,417.5413111,709.6225053,85.81425276,587.2042582,500.830019,86.37423919,83.22663642,3.147602773,103.8253413,0,103.8253413,2.587616342,101.237725,1.084369961,4.855291596,1.66678116,-1.66678116,0.245117324,0.245117324,0.205522784,1.259868656,40.52170675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0006086,1.874719231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.912770553,38.95100584,80.91337916,40.82572508,500.830019,0,0.705769638,45.10824444,-0.705769638,134.8917556,0.979155354,0,571.3037738,40.82572508,598.0233944,7,17,5% +2018-07-05 02:00:00,73.66894641,286.3955047,209.1279226,525.0802365,61.48225435,338.671557,277.4667249,61.20483215,59.62833754,1.576494616,52.55940284,0,52.55940284,1.853916814,50.70548602,1.285765671,4.998544521,2.747153347,-2.747153347,0.060362799,0.060362799,0.293993521,0.530663929,17.0679761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31702612,1.343156421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38446421,16.40638784,57.70149033,17.74954426,277.4667249,0,0.528427287,58.10074559,-0.528427287,121.8992544,0.955379602,0,322.7875396,17.74954426,334.4042613,7,18,4% +2018-07-05 03:00:00,84.64945449,294.8351926,30.45477018,135.6433588,17.80616731,62.14013955,44.64131296,17.49882659,17.26924567,0.229580922,7.921033264,0,7.921033264,0.536921642,7.384111622,1.477411691,5.145844862,7.571643881,-7.571643881,0,0,0.584675806,0.134230411,4.317311417,0.43332299,1,0.131311748,0,0.94760904,0.986371003,0.724496596,1,16.74382116,0.388997902,0.06149009,0.312029739,0.840470145,0.564966741,0.961238037,0.922476074,0.091860407,4.149963951,16.83568157,4.538961853,25.29720573,0,0.329107988,70.78535703,-0.329107988,109.214643,0.898074183,0,39.55444894,4.538961853,42.52510869,7,19,8% +2018-07-05 04:00:00,95.11867356,304.0637104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660134034,5.306912881,-6.551803624,6.551803624,1,0.349421903,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116087746,83.33363144,-0.116087746,96.66636856,0.61929132,0,0,0,0,7,20,0% +2018-07-05 05:00:00,104.2869716,314.5827293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820151021,5.490504395,-1.685448895,1.685448895,1,0.818382426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089638684,95.14282121,0.089638684,84.85717879,0,0.492205111,0,0,0,7,21,0% +2018-07-05 06:00:00,111.8025671,326.8089022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951322909,5.703891369,-0.570465571,0.570465571,1,0.627709048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276544745,106.0540921,0.276544745,73.94590793,0,0.869197432,0,0,0,7,22,0% +2018-07-05 07:00:00,117.040585,340.8828009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042743567,5.949527239,0.030185402,-0.030185402,1,0.524991682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431898011,115.5880731,0.431898011,64.4119269,0,0.934231928,0,0,0,7,23,0% +2018-07-06 08:00:00,119.3896582,356.3650557,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083742629,6.219743561,0.500248024,-0.500248024,1,0.444606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545115081,123.0325282,0.545115081,56.9674718,0,0.958276249,0,0,0,7,0,0% +2018-07-06 09:00:00,118.5107304,12.15343144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068402445,0.212117394,0.979731376,-0.979731376,1,0.362609757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608482477,127.4798569,0.608482477,52.52014314,0,0.967828365,0,0,0,7,1,0% +2018-07-06 10:00:00,114.5360843,26.97550821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999031783,0.470811436,1.601495786,-1.601495786,1,0.25628178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617682144,128.1470692,0.617682144,51.85293081,0,0.969052217,0,0,0,7,2,0% +2018-07-06 11:00:00,107.9870817,40.06505869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884730125,0.699267189,2.669145295,-2.669145295,1,0.073702961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572085784,124.8958023,0.572085784,55.10419773,0,0.96260052,0,0,0,7,3,0% +2018-07-06 12:00:00,99.50799013,51.33191246,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73674206,0.895910884,5.656525712,-5.656525712,1,0,#DIV/0!,0,0,0.304187694,1,0.174979002,0,0.942191117,0.98095308,0.724496596,1,0,0,0.045482814,0.312029739,0.879128569,0.603625165,0.961238037,0.922476074,0,0,0,0,0,0,-0.474798,118.3461987,0.474798,61.65380134,0,0.944692059,0,0,0,7,4,0% +2018-07-06 13:00:00,89.23172513,61.10018144,0.366686761,2.28993114,0.335982164,0.328615301,0,0.328615301,0.325851062,0.00276424,0.843889204,0.744850652,0.099038552,0.010131102,0.08890745,1.557387401,1.06639934,-73.67488962,73.67488962,0,0,0.916264779,0.002532775,0.081462765,1,0.917555024,0,0.013572312,0.961238037,1,0.686729131,0.962232535,0.313220435,0.007187439,0.115824807,0.269128181,0.724496596,0.448993192,0.967838677,0.929076714,0.001834987,0.078582482,0.315055422,0.085769922,0,0.061409194,-0.325272074,108.9820593,0.325272074,71.01794066,0,0.896282531,0.315055422,0.14080991,0.407212692,7,5,29% +2018-07-06 14:00:00,78.81938237,69.8457749,117.9528212,377.1091737,44.83041098,44.36778687,0,44.36778687,43.47860868,0.88917819,87.76879913,57.81796971,29.95082941,1.351802298,28.59902712,1.375657737,1.219038741,-5.059332755,5.059332755,0.604649453,0.604649453,0.380070697,0.671250051,21.58970904,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.79329245,0.979376163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.486318377,20.75284953,42.27961083,21.7322257,0,57.81796971,-0.153318916,98.81931189,0.153318916,81.18068811,0,0.72388238,42.27961083,63.58563521,83.89513736,7,6,98% +2018-07-06 15:00:00,67.48930687,78.09624627,321.4398268,640.7929142,76.10851119,106.3251766,30.0884686,76.23670796,73.81355877,2.423149191,80.23175994,0,80.23175994,2.294952423,77.93680752,1.177910615,1.363036631,-2.3888897,2.3888897,0.938677888,0.938677888,0.236773744,2.309739399,74.28915874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.95240032,1.662685218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673398332,71.4095651,72.62579865,73.07225032,30.0884686,0,0.046955058,87.30868376,-0.046955058,92.69131624,0,0,72.62579865,73.07225032,120.450125,7,7,66% +2018-07-06 16:00:00,55.78269699,86.47692038,526.4540919,766.5618051,95.39099578,293.6539859,197.1707472,96.48323862,92.5146053,3.96863332,130.5212801,0,130.5212801,2.876390478,127.6448897,0.973591728,1.509306988,-1.410112418,1.410112418,0.771297115,0.771297115,0.181195278,3.225455131,103.7417244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92855758,2.08393511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.336831263,99.72049154,91.26538884,101.8044267,197.1707472,0,0.257214416,75.09516057,-0.257214416,104.9048394,0.855609652,0,259.9665832,101.8044267,326.5955443,7,8,26% +2018-07-06 17:00:00,43.96548903,95.92728498,709.2074431,833.8863654,109.0109909,497.0017823,385.9315697,111.0702126,105.7239073,5.346305276,175.2426391,0,175.2426391,3.287083583,171.9555555,0.767342541,1.674246965,-0.867445611,0.867445611,0.678495626,0.678495626,0.153708188,3.891647681,125.1687669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6258411,2.381480866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.819485497,120.3169797,104.4453266,122.6984606,385.9315697,0,0.462810745,62.43137103,-0.462810745,117.568629,0.941964479,0,467.9791565,122.6984606,548.282845,7,9,17% +2018-07-06 18:00:00,32.40096832,108.341173,854.7313933,871.8012805,118.6531216,687.8905385,566.37192,121.5186184,115.0752922,6.443326283,210.8173514,0,210.8173514,3.577829398,207.239522,0.565503578,1.890910184,-0.497770051,0.497770051,0.615277382,0.615277382,0.138819192,4.308550898,138.5778074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6147479,2.59212522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121530459,133.2062596,113.7362784,135.7983848,566.37192,0,0.649657132,49.48424388,-0.649657132,130.5157561,0.973036326,0,664.8367304,135.7983848,753.7140572,7,10,13% +2018-07-06 19:00:00,21.95251302,128.625523,952.1849305,892.1396661,124.7307327,846.3124979,718.1648847,128.1476132,120.9696409,7.177972211,234.6293522,0,234.6293522,3.7610918,230.8682604,0.383143631,2.244938878,-0.209846146,0.209846146,0.566039494,0.566039494,0.130994231,4.471057083,143.804565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2806202,2.724898206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239265637,138.2304177,119.5198858,140.9553159,718.1648847,0,0.804991541,36.39056159,-0.804991541,143.6094384,0.987887546,0,828.9860314,140.9553159,921.2384666,7,11,11% +2018-07-06 20:00:00,15.50689252,168.0010435,994.53909,900.0008369,127.2998152,957.3518127,826.3933009,130.9585118,123.4612561,7.497255756,244.9760759,0,244.9760759,3.838559114,241.1375167,0.270646331,2.932171356,0.038619151,-0.038619151,0.523549426,0.523549426,0.127998805,4.38240487,140.953205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6756554,2.781023011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.17503741,135.4895821,121.8506928,138.2706051,826.3933009,0,0.918213925,23.33364897,-0.918213925,156.666351,0.995546459,0,944.5636169,138.2706051,1035.058963,7,12,10% +2018-07-06 21:00:00,18.16522092,216.3303263,978.7730641,897.1370136,126.3480434,1010.546536,880.6299474,129.9165885,122.5381837,7.378404793,241.1247209,0,241.1247209,3.809859682,237.3148612,0.317042914,3.775676466,0.273069435,-0.273069435,0.483456066,0.483456066,0.12908819,4.059124531,130.5553981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7883631,2.760230371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940821905,125.4948145,120.729185,128.2550449,880.6299474,0,0.981600284,11.00807438,-0.981600284,168.9919256,0.999062769,0,1000.533779,128.2550449,1084.474141,7,13,8% +2018-07-06 22:00:00,27.36522606,243.7921541,905.999134,882.9211772,121.8816697,999.8586765,874.8223847,125.0362918,118.2064877,6.829804168,223.3451614,0,223.3451614,3.675182037,219.6699793,0.477613295,4.25497578,0.514546007,-0.514546007,0.44216114,0.44216114,0.134527358,3.532413837,113.6145716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6245722,2.662656875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5592218,109.2106477,116.183794,111.8733046,874.8223847,0,0.990827276,7.766392434,-0.990827276,172.2336076,0.999537118,0,990.601239,111.8733046,1063.820079,7,14,7% +2018-07-06 23:00:00,38.59006656,258.8776284,781.4162151,854.0135945,113.8947448,923.6227715,807.271728,116.3510435,110.460398,5.890645501,192.897755,0,192.897755,3.434346782,189.4634083,0.67352372,4.518266976,0.788445747,-0.788445747,0.395321526,0.395321526,0.145754263,2.847867861,91.5972199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1787361,2.488172553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.063270571,88.04673184,108.2420067,90.53490439,807.271728,0,0.945268007,19.04404774,-0.945268007,160.9559523,0.997104948,0,913.1766414,90.53490439,972.4299256,7,15,6% +2018-07-06 00:00:00,50.35478223,269.3478331,614.1197402,802.3495493,102.1951492,784.1671824,680.4241,103.7430824,99.11358844,4.629494007,151.9820018,0,151.9820018,3.08156081,148.900441,0.878856744,4.701006521,1.138694515,-1.138694515,0.335425459,0.335425459,0.166409159,2.064831868,66.41209067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.27175117,2.232580317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495963659,63.83782766,96.76771483,66.07040798,680.4241,0,0.848039487,32.00093085,-0.848039487,147.9990692,0.991040481,0,771.0955424,66.07040798,814.337303,7,16,6% +2018-07-06 01:00:00,62.15168344,278.0666742,417.0429037,708.9405475,85.87378542,586.8038356,500.3756161,86.42821951,83.28437395,3.143845568,103.7062918,0,103.7062918,2.589411471,101.1168804,1.084751512,4.853179006,1.670206318,-1.670206318,0.244531588,0.244531588,0.205911154,1.257824191,40.45594972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05610811,1.876019796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911289344,38.88779769,80.96739746,40.76381748,500.3756161,0,0.705807586,45.10517536,-0.705807586,134.8948246,0.979159163,0,570.914767,40.76381748,597.5938702,7,17,5% +2018-07-06 02:00:00,73.69596286,286.2849973,208.5455256,523.9043308,61.46759045,338.0244455,276.8382255,61.18622007,59.61411581,1.572104262,52.41775178,0,52.41775178,1.853474643,50.56427714,1.286237197,4.996615802,2.755868959,-2.755868959,0.058872341,0.058872341,0.29474423,0.528642522,17.00296069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30335565,1.34283607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382999707,16.34389256,57.68635535,17.68672863,276.8382255,0,0.528413699,58.1016626,-0.528413699,121.8983374,0.955377169,0,322.1712756,17.68672863,333.7468857,7,18,4% +2018-07-06 03:00:00,84.68370938,294.7307874,30.01414559,133.7197318,17.6245186,61.31302194,43.9936883,17.31933364,17.09307433,0.226259308,7.808721354,0,7.808721354,0.531444263,7.277277091,1.478009551,5.144022647,7.634509018,-7.634509018,0,0,0.587207074,0.132861066,4.273268584,0.43675434,1,0.130242718,0,0.947736253,0.986498216,0.724496596,1,16.57291089,0.38502956,0.061893076,0.312029739,0.839523159,0.564019754,0.961238037,0.922476074,0.09092308,4.107628304,16.66383397,4.492657864,24.77925399,0,0.328999226,70.79195614,-0.328999226,109.2080439,0.898023959,0,38.91619774,4.492657864,41.85655246,7,19,8% +2018-07-06 04:00:00,95.16429364,303.9632473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660930254,5.30515947,-6.509314315,6.509314315,1,0.356688003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115811514,83.34956587,-0.115811514,96.65043413,0.618263998,0,0,0,0,7,20,0% +2018-07-06 05:00:00,104.3456564,314.48646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821175264,5.488824181,-1.684190749,1.684190749,1,0.81816727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090105791,95.16969317,0.090105791,84.83030683,0,0.495096706,0,0,0,7,21,0% +2018-07-06 06:00:00,111.8762758,326.7202983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952609367,5.702344938,-0.572093401,0.572093401,1,0.627987423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277226425,106.0947386,0.277226425,73.9052614,0,0.869642013,0,0,0,7,22,0% +2018-07-06 07:00:00,117.1296719,340.8090373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044298426,5.948239821,0.027557493,-0.027557493,1,0.525441081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432803298,115.6455965,0.432803298,64.35440352,0,0.934474078,0,0,0,7,23,0% +2018-07-07 08:00:00,119.4916409,356.314982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085522562,6.218869609,0.496689371,-0.496689371,1,0.445214805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546237703,123.1092846,0.546237703,56.8907154,0,0.958464759,0,0,0,7,0,0% +2018-07-07 09:00:00,118.6203324,12.13236859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07031536,0.211749778,0.974708391,-0.974708391,1,0.363468738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609801272,127.575135,0.609801272,52.424865,0,0.968006075,0,0,0,7,1,0% +2018-07-07 10:00:00,114.6473254,26.98183751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000973306,0.470921903,1.593464065,-1.593464065,1,0.257655286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619162503,128.2550018,0.619162503,51.74499821,0,0.969245756,0,0,0,7,2,0% +2018-07-07 11:00:00,108.0955711,40.09270135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886623623,0.699749645,2.652774007,-2.652774007,1,0.076502617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573682034,125.0073864,0.573682034,54.99261364,0,0.962843706,0,0,0,7,3,0% +2018-07-07 12:00:00,99.61157021,51.37475911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738549873,0.896658699,5.595839602,-5.595839602,1,0,#DIV/0!,0,0,0.29912662,1,0.176837515,0,0.941951009,0.980712972,0.724496596,1,0,0,0.044820215,0.312029739,0.880772543,0.605269139,0.961238037,0.922476074,0,0,0,0,0,0,-0.476456543,118.4542278,0.476456543,61.5457722,0,0.945058635,0,0,0,7,4,0% +2018-07-07 13:00:00,89.31711244,61.15427913,0.289448507,1.878836293,0.267055871,0.261185136,0,0.261185136,0.259003151,0.002181985,0.692102335,0.613869474,0.078232862,0.00805272,0.070180142,1.55887769,1.067343523,-82.90035641,82.90035641,0,0,0.922636891,0.00201318,0.064750788,1,0.927044307,0,0.012062089,0.961238037,1,0.690860426,0.96636383,0.24896368,0.005725161,0.115824807,0.273818548,0.724496596,0.448993192,0.967135647,0.928373684,0.001458542,0.062439686,0.250422222,0.068164847,0,0.044785273,-0.326728559,109.0703321,0.326728559,70.92966788,0,0.89696777,0.250422222,0.108335793,0.321325833,7,5,28% +2018-07-07 14:00:00,78.91204027,69.90953152,116.3039674,373.3267381,44.5073553,44.04204276,0,44.04204276,43.16529433,0.876748433,87.37617795,57.83487356,29.54130439,1.342060977,28.19924341,1.377274922,1.220151504,-5.10271192,5.10271192,0.597231179,0.597231179,0.382681316,0.65875658,21.18787607,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.49212278,0.972318609,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4772669,20.3665924,41.96938968,21.33891101,0,57.83487356,-0.154917577,98.912016,0.154917577,81.087984,0,0.727247727,41.96938968,63.39919134,83.46289243,7,6,99% +2018-07-07 15:00:00,67.57866714,78.17008214,319.7136954,638.9508696,76.00851468,105.1712133,29.04449893,76.12671441,73.71657752,2.410136883,79.81022412,0,79.81022412,2.291937159,77.51828696,1.179470246,1.36432531,-2.399021824,2.399021824,0.940410584,0.940410584,0.237739314,2.300662033,73.99719944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85917826,1.66050067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666821811,71.12892273,72.52600007,72.7894234,29.04449893,0,0.045456545,87.39463405,-0.045456545,92.60536595,0,0,72.52600007,72.7894234,120.1652219,7,7,66% +2018-07-07 16:00:00,55.8700714,86.56304516,524.8787328,765.4980021,95.37965302,292.3275002,195.8671381,96.46036217,92.50360457,3.956757598,130.1389741,0,130.1389741,2.876048452,127.2629256,0.975116699,1.510810149,-1.414116704,1.414116704,0.771981889,0.771981889,0.181717504,3.218492987,103.517798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91798326,2.083687313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331787213,99.50524488,91.24977047,101.5889322,195.8671381,0,0.255868908,75.17492186,-0.255868908,104.8250781,0.854587434,0,258.6353653,101.5889322,325.1232897,7,8,26% +2018-07-07 17:00:00,44.05341109,96.02947028,707.8397978,833.1720881,109.0457435,495.7318239,384.6382165,111.0936074,105.757612,5.335995388,174.9120856,0,174.9120856,3.288131503,171.6239541,0.76887707,1.676030435,-0.869357719,0.869357719,0.678822615,0.678822615,0.15405427,3.886212714,124.9939597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6582394,2.382240081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.815547883,120.1489484,104.4737872,122.5311885,384.6382165,0,0.461655187,62.50603461,-0.461655187,117.4939654,0.941694058,0,466.6853101,122.5311885,546.8795224,7,9,17% +2018-07-07 18:00:00,32.49379394,108.4621116,853.5856256,871.2656648,118.7169151,686.774496,565.2026449,121.5718511,115.1371621,6.434689002,210.5414704,0,210.5414704,3.57975301,206.9617174,0.567123691,1.893020961,-0.498719299,0.498719299,0.615439713,0.615439713,0.139080265,4.304320862,138.4417549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6742197,2.59351887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118465812,133.0754807,113.7926855,135.6689996,565.2026449,0,0.648714471,49.55525152,-0.648714471,130.4447485,0.972924488,0,663.6921794,135.6689996,752.4848263,7,10,13% +2018-07-07 19:00:00,22.05724775,128.7422414,951.2515509,891.701497,124.8144896,845.3902828,717.1684745,128.2218083,121.0508723,7.170936001,234.4055691,0,234.4055691,3.763617379,230.6419517,0.384971597,2.246975999,-0.210248101,0.210248101,0.566108232,0.566108232,0.131210813,4.467776554,143.6990518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3587028,2.726727979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.236888904,138.1289945,119.5955917,140.8557225,717.1684745,0,0.804269677,36.4602172,-0.804269677,143.5397828,0.987831798,0,828.0374151,140.8557225,920.2246684,7,11,11% +2018-07-07 20:00:00,15.61926948,167.9356384,993.7906878,899.614447,127.3971398,956.6281844,825.5809244,131.04726,123.555646,7.491613984,244.7975518,0,244.7975518,3.841493812,240.956058,0.272607679,2.931029822,0.038597275,-0.038597275,0.523553167,0.523553167,0.128193131,4.379825116,140.8702313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7663866,2.78314919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173168387,135.4098246,121.939555,138.1929738,825.5809244,0,0.917705276,23.40711856,-0.917705276,156.5928814,0.995516277,0,943.8188033,138.1929738,1034.263341,7,12,10% +2018-07-07 21:00:00,18.23939685,216.0532898,978.1679835,896.7711643,126.4532354,1009.99975,879.985703,130.0140472,122.6402038,7.37384344,240.981184,0,240.981184,3.81303161,237.1681524,0.318337529,3.770841267,0.273376777,-0.273376777,0.483403507,0.483403507,0.129275582,4.056991471,130.4867915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8864287,2.762528422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93927651,125.4288673,120.8257052,128.1913957,879.985703,0,0.981282336,11.10307324,-0.981282336,168.8969268,0.999046265,0,999.9721352,128.1913957,1083.87084,7,13,8% +2018-07-07 22:00:00,27.40609572,243.5602864,905.485322,882.5481684,121.9886947,999.4450361,874.3088198,125.1362163,118.3102855,6.825930836,223.2238089,0,223.2238089,3.678409237,219.5453997,0.478326605,4.250928926,0.515214321,-0.515214321,0.442046852,0.442046852,0.134721891,3.530476239,113.5522518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7243466,2.66499497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557818017,109.1507436,116.2821646,111.8157386,874.3088198,0,0.990664137,7.835258252,-0.990664137,172.1647417,0.999528808,0,990.1790169,111.8157386,1063.360182,7,14,7% +2018-07-07 23:00:00,38.61787756,258.6996868,780.9356473,853.5995578,113.9963155,923.2792346,806.8333058,116.4459288,110.558906,5.887022778,192.7842986,0,192.7842986,3.437409514,189.3468891,0.674009113,4.515161309,0.789610074,-0.789610074,0.395122414,0.395122414,0.14597402,2.845897645,91.53385096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2734258,2.490391492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061843156,87.9858192,108.3352689,90.4762107,806.8333058,0,0.945212891,19.05372338,-0.945212891,160.9462766,0.997101864,0,912.8302621,90.4762107,972.0451325,7,15,6% +2018-07-07 00:00:00,50.37937755,269.2023771,613.6139976,801.8378805,102.2809557,783.8114553,679.9889663,103.822489,99.1968075,4.625681506,151.8619661,0,151.8619661,3.084148191,148.7778179,0.879286013,4.698467834,1.140702238,-1.140702238,0.335082118,0.335082118,0.166686151,2.062659478,66.34221915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.35174451,2.234454865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49438977,63.77066449,96.84613428,66.00511936,679.9889663,0,0.848037967,32.00109513,-0.848037967,147.9989049,0.991040376,0,770.7426548,66.00511936,813.9416853,7,16,6% +2018-07-07 01:00:00,62.17821788,277.9402241,416.4620982,708.2077027,85.92534711,586.3278767,499.8540287,86.47384807,83.33438086,3.139467211,103.5670236,0,103.5670236,2.590966246,100.9760573,1.085214625,4.850972034,1.674044253,-1.674044253,0.243875262,0.243875262,0.20632213,1.255411807,40.37835916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.10417666,1.877146225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909541581,38.81321469,81.01371824,40.69036091,499.8540287,0,0.705801457,45.10567101,-0.705801457,134.894329,0.979158548,0,570.4500632,40.69036091,597.0810906,7,17,5% +2018-07-07 02:00:00,73.72781397,286.1697232,207.8758856,522.6139489,61.4390689,337.2743161,276.1208056,61.15351052,59.58645428,1.567056233,52.25452978,0,52.25452978,1.852614613,50.40191517,1.286793104,4.99460389,2.765639053,-2.765639053,0.057201557,0.057201557,0.295556499,0.5262986,16.9275721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.27676634,1.342212981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.381301544,16.27142618,57.65806788,17.61363916,276.1208056,0,0.528345648,58.10625506,-0.528345648,121.8937449,0.955364982,0,321.4542163,17.61363916,332.9819909,7,18,4% +2018-07-07 03:00:00,84.72297313,294.6221362,29.5177585,131.5804396,17.41612947,60.38075033,43.26726409,17.11348624,16.89096891,0.222517332,7.682082854,0,7.682082854,0.525160562,7.156922292,1.478694833,5.142126327,7.706075309,-7.706075309,0,0,0.590022087,0.131290141,4.222742227,0.440610388,1,0.1290466,0,0.947878279,0.986640242,0.724496596,1,16.37683008,0.38047704,0.062344632,0.312029739,0.838463573,0.562960169,0.961238037,0.922476074,0.089848385,4.059060448,16.46667847,4.439537487,24.20325806,0,0.328827478,70.80237638,-0.328827478,109.1976236,0.897944581,0,38.19986288,4.439537487,41.10545137,7,19,8% +2018-07-07 04:00:00,95.21541888,303.8590536,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661822558,5.303340948,-6.461256456,6.461256456,1,0.364906381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115460756,83.36979853,-0.115460756,96.63020147,0.616952429,0,0,0,0,7,20,0% +2018-07-07 05:00:00,104.410263,314.3871069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822302862,5.487090142,-1.682402081,1.682402081,1,0.81786139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09065526,95.20130482,0.09065526,84.79869518,0,0.498460022,0,0,0,7,21,0% +2018-07-07 06:00:00,111.9563041,326.6295552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954006125,5.700761172,-0.573613241,0.573613241,1,0.628247331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277996184,106.1406471,0.277996184,73.85935294,0,0.870141416,0,0,0,7,22,0% +2018-07-07 07:00:00,117.2253388,340.7345153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045968128,5.946939167,0.024916664,-0.024916664,1,0.525892689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433799866,115.7089521,0.433799866,64.29104793,0,0.934739476,0,0,0,7,23,0% +2018-07-08 08:00:00,119.6001774,356.2659091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087416882,6.218013127,0.493053827,-0.493053827,1,0.445836519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547452073,123.1923895,0.547452073,56.80761051,0,0.958667804,0,0,0,7,0,0% +2018-07-08 09:00:00,118.7360955,12.11407922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072335807,0.211430568,0.969548996,-0.969548996,1,0.364351046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611209511,127.6770099,0.611209511,52.32299007,0,0.96819499,0,0,0,7,1,0% +2018-07-08 10:00:00,114.7640478,26.99230455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003010497,0.471104587,1.585207743,-1.585207743,1,0.2590672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620727395,128.3692722,0.620727395,51.63072781,0,0.969449342,0,0,0,7,2,0% +2018-07-08 11:00:00,108.208753,40.12531789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888599019,0.700318911,2.635993865,-2.635993865,1,0.07937219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575355632,125.1245411,0.575355632,54.8754589,0,0.963097227,0,0,0,7,3,0% +2018-07-08 12:00:00,99.71909327,51.42304551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740426505,0.897501456,5.534318424,-5.534318424,1,0,#DIV/0!,0,0,0.293920194,1,0.178761904,0,0.94170158,0.980463543,0.724496596,1,0,0,0.044135657,0.312029739,0.88247465,0.606971245,0.961238037,0.922476074,0,0,0,0,0,0,-0.478183472,118.5668288,0.478183472,61.43317124,0,0.945437624,0,0,0,7,4,0% +2018-07-08 13:00:00,89.40486495,61.21412973,0.221999245,1.518518354,0.206226578,0.20168161,0,0.20168161,0.200008086,0.001673524,0.558465323,0.498420544,0.060044779,0.006218492,0.053826287,1.560409261,1.068388113,-95.14048796,95.14048796,0,0,0.928951709,0.001554623,0.050002022,1,0.936709403,0,0.010510385,0.961238037,1,0.695123783,0.970627188,0.19225538,0.004431052,0.115824807,0.278659624,0.724496596,0.448993192,0.966405198,0.927643235,0.001126319,0.048199545,0.193381699,0.052630597,0,0.031545334,-0.328228198,109.1612696,0.328228198,70.83873042,0,0.897666958,0.193381699,0.080947801,0.246360416,7,5,27% +2018-07-08 14:00:00,79.00748239,69.97937429,114.6123711,369.4257804,44.16996752,43.70207649,0,43.70207649,42.83808003,0.863996466,86.95954983,57.83856603,29.12098381,1.331887491,27.78909632,1.378940701,1.22137049,-5.148143001,5.148143001,0.589462007,0.589462007,0.385385688,0.645990695,20.77728134,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.17759195,0.964947953,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.46801806,19.97191312,41.64561001,20.93686107,0,57.83856603,-0.156563427,99.00748113,0.156563427,80.99251887,0,0.730640612,41.64561001,63.19606638,83.00617153,7,6,99% +2018-07-08 15:00:00,67.67049289,78.25049168,317.9427174,637.0619548,75.90211978,103.9904384,27.9802611,76.01017732,73.61339082,2.396786504,79.37762182,0,79.37762182,2.28872896,77.08889286,1.181072907,1.365728721,-2.409481185,2.409481185,0.94219924,0.94219924,0.238728914,2.29132299,73.69682373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.75999127,1.658176341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660055706,70.84019017,72.42004698,72.49836651,27.9802611,0,0.043920785,87.48271463,-0.043920785,92.51728537,0,0,72.42004698,72.49836651,119.8687779,7,7,66% +2018-07-08 16:00:00,55.95974752,86.65652311,523.263749,764.4126481,95.36450912,290.9730358,194.5395353,96.43350048,92.48891731,3.944583168,129.7469459,0,129.7469459,2.875591808,126.8713541,0.976681843,1.512441647,-1.418202917,1.418202917,0.772680672,0.772680672,0.182249409,3.211322572,103.2871728,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90386531,2.083356476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.326592272,99.28355918,91.23045758,101.3669157,194.5395353,0,0.254495443,75.25631017,-0.254495443,104.7436898,0.853532828,0,257.2763373,101.3669157,323.6189562,7,8,26% +2018-07-08 17:00:00,44.1437043,96.14027101,706.4367331,832.44559,109.0777254,494.438084,383.3240359,111.114048,105.7886295,5.325418494,174.5728607,0,174.5728607,3.289095875,171.2837648,0.770452984,1.677964273,-0.871278202,0.871278202,0.679151037,0.679151037,0.154405512,3.880589244,124.8130895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6880546,2.382938765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.811473697,119.9750892,104.4995283,122.3580279,383.3240359,0,0.460479388,62.58195413,-0.460479388,117.4180459,0.941417507,0,465.3674865,122.3580279,545.4483686,7,9,17% +2018-07-08 18:00:00,32.58944889,108.5936655,852.4062225,870.7215858,118.7783588,685.638681,564.0161298,121.6225512,115.196753,6.425798163,210.2573632,0,210.2573632,3.581605763,206.6757575,0.568793185,1.895317009,-0.499644528,0.499644528,0.615597936,0.615597936,0.139344781,4.299902249,138.2996372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7315007,2.594861183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115264542,132.9388717,113.8467653,135.5337329,564.0161298,0,0.647757146,49.627287,-0.647757146,130.372713,0.972810578,0,662.5276223,135.5337329,751.2317398,7,10,13% +2018-07-08 19:00:00,22.16600829,128.8720316,950.283512,891.2561976,124.8959758,844.4501583,716.1566184,128.2935399,121.1299013,7.163638515,234.173314,0,234.173314,3.766074488,230.4072395,0.386869827,2.249241265,-0.210606216,0.210606216,0.566169474,0.566169474,0.131430225,4.464292967,143.5870077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4346686,2.728508147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234365058,138.0212934,119.6690336,140.7498016,716.1566184,0,0.8035362,36.5308761,-0.8035362,143.4691239,0.98777505,0,827.0706731,140.7498016,919.1886032,7,11,11% +2018-07-08 20:00:00,15.73780291,167.8803632,993.0037887,899.2208596,127.4920226,955.885529,824.7521793,131.1333497,123.6476677,7.485682006,244.6096201,0,244.6096201,3.844354877,240.7652652,0.274676478,2.930065088,0.038636121,-0.038636121,0.523546524,0.523546524,0.128390268,4.377016854,140.7799079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8548414,2.785222022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171133811,135.3230023,122.0259752,138.1082243,824.7521793,0,0.917185328,23.48199592,-0.917185328,156.5180041,0.995485391,0,943.0547205,138.1082243,1033.443791,7,12,10% +2018-07-08 21:00:00,18.32026585,215.7718782,977.5180032,896.3968569,126.5555971,1009.429495,879.3210727,130.1084225,122.7394789,7.368943614,240.8266754,0,240.8266754,3.816118192,237.0105572,0.319748959,3.765929707,0.273763945,-0.273763945,0.483337298,0.483337298,0.129466257,4.054596777,130.4097699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9818557,2.764764639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937541563,125.3548312,120.9193973,128.1195959,879.3210727,0,0.980950642,11.20133116,-0.980950642,168.7986688,0.999029036,0,999.3866807,128.1195959,1083.238394,7,13,8% +2018-07-08 22:00:00,27.45257794,243.3202393,904.9181081,882.1639189,122.0922816,999.0000781,873.7676743,125.2324038,118.4107489,6.821654938,223.0894049,0,223.0894049,3.681532764,219.4078721,0.479137873,4.246739313,0.515988967,-0.515988967,0.441914379,0.441914379,0.134920807,3.528240033,113.4803277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8209158,2.667257955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556197893,109.0816074,116.3771137,111.7488654,873.7676743,0,0.990482217,7.911349811,-0.990482217,172.0886502,0.999519538,0,989.7249758,111.7488654,1062.862373,7,14,7% +2018-07-08 23:00:00,38.6506484,258.5144758,780.3917435,853.1688957,114.0935665,922.8931319,806.3569848,116.5361471,110.6532245,5.882922602,192.6553553,0,192.6553553,3.440341989,189.2150133,0.674581073,4.511928767,0.790923527,-0.790923527,0.394897801,0.394897801,0.146200376,2.843592823,91.45971996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3640883,2.49251606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06017332,87.91456167,108.4242616,90.40707773,806.3569848,0,0.945131719,19.06796474,-0.945131719,160.9320353,0.997097321,0,912.4406508,90.40707773,971.6102751,7,15,6% +2018-07-08 00:00:00,50.40869465,269.0507711,613.0344566,801.298768,102.3610972,783.3983102,679.502465,103.8958451,99.27453245,4.621312681,151.7238662,0,151.7238662,3.086564753,148.6373015,0.879797693,4.69582181,1.142939538,-1.142939538,0.334699517,0.334699517,0.16697446,2.060124379,66.26068165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.42645669,2.236205657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.4925531,63.69228755,96.91900979,65.92849321,679.502465,0,0.848001385,32.00505014,-0.848001385,147.9949499,0.991037832,0,770.3316597,65.92849321,813.4805399,7,16,6% +2018-07-08 01:00:00,62.20947781,277.8084691,415.7979423,707.4230565,85.96879896,585.7749265,499.2639435,86.51098301,83.37652248,3.134460523,103.4073015,0,103.4073015,2.59227648,100.8150251,1.085760214,4.848672476,1.678299212,-1.678299212,0.243147621,0.243147621,0.206756191,1.252629275,40.28886336,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14468479,1.878095485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.907525646,38.72718793,81.05221044,40.60528341,499.2639435,0,0.705750172,45.10981882,-0.705750172,134.8901812,0.9791534,0,569.9081983,40.60528341,596.4835442,7,17,5% +2018-07-08 02:00:00,73.76454128,286.0497713,207.118332,521.2071927,61.39643616,336.4195912,275.3131387,61.10645256,59.54510708,1.561345474,52.06956662,0,52.06956662,1.851329079,50.21823754,1.287434117,4.992510333,2.776481498,-2.776481498,0.05534739,0.05534739,0.296431685,0.523632108,16.84180857,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23702183,1.341281616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.37936968,16.18898701,57.61639151,17.53026862,275.3131387,0,0.528222063,58.11459467,-0.528222063,121.8854053,0.955342841,0,320.6348275,17.53026862,332.1080377,7,18,4% +2018-07-08 03:00:00,84.76727165,294.5093203,28.96648607,129.2266697,17.18082876,59.34395453,42.46282954,16.88112499,16.66276338,0.218361607,7.541325287,0,7.541325287,0.518065378,7.023259909,1.479467988,5.140157318,7.786768111,-7.786768111,0,0,0.593127821,0.129516344,4.165690845,0.444895338,1,0.127723886,0,0.948034956,0.986796919,0.724496596,1,16.15541393,0.375336602,0.062844796,0.312029739,0.837291818,0.561788414,0.961238037,0.922476074,0.088635623,4.00422049,16.24404955,4.379557092,23.57131462,0,0.328591843,70.81667164,-0.328591843,109.1833284,0.897835541,0,37.40721357,4.379557092,40.27354609,7,19,8% +2018-07-08 04:00:00,95.27206807,303.7512061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662811273,5.301458653,-6.407904129,6.407904129,1,0.374030166,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115034673,83.39437509,-0.115034673,96.60562491,0.615348439,0,0,0,0,7,20,0% +2018-07-08 05:00:00,104.4807974,314.2847442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823533921,5.485303575,-1.6800856,1.6800856,1,0.817465248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091287644,95.2376886,0.091287644,84.7623114,0,0.502280746,0,0,0,7,21,0% +2018-07-08 06:00:00,112.0426445,326.5367464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95551305,5.699141354,-0.575021327,0.575021327,1,0.628488128,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278854271,106.1918359,0.278854271,73.80816409,0,0.870694874,0,0,0,7,22,0% +2018-07-08 07:00:00,117.3275638,340.6593102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047752292,5.94562659,0.02226788,-0.02226788,1,0.526345658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434887626,115.7781436,0.434887626,64.22185644,0,0.93502777,0,0,0,7,23,0% +2018-07-09 08:00:00,119.7152302,356.2179156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089424931,6.217175482,0.489347596,-0.489347596,1,0.446470322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548757751,123.2818312,0.548757751,56.71816883,0,0.958885114,0,0,0,7,0,0% +2018-07-09 09:00:00,118.8579655,12.09864101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074462841,0.211161121,0.9642618,-0.9642618,1,0.36525521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612706422,127.7854532,0.612706422,52.21454678,0,0.968394849,0,0,0,7,1,0% +2018-07-09 10:00:00,114.886183,27.00697707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005142159,0.471360671,1.57674111,-1.57674111,1,0.260515079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622375749,128.4898326,0.622375749,51.51016743,0,0.96966268,0,0,0,7,2,0% +2018-07-09 11:00:00,108.3265489,40.16295909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890654946,0.700975873,2.618837133,-2.618837133,1,0.082306164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577105266,125.247199,0.577105266,54.75280102,0,0.963360694,0,0,0,7,3,0% +2018-07-09 12:00:00,99.83047642,51.47680396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742370507,0.898439718,5.472108777,-5.472108777,1,0,#DIV/0!,0,0,0.288576254,1,0.180750422,0,0.941442972,0.980204935,0.724496596,1,0,0,0.043429907,0.312029739,0.884233327,0.608729923,0.961238037,0.922476074,0,0,0,0,0,0,-0.479977308,118.68392,0.479977308,61.31608003,0,0.945828409,0,0,0,7,4,0% +2018-07-09 13:00:00,89.49485892,61.27974875,0.164239757,1.207783142,0.153591625,0.15019838,0,0.15019838,0.148960271,0.001238109,0.442742383,0.398289198,0.044453185,0.004631354,0.03982183,1.561979952,1.06953338,-112.1112411,112.1112411,0,0,0.935167152,0.001157839,0.037240068,1,0.946530655,0,0.008919476,0.961238037,1,0.699514408,0.975017812,0.143186279,0.003307923,0.115824807,0.283645984,0.724496596,0.448993192,0.965647716,0.926885753,0.00083885,0.035883603,0.144025129,0.039191527,0,0.021296262,-0.3297688,109.2547432,0.3297688,70.74525678,0,0.898378622,0.144025129,0.058323634,0.182196781,7,5,27% +2018-07-09 14:00:00,79.105628,70.05530393,112.8798638,365.4071853,43.81827592,43.34792933,0,43.34792933,42.49699323,0.850936094,86.51779044,57.8274779,28.69031255,1.321282691,27.36902986,1.380653666,1.222695712,-5.195672422,5.195672422,0.581333997,0.581333997,0.388185053,0.632972117,20.3585591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.84972635,0.957264812,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.458586144,19.56942138,41.30831249,20.52668619,0,57.8274779,-0.158254901,99.10561892,0.158254901,80.89438108,0,0.734054018,41.30831249,62.97517872,82.52430746,7,6,100% +2018-07-09 15:00:00,67.76470904,78.3374614,316.1282445,635.1265065,75.78938867,102.7842889,26.89712169,75.88716721,73.50405897,2.38310824,78.93428259,0,78.93428259,2.285329701,76.64895289,1.182717289,1.367246629,-2.420264733,2.420264733,0.944043335,0.944043335,0.239742541,2.281727308,73.38819361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65489734,1.655713589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.653103667,70.54352315,72.30800101,72.19923674,26.89712169,0,0.042349235,87.5728417,-0.042349235,92.4271583,0,0,72.30800101,72.19923674,119.5609575,7,7,65% +2018-07-09 16:00:00,56.05165714,86.75732436,521.6101829,763.3059506,95.3456184,289.591858,193.1891439,96.40271411,92.47059622,3.932117888,129.34545,0,129.34545,2.875022183,126.4704278,0.978285968,1.51420096,-1.422367814,1.422367814,0.773392911,0.773392911,0.182790945,3.203947203,103.0499555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88625438,2.082943784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.321248842,99.05553697,91.20750322,101.1384807,193.1891439,0,0.253095294,75.33924837,-0.253095294,104.6607516,0.852445951,0,255.8908067,101.1384807,322.0839196,7,8,26% +2018-07-09 17:00:00,44.23630881,96.25963323,704.9989467,831.7069616,109.1069707,493.1215777,381.9900049,111.1315728,105.816993,5.314579853,174.2251345,0,174.2251345,3.289977728,170.9351568,0.772069238,1.680047537,-0.873204729,0.873204729,0.679480493,0.679480493,0.154761892,3.874778848,124.6262072,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7153186,2.383577665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.807264085,119.7954508,104.5225827,122.1790284,381.9900049,0,0.459284366,62.65906139,-0.459284366,117.3409386,0.941134984,0,464.0267397,122.1790284,543.9904702,7,9,17% +2018-07-09 18:00:00,32.68788204,108.7357353,851.1935117,870.1690502,118.8374648,684.4837778,562.8130448,121.670733,115.2540768,6.416656236,209.9651097,0,209.9651097,3.583388027,206.3817217,0.570511167,1.897796596,-0.500544027,0.500544027,0.61575176,0.61575176,0.139612747,4.295295004,138.1514523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7866025,2.596152427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.111926609,132.7964308,113.8985291,135.3925832,562.8130448,0,0.646785868,49.70029382,-0.646785868,130.2997062,0.972694662,0,661.3437737,135.3925832,749.9555115,7,10,13% +2018-07-09 19:00:00,22.27874496,129.0147124,949.2807713,890.8037104,124.9751821,843.4924264,715.1296276,128.3627987,121.2067193,7.156079432,233.9325762,0,233.9325762,3.768462851,230.1641134,0.388837453,2.251731514,-0.210919158,0.210919158,0.56622299,0.56622299,0.131652495,4.460604829,143.4683845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5085089,2.730238507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.231693014,137.9072683,119.7402019,140.6375068,715.1296276,0,0.802791478,36.60249816,-0.802791478,143.3975018,0.987717326,0,826.0861254,140.6375068,918.1305609,7,11,11% +2018-07-09 20:00:00,15.86242843,167.8352925,992.1780055,898.8199608,127.584434,955.1237463,823.9069969,131.2167495,123.7372926,7.479456903,244.4121859,0,244.4121859,3.847141421,240.5650445,0.276851604,2.929278455,0.0387368,-0.0387368,0.523529307,0.523529307,0.128590266,4.373977422,140.6821494,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9409922,2.787240863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168931753,135.2290331,122.1099239,138.0162739,823.9069969,0,0.916654094,23.55826671,-0.916654094,156.4417333,0.995453797,0,942.2712726,138.0162739,1032.600164,7,12,10% +2018-07-09 21:00:00,18.40784876,215.4867087,976.8224417,896.0139181,126.6550801,1008.835279,878.6356171,130.1996623,122.8359621,7.363700177,240.6610282,0,240.6610282,3.819117971,236.8419102,0.321277569,3.760952562,0.274231951,-0.274231951,0.483257264,0.483257264,0.129660289,4.051936968,130.3242213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0745991,2.766937969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93561454,125.2725987,121.0102136,128.0395366,878.6356171,0,0.980604876,11.30286012,-0.980604876,168.6971399,0.999011063,0,998.7769156,128.0395366,1082.576232,7,13,8% +2018-07-09 22:00:00,27.50474268,243.0723606,904.2965885,881.7681808,122.1923649,998.5229592,873.1981752,125.3247839,118.5078143,6.81696966,222.9417281,0,222.9417281,3.684550644,219.2571775,0.48004832,4.242413014,0.516870976,-0.516870976,0.441763547,0.441763547,0.135124213,3.525701318,113.3986739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9142187,2.669444399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554358603,109.0031187,116.4685773,111.6725631,873.1981752,0,0.990280886,7.994721593,-0.990280886,172.0052784,0.999509275,0,989.2382523,111.6725631,1062.325711,7,14,7% +2018-07-09 23:00:00,38.68845039,258.322195,779.7834664,852.7212487,114.1864152,922.4633285,805.8417179,116.6216106,110.7432735,5.878337152,192.5106712,0,192.5106712,3.44314172,189.0675294,0.675240842,4.508572834,0.792387363,-0.792387363,0.39464747,0.39464747,0.146433491,2.840949522,91.37470234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4506468,2.494544456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058258258,87.83283949,108.508905,90.32738395,805.8417179,0,0.945023616,19.08691506,-0.945023616,160.9130849,0.997091269,0,912.0066464,90.32738395,971.1241126,7,15,6% +2018-07-09 00:00:00,50.4427967,268.8931535,612.38005,800.7316566,102.43547,782.9263925,678.9633504,103.9630421,99.34666261,4.616379487,151.5674404,0,151.5674404,3.088807366,148.478633,0.880392886,4.693070865,1.145408414,-1.145408414,0.334277315,0.334277315,0.167274342,2.057223222,66.16737048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.49579093,2.237830422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490451221,63.60259331,96.98624215,65.84042373,678.9633504,0,0.847928697,32.01290729,-0.847928697,147.9870927,0.991032778,0,769.8611772,65.84042373,812.9524178,7,16,6% +2018-07-09 01:00:00,62.24551629,277.6715188,415.0494615,706.5856359,86.00399582,585.1434708,498.6039946,86.53947618,83.41065802,3.128818158,103.226885,0,103.226885,2.593337795,100.6335472,1.086389204,4.846282242,1.682975833,-1.682975833,0.242347872,0.242347872,0.207213848,1.249474397,40.18739165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.17749717,1.878864404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.905239947,38.62964945,81.08273712,40.50851386,498.6039946,0,0.705652605,45.11770884,-0.705652605,134.8822912,0.979143605,0,569.2876497,40.50851386,595.7996618,7,17,5% +2018-07-09 02:00:00,73.80618673,285.9252359,206.2721962,519.6820147,61.33942348,335.458626,274.4138455,61.04478049,59.48981354,1.554966945,51.86269204,0,51.86269204,1.849609936,50.0130821,1.288160967,4.99033678,2.78841618,-2.78841618,0.053306439,0.053306439,0.297371263,0.520643205,16.74567516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18387158,1.340036103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.377204229,16.09657992,57.56107581,17.43661602,274.4138455,0,0.528041837,58.12675516,-0.528041837,121.8732448,0.955310533,0,319.7115128,17.43661602,331.1234293,7,18,4% +2018-07-09 03:00:00,84.8166302,294.3924256,28.36137757,126.65999,16.91846833,58.20349995,41.58138581,16.62211414,16.40831409,0.213800044,7.386698592,0,7.386698592,0.510154243,6.876544349,1.480329457,5.13811712,7.877079349,-7.877079349,0,0,0.596531966,0.127538561,4.102078523,0.449613859,1,0.126275128,0,0.948206103,0.986968066,0.724496596,1,15.9085193,0.369605012,0.063393609,0.312029739,0.836008381,0.560504977,0.961238037,0.922476074,0.087284219,3.943073906,15.99580352,4.312678918,22.88581848,0,0.328291403,70.83489662,-0.328291403,109.1651034,0.897696286,0,36.54031777,4.312678918,39.36287987,7,19,8% +2018-07-09 04:00:00,95.33425949,303.6397857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.663896718,5.299514001,-6.349553703,6.349553703,1,0.384008677,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114532444,83.42334213,-0.114532444,96.57665787,0.613442477,0,0,0,0,7,20,0% +2018-07-09 05:00:00,104.5572646,314.1794502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824868525,5.483465848,-1.677245063,1.677245063,1,0.816979488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092003496,95.27887728,0.092003496,84.72112272,0,0.506542392,0,0,0,7,21,0% +2018-07-09 06:00:00,112.1352879,326.4419498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957129981,5.697486841,-0.576313987,0.576313987,1,0.628709186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279800919,106.2483233,0.279800919,73.75167671,0,0.871301516,0,0,0,7,22,0% +2018-07-09 07:00:00,117.4363225,340.5835017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04965049,5.944303482,0.01961619,-0.01961619,1,0.526799124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436066457,115.8531736,0.436066457,64.14682635,0,0.935338578,0,0,0,7,23,0% +2018-07-10 08:00:00,119.836758,356.1710844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091545992,6.216358124,0.485577031,-0.485577031,1,0.447115127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550154255,123.3775961,0.550154255,56.62240388,0,0.959116399,0,0,0,7,0,0% +2018-07-10 09:00:00,118.9858843,12.08613575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076695444,0.210942863,0.958855622,-0.958855622,1,0.366179721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614291173,127.9004337,0.614291173,52.09956633,0,0.968605374,0,0,0,7,1,0% +2018-07-10 10:00:00,115.0136576,27.02592579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00736701,0.471691388,1.568078718,-1.568078718,1,0.261996436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624106421,128.6166311,0.624106421,51.38336888,0,0.969885458,0,0,0,7,2,0% +2018-07-10 11:00:00,108.4488754,40.20567731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892789945,0.701721447,2.60133627,-2.60133627,1,0.085298988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578929542,125.3752875,0.578929542,54.62471252,0,0.963633704,0,0,0,7,3,0% +2018-07-10 12:00:00,99.94563168,51.53606712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744380346,0.899474055,5.409353002,-5.409353002,1,0,#DIV/0!,0,0,0.283102811,1,0.182801223,0,0.941175342,0.979937305,0.724496596,1,0,0,0.042703766,0.312029739,0.886046927,0.610543522,0.961238037,0.922476074,0,0,0,0,0,0,-0.481836481,118.8054143,0.481836481,61.19458567,0,0.946230356,0,0,0,7,4,0% +2018-07-10 13:00:00,89.58697355,61.35115113,0.115857313,0.94438787,0.10904959,0.106634724,0,0.106634724,0.105761342,0.000873381,0.344300424,0.31292123,0.031379194,0.003288247,0.028090947,1.563587655,1.070779587,-137.1419696,137.1419696,0,0,0.941240455,0.000822062,0.026440336,1,0.956489223,0,0.007291585,0.961238037,1,0.704027572,0.979530976,0.101661825,0.002354434,0.115824807,0.288772265,0.724496596,0.448993192,0.96486359,0.926101627,0.000595581,0.025466724,0.102257406,0.027821158,0,0.013615446,-0.33134821,109.3506268,0.33134821,70.64937321,0,0.899101343,0.102257406,0.040062824,0.128477723,7,5,26% +2018-07-10 14:00:00,79.20639201,70.13731989,111.1083643,361.2720303,43.45232696,42.97966076,0,42.97966076,42.14207898,0.837581782,86.04979523,57.80003796,28.24975727,1.31024798,26.93950929,1.382412329,1.224127161,-5.245347706,5.245347706,0.572839023,0.572839023,0.391080611,0.619721232,19.93236509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.50856926,0.949270201,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.448985923,19.15974749,40.95755519,20.10901769,0,57.80003796,-0.159990348,99.206336,0.159990348,80.793664,0,0.737481148,40.95755519,62.73545604,82.01665646,7,6,100% +2018-07-10 15:00:00,67.86123668,78.430976,314.2717003,633.144923,75.6703918,101.5542595,25.79649643,75.75776312,73.38865029,2.369112826,78.48055376,0,78.48055376,2.281741507,76.19881226,1.184402015,1.368878767,-2.431368886,2.431368886,0.945942257,0.945942257,0.240780165,2.271880383,73.07148265,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.54396213,1.653113954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645969604,70.23908853,72.18993173,71.89220248,25.79649643,0,0.040743431,87.66492701,-0.040743431,92.33507299,0,0,72.18993173,71.89220248,119.2419404,7,7,65% +2018-07-10 16:00:00,56.14572874,86.86541669,519.9191345,762.1781447,95.32304008,288.1852922,191.8172234,96.36806877,92.44869872,3.919370051,128.9347549,0,128.9347549,2.874341363,126.0604136,0.979927827,1.516087527,-1.426607894,1.426607894,0.774118008,0.774118008,0.18334205,3.196370424,102.8062603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86520567,2.082450533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.315759491,98.82128781,91.18096516,100.9037383,191.8172234,0,0.251669803,75.42365546,-0.251669803,104.5763445,0.851326979,0,254.4801425,100.9037383,320.5196211,7,8,26% +2018-07-10 17:00:00,44.33116199,96.38749986,703.5271768,830.9563059,109.1335164,491.7833707,380.6371475,111.1462232,105.8427382,5.30348503,173.8690873,0,173.8690873,3.290778179,170.5783092,0.773724738,1.68227923,-0.875134828,0.875134828,0.679810559,0.679810559,0.155123384,3.86878323,124.4333675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7400659,2.384157589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.80292028,119.6100859,104.5429862,121.9942435,380.6371475,0,0.458071194,62.73728493,-0.458071194,117.2627151,0.940846662,0,462.6641757,121.9942435,542.5069682,7,9,17% +2018-07-10 18:00:00,32.78904018,108.8882173,849.9478434,869.6080686,118.8942468,683.3105062,561.5940937,121.7164125,115.3091466,6.407265863,209.6647952,0,209.6647952,3.585100215,206.079695,0.57227671,1.900457908,-0.501415995,0.501415995,0.615900875,0.615900875,0.139884168,4.290499115,137.9972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8395377,2.597392902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.108452003,132.6481576,113.9479897,135.2455505,561.5940937,0,0.645801383,49.77421294,-0.645801383,130.2257871,0.972576815,0,660.1413847,135.2455505,748.6568926,7,10,13% +2018-07-10 19:00:00,22.39540637,129.1700944,948.2432915,890.3439774,125.0520996,842.5174063,714.0878305,128.4295758,121.2813174,7.148258471,233.6833466,0,233.6833466,3.770782195,229.9125644,0.390873578,2.254443443,-0.211185534,0.211185534,0.566268543,0.566268543,0.131877653,4.456710622,143.3431335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5802154,2.731918864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.228871675,137.7868722,119.8090871,140.5187911,714.0878305,0,0.802035897,36.67504165,-0.802035897,143.3249583,0.987658651,0,825.0841102,140.5187911,917.0508486,7,11,11% +2018-07-10 20:00:00,15.99307873,167.8004839,991.3129411,898.4116327,127.6743436,954.3427347,823.045308,131.2974267,123.824491,7.472935683,244.2051521,0,244.2051521,3.849852527,240.3552996,0.279131881,2.92867093,0.038900471,-0.038900471,0.523501317,0.523501317,0.128793177,4.370704089,140.5768677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0248107,2.78920505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.166560234,135.1278323,122.1913709,137.9170374,823.045308,0,0.916111589,23.63591617,-0.916111589,156.3640838,0.995421496,0,941.4683627,137.9170374,1031.732305,7,12,10% +2018-07-10 21:00:00,18.50216254,215.1984103,976.0805954,895.6221676,126.7516345,1008.216593,877.9288798,130.2877129,122.929605,7.358107827,240.4840705,0,240.4840705,3.822029443,236.662041,0.322923655,3.755920805,0.274781846,-0.274781846,0.483163226,0.483163226,0.129857755,4.049008459,130.2300304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1646122,2.769047321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933492845,125.1820588,121.0981051,127.9511061,877.9288798,0,0.980244696,11.40767279,-0.980244696,168.5923272,0.998992328,0,998.1423205,127.9511061,1081.88376,7,13,8% +2018-07-10 22:00:00,27.56265945,242.8170168,903.6198288,881.3606949,122.2888767,998.012802,872.5995181,125.4132839,118.6014159,6.81186796,222.7805501,0,222.7805501,3.687460831,219.0930892,0.481059158,4.237956423,0.517861428,-0.517861428,0.44159417,0.44159417,0.135332219,3.522856083,113.3071614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0041922,2.67155282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55229724,108.9151533,116.5564894,111.5867062,872.5995181,0,0.990059488,8.085417082,-0.990059488,171.9145829,0.999497984,0,988.7179487,111.5867062,1061.749216,7,14,7% +2018-07-10 23:00:00,38.73135564,258.1230563,779.1097449,852.2562402,114.2747761,921.9886442,805.2864159,116.7022284,110.82897,5.873258355,192.349984,0,192.349984,3.44580613,188.9041779,0.67598968,4.505097208,0.794002913,-0.794002913,0.394371195,0.394371195,0.146673529,2.837963776,91.27867047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5330216,2.496474811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.056095095,87.74053001,108.5891167,90.23700482,805.2864159,0,0.944887673,19.11072,-0.944887673,160.88928,0.997083657,0,911.5270413,90.23700482,970.5853562,7,15,6% +2018-07-10 00:00:00,50.48174787,268.7296714,611.6496788,800.1359614,102.5039661,782.3942941,678.3703271,104.023967,99.41309332,4.610873641,151.3924188,0,151.3924188,3.090872777,148.3015461,0.881072713,4.690217564,1.14811101,-1.14811101,0.333815143,0.333815143,0.16758607,2.053952605,66.0621762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.55964666,2.239326805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488081671,63.50147656,97.04772833,65.74080337,678.3703271,0,0.847818821,32.02478108,-0.847818821,147.9752189,0.991025136,0,769.3297738,65.74080337,812.3558148,7,16,6% +2018-07-10 01:00:00,62.28638719,277.5294893,414.2156578,705.6944072,86.03078586,584.4319348,497.872762,86.55917284,83.43664024,3.122532594,103.0255275,0,103.0255275,2.594145613,100.4313819,1.087102536,4.84380336,1.688079173,-1.688079173,0.241475149,0.241475149,0.207695639,1.245945003,40.0738742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20247227,1.879449666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902682913,38.52053217,81.10515518,40.39998183,497.872762,0,0.705507592,45.12943375,-0.705507592,134.8705662,0.97912904,0,568.5868349,40.39998183,595.027815,7,17,5% +2018-07-10 02:00:00,73.85279276,285.7962169,205.3368102,518.0362104,61.26774592,334.389705,273.421492,60.96821294,59.42029733,1.54791561,51.63373554,0,51.63373554,1.847448594,49.78628694,1.288974395,4.988084974,2.801465134,-2.801465134,0.051074936,0.051074936,0.298376827,0.51733226,16.63918379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.11704996,1.338470217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374805461,15.99421636,57.49185542,17.33268658,273.421492,0,0.527803822,58.14281229,-0.527803822,121.8571877,0.955267833,0,318.6826115,17.33268658,330.0265082,7,18,4% +2018-07-10 03:00:00,84.87107336,294.2715429,27.70366357,123.8824095,16.62892899,56.96051385,40.62416651,16.33634734,16.12750543,0.208841918,7.218497537,0,7.218497537,0.501423563,6.717073973,1.48127967,5.136007318,7.977575716,-7.977575716,0,0,0.600242959,0.125355891,4.031876357,0.454771111,1,0.124700938,0,0.948391522,0.987153485,0.724496596,1,15.63603041,0.363279665,0.063991115,0.312029739,0.834613798,0.559110394,0.961238037,0.922476074,0.085793745,3.875592914,15.72182415,4.238872578,22.14946915,0,0.327925221,70.85710687,-0.327925221,109.1428931,0.897526214,0,35.60155334,4.238872578,38.37581067,7,19,8% +2018-07-10 04:00:00,95.40201105,303.5248781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665079206,5.297508485,-6.286519627,6.286519627,1,0.394788138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113953232,83.45674726,-0.113953232,96.54325274,0.611223501,0,0,0,0,7,20,0% +2018-07-10 05:00:00,104.6396686,314.0713077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826306745,5.481578406,-1.673885229,1.673885229,1,0.816404923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092803379,95.32490408,0.092803379,84.67509592,0,0.511226512,0,0,0,7,21,0% +2018-07-10 06:00:00,112.2342232,326.3452474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958856729,5.695799065,-0.577487646,0.577487646,1,0.628909893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280836354,106.3101272,0.280836354,73.68987277,0,0.871960372,0,0,0,7,22,0% +2018-07-10 07:00:00,117.5515881,340.5071738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051662254,5.942971309,0.016966712,-0.016966712,1,0.527252211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437336214,115.9340442,0.437336214,64.06595577,0,0.935671485,0,0,0,7,23,0% +2018-07-11 08:00:00,119.9647168,356.1255032,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093779294,6.215562581,0.48174862,-0.48174862,1,0.447769824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551641056,123.4796693,0.551641056,56.52033071,0,0.959361351,0,0,0,7,0,0% +2018-07-11 09:00:00,119.1197894,12.07664942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079032529,0.210777295,0.953339451,-0.953339451,1,0.367123042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61596287,128.0219175,0.61596287,51.9780825,0,0.968826276,0,0,0,7,1,0% +2018-07-11 10:00:00,115.1463933,27.04922455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009683685,0.472098029,1.559235319,-1.559235319,1,0.263508746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625918194,128.7496123,0.625918194,51.25038775,0,0.970117356,0,0,0,7,2,0% +2018-07-11 11:00:00,108.5756438,40.25352662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895002472,0.702556575,2.583523773,-2.583523773,1,0.088345104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580826983,125.5087292,0.580826983,54.49127076,0,0.963915845,0,0,0,7,3,0% +2018-07-11 12:00:00,100.0644662,51.60086814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7464544,0.900605046,5.346188551,-5.346188551,1,0,#DIV/0!,0,0,0.277508014,1,0.184912372,0,0.940898862,0.979660825,0.724496596,1,0,0,0.041958064,0.312029739,0.88791372,0.612410316,0.961238037,0.922476074,0,0,0,0,0,0,-0.483759337,118.9312195,0.483759337,61.06878051,0,0.946642822,0,0,0,7,4,0% +2018-07-11 13:00:00,89.68109583,61.42835146,0.076341471,0.725173027,0.072305231,0.070700455,0,0.070700455,0.070124961,0.000575494,0.262146939,0.241456796,0.020690143,0.002180269,0.018509873,1.565230399,1.072126987,-177.6559253,177.6559253,0,0,0.947129132,0.000545067,0.01753124,1,0.966567602,0,0.005628799,0.961238037,1,0.708658848,0.984162252,0.06740678,0.001565149,0.115824807,0.294033432,0.724496596,0.448993192,0.964053173,0.92529121,0.000394899,0.016878329,0.067801679,0.018443478,0,0.00807248,-0.332964392,109.4488011,0.332964392,70.55119886,0,0.899833793,0.067801679,0.025707368,0.084626638,7,5,25% +2018-07-11 14:00:00,79.30968524,70.22542067,109.2998739,357.0215916,43.07218567,42.59734897,0,42.59734897,41.77340036,0.823948618,85.55448652,57.75468134,27.79980518,1.298785318,26.50101986,1.384215136,1.225664809,-5.297217504,5.297217504,0.563968765,0.563968765,0.394073517,0.606259026,19.49937429,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.15418135,0.940965541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.439232601,18.74354026,40.59341395,19.6845058,0,57.75468134,-0.161768035,99.30953421,0.161768035,80.69046579,0,0.740915452,40.59341395,62.47584163,81.48260278,7,6,101% +2018-07-11 15:00:00,67.95999333,78.53101873,312.3745763,631.1176637,75.54520764,100.3018976,24.67984523,75.6220524,73.2672409,2.354811504,78.01679932,0,78.01679932,2.277966743,75.73883257,1.186125643,1.370624842,-2.442789532,2.442789532,0.947895302,0.947895302,0.241841729,2.261787955,72.74687547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42725881,1.650379151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.638657674,69.92706376,72.06591648,71.57744291,24.67984523,0,0.039104983,87.75887811,-0.039104983,92.24112189,0,0,72.06591648,71.57744291,118.9119213,7,7,65% +2018-07-11 16:00:00,56.24188775,86.98076599,518.1917576,761.0294923,95.29683805,286.7547194,190.4250843,96.32963513,92.42328678,3.906348354,128.5151423,0,128.5151423,2.873551275,125.641591,0.981606119,1.518100752,-1.430919396,1.430919396,0.774855318,0.774855318,0.183902651,3.188595993,102.5562079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84077874,2.081878117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.310126943,98.58092792,91.15090568,100.662806,190.4250843,0,0.250220374,75.50944683,-0.250220374,104.4905532,0.850176144,0,253.0457696,100.662806,318.9275629,7,8,26% +2018-07-11 17:00:00,44.42819885,96.52381132,702.0221987,830.1937374,109.1574022,490.4245753,379.2665316,111.1580437,105.8659038,5.29213987,173.5049082,0,173.5049082,3.291498425,170.2134098,0.775418351,1.684658314,-0.877065885,0.877065885,0.680140789,0.680140789,0.155489958,3.86260421,124.234629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7623335,2.384679404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.798443602,119.4190509,104.5607771,121.8037303,379.2665316,0,0.456840993,62.81655032,-0.456840993,117.1834497,0.940552729,0,461.2809485,121.8037303,540.9990539,7,9,17% +2018-07-11 18:00:00,32.89286833,109.0510039,848.6695878,869.0386557,118.9487199,682.1196174,560.3600105,121.7596069,115.3619771,6.397629833,209.3565099,0,209.3565099,3.586742778,205.7697671,0.574088853,1.90329907,-0.502258547,0.502258547,0.61604496,0.61604496,0.140159046,4.285514604,137.836881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8903204,2.598582933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104840742,132.4940529,113.9951611,135.0926359,560.3600105,0,0.644804471,49.84898305,-0.644804471,130.1510169,0.972457113,0,658.9212394,135.0926359,747.3366677,7,10,13% +2018-07-11 19:00:00,22.51593987,129.3379819,947.1710388,889.8769398,125.1267192,841.5254318,713.0315695,128.4938623,121.3536869,7.140175377,233.4256166,0,233.4256166,3.773032251,229.6525843,0.392977285,2.257373631,-0.211403889,0.211403889,0.566305884,0.566305884,0.132105728,4.452608799,143.2112047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6497798,2.733549022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.225899918,137.6600573,119.8756797,140.3936063,713.0315695,0,0.801269858,36.74846344,-0.801269858,143.2515366,0.98759905,0,824.0649806,140.3936063,915.9497881,7,11,11% +2018-07-11 20:00:00,16.12968414,167.7759785,990.4081873,897.9957535,127.7617202,953.5423897,822.1670415,131.3753482,123.9092329,7.466115266,243.9884188,0,243.9884188,3.852487254,240.1359316,0.281516096,2.92824323,0.03912834,-0.03912834,0.523462349,0.523462349,0.128999055,4.367194044,140.4639726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1062678,2.791113901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.164017219,135.0193133,122.270285,137.8104272,822.1670415,0,0.915557828,23.7149294,-0.915557828,156.2850706,0.995388485,0,940.6458909,137.8104272,1030.840059,7,12,10% +2018-07-11 21:00:00,18.60322032,214.9076188,975.2917385,895.2214179,126.8452087,1007.572906,877.2003872,130.3725187,123.0203576,7.352161089,240.2956246,0,240.2956246,3.824851051,236.4707735,0.324687446,3.750845536,0.275414727,-0.275414727,0.483054997,0.483054997,0.130058734,4.045807565,130.1270787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2518471,2.771091566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931173808,125.0830976,121.1830209,127.8541892,877.2003872,0,0.97986975,11.51578251,-0.97986975,168.4842175,0.99897281,0,997.4823565,127.8541892,1081.160366,7,13,8% +2018-07-11 22:00:00,27.62639717,242.5545903,902.8868649,880.941191,122.3817469,997.4686962,871.970868,125.4978282,118.6914857,6.806342569,222.6056349,0,222.6056349,3.690261209,218.9153737,0.482171591,4.233376217,0.518961457,-0.518961457,0.441406054,0.441406054,0.135544941,3.519700206,113.2056575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0907707,2.673581684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550010818,108.817584,116.6407815,111.4911657,871.970868,0,0.989817342,8.183468696,-0.989817342,171.8165313,0.999485629,0,988.1631333,111.4911657,1061.131871,7,14,7% +2018-07-11 23:00:00,38.77943697,257.9172828,778.369475,851.7734758,114.3585607,921.4678548,804.6899487,116.7779061,110.9102282,5.867677887,192.1730234,0,192.1730234,3.448332545,188.7246909,0.676828857,4.501505782,0.795771588,-0.795771588,0.394068733,0.394068733,0.146920665,2.834631519,91.17149364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.61113,2.49830519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053680886,87.63750757,108.6648109,90.13581276,804.6899487,0,0.944722948,19.13952698,-0.944722948,160.860473,0.997074431,0,911.0005832,90.13581276,969.99267,7,15,6% +2018-07-11 00:00:00,50.52561329,268.5604795,610.8422127,799.5110671,102.5664735,781.8005548,677.7220523,104.0785025,99.47371591,4.60478662,151.1985242,0,151.1985242,3.092757606,148.1057665,0.881838309,4.687264608,1.151049632,-1.151049632,0.33331261,0.33331261,0.167909931,2.050309069,65.94498756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.6179194,2.240692358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.485441941,63.38883038,97.10336134,65.62952274,677.7220523,0,0.847670633,32.04078874,-0.847670633,147.9592113,0.991014826,0,768.7359629,65.62952274,811.6891729,7,16,6% +2018-07-11 01:00:00,62.33214524,277.3825027,413.2955102,704.7482731,86.04901038,583.6386842,497.0687728,86.56991136,83.45431523,3.115596132,102.8029766,0,102.8029766,2.59469515,100.2082814,1.087901164,4.841237959,1.693614742,-1.693614742,0.240528511,0.240528511,0.208202142,1.242038946,39.94824199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.21946214,1.879847803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899852989,38.39976971,81.11931513,40.27961751,497.0687728,0,0.705313928,45.14508859,-0.705313928,134.8549114,0.979109581,0,567.8041129,40.27961751,594.166317,7,17,5% +2018-07-11 02:00:00,73.90440233,285.6628189,204.3115075,516.2674112,61.18110154,333.2110424,272.3345904,60.87645204,59.33626559,1.540186445,51.38252638,0,51.38252638,1.844835946,49.53769044,1.289875152,4.98575674,2.815652707,-2.815652707,0.048648718,0.048648718,0.299450101,0.513699857,16.52235323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.03627545,1.336577363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372173798,15.88191438,57.40844925,17.21849175,272.3345904,0,0.527506839,58.16284373,-0.527506839,121.8371563,0.955214499,0,317.5463986,17.21849175,328.815557,7,18,4% +2018-07-11 03:00:00,84.93062514,294.1467669,26.99476633,120.8964488,16.31212752,55.61641606,39.59266142,16.02375464,15.82025669,0.203497951,7.037064461,0,7.037064461,0.49187083,6.545193631,1.482319044,5.133829566,8.08890858,-8.08890858,0,0,0.604270002,0.122967707,3.955064172,0.460372785,1,0.123001977,0,0.948591,0.987352963,0.724496596,1,15.33786558,0.356358742,0.064637361,0.312029739,0.833108652,0.557605248,0.961238037,0.922476074,0.084163958,3.80175812,15.42202954,4.158116862,21.36527763,0,0.327492344,70.88335853,-0.327492344,109.1166415,0.897324675,0,34.59362035,4.158116862,37.31502467,7,19,8% +2018-07-11 04:00:00,95.4753405,303.4065725,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666359046,5.295443662,-6.219130242,6.219130242,1,0.406312402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113296178,83.49463908,-0.113296178,96.50536092,0.608678844,0,0,0,0,7,20,0% +2018-07-11 05:00:00,104.7280128,313.9604029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827848642,5.479642751,-1.670011816,1.670011816,1,0.81574253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093687858,95.37580275,0.093687858,84.62419725,0,0.516312911,0,0,0,7,21,0% +2018-07-11 06:00:00,112.3394387,326.2467245,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960693086,5.694079517,-0.578538854,0.578538854,1,0.629089661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281960791,106.3772658,0.281960791,73.62273422,0,0.87267038,0,0,0,7,22,0% +2018-07-11 07:00:00,117.6733321,340.4304144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053787087,5.941631605,0.014324595,-0.014324595,1,0.52770404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438696727,116.0207567,0.438696727,63.97924327,0,0.936026047,0,0,0,7,23,0% +2018-07-12 08:00:00,120.0990598,356.0812635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096124021,6.214790452,0.477868926,-0.477868926,1,0.44843329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553217593,123.5880345,0.553217593,56.41196547,0,0.959619649,0,0,0,7,0,0% +2018-07-12 09:00:00,119.2596151,12.07027187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081472949,0.210665986,0.947722377,-0.947722377,1,0.368083618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617720574,128.1498691,0.617720574,51.8501309,0,0.969057253,0,0,0,7,1,0% +2018-07-12 10:00:00,115.2843082,27.07695008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012090754,0.47258193,1.550225743,-1.550225743,1,0.265049474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627809796,128.8887175,0.627809796,51.11128252,0,0.970358044,0,0,0,7,2,0% +2018-07-12 11:00:00,108.7067618,40.30656276,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897290913,0.70348223,2.565431913,-2.565431913,1,0.091438994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582796048,125.647443,0.582796048,54.35255698,0,0.964206693,0,0,0,7,3,0% +2018-07-12 12:00:00,100.1868834,51.67124079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748590983,0.90183328,5.282747029,-5.282747029,1,0,#DIV/0!,0,0,0.27180008,1,0.187081861,0,0.94061371,0.979375673,0.724496596,1,0,0,0.041193652,0.312029739,0.889831915,0.614328511,0.961238037,0.922476074,0,0,0,0,0,0,-0.485744153,119.0612388,0.485744153,60.93876121,0,0.947065153,0,0,0,7,4,0% +2018-07-12 13:00:00,89.77712768,61.51136416,0.045009074,0.546238513,0.04288429,0.041930468,0,0.041930468,0.04159117,0.000339297,0.19498599,0.1827799,0.012206091,0.00129312,0.010912971,1.566906471,1.073575832,-254.2613973,254.2613973,0,0,0.952792104,0.00032328,0.010397793,1,0.976750357,0,0.00393294,0.961238037,1,0.713404473,0.988907877,0.039979015,0.0009308,0.115824807,0.299425185,0.724496596,0.448993192,0.963216717,0.924454754,0.000234215,0.010005957,0.04021323,0.010936757,0,0.004249567,-0.334615549,109.5491614,0.334615549,70.45083863,0,0.900574786,0.04021323,0.014763811,0.049875849,7,5,24% +2018-07-12 14:00:00,79.41541546,70.31960411,107.4564576,352.6573206,42.67793303,42.20108806,0,42.20108806,41.39103589,0.810052167,85.03081751,57.68985813,27.34095938,1.286897146,26.05406223,1.386060477,1.22730862,-5.351332048,5.351332048,0.554714633,0.554714633,0.397164898,0.592606908,19.06027523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.78663808,0.932352601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.429341687,18.32146154,40.21597977,19.25381414,0,57.68985813,-0.163586164,99.41511168,0.163586164,80.58488832,0,0.744350678,40.21597977,62.19529915,80.92155916,7,6,101% +2018-07-12 15:00:00,68.060894,78.63757186,310.4384123,629.0452361,75.41392086,99.02878684,23.54865806,75.48012878,73.1399129,2.340215882,77.54339516,0,77.54339516,2.274007962,75.2693872,1.187886692,1.372484545,-2.454522121,2.454522121,0.949901693,0.949901693,0.242927157,2.251456016,72.41456481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.30486629,1.647511027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.631172219,69.60763411,71.93603851,71.25514514,23.54865806,0,0.037435556,87.85459935,-0.037435556,92.14540065,0,0,71.93603851,71.25514514,118.5711059,7,7,65% +2018-07-12 16:00:00,56.34005768,87.10333682,516.429242,759.8602747,95.2670795,285.3015589,189.0140716,96.28748732,92.39442556,3.893061767,128.0869027,0,128.0869027,2.872653945,125.2142487,0.983319507,1.520240017,-1.435298351,1.435298351,0.775604163,0.775604163,0.184472667,3.180627811,102.2999237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.81303624,2.081228004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.304354022,98.33457786,91.11739026,100.4158059,189.0140716,0,0.248748458,75.59653526,-0.248748458,104.4034647,0.848993729,0,251.5891517,100.4158059,317.3092883,7,8,26% +2018-07-12 17:00:00,44.52735304,96.6685063,700.48481,829.4193778,109.1786695,489.0463338,377.8792537,111.1670801,105.8865297,5.280550384,173.1327918,0,173.1327918,3.29213971,169.8406521,0.777148918,1.687183718,-0.878995175,0.878995175,0.680470717,0.680470717,0.15586158,3.856243668,124.0300521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.78216,2.385144013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79383541,119.2224038,104.5759954,121.6075478,377.8792537,0,0.455594918,62.89678115,-0.455594918,117.1032189,0.940253385,0,459.8782429,121.6075478,539.4679508,7,9,17% +2018-07-12 18:00:00,32.9993109,109.2239848,847.3591231,868.4608271,119.0008992,680.9118807,559.1115466,121.8003341,115.4125831,6.387750996,209.040346,0,209.040346,3.588316179,205.4520298,0.575946626,1.906318156,-0.503069727,0.503069727,0.61618368,0.61618368,0.140437385,4.280341492,137.670496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9389648,2.599722856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10109284,132.3341173,114.0400576,134.9338401,559.1115466,0,0.643795931,49.92454158,-0.643795931,130.0754584,0.972335638,0,657.6841402,134.9338401,745.9956399,7,10,13% +2018-07-12 19:00:00,22.64029275,129.5181731,946.0639741,889.4025364,125.1990315,840.51684,711.9611913,128.5556487,121.4238188,7.131829856,233.1593764,0,233.1593764,3.775212736,229.3841637,0.395147652,2.260518563,-0.211572722,0.211572722,0.566334756,0.566334756,0.13233675,4.448297759,143.0725469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7171932,2.735128776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222776584,137.5267741,119.9399698,140.2619029,711.9611913,0,0.800493772,36.82271997,-0.800493772,143.17728,0.987538552,0,823.0290939,140.2619029,914.827704,7,11,11% +2018-07-12 20:00:00,16.27217387,167.7617996,989.4633198,897.5721962,127.8465314,952.722596,821.2721168,131.4504792,123.9914867,7.458992456,243.7618821,0,243.7618821,3.855044624,239.9068375,0.28400301,2.927995762,0.039421653,-0.039421653,0.52341219,0.52341219,0.129207954,4.363444394,140.343371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1853333,2.792966707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16130061,134.9033864,122.3466339,137.6963531,821.2721168,0,0.914992822,23.79529229,-0.914992822,156.2047077,0.995354763,0,939.8037468,137.6963531,1029.923256,7,12,10% +2018-07-12 21:00:00,18.71103174,214.614971,974.4551207,894.8114738,126.9357493,1006.903667,876.4496443,130.4540224,123.1081681,7.345854311,240.095507,0,240.095507,3.827581184,236.2679259,0.32656911,3.745737868,0.276131731,-0.276131731,0.482932383,0.482932383,0.13026331,4.042330495,130.0152441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3362538,2.773069538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928654683,124.975598,121.2649085,127.7486676,876.4496443,0,0.979479667,11.62720419,-0.979479667,168.3727958,0.998952488,0,996.7964613,127.7486676,1080.405409,7,13,8% +2018-07-12 22:00:00,27.69602389,242.2854765,902.0967039,880.5093878,122.4709028,996.8896986,871.3113594,125.5783392,118.7779532,6.800386001,222.4167396,0,222.4167396,3.692949588,218.72379,0.483386807,4.228679294,0.520172244,-0.520172244,0.441198997,0.441198997,0.135762499,3.516229466,113.0940266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1738865,2.675529405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.547496278,108.7102801,116.7213828,111.3858095,871.3113594,0,0.989553742,8.288898014,-0.989553742,171.711102,0.999472173,0,987.5728408,111.3858095,1060.472625,7,14,7% +2018-07-12 23:00:00,38.83276753,257.7051062,777.5615231,851.2725443,114.4376775,920.8996957,804.0511492,116.8485465,110.9869593,5.861587204,191.9795118,0,191.9795118,3.450718206,188.5287936,0.677759651,4.497802602,0.797694879,-0.797694879,0.393739831,0.393739831,0.147175078,2.830948607,91.05303851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6848869,2.500033594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.051012629,87.52364399,108.7358995,90.02367758,804.0511492,0,0.944528465,19.17348421,-0.944528465,160.8265158,0.997063533,0,910.425979,90.02367758,969.3446755,7,15,6% +2018-07-12 00:00:00,50.57445866,268.3857383,609.9564951,798.8563289,102.6228763,781.143669,677.0171413,104.1265276,99.52841793,4.598109707,150.9854724,0,150.9854724,3.094458358,147.8910141,0.882690821,4.6842148,1.154226752,-1.154226752,0.33276929,0.33276929,0.168246223,2.046289115,65.815692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.67050106,2.241924547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482529498,63.26454657,97.15303056,65.50647112,677.0171413,0,0.847482979,32.0610494,-0.847482979,147.9389506,0.991001765,0,768.0782125,65.50647112,810.9508877,7,16,6% +2018-07-12 01:00:00,62.38284563,277.2306851,412.2879797,703.7460736,86.05850405,582.7620325,496.1905089,86.57152358,83.46352263,3.108000942,102.5589754,0,102.5589754,2.594981419,99.96399398,1.088786053,4.838588242,1.699588531,-1.699588531,0.239506933,0.239506933,0.208733963,1.237754118,39.8104272,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22831265,1.880055205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896748645,38.26729688,81.12506129,40.14735209,496.1905089,0,0.705070376,45.16477008,-0.705070376,134.8352299,0.979085093,0,566.9377919,40.14735209,593.2134309,7,17,5% +2018-07-12 02:00:00,73.96105869,285.5251498,203.1956282,514.3730839,61.07917122,331.9207893,271.151606,60.76918332,59.23740885,1.531774476,51.10889494,0,51.10889494,1.84176237,49.26713257,1.290863992,4.983353961,2.831005717,-2.831005717,0.046023199,0.046023199,0.30059294,0.509746805,16.3952095,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.94125059,1.334350568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369309825,15.75969899,57.31056041,17.09404956,271.151606,0,0.527149679,58.18692837,-0.527149679,121.8130716,0.955150279,0,316.3010925,17.09404956,327.488806,7,18,4% +2018-07-12 03:00:00,84.9953087,294.018195,26.23631409,117.7052316,15.96802637,54.17295907,38.4886472,15.68431188,15.48653146,0.197780418,6.842793015,0,6.842793015,0.481494911,6.361298104,1.483447986,5.131585564,8.211825547,-8.211825547,0,0,0.608623083,0.120373728,3.871632865,0.466425117,1,0.121178953,0,0.948804307,0.98756627,0.724496596,1,15.01398654,0.348841424,0.065332402,0.312029739,0.831493569,0.555990165,0.961238037,0.922476074,0.082394838,3.721560774,15.09638138,4.070402198,20.53657543,0,0.326991814,70.91370781,-0.326991814,109.0862922,0.897090973,0,33.51955783,4.070402198,36.18355466,7,19,8% +2018-07-12 04:00:00,95.55426545,303.2849601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667736546,5.293321126,-6.147723983,6.147723983,1,0.418523591,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112560412,83.53706674,-0.112560412,96.46293326,0.605794093,0,0,0,0,7,20,0% +2018-07-12 05:00:00,104.8223002,313.8468236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829494268,5.477660419,-1.66563153,1.66563153,1,0.814993457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094657502,95.43160726,0.094657502,84.56839274,0,0.521779847,0,0,0,7,21,0% +2018-07-12 06:00:00,112.4509218,326.1464687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962638833,5.692329722,-0.579464349,0.579464349,1,0.629247929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28317444,106.4497569,0.28317444,73.55024308,0,0.873430391,0,0,0,7,22,0% +2018-07-12 07:00:00,117.8015251,340.3533136,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056024477,5.940285942,0.011694951,-0.011694951,1,0.528153735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440147808,116.1133123,0.440147808,63.88668774,0,0.936401797,0,0,0,7,23,0% +2018-07-13 08:00:00,120.2397389,356.0384597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098579336,6.214043386,0.473944518,-0.473944518,1,0.449104404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554883271,123.7026752,0.554883271,56.29732485,0,0.959890958,0,0,0,7,0,0% +2018-07-13 09:00:00,119.405294,12.06709577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084015525,0.210610552,0.942013484,-0.942013484,1,0.369059896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619563307,128.2842519,0.619563307,51.71574813,0,0.969297997,0,0,0,7,1,0% +2018-07-13 10:00:00,115.4273181,27.10918134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.014586748,0.473144472,1.541064734,-1.541064734,1,0.266616099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629779911,129.0338866,0.629779911,50.96611337,0,0.970607185,0,0,0,7,2,0% +2018-07-13 11:00:00,108.8421346,40.36484275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899653614,0.704499408,2.547092392,-2.547092392,1,0.094575237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584835153,125.7913452,0.584835153,54.20865479,0,0.964505823,0,0,0,7,3,0% +2018-07-13 12:00:00,100.3127845,51.7472193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750788372,0.903159356,5.219153037,-5.219153037,1,0,#DIV/0!,0,0,0.265987191,1,0.189307644,0,0.940320076,0.979082039,0.724496596,1,0,0,0.040411388,0.312029739,0.891799685,0.616296281,0.961238037,0.922476074,0,0,0,0,0,0,-0.487789163,119.195373,0.487789163,60.80462704,0,0.947496698,0,0,0,7,4,0% +2018-07-13 13:00:00,89.87499563,61.60020357,0.021037983,0.403155108,0.020158405,0.019709148,0,0.019709148,0.019550555,0.000158593,0.141289927,0.135581174,0.005708753,0.00060785,0.005100903,1.568614589,1.075126372,-453.4327179,453.4327179,0,0,0.958190953,0.000151963,0.004887639,1,0.987025071,0,0.002205395,0.961238037,1,0.718261838,0.993765242,0.018792737,0.000438769,0.115824807,0.30494452,0.724496596,0.448993192,0.962354283,0.92359232,0.000110096,0.004701182,0.018902833,0.00513995,0,0.001759156,-0.336300276,109.6516265,0.336300276,70.34837353,0,0.901323345,0.018902833,0.006725519,0.023304551,7,5,23% +2018-07-13 14:00:00,79.52348917,70.41986759,105.5802139,348.180795,42.26966029,41.79098233,0,41.79098233,40.99507408,0.79590825,84.47777285,57.60404139,26.87373145,1.274586216,25.59914524,1.387946719,1.229058548,-5.407743994,5.407743994,0.545067622,0.545067622,0.400355888,0.578786452,18.61576186,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.40602453,0.923433375,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419328814,17.89417839,39.82535334,18.81761176,0,57.60404139,-0.165442903,99.52296455,0.165442903,80.47703545,0,0.747780931,39.82535334,61.89281548,80.33296321,7,6,102% +2018-07-13 15:00:00,68.16385293,78.75061693,308.4647651,626.9281714,75.27661888,97.7365219,22.40443313,75.33208877,73.00675108,2.325337695,77.06072138,0,77.06072138,2.2698678,74.79085358,1.189683665,1.374457553,-2.466561853,2.466561853,0.951960609,0.951960609,0.244036361,2.240890655,72.07474648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17686608,1.644511494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623517651,69.28098781,71.80038373,70.92549931,22.40443313,0,0.035736842,87.95199369,-0.035736842,92.04800631,0,0,71.80038373,70.92549931,118.2197045,7,7,65% +2018-07-13 16:00:00,56.44016184,87.23309285,514.6327846,758.6707803,95.23383262,283.8272395,187.585539,96.2417005,92.36218119,3.879519312,127.6503283,0,127.6503283,2.871651429,124.7786768,0.985066654,1.522504687,-1.439740665,1.439740665,0.776363844,0.776363844,0.185052013,3.172469797,102.037534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.78204172,2.080501685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298443569,98.08235885,91.08048529,100.1628605,187.585539,0,0.247255521,75.68483272,-0.247255521,104.3151673,0.847780046,0,250.1117623,100.1628605,315.6663512,7,8,26% +2018-07-13 17:00:00,44.62855867,96.82152221,698.9158053,828.6333487,109.1973594,487.6497913,376.4764126,111.1733787,105.9046561,5.268722564,172.752932,0,172.752932,3.29270328,169.4602288,0.778915289,1.689854349,-0.880919913,0.880919913,0.680799867,0.680799867,0.156238217,3.849703452,123.8196963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7995837,2.385552318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789097046,119.0202018,104.5886808,121.4057541,376.4764126,0,0.454334131,62.97790076,-0.454334131,117.0220992,0.939948836,0,458.4572466,121.4057541,537.9148845,7,9,17% +2018-07-13 18:00:00,33.10831341,109.4070474,846.0168161,867.8745955,119.0507996,679.6880588,557.8494479,121.8386108,115.4609787,6.377632119,208.7163928,0,208.7163928,3.589820858,205.1265719,0.577849079,1.909513202,-0.503847548,0.503847548,0.616316695,0.616316695,0.140719188,4.274979731,137.4980433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9854845,2.600812991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.097208263,132.1683492,114.0826928,134.7691622,557.8494479,0,0.642776561,50.00082637,-0.642776561,129.9991736,0.972212472,0,656.4308833,134.7691622,744.6346046,7,10,13% +2018-07-13 19:00:00,22.76841392,129.7104611,944.9220405,888.9207009,125.2690261,839.4919532,710.8770289,128.6149242,121.4917027,7.123221478,232.884612,0,232.884612,3.77732333,229.1072887,0.397383788,2.263874621,-0.211690509,0.211690509,0.566354899,0.566354899,0.132570753,4.443775818,142.9271057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7824458,2.736657894,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219500453,137.3869705,120.0019463,140.1236284,710.8770289,0,0.799708037,36.89776901,-0.799708037,143.102231,0.987477182,0,821.9767916,140.1236284,913.6849039,7,11,11% +2018-07-13 20:00:00,16.42047741,167.7579494,988.4778921,897.1408275,127.9287431,951.8832164,820.360433,131.5227834,124.0712195,7.451563886,243.5254328,0,243.5254328,3.857523612,239.6679092,0.286591396,2.927928563,0.039781677,-0.039781677,0.523350622,0.523350622,0.129419934,4.359452153,140.2149668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2619755,2.794762725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158408245,134.7799594,122.4203837,137.5747221,820.360433,0,0.914416564,23.87699317,-0.914416564,156.1230068,0.995320326,0,938.941797,137.5747221,1028.981701,7,12,10% +2018-07-13 21:00:00,18.82560305,214.3210961,973.5699681,894.3921322,127.023201,1006.208295,875.6761307,130.5321645,123.1929828,7.339181657,239.8835285,0,239.8835285,3.830218176,236.0533104,0.328568757,3.740608784,0.276934017,-0.276934017,0.482795183,0.482795183,0.130471569,4.038573377,129.8944023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.417781,2.77498003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925932664,124.8594403,121.3437136,127.6344203,875.6761307,0,0.979074054,11.74195571,-0.979074054,168.2580443,0.99893134,0,996.0840443,127.6344203,1079.61822,7,13,8% +2018-07-13 22:00:00,27.77160612,242.0100783,901.2483301,880.0649935,122.5562698,996.2748353,870.6200986,125.6547367,118.8607461,6.793990601,222.2136156,0,222.2136156,3.695523719,218.5180919,0.484705965,4.223872689,0.521495009,-0.521495009,0.440972791,0.440972791,0.135985017,3.512439574,112.9721306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2534702,2.677394355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.544750514,108.5931091,116.7982207,111.2705034,870.6200986,0,0.989267957,8.401715964,-0.989267957,171.598284,0.999457577,0,986.9460746,111.2705034,1059.770394,7,14,7% +2018-07-13 23:00:00,38.89141993,257.4867642,776.6847365,850.7530194,114.5120326,920.2828712,803.3688213,116.9140499,111.0590723,5.854977617,191.7691668,0,191.7691668,3.452960287,188.3162065,0.678783329,4.493991815,0.799774349,-0.799774349,0.393384221,0.393384221,0.147436955,2.826910857,90.9231706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7542046,2.501657974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.048087293,87.39881002,108.8022919,89.90046799,803.3688213,0,0.944303227,19.21273916,-0.944303227,160.7872608,0.997050906,0,909.8019033,89.90046799,968.6399616,7,15,6% +2018-07-13 00:00:00,50.62834936,268.2056121,608.9913571,798.1710762,102.6730555,780.4220997,676.2541815,104.1679182,99.57708408,4.590834089,150.7529766,0,150.7529766,3.095971447,147.6570052,0.883631391,4.681071004,1.157645001,-1.157645001,0.332184735,0.332184735,0.168595259,2.041889253,65.67417734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.71728081,2.243020774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479341813,63.12851729,97.19662263,65.37153807,676.2541815,0,0.847254682,32.08568278,-0.847254682,147.9143172,0.990985868,0,767.3549594,65.37153807,810.1393236,7,16,6% +2018-07-13 01:00:00,62.43854321,277.0741648,411.1920252,702.686593,86.05909608,581.80026,495.236424,86.56383598,83.46409681,3.099739174,102.2932664,0,102.2932664,2.594999271,99.69826712,1.089758159,4.835856449,1.706007005,-1.706007005,0.238409309,0.238409309,0.209291744,1.233088498,39.6603648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22886457,1.880068138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.893368419,38.1230512,81.12223298,40.00311934,495.236424,0,0.704775684,45.18857528,-0.704775684,134.8114247,0.979055441,0,565.9861485,40.00311934,592.16739,7,17,5% +2018-07-13 02:00:00,74.02280457,285.3833185,201.9885344,512.3505429,60.96162012,330.517054,269.8709768,60.64607724,59.12340235,1.522674893,50.81267648,0,50.81267648,1.838217771,48.97445871,1.291941661,4.980878539,2.847553525,-2.847553525,0.043193357,0.043193357,0.301807329,0.505474184,16.25778732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83166321,1.331782518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366214326,15.62760356,57.19787753,16.95938608,269.8709768,0,0.526731123,58.21514513,-0.526731123,121.7848549,0.955074909,0,314.944876,16.95938608,326.044455,7,18,4% +2018-07-13 03:00:00,85.06514568,293.8859253,25.43016213,114.3126106,15.59664765,52.63228395,37.31422947,15.31805448,15.12635118,0.191703304,6.636133701,0,6.636133701,0.470296472,6.165837229,1.484666871,5.129277022,8.347183448,-8.347183448,0,0,0.613312946,0.117574118,3.781587795,0.472934877,1,0.119232637,0,0.949031198,0.987793161,0.724496596,1,14.66441172,0.340728193,0.066076293,0.312029739,0.829769232,0.554265828,0.961238037,0.922476074,0.080486655,3.635006028,14.74489838,3.975734221,19.66702896,0,0.326422686,70.94820968,-0.326422686,109.0517903,0.896824372,0,32.38276928,3.975734221,34.98480781,7,19,8% +2018-07-13 04:00:00,95.63880289,303.1601324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669212003,5.291142471,-6.072646298,6.072646298,1,0.431362632,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111745071,83.58407893,-0.111745071,96.41592107,0.602552972,0,0,0,0,7,20,0% +2018-07-13 05:00:00,104.9225333,313.7306578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831243665,5.475632944,-1.660752152,1.660752152,1,0.814159034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095712866,95.49235099,0.095712866,84.50764901,0,0.527604191,0,0,0,7,21,0% +2018-07-13 06:00:00,112.5686595,326.0445669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964693742,5.690551201,-0.580261141,0.580261141,1,0.629384189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284477487,106.527618,0.284477487,73.47238201,0,0.874239167,0,0,0,7,22,0% +2018-07-13 07:00:00,117.9361372,340.2759615,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058373901,5.938935894,0.009082774,-0.009082774,1,0.528600444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441689244,116.2117113,0.441689244,63.78828867,0,0.93679824,0,0,0,7,23,0% +2018-07-14 08:00:00,120.3867057,355.997187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10114439,6.213323041,0.469981874,-0.469981874,1,0.449782056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556637471,123.823574,0.556637471,56.17642605,0,0.96017493,0,0,0,7,0,0% +2018-07-14 09:00:00,119.5567578,12.06721482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086659067,0.21061263,0.936221737,-0.936221737,1,0.370050343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621490066,128.4250288,0.621490066,51.5749712,0,0.969548191,0,0,0,7,1,0% +2018-07-14 10:00:00,115.5753379,27.14599804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01717018,0.473787044,1.531766769,-1.531766769,1,0.268206145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631827198,129.1850589,0.631827198,50.81494111,0,0.970864439,0,0,0,7,2,0% +2018-07-14 11:00:00,108.9816666,40.42842375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902088907,0.705609106,2.528535988,-2.528535988,1,0.097748569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586942693,125.9403513,0.586942693,54.05964873,0,0.964812808,0,0,0,7,3,0% +2018-07-14 12:00:00,100.4420704,51.8288375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753044837,0.904583862,5.155523115,-5.155523115,1,0,#DIV/0!,0,0,0.260077388,1,0.191587673,0,0.940018148,0.978780111,0.724496596,1,0,0,0.039612128,0.312029739,0.893815202,0.618311798,0.961238037,0.922476074,0,0,0,0,0,0,-0.489892586,119.3335218,0.489892586,60.66647817,0,0.94793681,0,0,0,7,4,0% +2018-07-14 13:00:00,89.97466325,61.69488325,0.003507877,0.291196788,0.003379107,0.003303658,0,0.003303658,0.003277214,2.64439E-05,0.099382106,0.098429688,0.000952418,0.000101893,0.000850525,1.570354117,1.076778844,-2237.655074,2237.655074,0,0,0.963291174,2.54731E-05,0.000819304,1,0.997383512,0,0.000446896,0.961238037,1,0.723230136,0.99873354,0.003150183,7.37652E-05,0.115824807,0.310590465,0.724496596,0.448993192,0.961465617,0.922703654,1.84552E-05,0.000787649,0.003168638,0.000861414,0,0.00025754,-0.338017767,109.7561517,0.338017767,70.24384832,0,0.902078782,0.003168638,0.001093736,0.003884467,7,5,23% +2018-07-14 14:00:00,79.63381352,70.52620753,103.6732418,343.5936583,41.84746211,41.36713941,0,41.36713941,40.58560672,0.781532688,83.89436647,57.49573333,26.39863315,1.261855383,25.13677776,1.389872242,1.23091453,-5.466509495,5.466509495,0.53501813,0.53501813,0.403647666,0.564819126,18.16652466,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.01242893,0.91420993,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.409209534,17.4623545,39.42163847,18.37656443,0,57.49573333,-0.167336422,99.63298895,0.167336422,80.36701105,0,0.751200734,39.42163847,61.56740151,79.7162714,7,6,102% +2018-07-14 15:00:00,68.26878563,78.87013442,306.4551719,624.7669948,75.13338788,96.42667993,21.24865237,75.17802755,72.86783902,2.310188533,76.5691533,0,76.5691533,2.265548857,74.30360444,1.191515086,1.376543527,-2.47890391,2.47890391,0.954071225,0.954071225,0.245169261,2.230097874,71.72761355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.04333853,1.641382435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615698319,68.94731044,71.65903685,70.58869288,21.24865237,0,0.034010523,88.05096469,-0.034010523,91.94903531,0,0,71.65903685,70.58869288,117.8579246,7,7,64% +2018-07-14 16:00:00,56.54212533,87.36999647,512.803556,757.461289,95.19716384,282.3331665,186.1408185,96.19234793,92.32661811,3.865729814,127.2057049,0,127.2057049,2.87054573,124.3351592,0.986846253,1.524894106,-1.444242233,1.444242233,0.777133657,0.777133657,0.185640608,3.164125756,101.7691609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.74785714,2.07970061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292398339,97.82438846,91.04025548,99.90408907,186.1408185,0,0.245743012,75.77425234,-0.245743012,104.2257477,0.846535415,0,248.6150505,99.90408907,314.0002787,7,8,26% +2018-07-14 17:00:00,44.73175225,96.98279475,697.3159487,827.8357633,109.2135112,486.2360628,375.0590798,111.176983,105.9203209,5.256662169,172.3655153,0,172.3655153,3.293190317,169.072325,0.780716357,1.692669086,-0.88283732,0.88283732,0.681127763,0.681127763,0.156619838,3.842985284,123.6036169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8146413,2.385905174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784229757,118.8124981,104.5988711,121.1984033,375.0590798,0,0.453059769,63.05983431,-0.453059769,116.9401657,0.939639285,0,457.0191167,121.1984033,536.3410476,7,9,17% +2018-07-14 18:00:00,33.21982449,109.6000762,844.6430012,867.2799652,119.0984333,678.4488799,556.574428,121.8744519,115.5071761,6.367275722,208.3847318,0,208.3847318,3.591257192,204.7934746,0.579795314,1.91288219,-0.50459003,0.50459003,0.616443667,0.616443667,0.141004464,4.269429154,137.3195176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0298912,2.60185361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093186888,131.9967436,114.1230781,134.5985972,556.574428,0,0.641747129,50.07777776,-0.641747129,129.9222222,0.972087692,0,655.1622293,134.5985972,743.2543191,7,10,13% +2018-07-14 19:00:00,22.90025566,129.914631,943.7451497,888.4313596,125.33669,838.4510567,709.7793808,128.671676,121.5573264,7.114349578,232.6013015,0,232.6013015,3.779363647,228.8219379,0.399684861,2.267438057,-0.211755737,0.211755737,0.566366053,0.566366053,0.132807771,4.439041186,142.7748236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8455258,2.738136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.216070228,137.2405912,120.061596,139.9787273,709.7793808,0,0.79891302,36.97357156,-0.79891302,143.0264284,0.987414964,0,820.9083778,139.9787273,912.5216553,7,11,11% +2018-07-14 20:00:00,16.5745256,167.7644035,987.4514305,896.7015067,128.0083195,951.0240773,819.4318549,131.5922224,124.1483964,7.443825984,243.2789548,0,243.2789548,3.859923134,239.4190316,0.289280044,2.928041209,0.040209668,-0.040209668,0.523277431,0.523277431,0.129635054,4.355214259,140.0786615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.3361608,2.796501171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155337905,134.6489376,122.4914987,137.4454388,819.4318549,0,0.913829015,23.96002475,-0.913829015,156.0399752,0.995285169,0,938.059871,137.4454388,1028.015162,7,12,10% +2018-07-14 21:00:00,18.94693659,214.0266075,972.6354861,893.9631824,127.107507,1005.486179,874.8792954,130.6068838,123.2747467,7.332137137,239.6594947,0,239.6594947,3.832760312,235.8267344,0.330686427,3.735468988,0.277822744,-0.277822744,0.482643202,0.482643202,0.1306836,4.034532297,129.7644273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4963755,2.776821799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.923004915,124.7345033,121.4193804,127.5113251,874.8792954,0,0.978652491,11.86005944,-0.978652491,168.1399406,0.998909342,0,995.3444815,127.5113251,1078.798094,7,13,8% +2018-07-14 22:00:00,27.85320748,241.7288019,900.3407161,879.6077084,122.6377722,995.6231066,869.8961672,125.7269395,118.9397908,6.787148624,221.9960117,0,221.9960117,3.697981316,218.2980304,0.486130178,4.218963491,0.522930981,-0.522930981,0.440727225,0.440727225,0.136212625,3.508326247,112.8398319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3294511,2.679174875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541770423,108.4659385,116.8712215,111.1451134,869.8961672,0,0.988959236,8.521922608,-0.988959236,171.4780774,0.999441799,0,986.2818116,111.1451134,1059.024065,7,14,7% +2018-07-14 23:00:00,38.95546475,257.2624971,775.7379618,850.2144643,114.5815312,919.616068,802.6417524,116.9743157,111.1264753,5.847840429,191.5417059,0,191.5417059,3.455055926,188.08665,0.679901121,4.490077616,0.802011595,-0.802011595,0.393001629,0.393001629,0.14770649,2.822514146,90.78175726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8189949,2.503176257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.04490189,87.26287813,108.8638968,89.76605439,802.6417524,0,0.944046221,19.25743651,-0.944046221,160.7425635,0.997036492,0,909.1270136,89.76605439,967.8771009,7,15,6% +2018-07-14 00:00:00,50.6873489,268.0202664,607.9456404,797.4546205,102.716891,779.6343011,675.4317523,104.2025488,99.61959774,4.582951035,150.5007523,0,150.5007523,3.097293248,147.4034591,0.884661127,4.67783611,1.16130713,-1.16130713,0.331558474,0.331558474,0.168957361,2.037106108,65.52033495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.75814657,2.243978415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475876441,62.98063814,97.23402301,65.22461655,675.4317523,0,0.846984562,32.11480716,-0.846984562,147.8851928,0.990967047,0,766.5646319,65.22461655,809.252839,7,16,6% +2018-07-14 01:00:00,62.49929094,276.9130707,410.0066294,701.5685733,86.05061246,580.7516426,494.2049704,86.54667216,83.455869,3.09080316,102.0055977,0,102.0055977,2.594743459,99.4108542,1.090818407,4.833044825,1.712877046,-1.712877046,0.237234463,0.237234463,0.209876149,1.22804025,39.49799581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22095568,1.879882803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889710981,37.96697595,81.11066666,39.84685875,494.2049704,0,0.704428604,45.21659973,-0.704428604,134.7834003,0.979020486,0,564.9474569,39.84685875,591.0264291,7,17,5% +2018-07-14 02:00:00,74.08968074,285.2374339,200.6896375,510.1969778,60.82810089,328.9979373,268.4911449,60.50679248,58.99390922,1.512883259,50.4937178,0,50.4937178,1.834191674,48.65952612,1.293108871,4.978332371,2.865327999,-2.865327999,0.040153743,0.040153743,0.303095375,0.500883429,16.11013285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.70718948,1.328865624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.362888339,15.48567247,57.07007782,16.8145381,268.4911449,0,0.526249971,58.24757113,-0.526249971,121.7524289,0.954988118,0,313.475931,16.8145381,324.4807099,7,18,4% +2018-07-14 03:00:00,85.14015469,293.7500547,24.57842151,110.723333,15.19809221,50.9969933,36.07189713,14.92509618,14.73981365,0.185282523,6.417601409,0,6.417601409,0.458278555,5.959322854,1.485976025,5.126905632,8.495962783,-8.495962783,0,0,0.618351028,0.114569639,3.684953414,0.47990929,1,0.117163886,0,0.949271406,0.988033369,0.724496596,1,14.28923439,0.332021253,0.06686908,0.312029739,0.827936402,0.552432998,0.961238037,0.922476074,0.078440062,3.542117385,14.36767445,3.874138638,18.7606586,0,0.325784061,70.98691613,-0.325784061,109.0130839,0.896524106,0,31.18705713,3.874138638,33.72260339,7,19,8% +2018-07-14 04:00:00,95.72896799,303.0321793,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670785681,5.288909268,-5.99424736,5.99424736,1,0.44476964,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110849325,83.63572226,-0.110849325,96.36427774,0.598937263,0,0,0,0,7,20,0% +2018-07-14 05:00:00,105.0287129,313.6119913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833096849,5.473561822,-1.655382707,1.655382707,1,0.813240805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096854466,95.55806515,0.096854466,84.44193485,0,0.533761542,0,0,0,7,21,0% +2018-07-14 06:00:00,112.6926372,325.941104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966857562,5.688745433,-0.580926627,0.580926627,1,0.629497994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285870077,106.6108643,0.285870077,73.38913571,0,0.87509537,0,0,0,7,22,0% +2018-07-14 07:00:00,118.0771376,340.1984462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060834823,5.937582996,0.006492853,-0.006492853,1,0.529043346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44332078,116.3159527,0.44332078,63.6840473,0,0.937214851,0,0,0,7,23,0% +2018-07-15 08:00:00,120.539911,355.9575387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103818327,6.212631047,0.465987299,-0.465987299,1,0.450465168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558479536,123.9507126,0.558479536,56.04928742,0,0.960471205,0,0,0,7,0,0% +2018-07-15 09:00:00,119.7139382,12.0707215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089402382,0.210673833,0.93035588,-0.93035588,1,0.371053464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623499813,128.5721623,0.623499813,51.42783775,0,0.969807514,0,0,0,7,1,0% +2018-07-15 10:00:00,115.7282828,27.1874786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019839573,0.474511017,1.522345922,-1.522345922,1,0.269817204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633950294,129.3421732,0.633950294,50.65782683,0,0.971129463,0,0,0,7,2,0% +2018-07-15 11:00:00,109.1252632,40.49736133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904595139,0.706812294,2.509792281,-2.509792281,1,0.100953932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589117053,126.0943766,0.589117053,53.90562341,0,0.965127223,0,0,0,7,3,0% +2018-07-15 12:00:00,100.5746434,51.91612731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75535867,0.906107356,5.091965051,-5.091965051,1,0,#DIV/0!,0,0,0.254078486,1,0.193919925,0,0.939708117,0.97847008,0.724496596,1,0,0,0.03879671,0.312029739,0.895876663,0.620373259,0.961238037,0.922476074,0,0,0,0,0,0,-0.492052647,119.4755856,0.492052647,60.5244144,0,0.948384857,0,0,0,7,4,0% +2018-07-15 13:00:00,90.07614619,61.79541474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572125329,1.07853345,744.7425883,-744.7425883,1,0,#DIV/0!,0,0,0.992177008,1,0.001342745,0,0.961119437,0.999881401,0.724496596,1,0,0,0.115212273,0.312029739,0.725671896,0.450168492,0.961238037,0.922476074,0,0,0,0,0,0,-0.339768057,109.8627435,0.339768057,70.1372565,0,0.902840787,0,0,0,7,5,0% +2018-07-15 14:00:00,79.74629804,70.63861821,101.7376121,338.8975673,41.41143041,40.92966409,0,40.92966409,40.16272299,0.766941094,83.2796389,57.36346954,25.91616936,1.248707419,24.66746194,1.391835467,1.232876467,-5.527689259,5.527689259,0.524555774,0.524555774,0.407041502,0.550726062,17.71324328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.605937,0.904684274,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.398999157,17.02664319,39.00493616,17.93132747,0,57.36346954,-0.16926492,99.7450827,0.16926492,80.2549173,0,0.754605065,39.00493616,61.21809213,79.07095309,7,6,103% +2018-07-15 15:00:00,68.37561058,78.99610255,304.4111189,622.5621984,74.98430914,95.10079532,20.08276017,75.01803515,72.72325556,2.294779598,76.0690537,0,76.0690537,2.261053583,73.80800012,1.193379533,1.378742086,-2.491543675,2.491543675,0.956232752,0.956232752,0.246325789,2.219083433,71.37335126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.9043594,1.638125624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.607718393,68.60678005,71.5120778,70.24490567,20.08276017,0,0.032258239,88.15141835,-0.032258239,91.84858165,0,0,71.5120778,70.24490567,117.4859637,7,7,64% +2018-07-15 16:00:00,56.64587685,87.51400756,510.9426709,756.2320583,95.15713544,280.8206912,184.6811928,96.13949839,92.28779672,3.851701677,126.7533048,0,126.7533048,2.869338726,123.8839661,0.988657059,1.527407573,-1.448799043,1.448799043,0.777912918,0.777912918,0.18623838,3.155599256,101.4949194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71054054,2.078826139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286220919,97.56077705,90.99676146,99.63960319,184.6811928,0,0.24421233,75.86471034,-0.24421233,104.1352897,0.845260133,0,247.100411,99.63960319,312.3125385,7,8,26% +2018-07-15 17:00:00,44.83687445,97.15225636,695.6859491,827.0267184,109.2271604,484.8062042,373.6282712,111.177933,105.9335585,5.244374543,171.9707146,0,171.9707146,3.29360189,168.6771127,0.782551085,1.695626749,-0.884744685,0.884744685,0.681453942,0.681453942,0.15700642,3.836090679,123.3818627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8273658,2.386203357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779234638,118.5993395,104.6066004,120.9855428,373.6282712,0,0.451772915,63.14251066,-0.451772915,116.8574893,0.939324928,0,455.5649493,120.9855428,534.7475673,7,9,17% +2018-07-15 18:00:00,33.33379734,109.8029502,843.2379627,866.6769281,119.1438097,677.1950118,555.2871436,121.9078682,115.5511843,6.356683948,208.0454322,0,208.0454322,3.592625457,204.4528067,0.581784516,1.91642301,-0.505295257,0.505295257,0.616564268,0.616564268,0.141293223,4.263689427,137.1349083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0721935,2.602844914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.089028476,131.81929,114.161222,134.422135,555.2871436,0,0.640708349,50.15534041,-0.640708349,129.8446596,0.971961373,0,653.8788764,134.422135,741.8554752,7,10,13% +2018-07-15 19:00:00,23.03577475,130.1304568,942.5331728,887.9344288,125.402008,837.3943797,708.6684917,128.7258879,121.6206748,7.105213184,232.3094132,0,232.3094132,3.781333225,228.52808,0.402050115,2.271204928,-0.211766944,0.211766944,0.56636797,0.56636797,0.133047846,4.434091967,142.6156398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9064186,2.739563049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212484536,137.0875776,120.1189032,139.8271406,708.6684917,0,0.798109037,37.05009381,-0.798109037,142.9499062,0.987351918,0,819.8240981,139.8271406,911.3381651,7,11,11% +2018-07-15 20:00:00,16.73425095,167.781106,986.3834335,896.2540856,128.0852227,950.1449576,818.4862021,131.6587556,124.2229806,7.435774972,243.0223254,0,243.0223254,3.862242048,239.1600834,0.292067777,2.928332722,0.040706837,-0.040706837,0.52319241,0.52319241,0.12985338,4.350727611,139.9343555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.407854,2.798181216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152087344,134.5102252,122.5599414,137.3084064,818.4862021,0,0.913230093,24.04438585,-0.913230093,155.9556141,0.995249286,0,937.1577492,137.3084064,1027.023355,7,12,10% +2018-07-15 21:00:00,19.07502974,213.7320956,971.6508683,893.5244081,127.1886092,1004.736672,874.0585542,130.678118,123.3534034,7.324714672,239.4232082,0,239.4232082,3.835205843,235.5880024,0.332922074,3.730328785,0.27879903,-0.27879903,0.482476248,0.482476248,0.130899496,4.030203379,129.6251944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5719833,2.778593578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919868629,124.6006674,121.4918519,127.379261,874.0585542,0,0.978214525,11.98154327,-0.978214525,168.0184567,0.998886467,0,994.5771135,127.379261,1077.944292,7,13,8% +2018-07-15 22:00:00,27.94088688,241.4420533,899.3728405,879.1372276,122.7153336,994.9334951,869.1386292,125.7948659,119.0150136,6.779852368,221.7636778,0,221.7636778,3.700320081,218.0633578,0.487660472,4.213958784,0.52448136,-0.52448136,0.440462095,0.440462095,0.136445452,3.503885312,112.6969962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.401758,2.680869302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.538552981,108.3286394,116.940311,111.0095087,869.1386292,0,0.988626806,8.649506466,-0.988626806,171.3504935,0.999424798,0,985.5790103,111.0095087,1058.232513,7,14,7% +2018-07-15 23:00:00,39.02496853,257.0325464,774.7200691,849.6564372,114.6460789,918.8979733,801.8687296,117.0292437,111.1890766,5.840167124,191.2968524,0,191.2968524,3.457002277,187.8398501,0.681114191,4.48606422,0.80440821,-0.80440821,0.392591784,0.392591784,0.147983876,2.817754526,90.62867154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8791697,2.504586382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041453562,87.11572631,108.9206233,89.62031269,801.8687296,0,0.943756434,19.30771572,-0.943756434,160.6922843,0.997020229,0,908.3999675,89.62031269,967.0546697,7,15,6% +2018-07-15 00:00:00,50.75151698,267.8298667,606.8182278,796.7062656,102.7542633,778.7787457,674.5484504,104.2302953,99.65584318,4.574452122,150.228525,0,150.228525,3.098420163,147.1301048,0.885781072,4.67451301,1.165215942,-1.165215942,0.330890028,0.330890028,0.169332856,2.031936547,65.3540641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.79298706,2.24479486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472131112,62.82081227,97.26511817,65.06560713,674.5484504,0,0.846671452,32.14853721,-0.846671452,147.8514628,0.990945216,0,765.7056778,65.06560713,808.2898164,7,16,6% +2018-07-15 01:00:00,62.56513798,276.7475307,408.7308333,700.3907334,86.03287896,579.6144876,493.0946317,86.5198559,83.43867023,3.08118567,101.6957314,0,101.6957314,2.594208728,99.10152266,1.091967655,4.830155607,1.720205857,-1.720205857,0.235981163,0.235981163,0.210487861,1.222607861,39.3232715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20442357,1.879495393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885775234,37.7990243,81.09019881,39.67851969,493.0946317,0,0.704027921,45.24893535,-0.704027921,134.7510647,0.978980089,0,563.8200255,39.67851969,589.788823,7,17,5% +2018-07-15 02:00:00,74.16172419,285.0876031,199.2984333,507.9094929,60.67825827,327.3615763,267.0105956,60.35098068,58.8485849,1.502395775,50.15188593,0,50.15188593,1.829673366,48.32221256,1.294366266,4.97571733,2.884363357,-2.884363357,0.036898505,0.036898505,0.304459284,0.495976447,15.95230744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.56749822,1.325592125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.359333247,15.33396468,56.92683147,16.65955681,267.0105956,0,0.52570507,58.28427963,-0.52570507,121.7157204,0.954889637,0,311.8924822,16.65955681,322.795829,7,18,3% +2018-07-15 03:00:00,85.22034953,293.6106781,23.68349236,106.9432354,14.77256304,49.27023671,34.76458478,14.50565193,14.32711576,0.178536169,6.187784201,0,6.187784201,0.445447281,5.74233692,1.487375689,5.124473053,8.659284137,-8.659284137,0,0,0.623749353,0.11136182,3.581778941,0.487355919,1,0.114973684,0,0.949524642,0.988286605,0.724496596,1,13.88864488,0.322725039,0.067710786,0.312029739,0.825995957,0.550492553,0.961238037,0.922476074,0.076256205,3.442942157,13.96490109,3.765667196,17.82185863,0,0.325075117,71.029874,-0.325075117,108.970126,0.896189396,0,29.93666181,3.765667196,32.40121568,7,19,8% +2018-07-15 04:00:00,95.82477239,302.9011878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.672457783,5.286623035,-5.912880219,5.912880219,1,0.45868424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109872412,83.69203924,-0.109872412,96.30796076,0.594926712,0,0,0,0,7,20,0% +2018-07-15 05:00:00,105.1408366,313.4909063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835053778,5.471448491,-1.649533632,1.649533632,1,0.812240554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098082743,95.62877697,0.098082743,84.37122303,0,0.54022633,0,0,0,7,21,0% +2018-07-15 06:00:00,112.8228382,325.8361608,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969129998,5.686913828,-0.581458685,0.581458685,1,0.629588981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287352284,106.6995073,0.287352284,73.30049268,0,0.875997555,0,0,0,7,22,0% +2018-07-15 07:00:00,118.2244939,340.1208513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063406674,5.936228709,0.003929702,-0.003929702,1,0.529481671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445042093,116.4260319,0.445042093,63.57396812,0,0.937651077,0,0,0,7,23,0% +2018-07-16 08:00:00,120.6993048,355.9196042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106600274,6.211968966,0.461966866,-0.461966866,1,0.451152703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560408749,124.0840702,0.560408749,55.91592984,0,0.960779409,0,0,0,7,0,0% +2018-07-16 09:00:00,119.8767665,12.07770478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092244271,0.210795714,0.924424372,-0.924424372,1,0.372067812,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625591472,128.7256131,0.625591472,51.27438693,0,0.970075637,0,0,0,7,1,0% +2018-07-16 10:00:00,115.8860684,27.23369804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022593451,0.475317698,1.512815766,-1.512815766,1,0.271446957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636147813,129.5051677,0.636147813,50.49483229,0,0.971401915,0,0,0,7,2,0% +2018-07-16 11:00:00,109.2728306,40.57170745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907170678,0.708109878,2.490889503,-2.490889503,1,0.104186497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591356611,126.2533366,0.591356611,53.74666337,0,0.96544865,0,0,0,7,3,0% +2018-07-16 12:00:00,100.7104075,52.00911695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757728202,0.907730332,5.02857767,-5.02857767,1,0,#DIV/0!,0,0,0.247998023,1,0.196302427,0,0.939390166,0.978152129,0.724496596,1,0,0,0.037965952,0.312029739,0.897982306,0.622478901,0.961238037,0.922476074,0,0,0,0,0,0,-0.494267581,119.6214654,0.494267581,60.3785346,0,0.94884022,0,0,0,7,4,0% +2018-07-16 13:00:00,90.17953027,61.90180579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573929721,1.080390324,315.9592218,-315.9592218,1,0,#DIV/0!,0,0,0.981652068,1,0.003164955,0,0.960957791,0.999719754,0.724496596,1,0,0,0.11438318,0.312029739,0.727267542,0.451764138,0.961238037,0.922476074,0,0,0,0,0,0,-0.341552312,109.9714776,0.341552312,70.02852242,0,0.90360954,0,0,0,7,5,0% +2018-07-16 14:00:00,79.86085571,70.75709015,99.81026462,334.3661025,40.94869183,40.46634962,0,40.46634962,39.71393768,0.752411935,82.68729418,57.25238582,25.43490836,1.234754143,24.20015422,1.393834876,1.234944192,-5.5913494,5.5913494,0.513669249,0.513669249,0.410265337,0.536615601,17.25940233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17454749,0.894575173,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.388776176,16.59039401,38.56332367,17.48496918,0,57.25238582,-0.171226645,99.85914642,0.171226645,80.14085358,0,0.757989372,38.56332367,60.88166917,78.40915851,7,6,103% +2018-07-16 15:00:00,68.48425041,79.12849563,302.3860088,620.5623155,74.79045548,93.73047223,18.91571146,74.81476077,72.5352473,2.279513463,75.57219692,0,75.57219692,2.25520818,73.31698874,1.195275655,1.381052781,-2.504476888,2.504476888,0.958444462,0.958444462,0.247334378,2.208216151,71.02382212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.72363872,1.63389065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.599845085,68.27079935,71.32348381,69.90469,18.91571146,0,0.030481566,88.25326433,-0.030481566,91.74673567,0,0,71.32348381,69.90469,117.0747053,7,7,64% +2018-07-16 16:00:00,56.75134979,87.66508164,509.1099435,755.1860492,95.06142408,279.28993,183.2570728,96.03285721,92.19497141,3.837885803,126.3060527,0,126.3060527,2.866452675,123.4396001,0.990497909,1.530044314,-1.453407255,1.453407255,0.778700968,0.778700968,0.186720816,3.147151192,101.2232006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.62131332,2.076735206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280100325,97.29959061,90.90141365,99.37632582,183.2570728,0,0.242664802,75.95612735,-0.242664802,104.0438727,0.84395446,0,245.5620376,99.37632582,310.6018553,7,8,26% +2018-07-16 17:00:00,44.94387114,97.32983412,694.0885845,826.3783339,109.1787045,483.3813258,372.2624291,111.1188966,105.8865637,5.232332934,171.581954,0,171.581954,3.292140767,168.2898132,0.78441853,1.698726066,-0.886639424,0.886639424,0.681777961,0.681777961,0.15729794,3.829197216,123.1601453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7821926,2.385144779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.774240348,118.3862162,104.556433,120.771361,372.2624291,0,0.450474575,63.2258637,-0.450474575,116.7741363,0.939005945,0,454.1130669,120.771361,533.1555072,7,9,17% +2018-07-16 18:00:00,33.4501907,110.0155405,841.8658907,866.2185148,119.1231973,675.9636134,554.0860793,121.8775341,115.5311934,6.34634069,207.7121359,0,207.7121359,3.592003918,204.120132,0.583815963,1.92013341,-0.505961411,0.505961411,0.616678187,0.616678187,0.141499019,4.257873233,136.9478395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0529776,2.602394611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.084814663,131.6394724,114.1377922,134.241867,554.0860793,0,0.639660859,50.23346474,-0.639660859,129.7665353,0.971833579,0,652.6172498,134.241867,740.4758669,7,10,13% +2018-07-16 19:00:00,23.17493295,130.3576979,941.3508659,887.5721808,125.3990129,836.3721186,707.6580481,128.7140705,121.61777,7.096300456,232.0226589,0,232.0226589,3.781242913,228.241416,0.404478884,2.275171033,-0.211722758,0.211722758,0.566360414,0.566360414,0.133211768,4.428987814,142.4514726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9036265,2.739497619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.208786595,136.9297739,120.1124131,139.6692715,707.6580481,0,0.797296337,37.12730838,-0.797296337,142.8726916,0.98728806,0,818.7747546,139.6692715,910.1854994,7,11,11% +2018-07-16 20:00:00,16.89958718,167.8079644,985.33868,895.9364945,128.0925951,949.307291,817.6492611,131.6580299,124.2301308,7.427899179,242.7692352,0,242.7692352,3.862464354,238.9067708,0.294953438,2.92880149,0.041274316,-0.041274316,0.523095366,0.523095366,0.129998545,4.346006426,139.782506,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.414727,2.798342276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148666861,134.3642616,122.5633939,137.1626039,817.6492611,0,0.912619662,24.13008247,-0.912619662,155.8699175,0.995212664,0,936.2982933,137.1626039,1026.068474,7,12,10% +2018-07-16 21:00:00,19.20987344,213.4381223,970.6804901,893.2150727,127.1999143,1004.031439,873.3496718,130.6817672,123.3643676,7.317399552,239.1882697,0,239.1882697,3.835546735,235.352723,0.33527554,3.725197984,0.279863917,-0.279863917,0.482294141,0.482294141,0.131042002,4.025560186,129.4758534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5825225,2.778840553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916504652,124.4571151,121.4990272,127.2359557,873.3496718,0,0.977759667,12.10644081,-0.977759667,167.8935592,0.998862689,0,993.8554289,127.2359557,1077.128817,7,13,8% +2018-07-16 22:00:00,28.03469659,241.1502359,898.4082402,878.8000438,122.7238401,994.28746,868.4916157,125.7958443,119.0232635,6.772580804,221.5300558,0,221.5300558,3.700576581,217.8294792,0.48929776,4.208865609,0.526147275,-0.526147275,0.440177206,0.440177206,0.136601419,3.499052478,112.5415556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4096881,2.681055136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.535051609,108.179224,116.9447398,110.8602791,868.4916157,0,0.988269882,8.784443664,-0.988269882,171.2155563,0.999406533,0,984.920934,110.8602791,1057.476769,7,14,7% +2018-07-16 23:00:00,39.0999919,256.797154,773.6931691,849.2397981,114.6435994,918.2198295,801.2007317,117.0190978,111.1866719,5.832425918,191.0477939,0,191.0477939,3.456927511,187.5908664,0.682423596,4.481955846,0.806965725,-0.806965725,0.392154423,0.392154423,0.148177086,2.812531146,90.46066967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8768582,2.504532214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037669241,86.95423653,108.9145274,89.45876874,801.2007317,0,0.94343286,19.36370874,-0.94343286,160.6362913,0.997002058,0,907.7133058,89.45876874,966.2622808,7,15,6% +2018-07-16 00:00:00,50.82090756,267.6345787,605.668799,796.1109333,102.7285201,777.9566656,673.7600021,104.1966634,99.6308762,4.565787243,149.9490564,0,149.9490564,3.097643909,146.8514125,0.886992166,4.67110459,1.169374226,-1.169374226,0.330178919,0.330178919,0.169611709,2.026243496,65.17095599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.76898785,2.244232468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468006515,62.6448018,97.23699437,64.88903427,673.7600021,0,0.846314218,32.18698192,-0.846314218,147.8130181,0.990920288,0,764.8794499,64.88903427,807.3480251,7,16,6% +2018-07-16 01:00:00,62.63612781,276.5776718,407.4198028,699.3754576,85.95894998,578.4995949,492.0613218,86.43827306,83.36697049,3.071302569,101.3756276,0,101.3756276,2.591979497,98.78364814,1.093206661,4.82719101,1.728000839,-1.728000839,0.234648142,0.234648142,0.210983731,1.216619523,39.13066596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.13550305,1.877880322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881436703,37.61388453,81.01693975,39.49176485,492.0613218,0,0.703572475,45.28566844,-0.703572475,134.7143316,0.978934116,0,562.7125548,39.49176485,588.559125,7,17,5% +2018-07-16 02:00:00,74.23896619,284.9339318,197.8601979,505.7565384,60.48367814,325.7218284,265.5704026,60.15142583,58.65987208,1.491553748,49.79730177,0,49.79730177,1.823806057,47.97349572,1.295714393,4.97303526,2.904695989,-2.904695989,0.03342142,0.03342142,0.30568896,0.490562812,15.77818633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.38610028,1.32134128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.355411087,15.16659285,56.74151137,16.48793413,265.5704026,0,0.525095342,58.32533813,-0.525095342,121.6746619,0.954779197,0,310.3026072,16.48793413,321.0936303,7,18,3% +2018-07-16 03:00:00,85.30573718,293.4678881,22.76375807,103.1444092,14.32255244,47.51150838,33.44923092,14.06227747,13.89067464,0.171602824,5.951214494,0,5.951214494,0.431877801,5.519336693,1.488865985,5.121980897,8.838427829,-8.838427829,0,0,0.629182247,0.10796945,3.472668661,0.495282529,1,0.112663184,0,0.949790588,0.988552551,0.724496596,1,13.46498697,0.312893996,0.06860139,0.312029739,0.823948926,0.548445522,0.961238037,0.922476074,0.073948011,3.338061206,13.53893499,3.650955202,16.88241125,0,0.324295143,71.0771231,-0.324295143,108.9228769,0.895819461,0,28.66252753,3.650955202,31.05200469,7,19,8% +2018-07-16 04:00:00,95.92622246,302.7672419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674228421,5.284285238,-5.82889887,5.82889887,1,0.473045897,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108813672,83.75306651,-0.108813672,96.24693349,0.590498918,0,0,0,0,7,20,0% +2018-07-16 05:00:00,105.2588974,313.3674811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837114327,5.469294313,-1.643216921,1.643216921,1,0.811160333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099398037,95.70450783,0.099398037,84.29549217,0,0.546971957,0,0,0,7,21,0% +2018-07-16 06:00:00,112.9592414,325.729813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971510683,5.685057708,-0.581855755,0.581855755,1,0.629656884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288924077,106.793553,0.288924077,73.20644695,0,0.876944156,0,0,0,7,22,0% +2018-07-16 07:00:00,118.3781701,340.043255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066088832,5.9348744,0.00139751,-0.00139751,1,0.529914701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446852767,116.5419394,0.446852767,63.45806064,0,0.938106321,0,0,0,7,23,0% +2018-07-17 08:00:00,120.8648349,355.8834677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.109489319,6.211338264,0.457926376,-0.457926376,1,0.451843667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562424317,124.2236218,0.562424317,55.77637821,0,0.96109915,0,0,0,7,0,0% +2018-07-17 09:00:00,120.0451729,12.08824831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095183519,0.210979734,0.918435355,-0.918435355,1,0.373091994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627763903,128.8853393,0.627763903,51.11466065,0,0.970352222,0,0,0,7,1,0% +2018-07-17 10:00:00,116.0486104,27.28472597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025430344,0.476208304,1.503189343,-1.503189343,1,0.273093172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638418331,129.6739793,0.638418331,50.32602072,0,0.971681447,0,0,0,7,2,0% +2018-07-17 11:00:00,109.4242767,40.65150861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90981391,0.709502671,2.47185448,-2.47185448,1,0.107441678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593659736,126.4171466,0.593659736,53.58285344,0,0.96577667,0,0,0,7,3,0% +2018-07-17 12:00:00,100.8492693,52.10782917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760151798,0.909453185,4.965451005,-4.965451005,1,0,#DIV/0!,0,0,0.241843243,1,0.198733254,0,0.939064476,0.977826439,0.724496596,1,0,0,0.037120645,0.312029739,0.900130414,0.62462701,0.961238037,0.922476074,0,0,0,0,0,0,-0.496535642,119.7710634,0.496535642,60.22893665,0,0.949302294,0,0,0,7,4,0% +2018-07-17 13:00:00,90.91474094,62.01405879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586761568,1.082349508,62.02336921,-62.02336921,1,0,#DIV/0!,0,0,0.909718506,1,0.016121558,0,0.959785288,0.998547251,0.724496596,1,0,0,0.108558489,0.312029739,0.738633743,0.463130339,0.961238037,0.922476074,0,0,0,0,0,0,-0.353661913,110.7114584,0.353661913,69.28854159,0,0.90862204,0,0,0,7,5,0% +2018-07-17 14:00:00,79.97740343,70.8816085,97.8922333,329.9982453,40.46047487,39.97839527,0,39.97839527,39.24044227,0.737953004,82.11740156,57.16226364,24.95513792,1.220032601,23.73510532,1.395869017,1.237117448,-5.657562058,5.657562058,0.502346217,0.502346217,0.413316496,0.52249636,16.80527901,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.71940569,0.883909466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.378546834,16.1538734,38.09795253,17.03778287,0,57.16226364,-0.173219902,99.97508401,0.173219902,80.02491599,0,0.761349565,38.09795253,60.55824743,77.73211431,7,6,104% +2018-07-17 15:00:00,68.59463244,79.26728244,300.3808634,618.7688687,74.5524986,92.31639724,17.74753371,74.56886353,72.3044657,2.26439783,75.07885092,0,75.07885092,2.248032902,72.83081802,1.197202185,1.383475068,-2.517699742,2.517699742,0.960705703,0.960705703,0.248193236,2.197503627,70.67927051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50180266,1.628692185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592083897,67.93960323,71.09388656,69.56829541,17.74753371,0,0.028682008,88.35641658,-0.028682008,91.64358342,0,0,71.09388656,69.56829541,116.6249445,7,7,64% +2018-07-17 16:00:00,56.8584828,87.82316824,507.3061837,754.3243212,94.91041012,277.7416526,181.8688532,95.87279937,92.04851107,3.824288299,125.8641567,0,125.8641567,2.861899047,123.0022576,0.992367732,1.532803445,-1.458063251,1.458063251,0.779497191,0.779497191,0.187087036,3.138786181,100.9541531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.48053007,2.073436117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274039903,97.04097192,90.75456998,99.11440804,181.8688532,0,0.24110167,76.0484291,-0.24110167,103.9515709,0.842618607,0,244.0006498,99.11440804,308.8690476,7,8,27% +2018-07-17 17:00:00,45.05269386,97.51544774,692.5243303,825.8912267,109.0683781,481.9620913,370.9619863,111.000105,105.779564,5.220540926,171.1993557,0,171.1993557,3.288814018,167.9105417,0.786317845,1.701965635,-0.888519115,0.888519115,0.682099407,0.682099407,0.15749393,3.822306852,122.9385274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6793405,2.382734561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.769248302,118.1731888,104.4485888,120.5559233,370.9619863,0,0.44916567,63.3098332,-0.44916567,116.6901668,0.938682499,0,452.6641131,120.5559233,531.5655538,7,9,17% +2018-07-17 18:00:00,33.56896909,110.2377075,840.5268875,865.9050679,119.0367475,674.7550891,552.971492,121.7835971,115.4473504,6.336246718,207.3848723,0,207.3848723,3.589397137,203.7954752,0.585889037,1.924010956,-0.506586807,0.506586807,0.616785136,0.616785136,0.141621582,4.251980377,136.758305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9723845,2.600506007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080545309,131.4572846,114.0529298,134.0577906,552.971492,0,0.638605215,50.31210765,-0.638605215,129.6878923,0.971704366,0,651.377743,134.0577906,739.1158858,7,10,13% +2018-07-17 19:00:00,23.31769683,130.5960954,940.1979675,887.344789,125.327804,835.384343,706.7480253,128.6363177,121.5487083,7.08760942,231.7409782,0,231.7409782,3.779095701,227.9618825,0.406970584,2.279331854,-0.211621919,0.211621919,0.566343169,0.566343169,0.133299378,4.423726847,142.2822619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8372418,2.737941971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204975042,136.7671221,120.0422168,139.505064,706.7480253,0,0.796475095,37.20519506,-0.796475095,142.7948049,0.987223398,0,817.7604039,139.505064,909.0636782,7,11,11% +2018-07-17 20:00:00,17.07046857,167.8448483,984.3165872,895.7487976,128.0305025,948.5107963,816.9206916,131.5901047,124.1699105,7.420194212,242.5195446,0,242.5195446,3.860592033,238.6589526,0.297935881,2.929445235,0.04191313,-0.04191313,0.522986122,0.522986122,0.130070451,4.341047591,139.6230128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.356841,2.796985786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.145074202,134.2109507,122.5019152,137.0079365,816.9206916,0,0.911997531,24.21712831,-0.911997531,155.7828717,0.99517529,0,935.4812015,137.0079365,1025.150156,7,12,10% +2018-07-17 21:00:00,19.35145092,213.1452186,969.723516,893.0351645,127.1414688,1003.369878,872.7520082,130.6178699,123.3076844,7.310185477,238.9544779,0,238.9544779,3.833784385,235.1206935,0.337746534,3.72008585,0.281018346,-0.281018346,0.482096722,0.482096722,0.13111105,4.020598832,129.3162791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5280365,2.777563736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912910167,124.3037263,121.4409466,127.08129,872.7520082,0,0.977287393,12.23479114,-0.977287393,167.7652089,0.998837977,0,993.178797,127.08129,1076.35096,7,13,8% +2018-07-17 22:00:00,28.13468069,240.8537496,897.4459147,878.596086,122.6633324,993.684147,867.9542403,125.7299067,118.9645803,6.765326387,221.2949043,0,221.2949043,3.698752051,217.5961523,0.491042812,4.203690946,0.527929753,-0.527929753,0.439872385,0.439872385,0.136680473,3.493823543,112.3733751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3532797,2.67973327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531263264,108.0175625,116.8845429,110.6972957,867.9542403,0,0.98788767,8.926697404,-0.98788767,171.0733026,0.999386958,0,984.3066909,110.6972957,1056.755857,7,14,7% +2018-07-17 23:00:00,39.18058797,256.5565615,772.6561948,848.9644165,114.5741448,917.580623,800.6367026,116.9439204,111.1193116,5.824608768,190.7942731,0,190.7942731,3.4548332,187.3394399,0.683830263,4.477756716,0.809685573,-0.809685573,0.391689302,0.391689302,0.148286063,2.806839941,90.27762094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8121089,2.503014892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033545982,86.77828312,108.8456549,89.28129802,800.6367026,0,0.943074512,19.42553815,-0.943074512,160.5744619,0.99698192,0,907.0659719,89.28129802,965.4987958,7,15,6% +2018-07-17 00:00:00,50.8955674,267.4345675,604.4963212,795.668389,102.639749,777.166989,673.0652585,104.1017305,99.54478185,4.55694861,149.6620988,0,149.6620988,3.094967132,146.5671317,0.888295226,4.667613736,1.173784697,-1.173784697,0.329424685,0.329424685,0.169793836,2.020023498,64.97089949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.68623068,2.242293152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463500148,62.45249988,97.14973083,64.69479303,673.0652585,0,0.845911774,32.23024309,-0.845911774,147.7697569,0.990892181,0,764.0848328,64.69479303,806.426281,7,16,6% +2018-07-17 01:00:00,62.71229679,276.4036203,406.0726361,698.5221475,85.82899008,577.4058809,491.1038044,86.30207641,83.24092935,3.061147057,101.0450727,0,101.0450727,2.588060726,98.45701197,1.09453606,4.824153239,1.736269509,-1.736269509,0.233234116,0.233234116,0.211363639,1.210073096,38.92011038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.01434751,1.875041186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876693839,37.41149049,80.89104135,39.28653168,491.1038044,0,0.703061179,45.3268783,-0.703061179,134.6731217,0.978882434,0,561.6239286,39.28653168,587.3361779,7,17,5% +2018-07-17 02:00:00,74.32143102,284.776524,196.374309,503.7355123,60.24465281,324.0772853,264.1688786,59.90840673,58.42805424,1.48035249,49.42982331,0,49.42982331,1.816598561,47.61322475,1.297153676,4.970287976,2.926364353,-2.926364353,0.029715912,0.029715912,0.306784799,0.484644194,15.58782322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.16326816,1.316119474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.351123069,14.98360859,56.51439123,16.29972807,264.1688786,0,0.524419804,58.37080705,-0.524419804,121.6291929,0.954656537,0,308.7049381,16.29972807,319.3727841,7,18,3% +2018-07-17 03:00:00,85.39631643,293.3217748,21.82101946,99.32386747,13.84898715,45.7215506,32.12566545,13.59588515,13.43138909,0.164496062,5.708356864,0,5.708356864,0.41759806,5.290758804,1.490446891,5.119430738,9.034858417,-9.034858417,0,0,0.634662701,0.104399515,3.357847273,0.503696985,1,0.110233739,0,0.950068897,0.98883086,0.724496596,1,13.01913377,0.302548373,0.069540819,0.312029739,0.821796522,0.546293118,0.961238037,0.922476074,0.071520282,3.227690521,13.09065405,3.530238894,15.94406462,0,0.323443562,71.12869472,-0.323443562,108.8713053,0.895413525,0,27.36718516,3.530238894,29.67765591,7,19,8% +2018-07-17 04:00:00,96.03331799,302.6304221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676097591,5.281897282,-5.742655804,5.742655804,1,0.48779433,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107672566,83.81883351,-0.107672566,96.18116649,0.585629158,0,0,0,0,7,20,0% +2018-07-17 05:00:00,105.382882,313.2417893,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839278266,5.467100578,-1.636446156,1.636446156,1,0.810002464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100800558,95.78527202,0.100800558,84.21472798,0,0.553971,0,0,0,7,21,0% +2018-07-17 06:00:00,113.1018204,325.6221308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973999156,5.6831783,-0.582116875,0.582116875,1,0.629701538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290585305,106.8930006,0.290585305,73.10699938,0,0.877933488,0,0,0,7,22,0% +2018-07-17 07:00:00,118.5381266,339.9657295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068880598,5.933521323,-0.001099879,0.001099879,1,0.53034178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448752276,116.6636594,0.448752276,63.33634056,0,0.938579952,0,0,0,7,23,0% +2018-07-18 08:00:00,121.0364463,355.8492065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112484503,6.210740294,0.453871347,-0.453871347,1,0.452537118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564525353,124.3693374,0.564525353,55.63066256,0,0.961430019,0,0,0,7,0,0% +2018-07-18 09:00:00,120.2190864,12.10242924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098218881,0.211227238,0.912396636,-0.912396636,1,0.374124675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.630015898,129.0512955,0.630015898,50.94870453,0,0.970636923,0,0,0,7,1,0% +2018-07-18 10:00:00,116.2158241,27.3406255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028348774,0.477183934,1.493479144,-1.493479144,1,0.274753714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640760379,129.8485424,0.640760379,50.15145756,0,0.97196771,0,0,0,7,2,0% +2018-07-18 11:00:00,109.5795099,40.73680471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912523241,0.710991369,2.452712631,-2.452712631,1,0.110715127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596024779,126.5857208,0.596024779,53.41427919,0,0.96611087,0,0,0,7,3,0% +2018-07-18 12:00:00,100.9911376,52.21228022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.762627866,0.9112762,4.902666636,-4.902666636,1,0,#DIV/0!,0,0,0.235621087,1,0.201210541,0,0.938731224,0.977493187,0.724496596,1,0,0,0.036261556,0.312029739,0.902319322,0.626815918,0.961238037,0.922476074,0,0,0,0,0,0,-0.498855092,119.9242824,0.498855092,60.07571764,0,0.949770493,0,0,0,7,4,0% +2018-07-18 13:00:00,91.04428724,62.13216978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589022578,1.084410934,54.34341936,-54.34341936,1,0,#DIV/0!,0,0,0.897573709,1,0.018399415,0,0.959574971,0.998336934,0.724496596,1,0,0,0.107546996,0.312029739,0.740635403,0.465131999,0.961238037,0.922476074,0,0,0,0,0,0,-0.355870382,110.8467975,0.355870382,69.15320251,0,0.909499406,0,0,0,7,5,0% +2018-07-18 14:00:00,80.09586224,71.01215212,95.95016382,325.5224494,39.96022376,39.47858844,0,39.47858844,38.75527558,0.723312864,81.51472561,57.04554934,24.46917628,1.204948184,23.26422809,1.397936513,1.239395863,-5.726405919,5.726405919,0.490573224,0.490573224,0.416468531,0.508296141,16.34855115,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.25304501,0.872980857,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.368258824,15.71484921,37.62130384,16.58783007,0,57.04554934,-0.175243058,100.0928029,0.175243058,79.90719714,0,0.764681993,37.62130384,60.2095344,77.02723991,7,6,105% +2018-07-18 15:00:00,68.70668886,79.41242533,298.3448258,616.9344906,74.3097173,90.88952378,16.57146931,74.31805447,72.06900515,2.249049318,74.57786927,0,74.57786927,2.24071215,72.33715712,1.199157939,1.386008289,-2.531208928,2.531208928,0.96301591,0.96301591,0.249073256,2.18658795,70.32818483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.27546903,1.623388325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.584175527,67.60212632,70.85964456,69.22551465,16.57146931,0,0.026860987,88.46079368,-0.026860987,91.53920632,0,0,70.85964456,69.22551465,116.1663594,7,7,64% +2018-07-18 16:00:00,56.96721996,87.98820979,505.4734316,753.4446104,94.75663547,276.1779771,180.4681316,95.70984553,91.89937329,3.81047224,125.4151478,0,125.4151478,2.857262174,122.5578856,0.994265554,1.535683964,-1.462763665,1.462763665,0.780301009,0.780301009,0.187461159,3.130249737,100.6795917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.33717317,2.070076719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267855279,96.77705308,90.60502845,98.8471298,180.4681316,0,0.239524086,76.14154676,-0.239524086,103.8584532,0.841252726,0,242.4243361,98.8471298,307.1178056,7,8,27% +2018-07-18 17:00:00,45.16329999,97.70900846,690.9314955,825.3935896,108.9559089,480.5290827,369.650063,110.8790197,105.6704862,5.208533464,170.8097631,0,170.8097631,3.285422657,167.5243404,0.788248286,1.705343906,-0.890381511,0.890381511,0.682417896,0.682417896,0.157694228,3.815244306,122.7113717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5744907,2.380277531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764131512,117.954838,104.3386222,120.3351156,369.650063,0,0.447847024,63.39436505,-0.447847024,116.6056349,0.938354734,0,451.2015089,120.3351156,529.9584353,7,9,17% +2018-07-18 18:00:00,33.69010283,110.4693001,839.157061,865.5836237,118.948248,673.5332529,551.8458131,121.6874398,115.3615194,6.325920387,207.0500734,0,207.0500734,3.586728548,203.4633449,0.58800322,1.928053009,-0.507169904,0.507169904,0.616884851,0.616884851,0.1417473,4.245896967,136.5626416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8898805,2.598572624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.076137899,131.2692056,113.9660183,133.8677782,551.8458131,0,0.637541883,50.39123286,-0.637541883,129.6087671,0.97157378,0,650.1249409,133.8677782,737.7387244,7,10,13% +2018-07-18 19:00:00,23.46403756,130.8453714,939.0092711,887.1098833,125.2543499,834.3810258,705.8249082,128.5561176,121.4774691,7.078648525,231.45055,0,231.45055,3.776880789,227.6736693,0.409524711,2.283682543,-0.211463297,0.211463297,0.566316043,0.566316043,0.133389897,4.418245375,142.1059589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7687639,2.736337275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.201003734,136.5976529,119.9697677,139.3339902,705.8249082,0,0.795645412,37.28374105,-0.795645412,142.716259,0.987157936,0,816.7304271,139.3339902,907.921737,7,11,11% +2018-07-18 20:00:00,17.24682953,167.8915889,983.2512757,895.5528379,127.9657603,947.6934059,816.174122,131.5192839,124.1071205,7.412163443,242.2592953,0,242.2592953,3.858639816,238.4006555,0.301013961,2.930261013,0.042624185,-0.042624185,0.522864525,0.522864525,0.130145532,4.335830801,139.4552229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2964848,2.795571411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141294656,134.0496647,122.4377795,136.8452361,816.174122,0,0.911363448,24.30554484,-0.911363448,155.6944552,0.995137146,0,934.6429657,136.8452361,1024.205436,7,12,10% +2018-07-18 21:00:00,19.49973722,212.8538817,968.7139657,892.845071,127.0797898,1002.678959,872.1285185,130.5504403,123.2478652,7.30257506,238.7078409,0,238.7078409,3.831924536,234.8759164,0.340334618,3.715001061,0.282263141,-0.282263141,0.48188385,0.48188385,0.131184017,4.01533848,129.1470881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.470536,2.776216282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90909906,124.1410935,121.3796351,126.9173098,872.1285185,0,0.976797147,12.36663819,-0.976797147,167.6333618,0.998812299,0,992.4723259,126.9173098,1075.537167,7,13,8% +2018-07-18 22:00:00,28.24087423,240.5529893,896.4204001,878.3783661,122.5988236,993.0401266,867.3805143,125.6596123,118.9020167,6.757595626,221.0443113,0,221.0443113,3.696806872,217.3475044,0.492896239,4.198441689,0.529829703,-0.529829703,0.439547474,0.439547474,0.136764875,3.488255276,112.1942805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2931411,2.678323995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527229073,107.8454099,116.8203702,110.5237339,867.3805143,0,0.987479369,9.076218166,-0.987479369,170.9237818,0.999366031,0,983.6509919,110.5237339,1055.986565,7,14,7% +2018-07-18 23:00:00,39.26680159,256.3110107,771.5449952,848.6687155,114.4996719,916.8867022,800.0233857,116.8633164,111.0470844,5.816232076,190.5226043,0,190.5226043,3.452587567,187.0700167,0.685334974,4.473471045,0.812569068,-0.812569068,0.391196195,0.391196195,0.148403104,2.80077497,90.08255062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7426814,2.501387939,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029151931,86.59077411,108.7718333,89.09216205,800.0233857,0,0.942680425,19.49331608,-0.942680425,160.5066839,0.996959756,0,906.3629525,89.09216205,964.6719908,7,15,6% +2018-07-18 00:00:00,50.97553534,267.2299981,603.239187,795.1925682,102.5444637,776.3058033,672.3059617,103.9998416,99.45236977,4.547471801,149.3544189,0,149.3544189,3.092093929,146.2623249,0.88969093,4.664043326,1.178449973,-1.178449973,0.328626875,0.328626875,0.169989725,2.013408639,64.75814289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.59740068,2.240211526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458707705,62.24799014,97.05610838,64.48820166,672.3059617,0,0.845463085,32.27841442,-0.845463085,147.7215856,0.990860812,0,763.2177398,64.48820166,805.423978,7,16,6% +2018-07-18 01:00:00,62.79367354,276.2255015,404.6326115,697.6062016,85.68975489,576.2196743,490.0634902,86.15618417,83.10589262,3.050291543,100.6917236,0,100.6917236,2.583862272,98.10786134,1.095956353,4.82104448,1.745019462,-1.745019462,0.231737786,0.231737786,0.211771747,1.203138747,38.69707786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88454507,1.87199942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.871669927,37.19710316,80.756215,39.06910258,490.0634902,0,0.702493024,45.37263654,-0.702493024,134.6273635,0.978824916,0,560.4425696,39.06910258,586.0125159,7,17,5% +2018-07-18 02:00:00,74.40913525,284.6154821,194.7948529,501.5722381,59.98916322,322.3108485,262.662134,59.6487145,58.18026861,1.468445883,49.03916195,0,49.03916195,1.808894608,47.23026734,1.298684404,4.967477265,2.949409003,-2.949409003,0.025775045,0.025775045,0.30796072,0.478416825,15.38752965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.92508718,1.310537985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346611361,14.79107879,56.27169855,16.10161678,262.662134,0,0.523677576,58.42073906,-0.523677576,121.5792609,0.954521404,0,306.9883274,16.10161678,317.5265135,7,18,3% +2018-07-18 03:00:00,85.49207711,293.1724258,20.84249663,95.32168936,13.35050265,43.84820117,30.74314589,13.10505528,12.94793574,0.157119543,5.456071527,0,5.456071527,0.402566913,5.053504614,1.49211823,5.116824106,9.250255822,-9.250255822,0,0,0.640542392,0.100641728,3.236983934,0.5126072,1,0.107686916,0,0.950359188,0.989121151,0.724496596,1,12.549806,0.291658358,0.070528939,0.312029739,0.819540147,0.544036743,0.961238037,0.922476074,0.068965929,3.111512082,12.61877193,3.40317044,14.98398796,0,0.322519944,71.18461095,-0.322519944,108.815389,0.894970827,0,26.02900403,3.40317044,28.25631102,7,19,9% +2018-07-18 04:00:00,96.14605164,302.4908055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678065164,5.279460512,-5.654498951,5.654498951,1,0.50287004,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106448687,83.88936194,-0.106448687,96.11063806,0.580290122,0,0,0,0,7,20,0% +2018-07-18 05:00:00,105.5127705,313.1139002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841545248,5.464868493,-1.629236443,1.629236443,1,0.808769531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102290383,95.87107624,0.102290383,84.12892376,0,0.561195495,0,0,0,7,21,0% +2018-07-18 06:00:00,113.2505431,325.5131789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976594857,5.68127673,-0.582241688,0.582241688,1,0.629722882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292335685,106.9978419,0.292335685,73.00215808,0,0.878963747,0,0,0,7,22,0% +2018-07-18 07:00:00,118.7043186,339.8883401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071781197,5.932170624,-0.003558977,0.003558977,1,0.530762311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450739974,116.7911698,0.450739974,63.20883016,0,0.939071299,0,0,0,7,23,0% +2018-07-19 08:00:00,121.2140806,355.8168913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115584807,6.210176288,0.449806993,-0.449806993,1,0.453232164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566710868,124.5211816,0.566710868,55.47881842,0,0.961771588,0,0,0,7,0,0% +2018-07-19 09:00:00,120.3984337,12.12031787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101349083,0.211539453,0.906315679,-0.906315679,1,0.37516458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632346173,129.2234318,0.632346173,50.77656816,0,0.970929386,0,0,0,7,1,0% +2018-07-19 10:00:00,116.3876247,27.40145276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03134726,0.478245571,1.483697099,-1.483697099,1,0.276426542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643172442,130.0287894,0.643172442,49.97121063,0,0.972260351,0,0,0,7,2,0% +2018-07-19 11:00:00,109.7384401,40.82762869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915297096,0.712576546,2.43348796,-2.43348796,1,0.114002739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.598450077,126.758973,0.598450077,53.24102697,0,0.966450842,0,0,0,7,3,0% +2018-07-19 12:00:00,101.1359233,52.3224795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765154853,0.91319954,4.840298063,-4.840298063,1,0,#DIV/0!,0,0,0.229338188,1,0.203732479,0,0.93839058,0.977152543,0.724496596,1,0,0,0.035389424,0.312029739,0.904547417,0.629044013,0.961238037,0.922476074,0,0,0,0,0,0,-0.50122421,120.0810262,0.50122421,59.91897382,0,0.950244244,0,0,0,7,4,0% +2018-07-19 13:00:00,91.17614039,62.25612813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591323849,1.086574415,48.26403872,-48.26403872,1,0,#DIV/0!,0,0,0.885366889,1,0.020716396,0,0.959359761,0.998121725,0.724496596,1,0,0,0.106521898,0.312029739,0.74267239,0.467168986,0.961238037,0.922476074,0,0,0,0,0,0,-0.358117833,110.9846506,0.358117833,69.01534936,0,0.91038115,0,0,0,7,5,0% +2018-07-19 14:00:00,80.21615733,71.14869336,93.98586485,320.9398723,39.44803605,38.96703737,0,38.96703737,38.25853222,0.708505149,80.87835227,56.90088737,23.9774649,1.189503835,22.78796106,1.400036059,1.241778958,-5.797966751,5.797966751,0.478335601,0.478335601,0.419723073,0.494033687,15.8898216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.7755564,0.861791479,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.357925724,15.27390092,37.13348213,16.1356924,0,56.90088737,-0.177294541,100.212214,0.177294541,79.78778604,0,0.767983421,37.13348213,59.83463053,76.29405111,7,6,105% +2018-07-19 15:00:00,68.82035683,79.56388004,296.2790423,615.0594598,74.06218124,89.45110189,15.38869211,74.06240978,71.82893321,2.233476569,74.06953202,0,74.06953202,2.233248025,71.836284,1.201141819,1.388651672,-2.545001669,2.545001669,0.965374607,0.965374607,0.249974418,2.175473339,69.97070071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04470275,1.617980592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576123028,67.25849899,70.62082578,68.87647958,15.38869211,0,0.025019845,88.56631889,-0.025019845,91.43368111,0,0,70.62082578,68.87647958,115.6991041,7,7,64% +2018-07-19 16:00:00,57.07751086,88.16014164,503.6124601,752.547062,94.60014661,274.5999099,179.0558633,95.5440466,91.74760315,3.796443451,124.959215,0,124.959215,2.852543458,122.1066716,0.996190493,1.538684741,-1.46750539,1.46750539,0.781111892,0.781111892,0.187843142,3.121544085,100.399588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19128594,2.066658025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261548064,96.50790289,90.452834,98.57456092,179.0558633,0,0.23793311,76.23541708,-0.23793311,103.7645829,0.839856906,0,240.8341373,98.57456092,305.349216,7,8,27% +2018-07-19 17:00:00,45.27565269,97.91041901,689.3104754,824.8854497,108.8413173,479.0829939,368.3273304,110.7556635,105.55935,5.196313529,170.4132726,0,170.4132726,3.281967298,167.1313053,0.79020921,1.708859184,-0.892224553,0.892224553,0.682733074,0.682733074,0.15789883,3.80801003,122.4786925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4676624,2.377774135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758890304,117.7311779,104.2265527,120.1089521,368.3273304,0,0.446519369,63.47941141,-0.446519369,116.5205886,0.938022775,0,449.7259771,120.1089521,528.3348841,7,9,17% +2018-07-19 18:00:00,33.81356797,110.7101552,837.7564386,865.2541325,118.8576961,672.2984293,550.7093694,121.5890599,115.273698,6.315361904,206.7077458,0,206.7077458,3.583998075,203.1237477,0.590158093,1.932256723,-0.50770931,0.50770931,0.616977095,0.616977095,0.141876195,4.239621981,136.3608165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8054632,2.596594405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.071591693,131.0752036,113.8770549,133.671798,550.7093694,0,0.636471239,50.47081091,-0.636471239,129.5291891,0.971441855,0,648.8591861,133.671798,736.3447044,7,10,13% +2018-07-19 19:00:00,23.6139307,131.10523,937.7844724,886.8673604,125.1786286,833.362105,704.8886584,128.4734465,121.4040311,7.069415475,231.1513001,0,231.1513001,3.774597511,227.3767026,0.41214084,2.28821793,-0.211245891,0.211245891,0.566278865,0.566278865,0.133483367,4.412541248,141.9224946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6981725,2.734683048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196871113,136.4213,119.8950436,139.1559831,704.8886584,0,0.794807307,37.36294089,-0.794807307,142.6370591,0.98709167,0,815.6847669,139.1559831,906.7595748,7,11,11% +2018-07-19 20:00:00,17.42860465,167.947982,982.1421691,895.3484677,127.8983303,946.8546905,815.4091642,131.4455263,124.0417238,7.403802529,241.9883463,0,241.9883463,3.856606554,238.1317397,0.304186535,2.931245257,0.043408267,-0.043408267,0.522730439,0.522730439,0.130223846,4.330353174,139.2790436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2336231,2.79409832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137326134,133.8803144,122.3709492,136.6744127,815.4091642,0,0.910717105,24.39536107,-0.910717105,155.6046389,0.995098209,0,933.7831482,136.6744127,1023.233818,7,12,10% +2018-07-19 21:00:00,19.65469928,212.5645742,967.6510705,892.644598,127.0148267,1001.957934,871.4785105,130.4794235,123.184861,7.294562507,238.4481708,0,238.4481708,3.829965659,234.6182051,0.343039216,3.709951694,0.283599009,-0.283599009,0.481655403,0.481655403,0.131260979,4.009775944,128.9681779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.409974,2.774797082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905069022,123.9691181,121.315043,126.7439152,871.4785105,0,0.976288337,12.50203017,-0.976288337,167.4979698,0.998785622,0,991.7352491,126.7439152,1074.686607,7,13,8% +2018-07-19 22:00:00,28.35330322,240.2483442,895.3308295,878.1466279,122.5302536,992.3544069,866.7695106,125.5848963,118.8355144,6.749381982,220.7780646,0,220.7780646,3.694739234,217.0833254,0.494858495,4.193124629,0.531847918,-0.531847918,0.439202339,0.439202339,0.136854724,3.482344634,112.0041739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2292165,2.676825998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522946833,107.6626723,116.7521634,110.3394983,866.7695106,0,0.987044171,9.232944683,-0.987044171,170.7670553,0.999343706,0,982.9528181,110.3394983,1055.167813,7,14,7% +2018-07-19 23:00:00,39.35866931,256.060742,770.3587074,848.3523364,114.4201129,916.1369156,799.3597019,116.7772137,110.9699244,5.807289337,190.2325761,0,190.2325761,3.45018857,186.7823875,0.686938369,4.469103034,0.815617409,-0.815617409,0.390674898,0.390674898,0.148528357,2.794333795,89.87538032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6685122,2.499649874,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.024485323,86.39163414,108.6929976,88.89128401,799.3597019,0,0.942249662,19.56714391,-0.942249662,160.4328561,0.996935508,0,905.6030677,88.89128401,963.7806353,7,15,6% +2018-07-19 00:00:00,51.06084229,267.0210348,601.8966458,794.6829024,102.4425849,775.371877,671.4809629,103.8909141,99.35356295,4.537351158,149.0258322,0,149.0258322,3.089021906,145.9368103,0.891179817,4.660396229,1.183372577,-1.183372577,0.32778506,0.32778506,0.170199627,2.006397592,64.5326435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.50242381,2.237985856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453628225,62.03123155,96.95605203,64.26921741,671.4809629,0,0.84496717,32.33158144,-0.84496717,147.6684186,0.990826103,0,762.2769179,64.26921741,804.3398353,7,16,6% +2018-07-19 01:00:00,62.88027897,276.0434396,403.0992163,696.6264996,85.54112867,574.9396903,488.9392101,86.00048019,82.96174803,3.038732162,100.3154526,0,100.3154526,2.579380643,97.73607191,1.097467903,4.817866899,1.754258387,-1.754258387,0.230157837,0.230157837,0.212208621,1.195817015,38.4615858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.74598781,1.868752495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866365357,36.97073923,80.61235316,38.83949172,488.9392101,0,0.701867084,45.42300696,-0.701867084,134.576993,0.978761441,0,559.1671988,38.83949172,584.5868693,7,17,5% +2018-07-19 02:00:00,74.50208793,284.4509067,193.1218516,499.2638115,59.71693359,320.4210949,261.0490131,59.37208181,57.91624771,1.455834092,48.62531469,0,48.62531469,1.80068588,46.82462881,1.300306734,4.964604882,2.973872773,-2.973872773,0.021591494,0.021591494,0.309218937,0.471885228,15.17745103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.67130025,1.30459079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.341879241,14.58914323,56.01317949,15.89373402,261.0490131,0,0.522867885,58.47517909,-0.522867885,121.5248209,0.954373549,0,305.1514527,15.89373402,315.5535838,7,18,3% +2018-07-19 03:00:00,85.59300001,293.0199261,19.83183898,91.14825204,12.8279307,41.89697334,29.3063513,12.59062204,12.44112126,0.149500779,5.195268407,0,5.195268407,0.386809441,4.808458966,1.493879667,5.114162484,9.486554706,-9.486554706,0,0,0.646835158,0.09670236,3.110280315,0.522021134,1,0.105024491,0,0.950661051,0.989423014,0.724496596,1,12.05779103,0.280242123,0.071565553,0.312029739,0.8171814,0.541677996,0.961238037,0.922476074,0.066289139,2.989719744,12.12408017,3.269961867,14.00781656,0,0.321524008,71.24488452,-0.321524008,108.7551155,0.894490617,0,24.65394065,3.269961867,26.79406529,7,19,9% +2018-07-19 04:00:00,96.26440915,302.3484657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680130892,5.276976214,-5.564768288,5.564768288,1,0.518214887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105141761,83.96466592,-0.105141761,96.03533408,0.574451564,0,0,0,0,7,20,0% +2018-07-19 05:00:00,105.6485368,312.9838785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843914816,5.462599186,-1.62160426,1.62160426,1,0.80746435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.103867455,95.96191973,0.103867455,84.03808027,0,0.568617261,0,0,0,7,21,0% +2018-07-19 06:00:00,113.4053721,325.4030162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979297132,5.679354029,-0.582230415,0.582230415,1,0.629720955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294174807,107.1080618,0.294174807,72.89193823,0,0.880033032,0,0,0,7,22,0% +2018-07-19 07:00:00,118.8766975,339.8111458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074789775,5.93082333,-0.005976657,0.005976657,1,0.531175758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452815101,116.9244419,0.452815101,63.07555813,0,0.939579654,0,0,0,7,23,0% +2018-07-20 08:00:00,121.3976767,355.7865861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118789164,6.209647362,0.445738227,-0.445738227,1,0.453927964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568979782,124.6791134,0.568979782,55.32088657,0,0.962123415,0,0,0,7,0,0% +2018-07-20 09:00:00,120.5831404,12.14197777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104572822,0.21191749,0.90019959,-0.90019959,1,0.376210493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634753375,129.4016952,0.634753375,50.59830485,0,0.971229249,0,0,0,7,1,0% +2018-07-20 10:00:00,116.5639271,27.46725721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034424317,0.479394075,1.473854561,-1.473854561,1,0.278109715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645652965,130.2146502,0.645652965,49.78534981,0,0.972559017,0,0,0,7,2,0% +2018-07-20 11:00:00,109.9009781,40.92400682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918133919,0.714258662,2.414203053,-2.414203053,1,0.117300653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600933952,126.9368164,0.600933952,53.06318364,0,0.966796181,0,0,0,7,3,0% +2018-07-20 12:00:00,101.2835399,52.43842995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767731249,0.915223257,4.778411049,-4.778411049,1,0,#DIV/0!,0,0,0.223000869,1,0.20629732,0,0.938042711,0.976804674,0.724496596,1,0,0,0.034504962,0.312029739,0.906813141,0.631309737,0.961238037,0.922476074,0,0,0,0,0,0,-0.50364129,120.2411996,0.50364129,59.75880037,0,0.950722993,0,0,0,7,4,0% +2018-07-20 13:00:00,91.31022103,62.38591705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593663998,1.088839659,43.33673632,-43.33673632,1,0,#DIV/0!,0,0,0.873110371,1,0.023071017,0,0.959139733,0.997901697,0.724496596,1,0,0,0.105484008,0.312029739,0.744743412,0.469240008,0.961238037,0.922476074,0,0,0,0,0,0,-0.360402627,111.1249248,0.360402627,68.8750752,0,0.911266272,0,0,0,7,5,0% +2018-07-20 14:00:00,80.33821815,71.29119855,92.00109047,316.2516151,38.92399818,38.4438391,0,38.4438391,37.75029602,0.693543081,80.20738383,56.72695214,23.4804317,1.173702159,22.30672954,1.402166422,1.244266142,-5.872337978,5.872337978,0.465617372,0.465617372,0.423081922,0.479727218,15.42967638,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.28702043,0.850343219,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.347560736,14.83159184,36.63458117,15.68193505,0,56.72695214,-0.179372846,100.333232,0.179372846,79.66676802,0,0.771251008,36.63458117,59.43265405,75.53206459,7,6,106% +2018-07-20 15:00:00,68.93557844,79.72159623,294.1845723,613.1439812,73.80994988,88.00231208,14.20031695,73.80199513,71.58430756,2.21768757,73.55409782,0,73.55409782,2.225642319,71.3284555,1.203152815,1.391404339,-2.559075739,2.559075739,0.967781415,0.967781415,0.250896739,2.164163576,69.60693987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80955927,1.612470283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567929144,66.90883823,70.37748841,68.52130852,14.20031695,0,0.023159841,88.67292022,-0.023159841,91.32707978,0,0,70.37748841,68.52130852,115.2233144,7,7,64% +2018-07-20 16:00:00,57.18931052,88.33889259,501.7239535,751.631779,94.44098261,273.0083676,177.6329219,95.37544563,91.59323854,3.78220709,124.4965254,0,124.4965254,2.847744076,121.6487813,0.998141766,1.541804533,-1.472285585,1.472285585,0.781929353,0.781929353,0.188232956,3.112671091,100.114202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.0429048,2.063180889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.25511961,96.23357903,90.29802441,98.29675992,177.6329219,0,0.236329712,76.32998229,-0.236329712,103.6700177,0.838431173,0,239.2310035,98.29675992,303.5642669,7,8,27% +2018-07-20 17:00:00,45.38972086,98.11957437,687.6615849,824.366808,108.7246179,477.6244228,366.9943698,110.630053,105.4461695,5.183883497,170.0099611,0,170.0099611,3.278448381,166.7315127,0.792200076,1.712509633,-0.894046365,0.894046365,0.683044623,0.683044623,0.158107738,3.800604208,122.2404958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.358869,2.375224692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753524811,117.5022142,104.1123938,119.8774389,366.9943698,0,0.445183341,63.56493054,-0.445183341,116.4350695,0.937686723,0,448.2381417,119.8774389,526.6955279,7,9,18% +2018-07-20 18:00:00,33.93934614,110.9600993,836.3249837,864.9165276,118.765085,671.0508514,549.5624009,121.4884505,115.1838795,6.304570992,206.3578804,0,206.3578804,3.58120551,202.7766749,0.592353336,1.93661907,-0.50820378,0.50820378,0.617061654,0.617061654,0.142008295,4.233154235,136.1527916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7191262,2.594571201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066905833,130.8752421,113.7860321,133.4698133,549.5624009,0,0.635393571,50.55081901,-0.635393571,129.449181,0.971308615,0,647.5807266,133.4698133,734.93405,7,10,13% +2018-07-20 19:00:00,23.76735615,131.3753588,936.5232251,886.6171065,125.1006152,832.3274413,703.9391635,128.3882777,121.3283701,7.05990766,230.8431437,0,230.8431437,3.77224512,227.0708986,0.414818619,2.292932567,-0.210968825,0.210968825,0.566231484,0.566231484,0.133579832,4.40661228,141.7317986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6254443,2.732978748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.192575596,136.2379958,119.8180198,138.9709746,703.9391635,0,0.793960728,37.44279627,-0.793960728,142.5572037,0.987024593,0,814.6232862,138.9709746,905.5770097,7,11,11% +2018-07-20 20:00:00,17.61572899,168.0137916,980.9886759,895.1355341,127.8281735,945.9941655,814.6253761,131.3687894,123.9736824,7.395107011,241.706553,0,241.706553,3.854491065,237.852062,0.307452471,2.932393852,0.044266047,-0.044266047,0.52258375,0.52258375,0.130305453,4.324611919,139.0943851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1682191,2.792565656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.133166614,133.7028136,122.3013857,136.4953793,814.6253761,0,0.910058137,24.4866132,-0.910058137,155.5133868,0.995058455,0,932.9012539,136.4953793,1022.23475,7,12,10% +2018-07-20 21:00:00,19.81629678,212.2777237,966.5340762,892.4335502,126.9465294,1001.206029,870.8012641,130.4047653,123.1186232,7.286142132,238.1752832,0,238.1752832,3.827906245,234.3473769,0.345859624,3.704945207,0.285026549,-0.285026549,0.481411279,0.481411279,0.131342011,4.003908254,128.7794528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3463036,2.773305044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9008179,123.7877084,121.2471215,126.5610134,870.8012641,0,0.97576034,12.64101895,-0.97576034,167.3589811,0.998757909,0,990.9667714,126.5610134,1073.798423,7,13,8% +2018-07-20 22:00:00,28.47198511,239.9401957,894.1763803,877.9006185,122.4575648,991.6260006,866.1203039,125.5056966,118.7650174,6.740679256,220.4959632,0,220.4959632,3.692547398,216.8034158,0.496929885,4.187746423,0.533985083,-0.533985083,0.438836862,0.438836862,0.136950122,3.476088905,111.8029682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1614522,2.67523802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.518414579,107.4692656,116.6798667,110.1445037,866.1203039,0,0.986581266,9.396805443,-0.986581266,170.6031946,0.999319938,0,982.2111549,110.1445037,1054.29853,7,14,7% +2018-07-20 23:00:00,39.45621984,255.8059945,769.0965418,848.0149287,114.3354041,915.3301498,798.6446054,116.6855444,110.8877698,5.7977746,189.9239951,0,189.9239951,3.447634286,186.4763608,0.688640947,4.46465685,0.818831692,-0.818831692,0.390125223,0.390125223,0.148661966,2.787514408,89.65604537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5895421,2.497799304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019544699,86.18080104,108.6090868,88.67860034,798.6446054,0,0.941781304,19.64711236,-0.941781304,160.3528876,0.996909118,0,904.785176,88.67860034,962.8235464,7,15,6% +2018-07-20 00:00:00,51.15151177,266.8078406,600.4680456,794.1388352,102.3340385,774.3640478,670.5891763,103.7748715,99.2482897,4.526581766,148.6761785,0,148.6761785,3.085748834,145.5904296,0.892762298,4.656675289,1.188554967,-1.188554967,0.32689882,0.32689882,0.170423787,1.998989532,64.29437482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.40123116,2.235614526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.448261111,61.80219863,96.84949227,64.03781316,670.5891763,0,0.844423099,32.3898217,-0.844423099,147.6101783,0.990787977,0,761.2611856,64.03781316,803.1726536,7,16,6% +2018-07-20 01:00:00,62.97212679,275.8575569,401.4720569,695.5819308,85.38300159,573.5647381,487.7298831,85.83485501,82.80838906,3.026465947,99.91616081,0,99.91616081,2.574612528,97.34154828,1.099070949,4.814622635,1.763994124,-1.763994124,0.228492928,0.228492928,0.21267483,1.188109009,38.21366983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.59857333,1.865298012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860780933,36.73243297,80.45935427,38.59773098,487.7298831,0,0.701182508,45.47804602,-0.701182508,134.521954,0.978691889,0,557.796635,38.59773098,583.0580779,7,17,5% +2018-07-20 02:00:00,74.60029109,284.2828962,191.3554736,496.8073002,59.42768921,318.4067119,259.3284684,59.0782435,57.63572511,1.442518389,48.18831411,0,48.18831411,1.791964094,46.39635002,1.302020702,4.961672545,2.999801066,-2.999801066,0.017157494,0.017157494,0.310561742,0.465054621,14.95775523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.40165126,1.298271886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33693049,14.37796328,55.73858175,15.67623516,259.3284684,0,0.521990052,58.53416485,-0.521990052,121.4658352,0.954212734,0,303.1931086,15.67623516,313.452891,7,18,3% +2018-07-20 03:00:00,85.6990573,292.864358,18.79306873,86.81580596,12.28230575,39.87423168,27.82061268,12.053619,11.91194891,0.14167009,4.926953927,0,4.926953927,0.370356835,4.556597091,1.495730716,5.111447309,9.745993778,-9.745993778,0,0,0.653555091,0.092589209,2.977987228,0.53194683,1,0.102248439,0,0.950974048,0.989736011,0.724496596,1,11.54406871,0.268322266,0.07265041,0.312029739,0.814722057,0.539218653,0.961238037,0.922476074,0.06349507,2.862554597,11.60756378,3.130876863,13.02152596,0,0.320455617,71.30951909,-0.320455617,108.6904809,0.893972153,0,23.24844538,3.130876863,25.29754167,7,19,9% +2018-07-20 04:00:00,96.38836993,302.2034726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682294416,5.274445607,-5.473792495,5.473792495,1,0.533772664,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103751632,84.04475251,-0.103751632,95.95524749,0.568079868,0,0,0,0,7,20,0% +2018-07-20 05:00:00,105.790149,312.8517842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846386416,5.460293704,-1.613567247,1.613567247,1,0.80608994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105531597,96.05779497,0.105531597,83.94220503,0,0.576208248,0,0,0,7,21,0% +2018-07-20 06:00:00,113.5662648,325.2916961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98210524,5.677411126,-0.582083815,0.582083815,1,0.629695885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296102146,107.2236386,0.296102146,72.77636139,0,0.881139353,0,0,0,7,22,0% +2018-07-20 07:00:00,119.0552107,339.7341994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077905418,5.929480361,-0.008350133,0.008350133,1,0.531581647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454976795,117.0634412,0.454976795,62.93655883,0,0.940104285,0,0,0,7,23,0% +2018-07-21 08:00:00,121.587171,355.7583483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122096463,6.20915452,0.441669656,-0.441669656,1,0.45462373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571330928,124.8430877,0.571330928,55.15691235,0,0.962485046,0,0,0,7,0,0% +2018-07-21 09:00:00,120.7731307,12.1674664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10788878,0.21236235,0.894055114,-0.894055114,1,0.37726126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637236089,129.586029,0.637236089,50.41397098,0,0.971536145,0,0,0,7,1,0% +2018-07-21 10:00:00,116.7446464,27.53808224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037578464,0.480630205,1.463962301,-1.463962301,1,0.279801392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648200355,130.4060534,0.648200355,49.59394662,0,0.972863356,0,0,0,7,2,0% +2018-07-21 11:00:00,110.0670364,41.02595942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921032183,0.716038071,2.394879084,-2.394879084,1,0.120605246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603474722,127.1191637,0.603474722,52.8808363,0,0.967146488,0,0,0,7,3,0% +2018-07-21 12:00:00,101.4339035,52.56012878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77035559,0.917347302,4.717064036,-4.717064036,1,0,#DIV/0!,0,0,0.216615135,1,0.208903381,0,0.937687774,0.976449737,0.724496596,1,0,0,0.033608853,0.312029739,0.909114991,0.633611587,0.961238037,0.922476074,0,0,0,0,0,0,-0.506104647,120.4047088,0.506104647,59.59529124,0,0.951206202,0,0,0,7,4,0% +2018-07-21 13:00:00,91.44645329,62.52151425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596041699,1.091206277,39.26593527,-39.26593527,1,0,#DIV/0!,0,0,0.860815668,1,0.025461864,0,0.958914958,0.997676921,0.724496596,1,0,0,0.104434102,0.312029739,0.746847231,0.471343827,0.961238037,0.922476074,0,0,0,0,0,0,-0.362723166,111.2675295,0.362723166,68.73247053,0,0.912153828,0,0,0,7,5,0% +2018-07-21 14:00:00,80.46197828,71.43962877,89.9975431,311.4587298,38.38818601,37.90908006,0,37.90908006,37.23064056,0.678439495,79.50094057,56.52244885,22.97849173,1.157545446,21.82094628,1.404326444,1.246856738,-5.949621255,5.949621255,0.452401153,0.452401153,0.426547044,0.465394448,14.96868522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.78750785,0.838637735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337176693,14.3884696,36.12468454,15.22710733,0,56.52244885,-0.181476528,100.4557752,0.181476528,79.5442248,0,0.774482276,36.12468454,59.00274213,74.74079921,7,6,107% +2018-07-21 15:00:00,69.0523006,79.88551833,292.0623911,611.1881865,73.55307274,86.54426815,13.00740226,73.53686589,71.33517622,2.201689672,73.03180463,0,73.03180463,2.217896525,70.8139081,1.205190002,1.394265319,-2.573429465,2.573429465,0.970236047,0.970236047,0.251840275,2.152662025,69.23701046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.57008475,1.606858482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559596309,66.55324802,70.12968106,68.1601065,13.00740226,0,0.021282156,88.78053022,-0.021282156,91.21946978,0,0,70.12968106,68.1601065,114.7391076,7,7,64% +2018-07-21 16:00:00,57.30257918,88.52438585,499.8085108,750.6988233,94.27917532,271.4041809,176.2001029,95.20407801,91.43631034,3.767767674,124.027225,0,124.027225,2.842864989,121.18436,1.000118677,1.545042001,-1.477101663,1.477101663,0.782752951,0.782752951,0.188630592,3.103632273,99.82348255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89205944,2.059646007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248571016,95.9541284,90.14063046,98.01377441,176.2001029,0,0.234714772,76.42518986,-0.234714772,103.5748101,0.836975487,0,237.6157974,98.01377441,301.7638524,7,8,27% +2018-07-21 17:00:00,45.50547888,98.33636293,685.985062,823.8376398,108.6058198,476.1538759,365.6516771,110.5021988,105.3309536,5.171245159,169.5998865,0,169.5998865,3.27486618,166.3250203,0.794220434,1.716293308,-0.895845244,0.895845244,0.683352249,0.683352249,0.158320969,3.793026762,121.9967791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2481191,2.372629399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748034977,117.2679445,103.9961541,119.6405739,365.6516771,0,0.443839489,63.65088651,-0.443839489,116.3491135,0.937346662,0,446.738533,119.6405739,525.0408958,7,9,18% +2018-07-21 18:00:00,34.06742429,111.2189498,834.8625975,864.570726,118.6704039,669.7906659,548.4050657,121.3856003,115.0920534,6.293546907,206.000453,0,206.000453,3.578350524,202.4221025,0.594588722,1.941136864,-0.508652201,0.508652201,0.617138339,0.617138339,0.142143634,4.226492391,135.9385238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6308594,2.592502774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.06207935,130.6692797,113.6929388,133.2617825,548.4050657,0,0.634309085,50.63124063,-0.634309085,129.3687594,0.971174076,0,646.2897214,133.2617825,733.5068929,7,10,13% +2018-07-21 19:00:00,23.92429791,131.6554322,935.2251419,886.3589978,125.0202822,831.2768222,702.9762406,128.3005816,121.2504594,7.05012216,230.5259861,0,230.5259861,3.769822785,226.7561633,0.41755777,2.29782077,-0.210631336,0.210631336,0.566173769,0.566173769,0.133679343,4.40045624,141.5337992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5505536,2.731223775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.188115566,136.0476713,119.7386692,138.778895,702.9762406,0,0.79310555,37.52331548,-0.79310555,142.4766845,0.986956689,0,813.5457719,138.778895,904.3737831,7,11,11% +2018-07-21 20:00:00,17.8081385,168.0887549,979.7901889,894.9138781,127.7552492,945.1112934,813.8222641,131.2890294,123.9029571,7.386072309,241.413767,0,241.413767,3.85229213,237.5614749,0.31081065,2.933702208,0.045198099,-0.045198099,0.52242436,0.52242436,0.130390415,4.318604316,138.9011599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1002352,2.790972534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128814126,133.5170783,122.2290493,136.3080508,813.8222641,0,0.909386125,24.57934403,-0.909386125,155.420656,0.995017855,0,931.9967327,136.3080508,1021.207626,7,12,10% +2018-07-21 21:00:00,19.98448297,211.9937225,965.3622399,892.2117305,126.8748484,1000.422444,870.0960319,130.3264119,123.0491036,7.277308335,237.8889964,0,237.8889964,3.825744797,234.0632516,0.348795027,3.699988452,0.286546267,-0.286546267,0.481151392,0.481151392,0.131427192,3.997732625,128.5808233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2794788,2.771739082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.896343678,123.5967782,121.1758224,126.3685173,870.0960319,0,0.9752125,12.7836594,-0.9752125,167.2163406,0.998729123,0,990.1660695,126.3685173,1072.871737,7,13,8% +2018-07-21 22:00:00,28.59692958,239.628917,892.9562689,877.6400869,122.3807014,990.8539225,865.4319693,125.4219533,118.6904717,6.731481541,220.1978154,0,220.1978154,3.690229684,216.5075857,0.499110577,4.182313584,0.536241798,-0.536241798,0.438450941,0.438450941,0.13705117,3.469485669,111.5905854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.089796,2.673558844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513630557,107.2651152,116.6034266,109.9386741,865.4319693,0,0.986089836,9.567720314,-0.986089836,170.4322797,0.999294681,0,981.42499,109.9386741,1053.377653,7,14,7% +2018-07-21 23:00:00,39.55947476,255.5470044,767.7577735,847.6561472,114.245485,914.4653235,797.8770789,116.5882445,110.8005621,5.787682399,189.5966839,0,189.5966839,3.444922895,186.151761,0.690443085,4.460136621,0.822212937,-0.822212937,0.389546996,0.389546996,0.148804075,2.780315176,89.42449334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5057148,2.49583491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014328881,85.95822442,108.5200437,88.45405933,797.8770789,0,0.941274456,19.73330199,-0.941274456,160.266698,0.99688053,0,903.9081692,88.45405933,961.799582,7,15,6% +2018-07-21 00:00:00,51.24756056,266.5905769,598.9528216,793.5598183,102.2187554,773.2812139,669.6295718,103.6516422,99.13648281,4.515159368,148.3053187,0,148.3053187,3.082272623,145.223046,0.894438665,4.652883322,1.193999563,-1.193999563,0.325967739,0.325967739,0.170662449,1.991184086,64.04332485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.29375812,2.233096023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442606092,61.56087985,96.73636421,63.79397587,669.6295718,0,0.843829988,32.4532054,-0.843829988,147.5467946,0.990746358,0,760.1694237,63.79397587,801.921305,7,16,5% +2018-07-21 01:00:00,63.06922429,275.6679743,399.7508466,694.4713852,85.21526847,572.0937093,486.4345049,85.65920446,82.64571372,3.013490737,99.49377567,0,99.49377567,2.569554755,96.92422091,1.100765621,4.811313794,1.774234732,-1.774234732,0.226741681,0.226741681,0.213170952,1.180016353,37.95338219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44220361,1.861633673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.854917831,36.48223458,80.29712144,38.34386826,486.4345049,0,0.700438514,45.53780339,-0.700438514,134.4621966,0.978616147,0,556.3297823,38.34386826,581.4250772,7,17,5% +2018-07-21 02:00:00,74.70374051,284.1115467,189.4960221,494.1997238,59.12115391,316.2664813,257.4995472,58.76693404,57.33843298,1.428501058,47.72822539,0,47.72822539,1.782720924,45.94550446,1.303826235,4.958681932,3.0272422,-3.0272422,0.012464784,0.012464784,0.31199153,0.45793088,14.72863124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.11588276,1.291575241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.331769364,14.15772058,55.44765212,15.44929582,257.4995472,0,0.521043487,58.59772741,-0.521043487,121.4022726,0.95403872,0,301.1121905,15.44929582,311.2234456,7,18,3% +2018-07-21 03:00:00,85.81021296,292.7058008,17.73058073,82.33861596,11.71488645,37.78723642,26.2919364,11.49530001,11.3616394,0.133660607,4.652231625,0,4.652231625,0.35324705,4.298984575,1.497670748,5.108679964,10.03117719,-10.03117719,0,0,0.660716456,0.088311762,2.840409851,0.542392452,1,0.099360917,0,0.951297717,0.99005968,0.724496596,1,11.00983174,0.255926285,0.073783202,0.312029739,0.812164064,0.53666066,0.961238037,0.922476074,0.060589961,2.730309989,11.0704217,2.986236274,12.03138855,0,0.319314772,71.37850972,-0.319314772,108.6214903,0.893414698,0,21.81944106,2.986236274,23.77387298,7,19,9% +2018-07-21 04:00:00,96.51790788,302.0558925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68455528,5.27186985,-5.38188602,5.38188602,1,0.549489596,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102278251,84.12962252,-0.102278251,95.87037748,0.561137516,0,0,0,0,7,20,0% +2018-07-21 05:00:00,105.9375702,312.7176727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848959402,5.457953018,-1.60514398,1.60514398,1,0.804649477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107282521,96.15868836,0.107282521,83.84131164,0,0.583940855,0,0,0,7,21,0% +2018-07-21 06:00:00,113.7331748,325.1792665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985018369,5.67544886,-0.58180313,0.58180313,1,0.629647885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298117073,107.3445452,0.298117073,72.65545476,0,0.882280656,0,0,0,7,22,0% +2018-07-21 07:00:00,119.2398027,339.6575479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081127156,5.92814254,-0.010676946,0.010676946,1,0.531979555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457224102,117.2081285,0.457224102,62.79187155,0,0.940644435,0,0,0,7,23,0% +2018-07-22 08:00:00,121.782498,355.73223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125505562,6.20869867,0.437605595,-0.437605595,1,0.455318725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573763068,125.013055,0.573763068,54.98694498,0,0.962856015,0,0,0,7,0,0% +2018-07-22 09:00:00,120.9683284,12.1968359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111295622,0.212874945,0.887888643,-0.887888643,1,0.378315789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639792849,129.7763745,0.639792849,50.22362549,0,0.971849705,0,0,0,7,1,0% +2018-07-22 10:00:00,116.9296982,27.61396605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040808226,0.481954627,1.454030516,-1.454030516,1,0.281499827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650812994,130.6029262,0.650812994,49.39707377,0,0.973173015,0,0,0,7,2,0% +2018-07-22 11:00:00,110.2365288,41.13350166,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923990384,0.717915037,2.375535866,-2.375535866,1,0.123913131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606070698,127.3059279,0.606070698,52.69407205,0,0.967501374,0,0,0,7,3,0% +2018-07-22 12:00:00,101.5869327,52.68756821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773026453,0.91957154,4.656308648,-4.656308648,1,0,#DIV/0!,0,0,0.210186687,1,0.211549043,0,0.937325925,0.976087888,0.724496596,1,0,0,0.032701751,0.312029739,0.911451523,0.635948119,0.961238037,0.922476074,0,0,0,0,0,0,-0.508612615,120.5714608,0.508612615,59.42853917,0,0.951693355,0,0,0,7,4,0% +2018-07-22 13:00:00,91.58476458,62.66289275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598455687,1.093673797,35.8489499,-35.8489499,1,0,#DIV/0!,0,0,0.848493521,1,0.027887588,0,0.958685502,0.997447466,0.724496596,1,0,0,0.103372915,0.312029739,0.748982663,0.473479259,0.961238037,0.922476074,0,0,0,0,0,0,-0.365077895,111.4123766,0.365077895,68.58762344,0,0.913042927,0,0,0,7,5,0% +2018-07-22 14:00:00,80.58737513,71.59394058,87.97688034,306.5622371,37.84066661,37.36283778,0,37.36283778,36.69963089,0.663206886,78.75816384,56.28611492,22.47204891,1.141035715,21.3310132,1.406515032,1.249549988,-6.029926935,6.029926935,0.438668073,0.438668073,0.430120578,0.451052631,14.50740309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.27708115,0.826676492,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.326786096,13.94506767,35.60386725,14.77174416,0,56.28611492,-0.183604202,100.5797652,0.183604202,79.42023479,0,0.777675078,35.60386725,58.54405297,73.91977903,7,6,108% +2018-07-22 15:00:00,69.17047462,80.05558629,289.9133971,609.1921385,73.29159004,85.07802312,11.81095529,73.26706783,71.08157819,2.185489647,72.50287148,0,72.50287148,2.210011857,70.29285962,1.207252527,1.397233565,-2.588061692,2.588061692,0.972738305,0.972738305,0.252805116,2.140971662,68.8610082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32631667,1.601146067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551126681,66.19182033,69.87744335,67.7929664,11.81095529,0,0.019387898,88.88908564,-0.019387898,91.11091436,0,0,69.87744335,67.7929664,114.246584,7,7,63% +2018-07-22 16:00:00,57.41728186,88.71653992,497.8666529,749.7482183,94.11474995,269.7881028,174.7581307,95.02997213,91.276843,3.753129129,123.551441,0,123.551441,2.837906958,120.7135341,1.002120616,1.548395723,-1.481951269,1.481951269,0.783582282,0.783582282,0.189036059,3.094428826,99.52746806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73877337,2.05605393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24190315,95.66958801,89.98067652,97.72564194,174.7581307,0,0.233089091,76.52099204,-0.233089091,103.479008,0.835489747,0,235.9893028,97.72564194,299.948781,7,8,27% +2018-07-22 17:00:00,45.62290605,98.56066751,684.2810738,823.2978967,108.4849269,474.6717769,364.2996711,110.3721059,105.2137061,5.158399776,169.1830895,0,169.1830895,3.271220812,165.9118687,0.796269925,1.720208161,-0.897619641,0.897619641,0.683655689,0.683655689,0.158538547,3.785277375,121.7475322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1354163,2.369988343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.742420573,117.0283588,103.8778369,119.3983472,364.2996711,0,0.442488281,63.73724865,-0.442488281,116.2627513,0.937002657,0,445.2275966,119.3983472,523.3714269,7,9,18% +2018-07-22 18:00:00,34.19779417,111.4865167,833.3691245,864.216629,118.5736378,668.5179411,547.2374475,121.2804936,114.9982052,6.282288477,205.6354253,0,205.6354253,3.575432671,202.0599926,0.596864105,1.945806789,-0.509053581,0.509053581,0.617206979,0.617206979,0.142282254,4.21963496,135.7179652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.540649,2.590388799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057111164,130.4572705,113.5977601,133.0476592,547.2374475,0,0.63321791,50.71206486,-0.63321791,129.2879351,0.971038241,0,644.9862485,133.0476592,732.0632806,7,10,14% +2018-07-22 19:00:00,24.08474367,131.9451142,933.8897972,886.0929004,124.9375996,830.2099688,701.9996431,128.2103258,121.17027,7.040055768,230.1997231,0,230.1997231,3.767329599,226.4323935,0.420358076,2.302876674,-0.210232757,0.210232757,0.566105609,0.566105609,0.133781952,4.394070851,141.3284231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4734725,2.72941747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183489373,135.850256,119.6569619,138.5796734,701.9996431,0,0.792241584,37.60451278,-0.792241584,142.3954872,0.986887938,0,812.451942,138.5796734,903.1495667,7,11,11% +2018-07-22 20:00:00,18.00577011,168.1725871,978.5460847,894.6833351,127.6795159,944.2054886,812.9992875,131.2062012,123.8295075,7.376693726,241.1098359,0,241.1098359,3.850008493,237.2598274,0.314259973,2.935165357,0.046204906,-0.046204906,0.522252185,0.522252185,0.130478797,4.312327705,138.6992825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0296327,2.789318047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124266743,133.323026,122.1538994,136.1123441,812.9992875,0,0.908700605,24.67360218,-0.908700605,155.3263978,0.994976376,0,931.0689845,136.1123441,1020.151791,7,12,10% +2018-07-22 21:00:00,20.15920558,211.7129297,964.1348269,891.9789393,126.799734,999.6063506,869.3620408,130.2443098,122.9762542,7.268055578,237.589131,0,237.589131,3.823479822,233.7656512,0.351844512,3.695087692,0.28815859,-0.28815859,0.480875668,0.480875668,0.1315166,3.991246436,128.3722052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2094532,2.770098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891644456,123.3962465,121.1010976,126.1663446,869.3620408,0,0.974644134,12.93000848,-0.974644134,167.0699915,0.998699224,0,989.3322935,126.1663446,1071.905643,7,13,8% +2018-07-22 22:00:00,28.72813924,239.3148721,891.6697445,877.3647825,122.2996093,990.0371879,864.7035798,125.333608,118.6118248,6.721783177,219.8834374,0,219.8834374,3.687784458,216.195653,0.501400618,4.176832468,0.538618591,-0.538618591,0.438044486,0.438044486,0.137157967,3.462532759,111.3669559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0141977,2.671787286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.508593197,107.0501541,116.5227909,109.7219413,864.7035798,0,0.985569055,9.745602031,-0.985569055,170.254398,0.999267888,0,980.5933106,109.7219413,1052.404127,7,14,7% +2018-07-22 23:00:00,39.66844927,255.2840057,766.3417336,847.2756497,114.1502983,913.5413821,797.0561288,116.4852533,110.7082456,5.777007692,189.2504784,0,189.2504784,3.442052664,185.8084257,0.692345049,4.455546428,0.825762109,-0.825762109,0.388940052,0.388940052,0.148954824,2.772734803,89.18068249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4169767,2.493755438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008836926,85.72386416,108.4258136,88.2176196,797.0561288,0,0.940728238,19.82578376,-0.940728238,160.1742162,0.996849687,0,902.9709664,88.2176196,960.7076341,7,15,6% +2018-07-22 00:00:00,51.34899955,266.3694035,597.3504854,792.9453064,102.09667,772.1223247,668.6011658,103.5211589,99.01807866,4.503080281,147.9131324,0,147.9131324,3.078591296,144.8345411,0.89620911,4.649023117,1.19970879,-1.19970879,0.324991404,0.324991404,0.170915857,1.982981278,63.77949436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17994355,2.230428914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436663186,61.30727595,96.61660673,63.53770486,668.6011658,0,0.84318699,32.52179601,-0.84318699,147.478204,0.990701172,0,759.0005655,63.53770486,800.5847225,7,16,5% +2018-07-22 01:00:00,63.17157312,275.4748106,397.9353921,693.2937436,85.03782739,570.5255637,485.0521355,85.47342821,82.47362313,2.999805074,99.0482472,0,99.0482472,2.564204252,96.48404295,1.102551945,4.807942451,1.784988563,-1.784988563,0.224902668,0.224902668,0.213697573,1.171541132,37.68078996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.27678359,1.857757252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.848777562,36.22020856,80.12556116,38.07796582,485.0521355,0,0.699634376,45.60232273,-0.699634376,134.3976773,0.9785341,0,554.7656162,38.07796582,579.6868833,7,17,4% +2018-07-22 02:00:00,74.81242654,283.9369521,187.5439221,491.4380322,58.79704749,313.9992623,255.5613774,58.43788487,57.02409957,1.413785304,47.24514315,0,47.24514315,1.77294792,45.47219523,1.305723164,4.955634683,3.056247773,-3.056247773,0.007504539,0.007504539,0.313510813,0.450520498,14.49028786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.81373352,1.284494732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326400567,13.92861585,55.14013409,15.21311059,255.5613774,0,0.520027675,58.66589208,-0.520027675,121.3341079,0.953851271,0,298.9076788,15.21311059,308.8643554,7,18,3% +2018-07-22 03:00:00,85.92642326,292.5443312,16.64914091,77.73310663,11.1271797,35.6441883,24.72702586,10.91716243,10.79165417,0.125508257,4.372302494,0,4.372302494,0.335525523,4.036776971,1.499699,5.105861788,10.34515113,-10.34515113,0,0,0.668333565,0.083881381,2.697913544,0.553366325,1,0.09636425,0,0.951631572,0.990393535,0.724496596,1,10.45650824,0.243087099,0.074963574,0.312029739,0.809509522,0.534006118,0.961238037,0.922476074,0.057581248,2.593337118,10.51408949,2.836424217,11.04392243,0,0.318101604,71.4518433,-0.318101604,108.5481567,0.892817517,0,20.37429688,2.836424217,22.2306798,7,19,9% +2018-07-22 04:00:00,96.65299214,301.9057886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686912945,5.269250042,-5.289346707,5.289346707,1,0.565314751,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100721666,84.21927129,-0.100721666,95.78072871,0.553582476,0,0,0,0,7,20,0% +2018-07-22 05:00:00,106.0907595,312.5815957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851633059,5.455578027,-1.596353745,1.596353745,1,0.803146258,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109119847,96.26458112,0.109119847,83.73541888,0,0.591788215,0,0,0,7,21,0% +2018-07-22 06:00:00,113.906052,325.065771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988035646,5.673467989,-0.581390022,0.581390022,1,0.629577239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300218873,107.4707496,0.300218873,72.52925041,0,0.883454841,0,0,0,7,22,0% +2018-07-22 07:00:00,119.4304153,339.5812333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084453974,5.926810599,-0.012954932,0.012954932,1,0.532369113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459555991,117.3584601,0.459555991,62.64153986,0,0.941199329,0,0,0,7,23,0% +2018-07-23 08:00:00,121.9835907,355.7082784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12901529,6.208280635,0.43355008,-0.43355008,1,0.456012259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576274897,125.188963,0.576274897,54.81103701,0,0.963235853,0,0,0,7,0,0% +2018-07-23 09:00:00,121.1686564,12.23013405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114792005,0.213456107,0.881706233,-0.881706233,1,0.379373043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642422142,129.9726705,0.642422142,50.02732945,0,0.972169557,0,0,0,7,1,0% +2018-07-23 10:00:00,117.1189982,27.69494255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044112135,0.483367934,1.444068863,-1.444068863,1,0.28320337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653489237,130.8051949,0.653489237,49.19480507,0,0.973487646,0,0,0,7,2,0% +2018-07-23 11:00:00,110.4093704,41.24664438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927007038,0.71988975,2.356191922,-2.356191922,1,0.12722114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608720191,127.4970219,0.608720191,52.50297814,0,0.967860454,0,0,0,7,3,0% +2018-07-23 12:00:00,101.742548,52.82073628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775742452,0.921895761,4.596190288,-4.596190288,1,0,#DIV/0!,0,0,0.203720943,1,0.214232738,0,0.936957313,0.975719276,0.724496596,1,0,0,0.031784287,0.312029739,0.913821341,0.638317937,0.961238037,0.922476074,0,0,0,0,0,0,-0.511163546,120.7413641,0.511163546,59.25863594,0,0.952183948,0,0,0,7,4,0% +2018-07-23 13:00:00,91.7250851,62.81002159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600904742,1.09624168,32.942179,-32.942179,1,0,#DIV/0!,0,0,0.836153962,1,0.0303469,0,0.95845143,0.997213393,0.724496596,1,0,0,0.102301151,0.312029739,0.751148571,0.475645167,0.961238037,0.922476074,0,0,0,0,0,0,-0.367465293,111.55938,0.367465293,68.44061998,0,0.913932728,0,0,0,7,5,0% +2018-07-23 14:00:00,80.71434937,71.75408677,85.94072523,301.5631527,37.28150087,36.80518355,0,36.80518355,36.15732607,0.647857488,77.97822085,56.01672223,21.96149862,1.124174805,20.83732382,1.40873115,1.252345066,-6.113374453,6.113374453,0.424397707,0.424397707,0.43380482,0.436718631,14.0463724,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.75579713,0.81446082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316401162,13.50190743,35.07219829,14.31636825,0,56.01672223,-0.185754532,100.7051264,0.185754532,79.29487359,0,0.780827563,35.07219829,58.05576895,73.06853795,7,6,108% +2018-07-23 15:00:00,69.29005563,80.23173635,287.7384226,607.1558398,73.02553385,83.60457781,10.61193948,72.99263834,70.82354457,2.169093771,71.96750115,0,71.96750115,2.201989281,69.76551187,1.20933961,1.400307964,-2.602971724,2.602971724,0.975288071,0.975288071,0.253791389,2.129095129,68.47901808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.07828494,1.595333738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.542522174,65.8246369,69.62080711,67.41997064,10.61193948,0,0.017478115,88.99852679,-0.017478115,91.00147321,0,0,69.62080711,67.41997064,113.7458295,7,7,63% +2018-07-23 16:00:00,57.53338771,88.91526935,495.8988334,748.779953,93.94772589,268.1608188,173.3076686,94.8531502,91.11485532,3.738294875,123.069284,0,123.069284,2.832870566,120.2364135,1.004147045,1.551864205,-1.486832245,1.486832245,0.784416978,0.784416978,0.189449379,3.085061669,99.22618811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.58306466,2.052405081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235116677,95.37998627,89.81818133,97.43239135,173.3076686,0,0.231453404,76.61734521,-0.231453404,103.3826548,0.833973797,0,234.3522357,97.43239135,298.1197872,7,8,27% +2018-07-23 17:00:00,45.741986,98.79236627,682.5497263,822.7475089,108.3619386,473.1784782,362.9387038,110.2397744,105.0944263,5.145348147,168.7595957,0,168.7595957,3.267512261,165.4920834,0.798348262,1.724252067,-0.899368139,0.899368139,0.6839547,0.6839547,0.158760504,3.777355519,121.4927381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.02076,2.36730151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681215,116.783441,103.7574412,119.1507425,362.9387038,0,0.441130116,63.82399079,-0.441130116,116.1760092,0.936654757,0,443.7057048,119.1507425,521.6874828,7,9,18% +2018-07-23 18:00:00,34.33045162,111.7626038,831.8443594,863.8541243,118.4747687,667.2326771,546.0595656,121.1731114,114.9023173,6.270794154,205.2627471,0,205.2627471,3.572451401,201.6902957,0.599179414,1.950625417,-0.509407026,0.509407026,0.617267422,0.617267422,0.142424202,4.212580322,135.4910638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4484779,2.588228879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.052000103,130.2391642,113.500478,132.8273931,546.0595656,0,0.632120112,50.79328567,-0.632120112,129.2067143,0.970901109,0,643.6703157,132.8273931,730.6031879,7,10,14% +2018-07-23 19:00:00,24.24868416,132.2440604,932.5167321,885.8186711,124.8525351,829.1265442,701.0090687,128.1174755,121.0877705,7.029705023,229.8642426,0,229.8642426,3.76476459,226.099478,0.423219378,2.308094271,-0.209772508,0.209772508,0.566026901,0.566026901,0.133887716,4.38745379,141.1155956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3941708,2.727559129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178695335,135.6456781,119.5728661,138.3732373,701.0090687,0,0.791368585,37.68640752,-0.791368585,142.3135925,0.986818316,0,811.3414547,138.3732373,901.903971,7,11,11% +2018-07-23 20:00:00,18.20856171,168.2649864,977.2557255,894.4437347,127.600931,943.2761228,812.1558642,131.1202586,123.7532921,7.366966453,240.7946038,0,240.7946038,3.847638867,236.9469649,0.317799354,2.936778029,0.047286883,-0.047286883,0.522067156,0.522067156,0.130570666,4.305779473,138.4886689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9563716,2.787601261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119522571,133.1205762,122.0758942,135.9081775,812.1558642,0,0.908001066,24.76944111,-0.908001066,155.2305589,0.994933985,0,930.1173648,135.9081775,1019.066549,7,12,10% +2018-07-23 21:00:00,20.34040747,211.4356723,962.8511091,891.7349738,126.721137,998.7568997,868.5984941,130.1584055,122.9000272,7.258378371,237.2755087,0,237.2755087,3.821109831,233.4543989,0.355007082,3.690248638,0.289863884,-0.289863884,0.480584046,0.480584046,0.131610314,3.984447198,128.1535183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1361808,2.768381065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.886718431,123.1860364,121.0228993,125.9544174,868.5984941,0,0.974054534,13.08012416,-0.974054534,166.9198758,0.998668172,0,988.4645694,125.9544174,1070.899217,7,13,8% +2018-07-23 22:00:00,28.86561039,238.9984166,890.3160837,877.0744538,122.2142355,989.1748103,863.9342062,125.2406041,118.5290254,6.71157871,219.5526523,0,219.5526523,3.685210124,215.8674422,0.503799942,4.171309276,0.541115935,-0.541115935,0.437617415,0.437617415,0.137270614,3.455228223,111.1320169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9346077,2.66992219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.503301086,106.8243218,116.4379088,109.494244,863.9342062,0,0.985018093,9.930357481,-0.985018093,170.0696425,0.999239511,0,979.7151026,109.494244,1051.376895,7,14,7% +2018-07-23 23:00:00,39.78315291,255.0172298,764.8478004,846.8730942,114.0497886,912.5572922,796.1807797,116.3765125,110.6107667,5.765745793,188.8852262,0,188.8852262,3.439021925,185.4462043,0.694347005,4.450890309,0.829480138,-0.829480138,0.388304232,0.388304232,0.149114358,2.76477228,88.92458036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3232762,2.491559678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003068105,85.47768905,108.3263443,87.96924873,796.1807797,0,0.940141782,19.92461956,-0.940141782,160.0753804,0.996816532,0,901.9725083,87.96924873,959.5466222,7,15,6% +2018-07-23 00:00:00,51.45583442,266.1444784,595.6606137,792.2947524,101.9677194,770.8863707,667.5030129,103.3833577,98.89301639,4.490341314,147.4995151,0,147.4995151,3.074702959,144.4248121,0.89807373,4.645097433,1.205685101,-1.205685101,0.323969394,0.323969394,0.171184257,1.974381481,63.50289532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05972894,2.227611827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430432662,61.04139843,96.4901616,63.26901026,667.5030129,0,0.84249329,32.59565091,-0.84249329,147.4043491,0.990652346,0,757.7535876,63.26901026,799.1618894,7,16,5% +2018-07-23 01:00:00,63.27916998,275.2781831,396.0255814,692.0478686,84.8505783,568.8593161,483.5818877,85.27742841,82.2920203,2.985408115,98.57954524,0,98.57954524,2.558558001,96.02098724,1.104429864,4.804510654,1.796264324,-1.796264324,0.222974399,0.222974399,0.214255296,1.162685847,37.39597354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.10222004,1.853666562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842361938,35.9464322,79.94458198,37.80009876,483.5818877,0,0.69876942,45.67164242,-0.69876942,134.3283576,0.978445638,0,553.1031707,37.80009876,577.8425793,7,17,4% +2018-07-23 02:00:00,74.92633478,283.7592047,185.4997098,488.5190868,58.45508322,311.603976,253.5131541,58.09082196,56.69244679,1.398375168,46.73918872,0,46.73918872,1.762636436,44.97655228,1.307711238,4.952532405,3.086873039,-3.086873039,0.00226731,0.00226731,0.315122235,0.442830548,14.24295264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.49493626,1.277024097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.320829225,13.69086784,54.81576548,14.96789194,253.5131541,0,0.518942168,58.73867906,-0.518942168,121.2613209,0.95365015,0,296.5786229,14.96789194,306.3748088,7,18,3% +2018-07-23 03:00:00,86.04763711,292.3800237,15.55388315,73.01800976,10.52096709,33.45427331,23.13330045,10.32097286,10.20372112,0.117251741,4.088465022,0,4.088465022,0.317245976,3.771219046,1.501814581,5.10299408,10.69150008,-10.69150008,0,0,0.676420608,0.079311494,2.550930279,0.564876956,1,0.093260918,0,0.951975108,0.990737071,0.724496596,1,9.885786755,0.22984363,0.076191122,0.312029739,0.806760681,0.531257277,0.961238037,0.922476074,0.054477701,2.452051214,9.940264457,2.681894844,10.06583211,0,0.316816365,71.52949902,-0.316816365,108.470501,0.89217987,0,18.92079724,2.681894844,20.67604378,7,19,9% +2018-07-23 04:00:00,96.7935877,301.753221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6893668,5.266587235,-5.196454013,5.196454013,1,0.581200337,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099082002,84.31368945,-0.099082002,95.68631055,0.545367485,0,0,0,0,7,20,0% +2018-07-23 05:00:00,106.249672,312.4436014,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854406605,5.453169571,-1.587216325,1.587216325,1,0.801583667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111043112,96.37544991,0.111043112,83.62455009,0,0.599724437,0,0,0,7,21,0% +2018-07-23 06:00:00,114.0848434,324.9512489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991156144,5.671469202,-0.580846513,0.580846513,1,0.629484293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302406747,107.6022155,0.302406747,72.39778455,0,0.884659774,0,0,0,7,22,0% +2018-07-23 07:00:00,119.6269881,339.5052936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087884817,5.925485202,-0.015182193,0.015182193,1,0.532749998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461971359,117.514389,0.461971359,62.48561096,0,0.941768182,0,0,0,7,23,0% +2018-07-24 08:00:00,122.1903805,355.6865369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132624453,6.207901174,0.429506895,-0.429506895,1,0.456703685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578865055,125.3707562,0.578865055,54.62924384,0,0.963624083,0,0,0,7,0,0% +2018-07-24 09:00:00,121.3740371,12.26740517,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118376573,0.214106611,0.875513628,-0.875513628,1,0.380432041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645122413,130.1748542,0.645122413,49.82514583,0,0.97249533,0,0,0,7,1,0% +2018-07-24 10:00:00,117.3124623,27.78104216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047488721,0.484870655,1.434086489,-1.434086489,1,0.284910456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656227414,131.0127846,0.656227414,48.9872154,0,0.973806901,0,0,0,7,2,0% +2018-07-24 11:00:00,110.5854771,41.36539486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93008068,0.721962337,2.336864583,-2.336864583,1,0.13052631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611421501,127.6923579,0.611421501,52.30764211,0,0.968223353,0,0,0,7,3,0% +2018-07-24 12:00:00,101.9006717,52.95961746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778502231,0.924319695,4.536748724,-4.536748724,1,0,#DIV/0!,0,0,0.197223056,1,0.21695295,0,0.936582084,0.975344047,0.724496596,1,0,0,0.030857068,0.312029739,0.916223093,0.640719689,0.961238037,0.922476074,0,0,0,0,0,0,-0.513755802,120.9143273,0.513755802,59.08567274,0,0.952677498,0,0,0,7,4,0% +2018-07-24 13:00:00,91.86734735,62.96286639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603387686,1.098909325,30.44106017,-30.44106017,1,0,#DIV/0!,0,0,0.823806373,1,0.032838558,0,0.958212802,0.996974765,0.724496596,1,0,0,0.101219483,0.312029739,0.75334386,0.477840456,0.961238037,0.922476074,0,0,0,0,0,0,-0.369883868,111.7084553,0.369883868,68.29154469,0,0.914822437,0,0,0,7,5,0% +2018-07-24 14:00:00,80.84284439,71.92001687,83.89067701,296.4625171,36.71074662,36.23618552,0,36.23618552,35.60378216,0.632403359,77.16031059,55.71308024,21.44723035,1.106964459,20.34026589,1.410973811,1.255241093,-6.200092712,6.200092712,0.409568011,0.409568011,0.437602222,0.422408993,13.58612523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.22370967,0.801991982,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.306033877,13.05950034,34.52974355,13.86149233,0,55.71308024,-0.18792622,100.8317854,0.18792622,79.16821455,0,0.783938138,34.52974355,57.53710072,72.18662523,7,6,109% +2018-07-24 15:00:00,69.41100191,80.41390152,285.5382451,605.0792415,72.7549293,82.12488946,9.411281818,72.71360764,70.56109974,2.152507903,71.42588292,0,71.42588292,2.193829555,69.23205337,1.21145052,1.403487346,-2.618159258,2.618159258,0.977885292,0.977885292,0.254799245,2.117034794,68.09111625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.82601299,1.589422045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533784502,65.45177091,69.35979749,67.04119296,9.411281818,0,0.015553801,89.10879694,-0.015553801,90.89120306,0,0,69.35979749,67.04119296,113.2369175,7,7,63% +2018-07-24 16:00:00,57.65086932,89.12048533,493.9054496,747.7939872,93.77811757,266.5229582,171.849329,94.67362922,90.95036132,3.723267906,122.5808507,0,122.5808507,2.827756249,119.7530945,1.006197486,1.5554459,-1.491742597,1.491742597,0.785256698,0.785256698,0.189870587,3.07553149,98.91966479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.42494676,2.048699776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.228212095,95.08534439,89.65315886,97.13404416,171.849329,0,0.229808386,76.71420913,-0.229808386,103.2857909,0.832427435,0,232.7052549,97.13404416,296.2775441,7,8,27% +2018-07-24 17:00:00,45.86270591,99.03133352,680.7910737,822.186388,108.2368504,471.6742718,361.5690711,110.1052007,104.97311,5.132090681,168.3294181,0,168.3294181,3.263740391,165.0656777,0.800455222,1.728422833,-0.90108943,0.90108943,0.684249058,0.684249058,0.158986882,3.769260488,121.232374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9041462,2.364568803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730816393,116.5331692,103.6349626,118.897738,361.5690711,0,0.439765334,63.91109054,-0.439765334,116.0889095,0.936302998,0,442.1731679,118.897738,519.9893595,7,9,18% +2018-07-24 18:00:00,34.46539587,112.0470098,830.2880551,863.483087,118.3737753,665.9348161,544.8713848,121.0634313,114.8043693,6.259062074,204.8823578,0,204.8823578,3.569406079,201.3129517,0.601534636,1.955589238,-0.509711725,0.509711725,0.617319528,0.617319528,0.142569527,4.205326748,135.2577639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3543265,2.586022553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046744913,130.0149075,113.4010714,132.60093,544.8713848,0,0.6310157,50.87490112,-0.6310157,129.1250989,0.970762669,0,642.3418711,132.60093,729.1265278,7,10,14% +2018-07-24 19:00:00,24.41611255,132.551921,931.1054586,885.5361586,124.7650543,828.0261615,700.0041677,128.0219938,121.0029276,7.019066247,229.5194251,0,229.5194251,3.762126721,225.7572984,0.426141554,2.313467452,-0.209250072,0.209250072,0.565937559,0.565937559,0.133996695,4.380602698,140.895241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3126165,2.725648002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173731742,135.4338648,119.4863483,138.1595128,700.0041677,0,0.790486262,37.76902334,-0.790486262,142.2309767,0.986747794,0,810.2139164,138.1595128,900.6365544,7,11,11% +2018-07-24 20:00:00,18.41645197,168.3656384,975.9184609,894.194901,127.5194506,942.3225305,811.2913762,131.0311543,123.6742687,7.356885588,240.4679116,0,240.4679116,3.845181933,236.6227296,0.321427723,2.938534738,0.04844439,-0.04844439,0.521869211,0.521869211,0.130666091,4.298957046,138.2692362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8804113,2.785821221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114579745,132.9096491,121.994991,135.6954703,811.2913762,0,0.907286963,24.86691824,-0.907286963,155.1330818,0.994890644,0,929.1411909,135.6954703,1017.951162,7,12,10% +2018-07-24 21:00:00,20.52802723,211.1622478,961.5103633,891.4796279,126.6390078,997.8732204,867.8045746,130.0686457,122.8203745,7.248271262,236.9479529,0,236.9479529,3.818633334,233.1293196,0.358281664,3.68547648,0.291662464,-0.291662464,0.480276471,0.480276471,0.131708417,3.977332539,127.9246864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0596157,2.766586851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.881563885,122.9660745,120.9411795,125.7326613,867.8045746,0,0.973442968,13.23406448,-0.973442968,166.7659355,0.998635923,0,987.5620015,125.7326613,1069.851514,7,13,8% +2018-07-24 22:00:00,29.00933359,238.6798969,888.8945862,876.7688472,122.1245281,988.2658013,863.1229154,125.1428858,118.442023,6.700862861,219.2052888,0,219.2052888,3.682505113,215.5227837,0.506308385,4.165750059,0.54373427,-0.54373427,0.437169653,0.437169653,0.137389214,3.447570301,110.8857118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8509776,2.667962419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497752947,106.5875639,116.3487306,109.2555264,863.1229154,0,0.984436112,10.12188881,-0.984436112,169.8781112,0.999209502,0,978.7893494,109.2555264,1050.294906,7,14,7% +2018-07-24 23:00:00,39.90359018,254.7469054,763.2753928,846.4481369,113.9439023,911.5120364,795.2500708,116.2619656,110.5080733,5.753892319,188.5007849,0,188.5007849,3.435829064,185.0649559,0.696449032,4.446172259,0.833367943,-0.833367943,0.387639378,0.387639378,0.149282819,2.756426845,88.6561625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2245634,2.489246461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997021866,85.2196756,108.2215853,87.70892206,795.2500708,0,0.939514231,20.02986271,-0.939514231,159.9701373,0.996781008,0,900.9117527,87.70892206,958.315488,7,15,6% +2018-07-24 00:00:00,51.56806628,265.9159584,593.882839,791.6076035,101.831843,769.5723758,666.3341989,103.2381769,98.76123718,4.476939698,147.0643758,0,147.0643758,3.070605785,143.9937701,0.900032545,4.641109008,1.211931013,-1.211931013,0.32290128,0.32290128,0.1714679,1.965385371,63.21354951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.93305775,2.224643438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423915011,60.76326824,96.35697276,62.98791168,666.3341989,0,0.841748103,32.67482199,-0.841748103,147.325178,0.990599807,0,756.4275015,62.98791168,797.6518299,7,16,5% +2018-07-24 01:00:00,63.39200734,275.0782079,394.0213732,690.7325961,84.65342193,567.0940253,482.0229168,85.07110847,82.10080893,2.970299546,98.08765676,0,98.08765676,2.552613009,95.53504375,1.106399248,4.801020428,1.808071141,-1.808071141,0.220955314,0.220955314,0.214844746,1.153453369,37.09902533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9184204,1.849359436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83567304,35.66099427,79.75409344,37.51035371,482.0229168,0,0.697843014,45.74579613,-0.697843014,134.2542039,0.978350648,0,551.3415262,37.51035371,575.8913025,7,17,4% +2018-07-24 02:00:00,75.04544675,283.578395,183.3640226,485.4396424,58.09496562,309.0795915,251.354128,57.72546352,56.34318806,1.382275455,46.21050775,0,46.21050775,1.751777561,44.45873019,1.309790134,4.94937668,3.11917731,-3.11917731,0,0,0.316828595,0.43794439,14.08579702,0.003246472,1,0.31024472,0,0.922758261,0.961520224,0.724496596,1,54.16802459,1.26915688,0.000554334,0.312029739,0.998429306,0.722925901,0.961238037,0.922476074,0.316993047,13.53980387,54.48501763,14.80896075,250.5381139,0,0.517786571,58.81610416,-0.517786571,121.1838958,0.953435116,0,293.3568534,14.80896075,303.049022,7,18,3% +2018-07-24 03:00:00,86.17379617,292.2129506,14.45030373,68.21450769,9.89833387,31.22770493,21.51890986,9.708795076,9.599862583,0.108932493,3.802114727,0,3.802114727,0.298471287,3.50364344,1.504016472,5.100078106,11.07446895,-11.07446895,0,0,0.684991406,0.074617822,2.399965646,0.576933042,1,0.090053557,0,0.952327803,0.991089766,0.724496596,1,9.299643286,0.216241432,0.077465396,0.312029739,0.803919933,0.528416529,0.961238037,0.922476074,0.051289571,2.306938266,9.350932857,2.523179697,9.103939726,0,0.315459432,71.61144849,-0.315459432,108.3885515,0.891501014,0,17.46710436,2.523179697,19.11847501,7,19,9% +2018-07-24 04:00:00,96.93965606,301.5982476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691916174,5.263882439,-5.103467804,5.103467804,1,0.597101915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097359457,84.4128636,-0.097359457,95.5871364,0.536439205,0,0,0,0,7,20,0% +2018-07-24 05:00:00,106.4142598,312.303735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857279205,5.450728442,-1.57775181,1.57775181,1,0.79996514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113051783,96.49126759,0.113051783,83.50873241,0,0.607724799,0,0,0,7,21,0% +2018-07-24 06:00:00,114.2694932,324.8357365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994378892,5.66945313,-0.580174931,0.580174931,1,0.629369446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304679834,107.738903,0.304679834,72.26109701,0,0.885893307,0,0,0,7,22,0% +2018-07-24 07:00:00,119.8294589,339.4297633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091418598,5.924166949,-0.017357071,0.017357071,1,0.533121924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464469042,117.6758648,0.464469042,62.32413521,0,0.942350199,0,0,0,7,23,0% +2018-07-25 08:00:00,122.4027976,355.667046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136331833,6.207560993,0.425479591,-0.425479591,1,0.457392394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581532128,125.5583767,0.581532128,54.44162333,0,0.964020228,0,0,0,7,0,0% +2018-07-25 09:00:00,121.5843919,12.30869091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122047958,0.214827183,0.869316278,-0.869316278,1,0.381491851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647892068,130.3828608,0.647892068,49.61713925,0,0.972826652,0,0,0,7,1,0% +2018-07-25 10:00:00,117.5100065,27.87229257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050936517,0.486463275,1.424092067,-1.424092067,1,0.286619603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659025831,131.2256194,0.659025831,48.77438063,0,0.97413044,0,0,0,7,2,0% +2018-07-25 11:00:00,110.7647655,41.4897574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933209854,0.724132873,2.317570055,-2.317570055,1,0.133825868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614172924,127.891848,0.614172924,52.10815198,0,0.968589703,0,0,0,7,3,0% +2018-07-25 12:00:00,102.0612272,53.10419326,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781304453,0.926843019,4.478018599,-4.478018599,1,0,#DIV/0!,0,0,0.190697942,1,0.219708202,0,0.93620038,0.974962343,0.724496596,1,0,0,0.029920681,0.312029739,0.918655463,0.643152059,0.961238037,0.922476074,0,0,0,0,0,0,-0.516387754,121.0902596,0.516387754,58.90974044,0,0.953173536,0,0,0,7,4,0% +2018-07-25 13:00:00,92.01148568,63.12138992,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605903375,1.101676083,28.26766332,-28.26766332,1,0,#DIV/0!,0,0,0.811459543,1,0.035361365,0,0.957969677,0.99673164,0.724496596,1,0,0,0.100128555,0.312029739,0.755567466,0.480064062,0.961238037,0.922476074,0,0,0,0,0,0,-0.37233215,111.8595191,0.37233215,68.14048091,0,0.915711301,0,0,0,7,5,0% +2018-07-25 14:00:00,80.97280579,72.09167769,81.82831988,291.2614221,36.12846128,35.65591131,0,35.65591131,35.03905487,0.61685644,76.30366965,55.37403971,20.92962994,1.089406407,19.84022353,1.413242066,1.258237139,-6.290220568,6.290220568,0.39415524,0.39415524,0.441515374,0.408139989,13.12718502,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.68087232,0.789271234,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.295696033,12.61834955,33.97656835,13.40762079,0,55.37403971,-0.190118002,100.9596708,0.190118002,79.04032925,0,0.787005442,33.97656835,56.98729138,71.27361081,7,6,110% +2018-07-25 15:00:00,69.53327445,80.60201219,283.3135965,602.9622499,72.4797956,80.63987861,8.209878714,72.4299999,70.29426234,2.135737562,70.87819482,0,70.87819482,2.185533259,68.69266156,1.213584579,1.406770496,-2.63362433,2.63362433,0.980529975,0.980529975,0.255828864,2.104792796,67.69737148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.56951873,1.583411406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524915215,65.07328847,69.09443395,66.65669987,8.209878714,0,0.013615908,89.21984181,-0.013615908,90.78015819,0,0,69.09443395,66.65669987,112.7199109,7,7,63% +2018-07-25 16:00:00,57.76970223,89.3320963,491.8868509,746.7902548,93.60593518,264.8751026,170.3836809,94.49142172,90.78337086,3.708050856,122.0862262,0,122.0862262,2.822564315,119.2636619,1.008271512,1.559139208,-1.496680466,1.496680466,0.786101123,0.786101123,0.190299731,3.065838777,98.60791383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.26442919,2.044938238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221189758,94.7856775,89.48561894,96.83061574,170.3836809,0,0.228154666,76.81154649,-0.228154666,103.1884535,0.830850416,0,231.0489712,96.83061574,294.4226726,7,8,27% +2018-07-25 17:00:00,45.98505601,99.27744032,679.0051265,821.614429,108.1096547,470.1593982,360.1910211,109.9683772,104.8497497,5.118627457,167.8925591,0,167.8925591,3.25990497,164.6326542,0.802590634,1.732718206,-0.902782297,0.902782297,0.684538555,0.684538555,0.15921773,3.760991426,120.9664126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7855676,2.361790054,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724825485,116.2775169,103.510393,118.639307,360.1910211,0,0.438394225,63.9985288,-0.438394225,116.0014712,0.935947403,0,440.6302437,118.639307,518.2772974,7,9,18% +2018-07-25 18:00:00,34.60262896,112.3395292,828.6999281,863.1033812,118.2706341,664.6242509,543.6728227,120.9514283,114.7043382,6.247090102,204.4941879,0,204.4941879,3.566295992,200.9278919,0.603929805,1.960694664,-0.509966939,0.509966939,0.617363172,0.617363172,0.142718287,4.19787241,135.0180068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2581728,2.583769306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.041344271,129.7844438,113.2995171,132.3682131,543.6728227,0,0.629904638,50.95691277,-0.629904638,129.0430872,0.970622905,0,641.0008119,132.3682131,727.63316,7,10,14% +2018-07-25 19:00:00,24.58702388,132.8683422,929.655464,885.2452038,124.6751212,826.9083909,698.984549,127.9238418,120.9157063,7.008135576,229.1651453,0,229.1651453,3.759414906,225.4057304,0.42912452,2.318990043,-0.20866499,0.20866499,0.565837504,0.565837504,0.134108953,4.373515184,140.6672822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2287761,2.723683302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168596863,135.2147422,119.397373,137.9384255,698.984549,0,0.78959428,37.85238755,-0.78959428,142.1476125,0.98667634,0,809.0688893,137.9384255,899.34683,7,11,11% +2018-07-25 20:00:00,18.62938029,168.4742199,974.5336293,893.9366527,127.4350302,941.3440138,810.4051739,130.93884,123.5923938,7.346446142,240.1295975,0,240.1295975,3.842636345,236.2869612,0.325144024,2.940429842,0.049677736,-0.049677736,0.521658296,0.521658296,0.130765144,4.291857884,138.0409027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.80171,2.783976951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.109436427,132.6901663,121.9111464,135.4741433,810.4051739,0,0.90655772,24.9660942,-0.90655772,155.0339058,0.994846314,0,928.1397463,135.4741433,1016.804864,7,12,10% +2018-07-25 21:00:00,20.72199972,210.8929253,960.11187,891.2126915,126.553297,996.9544232,866.9794462,129.974977,122.7372481,7.237728829,236.6062875,0,236.6062875,3.816048836,232.7902387,0.361667123,3.680775915,0.293554611,-0.293554611,0.479952895,0.479952895,0.131810991,3.969900189,127.6856365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9797114,2.764714391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.876179173,122.7362906,120.8558906,125.501005,866.9794462,0,0.972808685,13.39188672,-0.972808685,166.6081133,0.998602433,0,986.6236746,125.501005,1068.761572,7,13,8% +2018-07-25 22:00:00,29.1592942,238.3596509,887.4045713,876.4477058,122.0304356,987.3091688,862.2687706,125.0403982,118.3507677,6.689630499,218.8411802,0,218.8411802,3.679667877,215.1615123,0.508925691,4.160160712,0.546474007,-0.546474007,0.436701131,0.436701131,0.137513869,3.439557391,110.6279891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7632596,2.665906851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491947621,106.3398311,116.2552072,109.0057379,862.2687706,0,0.983822269,10.32009442,-0.983822269,169.6799056,0.999177812,0,977.8150311,109.0057379,1049.157106,7,14,7% +2018-07-25 23:00:00,40.02976102,254.4732593,761.6239642,846.0004301,113.8325873,910.4046105,794.2630526,116.1415579,110.4001148,5.741443153,188.0970204,0,188.0970204,3.432472505,184.6645479,0.698651129,4.441396232,0.837426441,-0.837426441,0.386945334,0.386945334,0.149460354,2.747697959,88.37541152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1207896,2.486814645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990697818,84.94980707,108.1114874,87.43662172,794.2630526,0,0.938844738,20.14155834,-0.938844738,159.8584417,0.996743058,0,899.7876711,87.43662172,957.0131913,7,15,6% +2018-07-25 00:00:00,51.68569219,265.6839993,592.0168428,790.8832978,101.6889816,768.1793913,665.0938346,103.0855567,98.62268363,4.46287303,146.6076356,0,146.6076356,3.066297988,143.5413377,0.902085505,4.637060557,1.218449126,-1.218449126,0.321786617,0.321786617,0.171767042,1.955993899,62.91148746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.7998748,2.221522454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.417110921,60.4729147,96.21698573,62.69443716,665.0938346,0,0.840950664,32.75935601,-0.840950664,147.240644,0.99054348,0,755.0213472,62.69443716,796.0536024,7,16,5% +2018-07-25 01:00:00,63.5100739,274.8749997,391.9227882,689.3467285,84.44625877,565.2287844,480.3744124,84.85437202,81.8998925,2.954479527,97.57258381,0,97.57258381,2.546366276,95.02621753,1.108459898,4.797473776,1.820418618,-1.820418618,0.218843771,0.218843771,0.21546657,1.143846911,36.7900486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72529188,1.844833698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.828713193,35.36399409,79.55400508,37.20882779,480.3744124,0,0.696854562,45.82481335,-0.696854562,134.1751867,0.978249017,0,549.4798016,37.20882779,573.8322352,7,17,4% +2018-07-25 02:00:00,75.16974036,283.3946121,181.1375924,482.1963321,57.71638846,306.4251153,249.0835972,57.34151808,55.9760264,1.365491685,45.65926849,0,45.65926849,1.740362063,43.91890643,1.311959467,4.946169063,3.153224356,-3.153224356,0,0,0.318632856,0.435090516,13.9940066,0.008997739,1,0.307102544,0,0.923253417,0.962015381,0.724496596,1,53.83027557,1.26088639,0.001532225,0.312029739,0.995664306,0.720160902,0.961238037,0.922476074,0.314413728,13.45157143,54.1446893,14.71245782,246.842408,0,0.516560539,58.89817926,-0.516560539,121.1018207,0.953205924,0,289.4363349,14.71245782,299.0653443,7,18,3% +2018-07-25 03:00:00,86.30483488,292.0431828,13.34425221,63.34636296,9.26169951,28.97576039,19.89274068,9.083019707,8.982425098,0.10059461,3.514742854,0,3.514742854,0.279274412,3.235468442,1.506303529,5.097115099,11.49911952,-11.49911952,0,0,0.694059088,0.069818603,2.245606274,0.589543466,1,0.086744947,0,0.952689117,0.99145108,0.724496596,1,8.700369922,0.202333361,0.078785899,0.312029739,0.800989811,0.525486407,0.961238037,0.922476074,0.04802875,2.158562167,8.748398673,2.360895528,8.165105392,0,0.3140313,71.69765586,-0.3140313,108.3023441,0.890780202,0,16.02171291,2.360895528,17.56687181,7,19,10% +2018-07-25 04:00:00,97.09115563,301.4409242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69456034,5.261136627,-5.01062768,5.01062768,1,0.612978512,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095554286,84.51677679,-0.095554286,95.48322321,0.526737235,0,0,0,0,7,20,0% +2018-07-25 05:00:00,106.5844725,312.1620391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860249976,5.448255383,-1.567980439,1.567980439,1,0.798294137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115145262,96.61200363,0.115145262,83.38799637,0,0.615765895,0,0,0,7,21,0% +2018-07-25 06:00:00,114.4599436,324.7192669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997702878,5.667420352,-0.579377861,0.579377861,1,0.629233139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307037208,107.8807693,0.307037208,72.1192307,0,0.887153287,0,0,0,7,22,0% +2018-07-25 07:00:00,120.0377635,339.3546741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0950542,5.922856394,-0.019478125,0.019478125,1,0.533484645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467047823,117.8428343,0.467047823,62.15716566,0,0.942944582,0,0,0,7,23,0% +2018-07-26 08:00:00,122.6207713,355.6498435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140136191,6.207260753,0.421471497,-0.421471497,1,0.458077819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584274659,125.7517645,0.584274659,54.24823546,0,0.964423809,0,0,0,7,0,0% +2018-07-26 09:00:00,121.799642,12.35403085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125804781,0.215618514,0.863119355,-0.863119355,1,0.382551587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650729482,130.5966243,0.650729482,49.40337573,0,0.973163155,0,0,0,7,1,0% +2018-07-26 10:00:00,117.7115462,27.96871927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054454049,0.488146239,1.41409381,-1.41409381,1,0.288329406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661882775,131.4436225,0.661882775,48.55637754,0,0.974457922,0,0,0,7,2,0% +2018-07-26 11:00:00,110.9471527,41.61973387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93639311,0.72640139,2.298323478,-2.298323478,1,0.137117227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616972746,128.0954038,0.616972746,51.90459622,0,0.968959143,0,0,0,7,3,0% +2018-07-26 12:00:00,102.2241392,53.25444264,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784147804,0.929465365,4.420029861,-4.420029861,1,0,#DIV/0!,0,0,0.184150281,1,0.222497057,0,0.935812341,0.974574304,0.724496596,1,0,0,0.028975694,0.312029739,0.921117171,0.645613767,0.961238037,0.922476074,0,0,0,0,0,0,-0.519057778,121.2690703,0.519057778,58.73092972,0,0.95367161,0,0,0,7,4,0% +2018-07-26 13:00:00,92.15743609,63.28555251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60845069,1.10454126,26.36272913,-26.36272913,1,0,#DIV/0!,0,0,0.7991217,1,0.037914162,0,0.957722115,0.996484078,0.724496596,1,0,0,0.099028987,0.312029739,0.757818359,0.482314955,0.961238037,0.922476074,0,0,0,0,0,0,-0.374808686,112.012489,0.374808686,67.98751103,0,0.916598609,0,0,0,7,5,0% +2018-07-26 14:00:00,81.10418115,72.26901371,79.75522874,285.9610316,35.5347039,35.06443007,0,35.06443007,34.46320147,0.601228603,75.40757772,54.9984967,20.40908101,1.071502432,19.33757858,1.415534998,1.261332236,-6.383907499,6.383907499,0.378133832,0.378133832,0.445547012,0.393927653,12.67006744,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.12734012,0.776299864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.285399244,12.17895076,33.41273936,12.95525062,0,54.9984967,-0.192328641,101.0887123,0.192328641,78.91128766,0,0.79002832,33.41273936,56.40562058,70.32908992,7,6,110% +2018-07-26 15:00:00,69.65683659,80.79599648,281.0651684,600.8047311,72.20014657,79.15043327,7.008599542,72.14183373,70.02304576,2.118787962,70.32460494,0,70.32460494,2.177100809,68.14750413,1.215741145,1.410156161,-2.649367291,2.649367291,0.98322218,0.98322218,0.256880449,2.09237107,67.29784608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.30881504,1.577302125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515915717,64.68924945,68.82473076,66.26655158,7.008599542,0,0.011665353,89.33160932,-0.011665353,90.66839068,0,0,68.82473076,66.26655158,112.1948634,7,7,63% +2018-07-26 16:00:00,57.88986456,89.55000838,489.8433444,745.768666,93.43118506,263.2177914,168.9112553,94.30653614,90.6138901,3.692646041,121.585485,0,121.585485,2.817294954,118.7681901,1.01036874,1.562942491,-1.501644112,1.501644112,0.786949957,0.786949957,0.190736867,3.055983845,98.29094535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.10151783,2.041120604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.214049893,94.48099534,89.31556773,96.52211595,168.9112553,0,0.226492829,76.90932256,-0.226492829,103.0906774,0.829242459,0,229.3839525,96.52211595,292.5557469,7,8,28% +2018-07-26 17:00:00,46.1090292,99.53055509,677.1918558,821.0315118,107.9803406,468.6340522,358.804759,109.8292932,104.7243349,5.104958256,167.4490114,0,167.4490114,3.256005674,164.1930057,0.804754374,1.737135893,-0.904445603,0.904445603,0.684822997,0.684822997,0.1594531,3.75254734,120.6948217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6650141,2.358965027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718707774,116.0164535,103.3837219,118.3754185,358.804759,0,0.437017038,64.08628928,-0.437017038,115.9137107,0.935587985,0,439.0771432,118.3754185,516.5514872,7,9,18% +2018-07-26 18:00:00,34.74215539,112.6399534,827.0796628,862.7148605,118.1653192,663.3008297,542.4637551,120.8370747,114.6021988,6.234875858,204.0981602,0,204.0981602,3.563120357,200.5350398,0.606365001,1.965938056,-0.510171984,0.510171984,0.617398237,0.617398237,0.142870541,4.190215397,134.7717309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1599926,2.581468569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.035796791,129.5477141,113.1957894,132.1291826,542.4637551,0,0.628786845,51.03932525,-0.628786845,128.9606747,0.970481797,0,639.6469892,132.1291826,726.1228966,7,10,14% +2018-07-26 19:00:00,24.76141477,133.1929678,928.1662132,884.9456401,124.5826981,825.7727638,697.9497847,127.8229791,120.8260701,6.996908974,228.8012723,0,228.8012723,3.756628009,225.0446443,0.432168215,2.324655828,-0.208016849,0.208016849,0.565726666,0.565726666,0.134224556,4.366188828,140.4316414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1426144,2.721664204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.163288943,134.9882353,119.3059034,137.7098995,697.9497847,0,0.788692269,37.93653061,-0.788692269,142.0634694,0.986603918,0,807.9058953,137.7098995,898.0342703,7,11,11% +2018-07-26 20:00:00,18.84728676,168.5904015,973.1005588,893.6688029,127.347624,940.3398456,809.4965792,130.8432664,123.5076233,7.335643051,239.7794974,0,239.7794974,3.840000728,235.9394966,0.328947209,2.942457593,0.050987195,-0.050987195,0.521434366,0.521434366,0.130867897,4.284479478,137.8035878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7202254,2.782067455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104090797,132.4620502,121.8243162,135.2441177,809.4965792,0,0.905812731,25.06703229,-0.905812731,154.9329677,0.994800952,0,927.1122842,135.2441177,1015.626854,7,12,10% +2018-07-26 21:00:00,20.92225654,210.6279469,958.6549136,890.9339503,126.4639548,995.9996014,866.1222558,129.8773456,122.6505999,7.226745677,236.2503376,0,236.2503376,3.813354838,232.4369827,0.365162264,3.67615117,0.295540575,-0.295540575,0.479613275,0.479613275,0.131918121,3.962147969,127.4362985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8964219,2.762762599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870562716,122.4966174,120.7669846,125.25938,866.1222558,0,0.972150916,13.55364687,-0.972150916,166.4463531,0.998567656,0,985.6486557,125.25938,1067.628415,7,13,8% +2018-07-26 22:00:00,29.31547272,238.0380071,885.8453758,876.1107693,121.9319072,986.3039179,861.3708309,124.933087,118.2552104,6.677876626,218.4601642,0,218.4601642,3.676696884,214.7834673,0.511651521,4.154546968,0.549335543,-0.549335543,0.436211779,0.436211779,0.137644684,3.431188042,110.358802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6714062,2.663754376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485884056,106.0810782,116.1572903,108.7448326,861.3708309,0,0.983175714,10.52486983,-0.983175714,169.4751302,0.999144391,0,976.7911243,108.7448326,1047.962442,7,14,7% +2018-07-26 23:00:00,40.16166115,254.1965151,759.8929995,845.5296212,113.7157923,909.2340214,793.2187854,116.015236,110.2868416,5.728394411,187.6738062,0,187.6738062,3.428950704,184.2448555,0.70095322,4.436566135,0.841656566,-0.841656566,0.38622194,0.38622194,0.149647111,2.73858528,88.08231643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0119071,2.484263112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984095713,84.66807292,107.9960028,87.15233604,793.2187854,0,0.938132462,20.25974364,-0.938132462,159.7402564,0.996702622,0,898.5992464,87.15233604,955.6387073,7,15,6% +2018-07-26 00:00:00,51.80870552,265.448755,590.0623503,790.1212617,101.5390772,766.7064917,663.7810531,102.9254386,98.47729939,4.44813924,146.1292261,0,146.1292261,3.061777817,143.0674483,0.904232492,4.632954769,1.225242143,-1.225242143,0.320624943,0.320624943,0.172081946,1.94620826,62.59674767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.66012594,2.218247606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410021259,60.17037485,96.0701472,62.38862245,663.7810531,0,0.840100229,32.84929491,-0.840100229,147.1507051,0.990483292,0,753.5341898,62.38862245,794.3662955,7,16,5% +2018-07-26 01:00:00,63.63335494,274.668672,389.7299044,687.8890293,84.22898838,563.2627159,478.6355936,84.62712225,81.68917361,2.937948642,97.03434222,0,97.03434222,2.539814772,94.49452745,1.110611558,4.793872679,1.833316881,-1.833316881,0.216638038,0.216638038,0.216121441,1.133870001,36.46915689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.52274087,1.840087156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.821484956,35.05554077,79.34422583,36.89562793,478.6355936,0,0.695803499,45.90871967,-0.695803499,134.0912803,0.978140632,0,547.5171477,36.89562793,571.6645982,7,17,4% +2018-07-26 02:00:00,75.2991903,283.2079436,178.8212422,478.785657,57.31903331,303.6395856,246.7009025,56.93868303,55.59065297,1.348030058,45.08566083,0,45.08566083,1.728380339,43.35728049,1.314218795,4.942911084,3.189082837,-3.189082837,0,0,0.320538168,0.432095085,13.89766324,0.014983669,1,0.303859174,0,0.923762406,0.962524369,0.724496596,1,53.47507131,1.252205672,0.00254444,0.312029739,0.99281011,0.717306705,0.961238037,0.922476074,0.311728413,13.35896253,53.78679973,14.6111682,243.0044178,0,0.51526377,58.98491265,-0.51526377,121.0150874,0.952962322,0,285.3608538,14.6111682,294.9235712,7,18,3% +2018-07-26 03:00:00,86.44068018,291.8707893,12.24191704,58.44002221,8.613849322,26.71080615,18.26441143,8.446394725,8.354109984,0.092284742,3.227933856,0,3.227933856,0.259739339,2.968194517,1.508674477,5.094106264,11.97153301,-11.97153301,0,0,0.703635656,0.064934835,2.088527496,0.602717259,1,0.08333802,0,0.953058494,0.991820457,0.724496596,1,8.090604249,0.188180267,0.080152081,0.312029739,0.797972992,0.522469588,0.961238037,0.922476074,0.044708948,2.00757207,8.135313198,2.195752337,7.256135427,0,0.312532589,71.78807748,-0.312532589,108.2119225,0.890016684,0,14.59339479,2.195752337,16.03047078,7,19,10% +2018-07-26 04:00:00,97.24804212,301.2813043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697298526,5.258350735,-4.918152779,4.918152779,1,0.628792651,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.093666803,84.62540892,-0.093666803,95.37459108,0.516192947,0,0,0,0,7,20,0% +2018-07-26 05:00:00,106.7602568,312.0185541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863317992,5.445751096,-1.557922465,1.557922465,1,0.796574122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117322899,96.73762449,0.117322899,83.26237551,0,0.623825735,0,0,0,7,21,0% +2018-07-26 06:00:00,114.6561346,324.6018705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001127057,5.665371399,-0.578458118,0.578458118,1,0.629075854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309477892,108.0277687,0.309477892,71.97223134,0,0.888437571,0,0,0,7,22,0% +2018-07-26 07:00:00,120.2518365,339.2800547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098790479,5.921554041,-0.02154412,0.02154412,1,0.533837951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469706434,118.0152422,0.469706434,61.9847578,0,0.943550532,0,0,0,7,23,0% +2018-07-27 08:00:00,122.8442297,355.6349652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144036275,6.207001079,0.417485728,-0.417485728,1,0.458759425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58709115,125.9508579,0.58709115,54.04914207,0,0.964834349,0,0,0,7,0,0% +2018-07-27 09:00:00,122.0197077,12.40346281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129645652,0.216481265,0.856927757,-0.856927757,1,0.383610412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653632995,130.8160775,0.653632995,49.18392253,0,0.973504474,0,0,0,7,1,0% +2018-07-27 10:00:00,117.9169973,28.07034584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058039846,0.489919957,1.404099483,-1.404099483,1,0.290038536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664796512,131.6667163,0.664796512,48.33328374,0,0.974789016,0,0,0,7,2,0% +2018-07-27 11:00:00,111.1325561,41.75532393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93962901,0.728767883,2.279138963,-2.279138963,1,0.140397972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619819248,128.3029362,0.619819248,51.69706378,0,0.969331321,0,0,0,7,3,0% +2018-07-27 12:00:00,102.3893334,53.41034229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787030986,0.932186328,4.362808098,-4.362808098,1,0,#DIV/0!,0,0,0.177584531,1,0.225318115,0,0.935418107,0.97418007,0.724496596,1,0,0,0.028022655,0.312029739,0.923606973,0.648103569,0.961238037,0.922476074,0,0,0,0,0,0,-0.521764257,121.4506689,0.521764257,58.54933105,0,0.954171282,0,0,0,7,4,0% +2018-07-27 13:00:00,92.30513616,63.45531228,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611028542,1.107504127,24.68040003,-24.68040003,1,0,#DIV/0!,0,0,0.786800535,1,0.040495831,0,0.95747017,0.996232133,0.724496596,1,0,0,0.097921374,0.312029739,0.760095541,0.484592137,0.961238037,0.922476074,0,0,0,0,0,0,-0.377312044,112.1672835,0.377312044,67.83271646,0,0.917483689,0,0,0,7,5,0% +2018-07-27 14:00:00,81.23691987,72.45196739,77.67297233,280.562597,34.92953658,34.46181385,0,34.46181385,33.87628218,0.585531675,74.47136247,54.58539666,19.88596581,1.053254404,18.83271141,1.417851726,1.26452538,-6.481314444,6.481314444,0.361476263,0.361476263,0.449700012,0.379787786,12.21528071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.56317097,0.76307923,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.275154958,11.74179245,32.83832593,12.50487168,0,54.58539666,-0.194556927,101.2188417,0.194556927,78.78115834,0,0.793005809,32.83832593,55.79140832,69.35268685,7,6,111% +2018-07-27 15:00:00,69.78165394,80.99578055,278.7936148,598.6065119,71.91599087,77.65741076,5.808288323,71.84912244,69.74745841,2.101664031,69.76527212,0,69.76527212,2.168532467,67.59673966,1.217919619,1.413643051,-2.665388798,2.665388798,0.985962019,0.985962019,0.257954225,2.079771366,66.89259628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.04390999,1.57109439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.506787275,64.29970793,68.55069727,65.87080232,5.808288323,0,0.009703016,89.44404943,-0.009703016,90.55595057,0,0,68.55069727,65.87080232,111.66182,7,7,63% +2018-07-27 16:00:00,58.0113369,89.77412565,487.7751976,744.7291082,93.25386988,261.551524,167.4325469,94.11897711,90.44192163,3.677055477,121.0786922,0,121.0786922,2.811948247,118.2667439,1.012488832,1.566854076,-1.506631911,1.506631911,0.787802921,0.787802921,0.191182066,3.045966846,97.9687642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9362152,2.037246933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.206792611,94.17130257,89.14300781,96.2085495,167.4325469,0,0.224823422,77.00750501,-0.224823422,102.992495,0.827603243,0,227.7107267,96.2085495,290.6772982,7,8,28% +2018-07-27 17:00:00,46.23462087,99.79054396,675.351196,820.4375014,107.8488946,467.0983853,357.4104502,109.6879351,104.5968525,5.091082585,166.9987585,0,166.9987585,3.252042091,163.7467164,0.806946363,1.741673554,-0.906078284,0.906078284,0.685102202,0.685102202,0.159693053,3.743927113,120.4175656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5424731,2.356093425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712462448,115.7499444,103.2549356,118.1060378,357.4104502,0,0.435633975,64.17435843,-0.435633975,115.8256416,0.935224746,0,437.5140332,118.1060378,514.8120729,7,9,18% +2018-07-27 18:00:00,34.88398188,112.9480711,825.4269132,862.3173683,118.0578023,661.964359,541.2440183,120.7203407,114.497924,6.222416733,203.6941899,0,203.6941899,3.559878326,200.1343116,0.60884034,1.971315724,-0.510326238,0.510326238,0.617424616,0.617424616,0.143026355,4.182353717,134.5188723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0597597,2.579119729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.030101031,129.3046567,113.0898607,131.8837765,541.2440183,0,0.627662202,51.12214612,-0.627662202,128.8778539,0.970339317,0,638.2802115,131.8837765,724.5955055,7,10,14% +2018-07-27 19:00:00,24.93928322,133.5254406,926.6371502,884.6372939,124.4877458,824.6187753,696.899412,127.7193632,120.733981,6.985382252,228.4276702,0,228.4276702,3.753764848,224.6739053,0.435272605,2.330458573,-0.207305282,0.207305282,0.565604981,0.565604981,0.134343573,4.358621182,140.1882399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0540949,2.719589854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.157806209,134.7542685,119.2119011,137.4738583,696.899412,0,0.787779824,38.02148599,-0.787779824,141.978514,0.986530489,0,806.724419,137.4738583,896.6983098,7,11,11% +2018-07-27 20:00:00,19.07011221,168.7138498,971.6185683,893.3911595,127.2571859,939.3092711,808.5648877,130.7443834,123.4199122,7.324471181,239.4174446,0,239.4174446,3.837273683,235.5801709,0.332836247,2.944612173,0.052373007,-0.052373007,0.521197378,0.521197378,0.130974428,4.27681935,137.5572118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6359141,2.780091721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.09854106,132.2252242,121.7344552,135.0053159,808.5648877,0,0.905051364,25.16979816,-0.905051364,154.8302018,0.994754517,0,926.0580293,135.0053159,1014.416308,7,12,10% +2018-07-27 21:00:00,21.12872638,210.3675284,957.1387819,890.643186,126.3709313,995.0078325,865.2321345,129.7756979,122.5603815,7.215316435,235.8799289,0,235.8799289,3.810549839,232.0693791,0.368765842,3.671606011,0.297620583,-0.297620583,0.479257572,0.479257572,0.132029893,3.954073783,127.1766049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8097005,2.760730387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864712995,122.24699,120.6744135,125.0077204,865.2321345,0,0.971468876,13.71939919,-0.971468876,166.2806008,0.998531547,0,984.6359955,125.0077204,1066.451048,7,13,8% +2018-07-27 22:00:00,29.47784506,237.7152841,884.2163538,875.7577732,121.8288927,985.2490507,860.4281522,124.8208984,118.1553021,6.665596369,218.0620827,0,218.0620827,3.673590615,214.3884921,0.514485453,4.148914389,0.552319267,-0.552319267,0.435701532,0.435701532,0.137781768,3.42246094,110.0781085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5753706,2.661503895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479561301,105.8112649,116.0549319,108.4727688,860.4281522,0,0.982495592,10.73610837,-0.982495592,169.2638916,0.999109186,0,975.7166031,108.4727688,1046.709861,7,14,7% +2018-07-27 23:00:00,40.2992823,253.9168937,758.0820136,845.0353518,113.593467,907.9992865,792.1163392,115.8829473,110.1682049,5.714742434,187.2310231,0,187.2310231,3.425262147,183.805761,0.703355162,4.431685821,0.84605927,-0.84605927,0.385469033,0.385469033,0.149843243,2.729088656,87.77687236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.897869,2.481590765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.977215441,84.37446846,107.8750844,86.85605923,792.1163392,0,0.937376569,20.38444794,-0.937376569,159.6155521,0.996659644,0,897.345473,86.85605923,954.1910266,7,15,6% +2018-07-27 00:00:00,51.93709609,265.210378,588.0191289,789.3209086,101.3820725,765.1527736,662.3950081,102.7577655,98.32502895,4.432736574,145.6290892,0,145.6290892,3.057043546,142.5720456,0.906473331,4.628794307,1.232312886,-1.232312886,0.319415775,0.319415775,0.172412882,1.93602989,62.26937632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.5137578,2.214817642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402647065,59.85569305,95.91640487,62.07051069,662.3950081,0,0.839196075,32.94467581,-0.839196075,147.0553242,0.990419168,0,751.9651179,62.07051069,792.5890257,7,16,5% +2018-07-27 01:00:00,63.76183253,274.4593371,387.4428539,686.3582198,84.00150898,561.1949687,476.8057072,84.38926144,81.46855355,2.920707889,96.47296101,0,96.47296101,2.532955428,93.94000559,1.112853915,4.790219094,1.846776621,-1.846776621,0.214336287,0.214336287,0.216810061,1.123526477,36.13647359,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31067248,1.835117585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813991108,34.73575294,79.12466359,36.57087052,476.8057072,0,0.694689294,45.99753686,-0.694689294,134.0024631,0.978025377,0,545.4527452,36.57087052,569.3876485,7,17,4% +2018-07-27 02:00:00,75.43376818,283.0184758,176.4158846,475.2039796,56.90256851,300.7220696,244.205426,56.51664358,55.18674613,1.329897456,44.48989607,0,44.48989607,1.715822389,42.77407368,1.316567622,4.939604247,3.226826723,-3.226826723,0,0,0.322547874,0.428955597,13.79668653,0.021206711,1,0.300516244,0,0.924284764,0.963046727,0.724496596,1,53.10205098,1.24310748,0.003590768,0.312029739,0.989868121,0.714364716,0.961238037,0.922476074,0.308936926,13.26189988,53.4109879,14.50500736,239.0266321,0,0.513896004,59.07630915,-0.513896004,120.9236908,0.95270405,0,281.1326283,14.50500736,290.6258655,7,18,3% +2018-07-27 03:00:00,86.58125103,291.6958374,11.14980367,53.52467585,7.957965306,24.44630549,16.64425027,7.80205522,7.71800329,0.08405193,2.943361005,0,2.943361005,0.239962016,2.703398989,1.511127901,5.091052777,12.49907537,-12.49907537,0,0,0.713731429,0.059990504,1.929500822,0.616463545,1,0.079835866,0,0.953435363,0.992197326,0.724496596,1,7.473357937,0.173851664,0.081563337,0.312029739,0.794872305,0.519368901,0.961238037,0.922476074,0.041345858,1.854709583,7.514703795,2.028561246,6.383676738,0,0.310964056,71.88266145,-0.310964056,108.1173386,0.889209712,0,13.19113115,2.028561246,14.51878391,7,19,10% +2018-07-27 04:00:00,97.41026867,301.1194396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700129914,5.255525663,-4.826242001,4.826242001,1,0.64451032,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091697371,84.73873685,-0.091697371,95.26126315,0.504728099,0,0,0,0,7,20,0% +2018-07-27 05:00:00,106.9415578,311.8733177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.86648229,5.443216243,-1.547598059,1.547598059,1,0.794808545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.119583985,96.86809379,0.119583985,83.13190621,0,0.631883812,0,0,0,7,21,0% +2018-07-27 06:00:00,114.8580046,324.4835752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004650352,5.663306756,-0.577418719,0.577418719,1,0.628898106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.312000855,108.1798528,0.312000855,71.82014724,0,0.889744029,0,0,0,7,22,0% +2018-07-27 07:00:00,120.4716113,339.2059317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102626272,5.92026035,-0.02355402,0.02355402,1,0.534181664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472443561,118.1930307,0.472443561,61.80696935,0,0.944167253,0,0,0,7,23,0% +2018-07-28 08:00:00,123.0731,355.6224451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148030816,6.206782561,0.413525187,-0.413525187,1,0.459436718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589980061,126.1555933,0.589980061,53.8444067,0,0.965251373,0,0,0,7,0,0% +2018-07-28 09:00:00,122.2445091,12.45702299,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133569177,0.217416066,0.850746107,-0.850746107,1,0.384667537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656600921,131.041152,0.656600921,48.95884796,0,0.973850244,0,0,0,7,1,0% +2018-07-28 10:00:00,118.1262751,28.17719411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061692434,0.491784811,1.394116406,-1.394116406,1,0.291745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667765294,131.8948225,0.667765294,48.10517749,0,0.975123392,0,0,0,7,2,0% +2018-07-28 11:00:00,111.3208939,41.89652522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942916125,0.73123231,2.260029611,-2.260029611,1,0.143665864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622710708,128.5143561,0.622710708,51.48564393,0,0.969705893,0,0,0,7,3,0% +2018-07-28 12:00:00,102.5567365,53.57186679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789952722,0.935005462,4.306374839,-4.306374839,1,0,#DIV/0!,0,0,0.171004922,1,0.228170016,0,0.935017811,0.973779774,0.724496596,1,0,0,0.027062093,0.312029739,0.926123659,0.650620255,0.961238037,0.922476074,0,0,0,0,0,0,-0.524505583,121.6349653,0.524505583,58.36503466,0,0.95467213,0,0,0,7,4,0% +2018-07-28 13:00:00,92.45452501,63.63062534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363587,1.110563917,23.18463847,-23.18463847,1,0,#DIV/0!,0,0,0.774503213,1,0.04310529,0,0.957213899,0.995975862,0.724496596,1,0,0,0.096806285,0.312029739,0.762398044,0.486894639,0.961238037,0.922476074,0,0,0,0,0,0,-0.379840809,112.3238223,0.379840809,67.67617765,0,0.918365908,0,0,0,7,5,0% +2018-07-28 14:00:00,81.37097321,72.64047926,75.58311456,275.0674686,34.31302549,33.84813862,0,33.84813862,33.27836117,0.569777444,73.49440402,54.1337385,19.36066552,1.03466432,18.3260012,1.420191398,1.267815533,-6.582614838,6.582614838,0.344152875,0.344152875,0.453977396,0.36573595,11.76332538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.98842656,0.749610778,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264974451,11.30735579,32.25340102,12.05696657,0,54.1337385,-0.196801675,101.3499917,0.196801675,78.65000832,0,0.795937121,32.25340102,55.14401857,68.34405829,7,6,112% +2018-07-28 15:00:00,69.90769433,81.20128877,276.499552,596.3673787,71.62733188,76.16163794,4.609763974,71.55187396,69.46750354,2.084370417,69.20034592,0,69.20034592,2.159828333,67.04051759,1.220119439,1.417229846,-2.681689836,2.681689836,0.988749661,0.988749661,0.259050445,2.066995243,66.48167227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77480673,1.564788275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497531017,63.90471214,68.27233775,65.46950041,4.609763974,0,0.007729739,89.55711419,-0.007729739,90.44288581,0,0,68.27233775,65.46950041,111.1208164,7,7,63% +2018-07-28 16:00:00,58.13410221,90.00435039,485.6826387,743.6714453,93.07398863,259.8767604,165.948015,93.92874535,90.26746447,3.661280884,120.565903,0,120.565903,2.806524164,117.7593788,1.014631491,1.570872256,-1.511642354,1.511642354,0.788659757,0.788659757,0.191635404,3.035787767,97.64137003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76852034,2.033317203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.199417903,93.85659884,88.96793824,95.88991604,165.948015,0,0.22314695,77.10606394,-0.22314695,102.8939361,0.825932407,0,226.0297818,95.88991604,288.787814,7,8,28% +2018-07-28 17:00:00,46.36182885,100.057271,673.4830453,819.832248,107.7153001,465.5525067,356.0082206,109.5442861,104.4672864,5.076999676,166.5417754,0,166.5417754,3.248013726,163.2937616,0.809166561,1.746328819,-0.907679356,0.907679356,0.685376001,0.685376001,0.159937657,3.735129503,120.1346042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4179293,2.353174888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.70608861,115.4779511,103.1240179,117.831126,356.0082206,0,0.434245203,64.26272533,-0.434245203,115.7372747,0.93485768,0,435.9410371,117.831126,513.0591525,7,9,18% +2018-07-28 18:00:00,35.02811728,113.2636684,823.7413038,861.9107381,117.9480532,660.6146042,540.0134101,120.6011941,114.3914842,6.209709898,203.282185,0,203.282185,3.556568986,199.7256161,0.611355977,1.976823936,-0.510429129,0.510429129,0.617442212,0.617442212,0.143185795,4.174285304,134.2593644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9574457,2.576722124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024255493,129.0552079,112.9817012,131.63193,540.0134101,0,0.626530552,51.20538575,-0.626530552,128.7946142,0.970195432,0,636.9002449,131.63193,723.0507104,7,10,14% +2018-07-28 19:00:00,25.12062842,133.8654028,925.067699,884.3199841,124.3902237,823.445885,695.8329344,127.6129506,120.6393995,6.973551066,228.0441979,0,228.0441979,3.750824197,224.2933737,0.438437676,2.336392034,-0.206529962,0.206529962,0.565472393,0.565472393,0.134466076,4.350809775,139.9369982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9631796,2.717459362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152146871,134.5127654,119.1153265,137.2302248,695.8329344,0,0.786856508,38.10728996,-0.786856508,141.89271,0.986456013,0,805.5239084,137.2302248,895.3383459,7,11,11% +2018-07-28 20:00:00,19.29779818,168.8442292,970.0869683,893.1035251,127.1636684,938.2515092,807.6093692,130.64214,123.3292146,7.312925333,239.0432705,0,239.0432705,3.834453787,235.2088167,0.336810117,2.946887723,0.053835378,-0.053835378,0.520947298,0.520947298,0.131084813,4.268875053,137.3016959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5487322,2.778048716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092785444,131.9796126,121.6415176,134.7576613,807.6093692,0,0.904272961,25.27445954,-0.904272961,154.7255405,0.994706961,0,924.9761791,134.7576613,1013.172373,7,12,10% +2018-07-28 21:00:00,21.34133525,210.11186,955.5627671,890.3401755,126.2741767,993.9781788,864.3081987,129.6699801,122.4665444,7.20343577,235.4948883,0,235.4948883,3.80763233,231.687256,0.372476567,3.667143755,0.299794837,-0.299794837,0.478885753,0.478885753,0.132146397,3.945675626,126.9064913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7195007,2.758616661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85862856,121.9873466,120.5781293,124.7459632,864.3081987,0,0.970761763,13.88919595,-0.970761763,166.1108041,0.998494057,0,983.5847291,124.7459632,1065.228467,7,13,8% +2018-07-28 22:00:00,29.64638268,237.39179,882.5168765,875.3884486,121.7213421,984.1435675,859.439788,124.7037795,118.0509945,6.652784991,217.6467817,0,217.6467817,3.670347569,213.9764341,0.517426989,4.143268352,0.555425556,-0.555425556,0.435170326,0.435170326,0.137925229,3.413374916,109.7858707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4751062,2.659154319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.472978507,105.5303548,115.9480847,108.1895091,859.439788,0,0.981781047,10.95370175,-0.981781047,169.0462983,0.999072148,0,974.5904397,108.1895091,1045.39831,7,14,7% +2018-07-28 23:00:00,40.4426122,253.6346122,756.1905515,844.5172572,113.4655623,906.6994346,790.9547938,115.7446407,110.0441569,5.700483793,186.7685594,0,186.7685594,3.421405346,183.3471541,0.705856741,4.42675908,0.85063553,-0.85063553,0.384686447,0.384686447,0.150048902,2.719208125,87.45908051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7786294,2.478796526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.97005703,84.06899485,107.7486864,86.54779138,790.9547938,0,0.936576236,20.51569275,-0.936576236,159.4843073,0.996614063,0,896.0253571,86.54779138,952.6691556,7,15,6% +2018-07-28 00:00:00,52.07085027,264.969019,585.886988,788.4816383,101.217911,763.5173561,660.9348749,102.5824812,98.16581757,4.416663595,145.1071769,0,145.1071769,3.052093472,142.0550834,0.908807781,4.624581798,1.239664297,-1.239664297,0.318158609,0.318158609,0.172760128,1.925460461,61.92942717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36071776,2.211231331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39498955,59.52892099,95.75570731,61.74015232,660.9348749,0,0.838237497,33.04553101,-0.838237497,146.954469,0.990351034,0,750.3132441,61.74015232,790.720939,7,16,5% +2018-07-28 01:00:00,63.89548558,274.2471052,385.0618236,684.752977,83.76371726,559.0247182,474.8840274,84.14069081,81.23793213,2.902758677,95.88848236,0,95.88848236,2.525785131,93.36269723,1.115186601,4.78651495,1.860809123,-1.860809123,0.211936588,0.211936588,0.217533165,1.112820482,35.792132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.0889904,1.829922729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.806234651,34.40475869,78.89522505,36.23468142,474.8840274,0,0.693511446,46.09128291,-0.693511446,133.9087171,0.977903137,0,543.285805,36.23468142,567.0006793,7,17,4% +2018-07-28 02:00:00,75.57344259,282.8262932,173.9225239,471.4475205,56.46664851,297.6716652,241.596593,56.07507216,54.76397071,1.31110145,43.87220732,0,43.87220732,1.702677792,42.16952953,1.3190054,4.936250028,3.266535753,-3.266535753,0,0,0.324665531,0.425669448,13.69099268,0.027669439,1,0.29707543,0,0.924820022,0.963581985,0.724496596,1,52.71084006,1.233584264,0.004670994,0.312029739,0.986839778,0.711336374,0.961238037,0.922476074,0.306039051,13.16030292,53.01687911,14.39388719,234.9117508,0,0.512457023,59.17237013,-0.512457023,120.8276299,0.952430843,0,276.7540758,14.39388719,286.1745871,7,18,3% +2018-07-28 03:00:00,86.72645763,291.5183925,10.07470184,48.63224894,7.297653858,22.19679844,15.04324841,7.153550027,7.077602669,0.075947358,2.662779292,0,2.662779292,0.220051189,2.442728103,1.513662234,5.087955779,13.09074941,-13.09074941,0,0,0.724354325,0.055012797,1.769400667,0.630791448,1,0.07624175,0,0.953819139,0.992581103,0.724496596,1,6.852042216,0.159426338,0.083018996,0.312029739,0.791690745,0.516187341,0.961238037,0.922476074,0.037957319,1.700815224,6.889999535,1.860241561,5.55409597,0,0.309326604,71.98134678,-0.309326604,108.0186532,0.888358553,0,11.82402819,1.860241561,13.04151909,7,19,10% +2018-07-28 04:00:00,97.57778599,300.9553796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703053642,5.252662275,-4.735074529,4.735074529,1,0.660100876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089646408,84.85673447,-0.089646408,95.14326553,0.492253168,0,0,0,0,7,20,0% +2018-07-28 05:00:00,107.1283179,311.7263651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869741869,5.440651437,-1.537027227,1.537027227,1,0.793000826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.121927763,97.00337236,0.121927763,82.99662764,0,0.639921125,0,0,0,7,21,0% +2018-07-28 06:00:00,115.06549,324.3644059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008271656,5.661226859,-0.576262866,0.576262866,1,0.628700444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.314605018,108.3369707,0.314605018,71.66302926,0,0.891070558,0,0,0,7,22,0% +2018-07-28 07:00:00,120.6970197,339.1323286,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106560392,5.918975734,-0.025506983,0.025506983,1,0.534515641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475257848,118.3761398,0.475257848,61.62386022,0,0.944793952,0,0,0,7,23,0% +2018-07-29 08:00:00,123.3073091,355.6123147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152118535,6.206605752,0.409592565,-0.409592565,1,0.460109236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592939821,126.3659055,0.592939821,53.63409448,0,0.96567441,0,0,0,7,0,0% +2018-07-29 09:00:00,122.4739659,12.51474598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137573953,0.218423522,0.844578754,-0.844578754,1,0.385722216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659631549,131.2717787,0.659631549,48.72822131,0,0.974200108,0,0,0,7,1,0% +2018-07-29 10:00:00,118.3392957,28.28928417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065410344,0.493741152,1.384151457,-1.384151457,1,0.29344985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670787355,132.1278624,0.670787355,47.87213762,0,0.97546073,0,0,0,7,2,0% +2018-07-29 11:00:00,111.5120848,42.04333336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946253036,0.733794596,2.24100754,-2.24100754,1,0.14691883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6256454,128.7295738,0.6256454,51.27042621,0,0.970082526,0,0,0,7,3,0% +2018-07-29 12:00:00,102.7262766,53.73898863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792911755,0.937922288,4.250747811,-4.250747811,1,0,#DIV/0!,0,0,0.164415461,1,0.231051444,0,0.934611587,0.97337355,0.724496596,1,0,0,0.026094516,0.312029739,0.928666059,0.653162655,0.961238037,0.922476074,0,0,0,0,0,0,-0.527280158,121.8218696,0.527280158,58.17813039,0,0.95517375,0,0,0,7,4,0% +2018-07-29 13:00:00,92.60554352,63.81144583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61627164,1.11371983,21.84673481,-21.84673481,1,0,#DIV/0!,0,0,0.762236385,1,0.045741502,0,0.956953352,0.995715316,0.724496596,1,0,0,0.095684266,0.312029739,0.764724934,0.48922153,0.961238037,0.922476074,0,0,0,0,0,0,-0.382393588,112.4820261,0.382393588,67.51797394,0,0.91924467,0,0,0,7,5,0% +2018-07-29 14:00:00,81.50629432,72.83448808,73.48721486,269.4771049,33.6852416,33.22348495,0,33.22348495,32.66950728,0.553977667,72.47613912,53.64257875,18.83356037,1.01573432,17.81782605,1.422553197,1.271201626,-6.687995814,6.687995814,0.326131667,0.326131667,0.458382341,0.351787458,11.31469391,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.40317304,0.735896057,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.254868816,10.87611417,31.65804186,11.61201022,0,53.64257875,-0.19906173,101.4820969,0.19906173,78.51790306,0,0.798821635,31.65804186,54.46286266,67.30289621,7,6,113% +2018-07-29 15:00:00,70.03492787,81.41244379,274.1835581,594.0870756,71.33416743,74.66391039,3.413819821,71.25009057,69.18317909,2.066911477,68.62996639,0,68.62996639,2.150988343,66.47897805,1.222340083,1.420915196,-2.698271743,2.698271743,0.991585334,0.991585334,0.260169384,2.054044069,66.06511798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.50150325,1.558383732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488147936,63.50430431,67.98965119,65.06268804,3.413819821,0,0.005746329,89.67075779,-0.005746329,90.32924221,0,0,67.98965119,65.06268804,110.5718793,7,7,63% +2018-07-29 16:00:00,58.25814592,90.24058314,483.5658555,742.5955171,92.89153651,258.1939199,164.4580822,93.73583763,90.09051395,3.645323678,120.0471628,0,120.0471628,2.801022559,117.2461402,1.016796462,1.574995295,-1.51667406,1.51667406,0.789520229,0.789520229,0.192096972,3.025446432,97.30875717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.59842877,2.029331309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.191925641,93.53687871,88.79035441,95.56621002,164.4580822,0,0.221463877,77.20497191,-0.221463877,102.7950281,0.824229546,0,224.3415649,95.56621002,286.887738,7,8,28% +2018-07-29 17:00:00,46.49065338,100.3305983,671.5872653,819.2155864,107.5795379,463.9964821,354.5981557,109.3983264,104.3356179,5.062708486,166.0780278,0,166.0780278,3.243919994,162.8341078,0.811414973,1.75109928,-0.90924791,0.90924791,0.68564424,0.68564424,0.160186983,3.726153145,119.8458937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2913645,2.350208993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69958527,115.2004316,102.9909498,117.5506406,354.5981557,0,0.432850841,64.35138179,-0.432850841,115.6486182,0.934486767,0,434.358234,117.5506406,511.2927772,7,9,18% +2018-07-29 18:00:00,35.17457251,113.5865294,822.0224298,861.4947926,117.8360395,659.2512896,538.7716892,120.4796004,114.2828481,6.196752299,202.8620465,0,202.8620465,3.553191358,199.3088551,0.613912103,1.982458924,-0.510480145,0.510480145,0.617450936,0.617450936,0.143348935,4.166008014,133.9931383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8530206,2.574275044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018258624,128.7993012,112.8712792,131.3735762,538.7716892,0,0.625391696,51.28905734,-0.625391696,128.7109427,0.970050106,0,635.5068132,131.3735762,721.4881914,7,10,14% +2018-07-29 19:00:00,25.30545073,134.2124969,923.457264,883.9935224,124.2900896,822.2535176,694.7498218,127.5036958,120.5422848,6.961410926,227.6507099,0,227.6507099,3.747804784,223.9029051,0.441663434,2.342449968,-0.205690606,0.205690606,0.565328855,0.565328855,0.13459214,4.342752116,139.6778362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8698292,2.715271808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146309125,134.263649,119.0161384,136.9789208,694.7498218,0,0.785921847,38.1939816,-0.785921847,141.8060184,0.986380443,0,804.3037751,136.9789208,893.9537393,7,11,11% +2018-07-29 20:00:00,19.53028695,168.9812023,968.5050614,892.8056967,127.0670238,937.1657531,806.6292687,130.5364844,123.2354842,7.301000251,238.6568047,0,238.6568047,3.831539594,234.8252651,0.340867811,2.949278354,0.055374483,-0.055374483,0.520684095,0.520684095,0.131199132,4.260644177,137.0369626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4586349,2.775937393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.086822202,131.7251409,121.5454571,134.5010783,806.6292687,0,0.903476839,25.38108615,-0.903476839,154.6189139,0.994658238,0,923.8659043,134.5010783,1011.89417,7,12,10% +2018-07-29 21:00:00,21.56000678,209.8611064,953.9261665,890.0246918,126.1736408,992.9096892,863.3495508,129.5601384,122.36904,7.191098383,235.095044,0,235.095044,3.804600802,231.2904432,0.376293105,3.662767279,0.302063521,-0.302063521,0.478497785,0.478497785,0.132267722,3.936951586,126.6258962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6257758,2.756420329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.852308022,121.7176279,120.4780838,124.4740482,863.3495508,0,0.970028763,14.0630872,-0.970028763,165.9369128,0.998455137,0,982.4938775,124.4740482,1063.959653,7,13,8% +2018-07-29 22:00:00,29.82105263,237.0678215,880.746334,875.0025225,121.6092062,982.9864683,858.4047905,124.5816778,117.9422399,6.639437894,217.2141119,0,217.2141119,3.666966257,213.5471456,0.520475555,4.137614035,0.558654782,-0.558654782,0.434618095,0.434618095,0.138075177,3.403928943,109.4820557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3705672,2.656704571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.466134932,105.2383163,115.8367021,107.8950209,858.4047905,0,0.981031218,11.17754055,-0.981031218,168.8224594,0.999033222,0,973.411606,107.8950209,1044.026739,7,14,7% +2018-07-29 23:00:00,40.59163466,253.3498837,754.2181895,843.974967,113.3320296,905.3335074,789.7332413,115.6002661,109.9146508,5.685615295,186.2863109,0,186.2863109,3.417378844,182.8689321,0.708457674,4.42178963,0.85538635,-0.85538635,0.383874009,0.383874009,0.150264249,2.708943917,87.12894829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6541431,2.475879339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962620646,83.75165921,107.6167638,86.22753855,789.7332413,0,0.935730646,20.6534917,-0.935730646,159.3465083,0.99656582,0,894.6379188,86.22753855,951.0721182,7,15,6% +2018-07-29 00:00:00,52.20995092,264.7248262,583.6657801,787.6028363,101.0465372,761.7993824,659.3998519,102.3995305,97.99961132,4.399919192,144.5634518,0,144.5634518,3.04692592,141.5165258,0.911235546,4.62031983,1.24729945,-1.24729945,0.316852921,0.316852921,0.17312397,1.914501884,61.57696166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20095399,2.207487457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.387050098,59.19011774,95.58800409,61.3976052,659.3998519,0,0.837223816,33.15188784,-0.837223816,146.8481122,0.990278813,0,748.5777068,61.3976052,788.7612114,7,16,5% +2018-07-29 01:00:00,64.03428982,274.032085,382.5870557,683.0719326,83.51550831,556.7511676,472.8698572,83.88131042,80.99720759,2.884102831,95.2809618,0,95.2809618,2.518300715,92.76266109,1.117609192,4.78276214,1.875426301,-1.875426301,0.209436903,0.209436903,0.218291516,1.101756469,35.4362753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85759682,1.824500295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.798218811,34.0626957,78.65581563,35.887196,472.8698572,0,0.692269488,46.1899719,-0.692269488,133.8100281,0.977773792,0,541.015569,35.887196,564.5030211,7,17,4% +2018-07-29 02:00:00,75.71817916,282.6314785,171.3422591,467.5123577,56.01091334,294.4875034,238.8738754,55.61362797,54.32197764,1.291650325,43.23285016,0,43.23285016,1.688935695,41.54391446,1.32153153,4.93284987,3.308295911,-3.308295911,0,0,0.326894916,0.422233924,13.58049441,0.034374558,1,0.293538446,0,0.9253677,0.964129663,0.724496596,1,52.30105003,1.223628162,0.005784899,0.312029739,0.983726554,0.70822315,0.961238037,0.922476074,0.303034525,13.05408779,52.60408455,14.27771595,230.6626916,0,0.510946655,59.27309344,-0.510946655,120.7269066,0.952142426,0,272.2278194,14.27771595,281.5722989,7,18,3% +2018-07-29 03:00:00,86.8762005,291.338518,9.023638125,43.79729249,6.63696686,19.97784202,13.4729802,6.504861817,6.436837821,0.068023996,2.388014574,0,2.388014574,0.200129039,2.187885536,1.51627574,5.084816376,13.75766904,-13.75766904,0,0,0.735508978,0.05003226,1.609209455,0.645709972,1,0.072559126,0,0.95420922,0.992971184,0.724496596,1,6.230486945,0.144992807,0.084518312,0.312029739,0.788431486,0.512928082,0.961238037,0.922476074,0.034563455,1.546833338,6.2650504,1.691826145,4.773342531,0,0.307621303,72.08406249,-0.307621303,107.9159375,0.887462492,0,10.50121286,1.691826145,11.60847923,7,19,11% +2018-07-29 04:00:00,97.75054234,300.7891713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706068809,5.249761393,-4.644810556,4.644810556,1,0.675536924,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087514382,84.97937269,-0.087514382,95.02062731,0.478665333,0,0,0,0,7,20,0% +2018-07-29 05:00:00,107.3204777,311.5777291,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87309569,5.438057249,-1.526229747,1.526229747,1,0.791154348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124353422,97.14341823,0.124353422,82.85658177,0,0.647920191,0,0,0,7,21,0% +2018-07-29 06:00:00,115.278526,324.2443846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011989835,5.659132093,-0.574993929,0.574993929,1,0.628483443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31728925,108.4990692,0.31728925,71.5009308,0,0.892415084,0,0,0,7,22,0% +2018-07-29 07:00:00,120.9279929,339.0592663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110591635,5.917700557,-0.027402359,0.027402359,1,0.534839769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478147891,118.5645075,0.478147891,61.43549246,0,0.945429843,0,0,0,7,23,0% +2018-07-30 08:00:00,123.5467828,355.6046035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156298141,6.206471167,0.40569034,-0.40569034,1,0.460776556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595968819,126.5817279,0.595968819,53.41827214,0,0.966102993,0,0,0,7,0,0% +2018-07-30 09:00:00,122.7079976,12.57666468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141658577,0.219504208,0.83842977,-0.83842977,1,0.386773754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662723142,131.5078873,0.662723142,48.49211274,0,0.974553714,0,0,0,7,1,0% +2018-07-30 10:00:00,118.5559747,28.40663429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069192107,0.495789298,1.374211071,-1.374211071,1,0.295149756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673860921,132.3657566,0.673860921,47.63424345,0,0.975800713,0,0,0,7,2,0% +2018-07-30 11:00:00,111.7060483,42.19574192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949638338,0.736454627,2.2220839,-2.2220839,1,0.150154963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6286216,128.9484997,0.6286216,51.05150026,0,0.970460894,0,0,0,7,3,0% +2018-07-30 12:00:00,102.897883,53.91167825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795906852,0.940936291,4.195941199,-4.195941199,1,0,#DIV/0!,0,0,0.157819927,1,0.233961127,0,0.934199563,0.972961526,0.724496596,1,0,0,0.025120413,0.312029739,0.931233044,0.65572964,0.961238037,0.922476074,0,0,0,0,0,0,-0.530086396,122.0112924,0.530086396,57.98870755,0,0.955675753,0,0,0,7,4,0% +2018-07-30 13:00:00,92.75813429,63.99772598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618934851,1.116971032,20.64353718,-20.64353718,1,0,#DIV/0!,0,0,0.750006193,1,0.048403474,0,0.956688583,0.995450546,0.724496596,1,0,0,0.094555833,0.312029739,0.767075316,0.491571912,0.961238037,0.922476074,0,0,0,0,0,0,-0.384969014,112.6418166,0.384969014,67.3581834,0,0.920119417,0,0,0,7,5,0% +2018-07-30 14:00:00,81.64283838,73.03393083,71.38682883,263.7930835,33.04626156,32.58793892,0,32.58793892,32.04979485,0.53814407,71.41606568,53.11103583,18.30502985,0.996466714,17.30856314,1.42493634,1.274682559,-6.797659546,6.797659546,0.307378064,0.307378064,0.46291819,0.337957358,10.86987037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.80748188,0.721936742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.244848956,10.44853285,31.05233084,11.1704696,0,53.11103583,-0.201335968,101.6150937,0.201335968,78.38490632,0,0.801658879,31.05233084,53.74740304,66.22893118,7,6,113% +2018-07-30 15:00:00,70.16332702,81.62916665,271.8461714,591.7653016,71.03648961,73.16499188,2.221223263,70.94376862,68.89447735,2.049291268,68.05426383,0,68.05426383,2.142012259,65.91225157,1.224581071,1.424697724,-2.715136238,2.715136238,0.994469332,0.994469332,0.261311348,2.040919008,65.64297093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22399216,1.55188059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.478638874,63.09852051,67.70263104,64.6504011,2.221223263,0,0.003753554,89.78493667,-0.003753554,90.21506333,0,0,67.70263104,64.6504011,110.0150255,7,7,62% +2018-07-30 16:00:00,58.3834559,90.48272279,481.4249955,741.501138,92.7065048,256.5033807,162.9631341,93.5402466,89.91106163,3.629184971,119.5225071,0,119.5225071,2.79544317,116.7270639,1.018983534,1.579221429,-1.521725777,1.521725777,0.790384124,0.790384124,0.192566871,3.0149425,96.97091461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.42593237,2.025289061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.184315578,93.21213159,88.61024795,95.23742065,162.9631341,0,0.219774624,77.30420405,-0.219774624,102.6957959,0.822494208,0,222.6464818,95.23742065,284.9774689,7,8,28% +2018-07-30 17:00:00,46.62109714,100.610386,669.6636813,818.5873357,107.4415857,462.4303338,353.1803007,109.2500331,104.2018254,5.048207697,165.6074729,0,165.6074729,3.239760225,162.3677126,0.813691646,1.755982498,-0.910783122,0.910783122,0.685906777,0.685906777,0.160441112,3.716996552,119.5513862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1627581,2.347195254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.692951349,114.9173398,102.8557095,117.264535,353.1803007,0,0.431450971,64.44032231,-0.431450971,115.5596777,0.934111977,0,432.7656584,117.264535,509.5129513,7,9,18% +2018-07-30 18:00:00,35.32336053,113.9164362,820.2698572,861.0693445,117.7217264,657.8740982,537.5185755,120.3555227,114.171982,6.183540667,202.433668,0,202.433668,3.549744399,198.8839236,0.616508944,1.988216884,-0.510478832,0.510478832,0.617450711,0.617450711,0.143515851,4.157519631,133.7201227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7464519,2.571777733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.01210882,128.5368683,112.7585607,131.108646,537.5185755,0,0.624245398,51.37317693,-0.624245398,128.6268231,0.969903294,0,634.0995977,131.108646,719.9075844,7,10,14% +2018-07-30 19:00:00,25.49375156,134.5663655,921.8052309,883.657713,124.1872999,821.0410626,693.6495108,127.3915518,120.4425946,6.948957202,227.2470558,0,227.2470558,3.744705295,223.5023505,0.444949903,2.348626141,-0.204786974,0.204786974,0.565174325,0.565174325,0.134721843,4.334445697,139.4106732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7740032,2.713026239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140291152,134.0068418,118.9142944,136.719868,693.6495108,0,0.784975337,38.28160273,-0.784975337,141.7183973,0.986303731,0,803.0633951,136.719868,892.5438143,7,11,11% +2018-07-30 20:00:00,19.76752151,169.1244313,966.8721437,892.4974658,126.9672031,936.0511709,805.6238067,130.4273641,123.1386735,7.288690628,238.2578749,0,238.2578749,3.828529634,234.4293453,0.345008335,2.951778171,0.056990464,-0.056990464,0.520407746,0.520407746,0.131317469,4.252124352,136.7629357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3655768,2.773756687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080649618,131.4617359,121.4462264,134.2354926,805.6238067,0,0.902662291,25.48974949,-0.902662291,154.5102505,0.994608299,0,922.7263502,134.2354926,1010.580795,7,12,10% +2018-07-30 21:00:00,21.78466235,209.6154077,952.2282842,889.6965032,126.0692736,991.8013994,862.3552806,129.4461188,122.2678198,7.178299029,234.6802258,0,234.6802258,3.801453744,230.878772,0.380214084,3.658479027,0.304426792,-0.304426792,0.478093642,0.478093642,0.13239396,3.927899847,126.3347611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5284791,2.754140297,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845750068,121.4377778,120.3742292,124.1919181,862.3552806,0,0.969269046,14.24112058,-0.969269046,165.7588794,0.998414736,0,981.3624486,124.1919181,1062.643575,7,13,8% +2018-07-30 22:00:00,30.00181771,236.7436634,878.904136,874.5997175,121.4924363,981.7767537,857.322212,124.4545417,117.828991,6.625550628,216.7639286,0,216.7639286,3.663445213,213.1004834,0.523630501,4.131956409,0.562007312,-0.562007312,0.434044779,0.434044779,0.138231727,3.394122144,109.1666354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.261708,2.654153586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.459029939,104.9351223,115.720738,107.5892759,857.322212,0,0.980245242,11.40751465,-0.980245242,168.5924854,0.998992356,0,972.1790747,107.5892759,1042.594104,7,14,7% +2018-07-30 23:00:00,40.74632953,253.0629167,752.1645365,843.4081042,113.1928218,903.9005607,788.4507862,115.4497745,109.7796406,5.670133992,185.7841813,0,185.7841813,3.413181213,182.3710001,0.711157608,4.41678111,0.860312761,-0.860312761,0.383031543,0.383031543,0.150489443,2.698296457,86.78648939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5243662,2.47283817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954906598,83.42247469,107.4792728,85.89531286,788.4507862,0,0.934838997,20.79785064,-0.934838997,159.2021494,0.996514854,0,893.1821931,85.89531286,949.3989574,7,15,6% +2018-07-30 00:00:00,52.35437746,264.4779453,581.3554017,786.683874,100.8678963,759.9980207,657.789161,102.2088597,97.82635707,4.382502583,143.9978871,0,143.9978871,3.041539237,140.9563478,0.913756264,4.616010945,1.255221552,-1.255221552,0.315498162,0.315498162,0.173504703,1.90315631,61.21204898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.03441542,2.203584823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378830268,58.8393498,95.41324569,61.04293462,657.789161,0,0.836154373,33.26376863,-0.836154373,146.7362314,0.99020243,0,746.757671,61.04293462,786.7090509,7,16,5% +2018-07-30 01:00:00,64.17821786,273.8143832,380.0188482,681.3136711,83.25677541,554.3735481,470.762529,83.61101905,80.74627645,2.864742598,94.65046841,0,94.65046841,2.510498963,92.13996944,1.12012121,4.778962527,1.890640723,-1.890640723,0.206835084,0.206835084,0.219085911,1.090339201,35.06905671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.61639226,1.818847953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.789947039,33.70971123,78.4063393,35.52855918,470.762529,0,0.690962987,46.29361397,-0.690962987,133.706386,0.977637224,0,538.6413112,35.52855918,561.8940426,7,17,4% +2018-07-30 02:00:00,75.86794052,282.4341123,168.6762863,463.3944253,55.53498811,291.168751,236.0367946,55.13195641,53.86040331,1.271553095,42.57210327,0,42.57210327,1.674584794,40.89751847,1.324145359,4.92940518,3.352199973,-3.352199973,0,0,0.329240045,0.418646198,13.46510083,0.041324906,1,0.289907047,0,0.925927312,0.964689275,0.724496596,1,51.87227798,1.213230983,0.006932263,0.312029739,0.980529949,0.705026545,0.961238037,0.922476074,0.299923034,12.94316709,52.17220101,14.15639807,226.2825963,0,0.509364769,59.37847339,-0.509364769,120.6215266,0.951838519,0,267.5566924,14.15639807,276.8217718,7,18,3% +2018-07-30 03:00:00,87.03036944,291.1562752,8.003809691,39.05673949,5.980411693,17.80589689,11.94548058,5.860416314,5.800080216,0.060336098,2.120947802,0,2.120947802,0.180331478,1.940616325,1.518966496,5.08163564,14.51370833,-14.51370833,0,0,0.747195639,0.045082869,1.450020054,0.661227862,1,0.068791659,0,0.954604987,0.993366951,0.724496596,1,5.612949099,0.130649542,0.086060451,0.312029739,0.785097904,0.5095945,0.961238037,0.922476074,0.031186752,1.39381443,5.644135851,1.524463972,4.046795996,0,0.305849406,72.1907265,-0.305849406,107.8092735,0.886520853,0,9.23170489,1.524463972,10.22943607,7,19,11% +2018-07-30 04:00:00,97.9284836,300.6208595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70917447,5.246823798,-4.555592119,4.555592119,1,0.690794176,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.085301813,85.1066195,-0.085301813,94.8933805,0,0,0,0,0,7,20,0% +2018-07-30 05:00:00,107.5179757,311.4274395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876542681,5.435434201,-1.515225098,1.515225098,1,0.789272442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126860097,97.28818673,0.126860097,82.71181327,0,0.655865033,0,0,0,7,21,0% +2018-07-30 06:00:00,115.4970458,324.1235305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015803726,5.65702279,-0.573615435,0.573615435,1,0.628247706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320052374,108.6660923,0.320052374,71.33390773,0,0.893775569,0,0,0,7,22,0% +2018-07-30 07:00:00,121.1644608,338.986763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114718777,5.916435135,-0.02923968,0.02923968,1,0.535153969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481112246,118.7580698,0.481112246,61.24193021,0,0.946074148,0,0,0,7,23,0% +2018-07-31 08:00:00,123.7914469,355.5993391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160568334,6.206379286,0.401820782,-0.401820782,1,0.461438289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599065414,126.8029921,0.599065414,53.19700787,0,0.966536661,0,0,0,7,0,0% +2018-07-31 09:00:00,122.9465236,12.64281037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145821641,0.220658668,0.832302958,-0.832302958,1,0.387821501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873941,131.7494067,0.665873941,48.25059329,0,0.974910712,0,0,0,7,1,0% +2018-07-31 10:00:00,118.7762287,28.52926104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073036264,0.497929538,1.36430125,-1.36430125,1,0.296844435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676984205,132.6084253,0.676984205,47.3915747,0,0.976143033,0,0,0,7,2,0% +2018-07-31 11:00:00,111.9027049,42.3537425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953070642,0.739212257,2.203268914,-2.203268914,1,0.153372515,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631637585,129.1710442,0.631637585,50.82895583,0,0.970840683,0,0,0,7,3,0% +2018-07-31 12:00:00,103.0714865,54.08990407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798936804,0.944046918,4.141965927,-4.141965927,1,0,#DIV/0!,0,0,0.151221876,1,0.236897838,0,0.933781864,0.972543828,0.724496596,1,0,0,0.02414025,0.312029739,0.933823525,0.658320121,0.961238037,0.922476074,0,0,0,0,0,0,-0.532922724,122.2031451,0.532922724,57.79685494,0,0.956177767,0,0,0,7,4,0% +2018-07-31 13:00:00,92.91224174,64.18941613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621624534,1.120316656,19.55617147,-19.55617147,1,0,#DIV/0!,0,0,0.73781829,1,0.051090254,0,0.956419637,0.9951816,0.724496596,1,0,0,0.093421478,0.312029739,0.76944833,0.493944926,0.961238037,0.922476074,0,0,0,0,0,0,-0.387565739,112.8031171,0.387565739,67.19688288,0,0.920989628,0,0,0,7,5,0% +2018-07-31 14:00:00,81.78056243,73.23874283,69.28351087,258.0171177,32.39616931,31.94159364,0,31.94159364,31.41930527,0.52228837,70.31374858,52.5382952,17.77545338,0.976864034,16.79858935,1.427340078,1.278257202,-6.91182465,6.91182465,0.287854682,0.287854682,0.467588448,0.32426044,10.42933038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.20143132,0.707734667,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234925585,10.02506906,30.43635691,10.73280373,0,52.5382952,-0.203623293,101.7489198,0.203623293,78.2510802,0,0.804448525,30.43635691,52.9971578,65.12193674,7,6,114% +2018-07-31 15:00:00,70.29286652,81.8513768,269.4878922,589.4017105,70.73428474,71.66561552,1.032716886,70.63289864,68.60138507,2.031513564,67.47335916,0,67.47335916,2.132899667,65.3404595,1.226841961,1.428576022,-2.732285433,2.732285433,0.997402017,0.997402017,0.262476671,2.027621036,65.21526242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94226071,1.545278548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469004538,62.68739082,67.41126525,64.23266936,1.032716886,0,0.001752144,89.89960947,-0.001752144,90.10039053,0,0,67.41126525,64.23266936,109.4502627,7,7,62% +2018-07-31 16:00:00,58.51002238,90.73066668,479.260167,740.3880978,92.51888101,254.8054814,161.4635204,93.34196097,89.72909539,3.612865579,118.9919618,0,118.9919618,2.789785621,116.2021762,1.021192536,1.583548866,-1.526796389,1.526796389,0.79125125,0.79125125,0.193045213,3.004275469,96.62782622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.2510195,2.021190185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.176587351,92.88234198,88.42760685,94.90353217,161.4635204,0,0.218079573,77.40373791,-0.218079573,102.5962621,0.82072589,0,220.9448984,94.90353217,283.0573621,7,8,28% +2018-07-31 17:00:00,46.75316504,100.8964929,667.7120836,817.9472996,107.3014183,460.8540421,351.7546617,109.0993804,104.0658846,5.033495729,165.1300588,0,165.1300588,3.235533662,161.8945252,0.815996666,1.760976004,-0.912284245,0.912284245,0.686163484,0.686163484,0.160700129,3.707658118,119.2510301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0320867,2.344133124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.686185685,114.628626,102.7182723,116.9727592,351.7546617,0,0.43004563,64.52954403,-0.43004563,115.470456,0.933733268,0,431.1633021,116.9727592,507.7196336,7,9,18% +2018-07-31 18:00:00,35.47449609,114.253169,818.483125,860.6341959,117.6050774,656.4826738,536.2537519,120.228922,114.0588504,6.170071525,201.9969367,0,201.9969367,3.546227001,198.4507097,0.619146757,1.994093979,-0.51042479,0.51042479,0.61744147,0.61744147,0.143686624,4.148817877,133.4402444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6377055,2.569229391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.005804429,128.2678386,112.6435099,130.8370679,536.2537519,0,0.623091384,51.45776321,-0.623091384,128.5422368,0.969754949,0,632.6782396,130.8370679,718.3084838,7,10,14% +2018-07-31 19:00:00,25.68553311,134.9266527,920.1109682,883.3123532,124.0818097,819.8078774,692.531407,127.2764704,120.3402853,6.936185135,226.8330813,0,226.8330813,3.741524375,223.0915569,0.448297123,2.354914339,-0.20381887,0.20381887,0.565008769,0.565008769,0.134855266,4.325887998,139.1354282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6756596,2.710721673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134091129,133.7422658,118.8097507,136.4529875,692.531407,0,0.78401644,38.37019768,-0.78401644,141.6298023,0.986225827,0,801.8021104,136.4529875,891.1078617,7,11,11% +2018-07-31 20:00:00,20.00944545,169.2735794,965.1875062,892.1786187,126.8641572,934.9069079,804.592182,130.3147259,123.0387348,7.275991119,237.8463078,0,237.8463078,3.82542242,234.0208854,0.349230705,2.954381297,0.058683431,-0.058683431,0.520118232,0.520118232,0.131439908,4.243313254,136.4795405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2695119,2.771505521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074266008,131.1893256,121.3437779,133.9608311,804.592182,0,0.901828586,25.60052254,-0.901828586,154.3994775,0.994557091,0,921.5566381,133.9608311,1009.231323,7,12,10% +2018-07-31 21:00:00,22.01522132,209.3748805,950.4684318,889.3553737,125.9610249,990.6523345,861.3244668,129.3278678,122.1628352,7.165032518,234.2502651,0,234.2502651,3.798189647,230.4520754,0.384238098,3.654281036,0.306884791,-0.306884791,0.477673299,0.477673299,0.132525206,3.91851869,126.0330309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4275639,2.75177547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838953452,121.1477432,120.2665174,123.8995187,861.3244668,0,0.96848177,14.42334097,-0.96848177,165.576659,0.998372802,0,980.1894388,123.8995187,1061.279196,7,13,8% +2018-07-31 22:00:00,30.18863653,236.4195884,876.9897129,874.1797519,121.3709842,980.5134263,856.1911062,124.3223201,117.7112012,6.611118898,216.2960923,0,216.2960923,3.659782984,212.6363093,0.526891104,4.126300234,0.565483507,-0.565483507,0.433450314,0.433450314,0.138394992,3.38395379,108.8395862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.148484,2.651500314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.451663002,104.6207501,115.600147,107.2722504,856.1911062,0,0.979422258,11.64351352,-0.979422258,168.3564865,0.998949496,0,970.8918209,107.2722504,1041.099363,7,14,7% +2018-07-31 23:00:00,40.90667286,252.773915,750.0292337,842.8162854,113.0478924,902.3996653,787.1065468,115.2931185,109.6390813,5.654037177,185.2620823,0,185.2620823,3.408811057,181.8532712,0.713956128,4.41173708,0.865415825,-0.865415825,0.382158867,0.382158867,0.150724648,2.687266365,86.43172371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3892553,2.469672007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946915333,83.08146042,107.3361706,85.55113243,787.1065468,0,0.933900496,20.94876773,-0.933900496,159.0512323,0.996461106,0,891.6572305,85.55113243,947.6487356,7,15,6% +2018-07-31 00:00:00,52.50410594,264.2285195,578.9557922,785.7241073,100.6819342,758.1124638,656.1020481,102.0104157,97.64600241,4.364413314,143.4104665,0,143.4104665,3.035931793,140.3745347,0.91636952,4.611657642,1.263433951,-1.263433951,0.314093759,0.314093759,0.173902629,1.891426125,60.83476591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.86105166,2.199522249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.370331789,58.47669096,95.23138345,60.67621321,656.1020481,0,0.835028532,33.38119072,-0.835028532,146.6188093,0.990121807,0,744.8523286,60.67621321,784.5636966,7,16,5% +2018-07-31 01:00:00,64.32723926,273.5941043,377.3575542,679.4767273,82.98740982,551.8911177,468.5614039,83.32971386,80.48503322,2.84468064,93.99708451,0,93.99708451,2.502376597,91.49470791,1.122722124,4.775117934,1.906465653,-1.906465653,0.204128862,0.204128862,0.219917182,1.078573748,34.69063932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.36527533,1.812963326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781423009,33.34596204,78.14669834,35.15892536,468.5614039,0,0.689591542,46.40221546,-0.689591542,133.5977845,0.97749331,0,536.162336,35.15892536,559.1731495,7,17,4% +2018-07-31 02:00:00,76.02268644,282.2342735,165.9258999,459.0895107,55.0384822,287.7146113,233.0849229,54.62968841,53.37886889,1.250819521,41.89026876,0,41.89026876,1.659613309,40.23065545,1.326846185,4.925917335,3.398348115,-3.398348115,0,0,0.33170519,0.414903327,13.34471722,0.048523462,1,0.28618302,0,0.926498364,0.965260327,0.724496596,1,51.42410603,1.202384193,0.008112857,0.312029739,0.977251492,0.701748088,0.961238037,0.922476074,0.296704202,12.82744978,51.72081023,14.02983398,221.7748354,0,0.507711279,59.48850089,-0.507711279,120.5114991,0.951518832,0,262.7437425,14.02983398,271.9259882,7,18,3% +2018-07-31 03:00:00,87.18884229,290.9717234,7.022494759,34.44948629,5.332944672,15.69814518,10.47306993,5.225075245,5.172136714,0.052938532,1.863493116,0,1.863493116,0.160807958,1.702685158,1.521732369,5.078414604,15.37640549,-15.37640549,0,0,0.75940885,0.04020199,1.293034178,0.677353422,1,0.064943249,0,0.955005805,0.993767768,0.724496596,1,5.004105472,0.116504818,0.087644478,0.312029739,0.781693596,0.506190192,0.961238037,0.922476074,0.027852074,1.242913635,5.031957546,1.359418454,3.379100174,0,0.304012369,72.30124448,-0.304012369,107.6987555,0.885533007,0,8.024262285,1.359418454,8.913974475,7,19,11% +2018-07-31 04:00:00,98.1115534,300.4504868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712369641,5.243850234,-4.467543982,4.467543982,1,0.705851294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.083009272,85.23844005,-0.083009272,94.76155995,0,0,0,0,0,7,20,0% +2018-07-31 05:00:00,107.7207485,311.2755238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880081734,5.432782771,-1.504032393,1.504032393,1,0.787358377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.129446876,97.43763056,0.129446876,82.56236944,0,0.66374116,0,0,0,7,21,0% +2018-07-31 06:00:00,115.7209813,324.0018598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019712137,5.654899236,-0.572131033,0.572131033,1,0.627993859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322893164,108.8379817,0.322893164,71.16201827,0,0.89515002,0,0,0,7,22,0% +2018-07-31 07:00:00,121.4063522,338.9148341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118940578,5.915179739,-0.03101865,0.03101865,1,0.535458191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48414943,118.9567604,0.48414943,61.04323962,0,0.9467261,0,0,0,7,23,0% +2018-08-01 08:00:00,124.0412261,355.5965469,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164927803,6.206330553,0.397985965,-0.397985965,1,0.462094081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602227931,127.0296286,0.602227931,52.97037138,0,0.966974957,0,0,0,8,0,0% +2018-08-01 09:00:00,123.1894629,12.71321295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150061732,0.221887424,0.826201862,-0.826201862,1,0.38886485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669082163,131.9962652,0.669082163,48.0037348,0,0.975270762,0,0,0,8,1,0% +2018-08-01 10:00:00,118.9999739,28.65717943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076941354,0.500162135,1.354427589,-1.354427589,1,0.298532931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680155408,132.8557883,0.680155408,47.14421166,0,0.976487389,0,0,0,8,2,0% +2018-08-01 11:00:00,112.1019754,42.51732488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956548569,0.742067308,2.184571938,-2.184571938,1,0.156569886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634691631,129.3971171,0.634691631,50.60288293,0,0.971221586,0,0,0,8,3,0% +2018-08-01 12:00:00,103.2470187,54.27363265,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802000419,0.947253587,4.088830008,-4.088830008,1,0,#DIV/0!,0,0,0.144624659,1,0.239860392,0,0.933358613,0.972120577,0.724496596,1,0,0,0.023154475,0.312029739,0.936436452,0.660933048,0.961238037,0.922476074,0,0,0,0,0,0,-0.535787581,122.397339,0.535787581,57.60266103,0,0.956679435,0,0,0,8,4,0% +2018-08-01 13:00:00,93.06781177,64.38646492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624339743,1.123755807,18.56910074,-18.56910074,1,0,#DIV/0!,0,0,0.725677885,1,0.053800934,0,0.956146563,0.994908526,0.724496596,1,0,0,0.092281669,0.312029739,0.771843149,0.496339745,0.961238037,0.922476074,0,0,0,0,0,0,-0.390182439,112.9658518,0.390182439,67.03414823,0,0.921854817,0,0,0,8,5,0% +2018-08-01 14:00:00,81.91942515,73.44885784,67.17882083,252.1510852,31.73505899,31.2845522,0,31.2845522,30.77812987,0.506422328,69.16882793,51.92361593,17.245212,0.956929119,16.28828288,1.42976369,1.281924401,-7.030727528,7.030727528,0.267521092,0.267521092,0.472396785,0.310711253,9.993541963,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.58510914,0.693291889,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225109245,9.606172657,29.81021838,10.29946455,0,51.92361593,-0.205922635,101.8835146,0.205922635,78.11648544,0,0.807190364,29.81021838,52.21170702,63.98173639,8,6,115% +2018-08-01 15:00:00,70.42352299,82.07899227,267.1091895,586.9959161,70.42753405,70.31746595,0,70.31746595,68.30388405,2.013581898,67.03834321,0.150977736,66.88736547,2.123650002,64.76371547,1.229122347,1.432548662,-2.749721805,2.749721805,0.999616188,0.999616188,0.26366571,2.013012831,64.74541232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.65629142,1.538577197,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.458420943,62.23575303,67.11471236,63.77433023,0,0.150977736,-0.000257204,90.01473671,0.000257204,89.98526329,0,0,67.11471236,63.77433023,108.853736,8,7,62% +2018-08-01 16:00:00,58.63783754,90.98431068,477.0714459,739.2561634,92.32864932,253.1005266,159.9595606,93.14096596,89.54459989,3.596366075,118.4555448,0,118.4555448,2.784049433,115.6714954,1.023423331,1.587975789,-1.531884895,1.531884895,0.792121435,0.792121435,0.193532122,2.993444707,96.27947169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07367541,2.017034337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1687405,92.54749035,88.24241591,94.56452469,159.9595606,0,0.216379069,77.50355315,-0.216379069,102.4964468,0.818924045,0,219.2371464,94.56452469,281.1277365,8,8,28% +2018-08-01 17:00:00,46.88686383,101.1887756,665.7322342,817.2952682,107.1590084,459.2675517,350.321212,108.9463397,103.9277689,5.018570788,164.6457272,0,164.6457272,3.231239477,161.4144878,0.81833015,1.7660773,-0.913750606,0.913750606,0.686414246,0.686414246,0.160964128,3.698136152,118.9447709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89932454,2.341022001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679287053,114.3342381,102.5786116,116.6752601,350.321212,0,0.428634822,64.61904631,-0.428634822,115.3809537,0.933350588,0,429.5511208,116.6752601,505.912745,8,9,18% +2018-08-01 18:00:00,35.62799527,114.5965065,816.6617506,860.1891399,117.4860541,655.0766273,534.97687,120.0997573,113.9434161,6.156341235,201.5517344,0,201.5517344,3.542638009,198.0090964,0.621825823,2.000086349,-0.510317669,0.510317669,0.617423151,0.617423151,0.14386134,4.139900425,133.1534285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5267456,2.566629178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999343765,127.9921402,112.5260894,130.5587694,534.97687,0,0.621929347,51.54283711,-0.621929347,128.4571629,0.969605016,0,631.2423459,130.5587694,716.6904492,8,10,14% +2018-08-01 19:00:00,25.88079791,135.2930045,918.3738319,882.9572335,123.9735729,818.5532919,691.3948898,127.1584021,120.2353123,6.923089868,226.4086288,0,226.4086288,3.738260637,222.6703681,0.451705137,2.361308383,-0.202786128,0.202786128,0.56483216,0.56483216,0.134992493,4.317076505,138.8520203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5747555,2.708357106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127707232,133.4698434,118.7024627,136.1782005,691.3948898,0,0.783044596,38.45981279,-0.783044596,141.5401872,0.986146676,0,800.5192354,136.1782005,889.645144,8,11,11% +2018-08-01 20:00:00,20.25600267,169.4283124,963.4504375,891.8489369,126.7578362,933.7320909,803.5335748,130.1985162,122.9356198,7.262896361,237.4219295,0,237.4219295,3.822216449,233.599713,0.35353394,2.957081898,0.060453472,-0.060453472,0.519815537,0.519815537,0.131566536,4.234208611,136.1867039,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1703938,2.769182806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.067669725,130.9078399,121.2380636,133.6770227,803.5335748,0,0.900974976,25.71347907,-0.900974976,154.2865209,0.994504563,0,920.3558702,133.6770227,1007.844808,8,12,10% +2018-08-01 21:00:00,22.25160116,209.1396202,948.6459298,889.0010634,125.8488449,989.4615114,860.2561798,129.2053316,122.0540378,7.151293729,233.8049957,0,233.8049957,3.794807005,230.0101887,0.388363704,3.650174969,0.309437645,-0.309437645,0.477236736,0.477236736,0.132661556,3.9088065,125.7206535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3229837,2.749324757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.831917003,120.8474741,120.1549007,123.5967989,860.2561798,0,0.967666086,14.60978987,-0.967666086,165.3902101,0.998329284,0,978.9738363,123.5967989,1059.865469,8,13,8% +2018-08-01 22:00:00,30.38146384,236.0958576,875.002515,873.7423394,121.2448025,979.195492,855.0105291,124.1849629,117.5888243,6.59613856,215.8104683,0,215.8104683,3.655978141,212.1544902,0.530256576,4.120650066,0.569083732,-0.569083732,0.43283464,0.43283464,0.13856509,3.373423297,108.5008893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0308507,2.648743718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444033695,104.2951818,115.4748844,106.9439256,855.0105291,0,0.978561403,11.88542653,-0.978561403,168.1145735,0.998904586,0,969.5488229,106.9439256,1039.541483,8,14,7% +2018-08-01 23:00:00,41.0726371,252.483078,747.8119531,842.1991199,112.897196,900.8299057,785.6996544,115.1302513,109.492929,5.63732238,184.7199329,0,184.7199329,3.404267004,181.3156659,0.71685275,4.406661018,0.870696644,-0.870696644,0.381255794,0.381255794,0.150970034,2.675854442,86.06467704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2487681,2.466379856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938647434,82.7286412,107.1874155,85.19502106,785.6996544,0,0.932914362,21.10623377,-0.932914362,158.8937662,0.996404513,0,890.0620966,85.19502106,945.820534,8,15,6% +2018-08-01 00:00:00,52.65910932,263.9766895,576.466932,784.7228753,100.4885973,756.1419273,654.3377807,101.8041466,97.45849534,4.345651234,142.8011837,0,142.8011837,3.030101972,139.7710818,0.919074839,4.60726238,1.271940153,-1.271940153,0.312639113,0.312639113,0.17431806,1.879313942,60.44519646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.68081273,2.195298564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361556553,58.10222198,95.04236929,60.29752055,654.3377807,0,0.833845681,33.50416672,-0.833845681,146.4958333,0.990036866,0,742.8608952,60.29752055,782.3244165,8,16,5% +2018-08-01 01:00:00,64.48132082,273.3713512,374.6035787,677.5595822,82.70730016,549.3031575,466.2658676,83.03728991,80.2133699,2.82392001,93.32090492,0,93.32090492,2.493930257,90.82697467,1.125411354,4.771230159,1.922915099,-1.922915099,0.201315841,0.201315841,0.220786199,1.066465479,34.30119575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.10414221,1.806843982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.772650609,32.97161406,77.87679282,34.77845804,466.2658676,0,0.688154783,46.5157791,-0.688154783,133.4842209,0.977341928,0,533.5779747,34.77845804,556.3397799,8,17,4% +2018-08-01 02:00:00,76.18237407,282.0320394,163.0924925,454.5932496,54.52098804,284.1243218,230.0178827,54.10643919,52.87697909,1.229460099,41.18767199,0,41.18767199,1.644008951,39.54366303,1.329633259,4.922387683,3.44684862,-3.44684862,0,0,0.334294897,0.411002238,13.21924477,0.05597336,1,0.282368184,0,0.927080358,0.965842321,0.724496596,1,50.95610034,1.191078888,0.009326455,0.312029739,0.973892738,0.698389334,0.961238037,0.922476074,0.293377583,12.70684089,51.24947792,13.89791978,217.143009,0,0.505986138,59.60316371,-0.505986138,120.3968363,0.951183064,0,257.7922304,13.89791978,266.888141,8,18,4% +2018-08-01 03:00:00,87.35148365,290.7849205,6.086935501,30.01575836,4.699941222,13.67222351,9.068116962,4.604106544,4.558220654,0.045885891,1.617568553,0,1.617568553,0.141720569,1.475847984,1.524570996,5.075154278,16.36824691,-16.36824691,0,0,0.772135867,0.035430142,1.139555163,0.694094312,1,0.061018057,0,0.955411019,0.994172982,0.724496596,1,4.409023363,0.10267607,0.089269342,0.312029739,0.778222404,0.502719,0.961238037,0.922476074,0.024586547,1.095383768,4.43360991,1.198059838,2.773988558,0,0.302111873,72.41550867,-0.302111873,107.5844913,0.884498394,0,6.887198335,1.198059838,7.671304538,8,19,11% +2018-08-01 04:00:00,98.29969327,300.278094,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715653301,5.240841412,-4.380774522,4.380774522,1,0.720689745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.080637375,85.37479698,-0.080637375,94.62520302,0,0,0,0,0,8,20,0% +2018-08-01 05:00:00,107.9287308,311.1220074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.883711709,5.430103404,-1.49267029,1.49267029,1,0.785415343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132112801,97.59170009,0.132112801,82.40829991,0,0.671535538,0,0,0,8,21,0% +2018-08-01 06:00:00,115.9502628,323.8793868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023713855,5.65276168,-0.570544463,0.570544463,1,0.627722539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325810353,109.0146772,0.325810353,70.98532278,0,0.896536491,0,0,0,8,22,0% +2018-08-01 07:00:00,121.6535949,338.8434932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123255777,5.913934606,-0.032739119,0.032739119,1,0.535752409,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487257919,119.1605113,0.487257919,60.83948868,0,0.947384941,0,0,0,8,23,0% +2018-08-02 08:00:00,124.2960446,355.5962513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169375226,6.206325393,0.394187786,-0.394187786,1,0.462743608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605454664,127.2615662,0.605454664,52.73843377,0,0.967417434,0,0,0,8,0,0% +2018-08-02 09:00:00,123.4367342,12.78790147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154377429,0.223190985,0.820129794,-0.820129794,1,0.389903235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672346006,132.2483899,0.672346006,47.75161013,0,0.975633529,0,0,0,8,1,0% +2018-08-02 10:00:00,119.2271264,28.79040333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080905913,0.502487331,1.344595314,-1.344595314,1,0.300214349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683372718,133.1077646,0.683372718,46.89223538,0,0.976833485,0,0,0,8,2,0% +2018-08-02 11:00:00,112.303781,42.68647731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96007074,0.745019575,2.166001552,-2.166001552,1,0.159745609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637782011,129.6266277,0.637782011,50.37337226,0,0.971603308,0,0,0,8,3,0% +2018-08-02 12:00:00,103.4244121,54.46282891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805096519,0.950555684,4.036538958,-4.036538958,1,0,#DIV/0!,0,0,0.138031444,1,0.242847637,0,0.93292993,0.971691893,0.724496596,1,0,0,0.022163519,0.312029739,0.939070805,0.663567401,0.961238037,0.922476074,0,0,0,0,0,0,-0.538679407,122.5937855,0.538679407,57.40621446,0,0.957180413,0,0,0,8,4,0% +2018-08-02 13:00:00,93.22479119,64.58881942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627079551,1.127287559,17.66942369,-17.66942369,1,0,#DIV/0!,0,0,0.713589797,1,0.056534633,0,0.955869405,0.994631368,0.724496596,1,0,0,0.091136855,0.312029739,0.774258973,0.498755568,0.961238037,0.922476074,0,0,0,0,0,0,-0.3928178,113.1299452,0.3928178,66.87005483,0,0.922714526,0,0,0,8,5,0% +2018-08-02 14:00:00,82.05938623,73.66420818,65.07433485,246.1970714,31.06303957,30.61693214,0,30.61693214,30.12637431,0.490557824,67.98103085,51.2663397,16.71469114,0.936665253,15.77802589,1.432206472,1.285682974,-7.154623585,7.154623585,0.246333618,0.246333618,0.477347016,0.297324162,9.562967089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.9586169,0.678610788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.215410343,9.192287711,29.17402725,9.870898498,0,51.2663397,-0.208232939,102.018818,0.208232939,77.98118198,0,0.80988429,29.17402725,51.39070162,62.80821364,8,6,115% +2018-08-02 15:00:00,70.55527435,82.31192975,264.7105118,584.5475025,70.11621509,69.99745216,0,69.99745216,68.00195251,1.995499652,67.62554418,1.329153308,66.29639087,2.114262586,64.18212829,1.231421842,1.436614188,-2.767448119,2.767448119,0.996584809,0.996584809,0.264878847,1.990489792,64.02099398,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.36606333,1.531776047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.442103079,61.53941457,66.80816641,63.07119062,0,1.329153308,-0.002273816,90.13028016,0.002273816,89.86971984,0,0,66.80816641,63.07119062,108.0869992,8,7,62% +2018-08-02 16:00:00,58.76689485,91.24354938,474.858887,738.1050853,92.13579157,251.3887976,158.4515532,92.93724438,89.35755751,3.579686872,117.9132689,0,117.9132689,2.778234061,115.1350349,1.025675806,1.592500358,-1.536990375,1.536990375,0.792994524,0.792994524,0.194027729,2.982449502,95.9258281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89388316,2.012821119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.160774512,92.20755469,88.05465767,94.22037581,158.4515532,0,0.214673434,77.6036309,-0.214673434,102.3963691,0.817088088,0,217.5235343,94.22037581,279.1888858,8,8,28% +2018-08-02 17:00:00,47.02220136,101.4870899,663.7238767,816.6310208,107.0143267,457.670783,348.8799022,108.7908808,103.7874499,5.003430941,164.154415,0,164.154415,3.22687679,160.9275382,0.820692235,1.771283867,-0.915181579,0.915181579,0.686658957,0.686658957,0.161233203,3.688428906,118.6325525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76444457,2.337861249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.672254186,114.0341219,102.4366988,116.3719831,348.8799022,0,0.427218528,64.70883002,-0.427218528,115.29117,0.932963877,0,427.929045,116.3719831,504.0921806,8,9,18% +2018-08-02 18:00:00,35.78387472,114.9462265,814.8052383,859.7339625,117.3646169,653.6555468,533.68756,119.9679868,113.8256407,6.142346061,201.0979397,0,201.0979397,3.53897623,197.5589635,0.624546433,2.006190116,-0.510157154,0.510157154,0.617395701,0.617395701,0.144040086,4.130764932,132.8595996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4135354,2.563976231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.992725132,127.7097007,112.4062605,130.273677,533.68756,0,0.62075896,51.62842108,-0.62075896,128.3715789,0.969453438,0,629.7915004,130.273677,715.0530165,8,10,14% +2018-08-02 19:00:00,26.07954805,135.6650697,916.5931722,882.5921394,123.8625428,817.2766179,690.2393213,127.0372967,120.1276302,6.909666502,225.9735392,0,225.9735392,3.734912671,222.2386265,0.455173981,2.367802147,-0.20168861,0.20168861,0.564644473,0.564644473,0.135133608,4.308008721,138.5603692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4712474,2.705931516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121137654,133.1894972,118.5923851,135.8954288,690.2393213,0,0.782059221,38.55049564,-0.782059221,141.4495044,0.986066223,0,799.2140654,135.8954288,888.1549056,8,11,11% +2018-08-02 20:00:00,20.5071369,169.5883014,961.6602286,891.5081974,126.6481901,932.5258348,802.4471539,130.0786809,122.8292799,7.24940101,236.9845664,0,236.9845664,3.818910213,233.1656561,0.357917059,2.959874232,0.062300657,-0.062300657,0.51949965,0.51949965,0.13169744,4.22480821,135.8843547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0681758,2.766787449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.060859166,130.6172104,121.129035,133.3839978,802.4471539,0,0.900100702,25.82869283,-0.900100702,154.1713072,0.99445066,0,919.1231368,133.3839978,1006.420296,8,12,9% +2018-08-02 21:00:00,22.49371759,208.9097032,946.7601098,888.6333277,125.7326837,988.2279427,859.1494857,129.078457,121.9413793,7.137077621,233.3442542,0,233.3442542,3.791304316,229.5529498,0.392589433,3.646162161,0.312085473,-0.312085473,0.476783931,0.476783931,0.132803106,3.898761756,125.39758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2146921,2.746787071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824639621,120.5369236,120.0393317,123.2837107,859.1494857,0,0.966821139,14.80050466,-0.966821139,165.1994953,0.998284126,0,977.7146253,123.2837107,1058.401348,8,13,8% +2018-08-02 22:00:00,30.58025074,235.7727213,872.9420123,873.2871884,121.1138442,977.821961,853.7795405,124.0424205,117.4618149,6.580605621,215.3069267,0,215.3069267,3.652029264,211.6548975,0.533726062,4.115010273,0.572808363,-0.572808363,0.43219769,0.43219769,0.138742141,3.362530214,108.1505303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9087644,2.64588277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436141694,103.9584034,115.3449061,106.6042862,853.7795405,0,0.977661818,12.13314304,-0.977661818,167.866857,0.998857571,0,968.1490641,106.6042862,1037.919437,8,14,7% +2018-08-02 23:00:00,41.2441914,252.1906015,745.5123947,841.5562081,112.7406876,899.190379,784.2292517,114.9611273,109.3411399,5.619987337,184.1576591,0,184.1576591,3.399547701,180.7581113,0.719846937,4.401556339,0.876156367,-0.876156367,0.380322127,0.380322127,0.151225772,2.664061658,85.68538056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1028627,2.462960737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.930103602,82.364047,107.0329663,84.82700774,784.2292517,0,0.931879825,21.27023264,-0.931879825,158.7297674,0.996345013,0,888.3958702,84.82700774,943.9134502,8,15,6% +2018-08-02 00:00:00,52.81935777,263.7225945,573.8888369,783.6794971,100.287832,754.0856442,652.4956438,101.5900004,97.26378389,4.326216465,142.1700409,0,142.1700409,3.024048159,139.1459928,0.921871702,4.602827586,1.280743836,-1.280743836,0.311133594,0.311133594,0.17475132,1.866822575,60.04343118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49364868,2.190912597,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352506601,57.71602992,94.84615528,59.90694251,652.4956438,0,0.832605225,33.63270489,-0.832605225,146.3672951,0.98994753,0,740.7826064,59.90694251,779.9905022,8,16,5% +2018-08-02 01:00:00,64.64042691,273.1462257,371.7573725,675.5606564,82.41633165,546.6089638,463.8753245,82.73363927,79.93117516,2.802464105,92.62203551,0,92.62203551,2.485156483,90.13687903,1.128188279,4.767300977,1.940003868,-1.940003868,0.198393489,0.198393489,0.221693873,1.054020036,33.90090753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.8328859,1.800487412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763633928,32.5868418,77.59651982,34.38732922,463.8753245,0,0.686652368,46.63430451,-0.686652368,133.3656955,0.97718295,0,530.8875777,34.38732922,553.393397,8,17,4% +2018-08-02 02:00:00,76.34695829,281.8274862,160.1775524,449.9011168,53.98207955,280.3971494,226.8353426,53.56180672,52.35432068,1.207486049,40.46466091,0,40.46466091,1.627758871,38.83690204,1.332505796,4.918817557,3.497818687,-3.497818687,0,0,0.337014012,0.406939718,13.08858017,0.063677895,1,0.278464381,0,0.927672789,0.966434752,0.724496596,1,50.46780979,1.179305761,0.010572829,0.312029739,0.970455258,0.694951854,0.961238037,0.922476074,0.289942649,12.58124111,50.75775244,13.76054687,212.3909456,0,0.50418933,59.72244694,-0.50418933,120.2775531,0.950830904,0,252.7056273,13.76054687,261.71163,8,18,4% +2018-08-02 03:00:00,87.51814349,290.5959232,5.204189367,25.79622088,4.087135024,11.74585589,7.742731689,4.003124201,3.963892823,0.039231378,1.385058165,0,1.385058165,0.123242201,1.261815964,1.527479759,5.071855652,17.51853123,-17.51853123,0,0,0.785354785,0.03081055,0.990973206,0.711457303,1,0.057020533,0,0.955819956,0.99458192,0.724496596,1,3.833101951,0.089288555,0.090933859,0.312029739,0.774688439,0.499185035,0.961238037,0.922476074,0.021419308,0.952561139,3.854521259,1.041849694,2.234108687,0,0.300149845,72.53339664,-0.300149845,107.4666034,0.883416539,0,5.828169822,1.041849694,6.51003961,8,19,12% +2018-08-02 04:00:00,98.49284296,300.1037208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719024399,5.237798026,-4.295376614,4.295376614,1,0.735293648,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.078186775,85.51565092,-0.078186775,94.48434908,0,0,0,0,0,8,20,0% +2018-08-02 05:00:00,108.1418557,310.9669144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88743144,5.427396521,-1.481156903,1.481156903,1,0.783446438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134856876,97.75034379,0.134856876,82.24965621,0,0.679236554,0,0,0,8,21,0% +2018-08-02 06:00:00,116.1848193,323.7561244,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027807638,5.650610345,-0.56885951,0.56885951,1,0.627434395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.328802638,109.1961166,0.328802638,70.8038834,0,0.897933093,0,0,0,8,22,0% +2018-08-02 07:00:00,121.9061155,338.7727529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127663094,5.912699955,-0.034401052,0.034401052,1,0.536036616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.490436158,119.369253,0.490436158,60.63074702,0,0.948049931,0,0,0,8,23,0% +2018-08-03 08:00:00,124.5558256,355.5984761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173909259,6.206364223,0.390427999,-0.390427999,1,0.46338657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608743878,127.4987325,0.608743878,52.50126752,0,0.96786365,0,0,0,8,0,0% +2018-08-03 09:00:00,123.6882548,12.86690495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.158767292,0.224569856,0.814089874,-0.814089874,1,0.390936122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675663639,132.5057068,0.675663639,47.49429323,0,0.975998682,0,0,0,8,1,0% +2018-08-03 10:00:00,119.4576014,28.92894614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084928462,0.504905359,1.334809342,-1.334809342,1,0.301887848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686634304,133.3642718,0.686634304,46.63572816,0,0.977181034,0,0,0,8,2,0% +2018-08-03 11:00:00,112.5080422,42.86118699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963635771,0.748068834,2.147565678,-2.147565678,1,0.162898329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640906983,129.8594842,0.640906983,50.14051578,0,0.971985559,0,0,0,8,3,0% +2018-08-03 12:00:00,103.603599,54.65745648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808223919,0.953952576,3.985096244,-3.985096244,1,0,#DIV/0!,0,0,0.131445255,1,0.24585844,0,0.932495934,0.971257898,0.724496596,1,0,0,0.021167801,0.312029739,0.941725582,0.666222177,0.961238037,0.922476074,0,0,0,0,0,0,-0.541596639,122.7923953,0.541596639,57.20760472,0,0.957680372,0,0,0,8,4,0% +2018-08-03 13:00:00,93.38312697,64.7964254,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629843031,1.130910967,16.8463439,-16.8463439,1,0,#DIV/0!,0,0,0.701558532,1,0.059290487,0,0.955588209,0.994350172,0.724496596,1,0,0,0.08998747,0.312029739,0.776695011,0.501191607,0.961238037,0.922476074,0,0,0,0,0,0,-0.395470507,113.2953216,0.395470507,66.70467838,0,0.923568322,0,0,0,8,5,0% +2018-08-03 14:00:00,82.20040546,73.88472499,62.97165958,240.1574254,30.38024088,29.93887149,0,29.93887149,29.46416452,0.474706969,66.75018658,50.5659023,16.18428428,0.916076354,15.26820793,1.434667722,1.289531718,-7.283788311,7.283788311,0.224245149,0.224245149,0.482443072,0.284113404,9.138063705,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.32207567,0.6636942,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205839194,8.783854416,28.52791486,9.447548616,0,50.5659023,-0.210553149,102.1547702,0.210553149,77.84522982,0,0.812530268,28.52791486,50.53387476,61.60132521,8,6,116% +2018-08-03 15:00:00,70.68809893,82.55010484,262.292304,582.0560395,69.80030371,69.6728372,0,69.6728372,67.69556702,1.97727018,68.20165034,2.501107819,65.70054252,2.104736692,63.59580583,1.233740068,1.440771127,-2.78546731,2.78546731,0.993503346,0.993503346,0.266116476,1.967842977,63.29259455,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.07155394,1.524874569,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.425695538,60.83924933,66.49724948,62.3641239,0,2.501107819,-0.004297022,90.246202,0.004297022,89.753798,0,0,66.49724948,62.3641239,107.3133213,8,7,61% +2018-08-03 16:00:00,58.89718816,91.50827625,472.6225399,736.9346043,91.94028857,249.670567,156.939789,92.73077799,89.16794964,3.562828342,117.3651456,0,117.3651456,2.772338924,114.5928066,1.027949854,1.597120713,-1.542111937,1.542111937,0.793870362,0.793870362,0.194532171,2.971289132,95.56687222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.71162487,2.008550113,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152688861,91.86251264,87.86431373,93.87106276,156.939789,0,0.212962979,77.70395283,-0.212962979,102.2960472,0.815217409,0,215.8043619,93.87106276,277.2410951,8,8,28% +2018-08-03 17:00:00,47.15918565,101.7912901,661.6867509,815.9543304,106.8673434,456.0636468,347.4306739,108.6329729,103.6448987,4.988074226,163.6560582,0,163.6560582,3.222444701,160.4336135,0.823083062,1.776593162,-0.916576554,0.916576554,0.686897512,0.686897512,0.161507455,3.678534638,118.3143189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.62741893,2.334650217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.665085823,113.7282236,102.2925048,116.0628738,347.4306739,0,0.425796716,64.79889667,-0.425796716,115.2011033,0.932573073,0,426.2969959,116.0628738,502.2578255,8,9,18% +2018-08-03 18:00:00,35.94215065,115.3021064,812.9130911,859.2684448,117.2407259,652.2190115,532.3854438,119.8335677,113.7054854,6.128082257,200.635431,0,200.635431,3.535240458,197.1001905,0.627308869,2.01240139,-0.50994294,0.50994294,0.617359068,0.617359068,0.144222952,4.121409079,132.5586832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2980376,2.561269677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.985946848,127.4204484,112.2839844,129.9817181,532.3854438,0,0.619579885,51.7145381,-0.619579885,128.2854619,0.969300156,0,628.3252782,129.9817181,713.3957131,8,10,14% +2018-08-03 19:00:00,26.28178426,136.042502,914.7683414,882.2168523,123.7486727,815.9771605,689.0640567,126.9131038,120.0171936,6.895910157,225.5276543,0,225.5276543,3.731479065,221.7961752,0.458703669,2.374389583,-0.200526186,0.200526186,0.564445687,0.564445687,0.135278701,4.298682196,138.2603961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3650916,2.70344388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114380618,132.9011517,118.4794722,135.6045956,689.0640567,0,0.78105973,38.64229403,-0.78105973,141.357706,0.985984409,0,797.8858892,135.6045956,886.6363849,8,11,11% +2018-08-03 20:00:00,20.76279115,169.753225,959.8161777,891.1561737,126.5351688,931.2872511,801.3320848,129.9551663,122.7196666,7.235499775,236.5340468,0,236.5340468,3.815502204,232.7185446,0.362379068,2.962752692,0.064225056,-0.064225056,0.519170558,0.519170558,0.131832711,4.215109906,135.5724239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9628114,2.764318358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053832778,130.3173706,121.0166442,133.081689,801.3320848,0,0.899204997,25.94623635,-0.899204997,154.0537636,0.994395327,0,917.8575245,133.081689,1004.956828,8,12,9% +2018-08-03 21:00:00,22.74148466,208.6851907,944.8103159,888.2519185,125.6124918,986.9506422,858.0034512,128.947191,121.8248117,7.12237925,232.8678798,0,232.8678798,3.787680089,229.0801997,0.396913784,3.642243679,0.314828403,-0.314828403,0.476314862,0.476314862,0.132949958,3.888383032,125.0637645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1026429,2.74416133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81712027,120.2160475,119.9197631,122.9602088,858.0034512,0,0.965946071,14.99551759,-0.965946071,165.0044824,0.998237276,0,976.410791,122.9602088,1056.885788,8,13,8% +2018-08-03 22:00:00,30.78494509,235.4504207,870.807693,872.8140017,120.9780627,976.3918491,852.4972052,123.8946439,117.3301277,6.56451622,214.785342,0,214.785342,3.647934951,211.137407,0.537298652,4.109385066,0.576657796,-0.576657796,0.431539399,0.431539399,0.138926268,3.351274206,107.7884984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7821816,2.642916454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.427986754,103.6104046,115.2101684,106.253321,852.4972052,0,0.976722651,12.38655248,-0.976722651,167.6134475,0.998808395,0,966.6915338,106.253321,1036.232207,8,14,7% +2018-08-03 23:00:00,41.42130213,251.8966782,743.1302821,840.8871404,112.5783228,897.480192,782.694491,114.785701,109.183671,5.602029966,183.5751924,0,183.5751924,3.394651803,180.1805406,0.722938103,4.39642641,0.881796209,-0.881796209,0.379357657,0.379357657,0.151492041,2.651889123,85.29387002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9514976,2.459413675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.921284642,81.98771217,106.8727822,84.44712584,782.694491,0,0.930796124,21.44074187,-0.930796124,158.5592581,0.996282544,0,886.6576408,84.44712584,941.9265957,8,15,6% +2018-08-03 00:00:00,52.98481919,263.4663729,571.2215526,782.5932688,100.0795843,751.9428594,650.5749345,101.3679249,97.06181556,4.306109349,141.5170475,0,141.5170475,3.01776872,138.4992788,0.924759548,4.598355675,1.289848873,-1.289848873,0.309576541,0.309576541,0.175202745,1.853955018,59.62956632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29950904,2.186363165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3431841,57.31820727,94.64269314,59.50457043,650.5749345,0,0.831306581,33.76680968,-0.831306581,146.2331903,0.989853718,0,738.616711,59.50457043,777.5612622,8,16,5% +2018-08-03 01:00:00,64.80452001,272.9188293,368.8194252,673.4783025,82.11438506,543.8078389,461.3891889,82.41865,79.63833338,2.780316617,91.90059136,0,91.90059136,2.476051679,89.42453968,1.131052244,4.763332163,1.957747645,-1.957747645,0.195359125,0.195359125,0.222641161,1.041243318,33.48996436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55139524,1.793891013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754377239,32.1918276,77.30577248,33.98571861,461.3891889,0,0.68508397,46.75778876,-0.68508397,133.2422112,0.977016246,0,528.0905057,33.98571861,550.3334788,8,17,4% +2018-08-03 02:00:00,76.51639218,281.6206902,157.1826593,445.0084157,53.42131009,276.5323824,223.5370127,52.99536977,51.81046049,1.18490928,39.72160515,0,39.72160515,1.610849603,38.11075555,1.335462975,4.915208286,3.551385366,-3.551385366,0,0,0.339867708,0.402712401,12.95261512,0.071640549,1,0.274473472,0,0.928275152,0.967037115,0.724496596,1,49.95876432,1.167055054,0.011851751,0.312029739,0.966940637,0.691437233,0.961238037,0.922476074,0.286398769,12.45054633,50.24516309,13.61760139,207.5226985,0,0.502320866,59.8463336,-0.502320866,120.1536664,0.950462029,0,247.487608,13.61760139,256.4000558,8,18,4% +2018-08-03 03:00:00,87.68865551,290.4047881,4.380945858,21.83080321,3.500517622,9.936373779,6.508384258,3.427989521,3.3949641,0.03302542,1.167764566,0,1.167764566,0.105553522,1.062211044,1.530455755,5.068519715,18.86614394,-18.86614394,0,0,0.799032386,0.02638838,0.848741025,0.729447985,1,0.052955446,0,0.956231925,0.994993888,0.724496596,1,3.281976476,0.076473167,0.09263669,0.312029739,0.771096108,0.495592704,0.961238037,0.922476074,0.01838104,0.815842157,3.300357516,0.892315324,1.760856473,0,0.298128484,72.65476986,-0.298128484,107.3452301,0.882287075,0,4.853938423,0.892315324,5.437940957,8,19,12% +2018-08-03 04:00:00,98.69094077,299.9274068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722481858,5.234720766,-4.211428527,4.211428527,1,0.749649616,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075658151,85.66096096,-0.075658151,94.33903904,0,0,0,0,0,8,20,0% +2018-08-03 05:00:00,108.3600549,310.8102688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891239735,5.424662539,-1.469509702,1.469509702,1,0.781454649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137678076,97.91350873,0.137678076,82.08649127,0,0.686833973,0,0,0,8,21,0% +2018-08-03 06:00:00,116.4245784,323.6320852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031992224,5.648445452,-0.567079952,0.567079952,1,0.627130073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.331868684,109.3822363,0.331868684,70.61776366,0,0.899337999,0,0,0,8,22,0% +2018-08-03 07:00:00,122.1638393,338.7026258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132161224,5.911476006,-0.036004491,0.036004491,1,0.53631082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.493682561,119.5829144,0.493682561,60.41708564,0,0.948720344,0,0,0,8,23,0% +2018-08-04 08:00:00,124.8204907,355.603246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178528536,6.206447474,0.386708247,-0.386708247,1,0.464022685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612093811,127.7410536,0.612093811,52.25894643,0,0.968313175,0,0,0,8,0,0% +2018-08-04 09:00:00,123.9439408,12.95025333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163229854,0.22602456,0.808085067,-0.808085067,1,0.391963004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679033208,132.7681406,0.679033208,47.23185941,0,0.976365899,0,0,0,8,1,0% +2018-08-04 10:00:00,119.6913126,29.07282146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089007492,0.507416457,1.325074338,-1.325074338,1,0.303552632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689938313,133.625226,0.689938313,46.37477401,0,0.977529753,0,0,0,8,2,0% +2018-08-04 11:00:00,112.7146782,43.04144055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96724225,0.751214852,2.129271705,-2.129271705,1,0.166026783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644064787,130.0955925,0.644064787,49.90440746,0,0.972368058,0,0,0,8,3,0% +2018-08-04 12:00:00,103.7845103,54.85747806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811381417,0.957443611,3.934503734,-3.934503734,1,0,#DIV/0!,0,0,0.124869007,1,0.248891668,0,0.932056749,0.970818712,0.724496596,1,0,0,0.020167737,0.312029739,0.944399781,0.668896377,0.961238037,0.922476074,0,0,0,0,0,0,-0.544537694,122.9930769,0.544537694,57.00692307,0,0.958178992,0,0,0,8,4,0% +2018-08-04 13:00:00,93.5427652,65.00922763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632629244,1.134625066,16.0907626,-16.0907626,1,0,#DIV/0!,0,0,0.689588369,1,0.062067633,0,0.955303023,0.994064986,0.724496596,1,0,0,0.088833942,0.312029739,0.779150473,0.503647069,0.961238037,0.922476074,0,0,0,0,0,0,-0.39813923,113.4619042,0.39813923,66.53809581,0,0.924415792,0,0,0,8,5,0% +2018-08-04 14:00:00,82.3424418,74.11033844,60.87244789,234.0348256,29.68682087,29.25053591,0,29.25053591,28.79165369,0.458882225,65.47624474,49.82184781,15.65439693,0.895167182,14.75922975,1.437146723,1.293469416,-7.418518273,7.418518273,0.201204969,0.201204969,0.487688961,0.271093158,8.719287839,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.67563267,0.648545576,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19640607,8.381311125,27.87203874,9.029856701,0,49.82184781,-0.212882197,102.29131,0.212882197,77.70868996,0,0.815128316,27.87203874,49.64105562,60.36111682,8,6,117% +2018-08-04 15:00:00,70.82197439,82.79343218,259.8550262,579.5211029,69.47977651,69.34360185,0,69.34360185,67.3847049,1.958896951,68.76606576,3.666134538,65.09993122,2.095071615,63.0048596,1.236076636,1.445017991,-2.803782324,2.803782324,0.990371294,0.990371294,0.267378998,1.945078515,62.56041122,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.77274145,1.517872253,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.409202763,60.13544687,66.18194421,61.65331912,0,3.666134538,-0.006326145,90.36246383,0.006326145,89.63753617,0,0,66.18194421,61.65331912,106.5328085,8,7,61% +2018-08-04 16:00:00,59.02871059,91.77838387,470.3624671,735.7444616,91.74212171,247.9461152,155.424566,92.5215492,88.97575825,3.545790959,116.8111893,0,116.8111893,2.766363462,114.0448258,1.030245353,1.601834981,-1.547248653,1.547248653,0.794748793,0.794748793,0.195045583,2.959962943,95.20258307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.52688318,2.004220911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144483076,91.51234405,87.67136626,93.51656496,155.424566,0,0.211248027,77.80450015,-0.211248027,102.1954999,0.813311399,0,214.0799375,93.51656496,275.284659,8,8,29% +2018-08-04 17:00:00,47.29782374,102.1012299,659.6206087,815.2649694,106.7180292,454.4460617,345.9734761,108.4725856,103.5000868,4.972498773,163.1505957,0,163.1505957,3.217942326,159.9326534,0.825502753,1.782002632,-0.917934912,0.917934912,0.687129805,0.687129805,0.161786984,3.668451672,117.990016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.48822027,2.331388261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657780748,113.4164913,102.146001,115.7478796,345.9734761,0,0.424369363,64.88924729,-0.424369363,115.1107527,0.932178111,0,424.6549025,115.7478796,500.4095747,8,9,18% +2018-08-04 18:00:00,36.10283775,115.6639234,810.9848244,858.7923668,117.1143415,650.766608,531.0701499,119.6964582,113.582912,6.113546167,200.1640894,0,200.1640894,3.531429503,196.6326599,0.630113388,2.01871629,-0.509674718,0.509674718,0.6173132,0.6173132,0.144410028,4.11183061,132.2506067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1802154,2.558508653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97900728,127.1243136,112.1592227,129.6828223,531.0701499,0,0.618391791,51.80121059,-0.618391791,128.1987894,0.96914511,0,626.8432617,129.6828223,711.7180752,8,10,14% +2018-08-04 19:00:00,26.4875049,136.4249608,912.8987049,881.8311522,123.631916,814.6542314,687.8684578,126.7857736,119.9039575,6.881816048,225.0708186,0,225.0708186,3.72795842,221.3428602,0.462294171,2.381064747,-0.199298715,0.199298715,0.564235777,0.564235777,0.135427858,4.289094552,137.9520244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2562448,2.700893185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.107434402,132.6047332,118.3636792,135.3056263,687.8684578,0,0.780045541,38.73525476,-0.780045541,141.2647452,0.985901178,0,796.5340022,135.3056263,885.0888286,8,11,11% +2018-08-04 20:00:00,21.02290702,169.9227725,957.9175966,890.7926369,126.4187228,930.015458,800.1875386,129.8279193,122.6067319,7.221187469,236.0702026,0,236.0702026,3.811990928,232.2582117,0.366918946,2.965711855,0.066226748,-0.066226748,0.518828249,0.518828249,0.13197244,4.205111636,135.2508452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8542543,2.761774451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046589065,130.0082569,120.9008433,132.7700313,800.1875386,0,0.898287105,26.06617971,-0.898287105,153.9338203,0.994338509,0,916.558127,132.7700313,1003.453457,8,12,9% +2018-08-04 21:00:00,22.99481473,208.4661318,942.7959071,887.8565837,125.4882202,985.6286304,856.8171492,128.8114812,121.7042874,7.107193786,232.3757158,0,232.3757158,3.783932842,228.591783,0.401335228,3.638420379,0.317666579,-0.317666579,0.475829505,0.475829505,0.133102212,3.87766899,124.7191641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9867903,2.741446463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.809357983,119.8848045,119.7961483,122.6262509,856.8171492,0,0.965040036,15.19485474,-0.965040036,164.8051453,0.998188678,0,975.0613257,122.6262509,1055.317754,8,13,8% +2018-08-04 22:00:00,30.99549179,235.1291893,868.5990621,872.3224759,120.8374117,974.9041795,851.1625949,123.7415845,117.1937179,6.547866628,214.2455927,0,214.2455927,3.643693806,210.6018989,0.540973385,4.10377852,0.580632466,-0.580632466,0.43085969,0.43085969,0.139117594,3.339655041,107.4147861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6510593,2.639843759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419568709,103.2511781,115.070628,105.8910219,851.1625949,0,0.975743052,12.64554432,-0.975743052,167.3544557,0.998757001,0,965.1752289,105.8910219,1034.478785,8,14,7% +2018-08-04 23:00:00,41.6039332,251.6014995,740.6653582,840.1914955,112.4100569,895.6984589,781.0945316,114.6039273,109.020479,5.583448328,182.9724692,0,182.9724692,3.389577965,179.5828912,0.726125616,4.391274569,0.88761746,-0.88761746,0.378362164,0.378362164,0.151769022,2.639338071,84.89018502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7946312,2.455737697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912191448,81.5996748,106.7068226,84.0554125,781.0945316,0,0.929662506,21.6177331,-0.929662506,158.3822669,0.996217042,0,884.846506,84.0554125,939.8590924,8,15,6% +2018-08-04 00:00:00,53.15545968,263.2081632,568.4651475,781.4634596,99.86379872,749.7128233,648.5749562,101.1378671,96.85253673,4.285330402,140.8422185,0,140.8422185,3.01126199,137.8309565,0.927737787,4.593849065,1.299259356,-1.299259356,0.307967254,0.307967254,0.175672685,1.840714413,59.20370293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09834227,2.181649061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333591326,56.90885118,94.4319336,59.09050024,648.5749562,0,0.829949178,33.90648225,-0.829949178,146.0935177,0.989755347,0,736.3624646,59.09050024,775.0360152,8,16,5% +2018-08-04 01:00:00,64.97356113,272.6892644,365.7902574,671.310797,81.80133569,540.8990819,458.8068768,82.09220507,79.3347236,2.757481471,91.15669497,0,91.15669497,2.466612086,88.69008289,1.134002569,4.759325499,1.976163056,-1.976163056,0.192209904,0.192209904,0.223629072,1.028141452,33.0685633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25955397,1.787052059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744884982,31.78676087,77.00443895,33.57381293,458.8068768,0,0.683449274,46.88622695,-0.683449274,133.113773,0.976841681,0,525.1861198,33.57381293,547.1595089,8,17,4% +2018-08-04 02:00:00,76.69062744,281.4117285,154.1094822,439.9102682,52.8382106,272.5293251,220.1226391,52.40668597,51.2449436,1.161742373,38.95889517,0,38.95889517,1.593267002,37.36562817,1.338503954,4.911561217,3.607686596,-3.607686596,0,0,0.342861515,0.39831675,12.8112359,0.079865006,1,0.270397324,0,0.92888694,0.967648903,0.724496596,1,49.42847325,1.154316519,0.013163,0.312029739,0.963350468,0.687847064,0.961238037,0.922476074,0.282745203,12.31464725,49.71121845,13.46896376,202.5425431,0,0.500380771,59.9748052,-0.500380771,120.0251948,0.950076096,0,242.1420472,13.46896376,250.9572146,8,18,4% +2018-08-04 03:00:00,87.86283532,290.2115728,3.623307191,18.15722125,2.946189705,8.260115795,5.37545056,2.884665235,2.857351215,0.02731402,0.967351267,0,0.967351267,0.08883849,0.878512778,1.533495766,5.065147472,20.4638062,-20.4638062,0,0,0.813121701,0.022209622,0.714337804,0.748070426,1,0.048827923,0,0.95664621,0.995408173,0.724496596,1,2.761377058,0.064363184,0.094376325,0.312029739,0.76745015,0.491946745,0.961238037,0.922476074,0.015503265,0.686648668,2.776880323,0.751011852,1.354234971,0,0.296050287,72.77947215,-0.296050287,107.2205279,0.881109774,0,3.970109991,0.751011852,4.461632228,8,19,12% +2018-08-04 04:00:00,98.89392387,299.7491925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726024582,5.231610339,-4.128994863,4.128994863,1,0.763746603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073052203,85.81068531,-0.073052203,94.18931469,0,0,0,0,0,8,20,0% +2018-08-04 05:00:00,108.583259,310.6520953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895135382,5.421901892,-1.457745431,1.457745431,1,0.77944284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.140575357,98.08114105,0.140575357,81.91885895,0,0.694318884,0,0,0,8,21,0% +2018-08-04 06:00:00,116.6694664,323.5072827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036266325,5.646267237,-0.565209509,0.565209509,1,0.626810208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335007137,109.5729719,0.335007137,70.42702807,0,0.900749448,0,0,0,8,22,0% +2018-08-04 07:00:00,122.4266903,338.6331259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136748837,5.910263002,-0.037549517,0.037549517,1,0.536575035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496995518,119.8014233,0.496995518,60.19857666,0,0.949395471,0,0,0,8,23,0% +2018-08-05 08:00:00,125.0899597,355.6105878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183231658,6.206575612,0.3830301,-0.3830301,1,0.464651685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615502671,127.9884544,0.615502671,52.01154565,0,0.968765584,0,0,0,8,0,0% +2018-08-05 09:00:00,124.2037057,13.03797847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167763607,0.227555652,0.80211823,-0.80211823,1,0.392983394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682452829,133.0356144,0.682452829,46.96438563,0,0.976734863,0,0,0,8,1,0% +2018-08-05 10:00:00,119.9281711,29.22204383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093141452,0.510020879,1.315394785,-1.315394785,1,0.305207933,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693282859,133.8905407,0.693282859,46.10945927,0,0.977879365,0,0,0,8,2,0% +2018-08-05 11:00:00,112.9236059,43.22722457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970888725,0.754457395,2.111126606,-2.111126606,1,0.169129777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647253629,130.3348559,0.647253629,49.66514413,0,0.97275053,0,0,0,8,3,0% +2018-08-05 12:00:00,103.9670751,55.06285571,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814567775,0.961028128,3.884762124,-3.884762124,1,0,#DIV/0!,0,0,0.118305549,1,0.251946175,0,0.931612502,0.970374466,0.724496596,1,0,0,0.019163739,0.312029739,0.947092392,0.671588988,0.961238037,0.922476074,0,0,0,0,0,0,-0.547500957,123.1957366,0.547500957,56.80426344,0,0.958675959,0,0,0,8,4,0% +2018-08-05 13:00:00,93.70365011,65.22717008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635437216,1.13842888,15.39496247,-15.39496247,1,0,#DIV/0!,0,0,0.677683441,1,0.064865186,0,0.955013899,0.993775862,0.724496596,1,0,0,0.087676702,0.312029739,0.781624552,0.506121148,0.961238037,0.922476074,0,0,0,0,0,0,-0.400822607,113.6296137,0.400822607,66.37038632,0,0.925256537,0,0,0,8,5,0% +2018-08-05 14:00:00,82.48545228,74.34097782,58.77841448,227.8323489,28.98297346,28.55212639,0,28.55212639,28.10902988,0.443096516,64.15929589,49.0338452,15.12545069,0.873943586,14.2515071,1.439642727,1.297494832,-7.55913207,7.55913207,0.177158593,0.177158593,0.493088725,0.258277598,8.307095373,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.0194687,0.633169153,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.18712124,7.985096048,27.20658994,8.618265201,0,49.0338452,-0.215218978,102.4283746,0.215218978,77.57162545,0,0.81767848,27.20658994,48.71218521,59.08774091,8,6,117% +2018-08-05 15:00:00,70.95687668,83.04182559,257.3991731,576.942295,69.15461356,69.0097305,0,69.0097305,67.06934681,1.940383692,69.31818838,4.823512056,64.49467633,2.085266752,62.40940957,1.238431125,1.449353273,-2.82239595,2.82239595,0.987188177,0.987188177,0.268666805,1.922202857,61.8246514,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.46960726,1.510768663,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.392629426,59.42820654,65.86223668,60.93897521,0,4.823512056,-0.008360476,90.47902555,0.008360476,89.52097445,0,0,65.86223668,60.93897521,105.7455772,8,7,61% +2018-08-05 16:00:00,59.16145348,92.05376403,468.0787631,734.5344089,91.54127462,246.2157481,153.9062052,92.30954287,88.78096744,3.528575434,116.2514225,0,116.2514225,2.760307181,113.4911153,1.032562154,1.606641271,-1.552399495,1.552399495,0.795629639,0.795629639,0.195568101,2.948470441,94.83294468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.33964285,1.999833156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136156797,91.15703357,87.47579965,93.15686673,153.9062052,0,0.209528925,77.9052525,-0.209528925,102.0947475,0.811369463,0,212.3505947,93.15686673,273.3199008,8,8,29% +2018-08-05 17:00:00,47.43812061,102.4167624,657.5252314,814.5627144,106.5663563,452.8179718,344.5082814,108.3096904,103.3529875,4.956702934,162.6379737,0,162.6379737,3.213368832,159.4246049,0.827951396,1.787509714,-0.919255977,0.919255977,0.68735572,0.68735572,0.162071889,3.658178461,117.6595942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.34682282,2.32807478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.650337842,113.0988774,101.9971607,115.4269521,344.5082814,0,0.422936473,64.9798814,-0.422936473,115.0201186,0.931778936,0,423.0027204,115.4269521,498.547352,8,9,18% +2018-08-05 18:00:00,36.265948,116.0314558,809.0199796,858.3055104,116.9854257,649.2979463,529.7413285,119.5566178,113.4578835,6.098734338,199.6838028,0,199.6838028,3.527542215,196.1562606,0.632960199,2.02513094,-0.509352143,0.509352143,0.617258036,0.617258036,0.144601405,4.102027389,131.9353014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0600332,2.555692327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971904879,126.8212302,112.0319381,129.3769225,529.7413285,0,0.61719437,51.88845929,-0.61719437,128.1115407,0.968988243,0,625.3450575,129.3769225,710.0196657,8,10,14% +2018-08-05 19:00:00,26.69670486,136.8121127,910.9836513,881.4348192,123.5122274,813.3071627,686.6519051,126.6552576,119.787878,6.867379564,224.6028826,0,224.6028826,3.724349368,220.8785333,0.465945399,2.387821823,-0.198006035,0.198006035,0.564014716,0.564014716,0.135581168,4.279243513,137.6351812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1446647,2.698278439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.100297358,132.3001713,118.2449621,134.9984498,686.6519051,0,0.779016088,38.82942254,-0.779016088,141.1705775,0.985816473,0,795.1577215,134.9984498,883.5115069,8,11,11% +2018-08-05 20:00:00,21.28742398,170.0966463,955.9638177,890.4173568,126.2988035,928.7095903,799.0127027,129.6968877,122.4904286,7.206459059,235.5928703,0,235.5928703,3.808374919,231.7844954,0.371535638,2.968746525,0.068305837,-0.068305837,0.518472703,0.518472703,0.132116719,4.19481143,134.9195552,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7424591,2.759154665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.039126602,129.6898083,120.7815857,132.448963,799.0127027,0,0.89734628,26.18858927,-0.89734628,153.8114107,0.99428015,0,915.2240557,132.448963,1001.909253,8,12,9% +2018-08-05 21:00:00,23.25361841,208.2525667,940.716261,887.447068,125.3598205,984.260941,855.5896651,128.6712759,121.5797594,7.091516536,231.8676098,0,231.8676098,3.780061116,228.0875487,0.405852204,3.634692965,0.320600176,-0.320600176,0.475327831,0.475327831,0.13325997,3.866618387,124.3637387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8670892,2.738641411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801351859,119.5431561,119.6684411,122.2817975,855.5896651,0,0.964102194,15.39853505,-0.964102194,164.601465,0.998138278,0,973.6652361,122.2817975,1053.696227,8,13,8% +2018-08-05 22:00:00,31.21183304,234.809255,866.3156418,871.8123011,120.6918453,973.3579846,849.7747905,123.5831941,117.0525409,6.530653241,213.6875617,0,213.6875617,3.639304442,210.0482572,0.544749252,4.098194613,0.58473285,-0.58473285,0.430158483,0.430158483,0.139316249,3.327672583,107.0293891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5153546,2.636663679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410887458,102.8807198,114.9262421,105.5173835,849.7747905,0,0.974722184,12.91000782,-0.974722184,167.0899922,0.998703332,0,963.599157,105.5173835,1032.658174,8,14,7% +2018-08-05 23:00:00,41.79204645,251.3052563,738.1173826,839.4688385,112.235845,893.8442994,779.4285385,114.4157608,108.8515202,5.564240612,182.3494299,0,182.3494299,3.384324834,178.965105,0.729408812,4.386104149,0.893621501,-0.893621501,0.377335413,0.377335413,0.152056905,2.626409835,84.4743685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6322216,2.451931822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.902824984,81.19997614,106.5350466,83.65190797,779.4285385,0,0.928478227,21.80117256,-0.928478227,158.1988274,0.996148441,0,882.9615701,83.65190797,937.7100708,8,15,6% +2018-08-05 00:00:00,53.33124387,262.948105,565.619708,780.2893091,99.64041849,747.3947865,646.495014,100.8997725,96.63589224,4.263880278,140.145573,0,140.145573,3.004526251,137.1410467,0.9308058,4.589310194,1.308979615,-1.308979615,0.306304992,0.306304992,0.176161504,1.82710403,58.76594622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.89009535,2.176769041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32373065,56.48806278,94.21382599,58.66483182,646.495014,0,0.828532451,34.05172091,-0.828532451,145.9482791,0.989652334,0,734.0191253,58.66483182,772.4140844,8,16,5% +2018-08-05 01:00:00,65.14751024,272.4576347,362.6704154,669.0563325,81.47705238,537.88198,456.1277986,81.75418142,79.02021864,2.733962784,90.39047481,0,90.39047481,2.456833748,87.93364106,1.137038553,4.755282797,1.995267752,-1.995267752,0.188942808,0.188942808,0.224658668,1.014720776,32.63690824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95723983,1.779967687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.735161748,31.37183761,76.69240158,33.1518053,456.1277986,0,0.681747973,47.01961271,-0.681747973,132.9803873,0.976659115,0,522.1737735,33.1518053,543.870967,8,17,4% +2018-08-05 02:00:00,76.86961476,281.2006798,150.9597774,434.6016069,52.23228777,268.3872931,216.5920029,51.79529015,50.65729158,1.137998567,38.17694196,0,38.17694196,1.574996193,36.60194577,1.341627872,4.907877722,3.666872363,-3.666872363,0,0,0.346001357,0.393749048,12.6643229,0.088355173,1,0.266237809,0,0.929507646,0.968269609,0.724496596,1,48.87642381,1.14107938,0.014506357,0.312029739,0.959686341,0.684182937,0.961238037,0.922476074,0.278981079,12.17342888,49.15540489,13.31450826,197.4549792,0,0.49836908,60.10784227,-0.49836908,119.8921577,0.949672749,0,236.6730177,13.31450826,245.387097,8,18,4% +2018-08-05 03:00:00,88.04047834,290.0163366,2.936533967,14.80920946,2.430156179,6.731709296,4.352694459,2.379014837,2.356878004,0.022136833,0.785274834,0,0.785274834,0.073278175,0.711996658,1.536596222,5.061739958,22.38480032,-22.38480032,0,0,0.827559363,0.018319544,0.589219501,0.767326748,1,0.044643488,0,0.957062074,0.995824037,0.724496596,1,2.276934932,0.053089788,0.096151053,0.312029739,0.763755663,0.488252259,0.961238037,0.922476074,0.012817331,0.566380196,2.289752263,0.619469985,1.012755576,0,0.293918083,72.90732775,-0.293918083,107.0926722,0.879884574,0,3.180860272,0.619469985,3.586290987,8,19,13% +2018-08-05 04:00:00,99.10172856,299.56912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729651458,5.228467481,-4.048127561,4.048127561,1,0.777575726,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.070369638,85.96478171,-0.070369638,94.03521829,0,0,0,0,0,8,20,0% +2018-08-05 05:00:00,108.8113974,310.4924208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899117149,5.419115045,-1.445880042,1.445880042,1,0.777413739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14354766,98.25318642,0.14354766,81.74681358,0,0.701683628,0,0,0,8,21,0% +2018-08-05 06:00:00,116.9194082,323.3817325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040628633,5.644075973,-0.563251805,0.563251805,1,0.626475421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338216621,109.7682582,0.338216621,70.23174181,0,0.902165752,0,0,0,8,22,0% +2018-08-05 07:00:00,122.6945902,338.5642695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141424574,5.909061233,-0.039036218,0.039036218,1,0.536829276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500373397,120.0247068,0.500373397,59.97529319,0,0.950074624,0,0,0,8,23,0% +2018-08-06 08:00:00,125.3641501,355.6205311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188017184,6.206749156,0.379395091,-0.379395091,1,0.465273308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618968642,128.2408583,0.618968642,51.75914168,0,0.969220464,0,0,0,8,0,0% +2018-08-06 09:00:00,124.4674601,13.13011505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172366991,0.229163739,0.796192152,-0.796192152,1,0.393996813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685920587,133.3080491,0.685920587,46.69195087,0,0.977105264,0,0,0,8,1,0% +2018-08-06 10:00:00,120.1680847,29.37662932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097328733,0.512718905,1.305775034,-1.305775034,1,0.306853007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696666021,134.1601267,0.696666021,45.8398733,0,0.978229599,0,0,0,8,2,0% +2018-08-06 11:00:00,113.1347387,43.4185259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974573688,0.757796233,2.093137059,-2.093137059,1,0.172206171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650471676,130.5771737,0.650471676,49.42282635,0,0.973132702,0,0,0,8,3,0% +2018-08-06 12:00:00,104.1512194,55.2735511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817781699,0.964705456,3.835871294,-3.835871294,1,0,#DIV/0!,0,0,0.1117577,1,0.25502078,0,0.931163329,0.969925293,0.724496596,1,0,0,0.018156228,0.312029739,0.949802374,0.67429897,0.961238037,0.922476074,0,0,0,0,0,0,-0.55048477,123.4002766,0.55048477,56.59972339,0,0.959170966,0,0,0,8,4,0% +2018-08-06 13:00:00,93.86572306,65.45019601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638265922,1.142321416,14.75235908,-14.75235908,1,0,#DIV/0!,0,0,0.665847804,1,0.067682231,0,0.954720894,0.993482857,0.724496596,1,0,0,0.086516185,0.312029739,0.784116405,0.508613001,0.961238037,0.922476074,0,0,0,0,0,0,-0.40351923,113.7983677,0.40351923,66.20163232,0,0.926090168,0,0,0,8,5,0% +2018-08-06 14:00:00,82.62939103,74.57657168,56.69134964,221.5535421,28.26893656,27.84388717,0,27.84388717,27.41652383,0.42736334,62.79959357,48.20170676,14.59788681,0.852412739,13.74547407,1.442154932,1.301606721,-7.705971336,7.705971336,0.1520476,0.1520476,0.498646385,0.245680927,7.901943137,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.35380554,0.617570127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177994995,7.595648308,26.53180053,8.213218436,0,48.20170676,-0.217562339,102.5658976,0.217562339,77.43410236,0,0.820180812,26.53180053,47.74733343,57.78147532,8,6,118% +2018-08-06 15:00:00,71.09277903,83.29519812,254.9252924,574.3192668,68.82480092,68.67121377,0,68.67121377,66.74947924,1.921734535,69.85740596,5.97249571,63.88491025,2.075321684,61.80958857,1.240803068,1.453775458,-2.841310644,2.841310644,0.983953574,0.983953574,0.269980276,1.899222937,61.0855382,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.16213838,1.503563496,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.375980553,58.71774282,65.53811893,60.22130632,0,5.97249571,-0.010399261,90.59584448,0.010399261,89.40415552,0,0,65.53811893,60.22130632,104.9517595,8,7,60% +2018-08-06 16:00:00,59.29540532,92.33430781,465.7715727,733.3042181,91.33773482,244.4798123,152.3850644,92.09474797,88.58356511,3.511182858,115.68588,0,115.68588,2.754169705,112.9317103,1.034900054,1.611537684,-1.55756327,1.55756327,0.796512696,0.796512696,0.196099848,2.936811366,94.45794876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14989223,1.995386576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.127709838,90.79657323,87.27760206,92.79195981,152.3850644,0,0.207806065,78.00618702,-0.207806065,101.993813,0.809391046,0,210.6167087,92.79195981,271.3471906,8,8,29% +2018-08-06 17:00:00,47.58007813,102.7377403,655.4004457,813.8473528,106.4123002,451.1793633,343.0351012,108.1442621,103.2035767,4.940685402,162.1181495,0,162.1181495,3.208723471,158.909426,0.830429022,1.793111834,-0.920538994,0.920538994,0.687575129,0.687575129,0.162362264,3.647713656,117.3230101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.20320349,2.324709232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642756127,112.7753399,101.8459596,115.1000492,343.0351012,0,0.421498086,65.07079592,-0.421498086,114.9292041,0.931375499,0,421.3404482,115.1000492,496.6711284,8,9,18% +2018-08-06 18:00:00,36.43148966,116.4044829,807.0181383,857.8076628,116.8539426,647.8126749,528.3986663,119.4140087,113.330365,6.083643612,199.1944685,0,199.1944685,3.523577513,195.670891,0.635849446,2.03164149,-0.508974821,0.508974821,0.61719351,0.61719351,0.14479717,4.091997441,131.6127038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9374576,2.552819914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.964638216,126.5111371,111.9020958,129.063957,528.3986663,0,0.615987347,51.97630225,-0.615987347,128.0236977,0.968829502,0,623.8303123,129.063957,708.3000908,8,10,14% +2018-08-06 19:00:00,26.90937458,137.2036328,909.0226029,881.0276357,123.3895635,811.9353198,685.4138106,126.5215092,119.6689129,6.852596353,224.123705,0,224.123705,3.720650597,220.4030544,0.469657186,2.394655138,-0.196647942,0.196647942,0.563782468,0.563782468,0.135738719,4.269126941,137.3097975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0303109,2.695598692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092967936,131.9874001,118.1232788,134.6829988,685.4138106,0,0.777970841,38.92483887,-0.777970841,141.0751611,0.985730239,0,793.7563981,134.6829988,881.9037272,8,11,11% +2018-08-06 20:00:00,21.55627868,170.2745635,953.9542015,890.0301031,126.1753635,927.3688098,797.8067893,129.5620205,122.3707108,7.191309723,235.1018934,0,235.1018934,3.804652748,231.2972407,0.376228037,2.971851766,0.070462463,-0.070462463,0.518103899,0.518103899,0.132265641,4.184207436,134.5784943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6273818,2.756457964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031444044,129.3619676,120.6588258,132.1184256,797.8067893,0,0.896381804,26.31352656,-0.896381804,153.6864734,0.994220197,0,913.8544494,132.1184256,1000.323317,8,12,9% +2018-08-06 21:00:00,23.51780437,208.0445299,938.5707777,887.0231134,125.227245,982.8466274,854.320103,128.5265245,121.4511815,7.075342976,231.3434149,0,231.3434149,3.776063475,227.5673514,0.410463119,3.631062037,0.323629408,-0.323629408,0.474809801,0.474809801,0.133423337,3.855230075,123.9974515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7434953,2.735745133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793101065,119.1910668,119.5365963,121.926812,854.320103,0,0.963131727,15.60656938,-0.963131727,164.3934306,0.998086021,0,972.2215488,121.926812,1052.020209,8,13,8% +2018-08-06 22:00:00,31.43390841,234.4908413,863.9569721,871.2831605,120.5413178,971.7523096,848.3328847,123.4194249,116.9065523,6.512872592,213.1111359,0,213.1111359,3.634765483,209.4763704,0.548625199,4.092637247,0.588959481,-0.588959481,0.429435687,0.429435687,0.139522362,3.315326781,106.6323056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3750249,2.633375219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401942967,102.4990281,114.7769678,105.1324034,848.3328847,0,0.973659223,13.17983177,-0.973659223,166.8201682,0.998647331,0,961.9623387,105.1324034,1030.769394,8,14,7% +2018-08-06 23:00:00,41.9856018,251.0081401,735.4861302,838.718721,112.0556419,891.9168387,777.6956827,114.221156,108.6767509,5.54440512,181.7060185,0,181.7060185,3.378891045,178.3271274,0.73278699,4.380918494,0.899809812,-0.899809812,0.376277149,0.376277149,0.152355887,2.613105841,84.04646635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4642267,2.44799506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893186287,80.78866032,106.357413,83.23665538,777.6956827,0,0.927242547,21.99102135,-0.927242547,158.0089786,0.996076676,0,881.0019438,83.23665538,935.47867,8,15,6% +2018-08-06 00:00:00,53.51213522,262.6863403,562.6853355,779.0700244,99.40938472,744.9879966,644.3344119,100.6535847,96.41182499,4.241759739,139.4271339,0,139.4271339,2.997559731,136.4295741,0.933962949,4.584741539,1.319014237,-1.319014237,0.30458897,0.30458897,0.176669585,1.813127256,58.31640514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.67471338,2.171721821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.313604525,56.05594679,93.9883179,58.22766862,644.3344119,0,0.827055838,34.2025214,-0.827055838,145.7974786,0.98954459,0,731.5859492,58.22766862,769.6947937,8,16,5% +2018-08-06 01:00:00,65.32632651,272.2240465,359.4604666,666.7130119,81.14139681,534.7558029,453.3513538,81.40444915,78.69468432,2.709764834,89.60206431,0,89.60206431,2.446712494,87.15535182,1.140159486,4.751205915,2.015080474,-2.015080474,0.185554633,0.185554633,0.225731073,1.000987834,32.1952096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64432386,1.772634873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725212278,30.94726007,76.36953614,32.71989495,453.3513538,0,0.67997976,47.15793857,-0.67997976,132.8420614,0.9764684,0,519.052807,32.71989495,540.4673238,8,17,4% +2018-08-06 02:00:00,77.05330408,280.9876255,147.7353902,429.0771722,51.60302272,264.1056136,212.9449206,51.16069296,50.04700119,1.113691775,37.37617732,0,37.37617732,1.55602153,35.82015579,1.344833856,4.904159222,3.729105983,-3.729105983,0,0,0.349293576,0.389005382,12.5117503,0.097115186,1,0.261996799,0,0.930136763,0.968898726,0.724496596,1,48.30208001,1.127332301,0.015881613,0.312029739,0.955949848,0.680446444,0.961238037,0.922476074,0.275105388,12.02677029,48.57718539,13.15410259,192.264735,0,0.49628583,60.24542477,-0.49628583,119.7545752,0.949251607,0,231.0847941,13.15410259,239.6938911,8,18,4% +2018-08-06 03:00:00,88.22135758,289.8191414,2.324761031,11.81451628,1.95805994,5.363250954,3.446708715,1.916542239,1.899017208,0.017525031,0.622707959,0,0.622707959,0.059042732,0.563665227,1.53975316,5.058298254,24.73403913,-24.73403913,0,0,0.842262888,0.014760683,0.474754302,0.787216663,1,0.040408106,0,0.957478757,0.996240721,0.724496596,1,1.833931541,0.042776258,0.097958938,0.312029739,0.760018149,0.484514745,0.961238037,0.922476074,0.010353078,0.456351893,1.844284619,0.499128151,0.733402183,0,0.291735068,73.03813938,-0.291735068,106.9618606,0.878611623,0,2.488660301,0.499128151,2.815329693,8,19,13% +2018-08-06 04:00:00,99.31429045,299.3872344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733361363,5.225292979,-3.968866931,3.968866931,1,0.791130092,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.06761117,86.12320785,-0.06761117,93.87679215,0,0,0,0,0,8,20,0% +2018-08-06 05:00:00,109.0443987,310.3312747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903183788,5.416302515,-1.433928643,1.433928643,1,0.77536993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146593917,98.42959032,0.146593917,81.57040968,0,0.708921728,0,0,0,8,21,0% +2018-08-06 06:00:00,117.1743273,323.2554535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045077811,5.641871989,-0.561210327,0.561210327,1,0.626126308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34149575,109.9680295,0.34149575,70.03197051,0,0.903585294,0,0,0,8,22,0% +2018-08-06 07:00:00,122.9674592,338.4960769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146187037,5.907871047,-0.040464661,0.040464661,1,0.537073554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503814544,120.2526908,0.503814544,59.74730925,0,0.950757133,0,0,0,8,23,0% +2018-08-07 08:00:00,125.6429767,355.6331098,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192883625,6.206968694,0.375804737,-0.375804737,1,0.465887295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622489879,128.4981875,0.622489879,51.50181253,0,0.969677409,0,0,0,8,0,0% +2018-08-07 09:00:00,124.7351112,13.2267013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177038383,0.230849487,0.790309583,-0.790309583,1,0.395002791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689434529,133.5853636,0.689434529,46.41463639,0,0.977476797,0,0,0,8,1,0% +2018-08-07 10:00:00,120.4109571,29.536596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101567656,0.51551085,1.296219356,-1.296219356,1,0.308487125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700085836,134.433891,0.700085836,45.56610897,0,0.978580186,0,0,0,8,2,0% +2018-08-07 11:00:00,113.3479862,43.61533195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97829556,0.761231147,2.075309518,-2.075309518,1,0.17525486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653717045,130.822441,0.653717045,49.17755902,0,0.973514309,0,0,0,8,3,0% +2018-08-07 12:00:00,104.3368654,55.48952566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821021832,0.968474923,3.787830564,-3.787830564,1,0,#DIV/0!,0,0,0.105228275,1,0.258114258,0,0.930709375,0.969471338,0.724496596,1,0,0,0.017145632,0.312029739,0.952528648,0.677025244,0.961238037,0.922476074,0,0,0,0,0,0,-0.553487421,123.6065952,0.553487421,56.39340482,0,0.95966371,0,0,0,8,4,0% +2018-08-07 13:00:00,94.02892182,65.67824809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641114278,1.146301676,14.15730296,-14.15730296,1,0,#DIV/0!,0,0,0.654085491,1,0.0705178,0,0.954424073,0.993186037,0.724496596,1,0,0,0.085352843,0.312029739,0.78662515,0.511121746,0.961238037,0.922476074,0,0,0,0,0,0,-0.406227634,113.9680799,0.406227634,66.03192011,0,0.9269163,0,0,0,8,5,0% +2018-08-07 14:00:00,82.77420852,74.81704785,54.61312797,215.202481,27.54499917,27.12611264,0,27.12611264,26.71441581,0.411696827,61.39757555,47.32540703,14.07216852,0.830583355,13.24158516,1.444682474,1.305803822,-7.859402013,7.859402013,0.125809409,0.125809409,0.504365895,0.233317373,7.50428874,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67891261,0.601754813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.169037643,7.213407777,25.84795025,7.81516259,0,47.32540703,-0.219911066,102.7038095,0.219911066,77.29619047,0,0.822635362,25.84795025,46.74671592,56.44274089,8,6,118% +2018-08-07 15:00:00,71.2296512,83.55346211,252.4339988,571.6517347,68.49033277,68.32805065,0,68.32805065,66.42509654,1.902954111,70.38309398,7.11231216,63.27078182,2.065236235,61.20554559,1.243191939,1.458283015,-2.860528388,2.860528388,0.980667146,0.980667146,0.271319763,1.876146305,60.34331437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.85032939,1.496256622,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.359261611,58.00428904,65.209591,59.50054567,0,7.11231216,-0.012441687,90.71287457,0.012441687,89.28712543,0,0,65.209591,59.50054567,104.1515081,8,7,60% +2018-08-07 16:00:00,59.43055104,92.61990566,463.4411037,732.0536891,91.13149488,242.7387069,150.861548,91.87715886,88.38354407,3.493614798,115.1146119,0,115.1146119,2.74795081,112.3666611,1.037258792,1.616522307,-1.562738569,1.562738569,0.797397724,0.797397724,0.196640941,2.924985761,94.07759666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.95762439,1.990881007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119142227,90.43096432,87.07676661,92.42184533,150.861548,0,0.206079896,78.10727757,-0.206079896,101.8927224,0.807375654,0,208.8787076,92.42184533,269.3669569,8,8,29% +2018-08-07 17:00:00,47.72369425,103.0640159,653.2461356,813.1186858,106.2558397,449.5302761,341.5539967,107.9762794,103.0518341,4.924445303,161.5910942,0,161.5910942,3.20400561,158.3870886,0.832935596,1.798806417,-0.921783096,0.921783096,0.687787883,0.687787883,0.162658199,3.637056153,116.9802282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05734273,2.321291158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.635034802,112.4458449,101.6923775,114.767136,341.5539967,0,0.420054295,65.16198457,-0.420054295,114.8380154,0.930967769,0,419.6681397,114.767136,494.7809349,8,9,18% +2018-08-07 18:00:00,36.59946649,116.7827854,804.9789314,857.2986191,116.7198591,646.3104922,527.0418963,119.2685959,113.2003247,6.06827121,198.6959961,0,198.6959961,3.519534403,195.1764617,0.638781195,2.038244115,-0.50854229,0.50854229,0.617119543,0.617119543,0.144997409,4.081738991,131.2827568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8124579,2.549890694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957206004,126.1939795,111.7696639,128.7438701,527.0418963,0,0.614770495,52.06475407,-0.614770495,127.9352459,0.968668836,0,622.298724,128.7438701,706.5590122,8,10,14% +2018-08-07 19:00:00,27.12549945,137.5992054,907.0150235,880.609388,123.2638828,810.5381105,684.1536262,126.3844843,119.5470219,6.837462372,223.6331544,0,223.6331544,3.716860861,219.9162935,0.473429277,2.401559183,-0.195224187,0.195224187,0.563538992,0.563538992,0.135900597,4.258742861,136.9758097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9131447,2.692853041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085444706,131.6663585,117.9985894,134.3592115,684.1536262,0,0.776909303,39.02154127,-0.776909303,140.9784587,0.985642423,0,792.3294275,134.3592115,880.2648443,8,11,11% +2018-08-07 20:00:00,21.82940458,170.4562575,951.8881413,889.6306464,126.0483571,925.992312,796.5690431,129.4232689,122.247534,7.175734889,234.5971235,0,234.5971235,3.800823035,230.7963004,0.380994984,2.975022924,0.072696805,-0.072696805,0.517721804,0.517721804,0.132419296,4.173297929,134.227607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5089796,2.75368335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.023540143,129.0246815,120.5325198,131.7783648,796.5690431,0,0.895392988,26.44104739,-0.895392988,153.5589526,0.994158598,0,912.4484827,131.7783648,998.6947869,8,12,9% +2018-08-07 21:00:00,23.78727933,207.8420517,936.3588824,886.5844596,125.090447,981.3847676,853.0075903,128.3771773,121.3185085,7.058668775,230.8029903,0,230.8029903,3.771938512,227.0310518,0.415166344,3.627528126,0.326754533,-0.326754533,0.474275374,0.474275374,0.133592418,3.843503012,123.6202688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6159649,2.732756612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784604848,118.8285045,119.4005698,121.5612611,853.0075903,0,0.962127839,15.81896006,-0.962127839,164.1810399,0.998031854,0,970.7293166,121.5612611,1050.288731,8,13,8% +2018-08-07 22:00:00,31.661655,234.1741685,861.5226119,870.734731,120.385784,970.0862147,846.835985,123.2502298,116.7557084,6.494521357,212.5162072,0,212.5162072,3.630075563,208.8861316,0.552600126,4.087110263,0.593312953,-0.593312953,0.428691199,0.428691199,0.13973607,3.302617677,106.2235372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2300279,2.629977388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392735264,102.1061043,114.6227632,104.7360817,846.835985,0,0.972553356,13.45490441,-0.972553356,166.5450956,0.998588939,0,960.2638109,104.7360817,1028.811482,8,14,7% +2018-08-07 23:00:00,42.18455749,250.7103438,732.7713898,837.9406791,111.8694017,889.9152079,775.8951411,114.0200668,108.4961265,5.52394026,181.0421824,0,181.0421824,3.373275217,177.6689072,0.736259422,4.375720968,0.906183982,-0.906183982,0.375187102,0.375187102,0.15266617,2.599427604,83.60652721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2906037,2.443926411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88327645,80.36577408,106.1738801,82.80970049,775.8951411,0,0.925954737,22.18723569,-0.925954737,157.8127643,0.99600168,0,878.9667443,82.80970049,933.1640371,8,15,6% +2018-08-07 00:00:00,53.69809621,262.4230136,559.662144,777.8047782,99.17063627,742.4916963,642.092451,100.3992453,96.18027569,4.218969644,138.6869269,0,138.6869269,2.990360584,135.6965664,0.937208581,4.580145621,1.329368086,-1.329368086,0.302818358,0.302818358,0.177197328,1.798787586,57.85519205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45213939,2.166506064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303215483,55.61261122,93.75535487,57.77911729,642.092451,0,0.825518779,34.35887713,-0.825518779,145.6411229,0.989432026,0,729.0621895,57.77911729,766.8774662,8,16,5% +2018-08-07 01:00:00,65.50996857,271.9886091,356.1609974,664.2788416,80.79422272,531.5197985,450.4769276,81.04287084,78.3579788,2.684892042,88.79160123,0,88.79160123,2.436243914,86.35535731,1.143364644,4.747096756,2.035621139,-2.035621139,0.182041973,0.182041973,0.226847474,0.98694936,31.74368404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32066972,1.765050422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.715041452,30.51323653,76.03571117,32.27828696,450.4769276,0,0.678144326,47.3011962,-0.678144326,132.6988038,0.976269382,0,515.8225431,32.27828696,536.9480363,8,17,4% +2018-08-07 02:00:00,77.24164481,280.7726498,144.4382578,423.3315114,50.94986969,259.683628,209.1812483,50.50237974,49.41354314,1.088836598,36.55705442,0,36.55705442,1.536326556,35.02072786,1.348121022,4.900407188,3.794565569,-3.794565569,0,0,0.352744975,0.384081639,12.35338578,0.106149438,1,0.257676157,0,0.930773788,0.969535751,0.724496596,1,47.70488163,1.11306336,0.017288566,0.312029739,0.952142571,0.676639167,0.961238037,0.922476074,0.271116968,11.8745443,47.9759986,12.98760766,186.9767763,0,0.49413106,60.38753226,-0.49413106,119.6124677,0.94881227,0,225.3818582,12.98760766,233.8819877,8,18,4% +2018-08-07 03:00:00,88.40522172,289.6200523,1.790695629,9.192780054,1.534855615,4.163427369,2.661354294,1.502073075,1.488574055,0.01349902,0.480456447,0,0.480456447,0.04628156,0.434174887,1.542962195,5.054823493,27.6671527,-27.6671527,0,0,0.857128141,0.01157039,0.372143514,0.807736975,1,0.036128216,0,0.957895474,0.996657437,0.724496596,1,1.436991937,0.033530833,0.099797793,0.312029739,0.756243538,0.480740134,0.961238037,0.922476074,0.008137159,0.357718501,1.445129096,0.391249333,0.511680028,0,0.289504837,73.17168632,-0.289504837,106.8283137,0.877291314,0,1.89402154,0.391249333,2.150086404,8,19,14% +2018-08-07 04:00:00,99.53154462,299.2035838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737153163,5.222087671,-3.891242687,3.891242687,1,0.80440462,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064777508,86.28592163,-0.064777508,93.71407837,0,0,0,0,0,8,20,0% +2018-08-07 05:00:00,109.2821904,310.1686899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907334037,5.413464876,-1.42190548,1.42190548,1,0.773313848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14971306,98.61029835,0.14971306,81.38970165,0,0.716027801,0,0,0,8,21,0% +2018-08-07 06:00:00,117.434146,323.1284679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049612502,5.639655673,-0.559088411,0.559088411,1,0.625763439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344843128,110.17222,0.344843128,69.82778001,0,0.905006535,0,0,0,8,22,0% +2018-08-07 07:00:00,123.2452154,338.428572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151034795,5.906692865,-0.041834879,0.041834879,1,0.537307875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507317292,120.4853005,0.507317292,59.51469948,0,0.95144235,0,0,0,8,23,0% +2018-08-08 08:00:00,125.9263512,355.6483621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197829443,6.207234898,0.372260554,-0.372260554,1,0.466493386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626064511,128.7603625,0.626064511,51.23963753,0,0.970136026,0,0,0,8,0,0% +2018-08-08 09:00:00,125.0065622,13.3277794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181776097,0.232613632,0.784473243,-0.784473243,1,0.396000864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692992673,133.8674742,0.692992673,46.13252576,0,0.977849165,0,0,0,8,1,0% +2018-08-08 10:00:00,120.656688,29.70196424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10585647,0.51839707,1.286731945,-1.286731945,1,0.310109567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703540298,134.7117372,0.703540298,45.28826276,0,0.978930866,0,0,0,8,2,0% +2018-08-08 11:00:00,113.5632539,43.8176309,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98205269,0.76476193,2.057650238,-2.057650238,1,0.178274775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656987807,131.0705484,0.656987807,48.92945161,0,0.973895087,0,0,0,8,3,0% +2018-08-08 12:00:00,104.5239311,55.71074073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824286745,0.972335855,3.74063877,-3.74063877,1,0,#DIV/0!,0,0,0.098720086,1,0.261225336,0,0.930250795,0.969012758,0.724496596,1,0,0,0.016132391,0.312029739,0.955270095,0.67976669,0.961238037,0.922476074,0,0,0,0,0,0,-0.556507143,123.8145859,0.556507143,56.18541409,0,0.960153894,0,0,0,8,4,0% +2018-08-08 13:00:00,94.19318039,65.9112686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643981131,1.150368651,13.6049199,-13.6049199,1,0,#DIV/0!,0,0,0.642400519,1,0.073370879,0,0.95412351,0.992885473,0.724496596,1,0,0,0.084187137,0.312029739,0.789149856,0.513646452,0.961238037,0.922476074,0,0,0,0,0,0,-0.408946295,114.1386599,0.408946295,65.86134011,0,0.927734557,0,0,0,8,5,0% +2018-08-08 14:00:00,82.91985141,75.06233369,52.54570827,208.7838083,26.81150593,26.39915185,0,26.39915185,26.0030401,0.396111744,59.95388086,46.40509971,13.54878115,0.808465828,12.74031532,1.447224422,1.310084867,-8.019816268,8.019816268,0.098376956,0.098376956,0.510251109,0.221201123,7.11458848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.99511122,0.58573074,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.16025946,6.838813064,25.15537068,7.424543804,0,46.40509971,-0.222263882,102.8420366,0.222263882,77.15796344,0,0.825042173,25.15537068,45.71070809,55.07211491,8,6,119% +2018-08-08 15:00:00,71.36745933,83.81652944,249.9259762,568.9394882,68.15121208,67.98024916,0,67.98024916,66.09620159,1.884047578,70.89461682,8.24215985,62.65245697,2.055010495,60.59744647,1.245597144,1.462874406,-2.880050625,2.880050625,0.977328647,0.977328647,0.272685589,1.852981136,59.59824293,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.53418306,1.488848108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.342478526,57.28809803,64.87666158,58.77694614,0,8.24215985,-0.014486883,90.8300663,0.014486883,89.1699337,0,0,64.87666158,58.77694614,103.3449973,8,7,59% +2018-08-08 16:00:00,59.56687182,92.91044776,461.0876302,730.782653,90.92255283,240.9928853,149.3361096,91.65677571,88.18090239,3.475873321,114.5376847,0,114.5376847,2.741650436,111.7960342,1.039638038,1.621593223,-1.567923753,1.567923753,0.798284443,0.798284443,0.197191481,2.912993984,93.69189987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.7628375,1.986316408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.110454225,90.0602179,86.87329173,92.04653431,149.3361096,0,0.204350923,78.20849466,-0.204350923,101.7915053,0.805322857,0,207.1370742,92.04653431,267.37969,8,8,29% +2018-08-08 17:00:00,47.86896296,103.3954418,651.0622452,812.3765308,106.0969579,447.8708066,340.0650812,107.8057254,102.8977432,4.907982214,161.0567938,0,161.0567938,3.199214738,157.8575791,0.835471013,1.804590891,-0.922987302,0.922987302,0.687993814,0.687993814,0.162959776,3.626205101,116.631221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.90922467,2.317820187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.627173252,112.110366,101.5363979,114.4281861,340.0650812,0,0.41860525,65.2534376,-0.41860525,114.7465624,0.930555727,0,417.9859066,114.4281861,492.8768659,8,9,18% +2018-08-08 18:00:00,36.76987766,117.1661465,802.9020424,856.7781828,116.5831456,644.7911487,525.6708004,119.1203483,113.0677336,6.052614743,198.1883078,0,198.1883078,3.515411985,194.6728959,0.641755431,2.044935028,-0.508054017,0.508054017,0.617036043,0.617036043,0.145202203,4.071250474,130.9454101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6850063,2.546904017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949607109,125.8697089,111.6346134,128.4166129,525.6708004,0,0.613543635,52.15382576,-0.613543635,127.8461742,0.968506204,0,620.7500446,128.4166129,704.7961495,8,10,14% +2018-08-08 19:00:00,27.34505976,137.9985251,904.9604204,880.1798668,123.1351464,809.1149881,682.8708467,126.2441414,119.4221675,6.821973906,223.1311102,0,223.1311102,3.712978986,219.4181312,0.477261327,2.408528626,-0.193734463,0.193734463,0.563284234,0.563284234,0.136066886,4.248089462,136.6331598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7931298,2.690040636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.077726354,131.3369903,117.8708562,134.0270309,682.8708467,0,0.775831023,39.11956313,-0.775831023,140.8804369,0.985552977,0,790.8762518,134.0270309,878.5942631,8,11,11% +2018-08-08 20:00:00,22.10673209,170.6414778,949.765065,889.2187583,125.9177401,924.5793286,795.2987426,129.2805859,122.1208557,7.159730243,234.0784205,0,234.0784205,3.796884452,230.281536,0.385835262,2.978255629,0.075009093,-0.075009093,0.517326379,0.517326379,0.132577776,4.162081314,133.8668421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3872116,2.75082986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015413744,128.6779005,120.4026253,131.4287304,795.2987426,0,0.894379179,26.57120174,-0.894379179,153.4287983,0.9940953,0,911.0053672,131.4287304,997.0228426,8,12,9% +2018-08-08 21:00:00,24.06194827,207.6451587,934.0800266,886.1308438,124.9493811,979.8744654,851.6512794,128.223186,121.1816962,7.041489798,230.2462017,0,230.2462017,3.767684853,226.4785169,0.419960222,3.624091696,0.329975859,-0.329975859,0.473724494,0.473724494,0.133767319,3.831436256,123.2321605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4844558,2.72967485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.775862525,118.45544,119.2603183,121.1851149,851.6512794,0,0.961089759,16.03570108,-0.961089759,163.9642989,0.997975723,0,969.1876195,121.1851149,1048.500853,8,13,8% +2018-08-08 22:00:00,31.89500764,233.8594525,859.0121388,870.1666819,120.2251987,968.3587762,845.2832144,123.0755618,116.5999654,6.47559635,211.9026717,0,211.9026717,3.625233325,208.2774383,0.556672898,4.081617433,0.597793927,-0.597793927,0.427924907,0.427924907,0.139957509,3.289545391,105.8030875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0803218,2.626469203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383264437,101.7019521,114.4635863,104.3284213,845.2832144,0,0.971403792,13.73511356,-0.971403792,166.2648864,0.998528099,0,958.5026273,104.3284213,1026.783493,8,14,7% +2018-08-08 23:00:00,42.38887018,250.4120607,729.9729636,837.1342335,111.6770781,887.8385432,774.0260965,113.8124467,108.3096021,5.502844542,180.3578723,0,180.3578723,3.367475948,176.9903964,0.739825351,4.370514947,0.912745719,-0.912745719,0.374064979,0.374064979,0.152987965,2.585376709,83.15460213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1113093,2.439724861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.873096625,79.9313665,105.9844059,82.37109136,774.0260965,0,0.924614077,22.38976714,-0.924614077,157.6102329,0.995923384,0,876.8550956,82.37109136,930.7653275,8,15,6% +2018-08-08 00:00:00,53.8890885,262.1582714,556.5502581,776.4927065,98.92410951,739.9051223,639.7684288,100.1366936,95.94118262,4.195510933,137.9249805,0,137.9249805,2.982926893,134.9420536,0.940542025,4.575524997,1.340046322,-1.340046322,0.300992272,0.300992272,0.177745151,1.784088606,57.38242232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22231403,2.16112038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.292566122,55.15816698,93.51488016,57.31928736,639.7684288,0,0.823920719,34.52077918,-0.823920719,145.4792208,0.989314549,0,726.447095,57.31928736,763.9614222,8,16,5% +2018-08-08 01:00:00,65.69839468,271.7514341,352.7726105,661.7517256,80.43537528,528.17319,447.5038891,80.66930089,78.00995194,2.659348949,87.959227,0,87.959227,2.425423339,85.53380366,1.1466533,4.742957272,2.056910931,-2.056910931,0.178401204,0.178401204,0.228009128,0.972612278,31.28255419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98613305,1.757210953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704654285,30.06998098,75.69078734,31.82719193,447.5038891,0,0.676241363,47.44937646,-0.676241363,132.5506235,0.976061902,0,512.4822847,31.82719193,533.3125452,8,17,4% +2018-08-08 02:00:00,77.43458598,280.5558396,141.0704123,417.3589799,50.27225499,255.1206969,205.3008875,49.81980937,48.75636102,1.063448356,35.72004868,0,35.72004868,1.515893973,34.20415471,1.35148848,4.896623137,3.863445713,-3.863445713,0,0,0.356362856,0.378973493,12.18909025,0.115462594,1,0.253277737,0,0.931418219,0.970180182,0.724496596,1,47.08424337,1.098260023,0.018727023,0.312029739,0.948266083,0.672762679,0.961238037,0.922476074,0.267014497,11.71661719,47.35125786,12.81487721,181.5963146,0,0.491904805,60.53414407,-0.491904805,119.4658559,0.948354317,0,219.5689067,12.81487721,227.9559875,8,18,4% +2018-08-08 03:00:00,88.59179394,289.4191369,1.335319829,6.953484055,1.16443547,3.136648661,1.997259012,1.139389649,1.129323444,0.010066205,0.358875778,0,0.358875778,0.035112026,0.323763752,1.546218495,5.051316858,31.42530889,-31.42530889,0,0,0.872027393,0.008778006,0.282330861,0.828881124,1,0.031810751,0,0.958311416,0.997073379,0.724496596,1,1.089734242,0.025438543,0.101665161,0.312029739,0.752438199,0.476934794,0.961238037,0.922476074,0.006191078,0.271387163,1.095925321,0.296825706,0.341768718,0,0.287231407,73.30772319,-0.287231407,106.6922768,0.875924329,0,1.395288856,0.296825706,1.589555344,8,19,14% +2018-08-08 04:00:00,99.75342594,299.0182192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741025723,5.218852449,-3.815274963,3.815274963,1,0.817395866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061869361,86.45288133,-0.061869361,93.54711867,0,0,0,0,0,8,20,0% +2018-08-08 05:00:00,109.5246998,310.0047024,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911566623,5.410602754,-1.409823934,1.409823934,1,0.771247782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152904019,98.7952564,0.152904019,81.2047436,0,0.722997477,0,0,0,8,21,0% +2018-08-08 06:00:00,117.6987855,323.0008015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054231332,5.637427472,-0.556889238,0.556889238,1,0.625387358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.348257352,110.380764,0.348257352,69.61923603,0,0.906428013,0,0,0,8,22,0% +2018-08-08 07:00:00,123.5277751,338.361783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155966393,5.905527175,-0.04314688,0.04314688,1,0.537532241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510879958,120.7224611,0.510879958,59.27753889,0,0.952129651,0,0,0,8,23,0% +2018-08-09 08:00:00,126.2141831,355.6663308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202853058,6.207548511,0.368764039,-0.368764039,1,0.467091325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629690652,129.0273031,0.629690652,50.97269689,0,0.970595931,0,0,0,8,0,0% +2018-08-09 09:00:00,125.2817134,13.43339552,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186578391,0.234456982,0.778685804,-0.778685804,1,0.396990574,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696593009,134.1542957,0.696593009,45.84570427,0,0.978222076,0,0,0,8,1,0% +2018-08-09 10:00:00,120.9051735,29.87275674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11019336,0.521377962,1.277316892,-1.277316892,1,0.311719636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70702737,134.9935658,0.70702737,45.0064342,0,0.97928138,0,0,0,8,2,0% +2018-08-09 11:00:00,113.7804437,44.02541183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985843366,0.768388391,2.040165213,-2.040165213,1,0.18126489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660281991,131.3213825,0.660281991,48.67861746,0,0.974274778,0,0,0,8,3,0% +2018-08-09 12:00:00,104.7123316,55.93715786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827574954,0.976287579,3.694294119,-3.694294119,1,0,#DIV/0!,0,0,0.092235922,1,0.264352702,0,0.929787753,0.968549716,0.724496596,1,0,0,0.015116951,0.312029739,0.958025563,0.682522158,0.961238037,0.922476074,0,0,0,0,0,0,-0.559542126,124.0241386,0.559542126,55.97586142,0,0.960641223,0,0,0,8,4,0% +2018-08-09 13:00:00,94.35842963,66.14919976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646865274,1.154521333,13.09098042,-13.09098042,1,0,#DIV/0!,0,0,0.630796833,1,0.07624041,0,0.953819282,0.992581245,0.724496596,1,0,0,0.08301954,0.312029739,0.791689559,0.516186154,0.961238037,0.922476074,0,0,0,0,0,0,-0.411673643,114.3100139,0.411673643,65.6899861,0,0.928544568,0,0,0,8,5,0% +2018-08-09 14:00:00,83.06626314,75.31235648,50.49112158,202.3027338,26.06885788,25.66340903,0,25.66340903,25.28278563,0.380623402,58.46935923,45.44112999,13.02822924,0.786072249,12.24215699,1.449779789,1.314448588,-8.187635525,8.187635525,0.069678172,0.069678172,0.516305779,0.209346186,6.73329296,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.30277523,0.569506668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151670599,6.472297306,24.45444583,7.041803975,0,45.44112999,-0.224619456,102.9805018,0.224619456,77.01949818,0,0.827401295,24.45444583,44.63985377,53.67033732,8,6,119% +2018-08-09 15:00:00,71.50616655,84.08431206,247.4019667,566.1823803,67.80744942,67.62782516,0,67.62782516,65.76280463,1.865020528,71.39133291,9.361216981,62.03011592,2.044644783,59.98547114,1.248018042,1.467548095,-2.899878327,2.899878327,0.97393791,0.97393791,0.274078053,1.829736124,58.85060342,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.21370922,1.481338185,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.325637593,56.5694385,64.53934682,58.05077669,0,9.361216981,-0.016533925,90.94736729,0.016533925,89.05263271,0,0,64.53934682,58.05077669,102.5324191,8,7,59% +2018-08-09 16:00:00,59.70434577,93.20582458,458.711482,729.4909665,90.71091126,239.2428456,147.8092421,91.43360351,87.9756426,3.457960912,113.9551783,0,113.9551783,2.735268662,111.2199096,1.042037412,1.626748521,-1.573116979,1.573116979,0.799172537,0.799172537,0.19775156,2.900836661,93.30087858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.56553398,1.981692835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.101646286,89.68435337,86.66718027,91.6660462,147.8092421,0,0.202619702,78.30980598,-0.202619702,101.690194,0.803232289,0,205.3923361,91.6660462,265.38593,8,8,29% +2018-08-09 17:00:00,48.01587485,103.7318718,648.8487688,811.6207175,105.9356411,446.2010978,338.568511,107.6325868,102.7412907,4.891296094,160.5152466,0,160.5152466,3.194350441,157.3208961,0.838035109,1.810462701,-0.924150534,0.924150534,0.688192739,0.688192739,0.163267076,3.61515987,116.2759685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.75883656,2.31429602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.61917102,111.7688837,101.3780076,114.0831797,338.568511,0,0.417151144,65.34514248,-0.417151144,114.6548575,0.930139368,0,416.2939083,114.0831797,490.9590677,8,9,18% +2018-08-09 18:00:00,36.94271848,117.5543525,800.7871984,856.2461643,116.4437746,643.2544388,524.2852015,118.9692373,112.9325651,6.036672156,197.6713369,0,197.6713369,3.511209435,194.1601274,0.644772072,2.051710501,-0.507509407,0.507509407,0.61694291,0.61694291,0.145411633,4.060530501,130.6006189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5550772,2.543859283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941840526,125.5382825,111.4969177,128.0821418,524.2852015,0,0.612306628,52.24352529,-0.612306628,127.7564747,0.968341567,0,619.1840712,128.0821418,703.0112713,8,10,14% +2018-08-09 19:00:00,27.56803166,138.4012971,902.8583377,879.7388656,123.0033174,807.6654434,681.5650023,126.1004411,119.2943136,6.806127518,222.6174608,0,222.6174608,3.709003854,218.9084569,0.481152921,2.415558323,-0.19217842,0.19217842,0.563018135,0.563018135,0.136237671,4.237165077,136.281794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6702318,2.687160666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069811675,130.9992442,117.7400434,133.6864048,681.5650023,0,0.774735582,39.2189343,-0.774735582,140.7810657,0.985461852,0,789.3963526,133.6864048,876.8914308,8,11,11% +2018-08-09 20:00:00,22.38818948,170.8299895,947.5844301,888.7942104,125.78347,923.129122,793.9951961,129.133926,121.9906343,7.143291695,233.5456515,0,233.5456515,3.792835711,229.7528158,0.39074762,2.981545777,0.077399601,-0.077399601,0.516917578,0.516917578,0.132741174,4.150556109,133.4961519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2620378,2.747896561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007063772,128.321579,120.2691016,131.0694755,793.9951961,0,0.893339748,26.70403438,-0.893339748,153.2959656,0.994030253,0,909.5243469,131.0694755,995.3066973,8,12,9% +2018-08-09 21:00:00,24.34171516,207.4538725,931.7336843,885.6620003,124.8040024,978.3148481,850.2503448,128.0645033,121.0407012,7.023802078,229.6729202,0,229.6729202,3.763301149,225.909619,0.424843075,3.620753121,0.333293749,-0.333293749,0.473157102,0.473157102,0.133948149,3.819028955,122.833099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.348926,2.726498872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766873478,118.071847,119.1157995,120.7983458,850.2503448,0,0.960016738,16.25677921,-0.960016738,163.7432208,0.997917575,0,967.5955616,120.7983458,1046.655663,8,13,8% +2018-08-09 22:00:00,32.1338993,233.5469037,856.4251472,869.5786751,120.0595173,966.5690848,843.6737104,122.8953744,116.4392799,6.456094515,211.2704297,0,211.2704297,3.62023742,207.6501923,0.560842344,4.076162427,0.602403138,-0.602403138,0.427136686,0.427136686,0.140186819,3.276110116,105.3709629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9258648,2.622849687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.373530627,101.2865775,114.2993955,103.9094272,843.6737104,0,0.970209752,14.02034739,-0.970209752,165.9796526,0.998464752,0,956.6778576,103.9094272,1024.6845,8,14,7% +2018-08-09 23:00:00,42.59849519,250.1134833,727.0906661,836.298888,111.4786237,885.6859873,772.0877388,113.5982485,108.1171319,5.481116566,179.6530418,0,179.6530418,3.361491818,176.29155,0.743483998,4.365303788,0.919496864,-0.919496864,0.372910465,0.372910465,0.153321489,2.570954813,82.69074437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9262996,2.435389379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.86264801,79.48548879,105.7889476,81.92087817,772.0877388,0,0.923219856,22.5985629,-0.923219856,157.4014371,0.995841719,0,874.666129,81.92087817,928.2817053,8,15,6% +2018-08-09 00:00:00,54.08507306,261.892261,553.3498127,775.1329069,98.66973809,737.2275063,637.3616402,99.86586606,95.69448144,4.171384624,137.1413252,0,137.1413252,2.975256656,134.1660685,0.943962601,4.570882239,1.351054433,-1.351054433,0.299109774,0.299109774,0.178313493,1.76903399,56.89821414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.98517547,2.155563319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.281659104,54.69272766,93.26683458,56.84829098,637.3616402,0,0.822261105,34.68821626,-0.822261105,145.3117837,0.989192065,0,723.7399115,56.84829098,760.945981,8,16,5% +2018-08-09 01:00:00,65.8915628,271.5126344,349.2959247,659.1294607,80.06469057,524.7151771,444.4315922,80.28358497,77.65044475,2.633140223,87.10508677,0,87.10508677,2.414245828,84.69084095,1.15002472,4.738789432,2.078972413,-2.078972413,0.174628468,0.174628468,0.229217362,0.957983688,30.81204846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64056107,1.749112884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.694055921,29.61771297,75.33461699,31.36682586,444.4315922,0,0.674270562,47.60246922,-0.674270562,132.3975308,0.975845791,0,509.0313157,31.36682586,529.5602759,8,17,4% +2018-08-09 02:00:00,77.63207639,280.3372832,137.633987,411.153749,49.56957625,250.4162104,201.3037966,49.11241376,48.07487063,1.037543131,34.86565924,0,34.86565924,1.494705616,33.37095363,1.354935338,4.892808608,3.935959409,-3.935959409,0,0,0.360155056,0.373676404,12.01871766,0.125059614,1,0.24880337,0,0.932069562,0.970831525,0.724496596,1,46.43955433,1.082909131,0.020196805,0.312029739,0.94432194,0.668818536,0.961238037,0.922476074,0.262796483,11.55284857,46.70235081,12.6357577,176.1288216,0,0.489607105,60.68523903,-0.489607105,119.314761,0.947877299,0,213.6508624,12.6357577,221.9207131,8,18,4% +2018-08-09 03:00:00,88.78077266,289.2164644,0.957631248,5.094278154,0.849235577,2.282304747,1.451457727,0.83084702,0.823627991,0.007219029,0.257796369,0,0.257796369,0.025607586,0.232188783,1.549516795,5.047779554,36.40333407,-36.40333407,0,0,0.886808548,0.006401896,0.205906998,0.850638886,1,0.027463105,0,0.958725757,0.99748772,0.724496596,1,0.794401788,0.018552609,0.103558323,0.312029739,0.748608914,0.473105509,0.961238037,0.922476074,0.004529082,0.197925638,0.79893087,0.216478247,0.216791342,0,0.284919214,73.44598032,-0.284919214,106.5540197,0.87451166,0,0.988517427,0.216478247,1.13019811,8,19,14% +2018-08-09 04:00:00,99.97986936,298.8311932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744977906,5.21558823,-3.740975343,3.740975343,1,0.830101849,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.058887433,86.62404557,-0.058887433,93.37595443,0,0,0,0,0,8,20,0% +2018-08-09 05:00:00,109.7718538,309.8393498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915880276,5.407716807,-1.39769656,1.39769656,1,0.769173879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.156165726,98.98441077,0.156165726,81.01558923,0,0.729827313,0,0,0,8,21,0% +2018-08-09 06:00:00,117.9681668,322.8724818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058932923,5.635187871,-0.554615861,0.554615861,1,0.624998588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351737022,110.593596,0.351737022,69.40640403,0,0.907848344,0,0,0,8,22,0% +2018-08-09 07:00:00,123.8150543,338.2957404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160980362,5.904374515,-0.044400671,0.044400671,1,0.537746652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51450086,120.9640976,0.51450086,59.03590237,0,0.952818433,0,0,0,8,23,0% +2018-08-10 08:00:00,126.5063807,355.6870623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207952868,6.207910344,0.365316641,-0.365316641,1,0.467680865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633366407,129.2989289,0.633366407,50.70107106,0,0.971056754,0,0,0,8,0,0% +2018-08-10 09:00:00,125.5604629,13.5435992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191443488,0.236380399,0.772949839,-0.772949839,1,0.397971482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700233516,134.445742,0.700233516,45.554258,0,0.978595249,0,0,0,8,1,0% +2018-08-10 10:00:00,121.1563074,30.04899829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114576474,0.524453957,1.267978107,-1.267978107,1,0.313316663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710545,135.2792754,0.710545,44.72072465,0,0.97963148,0,0,0,8,2,0% +2018-08-10 11:00:00,113.9994552,44.23866473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989665838,0.772110356,2.02286005,-2.02286005,1,0.184224248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663597609,131.5748275,0.663597609,48.42517249,0,0.974653134,0,0,0,8,3,0% +2018-08-10 12:00:00,104.9019798,56.16873891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830884939,0.980329431,3.648793873,-3.648793873,1,0,#DIV/0!,0,0,0.08577849,1,0.267495035,0,0.929320419,0.968082382,0.724496596,1,0,0,0.014099755,0.312029739,0.960793892,0.685290488,0.961238037,0.922476074,0,0,0,0,0,0,-0.562590537,124.2351406,0.562590537,55.76485938,0,0.961125416,0,0,0,8,4,0% +2018-08-10 13:00:00,94.52459871,66.39198404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649765472,1.158758718,12.61179268,-12.61179268,1,0,#DIV/0!,0,0,0.61927821,1,0.079125325,0,0.953511474,0.992273438,0.724496596,1,0,0,0.081850522,0.312029739,0.794243278,0.518739874,0.961238037,0.922476074,0,0,0,0,0,0,-0.414408083,114.4820462,0.414408083,65.51795383,0,0.929345983,0,0,0,8,5,0% +2018-08-10 14:00:00,83.21338537,75.56704384,48.45144875,195.7650003,25.31750915,24.91934033,0,24.91934033,24.55409284,0.365247487,56.94507174,44.43404072,12.51103101,0.763416313,11.7476147,1.452347556,1.318893721,-8.363314845,8.363314845,0.039635239,0.039635239,0.522533584,0.197766203,6.360840894,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.602328,0.55309252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143280941,6.114282214,23.74560894,6.667374733,0,44.43404072,-0.226976429,103.1191266,0.226976429,76.88087342,0,0.829712809,23.74560894,43.53486748,52.23830901,8,6,120% +2018-08-10 15:00:00,71.64573443,84.35672247,244.8627445,563.380304,67.45905971,67.27079896,0,67.27079896,65.42492016,1.845878798,71.87260345,10.46865657,61.40394687,2.034139548,59.36980733,1.250453961,1.472302553,-2.920012191,2.920012191,0.970494816,0.970494816,0.275497442,1.806420221,58.10068383,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.88892182,1.473727178,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.308745301,55.84858727,64.19766712,57.32231444,0,10.46865657,-0.018581865,91.0647237,0.018581865,88.9352763,0,0,64.19766712,57.32231444,101.7139755,8,7,58% +2018-08-10 16:00:00,59.84294934,93.5059275,456.31302,728.1785,90.49657524,237.4891075,146.2814577,91.20764989,87.7677696,3.439880292,113.3671803,0,113.3671803,2.72880564,110.6383747,1.0444565,1.631986305,-1.578316285,1.578316285,0.800061671,0.800061671,0.198321265,2.888514583,92.9045582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36571855,1.977010397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092718983,89.30339514,86.45843753,91.28040554,146.2814577,0,0.200886812,78.41117782,-0.200886812,101.5888222,0.801103622,0,203.6450431,91.28040554,263.3862429,8,8,29% +2018-08-10 17:00:00,48.16441866,104.0731608,646.6057305,810.8510817,105.7718774,444.5213175,337.0644654,107.4568522,102.5824651,4.874387124,159.9664579,0,159.9664579,3.189412361,156.7770455,0.840627688,1.816419319,-0.925271651,0.925271651,0.688384461,0.688384461,0.163580173,3.603919966,115.9144545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.60616732,2.310718398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.611027747,111.4213827,101.2171951,113.7321011,337.0644654,0,0.415692194,65.43708518,-0.415692194,114.5629148,0.929718694,0,414.5923296,113.7321011,489.0277151,8,9,18% +2018-08-10 18:00:00,37.11798194,117.9471933,798.6341536,855.7023757,116.3017202,641.7001809,522.8849451,118.8152358,112.7947943,6.020441594,197.1450228,0,197.1450228,3.506925972,193.6380968,0.647830997,2.058566866,-0.506907826,0.506907826,0.616840033,0.616840033,0.145625778,4.049577803,130.2483425,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4226466,2.540755929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933905333,125.199661,111.3565519,127.7404169,522.8849451,0,0.611059359,52.33385902,-0.611059359,127.666141,0.968174889,0,617.6006255,127.7404169,701.2041735,8,10,14% +2018-08-10 19:00:00,27.79438866,138.8072371,900.7083433,879.286178,122.8683598,806.1889897,680.2356443,125.9533453,119.1634254,6.789919953,222.0921003,0,222.0921003,3.704934383,218.3871659,0.485103596,2.422643312,-0.190555672,0.190555672,0.562740629,0.562740629,0.136413036,4.225968143,135.9216621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5444171,2.684212348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061699534,130.6530717,117.6061166,133.337284,680.2356443,0,0.773622583,39.31968242,-0.773622583,140.6803176,0.985369002,0,787.8892343,133.337284,875.1558199,8,11,11% +2018-08-10 20:00:00,22.67370428,171.0215699,945.3457153,888.3567724,125.6455048,921.6409743,792.6577298,128.9832445,121.8568292,7.126415317,232.998689,0,232.998689,3.788675551,229.2100135,0.395730793,2.984889487,0.079868638,-0.079868638,0.516495348,0.516495348,0.132909583,4.138720924,133.1154917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1334193,2.74488254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99848922,127.9556739,120.1319085,130.7005564,792.6577298,0,0.892274089,26.83958631,-0.892274089,153.1604137,0.993963407,0,908.0046862,130.7005564,993.5455864,8,12,9% +2018-08-10 21:00:00,24.62648367,207.2682061,929.3193484,885.1776588,124.6542667,976.7050591,848.8039767,127.9010824,120.8954806,7.005601794,229.0830214,0,229.0830214,3.758786066,225.3242353,0.429813223,3.617512631,0.336708608,-0.336708608,0.472573126,0.472573126,0.134135017,3.806280338,122.4230597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2093345,2.72322771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757637148,117.6777015,118.9669716,120.4009293,848.8039767,0,0.958908043,16.48217577,-0.958908043,163.5178242,0.997857357,0,965.9522642,120.4009293,1044.752264,8,13,8% +2018-08-10 22:00:00,32.37826128,233.2367231,853.7612481,868.970364,119.8886951,964.7162445,842.0066229,122.7096216,116.2736086,6.436012919,210.6193856,0,210.6193856,3.615086501,207.0042991,0.565107265,4.070748755,0.607141389,-0.607141389,0.426326397,0.426326397,0.140424147,3.262312124,104.927172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7666153,2.619117863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363534029,100.8599889,114.1301493,103.4791067,842.0066229,0,0.968970471,14.31049517,-0.968970471,165.6895048,0.99839884,0,954.7885852,103.4791067,1022.513591,8,14,7% +2018-08-10 23:00:00,42.81338636,249.8148001,724.1243268,835.43413,111.2739909,883.4566909,770.0792664,113.3774246,107.9186695,5.458755047,178.927648,0,178.927648,3.355321384,175.5723266,0.747234556,4.360090782,0.926439385,-0.926439385,0.371723224,0.371723224,0.15366697,2.55616365,82.21500975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7355301,2.430918921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851931863,79.02819457,105.5874619,81.45911349,770.0792664,0,0.921771375,22.81356579,-0.921771375,157.1864342,0.995756615,0,872.3989851,81.45911349,925.7123457,8,15,6% +2018-08-10 00:00:00,54.28600987,261.625128,550.0609577,773.7244391,98.40745322,734.4580811,634.8713838,99.58669727,95.44010542,4.146591846,136.3359954,0,136.3359954,2.967347799,133.3686476,0.94746961,4.56621989,1.362398242,-1.362398242,0.297169869,0.297169869,0.178902814,1.753627515,56.40268893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.74065957,2.14983338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270497165,54.21640998,93.01115674,56.36624336,634.8713838,0,0.820539396,34.86117416,-0.820539396,145.1388258,0.989064474,0,720.9398878,56.36624336,757.8304667,8,16,5% +2018-08-10 01:00:00,66.08943037,271.2723223,345.7315812,656.4097358,79.68199573,521.1449432,441.259383,79.88556026,77.27928956,2.606270696,86.22933076,0,86.22933076,2.402706166,83.82662459,1.153478161,4.734595194,2.101829613,-2.101829613,0.170719657,0.170719657,0.230473581,0.943070888,30.33240153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.28379258,1.740752438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.683251648,29.1566581,74.96704423,30.89741054,441.259383,0,0.672231624,47.76046283,-0.672231624,132.2395372,0.975620875,0,505.4689096,30.89741054,525.6906468,8,17,4% +2018-08-10 02:00:00,77.83406434,280.1170685,134.1312297,404.7098262,48.84120314,245.5696089,197.1900104,48.37959853,47.36846066,1.011137866,33.99441203,0,33.99441203,1.47274248,32.52166955,1.358460693,4.888965137,4.012340153,-4.012340153,0,0,0.364129989,0.36818562,11.84211517,0.134945768,1,0.244254873,0,0.932727323,0.971489287,0.724496596,1,45.77017887,1.066996913,0.021697745,0.312029739,0.94031168,0.664808276,0.961238037,0.922476074,0.258461259,11.38309153,46.02864013,12.45008845,170.580053,0,0.48723801,60.84079492,-0.48723801,119.1592051,0.947380748,0,207.6328984,12.45008845,215.7812323,8,18,4% +2018-08-10 03:00:00,88.97183554,289.0121036,0.654468107,3.600023773,0.589869669,1.594286289,1.01726971,0.577016579,0.572082922,0.004933657,0.176470117,0,0.176470117,0.017786747,0.15868337,1.552851472,5.044212787,43.29539518,-43.29539518,0,0,0.901296278,0.004446687,0.143020731,0.872996439,1,0.023093039,0,0.959137669,0.997899632,0.724496596,1,0.551522592,0.012886438,0.105474319,0.312029739,0.744762786,0.469259382,0.961238037,0.922476074,0.003156138,0.137476966,0.55467873,0.150363404,0.129196876,0,0.282573053,73.58616722,-0.282573053,106.4138328,0.873054607,0,0.667474658,0.150363404,0.765884498,8,19,15% +2018-08-10 04:00:00,100.2108099,298.6425583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749008579,5.212295928,-3.668347988,3.668347988,1,0.842521858,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055832434,86.79937284,-0.055832434,93.20062716,0,0,0,0,0,8,20,0% +2018-08-10 05:00:00,110.0235799,309.6726698,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920273724,5.404807691,-1.385535169,1.385535169,1,0.767094158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159497107,99.17770776,0.159497107,80.82229224,0,0.736514691,0,0,0,8,21,0% +2018-08-10 06:00:00,118.242211,322.7435368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063715897,5.632937356,-0.552271256,0.552271256,1,0.624597637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35528073,110.8106507,0.35528073,69.18934933,0,0.90926622,0,0,0,8,22,0% +2018-08-10 07:00:00,124.106969,338.2304759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166075234,5.903235434,-0.045596312,0.045596312,1,0.537951118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518178311,121.2101353,0.518178311,58.78986466,0,0.953508119,0,0,0,8,23,0% +2018-08-11 08:00:00,126.8028521,355.7106049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213127271,6.208321239,0.361919698,-0.361919698,1,0.468261776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637089878,129.5751597,0.637089878,50.42484029,0,0.971518138,0,0,0,8,0,0% +2018-08-11 09:00:00,125.8427086,13.65844205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196369604,0.238384785,0.767267757,-0.767267757,1,0.398943175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703912173,134.741727,0.703912173,45.25827297,0,0.978968411,0,0,0,8,1,0% +2018-08-11 10:00:00,121.409983,30.23071479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119003949,0.527625508,1.258719227,-1.258719227,1,0.314900024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714091137,135.568764,0.714091137,44.431236,0,0.979980926,0,0,0,8,2,0% +2018-08-11 11:00:00,114.2201879,44.45737988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99351835,0.775927656,2.005739802,-2.005739802,1,0.187151982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666932677,131.8307665,0.666932677,48.16923354,0,0.975029914,0,0,0,8,3,0% +2018-08-11 12:00:00,105.0927886,56.40544584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834215182,0.984460746,3.60413397,-3.60413397,1,0,#DIV/0!,0,0,0.07935035,1,0.270651036,0,0.928848962,0.967610925,0.724496596,1,0,0,0.013081234,0.312029739,0.963573946,0.688070542,0.961238037,0.922476074,0,0,0,0,0,0,-0.565650549,124.4474788,0.565650549,55.55252117,0,0.961606203,0,0,0,8,4,0% +2018-08-11 13:00:00,94.69161693,66.63956406,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652680489,1.163079805,12.16411513,-12.16411513,1,0,#DIV/0!,0,0,0.607848137,1,0.08202457,0,0.953200172,0.991962135,0.724496596,1,0,0,0.080680536,0.312029739,0.796810052,0.521306648,0.961238037,0.922476074,0,0,0,0,0,0,-0.417148025,114.6546609,0.417148025,65.34533914,0,0.930138471,0,0,0,8,5,0% +2018-08-11 14:00:00,83.36115972,75.82632381,46.4287932,189.1768277,24.55796134,24.16744805,0,24.16744805,23.8174482,0.349999855,55.38228527,43.38457368,11.99771159,0.740513144,11.25719844,1.454926705,1.32341901,-8.547348603,8.547348603,0.008163613,0.008163613,0.528938179,0.186474234,5.997652356,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.89423715,0.536499252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135099948,5.765171576,23.0293371,6.301670828,0,43.38457368,-0.229333445,103.2578321,0.229333445,76.74216792,0,0.831976851,23.0293371,42.39663181,50.77708469,8,6,120% +2018-08-11 15:00:00,71.78612478,84.63367382,242.3090828,560.5331563,67.10605785,66.90919083,0,66.90919083,65.08256261,1.826628218,72.33780264,11.56366493,60.77413772,2.023495239,58.75064248,1.252904235,1.477136266,-2.940452937,2.940452937,0.966999243,0.966999243,0.276944046,1.783042322,57.34877026,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.55983471,1.466015412,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.291808093,55.12581934,63.85164281,56.59183475,0,11.56366493,-0.020629761,91.18208208,0.020629761,88.81791792,0,0,63.85164281,56.59183475,100.8898668,8,7,58% +2018-08-11 16:00:00,59.98265912,93.81064888,453.8926048,726.8451209,90.27954952,235.7321839,144.7532617,90.97892218,87.557288,3.42163418,112.7737785,0,112.7737785,2.722261514,110.051517,1.046894896,1.637304696,-1.583519698,1.583519698,0.800951507,0.800951507,0.198900684,2.876028565,92.50296492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.16339563,1.9722692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083672905,88.9173684,86.24706854,90.8896376,144.7532617,0,0.199152828,78.51257687,-0.199152828,101.4874231,0.798936531,0,201.8957373,90.8896376,261.3811873,8,8,29% +2018-08-11 17:00:00,48.31458304,104.4191658,644.3331561,810.0674555,105.6056547,442.8316288,335.5531187,107.2785101,102.4212546,4.857255498,159.4104337,0,159.4104337,3.184400133,156.2260335,0.843248551,1.822458245,-0.926349516,0.926349516,0.688568787,0.688568787,0.163899147,3.592484925,115.5466643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45120568,2.307087056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.602743099,111.0678487,101.0539488,113.3749358,335.5531187,0,0.414228613,65.52925203,-0.414228613,114.470748,0.929293708,0,412.8813506,113.3749358,487.0829786,8,9,18% +2018-08-11 18:00:00,37.29566045,118.3444622,796.4426672,855.1466265,116.1569566,640.1281912,521.4698742,118.658317,112.6543958,6.003921244,196.6093064,0,196.6093064,3.502560815,193.1067455,0.650932071,2.065500516,-0.50624864,0.50624864,0.616727306,0.616727306,0.145844719,4.038391153,129.8885414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2876902,2.537593387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925800643,124.8538065,111.2134909,127.3913999,521.4698742,0,0.609801709,52.42483339,-0.609801709,127.5751666,0.968006133,0,615.9995275,127.3913999,699.3746509,8,10,14% +2018-08-11 19:00:00,28.02410338,139.2160698,898.5100142,878.8215944,122.7302378,804.6851413,678.882325,125.8028163,119.0294683,6.773348019,221.554925,0,221.554925,3.700769496,217.8541555,0.489112874,2.42977879,-0.188865827,0.188865827,0.562451648,0.562451648,0.136593066,4.214497156,135.5527158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4156524,2.681194902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053388843,130.2984264,117.4690413,132.9796213,678.882325,0,0.772491629,39.42183476,-0.772491629,140.5781652,0.98527438,0,786.3544028,132.9796213,873.3869054,8,11,11% +2018-08-11 20:00:00,22.96320445,171.2160056,943.0484121,887.9062106,125.503803,920.1141727,791.2856752,128.8284976,121.7194003,7.109097275,232.4374085,0,232.4374085,3.784402721,228.6530057,0.400783524,2.98828303,0.082416525,-0.082416525,0.516059634,0.516059634,0.133083097,4.126574445,132.7248192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0013174,2.741786888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989689138,127.5801446,119.9910065,130.3219315,791.2856752,0,0.891181597,26.97789654,-0.891181597,153.0221035,0.993894712,0,906.4456549,130.3219315,991.7387527,8,12,9% +2018-08-11 21:00:00,24.91615766,207.0881608,926.8365285,884.6775445,124.5001303,975.0442513,847.3113741,127.7328772,120.745992,6.986885249,228.4763851,0,228.4763851,3.754138284,224.7222469,0.434868988,3.614370248,0.34022087,-0.34022087,0.471972494,0.471972494,0.134328036,3.793189727,122.0020206,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0656403,2.719860407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748153045,117.2729828,118.8137933,119.9928432,847.3113741,0,0.957762949,16.7118685,-0.957762949,163.2881315,0.997795015,0,964.2568589,119.9928432,1042.789775,8,13,8% +2018-08-11 22:00:00,32.62802303,232.9290994,851.0200732,868.3413944,119.7126878,962.7993724,840.281115,122.5182574,116.1029086,6.415348784,209.9494487,0,209.9494487,3.60977923,206.3396695,0.56946643,4.065379708,0.612009536,-0.612009536,0.425493895,0.425493895,0.140669641,3.248151793,104.4717271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6025319,2.615272764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353274917,100.4221979,113.9558068,103.0374706,840.281115,0,0.967685199,14.60544777,-0.967685199,165.3945522,0.998330304,0,952.8339079,103.0374706,1020.269872,8,14,7% +2018-08-11 23:00:00,43.03349546,249.5161931,721.0737993,834.5394322,111.0631318,881.1498212,767.9998937,113.1499275,107.7141686,5.435758882,178.1816541,0,178.1816541,3.348963204,174.8326909,0.751076184,4.354879107,0.933575369,-0.933575369,0.370502899,0.370502899,0.154024639,2.54100508,81.72745803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.538956,2.426312441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.840949531,78.55954131,105.3799055,80.98585375,767.9998937,0,0.920267951,23.03471391,-0.920267951,156.9652861,0.995667998,0,870.0528223,80.98585375,923.0564438,8,15,6% +2018-08-11 00:00:00,54.49185727,261.3570145,546.6838712,772.2663291,98.13718458,731.596094,632.2969736,99.29912032,95.17798638,4.121133941,135.5090321,0,135.5090321,2.959198203,132.5498338,0.951062325,4.561540427,1.374083901,-1.374083901,0.295171503,0.295171503,0.17951359,1.737873106,55.89597298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48870078,2.143929024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.259083149,53.72933534,92.74778393,55.87326436,632.2969736,0,0.818755072,35.03963487,-0.818755072,144.9603651,0.988931676,0,718.0462898,55.87326436,754.6142238,8,16,5% +2018-08-11 01:00:00,66.29195345,271.0306073,342.0802587,653.5901388,79.28711003,517.4616738,437.9866172,79.47505661,76.89631112,2.578745485,85.33211809,0,85.33211809,2.390798906,82.94131918,1.157012855,4.730376471,2.125508064,-2.125508064,0.166670403,0.166670403,0.231779262,0.927881422,29.84385609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91565914,1.732125669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.672246931,28.68704964,74.58790607,30.41917531,437.9866172,0,0.670124274,47.92334295,-0.670124274,132.0766571,0.975386974,0,501.7943472,30.41917531,521.7030891,8,17,4% +2018-08-11 02:00:00,78.04049679,279.8952813,130.5645248,398.0210993,48.08648039,240.5804205,192.9596744,47.62074613,46.63649559,0.984250539,33.10686547,0,33.10686547,1.449984804,31.65688066,1.362063619,4.88509422,4.092844136,-4.092844136,0,0,0.368296675,0.362496201,11.6591239,0.145126621,1,0.239634052,0,0.933391016,0.972152979,0.724496596,1,45.07545954,1.050509055,0.023229682,0.312029739,0.936236836,0.660733432,0.961238037,0.922476074,0.254007,11.20719337,45.32946654,12.25770242,164.9560888,0,0.484797602,61.00078732,-0.484797602,118.9992127,0.946864176,0,201.5204777,12.25770242,209.5428988,8,18,4% +2018-08-11 03:00:00,89.16464986,288.8061217,0.420473168,2.442933827,0.384857407,1.060927226,0.684504986,0.37642224,0.373252536,0.003169704,0.113553459,0,0.113553459,0.011604871,0.101948588,1.556216716,5.040617723,53.44558449,-53.44558449,0,0,0.915295995,0.002901218,0.093313134,0.895937174,1,0.018708437,0,0.959546343,0.998308306,0.724496596,1,0.359658687,0.008407689,0.107410058,0.312029739,0.740907026,0.465403622,0.961238037,0.922476074,0.002066356,0.089696134,0.361725043,0.098103823,0.071231523,0,0.280197923,73.72798225,-0.280197923,106.2720178,0.871554709,0,0.423807212,0.098103823,0.488014202,8,19,15% +2018-08-11 04:00:00,100.4461821,298.4523648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753116598,5.208976427,-3.597390864,3.597390864,1,0.854656241,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.052705099,86.97882047,-0.052705099,93.02117953,0,0,0,0,0,8,20,0% +2018-08-11 05:00:00,110.2798049,309.5046979,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924745694,5.401876029,-1.373350955,1.373350955,1,0.765010535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162897071,99.37509278,0.162897071,80.62490722,0,0.74305771,0,0,0,8,21,0% +2018-08-11 06:00:00,118.5208395,322.6139924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068578881,5.63067638,-0.549858383,0.549858383,1,0.624185011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358887057,111.0318621,0.358887057,68.96813792,0,0.910680403,0,0,0,8,22,0% +2018-08-11 07:00:00,124.4034354,338.1660196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171249549,5.902110461,-0.046733965,0.046733965,1,0.538145668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.521910613,121.4604991,0.521910613,58.53950086,0,0.954198154,0,0,0,8,23,0% +2018-08-12 08:00:00,127.103506,355.7370064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21837467,6.208782033,0.358574392,-0.358574392,1,0.468833857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640859166,129.8559153,0.640859166,50.14408475,0,0.971979738,0,0,0,8,0,0% +2018-08-12 09:00:00,126.1283487,13.7779759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201354965,0.240471044,0.761641741,-0.761641741,1,0.399905281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707626965,135.0421652,0.707626965,44.95783475,0,0.979341302,0,0,0,8,1,0% +2018-08-12 10:00:00,121.6660944,30.41793177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123473935,0.530893061,1.249543533,-1.249543533,1,0.31646916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717663744,135.8619301,0.717663744,44.13806985,0,0.980329489,0,0,0,8,2,0% +2018-08-12 11:00:00,114.4425423,44.68154672,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997399168,0.779840105,1.988808845,-1.988808845,1,0.190047347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670285231,132.0890829,0.670285231,47.91091712,0,0.975404891,0,0,0,8,3,0% +2018-08-12 12:00:00,105.2846726,56.64723978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837564189,0.988680846,3.560308742,-3.560308742,1,0,#DIV/0!,0,0,0.072953862,1,0.273819459,0,0.928373547,0.96713551,0.724496596,1,0,0,0.012061797,0.312029739,0.966364632,0.690861228,0.961238037,0.922476074,0,0,0,0,0,0,-0.568720364,124.661041,0.568720364,55.338959,0,0.962083331,0,0,0,8,4,0% +2018-08-12 13:00:00,94.85941546,66.8918819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655609126,1.167483582,11.74508618,-11.74508618,1,0,#DIV/0!,0,0,0.596509702,1,0.084937143,0,0.952885456,0.991647419,0.724496596,1,0,0,0.079510012,0.312029739,0.799388959,0.523885554,0.961238037,0.922476074,0,0,0,0,0,0,-0.419891914,114.8277638,0.419891914,65.17223625,0,0.930921736,0,0,0,8,5,0% +2018-08-12 14:00:00,83.5095295,76.09012418,44.42525676,182.5448594,23.79075821,23.40827542,0,23.40827542,23.07337907,0.334896351,53.78246584,42.29366886,11.48879698,0.717379139,10.77141784,1.457516247,1.328023195,-8.740277042,8.740277042,0,0,0.535523257,0.179344785,5.768344768,1,0.024227545,0,0.113917501,0.961238037,1,0.452662799,0.728166203,22.1790096,0.517582902,0.115824807,0.004190835,0.724496596,0.448993192,0.999628395,0.960866432,0.129934686,5.54802595,22.30894429,6.065608852,0,41.2689971,-0.23168918,103.3965413,0.23168918,76.60345872,0,0.834193634,22.30894429,40.49194353,48.81011149,8,6,119% +2018-08-12 15:00:00,71.9273014,84.91507934,239.7417219,557.6408039,66.74845431,66.5430165,0,66.5430165,64.73574214,1.807274367,72.78632704,12.64545875,60.14086829,2.012712173,58.12815611,1.255368231,1.482047719,-2.961201621,2.961201621,0.963451009,0.963451009,0.278418182,1.759610962,56.59513718,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.22645768,1.458203118,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.274832152,54.40139855,63.50128984,55.85960167,0,12.64545875,-0.02267671,91.29939115,0.02267671,88.70060885,0,0,63.50128984,55.85960167,100.0602819,8,7,58% +2018-08-12 16:00:00,60.1234536,94.1198814,451.4505673,725.4906768,90.05983585,233.9725514,143.2251268,90.74742458,87.34419951,3.40322507,112.1750531,0,112.1750531,2.715636336,109.4594168,1.049352223,1.642701822,-1.588725355,1.588725355,0.801841726,0.801841726,0.199489916,2.863379318,92.09612166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95856687,1.967469281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.074508568,88.52629518,86.03307544,90.49376447,143.2251268,0,0.197418287,78.61397205,-0.197418287,101.3860279,0.796730657,0,200.1449247,90.49376447,259.3712837,8,8,30% +2018-08-12 17:00:00,48.46635821,104.769744,642.0310486,809.2696588,105.4369589,441.1321612,334.0346144,107.0975468,102.2576456,4.83990124,158.8471742,0,158.8471742,3.179313332,155.6678609,0.845897527,1.828576989,-0.927383061,0.927383061,0.688745533,0.688745533,0.164224081,3.580854229,115.1725811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.29393849,2.303401686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5943167,110.7082658,100.8882552,113.0116675,334.0346144,0,0.412760581,65.62163145,-0.412760581,114.3783685,0.928864401,0,411.1611174,113.0116675,485.1249935,8,9,18% +2018-08-12 18:00:00,37.47574742,118.7459544,794.2124848,854.5787177,116.0094565,638.538259,520.0398064,118.4984526,112.5113434,5.987109187,196.0641252,0,196.0641252,3.498113144,192.566012,0.654075182,2.072507877,-0.50553126,0.50553126,0.616604627,0.616604627,0.146068538,4.026969324,129.5211761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1501828,2.534371065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.917525567,124.500681,111.0677084,127.0350521,520.0398064,0,0.608533533,52.51645677,-0.608533533,127.4835432,0.967835259,0,614.3805693,127.0350521,697.5224702,8,10,14% +2018-08-12 19:00:00,28.25714879,139.6275263,896.2629247,878.3448997,122.5889152,803.1533948,677.5045792,125.6488156,118.8924071,6.756408509,221.0058308,0,221.0058308,3.696508098,217.3093227,0.493180284,2.43696006,-0.187108523,0.187108523,0.562151132,0.562151132,0.136777849,4.202750661,135.1749081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.283904,2.678107534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044878547,129.9352633,117.3287825,132.6133708,677.5045792,0,0.771342305,39.52541988,-0.771342305,140.4745801,0.985177936,0,784.7913457,132.6133708,871.5841446,8,11,11% +2018-08-12 20:00:00,23.25661897,171.4130872,940.6920212,887.4422865,125.3583233,918.5479977,789.8783566,128.6696411,121.5783073,7.091333806,231.8616875,0,231.8616875,3.78001597,228.0816715,0.405904574,2.991722753,0.085043572,-0.085043572,0.515610382,0.515610382,0.133261812,4.114115457,132.3240953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8656934,2.738608702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980662643,127.1949536,119.8463561,129.9335623,789.8783566,0,0.890061662,27.11900366,-0.890061662,152.8809963,0.993824117,0,904.8465162,129.9335623,989.885434,8,12,9% +2018-08-12 21:00:00,25.21064081,206.9137226,924.2847553,884.1613783,124.3415499,973.3315835,845.7717412,127.5598423,120.5921934,6.967648905,227.8528964,0,227.8528964,3.749356501,224.1035399,0.440008689,3.611325727,0.343830966,-0.343830966,0.471355132,0.471355132,0.134527319,3.779756585,121.5699646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9178033,2.716396022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738420779,116.8576741,118.656224,119.5740701,845.7717412,0,0.956580735,16.9458329,-0.956580735,163.0541671,0.997730497,0,962.5084833,119.5740701,1040.767321,8,13,8% +2018-08-12 22:00:00,32.88311129,232.6242059,848.2012863,867.6914068,119.5314522,960.8176042,838.4963668,122.3212374,115.9271379,6.394099578,209.2605363,0,209.2605363,3.604314307,205.656222,0.57391856,4.060058313,0.617008459,-0.617008459,0.424639029,0.424639029,0.140923451,3.23362968,104.004646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4335744,2.611313446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.342753696,99.97322178,113.7763281,102.5845352,838.4963668,0,0.966353199,14.90509744,-0.966353199,165.0949026,0.998259084,0,950.8129429,102.5845352,1017.95247,8,14,7% +2018-08-12 23:00:00,43.25877108,249.2178358,717.9389796,833.6142577,110.8459998,878.7645745,765.8488634,112.9157112,107.5035839,5.412127287,177.4150335,0,177.4150335,3.342415871,174.0726176,0.755007986,4.34967179,0.940906981,-0.940906981,0.369249119,0.369249119,0.154394737,2.525481173,81.2281558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3365339,2.42156892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.829702513,78.07959302,105.1662364,80.50116194,765.8488634,0,0.918708931,23.26193968,-0.918708931,156.7380603,0.995575798,0,867.6268301,80.50116194,920.3132306,8,15,6% +2018-08-12 00:00:00,54.70257059,261.0880572,543.218782,770.7575775,97.858862,728.6408287,629.6377598,99.00306889,94.90805625,4.095012635,134.6604886,0,134.6604886,2.95080575,131.7096829,0.954739966,4.556846235,1.386117836,-1.386117836,0.293113579,0.293113579,0.180146315,1.721774939,55.37820059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22923367,2.137848721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247420082,53.23163282,92.47665376,55.36948154,629.6377598,0,0.816907648,35.22357516,-0.816907648,144.7764248,0.988793571,0,715.0584226,55.36948154,751.2966409,8,16,5% +2018-08-12 01:00:00,66.49908545,270.787595,338.3426994,650.6681719,78.87984726,513.6645855,434.6126865,79.05189902,76.50132883,2.550570185,84.41362311,0,84.41362311,2.378518431,82.03510468,1.160627991,4.726135106,2.150034785,-2.150034785,0.162476087,0.162476087,0.233135952,0.912423179,29.34666587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.53598714,1.723228506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.661047487,28.20913149,74.19703463,29.93236,434.6126865,0,0.66794828,48.09109108,-0.66794828,131.9089089,0.975143905,0,498.0069468,29.93236,517.5970778,8,17,4% +2018-08-12 02:00:00,78.25131806,279.6720038,126.9364277,391.0814063,47.30473343,235.4483147,188.6130931,46.83522159,45.87832118,0.95690041,32.20361877,0,32.20361877,1.426412249,30.77720652,1.365743144,4.881197293,4.177752495,-4.177752495,0,0,0.37266476,0.356603062,11.4695803,0.155607991,1,0.234942729,0,0.934060153,0.972822116,0.724496596,1,44.35472253,1.033430819,0.024792459,0.312029739,0.932098957,0.656595552,0.961238037,0.922476074,0.249431747,11.02499685,44.60415428,12.05842767,159.2633886,0,0.482286015,61.16518799,-0.482286015,118.834812,0.946327079,0,195.3194116,12.05842767,203.2114113,8,18,4% +2018-08-12 03:00:00,89.35889449,288.5985822,0.248251064,1.584097852,0.230526327,0.665506805,0.440060276,0.225446529,0.223575107,0.001871421,0.067142564,0,0.067142564,0.006951219,0.060191345,1.559606925,5.036995477,69.84316882,-69.84316882,0,0,0.928601564,0.001737805,0.055893777,0.919444045,1,0.014316814,0,0.959951035,0.998712998,0.724496596,1,0.21531927,0.005036135,0.10936252,0.312029739,0.737048511,0.461545106,0.961238037,0.922476074,0.001242279,0.053727224,0.216561549,0.058763359,0.035449476,0,0.27779867,73.87113372,-0.27779867,106.1288663,0.870013537,0,0.247403073,0.058763359,0.285862516,8,19,16% +2018-08-12 04:00:00,100.6859186,298.2606601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75730079,5.205630548,-3.528097013,3.528097013,1,0.866506187,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049506211,87.1623431,-0.049506211,92.8376569,0,0,0,0,0,8,20,0% +2018-08-12 05:00:00,110.5404545,309.3354663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929294887,5.398922381,-1.36115465,1.36115465,1,0.762924844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.166364477,99.5765089,0.166364477,80.4234911,0,0.749455071,0,0,0,8,21,0% +2018-08-12 06:00:00,118.8039725,322.4838709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073520484,5.628405331,-0.547380255,0.547380255,1,0.623761226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36255454,111.2571622,0.36255454,68.74283779,0,0.912089715,0,0,0,8,22,0% +2018-08-12 07:00:00,124.7043697,338.1023986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176501843,5.901000064,-0.047813943,0.047813943,1,0.538330355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525696044,121.7151124,0.525696044,58.28488761,0,0.954888004,0,0,0,8,23,0% +2018-08-13 08:00:00,127.4082512,355.7663125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223693478,6.209293522,0.355281706,-0.355281706,1,0.46939694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644672359,130.1411145,0.644672359,49.85888547,0,0.972441223,0,0,0,8,0,0% +2018-08-13 09:00:00,126.4172824,13.90225054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20639781,0.242640045,0.756073706,-0.756073706,1,0.400857471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711375878,135.3469711,0.711375878,44.65302895,0,0.97971367,0,0,0,8,1,0% +2018-08-13 10:00:00,121.924537,30.61067237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127984609,0.534257019,1.240453901,-1.240453901,1,0.318023579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721260798,136.1586726,0.721260798,43.84132739,0,0.980676948,0,0,0,8,2,0% +2018-08-13 11:00:00,114.6664213,44.91115209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001306593,0.783847475,1.972070797,-1.972070797,1,0.192909721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673653337,132.3496612,0.673653337,47.65033878,0,0.975777849,0,0,0,8,3,0% +2018-08-13 12:00:00,105.477549,56.89407953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840930517,0.992989013,3.517310804,-3.517310804,1,0,#DIV/0!,0,0,0.066591145,1,0.276999131,0,0.927894331,0.966656295,0.724496596,1,0,0,0.011041822,0.312029739,0.969164928,0.693661524,0.961238037,0.922476074,0,0,0,0,0,0,-0.571798225,124.8757169,0.571798225,55.12428312,0,0.962556567,0,0,0,8,4,0% +2018-08-13 13:00:00,95.02792853,67.14887777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658550234,1.171969006,11.35216797,-11.35216797,1,0,#DIV/0!,0,0,0.585265541,1,0.087862109,0,0.952567404,0.991329367,0.724496596,1,0,0,0.078339341,0.312029739,0.801979139,0.526475734,0.961238037,0.922476074,0,0,0,0,0,0,-0.422638247,115.0012635,0.422638247,64.99873653,0,0.931695515,0,0,0,8,5,0% +2018-08-13 14:00:00,83.65844091,76.35837123,42.44292358,175.8761292,23.0164827,22.64240351,0,22.64240351,22.32245083,0.319952686,52.14727511,41.16246503,10.98481009,0.694031875,10.29077821,1.460115241,1.332704989,-8.942693368,8.942693368,0,0,0.542292584,0.173507969,5.580612707,1,0.056108964,0,0.111360506,0.961238037,1,0.457628408,0.733131812,21.45718881,0.498088356,0.115824807,0.009854682,0.724496596,0.448993192,0.999119429,0.960357466,0.125705933,5.371520316,21.58289474,5.869608672,0,38.85288176,-0.234042364,103.5351801,0.234042364,76.46481986,0,0.836363464,21.58289474,38.36473943,46.69184941,8,6,116% +2018-08-13 15:00:00,72.06923131,85.20085099,237.161347,554.703056,66.38625186,66.17228384,0,66.17228384,64.38446143,1.787822411,73.21760217,13.7132974,59.50430477,2.001790433,57.50251434,1.257845376,1.487035375,-2.982259893,2.982259893,0.959849832,0.959849832,0.279920201,1.736134097,55.84004048,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.88879331,1.450290354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.257823243,53.67557089,63.14661655,55.12586124,0,13.7132974,-0.024721871,91.41660319,0.024721871,88.58339681,0,0,63.14661655,55.12586124,99.22539021,8,7,57% +2018-08-13 16:00:00,60.26531435,94.4335166,448.9871873,724.114983,89.83743105,232.2106295,141.6974734,90.51315611,87.12850104,3.384655071,111.5710718,0,111.5710718,2.708930011,108.8621417,1.05182816,1.648175789,-1.59393161,1.59393161,0.802732049,0.802732049,0.200089075,2.850567367,91.68404528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.75122929,1.962610571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065226354,88.13019169,85.81645564,90.09280227,141.6974734,0,0.195683664,78.71533587,-0.195683664,101.2846641,0.79448557,0,198.3930535,90.09280227,257.3569907,8,8,30% +2018-08-13 17:00:00,48.61973711,105.1247519,639.699371,808.4574929,105.2657726,439.4229896,332.5090444,106.9139452,102.0916212,4.822324069,158.2766701,0,158.2766701,3.174151433,155.1025187,0.848574494,1.834773046,-0.928371342,0.928371342,0.688914539,0.688914539,0.164555067,3.569027255,114.792185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1343495,2.299661908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.585748097,110.3426145,100.7200976,112.6422764,332.5090444,0,0.411288221,65.71421542,-0.411288221,114.2857846,0.928430751,0,409.4317195,112.6422764,483.1538366,8,9,18% +2018-08-13 18:00:00,37.65823814,119.1514647,791.9433271,853.9984391,115.8591908,636.9301275,518.5945154,118.3356121,112.3656087,5.970003318,195.5094105,0,195.5094105,3.493582078,192.0158284,0.657260246,2.079585367,-0.504755183,0.504755183,0.61647191,0.61647191,0.146297326,4.015311061,129.1462063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0100972,2.531088323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.909079195,124.1402458,110.9191764,126.6713341,518.5945154,0,0.607254641,52.60874075,-0.607254641,127.3912592,0.967662218,0,612.7434956,126.6713341,695.6473503,8,10,14% +2018-08-13 19:00:00,28.49349872,140.0413403,893.9666416,877.8558716,122.4443548,801.5932148,676.1019109,125.4913039,118.7522057,6.739098158,220.4447113,0,220.4447113,3.692149069,216.7525622,0.497305368,2.444182478,-0.185283461,0.185283461,0.561839028,0.561839028,0.136967476,4.190727262,134.7881943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1491371,2.674949432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036167636,129.5635393,117.1853048,132.2384887,676.1019109,0,0.770174163,39.6304689,-0.770174163,140.3695311,0.985079619,0,783.1995177,132.2384887,869.7469637,8,11,11% +2018-08-13 20:00:00,23.55387758,171.6126055,938.2760552,886.9647579,125.2090244,916.9417163,788.4350848,128.5066315,121.4335103,7.073121233,231.2714066,0,231.2714066,3.775514057,227.4958926,0.411092715,2.995205004,0.087750038,-0.087750038,0.515147549,0.515147549,0.133445827,4.101342881,131.9132853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7265091,2.735347082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971408956,126.8000674,119.697918,129.5354145,788.4350848,0,0.888913655,27.26294688,-0.888913655,152.7370531,0.993751567,0,903.2065191,129.5354145,987.9848572,8,12,9% +2018-08-13 21:00:00,25.50983574,206.7448599,921.6635908,883.6288785,124.1784838,971.5662214,844.1842876,127.3819338,120.4340443,6.94788946,227.2124477,0,227.2124477,3.744439456,223.4680082,0.445230625,3.608378517,0.347539294,-0.347539294,0.47072097,0.47072097,0.134732982,3.765980587,121.1268812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7657843,2.712833639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728440116,116.4317655,118.4942245,119.1445991,844.1842876,0,0.955360681,17.18404279,-0.955360681,162.8159572,0.997663745,0,960.7062825,119.1445991,1038.68404,8,13,8% +2018-08-13 22:00:00,33.14344882,232.3221992,845.3046007,867.0200399,119.3449471,958.7701037,836.6515839,122.1185198,115.7462567,6.372263138,208.5525775,0,208.5525775,3.598690493,204.953887,0.578462307,4.054787301,0.622139019,-0.622139019,0.423761651,0.423761651,0.14118573,3.218746617,103.5259556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2597045,2.607239011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331970967,99.5130863,113.5916755,102.1203253,836.6515839,0,0.964973755,15.20933689,-0.964973755,164.7906631,0.998185119,0,948.7248366,102.1203253,1015.560547,8,14,7% +2018-08-13 23:00:00,43.48915711,248.919892,714.7198288,832.658066,110.6225508,876.3001952,763.6254625,112.6747327,107.2868727,5.387859968,176.6277753,0,176.6277753,3.33567806,173.2920972,0.75902898,4.34447169,0.948436415,-0.948436415,0.36796151,0.36796151,0.154777503,2.509594322,80.71718007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.1282229,2.416687399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818192543,77.58842371,104.9464155,80.00511111,763.6254625,0,0.917093695,23.49516861,-0.917093695,156.5048314,0.995479944,0,865.1202478,80.00511111,917.4819929,8,15,6% +2018-08-13 00:00:00,54.91810059,260.8183864,539.6659975,769.1971708,97.57241763,725.5916311,626.8931516,98.69847948,94.63024923,4.068230245,133.7904375,0,133.7904375,2.942168395,130.8482691,0.958501674,4.552139592,1.398506686,-1.398506686,0.290994961,0.290994961,0.180801492,1.705337556,54.84951787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.962195,2.131590987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235511254,52.72344288,92.19770625,54.85503387,626.8931516,0,0.814996695,35.41296495,-0.814996695,144.587035,0.988650058,0,711.9756569,54.85503387,747.8771795,8,16,5% +2018-08-13 01:00:00,66.71077545,270.5433863,334.51974,647.6412725,78.46001868,509.7529598,431.137049,78.61591073,76.09415963,2.521751102,83.47404294,0,83.47404294,2.36585905,81.10818389,1.164322678,4.72187286,2.175438198,-2.175438198,0.158131847,0.158131847,0.234545258,0.896704507,28.84109936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.14460062,1.714056828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.649659363,27.72316173,73.79425998,29.43721855,431.137049,0,0.66570348,48.26368287,-0.66570348,131.7363171,0.974891485,0,494.1060978,29.43721855,513.3721686,8,17,4% +2018-08-13 02:00:00,78.46646813,279.4473145,123.2497027,383.8846253,46.49527594,230.1731661,184.150786,46.02238014,45.09327182,0.929108319,31.28532146,0,31.28532146,1.402004119,29.88331734,1.369498221,4.877275724,4.267373729,-4.267373729,0,0,0.377244528,0.35050103,11.27331795,0.166395883,1,0.230182775,0,0.934734241,0.973496204,0.724496596,1,43.60728494,1.015747211,0.026385905,0.312029739,0.927899634,0.652396229,0.961238037,0.922476074,0.24473344,10.83634202,43.85201838,11.85208923,153.5088534,0,0.479703468,61.33396318,-0.479703468,118.6660368,0.945768942,0,189.0359243,11.85208923,196.7928796,8,18,4% +2018-08-13 03:00:00,89.55430239,288.3895452,0.128758392,0.976472315,0.121162597,0.387379986,0.268900254,0.118479733,0.117509098,0.000970635,0.034872462,0,0.034872462,0.003653499,0.031218963,1.563017436,5.033347092,100.7587061,-100.7587061,0,0,0.94100738,0.000913375,0.029377274,0.94350474,1,0.009924375,0,0.960351155,0.999113118,0.724496596,1,0.113107327,0.002646948,0.111329189,0.312029739,0.733192956,0.457689551,0.961238037,0.922476074,0.000655464,0.028238554,0.113762791,0.030885501,0.01519159,0,0.275379291,74.01538131,-0.275379291,105.9846187,0.868432244,0,0.126955657,0.030885501,0.1471696,8,19,16% +2018-08-13 04:00:00,100.929949,298.0674873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761559923,5.202259047,-3.460455713,3.460455713,1,0.878073531,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046236637,87.349891,-0.046236637,92.650109,0,0,0,0,0,8,20,0% +2018-08-13 05:00:00,110.8054514,309.1650027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933919956,5.395947228,-1.348956661,1.348956661,1,0.760838865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169898112,99.78189511,0.169898112,80.21810489,0,0.75570597,0,0,0,8,21,0% +2018-08-13 06:00:00,119.0915282,322.3531894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078539279,5.62612451,-0.544840001,0.544840001,1,0.623326817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.366281658,111.4864794,0.366281658,68.51352058,0,0.913493028,0,0,0,8,22,0% +2018-08-13 07:00:00,125.0096867,338.0396343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181830629,5.899904621,-0.048836741,0.048836741,1,0.538505264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529532829,121.9738954,0.529532829,58.02610463,0,0.955577148,0,0,0,8,23,0% +2018-08-14 08:00:00,127.7169965,355.7985644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229082099,6.209856423,0.352042398,-0.352042398,1,0.469950894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648527512,130.4306743,0.648527512,49.56932566,0,0.972902268,0,0,0,8,0,0% +2018-08-14 09:00:00,126.7094093,14.03131174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211496386,0.244892588,0.750565279,-0.750565279,1,0.401799467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715156883,135.6560578,0.715156883,44.34394219,0,0.980085271,0,0,0,8,1,0% +2018-08-14 10:00:00,122.1852076,30.80895533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13253417,0.53771771,1.231452784,-1.231452784,1,0.319562861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724880288,136.4588901,0.724880288,43.54110992,0,0.981023093,0,0,0,8,2,0% +2018-08-14 11:00:00,114.8917299,45.14617844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005238971,0.787949459,1.955528518,-1.955528518,1,0.195738618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677035091,132.6123868,0.677035091,47.38761317,0,0.976148584,0,0,0,8,3,0% +2018-08-14 12:00:00,105.6713383,57.14591995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844312777,0.997384457,3.475131106,-3.475131106,1,0,#DIV/0!,0,0,0.060264072,1,0.280188966,0,0.927411462,0.966173425,0.724496596,1,0,0,0.010021656,0.312029739,0.971973885,0.696470481,0.961238037,0.922476074,0,0,0,0,0,0,-0.574882422,125.0913986,0.574882422,54.90860143,0,0.963025693,0,0,0,8,4,0% +2018-08-14 13:00:00,95.19709409,67.41048845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66150273,1.176534974,10.98310114,-10.98310114,1,0,#DIV/0!,0,0,0.574117815,1,0.090798614,0,0.952246087,0.991008051,0.724496596,1,0,0,0.077168879,0.312029739,0.804579803,0.529076399,0.961238037,0.922476074,0,0,0,0,0,0,-0.425385585,115.1750721,0.425385585,64.8249279,0,0.932459581,0,0,0,8,5,0% +2018-08-14 14:00:00,83.80784369,76.63098827,40.48385257,169.1780518,22.23575687,21.87045114,0,21.87045114,21.56526676,0.305184381,50.4785717,39.99230282,10.48626887,0.670490111,9.815778762,1.462722811,1.337463054,-9.155251297,9.155251297,0,0,0.549250021,0.167622528,5.391316689,1,0.087419607,0,0.108795636,0.961238037,1,0.462662237,0.738165641,20.72935468,0.478784411,0.115824807,0.01558871,0.724496596,0.448993192,0.99859627,0.959834307,0.121441951,5.193039492,20.85079663,5.671823903,0,36.49619141,-0.236391792,103.6736784,0.236391792,76.32632165,0,0.838486734,20.85079663,36.27339624,44.591009,8,6,114% +2018-08-14 15:00:00,72.2118855,85.49089795,234.5685749,551.7196467,66.01944349,65.79699068,0,65.79699068,64.02871368,1.768277,73.63108618,14.76648965,58.86459654,1.990729807,56.87386673,1.260335161,1.49209765,-3.003630192,3.003630192,0.956195296,0.956195296,0.281450503,1.712618982,55.08371354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.54683504,1.442276969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.240786622,52.94856067,62.78762167,54.39083764,0,14.76648965,-0.02676448,91.53367491,0.02676448,88.46632509,0,0,62.78762167,54.39083764,98.38533708,8,7,57% +2018-08-14 16:00:00,60.40822668,94.75144319,446.5026815,722.7178152,89.61232581,230.4467667,140.1706573,90.27610937,86.91018356,3.365925817,110.9618868,0,110.9618868,2.702142258,108.2597446,1.054322451,1.653724655,-1.599137102,1.599137102,0.80362224,0.80362224,0.200698293,2.837593005,91.26674522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.54137422,1.957692867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055826473,87.729067,85.5972007,89.68675987,140.1706573,0,0.193949359,78.81664537,-0.193949359,101.1833546,0.792200747,0,196.6405001,89.68675987,255.3386907,8,8,30% +2018-08-14 17:00:00,48.77471589,105.4840426,637.3380375,807.630737,105.0920743,437.7041197,330.9764359,106.7276839,101.9231605,4.804523339,157.6988998,0,157.6988998,3.168913789,154.529986,0.851279384,1.841043852,-0.929313588,0.929313588,0.689075673,0.689075673,0.164892205,3.55700325,114.4054516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97241874,2.295867253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.577036746,109.9708717,100.5494555,112.266739,330.9764359,0,0.409811589,65.80700032,-0.409811589,114.1929997,0.927992713,0,407.6931763,112.266739,481.1695116,8,9,18% +2018-08-14 18:00:00,37.84313014,119.5607848,789.634885,853.4055679,115.7061279,635.3034826,517.1337201,118.1697625,112.2171612,5.952601307,194.9450866,0,194.9450866,3.488966666,191.45612,0.66048722,2.086729352,-0.503920025,0.503920025,0.616329089,0.616329089,0.146531175,4.003415097,128.7635912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8674038,2.527744473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900460609,123.7724616,110.7678644,126.3002061,517.1337201,0,0.605964783,52.70170104,-0.605964783,127.298299,0.967486954,0,611.0879921,126.3002061,693.7489509,8,10,14% +2018-08-14 19:00:00,28.73312782,140.4572453,891.6207252,877.3542808,122.2965186,800.0040276,674.6737866,125.330241,118.6088274,6.721413649,219.8714589,0,219.8714589,3.687691262,216.1837677,0.501487685,2.451441389,-0.183390434,0.183390434,0.561515301,0.561515301,0.137162041,4.178425656,134.3925323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0113164,2.671719766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.027255164,129.1832139,117.0385715,131.8549337,674.6737866,0,0.768986715,39.73701623,-0.768986715,140.2629838,0.984979371,0,781.5783334,131.8549337,867.8747504,8,11,11% +2018-08-14 20:00:00,23.85491012,171.8143481,935.8000446,886.473379,125.0558657,915.2945803,786.9551543,128.339426,121.2849699,7.05445602,230.6664509,0,230.6664509,3.770895758,226.8955551,0.416346724,2.998726077,0.090536103,-0.090536103,0.514671104,0.514671104,0.133635242,4.088255838,131.492361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5837264,2.73200114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.961927438,126.395459,119.5456539,129.1274601,786.9551543,0,0.887736928,27.40976644,-0.887736928,152.5902336,0.993677008,0,901.524897,129.1274601,986.0362371,8,12,9% +2018-08-14 21:00:00,25.81364291,206.5815227,918.9726399,883.0797637,124.010892,969.7473419,842.5482319,127.19911,120.2715061,6.927603935,226.554942,0,226.554942,3.739385946,222.815556,0.450533061,3.605527745,0.351346184,-0.351346184,0.470069954,0.470069954,0.134945141,3.751861702,120.6727693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6095464,2.709172388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718211031,115.9952558,118.3277574,118.7044282,842.5482319,0,0.954102072,17.42647032,-0.954102072,162.5735297,0.997594706,0,958.8494127,118.7044282,1036.539087,8,13,8% +2018-08-14 22:00:00,33.40895308,232.0232185,842.3297963,866.3269347,119.153135,956.6560734,834.7460073,121.9100661,115.5602283,6.349837806,207.8255179,0,207.8255179,3.592906647,204.2326113,0.583096231,4.049569104,0.627402025,-0.627402025,0.422861624,0.422861624,0.141456631,3.203503806,103.0356944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.080887,2.603048635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.320927602,99.04182858,113.4018146,101.6448772,834.7460073,0,0.963546178,15.5180582,-0.963546178,164.4819418,0.998108351,0,946.5687755,101.6448772,1013.093315,8,14,7% +2018-08-14 23:00:00,43.7245913,248.6225155,711.4163951,831.6703196,110.3927452,873.7559921,761.3290382,112.4269539,107.0639966,5.36295729,175.8198901,0,175.8198901,3.328748573,172.4911415,0.763138082,4.33928149,0.956165844,-0.956165844,0.3666397,0.3666397,0.155173181,2.493347351,80.19462164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9139859,2.41166701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806421668,77.08612067,104.7204076,79.49778768,761.3290382,0,0.915421676,23.73431817,-0.915421676,156.2656818,0.995380363,0,862.5323817,79.49778768,914.5620938,8,15,6% +2018-08-14 00:00:00,55.13839204,260.5481264,536.0259288,767.5840921,97.27778789,722.4479333,624.0626398,98.38529354,94.34450367,4.04078987,132.8989766,0,132.8989766,2.933284222,129.9656923,0.962346485,4.547422665,1.411257221,-1.411257221,0.288814491,0.288814491,0.181479631,1.688565978,54.31008626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68752549,2.125154433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223360303,52.2049207,91.9108858,54.33007513,624.0626398,0,0.813021852,35.60776598,-0.813021852,144.392234,0.988501038,0,708.797453,54.33007513,744.3554005,8,16,5% +2018-08-14 01:00:00,66.92696681,270.2980774,330.6123386,644.5068332,78.02743573,505.7261739,427.5592578,78.16691611,75.67462065,2.49229546,82.51360427,0,82.51360427,2.352815078,80.16078919,1.168095929,4.717591413,2.201748069,-2.201748069,0.153632595,0.153632595,0.236008844,0.880734316,28.32744311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.7413238,1.704606515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.638089014,27.2294158,73.37941281,28.93402232,427.5592578,0,0.663389798,48.44108666,-0.663389798,131.5589133,0.974629531,0,490.0912918,28.93402232,509.0280307,8,17,4% +2018-08-14 02:00:00,78.68588121,279.2212876,119.5073582,376.4247707,45.65741776,224.755118,179.5735429,45.18157511,44.28067816,0.900896946,30.3526822,0,30.3526822,1.376739604,28.97594259,1.373327702,4.87333081,4.36204646,-4.36204646,0,0,0.382046917,0.344184901,11.07016954,0.177496426,1,0.225356138,0,0.935412781,0.974174744,0.724496596,1,42.83246239,0.997443156,0.028009829,0.312029739,0.923640529,0.648137125,0.961238037,0.922476074,0.239909953,10.64106804,43.07237235,11.63851119,147.6998808,0,0.477050282,61.50707219,-0.477050282,118.4929278,0.945189245,0,182.6767112,11.63851119,190.293884,8,18,4% +2018-08-14 03:00:00,89.75073779,288.1790665,0.05192899,0.569078318,0.049453253,0.203678704,0.155325187,0.048353518,0.047962055,0.000391463,0.014081983,0,0.014081983,0.001491198,0.012590785,1.566445881,5.029673546,180.689008,-180.689008,0,0,0.952324571,0.0003728,0.011990514,0.968121888,1,0.005534314,0,0.960746405,0.999508368,0.724496596,1,0.046138637,0.001080368,0.113308836,0.312029739,0.729343432,0.453840028,0.961238037,0.922476074,0.000268625,0.011525738,0.046407261,0.012606106,0.004951474,0,0.272941671,74.16061134,-0.272941671,105.8393887,0.866810677,0,0.050699252,0.012606106,0.058949696,8,19,16% +2018-08-14 04:00:00,101.1781979,297.8728854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765892684,5.198862602,-3.39445338,3.39445338,1,0.889360595,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042897346,87.54140868,-0.042897346,92.45859132,0,0,0,0,0,8,20,0% +2018-08-14 05:00:00,111.0747144,308.9933296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938619482,5.392950968,-1.336767178,1.336767178,1,0.75875434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.173496663,99.99118502,0.173496663,80.00881498,0,0.761810018,0,0,0,8,21,0% +2018-08-14 06:00:00,119.3834216,322.2219596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083633778,5.623834117,-0.542240893,0.542240893,1,0.622882344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.3700668,111.7197371,0.3700668,68.28026294,0,0.914889258,0,0,0,8,22,0% +2018-08-14 07:00:00,125.3192988,337.9777426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18723438,5.898824406,-0.04980306,0.04980306,1,0.538670514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533419127,122.2367639,0.533419127,57.76323608,0,0.956265079,0,0,0,8,23,0% +2018-08-15 08:00:00,128.0296491,355.8337974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234538917,6.210471354,0.348856991,-0.348856991,1,0.470495631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652422633,130.724508,0.652422633,49.27549196,0,0.973362561,0,0,0,8,0,0% +2018-08-15 09:00:00,127.004629,14.16519957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216648941,0.247229372,0.745117796,-0.745117796,1,0.402731042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718967936,135.9693369,0.718967936,44.03066311,0,0.980455869,0,0,0,8,1,0% +2018-08-15 10:00:00,122.4480045,31.01279339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137120842,0.541275355,1.222542213,-1.222542213,1,0.321086658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728520204,136.7624806,0.728520204,43.23751945,0,0.981367724,0,0,0,8,2,0% +2018-08-15 11:00:00,115.1183759,45.38660234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009194689,0.792145647,1.939184126,-1.939184126,1,0.198533673,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680428618,132.8771459,0.680428618,47.12285414,0,0.976516906,0,0,0,8,3,0% +2018-08-15 12:00:00,105.8659642,57.40271063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847709642,1.0018663,3.433759063,-3.433759063,1,0,#DIV/0!,0,0,0.053974263,1,0.283387965,0,0.926925075,0.965687039,0.724496596,1,0,0,0.009001616,0.312029739,0.974790636,0.699287232,0.961238037,0.922476074,0,0,0,0,0,0,-0.577971298,125.3079807,0.577971298,54.69201933,0,0.963490514,0,0,0,8,4,0% +2018-08-15 13:00:00,95.36685411,67.67664616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664465602,1.181180302,10.63586759,-10.63586759,1,0,#DIV/0!,0,0,0.563068217,1,0.093745888,0,0.95192157,0.990683533,0.724496596,1,0,0,0.07599894,0.312029739,0.807190239,0.531686835,0.961238037,0.922476074,0,0,0,0,0,0,-0.428132554,115.3491056,0.428132554,64.65089441,0,0.933213739,0,0,0,8,5,0% +2018-08-15 14:00:00,83.95769144,76.90789452,38.5500747,162.4584281,21.44924352,21.09307643,0,21.09307643,20.80246969,0.290606747,48.77841532,38.78472957,9.993685759,0.646773831,9.346911928,1.465338148,1.34229598,-9.378673399,9.378673399,0,0,0.556399532,0.161693458,5.200617422,1,0.118166796,0,0.106223554,0.961238037,1,0.467763419,0.743266823,19.99612512,0.45966958,0.115824807,0.021392337,0.724496596,0.448993192,0.998058697,0.959296734,0.11714636,5.012756097,20.11327148,5.472425677,0,34.20166236,-0.238736334,103.8119698,0.238736334,76.18803022,0,0.840563928,20.11327148,34.22110934,42.51030312,8,6,111% +2018-08-15 15:00:00,72.35523923,85.78512549,231.963948,548.6902239,65.64801112,65.4171236,0,65.4171236,63.66848137,1.748642222,74.02627127,15.80439674,58.22187453,1.979529751,56.24234478,1.262837156,1.497232889,-3.025315885,3.025315885,0.952486824,0.952486824,0.283009544,1.689072113,54.3263653,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.20056605,1.434162566,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.223726996,52.22056873,62.42429304,53.65473129,0,15.80439674,-0.028803861,91.65056794,0.028803861,88.34943206,0,0,62.42429304,53.65473129,97.54024158,8,7,56% +2018-08-15 16:00:00,60.55217999,95.07354584,443.9971981,721.2989044,89.38450409,228.6812333,138.6449633,90.03626992,86.68923149,3.347038425,110.3475337,0,110.3475337,2.695272592,107.6522611,1.05683491,1.659346406,-1.604340807,1.604340807,0.804512126,0.804512126,0.201317721,2.824456276,90.84422284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.3289867,1.952715818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308957,87.32292242,85.37529565,89.27563824,138.6449633,0,0.192215685,78.91788261,-0.192215685,101.0821174,0.789875547,0,194.8875619,89.27563824,253.3166817,8,8,30% +2018-08-15 17:00:00,48.93129419,105.8474651,634.9469092,806.7891461,104.9158383,435.9754815,329.4367448,106.5387367,101.7522387,4.786498004,157.1138289,0,157.1138289,3.163599624,153.9502293,0.854012191,1.84738677,-0.930209231,0.930209231,0.689228837,0.689228837,0.165235608,3.544781336,114.0123529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.80812217,2.292017158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.568182011,109.5930102,100.3763042,111.8850274,329.4367448,0,0.40833066,65.89998745,-0.40833066,114.1000125,0.927550219,0,405.9454289,111.8850274,479.1719416,8,9,18% +2018-08-15 18:00:00,38.03042322,119.9737021,787.2868191,852.7998678,115.5502337,633.6579474,515.657079,118.0008684,112.0659678,5.934900594,194.3710701,0,194.3710701,3.484265881,190.8868042,0.663756101,2.093936118,-0.503025548,0.503025548,0.616176125,0.616176125,0.146770187,3.991280156,128.3732897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7220709,2.52433877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891668886,123.397289,110.6137398,125.9216278,515.657079,0,0.604663648,52.79535789,-0.604663648,127.2046421,0.9673094,0,609.4136793,125.9216278,691.8268663,8,10,14% +2018-08-15 19:00:00,28.97601134,140.8749721,889.2247312,876.8398915,122.1453679,798.385217,673.219631,125.165586,118.4622343,6.703351634,219.2859647,0,219.2859647,3.683133509,215.6028312,0.505726802,2.458732097,-0.18142935,0.18142935,0.561179936,0.561179936,0.13736164,4.16584466,133.9878843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8704056,2.66841769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018140275,128.7942508,116.8885459,131.4626685,673.219631,0,0.767779429,39.84509988,-0.767779429,140.1549001,0.98487713,0,779.9271639,131.4626685,865.9668512,8,11,11% +2018-08-15 20:00:00,24.15964592,172.0180979,933.263544,885.9679022,124.8988076,913.6058262,785.4378437,128.1679826,121.1326478,7.035334807,230.0467111,0,230.0467111,3.766159878,226.2805512,0.421665367,3.002282182,0.093401852,-0.093401852,0.514181032,0.514181032,0.133830158,4.074853689,131.0613019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4373085,2.728570011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.952217626,125.9811085,119.3895262,128.7096785,785.4378437,0,0.886530812,27.55950379,-0.886530812,152.4404962,0.993600381,0,899.8008669,128.7096785,984.0387773,8,12,9% +2018-08-15 21:00:00,26.12195987,206.4236423,916.2115597,882.5137538,123.8387373,967.8741374,840.8628052,127.0113322,120.1045424,6.906789747,225.880295,0,225.880295,3.734194845,222.1461002,0.455914207,3.602772213,0.355251877,-0.355251877,0.469402041,0.469402041,0.135163911,3.737400243,120.207639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4490546,2.705411454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.707733753,115.548155,118.1567883,118.2535664,840.8628052,0,0.952804193,17.67308578,-0.952804193,162.3269142,0.997523321,0,956.9370461,118.2535664,1034.33164,8,13,8% +2018-08-15 22:00:00,33.67953552,231.7273855,839.2767317,865.6117373,118.9559819,954.4747626,832.7789199,121.6958426,115.3690201,6.326822515,207.0793222,0,207.0793222,3.586961754,203.4923604,0.587818785,4.044405843,0.632798202,-0.632798202,0.421938824,0.421938824,0.141736304,3.187902883,102.533915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8970904,2.598741581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.309624786,98.55949921,113.2067152,101.1582408,832.7789199,0,0.96206981,15.83115217,-0.96206981,164.1688478,0.998028719,0,944.3439943,101.1582408,1010.55004,8,14,7% +2018-08-15 23:00:00,43.96500452,248.3258496,708.0288284,830.6504885,110.1565485,871.1313516,758.9590091,112.1723425,106.8349221,5.337420381,174.9914131,0,174.9914131,3.321626372,171.6697867,0.767334085,4.334103693,0.964097385,-0.964097385,0.365283327,0.365283327,0.15558201,2.476743583,79.66058739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6937908,2.406506999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794392295,76.57278664,104.4881831,78.97929364,758.9590091,0,0.913692365,23.97929724,-0.913692365,156.0207028,0.995276986,0,859.8626182,78.97929364,911.5529863,8,15,6% +2018-08-15 00:00:00,55.36338284,260.2773948,532.2991075,765.9173288,96.97491486,719.2092697,621.1458108,98.0634589,94.05076338,4.012695517,131.9862328,0,131.9862328,2.924151483,129.0620814,0.966273316,4.542697507,1.424376306,-1.424376306,0.286570996,0.286570996,0.182181246,1.671465769,53.76008476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.40517116,2.118537795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.21097126,51.67623834,91.61614242,53.79477613,621.1458108,0,0.81098284,35.80793099,-0.81098284,144.192069,0.988346414,0,705.5233773,53.79477613,740.7309824,8,16,5% +2018-08-15 01:00:00,67.14759628,270.0517598,326.6215929,641.2622153,77.58191184,501.5837209,423.8789784,77.70474249,75.24253096,2.462211533,81.53256758,0,81.53256758,2.339380889,79.19318669,1.17194664,4.71329236,2.228995474,-2.228995474,0.148973014,0.148973014,0.237528423,0.86452214,27.80600378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32598274,1.69487349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626343347,26.72818849,72.95232609,28.42306198,423.8789784,0,0.661007258,48.6232627,-0.661007258,131.3767373,0.974357865,0,485.9621427,28.42306198,504.5644683,8,17,4% +2018-08-15 02:00:00,78.90948487,278.993993,115.7126728,368.6960832,44.79047175,219.1946345,174.8824697,44.31216477,43.43987377,0.872291005,29.40647518,0,29.40647518,1.350597982,28.0558772,1.377230322,4.869363771,4.462142794,-4.462142794,0,0,0.387083546,0.337649496,10.85996844,0.188915834,1,0.220464857,0,0.936095266,0.974857229,0.724496596,1,42.02957571,0.978503641,0.029664014,0.312029739,0.919323391,0.643819987,0.961238037,0.922476074,0.234959122,10.43901474,42.26453483,11.41751839,141.8444021,0,0.474326899,61.68446649,-0.474326899,118.3155335,0.944587467,0,176.2489793,11.41751839,183.7215168,8,18,4% +2018-08-15 03:00:00,89.94832826,287.9671979,0.007477463,0.311757122,0.007196307,0.091360808,0.084325127,0.007035681,0.006979312,5.63683E-05,0.002029993,0,0.002029993,0.000216995,0.001812997,1.569894485,5.025975741,874.1696969,-874.1696969,0,0,0.9623996,5.42488E-05,0.001744828,0.993331629,1,0.001143942,0,0.961137024,0.999898988,0.724496596,1,0.006709879,0.000157212,0.115302878,0.312029739,0.725497858,0.449994454,0.961238037,0.922476074,3.92577E-05,0.001677195,0.006749137,0.001834407,0.000562311,0,0.270483403,74.30696585,-0.270483403,105.6930341,0.865145774,0,0.007235618,0.001834407,0.008436201,8,19,17% +2018-08-15 04:00:00,101.4305847,297.6768886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770297665,5.195441813,-3.330074141,3.330074141,1,0.900370093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039489426,87.73683407,-0.039489426,92.26316593,0,0,0,0,0,8,20,0% +2018-08-15 05:00:00,111.3481571,308.8204646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943391958,5.389933904,-1.324596213,1.324596213,1,0.756672983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177158706,100.204306,0.177158706,79.79569397,0,0.767767187,0,0,0,8,21,0% +2018-08-15 06:00:00,119.6795632,322.0901866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088802425,5.621534244,-0.539586367,0.539586367,1,0.622428393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37390826,111.9568527,0.37390826,68.04314729,0,0.916277359,0,0,0,8,22,0% +2018-08-15 07:00:00,125.6331156,337.916732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192711517,5.897759571,-0.050713809,0.050713809,1,0.538826262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537353023,122.5036288,0.537353023,57.49637121,0,0.9569513,0,0,0,8,23,0% +2018-08-16 08:00:00,128.346115,355.8720401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240062289,6.211138815,0.345725772,-0.345725772,1,0.471031101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656355682,131.022525,0.656355682,48.97747498,0,0.973821791,0,0,0,8,0,0% +2018-08-16 09:00:00,127.3028408,14.30394752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221853719,0.24965098,0.7397323,-0.7397323,1,0.403652016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.722806961,136.2867173,0.722806961,43.7132827,0,0.980825237,0,0,0,8,1,0% +2018-08-16 10:00:00,122.7128273,31.22219242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141742871,0.544930057,1.213723807,-1.213723807,1,0.322594694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732178541,137.0693411,0.732178541,42.93065886,0,0.981710645,0,0,0,8,2,0% +2018-08-16 11:00:00,115.3462697,45.63239376,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013172186,0.796435517,1.923039024,-1.923039024,1,0.201294648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683832072,133.1438253,0.683832072,46.85617471,0,0.976882634,0,0,0,8,3,0% +2018-08-16 12:00:00,106.0613547,57.66439533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851119848,1.00643356,3.393182676,-3.393182676,1,0,#DIV/0!,0,0,0.047723093,1,0.286595226,0,0.926435297,0.96519726,0.724496596,1,0,0,0.00798198,0.312029739,0.977614395,0.702110991,0.961238037,0.922476074,0,0,0,0,0,0,-0.581063247,125.5253606,0.581063247,54.47463942,0,0.963950847,0,0,0,8,4,0% +2018-08-16 13:00:00,95.53715488,67.94727804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667437911,1.18590372,10.30865917,-10.30865917,1,0,#DIV/0!,0,0,0.552117982,1,0.096703254,0,0.951593909,0.990355872,0.724496596,1,0,0,0.074829797,0.312029739,0.809809814,0.53430641,0.961238037,0.922476074,0,0,0,0,0,0,-0.430877857,115.523284,0.430877857,64.47671595,0,0.933957834,0,0,0,8,5,0% +2018-08-16 14:00:00,84.10794185,77.1890046,36.67492058,156.0352538,20.65717486,20.31075586,0,20.31075586,20.03428482,0.276471043,47.13133831,37.61618917,9.515149141,0.622890039,8.892259102,1.467960512,1.347202277,-9.613760686,9.613760686,0,0,0.563250705,0.15572251,5.008571205,1,0.148358934,0,0.103644839,0.961238037,1,0.472931201,0.748434605,19.25771661,0.440732832,0.115824807,0.027265125,0.724496596,0.448993192,0.997506481,0.958744517,0.112820428,4.83074289,19.37053704,5.271475722,0,32.03549144,-0.241074938,103.9499928,0.241074938,76.05000724,0,0.842595612,19.37053704,32.26444024,40.48696789,8,6,109% +2018-08-16 15:00:00,72.49927235,86.08343453,229.419833,546.0122303,65.22417537,64.98688944,0,64.98688944,63.25742583,1.729463608,74.43094852,16.83870434,57.59224418,1.966749539,55.62549464,1.265351008,1.502439364,-3.047321389,3.047321389,0.948723661,0.948723661,0.284300509,1.665994975,53.58412523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.80544382,1.424903346,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.207007688,51.50709934,62.01245151,52.93200269,0,16.83870434,-0.030839427,91.76724922,0.030839427,88.23275078,0,0,62.01245151,52.93200269,96.65538863,8,7,56% +2018-08-16 16:00:00,60.69716796,95.3997047,441.5564015,720.1825367,89.08066291,226.9056234,137.1824324,89.72319092,86.39455225,3.328638669,109.7465724,0,109.7465724,2.686110659,107.0604617,1.059365427,1.665038952,-1.609542079,1.609542079,0.805401596,0.805401596,0.201742433,2.811569108,90.42972722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0457298,1.946078029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036972248,86.92449346,85.08270205,88.87057149,137.1824324,0,0.190482864,79.01903506,-0.190482864,100.9809649,0.787509197,0,193.1151293,88.87057149,251.2791409,8,8,30% +2018-08-16 17:00:00,49.08947526,106.214863,632.6175837,806.2044682,104.6506867,434.2645415,328.0005206,106.2640209,101.4950824,4.768938565,156.5410617,0,156.5410617,3.155604324,153.3854574,0.856772971,1.853799073,-0.931057923,0.931057923,0.689373972,0.689373972,0.165424878,3.532635329,113.6216955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.56093374,2.286224591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55938227,109.2174956,100.120316,111.5037201,328.0005206,0,0.406845327,65.99318337,-0.406845327,114.0068166,0.927103172,0,404.2106392,111.5037201,477.187594,8,9,18% +2018-08-16 18:00:00,38.22011951,120.3899987,784.9937575,852.4209765,115.2980062,632.0478836,514.3089232,117.7389604,111.8213459,5.917614527,193.8074851,0,193.8074851,3.47666029,190.3308249,0.667066926,2.101201863,-0.502071667,0.502071667,0.616013001,0.616013001,0.146877609,3.979075573,127.9807484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.486931,2.518828545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882826707,123.0199634,110.3697577,125.5387919,514.3089232,0,0.603350853,52.88973635,-0.603350853,127.1102637,0.967129478,0,607.7730782,125.5387919,689.9357067,8,10,14% +2018-08-16 19:00:00,29.22212508,141.2942489,886.8748541,876.534575,121.8936592,796.8128413,671.9090884,124.9037529,118.2181156,6.685637268,218.7086198,0,218.7086198,3.675543564,215.0330763,0.510022297,2.466049857,-0.17940024,0.17940024,0.560832938,0.560832938,0.137441781,4.153070006,133.5770075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6357494,2.6629188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.008885082,128.3993004,116.6446345,131.0622192,671.9090884,0,0.766551723,39.95476165,-0.766551723,140.0452384,0.984772829,0,778.3224485,131.0622192,864.1000497,8,11,11% +2018-08-16 20:00:00,24.46801374,172.2236324,930.7633933,885.6632889,124.639188,911.9702842,784.07294,127.8973443,120.8808567,7.016487615,229.4326921,0,229.4326921,3.758331389,225.6743607,0.427047401,3.005869436,0.096347263,-0.096347263,0.513677337,0.513677337,0.133910711,4.061151107,130.6205797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1952773,2.722898298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942290153,125.5574696,119.1375675,128.2803679,784.07294,0,0.885294615,27.71220151,-0.885294615,152.2877985,0.993521626,0,898.13099,128.2803679,982.0879252,8,12,9% +2018-08-16 21:00:00,26.43468124,206.2711321,913.4770858,882.1484514,123.5639084,966.0587351,839.3345583,126.7241768,119.8380007,6.886176127,225.2090031,0,225.2090031,3.725907742,221.4830953,0.461372224,3.600110406,0.359256517,-0.359256517,0.468717207,0.468717207,0.135267661,3.722546908,119.7299047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1928445,2.699407475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696972563,115.0889386,117.8898171,117.7883461,839.3345583,0,0.95146634,17.92385763,-0.95146634,162.0761424,0.997449534,0,955.0836807,117.7883461,1032.173797,8,13,8% +2018-08-16 22:00:00,33.95510152,231.434804,836.2412154,865.104723,118.6580287,952.3551657,830.9711749,121.3839908,115.0800513,6.303939511,206.3343417,0,206.3343417,3.577977366,202.7563643,0.592628319,4.039299334,0.638328188,-0.638328188,0.42099314,0.42099314,0.141894499,3.171833651,102.0170733,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6193226,2.592232422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297982683,98.0626913,112.9173053,100.6549237,830.9711749,0,0.960544028,16.14850821,-0.960544028,163.8514918,0.997946165,0,942.1818027,100.6549237,1008.058437,8,14,7% +2018-08-16 23:00:00,44.21032056,248.0300268,704.6508293,829.8539523,109.8239499,868.5725347,756.7482265,111.8243082,106.5123526,5.311955597,174.162349,0,174.162349,3.311597297,170.8507517,0.771615657,4.328940612,0.97223309,-0.97223309,0.363892039,0.363892039,0.155855844,2.459611706,79.10956731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3837247,2.399240968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.781980308,76.04312518,104.165705,78.44236615,756.7482265,0,0.911905311,24.23000626,-0.911905311,155.7699937,0.995169746,0,857.2586453,78.44236615,908.5976051,8,15,6% +2018-08-16 00:00:00,55.59300388,260.0063022,528.5750147,764.4946081,96.58376669,716.0400231,618.3839916,97.6560315,93.67140977,3.984621732,131.0714889,0,131.0714889,2.912356922,128.1591319,0.970280959,4.537966049,1.437870881,-1.437870881,0.284263287,0.284263287,0.182724805,1.653801864,53.19195286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.04052203,2.109992676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.198173821,51.13012835,91.23869585,53.24012102,618.3839916,0,0.808879468,36.01340359,-0.808879468,143.9865964,0.988186093,0,702.3171566,53.24012102,737.161751,8,16,5% +2018-08-16 01:00:00,67.37259387,269.8045197,322.628107,638.2698255,77.06216874,497.5069832,420.3364162,77.17056698,74.73846003,2.432106949,80.54862852,0,80.54862852,2.323708717,78.2249198,1.175873589,4.708977205,2.257212857,-2.257212857,0.144147557,0.144147557,0.23885758,0.847770221,27.2672045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.84145059,1.683519055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614206639,26.21027412,72.45565723,27.89379318,420.3364162,0,0.658555989,48.81016292,-0.658555989,131.1898371,0.974076311,0,481.895403,27.89379318,500.1513328,8,17,4% +2018-08-16 02:00:00,79.13719985,278.7654963,111.9242728,361.1061218,43.87098699,213.66562,170.2737726,43.39184731,42.54811486,0.843732445,28.46020787,0,28.46020787,1.322872124,27.13733575,1.381204698,4.865375752,4.568072447,-4.568072447,0,0,0.391970266,0.330718031,10.63702872,0.200660387,1,0.215511069,0,0.936781179,0.975543143,0.724496596,1,41.17658285,0.958416351,0.031348211,0.312029739,0.914950055,0.639446651,0.961238037,0.922476074,0.229759496,10.2247166,41.40634234,11.18313295,136.1065716,0,0.471533885,61.8660895,-0.471533885,118.1339105,0.943963082,0,169.8859211,11.18313295,177.2050579,8,18,4% +2018-08-16 03:00:00,90.147677,287.7539867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573373777,5.022254503,-306.754844,306.754844,1,0,#DIV/0!,0,0,1,0.980764911,0,0.003259921,0.961238037,1,0.715294045,0.990797449,0,0,0.115824807,0.3015722,0.724496596,0.448993192,0.962881974,0.92412001,0,0,0,0,0,0,0.267994285,74.45505008,-0.267994285,105.5449499,0.863428857,0,0,0,0,8,19,0% +2018-08-16 04:00:00,101.687023,297.4795266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774773358,5.191997197,-3.267300136,3.267300136,1,0.91110508,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036014089,87.9360984,-0.036014089,92.0639016,0,0,0,0,0,8,20,0% +2018-08-16 05:00:00,111.6256884,308.6464195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948235792,5.386896245,-1.312453597,1.312453597,1,0.754596473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.180882708,100.4211793,0.180882708,79.57882075,0,0.773577778,0,0,0,8,21,0% +2018-08-16 06:00:00,119.9798599,321.9578691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09404359,5.619224868,-0.536880014,0.536880014,1,0.621965579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377804236,112.1977382,0.377804236,67.80226185,0,0.917656328,0,0,0,8,22,0% +2018-08-16 07:00:00,125.951044,337.856604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198260414,5.89671014,-0.051570104,0.051570104,1,0.538972697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541332523,122.7743956,0.541332523,57.2256044,0,0.95763533,0,0,0,8,23,0% +2018-08-17 08:00:00,128.6662987,355.9133141,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245650549,6.211859183,0.342648791,-0.342648791,1,0.471557295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660324566,131.3246307,0.660324566,48.67536928,0,0.974279661,0,0,0,8,0,0% +2018-08-17 09:00:00,127.6039445,14.44758216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22710897,0.252157878,0.734409545,-0.734409545,1,0.404562261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.726671868,136.6081058,0.726671868,43.39189418,0,0.981193153,0,0,0,8,1,0% +2018-08-17 10:00:00,122.9795771,31.4371513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146398534,0.548681798,1.204998778,-1.204998778,1,0.324086762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735853304,137.3793684,0.735853304,42.62063157,0,0.982051674,0,0,0,8,2,0% +2018-08-17 11:00:00,115.5753248,45.88351608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017169952,0.800818428,1.90709392,-1.90709392,1,0.204021422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687243642,133.4123134,0.687243642,46.58768662,0,0.977245598,0,0,0,8,3,0% +2018-08-17 12:00:00,106.2574412,57.93091206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854542204,1.011085154,3.353388639,-3.353388639,1,0,#DIV/0!,0,0,0.04151169,1,0.289809944,0,0.925942238,0.964704202,0.724496596,1,0,0,0.006962995,0.312029739,0.980444468,0.704941064,0.961238037,0.922476074,0,0,0,0,0,0,-0.584156726,125.7434389,0.584156726,54.25656114,0,0.964406532,0,0,0,8,4,0% +2018-08-17 13:00:00,95.70794734,68.22230629,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670418801,1.190703868,9.999851012,-9.999851012,1,0,#DIV/0!,0,0,0.541267895,1,0.099670128,0,0.951263149,0.990025112,0.724496596,1,0,0,0.073661682,0.312029739,0.812437981,0.536934577,0.961238037,0.922476074,0,0,0,0,0,0,-0.433620273,115.6975321,0.433620273,64.30246786,0,0.934691738,0,0,0,8,5,0% +2018-08-17 14:00:00,84.25855692,77.4742288,34.85762044,149.8986513,19.86183947,19.5257032,0,19.5257032,19.26293173,0.262771467,45.53686772,36.48632634,9.050541385,0.598907743,8.451633643,1.470589241,1.352180378,-9.861403779,9.861403779,0,0,0.569799063,0.149726936,4.815732933,1,0.178005435,0,0.101059984,0.961238037,1,0.478164961,0.753668365,18.51626268,0.422006723,0.115824807,0.033206789,0.724496596,0.448993192,0.996939373,0.95817741,0.108476655,4.647554296,18.62473934,5.069561018,0,29.99156193,-0.243406635,104.0876904,0.243406635,75.91230964,0,0.844582428,18.62473934,30.39990721,38.52087061,8,6,107% +2018-08-17 15:00:00,72.64396945,86.38572186,226.9358928,543.6885433,64.74902836,64.50734487,0,64.50734487,62.79660625,1.710738618,74.84707511,17.87141844,56.97565667,1.952422103,55.02323457,1.267876449,1.507715273,-3.069652289,3.069652289,0.944904852,0.944904852,0.285318587,1.643377467,52.85666842,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.36248652,1.414523168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.190621381,50.80784018,61.5531079,52.22236335,0,17.87141844,-0.032870692,91.88369122,0.032870692,88.11630878,0,0,61.5531079,52.22236335,95.73160026,8,7,56% +2018-08-17 16:00:00,60.84318873,95.72979571,439.1800153,719.3712091,88.70126553,225.1193709,135.7820513,89.33731957,86.0265951,3.310724466,109.1589498,0,109.1589498,2.674670429,106.4842794,1.061913971,1.670800127,-1.614740672,1.614740672,0.806290608,0.806290608,0.201970177,2.798933237,90.02331418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.6920354,1.937789621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.027817602,86.53383379,84.719853,88.47162341,135.7820513,0,0.188751023,79.12009572,-0.188751023,100.8799043,0.785100773,0,191.3224465,88.47162341,249.2253545,8,8,30% +2018-08-17 17:00:00,49.24926614,106.5860755,630.3496645,805.8784241,104.2968443,432.5709197,326.667168,105.9037517,101.1519097,4.751842031,155.9805088,0,155.9805088,3.144934671,152.8355741,0.859561848,1.860277954,-0.931859545,0.931859545,0.689511057,0.689511057,0.165458713,3.520564483,113.2334556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.23106308,2.278494464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550636983,108.8443046,99.78170006,111.1227991,326.667168,0,0.405355396,66.08659998,-0.405355396,113.9134,0.926651451,0,402.4883053,111.1227991,475.2159548,8,9,18% +2018-08-17 18:00:00,38.41222361,120.809452,782.7551994,852.2702015,114.9495741,630.4729353,513.0887756,117.3841597,111.4834204,5.90073933,193.2542143,0,193.2542143,3.466153779,189.7880605,0.670419775,2.108522704,-0.501058457,0.501058457,0.615839732,0.615839732,0.146852521,3.96679937,127.5859035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1621041,2.511216614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87393264,122.6404234,110.0360368,125.1516401,513.0887756,0,0.602025947,52.98486634,-0.602025947,127.0151337,0.966947101,0,606.165741,125.1516401,688.0749864,8,10,14% +2018-08-17 19:00:00,29.47144561,141.7148013,884.5705617,876.4394677,121.5414882,795.286556,670.7417256,124.5448304,117.8765638,6.668266538,218.1392982,0,218.1392982,3.664924308,214.4743739,0.514373761,2.473389881,-0.177303259,0.177303259,0.560474333,0.560474333,0.137401688,4.140099313,133.1598254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3074368,2.655225185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999487859,127.9982892,116.3069247,130.6535143,670.7417256,0,0.765302968,40.06604711,-0.765302968,139.9339529,0.984666397,0,776.7637632,130.6535143,862.2738752,8,11,11% +2018-08-17 20:00:00,24.77994207,172.4307249,928.2991198,885.5606641,124.2771061,910.3876917,782.860088,127.5276037,120.5296928,6.99791088,228.8242824,0,228.8242824,3.747413283,225.0768691,0.432491577,3.009483882,0.099372208,-0.099372208,0.513160041,0.513160041,0.133876143,4.047145868,130.1701231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8577253,2.714988167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.932143404,125.1244736,118.7898687,127.8394617,782.860088,0,0.884027622,27.86790336,-0.884027622,152.1320966,0.993440681,0,896.5149279,127.8394617,980.1832989,8,12,9% +2018-08-17 21:00:00,26.75169922,206.1238879,910.7688943,881.9851061,123.1865397,964.3010704,837.9632988,126.3377717,119.472011,6.865760636,224.5409916,0,224.5409916,3.714528682,220.8264629,0.466905232,3.597540512,0.363360153,-0.363360153,0.468015444,0.468015444,0.135255541,3.707299984,119.2395112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8410413,2.691163386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.685926218,114.6175537,117.5269676,117.3087171,837.9632988,0,0.950087811,18.17875271,-0.950087811,161.8212473,0.997373285,0,953.289176,117.3087171,1030.065385,8,13,8% +2018-08-17 22:00:00,34.23555091,231.1455602,833.2231482,864.8074161,118.2594832,950.2975576,829.3228461,120.9747115,114.6935235,6.281188046,205.5905588,0,205.5905588,3.56595975,202.024599,0.597523085,4.034251077,0.643992533,-0.643992533,0.42002448,0.42002448,0.141930146,3.155295085,101.4851362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2477774,2.5835257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286000548,97.55137309,112.5337779,100.1348988,829.3228461,0,0.95896824,16.47001478,-0.95896824,163.5299852,0.99786063,0,940.0823955,100.1348988,1005.618684,8,14,7% +2018-08-17 23:00:00,44.46045661,247.7351686,701.2825698,829.2827,109.3952942,866.0803066,754.6971199,111.3831867,106.0966225,5.286564234,173.33275,0,173.33275,3.298671746,170.0340782,0.775981355,4.323794365,0.98057495,-0.98057495,0.362465497,0.362465497,0.155993174,2.441951396,78.54155106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9841091,2.389876451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.769185474,75.49712635,103.7532946,77.88700281,754.6971199,0,0.910060128,24.48633794,-0.910060128,155.5136621,0.995058575,0,854.7211355,77.88700281,905.6966211,8,15,6% +2018-08-17 00:00:00,55.82717943,259.734952,524.8540894,763.3185464,96.10495319,712.9415504,615.7779443,97.16360608,93.20703426,3.956571825,130.1548695,0,130.1548695,2.897918928,127.2569505,0.974368093,4.533230095,1.45174798,-1.45174798,0.281890163,0.281890163,0.183107944,1.6355747,52.60570462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.59414663,2.099532399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184968303,50.56660423,90.77911493,52.66613663,615.7779443,0,0.806711624,36.22411875,-0.806711624,143.7758812,0.988019983,0,699.1800292,52.66613663,733.6489623,8,16,5% +2018-08-17 01:00:00,67.6018832,269.5564374,318.6325058,635.5320764,76.46937095,493.4975873,416.9320636,76.56552369,74.16353727,2.40198642,79.56197371,0,79.56197371,2.305833676,77.25614004,1.179875442,4.704647353,2.286434132,-2.286434132,0.139150425,0.139150425,0.239992372,0.830481416,26.71113709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.28881297,1.670568649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.601680959,25.67576098,71.89049393,27.34632963,416.9320636,0,0.656036224,49.00173129,-0.656036224,130.9982687,0.973784696,0,477.8925569,27.34632963,495.7901827,8,17,4% +2018-08-17 02:00:00,79.3689404,278.5358582,108.1436012,353.6474863,42.90123984,208.1674914,165.7446501,42.42284132,41.60760917,0.815232146,27.51429881,0,27.51429881,1.29363067,26.22066814,1.385249334,4.86136781,4.680287725,-4.680287725,0,0,0.396706226,0.323407667,10.40190229,0.212736444,1,0.210497,0,0.937469997,0.97623196,0.724496596,1,40.2755781,0.937231017,0.033062143,0.312029739,0.910522441,0.635019037,0.961238037,0.922476074,0.224324824,9.998704139,40.49990292,10.93593516,130.4847226,0,0.46867193,62.05187685,-0.46867193,117.9481232,0.943315565,0,163.5881728,10.93593516,170.7455236,8,18,4% +2018-08-17 03:00:00,90.99314078,287.5394755,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588129903,5.018510577,-45.74095348,45.74095348,1,0,#DIV/0!,0,0,1,0.863988462,0,0.021858764,0.961238037,1,0.664379109,0.939882513,0,0,0.115824807,0.243768159,0.724496596,0.448993192,0.971559409,0.932797446,0,0,0,0,0,0,0.254871149,75.23404973,-0.254871149,104.7659503,0.853822441,0,0,0,0,8,19,0% +2018-08-17 04:00:00,101.9474215,297.2808241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779318169,5.188529183,-3.206111661,3.206111661,1,0.921568926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032472659,88.13912655,-0.032472659,91.86087345,0,0,0,0,0,8,20,0% +2018-08-17 05:00:00,111.9072125,308.4712005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953149315,5.383838097,-1.300348939,1.300348939,1,0.752526455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184667025,100.6417199,0.184667025,79.35828014,0,0.779242403,0,0,0,8,21,0% +2018-08-17 06:00:00,120.2842147,321.8249989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099355585,5.616905845,-0.534125557,0.534125557,1,0.621494539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381752837,112.4422997,0.381752837,67.55770026,0,0.919025204,0,0,0,8,22,0% +2018-08-17 07:00:00,126.2729885,337.7973526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203879406,5.895676008,-0.052373255,0.052373255,1,0.539110044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545355568,123.0489653,0.545355568,56.95103472,0,0.958316697,0,0,0,8,23,0% +2018-08-18 08:00:00,128.9901041,355.9576339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25130202,6.212632709,0.339625871,-0.339625871,1,0.472074245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664327154,131.6307271,0.664327154,48.36927287,0,0.974735878,0,0,0,8,0,0% +2018-08-18 09:00:00,127.9078404,14.59612341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232412954,0.254750412,0.729150001,-0.729150001,1,0.405461696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73056055,136.9334076,0.73056055,43.06659243,0,0.981559403,0,0,0,8,1,0% +2018-08-18 10:00:00,123.2481575,31.65766221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151086146,0.552530439,1.196367935,-1.196367935,1,0.325562723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73954251,137.692459,0.73954251,42.307541,0,0.982390634,0,0,0,8,2,0% +2018-08-18 11:00:00,115.8054583,46.13992652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021186539,0.805293634,1.891348854,-1.891348854,1,0.206713986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690661562,133.6825001,0.690661562,46.31749989,0,0.977605643,0,0,0,8,3,0% +2018-08-18 12:00:00,106.4541599,58.2021936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857975593,1.01581991,3.314362464,-3.314362464,1,0,#DIV/0!,0,0,0.035340934,1,0.293031417,0,0.925445999,0.964207962,0.724496596,1,0,0,0.005944871,0.312029739,0.98328025,0.707776846,0.961238037,0.922476074,0,0,0,0,0,0,-0.587250254,125.9621197,0.587250254,54.03788031,0,0.964857423,0,0,0,8,4,0% +2018-08-18 13:00:00,95.87918721,68.50164876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673407501,1.195579314,9.707979037,-9.707979037,1,0,#DIV/0!,0,0,0.530518306,1,0.102646025,0,0.95092933,0.989691293,0.724496596,1,0,0,0.072494785,0.312029739,0.815074279,0.539570875,0.961238037,0.922476074,0,0,0,0,0,0,-0.436358665,115.8717794,0.436358665,64.12822063,0,0.935415361,0,0,0,8,5,0% +2018-08-18 14:00:00,84.409503,77.76347363,33.06779845,143.7401808,19.06494176,18.73934245,0,18.73934245,18.49006342,0.249279033,43.91390118,35.32135227,8.592548916,0.574878336,8.01767058,1.473223747,1.357228653,-10.12259576,10.12259576,0,0,0.576541005,0.143719584,4.622515855,1,0.207116614,0,0.098469391,0.961238037,1,0.483464218,0.758967622,17.77335226,0.40351072,0.115824807,0.039217211,0.724496596,0.448993192,0.996357112,0.957595149,0.104124349,4.463609457,17.87747661,4.867120177,0,28.00571339,-0.24573054,104.2250105,0.24573054,75.77498952,0,0.846525088,17.87747661,28.57465917,36.57901955,8,6,105% +2018-08-18 15:00:00,72.78931998,86.69188074,224.4402589,541.3217551,64.27067036,64.02459799,0,64.02459799,62.33267251,1.691925476,75.24678537,18.89064828,56.35613709,1.937997845,54.41813925,1.270413294,1.513058754,-3.092315419,3.092315419,0.941029229,0.941029229,0.286359812,1.620722632,52.12801106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.91653576,1.404072841,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.17420803,50.10742701,61.09074379,51.51149986,0,18.89064828,-0.034897264,91.99987201,0.034897264,88.00012799,0,0,61.09074379,51.51149986,94.80399021,8,7,55% +2018-08-18 16:00:00,60.99024491,96.06369119,436.7822717,718.5409088,88.31973272,223.3308749,134.3816587,88.94921617,85.65656691,3.292649262,108.5660845,0,108.5660845,2.663165807,105.9029187,1.064480585,1.676627703,-1.619936748,1.619936748,0.807179189,0.807179189,0.202205397,2.786136408,89.61172417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.33635022,1.929454561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.018546343,86.13819782,84.35489656,88.06765238,134.3816587,0,0.187020192,79.22106316,-0.187020192,100.7789368,0.782649189,0,189.5285928,88.06765238,247.1671099,8,8,30% +2018-08-18 17:00:00,49.41067756,106.960938,628.0509947,805.5393943,103.9407161,430.8666489,325.3256152,105.5410337,100.80652,4.734513688,155.4124311,0,155.4124311,3.134196091,152.278235,0.862379009,1.866820539,-0.932614205,0.932614205,0.689640112,0.689640112,0.165497256,3.508292735,112.838754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.89906141,2.270714399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541746144,108.4649024,99.44080756,110.7356168,325.3256152,0,0.40386059,66.18025446,-0.40386059,113.8197455,0.926194902,0,400.7557338,110.7356168,473.2299802,8,9,18% +2018-08-18 18:00:00,38.60674255,121.2318359,780.4756685,852.1079484,114.5984266,628.8777873,511.8513707,117.0264165,111.1428613,5.883555263,192.6909272,0,192.6909272,3.455565387,189.2353619,0.673814771,2.115894694,-0.499986146,0.499986146,0.615656356,0.615656356,0.146831517,3.954279343,127.1832164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8347458,2.503545359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864861923,122.2533453,109.6996077,124.7568906,511.8513707,0,0.600688412,53.08078252,-0.600688412,126.9192175,0.96676217,0,604.5381495,124.7568906,686.1890393,8,10,14% +2018-08-18 19:00:00,29.7239503,142.1363541,882.2147202,876.3327104,121.1860724,793.7290341,669.5466618,124.1823724,117.5318651,6.65050721,217.55738,0,217.55738,3.65420721,213.9031728,0.518780799,2.480747366,-0.175138676,0.175138676,0.560104167,0.560104167,0.137365734,4.126844433,132.7335029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9760993,2.647460685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989884743,127.5884917,115.9659841,130.2359524,669.5466618,0,0.764032489,40.17900542,-0.764032489,139.8209946,0.984557757,0,775.1733434,130.2359524,860.4101696,8,11,11% +2018-08-18 20:00:00,25.09535943,172.6391457,925.7730603,885.4450787,123.9112049,908.7618297,781.6081364,127.1536933,120.1748249,6.978868377,228.2007767,0,228.2007767,3.736380013,224.4643967,0.437996649,3.01312151,0.102476464,-0.102476464,0.512629182,0.512629182,0.133846199,4.032822234,129.7094258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5166128,2.7069946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.92176598,124.6816338,118.4383788,127.3886284,781.6081364,0,0.882729099,28.02665403,-0.882729099,151.973346,0.993357481,0,894.8546681,127.3886284,978.2279776,8,12,9% +2018-08-18 21:00:00,27.07290421,205.9817904,907.9897445,881.8061393,122.8047466,962.4877292,836.5411886,125.9465406,119.1017303,6.84481023,223.8556421,0,223.8556421,3.70301621,220.1526259,0.472511317,3.595060441,0.367562749,-0.367562749,0.467296758,0.467296758,0.135249046,3.691709812,118.7380777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4851135,2.682822638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.674631192,114.1355567,117.1597446,116.8183794,836.5411886,0,0.948667912,18.43773642,-0.948667912,161.5622636,0.997294518,0,951.4376857,116.8183794,1027.892979,8,13,8% +2018-08-18 22:00:00,34.52077875,230.8597228,830.1267142,864.4895631,117.8558485,948.1719799,827.6120743,120.5599056,114.3020598,6.257845819,204.8276214,0,204.8276214,3.553788673,201.2738327,0.60250125,4.029262272,0.649791711,-0.649791711,0.419032763,0.419032763,0.141973323,3.138401118,100.9417681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8714876,2.574707796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.273760927,97.02906705,112.1452485,99.60377484,827.6120743,0,0.957341892,16.79556,-0.957341892,163.20444,0.997772055,0,937.9134484,99.60377484,1003.102127,8,14,7% +2018-08-18 23:00:00,44.71532394,247.4413849,697.8309894,828.6812749,108.9606921,863.5079437,752.5722738,110.93567,105.6751252,5.260544763,172.4827695,0,172.4827695,3.285566889,169.1972026,0.780429629,4.318666873,0.989124911,-0.989124911,0.361003368,0.361003368,0.156141951,2.42394092,77.96227221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5789499,2.380382026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.756136945,74.94030149,103.3350868,77.32068352,752.5722738,0,0.908156485,24.74817824,-0.908156485,155.2518218,0.994943409,0,852.1019105,77.32068352,902.7067515,8,15,6% +2018-08-18 00:00:00,56.06582776,259.4634399,521.0482649,762.0907828,95.61867262,709.7495436,613.0862448,96.66329876,92.73541684,3.927881912,129.2174401,0,129.2174401,2.883255775,126.3341843,0.978533292,4.528491314,1.466014761,-1.466014761,0.2794504,0.2794504,0.183512122,1.617030371,52.00925524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.14081003,2.088908994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171532999,49.99327441,90.31234303,52.0821834,613.0862448,0,0.804479281,36.44000347,-0.804479281,143.5599965,0.987847995,0,695.948361,52.0821834,730.0351084,8,16,5% +2018-08-18 01:00:00,67.83538213,269.3075879,314.5566371,632.6830521,75.86496155,489.3742727,413.4256588,75.94861385,73.57735305,2.3712608,78.55550699,0,78.55550699,2.287608503,76.26789849,1.183950767,4.700304109,2.316694833,-2.316694833,0.13397554,0.13397554,0.24118061,0.812972176,26.14797975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.7253504,1.657364573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.588995574,25.13443273,71.31434598,26.7917973,413.4256588,0,0.653448291,49.19790442,-0.653448291,130.8020956,0.973482851,0,473.7771352,26.7917973,491.3118306,8,17,4% +2018-08-18 02:00:00,79.60461479,278.3051342,104.3187564,345.9006244,41.9044738,202.5276906,161.1003925,41.42729815,40.6408993,0.78639885,26.55686474,0,26.55686474,1.263574496,25.29329024,1.389362628,4.857340917,4.799289393,-4.799289393,0,0,0.401696447,0.315893624,10.16022483,0.225150459,1,0.205424953,0,0.938161192,0.976923155,0.724496596,1,39.3483513,0.915455421,0.034805508,0.312029739,0.906042542,0.630539138,0.961238037,0.922476074,0.218778086,9.766394565,39.56712939,10.68184999,124.8285651,0,0.465741838,62.24175692,-0.465741838,117.7582431,0.942644388,0,157.2360758,10.68184999,164.227133,8,18,4% +2018-08-18 03:00:00,91.24103492,287.3237021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592456472,5.014744621,-36.70789558,36.70789558,1,0,#DIV/0!,0,0,1,0.827811048,0,0.02723536,0.961238037,1,0.650165758,0.925669162,0,0,0.115824807,0.227654953,0.724496596,0.448993192,0.973852199,0.935090236,0,0,0,0,0,0,0.251566105,75.42979445,-0.251566105,104.5702055,0.851245084,0,0,0,0,8,19,0% +2018-08-18 04:00:00,102.2116841,297.0808004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783930422,5.185038111,-3.146487262,3.146487262,1,0.931765298,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02886657,88.34583761,-0.02886657,91.65416239,0,0,0,0,0,8,20,0% +2018-08-18 05:00:00,112.1926299,308.2948079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958130789,5.380759464,-1.288291574,1.288291574,1,0.750464524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.188509922,100.8658377,0.188509922,79.13416229,0,0.784761972,0,0,0,8,21,0% +2018-08-18 06:00:00,120.592528,321.6915611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104736667,5.614576917,-0.531326825,0.531326825,1,0.621015928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.385752092,112.690439,0.385752092,67.30956101,0,0.920383075,0,0,0,8,22,0% +2018-08-18 07:00:00,126.598852,337.7389645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209566797,5.894656944,-0.053124753,0.053124753,1,0.539238557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549420044,123.3272347,0.549420044,56.67276534,0,0.958994947,0,0,0,8,23,0% +2018-08-19 08:00:00,129.3174348,356.0050073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257015017,6.213459531,0.336656618,-0.336656618,1,0.472582017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668361281,131.9407133,0.668361281,48.05928665,0,0.975190161,0,0,0,8,0,0% +2018-08-19 09:00:00,128.2144299,14.74958495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23776395,0.257428821,0.72395387,-0.72395387,1,0.406350286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734470897,137.2625265,0.734470897,42.73747349,0,0.981923783,0,0,0,8,1,0% +2018-08-19 10:00:00,123.5184743,31.88371123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155804064,0.556475739,1.187831715,-1.187831715,1,0.327022503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743244199,138.0085098,0.743244199,41.99149022,0,0.982727359,0,0,0,8,2,0% +2018-08-19 11:00:00,116.0365907,46.40157674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02522056,0.809860292,1.875803251,-1.875803251,1,0.209372441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69408411,133.9542775,0.69408411,46.04572255,0,0.977962621,0,0,0,8,3,0% +2018-08-19 12:00:00,106.6514513,58.47816809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861418978,1.020636574,3.276088653,-3.276088653,1,0,#DIV/0!,0,0,0.029211479,1,0.296259045,0,0.924946662,0.963708626,0.724496596,1,0,0,0.004927783,0.312029739,0.986121225,0.710617821,0.961238037,0.922476074,0,0,0,0,0,0,-0.590342417,126.1813109,0.590342417,53.81868908,0,0.965303392,0,0,0,8,4,0% +2018-08-19 13:00:00,96.05083498,68.78521949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.67640332,1.200528557,9.431721114,-9.431721114,1,0,#DIV/0!,0,0,0.519869162,1,0.105630557,0,0.95059248,0.989354443,0.724496596,1,0,0,0.071329252,0.312029739,0.817718333,0.542214929,0.961238037,0.922476074,0,0,0,0,0,0,-0.439091977,116.04596,0.439091977,63.95403998,0,0.936128641,0,0,0,8,5,0% +2018-08-19 14:00:00,84.56075057,78.05664235,31.30728638,137.5674777,18.26722628,17.95240955,0,17.95240955,17.716402,0.236007549,42.26468005,34.12304173,8.141638317,0.550824271,7.590814046,1.475863515,1.362345412,-10.39844672,10.39844672,0,0,0.583481623,0.137706068,4.429100501,1,0.235703534,0,0.095873379,0.961238037,1,0.488828632,0.764332036,17.02967948,0.385243691,0.115824807,0.045296435,0.724496596,0.448993192,0.995759419,0.956997456,0.099767577,4.279103644,17.12944706,4.664347335,0,26.08012021,-0.248045849,104.3619056,0.248045849,75.63809435,0,0.848424363,17.12944706,26.7913567,34.6638542,8,6,102% +2018-08-19 15:00:00,72.93531794,87.00180147,221.9331218,538.9110906,63.78906686,63.53861676,0,63.53861676,61.86559114,1.673025617,75.62970723,19.89597668,55.73373055,1.923475722,53.81025483,1.272961439,1.518467891,-3.115318905,3.115318905,0.937095401,0.937095401,0.287424727,1.598033479,51.39824988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.46755938,1.393551613,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.157769816,49.40595282,60.62532919,50.79950443,0,19.89597668,-0.036918848,92.115775,0.036918848,87.884225,0,0,60.62532919,50.79950443,93.87258885,8,7,55% +2018-08-19 16:00:00,61.1383433,96.4012605,434.3630096,717.6912305,87.93603667,221.5400863,132.9812337,88.55885256,85.28444072,3.274411842,107.9679365,0,107.9679365,2.651595955,105.3163406,1.06706539,1.682519399,-1.625130874,1.625130874,0.808067437,0.808067437,0.202448263,2.773177486,89.1949207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97864837,1.921072243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.009157649,85.73755047,83.98780602,87.65862271,132.9812337,0,0.185290314,79.32194117,-0.185290314,100.6780588,0.780153191,0,187.7335399,87.65862271,245.1043553,8,8,31% +2018-08-19 17:00:00,49.57372367,107.3392826,625.721202,805.187089,103.5822705,429.1513546,323.975521,105.1758336,100.4588829,4.716950727,154.8367374,0,154.8367374,3.123387634,151.7133498,0.8652247,1.873423898,-0.933322227,0.933322227,0.689761191,0.689761191,0.165540612,3.495818564,112.4375418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.56489936,2.262883708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.53270865,108.079242,99.09760801,110.3421257,323.975521,0,0.402360551,66.27416889,-0.402360551,113.7258311,0.925733345,0,399.0125506,110.3421257,471.229265,8,9,18% +2018-08-19 18:00:00,38.80368548,121.6569216,778.1546883,851.933983,114.2445307,627.2618199,510.5961245,116.6656953,110.7996366,5.866058734,192.1175075,0,192.1175075,3.444894119,188.6726133,0.677252073,2.12331384,-0.498855104,0.498855104,0.615462937,0.615462937,0.146814679,3.941514103,126.7726424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5048252,2.495814062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85561355,121.8586859,109.3604387,124.3545,510.5961245,0,0.599337665,53.17752386,-0.599337665,126.8224761,0.966574574,0,602.8896703,124.3545,684.2772035,8,10,13% +2018-08-19 19:00:00,29.97961721,142.5586324,879.8068589,876.2141004,120.8273816,792.1395112,668.3231652,123.816346,117.1839903,6.632355734,216.9627503,0,216.9627503,3.643391362,213.319359,0.523243029,2.488117512,-0.172906868,0.172906868,0.559722506,0.559722506,0.137333985,4.113304574,132.2980145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6417088,2.639624639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980075162,127.1698837,115.6217839,129.8095084,668.3231652,0,0.762739569,40.29368888,-0.762739569,139.7063111,0.984446826,0,773.5504023,129.8095084,858.5081294,8,11,11% +2018-08-19 20:00:00,25.41419457,172.8486637,923.1848585,885.3163449,123.5414617,907.0919026,780.3163144,126.7755882,119.8162308,6.959357418,227.5620881,0,227.5620881,3.725230889,223.8368572,0.443561372,3.01677829,0.10565972,-0.10565972,0.512084813,0.512084813,0.133820936,4.018180426,129.2384949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1719185,2.698917098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.91115804,124.2289571,118.0830765,126.9278742,780.3163144,0,0.881398292,28.18849869,-0.881398292,151.8115013,0.993271957,0,893.1493893,126.9278742,976.2211445,8,12,9% +2018-08-19 21:00:00,27.39818541,205.8447062,905.139495,881.6113595,122.4185175,960.6180006,835.0675293,125.5504714,118.7271475,6.823323846,223.1529199,0,223.1529199,3.691369978,219.4615499,0.478188545,3.592667871,0.371864193,-0.371864193,0.466561167,0.466561167,0.135248233,3.675777961,118.2256546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1250502,2.674384983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66308862,113.6429962,116.7881388,116.3173812,835.0675293,0,0.947205955,18.70077257,-0.947205955,161.2992274,0.99721317,0,949.5284766,116.3173812,1025.655876,8,13,8% +2018-08-19 22:00:00,34.81067608,230.5773438,826.9520745,864.1509338,117.447127,945.9779123,825.8383355,120.1395769,113.9056628,6.233914044,204.0455688,0,204.0455688,3.541464214,200.5041046,0.607560912,4.02433383,0.655726135,-0.655726135,0.418017916,0.418017916,0.142024104,3.12115494,100.3870718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4904557,2.565778767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261266129,96.49587178,111.7517218,99.06165055,825.8383355,0,0.95566446,17.12503202,-0.95566446,162.874968,0.997680381,0,935.6744274,99.06165055,1000.508296,8,14,7% +2018-08-19 23:00:00,44.97482866,247.1487746,694.2966217,828.0493168,108.5201592,860.8551897,750.3734125,110.4817772,105.247876,5.233901206,171.6125374,0,171.6125374,3.272283196,168.3402542,0.784958841,4.313559859,0.997884891,-0.997884891,0.359505323,0.359505323,0.1563023,2.405585335,77.37189352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1682617,2.370758036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742838386,74.37280703,102.9111001,76.74356507,750.3734125,0,0.906194109,25.01540733,-0.906194109,154.9845927,0.994824183,0,849.4007174,76.74356507,899.6278458,8,15,6% +2018-08-19 00:00:00,56.30886185,259.1918539,517.1585105,760.8105182,95.12493804,706.464,610.3088705,96.15512948,92.25657018,3.898559301,128.2594362,0,128.2594362,2.868367855,125.3910683,0.982775037,4.523751246,1.480678532,-1.480678532,0.276942748,0.276942748,0.183937683,1.59817627,51.40284255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68052441,2.078122747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.157873267,49.41036746,89.83839768,51.4884902,610.3088705,0,0.802182483,36.66097756,-0.802182483,143.3390224,0.987670043,0,692.6221858,51.4884902,726.3203729,8,16,5% +2018-08-19 01:00:00,68.0730034,269.0580401,310.4020716,629.7201957,75.24885879,485.1370178,409.8172478,75.31976999,72.97982806,2.33994193,77.52960669,0,77.52960669,2.269030731,75.26057596,1.188098041,4.695948678,2.348032263,-2.348032263,0.128616524,0.128616524,0.242423829,0.795254169,25.57810774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15098666,1.643905041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576158938,24.58665007,70.7271456,26.23055512,409.8172478,0,0.650792607,49.39861227,-0.650792607,130.6013877,0.973170608,0,469.549246,26.23055512,486.7166197,8,17,4% +2018-08-19 02:00:00,79.84412594,278.0733751,100.4539554,337.8599122,40.88022642,196.7476235,156.3428224,40.40480111,39.64753676,0.757264348,25.58891417,0,25.58891417,1.232689659,24.35622451,1.393542886,4.853295958,4.925633526,-4.925633526,0,0,0.40695487,0.308172415,9.91188419,0.237908999,1,0.200297299,0,0.938854233,0.977616196,0.724496596,1,38.39445163,0.893079461,0.036577978,0.312029739,0.90151242,0.626009016,0.961238037,0.922476074,0.213117791,9.5276801,38.60756943,10.42075956,119.147458,0,0.462744518,62.43565145,-0.462744518,117.5643486,0.941949017,0,150.8384004,10.42075956,157.6585791,8,18,5% +2018-08-19 03:00:00,91.4927437,287.1066997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596849619,5.010957214,-30.60392238,30.60392238,1,0,#DIV/0!,0,0,1,0.790080579,0,0.032663928,0.961238037,1,0.636045684,0.911549088,0,0,0.115824807,0.211659523,0.724496596,0.448993192,0.976072745,0.937310782,0,0,0,0,0,0,0.248193759,75.62934616,-0.248193759,104.3706538,0.848544491,0,0,0,0,8,19,0% +2018-08-19 04:00:00,102.4797111,296.8794702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788608375,5.181524236,-3.088403835,3.088403835,1,0.941698149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.025197347,88.55614555,-0.025197347,91.44385445,0,0,0,0,0,8,20,0% +2018-08-19 05:00:00,112.4818376,308.1172364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963178416,5.377660258,-1.276290512,1.276290512,1,0.748412222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192409578,101.0934379,0.192409578,78.90656208,0,0.790137676,0,0,0,8,21,0% +2018-08-19 06:00:00,120.9046974,321.5575344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110185051,5.61223771,-0.528487715,0.528487715,1,0.620530412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.389799964,112.9420532,0.389799964,67.05794684,0,0.92172908,0,0,0,8,22,0% +2018-08-19 07:00:00,126.9285361,337.6814197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.215320869,5.893652596,-0.053826235,0.053826235,1,0.539358518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553523786,123.6090969,0.553523786,56.39090308,0,0.959669645,0,0,0,8,23,0% +2018-08-20 08:00:00,129.6481942,356.055436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262787857,6.214339677,0.333740448,-0.333740448,1,0.473080712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672424761,132.254486,0.672424761,47.74551404,0,0.975642238,0,0,0,8,0,0% +2018-08-20 09:00:00,128.5236156,14.90797495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243160259,0.260193248,0.718821111,-0.718821111,1,0.40722804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738400798,137.5953657,0.738400798,42.40463431,0,0.982286097,0,0,0,8,1,0% +2018-08-20 10:00:00,123.7904359,32.11527898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160550689,0.560517358,1.179390215,-1.179390215,1,0.328466084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746956435,138.3274183,0.746956435,41.67258175,0,0.983061692,0,0,0,8,2,0% +2018-08-20 11:00:00,116.2686461,46.66841348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029270691,0.814517472,1.860455988,-1.860455988,1,0.211996978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697509607,134.2275394,0.697509607,45.77246064,0,0.9783164,0,0,0,8,3,0% +2018-08-20 12:00:00,106.8492599,58.75875965,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864871389,1.02553382,3.238550904,-3.238550904,1,0,#DIV/0!,0,0,0.023123767,1,0.29949232,0,0.924444301,0.963206265,0.724496596,1,0,0,0.003911876,0.312029739,0.988966964,0.71346356,0.961238037,0.922476074,0,0,0,0,0,0,-0.593431866,126.4009239,0.593431866,53.59907605,0,0.965744329,0,0,0,8,4,0% +2018-08-20 13:00:00,96.22285546,69.0729293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679405643,1.20555004,9.169881147,-9.169881147,1,0,#DIV/0!,0,0,0.509320059,1,0.108623424,0,0.950252617,0.989014581,0.724496596,1,0,0,0.070165197,0.312029739,0.820369849,0.544866445,0.961238037,0.922476074,0,0,0,0,0,0,-0.44181923,116.2200129,0.44181923,63.77998711,0,0.936831544,0,0,0,8,5,0% +2018-08-20 14:00:00,84.71227373,78.35363552,29.57790551,131.3886383,17.46948544,17.16568674,0,17.16568674,16.942716,0.222970746,40.5916609,32.89338583,7.698275074,0.526769441,7.171505633,1.478508093,1.367528921,-10.69020039,10.69020039,0,0,0.590626183,0.13169236,4.235678999,1,0.263777822,0,0.093272191,0.961238037,1,0.494257994,0.769761398,16.28598306,0.367205557,0.115824807,0.051444659,0.724496596,0.448993192,0.995145997,0.956384034,0.095410667,4.094243662,16.38139373,4.46144922,0,24.21684015,-0.250351828,104.4983325,0.250351828,75.50166746,0,0.850281067,16.38139373,25.0525699,32.77779968,8,6,100% +2018-08-20 15:00:00,73.08196147,87.31537189,219.4146013,536.455664,63.30417135,63.04935696,0,63.04935696,61.39531701,1.654039946,75.99549036,20.88702565,55.10846471,1.908854334,53.19961038,1.275520851,1.523940727,-3.13867215,3.13867215,0.933101761,0.933101761,0.288513941,1.575312335,50.66745978,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.015514,1.382958467,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.141308424,48.70348957,60.15682242,50.08644804,0,20.88702565,-0.038935232,92.23138848,0.038935232,87.76861152,0,0,60.15682242,50.08644804,92.93740093,8,7,54% +2018-08-20 16:00:00,61.28749432,96.74237051,431.9220045,716.8217204,87.55014319,219.7468859,131.580692,88.16619386,84.91018334,3.256010515,107.3644505,0,107.3644505,2.639959843,104.7244906,1.069668566,1.688472892,-1.630323989,1.630323989,0.808955512,0.808955512,0.202698965,2.760055097,88.77285953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.61889795,1.912641919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.999650522,85.33184922,83.61854847,87.24449114,131.580692,0,0.183561251,79.42273823,-0.183561251,100.5772618,0.777611358,0,185.937189,87.24449114,243.0369636,8,8,31% +2018-08-20 17:00:00,49.7384215,107.7209389,623.3598676,804.8211949,103.2214722,427.4245954,322.6164814,104.808114,100.108964,4.69914999,154.2533251,0,154.2533251,3.112508235,151.1408169,0.86809922,1.880085057,-0.933984133,0.933984133,0.689874383,0.689874383,0.165588896,3.483140335,112.0297664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.22854403,2.255001621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523523315,107.6872727,98.75206735,109.9422743,322.6164814,0,0.400854853,66.36836968,-0.400854853,113.6316303,0.925266572,0,397.2583131,109.9422743,469.2133328,8,9,18% +2018-08-20 18:00:00,39.00306317,122.0844786,775.7917575,851.7480587,113.8878515,625.6243605,509.322402,116.3019586,110.4537126,5.848245964,191.5338323,0,191.5338323,3.434138925,188.0996934,0.680731871,2.130776117,-0.497665828,0.497665828,0.615259559,0.615259559,0.14680209,3.928502262,126.3541369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1723099,2.488021961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846186515,121.4564025,109.0184964,123.9444244,509.322402,0,0.59797307,53.27513298,-0.59797307,126.724867,0.966384194,0,601.2196155,123.9444244,682.3387624,8,10,13% +2018-08-20 19:00:00,30.2384247,142.981363,877.346506,876.0834293,120.4653855,790.5171904,667.0704722,123.4467182,116.8329097,6.613808555,216.3552938,0,216.3552938,3.632475843,212.7228179,0.527760072,2.495495553,-0.170608306,0.170608306,0.559329428,0.559329428,0.137306509,4.099479059,131.8533384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3042367,2.631716383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.970058623,126.7424442,115.2742953,129.3741606,667.0704722,0,0.761423456,40.41015219,-0.761423456,139.5898478,0.984333518,0,771.8941197,129.3741606,856.5669203,8,11,11% +2018-08-20 20:00:00,25.73637635,173.0590487,920.5341814,885.1742736,123.1678546,905.3771073,778.9838425,126.3932648,119.4538893,6.939375495,226.9081351,0,226.9081351,3.713965257,223.1941699,0.449184505,3.020450201,0.10892159,-0.10892159,0.511527001,0.511527001,0.133800414,4.00322087,128.7573442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8236221,2.690755186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900319893,123.7664567,117.723942,126.4572119,778.9838425,0,0.880034436,28.35348232,-0.880034436,151.6465177,0.993184041,0,891.3982629,126.4572119,974.161979,8,12,9% +2018-08-20 21:00:00,27.72743112,205.7124909,902.2180515,881.400577,122.0278435,958.6911933,833.5416388,125.1495546,118.3482538,6.801300771,222.4328018,0,222.4328018,3.679589717,218.7532121,0.483934966,3.590360279,0.376264312,-0.376264312,0.465808703,0.465808703,0.135253161,3.65950629,117.7023017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7608431,2.665850224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651299849,113.1399295,116.412143,115.8057797,833.5416388,0,0.945701263,18.96782316,-0.945701263,161.0321768,0.997129181,0,947.5608348,115.8057797,1023.353402,8,13,8% +2018-08-20 22:00:00,35.10513053,230.2984605,823.6994569,863.7913024,117.0333253,943.7148793,824.0011462,119.7137331,113.5043387,6.209394438,203.2444564,0,203.2444564,3.528986563,199.7154698,0.612700112,4.019466398,0.661796167,-0.661796167,0.41697988,0.41697988,0.142082557,3.103560089,99.82116086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1046877,2.556738752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248518719,95.95189671,111.3532064,98.50863546,824.0011462,0,0.953935452,17.45831926,-0.953935452,162.5416807,0.997585552,0,933.3648448,98.50863546,997.8367765,8,14,7% +2018-08-20 23:00:00,45.23887235,246.857426,690.6800829,827.386471,108.0737156,858.1218562,748.1003236,110.0215326,104.8148944,5.206638209,170.7222038,0,170.7222038,3.258821276,167.4633825,0.789567272,4.308474867,1.006856795,-1.006856795,0.357971037,0.357971037,0.156474348,2.38689009,76.77059018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7520633,2.361004921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729293745,73.79481139,102.481357,76.15581631,748.1003236,0,0.904172778,25.28790046,-0.904172778,154.7120995,0.994700835,0,846.6173733,76.15581631,896.4598319,8,15,6% +2018-08-20 00:00:00,56.55619004,258.9202753,513.1858902,759.476952,94.62376724,703.0850013,607.4458778,95.63912354,91.77051153,3.868612011,127.2811162,0,127.2811162,2.853255707,124.4278605,0.987091729,4.519011305,1.495746783,-1.495746783,0.274365925,0.274365925,0.184384974,1.579020204,50.78671762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21330635,2.067174047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143994763,48.81812474,89.35730111,50.88529879,607.4458778,0,0.799821346,36.88695449,-0.799821346,143.1130455,0.98748604,0,689.2016252,50.88529879,722.5050355,8,16,5% +2018-08-20 01:00:00,68.31465529,268.8078577,306.1704877,626.6408941,74.62098194,480.7858861,406.1069597,74.67892647,72.37088401,2.308042464,76.4846774,0,76.4846774,2.250097927,74.23457947,1.192315662,4.691582172,2.380485655,-2.380485655,0.123066667,0.123066667,0.243723628,0.777339562,25.00191242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56564647,1.630188289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.563179867,24.03278921,70.12882634,25.6629775,406.1069597,0,0.648069674,49.60377886,-0.648069674,130.3962211,0.972847802,0,465.2090893,25.6629775,482.0049948,8,17,4% +2018-08-20 02:00:00,80.08737187,277.8406272,96.55370869,329.5201628,39.82805939,190.8291118,151.4741527,39.35495909,38.62709645,0.727862641,24.61152747,0,24.61152747,1.200962941,23.41056453,1.397788328,4.84923374,5.0599395,-5.0599395,0,0,0.412496422,0.300240735,9.656774113,0.251018761,1,0.195116469,0,0.939548591,0.978310554,0.724496596,1,37.41345527,0.870093562,0.038379205,0.312029739,0.896934192,0.621430788,0.961238037,0.922476074,0.207342442,9.282458591,37.62079771,10.15255215,113.4512986,0,0.459680984,62.6334761,-0.459680984,117.3665239,0.941228914,0,144.4044402,10.15255215,151.0490826,8,18,5% +2018-08-20 03:00:00,91.74816821,286.8884971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601307618,5.007148861,-26.20528176,26.20528176,1,0,#DIV/0!,0,0,1,0.750717982,0,0.038141739,0.961238037,1,0.622032896,0.8975363,0,0,0.115824807,0.195797756,0.724496596,0.448993192,0.978219583,0.93945762,0,0,0,0,0,0,0.244755378,75.8326222,-0.244755378,104.1673778,0.845714397,0,0,0,0,8,19,0% +2018-08-20 04:00:00,102.7513989,296.6768437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793350222,5.177987738,-3.031836745,3.031836745,1,0.951371691,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021466602,88.76995982,-0.021466602,91.23004018,0,0,0,0,0,8,20,0% +2018-08-20 05:00:00,112.7747298,307.938476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968290348,5.3745403,-1.264354391,1.264354391,1,0.746371025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.196364099,101.3244215,0.196364099,78.67557852,0,0.79537097,0,0,0,8,21,0% +2018-08-20 06:00:00,121.2206184,321.4228918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115698912,5.609887754,-0.525612157,0.525612157,1,0.620038662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.393894357,113.1970358,0.393894357,66.80296422,0,0.923062411,0,0,0,8,22,0% +2018-08-20 07:00:00,127.261941,337.624692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221139883,5.892662511,-0.054479467,0.054479467,1,0.539470227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557664593,123.8944421,0.557664593,56.10555787,0,0.960340372,0,0,0,8,23,0% +2018-08-21 08:00:00,129.9822858,356.1089162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268618856,6.215273084,0.330876612,-0.330876612,1,0.473570456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676515385,132.5719394,0.676515385,47.4280606,0,0.976091851,0,0,0,8,0,0% +2018-08-21 09:00:00,128.8353012,15.0712968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248600199,0.263043752,0.713751472,-0.713751472,1,0.408094999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742348145,137.9318275,0.742348145,42.06817249,0,0.982646158,0,0,0,8,1,0% +2018-08-21 10:00:00,124.0639526,32.3523413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165324456,0.564654876,1.171043238,-1.171043238,1,0.329893502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750677306,138.6490824,0.750677306,41.35091764,0,0.983393484,0,0,0,8,2,0% +2018-08-21 11:00:00,116.5015516,46.94037915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033335659,0.819264168,1.845305479,-1.845305479,1,0.214587867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700936421,134.5021816,0.700936421,45.49781844,0,0.978666854,0,0,0,8,3,0% +2018-08-21 12:00:00,107.0475338,59.04388886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868331921,1.030510264,3.201732342,-3.201732342,1,0,#DIV/0!,0,0,0.01707806,1,0.302730821,0,0.923938976,0.962700939,0.724496596,1,0,0,0.002897264,0.312029739,0.991817109,0.716313705,0.961238037,0.922476074,0,0,0,0,0,0,-0.596517309,126.6208734,0.596517309,53.37912664,0,0.966180136,0,0,0,8,4,0% +2018-08-21 13:00:00,96.39521731,69.3646862,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682413925,1.210642159,8.921375409,-8.921375409,1,0,#DIV/0!,0,0,0.498870293,1,0.111624404,0,0.949909754,0.988671717,0.724496596,1,0,0,0.069002696,0.312029739,0.823028601,0.547525197,0.961238037,0.922476074,0,0,0,0,0,0,-0.444539515,116.3938808,0.444539515,63.6061192,0,0.937524059,0,0,0,8,5,0% +2018-08-21 14:00:00,84.86404957,78.6543514,27.88147597,125.2122757,16.67256713,16.38001006,0,16.38001006,16.16982772,0.210182343,38.89753322,31.63460715,7.262926065,0.502739414,6.760186651,1.481157082,1.372777403,-10.9992533,10.9992533,0,0,0.597980076,0.125684854,4.04245693,1,0.291351475,0,0.090666008,0.961238037,1,0.499752214,0.775255618,15.54305345,0.349397505,0.115824807,0.057662208,0.724496596,0.448993192,0.994516533,0.955754569,0.091058249,3.909249584,15.6341117,4.258647089,0,22.41781768,-0.252647809,104.6342514,0.252647809,75.3657486,0,0.852096048,15.6341117,23.36078093,30.92327561,8,6,98% +2018-08-21 15:00:00,73.22925214,87.63247777,216.884758,533.9544874,62.81592654,62.55676351,0,62.55676351,60.92179459,1.634968919,76.34380169,21.86344915,54.48035254,1.894131951,52.58622059,1.278091559,1.529475269,-3.162385796,3.162385796,0.929046489,0.929046489,0.289628128,1.552560961,49.93569741,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56034624,1.372292151,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.124825131,48.00009174,59.68517137,49.3723839,0,21.86344915,-0.040946278,92.346705,0.040946278,87.653295,0,0,59.68517137,49.3723839,91.99840918,8,7,54% +2018-08-21 16:00:00,61.43771143,97.08688609,429.4589789,715.9318808,87.16201254,217.9510943,130.1798948,87.77119946,84.53375627,3.237443187,106.7555578,0,106.7555578,2.628256272,104.1273015,1.072290349,1.694485823,-1.635517377,1.635517377,0.809843633,0.809843633,0.202957714,2.74676767,88.34549021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25706192,1.904162722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990023826,84.92104557,83.24708575,86.8252083,130.1798948,0,0.181832795,79.52346685,-0.181832795,100.4765332,0.7750221,0,184.1393812,86.8252083,240.9647436,8,8,31% +2018-08-21 17:00:00,49.9047903,108.1057345,620.9665352,804.4413775,102.858283,425.6858737,321.2480394,104.4378343,99.75672622,4.68110804,153.6620825,0,153.6620825,3.101556738,150.5605258,0.871002903,1.886801008,-0.934600618,0.934600618,0.689979808,0.689979808,0.165642232,3.470256332,111.6153726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.88995968,2.247067299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.514188899,107.2889416,98.40414858,109.5360089,321.2480394,0,0.399343008,66.46288684,-0.399343008,113.5371132,0.924794352,0,395.4925211,109.5360089,467.1816482,8,9,18% +2018-08-21 18:00:00,39.20488739,122.5142753,773.3863572,851.5499186,113.5283528,623.9646937,508.0295266,115.9351671,110.1050541,5.83011304,190.939775,0,190.939775,3.423298712,187.5164763,0.684254368,2.138277485,-0.496418926,0.496418926,0.615046326,0.615046326,0.14679384,3.915242458,125.927656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.837166,2.480168263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.836579833,121.0464529,108.6737459,123.5266211,508.0295266,0,0.596593947,53.37365546,-0.596593947,126.6263445,0.966190903,0,599.5272529,123.5266211,680.3729559,8,10,13% +2018-08-21 19:00:00,30.50035094,143.4042757,874.8331941,875.9404838,120.1000535,788.8612515,665.7877956,123.073456,116.4785938,6.594862148,215.7348961,0,215.7348961,3.621459736,212.1134364,0.532331547,2.502876773,-0.16824354,0.16824354,0.558925029,0.558925029,0.137283375,4.085367331,131.3994567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9636548,2.623735251,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.959834724,126.3061558,114.9234896,128.9298911,665.7877956,0,0.760083371,40.52845177,-0.760083371,139.4715482,0.984217743,0,770.2036508,128.9298911,854.5856859,8,11,11% +2018-08-21 20:00:00,26.06183362,173.2700729,917.820722,885.0186746,122.7903632,903.6166396,777.6099386,126.006701,119.0877807,6.918920292,226.2388427,0,226.2388427,3.7025825,222.5362602,0.454864806,3.024133267,0.112261627,-0.112261627,0.510955821,0.510955821,0.133784693,3.987944201,128.265994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4717046,2.682508417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.889251998,123.2941522,117.3609566,125.9766607,777.6099386,0,0.878636757,28.52164897,-0.878636757,151.478351,0.993093662,0,889.6004583,125.9766607,972.0496632,8,12,9% +2018-08-21 21:00:00,28.06052908,205.5849914,899.2253652,881.1736036,121.6327181,956.7066377,831.9628542,124.7437835,117.9650428,6.778740638,221.6952759,0,221.6952759,3.667675227,218.0276007,0.489748622,3.588134992,0.380762878,-0.380762878,0.465039403,0.465039403,0.135263887,3.642896929,117.1680876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3924862,2.657218216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.639266424,112.6264225,116.0317526,115.2836407,831.9628542,0,0.944153173,19.23884796,-0.944153173,160.761152,0.997042491,0,945.5340693,115.2836407,1020.984907,8,13,8% +2018-08-21 22:00:00,35.40402693,230.0230962,820.3691524,863.4104465,116.6144528,941.38245,822.100064,119.282386,113.0980968,6.184289196,202.4243549,0,202.4243549,3.516356013,198.9079989,0.617916838,4.014660385,0.66800213,-0.66800213,0.415918597,0.415918597,0.142148754,3.085620427,99.24415968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7141925,2.547587961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235521495,95.39726122,110.949714,97.94484918,822.100064,0,0.95215441,17.79531052,-0.95215441,162.2046895,0.997487509,0,930.9842589,97.94484918,995.0872038,8,14,7% +2018-08-21 23:00:00,45.50735269,246.567418,686.9820658,826.6923863,107.6213858,855.3078187,745.7528537,109.5549649,104.376204,5.178760994,169.8119373,0,169.8119373,3.245181863,166.5667554,0.794253138,4.303413273,1.016042527,-1.016042527,0.356400184,0.356400184,0.156658217,2.367860985,76.15854874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3303774,2.351123213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715507223,73.20649388,102.0458846,75.55761709,745.7528537,0,0.902092321,25.56552882,-0.902092321,154.4344712,0.994573301,0,843.7517617,75.55761709,893.2027109,8,15,6% +2018-08-21 00:00:00,56.80771666,258.6487786,509.1315534,758.0892783,94.11518209,699.6127063,604.4973955,95.11531081,91.2772621,3.838048708,126.2827596,0,126.2827596,2.837919988,123.4448396,0.991481696,4.514272793,1.511227217,-1.511227217,0.271718615,0.271718615,0.184854349,1.559570354,50.16114356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73917623,2.056063371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.129903412,48.21679916,88.86907964,50.27286253,604.4973955,0,0.797396049,37.11784209,-0.797396049,142.8821579,0.987295902,0,685.686881,50.27286253,718.5894641,8,16,5% +2018-08-21 01:00:00,68.56024216,268.5570996,301.863663,623.4424701,73.98125012,476.3210158,402.2949975,74.02601827,71.75044247,2.2755758,75.42114761,0,75.42114761,2.230807653,73.19033996,1.196601962,4.687205617,2.414096345,-2.414096345,0.117318901,0.117318901,0.245081668,0.759240989,24.41980008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.96925446,1.616212551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.550067512,23.47324069,69.51932197,25.08945324,402.2949975,0,0.645280065,49.81332298,-0.645280065,130.186677,0.972514265,0,460.7569459,25.08945324,477.1774912,8,17,4% +2018-08-21 02:00:00,80.33424629,277.6069325,92.62282832,320.8767341,38.74756554,184.7744364,146.4970229,38.27741348,37.57918347,0.698230004,23.62585914,0,23.62585914,1.168382064,22.45747708,1.4020971,4.845154998,5.202899395,-5.202899395,0,0,0.418337102,0.292095516,9.394795868,0.264486585,1,0.189884941,0,0.940243737,0.9790057,0.724496596,1,36.40497233,0.846488828,0.040208821,0.312029739,0.892310029,0.616806624,0.961238037,0.922476074,0.20145056,9.030635137,36.60642289,9.877123965,107.7505256,0,0.456552337,62.83514111,-0.456552337,117.1648589,0.940483531,0,137.9440176,9.877123965,144.4083977,8,18,5% +2018-08-21 03:00:00,92.00720627,286.6691196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605828685,5.00332,-22.8865401,22.8865401,1,0,#DIV/0!,0,0,1,0.709638482,0,0.04366603,0.961238037,1,0.608141082,0.883644486,0,0,0.115824807,0.180084606,0.724496596,0.448993192,0.980291622,0.941529659,0,0,0,0,0,0,0.241252307,76.03953568,-0.241252307,103.9604643,0.842748096,0,0,0,0,8,19,0% +2018-08-21 04:00:00,103.0266412,296.4729274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798154107,5.174428726,-2.976759952,2.976759952,1,0.960790378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017676019,88.987186,-0.017676019,91.012814,0,0,0,0,0,8,20,0% +2018-08-21 05:00:00,113.0711979,307.7585122,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973464693,5.371399339,-1.252491433,1.252491433,1,0.744342339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200371528,101.5586858,0.200371528,78.44131417,0,0.800463549,0,0,0,8,21,0% +2018-08-21 06:00:00,121.5401845,321.2876013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121276394,5.607526489,-0.522704082,0.522704082,1,0.619541352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398033127,113.4552772,0.398033127,66.54472282,0,0.924382315,0,0,0,8,22,0% +2018-08-21 07:00:00,127.5989664,337.5687499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227022085,5.891686138,-0.055086309,0.055086309,1,0.539574003,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561840229,124.1831576,0.561840229,55.81684241,0,0.961006729,0,0,0,8,23,0% +2018-08-22 08:00:00,130.3196132,356.1654398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27450633,6.216259607,0.328064221,-0.328064221,1,0.474051404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680630935,132.8929662,0.680630935,47.10703377,0,0.976538749,0,0,0,8,0,0% +2018-08-22 09:00:00,129.1493914,15.23954983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254082107,0.265980321,0.708744514,-0.708744514,1,0.408951239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746310837,138.2718138,0.746310837,41.7281862,0,0.983003787,0,0,0,8,1,0% +2018-08-22 10:00:00,124.3389369,32.59486989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170123837,0.568887799,1.16279033,-1.16279033,1,0.331304832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754404925,138.9734005,0.754404925,41.02659946,0,0.983722596,0,0,0,8,2,0% +2018-08-22 11:00:00,116.7352372,47.21741237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037414243,0.82409931,1.830349745,-1.830349745,1,0.217145448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704362958,134.7781014,0.704362958,45.22189863,0,0.979013871,0,0,0,8,3,0% +2018-08-22 12:00:00,107.2462245,59.33347327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871799728,1.035564465,3.165615702,-3.165615702,1,0,#DIV/0!,0,0,0.011074461,1,0.305974202,0,0.923430734,0.962192697,0.724496596,1,0,0,0.001884039,0.312029739,0.994671372,0.719167968,0.961238037,0.922476074,0,0,0,0,0,0,-0.599597507,126.8410766,0.599597507,53.15892336,0,0.966610727,0,0,0,8,4,0% +2018-08-22 13:00:00,96.56789258,69.66039588,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685427677,1.215803266,8.685220486,-8.685220486,1,0,#DIV/0!,0,0,0.488518909,1,0.114633347,0,0.949563893,0.988325856,0.724496596,1,0,0,0.0678418,0.312029739,0.825694429,0.550191025,0.961238037,0.922476074,0,0,0,0,0,0,-0.447251983,116.5675102,0.447251983,63.43248976,0,0.938206197,0,0,0,8,5,0% +2018-08-22 14:00:00,85.01605757,78.95868638,26.21982455,119.0475721,15.87738241,15.59627686,0,15.59627686,15.39862075,0.197656113,37.1852371,30.34917542,6.836061686,0.478761661,6.357300025,1.483810122,1.37808905,-11.32717759,11.32717759,0,0,0.605548766,0.119690415,3.849655186,1,0.318436696,0,0.088054954,0.961238037,1,0.505311297,0.780814701,14.80173998,0.331822194,0.115824807,0.06394952,0.724496596,0.448993192,0.993870699,0.955108736,0.086715298,3.724356483,14.88845527,4.056178677,0,20.68488429,-0.254933174,104.7696254,0.254933174,75.23037456,0,0.85387017,14.88845527,21.71838435,29.10270346,8,6,95% +2018-08-22 15:00:00,73.37719451,87.95300325,214.3436037,531.4064788,62.32426562,62.06077168,0,62.06077168,60.44495906,1.615812624,76.67432136,22.8249265,53.84939486,1.879306561,51.9700883,1.28067364,1.535069494,-3.186471704,3.186471704,0.924927556,0.924927556,0.290768022,1.529780655,49.20300445,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.10199379,1.361551206,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.108320877,47.29579941,59.21031466,48.65735061,0,22.8249265,-0.042951916,92.46172084,0.042951916,87.53827916,0,0,59.21031466,48.65735061,91.05557749,8,7,54% +2018-08-22 16:00:00,61.58901053,97.43467053,426.9736121,715.0211744,86.77160032,216.1524817,128.7786578,87.37382386,84.15511641,3.218707442,106.1411795,0,106.1411795,2.616483903,103.5246956,1.074931017,1.700555806,-1.640712635,1.640712635,0.810732075,0.810732075,0.203224738,2.733313483,87.91275732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.89309889,1.895633681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.980276314,84.50508626,82.87337521,86.40071994,128.7786578,0,0.180104677,79.62414298,-0.180104677,100.375857,0.772383667,0,182.3399072,86.40071994,238.8874504,8,8,31% +2018-08-22 17:00:00,50.07285093,108.4934957,618.5407204,804.0472839,102.4926619,423.934645,319.8696938,104.0649512,99.40212994,4.662821223,153.0628908,0,153.0628908,3.090531912,149.9723589,0.873936115,1.893568717,-0.935172533,0.935172533,0.690077611,0.690077611,0.165700751,3.45716479,111.1943036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.54910824,2.23907985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.504704122,106.8841941,98.05381236,109.1232739,319.8696938,0,0.397824482,66.55775342,-0.397824482,113.4422466,0.924316433,0,393.7146267,109.1232739,465.133627,8,9,18% +2018-08-22 18:00:00,39.40917036,122.9460803,770.9379579,851.3392966,113.1659974,622.2820701,506.7167891,115.565281,109.753625,5.811655972,190.3352059,0,190.3352059,3.412372358,186.9228335,0.687819778,2.145813903,-0.495115102,0.495115102,0.614823359,0.614823359,0.146790019,3.901733375,125.4931575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.499359,2.472252158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826792548,120.6287963,108.3261516,123.1010485,506.7167891,0,0.595199577,53.47313921,-0.595199577,126.5268608,0.965994564,0,597.8118153,123.1010485,678.3789895,8,10,13% +2018-08-22 19:00:00,30.76537357,143.8271044,872.2664639,875.7850467,119.7313555,787.1708576,664.4743311,122.6965265,116.1210134,6.575513052,215.101445,0,215.101445,3.610342131,211.4911029,0.536957064,2.510256526,-0.165813187,0.165813187,0.558509415,0.558509415,0.137264655,4.07096896,130.9363556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.619935,2.615680584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949403153,125.8610054,114.5693381,128.476686,664.4743311,0,0.758718516,40.64864502,-0.758718516,139.351355,0.984099407,0,768.4781335,128.476686,852.5635549,8,11,11% +2018-08-22 20:00:00,26.39049507,173.4815123,915.0442005,884.8493569,122.4089685,901.8096985,776.1938223,125.6158762,118.7178865,6.8979897,225.5541425,0,225.5541425,3.691082042,221.8630604,0.46060103,3.027823581,0.115679328,-0.115679328,0.510371359,0.510371359,0.133773831,3.972351251,127.7644711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1161482,2.674176375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.877954959,122.8120694,116.9941031,125.4862457,776.1938223,0,0.877204483,28.69304117,-0.877204483,151.3069588,0.993000747,0,887.7551487,125.4862457,969.8833868,8,12,9% +2018-08-22 21:00:00,28.3973667,205.4620475,896.1614323,880.9302526,121.2331369,954.6636882,830.3305343,124.3331539,117.5775105,6.755643417,220.940341,0,220.940341,3.65562638,217.2847147,0.495627548,3.585989217,0.385359624,-0.385359624,0.464253313,0.464253313,0.135280467,3.625952267,116.623089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0199754,2.648488868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.626990074,112.1025491,115.6469654,114.751038,830.3305343,0,0.942561039,19.51380436,-0.942561039,160.4861956,0.996953038,0,943.4475138,114.751038,1018.549773,8,13,8% +2018-08-22 22:00:00,35.70724782,229.7512623,816.9615114,863.0081463,116.1905225,938.980237,820.1346865,118.8455505,112.6869495,6.158600959,201.5853498,0,201.5853498,3.50357295,198.0817769,0.623209041,4.009915988,0.674344321,-0.674344321,0.414834019,0.414834019,0.142222762,3.067340112,98.65620193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3189821,2.538326676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.22227747,94.83209386,110.5412596,97.37042054,820.1346865,0,0.95032091,18.13589521,-0.95032091,161.8641048,0.997386194,0,928.5322732,97.37042054,992.259266,8,14,7% +2018-08-22 23:00:00,45.78016409,246.2788203,683.2033335,825.9667135,107.1631977,852.413013,743.3309058,109.0821072,103.9318319,5.150275314,168.8819238,0,168.8819238,3.2313658,165.650558,0.799014595,4.298376292,1.025444011,-1.025444011,0.354792436,0.354792436,0.156854032,2.348504138,75.53596599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.90323003,2.341113522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701483253,72.60804366,101.6047133,74.94915719,743.3309058,0,0.899952618,25.84816027,-0.899952618,154.1518397,0.994441519,0,840.8038288,74.94915719,889.8565531,8,15,6% +2018-08-22 00:00:00,57.06334255,258.3774322,504.9967276,756.6466832,93.59920792,696.047344,601.4636189,94.5837251,90.77684646,3.806878644,125.2646647,0,125.2646647,2.822361463,122.4423032,0.99594321,4.509536906,1.527127777,-1.527127777,0.268999459,0.268999459,0.185346167,1.539835235,49.5263943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.25815768,2.044791272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115605386,47.60665403,88.37376307,49.6514453,601.4636189,0,0.794906833,37.3535433,-0.794906833,142.6464567,0.987099547,0,682.0782287,49.6514453,714.5741066,8,16,5% +2018-08-22 01:00:00,68.80966508,268.30582,297.4834651,620.1221737,73.32958131,471.7426102,398.3816304,73.36097989,71.11842387,2.242556018,74.33946769,0,74.33946769,2.211157434,72.12831026,1.200955213,4.682819962,2.448907957,-2.448907957,0.111365764,0.111365764,0.246499688,0.740971514,23.83219097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36173415,1.601976034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53683134,22.90840846,68.89856549,24.51038449,398.3816304,0,0.642424424,50.02715882,-0.642424424,129.9728412,0.972169833,0,456.1931687,24.51038449,472.2347251,8,17,4% +2018-08-22 02:00:00,80.58463892,277.3723295,88.66643937,311.9256602,37.63837783,178.5863912,141.4145443,37.17184694,36.50344187,0.668405073,22.63314073,0,22.63314073,1.134935962,21.49820477,1.406467276,4.841060404,5.355289067,-5.355289067,0,0,0.424494071,0.283733991,9.125860467,0.278319471,1,0.184605237,0,0.940939146,0.979701109,0.724496596,1,35.36865572,0.822257241,0.042066437,0.312029739,0.887642146,0.612138742,0.961238037,0.922476074,0.195440712,8.7721242,35.56409644,9.594381441,102.0561231,0,0.453359766,63.04055175,-0.453359766,116.9594483,0.939712313,0,131.4674919,9.594381441,137.7468227,8,18,5% +2018-08-22 03:00:00,92.26975291,286.4485887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610410988,4.999471011,-20.29474471,20.29474471,1,0,#DIV/0!,0,0,1,0.666751027,0,0.04923402,0.961238037,1,0.59438356,0.869886964,0,0,0.115824807,0.164534034,0.724496596,0.448993192,0.982288135,0.943526172,0,0,0,0,0,0,0.23768596,76.24999602,-0.23768596,103.750004,0.839638395,0,0,0,0,8,19,0% +2018-08-22 04:00:00,103.3053293,296.267724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803018131,5.170847252,-2.923146162,2.923146162,1,0.969958876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013827344,89.2077263,-0.013827344,90.7922737,0,0,0,0,0,8,20,0% +2018-08-22 05:00:00,113.3711315,307.5773266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978699521,5.368237053,-1.24070942,1.24070942,1,0.742327496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204429855,101.7961254,0.204429855,78.20387463,0,0.805417329,0,0,0,8,21,0% +2018-08-22 06:00:00,121.863288,321.151626,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126915613,5.605153272,-0.519767392,0.519767392,1,0.619039149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.402214087,113.7166649,0.402214087,66.28333506,0,0.925688094,0,0,0,8,22,0% +2018-08-22 07:00:00,127.9395109,337.5135571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232965709,5.890722842,-0.055648699,0.055648699,1,0.539670178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566048436,124.4751283,0.566048436,55.52487173,0,0.961668336,0,0,0,8,23,0% +2018-08-23 08:00:00,130.6600803,356.2249945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280448603,6.217299032,0.325302263,-0.325302263,1,0.474523726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684769184,133.2174575,0.684769184,46.78254254,0,0.976982695,0,0,0,8,0,0% +2018-08-23 09:00:00,129.4657919,15.41272991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259604337,0.269002884,0.703799642,-0.703799642,1,0.409796862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750286783,138.615226,0.750286783,41.38477399,0,0.983358815,0,0,0,8,1,0% +2018-08-23 10:00:00,124.615303,32.84283282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174947335,0.573215568,1.154630815,-1.154630815,1,0.332700191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758137429,139.3002717,0.758137429,40.69972828,0,0.984048897,0,0,0,8,2,0% +2018-08-23 11:00:00,116.9696354,47.49944848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041505263,0.829021769,1.815586472,-1.815586472,1,0.219670117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707787665,135.0551976,0.707787665,44.94480241,0,0.979357345,0,0,0,8,3,0% +2018-08-23 12:00:00,107.4452864,59.62742788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875274013,1.040694941,3.130183475,-3.130183475,1,0,#DIV/0!,0,0,0.005112934,1,0.309222184,0,0.922919617,0.96168158,0.724496596,1,0,0,0.000872268,0.312029739,0.997529526,0.722026122,0.961238037,0.922476074,0,0,0,0,0,0,-0.602671272,127.061454,0.602671272,52.93854604,0,0.967036032,0,0,0,8,4,0% +2018-08-23 13:00:00,96.74085636,69.95996209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688446465,1.221031683,8.460522529,-8.460522529,1,0,#DIV/0!,0,0,0.478264737,1,0.117650166,0,0.949215031,0.987976994,0.724496596,1,0,0,0.066682532,0.312029739,0.828367228,0.552863824,0.961238037,0.922476074,0,0,0,0,0,0,-0.449955845,116.740851,0.449955845,63.25914896,0,0.938877985,0,0,0,8,5,0% +2018-08-23 14:00:00,85.16827918,79.26653534,24.59478964,112.904324,15.08491245,14.8154526,0,14.8154526,14.63004668,0.185405913,35.45797925,29.03982199,6.418157265,0.454865768,5.963291498,1.48646689,1.383462028,-11.67574827,11.67574827,0,0,0.61333773,0.113716442,3.657511671,1,0.345045765,0,0.085439109,0.961238037,1,0.51093534,0.786438744,14.06295735,0.31448394,0.115824807,0.070307129,0.724496596,0.448993192,0.993208154,0.954446191,0.082387175,3.539816026,14.14534453,3.854299966,0,19.01975438,-0.25720735,104.9044205,0.25720735,75.09557952,0,0.855604311,14.14534453,20.12768381,27.31851103,8,6,93% +2018-08-23 15:00:00,73.52579565,88.27683116,211.7911083,528.8104661,61.82911296,61.56130792,0,61.56130792,59.96473708,1.596570835,76.98673943,23.77115731,53.21558212,1.864375881,51.35120624,1.283267219,1.540721357,-3.210942941,3.210942941,0.920742728,0.920742728,0.291934413,1.506972323,48.46941009,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.64038615,1.350733979,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091796318,46.5906406,58.73218247,47.94137458,0,23.77115731,-0.044952131,92.57643558,0.044952131,87.42356442,0,0,58.73218247,47.94137458,90.10885331,8,7,53% +2018-08-23 16:00:00,61.74140954,97.78558593,424.4655472,714.0890274,86.37885799,214.3507748,127.3767575,86.97401731,83.77421672,3.19980059,105.5212275,0,105.5212275,2.604641273,102.9165862,1.077590881,1.706680435,-1.64591165,1.64591165,0.811621159,0.811621159,0.203500281,2.719690689,87.47460143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.52696362,1.887053735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970406646,84.08391415,82.49737026,85.97096789,127.3767575,0,0.178376579,79.72478564,-0.178376579,100.2752144,0.769694141,0,180.5385143,85.97096789,236.8047933,8,8,31% +2018-08-23 17:00:00,50.24262553,108.8840477,616.0819158,803.6385442,102.124566,422.1703256,318.4809063,103.6894193,99.04513358,4.644285715,152.4556257,0,152.4556257,3.079432466,149.3761932,0.87689924,1.900385136,-0.935700867,0.935700867,0.690167962,0.690167962,0.16576459,3.443863916,110.7665017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.20594976,2.231038339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.495067684,106.4729747,97.70101745,108.704013,318.4809063,0,0.396298695,66.65300501,-0.396298695,113.346995,0.923832539,0,391.9240419,108.704013,463.0686443,8,9,18% +2018-08-23 18:00:00,39.61592437,123.3796623,768.4460238,851.1159185,112.8007473,620.5757126,505.3834533,115.1922593,109.3993886,5.79287072,189.719994,0,189.719994,3.401358721,186.3186352,0.691428316,2.153381338,-0.493755144,0.493755144,0.614590792,0.614590792,0.146790723,3.887973747,125.0506005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1588535,2.464272815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.816823745,120.2033938,107.9756773,122.6676666,505.3834533,0,0.593789215,53.57363395,-0.593789215,126.426366,0.965795035,0,596.0725073,122.6676666,676.3560418,8,10,13% +2018-08-23 19:00:00,31.03346943,144.2495881,869.6458676,875.6168974,119.3592617,785.4451604,663.1292629,122.3158975,115.7601396,6.55575789,214.4548311,0,214.4548311,3.59912213,210.855709,0.54163622,2.517630257,-0.163317924,0.163317924,0.558082699,0.558082699,0.137250421,4.056283644,130.4640254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2730493,2.607551732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.938763692,125.4069836,114.211813,128.0145354,663.1292629,0,0.757328079,40.77078991,-0.757328079,139.2292101,0.983978415,0,766.7166942,128.0145354,850.4996474,8,11,11% +2018-08-23 20:00:00,26.7222893,173.6931482,912.2043656,884.6661287,122.0236529,899.9554902,774.7347189,125.2207713,118.3441895,6.876581825,224.8539729,0,224.8539729,3.679463353,221.1745096,0.466391932,3.031517324,0.11917415,-0.11917415,0.50977371,0.50977371,0.13376789,3.956443044,127.2528085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7569364,2.665758674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866429517,122.3202398,116.6233659,124.9859985,774.7347189,0,0.875736839,28.86769945,-0.875736839,151.1323005,0.992905222,0,885.8615143,124.9859985,967.6623506,8,12,9% +2018-08-23 21:00:00,28.73783136,205.343494,893.0262925,880.6703379,120.829098,952.5617251,828.6440608,123.9176643,117.1856549,6.732009409,220.1680068,0,220.1680068,3.643443117,216.5245637,0.501569777,3.583920067,0.390054248,-0.390054248,0.463450485,0.463450485,0.135302957,3.608674933,116.0673906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6433089,2.639662135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614472705,111.5683907,115.2577816,114.2080528,828.6440608,0,0.940924231,19.79264723,-0.940924231,160.2073528,0.996860758,0,941.3005286,114.2080528,1016.047415,8,13,8% +2018-08-23 22:00:00,36.01467391,229.4829586,813.4769407,862.584184,115.7615501,936.5078962,818.1046511,118.4032451,112.2709123,6.132332793,200.7275402,0,200.7275402,3.49063785,197.2369024,0.628574639,4.005233205,0.680823018,-0.680823018,0.413726097,0.413726097,0.142304648,3.048723579,98.05743021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9190713,2.52895524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208789854,94.25653171,110.1278611,96.78548695,818.1046511,0,0.94843456,18.47996339,-0.94843456,161.5200366,0.99728155,0,926.0085356,96.78548695,989.3527011,8,14,7% +2018-08-23 23:00:00,46.05719812,245.9916942,679.3447147,825.2091042,106.6991825,849.4374323,740.8344364,108.6029959,103.4818085,5.121187416,167.9323653,0,167.9323653,3.217374032,164.7149913,0.803849751,4.293364996,1.035063198,-1.035063198,0.353147458,0.353147458,0.157061916,2.32882596,74.90304817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47065047,2.330976534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687226481,71.99965897,101.1578769,74.33063551,740.8344364,0,0.897753591,26.13565998,-0.897753591,153.86434,0.99430543,0,837.77358,74.33063551,886.4214943,8,15,6% +2018-08-23 00:00:00,57.3229656,258.1062988,500.7827118,755.1483419,93.07587303,692.3892086,598.344805,94.04440366,90.26929204,3.775111613,124.2271473,0,124.2271473,2.806580985,121.4205663,1.000474487,4.504804735,1.543456671,-1.543456671,0.266207054,0.266207054,0.185860795,1.519823672,48.88275366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.77027707,2.03335837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101107077,46.98796216,87.87138415,49.02132053,598.344805,0,0.792353994,37.5939567,-0.792353994,142.4060433,0.986896892,0,678.3760123,49.02132053,710.4594862,8,16,5% +2018-08-23 01:00:00,69.06282221,268.054069,293.0318455,616.6771762,72.66589137,467.050931,394.3671866,72.68374446,70.47474663,2.208997829,73.24010829,0,73.24010829,2.191144733,71.04896356,1.205373638,4.678426077,2.484966583,-2.484966583,0.105199376,0.105199376,0.247979503,0.722544612,23.23951845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.7430071,1.5874769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523481112,22.33870909,68.26648821,23.92618599,394.3671866,0,0.639503458,50.24519644,-0.639503458,129.7548036,0.97181434,0,451.5181753,23.92618599,467.1773855,8,17,3% +2018-08-23 02:00:00,80.8384359,277.1368531,84.68999474,302.6638113,36.50018106,172.2683504,136.2303556,36.03799488,35.39956593,0.638428954,21.63468486,0,21.63468486,1.10061513,20.53406973,1.410896869,4.836950565,5.517981245,-5.517981245,0,0,0.430985752,0.275153783,8.849891483,0.292524585,1,0.179279915,0,0.941634297,0.98039626,0.724496596,1,34.30421247,0.797391915,0.04395165,0.312029739,0.882932802,0.607429398,0.961238037,0.922476074,0.189311558,8.506852315,34.49352403,9.30424423,96.37962736,0,0.45010454,63.24960868,-0.45010454,116.7503913,0.938914695,0,124.9857725,9.30424423,131.0752142,8,18,5% +2018-08-23 03:00:00,92.53570073,286.2269231,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615052653,4.995602216,-18.2156096,18.2156096,1,0,#DIV/0!,0,0,1,0.621957665,0,0.05484292,0.961238037,1,0.580773241,0.856276645,0,0,0.115824807,0.149158974,0.724496596,0.448993192,0.984208741,0.945446778,0,0,0,0,0,0,0.234057814,76.46390937,-0.234057814,103.5360906,0.836377565,0,0,0,0,8,19,0% +2018-08-23 04:00:00,103.5873521,296.0612332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807940357,5.167243308,-2.870967004,2.870967004,1,0.978882037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009922382,89.43148003,-0.009922382,90.56851997,0,0,0,0,0,8,20,0% +2018-08-23 05:00:00,113.6744182,307.3948969,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983992874,5.365053056,-1.229015679,1.229015679,1,0.740327749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208537023,102.0366318,0.208537023,77.96336816,0,0.810234422,0,0,0,8,21,0% +2018-08-23 06:00:00,122.1898197,321.0149248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132614666,5.602767386,-0.516805948,0.516805948,1,0.618532712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.406435021,113.9810843,0.406435021,66.01891575,0,0.926979105,0,0,0,8,22,0% +2018-08-23 07:00:00,128.283473,337.4590727,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238968979,5.889771909,-0.056168634,0.056168634,1,0.539759092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570286936,124.7702371,0.570286936,55.22976289,0,0.962324837,0,0,0,8,23,0% +2018-08-24 08:00:00,131.0035913,356.2875643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.286444,6.218391081,0.322589623,-0.322589623,1,0.474987615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688927901,133.5453028,0.688927901,46.45469724,0,0.977423465,0,0,0,8,0,0% +2018-08-24 09:00:00,129.7844094,15.59082981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265165262,0.272111313,0.698916111,-0.698916111,1,0.410631995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754273904,138.9619655,0.754273904,41.03803455,0,0.983711083,0,0,0,8,1,0% +2018-08-24 10:00:00,124.892967,33.09619495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179793487,0.577637572,1.146563814,-1.146563814,1,0.33407973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.761872984,139.6295954,0.761872984,40.37040458,0,0.984372263,0,0,0,8,2,0% +2018-08-24 11:00:00,117.2046812,47.78641991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045607586,0.834030365,1.801013052,-1.801013052,1,0.222162319,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711209029,135.3333706,0.711209029,44.66662942,0,0.97969718,0,0,0,8,3,0% +2018-08-24 12:00:00,107.6446766,59.9256654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878754029,1.045900168,3.095418007,-3.095418007,1,0.000806034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605737467,127.2819281,0.605737467,52.71807185,0,0.967455989,0,0,0,8,4,0% +2018-08-24 13:00:00,96.91408659,70.26328695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691469903,1.2263257,8.246467637,-8.246467637,1,0,#DIV/0!,0,0,0.468106419,1,0.120674838,0,0.948863158,0.987625121,0.724496596,1,0,0,0.065524894,0.312029739,0.831046951,0.555543546,0.961238037,0.922476074,0,0,0,0,0,0,-0.452650366,116.9138562,0.452650366,63.08614375,0,0.939539468,0,0,0,8,5,0% +2018-08-24 14:00:00,85.32069748,79.57779192,23.00822353,106.7929771,14.2962149,14.03857698,0,14.03857698,13.86513127,0.173445708,33.71924671,27.7095529,6.009693801,0.431083627,5.578610174,1.489127091,1.388894481,-12.0469761,12.0469761,0,0,0.6213524,0.107770907,3.466282819,1,0.371190964,0,0.082818513,0.961238037,1,0.516624519,0.792127923,13.32769157,0.297388881,0.115824807,0.076735658,0.724496596,0.448993192,0.992528543,0.95376658,0.078079655,3.3558979,13.40577122,3.653286781,0,17.42401725,-0.259469805,105.0386046,0.259469805,74.96139543,0,0.85729935,13.40577122,18.59088545,25.57313393,8,6,91% +2018-08-24 15:00:00,73.67506494,88.60384335,209.227205,526.1651893,61.33038454,61.05829021,0,61.05829021,59.48104716,1.577243049,77.28075343,24.70185784,52.57889559,1.849337379,50.72955821,1.28587246,1.546428796,-3.235813818,3.235813818,0.916489558,0.916489558,0.293128155,1.48413653,47.7349325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.175445,1.339838636,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.075251864,45.8846328,58.25069687,47.22447144,0,24.70185784,-0.046946963,92.69085192,0.046946963,87.30914808,0,0,58.25069687,47.22447144,89.15816893,8,7,53% +2018-08-24 16:00:00,61.8949282,98.13949347,421.9343954,713.1348303,85.98373325,212.5456609,125.9739347,86.57172614,83.39100645,3.180719698,104.895606,0,104.895606,2.592726804,102.3028792,1.080270287,1.712857287,-1.651116596,1.651116596,0.812511257,0.812511257,0.203784603,2.705897333,87.03095968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.15860733,1.878421743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960413406,83.65746882,82.11902073,85.53589057,125.9739347,0,0.176648131,79.82541658,-0.176648131,100.1745834,0.766951435,0,178.7349107,85.53589057,234.7164403,8,8,31% +2018-08-24 17:00:00,50.4141372,109.2772152,613.5895955,803.2147725,101.7539509,420.3922967,317.0811053,103.3111914,98.68569384,4.625497552,151.8401584,0,151.8401584,3.068257052,148.7719013,0.879892684,1.907247203,-0.936186743,0.936186743,0.690251052,0.690251052,0.165833892,3.430351899,110.3319088,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.86044261,2.222941789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485278273,106.0552274,97.34572089,108.2781692,317.0811053,0,0.394765032,66.74867949,-0.394765032,113.2513205,0.923342378,0,390.1201428,108.2781692,460.986039,8,9,18% +2018-08-24 18:00:00,39.82516162,123.8147916,765.9100161,850.8795026,112.4325642,618.844821,504.0287602,114.8160608,109.0423076,5.773753223,189.0940075,0,189.0940075,3.390256643,185.7037508,0.695080195,2.160975776,-0.49233992,0.49233992,0.614348775,0.614348775,0.146796049,3.873962375,124.5999466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8156137,2.456229397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806672553,119.7702081,107.6222862,122.2264375,504.0287602,0,0.59236209,53.67519097,-0.59236209,126.324809,0.965592168,0,594.3085093,122.2264375,674.3032682,8,10,13% +2018-08-24 19:00:00,31.30461452,144.6714713,866.9709706,875.4358117,118.983743,783.683304,661.7517665,121.9315375,115.3959441,6.535593387,213.7949481,0,213.7949481,3.587798854,210.2071493,0.546368594,2.524993508,-0.160758482,0.160758482,0.557645009,0.557645009,0.137240746,4.041311216,129.9824606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9229708,2.599348056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.927916219,124.9440853,113.850887,127.5434333,661.7517665,0,0.755911236,40.89494461,-0.755911236,139.1050554,0.983854668,0,764.9184513,127.5434333,848.3930775,8,11,11% +2018-08-24 20:00:00,27.05714475,173.9047672,909.3009948,884.4687971,121.6344,898.0532303,773.2318613,124.821369,117.9666741,6.854694989,224.1382797,0,224.1382797,3.667725943,220.4705537,0.472236262,3.035210773,0.122745506,-0.122745506,0.509162972,0.509162972,0.133766927,3.940220797,126.7310452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3940542,2.65725496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.854676554,121.8187011,116.2487307,124.4759561,773.2318613,0,0.874233058,29.04566215,-0.874233058,150.9543379,0.992807013,0,883.9187452,124.4759561,965.385769,8,12,9% +2018-08-24 21:00:00,29.0818106,205.2291615,889.8200289,880.3936745,120.4206017,950.4001556,826.9028401,123.4973155,116.7894762,6.70783924,219.3782934,0,219.3782934,3.631125445,215.747168,0.507573347,3.581924588,0.39484642,-0.39484642,0.462630975,0.462630975,0.135331413,3.591067792,115.5010844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2624869,2.630738024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.601716391,111.0240356,114.8642032,113.6547737,826.9028401,0,0.939242141,20.07532901,-0.939242141,159.924671,0.996765591,0,939.0925017,113.6547737,1013.477278,8,13,8% +2018-08-24 22:00:00,36.32618447,229.2181747,809.9159016,862.1383433,115.3275543,933.9651261,816.0096349,117.9554912,111.850003,6.105488176,199.8510385,0,199.8510385,3.477551275,196.3734872,0.634011524,4.000611853,0.687438485,-0.687438485,0.412594785,0.412594785,0.142394481,3.02977552,97.44799551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.5144773,2.519474061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.195062051,93.6707199,109.7095394,96.19019396,816.0096349,0,0.946495004,18.82740596,-0.946495004,161.172594,0.997173519,0,923.4127389,96.19019396,986.367297,8,14,7% +2018-08-24 23:00:00,46.33834389,245.7060927,675.4071009,824.4192101,106.229375,846.3811256,738.2634542,108.1176714,103.0261674,5.09150402,166.9634788,0,166.9634788,3.2032076,163.7602712,0.808756671,4.288380309,1.044902074,-1.044902074,0.351464911,0.351464911,0.157281993,2.308833139,74.26001032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.03267088,2.320713002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67274175,71.38154654,100.7054126,73.70225954,738.2634542,0,0.895495211,26.42789096,-0.895495211,153.572109,0.994164972,0,834.661079,73.70225954,882.8977338,8,15,6% +2018-08-24 00:00:00,57.58648103,257.8354353,496.4908731,753.593417,92.54520839,688.6386571,595.1412702,93.49738683,89.75462891,3.74275792,123.1705398,0,123.1705398,2.790579489,120.3799604,1.005073699,4.500077275,1.560222394,-1.560222394,0.263339946,0.263339946,0.18639861,1.499544778,48.23051472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.27556329,2.02176534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.086415087,46.36100529,87.36197837,48.38277063,595.1412702,0,0.789737884,37.83897695,-0.789737884,142.1610231,0.986687854,0,674.5806413,48.38277063,706.246197,8,16,5% +2018-08-24 01:00:00,69.31960911,267.8018922,288.510836,613.1045652,71.99009353,462.2462936,390.2520505,71.99424314,69.81932659,2.174916549,72.12355938,0,72.12355938,2.170766935,69.95279245,1.209855415,4.674024763,2.522320982,-2.522320982,0.098811398,0.098811398,0.249523015,0.703974149,22.64222853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11299243,1.572713255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510026875,21.7645713,67.6230193,23.33728456,390.2520505,0,0.636517933,50.46734215,-0.636517933,129.5326579,0.971447618,0,446.7324441,23.33728456,462.0062301,8,17,3% +2018-08-24 02:00:00,81.09551986,276.9005347,80.6992946,293.0890899,35.33272678,165.8243508,130.9486907,34.87566007,34.2673147,0.60834537,20.63189036,0,20.63189036,1.065412076,19.56647828,1.41538383,4.832826031,5.691961057,-5.691961057,0,0,0.437831916,0.266353019,8.566828675,0.307109257,1,0.173911567,0,0.942328673,0.981090637,0.724496596,1,33.21141808,0.771887422,0.045864034,0.312029739,0.878184296,0.602680892,0.961238037,0.922476074,0.18306191,8.234761578,33.39447999,9.006649,90.73313565,0,0.446788008,63.46220813,-0.446788008,116.5377919,0.938090103,0,118.5103365,9.006649,124.4050082,8,18,5% +2018-08-24 03:00:00,92.80494018,286.0041381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619751768,4.991713883,-16.51150806,16.51150806,1,0,#DIV/0!,0,0,1,0.575152878,0,0.060489934,0.961238037,1,0.567322607,0.842826011,0,0,0.115824807,0.133971314,0.724496596,0.448993192,0.986053387,0.947291423,0,0,0,0,0,0,0.230369404,76.68117895,-0.230369404,103.318821,0.832957289,0,0,0,0,8,19,0% +2018-08-24 04:00:00,103.8725967,295.8534515,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812918815,5.163616831,-2.820193231,2.820193231,1,0.987564864,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00596299,89.65834384,-0.00596299,90.34165616,0,0,0,0,0,8,20,0% +2018-08-24 05:00:00,113.9809442,307.2111976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989342761,5.361846898,-1.217417087,1.217417087,1,0.738344273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212690933,102.2800946,0.212690933,77.7199054,0,0.814917107,0,0,0,8,21,0% +2018-08-24 06:00:00,122.5196692,320.8774524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138371626,5.600368039,-0.513823551,0.513823551,1,0.618022692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41069368,114.2484181,0.41069368,65.75158187,0,0.928254762,0,0,0,8,22,0% +2018-08-24 07:00:00,128.6307505,337.4052511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245030115,5.888832545,-0.056648164,0.056648164,1,0.539841096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574553438,125.0683652,0.574553438,54.93163483,0,0.962975893,0,0,0,8,23,0% +2018-08-25 08:00:00,131.3500507,356.3531298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292490858,6.219535414,0.31992509,-0.31992509,1,0.475443277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693104858,133.8763906,0.693104858,46.12360938,0,0.977860843,0,0,0,8,0,0% +2018-08-25 09:00:00,130.1051519,15.7738394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270763274,0.275305433,0.694093046,-0.694093046,1,0.411456788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758270137,139.3119334,0.758270137,40.68806663,0,0.984060439,0,0,0,8,1,0% +2018-08-25 10:00:00,125.171847,33.35491803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184660862,0.582153141,1.138588263,-1.138588263,1,0.335443629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765609787,139.9612719,0.765609787,40.03872811,0,0.98469258,0,0,0,8,2,0% +2018-08-25 11:00:00,117.4403122,48.0782563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049720122,0.839123871,1.786626611,-1.786626611,1,0.224622545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714625577,135.6125222,0.714625577,44.38747776,0,0.980033291,0,0,0,8,3,0% +2018-08-25 12:00:00,107.8443553,60.22809652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88223908,1.051178586,3.061301569,-3.061301569,1,0.006640289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608795003,127.5024247,0.608795003,52.49757527,0,0.967870548,0,0,0,8,4,0% +2018-08-25 13:00:00,97.08756404,70.5702711,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694497655,1.231683585,8.042313291,-8.042313291,1,0,#DIV/0!,0,0,0.458042426,1,0.123707394,0,0.948508256,0.987270219,0.724496596,1,0,0,0.064368862,0.312029739,0.833733599,0.558230195,0.961238037,0.922476074,0,0,0,0,0,0,-0.455334866,117.0864821,0.455334866,62.91351785,0,0.940190706,0,0,0,8,5,0% +2018-08-25 14:00:00,85.473297,79.89234872,21.46199199,100.7246505,13.51242931,13.26676927,0,13.26676927,13.10497971,0.161789561,31.9728179,26.36165986,5.611158035,0.407449599,5.203708436,1.491790455,1.394384532,-12.44314751,12.44314751,0,0,0.629598097,0.1018624,3.276244927,1,0.396884512,0,0.080193169,0.961238037,1,0.522379087,0.797882492,12.59700497,0.280545126,0.115824807,0.083235809,0.724496596,0.448993192,0.991831496,0.953069533,0.073798962,3.17289105,12.67080393,3.453436176,0,15.89912537,-0.261720043,105.1721479,0.261720043,74.82785207,0,0.858956168,12.67080393,17.11008797,23.8690143,8,6,88% +2018-08-25 15:00:00,73.82501399,88.93392078,206.6517922,523.4692978,60.82798789,60.55162813,0,60.55162813,58.99379963,1.5578285,77.55606647,25.61675864,51.93930783,1.834188266,50.10511956,1.288489564,1.552189734,-3.261099952,3.261099952,0.912165374,0.912165374,0.294350159,1.461273526,46.9995797,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.70708414,1.328863155,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.058687695,45.17778373,57.76577184,46.50664688,0,25.61675864,-0.048936506,92.80497559,0.048936506,87.19502441,0,0,57.76577184,46.50664688,88.20344209,8,7,53% +2018-08-25 16:00:00,62.0495879,98.49625361,419.3797376,712.1579376,85.58617007,210.7367897,124.5698969,86.16689287,83.00543126,3.161461609,104.2642116,0,104.2642116,2.580738807,101.6834728,1.082969608,1.719083926,-1.656329932,1.656329932,0.81340279,0.81340279,0.204077981,2.691931358,86.58176593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.78797779,1.86973648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950295105,83.22568671,81.7382729,85.09542319,124.5698969,0,0.174918919,79.92606025,-0.174918919,100.0739398,0.764153276,0,176.9287677,85.09542319,232.6220203,8,8,31% +2018-08-25 17:00:00,50.58740991,109.6728225,611.0632161,802.7755669,101.38077,418.5999058,315.6696874,102.9302184,98.32376576,4.606452637,151.2163557,0,151.2163557,3.057004272,148.1593514,0.882916863,1.914151853,-0.936631415,0.936631415,0.690327095,0.690327095,0.165908808,3.416626915,109.8904662,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.51254357,2.214789188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475334569,105.630896,96.98787814,107.8456852,315.6696874,0,0.393222839,66.84481692,-0.393222839,113.1551831,0.922845636,0,388.3022716,107.8456852,458.8851156,8,9,18% +2018-08-25 18:00:00,40.03689408,124.2512394,763.3293941,850.6297595,112.0614093,617.0885733,502.6519296,114.4366438,108.6823444,5.754299404,188.4571141,0,188.4571141,3.379064953,185.0780491,0.698775624,2.168593228,-0.490870373,0.490870373,0.614097467,0.614097467,0.146806097,3.859698121,124.1411592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4696033,2.448121056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79633815,119.3292042,107.2659415,121.7773252,502.6519296,0,0.590917404,53.77786294,-0.590917404,126.2221371,0.965385806,0,592.5189796,121.7773252,672.2198034,8,10,13% +2018-08-25 19:00:00,31.57878391,145.0925043,864.2413524,875.2415621,118.6047706,781.884426,660.3410105,121.5434155,115.0283992,6.515016371,213.1216932,0,213.1216932,3.576371439,209.5453217,0.551153753,2.532341919,-0.158135642,0.158135642,0.557196477,0.557196477,0.137235704,4.026051638,129.4916601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5696726,2.591068933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916860707,124.4723092,113.4865333,127.0633781,660.3410105,0,0.754467154,41.02116737,-0.754467154,138.9788326,0.983728063,0,763.0825162,127.0633781,846.2429559,8,11,11% +2018-08-25 20:00:00,27.39498982,174.1161618,906.3338952,884.2571688,121.2411952,896.1021451,771.6844915,124.4176536,117.5853259,6.832327739,223.4070154,0,223.4070154,3.655869368,219.7511461,0.478132771,3.038900305,0.126392777,-0.126392777,0.508539252,0.508539252,0.133771004,3.92368591,126.1992264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0274878,2.648664912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842697085,121.3074967,115.8701849,123.9561616,771.6844915,0,0.872692378,29.22696524,-0.872692378,150.7730348,0.992706043,0,881.9260425,123.9561616,963.0528712,8,12,9% +2018-08-25 21:00:00,29.42919221,205.1188772,886.5427673,880.100078,120.0076504,948.1784144,825.1063036,123.0721108,116.3889769,6.683133857,218.5712314,0,218.5712314,3.61867344,214.952558,0.5136363,3.579999765,0.399735784,-0.399735784,0.461794844,0.461794844,0.13536589,3.573133935,114.9242699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.8775117,2.621716589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588723373,110.4695796,114.4662351,113.0912962,825.1063036,0,0.937514181,20.36179982,-0.937514181,159.6382002,0.996667473,0,936.8228499,113.0912962,1010.838841,8,13,8% +2018-08-25 22:00:00,36.64165751,228.95689,806.2789091,861.6704093,114.8885564,931.3516686,813.849355,117.5023135,111.4242426,6.07807099,198.9559702,0,198.9559702,3.46431387,195.4916563,0.639517567,3.996051576,0.694190975,-0.694190975,0.411440041,0.411440041,0.142492325,3.010500886,96.82805701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1052202,2.509883606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181097644,93.07481144,109.2863178,95.58469504,813.849355,0,0.944501919,19.17811467,-0.944501919,160.8218853,0.997062045,0,920.7446201,95.58469504,983.3028913,8,14,7% +2018-08-25 23:00:00,46.62348829,245.4220608,671.3914447,823.5966824,105.7538126,843.2441971,735.6180199,107.6261772,102.5649449,5.061232307,165.9754965,0,165.9754965,3.188867639,162.7866289,0.813733379,4.283423018,1.054962661,-1.054962661,0.349744449,0.349744449,0.157514388,2.288532627,73.60707606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.58932631,2.310323749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658034098,70.75392129,100.2473604,73.06424504,735.6180199,0,0.893177493,26.72471437,-0.893177493,153.2752856,0.994020085,0,831.4664471,73.06424504,879.2855342,8,15,6% +2018-08-25 00:00:00,57.85378158,257.564893,492.1226444,751.9810586,92.00724755,684.7961073,591.8533893,92.94271793,89.23288956,3.709828367,122.0951907,0,122.0951907,2.774357984,119.3208327,1.009738973,4.49535542,1.577433738,-1.577433738,0.260396633,0.260396633,0.186959996,1.479007943,47.56997949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.77404759,2.010012915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.07153622,45.7260737,86.84558381,47.73608661,591.8533893,0,0.787058906,38.08849509,-0.787058906,141.9115049,0.986472353,0,670.6925897,47.73608661,701.9349036,8,16,5% +2018-08-25 01:00:00,69.57991892,267.5493313,283.9225467,609.4013427,71.30209802,457.3290661,386.0366614,71.29240478,69.15207669,2.140328086,70.99032991,0,70.99032991,2.150021332,68.84030858,1.214398678,4.669616742,2.561022757,-2.561022757,0.092193004,0.092193004,0.251132215,0.685274378,22.04077962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.47160644,1.557683136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.496478954,21.18643573,66.9680854,22.74411886,386.0366614,0,0.633468675,50.69349871,-0.633468675,129.3065013,0.971069499,0,441.8365127,22.74411886,456.7220836,8,17,3% +2018-08-25 02:00:00,81.35576995,276.6634023,76.70050963,283.2006658,34.13585191,159.2591911,125.5744603,33.68473086,33.10653002,0.57820084,19.62624845,0,19.62624845,1.029321883,18.59692657,1.419926051,4.82868729,5.878344544,-5.878344544,0,0,0.445053782,0.257330471,8.276632506,0.322080977,1,0.168502821,0,0.943021767,0.98178373,0.724496596,1,32.09013437,0.7457402,0.047803148,0.312029739,0.873398968,0.597895564,0.961238037,0.922476074,0.176690813,7.955813982,32.26682518,8.701554182,85.12931545,0,0.4434116,63.67824192,-0.4434116,116.3217581,0.937237952,0,112.0532505,8.701554182,117.7482436,8,18,5% +2018-08-25 03:00:00,93.07735967,285.7802458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624506385,4.987806226,-15.0900077,15.0900077,1,0,#DIV/0!,0,0,1,0.526222852,0,0.066172265,0.961238037,1,0.554043686,0.82954709,0,0,0.115824807,0.1189819,0.724496596,0.448993192,0.987822327,0.949060364,0,0,0,0,0,0,0.226622322,76.90170514,-0.226622322,103.0982949,0.8293686,0,0,0,0,8,19,0% +2018-08-25 04:00:00,104.1609484,295.6443719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817951502,5.159967705,-2.770794928,2.770794928,1,0.996012471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.001951071,89.88821182,-0.001951071,90.11178818,0,0,0,0,0,8,20,0% +2018-08-25 05:00:00,114.290594,307.0261993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99474717,5.358618068,-1.205920085,1.205920085,1,0.73637817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216889447,102.5264007,0.216889447,77.47359933,0,0.819467807,0,0,0,8,21,0% +2018-08-25 06:00:00,122.8527254,320.7391588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144184553,5.597954362,-0.510823946,0.510823946,1,0.617509729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.414987789,114.5185475,0.414987789,65.48145247,0,0.929514527,0,0,0,8,22,0% +2018-08-25 07:00:00,128.9812412,337.3520424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251147331,5.887903878,-0.05708938,0.05708938,1,0.539916549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578845636,125.3693917,0.578845636,54.63060825,0,0.963621185,0,0,0,8,23,0% +2018-08-26 08:00:00,131.6993639,356.4216679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298587522,6.220731631,0.317307361,-0.317307361,1,0.475890935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697297829,134.2106085,0.697297829,45.78939153,0,0.978294628,0,0,0,8,0,0% +2018-08-26 09:00:00,130.4279285,15.96174565,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276396789,0.278585016,0.689329445,-0.689329445,1,0.412271412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762273437,139.6650311,0.762273437,40.33496891,0,0.98440674,0,0,0,8,1,0% +2018-08-26 10:00:00,125.451863,33.6189608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189548063,0.586761557,1.130702926,-1.130702926,1,0.336792101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769346063,140.2952022,0.769346063,39.70479781,0,0.985009741,0,0,0,8,2,0% +2018-08-26 11:00:00,117.6764684,48.37488465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053841826,0.844301012,1.772424031,-1.772424031,1,0.227051329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718035881,135.8925563,0.718035881,44.10744372,0,0.980365597,0,0,0,8,3,0% +2018-08-26 12:00:00,108.0442854,60.53462993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885728517,1.056528604,3.02781639,-3.02781639,1,0.012366592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611842842,127.7228721,0.611842842,52.27712795,0,0.968279668,0,0,0,8,4,0% +2018-08-26 13:00:00,97.26127234,70.88081387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697529437,1.237103578,7.847380737,-7.847380737,1,0,#DIV/0!,0,0,0.448071063,1,0.126747927,0,0.948150302,0.986912265,0.724496596,1,0,0,0.063214391,0.312029739,0.836427231,0.560923827,0.961238037,0.922476074,0,0,0,0,0,0,-0.458008721,117.2586884,0.458008721,62.74131165,0,0.940831773,0,0,0,8,5,0% +2018-08-26 14:00:00,85.62606364,80.21009737,19.95797191,94.71115175,12.73478193,12.50123289,0,12.50123289,12.35078126,0.150451623,30.22277095,24.99972893,5.223042017,0.384000661,4.839041356,1.494456736,1.399930292,-12.86687309,12.86687309,0,0,0.63807996,0.096000165,3.087695316,1,0.422138535,0,0.077563045,0.961238037,1,0.528199375,0.803702779,11.87204074,0.26396289,0.115824807,0.089808365,0.724496596,0.448993192,0.99111663,0.952354667,0.069551793,2.99110475,11.94159253,3.25506764,0,14.44637998,-0.263957607,105.3050228,0.263957607,74.69497718,0,0.860575643,11.94159253,15.68727037,22.20859724,8,6,86% +2018-08-26 15:00:00,73.97565662,89.26694369,204.0647335,520.7213466,60.32182184,60.0412225,0,60.0412225,58.50289634,1.538326158,77.81238572,26.51560301,51.29678271,1.818925492,49.47785722,1.291118774,1.558002081,-3.286818357,3.286818357,0.907767268,0.907767268,0.295601405,1.438383251,46.26334975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.23520923,1.317805327,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.042103769,44.47009149,57.277313,45.78789682,0,26.51560301,-0.050920907,92.91881534,0.050920907,87.08118466,0,0,57.277313,45.78789682,87.24457571,8,7,52% +2018-08-26 16:00:00,62.20541172,98.85572618,416.8011244,711.1576669,85.18610864,208.9237739,123.1643178,85.7594561,82.61743316,3.142022933,103.6269336,0,103.6269336,2.568675479,101.0582582,1.085689247,1.725357906,-1.661554414,1.661554414,0.814296229,0.814296229,0.204380707,2.677790607,86.12695076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41501926,1.86099664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.940050179,82.78850107,81.35506944,84.64949771,123.1643178,0,0.173188483,80.02674375,-0.173188483,99.97325625,0.761297201,0,175.1197198,84.64949771,230.5211231,8,8,32% +2018-08-26 17:00:00,50.76246851,110.0706936,608.502217,802.3205089,101.0049754,416.7924679,314.2460185,102.5464494,97.95930269,4.587146744,150.5840802,0,150.5840802,3.045672676,147.5384075,0.885972212,1.921096014,-0.937036266,0.937036266,0.690396329,0.690396329,0.165989494,3.402687131,109.4421148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.16220781,2.206579486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465235244,105.1999236,96.62744305,107.4065031,314.2460185,0,0.391671427,66.94145949,-0.391671427,113.0585405,0.922341977,0,386.469737,107.4065031,456.7651451,8,9,18% +2018-08-26 18:00:00,40.25113348,124.6887787,760.7036149,850.3663917,111.6872433,615.3061262,501.2521602,114.053966,108.3194608,5.734505172,187.809181,0,187.809181,3.367782467,184.4413986,0.702514807,2.176229729,-0.489347524,0.489347524,0.613837045,0.613837045,0.146820971,3.845179915,123.6742038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1207859,2.439946933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.785819759,118.8803489,106.9066056,121.3202958,501.2521602,0,0.58945434,53.88170393,-0.58945434,126.1182961,0.965175788,0,590.7030543,121.3202958,670.1047615,8,10,13% +2018-08-26 19:00:00,31.85595187,145.5124432,861.4566063,875.0339179,118.2223166,780.0476583,658.896157,121.1515013,114.6574776,6.494023779,212.4349668,0,212.4349668,3.56483904,208.8701278,0.555991247,2.539671237,-0.155450235,0.155450235,0.556737246,0.556737246,0.137235371,4.010505004,128.9916269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2131286,2.582713749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905597223,123.9916583,113.1187259,126.574372,658.896157,0,0.752994991,41.14951645,-0.752994991,138.8504836,0.983598496,0,761.2079948,126.574372,844.0483898,8,11,11% +2018-08-26 20:00:00,27.73575292,174.32713,903.3029028,884.0310491,120.8440253,894.101472,770.0918611,124.0096109,117.200132,6.809478838,222.6601401,0,222.6601401,3.643893228,219.0162469,0.484080209,3.042582395,0.130115304,-0.130115304,0.507902662,0.507902662,0.13378018,3.90683997,125.6574031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6572248,2.63998824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830492259,120.7866755,115.4877171,123.4266637,770.0918611,0,0.871114043,29.41164235,-0.871114043,150.5883577,0.992602234,0,879.8826188,123.4266637,960.6629017,8,12,9% +2018-08-26 21:00:00,29.77986443,205.0124655,883.194676,879.7893647,119.5902487,945.8959641,823.2539081,122.642056,115.9841615,6.65789453,217.7468617,0,217.7468617,3.60608724,214.1407745,0.519756685,3.57814253,0.404721957,-0.404721957,0.460942159,0.460942159,0.135406442,3.554876679,114.3370538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4883877,2.61259793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575496052,109.9051251,114.0638837,112.5177231,823.2539081,0,0.935739782,20.65200766,-0.935739782,159.3479923,0.996566341,0,934.491019,112.5177231,1008.131618,8,13,8% +2018-08-26 22:00:00,36.96097002,228.6990747,802.5665314,861.1801686,114.4445807,928.6673086,811.6235688,117.0437398,110.9936543,6.050085519,198.0424737,0,198.0424737,3.450926362,194.5915473,0.645090622,3.991551849,0.701080731,-0.701080731,0.410261824,0.410261824,0.142598247,2.990904873,96.19778188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6913224,2.500184402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.166900399,92.468967,108.8582228,94.9691514,811.6235688,0,0.942455015,19.53198218,-0.942455015,160.4680178,0.99694707,0,918.0039616,94.9691514,980.1593718,8,14,7% +2018-08-26 23:00:00,46.91251614,245.1396357,667.298759,822.7411723,105.272536,840.0268068,732.8982463,107.1285605,102.0981806,5.030379913,164.9686652,0,164.9686652,3.174355373,161.7943098,0.818777867,4.27849377,1.065247022,-1.065247022,0.34798572,0.34798572,0.157759226,2.267931634,72.94447732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.14065467,2.299809662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643108749,70.11700618,99.78376341,72.41681584,732.8982463,0,0.890800498,27.02598989,-0.890800498,152.9740101,0.993870709,0,828.1898634,72.41681584,875.585221,8,15,6% +2018-08-26 00:00:00,58.12475768,257.2947174,487.6795233,750.3104034,91.4620265,680.8620383,588.4815952,92.38044319,88.70410894,3.676334243,121.0014641,0,121.0014641,2.757917558,118.2435466,1.014468398,4.490639966,1.595099805,-1.595099805,0.257375558,0.257375558,0.187545349,1.458222823,46.9014586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.26576354,1.998101882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056477471,45.08346599,86.32224101,47.08156787,588.4815952,0,0.78431752,38.34239877,-0.78431752,141.6576012,0.986250308,0,666.7123958,47.08156787,697.5263403,8,16,5% +2018-08-26 01:00:00,69.84364247,267.2964233,279.2691655,605.5644233,70.60181186,452.2996685,381.7215128,70.57815567,68.47290674,2.105248933,69.84094755,0,69.84094755,2.128905121,67.71204243,1.219001523,4.665202666,2.601126565,-2.601126565,0.085334849,0.085334849,0.252809191,0.666459931,21.43564233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.81876245,1.542384513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.482847951,20.60475475,66.3016104,22.14713927,381.7215128,0,0.63035657,50.92356547,-0.63035657,129.0764345,0.970679815,0,436.8309777,22.14713927,451.3258374,8,17,3% +2018-08-26 02:00:00,81.61906176,276.4254802,72.70020699,272.9992534,32.9095014,152.5785484,120.113345,32.46520338,31.91715851,0.548044869,18.61934977,0,18.61934977,0.99234289,17.62700688,1.42452136,4.824534767,6.078400924,-6.078400924,0,0,0.452674109,0.248085723,7.979289627,0.337447382,1,0.163056338,0,0.943713074,0.982475037,0.724496596,1,30.94033114,0.718949046,0.049768528,0.312029739,0.868579202,0.593075798,0.961238037,0.922476074,0.170197647,7.669996697,31.11052878,8.388945742,79.58141119,0,0.439976826,63.89759744,-0.439976826,116.1024026,0.936357651,0,105.627192,8.388945742,111.1175892,8,18,5% +2018-08-26 03:00:00,93.3528457,285.5552553,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629314523,4.983879401,-13.88672773,13.88672773,1,0,#DIV/0!,0,0,1,0.475044672,0,0.071887117,0.961238037,1,0.540948041,0.816451445,0,0,0.115824807,0.104200543,0.724496596,0.448993192,0.9895161,0.950754137,0,0,0,0,0,0,0.222818214,77.1253856,-0.222818214,102.8746144,0.825601828,0,0,0,0,8,19,0% +2018-08-26 04:00:00,104.4522909,295.4339847,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823036388,5.156295755,-2.722741711,2.722741711,1,0.995769945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002111422,90.12097564,0.002111422,89.87902436,0,0,0,0,0,8,20,0% +2018-08-26 05:00:00,114.6032508,306.839869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00020406,5.35536599,-1.194530691,1.194530691,1,0.734430469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.22113039,102.7754349,0.22113039,77.22456511,0,0.823889061,0,0,0,8,21,0% +2018-08-26 06:00:00,123.1888761,320.59999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150051489,5.595525408,-0.507810817,0.507810817,1,0.616994454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419315051,114.7913514,0.419315051,65.20864863,0,0.930757917,0,0,0,8,22,0% +2018-08-26 07:00:00,129.3348427,337.2993918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257318842,5.886984953,-0.05749442,0.05749442,1,0.539985815,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583161218,125.6731944,0.583161218,54.32680556,0,0.964260416,0,0,0,8,23,0% +2018-08-27 08:00:00,132.0514367,356.493152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304732352,6.221979264,0.314735048,-0.314735048,1,0.476330827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701504593,134.5478427,0.701504593,45.45215729,0,0.978724629,0,0,0,8,0,0% +2018-08-27 09:00:00,130.75265,16.15453254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282064248,0.281949782,0.684624182,-0.684624182,1,0.413076059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766281782,140.0211602,0.766281782,39.97883984,0,0.984749852,0,0,0,8,1,0% +2018-08-27 10:00:00,125.7329373,33.88827896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194453734,0.591462046,1.122906395,-1.122906395,1,0.338125387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773080076,140.6312884,0.773080076,39.36871156,0,0.985323647,0,0,0,8,2,0% +2018-08-27 11:00:00,117.9130929,48.67622936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057971703,0.84956047,1.758401961,-1.758401961,1,0.229449244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721438556,136.1733783,0.721438556,43.82662166,0,0.980694028,0,0,0,8,3,0% +2018-08-27 12:00:00,108.2444328,60.84517252,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889221749,1.061948594,2.994944693,-2.994944693,1,0.017987983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614880001,127.9432015,0.614880001,52.05679851,0,0.968683321,0,0,0,8,4,0% +2018-08-27 13:00:00,97.4351981,71.19481335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700565014,1.242583903,7.661048297,-7.661048297,1,0,#DIV/0!,0,0,0.438190483,1,0.129796593,0,0.947789264,0.986551227,0.724496596,1,0,0,0.062061415,0.312029739,0.839127959,0.563624555,0.961238037,0.922476074,0,0,0,0,0,0,-0.460671365,117.4304379,0.460671365,62.56956208,0,0.941462757,0,0,0,8,5,0% +2018-08-27 14:00:00,85.77898458,80.53092865,18.49804741,88.76498282,11.96459002,11.74325958,0,11.74325958,11.60381348,0.139446095,28.47348929,23.627647,4.84584229,0.360776534,4.485065757,1.49712571,1.405529855,-13.32114679,13.32114679,0,0,0.646802863,0.090194133,2.900953371,1,0.446965041,0,0.074928076,0.961238037,1,0.534085787,0.809589191,11.15402689,0.247654619,0.115824807,0.09645419,0.724496596,0.448993192,0.990383545,0.951621582,0.065345343,2.810869557,11.21937224,3.058524176,0,13.06691478,-0.266182071,105.4372035,0.266182071,74.56279649,0,0.862158649,11.21937224,14.32427776,20.59432555,8,6,84% +2018-08-27 15:00:00,74.12700892,89.60279165,201.4658576,517.9197907,59.81177605,59.52696506,0,59.52696506,58.00823032,1.518734734,78.04942084,27.39814545,50.6512754,1.80354573,48.84772967,1.29376037,1.563863733,-3.31298755,3.31298755,0.903292072,0.903292072,0.29688294,1.415465337,45.52623088,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.75971744,1.306662742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.025499819,43.7615448,56.78521725,45.06820754,0,27.39814545,-0.052900364,93.03238304,0.052900364,86.96761696,0,0,56.78521725,45.06820754,86.28145773,8,7,52% +2018-08-27 16:00:00,62.36242444,99.21777049,414.1980757,710.1332963,84.78348528,207.1061886,121.7568382,85.34935043,82.22695038,3.122400053,102.9836538,0,102.9836538,2.556534899,100.4271189,1.088429636,1.731676772,-1.66679311,1.66679311,0.815192099,0.815192099,0.204693093,2.663472815,85.66644134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.03967236,1.852200831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929676987,82.3458419,80.96934935,84.19804273,121.7568382,0,0.171456315,80.12749691,-0.171456315,99.87250309,0.758380528,0,173.3073646,84.19804273,228.4132996,8,8,32% +2018-08-27 17:00:00,50.9393387,110.4706525,605.9060201,801.8491626,100.626517,414.9692644,312.8094326,102.1598318,97.59225627,4.567575516,149.9431903,0,149.9431903,3.034260761,146.9089295,0.889059179,1.928076614,-0.937402818,0.937402818,0.690459013,0.690459013,0.166076114,3.388530699,108.9867953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.80938883,2.198311592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454978956,104.7622531,96.26436779,106.9605647,312.8094326,0,0.39011007,67.03865158,-0.39011007,112.9613484,0.921831045,0,384.6218139,106.9605647,454.6253643,8,9,18% +2018-08-27 18:00:00,40.46789141,125.1271842,758.032134,850.0890938,111.3100265,613.4966153,499.8286304,113.6679849,107.9536185,5.71436642,187.1500751,0,187.1500751,3.356407988,183.7936671,0.706297946,2.183881347,-0.487772468,0.487772468,0.613567694,0.613567694,0.146840776,3.830406748,123.1990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7691243,2.431706162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.77511665,118.423611,106.5442409,120.8553172,499.8286304,0,0.587972054,53.98676933,-0.587972054,126.0132307,0.964961945,0,588.8598481,120.8553172,667.9572361,8,10,13% +2018-08-27 19:00:00,32.1360919,145.9310502,858.6163398,874.8126442,117.8363535,778.1721271,657.4163618,120.7557653,114.2831527,6.47261265,211.7346731,0,211.7346731,3.553200829,208.1814723,0.560880612,2.546977308,-0.152703145,0.152703145,0.556267465,0.556267465,0.137239822,3.994671536,128.4823682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8533133,2.574281905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.894125929,123.5021394,112.7474393,126.0764213,657.4163618,0,0.751493895,41.28005005,-0.751493895,138.71995,0.98346586,0,759.2939869,126.0764213,841.8084831,8,11,11% +2018-08-27 20:00:00,28.07936259,174.5374753,900.2078831,883.7902424,120.4428782,892.0504599,768.4532315,123.5972284,116.8110811,6.786147272,221.8976207,0,221.8976207,3.631797166,218.2658235,0.490077329,3.046253612,0.133912391,-0.133912391,0.507253322,0.507253322,0.133794516,3.889684745,125.1056321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2832543,2.631224684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818063357,120.2562922,115.1013176,122.8875169,768.4532315,0,0.869497302,29.59972477,-0.869497302,150.4002752,0.992495509,0,877.7876986,122.8875169,958.2151206,8,12,9% +2018-08-27 21:00:00,30.13371599,204.9097482,879.7759656,879.4613512,119.1684035,943.552296,821.3451366,122.2071593,115.5750365,6.632122848,216.9052356,0,216.9052356,3.593367051,213.3118686,0.52593256,3.576349776,0.409804528,-0.409804528,0.460072988,0.460072988,0.135453125,3.536299559,113.7395498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0951212,2.603382196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562036992,109.3307815,113.6571582,111.9341637,821.3451366,0,0.933918398,20.94589858,-0.933918398,159.0541014,0.996462132,0,932.0964841,111.9341637,1005.355156,8,13,8% +2018-08-27 22:00:00,37.28399816,228.4446896,798.779389,860.6674089,113.9956539,925.9118748,809.3320741,116.5798007,110.5582643,6.02153644,197.1107004,0,197.1107004,3.437389563,193.6733108,0.650728526,3.987111992,0.708107984,-0.708107984,0.409060093,0.409060093,0.142712313,2.970992921,95.55734507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2728089,2.490377037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152474258,91.85335478,108.4252832,94.34373182,809.3320741,0,0.940354039,19.88890214,-0.940354039,160.1110979,0.996828537,0,915.1905905,94.34373182,976.9366761,8,14,7% +2018-08-27 23:00:00,47.2053104,244.8588466,663.1301159,821.8523308,104.7855888,836.7291696,730.104298,106.6248716,101.6259167,4.998954921,163.9432462,0,163.9432462,3.159672119,160.783574,0.823888091,4.273593076,1.07575726,-1.07575726,0.346188363,0.346188363,0.158016634,2.247037623,72.27245409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68669663,2.289171695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.627971108,69.47103188,99.31466774,71.76020358,730.104298,0,0.888364333,27.33157601,-0.888364333,152.668424,0.993716786,0,824.8315641,71.76020358,871.7971822,8,15,6% +2018-08-27 00:00:00,58.39929761,257.0249484,483.1630706,748.5805751,90.90958366,676.8369897,585.0263781,91.81061161,88.16832429,3.642287315,119.8897397,0,119.8897397,2.741259368,117.1484803,1.019260024,4.48593161,1.61323002,-1.61323002,0.254275108,0.254275108,0.188155075,1.437199338,46.22527104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.75074696,1.986033081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.041246028,44.43348879,85.79199299,46.41952187,585.0263781,0,0.781514239,38.6005725,-0.781514239,141.3994275,0.986021639,0,662.6406613,46.41952187,693.0213099,8,16,5% +2018-08-27 01:00:00,70.11066842,267.0432013,274.552957,601.5906325,69.88913856,447.158572,377.3071527,69.85141933,67.78172317,2.069696162,68.67595848,0,68.67595848,2.107415391,66.56854309,1.223662005,4.660783108,2.642690328,-2.642690328,0.078227027,0.078227027,0.254556131,0.647545816,20.82729935,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.15437051,1.526815277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.469144739,20.01999234,65.62351525,21.54680762,377.3071527,0,0.62718256,51.15743857,-0.62718256,128.8425614,0.970278395,0,431.7164939,21.54680762,445.8184486,8,17,3% +2018-08-27 02:00:00,81.8852673,276.1867894,68.70537806,262.4874343,31.6537553,145.7891101,114.5719021,31.21720794,30.69927778,0.517930161,17.61289187,0,17.61289187,0.954477512,16.65841435,1.429167523,4.820368826,6.293579534,-6.293579534,0,0,0.460717286,0.238619378,7.674819446,0.353216241,1,0.15757482,0,0.944402098,0.983164061,0.724496596,1,29.76211192,0.691515708,0.051759684,0.312029739,0.863727429,0.588224025,0.961238037,0.922476074,0.163582246,7.377328377,29.92569416,8.068844086,74.10324552,0,0.436485283,64.12015752,-0.436485283,115.8798425,0.935448601,0,99.24547149,8.068844086,104.5263686,8,18,5% +2018-08-27 03:00:00,93.63128296,285.3291724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634174171,4.979933511,-12.85544882,12.85544882,1,0,#DIV/0!,0,0,1,0.421485423,0,0.077631696,0.961238037,1,0.528046751,0.803550155,0,0,0.115824807,0.089636035,0.724496596,0.448993192,0.991135502,0.952373539,0,0,0,0,0,0,0.218958781,77.35211542,-0.218958781,102.6478846,0.821646519,0,0,0,0,8,19,0% +2018-08-27 04:00:00,104.7465062,295.2222764,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828171413,5.152600749,-2.676002893,2.676002893,1,0.987777136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006222488,90.35652462,0.006222488,89.64347538,0,0,0,0,0,8,20,0% +2018-08-27 05:00:00,114.9187965,306.6521697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005711372,5.35209002,-1.183254523,1.183254523,1,0.73250213,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225411551,103.02708,0.225411551,76.97292001,0,0.828183505,0,0,0,8,21,0% +2018-08-27 06:00:00,123.5280083,320.4598872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155970463,5.593080152,-0.504787782,0.504787782,1,0.616477484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.423673145,115.0667067,0.423673145,64.93329329,0,0.931984496,0,0,0,8,22,0% +2018-08-27 07:00:00,129.6914526,337.2472399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26354286,5.886074729,-0.057865455,0.057865455,1,0.540049265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587497862,125.9796492,0.587497862,54.02035076,0,0.964893307,0,0,0,8,23,0% +2018-08-28 08:00:00,132.4061761,356.5675518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310923723,6.223277784,0.312206681,-0.312206681,1,0.476763203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705722939,134.8879788,0.705722939,45.11202116,0,0.979150666,0,0,0,8,0,0% +2018-08-28 09:00:00,131.0792286,16.35218114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28776412,0.285399401,0.679976019,-0.679976019,1,0.413870942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770293169,140.3802225,0.770293169,39.61977753,0,0.985089649,0,0,0,8,1,0% +2018-08-28 10:00:00,126.0149944,34.16282527,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199376558,0.596253783,1.115197108,-1.115197108,1,0.339443752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776810121,140.9694339,0.776810121,39.03056611,0,0.985634206,0,0,0,8,2,0% +2018-08-28 11:00:00,118.1501315,48.98221234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062108807,0.85490088,1.744556843,-1.744556843,1,0.231816899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724832266,136.4548961,0.724832266,43.5451039,0,0.981018523,0,0,0,8,3,0% +2018-08-28 12:00:00,108.4447666,61.15962942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892718233,1.067436903,2.962668735,-2.962668735,1,0.023507497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617905551,128.1633475,0.617905551,51.83665249,0,0.969081484,0,0,0,8,4,0% +2018-08-28 13:00:00,97.60933084,71.51216652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703604204,1.248122761,7.482745601,-7.482745601,1,0,#DIV/0!,0,0,0.428398698,1,0.132853602,0,0.947425102,0.986187065,0.724496596,1,0,0,0.060909843,0.312029739,0.841835947,0.566332543,0.961238037,0.922476074,0,0,0,0,0,0,-0.463322289,117.6016974,0.463322289,62.39830259,0,0.942083759,0,0,0,8,5,0% +2018-08-28 14:00:00,85.93204806,80.85473265,17.08410568,82.89934104,11.20326617,10.99423357,0,10.99423357,10.86544636,0.128787205,26.72966568,22.24960665,4.480059026,0.337819811,4.142239215,1.499797172,1.4111813,-13.80941811,13.80941811,0,0,0.655771299,0.084454953,2.716361591,1,0.471375868,0,0.072288168,0.961238037,1,0.540038803,0.815542207,10.44428033,0.231635123,0.115824807,0.103174217,0.724496596,0.448993192,0.989631829,0.950869866,0.061187326,2.632538258,10.50546766,2.864173381,0,11.76167901,-0.268393046,105.5686661,0.268393046,74.43133392,0,0.863706053,10.50546766,13.02280673,19.02863421,8,6,81% +2018-08-28 15:00:00,74.27908914,89.9413437,198.8549604,515.0629825,59.29773101,59.00873833,0,59.00873833,57.50968564,1.499052688,78.26688196,28.26414916,50.0027328,1.788045375,48.21468742,1.296414671,1.569772581,-3.339627636,3.339627636,0.898736349,0.898736349,0.298195886,1.392519141,44.78820232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.28049732,1.295432788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.008875377,43.05212367,56.2893727,44.34755646,0,28.26414916,-0.054875132,93.14569357,0.054875132,86.85430643,0,0,56.2893727,44.34755646,85.31396145,8,7,52% +2018-08-28 16:00:00,62.52065243,99.58224544,411.5700825,709.0840649,84.37823245,205.2835734,120.3470669,84.93650655,81.83391742,3.10258913,102.3342465,0,102.3342465,2.544315031,99.78993149,1.091191235,1.738038059,-1.672049399,1.672049399,0.816090977,0.816090977,0.205015466,2.648975617,85.20016165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.66187413,1.843347579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919173817,81.89763612,80.58104795,83.7409837,120.3470669,0,0.169721861,80.22835215,-0.169721861,99.77164785,0.755400354,0,171.4912649,83.7409837,226.2980639,8,8,32% +2018-08-28 17:00:00,51.11804695,110.8725231,603.2740317,801.3610748,100.2453435,413.1295457,311.3592347,101.770311,97.22257652,4.547734475,149.2935404,0,149.2935404,3.022766972,146.2707735,0.892178227,1.935090579,-0.937732723,0.937732723,0.69051543,0.69051543,0.166168836,3.37415576,108.5244478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.45403859,2.189984382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444564362,104.3178272,95.89860296,106.5078116,311.3592347,0,0.388538007,67.13643954,-0.388538007,112.8635605,0.921312461,0,382.7577457,106.5078116,452.4649782,8,9,18% +2018-08-28 18:00:00,40.6871791,125.5662322,755.3144062,849.7975518,110.9297187,611.6591569,498.3804995,113.2786574,107.5847784,5.69387904,186.4796628,0,186.4796628,3.344940305,183.1347225,0.710125239,2.191544182,-0.486146377,0.486146377,0.613289616,0.613289616,0.14686562,3.815377679,122.7156614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4145812,2.423397865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.76422814,117.9589615,106.1788093,120.3823594,498.3804995,0,0.586469681,54.09311574,-0.586469681,125.9068843,0.964744101,0,586.9884562,120.3823594,665.7763027,8,10,13% +2018-08-28 19:00:00,32.41917669,146.3480935,855.7201755,874.5775026,117.4468545,776.2569551,655.9007765,120.3561787,113.9053985,6.45078014,211.0207197,0,211.0207197,3.541455996,207.4792637,0.565821374,2.554256086,-0.149895302,0.149895302,0.555787296,0.555787296,0.137249136,3.978551587,127.9638952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4902017,2.565772814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882447081,123.0037634,112.3726487,125.5695362,655.9007765,0,0.74996301,41.41282618,-0.74996301,138.5871738,0.983330045,0,757.3395889,125.5695362,839.522339,8,11,11% +2018-08-28 20:00:00,28.42574742,174.7470067,897.048731,883.5345519,120.0377438,889.9483707,766.7678755,123.1804952,116.4181629,6.762332249,221.1194314,0,221.1194314,3.619580868,217.4998505,0.496122885,3.049910625,0.137783311,-0.137783311,0.506591356,0.506591356,0.133814072,3.872222185,124.5439761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9055664,2.622374018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805411791,119.7164071,114.7109782,122.3387811,766.7678755,0,0.867841415,29.7912413,-0.867841415,150.2087587,0.992385787,0,875.6405199,122.3387811,955.7088053,8,12,9% +2018-08-28 21:00:00,30.49063623,204.8105455,876.286889,879.1158549,118.7421238,941.1469303,819.379499,121.7674313,115.1616106,6.605820714,216.0464147,0,216.0464147,3.580513143,212.4659015,0.532161993,3.574618363,0.414983064,-0.414983064,0.459187406,0.459187406,0.135505992,3.517406329,113.1318785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6977205,2.594069584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548348912,108.7466648,113.2460694,111.3407344,819.379499,0,0.932049507,21.24341678,-0.932049507,158.7565832,0.996354781,0,929.6387506,111.3407344,1002.509034,8,13,8% +2018-08-28 22:00:00,37.61061743,228.1936873,794.9181542,860.1319193,113.5418056,923.0852395,806.9747095,116.11053,110.1181012,5.992428822,196.1608141,0,196.1608141,3.423704363,192.7371097,0.656429108,3.982731176,0.715272955,-0.715272955,0.40783481,0.40783481,0.142834586,2.950770708,94.90692917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8497074,2.480462156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.137823333,91.22815028,107.9875308,93.70861243,806.9747095,0,0.938198771,20.24876919,-0.938198771,159.7512308,0.996706389,0,912.3043797,93.70861243,973.6347924,8,14,7% +2018-08-28 23:00:00,47.50175239,244.5797153,658.8866453,820.9298083,104.2930176,833.3515556,727.2363914,106.1151642,101.1481983,4.966965847,162.8995148,0,162.8995148,3.144819281,159.7546955,0.82906198,4.268721316,1.08649552,-1.08649552,0.344352013,0.344352013,0.158286738,2.225858295,71.5912541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.22749559,2.278410864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.612626758,68.81623655,98.84012234,71.09464741,727.2363914,0,0.88586915,27.64133033,-0.88586915,152.3586697,0.993558256,0,821.3918429,71.09464741,867.9218678,8,15,6% +2018-08-28 00:00:00,58.67728769,256.7556205,478.5749083,746.7906833,90.3499597,672.72156,581.4882851,91.23327487,87.62557506,3.60769981,118.7604119,0,118.7604119,2.724384641,116.0360273,1.024111866,4.481230951,1.631834144,-1.631834144,0.251093616,0.251093616,0.188789588,1.415947652,45.54174379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22903575,1.973807398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025849254,43.7764564,85.254885,45.75026379,581.4882851,0,0.778649624,38.86289797,-0.778649624,141.137102,0.985786266,0,658.4780502,45.75026379,688.4206829,8,16,5% +2018-08-28 01:00:00,70.38088342,266.7896939,269.776261,597.4767047,69.16397781,441.9062976,372.7941815,69.1121161,67.07842869,2.033687409,67.49592695,0,67.49592695,2.085549119,65.41037783,1.228378146,4.65635857,2.685775475,-2.685775475,0.070859033,0.070859033,0.25637533,0.628547405,20.21624515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.47833711,1.510973237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455380455,19.4326238,64.93371757,20.94359704,372.7941815,0,0.623947643,51.39501116,-0.623947643,128.6049888,0.969865071,0,426.4937729,20.94359704,440.2009383,8,17,3% +2018-08-28 02:00:00,82.15425485,275.9473473,64.72346761,251.6700314,30.36886098,138.898725,108.9576844,29.94104061,29.45312777,0.487912838,16.60868727,0,16.60868727,0.915733208,15.69295406,1.433862242,4.816189773,6.525542656,-6.525542656,0,0,0.469209424,0.228933302,7.363281943,0.369395434,1,0.152061005,0,0.945088349,0.983850313,0.724496596,1,28.55574458,0.663445592,0.053776103,0.312029739,0.858846127,0.583342722,0.961238037,0.922476074,0.156845049,7.077866679,28.71258963,7.741312271,68.70921326,0,0.432938653,64.34580048,-0.432938653,115.6541995,0.934510196,0,92.92205001,7.741312271,97.98858406,8,18,5% +2018-08-28 03:00:00,93.91255448,285.1019999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639083285,4.975968602,-11.9621316,11.9621316,1,0,#DIV/0!,0,0,1,0.365401166,0,0.083403214,0.961238037,1,0.515350402,0.790853806,0,0,0.115824807,0.075296171,0.724496596,0.448993192,0.992681567,0.953919604,0,0,0,0,0,0,0.215045773,77.58178725,-0.215045773,102.4182127,0.817491362,0,0,0,0,8,19,0% +2018-08-28 04:00:00,105.0434747,295.0092308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833354491,5.148882401,-2.630547628,2.630547628,1,0.980003828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010380089,90.59474595,0.010380089,89.40525405,0,0,0,0,0,8,20,0% +2018-08-28 05:00:00,115.2371118,306.4630613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011267022,5.348789456,-1.172096806,1.172096806,1,0.730594048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229730688,103.2812168,0.229730688,76.71878324,0,0.832353849,0,0,0,8,21,0% +2018-08-28 06:00:00,123.8700084,320.3187871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16193949,5.590617492,-0.501758389,0.501758389,1,0.615959428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428059733,115.3444888,0.428059733,64.65551119,0,0.933193872,0,0,0,8,22,0% +2018-08-28 07:00:00,130.0509687,337.1955223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269817599,5.885172086,-0.058204684,0.058204684,1,0.540107277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591853244,126.2886306,0.591853244,53.71136943,0,0.965519598,0,0,0,8,23,0% +2018-08-29 08:00:00,132.7634898,356.6448331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317160023,6.224626597,0.309720723,-0.309720723,1,0.477188327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709950665,135.2309014,0.709950665,44.76909856,0,0.979572571,0,0,0,8,0,0% +2018-08-29 09:00:00,131.4075781,16.55466974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293494899,0.288933494,0.675383617,-0.675383617,1,0.414656289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774305621,140.7421202,0.774305621,39.25787983,0,0.985426014,0,0,0,8,1,0% +2018-08-29 10:00:00,126.2979609,34.44254968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204315257,0.601135895,1.107573369,-1.107573369,1,0.340747488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780534533,141.3095428,0.780534533,38.69045718,0,0.985941335,0,0,0,8,2,0% +2018-08-29 11:00:00,118.3875328,49.29275316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06625224,0.86032084,1.730884944,-1.730884944,1,0.234154931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728215718,136.7370192,0.728215718,43.2629808,0,0.981339027,0,0,0,8,3,0% +2018-08-29 12:00:00,108.6452585,61.47790418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896217478,1.072991845,2.930970893,-2.930970893,1,0.028928147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620918612,128.3832475,0.620918612,51.61675254,0,0.969474148,0,0,0,8,4,0% +2018-08-29 13:00:00,97.78366277,71.83276935,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70664687,1.253718336,7.311948762,-7.311948762,1,0,#DIV/0!,0,0,0.418693602,1,0.135919222,0,0.947057771,0.985819735,0.724496596,1,0,0,0.059759568,0.312029739,0.844551409,0.569048004,0.961238037,0.922476074,0,0,0,0,0,0,-0.465961039,117.7724366,0.465961039,62.22756343,0,0.942694891,0,0,0,8,5,0% +2018-08-29 14:00:00,86.08524288,81.18139873,15.71803341,77.12811815,10.45232306,10.25563613,0,10.25563613,10.13714695,0.118489175,24.99630532,20.87011003,4.126195281,0.315176105,3.811019176,1.502470926,1.416882699,-14.33568025,14.33568025,0,0,0.664989238,0.078794026,2.534286738,1,0.495382598,0,0.069643207,0.961238037,1,0.546058953,0.821562357,9.744211235,0.215921718,0.115824807,0.109969433,0.724496596,0.448993192,0.988861056,0.950099092,0.057086004,2.456486909,9.801297239,2.672408626,0,10.5314207,-0.270590163,105.699388,0.270590163,74.30061202,0,0.865218707,9.801297239,11.78439083,17.51394535,8,6,79% +2018-08-29 15:00:00,74.43191737,90.2824784,196.2318121,512.1491759,58.77955869,58.48641641,0,58.48641641,57.00713812,1.479278288,78.46447668,29.11338139,49.35109529,1.772420568,47.57867473,1.299082027,1.575726505,-3.366760338,3.366760338,0.894096384,0.894096384,0.299541436,1.369543805,44.04923654,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.79742953,1.284112668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.992229824,42.34180165,55.78965936,43.62591432,0,29.11338139,-0.056845511,93.25876452,0.056845511,86.74123548,0,0,55.78965936,43.62591432,84.34194776,8,7,51% +2018-08-29 16:00:00,62.68012325,99.94900958,408.9166134,708.0091746,83.97027937,203.4554388,118.934587,84.52085179,81.43826563,3.082586159,101.6785809,0,101.6785809,2.53201374,99.1465672,1.093974526,1.744439301,-1.67732696,1.67732696,0.816993493,0.816993493,0.205348173,2.634296582,84.7280334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28155858,1.834435336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.908538906,81.44380849,80.19009749,83.27824383,118.934587,0,0.167984528,80.32934412,-0.167984528,99.67065588,0.752353541,0,169.6709551,83.27824383,224.1749001,8,8,32% +2018-08-29 17:00:00,51.29862005,111.2761295,600.6056484,800.8557771,99.86140197,411.2725378,309.8947065,101.3778313,96.85021225,4.527619074,148.6349827,0,148.6349827,3.011189719,145.623793,0.895329822,1.942134839,-0.93802776,0.93802776,0.690565884,0.690565884,0.166267837,3.359560476,108.0550133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09610789,2.181596701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433990128,103.8665889,95.53009802,106.0481856,309.8947065,0,0.38695445,67.2348714,-0.38695445,112.7651286,0.920785825,0,380.8767509,106.0481856,450.2831674,8,9,18% +2018-08-29 18:00:00,40.90900709,126.0057016,752.5498917,849.491445,110.5462799,609.7928551,496.9069145,112.8859406,107.2129016,5.673038962,185.7978122,0,185.7978122,3.33337821,182.464434,0.713996867,2.19921437,-0.484470489,0.484470489,0.613003023,0.613003023,0.146895616,3.800091854,122.2240167,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0571191,2.415021166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753153612,117.4863739,105.8102727,119.9013951,496.9069145,0,0.584946343,54.20080049,-0.584946343,125.7991995,0.964522074,0,585.0879607,119.9013951,663.5610257,8,10,13% +2018-08-29 19:00:00,32.70517781,146.7633475,852.7677556,874.3282518,117.0537937,774.3012673,654.3485538,119.9527134,113.5241899,6.428523552,210.2930191,0,210.2930191,3.529603761,206.7634153,0.570813035,2.561503634,-0.14702768,0.14702768,0.555296904,0.555296904,0.137263391,3.962145654,127.436224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1237694,2.55718591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870561039,122.4965458,111.9943305,125.0537317,654.3485538,0,0.748401476,41.54790214,-0.748401476,138.4520979,0.983190939,0,755.3438994,125.0537317,837.1890657,8,11,11% +2018-08-29 20:00:00,28.7748359,174.9555394,893.8253744,883.2637803,119.6286132,887.7944843,765.0350819,122.7594024,116.0213692,6.738033226,220.3255545,0,220.3255545,3.607244072,216.7183104,0.502215628,3.053550207,0.141727303,-0.141727303,0.505916893,0.505916893,0.133838909,3.854454426,123.972504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5241531,2.613436051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.792539111,119.1670863,114.3166922,121.7805224,765.0350819,0,0.866145651,29.98621784,-0.866145651,150.0137822,0.992272988,0,873.4403392,121.7805224,953.1432555,8,12,9% +2018-08-29 21:00:00,30.85051501,204.714677,872.7277427,878.7526937,118.3114206,938.6794202,817.3565351,121.3228851,114.7438948,6.578990366,215.1704712,0,215.1704712,3.567525854,211.6029453,0.538443063,3.572945141,0.420257111,-0.420257111,0.458285491,0.458285491,0.135565096,3.498200959,112.5141678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2961961,2.584660337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534434686,108.1528978,112.8306308,110.7375581,817.3565351,0,0.930132608,21.54450437,-0.930132608,158.4554956,0.996244224,0,927.117358,110.7375581,999.592875,8,13,8% +2018-08-29 22:00:00,37.9407028,227.9460131,790.9835511,859.5734902,113.083068,920.1873203,804.5513559,115.6359644,109.6731963,5.962768121,195.1929914,0,195.1929914,3.409871732,191.7831197,0.662190184,3.978408446,0.72257586,-0.72257586,0.40658594,0.40658594,0.142965132,2.930244139,94.24672415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4220479,2.470440462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.122951904,90.5935361,107.5449998,93.06397657,804.5513559,0,0.935989028,20.61147873,-0.935989028,159.3885213,0.99658057,0,909.345249,93.06397657,970.2537604,8,14,7% +2018-08-29 23:00:00,47.80172197,244.3022569,654.5695336,819.973255,103.7948718,829.8942891,724.294794,105.5994951,100.6650734,4.934421636,161.8377601,0,161.8377601,3.129798347,158.7079618,0.834297437,4.263878753,1.097463993,-1.097463993,0.342476294,0.342476294,0.158569665,2.204401585,70.90113256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.76309758,2.267528248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597081444,68.15286547,98.36017902,70.42039372,724.294794,0,0.883315144,27.9551098,-0.883315144,152.0448902,0.993395061,0,817.87105,70.42039372,863.9597893,8,15,6% +2018-08-29 00:00:00,58.95861246,256.4867632,473.9167171,744.9398236,89.78319738,668.5164049,577.8679178,90.64848711,87.07590272,3.572584397,117.6138895,0,117.6138895,2.707294666,114.9065949,1.02902191,4.476538505,1.650922288,-1.650922288,0.247829351,0.247829351,0.189449315,1.394478169,44.85121139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.70066978,1.961425769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.010294686,43.11269038,84.71096447,45.07411615,577.8679178,0,0.775724293,39.12925433,-0.775724293,140.8707457,0.98554411,0,654.2252869,45.07411615,683.7253945,8,16,5% +2018-08-29 01:00:00,70.65417235,266.5359264,264.9414897,593.2192809,68.42622507,436.543413,368.1832502,68.36016278,66.36292192,1.997240861,66.30143472,0,66.30143472,2.063303152,64.23813156,1.233147938,4.65192949,2.730447205,-2.730447205,0.063219717,0.063219717,0.258269194,0.60948043,19.60298572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79056479,1.49485611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.441566497,18.84313551,64.23213128,20.33799162,368.1832502,0,0.620652872,51.63617369,-0.620652872,128.3638263,0.96943967,0,421.16358,20.33799162,434.4743887,8,17,3% +2018-08-29 02:00:00,82.42588892,275.7071685,60.76240413,240.5545392,29.05527137,131.9165742,103.2793738,28.6372004,28.17914774,0.458052669,15.608672,0,15.608672,0.876123634,14.73254836,1.438603151,4.811997861,6.776205776,-6.776205776,0,0,0.478178436,0.219030909,7.044786934,0.385992931,1,0.146517677,0,0.945771345,0.984533309,0.724496596,1,27.32169755,0.634748591,0.055817245,0.312029739,0.853937824,0.57843442,0.961238037,0.922476074,0.149987282,6.771717163,27.47168483,7.406465753,63.41426553,0,0.429338703,64.57440012,-0.429338703,115.4255999,0.933541829,0,86.67155426,7.406465753,91.51893796,8,18,6% +2018-08-29 03:00:00,94.19654176,284.8737378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644039798,4.971984677,-11.18115291,11.18115291,1,0,#DIV/0!,0,0,1,0.306635783,0,0.089198891,0.961238037,1,0.502869065,0.778372469,0,0,0.115824807,0.061187776,0.724496596,0.448993192,0.994155537,0.955393573,0,0,0,0,0,0,0.211080987,77.81429166,-0.211080987,102.1857083,0.813124094,0,0,0,0,8,19,0% +2018-08-29 04:00:00,105.3430757,294.7948288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838583515,5.145140381,-2.586345013,2.586345013,1,0.972444736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014582143,90.83552489,0.014582143,89.16447511,0,0,0,0,0,8,20,0% +2018-08-29 05:00:00,115.5580763,306.2725004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016868908,5.345463541,-1.16106237,1.16106237,1,0.728707049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234085533,103.5377242,0.234085533,76.46227578,0,0.836402862,0,0,0,8,21,0% +2018-08-29 06:00:00,124.2147617,320.176623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167956572,5.588136259,-0.4987261,0.4987261,1,0.615440876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.43247246,115.6245713,0.43247246,64.37542869,0,0.934385702,0,0,0,8,22,0% +2018-08-29 07:00:00,130.4132884,337.1441706,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27614127,5.884275831,-0.058514314,0.058514314,1,0.540160227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596225035,126.6000114,0.596225035,53.3999886,0,0.966139046,0,0,0,8,23,0% +2018-08-30 08:00:00,133.1232859,356.7249591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32343965,6.22602506,0.307275587,-0.307275587,1,0.477606469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714185579,135.5764941,0.714185579,44.42350589,0,0.979990185,0,0,0,8,0,0% +2018-08-30 09:00:00,131.7376132,16.76197435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299255099,0.292551642,0.670845562,-0.670845562,1,0.415432342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778317184,141.1067555,0.778317184,38.89324448,0,0.985758838,0,0,0,8,1,0% +2018-08-30 10:00:00,126.5817655,34.72739965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209268581,0.606107464,1.100033383,-1.100033383,1,0.342036902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784251675,141.6515202,0.784251675,38.34847978,0,0.986244956,0,0,0,8,2,0% +2018-08-30 11:00:00,118.6252472,49.60776926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07040114,0.865818908,1.717382426,-1.717382426,1,0.236463998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731587659,137.0196587,0.731587659,42.98034127,0,0.98165549,0,0,0,8,3,0% +2018-08-30 12:00:00,108.8458828,61.79989888,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899719031,1.078611713,2.899833794,-2.899833794,1,0.034252905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623918349,128.6028411,0.623918349,51.39715891,0,0.969861309,0,0,0,8,4,0% +2018-08-30 13:00:00,97.95818806,72.15651687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709692911,1.259368796,7.148176385,-7.148176385,1,0,#DIV/0!,0,0,0.409073022,1,0.138993763,0,0.946687219,0.985449182,0.724496596,1,0,0,0.058610468,0.312029739,0.847274596,0.571771192,0.961238037,0.922476074,0,0,0,0,0,0,-0.468587203,117.9426278,0.468587203,62.05737217,0,0.943296275,0,0,0,8,5,0% +2018-08-30 14:00:00,86.23855756,81.51081568,14.40171327,71.46589505,9.71337842,9.52905042,0,9.52905042,9.420484222,0.108566198,23.27872747,19.49397116,3.784756318,0.292894198,3.49186212,1.505146772,1.42263211,-14.90457806,14.90457806,0,0,0.674459923,0.073223549,2.355121056,1,0.518996431,0,0.066993076,0.961238037,1,0.552146788,0.827650192,9.05532776,0.200534379,0.115824807,0.116840837,0.724496596,0.448993192,0.98807079,0.949308827,0.053050212,2.283115931,9.108377972,2.483650311,0,9.376669707,-0.272773064,105.8293472,0.272773064,74.17065283,0,0.866697443,9.108377972,10.61038597,16.05266338,8,6,76% +2018-08-30 15:00:00,74.58551481,90.6260738,193.5961699,509.176539,58.25712421,57.95986668,0,57.95986668,56.50045697,1.459409704,78.64190643,29.94560641,48.69630002,1.756667241,46.93963278,1.301762808,1.581723376,-3.394408948,3.394408948,0.889368193,0.889368193,0.300920851,1.346538389,43.30930329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.31038834,1.272699436,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.975562479,41.63054967,55.28595082,42.90324911,0,29.94560641,-0.058811835,93.37161546,0.058811835,86.62838454,0,0,55.28595082,42.90324911,83.3652693,8,7,51% +2018-08-30 16:00:00,62.84086496,100.3179211,406.237128,706.9077972,83.55955311,201.6212775,117.5189661,84.10231135,81.03992428,3.062387066,101.0165238,0,101.0165238,2.519628828,98.49689494,1.096779998,1.750878022,-1.682629729,1.682629729,0.81790032,0.81790032,0.205691571,2.619433263,84.24997797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.89865772,1.825462509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.897770482,80.98428343,79.7964282,82.80974594,117.5189661,0,0.166243698,80.43050899,-0.166243698,99.56949101,0.749236719,0,167.8459528,82.80974594,222.0432753,8,8,32% +2018-08-30 17:00:00,51.48108439,111.681296,597.9002694,800.332789,99.47463929,409.3974542,308.4151176,100.9823367,96.4751119,4.507224785,147.96737,0,147.96737,2.999527397,144.9678426,0.898514425,1.949206329,-0.938289803,0.938289803,0.690610696,0.690610696,0.166373297,3.34474307,107.5784346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.73554716,2.173147388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.423254968,103.4084833,95.15880213,105.5816307,308.4151176,0,0.385358593,67.33399604,-0.385358593,112.666004,0.92025072,0,378.9780361,105.5816307,448.0791018,8,9,18% +2018-08-30 18:00:00,41.13338449,126.4453734,749.7380657,849.1704482,110.1596705,607.8968127,495.4070205,112.4897922,106.83795,5.65184223,185.1043947,0,185.1043947,3.321720511,181.7826742,0.717912992,2.20688809,-0.482746095,0.482746095,0.612708134,0.612708134,0.146930876,3.78454854,121.7240903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6967013,2.406575203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.741892534,117.0058256,105.4385938,119.4124008,495.4070205,0,0.583401155,54.30988091,-0.583401155,125.6901191,0.964295679,0,583.1574429,119.4124008,661.310471,8,10,13% +2018-08-30 19:00:00,32.99406501,147.1765934,849.75875,874.0646494,116.6571464,772.3042007,652.7588572,119.5453434,113.139503,6.405840397,209.5514905,0,209.5514905,3.517643383,206.0338471,0.575855068,2.568716137,-0.144101285,0.144101285,0.554796461,0.554796461,0.137282666,3.945454401,126.899376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7539938,2.548520657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858468283,121.980507,111.6124621,124.5290277,652.7588572,0,0.74680844,41.68533373,-0.74680844,138.3146663,0.983048427,0,753.3060297,124.5290277,834.8077877,8,11,11% +2018-08-30 20:00:00,29.12655585,175.1628955,890.5377795,882.9777307,119.2154798,885.588106,763.2541628,122.3339432,115.6206932,6.713249947,219.5159815,0,219.5159815,3.594786574,215.9211949,0.508354299,3.057169254,0.145743586,-0.145743586,0.505230068,0.505230068,0.133869087,3.836383807,123.3912907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1390082,2.604410636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779447009,118.6084021,113.9184552,121.2128127,763.2541628,0,0.864409301,30.18467658,-0.864409301,149.8153234,0.992157031,0,871.1864396,121.2128127,950.5178012,8,12,9% +2018-08-30 21:00:00,31.21324245,204.6219635,869.0988699,878.3716873,117.8763078,936.1493564,815.2758199,120.8735366,114.3219022,6.55163439,214.2774887,0,214.2774887,3.554405597,210.7230831,0.544773851,3.571326984,0.425626198,-0.425626198,0.457367323,0.457367323,0.135630493,3.478687638,111.8865524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8905608,2.575154755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520297352,107.5496099,112.4108582,110.1247647,815.2758199,0,0.928167234,21.84910083,-0.928167234,158.1508992,0.996130397,0,924.5318846,110.1247647,996.6063406,8,13,8% +2018-08-30 22:00:00,38.27412879,227.7016067,786.9763558,858.9919137,112.6194761,917.2180826,802.061939,115.1561435,109.2235833,5.93256019,194.2074215,0,194.2074215,3.395892725,190.8115288,0.668009566,3.974142749,0.730016912,-0.730016912,0.405313445,0.405313445,0.143104015,2.909419345,93.57692721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9898628,2.460312719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107864412,89.94970181,107.0977272,92.41001453,802.061939,0,0.933724668,20.97692668,-0.933724668,159.0230733,0.996451024,0,906.3131676,92.41001453,966.7936739,8,14,7% +2018-08-30 23:00:00,48.10509775,244.0264812,650.1800215,818.9823204,103.2912035,826.3577488,721.2798245,105.0779242,100.1765926,4.901331639,160.7582846,0,160.7582846,3.114610888,157.6436737,0.839592343,4.259065558,1.108664917,-1.108664917,0.340560823,0.340560823,0.158865545,2.182675646,70.20235166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.29355119,2.256524986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581341075,67.48117069,97.87489226,69.73769568,721.2798245,0,0.880702558,28.27277097,-0.880702558,151.727229,0.993227143,0,814.269592,69.73769568,859.9115191,8,15,6% +2018-08-30 00:00:00,59.24315501,256.218402,469.1902325,743.0270755,89.20934131,664.2222343,574.1659296,90.05630469,86.51935053,3.53695416,116.4505948,0,116.4505948,2.689990788,113.760604,1.033988114,4.47185472,1.670504932,-1.670504932,0.244480521,0.244480521,0.190134694,1.372801507,44.15401543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.16569065,1.948889169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994590018,42.44251911,84.16028067,44.39140828,574.1659296,0,0.772738906,39.39951863,-0.772738906,140.6004814,0.985295092,0,649.8831529,44.39140828,678.9364418,8,16,4% +2018-08-30 01:00:00,70.93041857,266.281921,260.0511247,588.8149046,67.67577096,431.0705284,363.4750564,67.59547199,65.63509677,1.960375224,65.09308014,0,65.09308014,2.040674191,63.05240595,1.237969344,4.647496259,2.776774771,-2.776774771,0.055297237,0.055297237,0.260240255,0.59036097,18.98803815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.09095157,1.478461505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427714513,18.25202452,63.51866608,19.73048602,363.4750564,0,0.617299347,51.88081438,-0.617299347,128.1191856,0.96900202,0,415.7267301,19.73048602,428.6399386,8,17,3% +2018-08-30 02:00:00,82.7000302,275.4662654,56.83063054,229.1516157,27.71368996,124.8533628,97.54692951,27.30643326,26.87801996,0.428413298,14.61491434,0,14.61491434,0.835670005,13.77924434,1.443387818,4.807793309,7.047787334,-7.047787334,0,0,0.4876541,0.208917501,6.71950499,0.403016769,1,0.14094766,0,0.946450611,0.985212574,0.724496596,1,26.06068231,0.605440074,0.057882537,0.312029739,0.849005104,0.573501699,0.961238037,0.922476074,0.143011173,6.459043785,26.20369348,7.064483859,58.23388115,0,0.425687287,64.80582584,-0.425687287,115.1941742,0.932542886,0,80.50928509,7.064483859,85.13284848,8,18,6% +2018-08-30 03:00:00,94.48312506,284.6443846,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64904162,4.967981709,-10.49285625,10.49285625,1,0,#DIV/0!,0,0,1,0.245019653,0,0.095015963,0.961238037,1,0.490612285,0.766115689,0,0,0.115824807,0.04731673,0.724496596,0.448993192,0.995558841,0.956796878,0,0,0,0,0,0,0.207066256,78.04951746,-0.207066256,101.9504825,0.808531395,0,0,0,0,8,19,0% +2018-08-30 04:00:00,105.6451871,294.57905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843856354,5.14137433,-2.543364163,2.543364163,1,0.965094577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018826543,91.07874521,0.018826543,88.92125479,0,0,0,0,0,8,20,0% +2018-08-30 05:00:00,115.8815682,306.0804417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022514907,5.342111484,-1.150155647,1.150155647,1,0.726841889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.238473795,103.79648,0.238473795,76.20351999,0,0.840333357,0,0,0,8,21,0% +2018-08-30 06:00:00,124.562153,320.0333249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174019694,5.585635236,-0.495694267,0.495694267,1,0.614922402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436908962,115.9068265,0.436908962,64.09317354,0,0.935559683,0,0,0,8,22,0% +2018-08-30 07:00:00,130.7783087,337.0931134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282512076,5.883384715,-0.058796539,0.058796539,1,0.54020849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600610909,126.9136633,0.600610909,53.08633671,0,0.966751429,0,0,0,8,23,0% +2018-08-31 08:00:00,133.4854729,356.8078907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329761005,6.22747249,0.304869664,-0.304869664,1,0.478017907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7184255,135.9246394,0.7184255,44.07536063,0,0.980403361,0,0,0,8,0,0% +2018-08-31 09:00:00,132.0692494,16.97406938,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305043243,0.296253398,0.666360402,-0.666360402,1,0.41619935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78232592,141.4740305,0.78232592,38.52596948,0,0.986088018,0,0,0,8,1,0% +2018-08-31 10:00:00,126.8663373,35.01732059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214235297,0.61116754,1.092575301,-1.092575301,1,0.343312309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787959938,141.9952712,0.787959938,38.00472885,0,0.986544997,0,0,0,8,2,0% +2018-08-31 11:00:00,118.8632268,49.92717624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074554667,0.871393612,1.704045417,-1.704045417,1,0.238744761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734946865,137.3027265,0.734946865,42.69727355,0,0.981967871,0,0,0,8,3,0% +2018-08-31 12:00:00,109.0466145,62.1255143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903222461,1.084294774,2.869240484,-2.869240484,1,0.039484669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626903956,128.8220696,0.626903956,51.17793037,0,0.970242966,0,0,0,8,4,0% +2018-08-31 13:00:00,98.13290198,72.48330327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712742244,1.265072295,6.990986228,-6.990986228,1,0,#DIV/0!,0,0,0.399534771,1,0.142077558,0,0.94631339,0.985075353,0.724496596,1,0,0,0.057462412,0.312029739,0.850005782,0.574502378,0.961238037,0.922476074,0,0,0,0,0,0,-0.471200399,118.1122453,0.471200399,61.88775472,0,0.943888036,0,0,0,8,5,0% +2018-08-31 14:00:00,86.39197918,81.84287167,13.13701904,65.92792391,8.988159466,8.816165694,0,8.816165694,8.717133295,0.099032399,21.58256313,18.1263146,3.456248533,0.271026171,3.185222362,1.507824484,1.42842758,-15.52154157,15.52154157,0,0,0.684185616,0.067756543,2.179283324,1,0.542228007,0,0.064337671,0.961238037,1,0.55830283,0.833806234,8.379240096,0.185495887,0.115824807,0.123789382,0.724496596,0.448993192,0.987260595,0.948498632,0.049089385,2.11285104,8.42832948,2.298346927,0,8.297719154,-0.274941383,105.958521,0.274941383,74.04147898,0,0.868143055,8.42832948,9.501954183,14.64716845,8,6,74% +2018-08-31 15:00:00,74.73990274,90.97200755,190.9477978,506.1431761,57.73028857,57.42895252,0,57.42895252,55.98950736,1.439445156,78.79886217,30.76057668,48.03828549,1.740781202,46.29750429,1.304457385,1.587761059,-3.422598205,3.422598205,0.884547546,0.884547546,0.302335451,1.323502046,42.56837531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.81924414,1.261190055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.958872727,40.91834152,54.77811687,42.17953157,0,30.76057668,-0.060774457,93.48426701,0.060774457,86.51573299,0,0,54.77811687,42.17953157,82.3837767,8,7,50% +2018-08-31 16:00:00,63.00290502,100.6888381,403.5310949,705.7790845,83.14598025,199.7805808,116.0997708,83.68081001,80.63882217,3.041987845,100.347944,0,100.347944,2.50715808,97.84078587,1.099608131,1.757351744,-1.687961839,1.687961839,0.818812165,0.818812165,0.20604603,2.604383289,83.76591908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.51310311,1.816427495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.886866827,80.51898761,79.39996994,82.33541511,116.0997708,0,0.164498741,80.53188344,-0.164498741,99.46811656,0.746046306,0,166.015775,82.33541511,219.9026575,8,8,32% +2018-08-31 17:00:00,51.66546488,112.0878474,595.1573133,799.7916244,99.08500316,407.5035138,306.9197418,100.583772,96.09722473,4.486547223,147.2905595,0,147.2905595,2.98777843,144.3027811,0.901732472,1.956301989,-0.938520795,0.938520795,0.690650198,0.690650198,0.1664854,3.329701894,107.0946587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37230765,2.164635302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.412357688,102.9434595,94.78466533,105.1080948,306.9197418,0,0.383749632,67.43386218,-0.383749632,112.5661378,0.919706716,0,377.060813,105.1080948,445.8519589,8,9,18% +2018-08-31 18:00:00,41.36031791,126.8850316,746.8784333,848.8342349,109.7698526,605.9701479,493.8799762,112.0901717,106.4598866,5.630285113,184.3992893,0,184.3992893,3.309966065,181.0893232,0.721873727,2.214561574,-0.480974517,0.480974517,0.612405176,0.612405176,0.146971512,3.768747175,121.2158641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3332924,2.398059146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730444499,116.5172993,105.0637369,118.9153584,493.8799762,0,0.581833244,54.42041321,-0.581833244,125.5795868,0.964064725,0,581.1960001,118.9153584,659.0237239,8,10,13% +2018-08-31 19:00:00,33.28580543,147.5876204,846.6928672,873.7864538,116.2568903,770.2649187,651.1308742,119.1340446,112.7513161,6.382728477,208.7960625,0,208.7960625,3.505574184,205.2904883,0.580946899,2.575889912,-0.141117143,0.141117143,0.554286142,0.554286142,0.137307039,3.928478693,126.3533788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3808537,2.539776563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.84616944,121.4556738,111.2270232,123.9954504,651.1308742,0,0.745183072,41.82517414,-0.745183072,138.1748259,0.982902394,0,751.2251184,123.9954504,832.3776607,8,11,11% +2018-08-31 20:00:00,29.48083381,175.3689056,887.185958,882.6762082,118.7983392,883.3285777,761.4244642,121.9041134,115.2161309,6.687982501,218.6907153,0,218.6907153,3.582208245,215.108507,0.514537616,3.060764809,0.149831366,-0.149831366,0.504531017,0.504531017,0.133904666,3.818012881,122.8004186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7501275,2.59529768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766137336,118.0404333,113.5162648,120.635731,761.4244642,0,0.862631684,30.38663506,-0.862631684,149.6133649,0.992037835,0,868.8781419,120.635731,947.8318151,8,12,9% +2018-08-31 21:00:00,31.57870868,204.5322289,865.4006642,877.9726574,117.4368015,933.5563746,813.1369702,120.4194044,113.8956487,6.523755754,213.3675632,0,213.3675632,3.541152862,209.8264103,0.55115244,3.56976082,0.431089848,-0.431089848,0.456432984,0.456432984,0.135702232,3.458870778,111.249174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4808297,2.565553194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505940104,106.9369376,111.9867698,109.5024908,813.1369702,0,0.926152954,22.15714226,-0.926152954,157.8428577,0.996013237,0,921.8819556,109.5024908,993.5491458,8,13,8% +2018-08-31 22:00:00,38.61076953,227.4604044,782.8973965,858.3869839,112.1510674,914.1775423,799.506432,114.6711102,108.769299,5.901811272,193.2043063,0,193.2043063,3.381768477,189.8225379,0.673885055,3.969932975,0.73759633,-0.73759633,0.404017288,0.404017288,0.143251297,2.888302674,92.89774246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.5531874,2.45007975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092565455,89.29684359,106.6457529,91.74692334,799.506432,0,0.931405586,21.34500898,-0.931405586,158.654991,0.996317694,0,903.2081573,91.74692334,963.2546837,8,14,7% +2018-08-31 23:00:00,48.41175738,243.7523939,645.7194013,817.9566526,102.7820673,822.7423661,718.1918518,104.5505143,99.68280873,4.8677056,159.6614033,0,159.6614033,3.099258554,156.5621447,0.844944563,4.254281833,1.120100595,-1.120100595,0.338605207,0.338605207,0.159174507,2.160688828,69.49518004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.81890737,2.245402272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.565411701,66.80141043,97.38431907,69.0468127,718.1918518,0,0.878031677,28.5941702,-0.878031677,151.4058298,0.993054446,0,810.5879308,69.0468127,855.7776888,8,15,6% +2018-08-31 00:00:00,59.53079729,255.9505602,464.3972399,741.0515009,88.62843753,659.8398072,570.3830216,89.45678569,85.95596314,3.500822556,115.2709618,0,115.2709618,2.672474396,112.5984874,1.039008419,4.467179997,1.690592952,-1.690592952,0.241045268,0.241045268,0.190846176,1.350928483,43.4505038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.62414126,1.936198602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.978743087,41.76627697,83.60288435,43.70247557,570.3830216,0,0.769694172,39.67356628,-0.769694172,140.3264337,0.985039134,0,645.4524819,43.70247557,674.0548781,8,16,4% +2018-08-31 01:00:00,71.20950428,266.0276984,255.1077111,584.2600163,66.91250042,425.4882892,358.6703379,66.81795134,64.89484165,1.923109684,63.87147687,0,63.87147687,2.017658769,61.8538181,1.242840308,4.643059239,2.824831823,-2.824831823,0.047078997,0.047078997,0.262291172,0.57120543,18.37193012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37939019,1.461786909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.413836389,17.65979804,62.79322658,19.12158495,358.6703379,0,0.613888214,52.12881972,-0.613888214,127.8711803,0.968551947,0,410.1840805,19.12158495,422.6987754,8,17,3% +2018-08-31 02:00:00,82.97653552,275.2246495,52.93713414,217.47564,26.34512346,117.7215331,91.77174984,25.94978326,25.55072078,0.399062478,13.62962373,0,13.62962373,0.794402675,12.83522106,1.448213747,4.803576316,7.342870739,-7.342870739,0,0,0.497668109,0.198600669,6.387680196,0.420475021,1,0.135353825,0,0.94712568,0.985887643,0.724496596,1,24.77370308,0.575542034,0.059971375,0.312029739,0.844050604,0.5685472,0.961238037,0.922476074,0.135920212,6.140081171,24.90962329,6.715623205,53.18402136,0,0.421986342,65.03994276,-0.421986342,114.9600572,0.931512753,0,74.45121744,6.715623205,78.84645851,8,18,6% +2018-08-31 03:00:00,94.77218367,284.4139383,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654086644,4.963959662,-9.881910408,9.881910408,1,0,#DIV/0!,0,0,1,0.180368109,0,0.100851688,0.961238037,1,0.478589053,0.754092457,0,0,0.115824807,0.033687993,0.724496596,0.448993192,0.996893074,0.958131111,0,0,0,0,0,0,0.203003447,78.28735234,-0.203003447,101.7126477,0.803698764,0,0,0,0,8,19,0% +2018-08-31 04:00:00,105.949686,294.3618733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849170863,5.137583881,-2.501574243,2.501574243,1,0.95794808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023111157,91.32428965,0.023111157,88.67571035,0,0,0,0,0,8,20,0% +2018-08-31 05:00:00,116.2074651,305.886839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028202881,5.33873248,-1.139380645,1.139380645,1,0.724999255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242893172,104.0573608,0.242893172,75.94263916,0,0.844148186,0,0,0,8,21,0% +2018-08-31 06:00:00,124.9120659,319.8888219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180126826,5.583113183,-0.492666105,0.492666105,1,0.614404556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441366872,116.1911255,0.441366872,63.8088745,0,0.936715558,0,0,0,8,22,0% +2018-08-31 07:00:00,131.1459259,337.0422775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288928208,5.88249746,-0.059053506,0.059053506,1,0.540252434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605008543,127.2294566,0.605008543,52.7705434,0,0.967356539,0,0,0,8,23,0% +2018-09-01 08:00:00,133.8499586,356.8935882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33612248,6.228968194,0.302501355,-0.302501355,1,0.478422911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72266826,136.2752186,0.72266826,43.72478142,0,0.980811961,0,0,0,9,0,0% +2018-09-01 09:00:00,132.4024016,17.19092861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310857845,0.300038306,0.661926678,-0.661926678,1,0.416957561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78632991,141.8438465,0.78632991,38.15615349,0,0.986413458,0,0,0,9,1,0% +2018-09-01 10:00:00,127.1516058,35.31225656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21921417,0.616315143,1.085197279,-1.085197279,1,0.344574025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791657731,142.3407001,0.791657731,37.65929995,0,0.986841392,0,0,0,9,2,0% +2018-09-01 11:00:00,119.1014235,50.25088824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078711984,0.877043452,1.690870107,-1.690870107,1,0.240997871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738292132,137.5861339,0.738292132,42.41386607,0,0.982276131,0,0,0,9,3,0% +2018-09-01 12:00:00,109.2474293,62.45465019,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90672734,1.090039279,2.839174609,-2.839174609,1,0.044626236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629874647,129.0408748,0.629874647,50.95912519,0,0.970619126,0,0,0,9,4,0% +2018-09-01 13:00:00,98.30779968,72.81302204,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715794785,1.270826973,6.839972319,-6.839972319,1,0,#DIV/0!,0,0,0.390076719,1,0.145170945,0,0.945936226,0.984698189,0.724496596,1,0,0,0.056315271,0.312029739,0.852745247,0.577241843,0.961238037,0.922476074,0,0,0,0,0,0,-0.473800258,118.2812636,0.473800258,61.71873636,0,0.944470298,0,0,0,9,5,0% +2018-09-01 14:00:00,86.545492,82.17745441,11.925807,60.5300861,8.278505155,8.118779451,0,8.118779451,8.02887768,0.089901771,19.91374491,16.77256745,3.141177454,0.249627475,2.89154998,1.510503788,1.43426715,-16.19295262,16.19295262,0,0,0.694167292,0.062406869,2.00721942,1,0.565087235,0,0.061676934,0.961238037,1,0.564527512,0.840030916,7.717662619,0.170831928,0.115824807,0.130815911,0.724496596,0.448993192,0.98643004,0.947668076,0.045213564,1.946143681,7.762876183,2.11697561,0,7.294603692,-0.277094723,106.086885,0.277094723,73.91311504,0,0.86955629,7.762876183,8.46004413,13.29980587,9,6,71% +2018-09-01 15:00:00,74.89510136,91.32015695,188.2864878,503.047156,57.19891186,56.8935367,0,56.8935367,55.47415362,1.419383078,78.93502025,31.55802314,47.37699711,1.724758234,45.65223888,1.307166112,1.593837412,-3.451354093,3.451354093,0.87963,0.87963,0.303786599,1.300434223,41.82643484,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.32386652,1.249581469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.942160168,40.20516011,54.26602669,41.45474158,0,31.55802314,-0.062733727,93.59673962,0.062733727,86.40326038,0,0,54.26602669,41.45474158,81.39732596,9,7,50% +2018-09-01 16:00:00,63.16626913,101.0616183,400.7980137,704.6221811,82.72948891,197.9328581,114.6765838,83.2562743,80.23488958,3.021384725,99.67271802,0,99.67271802,2.49459933,97.17811869,1.102459373,1.763857986,-1.693327529,1.693327529,0.819729752,0.819729752,0.206411923,2.58914446,83.27578598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.12482774,1.807328723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.875826348,80.04785303,79.00065409,81.85518175,114.6765838,0,0.16274904,80.63350347,-0.16274904,99.36649653,0.742778527,0,164.1799581,81.85518175,217.7525374,9,8,33% +2018-09-01 17:00:00,51.85178376,112.4956093,592.3762373,799.2317985,98.69244355,405.5899605,305.4078759,100.1820845,95.71650224,4.465582297,146.6044183,0,146.6044183,2.975941309,143.628477,0.90498435,1.963418776,-0.938722701,0.938722701,0.690684726,0.690684726,0.166604326,3.31443551,106.6036393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.00634271,2.156059348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401297245,102.471473,94.40763995,104.6275323,305.4078759,0,0.382126783,67.53451715,-0.382126783,112.4654828,0.919153375,0,375.1243197,104.6275323,443.6009471,9,9,18% +2018-09-01 18:00:00,41.58981038,127.3244639,743.9705451,848.4824824,109.3767911,604.0120132,492.3249717,111.6870415,106.0786773,5.608364224,183.6823859,0,183.6823859,3.298113808,180.3842721,0.725879126,2.222231113,-0.479157082,0.479157082,0.612094376,0.612094376,0.147017636,3.752687426,120.6993274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9668595,2.389472227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718809265,116.0207845,104.6856688,118.4102567,492.3249717,0,0.580241763,54.53245122,-0.580241763,125.4675488,0.963829022,0,579.2027649,118.4102567,656.6999098,9,10,13% +2018-09-01 19:00:00,33.58036253,147.9962262,843.5698666,873.4934274,115.8530057,768.1826275,649.4638313,118.7187961,112.3596101,6.35918598,208.0266763,0,208.0266763,3.493395574,204.5332807,0.58608789,2.583021428,-0.138076278,0.138076278,0.553766124,0.553766124,0.137336586,3.911219632,125.7982681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0043311,2.530953202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833665309,120.9220803,110.8379964,123.4530335,649.4638313,0,0.743524577,41.96747267,-0.743524577,138.0325273,0.982752727,0,749.1003479,123.4530335,829.8978893,9,11,11% +2018-09-01 20:00:00,29.83759435,175.5734103,883.7699759,882.3590217,118.37719,881.0152899,759.5453776,121.4699124,114.807681,6.662231384,217.8497716,0,217.8497716,3.569509045,214.2802626,0.520764262,3.064334089,0.153989851,-0.153989851,0.503819874,0.503819874,0.133945702,3.799344439,122.1999773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3575099,2.586097152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.752612113,117.4632663,113.110122,120.0493635,759.5453776,0,0.860812162,30.5921049,-0.860812162,149.4078951,0.991915319,0,866.5148174,120.0493635,945.0847248,9,12,9% +2018-09-01 21:00:00,31.94680354,204.445303,861.6335733,877.5554293,116.9929211,930.9001629,810.9396522,119.9605107,113.4651529,6.495357831,212.4408037,0,212.4408037,3.52776823,208.9130355,0.557576907,3.568243678,0.436647589,-0.436647589,0.455482554,0.455482554,0.135780365,3.438755011,110.6021818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0670208,2.555856073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491366299,106.3150241,111.5583871,108.8708802,810.9396522,0,0.92408938,22.46856065,-0.92408938,157.5314394,0.99589268,0,919.1672504,108.8708802,990.4210641,9,13,8% +2018-09-01 22:00:00,38.95049889,227.2223413,778.7475536,857.7584966,111.6778825,911.0657689,796.8848585,114.1809103,108.3103823,5.870528004,192.1838606,0,192.1838606,3.367500206,188.8163604,0.679814451,3.96577799,0.745314348,-0.745314348,0.402697429,0.402697429,0.143407041,2.866900669,92.20938042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1120593,2.439742436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.077059775,88.63516382,106.1891191,91.07490625,796.8848585,0,0.929031728,21.71562127,-0.929031728,158.2843787,0.996180525,0,900.0302957,91.07490625,959.6370004,9,14,7% +2018-09-01 23:00:00,48.72157787,243.4799989,641.189013,816.8958979,102.2675202,819.0486239,715.0312931,104.0173308,99.18377714,4.833553619,158.5474427,0,158.5474427,3.083743061,155.4636996,0.850351951,4.249527643,1.131773398,-1.131773398,0.33660904,0.33660904,0.159496682,2.13844966,68.77989194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.33921922,2.23416135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549299499,66.1138483,96.88851872,68.34800965,715.0312931,0,0.875302832,28.91916398,-0.875302832,151.080836,0.992876913,0,806.8265816,68.34800965,851.558987,9,15,6% +2018-09-01 00:00:00,59.82142054,255.6832594,459.5395675,739.0121411,88.04053297,655.369926,566.5199366,88.84998944,85.38578607,3.46420337,114.0754354,0,114.0754354,2.654746904,111.4206885,1.044080752,4.462514719,1.71119765,-1.71119765,0.237521657,0.237521657,0.191584227,1.328870079,42.74102972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07606537,1.923355095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.962761849,41.0843035,83.03882722,43.00765859,566.5199366,0,0.766590838,39.95127162,-0.766590838,140.0487284,0.984776158,0,640.9341536,43.00765859,669.081806,9,16,4% +2018-09-01 01:00:00,71.49131104,265.7732791,250.1138507,579.5509452,66.13629164,419.797367,353.7698647,66.02750229,64.14203843,1.885463855,62.63725203,0,62.63725203,1.99425321,60.64299882,1.247758764,4.638618784,2.874696787,-2.874696787,0.038551586,0.038551586,0.264424747,0.552030518,17.75519907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6557671,1.444829662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.399944231,17.06697269,62.05571133,18.51180236,353.7698647,0,0.61042065,52.38007507,-0.61042065,127.6199249,0.968089272,0,404.536522,18.51180236,416.6521265,9,17,3% +2018-09-01 02:00:00,83.25525791,274.9823325,49.09147571,205.5453392,24.95094328,110.5355014,85.96684887,24.56865256,24.19858028,0.37007228,12.65515965,0,12.65515965,0.752362999,11.90279665,1.45307837,4.799347087,7.664482288,-7.664482288,0,0,0.508254089,0.18809075,6.049645071,0.438375775,1,0.129739089,0,0.947796093,0.986558056,0.724496596,1,23.46211466,0.545084432,0.06208312,0.312029739,0.839077019,0.563573615,0.961238037,0.922476074,0.128719459,5.815148951,23.59083412,6.360233383,48.28106487,0,0.418237889,65.27661202,-0.418237889,114.723388,0.930450812,0,68.51399014,6.360233383,72.67663568,9,18,6% +2018-09-01 03:00:00,95.06359638,284.1823972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659172756,4.959918507,-9.336181457,9.336181457,1,0,#DIV/0!,0,0,1,0.112479667,0,0.106703358,0.961238037,1,0.466807788,0.742311192,0,0,0.115824807,0.020305627,0.724496596,0.448993192,0.998159972,0.959398009,0,0,0,0,0,0,0.198894443,78.52768346,-0.198894443,101.4723165,0.798610373,0,0,0,0,9,19,0% +2018-09-01 04:00:00,106.2564489,294.1432783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854524884,5.133768679,-2.460944489,2.460944489,1,0.950999983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.027433842,91.57204061,0.027433842,88.42795939,0,0,0,0,0,9,20,0% +2018-09-01 05:00:00,116.5356435,305.691647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033930675,5.335325735,-1.128740931,1.128740931,1,0.723179757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.247341358,104.320243,0.247341358,75.67975699,0,0.847850224,0,0,0,9,21,0% +2018-09-01 06:00:00,125.2643831,319.7430428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18627592,5.580568856,-0.489644662,0.489644662,1,0.613887858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445843825,116.4773391,0.445843825,63.52266091,0,0.937853106,0,0,0,9,22,0% +2018-09-01 07:00:00,131.5160356,336.9915893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29538784,5.881612785,-0.059287287,0.059287287,1,0.540292413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609415624,127.5472608,0.609415624,52.45273921,0,0.967954188,0,0,0,9,23,0% +2018-09-02 08:00:00,134.2166497,356.9820124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.342522448,6.230511487,0.300169108,-0.300169108,1,0.478821749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7269117,136.6281119,0.7269117,43.37188809,0,0.981215855,0,0,0,9,0,0% +2018-09-02 09:00:00,132.7369835,17.41252638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316697401,0.303905916,0.657542975,-0.657542975,1,0.417707218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790327247,142.2161038,0.790327247,37.7838962,0,0.986735067,0,0,0,9,1,0% +2018-09-02 10:00:00,127.4374991,35.61215096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22420395,0.621549288,1.07789753,-1.07789753,1,0.345822356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795343476,142.6877099,0.795343476,37.31229009,0,0.987134079,0,0,0,9,2,0% +2018-09-02 11:00:00,119.3397887,50.57881847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082872241,0.882766914,1.67785283,-1.67785283,1,0.243223957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741622263,137.8697914,0.741622263,42.13020856,0,0.982580233,0,0,0,9,3,0% +2018-09-02 12:00:00,109.4483015,62.78720558,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910233222,1.095843465,2.809620585,-2.809620585,1,0.049680272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632829633,129.2591977,0.632829633,50.74080233,0,0.970989794,0,0,0,9,4,0% +2018-09-02 13:00:00,98.48287497,73.14556623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718850425,1.276630964,6.694762326,-6.694762326,1,0,#DIV/0!,0,0,0.380696852,1,0.148274243,0,0.945555671,0.984317634,0.724496596,1,0,0,0.055168923,0.312029739,0.855493253,0.579989849,0.961238037,0.922476074,0,0,0,0,0,0,-0.476386403,118.449657,0.476386403,61.55034299,0,0.945043184,0,0,0,9,5,0% +2018-09-02 14:00:00,86.69907601,82.5144513,10.7699017,55.28881292,7.586364841,7.438796018,0,7.438796018,7.35760795,0.081188068,18.27848491,15.43844066,2.840044248,0.228756891,2.611287357,1.513184335,1.440148856,-16.9263554,16.9263554,0,0,0.704404279,0.057189223,1.839401988,1,0.587583107,0,0.059010871,0.961238037,1,0.570821109,0.846324513,7.072412622,0.156571136,0.115824807,0.137921074,0.724496596,0.448993192,0.98557871,0.946816747,0.041433397,1.783470596,7.113846019,1.940041732,0,6.367073724,-0.27923263,106.214411,0.27923263,73.78558897,0,0.870937833,7.113846019,7.485367121,12.01286909,9,6,69% +2018-09-02 15:00:00,75.0511285,91.67039913,185.6120842,499.886544,56.662857,56.35348509,0,56.35348509,54.9542628,1.399222294,79.05003879,32.33764582,46.71239297,1.708594202,45.00379877,1.3098893,1.599950291,-3.480703614,3.480703614,0.874610936,0.874610936,0.30527569,1.277334877,41.08348046,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.82412769,1.237870683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.92542477,39.4910041,53.74955246,40.72887478,0,32.33764582,-0.064689971,93.7090523,0.064689971,86.2909477,0,0,53.74955246,40.72887478,80.40578643,9,7,50% +2018-09-02 16:00:00,63.33097992,101.4361198,398.0374383,703.4362392,82.3100109,196.0776573,113.2490226,82.82863473,79.82806038,3.000574342,98.99073575,0,98.99073575,2.48195052,96.50878523,1.105334118,1.770394271,-1.698731058,1.698731058,0.82065381,0.82065381,0.206789621,2.573714857,82.77951689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73376805,1.798164703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864647653,79.57082031,78.5984157,81.36898501,113.2490226,0,0.160994012,80.73540305,-0.160994012,99.26459695,0.739429444,0,162.3380775,81.36898501,215.5924508,9,8,33% +2018-09-02 17:00:00,52.04005932,112.9044083,589.5565586,798.6528358,98.29691429,403.6560857,303.8788597,99.77722601,95.33289965,4.444326369,145.9088279,0,145.9088279,2.964014643,142.9448133,0.908270378,1.970553664,-0.938897461,0.938897461,0.690714612,0.690714612,0.166730253,3.298942767,106.1053394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.6376093,2.147418519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390072805,101.9924882,94.02768211,104.1399067,303.8788597,0,0.380489302,67.63600559,-0.380489302,112.3639944,0.918590261,0,373.167843,104.1399067,441.3253291,9,9,18% +2018-09-02 18:00:00,41.82186008,127.7634621,741.0140156,848.1148759,108.9804543,602.0216161,490.7412479,111.2803682,105.6942915,5.586076656,182.95359,0,182.95359,3.286162793,179.6674273,0.729929158,2.229893077,-0.477295094,0.477295094,0.611775958,0.611775958,0.147069356,3.736369247,120.1744787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5973733,2.380813757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.706986801,115.51628,104.3043601,117.8970937,490.7412479,0,0.578625917,54.6460451,-0.578625917,125.3539549,0.963588385,0,577.1769266,117.8970937,654.3382165,9,10,13% +2018-09-02 19:00:00,33.87769516,148.4022184,840.3895723,873.1853395,115.4454768,766.0565925,647.7570112,118.2995813,111.9643697,6.335211578,207.2432886,0,207.2432886,3.481107074,203.7621815,0.591277324,2.590107329,-0.134979695,0.134979695,0.553236577,0.553236577,0.137371382,3.893678596,125.2340881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6244109,2.522050225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.820956888,120.379769,110.4453678,122.9018192,647.7570112,0,0.741832211,42.11227339,-0.741832211,137.8877266,0.982599314,0,746.9309626,122.9018192,827.3677452,9,11,11% +2018-09-02 20:00:00,30.19675941,175.7762618,880.2899612,882.0259856,117.9520345,878.6476952,757.6163521,121.031343,114.3953455,6.635997564,216.9931818,0,216.9931818,3.556689037,213.4364927,0.527032875,3.067874515,0.158218265,-0.158218265,0.503096773,0.503096773,0.133992252,3.780381524,121.5900648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9611573,2.5768091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738873545,116.8769952,112.7000309,119.4538043,757.6163521,0,0.858950149,30.8010907,-0.858950149,149.1989093,0.991789404,0,864.0959013,119.4538043,942.2760271,9,12,9% +2018-09-02 21:00:00,32.31741632,204.3610235,857.798103,877.1198322,116.5446889,928.1804703,808.6835893,119.496881,113.0304366,6.466444436,211.4973337,0,211.4973337,3.514252375,207.9830813,0.56404532,3.566772722,0.442298967,-0.442298967,0.454516112,0.454516112,0.135864941,3.418345193,109.9457319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6491549,2.546063883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.476579456,105.6840195,111.1257344,108.2300834,808.6835893,0,0.921976177,22.78328299,-0.921976177,157.216717,0.995768664,0,916.3875115,108.2300834,987.2219365,9,13,8% +2018-09-02 22:00:00,39.29319061,226.9873534,774.5277588,857.1062501,111.1999645,907.8828886,794.1972959,113.6855927,107.8468752,5.838717407,191.1463115,0,191.1463115,3.353089213,187.7932223,0.68579555,3.961676678,0.753171232,-0.753171232,0.401353823,0.401353823,0.143571309,2.845220064,91.51205764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6665186,2.42930172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061352251,87.96487063,105.7278709,90.39417235,794.1972959,0,0.926603085,22.08865843,-0.926603085,157.9113416,0.996039463,0,896.7797191,90.39417235,955.940897,9,14,7% +2018-09-02 23:00:00,49.03443594,243.2092996,636.5902395,815.799699,101.7476212,815.2770542,711.798613,103.4784411,98.67955501,4.798886122,157.4167399,0,157.4167399,3.068066188,154.3486737,0.855812354,4.24480305,1.143685786,-1.143685786,0.334571901,0.334571901,0.159832204,2.115966817,68.05676642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.85454174,2.222803509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533010756,65.41875255,96.38755249,67.64155606,711.798613,0,0.872516396,29.24760913,-0.872516396,150.7523909,0.992694487,0,802.9861112,67.64155606,847.2561568,9,15,6% +2018-09-02 00:00:00,60.11490576,255.4165218,454.6190795,736.908013,87.44567489,650.8134292,562.5774534,88.23597581,84.80886515,3.427110653,112.864469,0,112.864469,2.636809738,110.2276592,1.049203035,4.457859269,1.732330794,-1.732330794,0.233907676,0.233907676,0.192349329,1.306637414,42.02595078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52150705,1.910359679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.946654359,40.39694242,82.46816141,42.3073021,562.5774534,0,0.763429687,40.23250842,-0.763429687,139.7674916,0.984506084,0,636.3290868,42.3073021,664.0183699,9,16,4% +2018-09-02 01:00:00,71.77572018,265.5186843,245.0721946,574.6839014,65.34701488,413.9984504,348.7744314,65.224019,63.37656128,1.847457722,61.39104454,0,61.39104454,1.970453603,59.42059094,1.25272264,4.634175267,2.926453292,-2.926453292,0.029700702,0.029700702,0.266643937,0.532853229,17.13839151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.91996134,1.427586928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38605035,16.47407381,61.3060117,17.90166074,348.7744314,0,0.606897862,52.63446536,-0.606897862,127.3655346,0.967613814,0,398.7849696,17.90166074,410.5012485,9,17,3% +2018-09-02 02:00:00,83.53604647,274.7393275,45.30381741,193.3844935,23.53295742,103.3119197,80.1470485,23.16487124,22.82335192,0.341519312,11.69404053,0,11.69404053,0.709605493,10.98443504,1.457979055,4.79510585,8.01618985,-8.01618985,0,0,0.51944756,0.177401373,5.705837981,0.456727094,1,0.124106415,0,0.948461401,0.987223364,0.724496596,1,22.12768989,0.514106764,0.064217094,0.312029739,0.834087101,0.558583697,0.961238037,0.922476074,0.121415907,5.484668499,22.2491058,5.998775264,43.54171998,0,0.414444028,65.51569082,-0.414444028,114.4843092,0.929356447,0,62.71488398,5.998775264,66.64096242,9,18,6% +2018-09-02 03:00:00,95.35724189,283.9497616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664297837,4.95585825,-8.845940241,8.845940241,1,0,#DIV/0!,0,0,1,0.041133976,0,0.112568311,0.961238037,1,0.455276319,0.730779723,0,0,0.115824807,0.00717283,0.724496596,0.448993192,0.999361392,0.960599429,0,0,0,0,0,0,0.194741136,78.77039814,-0.194741136,101.2296019,0.793248904,0,0,0,0,9,19,0% +2018-09-02 04:00:00,106.5653518,293.9232469,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859916257,5.129928406,-2.421444216,2.421444216,1,0.944245039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.03179246,91.82188075,0.03179246,88.17811925,0,0,0,0,0,9,20,0% +2018-09-02 05:00:00,116.8659796,305.494822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039696128,5.331890493,-1.118239606,1.118239606,1,0.721383925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251816056,104.5850031,0.251816056,75.41499694,0,0.851442367,0,0,0,9,21,0% +2018-09-02 06:00:00,125.6189862,319.595918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192464912,5.578001045,-0.486632785,0.486632785,1,0.613372797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450337471,116.7653378,0.450337471,63.23466218,0,0.938972153,0,0,0,9,22,0% +2018-09-02 07:00:00,131.8885316,336.9409768,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301889121,5.88072943,-0.059499846,0.059499846,1,0.540328763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613829856,127.8669446,0.613829856,52.13305536,0,0.968544203,0,0,0,9,23,0% +2018-09-03 08:00:00,134.5854515,357.0731263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348959253,6.232101724,0.297871445,-0.297871445,1,0.479214672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731153678,136.9831984,0.731153678,43.01680163,0,0.981614924,0,0,0,9,0,0% +2018-09-03 09:00:00,133.0729069,17.63883867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322560371,0.307855811,0.653207952,-0.653207952,1,0.418448551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794316037,142.5907012,0.794316037,37.40929875,0,0.987052763,0,0,0,9,1,0% +2018-09-03 10:00:00,127.7239435,35.91694728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229203348,0.626868987,1.070674375,-1.070674375,1,0.347057588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799015598,143.0362015,0.799015598,36.96379851,0,0.987422999,0,0,0,9,2,0% +2018-09-03 11:00:00,119.5782713,50.91087964,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087034548,0.888562475,1.664990145,-1.664990145,1,0.245423606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744936057,138.153607,0.744936057,41.84639301,0,0.982880145,0,0,0,9,3,0% +2018-09-03 12:00:00,109.6492035,63.12307904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.913739624,1.101705563,2.780563747,-2.780563747,1,0.054649284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635768116,129.4769775,0.635768116,50.52302252,0,0.971354974,0,0,0,9,4,0% +2018-09-03 13:00:00,98.65811913,73.48082857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721909013,1.282482396,6.555015111,-6.555015111,1,0,#DIV/0!,0,0,0.371393336,1,0.151387734,0,0.945171674,0.983933638,0.724496596,1,0,0,0.054023262,0.312029739,0.858250028,0.582746624,0.961238037,0.922476074,0,0,0,0,0,0,-0.478958433,118.6173977,0.478958433,61.38260232,0,0.945606807,0,0,0,9,5,0% +2018-09-03 14:00:00,86.85270551,82.85374956,9.671074453,50.22095756,6.913791656,6.778219973,0,6.778219973,6.705315328,0.072904644,16.68323636,14.12989607,2.553340297,0.208476328,2.344863969,1.515865675,1.446070728,-17.73072554,17.73072554,0,0,0.714893851,0.052119082,1.676328832,1,0.609723556,0,0.056339585,0.961238037,1,0.577183669,0.852687073,6.445404143,0.142745025,0.115824807,0.145105252,0.724496596,0.448993192,0.984706221,0.945944258,0.037760097,1.625332126,6.48316424,1.768077151,0,5.514565594,-0.281354573,106.3410665,0.281354573,73.6589335,0,0.872288298,6.48316424,6.578368188,10.78857465,9,6,66% +2018-09-03 15:00:00,75.20799835,92.0226112,182.9245057,496.6594351,56.12199338,55.8086704,0,55.8086704,54.42970821,1.378962192,79.1435552,33.09910578,46.04444941,1.692285168,44.35216424,1.312627195,1.606097552,-3.510674531,3.510674531,0.869485607,0.869485607,0.306804127,1.254204672,40.33953354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.31990587,1.226054844,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.908667015,38.77589403,53.22857288,40.00194887,0,33.09910578,-0.066643465,93.82122142,0.066643465,86.17877858,0,0,53.22857288,40.00194887,79.40904838,9,7,49% +2018-09-03 16:00:00,63.49705569,101.812201,395.2489992,702.220433,81.88748386,194.2145841,111.8167561,82.397828,79.41827409,2.97955391,98.30190567,0,98.30190567,2.469209771,95.8326959,1.108232687,1.776958126,-1.704176608,1.704176608,0.821585053,0.821585053,0.207179484,2.558092941,82.27706236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33986588,1.788934074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853329627,79.0878419,78.19319551,80.87677597,111.8167561,0,0.159233128,80.83761296,-0.159233128,99.16238704,0.73599499,0,160.4897677,80.87677597,213.4220001,9,8,33% +2018-09-03 17:00:00,52.23030466,113.3140728,586.6978746,798.0542775,97.89837454,401.7012487,302.332095,99.36915374,94.94637734,4.422776401,145.2036894,0,145.2036894,2.951997199,142.2516922,0.911590786,1.977703659,-0.939046949,0.939046949,0.690740176,0.690740176,0.166863353,3.283222882,105.5997339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26606936,2.138711922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378683802,101.5064809,93.64475316,103.6451928,302.332095,0,0.378836507,67.73836816,-0.378836507,112.2616318,0.918016944,0,371.190739,103.6451928,439.0244448,9,9,18% +2018-09-03 18:00:00,42.05645928,128.2018232,738.0085393,847.7311136,108.5808159,599.998238,489.1281141,110.8701238,105.3067037,5.563420106,182.2128269,0,182.2128269,3.274112221,178.9387147,0.734023686,2.237543922,-0.475389808,0.475389808,0.611450135,0.611450135,0.147126774,3.719792939,119.6413276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2248091,2.372083159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.694977322,115.0037949,103.9197865,117.3758781,489.1281141,0,0.576984974,54.76124005,-0.576984974,125.2387599,0.963342631,0,575.1177506,117.3758781,651.9379153,9,10,13% +2018-09-03 19:00:00,34.17775665,148.8054157,837.1518852,872.8619691,115.0342921,763.8861557,646.0097674,117.8763883,111.5655838,6.310804525,206.4458751,0,206.4458751,3.468708339,202.9771668,0.596514384,2.597144449,-0.131828364,0.131828364,0.552697668,0.552697668,0.137411495,3.875857274,124.6608931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2410827,2.513067384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.808045401,119.8287922,110.0491281,122.3418595,646.0097674,0,0.740105298,42.25961392,-0.740105298,137.7403861,0.982442046,0,744.7162854,122.3418595,824.7865857,9,11,11% +2018-09-03 20:00:00,30.5582476,175.9773253,876.7461136,881.6769219,117.5228788,876.2253201,755.6369072,120.5884129,113.9791304,6.609282543,216.1209943,0,216.1209943,3.543748409,212.5772459,0.533342034,3.071383736,0.162515864,-0.162515864,0.50236184,0.50236184,0.134044368,3.761127449,120.9707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5610755,2.567433659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724924033,116.2817223,112.2859996,118.849156,755.6369072,0,0.857045124,31.01358891,-0.857045124,148.9864111,0.991660015,0,861.620906,118.849156,939.4053017,9,12,9% +2018-09-03 21:00:00,32.69043541,204.2792377,853.8948213,876.6657008,116.0921308,925.3971145,806.36857,119.0285446,112.5915247,6.43701985,210.5372916,0,210.5372916,3.500606077,207.0366855,0.570555732,3.565345291,0.448043555,-0.448043555,0.453533729,0.453533729,0.135956008,3.397646404,109.2799877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2272562,2.536177187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461583254,105.0440808,110.6888394,107.580258,806.36857,0,0.91981307,23.10123062,-0.91981307,156.8987694,0.995641129,0,913.5425528,107.580258,983.9516801,9,13,8% +2018-09-03 22:00:00,39.63871829,226.7553798,770.2389951,856.430045,110.717359,904.6290875,791.4438784,113.1852091,107.3788222,5.806386896,190.0918988,0,190.0918988,3.338536878,186.7533619,0.691826145,3.957627974,0.761167282,-0.761167282,0.399986418,0.399986418,0.143744162,2.823267764,90.80599622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2166082,2.418758604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.045447884,87.28617754,105.2620561,89.70493614,791.4438784,0,0.924119703,22.46401419,-0.924119703,157.5359858,0.995894455,0,893.4566262,89.70493614,952.1667128,9,14,7% +2018-09-03 23:00:00,49.35020827,242.9403007,631.924504,814.6676951,101.2224311,811.428237,708.4943218,102.9339151,98.17020131,4.763713837,156.2696419,0,156.2696419,3.052229768,153.2174122,0.861323621,4.240108133,1.15584032,-1.15584032,0.332493354,0.332493354,0.160181209,2.093249104,67.32608667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36493158,2.211330077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51655185,64.71639538,95.88148343,66.92772545,708.4943218,0,0.869672783,29.57936296,-0.869672783,150.420637,0.992507112,0,799.0671366,66.92772545,842.8699943,9,15,5% +2018-09-03 00:00:00,60.41113405,255.150371,449.6376702,734.7381067,86.8439104,646.1711865,558.5563818,87.61480477,84.22524609,3.389558685,111.6385232,0,111.6385232,2.618664319,109.0198589,1.054373194,4.453214061,1.754004656,-1.754004656,0.230201228,0.230201228,0.193141981,1.284241715,41.3056281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.9605102,1.897213385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.930428751,39.70454087,81.89093895,41.60175425,558.5563818,0,0.760211532,40.51715036,-0.760211532,139.4828496,0.984228833,0,631.6382345,41.60175425,658.8657506,9,16,4% +2018-09-03 01:00:00,72.06261325,265.2639373,239.9854378,569.6549681,64.54453145,408.0922369,343.6848496,64.40738728,62.59827568,1.8091116,60.13350362,0,60.13350362,1.946255767,58.18724785,1.257729869,4.629729092,2.980190639,-2.980190639,0.020511075,0.020511075,0.268951867,0.513690816,16.52206244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.17184362,1.410055678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372167247,15.88163486,60.54401087,17.29169054,343.6848496,0,0.603321078,52.89187551,-0.603321078,127.1081245,0.967125388,0,392.9303545,17.29169054,404.2474202,9,17,3% +2018-09-03 02:00:00,83.81874621,274.4956502,41.58494886,181.0227188,22.09349405,96.06996348,74.32918488,21.7407786,21.42729369,0.31348491,10.74895267,0,10.74895267,0.666200362,10.0827523,1.462913096,4.790852879,8.40222895,-8.40222895,0,0,0.53128583,0.16655009,5.356823422,0.475536969,1,0.118458819,0,0.949121163,0.987883126,0.724496596,1,20.772698,0.482659894,0.066372581,0.312029739,0.829083663,0.553580259,0.961238037,0.922476074,0.114018912,5.14918243,20.88671691,5.631842325,38.98290962,0,0.410606941,65.75703238,-0.410606941,114.2429676,0.928229044,0,57.07178582,5.631842325,60.75771398,9,18,6% +2018-09-03 03:00:00,95.6529992,283.7160347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669459775,4.951778947,-8.403294513,8.403294513,1,0.032798314,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190545413,79.01538442,-0.190545413,100.9846156,0.787595363,0,0,0,0,9,19,0% +2018-09-03 04:00:00,106.876271,293.7017641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865342822,5.126062802,-2.383042848,2.383042848,1,0.937678018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036184879,92.07369354,0.036184879,87.92630646,0,0,0,0,0,9,20,0% +2018-09-03 05:00:00,117.1983491,305.2963243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045497069,5.328426052,-1.107879298,1.107879298,1,0.719612208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256314986,104.8515182,0.256314986,75.14848179,0,0.85492752,0,0,0,9,21,0% +2018-09-03 06:00:00,125.9757561,319.4473812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198691722,5.575408588,-0.483633102,0.483633102,1,0.612859821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45484548,117.0549926,0.45484548,62.94500742,0,0.940072558,0,0,0,9,22,0% +2018-09-03 07:00:00,132.2633065,336.8903708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308430178,5.879846189,-0.059693019,0.059693019,1,0.540361797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618248958,128.1883766,0.618248958,51.81162343,0,0.969126431,0,0,0,9,23,0% +2018-09-04 08:00:00,134.9562668,357.1668963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355431202,6.233738319,0.295606993,-0.295606993,1,0.479601917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735392068,137.3403558,0.735392068,42.65964425,0,0.982009057,0,0,0,9,0,0% +2018-09-04 09:00:00,133.4100808,17.86984407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328445165,0.311887616,0.648920377,-0.648920377,1,0.419181769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798294391,142.9675359,0.798294391,37.03246407,0,0.987366465,0,0,0,9,1,0% +2018-09-04 10:00:00,128.0108622,36.22658965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234211023,0.632273266,1.063526284,-1.063526284,1,0.348279984,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802672522,143.3860726,0.802672522,36.61392736,0,0.987708096,0,0,0,9,2,0% +2018-09-04 11:00:00,119.8168177,51.24698425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091197968,0.894428607,1.652278898,-1.652278898,1,0.247597357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7482323,138.4374854,0.7482323,41.56251457,0,0.983175833,0,0,0,9,3,0% +2018-09-04 12:00:00,109.8501044,63.4621689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917246005,1.107623798,2.751990448,-2.751990448,1,0.059535606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638689267,129.6941508,0.638689267,50.30584924,0,0.97171467,0,0,0,9,4,0% +2018-09-04 13:00:00,98.83351989,73.81870164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724970333,1.288379393,6.42041828,-6.42041828,1,0,#DIV/0!,0,0,0.362164559,1,0.15451164,0,0.94478419,0.983546153,0.724496596,1,0,0,0.052878207,0.312029739,0.861015751,0.585512347,0.961238037,0.922476074,0,0,0,0,0,0,-0.481515907,118.7844552,0.481515907,61.2155448,0,0.946161271,0,0,0,9,5,0% +2018-09-04 14:00:00,87.0063479,83.19523638,8.631012836,45.34360511,6.262928728,6.139142539,0,6.139142539,6.074078319,0.065064221,15.13463414,12.85309474,2.281539397,0.188850409,2.092688988,1.518547241,1.452030797,-18.61681873,18.61681873,0,0,0.725630798,0.047212602,1.51851958,1,0.631515342,0,0.053663298,0.961238037,1,0.583614946,0.859118351,5.838635119,0.129387784,0.115824807,0.152368477,0.724496596,0.448993192,0.983812225,0.945050262,0.03420537,1.472248825,5.872840488,1.601636609,0,4.736168216,-0.283459921,106.4668127,0.283459921,73.53318735,0,0.87360822,5.872840488,5.739192095,9.629026931,9,6,64% +2018-09-04 15:00:00,75.36572054,92.37667038,180.2237635,493.3639838,55.57619999,55.25897536,0,55.25897536,53.9003725,1.358602856,79.21518511,33.84201961,45.3731655,1.675827484,43.69733802,1.315379967,1.61227705,-3.541295149,3.541295149,0.864249173,0.864249173,0.308373318,1.231045137,39.59464329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.81108825,1.214131307,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.891888011,38.05987718,52.70297626,39.27400849,0,33.84201961,-0.068594427,93.93325973,0.068594427,86.06674027,0,0,52.70297626,39.27400849,78.40702934,9,7,49% +2018-09-04 16:00:00,63.66450949,102.1897209,392.4324213,700.9739711,81.46185296,192.3433172,110.3795183,81.96379889,79.00547753,2.958321356,97.60615941,0,97.60615941,2.456375429,95.14978398,1.111155307,1.783547092,-1.709668205,1.709668205,0.822524172,0.822524172,0.207581863,2.54227764,81.76838791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.94307012,1.779635637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841871496,78.59888467,77.78494162,80.37852031,110.3795183,0,0.15746593,80.94015978,-0.15746593,99.05984022,0.732470996,0,158.6347373,80.37852031,211.2408712,9,8,33% +2018-09-04 17:00:00,52.42252682,113.7244331,583.7998784,797.4356887,97.49679004,399.7248932,300.767061,98.95783218,94.5569021,4.400930081,144.4889275,0,144.4889275,2.939887945,141.5490395,0.914945695,1.984865797,-0.939172933,0.939172933,0.69076172,0.69076172,0.167003786,3.267275506,105.0868115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.89169094,2.129938808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367129982,101.0134403,93.25882092,103.1433792,300.767061,0,0.377167796,67.84164062,-0.377167796,112.1583594,0.917433008,0,369.1924506,103.1433792,436.6977294,9,9,18% +2018-09-04 18:00:00,42.29359348,128.6393499,734.9539045,847.3309106,108.1778552,597.9412498,487.4849631,110.4562867,104.9158937,5.540392978,181.4600446,0,181.4600446,3.261961468,178.1980831,0.738162459,2.245180204,-0.473442409,0.473442409,0.61111711,0.61111711,0.147189986,3.702959195,119.0998965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8491477,2.363279979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682781331,114.4833507,103.531929,116.8466307,487.4849631,0,0.575318281,54.87807533,-0.575318281,125.1219247,0.963091585,0,573.0245947,116.8466307,649.4983776,9,10,13% +2018-09-04 19:00:00,34.48049413,149.2056484,833.8567942,872.5231077,114.6194455,761.6707484,644.2215374,117.4492111,111.1632463,6.285964737,205.634433,0,205.634433,3.456199183,202.1782338,0.60179815,2.604129828,-0.1286232,0.1286232,0.552149552,0.552149552,0.137456991,3.857757702,124.0787487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8543407,2.504004543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794932323,119.2692128,109.649273,121.7732173,644.2215374,0,0.738343239,42.40952446,-0.738343239,137.5904755,0.982280818,0,742.4557318,121.7732173,822.1538671,9,11,11% +2018-09-04 20:00:00,30.92197385,176.1764801,873.1387102,881.3116617,117.0897334,873.7477761,753.6066418,120.1411344,113.559046,6.582088413,215.2332766,0,215.2332766,3.530687478,211.7025891,0.539690255,3.074859642,0.166881945,-0.166881945,0.501615196,0.501615196,0.134102099,3.741585818,120.3422615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1572744,2.557971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.710766188,115.6775592,111.8680406,118.2355303,753.6066418,0,0.855096641,31.22958707,-0.855096641,148.7704129,0.991527077,0,859.0894314,118.2355303,936.4722212,9,12,9% +2018-09-04 21:00:00,33.06574815,204.1998041,849.9243621,876.1928763,115.6352762,922.5499888,803.9944541,118.5555348,112.1484459,6.407088851,209.5608319,0,209.5608319,3.486830225,206.0740017,0.577106175,3.563958913,0.453880966,-0.453880966,0.452535473,0.452535473,0.136053608,3.37666395,108.6051198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.801352,2.526196629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446381537,104.3953722,110.2477336,106.9215688,803.9944541,0,0.917599853,23.42231879,-0.917599853,156.5776812,0.995510017,0,910.6322665,106.9215688,980.6102948,9,13,8% +2018-09-04 22:00:00,39.98695551,226.5263637,765.8822978,855.7296847,110.2301149,901.3046147,788.6248002,112.6798145,106.9062702,5.773544271,189.0208748,0,189.0208748,3.32384467,185.6970302,0.697904031,3.953630889,0.769302851,-0.769302851,0.398595154,0.398595154,0.14392566,2.80105084,90.09142357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7623733,2.408114148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029351799,86.59930313,104.7917251,89.00741728,788.6248002,0,0.92158168,22.84158088,-0.92158168,157.1584191,0.995745449,0,890.0612811,89.00741728,948.3148556,9,14,7% +2018-09-04 23:00:00,49.66877172,242.6730093,627.193267,813.499521,100.6920123,807.5027997,705.1189753,102.3838244,97.65577659,4.728047774,155.1065047,0,155.1065047,3.036235684,152.070269,0.866883602,4.235443017,1.168239674,-1.168239674,0.330372939,0.330372939,0.160543835,2.070305435,66.5881394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.87044698,2.199742417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49992924,64.0070524,95.37037622,66.20679481,705.1189753,0,0.866772453,29.91428338,-0.866772453,150.0857166,0.992314733,0,795.0703243,66.20679481,838.4013473,9,15,5% +2018-09-04 00:00:00,60.70998689,254.8848331,444.5972592,732.5013829,86.23528608,641.4440947,554.4575588,86.98653596,83.63497403,3.351561939,110.3980649,0,110.3980649,2.600312049,107.7977529,1.05958916,4.44857955,1.776232046,-1.776232046,0.22640012,0.22640012,0.193962703,1.261694298,40.58042566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.39311824,1.883917228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914093224,39.0074487,81.30721147,40.89136592,554.4575588,0,0.756937218,40.80507131,-0.756937218,139.1949287,0.983944323,0,626.862579,40.89136592,653.6251602,9,16,4% +2018-09-04 01:00:00,72.3518723,265.0090642,234.8563148,564.4600954,63.72869283,402.0794281,338.5019444,63.57748371,61.8070376,1.770446105,58.86528782,0,58.86528782,1.921655223,56.9436326,1.262778392,4.625280718,3.036004307,-3.036004307,0.010966376,0.010966376,0.271351839,0.494560784,15.90677487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.41127549,1.392232667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.358307605,15.29019704,59.76958309,16.68242971,338.5019444,0,0.599691541,53.15219091,-0.599691541,126.8478091,0.966623803,0,386.97362,16.68242971,397.8919366,9,17,3% +2018-09-04 02:00:00,84.10319752,274.2513195,37.94630877,168.4963226,20.63549787,88.83164084,68.53232406,20.29931677,20.01326147,0.286055304,9.822758286,0,9.822758286,0.622236398,9.200521889,1.467877708,4.786588503,8.827665522,-8.827665522,0,0,0.543807778,0.155559099,5.003315368,0.494813254,1,0.112799376,0,0.949774946,0.988536909,0.724496596,1,19.39999462,0.450808152,0.068548817,0.312029739,0.824069589,0.548566185,0.961238037,0.922476074,0.106540704,4.809377042,19.50653532,5.260185194,34.62162181,0,0.406728901,66.00048558,-0.406728901,113.9995144,0.927067993,0,51.60313277,5.260185194,55.04581878,9,18,7% +2018-09-04 03:00:00,95.95074791,283.4812235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674656471,4.947680718,-8.001774849,8.001774849,1,0.10146222,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186309154,79.26253151,-0.186309154,100.7374685,0.78162886,0,0,0,0,9,19,0% +2018-09-04 04:00:00,107.1890832,293.4788191,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870802423,5.122171677,-2.345709957,2.345709957,1,0.931293718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04060899,92.3273637,0.04060899,87.6726363,0,0,0,0,0,9,20,0% +2018-09-04 05:00:00,117.5326274,305.0961178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051331326,5.32493179,-1.097662156,1.097662156,1,0.717864974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260835892,105.1196668,0.260835892,74.8803332,0,0.85830859,0,0,0,9,21,0% +2018-09-04 06:00:00,126.3345727,319.2973698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204954252,5.572790395,-0.48064801,0.48064801,1,0.61234934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459365546,117.3461749,0.459365546,62.65382508,0,0.941154223,0,0,0,9,22,0% +2018-09-04 07:00:00,132.6402512,336.8397059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315009105,5.878961919,-0.059868494,0.059868494,1,0.540391805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622670677,128.5114249,0.622670677,51.48857515,0,0.969700731,0,0,0,9,23,0% +2018-09-05 08:00:00,135.3289963,357.2632933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361936559,6.235420765,0.293374495,-0.293374495,1,0.479983696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739624761,137.6994608,0.739624761,42.30053923,0,0.982398153,0,0,0,9,0,0% +2018-09-05 09:00:00,133.7484108,18.10552443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334350137,0.316001014,0.644679139,-0.644679139,1,0.419907064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802260431,143.346503,0.802260431,36.65349696,0,0.987676099,0,0,0,9,1,0% +2018-09-05 10:00:00,128.2981748,36.5410232,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239225575,0.637761167,1.056451893,-1.056451893,1,0.349489776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806312669,143.7372179,0.806312669,36.26278207,0,0.987989316,0,0,0,9,2,0% +2018-09-05 11:00:00,120.0553704,51.58704487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095361498,0.900363784,1.639716245,-1.639716245,1,0.249745697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.751509763,138.721328,0.751509763,41.27867197,0,0.983467265,0,0,0,9,3,0% +2018-09-05 12:00:00,110.0509695,63.80437345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920751763,1.113596394,2.723888071,-2.723888071,1,0.064341395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641592231,129.9106509,0.641592231,50.08934913,0,0.972068882,0,0,0,9,4,0% +2018-09-05 13:00:00,99.00906093,74.15907806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728034103,1.294320082,6.29068562,-6.29068562,1,0,#DIV/0!,0,0,0.353009149,1,0.157646114,0,0.94439318,0.983155143,0.724496596,1,0,0,0.0517337,0.312029739,0.863790539,0.588287135,0.961238037,0.922476074,0,0,0,0,0,0,-0.484058341,118.9507959,0.484058341,61.0492041,0,0.946706666,0,0,0,9,5,0% +2018-09-05 14:00:00,87.15996295,83.53879905,7.65128014,40.67380957,5.635986347,5.523719145,0,5.523719145,5.466040564,0.057678582,13.63940961,11.61432237,2.025087236,0.169945783,1.855141453,1.521228329,1.458027097,-19.59762948,19.59762948,0,0,0.736606979,0.042486446,1.366510141,1,0.652964034,0,0.050982362,0.961238037,1,0.590114355,0.865617759,5.254166101,0.116535893,0.115824807,0.159710378,0.724496596,0.448993192,0.982896427,0.944134464,0.030781285,1.32475592,5.284947386,1.441291813,0,4.030587587,-0.285547936,106.5916041,0.285547936,73.40839587,0,0.874898051,5.284947386,4.967645039,8.536171711,9,6,62% +2018-09-05 15:00:00,75.52429961,92.73245424,177.5099701,489.9984222,55.02536722,54.70429451,0,54.70429451,53.36614937,1.338145135,79.26452327,34.56595804,44.69856523,1.659217844,43.03934739,1.318147693,1.61848665,-3.572594192,3.572594192,0.858896722,0.858896722,0.309984657,1.207858739,38.84888903,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.29757266,1.202097679,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.875089545,37.34302982,52.1726622,38.5451275,0,34.56595804,-0.070542999,94.04517585,0.070542999,85.95482415,0,0,52.1726622,38.5451275,77.39967725,9,7,48% +2018-09-05 16:00:00,63.83334862,102.5685395,389.5875329,699.6961034,81.03307183,190.4636163,108.9371152,81.52650112,78.58962574,2.936875385,96.90345393,0,96.90345393,2.443446096,94.46000784,1.114102106,1.790158723,-1.715209678,1.715209678,0.82347182,0.82347182,0.207997087,2.526268391,81.25347544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54333756,1.770268379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830272849,78.10393121,77.37361041,79.87419959,108.9371152,0,0.155692042,81.04306538,-0.155692042,98.95693462,0.728853207,0,156.7727762,79.87419959,209.0488423,9,8,33% +2018-09-05 17:00:00,52.61672631,114.1353219,580.8623671,796.7966616,97.09213368,397.7265555,299.183322,98.5432335,94.16444762,4.378785881,143.764492,0,143.764492,2.927686062,140.8368059,0.918335116,1.99203716,-0.939277053,0.939277053,0.690779526,0.690779526,0.167151703,3.251100752,104.5665758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.51444877,2.121098586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355411428,100.51337,92.8698602,102.6344686,299.183322,0,0.37548265,67.94585331,-0.37548265,112.0541467,0.916838055,0,367.1725152,102.6344686,434.3447222,9,9,18% +2018-09-05 18:00:00,42.53324112,129.0758514,731.8499992,846.9140007,107.7715577,595.8501196,485.8112776,110.038842,104.5218476,5.516994429,180.6952155,0,180.6952155,3.249710098,177.4455054,0.742345099,2.252798591,-0.471453996,0.471453996,0.610777071,0.610777071,0.14725908,3.685869119,118.550221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4703756,2.354403904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67039963,113.9549817,103.1407752,116.3093856,485.8112776,0,0.573625276,54.99658381,-0.573625276,125.0034162,0.962835082,0,570.8969167,116.3093856,647.0190834,9,10,13% +2018-09-05 19:00:00,34.78584849,149.6027592,830.5043795,872.1685604,114.2009361,759.4098976,642.3918482,117.0180494,110.7573565,6.260692819,204.8089816,0,204.8089816,3.443579581,201.365402,0.607127589,2.611060717,-0.125365059,0.125365059,0.551592377,0.551592377,0.137507928,3.839382269,123.4877316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.464184,2.494861684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.781619384,118.7011047,109.2458034,121.1959664,642.3918482,0,0.736545523,42.56202741,-0.736545523,137.4379726,0.982115533,0,740.148816,121.1959664,819.469152,9,11,11% +2018-09-05 20:00:00,31.28784938,176.3736192,869.4681085,880.930046,116.6526137,871.2147634,751.5252385,119.6895248,113.135107,6.554417867,214.330116,0,214.330116,3.517506705,210.8126093,0.546075987,3.078300369,0.17131585,-0.17131585,0.500856954,0.500856954,0.134165489,3.72176052,119.7046118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7497681,2.548421634,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696402827,115.064626,111.446171,117.6130477,751.5252385,0,0.853104332,31.44906366,-0.853104332,148.5509363,0.991390522,0,856.5011691,117.6130477,933.4765566,9,12,9% +2018-09-05 21:00:00,33.44324085,204.1225925,845.8874251,875.7012062,115.1741583,919.6390644,801.5611753,118.0778892,111.7012324,6.376656715,208.5681254,0,208.5681254,3.472925819,205.0951996,0.583694665,3.562611318,0.459810853,-0.459810853,0.451521403,0.451521403,0.136157785,3.355403354,107.921306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.3714734,2.516122933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.430978308,103.7380643,109.8024517,106.2541872,801.5611753,0,0.915336384,23.74645676,-0.915336384,156.2535432,0.995375273,0,907.6566254,106.2541872,977.1978659,9,13,8% +2018-09-05 22:00:00,40.33777593,226.3002533,761.4587517,855.0049754,109.7382833,897.9097827,785.7403157,112.1694669,106.4292692,5.740197712,187.9335043,0,187.9335043,3.309014134,184.6244902,0.704027003,3.949684518,0.777578343,-0.777578343,0.397179961,0.397179961,0.144115861,2.778576513,89.36857195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3038618,2.397369476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013069225,85.90447065,104.316931,88.30184013,785.7403157,0,0.918989174,23.22124946,-0.918989174,156.7787505,0.995592395,0,886.5940138,88.30184013,944.3858021,9,14,7% +2018-09-05 23:00:00,49.99000352,242.407435,622.3980232,812.2948062,100.1564287,803.5014156,701.6731735,101.8282421,97.13634285,4.691899201,153.9276925,0,153.9276925,3.020085864,150.9076066,0.872490155,4.230807872,1.180886644,-1.180886644,0.32821018,0.32821018,0.160920223,2.047144816,65.84321428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.37114751,2.188041927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48314945,63.29100204,94.85429696,65.47904397,701.6731735,0,0.863815905,30.25222906,-0.863815905,149.7477709,0.992117296,0,790.9963888,65.47904397,833.8511135,9,15,5% +2018-09-05 00:00:00,61.01134642,254.6199368,439.4997873,730.1967704,85.61984756,636.6330738,550.2818455,86.35122829,83.03809325,3.313135042,109.1435661,0,109.1435661,2.581754307,106.5618118,1.064848876,4.443956238,1.799026354,-1.799026354,0.222502064,0.222502064,0.194812034,1.239006546,39.85070958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81937374,1.870472207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897656025,38.30601784,80.71702976,40.17649005,550.2818455,0,0.753607614,41.0961456,-0.753607614,138.9038544,0.983652475,0,622.003129,40.17649005,648.2978383,9,16,4% +2018-09-05 01:00:00,72.64338018,264.7540943,229.6875965,559.0950948,62.89933986,395.9607255,333.2265507,62.73417481,61.00269269,1.731482123,57.58706417,0,57.58706417,1.896647171,55.690417,1.267866164,4.620830653,3.093996524,-3.093996524,0.001049122,0.001049122,0.273847351,0.475480875,15.29309941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.63810856,1.374114419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344484276,14.70030885,58.98259284,16.07442327,333.2265507,0,0.596010507,53.4152976,-0.596010507,126.5847024,0.966108861,0,380.9157163,16.07442327,391.4361049,9,17,3% +2018-09-05 02:00:00,84.38923563,274.0063576,34.39999738,155.8492153,19.16263907,81.62211383,62.77797732,18.84413651,18.5848148,0.259321711,8.918501906,0,8.918501906,0.57782427,8.340677635,1.472870015,4.782313112,9.298608424,-9.298608424,0,0,0.557053504,0.144456068,4.646203699,0.514563579,1,0.107131231,0,0.950422326,0.989184289,0.724496596,1,18.0131235,0.418631717,0.070744986,0.312029739,0.81904784,0.543544436,0.961238037,0.922476074,0.098996964,4.466107723,18.11212046,4.884739439,30.47471664,0,0.402812277,66.24589435,-0.402812277,113.7541056,0.925872701,0,46.32782866,4.884739439,49.52479293,9,18,7% +2018-09-05 03:00:00,96.25036856,283.2453386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679885838,4.94356375,-7.636027769,7.636027769,1,0.164008654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182034222,79.51173006,-0.182034222,100.4882699,0.775326373,0,0,0,0,9,19,0% +2018-09-05 04:00:00,107.5036654,293.2544052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876292919,5.118254917,-2.309415325,2.309415325,1,0.92508697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045062706,92.58277751,0.045062706,87.41722249,0,0,0,0,0,9,20,0% +2018-09-05 05:00:00,117.8686902,304.8941712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057196729,5.321407157,-1.087589879,1.087589879,1,0.716142513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265376549,105.3893286,0.265376549,74.61067138,0,0.861588476,0,0,0,9,21,0% +2018-09-05 06:00:00,126.6953152,319.1458255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211250397,5.570145449,-0.477679675,0.477679675,1,0.611841725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463895397,117.6387575,0.463895397,62.36124254,0,0.942217081,0,0,0,9,22,0% +2018-09-05 07:00:00,133.0192554,336.7889206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321623976,5.878075549,-0.060027818,0.060027818,1,0.540419051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627092789,128.835958,0.627092789,51.164042,0,0.970266983,0,0,0,9,23,0% +2018-09-06 08:00:00,135.7035382,357.362293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368473549,6.237148636,0.291172812,-0.291172812,1,0.480360206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743849672,138.0603894,0.743849672,41.93961061,0,0.982782117,0,0,0,9,0,0% +2018-09-06 09:00:00,134.0877996,18.34586511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340273589,0.32019575,0.64048325,-0.64048325,1,0.420624603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806212296,143.7274962,0.806212296,36.27250385,0,0.987981596,0,0,0,9,1,0% +2018-09-06 10:00:00,128.5857981,36.86019431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244245548,0.643331754,1.04945,-1.04945,1,0.35068717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809934465,144.0895289,0.809934465,35.91047108,0,0.98826661,0,0,0,9,2,0% +2018-09-06 11:00:00,120.2938689,51.93097438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099524083,0.906366487,1.627299628,-1.627299628,1,0.251869064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754767204,139.0050327,0.754767204,40.99496726,0,0.983754408,0,0,0,9,3,0% +2018-09-06 12:00:00,110.2517609,64.1495912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924256233,1.11962158,2.696244938,-2.696244938,1,0.069068649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644476122,130.1264082,0.644476122,49.87359176,0,0.972417607,0,0,0,9,4,0% +2018-09-06 13:00:00,99.18472211,74.50185076,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731099969,1.300302595,6.165554304,-6.165554304,1,0,#DIV/0!,0,0,0.343925952,1,0.160791247,0,0.943998615,0.982760578,0.724496596,1,0,0,0.050589709,0.312029739,0.866574455,0.591071051,0.961238037,0.922476074,0,0,0,0,0,0,-0.486585206,119.1163831,0.486585206,60.88361694,0,0.947243074,0,0,0,9,5,0% +2018-09-06 14:00:00,87.31350275,83.88432535,6.73326472,36.22825238,5.035208722,4.934136795,0,4.934136795,4.883378601,0.050758194,12.20427715,10.41988904,1.784388107,0.151830121,1.632557986,1.523908104,1.464057668,-20.68900436,20.68900436,0,0,0.747810896,0.03795753,1.22084465,1,0.674074073,0,0.048297266,0.961238037,1,0.596680945,0.872184349,4.69408926,0.104227529,0.115824807,0.167130155,0.724496596,0.448993192,0.981958586,0.943196623,0.027500101,1.183395311,4.721589361,1.287622839,0,3.396111997,-0.287617767,106.7153888,0.287617767,73.28461118,0,0.876158166,4.721589361,4.263154099,7.511738456,9,6,59% +2018-09-06 15:00:00,75.68373524,93.08984109,174.7833355,486.5610603,54.4693966,54.14453393,0,54.14453393,52.82694332,1.317590612,79.291146,35.27044946,44.02069654,1.642453278,42.37824326,1.32093037,1.624724227,-3.604600844,3.604600844,0.853423262,0.853423262,0.31163953,1.184648838,38.10237885,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.77926729,1.189951809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.858274051,36.62545584,51.63754134,37.81540765,0,35.27044946,-0.072489256,94.15697449,0.072489256,85.84302551,0,0,51.63754134,37.81540765,76.38696934,9,7,48% +2018-09-06 16:00:00,64.0035749,102.9485179,386.7142613,698.3861204,80.60110224,188.5753183,107.4894212,81.08589708,78.17068163,2.91521545,96.19377048,0,96.19377048,2.430420619,93.76334986,1.117073115,1.796790597,-1.720804657,1.720804657,0.824428617,0.824428617,0.208425472,2.51006512,80.73232254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.14063254,1.760831465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818533635,77.60297923,76.95916618,79.3638107,107.4894212,0,0.153911165,81.14634716,-0.153911165,98.85365284,0.725137277,0,154.9037524,79.3638107,206.8457792,9,8,34% +2018-09-06 17:00:00,52.81289749,114.5465751,577.8852376,796.1368145,96.6843852,395.7058609,297.5805237,98.12533727,93.76899425,4.356343021,143.0303573,0,143.0303573,2.915390941,140.1149664,0.921758949,1.999214882,-0.939360829,0.939360829,0.690793852,0.690793852,0.167307242,3.234699178,104.0390448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13432395,2.112190812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.343528543,100.0062871,92.4778525,102.1184779,297.5805237,0,0.373780635,68.05103136,-0.373780635,111.9489686,0.9162317,0,365.1305616,102.1184779,431.9650631,9,9,18% +2018-09-06 18:00:00,42.77537408,129.5111434,728.6968072,846.4801357,107.3619149,593.7244094,484.1066279,109.6177814,104.1245571,5.493224335,179.9183353,0,179.9183353,3.237357859,176.6809775,0.746571117,2.26039587,-0.469425589,0.469425589,0.610430193,0.610430193,0.147334137,3.668524211,117.9923491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0884848,2.345454748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657833303,113.418734,102.7463181,115.7641888,484.1066279,0,0.57190548,55.11679219,-0.57190548,124.8832078,0.962572966,0,568.7342707,115.7641888,644.499617,9,10,13% +2018-09-06 19:00:00,35.09375496,149.9966027,827.0948089,871.7981452,113.7787684,757.1032223,640.5203136,116.5829087,110.3479187,6.234990036,203.9695619,0,203.9695619,3.430849666,200.5387122,0.612501571,2.617934584,-0.122054739,0.122054739,0.551026279,0.551026279,0.13756436,3.820733696,122.8879293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0706168,2.485638904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.768108556,118.124552,108.8387253,120.6101909,640.5203136,0,0.734711719,42.71713768,-0.734711719,137.2828623,0.981946097,0,737.7951473,120.6101909,816.732105,9,11,11% +2018-09-06 20:00:00,31.65578233,176.5686492,865.7347417,880.5319251,116.211539,868.6260678,749.3924612,119.2336065,112.7073324,6.526274171,213.4116179,0,213.4116179,3.504206677,209.9074113,0.552497629,3.081704284,0.175816973,-0.175816973,0.500087216,0.500087216,0.13423458,3.701655712,119.0579721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3385749,2.538785809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.681836963,114.4430513,111.0204119,116.9818372,749.3924612,0,0.851067906,31.67198867,-0.851067906,148.3280113,0.991250281,0,853.8558999,116.9818372,930.4181727,9,12,9% +2018-09-06 21:00:00,33.82279931,204.0474833,841.7847714,875.1905443,114.7088136,916.6643871,799.0687383,117.5956489,111.2499197,6.345729178,207.5593576,0,207.5593576,3.458893962,204.1004637,0.59031921,3.561300413,0.465832921,-0.465832921,0.450491568,0.450491568,0.136268578,3.333870339,107.2287302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9376544,2.505956901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.415377712,103.0723341,109.3530321,105.578291,799.0687383,0,0.913022591,24.07354867,-0.913022591,155.9264513,0.995236842,0,904.6156801,105.578291,973.71456,9,13,8% +2018-09-06 22:00:00,40.69105371,226.0770009,756.9694877,854.2557252,109.2419181,894.4449639,782.7907369,111.6542269,105.9478712,5.706355744,186.8300631,0,186.8300631,3.29404689,183.5360162,0.710192863,3.945788029,0.785994226,-0.785994226,0.395740761,0.395740761,0.144314824,2.75585213,88.63767769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8411237,2.386525758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996605487,85.20190729,103.8377292,87.58843305,782.7907369,0,0.916342395,23.60291005,-0.916342395,156.39709,0.995435243,0,883.0552167,87.58843305,940.3800944,9,14,6% +2018-09-06 23:00:00,50.31378166,242.1435896,617.5402965,811.053174,99.61574545,799.4248001,698.1575573,101.2672428,96.61196318,4.655279605,152.7335768,0,152.7335768,3.003782268,149.7297945,0.878141149,4.226202902,1.193784168,-1.193784168,0.326004574,0.326004574,0.161310519,2.02377632,65.09160314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.86709382,2.176230028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466219055,62.56852482,94.33331288,64.74475485,698.1575573,0,0.860803681,30.59305979,-0.860803681,149.4069402,0.991914747,0,786.8460894,64.74475485,829.2202365,9,15,5% +2018-09-06 00:00:00,61.3150957,254.3557129,434.3472112,727.8231635,84.99763917,631.7390633,546.0301239,85.70893948,82.43464674,3.274292747,107.8755025,0,107.8755025,2.562992429,105.31251,1.070150301,4.439344661,1.822401598,-1.822401598,0.218504662,0.218504662,0.195690537,1.216189888,39.11684742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.239318,1.85687929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881125434,37.60060162,80.12044343,39.45748091,546.0301239,0,0.750223614,41.39024829,-0.750223614,138.6097517,0.983353204,0,617.0609153,39.45748091,642.8850474,9,16,4% +2018-09-06 01:00:00,72.93702075,264.499059,224.4820871,553.5556341,62.05630195,389.7368274,327.8595111,61.87731628,60.18507548,1.692240794,56.29950745,0,56.29950745,1.871226467,54.42828098,1.272991159,4.616379448,3.154276912,-3.154276912,0,0,0.276442111,0.467806617,15.04626887,0.009174481,1,0.307006387,0,0.923268539,0.962030502,0.724496596,1,57.87847529,1.355697206,0.001562193,0.312029739,0.995579689,0.720076285,0.961238037,0.922476074,0.338038879,14.46304595,58.21651417,15.81874316,324.8515703,0,0.592279242,53.68108253,-0.592279242,126.3189175,0.965580361,0,371.8868106,15.81874316,382.2398616,9,17,3% +2018-09-06 02:00:00,84.6766897,273.7607897,30.95877457,143.1338453,17.67943447,74.47001694,57.09030233,17.37971461,17.14633429,0.23338032,8.039413502,0,8.039413502,0.533100179,7.506313323,1.477887035,4.778027143,9.822490355,-9.822490355,0,0,0.571063768,0.133275045,4.286583572,0.534795243,1,0.101457613,0,0.951062886,0.989824849,0.724496596,1,16.61642915,0.386229265,0.07296021,0.312029739,0.81402147,0.538518066,0.961238037,0.922476074,0.091407486,4.120427177,16.70783664,4.506656443,26.55868021,0,0.398859558,66.49309669,-0.398859558,113.5069033,0.924642593,0,41.26512357,4.506656443,44.21464008,9,18,7% +2018-09-06 03:00:00,96.55174289,283.008394,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685145812,4.939428285,-7.301585077,7.301585077,1,0.221201723,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177722462,79.76287234,-0.177722462,100.2371277,0.768662461,0,0,0,0,9,19,0% +2018-09-06 04:00:00,107.819896,293.0285194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881812184,5.114312465,-2.274129013,2.274129013,1,0.919052655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04954397,92.83982299,0.04954397,87.16017701,0,0,0,0,0,9,20,0% +2018-09-06 05:00:00,118.2064137,304.6904568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063091116,5.31785167,-1.07766374,1.07766374,1,0.714445043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269934767,105.6603851,0.269934767,74.33961488,0,0.864770062,0,0,0,9,21,0% +2018-09-06 06:00:00,127.057863,318.9926937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21757805,5.567472794,-0.474730051,0.474730051,1,0.61133731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468432799,117.9326141,0.468432799,62.0673859,0,0.943261104,0,0,0,9,22,0% +2018-09-06 07:00:00,133.400208,336.7379572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328272852,5.87718607,-0.060172411,0.060172411,1,0.540443778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631513106,129.1618452,0.631513106,50.83815484,0,0.970825079,0,0,0,9,23,0% +2018-09-07 08:00:00,136.0797896,357.4638752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375040374,6.238921579,0.2890009,-0.2890009,1,0.480731625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748064748,138.4230174,0.748064748,41.57698264,0,0.983160866,0,0,0,9,0,0% +2018-09-07 09:00:00,134.4281479,18.59085475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346213788,0.324471626,0.636331814,-0.636331814,1,0.421334541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810148144,144.110408,0.810148144,35.88959199,0,0.988282893,0,0,0,9,1,0% +2018-09-07 10:00:00,128.8736463,37.18405057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249269446,0.648984112,1.042519517,-1.042519517,1,0.351872352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813536345,144.442895,0.813536345,35.55710499,0,0.988539931,0,0,0,9,2,0% +2018-09-07 11:00:00,120.5322504,52.27868617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103684624,0.912435202,1.615026703,-1.615026703,1,0.253967857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758003381,139.2884951,0.758003381,40.71150486,0,0.984037234,0,0,0,9,3,0% +2018-09-07 12:00:00,110.4524378,64.49772119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927758706,1.125697595,2.669050122,-2.669050122,1,0.073719237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647340042,130.3413514,0.647340042,49.65864865,0,0.972760842,0,0,0,9,4,0% +2018-09-07 13:00:00,99.36048037,74.84691342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734167529,1.306325074,6.044781956,-6.044781956,1,0,#DIV/0!,0,0,0.334913979,1,0.163947081,0,0.94360047,0.982362433,0.724496596,1,0,0,0.049446217,0.312029739,0.869367519,0.593864115,0.961238037,0.922476074,0,0,0,0,0,0,-0.489095944,119.2811779,0.489095944,60.71882208,0,0.947770569,0,0,0,9,5,0% +2018-09-07 14:00:00,87.46691232,84.23170401,5.878121575,32.02283001,4.462830355,4.372571317,0,4.372571317,4.328259554,0.044311763,10.8357934,9.276003964,1.559789432,0.134570801,1.42521863,1.526585607,1.47012057,-21.91047428,21.91047428,0,0,0.759227297,0.0336427,1.082064888,1,0.69484894,0,0.045608621,0.961238037,1,0.603313416,0.87881682,4.160487716,0.092501758,0.115824807,0.174626586,0.724496596,0.448993192,0.980998523,0.942236559,0.024374022,1.048705118,4.184861738,1.141206876,0,2.83058244,-0.289668463,106.8381085,0.289668463,73.16189154,0,0.877388873,4.184861738,3.624728412,6.55717399,9,6,57% +2018-09-07 15:00:00,75.84402325,93.44871053,172.0441498,483.050266,53.90819833,53.57960872,0,53.57960872,52.28266725,1.296941473,79.29461504,35.95498798,43.33962707,1.62553108,41.71409599,1.323727924,1.630987681,-3.637344989,3.637344989,0.847823683,0.847823683,0.313339328,1.16141953,37.35524443,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.25608843,1.177691734,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841444496,35.90728182,51.09753293,37.08497356,0,35.95498798,-0.074433223,94.26865733,0.074433223,85.73134267,0,0,51.09753293,37.08497356,75.36890642,9,7,48% +2018-09-07 16:00:00,64.17518573,103.3295194,383.8126155,697.0433431,80.16591251,186.6783225,106.0363665,80.64195608,77.74861446,2.893341619,95.4771103,0,95.4771103,2.417298043,93.05981226,1.120068289,1.803440328,-1.726456635,1.726456635,0.825395163,0.825395163,0.20886732,2.493668159,80.20493991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.73492553,1.751324203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806654092,77.09603899,76.54157963,78.84736319,106.0363665,0,0.15212306,81.2500189,-0.15212306,98.7499811,0.721318734,0,153.0275973,78.84736319,204.6316195,9,8,34% +2018-09-07 17:00:00,53.01102966,114.9580319,574.8684697,795.4557861,96.27353,393.6625088,295.9583796,97.70412921,93.37052786,4.33360135,142.2865182,0,142.2865182,2.903002141,139.3835161,0.925217008,2.006396158,-0.939425682,0.939425682,0.690804943,0.690804943,0.167470535,3.218071711,103.5042483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.7513029,2.103215169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331482,99.49222041,92.0827849,101.5954356,295.9583796,0,0.372061383,68.15719562,-0.372061383,111.8428044,0.915613573,0,363.0662941,101.5954356,429.5584748,9,9,18% +2018-09-07 18:00:00,43.01995889,129.9450491,725.4943932,846.0290819,106.9489236,591.5637597,482.3706575,109.1931021,103.7240189,5.469083186,179.1294197,0,179.1294197,3.224904645,175.9045151,0.750839927,2.267968954,-0.467358139,0.467358139,0.610076638,0.610076638,0.147415231,3.6509263,117.4263398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.70347232,2.336432437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.645083676,112.8746643,102.348556,115.2110968,482.3706575,0,0.570158483,55.23872204,-0.570158483,124.761278,0.962305084,0,566.5362923,115.2110968,641.9396509,9,10,13% +2018-09-07 19:00:00,35.40414449,150.3870458,823.6283253,871.4116903,113.352951,754.7504208,638.6066213,116.1437995,109.9349413,6.208858218,203.1162328,0,203.1162328,3.418009701,199.6982231,0.61791889,2.624749102,-0.118692983,0.118692983,0.550451385,0.550451385,0.137626339,3.801814988,122.2794387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6736472,2.476336393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.754402017,117.5396476,108.4280492,120.015984,638.6066213,0,0.732841467,42.87486382,-0.732841467,137.1251362,0.98177242,0,735.394417,120.015984,813.9424782,9,11,11% +2018-09-07 20:00:00,32.02567893,176.7614881,861.9391086,880.1171564,115.7665328,865.9815498,747.208144,118.7734058,112.2757447,6.497661086,212.4779042,0,212.4779042,3.490788096,208.9871161,0.558953543,3.085069958,0.180384753,-0.180384753,0.49930608,0.49930608,0.13430941,3.68127578,118.4024834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9237164,2.529064092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.667071771,113.8129707,110.5907882,116.3420348,747.208144,0,0.848987136,31.89832496,-0.848987136,148.101675,0.991106293,0,851.1534816,116.3420348,927.2970165,9,12,9% +2018-09-07 21:00:00,34.20430952,203.9743649,837.6172156,874.6607485,114.2392818,913.6260688,796.5172105,117.1088584,110.794546,6.314312383,206.5347274,0,206.5347274,3.444735845,203.0899915,0.59697782,3.560024257,0.471946917,-0.471946917,0.449446013,0.449446013,0.136386024,3.312070791,106.5275818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4999319,2.495699394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.399584014,102.3983636,108.8995159,104.894063,796.5172105,0,0.91065846,24.40349497,-0.91065846,155.596505,0.995094674,0,901.5095494,104.894063,970.1606158,9,13,8% +2018-09-07 22:00:00,41.04666398,225.8565611,752.4156762,853.4817429,108.7410749,890.910585,779.7764275,111.1341574,105.4621302,5.672027189,185.7108365,0,185.7108365,3.278944619,182.4318919,0.716399433,3.941940628,0.79455103,-0.79455103,0.394277461,0.394277461,0.144522607,2.732885144,87.89898046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.374211,2.375584214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979965984,84.49184342,103.354177,86.86742764,779.7764275,0,0.913641603,23.98645273,-0.913641603,156.0135473,0.995273946,0,879.4453388,86.86742764,936.2983328,9,14,6% +2018-09-07 23:00:00,50.63998508,241.8814855,612.6216364,809.7742401,99.07002841,795.2737075,694.5728053,100.7009022,96.08270152,4.618200668,151.5245353,0,151.5245353,2.987326886,148.5372084,0.883834473,4.221628321,1.206935327,-1.206935327,0.323755593,0.323755593,0.16171487,2.00020907,64.33359937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.35834739,2.16430816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449144662,61.83990276,93.80749205,64.00421092,694.5728053,0,0.857736355,30.93663679,-0.857736355,149.0633632,0.99170703,0,782.6202257,64.00421092,824.5097016,9,15,5% +2018-09-07 00:00:00,61.62111888,254.0921927,429.1415011,725.3794201,84.36870363,626.7630203,541.7032945,85.05972584,81.82467593,3.235049905,106.5943531,0,106.5943531,2.544027702,104.0503254,1.075491413,4.434745367,1.846372465,-1.846372465,0.214405402,0.214405402,0.196598799,1.19325578,38.37920769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65299086,1.84313941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864509751,36.89155425,79.51750061,38.73469366,541.7032945,0,0.746786136,41.68725525,-0.746786136,138.3127448,0.983046427,0,612.0369888,38.73469366,637.3880711,9,16,4% +2018-09-07 01:00:00,73.23267906,264.2439909,219.2426247,547.8372353,61.19939666,383.4084306,322.4016781,61.00675256,59.35400905,1.652743513,55.00330027,0,55.00330027,1.845387611,53.15791266,1.27815137,4.61192767,3.216963175,-3.216963175,0,0,0.279140047,0.461346903,14.83850226,0.019588056,1,0.301382944,0,0.924149556,0.962911519,0.724496596,1,57.1075932,1.336977042,0.003319195,0.312029739,0.990630889,0.715127485,0.961238037,0.922476074,0.332411544,14.26333278,57.44000474,15.60030983,316.0864561,0,0.588499024,53.94943345,-0.588499024,126.0505666,0.965038092,0,362.4754751,15.60030983,372.6855659,9,17,3% +2018-09-07 02:00:00,84.96538164,273.5146421,27.63603813,130.4121191,16.19137936,67.40775472,51.49627306,15.91148166,15.70314953,0.208332129,7.18890723,0,7.18890723,0.488229828,6.700677403,1.48292566,4.773731058,10.40844386,-10.40844386,0,0,0.58587918,0.122057457,3.925787384,0.555515066,1,0.095781856,0,0.951696213,0.990458176,0.724496596,1,15.21517922,0.353720848,0.075193542,0.312029739,0.808993639,0.533490235,0.961238037,0.922476074,0.083796903,3.773616158,15.29897612,4.127337006,22.88931753,0,0.394873371,66.74192324,-0.394873371,113.2580768,0.923377129,0,36.43444842,4.127337006,39.13570794,9,18,7% +2018-09-07 03:00:00,96.85475401,282.7704053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690434354,4.935274599,-6.994688358,6.994688358,1,0.273684153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173375703,80.0158521,-0.173375703,99.9841479,0.761608956,0,0,0,0,9,19,0% +2018-09-07 04:00:00,108.1376543,292.8011607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887358114,5.110344307,-2.23982147,2.23982147,1,0.91318572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.05405075,93.09838978,0.05405075,86.90161022,0,0,0,0,0,9,20,0% +2018-09-07 05:00:00,118.545675,304.4849492,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069012343,5.314264887,-1.067884648,1.067884648,1,0.71277272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274508387,105.9327194,0.274508387,74.0672806,0,0.867856203,0,0,0,9,21,0% +2018-09-07 06:00:00,127.4220959,318.8379214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223935113,5.564771508,-0.471800917,0.471800917,1,0.610836398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472975554,118.2276202,0.472975554,61.7723798,0,0.944286291,0,0,0,9,22,0% +2018-09-07 07:00:00,133.7829981,336.6867597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334953799,5.876292505,-0.060303596,0.060303596,1,0.540466212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63592948,129.4889564,0.63592948,50.5110436,0,0.97137493,0,0,0,9,23,0% +2018-09-08 08:00:00,136.4576471,357.5680228,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381635231,6.240739298,0.286857776,-0.286857776,1,0.481098121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.752267977,138.7872208,0.752267977,41.2127792,0,0.983534323,0,0,0,9,0,0% +2018-09-08 09:00:00,134.7693556,18.84048449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.352168986,0.328828487,0.632223986,-0.632223986,1,0.42203702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814066172,144.4951314,0.814066172,35.50486855,0,0.988579932,0,0,0,9,1,0% +2018-09-08 10:00:00,129.1616328,37.51254037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254295759,0.65471734,1.03565942,-1.03565942,1,0.353045498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817116775,144.7972047,0.817116775,35.20279529,0,0.988809236,0,0,0,9,2,0% +2018-09-08 11:00:00,120.770451,52.63009403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10784201,0.918568426,1.602895244,-1.602895244,1,0.256042459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76121707,139.5716099,0.76121707,40.42839008,0,0.984315714,0,0,0,9,3,0% +2018-09-08 12:00:00,110.6529586,64.84866319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931258455,1.131822688,2.642293198,-2.642293198,1,0.07829494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6501831,130.5554082,0.6501831,49.44459177,0,0.973098586,0,0,0,9,4,0% +2018-09-08 13:00:00,99.5363112,75.1941607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737236356,1.312385682,5.928143801,-5.928143801,1,0,#DIV/0!,0,0,0.325972325,1,0.167113631,0,0.943198725,0.981960688,0.724496596,1,0,0,0.048303219,0.312029739,0.872169728,0.596666323,0.961238037,0.922476074,0,0,0,0,0,0,-0.491589996,119.4451411,0.491589996,60.5548589,0,0.948289224,0,0,0,9,5,0% +2018-09-08 14:00:00,87.62013074,84.580825,5.086710325,28.07219006,3.921023536,3.84113598,0,3.84113598,3.802790209,0.038345771,9.540194743,8.188629606,1.351565137,0.118233327,1.23333181,1.529259772,1.47621388,-23.28640047,23.28640047,0,0,0.770836805,0.029558332,0.950697552,1,0.715291362,0,0.042917151,0.961238037,1,0.610010142,0.885513546,3.655386595,0.081397538,0.115824807,0.182198062,0.724496596,0.448993192,0.980016115,0.941254152,0.021414911,0.921207151,3.676801506,1.002604689,0,2.331373579,-0.291698994,106.9596997,0.291698994,73.04030026,0,0.878590427,3.676801506,3.050927198,5.673572338,9,6,54% +2018-09-08 15:00:00,76.00515697,93.80894372,169.292758,479.4644309,53.34168729,53.00943893,0,53.00943893,51.73323861,1.276200319,79.27448157,36.61904372,42.65543785,1.608448682,41.04698917,1.326540238,1.637274936,-3.670857605,3.670857605,0.842092688,0.842092688,0.315085465,1.138175409,36.60763361,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.72795672,1.165315594,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.82460421,35.18864987,50.55256093,36.35396546,0,36.61904372,-0.076374891,94.38022438,0.076374891,85.61977562,0,0,50.55256093,36.35396546,74.34550424,9,7,47% +2018-09-08 16:00:00,64.34817549,103.7114095,380.8826607,695.6671065,79.72747505,184.7725692,104.5779173,80.19465189,77.32339751,2.871254382,94.75348833,0,94.75348833,2.404077536,92.3494108,1.12308753,1.810105567,-1.732169069,1.732169069,0.826372046,0.826372046,0.209322931,2.477078125,79.6713474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.32619083,1.741745991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794634669,76.58312957,76.1208255,78.32487556,104.5779173,0,0.150327529,81.35409217,-0.150327529,98.64590783,0.717392924,0,151.1442833,78.32487556,202.4063479,9,8,34% +2018-09-08 17:00:00,53.21110858,115.3695355,571.8121035,794.753227,95.8595574,391.5962488,294.3166496,97.27959923,92.96903806,4.31056117,141.532984,0,141.532984,2.89051934,138.6424647,0.928709043,2.013578251,-0.939472983,0.939472983,0.690813032,0.690813032,0.167641708,3.201219558,102.9622251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.36537564,2.094171422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.319272673,98.97120714,91.68464831,101.0653786,294.3166496,0,0.370324573,68.26436406,-0.370324573,111.7356359,0.914983305,0,360.979469,101.0653786,427.124738,9,9,18% +2018-09-08 18:00:00,43.26695828,130.3773989,722.2428828,845.5606144,106.5325838,589.3678688,480.6030635,108.7648052,103.3202333,5.444571927,178.3284992,0,178.3284992,3.212350464,175.1161488,0.755150879,2.275514881,-0.465252558,0.465252558,0.609716563,0.609716563,0.147502435,3.633077477,116.8522603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.31533822,2.327336976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.632152265,112.3228373,101.9474905,114.6501742,480.6030635,0,0.568383928,55.36239113,-0.568383928,124.6376089,0.962031292,0,564.3026765,114.6501742,639.3389225,9,10,13% +2018-09-08 19:00:00,35.71694522,150.7739657,820.1052302,871.0090307,112.9234962,752.3512521,636.6505164,115.7007358,109.5184361,6.182299639,202.249068,0,202.249068,3.405060053,198.8440079,0.623378293,2.631502128,-0.115280501,0.115280501,0.549867816,0.549867816,0.137693911,3.782629382,121.6623636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2732866,2.466954417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.740502111,116.9464916,108.0137887,119.413446,636.6505164,0,0.730934461,43.03520948,-0.730934461,136.9647905,0.981594414,0,732.9463793,119.413446,811.1000914,9,11,11% +2018-09-08 20:00:00,32.39744468,176.9520631,858.081762,879.6856022,115.3176211,863.2811303,744.9721782,118.3089521,111.8403693,6.468582777,211.5291095,0,211.5291095,3.477251752,208.0518577,0.565442079,3.088396119,0.185018662,-0.185018662,0.498513635,0.498513635,0.134390015,3.660625298,117.7382929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.505217,2.519257057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652110567,113.1745255,110.1573276,115.6937826,744.9721782,0,0.846861852,32.12802994,-0.846861852,147.8719701,0.990958493,0,848.3938346,115.6937826,924.1131015,9,12,9% +2018-09-08 21:00:00,34.58765835,203.9031318,833.385619,874.11168,113.7656049,910.5242781,793.9067131,116.6175649,110.3351521,6.282412819,205.4944447,0,205.4944447,3.430452737,202.0639919,0.603668519,3.558781004,0.478152629,-0.478152629,0.448384774,0.448384774,0.136510161,3.290010744,105.8180549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.058345,2.48535133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383601584,101.7163393,108.4419466,104.2016906,793.9067131,0,0.908244028,24.73619397,-0.908244028,155.263806,0.994948716,0,898.3384114,104.2016906,966.5363339,9,13,8% +2018-09-08 22:00:00,41.404483,225.6388887,747.7985241,852.6828374,108.2358113,887.3071219,776.6977985,110.6093234,104.9721022,5.637221146,184.5761189,0,184.5761189,3.263709058,181.3124099,0.722644553,3.938141529,0.803249343,-0.803249343,0.392789962,0.392789962,0.144739268,2.709683104,87.15272311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9031775,2.364546103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.963156185,83.77451247,102.8663337,86.13905857,776.6977985,0,0.910887102,24.37176828,-0.910887102,155.6282317,0.995108455,0,875.7648802,86.13905857,932.1411713,9,14,6% +2018-09-08 23:00:00,50.96849371,241.6211333,607.643618,808.4576132,98.51934446,791.0489307,690.9196337,100.129297,95.54862272,4.580674262,150.300952,0,150.300952,2.970721733,147.3302302,0.88956803,4.217084319,1.220343347,-1.220343347,0.321462686,0.321462686,0.162133431,1.97645224,63.56949805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.84497053,2.152277783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43193292,61.10541951,93.27690345,63.25769729,690.9196337,0,0.854614543,31.28282279,-0.854614543,148.7171772,0.991494092,0,778.3196381,63.25769729,819.7205359,9,15,5% +2018-09-08 00:00:00,61.929301,253.8294067,423.8846439,722.8643635,83.73308238,621.7059233,537.3022808,84.4036425,81.208221,3.195421495,105.3006008,0,105.3006008,2.524861376,102.7757395,1.080870206,4.430158885,1.870954335,-1.870954335,0.210201655,0.210201655,0.197537428,1.17021572,37.63816014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06043093,1.829253472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847817306,36.17923117,78.90824824,38.00848464,537.3022808,0,0.743296126,41.98704295,-0.743296126,138.012957,0.982732059,0,606.9324249,38.00848464,631.8082179,9,16,4% +2018-09-08 01:00:00,73.53024098,263.9889221,213.972088,541.9352824,60.32843028,376.9762411,316.8539236,60.1223175,58.50930552,1.613011981,53.69913478,0,53.69913478,1.819124761,51.88001002,1.283344805,4.607475879,3.282181792,-3.282181792,0,0,0.281945327,0.45478119,14.62732638,0.030192488,1,0.2957406,0,0.925027014,0.963788977,0.724496596,1,56.32214912,1.317949697,0.005090955,0.312029739,0.985664902,0.710161498,0.961238037,0.922476074,0.326751022,14.06034249,56.64890014,15.37829219,307.2873154,0,0.584671148,54.22023849,-0.584671148,125.7797615,0.964481841,0,353.0219359,15.37829219,363.0867206,9,17,3% +2018-09-08 02:00:00,85.25512416,273.2679415,24.44577458,117.7562382,14.70508678,60.47174974,46.025793,14.44595673,14.26167416,0.184282575,6.370573693,0,6.370573693,0.443412622,5.92716107,1.487982621,4.76942532,11.06781149,-11.06781149,0,0,0.601538999,0.110853156,3.56541854,0.57672917,1,0.090107433,0,0.952321898,0.991083862,0.724496596,1,13.81569317,0.321250936,0.077443944,0.312029739,0.803967649,0.528464244,0.961238037,0.922476074,0.076195481,3.427215918,13.89188865,3.748466853,19.48137559,0,0.390856516,66.99219518,-0.390856516,113.0078048,0.922075818,0,31.85519399,3.748466853,34.30849057,9,18,8% +2018-09-08 03:00:00,97.15928614,282.5313887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695749442,4.931102973,-6.712154035,6.712154035,1,0.322000368,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.168995767,80.27056404,-0.168995767,99.72943596,0.754134601,0,0,0,0,9,19,0% +2018-09-08 04:00:00,108.456821,292.5723289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892928622,5.10635044,-2.206463683,2.206463683,1,0.907481202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058581033,93.35836865,0.058581033,86.64163135,0,0,0,0,0,9,20,0% +2018-09-08 05:00:00,118.8863522,304.2776238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074958282,5.310646376,-1.058253221,1.058253221,1,0.711125649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279095282,106.2062157,0.279095282,73.79378428,0,0.870849712,0,0,0,9,21,0% +2018-09-08 06:00:00,127.7878944,318.6814561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230319502,5.562040674,-0.468893919,0.468893919,1,0.610339272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477521502,118.5236521,0.477521502,61.47634785,0,0.945292673,0,0,0,9,22,0% +2018-09-08 07:00:00,134.1675154,336.6352722,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341664893,5.875393879,-0.060422636,0.060422636,1,0.540486569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640339804,129.8171625,0.640339804,50.18283747,0,0.971916458,0,0,0,9,23,0% +2018-09-09 08:00:00,136.8370078,357.67472,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388256325,6.242601516,0.284742487,-0.284742487,1,0.481459857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756457385,139.1528763,0.756457385,40.84712369,0,0.983902423,0,0,0,9,0,0% +2018-09-09 09:00:00,135.1113228,19.09474655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813744,0.333266197,0.628158932,-0.628158932,1,0.422732186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817964615,144.8815599,0.817964615,35.11844006,0,0.988872661,0,0,0,9,1,0% +2018-09-09 10:00:00,129.4496716,37.84561197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259322986,0.660530536,1.028868685,-1.028868685,1,0.354206782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820674258,145.1523467,0.820674258,34.84765335,0,0.989074487,0,0,0,9,2,0% +2018-09-09 11:00:00,121.0084077,52.9851116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111995137,0.924764652,1.590903039,-1.590903039,1,0.258093247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764407082,139.8542722,0.764407082,40.1457278,0,0.984589826,0,0,0,9,3,0% +2018-09-09 12:00:00,110.8532821,65.20231724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93475476,1.137995116,2.615964023,-2.615964023,1,0.082797495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65300443,130.7685079,0.65300443,49.23149207,0,0.973430841,0,0,0,9,4,0% +2018-09-09 13:00:00,99.71219011,75.54348798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740306022,1.318482594,5.815430211,-5.815430211,1,0,#DIV/0!,0,0,0.317100096,1,0.170290914,0,0.942793359,0.981555322,0.724496596,1,0,0,0.047160707,0.312029739,0.874981082,0.599477678,0.961238037,0.922476074,0,0,0,0,0,0,-0.494066819,119.6082341,0.494066819,60.39176589,0,0.948799114,0,0,0,9,5,0% +2018-09-09 14:00:00,87.77309222,84.93157934,4.359533987,24.38924107,3.411839098,3.34182357,0,3.34182357,3.308959561,0.032864009,8.323220701,7.163321676,1.159899025,0.102879537,1.057019488,1.531929454,1.482335698,-24.84757703,24.84757703,0,0,0.782615552,0.025719884,0.82723989,1,0.735403509,0,0.040223666,0.961238037,1,0.616769213,0.892272618,3.180697793,0.070952565,0.115824807,0.189842622,0.724496596,0.448993192,0.979011299,0.940249336,0.018633969,0.801392796,3.199331761,0.872345361,0,1.895389777,-0.293708265,107.0800954,0.293708265,72.91990456,0,0.879763047,3.199331761,2.539839247,4.861605752,9,6,52% +2018-09-09 15:00:00,76.16712881,94.1704232,166.5295331,475.8019326,52.76977871,52.43394515,0,52.43394515,51.17857518,1.255369963,79.23028993,37.26207308,41.96821685,1.591203528,40.37701332,1.32936718,1.643583943,-3.705171235,3.705171235,0.836224712,0.836224712,0.316879401,1.11492134,35.85970281,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.19479314,1.152821539,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.807756715,34.46971033,50.00254985,35.62253187,0,37.26207308,-0.078314253,94.49167553,0.078314253,85.50832447,0,0,50.00254985,35.62253187,73.31678451,9,7,47% +2018-09-09 16:00:00,64.52253707,104.0940555,377.9244919,694.256743,79.28576394,182.8580155,103.1140554,79.74396008,76.89500562,2.848954456,94.02292683,0,94.02292683,2.390758316,91.63216851,1.126130714,1.816784001,-1.737945497,1.737945497,0.827359874,0.827359874,0.209792606,2.460295803,79.13157023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91440425,1.732096262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782475934,76.06427523,75.69688018,77.79637149,103.1140554,0,0.148524385,81.45857784,-0.148524385,98.54142216,0.713354942,0,149.2538012,77.79637149,200.1699705,9,8,34% +2018-09-09 17:00:00,53.4131179,115.7809324,568.7162158,794.0287903,95.44245892,389.5068572,292.6551175,96.8517397,92.56451664,4.287223062,140.7697732,0,140.7697732,2.877942282,137.8918309,0.932234771,2.020758481,-0.939504111,0.939504111,0.690818355,0.690818355,0.167820885,3.184144115,102.4130202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97653426,2.085059386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306901572,98.44329045,91.28343583,100.5283498,292.6551175,0,0.368569907,68.37255324,-0.368569907,111.6274468,0.914340525,0,358.8698696,100.5283498,424.663664,9,9,18% +2018-09-09 18:00:00,43.51633262,130.8080291,718.9424445,845.074512,106.1128982,587.1364703,478.8035757,108.3328946,102.9132028,5.419691829,177.5156147,0,177.5156147,3.199695396,174.3159193,0.759503283,2.283030796,-0.463109752,0.463109752,0.609350121,0.609350121,0.147595818,3.614980029,116.2701841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92408504,2.318168422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.619040725,111.7633235,101.5431258,114.081492,478.8035757,0,0.566581489,55.48781502,-0.566581489,124.512185,0.961751441,0,562.0331546,114.081492,636.6972095,9,10,13% +2018-09-09 19:00:00,36.03208373,151.1572481,816.5258714,870.5900052,112.4904186,749.905518,634.6517837,115.2537343,109.0984174,6.15531692,201.3681521,0,201.3681521,3.392001166,197.9761509,0.628878497,2.638191668,-0.111817993,0.111817993,0.549275693,0.549275693,0.137767121,3.763180309,121.0368146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8695486,2.457493298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.726411323,116.34519,107.5959599,118.8026833,634.6517837,0,0.728990432,43.19817498,-0.728990432,136.801825,0.981411994,0,730.4508325,118.8026833,808.2048127,9,11,11% +2018-09-09 20:00:00,32.77098502,177.1403074,854.1633012,879.2371285,114.8648327,860.5247782,742.6845003,117.840278,111.4012342,6.439043764,210.56538,0,210.56538,3.463598512,207.1017815,0.571961588,3.091681603,0.189718182,-0.189718182,0.49770997,0.49770997,0.134476432,3.639709027,117.0655537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.0831037,2.509365332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6369568,112.5278631,109.7200605,115.0372284,742.6845003,0,0.844691922,32.36105708,-0.844691922,147.6389429,0.990806821,0,845.5769293,115.0372284,920.8664946,9,12,9% +2018-09-09 21:00:00,34.9727336,203.8336812,829.0908874,873.5432027,113.2878271,907.3592336,791.2374151,116.1218185,109.8717812,6.250037318,204.4387305,0,204.4387305,3.416045976,201.0226845,0.61038935,3.557568864,0.484449858,-0.484449858,0.447307885,0.447307885,0.136641023,3.267696391,105.1003486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6129352,2.474913681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367434911,101.0264527,107.9803701,103.5013664,791.2374151,0,0.905779374,25.071543,-0.905779374,154.928457,0.99479892,0,895.1024959,103.5013664,962.8420702,9,13,8% +2018-09-09 22:00:00,41.76438789,225.4239368,743.1192792,851.858819,107.7261872,883.6351003,773.5553081,110.0797922,104.4778451,5.601947021,183.4262148,0,183.4262148,3.24834201,180.1778728,0.728926079,3.934389911,0.812089787,-0.812089787,0.391278157,0.391278157,0.144964867,2.686253689,86.39915259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4280788,2.353412728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946181654,83.05015182,102.3742604,85.40356455,773.5553081,0,0.908079239,24.75874836,-0.908079239,155.2412516,0.994938726,0,872.014393,85.40356455,927.9093179,9,14,6% +2018-09-09 23:00:00,51.29918785,241.3625412,602.6078509,807.1028988,97.96376208,786.7513078,687.1988021,99.55250573,95.0097932,4.542712522,149.0632191,0,149.0632191,2.953968874,146.1092502,0.895339732,4.212571036,1.234011567,-1.234011567,0.319125283,0.319125283,0.162566355,1.9525151,62.79959735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.3270271,2.140140394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414590544,60.36536167,92.74161764,62.50550207,687.1988021,0,0.851438897,31.63148163,-0.851438897,148.3685184,0.99127588,0,773.9452149,62.50550207,814.8538159,9,15,5% +2018-09-09 00:00:00,62.2395273,253.5673826,418.5786553,720.2767892,83.09081665,616.5687857,532.8280411,83.74074467,80.58532196,3.155422712,103.9947358,0,103.9947358,2.505494695,101.4892411,1.086284676,4.425585702,1.896163248,-1.896163248,0.205890677,0.205890677,0.198507056,1.147081291,36.89407739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46167668,1.815222377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831056491,35.46399053,78.29273317,37.2792129,532.8280411,0,0.739754562,42.28948775,-0.739754562,137.7105123,0.982410015,0,601.7483368,37.2792129,626.1468361,9,16,4% +2018-09-09 01:00:00,73.82959247,263.7338829,208.6734134,535.8450418,59.4431999,370.4409969,311.2171605,59.22383643,57.6507681,1.573068334,52.38771681,0,52.38771681,1.792431799,50.59528501,1.288569474,4.603024606,3.350068661,-3.350068661,0,0,0.284862355,0.44810795,14.41269202,0.040989814,1,0.290081315,0,0.925900519,0.964662482,0.724496596,1,55.52193487,1.298610737,0.006877115,0.312029739,0.980683358,0.705179954,0.961238037,0.922476074,0.321057152,13.85402779,55.84299202,15.15263852,298.460427,0,0.58079694,54.49338532,-0.58079694,125.5066147,0.963911392,0,343.5323977,15.15263852,353.4494965,9,17,3% +2018-09-09 02:00:00,85.54571807,273.0207132,21.40247024,105.249349,13.22842692,53.70259492,40.71171301,12.99088191,12.82954104,0.161340861,5.588162578,0,5.588162578,0.398885879,5.189276698,1.493054441,4.765110372,11.81484885,-11.81484885,0,0,0.618079445,0.09972147,3.207385261,0.598442674,1,0.084438006,0,0.95293953,0.991701494,0.724496596,1,12.42547055,0.288991462,0.079710266,0.312029739,0.79894698,0.523443576,0.961238037,0.922476074,0.06863994,3.083060712,12.49411049,3.372052174,16.34808663,0,0.386812018,67.24372132,-0.386812018,112.7562787,0.920738246,0,27.54641909,3.372052174,29.7533598,9,18,8% +2018-09-09 03:00:00,97.46522378,282.2913596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701089061,4.926913676,-6.451268531,6.451268531,1,0.366614417,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164584485,80.52690276,-0.164584485,99.47309724,0.746204658,0,0,0,0,9,19,0% +2018-09-09 04:00:00,108.7772767,292.3420233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898521629,5.102330848,-2.174027364,2.174027364,1,0.901934265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063132804,93.61965046,0.063132804,86.38034954,0,0,0,0,0,9,20,0% +2018-09-09 05:00:00,119.2283237,304.068455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08092681,5.306995691,-1.048769877,1.048769877,1,0.709503901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283693331,106.4807585,0.283693331,73.51924147,0,0.873753347,0,0,0,9,21,0% +2018-09-09 06:00:00,128.1551394,318.5232436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236729137,5.559279344,-0.466010621,0.466010621,1,0.609846199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482068502,118.8205865,0.482068502,61.1794135,0,0.946280301,0,0,0,9,22,0% +2018-09-09 07:00:00,134.5536503,336.5834368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348404217,5.87448918,-0.060530776,0.060530776,1,0.540505062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644742,130.1463343,0.644742,49.85366571,0,0.9724496,0,0,0,9,23,0% +2018-09-10 08:00:00,137.2177698,357.7839503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394901875,6.244507944,0.282654066,-0.282654066,1,0.481816998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760631038,139.5198604,0.760631038,40.48013958,0,0.984265107,0,0,0,9,0,0% +2018-09-10 09:00:00,135.4539508,19.3536323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364117427,0.337784606,0.624135786,-0.624135786,1,0.423420184,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821841753,145.2695875,0.821841753,34.73041246,0,0.989161037,0,0,0,9,1,0% +2018-09-10 10:00:00,129.7376782,38.18321191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264349649,0.666422767,1.022146243,-1.022146243,1,0.355356387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824207342,145.5082101,0.824207342,34.49178994,0,0.989335653,0,0,0,9,2,0% +2018-09-10 11:00:00,121.246059,53.34365118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116142935,0.931022348,1.579047826,-1.579047826,1,0.260120608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76757227,140.1363785,0.76757227,39.86362148,0,0.984859554,0,0,0,9,3,0% +2018-09-10 12:00:00,111.0533686,65.55858278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938246927,1.144213122,2.59005257,-2.59005257,1,0.087228614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65580321,130.9805817,0.65580321,49.01941829,0,0.973757616,0,0,0,9,4,0% +2018-09-10 13:00:00,99.88809383,75.89479056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743376121,1.32461398,5.70644477,-5.70644477,1,0,#DIV/0!,0,0,0.308296354,1,0.173478971,0,0.942384348,0.981146312,0.724496596,1,0,0,0.046018668,0.312029739,0.8778016,0.602298196,0.961238037,0.922476074,0,0,0,0,0,0,-0.496525904,119.7704206,0.496525904,60.2295794,0,0.949300319,0,0,0,9,5,0% +2018-09-10 14:00:00,87.925727,85.28385826,3.696681729,20.98465855,2.937142313,2.876443784,0,2.876443784,2.848576636,0.027867148,7.1899304,6.205061438,0.984868961,0.088565678,0.896303284,1.534593433,1.488484125,-26.63351357,26.63351357,0,0,0.79453481,0.022141419,0.712144159,1,0.755187141,0,0.037529051,0.961238037,1,0.623588458,0.899091862,2.738160213,0.061202004,0.115824807,0.197557981,0.724496596,0.448993192,0.977984068,0.939222105,0.016041383,0.689707802,2.754201596,0.750909806,0,1.519078831,-0.295695135,107.1992254,0.295695135,72.80077463,0,0.880906924,2.754201596,2.089076865,4.121460623,9,6,50% +2018-09-10 15:00:00,76.32993136,94.53303203,163.7548566,472.0611015,52.19238464,51.85304495,0,51.85304495,50.61859167,1.234453279,79.16158037,37.88352654,41.27805383,1.573792966,39.70426087,1.33220862,1.649912661,-3.74032044,3.74032044,0.830213844,0.830213844,0.318722667,1.091662267,35.11161106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.65651568,1.140207647,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.790905596,33.75061609,49.44742128,34.89082374,0,37.88352654,-0.08025132,94.60301176,0.08025132,85.39698824,0,0,49.44742128,34.89082374,72.2827676,9,7,46% +2018-09-10 16:00:00,64.69826298,104.477326,374.9382135,692.8115684,78.84075291,180.934617,101.6447611,79.28985595,76.46341332,2.826442628,93.28545035,0,93.28545035,2.377339592,90.90811076,1.129197709,1.823473333,-1.74378965,1.74378965,0.828359283,0.828359283,0.210276654,2.443322056,78.5856362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49954131,1.722374441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770178512,75.53950266,75.26971983,77.2618771,101.6447611,0,0.146713429,81.5634873,-0.146713429,98.4365127,0.709199569,0,147.3561405,77.2618771,197.9224939,9,8,34% +2018-09-10 17:00:00,53.61704027,116.1920709,565.580904,793.2821255,95.02222699,387.3941164,290.9735724,96.42054401,92.15695625,4.263587757,139.996909,0,139.996909,2.865270738,137.1316382,0.935793888,2.027934202,-0.93952051,0.93952051,0.690821159,0.690821159,0.168008195,3.166846908,101.8566825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.58477171,2.075878896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294369805,97.90851756,90.87914151,99.98439645,290.9735724,0,0.366797087,68.4817796,-0.366797087,111.5182204,0.91368485,0,356.7372863,99.98439645,422.1750741,9,9,18% +2018-09-10 18:00:00,43.76804085,131.2367803,715.5932773,844.5705541,105.6898712,584.869316,476.97194,107.897376,102.5029317,5.394444392,176.6908145,0,176.6908145,3.186939571,173.5038749,0.76389642,2.290513916,-0.46093066,0.46093066,0.608977475,0.608977475,0.14769545,3.596636414,115.6801904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.52971679,2.308926871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605750838,111.1961991,101.1354676,113.505126,476.97194,0,0.564750852,55.61500818,-0.564750852,124.3849918,0.961465384,0,559.7274769,113.505126,634.0143118,9,10,13% +2018-09-10 19:00:00,36.34948565,151.5367848,812.8906363,870.1544551,112.053735,747.4130504,632.6102359,114.8028145,108.6749015,6.127912983,200.4735796,0,200.4735796,3.378833546,197.0947461,0.634418206,2.644815833,-0.108306183,0.108306183,0.548675138,0.548675138,0.137846015,3.743471396,120.4029082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.462449,2.447953402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712132283,115.7358551,107.1745813,118.1838085,632.6102359,0,0.727009133,43.36375838,-0.727009133,136.6362416,0.981225073,0,727.9076062,118.1838085,805.2565452,9,11,11% +2018-09-10 20:00:00,33.14620541,177.3261576,850.1843726,878.7716048,114.408199,857.7125033,740.3450847,117.3674186,110.9583697,6.40904892,209.5868736,0,209.5868736,3.449829322,206.1370442,0.578510419,3.0949253,0.194482777,-0.194482777,0.496895176,0.496895176,0.134568692,3.618531934,116.3844256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6574055,2.4993896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.621614069,111.8731368,109.2790195,114.3725264,740.3450847,0,0.84247725,32.59735694,-0.84247725,147.4026431,0.990651216,0,842.7027782,114.3725264,917.5573093,9,12,9% +2018-09-10 21:00:00,35.35942346,203.7659113,824.7339779,872.9551855,112.805996,904.1312043,788.5095323,115.6216721,109.404479,6.217193095,203.3678184,0,203.3678184,3.401516988,199.9663014,0.617138361,3.556386055,0.490838391,-0.490838391,0.446215381,0.446215381,0.136778645,3.245134134,104.3746688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1637466,2.464387479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351088633,100.3289017,107.5148352,102.7932892,788.5095323,0,0.903264618,25.40943887,-0.903264618,154.5905611,0.994645236,0,891.8020848,102.7932892,959.0782367,9,13,8% +2018-09-10 22:00:00,42.12625573,225.2116552,738.3792419,851.0095036,107.2122652,879.8951025,770.3494681,109.5456344,103.9794198,5.566214618,182.2614412,0,182.2614412,3.232845366,179.0285958,0.735241864,3.930684898,0.821072976,-0.821072976,0.389741941,0.389741941,0.145199457,2.662604774,85.63852218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.94897336,2.342185462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929048095,82.31900494,101.8780215,84.6611904,770.3494681,0,0.905218408,25.14728497,-0.905218408,154.852715,0.994764711,0,868.1944877,84.6611904,923.6035436,9,14,6% +2018-09-10 23:00:00,51.63194711,241.1057131,597.5159961,805.7097055,97.40335264,782.3817371,683.411127,98.97061015,94.46628218,4.50432797,147.8117415,0,147.8117415,2.937070462,144.8746711,0.901147476,4.208088538,1.247943385,-1.247943385,0.316742802,0.316742802,0.163013799,1.928407096,62.02420106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80458363,2.127897552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397124376,59.62002126,92.20170801,61.74791881,683.411127,0,0.848210121,31.98247728,-0.848210121,148.0175227,0.991052342,0,769.4979061,61.74791881,809.910684,9,15,5% +2018-09-10 00:00:00,62.55168202,253.3061453,413.2256008,717.615479,82.44194946,611.3526775,528.2815879,83.07108963,79.9560205,3.115069126,102.67726,0,102.67726,2.485928955,100.1913311,1.091732804,4.42102625,1.922015842,-1.922015842,0.201469623,0.201469623,0.19950833,1.123864248,36.14733747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85676818,1.801047065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814235822,34.74619571,77.671004,36.54724278,528.2815879,0,0.736162476,42.59446471,-0.736162476,137.4055353,0.982080211,0,596.4858973,36.54724278,620.4053368,9,16,4% +2018-09-10 01:00:00,74.13061833,263.4789014,203.3496194,529.5616982,58.54349686,363.8035033,305.4923736,58.31112976,56.77819443,1.532935326,51.06977196,0,51.06977196,1.765302433,49.30446953,1.293823366,4.598574339,3.420769685,-3.420769685,0,0,0.287895778,0.441325608,14.19454861,0.051982078,1,0.284407051,0,0.926769683,0.965531646,0.724496596,1,54.7067396,1.278955603,0.008677305,0.312029739,0.975687895,0.700184491,0.961238037,0.922476074,0.315329676,13.64434004,55.02206927,14.92329564,289.6122451,0,0.576877774,54.76875982,-0.576877774,125.2312402,0.963326527,0,334.0132276,14.92329564,343.7802261,9,17,3% +2018-09-10 02:00:00,85.83694869,272.7729808,18.52096321,92.98583666,11.77065291,47.14503814,35.589695,11.55534314,11.41572429,0.139618844,4.845550573,0,4.845550573,0.354928614,4.490621958,1.498137374,4.760786625,12.66771124,-12.66771124,0,0,0.635531358,0.088732154,2.853931073,0.620659278,1,0.078777491,0,0.95354869,0.992310653,0.724496596,1,11.05330566,0.257144573,0.081991214,0.312029739,0.793935357,0.518431953,0.961238037,0.922476074,0.061174227,2.743307102,11.11447988,3.000451675,13.5006206,0,0.382743182,67.49629449,-0.382743182,112.5037055,0.9193641,0,23.5264658,3.000451675,25.49020141,9,18,8% +2018-09-10 03:00:00,97.77245048,282.050332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706451179,4.92270695,-6.209705868,6.209705868,1,0.407924065,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160143723,80.7847615,-0.160143723,99.2152385,0.737780457,0,0,0,0,9,19,0% +2018-09-10 04:00:00,109.0989013,292.1102416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904135038,5.098285495,-2.142485146,2.142485146,1,0.896540228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067704029,93.88212482,0.067704029,86.11787518,0,0,0,0,0,9,20,0% +2018-09-10 05:00:00,119.5714667,303.8574155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086915785,5.303312357,-1.039434924,1.039434924,1,0.707907531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288300406,106.7562311,0.288300406,73.24376886,0,0.87656979,0,0,0,9,21,0% +2018-09-10 06:00:00,128.5237109,318.3632268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243161922,5.556486525,-0.463152555,0.463152555,1,0.609357441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486614414,119.1182987,0.486614414,60.88170134,0,0.947249242,0,0,0,9,22,0% +2018-09-10 07:00:00,134.9412926,336.5311916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355169853,5.873577329,-0.060629269,0.060629269,1,0.540521905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649134003,130.4763412,0.649134003,49.5236588,0,0.972974302,0,0,0,9,23,0% +2018-09-11 08:00:00,137.5998315,357.8956941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401570109,6.246458241,0.280591515,-0.280591515,1,0.482169715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764787026,139.8880486,0.764787026,40.11195142,0,0.984622322,0,0,0,9,0,0% +2018-09-11 09:00:00,135.7971418,19.61713013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370107239,0.342383511,0.620153631,-0.620153631,1,0.424101173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825695898,145.6591083,0.825695898,34.34089172,0,0.989445018,0,0,0,9,1,0% +2018-09-11 10:00:00,130.0255698,38.52528311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269374304,0.672393035,1.01549095,-1.01549095,1,0.35649451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827714617,145.8646847,0.827714617,34.13531532,0,0.989592706,0,0,0,9,2,0% +2018-09-11 11:00:00,121.4833458,53.70562209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284371,0.937339932,1.567327245,-1.567327245,1,0.262124945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770711536,140.4178272,0.770711536,39.58217277,0,0.985124884,0,0,0,9,3,0% +2018-09-11 12:00:00,111.2531806,65.91735726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.941734305,1.150474918,2.564548841,-2.564548841,1,0.091590009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658578667,131.1915638,0.658578667,48.80843624,0,0.974078926,0,0,0,9,4,0% +2018-09-11 13:00:00,100.0640011,76.24796239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746446283,1.330777992,5.601002852,-5.601002852,1,0,#DIV/0!,0,0,0.299560086,1,0.176677871,0,0.941971664,0.980733627,0.724496596,1,0,0,0.044877074,0.312029739,0.880631333,0.605127929,0.961238037,0.922476074,0,0,0,0,0,0,-0.498966795,119.9316672,0.498966795,60.06833275,0,0.949792931,0,0,0,9,5,0% +2018-09-11 14:00:00,88.07796194,85.63755204,3.097777075,17.86640398,2.498545011,2.446557012,0,2.446557012,2.42320466,0.023352352,6.14451801,5.318085743,0.826432267,0.075340351,0.751091917,1.537250434,1.494657247,-28.69575925,28.69575925,0,0,0.806560624,0.018835088,0.605801165,1,0.774643699,0,0.034834258,0.961238037,1,0.630465459,0.905968863,2.32927649,0.052177102,0.115824807,0.205341545,0.724496596,0.448993192,0.976934474,0.938172511,0.013645957,0.586536216,2.342922447,0.638713318,0,1.198464129,-0.297658429,107.3170171,0.297658429,72.6829829,0,0.882022227,2.342922447,1.695785319,3.452780022,9,6,47% +2018-09-11 15:00:00,76.4935582,94.89665254,160.969104,468.2401978,51.60941135,51.26665028,0,51.26665028,50.05319718,1.213453099,79.06789079,38.48285373,40.58503706,1.556214171,39.02882289,1.335064447,1.656259036,-3.776342209,3.776342209,0.824053759,0.824053759,0.320616877,1.068403096,34.36351618,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.113037,1.127471869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.774054406,33.03151883,48.8870914,34.1589907,0,38.48285373,-0.082186138,94.71423616,0.082186138,85.28576384,0,0,48.8870914,34.1589907,71.24346764,9,7,46% +2018-09-11 16:00:00,64.8753461,104.861089,371.9239268,691.3308721,78.39241405,179.0023132,100.17,78.83231319,76.02859353,2.803719662,92.54108257,0,92.54108257,2.363820521,90.17726205,1.132288393,1.83017126,-1.749705549,1.749705549,0.829370961,0.829370961,0.210775399,2.426157776,78.03357394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.08157599,1.712579921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75774305,75.00883942,74.83931904,76.72141934,100.17,0,0.144894441,81.66883347,-0.144894441,98.33116653,0.704921198,0,145.4512754,76.72141934,195.6639099,9,8,35% +2018-09-11 17:00:00,53.82285792,116.6028001,562.4062752,792.5128736,94.59885419,385.2578014,289.2717956,95.98600577,91.7463497,4.239656064,139.2144172,0,139.2144172,2.852504486,136.3619127,0.939386084,2.035102779,-0.939523738,0.939523738,0.690821711,0.690821711,0.168203767,3.149329572,101.2932648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19008108,2.06662979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281678554,97.36693898,90.47175963,99.43356877,289.2717956,0,0.3650058,68.59206034,-0.3650058,111.4079397,0.913015875,0,354.5815014,99.43356877,419.6587835,9,9,18% +2018-09-11 18:00:00,44.02204089,131.6634955,712.1956054,844.0485191,105.2635084,582.566164,475.1079074,107.4582565,102.0894252,5.368831306,175.8541532,0,175.8541532,3.174083159,172.6800701,0.768329557,2.297961501,-0.458716293,0.458716293,0.608598796,0.608598796,0.147801401,3.57804926,115.0823637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.13223869,2.299612444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.592284509,110.6215453,100.7245232,112.9211578,475.1079074,0,0.562891702,55.74398495,-0.562891702,124.256015,0.961172967,0,557.3854,112.9211578,631.2900394,9,10,13% +2018-09-11 19:00:00,36.66907574,151.9124708,809.1999519,869.702224,111.6134646,744.8737035,630.5257056,114.3479979,108.2479068,6.100091045,199.5654547,0,199.5654547,3.365557767,196.1998969,0.639996105,2.65137279,-0.10474585,0.10474585,0.548066285,0.548066285,0.137930637,3.723506493,119.7607683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0520054,2.438335146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.697667779,115.1186058,106.7496732,117.5569409,630.5257056,0,0.724990334,43.53195628,-0.724990334,136.4680437,0.981033563,0,725.3165529,117.5569409,802.2552196,9,11,11% +2018-09-11 20:00:00,33.52301083,177.5095506,846.1456744,878.2889057,113.9477542,854.8443543,737.9539418,116.8904125,110.511809,6.378603507,208.5937603,0,208.5937603,3.435945212,205.1578151,0.585086914,3.098126112,0.199311861,-0.199311861,0.496069354,0.496069354,0.134666828,3.597099244,115.6950766,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2281543,2.48933061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.606086157,111.2105083,108.8342405,113.699839,737.9539418,0,0.840217766,32.83687773,-0.840217766,147.1631223,0.990491618,0,839.7714341,113.699839,914.1857047,9,12,9% +2018-09-11 21:00:00,35.74761559,203.6997188,820.3159097,872.3475045,112.3201621,900.8405133,785.7233307,115.1171826,108.9332948,6.18388783,202.2819569,0,202.2819569,3.386867304,198.8950896,0.623913592,3.555230778,0.497317962,-0.497317962,0.445107309,0.445107309,0.136923057,3.222330651,103.6412304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7108264,2.453773833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.334567587,99.62389287,107.045394,102.0776667,785.7233307,0,0.900699924,25.74977786,-0.900699924,154.2502221,0.994487616,0,888.4375161,102.0776667,955.2453074,9,13,8% +2018-09-11 22:00:00,42.48996243,225.0019895,733.579781,850.1347171,106.6941121,876.0877781,767.0808529,109.0069252,103.476891,5.530034254,181.0821321,0,181.0821321,3.217221139,177.864911,0.741589743,3.927025541,0.830199475,-0.830199475,0.388181218,0.388181218,0.145443093,2.638744511,84.87109411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.46592354,2.330865764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.911761416,81.58132389,101.377685,83.91218965,767.0808529,0,0.902305055,25.53726966,-0.902305055,154.4627303,0.994586368,0,864.3058447,83.91218965,919.2246945,9,14,6% +2018-09-11 23:00:00,51.96664922,240.8506482,592.3697863,804.2776545,96.83819195,777.9411941,679.5574973,98.38369684,93.91816317,4.465533667,146.5469417,0,146.5469417,2.920028782,143.6269129,0.90698913,4.203636816,1.262142196,-1.262142196,0.314314662,0.314314662,0.163475914,1.904137937,61.24362148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.27771079,2.115550913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379541453,58.86969848,91.65725224,60.9852494,679.5574973,0,0.844928979,32.33567266,-0.844928979,147.6643273,0.990823429,0,764.9787417,60.9852494,804.8923677,9,15,5% +2018-09-11 00:00:00,62.86564715,253.0457157,407.8276187,714.8792159,81.78652775,606.0587498,523.6640108,82.39473903,79.32036217,3.074376857,101.3486934,0,101.3486934,2.466165572,98.88252781,1.097212529,4.416480897,1.948529254,-1.948529254,0.196935562,0.196935562,0.200541905,1.100576602,35.39832672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.24574922,1.786728562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797364002,34.02621809,77.04311322,35.81294665,523.6640108,0,0.732520962,42.90184639,-0.732520962,137.0981536,0.981742568,0,591.1463637,35.81294665,614.585221,9,16,4% +2018-09-11 01:00:00,74.43320087,263.2240028,198.0038331,523.0803976,57.62911092,357.0646713,299.6806541,57.38401712,55.89138059,1.492636531,49.74605208,0,49.74605208,1.737730323,48.00832175,1.299104428,4.594125519,3.494441363,-3.494441363,0,0,0.291050481,0.434432581,13.97284515,0.063171277,1,0.278719796,0,0.927634125,0.966396088,0.724496596,1,53.87635355,1.258979703,0.010491143,0.312029739,0.970680175,0.695176771,0.961238037,0.922476074,0.309568261,13.43123024,54.18592181,14.69020994,280.7494444,0,0.572915092,55.04624482,-0.572915092,124.9537552,0.962727033,0,324.4710014,14.69020994,334.08545,9,17,3% +2018-09-11 02:00:00,86.12858177,272.5247656,15.81621176,81.07103308,10.34249087,40.84769977,30.69784387,10.1498559,10.03062661,0.119229285,4.146687915,0,4.146687915,0.311864259,3.834823656,1.503227332,4.756454453,13.64986778,-13.64986778,0,0,0.653917071,0.077966065,2.507656653,0.643380759,1,0.073130136,0,0.954148945,0.992910908,0.724496596,1,9.709367777,0.225944594,0.084285314,0.312029739,0.788936805,0.513433401,0.961238037,0.922476074,0.053850147,2.410454958,9.763217924,2.636399552,10.94744179,0,0.378653666,67.74968747,-0.378653666,112.2503125,0.917953213,0,19.81245728,2.636399552,21.53792806,9,18,9% +2018-09-11 03:00:00,98.08084756,281.808318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711833723,4.918483009,-5.985461999,5.985461999,1,0.446272025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155675399,81.04403071,-0.155675399,98.95596929,0.728818874,0,0,0,0,9,19,0% +2018-09-11 04:00:00,109.4215726,291.8769799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909766715,5.09421431,-2.111810737,2.111810737,1,0.891294595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072292626,94.14567876,0.072292626,85.85432124,0,0,0,0,0,9,20,0% +2018-09-11 05:00:00,119.9156565,303.6444756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092923031,5.299595855,-1.03024864,1.03024864,1,0.706336583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292914344,107.0325144,0.292914344,72.96748563,0,0.879301634,0,0,0,9,21,0% +2018-09-11 06:00:00,128.893487,318.2013447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249615733,5.55366115,-0.460321257,0.460321257,1,0.608873261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491157081,119.4166616,0.491157081,60.58333845,0,0.948199574,0,0,0,9,22,0% +2018-09-11 07:00:00,135.3303314,336.4784695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36195986,5.872657154,-0.060719406,0.060719406,1,0.54053732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653513747,130.8070502,0.653513747,49.19294978,0,0.973490515,0,0,0,9,23,0% +2018-09-12 08:00:00,137.983091,358.009927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408259251,6.248451981,0.278553779,-0.278553779,1,0.482518188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768923452,140.257314,0.768923452,39.74268603,0,0.984974021,0,0,0,9,0,0% +2018-09-12 09:00:00,136.1407989,19.88522336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376105188,0.34706262,0.616211479,-0.616211479,1,0.42477532,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829525394,146.0500153,0.829525394,33.94998469,0,0.98972457,0,0,0,9,1,0% +2018-09-12 10:00:00,130.3132655,38.87176306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274395542,0.678440251,1.00890157,-1.00890157,1,0.35762136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831194716,146.2216605,0.831194716,33.77833946,0,0.989845623,0,0,0,9,2,0% +2018-09-12 11:00:00,121.7202116,54.07092926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12441846,0.943715745,1.55573882,-1.55573882,1,0.264106682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773823835,140.6985188,0.773823835,39.30148121,0,0.98538581,0,0,0,9,3,0% +2018-09-12 12:00:00,111.4526836,66.27853484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945216289,1.156778656,2.539442819,-2.539442819,1,0.095883391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661330086,131.4013917,0.661330086,48.59860826,0,0.97439479,0,0,0,9,4,0% +2018-09-12 13:00:00,100.2398934,76.60289492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749516181,1.336972733,5.498930502,-5.498930502,1,0,#DIV/0!,0,0,0.290890184,1,0.17988773,0,0.941555273,0.980317236,0.724496596,1,0,0,0.043735885,0.312029739,0.883470367,0.607966963,0.961238037,0.922476074,0,0,0,0,0,0,-0.501389094,120.0919444,0.501389094,59.90805562,0,0.950277049,0,0,0,9,5,0% +2018-09-12 14:00:00,88.22972087,85.99254891,2.561932558,15.0392734,2.097335057,2.053405596,0,2.053405596,2.034092667,0.01931293,5.190133001,4.505720401,0.6844126,0.06324239,0.62117021,1.539899127,1.500853111,-31.10287128,31.10287128,0,0,0.818653501,0.015810598,0.508523167,1,0.793774376,0,0.032140301,0.961238037,1,0.637397562,0.912900966,1.955247242,0.043903716,0.115824807,0.21319042,0.724496596,0.448993192,0.975862628,0.937100665,0.011454724,0.492183767,1.966701966,0.536087483,0,0.929195002,-0.299596947,107.4333965,0.299596947,72.56660354,0,0.883109114,1.966701966,1.356668059,2.854614077,9,6,45% +2018-09-12 15:00:00,76.6580045,95.26116525,158.1726363,464.3373929,51.02075755,50.67466561,0,50.67466561,49.48229347,1.192372145,78.94875737,39.05950635,39.88925103,1.538464087,38.35078694,1.337934577,1.662620983,-3.813276338,3.813276338,0.817737651,0.817737651,0.322563743,1.045148616,33.61557217,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.56426263,1.114611994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.757206615,32.3125666,48.32146924,33.4271786,0,39.05950635,-0.084118804,94.8253546,0.084118804,85.1746454,0,0,48.32146924,33.4271786,70.19888909,9,7,45% +2018-09-12 16:00:00,65.0537802,105.2452108,368.8817204,689.8139094,77.94071684,177.0610175,98.68971461,78.37130288,75.59051666,2.780786225,91.78984406,0,91.78984406,2.350200183,89.43964388,1.135402655,1.836875451,-1.75569758,1.75569758,0.830395659,0.830395659,0.211289182,2.408803847,77.47541193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.66047984,1.702712033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745170187,74.47231287,74.40565003,76.1750249,98.68971461,0,0.143067157,81.77463151,-0.143067157,98.22536849,0.700513778,0,143.5391549,76.1750249,193.3941852,9,8,35% +2018-09-12 17:00:00,54.03055313,117.012968,559.1924408,791.7206649,94.17233278,383.097669,287.5495507,95.54811831,91.33268949,4.215428822,138.4223247,0,138.4223247,2.839643292,135.5826814,0.943011049,2.042261558,-0.939515512,0.939515512,0.690820305,0.690820305,0.168407736,3.131593835,100.7228225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.79245514,2.057311899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.268829073,96.81860819,90.06128422,98.87592009,287.5495507,0,0.363195712,68.70341415,-0.363195712,111.2965859,0.912333176,0,352.4022792,98.87592009,417.1145914,9,9,18% +2018-09-12 18:00:00,44.27828988,132.0880182,708.7496753,843.5081831,104.8338164,580.2267705,473.2112261,107.0155444,101.67269,5.342854429,175.0056908,0,175.0056908,3.161126359,171.8445644,0.772801946,2.30537082,-0.456467762,0.456467762,0.608214274,0.608214274,0.147913742,3.559221376,114.4767942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.73165693,2.290225286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.578643771,110.0394489,100.3103007,112.3296742,473.2112261,0,0.561003717,55.87476007,-0.561003717,124.1252399,0.960874031,0,555.006679,112.3296742,628.5242041,9,10,13% +2018-09-12 19:00:00,36.99077787,152.284202,805.4542857,869.2331587,111.1696284,742.2873499,628.3980413,113.8893086,107.817454,6.071854631,198.6438913,0,198.6438913,3.35217447,195.2917168,0.645610867,2.657860723,-0.101137854,0.101137854,0.547449281,0.547449281,0.138021028,3.703289695,119.1105266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6382378,2.428638992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683020778,114.4935687,106.3212586,116.9222077,628.3980413,0,0.722933812,43.70276432,-0.722933812,136.2972357,0.980837375,0,722.677544,116.9222077,799.2007905,9,11,11% +2018-09-12 20:00:00,33.90130537,177.6904218,842.0479624,877.7889124,113.4835357,851.9204188,735.5111172,116.4093017,110.0615884,6.347713223,207.5862247,0,207.5862247,3.421947312,204.1642774,0.591689399,3.10128291,0.204204768,-0.204204768,0.495232618,0.495232618,0.134770869,3.575416482,114.9976845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7953852,2.479189179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.59037707,110.5401485,108.3857623,113.0193376,735.5111172,0,0.837913429,33.07956567,-0.837913429,146.9204343,0.990327964,0,836.7829897,113.0193376,910.7518858,9,12,9% +2018-09-12 21:00:00,36.13719636,203.6349981,815.8377732,871.7200462,111.8303805,897.4875428,782.8791311,114.6084117,108.4582819,6.150129746,201.1814121,0,201.1814121,3.372098582,197.8093136,0.630713059,3.55410119,0.503888223,-0.503888223,0.443983729,0.443983729,0.137074286,3.199292956,102.900259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.254226,2.443073944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.317876856,98.91164291,106.5721028,101.3547168,782.8791311,0,0.898085497,26.09245555,-0.898085497,153.9075445,0.994326013,0,885.0091882,101.3547168,951.3438233,9,13,7% +2018-09-12 22:00:00,42.85538178,224.7948805,728.7223473,849.2343004,106.1717998,872.2138542,763.7501091,108.4637452,102.9703283,5.493416867,179.8886414,0,179.8886414,3.201471496,176.68717,0.747967514,3.923410806,0.839469759,-0.839469759,0.386595906,0.386595906,0.14569582,2.614681401,84.09714178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.97899621,2.3194552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.894327775,80.83737147,100.873324,83.15682667,763.7501091,0,0.899339686,25.9285928,-0.899339686,154.0714072,0.994403654,0,860.3492235,83.15682667,914.7737034,9,14,6% +2018-09-12 23:00:00,52.30316898,240.597341,587.1710419,802.8063866,96.26836156,773.4307466,675.638888,97.7918586,93.36551527,4.426343336,145.2692634,0,145.2692634,2.902846294,142.3664171,0.912862508,4.199215772,1.276611331,-1.276611331,0.311840294,0.311840294,0.163952843,1.879717672,60.4581818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.74648461,2.103102258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361849054,58.11470399,91.10833366,60.21780625,675.638888,0,0.841596304,32.69092872,-0.841596304,147.3090713,0.990589093,0,760.3888467,60.21780625,799.8001965,9,15,5% +2018-09-12 00:00:00,63.18130138,252.7861111,402.386938,712.0667994,81.12460434,600.6882556,518.9764947,81.71176091,78.6783982,3.033362707,100.0095779,0,100.0095779,2.446206139,97.56337178,1.102721735,4.411949941,1.975721039,-1.975721039,0.192285493,0.192285493,0.201608444,1.07723069,34.64744196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.62866903,1.77226802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780449968,33.30443909,76.40911899,35.07670711,518.9764947,0,0.728831193,43.2115019,-0.728831193,136.7884981,0.981397009,0,585.7310985,35.07670711,608.6881017,9,16,4% +2018-09-12 01:00:00,74.73721893,262.9692093,192.6393109,516.3962896,56.69983393,350.2255512,293.7832299,56.44232124,54.99012474,1.452196497,48.41734041,0,48.41734041,1.709709193,46.70763122,1.304410544,4.589678534,3.571251472,-3.571251472,0,0,0.294331586,0.427427298,13.74753119,0.074559314,1,0.273021579,0,0.928493466,0.967255429,0.724496596,1,53.03057163,1.23867849,0.012318224,0.312029739,0.965661904,0.690158499,0.961238037,0.922476074,0.303772514,13.21464989,53.33434414,14.45332838,271.8789539,0,0.56891042,55.32571908,-0.56891042,124.6742809,0.962112701,0,314.9125389,14.45332838,324.3719532,9,17,3% +2018-09-12 02:00:00,86.42035916,272.2760869,13.30295209,69.62004192,8.956163342,34.8624013,26.07601605,8.786385245,8.686101973,0.100283272,3.495516121,0,3.495516121,0.270061369,3.225454751,1.508319808,4.752114191,14.79217653,-14.79217653,0,0,0.673246305,0.067515342,2.171525493,0.666606376,1,0.067500598,0,0.954739843,0.993501806,0.724496596,1,8.405218051,0.195658543,0.086590867,0.312029739,0.783955724,0.50845232,0.961238037,0.922476074,0.046727682,2.087352902,8.451945733,2.283011445,8.693577502,0,0.374547549,68.00364864,-0.374547549,111.9963514,0.916505601,0,16.41965821,2.283011445,17.91384354,9,18,9% +2018-09-12 03:00:00,98.39029306,281.5653277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717234566,4.914242029,-5.776801818,5.776801818,1,0.481955017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151181509,81.30459709,-0.151181509,98.69540291,0.719271722,0,0,0,0,9,19,0% +2018-09-12 04:00:00,109.745165,291.6422321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915414468,5.090117188,-2.081979011,2.081979011,1,0.88619307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076896451,94.4101957,0.076896451,85.5898043,0,0,0,0,0,9,20,0% +2018-09-12 05:00:00,120.2607654,303.4296028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098946317,5.295845618,-1.021211326,1.021211326,1,0.704791112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297532936,107.3094856,0.297532936,72.69051439,0,0.881951377,0,0,0,9,21,0% +2018-09-12 06:00:00,129.2643432,318.0375317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256088395,5.550802074,-0.4575183,0.4575183,1,0.608393927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495694315,119.7155447,0.495694315,60.2844553,0,0.949131383,0,0,0,9,22,0% +2018-09-12 07:00:00,135.7206535,336.4251966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368772266,5.871727367,-0.060802531,0.060802531,1,0.540551535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657879154,131.1383249,0.657879154,48.86167514,0,0.9739982,0,0,0,9,23,0% +2018-09-13 08:00:00,138.3674463,358.1266181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414967515,6.250488625,0.276539736,-0.276539736,1,0.48286261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773038429,140.6275267,0.773038429,39.37247328,0,0.985320162,0,0,0,9,0,0% +2018-09-13 09:00:00,136.4848262,20.15788871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382109596,0.351821528,0.612308258,-0.612308258,1,0.425442811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833328608,146.4422005,0.833328608,33.55779954,0,0.98999966,0,0,0,9,1,0% +2018-09-13 10:00:00,130.6006871,39.2225825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279411995,0.684563206,1.002376765,-1.002376765,1,0.358737167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834646314,146.5790279,0.834646314,33.4209721,0,0.990094386,0,0,0,9,2,0% +2018-09-13 11:00:00,121.9566032,54.43947212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12854427,0.950148032,1.544279941,-1.544279941,1,0.266066266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776908176,140.9783561,0.776908176,39.02164388,0,0.98564233,0,0,0,9,3,0% +2018-09-13 12:00:00,111.6518463,66.64200562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948692334,1.163122418,2.51472443,-2.51472443,1,0.100110485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664056813,131.6100073,0.664056813,48.38999268,0,0.974705238,0,0,0,9,4,0% +2018-09-13 13:00:00,100.415755,76.95947638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752585546,1.343196253,5.400063477,-5.400063477,1,0,#DIV/0!,0,0,0.282285431,1,0.183108713,0,0.941135134,0.979897097,0.724496596,1,0,0,0.04259504,0.312029739,0.886318837,0.610815433,0.961238037,0.922476074,0,0,0,0,0,0,-0.50379247,120.2512266,0.50379247,59.74877342,0,0.950752784,0,0,0,9,5,0% +2018-09-13 14:00:00,88.38092521,86.3487343,2.087712678,12.50449807,1.734405272,1.697844614,0,1.697844614,1.682106553,0.01573806,4.328713469,3.770224641,0.558488828,0.052298718,0.50619011,1.542538141,1.507069718,-33.948067,33.948067,0,0,0.830768185,0.01307468,0.420526638,1,0.812580183,0,0.029448243,0.961238037,1,0.644381891,0.919885295,1.616904801,0.036400781,0.115824807,0.221101426,0.724496596,0.448993192,0.974768702,0.936006739,0.009472561,0.40686118,1.626377362,0.443261961,0,0.706614814,-0.301509474,107.5482882,0.301509474,72.45171177,0,0.884167732,1.626377362,1.068027978,2.325380313,9,6,43% +2018-09-13 15:00:00,76.82326742,95.6264481,155.3657928,460.3507524,50.42631256,50.07698616,0,50.07698616,48.90577319,1.171212973,78.80371409,39.61293948,39.19077461,1.520539377,37.67023524,1.340818959,1.668996371,-3.851165816,3.851165816,0.811258168,0.811258168,0.32456509,1.021903438,32.86792734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.01008941,1.101625603,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.740365562,31.59390195,47.75045497,32.69552755,0,39.61293948,-0.086049473,94.93637635,0.086049473,85.06362365,0,0,47.75045497,32.69552755,69.14902384,9,7,45% +2018-09-13 16:00:00,65.23356032,105.6295556,365.8116628,688.2598954,77.48562738,175.1106098,97.20381717,77.90679265,75.14914982,2.757642834,91.03175043,0,91.03175043,2.336477557,88.69527287,1.13854041,1.843583533,-1.761770569,1.761770569,0.831434201,0.831434201,0.211818362,2.391261117,76.91117744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23622124,1.692770036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732460539,73.92994922,73.96868178,75.62271925,97.20381717,0,0.141231267,81.88089937,-0.141231267,98.11910063,0.695970747,0,141.619695,75.62271925,191.1132523,9,8,35% +2018-09-13 17:00:00,54.24010853,117.4224206,555.9395097,790.9051157,93.7426542,380.91345,285.8065759,95.10687415,90.9159673,4.190906854,137.6206575,0,137.6206575,2.826686898,134.7939706,0.94666848,2.049407855,-0.939497737,0.939497737,0.690817265,0.690817265,0.168620241,3.113641507,100.1454139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.39188592,2.047925035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.255822673,96.26358109,89.6477086,98.31150613,285.8065759,0,0.361366452,68.81586172,-0.361366452,111.1841383,0.911636298,0,350.1993575,98.31150613,414.542272,9,9,18% +2018-09-13 18:00:00,44.53674452,132.5101915,705.2557521,842.9493193,104.4008026,577.8508839,471.2816349,106.569249,101.2527332,5.316515761,174.1454917,0,174.1454917,3.148069397,170.9974223,0.77731283,2.312739135,-0.454186303,0.454186303,0.607824122,0.607824122,0.148032543,3.540155744,113.8635779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.3279785,2.280765562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564830785,109.4500021,99.89280929,111.7307677,471.2816349,0,0.55908656,56.00734923,-0.55908656,123.9926508,0.96056841,0,552.59106,111.7307677,625.7166128,9,10,13% +2018-09-13 19:00:00,37.31451512,152.6518744,801.654145,868.7471085,110.72225,739.6538757,626.2271025,113.4267732,107.3835656,6.043207565,197.709013,0,197.709013,3.338684359,194.3703287,0.651261148,2.664277818,-0.097483156,0.097483156,0.546824291,0.546824291,0.13811723,3.682825356,118.4523231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2211678,2.418865453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.668194434,113.8608785,105.8893623,116.2797439,626.2271025,0,0.720839352,43.87617758,-0.720839352,136.1238224,0.980636417,0,719.9904645,116.2797439,796.0932313,9,11,11% +2018-09-13 20:00:00,34.2809921,177.8687038,837.8920516,877.2715134,113.0155845,848.9408218,733.0166899,115.9241318,109.6077476,6.316384212,206.5644655,0,206.5644655,3.407836855,203.1566287,0.598316183,3.104394518,0.20916074,-0.20916074,0.494385096,0.494385096,0.134880841,3.553489494,114.2924372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3591362,2.468966201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574491042,109.8622379,107.9336272,112.3312041,733.0166899,0,0.835564222,33.32536533,-0.835564222,146.6746347,0.990160195,0,833.737576,112.3312041,907.2561024,9,12,9% +2018-09-13 21:00:00,36.52805051,203.5716405,811.3007351,871.072709,111.3367106,894.0727354,779.9773098,114.0954256,107.979498,6.115927636,200.0664688,0,200.0664688,3.357212613,196.7092561,0.637534751,3.55299539,0.510548722,-0.510548722,0.442844716,0.442844716,0.137232355,3.176028424,102.1519916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7940006,2.43228911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301021781,98.1923799,106.0950224,100.624669,779.9773098,0,0.89542159,26.4373669,-0.89542159,153.5626331,0.994160381,0,881.5175623,100.624669,947.3743956,9,13,7% +2018-09-13 22:00:00,43.22238508,224.5902635,723.8084801,848.3081121,105.6454054,868.2741399,760.3579591,107.9161807,102.4598067,5.456374061,178.6813447,0,178.6813447,3.185598764,175.495746,0.75437293,3.919839566,0.848884184,-0.848884184,0.384985944,0.384985944,0.145957679,2.590424325,83.3169508,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.48826343,2.307955461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.876753605,80.08742223,100.365017,82.39537769,760.3579591,0,0.896322867,26.32114331,-0.896322867,153.6788567,0.99421653,0,856.3254685,82.39537769,910.2515953,9,14,6% +2018-09-13 23:00:00,52.64137788,240.3457807,581.9216793,801.2955678,95.69394949,768.8515628,671.6563675,97.19519526,92.80842384,4.386771423,143.979174,0,143.979174,2.88552565,141.0936484,0.918765367,4.194825216,1.291354022,-1.291354022,0.309319146,0.309319146,0.164444723,1.855156719,59.66821716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.21098714,2.090553511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.344054728,57.35535992,90.55504186,59.44591343,671.6563675,0,0.838213007,33.0481041,-0.838213007,146.9518959,0.990349291,0,755.7294493,59.44591343,794.6356108,9,15,5% +2018-09-13 00:00:00,63.49851966,252.5273443,396.9058878,709.1770552,80.45623901,595.2425614,514.2203306,81.02223079,78.03018655,2.992044236,98.66048016,0,98.66048016,2.426052458,96.23442771,1.108258238,4.407433609,2.003609115,-2.003609115,0.187516351,0.187516351,0.202708605,1.053839206,33.89509142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.00558334,1.757666747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763502917,32.58125113,75.76908625,34.33891788,514.2203306,0,0.725094427,43.52329638,-0.725094427,136.4767036,0.981043464,0,580.2415806,34.33891788,602.7157156,9,16,4% +2018-09-13 01:00:00,75.04254734,262.71454,187.2594494,509.5045634,55.75546268,343.2873567,287.8014861,55.4858706,54.07422977,1.411640829,47.08445445,0,47.08445445,1.681232916,45.40322153,1.30973953,4.585233716,3.651379926,-3.651379926,0,0,0.297744455,0.420308229,13.51855744,0.086147966,1,0.267314484,0,0.929347327,0.968109291,0.724496596,1,52.16919607,1.218047524,0.014158117,0.312029739,0.96063484,0.685131436,0.961238037,0.922476074,0.297942,12.99455162,52.46713807,14.21259914,263.0079735,0,0.564865375,55.60705678,-0.564865375,124.3929432,0.961483333,0,305.3449212,14.21259914,314.6467831,9,17,3% +2018-09-13 02:00:00,86.71199437,272.0269609,10.99522042,58.75534811,7.625305572,29.24296994,21.76470885,7.478261091,7.395374475,0.082886616,2.895849587,0,2.895849587,0.229931097,2.665918489,1.513409803,4.747766123,16.13601203,-16.13601203,0,0,0.693510933,0.057482774,1.848843619,0.690332191,1,0.061894024,0,0.955320905,0.994082868,0.724496596,1,7.15372497,0.166584297,0.088905915,0.312029739,0.778996957,0.503493553,0.961238037,0.922476074,0.03987479,1.77717881,7.19359976,1.943763108,6.739829697,0,0.370429409,68.25789755,-0.370429409,111.7421025,0.915021516,0,13.36068895,1.943763108,14.63284303,9,18,10% +2018-09-13 03:00:00,98.70066133,281.3213689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722651514,4.909984143,-5.582215929,5.582215929,1,0.515231164,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146664125,81.5663431,-0.146664125,98.4336569,0.709085002,0,0,0,0,9,19,0% +2018-09-13 04:00:00,110.0695496,291.4059895,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921076046,5.085993977,-2.05296602,2.05296602,1,0.881231556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08151329,94.67555502,0.08151329,85.32444498,0,0,0,0,0,9,20,0% +2018-09-13 05:00:00,120.6066622,303.2127611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104983355,5.292061015,-1.012323336,1.012323336,1,0.703271176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302153915,107.5870183,0.302153915,72.41298169,0,0.884521423,0,0,0,9,21,0% +2018-09-13 06:00:00,129.636152,317.8717167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262577681,5.547908055,-0.454745305,0.454745305,1,0.607919717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500223894,120.0148138,0.500223894,59.98518621,0,0.950044759,0,0,0,9,22,0% +2018-09-13 07:00:00,136.112144,336.3712915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375605065,5.870786546,-0.060880054,0.060880054,1,0.540564792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66222813,131.4700248,0.66222813,48.52997515,0,0.974497318,0,0,0,9,23,0% +2018-09-14 08:00:00,138.7527946,358.2457289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421693112,6.2525675,0.274548186,-0.274548186,1,0.483203185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777130075,140.9985537,0.777130075,39.00144634,0,0.985660706,0,0,0,9,0,0% +2018-09-14 09:00:00,136.8291289,20.4350953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388118812,0.356659696,0.608442805,-0.608442805,1,0.426103842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837103936,146.8355542,0.837103936,33.16444576,0,0.990270261,0,0,0,9,1,0% +2018-09-14 10:00:00,130.8877588,39.57766473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284422341,0.69076056,0.99591508,-0.99591508,1,0.35984218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838068129,146.9366776,0.838068129,33.06332243,0,0.990338979,0,0,0,9,2,0% +2018-09-14 11:00:00,122.1924708,54.81114427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132660937,0.956634934,1.532947845,-1.532947845,1,0.268004169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779963626,141.2572452,0.779963626,38.7427548,0,0.985894446,0,0,0,9,3,0% +2018-09-14 12:00:00,111.8506413,67.00765532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95216196,1.169504209,2.490383514,-2.490383514,1,0.104273026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666758269,131.8173568,0.666758269,48.18264324,0,0.975010304,0,0,0,9,4,0% +2018-09-14 13:00:00,100.591574,77.31759163,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755654166,1.349446544,5.304246395,-5.304246395,1,0,#DIV/0!,0,0,0.273744488,1,0.18634104,0,0.940711199,0.979473162,0.724496596,1,0,0,0.041454462,0.312029739,0.889176925,0.613673521,0.961238037,0.922476074,0,0,0,0,0,0,-0.506176665,120.4094932,0.506176665,59.59050677,0,0.951220259,0,0,0,9,5,0% +2018-09-14 14:00:00,88.53149465,86.70599076,1.673108486,10.25942937,1.4101855,1.380275802,0,1.380275802,1.367663204,0.012612598,3.560844288,3.112657469,0.448186819,0.042522296,0.405664523,1.545166073,1.51330502,-37.36142179,37.36142179,0,0,0.842853594,0.010630574,0.341915801,1,0.83106205,0,0.026759188,0.961238037,1,0.651415375,0.92691878,1.314649893,0.029678792,0.115824807,0.229071124,0.724496596,0.448993192,0.973652928,0.934890965,0.007701815,0.330668331,1.322351708,0.360347123,0,0.525845972,-0.303394795,107.661617,0.303394795,72.33838304,0,0.885198227,1.322351708,0.825825045,1.862837683,9,6,41% +2018-09-14 15:00:00,76.98934658,95.99237642,152.5488839,456.2782184,49.82595467,49.47349622,0,49.47349622,48.3235183,1.149977924,78.63229103,40.1426116,38.48967942,1.502436371,36.98724305,1.343717587,1.675383025,-3.890057224,3.890057224,0.804607346,0.804607346,0.326622873,0.998671942,32.12072258,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.45040386,1.088510037,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.723534423,30.87566032,47.17393828,31.96417035,0,40.1426116,-0.087978365,95.04731453,0.087978365,84.95268547,0,0.481678458,47.17393828,51.30000162,80.74876334,9,7,71% +2018-09-14 16:00:00,65.41468325,106.0139851,362.7137948,686.6679971,77.02710746,173.1509297,95.71218394,77.43874577,74.70445597,2.734289796,90.26681039,0,90.26681039,2.32265149,87.9441589,1.141701602,1.850293093,-1.767929835,1.767929835,0.832487497,0.832487497,0.212363325,2.37353036,76.34089534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8087646,1.682753098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.719614666,73.38177237,73.52837927,75.06452547,95.71218394,0,0.139386406,81.98765825,-0.139386406,98.01234175,0.69128496,0,139.6927726,75.06452547,188.8210032,9,8,35% +2018-09-14 17:00:00,54.45150755,117.8310024,552.6475824,790.0658251,93.30980855,378.7048424,284.042578,94.66226446,90.49617354,4.166090915,136.8094397,0,136.8094397,2.813635004,133.9958047,0.950358089,2.056538954,-0.939472534,0.939472534,0.690812955,0.690812955,0.168841431,3.095474449,99.5610989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9883642,2.038468983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242660701,95.70191525,89.2310249,97.74038423,284.042578,0,0.359517611,68.92942618,-0.359517611,111.0705738,0.910924755,0,347.9724405,97.74038423,411.9415672,9,9,18% +2018-09-14 18:00:00,44.79736138,132.929858,701.7141146,842.3716961,103.9644751,575.4382377,469.3188577,106.11938,100.8295626,5.289817401,173.2736238,0,173.2736238,3.134912513,170.1387112,0.781861452,2.320063696,-0.451873289,0.451873289,0.607428573,0.607428573,0.148157879,3.520855506,113.2428159,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.92121082,2.271233444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550847828,108.8533021,99.47205865,111.1245355,469.3188577,0,0.557139871,56.14176941,-0.557139871,123.8582306,0.960255929,0,550.1382744,111.1245355,622.8670604,9,10,13% +2018-09-14 19:00:00,37.64021016,153.0153833,797.8000732,868.243925,110.2713546,736.9731761,624.0127557,112.9604204,106.9462664,6.014153944,196.7609526,0,196.7609526,3.3250882,193.4358644,0.656945598,2.670622244,-0.093782829,0.093782829,0.546191498,0.546191498,0.138219284,3.662118075,117.7863058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8008192,2.409015082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.653192079,113.2206773,105.4540113,115.6296924,624.0127557,0,0.718706734,44.05219102,-0.718706734,135.947809,0.980430595,0,717.2552085,115.6296924,792.9325296,9,11,11% +2018-09-14 20:00:00,34.66197331,178.044326,833.6788141,876.7366043,112.5439445,845.9057222,730.4707699,115.4349524,109.1503293,6.284623048,205.5286956,0,205.5286956,3.39361517,202.1350805,0.60496556,3.107459703,0.21417891,-0.21417891,0.493526939,0.493526939,0.134996767,3.53132444,113.5795329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9194483,2.458662638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558432536,109.1769672,107.4778808,111.6356298,730.4707699,0,0.833170152,33.57422007,-0.833170152,146.4257799,0.989988249,0,830.635359,111.6356298,903.698646,9,12,9% +2018-09-14 21:00:00,36.92006136,203.5095331,806.7060369,870.4054036,110.8392162,890.596593,777.0182972,113.5782958,107.4970049,6.08129086,198.9374297,0,198.9374297,3.342211322,195.5952184,0.644376631,3.551911413,0.517298898,-0.517298898,0.441690368,0.441690368,0.137397281,3.152544791,101.3966773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.33021,2.421420726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284007969,97.46634301,105.6142179,99.88776374,777.0182972,0,0.892708494,26.78440663,-0.892708494,153.2155934,0.993990675,0,877.9631599,99.88776374,943.3377035,9,13,7% +2018-09-14 22:00:00,43.59084121,224.3880683,718.8398067,847.3560294,105.1150119,864.269526,756.9052014,107.3643246,101.9454065,5.418918102,177.460639,0,177.460639,3.169605443,174.2910336,0.760803703,3.916310594,0.858442982,-0.858442982,0.383351294,0.383351294,0.146228702,2.565982539,82.53081896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.99380239,2.296368353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.859045615,79.3317624,99.85284801,81.62813075,756.9052014,0,0.893255226,26.71480888,-0.893255226,153.2851911,0.994024957,0,852.235508,81.62813075,905.659487,9,14,6% +2018-09-14 23:00:00,52.9811441,240.0959505,576.6237109,799.7448916,95.11505037,764.2049125,667.6110987,96.59381376,92.24698066,4.346833099,142.6771643,0,142.6771643,2.868069706,139.8090946,0.924695406,4.190464857,1.30637338,-1.30637338,0.306750684,0.306750684,0.164951681,1.830465868,58.8740745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.6713066,2.077906739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32616629,56.5919998,89.99747289,58.66990654,667.6110987,0,0.834780073,33.4070552,-0.834780073,146.5929448,0.990103985,0,751.001882,58.66990654,789.4001624,9,15,5% +2018-09-14 00:00:00,63.81717323,252.2694236,391.3868972,706.2088405,79.78149886,589.7231495,509.3969174,80.32623206,77.37579231,2.950439753,97.30199109,0,97.30199109,2.405706553,94.89628454,1.113819792,4.402932044,2.032211754,-2.032211754,0.182625012,0.182625012,0.20384305,1.030415186,33.14169443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.3765547,1.742926208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.746532295,31.85705729,75.12308699,33.5999835,509.3969174,0,0.721312009,43.83709118,-0.721312009,136.1629088,0.980681869,0,574.6794082,33.5999835,596.6699254,9,16,4% +2018-09-14 01:00:00,75.34905692,262.4600101,181.8677883,502.4004758,54.7958005,336.2514772,281.7369761,54.51450115,53.14350494,1.370996209,45.74824642,0,45.74824642,1.65229556,44.09595086,1.315089131,4.580791331,3.735019823,-3.735019823,0,0,0.301294699,0.41307389,13.28587623,0.097938868,1,0.261600649,0,0.930195335,0.968957298,0.724496596,1,51.29203811,1.197082509,0.016010365,0.312029739,0.955600794,0.68009739,0.961238037,0.922476074,0.292076237,12.77088959,51.58411434,13.9679721,254.1439755,0,0.560781667,55.89012756,-0.560781667,124.1098724,0.96083874,0,295.7754916,13.9679721,304.9172499,9,17,3% +2018-09-14 02:00:00,87.00316793,271.7774011,8.905718907,48.60286339,6.364725189,24.04338299,17.80344268,6.239940312,6.172805241,0.067135071,2.351214604,0,2.351214604,0.191919948,2.159294656,1.51849174,4.743410482,17.73812381,-17.73812381,0,0,0.714678428,0.047979987,1.54320131,0.714550296,1,0.056316137,0,0.955891623,0.994653586,0.724496596,1,5.968832382,0.139045349,0.091228185,0.312029739,0.77406586,0.498562455,0.961238037,0.922476074,0.03336641,1.483383798,6.002198792,1.622429147,5.081987437,0,0.366304399,68.51212027,-0.366304399,111.4878797,0.913501503,0,10.64460195,1.622429147,11.70644938,9,18,10% +2018-09-14 03:00:00,99.01182301,281.0764464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72808231,4.905709439,-5.400385211,5.400385211,1,0.546326048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.142125407,81.82914687,-0.142125407,98.17085313,0.698198018,0,0,0,0,9,19,0% +2018-09-14 04:00:00,110.3945936,291.1682407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926749134,5.081844477,-2.024748939,2.024748939,1,0.876406151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08614086,94.94163197,0.08614086,85.05836803,0,0,0,0,0,9,20,0% +2018-09-14 05:00:00,120.9532123,302.9939106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111031796,5.288241354,-1.003585084,1.003585084,1,0.701776847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306774965,107.864982,0.306774965,72.13501801,0,0.88701408,0,0,0,9,21,0% +2018-09-14 06:00:00,130.0087829,317.7038224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269081317,5.544977747,-0.452003949,0.452003949,1,0.607450917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504743559,120.3143307,0.504743559,59.6856693,0,0.950939796,0,0,0,9,22,0% +2018-09-14 07:00:00,136.5046865,336.3166643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382456224,5.869833122,-0.060953457,0.060953457,1,0.540577345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666558572,131.8020062,0.666558572,48.19799385,0,0.974987837,0,0,0,9,23,0% +2018-09-15 08:00:00,139.1390335,358.3672127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428434252,6.254687793,0.272577849,-0.272577849,1,0.483540132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781196519,141.3702584,0.781196519,38.62974157,0,0.985995619,0,0,0,9,0,0% +2018-09-15 09:00:00,137.1736142,20.71680427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394131214,0.361576445,0.60461386,-0.60461386,1,0.42675863,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840849806,147.2299661,0.840849806,32.77003386,0,0.990536348,0,0,0,9,1,0% +2018-09-15 10:00:00,131.1744083,39.93692559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289425319,0.697030845,0.989514939,-0.989514939,1,0.360936669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841458933,147.2945015,0.841458933,32.70549849,0,0.990579394,0,0,0,9,2,0% +2018-09-15 11:00:00,122.427769,55.18583357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136767664,0.963174496,1.521739611,-1.521739611,1,0.26992089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782989322,141.5350956,0.782989322,38.46490437,0,0.986142169,0,0,0,9,3,0% +2018-09-15 12:00:00,112.0490452,67.37536559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955624762,1.175921964,2.466409798,-2.466409798,1,0.108372773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669433946,132.0233915,0.669433946,47.97660851,0,0.975310032,0,0,0,9,4,0% +2018-09-15 13:00:00,100.7673423,77.67712238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758721902,1.355721539,5.21133202,-5.21133202,1,0,#DIV/0!,0,0,0.265265886,1,0.189584998,0,0.940283409,0.979045372,0.724496596,1,0,0,0.040314051,0.312029739,0.892044873,0.616541469,0.961238037,0.922476074,0,0,0,0,0,0,-0.508541506,120.566729,0.508541506,59.43327104,0,0.951679609,0,0,0,9,5,0% +2018-09-15 14:00:00,88.68134832,87.06419824,1.315527877,8.297344843,1.12458289,1.100589571,0,1.100589571,1.090672566,0.009917005,2.88565399,2.532778702,0.352875288,0.033910323,0.318964964,1.547781513,1.51955692,-41.53011128,41.53011128,0,0,0.854852953,0.008477581,0.272668142,1,0.849220947,0,0.024074263,0.961238037,1,0.658494792,0.933998196,1.048395956,0.023738411,0.115824807,0.237095868,0.724496596,0.448993192,0.972515594,0.933753631,0.006141978,0.263580413,1.054537935,0.287318824,0,0.381889974,-0.30525171,107.773308,0.30525171,72.22669198,0,0.886200754,1.054537935,0.625750007,1.464078799,9,6,39% +2018-09-15 15:00:00,77.15624436,96.35882314,149.7221874,452.1175954,49.21954979,48.86406785,0,48.86406785,47.73539876,1.128669092,78.43401152,40.64798272,37.78602879,1.484151027,36.30187777,1.346630503,1.681778727,-3.930001118,3.930001118,0.797776538,0.797776538,0.328739184,0.97545826,31.37409076,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.88508099,1.075262367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.706716189,30.15796941,46.59179718,31.23323177,0,40.64798272,-0.089905775,95.15818641,0.089905775,84.84181359,0,0.493862198,46.59179718,51.30773386,80.17168284,9,7,72% +2018-09-15 16:00:00,65.59714777,106.3983587,359.5881242,685.0373278,76.56511402,171.1817734,94.21465285,76.96712051,74.25639334,2.710727171,89.49502456,0,89.49502456,2.308720683,87.18630388,1.144886209,1.857001677,-1.774181233,1.774181233,0.833556549,0.833556549,0.212924479,2.355612246,75.7645872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.37806976,1.672660276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706633054,72.82780306,73.08470281,74.50046334,94.21465285,0,0.137532145,82.09493285,-0.137532145,97.90506715,0.686448627,0,137.7582219,74.50046334,186.5172852,9,8,35% +2018-09-15 17:00:00,54.66473468,118.2385561,549.3167456,789.2023727,92.87378421,376.4715075,282.2572289,94.21427861,90.07329695,4.14098166,135.988692,0,135.988692,2.800487262,133.1882047,0.954079605,2.063652108,-0.939442248,0.939442248,0.690807776,0.690807776,0.16907146,3.077094552,98.96993823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58187913,2.028943488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.229344528,95.13366913,88.81122366,97.16261262,282.2572289,0,0.357648733,69.04413329,-0.357648733,110.9558667,0.910198023,0,345.7211953,97.16261262,409.312182,9,9,18% +2018-09-15 18:00:00,45.06009729,133.3468595,698.1250505,841.775076,103.524842,572.9885479,467.3226003,105.6659476,100.4031861,5.26276152,172.390157,0,172.390157,3.121655953,169.2685011,0.786447059,2.327341746,-0.449530235,0.449530235,0.607027887,0.607027887,0.148289826,3.50132394,112.6146136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.51136148,2.261629112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.536697276,108.2494501,99.04805876,110.5110792,467.3226003,0,0.555163266,56.27803914,-0.555163266,123.7219609,0.959936404,0,547.6480353,110.5110792,619.9753264,9,10,13% +2018-09-15 19:00:00,37.9677856,153.3746232,793.8926455,867.7234608,109.8169694,734.245152,621.7548713,112.4902807,106.5055826,5.984698104,195.7998501,0,195.7998501,3.311386808,192.4884633,0.662662868,2.676892165,-0.090038057,0.090038057,0.545551104,0.545551104,0.138327229,3.641172678,117.1126298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3772171,2.39908847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.63801721,112.5731143,105.0152343,114.9722028,621.7548713,0,0.716535739,44.23079966,-0.716535739,135.7692003,0.98021981,0,714.4716762,114.9722028,789.7186835,9,11,11% +2018-09-15 20:00:00,35.04415094,178.2172144,829.4091749,876.1840872,112.0686629,842.8153105,727.8734946,114.941816,108.6893793,6.252436704,204.4791407,0,204.4791407,3.379283677,201.099857,0.611635817,3.110477175,0.219258309,-0.219258309,0.492658311,0.492658311,0.135118668,3.508927776,112.8591791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4763655,2.44827952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542206229,108.4845358,107.0185718,110.9328153,727.8734946,0,0.830731242,33.82607238,-0.830731242,146.1739276,0.989812063,0,827.4765367,110.9328153,900.0798457,9,12,9% +2018-09-15 21:00:00,37.31311114,203.4485596,802.0549903,869.7180526,110.3379655,887.0596735,774.0025755,113.057098,107.0108687,6.046229306,197.794615,0,197.794615,3.327096763,194.4675183,0.651236644,3.550847224,0.524138075,-0.524138075,0.4405208,0.4405208,0.137569078,3.128850129,100.6345755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8629174,2.410470279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266841268,96.73378181,105.1297586,99.14425208,774.0025755,0,0.889946544,27.13346956,-0.889946544,152.8665304,0.99381685,0,874.3465603,99.14425208,939.2344904,9,13,7% +2018-09-15 22:00:00,43.96061707,224.1882187,713.8180379,846.3779486,104.5807073,860.2009825,753.3927075,106.808275,101.4272131,5.381061888,176.2269418,0,176.2269418,3.153494187,173.0734476,0.767257509,3.91282256,0.86814625,-0.86814625,0.381691937,0.381691937,0.146508916,2.541365656,81.73905539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.49569522,2.284695803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841210767,78.57068914,99.33690598,80.85538494,753.3927075,0,0.890137448,27.10947634,-0.890137448,152.8905237,0.9938289,0,848.0803514,80.85538494,900.9985838,9,14,6% +2018-09-15 23:00:00,53.32233294,239.8478279,571.2792399,798.1540796,94.5317652,759.4921639,663.504336,95.98782791,91.68128369,4.30654422,141.3637473,0,141.3637473,2.850481506,138.5132658,0.930650275,4.186134301,1.321672392,-1.321672392,0.304134399,0.304134399,0.165473832,1.805656245,58.07611174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12753715,2.065164148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308191803,55.82496764,89.43572895,57.89013179,663.504336,0,0.831298559,33.76763664,-0.831298559,146.2323634,0.989853138,0,746.2075777,57.89013179,784.0955112,9,15,5% +2018-09-15 00:00:00,64.13712992,252.0123524,385.8324892,703.1610461,79.10045811,584.1316149,504.5077592,79.62385573,76.71528745,2.90856828,95.93472468,0,95.93472468,2.385170662,93.54955402,1.11940409,4.398445304,2.061547582,-2.061547582,0.17760829,0.17760829,0.205012435,1.006971983,32.38768042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7416523,1.728048025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729547774,31.13227034,74.47120007,32.86031837,504.5077592,0,0.717485364,44.1527442,-0.717485364,135.8472558,0.980312167,0,569.0462949,32.86031837,590.5527161,9,16,4% +2018-09-15 01:00:00,75.65661483,262.2056309,176.4680059,495.0793754,53.82065833,329.1194841,275.5914268,53.52805728,52.19776691,1.330290368,44.40960252,0,44.40960252,1.622891426,42.78671109,1.32045703,4.576351576,3.822378698,-3.822378698,0,0,0.304988194,0.405722856,13.04944173,0.109933506,1,0.255882258,0,0.931037115,0.969799078,0.724496596,1,50.3989191,1.175779314,0.017874484,0.312029739,0.950561626,0.675058222,0.961238037,0.922476074,0.2861747,12.54361975,50.6850938,13.71939906,245.294695,0,0.556661094,56.17479679,-0.556661094,123.8252032,0.960178742,0,286.2118454,13.71939906,295.1909177,9,17,3% +2018-09-15 02:00:00,87.29352242,271.5274175,7.045013642,39.28610321,5.189948209,19.31513595,14.22857554,5.08656041,5.033452121,0.053108289,1.864641209,0,1.864641209,0.156496087,1.708145122,1.523559382,4.739047445,19.67845485,-19.67845485,0,0,0.736683912,0.039124022,1.25836303,0.739247906,1,0.050773323,0,0.956451451,0.995213414,0.724496596,1,4.865127011,0.113380883,0.093555047,0.312029739,0.769168373,0.493664969,0.961238037,0.922476074,0.027282365,1.209586409,4.892409376,1.322967291,3.710130867,0,0.362178337,68.76596442,-0.362178337,111.2340356,0.911946464,0,8.275850103,1.322967291,9.141705736,9,18,10% +2018-09-15 03:00:00,99.32364539,280.8305621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733524637,4.90141795,-5.230151685,5.230151685,1,0.575437696,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137567589,82.09288257,-0.137567589,97.90711743,0.686542295,0,0,0,0,9,19,0% +2018-09-15 04:00:00,110.7201612,290.9289708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932431361,5.07766843,-1.997305996,1.997305996,1,0.871713131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090776811,95.20829802,0.090776811,84.79170198,0,0.49919854,0,0,0,9,20,0% +2018-09-15 05:00:00,121.3002784,302.7730075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117089241,5.284385867,-0.994997033,0.994997033,1,0.700308204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31139372,108.1432426,0.31139372,71.85675739,0,0.889431572,0,0,0,9,21,0% +2018-09-15 06:00:00,130.3821031,317.5337657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275596985,5.542009697,-0.449295959,0.449295959,1,0.606987824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509251026,120.6139538,0.509251026,59.38604617,0,0.951816594,0,0,0,9,22,0% +2018-09-15 07:00:00,136.8981632,336.2612165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389323687,5.868865374,-0.061024285,0.061024285,1,0.540589457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670868369,132.1341213,0.670868369,47.86587866,0,0.975469731,0,0,0,9,23,0% +2018-09-16 08:00:00,139.526061,358.4910144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435189156,6.256848539,0.270627361,-0.270627361,1,0.483873685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785235905,141.7425019,0.785235905,38.25749814,0,0.986324868,0,0,0,9,0,0% +2018-09-16 09:00:00,137.5181913,21.00296883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40014522,0.366570959,0.600820065,-0.600820065,1,0.427407407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844564682,147.6253251,0.844564682,32.37467491,0,0.990797903,0,0,0,9,1,0% +2018-09-16 10:00:00,131.4605671,40.30027368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294419732,0.703372465,0.983174642,-0.983174642,1,0.362020924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844817551,147.6523932,0.844817551,32.34760675,0,0.990815624,0,0,0,9,2,0% +2018-09-16 11:00:00,122.6624565,55.56342263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140863734,0.969764669,1.510652164,-1.510652164,1,0.271816955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785984465,141.8118211,0.785984465,38.18817888,0,0.986385511,0,0,0,9,3,0% +2018-09-16 12:00:00,112.2470393,67.74501439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959080411,1.182373553,2.44279292,-2.44279292,1,0.112411497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672083417,132.2280683,0.672083417,47.77193168,0,0.975604473,0,0,0,9,4,0% +2018-09-16 13:00:00,100.9430561,78.03794763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761788685,1.362019128,5.121180759,-5.121180759,1,0,#DIV/0!,0,0,0.256848033,1,0.192840935,0,0.939851699,0.978613662,0.724496596,1,0,0,0.039173685,0.312029739,0.894922979,0.619419575,0.961238037,0.922476074,0,0,0,0,0,0,-0.510886899,120.7229237,0.510886899,59.27707626,0,0.95213098,0,0,0,9,5,0% +2018-09-16 14:00:00,88.83040613,87.42323443,1.015005443,6.65610746,0.879142002,0.860284166,0,0.860284166,0.852632627,0.00765154,2.316560432,2.043951236,0.272609196,0.026509375,0.246099821,1.550383063,1.525823284,-46.73365606,46.73365606,0,0,0.86614511,0.006627344,0.213158157,1,0.86705804,0,0.02139459,0.961238037,1,0.66561683,0.941120234,0.819582912,0.018616018,0.115824807,0.245171875,0.724496596,0.448993192,0.971357034,0.93259507,0.004801488,0.205954251,0.8243844,0.224570269,0,0.271726883,-0.307079062,107.8832891,0.307079062,72.11671092,0,0.887175483,0.8243844,0.465639698,1.12913627,9,6,37% +2018-09-16 15:00:00,77.32396592,96.72565922,146.9693217,448.4579459,48.56054671,48.20418388,0,48.20418388,47.09626705,1.107916827,78.28151349,41.18282023,37.09869326,1.464279653,35.63441361,1.349557796,1.688181224,-3.971052359,3.971052359,0.790756362,0.790756362,0.330412811,0.95269008,30.64178783,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.27072329,1.060865624,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.69022072,29.45405198,45.96094401,30.5149176,0,41.18282023,-0.091832067,95.26901336,0.091832067,84.73098664,0,0.505527883,45.96094401,51.33398155,79.55800825,9,7,73% +2018-09-16 16:00:00,65.7809547,106.7825341,356.5443806,683.8564051,76.00856421,169.1818367,92.77742896,76.4044077,73.71662556,2.687782146,88.74025165,0,88.74025165,2.291938653,86.448313,1.148094245,1.863706804,-1.780531172,1.780531172,0.834642453,0.834642453,0.213181215,2.338084421,75.2008321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85922443,1.660501752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693934204,72.28590022,72.55315864,73.94640197,92.77742896,0,0.135667997,82.2027513,-0.135667997,97.7972487,0.681453246,0,135.7766388,73.94640197,184.17308,9,8,36% +2018-09-16 17:00:00,54.87977555,118.6449233,546.0672573,788.717958,92.32254094,374.248927,280.5937657,93.65516134,89.5386757,4.116485645,135.1841939,0,135.1841939,2.783865243,132.4003287,0.957832776,2.070744553,-0.939409453,0.939409453,0.690802167,0.690802167,0.169068077,3.058868481,98.38372513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06798085,2.016900892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216139801,94.5701788,88.28412065,96.58707969,280.5937657,0,0.355759322,69.16001138,-0.355759322,110.8399886,0.909455545,0,343.4716767,96.58707969,406.6859887,9,9,18% +2018-09-16 18:00:00,45.32490941,133.7610383,694.6140549,841.5119087,102.9591366,570.5784792,465.4876463,105.0908329,99.8545388,5.236294152,171.5218174,0,171.5218174,3.104597849,168.4172196,0.791068902,2.33457053,-0.447158794,0.447158794,0.606622347,0.606622347,0.148224954,3.481772901,111.985785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98398084,2.249270573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522532615,107.6449962,98.50651346,109.8942667,465.4876463,0,0.553156339,56.41617838,-0.553156339,123.5838216,0.959609641,0,545.1929466,109.8942667,617.1165463,9,10,13% +2018-09-16 19:00:00,38.29716418,153.7294891,790.0600836,867.5114114,109.2310163,731.5791863,619.6860816,111.8931047,105.9372981,5.955806633,194.8529324,0,194.8529324,3.29371816,191.5592143,0.668411609,2.683085741,-0.086250132,0.086250132,0.544903331,0.544903331,0.138256594,3.620078914,116.4341818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8309605,2.386287594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62273485,111.9209643,104.4536953,114.3072519,619.6860816,0,0.714326144,44.41199857,-0.714326144,135.5880014,0.980003962,0,711.7485104,114.3072519,786.5603206,9,11,11% +2018-09-16 20:00:00,35.42742681,178.3872925,825.212501,875.9307761,111.4599513,839.8073285,725.4875055,114.3198229,108.0990225,6.220800404,203.4432536,0,203.4432536,3.360928776,200.0823248,0.618325243,3.113445597,0.224397864,-0.224397864,0.491779395,0.491779395,0.135068181,3.486284772,112.1309023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9088922,2.434981457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525801449,107.7844884,106.4346937,110.2194698,725.4875055,0,0.828247534,34.08086398,-0.828247534,145.919136,0.989631574,0,824.4000356,110.2194698,896.5364743,9,12,9% +2018-09-16 21:00:00,37.70708145,203.3886001,797.4767581,869.334507,109.704549,883.6263034,771.2180347,112.4082687,106.396552,6.011716658,196.6654698,0,196.6654698,3.307996918,193.3574729,0.658112723,3.549800733,0.531065467,-0.531065467,0.439336146,0.439336146,0.137564572,3.104833003,99.86210217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2724128,2.396632506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249440941,95.99125105,104.5218538,98.38788355,771.2180347,0,0.887136112,27.48445078,-0.887136112,152.5155492,0.993638863,0,870.8340649,98.38788355,935.2269669,9,13,7% +2018-09-16 22:00:00,44.33157802,223.9906332,708.870555,845.7222072,103.918948,856.2596338,750.1304598,106.129174,100.7854083,5.343765672,175.0074128,0,175.0074128,3.133539702,171.8738731,0.773731999,3.909374042,0.877993963,-0.877993963,0.380007879,0.380007879,0.146597919,2.51636554,80.93496573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87876802,2.270238847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823098268,77.79776757,98.70186628,80.06800642,750.1304598,0,0.886970276,27.50503205,-0.886970276,152.4949679,0.993628325,0,844.0527387,80.06800642,896.4556476,9,14,6% +2018-09-16 23:00:00,53.66480726,239.6013846,566.0114271,796.9189313,93.83051176,754.9332675,659.6652587,95.26800885,91.00117563,4.266833222,140.0653597,0,140.0653597,2.829336127,137.2360236,0.936627579,4.181833053,1.337253927,-1.337253927,0.3014698,0.3014698,0.165774942,1.78041554,57.2642839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.47379141,2.049844393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.289904998,55.04460784,88.76369641,57.09445223,659.6652587,0,0.827769592,34.12970173,-0.827769592,145.8702983,0.989596718,0,741.5662714,57.09445223,778.9334485,9,15,5% +2018-09-16 00:00:00,64.45825467,251.756129,380.3567296,700.5098813,78.31886458,578.7196084,499.8950569,78.82455154,75.95726185,2.867289691,94.58349544,0,94.58349544,2.361602733,92.22189271,1.125008774,4.393973363,2.091635607,-2.091635607,0.172462935,0.172462935,0.205908976,0.983079643,31.61922064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.01300926,1.710973141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.712237855,30.39359758,73.72524712,32.10457072,499.8950569,0,0.713615996,44.47011043,-0.713615996,135.5298896,0.979934306,0,563.5895628,32.10457072,584.6013622,9,16,4% +2018-09-16 01:00:00,75.96508499,261.9514098,171.1520858,488.1213271,52.77625427,322.1648094,269.6897372,52.4750722,51.18485548,1.290216718,43.08920352,0,43.08920352,1.59139879,41.49780473,1.32584085,4.571914581,3.913679933,-3.913679933,0,0,0.308358814,0.397849697,12.79621387,0.122133213,1,0.250161536,0,0.931872301,0.970634264,0.724496596,1,49.43945913,1.152963006,0.019749965,0.312029739,0.945519238,0.670015834,0.961238037,0.922476074,0.27995249,12.3002075,49.71941162,13.45317051,236.751663,0,0.55250554,56.46092616,-0.55250554,123.5390738,0.95950317,0,276.8833827,13.45317051,285.6882138,9,17,3% +2018-09-16 02:00:00,87.58265714,271.2770168,5.432559181,31.07760898,4.12176542,15.16601192,11.12758001,4.038431911,3.997478985,0.040952926,1.441473305,0,1.441473305,0.124286435,1.31718687,1.528605735,4.734677128,22.07325971,-22.07325971,0,0,0.758715236,0.031071609,0.999369746,0.76440632,1,0.045272729,0,0.956999804,0.995761767,0.724496596,1,3.862091877,0.090045099,0.095883455,0.312029739,0.764311109,0.488807704,0.961238037,0.922476074,0.021731615,0.960632213,3.883823492,1.050677312,2.621587523,0,0.35805779,69.01903389,-0.35805779,110.9809661,0.910357737,0,6.270405978,1.050677312,6.958053265,9,18,11% +2018-09-16 03:00:00,99.63599283,280.5837152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738976128,4.897109658,-5.070494503,5.070494503,1,0.602740682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132992973,82.3574208,-0.132992973,97.6425792,0.674040286,0,0,0,0,9,19,0% +2018-09-16 04:00:00,111.0461139,290.6881622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938120309,5.073465528,-1.970616374,1.970616374,1,0.867148937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095418739,95.47542128,0.095418739,84.52457872,0,0.525993914,0,0,0,9,20,0% +2018-09-16 05:00:00,121.6477202,302.550004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123153244,5.280493722,-0.986559678,0.986559678,1,0.698865331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316007774,108.4216629,0.316007774,71.5783371,0,0.891776044,0,0,0,9,21,0% +2018-09-16 06:00:00,130.7559777,317.361457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282122328,5.539002343,-0.446623098,0.446623098,1,0.606530738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513743991,120.9135385,0.513743991,59.08646147,0,0.952675261,0,0,0,9,22,0% +2018-09-16 07:00:00,137.2924552,336.2048408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.396205381,5.867881433,-0.061094143,0.061094143,1,0.540601403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675155412,132.46622,0.675155412,47.53378003,0,0.975942977,0,0,0,9,23,0% +2018-09-17 08:00:00,139.9137759,358.6170705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441956058,6.259048635,0.268695291,-0.268695291,1,0.484204089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789246401,142.1151422,0.789246401,37.8848578,0,0.986648428,0,0,0,9,0,0% +2018-09-17 09:00:00,137.8627721,21.29353461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406159289,0.371642288,0.597059977,-0.597059977,1,0.42805042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848247069,148.0215197,0.848247069,31.97848026,0,0.99105491,0,0,0,9,1,0% +2018-09-17 10:00:00,131.7461703,40.66761088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299404449,0.709783709,0.976892388,-0.976892388,1,0.363095252,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848142866,148.0102481,0.848142866,31.98975186,0,0.991047668,0,0,0,9,2,0% +2018-09-17 11:00:00,122.8964967,55.94378923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144948506,0.976403318,1.499682297,-1.499682297,1,0.273692913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78894833,142.0873396,0.78894833,37.9126604,0,0.986624493,0,0,0,9,3,0% +2018-09-17 12:00:00,112.444609,68.11647648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962528653,1.188856789,2.419522473,-2.419522473,1,0.116390978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674706333,132.4313494,0.674706333,47.56865058,0,0.975893685,0,0,0,9,4,0% +2018-09-17 13:00:00,101.118715,78.3999441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764854512,1.368337158,5.033660323,-5.033660323,1,0,#DIV/0!,0,0,0.248489232,1,0.196109259,0,0.939415991,0.978177954,0.724496596,1,0,0,0.038033224,0.312029739,0.897811594,0.62230819,0.961238037,0.922476074,0,0,0,0,0,0,-0.51321283,120.8780727,0.51321283,59.12192728,0,0.952574532,0,0,0,9,5,0% +2018-09-17 14:00:00,88.97859102,87.78297521,0.763280099,5.255232788,0.66960029,0.655163299,0,0.655163299,0.649409371,0.005753928,1.828471086,1.62321407,0.205257016,0.020190919,0.185066097,1.552969377,1.532101945,-53.40898603,53.40898603,0,0,0.8772668,0.00504773,0.162352343,1,0.884574918,0,0.018721254,0.961238037,1,0.672778196,0.9482816,0.624236989,0.014226082,0.115824807,0.25329534,0.724496596,0.448993192,0.970177611,0.931415648,0.003657063,0.156784227,0.627894052,0.171010309,0,0.187359618,-0.308875769,107.9914922,0.308875769,72.00850781,0,0.888122621,0.627894052,0.337408623,0.848721248,9,6,35% +2018-09-17 15:00:00,77.49251887,97.09275402,144.2060347,444.7096188,47.89656785,47.53939561,0,47.53939561,46.45230961,1.087086003,78.10361977,41.69493885,36.40868092,1.44425824,34.96442268,1.3524996,1.694588238,-4.013270385,4.013270385,0.783536654,0.783536654,0.33213983,0.929928972,29.90971235,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.65172689,1.046360179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.673730375,28.75035318,45.32545727,29.79671336,0,41.69493885,-0.093757673,95.37982054,0.093757673,84.62017946,0,0.516710312,45.32545727,51.34091822,78.92706142,9,7,74% +2018-09-17 16:00:00,65.96610655,107.166368,353.4723887,682.6396684,75.44896487,167.1712224,91.33269803,75.83852437,73.1739002,2.664624173,87.97853766,0,87.97853766,2.275064668,85.70347299,1.151325754,1.870405969,-1.786986606,1.786986606,0.835746397,0.835746397,0.213450802,2.320371945,74.63113796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33753618,1.648276607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101575,71.73828854,72.01863775,73.38656515,91.33269803,0,0.133793423,82.31114481,-0.133793423,97.68885519,0.676289553,0,133.7859873,73.38656515,181.8160264,9,8,36% +2018-09-17 17:00:00,55.09661658,119.049945,542.7788083,788.2120993,91.76833489,372.0008151,278.9079382,93.09287693,89.00118101,4.091695928,134.37016,0,134.37016,2.767153886,131.6030062,0.961617366,2.077813515,-0.939376932,0.939376932,0.690796606,0.690796606,0.16907133,3.040433003,97.79077681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55132051,2.004793571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.202783361,94.00021432,87.75410387,96.00500789,278.9079382,0,0.353848841,69.27709098,-0.353848841,110.722909,0.908696725,0,341.196834,96.00500789,404.0301915,9,9,18% +2018-09-17 18:00:00,45.59175504,134.1722372,691.0561073,841.2321993,102.3902923,568.1310853,463.6187652,104.51232,99.30284721,5.20947284,170.6419991,0,170.6419991,3.087445093,167.554554,0.795726237,2.341747304,-0.444760749,0.444760749,0.606212257,0.606212257,0.148164948,3.461995797,111.3496854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4536739,2.23684346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.50820417,107.033553,97.96187807,109.2703964,463.6187652,0,0.551118663,56.55620816,-0.551118663,123.4437918,0.959275437,0,542.6999716,109.2703964,614.2152606,9,10,13% +2018-09-17 19:00:00,38.62826872,154.079876,786.1752965,867.2844846,108.6417586,728.866296,617.5739658,111.2923302,105.3658088,5.926521467,193.8932525,0,193.8932525,3.275949868,190.6173027,0.674190473,2.689201147,-0.082420448,0.082420448,0.544248416,0.544248416,0.138190247,3.598754758,115.7483237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2816232,2.373414528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.607285572,111.2616914,103.8889087,113.6351059,617.5739658,0,0.712077728,44.59578254,-0.712077728,135.4042175,0.979782946,0,708.9773486,113.6351059,783.3492527,9,11,10% +2018-09-17 20:00:00,35.81170275,178.5544818,820.9613077,875.662414,110.8478437,836.7453012,723.0511758,113.6941253,107.5053722,6.188753113,202.3940453,0,202.3940453,3.342471473,199.0515738,0.625032124,3.116363602,0.22959641,-0.22959641,0.490890391,0.490890391,0.135022007,3.463420522,111.3955094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.338253,2.421609204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509236378,107.0776008,105.8474893,109.49921,723.0511758,0,0.825719095,34.33853564,-0.825719095,145.6614644,0.989446719,0,821.2681033,109.49921,892.9331462,9,12,9% +2018-09-17 21:00:00,38.10185348,203.3295326,792.844854,868.9338486,109.0677216,880.134473,768.3787462,111.7557268,105.7789274,5.976799408,195.5232083,0,195.5232083,3.288794225,192.2344141,0.665002794,3.54876981,0.538080188,-0.538080188,0.438136558,0.438136558,0.137565024,3.080617632,99.08325259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6787285,2.38272022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.231896987,95.2425912,103.9106255,97.62531142,768.3787462,0,0.884277609,27.83724567,-0.884277609,152.1627543,0.993456671,0,867.2616166,97.62531142,931.1554304,9,13,7% +2018-09-17 22:00:00,44.70358829,223.7952256,703.8734243,845.0440554,103.2537813,852.2578854,746.8114914,105.446394,100.1402988,5.30609519,173.7757434,0,173.7757434,3.113482471,170.6622609,0.780224803,3.905963537,0.887985972,-0.887985972,0.378299145,0.378299145,0.146693678,2.491204952,80.1257147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.25866422,2.255707451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804869507,77.0198847,98.06353373,79.27559215,746.8114914,0,0.883754506,27.90136211,-0.883754506,152.0986379,0.993423202,0,839.9633969,79.27559215,891.8476865,9,14,6% +2018-09-17 23:00:00,54.00842797,239.356587,560.7012304,795.6481927,93.12564631,750.3131239,655.7687567,94.54436719,90.31756447,4.226802716,138.7565867,0,138.7565867,2.808081833,135.9485049,0.942624892,4.17756053,1.353120734,-1.353120734,0.298756416,0.298756416,0.166087822,1.755071773,56.44914123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.81667837,2.034445729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.271543525,54.2610617,88.08822189,56.29550742,655.7687567,0,0.824194365,34.49310293,-0.824194365,145.5068971,0.989334698,0,736.8630068,56.29550742,773.7072905,9,15,5% +2018-09-17 00:00:00,64.78040999,251.5007476,374.8501794,697.7841936,77.53226405,573.2414257,495.2212665,78.02015922,75.19438023,2.82577899,93.22464969,0,93.22464969,2.337883825,90.88676587,1.130631445,4.389516117,2.122495236,-2.122495236,0.167185627,0.167185627,0.206835339,0.959185445,30.8507011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.27969843,1.693788873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69492659,29.65486736,72.97462502,31.34865624,495.2212665,0,0.709705481,44.78904253,-0.709705481,135.2109575,0.97954824,0,558.0677451,31.34865624,578.5848137,9,16,4% +2018-09-17 01:00:00,76.27432855,261.6973507,165.8339138,480.9439899,51.71868558,315.1190492,263.7097468,51.40930248,50.15917639,1.250126091,41.76786156,0,41.76786156,1.559509192,40.20835237,1.331238168,4.567480413,4.009164352,-4.009164352,0,0,0.311870379,0.389877298,12.5397941,0.134539169,1,0.244440744,0,0.932700531,0.971462494,0.724496596,1,48.46617838,1.129859101,0.021636275,0.312029739,0.940475571,0.664972167,0.961238037,0.922476074,0.273708743,12.05372706,48.73988713,13.18358616,228.2304565,0,0.548316961,56.74837412,-0.548316961,123.2516259,0.958811867,0,267.5699572,13.18358616,276.1983507,9,17,3% +2018-09-17 02:00:00,87.87012288,271.0262029,4.054915725,23.85549649,3.168330786,11.54701857,8.443656975,3.10336159,3.072793923,0.030567668,1.078698127,0,1.078698127,0.095536863,0.983161264,1.533622958,4.7302996,25.09824872,-25.09824872,0,0,0.78135552,0.023884216,0.768198481,0.789999773,1,0.039822354,0,0.957536048,0.996298011,0.724496596,1,2.967323557,0.069216132,0.098209892,0.312029739,0.759501417,0.483998013,0.961238037,0.922476074,0.016758256,0.7384216,2.984081812,0.807637732,1.773169879,0,0.353950167,69.27088372,-0.353950167,110.7291163,0.908737177,0,4.595427202,0.807637732,5.124009944,9,18,12% +2018-09-17 03:00:00,99.94872722,280.335902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744434373,4.892784502,-4.92051009,4.92051009,1,0.628389527,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.128403923,82.62262916,-0.128403923,97.37737084,0.660603797,0,0,0,0,9,19,0% +2018-09-17 04:00:00,111.3723107,290.4457947,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943813516,5.069235415,-1.944660127,1.944660127,1,0.862710157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100064193,95.74286703,0.100064193,84.25713297,0,0.550320761,0,0,0,9,20,0% +2018-09-17 05:00:00,121.9953955,302.324849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129221323,5.276564025,-0.978273522,0.978273522,1,0.697448315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320614693,108.700103,0.320614693,71.29989704,0,0.894049567,0,0,0,9,21,0% +2018-09-17 06:00:00,131.1302699,317.1868014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288654959,5.535954029,-0.443987152,0.443987152,1,0.606079964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518220139,121.2129375,0.518220139,58.78706249,0,0.953515907,0,0,0,9,22,0% +2018-09-17 07:00:00,137.6874431,336.1474221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40309922,5.866879287,-0.061164675,0.061164675,1,0.540613465,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679417599,132.7981489,0.679417599,47.20185108,0,0.976407558,0,0,0,9,23,0% +2018-09-18 08:00:00,140.3020779,358.7453101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448733207,6.261286838,0.266780148,-0.266780148,1,0.484531597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793226201,142.4880355,0.793226201,37.51196453,0,0.986966278,0,0,0,9,0,0% +2018-09-18 09:00:00,138.2072708,21.58844022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412171925,0.376789362,0.593332085,-0.593332085,1,0.428687927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851895516,148.4184386,0.851895516,31.58156142,0,0.991307356,0,0,0,9,1,0% +2018-09-18 10:00:00,132.0311569,41.0388329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304378403,0.716262755,0.970666288,-0.970666288,1,0.364159978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851433818,148.3679634,0.851433818,31.63203658,0,0.99127553,0,0,0,9,2,0% +2018-09-18 11:00:00,123.1298569,56.32680691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14902141,0.983088238,1.488826707,-1.488826707,1,0.275549328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791880255,142.3615731,0.791880255,37.6384269,0,0.98685914,0,0,0,9,3,0% +2018-09-18 12:00:00,112.6417437,68.48962388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965969302,1.19536944,2.396588077,-2.396588077,1,0.120312991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677302414,132.6332021,0.677302414,47.36679792,0,0.976177732,0,0,0,9,4,0% +2018-09-18 13:00:00,101.2943225,78.76298658,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76791944,1.374673445,4.948645491,-4.948645491,1,0,#DIV/0!,0,0,0.240187706,1,0.199390432,0,0.938976202,0.977738165,0.724496596,1,0,0,0.036892512,0.312029739,0.900711115,0.625207711,0.961238037,0.922476074,0,0,0,0,0,0,-0.515519357,121.0321758,0.515519357,58.96782418,0,0.953010431,0,0,0,9,5,0% +2018-09-18 14:00:00,89.12583219,88.14329498,0.556419865,4.079154319,0.494186187,0.483479179,0,0.483479179,0.479284651,0.004194528,1.416964061,1.267152086,0.149811975,0.014901537,0.134910438,1.55553922,1.538390711,-62.27963106,62.27963106,0,0,0.888153387,0.003725384,0.119821163,1,0.901773942,0,0.016055234,0.961238037,1,0.679975778,0.955479182,0.460706637,0.010535944,0.115824807,0.26146263,0.724496596,0.448993192,0.968977696,0.930215733,0.002699028,0.115647823,0.463405665,0.126183767,0,0.124467355,-0.31064088,108.0978571,0.31064088,71.90214289,0,0.889042434,0.463405665,0.236840527,0.618413053,9,6,33% +2018-09-18 15:00:00,77.66191287,97.45997573,141.4324897,440.8699016,47.22748585,46.86958075,0,46.86958075,45.8034029,1.066177849,77.89981689,42.18378936,35.71602754,1.424082949,34.29194459,1.355456083,1.700997465,-4.056719433,4.056719433,0.77610643,0.77610643,0.333922467,0.907178238,29.17797053,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.02797309,1.031743249,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.657247545,28.04697511,44.68522063,29.07871836,0,42.18378936,-0.095683078,95.49063642,0.095683078,84.50936358,0,0.527441562,44.68522063,51.3282021,78.27850235,9,7,75% +2018-09-18 16:00:00,66.15260715,107.5497158,350.3720615,681.3861807,74.88628129,165.1496133,89.88017706,75.26943621,72.62818361,2.641252597,87.20986045,0,87.20986045,2.258097682,84.95176277,1.154580804,1.877096651,-1.793555017,1.793555017,0.836869662,0.836869662,0.213733598,2.302475227,74.05551801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81297264,1.635984084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.668135464,71.18498075,71.4811081,72.82096483,89.88017706,0,0.131907837,82.42014716,-0.131907837,97.57985284,0.670947464,0,131.785985,72.82096483,179.44585,9,8,36% +2018-09-18 17:00:00,55.31524468,119.4534621,539.4514506,787.6844122,91.21116385,369.7267456,277.199322,92.52742363,88.46081073,4.0666129,133.5466029,0,133.5466029,2.750353123,130.7962498,0.965433146,2.084856216,-0.93934767,0.93934767,0.690791602,0.690791602,0.169081321,3.02179011,97.19115729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03189604,1.992621475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189276648,93.42383723,87.22117269,95.41645871,277.199322,0,0.351916729,69.39540427,-0.351916729,110.6045957,0.907920935,0,338.8962402,95.41645871,401.3444041,9,9,18% +2018-09-18 18:00:00,45.86059128,134.5803004,687.451524,840.9357727,101.8183288,565.6460515,461.715621,103.9304305,98.74813052,5.182299969,169.7507793,0,169.7507793,3.070198283,166.680581,0.800418315,2.34886935,-0.442337999,0.442337999,0.605797942,0.605797942,0.148109831,3.441996278,110.7064321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.92045913,2.224348205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.493714587,106.4152335,97.41417371,108.6395817,461.715621,0,0.549049804,56.69815007,-0.549049804,123.3018499,0.95893358,0,540.1687871,108.6395817,611.2712205,9,10,13% +2018-09-18 19:00:00,38.96102187,154.4256807,782.2389484,867.0426115,108.0492382,726.1064192,615.4184167,110.6880026,104.791155,5.896847612,192.9209727,0,192.9209727,3.25808319,189.6628895,0.679998112,2.695236578,-0.078550488,0.078550488,0.543586614,0.543586614,0.138128175,3.577205623,115.0552294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7292441,2.36047018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.591673297,110.5954628,103.3209174,112.955933,615.4184167,0,0.709790278,44.78214563,-0.709790278,135.2178544,0.979556657,0,706.1581243,112.955933,780.0855233,9,11,10% +2018-09-18 20:00:00,36.19688055,178.7187033,816.6566616,875.3789978,110.2324053,833.6295262,720.5647317,113.0647945,106.9084916,6.156302873,201.3317763,0,201.3317763,3.323913735,198.0078625,0.631754745,3.119229807,0.234852695,-0.234852695,0.489991513,0.489991513,0.134980109,3.440342215,110.6532317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7645086,2.408164186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492516223,106.3640952,105.2570248,108.7722594,720.5647317,0,0.823146013,34.59902688,-0.823146013,145.4009731,0.989257435,0,818.0810432,108.7722594,889.2703116,9,12,9% +2018-09-18 21:00:00,38.49730819,203.2712334,788.1607729,868.5161187,108.427574,876.5849148,765.4853434,111.0995714,105.1580825,5.941488827,194.3681958,0,194.3681958,3.26949141,191.0987044,0.671904781,3.547752298,0.545181257,-0.545181257,0.436922204,0.436922204,0.137570376,3.056212896,98.2983124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0819488,2.368735397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.21421584,94.48807684,103.2961647,96.85681224,765.4853434,0,0.881371488,28.19174974,-0.881371488,151.8082503,0.993270232,0,863.6299694,96.85681224,927.0208158,9,13,7% +2018-09-18 22:00:00,45.07651132,223.6019062,698.8285657,844.3435469,102.5853235,848.1969441,743.4368817,104.7600624,99.49199748,5.268064914,172.5324025,0,172.5324025,3.093326003,169.4390765,0.786733538,3.902589478,0.898122014,-0.898122014,0.37656578,0.37656578,0.146796122,2.465894293,79.31163691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.63549234,2.241104159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786532021,76.23736217,97.42202436,78.47846633,743.4368817,0,0.880490985,28.29835247,-0.880490985,151.7016475,0.993213502,0,835.8135728,78.47846633,887.1761594,9,14,6% +2018-09-18 23:00:00,54.35305452,239.1133975,555.3509692,794.3418066,92.41730886,745.6333934,651.8163372,93.8170562,89.63058602,4.186470187,137.437995,0,137.437995,2.786722846,134.6512721,0.94863976,4.173316072,1.36927545,-1.36927545,0.295993797,0.295993797,0.166412438,1.729636748,55.63106341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.15632854,2.018971215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253115936,53.47469418,87.40944448,55.49366539,651.8163372,0,0.82057413,34.85769223,-0.82057413,145.1423078,0.989067053,0,732.0995082,55.49366539,768.4190023,9,15,5% +2018-09-18 00:00:00,65.1034565,251.2461985,369.3155645,694.9831603,76.74079402,567.6989911,490.4881584,77.21083267,74.42677594,2.784056725,91.85885248,0,91.85885248,2.314018083,89.5448344,1.13626967,4.385073397,2.154146304,-2.154146304,0.161772976,0.161772976,0.20779193,0.935303264,30.08256806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54184799,1.676498224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.677624031,28.91650866,72.21947203,30.59300689,490.4881584,0,0.705755458,45.10939131,-0.705755458,134.8906087,0.979153931,0,552.4828803,30.59300689,572.5053915,9,16,4% +2018-09-18 01:00:00,76.58420441,261.4434543,160.517445,473.542826,50.64789735,307.984137,257.6534123,50.33072468,49.12067637,1.210048303,40.44653391,0,40.44653391,1.527220976,38.91931294,1.336646522,4.563049085,4.109092004,-4.109092004,0,0,0.315528928,0.381805244,12.28016909,0.147152397,1,0.238722166,0,0.933521451,0.972283414,0.724496596,1,47.47903873,1.106466398,0.023532858,0.312029739,0.935432596,0.659929192,0.961238037,0.922476074,0.267443187,11.80416563,47.74648191,12.91063203,219.7390952,0,0.544097383,57.0369965,-0.544097383,122.9630035,0.958104686,0,258.2795387,12.91063203,266.7292891,9,17,3% +2018-09-18 02:00:00,88.15541789,270.7749771,2.910600597,17.6866478,2.341294462,8.480554696,6.187917564,2.292637132,2.270695796,0.021941337,0.776307479,0,0.776307479,0.070598666,0.705708813,1.538602296,4.725914882,29.03201605,-29.03201605,0,0,0.804402522,0.017649667,0.567673949,0.815994273,1,0.034431119,0,0.958059503,0.996821466,0.724496596,1,2.191657248,0.051148494,0.100530321,0.312029739,0.754747446,0.479244042,0.961238037,0.922476074,0.012426305,0.545669792,2.204083553,0.596818286,1.13861227,0,0.349863786,69.5210161,-0.349863786,110.4789839,0.907087238,0,3.236904212,0.596818286,3.627509844,9,18,12% +2018-09-18 03:00:00,100.2617084,280.0871169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749896926,4.888442382,-4.779395634,4.779395634,1,0.65252152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.123802851,82.8883728,-0.123802851,97.1116272,0.646132079,0,0,0,0,9,19,0% +2018-09-18 04:00:00,111.6986086,290.2018456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94950849,5.064977702,-1.919418096,1.919418096,1,0.858393516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104710686,96.01049823,0.104710686,83.98950177,0,0.572493819,0,0,0,9,20,0% +2018-09-18 05:00:00,122.3431602,302.0974885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135290962,5.272595836,-0.970139054,0.970139054,1,0.696057239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325212021,108.9784207,0.325212021,71.02157932,0,0.896254145,0,0,0,9,21,0% +2018-09-18 06:00:00,131.5048414,317.0096991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295192464,5.53286301,-0.441389909,0.441389909,1,0.60563581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.522677151,121.5120014,0.522677151,58.4879986,0,0.954338654,0,0,0,9,22,0% +2018-09-18 07:00:00,138.0830068,336.0888374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410003109,5.865856792,-0.061237556,0.061237556,1,0.540625928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683652844,133.1297528,0.683652844,46.87024717,0,0.976863465,0,0,0,9,23,0% +2018-09-19 08:00:00,140.6908677,358.8756549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455518869,6.263561782,0.264880403,-0.264880403,1,0.484856473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797173529,142.8610356,0.797173529,37.13896439,0,0.987278399,0,0,0,9,0,0% +2018-09-19 09:00:00,138.5516038,21.8876178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418181671,0.382010996,0.589634825,-0.589634825,1,0.429320196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855508617,148.8159701,0.855508617,31.1840299,0,0.991555235,0,0,0,9,1,0% +2018-09-19 10:00:00,132.3154691,41.41382985,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309340587,0.722807687,0.964494395,-0.964494395,1,0.365215434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854689402,148.7254382,0.854689402,31.27456182,0,0.991499216,0,0,0,9,2,0% +2018-09-19 11:00:00,123.3625082,56.71234547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153081942,0.989817155,1.478082031,-1.478082031,1,0.277386776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794779646,142.6344476,0.794779646,37.36555239,0,0.987089481,0,0,0,9,3,0% +2018-09-19 12:00:00,112.8384362,68.86432632,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969402234,1.201909231,2.373979451,-2.373979451,1,0.124179294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679871447,132.8335983,0.679871447,47.16640169,0,0.976456685,0,0,0,9,4,0% +2018-09-19 13:00:00,101.4698847,79.1269484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770983579,1.381025777,4.866017884,-4.866017884,1,0,#DIV/0!,0,0,0.231941629,1,0.202684956,0,0.938532241,0.977294204,0.724496596,1,0,0,0.035751379,0.312029739,0.903621979,0.628118575,0.961238037,0.922476074,0,0,0,0,0,0,-0.517806601,121.1852373,0.517806601,58.81476269,0,0.953438852,0,0,0,9,5,0% +2018-09-19 14:00:00,89.27207048,88.50406704,0.390096824,3.109310692,0.350594819,0.342963806,0,0.342963806,0.340023092,0.002940715,1.076421974,0.971266756,0.105155219,0.010571727,0.094583491,1.55809156,1.544687371,-74.63734861,74.63734861,0,0,0.898737949,0.002642932,0.085005773,1,0.918658794,0,0.013397316,0.961238037,1,0.687206927,0.962710331,0.326843129,0.007501874,0.115824807,0.269670596,0.724496596,0.448993192,0.967757612,0.928995649,0.001914795,0.081996965,0.328757924,0.08949884,0,0.079004009,-0.312373658,108.2023365,0.312373658,71.79766347,0,0.889935287,0.328757924,0.159807295,0.433348603,9,6,32% +2018-09-19 15:00:00,77.83215911,97.82719163,138.6488433,436.9359421,46.55316465,46.19460852,0,46.19460852,45.14941497,1.045193546,77.66956842,42.64880146,35.02076696,1.403749677,33.61701728,1.35842744,1.707406592,-4.101468781,4.101468781,0.76845384,0.76845384,0.335763094,0.884441206,28.44666944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.39933501,1.017011862,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.640774643,27.34402068,44.04010966,28.36103255,0,42.64880146,-0.097608819,95.60149221,0.097608819,84.39850779,0,0.537751206,44.04010966,51.29547698,77.61197343,9,7,76% +2018-09-19 16:00:00,66.34046114,107.9324327,347.2433003,680.0949597,74.32047624,163.1166718,88.41956543,74.69710634,72.07943967,2.617666674,86.43419497,0,86.43419497,2.241036572,84.19315839,1.157859474,1.883776321,-1.800244386,1.800244386,0.838013611,0.838013611,0.214029979,2.284394657,73.47398473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.28549909,1.623623368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655036153,70.62598884,70.94053524,72.24961221,88.41956543,0,0.130010617,82.52979416,-0.130010617,97.47020584,0.665416025,0,129.776331,72.24961221,177.0622572,9,8,36% +2018-09-19 17:00:00,55.53564672,119.8553158,536.0852397,787.1344996,90.6510254,367.4262791,275.4674796,91.9587995,87.91756252,4.04123698,132.7135358,0,132.7135358,2.733462883,129.9800729,0.969279888,2.091869886,-0.939324828,0.939324828,0.690787696,0.690787696,0.169098156,3.00294187,96.5849331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.5097052,1.980384553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175621163,92.84111148,86.68532636,94.82149603,275.4674796,0,0.349962401,69.51498457,-0.349962401,110.4850154,0.907127509,0,336.569455,94.82149603,398.6282277,9,9,18% +2018-09-19 18:00:00,46.13137475,134.985074,683.8006418,840.6224523,101.2432671,563.1230659,459.7778788,103.3451871,98.19040902,5.154778076,168.8482404,0,168.8482404,3.05285805,165.7953824,0.805144378,2.355933983,-0.439892547,0.439892547,0.605379746,0.605379746,0.148059626,3.421778146,110.0561475,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.384356,2.211785265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479066618,105.7901551,96.86342262,108.0019404,459.7778788,0,0.54694932,56.84202573,-0.54694932,123.1579743,0.958583852,0,537.5990728,108.0019404,608.2841827,9,10,13% +2018-09-19 19:00:00,39.29534601,154.7668021,778.2517394,866.7857269,107.4534986,723.299515,613.2193455,110.0801695,104.2133792,5.866790346,191.9362639,0,191.9362639,3.240119445,188.6961445,0.685833169,2.701190269,-0.074641816,0.074641816,0.542918192,0.542918192,0.138070361,3.555437121,114.3550795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.173864,2.347455508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575902091,109.9224522,102.7497661,112.2699077,613.2193455,0,0.707463594,44.97108071,-0.707463594,135.0289193,0.979324985,0,703.2907925,112.2699077,776.7692017,9,11,10% +2018-09-19 20:00:00,36.58286196,178.8798779,812.2996783,875.0805325,109.6137043,830.4603396,718.0284349,112.4319048,106.3084467,6.123458092,200.2567191,0,200.2567191,3.305257616,196.9514615,0.638491391,3.122042834,0.24016539,-0.24016539,0.489082989,0.489082989,0.134942445,3.417057273,109.904308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1877226,2.394647891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475646362,105.6442012,104.6633689,108.0388491,718.0284349,0,0.820528407,34.8622757,-0.820528407,145.1377243,0.989063658,0,814.8391989,108.0388491,885.5484649,9,12,9% +2018-09-19 21:00:00,38.89332652,203.2135789,783.4260674,868.0813711,107.7841998,872.9784162,762.5385111,110.4399051,104.5341085,5.905796617,193.2008115,0,193.2008115,3.250091304,189.9507202,0.678816605,3.546746037,0.552367603,-0.552367603,0.435693266,0.435693266,0.137580563,3.031627919,97.50757504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4821612,2.354680086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.196404108,93.72799001,102.6785653,96.08267009,762.5385111,0,0.878418241,28.54785848,-0.878418241,151.4521415,0.993079506,0,859.9399334,96.08267009,922.8241194,9,13,7% +2018-09-19 22:00:00,45.45021013,223.4105824,693.7379608,843.6207542,101.9136952,844.0780845,740.0077734,104.070311,98.84062126,5.229689785,171.2778744,0,171.2778744,3.073073932,168.2048004,0.793255812,3.899250247,0.908401715,-0.908401715,0.374807847,0.374807847,0.146905173,2.440444197,78.49307433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00936474,2.226431602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768093513,75.45052868,96.77745825,77.67696028,740.0077734,0,0.877180617,28.69588912,-0.877180617,151.3041109,0.992999196,0,831.6045826,77.67696028,882.4425996,9,14,6% +2018-09-19 23:00:00,54.69854524,238.8717743,549.9630249,792.9997439,91.70564432,740.8958144,647.80958,93.08623438,88.94038079,4.145853587,136.1101662,0,136.1101662,2.765263534,133.3449026,0.95466971,4.169098952,1.385720606,-1.385720606,0.29318151,0.29318151,0.166748745,1.704122462,54.81043627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.49287702,2.003424017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234630923,52.68587616,86.72750795,54.68930018,647.80958,0,0.816910201,35.22332156,-0.816910201,144.7766784,0.988793762,0,727.2775798,54.68930018,763.070633,9,15,5% +2018-09-19 00:00:00,65.42725332,250.9924685,363.7556692,692.1059928,75.94459793,562.0943131,485.6975811,76.39673198,73.6545881,2.742143886,90.48678325,0,90.48678325,2.290009833,88.19677342,1.141920991,4.380644974,2.186609093,-2.186609093,0.156221512,0.156221512,0.208779146,0.911447122,29.31527254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.79959167,1.659104329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.660340338,28.17895502,71.459932,29.83805935,485.6975811,0,0.701767628,45.43100633,-0.701767628,134.5689937,0.978751344,0,546.8370926,29.83805935,566.3655056,9,16,4% +2018-09-19 01:00:00,76.89456958,261.1897187,155.2067441,465.9134285,49.56384733,300.7621776,251.5228492,49.23932846,48.06931446,1.170013996,39.12620489,0,39.12620489,1.494532868,37.63167202,1.342063416,4.558620563,4.213744167,-4.213744167,0,0,0.31934081,0.373633217,12.01732862,0.159973759,1,0.233008109,0,0.934334715,0.973096678,0.724496596,1,46.47801737,1.082783975,0.025439138,0.312029739,0.930392309,0.654888905,0.961238037,0.922476074,0.261155503,11.55151337,46.73917288,12.63429734,211.2857934,0,0.539848894,57.32664699,-0.539848894,122.673353,0.95738149,0,249.0202807,12.63429734,257.2891756,9,17,3% +2018-09-19 02:00:00,88.43798753,270.5233386,1.991946556,12.59909896,1.648509182,5.970684464,4.356867782,1.613816683,1.598800548,0.015016135,0.532679139,0,0.532679139,0.049708634,0.482970504,1.543534066,4.721522963,34.34408618,-34.34408618,0,0,0.827587054,0.012427159,0.399700137,0.842346662,1,0.02910887,0,0.958569444,0.997331407,0.724496596,1,1.542331547,0.036013736,0.102840167,0.312029739,0.750058131,0.474554726,0.961238037,0.922476074,0.00878133,0.384206975,1.551112877,0.420220711,0.686874747,0,0.345807886,69.76888005,-0.345807886,110.2311199,0.905411048,0,2.173016862,0.420220711,2.448042913,9,18,13% +2018-09-19 03:00:00,100.5747947,279.8373523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755361313,4.884083167,-4.646435309,4.646435309,1,0.675259075,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119192211,83.15451493,-0.119192211,96.84548507,0.630509501,0,0,0,0,9,19,0% +2018-09-19 04:00:00,112.0248633,289.9562911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955202708,5.060691966,-1.894871835,1.894871835,1,0.854195858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109355704,96.27817604,0.109355704,83.72182396,0,0.592776477,0,0,0,9,20,0% +2018-09-19 05:00:00,122.6908685,301.8678661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141359618,5.268588169,-0.962156735,0.962156735,1,0.694692182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.32979729,109.2564723,0.32979729,70.74352771,0,0.89839172,0,0,0,9,21,0% +2018-09-19 06:00:00,131.8795523,316.8300457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301732404,5.529727466,-0.438833148,0.438833148,1,0.605198578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52711271,121.8105791,0.52711271,58.18942093,0,0.955143627,0,0,0,9,22,0% +2018-09-19 07:00:00,138.4790257,336.0289569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416914944,5.864811679,-0.061314472,0.061314472,1,0.540639082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687859079,133.4608744,0.687859079,46.53912556,0,0.977310693,0,0,0,9,23,0% +2018-09-20 08:00:00,141.0800469,359.0080197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462311328,6.265871985,0.262994496,-0.262994496,1,0.485178982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801086643,143.2339947,0.801086643,36.76600525,0,0.987584779,0,0,0,9,0,0% +2018-09-20 09:00:00,138.8956902,22.19099355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42418711,0.387305902,0.585966595,-0.585966595,1,0.4299475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859085013,149.2140029,0.859085013,30.78599712,0,0.991798542,0,0,0,9,1,0% +2018-09-20 10:00:00,132.5990525,41.79248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314290052,0.729416496,0.958374715,-0.958374715,1,0.366261961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857908671,149.0825734,0.857908671,30.91742664,0,0.991718738,0,0,0,9,2,0% +2018-09-20 11:00:00,123.5944253,57.10027147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157129658,0.996587741,1.467444874,-1.467444874,1,0.279205837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797645966,142.905893,0.797645966,37.09410699,0,0.987315548,0,0,0,9,3,0% +2018-09-20 12:00:00,113.0346825,69.24045162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972827379,1.208473856,2.351686461,-2.351686461,1,0.127991619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682413285,133.0325147,0.682413285,46.96748534,0,0.976730617,0,0,0,9,4,0% +2018-09-20 13:00:00,101.6454106,79.49170168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774047084,1.387391922,4.785665696,-4.785665696,1,0,#DIV/0!,0,0,0.223749143,1,0.205993369,0,0.938084011,0.976845974,0.724496596,1,0,0,0.034609645,0.312029739,0.906544652,0.631041248,0.961238037,0.922476074,0,0,0,0,0,0,-0.520074746,121.3372654,0.520074746,58.66273456,0,0.953859973,0,0,0,9,5,0% +2018-09-20 14:00:00,89.41726648,88.86516386,0.25969108,2.324781922,0.236047017,0.23088699,0,0.23088699,0.228929329,0.001957661,0.800235702,0.730152905,0.070082797,0.007117688,0.062965109,1.560625708,1.5509897,-93.03755616,93.03755616,0,0,0.90895312,0.001779422,0.057232332,1,0.935235312,0,0.010747934,0.961238037,1,0.69446989,0.969973294,0.220055579,0.00507002,0.115824807,0.277917073,0.724496596,0.448993192,0.966517556,0.927755593,0.001289185,0.055172377,0.221344764,0.060242398,0,0.047288125,-0.314073719,108.3049041,0.314073719,71.69509587,0,0.890801707,0.221344764,0.102366741,0.288341748,9,6,30% +2018-09-20 15:00:00,78.00326992,98.1942685,135.8552535,432.9047549,45.87346049,45.51434068,0,45.51434068,44.4902064,1.024134287,77.41231169,43.0893785,34.32293319,1.383254089,32.9396791,1.361413887,1.713813292,-4.147593045,4.147593045,0.760566127,0.760566127,0.337664237,0.861721319,27.71591975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.76567866,1.002162878,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.624314162,26.64159629,43.38999282,27.64375917,0,43.0893785,-0.099535471,95.71242144,0.099535471,84.28757856,0,0.547666513,43.38999282,51.24236885,76.92709838,9,7,77% +2018-09-20 16:00:00,66.52967357,108.3143737,344.0860011,678.7649811,73.75151051,161.0720473,86.9505513,74.12149598,71.52763036,2.593865619,85.65151482,0,85.65151482,2.223880156,83.42763467,1.161161854,1.890442448,-1.80706318,1.80706318,0.839179693,0.839179693,0.21434034,2.266130627,72.88655075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75507899,1.611193603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641803925,70.06132495,70.39688291,71.67251856,86.9505513,0,0.128101116,82.6401232,-0.128101116,97.3598768,0.659683337,0,127.7567127,71.67251856,174.6649427,9,8,37% +2018-09-20 17:00:00,55.75780931,120.2553482,532.6802403,786.5619533,90.08791735,365.0989695,273.7119665,91.38700291,87.37143426,4.015568656,131.8709745,0,131.8709745,2.716483097,129.1544914,0.973157356,2.09885177,-0.939311731,0.939311731,0.690785456,0.690785456,0.169121943,2.983890446,95.9721738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.98474594,1.968082757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.161818471,92.25210394,86.14656441,94.22018669,273.7119665,0,0.347985261,69.63586591,-0.347985261,110.3641341,0.906315754,0,334.2160316,94.22018669,395.8812594,9,9,18% +2018-09-20 18:00:00,46.40406132,135.3864066,680.1038217,840.2920608,100.6651293,560.561825,457.8052108,102.7566141,97.62970426,5.126909885,167.9344706,0,167.9344706,3.035425064,164.8990455,0.809903656,2.362938557,-0.43742649,0.43742649,0.604958025,0.604958025,0.148014356,3.401345357,109.3989587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.84538526,2.199155126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.464263132,105.1584403,96.30964839,107.3575954,457.8052108,0,0.544816775,56.98785642,-0.544816775,123.0121436,0.958226027,0,534.9905167,107.3575954,605.2539158,9,10,13% +2018-09-20 19:00:00,39.63116305,155.1031415,774.2144073,866.51377,106.8545859,720.4455673,610.9766862,109.4688811,103.6325259,5.836355232,190.9393066,0,190.9393066,3.222060017,187.7172466,0.691694282,2.707060499,-0.07069607,0.07069607,0.54224343,0.54224343,0.138016788,3.533455063,113.648061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.61552575,2.334371514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.559976165,109.242839,102.1755019,111.5772106,610.9766862,0,0.705097492,45.16257917,-0.705097492,134.8374208,0.97908782,0,700.3753339,111.5772106,773.4003867,9,11,10% +2018-09-20 20:00:00,36.96954867,179.0379273,807.8915214,874.7670313,108.9918114,827.2381189,715.4425852,111.7955337,105.7053062,6.090227543,199.1691581,0,199.1691581,3.286505252,195.8826528,0.645240347,3.124801318,0.245533092,-0.245533092,0.488165058,0.488165058,0.134908968,3.393573338,109.1489839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.607961,2.381061867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.458632331,104.918155,104.0665933,107.2992168,715.4425852,0,0.817866426,35.12821842,-0.817866426,144.8717816,0.988865323,0,811.5429562,107.2992168,881.7681476,9,12,9% +2018-09-20 21:00:00,39.28978951,203.1564455,778.6423449,867.6296721,107.1376964,869.3158194,759.5389849,109.7768344,103.9070995,5.869734896,192.0214482,0,192.0214482,3.230596841,188.7908513,0.685736189,3.545748871,0.559638073,-0.559638073,0.434449943,0.434449943,0.137595517,3.006872046,96.71134105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.87945635,2.340556414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178468562,92.96261961,102.0579249,95.30317603,759.5389849,0,0.875418406,28.90546737,-0.875418406,151.0945326,0.992884454,0,856.1923755,95.30317603,918.5663982,9,13,7% +2018-09-20 22:00:00,45.82454755,223.2211594,688.6036492,842.8757682,101.2390208,839.9026471,736.5253711,103.3772759,98.18629076,5.190985175,170.0126571,0,170.0126571,3.052730008,166.9599271,0.799789233,3.895944192,0.918824596,-0.918824596,0.37302543,0.37302543,0.147020744,2.414865496,77.6703754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.38039737,2.211692499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749561831,74.65971917,96.12995921,76.87141167,736.5253711,0,0.873824351,29.09385814,-0.873824351,150.9061419,0.992780262,0,827.3378105,76.87141167,877.648612,9,14,6% +2018-09-20 23:00:00,55.04475777,238.6316726,544.5398344,791.6220033,90.99080213,736.1021991,643.7501341,92.35206501,88.24709373,4.104971286,134.7736957,0,134.7736957,2.743708405,132.0299873,0.960712259,4.164908387,1.40245862,-1.40245862,0.290319141,0.290319141,0.167096687,1.67854107,53.98765077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82646313,1.987807399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216097292,51.89498344,86.04256042,53.88279084,643.7501341,0,0.813203942,35.58984305,-0.813203942,144.4101569,0.988514809,0,722.399101,53.88279084,757.66431,9,15,5% +2018-09-20 00:00:00,65.75165848,250.7395416,358.1733293,689.1519365,75.14382479,556.4294788,480.8514557,75.57802307,72.87796122,2.700061849,89.10913405,0,89.10913405,2.265863569,86.84327048,1.147582929,4.376230566,2.219904354,-2.219904354,0.150527687,0.150527687,0.209797376,0.887631157,28.54926921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.05306837,1.641610442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.643085751,27.44264349,70.69615412,29.08425393,480.8514557,0,0.697743749,45.75373621,-0.697743749,134.2462638,0.978340454,0,541.1325858,29.08425393,560.1676483,9,16,4% +2018-09-20 01:00:00,77.20527964,260.9361396,149.9059817,458.0515544,48.46650764,293.4554552,245.320337,48.13511823,47.00506362,1.130054611,37.80788484,0,37.80788484,1.461444028,36.34644081,1.34748633,4.554194773,4.323425575,-4.323425575,0,0,0.3233127,0.365361007,11.7512659,0.173003956,1,0.227300892,0,0.935139988,0.973901952,0.724496596,1,45.4631085,1.058811223,0.02735452,0.312029739,0.925356728,0.649853324,0.961238037,0.922476074,0.254845332,11.29576377,45.71795383,12.35457499,202.8789481,0,0.535573637,57.61717756,-0.535573637,122.3828224,0.956642156,0,239.8005082,12.35457499,247.8863304,9,17,3% +2018-09-20 02:00:00,88.717232,270.2712849,1.284396772,8.573320106,1.092468814,3.999505728,2.930296555,1.069209174,1.059526848,0.009682325,0.344358833,0,0.344358833,0.032941966,0.311416868,1.548407802,4.717123796,41.89226157,-41.89226157,0,0,0.850569573,0.008235491,0.264881712,0.869004413,1,0.023866225,0,0.959065124,0.997827087,0.724496596,1,1.021535151,0.023866342,0.105134363,0.312029739,0.745443051,0.469939647,0.961238037,0.922476074,0.005841873,0.254614377,1.027377024,0.278480719,0.383855916,0,0.341792505,70.01387916,-0.341792505,109.9861208,0.903712415,0,1.374272381,0.278480719,1.556532442,9,18,13% +2018-09-20 03:00:00,100.8878432,279.5865994,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76082504,4.879706704,-4.520988733,4.520988733,1,0.696711703,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114574488,83.4209172,-0.114574488,96.5790828,0.613602677,0,0,0,0,9,19,0% +2018-09-20 04:00:00,112.350929,289.7091055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960893628,5.056377764,-1.871003564,1.871003564,1,0.850114143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.11399671,96.54576023,0.11399671,83.45423977,0,0.611390852,0,0,0,9,20,0% +2018-09-20 05:00:00,123.0383737,301.6359236,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147424728,5.26454001,-0.95432698,0.95432698,1,0.693353215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.334368029,109.5341127,0.334368029,70.46588731,0,0.900464172,0,0,0,9,21,0% +2018-09-20 06:00:00,132.2542621,316.6477328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308272323,5.526545506,-0.436318628,0.436318628,1,0.604768569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531524514,122.1085181,0.531524514,57.89148192,0,0.955930961,0,0,0,9,22,0% +2018-09-20 07:00:00,138.8753791,335.9676436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423832615,5.86374156,-0.061397116,0.061397116,1,0.540653215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692034262,133.7913549,0.692034262,46.20864514,0,0.977749242,0,0,0,9,23,0% +2018-09-21 08:00:00,141.4695183,359.1423134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469108885,6.268215851,0.261120849,-0.261120849,1,0.485499395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80496384,143.6067633,0.80496384,36.39323666,0,0.987885409,0,0,0,9,0,0% +2018-09-21 09:00:00,139.2394509,22.49848804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430186868,0.392672693,0.582325767,-0.582325767,1,0.430570118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862623392,149.6124257,0.862623392,30.38757431,0,0.992037278,0,0,0,9,1,0% +2018-09-21 10:00:00,132.8818561,42.17468385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.319225905,0.736087094,0.952305227,-0.952305227,1,0.367299904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861090733,149.4392718,0.861090733,30.56072817,0,0.99193411,0,0,0,9,2,0% +2018-09-21 11:00:00,123.8255861,57.49044853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161164176,1.003397615,1.456911829,-1.456911829,1,0.281007093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80047874,143.175843,0.80047874,36.82415704,0,0.987537379,0,0,0,9,3,0% +2018-09-21 12:00:00,113.2304817,69.61786604,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976244719,1.215060981,2.329699154,-2.329699154,1,0.13175167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684927834,133.229932,0.684927834,46.77006801,0,0.976999609,0,0,0,9,4,0% +2018-09-21 13:00:00,101.8209113,79.85711768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777110149,1.393769635,4.707483367,-4.707483367,1,0,#DIV/0!,0,0,0.215608376,1,0.209316243,0,0.937631407,0.976393371,0.724496596,1,0,0,0.033467124,0.312029739,0.909479632,0.633976228,0.961238037,0.922476074,0,0,0,0,0,0,-0.522324028,121.4882722,0.522324028,58.51172781,0,0.954273981,0,0,0,9,5,0% +2018-09-21 14:00:00,89.56141256,89.2264574,0.160418103,1.703084781,0.147381466,0.14414667,0,0.14414667,0.142937371,0.001209299,0.581073391,0.53773407,0.043339321,0.004444095,0.038895226,1.563141532,1.557295462,-123.3483027,123.3483027,0,0,0.918733377,0.001111024,0.035734343,1,0.951512697,0,0.008106947,0.961238037,1,0.701764475,0.977267879,0.137396838,0.003178074,0.115824807,0.286201633,0.724496596,0.448993192,0.96525748,0.926495517,0.000804933,0.03442568,0.138201771,0.037603754,0,0.026073275,-0.315741222,108.4055665,0.315741222,71.59443351,0,0.89164247,0.138201771,0.060851794,0.178028052,9,6,29% +2018-09-21 15:00:00,78.17525854,98.56107279,133.0518861,428.773225,45.18822254,44.82863222,0,44.82863222,43.8256309,1.003001319,77.12745481,43.50489296,33.62256185,1.362591636,32.25997021,1.364415655,1.720215235,-4.195172545,4.195172545,0.752429553,0.752429553,0.339628575,0.839022189,26.98583772,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.12686341,0.987193002,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.60786872,25.93981367,42.73473213,26.92700667,0,43.50489296,-0.101463642,95.82345972,0.101463642,84.17654028,0,0.557212642,42.73473213,51.16848303,76.22348091,9,7,78% +2018-09-21 16:00:00,66.72024978,108.6953938,340.9000591,677.3951791,73.17934327,159.0153806,85.47281587,73.54256471,70.97271607,2.569848642,84.86179332,0,84.86179332,2.206627203,82.65516612,1.164488036,1.897092503,-1.814020349,1.814020349,0.840369439,0.840369439,0.214665094,2.247683547,72.29322923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22167426,1.598693897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628439078,69.49100175,69.85011334,71.08969564,85.47281587,0,0.12617866,82.75117301,-0.12617866,97.24882699,0.653736479,0,125.726811,71.08969564,172.2535951,9,8,37% +2018-09-21 17:00:00,55.98171857,120.6534027,529.236529,785.966355,89.52183792,362.744368,271.9323353,90.81203271,86.8224242,3.989608506,131.0189375,0,131.0189375,2.699413714,128.3195238,0.97706531,2.105799131,-0.939311865,0.939311865,0.690785479,0.690785479,0.169152795,2.964638102,95.35295224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.4570166,1.955716046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147870213,91.65688462,85.60488681,93.61260067,271.9323353,0,0.345984702,69.75808276,-0.345984702,110.2419172,0.90548494,0,331.8355211,93.61260067,393.103096,9,9,18% +2018-09-21 18:00:00,46.67860604,135.7841494,676.3614507,839.9444211,100.0839393,557.9620369,455.7972993,102.1647375,97.06603924,5.098698311,167.0095644,0,167.0095644,3.01790004,163.9916644,0.814695366,2.369880479,-0.434942012,0.434942012,0.604533154,0.604533154,0.147974044,3.380702025,108.7349982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.303569,2.186458305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449307109,104.5202162,95.75287611,106.7066745,455.7972993,0,0.542651737,57.13566281,-0.542651737,122.8643372,0.957859873,0,532.3428193,106.7066745,602.1802037,9,10,13% +2018-09-21 19:00:00,39.96839448,155.4346032,770.127728,866.2266853,106.2525481,717.5445877,608.6903978,108.8541899,103.0486418,5.805548117,189.9302902,0,189.9302902,3.203906356,186.7263839,0.69758008,2.712845598,-0.066714955,0.066714955,0.541562619,0.541562619,0.137967436,3.511265452,112.9343668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05427412,2.321219249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543899867,108.5568091,101.598174,110.8780283,608.6903978,0,0.702691811,45.35663071,-0.702691811,134.6433693,0.978845051,0,697.4117574,110.8780283,769.9792094,9,11,10% +2018-09-21 20:00:00,37.35684245,179.1927747,803.4334015,874.4385161,108.3668004,823.963283,712.8075211,111.1557619,105.0991416,6.056620352,198.0693889,0,198.0693889,3.267658864,194.80173,0.651999899,3.127503914,0.250954333,-0.250954333,0.487237971,0.487237971,0.134879631,3.369898259,108.387512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0252925,2.367407723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.441479817,104.1861992,103.4667723,106.5536069,712.8075211,0,0.815160252,35.39678968,-0.815160252,144.6032103,0.988662367,0,808.1927437,106.5536069,877.9299484,9,12,9% +2018-09-21 21:00:00,39.68657847,203.0997105,773.8112653,867.1611006,106.4881642,865.5980206,756.4875513,109.1104693,103.2771531,5.833316177,190.8305112,0,190.8305112,3.21101105,187.6195001,0.692661463,3.544758659,0.56699143,-0.56699143,0.433192444,0.433192444,0.137615164,2.981954825,95.90991758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.27392794,2.326366575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16041612,92.19226089,101.4343441,94.51862746,756.4875513,0,0.872372562,29.26447187,-0.872372562,150.7355281,0.992685038,0,852.3882179,94.51862746,914.2487692,9,13,7% +2018-09-21 22:00:00,46.19938651,223.0335409,683.4277237,842.1086987,100.5614283,835.672036,732.990939,102.681097,97.52913017,5.151966862,168.7372622,0,168.7372622,3.032298094,165.7049641,0.806331407,3.892669631,0.929390071,-0.929390071,0.371218627,0.371218627,0.147142741,2.389169205,76.84389434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.74870962,2.196889647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730944956,73.86527414,95.47965458,76.06216379,732.990939,0,0.870423189,29.49214591,-0.870423189,150.5078541,0.992556677,0,823.0147056,76.06216379,872.7958705,9,14,6% +2018-09-21 23:00:00,55.39154931,238.3930447,539.0838852,790.2086121,90.27293606,731.2544301,639.6397141,91.614716,87.55087396,4.063842036,133.4291913,0,133.4291913,2.722062094,130.7071293,0.966764913,4.160743545,1.419491801,-1.419491801,0.287406295,0.287406295,0.167456195,1.652904861,53.16310216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.15723021,1.972124721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197523945,51.10239595,85.35475416,53.07452067,639.6397141,0,0.809456774,35.9571093,-0.809456774,144.0428907,0.988230179,0,717.4660234,53.07452067,752.2022357,9,15,5% +2018-09-21 00:00:00,66.07652922,250.487399,352.571426,686.1202739,74.33862903,550.7066495,475.9517721,74.75487742,72.09704508,2.657832336,87.72660812,0,87.72660812,2.241583946,85.48502418,1.153252993,4.371829848,2.254053315,-2.254053315,0.144687871,0.144687871,0.210847004,0.863869586,27.78501541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.30242208,1.624019938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625870574,26.70801367,69.92829265,28.3320336,475.9517721,0,0.693685627,46.07742904,-0.693685627,133.922571,0.97792124,0,535.3716397,28.3320336,553.914389,9,16,3% +2018-09-21 01:00:00,77.51618891,260.6827105,144.6194322,449.9531662,47.35586711,286.0664465,239.0483311,47.01811536,45.92791299,1.090202367,36.4926098,0,36.4926098,1.427954118,35.06465568,1.35291272,4.549771601,4.438466894,-4.438466894,0,0,0.327451618,0.356988529,11.48197825,0.186243513,1,0.221602843,0,0.935936945,0.974698908,0.724496596,1,44.4343255,1.034547897,0.029278386,0.312029739,0.920327889,0.644824485,0.961238037,0.922476074,0.248512284,11.03691423,44.68283778,12.07146213,194.5271302,0,0.531273806,57.90843877,-0.531273806,122.0915612,0.95588657,0,230.6287091,12.07146213,238.5292396,9,17,3% +2018-09-21 02:00:00,88.99253114,270.0188117,0.766420348,5.538218313,0.669043281,2.525612397,1.870965638,0.654646758,0.648869158,0.0057776,0.20600161,0,0.20600161,0.020174123,0.185827487,1.553212678,4.712717307,53.42937955,-53.42937955,0,0,0.872945614,0.005043531,0.162217289,0.895907156,1,0.018714109,0,0.959545817,0.99830778,0.724496596,1,0.625237771,0.014616084,0.107407545,0.312029739,0.740912013,0.465408608,0.961238037,0.922476074,0.003592175,0.155929429,0.628829946,0.170545513,0.194754134,0,0.337828076,70.25539613,-0.337828076,109.7446039,0.901995724,0,0.804497342,0.170545513,0.916115969,9,18,14% +2018-09-21 03:00:00,101.20071,279.3348481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766285595,4.875312814,-4.402481276,4.402481276,1,0.716977672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109952198,83.68744003,-0.109952198,96.31255997,0.595256929,0,0,0,0,9,19,0% +2018-09-21 04:00:00,112.6766591,289.4602623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966578692,5.052034631,-1.847796129,1.847796129,1,0.846145438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118631158,96.81310938,0.118631158,83.18689062,0,0.628525566,0,0,0,9,20,0% +2018-09-21 05:00:00,123.3855278,301.4016011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153483709,5.260450311,-0.946650162,0.946650162,1,0.692040402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338921764,109.8111957,0.338921764,70.18880429,0,0.902473328,0,0,0,9,21,0% +2018-09-21 06:00:00,132.6288288,316.4626483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314809746,5.523315172,-0.433848082,0.433848082,1,0.604346081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535910271,122.4056649,0.535910271,57.59433515,0,0.956700799,0,0,0,9,22,0% +2018-09-21 07:00:00,139.2719457,335.9047539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430754009,5.862643929,-0.061487183,0.061487183,1,0.540668617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69617638,134.1210338,0.69617638,45.87896622,0,0.97817912,0,0,0,9,23,0% +2018-09-22 08:00:00,141.8591856,359.2784379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475909863,6.270591673,0.259257868,-0.259257868,1,0.485817983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808803459,143.9791903,0.808803459,36.0208097,0,0.988180284,0,0,0,9,0,0% +2018-09-22 09:00:00,139.5828097,22.81001634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436179609,0.398109887,0.57871069,-0.57871069,1,0.431188333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866122495,150.0111277,0.866122495,29.98887233,0,0.992271445,0,0,0,9,1,0% +2018-09-22 10:00:00,133.1638319,42.56029699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32414731,0.742817313,0.946283887,-0.946283887,1,0.368329614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864234753,149.7954386,0.864234753,30.20456143,0,0.992145349,0,0,0,9,2,0% +2018-09-22 11:00:00,124.055972,57.88273769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165185169,1.010244353,1.446479486,-1.446479486,1,0.282791129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80327755,143.4442351,0.80327755,36.55576487,0,0.987755014,0,0,0,9,3,0% +2018-09-22 12:00:00,113.4258356,69.99643449,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979654288,1.221668247,2.308007775,-2.308007775,1,0.135461115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687415065,133.4258356,0.687415065,46.57416445,0,0.977263741,0,0,0,9,4,0% +2018-09-22 13:00:00,101.9964004,80.22306693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780173013,1.400156654,4.631371208,-4.631371208,1,0,#DIV/0!,0,0,0.207517447,1,0.212654176,0,0.937174323,0.975936286,0.724496596,1,0,0,0.032323618,0.312029739,0.91242744,0.636924036,0.961238037,0.922476074,0,0,0,0,0,0,-0.524554738,121.6382732,0.524554738,58.36172676,0,0.954681063,0,0,0,9,5,0% +2018-09-22 14:00:00,89.70455015,89.58781921,0.087473395,1.221075716,0.081176857,0.079388487,0,0.079388487,0.078729075,0.000659411,0.411198254,0.387541535,0.023656719,0.002447782,0.021208937,1.565639754,1.563602415,-182.702827,182.702827,0,0,0.928017682,0.000611945,0.019682269,1,0.967505224,0,0.005473314,0.961238037,1,0.709093015,0.984596419,0.075677382,0.001757619,0.115824807,0.294526684,0.724496596,0.448993192,0.963976901,0.925214938,0.000443352,0.018948462,0.076120734,0.02070608,0,0.012593075,-0.317377153,108.5043802,0.317377153,71.49561984,0,0.892458729,0.076120734,0.03194488,0.097028019,9,6,27% +2018-09-22 15:00:00,78.34813902,98.92747086,130.2389176,424.5381053,44.49729303,44.13733144,0,44.13733144,43.15553547,0.981795974,76.81437382,43.89468284,32.91969098,1.341757562,31.57793342,1.367432989,1.726610087,-4.244293785,4.244293785,0.744029326,0.744029326,0.341658959,0.816347644,26.2565464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.48274219,0.972098787,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.591441089,25.23879111,42.07418328,26.2108899,0,43.89468284,-0.103393976,95.93464455,0.103393976,84.06535545,0,0.566412834,42.07418328,51.07340161,75.50070317,9,7,79% +2018-09-22 16:00:00,66.91219526,109.0753485,337.685369,675.9844456,72.60393209,156.9463061,83.98603544,72.96027061,70.41465566,2.545614951,84.06500374,0,84.06500374,2.189276433,81.87572731,1.167838117,1.903723964,-1.821125341,1.821125341,0.841584465,0.841584465,0.215004672,2.229053845,71.69403398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68524537,1.586123323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614941923,68.91503248,69.3001873,70.5011558,83.98603544,0,0.124242556,82.86298353,-0.124242556,97.13701647,0.647561403,0,123.6863022,70.5011558,169.8278987,9,8,37% +2018-09-22 17:00:00,56.20736012,121.0493237,525.7541952,785.3472761,88.95278576,360.3620252,270.1281369,90.23388827,86.27053106,3.963357203,130.1574463,0,130.1574463,2.682254691,127.4751916,0.981003498,2.112709256,-0.939328869,0.939328869,0.690788387,0.690788387,0.169190824,2.945187203,94.72734447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.92651592,1.943284393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133778103,91.05552663,85.06029402,92.99881102,270.1281369,0,0.343960112,69.88166994,-0.343960112,110.1183301,0.904634307,0,329.427474,92.99881102,390.2933358,9,9,18% +2018-09-22 18:00:00,46.95496319,136.1781567,672.5739412,839.5793559,99.49972208,555.3234227,453.7538379,101.5695848,96.49943834,5.070146465,166.0736226,0,166.0736226,3.000283736,163.0733388,0.819518708,2.376757204,-0.432441385,0.432441385,0.604105522,0.604105522,0.147938711,3.359852417,108.0644031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.75893067,2.173695353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.434201639,103.8756147,95.19313231,106.0493101,453.7538379,0,0.540453782,57.28546493,-0.540453782,122.7145351,0.957485151,0,529.6556943,106.0493101,599.0628467,9,10,13% +2018-09-22 19:00:00,40.30696146,155.7610947,765.9925141,865.9244217,105.6474355,714.5966153,606.3604646,108.2361507,102.4617755,5.774375128,188.9094134,0,188.9094134,3.185659978,185.7237534,0.703489189,2.718543948,-0.062700245,0.062700245,0.540876063,0.540876063,0.137922282,3.488874473,112.214196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.49015597,2.30799981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527677679,107.8645534,101.0178337,110.1725533,606.3604646,0,0.700246407,45.55322343,-0.700246407,134.4467766,0.978596563,0,694.4001004,110.1725533,766.505833,9,11,10% +2018-09-22 20:00:00,37.74464518,179.3443441,798.9265744,874.095017,107.7387476,820.6362928,710.1236199,110.5126729,104.4900269,6.022645986,196.9577184,0,196.9577184,3.248720755,193.7089976,0.658768333,3.1301493,0.256427574,-0.256427574,0.486301992,0.486301992,0.13485438,3.346040084,107.620151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4397883,2.353687128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42419465,103.4485827,102.863983,105.8022698,710.1236199,0,0.8124101,35.66792251,-0.8124101,144.3320775,0.988454729,0,804.789033,105.8022698,874.0345026,9,12,9% +2018-09-22 21:00:00,40.08357512,203.0432522,768.9345384,866.675748,105.8357069,861.8259693,753.3850462,108.4409232,102.6443698,5.79655335,189.6284183,0,189.6284183,3.191337054,186.4370812,0.699590362,3.543773274,0.574426358,-0.574426358,0.431920997,0.431920997,0.137639424,2.956885995,95.10361783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.66567253,2.312112832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.142253838,91.4172149,100.8079264,93.72932773,753.3850462,0,0.869281329,29.62476758,-0.869281329,150.3752324,0.992481222,0,848.5284374,93.72932773,909.8724079,9,13,7% +2018-09-22 22:00:00,46.57459015,222.847629,678.2123279,841.3196744,99.88104925,831.3877171,729.405799,101.9819181,96.8692671,5.112651006,167.4522131,0,167.4522131,3.011782157,164.440431,0.812879946,3.889424856,0.940097442,-0.940097442,0.369387559,0.369387559,0.147271061,2.363366498,76.01399059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.11442414,2.18202592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712250982,73.06753909,94.82667512,75.24956501,729.405799,0,0.866978179,29.8906392,-0.866978179,150.1093608,0.992328422,0,818.6367804,75.24956501,867.8861157,9,14,6% +2018-09-22 23:00:00,55.73877679,238.1558402,533.5977116,788.7596271,89.55220402,726.3544582,635.4800986,90.8743596,86.85187465,4.022484943,132.0772723,0,132.0772723,2.700329364,129.376943,0.972825176,4.156603544,1.436822335,-1.436822335,0.284442599,0.284442599,0.167827189,1.627226237,52.33718934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.48532549,1.956379432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17891987,50.30849714,84.66424536,52.26487657,635.4800986,0,0.805670165,36.32497353,-0.805670165,143.6750265,0.987939864,0,712.4803676,52.26487657,746.686684,9,15,5% +2018-09-22 00:00:00,66.40172212,250.2360193,346.9528821,683.0103272,73.52917047,544.9280593,471.0005872,73.92747207,71.31199469,2.615477379,86.33991892,0,86.33991892,2.217175783,84.12274314,1.15892868,4.367442444,2.289077682,-2.289077682,0.138698351,0.138698351,0.211928404,0.84017669,27.02297042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54780178,1.606336308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.608705151,25.97550704,69.15650693,27.58184335,471.0005872,0,0.689595118,46.4019325,-0.689595118,133.5980675,0.977493686,0,529.5566072,27.58184335,547.608372,9,16,3% +2018-09-22 01:00:00,77.82715066,260.4294228,139.3514731,441.614481,46.23193431,278.5978377,232.7094765,45.88836118,44.83787092,1.050490267,35.1814414,0,35.1814414,1.394063397,33.78737801,1.358340026,4.545350898,4.559227492,-4.559227492,0,0,0.331764949,0.348515849,11.20946773,0.199692766,1,0.215916301,0,0.93672527,0.975487234,0.724496596,1,43.39170385,1.009994186,0.031210101,0.312029739,0.915307844,0.639804439,0.961238037,0.922476074,0.242155948,10.77496675,43.6338598,11.78496094,186.2390776,0,0.526951643,58.20027991,-0.526951643,121.7997201,0.955114633,0,221.5135281,11.78496094,229.2265493,9,17,3% +2018-09-22 02:00:00,89.26330199,269.7659131,0.410351666,3.37458805,0.366963063,1.485848772,1.126857595,0.358991177,0.355897773,0.003093404,0.110559803,0,0.110559803,0.01106529,0.099494512,1.557938521,4.708303394,73.18746859,-73.18746859,0,0,0.894264831,0.002766323,0.088974443,0.922991862,1,0.013662691,0,0.960010916,0.998772879,0.724496596,1,0.342728097,0.008016765,0.109654514,0.312029739,0.736474101,0.460970697,0.961238037,0.922476074,0.001978635,0.085525619,0.344706732,0.093542384,0.086777205,0,0.333924491,70.49284996,-0.333924491,109.50715,0.90026555,0,0.42282926,0.093542384,0.48405088,9,18,14% +2018-09-22 03:00:00,101.5132504,279.0820869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771740453,4.870901299,-4.290395856,4.290395856,1,0.736145408,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105327877,83.95394273,-0.105327877,96.04605727,0.575291864,0,0,0,0,9,19,0% +2018-09-22 04:00:00,113.0019062,289.2097338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972255325,5.047662084,-1.825232984,1.825232984,1,0.842286913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123256485,97.08008112,0.123256485,82.91991888,0,0.644341831,0,0,0,9,20,0% +2018-09-22 05:00:00,123.7321819,301.1648369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159533964,5.256317996,-0.939126611,0.939126611,1,0.690753799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343456025,110.0875743,0.343456025,69.91242573,0,0.904420955,0,0,0,9,21,0% +2018-09-22 06:00:00,133.0031101,316.2746761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321342186,5.520034438,-0.431423222,0.431423222,1,0.603931406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540267709,122.7018648,0.540267709,57.29813517,0,0.957453288,0,0,0,9,22,0% +2018-09-22 07:00:00,139.6686046,335.8401373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437677012,5.861516156,-0.061586365,0.061586365,1,0.540685578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700283449,134.4497496,0.700283449,45.55025043,0,0.97860034,0,0,0,9,23,0% +2018-09-23 08:00:00,142.2489543,359.416289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48271261,6.272997628,0.257403949,-0.257403949,1,0.486135022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812603878,144.3511231,0.812603878,35.64887691,0,0.988469405,0,0,0,9,0,0% +2018-09-23 09:00:00,139.9256927,23.12548793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442164046,0.403615905,0.575119693,-0.575119693,1,0.43180243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869581111,150.4099984,0.869581111,29.59000162,0,0.992501051,0,0,0,9,1,0% +2018-09-23 10:00:00,133.4449353,42.94919757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329053492,0.749604909,0.940308627,-0.940308627,1,0.369351444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867339952,150.1509808,0.867339952,29.84901915,0,0.992352477,0,0,0,9,2,0% +2018-09-23 11:00:00,124.2855679,58.27699747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169192372,1.017125484,1.436144432,-1.436144432,1,0.284558527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806042043,143.7110113,0.806042043,36.28898869,0,0.987968496,0,0,0,9,3,0% +2018-09-23 12:00:00,113.6207492,70.37602069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983056171,1.228293275,2.286602755,-2.286602755,1,0.139121589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689875003,133.620215,0.689875003,46.37978495,0,0.977523102,0,0,0,9,4,0% +2018-09-23 13:00:00,102.1718938,80.58941942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78323595,1.406550711,4.557235007,-4.557235007,1,0,#DIV/0!,0,0,0.199474468,1,0.216007794,0,0.936712642,0.975474606,0.724496596,1,0,0,0.031178927,0.312029739,0.915388624,0.63988522,0.961238037,0.922476074,0,0,0,0,0,0,-0.52676722,121.787288,0.52676722,58.212712,0,0.955081413,0,0,0,9,5,0% +2018-09-23 14:00:00,89.84679371,89.94912063,0.036184727,0.8558878,0.033896125,0.033146808,0,0.033146808,0.032874032,0.000272776,0.282809769,0.27301427,0.009795499,0.001022093,0.008773406,1.568122373,1.569908314,-351.5369531,351.5369531,0,0,0.936752263,0.000255523,0.008218508,1,0.983234561,0,0.002844643,0.961238037,1,0.716461741,0.991965145,0.03159977,0.000737012,0.115824807,0.302899034,0.724496596,0.448993192,0.962674633,0.923912669,0.000185126,0.007906408,0.031784896,0.00864342,0,0.004577204,-0.318983714,108.6014754,0.318983714,71.39852462,0,0.893252186,0.031784896,0.012732018,0.040117746,9,6,26% +2018-09-23 15:00:00,78.5219263,99.29332909,127.4165365,420.196011,43.8005069,43.44027969,0,43.44027969,42.47976001,0.960519673,76.47240977,44.25804842,32.21436135,1.32074689,30.89361446,1.370466149,1.732995518,-4.295050023,4.295050023,0.735349498,0.735349498,0.343758417,0.793701742,25.52817634,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.83316112,0.956876626,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.57503421,24.53865411,41.40819533,25.49553074,0,44.25804842,-0.10532715,96.04601541,0.10532715,83.95398459,0,0.57528859,41.40819533,50.95668103,74.75832393,9,7,81% +2018-09-23 16:00:00,67.10551574,109.4540938,334.441825,674.5316271,72.02523276,154.8644517,82.48988172,72.37456999,69.85340624,2.521163746,83.26111901,0,83.26111901,2.171826512,81.0892925,1.171212196,1.910334316,-1.828388131,1.828388131,0.842826475,0.842826475,0.215359526,2.210241959,71.08897907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.14575108,1.573480915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601312776,68.33343068,68.74706386,69.9069116,82.48988172,0,0.122292089,82.97559593,-0.122292089,97.02440407,0.641142809,0,121.6348583,69.9069116,167.3875338,9,8,38% +2018-09-23 17:00:00,56.43471921,121.4429573,522.2333387,784.7042763,88.38075984,357.95149,268.2989207,89.65256934,85.71575384,3.9368155,129.2865252,0,129.2865252,2.665005999,126.6215192,0.984971663,2.119579458,-0.939366547,0.939366547,0.69079483,0.69079483,0.16923615,2.925540203,94.09542939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.39324295,1.930787775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119543918,90.44810583,84.51278687,92.3788936,268.2989207,0,0.341910869,70.00666266,-0.341910869,109.9933373,0.903763058,0,326.9914398,92.3788936,387.4515781,9,9,18% +2018-09-23 18:00:00,47.23308641,136.5682856,668.7417295,839.1966874,98.91250419,552.645715,451.6745302,100.9711849,95.92992724,5.041257634,165.1267517,0,165.1267517,2.98257695,162.1441747,0.824372874,2.383566238,-0.429926967,0.429926967,0.603675531,0.603675531,0.147908378,3.338800936,107.3873152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.21149493,2.160866847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418949913,103.224772,94.63044485,105.3856389,451.6745302,0,0.538222489,57.43728222,-0.538222489,122.5627178,0.957101615,0,526.9288672,105.3856389,595.9016601,9,10,13% +2018-09-23 19:00:00,40.64678501,156.082526,761.8096128,865.6069328,105.0393003,711.6017154,603.9868948,107.6148205,101.8719779,5.742842651,187.876883,0,187.876883,3.167322458,184.7095606,0.709420229,2.724153983,-0.058653782,0.058653782,0.540184077,0.540184077,0.137881301,3.466288482,111.4877529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.92322001,2.294714339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511314205,107.1662687,100.4345342,109.460983,603.9868948,0,0.697761157,45.75234385,-0.697761157,134.2476562,0.978342242,0,691.3404272,109.460983,762.9804513,9,11,10% +2018-09-23 20:00:00,38.13285911,179.4925611,794.3723387,873.7365726,107.1077318,817.2576483,707.3912955,109.8663528,103.8780385,5.988314233,195.8344637,0,195.8344637,3.229693301,192.6047704,0.665543945,3.132736174,0.261951208,-0.261951208,0.485357395,0.485357395,0.134833159,3.322007039,106.8471657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.85152184,2.339901802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.406782791,102.7055598,102.2583046,105.0454616,707.3912955,0,0.809616214,35.94154863,-0.809616214,144.0584514,0.988242344,0,801.3323363,105.0454616,870.08249,9,12,9% +2018-09-23 21:00:00,40.48066175,202.9869494,764.0139209,866.1737188,105.1804309,858.0006656,750.2323531,107.7683125,102.0088528,5.759459657,188.4155986,0,188.4155986,3.171578065,185.2440206,0.706520831,3.542790606,0.581941452,-0.581941452,0.43063584,0.43063584,0.137668213,2.931675468,94.29276063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.05478942,2.297797512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123988897,90.63778812,100.1787783,92.93558563,750.2323531,0,0.866145366,29.98625043,-0.866145366,150.0137496,0.992272969,0,844.6140631,92.93558563,905.4385452,9,13,7% +2018-09-23 22:00:00,46.95002202,222.6633244,672.9596524,840.5088439,99.19801866,827.0512157,725.7713292,101.2798865,96.20683239,5.073054119,166.1580453,0,166.1580453,2.991186264,163.166859,0.819432468,3.886208133,0.950945899,-0.950945899,0.367532363,0.367532363,0.147405596,2.337468696,75.18102827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.4776667,2.167104266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693488113,72.26686402,94.17115481,74.43396828,725.7713292,0,0.863490414,30.28922533,-0.863490414,149.7107747,0.992095478,0,814.2056082,74.43396828,862.9211518,9,14,6% +2018-09-23 23:00:00,56.08629704,237.9200058,528.0838918,787.275136,88.82876799,721.4042998,631.2731275,90.13117233,86.15025289,3.98091944,130.7185686,0,130.7185686,2.678515098,128.0400535,0.978890549,4.152487457,1.454452275,-1.454452275,0.281427702,0.281427702,0.168209577,1.601517697,51.51031431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.81089996,1.940575071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16029412,49.5136734,83.97119408,51.45424848,631.2731275,0,0.80184563,36.69328975,-0.80184563,143.3067102,0.987643858,0,707.4442212,51.45424848,741.1199977,9,15,5% +2018-09-23 00:00:00,66.72709331,249.9853784,341.3206577,679.8214629,72.71561439,539.0960127,466.0000231,73.09598962,70.52297033,2.573019292,84.94978921,0,84.94978921,2.192644066,82.75714514,1.164607479,4.363067936,2.324999631,-2.324999631,0.132555336,0.132555336,0.213041938,0.816566786,26.26359476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78936155,1.588563162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.591599857,25.24556627,68.38096141,26.83412943,466.0000231,0,0.685474126,46.72709412,-0.685474126,133.2729059,0.977057787,0,523.6899125,26.83412943,541.2523135,9,16,3% +2018-09-23 01:00:00,78.13801717,260.1762659,134.1065858,433.032029,45.09474124,271.0525461,226.3066256,44.7459205,43.73496841,1.010952091,33.8754672,0,33.8754672,1.35977283,32.51569437,1.363765671,4.540932475,4.686098536,-4.686098536,0,0,0.336260452,0.339943208,10.9337421,0.213351846,1,0.21024361,0,0.937504661,0.976266625,0.724496596,1,42.33530457,0.985150787,0.033149008,0.312029739,0.910298659,0.634795255,0.961238037,0.922476074,0.235775911,10.50992879,42.57108048,11.49507958,178.0236892,0,0.522609439,58.49254918,-0.522609439,121.5074508,0.954326259,0,212.4637618,11.49507958,219.9870615,9,17,4% +2018-09-23 02:00:00,89.52911658,269.5125816,0.184335598,1.927443021,0.168495151,0.801032044,0.636228043,0.164804001,0.163414401,0.0013896,0.04977505,0,0.04977505,0.00508075,0.0446943,1.562577861,4.703881924,114.6864801,-114.6864801,0,0,0.914067348,0.001270188,0.0408536,0.950205129,1,0.008719203,0,0.960460124,0.999222087,0.724496596,1,0.15726843,0.003680986,0.111871241,0.312029739,0.732135769,0.456632365,0.961238037,0.922476074,0.000912525,0.039270034,0.158180954,0.042951021,0.031680894,0,0.330089158,70.72581291,-0.330089158,109.2741871,0.898525773,0,0.186647053,0.042951021,0.214757638,9,18,15% +2018-09-23 03:00:00,101.8253189,278.8283032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777187076,4.866471938,-4.184265955,4.184265955,1,0.75429469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100704086,84.22028368,-0.100704086,95.77971632,0.553495817,0,0,0,0,9,19,0% +2018-09-23 04:00:00,113.3265221,288.9574912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97792094,5.043259619,-1.803298172,1.803298172,1,0.838535839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.127870123,97.34653217,0.127870123,82.65346783,0,0.658978246,0,0,0,9,20,0% +2018-09-23 05:00:00,124.0781864,300.9255676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165572882,5.252141958,-0.93175662,0.93175662,1,0.689493456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347968348,110.3631005,0.347968348,69.63689953,0,0.90630877,0,0,0,9,21,0% +2018-09-23 06:00:00,133.3769624,316.0836961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32786714,5.516701209,-0.429045737,0.429045737,1,0.603524832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544594574,122.9969626,0.544594574,57.0030374,0,0.958188582,0,0,0,9,22,0% +2018-09-23 07:00:00,140.0652346,335.7736356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444599511,5.860355482,-0.061696358,0.061696358,1,0.540704388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704353518,134.7773394,0.704353518,45.22266059,0,0.979012919,0,0,0,9,23,0% +2018-09-24 08:00:00,142.6387312,359.5557551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4895155,6.275431771,0.255557469,-0.255557469,1,0.486450789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816363521,144.7224077,0.816363521,35.27759226,0,0.988752775,0,0,0,9,0,0% +2018-09-24 09:00:00,140.268029,23.44480662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448138941,0.409189068,0.571551083,-0.571551083,1,0.432412698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872998087,150.808928,0.872998087,29.19107197,0,0.992726106,0,0,0,9,1,0% +2018-09-24 10:00:00,133.7251257,43.34125267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333943737,0.756447561,0.934377358,-0.934377358,1,0.370365751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870405612,150.5058085,0.870405612,29.4941915,0,0.992555517,0,0,0,9,2,0% +2018-09-24 11:00:00,124.514362,58.67308413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173185583,1.0240385,1.425903255,-1.425903255,1,0.286309872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808771921,143.9761178,0.808771921,36.02388224,0,0.988177874,0,0,0,9,3,0% +2018-09-24 12:00:00,113.8152303,70.75648735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986450508,1.234933671,2.26547471,-2.26547471,1,0.142734697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692307735,133.8130648,0.692307735,46.18693517,0,0.977777782,0,0,0,9,4,0% +2018-09-24 13:00:00,102.3474098,80.95604478,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786299283,1.412949531,4.484985642,-4.484985642,1,0,#DIV/0!,0,0,0.191477544,1,0.219377757,0,0.936246245,0.975008209,0.724496596,1,0,0,0.030032838,0.312029739,0.918363759,0.642860355,0.961238037,0.922476074,0,0,0,0,0,0,-0.528961875,121.9353397,0.528961875,58.0646603,0,0.955475229,0,0,0,9,5,0% +2018-09-24 14:00:00,89.98836276,90.31023288,0.00215915,0.585814839,0.002040166,0.001994924,0,0.001994924,0.001978647,1.62766E-05,0.188376672,0.187791643,0.000585029,6.15185E-05,0.000523511,1.570593219,1.576210912,-4617.375549,4617.375549,0,0,0.944893212,1.53796E-05,0.000494662,1,0.99873281,0,0.000216573,0.961238037,1,0.723882655,0.999386059,0.001901951,4.45537E-05,0.115824807,0.311332019,0.724496596,0.448993192,0.961348414,0.922586451,1.11425E-05,0.000475518,0.001913094,0.000520072,0,0.000237968,-0.320564845,108.6970877,0.320564845,71.30291227,0,0.894025317,0.001913094,0.000732821,0.00239271,9,6,25% +2018-09-24 15:00:00,78.69663627,99.65851398,124.5849443,415.7434124,43.09769135,42.73731088,0,42.73731088,41.79813694,0.939173935,76.10086562,44.59424908,31.50661654,1.299554408,30.20706213,1.373515413,1.739369197,-4.347541933,4.347541933,0.726372853,0.726372853,0.345930173,0.771088792,24.80086614,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1779591,0.941522745,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.558651205,23.83953588,40.7366103,24.78105862,0,44.59424908,-0.107263874,96.15761378,0.107263874,83.84238622,0,0.583859835,40.7366103,50.81784954,73.99587647,9,7,82% +2018-09-24 16:00:00,67.30021734,109.8314861,331.1693179,673.0355209,71.44319896,152.7694388,80.98402165,71.78541712,69.28892292,2.496494205,82.45011132,0,82.45011132,2.154276046,80.29583527,1.17461038,1.916921055,-1.835819247,1.835819247,0.844097271,0.844097271,0.215730127,2.191248323,70.47807844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60314824,1.560765662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587551951,67.74620976,68.19070019,69.30697543,80.98402165,0,0.120326519,83.08905269,-0.120326519,96.91094731,0.634464005,0,119.5721469,69.30697543,164.9321762,9,8,38% +2018-09-24 17:00:00,56.66378088,121.8341511,518.6740685,784.0369025,87.80575926,355.5123085,266.4442326,89.06807587,85.15809165,3.909984217,128.4062005,0,128.4062005,2.64766761,125.7585329,0.988969543,2.126407078,-0.939428874,0.939428874,0.690805489,0.690805489,0.169288894,2.905699631,93.45728841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.85719684,1.918226171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105169491,89.83470044,83.96236633,91.75292661,266.4442326,0,0.339836342,70.13309657,-0.339836342,109.8669034,0.902870356,0,324.5269654,91.75292661,384.5774208,9,9,19% +2018-09-24 18:00:00,47.51292895,136.9543964,664.8652729,838.7962364,98.32231321,549.9286568,449.5590888,100.369568,95.35753269,5.012035268,164.1690635,0,164.1690635,2.964780514,161.204283,0.829257047,2.390305142,-0.427401211,0.427401211,0.603243601,0.603243601,0.147883063,3.317552115,106.70388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66128753,2.14797339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403555214,102.5678281,94.06484274,104.7158015,449.5590888,0,0.535957446,57.59113362,-0.535957446,122.4088664,0.956709011,0,524.1620742,104.7158015,592.696472,9,10,13% +2018-09-24 19:00:00,40.98778618,156.3988102,757.5799033,865.2741764,104.4281966,708.5599777,601.5697192,106.9902585,101.2793012,5.710957314,186.8329139,0,186.8329139,3.148895426,183.6840185,0.715371822,2.729674183,-0.054577479,0.054577479,0.539486988,0.539486988,0.137844465,3.443513991,110.7552469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.35351663,2.281364017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.494814164,106.4621561,99.8483308,108.7435202,601.5697192,0,0.695235956,45.95397717,-0.695235956,134.0460228,0.97808197,0,688.2328271,108.7435202,759.4032862,9,11,10% +2018-09-24 20:00:00,38.52138697,179.6373519,789.7720324,873.3632295,106.4738343,813.8278874,704.6109969,109.2168905,103.2632553,5.953635181,194.6999519,0,194.6999519,3.210578951,191.4893729,0.672325035,3.13526325,0.267523555,-0.267523555,0.484404467,0.484404467,0.134815909,3.297807519,106.068826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.26056884,2.32605352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.389250322,101.95739,101.6498192,104.2834436,704.6109969,0,0.806778867,36.21759864,-0.806778867,143.7824014,0.988025149,0,797.8232044,104.2834436,866.0746325,9,12,9% +2018-09-24 21:00:00,40.87772135,202.9306821,759.0512134,865.6551299,104.5224455,854.1231579,747.0304011,107.0927568,101.3707081,5.722048671,187.192492,0,187.192492,3.151737379,184.0407547,0.713450828,3.541808556,0.589535224,-0.589535224,0.429337229,0.429337229,0.137701441,2.906333316,93.47766988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.44138048,2.283423002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105628594,89.85429189,99.54700907,92.13771489,747.0304011,0,0.862965372,30.3488169,-0.862965372,149.6511831,0.992060248,0,840.6461737,92.13771489,900.9484654,9,13,7% +2018-09-24 22:00:00,47.32554622,222.4805263,667.671932,839.6763752,98.51247459,822.6641137,722.0889607,100.5751531,95.54196001,5.033193049,164.8553045,0,164.8553045,2.970514581,161.88479,0.825986602,3.883017705,0.961934509,-0.961934509,0.3656532,0.3656532,0.147546227,2.311487251,74.34537567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.83856607,2.152127702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674664644,71.46360295,93.51323072,73.61573066,722.0889607,0,0.85996103,30.68779235,-0.85996103,149.3122077,0.99185783,0,809.7228207,73.61573066,857.9028441,9,14,6% +2018-09-24 23:00:00,56.43396694,237.6854857,522.5450435,785.7552588,88.10279387,716.4060347,627.0206998,89.38533483,85.44616957,3.939165262,129.3537199,0,129.3537199,2.6566243,126.6970956,0.984958533,4.148394309,1.472383524,-1.472383524,0.278361278,0.278361278,0.168603252,1.575791817,50.68288158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.13410829,1.924715262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141655807,48.71831359,83.2757641,50.64302885,627.0206998,0,0.797984732,37.0619129,-0.797984732,142.9380871,0.98734216,0,702.359736,50.64302885,735.5045855,9,15,5% +2018-09-24 00:00:00,67.05249859,249.7354497,335.6777475,676.5530958,71.89813157,533.2128835,460.9522652,72.26061828,69.73013763,2.530480651,83.55695016,0,83.55695016,2.167993943,81.38895622,1.170286872,4.358705856,2.361841801,-2.361841801,0.126254954,0.126254954,0.214187959,0.79305421,25.5073495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02726061,1.570704231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.574565076,24.51863456,67.60182568,26.08933879,460.9522652,0,0.681324597,47.05276138,-0.681324597,132.9472386,0.97661354,0,517.7740494,26.08933879,534.8489998,9,16,3% +2018-09-24 01:00:00,78.44863989,259.9232265,128.8893562,424.2027194,43.94434745,263.4337437,219.842858,43.59088564,42.61926323,0.97162241,32.57580085,0,32.57580085,1.325084213,31.25071664,1.36918706,4.536516106,4.819506505,-4.819506505,0,0,0.340946287,0.331271053,10.65481581,0.227220666,1,0.204587119,0,0.938274826,0.977036789,0.724496596,1,41.26521811,0.960019002,0.03509443,0.312029739,0.905302418,0.629799014,0.961238037,0.922476074,0.229371773,10.24181423,41.49458989,11.20183323,169.8900175,0,0.518249525,58.7850938,-0.518249525,121.2149062,0.953521378,0,203.4883535,11.20183323,210.8197293,9,17,4% +2018-09-24 02:00:00,89.78992386,269.2588078,0.055265635,1.025923216,0.051504075,0.385150352,0.334782699,0.050367653,0.049951037,0.000416616,0.014952831,0,0.014952831,0.001553038,0.013399793,1.567129806,4.699452735,257.4741174,-257.4741174,0,0,0.931936728,0.000388259,0.012487759,0.977528349,1,0.003883866,0,0.960893796,0.999655759,0.724496596,1,0.048041151,0.001125171,0.114056762,0.312029739,0.727897276,0.452393872,0.961238037,0.922476074,0.000280209,0.012003709,0.048321361,0.01312888,0.00752312,0,0.326323348,70.95423107,-0.326323348,109.0457689,0.896777743,0,0.055067927,0.01312888,0.063660516,9,18,16% +2018-09-24 03:00:00,102.1367695,278.5734829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782622915,4.862024485,-4.083669632,4.083669632,1,0.771497674,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.096083405,84.48632037,-0.096083405,95.51367963,0.529618776,0,0,0,0,9,19,0% +2018-09-24 04:00:00,113.6503578,288.7035043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98357294,5.038826711,-1.781976314,1.781976314,1,0.834889587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132469497,97.61231852,0.132469497,82.38768148,0,0.672554618,0,0,0,9,20,0% +2018-09-24 05:00:00,124.423391,300.683728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171597839,5.247921061,-0.924540453,0.924540453,1,0.688259419,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.352456276,110.6376257,0.352456276,69.36237428,0,0.908138432,0,0,0,9,21,0% +2018-09-24 06:00:00,133.7502419,315.8895843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334382096,5.513313319,-0.426717296,0.426717296,1,0.603126645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548888634,123.290802,0.548888634,56.70919804,0,0.95890684,0,0,0,9,22,0% +2018-09-24 07:00:00,140.4617148,335.7050832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451519396,5.859159017,-0.061818858,0.061818858,1,0.540725337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708384672,135.1036393,0.708384672,44.89636065,0,0.97941688,0,0,0,9,23,0% +2018-09-25 08:00:00,143.0284248,359.6967175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496316936,6.27789203,0.253716794,-0.253716794,1,0.486765562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820080859,145.0928889,0.820080859,34.90711109,0,0.989030402,0,0,0,9,0,0% +2018-09-25 09:00:00,140.6097506,23.76787043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454103109,0.414827595,0.568003146,-0.568003146,1,0.433019431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876372319,151.2078075,0.876372319,28.79219246,0,0.992946623,0,0,0,9,1,0% +2018-09-25 10:00:00,134.0043661,43.73632518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3388174,0.763342877,0.928487971,-0.928487971,1,0.371372895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873431075,150.8598342,0.873431075,29.14016582,0,0.992754498,0,0,0,9,2,0% +2018-09-25 11:00:00,124.7423466,59.0708518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177164665,1.030980856,1.41575254,-1.41575254,1,0.288045746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811466954,144.2395054,0.811466954,35.76049463,0,0.988383196,0,0,0,9,3,0% +2018-09-25 12:00:00,114.0092903,71.13769635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989837493,1.241587024,2.244614434,-2.244614434,1,0.146302014,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694713409,134.004384,0.694713409,45.99561602,0,0.978027875,0,0,0,9,4,0% +2018-09-25 13:00:00,102.5229692,81.32281232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789363372,1.419350832,4.414538759,-4.414538759,1,0,#DIV/0!,0,0,0.183524771,1,0.222764753,0,0.935775005,0.974536969,0.724496596,1,0,0,0.028885135,0.312029739,0.921353449,0.645850044,0.961238037,0.922476074,0,0,0,0,0,0,-0.531139157,122.0824555,0.531139157,57.91754455,0,0.955862712,0,0,0,9,5,0% +2018-09-25 14:00:00,90.12962326,90.67102721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57305868,1.582507961,413.5610872,-413.5610872,1,0,#DIV/0!,0,0,0.985953667,1,0.002418018,0,0.961024148,0.999786111,0.724496596,1,0,0,0.114722731,0.312029739,0.726613383,0.451109979,0.961238037,0.922476074,0,0,0,0,0,0,-0.322126889,108.791599,0.322126889,71.20840099,0,0.894781663,0,0,0,9,6,0% +2018-09-25 15:00:00,78.87228577,100.0228923,121.7443572,411.1766302,42.38866571,42.02825143,0,42.02825143,41.11049104,0.91776039,75.69900304,44.90249946,30.79650359,1.278174669,29.51832892,1.376581075,1.745728799,-4.401878295,4.401878295,0.717080788,0.717080788,0.348177662,0.748513386,24.07476349,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.5169677,0.926033196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.5422954,23.14157839,40.0592631,24.06761159,0,44.90249946,-0.109204892,96.26948311,0.109204892,83.73051689,0,0.592145053,40.0592631,50.65640451,73.21286673,9,7,83% +2018-09-25 16:00:00,67.49630655,110.2073828,327.8677356,671.4948721,70.85778223,150.6608827,79.46811861,71.19276414,68.72115866,2.471605483,81.631952,0,81.631952,2.136623572,79.49532843,1.178032782,1.92348169,-1.843429807,1.843429807,0.845398753,0.845398753,0.216116972,2.17207336,69.86134573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05739164,1.547976504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573659756,67.15338282,67.6310514,68.70135932,79.46811861,0,0.118345086,83.20339758,-0.118345086,96.79660242,0.627506751,0,117.4978323,68.70135932,162.461498,9,8,38% +2018-09-25 17:00:00,56.89452995,122.2227544,515.0765012,783.3446878,87.22778318,353.0440241,264.5636162,88.48040792,84.59754368,3.882864235,127.5165006,0,127.5165006,2.630239499,124.8862611,0.992996874,2.133189486,-0.939519998,0.939519998,0.690821072,0.690821072,0.16934918,2.88566809,92.81300519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.31837681,1.905599563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090656708,89.2153909,83.40903352,91.12099047,264.5636162,0,0.337735891,70.26100778,-0.337735891,109.7389922,0.901955326,0,322.0335961,91.12099047,381.6704619,9,9,19% +2018-09-25 18:00:00,47.79444367,137.3363522,660.9450492,838.3778219,97.72917784,547.1720008,447.4072353,99.76476551,94.78228254,4.982482965,163.2006746,0,163.2006746,2.946895294,160.2537793,0.834170406,2.396971529,-0.424866659,0.424866659,0.602810167,0.602810167,0.147862788,3.296110603,106.0142473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.1083352,2.135015609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388020911,101.9049269,93.49635611,104.0399426,447.4072353,0,0.533658243,57.74703757,-0.533658243,122.2529624,0.956307078,0,521.3550621,104.0399426,589.4471237,9,10,13% +2018-09-25 19:00:00,41.32988621,156.7098628,753.3042953,864.926114,103.8141802,705.471516,599.1089904,106.3625256,100.6837996,5.678725975,185.7777284,0,185.7777284,3.130380567,182.6473479,0.721342594,2.735103077,-0.050473321,0.050473321,0.538785136,0.538785136,0.137811746,3.420557658,110.0168924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.7810979,2.267950064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478182379,105.7524217,99.25928028,108.0203717,599.1089904,0,0.692670716,46.15810725,-0.692670716,133.8418928,0.977815629,0,685.0774145,108.0203717,755.7745874,9,11,10% +2018-09-25 20:00:00,38.9101321,179.778644,785.1270313,872.9750425,105.8371384,810.3475846,701.7832072,108.5643774,102.6457582,5.918619201,193.5545188,0,193.5545188,3.191380221,190.3631386,0.679109918,3.137729263,0.273142865,-0.273142865,0.483443509,0.483443509,0.134802566,3.273450076,105.2854068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.6670071,2.312144106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371603437,101.2043378,101.0386105,103.5164819,701.7832072,0,0.803898363,36.49600218,-0.803898363,143.5039978,0.987803083,0,794.262226,103.5164819,862.011693,9,12,9% +2018-09-25 21:00:00,41.27463771,202.8743308,754.0482577,865.1201114,103.8618627,850.1945423,743.7801637,106.4143786,100.7300443,5.684334278,185.9595485,0,185.9595485,3.13181837,182.8277301,0.720378326,3.54082504,0.597206093,-0.597206093,0.428025433,0.428025433,0.137739013,2.880869754,92.65867421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.82555006,2.268991748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08718033,89.06704209,98.91273039,91.33603384,743.7801637,0,0.85974208,30.71236408,-0.85974208,149.2876359,0.991843023,0,836.6258967,91.33603384,896.4035041,9,13,7% +2018-09-25 22:00:00,47.70102748,222.2991328,662.3514425,838.8224572,97.82455825,818.2280487,718.3601769,99.86787183,94.87478688,4.993084952,163.544547,0,163.544547,2.949771365,160.5947757,0.832539986,3.879851792,0.973062213,-0.973062213,0.363750251,0.363750251,0.147692829,2.285433727,73.50740478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19725389,2.137099313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655788955,70.65811347,92.85304284,72.79521278,718.3601769,0,0.856391207,31.0862291,-0.856391207,148.9137709,0.991615468,0,805.1901057,72.79521278,852.8331166,9,14,6% +2018-09-25 23:00:00,56.78164357,237.4522215,516.9838214,784.2001493,87.37445139,711.3618037,622.724772,88.63703172,84.7397893,3.897242421,127.983375,0,127.983375,2.634662087,125.3487129,0.991026635,4.144323081,1.490617826,-1.490617826,0.275243028,0.275243028,0.169008096,1.550061235,49.85529763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.45510871,1.908803713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.123014088,47.92280842,82.5781228,49.83161213,622.724772,0,0.794089076,37.43069894,-0.794089076,142.5693011,0.987034772,0,697.2291259,49.83161213,729.8429195,9,15,5% +2018-09-25 00:00:00,67.37779355,249.4862038,330.0271762,673.2046943,71.07689841,527.2811134,455.8595614,71.42155193,68.93366767,2.487884258,82.16214051,0,82.16214051,2.143230733,80.01890978,1.17596434,4.354355695,2.39962728,-2.39962728,0.119793256,0.119793256,0.215366805,0.769653293,24.75469557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.26166339,1.55276337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.557611191,23.79515497,66.81927458,25.34791834,455.8595614,0,0.677148519,47.37878193,-0.677148519,132.6212181,0.976160955,0,511.8115794,25.34791834,528.401285,9,16,3% +2018-09-25 01:00:00,78.7588695,259.6702898,123.7044748,415.1239144,42.78084488,255.7448834,213.3215023,42.42338114,41.49084456,0.932536584,31.28358244,0,31.28358244,1.290000318,29.99358213,1.374601588,4.532101527,4.95991716,-4.95991716,0,0,0.345831021,0.322500079,10.37271114,0.241298893,1,0.198949182,0,0.939035482,0.977797446,0.724496596,1,40.18156888,0.934600839,0.037045669,0.312029739,0.900321216,0.624817812,0.961238037,0.922476074,0.222943169,9.970644493,40.40451205,10.90524533,161.8472599,0,0.513874279,59.07776012,-0.513874279,120.9222399,0.952699936,0,194.5963863,10.90524533,201.7336513,9,17,4% +2018-09-25 02:00:00,90.04643609,269.0045807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571606789,4.695015636,-1166.608181,1166.608181,1,0,#DIV/0!,0,0,1,0.99497568,0,0.000857186,0.961238037,1,0.722068788,0.997572192,0,0,0.115824807,0.30927067,0.724496596,0.448993192,0.961673934,0.922911971,0,0,0,0,0,0,0.322615804,71.17880842,-0.322615804,108.8211916,0.895016892,0,0,0,0,9,18,0% +2018-09-25 03:00:00,102.4474558,278.3176107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788045414,4.857558673,-3.988224353,3.988224353,1,0.787819778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091468429,84.75190963,-0.091468429,95.24809037,0.503363302,0,0,0,0,9,19,0% +2018-09-25 04:00:00,113.9732642,288.447742,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989208719,5.034362817,-1.761252582,1.761252582,1,0.83134562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137052028,97.8772955,0.137052028,82.1227045,0,0.685175044,0,0,0,9,20,0% +2018-09-25 05:00:00,124.7676448,300.4392515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177606202,5.243654141,-0.917478343,0.917478343,1,0.687051727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356917361,110.9110009,0.356917361,69.08899912,0,0.90991155,0,0,0,9,21,0% +2018-09-25 06:00:00,134.122804,315.6922126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340884531,5.509868533,-0.424439545,0.424439545,1,0.602737127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55314768,123.5832261,0.55314768,56.41677389,0,0.959608226,0,0,0,9,22,0% +2018-09-25 07:00:00,140.8579244,335.6343067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458434557,5.857923735,-0.061955558,0.061955558,1,0.540748714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712375031,135.4284844,0.712375031,44.57151558,0,0.979812251,0,0,0,9,23,0% +2018-09-26 08:00:00,143.4179454,359.8390503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.503115354,6.280376205,0.251880281,-0.251880281,1,0.487079625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823754408,145.4624099,0.823754408,34.53759012,0,0.989302298,0,0,0,9,0,0% +2018-09-26 09:00:00,140.9507928,24.09457164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460055418,0.420529607,0.564474156,-0.564474156,1,0.433622924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879702762,151.6065285,0.879702762,28.39347145,0,0.99316262,0,0,0,9,1,0% +2018-09-26 10:00:00,134.282623,44.13427394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3436739,0.770288393,0.922638343,-0.922638343,1,0.37237324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87641574,151.2129733,0.87641574,28.78702665,0,0.99294945,0,0,0,9,2,0% +2018-09-26 11:00:00,124.9695173,59.47015262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181129542,1.03794997,1.405688885,-1.405688885,1,0.289766733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814126967,144.5011296,0.814126967,35.49887038,0,0.988584518,0,0,0,9,3,0% +2018-09-26 12:00:00,114.202943,71.51950881,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993217371,1.248250908,2.224012925,-2.224012925,1,0.14982508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697092228,134.1941761,0.697092228,45.80582388,0,0.97827348,0,0,0,9,4,0% +2018-09-26 13:00:00,102.698595,81.68959121,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792428621,1.425752331,4.345814566,-4.345814566,1,0,#DIV/0!,0,0,0.175614255,1,0.226169496,0,0.93529879,0.974060753,0.724496596,1,0,0,0.027735594,0.312029739,0.924358317,0.648854913,0.961238037,0.922476074,0,0,0,0,0,0,-0.533299573,122.228666,0.533299573,57.77133402,0,0.956244065,0,0,0,9,5,0% +2018-09-26 14:00:00,90.89805204,91.03137496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586470292,1.588797216,59.54508685,-59.54508685,1,0,#DIV/0!,0,0,0.906126696,1,0.016792418,0,0.959723477,0.99848544,0.724496596,1,0,0,0.108260208,0.312029739,0.739223161,0.463719757,0.961238037,0.922476074,0,0,0,0,0,0,-0.333925038,109.5071833,0.333925038,70.49281667,0,0.900265795,0,0,0,9,6,0% +2018-09-26 15:00:00,79.04889233,100.3863313,118.8950144,406.4918413,41.67324229,41.31292111,0,41.31292111,40.41664027,0.89628084,75.26603958,45.18196481,30.08407478,1.256602013,28.82747276,1.379663441,1.752072005,-4.458176667,4.458176667,0.707453199,0.707453199,0.35050454,0.725980472,23.35002753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.85001195,0.910403881,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525970381,22.44493462,39.37598233,23.3553385,0,45.18196481,-0.111150976,96.38166852,0.111150976,83.61833148,0,0.600161394,39.37598233,50.47180948,72.4087722,9,7,84% +2018-09-26 16:00:00,67.69378998,110.5816419,324.5369682,669.9083758,70.26893231,148.5383987,77.9418372,70.59656149,68.15006474,2.446496751,80.80661286,0,80.80661286,2.118867574,78.68774529,1.181479518,1.930013744,-1.851231512,1.851231512,0.846732923,0.846732923,0.216520579,2.152717505,69.23879489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50843444,1.535112344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559636504,66.55496327,67.06807095,68.09007561,77.9418372,0,0.116347011,83.31867532,-0.116347011,96.68132468,0.6202511,0,115.4115812,68.09007561,159.9751739,9,8,39% +2018-09-26 17:00:00,57.1269508,122.6086185,511.4407663,782.627153,86.64683115,350.5461832,262.6566171,87.88956603,84.0341095,3.85545653,126.6174567,0,126.6174567,2.612721652,124.004735,0.997053383,2.139924083,-0.939644234,0.939644234,0.690842317,0.690842317,0.169417139,2.865448266,92.16266616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77678245,1.892907943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076007515,88.59026029,82.85278996,90.48316823,262.6566171,0,0.335608873,70.39043253,-0.335608873,109.6095675,0.90101705,0,319.5108803,90.48316823,378.7303043,9,9,19% +2018-09-26 18:00:00,48.07758288,137.7140195,656.9815599,837.9412624,97.13312811,544.375515,445.2187046,99.15681042,94.20420591,4.952604509,162.2217077,0,162.2217077,2.928922196,159.2927855,0.839112118,2.403563066,-0.422325944,0.422325944,0.602375679,0.602375679,0.147847571,3.274481181,105.3185707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55266596,2.12199416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.372350469,101.2362162,92.92501643,103.3582103,445.2187046,0,0.531324479,57.90501172,-0.531324479,122.0949883,0.955895546,0,518.5075931,103.3582103,586.1534746,9,10,13% +2018-09-26 19:00:00,41.67300625,157.0156026,748.9837315,864.5627121,103.1973089,702.336472,596.604787,105.731685,100.0855293,5.64615574,184.7115568,0,184.7115568,3.111779621,181.5997771,0.727331168,2.740439242,-0.04634336,0.04634336,0.538078871,0.538078871,0.137783111,3.397426295,109.2729082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20601768,2.254473742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461423785,105.0372758,98.66744146,107.2917495,596.604787,0,0.690065369,46.36471638,-0.690065369,133.6352836,0.977543096,0,681.8743322,107.2917495,752.0946364,9,11,10% +2018-09-26 20:00:00,39.29899826,179.9163663,780.4387505,872.5720754,105.19773,806.817354,698.9084467,107.9089073,102.0256303,5.88327696,192.3985104,0,192.3985104,3.172099699,189.2264107,0.685896912,3.14013297,0.278807314,-0.278807314,0.482474831,0.482474831,0.134793063,3.248943414,104.4971884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.07091661,2.298175434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353848444,100.4466722,100.4247651,102.7448476,698.9084467,0,0.800975033,36.77668774,-0.800975033,143.2233123,0.987576082,0,790.6500303,102.7448476,857.8944782,9,12,9% +2018-09-26 21:00:00,41.67129533,202.8177774,749.0069374,864.5688071,103.1987971,846.2159632,740.4826599,105.7333032,100.0869726,5.646330676,184.7172282,0,184.7172282,3.111824495,181.6054037,0.727301307,3.539837997,0.604952388,-0.604952388,0.426700738,0.426700738,0.137780829,2.85529514,91.83610671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20740503,2.254506253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.068651609,88.27635893,98.27605664,90.53086518,740.4826599,0,0.856476262,31.07678951,-0.856476262,148.9232105,0.991621266,0,832.5544092,90.53086518,891.8050498,9,13,7% +2018-09-26 22:00:00,48.07633122,222.1190414,657.0004996,837.9473001,97.13441388,813.7447133,714.5865131,99.1582002,94.20545291,4.952747284,162.2263386,0,162.2263386,2.928960966,159.2973776,0.839090272,3.876708604,0.984327818,-0.984327818,0.361823719,0.361823719,0.147845266,2.259319795,72.66749097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55386462,2.122022249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.636869501,69.85075637,92.19073412,71.97277862,714.5865131,0,0.852782165,31.48442509,-0.852782165,148.5155749,0.99136838,0,800.6092078,71.97277862,847.713952,9,14,6% +2018-09-26 23:00:00,57.12918426,237.220153,511.4029148,782.609997,86.64391407,706.2738085,618.3873569,87.88645157,84.03128038,3.855171189,126.6081912,0,126.6081912,2.612633691,123.9955575,0.997092364,4.140272721,1.509156747,-1.509156747,0.272072686,0.272072686,0.169423974,1.524338637,49.02797045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77406299,1.892844216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.104378154,47.12755007,81.87844114,49.02039428,618.3873569,0,0.790160309,37.79950488,-0.790160309,142.2004951,0.986721701,0,692.054666,49.02039428,724.1375337,9,15,5% +2018-09-26 00:00:00,67.70283371,249.2376097,324.3719958,669.7757849,70.25209702,521.3032105,450.7242202,70.57899021,68.13373709,2.445253119,80.76610575,0,80.76610575,2.118359928,78.64774582,1.181637361,4.350016908,2.438379591,-2.438379591,0.113166221,0.113166221,0.216578798,0.74637834,24.00609307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.49273968,1.534744556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.540748567,23.07556978,66.03348825,24.61031433,450.7242202,0,0.672947918,47.70500368,-0.672947918,132.2949963,0.975700045,0,505.8051303,24.61031433,521.9120888,9,16,3% +2018-09-26 01:00:00,79.06855602,259.4174389,118.556738,405.7935134,41.60436328,247.9897296,206.7461606,41.24356899,40.34983822,0.893730769,29.99997878,0,29.99997878,1.254525057,28.74545372,1.380006637,4.527688446,5.107840061,-5.107840061,0,0,0.35092365,0.313631264,10.08745956,0.255585937,1,0.193332157,0,0.939786363,0.978548326,0.724496596,1,39.0845203,0.908899133,0.039002006,0.312029739,0.89535716,0.619853756,0.961238037,0.922476074,0.216489798,9.69644982,39.3010101,10.60534895,153.9047494,0,0.509486115,59.37039383,-0.509486115,120.6296062,0.951861899,0,185.797077,10.60534895,192.7380658,9,17,4% +2018-09-26 02:00:00,90.93369599,268.7498884,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587092396,4.690570417,-58.1027803,58.1027803,1,0,#DIV/0!,0,0,1,0.894362265,0,0.017209181,0.961238037,1,0.676853572,0.952356976,0,0,0.115824807,0.257919453,0.724496596,0.448993192,0.969499985,0.930738022,0,0,0,0,0,0,0.308513772,72.03031371,-0.308513772,107.9696863,0.887932681,0,0,0,0,9,18,0% +2018-09-26 03:00:00,102.757231,278.0606707,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79345201,4.853074225,-3.897582514,3.897582514,1,0.803320445,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086861765,85.0169078,-0.086861765,94.9830922,0,0,0,0,0,9,19,0% +2018-09-26 04:00:00,114.2950913,288.1901728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994825663,5.029867387,-1.741112677,1.741112677,1,0.827901493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141615137,98.14131806,0.141615137,81.85868194,0,0.696930399,0,0,0,9,20,0% +2018-09-26 05:00:00,125.1107962,300.1920705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183595324,5.239340018,-0.910570488,0.910570488,1,0.685870414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.361349172,111.1830764,0.361349172,68.81692357,0,0.911629682,0,0,0,9,21,0% +2018-09-26 06:00:00,134.4945033,315.4914499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347371909,5.506364563,-0.422214102,0.422214102,1,0.602356553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557369531,123.8740778,0.557369531,56.12592225,0,0.960292908,0,0,0,9,22,0% +2018-09-26 07:00:00,141.2537425,335.5611257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465342887,5.856646485,-0.062108141,0.062108141,1,0.540774807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716322753,135.7517087,0.716322753,44.2482913,0,0.980199062,0,0,0,9,23,0% +2018-09-27 08:00:00,143.8072049,359.9826203,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509909214,6.282881975,0.25004629,-0.25004629,1,0.487393256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827382731,145.8308124,0.827382731,34.16918756,0,0.989568475,0,0,0,9,0,0% +2018-09-27 09:00:00,141.2910932,24.42479708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46599478,0.426293128,0.560962387,-0.560962387,1,0.434223472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88298842,152.0049831,0.88298842,27.99501689,0,0.993374116,0,0,0,9,1,0% +2018-09-27 10:00:00,134.5598665,44.53495392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348512711,0.777281578,0.916826364,-0.916826364,1,0.373367147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879359063,151.5651439,0.879359063,28.43485608,0,0.993140405,0,0,0,9,2,0% +2018-09-27 11:00:00,125.1958728,59.87083693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185080191,1.04494323,1.395708939,-1.395708939,1,0.291473404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816751842,144.7609501,0.816751842,35.23904986,0,0.988781895,0,0,0,9,3,0% +2018-09-27 12:00:00,114.3962051,71.90178519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99659043,1.25492289,2.203661451,-2.203661451,1,0.153305387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699444447,134.3824489,0.699444447,45.6175511,0,0.978514694,0,0,0,9,4,0% +2018-09-27 13:00:00,102.8743119,82.05625044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795495459,1.432151742,4.278737762,-4.278737762,1,0,#DIV/0!,0,0,0.167744134,1,0.229592711,0,0.934817463,0.973579426,0.724496596,1,0,0,0.026583989,0.312029739,0.927379003,0.651875599,0.961238037,0.922476074,0,0,0,0,0,0,-0.53544367,122.374005,0.53544367,57.62599499,0,0.956619496,0,0,0,9,5,0% +2018-09-27 14:00:00,91.06929335,91.39114752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589459016,1.595076431,49.88584696,-49.88584696,1,0,#DIV/0!,0,0,0.888899117,1,0.020043081,0,0.959422434,0.998184398,0.724496596,1,0,0,0.106819402,0.312029739,0.742080345,0.466576941,0.961238037,0.922476074,0,0,0,0,0,0,-0.335939838,109.6296991,0.335939838,70.37030089,0,0.901163826,0,0,0,9,6,0% +2018-09-27 15:00:00,79.22647352,100.7486982,116.0371913,401.6850991,40.95122857,40.5911353,0,40.5911353,39.71639794,0.874737362,74.8011467,45.4317556,29.3693911,1.234830635,28.13456047,1.382762818,1.758396501,-4.516563971,4.516563971,0.697468382,0.697468382,0.352914683,0.70349548,22.6268329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17691238,0.894630592,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.509680081,21.74977244,38.68659246,22.64440303,0,45.4317556,-0.113102915,96.49421615,0.113102915,83.50578385,0,0.607924745,38.68659246,50.26349145,71.58304235,9,7,85% +2018-09-27 16:00:00,67.8926737,110.9541223,321.1769193,668.2746832,69.6765983,146.401612,76.4048529,69.99675907,67.57559178,2.421167284,79.97406907,0,79.97406907,2.101006518,77.87306255,1.184950694,1.936514753,-1.859236624,1.859236624,0.848101878,0.848101878,0.216941486,2.133181256,68.61044196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95622918,1.52217207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.545482559,65.95096654,66.50171174,67.47313861,76.4048529,0,0.114331509,83.43493098,-0.114331509,96.56506902,0.612675237,0,113.3130731,67.47313861,157.4728929,9,8,39% +2018-09-27 17:00:00,57.36102674,122.9915961,507.7670165,781.883811,86.06290396,348.0183462,260.7227941,87.29555212,83.46778987,3.827762252,125.709106,0,125.709106,2.595114093,123.1139919,1.001138779,2.146608305,-0.939806046,0.939806046,0.690869989,0.690869989,0.1694929,2.845042976,91.50636189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.23241448,1.880151326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061223951,87.95939566,82.29363843,89.83954699,260.7227941,0,0.333454652,70.5214065,-0.333454652,109.4785935,0.900054574,0,316.9583816,89.83954699,375.7565683,9,9,19% +2018-09-27 18:00:00,48.36229773,138.0872679,652.9753396,837.4863792,96.53419603,541.5389928,442.9932551,98.54573777,93.62333384,4.922403928,161.2322931,0,161.2322931,2.910862183,158.321431,0.844081329,2.41007748,-0.419781771,0.419781771,0.6019406,0.6019406,0.14783743,3.252668789,104.6170092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.99430963,2.108909743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.356547465,100.5618486,92.35085709,102.6707583,442.9932551,0,0.528955773,58.06507227,-0.528955773,121.9349277,0.955474139,0,515.6194559,102.6707583,582.8154138,9,10,13% +2018-09-27 19:00:00,42.0170669,157.315951,744.619195,864.1839445,102.5776429,699.1550247,594.0572222,105.0978025,99.48454846,5.61325402,183.6346391,0,183.6346391,3.093094403,180.5415447,0.733336159,2.745681311,-0.042189709,0.042189709,0.537368555,0.537368555,0.137758526,3.374126884,108.5235191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.62833206,2.240936366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444543442,104.3169344,98.0728755,106.5578708,594.0572222,0,0.687419879,46.57378467,-0.687419879,133.4262153,0.977264251,0,678.6237616,106.5578708,748.3637569,9,11,10% +2018-09-27 20:00:00,39.68788919,180.0504495,775.7086491,872.1544027,104.5556977,803.2378566,695.9872796,107.2505771,101.4029576,5.847619457,191.2322829,0,191.2322829,3.152740054,188.0795428,0.69268434,3.142473163,0.284515014,-0.284515014,0.481498757,0.481498757,0.13478733,3.224296408,103.7044559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.47237989,2.284149437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335991771,99.68466761,99.80837166,101.9688171,695.9872796,0,0.798009249,37.05958209,-0.798009249,142.9404179,0.987344085,0,786.9872951,101.9688171,853.7238465,9,12,8% +2018-09-27 21:00:00,42.06757913,202.7609062,743.9291801,864.0013762,102.5333661,842.1886188,737.1389596,105.0496592,99.44160684,5.608052397,183.4660019,0,183.4660019,3.091759297,180.3742426,0.734217764,3.538845407,0.612772346,-0.612772346,0.425363447,0.425363447,0.137826784,2.829619973,91.0103051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58705494,2.239969086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050050038,87.48256701,97.63710498,89.72253609,737.1389596,0,0.853168733,31.44199064,-0.853168733,148.5580094,0.991394946,0,828.4329438,89.72253609,887.1545492,9,13,7% +2018-09-27 22:00:00,48.45132338,221.9401499,651.6214596,837.0511374,96.44218888,809.2158578,710.769559,98.44629886,93.53410105,4.912197808,160.9012549,0,160.9012549,2.908087828,157.9931671,0.84563512,3.873586358,0.995729998,-0.995729998,0.359873831,0.359873831,0.148003396,2.233157226,71.8260128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90853567,2.106899732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.617914808,69.04189554,91.52645048,71.14879527,710.769559,0,0.849135169,31.88227018,-0.849135169,148.1177298,0.99111656,0,795.9819305,71.14879527,842.547394,9,14,6% +2018-09-27 23:00:00,57.47644663,236.9892189,505.8050455,780.9850297,85.91135928,701.1443108,614.0105239,87.13378691,83.32081482,3.812972086,125.2288337,0,125.2288337,2.590544462,122.6382893,1.003153236,4.136242162,1.528001661,-1.528001661,0.268850016,0.268850016,0.169850736,1.498636742,48.20130914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09113647,1.876840644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085757218,46.33293177,81.17689369,48.20977242,614.0105239,0,0.78620012,38.1681887,-0.78620012,141.8318113,0.986402961,0,686.8386923,48.20977242,718.3910241,9,15,5% +2018-09-27 00:00:00,68.02747463,248.9896348,318.7152821,666.2659586,69.42391542,515.2817488,445.5486102,69.73313864,67.33052822,2.402610423,79.36959731,0,79.36959731,2.093387197,77.27621011,1.187303414,4.345688931,2.478122665,-2.478122665,0.106369755,0.106369755,0.217824244,0.723243611,23.26200065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72066477,1.516651898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523987534,22.36031984,65.2446523,23.87697174,445.5486102,0,0.66872486,48.03127495,-0.66872486,131.968725,0.975230834,0,499.7573951,23.87697174,515.3843955,9,16,3% +2018-09-27 01:00:00,79.37754897,259.1646565,113.4510473,396.2100464,40.41507631,240.1723899,200.1207353,40.05165456,39.19641265,0.855241916,28.72618356,0,28.72618356,1.218663667,27.5075199,1.385399582,4.523276561,5.263833705,-5.263833705,0,0,0.356233612,0.304665917,9.799103162,0.270080926,1,0.187738403,0,0.940527211,0.979289174,0.724496596,1,37.97428053,0.882917678,0.040962699,0.312029739,0.890412371,0.614908967,0.961238037,0.922476074,0.210011451,9.419270686,38.18429198,10.30218836,146.0719419,0,0.505087484,59.66284011,-0.505087484,120.3371599,0.951007248,0,177.0997674,10.30218836,183.8423437,9,17,4% +2018-09-27 02:00:00,91.23945077,268.4947184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592428824,4.686116861,-43.83243274,43.83243274,1,0,#DIV/0!,0,0,1,0.857670314,0,0.0228102,0.961238037,1,0.661847393,0.937350797,0,0,0.115824807,0.240897175,0.724496596,0.448993192,0.97197201,0.933210047,0,0,0,0,0,0,0.303953592,72.30477942,-0.303953592,107.6952206,0.885501204,0,0,0,0,9,18,0% +2018-09-27 03:00:00,103.065948,277.8026472,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798840139,4.848570864,-3.811427535,3.811427535,1,0.818053814,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082266027,85.28117102,-0.082266027,94.71882898,0,0,0,0,0,9,19,0% +2018-09-27 04:00:00,114.6156893,287.9307657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000421153,5.02533988,-1.721542788,1.721542788,1,0.824554845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146156254,98.40424103,0.146156254,81.59575897,0,0.707900373,0,0,0,9,20,0% +2018-09-27 05:00:00,125.4526933,299.9421177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189562553,5.23497752,-0.903817038,0.903817038,1,0.684715506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365749294,111.4537028,0.365749294,68.5462972,0,0.913294336,0,0,0,9,21,0% +2018-09-27 06:00:00,134.8651939,315.287163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353841679,5.502799084,-0.420042538,0.420042538,1,0.601985194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561552034,124.1631994,0.561552034,55.83680064,0,0.960961056,0,0,0,9,22,0% +2018-09-27 07:00:00,141.6490479,335.4853534,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472242267,5.85532401,-0.062278258,0.062278258,1,0.540803899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720226034,136.0731454,0.720226034,43.92685462,0,0.98057735,0,0,0,9,23,0% +2018-09-28 08:00:00,144.1961157,0.127288371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516696988,0.002221601,0.248213202,-0.248213202,1,0.487706732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830964435,146.1979367,0.830964435,33.80206334,0,0.989828953,0,0,0,9,0,0% +2018-09-28 09:00:00,141.6305915,24.75842864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.471920144,0.432116097,0.557466138,-0.557466138,1,0.434821365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886228348,152.4030633,0.886228348,27.59693674,0,0.993581132,0,0,0,9,1,0% +2018-09-28 10:00:00,134.8360688,44.93821658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353333352,0.784319839,0.911049962,-0.911049962,1,0.37435497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882260545,151.9162656,0.882260545,28.08373442,0,0.993327399,0,0,0,9,2,0% +2018-09-28 11:00:00,125.4214139,60.27275335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189016624,1.051957995,1.385809446,-1.385809446,1,0.293166317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819341503,145.0189299,0.819341503,34.98107013,0,0.988975385,0,0,0,9,3,0% +2018-09-28 12:00:00,114.5890942,72.28438528,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999956981,1.261600521,2.183551637,-2.183551637,1,0.156744368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701770355,134.569213,0.701770355,45.43078701,0,0.978751621,0,0,0,9,4,0% +2018-09-28 13:00:00,103.0501451,82.42265874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798564327,1.438546773,4.213237583,-4.213237583,1,0,#DIV/0!,0,0,0.159912624,1,0.233035122,0,0.934330887,0.97309285,0.724496596,1,0,0,0.0254301,0.312029739,0.93041614,0.654912736,0.961238037,0.922476074,0,0,0,0,0,0,-0.537572022,122.5185083,0.537572022,57.48149171,0,0.956989207,0,0,0,9,5,0% +2018-09-28 14:00:00,91.24112839,91.75021628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592458104,1.601343364,42.87103871,-42.87103871,1,0,#DIV/0!,0,0,0.871815015,1,0.023321541,0,0.959116245,0.997878208,0.724496596,1,0,0,0.105373808,0.312029739,0.744963817,0.469460413,0.961238037,0.922476074,0,0,0,0,0,0,-0.33795039,109.7520499,0.33795039,70.24795014,0,0.90204929,0,0,0,9,6,0% +2018-09-28 15:00:00,79.4050459,101.1098608,113.1712201,396.7523693,40.22243094,39.86270871,0,39.86270871,39.00957624,0.853132461,74.30344923,45.65092196,28.65252726,1.212854698,27.43967256,1.385879494,1.764699978,-4.577176967,4.577176967,0.687102949,0.687102949,0.355412188,0.681064494,21.90537529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.49748849,0.8787091,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.493428908,21.05627994,37.9909174,21.93498904,0,45.65092196,-0.115061498,96.60717217,0.115061498,83.39282783,0,0.615449774,37.9909174,50.03083863,70.73510066,9,7,86% +2018-09-28 16:00:00,68.09296224,111.3246837,317.7875257,666.5924155,69.08073046,144.2501745,74.85686631,69.39330816,66.99769156,2.395616603,79.13430374,0,79.13430374,2.083038904,77.05126483,1.188446389,1.94298227,-1.867457897,1.867457897,0.849507798,0.849507798,0.217380246,2.113465264,67.97630788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40072951,1.509154595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.531198389,65.34141274,65.9319279,66.85056734,74.85686631,0,0.112297807,83.55220892,-0.112297807,96.44779108,0.604755329,0,111.2020167,66.85056734,154.9543761,9,8,39% +2018-09-28 17:00:00,57.59673901,123.3715425,504.0554452,781.1141744,85.47600492,345.460105,258.7617341,86.69837086,82.898588,3.79978286,124.7914954,0,124.7914954,2.577416921,122.2140784,1.005252734,2.15323962,-0.940010009,0.940010009,0.690904869,0.690904869,0.169576593,2.824455233,90.8441893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.68527599,1.867329786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308202,87.32289018,81.73158419,89.19021997,258.7617341,0,0.331272614,70.65396383,-0.331272614,109.3460362,0.899066908,0,314.3756963,89.19021997,372.7489115,9,9,19% +2018-09-28 18:00:00,48.64853726,138.4559708,648.9269708,837.0130007,95.93241657,538.6622702,440.7306843,97.93158587,93.03970025,4.891885614,160.2325734,0,160.2325734,2.892716312,157.3398571,0.849077151,2.416512559,-0.417236906,0.417236906,0.601505403,0.601505403,0.147832377,3.230678582,103.9097286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.43329882,2.095763121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.340615635,99.8819835,91.77391446,101.9777466,440.7306843,0,0.526551779,58.22723291,-0.526551779,121.7727671,0.955042577,0,512.6904829,101.9777466,579.4328786,9,10,13% +2018-09-28 19:00:00,42.36198733,157.6108338,740.2117207,863.7897955,101.9552455,695.927405,591.4664578,104.4609472,98.88091863,5.580028617,182.5472284,0,182.5472284,3.074326825,179.4729015,0.739356157,2.750827986,-0.038014533,0.038014533,0.536654558,0.536654558,0.137737951,3.350666619,107.7689563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.04810011,2.22733932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42754656,103.59162,97.47564667,105.8189593,591.4664578,0,0.68473425,46.785289,-0.68473425,133.214711,0.97697897,0,675.3259376,105.8189593,744.5823301,9,11,10% +2018-09-28 20:00:00,40.07670795,180.1808276,770.9382386,871.7221123,103.911133,799.6098118,693.0203248,106.5894871,100.777829,5.811658088,190.0562056,0,190.0562056,3.133304052,186.9229016,0.699470507,3.144748691,0.290264013,-0.290264013,0.48051562,0.48051562,0.134785289,3.199518118,102.9075009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87148248,2.270068119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318039985,98.91860417,99.18952246,101.1886723,693.0203248,0,0.795001429,37.3446094,-0.795001429,142.6553906,0.987107031,0,783.2747578,101.1886723,849.5007201,9,12,8% +2018-09-28 21:00:00,42.46337403,202.703605,738.8169624,863.4179955,101.8656907,838.1137691,733.7501905,104.3635786,98.79406424,5.569514341,182.2063527,0,182.2063527,3.071626418,179.1347263,0.741125688,3.537845312,0.620664117,-0.620664117,0.424013874,0.424013874,0.137876762,2.803854904,90.1816119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.96461236,2.225382883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031383333,86.68599558,96.99599569,88.91137846,733.7501905,0,0.849820359,31.80786404,-0.849820359,148.192136,0.991164036,0,824.2627959,88.91137846,882.4535149,9,13,7% +2018-09-28 22:00:00,48.82587026,221.7623582,646.2167202,836.1342282,95.74803395,804.6432946,706.9109626,97.73233206,92.86087746,4.8714546,159.5698819,0,159.5698819,2.887156496,156.6827254,0.852172196,3.870483307,1.007267282,-1.007267282,0.35790084,0.35790084,0.148167064,2.206957882,70.98335185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.26140755,2.091735053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598933473,68.23189778,90.86034102,70.32363283,706.9109626,0,0.84545153,32.2796541,-0.84545153,147.7203459,0.990860004,0,791.3101403,70.32363283,837.3355515,9,14,6% +2018-09-28 23:00:00,57.82328863,236.7593587,500.1929664,779.3255158,85.17696824,695.9756336,609.5963993,86.37923424,82.60856838,3.770665863,123.8459756,0,123.8459756,2.568399862,121.2775757,1.009206771,4.132230345,1.547153733,-1.547153733,0.265574819,0.265574819,0.170288217,1.472968287,47.3757234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.40649809,1.860796957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06716051,45.53934736,80.4736586,47.40014431,609.5963993,0,0.782210241,38.5366092,-0.782210241,141.4633908,0.986078566,0,681.5836021,47.40014431,712.6060486,9,15,5% +2018-09-28 00:00:00,68.35157205,248.7422473,313.0601305,662.6748759,68.59254759,509.2193664,440.3351577,68.88420871,66.5242292,2.359979501,77.97337152,0,77.97337152,2.06831839,75.90505313,1.192959981,4.341371204,2.518880828,-2.518880828,0.099399699,0.099399699,0.219103427,0.700263293,22.52287463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.94561948,1.498489632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.507338372,21.64984379,64.45295785,23.14833343,440.3351577,0,0.664481443,48.35744461,-0.664481443,131.6425554,0.974753354,0,493.6711296,23.14833343,508.8212509,9,16,3% +2018-09-28 01:00:00,79.68569749,258.9119255,108.3924087,386.3727757,39.21320824,232.2973497,193.4494566,38.84789309,38.03078533,0.817107762,27.46341731,0,27.46341731,1.18242291,26.2809944,1.390777788,4.518865573,5.428511448,-5.428511448,0,0,0.361770799,0.295605727,9.507696333,0.284782686,1,0.182170279,0,0.94125778,0.980019743,0.724496596,1,36.85110867,0.856661373,0.042926984,0.312029739,0.885488977,0.609985573,0.961238037,0.922476074,0.20350804,9.139159358,37.05461671,9.995820731,138.3584008,0,0.500680868,59.95494392,-0.500680868,120.0450561,0.950135988,0,168.5139126,9.995820731,175.0559774,9,17,4% +2018-09-28 02:00:00,91.54423365,268.2390594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597748288,4.681654769,-35.23041992,35.23041992,1,0,#DIV/0!,0,0,1,0.819979092,0,0.028376942,0.961238037,1,0.647177166,0.92268057,0,0,0.115824807,0.224268414,0.724496596,0.448993192,0.974326964,0.935565001,0,0,0,0,0,0,0.299395209,72.57871837,-0.299395209,107.4212816,0.88299666,0,0,0,0,9,18,0% +2018-09-28 03:00:00,103.3734599,277.5435258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804207235,4.844048343,-3.729470427,3.729470427,1,0.832069305,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077683825,85.54455574,-0.077683825,94.45544426,0,0,0,0,0,9,19,0% +2018-09-28 04:00:00,114.9349079,287.6694918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005992569,5.020779789,-1.702529544,1.702529544,1,0.821303389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150672822,98.66591959,0.150672822,81.33408041,0,0.718155151,0,0,0,9,20,0% +2018-09-28 05:00:00,125.7931833,299.6893279,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195505226,5.230565505,-0.89721807,0.89721807,1,0.683587016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37011534,111.7227308,0.37011534,68.27726924,0,0.914906977,0,0,0,9,21,0% +2018-09-28 06:00:00,135.2347284,315.0792188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360291274,5.499169773,-0.417926357,0.417926357,1,0.601623306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565693075,124.4504335,0.565693075,55.54956646,0,0.961612848,0,0,0,9,22,0% +2018-09-28 07:00:00,142.0437183,335.406799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.479130566,5.853952976,-0.062467511,0.062467511,1,0.540836263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724083114,136.3926271,0.724083114,43.60737293,0,0.980947154,0,0,0,9,23,0% +2018-09-29 08:00:00,144.5845906,0.272910222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523477154,0.004763182,0.246379448,-0.246379448,1,0.488020323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834498174,146.5636208,0.834498174,33.43637921,0,0.990083751,0,0,0,9,0,0% +2018-09-29 09:00:00,141.9692284,25.09534411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.477830471,0.437996382,0.553983766,-0.553983766,1,0.435416886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889421642,152.8006604,0.889421642,27.19933963,0,0.993783693,0,0,0,9,1,0% +2018-09-29 10:00:00,135.1112036,45.34391029,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813536,0.79140053,0.905307151,-0.905307151,1,0.375337049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88511973,152.2662589,0.88511973,27.7337411,0,0.993510467,0,0,0,9,2,0% +2018-09-29 11:00:00,125.6461421,60.67574904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192938871,1.058991597,1.375987312,-1.375987312,1,0.294846001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821895906,145.275034,0.821895906,34.72496602,0,0.989165046,0,0,0,9,3,0% +2018-09-29 12:00:00,114.7816284,72.66716828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003317336,1.268281345,2.163675579,-2.163675579,1,0.160143374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704070264,134.7544809,0.704070264,45.24551907,0,0.978984361,0,0,0,9,4,0% +2018-09-29 13:00:00,103.2261193,82.78868466,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801635656,1.444935131,4.149247895,-4.149247895,1,0,#DIV/0!,0,0,0.152118066,1,0.236497423,0,0.933838926,0.972600889,0.724496596,1,0,0,0.024273718,0.312029739,0.933470338,0.657966934,0.961238037,0.922476074,0,0,0,0,0,0,-0.539685211,122.6622123,0.539685211,57.33778767,0,0.9573534,0,0,0,9,5,0% +2018-09-29 14:00:00,91.41358122,92.10845263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595467973,1.607595767,37.5445203,-37.5445203,1,0,#DIV/0!,0,0,0.854869226,1,0.026628749,0,0.958804755,0.997566719,0.724496596,1,0,0,0.103923116,0.312029739,0.747874359,0.472370955,0.961238037,0.922476074,0,0,0,0,0,0,-0.339957447,109.8742815,0.339957447,70.12571846,0,0.902922769,0,0,0,9,6,0% +2018-09-29 15:00:00,79.5846238,101.4696871,110.2975141,391.6895799,39.4866595,39.12746028,0,39.12746028,38.29599103,0.831469251,73.7720265,45.83844875,27.93357775,1.190668474,26.74290928,1.389013719,1.770980131,-4.640162643,4.640162643,0.676331764,0.676331764,0.358001355,0.658694457,21.18587798,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.81156324,0.862635256,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.477221892,20.36467176,37.28878513,21.22730701,0,45.83844875,-0.117027491,96.72058148,0.117027491,83.27941852,0,0.622749962,37.28878513,49.77319921,69.86434855,9,7,87% +2018-09-29 16:00:00,68.29465736,111.6931868,314.3687801,664.8601814,68.48128262,142.0837847,73.29762073,68.78616393,66.41631928,2.369844655,78.28731372,0,78.28731372,2.06496334,76.22235038,1.191966633,1.949413862,-1.875908478,1.875908478,0.850952933,0.850952933,0.217837416,2.093570442,67.336422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.84189236,1.49605891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.516784658,64.72633009,65.35867702,66.222389,73.29762073,0,0.110245165,83.67055153,-0.110245165,96.32944847,0.596465373,0,109.0781697,66.222389,152.4193989,9,8,40% +2018-09-29 17:00:00,57.83406558,123.748315,500.3063078,780.3177657,84.88614154,342.871105,256.7730736,86.09803146,82.32651118,3.771520279,123.864687,0,123.864687,2.559630364,121.3050567,1.009394864,2.15981554,-0.940260767,0.940260767,0.690947751,0.690947751,0.169668342,2.803688334,90.17625443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13537399,1.854443485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031262654,86.68084578,81.16663664,88.53528926,256.7730736,0,0.329062191,70.78813581,-0.329062191,109.2118642,0.898053039,0,311.7624756,88.53528926,369.7070517,9,9,19% +2018-09-29 18:00:00,48.93624727,138.8200057,644.837102,836.5209691,95.32782894,535.7452459,438.4308482,97.31439763,92.45334317,4.861054456,159.2227068,0,159.2227068,2.874485765,156.3482211,0.854098638,2.422866167,-0.414694142,0.414694142,0.601070564,0.601070564,0.147832419,3.208515991,103.1969035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86967009,2.082555151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.324558914,99.19678892,91.19422901,101.2793441,438.4308482,0,0.524112203,58.39150357,-0.524112203,121.6084964,0.95460058,0,509.7205712,101.2793441,576.0058763,9,10,13% +2018-09-29 19:00:00,42.70768428,157.900181,735.7624098,863.3802645,101.3301841,692.6539134,588.8327204,103.8211931,98.27470522,5.546487832,181.4495935,0,181.4495935,3.05547892,178.3941146,0.745389707,2.755878048,-0.033820028,0.033820028,0.535937255,0.535937255,0.137721339,3.327052947,107.0094594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46538472,2.213684077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410438535,102.8615627,96.87582325,105.0752468,588.8327204,0,0.682008548,46.99920187,-0.682008548,133.0007981,0.976687136,0,671.9811664,105.0752468,740.7508139,9,11,10% +2018-09-29 20:00:00,40.46535616,180.3074393,766.1290926,871.2753088,103.2641318,795.9340111,690.0082692,105.9257419,100.1503372,5.775404714,188.870663,0,188.870663,3.113794577,185.7568684,0.706253698,3.146958482,0.296052308,-0.296052308,0.479525763,0.479525763,0.134786856,3.174617817,102.1066217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.2683135,2.255933571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.299999802,98.14876857,98.56831331,100.4047021,690.0082692,0,0.791952053,37.63169013,-0.791952053,142.3683099,0.986864865,0,779.5132305,100.4047021,845.2261,9,12,8% +2018-09-29 21:00:00,42.8585645,202.645767,733.672315,862.8188618,101.195895,833.9927443,730.3175471,103.6751972,98.14446537,5.530731815,180.9387765,0,180.9387765,3.051429607,177.8873469,0.748023063,3.53683585,0.628625768,-0.628625768,0.422652352,0.422652352,0.137930644,2.778010736,89.35037462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.34019322,2.210750363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012659322,85.88697869,96.35285254,88.09772906,730.3175471,0,0.846432061,32.17430451,-0.846432061,147.8256955,0.990928514,0,820.0453339,88.09772906,877.7035356,9,13,7% +2018-09-29 22:00:00,49.19983844,221.5855697,640.7887217,835.1968585,95.05210324,800.0289021,703.0124344,97.01646767,92.18593162,4.830536054,158.232816,0,158.232816,2.866171617,155.3666444,0.858699172,3.867397767,1.018938063,-1.018938063,0.355905018,0.355905018,0.148336105,2.180733712,70.13989241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.61262393,2.07653158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.579934151,67.42113249,90.19255809,69.49766407,703.0124344,0,0.841732613,32.6764659,-0.841732613,147.3235341,0.990598714,0,786.5957713,69.49766407,832.0806025,9,14,6% +2018-09-29 23:00:00,58.1695686,236.5305138,494.5694587,777.6317665,84.44092594,690.7701605,605.1471666,85.62299395,81.89472047,3.728273486,122.4602967,0,122.4602967,2.546205471,119.9140912,1.015250497,4.128236247,1.566613913,-1.566613913,0.262246932,0.262246932,0.170736232,1.447346008,46.55162284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72032033,1.844717196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048597256,44.74719055,79.76891758,46.59190775,605.1471666,0,0.778192446,38.90462589,-0.778192446,141.0953741,0.985748541,0,676.2918541,46.59190775,706.7853259,9,15,5% +2018-09-29 00:00:00,68.67498217,248.4954166,307.4096497,659.0022711,67.75819338,503.1187614,435.0863438,68.03241764,65.71503385,2.31738379,76.57818816,0,76.57818816,2.043159532,74.53502863,1.198604553,4.337063196,2.560678792,-2.560678792,0.092251826,0.092251826,0.220416612,0.677451469,21.78916798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.16779013,1.480262125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.490811283,20.94457705,63.65860141,22.42483918,435.0863438,0,0.660219794,48.6833623,-0.660219794,131.3166377,0.974267645,0,487.5491488,22.42483918,502.2257576,9,16,3% +2018-09-29 01:00:00,79.99285068,258.6592308,103.385929,376.281805,37.99904099,224.3695068,186.7369103,37.6325965,36.8532297,0.779366803,26.21292674,0,26.21292674,1.145811287,25.06711545,1.396138622,4.514455218,5.602548352,-5.602548352,0,0,0.367545578,0.286452822,9.213307425,0.29968973,1,0.176630141,0,0.941977839,0.980739802,0.724496596,1,35.71532136,0.830136377,0.044894076,0.312029739,0.880589114,0.60508571,0.961238037,0.922476074,0.196979641,8.856181542,35.912301,9.68631792,130.773776,0,0.496268775,60.24655038,-0.496268775,119.7534496,0.949248144,0,160.0490652,9.68631792,166.3885666,9,17,4% +2018-09-29 02:00:00,91.84790026,267.9829022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603048271,4.677183982,-29.48097894,29.48097894,1,0,#DIV/0!,0,0,1,0.781262892,0,0.033907176,0.961238037,1,0.632844576,0.908347981,0,0,0.115824807,0.208034967,0.724496596,0.448993192,0.976568177,0.937806214,0,0,0,0,0,0,0.294841173,72.85198634,-0.294841173,107.1480137,0.880417172,0,0,0,0,9,18,0% +2018-09-29 03:00:00,103.6796203,277.2832951,0,0,0,0,0,0,0,0,0,0,0,0,0,1.809550742,4.83950646,-3.65144676,3.65144676,1,0.845412138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073117758,85.80691922,-0.073117758,94.19308078,0,0,0,0,0,9,19,0% +2018-09-29 04:00:00,115.2525973,287.4063254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011537295,5.016186668,-1.684059954,1.684059954,1,0.818144903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155162311,98.92620989,0.155162311,81.07379011,0,0.727756798,0,0,0,9,20,0% +2018-09-29 05:00:00,126.1321136,299.4336393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201420675,5.226102898,-0.890773567,0.890773567,1,0.682484941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374444959,111.990012,0.374444959,68.00998795,0,0.916469026,0,0,0,9,21,0% +2018-09-29 06:00:00,135.6029588,314.8674859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366718107,5.495474337,-0.415866974,0.415866974,1,0.601271131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56979058,124.7356236,0.56979058,55.26437644,0,0.962248462,0,0,0,9,22,0% +2018-09-29 07:00:00,142.4376303,335.3252688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486005627,5.852530006,-0.062677421,0.062677421,1,0.54087216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727892278,136.7099861,0.727892278,43.29001394,0,0.981308517,0,0,0,9,23,0% +2018-09-30 08:00:00,144.9725415,0.419338428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530248175,0.007318836,0.244543535,-0.244543535,1,0.488334282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837982647,146.9277012,0.837982647,33.07229878,0,0.990332893,0,0,0,9,0,0% +2018-09-30 09:00:00,142.3069441,25.43541824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.483724723,0.443931795,0.550513715,-0.550513715,1,0.4360103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89256744,153.1976647,0.89256744,26.80233534,0,0.993981824,0,0,0,9,1,0% +2018-09-30 10:00:00,135.3852445,45.75188097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362918275,0.798520962,0.899596071,-0.899596071,1,0.376313701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88793619,152.6150443,0.88793619,27.3849557,0,0.993689647,0,0,0,9,2,0% +2018-09-30 11:00:00,125.8700585,61.07967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196846951,1.066041348,1.366239667,-1.366239667,1,0.296512946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824415025,145.5292286,0.824415025,34.47077138,0,0.989350936,0,0,0,9,3,0% +2018-09-30 12:00:00,114.9738243,73.04999296,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006671788,1.274962896,2.144025959,-2.144025959,1,0.163503657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706344487,134.9382657,0.706344487,45.06173428,0,0.97921301,0,0,0,9,4,0% +2018-09-30 13:00:00,103.4022571,83.15419661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804709841,1.451314518,4.086707294,-4.086707294,1,0,#DIV/0!,0,0,0.144358977,1,0.239980253,0,0.93334145,0.972103413,0.724496596,1,0,0,0.023114655,0.312029739,0.93654216,0.661038756,0.961238037,0.922476074,0,0,0,0,0,0,-0.541783807,122.805153,0.541783807,57.19484696,0,0.957712266,0,0,0,9,5,0% +2018-09-30 14:00:00,91.5866731,92.46572803,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598488997,1.613831399,33.36160937,-33.36160937,1,0,#DIV/0!,0,0,0.83805714,1,0.029965601,0,0.958487816,0.997249779,0.724496596,1,0,0,0.102467051,0.312029739,0.750812704,0.4753093,0.961238037,0.922476074,0,0,0,0,0,0,-0.341961731,109.9964385,0.341961731,70.00356152,0,0.903784808,0,0,0,9,6,0% +2018-09-30 15:00:00,79.7652179,101.8280455,107.416594,386.4926806,38.74373366,38.3852188,0,38.3852188,37.57546714,0.809751658,73.20591552,45.99325217,27.21266335,1.168266519,26.04439683,1.392165681,1.777234666,-4.705678556,4.705678556,0.665127883,0.665127883,0.360686671,0.636393377,20.46859859,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.11896827,0.846405116,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.461064835,19.67519553,36.5800331,20.52160064,0,45.99325217,-0.119001612,96.83448631,0.119001612,83.16551369,0,0.629837626,36.5800331,49.4898814,68.97017068,9,7,89% +2018-09-30 16:00:00,68.49775664,112.0594936,310.9207566,663.076598,67.87821471,139.902209,71.72692095,68.17528809,65.83143609,2.343851997,77.43311578,0,77.43311578,2.046778617,75.38633716,1.195511384,1.955807122,-1.884601787,1.884601787,0.852439576,0.852439576,0.218313552,2.073498083,66.69082596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.27968039,1.482884141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502242303,64.10575862,64.78192269,65.58864276,71.72692095,0,0.108172904,83.78999784,-0.108172904,96.21000216,0.587777037,0,106.9413598,65.58864276,149.8678147,9,8,40% +2018-09-30 17:00:00,58.07297982,124.1217736,496.5199446,779.4941281,84.29332732,340.2510686,254.7565191,85.49454956,81.75157249,3.742977073,122.9287639,0,122.9287639,2.541754828,120.3870091,1.013564704,2.166333624,-0.940562969,0.940562969,0.69099943,0.69099943,0.169768261,2.782745948,89.50267531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58272105,1.84149272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016089967,86.03337591,80.59881102,87.87486863,254.7565191,0,0.326822884,70.92394949,-0.326822884,109.0760505,0.897011937,0,309.1184496,87.87486863,366.6307937,9,9,19% +2018-09-30 18:00:00,49.22536915,139.179255,640.7064671,836.0101475,94.7204779,532.7879041,436.0936821,96.69422199,91.86430601,4.829915985,158.2028727,0,158.2028727,2.85617189,155.3467008,0.859144767,2.429136251,-0.412156272,0.412156272,0.600636563,0.600636563,0.147837556,3.186186793,102.4787197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30346516,2.069286811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308381486,98.50644337,90.61184665,100.5757302,436.0936821,0,0.521636829,58.55788909,-0.521636829,121.4421109,0.954147872,0,506.7097055,100.5757302,572.5345094,9,10,13% +2018-09-30 19:00:00,43.05407109,158.1839289,731.2724443,862.9553703,100.7025314,689.334939,586.1563199,103.1786191,97.66597855,5.512640576,180.3420234,0,180.3420234,3.036552875,177.3054705,0.751435297,2.760830382,-0.029608405,0.029608405,0.535217025,0.535217025,0.137708637,3.303293609,106.2452775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.88025349,2.199972221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393224975,102.1270019,96.27347847,104.3269742,586.1563199,0,0.679242913,47.21549008,-0.679242913,132.7845099,0.976388632,0,668.5898458,104.3269742,736.8697639,9,11,10% +2018-09-30 20:00:00,40.85373329,180.4302291,761.2828563,870.8141166,102.614794,792.2113327,686.9518816,105.2594511,99.52057937,5.738871738,187.676057,0,187.676057,3.094214648,184.5818423,0.713032158,3.149101569,0.301877861,-0.301877861,0.478529535,0.478529535,0.134791941,3.149605012,101.3021239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.66296634,2.241747979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281878109,97.37545468,97.94484444,99.61720266,686.9518816,0,0.788861674,37.92073997,-0.788861674,142.07926,0.986617532,0,775.7036142,99.61720266,840.901081,9,12,8% +2018-09-30 21:00:00,43.25303419,202.5872926,728.4973268,862.2041944,100.5241074,829.8269549,726.8422996,102.9846552,97.49293467,5.491720568,179.6637839,0,179.6637839,3.031172733,176.6326111,0.754907858,3.535815279,0.636655292,-0.636655292,0.421279222,0.421279222,0.1379883,2.752098431,88.51694583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.71391713,2.196074326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993885945,85.08585524,95.70780308,87.28192956,726.8422996,0,0.843004829,32.54120422,-0.843004829,147.4587958,0.990688359,0,815.7820079,87.28192956,872.9062852,9,13,7% +2018-09-30 22:00:00,49.57309465,221.4096936,635.3399466,834.2393436,94.35455436,795.3746283,699.075751,96.2988773,91.50941641,4.789460886,156.8906637,0,156.8906637,2.845137945,154.0455258,0.865213722,3.864328149,1.0307406,-1.0307406,0.353886666,0.353886666,0.148510345,2.154496735,69.29602103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96233179,2.061292756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.56092555,66.60997122,89.52325734,68.67126398,699.075751,0,0.837979839,33.07259355,-0.837979839,146.9274064,0.990332693,0,781.8408287,68.67126398,826.7847976,9,14,6% +2018-09-30 23:00:00,58.51514552,236.3026293,488.9373268,775.9041372,83.70342098,685.5303342,600.6650641,84.8652701,81.179454,3.685816097,121.0724826,0,121.0724826,2.523966975,118.5485156,1.021281952,4.124258913,1.586382932,-1.586382932,0.258866231,0.258866231,0.171194581,1.421782609,45.72941607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.032779,1.828605482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.030076661,43.95685413,79.06285566,45.78545961,600.6650641,0,0.774148552,39.27209901,-0.774148552,140.727901,0.985412913,0,670.9659661,45.78545961,700.9316337,9,15,4% +2018-09-30 00:00:00,68.99756197,248.2491156,301.7669538,655.2479544,66.9210582,496.9826867,429.8046985,67.17798815,64.90314138,2.274846765,75.18480851,0,75.18480851,2.017916817,73.16689169,1.204234632,4.332764432,2.603541663,-2.603541663,0.084921843,0.084921843,0.221764038,0.654822081,21.06132906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.38736821,1.461973865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474416368,20.2449506,62.86178458,21.70692446,429.8046985,0,0.655942068,49.00887878,-0.655942068,130.9911212,0.973773756,0,481.3943203,21.70692446,495.6010682,9,16,3% +2018-09-30 01:00:00,80.29885801,258.4065605,98.436811,365.938197,36.77292181,216.3942077,179.9880669,36.4061408,35.66408254,0.742058261,24.97598376,0,24.97598376,1.10883927,23.86714449,1.401479458,4.510045289,5.786689157,-5.786689157,0,0,0.373568805,0.277209818,8.916020634,0.31480025,1,0.171120332,0,0.942687168,0.981449131,0.724496596,1,34.56729985,0.803350277,0.046863173,0.312029739,0.875714915,0.600211511,0.961238037,0.922476074,0.190426526,8.570418171,34.75772638,9.373768447,123.3277784,0,0.491853729,60.53750519,-0.491853729,119.4624948,0.948343762,0,151.7148556,9.373768447,157.8497996,9,17,4% +2018-09-30 02:00:00,92.15030722,267.7262411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.608326268,4.672704402,-25.3684089,25.3684089,1,0,#DIV/0!,0,0,1,0.741495667,0,0.039398708,0.961238037,1,0.61885084,0.894354244,0,0,0.115824807,0.192197498,0.724496596,0.448993192,0.978699162,0.939937199,0,0,0,0,0,0,0.290294023,73.12444044,-0.290294023,106.8755596,0.877760835,0,0,0,0,9,18,0% +2018-09-30 03:00:00,103.9842837,277.0219479,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81486812,4.834945091,-3.577113987,3.577113987,1,0.858123791,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.068570398,86.06812024,-0.068570398,93.93187976,0,0,0,0,0,9,19,0% +2018-09-30 04:00:00,115.5686082,287.1412461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017052724,5.011560163,-1.666121343,1.666121343,1,0.81507722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159622229,99.18496972,0.159622229,80.81503028,0,0.73676042,0,0,0,9,20,0% +2018-09-30 05:00:00,126.4693312,299.1749961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207306232,5.221588721,-0.88448338,0.88448338,1,0.681409256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378735847,112.2554,0.378735847,67.74459995,0,0.917981865,0,0,0,9,21,0% +2018-09-30 06:00:00,135.969736,314.6518373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373119576,5.491710559,-0.41386568,0.41386568,1,0.600928889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573842529,125.018614,0.573842529,54.98138597,0,0.962868082,0,0,0,9,22,0% +2018-09-30 07:00:00,142.8306586,335.2405693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.492865266,5.85105172,-0.062909407,0.062909407,1,0.540911832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731651863,137.0250549,0.731651863,42.97494511,0,0.981661487,0,0,0,9,23,0% +2018-10-01 08:00:00,145.3598791,0.566424087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53700849,0.009885965,0.242704073,-0.242704073,1,0.488648849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841416598,147.2900125,0.841416598,32.70998745,0,0.990576404,0,0,0,10,0,0% +2018-10-01 09:00:00,142.6436779,25.77852396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.489601837,0.449920119,0.547054553,-0.547054553,1,0.436601851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895664919,153.5939646,0.895664919,26.40603538,0,0.994175552,0,0,0,10,1,0% +2018-10-01 10:00:00,135.6581637,46.16197276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.367681614,0.805678414,0.89391503,-0.89391503,1,0.377285216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890709523,152.9625411,0.890709523,27.03745891,0,0.993864977,0,0,0,10,2,0% +2018-10-01 11:00:00,126.0931626,61.48436145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200740852,1.073104546,1.356563926,-1.356563926,1,0.298167595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826898843,145.7814797,0.826898843,34.21852027,0,0.989533112,0,0,0,10,3,0% +2018-10-01 12:00:00,115.1656961,73.43271788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010020582,1.281642706,2.124596146,-2.124596146,1,0.16682635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708593328,135.1205795,0.708593328,44.87942046,0,0.979437665,0,0,0,10,4,0% +2018-10-01 13:00:00,103.5785778,83.519063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807787217,1.457682638,4.025559145,-4.025559145,1,0,#DIV/0!,0,0,0.136634101,1,0.243484173,0,0.932838337,0.9716003,0.724496596,1,0,0,0.021952752,0.312029739,0.9396321,0.664128696,0.961238037,0.922476074,0,0,0,0,0,0,-0.543868347,122.9473643,0.543868347,57.0526357,0,0.958065986,0,0,0,10,5,0% +2018-10-01 14:00:00,91.76042121,92.82191421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601521473,1.620048021,29.98927312,-29.98927312,1,0,#DIV/0!,0,0,0.821374794,1,0.033332906,0,0.958165281,0.996927244,0.724496596,1,0,0,0.101005377,0.312029739,0.753779511,0.478276106,0.961238037,0.922476074,0,0,0,0,0,0,-0.343963913,110.118562,0.343963913,69.881438,0,0.904635914,0,0,0,10,6,0% +2018-10-01 15:00:00,79.94683393,102.1848052,104.5291121,381.1577062,37.99348781,37.63582858,0,37.63582858,36.84784398,0.7879846,72.6041159,46.11417865,26.48993726,1.145643839,25.34429342,1.395335479,1.783461297,-4.773893192,4.773893192,0.653462493,0.653462493,0.363472788,0.614170521,19.75383516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.41954921,0.830015061,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.444964452,18.98813773,35.86451366,19.81815279,0,46.11417865,-0.120984511,96.94892489,0.120984511,83.05107511,0,0.636723956,35.86451366,49.18015507,68.05194154,10,7,90% +2018-10-01 16:00:00,68.70225225,112.4234676,307.4436348,661.2403119,67.27149535,137.7053026,70.14465107,67.56065154,65.24301156,2.317639984,76.5717525,0,76.5717525,2.02848379,74.54326871,1.199080505,1.962159667,-1.893551398,1.893551398,0.85397005,0.85397005,0.218809199,2.053249979,66.03957734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.71406435,1.469629601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48757262,63.47975367,64.20163697,64.94938327,70.14465107,0,0.106080422,83.91058217,-0.106080422,96.08941783,0.57865949,0,104.791505,64.94938327,147.2995774,10,8,41% +2018-10-01 17:00:00,58.31344934,124.4917821,492.6968022,778.6428368,83.69758343,337.5998178,252.7118687,84.88794909,81.17379248,3.714156611,121.9838349,0,121.9838349,2.523790952,119.4600439,1.017761689,2.172791488,-0.940921222,0.940921222,0.691060695,0.691060695,0.169876449,2.761632205,88.82358476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02733693,1.828477953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.000793132,85.38060824,80.02813006,87.2090862,252.7118687,0,0.324554284,71.06142636,-0.324554284,108.9385736,0.895942567,0,306.4434503,87.2090862,363.5200531,10,9,19% +2018-10-01 18:00:00,49.51583884,139.533607,636.5359029,835.4804261,94.11041498,529.7903355,433.7192203,96.07111525,91.27263874,4.79847651,157.1732755,0,157.1732755,2.837776242,154.3354992,0.86421442,2.435320859,-0.409626059,0.409626059,0.600203871,0.600203871,0.147847772,3.163697167,101.755376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73473208,2.055959227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292087828,97.81113788,90.02681991,99.86709711,433.7192203,0,0.519125532,58.72638786,-0.519125532,121.2736121,0.953684182,0,503.6579799,99.86709711,569.0189976,10,10,13% +2018-10-01 19:00:00,43.40105686,158.4620204,726.7431002,862.5151562,100.0723658,685.9709775,583.4376663,102.5333112,97.05481474,5.478496467,179.2248296,0,179.2248296,3.017551056,176.2072786,0.757491341,2.765683994,-0.025381872,0.025381872,0.534494245,0.534494245,0.137699781,3.27939668,105.4766701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29277958,2.186205468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375911731,101.3881873,95.66869131,103.5743928,583.4376663,0,0.676437582,47.4341136,-0.676437582,132.5658864,0.97608335,0,665.1524831,103.5743928,732.9398517,10,11,10% +2018-10-01 20:00:00,41.24173605,180.5491493,756.4012552,870.3386835,101.963225,788.4427547,683.852025,104.5907297,98.88865755,5.702072167,186.4728091,0,186.4728091,3.074567438,183.3982416,0.719804083,3.151177117,0.307738609,-0.307738609,0.477527288,0.477527288,0.134800444,3.124489454,100.4943212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05553905,2.227513642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.263681974,96.59896404,97.31922102,98.82647768,683.852025,0,0.785730932,38.21166883,-0.785730932,141.7883312,0.986364985,0,771.8469131,98.82647768,836.5268662,10,12,8% +2018-10-01 21:00:00,43.64666564,202.5280907,723.294149,861.5742373,99.85046042,825.6178992,723.3258017,102.2920975,96.83960063,5.452496816,178.3819002,0,178.3819002,3.010859791,175.3710404,0.761778023,3.53478201,0.644750621,-0.644750621,0.41989484,0.41989484,0.13804959,2.726129102,87.68168294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.0859076,2.181357669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975071255,84.28296878,95.06097886,86.46432645,723.3258017,0,0.839539729,32.90845198,-0.839539729,147.091548,0.990443557,0,811.4743588,86.46432645,868.0635312,10,13,7% +2018-10-01 22:00:00,49.94550582,221.2346456,629.872918,833.2620292,93.65554841,790.6824939,695.1027577,95.57973619,90.83148807,4.748248115,155.5440417,0,155.5440417,2.824060337,152.7199814,0.871713523,3.861272986,1.042673025,-1.042673025,0.351846101,0.351846101,0.148689594,2.128259015,68.45212578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.31068128,2.0460221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.541916412,65.798787,88.85259769,67.8448091,695.1027577,0,0.834194687,33.4679236,-0.834194687,146.5320764,0.990061953,0,777.0473918,67.8448091,821.4504625,10,14,6% +2018-10-01 23:00:00,58.85987919,236.0756559,483.2993931,774.1430283,82.96464529,680.2586537,596.1523836,84.1062701,80.46295513,3.643314972,119.6832235,0,119.6832235,2.501690163,117.1815333,1.027298689,4.120297479,1.606461307,-1.606461307,0.255432626,0.255432626,0.171663045,1.39629073,44.9095096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34405303,1.812466007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011607881,43.16872885,78.35566091,44.98119485,596.1523836,0,0.770080414,39.63888951,-0.770080414,140.3611105,0.985071716,0,665.6085122,44.98119485,695.0478046,10,15,4% +2018-10-01 00:00:00,69.31916962,248.0033214,296.1351539,651.4118144,66.08135263,490.8139428,424.4927948,66.32114792,64.08875604,2.232391878,73.79399319,0,73.79399319,1.992596596,71.8013966,1.209847745,4.328474515,2.64749495,-2.64749495,0.077405388,0.077405388,0.223145924,0.632388881,20.33980024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.60455004,1.443629451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.458163592,19.55138965,62.06271363,20.9950191,424.4927948,0,0.651650439,49.33384621,-0.651650439,130.6661538,0.973271747,0,475.2095575,20.9950191,488.9503776,10,16,3% +2018-10-01 01:00:00,80.60356968,258.153907,93.55034705,355.3441003,35.53527164,208.3772862,173.2083121,35.16897412,34.46375209,0.705222032,23.75388428,0,23.75388428,1.071519551,22.68236473,1.40679768,4.505635655,5.98175755,-5.98175755,0,0,0.379851842,0.267879888,8.615938023,0.330112109,1,0.165643179,0,0.943385563,0.982147526,0.724496596,1,33.40749782,0.776312267,0.04883345,0.312029739,0.870868508,0.595365104,0.961238037,0.922476074,0.183849212,8.281967351,33.59134703,9.058279618,116.0301508,0,0.487438266,60.82765515,-0.487438266,119.1723448,0.947422908,0,143.5209699,9.058279618,149.4494327,10,17,4% +2018-10-01 02:00:00,92.45131267,267.4690757,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613579804,4.668216017,-22.28189722,22.28189722,1,0,#DIV/0!,0,0,1,0.700651012,0,0.044849387,0.961238037,1,0.605196688,0.880700093,0,0,0.115824807,0.176755607,0.724496596,0.448993192,0.980723571,0.941961607,0,0,0,0,0,0,0.285756278,73.39593976,-0.285756278,106.6040602,0.875025716,0,0,0,0,10,18,0% +2018-10-01 03:00:00,104.2873058,276.7594827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820156855,4.830364209,-3.506249106,3.506249106,1,0.870242399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064044281,86.32801984,-0.064044281,93.67198016,0,0,0,0,0,10,19,0% +2018-10-01 04:00:00,115.8827924,286.8742402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022536273,5.00690003,-1.648701298,1.648701298,1,0.812098217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164050134,99.44205928,0.164050134,80.55794072,0,0.745215123,0,0,0,10,20,0% +2018-10-01 05:00:00,126.8046837,298.9133494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213159238,5.217022125,-0.878347208,0.878347208,1,0.680359909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38298576,112.5187505,0.38298576,67.48124946,0,0.919446843,0,0,0,10,21,0% +2018-10-01 06:00:00,136.3349098,314.4321523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379493062,5.487876331,-0.411923628,0.411923628,1,0.600596779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577846963,125.2992516,0.577846963,54.70074844,0,0.9634719,0,0,0,10,22,0% +2018-10-01 07:00:00,143.2226764,335.1525088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.499707266,5.849514774,-0.063164762,0.063164762,1,0.5409555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735360266,137.3376669,0.735360266,42.66233309,0,0.982006117,0,0,0,10,23,0% +2018-10-02 08:00:00,145.7465118,0.71401862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543756504,0.012461976,0.240859802,-0.240859802,1,0.488964238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844798823,147.6503878,0.844798823,32.34961216,0,0.990814311,0,0,0,10,0,0% +2018-10-02 09:00:00,142.979367,26.1245335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495460717,0.455959125,0.543604997,-0.543604997,1,0.43719176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898713288,153.9894467,0.898713288,26.01055326,0,0.994364904,0,0,0,10,1,0% +2018-10-02 10:00:00,135.9299315,46.57402871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372424856,0.812870147,0.88826254,-0.88826254,1,0.378251849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893439343,153.3086667,0.893439343,26.69133334,0,0.994036492,0,0,0,10,2,0% +2018-10-02 11:00:00,126.3154508,61.88966828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204620512,1.080178484,1.346957835,-1.346957835,1,0.299810334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829347337,146.031752,0.829347337,33.96824799,0,0.989711629,0,0,0,10,3,0% +2018-10-02 12:00:00,115.3572542,73.81520166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013363901,1.288318307,2.105380261,-2.105380261,1,0.17011246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710817061,135.3014326,0.710817061,44.69856741,0,0.979658413,0,0,0,10,4,0% +2018-10-02 13:00:00,103.7550961,83.88315255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810868042,1.464037199,3.96575152,-3.96575152,1,0,#DIV/0!,0,0,0.128942443,1,0.247009643,0,0.932329481,0.971091444,0.724496596,1,0,0,0.020787885,0.312029739,0.942740564,0.66723716,0.961238037,0.922476074,0,0,0,0,0,0,-0.54593932,123.0888769,0.54593932,56.9111231,0,0.95841473,0,0,0,10,5,0% +2018-10-02 14:00:00,91.93483748,93.17688336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.604565611,1.626243401,27.21244311,-27.21244311,1,0,#DIV/0!,0,0,0.804818948,1,0.036731367,0,0.957837012,0.996598975,0.724496596,1,0,0,0.099537914,0.312029739,0.756775342,0.481271938,0.961238037,0.922476074,0,0,0,0,0,0,-0.345964594,110.2406893,0.345964594,69.75931069,0,0.905476541,0,0,0,10,6,0% +2018-10-02 15:00:00,80.12947155,102.5398363,101.6358729,375.6808376,37.23577661,36.8791547,0,36.8791547,36.11298056,0.766174141,71.96559647,46.20000632,25.76559014,1.12279605,24.64279409,1.398523106,1.789657758,-4.844986421,4.844986421,0.641304835,0.641304835,0.366364508,0.59203656,19.04193089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.71317054,0.813461916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.428928472,18.30382826,35.14209901,19.11729018,0,46.20000632,-0.122976744,97.06393029,0.122976744,82.93606971,0,0.643419063,35.14209901,48.84325494,67.10903251,10,7,91% +2018-10-02 16:00:00,68.90812989,112.7849744,303.937719,659.3500187,66.66110396,135.4930256,68.55078893,66.94223664,64.65102573,2.29121091,75.70329709,0,75.70329709,2.010078238,73.69321885,1.202673748,1.968469151,-1.902770923,1.902770923,0.855546681,0.855546681,0.219324881,2.032828508,65.38275263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14502505,1.456294841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472777334,62.84838878,63.61780238,64.30468362,68.55078893,0,0.103967221,84.032333,-0.103967221,95.967667,0.56907919,0,102.6286298,64.30468362,144.7147592,10,8,41% +2018-10-02 17:00:00,58.55543505,124.8582076,488.8374512,777.7635091,83.09894015,334.9172924,250.6390287,84.27826369,80.5932005,3.685063193,121.0300393,0,121.0300393,2.505739648,118.5242996,1.021985137,2.179186822,-0.941340031,0.941340031,0.691132316,0.691132316,0.16999299,2.740351759,88.13913246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46924983,1.815399845,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.985375521,84.72268666,79.45462535,86.5380865,250.6390287,0,0.322256092,71.20058125,-0.322256092,108.7994187,0.894843895,0,303.73743,86.5380865,360.3748769,10,9,19% +2018-10-02 18:00:00,49.80758603,139.8829562,632.3263631,834.9317284,93.49769951,526.7527542,431.3076121,95.44514212,90.6783989,4.766743221,156.1341482,0,156.1341482,2.81930061,153.3148475,0.869306369,2.441418153,-0.407106204,0.407106204,0.599772951,0.599772951,0.147863042,3.141053738,101.0270855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16352614,2.042573695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275682741,97.11107735,89.43920888,99.15365105,431.3076121,0,0.516578299,58.89699084,-0.516578299,121.1030092,0.953209252,0,500.5656151,99.15365105,565.4596967,10,10,13% +2018-10-02 19:00:00,43.74854582,158.7344064,722.1757574,862.0596931,99.43977229,682.5626448,580.6772827,101.8853622,96.44129626,5.444065907,178.0983495,0,178.0983495,2.998476028,175.0998734,0.763556167,2.770438028,-0.021142609,0.021142609,0.533769289,0.533769289,0.137694697,3.25537059,104.7039084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.70304229,2.172385675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.35850491,100.6453794,95.0615472,102.8177651,580.6772827,0,0.673592893,47.65502463,-0.673592893,132.3449754,0.975771188,0,661.6697093,102.8177651,728.9618802,10,11,10% +2018-10-02 20:00:00,41.62925808,180.6641607,751.4860998,869.8491823,101.3095353,784.6293654,680.7096667,103.9196987,98.25467904,5.665019649,185.2613616,0,185.2613616,3.054856282,182.2065053,0.726567619,3.153184444,0.313632481,-0.313632481,0.476519377,0.476519377,0.134812254,3.099281149,99.68353546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.44613479,2.213232978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245418642,95.81960593,96.69155344,98.03283891,680.7096667,0,0.782560564,38.5043802,-0.782560564,141.4956198,0.986107182,0,767.9442443,98.03283891,832.1047767,10,12,8% +2018-10-02 21:00:00,44.0393402,202.46808,718.0649953,860.9292605,99.17509082,821.3671689,719.7694957,101.5976732,96.18459592,5.413077247,177.0936665,0,177.0936665,2.990494905,174.1031716,0.768631487,3.533734627,0.652909634,-0.652909634,0.418499566,0.418499566,0.138114365,2.700114001,86.84494786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45629215,2.166603379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956223402,83.4786672,94.41251556,85.64527057,719.7694957,0,0.836037905,33.27593282,-0.836037905,146.7240672,0.990194099,0,807.124023,85.64527057,863.1771397,10,13,7% +2018-10-02 22:00:00,50.31693917,221.0603501,624.3901967,832.2652923,92.9552498,785.9545919,691.0953688,94.85922309,90.15230605,4.706917046,154.1935759,0,154.1935759,2.80294375,151.3906321,0.878196258,3.858230955,1.054733354,-1.054733354,0.349783663,0.349783663,0.148873654,2.102032641,67.60859542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.65782568,2.030723205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.522915493,64.98795354,88.18074117,67.01867674,691.0953688,0,0.830378697,33.86234101,-0.830378697,146.137659,0.989786509,0,772.2176138,67.01867674,816.0799974,10,14,6% +2018-10-02 23:00:00,59.20363057,235.8495501,477.6584914,772.3488856,82.22479378,674.95767,591.6114656,83.34620434,79.74541287,3.600791472,118.2932123,0,118.2932123,2.47938091,115.8138314,1.033298283,4.116351189,1.626849343,-1.626849343,0.251946067,0.251946067,0.172141384,1.370882909,44.09230674,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.65432411,1.796303029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993200001,42.38320237,77.64752411,44.1795054,591.6114656,0,0.765989926,40.00485923,-0.765989926,139.9951408,0.98472499,0,660.2221187,44.1795054,689.1367214,10,15,4% +2018-10-02 00:00:00,69.63966489,247.7580169,290.5173482,647.4938184,65.23929197,484.6153703,419.1532412,65.4621291,63.27208661,2.190042485,72.40649991,0,72.40649991,1.96720536,70.43929455,1.215441442,4.324193143,2.692564596,-2.692564596,0.069698025,0.069698025,0.224562465,0.610165394,19.6250165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.81953632,1.425233587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.442062751,18.86431233,61.26159907,20.28954592,419.1532412,0,0.647347093,49.65811859,-0.647347093,130.3418814,0.972761683,0,468.9978114,20.28954592,482.2769134,10,16,3% +2018-10-02 01:00:00,80.9068371,257.9012684,88.73191314,344.5028889,34.28659454,200.3251063,166.4034805,33.92162585,33.25272721,0.668898642,22.54794697,0,22.54794697,1.033867329,21.51407964,1.412090695,4.501226279,6.188666971,-6.188666971,0,0,0.386406574,0.258466832,8.313181803,0.345622839,1,0.160200985,0,0.944072834,0.982834797,0.724496596,1,32.23644997,0.749033361,0.050804073,0.312029739,0.866052008,0.590548604,0.961238037,0.922476074,0.177248508,7.990946556,32.41369848,8.739979917,108.8906372,0,0.48302492,61.11684859,-0.48302492,118.8831514,0.946485672,0,135.4771264,8.739979917,141.1972685,10,17,4% +2018-10-02 02:00:00,92.75077683,267.2114108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618806439,4.663718917,-19.88092443,19.88092443,1,0,#DIV/0!,0,0,1,0.65870214,0,0.050257116,0.961238037,1,0.591882364,0.867385768,0,0,0.115824807,0.161707897,0.724496596,0.448993192,0.982645163,0.943883199,0,0,0,0,0,0,0.281230425,73.66634597,-0.281230425,106.333654,0.872209848,0,0,0,0,10,18,0% +2018-10-02 03:00:00,104.5885449,276.4959044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825414468,4.8257639,-3.438646606,3.438646606,1,0.881803108,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059541892,86.58648189,-0.059541892,93.41351811,0,0,0,0,0,10,19,0% +2018-10-02 04:00:00,116.1950036,286.6053013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027985387,5.002206162,-1.631787614,1.631787614,1,0.809205806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.168443649,99.69734182,0.168443649,80.30265818,0,0.753164825,0,0,0,10,20,0% +2018-10-02 05:00:00,127.1380197,298.6486593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218977049,5.212402412,-0.872364576,0.872364576,1,0.679336818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387192523,112.7799224,0.387192523,67.22007758,0,0.920865275,0,0,0,10,21,0% +2018-10-02 06:00:00,136.69833,314.2083179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385835941,5.483969685,-0.41004181,0.41004181,1,0.600274969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581801996,125.5773855,0.581801996,54.42261452,0,0.964060109,0,0,0,10,22,0% +2018-10-02 07:00:00,143.6135547,335.0608993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50652938,5.847915887,-0.063444635,0.063444635,1,0.541003361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739015949,137.6476569,0.739015949,42.3523431,0,0.982342462,0,0,0,10,23,0% +2018-10-03 08:00:00,146.1323459,0.86197523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550490579,0.015044306,0.239009604,-0.239009604,1,0.48928064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848128172,148.008659,0.848128172,31.99134105,0,0.991046646,0,0,0,10,0,0% +2018-10-03 09:00:00,143.313946,26.47331942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501300221,0.462046588,0.540163929,-0.540163929,1,0.437780217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901711795,154.3839954,0.901711795,25.61600462,0,0.99454991,0,0,0,10,1,0% +2018-10-03 10:00:00,136.2005149,46.98789139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377147429,0.820093413,0.882637331,-0.882637331,1,0.379213816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896125278,153.6533361,0.896125278,26.34666395,0,0.99420423,0,0,0,10,2,0% +2018-10-03 11:00:00,126.5369158,62.29543542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208485805,1.087260457,1.337419494,-1.337419494,1,0.301441486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831760475,146.2800083,0.831760475,33.71999168,0,0.98988654,0,0,0,10,3,0% +2018-10-03 12:00:00,115.5485044,74.19730333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016701848,1.294987239,2.086373206,-2.086373206,1,0.173362858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713015928,135.4808323,0.713015928,44.51916766,0,0.979875339,0,0,0,10,4,0% +2018-10-03 13:00:00,103.9318214,84.2463345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813952481,1.47037592,3.90723701,-3.90723701,1,0,#DIV/0!,0,0,0.121283285,1,0.250557009,0,0.931814789,0.970576752,0.724496596,1,0,0,0.019619968,0.312029739,0.945867857,0.670364453,0.961238037,0.922476074,0,0,0,0,0,0,-0.547997155,123.2297177,0.547997155,56.77028232,0,0.95875865,0,0,0,10,5,0% +2018-10-03 14:00:00,92.1099279,93.53050854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607621516,1.632415325,24.88604046,-24.88604046,1,0,#DIV/0!,0,0,0.788387102,1,0.040161563,0,0.957502881,0.996264844,0.724496596,1,0,0,0.098064537,0.312029739,0.759800652,0.484297248,0.961238037,0.922476074,0,0,0,0,0,0,-0.347964294,110.3628527,0.347964294,69.63714731,0,0.906307096,0,0,0,10,6,0% +2018-10-03 15:00:00,80.31312369,102.8930102,98.73784568,370.0584523,36.47047897,36.11508706,0,36.11508706,35.37075947,0.744327588,71.28930275,46.24944942,25.03985333,1.099719503,23.94013383,1.401728441,1.795821806,-4.919150173,4.919150173,0.628622087,0.628622087,0.369366768,0.570003645,18.3332766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.99971939,0.796743036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4129657,17.62264281,34.41268509,18.41938584,0,46.24944942,-0.124978768,97.17952966,0.124978768,82.82047034,0,0.649932046,34.41268509,48.47838512,66.14081859,10,7,92% +2018-10-03 16:00:00,69.11536823,113.1438822,300.4034502,657.4044764,66.04703215,133.2654533,66.94541478,66.32003854,64.05547044,2.264568099,74.82785616,0,74.82785616,1.991561707,72.83629446,1.206290739,1.974733273,-1.912273929,1.912273929,0.857171791,0.857171791,0.219861097,2.012236691,64.72044902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57255466,1.442879677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457858633,62.21175736,63.03041329,63.65463703,66.94541478,0,0.101832916,84.15527228,-0.101832916,95.84472772,0.558999624,0,100.452875,63.65463703,142.1135618,10,8,41% +2018-10-03 17:00:00,58.79889066,125.2209225,484.9425956,776.8558107,82.49743762,332.2035615,248.5380239,83.66553762,80.0098355,3.655702126,120.0675489,0,120.0675489,2.487602128,117.5799468,1.026234239,2.185517389,-0.941823771,0.941823771,0.69121504,0.69121504,0.170117945,2.718909822,87.44948608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.9084972,1.802259273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.969840911,84.05977232,78.87833811,85.8620316,248.5380239,0,0.319928126,71.34142168,-0.319928126,108.6585783,0.893714898,0,301.0004727,85.8620316,357.1954551,10,9,19% +2018-10-03 18:00:00,50.10053382,140.2272045,628.0789254,834.3640151,92.88239906,523.6755076,428.8591313,94.81637627,90.08165203,4.734724241,155.0857541,0,155.0857541,2.800747031,152.2850071,0.874419272,2.447426419,-0.40459933,0.40459933,0.59934425,0.59934425,0.147883324,3.1182636,100.2940763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58991035,2.02913169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259171363,96.40648104,88.84908172,98.43561273,428.8591313,0,0.513995239,59.06968102,-0.513995239,120.930319,0.952722834,0,497.4329688,98.43561273,561.8571087,10,10,13% +2018-10-03 19:00:00,44.09643721,159.0010465,717.5719035,861.5890823,98.80484286,679.1106851,577.8758127,101.2348724,95.82551229,5.409360112,176.9629463,0,176.9629463,2.979330563,173.9836158,0.769628018,2.775091775,-0.016892759,0.016892759,0.533042522,0.533042522,0.137693299,3.231224126,103.9272752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.11112732,2.158514851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.34101088,99.89884995,94.4521382,102.0573648,577.8758127,0,0.670709303,47.87816724,-0.670709303,132.1218328,0.975452055,0,658.1422874,102.0573648,724.9367916,10,11,10% +2018-10-03 20:00:00,42.01618993,180.7752334,746.5392868,869.3458132,100.6538412,780.7723669,677.5258818,103.246485,97.61875652,5.627728484,184.0421779,0,184.0421779,3.035084685,181.0070932,0.733320853,3.155123029,0.319557405,-0.319557405,0.475506155,0.475506155,0.134827253,3.073990341,98.87009614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.83486188,2.198908523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.227095538,95.03769711,96.06195741,97.23660564,677.5258818,0,0.779351406,38.79877095,-0.779351406,141.2012291,0.985844088,0,763.9968427,97.23660564,827.6362564,10,12,8% +2018-10-03 21:00:00,44.43093814,202.4071897,712.8121397,860.2695612,98.49813957,817.0764497,716.1749134,100.9015362,95.52805725,5.373479002,175.7996383,0,175.7996383,2.970082328,172.8295559,0.77546616,3.53267189,0.66113017,-0.66113017,0.417093772,0.417093772,0.138182466,2.674064497,86.00710625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.82520221,2.151814536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.937350625,82.67330197,93.76255284,84.8251165,716.1749134,0,0.832500586,33.64352794,-0.832500586,146.3564721,0.989939982,0,802.7327339,84.8251165,858.2490761,10,13,7% +2018-10-03 22:00:00,50.68726252,220.88674,618.8943755,831.2495416,92.25382597,781.1930861,687.0555661,94.13751996,89.47203274,4.665487225,152.8398999,0,152.8398999,2.781793233,150.0581067,0.88465962,3.855200887,1.066919495,-1.066919495,0.34769971,0.34769971,0.149062311,2.075829689,66.76581842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0039211,2.015399728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503931543,64.17784423,87.50785265,66.19324396,687.0555661,0,0.826533468,34.25572926,-0.826533468,145.7442707,0.989506382,0,767.35372,66.19324396,810.6758743,10,14,6% +2018-10-03 23:00:00,59.54626208,235.6242757,472.0174589,770.5221998,81.48406384,669.6299808,587.0446951,82.58528566,79.02701867,3.558266986,116.9031429,0,116.9031429,2.457045169,114.4460977,1.039278331,4.112419409,1.64754714,-1.64754714,0.248406535,0.248406535,0.172629343,1.345571546,43.27820629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.96377629,1.780120861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974862005,41.60065806,76.93863829,43.38077892,587.0446951,0,0.761879016,40.36987106,-0.761879016,139.6301289,0.984372782,0,654.8094582,43.38077892,683.2013103,10,15,4% +2018-10-03 00:00:00,69.95890957,247.5131906,284.9166126,643.494013,64.39509569,478.389842,413.7886743,64.60116773,62.45334596,2.147821775,71.0230811,0,71.0230811,1.941749728,69.08133137,1.221013313,4.319920118,2.738777,-2.738777,0.061795239,0.061795239,0.226013833,0.588164869,18.91740399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.03253166,1.406791068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.426123445,18.18412827,60.45865511,19.59091934,413.7886743,0,0.643034226,49.98155204,-0.643034226,130.018448,0.972243641,0,462.7620625,19.59091934,475.5839274,10,16,3% +2018-10-03 01:00:00,81.20851329,257.6486483,83.98696252,333.4193158,33.02748813,192.2446103,159.5798936,32.6647167,32.0315875,0.6331292,21.35951205,0,21.35951205,0.995900626,20.36361143,1.417355938,4.496817226,6.408433247,-6.408433247,0,0,0.393245417,0.248975156,8.007896876,0.361329636,1,0.154796017,0,0.944748807,0.98351077,0.724496596,1,31.0547818,0.721526613,0.052774189,0.312029739,0.861267508,0.585764104,0.961238037,0.922476074,0.170625575,7.697495072,31.22540738,8.419021685,101.9189488,0,0.478616223,61.4049357,-0.478616223,118.5950643,0.945532166,0,127.5930518,8.419021685,133.1031331,10,17,4% +2018-10-03 02:00:00,93.04856246,266.9532577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624003779,4.659213296,-17.96064417,17.96064417,1,0,#DIV/0!,0,0,1,0.615621856,0,0.055619865,0.961238037,1,0.578907614,0.854411018,0,0,0.115824807,0.147052052,0.724496596,0.448993192,0.984467771,0.945705808,0,0,0,0,0,0,0.27671891,73.9355238,-0.27671891,106.0644762,0.869311228,0,0,0,0,10,18,0% +2018-10-03 03:00:00,104.8878613,276.2312249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830638524,4.821144371,-3.374116694,3.374116694,1,0.892838373,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055065656,86.84337368,-0.055065656,93.15662632,0,0,0,0,0,10,19,0% +2018-10-03 04:00:00,116.5050978,286.3344315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033397551,4.997478592,-1.615368273,1.615368273,1,0.806397934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172800467,99.95068425,0.172800467,80.04931575,0,0.760648931,0,0,0,10,20,0% +2018-10-03 05:00:00,127.4691892,298.3808954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224757046,5.207729049,-0.866534827,0.866534827,1,0.678339873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.391354044,113.0387782,0.391354044,66.96122176,0,0.922238448,0,0,0,10,21,0% +2018-10-03 06:00:00,137.0598461,313.9802304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392145586,5.479988807,-0.408221054,0.408221054,1,0.599963601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585705818,125.8528685,0.585705818,54.14713151,0,0.964632912,0,0,0,10,22,0% +2018-10-03 07:00:00,144.0031633,334.9655576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513329333,5.846251861,-0.063750027,0.063750027,1,0.541055586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742617446,137.9548617,0.742617446,42.04513826,0,0.982670583,0,0,0,10,23,0% +2018-10-04 08:00:00,146.5172854,1.010149779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557209042,0.01763044,0.237152511,-0.237152511,1,0.489598222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851403551,148.364657,0.851403551,31.63534296,0,0.991273442,0,0,0,10,0,0% +2018-10-04 09:00:00,143.6473466,26.82475515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507119159,0.468180298,0.536730402,-0.536730402,1,0.438367385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904659727,154.777493,0.904659727,25.22250704,0,0.9947306,0,0,0,10,1,0% +2018-10-04 10:00:00,136.4698783,47.4034034,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381848706,0.827345466,0.877038357,-0.877038357,1,0.380171297,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898766975,153.9964619,0.898766975,26.0035381,0,0.994368227,0,0,0,10,2,0% +2018-10-04 11:00:00,126.7575466,62.70150833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21233654,1.094347766,1.327947352,-1.327947352,1,0.303061318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834138214,146.5262095,0.834138214,33.4737905,0,0.990057895,0,0,0,10,3,0% +2018-10-04 12:00:00,115.7394482,74.57888273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020034446,1.301647056,2.067570635,-2.067570635,1,0.176578287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715190132,135.6587834,0.715190132,44.34121663,0,0.980088521,0,0,0,10,4,0% +2018-10-04 13:00:00,104.108758,84.60847909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817040606,1.476696535,3.84997236,-3.84997236,1,0,#DIV/0!,0,0,0.113656186,1,0.254126496,0,0.931294183,0.970056147,0.724496596,1,0,0,0.018448956,0.312029739,0.94901418,0.673510776,0.961238037,0.922476074,0,0,0,0,0,0,-0.550042218,123.3699094,0.550042218,56.63009063,0,0.959097887,0,0,0,10,5,0% +2018-10-04 14:00:00,92.28569238,93.88266403,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610689185,1.638561598,22.90864679,-22.90864679,1,0,#DIV/0!,0,0,0.772077468,1,0.043623946,0,0.957162769,0.995924732,0.724496596,1,0,0,0.09658518,0.312029739,0.762855782,0.487352378,0.961238037,0.922476074,0,0,0,0,0,0,-0.349963446,110.4850793,0.349963446,69.5149207,0,0.907127935,0,0,0,10,6,0% +2018-10-04 15:00:00,80.4977765,103.2442005,95.83616674,364.2871583,35.69750031,35.34354247,0,35.34354247,34.62108897,0.722453506,70.57416454,46.26116502,24.31299952,1.076411344,23.23658818,1.40495124,1.801951232,-4.996589444,4.996589444,0.615379191,0.615379191,0.372484643,0.548085405,17.62831065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.27910759,0.779856355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.39708601,16.94500272,33.6761936,17.72485908,0,46.26116502,-0.12699093,97.29574405,0.12699093,82.70425595,0,0.656271094,33.6761936,48.08472443,65.14668405,10,7,93% +2018-10-04 16:00:00,69.32393887,113.5000622,296.8414064,655.4025105,65.42928396,131.0227779,65.32871234,65.69406555,63.45634964,2.237715908,73.94557001,0,73.94557001,1.97293432,71.97263569,1.209930984,1.980949786,-1.922073916,1.922073916,0.858847688,0.858847688,0.22041832,1.991478194,64.05278437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.99665695,1.429384199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442819172,61.5699727,62.43947613,62.9993569,65.32871234,0,0.099677238,84.27941526,-0.099677238,95.72058474,0.548380967,0,98.26449856,62.9993569,139.4963177,10,8,42% +2018-10-04 17:00:00,59.04376282,125.5798037,481.0130721,775.9194582,81.89312596,329.4588248,246.408999,83.04982577,79.42374605,3.626079718,119.0965682,0,119.0965682,2.469379901,116.6271883,1.030508064,2.191781048,-0.942376666,0.942376666,0.691309591,0.691309591,0.170251352,2.697312159,86.75483099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.34512574,1.789057332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954193477,83.39204343,78.29931921,85.18110076,246.408999,0,0.317570331,71.48394774,-0.317570331,108.5160523,0.892554561,0,298.2327953,85.18110076,353.9821221,10,9,19% +2018-10-04 18:00:00,50.39459904,140.5662613,623.7947895,833.7772849,92.26458942,520.5590769,426.3741767,94.18490024,89.48247163,4.702428615,154.0283866,0,154.0283866,2.782117791,151.2462688,0.879551679,2.453344078,-0.402107968,0.402107968,0.598918202,0.598918202,0.147908561,3.095334293,99.556591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.01395536,2.015634869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242559158,95.69758209,88.25651452,97.71321696,426.3741767,0,0.51137658,59.24443336,-0.51137658,120.7555666,0.952224697,0,494.2605358,97.71321696,558.211882,10,10,13% +2018-10-04 19:00:00,44.44462569,159.261909,712.9331303,861.1034557,98.16767613,675.6159692,575.0340196,100.5819496,95.2075585,5.37439108,175.8190091,0,175.8190091,2.960117636,172.8588915,0.775705053,2.779644685,-0.012634423,0.012634423,0.532314303,0.532314303,0.137695489,3.206966413,103.1470637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.51712662,2.14459515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.323436249,99.14888103,93.84056287,101.2934762,575.0340196,0,0.667787379,48.10347752,-0.667787379,131.8965225,0.975125869,0,654.5711107,101.2934762,720.8656649,10,11,10% +2018-10-04 20:00:00,42.40241949,180.882347,741.5627939,868.8288032,99.99626403,776.873073,674.3018517,102.5712213,96.98100772,5.590213578,182.8157412,0,182.8157412,3.015256307,179.8004849,0.740061831,3.156992513,0.325511319,-0.325511319,0.474487976,0.474487976,0.134845309,3.048627485,98.05433952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.22183347,2.18454293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208720235,94.25356082,95.43055371,96.43810375,674.3018517,0,0.776104394,39.0947317,-0.776104394,140.9052683,0.985575677,0,760.0060579,96.43810375,823.122868,10,12,8% +2018-10-04 21:00:00,44.82133907,202.345359,707.5379099,859.5954633,97.81975147,812.7475172,712.5436725,100.2038447,94.87012505,5.33371963,174.5003843,0,174.5003843,2.949626423,171.5507579,0.782279942,3.531592741,0.669410033,-0.669410033,0.415677832,0.415677832,0.138253725,2.647992039,85.16852638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19277276,2.136994303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918461218,81.8672271,93.11123397,84.0042214,712.5436725,0,0.828929075,34.0111152,-0.828929075,145.9888848,0.989681209,0,798.302317,84.0042214,853.2813998,10,13,7% +2018-10-04 22:00:00,51.05634461,220.7137568,613.3880718,830.2152167,91.55144696,776.400204,682.9853925,93.41481143,88.79083305,4.623978381,151.4836535,0,151.4836535,2.760613915,148.7230396,0.891101318,3.85218176,1.079229256,-1.079229256,0.345594617,0.345594617,0.149255343,2.04966219,65.92418169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.34912605,2.000055384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484973279,63.36883099,86.83409933,65.36888638,682.9853925,0,0.822660653,34.64797086,-0.822660653,145.3520291,0.989221598,0,762.4580006,65.36888638,805.2406294,10,14,6% +2018-10-04 23:00:00,59.88763807,235.399803,466.3791275,768.6635058,80.74265487,664.2782225,582.4544937,81.82372878,78.30796592,3.515762863,115.513708,0,115.513708,2.434688953,113.079019,1.045236466,4.108501621,1.668554602,-1.668554602,0.244814048,0.244814048,0.173126648,1.320368861,42.4676013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.27259543,1.763923859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956602745,40.82147371,76.22919818,42.58539756,582.4544937,0,0.757749639,40.73378938,-0.757749639,139.2662106,0.984015145,0,649.3732413,42.58539756,677.2445323,10,15,4% +2018-10-04 00:00:00,70.27676789,247.268837,279.3359916,639.4125244,63.54898691,472.1402547,408.4017515,63.73850318,61.63275048,2.105752696,69.64448162,0,69.64448162,1.916236426,67.7282452,1.226560987,4.315655344,2.786159047,-2.786159047,0.053692431,0.053692431,0.227500175,0.56640024,18.21737871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24374408,1.388306768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410355046,17.51123735,59.65409912,18.89954412,408.4017515,0,0.638714032,50.3040052,-0.638714032,129.6959948,0.971717705,0,456.505312,18.89954412,468.8746856,10,16,3% +2018-10-04 01:00:00,81.5084532,257.396056,79.32101996,322.099682,31.75865553,184.1433722,152.7444019,31.39897024,30.80101489,0.597955354,20.18994028,0,20.18994028,0.957640641,19.23229964,1.422590877,4.492408658,6.642189386,-6.642189386,0,0,0.400381331,0.23941016,7.700253722,0.377229361,1,0.149430508,0,0.945413321,0.984175285,0.724496596,1,29.86322052,0.693807385,0.054742938,0.312029739,0.856517074,0.58101367,0.961238037,0.922476074,0.163981989,7.401776771,30.0272025,8.095584156,95.12472887,0,0.474214693,61.69176889,-0.474214693,118.3082311,0.944562525,0,119.8784566,8.095584156,125.1768545,10,17,4% +2018-10-04 02:00:00,93.34453534,266.6946336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62916948,4.654699453,-16.39043235,16.39043235,1,0,#DIV/0!,0,0,1,0.571382532,0,0.06093567,0.961238037,1,0.566271694,0.841775098,0,0,0.115824807,0.132784909,0.724496596,0.448993192,0.986195272,0.947433309,0,0,0,0,0,0,0.272224131,74.20334144,-0.272224131,105.7966586,0.866327818,0,0,0,0,10,18,0% +2018-10-04 03:00:00,105.1851186,275.9654628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835826644,4.816505947,-3.312483761,3.312483761,1,0.903378225,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.050617931,87.0985663,-0.050617931,92.9014337,0,0,0,0,0,10,19,0% +2018-10-04 04:00:00,116.8129335,286.0616406,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038770298,4.992717492,-1.599431426,1.599431426,1,0.803672572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177118365,100.2019575,0.177118365,79.7980425,0,0.767702905,0,0,0,10,20,0% +2018-10-04 05:00:00,127.798044,298.1100363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230496645,5.203001667,-0.860857128,0.860857128,1,0.677368929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395468312,113.2951847,0.395468312,66.7048153,0,0.92356762,0,0,0,10,21,0% +2018-10-04 06:00:00,137.4193079,313.7477951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39841938,5.475932045,-0.406462026,0.406462026,1,0.59966279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589556708,126.1255571,0.589556708,53.87444285,0,0.965190516,0,0,0,10,22,0% +2018-10-04 07:00:00,144.3913708,334.8663055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.520104832,5.844519585,-0.064081798,0.064081798,1,0.541112322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746163368,138.259121,0.746163368,41.74087903,0,0.982990546,0,0,0,10,23,0% +2018-10-05 08:00:00,146.9012328,1.158400974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563910188,0.020217911,0.235287694,-0.235287694,1,0.489917124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854623931,148.7182131,0.854623931,31.28178686,0,0.991494735,0,0,0,10,0,0% +2018-10-05 09:00:00,143.9794986,27.17871532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512916305,0.474358069,0.533303625,-0.533303625,1,0.438953398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907556414,155.1698205,0.907556414,24.83017949,0,0.994907006,0,0,0,10,1,0% +2018-10-05 10:00:00,136.7379831,47.82040776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386528017,0.834623565,0.871464777,-0.871464777,1,0.381124436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901364097,154.337955,0.901364097,25.66204499,0,0.994528521,0,0,0,10,2,0% +2018-10-05 11:00:00,126.9773289,63.10773343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216172465,1.101437732,1.318540176,-1.318540176,1,0.30467004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836480507,146.7703149,0.836480507,33.22968509,0,0.990225744,0,0,0,10,3,0% +2018-10-05 12:00:00,115.9300825,74.95980091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023361642,1.308295333,2.048968864,-2.048968864,1,0.179759377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717339846,135.8352877,0.717339846,44.16471228,0,0.980298031,0,0,0,10,4,0% +2018-10-05 13:00:00,104.2859048,84.96945795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820132401,1.482996805,3.793917991,-3.793917991,1,0,#DIV/0!,0,0,0.10606095,1,0.257718218,0,0.930767605,0.969529569,0.724496596,1,0,0,0.017274841,0.312029739,0.952179637,0.676676233,0.961238037,0.922476074,0,0,0,0,0,0,-0.552074818,123.5094709,0.552074818,56.49052909,0,0.959432565,0,0,0,10,5,0% +2018-10-05 14:00:00,92.4621252,94.23322584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613768518,1.644680056,21.20722385,-21.20722385,1,0,#DIV/0!,0,0,0.755888886,1,0.047118842,0,0.956816567,0.995578531,0.724496596,1,0,0,0.095099831,0.312029739,0.765940961,0.490437557,0.961238037,0.922476074,0,0,0,0,0,0,-0.351962404,110.6073916,0.351962404,69.39260844,0,0.907939372,0,0,0,10,6,0% +2018-10-05 15:00:00,80.68340977,103.5932828,92.9321327,358.363807,34.91677278,34.56446492,0,34.56446492,33.86390325,0.700561671,69.81910254,46.23376151,23.58534103,1.052869528,22.5324715,1.408191152,1.808043867,-5.07752373,5.07752373,0.601538613,0.601538613,0.375723356,0.526296859,16.92751613,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.55127188,0.762800389,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.381300283,16.27137237,32.93257216,17.03417276,0,46.23376151,-0.129013479,97.41258878,0.129013479,82.58741122,0,0.662443596,32.93257216,47.661432,64.12602618,10,7,95% +2018-10-05 16:00:00,69.53380696,113.8533891,293.2522927,653.3430108,64.80787506,128.7653005,63.70096237,65.06433817,62.85367851,2.210659653,73.05661007,0,73.05661007,1.954196549,71.10241352,1.213593873,1.987116504,-1.932184334,1.932184334,0.860576671,0.860576671,0.220996994,1.970557272,63.37989561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.41734654,1.415808747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427662035,60.92316643,61.84500858,62.33897517,63.70096237,0,0.097500029,84.40477091,-0.097500029,95.59522909,0.537179639,0,96.06386853,62.33897517,136.863481,10,8,42% +2018-10-05 17:00:00,59.28999181,125.934734,477.0498401,774.9542167,81.28606443,326.6834037,244.2522108,82.43119287,78.83498967,3.596203201,118.1173316,0,118.1173316,2.451074756,115.6662568,1.034805571,2.197975751,-0.943002799,0.943002799,0.691416666,0.691416666,0.170393233,2.675565032,86.05536863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77919071,1.775795317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938437758,82.71969361,77.71762847,84.49548892,244.2522108,0,0.315182762,71.62815266,-0.315182762,108.3718473,0.891361883,0,295.434739,84.49548892,350.7353466,10,9,19% +2018-10-05 18:00:00,50.68969301,140.9000441,619.4752662,833.1715726,91.64435385,517.4040678,423.8532631,93.55080467,88.88093845,4.669866224,152.9623657,0,152.9623657,2.7634154,150.1989503,0.88470204,2.459169686,-0.399634565,0.399634565,0.598495225,0.598495225,0.147938681,3.072273757,98.81488489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.43573879,2.00208505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.225851878,94.98462597,87.66159067,96.98671102,423.8532631,0,0.508722665,59.42121548,-0.508722665,120.5787845,0.951714621,0,491.0489383,96.98671102,554.5248009,10,10,13% +2018-10-05 19:00:00,44.79300213,159.5169708,708.2611229,860.6029741,97.52837678,672.0794849,572.152777,99.92670789,94.58753638,5.339171515,174.6669496,0,174.6669496,2.940840401,171.7261092,0.781785369,2.784096354,-0.008369655,0.008369655,0.531584985,0.531584985,0.137701158,3.182606859,102.3635767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92113778,2.13062886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.305787835,98.39576354,93.22692561,100.5263924,572.152777,0,0.664827794,48.3308844,-0.664827794,131.6691156,0.974792555,0,650.9571928,100.5263924,716.7497061,10,11,10% +2018-10-05 20:00:00,42.78783278,180.9854894,736.5586687,868.298405,99.33692979,772.9328995,671.0388543,101.8940452,96.34155485,5.552490369,181.5825518,0,181.5825518,2.995374947,178.5871768,0.746788562,3.158792689,0.331492168,-0.331492168,0.47346519,0.47346519,0.134866283,3.023203203,97.23660719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.60716705,2.170138953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.190300429,93.4675254,94.79746748,95.63766436,671.0388543,0,0.772820554,39.39214781,-0.772820554,140.6078522,0.985301928,0,755.9733443,95.63766436,818.5662828,10,12,8% +2018-10-05 21:00:00,45.21042258,202.2825365,702.2446773,858.9073157,97.14007451,808.3822273,708.8774674,99.50475986,94.21094286,5.293817007,173.196484,0,173.196484,2.929131655,170.2673523,0.78907073,3.530496281,0.677746994,-0.677746994,0.414252128,0.414252128,0.138327961,2.621908117,84.32957778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55914176,2.122145913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899563505,81.06079779,92.45870527,83.18294371,708.8774674,0,0.825324752,34.37856997,-0.825324752,145.62143,0.989417787,0,793.8346802,83.18294371,848.2762532,10,13,7% +2018-10-05 22:00:00,51.42405564,220.5413496,607.8739179,829.1627865,90.84828479,771.5782286,678.8869444,92.69128417,88.10887381,4.58241036,150.1254801,0,150.1254801,2.739410981,147.3860691,0.897519086,3.849172687,1.091660349,-1.091660349,0.343468775,0.343468775,0.149452513,2.023542085,65.08406934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.69360089,1.98469393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466049352,62.56128304,86.15965024,64.54597697,678.8869444,0,0.818761955,35.03894791,-0.818761955,144.9610521,0.988932189,0,757.5328026,64.54597697,799.7768536,10,14,6% +2018-10-05 23:00:00,60.22762515,235.1761081,460.7463154,766.7733814,80.0007677,658.9050624,577.8433127,81.06174973,77.58844938,3.473300346,114.1255968,0,114.1255968,2.412318318,111.7132785,1.051170359,4.104597408,1.689871435,-1.689871435,0.241168654,0.241168654,0.173633006,1.295286859,41.66087792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.58096877,1.747716409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.93843092,40.0460205,75.51939969,41.79373691,577.8433127,0,0.753603772,41.09648043,-0.753603772,138.9035196,0.983652137,0,643.9162089,41.79373691,671.2693739,10,15,4% +2018-10-05 00:00:00,70.59310681,247.0249556,273.77849,635.2495594,62.70119202,465.8695219,402.9951442,62.87437764,60.81051974,2.063857902,68.27143689,0,68.27143689,1.890672282,66.38076461,1.232082143,4.311398809,2.834738134,-2.834738134,0.045384918,0.045384918,0.229021615,0.544884091,17.52534539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.45338461,1.369785632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394766669,16.8460286,58.84815128,18.21581423,402.9951442,0,0.634388703,50.62533954,-0.634388703,129.3746605,0.971183969,0,450.2305748,18.21581423,462.1524609,10,16,3% +2018-10-05 01:00:00,81.80651391,257.1435055,74.73967739,310.5520248,30.48091897,176.0296595,145.9044335,30.12522606,29.5618068,0.563419258,19.04061226,0,19.04061226,0.91911217,18.12150009,1.427793017,4.488000822,6.891202921,-6.891202921,0,0,0.40782781,0.229778042,7.390451701,0.393318526,1,0.144106648,0,0.946066236,0.984828199,0.724496596,1,28.66260762,0.665893638,0.056709447,0.312029739,0.851802745,0.576299341,0.961238037,0.922476074,0.157319819,7.103983285,28.81992744,7.769876923,88.51751682,0,0.469822837,61.97720285,-0.469822837,118.0227971,0.943576906,0,112.3430121,7.769876923,117.4282411,10,17,5% +2018-10-05 02:00:00,93.63856454,266.4355607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634301258,4.650177778,-15.08306247,15.08306247,1,0,#DIV/0!,0,0,1,0.525956104,0,0.066202646,0.961238037,1,0.55397338,0.829476784,0,0,0.115824807,0.118902544,0.724496596,0.448993192,0.987831555,0.949069592,0,0,0,0,0,0,0.267748433,74.46967067,-0.267748433,105.5303293,0.863257544,0,0,0,0,10,18,0% +2018-10-05 03:00:00,105.4801839,275.6986426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840976504,4.811849057,-3.253585068,3.253585068,1,0.913450495,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046201006,87.35193473,-0.046201006,92.64806527,0,0,0,0,0,10,19,0% +2018-10-05 04:00:00,117.1183725,285.7869458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044101215,4.987923164,-1.583965402,1.583965402,1,0.801027727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.181395198,100.4510367,0.181395198,79.54896329,0,0.774358746,0,0,0,10,20,0% +2018-10-05 05:00:00,128.1244386,297.8360697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236193305,5.198220047,-0.855330487,0.855330487,1,0.676423817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.399533409,113.5490129,0.399533409,66.45098715,0,0.92485402,0,0,0,10,21,0% +2018-10-05 06:00:00,137.7765668,313.5109257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404654723,5.471797894,-0.404765248,0.404765248,1,0.599372624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59335303,126.3953122,0.59335303,53.60468784,0,0.965733134,0,0,0,10,22,0% +2018-10-05 07:00:00,144.7780455,334.7629691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526853579,5.842716025,-0.064440678,0.064440678,1,0.541173695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749652407,138.5602773,0.749652407,41.43972272,0,0.983302422,0,0,0,10,23,0% +2018-10-06 08:00:00,147.2840894,1.306589776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570592296,0.022804294,0.233414451,-0.233414451,1,0.490237468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857788352,149.0691587,0.857788352,30.93084125,0,0.991710563,0,0,0,10,0,0% +2018-10-06 09:00:00,144.3103304,27.53507545,0,0,0,0,0,0,0,0,0,0,0,0,0,2.51869041,0.480577726,0.529882946,-0.529882946,1,0.439538369,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910401236,155.5608584,0.910401236,24.43914164,0,0.995079161,0,0,0,10,1,0% +2018-10-06 10:00:00,137.004789,48.23874794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39118466,0.841924979,0.865915922,-0.865915922,1,0.382073346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903916338,154.6777252,0.903916338,25.32227483,0,0.994685146,0,0,0,10,2,0% +2018-10-06 11:00:00,127.1962458,63.51395828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219993285,1.108527693,1.309196994,-1.309196994,1,0.306267818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838787311,147.0122833,0.838787311,32.98771671,0,0.990390133,0,0,0,10,3,0% +2018-10-06 12:00:00,116.1204009,75.33992051,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026683325,1.314929671,2.030564761,-2.030564761,1,0.182906664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719465221,136.0103457,0.719465221,43.9896543,0,0.980503937,0,0,0,10,4,0% +2018-10-06 13:00:00,104.4632568,85.3291445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823227778,1.489274519,3.739037432,-3.739037432,1,0,#DIV/0!,0,0,0.098497585,1,0.261332189,0,0.930235008,0.968996971,0.724496596,1,0,0,0.016097646,0.312029739,0.955364246,0.679860842,0.961238037,0.922476074,0,0,0,0,0,0,-0.554095218,123.6484183,0.554095218,56.35158173,0,0.959762802,0,0,0,10,5,0% +2018-10-06 14:00:00,92.63921591,94.58207207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616859334,1.650768571,19.72782755,-19.72782755,1,0,#DIV/0!,0,0,0.739820714,1,0.05064647,0,0.956464178,0.995226141,0.724496596,1,0,0,0.093608526,0.312029739,0.769056323,0.493552919,0.961238037,0.922476074,0,0,0,0,0,0,-0.353961457,110.7298079,0.353961457,69.2701921,0,0.908741682,0,0,0,10,6,0% +2018-10-06 15:00:00,80.86999789,103.9401356,90.02718611,352.2854906,34.12825399,33.77782416,0,33.77782416,33.09916121,0.678662957,69.02303418,46.16580783,22.85722635,1.029092778,21.82813357,1.411447729,1.81409759,-5.162188881,5.162188881,0.58706002,0.58706002,0.379088312,0.504654277,16.23141627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.81617274,0.745574214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365620305,15.60225471,32.18179305,16.34782893,0,46.16580783,-0.131046577,97.5300742,0.131046577,82.4699258,0,0.66845627,32.18179305,47.20765262,63.07825753,10,7,96% +2018-10-06 16:00:00,69.74493221,114.2037416,289.6369233,651.2249197,64.18283109,126.4934178,62.06253039,64.43088739,62.24748192,2.183405471,72.16117452,0,72.16117452,1.935349167,70.22582536,1.217278704,1.993231309,-1.942618667,1.942618667,0.862361047,0.862361047,0.221597545,1.949478686,62.70193584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83464732,1.402153883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412390672,60.27148572,61.24703799,61.6736396,62.06253039,0,0.095301222,84.5313428,-0.095301222,95.4686572,0.525347754,0,93.85144891,61.6736396,134.2156126,10,8,43% +2018-10-06 17:00:00,59.53751263,126.2856019,473.0539634,773.9598935,80.67632025,323.8777257,242.0680136,81.80971212,78.24363153,3.566080595,117.130099,0,117.130099,2.432688719,114.6974103,1.039125624,2.204099551,-0.94370614,0.94370614,0.691536944,0.691536944,0.170543588,2.653675127,85.35131402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.21075477,1.762474696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.922578596,82.04292953,77.13333336,83.80540423,242.0680136,0,0.312765578,71.77402363,-0.312765578,108.2259764,0.890135861,0,292.606753,83.80540423,347.4557139,10,9,19% +2018-10-06 18:00:00,50.98572271,141.2284779,615.1217608,832.5469454,91.02178206,514.2111944,421.2970073,92.91418716,88.2771395,4.637047662,151.8880351,0,151.8880351,2.744642564,149.1433925,0.889868733,2.464901937,-0.397181496,0.397181496,0.598075726,0.598075726,0.147973601,3.049090263,98.06922404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85534427,1.988484194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.209055516,94.26786839,87.06439979,96.25635258,421.2970073,0,0.506033936,59.59998861,-0.506033936,120.4000114,0.951192397,0,487.7989102,96.25635258,550.7967678,10,10,13% +2018-10-06 19:00:00,45.14145474,159.7662168,703.557645,860.0878247,96.88705458,668.5023227,569.2330555,99.26926712,93.96555241,5.303714712,173.5071987,0,173.5071987,2.921502171,170.5856965,0.787867014,2.788446517,-0.004100472,0.004100472,0.530854912,0.530854912,0.137710187,3.158155103,101.5771242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32326313,2.116618378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.288072622,97.63979547,92.61133575,99.75641384,569.2330555,0,0.661831314,48.56031076,-0.661831314,131.4396892,0.974452049,0,647.3016528,99.75641384,712.5902306,10,11,10% +2018-10-06 20:00:00,43.17231486,181.0846562,731.5290172,867.7548946,98.67596837,768.9533505,667.7382519,101.2150986,95.70052384,5.514574731,180.3431241,0,180.3431241,2.975444522,177.3676796,0.75349904,3.160523476,0.337497904,-0.337497904,0.472438149,0.472438149,0.134890026,2.997728232,96.41724457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.99098367,2.155699427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1718439,92.67992289,94.16282756,94.83562231,667.7382519,0,0.769500992,39.69090053,-0.769500992,140.3090995,0.985022826,0,751.9002474,94.83562231,813.9682655,10,12,8% +2018-10-06 21:00:00,45.59806883,202.2186782,696.9348468,858.2054914,96.45925931,803.982505,705.178059,98.80444601,93.55065675,5.253789262,171.888525,0,171.888525,2.908602565,168.9799224,0.795836434,3.529381744,0.686138792,-0.686138792,0.412817046,0.412817046,0.138404988,2.595824223,83.49063011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.92444964,2.107272657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.880665813,80.25436939,91.80511545,82.36164204,705.178059,0,0.821689055,34.74576622,-0.821689055,145.2542338,0.989149731,0,789.3318028,82.36164204,843.2358503,10,13,7% +2018-10-06 22:00:00,51.79026759,220.3694738,602.3545538,828.0927487,90.14451302,766.7294897,674.7623633,91.96712642,87.42632335,4.540803062,148.7660251,0,148.7660251,2.718189665,146.0478354,0.90391069,3.846172889,1.104210384,-1.104210384,0.341322593,0.341322593,0.149653576,1.997481205,64.24586184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.03750743,1.96931916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.447168333,61.75556611,85.48467576,63.72488527,674.7623633,0,0.814839116,35.42854286,-0.814839116,144.5714571,0.988638194,0,752.5805198,63.72488527,794.2871827,10,14,6% +2018-10-06 23:00:00,60.56609236,234.9531718,455.1218219,764.8524477,79.2586043,653.5131927,573.2136272,80.29956549,76.86866495,3.430900538,112.7394943,0,112.7394943,2.389939353,110.3495549,1.057077727,4.100706436,1.71149714,-1.71149714,0.237470441,0.237470441,0.174148108,1.270337314,40.85841477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.88908459,1.731502925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.92035506,39.2746624,74.80943965,41.00616533,573.2136272,0,0.749443411,41.4578126,-0.749443411,138.5421874,0.983283822,0,638.4411258,41.00616533,665.2788409,10,15,4% +2018-10-06 00:00:00,70.90779615,246.7815496,268.2470702,631.0054103,61.85194078,459.5805726,397.5715363,62.00903628,59.98687656,2.022159723,66.90467204,0,66.90467204,1.865064224,65.03960782,1.237574508,4.307150574,2.884542147,-2.884542147,0.03686793,0.03686793,0.230578253,0.523628635,16.84169687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.66166746,1.351232681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379367164,16.18887964,58.04103462,17.54011232,397.5715363,0,0.630060424,50.94541936,-0.630060424,129.0545806,0.970642532,0,443.9408772,17.54011232,455.4205299,10,16,3% +2018-10-06 01:00:00,82.10255459,256.891015,70.24859262,298.7863338,29.19523591,167.9125071,139.0680517,28.8444554,28.31489183,0.529563564,17.91292867,0,17.91292867,0.880344082,17.03258459,1.432959902,4.48359403,7.15689616,-7.15689616,0,0,0.415598873,0.22008602,7.078722958,0.409593272,1,0.138826586,0,0.946707423,0.985469386,0.724496596,1,27.45391375,0.63780629,0.058672834,0.312029739,0.847126528,0.571623124,0.961238037,0.922476074,0.15064172,6.80433776,27.60455547,7.44214405,82.10671341,0,0.465443148,62.26109442,-0.465443148,117.7389056,0.942575494,0,104.9963315,7.44214405,109.8670659,10,17,5% +2018-10-06 02:00:00,93.93052242,266.1760656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639396884,4.645648734,-13.97806567,13.97806567,1,0,#DIV/0!,0,0,1,0.479314113,0,0.07141898,0.961238037,1,0.542010993,0.817514397,0,0,0.115824807,0.105400364,0.724496596,0.448993192,0.989380497,0.950618534,0,0,0,0,0,0,0.263294112,74.73438674,-0.263294112,105.2656133,0.860098298,0,0,0,0,10,18,0% +2018-10-06 03:00:00,105.7729273,275.430794,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846085841,4.807174217,-3.197269645,3.197269645,1,0.923080999,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041817101,87.60335776,-0.041817101,92.39664224,0,0,0,0,0,10,19,0% +2018-10-06 04:00:00,117.4212799,285.5103704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049387947,4.983096013,-1.568958747,1.568958747,1,0.798461437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.185628904,100.6978011,0.185628904,79.30219895,0,0.780645395,0,0,0,10,20,0% +2018-10-06 05:00:00,128.4482299,297.5589904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241844529,5.193384102,-0.849953783,0.849953783,1,0.675504347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403547499,113.8001379,0.403547499,66.19986206,0,0.926098848,0,0,0,10,21,0% +2018-10-06 06:00:00,138.1314752,313.2695435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410849042,5.46758498,-0.40313112,0.40313112,1,0.599093171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597093235,126.6619984,0.597093235,53.33800164,0,0.966260984,0,0,0,10,22,0% +2018-10-06 07:00:00,145.1630559,334.6553775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533573278,5.840838197,-0.064827296,0.064827296,1,0.54123981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753083336,138.8581765,0.753083336,41.14182347,0,0.983606285,0,0,0,10,23,0% +2018-10-07 08:00:00,147.6657564,1.454578124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577253642,0.025387177,0.231532177,-0.231532177,1,0.490559356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86089592,149.417326,0.86089592,30.58267397,0,0.99192097,0,0,0,10,0,0% +2018-10-07 09:00:00,144.6397701,27.89371114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.524440217,0.4868371,0.526467818,-0.526467818,1,0.44012239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913193626,155.9504866,0.913193626,24.04951339,0,0.995247099,0,0,0,10,1,0% +2018-10-07 10:00:00,137.2702553,48.65826752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395817921,0.849246977,0.860391258,-0.860391258,1,0.383018119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906423426,155.0156821,0.906423426,24.9843179,0,0.994838142,0,0,0,10,2,0% +2018-10-07 11:00:00,127.4142786,63.92003155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223798676,1.115615008,1.299917038,-1.299917038,1,0.307854784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841058593,147.2520738,0.841058593,32.74792619,0,0.99055111,0,0,0,10,3,0% +2018-10-07 12:00:00,116.3103947,75.7191057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029999342,1.321547701,2.012355615,-2.012355615,1,0.186020612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721566397,136.183957,0.721566397,43.81604304,0,0.980706308,0,0,0,10,4,0% +2018-10-07 13:00:00,104.6408058,85.68741393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826326593,1.495527501,3.685296784,-3.685296784,1,0,#DIV/0!,0,0,0.090966259,1,0.264968343,0,0.929696358,0.968458321,0.724496596,1,0,0,0.01491742,0.312029739,0.958567955,0.683064551,0.961238037,0.922476074,0,0,0,0,0,0,-0.556103654,123.7867654,0.556103654,56.21323458,0,0.960088704,0,0,0,10,5,0% +2018-10-07 14:00:00,92.81695037,94.92908292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619961386,1.656825053,18.42974305,-18.42974305,1,0,#DIV/0!,0,0,0.723872696,1,0.05420696,0,0.95610551,0.994867473,0.724496596,1,0,0,0.092111339,0.312029739,0.772201921,0.496698517,0.961238037,0.922476074,0,0,0,0,0,0,-0.355960844,110.8523438,0.355960844,69.14765619,0,0.909535112,0,0,0,10,6,0% +2018-10-07 15:00:00,81.05751093,104.28464,87.12289906,346.0495334,33.33192514,32.98361383,0,32.98361383,32.32684462,0.656769214,68.18487894,46.05584287,22.12903607,1.005080525,21.12395555,1.414720449,1.820110327,-5.250839345,5.250839345,0.571899898,0.571899898,0.382585124,0.483175015,15.54056939,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07379266,0.728177419,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.350058654,14.93818641,31.42385131,15.66636383,0,46.05584287,-0.133090319,97.64820677,0.133090319,82.35179323,0,0.674315275,31.42385131,46.72252217,62.00280762,10,7,97% +2018-10-07 16:00:00,69.95726997,114.5510023,285.9962013,649.0472188,63.55418568,124.2076048,60.41385212,63.79375267,61.63779249,2.155960171,71.25948335,0,71.25948335,1.916393188,69.34309016,1.220984697,1.999292151,-1.953390537,1.953390537,0.864203145,0.864203145,0.222220384,1.928247603,62.01907122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24859065,1.388420341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397008824,59.61509026,60.64559948,61.0035106,60.41385212,0,0.093080827,84.65913017,-0.093080827,95.34086983,0.51283245,0,91.62778326,61.0035106,131.5533609,10,8,44% +2018-10-07 17:00:00,59.78625615,126.6323013,469.0265918,772.9363311,80.06396713,321.042306,239.8568423,81.18546368,77.64974312,3.535720566,116.1351514,0,116.1351514,2.414224014,113.7209274,1.043467017,2.210150597,-0.944490586,0.944490586,0.691671092,0.691671092,0.170702405,2.63164947,84.64289318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.63988664,1.749097079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906621082,81.36196848,76.54650772,83.11106556,239.8568423,0,0.310319017,71.92154303,-0.310319017,108.078457,0.888875488,0,289.7493756,83.11106556,344.1439058,10,9,19% +2018-10-07 18:00:00,51.28259187,141.5514946,610.7357573,831.9034986,90.39696911,510.9812616,418.7061105,92.27515107,87.67116696,4.603984114,150.8057574,0,150.8057574,2.725802148,148.0799552,0.895050077,2.470539642,-0.394751088,0.394751088,0.597660101,0.597660101,0.148013225,3.025792353,97.31988315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.27286042,1.974834377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.192176259,93.54757343,86.46503668,95.5224078,418.7061105,0,0.503310914,59.78070885,-0.503310914,120.2192911,0.950657827,0,484.5112778,95.5224078,547.0287832,10,10,13% +2018-10-07 19:00:00,45.48987004,160.0096384,698.8245261,859.5582185,96.24382364,664.8856589,566.2759072,98.60975172,93.34171726,5.268034462,172.3402034,0,172.3402034,2.902106385,169.4380971,0.793948009,2.792695025,0.000171124,-0.000171124,0.530124426,0.530124426,0.137722447,3.13362097,100.7880222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.72360905,2.102566197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270297726,96.88128055,91.99390678,98.98384675,566.2759072,0,0.658798782,48.79167472,-0.658798782,131.2083253,0.974104292,0,643.6056984,98.98384675,708.3886464,10,11,10% +2018-10-07 20:00:00,43.5557504,181.1798487,726.4759933,867.1985703,98.01351289,764.936006,664.4014792,100.5345267,95.05804384,5.476482902,179.0979845,0,179.0979845,2.955469045,176.1425154,0.760191253,3.162184897,0.343526466,-0.343526466,0.471407204,0.471407204,0.134916382,2.972213404,95.5966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37340745,2.141227262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.153358494,91.89108812,93.52676594,94.03231538,664.4014792,0,0.76614688,39.99086825,-0.76614688,140.0091317,0.984738362,0,747.7883906,94.03231538,809.3306604,10,12,8% +2018-10-07 21:00:00,45.98415883,202.1537465,691.6108515,857.4903869,95.77745877,799.5503359,701.4472662,98.10306974,92.889415,5.213654736,170.5771019,0,170.5771019,2.888043763,167.6890581,0.802574975,3.528248472,0.69458311,-0.69458311,0.411372982,0.411372982,0.13848461,2.569751844,82.65205276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.28883892,2.092377875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861776463,79.44829694,91.15061539,81.54067481,701.4472662,0,0.818023475,35.11257731,-0.818023475,144.8874227,0.98887706,0,784.7957255,81.54067481,838.1624664,10,13,7% +2018-10-07 22:00:00,52.1548542,220.1980898,596.8326251,827.0056308,89.44030672,761.8563594,670.6138315,91.2425279,86.74335147,4.499176431,147.4059351,0,147.4059351,2.696955247,144.7089798,0.910273927,3.843181674,1.11687685,-1.11687685,0.3391565,0.3391565,0.149858273,1.971491265,63.40993605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38100888,1.953934896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.428338711,60.95204245,84.80934759,62.90597735,670.6138315,0,0.810893912,35.81663876,-0.810893912,144.1833612,0.988339653,0,747.6035892,62.90597735,788.7742932,10,14,6% +2018-10-07 23:00:00,60.90291104,234.7309785,449.5084288,762.9013729,78.51636806,648.1053313,568.5679371,79.53739427,76.14880986,3.388584409,111.356081,0,111.356081,2.367558191,108.9885228,1.062956322,4.096828431,1.733430967,-1.733430967,0.233719536,0.233719536,0.174671626,1.245531772,40.06058329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.1971325,1.71528785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902383529,38.50775643,74.09951603,40.22304428,568.5679371,0,0.745270565,41.81765634,-0.745270565,138.1823437,0.982910271,0,632.9507813,40.22304428,659.2759593,10,15,4% +2018-10-07 00:00:00,71.22070824,246.5386254,262.7446551,626.6804672,61.00146716,453.2763575,392.1336295,61.14272805,59.16204786,1.980680194,65.54490289,0,65.54490289,1.839419306,63.70548359,1.243035854,4.302910746,2.935599382,-2.935599382,0.028136629,0.028136629,0.232170154,0.502645726,16.16681437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.86881074,1.332653026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364165117,15.54015691,57.23297585,16.87280993,392.1336295,0,0.625731373,51.26411152,-0.625731373,128.7358885,0.970093506,0,437.6392635,16.87280993,448.6821801,10,16,3% +2018-10-07 01:00:00,82.39643597,256.6386051,65.85349261,286.8147998,27.90271825,159.801806,132.2440262,27.55777979,27.06134835,0.496431444,16.80831161,0,16.80831161,0.841369905,15.96694171,1.4380891,4.479188647,7.440869783,-7.440869783,0,0,0.423709011,0.210342476,6.765337087,0.42604932,1,0.133592437,0,0.947336769,0.986098732,0.724496596,1,26.23825645,0.609569632,0.060632205,0.312029739,0.842490406,0.566987002,0.961238037,0.922476074,0.143951037,6.50309934,26.38220748,7.112668972,75.90154871,0,0.461078111,62.54330204,-0.461078111,117.456698,0.941558504,0,97.84795616,7.112668972,102.5030558,10,17,5% +2018-10-07 02:00:00,94.22028421,265.916178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644454182,4.64111284,-13.03220311,13.03220311,1,0,#DIV/0!,0,0,1,0.431427831,0,0.076582927,0.961238037,1,0.530382443,0.805885847,0,0,0.115824807,0.092273214,0.724496596,0.448993192,0.990845939,0.952083976,0,0,0,0,0,0,0.258863419,74.99736784,-0.258863419,105.0026322,0.85684795,0,0,0,0,10,18,0% +2018-10-07 03:00:00,106.0632221,275.1619505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85115244,4.802482013,-3.143397389,3.143397389,1,0.932293698,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03746838,87.85271734,-0.03746838,92.14728266,0,0,0,0,0,10,19,0% +2018-10-07 04:00:00,117.7215235,285.231943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054628185,4.978236537,-1.554400275,1.554400275,1,0.795971792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189817487,100.9421331,0.189817487,79.05786688,0,0.786589073,0,0,0,10,20,0% +2018-10-07 05:00:00,128.7692772,297.2788002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247447863,5.18849386,-0.844725812,0.844725812,1,0.674610311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407508825,114.0484388,0.407508825,65.95156117,0,0.927303271,0,0,0,10,21,0% +2018-10-07 06:00:00,138.4838867,313.0235758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416999784,5.463292035,-0.401559951,0.401559951,1,0.598824486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600775852,126.9254842,0.600775852,53.0745158,0,0.966774285,0,0,0,10,22,0% +2018-10-07 07:00:00,145.5462705,334.5433612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540261635,5.838883144,-0.065242199,0.065242199,1,0.541310763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756455001,139.1526675,0.756455001,40.84733252,0,0.983902215,0,0,0,10,23,0% +2018-10-08 08:00:00,148.0461353,1.602227104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.583892506,0.027964138,0.229640341,-0.229640341,1,0.490882878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86394581,149.7625477,0.86394581,30.23745233,0,0.992126,0,0,0,10,0,0% +2018-10-08 09:00:00,144.967746,28.25449656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530164477,0.493133993,0.523057777,-0.523057777,1,0.440705542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915933074,156.3385853,0.915933074,23.6614147,0,0.995410859,0,0,0,10,1,0% +2018-10-08 10:00:00,137.5343412,49.07880925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400427088,0.856586814,0.85489035,-0.85489035,1,0.38395883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908885127,155.3517361,0.908885127,24.6482639,0,0.994987547,0,0,0,10,2,0% +2018-10-08 11:00:00,127.6314085,64.32580233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227588307,1.122697045,1.29069969,-1.29069969,1,0.309431043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843294345,147.489647,0.843294345,32.51035298,0,0.990708721,0,0,0,10,3,0% +2018-10-08 12:00:00,116.5000538,76.09722173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033309517,1.328147071,1.994339027,-1.994339027,1,0.18910163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723643521,136.3561214,0.723643521,43.64387856,0,0.980905206,0,0,0,10,4,0% +2018-10-08 13:00:00,104.8185417,86.04414281,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82942867,1.501753594,3.632664261,-3.632664261,1,0,#DIV/0!,0,0,0.08346725,1,0.268626553,0,0.929151629,0.967913592,0.724496596,1,0,0,0.013734231,0.312029739,0.961790658,0.686287254,0.961238037,0.922476074,0,0,0,0,0,0,-0.558100344,123.9245254,0.558100344,56.07547458,0,0.960410376,0,0,0,10,5,0% +2018-10-08 14:00:00,92.99531182,95.27414029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62307438,1.66284744,17.28165719,-17.28165719,1,0,#DIV/0!,0,0,0.70804486,1,0.057800367,0,0.955740478,0.994502441,0.724496596,1,0,0,0.090608371,0.312029739,0.775377742,0.499874338,0.961238037,0.922476074,0,0,0,0,0,0,-0.357960774,110.9750129,0.357960774,69.0249871,0,0.910319891,0,0,0,10,6,0% +2018-10-08 15:00:00,81.2459156,104.6266796,84.22095856,339.6534854,32.52778956,32.18184985,0,32.18184985,31.54695669,0.634893161,67.30356404,45.90238469,21.40117935,0.98083287,20.42034648,1.418008731,1.826080044,-5.343750717,5.343750717,0.556011117,0.556011117,0.386219655,0.461877378,14.85556418,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.32413471,0.710610075,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.334628588,14.27973334,30.6587633,14.99034342,0,45.90238469,-0.135144748,97.76699004,0.135144748,82.23300996,0,0.680026318,30.6587633,46.20517307,60.89912498,10,7,99% +2018-10-08 16:00:00,70.17077232,114.8950567,282.3311003,646.8089154,62.92197873,121.9083993,58.7554193,63.15298,61.02464891,2.128331091,70.3517738,0,70.3517738,1.897329816,68.45444398,1.224711016,2.005297033,-1.964513829,1.964513829,0.86610534,0.86610534,0.222865914,1.906869507,61.33147815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65921372,1.374608993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.381520466,58.95414966,60.04073419,60.32875865,58.7554193,0,0.090838914,84.78812899,-0.090838914,95.21187101,0.4995751,0,89.39347868,60.32875865,128.8774446,10,8,44% +2018-10-08 17:00:00,60.03615009,126.9747308,464.9689445,771.8834015,79.44908411,318.1777295,237.6191962,80.55853339,77.05340109,3.505132307,115.1327868,0,115.1327868,2.395683022,112.7371038,1.047828489,2.216127118,-0.945360012,0.945360012,0.691819773,0.691819773,0.170869657,2.609495372,83.93034124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.06665999,1.735664194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890570514,80.67703644,75.95723051,82.41270064,237.6191962,0,0.307843381,72.07068941,-0.307843381,107.9293106,0.887579747,0,286.8632164,82.41270064,340.8006807,10,9,19% +2018-10-08 18:00:00,51.58020187,141.869032,606.3188046,831.2413529,89.77001456,507.7151485,416.0813439,91.63380466,87.0631174,4.570687259,149.715911,0,149.715911,2.706897155,147.0090139,0.900244352,2.476081715,-0.392345654,0.392345654,0.597248748,0.597248748,0.148057447,3.002388797,96.56714437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.68838005,1.961137774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175220463,92.82401228,85.86360052,94.78515005,416.0813439,0,0.500554192,59.96332817,-0.500554192,120.0366718,0.950110716,0,481.1869439,94.78515005,543.2219289,10,10,13% +2018-10-08 19:00:00,45.8381334,160.247232,694.0636522,859.0143893,95.59880185,661.2307438,563.2824536,97.94829023,92.71614525,5.232144984,171.1664247,0,171.1664247,2.882656598,168.2837681,0.800026351,2.796841816,0.004443124,-0.004443124,0.529393871,0.529393871,0.137737802,3.109014451,99.9965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.12228544,2.088474892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252470386,96.12052769,91.37475583,98.20900259,563.2824536,0,0.655731104,49.02489062,-0.655731104,130.9751094,0.973749232,0,639.8706126,98.20900259,704.1464407,10,11,10% +2018-10-08 20:00:00,43.93802397,181.2710718,721.4017954,866.6297528,97.34969956,760.8825133,661.0300349,99.85247839,94.41424694,5.438231455,177.84767,0,177.84767,2.935452624,174.9122174,0.766863185,3.163777042,0.349575755,-0.349575755,0.470372715,0.470372715,0.134945186,2.946669644,94.77502485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.75456538,2.126725433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.134852126,91.10135883,92.8894175,93.22808426,661.0300349,0,0.762759452,40.29192731,-0.762759452,139.7080727,0.984448534,0,743.6394666,93.22808426,804.6553831,10,12,8% +2018-10-08 21:00:00,46.36857427,202.0877079,686.2751531,856.7624236,95.09482816,795.0877628,697.6869626,97.40080022,92.22736823,5.173431988,169.2628162,0,169.2628162,2.867459932,166.3953563,0.80928429,3.527095882,0.703077555,-0.703077555,0.409920346,0.409920346,0.13856662,2.543702474,81.81421548,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65245438,2.077464959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842903783,78.64293587,90.49535816,80.72040083,697.6869626,0,0.814329554,35.47887641,-0.814329554,144.5211236,0.988599797,0,780.2285477,80.72040083,833.0584357,10,13,7% +2018-10-08 22:00:00,52.51769057,220.0271613,591.3107882,825.9019937,88.73584285,756.9612548,666.4435745,90.51768028,86.06012979,4.457550492,146.0458596,0,146.0458596,2.675713062,143.3701466,0.916606616,3.840198409,1.129657073,-1.129657073,0.336970953,0.336970953,0.150066335,1.945583907,62.57666634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72427021,1.938545005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409568917,60.1510719,84.13383913,62.08961691,666.4435745,0,0.806928158,36.20311922,-0.806928158,143.7968808,0.988036615,0,742.6044926,62.08961691,783.2409051,10,14,5% +2018-10-08 23:00:00,61.23795413,234.5095148,443.9089094,760.9208805,77.7742646,642.6842303,563.9087738,78.77545644,75.42908357,3.346372867,109.9760355,0,109.9760355,2.345181034,107.6308545,1.068803927,4.092963161,1.75567184,-1.75567184,0.229916123,0.229916123,0.175203207,1.2208816,39.26774901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50530421,1.699075676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.884524563,37.74565397,73.38982878,39.44472965,563.9087738,0,0.741087265,42.17588364,-0.741087265,137.8241164,0.982531562,0,627.4479973,39.44472965,653.2637839,10,15,4% +2018-10-08 00:00:00,71.53171718,246.2961911,257.2741408,622.2752398,60.15001121,446.9598661,386.6841585,60.27570758,58.33626644,1.939441146,64.19283882,0,64.19283882,1.813744768,62.37909405,1.248463984,4.298679469,2.987938364,-2.987938364,0.019186136,0.019186136,0.233797346,0.481946885,15.5010685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.07503823,1.31405191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.349168877,14.90021665,56.4242071,16.21426856,386.6841585,0,0.621403736,51.58128471,-0.621403736,128.4187153,0.969537014,0,431.3288116,16.21426856,441.9407261,10,16,2% +2018-10-08 01:00:00,82.68801947,256.386299,61.56017985,274.6520995,26.60465489,151.7084078,125.4419148,26.26649303,25.80242639,0.464066639,15.72820683,0,15.72820683,0.802228506,14.92597832,1.443178192,4.474785074,7.744930374,-7.744930374,0,0,0.432173118,0.200557126,6.450606597,0.442681898,1,0.128406305,0,0.947954173,0.986716136,0.724496596,1,25.01692096,0.581211822,0.062586643,0.312029739,0.837896356,0.562392952,0.961238037,0.922476074,0.137251936,6.200568422,25.1541729,6.781780243,69.91104991,0,0.456730223,62.82368477,-0.456730223,117.1763152,0.940526185,0,90.90734596,6.781780243,95.34588549,10,17,5% +2018-10-08 02:00:00,94.50772719,265.6559303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649471008,4.63657066,-12.21373984,12.21373984,1,0,#DIV/0!,0,0,1,0.382268466,0,0.081692786,0.961238037,1,0.519085284,0.794588688,0,0,0.115824807,0.079515498,0.724496596,0.448993192,0.992231658,0.953469695,0,0,0,0,0,0,0.254458579,75.2584942,-0.254458579,104.7415058,0.853504365,0,0,0,0,10,18,0% +2018-10-08 03:00:00,106.3509436,274.892149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856174128,4.797773088,-3.091838313,3.091838313,1,0.941110819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.033156964,88.09989765,-0.033156964,91.90010235,0,0,0,0,0,10,19,0% +2018-10-08 04:00:00,118.018973,284.9516965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059819659,4.973345312,-1.540279139,1.540279139,1,0.793556935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.193959006,101.183918,0.193959006,78.81608198,0,0.792213568,0,0,0,10,20,0% +2018-10-08 05:00:00,129.0874416,296.9955062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253000879,5.183549448,-0.839645329,0.839645329,1,0.673741497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.411415687,114.2937971,0.411415687,65.70620285,0,0.928468416,0,0,0,10,21,0% +2018-10-08 06:00:00,138.8336558,312.7729556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423104407,5.458917886,-0.400051994,0.400051994,1,0.59856661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604399475,127.1856409,0.604399475,52.81435911,0,0.967273257,0,0,0,10,22,0% +2018-10-08 07:00:00,145.9275578,334.4267508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546916352,5.836847908,-0.065685882,0.065685882,1,0.541386637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759766314,139.443601,0.759766314,40.55639899,0,0.984190291,0,0,0,10,23,0% +2018-10-09 08:00:00,148.4251277,1.749394698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59050717,0.030532697,0.227738468,-0.227738468,1,0.491208118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866937256,150.1046562,0.866937256,29.89534377,0,0.992325699,0,0,0,10,0,0% +2018-10-09 09:00:00,145.2941873,28.6173024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535861952,0.49946615,0.519652413,-0.519652413,1,0.441287893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918619118,156.725034,0.918619118,23.27496598,0,0.995570477,0,0,0,10,1,0% +2018-10-09 10:00:00,137.7970066,49.50021352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405011465,0.863941706,0.849412836,-0.849412836,1,0.38489554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911301249,155.6857984,0.911301249,24.31420159,0,0.995133401,0,0,0,10,2,0% +2018-10-09 11:00:00,127.8476164,64.73111902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231361847,1.129771155,1.281544434,-1.281544434,1,0.310996684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845494587,147.7249656,0.845494587,32.27503443,0,0.990863016,0,0,0,10,3,0% +2018-10-09 12:00:00,116.6893674,76.47413394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036613662,1.33472543,1.976512828,-1.976512828,1,0.192150089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725696751,136.5268402,0.725696751,43.47315979,0,0.981100697,0,0,0,10,4,0% +2018-10-09 13:00:00,104.9964529,86.39920821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832533806,1.507950654,3.581109839,-3.581109839,1,0,#DIV/0!,0,0,0.076000921,1,0.272306637,0,0.928600805,0.967362769,0.724496596,1,0,0,0.012548162,0.312029739,0.965032206,0.689528802,0.961238037,0.922476074,0,0,0,0,0,0,-0.560085506,124.0617113,0.560085506,55.93828874,0,0.960727917,0,0,0,10,5,0% +2018-10-09 14:00:00,93.17428171,95.61712694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626197994,1.668833686,16.25908818,-16.25908818,1,0,#DIV/0!,0,0,0.692337431,1,0.061426688,0,0.955369004,0.994130967,0.724496596,1,0,0,0.089099748,0.312029739,0.778583719,0.503080315,0.961238037,0.922476074,0,0,0,0,0,0,-0.359961438,111.0978278,0.359961438,68.90217219,0,0.911096232,0,0,0,10,6,0% +2018-10-09 15:00:00,81.43517613,104.966139,81.32315556,333.0951248,31.71587189,31.37256963,0,31.37256963,30.75952133,0.613048298,66.37803099,45.70393984,20.67409115,0.956350557,19.71774059,1.42131195,1.832004729,-5.441222582,5.441222582,0.539342447,0.539342447,0.389998048,0.440780496,14.17701591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.5672219,0.692872723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.319343969,13.62748694,29.88656587,14.32035967,0,45.70393984,-0.137209873,97.88642563,0.137209873,82.11357437,0,0.685594737,29.88656587,45.65474027,59.76668028,10,7,100% +2018-10-09 16:00:00,70.3853888,115.2357928,278.6426498,644.5090326,62.28625496,119.5963879,57.08776739,62.50862056,60.40809456,2.100525993,69.43829686,0,69.43829686,1.878160399,67.56013646,1.22845678,2.011244,-1.976002809,1.976002809,0.868070072,0.868070072,0.223534534,1.885350141,60.63934139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.06655823,1.360720816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.365929759,58.28884147,59.43248799,59.64956229,57.08776739,0,0.088575589,84.91833292,-0.088575589,95.08166708,0.485510389,0,87.14919212,59.64956229,126.1886376,10,8,45% +2018-10-09 17:00:00,60.28711971,127.3127921,460.8822985,770.801002,78.83175468,315.2846366,235.3556247,79.92901186,76.45468642,3.474325444,114.1233174,0,114.1233174,2.377068262,111.7462492,1.052208735,2.222027402,-0.946318326,0.946318326,0.691983654,0.691983654,0.171045308,2.587220387,83.21390116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49115268,1.722177864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.874432363,79.98836699,75.36558504,81.71054485,235.3556247,0,0.305339023,72.22143852,-0.305339023,107.7785615,0.886247593,0,283.9489409,81.71054485,337.4268583,10,9,19% +2018-10-09 18:00:00,51.87845224,142.1810319,601.8725094,830.5606527,89.141022,504.4137964,413.4235359,90.9902605,86.45309129,4.537169208,148.6188889,0,148.6188889,2.687930709,145.9309581,0.905449802,2.48152714,-0.389967528,0.389967528,0.596842065,0.596842065,0.148106153,2.978888586,95.81129679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.10199975,1.947396648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.15819464,92.09746283,85.26019439,94.04485948,413.4235359,0,0.497764413,60.14779535,-0.497764413,119.8522047,0.949550875,0,477.8268744,94.04485948,539.377354,10,10,13% +2018-10-09 19:00:00,46.18612929,160.4789971,689.276963,858.4565933,94.95211069,657.538892,560.2538768,97.28501512,92.08895422,5.196060899,169.9863363,0,169.9863363,2.863156473,167.1231799,0.806100025,2.800886879,0.008713482,-0.008713482,0.528663596,0.528663596,0.137756106,3.084345711,99.20316044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51940557,2.074347118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.234597968,95.35785119,90.75400354,97.43219831,560.2538768,0,0.652629243,49.25986988,-0.652629243,130.7401301,0.973386823,0,636.0977446,97.43219831,699.8651697,10,11,10% +2018-10-09 20:00:00,44.31901982,181.3583328,716.3086681,866.0487864,96.6846678,756.7945831,657.6254774,99.16910565,93.76926834,5.39983731,176.5927292,0,176.5927292,2.915399463,173.6773297,0.773512817,3.165300034,0.355643608,-0.355643608,0.469335051,0.469335051,0.134976264,2.921107995,93.95287435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13458742,2.112196986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.116332798,90.3110765,92.25092022,92.42327349,657.6254774,0,0.759339991,40.59395257,-0.759339991,139.4060474,0.984153343,0,739.4552322,92.42327349,799.9444162,10,12,8% +2018-10-09 21:00:00,46.75119697,202.0205318,680.9302487,856.0220513,94.41152561,790.5968869,693.8990773,96.69780962,91.56466977,5.133139841,167.9462782,0,167.9462782,2.846855839,165.0994223,0.815962316,3.525923436,0.711619614,-0.711619614,0.408459568,0.408459568,0.138650803,2.517687667,80.97748986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.01544342,2.062537364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824056144,77.83864338,89.83949956,79.90118074,693.8990773,0,0.810608881,35.84453651,-0.810608881,144.1554635,0.988317972,0,775.6324282,79.90118074,827.926153,10,13,7% +2018-10-09 22:00:00,52.87865226,219.8566543,585.7917221,824.7824376,88.03130114,752.0466448,662.2538668,89.79277805,85.37683261,4.41594544,144.6864536,0,144.6864536,2.65446853,142.0319851,0.922906586,3.8372225,1.14254816,-1.14254816,0.334766447,0.334766447,0.150277475,1.919770748,61.74642642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.06745897,1.923153414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.390867372,59.35301371,83.45832634,61.27616713,662.2538668,0,0.802943706,36.58786783,-0.802943706,143.4121322,0.987729134,0,737.5857646,61.27616713,777.6897904,10,14,5% +2018-10-09 23:00:00,61.57109525,234.288769,438.3260438,758.9117606,77.03250321,637.2526899,559.238714,78.01397588,74.70968902,3.304286868,108.6000383,0,108.6000383,2.322814191,106.2772241,1.074618336,4.089110419,1.778218253,-1.778218253,0.226060459,0.226060459,0.175742474,1.196398043,38.48027364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8137948,1.682870975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866786309,36.98870269,72.68058111,38.67157367,559.238714,0,0.736895569,42.53236713,-0.736895569,137.4676329,0.98214778,0,621.9356428,38.67157367,647.2454144,10,15,4% +2018-10-09 00:00:00,71.84069785,246.0542563,251.8384125,617.7903855,59.29782155,440.6341497,381.2259119,59.40823777,57.50977344,1.89846433,62.84918689,0,62.84918689,1.788048105,61.06113878,1.253856714,4.294456911,3.041587596,-3.041587596,0.010011577,0.010011577,0.235459797,0.461543353,14.84482077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.28058172,1.295434766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334386588,14.26940637,55.61496831,15.56484114,381.2259119,0,0.61707971,51.89680836,-0.61707971,128.1031916,0.968973191,0,425.0126566,15.56484114,435.1995338,10,16,2% +2018-10-09 01:00:00,82.97716603,256.134121,57.37453862,262.3157085,25.30253708,143.6442382,118.6721525,24.97208573,24.53957223,0.432513507,14.674086,0,14.674086,0.762964849,13.91112115,1.448224751,4.470383739,8.071122756,-8.071122756,0,0,0.441006371,0.190741212,6.134893056,0.459485635,1,0.123270294,0,0.94855954,0.987321504,0.724496596,1,23.79138369,0.552765436,0.064535204,0.312029739,0.833346361,0.557842957,0.961238037,0.922476074,0.130549545,5.897092558,23.92193324,6.449857994,64.14400309,0,0.452402005,63.10210115,-0.452402005,116.8978988,0.939478828,0,84.18386605,6.449857994,88.40516911,10,17,5% +2018-10-09 02:00:00,94.79272965,265.3953568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654445239,4.632022796,-11.4988606,11.4988606,1,0,#DIV/0!,0,0,1,0.331807478,0,0.08674689,0.961238037,1,0.508116774,0.783620178,0,0,0.115824807,0.067121292,0.724496596,0.448993192,0.993541351,0.954779388,0,0,0,0,0,0,0.250081805,75.51764695,-0.250081805,104.4823531,0.850065423,0,0,0,0,10,18,0% +2018-10-09 03:00:00,106.6359683,274.6214292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861148747,4.793048136,-3.042471902,3.042471902,1,0.949552972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02888495,88.34478404,-0.02888495,91.65521596,0,0,0,0,0,10,19,0% +2018-10-09 04:00:00,118.3134995,284.6696677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064960116,4.968422982,-1.526584909,1.526584909,1,0.791215084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.198051553,101.4230422,0.198051553,78.57695777,0,0.79754048,0,0,0,10,20,0% +2018-10-09 05:00:00,129.4025846,296.709121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258501162,5.178551081,-0.8347111,0.8347111,1,0.672897695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415266432,114.5360961,0.415266432,65.46390389,0,0.929595373,0,0,0,10,21,0% +2018-10-09 06:00:00,139.1806367,312.5176198,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429160366,5.454461436,-0.398607474,0.398607474,1,0.598319582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607962743,127.4423414,0.607962743,52.55765865,0,0.967758118,0,0,0,10,22,0% +2018-10-09 07:00:00,146.3067851,334.3053749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553535117,5.834729499,-0.06615881,0.06615881,1,0.541467512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763016237,139.7308291,0.763016237,40.26917087,0,0.984470595,0,0,0,10,23,0% +2018-10-10 08:00:00,148.8026349,1.895933344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597095914,0.033090279,0.225826108,-0.225826108,1,0.491535151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869869544,150.4434832,0.869869544,29.55651678,0,0.992520117,0,0,0,10,0,0% +2018-10-10 09:00:00,145.6190238,28.9819936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541531419,0.505831212,0.516251352,-0.516251352,1,0.441869509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921251347,157.1097113,0.921251347,22.89028868,0,0.995725995,0,0,0,10,1,0% +2018-10-10 10:00:00,138.0582128,49.92231664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409570373,0.871308796,0.843958394,-0.843958394,1,0.385828304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913671642,156.0177814,0.913671642,23.98221863,0,0.995275745,0,0,0,10,2,0% +2018-10-10 11:00:00,128.0628844,65.13582802,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235118983,1.13683466,1.272450829,-1.272450829,1,0.312551782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847659369,147.9579948,0.847659369,32.04200516,0,0.991014042,0,0,0,10,3,0% +2018-10-10 12:00:00,116.8783249,76.8497067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039911594,1.341280411,1.95887501,-1.95887501,1,0.195166334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727726268,136.6961163,0.727726268,43.30388374,0,0.981292847,0,0,0,10,4,0% +2018-10-10 13:00:00,105.1745276,86.75248675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835641796,1.514116528,3.530604978,-3.530604978,1,0,#DIV/0!,0,0,0.068567688,1,0.276008377,0,0.928043877,0.96680584,0.724496596,1,0,0,0.011359306,0.312029739,0.968292416,0.692789012,0.961238037,0.922476074,0,0,0,0,0,0,-0.562059368,124.1983367,0.562059368,55.80166328,0,0.961041426,0,0,0,10,5,0% +2018-10-10 14:00:00,93.35384043,95.95792555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629331885,1.674781744,15.34261561,-15.34261561,1,0,#DIV/0!,0,0,0.676750761,1,0.065085874,0,0.954991013,0.993752976,0.724496596,1,0,0,0.087585614,0.312029739,0.781819745,0.506316341,0.961238037,0.922476074,0,0,0,0,0,0,-0.361963025,111.2208011,0.361963025,68.77919888,0,0.911864344,0,0,0,10,6,0% +2018-10-10 15:00:00,81.62525487,105.3029036,78.43137639,326.3724668,30.89621802,30.55583189,0,30.55583189,29.96458305,0.591248845,65.40724274,45.45901252,19.94823022,0.931634968,19.01659525,1.42462945,1.837882379,-5.543581722,5.543581722,0.521838003,0.521838003,0.39392676,0.419904226,13.50556331,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.80309699,0.674966363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.304219182,12.98206116,29.10731617,13.65702752,0,45.45901252,-0.139285685,98.00651402,0.139285685,81.99348598,0,0.691025565,29.10731617,45.07036733,58.60497018,10,7,101% +2018-10-10 16:00:00,70.6010671,115.5730995,274.9319237,642.1465998,61.64706282,117.2721941,55.41146468,61.8607294,59.78817642,2.072552972,68.51931434,0,68.51931434,1.858886398,66.66042795,1.232221076,2.017131114,-1.987872243,1.987872243,0.870099864,0.870099864,0.224226645,1.863695459,59.94285237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.47066933,1.346756867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.350241016,57.61934974,58.82091035,58.96610661,55.41146468,0,0.086290988,85.04973416,-0.086290988,94.95026584,0,0,58.82091035,58.96610661,97.4130478,10,8,66% +2018-10-10 17:00:00,60.53908839,127.6463893,456.767979,769.6890522,78.21206614,312.3637099,233.0667161,79.29699374,75.85368378,3.443309966,113.1070672,0,113.1070672,2.358382366,110.7486848,1.056606419,2.227849772,-0.947369518,0.947369518,0.692163419,0.692163419,0.171229311,2.564832289,82.49382296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91344608,1.708639996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.858212262,79.29620043,74.77165834,81.00484043,233.0667161,0,0.302806329,72.37376404,-0.302806329,107.626236,0.884877956,0,281.0072577,81.00484043,334.0233056,10,9,19% +2018-10-10 18:00:00,52.17724101,142.4874386,597.3985301,829.8615658,88.51009869,501.0781974,410.7335623,90.34463511,85.84119265,4.503442462,147.5150961,0,147.5150961,2.668906043,144.8461901,0.91066465,2.486874947,-0.387619104,0.387619104,0.59644046,0.59644046,0.148159217,2.955300919,95.05263632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.5138195,1.933613343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.141105455,91.36820954,84.65492496,93.30182288,410.7335623,0,0.494942264,60.33405676,-0.494942264,119.6659432,0.948978116,0,474.4320871,93.30182288,535.4962641,10,10,13% +2018-10-10 19:00:00,46.53374136,160.7049342,684.4664504,857.8851109,94.30387524,653.8114755,557.1914128,96.62006268,91.46026546,5.159797223,168.8004252,0,168.8004252,2.843609783,165.9568154,0.812167,2.804830227,0.012980076,-0.012980076,0.527933966,0.527933966,0.137777206,3.059625109,98.4080609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.91508602,2.060185608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216687976,94.59357127,90.13177399,96.65375688,557.1914128,0,0.64949421,49.49652164,-0.64949421,130.5034784,0.97301702,0,632.2885019,96.65375688,695.5464527,10,11,10% +2018-10-10 20:00:00,44.69862156,181.4416391,711.1989051,865.4560418,96.01856049,752.6739866,654.1894222,98.48456438,93.12324662,5.361317759,175.3337224,0,175.3337224,2.89531387,172.4384085,0.780138117,3.166754002,0.361727756,-0.361727756,0.4682946,0.4682946,0.135009432,2.895539661,93.13050885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.51360677,2.097645043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.097808628,89.5205875,91.6114154,91.61823254,654.1894222,0,0.755889832,40.8968178,-0.755889832,139.1031822,0.983852795,0,735.2375066,91.61823254,795.1998074,10,12,8% +2018-10-10 21:00:00,47.13190822,201.9521884,675.5786791,855.2697521,93.72771269,786.0798712,690.0855974,95.99427378,90.90147633,5.092797449,166.6281087,0,166.6281087,2.826236356,163.8018723,0.822606981,3.524730619,0.720206614,-0.720206614,0.406991105,0.406991105,0.138736931,2.491719085,80.14225101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37795665,2.047598619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805241995,77.03578003,89.18319865,79.08337865,690.0855974,0,0.806863093,36.20943037,-0.806863093,143.7905696,0.988031618,0,771.0095883,79.08337865,822.768078,10,13,7% +2018-10-10 22:00:00,53.23761453,219.686536,580.2781399,823.6476091,87.32686498,747.1150603,658.0470407,89.06801953,84.6936378,4.374381729,143.3283804,0,143.3283804,2.633227181,140.6951533,0.929171659,3.834253375,1.155546938,-1.155546938,0.332543525,0.332543525,0.150491392,1.894063453,60.91959144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.41074613,1.907764129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372242524,58.55822848,82.78298865,60.46599261,658.0470407,0,0.798942452,36.97076766,-0.798942452,143.0292323,0.98741727,0,732.550001,60.46599261,772.1237838,10,14,5% +2018-10-10 23:00:00,61.90220773,234.0687302,432.7626344,756.8748837,76.29129819,631.813575,554.5603934,77.2531816,73.99083406,3.262347538,107.2287752,0,107.2287752,2.300464125,104.9283111,1.080397339,4.085270017,1.801068154,-1.801068154,0.222152896,0.222152896,0.176289014,1.172092292,37.69851714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12280408,1.666678428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849176875,36.2372486,71.97198095,37.90392703,554.5603934,0,0.732697577,42.88697926,-0.732697577,137.1130207,0.981759021,0,616.4166498,37.90392703,641.224012,10,15,4% +2018-10-10 00:00:00,72.14752487,245.8128316,246.4403619,613.2267422,58.44515813,434.302347,375.7617545,58.54059251,56.68282097,1.857771545,61.51465608,0,61.51465608,1.762337157,59.75231893,1.259211856,4.290243254,3.096575244,-3.096575244,0.000608135,0.000608135,0.237157411,0.441446131,14.19842503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.48568355,1.276807271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319826219,13.6480662,54.80550977,14.92487347,375.7617545,0,0.612761526,52.21055174,-0.612761526,127.7894483,0.968402188,0,418.6940149,14.92487347,428.4620461,10,16,2% +2018-10-10 01:00:00,83.26373495,255.882097,53.30253535,249.8262256,23.99808508,135.6224087,111.9461374,23.6762713,23.27445427,0.401817027,13.64744762,0,13.64744762,0.723630809,12.92381681,1.453226322,4.465985089,8.421768417,-8.421768417,0,0,0.450224083,0.180907702,5.818613568,0.476454464,1,0.118186536,0,0.949152786,0.987914749,0.724496596,1,22.56333681,0.524268058,0.066476908,0.312029739,0.828842431,0.553339027,0.961238037,0.922476074,0.12385011,5.593072683,22.68718692,6.117340741,58.60890054,0,0.44809602,63.37840796,-0.44809602,116.621592,0.938416773,0,77.68676222,6.117340741,81.69043939,10,17,5% +2018-10-10 02:00:00,95.07516979,265.1344938,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65937475,4.627469878,-10.86934724,10.86934724,1,0,#DIV/0!,0,0,1,0.280016926,0,0.091743577,0.961238037,1,0.497473935,0.772977339,0,0,0.115824807,0.055084453,0.724496596,0.448993192,0.994778616,0.956016653,0,0,0,0,0,0,0.245735319,75.77470704,-0.245735319,104.225293,0.846529045,0,0,0,0,10,18,0% +2018-10-10 03:00:00,106.9181726,274.3498333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866074141,4.788307894,-2.9951865,2.9951865,1,0.957639252,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024654434,88.58726184,-0.024654434,91.41273816,0,0,0,0,0,10,19,0% +2018-10-10 04:00:00,118.6049738,284.3858971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070047303,4.963470251,-1.513307633,1.513307633,1,0.788944536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202093236,101.6593925,0.202093236,78.34060749,0,0.802589443,0,0,0,10,20,0% +2018-10-10 05:00:00,129.7145676,296.4196613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263946293,5.173499057,-0.829921947,0.829921947,1,0.672078701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419059428,114.7752195,0.419059428,65.22478049,0,0.930685181,0,0,0,10,21,0% +2018-10-10 06:00:00,139.5246824,312.2575093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435165096,5.449921651,-0.397226619,0.397226619,1,0.598083442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611464333,127.6954592,0.611464333,52.30454077,0,0.968229082,0,0,0,10,22,0% +2018-10-10 07:00:00,146.6838183,334.1790588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560115589,5.832524868,-0.06666144,0.06666144,1,0.541553467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766203772,140.0142041,0.766203772,39.98579588,0,0.984743208,0,0,0,10,23,0% +2018-10-11 08:00:00,149.178558,2.041687497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603657011,0.035634169,0.223902826,-0.223902826,1,0.491864051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872742002,150.7788583,0.872742002,29.22114167,0,0.9927093,0,0,0,10,0,0% +2018-10-11 09:00:00,145.9421867,29.34842705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547171676,0.512226682,0.512854234,-0.512854234,1,0.44245045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923829393,157.4924942,0.923829393,22.50750582,0,0.995877453,0,0,0,10,1,0% +2018-10-11 10:00:00,138.3179229,50.34494922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414103169,0.878685126,0.838526731,-0.838526731,1,0.386757173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915996197,156.3475987,0.915996197,23.65240132,0,0.995414621,0,0,0,10,2,0% +2018-10-11 11:00:00,128.2771958,65.53977246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238859422,1.14388482,1.26341847,-1.26341847,1,0.314096407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849788782,148.1887036,0.849788782,31.81129642,0,0.99116185,0,0,0,10,3,0% +2018-10-11 12:00:00,117.0669167,77.22380241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043203141,1.347809613,1.94142367,-1.94142367,1,0.198150689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729732284,136.8639552,0.729732284,43.13604481,0,0.981481721,0,0,0,10,4,0% +2018-10-11 13:00:00,105.3527539,87.10385367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838752432,1.520249038,3.481122383,-3.481122383,1,0,#DIV/0!,0,0,0.061168002,1,0.279731524,0,0.927480839,0.966242802,0.724496596,1,0,0,0.010167767,0.312029739,0.971571081,0.696067677,0.961238037,0.922476074,0,0,0,0,0,0,-0.564022179,124.3344172,0.564022179,55.66558283,0,0.961351004,0,0,0,10,5,0% +2018-10-11 14:00:00,93.53396807,96.29641786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632475705,1.68068955,14.51663391,-14.51663391,1,0,#DIV/0!,0,0,0.66128527,1,0.068777839,0,0.954606433,0.993368396,0.724496596,1,0,0,0.086066124,0.312029739,0.785085677,0.509582273,0.961238037,0.922476074,0,0,0,0,0,0,-0.363965735,111.3439461,0.363965735,68.6560539,0,0.912624431,0,0,0,10,6,0% +2018-10-11 15:00:00,81.81611302,105.636858,75.54759545,319.4837762,30.06889523,29.73171678,0,29.73171678,29.1622071,0.569509686,64.39019084,45.16611353,19.22407731,0.906688134,18.31738918,1.427960553,1.843710983,-5.651185767,5.651185767,0.503436627,0.503436627,0.398012604,0.399269065,12.84186561,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.0318227,0.656892466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.289269078,12.34408969,28.32109178,13.00098215,0,45.16611353,-0.141372166,98.12725537,0.141372166,81.87274463,0,0.696323592,28.32109178,44.45121255,57.41352137,10,7,103% +2018-10-11 16:00:00,70.8177537,115.9068662,271.2000281,639.7206441,61.0044533,114.9364667,53.72710239,61.20936431,59.16494395,2.044420367,67.595096,0,67.595096,1.839509349,65.75558665,1.236002971,2.022956441,-2.000137526,2.000137526,0.872197351,0.872197351,0.224942651,1.841911571,59.24220764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.87159457,1.332718262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334458663,56.94586337,58.20605323,58.27858164,53.72710239,0,0.083985257,85.1823243,-0.083985257,94.8176757,0,0,58.20605323,58.27858164,96.34821934,10,8,66% +2018-10-11 17:00:00,60.79197819,127.9754273,452.6273501,768.5474905,77.59010891,309.4156626,230.7530856,78.662577,75.25048085,3.412096156,112.0843694,0,112.0843694,2.339628061,109.7447414,1.061020178,2.233592568,-0.948517709,0.948517709,0.692359771,0.692359771,0.17142161,2.542339041,81.77036279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.33362448,1.695052566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841915981,78.600783,74.17554046,80.29583557,230.7530856,0,0.300245708,72.52763848,-0.300245708,107.4723615,0.883469726,0,278.0389058,80.29583557,330.5909243,10,9,19% +2018-10-11 18:00:00,52.47646517,142.7881977,592.8985707,829.1442824,87.87735519,497.7093849,408.0123363,89.69704856,85.2275287,4.469519867,146.4049493,0,146.4049493,2.649826492,143.7551228,0.915887097,2.492124183,-0.385302866,0.385302866,0.59604436,0.59604436,0.148216507,2.931635199,94.29146543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.92394237,1.919790273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123959722,90.63654312,84.04790209,92.55633339,408.0123363,0,0.492088464,60.52205708,-0.492088464,119.4779429,0.948392253,0,471.0036411,92.55633339,531.5799102,10,10,13% +2018-10-11 19:00:00,46.8808525,160.9250438,679.6341561,857.3002462,93.65422399,650.0499167,554.0963438,95.95357294,90.83020359,5.123369347,167.6091901,0,167.6091901,2.824020401,164.7851697,0.818225232,2.808671864,0.017240686,-0.017240686,0.527205359,0.527205359,0.137800938,3.034863202,97.61163285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.30944659,2.045993167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198748059,93.82801433,89.50819465,95.8740075,554.0963438,0,0.646327055,49.7347534,-0.646327055,130.2652466,0.972639785,0,628.4443433,95.8740075,691.1919637,10,11,10% +2018-10-11 20:00:00,45.07671199,181.5209968,706.0748514,864.8519174,95.35152409,748.5225529,650.7235386,97.79901431,92.47632383,5.322690477,174.0712226,0,174.0712226,2.875200261,171.1960224,0.78673704,3.168139055,0.367825796,-0.367825796,0.467251774,0.467251774,0.135044498,2.869976027,92.3082945,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89175998,2.083072802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.079287862,88.73024379,90.97104784,90.81331659,650.7235386,0,0.752410355,41.20039608,-0.752410355,138.7996039,0.983546901,0,730.9881675,90.81331659,790.423667,10,12,8% +2018-10-11 21:00:00,47.51058838,201.8826483,670.2230337,854.5060438,93.04355475,781.5389415,686.2485689,95.29037261,90.23794828,5.052424331,165.3089406,0,165.3089406,2.80560647,162.5033341,0.829216197,3.523516916,0.728835683,-0.728835683,0.405515447,0.405515447,0.138824764,2.465808539,79.30887877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.74014826,2.032652337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786469892,76.23471093,88.52661815,78.26736327,686.2485689,0,0.803093874,36.57343046,-0.803093874,143.4265695,0.987740778,0,766.3623133,78.26736327,817.5867372,10,13,7% +2018-10-11 22:00:00,53.59445164,219.5167738,574.7727985,822.4982067,86.62272216,742.1690993,653.8254917,88.34360762,84.01072748,4.33288014,141.9723142,0,141.9723142,2.611994677,139.3603195,0.935399642,3.831290466,1.168649899,-1.168649899,0.330302787,0.330302787,0.150707762,1.868473773,60.09653939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75430676,1.892381252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353702888,57.76707954,82.10800965,59.65946079,653.8254917,0,0.794926343,37.35170088,-0.794926343,142.6482991,0.987101091,0,727.4998656,59.65946079,766.5457895,10,14,5% +2018-10-11 23:00:00,62.23116389,233.8493875,427.2215173,754.8112117,75.55087005,626.369826,549.8765172,76.49330882,73.27273257,3.220576257,105.8629406,0,105.8629406,2.278137485,103.5848031,1.086138707,4.081441765,1.824218833,-1.824218833,0.218193896,0.218193896,0.17684238,1.147975529,36.92283916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.43253761,1.650502853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831704363,35.49163743,71.26424197,37.14214028,549.8765172,0,0.728495429,43.23959162,-0.728495429,136.7604084,0.981365389,0,610.8940244,37.14214028,635.2028124,10,15,4% +2018-10-11 00:00:00,72.45207184,245.5719275,241.0828994,608.5853582,57.59229448,427.9677041,370.294645,57.67305904,55.85567431,1.817384729,60.18996028,0,60.18996028,1.736620172,58.45334011,1.264527203,4.286038685,3.152928835,-3.152928835,0,0,0.238890003,0.434155043,13.96391858,0.008948105,1,0.307129553,0,0.92324917,0.962011133,0.724496596,1,53.71440721,1.258175403,0.001523808,0.312029739,0.995688073,0.720184669,0.961238037,0.922476074,0.313742099,13.42264968,54.02814931,14.68082508,366.9812097,0,0.608451452,52.52238308,-0.608451452,127.4776169,0.967824175,0,409.2014359,14.68082508,418.8097423,10,16,2% +2018-10-11 01:00:00,83.54758299,255.6302532,49.35020838,237.2076892,22.69327477,127.6573161,105.2763046,22.38101152,22.00898881,0.372022716,12.64981534,0,12.64981534,0.684285964,11.96552938,1.458180405,4.461589587,8.799511712,-8.799511712,0,0,0.459841519,0.171071491,5.502247202,0.49358151,1,0.113157207,0,0.949733828,0.988495791,0.724496596,1,21.33471268,0.495762851,0.068410733,0.312029739,0.824386615,0.548883211,0.961238037,0.922476074,0.11716115,5.288969299,21.45187383,5.78473215,53.31386722,0,0.443814891,63.65245929,-0.443814891,116.3475407,0.937340418,0,71.42511642,5.78473215,75.21110792,10,17,5% +2018-10-11 02:00:00,95.35492498,264.8733785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664257399,4.622912555,-10.3110277,10.3110277,1,0,#DIV/0!,0,0,1,0.226869845,0,0.096681178,0.961238037,1,0.487153591,0.762656995,0,0,0.115824807,0.043398708,0.724496596,0.448993192,0.995946944,0.957184981,0,0,0,0,0,0,0.241421364,76.0295544,-0.241421364,103.9704456,0.842893225,0,0,0,0,10,18,0% +2018-10-11 03:00:00,107.1974322,274.0774055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870948142,4.783553131,-2.949878711,2.949878711,1,0.965387341,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02046752,88.82721557,-0.02046752,91.17278443,0,0,0,0,0,10,19,0% +2018-10-11 04:00:00,118.8932663,284.1004281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075078955,4.958487876,-1.500437877,1.500437877,1,0.786743678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.206082162,101.8928551,0.206082162,78.10714491,0,0.807378321,0,0,0,10,20,0% +2018-10-11 05:00:00,130.023251,296.1271481,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269333835,5.168393739,-0.825276775,0.825276775,1,0.67128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422793058,115.0110509,0.422793058,64.98894908,0,0.931738834,0,0,0,10,21,0% +2018-10-11 06:00:00,139.8656445,311.9925679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441116007,5.445297551,-0.395909682,0.395909682,1,0.597858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614902941,127.9448682,0.614902941,52.05513184,0,0.968686354,0,0,0,10,22,0% +2018-10-11 07:00:00,147.0585214,334.0476234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566655391,5.830230886,-0.067194244,0.067194244,1,0.541644582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769327953,140.2935779,0.769327953,39.7064221,0,0.985008211,0,0,0,10,23,0% +2018-10-12 08:00:00,149.5527979,2.186491487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610188728,0.038161476,0.22196818,-0.22196818,1,0.492194895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875553996,151.1106089,0.875553996,28.88939114,0,0.992893299,0,0,0,10,0,0% +2018-10-12 09:00:00,146.2636087,29.71644981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552781547,0.518649891,0.509460699,-0.509460699,1,0.443030779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.92635293,157.8732577,0.92635293,22.12674233,0,0.996024891,0,0,0,10,1,0% +2018-10-12 10:00:00,138.576102,50.76793503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418609245,0.886067621,0.833117553,-0.833117553,1,0.387682197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918274851,156.6751658,0.918274851,23.32483417,0,0.995550071,0,0,0,10,2,0% +2018-10-12 11:00:00,128.4905359,65.9427915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242582909,1.15091883,1.254446965,-1.254446965,1,0.315630624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851882957,148.4170646,0.851882957,31.58293536,0,0.991306491,0,0,0,10,3,0% +2018-10-12 12:00:00,117.2551343,77.59628088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046488159,1.354310589,1.924156952,-1.924156952,1,0.201103471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731715049,137.030366,0.731715049,42.969634,0,0.981667389,0,0,0,10,4,0% +2018-10-12 13:00:00,105.5311211,87.45318235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841865526,1.526345973,3.4326358,-3.4326358,1,0,#DIV/0!,0,0,0.053802318,1,0.28347581,0,0.926911689,0.965673652,0.724496596,1,0,0,0.008973648,0.312029739,0.97486798,0.699364576,0.961238037,0.922476074,0,0,0,0,0,0,-0.56597422,124.4699703,0.56597422,55.53002974,0,0.961656754,0,0,0,10,5,0% +2018-10-12 14:00:00,93.71464502,96.63248422,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635629113,1.686555014,13.76845719,-13.76845719,1,0,#DIV/0!,0,0,0.645941393,1,0.072502472,0,0.954215197,0.99297716,0.724496596,1,0,0,0.08454144,0.312029739,0.788381351,0.512877946,0.961238037,0.922476074,0,0,0,0,0,0,-0.365969791,111.4672775,0.365969791,68.53272249,0,0.913376702,0,0,0,10,6,0% +2018-10-12 15:00:00,82.0077112,105.967886,72.67386873,312.4275831,29.23399266,28.90032624,0,28.90032624,28.35247992,0.54784632,63.32590253,44.82376893,18.5021336,0.881512741,17.62062086,1.431304572,1.849488511,-5.76442739,5.76442739,0.484071169,0.484071169,0.402262783,0.378896068,12.1866,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.25348214,0.63865298,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.274508912,11.71422346,27.52799105,12.35287644,0,44.82376893,-0.143469307,98.2486502,0.143469307,81.7513498,0,0.701493403,27.52799105,43.79645466,56.19189469,10,7,104% +2018-10-12 16:00:00,71.03539452,116.2369816,267.44809,637.2301801,60.35847876,112.5898705,52.03528585,60.5545846,58.53844793,2.016136673,66.66591666,0,66.66591666,1.820030834,64.84588582,1.23980152,2.028718041,-2.012814793,2.012814793,0.874365292,0.874365292,0.225682968,1.820004691,58.53760707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.26938277,1.318606143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318587203,56.26857451,57.58796997,57.58718065,52.03528585,0,0.08165854,85.31609498,-0.08165854,94.68390502,0,0,57.58796997,57.58718065,95.27762796,10,8,65% +2018-10-12 17:00:00,61.04571042,128.2998113,448.4618042,767.3762706,76.96597575,306.4412269,228.4153647,78.02586212,74.64516761,3.380694511,111.0555647,0,111.0555647,2.320808143,108.7347565,1.065448641,2.239254137,-0.949767197,0.949767197,0.692573446,0.692573446,0.171622143,2.51974876,81.0437817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.75177437,1.681417599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.825549399,77.90236562,73.57732377,79.58378321,228.4153647,0,0.297657581,72.68303378,-0.297657581,107.3169662,0.882021749,0,275.0446432,79.58378321,327.1306377,10,9,19% +2018-10-12 18:00:00,52.77602111,143.083255,588.3743724,828.4090132,87.24290483,494.3084222,405.2607983,89.04762391,84.61220936,4.43541455,145.288874,0,145.288874,2.630695473,142.6581785,0.921115334,2.497273904,-0.38302142,0.38302142,0.59565421,0.59565421,0.14827788,2.907901009,93.5280923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.33247402,1.905929915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.106764382,89.90275984,83.4392384,91.80868975,405.2607983,0,0.489203753,60.71174,-0.489203753,119.28826,0.947793098,0,467.5426259,91.80868975,527.6295772,10,10,13% +2018-10-12 19:00:00,47.22734527,161.1393249,674.7821661,856.7023276,93.00328859,646.25568,550.9699907,95.28568929,90.19889629,5.086792997,166.4131408,0,166.4131408,2.804392297,163.6087485,0.824272672,2.812411774,0.021492967,-0.021492967,0.526478176,0.526478176,0.137827129,3.010070737,96.81422194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70261,2.031772672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.180786002,93.06151264,88.883396,95.09328531,550.9699907,0,0.643128859,49.97447169,-0.643128859,130.0255283,0.972255083,0,624.5667699,95.09328531,686.8034232,10,11,10% +2018-10-12 20:00:00,45.45317325,181.5964098,700.9389002,864.2368403,94.68370855,744.3421634,647.2295445,97.1126189,91.82864539,5.283973508,172.8058147,0,172.8058147,2.855063158,169.9507515,0.793307529,3.16945526,0.373935174,-0.373935174,0.466207009,0.466207009,0.135081258,2.844428659,91.48660333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.26918682,2.068483539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060778881,87.94040299,90.3299657,90.00888653,647.2295445,0,0.748902979,41.50456028,-0.748902979,138.4954397,0.983235678,0,726.7091454,90.00888653,785.6181614,10,12,8% +2018-10-12 21:00:00,47.88711675,201.8118809,664.8659512,853.7314812,92.35922106,776.9763846,682.3900945,94.58629016,89.57424978,5.01204038,163.9894187,0,163.9894187,2.784971284,161.2044474,0.835787857,3.522281791,0.737503727,-0.737503727,0.404033124,0.404033124,0.138914049,2.439967993,78.47775799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.10217601,2.017702215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.767748505,75.43580602,87.86992452,77.45350824,682.3900945,0,0.799302954,36.93640922,-0.799302954,143.0635908,0.987445496,0,761.6929497,77.45350824,812.3847217,10,13,7% +2018-10-12 22:00:00,53.94903667,219.3473347,569.2785004,821.334985,85.91906511,737.2114291,649.591679,87.61975009,83.32828829,4.2914618,140.6189401,0,140.6189401,2.590776821,138.0281633,0.941588318,3.828333196,1.181853159,-1.181853159,0.328044896,0.328044896,0.150926243,1.843013567,59.27765164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09832025,1.877008987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335257056,56.9799335,81.4335773,58.85694248,649.591679,0,0.790897369,37.7305487,-0.790897369,142.2694513,0.986780672,0,722.438091,58.85694248,760.9587827,10,14,5% +2018-10-12 23:00:00,62.55783471,233.6307296,421.7055667,752.7218062,74.81144608,620.9244647,545.189865,75.73459965,72.55560495,3.178994691,104.5032381,0,104.5032381,2.255841124,102.247397,1.091840189,4.077625465,1.847666838,-1.847666838,0.214184051,0.214184051,0.177402083,1.124058945,36.15359959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.74320727,1.634349215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814376879,34.7522151,70.55758415,36.38656431,545.189865,0,0.724291313,43.59007472,-0.724291313,136.4099253,0.980967003,0,605.3708521,36.38656431,629.1851307,10,15,4% +2018-10-12 00:00:00,72.75421098,245.3315545,235.768958,603.8675165,56.73951927,421.6335858,364.8276463,56.80593941,55.02861342,1.777325994,58.87581935,0,58.87581935,1.710905853,57.1649135,1.269800526,4.281843385,3.210674969,-3.210674969,0,0,0.240657293,0.427726463,13.75715335,0.018553333,1,0.301938016,0,0.924062881,0.962824845,0.724496596,1,52.94334158,1.239545466,0.003145377,0.312029739,0.991119393,0.715615989,0.961238037,0.922476074,0.308274222,13.22389908,53.2516158,14.46344455,358.0588774,0,0.604151799,52.83216937,-0.604151799,127.1678306,0.967239343,0,399.580249,14.46344455,409.0462842,10,16,2% +2018-10-12 01:00:00,83.82856383,255.3786162,45.5236443,224.4878651,21.39036252,119.7647193,98.67617866,21.08854063,20.74536417,0.34317646,11.68273297,0,11.68273297,0.644998352,11.03773461,1.463084446,4.457197692,9.207375967,-9.207375967,0,0,0.469873685,0.161249588,5.186341042,0.510859012,1,0.108184531,0,0.950302587,0.98906455,0.724496596,1,20.10770668,0.46729911,0.070335606,0.312029739,0.819981011,0.544477607,0.961238037,0.922476074,0.110491604,4.985308282,20.21819829,5.452607392,48.26656355,0,0.439561304,63.92410605,-0.439561304,116.0758939,0.936250224,0,65.40777921,5.452607392,68.97640169,10,17,5% +2018-10-12 02:00:00,95.63187138,264.6120488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669091025,4.618351493,-9.812713166,9.812713166,1,0,#DIV/0!,0,0,1,0.172340597,0,0.10155801,0.961238037,1,0.47715239,0.752655794,0,0,0.115824807,0.032057709,0.724496596,0.448993192,0.997049707,0.958287744,0,0,0,0,0,0,0.237142211,76.28206752,-0.237142211,103.7179325,0.839156052,0,0,0,0,10,18,0% +2018-10-12 03:00:00,107.473622,273.8041912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875768563,4.778784643,-2.906452763,2.906452763,1,0.972813615,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.016326332,89.06452853,-0.016326332,90.93547147,0,0,0,0,0,10,19,0% +2018-10-12 04:00:00,119.1782462,283.8133063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080052793,4.953476656,-1.487966736,1.487966736,1,0.784610988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.210016433,102.1233153,0.210016433,77.87668472,0,0.811923392,0,0,0,10,20,0% +2018-10-12 05:00:00,130.3284942,295.8316059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274661333,5.163235555,-0.820774596,0.820774596,1,0.670514412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426465709,115.2434733,0.426465709,64.75652667,0,0.932757279,0,0,0,10,21,0% +2018-10-12 06:00:00,140.2033727,311.7227417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447010475,5.440588195,-0.394656959,0.394656959,1,0.597644004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618277284,128.1904415,0.618277284,51.80955853,0,0.969130136,0,0,0,10,22,0% +2018-10-12 07:00:00,147.4307563,333.9108835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573152116,5.827844326,-0.067757713,0.067757713,1,0.541740941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772387841,140.5688018,0.772387841,39.43119816,0,0.985265682,0,0,0,10,23,0% +2018-10-13 08:00:00,149.925255,2.330167894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616689332,0.040669102,0.220021711,-0.220021711,1,0.492527761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878304933,151.4385597,0.878304933,28.56144034,0,0.993072163,0,0,0,10,0,0% +2018-10-13 09:00:00,146.5832243,30.085898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.558359892,0.525097978,0.506070374,-0.506070374,1,0.443610559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928821679,158.2518751,0.928821679,21.74812495,0,0.996168354,0,0,0,10,1,0% +2018-10-13 10:00:00,138.8327186,51.19109053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423088049,0.893453077,0.827730554,-0.827730554,1,0.388603428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920507586,157.0004008,0.920507586,22.99959925,0,0.995682142,0,0,0,10,2,0% +2018-10-13 11:00:00,128.7028928,66.34472012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246289237,1.157933807,1.245535911,-1.245535911,1,0.317154504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853942075,148.6430556,0.853942075,31.35694437,0,0.991448019,0,0,0,10,3,0% +2018-10-13 12:00:00,117.4429717,77.96699928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049766539,1.360780845,1.907073009,-1.907073009,1,0.204024998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733674858,137.1953616,0.733674858,42.80463838,0,0.98184992,0,0,0,10,4,0% +2018-10-13 13:00:00,105.7096197,87.80034427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844980915,1.532405092,3.385119847,-3.385119847,1,0,#DIV/0!,0,0,0.046471088,1,0.287240958,0,0.926336429,0.965098393,0.724496596,1,0,0,0.007777057,0.312029739,0.978182885,0.702679481,0.961238037,0.922476074,0,0,0,0,0,0,-0.567915813,124.6050165,0.567915813,55.39498345,0,0.961958782,0,0,0,10,5,0% +2018-10-13 14:00:00,93.8958526,96.96600352,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638791782,1.692376024,13.08766518,-13.08766518,1,0,#DIV/0!,0,0,0.630719536,1,0.076259648,0,0.953817236,0.992579199,0.724496596,1,0,0,0.083011729,0.312029739,0.791706587,0.516203182,0.961238037,0.922476074,0,0,0,0,0,0,-0.36797545,111.5908121,0.36797545,68.40918789,0,0.91412137,0,0,0,10,6,0% +2018-10-13 15:00:00,82.20000999,106.2958704,69.81232971,305.2027062,28.39162243,28.06178509,0,28.06178509,27.53551026,0.52627483,62.21344833,44.43052856,17.78291977,0.85611217,16.9268076,1.434660819,1.855212919,-5.883739049,5.883739049,0.463667674,0.463667674,0.40668493,0.358806784,11.54045957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.46817982,0.620250353,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.259954294,11.0931287,26.72813412,11.71337906,0,44.43052856,-0.145577112,98.37069989,0.145577112,81.62930011,0,0.706539415,26.72813412,43.10529873,54.93969003,10,7,106% +2018-10-13 16:00:00,71.25393544,116.563334,263.6772471,634.6742004,59.70919191,110.233078,50.33662804,59.89644993,57.90873947,1.987710466,65.73205374,0,65.73205374,1.800452439,63.9316013,1.243615778,2.034413966,-2.025921025,2.025921025,0.876606589,0.876606589,0.226448025,1.797981084,57.82925218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.66408304,1.304421663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302631175,55.58767683,56.96671422,56.8920985,50.33662804,0,0.079310972,85.45103848,-0.079310972,94.54896152,0,0,56.96671422,56.8920985,94.20145484,10,8,65% +2018-10-13 17:00:00,61.30020619,128.6194466,444.2727525,766.1753577,76.3397611,303.4411446,226.0541933,77.38695131,74.03783564,3.34911567,110.0209979,0,110.0209979,2.301925461,107.7190725,1.06989043,2.244832825,-0.951122484,0.951122484,0.692805214,0.692805214,0.171830842,2.497069673,80.31434429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.16798379,1.66773716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.809118478,77.20120264,72.97710226,78.8689398,226.0541933,0,0.29504237,72.83992193,-0.29504237,107.1600781,0.880532815,0,272.0252373,78.8689398,323.6433811,10,9,19% +2018-10-13 18:00:00,53.07580515,143.3725561,583.8277056,827.6559883,86.60686318,490.8763943,402.4799078,88.39648656,83.99534671,4.401139855,144.167303,0,144.167303,2.61151647,141.5557865,0.926347553,2.502323162,-0.380777505,0.380777505,0.595270478,0.595270478,0.148343188,2.884108078,92.76282986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.73952217,1.892034793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089526485,89.16716046,82.82904866,91.05919526,402.4799078,0,0.486288885,60.90304879,-0.486288885,119.0969512,0.947180459,0,464.0501524,91.05919526,523.6465745,10,10,13% +2018-10-13 19:00:00,47.57310224,161.3477746,669.9126035,856.0917063,92.35120335,642.4302636,547.8137056,94.61655801,89.56647383,5.050084178,165.2127962,0,165.2127962,2.784729521,162.4280667,0.83030727,2.816049907,0.025734437,-0.025734437,0.525752842,0.525752842,0.137855599,2.985258623,96.01617906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.09470148,2.017527058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16280971,92.29440347,88.25751118,94.31193052,547.8137056,0,0.639900727,50.2155826,-0.639900727,129.7844174,0.97186288,0,620.6573168,94.31193052,682.3825891,10,11,10% +2018-10-13 20:00:00,45.82788711,181.6678791,695.7934872,863.6112655,94.01526692,740.1347444,643.7091994,96.42554496,91.18035975,5.245185211,171.5380938,0,171.5380938,2.834907177,168.7031866,0.799847519,3.170702636,0.380053166,-0.380053166,0.46516077,0.46516077,0.135119498,2.818909287,90.66581259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.64603,2.053880599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.042290182,87.15142771,89.68832019,89.20530831,643.7091994,0,0.745369155,41.80918363,-0.745369155,138.1908164,0.982919145,0,722.4024163,89.20530831,780.7855065,10,12,8% +2018-10-13 21:00:00,48.26137186,201.7398538,659.5101147,852.9466573,91.67488451,772.3945427,678.5123283,93.88221432,88.9105485,4.971665822,162.6701989,0,162.6701989,2.764336012,159.9058628,0.84231984,3.521024681,0.746207413,-0.746207413,0.402544706,0.402544706,0.139004516,2.414209555,77.64927807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.46420109,2.002752031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749086604,74.63943961,87.2132877,76.64219164,678.5123283,0,0.795492101,37.29823946,-0.795492101,142.7017605,0.987145825,0,757.0038996,76.64219164,807.1646812,10,13,7% +2018-10-13 22:00:00,54.30124166,219.1781843,563.7980907,820.1587557,85.21609074,732.2447818,645.3481225,86.89665935,82.64651119,4.250148157,139.2689541,0,139.2689541,2.56957955,136.6993745,0.947735455,3.825380965,1.195152434,-1.195152434,0.325770586,0.325770586,0.151146469,1.817694785,58.46331258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44297017,1.861651637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316913684,56.19715981,80.75988385,58.05881145,645.3481225,0,0.786857566,38.10719169,-0.786857566,141.8928083,0.986456098,0,717.3674747,58.05881145,755.3658056,10,14,5% +2018-10-13 23:00:00,62.88208996,233.4127439,416.217692,750.6078339,74.07326034,615.4805923,540.5032892,74.97730301,71.83967824,3.137624773,103.1503803,0,103.1503803,2.2335821,100.9167982,1.09749951,4.073820898,1.871407909,-1.871407909,0.210124089,0.210124089,0.177967592,1.100353721,35.39115812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.05503128,1.618222628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797202525,34.01932735,69.8522338,35.63754998,540.5032892,0,0.720087461,43.93829816,-0.720087461,136.0617018,0.98056399,0,599.8502958,35.63754998,623.1743595,10,15,4% +2018-10-13 00:00:00,73.05381319,245.0917221,230.5014908,599.0747528,55.88713701,415.3034786,359.3639274,55.93955123,54.20193362,1.737617602,57.57295848,0,57.57295848,1.685203382,55.8877551,1.275029571,4.27765752,3.26983908,-3.26983908,0,0,0.242458896,0.421300846,13.55048341,0.02820322,1,0.296792636,0,0.924863905,0.963625869,0.724496596,1,52.17113115,1.220924114,0.004759924,0.312029739,0.986590875,0.711087471,0.961238037,0.922476074,0.302855295,13.02524007,52.47398645,14.24616418,349.2287076,0,0.599864918,53.13977629,-0.599864918,126.8602237,0.966647901,0,390.0551836,14.24616418,399.3790131,10,16,2% +2018-10-13 01:00:00,84.10652798,255.1272121,41.82894065,211.698494,20.09190762,111.9617887,92.16040198,19.80138669,19.48606247,0.315324223,10.74775608,0,10.74775608,0.605845146,10.14191094,1.467935836,4.452809862,9.64883207,-9.64883207,0,0,0.480335082,0.151461286,4.871515618,0.52827825,1,0.103270791,0,0.950858987,0.98962095,0.724496596,1,18.88479756,0.438932746,0.072250406,0.312029739,0.815627763,0.540124359,0.961238037,0.922476074,0.103851978,4.682686109,18.98864954,5.121618855,43.47406606,0,0.435338014,64.19319581,-0.435338014,115.8068042,0.935146717,0,59.6432797,5.121618855,62.99527681,10,17,6% +2018-10-13 02:00:00,95.90588393,264.3505432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673873447,4.613787359,-9.365452893,9.365452893,1,0,#DIV/0!,0,0,1,0.116405187,0,0.106372374,0.961238037,1,0.467466815,0.742970219,0,0,0.115824807,0.021055073,0.724496596,0.448993192,0.998090159,0.959328196,0,0,0,0,0,0,0.232900159,76.53212342,-0.232900159,103.4678766,0.835315733,0,0,0,0,10,18,0% +2018-10-13 03:00:00,107.7466155,273.5302373,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880533199,4.774003245,-2.864819878,2.864819878,1,0.979933258,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012233009,89.29908275,-0.012233009,90.70091725,0,0,0,0,0,10,19,0% +2018-10-13 04:00:00,119.4597819,283.5245798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084966518,4.948437428,-1.475885818,1.475885818,1,0.782545029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213894147,102.3506574,0.213894147,77.64934257,0,0.816239513,0,0,0,10,20,0% +2018-10-13 05:00:00,130.6301555,295.5330623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279926315,5.158024986,-0.81641453,0.81641453,1,0.669768797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430075776,115.4723692,0.430075776,64.52763085,0,0.933741418,0,0,0,10,21,0% +2018-10-13 06:00:00,140.5377152,311.4479791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452845853,5.435792683,-0.39346879,0.39346879,1,0.597440816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621586095,128.4320523,0.621586095,51.56794772,0,0.96956062,0,0,0,10,22,0% +2018-10-13 07:00:00,147.8003831,333.768648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.579603322,5.825361847,-0.068352372,0.068352372,1,0.541842634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77538253,140.8397269,0.77538253,39.16027307,0,0.9855157,0,0,0,10,23,0% +2018-10-14 08:00:00,150.2958305,2.472526591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623157093,0.04315373,0.218062935,-0.218062935,1,0.492862731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880994255,151.7625333,0.880994255,28.23746669,0,0.993245941,0,0,0,10,0,0% +2018-10-14 09:00:00,146.9009708,30.45659633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563905615,0.531567885,0.502682859,-0.502682859,1,0.444189858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931235404,158.628218,0.931235404,21.37178202,0,0.996307883,0,0,0,10,1,0% +2018-10-14 10:00:00,139.0877441,51.61422495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427539084,0.900838166,0.822365406,-0.822365406,1,0.389520923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922694438,157.3232244,0.922694438,22.67677559,0,0.99581088,0,0,0,10,2,0% +2018-10-14 11:00:00,128.9142576,66.7453893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249978249,1.164926804,1.236684875,-1.236684875,1,0.318668121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855966368,148.8666595,0.855966368,31.13334052,0,0.99158649,0,0,0,10,3,0% +2018-10-14 12:00:00,117.6304249,78.33581233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053038215,1.367217847,1.890169975,-1.890169975,1,0.206915587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735612056,137.3589594,0.735612056,42.64104065,0,0.98202939,0,0,0,10,4,0% +2018-10-14 13:00:00,105.8882422,88.14520919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848098465,1.53842412,3.338549916,-3.338549916,1,0,#DIV/0!,0,0,0.03917474,1,0.291026685,0,0.925755062,0.964517025,0.724496596,1,0,0,0.006578101,0.312029739,0.981515562,0.706012158,0.961238037,0.922476074,0,0,0,0,0,0,-0.569847322,124.7395798,0.569847322,55.26042024,0,0.962257199,0,0,0,10,5,0% +2018-10-14 14:00:00,94.07757334,97.29685343,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641963407,1.698150444,12.46561835,-12.46561835,1,0,#DIV/0!,0,0,0.615620062,1,0.080049228,0,0.953412485,0.992174448,0.724496596,1,0,0,0.081477158,0.312029739,0.795061195,0.51955779,0.961238037,0.922476074,0,0,0,0,0,0,-0.369983001,111.7145689,0.369983001,68.28543106,0,0.914858656,0,0,0,10,6,0% +2018-10-14 15:00:00,82.39297019,106.6206932,66.96518964,297.8082924,27.54192208,27.2162434,0,27.2162434,26.71143151,0.504811886,61.05195133,43.98497524,17.06697609,0.83049057,16.23648552,1.43802861,1.860882147,-6.009598297,6.009598297,0.442144475,0.442144475,0.411287151,0.339023224,10.90415228,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67604399,0.601687591,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.245621172,10.48148593,25.92166516,11.08317352,0,43.98497524,-0.147695603,98.49340689,0.147695603,81.50659311,0,0.711465886,25.92166516,42.3769829,53.65655293,10,7,107% +2018-10-14 16:00:00,71.47332267,116.8858117,259.8886413,632.0516697,59.05664513,107.8667666,48.63174686,59.23501974,57.27586938,1.959150356,64.79378573,0,64.79378573,1.780775746,63.01300998,1.247444808,2.040042263,-2.039474123,2.039474123,0.878924305,0.878924305,0.22723827,1.775847031,57.11734495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.05574424,1.290165966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286595129,54.90336453,56.34233937,56.19353049,48.63174686,0,0.076942676,85.58714793,-0.076942676,94.41285207,0,0,56.34233937,56.19353049,93.11988121,10,8,65% +2018-10-14 17:00:00,61.5553868,128.9342387,440.0616185,764.9447258,75.71156059,300.4161626,223.6702145,76.74594805,73.42857769,3.317370363,108.9810172,0,108.9810172,2.282982898,106.6980343,1.074344172,2.250326984,-0.952588292,0.952588292,0.693055882,0.693055882,0.172047635,2.474310085,79.58231773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58234187,1.654013338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792629234,76.49755086,72.3749711,78.1515642,223.6702145,0,0.292400492,72.99827521,-0.292400492,107.0017248,0.879001656,0,268.9814601,78.1515642,320.1300958,10,9,19% +2018-10-14 18:00:00,53.37571392,143.6560469,579.2603629,826.8854553,85.96934762,487.4144023,399.6706384,87.7437639,83.3770546,4.366709296,143.0406745,0,143.0406745,2.592293024,140.4483814,0.931581949,2.507271008,-0.378574004,0.378574004,0.594893657,0.594893657,0.148412274,2.860266249,91.99599468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14519628,1.878107471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072253161,88.43004932,82.21744944,90.30815679,399.6706384,0,0.483344623,61.09592659,-0.483344623,118.9040734,0.94655414,0,460.527347,90.30815679,519.6322294,10,10,13% +2018-10-14 19:00:00,47.91800644,161.5503882,665.0276222,855.4687557,91.69810492,638.5751942,544.6288664,93.94632785,88.93306873,5.013259125,164.0086826,0,164.0086826,2.765036193,161.2436464,0.836326983,2.819586182,0.029962478,-0.029962478,0.525029804,0.525029804,0.13788616,2.960437902,95.21785936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.48584839,2.00325931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144827182,91.52702821,87.63067558,93.53028752,544.6288664,0,0.636643785,50.4579922,-0.636643785,129.5420078,0.971463146,0,616.7175475,93.53028752,677.9312501,10,11,10% +2018-10-14 20:00:00,46.20073537,181.7354032,690.6410843,862.9756762,93.34635504,735.9022622,640.1643,95.73796225,90.53161803,5.206344221,170.2686639,0,170.2686639,2.814737016,167.4539268,0.806354949,3.171881154,0.386176881,-0.386176881,0.464113553,0.464113553,0.135158995,2.793429771,89.8463038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.02243479,2.039267386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02383036,86.36368468,89.04626515,88.40295207,640.1643,0,0.741810363,42.11414006,-0.741810363,137.8858599,0.982597329,0,718.0699963,88.40295207,775.9279604,10,12,8% +2018-10-14 21:00:00,48.63323178,201.6665331,654.1582453,852.1522024,90.99072123,767.7958073,674.6174709,93.17833644,88.24701526,4.931321171,161.3519461,0,161.3519461,2.743705965,158.6082402,0.84881002,3.519744994,0.754943167,-0.754943167,0.401050805,0.401050805,0.139095887,2.388545443,76.82383203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82638771,1.987805632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730493043,73.84598948,86.55688075,75.83379511,674.6174709,0,0.79166312,37.65879466,-0.79166312,142.3412053,0.986841822,0,752.297615,75.83379511,801.9293173,10,13,7% +2018-10-14 22:00:00,54.65093794,219.0092872,558.3344507,818.9703887,84.5140001,727.2719491,641.097397,86.1745521,81.96559117,4.208960931,137.9230607,0,137.9230607,2.548408926,135.3746517,0.953838806,3.822433153,1.208543027,-1.208543027,0.32348066,0.32348066,0.151368055,1.792529441,57.6539086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.78844395,1.846313592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298681478,55.41912992,80.08712543,57.26544351,641.097397,0,0.782809007,38.48151012,-0.782809007,141.5184899,0.98612746,0,712.2908729,57.26544351,749.7699603,10,14,5% +2018-10-14 23:00:00,63.20379845,233.1954168,410.7608316,748.4705688,73.33655337,610.0413841,535.8197098,74.22167436,71.1251857,3.096488655,101.8050869,0,101.8050869,2.211367667,99.59371925,1.103114383,4.070027824,1.895436935,-1.895436935,0.206014883,0.206014883,0.178538331,1.076871003,34.63587318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36823388,1.602128347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780189376,33.29331874,69.14842325,34.89544709,535.8197098,0,0.715886145,44.28413093,-0.715886145,135.7158691,0.980156492,0,594.3355901,34.89544709,617.1739623,10,15,4% +2018-10-14 00:00:00,73.35074832,244.8524389,225.2834631,594.2088685,55.03546823,408.9809878,353.9067601,55.07422771,53.3759458,1.698281905,56.2821063,0,56.2821063,1.659522426,54.62258387,1.280212067,4.273481241,3.33044522,-3.33044522,0,0,0.24429431,0.414880607,13.34398645,0.037893513,1,0.291695452,0,0.925652053,0.964414016,0.724496596,1,51.39811021,1.202318349,0.006366731,0.312029739,0.982104262,0.706600858,0.961238037,0.922476074,0.29748626,12.82674734,51.69559647,14.02906569,340.4959898,0,0.595593198,53.44506862,-0.595593198,126.5549314,0.966050082,0,380.6317754,14.02906569,389.8135183,10,16,2% +2018-10-14 01:00:00,84.38132288,254.8760665,38.27215635,198.8754847,18.80079142,104.2671257,85.74473586,18.52238987,18.23387819,0.288511681,9.846440635,0,9.846440635,0.566913229,9.279527407,1.472731911,4.448426546,10.12788273,-10.12788273,0,0,0.491239408,0.141728307,4.558469548,0.545829496,1,0.098418319,0,0.951402955,0.990164919,0.724496596,1,17.66876464,0.410726704,0.074153961,0.312029739,0.811329064,0.53582566,0.961238037,0.922476074,0.097254467,4.381774319,17.76601911,4.792501023,38.94272986,0,0.431147841,64.45957291,-0.431147841,115.5404271,0.934030499,0,54.13971651,4.792501023,57.27631258,10,17,6% +2018-10-14 02:00:00,96.17683667,264.0889001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678602464,4.609220824,-8.962001457,8.962001457,1,0,#DIV/0!,0,0,1,0.059041567,0,0.111122559,0.961238037,1,0.458093175,0.733596579,0,0,0.115824807,0.010384408,0.724496596,0.448993192,0.999071431,0.960309467,0,0,0,0,0,0,0.228697531,76.77959794,-0.228697531,103.2204021,0.831370617,0,0,0,0,10,18,0% +2018-10-14 03:00:00,108.0162857,273.2555912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885239831,4.769209766,-2.82489765,2.82489765,1,0.986760361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.008189705,89.53075924,-0.008189705,90.46924076,0,0,0,0,0,10,19,0% +2018-10-14 04:00:00,119.7377413,283.2342984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089817824,4.943371061,-1.464187212,1.464187212,1,0.78054445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217713397,102.5747652,0.217713397,77.42523482,0,0.820340269,0,0,0,10,20,0% +2018-10-14 05:00:00,130.9280925,295.231548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285126298,5.152762568,-0.812195801,0.812195801,1,0.669047352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433621663,115.6976205,0.433621663,64.30237949,0,0.934692108,0,0,0,10,21,0% +2018-10-14 06:00:00,140.8685191,311.1682308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45861947,5.430910156,-0.392345559,0.392345559,1,0.597248732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62482813,128.6695738,0.62482813,51.3304262,0,0.969977995,0,0,0,10,22,0% +2018-10-14 07:00:00,148.1672607,333.6207192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586006544,5.822780004,-0.068978773,0.068978773,1,0.541949754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778311142,141.1062042,0.778311142,38.89379578,0,0.98575834,0,0,0,10,23,0% +2018-10-15 08:00:00,150.6644257,2.613364418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629590293,0.045611814,0.216091346,-0.216091346,1,0.493199893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883621446,152.0823505,0.883621446,27.91764952,0,0.993414683,0,0,0,10,0,0% +2018-10-15 09:00:00,147.2167883,30.82835824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56941767,0.538056354,0.499297738,-0.499297738,1,0.444768748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933593916,159.0021567,0.933593916,20.99784327,0,0.996443524,0,0,0,10,1,0% +2018-10-15 10:00:00,139.3411539,52.03714068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.431961919,0.908219438,0.817021756,-0.817021756,1,0.39043474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924835489,157.6435612,0.924835489,22.35643879,0,0.995936331,0,0,0,10,2,0% +2018-10-15 11:00:00,129.1246246,67.1446265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253649844,1.171894808,1.2278934,-1.2278934,1,0.320171551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857956117,149.0878646,0.857956117,30.91213537,0,0.991721961,0,0,0,10,3,0% +2018-10-15 12:00:00,117.8174927,78.70257273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056303164,1.373619024,1.873445968,-1.873445968,1,0.20977556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737527036,137.5211808,0.737527036,42.47881915,0,0.982205875,0,0,0,10,4,0% +2018-10-15 13:00:00,106.0669827,88.48764557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851218075,1.544400762,3.292902156,-3.292902156,1,0,#DIV/0!,0,0,0.031913686,1,0.294832702,0,0.925167592,0.963929555,0.724496596,1,0,0,0.005376885,0.312029739,0.984865778,0.709362374,0.961238037,0.922476074,0,0,0,0,0,0,-0.571769156,124.8736868,0.571769156,55.12631324,0,0.962552121,0,0,0,10,5,0% +2018-10-15 14:00:00,94.25979099,97.62491074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645143705,1.703876124,11.89509323,-11.89509323,1,0,#DIV/0!,0,0,0.600643293,1,0.083871063,0,0.95300088,0.991762844,0.724496596,1,0,0,0.079937895,0.312029739,0.798444973,0.522941569,0.961238037,0.922476074,0,0,0,0,0,0,-0.371992772,111.8385693,0.371992772,68.16143071,0,0.915588786,0,0,0,10,6,0% +2018-10-15 15:00:00,82.58655282,106.942236,64.13474281,290.2438748,26.68505864,26.36388045,0,26.36388045,25.88040567,0.483474782,59.84059951,43.48573562,16.3548639,0.804652975,15.55021092,1.441407265,1.866494127,-6.142533692,6.142533692,0.419411184,0.419411184,0.416078049,0.31956786,10.27840089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.87723034,0.582968342,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.231525827,9.879989894,25.10875616,10.46295824,0,43.48573562,-0.149824818,98.61677463,0.149824818,81.38322537,0,0.716276917,25.10875616,41.61078689,52.34218397,10,7,108% +2018-10-15 16:00:00,71.69350279,117.2043027,256.0834184,629.3615237,58.40089043,105.4916194,46.92126627,58.57035309,56.63988811,1.930464978,63.85139196,0,63.85139196,1.761002323,62.09038963,1.251287676,2.04560098,-2.053492948,2.053492948,0.881321666,0.881321666,0.228054166,1.753608816,56.40208751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44441486,1.275840188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270483618,54.21583187,55.71489847,55.49167206,46.92126627,0,0.074553757,85.7244173,-0.074553757,94.2755827,0,0,55.71489847,55.49167206,92.033088,10,8,65% +2018-10-15 17:00:00,61.81117381,129.2440938,435.829836,763.6843581,75.08147092,297.3670325,221.2640756,76.10295695,72.81748755,3.285469399,107.935973,0,107.935973,2.263983369,105.6719896,1.078808497,2.255734975,-0.954169562,0.954169562,0.693326295,0.693326295,0.172272444,2.451478367,78.84797118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.99493878,1.640248244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776087732,75.79166903,71.77102651,77.43191727,221.2640756,0,0.289732365,73.15806618,-0.289732365,106.8419338,0.877426943,0,265.914088,77.43191727,316.5917292,10,9,19% +2018-10-15 18:00:00,53.67564453,143.9336732,574.6741562,826.0976795,85.33047721,483.9235623,396.8339773,87.08958502,82.75744849,4.332136533,141.9094312,0,141.9094312,2.573028724,139.3364025,0.936816725,2.512116502,-0.376413935,0.376413935,0.594524264,0.594524264,0.148484974,2.836385461,91.22790643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.54960732,1.864150552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054951611,87.69173369,81.60455893,89.55588424,396.8339773,0,0.480371737,61.29031644,-0.480371737,118.7096836,0.945913943,0,456.9753511,89.55588424,515.5878862,10,10,13% +2018-10-15 19:00:00,48.26194148,161.7471599,660.1294025,854.8338716,91.044132,634.6920248,541.416875,93.27514978,88.2988155,4.976334276,162.8013328,0,162.8013328,2.745316497,160.0560163,0.842329782,2.823020495,0.034174336,-0.034174336,0.524309534,0.524309534,0.137918614,2.935619726,94.41962152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.87618007,1.988972457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126846498,90.75973163,87.00302657,92.74870408,541.416875,0,0.633359174,50.70160655,-0.633359174,129.2983934,0.971055853,0,612.7490517,92.74870408,673.4512236,10,11,10% +2018-10-15 20:00:00,46.57160012,181.7989779,685.484194,862.3305831,92.67713117,731.6467197,636.5966766,95.05004313,89.88257373,5.167469404,168.9981365,0,168.9981365,2.794557447,166.2035791,0.81282776,3.172990741,0.392303263,-0.392303263,0.46306588,0.46306588,0.135199516,2.76800208,89.02846183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.39854872,2.024647357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005408084,85.57754388,88.4039568,87.60219123,636.5966766,0,0.73822811,42.41930432,-0.73822811,137.5806957,0.982270257,0,713.7139381,87.60219123,771.0478202,10,12,8% +2018-10-15 21:00:00,49.00257448,201.5918834,648.813096,851.3487844,90.30691025,763.1826155,670.7077646,92.47485089,87.58382371,4.891027178,160.0353334,0,160.0353334,2.723086541,157.3122468,0.855256267,3.51844211,0.763707171,-0.763707171,0.399552072,0.399552072,0.139187866,2.362987959,76.00181547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.18890276,1.972866929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.711976732,73.0558359,85.90087949,75.02870283,670.7077646,0,0.787817845,38.01794921,-0.787817845,141.9820508,0.986533552,0,747.5765931,75.02870283,796.6813785,10,13,7% +2018-10-15 22:00:00,54.99799645,218.8406064,552.8904903,817.7708119,83.81299791,722.2957762,636.8421274,85.45364884,81.28572679,4.167922058,136.5819716,0,136.5819716,2.527271124,134.0547005,0.95989612,3.81948912,1.222019827,-1.222019827,0.321175991,0.321175991,0.151590594,1.767529578,56.84982707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.13493244,1.830999326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.280569162,54.64621617,79.4155016,56.4772155,636.8421274,0,0.7787538,38.85338429,-0.7787538,141.1466157,0.985794856,0,707.2111947,56.4772155,744.1744027,10,14,5% +2018-10-15 23:00:00,63.52282845,232.9787334,405.3379446,746.3113934,72.60157172,604.610083,531.1421079,73.46797511,70.41236646,3.055608642,100.4680828,0,100.4680828,2.189205259,98.27887751,1.108682507,4.066245985,1.919747924,-1.919747924,0.20185746,0.20185746,0.179113682,1.05362186,33.8881008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68304491,1.586071758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763345451,32.57453149,68.44639036,34.16060325,531.1421079,0,0.711689668,44.62744181,-0.711689668,135.3725582,0.979744659,0,588.830034,34.16060325,611.1874656,10,15,4% +2018-10-15 00:00:00,73.64488559,244.6137128,220.1178425,589.2719414,54.18484941,402.6698314,348.4595138,54.21031756,52.55097628,1.659341275,55.00399249,0,55.00399249,1.633873131,53.37011936,1.285345731,4.269314683,3.392515843,-3.392515843,0,0,0.246162913,0.408468283,13.13774407,0.047619671,1,0.286648524,0,0.92642714,0.965189103,0.724496596,1,50.62462939,1.183735521,0.007965062,0.312029739,0.977661318,0.702157914,0.961238037,0.922476074,0.292168088,12.62849932,50.91679747,13.81223484,331.8659863,0,0.591339056,53.74791061,-0.591339056,126.2520894,0.96544614,0,371.3155328,13.81223484,380.3553643,10,16,2% +2018-10-15 01:00:00,84.65279314,254.6252048,34.85925102,186.0590412,17.52023245,96.7007484,79.44603184,17.25471656,16.9919328,0.262783759,8.980328648,0,8.980328648,0.528299651,8.452028997,1.477469961,4.444048183,10.64916649,-10.64916649,0,0,0.502599222,0.132074913,4.247983201,0.563501961,1,0.0936295,0,0.951934424,0.990696387,0.724496596,1,16.46270113,0.382751299,0.07604505,0.312029739,0.807087148,0.531583744,0.961238037,0.922476074,0.090713072,4.083323032,16.5534142,4.466074331,34.67803713,0,0.426993665,64.72307872,-0.426993665,115.2769213,0.932902244,0,48.90463286,4.466074331,51.82758918,10,17,6% +2018-10-15 02:00:00,96.44460312,263.827158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68327587,4.604652563,-8.596431085,8.596431085,1,0,#DIV/0!,0,0,1,0.000229933,0,0.115806848,0.961238037,1,0.449027607,0.724531011,0,0,0.115824807,3.9325E-05,0.724496596,0.448993192,0.999996533,0.96123457,0,0,0,0,0,0,0.224536665,77.02436612,-0.224536665,102.9756339,0.827319218,0,0,0,0,10,18,0% +2018-10-15 03:00:00,108.2825052,272.9803015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889886238,4.764405055,-2.786609472,2.786609472,1,0.993308025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004198579,89.75943842,-0.004198579,90.24056158,0,0,0,0,0,10,19,0% +2018-10-15 04:00:00,120.0119919,282.942514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094604401,4.938278463,-1.452863445,1.452863445,1,0.778607971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221472282,102.7955219,0.221472282,77.20447808,0,0.824238114,0,0,0,10,20,0% +2018-10-15 05:00:00,131.2221628,294.9270972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290258792,5.1474489,-0.808117719,0.808117719,1,0.668349959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437101791,115.9191097,0.437101791,64.08089033,0,0.935610169,0,0,0,10,21,0% +2018-10-15 06:00:00,141.1956306,310.8834507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464328643,5.425939805,-0.391287687,0.391287687,1,0.597067825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628002173,128.9028798,0.628002173,51.09712023,0,0.970382441,0,0,0,10,22,0% +2018-10-15 07:00:00,148.5312466,333.4668943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.592359296,5.820095251,-0.069637488,0.069637488,1,0.542062401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781172839,141.3680852,0.781172839,38.63191476,0,0.985993678,0,0,0,10,23,0% +2018-10-16 08:00:00,151.030943,2.752465319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635987228,0.048039582,0.214106419,-0.214106419,1,0.493539336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886186035,152.3978304,0.886186035,27.60216962,0,0.993578438,0,0,0,10,0,0% +2018-10-16 09:00:00,147.5306199,31.20098622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574895064,0.544559939,0.495914574,-0.495914574,1,0.445347303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935897075,159.3735603,0.935897075,20.62643969,0,0.996575322,0,0,0,10,1,0% +2018-10-16 10:00:00,139.5929266,52.45963385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436356182,0.915593335,0.811699239,-0.811699239,1,0.391344944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926930874,157.9613392,0.926930874,22.03866082,0,0.996058545,0,0,0,10,2,0% +2018-10-16 11:00:00,129.3339908,67.54225617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257303974,1.178834754,1.219161014,-1.219161014,1,0.321664877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859911655,149.306665,0.859911655,30.69333505,0,0.991854492,0,0,0,10,3,0% +2018-10-16 12:00:00,118.0041758,79.06713156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059561399,1.379981776,1.856899111,-1.856899111,1,0.21260524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739420235,137.6820519,0.739420235,42.31794813,0,0.982379454,0,0,0,10,4,0% +2018-10-16 13:00:00,106.245837,88.82752089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854339672,1.550332706,3.248153491,-3.248153491,1,0,#DIV/0!,0,0,0.024688329,1,0.298658713,0,0.924574026,0.96333599,0.724496596,1,0,0,0.004173517,0.312029739,0.988233291,0.712729887,0.961238037,0.922476074,0,0,0,0,0,0,-0.573681761,125.0073673,0.573681761,54.99263274,0,0.962843664,0,0,0,10,5,0% +2018-10-16 14:00:00,94.44249033,97.95005173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64833241,1.709550905,11.37000447,-11.37000447,1,0,#DIV/0!,0,0,0.585789531,1,0.087724984,0,0.952582359,0.991344322,0.724496596,1,0,0,0.078394116,0.312029739,0.801857702,0.526354298,0.961238037,0.922476074,0,0,0,0,0,0,-0.374005117,111.9628363,0.374005117,68.03716366,0,0.91631199,0,0,0,10,6,0% +2018-10-16 15:00:00,82.7807188,107.2603802,61.26489666,281.8833212,25.84143905,25.52406498,0,25.52406498,25.06222431,0.461840669,58.46994223,42.836344,15.63359823,0.779214732,14.85438349,1.4447961,1.872046791,-6.283131461,6.283131461,0.395367549,0.395367549,0.42179846,0.300381442,9.661299722,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.0907633,0.564538421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.217625332,9.286808778,24.30838863,9.851347199,0,42.836344,-0.151964805,98.7408071,0.151964805,81.2591929,0,0.720976448,24.30838863,40.73534234,50.96885549,10,7,110% +2018-10-16 16:00:00,71.91442256,117.5186959,252.1605515,626.0125846,57.82298582,103.1435511,45.16324886,57.9803022,56.07940945,1.90089275,62.88282149,0,62.88282149,1.743576366,61.13924513,1.255143453,2.051088176,-2.067997334,2.067997334,0.883802062,0.883802062,0.229310197,1.730662927,55.66406884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90566145,1.263215142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253859399,53.50642026,55.15952085,54.7696354,45.16324886,0,0.072144315,85.8628411,-0.072144315,94.1371589,0,0,55.15952085,54.7696354,91.00515182,10,8,65% +2018-10-16 17:00:00,62.06748891,129.5489189,431.4623555,761.9157495,74.55723895,294.2606917,218.6990831,75.5616086,72.30906311,3.252545486,106.8612192,0,106.8612192,2.248175841,104.6130434,1.08328204,2.261055177,-0.955871438,0.955871438,0.693617333,0.693617333,0.172801261,2.428222453,78.09998104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50622187,1.628795744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759238901,75.07267245,71.26546077,76.7014682,218.6990831,0,0.287038407,73.31926742,-0.287038407,106.6807326,0.875807283,0,262.8037105,76.7014682,313.0032875,10,9,19% +2018-10-16 18:00:00,53.97549445,144.2053819,569.9481735,824.8797572,84.81063792,480.3234779,393.7736836,86.54979435,82.25328427,4.296510079,140.747887,0,140.747887,2.557353651,138.1905333,0.942050093,2.516858714,-0.374300445,0.374300445,0.594162836,0.594162836,0.148804123,2.8122939,90.45303904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0649855,1.852794015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037497358,86.94690167,81.10248286,88.79969569,393.7736836,0,0.477371011,61.4861611,-0.477371011,118.5138389,0.945259664,0,453.3208628,88.79969569,511.4384876,10,10,13% +2018-10-16 19:00:00,48.60479163,161.9380825,655.0946066,853.8069024,90.51553401,630.6639181,537.9393816,92.72453655,87.7861567,4.938379858,161.5646491,0,161.5646491,2.729377317,158.8352718,0.848313646,2.826352724,0.038367128,-0.038367128,0.523592524,0.523592524,0.138171698,2.910772715,93.62045624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.38339293,1.977424575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.108844924,89.99154357,86.49223785,91.96896814,537.9393816,0,0.630048059,50.94633167,-0.630048059,129.0536683,0.970640974,0,608.6382434,91.96896814,668.8300937,10,11,10% +2018-10-16 20:00:00,46.94036382,181.8585973,680.1990848,861.3046669,92.13538366,727.2198072,632.7350173,94.48478992,89.3571619,5.127628019,167.7003649,0,167.7003649,2.778221761,164.9221432,0.819263901,3.174031296,0.398429094,-0.398429094,0.462018302,0.462018302,0.135453554,2.742716104,88.21517794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89350288,2.012812208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987088481,84.79578446,87.88059137,86.80859667,632.7350173,0,0.734623928,42.72455197,-0.734623928,137.275448,0.981937964,0,709.1871262,86.80859667,766.0016165,10,12,8% +2018-10-16 21:00:00,49.36927802,201.5158681,643.3522546,850.1523302,89.7490021,758.3764409,666.4838413,91.8925996,87.04273855,4.849861049,158.6944662,0,158.6944662,2.706263552,155.9882026,0.861656451,3.517115394,0.772495375,-0.772495375,0.3980492,0.3980492,0.139502118,2.337742689,75.18984081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.66879112,1.960678731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69368662,72.27533497,85.36247774,74.2360137,666.4838413,0,0.783958142,38.37557843,-0.783958142,141.6244216,0.986221085,0,742.6628946,74.2360137,791.2488808,10,13,7% +2018-10-16 22:00:00,55.34228814,218.6721048,547.3472522,816.1382822,83.23179716,717.1056843,632.2574981,84.84818617,80.72205138,4.126134788,135.2204241,0,135.2204241,2.509745777,132.7106783,0.965905144,3.816548211,1.235577303,-1.235577303,0.318857527,0.318857527,0.152063972,1.743022744,56.06160305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.5931062,1.818302272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262814045,53.88854526,78.85592025,55.70684753,632.2574981,0,0.774694083,39.22269469,-0.774694083,140.7773053,0.985458394,0,701.9193791,55.70684753,738.3783967,10,14,5% +2018-10-16 23:00:00,63.83904803,232.762678,399.8373636,743.6358683,71.97258243,598.9391344,526.1226479,72.81648646,69.80234352,3.014142939,99.11543688,0,99.11543688,2.170238911,96.94519797,1.114201579,4.062475107,1.944333965,-1.944333965,0.197652999,0.197652999,0.180004644,1.031075561,33.16293435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.09666765,1.572330703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747010734,31.87747391,67.84367839,33.44980462,526.1226479,0,0.707500365,44.96809966,-0.707500365,135.0319003,0.979328658,0,583.0906653,33.44980462,604.9828934,10,15,4% +2018-10-16 00:00:00,73.93609398,244.3755507,214.9101398,583.6506813,53.40854083,396.0823553,342.6641956,53.41815968,51.79807626,1.620083412,53.71791609,0,53.71791609,1.610464562,52.10745153,1.290428276,4.26515797,3.456071583,-3.456071583,0,0,0.248515686,0.402616141,12.94951907,0.057376866,1,0.281653921,0,0.92718899,0.965950953,0.724496596,1,49.91920013,1.166776093,0.009554159,0.312029739,0.973263826,0.697760422,0.961238037,0.922476074,0.287293972,12.44757029,50.2064941,13.61434638,323.0031979,0,0.587104935,54.04816634,-0.587104935,125.9518337,0.964836349,0,361.8517201,13.61434638,370.7620376,10,16,2% +2018-10-16 01:00:00,84.92078077,254.374652,31.55525419,172.7742612,16.25902465,89.06913871,73.06250681,16.00663191,15.76875507,0.237876835,8.141206295,0,8.141206295,0.490269583,7.650936713,1.482147228,4.439675212,11.21808699,-11.21808699,0,0,0.515255702,0.122567396,3.942188768,0.581283747,1,0.088906763,0,0.952453327,0.99121529,0.724496596,1,15.27493429,0.355198644,0.0779224,0.312029739,0.80290429,0.527400885,0.961238037,0.922476074,0.084270788,3.789381792,15.35920507,4.144580436,30.59245908,0,0.422878421,64.9835519,-0.422878421,115.0164481,0.931762707,0,43.86411754,4.144580436,46.57666255,10,17,6% +2018-10-16 02:00:00,96.70905673,263.565356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687891456,4.600083256,-8.263845107,8.263845107,1,0.056645566,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.220419906,77.2663027,-0.220419906,102.7336973,0.823160234,0,0,0,0,10,18,0% +2018-10-16 03:00:00,108.5451467,272.7044181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894470197,4.75958998,-2.749884006,2.749884006,1,0.999588449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000261789,89.98500061,-0.000261789,90.01499939,0,0,0,0,0,10,19,0% +2018-10-16 04:00:00,120.2824018,282.649281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099323944,4.933160582,-1.44190744,1.44190744,1,0.776734384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225168916,103.0128112,0.225168916,76.98718879,0,0.827944483,0,0,0,10,20,0% +2018-10-16 05:00:00,131.512224,294.6197482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295321315,5.142084648,-0.804179666,0.804179666,1,0.667676512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440514604,116.1367195,0.440514604,63.86328047,0,0.936496385,0,0,0,10,21,0% +2018-10-16 06:00:00,141.5188955,310.5935965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46997068,5.420880894,-0.390295615,0.390295615,1,0.596898171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631107037,129.131845,0.631107037,50.86815496,0,0.970774136,0,0,0,10,22,0% +2018-10-16 07:00:00,148.8921973,333.3069652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598659073,5.817303963,-0.070329105,0.070329105,1,0.542180675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783966821,141.6252226,0.783966821,38.37477742,0,0.986221791,0,0,0,10,23,0% +2018-10-17 08:00:00,151.3952856,2.889600716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642346206,0.050433047,0.212107622,-0.212107622,1,0.49388115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888687595,152.7087912,0.888687595,27.2912088,0,0.993737259,0,0,0,10,0,0% +2018-10-17 09:00:00,147.8424114,31.57427233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580336853,0.551075011,0.492532929,-0.492532929,1,0.445925598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938144791,159.7422965,0.938144791,20.2577035,0,0.996703323,0,0,0,10,1,0% +2018-10-17 10:00:00,139.8430444,52.88149491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44072156,0.9229562,0.806397485,-0.806397485,1,0.392251598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928980777,158.27649,0.928980777,21.72350995,0,0.996177573,0,0,0,10,2,0% +2018-10-17 11:00:00,129.5423562,67.93810019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260940636,1.185743536,1.210487246,-1.210487246,1,0.323148179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861833357,149.5230596,0.861833357,30.47694043,0,0.991984144,0,0,0,10,3,0% +2018-10-17 12:00:00,118.1904772,79.42933865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062812971,1.386303482,1.84052756,-1.84052756,1,0.21540494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741292131,137.841602,0.741292131,42.15839803,0,0.982550208,0,0,0,10,4,0% +2018-10-17 13:00:00,106.4248022,89.164702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857463204,1.556217627,3.204281673,-3.204281673,1,0,#DIV/0!,0,0,0.017499077,1,0.3025044,0,0.923974376,0.962736339,0.724496596,1,0,0,0.002968106,0.312029739,0.991617846,0.716114442,0.961238037,0.922476074,0,0,0,0,0,0,-0.575585614,125.1406534,0.575585614,54.85934659,0,0.96313195,0,0,0,10,5,0% +2018-10-17 14:00:00,94.62565679,98.27215243,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651529268,1.715172623,10.8851901,-10.8851901,1,0,#DIV/0!,0,0,0.571059091,1,0.091610795,0,0.952156862,0.990918825,0.724496596,1,0,0,0.076845999,0.312029739,0.80529914,0.529795736,0.961238037,0.922476074,0,0,0,0,0,0,-0.376020415,112.0873948,0.376020415,67.91260522,0,0.917028496,0,0,0,10,6,0% +2018-10-17 15:00:00,82.97542867,107.5750075,58.36217157,272.7391163,25.00754509,24.69343404,0,24.69343404,24.25347534,0.439958702,56.93801089,42.03335694,14.90465394,0.754069752,14.15058419,1.448194429,1.877538074,-6.432043159,6.432043159,0.369902149,0.369902149,0.428488941,0.281526102,9.054847172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.31336302,0.546320969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.203964702,8.70386352,23.51732772,9.250184488,0,42.03335694,-0.154115616,98.8655085,0.154115616,81.1344915,0,0.725568244,23.51732772,39.74825346,49.53176465,10,7,111% +2018-10-17 16:00:00,72.13602867,117.8288805,248.1224437,621.9927353,57.32108642,100.8249739,43.36187796,57.46309596,55.59264417,1.870451788,61.88860138,0,61.88860138,1.728442248,60.16015913,1.25901121,2.056501919,-2.083008092,2.083008092,0.886369053,0.886369053,0.231019353,1.707011712,54.90336446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.43776415,1.252250525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.236724174,52.77520227,54.67448832,54.0274528,43.36187796,0,0.069714444,86.00241398,-0.069714444,93.99758602,0,0,54.67448832,54.0274528,90.03437563,10,8,65% +2018-10-17 17:00:00,62.32425375,129.8486225,426.9612622,759.6301843,74.13794979,291.0983583,215.9773269,75.1210314,71.90241706,3.218614343,105.7572339,0,105.7572339,2.235532726,103.5217012,1.087763432,2.266285993,-0.95769926,0.95769926,0.693929909,0.693929909,0.173640928,2.404550184,77.33859949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11533822,1.61963585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742088423,74.34080355,70.85742664,75.9604394,215.9773269,0,0.284319043,73.48185119,-0.284319043,106.5181488,0.87414122,0,259.6521107,75.9604394,309.3666991,10,9,19% +2018-10-17 18:00:00,54.27516144,144.4711209,565.0846932,823.2249154,84.40925757,476.6150302,390.4911761,86.12385413,81.86400702,4.25984711,139.5565767,0,139.5565767,2.545250553,137.0113262,0.947280269,2.521496734,-0.372236802,0.372236802,0.593809932,0.593809932,0.149374525,2.788003396,89.6717729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.69079739,1.844025361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019898969,86.19591895,80.71069636,88.03994431,390.4911761,0,0.474343243,61.68340275,-0.474343243,118.3165973,0.944591099,0,449.5651855,88.03994431,507.1855682,10,10,13% +2018-10-17 19:00:00,48.94644173,162.1231489,649.9258216,852.3819255,90.11187052,626.4917419,534.1976614,92.29408052,87.39466515,4.899415373,160.2992454,0,160.2992454,2.717205374,157.58204,0.854276565,2.829582741,0.042537852,-0.042537852,0.522879288,0.522879288,0.13864947,2.885911564,92.82083616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.00707636,1.968606043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090833104,89.22291833,86.09790946,91.19152437,534.1976614,0,0.626711625,51.19207328,-0.626711625,128.8079267,0.97021849,0,604.3863576,91.19152437,664.0693865,10,11,10% +2018-10-17 20:00:00,47.30690942,181.9142543,674.788665,859.8921622,91.72069236,722.6224504,628.5806333,94.04181707,88.95497508,5.086841989,166.3760416,0,166.3760416,2.765717288,163.6103243,0.825661328,3.175002695,0.404551002,-0.404551002,0.460971394,0.460971394,0.135925064,2.717588825,87.40699827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50690561,2.00375276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.968883853,84.01893142,87.47578946,86.02268418,628.5806333,0,0.730999375,43.02975925,-0.730999375,136.9702408,0.981600489,0,704.4908463,86.02268418,760.7909727,10,12,8% +2018-10-17 21:00:00,49.7332208,201.4384508,637.7789292,848.5566358,89.31649756,753.3781935,661.9470709,91.43112258,86.62327562,4.807846967,157.3301073,0,157.3301073,2.693221944,154.6368853,0.868008451,3.515764206,0.781303491,-0.781303491,0.396542924,0.396542924,0.140043036,2.312828653,74.38851977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.2655874,1.951230131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675636486,71.50507471,84.94122389,73.45630484,661.9470709,0,0.780085905,38.73155857,-0.780085905,141.2684414,0.985904495,0,737.5578166,73.45630484,785.633499,10,13,7% +2018-10-17 22:00:00,55.68368417,218.5037447,541.7082336,814.065435,82.76967018,711.7023763,627.3448916,84.35748472,80.27385924,4.083625483,133.8392439,0,133.8392439,2.495810944,131.3434329,0.971863628,3.813609773,1.249209502,-1.249209502,0.316526283,0.316526283,0.15279382,1.719030091,55.28991686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16228686,1.808206533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245431449,53.14677114,78.40771831,54.95497768,627.3448916,0,0.770632021,39.58932222,-0.770632021,140.4106778,0.98511819,0,696.4165827,54.95497768,732.3835165,10,14,5% +2018-10-17 23:00:00,64.15232546,232.5472347,394.2629741,740.4344495,71.44830076,593.0287857,520.762794,72.26599171,69.29387088,2.972120836,97.74805257,0,97.74805257,2.154429884,95.59362269,1.119669302,4.058714912,1.969187201,-1.969187201,0.193402845,0.193402845,0.18121991,1.00925588,32.46113839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60790441,1.560877117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.731202449,31.20288094,67.33910686,32.76375806,520.762794,0,0.70332059,45.30597373,-0.70332059,134.6940263,0.978908665,0,577.1183181,32.76375806,598.5615424,10,15,4% +2018-10-17 00:00:00,74.22424263,244.1379595,209.6653548,577.3340675,52.70375494,389.2192441,336.5241558,52.69508828,51.11454227,1.580546007,52.42500536,0,52.42500536,1.589212667,50.83579269,1.295457419,4.261011223,3.521131007,-3.521131007,0,0,0.251370833,0.397303167,12.77863557,0.067159981,1,0.27671372,0,0.927937433,0.966699396,0.724496596,1,49.27933306,1.151379168,0.01113325,0.312029739,0.968913582,0.693410178,0.961238037,0.922476074,0.282845282,12.28331057,49.56217834,13.43468973,313.9231997,0,0.582893293,54.34570017,-0.582893293,125.6542998,0.964221006,0,352.2535219,13.43468973,361.0462577,10,16,2% +2018-10-17 01:00:00,85.18512545,254.1244334,28.37296039,159.1241073,15.01663342,81.41970141,66.64198754,14.77771387,14.56382651,0.21388736,7.33215964,0,7.33215964,0.452806903,6.879352737,1.486760913,4.435308072,11.84097469,-11.84097469,0,0,0.529258604,0.113201726,3.640956628,0.599161806,1,0.084252584,0,0.952959604,0.991721567,0.724496596,1,14.10502052,0.32805706,0.079784694,0.312029739,0.798782795,0.52327939,0.961238037,0.922476074,0.077922465,3.499826001,14.18294299,3.827883061,26.71265395,0,0.418805099,65.24082863,-0.418805099,114.7591714,0.930612724,0,39.04207864,3.827883061,41.54735154,10,17,6% +2018-10-17 02:00:00,96.97007125,263.3035339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692447019,4.595513598,-7.960163099,7.960163099,1,0.108578248,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.216349602,77.50528249,-0.216349602,102.4947175,0.818892572,0,0,0,0,10,18,0% +2018-10-17 03:00:00,108.8040835,272.4279921,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898989496,4.754765437,-2.71465472,2.71465472,1,0.994386988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.00361852,90.20732637,0.00361852,89.79267363,0,0,0,0,0,10,19,0% +2018-10-17 04:00:00,120.5488396,282.3546568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103974161,4.92801842,-1.431312477,1.431312477,1,0.774922539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.228801431,103.2265173,0.228801431,76.77348272,0,0.831469899,0,0,0,10,20,0% +2018-10-17 05:00:00,131.7981343,294.3095439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300311392,5.136670561,-0.800381086,0.800381086,1,0.667026916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443858578,116.350334,0.443858578,63.64966597,0,0.937351507,0,0,0,10,21,0% +2018-10-17 06:00:00,141.8381594,310.2986308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475542886,5.415732772,-0.389369801,0.389369801,1,0.596739847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634141578,129.3563459,0.634141578,50.64365408,0,0.971153254,0,0,0,10,22,0% +2018-10-17 07:00:00,149.2499683,333.1407207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903355,5.814402449,-0.071054214,0.071054214,1,0.542304676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786692333,141.8774704,0.786692333,38.1225296,0,0.986442752,0,0,0,10,23,0% +2018-10-18 08:00:00,151.7573575,3.024529851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648665552,0.052788004,0.210094422,-0.210094422,1,0.494225427,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891125748,153.0150504,0.891125748,26.98494956,0,0.993891196,0,0,0,10,0,0% +2018-10-18 09:00:00,148.1521116,31.94799868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585742142,0.557597766,0.489152364,-0.489152364,1,0.446503709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940337021,160.1082318,0.940337021,19.89176816,0,0.996827575,0,0,0,10,1,0% +2018-10-18 10:00:00,140.0914922,53.3025092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445057793,0.930304285,0.801116128,-0.801116128,1,0.393154763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930985424,158.5889493,0.930985424,21.41105075,0,0.996293466,0,0,0,10,2,0% +2018-10-18 11:00:00,129.749723,68.33197835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264559869,1.192618007,1.201871641,-1.201871641,1,0.324621534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.863721643,149.7370526,0.863721643,30.26294738,0,0.992110979,0,0,0,10,3,0% +2018-10-18 12:00:00,118.376401,79.789043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066057954,1.392581507,1.824329527,-1.824329527,1,0.218174966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743143238,137.9998641,0.743143238,42.00013594,0,0.98271822,0,0,0,10,4,0% +2018-10-18 13:00:00,106.6038762,89.49905546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860588634,1.562053195,3.161265302,-3.161265302,1,0,#DIV/0!,0,0,0.01034635,1,0.306369429,0,0.923368655,0.962130618,0.724496596,1,0,0,0.001760769,0.312029739,0.995019172,0.719515767,0.961238037,0.922476074,0,0,0,0,0,0,-0.577481221,125.2735794,0.577481221,54.72642055,0,0.963417098,0,0,0,10,5,0% +2018-10-18 14:00:00,94.80927619,98.59108898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654734031,1.720739116,10.43624346,-10.43624346,1,0,#DIV/0!,0,0,0.556452321,1,0.095528268,0,0.951724335,0.990486298,0.724496596,1,0,0,0.075293734,0.312029739,0.808769014,0.53326561,0.961238037,0.922476074,0,0,0,0,0,0,-0.378039063,112.2122705,0.378039063,67.78772953,0,0.917738536,0,0,0,10,6,0% +2018-10-18 15:00:00,83.17064218,107.8860002,55.48919022,263.4453813,24.16217836,23.85190048,0,23.85190048,23.43359953,0.418300955,55.35310727,41.17053185,14.18257543,0.728578826,13.4539966,1.451601547,1.88296592,-6.589994628,6.589994628,0.342890857,0.342890857,0.435439376,0.263120525,8.462860548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.52526721,0.52785288,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190629925,8.13482346,22.71589713,8.662676339,0,41.17053185,-0.156277296,98.99088275,0.156277296,81.00911725,0,0.730055893,22.71589713,38.71946572,48.05701305,10,7,112% +2018-10-18 16:00:00,72.35826755,118.1347472,244.0729182,617.8870755,56.81353725,98.50203251,41.56170827,56.94032424,55.10039948,1.839924754,60.89144257,0,60.89144257,1.713137768,59.1783048,1.26289001,2.0618403,-2.098547017,2.098547017,0.889026365,0.889026365,0.232772803,1.683269898,54.13974612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.96459983,1.241162481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219523311,52.04118328,54.18412314,53.28234576,41.56170827,0,0.067264246,86.14313047,-0.067264246,93.85686953,0,0,54.18412314,53.28234576,89.05635279,10,8,64% +2018-10-18 17:00:00,62.58138977,130.1431148,422.4447593,757.3030687,73.71568415,287.9148433,213.2373919,74.67745133,71.49288429,3.184567037,104.6494227,0,104.6494227,2.222799859,102.4266228,1.092251302,2.271425852,-0.959658539,0.959658539,0.694264965,0.694264965,0.174497807,2.380830271,76.57568557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72167974,1.610410931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.724903427,73.60746167,70.44658317,75.2178726,213.2373919,0,0.28157471,73.64578918,-0.28157471,106.3542108,0.872427234,0,256.4806913,75.2178726,305.7092845,10,9,19% +2018-10-18 18:00:00,54.57454344,144.7308396,560.2084877,821.544151,84.00594377,472.8808702,387.1849274,85.69594283,81.47285462,4.223088214,138.3621229,0,138.3621229,2.533089154,135.8290337,0.952505471,2.52602968,-0.370226376,0.370226376,0.593466129,0.593466129,0.149954786,2.763706448,88.89029956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31480683,1.835214469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.002295914,85.44473704,80.31710274,87.27995151,387.1849274,0,0.471289251,61.88198282,-0.471289251,118.1180172,0.943908041,0,445.784069,87.27995151,502.9070516,10,10,13% +2018-10-18 19:00:00,49.2867772,162.3023516,644.7509714,850.9377281,89.70696902,622.2953308,530.4329528,91.86237808,87.00197292,4.860405166,159.0323338,0,159.0323338,2.704996099,156.3273377,0.86021654,2.832710418,0.046683394,-0.046683394,0.522170359,0.522170359,0.139134291,2.861091339,92.02253241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.62960565,1.959760466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072850936,88.4555584,85.70245659,90.41531887,530.4329528,0,0.623351081,51.43873673,-0.623351081,128.5612633,0.96978838,0,600.1101706,90.41531887,659.2851885,10,11,10% +2018-10-18 20:00:00,47.67112045,181.9659413,669.3818983,858.4632992,91.3053886,718.0067426,624.4084649,93.59827775,88.55219425,5.046083498,165.0525854,0,165.0525854,2.753194347,162.2993911,0.83201801,3.175904802,0.410665467,-0.410665467,0.459925759,0.459925759,0.136402536,2.692556118,86.60186035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.11973736,1.994679932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950747742,83.24500223,87.0704851,85.23968216,624.4084649,0,0.727356039,43.334803,-0.727356039,136.665197,0.981257875,0,699.7762083,85.23968216,755.5638754,10,12,8% +2018-10-18 21:00:00,50.09428166,201.3595946,632.2212732,846.9448363,88.88397557,748.3709144,657.4011676,90.96974677,86.20379576,4.765951009,155.9695471,0,155.9695471,2.68017981,153.2893673,0.874310151,3.514387907,0.790127002,-0.790127002,0.395034014,0.395034014,0.140589979,2.288067165,73.59210519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86236741,1.941781149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657696872,70.73953072,84.52006428,72.68131187,657.4011676,0,0.776203053,39.08576682,-0.776203053,140.9142332,0.985583866,0,732.4440485,72.68131187,780.0125135,10,13,6% +2018-10-18 22:00:00,56.02205621,218.3354888,536.0984736,811.9731814,82.30800033,706.3015701,622.4341229,83.86744718,79.82611044,4.041336743,132.4651716,0,132.4651716,2.481889894,129.9832817,0.977769335,3.810673153,1.262910049,-1.262910049,0.314183352,0.314183352,0.153531495,1.695251075,54.52510196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73189369,1.79812078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228203633,52.41160197,77.96009732,54.20972275,622.4341229,0,0.766569805,39.95314833,-0.766569805,140.0468517,0.984774368,0,690.9172673,54.20972275,726.3964467,10,14,5% +2018-10-18 23:00:00,64.46252945,232.3323874,388.7327095,737.2009431,70.92443827,587.1322807,515.4160445,71.71623614,68.78580478,2.930431365,96.3913795,0,96.3913795,2.138633497,94.252746,1.125083383,4.054965119,1.994298788,-1.994298788,0.189108511,0.189108511,0.1824504,0.987719437,31.76845237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.11953195,1.549432689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71559937,30.53704479,66.83513132,32.08647747,515.4160445,0,0.69915272,45.64093393,-0.69915272,134.3590661,0.978484867,0,571.1619309,32.08647747,592.1618887,10,15,4% +2018-10-18 00:00:00,74.50920115,243.9009463,204.4845993,570.9363121,51.99686055,382.3750657,330.4046111,51.97045464,50.42896335,1.541491284,51.14755572,0,51.14755572,1.567897193,49.57965853,1.300430883,4.256874562,3.587710339,-3.587710339,0,0,0.254282527,0.391974298,12.60724084,0.076963616,1,0.271829997,0,0.928672308,0.967434271,0.724496596,1,48.63626463,1.135936179,0.012701544,0.312029739,0.964612388,0.689108984,0.961238037,0.922476074,0.278424331,12.11855943,48.91468896,13.25449561,304.9754774,0,0.578706598,54.64037701,-0.578706598,125.359623,0.963600432,0,342.7891908,13.25449561,351.4639931,10,16,3% +2018-10-18 01:00:00,85.44566464,253.8745744,25.3608711,145.7065152,13.7911228,74.00212317,60.43567265,13.56645053,13.37526957,0.191180959,6.564890053,0,6.564890053,0.415853236,6.149036816,1.49130818,4.430947211,12.52529093,-12.52529093,0,0,0.543795312,0.103963309,3.343817392,0.617121882,1,0.079669476,0,0.953453197,0.99221516,0.724496596,1,12.95119734,0.301284254,0.081630562,0.312029739,0.794725002,0.519221598,0.961238037,0.922476074,0.071655752,3.214204465,13.0228531,3.51548872,23.13949659,0,0.414776735,65.4947428,-0.414776735,114.5052572,0.92945322,0,34.5299327,3.51548872,36.83074976,10,17,7% +2018-10-18 02:00:00,97.22752115,263.0417323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696940368,4.590944299,-7.681957641,7.681957641,1,0.156154184,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.21232809,77.74118077,-0.21232809,102.2588192,0.814515378,0,0,0,0,10,18,0% +2018-10-18 03:00:00,109.0591897,272.1510768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903441939,4.749932354,-2.680859473,2.680859473,1,0.98860766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.007440218,90.426297,0.007440218,89.573703,0,0,0,0,0,10,19,0% +2018-10-18 04:00:00,120.8111749,282.0587017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108552776,4.922853028,-1.421072164,1.421072164,1,0.773171342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232367989,103.4365253,0.232367989,76.56347466,0,0.834824062,0,0,0,10,20,0% +2018-10-18 05:00:00,132.079753,293.9965321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305226565,5.131207475,-0.796721464,0.796721464,1,0.666401084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447132221,116.5598386,0.447132221,63.44016143,0,0.938176254,0,0,0,10,21,0% +2018-10-18 06:00:00,142.1532681,309.9985221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48104257,5.410494886,-0.388510712,0.388510712,1,0.596592934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637104689,129.5762607,0.637104689,50.4237393,0,0.971519962,0,0,0,10,22,0% +2018-10-18 07:00:00,149.6044145,332.9679464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611089609,5.811386968,-0.071813405,0.071813405,1,0.542434505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789348665,142.1246848,0.789348665,37.87531515,0,0.986656636,0,0,0,10,23,0% +2018-10-19 08:00:00,152.1170634,3.156999976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654943605,0.055100044,0.208066289,-0.208066289,1,0.494572259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893500161,153.3164254,0.893500161,26.6835746,0,0.994040301,0,0,0,10,0,0% +2018-10-19 09:00:00,148.4596721,32.3219377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591110085,0.564124234,0.485772448,-0.485772448,1,0.447081708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942473767,160.4712316,0.942473767,19.52876835,0,0.996948126,0,0,0,10,1,0% +2018-10-19 10:00:00,140.3382582,53.72245736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449364672,0.937633763,0.795854819,-0.795854819,1,0.3940545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93294509,158.8986561,0.93294509,21.10134394,0,0.996406278,0,0,0,10,2,0% +2018-10-19 11:00:00,129.9560956,68.72370872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268161751,1.199454991,1.193313768,-1.193313768,1,0.326085017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86557697,149.9486531,0.86557697,30.05134689,0,0.992235062,0,0,0,10,3,0% +2018-10-19 12:00:00,118.5619531,80.146093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06929645,1.398813206,1.808303293,-1.808303293,1,0.220915614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744974099,138.1568743,0.744974099,41.84312573,0,0.982883573,0,0,0,10,4,0% +2018-10-19 13:00:00,106.7830575,89.83044775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863715939,1.567837082,3.119083827,-3.119083827,1,0,#DIV/0!,0,0,0.003230589,1,0.310253433,0,0.922756885,0.961518848,0.724496596,1,0,0,0.000551626,0.312029739,0.998436973,0.722933569,0.961238037,0.922476074,0,0,0,0,0,0,-0.57936911,125.4061814,0.57936911,54.59381859,0,0.963699231,0,0,0,10,5,0% +2018-10-19 14:00:00,94.99333454,98.90673784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657946455,1.726248228,10.01938032,-10.01938032,1,0,#DIV/0!,0,0,0.541969612,1,0.099477136,0,0.951284727,0.99004669,0.724496596,1,0,0,0.073737522,0.312029739,0.812267017,0.536763613,0.961238037,0.922476074,0,0,0,0,0,0,-0.380061468,112.3374902,0.380061468,67.66250983,0,0.918442333,0,0,0,10,6,0% +2018-10-19 15:00:00,83.36631816,108.1932412,52.64891708,254.0077369,23.3056655,22.99980347,0,22.99980347,22.6029137,0.396889776,53.71558717,40.24749587,13.4680913,0.702751804,12.76533949,1.455016737,1.888328288,-6.75779663,6.75779663,0.314195024,0.314195024,0.442661821,0.245188464,7.886103823,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.72678039,0.509141289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177638207,7.580422957,21.9044186,8.089564247,0,40.24749587,-0.158449882,99.11693326,0.158449882,80.88306674,0,0.734442806,21.9044186,37.64904807,46.54496758,10,7,112% +2018-10-19 16:00:00,72.58108526,118.436188,240.0132349,613.6942419,56.30030783,96.1755644,39.76359743,56.41196697,54.60264583,1.809321147,59.8916496,0,59.8916496,1.697662007,58.19398759,1.266778912,2.067101434,-2.114636917,2.114636917,0.8917779,0.8917779,0.23457168,1.65944375,53.37341531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.48614008,1.229950345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.202261348,51.30455695,53.68840143,52.5345073,39.76359743,0,0.064793825,86.28498476,-0.064793825,93.71501524,0,0,53.68840143,52.5345073,88.07118576,10,8,64% +2018-10-19 17:00:00,62.83881819,130.4323076,417.9143696,754.9341942,73.29050494,284.7110178,210.4800769,74.23094085,71.0805258,3.150415046,103.5381565,0,103.5381565,2.209979137,101.3281774,1.096744275,2.276473219,-0.96175496,0.96175496,0.694623474,0.694623474,0.175372062,2.357071182,75.8115116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32530508,1.601122362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.707690048,72.87290859,70.03299513,74.47403095,210.4800769,0,0.27880586,73.81105239,-0.27880586,106.1889476,0.87066374,0,253.2903662,74.47403095,302.03213,10,9,19% +2018-10-19 18:00:00,54.87353862,144.9844891,555.3214669,819.8376247,83.60079926,469.1222437,383.8560692,85.2661745,81.07992671,4.186247786,137.1649915,0,137.1649915,2.520872552,134.6441189,0.957723921,2.5304567,-0.368272646,0.368272646,0.593132021,0.593132021,0.150544872,2.739413191,88.10894488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.93710958,1.826363583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984695531,84.69366921,79.92180511,86.52003279,383.8560692,0,0.468209872,62.08184194,-0.468209872,117.9181581,0.943210282,0,441.9787965,86.52003279,498.6044276,10,10,13% +2018-10-19 19:00:00,49.62568413,162.4756836,639.5723404,849.4746514,89.30095971,618.076386,526.6468133,91.42957275,86.60820629,4.821366459,157.7644721,0,157.7644721,2.692753421,155.0717187,0.866131582,2.835735634,0.050800528,-0.050800528,0.521466288,0.521466288,0.13962605,2.836323391,91.22591006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.25110219,1.950890687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054906642,87.68981469,85.30600883,89.64070538,526.6468133,0,0.619967662,51.686227,-0.619967662,128.313773,0.969350632,0,595.8114302,89.64070538,654.4794791,10,11,10% +2018-10-19 20:00:00,48.03288109,182.01365,663.9813885,857.018572,90.88962606,713.3748503,620.2205097,93.15434066,88.14896849,5.005372173,163.7306325,0,163.7306325,2.740657573,160.9899749,0.838331924,3.176737476,0.416768822,-0.416768822,0.458882023,0.458882023,0.136885804,2.667630081,85.80015333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73214142,1.985597082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932688913,82.47437094,86.66483034,84.45996803,620.2205097,0,0.72369553,43.63956079,-0.72369553,136.3604392,0.980910172,0,695.0454369,84.45996803,750.3227968,10,12,8% +2018-10-19 21:00:00,50.45234019,201.2792634,626.682127,845.3176255,88.45161249,743.3572144,652.8485498,90.50866461,85.78447002,4.724194585,154.6134796,0,154.6134796,2.667142468,151.9463372,0.880559452,3.512985863,0.798961162,-0.798961162,0.393523284,0.393523284,0.141142708,2.263470519,72.80099251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.45929556,1.932335639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639876686,69.97908312,84.09917224,71.91141876,652.8485498,0,0.772311531,39.43808145,-0.772311531,140.5619186,0.985259286,0,727.3242683,71.91141876,774.3888536,10,13,6% +2018-10-19 22:00:00,56.35727669,218.1672999,530.5209447,809.8625503,81.8469901,700.9062962,617.5280039,83.37829234,79.37900136,3.999290974,131.0989339,0,131.0989339,2.467988735,128.6309452,0.983620036,3.807737704,1.276672136,-1.276672136,0.311829896,0.311829896,0.154276642,1.671697505,53.76753819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30211544,1.788049437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211139152,51.68340285,77.51325459,53.47145229,617.5280039,0,0.762509643,40.31405522,-0.762509643,139.6859448,0.984427059,0,685.4245312,53.47145229,720.4205273,10,14,5% +2018-10-19 23:00:00,64.76952948,232.1181202,383.2495554,733.937041,70.40123796,581.2530927,510.0856147,71.16747791,68.27838088,2.889097034,95.04614889,0,95.04614889,2.122857077,92.92329181,1.130441544,4.051225451,2.019658863,-2.019658863,0.184771683,0.184771683,0.18369555,0.966476621,31.08521038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.6317768,1.538002726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700209022,29.8802866,66.33198582,31.41828933,510.0856147,0,0.694999143,45.97285106,-0.694999143,134.0271489,0.978057465,0,565.2250293,31.41828933,585.7876713,10,15,4% +2018-10-19 00:00:00,74.79083992,243.664518,199.3708259,564.460925,51.28819614,375.5541248,324.3095155,51.24460929,49.74166779,1.5029415,49.88629331,0,49.88629331,1.546528347,48.33976497,1.305346407,4.25274811,3.655823157,-3.655823157,0,0,0.257250257,0.386632087,12.43541695,0.086782085,1,0.267004826,0,0.929393461,0.968155424,0.724496596,1,47.99034227,1.120454523,0.014258236,0.312029739,0.960362049,0.684858645,0.961238037,0.922476074,0.274032221,11.95339578,48.26437449,13.0738503,296.1652595,0,0.574547327,54.93206263,-0.574547327,125.0679374,0.962974967,0,333.4641055,13.0738503,342.020679,10,16,3% +2018-10-19 01:00:00,85.70223374,253.6251012,22.52382014,132.5869427,12.5877745,66.84424088,54.46624016,12.37800072,12.20820665,0.16979407,5.84072881,0,5.84072881,0.379567845,5.461160965,1.495786155,4.426593081,13.27988783,-13.27988783,0,0,0.558864989,0.094891961,3.052051663,0.635148466,1,0.075159993,0,0.953934055,0.992696018,0.724496596,1,11.81847695,0.274995612,0.08345859,0.312029739,0.790733278,0.515229874,0.961238037,0.922476074,0.065495897,2.933748149,11.88397284,3.20874376,19.87209129,0,0.410796411,65.7451261,-0.410796411,114.2548739,0.928285207,0,30.33094123,3.20874376,32.43099984,10,17,7% +2018-10-19 02:00:00,97.4812818,262.7799928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701369327,4.586376083,-7.426328846,7.426328846,1,0.199869282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.208357697,77.97387356,-0.208357697,102.0261264,0.810028064,0,0,0,0,10,18,0% +2018-10-19 03:00:00,109.3103405,271.8737271,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907825349,4.745091688,-2.648440166,2.648440166,1,0.983063632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011201196,90.64179468,0.011201196,89.35820532,0,0,0,0,0,10,19,0% +2018-10-19 04:00:00,121.0692788,281.7614792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.113057538,4.917665517,-1.411180411,1.411180411,1,0.771479753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235866778,103.6427219,0.235866778,76.35727812,0,0.838015928,0,0,0,10,20,0% +2018-10-19 05:00:00,132.3569406,293.680766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310064401,5.125696317,-0.793200331,0.793200331,1,0.665798935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450334082,116.7651203,0.450334082,63.23487971,0,0.938971317,0,0,0,10,21,0% +2018-10-19 06:00:00,142.4640679,309.6932449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486467051,5.405166794,-0.387718815,0.387718815,1,0.596457512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639995311,129.7914699,0.639995311,50.20853012,0,0.971874428,0,0,0,10,22,0% +2018-10-19 07:00:00,149.9553903,332.7884257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617215291,5.80825374,-0.072607263,0.072607263,1,0.542570263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791935157,142.3667244,0.791935157,37.63327556,0,0.986863518,0,0,0,10,23,0% +2018-10-20 08:00:00,152.4743093,3.286746217,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661178721,0.057364543,0.206022704,-0.206022704,1,0.494921732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895810555,153.6127335,0.895810555,26.38726647,0,0.994184627,0,0,0,10,0,0% +2018-10-20 09:00:00,148.7650472,32.69585238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596439886,0.570650276,0.482392762,-0.482392762,1,0.447659669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944555083,160.8311601,0.944555083,19.16883994,0,0.997065025,0,0,0,10,1,0% +2018-10-20 10:00:00,140.5833334,54.14111575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453642041,0.944940731,0.790613221,-0.790613221,1,0.394950866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934860093,159.2055538,0.934860093,20.79444623,0,0.996516061,0,0,0,10,2,0% +2018-10-20 11:00:00,130.1614807,69.11310799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271746397,1.206251291,1.184813217,-1.184813217,1,0.327538696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867399834,150.157875,0.867399834,29.84212501,0,0.992356457,0,0,0,10,3,0% +2018-10-20 12:00:00,118.7471406,80.50033676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072528581,1.404995925,1.792447204,-1.792447204,1,0.223627165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746785289,138.3126718,0.746785289,41.68732821,0,0.983046351,0,0,0,10,4,0% +2018-10-20 13:00:00,106.9623457,90.15874554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866845108,1.573566959,3.077717499,-3.077717499,1,0.003833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58124983,125.5384971,0.58124983,54.46150289,0,0.963978469,0,0,0,10,5,0% +2018-10-20 14:00:00,95.17781813,99.21897603,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661166301,1.731697812,9.631332721,-9.631332721,1,0,#DIV/0!,0,0,0.527611399,1,0.103457091,0,0.950837993,0.989599956,0.724496596,1,0,0,0.072177575,0.312029739,0.815792808,0.540289404,0.961238037,0.922476074,0,0,0,0,0,0,-0.382088052,112.4630815,0.382088052,67.5369185,0,0.919140111,0,0,0,10,6,0% +2018-10-20 15:00:00,83.56241446,108.4966147,49.84444641,244.4330157,22.43841836,22.13756575,0,22.13756575,21.76181726,0.375748491,52.02607016,39.26410595,12.76196421,0.676601102,12.08536311,1.458439263,1.893623153,-6.936357528,6.936357528,0.283659312,0.283659312,0.450168875,0.227753783,7.325344574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.9182865,0.490195196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.165006841,7.041399838,21.08329334,7.531595033,0,39.26410595,-0.160633398,99.24366282,0.160633398,80.75633718,0,0.738732228,21.08329334,36.5372555,44.99619632,10,7,113% +2018-10-20 16:00:00,72.8044276,118.7330963,235.9446708,609.412868,55.78136752,93.84643278,37.96842871,55.87800407,54.09935348,1.778650592,58.88953116,0,58.88953116,1.682014042,57.20751711,1.270676972,2.072283461,-2.131301667,2.131301667,0.89462774,0.89462774,0.236417154,1.635539565,52.60457455,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.00235633,1.218613448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184942848,50.56551797,53.18729918,51.78413142,37.96842871,0,0.062303293,86.42797077,-0.062303293,93.57202923,0,0,53.18729918,51.78413142,87.07897751,10,8,64% +2018-10-20 17:00:00,63.09646014,130.7161152,413.3716309,752.5233713,72.86247685,281.4877742,207.7061999,73.7815743,70.66540434,3.116169962,102.4238103,0,102.4238103,2.197072511,100.2267378,1.101240976,2.281426596,-0.96399438,0.96399438,0.695006438,0.695006438,0.176263854,2.333281427,75.0463513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.92627454,1.591771555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.690454451,72.1374074,69.61672899,73.72917896,207.7061999,0,0.276012956,73.97761121,-0.276012956,106.0223888,0.868849083,0,250.0820703,73.72917896,298.3363433,10,9,19% +2018-10-20 18:00:00,55.17204556,145.2320225,550.4255574,818.1055221,83.19392897,465.3404213,380.5057559,84.83466541,80.68532505,4.149340352,135.9656529,0,135.9656529,2.508603911,133.457049,0.96293385,2.534776971,-0.366379189,0.366379189,0.592808221,0.592808221,0.151144742,2.715133795,87.32803606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55780346,1.817474994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967105192,83.94302994,79.52490865,85.76050494,380.5057559,0,0.465105962,62.28292005,-0.465105962,117.7170799,0.942497615,0,438.1506763,85.76050494,494.2792115,10,10,13% +2018-10-20 19:00:00,49.96304948,162.6431384,634.3922294,847.9930645,88.89397514,613.8366373,522.8408269,90.9958104,86.21349381,4.782316594,156.4962221,0,156.4962221,2.680481334,153.8157408,0.872019718,2.838658271,0.054885922,-0.054885922,0.520767644,0.520767644,0.140124628,2.811619093,90.4313349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.87168954,1.941999602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037008461,86.92603882,84.908698,88.86803843,522.8408269,0,0.616562622,51.9344489,-0.616562622,128.0655511,0.968905236,0,591.491913,88.86803843,649.6542668,10,11,10% +2018-10-20 20:00:00,48.39207649,182.057372,658.5897522,855.558508,90.47356093,708.7289706,616.0187936,92.710177,87.74544926,4.964727741,162.410822,0,162.410822,2.728111674,159.6827103,0.844601067,3.17750057,0.422857253,-0.422857253,0.45784084,0.45784084,0.137374687,2.642822805,85.00226604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.34426339,1.976507621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914716125,81.70741133,86.25897951,83.68391896,616.0187936,0,0.720019482,43.94391108,-0.720019482,136.0560889,0.980557435,0,690.3007874,83.68391896,745.0702387,10,12,8% +2018-10-20 21:00:00,50.80727684,201.1974212,621.1643377,843.6757415,88.01958745,738.3397358,648.2916646,90.04807129,85.36547213,4.682599158,153.2626006,0,153.2626006,2.654115319,150.6084853,0.886754265,3.511557446,0.807800993,-0.807800993,0.392011584,0.392011584,0.141700967,2.239050955,72.0155754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.05653885,1.922897514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.622184795,69.22411032,83.67872364,71.14700783,648.2916646,0,0.768413305,39.78838197,-0.768413305,140.211618,0.984930851,0,722.2011844,71.14700783,768.765478,10,13,6% +2018-10-20 22:00:00,56.68921895,217.9991415,524.9786174,807.7346387,81.38684573,695.5196181,612.6293755,82.89024261,78.93273204,3.95751057,129.7412575,0,129.7412575,2.454113684,127.2871438,0.989413521,3.804802785,1.290488517,-1.290488517,0.309467156,0.309467156,0.155028877,1.648381066,53.01760135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.87314439,1.77799701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194246471,50.96253504,77.06739086,52.74053205,612.6293755,0,0.758453762,40.67192606,-0.758453762,139.3280739,0.984076403,0,679.9415032,52.74053205,714.4591266,10,14,5% +2018-10-20 23:00:00,65.07319592,231.9044171,377.8164823,730.6445672,69.87894984,575.3947385,504.7747566,70.61998191,67.77184168,2.848140234,93.7130885,0,93.7130885,2.107108164,91.60598034,1.135741524,4.047495629,2.045256492,-2.045256492,0.18039423,0.18039423,0.184954742,0.945537567,30.41173843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.14487205,1.526592692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685038749,29.23291974,65.8299108,30.75951244,504.7747566,0,0.69086226,46.301597,-0.69086226,133.698403,0.977626673,0,559.3111769,30.75951244,579.4426626,10,15,4% +2018-10-20 00:00:00,75.06903031,243.4286817,194.3269446,557.9117969,50.57812248,368.7608304,318.2429064,50.51792406,49.05300547,1.464918592,48.64193456,0,48.64193456,1.525117006,47.11681755,1.310201745,4.248631989,3.725480037,-3.725480037,0,0,0.260273338,0.381279252,12.26325137,0.096609419,1,0.26224027,0,0.930100749,0.968862712,0.724496596,1,47.34193565,1.104942079,0.015802508,0.312029739,0.956164372,0.680660967,0.961238037,0.922476074,0.269670118,11.78790367,47.61160577,12.89284575,287.4976442,0,0.570417955,55.22062382,-0.570417955,124.7793762,0.962344975,0,324.2835191,12.89284575,332.7216288,10,16,3% +2018-10-20 01:00:00,85.95466611,253.3760399,19.86598638,119.8334937,11.41224268,59.97420411,48.75632446,11.21787965,11.06812146,0.149758197,5.160859623,0,5.160859623,0.344121223,4.816738399,1.500191931,4.422246142,14.11534229,-14.11534229,0,0,0.574461417,0.086030306,2.767030364,0.653224733,1,0.070726731,0,0.954402128,0.993164091,0.724496596,1,10.71221293,0.249314655,0.085267315,0.312029739,0.786810019,0.511306615,0.961238037,0.922476074,0.059470363,2.659774835,10.77168329,2.90908949,16.90748741,0,0.406867253,65.99180812,-0.406867253,114.0081919,0.927109795,0,26.44678049,2.90908949,28.35072138,10,17,7% +2018-10-20 02:00:00,97.73122976,262.518358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705731741,4.581809694,-7.190806831,7.190806831,1,0.240145919,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.204440736,78.20323779,-0.204440736,101.7967622,0.805430346,0,0,0,0,10,18,0% +2018-10-20 03:00:00,109.5574128,271.5959996,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912137573,4.740244429,-2.617342432,2.617342432,1,0.977745607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014899372,90.85370274,0.014899372,89.14629726,0,0,0,0,0,10,19,0% +2018-10-20 04:00:00,121.3230237,281.4630559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117486222,4.912457048,-1.401631418,1.401631418,1,0.769846779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239296023,103.8449948,0.239296023,76.15500517,0,0.841053778,0,0,0,10,20,0% +2018-10-20 05:00:00,132.629559,293.362304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314822489,5.120138107,-0.789817254,0.789817254,1,0.665220395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453462747,116.9660682,0.453462747,63.0339318,0,0.939737359,0,0,0,10,21,0% +2018-10-20 06:00:00,142.7704059,309.3827805,0,0,0,0,0,0,0,0,0,0,0,0,0,2.491813658,5.399748168,-0.386994584,0.386994584,1,0.596333661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642812429,130.0018564,0.642812429,49.99814365,0,0.972216812,0,0,0,10,22,0% +2018-10-20 07:00:00,150.3027495,332.6019399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623277854,5.804998949,-0.073436371,0.073436371,1,0.542712049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794451195,142.6034504,0.794451195,37.39654965,0,0.987063472,0,0,0,10,23,0% +2018-10-21 08:00:00,152.8290021,3.413491146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66736928,0.059576659,0.203963147,-0.203963147,1,0.495273937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898056696,153.9037927,0.898056696,26.09620729,0,0.994324228,0,0,0,10,0,0% +2018-10-21 09:00:00,149.0681945,33.06949609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601730804,0.577171589,0.479012892,-0.479012892,1,0.448237661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946581069,161.1878801,0.946581069,18.81211995,0,0.997178322,0,0,0,10,1,0% +2018-10-21 10:00:00,140.826712,54.55825662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4578898,0.952221212,0.785391007,-0.785391007,1,0.395843917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936730793,159.5095901,0.936730793,20.49040992,0,0.996622871,0,0,0,10,2,0% +2018-10-21 11:00:00,130.365887,69.49999167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275313961,1.213003685,1.176369601,-1.176369601,1,0.32898264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869190768,150.3647372,0.869190768,29.63526276,0,0.992475229,0,0,0,10,3,0% +2018-10-21 12:00:00,118.931972,80.85162226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075754498,1.411127014,1.776759665,-1.776759665,1,0.226309892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748577415,138.467299,0.748577415,41.53270104,0,0.983206641,0,0,0,10,4,0% +2018-10-21 13:00:00,107.1417409,90.48381583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869976145,1.579240506,3.037147312,-3.037147312,1,0.01077091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583123953,125.6705661,0.583123953,54.32943386,0,0.964254937,0,0,0,10,5,0% +2018-10-21 14:00:00,95.36271358,99.52768126,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664393336,1.737085735,9.269263578,-9.269263578,1,0,#DIV/0!,0,0,0.513378145,1,0.107467788,0,0.950384094,0.989146057,0.724496596,1,0,0,0.070614115,0.312029739,0.819346012,0.543842608,0.961238037,0.922476074,0,0,0,0,0,0,-0.384119249,112.589073,0.384119249,67.41092695,0,0.91983209,0,0,0,10,6,0% +2018-10-21 15:00:00,83.75888804,108.7960056,47.07900377,234.7293921,21.56094485,21.26570422,0,21.26570422,20.91080281,0.354901417,50.28547612,38.22048456,12.06499156,0.650142039,11.41484953,1.461868374,1.898848511,-7.126698475,7.126698475,0.251109094,0.251109094,0.457973685,0.210840338,6.781350035,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.10025904,0.471025694,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.152753107,6.518491595,20.25301215,6.989517288,0,38.22048456,-0.16282786,99.37107361,0.16282786,80.62892639,0,0.742927242,20.25301215,35.38455647,43.41149667,10,7,114% +2018-10-21 16:00:00,73.02824034,119.0253673,231.8685159,605.0415816,55.25668515,91.5155245,36.17710946,55.33841503,53.59049222,1.747922814,57.88539909,0,57.88539909,1.666192933,56.21920616,1.274583241,2.077384552,-2.148566285,2.148566285,0.897580164,0.897580164,0.238310428,1.611563648,51.83342664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.51321953,1.207151108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.167572377,49.82426127,52.68079191,51.03141238,36.17710946,0,0.059792766,86.57208225,-0.059792766,93.42791775,0,0,52.68079191,51.03141238,86.07983068,10,8,63% +2018-10-21 17:00:00,63.35423696,130.9944537,408.8180913,750.0704285,72.43166602,278.246022,204.9165944,73.3294275,70.24758405,3.081843457,101.3067613,0,101.3067613,2.184081975,99.12267936,1.10574003,2.286284519,-0.966382834,0.966382834,0.695414887,0.695414887,0.177173338,2.309469534,74.28047898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.52464978,1.582359956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673202816,71.40122179,69.1978526,72.98358174,204.9165944,0,0.273196472,74.14543557,-0.273196472,105.8545644,0.866981531,0,246.8567553,72.98358174,294.6230499,10,9,19% +2018-10-21 18:00:00,55.4699635,145.4733943,545.5226973,816.3480537,82.78543971,461.5366945,377.1351607,84.40153378,80.28915326,4.112380522,134.7645803,0,134.7645803,2.496286453,132.2682938,0.968133499,2.538989704,-0.364549691,0.364549691,0.592495358,0.592495358,0.151754345,2.69087845,86.54790079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.17698806,1.808551038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.949532277,83.19313425,79.12652033,85.00168529,377.1351607,0,0.461978391,62.48515665,-0.461978391,117.5148433,0.94176983,0,434.3010364,85.00168529,489.9329394,10,10,13% +2018-10-21 19:00:00,50.2987613,162.8047096,629.2129497,846.4933651,88.4861499,609.5778384,519.0165994,90.561239,85.81796601,4.743272995,155.2281483,0,155.2281483,2.668183899,152.5599644,0.877878994,2.84147822,0.058936129,-0.058936129,0.520075018,0.520075018,0.140629893,2.786989816,89.63917268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.49149317,1.933090152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019164634,86.16458237,84.5106578,88.09767253,519.0165994,0,0.613137233,52.18330735,-0.613137233,127.8166927,0.968452188,0,587.1534189,88.09767253,644.8115836,10,11,10% +2018-10-21 20:00:00,48.7485929,182.0970985,653.2096137,854.0836684,90.05735155,704.0713262,611.8053661,92.26596011,87.34179012,4.924169985,161.0937949,0,161.0937949,2.715561425,158.3782334,0.850823452,3.178193927,0.428926799,-0.428926799,0.456802887,0.456802887,0.137868993,2.618146347,84.20858632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95625087,1.967415009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896838116,80.9444962,85.85308899,82.91191121,611.8053661,0,0.716329546,44.24773354,-0.716329546,135.7522665,0.980199724,0,685.5445399,82.91191121,739.8087276,10,12,8% +2018-10-21 21:00:00,51.1589732,201.1140321,615.6707543,842.0199671,87.58808211,733.3211473,643.7329829,89.58816447,84.94697826,4.641186206,151.9176062,0,151.9176062,2.641103841,149.2765024,0.892892524,3.510102031,0.816641282,-0.816641282,0.390499805,0.390499805,0.142264484,2.214820637,71.23624507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.65426662,1.913470742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604630012,68.47498837,83.25889663,70.38845911,643.7329829,0,0.764510354,40.13654944,-0.764510354,139.8634506,0.984598662,0,717.0775303,70.38845911,763.145369,10,13,6% +2018-10-21 22:00:00,57.0177575,217.830977,519.4744555,805.5906127,80.92777702,690.1446274,607.7411036,82.40352382,78.48750595,3.916017873,128.3928671,0,128.3928671,2.440271069,125.952596,0.995147601,3.801867761,1.304351496,-1.304351496,0.307096447,0.307096447,0.155787789,1.625313298,52.27566263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44517614,1.767968082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.177533951,50.24935532,76.62271009,52.01732341,607.7411036,0,0.754404401,41.02664518,-0.754404401,138.9733548,0.98372255,0,674.4713382,52.01732341,708.515636,10,14,5% +2018-10-21 23:00:00,65.37340026,231.6912622,372.4364411,727.3254804,69.35783099,569.5607745,499.4867548,70.0740197,67.26643649,2.80758321,92.39292156,0,92.39292156,2.091394508,90.30152705,1.140981078,4.043775374,2.071079625,-2.071079625,0.175978215,0.175978215,0.186227295,0.92491214,29.74835378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.65905735,1.515208201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.670095697,28.59524919,65.32915305,30.11045739,499.4867548,0,0.686744474,46.62704492,-0.686744474,133.3729551,0.977192716,0,553.4239715,30.11045739,573.1306637,10,15,4% +2018-10-21 00:00:00,75.34364474,243.1934442,189.3558168,551.2932138,49.86702342,361.9996944,312.2089016,49.7907928,48.36334867,1.427444131,47.41518482,0,47.41518482,1.503674746,45.91151007,1.314994671,4.24452632,3.796688157,-3.796688157,0,0,0.263350893,0.375918686,12.09083717,0.106439357,1,0.257538388,0,0.930794035,0.969555998,0.724496596,1,46.69143737,1.089407235,0.017333527,0.312029739,0.95202116,0.676517756,0.961238037,0.922476074,0.265339258,11.62217258,46.95677663,12.71157982,278.9775868,0,0.566320959,55.50592857,-0.566320959,124.4940714,0.961710843,0,315.2525469,12.71157982,323.5720216,10,16,3% +2018-10-21 01:00:00,86.20279309,253.127417,17.39074946,107.5157842,10.27048881,53.41994198,43.32804749,10.0918945,9.96079568,0.131098815,4.526281682,0,4.526281682,0.309693132,4.216588551,1.504522564,4.417906854,15.04439033,-15.04439033,0,0,0.590571949,0.077423283,2.49019892,0.671332494,1,0.066372323,0,0.954857372,0.993619336,0.724496596,1,9.638037713,0.22437162,0.087055223,0.312029739,0.782957645,0.507454241,0.961238037,0.922476074,0.053608549,2.393673921,9.691646262,2.618045541,14.2405213,0,0.402992433,66.23461629,-0.402992433,113.7653837,0.925928191,0,22.8773464,2.618045541,24.59080484,10,17,7% +2018-10-21 02:00:00,97.97724277,262.2568708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710025478,4.577245882,-6.973275148,6.973275148,1,0.277346028,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.200579499,78.42915138,-0.200579499,101.5708486,0.800722282,0,0,0,0,10,18,0% +2018-10-21 03:00:00,109.8002844,271.3179523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916376483,4.735391588,-2.587515375,2.587515375,1,0.972644879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018532689,91.06190565,0.018532689,88.93809435,0,0,0,0,0,10,19,0% +2018-10-21 04:00:00,121.5722839,281.1635012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121836633,4.907228833,-1.392419674,1.392419674,1,0.768271478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242653981,104.0432336,0.242653981,75.95676642,0,0.843945272,0,0,0,10,20,0% +2018-10-21 05:00:00,132.8974718,293.0412096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.31949845,5.114533952,-0.786571847,0.786571847,1,0.664665398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456516845,117.1625732,0.456516845,62.83742677,0,0.940475016,0,0,0,10,21,0% +2018-10-21 06:00:00,143.07213,309.0671168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.497079737,5.394238797,-0.3863385,0.3863385,1,0.596221464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645555071,130.2073056,0.645555071,49.79269444,0,0.972547274,0,0,0,10,22,0% +2018-10-21 07:00:00,150.6463458,332.4082684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62927474,5.801618745,-0.074301314,0.074301314,1,0.542859963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796896215,142.8347266,0.796896215,37.16527342,0,0.987256572,0,0,0,10,23,0% +2018-10-22 08:00:00,153.1810504,3.536944128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673513681,0.06173132,0.201887106,-0.201887106,1,0.495628961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9002384,154.1894216,0.9002384,25.81057843,0,0.994459157,0,0,0,10,0,0% +2018-10-22 09:00:00,149.3690747,33.44261252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606982154,0.583683699,0.475632427,-0.475632427,1,0.448815754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948551871,161.5412534,0.948551871,18.45874657,0,0.99728807,0,0,0,10,1,0% +2018-10-22 10:00:00,141.0683916,54.97364832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462107904,0.959471165,0.780187857,-0.780187857,1,0.396733708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938557596,159.8107174,0.938557596,20.18928261,0,0.996726764,0,0,0,10,2,0% +2018-10-22 11:00:00,130.569326,69.88417426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278864641,1.219708936,1.167982538,-1.167982538,1,0.330416912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870950344,150.5692641,0.870950344,29.43073588,0,0.992591446,0,0,0,10,3,0% +2018-10-22 12:00:00,119.1164575,81.19979753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078974377,1.417203819,1.761239116,-1.761239116,1,0.228964062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750351112,138.6208014,0.750351112,41.37919856,0,0.983364529,0,0,0,10,4,0% +2018-10-22 13:00:00,107.3212443,90.80552613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87310907,1.58485541,2.997354925,-2.997354925,1,0.017575809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584992074,125.8024301,0.584992074,54.19756992,0,0.964528757,0,0,0,10,5,0% +2018-10-22 14:00:00,95.54800816,99.83273205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667627336,1.742409876,8.930697609,-8.930697609,1,0,#DIV/0!,0,0,0.499270324,1,0.11150885,0,0.949922994,0.988684958,0.724496596,1,0,0,0.069047372,0.312029739,0.822926225,0.54742282,0.961238037,0.922476074,0,0,0,0,0,0,-0.38615551,112.7154945,0.38615551,67.2845055,0,0.920518486,0,0,0,10,6,0% +2018-10-22 15:00:00,83.95569511,109.0913004,44.35594651,224.9065195,20.67386079,20.38484147,0,20.38484147,20.05046761,0.334373861,48.49506466,37.11705871,11.37800595,0.623393181,10.75461277,1.465303305,1.904002377,-7.329971583,7.329971583,0.216347345,0.216347345,0.466089948,0.194471827,6.254882461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.27327213,0.451646238,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.140894177,6.012430938,19.4141663,6.464077176,0,37.11705871,-0.165033272,99.49916729,0.165033272,80.50083271,0,0.747030789,19.4141663,34.19166285,41.7919258,10,7,115% +2018-10-22 16:00:00,73.25246949,119.3128978,227.7860681,600.5790014,54.72622852,89.18374713,34.39056872,54.79317841,53.07603081,1.717147599,56.87956715,0,56.87956715,1.650197708,55.22936944,1.278496778,2.082402907,-2.166457026,2.166457026,0.900639661,0.900639661,0.240252747,1.587522282,51.06017367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01869966,1.195562622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.150154489,49.0809811,52.16885415,50.27654372,34.39056872,0,0.057262356,86.71731302,-0.057262356,93.28268698,0,0,52.16885415,50.27654372,85.07384648,10,8,63% +2018-10-22 17:00:00,63.61207045,131.2672413,404.2553035,747.5752105,71.99813971,274.9866834,202.1121061,72.87457739,69.82713015,3.047447236,100.1873882,0,100.1873882,2.171009557,98.01637864,1.110240073,2.291045561,-0.968926558,0.968926558,0.69584989,0.69584989,0.178100668,2.285644022,73.51416859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.12049351,1.572889034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655941313,70.6646151,68.77643482,72.23750413,202.1121061,0,0.270356886,74.31449525,-0.270356886,105.6855048,0.86505927,0,243.6153857,72.23750413,290.8933874,10,9,19% +2018-10-22 18:00:00,55.76719269,145.7085609,540.6148304,814.5654533,82.3754399,457.7123698,373.7454704,83.96689941,79.89151646,4.075382948,133.5622481,0,133.5622481,2.483923446,131.0783246,0.973321127,2.543094136,-0.362787946,0.362787946,0.592194082,0.592194082,0.152373622,2.666657335,85.76886647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79476444,1.799594081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931984162,82.44429683,78.7267486,84.24389091,373.7454704,0,0.45882804,62.68849111,-0.45882804,117.3115089,0.941026712,0,430.4312198,84.24389091,485.5671615,10,10,13% +2018-10-22 19:00:00,50.63270906,162.9603909,624.0368175,844.9759781,88.07762032,605.3017612,515.1757529,90.12600822,85.42175509,4.704253125,153.9608165,0,153.9608165,2.655865224,151.3049512,0.883707482,2.844195372,0.062947593,-0.062947593,0.519389017,0.519389017,0.141141705,2.762446906,88.84978835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.11064017,1.924165314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.00138338,85.40579613,84.11202355,87.32996144,515.1757529,0,0.60969278,52.43270774,-0.60969278,127.5672923,0.967991484,0,582.7977652,87.32996144,639.9534784,10,11,10% +2018-10-22 20:00:00,49.10231801,182.1328199,647.8435993,852.5946477,89.64115817,699.4041597,607.5822945,91.82186521,86.93814651,4.883718702,159.7801928,0,159.7801928,2.703011659,157.0771811,0.85699712,3.178817383,0.434973346,-0.434973346,0.455768867,0.455768867,0.138368517,2.593612712,83.4195003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.56825328,1.958322746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879063581,80.1859967,85.44731686,82.14431945,607.5822945,0,0.712627385,44.55090931,-0.712627385,135.4490907,0.979837106,0,680.7789937,82.14431945,734.5408079,10,12,8% +2018-10-22 21:00:00,51.50731214,201.0290602,610.2042224,840.3511297,87.1572804,728.3041383,639.1749943,89.129144,84.52916682,4.59997718,150.579192,0,150.579192,2.62811358,147.9510784,0.898972186,3.508618992,0.825476575,-0.825476575,0.388988881,0.388988881,0.142832968,2.190791632,70.46338969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25265037,1.904059342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58722108,67.73209037,82.83987145,69.63614971,639.1749943,0,0.760604671,40.48246664,-0.760604671,139.5175334,0.984262828,0,711.956059,69.63614971,757.5315263,10,13,6% +2018-10-22 22:00:00,57.3427681,217.6627697,514.0114117,803.4317085,80.46999717,684.7844391,602.8660741,81.91836499,78.04352985,3.874835141,127.0544851,0,127.0544851,2.426467317,124.6280178,1.000820105,3.79893199,1.318252914,-1.318252914,0.304719164,0.304719164,0.156552939,1.602505582,51.54208809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01840942,1.757967311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161009839,49.54421557,76.17941926,51.30218288,602.8660741,0,0.750363805,41.37809833,-0.750363805,138.6219017,0.983365656,0,669.0172117,51.30218288,702.5934643,10,14,5% +2018-10-22 23:00:00,65.67001518,231.4786391,367.1123589,723.9818774,68.83814548,563.7547921,494.2249226,69.52986944,66.76242141,2.76744803,91.08636577,0,91.08636577,2.075724072,89.0106417,1.146157985,4.0400644,2.097115034,-2.097115034,0.171525897,0.171525897,0.187512471,0.904609916,29.09536448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17457889,1.503855024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.655386805,27.96757104,64.82996569,29.47142606,494.2249226,0,0.682648196,46.94906937,-0.682648196,133.0509306,0.976755831,0,547.5670406,29.47142606,566.8554995,10,15,4% +2018-10-22 00:00:00,75.61455686,242.9588121,184.4602502,544.6098699,49.15530679,355.2753292,306.211697,49.06363221,47.67309293,1.390539282,46.20673712,0,46.20673712,1.482213864,44.72452326,1.31972298,4.240431217,3.869450866,-3.869450866,0,0,0.26648184,0.370553466,11.91827323,0.11626535,1,0.252901224,0,0.931473193,0.970235156,0.724496596,1,46.03926371,1.073858898,0.01885045,0.312029739,0.947934217,0.672430813,0.961238037,0.922476074,0.261040951,11.45629756,46.30030466,12.53015646,270.6098868,0,0.562258809,55.78784616,-0.562258809,124.2121538,0.961072981,0,306.3761551,12.53015646,314.5768919,10,16,3% +2018-10-22 01:00:00,86.44644403,252.8792589,15.10053507,95.70350617,9.168688461,47.20851551,38.20246262,9.006052887,8.892218675,0.113834212,3.937769341,0,3.937769341,0.276469786,3.661299555,1.508775075,4.413575677,16.08249843,-16.08249843,0,0,0.607176396,0.069117446,2.223054669,0.689452135,1,0.062099445,0,0.955299746,0.994061709,0.724496596,1,8.601773834,0.200301419,0.088820756,0.312029739,0.779178604,0.5036752,0.961238037,0.922476074,0.047941355,2.136884706,8.649715189,2.337186125,11.86369321,0,0.399175162,66.47337598,-0.399175162,113.526624,0.924741706,0,19.62056708,2.337186125,21.15020866,10,17,8% +2018-10-22 02:00:00,98.2191999,261.9955749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714248427,4.572685407,-6.771910036,6.771910036,1,0.31178149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196776264,78.6514933,-0.196776264,101.3485067,0.795904313,0,0,0,0,10,18,0% +2018-10-22 03:00:00,110.0388351,271.0396445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920539977,4.730534201,-2.558911329,2.558911329,1,0.967753299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.022099115,91.26628908,0.022099115,88.73371092,0,0,0,0,0,10,19,0% +2018-10-22 04:00:00,121.8169353,280.8628874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126106606,4.901982131,-1.383539942,1.383539942,1,0.766752954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245938942,104.2373291,0.245938942,75.76267095,0,0.846697507,0,0,0,10,20,0% +2018-10-22 05:00:00,133.1605444,292.7175512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.324089934,5.108885047,-0.783463769,0.783463769,1,0.664133885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459495043,117.3545283,0.459495043,62.64547167,0,0.941184898,0,0,0,10,21,0% +2018-10-22 06:00:00,143.3690893,308.7462484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502262653,5.388638588,-0.385751056,0.385751056,1,0.596121005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648222312,130.4077055,0.648222312,49.5922945,0,0.972865969,0,0,0,10,22,0% +2018-10-22 07:00:00,150.9860326,332.2071891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635203394,5.798109249,-0.075202678,0.075202678,1,0.543014105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799269698,143.0604201,0.799269698,36.93957989,0,0.987442893,0,0,0,10,23,0% +2018-10-23 08:00:00,153.530364,3.656800655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.679610353,0.063823212,0.199794063,-0.199794063,1,0.495986893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902355531,154.4694397,0.902355531,25.53056027,0,0.994589468,0,0,0,10,0,0% +2018-10-23 09:00:00,149.6676523,33.8149354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612193316,0.590181959,0.472250957,-0.472250957,1,0.44939402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.950467683,161.8911408,0.950467683,18.10885917,0,0.997394319,0,0,0,10,1,0% +2018-10-23 10:00:00,141.308373,55.38705542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46629637,0.96668648,0.775003448,-0.775003448,1,0.397620294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940340948,160.1088932,0.940340948,19.89110677,0,0.996827797,0,0,0,10,2,0% +2018-10-23 11:00:00,130.7718115,70.2654695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28239868,1.226363793,1.159651653,-1.159651653,1,0.331841577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872679174,150.7714853,0.872679174,29.22851469,0,0.992705176,0,0,0,10,3,0% +2018-10-23 12:00:00,119.3006092,81.54471078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08218843,1.423223691,1.745884023,-1.745884023,1,0.231589938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75210705,138.7732282,0.75210705,41.22677178,0,0.983520102,0,0,0,10,4,0% +2018-10-23 13:00:00,107.5008584,91.12374452,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876243929,1.590409369,2.958322606,-2.958322606,1,0.024250729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586854815,125.9341325,0.586854815,54.06586747,0,0.964800051,0,0,0,10,5,0% +2018-10-23 14:00:00,95.7336899,100.1340078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670868094,1.74766813,8.613465204,-8.613465204,1,0,#DIV/0!,0,0,0.485288414,1,0.115579863,0,0.949454664,0.988216628,0.724496596,1,0,0,0.067477583,0.312029739,0.826533012,0.551029608,0.961238037,0.922476074,0,0,0,0,0,0,-0.388197303,112.8423768,0.388197303,67.15762325,0,0.921199517,0,0,0,10,6,0% +2018-10-23 15:00:00,84.15279119,109.3823867,41.67876441,214.9756807,19.77790327,19.49571865,0,19.49571865,19.18152652,0.314192131,46.65647853,35.9546028,10.70187573,0.596376756,10.10549897,1.468743281,1.909082791,-7.547481638,7.547481638,0.179150935,0.179150935,0.4745319,0.17867164,5.746694114,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.43801289,0.43207293,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129446995,5.523940968,18.56745989,5.956013898,0,35.9546028,-0.167249629,99.627945,0.167249629,80.372055,0,0.751045674,18.56745989,32.95956281,40.13883455,10,7,116% +2018-10-23 16:00:00,73.47706151,119.5955866,223.6986297,596.0237343,54.189964,86.85202716,32.60975575,54.24227141,52.55593665,1.686334762,55.87235003,0,55.87235003,1.634027354,54.23832267,1.282416648,2.087336756,-2.185001472,2.185001472,0.903810948,0.903810948,0.2422454,1.563421705,50.28501626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51876537,1.183847256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.132693703,48.33587031,51.65145907,49.51971757,32.60975575,0,0.054712177,86.86365714,-0.054712177,93.13634286,0,0,51.65145907,49.51971757,84.06112382,10,8,63% +2018-10-23 17:00:00,63.86988313,131.5343984,399.68482,745.0375775,71.56196597,271.7106902,199.2935885,72.41710166,69.40410866,3.012993001,99.06606931,0,99.06606931,2.15785731,96.908212,1.114739753,2.295708332,-0.971631989,0.971631989,0.696312546,0.696312546,0.179045994,2.261813375,72.74769306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.71386916,1.563360275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.63867609,69.92784967,68.35254525,71.49120994,199.2935885,0,0.26749468,74.48476004,-0.26749468,105.51524,0.863080395,0,240.3589343,71.49120994,287.1485014,10,9,19% +2018-10-23 18:00:00,56.06363457,145.9374802,535.7039008,812.7579783,81.96403927,453.8687649,370.3378816,83.53088336,79.49252107,4.038362286,132.3591311,0,132.3591311,2.471518199,129.8876129,0.978495014,2.547089532,-0.361097867,0.361097867,0.591905062,0.591905062,0.153002506,2.642480595,84.9912594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.4112349,1.790606522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914468196,81.69683134,78.32570309,83.48743786,370.3378816,0,0.455655794,62.89286292,-0.455655794,117.1071371,0.940268047,0,426.5425798,83.48743786,481.1834382,10,10,13% +2018-10-23 19:00:00,50.96478384,163.1101761,618.866149,843.4413561,87.6685242,601.0101912,511.3199221,89.69026918,85.02499474,4.665274442,152.6947923,0,152.6947923,2.643529467,150.0512628,0.889503281,2.846809616,0.066916637,-0.066916637,0.518710271,0.518710271,0.141659912,2.738001664,88.06354534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.72925902,1.9152281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983672885,84.65002944,83.71293191,86.56525754,511.3199221,0,0.606230556,52.68255618,-0.606230556,127.3174438,0.967523128,0,578.4267823,86.56525754,635.082012,10,11,10% +2018-10-23 20:00:00,49.45314102,182.1645259,642.4943323,851.0920738,89.22514272,694.7297292,603.3516601,91.37806913,86.53467546,4.843393668,158.4706567,0,158.4706567,2.690467259,155.7801894,0.863120136,3.179370757,0.440992627,-0.440992627,0.454739509,0.454739509,0.138873042,2.569233833,82.63539174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.18042156,1.94923437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861401166,79.43228173,85.04182272,81.3815161,603.3516601,0,0.708914674,44.8533213,-0.708914674,135.1466787,0.97946965,0,676.0064621,81.3815161,729.2690368,10,12,8% +2018-10-23 21:00:00,51.85217802,200.9424694,604.7675802,838.6701015,86.72736837,723.2914146,634.6202029,88.6712117,84.11221823,4.558993474,149.2480517,0,149.2480517,2.615150146,146.6329016,0.904991231,3.507107698,0.834301175,-0.834301175,0.387479786,0.387479786,0.143406114,2.166975897,69.69739378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.85186352,1.894667379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569966661,66.99578597,82.42183018,68.89045335,634.6202029,0,0.756698256,40.82601833,-0.756698256,139.1739817,0.983923463,0,706.8395382,68.89045335,751.9269621,10,13,6% +2018-10-23 22:00:00,57.66412791,217.4944829,508.5924235,801.2592322,80.01372259,679.4421872,598.0071891,81.43499815,77.60101363,3.833984519,125.7268303,0,125.7268303,2.412708955,123.3141214,1.006428892,3.795994832,1.332184138,-1.332184138,0.302336785,0.302336785,0.157323859,1.579969124,50.81723813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.593046,1.747999425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144682252,48.84746221,75.73772825,50.59546164,598.0071891,0,0.746334226,41.7261728,-0.746334226,138.2738272,0.983005886,0,663.5823152,50.59546164,696.6960329,10,14,5% +2018-10-23 23:00:00,65.9629147,231.2665308,361.8471356,720.6159955,68.32016437,557.9804147,488.9925988,68.9878159,66.26005934,2.727756553,89.79413238,0,89.79413238,2.06010503,87.73402735,1.151270046,4.036362413,2.12334827,-2.12334827,0.16703975,0.16703975,0.188809466,0.884640172,28.45306888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.69168937,1.492539082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.640918794,27.35017207,64.33260816,28.84271115,488.9925988,0,0.678575832,47.26754646,-0.678575832,132.7324535,0.976316268,0,541.7440371,28.84271115,560.6210147,10,15,3% +2018-10-23 00:00:00,75.88164161,242.7247914,179.6429928,537.86688,48.44340516,348.5924457,300.2555632,48.33688252,46.98265776,1.354224761,45.01727083,0,45.01727083,1.460747403,43.55652343,1.324384488,4.236346787,3.943767217,-3.943767217,0,0,0.269664875,0.365186851,11.74566444,0.126080555,1,0.248330815,0,0.932138104,0.970900067,0.724496596,1,45.38585522,1.058306521,0.020352421,0.312029739,0.94390534,0.668401936,0.961238037,0.922476074,0.25677659,11.29037943,45.64263181,12.34868595,262.3991752,0,0.558233969,56.06624729,-0.558233969,123.9337527,0.960431821,0,297.6591495,12.34868595,305.7411175,10,16,3% +2018-10-23 01:00:00,86.68544646,252.6315917,12.99665324,84.46468652,8.113106849,41.36535692,33.39891592,7.966441005,7.868466743,0.097974262,3.395829155,0,3.395829155,0.244640106,3.151189049,1.512946454,4.409253069,17.24862571,-17.24862571,0,0,0.62424585,0.061160026,1.967116686,0.70756258,1,0.057910809,0,0.955729211,0.994491174,0.724496596,1,7.609316108,0.177240924,0.090562305,0.312029739,0.775475366,0.499971962,0.961238037,0.922476074,0.042500583,1.890867381,7.651816692,2.068108305,9.767092789,0,0.395418693,66.70791059,-0.395418693,113.2920894,0.923551754,0,16.67223237,2.068108305,18.02576789,10,17,8% +2018-10-23 02:00:00,98.45698164,261.734514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718398501,4.568129035,-6.585131786,6.585131786,1,0.343722452,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193033284,78.87014365,-0.193033284,101.1298563,0.790977312,0,0,0,0,10,18,0% +2018-10-23 03:00:00,110.272946,270.7611367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924625983,4.725673321,-2.531485641,2.531485641,1,0.96306323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025596646,91.46674,0.025596646,88.53326,0,0,0,0,0,10,19,0% +2018-10-23 04:00:00,122.0568557,280.5612888,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130294007,4.896718244,-1.374987257,1.374987257,1,0.765290359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249149231,104.4271738,0.249149231,75.57282623,0,0.849317061,0,0,0,10,20,0% +2018-10-23 05:00:00,133.4186442,292.3914021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328594624,5.103192672,-0.780492723,0.780492723,1,0.663625806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462396048,117.5418285,0.462396048,62.45817152,0,0.941867588,0,0,0,10,21,0% +2018-10-23 06:00:00,143.6611338,308.4201774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507359792,5.382947574,-0.385232755,0.385232755,1,0.596032371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650813268,130.6029469,0.650813268,49.39705308,0,0.973173048,0,0,0,10,22,0% +2018-10-23 07:00:00,151.3216635,331.9984783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641061257,5.794466559,-0.076141053,0.076141053,1,0.543174577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801571171,143.2804012,0.801571171,36.71959882,0,0.987622507,0,0,0,10,23,0% +2018-10-24 08:00:00,153.8768543,3.772741999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685657751,0.06584677,0.1976835,-0.1976835,1,0.49634782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904407999,154.7436681,0.904407999,25.25633187,0,0.994715217,0,0,0,10,0,0% +2018-10-24 09:00:00,149.9638953,34.18618856,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617363732,0.596661549,0.468868072,-0.468868072,1,0.449972527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952328742,162.2374016,0.952328742,17.76259845,0,0.997497122,0,0,0,10,1,0% +2018-10-24 10:00:00,141.5466608,55.79823898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470455277,0.973862987,0.769837463,-0.769837463,1,0.39850373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942081339,160.4040803,0.942081339,19.5959197,0,0.996926027,0,0,0,10,2,0% +2018-10-24 11:00:00,130.97336,70.64369045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285916365,1.232964994,1.151376574,-1.151376574,1,0.333256699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874377902,150.9714358,0.874377902,29.02856419,0,0.992816487,0,0,0,10,3,0% +2018-10-24 12:00:00,119.4844407,81.88621053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085396895,1.429183986,1.730692883,-1.730692883,1,0.234187776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753845929,138.9246315,0.753845929,41.07536845,0,0.98367345,0,0,0,10,4,0% +2018-10-24 13:00:00,107.6805869,91.4383398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879380781,1.595900092,2.92003322,-2.92003322,1,0.030798599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588712818,126.065719,0.588712818,53.934281,0,0.965068946,0,0,0,10,5,0% +2018-10-24 14:00:00,95.91974753,100.4313891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674115412,1.752858412,8.315656769,-8.315656769,1,0,#DIV/0!,0,0,0.471432896,1,0.119680381,0,0.948979079,0.987741042,0.724496596,1,0,0,0.065904994,0.312029739,0.830165912,0.554662508,0.961238037,0.922476074,0,0,0,0,0,0,-0.390245112,112.9697518,0.390245112,67.03024817,0,0.921875397,0,0,0,10,6,0% +2018-10-24 15:00:00,84.35013093,109.6691535,39.0510827,204.9499577,18.87394624,18.59921068,0,18.59921068,18.30482712,0.294383557,44.77179262,34.73428639,10.03750623,0.569119117,9.468387118,1.472187509,1.914087817,-7.780711921,7.780711921,0.139266207,0.139266207,0.483314288,0.163462695,5.257522181,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.59529609,0.412324863,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118428166,5.0537303,17.71372425,5.466055163,0,34.73428639,-0.169476914,99.75740714,0.169476914,80.24259286,0,0.754974567,17.71372425,31.68955798,38.45390616,10,7,117% +2018-10-24 16:00:00,73.70196329,119.8733339,219.6075076,591.3743782,53.64785668,84.52131151,30.83564149,53.68567001,52.03017586,1.655494155,54.86406356,0,54.86406356,1.617680818,53.24638274,1.286341925,2.092184362,-2.204228601,2.204228601,0.907098981,0.907098981,0.244289721,1.539268109,49.5081536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.0133841,1.172004246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115194505,47.58912037,51.12857861,48.76112462,30.83564149,0,0.052142336,87.01110879,-0.052142336,92.98889121,0,0,51.12857861,48.76112462,83.04175945,10,8,62% +2018-10-24 17:00:00,64.12759823,131.7958473,395.108193,742.4574063,71.12321374,268.4189838,196.461905,71.95707888,68.97858643,2.978492453,97.9431831,0,97.9431831,2.144627311,95.79855579,1.11923773,2.300271477,-0.974505773,0.974505773,0.696803992,0.696803992,0.180009463,2.23798604,71.98132409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.304841,1.553775186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.621413268,69.19118665,67.92625427,70.74496184,196.461905,0,0.264610338,74.65619971,-0.264610338,105.3438003,0.861042908,0,237.0883842,70.74496184,283.3895468,10,9,20% +2018-10-24 18:00:00,56.3591918,146.1601118,530.7918526,810.9259103,81.55134887,450.0072092,366.9136012,83.093608,79.09227481,4.001333193,131.155704,0,131.155704,2.459074061,128.69663,0.983653461,2.550975185,-0.359483477,0.359483477,0.591628985,0.591628985,0.153640921,2.618358337,84.21540468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.02650297,1.781590786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896991702,80.95105026,77.92349467,82.73264105,366.9136012,0,0.452462545,63.09821161,-0.452462545,116.9017884,0.939493615,0,422.6364804,82.73264105,476.7833393,10,10,13% +2018-10-24 19:00:00,51.29487829,163.2540589,613.7032592,841.88998,87.25900086,596.7049276,507.4507531,89.25417443,84.62782003,4.626354397,151.4306412,0,151.4306412,2.631180827,148.7994604,0.895264516,2.849320846,0.070839471,-0.070839471,0.518039427,0.518039427,0.142184353,2.713665334,87.28080531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.34747959,1.906281553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966041297,83.89762996,83.31352089,85.80391151,507.4507531,0,0.602751862,52.93275947,-0.602751862,127.0672405,0.967047125,0,574.0423127,85.80391151,630.1992567,10,11,10% +2018-10-24 20:00:00,49.80095274,182.1922057,637.1644316,849.5766084,88.80946874,690.0503068,599.1155566,90.93475021,86.13153559,4.803214625,157.1658264,0,157.1658264,2.677933155,154.4878933,0.869190596,3.179853862,0.446980221,-0.446980221,0.45371557,0.45371557,0.139382339,2.545021558,81.85664176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.79290818,1.940153455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.843859455,78.68371763,84.63676763,80.62387109,599.1155566,0,0.705193093,45.15485411,-0.705193093,134.8451459,0.979097434,0,671.2292717,80.62387109,723.9959828,10,12,8% +2018-10-24 21:00:00,52.19345667,200.8542237,599.3636552,836.9778002,86.29853403,718.2856964,630.0711252,88.21457123,83.69631482,4.518256405,147.9248766,0,147.9248766,2.602219209,145.3226574,0.910947667,3.50556752,0.84310914,-0.84310914,0.385973535,0.385973535,0.143983595,2.143385263,68.93863789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45208135,1.885298958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552875326,66.26644095,82.00495668,68.1517399,630.0711252,0,0.752793115,41.16709115,-0.752793115,138.8329089,0.983580689,0,701.7307481,68.1517399,746.3346989,10,13,6% +2018-10-24 22:00:00,57.9817156,217.3260798,503.2204101,799.0745621,79.55917283,674.1210221,593.1673639,80.95365824,77.16017023,3.793488012,124.4106171,0,124.4106171,2.399002603,122.0116145,1.011971843,3.793055643,1.346136053,-1.346136053,0.299950867,0.299950867,0.158100052,1.557714941,50.1014671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.16929055,1.738069219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128559172,48.15943588,75.29784972,49.89750509,593.1673639,0,0.742317916,42.07075741,-0.742317916,137.9292426,0.982643415,0,658.1698537,49.89750509,690.8267728,10,14,5% +2018-10-24 23:00:00,66.25197423,231.0549205,356.64364,717.230215,67.80416575,552.2412945,483.7931441,68.44815039,65.75961998,2.688530405,88.51692535,0,88.51692535,2.044545768,86.47237958,1.156315086,4.032669115,2.149763608,-2.149763608,0.162522461,0.162522461,0.190117412,0.865011867,27.82175511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.21064801,1.481266449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626698153,26.74332926,63.83734617,28.22459571,483.7931441,0,0.674529787,47.5823539,-0.674529787,132.4176461,0.975874289,0,535.9586367,28.22459571,554.4310701,10,15,3% +2018-10-24 00:00:00,76.14477537,242.4913883,174.9067275,531.0697893,47.7317765,341.9558496,294.3448415,47.61100812,46.29248732,1.318520793,43.84745026,0,43.84745026,1.439289173,42.40816108,1.328977038,4.232273133,4.019631479,-4.019631479,0,0,0.27289846,0.359822293,11.57312183,0.135877834,1,0.24382918,0,0.932788657,0.97155062,0.724496596,1,44.73167726,1.042760106,0.021838572,0.312029739,0.93993632,0.664432916,0.961238037,0.922476074,0.252547653,11.12452491,44.98422491,12.16728502,254.349902,0,0.554248891,56.3410042,-0.554248891,123.6589958,0.959787821,0,289.1061632,12.16728502,297.0694079,10,16,3% +2018-10-24 01:00:00,86.91962634,252.3844416,11.07913578,73.86366164,7.109941419,35.91340918,28.93433952,6.979069658,6.895550452,0.083519205,2.900655707,0,2.900655707,0.214390967,2.68626474,1.517033664,4.404939487,18.56625566,-18.56625566,0,0,0.641741518,0.053597742,1.723887613,0.725641267,1,0.053809163,0,0.956145731,0.994907695,0.724496596,1,6.666483124,0.155325526,0.092278216,0.312029739,0.77185042,0.496347016,0.961238037,0.922476074,0.03731816,1.657066345,6.703801284,1.81239187,7.938388728,0,0.391726309,66.93804191,-0.391726309,113.0619581,0.922359862,0,14.02585242,1.81239187,15.21202665,10,17,8% +2018-10-24 02:00:00,98.69046999,261.4737325,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722473642,4.563577539,-6.411565456,6.411565456,1,0.373404042,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.189352789,79.08498386,-0.189352789,100.9150161,0.785942628,0,0,0,0,10,18,0% +2018-10-24 03:00:00,110.5025001,270.4824906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928632459,4.720810029,-2.505196444,2.505196444,1,0.958567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.029023312,91.66314686,0.029023312,88.33685314,0,0,0,0,0,10,19,0% +2018-10-24 04:00:00,122.291925,280.2587831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13439674,4.891438523,-1.366756909,1.366756909,1,0.763882887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25228321,104.612662,0.25228321,75.38733797,0,0.851810037,0,0,0,10,20,0% +2018-10-24 05:00:00,133.6716404,292.0628413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333010242,5.097458203,-0.777658456,0.777658456,1,0.663141118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465218609,117.724371,0.465218609,62.27562901,0,0.942523646,0,0,0,10,21,0% +2018-10-24 06:00:00,143.9481153,308.0889137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512368565,5.377165932,-0.384784106,0.384784106,1,0.595955647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653327103,130.7929235,0.653327103,49.20707654,0,0.973468658,0,0,0,10,22,0% +2018-10-24 07:00:00,151.6530915,331.7819126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646845767,5.790686774,-0.077117028,0.077117028,1,0.543341478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803800209,143.4945435,0.803800209,36.50545652,0,0.987795488,0,0,0,10,23,0% +2018-10-25 08:00:00,154.2204343,3.884435375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.691654352,0.067796187,0.195554907,-0.195554907,1,0.496711831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906395759,155.0119293,0.906395759,24.98807075,0,0.994836459,0,0,0,10,0,0% +2018-10-25 09:00:00,150.257775,34.55608611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6224929,0.603117479,0.465483368,-0.465483368,1,0.450551346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954135328,162.5798933,0.954135328,17.42010674,0,0.997596532,0,0,0,10,1,0% +2018-10-25 10:00:00,141.7832625,56.20695676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474584755,0.980996458,0.764689593,-0.764689593,1,0.399384067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943779296,160.6962464,0.943779296,19.30375364,0,0.997021512,0,0,0,10,2,0% +2018-10-25 11:00:00,131.17399,71.01864972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289418019,1.239509268,1.143156948,-1.143156948,1,0.334662338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876047207,151.1691555,0.876047207,28.83084446,0,0.99292545,0,0,0,10,3,0% +2018-10-25 12:00:00,119.667967,82.22414571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088600034,1.435082067,1.715664248,-1.715664248,1,0.236757824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755568472,139.0750664,0.755568472,40.9249336,0,0.983824661,0,0,0,10,4,0% +2018-10-25 13:00:00,107.8604338,91.74918151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882519703,1.601325303,2.882470278,-2.882470278,1,0.037222241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.590566745,126.1972364,0.590566745,53.80276356,0,0.965335565,0,0,0,10,5,0% +2018-10-25 14:00:00,96.10617007,100.7247573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677369099,1.757978654,8.035585508,-8.035585508,1,0,#DIV/0!,0,0,0.457704287,1,0.123809913,0,0.948496221,0.987258184,0.724496596,1,0,0,0.064329861,0.312029739,0.833824423,0.558321019,0.961238037,0.922476074,0,0,0,0,0,0,-0.392299428,113.0976524,0.392299428,66.90234762,0,0.922546335,0,0,0,10,6,0% +2018-10-25 15:00:00,84.54766754,109.9514913,36.47666837,194.8444313,17.96301928,17.69634451,0,17.69634451,17.42136798,0.274976534,42.84357015,33.45772829,9.385841866,0.541651308,8.844190558,1.475635173,1.919015541,-8.031354885,8.031354885,0.096403736,0.096403736,0.492452301,0.14886729,4.788083766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.74608155,0.392424529,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.107853845,4.60248824,16.8539354,4.994912768,0,33.45772829,-0.171715086,99.88755277,0.171715086,80.11244723,0,0.758819993,16.8539354,30.3833059,36.73920144,10,7,118% +2018-10-25 16:00:00,73.92712171,120.1460422,215.5140213,586.6295336,53.0998714,82.19257419,29.0692241,53.12335009,51.49871436,1.624635726,53.85502663,0,53.85502663,1.601157041,52.25386959,1.29027168,2.09694402,-2.224168795,2.224168795,0.910508955,0.910508955,0.246387085,1.515067681,48.72978462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.5025231,1.160032825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.097661377,46.84092251,50.60018447,48.00095533,29.0692241,0,0.04955295,87.15966187,-0.04955295,92.84033813,0,0,50.60018447,48.00095533,82.01584972,10,8,62% +2018-10-25 17:00:00,64.38513926,132.0515128,390.526981,739.8345965,70.68195351,265.1125234,193.6179343,71.49458916,68.55063182,2.943957342,96.8191096,0,96.8191096,2.131321687,94.68778791,1.123732669,2.30473368,-0.97755474,0.97755474,0.697325396,0.697325396,0.180991217,2.214170456,71.21533302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.89347476,1.544135307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604158958,68.4548869,67.49763372,69.99902221,193.6179343,0,0.261704353,74.82878353,-0.261704353,105.1712165,0.858944714,0,233.8047349,69.99902221,279.6176949,10,9,20% +2018-10-25 18:00:00,56.65376783,146.3764167,525.8806356,809.0695591,81.1374816,446.1290499,363.4738524,82.65519753,78.69088716,3.964310364,129.952443,0,129.952443,2.446594436,127.5058485,0.988794782,2.554750419,-0.357948903,0.357948903,0.591366557,0.591366557,0.15428878,2.594300649,83.44162671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64067389,1.77254934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879561989,80.20726545,77.52023588,81.97981479,363.4738524,0,0.4492492,63.30447638,-0.4492492,116.6955236,0.938703196,0,418.7143029,81.97981479,472.3684521,10,10,13% +2018-10-25 19:00:00,51.62288626,163.3920338,608.5504656,840.3223614,86.8491914,592.3877882,503.5699099,88.8178783,84.23036784,4.587510462,150.1689295,0,150.1689295,2.61882356,147.5501059,0.900989335,2.851728962,0.074712196,-0.074712196,0.517377152,0.517377152,0.142714855,2.689449118,86.50192854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.96543343,1.897328754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.94849673,83.14894398,82.91393016,85.04627273,503.5699099,0,0.599258015,53.18322468,-0.599258015,126.8167753,0.966563486,0,569.6462175,85.04627273,625.3073021,10,11,10% +2018-10-25 20:00:00,50.14564523,182.2158487,631.8565138,848.0489496,88.39430165,685.3681832,594.8760946,90.49208861,85.72888731,4.763201298,155.8663415,0,155.8663415,2.665414335,153.2009272,0.875206615,3.180266509,0.452931559,-0.452931559,0.452697831,0.452697831,0.139896163,2.520987659,81.08362896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40586734,1.931083612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.826446977,77.94066832,84.23231432,79.87175194,594.8760946,0,0.701464337,45.45539361,-0.701464337,134.5446064,0.978720539,0,666.4497662,79.87175194,718.7242304,10,12,8% +2018-10-25 21:00:00,52.53103523,200.7642876,593.9952661,835.2751908,85.87096755,713.2897208,625.5302925,87.75942827,83.28164105,4.477787221,146.6103558,0,146.6103558,2.589326502,144.0210293,0.916839524,3.503997839,0.851894283,-0.851894283,0.384471187,0.384471187,0.144565071,2.120031436,68.18749853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05348114,1.875958236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535955558,65.54441722,81.5894367,67.42037546,625.5302925,0,0.748891263,41.50557327,-0.748891263,138.4944267,0.983234633,0,696.6324843,67.42037546,740.7577716,10,13,6% +2018-10-25 22:00:00,58.29541121,217.1575245,497.8982718,796.8791493,79.10657066,668.824111,588.3495279,80.47458317,76.72121568,3.753367486,123.1065554,0,123.1065554,2.385354978,120.7212005,1.017446864,3.790113797,1.360099053,-1.360099053,0.297563053,0.297563053,0.158880991,1.535753856,49.39512311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.74735075,1.728181561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.11264844,47.48047117,74.85999919,49.20865273,588.3495279,0,0.738317132,42.41174235,-0.738317132,137.5882576,0.982278424,0,652.783046,49.20865273,684.989125,10,14,5% +2018-10-25 23:00:00,66.53707067,230.8437915,351.5047076,713.8270624,67.29043476,546.5411108,478.62994,67.91117084,65.26137987,2.649790962,87.25544082,0,87.25544082,2.029054883,85.22638594,1.161290958,4.02898422,2.176344001,-2.176344001,0.157976946,0.157976946,0.191435373,0.845733631,27.20170077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.73172067,1.470043356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.612731137,26.14730945,63.34445181,27.6173528,478.62994,0,0.670512461,47.89337092,-0.670512461,132.1066291,0.97543017,0,530.2145357,27.6173528,548.2895407,10,15,3% +2018-10-25 00:00:00,76.40383609,242.2586089,170.2540666,524.2245825,47.02090477,335.3704379,288.4839399,46.88649807,45.603051,1.28344707,42.69792335,0,42.69792335,1.417853767,41.28006958,1.333498501,4.228210366,4.097032615,-4.097032615,0,0,0.276180803,0.354463442,11.40076275,0.145649759,1,0.239398327,0,0.933424751,0.972186714,0.724496596,1,44.07722051,1.027230228,0.023308027,0.312029739,0.936028941,0.660525537,0.961238037,0.922476074,0.248355711,10.9588468,44.32557622,11.98607703,246.4663237,0,0.550306013,56.61199074,-0.550306013,123.3880093,0.959141462,0,280.7216462,11.98607703,288.5662938,10,16,3% +2018-10-25 01:00:00,87.14880853,252.1378357,9.346581216,63.95882336,6.165132262,30.87219305,24.8225038,6.049689254,5.979230777,0.070458477,2.452088311,0,2.452088311,0.185901485,2.266186827,1.521033648,4.400635401,20.06481562,-20.06481562,0,0,0.659613619,0.046475371,1.494807694,0.743664138,1,0.049797282,0,0.956549277,0.99531124,0.724496596,1,5.778839001,0.134684993,0.093966795,0.312029739,0.768306264,0.49280286,0.961238037,0.922476074,0.032425163,1.436866014,5.811264164,1.571551006,6.362897909,0,0.38810132,67.16359051,-0.38810132,112.8364095,0.921167663,0,11.67255996,1.571551006,12.70110866,10,17,9% +2018-10-25 02:00:00,98.91954871,261.2132761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72647182,4.559031717,-6.250008915,6.250008915,1,0.401031838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.185736983,79.29589688,-0.185736983,100.7041031,0.780802131,0,0,0,0,10,18,0% +2018-10-25 03:00:00,110.7273825,270.2037701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932557396,4.71594544,-2.480004454,2.480004454,1,0.954259429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032377176,91.85539982,0.032377176,88.14460018,0,0,0,0,0,10,19,0% +2018-10-25 04:00:00,122.5220251,279.9554514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138412745,4.886144385,-1.358844415,1.358844415,1,0.76252977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255339284,104.7936902,0.255339284,75.20630977,0,0.854182109,0,0,0,10,20,0% +2018-10-25 05:00:00,133.9194048,291.7319541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337334547,5.091683132,-0.774960737,0.774960737,1,0.662679781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467961522,117.9020557,0.467961522,62.0979443,0,0.943153609,0,0,0,10,21,0% +2018-10-25 06:00:00,144.2298868,307.7524773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517286405,5.371294011,-0.38440561,0.38440561,1,0.595890921,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655763027,130.977532,0.655763027,49.02246795,0,0.973752944,0,0,0,10,22,0% +2018-10-25 07:00:00,151.9801695,331.5572707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652554356,5.786766032,-0.078131174,0.078131174,1,0.543514907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805956433,143.7027246,0.805956433,36.29727544,0,0.987961907,0,0,0,10,23,0% +2018-10-26 08:00:00,154.5610174,3.991534808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697598649,0.069665425,0.193407791,-0.193407791,1,0.497079009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908318809,155.2740475,0.908318809,24.72595249,0,0.994953248,0,0,0,10,0,0% +2018-10-26 09:00:00,150.5492653,34.92433291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627580366,0.609544598,0.46209647,-0.46209647,1,0.451130539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95588776,162.9184714,0.95588776,17.08152865,0,0.997692604,0,0,0,10,1,0% +2018-10-26 10:00:00,142.0181878,56.61296346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478684975,0.988082612,0.759559568,-0.759559568,1,0.400261353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945435377,160.9853635,0.945435377,19.0146365,0,0.997114312,0,0,0,10,2,0% +2018-10-26 11:00:00,131.3737212,71.39015941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292903986,1.245993335,1.134992481,-1.134992481,1,0.336058544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877687789,151.3646884,0.877687789,28.63531161,0,0.993032134,0,0,0,10,3,0% +2018-10-26 12:00:00,119.8512035,82.55836551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091798113,1.440915303,1.700796789,-1.700796789,1,0.239300309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757275414,139.2245895,0.757275414,40.77541045,0,0.983973824,0,0,0,10,4,0% +2018-10-26 13:00:00,108.0404034,92.05613983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885660764,1.606682737,2.845618055,-2.845618055,1,0.043524342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592417256,126.3287323,0.592417256,53.6712677,0,0.965600028,0,0,0,10,5,0% +2018-10-26 14:00:00,96.29294593,101.013995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680628953,1.763026803,7.771756956,-7.771756956,1,0,#DIV/0!,0,0,0.444103193,1,0.127967903,0,0.948006082,0.986768045,0.724496596,1,0,0,0.06275246,0.312029739,0.837507988,0.562004583,0.961238037,0.922476074,0,0,0,0,0,0,-0.394360736,113.2261108,0.394360736,66.77388923,0,0.92321253,0,0,0,10,6,0% +2018-10-26 15:00:00,84.74535175,110.2292919,33.95943921,184.6764072,17.04632965,16.78832051,0,16.78832051,16.53231991,0.256000597,40.87492684,32.1270579,8.747868938,0.514009733,8.233859204,1.479085414,1.923864077,-8.301348689,8.301348689,0.050232076,0.050232076,0.501961459,0.134906931,4.339070633,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89149474,0.372398302,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.097739612,4.170879737,15.98923435,4.543278039,0,32.1270579,-0.173964062,100.0183785,0.173964062,79.98162145,0,0.762584315,15.98923435,29.04286848,34.99721091,10,7,119% +2018-10-26 16:00:00,74.1524828,120.4136158,211.419519,581.7878266,52.54597495,79.86682854,27.31153897,52.55528957,50.96151993,1.593769638,52.84556513,0,52.84556513,1.584455019,51.26111011,1.294204973,2.10161406,-2.244853787,2.244853787,0.914046297,0.914046297,0.248538901,1.49082668,47.9501107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.98615137,1.147932267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080098854,46.09147027,50.06625022,47.23940254,27.31153897,0,0.046944157,87.30930905,-0.046944157,92.69069095,0,0,50.06625022,47.23940254,80.9834944,10,8,62% +2018-10-26 17:00:00,64.64242919,132.3013216,385.9427643,737.1690819,70.23825872,261.7923002,190.7625845,71.02971565,68.12031607,2.90939958,95.69423414,0,95.69423414,2.117942652,93.57629149,1.128223226,2.309093666,-0.980785864,0.980785864,0.69787795,0.69787795,0.181991386,2.19037511,70.44999289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.47983889,1.534442242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586919311,67.71921286,67.0667582,69.25365511,190.7625845,0,0.258777246,75.00247941,-0.258777246,104.9975206,0.85678363,0,230.5090179,69.25365511,275.8341501,10,9,20% +2018-10-26 18:00:00,56.94726609,146.5863585,520.9722182,807.1892701,80.72255322,442.2356674,360.0198884,82.21577904,78.2884704,3.92730864,128.7498287,0,128.7498287,2.434082814,126.3157459,0.993917293,2.558414594,-0.356498351,0.356498351,0.591118498,0.591118498,0.154945984,2.570317645,82.67025086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.2538556,1.763484713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862186384,79.46578964,77.11604198,81.22927435,360.0198884,0,0.446016692,63.51159518,-0.446016692,116.4884048,0.937896572,0,414.7774613,81.22927435,467.9403968,10,10,13% +2018-10-26 19:00:00,51.94870208,163.5240961,603.4100997,838.7390486,86.43923958,588.0606232,499.6790854,88.3815378,83.83277758,4.548760213,148.9102267,0,148.9102267,2.606462,146.3037647,0.906675893,2.854033883,0.078530817,-0.078530817,0.516724129,0.516724129,0.143251231,2.665364207,85.72727504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.58325455,1.888372846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931047295,82.40431757,82.51430184,84.29269041,499.6790854,0,0.595750354,53.43385834,-0.595750354,126.5661417,0.966072228,0,565.2403891,84.29269041,620.4082691,10,11,10% +2018-10-26 20:00:00,50.48711118,182.2354448,626.5732016,846.5098358,87.9798093,680.6856779,590.635411,90.0502669,85.32689344,4.723373459,154.5728428,0,154.5728428,2.652915861,151.9199269,0.88116632,3.180608526,0.458841927,-0.458841927,0.451687099,0.451687099,0.140414255,2.497143852,80.31673017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.01945554,1.922028511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.80917222,77.20349603,83.82862776,79.12552455,590.635411,0,0.697730122,45.75482613,-0.697730122,134.2451739,0.978339055,0,661.6703175,79.12552455,713.4563908,10,12,8% +2018-10-26 21:00:00,52.86480173,200.6726275,588.6652273,833.5632891,85.44486166,708.306249,621.000258,87.30599096,82.86838382,4.437607137,145.3051775,0,145.3051775,2.576477837,142.7286997,0.922664849,3.502398068,0.860650174,-0.860650174,0.382973842,0.382973842,0.145150177,2.096926009,67.44434858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65624258,1.866649422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.519215755,64.83007322,81.17545833,66.69672265,621.000258,0,0.744994731,41.84135367,-0.744994731,138.1586463,0.982885431,0,691.5475648,66.69672265,735.1992358,10,13,6% +2018-10-26 22:00:00,58.60509594,216.9887827,492.6288926,794.6745219,78.65614234,663.5546424,583.5566283,79.99801412,76.28436944,3.71364468,121.8153514,0,121.8153514,2.371772902,119.4435785,1.022851883,3.787168698,1.374063035,-1.374063035,0.295175071,0.295175071,0.159666117,1.5140965,48.69854812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.32743752,1.718341394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.09695776,46.81089679,74.42439528,48.52923819,583.5566283,0,0.734334136,42.74901864,-0.734334136,137.2509814,0.981911105,0,647.4251289,48.52923819,679.1865447,10,14,5% +2018-10-26 23:00:00,66.81808227,230.6331291,346.4331408,710.4092145,66.77926387,540.8835718,473.5063898,67.37718202,64.76562267,2.611559349,86.01036704,0,86.01036704,2.013641195,83.99672585,1.166195535,4.025307466,2.203071027,-2.203071027,0.153406355,0.153406355,0.192762343,0.826813761,26.59317271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.25517999,1.458876191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.599023755,25.56236913,62.85420375,27.02124532,473.5063898,0,0.66652625,48.20047806,-0.66652625,131.7995219,0.9749842,0,524.5154523,27.02124532,542.2003169,10,15,3% +2018-10-26 00:00:00,76.65870329,242.0264613,165.6875469,517.337692,46.31130058,328.8411965,282.6773298,46.16386671,44.914844,1.249022715,41.56932059,0,41.56932059,1.396456583,40.17286401,1.337946773,4.224158626,4.175953717,-4.175953717,0,0,0.279509845,0.349114146,11.228711,0.155388609,1,0.235040244,0,0.934046292,0.972808255,0.724496596,1,43.42300138,1.011728041,0.024759897,0.312029739,0.932184977,0.656681573,0.961238037,0.922476074,0.244202435,10.79346412,43.66720382,11.80519216,238.7524926,0,0.546407761,56.87908234,-0.546407761,123.1209177,0.958493247,0,272.5098557,11.80519216,280.2361179,10,16,3% +2018-10-26 01:00:00,87.37281746,251.8918026,7.796018034,54.80022909,5.284144351,26.25684406,21.07326648,5.18357758,5.124807903,0.058769677,2.04957128,0,2.04957128,0.159336449,1.890234831,1.524943341,4.396341313,21.78166578,-21.78166578,0,0,0.677800427,0.039834112,1.281201976,0.761605664,1,0.045877956,0,0.956939821,0.995701784,0.724496596,1,4.951489224,0.115438715,0.095626311,0.312029739,0.764845397,0.489341993,0.961238037,0.922476074,0.027850695,1.231540072,4.979339919,1.346978786,5.023747365,0,0.384547051,67.3843765,-0.384547051,112.6156235,0.919976899,0,9.601071442,1.346978786,10.48264212,10,17,9% +2018-10-26 02:00:00,99.14410349,260.9531926,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73039104,4.554492405,-6.099406673,6.099406673,1,0.426786338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182188033,79.50276746,-0.182188033,100.4972325,0.775558264,0,0,0,0,10,18,0% +2018-10-26 03:00:00,110.9474802,269.9250425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936398827,4.711080725,-2.455872763,2.455872763,1,0.950132667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.035656344,92.04339116,0.035656344,87.95660884,0,0,0,0,0,10,19,0% +2018-10-26 04:00:00,122.7470406,279.6513797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142340006,4.880837334,-1.351245491,1.351245491,1,0.761230278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258315903,104.9701573,0.258315903,75.02984275,0,0.856438553,0,0,0,10,20,0% +2018-10-26 05:00:00,134.1618115,291.3988341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341565341,5.085869091,-0.772399344,0.772399344,1,0.662241757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470623633,118.0747855,0.470623633,61.92521449,0,0.943757992,0,0,0,10,21,0% +2018-10-26 06:00:00,144.5063028,307.4109007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.522110774,5.365332374,-0.384097745,0.384097745,1,0.595838272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6581203,131.1566733,0.6581203,48.84332671,0,0.974026048,0,0,0,10,22,0% +2018-10-26 07:00:00,152.3027496,331.3243366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.65818444,5.782700565,-0.079184031,0.079184031,1,0.543694956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808039511,143.9048262,0.808039511,36.09517377,0,0.988121838,0,0,0,10,23,0% +2018-10-27 08:00:00,154.8985169,4.093682645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.703489126,0.071448241,0.191241703,-0.191241703,1,0.497449432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910177191,155.5298495,0.910177191,24.47015048,0,0.995065642,0,0,0,10,0,0% +2018-10-27 09:00:00,150.8383415,35.29062513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.632625697,0.615937604,0.458707051,-0.458707051,1,0.451710164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95758639,163.2529881,0.95758639,16.74701189,0,0.99778539,0,0,0,10,1,0% +2018-10-27 10:00:00,142.2514474,57.01601087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.482756122,0.995117116,0.754447183,-0.754447183,1,0.401135623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947050161,161.2714071,0.947050161,18.72859288,0,0.997204486,0,0,0,10,2,0% +2018-10-27 11:00:00,131.5725733,71.75803105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296374609,1.252413907,1.126882975,-1.126882975,1,0.337445351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879300359,151.558081,0.879300359,28.44191903,0,0.993136609,0,0,0,10,3,0% +2018-10-27 12:00:00,120.0341646,82.88871929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094991387,1.446681064,1.686089366,-1.686089366,1,0.241815426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758967488,139.3732583,0.758967488,40.62674171,0,0.984121025,0,0,0,10,4,0% +2018-10-27 13:00:00,108.2204981,92.35908542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88880401,1.611970135,2.809461752,-2.809461752,1,0.049707434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594265,126.4602533,0.594265,53.53974668,0,0.965862452,0,0,0,10,5,0% +2018-10-27 14:00:00,96.48006167,101.2989853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683894739,1.768000823,7.522843757,-7.522843757,1,0,#DIV/0!,0,0,0.430630386,1,0.132153705,0,0.947508665,0.986270628,0.724496596,1,0,0,0.061173093,0.312029739,0.841215971,0.565712567,0.961238037,0.922476074,0,0,0,0,0,0,-0.396429495,113.3551579,0.396429495,66.6448421,0,0.923874168,0,0,0,10,6,0% +2018-10-27 15:00:00,84.94313043,110.5024485,31.50347278,174.4656623,16.12528701,15.8765366,0,15.8765366,15.63905011,0.237486485,38.86960208,30.74498347,8.12461861,0.486236899,7.63838171,1.482537303,1.928631558,-8.592921043,8.592921043,0.000370267,0.000370267,0.511857443,0.121602149,3.911143113,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.03284983,0.352276978,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.088100343,3.759539528,15.12095017,4.111816506,0,30.74498347,-0.176223694,100.1498774,0.176223694,79.85012261,0,0.766269709,15.12095017,27.67076603,33.23091312,10,7,120% +2018-10-27 16:00:00,74.37799048,120.6759607,207.3254,576.8479435,51.98613912,77.54514339,25.56367173,51.98147165,50.41856521,1.56290644,51.83601746,0,51.83601746,1.567573903,50.26844355,1.298140825,2.106192842,-2.266316537,2.266316537,0.917716643,0.917716643,0.2507466,1.466551562,47.16933947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.46424265,1.135701956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062511614,45.34096327,49.52675426,46.47666522,25.56367173,0,0.044316136,87.46004062,-0.044316136,92.53995938,0,0,49.52675426,46.47666522,79.94480212,10,8,61% +2018-10-27 17:00:00,64.89938919,132.5452032,381.3571657,734.4608474,69.79220775,258.4593579,187.8968113,70.56254658,67.68771518,2.874831401,94.5689526,0,94.5689526,2.104492569,92.46446003,1.132708024,2.313350203,-0.984206199,0.984206199,0.698462862,0.698462862,0.183010086,2.166608635,69.68558138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.06400646,1.524697703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569700581,66.98443144,66.63370704,68.50912914,187.8968113,0,0.255829582,75.17725269,-0.255829582,104.8227473,0.854557394,0,227.2023165,68.50912914,272.0401714,10,9,20% +2018-10-27 18:00:00,57.23958881,146.7899026,516.0686064,805.2854344,80.30668383,438.3284951,356.553011,81.77548416,77.88514102,3.890343143,127.5483513,0,127.5483513,2.421542818,125.1268085,0.999019287,2.56196711,-0.355136078,0.355136078,0.590885536,0.590885536,0.155612418,2.546419541,81.90160569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.86616005,1.754399528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844872289,78.72693867,76.71103234,80.48133819,356.553011,0,0.442766,63.71950354,-0.442766,116.2804965,0.937073533,0,410.8274221,80.48133819,463.5008483,10,10,13% +2018-10-27 19:00:00,52.27221945,163.6502429,598.2845221,837.1406329,86.02929293,583.7253329,495.7800191,87.94531377,83.43519233,4.510121444,147.6551097,0,147.6551097,2.594100596,145.0610091,0.912322337,2.85623556,0.082291256,-0.082291256,0.516081056,0.516081056,0.143793279,2.641421843,84.95720629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20108048,1.879417051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.913701133,81.66409819,82.11478161,83.54351524,495.7800191,0,0.592230265,53.68456516,-0.592230265,126.3154348,0.965573379,0,560.8267701,83.54351524,615.5043299,10,11,10% +2018-10-27 20:00:00,50.8252431,182.2509865,621.3171353,844.9600506,87.56616289,676.005154,586.395683,89.60947101,84.92572,4.683751011,153.2859757,0,153.2859757,2.640442896,150.6455328,0.887067835,3.180879779,0.464706477,-0.464706477,0.450684202,0.450684202,0.14093634,2.473501835,79.55632161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.63383237,1.91299189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792043659,76.4725624,83.42587603,78.38555429,586.395683,0,0.693992198,46.05303725,-0.693992198,133.9469628,0.977953081,0,656.8933407,78.38555429,708.1951182,10,12,8% +2018-10-27 21:00:00,53.19464444,200.5792128,583.3763571,831.8431662,85.02041227,703.3380777,616.4836071,86.85447055,82.45673315,4.397737399,144.010031,0,144.010031,2.563679122,141.4463519,0.92842169,3.500767675,0.869370141,-0.869370141,0.38148264,0.38148264,0.145738529,2.074080482,66.7095579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.2605483,1.857376797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502664249,64.12376448,80.76321255,65.98114127,616.4836071,0,0.741105574,42.17432115,-0.741105574,137.8256789,0.982533229,0,686.4788417,65.98114127,729.662179,10,13,6% +2018-10-27 22:00:00,58.91065185,216.8198238,487.4151438,792.4622882,78.20811803,658.3158323,578.7916364,79.52419595,75.84985472,3.674341239,120.537708,0,120.537708,2.358263316,118.1794447,1.028184839,3.784219809,1.388017395,-1.388017395,0.292788735,0.292788735,0.160454838,1.49275332,48.01207809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90976544,1.708553745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.081494699,46.15103569,73.99126014,47.85958944,578.7916364,0,0.730371205,43.08247749,-0.730371205,136.9175225,0.98154166,0,642.0993639,47.85958944,673.422508,10,14,5% +2018-10-27 23:00:00,67.09488855,230.4229213,341.4317085,706.979502,66.27095312,535.2724162,468.4259204,66.84649581,64.27263937,2.57385644,84.78238442,0,84.78238442,1.99831375,82.78407067,1.171026716,4.021638649,2.229924847,-2.229924847,0.148814082,0.148814082,0.194097243,0.808260214,25.99642685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.78130569,1.44777151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.585581773,24.98875431,62.36688746,26.43652582,468.4259204,0,0.662573553,48.50355685,-0.662573553,131.4964432,0.97453668,0,518.8651287,26.43652582,536.1673062,10,15,3% +2018-10-27 00:00:00,76.9092582,241.7949563,161.2096248,510.4160029,45.60350164,322.3731958,276.9295418,45.44365405,44.22838781,1.215266247,40.46225378,0,40.46225378,1.375113833,39.08713995,1.342319781,4.220118102,4.256371431,-4.256371431,0,0,0.282883244,0.343778458,11.05709695,0.16508638,1,0.230756902,0,0.934653194,0.973415157,0.724496596,1,42.76956241,0.996265291,0.026193289,0.312029739,0.928406189,0.652902784,0.961238037,0.922476074,0.240089596,10.62850217,43.00965201,11.62476746,231.2122463,0,0.542556542,57.14215606,-0.542556542,122.8578439,0.957843706,0,264.474847,11.62476746,272.0830248,10,16,3% +2018-10-27 01:00:00,87.59147815,251.6463742,6.422798631,46.42721017,4.47172961,22.07717751,17.69186928,4.385308232,4.336890463,0.048417769,1.692121035,0,1.692121035,0.134839147,1.557281889,1.52875969,4.39205778,23.76494459,-23.76494459,0,0,0.69622759,0.033709787,1.084222616,0.779438906,1,0.042053976,0,0.957317342,0.996079305,0.724496596,1,4.18885818,0.097690503,0.097255003,0.312029739,0.761470303,0.485966899,0.961238037,0.922476074,0.023620615,1.042196019,4.212478795,1.139886522,3.902138042,0,0.381066819,67.60022047,-0.381066819,112.3997795,0.918789416,0,7.797721926,1.139886522,8.543754857,10,17,10% +2018-10-27 02:00:00,99.36402221,260.6935337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734229346,4.549960502,-5.958828281,5.958828281,1,0.450826659,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178708069,79.7054825,-0.178708069,100.2945175,0.770214088,0,0,0,0,10,18,0% +2018-10-27 03:00:00,111.1626831,269.6463795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940154825,4.706217138,-2.432766639,2.432766639,1,0.946181287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.038858969,92.22701566,0.038858969,87.77298434,0,0,0,0,0,10,19,0% +2018-10-27 04:00:00,122.9668587,279.3466609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146176556,4.875518987,-1.343956017,1.343956017,1,0.759983704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.261211576,105.1419649,0.261211576,74.85803507,0,0.858584287,0,0,0,10,20,0% +2018-10-27 05:00:00,134.3987372,291.0635852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.345700475,5.080017894,-0.769974036,0.769974036,1,0.661827005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473203845,118.2424668,0.473203845,61.75753317,0,0.944337291,0,0,0,10,21,0% +2018-10-27 06:00:00,144.7772193,307.0642316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526839159,5.359281856,-0.383860937,0.383860937,1,0.595797776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660398242,131.330252,0.660398242,48.66974796,0,0.974288109,0,0,0,10,22,0% +2018-10-27 07:00:00,152.6206823,331.0829037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663733413,5.778486767,-0.080276076,0.080276076,1,0.543881707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810049164,144.1007352,0.810049164,35.89926484,0,0.988275351,0,0,0,10,23,0% +2018-10-28 08:00:00,155.2328447,4.190511653,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709324248,0.073138226,0.189056258,-0.189056258,1,0.497823165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911970989,155.7791646,0.911970989,24.22083542,0,0.995173695,0,0,0,10,0,0% +2018-10-28 09:00:00,151.1249787,35.65465105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.637628461,0.622291055,0.455314868,-0.455314868,1,0.452290261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9592316,163.5832919,0.9592316,16.41670813,0,0.997874945,0,0,0,10,1,0% +2018-10-28 10:00:00,142.4830512,57.41584807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486798372,1.002095592,0.749352338,-0.749352338,1,0.402006893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948624245,161.5543546,0.948624245,18.4456454,0,0.997292091,0,0,0,10,2,0% +2018-10-28 11:00:00,131.7705642,72.12207554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299830203,1.258767682,1.118828388,-1.118828388,1,0.338822767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880885625,151.7493811,0.880885625,28.25061892,0,0.993238942,0,0,0,10,3,0% +2018-10-28 12:00:00,120.2168624,83.21505639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098180066,1.452376721,1.671541123,-1.671541123,1,0.244303322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760645411,139.521129,0.760645411,40.47887103,0,0.984266349,0,0,0,10,4,0% +2018-10-28 13:00:00,108.4007177,92.65788929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891949436,1.617185246,2.773987665,-2.773987665,1,0.05577386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59611059,126.5918441,0.59611059,53.40815592,0,0.966122946,0,0,0,10,5,0% +2018-10-28 14:00:00,96.66750062,101.5796124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687166165,1.772898689,7.287664437,-7.287664437,1,0,#DIV/0!,0,0,0.417286882,1,0.136366554,0,0.947003992,0.985765955,0.724496596,1,0,0,0.059592099,0.312029739,0.844947632,0.569444227,0.961238037,0.922476074,0,0,0,0,0,0,-0.398506117,113.4848218,0.398506117,66.51517822,0,0.924531411,0,0,0,10,6,0% +2018-10-28 15:00:00,85.14094502,110.7708555,29.11301095,164.234693,15.2015297,14.96261367,0,14.96261367,14.7431475,0.219466174,36.83203396,29.31486519,7.517168771,0.458382208,7.058786563,1.485989819,1.933316144,-8.908642456,8.908642456,0,0,0.522155875,0.114595552,3.685786874,1,0.050892361,0,0.111782622,0.961238037,1,0.456805041,0.732308445,14.17167416,0.329250177,0.115824807,0.008916073,0.724496596,0.448993192,0.99920431,0.960442347,0.083024087,3.547256703,14.25469824,3.87650688,0,27.82296248,-0.178493744,100.2820369,0.178493744,79.71796308,0,0.769878137,14.25469824,25.2967974,30.81094621,10,7,116% +2018-10-28 16:00:00,74.60358526,120.9329851,203.2331389,571.8086714,51.42034445,75.22866042,23.82677182,51.40188859,49.86983135,1.532057247,50.82674059,0,50.82674059,1.550513106,49.27622748,1.302078196,2.110678765,-2.288591062,2.288591062,0.921525811,0.921525811,0.253011614,1.442249112,46.38768914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.93677878,1.123341467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.044904572,44.58961124,48.98168335,45.71295271,23.82677182,0,0.041669133,87.61184308,-0.041669133,92.38815692,0,0,48.98168335,45.71295271,78.89989664,10,8,61% +2018-10-28 17:00:00,65.15593739,132.7830897,376.7718744,731.7099478,69.34388613,255.1148153,185.0216377,70.09317765,67.25291211,2.840265538,93.44367707,0,93.44367707,2.090974019,91.35270306,1.137185635,2.317502107,-0.987822804,0.987822804,0.699081338,0.699081338,0.184047406,2.142879909,68.92238397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64605721,1.514903558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552509199,66.25081707,66.19856641,67.76572062,185.0216377,0,0.252861996,75.35306479,-0.252861996,104.6469352,0.852263682,0,223.8857886,67.76572062,268.2370974,10,9,20% +2018-10-28 18:00:00,57.53063585,146.9870181,511.1718642,803.3585003,79.88999953,434.4090417,353.074591,81.33445072,77.48102129,3.853429432,126.3485149,0,126.3485149,2.408978249,123.9395366,1.004099016,2.565407424,-0.353866356,0.353866356,0.590668401,0.590668401,0.156287944,2.522616729,81.13602544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.47770479,1.745296541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827627233,77.99103382,76.30533203,79.73633036,353.074591,0,0.43949817,63.92813319,-0.43949817,116.0718668,0.936233884,0,406.8657275,79.73633036,459.051561,10,10,13% +2018-10-28 19:00:00,52.59333039,163.7704743,593.1761389,835.5277567,85.61950392,579.3838876,491.8745153,87.50937227,83.03775997,4.471612294,146.4041664,0,146.4041664,2.581743946,143.8224224,0.91792678,2.858333995,0.085989376,-0.085989376,0.51544864,0.51544864,0.144340776,2.617633361,84.19208696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81905338,1.8704647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.89646646,80.92863638,81.71551984,82.79910108,491.8745153,0,0.588699192,53.93524684,-0.588699192,126.0647532,0.96506698,0,556.4073731,82.79910108,610.5977288,10,11,10% +2018-10-28 20:00:00,51.15993244,182.2624695,616.0909848,843.4004293,87.1535378,671.3290348,582.1591436,89.16989115,84.52553707,4.644354082,152.0063929,0,152.0063929,2.628000727,149.3783921,0.892909266,3.181080195,0.470520238,-0.470520238,0.44968999,0.44968999,0.141462122,2.450073317,78.80277994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.24916132,1.903977581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.775069778,75.74822949,83.0242311,77.65220707,582.1591436,0,0.690252368,46.34991069,-0.690252368,133.6500893,0.977562726,0,652.1213104,77.65220707,702.9431269,10,12,8% +2018-10-28 21:00:00,53.52045144,200.4840179,578.1314843,830.1159522,84.59781907,698.3880497,611.9829677,86.40508202,82.04688269,4.358199332,142.7256081,0,142.7256081,2.550936378,140.1746717,0.934108095,3.499106211,0.878047281,-0.878047281,0.379998761,0.379998761,0.146329721,2.051506276,65.98349383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.86658445,1.848144722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.486309313,63.42584407,80.35289376,65.2739888,611.9829677,0,0.737225885,42.50436335,-0.737225885,137.4956366,0.982178182,0,681.4292122,65.2739888,724.1497324,10,13,6% +2018-10-28 22:00:00,59.21196159,216.650622,482.2598867,790.2441401,77.76273207,653.1109303,574.0575528,79.05337751,75.41789878,3.635478733,119.2743262,0,119.2743262,2.344833286,116.9294929,1.033443686,3.78126668,1.401951025,-1.401951025,0.290405944,0.290405944,0.161246527,1.471734575,47.33604298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.49455297,1.698823733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06626669,45.50120503,73.56081966,47.20002876,574.0575528,0,0.726430635,43.4120097,-0.726430635,136.5879903,0.981170304,0,636.8090431,47.20002876,667.7005179,10,14,5% +2018-10-28 23:00:00,67.36737034,230.2131611,336.5031445,703.5409125,65.76581019,529.7114134,463.3919821,66.3194312,63.78272836,2.536702842,83.5721651,0,83.5721651,1.983081827,81.58908327,1.175782421,4.017977642,2.25688417,-2.25688417,0.144203766,0.144203766,0.195438917,0.790080593,25.41170775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.3103846,1.436736033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.5724107,24.42670007,61.8827953,25.86343611,463.3919821,0,0.658656766,48.80248958,-0.658656766,131.1975104,0.974087928,0,513.2673309,25.86343611,530.1944326,10,15,3% +2018-10-28 00:00:00,77.15538394,241.5641093,156.822669,503.466852,44.89807267,315.9715829,271.2451572,44.72642564,43.54423012,1.182195521,39.37731428,0,39.37731428,1.353842547,38.02347173,1.346615485,4.216089062,4.338255387,-4.338255387,0,0,0.286298358,0.338460637,10.88605753,0.174734786,1,0.226550248,0,0.935245379,0.974007342,0.724496596,1,42.11747202,0.980854317,0.027607299,0.312029739,0.924694322,0.649190918,0.961238037,0.922476074,0.236019076,10.46409257,42.35349109,11.44494689,223.8491927,0,0.538754748,57.40109065,-0.538754748,122.5989094,0.957193393,0,256.6204595,11.44494689,264.1109483,10,16,3% +2018-10-28 01:00:00,87.80461763,251.4015869,5.220537816,38.86615133,3.731681446,18.33685494,14.67834284,3.658512101,3.619157482,0.039354619,1.378303799,0,1.378303799,0.112523964,1.265779835,1.532479676,4.387785435,26.07773652,-26.07773652,0,0,0.714807857,0.028130991,0.904789371,0.797135632,1,0.038328107,0,0.957681825,0.996443788,0.724496596,1,3.494460302,0.081523229,0.098851096,0.312029739,0.758183427,0.482680023,0.961238037,0.922476074,0.019756215,0.869717958,3.514216517,0.951241187,2.977712739,0,0.377663914,67.81094501,-0.377663914,112.189055,0.917607155,0,6.246587032,0.951241187,6.869155365,10,17,10% +2018-10-28 02:00:00,99.5791954,260.434356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737984826,4.545436997,-5.827450342,5.827450342,1,0.47329361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175299171,79.90393154,-0.175299171,100.0960685,0.764773323,0,0,0,0,10,18,0% +2018-10-28 03:00:00,111.3728836,269.367859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943823517,4.701356039,-2.410653321,2.410653321,1,0.942399687,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041983267,92.40617123,0.041983267,87.59382877,0,0,0,0,0,10,19,0% +2018-10-28 04:00:00,123.18137,279.0413959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149920483,4.870191107,-1.336971987,1.336971987,1,0.758789365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264024875,105.3090188,0.264024875,74.6909812,0,0.860623905,0,0,0,10,20,0% +2018-10-28 05:00:00,134.6300619,290.7263235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349737853,5.074131567,-0.767684522,0.767684522,1,0.661435475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47570113,118.4050104,0.47570113,61.59498964,0,0.944891988,0,0,0,10,21,0% +2018-10-28 06:00:00,145.0424944,306.7125359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.531469082,5.353143609,-0.383695543,0.383695543,1,0.595769492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662596233,131.4981782,0.662596233,48.50182184,0,0.974539263,0,0,0,10,22,0% +2018-10-28 07:00:00,152.933817,330.8327791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669198644,5.77412127,-0.08140771,0.08140771,1,0.544075228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811985168,144.2903437,0.811985168,35.70965634,0,0.988422521,0,0,0,10,23,0% +2018-10-29 08:00:00,155.5639107,4.281647579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715102439,0.074728848,0.186851164,-0.186851164,1,0.498200259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913700328,156.0218255,0.913700328,23.97817454,0,0.995277463,0,0,0,10,0,0% +2018-10-29 09:00:00,151.409151,36.01609223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642588203,0.628599393,0.451919782,-0.451919782,1,0.452870855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960823797,163.9092263,0.960823797,16.09077371,0,0.997961322,0,0,0,10,1,0% +2018-10-29 10:00:00,142.7130076,57.81222185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490811868,1.009013619,0.744275072,-0.744275072,1,0.402875156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95015823,161.8341842,0.95015823,18.16581581,0,0.997377186,0,0,0,10,2,0% +2018-10-29 11:00:00,131.9677092,72.48210326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303271032,1.265051351,1.110828878,-1.110828878,1,0.340190764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882444283,151.9386363,0.882444283,28.0613637,0,0.993339199,0,0,0,10,3,0% +2018-10-29 12:00:00,120.3993055,83.53722618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101364298,1.457999645,1.657151554,-1.657151554,1,0.246764084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762309862,139.6682556,0.762309862,40.33174443,0,0.984409874,0,0,0,10,4,0% +2018-10-29 13:00:00,108.5810577,92.95242284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895096962,1.622325826,2.739183314,-2.739183314,1,0.061725755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597954585,126.7235456,0.597954585,53.27645439,0,0.966381609,0,0,0,10,5,0% +2018-10-29 14:00:00,96.85524151,101.8557611,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690442862,1.777718394,7.065165195,-7.065165195,1,0,#DIV/0!,0,0,0.404074006,1,0.140605534,0,0.946492104,0.985254067,0.724496596,1,0,0,0.058009867,0.312029739,0.848702099,0.573198695,0.961238037,0.922476074,0,0,0,0,0,0,-0.40059094,113.6151262,0.40059094,66.3848738,0,0.925184396,0,0,0,10,6,0% +2018-10-29 15:00:00,85.33873006,111.0344089,26.79245574,154.0089409,14.27695061,14.04842072,0,14.04842072,13.84644787,0.201972849,34.76743384,27.84079002,6.926643824,0.430502737,6.496141087,1.489441819,1.937916019,-9.251491717,9.251491717,0,0,0.532872042,0.107625684,3.461611967,1,0.100923133,0,0.107672641,0.961238037,1,0.464882911,0.740386315,13.30973237,0.30676835,0.115824807,0.018116016,0.724496596,0.448993192,0.998363169,0.959601206,0.077974442,3.33530877,13.38770681,3.64207712,0,25.03101028,-0.180773855,100.4148379,0.180773855,79.58516207,0,0.773411331,13.38770681,23.0013441,28.4416265,10,7,112% +2018-10-29 16:00:00,74.82920297,121.1845998,199.1443084,566.6689406,50.84858388,72.91860958,22.1020642,50.81654538,49.31531147,1.501233916,49.8181156,0,49.8181156,1.533272415,48.28484318,1.306015969,2.115070269,-2.311712243,2.311712243,0.925479766,0.925479766,0.255335361,1.417926568,45.6053925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.40375318,1.110850645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.027282971,43.83763796,48.43103615,44.94848861,22.1020642,0,0.039003486,87.76469786,-0.039003486,92.23530214,0,0,48.43103615,44.94848861,77.84892298,10,8,61% +2018-10-29 17:00:00,65.41198771,133.0149168,372.1886663,728.9165276,68.8933887,251.7598871,182.1381729,69.62171422,66.81599884,2.80571538,92.31884106,0,92.31884106,2.077389859,90.2414512,1.141654556,2.321548252,-0.991642658,0.991642658,0.699734572,0.699734572,0.185103403,2.119198139,68.16069683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.22607956,1.505061881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535351837,65.51865441,65.7614314,67.02371629,182.1381729,0,0.249875213,75.52987192,-0.249875213,104.4701281,0.849900121,0,220.5606866,67.02371629,264.4263684,10,9,20% +2018-10-29 18:00:00,57.8203036,147.1776775,506.2841309,801.4089843,79.47263381,430.4789114,349.5860871,80.89282432,77.07624068,3.816583634,125.1508422,0,125.1508422,2.396393132,122.7544491,1.009154672,2.568735058,-0.35269343,0.35269343,0.590467818,0.590467818,0.156972397,2.498919839,80.373852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.08861428,1.736178667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810458917,77.25840371,75.8990732,78.99458237,349.5860871,0,0.436214335,64.13741091,-0.436214335,115.8625891,0.935377449,0,402.8940154,78.99458237,454.5943897,10,10,13% +2018-10-29 19:00:00,52.91192444,163.8847945,588.0874148,833.9011207,85.21003104,575.0383445,487.9644589,87.07388556,82.64063422,4.433251342,145.1579992,0,145.1579992,2.569396827,142.5886024,0.923487295,2.860329258,0.089621003,-0.089621003,0.514827595,0.514827595,0.144893478,2.594010238,83.43228609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.437321,1.861519255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879351587,80.19828689,81.31667258,82.05980615,487.9644589,0,0.585158656,54.18580089,-0.585158656,125.8141991,0.964553088,0,551.9842984,82.05980615,605.6908004,10,11,10% +2018-10-29 20:00:00,51.49106908,182.2698944,610.8974576,841.8318628,86.74211423,666.6598151,577.9280926,88.73172252,84.12651944,4.60520308,150.7347561,0,150.7347561,2.615594788,148.1191613,0.898688691,3.181209784,0.476278136,-0.476278136,0.448705331,0.448705331,0.141991284,2.42687004,78.05648279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.8656104,1.89498952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758259082,75.03086028,82.62386948,76.9258498,577.9280926,0,0.686512495,46.64532728,-0.686512495,133.3546727,0.977168114,0,647.3567736,76.9258498,697.7032037,10,12,8% +2018-10-29 21:00:00,53.84211029,200.3870232,572.9334514,828.3828398,84.17728576,693.4590613,607.5010169,85.95804438,81.63903001,4.319014365,141.4526042,0,141.4526042,2.538255747,138.9143485,0.939722101,3.497413333,0.886674477,-0.886674477,0.378523424,0.378523424,0.146923322,2.029214728,65.26652102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.47454094,1.838957648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.470159162,62.73666254,79.9447001,64.57562019,607.5010169,0,0.7333578,42.83136611,-0.7333578,137.1686339,0.981820457,0,676.4016259,64.57562019,718.6650778,10,13,6% +2018-10-29 22:00:00,59.50890847,216.4811577,477.1659702,788.0218541,77.32022294,647.9432204,569.3574089,78.58581158,74.98873294,3.597078639,118.0259039,0,118.0259039,2.331490003,115.6944139,1.038626387,3.778308971,1.415852337,-1.415852337,0.28802868,0.28802868,0.162040522,1.451050316,46.67076612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.08202244,1.68915657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051281015,44.86171561,73.13330345,46.55087218,569.3574089,0,0.722514745,43.73750536,-0.722514745,136.2624946,0.98079726,0,631.5574901,46.55087218,662.0241049,10,14,5% +2018-10-29 23:00:00,67.63541003,230.003847,331.6501415,700.096588,65.26415,524.2043584,458.4080445,65.79631394,63.29619508,2.500118856,82.38037144,0,82.38037144,1.967954922,80.41241652,1.180460596,4.014324423,2.283926258,-2.283926258,0.139579296,0.139579296,0.196786136,0.772282121,24.8392477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8427103,1.425776642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559515767,23.8764297,61.40222607,25.30220634,458.4080445,0,0.654778287,49.09715938,-0.654778287,130.9028406,0.973638274,0,507.7258433,25.30220634,524.2856314,10,15,3% +2018-10-29 00:00:00,77.39696597,241.3339411,152.5289494,496.4980171,44.19560455,309.6415661,265.6287944,44.01277166,42.86294401,1.149827649,38.31507025,0,38.31507025,1.332660542,36.98240971,1.350831887,4.212071869,4.421567705,-4.421567705,0,0,0.289752239,0.333165135,10.715736,0.18432529,1,0.222422199,0,0.935822779,0.974584742,0.724496596,1,41.46732364,0.965508026,0.029001023,0.312029739,0.921051098,0.645547694,0.961238037,0.922476074,0.231992859,10.30037304,41.69931649,11.26588106,216.6666898,0,0.535004744,57.65576687,-0.535004744,122.3442331,0.956542885,0,248.950297,11.26588106,256.3235908,10,16,3% +2018-10-29 01:00:00,88.01206716,251.1574827,4.181110862,32.12865051,3.0665997,15.0327386,12.02708921,3.005649384,2.974130404,0.03151898,1.106228031,0,1.106228031,0.092469295,1.013758736,1.536100353,4.383525014,28.80434327,-28.80434327,0,0,0.733441375,0.023117324,0.743532601,0.814666518,1,0.034703049,0,0.958033266,0.996795229,0.724496596,1,2.87068169,0.06699369,0.100412817,0.312029739,0.754987143,0.479483738,0.961238037,0.922476074,0.016272912,0.714711818,2.886954602,0.781705508,2.229022325,0,0.374341562,68.01637681,-0.374341562,111.9836232,0.916432144,0,4.929702309,0.781705508,5.44131293,10,17,10% +2018-10-29 02:00:00,99.78951684,260.1757221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741655628,4.540922984,-5.704541415,5.704541415,1,0.494312274,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171963359,80.09800742,-0.171963359,99.90199258,0.759240386,0,0,0,0,10,18,0% +2018-10-29 03:00:00,111.5779784,269.0895663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947403095,4.696498915,-2.389501814,2.389501814,1,0.938782566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045027524,92.58075968,0.045027524,87.41924032,0,0,0,0,0,10,19,0% +2018-10-29 04:00:00,123.3904689,278.735695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153569948,4.864855621,-1.330289469,1.330289469,1,0.757646587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.266754454,105.4712289,0.266754454,74.52877114,0,0.862561705,0,0,0,10,20,0% +2018-10-29 05:00:00,134.8556695,290.3871792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353675448,5.068212382,-0.765530439,0.765530439,1,0.661067105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478114542,118.562332,0.478114542,61.437668,0,0.945422549,0,0,0,10,21,0% +2018-10-29 06:00:00,145.3019883,306.355901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535998106,5.346919156,-0.38360182,0.38360182,1,0.595753464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664713733,131.6603675,0.664713733,48.33963252,0,0.974779649,0,0,0,10,22,0% +2018-10-29 07:00:00,153.2420014,330.5737876,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674577477,5.769601014,-0.082579227,0.082579227,1,0.544275569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813847363,144.4735507,0.813847363,35.52644931,0,0.988563418,0,0,0,10,23,0% +2018-10-30 08:00:00,155.8916216,4.366711991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.720822073,0.076213502,0.184626243,-0.184626243,1,0.498580743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915365381,156.2576694,0.915365381,23.74233061,0,0.995377004,0,0,0,10,0,0% +2018-10-30 09:00:00,151.6908301,36.37462491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.64750443,0.634856969,0.448521789,-0.448521789,1,0.453451946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962363416,164.2306301,0.962363416,15.76936988,0,0.998044575,0,0,0,10,1,0% +2018-10-30 10:00:00,142.9413215,58.20487758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.494796697,1.015866754,0.739215592,-0.739215592,1,0.403740378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951652719,162.110874,0.951652719,17.889126,0,0.997459825,0,0,0,10,2,0% +2018-10-30 11:00:00,132.1640192,72.83792458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306697287,1.271261604,1.102884835,-1.102884835,1,0.341549275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883977004,152.1258927,0.883977004,27.87410727,0,0.993437443,0,0,0,10,3,0% +2018-10-30 12:00:00,120.5814972,83.85507846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104544144,1.463547214,1.642920559,-1.642920559,1,0.249197727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763961474,139.8146884,0.763961474,40.1853116,0,0.984551673,0,0,0,10,4,0% +2018-10-30 13:00:00,108.7615082,93.24255824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898246417,1.627389644,2.705037512,-2.705037512,1,0.067565031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599797475,126.8553942,0.599797475,53.14460579,0,0.966638529,0,0,0,10,5,0% +2018-10-30 14:00:00,97.04325739,102.1273177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693724358,1.78245795,6.854404053,-6.854404053,1,0,#DIV/0!,0,0,0.39099344,1,0.144869555,0,0.945973068,0.984735032,0.724496596,1,0,0,0.056426841,0.312029739,0.85247835,0.576974946,0.961238037,0.922476074,0,0,0,0,0,0,-0.402684218,113.7460895,0.402684218,66.25391051,0,0.925833227,0,0,0,10,6,0% +2018-10-30 15:00:00,85.53641199,111.2930067,24.5463532,143.8169745,13.35372095,13.13609777,0,13.13609777,12.95105699,0.185040779,32.68185504,26.32764357,6.354211478,0.402663957,5.951547521,1.49289202,1.942429402,-9.624937376,9.624937376,0,0,0.544020566,0.100665989,3.237764248,1,0.149742952,0,0.103525343,0.961238037,1,0.47317197,0.748675374,12.4490486,0.28485281,0.115824807,0.027538589,0.724496596,0.448993192,0.997480565,0.958718602,0.072932166,3.122897868,12.52198077,3.407750679,0,22.3852645,-0.183063534,100.5482531,0.183063534,79.45174691,0,0.776870781,12.52198077,20.79820859,26.13399233,10,7,109% +2018-10-30 16:00:00,75.05477387,121.4307183,195.0605954,561.4278645,50.27086598,70.61632023,20.39085717,50.22546306,48.75501389,1.470449162,48.81055177,0,48.81055177,1.515852089,47.29469968,1.309952923,2.119365847,-2.335715631,2.335715631,0.929584587,0.929584587,0.257719228,1.393591715,44.82269998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.86517384,1.098229678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.009652453,43.08528414,47.8748263,44.18351382,20.39085717,0,0.036319639,87.91858021,-0.036319639,92.08141979,0,0,47.8748263,44.18351382,76.79205242,10,8,60% +2018-10-30 17:00:00,65.66744901,133.2406238,367.6094194,726.0808378,68.44082129,248.3958993,179.2476262,69.14827309,66.377078,2.771195082,91.19490305,0,91.19490305,2.063743281,89.13115976,1.146113197,2.325487584,-0.995672579,0.995672579,0.700423729,0.700423729,0.186178095,2.095572922,67.40082864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.80417215,1.495174982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518235448,64.78824021,65.3224076,66.28341519,179.2476262,0,0.246870069,75.70762405,-0.246870069,104.2923759,0.847464309,0,217.2283733,66.28341519,260.6095428,10,9,20% +2018-10-30 18:00:00,58.10848441,147.3618583,501.4076323,799.4374803,79.05472864,426.5398187,346.0890592,80.45075942,76.67093689,3.779822528,123.9558773,0,123.9558773,2.383791749,121.5720856,1.014184376,2.57194962,-0.351621477,0.351621477,0.590284504,0.590284504,0.157665587,2.475339769,79.61543591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.69902086,1.727049008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.793375237,76.52938532,75.4923961,78.25643432,346.0890592,0,0.432915729,64.34725757,-0.432915729,115.6527424,0.934504081,0,398.9140343,78.25643432,450.1313054,10,10,13% +2018-10-30 19:00:00,53.22788818,163.9932125,583.0208795,832.2614887,84.80103936,570.6908593,484.0518265,86.6390328,82.24397514,4.395057659,143.9172264,0,143.9172264,2.557064219,141.3601622,0.929001903,2.862221508,0.093181956,-0.093181956,0.514218637,0.514218637,0.145451119,2.570564093,82.67817748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.05603721,1.852584322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862364935,79.47340901,80.91840214,81.32599333,484.0518265,0,0.581610267,54.43611989,-0.581610267,125.5638801,0.964031779,0,547.5597455,81.32599333,600.7859817,10,11,10% +2018-10-30 20:00:00,51.81854114,182.273268,605.7393003,840.2553009,86.33207747,662.0000691,573.7049036,88.29516551,83.7288468,4.566318711,149.471737,0,149.471737,2.603230667,146.8685064,0.904404156,3.181268665,0.481975017,-0.481975017,0.447731107,0.447731107,0.142523487,2.403903763,77.31780837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48335233,1.886031757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.741620093,74.32081833,82.22497242,76.20685009,573.7049036,0,0.682774513,46.93916445,-0.682774513,133.0608355,0.976769381,0,642.6023561,76.20685009,692.4782154,10,12,8% +2018-10-30 21:00:00,54.15950817,200.2882163,567.7851119,826.6450847,83.75902,688.5540631,603.0404826,85.51358052,81.23337651,4.280204007,140.1917175,0,140.1917175,2.525643491,137.666074,0.945261739,3.495688827,0.895244421,-0.895244421,0.377057877,0.377057877,0.147518873,2.007217066,64.55900059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.08461137,1.829820112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.454221931,62.05656699,79.5388333,63.8863871,603.0404826,0,0.7295035,43.15521315,-0.7295035,136.8447869,0.981460233,0,671.3990858,63.8863871,713.2114485,10,13,6% +2018-10-30 22:00:00,59.80137676,216.3114191,472.1362243,785.7972897,76.88083284,642.8160166,564.6942622,78.12175436,74.56259207,3.55916229,116.7931346,0,116.7931346,2.31824077,114.4748938,1.043730922,3.775346474,1.429709291,-1.429709291,0.285659001,0.285659001,0.162836124,1.430710352,46.01656295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.67239963,1.679557546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03654478,44.23287063,72.70894441,45.91242818,564.6942622,0,0.718625872,44.05885392,-0.718625872,135.9411461,0.980422767,0,626.3480552,45.91242818,656.3968212,10,14,5% +2018-10-30 23:00:00,67.89889207,229.7949848,326.8753401,696.6498193,64.76629385,518.7550607,453.4775852,65.27747552,62.81335113,2.464124386,81.20765336,0,81.20765336,1.952942722,79.25471064,1.185059225,4.01067909,2.311026963,-2.311026963,0.134944803,0.134944803,0.198137595,0.754871593,24.27926528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37858233,1.414900354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.546901899,23.33815329,60.92548423,24.75305365,453.4775852,0,0.650940505,49.38745049,-0.650940505,130.6125495,0.973188065,0,502.2444578,24.75305365,518.4448363,10,15,3% +2018-10-30 00:00:00,77.63389276,241.1044792,148.3306218,489.5176936,43.49671248,303.3883923,260.0850873,43.303305,42.18512612,1.118178882,37.27606294,0,37.27606294,1.311586367,35.96447657,1.35496704,4.208067004,4.506262592,-4.506262592,0,0,0.293241624,0.327896592,10.54628153,0.193849133,1,0.218374626,0,0.936385335,0.975147298,0.724496596,1,40.81973387,0.950239858,0.030373557,0.312029739,0.917478206,0.641974802,0.961238037,0.922476074,0.228013026,10.13748695,41.04774689,11.08772681,209.6678186,0,0.531308859,57.90606811,-0.531308859,122.0939319,0.955892779,0,241.4677008,11.08772681,248.7243963,10,16,3% +2018-10-30 01:00:00,88.21366509,250.9141101,3.294725392,26.21028527,2.477688549,12.15452632,9.726712191,2.427814129,2.402977098,0.024837032,0.873555768,0,0.873555768,0.074711451,0.798844316,1.539618901,4.379277362,32.06001522,-32.06001522,0,0,0.75201671,0.018677863,0.600744274,0.832001435,1,0.031181391,0,0.958371675,0.997133638,0.724496596,1,2.318593264,0.054128192,0.101938417,0.312029739,0.751883707,0.476380302,0.961238037,0.922476074,0.013179091,0.577458247,2.331772355,0.631586439,1.634073686,0,0.371102874,68.21634954,-0.371102874,111.7836505,0.915266471,0,3.82738521,0.631586439,4.240745903,10,17,11% +2018-10-30 02:00:00,99.99488443,259.9177017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745239969,4.536419679,-5.589449275,5.589449275,1,0.513994189,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16870258,80.28760712,-0.16870258,99.71239288,0.753620419,0,0,0,0,10,18,0% +2018-10-30 03:00:00,111.7778682,268.8115946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950891831,4.691647393,-2.369282678,2.369282678,1,0.93532489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047990116,92.75068763,0.047990116,87.24931237,0,0,0,0,0,10,19,0% +2018-10-30 04:00:00,123.5940549,278.4296792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157123193,4.859514637,-1.323904548,1.323904548,1,0.756554701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269399061,105.6285106,0.269399061,74.3714894,0,0.864401729,0,0,0,10,20,0% +2018-10-30 05:00:00,135.0754487,290.0462974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.357511319,5.062262873,-0.763511314,0.763511314,1,0.660721814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480443226,118.7143538,0.480443226,61.28564622,0,0.945929431,0,0,0,10,21,0% +2018-10-30 06:00:00,145.555565,305.9944375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540423854,5.340610427,-0.383579907,0.383579907,1,0.595749717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666750283,131.8167428,0.666750283,48.18325716,0,0.975009406,0,0,0,10,22,0% +2018-10-30 07:00:00,153.5450825,330.3057757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67986724,5.764923324,-0.083790797,0.083790797,1,0.54448276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81563566,144.650263,0.81563566,35.34973696,0,0.988698119,0,0,0,10,23,0% +2018-10-31 08:00:00,156.2158812,4.445325201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726481471,0.077585561,0.182381448,-0.182381448,1,0.498964625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916966371,156.4865395,0.916966371,23.51346045,0,0.995472373,0,0,0,10,0,0% +2018-10-31 09:00:00,151.9699846,36.72992173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652376596,0.641058068,0.445121036,-0.445121036,1,0.454033509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963850914,164.5473372,0.963850914,15.45266276,0,0.998124757,0,0,0,10,1,0% +2018-10-31 10:00:00,143.167994,58.59356022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498752879,1.022650546,0.734174291,-0.734174291,1,0.404602492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953108314,162.3844015,0.953108314,17.61559853,0,0.997540065,0,0,0,10,2,0% +2018-10-31 11:00:00,132.3595001,73.18935061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310109072,1.277395146,1.094996909,-1.094996909,1,0.34289819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885484427,152.3111941,0.885484427,27.68880593,0,0.993533733,0,0,0,10,3,0% +2018-10-31 12:00:00,120.7634355,84.16846408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107719565,1.469016825,1.628848464,-1.628848464,1,0.251604197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765600819,139.9604732,0.765600819,40.03952681,0,0.984691815,0,0,0,10,4,0% +2018-10-31 13:00:00,108.942053,93.52816908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901397519,1.632374494,2.671540365,-2.671540365,1,0.07329338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601639664,126.9874204,0.601639664,53.01257956,0,0.966893777,0,0,0,10,5,0% +2018-10-31 14:00:00,97.2315149,102.3941702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697010072,1.787115405,6.654536932,-6.654536932,1,0,#DIV/0!,0,0,0.378047237,1,0.149157337,0,0.945446979,0.984208943,0.724496596,1,0,0,0.054843523,0.312029739,0.856275196,0.580771792,0.961238037,0.922476074,0,0,0,0,0,0,-0.404786099,113.8777237,0.404786099,66.12227633,0,0.926477971,0,0,0,10,6,0% +2018-10-31 15:00:00,85.73390818,111.5465498,22.37936316,133.6906039,12.4343103,12.22807506,0,12.22807506,12.05936996,0.168705093,30.58225053,24.7811745,5.801076031,0.374940333,5.426135697,1.496338978,1.946854563,-10.0330402,10.0330402,0,0,0.555615019,0.093735083,3.014842491,1,0.197370337,0,0.099342588,0.961238037,1,0.481672001,0.757175405,11.59192511,0.263507768,0.115824807,0.037185067,0.724496596,0.448993192,0.996554942,0.957792979,0.067910749,2.910659907,11.65983586,3.174167675,0,19.89010573,-0.185362125,100.6822458,0.185362125,79.31775417,0,0.780257733,11.65983586,18.69357647,23.89440779,10,7,105% +2018-10-31 16:00:00,75.28022201,121.6712582,190.9838105,556.0847735,49.6872175,68.32322671,18.69454551,49.6286812,48.18896457,1.439716636,47.80448893,0,47.80448893,1.498252934,46.306236,1.313887736,2.12356406,-2.360637275,2.360637275,0.933846439,0.933846439,0.260164552,1.369252945,44.0398815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.3210657,1.08547915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.992019098,42.33280923,47.31308479,43.41828838,18.69454551,0,0.033618158,88.07345845,-0.033618158,91.92654155,0,0,47.31308479,43.41828838,75.72948618,10,8,60% +2018-10-31 17:00:00,65.92222474,133.4601556,363.0361206,723.2032489,67.9863018,245.0242989,176.3513154,68.67298358,65.93626396,2.736719624,90.07234837,0,90.07234837,2.050037842,88.02231053,1.150559872,2.329319136,-0.999919146,0.999919146,0.701149935,0.701149935,0.187271453,2.072014271,66.64310146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.38044492,1.485245438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.501167286,64.05988402,64.88161221,65.54512946,176.3513154,0,0.243847515,75.88626429,-0.243847515,104.1137357,0.844953826,0,213.8903309,65.54512946,256.7883072,10,9,20% +2018-10-31 18:00:00,58.39506628,147.5395439,496.544685,797.4446655,78.63643498,422.5935961,342.5851762,80.00841991,76.26525633,3.743163577,122.7641863,0,122.7641863,2.371178652,120.3930077,1.019186174,2.575050818,-0.350654563,0.350654563,0.590119152,0.590119152,0.158367288,2.451887694,78.86113654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.30906528,1.717910862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776384288,75.80432407,75.08544956,77.52223493,342.5851762,0,0.429603697,64.55758763,-0.429603697,115.4424124,0.933613664,0,394.9276513,77.52223493,445.6644036,10,10,13% +2018-10-31 19:00:00,53.54110524,164.0957437,577.9791283,830.609691,84.39270069,566.3436907,480.1386905,86.2050002,81.84794939,4.357050809,142.6824826,0,142.6824826,2.544751302,140.1377313,0.934468572,2.864011016,0.096668078,-0.096668078,0.513622475,0.513622475,0.146013405,2.547306679,81.93013909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.67536219,1.843663655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.845515017,78.75436606,80.52087721,80.59802972,480.1386905,0,0.578055729,54.68609114,-0.578055729,125.3139089,0.963503149,0,543.1360177,80.59802972,595.8858162,10,11,10% +2018-10-31 20:00:00,52.14223518,182.2726043,600.6192951,838.6717529,85.92361769,657.3524498,569.4920243,87.86042554,83.33270359,4.527721949,148.2180159,0,148.2180159,2.590914098,145.6271018,0.910053683,3.181257081,0.487605678,-0.487605678,0.446768208,0.446768208,0.143058371,2.381186232,76.5871345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1025644,1.877108444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725161319,73.61846681,81.82772572,75.49557526,569.4920243,0,0.679040426,47.23129603,-0.679040426,132.768704,0.976366681,0,637.8607636,75.49557526,687.2711076,10,12,8% +2018-10-31 21:00:00,54.47253229,200.1875933,562.6893219,824.9040041,83.34323293,683.6760562,598.6041395,85.07191674,80.83012695,4.241789789,138.9436467,0,138.9436467,2.513105977,136.4305407,0.95072504,3.493932625,0.903749653,-0.903749653,0.375603397,0.375603397,0.148115896,1.985524362,63.86128867,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69699255,1.820736725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.438505641,61.38589975,79.13549819,63.20663647,598.6041395,0,0.725665213,43.47578616,-0.725665213,136.5242138,0.981097703,0,666.4246445,63.20663647,707.7921239,10,13,6% +2018-10-31 22:00:00,60.08925226,216.1414024,467.173448,783.5723849,76.44480684,637.7326528,560.0711881,77.66146465,74.13971386,3.521750786,115.5767042,0,115.5767042,2.305092978,113.2716112,1.048755297,3.772379121,1.443509449,-1.443509449,0.283299035,0.283299035,0.163632602,1.41072419,45.3737393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26591301,1.670032015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022064874,43.61496409,72.28797788,45.2849961,560.0711881,0,0.714766369,44.3759445,-0.714766369,135.6240555,0.980047072,0,621.1841062,45.2849961,650.8222304,10,14,5% +2018-10-31 23:00:00,68.15770369,229.5865876,322.1813144,693.2040359,64.27256813,513.3673286,448.6040768,64.76325189,62.33451306,2.428738838,80.05464484,0,80.05464484,1.93805507,78.11658977,1.18957634,4.007041873,2.338160785,-2.338160785,0.130304646,0.130304646,0.199491917,0.737855327,23.73196369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.91830496,1.4041143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534573673,22.81206618,60.45287863,24.21618049,448.6040768,0,0.647145795,49.6732489,-0.647145795,130.3267511,0.972737658,0,496.8269574,24.21618049,512.6759632,10,15,3% +2018-10-31 00:00:00,77.86605653,240.875758,144.229711,482.5344629,42.80203351,297.2173189,254.6186601,42.59865876,41.51139428,1.087264485,36.26080251,0,36.26080251,1.290639233,34.97016327,1.359019062,4.204075065,4.592286015,-4.592286015,0,0,0.296762943,0.322659808,10.37784857,0.203297374,1,0.214409346,0,0.936933001,0.975694964,0.724496596,1,40.17534003,0.935063731,0.031724005,0.312029739,0.913977283,0.638473879,0.961238037,0.922476074,0.224081751,9.975582785,40.39942178,10.91064652,202.8553551,0,0.527669378,58.15188105,-0.527669378,121.8481189,0.955243696,0,234.1757209,10.91064652,241.3165208,10,16,3% +2018-10-31 01:00:00,88.40926053,250.6715246,2.550077855,21.09019796,1.964612384,9.684750627,7.760154991,1.924595636,1.905372072,0.019223564,0.677536212,0,0.677536212,0.059240312,0.6182959,1.543032685,4.375043445,36.00660195,-36.00660195,0,0,0.770412707,0.014810078,0.476343018,0.849109851,1,0.027765547,0,0.95869708,0.997459043,0.724496596,1,1.837818779,0.042919404,0.103426208,0.312029739,0.748875206,0.473371802,0.961238037,0.922476074,0.010475234,0.457879028,1.848294013,0.500798432,1.170930941,0,0.36795079,68.41070744,-0.36795079,111.5892926,0.914112263,0,2.918656346,0.500798432,3.246418904,10,17,11% +2018-10-31 02:00:00,100.1952011,259.6603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748736153,4.531928424,-5.481590186,5.481590186,1,0.53243918,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.165518687,80.47263264,-0.165518687,99.52736736,0.747919305,0,0,0,0,10,18,0% +2018-10-31 03:00:00,111.9724595,268.5340453,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954288091,4.686803245,-2.349967843,2.349967843,1,0.932021859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.050869522,92.91586741,0.050869522,87.08413259,0,0,0,0,0,10,19,0% +2018-10-31 04:00:00,123.7920332,278.1234798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160578567,4.85417045,-1.317813287,1.317813287,1,0.755513034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271957553,105.7807859,0.271957553,74.2192141,0,0.866147779,0,0,0,10,20,0% +2018-10-31 05:00:00,135.2892941,289.7038392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361243625,5.056285849,-0.761626546,0.761626546,1,0.6603995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482686437,118.8610049,0.482686437,61.13899508,0,0.946413083,0,0,0,10,21,0% +2018-10-31 06:00:00,145.8030928,305.6282806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544744028,5.334219783,-0.383629807,0.383629807,1,0.59575825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668705526,131.9672351,0.668705526,48.03276489,0,0.975228672,0,0,0,10,22,0% +2018-10-31 07:00:00,153.8429072,330.0286154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685065262,5.760085965,-0.085042458,0.085042458,1,0.544696806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817350048,144.8203965,0.817350048,35.1796035,0,0.9888267,0,0,0,10,23,0% +2018-11-01 08:00:00,156.5365903,4.517108935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7320789,0.078838424,0.180116873,-0.180116873,1,0.49935189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918503578,156.7082864,0.918503578,23.29171356,0,0.995563631,0,0,0,11,0,0% +2018-11-01 09:00:00,152.2465802,37.08165348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6572041,0.647196945,0.441717824,-0.441717824,1,0.454615493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965286778,164.8591771,0.965286778,15.14082291,0,0.998201922,0,0,0,11,1,0% +2018-11-01 10:00:00,143.393022,58.97801556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502680358,1.029360558,0.72915175,-0.72915175,1,0.405461397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954525611,162.6547431,0.954525611,17.3452569,0,0.997617959,0,0,0,11,2,0% +2018-11-01 11:00:00,132.5541523,73.5361941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313506395,1.283448706,1.087166009,-1.087166009,1,0.344237353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886967157,152.494581,0.886967157,27.505419,0,0.993628127,0,0,0,11,3,0% +2018-11-01 12:00:00,120.9451117,84.47723574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110890413,1.474405907,1.614936022,-1.614936022,1,0.253983365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767228407,140.1056505,0.767228407,39.89434954,0,0.984830359,0,0,0,11,4,0% +2018-11-01 13:00:00,109.1226695,93.80913104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904549871,1.637278205,2.638683204,-2.638683204,1,0.078912286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60348147,127.1196486,0.60348147,52.88035139,0,0.967147415,0,0,0,11,5,0% +2018-11-01 14:00:00,97.41997386,102.6562095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700299301,1.791688853,6.464805397,-6.464805397,1,0,#DIV/0!,0,0,0.365237812,1,0.153467403,0,0.944913961,0.983675924,0.724496596,1,0,0,0.053260476,0.312029739,0.860091277,0.584587873,0.961238037,0.922476074,0,0,0,0,0,0,-0.406896621,114.0100339,0.406896621,65.98996611,0,0.927118665,0,0,0,11,6,0% +2018-11-01 15:00:00,85.9311265,111.7949423,20.29621443,123.6649083,11.52150108,11.32708675,0,11.32708675,11.17408532,0.153001438,28.47651387,23.20804593,5.268467938,0.347415768,4.921052171,1.499781087,1.95118983,-10.48058323,10.48058323,0,0,0.567667489,0.086853942,2.793521329,1,0.243821443,0,0.095126559,0.961238037,1,0.490381883,0.765885288,10.74095583,0.242743444,0.115824807,0.047055788,0.724496596,0.448993192,0.995584802,0.956822839,0.062925385,2.699306573,10.80388122,2.942050018,0,17.54942669,-0.187668808,100.8167697,0.187668808,79.18323035,0,0.7835732,10.80388122,16.69331045,21.72931904,11,7,101% +2018-11-01 16:00:00,75.50546519,121.9061414,186.9158898,550.6392409,49.0976851,66.0408681,17.01460843,49.02625968,47.61720875,1.409050931,46.80039787,0,46.80039787,1.480476357,45.31992151,1.317818971,2.127663546,-2.38651359,2.38651359,0.93827155,0.93827155,0.262672613,1.344919278,43.25722711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77147225,1.072600081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974389439,41.58049207,46.74586169,42.65309215,17.01460843,0,0.030899738,88.22929356,-0.030899738,91.77070644,0,0,46.74586169,42.65309215,74.66145744,11,8,60% +2018-11-01 17:00:00,66.17621288,133.6734624,358.4708666,720.28426,67.52996082,241.6466563,173.4506682,68.19598815,65.49368334,2.702304811,88.95168932,0,88.95168932,2.036277478,86.91541184,1.154992801,2.333042042,-1.004388645,1.004388645,0.701914264,0.701914264,0.1883834,2.04853261,65.88785052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.9550196,1.475276101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484154902,63.33390809,64.4391745,64.80918419,173.4506682,0,0.240808633,76.06572855,-0.240808633,103.9342715,0.842366248,0,210.5481631,64.80918419,252.964478,11,9,20% +2018-11-01 18:00:00,58.67993308,147.710724,491.6976937,795.4313048,78.21791292,418.6421957,339.0762166,79.56597916,75.85935425,3.706624909,121.5763572,0,121.5763572,2.358558668,119.2177985,1.024158037,2.578038474,-0.349796614,0.349796614,0.589972434,0.589972434,0.159077242,2.428575036,78.11132132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91889675,1.708767726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759494346,75.08357316,74.6783911,76.79234089,339.0762166,0,0.426279698,64.76830895,-0.426279698,115.2316911,0.932706119,0,390.9368533,76.79234089,441.1959045,11,10,13% +2018-11-01 19:00:00,53.85145659,164.1924104,572.9648163,828.946625,83.98519339,561.9991988,476.2272181,85.77198075,81.45272994,4.319250807,141.4544167,0,141.4544167,2.532463453,138.9219533,0.939885224,2.865698169,0.10007526,-0.10007526,0.513039812,0.513039812,0.146580019,2.524249842,81.18855198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.29546222,1.834761151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828810418,78.04152432,80.12427264,79.87628547,476.2272181,0,0.574496842,54.93559667,-0.574496842,125.0644033,0.96296732,0,538.7155204,79.87628547,590.9929517,11,11,10% +2018-11-01 20:00:00,52.46203667,182.2679251,595.5402509,837.0822868,85.51692953,652.7196848,565.2919722,87.42771255,82.93827859,4.489433969,146.9742797,0,146.9742797,2.578650949,144.3956288,0.915635272,3.181175413,0.493164893,-0.493164893,0.445817526,0.445817526,0.143595549,2.358729135,75.86483707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72342809,1.868223835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708891229,72.92416705,81.43231932,74.79239088,565.2919722,0,0.675312309,47.52159248,-0.675312309,132.4784075,0.975960183,0,633.1347758,74.79239088,682.0848998,11,12,8% +2018-11-01 21:00:00,54.78107044,200.085159,557.6489291,823.1609744,82.93013845,678.828083,594.1948011,84.63328198,80.4294888,4.20379318,137.7090888,0,137.7090888,2.500649654,135.2084391,0.956110047,3.49214481,0.91218259,-0.91218259,0.37416128,0.37416128,0.148713885,1.96414748,63.17373467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.31188392,1.811712162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423018163,60.72499669,78.73490208,62.53670886,594.1948011,0,0.721845203,43.79296527,-0.721845203,136.2070347,0.980733072,0,661.4813945,62.53670886,702.4104197,11,13,6% +2018-11-01 22:00:00,60.372423,215.9711122,462.2803967,781.3491506,76.01239195,632.696471,555.4912682,77.20520277,73.72033787,3.484864898,114.3772883,0,114.3772883,2.292054073,112.0852343,1.053697559,3.769406997,1.457240016,-1.457240016,0.28095097,0.28095097,0.164429192,1.391100988,44.74258965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.86279285,1.660585373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.00784793,43.00827904,71.87064078,44.66886442,555.4912682,0,0.710938596,44.68866651,-0.710938596,135.3113335,0.979670438,0,616.0690149,44.66886442,645.3038933,11,14,5% +2018-11-01 23:00:00,68.41173558,229.3786763,317.5705582,689.7627933,63.78330292,508.044952,443.79097,64.25398201,61.860001,2.39398101,78.92196045,0,78.92196045,1.923301918,76.99865853,1.194010033,4.003413135,2.365300957,-2.365300957,0.125663403,0.125663403,0.200847658,0.721239115,23.19752917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.46218592,1.393425693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.522535283,22.2983474,59.9847212,23.6917731,443.79097,0,0.643396504,49.95444293,-0.643396504,130.0455571,0.972287424,0,491.4771,23.6917731,506.9828917,11,15,3% +2018-11-01 00:00:00,78.09335407,240.6478189,140.2280955,475.5572553,42.11222368,291.1335851,249.2341017,41.89948338,40.84238476,1.057098616,35.26976417,0,35.26976417,1.269838922,33.99992525,1.362986152,4.200096778,4.679575411,-4.679575411,0,0,0.300312313,0.31745973,10.21059619,0.212660939,1,0.210528103,0,0.937465741,0.976227704,0.724496596,1,39.53479738,0.919993976,0.033051482,0.312029739,0.910549909,0.635046505,0.961238037,0.922476074,0.220201281,9.814813437,39.75499866,10.73480741,196.2317436,0,0.524088528,58.39309638,-0.524088528,121.6069036,0.954596271,0,227.0770893,10.73480741,234.102806,11,16,3% +2018-11-01 01:00:00,88.5987177,250.4297883,1.934598789,16.7316572,1.525433611,7.599200948,6.105180966,1.494019982,1.479436159,0.014583823,0.515063326,0,0.515063326,0.045997452,0.469065874,1.546339337,4.370824351,40.87880345,-40.87880345,0,0,0.788501275,0.011499363,0.36985904,0.865961327,1,0.024457678,0,0.959009534,0.997771497,0.724496596,1,1.426479943,0.033324997,0.104874593,0.312029739,0.745963489,0.470460084,0.961238037,0.922476074,0.008153455,0.355522577,1.434633398,0.388847574,0.818330356,0,0.364888002,68.59930968,-0.364888002,111.4006903,0.912971652,0,2.181745815,0.388847574,2.436238775,11,17,12% +2018-11-01 02:00:00,100.3903754,259.4038162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752142588,4.527450686,-5.380439891,5.380439891,1,0.549736899,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162413432,80.65299172,-0.162413432,99.34700828,0.742143689,0,0,0,0,11,18,0% +2018-11-01 03:00:00,112.1616652,268.2570283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957590353,4.681968386,-2.331530452,2.331530452,1,0.928868879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.053664338,93.0762178,0.053664338,86.9237822,0,0,0,0,0,11,19,0% +2018-11-01 04:00:00,123.9843159,277.817239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163934534,4.848825539,-1.312011692,1.312011692,1,0.754520903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27442891,105.9279838,0.27442891,74.07201619,0,0.867803452,0,0,0,11,20,0% +2018-11-01 05:00:00,135.497107,289.359981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364870645,5.050284392,-0.75987539,0.75987539,1,0.660100035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484843547,119.0022226,0.484843547,60.99777745,0,0.94687395,0,0,0,11,21,0% +2018-11-01 06:00:00,146.0444453,305.2575912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548956426,5.327750033,-0.383751378,0.383751378,1,0.59577904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670579207,132.111784,0.670579207,47.88821596,0,0.975437593,0,0,0,11,22,0% +2018-11-01 07:00:00,154.1353233,329.7422066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690168885,5.755087188,-0.086334105,0.086334105,1,0.544917691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818990606,144.9838768,0.818990606,35.01612316,0,0.988949239,0,0,0,11,23,0% +2018-11-02 08:00:00,156.8536469,4.581688468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737612582,0.079965549,0.177832757,-0.177832757,1,0.499742497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91997734,156.9227694,0.91997734,23.07723062,0,0.995650835,0,0,0,11,0,0% +2018-11-02 09:00:00,152.5205793,37.42949039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661986286,0.653267845,0.438312616,-0.438312616,1,0.455197818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966671523,165.1659752,0.966671523,14.83402478,0,0.998276122,0,0,0,11,1,0% +2018-11-02 10:00:00,143.6163976,59.35799122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506578998,1.035992384,0.724148744,-0.724148744,1,0.406316961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955905205,162.9218746,0.955905205,17.07812543,0,0.997693558,0,0,0,11,2,0% +2018-11-02 11:00:00,132.7479707,73.87827025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316889164,1.289419061,1.079393293,-1.079393293,1,0.345566565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888425765,152.676091,0.888425765,27.32390899,0,0.993720678,0,0,0,11,3,0% +2018-11-02 12:00:00,121.1265112,84.78124867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114056432,1.479711933,1.601184379,-1.601184379,1,0.256335034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768844681,140.2502553,0.768844681,39.74974473,0,0.984967359,0,0,0,11,4,0% +2018-11-02 13:00:00,109.3033282,94.08532263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90770296,1.642098658,2.60645847,-2.60645847,1,0.08442304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605323114,127.2520965,0.605323114,52.74790347,0,0.967399487,0,0,0,11,5,0% +2018-11-02 14:00:00,97.60858731,102.9133296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703591227,1.796176446,6.284525874,-6.284525874,1,0,#DIV/0!,0,0,0.352567907,1,0.157798079,0,0.944374167,0.98313613,0.724496596,1,0,0,0.051678324,0.312029739,0.863925058,0.588421654,0.961238037,0.922476074,0,0,0,0,0,0,-0.409015711,114.1430183,0.409015711,65.85698171,0,0.927755307,0,0,0,11,6,0% +2018-11-02 15:00:00,86.12796505,112.0380927,18.30164493,113.7781563,10.61839597,10.43617768,0,10.43617768,10.29821215,0.13796553,26.37349756,21.61586805,4.757629518,0.320183816,4.437445702,1.503216568,1.955433605,-10.97323848,10.97323848,0,0,0.580188066,0.080045954,2.574553038,1,0.289110301,0,0.090879775,0.961238037,1,0.499299512,0.774802916,9.899033232,0.222576434,0.115824807,0.05715005,0.724496596,0.448993192,0.99456873,0.955806766,0.057993021,2.489626899,9.957026253,2.712203333,0,15.36649792,-0.189982583,100.9517678,0.189982583,79.04823223,0,0.78681798,9.957026253,14.80284019,19.6451891,11,7,97% +2018-11-02 16:00:00,75.73041507,122.1352955,182.8588893,545.0911029,48.50233637,63.77088239,15.35260287,48.41827952,47.03981197,1.378467548,45.79877918,0,45.79877918,1.462524396,44.33625478,1.321745087,2.131663039,-2.413381264,2.413381264,0.942866192,0.942866192,0.265244619,1.320600345,42.47504663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.21645652,1.059593946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956770454,40.82863043,46.17322697,41.88822438,15.35260287,0,0.028165205,88.38603917,-0.028165205,91.61396083,0,0,46.17322697,41.88822438,73.58823206,11,8,59% +2018-11-02 17:00:00,66.42930626,133.8805011,353.9158575,717.3245044,67.07194161,238.2646613,170.547219,67.71744233,65.0494751,2.667967228,87.83346365,0,87.83346365,2.022466509,85.81099714,1.159410114,2.336655548,-1.009087021,1.009087021,0.702717733,0.702717733,0.189513807,2.02513874,65.13542325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.52802974,1.465270101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467206123,62.61064638,63.99523587,64.07591648,170.547219,0,0.237754626,76.24594565,-0.237754626,103.7540543,0.839699149,0,207.2035906,64.07591648,249.1399964,11,9,20% +2018-11-02 18:00:00,58.96296489,147.8753956,486.8691439,793.3982514,77.79933133,414.6876837,335.564064,79.1236197,75.45339444,3.670225261,120.3929976,0,120.3929976,2.345936888,118.0470607,1.029097874,2.580912536,-0.349051389,0.349051389,0.589844993,0.589844993,0.159795157,2.405413433,77.36636454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52867274,1.69962329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742713844,74.36749237,74.27138659,76.06711566,335.564064,0,0.422945303,64.97932305,-0.422945303,115.0206769,0.931781404,0,386.9437413,76.06711566,436.7281471,11,10,13% +2018-11-02 19:00:00,54.15882106,164.2832424,567.9806495,827.2732553,83.57870191,557.6598384,472.3196646,85.34017373,81.05849568,4.281678052,140.2336906,0,140.2336906,2.520206235,137.7134843,0.945249746,2.867283486,0.103399462,-0.103399462,0.51247134,0.51247134,0.147150615,2.501405482,80.45379881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.91650926,1.825880838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.812259756,77.33525163,79.72876901,79.16113247,472.3196646,0,0.570935494,55.18451361,-0.570935494,124.8154864,0.962424432,0,534.3007541,79.16113247,586.1101321,11,11,10% +2018-11-02 20:00:00,52.77783056,182.25926,590.5049937,835.4880272,85.1122115,648.104567,561.1073266,86.99724037,82.5457643,4.451476073,145.7412196,0,145.7412196,2.566447207,143.1747724,0.921146915,3.181024178,0.498647433,-0.498647433,0.444879956,0.444879956,0.144134618,2.336544053,75.15128855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.34612842,1.859382265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.692818212,72.23827707,81.03894664,74.09765934,561.1073266,0,0.671592301,47.80992138,-0.671592301,132.1900786,0.97555007,0,628.4272382,74.09765934,676.9226743,11,12,8% +2018-11-02 21:00:00,55.08501161,199.9809268,552.6667622,821.4174274,82.51995255,674.013217,589.81531,84.19790701,80.03167151,4.166235501,136.4887361,0,136.4887361,2.488281036,134.0004551,0.961414821,3.490325614,0.920535557,-0.920535557,0.372732838,0.372732838,0.149312313,1.943097028,62.49667978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.92948681,1.80275114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407767182,60.07418578,78.33725399,61.87693692,589.81531,0,0.718045771,44.10662952,-0.718045771,135.8933705,0.980366556,0,656.5724581,61.87693692,697.0696758,11,13,6% +2018-11-02 22:00:00,60.65077977,215.8005616,457.4597702,779.1296646,75.58383619,627.7108084,550.9575788,76.75322964,73.30470466,3.44852498,113.1955491,0,113.1955491,2.279131536,110.9164176,1.058555801,3.766430327,1.470887891,-1.470887891,0.278617046,0.278617046,0.1652251,1.371849503,44.1233957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.4632704,1.651223039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993900295,42.41308627,71.45717069,44.06430931,550.9575788,0,0.707144913,44.99691016,-0.707144913,135.0030898,0.979293135,0,611.0061452,44.06430931,639.8453543,11,14,5% +2018-11-02 23:00:00,68.66088249,229.1712792,313.0454727,686.329762,63.29883078,502.7916871,439.0416806,63.75000649,61.39013749,2.359869004,77.81019247,0,77.81019247,1.908693296,75.90149918,1.198358467,3.999793373,2.392419508,-2.392419508,0.121025858,0.121025858,0.20220331,0.705028184,22.67612992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.01053524,1.382841795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510790519,21.79715861,59.52132576,23.1800004,439.0416806,0,0.639694947,50.23092379,-0.639694947,129.7690762,0.971837744,0,486.1986023,23.1800004,501.369449,11,15,3% +2018-11-02 00:00:00,78.31568723,240.4207103,136.327495,468.5953124,41.42795543,285.1423864,243.9359425,41.20644397,40.17874972,1.027694243,34.30338523,0,34.30338523,1.249205709,33.05417952,1.366866598,4.196132985,4.768059377,-4.768059377,0,0,0.303885547,0.312301427,10.04468743,0.221930654,1,0.206732561,0,0.937983536,0.976745499,0.724496596,1,38.89877654,0.905045284,0.034355123,0.312029739,0.907197595,0.631694191,0.961238037,0.922476074,0.216373935,9.655335627,39.11515047,10.56038091,189.7990792,0,0.520568465,58.62960927,-0.520568465,121.3703907,0.953951155,0,220.1742012,10.56038091,227.0857593,11,16,3% +2018-11-02 01:00:00,88.78192106,250.1889701,1.434781595,13.0836561,1.156650716,5.867785348,4.735195929,1.132589419,1.121773429,0.01081599,0.382756696,0,0.382756696,0.034877287,0.347879409,1.549536839,4.36662128,47.03047866,-47.03047866,0,0,0.806151068,0.008719322,0.280443357,0.882526137,1,0.021259604,0,0.959309119,0.998071083,0.724496596,1,1.081235496,0.025268475,0.106282114,0.312029739,0.743150089,0.467646685,0.961238037,0.922476074,0.006197569,0.269572822,1.087433064,0.294841298,0.556261759,0,0.361916875,68.78203536,-0.361916875,111.2179646,0.911846729,0,1.594658529,0.294841298,1.787626262,11,17,12% +2018-11-02 02:00:00,100.5803224,259.1481261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755457789,4.52298805,-5.285526091,5.285526091,1,0.565968115,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.159388454,80.82859828,-0.159388454,99.17140172,0.736300992,0,0,0,0,11,18,0% +2018-11-02 03:00:00,112.3454049,267.980661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960797215,4.677144866,-2.313944747,2.313944747,1,0.925861547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056373284,93.23166447,0.056373284,86.76833553,0,0,0,0,0,11,19,0% +2018-11-02 04:00:00,124.1708224,277.5111088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167189686,4.843482559,-1.306495705,1.306495705,1,0.753577614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276812239,106.0700409,0.276812239,73.92995907,0,0.869372149,0,0,0,11,20,0% +2018-11-02 05:00:00,135.6987964,289.0149147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368390788,5.044261849,-0.758256955,0.758256955,1,0.659823266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486914052,119.1379522,0.486914052,60.86204784,0,0.947312473,0,0,0,11,21,0% +2018-11-02 06:00:00,146.2795029,304.8825556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553058954,5.321204427,-0.383944337,0.383944337,1,0.595812038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672371184,132.2503387,0.672371184,47.74966125,0,0.975636313,0,0,0,11,22,0% +2018-11-02 07:00:00,154.42218,329.4464788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695175479,5.749925765,-0.087665496,0.087665496,1,0.545145372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820557498,145.1406405,0.820557498,34.85935953,0,0.989065818,0,0,0,11,23,0% +2018-11-03 08:00:00,157.166947,4.638693991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7430807,0.080960483,0.175529477,-0.175529477,1,0.500136381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921388058,157.1298576,0.921388058,22.87014239,0,0.995734048,0,0,0,11,0,0% +2018-11-03 09:00:00,152.7919414,37.77310301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666722447,0.659265016,0.434906025,-0.434906025,1,0.455780379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968005697,165.4675538,0.968005697,14.53244618,0,0.998347411,0,0,0,11,1,0% +2018-11-03 10:00:00,143.8381088,59.73323734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.510448588,1.042541665,0.719166222,-0.719166222,1,0.407169022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957247689,163.1857709,0.957247689,16.81422906,0,0.997766915,0,0,0,11,2,0% +2018-11-03 11:00:00,132.9409446,74.21539726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320257194,1.295303038,1.07168015,-1.07168015,1,0.34688559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889860785,152.8557584,0.889860785,27.14424157,0,0.993811436,0,0,0,11,3,0% +2018-11-03 12:00:00,121.3076131,85.08036114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117217257,1.484932431,1.58759503,-1.58759503,1,0.25865895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770450018,140.3943173,0.770450018,39.60568268,0,0.985102864,0,0,0,11,4,0% +2018-11-03 13:00:00,109.4839933,94.35662559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910856162,1.646833788,2.574859559,-2.574859559,1,0.089826772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607164731,127.3847757,0.607164731,52.61522433,0,0.967650026,0,0,0,11,5,0% +2018-11-03 14:00:00,97.79730187,103.1654285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706884917,1.800576402,6.113080207,-6.113080207,1,0,#DIV/0!,0,0,0.340040543,1,0.162147498,0,0.943827782,0.982589745,0.724496596,1,0,0,0.050097745,0.312029739,0.867774843,0.592271439,0.961238037,0.922476074,0,0,0,0,0,0,-0.411143186,114.2766682,0.411143186,65.72333182,0,0.928387866,0,0,0,11,6,0% +2018-11-03 15:00:00,86.32431234,112.275914,16.40032729,104.0715986,9.728416098,9.558701053,0,9.558701053,9.435068458,0.123632595,24.28300234,20.01320548,4.269796866,0.293347639,3.976449227,1.506643475,1.95958437,-11.51778275,11.51778275,0,0,0.593184266,0.07333691,2.358767115,1,0.333249119,0,0.086605089,0.961238037,1,0.508421726,0.78392513,9.069346682,0.203029968,0.115824807,0.067466015,0.724496596,0.448993192,0.993505413,0.95474345,0.053132342,2.282486566,9.122479024,2.485516534,0,13.34382238,-0.192302278,101.0871731,0.192302278,78.91282691,0,0.789992679,9.122479024,13.02703853,17.6484152,11,7,93% +2018-11-03 16:00:00,75.95497774,122.3586533,178.8149748,539.4404703,47.90126007,61.51499572,13.71015256,47.80484316,46.45686035,1.347982812,44.80016062,0,44.80016062,1.444399728,43.35576089,1.325664445,2.135561368,-2.441277229,2.441277229,0.947636683,0.947636683,0.267881704,1.296306351,41.69366828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.65610124,1.046462686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.939169539,40.07753985,45.59527078,41.12400253,13.71015256,0,0.025415506,88.54364195,-0.025415506,91.45635805,0,0,45.59527078,41.12400253,72.51010795,11,8,59% +2018-11-03 17:00:00,66.68139319,134.081235,349.3733862,714.3247517,66.61239971,234.8801136,167.6425994,67.23751425,64.60379009,2.633724161,86.71823201,0,86.71823201,2.008609625,84.70962239,1.163809861,2.340159016,-1.014019859,1.014019859,0.703561298,0.703561298,0.19066249,2.001843798,64.38617783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.09962036,1.455230836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450329017,61.89044317,63.54994937,63.34567401,167.6425994,0,0.234686813,76.4268378,-0.234686813,103.5731622,0.836950109,0,203.8584412,63.34567401,245.3169179,11,9,20% +2018-11-03 18:00:00,59.24403874,148.0335629,482.0615911,791.346447,77.38086737,410.7322307,332.0506981,78.68153261,75.04754871,3.633983897,119.2147325,0,119.2147325,2.333318656,116.8814139,1.034003538,2.583673075,-0.348422472,0.348422472,0.589737442,0.589737442,0.160520707,2.382414686,76.62664581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.13855839,1.690481423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.72605133,73.65644659,73.86460972,75.34692802,332.0506981,0,0.419602185,65.19052569,-0.419602185,114.8094743,0.930839515,0,382.9505204,75.34692802,432.2635778,11,10,13% +2018-11-03 19:00:00,54.46307596,164.3682764,563.029374,825.5906116,83.17341617,553.3281483,468.4183643,84.90978404,80.6654308,4.244353246,139.0209756,0,139.0209756,2.507985375,136.5129903,0.950559996,2.86876761,0.106636721,-0.106636721,0.511917736,0.511917736,0.147724826,2.478785501,79.72626247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.53868034,1.817026867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.795871657,76.63591602,79.334552,78.45294289,468.4183643,0,0.567373657,55.43271484,-0.567373657,124.5672852,0.961874654,0,529.8943039,78.45294289,581.240186,11,11,10% +2018-11-03 20:00:00,53.08950189,182.2466463,585.5163554,833.8901538,84.70966532,643.5099444,556.9407184,86.56922597,82.15535636,4.41386961,144.5195282,0,144.5195282,2.554308955,141.9652192,0.926586606,3.180804029,0.50404808,-0.50404808,0.443956391,0.443956391,0.144675148,2.314642416,74.44685664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97085347,1.850588143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676950551,71.56115032,80.64780402,73.41173847,556.9407184,0,0.667882593,48.09614806,-0.667882593,131.9038519,0.975136543,0,623.7410507,73.41173847,671.7875653,11,12,8% +2018-11-03 21:00:00,55.38424647,199.8749182,547.7456206,819.6748474,82.11289259,669.2345519,585.4685281,83.76602377,79.63688592,4.129137857,135.283274,0,135.283274,2.476006676,132.8072673,0.966637455,3.488475415,0.928800805,-0.928800805,0.371319397,0.371319397,0.149910633,1.922383323,61.83045581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55000388,1.793858408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392760173,59.43378596,77.94276405,61.22764437,585.4685281,0,0.714269237,44.41665752,-0.714269237,135.5833425,0.979998385,0,651.7009762,61.22764437,691.7732449,11,13,6% +2018-11-03 22:00:00,60.92421653,215.6297714,452.7142044,776.9160665,75.15938793,622.7789865,546.4731805,76.30580597,72.89305507,3.4127509,112.0321331,0,112.0321331,2.266332855,109.7658002,1.063328173,3.763449477,1.484439696,-1.484439696,0.276299551,0.276299551,0.166019505,1.352978067,43.51642546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.06757716,1.641950438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.980228004,41.82964338,71.04780516,43.47159382,546.4731805,0,0.703387668,45.30056702,-0.703387668,134.699433,0.978915444,0,605.9988414,43.47159382,634.4501301,11,14,5% +2018-11-03 23:00:00,68.90504351,228.9644316,308.6083603,682.9087177,62.81948583,497.6112455,434.3595787,63.25166673,60.92524655,2.326420177,76.71990918,0,76.71990918,1.894239277,74.8256699,1.20261988,3.996183201,2.419487319,-2.419487319,0.11639699,0.11639699,0.203557304,0.689227187,22.16791555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.56366439,1.372369908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.499342751,21.30864362,59.06300714,22.68101353,434.3595787,0,0.636043394,50.50258591,-0.636043394,129.4974141,0.971389011,0,480.9951289,22.68101353,495.8393987,11,15,3% +2018-11-03 00:00:00,78.53296323,240.1944867,132.5294652,461.6581547,40.74991543,279.2488556,238.7286374,40.52021822,39.52115513,0.999063089,33.3620635,0,33.3620635,1.228760301,32.1333032,1.37065878,4.192184639,4.857657303,-4.857657303,0,0,0.307478155,0.307190075,9.880288782,0.231097277,1,0.2030243,0,0.938486377,0.97724834,0.724496596,1,38.26796126,0.890232655,0.035634078,0.312029739,0.903921779,0.628418375,0.961238037,0.922476074,0.212602092,9.497309392,38.48056335,10.38754205,183.5590995,0,0.517111276,58.8613197,-0.517111276,121.1386803,0.953309012,0,213.4691072,10.38754205,220.2675457,11,16,3% +2018-11-03 01:00:00,88.9587811,249.9491448,1.036579048,10.08348341,0.853345034,4.455794981,3.620367278,0.835427703,0.827613533,0.007814171,0.277062093,0,0.277062093,0.025731501,0.251330591,1.552623629,4.362435538,55.02152271,-55.02152271,0,0,0.823231991,0.006432875,0.206903383,0.898776008,1,0.018172705,0,0.95959596,0.998357923,0.724496596,1,0.79742186,0.018642385,0.107647503,0.312029739,0.74043614,0.464932736,0.961238037,0.922476074,0.004583736,0.198883402,0.802005596,0.217525787,0.366468028,0,0.359039345,68.95878937,-0.359039345,111.0412106,0.910739496,0,1.135762504,0.217525787,1.278128781,11,17,13% +2018-11-03 02:00:00,100.7649636,258.8933983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758680386,4.518542212,-5.196422178,5.196422178,1,0.581205781,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.15644528,80.99937262,-0.15644528,99.00062738,0.730399434,0,0,0,0,11,18,0% +2018-11-03 03:00:00,112.5236053,267.7050679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963907398,4.67233486,-2.297186009,2.297186009,1,0.922995634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058995206,93.38214011,0.058995206,86.61785989,0,0,0,0,0,11,19,0% +2018-11-03 04:00:00,124.3514796,277.2052504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170342749,4.838144323,-1.301261204,1.301261204,1,0.752682461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279106776,106.2069016,0.279106776,73.79309843,0,0.87085709,0,0,0,11,20,0% +2018-11-03 05:00:00,135.8942789,288.6688461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371802602,5.038221812,-0.756770208,0.756770208,1,0.659569017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488897568,119.2681477,0.488897568,60.73185233,0,0.947729088,0,0,0,11,21,0% +2018-11-03 06:00:00,146.5081525,304.5033851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557049643,5.314586654,-0.38420826,0.38420826,1,0.595857172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67408142,132.3828578,0.67408142,47.61714221,0,0.975824984,0,0,0,11,22,0% +2018-11-03 07:00:00,154.7033289,329.1413927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.700082454,5.744601007,-0.089036258,0.089036258,1,0.545379787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822050978,145.2906347,0.822050978,34.70936529,0,0.989176522,0,0,0,11,23,0% +2018-11-04 08:00:00,157.4763847,4.687761084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748481407,0.081816865,0.173207541,-0.173207541,1,0.500533456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922736196,157.3294312,0.922736196,22.67056882,0,0.995813332,0,0,0,11,0,0% +2018-11-04 09:00:00,153.0606233,38.11216227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.671411832,0.665182717,0.431498801,-0.431498801,1,0.456363049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969289878,165.7637322,0.969289878,14.23626782,0,0.998415844,0,0,0,11,1,0% +2018-11-04 10:00:00,144.0581397,60.10350675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514288852,1.049004085,0.71420529,-0.71420529,1,0.408017392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958553655,163.4464071,0.958553655,16.5535929,0,0.997838079,0,0,0,11,2,0% +2018-11-04 11:00:00,133.1330584,74.54739654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323610212,1.301097518,1.064028161,-1.064028161,1,0.348194157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891272722,153.0336148,0.891272722,26.96638522,0,0.993900448,0,0,0,11,3,0% +2018-11-04 12:00:00,121.488391,85.37443465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120372426,1.490064982,1.574169758,-1.574169758,1,0.260954806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044739,140.5378614,0.772044739,39.46213865,0,0.985236914,0,0,0,11,4,0% +2018-11-04 13:00:00,109.6646233,94.6229251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91400875,1.651481591,2.543880649,-2.543880649,1,0.095124478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609006369,127.5176916,0.609006369,52.48230837,0,0.967899052,0,0,0,11,5,0% +2018-11-04 14:00:00,97.98605833,103.412408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710179339,1.804887007,5.949907426,-5.949907426,1,0,#DIV/0!,0,0,0.327658957,1,0.166513617,0,0.943275023,0.982036986,0.724496596,1,0,0,0.048519465,0.312029739,0.871638778,0.596135374,0.961238037,0.922476074,0,0,0,0,0,0,-0.413278762,114.4109686,0.413278762,65.5890314,0,0.929016285,0,0,0,11,6,0% +2018-11-04 15:00:00,86.52004758,112.5083239,14.5967806,94.58911413,8.855288321,8.698305403,0,8.698305403,8.588268705,0.110036698,22.21573087,18.40955281,3.806178067,0.267019615,3.539158452,1.510059699,1.963640688,-12.12238013,12.12238013,0,0,0.60666037,0.066754904,2.147067176,1,0.376248588,0,0.082305694,0.961238037,1,0.517744253,0.793247657,8.25537055,0.184134027,0.115824807,0.078000631,0.724496596,0.448993192,0.99239367,0.953631706,0.048363701,2.07882445,8.303734251,2.262958478,0,11.48298456,-0.194626548,101.2229084,0.194626548,78.77709157,0,0.793097741,8.303734251,11.37008759,15.74522917,11,7,90% +2018-11-04 16:00:00,76.17905438,122.5761533,174.7864067,533.6877353,47.29456595,59.27500809,12.08893404,47.18607405,45.86846029,1.317613764,43.80509358,0,43.80509358,1.426105662,42.37898792,1.32957532,2.13935746,-2.47023867,2.47023867,0.952589382,0.952589382,0.27058492,1.272048018,40.91343691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.09050872,1.033208697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921594459,39.32755177,45.01210318,40.36076047,12.08893404,0,0.022651699,88.70204222,-0.022651699,91.29795778,0,0,45.01210318,40.36076047,71.42741369,11,8,59% +2018-11-04 17:00:00,66.93235811,134.275634,344.8458249,711.2859069,66.15150229,231.4949094,164.7385255,66.75638392,64.15679043,2.599593491,85.60657459,0,85.60657459,1.994711867,83.61186272,1.168190025,2.343551919,-1.019192389,1.019192389,0.704445853,0.704445853,0.19182921,1.978659196,63.64048133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.66994728,1.445161958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433531852,61.17365134,63.10347913,62.6188133,164.7385255,0,0.231606621,76.60832129,-0.231606621,103.3916787,0.834116707,0,200.5146356,62.6188133,241.4973965,11,9,20% +2018-11-04 18:00:00,59.52302919,148.1852367,477.2776477,789.2769202,76.96270576,406.7780981,328.5381814,78.23991673,74.64199622,3.597920511,118.042201,0,118.042201,2.320709541,115.7214914,1.03887284,2.586320284,-0.347913277,0.347913277,0.589650364,0.589650364,0.161253531,2.359590718,75.89254854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.74872591,1.681346162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709515443,72.95080437,73.45824136,74.63215053,328.5381814,0,0.416252107,65.40180757,-0.416252107,114.5981924,0.929880488,0,378.9594858,74.63215053,427.8047357,11,10,13% +2018-11-04 19:00:00,54.76409772,164.4475559,558.113765,823.8997877,82.76953093,549.0067391,464.5257176,84.4810215,80.27372419,4.207297308,137.8169507,0,137.8169507,2.495806745,135.3211439,0.955813817,2.870151298,0.109783151,-0.109783151,0.511379665,0.511379665,0.148302257,2.456401771,79.00632477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16215705,1.80820349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779654721,75.94388452,78.94181177,77.75208801,464.5257176,0,0.563813372,55.68006973,-0.563813372,124.3199303,0.961318173,0,525.4988259,77.75208801,576.3860124,11,11,10% +2018-11-04 20:00:00,53.39693618,182.2301282,580.5771654,832.2898987,84.30949538,638.9387085,552.7948195,86.14388894,81.76725303,4.376635909,143.3098978,0,143.3098978,2.542242355,140.7676554,0.931952347,3.180515734,0.509361628,-0.509361628,0.443047721,0.443047721,0.145216692,2.293035484,73.75190341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.59779378,1.841845932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.661296402,70.89313485,80.25909018,72.73498078,552.7948195,0,0.664185424,48.38013632,-0.664185424,131.6198637,0.974719817,0,619.0791557,72.73498078,666.682746,11,12,8% +2018-11-04 21:00:00,55.67866765,199.7671621,542.8882678,817.9347686,81.70917691,664.4951921,581.1573273,83.33786484,79.24534376,4.09252108,134.093379,0,134.093379,2.463833159,131.6295459,0.971776074,3.486594715,0.936970519,-0.936970519,0.369922294,0.369922294,0.150508275,1.902016372,61.17538467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.17363866,1.785038736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378004387,58.80410667,77.55164305,60.5891454,581.1573273,0,0.710517941,44.72292796,-0.710517941,135.277072,0.9796288,0,646.8700983,60.5891454,686.5244822,11,13,6% +2018-11-04 22:00:00,61.19263056,215.4587696,448.0462672,774.7105546,74.73929544,617.9043044,542.0411125,75.86319194,72.48562992,3.377562018,110.8876703,0,110.8876703,2.253665516,108.6340048,1.068012881,3.760464931,1.497881788,-1.497881788,0.274000818,0.274000818,0.166811557,1.334494585,42.92193316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.67594461,1.632772995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.966836784,41.25819476,70.64278139,42.89096776,542.0411125,0,0.699669198,45.59953026,-0.699669198,134.4004697,0.978537657,0,601.0504218,42.89096776,629.1217023,11,14,5% +2018-11-04 23:00:00,69.1441221,228.758175,304.2614226,679.5035351,62.34560328,492.5072882,429.7479837,62.75930444,60.46565331,2.293651124,75.65165449,0,75.65165449,1.87994997,73.77170452,1.206792589,3.992583344,2.446474135,-2.446474135,0.111781972,0.111781972,0.204908012,0.67384021,21.67301747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.12188589,1.362017353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.488194938,20.83292877,58.61008083,22.19494612,429.7479837,0,0.632444074,50.76932708,-0.632444074,129.2306729,0.970941626,0,475.870287,22.19494612,490.3964353,11,15,3% +2018-11-04 00:00:00,78.74509456,239.9692084,128.8353968,454.7555554,40.07880313,273.4580513,233.6165564,39.84149498,38.87027934,0.971215641,32.44615734,0,32.44615734,1.208523789,31.23763355,1.37436117,4.18825279,4.948278888,-4.948278888,0,0,0.311085339,0.302130947,9.717569835,0.240151511,1,0.199404816,0,0.938974269,0.977736232,0.724496596,1,37.64304698,0.875571371,0.036887521,0.312029739,0.900723825,0.625220421,0.961238037,0.922476074,0.208888195,9.340897751,37.85193518,10.21646912,177.5131873,0,0.513718972,59.08813234,-0.513718972,120.9118677,0.952670521,0,206.9635158,10.21646912,213.6499905,11,16,3% +2018-11-04 01:00:00,89.12924095,249.7103924,0.725841563,7.660069006,0.609431285,3.325478148,2.728951765,0.596526383,0.591054683,0.0054717,0.194365292,0,0.194365292,0.018376602,0.175988691,1.555598714,4.358268524,65.79390296,-65.79390296,0,0,0.839620264,0.00459415,0.147763671,0.914684986,1,0.015197807,0,0.959870223,0.998632186,0.724496596,1,0.569290395,0.013313785,0.108969738,0.312029739,0.737822271,0.462318867,0.961238037,0.922476074,0.003281683,0.142036061,0.572572078,0.155349846,0.232820557,0,0.356256812,69.12950883,-0.356256812,110.8704912,0.909651807,0,0.784357718,0.155349846,0.886031086,11,17,13% +2018-11-04 02:00:00,100.9442269,258.6397354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76180912,4.514114959,-5.11274202,5.11274202,1,0.595515931,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153585323,81.16524113,-0.153585323,98.83475887,0.72444806,0,0,0,0,11,18,0% +2018-11-04 03:00:00,112.6961999,267.4303799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966919743,4.667540649,-2.281230539,2.281230539,1,0.920267088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061529068,93.52758411,0.061529068,86.47241589,0,0,0,0,0,11,19,0% +2018-11-04 04:00:00,124.5262219,276.8998332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173392577,4.832813788,-1.296304031,1.296304031,1,0.751834735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281311879,106.3385173,0.281311879,73.66148267,0,0.872261327,0,0,0,11,20,0% +2018-11-04 05:00:00,136.0834791,288.321994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375104767,5.032168102,-0.755414001,0.755414001,1,0.659337092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49079383,119.3927711,0.49079383,60.6072289,0,0.948124229,0,0,0,11,21,0% +2018-11-04 06:00:00,146.7302882,304.1203148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560926641,5.307900815,-0.384542608,0.384542608,1,0.595914349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675709985,132.5093089,0.675709985,47.49069112,0,0.976003757,0,0,0,11,22,0% +2018-11-04 07:00:00,154.9786243,328.8269398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704887264,5.739112769,-0.090445905,0.090445905,1,0.54562085,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823471383,145.4338176,0.823471383,34.56618237,0,0.989281436,0,0,0,11,23,0% +2018-11-05 08:00:00,157.7818526,4.728530335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753812828,0.082528423,0.170867571,-0.170867571,1,0.500933614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924022276,157.5213813,0.924022276,22.47861865,0,0.99588875,0,0,0,11,0,0% +2018-11-05 09:00:00,153.3265802,38.44633881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.676053656,0.671015198,0.428091813,-0.428091813,1,0.456945678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970524676,166.0543269,0.970524676,13.94567313,0,0.998481475,0,0,0,11,1,0% +2018-11-05 10:00:00,144.2764711,60.46855457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.518099454,1.055375371,0.709267186,-0.709267186,1,0.408861857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9598237,163.7037583,0.9598237,16.29624174,0,0.9979071,0,0,0,11,2,0% +2018-11-05 11:00:00,133.3242921,74.87409242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326947869,1.306799437,1.056439074,-1.056439074,1,0.349491968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892662054,153.2096893,0.892662054,26.79031068,0,0.993987761,0,0,0,11,3,0% +2018-11-05 12:00:00,121.6688136,85.66333374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123521394,1.495107222,1.560910572,-1.560910572,1,0.263222261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77362911,140.6809078,0.77362911,39.31909222,0,0.985369547,0,0,0,11,4,0% +2018-11-05 13:00:00,109.8451714,94.88410962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917159908,1.656040121,2.513516526,-2.513516526,1,0.100317048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610848009,127.6508448,0.610848009,52.34915515,0,0.968146578,0,0,0,11,5,0% +2018-11-05 14:00:00,98.17479245,103.6541735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.713473371,1.809106611,5.794496647,-5.794496647,1,0,#DIV/0!,0,0,0.315426533,1,0.170894231,0,0.942716131,0.981478094,0.724496596,1,0,0,0.046944252,0.312029739,0.875514873,0.600011469,0.961238037,0.922476074,0,0,0,0,0,0,-0.41542207,114.545899,0.41542207,65.45410097,0,0.929640482,0,0,0,11,6,0% +2018-11-05 15:00:00,86.71504113,112.7352444,12.89526938,85.37669078,8.003019109,7.858908542,0,7.858908542,7.761698555,0.097209988,20.18319919,16.81527128,3.367927912,0.241320554,3.126607358,1.513462979,1.967601198,-12.79695597,12.79695597,0,0,0.620616667,0.060330139,1.940424639,1,0.418118187,0,0.077985105,0.961238037,1,0.527261662,0.802765066,7.460839882,0.165925276,0.115824807,0.088749558,0.724496596,0.448993192,0.991232473,0.95247051,0.04370898,1.879645866,7.504548861,2.045571142,0,9.784500545,-0.196953889,101.358887,0.196953889,78.64111299,0,0.796133472,7.504548861,9.835339532,13.94158188,11,7,86% +2018-11-05 16:00:00,76.40254211,122.7877394,170.7755238,527.8335747,46.68238419,57.05277695,10.49066084,46.5621161,45.27473807,1.287378034,42.81414904,0,42.81414904,1.407646123,41.40650292,1.333475917,2.143050334,-2.500303076,2.500303076,0.957730698,0.957730698,0.273355239,1.247836518,40.13471183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,43.51980034,1.019834824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90405331,38.57901161,44.42385365,39.59884643,10.49066084,0,0.01987494,88.86117481,-0.01987494,91.13882519,0,0,44.42385365,39.59884643,70.34050666,11,8,58% +2018-11-05 17:00:00,67.18208243,134.4636739,340.3356101,708.2090097,65.68942737,228.1110253,161.836783,66.27424235,63.70864876,2.565593588,84.49908755,0,84.49908755,1.980778603,82.51830895,1.172548537,2.346833834,-1.024609498,1.024609498,0.705372233,0.705372233,0.193013677,1.955596572,62.89870809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23917647,1.435067355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41682306,60.46063068,62.65599953,61.89569804,161.836783,0,0.228515566,76.79030732,-0.228515566,103.2096927,0.831196525,0,197.1741712,61.89569804,237.6836676,11,9,21% +2018-11-05 18:00:00,59.79980909,148.3304341,472.5199718,787.1907849,76.54503815,402.8276237,325.0286457,77.79897797,74.23692283,3.56205514,116.8760531,0,116.8760531,2.308115321,114.5679378,1.043703561,2.588854455,-0.347527059,0.347527059,0.589584317,0.589584317,0.161993234,2.336953528,75.16445869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.35935396,1.672221693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693114876,72.25093672,73.05246884,73.92315841,325.0286457,0,0.412896914,65.61305522,-0.412896914,114.3869448,0.928904399,0,374.9730076,73.92315841,423.3542363,11,10,13% +2018-11-05 19:00:00,55.06176234,164.5211299,553.2366175,822.2019398,82.36724531,544.6982802,460.6441799,84.05410027,79.88356896,4.170531311,136.6222994,0,136.6222994,2.483676349,134.1386231,0.961009045,2.871435405,0.11283493,-0.11283493,0.51085778,0.51085778,0.14888249,2.434266108,78.29436578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.787125,1.79941506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763617509,75.25952246,78.55074251,77.05893752,460.6441799,0,0.560256742,55.92644499,-0.560256742,124.073555,0.960755202,0,521.1170344,77.05893752,571.5505679,11,11,10% +2018-11-05 20:00:00,53.70001974,182.2097556,575.6902446,830.688546,83.91190846,634.3937847,548.6723337,85.72145105,81.38165482,4.339796236,142.1130185,0,142.1130185,2.530253642,139.5827649,0.937242153,3.180160165,0.514582874,-0.514582874,0.442154835,0.442154835,0.145758781,2.27173433,73.0667851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22714211,1.83316015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645863789,70.23457307,79.8730059,72.06773322,548.6723337,0,0.660503069,48.66174905,-0.660503069,131.338251,0.974300125,0,614.444529,72.06773322,661.611419,11,12,8% +2018-11-05 21:00:00,55.96816972,199.6576935,538.0974305,816.1987748,81.30902466,659.7982476,576.8845843,82.9136633,78.85725757,4.056405724,132.919719,0,132.919719,2.451767092,130.4679519,0.976828838,3.484684128,0.945036805,-0.945036805,0.368542878,0.368542878,0.151104651,1.882005888,60.5317787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.80059546,1.776296912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363506859,58.18544812,77.16410232,59.96174503,576.8845843,0,0.70679423,45.02531998,-0.70679423,134.97468,0.979258053,0,642.0829771,59.96174503,681.32674,11,13,6% +2018-11-05 22:00:00,61.45592221,215.2875898,443.4584608,772.5153854,74.32380701,613.0900367,537.6643895,75.4256472,72.08267,3.342977195,109.762775,0,109.762775,2.241137007,107.521638,1.072608187,3.75747728,1.511200252,-1.511200252,0.271723226,0.271723226,0.167600381,1.316406556,42.34015996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.2886042,1.623696132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953732069,40.69897224,70.24233627,42.32266838,537.6643895,0,0.695991821,45.89369473,-0.695991821,134.1063053,0.978160075,0,596.164176,42.32266838,623.863516,11,14,5% +2018-11-05 23:00:00,69.37802575,228.5525562,300.0067663,676.118187,61.8775197,487.4834279,425.210166,62.2732619,60.01168418,2.261577728,74.60594937,0,74.60594937,1.865835523,72.74011384,1.210874978,3.98899462,2.473348548,-2.473348548,0.107186177,0.107186177,0.206253747,0.658870807,21.19155002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.68551348,1.351791485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.477349657,20.37012394,58.16286314,21.72191542,425.210166,0,0.628899169,51.03104816,-0.628899169,128.9689518,0.970495999,0,470.8276281,21.72191542,485.0441873,11,15,3% +2018-11-05 00:00:00,78.95199857,239.7449402,125.2465237,447.8975246,39.41533034,267.7749573,228.6039834,39.1709739,38.2268127,0.9441612,31.55598737,0,31.55598737,1.188517637,30.36746973,1.377972326,4.184338572,5.039823514,-5.039823514,0,0,0.314701991,0.297129409,9.556703175,0.249084009,1,0.195875528,0,0.939447228,0.978209191,0.724496596,1,37.02474023,0.861076982,0.038114643,0.312029739,0.897605033,0.622101628,0.961238037,0.922476074,0.205234747,9.186266598,37.22997498,10.04734358,171.6623868,0,0.510393496,59.30995614,-0.510393496,120.6900439,0.952036369,0,200.6588104,10.04734358,207.2345959,11,16,3% +2018-11-05 01:00:00,89.29328364,249.4727977,0.48876326,5.737787633,0.417992156,2.437782337,2.028709682,0.409072654,0.40538815,0.003684504,0.131110317,0,0.131110317,0.012604006,0.118506311,1.558461799,4.354121714,81.06568843,-81.06568843,0,0,0.855203715,0.003151001,0.101347038,0.930230427,1,0.01233505,0,0.960132136,0.998894099,0.724496596,1,0.390322525,0.009131559,0.110248108,0.312029739,0.735308504,0.4598051,0.961238037,0.922476074,0.00225639,0.097418627,0.392578915,0.106550187,0.141542208,0,0.353570019,69.29417042,-0.353570019,110.7058296,0.908585295,0,0.521182084,0.106550187,0.590917051,11,17,13% +2018-11-05 02:00:00,101.1180459,258.3872446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764842834,4.509708164,-5.034135631,5.034135631,1,0.608958415,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.150809899,81.32613568,-0.150809899,98.67386432,0.718456778,0,0,0,0,11,18,0% +2018-11-05 03:00:00,112.8631288,267.1567331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969833201,4.662764611,-2.266055678,2.266055678,1,0.917672034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063973945,93.66794189,0.063973945,86.33205811,0,0,0,0,0,11,19,0% +2018-11-05 04:00:00,124.6949904,276.5950339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176338143,4.827494037,-1.29162003,1.29162003,1,0.751033724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283427012,106.4648465,0.283427012,73.53515354,0,0.873587739,0,0,0,11,20,0% +2018-11-05 05:00:00,136.2663287,287.9745892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378296095,5.026104743,-0.754187091,0.754187091,1,0.659127278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492602674,119.5117918,0.492602674,60.48820818,0,0.948498318,0,0,0,11,21,0% +2018-11-05 06:00:00,146.9458109,303.7336022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564688222,5.301151408,-0.384946742,0.384946742,1,0.59598346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677257036,132.6296682,0.677257036,47.37033181,0,0.976172786,0,0,0,11,22,0% +2018-11-05 07:00:00,155.247923,328.5031431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709587413,5.73346145,-0.091893856,0.091893856,1,0.545868464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824819123,145.5701575,0.824819123,34.42984255,0,0.989380649,0,0,0,11,23,0% +2018-11-06 08:00:00,158.0832419,4.76064612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759073064,0.083088949,0.16851028,-0.16851028,1,0.501336735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925246872,157.7056106,0.925246872,22.29438941,0,0.995960368,0,0,0,11,0,0% +2018-11-06 09:00:00,153.5897653,38.77530142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680647102,0.676756678,0.424686027,-0.424686027,1,0.457528102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971710731,166.3391517,0.971710731,13.66084827,0,0.998544357,0,0,0,11,1,0% +2018-11-06 10:00:00,144.4930811,60.82813721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.521880011,1.061651272,0.704353259,-0.704353259,1,0.409702188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961058422,163.9578004,0.961058422,16.04219965,0,0.997974026,0,0,0,11,2,0% +2018-11-06 11:00:00,133.5146221,75.19531143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.330269756,1.312405766,1.048914758,-1.048914758,1,0.350778702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89402924,153.3840097,0.89402924,26.61599032,0,0.994073418,0,0,0,11,3,0% +2018-11-06 12:00:00,121.8488455,85.94692539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126663543,1.50005683,1.547819639,-1.547819639,1,0.265460942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775203359,140.8234735,0.775203359,39.17652652,0,0.985500796,0,0,0,11,4,0% +2018-11-06 13:00:00,110.0255866,95.14007034,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920308748,1.660507478,2.483762426,-2.483762426,1,0.105405299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612689569,127.7842314,0.612689569,52.21576858,0,0.968392604,0,0,0,11,5,0% +2018-11-06 14:00:00,98.36343577,103.8906338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716765818,1.813233622,5.646381001,-5.646381001,1,0,#DIV/0!,0,0,0.303346744,1,0.175286988,0,0.94215138,0.980913343,0.724496596,1,0,0,0.04537291,0.312029739,0.879401011,0.603897607,0.961238037,0.922476074,0,0,0,0,0,0,-0.417572666,114.6814343,0.417572666,65.31856568,0,0.930260362,0,0,0,11,6,0% +2018-11-06 15:00:00,86.90915497,112.9566014,11.29969092,76.48172394,7.175852834,7.044656239,0,7.044656239,6.959474395,0.085181843,18.19759929,15.24147996,2.956119326,0.216378439,2.739740887,1.516850904,1.971464607,-13.55369853,13.55369853,0,0,0.635048594,0.05409461,1.739868599,1,0.458866449,0,0.073647158,0.961238037,1,0.536967324,0.812470728,6.689711505,0.148446744,0.115824807,0.099707094,0.724496596,0.448993192,0.990020978,0.951259015,0.039191361,1.686011975,6.728902866,1.834458719,0,8.247676171,-0.199282641,101.495013,0.199282641,78.50498701,0,0.799100074,6.728902866,8.425177356,12.24301294,11,7,82% +2018-11-06 16:00:00,76.62533475,122.9933598,166.7847267,521.8789523,46.06486487,54.85019996,8.917067009,45.93313295,44.67583923,1.25729372,41.82791358,0,41.82791358,1.389025637,40.43888795,1.337364382,2.146639086,-2.531508321,2.531508321,0.963067109,0.963067109,0.276193545,1.223683411,39.35786488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.944116,1.006344346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886554466,37.83227677,43.83067046,38.83862112,8.917067009,0,0.017086466,89.02096997,-0.017086466,90.97903003,0,0,43.83067046,38.83862112,69.24977121,11,8,58% +2018-11-06 17:00:00,67.43044518,134.6453354,335.8452298,705.0952327,65.22636307,224.7305026,158.9392118,65.79129077,63.25954756,2.531743203,83.39637974,0,83.39637974,1.966815506,81.42956423,1.176883285,2.350004425,-1.030275761,1.030275761,0.706341221,0.706341221,0.194215541,1.932667746,62.16123822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.80748331,1.424951139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.400211203,59.75174659,62.20769451,61.17669773,158.9392118,0,0.225415241,76.97270298,-0.225415241,103.027297,0.828187137,0,193.8391053,61.17669773,233.8780304,11,9,21% +2018-11-06 18:00:00,60.07425003,148.4691765,467.7912561,785.0892396,76.12806254,398.8832073,321.5242786,77.35892866,73.83252058,3.526408085,115.7169479,0,115.7169479,2.295541968,113.4214059,1.048493459,2.591275968,-0.347266943,0.347266943,0.589539834,0.589539834,0.162739388,2.314515172,74.44276403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.97062713,1.663112342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676858363,71.55721636,72.6474855,73.2203287,321.5242786,0,0.409538512,65.82415189,-0.409538512,114.1758481,0.92791136,0,370.9935161,73.2203287,418.9147568,11,10,13% +2018-11-06 19:00:00,55.35594565,164.5890514,548.400741,820.4982862,81.96676243,540.405489,456.7762504,83.62923855,79.49516211,4.134076431,135.4377091,0,135.4377091,2.471600312,132.9661088,0.966143512,2.87262086,0.115788278,-0.115788278,0.510352728,0.510352728,0.149465083,2.412390272,77.59076369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41377357,1.790666013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.74776854,74.58319336,78.16154211,76.37385938,456.7762504,0,0.556705917,56.17170536,-0.556705917,123.8282946,0.960185973,0,516.7516907,76.37385938,566.7368542,11,11,10% +2018-11-06 20:00:00,53.99863961,182.1855825,570.8584047,829.0874321,83.51711363,629.8781262,544.5759899,85.30213629,80.99876451,4.303371786,140.9295785,0,140.9295785,2.518349121,138.4112294,0.942454053,3.179738265,0.519706594,-0.519706594,0.441278628,0.441278628,0.146300927,2.250749866,72.39185258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85909338,1.824535366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630660616,69.58580226,79.489754,71.41033763,544.5759899,0,0.65683783,48.9408487,-0.65683783,131.0591513,0.97387771,0,609.8401717,71.41033763,656.5768095,11,12,8% +2018-11-06 21:00:00,56.25264893,199.5465522,533.3758011,814.4685005,80.91265605,655.1468311,572.6531781,82.49365302,78.47284093,4.020812088,131.7629533,0,131.7629533,2.439815116,129.3231382,0.981793937,3.482744347,0.952991669,-0.952991669,0.367182516,0.367182516,0.151699151,1.862361315,59.89994171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43107956,1.767637746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349274433,57.57810237,76.780354,59.34574012,572.6531781,0,0.703100461,45.32371325,-0.703100461,134.6762868,0.978886407,0,637.342766,59.34574012,676.183366,11,13,6% +2018-11-06 22:00:00,61.71399441,215.1162707,438.9532297,770.3328756,73.91317141,608.3394371,533.3460057,74.99343144,71.68441658,3.30901486,108.6580474,0,108.6580474,2.228754829,106.4292926,1.077112397,3.754487198,1.524380867,-1.524380867,0.269469208,0.269469208,0.168385072,1.298721122,41.77133561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.90578787,1.614725286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940919032,40.15219663,69.8467069,41.76692192,533.3460057,0,0.69235784,46.18295666,-0.69235784,133.8170433,0.977783009,0,591.3433691,41.76692192,618.6789841,11,14,5% +2018-11-06 23:00:00,69.60666527,228.3476266,295.8464152,672.756748,61.41557373,482.5432377,420.7493548,61.79388283,59.56366758,2.230215244,73.5832947,0,73.5832947,1.851906147,71.73138855,1.21486549,3.985417924,2.500077926,-2.500077926,0.102615184,0.102615184,0.20759276,0.644322063,20.72361237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.25486289,1.3416997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466809141,19.92032448,57.72167204,21.26202417,420.7493548,0,0.625410828,51.2876525,-0.625410828,128.7123475,0.970052551,0,465.8706572,21.26202417,479.7862268,11,15,3% +2018-11-06 00:00:00,79.15359663,239.5217512,121.7639359,441.094304,38.76022165,262.2044898,223.6951239,38.50936594,37.59145796,0.917907982,30.69183969,0,30.69183969,1.168763693,29.523076,1.381490876,4.180443189,5.132179454,-5.132179454,0,0,0.318322674,0.292190923,9.39786449,0.25788535,1,0.192437798,0,0.939905278,0.978667241,0.724496596,1,36.4137589,0.846765317,0.039314651,0.312029739,0.894566648,0.619063244,0.961238037,0.922476074,0.201644327,9.033584813,36.61540322,9.88035013,166.0074285,0,0.507136732,59.52670359,-0.507136732,120.4732964,0.95140726,0,194.5560759,9.88035013,201.0225675,11,16,3% +2018-11-06 01:00:00,89.45093982,249.2364492,0.31229802,4.240331404,0.271663936,1.75409344,1.488266939,0.2658265,0.263472266,0.002354234,0.083911941,0,0.083911941,0.00819167,0.075720271,1.561213419,4.349996655,104.3399981,-104.3399981,0,0,0.869886836,0.002047918,0.065868067,0.945394092,1,0.009583759,0,0.960381988,0.999143951,0.724496596,1,0.253591693,0.005934837,0.111482281,0.312029739,0.732894134,0.45739073,0.961238037,0.922476074,0.001470098,0.063314891,0.25506179,0.069249728,0.081268167,0,0.350978921,69.45279804,-0.350978921,110.547202,0.907541302,0,0.328816008,0.069249728,0.37413857,11,17,14% +2018-11-06 02:00:00,101.2863592,258.1360371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767780456,4.505323766,-4.960285558,4.960285558,1,0.621587522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148120239,81.48199268,-0.148120239,98.51800732,0.712436407,0,0,0,0,11,18,0% +2018-11-06 03:00:00,113.0243373,266.8842683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97264682,4.658009203,-2.251639865,2.251639865,1,0.915206784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.066329,93.80316393,0.066329,86.19683607,0,0,0,0,0,11,19,0% +2018-11-06 04:00:00,124.8577325,276.2910355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179178528,4.822188263,-1.287205106,1.287205106,1,0.750278727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285451735,106.5858528,0.285451735,73.41414716,0,0.87483904,0,0,0,11,20,0% +2018-11-06 05:00:00,136.4427662,287.6268726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38137551,5.020035945,-0.753088181,0.753088181,1,0.658939353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494324023,119.6251855,0.494324023,60.37481445,0,0.94885177,0,0,0,11,21,0% +2018-11-06 06:00:00,147.1546278,303.3435262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568332765,5.294343297,-0.385419952,0.385419952,1,0.596064383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678722809,132.7439193,0.678722809,47.25608073,0,0.976332224,0,0,0,11,22,0% +2018-11-06 07:00:00,155.5110842,328.1700559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.714180442,5.727647982,-0.093379455,0.093379455,1,0.546122517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826094672,145.6996317,0.826094672,34.30036834,0,0.989474249,0,0,0,11,23,0% +2018-11-07 08:00:00,158.3804423,4.783754747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764260189,0.083492271,0.166136459,-0.166136459,1,0.501742682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926410603,157.8820323,0.926410603,22.11796775,0,0.996028252,0,0,0,11,0,0% +2018-11-07 09:00:00,153.8501305,39.09871493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685191332,0.682401309,0.42128249,-0.42128249,1,0.458110141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972848707,166.6180175,0.972848707,13.38198253,0,0.998604547,0,0,0,11,1,0% +2018-11-07 10:00:00,144.7079455,61.18201087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525630103,1.067827533,0.699464938,-0.699464938,1,0.41053814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962258426,164.2085105,0.962258426,15.79148952,0,0.998038907,0,0,0,11,2,0% +2018-11-07 11:00:00,133.7040221,75.51088119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333575409,1.317913498,1.041457176,-1.041457176,1,0.352054023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895374724,153.5566025,0.895374724,26.44339746,0,0.994157459,0,0,0,11,3,0% +2018-11-07 12:00:00,122.0284479,86.22507811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129798197,1.504911511,1.534899236,-1.534899236,1,0.267670461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776767681,140.9655726,0.776767681,39.03442739,0,0.98563069,0,0,0,11,4,0% +2018-11-07 13:00:00,110.2058146,95.39070031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92345432,1.664881796,2.454613894,-2.454613894,1,0.110389992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614530921,127.9178441,0.614530921,52.08215593,0,0.968637129,0,0,0,11,5,0% +2018-11-07 14:00:00,98.55191651,104.1216999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720055427,1.817266486,5.505132442,-5.505132442,1,0,#DIV/0!,0,0,0.291423089,1,0.17968941,0,0.941581066,0.980343029,0.724496596,1,0,0,0.043806269,0.312029739,0.88329497,0.607791566,0.961238037,0.922476074,0,0,0,0,0,0,-0.419730051,114.8175457,0.419730051,65.18245434,0,0.930875816,0,0,0,11,6,0% +2018-11-07 15:00:00,87.10224316,113.1723237,9.813451987,67.95211578,6.378211626,6.259862958,0,6.259862958,6.185885012,0.073977946,16.27160611,13.69989445,2.571711664,0.192326614,2.37938505,1.520220929,1.97522967,-14.40774205,14.40774205,0,0,0.649945772,0.048081653,1.546471253,1,0.498501193,0,0.069295996,0.961238037,1,0.546853374,0.822356779,5.946107965,0.131747193,0.115824807,0.110866109,0.724496596,0.448993192,0.988758549,0.949996586,0.034834994,1.499024697,5.98094296,1.630771889,0,6.870480722,-0.201611006,101.6311821,0.201611006,78.36881787,0,0.801997667,5.98094296,7.140881397,10.65450702,11,7,78% +2018-11-07 16:00:00,76.84732362,123.192966,162.8164617,515.8251207,45.4421774,52.6691979,7.369890555,45.29930735,44.07192808,1.227379262,40.84698548,0,40.84698548,1.370249312,39.47673617,1.341238819,2.150122873,-2.563892756,2.563892756,0.968605174,0.968605174,0.279100632,1.199600588,38.58327852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.36361363,0.992740962,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869106543,37.0877149,43.23272017,38.08045587,7.369890555,0,0.014287576,89.18135435,-0.014287576,90.81864565,0,0,43.23272017,38.08045587,68.15561693,11,8,58% +2018-11-07 17:00:00,67.67732369,134.8206028,331.37721,701.9458807,64.76250702,221.3554307,156.0476908,65.30773987,62.80967849,2.498061384,82.29906966,0,82.29906966,1.952828535,80.34624113,1.181192127,2.353063418,-1.036195484,1.036195484,0.707353554,0.707353554,0.195434402,1.90988468,61.42845648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37505204,1.414817626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383704949,59.04736891,61.75875699,60.46218654,156.0476908,0,0.222307296,77.15541216,-0.222307296,102.8445878,0.825086104,0,190.5115383,60.46218654,230.0828301,11,9,21% +2018-11-07 18:00:00,60.34622283,148.6014891,463.0942207,782.9735668,75.71198289,394.947297,318.0273099,76.91998711,73.42898726,3.490999848,114.565551,0,114.565551,2.282995632,112.2825553,1.05324028,2.593585259,-0.347135955,0.347135955,0.589517434,0.589517434,0.16349153,2.292287749,73.7278537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58273556,1.654022564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660754671,70.87001735,72.24349023,72.52403991,318.0273099,0,0.406178859,66.03497838,-0.406178859,113.9650216,0.92690152,0,367.0234873,72.52403991,414.4890209,11,10,13% +2018-11-07 19:00:00,55.64652349,164.6513764,543.6089557,818.790108,81.56828933,536.1311212,452.9244628,83.20665838,79.10870445,4.097953929,134.2638699,0,134.2638699,2.459584878,131.804285,0.971215052,2.873708636,0.118639426,-0.118639426,0.509865153,0.509865153,0.150049569,2.390785971,76.89589511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.04229576,1.781960871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732116298,73.91525926,77.77441206,75.69722013,452.9244628,0,0.553163086,56.41571433,-0.553163086,123.5842857,0.959610744,0,512.4055926,75.69722013,561.9479092,11,11,10% +2018-11-07 20:00:00,54.29268337,182.1576658,566.0844499,827.4879469,83.12532244,625.3947083,540.5085373,84.88617097,80.61878727,4.267383699,139.760264,0,139.760264,2.506535171,137.2537288,0.947586085,3.179251026,0.524727514,-0.524727514,0.44042,0.44042,0.146842618,2.230092866,71.72745245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49384481,1.815976199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.61569469,68.94715558,79.1095395,70.76313178,540.5085373,0,0.653192037,49.21729765,-0.653192037,130.7827023,0.973452833,0,605.2691064,70.76313178,651.5821609,11,12,8% +2018-11-07 21:00:00,56.53200269,199.4337816,528.7260457,812.745633,80.52029278,650.5440603,568.4659912,82.07806913,78.09230886,3.985760268,130.6237351,0,130.6237351,2.427983915,128.1957512,0.98666958,3.480776129,0.960826982,-0.960826982,0.365842599,0.365842599,0.152291141,1.843091886,59.28017065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06529766,1.759066082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335313797,56.98235486,76.40061146,58.74142094,568.4659912,0,0.699438998,45.61798795,-0.699438998,134.382012,0.978514138,0,632.6526206,58.74142094,671.0977057,11,13,6% +2018-11-07 22:00:00,61.96675192,214.9448545,434.5329725,768.1654068,73.50763871,603.6557459,529.0889406,74.56680528,71.29111219,3.275693094,107.5740766,0,107.5740766,2.216526521,105.35755,1.081523848,3.751495422,1.537409063,-1.537409063,0.267241256,0.267241256,0.169164697,1.281445133,41.21568042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52772872,1.605865919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.928402637,39.61807973,69.45613136,41.22394565,529.0889406,0,0.688769549,46.46721325,-0.688769549,133.5327867,0.977406779,0,586.5912487,41.22394565,613.5714966,11,14,5% +2018-11-07 23:00:00,69.82995392,228.1434408,291.7823257,669.4234024,60.96010732,477.6902645,416.3687509,61.32151359,59.12193516,2.199578421,72.58417517,0,72.58417517,1.838172155,70.74600301,1.218762612,3.981854209,2.526628316,-2.526628316,0.0980748,0.0980748,0.208923235,0.630196661,20.26929091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83025289,1.331749469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456575336,19.4836134,57.28682823,20.81536287,416.3687509,0,0.62198117,51.53904524,-0.62198117,128.4609548,0.969611714,0,461.0028465,20.81536287,474.6260852,11,15,3% +2018-11-07 00:00:00,79.34981326,239.2997136,118.388596,434.3563682,38.11421552,256.7515118,218.8941172,37.85739454,36.9649313,0.892463244,29.85396999,0,29.85396999,1.149284225,28.70468576,1.384915502,4.176567901,5.22522295,-5.22522295,0,0,0.321941613,0.287321056,9.241232825,0.266546022,1,0.189092942,0,0.940348448,0.979110411,0.724496596,1,35.81083307,0.832652508,0.04048676,0.312029739,0.891609879,0.616106475,0.961238037,0.922476074,0.198119594,8.883024499,36.00895266,9.715677007,160.548761,0,0.503950519,59.73828976,-0.503950519,120.2617102,0.95078391,0,188.6561314,9.715677007,195.0148477,11,16,3% +2018-11-07 01:00:00,89.60229573,249.0014387,0.184509426,3.094253037,0.163031618,1.237799717,1.078293194,0.159506523,0.158115613,0.00139091,0.049652451,0,0.049652451,0.004916005,0.044736447,1.563855078,4.345894947,144.0420981,-144.0420981,0,0,0.883595061,0.001229001,0.039528903,0.960163324,1,0.006942303,0,0.960620147,0.99938211,0.724496596,1,0.152133197,0.003561629,0.112672378,0.312029739,0.730577613,0.455074209,0.961238037,0.922476074,0.000884392,0.037996685,0.153017589,0.041558314,0.042955617,0,0.348482552,69.60547074,-0.348482552,110.3945293,0.906520794,0,0.191957749,0.041558314,0.219156835,11,17,14% +2018-11-07 02:00:00,101.4491093,257.8862275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770620981,4.500963766,-4.890903796,4.890903796,1,0.633452502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145517507,81.63275198,-0.145517507,98.36724802,0.706398732,0,0,0,0,11,18,0% +2018-11-07 03:00:00,113.1797751,266.6131302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975359722,4.653276951,-2.237962697,2.237962697,1,0.912867851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068593467,93.9332046,0.068593467,86.0667954,0,0,0,0,0,11,19,0% +2018-11-07 04:00:00,125.0144002,275.9880262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181912897,4.816899752,-1.283055276,1.283055276,1,0.749569064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287385675,106.7015048,0.287385675,73.29849524,0,0.876017772,0,0,0,11,20,0% +2018-11-07 05:00:00,136.6127355,287.2790949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384342034,5.013966078,-0.752115958,0.752115958,1,0.658773093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495957869,119.7329331,0.495957869,60.26706686,0,0.949184985,0,0,0,11,21,0% +2018-11-07 06:00:00,147.3566517,302.9503852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571858747,5.287481693,-0.385961483,0.385961483,1,0.59615699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680107601,132.8520519,0.680107601,47.14794807,0,0.976482221,0,0,0,11,22,0% +2018-11-07 07:00:00,155.7679692,327.8277618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.718663931,5.721673823,-0.094901996,0.094901996,1,0.546382887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827298552,145.8222259,0.827298552,34.17777412,0,0.989562326,0,0,0,11,23,0% +2018-11-08 08:00:00,158.6733418,4.79750227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769372249,0.08373221,0.16374695,-0.16374695,1,0.502151312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927514126,158.05057,0.927514126,21.94942999,0,0.996092465,0,0,0,11,0,0% +2018-11-08 09:00:00,154.1076268,39.41623763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689685491,0.687943125,0.417882299,-0.417882299,1,0.458691608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973939289,166.8907313,0.973939289,13.10926866,0,0.998662098,0,0,0,11,1,0% +2018-11-08 10:00:00,144.9210389,61.52992984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529349284,1.073899864,0.694603711,-0.694603711,1,0.411369459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963424324,164.4558673,0.963424324,15.54413268,0,0.998101788,0,0,0,11,2,0% +2018-11-08 11:00:00,133.8924635,75.82062915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336864331,1.32331962,1.034068348,-1.034068348,1,0.353317587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896698943,153.7274944,0.896698943,26.2725056,0,0.994239925,0,0,0,11,3,0% +2018-11-08 12:00:00,122.2075799,86.4976609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132924641,1.509668978,1.522151689,-1.522151689,1,0.26985042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778322247,141.1072176,0.778322247,38.89278243,0,0.985759256,0,0,0,11,4,0% +2018-11-08 13:00:00,110.3857984,95.63589358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92659563,1.669161226,2.426066667,-2.426066667,1,0.115271855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616371905,128.0516731,0.616371905,51.9483269,0,0.968880144,0,0,0,11,5,0% +2018-11-08 14:00:00,98.7401604,104.3472843,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723340903,1.821203676,5.370357311,-5.370357311,1,0,#DIV/0!,0,0,0.279659048,1,0.184098909,0,0.941005512,0.979767475,0.724496596,1,0,0,0.04224518,0.312029739,0.887194432,0.611691028,0.961238037,0.922476074,0,0,0,0,0,0,-0.421893684,114.9542015,0.421893684,65.04579845,0,0.93148673,0,0,0,11,6,0% +2018-11-08 15:00:00,87.29415229,113.3823418,8.439336539,59.83516537,5.614614179,5.508932129,0,5.508932129,5.445312846,0.063619284,14.41812363,12.20260744,2.215516184,0.169301333,2.046214851,1.523570375,1.978895178,-15.3781125,15.3781125,0,0,0.665290945,0.042325333,1.361328211,1,0.537029709,0,0.06493606,0.961238037,1,0.556910682,0.832414086,5.23424183,0.115880088,0.115824807,0.122217983,0.724496596,0.448993192,0.98744479,0.948682827,0.03066456,1.319806547,5.26490639,1.435686635,0,5.649444719,-0.203937056,101.7672824,0.203937056,78.23271763,0,0.804826312,5.26490639,5.982508394,9.180338483,11,7,74% +2018-11-08 16:00:00,77.06839825,123.3865123,158.8732056,509.6736216,44.8145099,50.51169781,5.850857397,44.66084041,43.46318708,1.197653332,39.87197089,0,39.87197089,1.351322821,38.52064807,1.345097299,2.153500892,-2.59749532,2.59749532,0.97435155,0.97435155,0.282077206,1.175600215,37.81134401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.77846862,0.979028784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.851718354,36.34570209,42.63018698,37.32473087,5.850857397,0,0.011479616,89.34225201,-0.011479616,90.65774799,0,0,42.63018698,37.32473087,67.05847684,11,8,57% +2018-11-08 17:00:00,67.92259415,134.989463,326.9341038,698.7623891,64.29806568,217.9879319,153.1641228,64.82380913,62.35924176,2.464567372,81.2077825,0,81.2077825,1.938823915,79.26895859,1.185472904,2.356010584,-1.042372746,1.042372746,0.708409928,0.708409928,0.196669803,1.887259445,60.70075117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.94207513,1.404671326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.367313043,58.34787089,61.30938817,59.75254221,153.1641228,0,0.219193427,77.33833648,-0.219193427,102.6616635,0.82189097,0,187.1935977,59.75254221,226.3004415,11,9,21% +2018-11-08 18:00:00,60.61559789,148.7273988,458.4316044,780.8451324,75.29700868,391.0223762,314.539999,76.48237713,73.02652605,3.455851076,113.4225326,0,113.4225326,2.270482628,111.15205,1.057941761,2.595782797,-0.34713706,0.34713706,0.589517623,0.589517623,0.164249166,2.270283389,73.02011783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.19587454,1.644956935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.644812587,70.18971471,71.84068713,71.83467165,314.539999,0,0.402819952,66.2454139,-0.402819952,113.7545861,0.925875066,0,363.0654295,71.83467165,410.0797854,11,10,13% +2018-11-08 19:00:00,55.93337178,164.7081617,538.8640892,817.0787495,81.17203678,531.8779613,449.0913758,82.7865855,78.72440038,4.062185122,133.1014736,0,133.1014736,2.447636402,130.6538372,0.976221499,2.874699726,0.121384589,-0.121384589,0.509395702,0.509395702,0.150635454,2.369464878,76.21013545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67288807,1.773304241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716669238,73.25608099,77.38955731,75.02938523,449.0913758,0,0.549630468,56.65833474,-0.549630468,123.3416653,0.959029788,0,508.0815645,75.02938523,557.1867965,11,11,10% +2018-11-08 20:00:00,54.58203898,182.1260635,561.3711785,825.891535,82.73674906,620.9465251,536.4727412,84.47378387,80.24193081,4.231853068,138.6057598,0,138.6057598,2.49481825,136.1109416,0.952636293,3.178699462,0.529640282,-0.529640282,0.439579867,0.439579867,0.147383322,2.209774003,71.07392797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.13159604,1.80748733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.600973743,68.31896299,78.73256978,70.12645032,536.4727412,0,0.649568035,49.49095855,-0.649568035,130.5090414,0.973025769,0,600.7343713,70.12645032,646.6307305,11,12,8% +2018-11-08 21:00:00,56.80612905,199.3194271,524.1508102,811.0319154,80.13215854,645.9930582,564.3259097,81.66714851,77.7158783,3.951270209,129.5027126,0,129.5027126,2.416280236,127.0864323,0.991453987,3.478780267,0.968534446,-0.968534446,0.364524545,0.364524545,0.152879967,1.82420667,58.67275717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70345829,1.750586806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321631522,56.39848592,76.02508981,58.14907272,564.3259097,0,0.69581221,45.90802474,-0.69581221,134.0919753,0.978141531,0,628.0156992,58.14907272,666.0731043,11,13,6% +2018-11-08 22:00:00,62.21410063,214.7733862,430.2000532,766.0154294,73.10746105,599.0421968,524.8961658,74.14603108,70.90300136,3.243029718,106.5114433,0,106.5114433,2.204459688,104.3069836,1.085840897,3.748502735,1.550269868,-1.550269868,0.265041928,0.265041928,0.169938289,1.264585211,40.67340736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15466183,1.59712354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91618768,39.09682625,69.07084951,40.69394979,524.8961658,0,0.685229234,46.74636225,-0.685229234,133.2536378,0.977031718,0,581.9110521,40.69394979,608.5444283,11,14,5% +2018-11-08 23:00:00,70.04780656,227.9400562,287.8164023,666.1224515,60.51146682,472.9280419,412.0715374,60.85650445,58.68682284,2.169681614,71.60906294,0,71.60906294,1.824643988,69.78441895,1.222564858,3.978304478,2.552964351,-2.552964351,0.093571073,0.093571073,0.210243288,0.61649696,19.82866143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41200637,1.321948358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.446649949,19.06006358,56.85865632,20.38201194,412.0715374,0,0.618612293,51.78513254,-0.618612293,128.2148675,0.969173931,0,456.2276481,20.38201194,469.5672672,11,15,3% +2018-11-08 00:00:00,79.54057511,239.0789022,115.1213556,427.6944252,37.47806514,251.4208447,214.2050481,37.2157966,36.34796319,0.867833406,29.04260744,0,29.04260744,1.130101943,27.9125055,1.388244925,4.172714015,5.318817277,-5.318817277,0,0,0.325552674,0.282525486,9.086990798,0.27505639,1,0.185842248,0,0.940776769,0.979538732,0.724496596,1,35.21670578,0.818755011,0.041630191,0.312029739,0.88873591,0.613232506,0.961238037,0.922476074,0.194663303,8.734761196,35.41136908,9.553516207,155.286581,0,0.500836662,59.94463145,-0.500836662,120.0553686,0.950167053,0,182.9595621,9.553516207,189.2121474,11,16,3% +2018-11-08 01:00:00,89.74750064,248.7678602,0.094826245,2.231845189,0.084990658,0.855537247,0.77239453,0.083142716,0.082427876,0.00071484,0.025554503,0,0.025554503,0.002562782,0.022991721,1.566389382,4.341818234,226.8606195,-226.8606195,0,0,0.896277793,0.000640695,0.020606969,0.974532219,1,0.004407964,0,0.960847063,0.999609026,0.724496596,1,0.079281954,0.001856727,0.11381904,0.312029739,0.728356436,0.452853032,0.961238037,0.922476074,0.000462159,0.019808202,0.079744113,0.021664929,0.019671175,0,0.346078901,69.75233019,-0.346078901,110.2476698,0.905524275,0,0.09755684,0.021664929,0.111736102,11,17,15% +2018-11-08 02:00:00,101.6062414,257.637933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773363454,4.496630209,-4.825729063,4.825729063,1,0.644598037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143002824,81.77835582,-0.143002824,98.22164418,0.700356554,0,0,0,0,11,18,0% +2018-11-08 03:00:00,113.3293954,266.3434667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977971089,4.648570435,-2.225004988,2.225004988,1,0.910651952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.07076663,94.05802111,0.07076663,85.94197889,0,0,0,0,0,11,19,0% +2018-11-08 04:00:00,125.1649499,275.6861987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184540484,4.81163187,-1.279166723,1.279166723,1,0.748904083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289228513,106.8117739,0.289228513,73.18822614,0,0.877126311,0,0,0,11,20,0% +2018-11-08 05:00:00,136.7761853,286.9315146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387194771,5.007899657,-0.75126912,0.75126912,1,0.658628276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497504251,119.8350195,0.497504251,60.16498049,0,0.949498346,0,0,0,11,21,0% +2018-11-08 06:00:00,147.5518003,302.554496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.575264733,5.280572122,-0.386570561,0.386570561,1,0.596261149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681411753,132.9540611,0.681411753,47.04593885,0,0.976622927,0,0,0,11,22,0% +2018-11-08 07:00:00,156.0184407,327.4763737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723035485,5.715540943,-0.096460744,0.096460744,1,0.546649448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828431327,145.9379329,0.828431327,34.06206708,0,0.989644967,0,0,0,11,23,0% +2018-11-09 08:00:00,158.9618264,4.801532429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774407255,0.08380255,0.161342631,-0.161342631,1,0.502562475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928558127,158.2111574,0.928558127,21.78884261,0,0.996153075,0,0,0,11,0,0% +2018-11-09 09:00:00,154.3622046,39.72751907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.69412871,0.693376011,0.414486593,-0.414486593,1,0.459272308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974983185,167.1570969,0.974983185,12.84290315,0,0.998717064,0,0,0,11,1,0% +2018-11-09 10:00:00,145.1323348,61.87164511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533037094,1.079863921,0.689771102,-0.689771102,1,0.412195884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964556735,164.6998516,0.964556735,15.30014835,0,0.998162717,0,0,0,11,2,0% +2018-11-09 11:00:00,134.0799163,76.12438163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340136001,1.3286211,1.026750322,-1.026750322,1,0.354569043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89800233,153.8967123,0.89800233,26.10328769,0,0.994320857,0,0,0,11,3,0% +2018-11-09 12:00:00,122.3861987,86.76454249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136042127,1.51432694,1.50957933,-1.50957933,1,0.27200042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77986722,141.2484198,0.77986722,38.7515802,0,0.985886522,0,0,0,11,4,0% +2018-11-09 13:00:00,110.5654795,95.87554448,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929731655,1.673343923,2.398116561,-2.398116561,1,0.120051605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618212341,128.1857073,0.618212341,51.81429268,0,0.96912164,0,0,0,11,5,0% +2018-11-09 14:00:00,98.92809155,104.5673002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72662092,1.825043679,5.241692503,-5.241692503,1,0,#DIV/0!,0,0,0.268058026,1,0.188512803,0,0.94042506,0.979187024,0.724496596,1,0,0,0.04069051,0.312029739,0.891097005,0.615593601,0.961238037,0.922476074,0,0,0,0,0,0,-0.424063,115.0913688,0.424063,64.90863124,0,0.932092991,0,0,0,11,6,0% +2018-11-09 15:00:00,87.48472199,113.5865877,7.179367049,52.17625035,4.889571417,4.7962539,0,4.7962539,4.742132798,0.054121101,12.64996706,10.76180778,1.88815928,0.147438619,1.740720661,1.526896444,1.982459942,-16.48906226,16.48906226,0,0,0.681058843,0.036859655,1.1855332,1,0.574458924,0,0.060572075,0.961238037,1,0.567128825,0.842632229,4.558318421,0.100902102,0.115824807,0.133752545,0.724496596,0.448993192,0.986079574,0.947317611,0.026704694,1.14947493,4.585023116,1.250377032,0,4.579591264,-0.206258742,101.9031946,0.206258742,78.09680544,0,0.807586033,4.585023116,4.948790972,7.823907831,11,7,71% +2018-11-09 16:00:00,77.28844718,123.573954,154.9574491,503.4262853,44.18206853,48.379617,4.361666149,44.01795085,42.84981615,1.168134705,38.90347994,0,38.90347994,1.332252381,37.57122756,1.348937877,2.156772367,-2.632355642,2.632355642,0.980313017,0.980313017,0.285123876,1.151694664,37.04245933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.18887315,0.965212315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.834398864,35.60662089,42.02327202,36.5718332,4.361666149,0,0.008663962,89.50358534,-0.008663962,90.49641466,0,0,42.02327202,36.5718332,65.95880541,11,8,57% +2018-11-09 17:00:00,68.16613229,135.1519042,322.5184776,695.5463214,63.83325355,214.6301458,150.2904198,64.33972596,61.90844544,2.431280517,80.123147,0,80.123147,1.924808114,78.19833889,1.189723447,2.358845719,-1.048811435,1.048811435,0.709511008,0.709511008,0.197921229,1.864804183,59.97851274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50875256,1.394516927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351044282,57.65362784,60.85979684,59.04814477,150.2904198,0,0.216075357,77.52137622,-0.216075357,102.4786238,0.818599249,0,183.8874216,59.04814477,222.5332514,11,9,21% +2018-11-09 18:00:00,60.88224568,148.8469332,453.8061555,778.7053846,74.8833544,387.1109497,311.0646222,76.04632746,72.62534497,3.420982489,112.2885658,0,112.2885658,2.258009425,110.0305564,1.062595643,2.597869066,-0.347273187,0.347273187,0.589540902,0.589540902,0.165011764,2.248514231,72.31994688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81024403,1.635920142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629040906,69.51668376,71.43928493,71.1526039,311.0646222,0,0.399463813,66.45533688,-0.399463813,113.5446631,0.924832217,0,359.121869,71.1526039,405.6898252,11,10,13% +2018-11-09 19:00:00,56.21636677,164.759464,534.1689715,815.365617,80.778219,527.6488125,445.2795635,82.369249,78.34245766,4.026791341,131.9512129,0,131.9512129,2.435761343,129.5154515,0.981160694,2.875595121,0.124019936,-0.124019936,0.508945031,0.508945031,0.151222222,2.348438623,75.53385883,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.3057502,1.764700801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701435788,72.60601817,77.00718599,74.37071898,445.2795635,0,0.546110302,56.8994295,-0.546110302,123.1005705,0.958443405,0,503.7824468,74.37071898,552.456595,11,11,10% +2018-11-09 20:00:00,54.86659469,182.0908335,556.7213818,824.2996963,82.35161019,616.536582,532.4713758,84.06520623,79.8684053,4.196800936,137.4667494,0,137.4667494,2.483204892,134.9835445,0.957602727,3.178084583,0.534439441,-0.534439441,0.438759162,0.438759162,0.147922485,2.189803862,70.43161961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.77254911,1.799073491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586505444,67.70155177,78.35905456,69.50062526,532.4713758,0,0.645968181,49.76169474,-0.645968181,130.2383053,0.972596807,0,596.2390143,69.50062526,641.7257836,11,12,8% +2018-11-09 21:00:00,57.0749265,199.203535,519.6527236,809.3291475,79.74847916,641.4969516,560.2358216,81.26113,77.34376827,3.917361733,128.4005301,0,128.4005301,2.404710887,125.9958192,0.996145388,3.476757568,0.976105567,-0.976105567,0.363229807,0.363229807,0.15346495,1.805714599,58.07798861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.34577197,1.742204852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30823408,55.82677175,75.65400605,57.5689766,560.2358216,0,0.69222247,46.19370486,-0.69222247,133.8062951,0.977768886,0,623.4351614,57.5689766,661.1129052,11,13,6% +2018-11-09 22:00:00,62.45594712,214.6019122,425.9568083,763.8854652,72.71289303,594.5020202,520.7706468,73.73137337,70.52033103,3.211042346,105.4707217,0,105.4707217,2.192562007,103.2781597,1.090061915,3.745509949,1.562947879,-1.562947879,0.262873861,0.262873861,0.17070485,1.248147791,40.14472342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78682455,1.58850371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904278825,38.58863513,68.69110338,40.17713884,520.7706468,0,0.681739175,47.02030175,-0.681739175,132.9796982,0.976658168,0,577.3060093,40.17713884,603.6011431,11,14,5% +2018-11-09 23:00:00,70.2601391,227.7375318,283.950507,662.8583162,60.07000366,468.2600976,407.8608874,60.39921028,58.25867142,2.140538863,70.65842014,0,70.65842014,1.811332245,68.8470879,1.22627076,3.974769759,2.579049183,-2.579049183,0.089110304,0.089110304,0.211550965,0.603225038,19.4017908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.00045094,1.312304046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437034487,18.6497393,56.43748543,19.96204335,407.8608874,0,0.615306284,52.0258212,-0.615306284,127.9741788,0.968739656,0,451.5485014,19.96204335,464.6132595,11,15,3% +2018-11-09 00:00:00,79.7258104,238.8593934,111.9629661,421.1194061,36.85253839,246.2172741,209.6319516,36.58532252,35.74129839,0.844024132,28.25795739,0,28.25795739,1.111240004,27.14671739,1.39147789,4.168882865,5.412811921,-5.412811921,0,0,0.329149358,0.277810001,8.935324596,0.283406684,1,0.182686991,0,0.941190274,0.979952237,0.724496596,1,34.63213287,0.8050896,0.042744167,0.312029739,0.885945911,0.610442507,0.961238037,0.922476074,0.191278301,8.588973874,34.82341118,9.394063474,150.2208554,0,0.49779694,60.14564657,-0.49779694,119.8543534,0.949557438,0,177.4667418,9.394063474,183.6149684,11,16,3% +2018-11-09 01:00:00,89.88677297,248.53581,0.03418755,1.593142132,0.031039209,0.578027181,0.547666198,0.030360982,0.030103262,0.00025772,0.009225114,0,0.009225114,0.000935947,0.008289167,1.568820142,4.337768194,505.8597669,-505.8597669,0,0,0.907909732,0.000233987,0.007525816,0.988502702,1,0.00197683,0,0.961063279,0.999825243,0.724496596,1,0.028944556,0.00067809,0.114923487,0.312029739,0.726227055,0.450723651,0.961238037,0.922476074,0.000169186,0.0072341,0.029113742,0.00791219,0.006296681,0,0.343764808,69.89358674,-0.343764808,110.1064133,0.90455172,0,0.034809416,0.00791219,0.039987786,11,17,15% +2018-11-09 02:00:00,101.757703,257.3912728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776006957,4.492325177,-4.764524297,4.764524297,1,0.655064669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.140577273,81.91874807,-0.140577273,98.08125193,0.694323732,0,0,0,0,11,18,0% +2018-11-09 03:00:00,113.4731539,266.0754282,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980480148,4.64389228,-2.212748781,2.212748781,1,0.908556017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072847813,94.17757271,0.072847813,85.82242729,0,0,0,0,0,11,19,0% +2018-11-09 04:00:00,125.309341,275.3857496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187060584,4.806388044,-1.275535831,1.275535831,1,0.748283163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290979967,106.9166343,0.290979967,73.08336566,0,0.878166865,0,0,0,11,20,0% +2018-11-09 05:00:00,136.9330684,286.584397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389932899,5.001841313,-0.750546413,0.750546413,1,0.658504685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498963249,119.9314328,0.498963249,60.06856722,0,0.949792219,0,0,0,11,21,0% +2018-11-09 06:00:00,147.7399959,302.1561917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.578549365,5.2736204,-0.387246414,0.387246414,1,0.596376727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682635641,133.0499462,0.682635641,46.9500538,0,0.976754484,0,0,0,11,22,0% +2018-11-09 07:00:00,156.2623635,327.1160332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72729274,5.709251816,-0.098054952,0.098054952,1,0.546922074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829493585,146.046752,0.829493585,33.95324799,0,0.989722258,0,0,0,11,23,0% +2018-11-10 08:00:00,159.2457806,4.795485242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779363191,0.083697007,0.158924396,-0.158924396,1,0.502976017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929543314,158.3637376,0.929543314,21.63626238,0,0.996210145,0,0,0,11,0,0% +2018-11-10 09:00:00,154.6138139,40.03219849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698520122,0.69869367,0.411096524,-0.411096524,1,0.459852044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975981116,167.4169138,0.975981116,12.58308615,0,0.998769501,0,0,0,11,1,0% +2018-11-10 10:00:00,145.3418067,62.20690352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536693067,1.085715284,0.684968646,-0.684968646,1,0.413017152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965656289,164.9404469,0.965656289,15.05955306,0,0.998221742,0,0,0,11,2,0% +2018-11-10 11:00:00,134.2663501,76.42196324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343389884,1.333814879,1.019505147,-1.019505147,1,0.355808041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899285323,154.0642846,0.899285323,25.93571544,0,0.994400294,0,0,0,11,3,0% +2018-11-10 12:00:00,122.5642608,87.02559095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139149897,1.518883096,1.497184447,-1.497184447,1,0.27412007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781402757,141.3891905,0.781402757,38.61080946,0,0.986012511,0,0,0,11,4,0% +2018-11-10 13:00:00,110.7447982,96.10954728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932861358,1.677428043,2.370759381,-2.370759381,1,0.124729958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62005204,128.3199348,0.62005204,51.68006519,0,0.969361607,0,0,0,11,5,0% +2018-11-10 14:00:00,99.1156332,104.7816614,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72989414,1.828784987,5.11880218,-5.11880218,1,0,#DIV/0!,0,0,0.256623322,1,0.192928336,0,0.939840078,0.978602041,0.724496596,1,0,0,0.039143132,0.312029739,0.895000233,0.619496828,0.961238037,0.922476074,0,0,0,0,0,0,-0.426237418,115.2290131,0.426237418,64.77098689,0,0.932694485,0,0,0,11,6,0% +2018-11-10 15:00:00,87.67378549,113.7849942,6.034664027,45.01732134,4.207458259,4.126079715,0,4.126079715,4.080587869,0.045491846,10.97948341,9.389438857,1.590044551,0.12687039,1.46317416,1.530196225,1.985922788,-17.77199361,17.77199361,0,0,0.697214997,0.031717598,1.020146967,1,0.610795534,0,0.056209036,0.961238037,1,0.577496069,0.852999473,3.922416272,0.086871103,0.115824807,0.145458028,0.724496596,0.448993192,0.984663076,0.945901113,0.022979291,0.989110777,3.945395564,1.07598188,0,3.654411535,-0.208573913,102.038793,0.208573913,77.96120702,0,0.810276828,3.945395564,4.037066867,6.587575087,11,7,67% +2018-11-10 16:00:00,77.50735864,123.7552478,151.0716818,497.0852272,43.54507667,46.27484876,2.903974658,43.3708741,42.23203195,1.138842151,37.94212304,0,37.94212304,1.313044726,36.62907831,1.352758603,2.15993654,-2.668514135,2.668514135,0.986496483,0.986496483,0.288241159,1.127896457,36.27702717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,40.59503548,0.951296434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817157143,34.87085838,41.41219262,35.82215481,2.903974658,0,0.005842006,89.66527583,-0.005842006,90.33472417,0,0,41.41219262,35.82215481,64.85707651,11,8,57% +2018-11-10 17:00:00,68.40781404,135.3079157,318.1328982,692.2993654,63.3682924,211.2842146,147.4284899,63.85572475,61.45750458,2.398220167,79.04579221,0,79.04579221,1.91078782,77.13500439,1.193941589,2.361568633,-1.055515281,1.055515281,0.710657433,0.710657433,0.199188115,1.842531052,59.26213228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.07529105,1.384359271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334907475,56.96501569,60.41019853,58.34937496,147.4284899,0,0.212954825,77.70443105,-0.212954825,102.295569,0.815208419,0,180.5951446,58.34937496,218.7836435,11,9,21% +2018-11-10 18:00:00,61.14603729,148.96012,449.2206213,776.5558507,74.47123882,383.2155304,307.6034594,75.612071,72.2256562,3.386414795,111.1643231,0,111.1643231,2.24558262,108.9187405,1.067199675,2.599844549,-0.347547252,0.347547252,0.58958777,0.58958777,0.165778763,2.22699239,71.6277305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.42604798,1.626916964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.613448406,68.85129905,71.03949638,70.47821601,307.6034594,0,0.396112474,66.66462569,-0.396112474,113.3353743,0.923773225,0,355.1953362,70.47821601,401.3219191,11,10,13% +2018-11-10 19:00:00,56.49538546,164.8053392,529.5264266,813.6521773,80.38705313,523.4464845,441.4916038,81.95488076,77.96308688,3.991793876,130.813779,0,130.813779,2.423966249,128.3898128,0.986030488,2.876395795,0.126541582,-0.126541582,0.508513805,0.508513805,0.151809332,2.327718778,74.86743739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94108458,1.756155296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.686424331,71.96542854,76.62750891,73.72158384,441.4916038,0,0.542604833,57.13886222,-0.542604833,122.8611378,0.957851908,0,499.511084,73.72158384,547.7603862,11,11,10% +2018-11-10 20:00:00,55.14623936,182.052033,552.1378391,822.7139837,81.97012476,612.1678878,528.5072165,83.66067131,79.49842306,4.162248255,136.3439132,0,136.3439132,2.471701699,133.8722115,0.962483447,3.177407386,0.539119422,-0.539119422,0.437958839,0.437958839,0.148459531,2.170192935,69.80086479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41690811,1.790739467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.572297394,67.09524624,77.98920551,68.88598571,528.5072165,0,0.642394838,50.02937076,-0.642394838,129.9706292,0.972166249,0,591.7860836,68.88598571,636.8705835,11,12,8% +2018-11-10 21:00:00,57.33829405,199.0861516,515.234396,807.6391838,79.36948241,637.0588652,556.1986111,80.86025419,76.97619968,3.884054513,127.3178272,0,127.3178272,2.393282737,124.9245445,1.000742019,3.474708841,0.983531651,-0.983531651,0.361959871,0.361959871,0.154045388,1.787624479,57.49614815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.99245106,1.733925196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295127849,55.26748457,75.28757891,57.00140977,556.1986111,0,0.688672147,46.47491047,-0.688672147,133.5250895,0.977396512,0,618.9141613,57.00140977,656.220444,11,13,6% +2018-11-10 22:00:00,62.69219863,214.4304795,421.8055474,761.778105,72.32419169,590.0384399,516.715341,73.32309885,70.14335047,3.179748388,104.4524797,0,104.4524797,2.180841227,102.2716385,1.094185281,3.742517884,1.575427259,-1.575427259,0.260739761,0.260739761,0.171463349,1.232139137,39.62983008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4244565,1.580012045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.89268061,38.09370007,68.31713711,39.67371212,516.715341,0,0.678301644,47.28893035,-0.678301644,132.7110696,0.976286483,0,572.7793399,39.67371212,598.744991,11,14,5% +2018-11-10 23:00:00,70.46686832,227.5359275,280.1864635,659.6355345,59.63607424,463.6899532,403.7399627,59.94999048,57.83782657,2.112163913,69.73269963,0,69.73269963,1.798247672,67.93445196,1.229878866,3.971251101,2.604844485,-2.604844485,0.084699048,0.084699048,0.212844238,0.590382723,18.98873781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.59591887,1.302824317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427730273,18.25269706,56.02364914,19.55552137,403.7399627,0,0.612065211,52.26101856,-0.612065211,127.7389814,0.968309358,0,446.9688332,19.55552137,459.7675309,11,15,3% +2018-11-10 00:00:00,79.90544863,238.6412649,108.9140835,414.6424406,36.23841653,241.1455433,205.1788084,35.96673493,35.14569457,0.821040367,27.50020248,0,27.50020248,1.092721964,26.40748051,1.394613169,4.165075804,5.507041976,-5.507041976,0,0,0.332724799,0.273180491,8.786423642,0.291587006,1,0.179628435,0,0.941588995,0.980350958,0.724496596,1,34.05788166,0.791673343,0.043827912,0.312029739,0.883241043,0.607737639,0.961238037,0.922476074,0.187967533,8.445844612,34.24584919,9.237517956,145.351334,0,0.49483311,60.34125398,-0.49483311,119.658746,0.948955832,0,172.1778452,9.237517956,178.223616,11,16,4% +2018-11-10 01:00:00,90.02040336,248.3053851,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571152433,4.333746521,-2806.926116,2806.926116,1,0,#DIV/0!,0,0,1,0.99791468,0,0.000356262,0.961238037,1,0.72348686,0.998990265,0,0,0.115824807,0.310882218,0.724496596,0.448993192,0.961419519,0.922657555,0,0,0,0,0,0,0.341535907,70.02952252,-0.341535907,109.9704775,0.903602509,0,0,0,0,11,17,0% +2018-11-10 02:00:00,101.9034433,257.1463675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778550605,4.488050772,-4.707074303,4.707074303,1,0.664889196,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.138241913,82.0538739,-0.138241913,97.9461261,0.688315191,0,0,0,0,11,18,0% +2018-11-10 03:00:00,113.6110086,265.8091665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982886166,4.639245137,-2.201177328,2.201177328,1,0.906577182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074836365,94.2918203,0.074836365,85.7081797,0,0,0,0,0,11,19,0% +2018-11-10 04:00:00,125.4475359,275.0868777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189472539,4.801171744,-1.2721592,1.2721592,1,0.747705725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292639787,107.0160625,0.292639787,72.98393749,0,0.879141483,0,0,0,11,20,0% +2018-11-10 05:00:00,137.0833415,286.2380133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392555659,4.995795776,-0.749946634,0.749946634,1,0.658402117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50033497,120.0221639,0.50033497,59.9778361,0,0.950066949,0,0,0,11,21,0% +2018-11-10 06:00:00,147.9211651,301.7558207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581711365,5.266632608,-0.387988283,0.387988283,1,0.596503594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683779667,133.1397103,0.683779667,46.86028968,0,0.97687703,0,0,0,11,22,0% +2018-11-10 07:00:00,156.499604,326.746911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731433368,5.702809417,-0.099683869,0.099683869,1,0.547200635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830485943,146.1486885,0.830485943,33.85131154,0,0.989794285,0,0,0,11,23,0% +2018-11-11 08:00:00,159.5250874,4.778996563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.784238015,0.083409225,0.156493144,-0.156493144,1,0.503391786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930470418,158.5082637,0.930470418,21.49173632,0,0.99626374,0,0,0,11,0,0% +2018-11-11 09:00:00,154.8624054,40.32990424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.702858861,0.703889616,0.407713251,-0.407713251,1,0.460430617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97693382,167.6699789,0.97693382,12.33002106,0,0.99881946,0,0,0,11,1,0% +2018-11-11 10:00:00,145.549428,62.53544767,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540316744,1.091449461,0.68019788,-0.68019788,1,0.413833001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966723625,165.1776399,0.966723625,14.82236012,0,0.99827891,0,0,0,11,2,0% +2018-11-11 11:00:00,134.4517342,76.71319699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346625447,1.338897867,1.012334848,-1.012334848,1,0.357034235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900548364,154.2302411,0.900548364,25.76975889,0,0.994478273,0,0,0,11,3,0% +2018-11-11 12:00:00,122.7417223,87.28067374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142247184,1.52333513,1.484969259,-1.484969259,1,0.27620899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782929018,141.5295414,0.782929018,38.47045865,0,0.98613725,0,0,0,11,4,0% +2018-11-11 13:00:00,110.9236947,96.33779626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935983691,1.681411739,2.343990858,-2.343990858,1,0.129307645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621890812,128.4543434,0.621890812,51.54565657,0,0.969600034,0,0,0,11,5,0% +2018-11-11 14:00:00,99.30270833,104.9902819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733159217,1.832426102,5.001374999,-5.001374999,1,0,#DIV/0!,0,0,0.245358089,1,0.197342689,0,0.939250947,0.978012911,0.724496596,1,0,0,0.037603923,0.312029739,0.89890161,0.623398206,0.961238037,0.922476074,0,0,0,0,0,0,-0.428416356,115.3671,0.428416356,64.63289997,0,0.933291104,0,0,0,11,6,0% +2018-11-11 15:00:00,87.86117014,113.9774946,5.005310148,38.39525389,3.572362643,3.502374871,0,3.502374871,3.464642729,0.037732142,9.418118518,8.096803209,1.321315309,0.107719914,1.213595395,1.533466704,1.989282555,-19.26829815,19.26829815,0,0,0.713714543,0.026929979,0.866160682,1,0.646046108,0,0.051852199,0.961238037,1,0.587999361,0.863502765,3.330346375,0.073843602,0.115824807,0.157321021,0.724496596,0.448993192,0.9831958,0.944433837,0.019510678,0.839721865,3.349857053,0.913565468,0,2.86589501,-0.210880314,102.1739459,0.210880314,77.82605411,0,0.812898684,3.349857053,3.24324775,5.472497841,11,7,63% +2018-11-11 16:00:00,77.72502119,123.9303512,147.2183797,490.6528488,42.90377451,44.19925083,1.479389092,42.71986174,41.61006741,1.109794332,36.9885077,0,36.9885077,1.2937071,35.6948006,1.356557531,2.162992672,-2.706012043,2.706012043,0.992909003,0.992909003,0.291429471,1.104218202,35.5154531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.99717951,0.93728639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800002328,34.13880441,40.79718184,35.0760908,1.479389092,0,0.003015144,89.8272447,-0.003015144,90.1727553,0,0,40.79718184,35.0760908,63.75378175,11,8,56% +2018-11-11 17:00:00,68.64751607,135.4574873,313.7799215,689.0233298,62.90341046,207.9522726,144.5802265,63.37204614,61.00664055,2.365405589,77.97634469,0,77.97634469,1.896769914,76.07957478,1.198125179,2.364179149,-1.062487858,1.062487858,0.711849814,0.711849814,0.200469839,1.82045218,58.55199988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64190339,1.374203346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318911408,56.28240942,59.9608148,57.65661276,144.5802265,0,0.209833572,77.88740068,-0.209833572,102.1125993,0.811715918,0,177.3188861,57.65661276,215.053986,11,9,21% +2018-11-11 18:00:00,61.40684493,149.0669868,444.6777369,774.398134,74.06088436,379.3386285,304.1587845,75.17984405,71.82767544,3.352168614,110.0504745,0,110.0504745,2.233208919,107.8172656,1.071751627,2.601709725,-0.347962162,0.347962162,0.589658724,0.589658724,0.166549567,2.205729916,70.94385626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04349373,1.61795226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598043816,68.19393312,70.64153755,69.81188538,304.1587845,0,0.392767972,66.8731593,-0.392767972,113.1268407,0.922698378,0,351.2883545,69.81188538,396.9788373,11,10,13% +2018-11-11 19:00:00,56.77030602,164.8458418,524.9392632,811.9399545,79.99875863,519.2737839,437.7300691,81.54371479,77.58650089,3.957213901,129.6898596,0,129.6898596,2.412257737,127.2776019,0.990828757,2.877102698,0.128945583,-0.128945583,0.508102696,0.508102696,0.152396218,2.307316822,74.21124034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.5790958,1.747672519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.671643183,71.33466697,76.25073898,73.08233949,437.7300691,0,0.539116306,57.37649778,-0.539116306,122.6235022,0.957255634,0,495.2703138,73.08233949,543.1012434,11,11,10% +2018-11-11 20:00:00,55.42086278,182.0097177,547.6233101,821.1360005,81.59251334,607.8434444,524.5830305,83.26041385,79.13219802,4.128215829,135.237927,0,135.237927,2.460315321,132.7776117,0.96727653,3.176668845,0.543674546,-0.543674546,0.437179866,0.437179866,0.148993865,2.150951594,69.18199712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.06487867,1.782490075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.558357108,66.50036709,77.62323578,68.28285717,524.5830305,0,0.638850361,50.29385285,-0.638850361,129.7061472,0.971734411,0,587.3786178,68.28285717,632.0683822,11,12,8% +2018-11-11 21:00:00,57.59613147,198.9673228,510.8984126,805.9639305,78.99539754,632.6819136,552.2171507,80.46476288,76.61339485,3.851368038,126.2552378,0,126.2552378,2.382002698,123.8732351,1.005242131,3.472634887,0.990803812,-0.990803812,0.360716259,0.360716259,0.154620558,1.769944969,56.92751434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.64370926,1.725752846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282319105,54.72089213,74.92602836,56.44664497,552.2171507,0,0.685163603,46.75152503,-0.685163603,133.248475,0.977024728,0,614.45584,56.44664497,651.3990403,11,13,6% +2018-11-11 22:00:00,62.92276317,214.2591355,417.7485491,759.696004,71.94161594,585.6546663,512.7331905,72.92147581,69.77231079,3.14916502,103.4572774,0,103.4572774,2.169305157,101.2879722,1.098209392,3.739527368,1.58769176,-1.58769176,0.258642408,0.258642408,0.172212725,1.216565336,39.12892312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.06779905,1.571654202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881397444,37.61220924,67.94919649,39.18386344,512.7331905,0,0.674918899,47.55214745,-0.674918899,132.4478526,0.975917025,0,568.3342463,39.18386344,593.9793013,11,14,5% +2018-11-11 23:00:00,70.66791198,227.3353039,276.5260537,656.4587516,59.21003922,459.2211168,399.7119085,59.50920827,57.42463807,2.084570198,68.83234438,0,68.83234438,1.785401144,67.04694323,1.23338774,3.967749558,2.630310497,-2.630310497,0.080344103,0.080344103,0.214121015,0.577971596,18.58955328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.19874637,1.293517051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.418738453,17.8689857,55.61748482,19.16250275,399.7119085,0,0.608891126,52.49063272,-0.608891126,127.5093673,0.967883513,0,442.4920512,19.16250275,455.0335259,11,15,3% +2018-11-11 00:00:00,80.07942068,238.4245948,105.9752683,408.2748172,35.63649153,236.2103383,200.8495321,35.36080617,34.56191983,0.798886336,26.76950243,0,26.76950243,1.074571704,25.69493073,1.397649554,4.161294197,5.601327795,-5.601327795,0,0,0.336271775,0.268642926,8.640479957,0.299587348,1,0.176667834,0,0.941972963,0.980734926,0.724496596,1,33.49472835,0.778523542,0.04488065,0.312029739,0.880622454,0.60511905,0.961238037,0.922476074,0.184734023,8.305557992,33.67946237,9.084081534,140.6775534,0,0.491946904,60.53137358,-0.491946904,119.4686264,0.948363015,0,167.0928511,9.084081534,173.0382008,11,16,4% +2018-11-11 01:00:00,90.14875295,248.0766834,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573392556,4.329754922,-384.9562061,384.9562061,1,0,#DIV/0!,0,0,1,0.984700483,0,0.002597692,0.961238037,1,0.717156768,0.992660172,0,0,0.115824807,0.303688798,0.724496596,0.448993192,0.962551047,0.923789084,0,0,0,0,0,0,0.339386657,70.1604897,-0.339386657,109.8395103,0.90267541,0,0,0,0,11,17,0% +2018-11-11 02:00:00,102.0434134,256.9033381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780993545,4.48380911,-4.653183566,4.653183566,1,0.674105055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135997773,82.18367979,-0.135997773,97.81632021,0.682346921,0,0,0,0,11,18,0% +2018-11-11 03:00:00,113.7429199,265.5448346,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985188453,4.634631675,-2.190275033,2.190275033,1,0.90471278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076731669,94.40072642,0.076731669,85.59927358,0,0,0,0,0,11,19,0% +2018-11-11 04:00:00,125.5795001,274.7897837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191775749,4.795986476,-1.269033644,1.269033644,1,0.747171224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294207751,107.1100368,0.294207751,72.88996324,0,0.880052064,0,0,0,11,20,0% +2018-11-11 05:00:00,137.2269653,285.8926389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395062368,4.989767856,-0.749468642,0.749468642,1,0.658320376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50161955,120.1072065,0.50161955,59.89279348,0,0.950322864,0,0,0,11,21,0% +2018-11-11 06:00:00,148.0952397,301.3537452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584749539,5.259615067,-0.388795427,0.388795427,1,0.596641623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684844263,133.2233605,0.684844263,46.77663949,0,0.9769907,0,0,0,11,22,0% +2018-11-11 07:00:00,156.7300312,326.3692066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735455081,5.696217232,-0.10134675,0.10134675,1,0.547485005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831409039,146.2437536,0.831409039,33.75624642,0,0.98986113,0,0,0,11,23,0% +2018-11-12 08:00:00,159.7996288,4.751698732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789029666,0.082932788,0.154049777,-0.154049777,1,0.503809626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931340187,158.6446987,0.931340187,21.35530128,0,0.996313924,0,0,0,11,0,0% +2018-11-12 09:00:00,155.10793,40.62025392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.707144074,0.708957174,0.404337932,-0.404337932,1,0.461007831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97784205,167.9160861,0.97784205,12.08391387,0,0.998866997,0,0,0,11,1,0% +2018-11-12 10:00:00,145.7551732,62.85701629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543907674,1.097061892,0.675460328,-0.675460328,1,0.41464317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967759396,165.4114207,0.967759396,14.58857925,0,0.998334266,0,0,0,11,2,0% +2018-11-12 11:00:00,134.6360382,76.99790457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349842158,1.343866952,1.005241418,-1.005241418,1,0.358247283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901791903,154.3946138,0.901791903,25.60538619,0,0.994554836,0,0,0,11,3,0% +2018-11-12 12:00:00,122.9185393,87.52965804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145333223,1.527680726,1.47293589,-1.47293589,1,0.278266818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784446165,141.6694843,0.784446165,38.33051574,0,0.986260763,0,0,0,11,4,0% +2018-11-12 13:00:00,111.102109,96.56018599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939097609,1.685293172,2.317806619,-2.317806619,1,0.133785414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623728467,128.588921,0.623728467,51.41107898,0,0.969836912,0,0,0,11,5,0% +2018-11-12 14:00:00,99.48923991,105.1930767,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736414807,1.835965539,4.889121808,-4.889121808,1,0,#DIV/0!,0,0,0.234265329,1,0.201752991,0,0.938658072,0.977420035,0.724496596,1,0,0,0.03607376,0.312029739,0.902798592,0.627295187,0.961238037,0.922476074,0,0,0,0,0,0,-0.430599229,115.5055947,0.430599229,64.49440527,0,0.933882746,0,0,0,11,6,0% +2018-11-12 15:00:00,88.04669791,114.1640237,4.090226735,32.34012744,2.987915128,2.92865232,0,2.92865232,2.897818463,0.030833857,7.975945677,6.894126185,1.081819492,0.090096665,0.991722827,1.536704774,1.992538102,-21.03366469,21.03366469,0,0,0.7305011,0.022524166,0.724454616,1,0.680217165,0,0.04750706,0.961238037,1,0.598624322,0.874127726,2.78549333,0.061871685,0.115824807,0.169326442,0.724496596,0.448993192,0.981678611,0.942916648,0.016318682,0.702201689,2.801812012,0.764073374,0,2.204623214,-0.213175604,102.3085159,0.213175604,77.69148405,0,0.815451585,2.801812012,2.561836867,4.478483005,11,7,60% +2018-11-12 16:00:00,77.941324,124.0992231,143.3999962,484.1318424,42.25841909,42.15463755,0.089455969,42.06518158,40.98417184,1.081009744,36.04323655,0,36.04323655,1.274247253,34.7689893,1.360332727,2.165940042,-2.744891423,2.744891423,0.999557769,0.999557769,0.294689123,1.080672565,34.75814448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.39554488,0.923187797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782943595,33.41085057,40.17848848,34.33403837,0.089455969,0,0.000184776,89.98941311,-0.000184776,90.01058689,0,0,40.17848848,34.33403837,62.64942991,11,8,56% +2018-11-12 17:00:00,68.88511619,135.6006096,309.4620842,685.7201435,62.43884207,204.6364389,141.7475024,62.88893651,60.5560806,2.332855908,76.91542661,0,76.91542661,1.882761463,75.03266515,1.202272083,2.366677105,-1.069732575,1.069732575,0.713088734,0.713088734,0.201765726,1.798579635,57.84850363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20880804,1.364054271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303064823,55.60618206,59.51187286,56.97023634,141.7475024,0,0.206713342,78.07018514,-0.206713342,101.9298149,0.808119144,0,174.0607432,56.97023634,211.3466234,11,9,21% +2018-11-12 18:00:00,61.66454231,149.1675607,440.1802186,772.2339121,73.65251656,375.482744,300.7328582,74.74988585,71.43162143,3.31826442,108.9476853,0,108.9476853,2.220895123,106.7267902,1.076249295,2.603465072,-0.348520808,0.348520808,0.589754258,0.589754258,0.167323549,2.184738763,70.2687086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.66279156,1.609030956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582835797,67.54495551,70.24562735,69.15398647,300.7328582,0,0.389432338,67.08081755,-0.389432338,112.9191825,0.921607992,0,347.4034328,69.15398647,392.6633339,11,10,13% +2018-11-12 19:00:00,57.04100817,164.881025,520.4102677,810.2305275,79.61355675,515.1335061,433.9975194,81.13598669,77.21291427,3.92307242,128.580137,0,128.580137,2.400642479,126.1794945,0.995553401,2.877716761,0.131227946,-0.131227946,0.507712389,0.507712389,0.152982294,2.287244109,73.56563288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.21999013,1.739257304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657100571,70.71408453,75.8770907,72.45334183,433.9975194,0,0.535646961,57.61220267,-0.535646961,122.3877973,0.956654936,0,491.0629597,72.45334183,538.4822229,11,11,10% +2018-11-12 20:00:00,55.69035604,181.9639421,543.1805274,819.5673973,81.21899765,603.5662397,520.7015702,82.86466946,78.7699452,4.094724256,134.14946,0,134.14946,2.449052445,131.7004076,0.971980075,3.175869909,0.548099039,-0.548099039,0.436423234,0.436423234,0.14952487,2.132090065,68.57534551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.71666749,1.77433016,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.544691994,65.91723049,77.26135948,67.69156065,520.7015702,0,0.635337096,50.55500926,-0.635337096,129.4449907,0.97130162,0,583.0196384,67.69156065,627.322411,11,12,8% +2018-11-12 21:00:00,57.84833965,198.8470939,506.6473265,804.3053414,78.62645466,628.3691928,548.2942942,80.07489851,76.25557695,3.819321556,125.2133878,0,125.2133878,2.370877709,122.8425101,1.009643994,3.470536497,0.997912994,-0.997912994,0.359500517,0.359500517,0.155189716,1.752684561,56.37236029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29976109,1.717692829,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269813998,54.18725694,74.56957508,55.90494977,548.2942942,0,0.681699183,47.02343367,-0.681699183,132.9765663,0.976653865,0,610.063317,55.90494977,646.6519885,11,13,6% +2018-11-12 22:00:00,63.14754995,214.0879276,413.7880545,757.6418753,71.56542592,581.3538882,508.8271148,72.52677342,69.40746428,3.11930914,102.4856661,0,102.4856661,2.15796164,100.3277045,1.102132661,3.736539225,1.59972476,-1.59972476,0.256584644,0.256584644,0.17295189,1.20143228,38.64219201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.7170947,1.563435862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870433597,37.14434479,67.5875283,38.70778065,508.8271148,0,0.671593178,47.80985357,-0.671593178,132.1901464,0.975550167,0,563.973905,38.70778065,589.3073733,11,14,4% +2018-11-12 23:00:00,70.86318915,227.1357216,272.9710134,653.3327067,58.79226247,454.8570735,395.7798438,59.07722964,57.01945884,2.057770803,67.95778618,0,67.95778618,1.772803634,66.18498255,1.236795969,3.96426619,2.655406125,-2.655406125,0.076052498,0.076052498,0.215379141,0.565992982,18.20427989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.80927268,1.284390198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410059989,17.49864626,55.21933266,18.78303646,395.7798438,0,0.605786056,52.71457287,-0.605786056,127.2854271,0.96746261,0,438.1215334,18.78303646,450.4146551,11,15,3% +2018-11-12 00:00:00,80.24765908,238.2094614,103.1469821,402.0279343,35.04756265,231.4162676,196.6479527,34.76831484,33.99074932,0.777565521,26.06599333,0,26.06599333,1.056813326,25.00918001,1.400585868,4.157539411,5.69547487,-5.69547487,0,0,0.339782725,0.264203331,8.49768733,0.307397626,1,0.173806421,0,0.94234221,0.981104173,0.724496596,1,32.94345481,0.765657657,0.045901612,0.312029739,0.878091279,0.602587875,0.961238037,0.922476074,0.181580864,8.168300287,33.12503568,8.933957944,136.1988389,0,0.489140022,60.71592661,-0.489140022,119.2840734,0.947779781,0,162.2115415,8.933957944,168.0586382,11,16,4% +2018-11-12 01:00:00,90.89938558,247.8498029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586493566,4.325795111,-63.65538507,63.65538507,1,0,#DIV/0!,0,0,1,0.903992617,0,0.015708298,0.961238037,1,0.680916516,0.95641992,0,0,0.115824807,0.262530305,0.724496596,0.448993192,0.968819794,0.930057831,0,0,0,0,0,0,0.326987248,70.91398465,-0.326987248,109.0860154,0.897088838,0,0,0,0,11,17,0% +2018-11-12 02:00:00,102.1775665,256.6623064,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783334957,4.479602313,-4.602674244,4.602674244,1,0.682742658,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13384585,82.30811371,-0.13384585,97.69188629,0.676435934,0,0,0,0,11,18,0% +2018-11-12 03:00:00,113.8688507,265.282586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987386361,4.630054574,-2.180027372,2.180027372,1,0.902960327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078533138,94.50425541,0.078533138,85.49574459,0,0,0,0,0,11,19,0% +2018-11-12 04:00:00,125.7052023,274.4946697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193969667,4.790835765,-1.266156177,1.266156177,1,0.746679148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.29568367,107.1985377,0.29568367,72.80146228,0,0.880900367,0,0,0,11,20,0% +2018-11-12 05:00:00,137.3639047,285.5485532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397452411,4.983762428,-0.749111348,0.749111348,1,0.658259275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502817155,120.1865572,0.502817155,59.81344284,0,0.950560274,0,0,0,11,21,0% +2018-11-12 06:00:00,148.2621564,300.9503405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587662785,5.252574326,-0.38966712,0.38966712,1,0.596790692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685829883,133.3009077,0.685829883,46.69909227,0,0.977095623,0,0,0,11,22,0% +2018-11-12 07:00:00,156.9535171,325.9831501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739355646,5.689479275,-0.103042854,0.103042854,1,0.547775056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832263535,146.3319648,0.832263535,33.66803524,0,0.989922876,0,0,0,11,23,0% +2018-11-13 08:00:00,160.0692857,4.713222107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793736066,0.082261244,0.151595194,-0.151595194,1,0.504229385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93215339,158.7730165,0.93215339,21.22698354,0,0.996360759,0,0,0,11,0,0% +2018-11-13 09:00:00,155.3503396,40.90285512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.711374919,0.713889495,0.400971721,-0.400971721,1,0.461583487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978706575,168.1550276,0.978706575,11.84497245,0,0.998912165,0,0,0,11,1,0% +2018-11-13 10:00:00,145.9590169,63.17134484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547465418,1.10254796,0.670757501,-0.670757501,1,0.415447401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968764263,165.6417834,0.968764263,14.35821657,0,0.998387857,0,0,0,11,2,0% +2018-11-13 11:00:00,134.8192317,77.27590683,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353039488,1.348719007,0.998226811,-0.998226811,1,0.359446851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903016397,154.5574362,0.903016397,25.44256377,0,0.99463002,0,0,0,11,3,0% +2018-11-13 12:00:00,123.0946679,87.77241112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148407246,1.531917566,1.461086374,-1.461086374,1,0.280293204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785954364,141.8090316,0.785954364,38.19096836,0,0.986383075,0,0,0,11,4,0% +2018-11-13 13:00:00,111.2799812,96.77661167,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942202063,1.689070513,2.292202196,-2.292202196,1,0.138164028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625564814,128.7236553,0.625564814,51.27634467,0,0.970072231,0,0,0,11,5,0% +2018-11-13 14:00:00,99.67515099,105.3899616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.739659567,1.839401829,4.781773725,-4.781773725,1,0,#DIV/0!,0,0,0.223347888,1,0.206156323,0,0.938061871,0.976823835,0.724496596,1,0,0,0.034553518,0.312029739,0.906688594,0.63118519,0.961238037,0.922476074,0,0,0,0,0,0,-0.432785451,115.6444622,0.432785451,64.35553783,0,0.934469314,0,0,0,11,6,0% +2018-11-13 15:00:00,88.23018614,114.3445174,3.287071869,26.87352863,2.457105317,2.407793862,0,2.407793862,2.383014526,0.024779336,6.661178862,5.79009944,0.871079422,0.074090791,0.796988631,1.539907248,1.99568831,-23.14482739,23.14482739,0,0,0.747505809,0.018522698,0.595753631,1,0.713315268,0,0.043179343,0.961238037,1,0.609355256,0.884858661,2.290644205,0.050999498,0.115824807,0.181457522,0.724496596,0.448993192,0.980112764,0.941350801,0.013419631,0.577285448,2.304063836,0.628284946,0,1.659933104,-0.215457357,102.4423608,0.215457357,77.55763922,0,0.817935517,2.304063836,1.986003188,3.603863202,11,7,56% +2018-11-13 16:00:00,78.156157,124.2618235,139.6189579,477.5252039,41.60928511,41.40711832,0,41.40711832,40.35461164,1.05250668,36.37124983,1.264343568,35.10690627,1.254673468,33.8522328,1.36408227,2.168777954,-2.785195057,2.785195057,0.993549904,0.993549904,0.29802031,1.047741102,33.69895543,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.79038767,0.909006656,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.759084862,32.39271776,39.54947253,33.30172442,0,1.264343568,-0.0026477,90.15170222,0.0026477,89.84829778,0,0,39.54947253,33.30172442,61.34478513,11,8,55% +2018-11-13 17:00:00,69.1204934,135.7372744,305.1819011,682.3918575,61.97482758,201.3388147,138.9321668,62.40664794,60.10605786,2.30059008,75.8636549,0,75.8636549,1.868769714,73.99488519,1.20638019,2.369062356,-1.077252641,1.077252641,0.714374741,0.714374741,0.203075043,1.7769254,57.15202902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.77622906,1.353917296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287376404,54.93670418,59.06360547,56.29062147,138.9321668,0,0.203595874,78.2526848,-0.203595874,101.7473152,0.804415456,0,170.8227877,56.29062147,207.6638736,11,9,22% +2018-11-13 18:00:00,61.91900477,149.2618694,435.7307586,770.0649357,73.24636386,371.6503639,297.3279257,74.32243825,71.03771574,3.284722512,107.8566153,0,107.8566153,2.208648121,105.6479671,1.080690503,2.605111069,-0.349226047,0.349226047,0.589874861,0.589874861,0.168100054,2.164030764,69.60266818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.28415442,1.600158045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567832922,66.90473212,69.85198734,68.50489017,297.3279257,0,0.386107602,67.28748123,-0.386107602,112.7125188,0.92050242,0,343.5430625,68.50489017,388.378143,11,10,13% +2018-11-13 19:00:00,57.30737336,164.9109412,515.9421989,808.5255282,79.23167023,511.0284318,430.2964985,80.73193327,76.84254304,3.889390231,127.4852867,0,127.4852867,2.389127191,125.0961595,1.000202351,2.878238896,0.133384646,-0.133384646,0.507343572,0.507343572,0.153566951,2.267511849,72.93097557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.86397522,1.730914517,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.642804615,70.10402779,75.50677983,71.8349423,430.2964985,0,0.532199026,57.8458451,-0.532199026,122.1541549,0.956050185,0,486.8918269,71.8349423,533.9063599,11,11,10% +2018-11-13 20:00:00,55.95461178,181.9147594,538.8121915,818.0098689,80.8498001,599.3392424,516.8655682,82.47367422,78.41188032,4.061793895,133.0791738,0,133.0791738,2.437919777,130.641254,0.976592207,3.175011509,0.552387048,-0.552387048,0.435689941,0.435689941,0.150051913,2.113618406,67.98123344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37248191,1.766264579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53130934,65.34614737,76.90379125,67.11241195,516.8655682,0,0.631857375,50.8127104,-0.631857375,129.1872896,0.970868218,0,578.7121444,67.11241195,622.6358758,11,12,8% +2018-11-13 21:00:00,58.0948209,198.7255098,502.4836536,802.665413,78.26288422,624.1237744,544.4328709,79.69090353,75.9029695,3.787934031,124.1928941,0,124.1928941,2.359914718,121.8329794,1.013945903,3.468414454,1.004849997,-1.004849997,0.35831422,0.35831422,0.1557521,1.735851556,55.83095299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96082139,1.70975018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257618543,53.66683565,74.21843994,55.37658583,544.4328709,0,0.678281214,47.29052338,-0.678281214,132.7094766,0.976284262,0,605.7396837,55.37658583,641.9825516,11,13,6% +2018-11-13 22:00:00,63.3664696,213.9169031,409.9262618,755.6184828,71.19588222,577.1392645,505.0000035,72.139261,69.04906368,3.090197315,101.5381867,0,101.5381867,2.146818534,99.39136814,1.10595353,3.733554285,1.611509318,-1.611509318,0.254569366,0.254569366,0.173679729,1.186745646,38.16981937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37258642,1.55536272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85979318,36.69028224,67.2323796,38.24564496,505.0000035,0,0.668326695,48.06195066,-0.668326695,131.9380493,0.975186289,0,559.7014591,38.24564496,584.7324688,11,14,4% +2018-11-13 23:00:00,71.05262048,226.9372416,269.5230261,650.2622184,58.38310987,450.6012748,391.9468527,58.65442211,56.62264369,2.031778418,67.10944429,0,67.10944429,1.760466173,65.34897812,1.24010217,3.960802061,2.680089062,-2.680089062,0.071831467,0.071831467,0.216616408,0.554447951,17.832952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.42783887,1.27545175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401695653,17.14171177,54.82953452,18.41716352,391.9468527,0,0.602752,52.93274957,-0.602752,127.0672504,0.967047144,0,433.8606189,18.41716352,445.9142841,11,15,3% +2018-11-13 00:00:00,80.41009829,237.9959436,100.4295855,395.9132463,34.47243256,226.7678401,192.5777979,34.19004217,33.43296153,0.757080637,25.38978678,0,25.38978678,1.039471031,24.35031574,1.403420967,4.153812822,5.789273904,-5.789273904,0,0,0.343249774,0.259867758,8.358240382,0.315007714,1,0.171045413,0,0.942696766,0.981458729,0.724496596,1,32.40484487,0.753093224,0.046890036,0.312029739,0.875648631,0.600145227,0.961238037,0.922476074,0.178511199,8.034258577,32.58335607,8.7873518,131.9143059,0,0.486414132,60.89483592,-0.486414132,119.1051641,0.947206934,0,157.5335013,8.7873518,163.2846473,11,16,4% +2018-11-13 01:00:00,91.04251644,247.6248421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588991671,4.321868805,-54.9058376,54.9058376,1,0,#DIV/0!,0,0,1,0.887887411,0,0.018210986,0.961238037,1,0.674151477,0.949654881,0,0,0.115824807,0.254853433,0.724496596,0.448993192,0.969949792,0.931187829,0,0,0,0,0,0,0.324572658,71.06031341,-0.324572658,108.9396866,0.895951288,0,0,0,0,11,17,0% +2018-11-13 02:00:00,102.305858,256.4233943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785574066,4.47543251,-4.555384393,4.555384393,1,0.690829699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131787105,82.42712548,-0.131787105,97.57287452,0.670600211,0,0,0,0,11,18,0% +2018-11-13 03:00:00,113.9887669,265.0225747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989479292,4.625516521,-2.17042081,2.17042081,1,0.901317508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08024022,94.60237374,0.08024022,85.39762626,0,0,0,0,0,11,19,0% +2018-11-13 04:00:00,125.8246148,274.2017387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196053808,4.785723155,-1.263523992,1.263523992,1,0.746229018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297067388,107.2815485,0.297067388,72.7184515,0,0.881688021,0,0,0,11,20,0% +2018-11-13 05:00:00,137.494129,285.2060389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399725254,4.977784425,-0.748873708,0.748873708,1,0.658218636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503927985,120.2602154,0.503927985,59.73978458,0,0.950779473,0,0,0,11,21,0% +2018-11-13 06:00:00,148.4218575,300.5459943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590450096,5.245517154,-0.390602645,0.390602645,1,0.596950676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686737014,133.372367,0.686737014,46.62763296,0,0.977191925,0,0,0,11,22,0% +2018-11-13 07:00:00,157.1699375,325.5890031,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743132894,5.682600113,-0.104771438,0.104771438,1,0.548070661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833050118,146.4133457,0.833050118,33.58665428,0,0.989979602,0,0,0,11,23,0% +2018-11-14 08:00:00,160.3339383,4.6631972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.798355126,0.081388145,0.149130297,-0.149130297,1,0.504650907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932910814,158.8932017,0.932910814,21.1067983,0,0.996404309,0,0,0,11,0,0% +2018-11-14 09:00:00,155.5895863,41.17730628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715550563,0.718679572,0.397615771,-0.397615771,1,0.462157388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979528176,168.3865942,0.979528176,11.61340578,0,0.998955016,0,0,0,11,1,0% +2018-11-14 10:00:00,146.1609343,63.47816617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550989542,1.107903003,0.666090901,-0.666090901,1,0.416245437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969738895,165.8687253,0.969738895,14.13127466,0,0.998439729,0,0,0,11,2,0% +2018-11-14 11:00:00,135.0012845,77.54702431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356216909,1.353450899,0.991292952,-0.991292952,1,0.360632611,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904222304,154.7187433,0.904222304,25.28125665,0,0.994703863,0,0,0,11,3,0% +2018-11-14 12:00:00,123.2700639,88.00880073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151468484,1.536043343,1.449422662,-1.449422662,1,0.282287816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78745378,141.9481959,0.78745378,38.05180406,0,0.98650421,0,0,0,11,4,0% +2018-11-14 13:00:00,111.4572509,96.98696945,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945296004,1.692741948,2.267173048,-2.267173048,1,0.142444264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627399661,128.8585337,0.627399661,51.14146628,0,0.970305982,0,0,0,11,5,0% +2018-11-14 14:00:00,99.86036457,105.5808539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742892154,1.842733527,4.679080489,-4.679080489,1,0,#DIV/0!,0,0,0.212608469,1,0.210549719,0,0.937462783,0.976224746,0.724496596,1,0,0,0.033044074,0.312029739,0.910568999,0.635065595,0.961238037,0.922476074,0,0,0,0,0,0,-0.43497443,115.7836669,0.43497443,64.21633315,0,0.935050714,0,0,0,11,6,0% +2018-11-14 15:00:00,88.41144863,114.518913,2.592170923,22.00700503,1.982094933,1.941868337,0,1.941868337,1.922327458,0.019540879,5.47970239,4.791433063,0.688269327,0.059767475,0.628501851,1.543070875,1.998732088,-25.7105399,25.7105399,0,0,0.764646697,0.014941869,0.480581864,1,0.745347172,0,0.038874959,0.961238037,1,0.62017521,0.895678614,1.847814272,0.041259456,0.115824807,0.193695849,0.724496596,0.448993192,0.978499919,0.939737956,0.010825333,0.465505567,1.858639605,0.506765023,0,1.22015198,-0.217723087,102.575334,0.217723087,77.42466597,0,0.820350491,1.858639605,1.507717299,2.845410423,11,7,53% +2018-11-14 16:00:00,78.36941085,124.4181141,135.877663,470.8362482,40.95666596,40.74597459,0,40.74597459,39.72167137,1.024303219,36.76070564,2.580598516,34.18010712,1.234994593,32.94511253,1.367804252,2.171505741,-2.826966316,2.826966316,0.986406598,0.986406598,0.301423097,1.014576398,32.63226453,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.18198141,0.894749378,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.735057146,31.3673739,38.91703855,32.26212328,0,2.580598516,-0.005480883,90.31403305,0.005480883,89.68596695,0,0,38.91703855,32.26212328,60.03195299,11,8,54% +2018-11-14 17:00:00,69.35352798,135.8674747,300.9418627,679.0406479,61.51161353,198.061483,136.1360447,61.9254383,59.65681143,2.268626879,74.82164089,0,74.82164089,1.854802102,72.96683879,1.210447411,2.371334781,-1.085051023,1.085051023,0.715708343,0.715708343,0.204396999,1.755501375,56.46295871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.3443963,1.343797809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27185477,54.27434359,58.61625107,55.6181414,136.1360447,0,0.200482909,78.43480033,-0.200482909,101.5651997,0.800602183,0,167.6070656,55.6181414,204.0080267,11,9,22% +2018-11-14 18:00:00,62.17010936,149.3499406,431.3320239,767.8930293,72.84265748,367.8439607,293.9462151,73.89774559,70.6461826,3.251562991,106.7779179,0,106.7779179,2.196474884,104.581443,1.085073105,2.606648201,-0.350080683,0.350080683,0.590021012,0.590021012,0.168878389,2.143617625,68.94611145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90779787,1.591338576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553043672,66.27362482,69.46084154,67.8649634,293.9462151,0,0.382795785,67.49303209,-0.382795785,112.5069679,0.919382052,0,339.7097159,67.8649634,384.1259772,11,10,13% +2018-11-14 19:00:00,57.56928488,164.9356419,511.5377852,806.8266399,78.853323,506.9613241,426.6295319,80.33179227,76.47560437,3.856187899,126.405977,0,126.405977,2.377718626,124.0282584,1.004773569,2.878670006,0.135411641,-0.135411641,0.506996935,0.506996935,0.154149557,2.248131089,72.30762372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.51125981,1.722649051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628763321,69.50483827,75.14002314,71.22748733,426.6295319,0,0.528774722,58.07729497,-0.528774722,121.922705,0.955441773,0,482.7596996,71.22748733,529.3766655,11,11,10% +2018-11-14 20:00:00,56.21352435,181.8622223,534.520966,816.4651518,80.48514344,595.1653981,513.0777339,82.08766423,78.0582194,4.029444824,132.0277207,0,132.0277207,2.426924033,129.6007967,0.981111084,3.174094564,0.556532664,-0.556532664,0.434980999,0.434980999,0.150574343,2.095546483,67.39997828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03252958,1.7582982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518216293,64.7874228,76.55074587,66.545721,513.0777339,0,0.628413512,51.06682889,-0.628413512,128.9331711,0.970434556,0,574.4591088,66.545721,618.0119523,11,12,8% +2018-11-14 21:00:00,58.33547917,198.6026154,498.4098668,801.0461808,77.90491652,619.9487002,540.6356803,79.31301995,75.55579584,3.757224105,123.1943633,0,123.1943633,2.349120671,120.8452426,1.018146182,3.466269542,1.011605512,-1.011605512,0.357158959,0.357158959,0.156306931,1.719454043,55.30355261,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.62710487,1.70192993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245738601,53.15987835,73.87284347,54.86180828,540.6356803,0,0.674912,47.55268309,-0.674912,132.4473169,0.975916268,0,601.4879987,54.86180828,637.393955,11,13,6% +2018-11-14 22:00:00,63.57943448,213.7461099,406.1653199,753.6286331,70.83324522,573.0139171,501.2547098,71.75920728,68.69736153,3.061845747,100.6153679,0,100.6153679,2.13588369,98.47948423,1.109670468,3.730573381,1.623028228,-1.623028228,0.252599516,0.252599516,0.174395109,1.17251088,37.71198037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.03451693,1.547440463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849480141,36.25018998,66.88399707,37.79763044,501.2547098,0,0.665121637,48.3083423,-0.665121637,131.6916577,0.97482578,0,555.5200107,37.79763044,580.2578039,11,14,4% +2018-11-14 23:00:00,71.23612853,226.7399253,266.1837182,647.2521682,57.98294799,446.4571279,388.2159744,58.24115348,56.23454817,2.006605304,66.28772405,0,66.28772405,1.748399816,64.53932424,1.243304989,3.957358242,2.70431593,-2.70431593,0.067688429,0.067688429,0.217830558,0.543337305,17.47559544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.05478669,1.266709715,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.393646028,16.79820705,54.44843272,18.06491677,388.2159744,0,0.599790922,53.14507503,-0.599790922,126.854925,0.966637618,0,429.7125974,18.06491677,441.5357241,11,15,3% +2018-11-14 00:00:00,80.56667504,237.7841203,97.8233355,389.9422075,33.91190332,222.2694437,188.6426758,33.62676793,32.88933431,0.737433624,24.74096926,0,24.74096926,1.022569007,23.71840025,1.406153747,4.150115808,5.882501077,-5.882501077,0,0,0.346664762,0.255642252,8.222333578,0.322407489,1,0.168385996,0,0.943036665,0.981798628,0.724496596,1,31.87968046,0.740847764,0.04784517,0.312029739,0.873295597,0.597792193,0.961238037,0.922476074,0.175528202,7.903619786,32.05520866,8.644467551,127.8228644,0,0.483770857,61.06802637,-0.483770857,118.9319736,0.946645283,0,153.0581203,8.644467551,158.7157514,11,16,4% +2018-11-14 01:00:00,91.17979281,247.4018997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591387596,4.317977726,-48.5074949,48.5074949,1,0,#DIV/0!,0,0,1,0.872211395,0,0.020612451,0.961238037,1,0.66770623,0.943209634,0,0,0.115824807,0.247541687,0.724496596,0.448993192,0.97101442,0.932252457,0,0,0,0,0,0,0.322248044,71.20106832,-0.322248044,108.7989317,0.89484002,0,0,0,0,11,17,0% +2018-11-14 02:00:00,102.4282461,256.1867239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787710141,4.471301831,-4.511166384,4.511166384,1,0.698391424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129822458,82.54066704,-0.129822458,97.45933296,0.664858625,0,0,0,0,11,18,0% +2018-11-14 03:00:00,114.1026371,264.764955,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991466703,4.621020208,-2.161442732,2.161442732,1,0.899782166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08185241,94.69505027,0.08185241,85.30494973,0,0,0,0,0,11,19,0% +2018-11-14 04:00:00,125.9377135,273.9111946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198027753,4.780652204,-1.261134443,1.261134443,1,0.745820381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298358792,107.359055,0.298358792,72.64094502,0,0.882416535,0,0,0,11,20,0% +2018-11-14 05:00:00,137.6176125,284.8653814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401880448,4.971838831,-0.748754714,0.748754714,1,0.658198287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504952273,120.3281842,0.504952273,59.67181579,0,0.950980741,0,0,0,11,21,0% +2018-11-14 06:00:00,148.5742916,300.1411062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593110572,5.238450524,-0.391601288,0.391601288,1,0.597121454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687566173,133.4377578,0.687566173,46.56224219,0,0.977279727,0,0,0,11,22,0% +2018-11-14 07:00:00,157.3791721,325.1870602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746784727,5.675584886,-0.106531751,0.106531751,1,0.548371692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833769499,146.4879266,0.833769499,33.51207343,0,0.990031387,0,0,0,11,23,0% +2018-11-15 08:00:00,160.5934661,4.601257089,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802884741,0.080307086,0.146655997,-0.146655997,1,0.505074037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933613264,159.0052507,0.933613264,20.99474933,0,0.996444634,0,0,0,11,0,0% +2018-11-15 09:00:00,155.8256229,41.44319771,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719670179,0.723320253,0.394271239,-0.394271239,1,0.462729337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980307646,168.6105769,0.980307646,11.38942306,0,0.998995603,0,0,0,11,1,0% +2018-11-15 10:00:00,146.3609007,63.7772112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554479613,1.113122323,0.661462023,-0.661462023,1,0.417037022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970683967,166.0922472,0.970683967,13.9077528,0,0.998489929,0,0,0,11,2,0% +2018-11-15 11:00:00,135.182166,77.81107766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.359373886,1.3580595,0.984441735,-0.984441735,1,0.361804238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905410084,154.8785712,0.905410084,25.12142879,0,0.994776405,0,0,0,11,3,0% +2018-11-15 12:00:00,123.4446829,88.23869551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15451616,1.540055764,1.437946624,-1.437946624,1,0.284250334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.788944574,142.0869894,0.788944574,37.91301061,0,0.986624192,0,0,0,11,4,0% +2018-11-15 13:00:00,111.6338577,97.1911568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948378374,1.69630569,2.242714583,-2.242714583,1,0.146626908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629232806,128.993543,0.629232806,51.006457,0,0.970538155,0,0,0,11,5,0% +2018-11-15 14:00:00,100.0448035,105.7656723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.74611122,1.845959218,4.580808952,-4.580808952,1,0,#DIV/0!,0,0,0.202049633,1,0.214930169,0,0.936861262,0.975623226,0.724496596,1,0,0,0.031546298,0.312029739,0.914437153,0.638933749,0.961238037,0.922476074,0,0,0,0,0,0,-0.437165569,115.9231726,0.437165569,64.07682737,0,0.935626857,0,0,0,11,6,0% +2018-11-15 15:00:00,88.59029769,114.68715,2.000492095,17.7408248,1.564041823,1.531960746,0,1.531960746,1.516880192,0.015080554,4.434658233,3.902454132,0.532204101,0.047161632,0.485042469,1.54619238,2.001668378,-28.89023251,28.89023251,0,0,0.781828545,0.011790408,0.379220048,1,0.776320102,0,0.034599961,0.961238037,1,0.631066083,0.906569487,1.458082938,0.032668422,0.115824807,0.206021484,0.724496596,0.448993192,0.976842154,0.938080191,0.00854211,0.367150188,1.466625048,0.399818609,0,0.872900543,-0.219970276,102.7072872,0.219970276,77.29271282,0,0.822696562,1.466625048,1.117950885,2.198301544,11,7,50% +2018-11-15 16:00:00,78.5809769,124.5680589,132.1784782,464.0686247,40.30087484,40.08207197,0,40.08207197,39.08565477,0.996417201,37.12139566,3.857973246,33.26342241,1.215220071,32.04820234,1.371496776,2.174122771,-2.870249006,2.870249006,0.979004822,0.979004822,0.304897404,0.981875685,31.5804972,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.57061806,0.880422805,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.711365591,30.35637513,38.28198365,31.23679794,0,3.857973246,-0.008313368,90.47632639,0.008313368,89.52367361,0,0,38.28198365,31.23679794,58.72584316,11,8,53% +2018-11-15 17:00:00,69.58410146,135.9912053,296.7444342,675.6688189,61.04945271,194.8065066,133.3609353,61.44557135,59.20858646,2.236984891,73.78998992,0,73.78998992,1.840866248,71.94912367,1.214471678,2.373494286,-1.093130404,1.093130404,0.717089998,0.717089998,0.205730742,1.73431936,55.78167229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.91354542,1.33370133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.256508472,53.61946517,58.17005389,54.9531665,133.3609353,0,0.197376187,78.61643262,-0.197376187,101.3835674,0.796676634,0,164.415595,54.9531665,200.3813434,11,9,22% +2018-11-15 18:00:00,62.41773487,149.4318029,426.9866525,765.7200899,72.44163126,364.0659909,290.5899363,73.47605455,70.2572488,3.218805747,105.7122398,0,105.7122398,2.184382464,103.5278574,1.089394985,2.608076968,-0.351087445,0.351087445,0.590193179,0.590193179,0.169657836,2.123510904,68.29941018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.53393991,1.582577659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538476421,65.65199096,69.07241633,67.23456862,290.5899363,0,0.379498906,67.6973528,-0.379498906,112.3026472,0.918247314,0,335.905845,67.23456862,379.9095255,11,10,13% +2018-11-15 19:00:00,57.82662797,164.9551787,507.19972,805.1355954,78.4787399,502.9349261,422.999124,79.93580207,76.11231633,3.823485731,125.3428678,0,125.3428678,2.366423564,122.9764443,1.009265053,2.879010987,0.137304892,-0.137304892,0.50667317,0.50667317,0.154729462,2.229112695,71.6959268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.16205353,1.714465816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614984559,68.91685193,74.77703809,70.63131774,422.999124,0,0.525376255,58.30642398,-0.525376255,121.693576,0.954830111,0,478.6693385,70.63131774,524.8961234,11,11,10% +2018-11-15 20:00:00,56.46698998,181.8063831,530.3094731,814.9350209,80.12525031,591.0476246,509.3407494,81.7068752,77.70917839,3.997696812,130.9957434,0,130.9957434,2.416071928,128.5796715,0.985534894,3.173119986,0.560529945,-0.560529945,0.434297424,0.434297424,0.151091493,2.077883954,66.83189065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.69701808,1.750435887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505419852,64.24135537,76.20243793,65.99179126,509.3407494,0,0.625007806,51.31723961,-0.625007806,128.6827604,0.970000999,0,570.2634738,65.99179126,613.4537813,11,12,8% +2018-11-15 21:00:00,58.57022031,198.4784557,494.4283907,799.4497138,77.55278114,615.8469759,536.9054872,78.9414887,75.21427864,3.727210057,122.2183901,0,122.2183901,2.338502491,119.8798876,1.022243188,3.464102546,1.01817015,-1.01817015,0.356036339,0.356036339,0.156853414,1.70349988,54.7904119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.29882555,1.694237094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234179864,52.66662797,73.53300541,54.36086506,536.9054872,0,0.67159382,47.80980391,-0.67159382,132.1901961,0.975550238,0,597.3112813,54.36086506,632.8893803,11,13,6% +2018-11-15 22:00:00,63.78635899,213.5755962,402.5073235,751.6751677,70.47777429,568.9809233,497.5940438,71.38687958,68.35260936,3.034270224,99.71772557,0,99.71772557,2.12516493,97.59256064,1.113281982,3.727597356,1.63426408,-1.63426408,0.250678072,0.250678072,0.175096874,1.158733181,37.26884222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.70312803,1.539674757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.839498245,35.82422873,66.54262628,37.36390349,497.5940438,0,0.661980155,48.54893395,-0.661980155,131.4510661,0.974469035,0,551.4326138,37.36390349,575.8865414,11,14,4% +2018-11-15 23:00:00,71.41363806,226.5438345,262.9546533,644.3074829,57.5921428,442.4279849,384.5901945,57.83779045,55.85552721,1.982263249,65.49301566,0,65.49301566,1.736615598,63.75640007,1.246403115,3.953935812,2.728042433,-2.728042433,0.063630958,0.063630958,0.219019295,0.53266158,17.13222743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.69045732,1.258172089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385911501,16.46814866,54.07636882,17.72632075,384.5901945,0,0.596904746,53.35146343,-0.596904746,126.6485366,0.966234541,0,425.6806989,17.72632075,437.2822213,11,15,3% +2018-11-15 00:00:00,80.7173286,237.574071,95.32838472,384.1262139,33.36677213,217.9253243,184.8460578,33.07926647,32.36064084,0.718625631,24.11960184,0,24.11960184,1.00613129,23.11347055,1.408783148,4.146449757,5.974918507,-5.974918507,0,0,0.350019275,0.251532823,8.090160211,0.329586865,1,0.165829324,0,0.943361938,0.982123901,0.724496596,1,31.36873761,0.728938695,0.048766276,0.312029739,0.871033234,0.59552983,0.961238037,0.922476074,0.172635059,7.776569719,31.54137267,8.505508413,123.9232252,0,0.481211777,61.23542501,-0.481211777,118.764575,0.946095643,0,148.7845961,8.505508413,154.3512813,11,16,4% +2018-11-15 01:00:00,91.31116327,247.1810747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593680443,4.314123602,-43.63793587,43.63793587,1,0,#DIV/0!,0,0,1,0.856993318,0,0.022911831,0.961238037,1,0.661577379,0.937080783,0,0,0.115824807,0.240590999,0.724496596,0.448993192,0.972015908,0.933253944,0,0,0,0,0,0,0.32001468,71.33618733,-0.32001468,108.6638127,0.893757168,0,0,0,0,11,17,0% +2018-11-15 02:00:00,102.5446919,255.9524174,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789742504,4.467212412,-4.46988553,4.46988553,1,0.705450866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127952779,82.64869276,-0.127952779,97.35130724,0.659230841,0,0,0,0,11,18,0% +2018-11-15 03:00:00,114.2104338,264.5098811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993348109,4.616568329,-2.153081363,2.153081363,1,0.898352288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.083369243,94.78225652,0.083369243,85.21774348,0,0,0,0,0,11,19,0% +2018-11-15 04:00:00,126.0444785,273.6232414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199891153,4.775626473,-1.258985026,1.258985026,1,0.745452809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299557809,107.4310461,0.299557809,72.56895393,0,0.883087309,0,0,0,11,20,0% +2018-11-15 05:00:00,137.7343345,284.5268688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403917629,4.96593067,-0.748753385,0.748753385,1,0.65819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505890295,120.39047,0.505890295,59.60953002,0,0.951164342,0,0,0,11,21,0% +2018-11-15 06:00:00,148.7194131,299.7360868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59564342,5.231381602,-0.392662336,0.392662336,1,0.597302904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688317909,133.4971039,0.688317909,46.50289614,0,0.977359147,0,0,0,11,22,0% +2018-11-15 07:00:00,157.5811055,324.77765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750309129,5.668439329,-0.108323038,0.108323038,1,0.54867802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834422415,146.5557439,0.834422415,33.44425605,0,0.990078312,0,0,0,11,23,0% +2018-11-16 08:00:00,160.847748,4.527039793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807322797,0.07901175,0.144173211,-0.144173211,1,0.505498619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934261565,159.1091713,0.934261565,20.89082867,0,0.996481797,0,0,0,11,0,0% +2018-11-16 09:00:00,156.0584024,41.70011256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723732947,0.727804263,0.390939286,-0.390939286,1,0.463299134,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981045791,168.8267674,0.981045791,11.17323261,0,0.999033979,0,0,0,11,1,0% +2018-11-16 10:00:00,146.5588913,64.06820957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557935201,1.118201203,0.656872355,-0.656872355,1,0.417821901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971600159,166.3123529,0.971600159,13.68764708,0,0.998538502,0,0,0,11,2,0% +2018-11-16 11:00:00,135.3618452,78.06788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36250988,1.362541688,0.977675023,-0.977675023,1,0.362961414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906580194,155.0369567,0.906580194,24.9630433,0,0.994847681,0,0,0,11,3,0% +2018-11-16 12:00:00,123.6184798,88.46196535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157549489,1.543952558,1.426660054,-1.426660054,1,0.286180451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790426899,142.2254238,0.790426899,37.7745762,0,0.986743043,0,0,0,11,4,0% +2018-11-16 13:00:00,111.8097406,97.38907283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951448109,1.699759976,2.218822161,-2.218822161,1,0.150712753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631064041,129.1286692,0.631064041,50.87133076,0,0.970768739,0,0,0,11,5,0% +2018-11-16 14:00:00,100.2283905,105.9443379,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749315418,1.849077519,4.486741665,-4.486741665,1,0,#DIV/0!,0,0,0.191673803,1,0.219294624,0,0.936257781,0.975019744,0.724496596,1,0,0,0.030061061,0.312029739,0.918290372,0.642786967,0.961238037,0.922476074,0,0,0,0,0,0,-0.439358257,116.0629426,0.439358257,63.93705739,0,0.936197655,0,0,0,11,6,0% +2018-11-16 15:00:00,88.76654751,114.8491701,1.508010974,14.11389284,1.20419328,1.179250433,0,1.179250433,1.167882409,0.011368024,3.538002193,3.136056603,0.40194559,0.03631087,0.36563472,1.54926852,2.004496161,-32.92747106,32.92747106,0,0,0.798530846,0.009077718,0.291970602,1,0.806242212,0,0.030360447,0.961238037,1,0.642008859,0.917512263,1.122612994,0.025250209,0.115824807,0.218413205,0.724496596,0.448993192,0.975141953,0.93637999,0.006576775,0.282519958,1.12918977,0.307770167,0,0.60763539,-0.22219643,102.8380727,0.22219643,77.16192727,0,0.824973882,1.12918977,0.809053493,1.6586991,11,7,47% +2018-11-16 16:00:00,78.79074736,124.7116238,128.5646815,457.5651704,39.61732418,39.39189056,0,39.39189056,38.42271568,0.969174875,37.46559395,5.098989952,32.366604,1.194608496,31.1719955,1.375157962,2.17662845,-2.915087225,2.915087225,0.971337035,0.971337035,0.308150915,0.949955705,30.55384093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.9333758,0.865489789,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.688239675,29.36951407,37.62161547,30.23500386,0,5.098989952,-0.011143746,90.63850282,0.011143746,89.36149718,0,0,37.62161547,30.23500386,57.4098208,11,8,53% +2018-11-16 17:00:00,69.81209683,136.1084625,292.6454734,672.5642947,60.54350319,191.5880518,130.6640735,60.92397838,58.71789319,2.206085192,72.78089316,0,72.78089316,1.825610003,70.95528316,1.218450947,2.375540811,-1.101493146,1.101493146,0.718520111,0.718520111,0.206883443,1.713584703,55.11477446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.44187238,1.322648233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.241486284,52.97841761,57.68335866,54.30106584,130.6640735,0,0.194277446,78.7974829,-0.194277446,101.2025171,0.792636106,0,161.2524211,54.30106584,196.7913826,11,9,22% +2018-11-16 18:00:00,62.66176207,149.5074856,422.7554422,763.7925668,71.98943771,360.3588552,287.3532555,73.00559965,69.81869055,3.186909096,104.6726986,0,104.6726986,2.17074716,102.5019515,1.093654063,2.609397881,-0.35224897,0.35224897,0.590391811,0.590391811,0.170286247,2.103813987,67.66588963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11238104,1.572698928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524206072,65.04302691,68.63658711,66.61572583,287.3532555,0,0.376218974,67.9003271,-0.376218974,112.0996729,0.917098675,0,332.1678771,66.61572583,375.7665373,11,10,13% +2018-11-16 19:00:00,58.07929007,164.9696028,502.9908564,803.6778449,78.05008049,499.0128517,419.5245116,79.48834013,75.69658259,3.79175754,124.3094545,0,124.3094545,2.353497901,121.9559566,1.013674839,2.879262735,0.139060382,-0.139060382,0.506372964,0.506372964,0.155171967,2.210481051,71.09666909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.76243445,1.705101218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601485997,68.34082263,74.36392045,70.04592384,419.5245116,0,0.522005819,58.53310571,-0.522005819,121.4668943,0.954215627,0,474.6807654,70.04592384,520.5244216,11,11,10% +2018-11-16 20:00:00,56.71490713,181.7472936,526.2409817,813.6395019,79.71127789,587.0676329,505.7929173,81.27471557,77.30768876,3.967026805,129.9968077,0,129.9968077,2.403589132,127.5932186,0.989861864,3.172088681,0.564372934,-0.564372934,0.433640234,0.433640234,0.151472958,2.060586476,66.27554427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31109098,1.741392144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.492887887,63.70657407,75.80397887,65.44796621,505.7929173,0,0.621642529,51.56381993,-0.621642529,128.4361801,0.969567923,0,566.204567,65.44796621,609.0389519,11,12,8% +2018-11-16 21:00:00,58.79895235,198.3530757,490.6015178,798.1047878,77.1491988,611.9177383,533.3965111,78.52122728,74.82286581,3.698361472,121.278351,0,121.278351,2.326332994,118.952018,1.026235315,3.461914252,1.024534478,-1.024534478,0.354947975,0.354947975,0.157254301,1.687877368,54.28793819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92258464,1.685420335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.222861407,52.18363114,73.14544605,53.86905147,533.3965111,0,0.66832892,48.06177928,-0.66832892,131.9382207,0.975186538,0,593.3065433,53.86905147,628.5627601,11,13,6% +2018-11-16 22:00:00,63.9871598,213.4054107,399.0117956,750.0122316,70.077012,565.1581836,494.1863326,70.97185099,67.96393153,3.007919458,98.8581099,0,98.8581099,2.113080468,96.74502944,1.116786618,3.724627059,1.645199323,-1.645199323,0.248808035,0.248808035,0.175626417,1.145226798,36.83443052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.32951612,1.530919606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.829712917,35.40665568,66.15922904,36.93757529,494.1863326,0,0.658904364,48.78363318,-0.658904364,131.2163668,0.974116453,0,547.5542667,36.93757529,571.729171,11,14,4% +2018-11-16 23:00:00,71.58507629,226.3490315,259.8890759,641.7302347,57.16894751,438.6531981,381.2489517,57.40424645,55.44509281,1.959153632,64.73697005,0,64.73697005,1.723854698,63.01311535,1.249395277,3.950535859,2.751223529,-2.751223529,0.059666757,0.059666757,0.219974415,0.522145813,16.79400421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.29593217,1.248926861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378292864,16.14303564,53.67422503,17.3919625,381.2489517,0,0.594095355,53.55183115,-0.594095355,126.4481688,0.965838426,0,421.8991125,17.3919625,433.2818042,11,15,3% +2018-11-16 00:00:00,80.86200103,237.3658754,92.98059409,378.8157671,32.81976647,213.8847181,181.3536617,32.53105641,31.83012942,0.700926993,23.53385858,0,23.53385858,0.989637051,22.54422153,1.411308158,4.142816058,6.066274902,-6.066274902,0,0,0.352974368,0.247409263,7.957532354,0.336535838,1,0.163376512,0,0.94367262,0.982434583,0.724496596,1,30.85580256,0.716988675,0.049652634,0.312029739,0.868862562,0.593359158,0.961238037,0.922476074,0.169741539,7.649082778,31.0255441,8.366071453,120.3216553,0,0.47873842,61.39696141,-0.47873842,118.6030386,0.945558831,0,144.7967478,8.366071453,150.2721743,11,16,4% +2018-11-16 01:00:00,91.43657924,246.9624659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595869365,4.310308158,-39.81909889,39.81909889,1,0,#DIV/0!,0,0,1,0.842261855,0,0.025108299,0.961238037,1,0.65576161,0.931265014,0,0,0.115824807,0.233997368,0.724496596,0.448993192,0.972956383,0.93419442,0,0,0,0,0,0,0.317873787,71.46561083,-0.317873787,108.5343892,0.892704866,0,0,0,0,11,17,0% +2018-11-16 02:00:00,102.6551596,255.720597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791670529,4.463166383,-4.431418899,4.431418899,1,0.712029047,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126178891,82.75115965,-0.126178891,97.24884035,0.653737206,0,0,0,0,11,18,0% +2018-11-16 03:00:00,114.3121325,264.257507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995123088,4.61216357,-2.145325723,2.145325723,1,0.897025995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.084790308,94.86396685,0.084790308,85.13603315,0,0,0,0,0,11,19,0% +2018-11-16 04:00:00,126.1448939,273.3380833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201643733,4.770649525,-1.25707337,1.25707337,1,0.745125897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300664415,107.4975138,0.300664415,72.50248623,0,0.883701637,0,0,0,11,20,0% +2018-11-16 05:00:00,137.8442792,284.1907901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405836528,4.960064992,-0.748868762,0.748868762,1,0.65821779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506742363,120.4470828,0.506742363,59.55291724,0,0.951330531,0,0,0,11,21,0% +2018-11-16 06:00:00,148.8571834,299.3313564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598047966,5.224317724,-0.393785073,0.393785073,1,0.597494903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688992805,133.5504335,0.688992805,46.44956654,0,0.977430302,0,0,0,11,22,0% +2018-11-16 07:00:00,157.7756274,324.361135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753704177,5.661169772,-0.110144534,0.110144534,1,0.548989514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83500963,146.616841,0.83500963,33.38315905,0,0.990120451,0,0,0,11,23,0% +2018-11-17 08:00:00,161.0966624,4.440190391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811667172,0.077495942,0.141682863,-0.141682863,1,0.505924493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93485656,159.2049835,0.93485656,20.79501649,0,0.996515859,0,0,0,11,0,0% +2018-11-17 09:00:00,156.2878778,41.94762762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727738049,0.732124215,0.387621075,-0.387621075,1,0.463866582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981743424,169.0349592,0.981743424,10.96504077,0,0.999070196,0,0,0,11,1,0% +2018-11-17 10:00:00,146.7548816,64.35089022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.561355877,1.123134911,0.652323375,-0.652323375,1,0.418599823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972488155,166.5290495,0.972488155,13.47095047,0,0.998585492,0,0,0,11,2,0% +2018-11-17 11:00:00,135.540291,78.31727808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365624348,1.366894364,0.970994647,-0.970994647,1,0.364103825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90773309,155.1939374,0.90773309,24.80606263,0,0.994917729,0,0,0,11,3,0% +2018-11-17 12:00:00,123.7914095,88.67848172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160567681,1.547731482,1.415564663,-1.415564663,1,0.288077875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791900905,142.3635106,0.791900905,37.63648943,0,0.986860787,0,0,0,11,4,0% +2018-11-17 13:00:00,111.9848385,97.58061854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954504144,1.70310308,2.195491086,-2.195491086,1,0.154702602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632893149,129.2638978,0.632893149,50.73610217,0,0.970997723,0,0,0,11,5,0% +2018-11-17 14:00:00,100.4110483,106.1167733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752503399,1.852087086,4.396675533,-4.396675533,1,0,#DIV/0!,0,0,0.181483258,1,0.223640003,0,0.935652826,0.974414789,0.724496596,1,0,0,0.028589227,0.312029739,0.92212595,0.646622545,0.961238037,0.922476074,0,0,0,0,0,0,-0.441551882,116.2029393,0.441551882,63.79706072,0,0.936763024,0,0,0,11,6,0% +2018-11-17 15:00:00,88.9400193,115.0049169,1.103768059,11.03392051,0.899650483,0.880843371,0,0.880843371,0.872522701,0.00832067,2.770751621,2.476002494,0.294749126,0.027127781,0.267621345,1.552296174,2.007214456,-38.21403119,38.21403119,0,0,0.815072039,0.006781945,0.218130675,1,0.835123287,0,0.026162428,0.961238037,1,0.652983971,0.928487375,0.838702009,0.018946261,0.115824807,0.23084892,0.724496596,0.448993192,0.97340216,0.934640197,0.004913496,0.210934809,0.843615505,0.229881071,0,0.408235152,-0.22439916,102.9675491,0.22439916,77.03245086,0,0.827182767,0.843615505,0.567566153,1.215076201,11,7,44% +2018-11-17 16:00:00,78.99861551,124.8487769,124.9967358,450.9932153,38.93247595,38.70079635,0,38.70079635,37.75851816,0.942278193,37.78151322,6.300649672,31.48086355,1.173957795,30.30690575,1.378785945,2.179022224,-2.96152524,2.96152524,0.963395667,0.963395667,0.311467941,0.918529714,29.54307302,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.29492387,0.850528427,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.665471651,28.39792551,36.96039552,29.24845394,0,6.300649672,-0.013970609,90.80048295,0.013970609,89.19951705,0,0,36.96039552,29.24845394,56.10292365,11,8,52% +2018-11-17 17:00:00,70.03739876,136.2192448,288.5935895,669.4474212,60.03975228,188.3954662,127.9905936,60.4048726,58.22933222,2.17554038,71.78327705,0,71.78327705,1.810420054,69.97285699,1.222383208,2.377474326,-1.110141266,1.110141266,0.719999027,0.719999027,0.208042571,1.693116801,54.45645637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.97224899,1.311643166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226657359,52.34561721,57.19890635,53.65726038,127.9905936,0,0.191188418,78.97785294,-0.191188418,101.0221471,0.788477883,0,158.1166586,53.65726038,193.2342624,11,9,22% +2018-11-17 18:00:00,62.90207396,149.5770192,418.5825444,761.8706632,71.54079404,356.6847746,284.1457474,72.53902717,69.38357514,3.155452029,103.647403,0,103.647403,2.157218898,101.4901841,1.097848297,2.610611471,-0.353567794,0.353567794,0.590617343,0.590617343,0.170912034,2.084446696,67.04297097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.69413156,1.562897748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.510174535,64.4442538,68.20430609,66.00715154,284.1457474,0,0.372957985,68.10184004,-0.372957985,111.89816,0.915936642,0,328.4638077,66.00715154,371.6641683,11,10,13% +2018-11-17 19:00:00,58.3271611,164.9789655,498.853436,802.2337793,77.62593776,495.1368492,416.091052,79.04579724,75.28522933,3.760567917,123.2934995,0,123.2934995,2.340708433,120.9527911,1.018001004,2.879426144,0.140674122,-0.140674122,0.506096998,0.506096998,0.155608706,2.192232864,70.50974464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36702604,1.695835291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.588265247,67.77664852,73.95529129,69.47248381,416.091052,0,0.518665584,58.75721597,-0.518665584,121.242784,0.953598771,0,470.7392069,69.47248381,516.2075581,11,11,10% +2018-11-17 20:00:00,56.95717665,181.6850056,522.2571715,812.3642863,79.30278032,583.1495286,502.3010245,80.84850406,76.9115089,3.936995161,129.0185691,0,129.0185691,2.391271423,126.6272977,0.994090265,3.171001549,0.56805568,-0.56805568,0.433010447,0.433010447,0.151846226,2.043716514,65.73294831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93026782,1.732468006,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.480665657,63.18501019,75.41093348,64.91747819,502.3010245,0,0.618319925,51.80644997,-0.618319925,128.19355,0.969135713,0,562.2087949,64.91747819,604.6959861,11,12,8% +2018-11-17 21:00:00,59.02158574,198.2265207,486.8714832,796.7889378,76.75217956,608.0679305,529.9598695,78.10806105,74.43781816,3.670242895,120.3619893,0,120.3619893,2.314361399,118.0476279,1.030121001,3.45970545,1.030689042,-1.030689042,0.353895483,0.353895483,0.157643613,1.672712219,53.80017489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55246219,1.676746955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211874309,51.71477449,72.7643365,53.39152145,529.9598695,0,0.665119512,48.30850532,-0.665119512,131.6914947,0.97482554,0,589.3827525,53.39152145,624.3264355,11,13,6% +2018-11-17 22:00:00,64.18175612,213.2356024,395.6230251,748.3937444,69.68426315,561.4341148,490.8687158,70.56539898,67.58302551,2.982373475,98.02462044,0,98.02462044,2.101237642,95.9233828,1.120182964,3.721663344,1.655816324,-1.655816324,0.246992421,0.246992421,0.176138037,1.132185613,36.41498118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.96337476,1.522339518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820264623,35.00346502,65.78363939,36.52580454,490.8687158,0,0.655896337,49.01235001,-0.655896337,130.98765,0.973768442,0,543.7761038,36.52580454,567.6815123,11,14,4% +2018-11-17 23:00:00,71.7503731,226.1555787,256.9363573,639.2308908,56.75633149,435.0003219,378.0185085,56.98181348,55.04491869,1.936894792,64.00860734,0,64.00860734,1.711412803,62.29719453,1.25228025,3.94715947,2.773813598,-2.773813598,0.055803627,0.055803627,0.220896459,0.512063195,16.46971257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.91126958,1.23991275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370988042,15.83131418,53.28225762,17.07122693,378.0185085,0,0.591364582,53.74609702,-0.591364582,126.253903,0.965449789,0,418.240147,17.07122693,429.4129236,11,15,3% +2018-11-17 00:00:00,81.00063728,237.1596131,90.74335443,373.6827388,32.29060029,210.005599,178.0046177,32.00098128,31.31691955,0.684061736,22.97545761,0,22.97545761,0.973680738,22.00177687,1.413727817,4.139216101,6.156306366,-6.156306366,0,0,0.355845345,0.243420185,7.829229887,0.343244519,1,0.161028636,0,0.943968743,0.982730706,0.724496596,1,30.35943213,0.70542838,0.05050354,0.312029739,0.866784567,0.591281163,0.961238037,0.922476074,0.166948808,7.525753567,30.52638094,8.231181947,116.9055083,0,0.476352262,61.55256779,-0.476352262,118.4474322,0.945035662,0,141.0062553,8.231181947,146.3933993,11,16,4% +2018-11-17 01:00:00,91.55599508,246.7461719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597953564,4.306533117,-36.75419605,36.75419605,1,0,#DIV/0!,0,0,1,0.828045485,0,0.027201067,0.961238037,1,0.650255692,0.925759096,0,0,0.115824807,0.22775687,0.724496596,0.448993192,0.973837873,0.935075909,0,0,0,0,0,0,0.315826536,71.5892818,-0.315826536,108.4107182,0.891685247,0,0,0,0,11,17,0% +2018-11-17 02:00:00,102.7596166,255.4913842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793493648,4.459165864,-4.395654309,4.395654309,1,0.718145152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124501563,82.8480274,-0.124501563,97.1519726,0.648398617,0,0,0,0,11,18,0% +2018-11-17 03:00:00,114.4077127,264.007986,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996791277,4.607808607,-2.138165586,2.138165586,1,0.89580154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086115238,94.94015845,0.086115238,85.05984155,0,0,0,0,0,11,19,0% +2018-11-17 04:00:00,126.2389481,273.0559235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203285288,4.765724907,-1.255397233,1.255397233,1,0.74483926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301678625,107.5584531,0.301678625,72.44154686,0,0.884260714,0,0,0,11,20,0% +2018-11-17 05:00:00,137.9474365,283.8574352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407636962,4.954246851,-0.749099914,0.749099914,1,0.65825732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507508828,120.498036,0.507508828,59.50196396,0,0.951479546,0,0,0,11,21,0% +2018-11-17 06:00:00,148.9875704,298.9273435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.600323649,5.217266369,-0.394968782,0.394968782,1,0.597697329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689591473,133.5977791,0.689591473,46.40222086,0,0.977493303,0,0,0,11,22,0% +2018-11-17 07:00:00,157.9626334,323.9379117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756968048,5.653783132,-0.111995468,0.111995468,1,0.549306043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835531928,146.6712669,0.835531928,33.32873314,0,0.990157882,0,0,0,11,23,0% +2018-11-18 08:00:00,161.3400875,4.340362759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815915742,0.075753621,0.139185882,-0.139185882,1,0.506351502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935399103,159.2927188,0.935399103,20.70728125,0,0.996546881,0,0,0,11,0,0% +2018-11-18 09:00:00,156.514003,42.18531381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731684678,0.736272622,0.384317761,-0.384317761,1,0.464431482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982401367,169.2349494,0.982401367,10.76505062,0,0.999104305,0,0,0,11,1,0% +2018-11-18 10:00:00,146.948847,64.62498174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564741212,1.12791871,0.647816541,-0.647816541,1,0.419370537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973348637,166.7423473,0.973348637,13.25765269,0,0.998630945,0,0,0,11,2,0% +2018-11-18 11:00:00,135.7174722,78.55907104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368716742,1.371114447,0.96440239,-0.96440239,1,0.365231168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908869225,155.3495516,0.908869225,24.65044844,0,0.994986585,0,0,0,11,3,0% +2018-11-18 12:00:00,123.9634265,88.88811788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163569944,1.551390323,1.40466206,-1.40466206,1,0.28994233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793366736,142.5012608,0.793366736,37.49873922,0,0.986977443,0,0,0,11,4,0% +2018-11-18 13:00:00,112.1590903,97.76569701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957545413,1.706333308,2.172716579,-2.172716579,1,0.158597272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634719908,129.3992137,0.634719908,50.60078633,0,0.971225096,0,0,0,11,5,0% +2018-11-18 14:00:00,100.5927002,106.282904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755673823,1.854986614,4.310420549,-4.310420549,1,0,#DIV/0!,0,0,0.171480117,1,0.227963204,0,0.935046898,0.973808862,0.724496596,1,0,0,0.027131653,0.312029739,0.925941167,0.650437763,0.961238037,0.922476074,0,0,0,0,0,0,-0.443745823,116.3431247,0.443745823,63.65687526,0,0.937322883,0,0,0,11,6,0% +2018-11-18 15:00:00,89.11054895,115.1543369,0.779366582,8.468329667,0.647910788,0.634249082,0,0.634249082,0.628373887,0.005875195,2.127226232,1.91872288,0.208503352,0.019536901,0.188966451,1.555272477,2.009822327,-45.42319529,45.42319529,0,0,0.831329958,0.004884225,0.157093472,1,0.862975737,0,0.022011628,0.961238037,1,0.663971868,0.939475272,0.604016882,0.013709483,0.115824807,0.24330632,0.724496596,0.448993192,0.971625901,0.932863938,0.003538605,0.151801711,0.607555486,0.165511194,0,0.262911589,-0.226576309,103.0955881,0.226576309,76.90441187,0,0.829323795,0.607555486,0.383550031,0.85858131,11,7,41% +2018-11-18 16:00:00,79.20447611,124.9794889,121.4768538,444.3572166,38.24671426,38.00917854,0,38.00917854,37.09343471,0.915743836,38.06864194,7.461892776,30.60674916,1.15327955,29.45346961,1.38237889,2.181303579,-3.009607401,3.009607401,0.955173133,0.955173133,0.314847751,0.887618386,28.54885847,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.65562036,0.835547108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.643076499,27.44224867,36.29869686,28.27779578,0,7.461892776,-0.016792554,90.96218772,0.016792554,89.03781228,0,0,36.29869686,28.27779578,54.80594863,11,8,51% +2018-11-18 17:00:00,70.25989402,136.3235521,284.5911347,666.320866,59.53847187,185.2307026,125.3421671,59.88853546,57.74316727,2.145368185,70.79772008,0,70.79772008,1.795304601,69.00241548,1.226266483,2.379294832,-1.119076425,1.119076425,0.721527029,0.721527029,0.20920705,1.672927084,53.80708568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.50492875,1.300692072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.212029978,51.72141741,56.71695873,53.02210948,125.3421671,0,0.188110824,79.15744547,-0.188110824,100.8425545,0.78419924,0,155.0101909,53.02210948,189.7121011,11,9,22% +2018-11-18 18:00:00,63.13855611,149.6404347,414.4704776,759.9564648,71.09593693,353.0461069,280.9695212,72.07658565,68.95213211,3.124453533,102.6369707,0,102.6369707,2.143804814,100.4931659,1.101975689,2.611718279,-0.355046342,0.355046342,0.59087019,0.59087019,0.171534381,2.065420067,66.43100919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.27941211,1.55317929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496389808,63.85601286,67.77580192,65.40919215,280.9695212,0,0.369717917,68.30177845,-0.369717917,111.6982216,0.914761761,0,324.795976,65.40919215,367.604984,11,10,13% +2018-11-18 19:00:00,58.57013373,164.9833174,494.7900152,800.8052361,77.2065317,491.3095471,412.7011411,78.60840604,74.87846991,3.729936135,122.2956295,0,122.2956295,2.328061792,119.9675677,1.022241677,2.8795021,0.142142165,-0.142142165,0.505845948,0.505845948,0.156038985,2.174378371,69.9354828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97603341,1.686672844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.575329728,67.22464619,73.55136314,68.91131904,412.7011411,0,0.515357696,58.97863315,-0.515357696,121.0213669,0.952980007,0,466.8472995,68.91131904,511.9483796,11,11,10% +2018-11-18 20:00:00,57.19370212,181.6195699,518.3605088,811.1112054,78.89997023,579.2960897,498.8676242,80.42846549,76.52084502,3.907620472,128.0616319,0,128.0616319,2.379125212,125.6825067,0.998218413,3.16985948,0.571572249,-0.571572249,0.432409078,0.432409078,0.152210612,2.027283035,65.20439114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55474684,1.723668117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468759658,62.67694093,75.0235065,64.40060905,498.8676242,0,0.615042205,52.04501297,-0.615042205,127.954987,0.968704766,0,558.2789516,64.40060905,600.4278622,11,12,8% +2018-11-18 21:00:00,59.23803357,198.0988354,483.240539,795.5042533,76.36193802,604.3003876,526.5981725,77.70221515,74.05934385,3.642871304,119.4698576,0,119.4698576,2.302594177,117.1672634,1.033898728,3.457476922,1.036624399,-1.036624399,0.352880477,0.352880477,0.158020555,1.658011574,53.32735161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18865829,1.668221643,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.201223741,51.26027877,72.38988203,52.92850041,526.5981725,0,0.661967765,48.54988105,-0.661967765,131.4501189,0.974467621,0,585.5427505,52.92850041,620.1833954,11,13,6% +2018-11-18 22:00:00,64.37006977,213.0662198,392.3429222,746.8225308,69.29976553,557.8115887,487.6438201,70.16776859,67.21012191,2.957646674,97.21772749,0,97.21772749,2.08964362,95.12808387,1.123469657,3.718707061,1.666097417,-1.666097417,0.245234251,0.245234251,0.176630599,1.119614125,36.0106389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.60492564,1.513939689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.811156622,34.61479584,65.41608227,36.12873553,487.6438201,0,0.652958099,49.23499705,-0.652958099,130.765003,0.973425408,0,540.1009669,36.12873553,563.7465017,11,14,4% +2018-11-18 23:00:00,71.90946104,225.9635381,254.0978679,636.8143061,56.35462696,431.4724548,374.9016307,56.57082409,54.65532703,1.91549706,63.30826985,0,63.30826985,1.699299929,61.60896992,1.255056859,3.943807729,2.795766598,-2.795766598,0.052049443,0.052049443,0.221783156,0.502413634,16.15934951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.53677926,1.231137014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363996968,15.5329814,52.90077623,16.76411841,374.9016307,0,0.588714209,53.93418241,-0.588714209,126.0658176,0.965069147,0,414.7067731,16.76411841,425.6785534,11,15,3% +2018-11-18 00:00:00,81.1331852,236.955363,88.61655454,368.7379007,31.77997929,206.2916682,174.8019435,31.48972468,30.82169566,0.66802902,22.44439325,0,22.44439325,0.958283631,21.48610962,1.416041214,4.135651265,6.244737351,-6.244737351,0,0,0.358623504,0.239570908,7.705423915,0.349703166,1,0.158786731,0,0.944250344,0.983012307,0.724496596,1,29.88031249,0.694273229,0.051318311,0.312029739,0.864800193,0.589296789,0.961238037,0.922476074,0.164259685,7.406746557,30.04457217,8.101019786,113.6731505,0,0.474054723,61.70217902,-0.474054723,118.297821,0.944526945,0,137.4119257,8.101019786,142.7138812,11,16,4% +2018-11-18 01:00:00,91.66936804,246.5322907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599932296,4.302800186,-34.24930157,34.24930157,1,0,#DIV/0!,0,0,1,0.814372375,0,0.029189383,0.961238037,1,0.645056489,0.920559894,0,0,0.115824807,0.221865688,0.724496596,0.448993192,0.9746623,0.935900337,0,0,0,0,0,0,0.313874044,71.70714579,-0.313874044,108.2928542,0.890700431,0,0,0,0,11,17,0% +2018-11-18 02:00:00,102.8580334,255.2648993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795211345,4.455212958,-4.362489494,4.362489494,1,0.723816669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122921516,82.93925827,-0.122921516,97.06074173,0.643236386,0,0,0,0,11,18,0% +2018-11-18 03:00:00,114.4971571,263.7614699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998352376,4.603506089,-2.131591465,2.131591465,1,0.894677299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087343714,95.01081119,0.087343714,84.98918881,0,0.47754896,0,0,0,11,19,0% +2018-11-18 04:00:00,126.3266334,272.7769636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204815685,4.760856138,-1.253954511,1.253954511,1,0.74459254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302600497,107.6138621,0.302600497,72.38613786,0,0.884765638,0,0,0,11,20,0% +2018-11-18 05:00:00,138.0438009,283.527093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409318837,4.948481291,-0.749445939,0.749445939,1,0.658316493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508190074,120.5433465,0.508190074,59.4566535,0,0.951611616,0,0,0,11,21,0% +2018-11-18 06:00:00,149.1105486,298.5244827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602470023,5.210235121,-0.396212754,0.396212754,1,0.597910061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690114552,133.6391774,0.690114552,46.36082265,0,0.97754826,0,0,0,11,22,0% +2018-11-18 07:00:00,158.1420249,323.5084092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760099021,5.646286899,-0.113875073,0.113875073,1,0.549627474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835990113,146.7190767,0.835990113,33.28092331,0,0.99019068,0,0,0,11,23,0% +2018-11-19 08:00:00,161.5779017,4.227220967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820066383,0.073778924,0.136683189,-0.136683189,1,0.506779488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935890064,159.37242,0.935890064,20.62757999,0,0.996574922,0,0,0,11,0,0% +2018-11-19 09:00:00,156.7367322,42.41273646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735572036,0.740241896,0.38103049,-0.38103049,1,0.464993638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98302045,169.4265393,0.98302045,10.57346073,0,0.999136358,0,0,0,11,1,0% +2018-11-19 10:00:00,147.1407637,64.89021257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56809079,1.132547862,0.643353285,-0.643353285,1,0.420133798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974182292,166.9522598,0.974182292,13.04774021,0,0.998674904,0,0,0,11,2,0% +2018-11-19 11:00:00,135.8933576,78.79309202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371786522,1.375198884,0.957899977,-0.957899977,1,0.366343146,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909989051,155.5038385,0.909989051,24.49616153,0,0.995054284,0,0,0,11,3,0% +2018-11-19 12:00:00,124.1344856,89.09074899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16655549,1.554926903,1.393953738,-1.393953738,1,0.291773561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794824533,142.6386855,0.794824533,37.36131453,0,0.987093034,0,0,0,11,4,0% +2018-11-19 13:00:00,112.3324355,97.94421342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960570857,1.709449008,2.15049375,-2.15049375,1,0.162397599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636544096,129.5346015,0.636544096,50.46539849,0,0.971450846,0,0,0,11,5,0% +2018-11-19 14:00:00,100.7732702,106.4426575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758825363,1.857774838,4.227798646,-4.227798646,1,0,#DIV/0!,0,0,0.161666328,1,0.232261121,0,0.934440513,0.973202476,0.724496596,1,0,0,0.025689181,0.312029739,0.929733304,0.6542299,0.961238037,0.922476074,0,0,0,0,0,0,-0.445939464,116.4834611,0.445939464,63.51653893,0,0.937877158,0,0,0,11,6,0% +2018-11-19 15:00:00,89.27799776,115.2973787,0.525631787,6.374766298,0.445303466,0.435838358,0,0.435838358,0.431875924,0.003962434,1.59894866,1.458075605,0.140873055,0.013427543,0.127445512,1.55819501,2.012318878,-55.81877057,55.81877057,0,0,0.847177582,0.003356886,0.107968981,1,0.889815973,0,0.017913204,0.961238037,1,0.674953841,0.950457245,0.415135565,0.009470579,0.115824807,0.255763821,0.724496596,0.448993192,0.96981644,0.931054476,0.002432052,0.104248963,0.417567617,0.113719542,0,0.160656642,-0.228726127,103.2220851,0.228726127,76.77791488,0,0.831397951,0.417567617,0.247289144,0.579413417,11,7,39% +2018-11-19 16:00:00,79.40822582,125.1037325,118.0071854,437.6619539,37.56044058,37.31744272,0,37.31744272,36.42785471,0.88958801,38.3265556,8.581761393,29.74479421,1.132585867,28.61220834,1.385934994,2.183472039,-3.059378066,3.059378066,0.946661848,0.946661848,0.318289437,0.857241539,27.57183464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.01583955,0.820554605,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.621068577,26.5030962,35.63690813,27.3236508,0,8.581761393,-0.019608196,91.12353888,0.019608196,88.87646112,0,0,35.63690813,27.3236508,53.5196911,11,8,50% +2018-11-19 17:00:00,70.47947187,136.4213863,280.6404088,663.187408,59.03993708,182.0956684,122.7204173,59.37525109,57.25966514,2.115585945,69.8247882,0,69.8247882,1.780271937,68.04451626,1.230098839,2.381002361,-1.128299928,1.128299928,0.723104341,0.723104341,0.210375752,1.653026773,53.16702327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.04016811,1.289800958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.19761227,51.10616507,56.23778038,52.39596603,122.7204173,0,0.185046362,79.33616458,-0.185046362,100.6638354,0.779797444,0,151.9348481,52.39596603,186.22696,11,9,23% +2018-11-19 18:00:00,63.37109707,149.6977635,410.4217061,758.052111,70.65510266,349.4451663,277.8266435,71.61852281,68.52459063,3.093932183,101.6420064,0,101.6420064,2.130512035,99.51149434,1.106034295,2.612718857,-0.356686934,0.356686934,0.591150748,0.591150748,0.172152451,2.046744887,65.8303512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.86844297,1.543548717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482859703,63.27863756,67.35130267,64.82218627,277.8266435,0,0.366500719,68.50003129,-0.366500719,111.4999687,0.913574619,0,321.1666728,64.82218627,363.5914972,11,10,13% +2018-11-19 19:00:00,58.80810377,164.9827089,490.8030909,799.3940824,76.79208032,487.5335251,409.3571284,78.17639678,74.47651577,3.699881015,121.3164563,0,121.3164563,2.315564554,119.0008917,1.026395038,2.879491479,0.143460605,-0.143460605,0.505620481,0.505620481,0.156462096,2.156927542,69.37420413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58965981,1.677618637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562686662,66.68512379,73.15234647,68.36274243,409.3571284,0,0.512084262,59.19723865,-0.512084262,120.8027613,0.952359819,0,463.0076271,68.36274243,507.7496748,11,11,10% +2018-11-19 20:00:00,57.42439007,181.5510364,514.5533955,809.8821071,78.50305728,575.5100378,495.4952165,80.0148213,76.13590046,3.878920844,127.1265849,0,127.1265849,2.367156822,124.759428,1.002244678,3.168663346,0.574916734,-0.574916734,0.431837138,0.431837138,0.152565425,2.011294724,64.69015209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.18472349,1.71499706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457176181,62.1826348,74.64189967,63.89763186,495.4952165,0,0.611811537,52.27939556,-0.611811537,127.7206044,0.968275487,0,554.4177716,63.89763186,596.2374937,11,12,8% +2018-11-19 21:00:00,59.4482117,197.9700641,479.7108705,794.2528303,75.978685,600.6178808,523.3139703,77.30391049,73.68764732,3.616263173,118.6024921,0,118.6024921,2.291037684,116.3114545,1.037567029,3.455229438,1.042331132,-1.042331132,0.351904568,0.351904568,0.15838433,1.643782294,52.86968904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83136945,1.659849003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190914676,50.8203561,72.02228412,52.4802051,523.3139703,0,0.658875802,48.7858087,-0.658875802,131.2141913,0.974113164,0,581.7893115,52.4802051,616.1365561,11,13,6% +2018-11-19 22:00:00,64.55202531,212.8973113,389.1733291,745.3014108,68.9237521,554.2934045,484.5142049,69.77919962,66.84544668,2.933752943,96.43788477,0,96.43788477,2.078305427,94.35957934,1.126645381,3.71575905,1.676024954,-1.676024954,0.243536542,0.243536542,0.177102969,1.107516574,35.6215401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25438594,1.505725207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.802391988,34.24077927,65.05677792,35.74650448,484.5142049,0,0.650091625,49.45148967,-0.650091625,130.5485103,0.973087765,0,536.5316225,35.74650448,559.9269948,11,14,4% +2018-11-19 23:00:00,72.06227538,225.772971,251.3749108,634.4853092,55.96415911,428.0726089,371.9010054,56.17160349,54.27663323,1.894970259,62.63628333,0,62.63628333,1.687525883,60.94875745,1.257723972,3.940481707,2.817036235,-2.817036235,0.048412121,0.048412121,0.222632239,0.493196824,15.8629052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.17276437,1.222606758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.35731942,15.24802786,52.53008379,16.47063461,371.9010054,0,0.586145968,54.11601132,-0.586145968,125.8839887,0.964697016,0,411.301874,16.47063461,422.081575,11,15,3% +2018-11-19 00:00:00,81.25959542,236.7532034,86.60000205,363.9917962,31.28858712,202.7464477,171.7484995,30.99794817,30.34512078,0.652827395,21.94063946,0,21.94063946,0.943466344,20.99717312,1.418247489,4.132122914,6.331281805,-6.331281805,0,0,0.361300074,0.235866586,7.586280194,0.355902205,1,0.156651795,0,0.944517456,0.983279419,0.724496596,1,29.41910759,0.683538155,0.052096284,0.312029739,0.862910352,0.587406948,0.961238037,0.922476074,0.161676925,7.292221081,29.58078452,7.975759236,110.6228299,0,0.471847171,61.84573261,-0.471847171,118.1542674,0.944033486,0,134.0124402,7.975759236,139.2324151,11,16,4% +2018-11-19 01:00:00,91.77665812,246.320919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601804861,4.299111053,-32.17240932,32.17240932,1,0,#DIV/0!,0,0,1,0.801270269,0,0.03107253,0.961238037,1,0.64016098,0.915664384,0,0,0.115824807,0.216320128,0.724496596,0.448993192,0.975431483,0.93666952,0,0,0,0,0,0,0.312017378,71.8191508,-0.312017378,108.1808492,0.889752515,0,0,0,0,11,17,0% +2018-11-19 02:00:00,102.9503834,255.0412615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796823157,4.451309741,-4.331831374,4.331831374,1,0.729059517,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121439422,83.024817,-0.121439422,96.975183,0.638272086,0,0,0,0,11,18,0% +2018-11-19 03:00:00,114.5804515,263.5181085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999806138,4.599258632,-2.125594604,2.125594604,1,0.893651775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088475459,95.07590743,0.088475459,84.92409257,0,0.484871539,0,0,0,11,19,0% +2018-11-19 04:00:00,126.4079458,272.5014028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206234854,4.756046696,-1.252743241,1.252743241,1,0.744385401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303430123,107.6637413,0.303430123,72.33625873,0,0.885217415,0,0,0,11,20,0% +2018-11-19 05:00:00,138.1333717,283.2000505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410882143,4.942773322,-0.749905977,0.749905977,1,0.658395164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508786513,120.5830337,0.508786513,59.41696628,0,0.951726955,0,0,0,11,21,0% +2018-11-19 06:00:00,149.226099,298.123213,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604486758,5.203231644,-0.397516297,0.397516297,1,0.59813298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690562701,133.6746681,0.690562701,46.32533192,0,0.977595279,0,0,0,11,22,0% +2018-11-19 07:00:00,158.31371,323.0730881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76309549,5.638689112,-0.115782592,0.115782592,1,0.549953679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836385002,146.7603307,0.836385002,33.23966926,0,0.990218918,0,0,0,11,23,0% +2018-11-20 08:00:00,161.8099836,4.100440704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824116977,0.071566191,0.134175694,-0.134175694,1,0.507208295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93633032,159.4441411,0.93633032,20.55585886,0,0.996600042,0,0,0,11,0,0% +2018-11-20 09:00:00,156.9560206,42.62945553,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739399341,0.744024357,0.377760385,-0.377760385,1,0.465552859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983601502,169.6095362,0.983601502,10.3904638,0,0.999166405,0,0,0,11,1,0% +2018-11-20 10:00:00,147.3306082,65.14631121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571404202,1.137017626,0.638935,-0.638935,1,0.42088937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974989807,167.1588038,0.974989807,12.84119615,0,0.998717413,0,0,0,11,2,0% +2018-11-20 11:00:00,136.0679168,79.01916765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374833155,1.379144648,0.951489065,-0.951489065,1,0.367439476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911093019,155.6568383,0.911093019,24.34316168,0,0.995120861,0,0,0,11,3,0% +2018-11-20 12:00:00,124.3045424,89.28625223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169523541,1.558339078,1.383441056,-1.383441056,1,0.293571336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796274439,142.7757958,0.796274439,37.22420417,0,0.987207579,0,0,0,11,4,0% +2018-11-20 13:00:00,112.5048143,98.11607521,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963579433,1.712448562,2.128817573,-2.128817573,1,0.166104444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638365494,129.6700462,0.638365494,50.3299538,0,0.971674964,0,0,0,11,5,0% +2018-11-20 14:00:00,100.9526833,106.5959635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761956712,1.860450533,4.148642653,-4.148642653,1,0,#DIV/0!,0,0,0.152043651,1,0.236530653,0,0.933834192,0.972596155,0.724496596,1,0,0,0.02426264,0.312029739,0.933499649,0.657996245,0.961238037,0.922476074,0,0,0,0,0,0,-0.448132197,116.6239106,0.448132197,63.37608936,0,0.938425781,0,0,0,11,6,0% +2018-11-20 15:00:00,89.44226727,115.4339933,0.332928103,4.703217889,0.287146422,0.280997651,0,0.280997651,0.278487898,0.002509753,1.175106944,1.085726147,0.089380797,0.008658524,0.080722273,1.561062054,2.014703251,-72.08636609,72.08636609,0,0,0.862487785,0.002164631,0.069621975,1,0.915666246,0,0.013871359,0.961238037,1,0.68591319,0.961416594,0.26769316,0.00614017,0.115824807,0.268201914,0.724496596,0.448993192,0.967976968,0.929215005,0.001568268,0.067164878,0.269261428,0.073305048,0,0.091563362,-0.230847512,103.3469734,0.230847512,76.65302657,0,0.833406806,0.269261428,0.149614577,0.367181176,11,7,36% +2018-11-20 16:00:00,79.60976363,125.2214826,114.5898073,430.9125207,36.87407285,36.62600988,0,36.62600988,35.76218351,0.86382637,38.55492185,9.659407058,28.89551479,1.111889347,27.78362545,1.389452492,2.185527166,-3.110881524,3.110881524,0.937854238,0.937854238,0.321791909,0.827418025,26.61260791,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.37597107,0.805560047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.599461542,25.58105098,34.97543261,26.38661103,0,9.659407058,-0.022416167,91.28445935,0.022416167,88.71554065,0,0,34.97543261,26.38661103,52.2449418,11,8,49% +2018-11-20 17:00:00,70.69602445,136.5127505,276.7436512,660.0499297,58.54442535,178.992217,120.1269115,58.86530546,56.77909492,2.08621054,68.86503269,0,68.86503269,1.76533043,67.09970226,1.233878395,2.382596967,-1.137812714,1.137812714,0.724731123,0.724731123,0.211547492,1.633426839,52.53662202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.57822573,1.278975887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.183412185,50.50019941,55.76163792,51.7791753,120.1269115,0,0.181996704,79.5139162,-0.181996704,100.4860838,0.77526975,0,148.8923985,51.7791753,182.7808332,11,9,23% +2018-11-20 18:00:00,63.59958873,149.7490376,406.4386313,756.1597889,70.21852637,345.8842149,274.7191301,71.1650848,68.10117872,3.063906083,100.6630994,0,100.6630994,2.117347649,98.54575173,1.110022226,2.613613758,-0.358491783,0.358491783,0.591459395,0.591459395,0.172765384,2.028431661,65.2413349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46144334,1.534011164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469591833,62.71245268,66.93103517,64.24646384,274.7191301,0,0.363308303,68.69649017,-0.363308303,111.3035098,0.91237584,0,317.5781323,64.24646384,359.626158,11,10,13% +2018-11-20 19:00:00,59.0409704,164.9771892,486.8950935,798.0022092,76.38279898,483.8113055,406.0613088,77.74999665,74.07957577,3.67042088,120.3565757,0,120.3565757,2.303223212,118.0533525,1.030459327,2.879395141,0.144625588,-0.144625588,0.505421257,0.505421257,0.156877323,2.139890047,68.82621972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.20810598,1.668677376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.550343054,66.15838033,72.75844904,67.8270577,406.0613088,0,0.508847349,59.41291729,-0.508847349,120.5870827,0.951738704,0,459.2227128,67.8270577,503.6141656,11,11,10% +2018-11-20 20:00:00,57.64915022,181.479454,510.8381645,808.6788497,78.11224756,571.7940305,492.1862415,79.60778895,75.75687509,3.850913863,126.2139997,0,126.2139997,2.355372467,123.8586273,1.006167482,3.167413996,0.57808327,-0.57808327,0.431295628,0.431295628,0.152909968,1.995759968,64.19050096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.82038989,1.706459335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445921303,61.70235112,74.26631119,63.40881046,492.1862415,0,0.608630041,52.5094882,-0.608630041,127.4905118,0.967848288,0,550.6279223,63.40881046,592.1277206,11,12,8% +2018-11-20 21:00:00,59.65203898,197.8402496,476.2845923,793.0367653,75.60262693,597.0231103,520.109747,76.91336323,73.32292879,3.59043444,117.7604118,0,117.7604118,2.279698146,115.4807136,1.041124486,3.452963749,1.047799879,-1.047799879,0.350969357,0.350969357,0.158734144,1.630030956,52.42739875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.48078812,1.651633546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.180951879,50.39520985,71.66174,52.04684339,520.109747,0,0.655845693,49.01619397,-0.655845693,130.983806,0.973762555,0,578.1251361,52.04684339,612.1887542,11,13,6% +2018-11-20 22:00:00,64.7275501,212.7289238,386.1160183,743.833191,68.55645033,550.8822827,481.4823567,69.39992605,66.48922041,2.910705642,95.68552887,0,95.68552887,2.067229924,93.61829894,1.129708866,3.712820135,1.685581366,-1.685581366,0.241902299,0.241902299,0.177554018,1.095896951,35.24781305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.91196769,1.497701043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.79397361,33.88153862,64.7059413,35.37923967,481.4823567,0,0.647298833,49.66174629,-0.647298833,130.3382537,0.972755924,0,533.0707562,35.37923967,556.225761,11,14,4% +2018-11-20 23:00:00,72.2087541,225.5839379,248.7687219,632.2486856,55.58524503,424.8037046,369.0192361,55.78446851,53.9091448,1.875323706,61.992957,0,61.992957,1.676100225,60.31685677,1.260280508,3.937182456,2.837576145,-2.837576145,0.04489959,0.04489959,0.223441454,0.484412268,15.5803637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.81952052,1.214328908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350955039,14.97643822,52.17047556,16.19076713,369.0192361,0,0.583661531,54.29151049,-0.583661531,125.7084895,0.964333912,0,408.0282391,16.19076713,418.6247724,11,15,3% +2018-11-20 00:00:00,81.3798214,236.5532111,84.69343151,359.4546995,30.81708241,199.3732744,168.8469859,30.52628853,29.88783367,0.638454861,21.46415175,0,21.46415175,0.929248737,20.53490302,1.420345828,4.12863239,6.415644589,-6.415644589,0,0,0.363866263,0.232312184,7.471958417,0.361832267,1,0.154624784,0,0.944770114,0.983532077,0.724496596,1,28.97645644,0.673237547,0.052836817,0.312029739,0.861115917,0.585612513,0.961238037,0.922476074,0.159203199,7.18233064,29.13565964,7.855568187,107.7526982,0,0.469730918,61.98316876,-0.469730918,118.0168312,0.94355608,0,130.8063732,7.855568187,135.9476855,11,16,4% +2018-11-20 01:00:00,91.87782804,246.1121517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603570609,4.295467376,-30.43061091,30.43061091,1,0,#DIV/0!,0,0,1,0.788766369,0,0.032849826,0.961238037,1,0.635566261,0.911069665,0,0,0.115824807,0.211116641,0.724496596,0.448993192,0.976147133,0.93738517,0,0,0,0,0,0,0.310257556,71.92524729,-0.310257556,108.0747527,0.88884357,0,0,0,0,11,17,0% +2018-11-20 02:00:00,103.0366429,254.8205874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798328668,4.447458252,-4.303595395,4.303595395,1,0.733888154,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.12005591,83.10467067,-0.12005591,96.89532933,0.633527376,0,0,0,0,11,18,0% +2018-11-20 03:00:00,114.657585,263.2780493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001152371,4.595068808,-2.120166956,2.120166956,1,0.892723593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089510234,95.13543187,0.089510234,84.86456813,0,0.491404658,0,0,0,11,19,0% +2018-11-20 04:00:00,126.4828849,272.2294375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207542789,4.751300005,-1.251761605,1.251761605,1,0.744217531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304167629,107.7080935,0.304167629,72.2919065,0,0.885616959,0,0,0,11,20,0% +2018-11-20 05:00:00,138.216153,282.8765917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412326949,4.937127902,-0.75047921,0.75047921,1,0.658493193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509298582,120.6171199,0.509298582,59.38288009,0,0.951825762,0,0,0,11,21,0% +2018-11-20 06:00:00,149.334209,297.7239758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606373633,5.196263639,-0.398878734,0.398878734,1,0.59836597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690936598,133.7042945,0.690936598,46.29570547,0,0.97763446,0,0,0,11,22,0% +2018-11-20 07:00:00,158.477603,322.6324388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.765955963,5.630998331,-0.11771728,0.11771728,1,0.55028453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836717426,146.7950941,0.836717426,33.20490588,0,0.990242669,0,0,0,11,23,0% +2018-11-21 08:00:00,162.0362124,3.959711174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.828065415,0.069109997,0.131664291,-0.131664291,1,0.50763777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936720751,159.5079465,0.936720751,20.4920535,0,0.996622299,0,0,0,11,0,0% +2018-11-21 09:00:00,157.1718242,42.83502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743165825,0.747612243,0.374508544,-0.374508544,1,0.466108957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984145359,169.7837548,0.984145359,10.21624518,0,0.999194497,0,0,0,11,1,0% +2018-11-21 10:00:00,147.5183581,65.39300657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574681057,1.141323273,0.634563035,-0.634563035,1,0.421637019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975771868,167.3619997,0.975771868,12.63800032,0,0.998758515,0,0,0,11,2,0% +2018-11-21 11:00:00,136.2411199,79.23712636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377856119,1.382948745,0.945171231,-0.945171231,1,0.36851989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91218158,155.8085924,0.91218158,24.19140764,0,0.995186352,0,0,0,11,3,0% +2018-11-21 12:00:00,124.4735531,89.47450698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172473333,1.561624743,1.373125231,-1.373125231,1,0.295335445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797716597,142.9126033,0.797716597,37.08739666,0,0.987321099,0,0,0,11,4,0% +2018-11-21 13:00:00,112.6761679,98.28119215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966570118,1.715330396,2.107682875,-2.107682875,1,0.16971869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640183887,129.8055329,0.640183887,50.19446714,0,0.971897441,0,0,0,11,5,0% +2018-11-21 14:00:00,101.1308662,106.7427545,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76506659,1.863012519,4.072795425,-4.072795425,1,0,#DIV/0!,0,0,0.142613656,1,0.240768714,0,0.933228467,0.97199043,0.724496596,1,0,0,0.022852837,0.312029739,0.937237509,0.661734105,0.961238037,0.922476074,0,0,0,0,0,0,-0.450323423,116.7644363,0.450323423,63.23556367,0,0.938968689,0,0,0,11,6,0% +2018-11-21 15:00:00,89.60331903,115.5641339,0.19152183,3.398733064,0.167991266,0.164369482,0,0.164369482,0.16292571,0.001443772,0.843204249,0.791702008,0.051502241,0.005065556,0.046436685,1.563872938,2.016974635,-101.1208899,101.1208899,0,0,0.877139001,0.001266389,0.040731427,1,0.94055702,0,0.009888831,0.961238037,1,0.696836806,0.97234021,0.156610389,0.003612824,0.115824807,0.280604985,0.724496596,0.448993192,0.966110293,0.927348329,0.000917495,0.039257201,0.157527884,0.042870024,0,0.047061127,-0.232940332,103.4702434,0.232940332,76.52975658,0,0.835352757,0.157527884,0.082182666,0.211314795,11,7,34% +2018-11-21 16:00:00,79.80899112,125.3327161,111.2267157,424.114318,36.18804487,35.93531576,0,35.93531576,35.09684179,0.838473965,38.75350452,10.69409649,28.05940803,1.091203072,26.96820496,1.392929668,2.187468557,-3.164161857,3.164161857,0.928742764,0.928742764,0.325353892,0.798165657,25.67175121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.73641931,0.790572911,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.578268301,24.67666373,34.31468761,25.46723664,0,10.69409649,-0.025215127,91.44487351,0.025215127,88.55512649,0,0,34.31468761,25.46723664,50.98248465,11,8,49% +2018-11-21 17:00:00,70.90944707,136.5976491,272.9030347,656.9114123,58.05221583,175.9221427,117.563157,58.35898568,56.30172733,2.05725835,67.91898881,0,67.91898881,1.750488497,66.16850031,1.237603322,2.384078728,-1.14761535,1.14761535,0.726407473,0.726407473,0.212721034,1.614137982,51.91622606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.11936185,1.268222957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.169437473,49.90385122,55.28879932,51.17207417,117.563157,0,0.178963487,79.69060832,-0.178963487,100.3093917,0.770613401,0,145.8845435,51.17207417,179.3756426,11,9,23% +2018-11-21 18:00:00,63.82392651,149.794289,402.5235869,754.2817282,69.78644147,342.3654569,271.6489413,70.7165156,67.68212277,3.034392825,99.70082259,0,99.70082259,2.104318695,97.5965039,1.113937659,2.614403543,-0.360462982,0.360462982,0.59179649,0.59179649,0.173372303,2.010490592,64.66428847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05863082,1.524571731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45659359,62.1577737,66.51522441,63.68234543,271.6489413,0,0.360142545,68.89104954,-0.360142545,111.1089505,0.911166084,0,314.0325264,63.68234543,355.7113478,11,10,13% +2018-11-21 19:00:00,59.26863642,164.9668065,483.0683824,796.6315265,75.97889986,480.1453472,402.815918,77.32942921,73.68785569,3.641573515,119.4165662,0,119.4165662,2.291044163,117.1255221,1.034432849,2.879213929,0.145633319,-0.145633319,0.505248925,0.505248925,0.157283943,2.123275245,68.2918306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83156975,1.659853697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538305687,65.64470518,72.36987543,67.30455888,402.815918,0,0.505648979,59.62555749,-0.505648979,120.3744425,0.951117174,0,455.495013,67.30455888,499.5445007,11,11,10% +2018-11-21 20:00:00,57.86789564,181.4048696,507.2170747,807.5032977,77.72774309,568.1506555,488.9430741,79.20758141,75.38396485,3.823616559,125.3244304,0,125.3244304,2.343778239,122.9806521,1.00998531,3.166112254,0.581066053,-0.581066053,0.430785542,0.430785542,0.153243546,1.980686847,63.70569757,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.46193439,1.698059356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.435000878,61.23633967,73.89693526,62.93439903,488.9430741,0,0.605499786,52.73518531,-0.605499786,127.2648147,0.967423588,0,546.9119982,62.93439903,588.1013036,11,12,8% +2018-11-21 21:00:00,59.84943734,197.7094338,472.9637448,791.8581486,75.23396537,593.5186997,516.9879155,76.53078422,72.96538373,3.565400489,116.9441174,0,116.9441174,2.26858164,114.6755357,1.044569737,3.450680582,1.053021362,-1.053021362,0.350076431,0.350076431,0.159069202,1.616763847,52.00068292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13710221,1.643579675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171339904,49.98503436,71.30844212,51.62861404,516.9879155,0,0.652879454,49.2409462,-0.652879454,130.7590538,0.973416184,0,574.5528459,51.62861404,608.3427413,11,13,6% +2018-11-21 22:00:00,64.89657447,212.5611035,383.1726897,742.4206552,68.19808151,547.5808596,478.5506843,69.03017532,66.14165773,2.888517588,94.96107863,0,94.96107863,2.056423782,92.90465485,1.132658898,3.709891118,1.694749224,-1.694749224,0.240334503,0.240334503,0.177982626,1.084758989,34.88957791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57787723,1.48987203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.785904195,33.53718937,64.36378143,35.0270614,478.5506843,0,0.644581587,49.86568844,-0.644581587,130.1343116,0.972430301,0,529.7209672,35.0270614,552.6454784,11,14,4% +2018-11-21 23:00:00,72.34883805,225.3964977,246.2804692,630.1091592,55.21819249,421.6685626,366.2588362,55.40972646,53.55316025,1.856566206,61.37858333,0,61.37858333,1.665032237,59.71355109,1.262725434,3.933911007,2.857340106,-2.857340106,0.041519753,0.041519753,0.224208573,0.476059298,15.31170348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.47733463,1.206310188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344903341,14.71819179,51.82223797,15.92450198,366.2588362,0,0.581262518,54.46060953,-0.581262518,125.5393905,0.963980347,0,404.888558,15.92450198,415.3108261,11,15,3% +2018-11-21 00:00:00,81.49381938,236.3554614,82.89651175,355.136574,30.3660956,196.1752931,166.0999384,30.0753547,29.45044578,0.624908921,21.01486884,0,21.01486884,0.915649821,20.09921902,1.422335468,4.125181007,6.497523219,-6.497523219,0,0,0.36631331,0.228912455,7.362611446,0.367484219,1,0.152706616,0,0.945008351,0.983770314,0.724496596,1,28.55297009,0.663385179,0.053539292,0.312029739,0.859417723,0.583914319,0.961238037,0.922476074,0.156841079,7.077222172,28.70981117,7.740607351,105.0608323,0,0.467707216,62.11443038,-0.467707216,117.8855696,0.943095513,0,127.7922107,7.740607351,132.8582834,11,16,4% +2018-11-21 01:00:00,91.97284331,245.906082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605228938,4.291870782,-28.95668094,28.95668094,1,0,#DIV/0!,0,0,1,0.776887199,0,0.034520626,0.961238037,1,0.631269558,0.906772962,0,0,0.115824807,0.206251834,0.724496596,0.448993192,0.976810855,0.938048892,0,0,0,0,0,0,0.308595543,72.02538825,-0.308595543,107.9746117,0.887975625,0,0,0,0,11,17,0% +2018-11-21 02:00:00,103.1167908,254.6029918,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799727513,4.443660493,-4.277704897,4.277704897,1,0.738315689,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.118771561,83.1787888,-0.118771561,96.8212112,0.629023805,0,0,0,0,11,18,0% +2018-11-21 03:00:00,114.7285496,263.0414366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002390937,4.590939138,-2.115301157,2.115301157,1,0.891891492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090447841,95.18937157,0.090447841,84.81062843,0,0.497195208,0,0,0,11,19,0% +2018-11-21 04:00:00,126.551454,271.9612602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208739546,4.746619428,-1.25100793,1.25100793,1,0.744088645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304813171,107.7469242,0.304813171,72.25307582,0,0.885965094,0,0,0,11,20,0% +2018-11-21 05:00:00,138.2921532,282.556997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413653403,4.931549922,-0.751164864,0.751164864,1,0.658610447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509726742,120.6456298,0.509726742,59.35437015,0,0.951908227,0,0,0,11,21,0% +2018-11-21 06:00:00,149.4348724,297.3272133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60813054,5.189338828,-0.400299406,0.400299406,1,0.59860892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691236936,133.728103,0.691236936,46.27189703,0,0.977665902,0,0,0,11,22,0% +2018-11-21 07:00:00,158.6336255,322.1869811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768679069,5.623223627,-0.119678404,0.119678404,1,0.550619902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836988221,146.8234365,0.836988221,33.17656348,0,0.990262003,0,0,0,11,23,0% +2018-11-22 08:00:00,162.2564678,3.804737922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.831909595,0.066405204,0.129149857,-0.129149857,1,0.508067763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937062245,159.5639105,0.937062245,20.43608947,0,0.996641752,0,0,0,11,0,0% +2018-11-22 09:00:00,157.3840998,43.02899996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746870731,0.750997723,0.371276039,-0.371276039,1,0.466661748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984652852,169.9490187,0.984652852,10.05098131,0,0.999220682,0,0,0,11,1,0% +2018-11-22 10:00:00,147.7039916,65.63002847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577920971,1.145460085,0.630238697,-0.630238697,1,0.422376525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976529158,167.5618703,0.976529158,12.43812969,0,0.998798252,0,0,0,11,2,0% +2018-11-22 11:00:00,136.4129376,79.44679871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380854904,1.386608218,0.938947976,-0.938947976,1,0.369584129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913255182,155.9591425,0.913255182,24.04085754,0,0.99525079,0,0,0,11,3,0% +2018-11-22 12:00:00,124.6414745,89.65539499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175404115,1.564781835,1.363007347,-1.363007347,1,0.297065706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.79915115,143.0491195,0.79915115,36.95088054,0,0.987433613,0,0,0,11,4,0% +2018-11-22 13:00:00,112.8464385,98.43947651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969541901,1.718092979,2.087084363,-2.087084363,1,0.173241243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641999064,129.9410467,0.641999064,50.05895332,0,0.972118266,0,0,0,11,5,0% +2018-11-22 14:00:00,101.3077467,106.8829652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768153738,1.865459657,4.000109184,-4.000109184,1,0,#DIV/0!,0,0,0.133377733,1,0.244972241,0,0.932623878,0.971385841,0.724496596,1,0,0,0.021460564,0.312029739,0.940944212,0.665440808,0.961238037,0.922476074,0,0,0,0,0,0,-0.452512553,116.9050014,0.452512553,63.09499863,0,0.939505828,0,0,0,11,6,0% +2018-11-22 15:00:00,89.7612,115.6877566,0.091957834,2.404471876,0.081936394,0.080158927,0,0.080158927,0.07946571,0.000693217,0.589831857,0.565064931,0.024766926,0.002470685,0.022296242,1.566628481,2.019132258,-167.6079492,167.6079492,0,0,0.891021357,0.000617671,0.019866427,1,0.964529952,0,0.005966233,0.961238037,1,0.707717262,0.983220666,0.076385463,0.00177269,0.115824807,0.292963727,0.724496596,0.448993192,0.964218411,0.925456448,0.000447501,0.019128261,0.076832964,0.020900951,0,0.02004288,-0.235005839,103.591967,0.235005839,76.40803304,0,0.837239329,0.076832964,0.037681638,0.101494842,11,7,32% +2018-11-22 16:00:00,80.00581234,125.4374123,107.9198259,417.2730598,35.50280674,35.24581136,0,35.24581136,34.43226612,0.813545233,38.92216631,11.68521446,27.23695184,1.070540615,26.16641123,1.396364846,2.18929585,-3.219262669,3.219262669,0.919319971,0.919319971,0.328973907,0.769501192,24.74980346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.09760389,0.775603031,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.557500994,23.79045249,33.65510489,24.56605552,0,11.68521446,-0.02800376,91.60470702,0.02800376,88.39529298,0,0,33.65510489,24.56605552,49.73309691,11,8,48% +2018-11-22 17:00:00,71.11963805,136.6760883,269.1206671,653.7749358,57.56358944,172.8871811,115.030601,57.8565801,55.82783483,2.028745265,66.98717611,0,66.98717611,1.735754609,65.2514215,1.241271847,2.38544775,-1.157707976,1.157707976,0.728133414,0.728133414,0.213895091,1.595170635,51.306171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.66383836,1.257548305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.155695695,49.31744309,54.81953405,50.5749914,115.030601,0,0.175948319,79.86615086,-0.175948319,100.1338491,0.765825646,0,142.9129184,50.5749914,176.0132387,11,9,23% +2018-11-22 18:00:00,64.04400925,149.8335499,398.6788401,752.4201993,69.35907959,338.8910398,268.6179829,70.27305693,67.26764743,3.005409499,98.75573269,0,98.75573269,2.091432157,96.66430053,1.117778828,2.615088775,-0.362602491,0.362602491,0.592162368,0.592162368,0.173972312,1.992931589,64.09953057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.66022136,1.515235479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.443872152,61.61490693,66.10409351,63.13014241,268.6179829,0,0.357005279,69.08360657,-0.357005279,110.9163934,0.909946048,0,310.5319656,63.13014241,351.8493812,11,10,13% +2018-11-22 19:00:00,59.49100814,164.9516083,479.3252465,795.2839611,75.58059182,476.5380469,399.6231326,76.91491429,73.30155812,3.613356176,118.4969891,0,118.4969891,2.279033706,116.2179554,1.038313967,2.878948672,0.146480086,-0.146480086,0.50510412,0.50510412,0.157681225,2.107092188,67.77132786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.46024582,1.651152162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526581118,65.14437814,71.98682694,66.79553031,399.6231326,0,0.502491125,59.83505116,-0.502491125,120.1649488,0.950495755,0,451.8269181,66.79553031,495.5432568,11,11,10% +2018-11-22 20:00:00,58.08054272,181.3273295,503.6923121,806.3573172,77.34974164,564.5824309,485.7680239,78.81440695,75.01736154,3.797045409,124.4584127,0,124.4584127,2.332380101,122.1260326,1.013696702,3.164758924,0.58385936,-0.58385936,0.430307859,0.430307859,0.15356546,1.966083132,63.2359919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10954133,1.689801443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424420537,60.78484071,73.53396187,62.47464216,485.7680239,0,0.602422789,52.9563851,-0.602422789,127.0436149,0.967001812,0,543.2725211,62.47464216,584.1609249,11,12,8% +2018-11-22 21:00:00,60.04033182,197.5776575,469.750294,790.7190593,74.87289665,590.1071954,513.9508167,76.1563787,72.61520256,3.54117614,116.1540915,0,116.1540915,2.257694086,113.8963974,1.047901474,3.448380651,1.057986427,-1.057986427,0.349227355,0.349227355,0.159388717,1.603986965,51.58973445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.80049476,1.635691679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.162083096,49.59001506,70.96257785,51.22570674,513.9508167,0,0.649979042,49.45997824,-0.649979042,130.5400218,0.973074443,0,571.0749825,51.22570674,604.601183,11,13,6% +2018-11-22 22:00:00,65.05903169,212.3938956,380.3449706,741.0665555,67.84886028,544.391685,475.7215171,68.67016785,65.80296681,2.867201047,94.26493507,0,94.26493507,2.045893473,92.2190416,1.135494311,3.706972789,1.70351131,-1.70351131,0.238836098,0.238836098,0.178387689,1.074106176,34.54694683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.25231463,1.482242857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.778186268,33.20783935,64.0305009,34.69008221,475.7215171,0,0.64194169,50.06324071,-0.64194169,129.9367593,0.972111306,0,526.4847661,34.69008221,549.1887311,11,14,4% +2018-11-22 23:00:00,72.48247095,225.2107084,243.9112531,628.0713737,54.86329885,418.6698998,363.6222257,55.04767402,53.20896797,1.838706055,60.79343812,0,60.79343812,1.654330884,59.13910723,1.265057768,3.930668373,2.876282264,-2.876282264,0.038280453,0.038280453,0.224931397,0.468137089,15.05689798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.14648391,1.198557094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339163727,14.47326305,51.48564764,15.67182015,363.6222257,0,0.578950484,54.62324092,-0.578950484,125.3767591,0.963636828,0,401.885416,15.67182015,412.1423088,11,15,3% +2018-11-22 00:00:00,81.60154852,236.1600284,81.20885375,351.0470322,29.93622601,193.1554511,163.5097261,29.64572499,29.03353834,0.612186642,20.59271446,0,20.59271446,0.902687667,19.6900268,1.424215696,4.121770058,6.576609872,-6.576609872,0,0,0.36863254,0.225671917,7.258384586,0.3728492,1,0.150898166,0,0.9452322,0.983994163,0.724496596,1,28.14922891,0.653994142,0.054203113,0.312029739,0.857816568,0.582313164,0.961238037,0.922476074,0.154593023,6.97703535,28.30382193,7.631029492,102.5452555,0,0.465777264,62.23946317,-0.465777264,117.7605368,0.942652553,0,124.9683688,7.631029492,129.962725,11,16,4% +2018-11-22 01:00:00,92.06167226,245.7028018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606779296,4.288322873,-27.70083763,27.70083763,1,0,#DIV/0!,0,0,1,0.765658462,0,0.036084322,0.961238037,1,0.627268225,0.902771629,0,0,0.115824807,0.201722474,0.724496596,0.448993192,0.977424152,0.938662189,0,0,0,0,0,0,0.307032248,72.1195293,-0.307032248,107.8804707,0.887150657,0,0,0,0,11,17,0% +2018-11-22 02:00:00,103.1908092,254.3885874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801019378,4.43991843,-4.254090529,4.254090529,1,0.742353984,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117586908,83.24714343,-0.117586908,96.75285657,0.624782595,0,0,0,0,11,18,0% +2018-11-22 03:00:00,114.7933405,262.8084126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003521752,4.586872101,-2.110990484,2.110990484,1,0.891154324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091288122,95.23771612,0.091288122,84.76228388,0,0.502283616,0,0,0,11,19,0% +2018-11-22 04:00:00,126.6136598,271.6970604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209825242,4.742008272,-1.250480666,1.250480666,1,0.743998478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305366939,107.7802412,0.305366939,72.2197588,0,0.886262563,0,0,0,11,20,0% +2018-11-22 05:00:00,138.3613854,282.2415429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414861733,4.92604421,-0.751962196,0.751962196,1,0.658746799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510071479,120.668591,0.510071479,59.33140899,0,0.951974523,0,0,0,11,21,0% +2018-11-22 06:00:00,149.5280892,296.9333687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609757482,5.182464942,-0.401777665,0.401777665,1,0.598861717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691464424,133.7461428,0.691464424,46.2538572,0,0.9776897,0,0,0,11,22,0% +2018-11-22 07:00:00,158.7817061,321.7372638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771263563,5.615374581,-0.12166524,0.12166524,1,0.550959671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837198235,146.8454321,0.837198235,33.15456789,0,0.990276988,0,0,0,11,23,0% +2018-11-23 08:00:00,162.4706296,3.635246842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.835647423,0.063447027,0.126633262,-0.126633262,1,0.508498126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937355688,159.6121174,0.937355688,20.38788255,0,0.996658456,0,0,0,11,0,0% +2018-11-23 09:00:00,157.5928039,43.21092544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750513305,0.754172922,0.368063926,-0.368063926,1,0.467211051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985124811,170.1051618,0.985124811,9.894838233,0,0.99924501,0,0,0,11,1,0% +2018-11-23 10:00:00,147.8874865,65.85710788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581123563,1.149423368,0.625963262,-0.625963262,1,0.423107667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977262353,167.7584407,0.977262353,12.24155934,0,0.998836666,0,0,0,11,2,0% +2018-11-23 11:00:00,136.5833405,79.64801742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383828995,1.390120147,0.932820748,-0.932820748,1,0.370631947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914314264,156.1085303,0.914314264,23.89146967,0,0.995314208,0,0,0,11,3,0% +2018-11-23 12:00:00,124.8082636,89.82880041,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178315134,1.56780833,1.353088389,-1.353088389,1,0.298761947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800578232,143.185355,0.800578232,36.814645,0,0.987545142,0,0,0,11,4,0% +2018-11-23 13:00:00,113.0155686,98.59084302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972493778,1.720734823,2.067016705,-2.067016705,1,0.176673015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643810806,130.0765723,0.643810806,49.92342774,0,0.972337433,0,0,0,11,5,0% +2018-11-23 14:00:00,101.4832536,107.016533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771216911,1.867790855,3.930445085,-3.930445085,1,0,#DIV/0!,0,0,0.124337128,1,0.249138179,0,0.93202097,0.970782934,0.724496596,1,0,0,0.020086596,0.312029739,0.944617099,0.669113695,0.961238037,0.922476074,0,0,0,0,0,0,-0.454698994,117.0455687,0.454698994,62.95443134,0,0.940037144,0,0,0,11,6,0% +2018-11-23 15:00:00,89.91607438,115.8048196,0.025412041,1.664740357,0.022973566,0.022472395,0,0.022472395,0.022280828,0.000191567,0.401476197,0.394622016,0.006854181,0.000692738,0.006161443,1.569331548,2.021175392,-475.9111048,475.9111048,0,0,0.904042542,0.000173184,0.005570207,1,0.987641466,0,0.00210123,0.961238037,1,0.718555466,0.994058871,0.021417179,0.000500129,0.115824807,0.305278183,0.724496596,0.448993192,0.962301946,0.923539983,0.000125472,0.005357553,0.021542651,0.005857682,0,0.00487695,-0.237047185,103.7123281,0.237047185,76.28767188,0,0.83907153,0.021542651,0.009949791,0.02805459,11,7,30% +2018-11-23 16:00:00,80.20013322,125.5355524,104.6709798,410.394798,34.81882701,34.55796496,0,34.55796496,33.76891091,0.789054059,39.06087085,12.63226387,26.42860699,1.049916102,25.37869088,1.399756385,2.191008717,-3.276226602,3.276226602,0.909578564,0.909578564,0.332650244,0.741440388,23.84727157,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.45996163,0.760660642,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537171037,22.92290451,32.99713266,23.68356515,0,12.63226387,-0.03078076,91.76388626,0.03078076,88.23611374,0,0,32.99713266,23.68356515,48.49755238,11,8,47% +2018-11-23 17:00:00,71.32649808,136.7480756,265.3986025,650.6436886,57.07882993,169.8890191,112.5306397,57.35837938,55.35769261,2.00068677,66.07010117,0,66.07010117,1.721137321,64.34896385,1.244882235,2.386704165,-1.168090232,1.168090232,0.729908884,0.729908884,0.215068314,1.576535023,50.70678563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.21191976,1.24695813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.142194257,48.74129107,54.35411402,49.9882492,112.5306397,0,0.172952788,80.04045504,-0.172952788,99.95954496,0.760903764,0,139.9791013,49.9882492,172.6954107,11,9,23% +2018-11-23 18:00:00,64.25973857,149.8668532,394.9066021,750.5775175,68.93667128,335.463065,265.628116,69.83494906,66.85797629,2.976972776,97.82837273,0,97.82837273,2.078694988,95.74967775,1.121544015,2.615670029,-0.364912094,0.364912094,0.592557333,0.592557333,0.174564494,1.975764306,63.54737172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26642988,1.506007443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431434514,61.08415084,65.69786439,62.59015828,265.628116,0,0.353898311,69.27406047,-0.353898311,110.7259395,0.908716478,0,307.0785103,62.59015828,348.0425171,11,10,13% +2018-11-23 19:00:00,59.7079947,164.931642,475.6679136,793.9614572,75.18808095,472.9917486,396.48508,76.50666855,72.9208829,3.585785656,117.5983908,0,117.5983908,2.267198055,115.3311928,1.042101097,2.878600193,0.147162278,-0.147162278,0.504987458,0.504987458,0.158068431,2.091349651,67.26499376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.09432632,1.642577273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515175703,64.65767055,71.60950202,66.30024782,396.48508,0,0.499375727,60.04129297,-0.499375727,119.958707,0.949874989,0,448.2207632,66.30024782,491.6129494,11,11,10% +2018-11-23 20:00:00,58.28701061,181.2468794,500.2659969,805.2427763,76.97843703,561.0918134,482.6633438,78.42846953,74.65725313,3.771216398,123.6164667,0,123.6164667,2.321183897,121.2952828,1.017300246,3.163354804,0.586457575,-0.586457575,0.429863538,0.429863538,0.153875014,1.951956316,62.78162492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.76339144,1.681689831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414185706,60.34808589,73.17757714,62.02977572,482.6633438,0,0.599401023,53.17298889,-0.599401023,126.8270111,0.966583392,0,539.7119494,62.02977572,580.309197,11,12,8% +2018-11-23 21:00:00,60.22465014,197.4449614,466.6461379,789.6215629,74.51961207,586.7910729,511.0007264,75.79034652,72.27257082,3.5177757,115.3908,0,115.3908,2.247041252,113.1437588,1.051118436,3.446064668,1.06268607,-1.06268607,0.348423669,0.348423669,0.159691908,1.591706038,51.19473765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.4711441,1.627973738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153185607,49.21032912,70.6243297,50.83830285,511.0007264,0,0.647146368,49.67320584,-0.647146368,130.3267942,0.972737726,0,567.6940142,50.83830285,600.9666667,11,13,6% +2018-11-23 22:00:00,65.21485775,212.2273453,377.63442,739.7736071,67.50899446,541.3172254,472.9971085,68.32011697,65.4733492,2.846767772,93.5974825,0,93.5974825,2.035645265,91.56183723,1.138213989,3.704065938,1.711850688,-1.711850688,0.237409981,0.237409981,0.178768118,1.063941772,34.22002468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93547365,1.474818065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.770822192,32.89358934,63.70629584,34.36840741,472.9971085,0,0.639380892,50.25433038,-0.639380892,129.7456696,0.971799352,0,523.3645794,34.36840741,545.8580146,11,14,4% +2018-11-23 23:00:00,72.60959927,225.0266282,241.6621105,626.1398783,54.52085027,415.8103278,361.1117313,54.69859654,52.87684547,1.821751067,60.23778135,0,60.23778135,1.644004796,58.59377655,1.267276576,3.927455567,2.894357351,-2.894357351,0.035189432,0.035189432,0.225607772,0.460644685,14.81591652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82723513,1.191075878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333735506,14.24162251,51.16097064,15.43269839,361.1117313,0,0.576726932,54.77933976,-0.576726932,125.2206602,0.963303858,0,399.0212946,15.43269839,409.121687,11,15,3% +2018-11-23 00:00:00,81.70297079,235.966986,79.63002076,347.1953037,29.52803935,190.3164978,161.078553,29.23794475,28.63766002,0.600284732,20.19759979,0,20.19759979,0.890379333,19.30722046,1.425985849,4.118400831,6.652593574,-6.652593574,0,0,0.370815417,0.222594833,7.159415005,0.377918656,1,0.149200265,0,0.945441691,0.984203654,0.724496596,1,27.76578032,0.645076796,0.054827714,0.312029739,0.856313207,0.580809803,0.961238037,0.922476074,0.152461363,6.881902025,27.91824168,7.526978821,100.2039628,0,0.4639422,62.35821549,-0.4639422,117.6417845,0.942227954,0,122.3332166,7.526978821,127.2594737,11,16,4% +2018-11-23 01:00:00,92.14428613,245.5024018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60822118,4.284825234,-26.62549243,26.62549243,1,0,#DIV/0!,0,0,1,0.755104903,0,0.037540346,0.961238037,1,0.623559754,0.899063158,0,0,0.115824807,0.197525498,0.724496596,0.448993192,0.977988421,0.939226457,0,0,0,0,0,0,0.30556853,72.20762871,-0.30556853,107.7923713,0.886370584,0,0,0,0,11,17,0% +2018-11-23 02:00:00,103.2586831,254.1774857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802204001,4.436234009,-4.232689729,4.232689729,1,0.746013736,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116502433,83.3097093,-0.116502433,96.6902907,0.620824415,0,0,0,0,11,18,0% +2018-11-23 03:00:00,114.8519562,262.5791172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004544788,4.582870142,-2.107228817,2.107228817,1,0.890511041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092030964,95.28045778,0.092030964,84.71954222,0,0.506704595,0,0,0,11,19,0% +2018-11-23 04:00:00,126.6695127,271.4370249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210800059,4.737469797,-1.250178373,1.250178373,1,0.743946783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305829161,107.8080552,0.305829161,72.19194483,0,0.886510031,0,0,0,11,20,0% +2018-11-23 05:00:00,138.4238671,281.9305033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415952245,4.920615544,-0.75287048,0.75287048,1,0.658902124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510333307,120.6860337,0.510333307,59.31396627,0,0.952024815,0,0,0,11,21,0% +2018-11-23 06:00:00,149.6138659,296.5428858,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611254567,5.17564973,-0.403312857,0.403312857,1,0.59912425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691619793,133.7584666,0.691619793,46.24153336,0,0.977705944,0,0,0,11,22,0% +2018-11-23 07:00:00,158.9217803,321.2838666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773708319,5.607461306,-0.123677049,0.123677049,1,0.551303711,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837348325,146.8611595,0.837348325,33.1388405,0,0.990287693,0,0,0,11,23,0% +2018-11-24 08:00:00,162.6785772,3.450989304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.839276794,0.060231126,0.124115382,-0.124115382,1,0.508928709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937601968,159.6526609,0.937601968,20.34733907,0,0.996672467,0,0,0,11,0,0% +2018-11-24 09:00:00,157.797892,43.38034984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754092767,0.757129935,0.364873266,-0.364873266,1,0.467756686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985562058,170.2520297,0.985562058,9.747970296,0,0.999267527,0,0,0,11,1,0% +2018-11-24 10:00:00,148.0688197,66.07397692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584288424,1.153208447,0.621738003,-0.621738003,1,0.423830229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977972116,167.951736,0.977972116,12.04826397,0,0.998873798,0,0,0,11,2,0% +2018-11-24 11:00:00,136.7522977,79.84061711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386777854,1.393481645,0.926790974,-0.926790974,1,0.371663099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915359245,156.2567963,0.915359245,23.74320373,0,0.995376637,0,0,0,11,3,0% +2018-11-24 12:00:00,124.9738762,89.99460946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181205619,1.570702244,1.343369303,-1.343369303,1,0.300424009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801997956,143.3213189,0.801997956,36.67868108,0,0.987655701,0,0,0,11,4,0% +2018-11-24 13:00:00,113.1835,98.73520859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975424734,1.723254477,2.047474651,-2.047474651,1,0.180014903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645618876,130.2120926,0.645618876,49.78790743,0,0.972554929,0,0,0,11,5,0% +2018-11-24 14:00:00,101.657315,107.1433975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774254855,1.870005058,3.86367297,-3.86367297,1,0,#DIV/0!,0,0,0.115493,1,0.253263468,0,0.931420303,0.970182266,0.724496596,1,0,0,0.0187317,0.312029739,0.948253507,0.672750103,0.961238037,0.922476074,0,0,0,0,0,0,-0.456882137,117.1860998,0.456882137,62.81390024,0,0.940562585,0,0,0,11,6,0% +2018-11-24 15:00:00,90.06826114,115.9152835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571987708,2.02310335,583.9614315,-583.9614315,1,0,#DIV/0!,0,0,0.990033203,1,0.00171244,0,0.961086707,0.99984867,0.724496596,1,0,0,0.115043864,0.312029739,0.725995563,0.450492159,0.961238037,0.922476074,0,0,0,0,0,0,-0.239070033,103.8316594,0.239070033,76.16834056,0,0.840856263,0,0,0,11,7,0% +2018-11-24 16:00:00,80.39186041,125.6271199,101.4819623,403.4859665,34.13659644,33.87226601,0,33.87226601,33.10725211,0.765013898,39.16968493,13.53486393,25.63482101,1.029344333,24.60547667,1.403102656,2.192606872,-3.33509461,3.33509461,0.899511542,0.899511542,0.336380926,0.713998137,22.96463444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.82395002,0.745756466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.51728922,22.07448013,32.34123924,22.82023659,0,13.53486393,-0.03354482,91.92233722,0.03354482,88.07766278,0,0,32.34123924,22.82023659,47.27662769,11,8,46% +2018-11-24 17:00:00,71.52992908,136.8136202,261.7388615,647.5209873,56.59822586,166.9293111,110.0646324,56.86467862,54.89158053,1.973098097,65.16826261,0,65.16826261,1.706645335,63.46161728,1.248432776,2.387848135,-1.178761131,1.178761131,0.731733715,0.731733715,0.216239291,1.558241252,50.11839507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.7638751,1.236458736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128940482,48.17570769,53.89281559,49.41216642,110.0646324,0,0.169978479,80.21343223,-0.169978479,99.78656777,0.755845114,0,137.0846303,49.41216642,169.423905,11,9,24% +2018-11-24 18:00:00,64.47101773,149.8942329,391.2090476,748.7560521,68.51944738,332.0836065,262.6811742,69.40243228,66.45333323,2.949099048,96.91927699,0,96.91927699,2.066114148,94.85316285,1.125231531,2.616147894,-0.367393362,0.367393362,0.592981655,0.592981655,0.175147911,1.958998224,63.0081169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87747158,1.496892667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.419287545,60.56579859,65.29675912,62.06269126,262.6811742,0,0.35082344,69.46231133,-0.35082344,110.5376887,0.907478166,0,303.6741894,62.06269126,344.2929796,11,10,13% +2018-11-24 19:00:00,59.91950709,164.9069549,472.0985683,792.6659821,74.8015716,469.5087622,393.4038555,76.10490665,72.54602822,3.558878423,116.721307,0,116.721307,2.255543372,114.4657636,1.045792685,2.878169322,0.147676416,-0.147676416,0.504899535,0.504899535,0.158444818,2.076056204,66.77310392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.73400175,1.634133495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.504095653,64.18484733,71.2380974,65.81898082,393.4038555,0,0.496304704,60.24417916,-0.496304704,119.7558208,0.949255438,0,444.6788466,65.81898082,487.7560532,11,11,10% +2018-11-24 20:00:00,58.48722032,181.1635653,496.9401987,804.1615474,76.61401999,557.6812149,479.6312451,78.04996974,74.30382461,3.746145126,122.7990999,0,122.7990999,2.310195378,120.4889045,1.020794565,3.161900699,0.58885521,-0.58885521,0.429453518,0.429453518,0.154171508,1.938313664,62.34283036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4236625,1.673728687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404301652,59.92629986,72.82796415,61.60002855,479.6312451,0,0.596436433,53.38489995,-0.596436433,126.6151001,0.96616877,0,536.2326942,61.60002855,576.5486809,11,12,8% +2018-11-24 21:00:00,60.40232204,197.3113873,463.6531181,788.5677121,74.17429848,583.5727497,508.139867,75.43288276,71.9376697,3.495213052,114.6546952,0,114.6546952,2.236628773,112.4180665,1.054219395,3.44373336,1.067111472,-1.067111472,0.34766688,0.34766688,0.159978,1.579926574,50.81586958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1492244,1.620429932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144651425,48.84614672,70.29387583,50.46657665,508.139867,0,0.644383303,49.88054662,-0.644383303,130.1194534,0.972406431,0,564.4123505,50.46657665,597.4417156,11,13,6% +2018-11-24 22:00:00,65.36399087,212.0614991,375.0425378,738.5444847,67.17868532,538.3598741,470.3796449,67.98022916,65.15300009,2.827229068,92.9590906,0,92.9590906,2.025685225,90.93340538,1.140816853,3.701171376,1.719750754,-1.719750754,0.23605899,0.23605899,0.179122842,1.054268842,33.90890999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62754191,1.46760205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763814187,32.59453407,63.39135609,34.06213612,470.3796449,0,0.636900897,50.43888653,-0.636900897,129.5611135,0.971494851,0,520.362759,34.06213612,542.6557458,11,14,4% +2018-11-24 23:00:00,72.73017196,224.8443161,239.5340207,624.3191158,54.19112128,413.092358,358.7295904,54.36276765,52.55705903,1.805708627,59.71185879,0,59.71185879,1.63406225,58.07779654,1.269380966,3.924273621,2.911520892,-2.911520892,0.032254293,0.032254293,0.226235593,0.453581037,14.58872533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51984424,1.183872538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.328617917,14.0232377,50.84846216,15.20711024,358.7295904,0,0.574593315,54.92884323,-0.574593315,125.0711568,0.962981932,0,396.2985762,15.20711024,406.2513258,11,15,3% +2018-11-24 00:00:00,81.79805086,235.7764086,78.15954017,343.5902092,29.14206593,187.6609887,158.8084639,28.85252475,28.26332512,0.589199629,19.82942622,0,19.82942622,0.878740811,18.95068541,1.427645309,4.115074628,6.72516255,-6.72516255,0,0,0.3728536,0.219685203,7.06583128,0.382684361,1,0.147613705,0,0.945636855,0.984398818,0.724496596,1,27.40313707,0.636644726,0.055412551,0.312029739,0.854908359,0.579404955,0.961238037,0.922476074,0.150448291,6.791945788,27.55358537,7.428590514,98.03494848,0,0.462203112,62.47063809,-0.462203112,117.5293619,0.941822451,0,119.8851008,7.428590514,124.7469647,11,16,4% +2018-11-24 01:00:00,92.22065903,245.3049736,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609554138,4.281379461,-25.7017969,25.7017969,1,0,#DIV/0!,0,0,1,0.745250178,0,0.03888817,0.961238037,1,0.620141778,0.895645182,0,0,0.115824807,0.193658024,0.724496596,0.448993192,0.978504955,0.939742992,0,0,0,0,0,0,0.304205189,72.2896474,-0.304205189,107.7103526,0.885637255,0,0,0,0,11,17,0% +2018-11-24 02:00:00,103.3204005,253.969798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803281174,4.432609175,-4.213446264,4.213446264,1,0.749304563,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115518567,83.36646392,-0.115518567,96.63353608,0.617169145,0,0,0,0,11,18,0% +2018-11-24 03:00:00,114.9043983,262.3536902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005460076,4.578935699,-2.104010586,2.104010586,1,0.889960691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092676304,95.31759172,0.092676304,84.68240828,0,0.510487763,0,0,0,11,19,0% +2018-11-24 04:00:00,126.7190268,271.1813395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211664242,4.733007244,-1.250099692,1.250099692,1,0.743933328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306200106,107.8303797,0.306200106,72.16962027,0,0.88670809,0,0,0,11,20,0% +2018-11-24 05:00:00,138.4796203,281.6241502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416925321,4.915268673,-0.753888986,0.753888986,1,0.659076299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510512776,120.6979915,0.510512776,59.30200847,0,0.952059258,0,0,0,11,21,0% +2018-11-24 06:00:00,149.6922149,296.1562112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612622014,5.168900985,-0.404904303,0.404904303,1,0.599396403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691703794,133.7651307,0.691703794,46.23486931,0,0.977714723,0,0,0,11,22,0% +2018-11-24 07:00:00,159.0537906,320.8274015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776012333,5.599494487,-0.125713066,0.125713066,1,0.55165189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837439359,146.8707019,0.837439359,33.12929813,0,0.990294184,0,0,0,11,23,0% +2018-11-25 08:00:00,162.8801885,3.251748251,0,0,0,0,0,0,0,0,0,0,0,0,0,2.842795576,0.056753713,0.121597129,-0.121597129,1,0.509359356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937801976,159.6856438,0.937801976,20.31435619,0,0.99668384,0,0,0,11,0,0% +2018-11-25 09:00:00,157.9993166,43.53682005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.757608291,0.759860856,0.361705149,-0.361705149,1,0.468298466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985965404,170.3894812,0.985965404,9.610518758,0,0.999288282,0,0,0,11,1,0% +2018-11-25 10:00:00,148.2479651,66.28036872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5874151,1.156810664,0.617564217,-0.617564217,1,0.424543989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978659089,168.1417802,0.978659089,11.8582198,0,0.998909686,0,0,0,11,2,0% +2018-11-25 11:00:00,136.9197758,80.0244339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389700899,1.396689854,0.920860105,-0.920860105,1,0.372677337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916390521,156.4039776,0.916390521,23.5960224,0,0.995438109,0,0,0,11,3,0% +2018-11-25 12:00:00,125.1382656,90.15271002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184074755,1.57346162,1.333851066,-1.333851066,1,0.302051723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803410402,143.4570171,0.803410402,36.54298293,0,0.987765307,0,0,0,11,4,0% +2018-11-25 13:00:00,113.3501722,98.87249197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978333713,1.725650524,2.02845317,-2.02845317,1,0.183267768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647422999,130.3475876,0.647422999,49.65241236,0,0.972770739,0,0,0,11,5,0% +2018-11-25 14:00:00,101.8298574,107.2635003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777266289,1.872101247,3.799671188,-3.799671188,1,0,#DIV/0!,0,0,0.106846484,1,0.257345013,0,0.930822448,0.969584411,0.724496596,1,0,0,0.017396645,0.312029739,0.951850745,0.676347341,0.961238037,0.922476074,0,0,0,0,0,0,-0.459061333,117.3265536,0.459061333,62.67344637,0,0.941082092,0,0,0,11,6,0% +2018-11-25 15:00:00,90.83432308,116.0191109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585358012,2.024915481,47.68468221,-47.68468221,1,0,#DIV/0!,0,0,0.884050002,1,0.020968022,0,0.959336312,0.998098275,0.724496596,1,0,0,0.106410799,0.312029739,0.742893665,0.467390261,0.961238037,0.922476074,0,0,0,0,0,0,-0.251162924,104.5463387,0.251162924,75.45366132,0,0.850926031,0,0,0,11,7,0% +2018-11-25 16:00:00,80.58090001,125.7121003,98.35451998,396.5534379,33.45663268,33.18922968,0,33.18922968,32.44779176,0.741437917,39.24878163,14.39274863,24.856033,1.008840917,23.84719208,1.406402019,2.19409006,-3.395905027,3.395905027,0.889112348,0.889112348,0.340163652,0.687188607,22.10234781,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.19005165,0.73090181,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.497865807,21.24561742,31.68791746,21.97651923,0,14.39274863,-0.036294601,92.07998426,0.036294601,87.92001574,0,0,31.68791746,21.97651923,46.07110976,11,8,45% +2018-11-25 17:00:00,71.72983286,136.8727332,258.1434553,644.4103002,56.12207316,164.0096992,107.6339192,56.37577999,54.42978559,1.945994406,64.282157,0,64.282157,1.692287574,62.58986942,1.251921755,2.38887985,-1.189718913,1.189718913,0.733607606,0.733607606,0.217406531,1.540299433,49.5413245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.31998024,1.226056587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115941696,47.6210055,53.43592194,48.84706209,107.6339192,0,0.167027,80.38499269,-0.167027,99.61500731,0.750647201,0,134.2310221,48.84706209,166.2004473,11,9,24% +2018-11-25 18:00:00,64.6777503,149.915724,387.5883376,746.9582381,68.10764077,328.7547332,259.7789845,68.97574872,66.05394411,2.921804607,96.02897645,0,96.02897645,2.05369666,93.97527979,1.128839696,2.616522984,-0.370047592,0.370047592,0.593435555,0.593435555,0.175721595,1.942642749,62.48206859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.49356356,1.487896239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407438058,60.06014095,64.90100162,61.54803719,259.7789845,0,0.347782475,69.6482588,-0.347782475,110.3517412,0.906231974,0,300.3210234,61.54803719,340.6029828,11,10,13% +2018-11-25 19:00:00,60.12545691,164.8775957,468.619371,791.3995326,74.42126767,466.0913846,390.381542,75.70984263,72.17719187,3.532650764,115.8662678,0,115.8662678,2.244075806,113.622192,1.049387187,2.877656909,0.148019186,-0.148019186,0.504840918,0.504840918,0.158809627,2.061220284,66.29592972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.37946221,1.625825282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493347079,63.72616933,70.87280929,65.35199462,390.381542,0,0.493279975,60.44360621,-0.493279975,119.5563938,0.948637686,0,441.2034517,65.35199462,483.9750252,11,11,10% +2018-11-25 20:00:00,58.68109376,181.077435,493.7169526,803.1155109,76.25667913,554.3530208,476.6739149,77.67910583,73.9572589,3.721846936,122.0068115,0,122.0068115,2.299420233,119.7073912,1.024178295,3.160397442,0.591046935,-0.591046935,0.429078711,0.429078711,0.154454245,1.925162276,61.91983651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.09053035,1.665922131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.394773516,59.51970209,72.48530387,61.18562422,476.6739149,0,0.593530953,53.59202219,-0.593530953,126.4079778,0.965758395,0,532.837139,61.18562422,572.8819063,11,12,8% +2018-11-25 21:00:00,60.5732785,197.1769794,460.773032,787.5595473,73.83713884,580.4546005,505.3704221,75.08417842,71.61067667,3.473501747,113.9462184,0,113.9462184,2.226462166,111.7197563,1.057203149,3.441387499,1.071254029,-1.071254029,0.346958461,0.346958461,0.160246225,1.568653891,50.45330136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.83490626,1.61306426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.136484404,48.49763235,69.97139066,50.11069661,505.3704221,0,0.641691697,50.08191897,-0.641691697,129.918081,0.972080962,0,561.2323565,50.11069661,594.0288052,11,13,6% +2018-11-25 22:00:00,65.50637105,211.8964063,372.5707728,737.38182,66.85812777,535.5219599,467.8712555,67.6507044,64.84210854,2.80859586,92.35011657,0,92.35011657,2.016019233,90.33409733,1.143301856,3.698289963,1.72719531,-1.72719531,0.234785896,0.234785896,0.179450812,1.045090283,33.61369597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.32870112,1.460599071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.757164352,32.31076313,63.08586547,33.7713622,467.8712555,0,0.634503378,50.61683935,-0.634503378,129.3831607,0.971198213,0,517.4815928,33.7713622,539.5842739,11,14,4% +2018-11-25 23:00:00,72.84414021,224.6638339,237.5279117,622.6134099,53.87437428,410.5184041,356.4779553,54.04044885,52.24986312,1.790585731,59.21590336,0,59.21590336,1.62451116,57.5913922,1.271370087,3.921123611,2.927729433,-2.927729433,0.02948247,0.02948247,0.226812815,0.446945029,14.3752885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.22455585,1.176952805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.323810152,13.81807409,50.548366,14.9950269,356.4779553,0,0.57255104,55.07169021,-0.57255104,124.9283098,0.962671541,0,393.7195485,14.9950269,403.5334937,11,15,2% +2018-11-25 00:00:00,81.88675595,235.5883731,76.79691423,340.2401351,28.77879866,185.1912884,156.7013491,28.48993927,27.9110117,0.578927579,19.48808794,0,19.48808794,0.867786962,18.62030098,1.429193505,4.111792789,6.794006843,-6.794006843,0,0,0.374738998,0.21694674,6.977752924,0.387138454,1,0.146139233,0,0.94581772,0.984579683,0.724496596,1,27.06177552,0.6287087,0.05595711,0.312029739,0.853602704,0.5780993,0.961238037,0.922476074,0.148555856,6.707281522,27.21033138,7.335990222,96.03623114,0,0.460561036,62.57668394,-0.460561036,117.4233161,0.941436756,0,117.6223693,7.335990222,122.4236282,11,16,4% +2018-11-25 01:00:00,92.29076805,245.1106102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610777772,4.277987179,-24.9073075,24.9073075,1,0,#DIV/0!,0,0,1,0.736116713,0,0.040127308,0.961238037,1,0.617012075,0.89251548,0,0,0.115824807,0.19011735,0.724496596,0.448993192,0.978974947,0.940212984,0,0,0,0,0,0,0.302942974,72.365549,-0.302942974,107.634451,0.884952436,0,0,0,0,11,17,0% +2018-11-25 02:00:00,103.3759529,253.7656371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804250746,4.429045896,-4.19630978,4.19630978,1,0.752235074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114635682,83.41738782,-0.114635682,96.58261218,0.613835629,0,0,0,0,11,18,0% +2018-11-25 03:00:00,114.9506722,262.132272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006267708,4.575071223,-2.101330725,2.101330725,1,0.889502407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093224131,95.34911636,0.093224131,84.65088364,0,0.513658179,0,0,0,11,19,0% +2018-11-25 04:00:00,126.7622201,270.93019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212418108,4.728623859,-1.250243317,1.250243317,1,0.743957889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306480092,107.847232,0.306480092,72.15276804,0,0.886857266,0,0,0,11,20,0% +2018-11-25 05:00:00,138.5286717,281.3227558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417781429,4.910008349,-0.755016956,0.755016956,1,0.659269193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510610472,120.7045016,0.510610472,59.29549844,0,0.952077997,0,0,0,11,21,0% +2018-11-25 06:00:00,149.7631546,295.7737949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613860145,5.162226562,-0.406551276,0.406551276,1,0.599678052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691717209,133.766195,0.691717209,46.23380496,0,0.977716125,0,0,0,11,22,0% +2018-11-25 07:00:00,159.1776861,320.3685152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778174717,5.59148541,-0.12777247,0.12777247,1,0.552004069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837472222,146.8741473,0.837472222,33.1258527,0,0.990296527,0,0,0,11,23,0% +2018-11-26 08:00:00,163.0753391,3.037345074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.846201597,0.053011672,0.119079462,-0.119079462,1,0.509789902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937956602,159.7111781,0.937956602,20.28882191,0,0.99669263,0,0,0,11,0,0% +2018-11-26 09:00:00,158.197026,43.67988439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76105897,0.7623578,0.35856072,-0.35856072,1,0.468836195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98633565,170.5173899,0.98633565,9.482610108,0,0.999307317,0,0,0,11,1,0% +2018-11-26 10:00:00,148.4248922,66.47601758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590503061,1.16022538,0.613443262,-0.613443262,1,0.425248713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97932389,168.3285936,0.97932389,11.6714064,0,0.998944368,0,0,0,11,2,0% +2018-11-26 11:00:00,137.0857373,80.19930531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392597474,1.399741936,0.915029655,-0.915029655,1,0.373674403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917408444,156.5501072,0.917408444,23.44989279,0,0.995498649,0,0,0,11,3,0% +2018-11-26 12:00:00,125.3013814,90.30299157,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186921663,1.576084527,1.324534744,-1.324534744,1,0.303644908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.804815602,143.5924508,0.804815602,36.40754921,0,0.987873968,0,0,0,11,4,0% +2018-11-26 13:00:00,113.5155214,99.00261368,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981219601,1.727921577,2.009947568,-2.009947568,1,0.186432412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649222845,130.4830333,0.649222845,49.5169667,0,0.972984842,0,0,0,11,5,0% +2018-11-26 14:00:00,102.0008044,107.376785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780249876,1.874078438,3.738326354,-3.738326354,1,0,#DIV/0!,0,0,0.098398748,1,0.261379664,0,0.930227993,0.968989956,0.724496596,1,0,0,0.016082209,0.312029739,0.955406078,0.679902674,0.961238037,0.922476074,0,0,0,0,0,0,-0.46123588,117.4668854,0.46123588,62.53311463,0,0.941595597,0,0,0,11,6,0% +2018-11-26 15:00:00,91.01317312,116.1162668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588479534,2.026611172,39.19679156,-39.19679156,1,0,#DIV/0!,0,0,0.860586227,1,0.025506759,0,0.958910724,0.997672687,0.724496596,1,0,0,0.104414424,0.312029739,0.746886746,0.471383342,0.961238037,0.922476074,0,0,0,0,0,0,-0.253666261,104.6945692,0.253666261,75.30543076,0,0.852890618,0,0,0,11,7,0% +2018-11-26 16:00:00,80.76715633,125.7904815,95.29037684,389.6045758,32.77948456,32.50940127,0,32.50940127,31.79106216,0.718339111,39.29844468,15.20576718,24.0926775,0.988422403,23.1042551,1.409652805,2.195458069,-3.458692495,3.458692495,0.878375059,0.878375059,0.343995749,0.661025363,21.26084795,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.55877818,0.716108666,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478910626,20.43673574,31.03768881,21.15284441,0,15.20576718,-0.039028718,92.23674893,0.039028718,87.76325107,0,0,31.03768881,21.15284441,44.88180242,11,8,45% +2018-11-26 17:00:00,71.92610998,136.9254277,254.6144063,641.3152704,55.65067729,161.131831,105.239836,55.89199498,53.97260404,1.919390944,63.41228387,0,63.41228387,1.678073249,61.73421062,1.255347437,2.389799542,-1.200960891,1.200960891,0.735530098,0.735530098,0.218568455,1.522719775,48.97590229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.88051995,1.215758357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.103205294,47.07750017,52.98372524,48.29325853,105.239836,0,0.1641,80.55504435,-0.1641,99.44495565,0.745307739,0,131.4197895,48.29325853,163.0267613,11,9,24% +2018-11-26 18:00:00,64.87983918,149.9313636,384.0466378,745.1865863,67.70148771,325.4785284,256.9233845,68.55514385,65.66003807,2.895105778,95.15800332,0,95.15800332,2.041449646,93.11655367,1.132366812,2.616795946,-0.372875748,0.372875748,0.593919198,0.593919198,0.176284547,1.926707279,61.96952911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.11492609,1.47902332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395892865,59.5674685,64.51081896,61.04649182,256.9233845,0,0.344777253,69.83180091,-0.344777253,110.1681991,0.904978832,0,297.0210434,61.04649182,336.9747513,11,10,13% +2018-11-26 19:00:00,60.32575555,164.8436153,465.2324736,790.1641392,74.04737358,462.7419169,387.4202259,75.32169096,71.81457206,3.507118901,115.033801,0,115.033801,2.232801519,112.8009995,1.052883058,2.877063838,0.148187474,-0.148187474,0.504812139,0.504812139,0.159162092,2.046850246,65.83373993,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.03089826,1.6176571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482936036,63.28189492,70.5138343,64.89955202,387.4202259,0,0.490303478,60.63946972,-0.490303478,119.3605303,0.948022343,0,437.7968646,64.89955202,480.2723234,11,11,10% +2018-11-26 20:00:00,58.86855306,180.9885393,490.5982701,802.1065562,75.90660143,551.1096034,473.7935291,77.31607432,73.61773733,3.69833699,121.2400946,0,121.2400946,2.288864099,118.9512305,1.027450077,3.158845918,0.59302761,-0.59302761,0.428739995,0.428739995,0.154722522,1.912509113,61.51286729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.76416931,1.658274248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385606342,59.12850779,72.14977565,60.78678204,473.7935291,0,0.590686518,53.79425922,-0.590686518,126.2057408,0.965352732,0,529.5276534,60.78678204,569.3113865,11,12,8% +2018-11-26 21:00:00,60.73745145,197.0417854,458.0076394,786.5990946,73.50831245,577.4389652,502.6945445,74.74442066,71.29176561,3.452655049,113.2658016,0,113.2658016,2.216546837,111.0492548,1.060068507,3.439027919,1.0751054,-1.0751054,0.346299838,0.346299838,0.160495822,1.557893141,50.10719864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52835682,1.605880638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128688278,48.16494526,69.6570451,49.77082589,502.6945445,0,0.639073383,50.27724134,-0.639073383,129.7227587,0.971761724,0,558.1563621,49.77082589,590.7303723,11,13,6% +2018-11-26 22:00:00,65.64193995,211.73212,370.2205251,736.288194,66.54751008,532.8057508,465.474015,67.33173581,64.54085712,2.7908787,91.77090553,0,91.77090553,2.006652963,89.76425257,1.145667979,3.695422626,1.734168647,-1.734168647,0.233593385,0.233593385,0.179751001,1.036408829,33.33447057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.03912679,1.453813241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.750874668,32.04236105,62.79000146,33.49617429,465.474015,0,0.632189975,50.78811963,-0.632189975,129.2118804,0.97090985,0,514.7233075,33.49617429,536.6458836,11,14,4% +2018-11-26 23:00:00,72.95145756,224.4852469,235.6446593,621.0269453,53.57085827,408.0907776,354.3588894,53.73188822,51.95549924,1.776388978,58.75013487,0,58.75013487,1.615359032,57.13477584,1.273243129,3.91800668,2.94294083,-2.94294083,0.026881167,0.026881167,0.22733746,0.440735483,14.17556816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.94160209,1.17032212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319311357,13.62609531,50.26091345,14.79641743,354.3588894,0,0.570601472,55.20782109,-0.570601472,124.7921789,0.962373167,0,391.2864001,14.79641743,400.9703593,11,15,2% +2018-11-26 00:00:00,81.9690562,235.4029595,75.54162561,337.1529946,28.43869014,182.9095647,154.7589413,28.15062338,27.5811587,0.569464683,19.17347315,0,19.17347315,0.857531435,18.31594172,1.430629915,4.108556712,6.858821401,-6.858821401,0,0,0.376463836,0.214382859,6.895289676,0.391273485,1,0.144777552,0,0.945984311,0.984746274,0.724496596,1,26.74213284,0.621278606,0.056460907,0.312029739,0.852396876,0.576893472,0.961238037,0.922476074,0.146785939,6.628014711,26.88891878,7.249293317,94.20587094,0,0.459016956,62.67630836,-0.459016956,117.3236916,0.941071562,0,115.5433849,7.249293317,120.2879024,11,16,4% +2018-11-26 01:00:00,92.35459367,244.9194075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611891739,4.274650063,-24.22436648,24.22436648,1,0,#DIV/0!,0,0,1,0.72772552,0,0.041257324,0.961238037,1,0.614168556,0.889671961,0,0,0.115824807,0.186900944,0.724496596,0.448993192,0.979399492,0.940637529,0,0,0,0,0,0,0.301782568,72.43530022,-0.301782568,107.5646998,0.884317799,0,0,0,0,11,17,0% +2018-11-26 02:00:00,103.4253353,253.5651181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805112631,4.425546179,-4.181235303,4.181235303,1,0.754812962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113854086,83.46246512,-0.113854086,96.53753488,0.610841407,0,0,0,0,11,18,0% +2018-11-26 03:00:00,114.9907873,261.9150047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006967847,4.571279192,-2.099184582,2.099184582,1,0.889135395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0936745,95.37503402,0.0936745,84.62496598,0,0.516236808,0,0,0,11,19,0% +2018-11-26 04:00:00,126.7991152,270.6837635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213062049,4.724322905,-1.250607953,1.250607953,1,0.744020245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306669497,107.8586331,0.306669497,72.14136692,0,0.886958027,0,0,0,11,20,0% +2018-11-26 05:00:00,138.5710531,281.0265931,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418521125,4.904839335,-0.756253577,0.756253577,1,0.659480668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510627036,120.7056053,0.510627036,59.29439469,0,0.952081174,0,0,0,11,21,0% +2018-11-26 06:00:00,149.8267102,295.3960916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614969401,5.155634395,-0.408252981,0.408252981,1,0.599969061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691660859,133.7617245,0.691660859,46.23827554,0,0.977710236,0,0,0,11,22,0% +2018-11-26 07:00:00,159.2934232,319.9078903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780194712,5.583445989,-0.129854373,0.129854373,1,0.552360095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837447823,146.8715893,0.837447823,33.12841073,0,0.990294788,0,0,0,11,23,0% +2018-11-27 08:00:00,163.2639019,2.807647142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.849492637,0.049002687,0.116563417,-0.116563417,1,0.510220171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938066743,159.7293851,0.938066743,20.27061487,0,0.996698889,0,0,0,11,0,0% +2018-11-27 09:00:00,158.3909628,43.80909541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764443806,0.764612957,0.355441196,-0.355441196,1,0.469369665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986673583,170.6356462,0.986673583,9.364353799,0,0.99932468,0,0,0,11,1,0% +2018-11-27 10:00:00,148.5995654,66.66065999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593551683,1.163447998,0.609376572,-0.609376572,1,0.425944158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979967105,168.5121918,0.979967105,11.48780824,0,0.998977879,0,0,0,11,2,0% +2018-11-27 11:00:00,137.2501395,80.36507085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395466833,1.40263509,0.909301233,-0.909301233,1,0.374654021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918413325,156.6952122,0.918413325,23.30478782,0,0.995558281,0,0,0,11,3,0% +2018-11-27 12:00:00,125.4631683,90.44534556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189745378,1.578569073,1.315421542,-1.315421542,1,0.305203357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80621353,143.7276157,0.80621353,36.27238427,0,0.987981691,0,0,0,11,4,0% +2018-11-27 13:00:00,113.6794794,99.12549646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984081208,1.730066286,1.991953559,-1.991953559,1,0.189509569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651018017,130.6184001,0.651018017,49.38159995,0,0.97319721,0,0,0,11,5,0% +2018-11-27 14:00:00,102.1700754,107.4831976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783204213,1.875935688,3.679532989,-3.679532989,1,0,#DIV/0!,0,0,0.09015103,1,0.265364204,0,0.929637548,0.968399511,0.724496596,1,0,0,0.014789183,0.312029739,0.95891671,0.683413305,0.961238037,0.922476074,0,0,0,0,0,0,-0.463405,117.6070451,0.463405,62.39295489,0,0.94210302,0,0,0,11,6,0% +2018-11-27 15:00:00,91.18986165,116.2067188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59156333,2.028189856,33.32011962,-33.32011962,1,0,#DIV/0!,0,0,0.837870851,1,0.030002891,0,0.958484259,0.997246222,0.724496596,1,0,0,0.102450822,0.312029739,0.750845551,0.475342146,0.961238037,0.922476074,0,0,0,0,0,0,-0.256160117,104.8423384,0.256160117,75.15766158,0,0.854809583,0,0,0,11,7,0% +2018-11-27 16:00:00,80.95053114,125.8622541,92.29124274,382.6472749,32.10573531,31.8333593,0,31.8333593,31.13762893,0.695730372,39.31907356,15.97388687,23.34518669,0.968106377,22.37708031,1.4128533,2.196710737,-3.52348684,3.52348684,0.867294573,0.867294573,0.347874125,0.635521418,20.44055341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.9306733,0.701389775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.460433104,19.64823743,30.39110641,20.3496272,0,15.97388687,-0.041745722,92.39254896,0.041745722,87.60745104,0,0,30.39110641,20.3496272,43.70953042,11,8,44% +2018-11-27 17:00:00,72.11865903,136.9717198,251.1537601,638.2397305,55.1843546,158.2973706,102.8837248,55.41364583,53.5203427,1.893303132,62.5591488,0,62.5591488,1.6640119,60.8951369,1.258708052,2.390607493,-1.212483289,1.212483289,0.737500544,0.737500544,0.219723386,1.505512644,48.42246179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.44578915,1.205570957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.090738786,46.54551211,52.53652794,47.75108307,102.8837248,0,0.161199186,80.72349191,-0.161199186,99.27650809,0.739824736,0,128.6524524,47.75108307,159.9045813,11,9,24% +2018-11-27 18:00:00,65.077186,149.9411918,380.5861281,743.4436873,67.30122849,322.2571011,254.116234,68.14086713,65.27184814,2.869018994,94.30689337,0,94.30689337,2.029380354,92.27751302,1.135811164,2.616967481,-0.375878392,0.375878392,0.59443268,0.59443268,0.176835737,1.911201238,61.47080153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.74178317,1.470279158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384658791,59.08807258,64.12644196,60.55835174,254.116234,0,0.34180966,70.01283326,-0.34180966,109.9871667,0.903719757,0,293.7763033,60.55835174,333.4105333,11,10,13% +2018-11-27 19:00:00,60.5203138,164.8050676,461.9400244,788.9618661,73.6800944,459.4626731,384.5220063,74.94066673,71.4583677,3.482299028,114.2244338,0,114.2244338,2.221726697,112.0027071,1.05627874,2.876391054,0.148178422,-0.148178422,0.504813687,0.504813687,0.15950143,2.032954375,65.38680092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68850109,1.609633429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472868524,62.85228015,70.16136961,64.46191358,384.5220063,0,0.487377176,60.83166374,-0.487377176,119.1683363,0.94741005,0,434.461383,64.46191358,476.6504162,11,11,10% +2018-11-27 20:00:00,59.04952058,180.8969325,487.5861393,801.1365782,75.56397212,547.9533263,470.9922565,76.96106983,73.28543956,3.675630275,120.4994371,0,120.4994371,2.278532561,118.2209045,1.030608556,3.157247079,0.594792346,-0.594792346,0.428438208,0.428438208,0.154975636,1.900360986,61.12214177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44475205,1.650789084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.376805066,58.75292756,71.82155712,60.40371665,470.9922565,0,0.58790507,53.99151384,-0.58790507,126.0084862,0.964952256,0,526.3065975,60.40371665,565.839622,11,12,8% +2018-11-27 21:00:00,60.89477391,196.905858,455.3586581,785.6883588,73.18799434,574.5281479,500.1143557,74.41379219,70.98110628,3.432685909,112.6138667,0,112.6138667,2.206888064,110.4069786,1.062814302,3.436655538,1.078657584,-1.078657584,0.345692379,0.345692379,0.160726041,1.547649278,49.77772078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22973925,1.59888289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.121266633,47.8482386,69.35100589,49.44712149,500.1143557,0,0.636530184,50.46643202,-0.636530184,129.533568,0.97144913,0,555.1866614,49.44712149,587.5488135,11,13,6% +2018-11-27 22:00:00,65.77064135,211.5686984,367.9931381,735.2661235,66.24701267,530.2134451,463.1899366,67.02350852,64.24942081,2.774087716,91.22178866,0,91.22178866,1.997591857,89.2241968,1.147914243,3.692570382,1.740655686,-1.740655686,0.232484036,0.232484036,0.180022413,1.028227019,33.07131542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75898713,1.447248501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744946975,31.78940631,62.5039341,33.23665481,463.1899366,0,0.629962298,50.95265901,-0.629962298,129.047341,0.970630171,0,512.0900613,33.23665481,533.8427872,11,14,4% +2018-11-27 23:00:00,73.05208056,224.3086252,233.8850765,619.5637378,53.28080662,405.8116712,352.374353,53.43731822,51.67419372,1.7631245,58.31475753,0,58.31475753,1.606612905,56.70814463,1.274999331,3.91492405,2.957114639,-2.957114639,0.024457303,0.024457303,0.227807637,0.434951142,13.98952387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.67120052,1.16398558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.315120622,13.44726246,49.98632114,14.61124804,352.374353,0,0.568745928,55.33717829,-0.568745928,124.6628217,0.962087283,0,389.0012049,14.61124804,398.5639745,11,15,2% +2018-11-27 00:00:00,82.0449253,235.2202518,74.39313572,334.3361712,28.12214817,180.8177696,152.9828011,27.83496852,27.27416164,0.560806881,18.88546358,0,18.88546358,0.847986527,18.03747705,1.431954081,4.105367862,6.919309713,-6.919309713,0,0,0.378020739,0.211996632,6.818540411,0.39508249,1,0.143529298,0,0.946136656,0.984898619,0.724496596,1,26.4446029,0.614363352,0.056923497,0.312029739,0.851291453,0.575788049,0.961238037,0.922476074,0.145140233,6.554240399,26.58974313,7.168603751,92.5419751,0,0.457571792,62.76946964,-0.457571792,117.2305304,0.94072753,0,113.6465268,7.168603751,118.3382346,11,16,4% +2018-11-27 01:00:00,92.41212063,244.7314648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612895774,4.271369844,-23.63895456,23.63895456,1,0,#DIV/0!,0,0,1,0.720095963,0,0.042277848,0.961238037,1,0.61160923,0.887112634,0,0,0.115824807,0.184006402,0.724496596,0.448993192,0.979779594,0.941017631,0,0,0,0,0,0,0.300724581,72.4988717,-0.300724581,107.5011283,0.883734908,0,0,0,0,11,17,0% +2018-11-27 02:00:00,103.4685474,253.3683587,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805866825,4.422112079,-4.168182659,4.168182659,1,0.757045095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113174005,83.50168439,-0.113174005,96.49831561,0.608202432,0,0,0,0,11,18,0% +2018-11-27 03:00:00,115.0247579,261.7020323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007560746,4.567562123,-2.097567819,2.097567819,1,0.888858913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094027548,95.39535188,0.094027548,84.60464812,0,0.518240946,0,0,0,11,19,0% +2018-11-27 04:00:00,126.8297402,270.4422483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213596555,4.720107669,-1.251192267,1.251192267,1,0.744120169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306768776,107.8646094,0.306768776,72.13539059,0,0.887010792,0,0,0,11,20,0% +2018-11-27 05:00:00,138.6068026,280.735936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41914507,4.899766412,-0.757597945,0.757597945,1,0.659710568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510563171,120.7013496,0.510563171,59.29865041,0,0.952068925,0,0,0,11,21,0% +2018-11-27 06:00:00,149.8829144,295.0235597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615950348,5.149132488,-0.41000853,0.41000853,1,0.600269278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691535614,133.7517893,0.691535614,46.24821075,0,0.977697144,0,0,0,11,22,0% +2018-11-27 07:00:00,159.4009669,319.4462453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782071703,5.575388763,-0.131957794,0.131957794,1,0.552719801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837367101,146.8631275,0.837367101,33.13687247,0,0.990289032,0,0,0,11,23,0% +2018-11-28 08:00:00,163.4457474,2.562575832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.852666441,0.044725386,0.114050116,-0.114050116,1,0.510649971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938133307,159.7403962,0.938133307,20.2596038,0,0.99670267,0,0,0,11,0,0% +2018-11-28 09:00:00,158.5810636,43.92401383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767761692,0.766618662,0.352347886,-0.352347886,1,0.469898652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986979979,170.7441606,0.986979979,9.255839411,0,0.999340411,0,0,0,11,1,0% +2018-11-28 10:00:00,148.7719425,66.83403657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596560231,1.166473991,0.605365679,-0.605365679,1,0.426630061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980589289,168.6925841,0.980589289,11.30741589,0,0.999010253,0,0,0,11,2,0% +2018-11-28 11:00:00,137.4129337,80.52157332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.398308127,1.405366573,0.903676556,-0.903676556,1,0.375615897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919405421,156.8393127,0.919405421,23.16068727,0,0.995617027,0,0,0,11,3,0% +2018-11-28 12:00:00,125.6235655,90.57966659,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192544837,1.580913417,1.306512818,-1.306512818,1,0.306726839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807604091,143.8625008,0.807604091,36.13749917,0,0.988088476,0,0,0,11,4,0% +2018-11-28 13:00:00,113.8419727,99.24106623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98691725,1.732083359,1.974467295,-1.974467295,1,0.192499896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652808039,130.7536521,0.652808039,49.2463479,0,0.973407806,0,0,0,11,5,0% +2018-11-28 14:00:00,102.3375855,107.5826876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786127815,1.877672117,3.623193048,-3.623193048,1,0,#DIV/0!,0,0,0.08210465,1,0.269295336,0,0.929051739,0.967813702,0.724496596,1,0,0,0.013518374,0.312029739,0.962379778,0.686876373,0.961238037,0.922476074,0,0,0,0,0,0,-0.46556783,117.7469772,0.46556783,62.2530228,0,0.942604263,0,0,0,11,6,0% +2018-11-28 15:00:00,91.3642937,116.2904381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594607744,2.029651034,29.01433599,-29.01433599,1,0,#DIV/0!,0,0,0.815891847,1,0.034452083,0,0.958057481,0.996819444,0.724496596,1,0,0,0.10052126,0.312029739,0.754765925,0.479262521,0.961238037,0.922476074,0,0,0,0,0,0,-0.258643266,104.9895736,0.258643266,75.01042643,0,0.856683542,0,0,0,11,7,0% +2018-11-28 16:00:00,81.13092329,125.9274128,89.35881454,375.6899826,31.43600417,31.16171715,0,31.16171715,30.48809266,0.673624489,39.31118884,16.69719818,22.61399066,0.947911512,21.66607915,1.416001737,2.197847972,-3.590311895,3.590311895,0.855866816,0.855866816,0.351795224,0.610689223,19.64186464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.30631434,0.686758664,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442442263,18.88050741,29.7487566,19.56726607,0,16.69719818,-0.044444087,92.54729767,0.044444087,87.45270233,0,0,29.7487566,19.56726607,42.5551409,11,8,43% +2018-11-28 17:00:00,72.30737641,137.01163,247.7635902,635.1877094,54.72343287,155.5080046,100.5669386,54.94106606,53.07331946,1.867746599,61.72326436,0,61.72326436,1.650113409,60.07315095,1.262001792,2.391304057,-1.224281098,1.224281098,0.739518088,0.739518088,0.220869551,1.488688567,47.88134166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01609341,1.195501548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078549799,46.02536686,52.09464321,47.22086841,100.5669386,0,0.15832633,80.89023626,-0.15832633,99.10976374,0.734196557,0,125.9305432,47.22086841,156.8356572,11,9,25% +2018-11-28 18:00:00,65.26969111,149.9452529,377.2090025,741.7322105,66.9071073,319.0925908,251.3594189,67.73317194,64.88961115,2.843560795,93.47618599,0,93.47618599,2.017496146,91.45868984,1.139171012,2.617038361,-0.379055614,0.379055614,0.594976017,0.594976017,0.1773741,1.896134058,60.98618922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37436243,1.46166909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37374267,58.6222448,63.7481051,60.08391389,251.3594189,0,0.338881628,70.19124856,-0.338881628,109.8087514,0.902455855,0,290.5888844,60.08391389,329.9126044,11,10,14% +2018-11-28 19:00:00,60.70904214,164.762011,458.7441634,787.7948062,73.31963539,456.2559806,381.6889954,74.56698514,71.10877786,3.458207278,113.4386911,0,113.4386911,2.210857528,111.2278336,1.059572671,2.875639574,0.147989483,-0.147989483,0.504845998,0.504845998,0.159826852,2.019540842,64.95537559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.35246203,1.601758753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463150465,62.43757771,69.8156125,64.03933647,381.6889954,0,0.484503062,61.02008052,-0.484503062,118.9799195,0.946801478,0,431.1993174,64.03933647,473.1117823,11,11,10% +2018-11-28 20:00:00,59.22391932,180.8026746,484.6825161,800.2074694,75.22897375,544.8865394,468.2722553,76.61428417,72.96054263,3.653741537,119.7853186,0,119.7853186,2.268431124,117.5168875,1.033652388,3.155601969,0.596336564,-0.596336564,0.428174131,0.428174131,0.155212889,1.888724508,60.74787262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13244876,1.643470627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368374476,58.39316582,71.50082324,60.03663644,468.2722553,0,0.585188558,54.1836881,-0.585188558,125.8163119,0.964557455,0,523.1763178,60.03663644,562.4690956,11,12,8% +2018-11-28 21:00:00,61.0451808,196.7692555,452.8277511,784.8293107,72.87635397,571.724406,497.6319362,74.09246987,70.67886301,3.413606863,111.9908219,0,111.9908219,2.197490957,109.7933309,1.065439397,3.434271375,1.08190301,-1.08190301,0.345137378,0.345137378,0.160936148,1.537926996,49.46501877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93921153,1.592074718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.114222873,47.54765753,69.0534344,49.13973225,497.6319362,0,0.634063903,50.64940955,-0.634063903,129.3505905,0.971143595,0,552.3255018,49.13973225,584.4864738,11,13,6% +2018-11-28 22:00:00,65.89242209,211.4062054,365.8898821,734.3180406,65.95680627,527.7471546,461.0209569,66.72619769,63.96796521,2.758232484,90.70307911,0,90.70307911,1.988841064,88.71423804,1.150039718,3.689734343,1.746642139,-1.746642139,0.231460292,0.231460292,0.180264089,1.020547129,32.82430378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.4884413,1.44090858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.739382921,31.55196933,62.22782422,32.99287791,461.0209569,0,0.627821913,51.11039059,-0.627821913,128.8896094,0.970359581,0,509.583927,32.99287791,531.1771057,11,14,4% +2018-11-28 23:00:00,73.14596977,224.1340439,232.2498968,618.2275953,53.00443392,403.6831325,350.52618,53.1569525,51.40615467,1.750797824,57.90995561,0,57.90995561,1.598279248,56.31167636,1.276638007,3.911877032,2.970212564,-2.970212564,0.022217426,0.022217426,0.228221561,0.429590621,13.81711107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.4135512,1.157947875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.311236942,13.28153272,49.72478814,14.43948059,350.52618,0,0.566985658,55.45970712,-0.566985658,124.5402929,0.961814348,0,386.8658974,14.43948059,396.3162486,11,15,2% +2018-11-28 00:00:00,82.11434159,235.0403385,73.35087777,331.7964476,27.82953018,178.9176115,151.3742945,27.54331706,26.99036716,0.5529499,18.62393256,0,18.62393256,0.839163015,17.78476954,1.433165624,4.102227782,6.975187915,-6.975187915,0,0,0.379402824,0.209790754,6.74759179,0.398559078,1,0.142395026,0,0.946274782,0.985036745,0.724496596,1,26.16953107,0.607970748,0.057344477,0.312029739,0.850286939,0.574783534,0.961238037,0.922476074,0.143620215,6.486041886,26.31315128,7.094012634,91.0426952,0,0.456226387,62.85613008,-0.456226387,117.1438699,0.940405287,0,111.9301832,7.094012634,116.5730726,11,16,4% +2018-11-28 01:00:00,92.46333904,244.5468849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613789704,4.268148316,-23.13986336,23.13986336,1,0,#DIV/0!,0,0,1,0.713245482,0,0.043188594,0.961238037,1,0.609332159,0.884835563,0,0,0.115824807,0.181431404,0.724496596,0.448993192,0.98011617,0.941354207,0,0,0,0,0,0,0.299769526,72.55623914,-0.299769526,107.4437609,0.883205194,0,0,0,0,11,17,0% +2018-11-28 02:00:00,103.5055949,253.1754792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806513425,4.418745697,-4.157115859,4.157115859,1,0.758937629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112595563,83.53503984,-0.112595563,96.46496016,0.605932769,0,0,0,0,11,18,0% +2018-11-28 03:00:00,115.0526046,261.493501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008046763,4.563922566,-2.096476281,2.096476281,1,0.888672249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094283514,95.41008309,0.094283514,84.58991691,0,0.519684594,0,0,0,11,19,0% +2018-11-28 04:00:00,126.8541294,270.2058339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214022228,4.71598146,-1.251994827,1.251994827,1,0.744257415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306778479,107.8651935,0.306778479,72.13480649,0,0.887015947,0,0,0,11,20,0% +2018-11-28 05:00:00,138.6359651,280.4510589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419654053,4.894794368,-0.759049036,0.759049036,1,0.65995872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510419667,120.6917876,0.510419667,59.30821241,0,0.952041392,0,0,0,11,21,0% +2018-11-28 06:00:00,149.9318081,294.656661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616803705,5.142728898,-0.411816918,0.411816918,1,0.60057853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691342409,133.7364663,0.691342409,46.26353368,0,0.977676938,0,0,0,11,22,0% +2018-11-28 07:00:00,159.5002915,318.9843333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783805244,5.567326879,-0.134081644,0.134081644,1,0.553083001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83723104,146.848869,0.83723104,33.15113097,0,0.990279328,0,0,0,11,23,0% +2018-11-29 08:00:00,163.6207452,2.302114705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.855720728,0.040179481,0.111540783,-0.111540783,1,0.511079092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938157219,159.7443531,0.938157219,20.25564686,0,0.996704029,0,0,0,11,0,0% +2018-11-29 09:00:00,158.7672586,44.02421337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771011407,0.768367474,0.349282196,-0.349282196,1,0.470422916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987255606,170.8428664,0.987255606,9.157133563,0,0.999354554,0,0,0,11,1,0% +2018-11-29 10:00:00,148.9419746,66.99589465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599527852,1.169298947,0.601412215,-0.601412215,1,0.427306144,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98119096,168.869773,0.98119096,11.13022703,0,0.99904152,0,0,0,11,2,0% +2018-11-29 11:00:00,137.5740644,80.6686606,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40112039,1.407933731,0.898157458,-0.898157458,1,0.376559718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920384931,156.9824212,0.920384931,23.01757878,0,0.995674904,0,0,0,11,3,0% +2018-11-29 12:00:00,125.7825059,90.70585382,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19531887,1.5831158,1.29781009,-1.29781009,1,0.308215093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808987115,143.9970875,0.808987115,36.00291249,0,0.988194318,0,0,0,11,4,0% +2018-11-29 13:00:00,114.0029222,99.34925342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989726349,1.733971582,1.957485359,-1.957485359,1,0.195403978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654592345,130.8887466,0.654592345,49.11125339,0,0.973616583,0,0,0,11,5,0% +2018-11-29 14:00:00,102.5032445,107.6752093,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78901911,1.879286924,3.5692154,-3.5692154,1,0,#DIV/0!,0,0,0.074261015,1,0.273169694,0,0.928471215,0.967233178,0.724496596,1,0,0,0.012270607,0.312029739,0.965792357,0.690288952,0.961238037,0.922476074,0,0,0,0,0,0,-0.467723412,117.8866195,0.467723412,62.11338053,0,0.943099215,0,0,0,11,6,0% +2018-11-29 15:00:00,91.53637006,116.367401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597611043,2.03099429,25.72714416,-25.72714416,1,0,#DIV/0!,0,0,0.794637875,1,0.038849895,0,0.957630981,0.996392944,0.724496596,1,0,0,0.098627021,0.312029739,0.758643635,0.483140231,0.961238037,0.922476074,0,0,0,0,0,0,-0.261114387,105.1361962,0.261114387,74.86380382,0,0.858513041,0,0,0,11,7,0% +2018-11-29 16:00:00,81.30822852,125.9859576,86.49477246,368.7417089,30.77094714,30.49512368,0,30.49512368,29.84308955,0.65203413,39.27543752,17.37592095,21.89951657,0.927857589,20.97165899,1.419096297,2.198869771,-3.659184285,3.659184285,0.844088944,0.844088944,0.355754993,0.586540615,18.86516238,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.68631281,0.672229665,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.424946679,18.13391165,29.11125949,18.80614132,0,17.37592095,-0.047122201,92.70090343,0.047122201,87.29909657,0,0,29.11125949,18.80614132,41.41950286,11,8,42% +2018-11-29 17:00:00,72.49215637,137.0451838,244.445996,632.1634335,54.26825114,152.7654432,98.29084289,54.47460032,52.63186314,1.842737172,60.90514983,0,60.90514983,1.636388001,59.26876183,1.265226811,2.391889682,-1.236347928,1.236347928,0.741581637,0.741581637,0.222005073,1.472258226,47.35288542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5917488,1.185557536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066646073,45.51739462,51.65839488,46.70295215,98.29084289,0,0.155483278,81.05517414,-0.155483278,98.94482586,0.72842201,0,123.2556082,46.70295215,153.8217564,11,9,25% +2018-11-29 18:00:00,65.45725384,149.9435967,373.9174652,740.0548984,66.51937164,315.9871669,248.6548519,67.33231495,64.51356715,2.818747796,92.66642299,0,92.66642299,2.005804485,90.66061851,1.142444599,2.617009455,-0.382406961,0.382406961,0.595549131,0.595549131,0.177898541,1.881515143,60.51599467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.01289464,1.453198522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363151316,58.17027591,63.37604596,59.62347443,248.6548519,0,0.335995144,70.36693652,-0.335995144,109.6330635,0.901188325,0,287.4608956,59.62347443,326.4832671,11,10,14% +2018-11-29 19:00:00,60.89185118,164.7145098,455.6470146,786.665073,72.96620109,453.124176,378.9233154,74.20086057,70.76600091,3.434859662,112.6770942,0,112.6770942,2.200200179,110.476894,1.062763291,2.874810521,0.147618488,-0.147618488,0.504909441,0.504909441,0.16013756,2.006617657,64.53972156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02297179,1.59403754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453787662,62.03803525,69.47675945,63.63207279,378.9233154,0,0.481683156,61.20461057,-0.481683156,118.7953894,0.946197325,0,428.012987,63.63207279,469.658906,11,11,10% +2018-11-29 20:00:00,59.39167374,180.7058317,481.889312,799.3211095,74.90178507,541.9115701,465.635665,76.27590508,72.64321989,3.632685185,119.098208,0,119.098208,2.258565178,116.8396428,1.036580255,3.15391174,0.597656071,-0.597656071,0.427948482,0.427948482,0.155433589,1.87760602,60.39026384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82742608,1.636322783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36031917,58.04941866,71.18774525,59.68574144,465.635665,0,0.582538931,54.37068359,-0.582538931,125.6293164,0.964168827,0,520.1391381,59.68574144,559.2022621,11,12,8% +2018-11-29 21:00:00,61.18860977,196.632043,450.4165106,784.0238738,72.57355367,569.029936,495.2493129,73.78062317,70.38519326,3.395429913,111.3970581,0,111.3970581,2.188360411,109.2086977,1.067942705,3.431876565,1.08483464,-1.08483464,0.34463604,0.34463604,0.161125429,1.528730656,49.16923288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.65692499,1.585459668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.107560156,47.26333688,68.76448515,48.84879655,495.2493129,0,0.631676317,50.82609328,-0.631676317,129.1739067,0.970845536,0,549.57507,48.84879655,581.5456303,11,13,6% +2018-11-29 22:00:00,66.00723307,211.2447111,363.9119357,733.4462714,65.67704983,525.4088837,458.9689174,66.43996634,63.69664445,2.743321889,90.21506742,0,90.21506742,1.980405375,88.23466205,1.152043547,3.686915736,1.752114693,-1.752114693,0.23052443,0.23052443,0.180475119,1.013371104,32.59349816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.22763747,1.434796952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.734183915,31.33011018,61.96182138,32.76490713,458.9689174,0,0.625770333,51.2612498,-0.625770333,128.7387502,0.970098481,0,507.2068711,32.76490713,528.6508475,11,14,4% +2018-11-29 23:00:00,73.23309088,223.9615837,230.7397541,617.0220762,52.74193272,401.7070354,348.8160528,52.89098258,51.15156885,1.739413731,57.53588865,0,57.53588865,1.590363868,55.94552478,1.278158557,3.908867033,2.982198947,-2.982198947,0.020167634,0.020167634,0.228577572,0.424652358,13.65827955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.16883362,1.152213209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307659187,13.12885782,49.47649281,14.28107103,348.8160528,0,0.565321836,55.57535685,-0.565321836,124.4246431,0.961554805,0,384.8822445,14.28107103,394.2289198,11,15,2% +2018-11-29 00:00:00,82.17728916,234.8633123,72.41424883,329.5399327,27.56113758,177.2105248,149.934568,27.27595679,26.73006759,0.545889196,18.388743,0,18.388743,0.831069988,17.55767301,1.434264266,4.099138091,7.026189058,-7.026189058,0,0,0.38060379,0.207767497,6.682516898,0.401697529,1,0.141375187,0,0.946398724,0.985160687,0.724496596,1,25.91720897,0.602107377,0.057723501,0.312029739,0.84938374,0.573880336,0.961238037,0.922476074,0.14222711,6.423489425,26.05943608,7.025596802,89.7062225,0,0.454981485,62.93625703,-0.454981485,117.063743,0.940105418,0,110.3927419,7.025596802,114.9908545,11,16,4% +2018-11-29 01:00:00,92.50824556,244.3657738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61457347,4.264987333,-22.71809086,22.71809086,1,0,#DIV/0!,0,0,1,0.707189325,0,0.043989387,0.961238037,1,0.607335414,0.882838818,0,0,0.115824807,0.179173652,0.724496596,0.448993192,0.980410067,0.941648104,0,0,0,0,0,0,0.298917805,72.60738443,-0.298917805,107.3926156,0.882729937,0,0,0,0,11,17,0% +2018-11-29 02:00:00,103.5364902,252.9866026,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80705265,4.415449179,-4.148002517,4.148002517,1,0.760496103,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112118765,83.56253246,-0.112118765,96.43746754,0.60404432,0,0,0,0,11,18,0% +2018-11-29 03:00:00,115.0743553,261.2895586,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008426384,4.560363099,-2.095905875,2.095905875,1,0.888574704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094442758,95.41924799,0.094442758,84.58075201,0,0.520578781,0,0,0,11,19,0% +2018-11-29 04:00:00,126.8723252,269.9747106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214339804,4.711947597,-1.253014052,1.253014052,1,0.744431712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30669927,107.8604253,0.30669927,72.13957472,0,0.886973854,0,0,0,11,20,0% +2018-11-29 05:00:00,138.6585942,280.1722356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420049004,4.889927985,-0.760605672,0.760605672,1,0.66022492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510197409,120.6769799,0.510197409,59.32302005,0,0.951998718,0,0,0,11,21,0% +2018-11-29 06:00:00,149.9734421,294.2958588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617530356,5.13643171,-0.413677005,0.413677005,1,0.600896624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691082257,133.7158401,0.691082257,46.2841599,0,0.977649713,0,0,0,11,22,0% +2018-11-29 07:00:00,159.5913824,318.5229407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785395081,5.559274059,-0.136224718,0.136224718,1,0.553449488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837040672,146.8289287,0.837040672,33.17107135,0,0.990265746,0,0,0,11,23,0% +2018-11-30 08:00:00,163.7887642,2.026317267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.858653212,0.035365908,0.10903675,-0.10903675,1,0.511507307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938139427,159.7414088,0.938139427,20.25859116,0,0.996703018,0,0,0,11,0,0% +2018-11-30 09:00:00,158.9494711,44.1092855,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774191616,0.769852263,0.34624564,-0.34624564,1,0.470942198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987501223,170.931723,0.987501223,9.068276998,0,0.999367151,0,0,0,11,1,0% +2018-11-30 10:00:00,149.1096057,67.14599077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602453567,1.171918618,0.59751792,-0.59751792,1,0.427972107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981772605,169.0437527,0.981772605,10.95624728,0,0.99907171,0,0,0,11,2,0% +2018-11-30 11:00:00,137.7334694,80.8061874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403902532,1.410334026,0.892745887,-0.892745887,1,0.377485151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921351994,157.1245414,0.921351994,22.87545858,0,0.995731924,0,0,0,11,3,0% +2018-11-30 12:00:00,125.9399158,90.82381231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198066191,1.585174564,1.289315037,-1.289315037,1,0.309667833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810362348,144.1313489,0.810362348,35.86865111,0,0.988299206,0,0,0,11,4,0% +2018-11-30 13:00:00,114.1622428,99.44999416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992507019,1.735729839,1.941004753,-1.941004753,1,0.198222328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656370272,131.0236331,0.656370272,48.97636693,0,0.973823485,0,0,0,11,5,0% +2018-11-30 14:00:00,102.6669571,107.7607224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791876435,1.88077941,3.517515317,-3.517515317,1,0,#DIV/0!,0,0,0.066621615,1,0.276983837,0,0.927896641,0.966658605,0.724496596,1,0,0,0.01104672,0.312029739,0.96915146,0.693648056,0.961238037,0.922476074,0,0,0,0,0,0,-0.469870685,118.0259027,0.469870685,61.97409727,0,0.943587743,0,0,0,11,6,0% +2018-11-30 15:00:00,91.70598716,116.4375898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60057142,2.032219315,23.13815188,-23.13815188,1,0,#DIV/0!,0,0,0.774098256,1,0.043191785,0,0.957205376,0.995967339,0.724496596,1,0,0,0.0967694,0.312029739,0.762474377,0.486970973,0.961238037,0.922476074,0,0,0,0,0,0,-0.263572057,105.2821214,0.263572057,74.71787857,0,0.860298555,0,0,0,11,7,0% +2018-11-30 16:00:00,81.48233958,126.0378945,83.7007742,361.8120268,30.11125685,29.83426315,0,29.83426315,29.20329136,0.630971791,39.21259857,18.01041132,21.20218725,0.907965493,20.29422176,1.422135108,2.199776241,-3.73011213,3.73011213,0.831959568,0.831959568,0.359748845,0.563086747,18.11080539,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.07131446,0.657817909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.407954432,17.40879502,28.47926889,18.06661292,0,18.01041132,-0.049778366,92.85326943,0.049778366,87.14673057,0,0,28.47926889,18.06661292,40.30350571,11,8,42% +2018-11-30 17:00:00,72.67289112,137.0724134,241.2031005,629.1713248,53.81915944,150.0714192,96.05681518,54.01460406,52.19631321,1.818290856,60.10533051,0,60.10533051,1.622846229,58.48248428,1.268381227,2.392364927,-1.248675883,1.248675883,0.743689842,0.743689842,0.223127975,1.456232433,46.8374408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.17308164,1.175746568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05503544,45.02192965,51.22811708,46.19767622,96.05681518,0,0.152671953,81.21819794,-0.152671953,98.78180206,0.722500424,0,120.6292068,46.19767622,150.8646619,11,9,25% +2018-11-30 18:00:00,65.63977277,149.9362793,370.7137241,738.4145606,66.13827169,312.9430266,246.0044712,66.93855542,64.14395877,2.794596642,91.8781473,0,91.8781473,1.994312916,89.88383438,1.145630155,2.616881742,-0.385931373,0.385931373,0.596151841,0.596151841,0.17840794,1.867353834,60.06051829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.65761301,1.444872919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352891496,57.73245469,63.0105045,59.17732761,246.0044712,0,0.333152249,70.53978376,-0.333152249,109.4602162,0.899918468,0,284.3944713,59.17732761,323.1248486,11,10,14% +2018-11-30 19:00:00,61.06865213,164.6626347,452.650676,785.5747927,72.61999446,450.0695999,376.2270942,73.84250568,70.43023369,3.412271996,111.9401578,0,111.9401578,2.189760772,109.750397,1.065849049,2.87390513,0.147063698,-0.147063698,0.505004316,0.505004316,0.160432754,1.994192618,64.14008959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.70021957,1.586474225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.444785763,61.6538938,69.14500533,63.24036803,376.2270942,0,0.478919509,61.38514278,-0.478919509,118.6148572,0.945598323,0,424.9047146,63.24036803,466.2942707,11,11,10% +2018-11-30 20:00:00,59.55271031,180.6064768,479.2083814,798.4793554,74.58257986,539.0307141,463.084599,75.94611509,72.33363989,3.612475198,118.4385601,0,118.4385601,2.248939963,116.1896202,1.039390873,3.15217767,0.598747124,-0.598747124,0.427761901,0.427761901,0.155637052,1.86701154,60.04950895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52984601,1.629349348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352643505,57.72187209,70.88248951,59.35122144,463.084599,0,0.579958136,54.55240176,-0.579958136,125.4475982,0.963786881,0,517.1973507,59.35122144,556.0415381,11,12,8% +2018-11-30 21:00:00,61.32500207,196.4942927,448.126443,783.2739101,72.27974728,566.44686,492.9684474,73.47841263,70.10024622,3.378166416,110.8329454,0,110.8329454,2.179501064,108.6534443,1.0703232,3.429472368,1.087446054,-1.087446054,0.344189462,0.344189462,0.161293198,1.520064223,48.8904906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38302306,1.579041102,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101281355,46.9953992,68.48430441,48.5744403,492.9684474,0,0.629369166,50.99640395,-0.629369166,129.0035961,0.970555371,0,546.9374786,48.5744403,578.7284783,11,13,6% +2018-11-30 22:00:00,66.11503015,211.0842923,362.0603698,732.6530155,65.40788861,523.2005117,457.0355483,66.16496344,63.43559943,2.729364003,89.75801762,0,89.75801762,1.972289171,87.78572845,1.153924961,3.6841159,1.757061163,-1.757061163,0.229678534,0.229678534,0.180654648,1.006700495,32.37894842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.97671107,1.42891679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729351082,31.12387682,61.70606215,32.55279361,457.0355483,0,0.623809005,51.40517515,-0.623809005,128.5948249,0.969847262,0,504.9607371,32.55279361,526.2658894,11,14,4% +2018-11-30 23:00:00,73.31341564,223.7913306,229.355168,615.9504523,52.49347066,399.8850562,347.2454812,52.63957498,50.91059884,1.728976136,57.19268768,0,57.19268768,1.582871821,55.60981586,1.279560489,3.905895556,2.993041197,-2.993041197,0.0183135,0.0183135,0.228874157,0.420134579,13.51297226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.93720409,1.146785246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.304386072,12.98918293,49.24159016,14.13596818,347.2454812,0,0.563755542,55.68408151,-0.563755542,124.3159185,0.961309076,0,383.0518228,14.13596818,392.3035313,11,15,2% +2018-11-30 00:00:00,82.23375872,234.6892704,71.58260543,327.5720022,27.31721133,175.6976482,148.6645317,27.03311654,26.49349662,0.539619916,18.17974615,0,18.17974615,0.823714711,17.35603144,1.435249846,4.096100487,7.072067189,-7.072067189,0,0,0.381618009,0.205928678,6.623374156,0.404492873,1,0.140470109,0,0.946508521,0.985270484,0.724496596,1,25.68787035,0.596778504,0.058060284,0.312029739,0.848582158,0.573078754,0.961238037,0.922476074,0.14096187,6.366639171,25.82883222,6.963417675,88.53078819,0,0.453837723,63.00982379,-0.453837723,116.9901762,0.939828462,0,109.0325867,6.963417675,113.5900043,11,16,4% +2018-11-30 01:00:00,92.54684431,244.1882413,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615247146,4.261888806,-22.36639619,22.36639619,1,0,#DIV/0!,0,0,1,0.701940312,0,0.044680174,0.961238037,1,0.60561704,0.881120444,0,0,0.115824807,0.177230836,0.724496596,0.448993192,0.980662059,0.941900096,0,0,0,0,0,0,0.298169687,72.65229657,-0.298169687,107.3477034,0.882310251,0,0,0,0,11,17,0% +2018-11-30 02:00:00,103.5612537,252.8018543,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807484855,4.412224713,-4.140813391,4.140813391,1,0.761725516,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111743476,83.58417093,-0.111743476,96.41582907,0.602546583,0,0,0,0,11,18,0% +2018-11-30 03:00:00,115.0900459,261.090354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008700236,4.556886322,-2.095852481,2.095852481,1,0.888565573,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094505775,95.42287482,0.094505775,84.57712518,0,0.520931802,0,0,0,11,19,0% +2018-11-30 04:00:00,126.8843779,269.7490685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214550164,4.708009399,-1.254248169,1.254248169,1,0.744642759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306531937,107.8503527,0.306531937,72.14964731,0,0.88688486,0,0,0,11,20,0% +2018-11-30 05:00:00,138.674752,279.8997392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420331011,4.885172025,-0.762266501,0.762266501,1,0.660508939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509897394,120.6569954,0.509897394,59.34300458,0,0.951941056,0,0,0,11,21,0% +2018-11-30 06:00:00,150.0078774,293.941616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618131365,5.130249008,-0.415587504,0.415587504,1,0.601223338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690756259,133.6900032,0.690756259,46.30999685,0,0.977615567,0,0,0,11,22,0% +2018-11-30 07:00:00,159.6742372,318.0628837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786841169,5.551244549,-0.138385678,0.138385678,1,0.553819034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836797089,146.8034298,0.836797089,33.19657025,0,0.990248358,0,0,0,11,23,0% +2018-12-01 08:00:00,163.9496742,1.735313583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.861461622,0.030286936,0.106539468,-0.106539468,1,0.511934368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938080906,159.7317274,0.938080906,20.26827261,0,0.996699693,0,0,0,12,0,0% +2018-12-01 09:00:00,159.127618,44.17884362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777300866,0.771066281,0.343239837,-0.343239837,1,0.47145622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987717586,171.0107178,0.987717586,8.98928219,0,0.999378243,0,0,0,12,1,0% +2018-12-01 10:00:00,149.2747723,67.2840927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.605336266,1.174328952,0.59368464,-0.59368464,1,0.428627637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98233467,169.2145089,0.98233467,10.78549106,0,0.99910085,0,0,0,12,2,0% +2018-12-01 11:00:00,137.8910791,80.93401655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406653339,1.412565066,0.88744391,-0.88744391,1,0.378391843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922306686,157.2656679,0.922306686,22.73433211,0,0.995788098,0,0,0,12,3,0% +2018-12-01 12:00:00,126.0957149,90.9334541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200785397,1.587088174,1.281029484,-1.281029484,1,0.311084746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811729453,144.2652495,0.811729453,35.73475054,0,0.988403122,0,0,0,12,4,0% +2018-12-01 13:00:00,114.3198435,99.54323111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99525767,1.737357131,1.925022872,-1.925022872,1,0.20095539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658141059,131.158253,0.658141059,48.841747,0,0.974028444,0,0,0,12,5,0% +2018-12-01 14:00:00,102.8286228,107.8391934,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794698033,1.882148988,3.468013979,-3.468013979,1,0,#DIV/0!,0,0,0.059188015,1,0.280734264,0,0.927328704,0.966090667,0.724496596,1,0,0,0.009847566,0.312029739,0.972454045,0.696950641,0.961238037,0.922476074,0,0,0,0,0,0,-0.47200848,118.1647505,0.47200848,61.83524952,0,0.9440697,0,0,0,12,6,0% +2018-12-01 15:00:00,91.87303712,116.5009933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603486992,2.033325915,21.04872394,-21.04872394,1,0,#DIV/0!,0,0,0.75426293,1,0.047473123,0,0.95678131,0.995543274,0.724496596,1,0,0,0.094949699,0.312029739,0.766253781,0.490750377,0.961238037,0.922476074,0,0,0,0,0,0,-0.266014748,105.427258,0.266014748,74.57274199,0,0.862040496,0,0,0,12,7,0% +2018-12-01 16:00:00,81.65314624,126.0832365,80.97844714,354.9110638,29.45766196,29.17985451,0,29.17985451,28.56940477,0.61044974,39.12358847,18.60116923,20.52241924,0.888257195,19.63416204,1.425116246,2.200567609,-3.803093716,3.803093716,0.819478981,0.819478981,0.363771633,0.540338005,17.37912763,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.46199855,0.643539314,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.391473045,16.70547852,27.8534716,17.34901784,0,18.60116923,-0.05241079,93.00429355,0.05241079,86.99570645,0,0,27.8534716,17.34901784,39.20805679,12,8,41% +2018-12-01 17:00:00,72.84947102,137.0933577,238.0370463,626.215997,53.37651818,147.4276855,93.86624245,53.56144302,51.76701922,1.794423802,59.32433674,0,59.32433674,1.609498961,57.71483778,1.271463128,2.392730474,-1.261255456,1.261255456,0.745841076,0.745841076,0.224236181,1.44062211,46.33535916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.76042793,1.166076519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.043725815,44.53930968,50.80415374,45.7053862,93.86624245,0,0.149894354,81.37919572,-0.149894354,98.62080428,0.716431733,0,118.0529085,45.7053862,147.9661696,12,9,25% +2018-12-01 18:00:00,65.81714601,149.923364,367.599986,736.814067,65.76405957,309.9623918,243.4102373,66.5521545,63.78103053,2.771123969,91.11190157,0,91.11190157,1.98302904,89.12887253,1.148725902,2.616656328,-0.389627142,0.389627142,0.596783855,0.596783855,0.178901148,1.853659377,59.62005746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.30875258,1.436697789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.342969908,57.30906699,62.65172248,58.74576478,243.4102373,0,0.330355036,70.70967389,-0.330355036,109.2903261,0.898647683,0,281.3917683,58.74576478,319.8396964,12,10,14% +2018-12-01 19:00:00,61.23935722,164.6064638,449.7572133,784.5260959,72.28121607,447.0945913,373.6024607,73.49213057,70.10167072,3.390459852,111.2283888,0,111.2283888,2.179545354,109.0488435,1.068828415,2.872924764,0.146323846,-0.146323846,0.505130838,0.505130838,0.160711633,1.982273273,63.75672247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38439234,1.579073189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436150238,61.28538674,68.82054258,62.86445993,373.6024607,0,0.476214192,61.56156459,-0.476214192,118.4384354,0.945005229,0,421.8768216,62.86445993,463.0203533,12,11,10% +2018-12-01 20:00:00,59.70695803,180.5046905,476.6415143,797.6840322,74.27152606,536.2462279,460.6211373,75.62509058,72.03196552,3.593125069,117.806814,0,117.806814,2.239560543,115.5672535,1.042083004,3.150401165,0.599606477,-0.599606477,0.427614943,0.427614943,0.155822613,1.856946719,59.72578968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23986512,1.62255399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.345351576,57.41070083,70.5852167,59.03325482,460.6211373,0,0.577448111,54.72874422,-0.577448111,125.2712558,0.963412133,0,514.3532092,59.03325482,552.9892939,12,12,8% +2018-12-01 21:00:00,61.45430301,196.3560841,445.9589605,782.5812093,71.9950791,563.9772163,490.7912274,73.18598885,69.82416183,3.361827018,110.2988304,0,110.2988304,2.170917268,108.1279131,1.072579927,3.427060174,1.089731524,-1.089731524,0.343798624,0.343798624,0.161438799,1.511931226,48.62890547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11764024,1.572822171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095389027,46.74395363,68.21302927,48.3167758,490.7912274,0,0.62714415,51.16026401,-0.62714415,128.839736,0.970273513,0,544.4147576,48.3167758,576.037121,12,13,6% +2018-12-01 22:00:00,66.21577467,210.9250325,360.3361384,731.9403297,65.14945298,521.123781,455.2224584,65.90132261,63.1849566,2.716366018,89.33216496,0,89.33216496,1.964496383,87.36766857,1.155683285,3.681336293,1.761470622,-1.761470622,0.228924472,0.228924472,0.180801885,1.000536429,32.18069087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.73578364,1.423270942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.724885237,30.93330411,61.46066887,32.35657506,455.2224584,0,0.621939303,51.54210864,-0.621939303,128.4578914,0.969606303,0,502.8472337,32.35657506,524.0239649,12,14,4% +2018-12-01 23:00:00,73.38692234,223.6233764,228.0965356,615.0156811,52.25918862,398.2186585,345.8157892,52.4028693,50.68338126,1.719488034,56.88045323,0,56.88045323,1.575807353,55.30464588,1.280843423,3.902964203,3.002710144,-3.002710144,0.016660013,0.016660013,0.229109962,0.416035288,13.38112498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.71879391,1.141667063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.30141615,12.8624463,49.02021006,14.00411337,345.8157892,0,0.562287759,55.78584035,-0.562287759,124.2141596,0.961077559,0,381.3760046,14.00411337,390.5414167,12,15,2% +2018-12-01 00:00:00,82.28374807,234.5183144,70.85526555,325.897261,27.09792934,174.3798161,147.5648524,26.81496371,26.28082679,0.534136921,17.99678202,0,17.99678202,0.81710255,17.17967947,1.436122325,4.093116743,7.11260096,-7.11260096,0,0,0.382440587,0.204275638,6.570206698,0.406940942,1,0.139679989,0,0.946604219,0.985366182,0.724496596,1,25.48168868,0.591988016,0.058354607,0.312029739,0.847882375,0.572378971,0.961238037,0.922476074,0.139825159,6.315532588,25.62151384,6.907520604,87.51467241,0,0.45279562,63.07681,-0.45279562,116.92319,0.939574904,0,107.8481037,6.907520604,112.3689378,12,16,4% +2018-12-01 01:00:00,92.57914729,244.0144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615810939,4.258854703,-22.07897037,22.07897037,1,0,#DIV/0!,0,0,1,0.697508681,0,0.045261035,0.961238037,1,0.604175033,0.879678437,0,0,0.115824807,0.175600611,0.724496596,0.448993192,0.980872858,0.942110895,0,0,0,0,0,0,0.297525308,72.69097216,-0.297525308,107.3090278,0.881947069,0,0,0,0,12,17,0% +2018-12-01 02:00:00,103.579914,252.6213616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807810538,4.40907452,-4.135522081,4.135522081,1,0.762630383,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111469419,83.59997196,-0.111469419,96.40002804,0.601446481,0,0,0,0,12,18,0% +2018-12-01 03:00:00,115.0997208,260.8960371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008869095,4.553494853,-2.096311896,2.096311896,1,0.888644137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094473203,95.42100018,0.094473203,84.57899982,0,0.520749391,0,0,0,12,19,0% +2018-12-01 04:00:00,126.890347,269.5290973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214654344,4.704170178,-1.255695196,1.255695196,1,0.744890215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306277404,107.8350321,0.306277404,72.16496791,0,0.886749302,0,0,0,12,20,0% +2018-12-01 05:00:00,138.68451,279.6338403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420501321,4.880531214,-0.764029986,0.764029986,1,0.660810512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50952073,120.6319111,0.50952073,59.36808893,0,0.951868566,0,0,0,12,21,0% +2018-12-01 06:00:00,150.0351855,293.5943939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61860798,5.124188839,-0.417546975,0.417546975,1,0.601558428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690365601,133.6590563,0.690365601,46.34094371,0,0.977574607,0,0,0,12,22,0% +2018-12-01 07:00:00,159.7488658,317.6050045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788143684,5.54325305,-0.14056306,0.14056306,1,0.554191389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836501444,146.772504,0.836501444,33.22749596,0,0.99022724,0,0,0,12,23,0% +2018-12-02 08:00:00,164.1033465,1.429315052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864143709,0.024946254,0.1040505,-0.1040505,1,0.512360006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937982656,159.7154836,0.937982656,20.28451637,0,0.99669411,0,0,0,12,0,0% +2018-12-02 09:00:00,159.3016093,44.23252599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780337587,0.772003215,0.340266514,-0.340266514,1,0.471964689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987905445,171.0798683,0.987905445,8.920131717,0,0.999387869,0,0,0,12,1,0% +2018-12-02 10:00:00,149.4374031,67.40998059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60817471,1.17652611,0.589914324,-0.589914324,1,0.429272399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982877568,169.3820177,0.982877568,10.61798227,0,0.999128964,0,0,0,12,2,0% +2018-12-02 11:00:00,138.0468164,81.0520197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409371469,1.414624609,0.882253698,-0.882253698,1,0.379279422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923249018,157.4057857,0.923249018,22.5942143,0,0.99584343,0,0,0,12,3,0% +2018-12-02 12:00:00,126.2498159,91.03469867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203474968,1.588855225,1.272955397,-1.272955397,1,0.312465496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813088009,144.3987449,0.813088009,35.6012551,0,0.988506042,0,0,0,12,4,0% +2018-12-02 13:00:00,114.4756271,99.62891385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997976606,1.738852577,1.909537468,-1.909537468,1,0.20360355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659903845,131.2925399,0.659903845,48.70746014,0,0.974231386,0,0,0,12,5,0% +2018-12-02 14:00:00,102.9881357,107.9105956,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797482059,1.883395192,3.420637982,-3.420637982,1,0,#DIV/0!,0,0,0.051961836,1,0.284417421,0,0.926768101,0.965530064,0.724496596,1,0,0,0.008674007,0.312029739,0.975697025,0.70019362,0.961238037,0.922476074,0,0,0,0,0,0,-0.474135525,118.303079,0.474135525,61.69692096,0,0.944544919,0,0,0,12,6,0% +2018-12-02 15:00:00,92.03740791,116.5576072,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606355803,2.034314015,19.32916711,-19.32916711,1,0,#DIV/0!,0,0,0.735122392,1,0.051689203,0,0.956359449,0.995121412,0.724496596,1,0,0,0.093169228,0.312029739,0.769977428,0.494474024,0.961238037,0.922476074,0,0,0,0,0,0,-0.268440831,105.5715083,0.268440831,74.42849174,0,0.863739215,0,0,0,12,7,0% +2018-12-02 16:00:00,81.82053565,126.1220036,78.32937811,348.049482,28.81092548,28.53264971,0,28.53264971,27.94216977,0.590479939,39.00946678,19.14884648,19.86062029,0.868755704,18.99186459,1.428037743,2.201244222,-3.878116174,3.878116174,0.806649386,0.806649386,0.367817621,0.518303892,16.67043482,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.85907642,0.62941055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.375509405,16.02425604,27.23458582,16.65366659,0,19.14884648,-0.055017598,93.15386862,0.055017598,86.84613138,0,0,27.23458582,16.65366659,38.13407754,12,8,40% +2018-12-02 17:00:00,73.02178488,137.1080628,234.9499899,623.3022484,52.94069743,144.8360081,91.72051575,53.11549234,51.34434007,1.771152267,58.56270256,0,58.56270256,1.596357358,56.9663452,1.274470572,2.392987127,-1.274075463,1.274075463,0.748033426,0.748033426,0.225327515,1.425438272,45.84699473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.35413265,1.156555472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.032725175,44.06987521,50.38685783,45.22643068,91.72051575,0,0.147152551,81.53805142,-0.147152551,98.46194858,0.710216559,0,115.528287,45.22643068,145.1280813,12,9,26% +2018-12-02 18:00:00,65.98927151,149.9049211,364.5784509,735.2563395,65.39698862,307.0475023,240.8741278,66.17337449,63.42502812,2.748346362,90.36822687,0,90.36822687,1.971960496,88.39626637,1.151730059,2.616334438,-0.393491884,0.393491884,0.597444765,0.597444765,0.179377,1.840440901,59.19490586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.96654952,1.428678667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333393168,56.9003951,62.29994269,58.32907377,240.8741278,0,0.327605646,70.8764878,-0.327605646,109.1235122,0.897377478,0,278.4549599,58.32907377,316.6301721,12,10,14% +2018-12-02 19:00:00,61.40387993,164.5460822,446.9686548,783.521111,71.95006346,444.2014817,371.0515396,73.1499421,69.78050357,3.369438521,110.5422851,0,110.5422851,2.169559881,108.3727252,1.071699878,2.871870906,0.145398158,-0.145398158,0.50528914,0.50528914,0.160973399,1.970866901,63.38985436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.07567427,1.571838748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427886361,60.93273916,68.50356063,62.50457791,371.0515396,0,0.473569294,61.73376227,-0.473569294,118.2662377,0.94441883,0,418.9316217,62.50457791,459.8396178,12,11,10% +2018-12-02 20:00:00,59.85434865,180.4005608,474.1904308,796.9369257,73.9687852,533.560323,458.2473218,75.31300117,71.73835341,3.574647766,117.2033917,0,117.2033917,2.230431789,114.9729599,1.044655455,3.148583758,0.600231408,-0.600231408,0.427508074,0.427508074,0.15598962,1.847416828,59.41927564,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.957634,1.615940239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338447203,57.11606787,70.2960812,58.73200811,458.2473218,0,0.575010778,54.899613,-0.575010778,125.100387,0.963045108,0,511.6089228,58.73200811,550.0478475,12,12,8% +2018-12-02 21:00:00,61.57646212,196.2175041,443.9153776,781.9474808,71.71968331,561.622954,488.7194621,72.90349186,69.55707024,3.346421627,109.7950358,0,109.7950358,2.162613069,107.6324228,1.074712006,3.424641496,1.091686052,-1.091686052,0.34346438,0.34346438,0.16156161,1.504334756,48.38457687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.86090164,1.566805807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.08988541,46.50909569,67.95078705,48.07590149,488.7194621,0,0.625002924,51.31759792,-0.625002924,128.6824021,0.970000374,0,542.0088482,48.07590149,573.4735642,12,13,6% +2018-12-02 22:00:00,66.30943357,210.7670217,358.7400767,731.310118,64.90185777,519.1802922,453.5311307,65.64916152,62.94482729,2.704334231,88.93771543,0,88.93771543,1.957030474,86.98068495,1.157317941,3.678578484,1.765333474,-1.765333474,0.228263886,0.228263886,0.180916106,0.994879613,31.99874823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50496222,1.417861916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.720786893,30.75841393,61.22574911,32.17627585,453.5311307,0,0.620162527,51.67199598,-0.620162527,128.328004,0.969375974,0,500.8679304,32.17627585,521.9266595,12,14,4% +2018-12-02 23:00:00,73.45359589,223.4578182,226.964132,614.2203879,52.03919976,396.7090887,344.5281113,52.18097738,50.47002588,1.710951497,56.59925539,0,56.59925539,1.569173877,55.03008151,1.282007096,3.900074668,3.011180279,-3.011180279,0.015211534,0.015211534,0.229283805,0.412352281,13.26266681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5137086,1.136861132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.298747824,12.74857981,48.81245642,13.88544094,344.5281113,0,0.560919367,55.88059802,-0.560919367,124.119402,0.960860628,0,379.8559539,13.88544094,388.9436973,12,15,2% +2018-12-02 00:00:00,82.32726202,234.3505499,70.2315171,324.5195307,26.90340601,173.257564,146.6359601,26.6216039,26.09216906,0.529434842,17.83968139,0,17.83968139,0.811236954,17.02844443,1.436881786,4.090188699,7.147596575,-7.147596575,0,0,0.383067419,0.202809239,6.523042265,0.409038396,1,0.139004894,0,0.946685874,0.985447837,0.724496596,1,25.29877679,0.587738412,0.058606316,0.312029739,0.847284454,0.57178105,0.961238037,0.922476074,0.138817351,6.270196341,25.43759414,6.857934753,86.65622217,0,0.451855578,63.13720164,-0.451855578,116.8627984,0.939345175,0,106.8376983,6.857934753,111.3260794,12,16,4% +2018-12-02 01:00:00,92.60517436,243.8443654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616265197,4.255887038,-21.85119244,21.85119244,1,0,#DIV/0!,0,0,1,0.693902008,0,0.045732184,0.961238037,1,0.603007351,0.878510755,0,0,0.115824807,0.174280601,0.724496596,0.448993192,0.981043109,0.942281146,0,0,0,0,0,0,0.296984664,72.72341526,-0.296984664,107.2765847,0.881641138,0,0,0,0,12,17,0% +2018-12-02 02:00:00,103.5925077,252.4452532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80803034,4.406000849,-4.132104905,4.132104905,1,0.763214754,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111296175,83.60996023,-0.111296175,96.39003977,0.600748263,0,0,0,0,12,18,0% +2018-12-02 03:00:00,115.1034326,260.7067581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00893388,4.550191311,-2.097279838,2.097279838,1,0.888809665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094345817,95.41366875,0.094345817,84.58633125,0,0.520034795,0,0,0,12,19,0% +2018-12-02 04:00:00,126.8903,269.3149857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214653525,4.700433226,-1.257352945,1.257352945,1,0.745173707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305936718,107.814528,0.305936718,72.18547204,0,0.886567509,0,0,0,12,20,0% +2018-12-02 05:00:00,138.6879486,279.3748064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420561336,4.876010218,-0.765894414,0.765894414,1,0.661129348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509068636,120.601812,0.509068636,59.39818804,0,0.951781417,0,0,0,12,21,0% +2018-12-02 06:00:00,150.0554478,293.2546494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618961625,5.118259178,-0.419553831,0.419553831,1,0.60190162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689911555,133.6231081,0.689911555,46.37689188,0,0.977526942,0,0,0,12,22,0% +2018-12-02 07:00:00,159.8152909,317.1501665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789303022,5.535314629,-0.142755274,0.142755274,1,0.554566279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836154944,146.736291,0.836154944,33.26370897,0,0.99020247,0,0,0,12,23,0% +2018-12-03 08:00:00,164.2496545,1.108616993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.866697267,0.019349017,0.101571515,-0.101571515,1,0.512783938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937845706,159.6928622,0.937845706,20.30713784,0,0.996686326,0,0,0,12,0,0% +2018-12-03 09:00:00,159.4713486,44.26999749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783300096,0.772657216,0.337327493,-0.337327493,1,0.472467291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988065543,171.1392225,0.988065543,8.860777472,0,0.99939607,0,0,0,12,1,0% +2018-12-03 10:00:00,149.5974199,67.52344737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61096753,1.178506479,0.58620901,-0.58620901,1,0.429906045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983401676,169.5462453,0.983401676,10.45375468,0,0.999156076,0,0,0,12,2,0% +2018-12-03 11:00:00,138.2005978,81.16007741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412055459,1.416510572,0.87717751,-0.87717751,1,0.380147501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924178944,157.5448706,0.924178944,22.45512936,0,0.995897923,0,0,0,12,3,0% +2018-12-03 12:00:00,126.4021257,91.12747294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206133274,1.590474442,1.265094848,-1.265094848,1,0.313809729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814437514,144.5317825,0.814437514,35.46821755,0,0.988607936,0,0,0,12,4,0% +2018-12-03 13:00:00,114.6294909,99.70699883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000662036,1.740215417,1.894546597,-1.894546597,1,0.20616714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661657678,131.4264196,0.661657678,48.57358043,0,0.974432223,0,0,0,12,5,0% +2018-12-03 14:00:00,103.1453856,107.9749089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800226587,1.88451767,3.375318842,-3.375318842,1,0,#DIV/0!,0,0,0.044944736,1,0.288029717,0,0.926215546,0.964977509,0.724496596,1,0,0,0.007526911,0.312029739,0.978877278,0.703373874,0.961238037,0.922476074,0,0,0,0,0,0,-0.47625045,118.440798,0.47625045,61.55920204,0,0.945013223,0,0,0,12,6,0% +2018-12-03 15:00:00,92.19898389,116.6074341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609175836,2.035183658,17.8912108,-17.8912108,1,0,#DIV/0!,0,0,0.716667613,1,0.05583527,0,0.955940479,0.994702442,0.724496596,1,0,0,0.091429289,0.312029739,0.773640871,0.498137466,0.961238037,0.922476074,0,0,0,0,0,0,-0.270848583,105.7147687,0.270848583,74.2852313,0,0.86539501,0,0,0,12,7,0% +2018-12-03 16:00:00,81.98439282,126.1542225,75.75510001,341.238442,28.171842,27.89343096,0,27.89343096,27.32235702,0.571073943,38.87144082,19.65425478,19.21718604,0.849484979,18.36770106,1.43089759,2.201806548,-3.955154216,3.955154216,0.793475104,0.793475104,0.371880467,0.496992906,15.98500025,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.26328882,0.615448976,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.360069668,15.36539026,26.62335849,15.98083923,0,19.65425478,-0.057596837,93.30188298,0.057596837,86.69811702,0,0,26.62335849,15.98083923,37.08249815,12,8,39% +2018-12-03 17:00:00,73.18972038,137.1165815,231.9440936,620.4350501,52.5120757,142.298157,89.62102155,52.67713542,50.92864287,1.748492551,57.82096367,0,57.82096367,1.583432831,56.23753084,1.277401599,2.393135807,-1.287123017,1.287123017,0.750264689,0.750264689,0.226399711,1.410691993,45.3727037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.95454869,1.147191696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022041546,43.61396863,49.97659024,44.76116033,89.62102155,0,0.144448676,81.69464545,-0.144448676,98.30535455,0.703856294,0,113.0569104,44.76116033,142.3521946,12,9,26% +2018-12-03 18:00:00,66.15604737,149.8810272,361.6513059,733.7443436,65.03731253,304.2006075,238.3981296,65.8024779,63.07619759,2.726280306,89.64766111,0,89.64766111,1.961114935,87.68654617,1.154640847,2.615917411,-0.397522543,0.397522543,0.598134048,0.598134048,0.179834309,1.827707406,58.78535287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63124035,1.420821094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324167794,56.50671719,61.95540814,57.92753829,238.3981296,0,0.324906259,71.04010419,-0.324906259,108.9598958,0.896109459,0,275.586227,57.92753829,313.4986423,12,10,14% +2018-12-03 19:00:00,61.5621352,164.4815813,444.2869869,782.5619563,71.62673049,441.3925875,368.5764442,72.81614326,69.46692029,3.349222975,109.882334,0,109.882334,2.159810199,107.7225238,1.074461954,2.870745153,0.144286354,-0.144286354,0.50547927,0.50547927,0.16121726,1.959980513,63.03971069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77424608,1.564775137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41999921,60.59616774,68.19424529,62.16094288,368.5764442,0,0.470986918,61.90162137,-0.470986918,118.0983786,0.943839939,0,416.0714139,62.16094288,456.7545078,12,11,10% +2018-12-03 20:00:00,59.99481669,180.2941818,471.8567806,796.2397766,73.67451196,530.9751608,455.9651514,75.01000932,71.4529536,3.557055725,116.6286978,0,116.6286978,2.221558366,114.4071394,1.047107085,3.146727095,0.600619724,-0.600619724,0.427441668,0.427441668,0.156137445,1.838426769,59.13012445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68329684,1.609511473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.331933936,56.83812475,70.01523078,58.44763622,455.9651514,0,0.572648045,55.06491081,-0.572648045,124.9350892,0.962686334,0,508.966651,58.44763622,547.2194599,12,12,8% +2018-12-03 21:00:00,61.69143311,196.0786459,441.9969122,781.3743476,71.45368378,559.3859307,486.7548797,72.63105101,69.29909158,3.331959424,109.3218608,0,109.3218608,2.154592202,107.1672686,1.076718628,3.422217963,1.093305383,-1.093305383,0.343187458,0.343187458,0.161661047,1.49727748,48.1575906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.61292275,1.560994716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.084772437,46.29090785,67.69769518,47.85190257,486.7548797,0,0.622947095,51.46833221,-0.622947095,128.5316678,0.969736362,0,539.7216015,47.85190257,571.0397147,12,13,6% +2018-12-03 22:00:00,66.39597912,210.6103556,357.272906,730.7641251,64.66520221,517.3715053,451.9629235,65.40858185,62.71530777,2.693274078,88.57484686,0,88.57484686,1.949894436,86.62495243,1.158828446,3.675844144,1.76864149,-1.76864149,0.227698182,0.227698182,0.180996659,0.989730365,31.83313071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.28433932,1.412691881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71705628,30.59921607,61.0013956,32.01190795,451.9629235,0,0.618479901,51.79478646,-0.618479901,128.2052135,0.969156629,0,499.024259,32.01190795,519.9754125,12,14,4% +2018-12-03 23:00:00,73.51342745,223.2947576,225.9581179,613.5668588,51.83358971,395.357381,343.3833976,51.97398347,50.27061573,1.703367737,56.3491357,0,56.3491357,1.562973975,54.78616173,1.283051353,3.897228723,3.018429885,-3.018429885,0.013971779,0.013971779,0.229394678,0.409083189,13.15752158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.32202798,1.132369325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296379378,12.64751021,48.61840736,13.77987954,343.3833976,0,0.559651149,55.96832419,-0.559651149,124.0316758,0.960658631,0,378.4926319,13.77987954,387.5112874,12,15,2% +2018-12-03 00:00:00,82.36431196,234.1860857,69.71063229,323.4418619,26.73369377,172.3311479,145.8780654,26.45308246,25.92757427,0.525508192,17.70826938,0,17.70826938,0.806119504,16.90214988,1.43752843,4.087318257,7.176890027,-7.176890027,0,0,0.383495213,0.201529876,6.481893567,0.410782719,1,0.138444763,0,0.946753544,0.985515507,0.724496596,1,25.13918836,0.584030837,0.058815325,0.312029739,0.846788348,0.571284944,0.961238037,0.922476074,0.137938531,6.230642647,25.27712689,6.814673484,85.95387703,0,0.451017888,63.19099065,-0.451017888,116.8090094,0.939139652,0,105.9998211,6.814673484,110.4598886,12,16,4% +2018-12-03 01:00:00,92.62495265,243.6782549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616610393,4.252987863,-21.67944975,21.67944975,1,0,#DIV/0!,0,0,1,0.691125219,0,0.04609396,0.961238037,1,0.602111929,0.877615333,0,0,0.115824807,0.173268418,0.724496596,0.448993192,0.981173394,0.942411431,0,0,0,0,0,0,0.296547625,72.74963701,-0.296547625,107.250363,0.881393018,0,0,0,0,12,17,0% +2018-12-03 02:00:00,103.5990791,252.273659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808145032,4.403005966,-4.130540923,4.130540923,1,0.763482211,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111223195,83.61416779,-0.111223195,96.38583221,0.600453483,0,0,0,0,12,18,0% +2018-12-03 03:00:00,115.1012417,260.5226668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008895641,4.546978311,-2.098751989,2.098751989,1,0.889061418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09412452,95.40093269,0.09412452,84.59906731,0,0.51878879,0,0,0,12,19,0% +2018-12-03 04:00:00,126.8843124,269.1069202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214549021,4.696801797,-1.259219051,1.259219051,1,0.74549283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305511043,107.7889121,0.305511043,72.21108788,0,0.886339795,0,0,0,12,20,0% +2018-12-03 05:00:00,138.6851561,279.1229005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420512598,4.871613631,-0.767857912,0.767857912,1,0.661465126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508542428,120.5667903,0.508542428,59.43320968,0,0.951679787,0,0,0,12,21,0% +2018-12-03 06:00:00,150.0687554,292.9228327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619193886,5.112467884,-0.421606356,0.421606356,1,0.602252623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68939547,133.5822741,0.68939547,46.41772589,0,0.977472688,0,0,0,12,22,0% +2018-12-03 07:00:00,159.8735474,316.6992478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79031979,5.527444612,-0.144960626,0.144960626,1,0.554943417,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835758842,146.6949369,0.835758842,33.30506309,0,0.99017413,0,0,0,12,23,0% +2018-12-04 08:00:00,164.3884748,0.77359902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.869120138,0.01350185,0.099104276,-0.099104276,1,0.51320586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937671102,159.6640559,0.937671102,20.33594412,0,0.996676399,0,0,0,12,0,0% +2018-12-04 09:00:00,159.6367332,44.29095012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786186601,0.773022908,0.334424676,-0.334424676,1,0.472963702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988198616,171.1888593,0.988198616,8.81114074,0,0.999402884,0,0,0,12,1,0% +2018-12-04 10:00:00,149.7547377,67.62429838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613713243,1.180266661,0.582570807,-0.582570807,1,0.430528214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983907336,169.7071478,0.983907336,10.29285217,0,0.999182206,0,0,0,12,2,0% +2018-12-04 11:00:00,138.3523331,81.25807874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41470374,1.418221018,0.872217675,-0.872217675,1,0.380995682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925096359,157.6828896,0.925096359,22.31711038,0,0.995951576,0,0,0,12,3,0% +2018-12-04 12:00:00,126.5525451,91.21171084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20875859,1.591944671,1.25744999,-1.25744999,1,0.315117077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815777394,144.6643016,0.815777394,35.33569843,0,0.98870877,0,0,0,12,4,0% +2018-12-04 13:00:00,114.7813276,99.77744891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003312086,1.741445003,1.880048557,-1.880048557,1,0.208646451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663401524,131.5598112,0.663401524,48.4401888,0,0.974630863,0,0,0,12,5,0% +2018-12-04 14:00:00,103.3002581,108.0321192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802929621,1.885516178,3.331992509,-3.331992509,1,0,#DIV/0!,0,0,0.038138379,1,0.291567546,0,0.925671761,0.964433724,0.724496596,1,0,0,0.006407147,0.312029739,0.981991669,0.706488265,0.961238037,0.922476074,0,0,0,0,0,0,-0.478351803,118.5778109,0.478351803,61.42218909,0,0.945474419,0,0,0,12,6,0% +2018-12-04 15:00:00,92.35764654,116.6504824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611945021,2.035934991,16.67269397,-16.67269397,1,0,#DIV/0!,0,0,0.698889949,1,0.059906542,0,0.955525104,0.994287067,0.724496596,1,0,0,0.089731173,0.312029739,0.777239656,0.501736252,0.961238037,0.922476074,0,0,0,0,0,0,-0.273236202,105.8569309,0.273236202,74.14306915,0,0.867008143,0,0,0,12,7,0% +2018-12-04 16:00:00,82.14460124,126.1799257,73.25707644,334.4895536,27.54123391,27.26300688,0,27.26300688,26.71076409,0.552242786,38.7108691,20.11837296,18.59249614,0.830469819,17.76202632,1.433693754,2.202255154,-4.034168949,4.034168949,0.779962789,0.779962789,0.375953222,0.476412389,15.3230601,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67540244,0.601672557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.345159154,14.72910821,26.02056159,15.33078077,0,20.11837296,-0.060146491,93.44822127,0.060146491,86.55177873,0,0,26.02056159,15.33078077,36.05425099,12,8,39% +2018-12-04 17:00:00,73.35316458,137.1189723,229.0215157,617.6195307,52.09103847,139.8158931,87.5691307,52.24676239,50.52030147,1.726460924,57.099655,0,57.099655,1.570737005,55.52891799,1.280254239,2.393177533,-1.300383546,1.300383546,0.752532373,0.752532373,0.227450414,1.396394376,44.9128432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5620354,1.137993613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011682972,43.17193323,49.57371837,44.30992684,87.5691307,0,0.141784912,81.84885541,-0.141784912,98.15114459,0.697353168,0,110.6403291,44.30992684,139.64029,12,9,26% +2018-12-04 18:00:00,66.31737223,149.8517646,358.8207179,732.281078,64.68528442,301.423955,235.9842284,65.43972657,62.73478443,2.704942138,88.95073733,0,88.95073733,1.950499988,87.00023734,1.157456497,2.615406682,-0.401715411,0.401715411,0.598851071,0.598851071,0.180271877,1.815467741,58.39168319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.30306103,1.413130602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.315300198,56.12830692,61.61836123,57.54143752,235.9842284,0,0.322259083,71.20040023,-0.322259083,108.7995998,0.894845335,0,272.7877471,57.54143752,310.4474672,12,10,14% +2018-12-04 19:00:00,61.7140396,164.4130578,441.7141512,781.6507335,71.31140687,438.6702018,366.1792691,72.49093269,69.16110484,3.329827852,109.249012,0,109.249012,2.150302028,107.0987099,1.077113186,2.869549193,0.142988633,-0.142988633,0.505701193,0.505701193,0.161442432,1.94962085,62.7065083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.48028464,1.5578865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412493669,60.27588094,67.89277831,61.83376744,366.1792691,0,0.468469168,62.06502725,-0.468469168,117.9349727,0.94326939,0,413.2984742,61.83376744,453.7674383,12,11,10% +2018-12-04 20:00:00,60.1282994,180.1856534,469.6421437,795.5942754,73.38885403,528.492848,453.7765778,74.71627016,71.1759093,3.540360857,116.0831198,0,116.0831198,2.212944725,113.8701751,1.049436798,3.144832916,0.600769749,-0.600769749,0.427416012,0.427416012,0.156265478,1.829981097,58.85848259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.41699133,1.60327092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325815075,56.57701226,69.7428064,58.18028318,453.7765778,0,0.570361794,55.22454143,-0.570361794,124.7754586,0.962336344,0,506.4284994,58.18028318,544.5063311,12,12,8% +2018-12-04 21:00:00,61.79917347,195.939608,440.2046918,780.8633434,71.19719422,557.2679134,484.8991284,72.36878503,69.05033612,3.31844891,108.8795821,0,108.8795821,2.146858095,106.7327241,1.078599052,3.419791294,1.094585992,-1.094585992,0.342968461,0.342968461,0.161736564,1.490761684,47.94802023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37380954,1.555391382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080051766,46.08946083,67.4538613,47.64485222,484.8991284,0,0.620978219,51.61239554,-0.620978219,128.3876045,0.969481878,0,537.554779,47.64485222,568.7373818,12,13,6% +2018-12-04 22:00:00,66.47538844,210.4551347,355.9352433,730.3039354,64.43957043,515.698746,450.5190762,65.17966984,62.49647963,2.683190212,88.24371142,0,88.24371142,1.943090805,86.30062061,1.1602144,3.673135027,1.771387798,-1.771387798,0.227228535,0.227228535,0.181042961,0.985088664,31.68383764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.07399339,1.407762674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.713693383,30.45570989,60.78768677,31.86347257,450.5190762,0,0.616892576,51.91043267,-0.616892576,128.0895673,0.968948611,0,497.31752,31.86347257,518.1715255,12,14,4% +2018-12-04 23:00:00,73.56641373,223.1343,225.0785535,613.0570428,51.64241743,394.1643701,342.3824249,51.78194521,50.085208,1.69673721,56.13011059,0,56.13011059,1.557209426,54.57290116,1.283976139,3.894428209,3.024441071,-3.024441071,0.012943805,0.012943805,0.229441751,0.406225539,13.06560972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.14380702,1.128192928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29430902,12.55916104,48.43811604,13.68735396,342.3824249,0,0.558483797,56.04899309,-0.558483797,123.9510069,0.960471888,0,377.2868101,13.68735396,386.2449095,12,15,2% +2018-12-04 00:00:00,82.39491502,234.0250334,69.29188627,322.6665654,26.58878622,171.6005738,145.2911861,26.30938773,25.78703622,0.522351508,17.60237007,0,17.60237007,0.801750007,16.80062006,1.438062554,4.084507364,7.200348586,-7.200348586,0,0,0.383721495,0.200437502,6.446759054,0.412172187,1,0.137999427,0,0.946807295,0.985569258,0.724496596,1,25.00292091,0.580865151,0.058981605,0.312029739,0.846393911,0.570890507,0.961238037,0.922476074,0.137188516,6.196870018,25.14010942,6.777735168,85.40620009,0,0.450282743,63.23817412,-0.450282743,116.7618259,0.938958658,0,105.3330005,6.777735168,109.7688926,12,16,4% +2018-12-04 01:00:00,92.63851571,243.5161877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616847113,4.250159256,-21.56100696,21.56100696,1,0,#DIV/0!,0,0,1,0.689180662,0,0.04634681,0.961238037,1,0.60148672,0.876990125,0,0,0.115824807,0.172561709,0.724496596,0.448993192,0.981264224,0.942502261,0,0,0,0,0,0,0.296213949,72.76965464,-0.296213949,107.2303454,0.881203088,0,0,0,0,12,17,0% +2018-12-04 02:00:00,103.5996787,252.1067091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808155497,4.40009214,-4.130812093,4.130812093,1,0.763435838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111249815,83.61263309,-0.111249815,96.38736691,0.600561049,0,0,0,0,12,18,0% +2018-12-04 03:00:00,115.0932148,260.3439118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008755545,4.543858449,-2.10072407,2.10072407,1,0.889398663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093810324,95.38285058,0.093810324,84.61714942,0,0.517009621,0,0,0,12,19,0% +2018-12-04 04:00:00,126.8724662,268.9050842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214342265,4.693279095,-1.261291014,1.261291014,1,0.745847156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305001642,107.7582627,0.305001642,72.24173732,0,0.886066456,0,0,0,12,20,0% +2018-12-04 05:00:00,138.6762278,278.8783799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42035677,4.867345942,-0.769918479,0.769918479,1,0.661817504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507943503,120.5269443,0.507943503,59.47305568,0,0.951563856,0,0,0,12,21,0% +2018-12-04 06:00:00,150.0752073,292.5993848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619306494,5.106822654,-0.423702726,0.423702726,1,0.602611123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688818751,133.5366753,0.688818751,46.46332466,0,0.977411964,0,0,0,12,22,0% +2018-12-04 07:00:00,159.9236815,316.2531347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791194794,5.51965847,-0.147177329,0.147177329,1,0.555322495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835314431,146.6485932,0.835314431,33.35140685,0,0.990142301,0,0,0,12,23,0% +2018-12-05 08:00:00,164.519687,0.424723528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.871410223,0.007412824,0.096650618,-0.096650618,1,0.51362546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937459902,159.6292641,0.937459902,20.37073588,0,0.996664385,0,0,0,12,0,0% +2018-12-05 09:00:00,159.7976548,44.29510257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788995214,0.773095382,0.331560025,-0.331560025,1,0.473453586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988305387,171.2288869,0.988305387,8.771113115,0,0.99940835,0,0,0,12,1,0% +2018-12-05 10:00:00,149.9092653,67.71235043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616410259,1.181803459,0.579001875,-0.579001875,1,0.431138537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984394861,169.8646712,0.984394861,10.13532884,0,0.999207374,0,0,0,12,2,0% +2018-12-05 11:00:00,138.501927,81.34592042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417314646,1.419754144,0.867376561,-0.867376561,1,0.381823562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926001111,157.8198014,0.926001111,22.18019856,0,0.996004384,0,0,0,12,3,0% +2018-12-05 12:00:00,126.7009708,91.28735259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211349106,1.593264868,1.250023016,-1.250023016,1,0.316387164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817107017,144.7962349,0.817107017,35.20376514,0,0.988808505,0,0,0,12,4,0% +2018-12-05 13:00:00,114.9310257,99.84023258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005924812,1.742540784,1.86604182,-1.86604182,1,0.211041744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665134283,131.692628,0.665134283,48.30737199,0,0.97482721,0,0,0,12,5,0% +2018-12-05 14:00:00,103.4526359,108.082218,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805589116,1.886390568,3.290598917,-3.290598917,1,0,#DIV/0!,0,0,0.031544407,1,0.295027305,0,0.925137474,0.963899438,0.724496596,1,0,0,0.005315578,0.312029739,0.985037067,0.709533663,0.961238037,0.922476074,0,0,0,0,0,0,-0.480438065,118.7140166,0.480438065,61.28598339,0,0.945928313,0,0,0,12,6,0% +2018-12-05 15:00:00,92.51327521,116.6867656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614661254,2.036568254,15.62857724,-15.62857724,1,0,#DIV/0!,0,0,0.681781051,1,0.063898244,0,0.955114041,0.993876004,0.724496596,1,0,0,0.088076151,0.312029739,0.780769352,0.505265948,0.961238037,0.922476074,0,0,0,0,0,0,-0.275601826,105.9978823,0.275601826,74.00211773,0,0.868578851,0,0,0,12,7,0% +2018-12-05 16:00:00,82.30104369,126.1991509,70.83668592,327.8148158,26.91994679,26.64220793,0,26.64220793,26.10821107,0.53399686,38.52926264,20.5423523,17.98691034,0.81173572,17.17517462,1.43642419,2.202590696,-4.115106739,4.115106739,0.766121612,0.766121612,0.380028321,0.456568396,14.68480905,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.09620555,0.588099766,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330782248,14.11559702,25.4269878,14.70369678,0,20.5423523,-0.062664502,93.5927655,0.062664502,86.4072345,0,0,25.4269878,14.70369678,35.05026327,12,8,38% +2018-12-05 17:00:00,73.51200452,137.1152981,226.1843999,614.8609578,51.6779765,137.3909548,85.56618646,51.82476839,50.11969484,1.705073547,56.39930809,0,56.39930809,1.558281663,54.84102643,1.283026519,2.393113407,-1.313840837,1.313840837,0.754833705,0.754833705,0.228477192,1.382556519,44.46777015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.17695707,1.12896976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001657491,42.74411208,49.17861457,43.87308184,85.56618646,0,0.139163473,82.00055705,-0.139163473,97.99944295,0.690710318,0,108.2800625,43.87308184,136.9941171,12,9,27% +2018-12-05 18:00:00,66.47314559,149.8172194,356.0888273,730.8695638,64.34115587,298.7197783,233.6343977,65.08538062,62.40103263,2.684347993,88.27798208,0,88.27798208,1.940123243,86.33785883,1.160175255,2.614803755,-0.40606617,0.40606617,0.599595094,0.599595094,0.180688499,1.803730604,58.01417651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.9822461,1.405612685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.306796683,55.76543314,61.28904279,57.17104583,233.6343977,0,0.319666339,71.35725232,-0.319666339,108.6427477,0.893586909,0,270.0616822,57.17104583,307.4789882,12,10,14% +2018-12-05 19:00:00,61.85951139,164.3406123,439.2520425,780.7895209,71.00427768,436.036586,363.8620818,72.17450416,68.86323673,3.311267437,108.6427841,0,108.6427841,2.14104095,106.5017432,1.079652147,2.86828478,0.141505645,-0.141505645,0.505954799,0.505954799,0.161648145,1.939794403,62.39045599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.19396248,1.55117688,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.405374441,59.97207943,67.59933692,61.52325631,363.8620818,0,0.466018142,62.22386563,-0.466018142,117.7761344,0.94270804,0,410.6150468,61.52325631,450.8807876,12,11,10% +2018-12-05 20:00:00,60.25473651,180.0750791,467.5480338,795.0020587,73.11195203,526.115434,451.6835025,74.43193149,70.90735692,3.524574572,115.567029,0,115.567029,2.204595108,113.3624339,1.051643542,3.142903031,0.6006803,-0.6006803,0.427431308,0.427431308,0.156373135,1.822084055,58.60448658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15884856,1.597221651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.320093695,56.33286163,69.47894226,57.93008328,451.6835025,0,0.568153878,55.37840989,-0.568153878,124.6215901,0.961995672,0,503.9965169,57.93008328,541.9105978,12,12,8% +2018-12-05 21:00:00,61.89964402,195.8004929,438.5397621,780.4159112,70.95031851,555.2705812,483.1537786,72.11680259,68.81090462,3.305897967,108.4684565,0,108.4684565,2.139413882,106.3290426,1.080352594,3.417363279,1.095525061,-1.095525061,0.34280787,0.34280787,0.161787652,1.484789333,47.75592888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14365887,1.549998074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075724817,45.90481532,67.21938369,47.4548134,483.1537786,0,0.619097806,51.7497186,-0.619097806,128.2502814,0.969237317,0,535.5100557,47.4548134,566.5682819,12,13,6% +2018-12-05 22:00:00,66.54764272,210.301463,354.7276151,729.9309747,64.2250323,514.1632153,449.2007181,64.96249721,62.28841061,2.6740866,87.94443886,0,87.94443886,1.936621689,86.00781717,1.161475475,3.67045295,1.773566847,-1.773566847,0.226855896,0.226855896,0.181054504,0.980954222,31.55085978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.87398954,1.403075821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710697994,30.32788652,60.58468753,31.73096234,449.2007181,0,0.615401639,52.01889012,-0.615401639,127.9811099,0.968752248,0,495.7488928,31.73096234,516.516173,12,14,4% +2018-12-05 23:00:00,73.61255612,222.9765537,224.3254167,612.6925605,51.46571677,393.1307091,341.5258139,51.60489527,49.91383552,1.691059747,55.94217568,0,55.94217568,1.551881249,54.39029443,1.284781475,3.891675016,3.029199722,-3.029199722,0.012130028,0.012130028,0.229424367,0.403776824,12.98685062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.97907727,1.124332682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292534934,12.48345479,48.2716122,13.60778748,341.5258139,0,0.557417922,56.12258274,-0.557417922,123.8774173,0.960300695,0,376.2390887,13.60778748,385.1451135,12,15,2% +2018-12-05 00:00:00,82.41909302,233.8675063,68.97457773,322.1952569,26.46862236,171.0656331,144.8751779,26.19045524,25.67049574,0.519959502,17.52181155,0,17.52181155,0.798126623,16.72368493,1.43848454,4.081757999,7.217871645,-7.217871645,0,0,0.383744609,0.199531656,6.417623935,0.413205823,1,0.137668623,0,0.946847193,0.985609156,0.724496596,1,24.88991981,0.578240021,0.059105183,0.312029739,0.846100914,0.57059751,0.961238037,0.922476074,0.136566872,6.168864232,25.02648668,6.747104254,85.01191073,0,0.44965025,63.27875343,-0.44965025,116.7212466,0.938802464,0,104.8358779,6.747104254,109.2517227,12,16,4% +2018-12-05 01:00:00,92.64590237,243.3582835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616976035,4.24740331,-21.4939131,21.4939131,1,0,#DIV/0!,0,0,1,0.688068233,0,0.046491275,0.961238037,1,0.601129737,0.876633142,0,0,0.115824807,0.172158201,0.724496596,0.448993192,0.981316035,0.942554072,0,0,0,0,0,0,0.295983297,72.7834905,-0.295983297,107.2165095,0.881071548,0,0,0,0,12,17,0% +2018-12-05 02:00:00,103.5943625,251.9445332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808062712,4.397261636,-4.132903492,4.132903492,1,0.763078188,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111375275,83.60539979,-0.111375275,96.39460021,0.601067326,0,0,0,0,12,18,0% +2018-12-05 03:00:00,115.079424,260.1706403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00851485,4.540834291,-2.103191941,2.103191941,1,0.889820694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093404328,95.35948614,0.093404328,84.64051386,0,0.514692898,0,0,0,12,19,0% +2018-12-05 04:00:00,126.8548485,268.7096579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214034779,4.689868261,-1.263566252,1.263566252,1,0.746236245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304409851,107.7226627,0.304409851,72.27733733,0,0.88574776,0,0,0,12,20,0% +2018-12-05 05:00:00,138.6612644,278.6414951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42009561,4.863211523,-0.772074021,0.772074021,1,0.662186123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507273316,120.4823767,0.507273316,59.51762325,0,0.951433806,0,0,0,12,21,0% +2018-12-05 06:00:00,150.0749093,292.2847353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619301292,5.101330985,-0.425841038,0.425841038,1,0.602976796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688182847,133.486437,0.688182847,46.51356298,0,0.977344891,0,0,0,12,22,0% +2018-12-05 07:00:00,159.9657497,315.8127147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791929022,5.511971691,-0.149403537,0.149403537,1,0.555703199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834823026,146.5974149,0.834823026,33.4025851,0,0.990107066,0,0,0,12,23,0% +2018-12-06 08:00:00,164.6431746,0.062532834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.873565488,0.001091404,0.094212427,-0.094212427,1,0.514042416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937213168,159.5886906,0.937213168,20.41130936,0,0.996650344,0,0,0,12,0,0% +2018-12-06 09:00:00,159.9540001,44.28219935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791723954,0.772870179,0.328735543,-0.328735543,1,0.473936601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988386566,171.2594419,0.988386566,8.740558099,0,0.999412505,0,0,0,12,1,0% +2018-12-06 10:00:00,150.0609065,67.78743064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619056897,1.183113856,0.575504403,-0.575504403,1,0.43173664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98486453,170.0187511,0.98486453,9.981248917,0,0.999231596,0,0,0,12,2,0% +2018-12-06 11:00:00,138.6492794,81.42350585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419886432,1.421108266,0.862656553,-0.862656553,1,0.382630731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926893006,157.9555576,0.926893006,22.04444237,0,0.996056341,0,0,0,12,3,0% +2018-12-06 12:00:00,126.8472953,91.35434374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213902951,1.594434084,1.242816128,-1.242816128,1,0.317619614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818425697,144.9275091,0.818425697,35.07249088,0,0.988907099,0,0,0,12,4,0% +2018-12-06 13:00:00,115.0784713,99.8953231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008498222,1.743502295,1.852524975,-1.852524975,1,0.213353261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666854802,131.8247785,0.666854802,48.17522148,0,0.975021159,0,0,0,12,5,0% +2018-12-06 14:00:00,103.6023997,108.1252012,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808202988,1.887140765,3.251081577,-3.251081577,1,0,#DIV/0!,0,0,0.02516441,1,0.298405418,0,0.924613416,0.963375379,0.724496596,1,0,0,0.004253056,0.312029739,0.988010359,0.712506955,0.961238037,0.922476074,0,0,0,0,0,0,-0.482507664,118.84931,0.482507664,61.15068999,0,0.946374703,0,0,0,12,6,0% +2018-12-06 15:00:00,92.66574806,116.7163018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617322408,2.037083756,14.72542859,-14.72542859,1,0,#DIV/0!,0,0,0.665332785,1,0.067805632,0,0.954708016,0.993469979,0.724496596,1,0,0,0.086465458,0.312029739,0.784225573,0.508722169,0.961238037,0.922476074,0,0,0,0,0,0,-0.27794355,106.1375076,0.27794355,73.86249241,0,0.870107356,0,0,0,12,7,0% +2018-12-06 16:00:00,82.45360292,126.2119393,68.49520658,321.2265477,26.30884423,26.03188131,0,26.03188131,25.51553551,0.5163458,38.32828396,20.92751939,17.40076457,0.793308723,16.60745584,1.439086851,2.202813896,-4.197898121,4.197898121,0.751963452,0.751963452,0.384097597,0.437465559,14.07039616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.52650326,0.574749469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316942308,13.52499998,24.84344557,14.09974945,0,20.92751939,-0.065148785,93.73539602,0.065148785,86.26460398,0,0,24.84344557,14.09974945,34.07144959,12,8,37% +2018-12-06 17:00:00,73.66612778,137.1056253,223.4348647,612.1647176,51.27328402,135.0250443,83.61349259,51.41155172,49.72720533,1.684346389,55.72044847,0,55.72044847,1.546078692,54.17436978,1.285716477,2.392944584,-1.327477112,1.327477112,0.757165646,0.757165646,0.229477544,1.369189476,44.03784012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.79968123,1.120128749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.991973115,42.33084698,48.79165434,43.45097573,83.61349259,0,0.136586592,82.14962516,-0.136586592,97.85037484,0.683931858,0,105.9775857,43.45097573,134.4153803,12,9,27% +2018-12-06 18:00:00,66.62326819,149.7774806,353.4577411,729.5128333,64.00517596,296.090285,231.3505875,64.73969751,62.07518375,2.664513754,87.62991374,0,87.62991374,1.929992209,85.69992153,1.162795388,2.614110182,-0.410569935,0.410569935,0.600365284,0.600365284,0.181082966,1.792504528,57.65310731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.66902777,1.398272786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298663429,55.41835969,60.9676912,56.81663248,231.3505875,0,0.31713025,71.51053693,-0.31713025,108.4894631,0.892336075,0,267.4101664,56.81663248,304.5955161,12,10,14% +2018-12-06 19:00:00,61.99847063,164.2643476,436.9025074,779.9803672,70.70552291,433.4939615,361.6269153,71.86704617,68.57349052,3.293555649,108.0641036,0,108.0641036,2.132032391,105.9320712,1.082077444,2.86695371,0.139838454,-0.139838454,0.506239906,0.506239906,0.16183364,1.930507429,62.091755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91544741,1.54465021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.398646061,59.68495668,67.31409347,61.22960689,361.6269153,0,0.46363592,62.37802318,-0.46363592,117.6219768,0.94215676,0,408.0233362,61.22960689,448.0968893,12,11,10% +2018-12-06 20:00:00,60.37407002,179.962565,465.5759023,794.4647059,72.84393955,523.8449074,449.6877736,74.15713382,70.64742601,3.509707812,115.0807813,0,115.0807813,2.196513543,112.8842678,1.053726305,3.14093929,0.600350656,-0.600350656,0.427487681,0.427487681,0.156459858,1.814739619,58.36826426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90899308,1.591366585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314772676,56.10579575,69.22376576,57.69716234,449.6877736,0,0.566026118,55.52642283,-0.566026118,124.4735772,0.961664854,0,501.6726927,57.69716234,539.4343315,12,12,8% +2018-12-06 21:00:00,61.9928084,195.6614061,437.003096,780.0334025,70.71315117,553.3955288,481.5203261,71.87520269,68.58088876,3.294313929,108.0887225,0,108.0887225,2.132262412,105.9564601,1.081978619,3.414935755,1.096120441,-1.096120441,0.342706054,0.342706054,0.161813845,1.479362122,47.58137112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.92255888,1.544816859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.071792822,45.73702377,66.9943517,47.28184062,481.5203261,0,0.617307316,51.88023405,-0.617307316,128.119766,0.969003066,0,533.589024,47.28184062,564.534043,12,13,6% +2018-12-06 22:00:00,66.6127265,210.1494471,353.6504715,729.6465131,64.02164431,512.7660004,448.0088783,64.75712215,62.09115552,2.665966637,87.67714004,0,87.67714004,1.930488791,85.74665124,1.162611401,3.667799774,1.775174356,-1.775174356,0.226580996,0.226580996,0.181030847,0.977326555,31.43418154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.68438043,1.398632557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.708069762,30.21573096,60.3924502,31.61436351,448.0088783,0,0.614008112,52.12011672,-0.614008112,127.8798833,0.968567851,0,494.3194467,31.61436351,515.0104153,12,14,4% +2018-12-06 23:00:00,73.65185972,222.8216287,223.6986207,612.4747149,51.30349812,392.2568887,340.8140456,51.44284306,49.75650837,1.686334694,55.78531024,0,55.78531024,1.546989758,54.23832049,1.285467452,3.888971066,3.032695426,-3.032695426,0.011532228,0.011532228,0.22934204,0.401734575,12.9211649,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.82784842,1.120788814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.291055332,12.42031518,48.11890375,13.541104,340.8140456,0,0.556454066,56.18907423,-0.556454066,123.8109258,0.960145324,0,375.3499159,13.541104,384.2122977,12,15,2% +2018-12-06 00:00:00,82.43687145,233.713619,68.75804855,322.0289052,26.37309105,170.7259385,144.6297662,26.09617226,25.57784505,0.518327213,17.46643093,0,17.46643093,0.795246002,16.67118492,1.438794832,4.079072158,7.229391071,-7.229391071,0,0,0.383563693,0.1988115,6.394461262,0.413883344,1,0.137452015,0,0.946873304,0.985635267,0.724496596,1,24.80008254,0.576153021,0.059186129,0.312029739,0.845909059,0.570405655,0.961238037,0.922476074,0.136072938,6.146599391,24.93615548,6.722752412,84.769915,0,0.449120448,63.31273318,-0.449120448,116.6872668,0.93867129,0,104.507241,6.722752412,108.907148,12,16,4% +2018-12-06 01:00:00,92.64715558,243.2046624,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616997907,4.244722114,-21.47693856,21.47693856,1,0,#DIV/0!,0,0,1,0.687785529,0,0.046527967,0.961238037,1,0.601039095,0.8765425,0,0,0.115824807,0.172055746,0.724496596,0.448993192,0.981329185,0.942567221,0,0,0,0,0,0,0.295855252,72.79117088,-0.295855252,107.2088291,0.880998437,0,0,0,0,12,17,0% +2018-12-06 02:00:00,103.5831907,251.7872599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807867727,4.394516699,-4.136803556,4.136803556,1,0.762411238,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111598745,83.5925156,-0.111598745,96.4074844,0.601966286,0,0,0,0,12,18,0% +2018-12-06 03:00:00,115.0599454,260.0029967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008174884,4.537908357,-2.106151695,2.106151695,1,0.890326842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092907696,95.33090699,0.092907696,84.66909301,0,0.511831453,0,0,0,12,19,0% +2018-12-06 04:00:00,126.8315506,268.5208164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213628153,4.686572356,-1.266042155,1.266042155,1,0.746659649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303737063,107.6821987,0.303737063,72.3178013,0,0.885383935,0,0,0,12,20,0% +2018-12-06 05:00:00,138.6403708,278.4124886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419730947,4.859214605,-0.774322386,0.774322386,1,0.662570616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506533365,120.4331936,0.506533365,59.56680643,0,0.951289819,0,0,0,12,21,0% +2018-12-06 06:00:00,150.0679723,291.9792997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619180218,5.096000128,-0.428019336,0.428019336,1,0.603349307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687489232,133.431687,0.687489232,46.56831301,0,0.977271588,0,0,0,12,22,0% +2018-12-06 07:00:00,159.9998177,315.3788696,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792523621,5.504399666,-0.151637356,0.151637356,1,0.556085205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834285948,146.5415593,0.834285948,33.45844068,0,0.99006851,0,0,0,12,23,0% +2018-12-07 08:00:00,164.7588252,359.6876455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.875583971,6.277733692,0.091791622,-0.091791622,1,0.514456398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936931957,159.5425416,0.936931957,20.45745836,0,0.996634332,0,0,0,12,0,0% +2018-12-07 09:00:00,160.105651,44.25201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79437076,0.772343275,0.325953255,-0.325953255,1,0.4744124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988442844,171.2806868,0.988442844,8.719313192,0,0.999415386,0,0,0,12,1,0% +2018-12-07 10:00:00,150.2095605,67.84937532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621651399,1.184194995,0.572080586,-0.572080586,1,0.432322148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985316595,170.1693132,0.985316595,9.830686808,0,0.999254889,0,0,0,12,2,0% +2018-12-07 11:00:00,138.7942871,81.49074418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.422417292,1.422281796,0.858060024,-0.858060024,1,0.383416783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927771814,158.0901033,0.927771814,21.90989674,0,0.996107438,0,0,0,12,3,0% +2018-12-07 12:00:00,126.9914088,91.41263443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216418205,1.595451449,1.235831501,-1.235831501,1,0.318814056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819732714,145.0580463,0.819732714,34.94195366,0,0.989004508,0,0,0,12,4,0% +2018-12-07 13:00:00,115.2235481,99.94269776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011030289,1.744329139,1.839496666,-1.839496666,1,0.215581233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66856189,131.9561676,0.66856189,48.0438324,0,0.975212608,0,0,0,12,5,0% +2018-12-07 14:00:00,103.7494291,108.1610682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810769135,1.887766762,3.213387213,-3.213387213,1,0,#DIV/0!,0,0,0.0189999,1,0.301698358,0,0.924100312,0.962862275,0.724496596,1,0,0,0.003220414,0.312029739,0.990908477,0.715405073,0.961238037,0.922476074,0,0,0,0,0,0,-0.484559,118.9835834,0.484559,61.01641665,0,0.946813391,0,0,0,12,6,0% +2018-12-07 15:00:00,92.81494294,116.7391118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619926349,2.037481866,13.93791146,-13.93791146,1,0,#DIV/0!,0,0,0.649537158,1,0.071624032,0,0.954307762,0.993069726,0.724496596,1,0,0,0.084900289,0.312029739,0.787604007,0.512100603,0.961238037,0.922476074,0,0,0,0,0,0,-0.280259443,106.2756897,0.280259443,73.72431034,0,0.871593879,0,0,0,12,7,0% +2018-12-07 16:00:00,82.60216252,126.2183352,66.23380186,314.7373127,25.70880216,25.4328853,0,25.4328853,24.93358692,0.499298376,38.10974318,21.27537585,16.83436733,0.775215241,16.05915209,1.441679705,2.202925525,-4.282456766,4.282456766,0.737503072,0.737503072,0.388152294,0.419106991,13.47992149,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.96711215,0.561640803,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.303641588,12.95741327,24.27075373,13.51905408,0,21.27537585,-0.067597247,93.87599261,0.067597247,86.12400739,0,0,24.27075373,13.51905408,33.11870424,12,8,36% +2018-12-07 17:00:00,73.81542312,137.0900222,220.7749919,609.5362907,50.87735673,132.719814,81.7123021,51.00751185,49.34321671,1.664295145,55.06359285,0,55.06359285,1.534140023,53.52945282,1.288322172,2.392672259,-1.3412731,1.3412731,0.759524899,0.759524899,0.230448912,1.35630422,43.62340599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.43057676,1.111479224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.98263779,41.93247713,48.41321455,43.04395635,81.7123021,0,0.134056501,82.29593456,-0.134056501,97.70406544,0.677022936,0,103.7343172,43.04395635,131.9057258,12,9,27% +2018-12-07 18:00:00,66.76764242,149.7326385,350.9295253,728.2139168,63.67759012,293.5376439,229.1347131,64.40293083,61.75747583,2.645454995,87.00704062,0,87.00704062,1.920114287,85.08692633,1.165315194,2.61332754,-0.415221304,0.415221304,0.601160715,0.601160715,0.181454068,1.781797868,57.30874432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.36363483,1.391116265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29090649,55.08734489,60.65454132,56.47846115,229.1347131,0,0.314653027,71.66013138,-0.314653027,108.3398686,0.891094807,0,264.8352942,56.47846115,301.7993175,12,10,14% +2018-12-07 19:00:00,62.1308393,164.1843676,434.6673408,779.2252833,70.41531693,431.0445003,359.475759,71.56874134,68.29203532,3.276706019,107.5134108,0,107.5134108,2.12328161,105.3901292,1.084387713,2.865557795,0.137988514,-0.137988514,0.506556264,0.506556264,0.161998177,1.921765962,61.81059936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.64490196,1.538310299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392312897,59.41469919,67.03721486,60.95300948,359.475759,0,0.461324558,62.52738815,-0.461324558,117.4726119,0.941616435,0,405.5254976,60.95300948,445.4180233,12,11,10% +2018-12-07 20:00:00,60.48624407,179.8482183,463.72714,793.9837342,72.58494303,521.6831921,447.7911818,73.89201025,70.39623919,3.49577106,114.6247178,0,114.6247178,2.188703842,112.4360139,1.055684111,3.138943563,0.599780529,-0.599780529,0.427585178,0.427585178,0.156525113,1.807951522,58.14993574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66754276,1.585708483,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309854723,55.89593008,68.97739748,57.48163856,447.7911818,0,0.563980297,55.66848879,-0.563980297,124.3315112,0.961344421,0,499.4589517,57.48163856,537.0795345,12,12,8% +2018-12-07 21:00:00,62.07863264,195.5224539,435.5956004,779.7170756,70.48577765,551.644268,480.0001929,71.64407502,68.36037139,3.283703632,107.7406027,0,107.7406027,2.125406261,105.6151965,1.083476535,3.412510582,1.09637062,-1.09637062,0.342663271,0.342663271,0.161814714,1.474481528,47.42439445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71058919,1.539849601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.068256848,45.58613182,66.77884604,47.12598142,480.0001929,0,0.615608158,52.00387654,-0.615608158,127.9961235,0.968779504,0,531.7931948,47.12598142,562.6362072,12,13,6% +2018-12-07 22:00:00,66.67062706,209.9991952,352.7041977,729.4516669,63.82945029,511.5080824,446.9444923,64.56359009,61.90475686,2.658833225,87.44190964,0,87.44190964,1.924693432,85.51721621,1.163621957,3.665177382,1.776207274,-1.776207274,0.226404356,0.226404356,0.180971621,0.974205039,31.33378285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50520696,1.39443384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.705808234,30.11922392,60.21101519,31.51365776,446.9444923,0,0.612712963,52.21407256,-0.612712963,127.7859274,0.96839572,0,493.0301488,31.51365776,513.6552075,12,14,4% +2018-12-07 23:00:00,73.6843326,222.6696362,223.198029,612.4045015,51.15574988,391.5432527,340.2474764,51.2957763,49.61321528,1.682561022,55.65948084,0,55.65948084,1.542534604,54.11694624,1.286034211,3.886318296,3.034921381,-3.034921381,0.011151567,0.011151567,0.229194452,0.400096423,12.86847628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.69010966,1.117561069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289868496,12.36966888,47.97997815,13.48722995,340.2474764,0,0.55559271,56.24845114,-0.55559271,123.7515489,0.960006019,0,374.6196033,13.48722995,383.4467256,12,15,2% +2018-12-07 00:00:00,82.44827856,233.5634858,68.64169938,322.1678726,26.30203496,170.5809534,144.5545717,26.02638169,25.50893157,0.517450124,17.43607812,0,17.43607812,0.793103398,16.64297472,1.438993924,4.076451839,7.234871254,-7.234871254,0,0,0.383178668,0.19827585,6.377232891,0.414205114,1,0.137349204,0,0.946885694,0.985647657,0.724496596,1,24.73326244,0.574600712,0.059224556,0.312029739,0.845817997,0.570314593,0.961238037,0.922476074,0.135705843,6.130038825,24.86896829,6.704639537,84.67932883,0,0.448693318,63.34012055,-0.448693318,116.6598795,0.938565312,0,104.346049,6.704639537,108.7341014,12,16,4% +2018-12-07 01:00:00,92.64232143,243.0554432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616913536,4.242117749,-21.50953647,21.50953647,1,0,#DIV/0!,0,0,1,0.688327982,0,0.046457554,0.961238037,1,0.601213048,0.876716452,0,0,0.115824807,0.172252368,0.724496596,0.448993192,0.981303947,0.942541984,0,0,0,0,0,0,0.295829339,72.79272515,-0.295829339,107.2072748,0.880983634,0,0,0,0,12,17,0% +2018-12-07 02:00:00,103.5662264,251.6350159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807571644,4.391859541,-4.142504282,4.142504282,1,0.761436356,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111919337,83.57403121,-0.111919337,96.42596879,0.603249677,0,0,0,0,12,18,0% +2018-12-07 03:00:00,115.0348578,259.8411221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007737024,4.535083114,-2.109599742,2.109599742,1,0.890916493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092321641,95.29718354,0.092321641,84.70281646,0,0.508415173,0,0,0,12,19,0% +2018-12-07 04:00:00,126.8026663,268.3387298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213124027,4.683394346,-1.268716129,1.268716129,1,0.747116926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302984704,107.6369599,0.302984704,72.36304011,0,0.884975168,0,0,0,12,20,0% +2018-12-07 05:00:00,138.6136547,278.1915936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419264664,4.855359259,-0.776661394,0.776661394,1,0.66297061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505725172,120.3795027,0.505725172,59.62049726,0,0.951132072,0,0,0,12,21,0% +2018-12-07 06:00:00,150.0545113,291.6834774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618945279,5.090837054,-0.430235634,0.430235634,1,0.603728316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686739393,133.3725545,0.686739393,46.62744548,0,0.977192177,0,0,0,12,22,0% +2018-12-07 07:00:00,160.0259594,314.9524688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79297988,5.496957568,-0.153876872,0.153876872,1,0.556468185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833704523,146.4811843,0.833704523,33.51881571,0,0.990026714,0,0,0,12,23,0% +2018-12-08 08:00:00,164.8665312,359.3007523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.877463796,6.270981132,0.089390134,-0.089390134,1,0.514867076,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936617314,159.491024,0.936617314,20.50897602,0,0.996616404,0,0,0,12,0,0% +2018-12-08 09:00:00,160.2524854,44.2043289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796933505,0.771511083,0.323215183,-0.323215183,1,0.474880638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988474892,171.2928078,0.988474892,8.707192244,0,0.999417026,0,0,0,12,1,0% +2018-12-08 10:00:00,150.355123,67.89802948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624191944,1.18504417,0.568732604,-0.568732604,1,0.432894686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985751283,170.316273,0.985751283,9.683726989,0,0.999277266,0,0,0,12,2,0% +2018-12-08 11:00:00,138.9368437,81.54754983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424905375,1.423273242,0.853589313,-0.853589313,1,0.38418132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928637275,158.2233777,0.928637275,21.77662226,0,0.996157664,0,0,0,12,3,0% +2018-12-08 12:00:00,127.1331993,91.46217886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218892916,1.596316162,1.229071251,-1.229071251,1,0.319970127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821027316,145.1877647,0.821027316,34.81223535,0,0.989100686,0,0,0,12,4,0% +2018-12-08 13:00:00,115.366139,99.98233731,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013518971,1.74502098,1.826955541,-1.826955541,1,0.217725892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670254334,132.0866974,0.670254334,47.91330257,0,0.975401452,0,0,0,12,5,0% +2018-12-08 14:00:00,103.8936033,108.1898215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813285449,1.888268602,3.177465444,-3.177465444,1,0,#DIV/0!,0,0,0.013052288,1,0.304902665,0,0.923598883,0.962360847,0.724496596,1,0,0,0.002218464,0.312029739,0.993728409,0.718225005,0.961238037,0.922476074,0,0,0,0,0,0,-0.486590452,119.1167272,0.486590452,60.88327284,0,0.947244182,0,0,0,12,6,0% +2018-12-08 15:00:00,92.9607382,116.7552195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622470957,2.037762998,13.24647537,-13.24647537,1,0,#DIV/0!,0,0,0.634386266,1,0.075348859,0,0.953914011,0.992675975,0.724496596,1,0,0,0.083381792,0.312029739,0.790900439,0.515397035,0.961238037,0.922476074,0,0,0,0,0,0,-0.282547567,106.4123105,0.282547567,73.58768954,0,0.873038646,0,0,0,12,7,0% +2018-12-08 16:00:00,82.74660764,126.2183847,64.05350764,308.359837,25.12070278,24.8460833,0,24.8460833,24.3632209,0.482862397,37.87559108,21.5875947,16.28799639,0.757481874,15.53051451,1.444200748,2.202926389,-4.368678476,4.368678476,0.722758291,0.722758291,0.392183094,0.401494193,12.91343338,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.41885463,0.548793039,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.290881176,12.41288335,23.70973581,12.96167639,0,21.5875947,-0.070007803,94.01443539,0.070007803,85.98556461,0,0,23.70973581,12.96167639,32.19289377,12,8,36% +2018-12-08 17:00:00,73.95978109,137.0685588,218.2068153,606.9812266,50.4905896,130.4768543,79.8638071,50.61304718,48.96811204,1.644935145,54.42924625,0,54.42924625,1.522477567,52.90676869,1.290841694,2.392297651,-1.355208129,1.355208129,0.761907929,0.761907929,0.231388692,1.343911589,43.22481636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.07001188,1.103029815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973659371,41.54933762,48.04367125,42.65236743,79.8638071,0,0.131575416,82.43936096,-0.131575416,97.56063904,0.6699898,0,101.5516074,42.65236743,129.4667288,12,9,27% +2018-12-08 18:00:00,66.90617282,149.682784,348.5061956,726.975828,63.35863887,291.0639724,226.9886434,64.07532906,61.44814214,2.627186912,86.40985872,0,86.40985872,1.910496731,84.49936199,1.167733006,2.612457414,-0.420014397,0.420014397,0.601980382,0.601980382,0.18180061,1.771618775,56.9813497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.06629152,1.384148378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283531772,54.77264072,60.34982329,56.1567891,226.9886434,0,0.312236851,71.80591465,-0.312236851,108.1940853,0.889865154,0,262.3391074,56.1567891,299.0926028,12,10,14% +2018-12-08 19:00:00,62.25654164,164.100776,432.5482803,778.5262334,70.13382769,428.6903152,357.4105495,71.27976567,68.01903402,3.260731646,106.9911321,0,106.9911321,2.114793671,104.8763384,1.086581633,2.864098847,0.135957636,-0.135957636,0.506903565,0.506903565,0.162141039,1.9135758,61.54717559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.38248273,1.532160816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.386379153,59.16148624,66.76886188,60.69364706,357.4105495,0,0.459086071,62.67185097,-0.459086071,117.328149,0.941087961,0,403.1236272,60.69364706,442.8464053,12,11,10% +2018-12-08 20:00:00,60.59120506,179.7321461,462.0030751,793.5605933,72.33508133,519.6321402,445.9954541,73.63668607,70.15391174,3.482774331,114.199164,0,114.199164,2.18116959,112.0179944,1.057516026,3.13691772,0.598970049,-0.598970049,0.427723779,0.427723779,0.156568398,1.80172327,57.94961374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4346084,1.580249943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305342376,55.70337295,68.73995078,57.28362289,445.9954541,0,0.562018147,55.80451873,-0.562018147,124.1954813,0.961034901,0,497.3571479,57.28362289,534.8481335,12,12,8% +2018-12-08 21:00:00,62.1570851,195.3837434,434.3181186,779.4680917,70.26827425,550.0182254,478.5947254,71.42349995,68.14942651,3.274073435,107.4243039,0,107.4243039,2.118847731,105.3054562,1.084845788,3.410089627,1.096274709,-1.096274709,0.342679673,0.342679673,0.161789875,1.470148835,47.28504013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50782096,1.535097968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065117826,45.45217915,66.57293878,46.98727712,478.5947254,0,0.61400169,52.12058294,-0.61400169,127.8794171,0.968566999,0,530.1239959,46.98727712,560.876229,12,13,6% +2018-12-08 22:00:00,66.7213341,209.8508153,351.8891197,729.3473974,63.64848179,510.3903393,446.0084053,64.38193405,61.72924523,2.652688823,87.23882767,0,87.23882767,1.919236564,85.31959111,1.164506961,3.662587665,1.776663754,-1.776663754,0.226326294,0.226326294,0.180876527,0.971588946,31.24964032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.3364985,1.390480357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703912884,30.03834292,60.04041139,31.42882327,446.0084053,0,0.6115171,52.30071981,-0.6115171,127.6992802,0.968236138,0,491.8818671,31.42882327,512.4514033,12,14,4% +2018-12-08 23:00:00,73.70998534,222.5206871,222.8234646,612.4826122,51.02243932,390.9900076,339.8263457,51.16366192,49.48392452,1.679737397,55.56464354,0,55.56464354,1.538514798,54.02612874,1.286481936,3.883718643,3.035874358,-3.035874358,0.010988598,0.010988598,0.228981447,0.398860129,12.82871281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.56583046,1.114648734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288972805,12.33144671,47.85480327,13.44609545,339.8263457,0,0.554834274,56.30069923,-0.554834274,123.6993008,0.959883001,0,374.0483356,13.44609545,382.8485361,12,15,2% +2018-12-08 00:00:00,82.45334479,233.4172206,68.62499914,322.6119428,26.25525341,170.6300113,144.6491265,25.98088487,25.46356064,0.517324231,17.43061832,0,17.43061832,0.791692762,16.63892555,1.439082346,4.07389903,7.234308996,-7.234308996,0,0,0.382590218,0.19792319,6.365890161,0.414172117,1,0.137359745,0,0.946884424,0.985646387,0.724496596,1,24.68927137,0.573578711,0.059220616,0.312029739,0.845827334,0.57032393,0.961238037,0.922476074,0.135464521,6.119135761,24.8247359,6.692714472,84.73949147,0,0.44836879,63.36092471,-0.44836879,116.6390753,0.938484656,0,104.3514484,6.692714472,108.7316961,12,16,4% +2018-12-08 01:00:00,92.63144852,242.9107436,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616723768,4.239592265,-21.591825,21.591825,1,0,#DIV/0!,0,0,1,0.689688976,0,0.046280753,0.961238037,1,0.601650006,0.87715341,0,0,0.115824807,0.172746278,0.724496596,0.448993192,0.981240513,0.94247855,0,0,0,0,0,0,0.29590503,72.78818514,-0.29590503,107.2118149,0.881026867,0,0,0,0,12,17,0% +2018-12-08 02:00:00,103.543535,251.4879256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807175604,4.389292331,-4.150001346,4.150001346,1,0.760154283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112336121,83.54999967,-0.112336121,96.45000033,0.60490719,0,0,0,0,12,18,0% +2018-12-08 03:00:00,115.0042425,259.685154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007202686,4.532360956,-2.11353286,2.11353286,1,0.891589095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091647406,95.25838827,0.091647406,84.74161173,0,0.504430824,0,0,0,12,19,0% +2018-12-08 04:00:00,126.7682916,268.1635619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212524076,4.680337089,-1.271585627,1.271585627,1,0.747607639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302154226,107.587037,0.302154226,72.41296304,0,0.884521593,0,0,0,12,20,0% +2018-12-08 05:00:00,138.5812259,277.9790329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418698674,4.851649376,-0.779088858,0.779088858,1,0.663385731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504850268,120.3214134,0.504850268,59.67858665,0,0.950960734,0,0,0,12,21,0% +2018-12-08 06:00:00,150.0346443,291.3976495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618598534,5.085848416,-0.432487934,0.432487934,1,0.604113482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685934813,133.3091693,0.685934813,46.69083071,0,0.977106776,0,0,0,12,22,0% +2018-12-08 07:00:00,160.0442561,314.534363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793299218,5.489660244,-0.156120165,0.156120165,1,0.55685181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833080062,146.4164473,0.833080062,33.58355274,0,0.989981759,0,0,0,12,23,0% +2018-12-09 08:00:00,164.9661905,358.9026125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.879203178,6.264032282,0.087009892,-0.087009892,1,0.515274122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936270266,159.4343438,0.936270266,20.56565625,0,0.996596617,0,0,0,12,0,0% +2018-12-09 09:00:00,160.3943783,44.13897608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799410004,0.770370461,0.320523338,-0.320523338,1,0.475340971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988483356,171.2960121,0.988483356,8.703987925,0,0.999417459,0,0,0,12,1,0% +2018-12-09 10:00:00,150.4974867,67.93324684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.626676658,1.185658829,0.565462608,-0.565462608,1,0.433453889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986168794,170.4595359,0.986168794,9.540464068,0,0.99929874,0,0,0,12,2,0% +2018-12-09 11:00:00,139.0768413,81.59384241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427348794,1.424081199,0.849246705,-0.849246705,1,0.38492395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929489105,158.3553154,0.929489105,21.64468461,0,0.996207008,0,0,0,12,3,0% +2018-12-09 12:00:00,127.2725541,91.50293523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221325117,1.597027495,1.222537409,-1.222537409,1,0.32108748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822308732,145.316579,0.822308732,34.68342099,0,0.989195587,0,0,0,12,4,0% +2018-12-09 13:00:00,115.5061268,100.0142259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015962219,1.74557754,1.814900212,-1.814900212,1,0.219787474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671930903,132.2162683,0.671930903,47.78373172,0,0.975587587,0,0,0,12,5,0% +2018-12-09 14:00:00,104.0348021,108.2114667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815749834,1.888646382,3.143268512,-3.143268512,1,0,#DIV/0!,0,0,0.007322864,1,0.308014967,0,0.923109842,0.961871805,0.724496596,1,0,0,0.001247989,0.312029739,0.996467219,0.720963815,0.961238037,0.922476074,0,0,0,0,0,0,-0.488600395,119.248631,0.488600395,60.75136899,0,0.947666886,0,0,0,12,6,0% +2018-12-09 15:00:00,93.10301344,116.7646509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624954128,2.037927608,12.63579501,-12.63579501,1,0,#DIV/0!,0,0,0.619872246,1,0.078975647,0,0.953527492,0.992289456,0.724496596,1,0,0,0.081911055,0.312029739,0.794110774,0.51860737,0.961238037,0.922476074,0,0,0,0,0,0,-0.284805988,106.5472519,0.284805988,73.45274808,0,0.874441894,0,0,0,12,7,0% +2018-12-09 16:00:00,82.88682566,126.2121358,61.95522222,302.1069268,24.54542847,24.27233787,0,24.27233787,23.80529323,0.467044635,37.62790938,21.86601322,15.76189615,0.740135231,15.02176092,1.446648014,2.202817325,-4.456440214,4.456440214,0.70775015,0.70775015,0.396180138,0.384627013,12.37092689,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88255334,0.536225456,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.278660962,11.89140548,23.1612143,12.42763093,0,21.86601322,-0.072378391,94.15060563,0.072378391,85.84939437,0,0,23.1612143,12.42763093,31.29485019,12,8,35% +2018-12-09 17:00:00,74.09909467,137.0413055,215.7323103,604.5051157,50.11337475,128.297684,78.0691311,50.22855288,48.6022716,1.62628128,53.81789943,0,53.81789943,1.511103147,52.30679628,1.293273175,2.391821992,-1.369260199,1.369260199,0.764310974,0.764310974,0.232294248,1.332022237,42.84241394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.71835214,1.094789086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965045576,41.18175787,47.68339772,42.27654696,78.0691311,0,0.129145526,82.57978167,-0.129145526,97.42021833,0.662839859,0,99.43072958,42.27654696,127.099884,12,9,28% +2018-12-09 18:00:00,67.03876656,149.6280077,346.1897081,725.8015489,63.04855655,288.6713256,224.9141914,63.7571342,61.14740994,2.609724251,85.83884937,0,85.83884937,1.901146604,83.93770277,1.170047203,2.611501388,-0.424942885,0.424942885,0.602823203,0.602823203,0.182121406,1.761975161,56.67117793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.77721629,1.377374243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.276545006,54.47449182,60.0537613,55.85186607,224.9141914,0,0.309883868,71.94776802,-0.309883868,108.052232,0.888649232,0,259.9235848,55.85186607,296.4775141,12,10,14% +2018-12-09 19:00:00,62.3755045,164.0136759,430.5469993,777.885125,69.8612159,426.4334489,355.4331613,71.00028762,67.75464248,3.245645144,106.4976781,0,106.4976781,2.10657342,104.3911047,1.088657926,2.862578663,0.133747982,-0.133747982,0.507281438,0.507281438,0.162261532,1.905942491,61.30166216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.12833952,1.526205272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.380848847,58.92548939,66.50918837,60.45169466,355.4331613,0,0.45692243,62.81130489,-0.45692243,117.1886951,0.940572236,0,400.8197515,60.45169466,440.3841766,12,11,10% +2018-12-09 20:00:00,60.68890182,179.6144547,460.4049694,793.1966576,72.09446524,517.6935247,444.3022465,73.39127825,69.92055112,3.470727135,113.8044293,0,113.8044293,2.173914127,111.6305152,1.059221156,3.134863619,0.597919754,-0.597919754,0.42790339,0.42790339,0.156589242,1.796058131,57.76740341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21029329,1.574993385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301238002,55.52822545,68.51153129,57.10321883,444.3022465,0,0.56014135,55.93442641,-0.56014135,124.0655736,0.960736817,0,495.3690572,57.10321883,532.7419719,12,12,8% +2018-12-09 21:00:00,62.2281365,195.245381,433.1714288,779.2875098,70.06070781,548.518738,477.3051898,71.21354818,67.94811898,3.265429203,107.1400168,0,107.1400168,2.112588837,105.027428,1.086085869,3.407674748,1.09583244,-1.09583244,0.342755305,0.342755305,0.161738986,1.466365135,47.16334334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.31431649,1.530563421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062376549,45.33519956,66.37669304,46.86576299,477.3051898,0,0.612489208,52.23029263,-0.612489208,127.7697074,0.968365909,0,528.5827669,46.86576299,559.2554714,12,13,6% +2018-12-09 22:00:00,66.76483971,209.7044156,351.2055058,729.3345076,63.47875797,509.4135451,445.2013704,64.21217465,61.5646392,2.647535453,87.06795976,0,87.06795976,1.914118764,85.153841,1.165266277,3.660032508,1.776543151,-1.776543151,0.226346918,0.226346918,0.180745338,0.969477461,31.18172769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.17827293,1.386772529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70238312,29.97306271,59.88065605,31.35983524,445.2013704,0,0.610421371,52.38002289,-0.610421371,127.6199771,0.968089369,0,490.8753696,31.35983524,511.3997546,12,14,4% +2018-12-09 23:00:00,73.72883085,222.3748916,222.5747133,612.7094358,50.90351299,390.5972253,339.5507789,51.04644646,49.36858426,1.677862205,55.50074484,0,55.50074484,1.534928731,53.96581611,1.286810852,3.881174033,3.035554678,-3.035554678,0.011043267,0.011043267,0.228703037,0.398023606,12.80180735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.45496102,1.11205064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288366747,12.30558417,47.74332776,13.41763481,339.5507789,0,0.554179125,56.34580647,-0.554179125,123.6541935,0.959776464,0,373.6361738,13.41763481,382.4177474,12,15,2% +2018-12-09 00:00:00,82.45210252,233.274936,68.70748864,323.3603323,26.23250404,170.8723247,144.9128813,25.95944332,25.44149725,0.517946072,17.44993287,0,17.44993287,0.791006784,16.65892609,1.439060664,4.071415696,7.227733262,-7.227733262,0,0,0.38179978,0.197751696,6.360374313,0.413785935,1,0.137483146,0,0.946869552,0.985631515,0.724496596,1,24.66788136,0.573081723,0.059174494,0.312029739,0.845936633,0.570433229,0.961238037,0.922476074,0.13534772,6.113833718,24.80322908,6.686915441,84.9499692,0,0.448146748,63.37515674,-0.448146748,116.6248433,0.938429403,0,104.522778,6.686915441,108.8992304,12,16,4% +2018-12-09 01:00:00,92.61458761,242.7706791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616429489,4.237147678,-21.72458962,21.72458962,1,0,#DIV/0!,0,0,1,0.691859924,0,0.04599832,0.961238037,1,0.602348544,0.877851949,0,0,0.115824807,0.173535884,0.724496596,0.448993192,0.981138989,0.942377026,0,0,0,0,0,0,0.296081749,72.77758486,-0.296081749,107.2224151,0.88112772,0,0,0,0,12,17,0% +2018-12-09 02:00:00,103.5151839,251.3461099,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806680784,4.386817181,-4.159294133,4.159294133,1,0.758565123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112848131,83.52047598,-0.112848131,96.47952402,0.606926643,0,0,0,0,12,18,0% +2018-12-09 03:00:00,114.9681822,259.5352248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006573314,4.529744198,-2.117948213,2.117948213,1,0.892344165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090886264,95.21459525,0.090886264,84.78540475,0,0.499861863,0,0,0,12,19,0% +2018-12-09 04:00:00,126.7285239,267.9954694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211829998,4.677403322,-1.274648164,1.274648164,1,0.748131363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301247093,107.5325218,0.301247093,72.46747821,0,0.884023294,0,0,0,12,20,0% +2018-12-09 05:00:00,138.5431956,277.7750183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418034919,4.84808865,-0.781602601,0.781602601,1,0.663815606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50391019,120.259035,0.50391019,59.74096496,0,0.95077597,0,0,0,12,21,0% +2018-12-09 06:00:00,150.0084917,291.1221775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618142086,5.081040522,-0.434774239,0.434774239,1,0.604504463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685076972,133.2416608,0.685076972,46.75833915,0,0.9770155,0,0,0,12,22,0% +2018-12-09 07:00:00,160.0547962,314.1253787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793483177,5.482522123,-0.158365319,0.158365319,1,0.557235754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832413864,146.3475046,0.832413864,33.6524954,0,0.989933725,0,0,0,12,23,0% +2018-12-10 08:00:00,165.0577071,358.4940502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880800444,6.256901524,0.08465281,-0.08465281,1,0.515677206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935891818,159.3727052,0.935891818,20.62729476,0,0.996575022,0,0,0,12,0,0% +2018-12-10 09:00:00,160.5312017,44.05579891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801798021,0.768918746,0.317879702,-0.317879702,1,0.475793059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988468861,171.2905257,0.988468861,8.709474283,0,0.999416717,0,0,0,12,1,0% +2018-12-10 10:00:00,150.6365418,67.95489047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629103628,1.186036582,0.562272702,-0.562272702,1,0.433999395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986569302,170.598997,0.986569302,9.401002989,0,0.999319323,0,0,0,12,2,0% +2018-12-10 11:00:00,139.2141704,81.62954703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429745638,1.424704363,0.845034414,-0.845034414,1,0.385644294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930327,158.4858457,0.930327,21.51415429,0,0.996255456,0,0,0,12,3,0% +2018-12-10 12:00:00,127.4093599,91.53486583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223712828,1.597584789,1.216231905,-1.216231905,1,0.322165784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823576175,145.4444016,0.823576175,34.55559835,0,0.989289162,0,0,0,12,4,0% +2018-12-10 13:00:00,115.6433945,100.038351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018357992,1.745998603,1.803329229,-1.803329229,1,0.221766229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67359036,132.344779,0.67359036,47.65522102,0,0.975770909,0,0,0,12,5,0% +2018-12-10 14:00:00,104.1729066,108.2260119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818160211,1.888900244,3.110751089,-3.110751089,1,0,#DIV/0!,0,0,0.001812785,1,0.311031997,0,0.922633883,0.961395846,0.724496596,1,0,0,0.000309741,0.312029739,0.99912206,0.723618656,0.961238037,0.922476074,0,0,0,0,0,0,-0.490587203,119.379184,0.490587203,60.62081596,0,0.94808132,0,0,0,12,6,0% +2018-12-10 15:00:00,93.24165002,116.7674345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627373793,2.037976191,12.09368956,-12.09368956,1,0,#DIV/0!,0,0,0.605987264,1,0.082500068,0,0.953148928,0.991910891,0.724496596,1,0,0,0.08048911,0.312029739,0.797231055,0.521727651,0.961238037,0.922476074,0,0,0,0,0,0,-0.287032787,106.6803964,0.287032787,73.31960358,0,0.875803872,0,0,0,12,7,0% +2018-12-10 16:00:00,83.02270675,126.1996381,59.93970071,295.9913918,23.98385621,23.71250523,0,23.71250523,23.26065445,0.451850783,37.36889889,22.11262274,15.25627615,0.723201756,14.53307439,1.449019587,2.202599199,-4.545599104,4.545599104,0.692503082,0.692503082,0.400133066,0.368503637,11.8523437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.35902582,0.52395721,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.266979631,11.39292359,22.62600545,11.9168808,0,22.11262274,-0.074706979,94.28438621,0.074706979,85.71561379,0,0,22.62600545,11.9168808,30.4253656,12,8,34% +2018-12-10 17:00:00,74.23325971,137.0083337,213.3533857,602.1135643,49.74609944,126.1837438,76.32932486,49.85441894,48.246071,1.608347942,53.23002693,0,53.23002693,1.500028442,51.72999849,1.295614796,2.391246526,-1.383406045,1.383406045,0.766730056,0.766730056,0.233162925,1.320646596,42.47653423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.37595857,1.0867655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956803963,40.83006037,47.33276253,41.91682587,76.32932486,0,0.126768984,82.71707612,-0.126768984,97.28292388,0.655581757,0,97.37287542,41.91682587,124.8065996,12,9,28% +2018-12-10 18:00:00,67.16533386,149.5684001,343.9819519,724.6940148,62.7475701,286.3616882,222.9131076,63.4485806,60.85549934,2.593081252,85.29447748,0,85.29447748,1.892070752,83.40240673,1.172256219,2.610461038,-0.430000017,0.430000017,0.603688023,0.603688023,0.182415297,1.75287467,56.37847487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.49662072,1.370798819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269951732,54.1931345,59.76657245,55.56393332,222.9131076,0,0.307596176,72.08557556,-0.307596176,107.9144244,0.887449214,0,257.5906347,55.56393332,293.9561177,12,10,14% +2018-12-10 19:00:00,62.48765768,163.9231693,428.6651002,777.3037992,69.59763418,424.2758674,353.5454001,70.73046732,67.49900873,3.231458594,106.0334419,0,106.0334419,2.098625459,103.9348165,1.090615368,2.860999024,0.131362059,-0.131362059,0.507689455,0.507689455,0.162358993,1.898871312,61.07422872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.88261464,1.520447001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375725802,58.70687172,66.25834044,60.22731872,353.5454001,0,0.454835549,62.94564635,-0.454835549,117.0543537,0.940070158,0,398.6158206,60.22731872,438.0333962,12,11,10% +2018-12-10 20:00:00,60.77928597,179.4952495,458.934013,792.893219,71.86319684,515.8690327,442.713138,73.15589475,69.6962563,3.459638444,113.4408053,0,113.4408053,2.166940532,111.2738648,1.060798657,3.132783095,0.596630601,-0.596630601,0.428123848,0.428123848,0.15658721,1.790959126,57.60340187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99469259,1.569941039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29754379,55.37058093,68.29223638,56.94052196,442.713138,0,0.558351525,56.0581288,-0.558351525,123.9418712,0.960450679,0,493.4963703,56.94052196,530.7628031,12,12,8% +2018-12-10 21:00:00,62.29176013,195.1074723,432.156241,779.1762805,69.86313535,547.1470478,476.1327675,71.01428034,67.75650405,3.257776288,106.8879153,0,106.8879153,2.106631298,104.781284,1.087196311,3.405267787,1.095044171,-1.095044171,0.342890107,0.342890107,0.161661753,1.463131328,47.05933299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.13012894,1.526247204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.060033667,45.23522086,66.19016261,46.76146807,476.1327675,0,0.611071948,52.3329478,-0.611071948,127.6670522,0.968176575,0,527.1707545,46.76146807,557.7752001,12,13,6% +2018-12-10 22:00:00,66.80113845,209.560103,350.6535649,729.4136365,63.32028534,508.578366,444.5240462,64.0543198,61.41094511,2.643374689,86.92935677,0,86.92935677,1.90934023,85.02001654,1.16589981,3.657513778,1.775846033,-1.775846033,0.226466132,0.226466132,0.180577903,0.967869675,31.13001579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.03053632,1.383310497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701218285,29.92335526,59.7317546,31.30666576,444.5240462,0,0.609426564,52.45194866,-0.609426564,127.5480513,0.96795566,0,490.0113212,31.30666576,510.5009078,12,14,4% +2018-12-10 23:00:00,73.74088444,222.232359,222.4515238,613.0850542,50.79889674,390.3648428,339.4207867,50.94405612,49.26712257,1.676933551,55.46772157,0,55.46772157,1.531774165,53.93594741,1.287021227,3.87868637,3.033966223,-3.033966223,0.011314908,0.011314908,0.228359401,0.397584919,12.7876977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.35743218,1.109765168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288048921,12.29202143,47.6454811,13.4017866,339.4207867,0,0.553627567,56.38376308,-0.553627567,123.6162369,0.959686578,0,373.3830544,13.4017866,382.1542557,12,15,2% +2018-12-10 00:00:00,82.44458603,233.1367427,68.88877938,324.4116925,26.23350375,171.3069857,145.3452061,25.96177953,25.44246682,0.519312718,17.49391906,0,17.49391906,0.791036929,16.70288213,1.438929477,4.069003768,7.215204732,-7.215204732,0,0,0.380809531,0.197759232,6.360616704,0.413048744,1,0.137718868,0,0.946841134,0.985603098,0.724496596,1,24.66882545,0.573103562,0.05908641,0.312029739,0.846145416,0.570642012,0.961238037,0.922476074,0.135354002,6.114066714,24.80417945,6.687170276,85.31055128,0,0.448027027,63.38282965,-0.448027027,116.6171703,0.93839959,0,104.8595658,6.687170276,109.236185,12,16,4% +2018-12-10 01:00:00,92.59179152,242.6353625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616031622,4.234785957,-21.9093058,21.9093058,1,0,#DIV/0!,0,0,1,0.694830332,0,0.04561105,0.961238037,1,0.603307398,0.878810802,0,0,0.115824807,0.174619783,0.724496596,0.448993192,0.980999399,0.942237436,0,0,0,0,0,0,0.296358878,72.76096048,-0.296358878,107.2390395,0.881285634,0,0,0,0,12,17,0% +2018-12-10 02:00:00,103.4812423,251.2096863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806088392,4.38443614,-4.170385717,4.170385717,1,0.75666835,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113454361,83.485517,-0.113454361,96.514483,0.609294156,0,0,0,0,12,18,0% +2018-12-10 03:00:00,114.9267611,259.3914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005850379,4.527235066,-2.12284335,2.12284335,1,0.893181283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090039509,95.16588001,0.090039509,84.83411999,0,0.494688219,0,0,0,12,19,0% +2018-12-10 04:00:00,126.6834616,267.8346016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211043512,4.674595649,-1.277901317,1.277901317,1,0.748687685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300264782,107.4735072,0.300264782,72.52649279,0,0.883480305,0,0,0,12,20,0% +2018-12-10 05:00:00,138.499676,277.5797496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417275359,4.844680567,-0.784200453,0.784200453,1,0.664259865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502906473,120.1924777,0.502906473,59.80752225,0,0.950577935,0,0,0,12,21,0% +2018-12-10 06:00:00,149.976176,290.8574016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617578071,5.076419311,-0.437092554,0.437092554,1,0.604900919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684167339,133.1701582,0.684167339,46.82984179,0,0.976918464,0,0,0,12,22,0% +2018-12-10 07:00:00,160.0576741,313.7263143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793533406,5.475557134,-0.160610425,0.160610425,1,0.55761969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831707209,146.2745111,0.831707209,33.7254889,0,0.98988269,0,0,0,12,23,0% +2018-12-11 08:00:00,165.140992,358.0759512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.882254041,6.249604321,0.082320786,-0.082320786,1,0.516076006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935482954,159.3063101,0.935482954,20.69368987,0,0.996551672,0,0,0,12,0,0% +2018-12-11 09:00:00,160.6628252,43.9546745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804095285,0.767153792,0.315286228,-0.315286228,1,0.476236569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988432004,171.2765906,0.988432004,8.723409383,0,0.999414831,0,0,0,12,1,0% +2018-12-11 10:00:00,150.7721766,67.96283378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631470901,1.186175218,0.559164945,-0.559164945,1,0.434530852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986952959,170.7345405,0.986952959,9.265459463,0,0.999339024,0,0,0,12,2,0% +2018-12-11 11:00:00,139.3487203,81.65459484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432093978,1.425141529,0.840954582,-0.840954582,1,0.386341986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93115063,158.6148934,0.93115063,21.38510656,0,0.996302995,0,0,0,12,3,0% +2018-12-11 12:00:00,127.5435032,91.55793749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22605407,1.597987466,1.210156564,-1.210156564,1,0.323204729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82482884,145.5711422,0.82482884,34.4288578,0,0.989381363,0,0,0,12,4,0% +2018-12-11 13:00:00,115.7778257,100.0547038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020704259,1.746284014,1.792241077,-1.792241077,1,0.223662415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675231461,132.4721271,0.675231461,47.52787291,0,0.975951318,0,0,0,12,5,0% +2018-12-11 14:00:00,104.3077988,108.2334686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820514525,1.889030388,3.07987014,-3.07987014,1,0.003464876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49254926,119.5082752,0.49254926,60.49172483,0,0.948487311,0,0,0,12,6,0% +2018-12-11 15:00:00,93.37653139,116.7636011,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629727917,2.037909285,11.61035849,-11.61035849,1,0,#DIV/0!,0,0,0.592723525,1,0.085917946,0,0.952779029,0.991540992,0.724496596,1,0,0,0.079116924,0.312029739,0.800257469,0.524754065,0.961238037,0.922476074,0,0,0,0,0,0,-0.289226059,106.811627,0.289226059,73.18837299,0,0.877124845,0,0,0,12,7,0% +2018-12-11 16:00:00,83.15414405,126.1809426,58.00755397,290.0259768,23.43685264,23.16743051,0,23.16743051,22.73014506,0.437285444,37.10086634,22.32955571,14.77131063,0.70670758,14.06460305,1.4513136,2.202272903,-4.635991413,4.635991413,0.677045087,0.677045087,0.404031045,0.353120633,11.3575734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.84908002,0.512007236,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.255834696,10.91733155,22.10491471,11.42933879,0,22.32955571,-0.076991571,94.41566191,0.076991571,85.58433809,0,0,22.10491471,11.42933879,29.58518837,12,8,34% +2018-12-11 17:00:00,74.36217517,136.9697153,211.0718806,599.8121707,49.38914452,124.1363943,74.6453657,49.49102858,47.89987959,1.591148993,52.6660861,0,52.6660861,1.489264934,51.17682117,1.297864796,2.390572508,-1.397621189,1.397621189,0.769160989,0.769160989,0.233992062,1.309794845,42.1275046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.04318622,1.078967375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.948941906,40.49455982,46.99212813,41.5735272,74.6453657,0,0.124447901,82.85112611,-0.124447901,97.14887389,0.648225446,0,95.37915357,41.5735272,122.5881957,12,9,29% +2018-12-11 18:00:00,67.28578823,149.5040511,341.8847446,723.6561012,62.45589814,284.1369704,220.9870764,63.14989399,60.57262237,2.577271618,84.77719031,0,84.77719031,1.883275767,82.89391454,1.174358544,2.609337937,-0.43517862,0.43517862,0.604573617,0.604573617,0.182681149,1.744324654,56.10347695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.22470862,1.364426882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263757274,53.92879605,59.48846589,55.29322293,220.9870764,0,0.305375821,72.21922435,-0.305375821,107.7807756,0.886267325,0,255.342091,55.29322293,291.5303996,12,10,14% +2018-12-11 19:00:00,62.59293422,163.829357,426.9041105,776.7840213,69.34322644,422.2194543,351.7489985,70.47045583,67.25227232,3.21818351,105.5987982,0,105.5987982,2.090954127,103.5078441,1.092452791,2.859361692,0.128802721,-0.128802721,0.508127127,0.508127127,0.162432792,1.892367245,60.86503556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64544222,1.514889147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371013627,58.50578729,66.01645584,60.02067644,351.7489985,0,0.452827284,63.07477524,-0.452827284,116.9252248,0.939582625,0,396.5137032,60.02067644,435.7960355,12,11,10% +2018-12-11 20:00:00,60.86231207,179.3746344,457.5913201,792.6514803,71.64136896,514.1602605,441.2296265,72.93063402,69.48111736,3.449516658,113.108565,0,113.108565,2.160251603,110.9483134,1.062247736,3.130677965,0.595103969,-0.595103969,0.428384917,0.428384917,0.156561905,1.786429008,57.4576977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.78789285,1.565094932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294261735,55.23052454,68.08215458,56.79561947,441.2296265,0,0.556650227,56.17554629,-0.556650227,123.8244537,0.960176988,0,491.7406884,56.79561947,528.9122854,12,12,8% +2018-12-11 21:00:00,62.34793209,194.9701219,431.2731931,779.1352398,69.67560357,545.9042975,475.0785509,70.82574654,67.57462704,3.2511195,106.6681553,0,106.6681553,2.100976523,104.5671788,1.088176697,3.40287057,1.093910902,-1.093910902,0.343083908,0.343083908,0.161557928,1.460448105,46.97303131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95530184,1.522150339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05808968,45.1522644,66.01339152,46.67441474,475.0785509,0,0.609751076,52.42849368,-0.609751076,127.5715063,0.967999325,0,525.889108,46.67441474,556.4365789,12,13,6% +2018-12-11 22:00:00,66.83022756,209.4179837,350.2334436,729.5852542,63.1730575,507.8853569,443.9769926,63.90836437,61.26815673,2.640207637,86.82305403,0,86.82305403,1.904900767,84.91815327,1.166407511,3.655033328,1.774574202,-1.774574202,0.226683628,0.226683628,0.180374144,0.966764584,31.09447225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.8932827,1.380094121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70041765,29.88918946,59.59370035,31.26928358,443.9769926,0,0.608533396,52.51646665,-0.608533396,127.4835333,0.967835241,0,489.2902798,31.26928358,509.7554006,12,14,4% +2018-12-11 23:00:00,73.74616387,222.0931971,222.4536053,613.6092389,50.70849561,390.2926591,339.4362624,50.85639662,49.17944738,1.676949241,55.46550032,0,55.46550032,1.529048237,53.93645208,1.28711337,3.876257535,3.031116449,-3.031116449,0.011802248,0.011802248,0.227950882,0.397542279,12.78632624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.27315545,1.107790243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288018028,12.29070313,47.56117348,13.39849337,339.4362624,0,0.553179843,56.41456182,-0.553179843,123.5854382,0.959613482,0,373.2887871,13.39849337,382.057833,12,15,2% +2018-12-11 00:00:00,82.43083161,233.0027496,69.16854932,325.7641043,26.25792907,171.9329624,145.945385,25.98757737,25.46615562,0.521421742,17.56248903,0,17.56248903,0.791773443,16.77071559,1.438689417,4.066665146,7.196815073,-7.196815073,0,0,0.379622376,0.197943361,6.366538906,0.411963314,1,0.138066325,0,0.946799223,0.985561187,0.724496596,1,24.69179807,0.573637164,0.058956621,0.312029739,0.846453163,0.570949759,0.961238037,0.922476074,0.13548175,6.11975936,24.82727983,6.693396524,85.82124051,0,0.448009413,63.38395852,-0.448009413,116.6160415,0.938395202,0,105.3615201,6.693396524,109.7422143,12,16,4% +2018-12-11 01:00:00,92.56311518,242.5049038,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615531126,4.232509024,-22.14818431,22.14818431,1,0,#DIV/0!,0,0,1,0.698587849,0,0.045119785,0.961238037,1,0.604525446,0.88002885,0,0,0.115824807,0.175996751,0.724496596,0.448993192,0.980821689,0.942059726,0,0,0,0,0,0,0.296735747,72.73835042,-0.296735747,107.2616496,0.88149991,0,0,0,0,12,17,0% +2018-12-11 02:00:00,103.4417811,251.0787683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805399665,4.382151189,-4.183282797,4.183282797,1,0.75446282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114153775,83.44518152,-0.114153775,96.55481848,0.611994335,0,0,0,0,12,18,0% +2018-12-11 03:00:00,114.8800648,259.253988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005035375,4.52483569,-2.128216184,2.128216184,1,0.894100092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08910846,95.11231954,0.08910846,84.88768046,0,0.488886051,0,0,0,12,19,0% +2018-12-11 04:00:00,126.6332044,267.6811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210166358,4.671916541,-1.281342722,1.281342722,1,0.7492762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299208782,107.4100869,0.299208782,72.58991306,0,0.882892605,0,0,0,12,20,0% +2018-12-11 05:00:00,138.4507805,277.3934142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416421973,4.841428401,-0.786880253,0.786880253,1,0.664718138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501840655,120.1218516,0.501840655,59.87814836,0,0.950366781,0,0,0,12,21,0% +2018-12-11 06:00:00,149.9378212,290.6036404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616908654,5.071990344,-0.439440889,0.439440889,1,0.605302508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683207373,133.0947898,0.683207373,46.90521024,0,0.976815778,0,0,0,12,22,0% +2018-12-11 07:00:00,160.0529906,313.3379354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793451664,5.468778644,-0.162853586,0.162853586,1,0.558003293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830961358,146.1976197,0.830961358,33.80238025,0,0.98982873,0,0,0,12,23,0% +2018-12-12 08:00:00,165.2159641,357.6492597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88356255,6.24215715,0.080015696,-0.080015696,1,0.5164702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935044633,159.2353569,0.935044633,20.76464307,0,0.996526617,0,0,0,12,0,0% +2018-12-12 09:00:00,160.7891164,43.83551245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806299483,0.765074022,0.312744835,-0.312744835,1,0.476671173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988373354,171.254462,0.988373354,8.745538022,0,0.999411829,0,0,0,12,1,0% +2018-12-12 10:00:00,150.9042771,67.95696168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63377649,1.186072731,0.556141342,-0.556141342,1,0.435047919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987319889,170.8660395,0.987319889,9.133960523,0,0.999357852,0,0,0,12,2,0% +2018-12-12 11:00:00,139.4803796,81.66892367,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434391865,1.425391615,0.837009272,-0.837009272,1,0.387016674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931959649,158.7423784,0.931959649,21.25762162,0,0.996349609,0,0,0,12,3,0% +2018-12-12 12:00:00,127.6748703,91.57212191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228346859,1.59823503,1.204313102,-1.204313102,1,0.32420402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826065912,145.6967077,0.826065912,34.30329233,0,0.989472142,0,0,0,12,4,0% +2018-12-12 13:00:00,115.9093047,100.0632795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022999,1.746433688,1.781634184,-1.781634184,1,0.2254763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676852959,132.598209,0.676852959,47.40179104,0,0.976128712,0,0,0,12,5,0% +2018-12-12 14:00:00,104.4393626,108.2338514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822810747,1.889037069,3.05058483,-3.05058483,1,0.008472959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494484951,119.6357932,0.494484951,60.36420684,0,0.948884688,0,0,0,12,6,0% +2018-12-12 15:00:00,93.50754315,116.7531841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632014503,2.037727474,11.17783054,-11.17783054,1,0,#DIV/0!,0,0,0.580073287,1,0.089225263,0,0.952418496,0.991180459,0.724496596,1,0,0,0.077795402,0.312029739,0.803186361,0.527682957,0.961238037,0.922476074,0,0,0,0,0,0,-0.291383921,106.9408275,0.291383921,73.05917245,0,0.878405082,0,0,0,12,7,0% +2018-12-12 16:00:00,83.28103389,126.1561026,56.15925084,284.2232986,22.90526956,22.63794332,0,22.63794332,22.21459117,0.423352155,36.82621007,22.51907113,14.30713894,0.690678389,13.61646056,1.453528246,2.201839361,-4.7274316,4.7274316,0.661407894,0.661407894,0.407862805,0.338473019,10.8864558,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.35351,0.500394141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.24522255,10.4644754,21.59873255,10.96486954,0,22.51907113,-0.079230208,94.54431946,0.079230208,85.45568054,0,0,21.59873255,10.96486954,28.77502037,12,8,33% +2018-12-12 17:00:00,74.48574329,136.9255232,208.8895619,597.606504,49.04288299,122.1569158,73.01815894,49.13875687,47.56405911,1.574697753,52.12651658,0,52.12651658,1.478823871,50.64769271,1.300021466,2.389801209,-1.411879984,1.411879984,0.771599387,0.771599387,0.234779003,1.29947689,41.79564371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.72038281,1.07140286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.941466583,40.17556251,46.66184939,41.24696537,73.01815894,0,0.122184344,82.98181588,-0.122184344,97.01818412,0.640782271,0,93.45059107,41.24696537,120.445905,12,9,29% +2018-12-12 18:00:00,67.40004664,149.4350506,339.8998287,722.6906114,62.17375015,281.9990055,219.1377148,62.86129067,60.29898219,2.562308483,84.28741665,0,84.28741665,1.874767964,82.41264869,1.17635273,2.608133651,-0.440471112,0.440471112,0.605478686,0.605478686,0.182917863,1.736332154,55.84641066,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.96167526,1.358263008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257966735,53.68169415,59.219642,55.03995716,219.1377148,0,0.303224798,72.34860465,-0.303224798,107.6513953,0.885105835,0,253.179712,55.03995716,289.2022632,12,10,14% +2018-12-12 19:00:00,62.69127051,163.7323392,425.2654783,776.327473,69.09812722,420.2660078,350.0456133,70.22039455,67.01456374,3.205830808,105.1941022,0,105.1941022,2.083563481,103.1105388,1.094169083,2.85766841,0.126073178,-0.126073178,0.508593906,0.508593906,0.162482333,1.886434962,60.67423295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41694769,1.509534649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.366715708,58.32238057,65.7836634,59.83191522,350.0456133,0,0.450899428,63.19859505,-0.450899428,116.801405,0.939110527,0,394.5151837,59.83191522,433.6739755,12,11,10% +2018-12-12 20:00:00,60.93793786,179.2527125,456.3779253,792.4725477,71.42906476,512.5687096,439.8531251,72.71558449,69.27521491,3.440369576,112.8079616,0,112.8079616,2.153849848,110.6541117,1.063567655,3.128550027,0.593341672,-0.593341672,0.428686288,0.428686288,0.156512971,1.78247025,57.33037044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58997159,1.560456883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291393628,55.10813274,67.88136522,56.66858962,439.8531251,0,0.555038943,56.2866029,-0.555038943,123.7133971,0.959916231,0,490.1035191,56.66858962,527.1919777,12,12,8% +2018-12-12 21:00:00,62.39663146,194.8334333,430.522847,779.1651038,69.49814844,544.7915258,474.1435398,70.64798592,67.40252285,3.245463074,106.4808743,0,106.4808743,2.095625596,104.3852487,1.089026661,3.400484905,1.092434292,-1.092434292,0.343336423,0.343336423,0.161427318,1.458315933,46.90445333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.78986874,1.518273611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056544929,45.08634464,65.84641367,46.60461825,474.1435398,0,0.608527689,52.51687875,-0.608527689,127.4831213,0.96783447,0,524.7388753,46.60461825,555.2406659,12,13,6% +2018-12-12 22:00:00,66.85210713,209.2781627,349.9452223,729.8496561,63.03705471,507.3349576,443.5606677,63.77428983,61.13625493,2.638034903,86.74907045,0,86.74907045,1.900799782,84.84827067,1.166789381,3.652592992,1.772730712,-1.772730712,0.226998884,0.226998884,0.180134063,0.966161066,31.07506104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.76649367,1.377122971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.699980403,29.87053067,59.46647407,31.24765364,443.5606677,0,0.607742518,52.5735493,-0.607742518,127.4264507,0.967728317,0,488.7126924,31.24765364,509.1636567,12,14,4% +2018-12-12 23:00:00,73.74468966,221.957512,222.5806234,614.2814463,50.63219375,390.3803317,339.5969786,50.78335306,49.1054463,1.677906758,55.49399655,0,55.49399655,1.526747455,53.96724909,1.28708764,3.873889383,3.027016378,-3.027016378,0.012503402,0.012503402,0.227477994,0.397894022,12.7976395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.2020228,1.106123334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288272864,12.30157787,47.49029566,13.4077012,339.5969786,0,0.552836132,56.43819812,-0.552836132,123.5618019,0.959557286,0,373.3530509,13.4077012,382.1281232,12,15,2% +2018-12-12 00:00:00,82.41087773,232.8730631,69.54653653,327.4150702,26.30541645,172.7490916,146.7126093,26.03648225,25.51221108,0.524271169,17.65556833,0,17.65556833,0.793205363,16.86236296,1.438341156,4.064401691,7.172685886,-7.172685886,0,0,0.378241934,0.198301341,6.378052771,0.41053301,1,0.138524876,0,0.94674387,0.985505833,0.724496596,1,24.73645535,0.574674585,0.058785422,0.312029739,0.846859304,0.5713559,0.961238037,0.922476074,0.135729165,6.130826925,24.87218452,6.70550151,86.48224017,0,0.448093636,63.37856074,-0.448093636,116.6214393,0.938416179,0,106.0285179,6.70550151,110.4171345,12,16,4% +2018-12-12 01:00:00,92.52861578,242.3794101,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614928998,4.230318744,-22.44424249,22.44424249,1,0,#DIV/0!,0,0,1,0.703118315,0,0.044525409,0.961238037,1,0.606001699,0.881505103,0,0,0.115824807,0.177665722,0.724496596,0.448993192,0.980605725,0.941843762,0,0,0,0,0,0,0.29721164,72.70979554,-0.29721164,107.2902045,0.881769711,0,0,0,0,12,17,0% +2018-12-12 02:00:00,103.3968733,250.9534652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804615875,4.379964237,-4.197995636,4.197995636,1,0.751946776,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114945293,83.39953037,-0.114945293,96.60046963,0.615010461,0,0,0,0,12,18,0% +2018-12-12 03:00:00,114.8281805,259.1229189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004129824,4.522548103,-2.134064963,2.134064963,1,0.895100292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088094463,95.05399241,0.088094463,84.94600759,0,0.482427441,0,0,0,12,19,0% +2018-12-12 04:00:00,126.577853,267.5350981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209200294,4.669368326,-1.284970061,1.284970061,1,0.749896512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298080595,107.3423557,0.298080595,72.65764435,0,0.882260131,0,0,0,12,20,0% +2018-12-12 05:00:00,138.3966234,277.2161871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415476752,4.838335205,-0.789639847,0.789639847,1,0.665190056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500714272,120.0472671,0.500714272,59.95273289,0,0.950142651,0,0,0,12,21,0% +2018-12-12 06:00:00,149.893553,290.3611902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616136028,5.067758789,-0.441817256,0.441817256,1,0.60570889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682198523,133.0156832,0.682198523,46.98431682,0,0.976707552,0,0,0,12,22,0% +2018-12-12 07:00:00,160.0408521,312.9609726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793239807,5.462199402,-0.165092916,0.165092916,1,0.558386241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830177556,146.1169816,0.830177556,33.88301841,0,0.98977192,0,0,0,12,23,0% +2018-12-13 08:00:00,165.2825502,357.2149743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884724697,6.23457744,0.077739397,-0.077739397,1,0.51685947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934577789,159.1600405,0.934577789,20.83995947,0,0.996499906,0,0,0,12,0,0% +2018-12-13 09:00:00,160.9099414,43.69825786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.808408276,0.762678477,0.310257407,-0.310257407,1,0.477096548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988293457,171.2244055,0.988293457,8.775594485,0,0.99940774,0,0,0,12,1,0% +2018-12-13 10:00:00,151.0327275,67.93717191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636018373,1.185727334,0.553203845,-0.553203845,1,0.43555026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987670191,170.9933549,0.987670191,9.006645053,0,0.999375813,0,0,0,12,2,0% +2018-12-13 11:00:00,139.6090356,81.67247875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436637337,1.425453662,0.833200471,-0.833200471,1,0.387668017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932753684,158.8682152,0.932753684,21.13178475,0,0.99639528,0,0,0,12,3,0% +2018-12-13 12:00:00,127.8033477,91.57739618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230589213,1.598327084,1.198703131,-1.198703131,1,0.325163381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827286557,145.8210025,0.827286557,34.17899755,0,0.98956145,0,0,0,12,4,0% +2018-12-13 13:00:00,116.0377168,100.0640775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025240214,1.746447616,1.771506925,-1.771506925,1,0.227208163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6784536,132.7229198,0.6784536,47.27708024,0,0.976302993,0,0,0,12,5,0% +2018-12-13 14:00:00,104.5674834,108.2271784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825046877,1.888920604,3.022856437,-3.022856437,1,0.013214794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496392672,119.7616267,0.496392672,60.23837331,0,0.949273291,0,0,0,12,6,0% +2018-12-13 15:00:00,93.63457328,116.7362197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634231597,2.03743139,10.78955914,-10.78955914,1,0,#DIV/0!,0,0,0.568028883,1,0.092418173,0,0.952068012,0.990829976,0.724496596,1,0,0,0.07652539,0.312029739,0.806014239,0.530510835,0.961238037,0.922476074,0,0,0,0,0,0,-0.293504507,107.0678827,0.293504507,72.93211726,0,0.879644865,0,0,0,12,7,0% +2018-12-13 16:00:00,83.40327595,126.1251727,54.39512134,278.5957837,22.38993931,22.12485343,0,22.12485343,21.71480003,0.410053401,36.54740484,22.68353863,13.86386621,0.67513928,13.18872693,1.455661772,2.201299534,-4.819711534,4.819711534,0.645627095,0.645627095,0.411616681,0.324554353,10.43878365,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.87309175,0.48913611,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.235138524,10.03415591,21.10823028,10.52329202,0,22.68353863,-0.081420969,94.67024774,0.081420969,85.32975226,0,0,21.10823028,10.52329202,27.99551444,12,8,33% +2018-12-13 17:00:00,74.6038698,136.8758309,206.8081219,595.5020806,48.70767842,120.2465087,71.44853949,48.79796918,47.2389622,1.559006979,51.61173972,0,51.61173972,1.468716216,50.14302351,1.302083163,2.388933916,-1.426155673,1.426155673,0.774040673,0.774040673,0.23552111,1.289702344,41.48126071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.40788729,1.064079899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.934384958,39.87336561,46.34227225,40.93744551,71.44853949,0,0.119980336,83.10903231,-0.119980336,96.89096769,0.633265043,0,91.58813469,40.93744551,118.380874,12,9,29% +2018-12-13 18:00:00,67.50802976,149.3614883,338.028868,721.8002634,61.90132558,279.9495473,217.3665707,62.58297661,60.03477222,2.548204391,83.82556597,0,83.82556597,1.866553358,81.95901262,1.178237391,2.606849747,-0.445869509,0.445869509,0.606401866,0.606401866,0.183124376,1.728903878,55.60749179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.70770659,1.352311554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.252584974,53.45203624,58.96029157,54.8043478,217.3665707,0,0.301145042,72.47361002,-0.301145042,107.52639,0.883967049,0,251.1051776,54.8043478,286.9735272,12,10,14% +2018-12-13 19:00:00,62.7826066,163.6322148,423.7505686,775.9357429,68.86246111,418.4172367,348.436822,69.98041461,66.78600383,3.194410779,104.8196886,0,104.8196886,2.076457278,102.7432314,1.095763198,2.855920911,0.123176998,-0.123176998,0.509089182,0.509089182,0.162507065,1.881078806,60.50196058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.19724721,1.504386229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.362835192,58.15678581,65.5600824,59.66117204,348.436822,0,0.449053707,63.31701301,-0.449053707,116.682987,0.938654744,0,392.6219584,59.66117204,431.6690023,12,11,10% +2018-12-13 20:00:00,61.00612454,179.1295857,455.294779,792.3574253,71.22635715,511.0957824,438.5849583,72.51082405,69.07861968,3.432204362,112.5392279,0,112.5392279,2.147737465,110.3914904,1.064757737,3.126401058,0.591345972,-0.591345972,0.429027573,0.429027573,0.156440092,1.779085024,57.22148994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.40099677,1.556028482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.288941044,55.00347266,67.68993782,56.55950114,438.5849583,0,0.553519087,56.39122639,-0.553519087,123.6087736,0.959668878,0,488.5862728,56.55950114,525.6033351,12,12,8% +2018-12-13 21:00:00,62.43784057,194.6975093,429.9056843,779.2664626,69.33079483,543.8096635,473.3286373,70.4810262,67.24021556,3.240810641,106.3261897,0,106.3261897,2.090579267,104.2356104,1.089745896,3.398112583,1.09061667,-1.09061667,0.343647255,0.343647255,0.161269779,1.45673504,46.85360638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.6338528,1.514617563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055399578,45.03746862,65.68925238,46.55208618,473.3286373,0,0.607402808,52.59805496,-0.607402808,127.401945,0.967682303,0,523.7209984,46.55208618,554.1884077,12,13,6% +2018-12-13 22:00:00,66.86678039,209.140744,349.7889111,730.2069588,62.91224364,506.9274874,443.2754235,63.65206394,61.01520738,2.636856563,86.70740747,0,86.70740747,1.897036267,84.81037121,1.167045478,3.650194583,1.770319881,-1.770319881,0.22741116,0.22741116,0.179857742,0.966057872,31.07174197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65013816,1.374396318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69990564,29.86734025,59.3500438,31.24173657,443.2754235,0,0.607054504,52.62317218,-0.607054504,127.3768278,0.967635073,0,488.2788905,31.24173657,508.7259822,12,14,4% +2018-12-13 23:00:00,73.73648519,221.8254085,222.8321967,615.1008158,50.56985432,390.6273735,339.9025837,50.72478985,49.04498663,1.679803224,55.55311364,0,55.55311364,1.524867691,54.02824595,1.286944445,3.871583743,3.021680575,-3.021680575,0.013415878,0.013415878,0.226941416,0.398638598,12.82158762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.14390666,1.104761451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288812307,12.32459772,47.43271897,13.42935917,339.9025837,0,0.552596542,56.45467041,-0.552596542,123.5453296,0.959518073,0,373.575391,13.42935917,382.364638,12,15,2% +2018-12-13 00:00:00,82.38476523,232.7477876,70.02253182,329.3615064,26.37556255,173.754071,147.6459696,26.10810144,25.58024202,0.527859422,17.77309406,0,17.77309406,0.795320526,16.97777353,1.437885407,4.062215221,7.142967271,-7.142967271,0,0,0.376672506,0.198830132,6.395060506,0.408761791,1,0.139093825,0,0.946675123,0.985437086,0.724496596,1,24.80241534,0.576207014,0.058573146,0.312029739,0.847363219,0.571859815,0.961238037,0.922476074,0.13609427,6.147175406,24.93850961,6.72338242,87.29393854,0,0.448279373,63.36665622,-0.448279373,116.6333438,0.938462412,0,106.8605897,6.72338242,111.260909,12,16,4% +2018-12-13 01:00:00,92.48835289,242.258985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614226278,4.228216931,-22.80140649,22.80140649,1,0,#DIV/0!,0,0,1,0.70840583,0,0.043828857,0.961238037,1,0.607735282,0.883238686,0,0,0.115824807,0.179625771,0.724496596,0.448993192,0.980351304,0.941589341,0,0,0,0,0,0,0.297785786,72.67533929,-0.297785786,107.3246607,0.882094068,0,0,0,0,12,17,0% +2018-12-13 02:00:00,103.3465935,250.8338822,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803738328,4.377877119,-4.214538017,4.214538017,1,0.749117862,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115827798,83.34862657,-0.115827798,96.65137343,0.618324694,0,0,0,0,12,18,0% +2018-12-13 03:00:00,114.7711969,258.9983655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003135273,4.520374236,-2.140388251,2.140388251,1,0.896181638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086998891,94.99097879,0.086998891,85.00902121,0,0,0,0,0,12,19,0% +2018-12-13 04:00:00,126.5175092,267.396721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208147098,4.666953191,-1.288781052,1.288781052,1,0.75054823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296881738,107.270409,0.296881738,72.72959102,0,0.88158277,0,0,0,12,20,0% +2018-12-13 05:00:00,138.3373195,277.0482304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414441704,4.835403808,-0.792477077,0.792477077,1,0.665675251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499528863,119.9688347,0.499528863,60.03116529,0,0.949905684,0,0,0,12,21,0% +2018-12-13 06:00:00,149.8434982,290.1303243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615262406,5.063729419,-0.44421967,0.44421967,1,0.606119727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681142228,132.9329654,0.681142228,47.06703465,0,0.976593892,0,0,0,12,22,0% +2018-12-13 07:00:00,160.0213703,312.5961175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792899785,5.45583148,-0.167326536,0.167326536,1,0.558768212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829357025,146.0327455,0.829357025,33.9672545,0,0.989712333,0,0,0,12,23,0% +2018-12-14 08:00:00,165.3406863,356.774143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885739364,6.226883481,0.075493722,-0.075493722,1,0.517243503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934083331,159.0805517,0.934083331,20.91944825,0,0.996471585,0,0,0,12,0,0% +2018-12-14 09:00:00,161.0251644,43.54289404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810419297,0.759966867,0.307825791,-0.307825791,1,0.477512379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988192828,171.1866946,0.988192828,8.813305365,0,0.999402588,0,0,0,12,1,0% +2018-12-14 10:00:00,151.1574104,67.90337625,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638194499,1.185137489,0.550354353,-0.550354353,1,0.436037552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988003936,171.1163358,0.988003936,8.883664161,0,0.999392914,0,0,0,12,2,0% +2018-12-14 11:00:00,139.7345752,81.66521336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438828415,1.425326857,0.829530086,-0.829530086,1,0.38829569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933532342,158.9923136,0.933532342,21.00768644,0,0.996439992,0,0,0,12,3,0% +2018-12-14 12:00:00,127.928822,91.57374322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232779153,1.598263328,1.193328157,-1.193328157,1,0.326082556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82848993,145.9439283,0.82848993,34.05607169,0,0.989649236,0,0,0,12,4,0% +2018-12-14 13:00:00,116.1629482,100.057102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027425915,1.746325869,1.761857628,-1.761857628,1,0.22885829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680032126,132.8461536,0.680032126,47.15384644,0,0.976474062,0,0,0,12,5,0% +2018-12-14 14:00:00,104.6920485,108.2134716,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827220947,1.888681374,2.996648244,-2.996648244,1,0.017696659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498270826,119.8856645,0.498270826,60.11433547,0,0.949652965,0,0,0,12,6,0% +2018-12-14 15:00:00,93.75751238,116.7127471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63637729,2.037021717,10.44012072,-10.44012072,1,0,#DIV/0!,0,0,0.556582727,1,0.095493006,0,0.951728244,0.990490207,0.724496596,1,0,0,0.075307668,0.312029739,0.808737779,0.533234375,0.961238037,0.922476074,0,0,0,0,0,0,-0.295585976,107.1926784,0.295585976,72.8073216,0,0.880844478,0,0,0,12,7,0% +2018-12-14 16:00:00,83.52077344,126.0882102,52.71536002,273.1556023,21.89167005,21.62894608,0,21.62894608,21.23155543,0.397390651,36.26698562,22.82542165,13.44156398,0.660114624,12.78144935,1.45771249,2.200654416,-4.912600035,4.912600035,0.629742226,0.629742226,0.41528067,0.311356816,10.01430548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.40857866,0.478250798,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225576953,9.626131343,20.63415561,10.10438214,0,22.82542165,-0.083561975,94.79333791,0.083561975,85.20666209,0,0,20.63415561,10.10438214,27.24727164,12,8,32% +2018-12-14 17:00:00,74.71646414,136.8207134,204.8291755,593.5043374,48.38388326,118.406292,69.93727251,48.46901951,46.92493066,1.544088845,51.12215763,0,51.12215763,1.458952598,49.66320503,1.304048305,2.387971935,-1.440420479,1.440420479,0.776480099,0.776480099,0.236215779,1.280480494,41.18465432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.10602823,1.057006191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927703759,39.58825626,46.03373199,40.64526245,69.93727251,0,0.117837846,83.23266512,-0.117837846,96.76733488,0.625688102,0,89.79265125,40.64526245,116.3941626,12,9,30% +2018-12-14 18:00:00,67.60966218,149.283454,336.2734429,720.9876759,61.63881285,277.990266,215.6751195,62.31514648,59.78017522,2.534971255,83.3920271,0,83.3920271,1.85863763,81.53338947,1.180011211,2.605487791,-0.451365442,0.451365442,0.607341726,0.607341726,0.183299675,1.722046179,55.38692461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.46297827,1.346576636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247616595,53.24001868,58.71059487,54.58659531,215.6751195,0,0.299138427,72.59413757,-0.299138427,107.4058624,0.882853303,0,249.1200865,54.58659531,284.8459214,12,10,14% +2018-12-14 19:00:00,62.86688643,163.5290824,422.3606575,775.6103183,68.63634202,416.6747552,346.9241191,69.75063611,66.56670307,3.183933042,104.4758703,0,104.4758703,2.069638953,102.4062313,1.097234159,2.854120911,0.12011811,-0.12011811,0.509612283,0.509612283,0.162506476,1.876302767,60.34834673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.98644697,1.499446376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359374967,58.00912634,65.34582194,59.50857271,346.9241191,0,0.447291779,63.42994038,-0.447291779,116.5700596,0.938216144,0,390.8356311,59.50857271,429.7828017,12,11,10% +2018-12-14 20:00:00,61.06683699,179.0053547,454.3427423,792.3070073,71.03330829,509.7427768,437.4263573,72.31641946,68.89139196,3.425027507,112.3025744,0,112.3025744,2.14191633,110.1606581,1.065817369,3.124232818,0.589119582,-0.589119582,0.429408308,0.429408308,0.156343002,1.776275181,57.13111574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22102636,1.55181109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286905322,54.91660154,67.50793168,56.46841263,437.4263573,0,0.552091996,56.48934864,-0.552091996,123.5106514,0.959435383,0,487.1902565,56.46841263,524.1477032,12,12,8% +2018-12-14 21:00:00,62.47154526,194.5624512,429.422102,779.4397753,69.17355602,542.959528,472.6346447,70.32488328,67.08771808,3.237165194,106.2041982,0,106.2041982,2.085837937,104.1183603,1.090334154,3.395755374,1.088461044,-1.088461044,0.344015889,0.344015889,0.161085225,1.455705397,46.82048952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48726643,1.511182485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054653605,45.00563543,65.54192003,46.51681792,472.6346447,0,0.606377375,52.67197802,-0.606377375,127.328022,0.967543098,0,522.8363082,46.51681792,553.2806352,12,13,6% +2018-12-14 22:00:00,66.87425386,209.0058301,349.7644462,730.6570959,62.79857709,506.663142,443.1215016,63.54164042,60.90496829,2.636672136,86.69804821,0,86.69804821,1.893608801,84.80443941,1.167175915,3.64783989,1.767347289,-1.767347289,0.227919503,0.227919503,0.179545342,0.966453609,31.08447023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54417215,1.37191313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70019235,29.87957515,59.2443645,31.25148828,443.1215016,0,0.606469853,52.66531427,-0.606469853,127.3346857,0.967555671,0,487.9890864,31.25148828,508.4425604,12,14,4% +2018-12-14 23:00:00,73.72157694,221.6969893,223.2078935,616.0661695,50.52131965,391.0331502,340.3525994,50.68055085,48.99791546,1.682635384,55.64274217,0,55.64274217,1.523404191,54.11933798,1.286684247,3.869342406,3.015127083,-3.015127083,0.014536591,0.014536591,0.226341994,0.399774554,12.85812389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.09866007,1.103701151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289635304,12.35971776,47.38829537,13.46341891,340.3525994,0,0.552461109,56.46398027,-0.552461109,123.5360197,0.959495892,0,373.9552162,13.46341891,382.7667547,12,15,2% +2018-12-14 00:00:00,82.35253741,232.6270247,70.59637152,331.5997398,26.46792494,174.9464525,148.7444479,26.20200462,25.66981935,0.532185269,17.91501321,0,17.91501321,0.798105593,17.11690761,1.437322925,4.060107511,7.107835986,-7.107835986,0,0,0.374919056,0.199526398,6.417454837,0.406654202,1,0.139772414,0,0.946593032,0.985354995,0.724496596,1,24.88925867,0.578224785,0.058320163,0.312029739,0.847964233,0.572460829,0.961238037,0.922476074,0.136574911,6.168701689,25.02583358,6.746926474,88.25689316,0,0.448566238,63.34826757,-0.448566238,116.6517324,0.938533742,0,107.8579058,6.746926474,112.2736342,12,16,4% +2018-12-14 01:00:00,92.44238845,242.1437288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613424047,4.226205331,-23.22465233,23.22465233,1,0,#DIV/0!,0,0,1,0.714432834,0,0.043031116,0.961238037,1,0.609725422,0.885228826,0,0,0.115824807,0.1818761,0.724496596,0.448993192,0.98005815,0.941296186,0,0,0,0,0,0,0.298457361,72.63502782,-0.298457361,107.3649722,0.882471882,0,0,0,0,12,17,0% +2018-12-14 02:00:00,103.2910186,250.7201195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802768363,4.375891586,-4.232927247,4.232927247,1,0.745973119,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11680013,83.29253532,-0.11680013,96.70746468,0.621918283,0,0,0,0,12,18,0% +2018-12-14 03:00:00,114.7092041,258.8804322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002053295,4.51831591,-2.147184908,2.147184908,1,0.897343935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085823143,94.92336044,0.085823143,85.07663956,0,0,0,0,0,12,19,0% +2018-12-14 04:00:00,126.4522759,267.2660852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207008561,4.664673166,-1.292773451,1.292773451,1,0.75123097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295613738,107.1943434,0.295613738,72.80565658,0,0.880860364,0,0,0,12,20,0% +2018-12-14 05:00:00,138.2729844,276.8896929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413318845,4.832636806,-0.795389793,0.795389793,1,0.666173355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498285965,119.886665,0.498285965,60.11333501,0,0.949656014,0,0,0,12,21,0% +2018-12-14 06:00:00,149.7877844,289.9112923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614290017,5.059906589,-0.446646151,0.446646151,1,0.60653468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680039913,132.8467621,0.680039913,47.15323792,0,0.976474904,0,0,0,12,22,0% +2018-12-14 07:00:00,159.9946614,312.2440201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792433627,5.449686221,-0.169552586,0.169552586,1,0.559148889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828500969,145.9450578,0.828500969,34.05494217,0,0.98965004,0,0,0,12,23,0% +2018-12-15 08:00:00,165.3903181,356.3278566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886605603,6.219094313,0.073280477,-0.073280477,1,0.51762199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933562141,158.9970767,0.933562141,21.0029233,0,0.996441701,0,0,0,12,0,0% +2018-12-15 09:00:00,161.1346491,43.36944489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.812330166,0.756939608,0.305451793,-0.305451793,1,0.477918357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988071954,171.1416076,0.988071954,8.858392445,0,0.999396398,0,0,0,12,1,0% +2018-12-15 10:00:00,151.2782067,67.85550165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.640302793,1.184301919,0.547594701,-0.547594701,1,0.436509481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988321168,171.2348186,0.988321168,8.76518135,0,0.999409158,0,0,0,12,2,0% +2018-12-15 11:00:00,139.8568846,81.64708945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.440963118,1.425010536,0.825999937,-0.825999937,1,0.388899381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934295209,159.1145778,0.934295209,20.88542222,0,0.996483724,0,0,0,12,3,0% +2018-12-15 12:00:00,128.0511805,91.5611521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234914711,1.598043571,1.188189571,-1.188189571,1,0.326961306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829675171,146.0653846,0.829675171,33.93461535,0,0.989735451,0,0,0,12,4,0% +2018-12-15 13:00:00,116.2848867,100.0423617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029554143,1.746068604,1.752684556,-1.752684556,1,0.230426978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681587281,132.9678037,0.681587281,47.03219633,0,0.976641824,0,0,0,12,5,0% +2018-12-15 14:00:00,104.8129473,108.1927567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829331029,1.88831983,2.971925419,-2.971925419,1,0.021924511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500117829,120.0077958,0.500117829,59.99220417,0,0.95002356,0,0,0,12,6,0% +2018-12-15 15:00:00,93.87625403,116.6828087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638449722,2.036499191,10.1249864,-10.1249864,1,0,#DIV/0!,0,0,0.545727307,1,0.098446291,0,0.951399835,0.990161799,0.724496596,1,0,0,0.074142952,0.312029739,0.811353842,0.535850438,0.961238037,0.922476074,0,0,0,0,0,0,-0.297626515,107.3151017,0.297626515,72.68489826,0,0.882004215,0,0,0,12,7,0% +2018-12-15 16:00:00,83.63343355,126.0452741,51.12002918,267.9146,21.41124059,21.15097706,0,21.15097706,20.76561269,0.385364373,35.98753061,22.94725978,13.04027082,0.645627903,12.39464292,1.45967878,2.19990504,-5.005842783,5.005842783,0.613796777,0.613796777,0.418842496,0.298871305,9.612728517,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.96069678,0.467755218,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216531243,9.240120289,20.17722802,9.707875507,0,22.94725978,-0.085651397,94.91348378,0.085651397,85.08651622,0,0,20.17722802,9.707875507,26.53083838,12,8,31% +2018-12-15 17:00:00,74.82343984,136.7602465,202.9542542,591.6186035,48.07183687,116.6373015,68.48505294,48.15224851,46.62229362,1.529954896,50.6581519,0,50.6581519,1.449543248,49.20860865,1.305915383,2.386916588,-1.454645718,1.454645718,0.778912758,0.778912758,0.236860454,1.271820268,40.90611166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.81512199,1.050189149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921429454,39.32051047,45.73655144,40.37069961,68.48505294,0,0.115758789,83.35260725,-0.115758789,96.64739275,0.618067353,0,88.06492686,40.37069961,114.4867423,12,9,30% +2018-12-15 18:00:00,67.70487279,149.2010372,334.6350439,720.2553532,61.38638834,276.1227423,214.0647598,62.05798255,59.53536224,2.522620311,82.98716676,0,82.98716676,1.8510261,81.13614066,1.18167295,2.604049346,-0.456950188,0.456950188,0.608296774,0.608296774,0.183442797,1.715765021,55.18490098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.22765472,1.341062108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243065917,53.04582588,58.47072064,54.38688799,214.0647598,0,0.29720676,72.71008836,-0.29720676,107.2899116,0.881766949,0,247.2259507,54.38688799,282.8210812,12,10,14% +2018-12-15 19:00:00,62.94405812,163.4230391,421.0969274,775.3525754,68.41987254,415.0400772,345.5089097,69.53116746,66.35676094,3.174406511,104.1629369,0,104.1629369,2.0631116,102.0998253,1.098581059,2.852270106,0.116900789,-0.116900789,0.510162477,0.510162477,0.162480104,1.872110458,60.21350767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.78464262,1.494717331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356337654,57.87951391,65.14098028,59.37423124,345.5089097,0,0.445615222,63.53729281,-0.445615222,116.4627072,0.937795574,0,389.1577067,59.37423124,428.0169536,12,11,10% +2018-12-15 20:00:00,61.12004404,178.8801189,453.5225828,792.3220729,70.84996913,508.5108807,436.3784548,72.13242595,68.71358115,3.418844798,112.0981889,0,112.0981889,2.136387978,109.9618009,1.066746007,3.122047041,0.586665659,-0.586665659,0.429827953,0.429827953,0.15622148,1.774042238,57.05929661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05010785,1.547805817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285287563,54.84756626,67.33539541,56.39537208,436.3784548,0,0.550758927,56.58090587,-0.550758927,123.4190941,0.959216179,0,485.9166693,56.39537208,522.8263124,12,12,8% +2018-12-15 21:00:00,62.49773505,194.428359,429.0724091,779.6853665,69.02643352,542.2418192,472.0622583,70.17956093,66.94503187,3.234529061,106.1149749,0,106.1149749,2.081401651,104.0335732,1.090791252,3.393415024,1.085971089,-1.085971089,0.344441696,0.344441696,0.160873624,1.455226709,46.80509328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.35011101,1.507968411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054306797,44.99083598,65.40441781,46.49880439,472.0622583,0,0.605452249,52.73860764,-0.605452249,127.2613924,0.967417104,0,522.0855207,46.49880439,552.5180582,12,13,6% +2018-12-15 22:00:00,66.87453748,208.8735217,349.8716882,731.1998169,62.69599397,506.5419909,443.0990319,63.442959,60.80547843,2.637480572,86.72095703,0,86.72095703,1.890515542,84.83044149,1.167180865,3.645530673,1.763819759,-1.763819759,0.228522746,0.228522746,0.179197106,0.967346738,31.11319633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.44853872,1.369672075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700839419,29.90718776,59.14937813,31.27685984,443.0990319,0,0.605988981,52.69995818,-0.605988981,127.3000418,0.967490249,0,487.8433708,31.27685984,508.3134501,12,14,4% +2018-12-15 23:00:00,73.69999442,221.572355,223.7072309,617.1760166,50.48641184,391.5968816,340.9464217,50.65045984,48.96406024,1.686399601,55.76275971,0,55.76275971,1.522351592,54.24040812,1.286307561,3.867167126,3.0073773,-3.0073773,0.015861882,0.015861882,0.225680733,0.401300529,12.90720448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.06611714,1.102938546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.290740867,12.4068959,47.35685801,13.50983444,340.9464217,0,0.552429797,56.46613257,-0.552429797,123.5338674,0.959490762,0,374.4918,13.50983444,383.3337164,12,15,2% +2018-12-15 00:00:00,82.31423999,232.5108729,71.26793199,334.1255129,26.5820235,176.3246399,150.0069147,26.31772519,25.78047741,0.537247775,18.08128131,0,18.08128131,0.801546086,17.27973522,1.436654509,4.058080279,7.06749316,-7.06749316,0,0,0.372987159,0.200386521,6.445119353,0.404215351,1,0.140559828,0,0.946497645,0.985259608,0.724496596,1,24.9965299,0.580717411,0.058026882,0.312029739,0.848661619,0.573158215,0.961238037,0.922476074,0.137168766,6.195293874,25.13369867,6.776011285,89.37181699,0,0.448953788,63.32342013,-0.448953788,116.6765799,0.938629963,0,109.0207639,6.776011285,113.4555278,12,16,4% +2018-12-15 01:00:00,92.39078669,242.0337378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612523426,4.224285625,-23.72019648,23.72019648,1,0,#DIV/0!,0,0,1,0.721180225,0,0.042133217,0.961238037,1,0.611971442,0.887474846,0,0,0.115824807,0.184416033,0.724496596,0.448993192,0.979725915,0.940963952,0,0,0,0,0,0,0.299225489,72.58890988,-0.299225489,107.4110901,0.882901936,0,0,0,0,12,17,0% +2018-12-15 02:00:00,103.230227,250.6122724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801707349,4.374009299,-4.253184237,4.253184237,1,0.742508969,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117861092,83.23132386,-0.117861092,96.76867614,0.62577179,0,0,0,0,12,18,0% +2018-12-15 03:00:00,114.6422933,258.7692165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00088548,4.516374831,-2.154454106,2.154454106,1,0.898587041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08456864,94.85122043,0.08456864,85.14877957,0,0,0,0,0,12,19,0% +2018-12-15 04:00:00,126.3822563,267.143298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205786488,4.662530125,-1.296945053,1.296945053,1,0.751944356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294278131,107.114256,0.294278131,72.885744,0,0.880092709,0,0,0,12,20,0% +2018-12-15 05:00:00,138.2037338,276.7407096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412110193,4.830036556,-0.798375851,0.798375851,1,0.666684001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49698711,119.8008682,0.49698711,60.19913184,0,0.949393769,0,0,0,12,21,0% +2018-12-15 06:00:00,149.7265397,289.7043196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613221096,5.056294235,-0.44909473,0.44909473,1,0.606953412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678892988,132.7571977,0.678892988,47.24280229,0,0.97635069,0,0,0,12,22,0% +2018-12-15 07:00:00,159.9608461,311.9052853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791843439,5.443774183,-0.171769227,0.171769227,1,0.559527957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827610565,145.854062,0.827610565,34.14593804,0,0.989585112,0,0,0,12,23,0% +2018-12-16 08:00:00,165.4314012,355.8772411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887322636,6.211229589,0.071101431,-0.071101431,1,0.517994629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933015072,158.9097961,0.933015072,21.09020386,0,0.996410298,0,0,0,12,0,0% +2018-12-16 09:00:00,161.2382589,43.17797646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814138498,0.753597854,0.303137165,-0.303137165,1,0.478314181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987931292,171.0894243,0.987931292,8.910575684,0,0.999389193,0,0,0,12,1,0% +2018-12-16 10:00:00,151.3949966,67.79349093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642341161,1.183219628,0.544926654,-0.544926654,1,0.436965743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988621907,171.3486275,0.988621907,8.651372484,0,0.999424548,0,0,0,12,2,0% +2018-12-16 11:00:00,139.9758503,81.6180779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.443039462,1.424504189,0.822611745,-0.822611745,1,0.389478796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935041852,159.2349075,0.935041852,20.7650925,0,0.996526458,0,0,0,12,3,0% +2018-12-16 12:00:00,128.1703114,91.53961818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236993937,1.597667733,1.183288638,-1.183288638,1,0.327799415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830841415,146.1852689,0.830841415,33.81473112,0,0.989820044,0,0,0,12,4,0% +2018-12-16 13:00:00,116.4034219,100.0198705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031622974,1.745676058,1.743985902,-1.743985902,1,0.231914535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683117814,133.087763,0.683117814,46.91223696,0,0.976806183,0,0,0,12,5,0% +2018-12-16 14:00:00,104.9300721,108.1650633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831375243,1.88783649,2.948654892,-2.948654892,1,0.025904005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501932121,120.1279106,0.501932121,59.87208936,0,0.950384937,0,0,0,12,6,0% +2018-12-16 15:00:00,93.99069523,116.6464493,0,0,0,0,0,0,0,0,0,0,0,0,0,1.640447098,2.035864602,9.840347268,-9.840347268,1,0,#DIV/0!,0,0,0.535455176,1,0.101274759,0,0.951083406,0.989845369,0.724496596,1,0,0,0.07303189,0.312029739,0.813859482,0.538356078,0.961238037,0.922476074,0,0,0,0,0,0,-0.299624346,107.4350419,0.299624346,72.56495812,0,0.883124375,0,0,0,12,7,0% +2018-12-16 16:00:00,83.74116776,125.9964255,49.50315063,261.5808657,20.98557612,20.72595923,0,20.72595923,20.35278357,0.37317566,35.57276639,22.93736184,12.63540455,0.632792549,12.002612,1.461559097,2.19905247,-5.099162675,5.099162675,0.597838136,0.597838136,0.42392405,0.286719898,9.221897528,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.56386973,0.458456047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.20772759,8.864438676,19.77159732,9.322894723,0,22.93736184,-0.087687461,95.03058227,0.087687461,84.96941773,0,0.479793044,19.77159732,20.32808137,33.07592001,12,8,67% +2018-12-16 17:00:00,74.92471489,136.6945067,200.9934911,588.5464766,47.91960226,114.9340505,66.94422724,47.98982329,46.47464945,1.515173836,50.17815175,0,50.17815175,1.444952813,48.73319894,1.307682966,2.385769211,-1.468801953,1.468801953,0.781333617,0.781333617,0.238413702,1.262846905,40.61749747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.6732008,1.046863394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914928284,39.04308353,45.58812908,40.08994692,66.94422724,0,0.113745014,83.46875532,-0.113745014,96.53124468,0.610420292,0,86.45224386,40.08994692,112.6903123,12,9,30% +2018-12-16 18:00:00,67.79359505,149.1143269,332.8954131,718.5026614,61.34143833,274.2123063,212.2110324,62.00127388,59.49176764,2.50950624,82.56401773,0,82.56401773,1.849670692,80.71434704,1.183221445,2.602535967,-0.462614711,0.462614711,0.609265465,0.609265465,0.184266397,1.709638039,54.98783619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18574994,1.34008012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23862694,52.85639971,58.42437688,54.19647983,212.2110324,0,0.295351769,72.8213678,-0.295351769,107.1786322,0.880710342,0,245.3208278,54.19647983,280.7913399,12,10,14% +2018-12-16 19:00:00,63.01407426,163.3141808,419.7293453,774.1720528,68.43204097,413.284816,343.7521564,69.53265954,66.36856245,3.1640971,103.8317178,0,103.8317178,2.063478523,101.7682392,1.099803071,2.850370171,0.113529639,-0.113529639,0.510738978,0.510738978,0.163038495,1.868422621,60.09489416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79598667,1.494983165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353665829,57.76549809,65.1496525,59.26048125,343.7521564,0,0.444025531,63.63899067,-0.444025531,116.3610093,0.937393862,0,387.3808141,59.26048125,426.1656139,12,11,10% +2018-12-16 20:00:00,61.1657186,178.7539758,452.6003713,791.4489109,70.90205062,507.0938191,434.9178341,72.17598497,68.76409219,3.411892778,111.8761585,0,111.8761585,2.137958427,109.7382,1.067543179,3.119845429,0.583987793,-0.583987793,0.430285895,0.430285895,0.156654866,1.772595606,57.01276795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09866098,1.548943602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284239483,54.80284114,67.38290047,56.35178474,434.9178341,0,0.549521047,56.66583901,-0.549521047,123.334161,0.959011674,0,484.4741807,56.35178474,521.3552968,12,12,8% +2018-12-16 21:00:00,62.51640315,194.2953306,428.6247285,779.0220585,69.11021404,541.276146,471.0187057,70.25744035,67.0262861,3.231154255,106.0089558,0,106.0089558,2.083927943,103.9250279,1.091117072,3.39109324,1.083151133,-1.083151133,0.344923937,0.344923937,0.161237114,1.455785274,46.82305864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.42821566,1.509798701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054711475,45.00810497,65.48292714,46.51790367,471.0187057,0,0.604628201,52.79790777,-0.604628201,127.2020922,0.967304552,0,521.1014652,46.51790367,551.5465028,12,13,6% +2018-12-16 22:00:00,66.86764454,208.7439173,349.8882154,730.754955,62.80639191,506.1042852,442.5541326,63.55015262,60.91254746,2.637605161,86.72829314,0,86.72829314,1.893844447,84.8344487,1.16706056,3.64326865,1.759745309,-1.759745309,0.229219518,0.229219518,0.179504165,0.969525168,31.18326212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.55145754,1.372083855,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.702417684,29.97453766,59.25387522,31.34662152,442.5541326,0,0.605612223,52.72709016,-0.605612223,127.2729098,0.967438919,0,487.3979667,31.34662152,507.9137035,12,14,4% +2018-12-16 23:00:00,73.67177008,221.4516031,224.1319187,617.1614466,50.62341143,391.7697692,340.9832393,50.78652988,49.0969288,1.689601077,55.86986123,0,55.86986123,1.526482635,54.34337859,1.285814954,3.865059607,2.998455799,-2.998455799,0.017387548,0.017387548,0.225864356,0.404363232,13.00571152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.19383545,1.105931473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292959785,12.50158461,47.48679524,13.60751608,340.9832393,0,0.552502495,56.46113542,-0.552502495,123.5388646,0.959502671,0,374.6611242,13.60751608,383.5669713,12,15,2% +2018-12-16 00:00:00,82.2699209,232.3994272,71.90951325,335.5475489,26.77621619,177.3198994,150.8090007,26.51089876,25.96881448,0.542084286,18.24269574,0,18.24269574,0.807401712,17.43529403,1.435880995,4.056135184,7.022161594,-7.022161594,0,0,0.372359859,0.201850428,6.49220362,0.401450883,1,0.141455194,0,0.946389009,0.985150972,0.724496596,1,25.17910148,0.584959792,0.057693749,0.312029739,0.849454598,0.573951193,0.961238037,0.922476074,0.13817717,6.240553062,25.31727865,6.825512854,90.26659412,0,0.449441521,63.29214185,-0.449441521,116.7078582,0.938750821,0,110.055118,6.825512854,114.5222797,12,16,4% +2018-12-16 01:00:00,92.33361374,241.9291036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61152557,4.222459414,-24.29575116,24.29575116,1,0,#DIV/0!,0,0,1,0.728627505,0,0.041136241,0.961238037,1,0.614472763,0.889976167,0,0,0.115824807,0.18724502,0.724496596,0.448993192,0.979354186,0.940592223,0,0,0,0,0,0,0.300089245,72.53703655,-0.300089245,107.4629634,0.883382899,0,0,0,0,12,17,0% +2018-12-16 02:00:00,103.1642985,250.5104306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800556679,4.372231824,-4.275333672,4.275333672,1,0.738721193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119009455,83.1650611,-0.119009455,96.8349389,0.629865316,0,0,0,0,12,18,0% +2018-12-16 03:00:00,114.5705564,258.6648092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999633435,4.514552579,-2.16219535,2.16219535,1,0.899910871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08323682,94.77464278,0.08323682,85.22535722,0,0,0,0,0,12,19,0% +2018-12-16 04:00:00,126.3075538,267.0284573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204482683,4.660525776,-1.301293717,1.301293717,1,0.752688021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292876454,107.0302438,0.292876454,72.96975618,0,0.87927955,0,0,0,12,20,0% +2018-12-16 05:00:00,138.1296828,276.6014012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41081776,4.827605166,-0.801433133,0.801433133,1,0.667206827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495633815,119.7115535,0.495633815,60.2884465,0,0.94911907,0,0,0,12,21,0% +2018-12-16 06:00:00,149.6598919,289.5096067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612057872,5.052895854,-0.451563464,0.451563464,1,0.60737559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677702838,132.6643945,0.677702838,47.33560552,0,0.976221351,0,0,0,12,22,0% +2018-12-16 07:00:00,159.9200481,311.58047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79113138,5.438105087,-0.173974654,0.173974654,1,0.559905108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826686958,145.7598976,0.826686958,34.24010244,0,0.989517614,0,0,0,12,23,0% +2018-12-17 08:00:00,165.4639014,355.4234484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887889872,6.203309414,0.068958311,-0.068958311,1,0.518361124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932442941,158.8188846,0.932442941,21.18111544,0,0.996377416,0,0,0,12,0,0% +2018-12-17 09:00:00,161.3358576,42.96859786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815841917,0.749943508,0.300883601,-0.300883601,1,0.478699563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987771267,171.0304238,0.987771267,8.969576212,0,0.999380994,0,0,0,12,1,0% +2018-12-17 10:00:00,151.5076599,67.71730316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644307507,1.181889901,0.542351896,-0.542351896,1,0.437406053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988906144,171.4575745,0.988906144,8.542425547,0,0.999439085,0,0,0,12,2,0% +2018-12-17 11:00:00,140.0913594,81.57815864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445055475,1.423807466,0.819367127,-0.819367127,1,0.390033659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935771821,159.3531979,0.935771821,20.64680211,0,0.996568171,0,0,0,12,3,0% +2018-12-17 12:00:00,128.2861044,91.50914305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239014907,1.597135842,1.178626486,-1.178626486,1,0.32859669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831987791,146.3034769,0.831987791,33.69652307,0,0.989902964,0,0,0,12,4,0% +2018-12-17 13:00:00,116.518446,99.98964689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033630523,1.745148556,1.735759765,-1.735759765,1,0.233321288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684622483,133.2059248,0.684622483,46.79407517,0,0.976967049,0,0,0,12,5,0% +2018-12-17 14:00:00,105.0433184,108.1304248,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833351764,1.887231934,2.926805218,-2.926805218,1,0.029640519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503712167,120.2459004,0.503712167,59.75409957,0,0.950736962,0,0,0,12,6,0% +2018-12-17 15:00:00,94.10073698,116.603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.642367689,2.035118781,9.582979022,-9.582979022,1,0,#DIV/0!,0,0,0.525758935,1,0.103975368,0,0.950779548,0.989541512,0.724496596,1,0,0,0.071975059,0.312029739,0.816251958,0.540748554,0.961238037,0.922476074,0,0,0,0,0,0,-0.301577739,107.5523905,0.301577739,72.44760955,0,0.884205269,0,0,0,12,7,0% +2018-12-17 16:00:00,83.84389233,125.9417268,47.86990269,254.2012263,20.60993789,20.34933577,0,20.34933577,19.98847222,0.360863547,35.02190947,22.79383168,12.2280778,0.62146567,11.60661213,1.463351979,2.198097799,-5.192260669,5.192260669,0.581917441,0.581917441,0.430540626,0.274948781,8.843297933,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.2136798,0.450249762,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.199199456,8.500514344,19.41287925,8.950764107,0,22.79383168,-0.089668457,95.14453395,0.089668457,84.85546605,0,0.492390314,19.41287925,20.17422605,32.61650672,12,8,68% +2018-12-17 17:00:00,75.02021218,136.6235706,198.9500842,584.2890461,47.92405641,113.3012588,65.32251972,47.97873906,46.47896928,1.499769772,49.6828384,0,49.6828384,1.445087122,48.23775128,1.309349708,2.384531143,-1.482859172,1.482859172,0.783737543,0.783737543,0.240884826,1.253555399,40.31865069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.67735319,1.0469607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908196619,38.75582063,45.58554981,39.80278134,65.32251972,0,0.111798296,83.58101015,-0.111798296,96.41898985,0.602765992,0,84.95974321,39.80278134,111.0098675,12,9,31% +2018-12-17 18:00:00,67.87576742,149.0234113,331.0567664,715.7280325,61.50207056,272.2631314,210.1199294,62.14320196,59.64755622,2.495645744,82.12306021,0,82.12306021,1.854514346,80.26854587,1.184655624,2.600949189,-0.468349719,0.468349719,0.610246209,0.610246209,0.185774999,1.703659353,54.79554108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.33549984,1.343589331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234295402,52.67155833,58.56979524,54.01514767,210.1199294,0,0.293575101,72.92788615,-0.293575101,107.0721138,0.879685829,0,243.4093195,54.01514767,278.7611534,12,10,15% +2018-12-17 19:00:00,63.07689214,163.2026014,418.2594588,772.0677974,68.67152865,411.4124598,341.6586146,69.75384517,66.60082869,3.153016474,103.4825482,0,103.4825482,2.07069996,101.4118482,1.10089945,2.848422742,0.110009567,-0.110009567,0.511340946,0.511340946,0.164184042,1.865232997,59.99230487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.01924983,1.500215072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351354957,57.66688536,65.37060478,59.16710043,341.6586146,0,0.44252411,63.7349595,-0.44252411,116.2650405,0.937011806,0,385.5087603,59.16710043,424.2324442,12,11,10% +2018-12-17 20:00:00,61.20383786,178.6270204,451.5770628,789.6875408,71.18854241,505.4945278,433.0484039,72.44612384,69.0419452,3.404178646,111.6366843,0,111.6366843,2.146597211,109.490087,1.068208485,3.117629638,0.581089982,-0.581089982,0.43078145,0.43078145,0.157644283,1.771927751,56.99128745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.36574386,1.555202372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283755624,54.78219326,67.64949949,56.33739564,433.0484039,0,0.548379431,56.74409398,-0.548379431,123.255906,0.958822255,0,482.8659466,56.33739564,519.7376453,12,12,8% +2018-12-17 21:00:00,62.52754653,194.1634612,428.0794429,777.4510418,69.42409181,540.0650241,469.5072812,70.55774295,67.33069929,3.227043662,105.8862096,0,105.8862096,2.093392516,103.7928171,1.09131156,3.388791685,1.080006126,-1.080006126,0.345461765,0.345461765,0.16217572,1.457371559,46.87407902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72082921,1.516655751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055860733,45.05714769,65.77668994,46.57380344,469.5072812,0,0.603905913,52.84984677,-0.603905913,127.1501532,0.967205646,0,519.8867831,46.57380344,550.3684059,12,13,6% +2018-12-17 22:00:00,66.85359155,208.6171125,349.8138386,729.3252945,63.12917491,505.3522917,441.4896498,63.86264184,61.22559736,2.637044478,86.71999273,0,86.71999273,1.903577545,84.81641518,1.166815289,3.64105549,1.755133093,-1.755133093,0.230008254,0.230008254,0.180465059,0.972976744,31.29427669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.85237301,1.379135452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704918339,30.08124909,59.55729135,31.46038454,441.4896498,0,0.60533983,52.74670024,-0.60533983,127.2532998,0.967401768,0,486.6551589,31.46038454,507.2453514,12,14,4% +2018-12-17 23:00:00,73.63693902,221.3348278,224.4811348,616.0272711,50.93213244,391.5539242,340.4653499,51.08857434,49.39634073,1.692233616,55.96384181,0,55.96384181,1.535791713,54.4280501,1.285207037,3.863021495,2.988390112,-2.988390112,0.019108882,0.019108882,0.226888253,0.408947805,13.15316717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.48164159,1.112675868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296281293,12.64332459,47.77792288,13.75600046,340.4653499,0,0.552679022,56.44900007,-0.552679022,123.5509999,0.959531576,0,374.4651767,13.75600046,383.4682039,12,15,2% +2018-12-17 00:00:00,82.21962994,232.2927784,72.51938973,335.8638412,27.05144361,177.9308533,151.1484287,26.78242456,26.23574277,0.546681792,18.39886647,0,18.39886647,0.815700834,17.58316564,1.435003252,4.054273811,6.972082813,-6.972082813,0,0,0.373023597,0.203925208,6.558935693,0.398366936,1,0.142457589,0,0.946267171,0.985029134,0.724496596,1,25.43785217,0.590972477,0.057321241,0.312029739,0.850342345,0.574838941,0.961238037,0.922476074,0.139605238,6.304698469,25.57745741,6.895670947,90.93589225,0,0.450028881,63.25446304,-0.450028881,116.745537,0.93889602,0,110.9568047,6.895670947,115.4698834,12,16,4% +2018-12-17 01:00:00,92.27093726,241.829913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610431659,4.220728212,-24.9608647,24.9608647,1,0,#DIV/0!,0,0,1,0.736752944,0,0.040041301,0.961238037,1,0.617228912,0.892732316,0,0,0.115824807,0.190362642,0.724496596,0.448993192,0.978942476,0.940180513,0,0,0,0,0,0,0.301047664,72.47946091,-0.301047664,107.5205391,0.883913343,0,0,0,0,12,17,0% +2018-12-17 02:00:00,103.0933136,250.4146778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799317759,4.370560622,-4.299404224,4.299404224,1,0.734604886,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.120243967,83.09381716,-0.120243967,96.90618284,0.634178724,0,0,0,0,12,18,0% +2018-12-17 03:00:00,114.4940855,258.5672933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998298765,4.512850606,-2.170408519,2.170408519,1,0.901315406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.081829129,94.69371186,0.081829129,85.30628814,0,0,0,0,0,12,19,0% +2018-12-17 04:00:00,126.2282712,266.9216507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203098941,4.65866165,-1.305817377,1.305817377,1,0.753461613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291410232,106.9424035,0.291410232,73.05759654,0,0.878420575,0,0,0,12,20,0% +2018-12-17 05:00:00,138.0509457,276.4718738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409443538,4.825344486,-0.804559559,0.804559559,1,0.667741477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494227577,119.6188288,0.494227577,60.38117124,0,0.948832031,0,0,0,12,21,0% +2018-12-17 06:00:00,149.5879676,289.3273285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610802557,5.049714499,-0.454050448,0.454050448,1,0.607800889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676470816,132.5684719,0.676470816,47.43152809,0,0.976086981,0,0,0,12,22,0% +2018-12-17 07:00:00,159.8723934,311.2700807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790299648,5.432687771,-0.176167106,0.176167106,1,0.560280039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825731259,145.6626999,0.825731259,34.33730011,0,0.989447611,0,0,0,12,23,0% +2018-12-18 08:00:00,165.4877952,354.9676465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888306899,6.19535417,0.066852785,-0.066852785,1,0.51872119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93184653,158.7245094,0.93184653,21.27549063,0,0.996343096,0,0,0,12,0,0% +2018-12-18 09:00:00,161.4273102,42.74146171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817438065,0.745979234,0.298692724,-0.298692724,1,0.479074226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987592269,170.9648808,0.987592269,9.035119187,0,0.999371819,0,0,0,12,1,0% +2018-12-18 10:00:00,151.6160766,67.62691401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646199736,1.180312312,0.539872019,-0.539872019,1,0.437830137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989173846,171.5614598,0.989173846,8.438540193,0,0.999452768,0,0,0,12,2,0% +2018-12-18 11:00:00,140.2033002,81.52732063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44700921,1.422920175,0.816267576,-0.816267576,1,0.390563713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936484654,159.4693401,0.936484654,20.53065986,0,0.996608842,0,0,0,12,3,0% +2018-12-18 12:00:00,128.3984518,91.46973448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240975739,1.596448033,1.174204091,-1.174204091,1,0.329352964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833113432,146.4199039,0.833113432,33.58009613,0,0.989984163,0,0,0,12,4,0% +2018-12-18 13:00:00,116.6298543,99.95171381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035574963,1.744486499,1.728004129,-1.728004129,1,0.23464758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686100071,133.322183,0.686100071,46.67781695,0,0.977124333,0,0,0,12,5,0% +2018-12-18 14:00:00,105.1525856,108.0888777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835258836,1.886506801,2.906346451,-2.906346451,1,0.033139175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505456474,120.3616588,0.505456474,59.6383412,0,0.951079514,0,0,0,12,6,0% +2018-12-18 15:00:00,94.20628485,116.5546615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644209847,2.034262602,9.350136036,-9.350136036,1,0,#DIV/0!,0,0,0.516631208,1,0.106545312,0,0.950488823,0.989250786,0.724496596,1,0,0,0.070972964,0.312029739,0.818528749,0.543025345,0.961238037,0.922476074,0,0,0,0,0,0,-0.303485019,107.6670422,0.303485019,72.33295778,0,0.885247222,0,0,0,12,7,0% +2018-12-18 16:00:00,83.94152881,125.8812418,46.32736193,247.1015235,20.24744357,19.98614367,0,19.98614367,19.63690845,0.349235223,34.47584904,22.63270865,11.84314039,0.610535129,11.23260526,1.465056057,2.197042137,-5.284817156,5.284817156,0.56608935,0.56608935,0.437051512,0.263927764,8.488824136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.87574332,0.442330623,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191214767,8.159780647,19.06695809,8.60211127,0,22.63270865,-0.091592752,95.2552436,0.091592752,84.7447564,0,0.504105279,19.06695809,20.01137918,32.16400554,12,8,69% +2018-12-18 17:00:00,75.10985997,136.5475151,197.0170714,580.1543775,47.93683929,111.7473217,63.77075711,47.97656462,46.49136672,1.485197905,49.21454252,0,49.21454252,1.445472573,47.76906995,1.310914357,2.383203724,-1.496786985,1.496786985,0.786119339,0.786119339,0.243313125,1.244832453,40.03809076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.68927008,1.047239958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901876874,38.48613576,45.59114695,39.53337572,63.77075711,0,0.109920324,83.68927738,-0.109920324,96.31072262,0.595125067,0,83.54272305,39.53337572,109.4165268,12,9,31% +2018-12-18 18:00:00,67.9513337,148.9283768,329.3401618,713.0361325,61.67067848,270.413563,208.1197778,62.29378524,59.81107999,2.482705253,81.71193368,0,81.71193368,1.859598497,79.85233519,1.185974504,2.599290524,-0.474145717,0.474145717,0.611237383,0.611237383,0.187255263,1.698257856,54.62181036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.49268511,1.347272781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230382035,52.50456176,58.72306714,53.85183454,208.1197778,0,0.291878305,73.02955908,-0.291878305,106.9704409,0.87869573,0,241.5970272,53.85183454,276.8419759,12,10,15% +2018-12-18 19:00:00,63.13247403,163.088392,416.9193741,770.0325902,68.9191734,409.6547393,339.6708189,69.98392038,66.84100603,3.142914349,103.1650965,0,103.1650965,2.078167363,101.0869292,1.101869537,2.846429412,0.106345748,-0.106345748,0.511967496,0.511967496,0.165305759,1.862623294,59.90836787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25011742,1.50562518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349464236,57.58620192,65.59958166,59.0918271,339.6708189,0,0.441112264,63.82513052,-0.441112264,116.1748695,0.93665017,0,383.752312,59.0918271,422.426731,12,11,10% +2018-12-18 20:00:00,61.23438336,178.4993444,450.6877884,787.9933027,71.4835733,504.021911,431.2963563,72.72555474,69.32807982,3.39747492,111.4299657,0,111.4299657,2.155493481,109.2744722,1.068741605,3.115401273,0.577976608,-0.577976608,0.431313868,0.431313868,0.158609963,1.771827863,56.9880747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.64078734,1.56164769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283683255,54.77910505,67.9244706,56.34075273,431.2963563,0,0.547335053,56.81562211,-0.547335053,123.1843779,0.958648277,0,481.3859796,56.34075273,518.2598754,12,12,8% +2018-12-18 21:00:00,62.53116589,194.0328428,427.6687029,775.9547429,69.74711765,538.9905431,468.1226111,70.86793204,67.64398471,3.22394733,105.7963613,0,105.7963613,2.103132936,103.6932284,1.09137473,3.386511964,1.076541602,-1.076541602,0.346054233,0.346054233,0.163086794,1.459494341,46.94235499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02197107,1.523712653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.057398682,45.12277716,66.07936975,46.64648981,468.1226111,0,0.603285972,52.89439768,-0.603285972,127.1056023,0.967120566,0,518.8103742,46.64648981,549.3395689,12,13,6% +2018-12-18 22:00:00,66.83239812,208.4931994,349.8703466,727.9917743,63.46228086,504.7463457,440.5602163,64.1861294,61.54865894,2.637470458,86.74373811,0,86.74373811,1.913621919,84.83011619,1.166445394,3.638892797,1.749993334,-1.749993334,0.230887204,0.230887204,0.181387996,0.976905956,31.42065365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.16291209,1.386412566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70776504,30.20272743,59.87067713,31.58913999,440.5602163,0,0.60517197,52.75878226,-0.60517197,127.2412177,0.967378857,0,486.0593156,31.58913999,506.7337759,12,14,4% +2018-12-18 23:00:00,73.59553881,221.2221194,224.951782,615.0414507,51.25414304,391.4972058,340.0927827,51.40442307,49.70864152,1.695781553,56.08766546,0,56.08766546,1.54550152,54.54216394,1.284484467,3.861054363,2.977210496,-2.977210496,0.021020709,0.021020709,0.227845019,0.413900027,13.31244763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.78183699,1.11971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29986916,12.79643102,48.08170615,13.91614161,340.0927827,0,0.552959126,56.42974085,-0.552959126,123.5702592,0.959577403,0,374.4270555,13.91614161,383.5348919,12,15,2% +2018-12-18 00:00:00,82.16341853,232.1910127,73.22422493,336.4552423,27.34919035,178.7220196,151.6455131,27.07650649,26.52451135,0.551995138,18.57874009,0,18.57874009,0.824678997,17.7540611,1.434022178,4.052497666,6.917514062,-6.917514062,0,0,0.373499213,0.206169749,6.631127839,0.394970103,1,0.143566045,0,0.946132176,0.984894139,0.724496596,1,25.71775036,0.597477126,0.056909868,0.312029739,0.851323997,0.575820593,0.961238037,0.922476074,0.141151274,6.374092306,25.85890164,6.971569432,91.75006916,0,0.450715263,63.21041624,-0.450715263,116.7895838,0.939065217,0,112.0182002,6.971569432,116.580953,12,16,4% +2018-12-18 01:00:00,92.20282602,241.7362475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609242894,4.219093441,-25.72737571,25.72737571,1,0,#DIV/0!,0,0,1,0.745533739,0,0.038849546,0.961238037,1,0.620239527,0.895742931,0,0,0.115824807,0.193768619,0.724496596,0.448993192,0.97849023,0.939728267,0,0,0,0,0,0,0.302099743,72.41623771,-0.302099743,107.5837623,0.884491749,0,0,0,0,12,17,0% +2018-12-18 02:00:00,103.0173534,250.3250911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797992004,4.36899704,-4.325428791,4.325428791,1,0.730154423,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121563358,83.01766302,-0.121563358,96.98233698,0.638691848,0,0,0,0,12,18,0% +2018-12-18 03:00:00,114.4129722,258.4767439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996883071,4.511270222,-2.179093903,2.179093903,1,0.902800694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080347008,94.60851203,0.080347008,85.39148797,0,0,0,0,0,12,19,0% +2018-12-18 04:00:00,126.1445103,266.8229558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201637038,4.656939098,-1.310514073,1.310514073,1,0.754264795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289880978,106.8508305,0.289880978,73.14916954,0,0.877515415,0,0,0,12,20,0% +2018-12-18 05:00:00,137.9676348,276.3522183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407989488,4.823256105,-0.807753102,0.807753102,1,0.668287605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49276986,119.5227996,0.49276986,60.47720039,0,0.948532755,0,0,0,12,21,0% +2018-12-18 06:00:00,149.5108917,289.1576337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609457328,5.046752765,-0.456553825,0.456553825,1,0.608228992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675198235,132.4695461,0.675198235,47.53045385,0,0.975947674,0,0,0,12,22,0% +2018-12-18 07:00:00,159.8180094,310.9745708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789350468,5.427530151,-0.178344878,0.178344878,1,0.56065246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82474453,145.5625992,0.82474453,34.43740082,0,0.989375166,0,0,0,12,23,0% +2018-12-19 08:00:00,165.5030701,354.5110091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888573495,6.187384343,0.064786456,-0.064786456,1,0.519074553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931226576,158.6268301,0.931226576,21.37316988,0,0.996307374,0,0,0,12,0,0% +2018-12-19 09:00:00,161.5124836,42.49676466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818924622,0.741708465,0.296566072,-0.296566072,1,0.479437904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987394653,170.8930637,0.987394653,9.106936338,0,0.999361686,0,0,0,12,1,0% +2018-12-19 10:00:00,151.7201279,67.52231612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648015773,1.178486735,0.537488513,-0.537488513,1,0.438237741,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989424953,171.6600729,0.989424953,8.339927143,0,0.999465596,0,0,0,12,2,0% +2018-12-19 11:00:00,140.3115628,81.46556211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448898749,1.421842286,0.813314455,-0.813314455,1,0.391068726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937179876,159.5832219,0.937179876,20.41677808,0,0.996648449,0,0,0,12,3,0% +2018-12-19 12:00:00,128.5072485,91.42140643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242874599,1.595604549,1.170022261,-1.170022261,1,0.330068099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834217478,146.5344444,0.834217478,33.4655556,0,0.990063591,0,0,0,12,4,0% +2018-12-19 13:00:00,116.7375456,99.90609886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037454531,1.743690368,1.720716847,-1.720716847,1,0.235893778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687549384,133.4364331,0.687549384,46.56356689,0,0.977277951,0,0,0,12,5,0% +2018-12-19 14:00:00,105.2577776,108.0404621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837094783,1.885661788,2.88725002,-2.88725002,1,0.036404857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507163591,120.475082,0.507163591,59.524918,0,0.951412481,0,0,0,12,6,0% +2018-12-19 15:00:00,94.30724951,116.4993353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645972013,2.033296978,9.139467909,-9.139467909,1,0,#DIV/0!,0,0,0.508064634,1,0.108982037,0,0.950211755,0.988973718,0.724496596,1,0,0,0.070026032,0.312029739,0.820687565,0.545184161,0.961238037,0.922476074,0,0,0,0,0,0,-0.305344576,107.7788956,0.305344576,72.22110436,0,0.886250571,0,0,0,12,7,0% +2018-12-19 16:00:00,84.03400448,125.8150352,44.87469819,240.2912609,19.89925563,19.63750408,0,19.63750408,19.29921965,0.33828443,33.93775836,22.45733227,11.48042609,0.600035978,10.88039012,1.466670062,2.195886613,-5.376493772,5.376493772,0.550411725,0.550411725,0.443440434,0.253638002,8.157870012,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.55114401,0.434724023,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.183759869,7.841654955,18.73490388,8.276378978,0,22.45733227,-0.093458797,95.36262073,0.093458797,84.63737927,0,0.515004885,18.73490388,19.84201481,31.72110573,12,8,69% +2018-12-19 17:00:00,75.19359233,136.4664163,195.1954199,576.1482017,47.95851094,110.2727842,62.28893381,47.98385041,46.51238488,1.471465526,48.7735155,0,48.7735155,1.446126053,47.32738945,1.312375763,2.381788282,-1.51055483,1.51055483,0.788473779,0.788473779,0.245694858,1.236685379,39.77605287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.70947353,1.047713402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.895974347,38.23425497,45.60544788,39.28196838,62.28893381,0,0.108112693,83.79346799,-0.108112693,96.20653201,0.587519615,0,82.2014183,39.28196838,107.910681,12,9,31% +2018-12-19 18:00:00,68.02024341,148.8293081,327.7465594,710.4298927,61.84758175,268.6647314,206.2113904,62.45334097,59.98264896,2.470692005,81.33088062,0,81.33088062,1.864932783,79.46594783,1.187177206,2.59756145,-0.479993069,0.479993069,0.612237339,0.612237339,0.18870551,1.693437723,54.46677832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.65760374,1.351137453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226889865,52.35553906,58.8844936,53.70667651,206.2113904,0,0.290262829,73.12630814,-0.290262829,106.8736919,0.877742325,0,239.8849589,53.70667651,275.0349045,12,10,15% +2018-12-19 19:00:00,63.18078752,162.9716409,415.709762,768.0682045,69.17519329,408.0127316,337.7896299,70.22310177,67.08930599,3.133795782,102.879532,0,102.879532,2.085887307,100.7936447,1.102712766,2.844391721,0.102543604,-0.102543604,0.5126177,0.5126177,0.166402619,1.860595326,59.84314143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48879278,1.511218253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.34799498,57.52350379,65.83678776,59.03472204,337.7896299,0,0.43979119,63.90944098,-0.43979119,116.090559,0.936309683,0,382.1124889,59.03472204,420.7495338,12,11,10% +2018-12-19 20:00:00,61.2573413,178.3710361,449.9328315,786.3673544,71.78730539,502.6767407,429.6623037,73.014437,69.62265327,3.391783737,111.2560763,0,111.2560763,2.164652124,109.0914241,1.069142297,3.113161871,0.574652415,-0.574652415,0.431882339,0.431882339,0.15955116,1.772295769,57.00312416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.92394255,1.568283095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284022252,54.79357116,68.2079648,56.36185426,429.6623037,0,0.546388785,56.88038045,-0.546388785,123.1196195,0.958490069,0,480.0350159,56.36185426,516.9227223,12,12,8% +2018-12-19 21:00:00,62.5272658,193.9035634,427.3923717,774.5338513,70.07941813,538.0530206,466.8648913,71.18812934,67.96626511,3.221864229,105.7393817,0,105.7393817,2.113153022,103.6262287,1.091306661,3.384255613,1.07276366,-1.07276366,0.346700299,0.346700299,0.163969745,1.462151852,47.02782966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.33175924,1.530972171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.059324039,45.20493866,66.39108328,46.73591083,466.8648913,0,0.602768866,52.93153848,-0.602768866,127.0684615,0.967049465,0,517.8725266,46.73591083,548.4602455,12,13,6% +2018-12-19 22:00:00,66.80408703,208.3722658,350.0571988,726.7544521,63.80581173,504.2861691,439.765459,64.52071012,61.88183109,2.638879029,86.79940132,0,86.79940132,1.923980642,84.87542068,1.165951272,3.636782108,1.744337266,-1.744337266,0.231854449,0.231854449,0.182272531,0.981310136,31.56230719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.48316984,1.393917426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710955853,30.3388902,60.19412569,31.73280763,439.765459,0,0.605108724,52.76333404,-0.605108724,127.236666,0.967370221,0,485.610135,31.73280763,506.378623,12,14,4% +2018-12-19 23:00:00,73.5476094,221.1135636,225.5430166,614.2024256,51.58951202,391.5984314,339.864295,51.73413641,50.03389788,1.700238529,56.24112976,0,56.24112976,1.555614132,54.68551563,1.283647941,3.859159706,2.964949722,-2.964949722,0.023117425,0.023117425,0.22873469,0.419218222,13.48349906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.09448578,1.127037143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.303722175,12.96085217,48.39820795,14.08788931,339.864295,0,0.553342483,56.40337518,-0.553342483,123.5966248,0.959640048,0,374.5455964,14.08788931,383.7658382,12,15,2% +2018-12-19 00:00:00,82.1013396,232.0942113,74.02359391,337.3145049,27.66936662,179.6905566,152.2975024,27.39305425,26.83503313,0.558021119,18.78221085,0,18.78221085,0.834333493,17.94787736,1.432938696,4.050808163,6.858725371,-6.858725371,0,0,0.373791181,0.208583373,6.708758282,0.3912674,1,0.144779551,0,0.945984067,0.98474603,0.724496596,1,26.01870437,0.604471775,0.056460167,0.312029739,0.852398646,0.576895242,0.961238037,0.922476074,0.142815105,6.44871364,26.16151948,7.053185416,92.70845458,0,0.45150001,63.16003616,-0.45150001,116.8399638,0.939258031,0,113.23868,7.053185416,117.8548488,12,16,4% +2018-12-19 01:00:00,92.12934971,241.6481826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60796049,4.217556417,-26.61002407,26.61002407,1,0,#DIV/0!,0,0,1,0.754946155,0,0.037562148,0.961238037,1,0.623504352,0.899007756,0,0,0.115824807,0.197462805,0.724496596,0.448993192,0.97799682,0.939234857,0,0,0,0,0,0,0.303244447,72.34742321,-0.303244447,107.6525768,0.885116519,0,0,0,0,12,17,0% +2018-12-19 02:00:00,102.936499,250.241741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796580827,4.367542306,-4.353444698,4.353444698,1,0.725363421,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122966342,82.93667026,-0.122966342,97.06332974,0.643384669,0,0,0,0,12,18,0% +2018-12-19 03:00:00,114.3273076,258.3932279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995387943,4.509812592,-2.188252219,2.188252219,1,0.904366858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078791896,94.51912724,0.078791896,85.48087276,0,0,0,0,0,12,19,0% +2018-12-19 04:00:00,126.0563715,266.732439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200098725,4.655359283,-1.315381952,1.315381952,1,0.755097251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288290177,106.755619,0.288290177,73.24438095,0,0.876563636,0,0,0,12,20,0% +2018-12-19 05:00:00,137.8798604,276.2425104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406457536,4.821341341,-0.811011799,0.811011799,1,0.668844875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491262096,119.4235693,0.491262096,60.57643073,0,0.948221336,0,0,0,12,21,0% +2018-12-19 06:00:00,149.4287868,289.0006446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.608024327,5.044012789,-0.459071795,0.459071795,1,0.60865959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673886365,132.3677296,0.673886365,47.63227038,0,0.975803514,0,0,0,12,22,0% +2018-12-19 07:00:00,159.7570244,310.6943399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788286079,5.422639198,-0.180506327,0.180506327,1,0.56102209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823727793,145.4597202,0.823727793,34.54027979,0,0.989300336,0,0,0,12,23,0% +2018-12-20 08:00:00,165.5097239,354.0547064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888689626,6.179420358,0.062760853,-0.062760853,1,0.519420952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930583773,158.525998,0.930583773,21.47400198,0,0.996270286,0,0,0,12,0,0% +2018-12-20 09:00:00,161.5912475,42.23474809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820299311,0.737135413,0.2945051,-0.2945051,1,0.479790351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987178734,170.8152319,0.987178734,9.184768088,0,0.999350611,0,0,0,12,1,0% +2018-12-20 10:00:00,151.8196959,67.40351981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.649753563,1.176413348,0.535202758,-0.535202758,1,0.438628628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98965938,171.7531924,0.98965938,8.246807627,0,0.999477567,0,0,0,12,2,0% +2018-12-20 11:00:00,140.4160396,81.3928908,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450722214,1.420573932,0.810508991,-0.810508991,1,0.391548489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937857005,159.6947275,0.937857005,20.30527247,0,0.996686969,0,0,0,12,3,0% +2018-12-20 12:00:00,128.6123926,91.36417917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244709709,1.594605745,1.166081636,-1.166081636,1,0.330741985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835299078,146.6469931,0.835299078,33.3530069,0,0.990141201,0,0,0,12,4,0% +2018-12-20 13:00:00,116.8414229,99.85283414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039267532,1.742760723,1.713895639,-1.713895639,1,0.237060274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688969259,133.5485721,0.688969259,46.45142791,0,0.977427822,0,0,0,12,5,0% +2018-12-20 14:00:00,105.3588029,107.985221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838858007,1.88469765,2.869488674,-2.869488674,1,0.039442226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508832121,120.5860692,0.508832121,59.41393079,0,0.951735763,0,0,0,12,6,0% +2018-12-20 15:00:00,94.40354695,116.4377927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64765272,2.032222856,8.948953562,-8.948953562,1,0,#DIV/0!,0,0,0.50005187,1,0.111283246,0,0.949948836,0.988710799,0.724496596,1,0,0,0.069134615,0.312029739,0.822726347,0.547222943,0.961238037,0.922476074,0,0,0,0,0,0,-0.30715487,107.8878531,0.30715487,72.11214688,0,0.887215669,0,0,0,12,7,0% +2018-12-20 16:00:00,84.12125244,125.7431724,43.51094934,233.7787958,19.56649058,19.30449261,0,19.30449261,18.97648869,0.328003915,33.41070223,22.27096693,11.1397353,0.590001884,10.54973342,1.468192826,2.19463237,-5.466935469,5.466935469,0.534945284,0.534945284,0.44969119,0.244059937,7.849806531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.24092274,0.427454356,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176820594,7.545532619,18.41774333,7.972986976,0,22.27096693,-0.095265128,95.46657974,0.095265128,84.53342026,0,0.525148976,18.41774333,19.66856246,31.29042409,12,8,70% +2018-12-20 17:00:00,75.27134925,136.3803498,193.4859783,572.2759746,47.98962168,108.878082,60.8769454,48.00113656,46.54255752,1.458579033,48.35997969,0,48.35997969,1.447064156,46.91291553,1.313732877,2.380286139,-1.524132141,1.524132141,0.790795636,0.790795636,0.248026354,1.229120968,39.53275542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.73847662,1.048393055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890493958,38.00038821,45.62897058,39.04878127,60.8769454,0,0.106376902,83.89349841,-0.106376902,96.10650159,0.579973153,0,80.93596453,39.04878127,106.4926109,12,9,32% +2018-12-20 18:00:00,68.08245192,148.726288,326.2767982,707.91207,62.03308986,267.017638,204.3954624,62.62217565,60.16256332,2.459612325,80.98011376,0,80.98011376,1.870526537,79.10958722,1.188262949,2.59576341,-0.48588203,0.48588203,0.61324441,0.61324441,0.190124122,1.689202658,54.33056409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.83054426,1.355190109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223821576,52.22460477,59.05436584,53.57979487,204.3954624,0,0.288730015,73.21806087,-0.288730015,106.7819391,0.876827841,0,238.2739978,53.57979487,273.340902,12,10,15% +2018-12-20 19:00:00,63.22180551,162.8524331,414.6311755,766.1762721,69.43979613,406.4873772,336.0157822,70.47159501,67.34593007,3.125664942,102.625995,0,102.625995,2.093866059,100.5321289,1.103428665,2.842311152,0.098608785,-0.098608785,0.513290594,0.513290594,0.167473649,1.859150492,59.79667061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.73546961,1.516998832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346948203,57.47883427,66.08241781,58.9958331,336.0157822,0,0.438561979,63.98783431,-0.438561979,116.0121657,0.935991029,0,380.5901756,58.9958331,419.2017684,12,11,10% +2018-12-20 20:00:00,61.27270246,178.24218,449.3123684,784.8107189,72.09989022,501.4596504,428.1467314,73.31291894,69.92581251,3.387106424,111.1150634,0,111.1150634,2.17407771,108.9409857,1.0694104,3.110912907,0.571122493,-0.571122493,0.432485991,0.432485991,0.160467183,1.773330968,57.03641971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21535074,1.5751119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28477225,54.82557612,68.50012299,56.40068802,428.1467314,0,0.545541391,56.93833182,-0.545541391,123.0616682,0.958347926,0,478.813655,56.40068802,515.7267773,12,12,8% +2018-12-20 21:00:00,62.51585469,193.7757072,427.2502217,773.1889092,70.42110843,537.2526395,465.7341947,71.51844482,68.29765218,3.220792642,105.715219,0,105.715219,2.123456245,103.5917628,1.091107499,3.3820241,1.068678934,-1.068678934,0.347398828,0.347398828,0.164824042,1.465342099,47.13043898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.65030111,1.538436821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.061635362,45.30357064,66.71193647,46.84200746,465.7341947,0,0.602354986,52.96125205,-0.602354986,127.0387479,0.966992469,0,517.0733954,46.84200746,547.7305525,12,13,6% +2018-12-20 22:00:00,66.76868413,208.2543955,350.3737861,725.6131983,64.15985555,503.9713533,439.1048885,64.86646478,62.22519918,2.641265598,86.88683729,0,86.88683729,1.93465637,84.95218092,1.165333375,3.634724884,1.73817708,-1.73817708,0.232907903,0.232907903,0.18311831,0.986186534,31.71914892,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.81322831,1.401651954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714488787,30.48965244,60.52771709,31.89130439,439.1048885,0,0.605150085,52.76035736,-0.605150085,127.2396426,0.967375869,0,485.3071901,31.89130439,506.179411,12,14,4% +2018-12-20 23:00:00,73.49319307,221.0092416,226.2539589,613.5083596,51.93828649,391.856291,339.7785375,52.07775343,50.37215552,1.705597912,56.42402278,0,56.42402278,1.56613097,54.85789181,1.282698197,3.857338943,2.951642858,-2.951642858,0.025393033,0.025393033,0.229557471,0.424900843,13.66627168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.41963189,1.134656556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307839214,13.13654016,48.7274711,14.27119672,339.7785375,0,0.553828701,56.36992358,-0.553828701,123.6300764,0.959719377,0,374.8195175,14.27119672,384.1597304,12,15,2% +2018-12-20 00:00:00,82.03344748,232.0024502,74.91710872,338.4340692,28.01184235,180.8335607,153.1016219,27.73193876,27.16718195,0.564756811,19.00918077,0,19.00918077,0.8446604,18.16452037,1.431753755,4.049206628,6.795996704,-6.795996704,0,0,0.373904477,0.2111651,6.791795488,0.387266238,1,0.14609705,0,0.945822887,0.98458485,0.724496596,1,26.34058377,0.611953584,0.055972704,0.312029739,0.85356535,0.578061946,0.961238037,0.922476074,0.144596382,6.528532161,26.48518015,7.140485746,93.81053273,0,0.452382416,63.10335966,-0.452382416,116.8966403,0.939474042,0,114.6177405,7.140485746,119.2910456,12,16,4% +2018-12-20 01:00:00,92.0505788,241.5657877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606585678,4.216118356,-27.62728309,27.62728309,1,0,#DIV/0!,0,0,1,0.764965656,0,0.036180308,0.961238037,1,0.627023233,0.902526637,0,0,0.115824807,0.201445184,0.724496596,0.448993192,0.977461552,0.938699589,0,0,0,0,0,0,0.304480709,72.27307513,-0.304480709,107.7269249,0.885785984,0,0,0,0,12,17,0% +2018-12-20 02:00:00,102.8508314,250.1646908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795085647,4.366197527,-4.383493889,4.383493889,1,0.720224706,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124451627,82.85091098,-0.124451627,97.14908902,0.648237473,0,0,0,0,12,18,0% +2018-12-20 03:00:00,114.237182,258.3168039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993814955,4.50847874,-2.197884616,2.197884616,1,0.906014095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.077165222,94.42564106,0.077165222,85.57435894,0,0,0,0,0,12,19,0% +2018-12-20 04:00:00,125.9639535,266.6501567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198485727,4.653923185,-1.320419273,1.320419273,1,0.755958684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286639293,106.656862,0.286639293,73.34313804,0,0.875564739,0,0,0,12,20,0% +2018-12-20 05:00:00,137.7877306,276.1428107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404849567,4.819601253,-0.814333747,0.814333747,1,0.669412962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489705677,119.3212384,0.489705677,60.67876156,0,0.947897855,0,0,0,12,21,0% +2018-12-20 06:00:00,149.3417729,288.8564584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606505648,5.041496265,-0.461602614,0.461602614,1,0.609092386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672536432,132.2631309,0.672536432,47.73686906,0,0.975654585,0,0,0,12,22,0% +2018-12-20 07:00:00,159.6895667,310.4297337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787108719,5.418020949,-0.182649873,0.182649873,1,0.561388657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822682017,145.3541822,0.822682017,34.64581781,0,0.989223176,0,0,0,12,23,0% +2018-12-21 08:00:00,165.5077654,353.5998974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888655443,6.171482444,0.060777436,-0.060777436,1,0.519760136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929918767,158.4221558,0.929918767,21.5778442,0,0.996231863,0,0,0,12,0,0% +2018-12-21 09:00:00,161.6634741,41.95569889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.821559904,0.732265086,0.292511176,-0.292511176,1,0.480131332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986944792,170.7316347,0.986944792,9.268365304,0,0.999338605,0,0,0,12,1,0% +2018-12-21 10:00:00,151.9146642,67.2705535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.651411072,1.174092648,0.533016036,-0.533016036,1,0.439002579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989877017,171.8405869,0.989877017,8.159413094,0,0.999488675,0,0,0,12,2,0% +2018-12-21 11:00:00,140.5166252,81.30932404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452477763,1.419115417,0.807852284,-0.807852284,1,0.392002813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938515546,159.8037377,0.938515546,20.19626235,0,0.996724377,0,0,0,12,3,0% +2018-12-21 12:00:00,128.7137851,91.29807922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246479342,1.593452083,1.16238271,-1.16238271,1,0.331374539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836357387,146.7574443,0.836357387,33.24255573,0,0.990216945,0,0,0,12,4,0% +2018-12-21 13:00:00,116.941393,99.79195619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041012339,1.741698202,1.707538137,-1.707538137,1,0.23814747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690358558,133.6584985,0.690358558,46.34150146,0,0.977573868,0,0,0,12,5,0% +2018-12-21 14:00:00,105.4555746,107.9232009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840546991,1.883615195,2.853036537,-2.853036537,1,0.042255707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51046071,120.6945223,0.51046071,59.3054777,0,0.952049268,0,0,0,12,6,0% +2018-12-21 15:00:00,94.49509815,116.3700899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64925059,2.031041219,8.776849362,-8.776849362,1,0,#DIV/0!,0,0,0.492585649,1,0.113446888,0,0.949700519,0.988462482,0.724496596,1,0,0,0.068298996,0.312029739,0.824643264,0.54913986,0.961238037,0.922476074,0,0,0,0,0,0,-0.308914422,107.9938207,0.308914422,72.00617927,0,0.888142876,0,0,0,12,7,0% +2018-12-21 16:00:00,84.20321121,125.6657197,42.23504404,227.571345,19.2502158,18.98813637,0,18.98813637,18.66975077,0.318385602,32.89761868,22.07677824,10.82084044,0.580465032,10.24037541,1.469623276,2.193280566,-5.555772557,5.555772557,0.519753247,0.519753247,0.455787753,0.235173562,7.563990166,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.94607458,0.42054494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.170382445,7.270795058,18.11645702,7.691339998,0,22.07677824,-0.097010361,95.56703954,0.097010361,84.43296046,0,0.534591133,18.11645702,19.4933899,30.87449085,12,8,70% +2018-12-21 17:00:00,75.34307624,136.2893908,191.8894865,568.5428624,48.03071102,107.563553,59.53460109,48.02895187,46.58240787,1.446544003,47.97413077,0,47.97413077,1.448303152,46.52582761,1.314984749,2.378698605,-1.53748847,1.53748847,0.793079703,0.793079703,0.250304026,1.222145518,39.30840096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.77678229,1.049290703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885440268,37.78473017,45.66222256,38.83402088,59.53460109,0,0.104714358,83.98929022,-0.104714358,96.01070978,0.572510564,0,79.74641058,38.83402088,105.1625006,12,9,32% +2018-12-21 18:00:00,68.13791994,148.6193973,324.9316046,705.4852422,62.22750184,265.4731652,202.6725805,62.80058475,60.35111307,2.449471687,80.65981823,0,80.65981823,1.876388776,78.78342945,1.189231048,2.593897815,-0.491802779,0.491802779,0.614256918,0.614256918,0.191509539,1.685555926,54.21327266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.01178545,1.35943728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221179531,52.11185978,59.23296498,53.47129706,202.6725805,0,0.287281106,73.3047504,-0.287281106,106.6952496,0.875954443,0,236.7649124,53.47129706,271.7608069,12,10,15% +2018-12-21 19:00:00,63.25550583,162.7308508,413.6840586,764.3582817,69.71317933,405.0794885,334.3498936,70.72959493,67.61106976,3.118525175,102.4045991,0,102.4045991,2.102109571,100.3024895,1.104016847,2.84018914,0.09454715,-0.09454715,0.513985175,0.513985175,0.168517925,1.858289811,59.76898815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.99033196,1.522971228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346324642,57.45222483,66.33665661,58.97519606,334.3498936,0,0.437425618,64.06025957,-0.437425618,115.9397404,0.935694852,0,379.1861308,58.97519606,417.7842171,12,11,10% +2018-12-21 20:00:00,61.28046187,178.1128571,448.8264756,783.3242849,72.42146883,500.3711442,426.7500063,73.6211379,70.23769434,3.383443558,111.0069498,0,111.0069498,2.183774492,108.8231753,1.069545827,3.108655797,0.567392266,-0.567392266,0.433123898,0.433123898,0.16135739,1.774932654,57.08793545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.51514342,1.582137186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285932666,54.875095,68.80107609,56.45723219,426.7500063,0,0.544793535,56.98944433,-0.544793535,123.0105557,0.958222112,0,477.7223685,56.45723219,514.6724978,12,12,8% +2018-12-21 21:00:00,62.49694447,193.6493547,427.2419407,771.9203135,70.77229241,536.5894559,464.730479,71.85897689,68.63824667,3.220730216,105.7238007,0,105.7238007,2.134045738,103.5897549,1.090777454,3.379818835,1.064294567,-1.064294567,0.348148599,0.348148599,0.165649216,1.46906289,47.2501124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.97769348,1.546108873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064331063,45.41860529,67.04202455,46.96471416,464.730479,0,0.602044629,52.98352579,-0.602044629,127.0164742,0.966949679,0,516.4130118,46.96471416,547.1504779,12,13,6% +2018-12-21 22:00:00,66.72621808,208.1396688,350.8194357,724.567702,64.52448656,503.8013679,438.5779076,65.22346031,62.57883522,2.644625093,87.00588518,0,87.00588518,1.94565134,85.06023384,1.164592203,3.632722525,1.731525859,-1.731525859,0.234045328,0.234045328,0.183925062,0.991532332,31.89108815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.15315671,1.409617772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.718361799,30.65492697,60.87151851,32.06454474,438.5779076,0,0.605295967,52.74985758,-0.605295967,127.2501424,0.967395782,0,485.1499364,32.06454474,506.1355396,12,14,4% +2018-12-21 23:00:00,73.43233418,220.9092305,227.0836957,612.9571561,52.30049242,392.2693566,339.8340642,52.43529243,50.72343961,1.711852819,56.63612392,0,56.63612392,1.577052815,55.0590711,1.281636009,3.85559342,2.937327033,-2.937327033,0.027841183,0.027841183,0.230313728,0.430946457,13.86071944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.75729951,1.142569396,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312219241,13.32345075,49.06951875,14.46602014,339.8340642,0,0.554417321,56.32940935,-0.554417321,123.6705907,0.959815227,0,375.2474283,14.46602014,384.7151492,12,15,3% +2018-12-21 00:00:00,81.95979783,231.9158007,75.90441318,339.8060955,28.37644872,182.1480725,154.0550789,28.09299363,27.5207941,0.572199529,19.25955839,0,19.25955839,0.855654627,18.40390377,1.430468326,4.047694309,6.729615123,-6.729615123,0,0,0.373844518,0.213913657,6.880198524,0.382974391,1,0.147517449,0,0.945648677,0.984410641,0.724496596,1,26.68322078,0.619918864,0.05544807,0.312029739,0.854823126,0.579319722,0.961238037,0.922476074,0.14649459,6.613508523,26.82971537,7.233427387,95.05592891,0,0.453361729,63.04042558,-0.453361729,116.9595744,0.93971279,0,116.1549876,7.233427387,120.8891211,12,16,4% +2018-12-21 01:00:00,91.96658447,241.4891274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605119701,4.214780382,-28.80251198,28.80251198,1,0,#DIV/0!,0,0,1,0.77556703,0,0.034705254,0.961238037,1,0.630796111,0.906299515,0,0,0.115824807,0.205715858,0.724496596,0.448993192,0.976883664,0.938121701,0,0,0,0,0,0,0.305807431,72.1932525,-0.305807431,107.8067475,0.886498414,0,0,0,0,12,17,0% +2018-12-21 02:00:00,102.7604318,250.093998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793507876,4.364963704,-4.415623127,4.415623127,1,0.714730283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126017904,82.76045775,-0.126017904,97.23954225,0.653230983,0,0,0,0,12,18,0% +2018-12-21 03:00:00,114.1426848,258.2475229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992165667,4.50726956,-2.207992669,2.207992669,1,0.907742674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.075468411,94.32813658,0.075468411,85.67186342,0,0,0,0,0,12,19,0% +2018-12-21 04:00:00,125.8673535,266.5761554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196799739,4.652631619,-1.325624397,1.325624397,1,0.756848813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284929769,106.5546506,0.284929769,73.44534942,0,0.87451816,0,0,0,12,20,0% +2018-12-21 05:00:00,137.691351,276.0531663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403167427,4.818036663,-0.817717099,0.817717099,1,0.669991549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488101964,119.2159054,0.488101964,60.78409463,0,0.947562387,0,0,0,12,21,0% +2018-12-21 06:00:00,149.2499673,288.7251486,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903337,5.039204477,-0.464144588,0.464144588,1,0.609527089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671149619,132.155855,0.671149619,47.84414496,0,0.975500963,0,0,0,12,22,0% +2018-12-21 07:00:00,159.6157639,310.181047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785820619,5.413680548,-0.184773983,0.184773983,1,0.561751902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821608127,145.2460989,0.821608127,34.75390107,0,0.989143737,0,0,0,12,23,0% +2018-12-22 08:00:00,165.4972127,353.1477239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888471265,6.163590527,0.058837606,-0.058837606,1,0.520091866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929232162,158.3154378,0.929232162,21.68456224,0,0.996192134,0,0,0,12,0,0% +2018-12-22 09:00:00,161.7290383,41.65995005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822704214,0.727103295,0.290585601,-0.290585601,1,0.480460625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986693066,170.6425092,0.986693066,9.357490753,0,0.99932568,0,0,0,12,1,0% +2018-12-22 10:00:00,152.0049168,67.12346385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652986277,1.171525449,0.530929542,-0.530929542,1,0.439359391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990077723,171.9220147,0.990077723,8.077985298,0,0.999498914,0,0,0,12,2,0% +2018-12-22 11:00:00,140.6132153,81.21488846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454163579,1.417467205,0.805345338,-0.805345338,1,0.392431526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939154989,159.9101286,0.939154989,20.0898714,0,0.996760651,0,0,0,12,3,0% +2018-12-22 12:00:00,128.8113293,91.22313901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248181811,1.59214413,1.158925871,-1.158925871,1,0.331965693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837391559,146.8656912,0.837391559,33.13430883,0,0.990290776,0,0,0,12,4,0% +2018-12-22 13:00:00,117.0373654,99.7235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042687374,1.740503514,1.701641966,-1.701641966,1,0.239155775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691716159,133.7661117,0.691716159,46.23388827,0,0.977716016,0,0,0,12,5,0% +2018-12-22 14:00:00,105.5480092,107.8544509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842160279,1.882415281,2.837869264,-2.837869264,1,0.044849463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.512048038,120.8003451,0.512048038,59.19965493,0,0.952352912,0,0,0,12,6,0% +2018-12-22 15:00:00,94.58182817,116.2962849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.650764314,2.029753079,8.621648217,-8.621648217,1,0,#DIV/0!,0,0,0.485658881,1,0.115471136,0,0.949467222,0.988229185,0.724496596,1,0,0,0.067519397,0.312029739,0.826436684,0.55093328,0.961238037,0.922476074,0,0,0,0,0,0,-0.310621806,108.0967074,0.310621806,71.90329258,0,0.88903255,0,0,0,12,7,0% +2018-12-22 16:00:00,84.27982374,125.5827439,41.04583292,221.6750381,18.9514498,18.68941449,0,18.68941449,18.37999367,0.309420826,32.40130677,21.87781323,10.52349354,0.571456135,9.952037403,1.470960417,2.191832365,-5.642622591,5.642622591,0.504901017,0.504901017,0.461714344,0.226958728,7.299772848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.66754903,0.414018024,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.164430826,7.016819322,17.83197985,7.430837346,0,21.87781323,-0.098693175,95.66392263,0.098693175,84.33607737,0,0.543379353,17.83197985,19.31878934,30.4757411,12,8,71% +2018-12-22 17:00:00,75.40872331,136.1936138,190.406597,564.9537445,48.0823079,106.3294574,58.26164312,48.06781427,46.63244892,1.435365357,47.61614289,0,47.61614289,1.449858988,46.1662839,1.316130507,2.377026981,-1.550593532,1.550593532,0.795320801,0.795320801,0.25252438,1.215764919,39.10317895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.82488365,1.050417901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880817545,37.58746297,45.70570119,38.63788087,58.26164312,0,0.103126395,84.08076912,-0.103126395,95.91923088,0.565158075,0,78.63273925,38.63788087,103.9204595,12,9,32% +2018-12-22 18:00:00,68.18661256,148.508715,323.7116119,703.1518123,62.43110697,264.0320954,201.0432418,62.98885361,60.54857875,2.440274866,80.37015632,0,80.37015632,1.882528221,78.4876281,1.190080895,2.591966045,-0.497745411,0.497745411,0.615273168,0.615273168,0.192860264,1.682500428,54.11499731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20159697,1.363885288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218965832,52.01739378,59.4205628,53.38127907,201.0432418,0,0.285917263,73.38631439,-0.285917263,106.6136856,0.875124235,0,235.3583761,53.38127907,270.2953556,12,10,15% +2018-12-22 19:00:00,63.2818702,162.6069736,412.868764,762.6155841,69.99553077,403.7897693,332.7924829,70.9972864,67.88490726,3.112379139,102.2154354,0,102.2154354,2.110623509,100.1048119,1.104476992,2.838027077,0.090364767,-0.090364767,0.514700404,0.514700404,0.169534576,1.858013985,59.76011665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.25355499,1.529139547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346124807,57.44369721,66.59967979,58.97283675,332.7924829,0,0.436383008,64.12667045,-0.436383008,115.8733295,0.935421753,0,377.9010076,58.97283675,416.4975498,12,11,10% +2018-12-22 20:00:00,61.28061785,177.9831459,448.4751461,781.9088126,72.75217254,499.4116155,425.4723943,73.9392212,70.55842612,3.380795088,110.9317379,0,110.9317379,2.193746429,108.7379914,1.069548549,3.106391909,0.563467468,-0.563467468,0.433795078,0.433795078,0.162221191,1.777099774,57.15763748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.823443,1.58936182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287502737,54.94209524,69.11094574,56.53145706,425.4723943,0,0.544145797,57.03369028,-0.544145797,122.9663097,0.958112862,0,476.7615191,56.53145706,513.7602271,12,12,8% +2018-12-22 21:00:00,62.47054979,193.5245842,427.3671461,770.7283232,71.13306339,536.0634167,463.8536036,72.20981314,68.98813907,3.221674068,105.7650368,0,105.7650368,2.144924314,103.6201125,1.090316779,3.377641179,1.059618176,-1.059618176,0.348948309,0.348948309,0.166444857,1.47331187,47.38677421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.31402337,1.553990364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.067409434,45.54996981,67.3814328,47.10396018,463.8536036,0,0.601838014,52.99835055,-0.601838014,127.0016495,0.966921167,0,515.8913004,47.10396018,546.7199003,12,13,6% +2018-12-22 22:00:00,66.67671975,208.0281632,351.3934228,723.6174823,64.89976594,503.7755765,438.1838259,65.59175059,62.94279854,2.64895205,87.15637105,0,87.15637105,1.956967398,85.19940366,1.163728294,3.630776385,1.724397498,-1.724397498,0.23526435,0.23526435,0.184692603,0.997344666,32.0780328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50301211,1.417816218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.722572815,30.83462528,61.22558492,32.2524415,438.1838259,0,0.605546213,52.73184282,-0.605546213,127.2681572,0.967429919,0,485.137728,32.2524415,506.2463059,12,14,4% +2018-12-22 23:00:00,73.36507879,220.8136045,228.0312883,612.5464807,52.67613567,392.8360983,340.0293463,52.80675199,51.08775582,1.718996172,56.87720575,0,56.87720575,1.588379845,55.2888259,1.280462181,3.853924432,2.922041177,-2.922041177,0.030455218,0.030455218,0.231003982,0.437353751,14.06680004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.10749411,1.15077579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316861304,13.52154325,49.42435542,14.67231904,340.0293463,0,0.555107828,56.28185799,-0.555107828,123.718142,0.95992741,0,375.827845,14.67231904,385.4305844,12,15,3% +2018-12-22 00:00:00,81.88044731,231.8343309,76.98517961,341.422502,28.76298024,183.6310873,155.1550702,28.47601706,27.89567026,0.580346803,19.53325808,0,19.53325808,0.867309978,18.6659481,1.429083399,4.046272393,6.659871955,-6.659871955,0,0,0.373617109,0.216827495,6.973917565,0.378399954,1,0.149039614,0,0.945461479,0.984223442,0.724496596,1,27.04641216,0.628363127,0.05488688,0.312029739,0.856170958,0.580667554,0.961238037,0.922476074,0.14850906,6.703594829,27.19492122,7.331957956,96.44439874,0,0.454437154,62.9712744,-0.454437154,117.0287256,0.939973785,0,117.8501278,7.331957956,122.6487476,12,16,4% +2018-12-22 01:00:00,91.87743838,241.418262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603563808,4.213543546,-30.16557981,30.16557981,1,0,#DIV/0!,0,0,1,0.786724525,0,0.03313823,0.961238037,1,0.634823017,0.910326421,0,0,0.115824807,0.210275045,0.724496596,0.448993192,0.976262325,0.937500362,0,0,0,0,0,0,0.30722349,72.10801549,-0.30722349,107.8919845,0.887252028,0,0,0,0,12,17,0% +2018-12-22 02:00:00,102.665381,250.0297151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791848926,4.363841756,-4.449884232,4.449884232,1,0.708871289,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127663859,82.66538357,-0.127663859,97.33461643,0.658346478,0,0,0,0,12,18,0% +2018-12-22 03:00:00,114.0439044,258.1854303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990441624,4.506185839,-2.218578367,2.218578367,1,0.909552935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.073702881,94.22669655,0.073702881,85.77330345,0,0,0,0,0,12,19,0% +2018-12-22 04:00:00,125.7666669,266.510474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195042426,4.651485263,-1.330995768,1.330995768,1,0.757767371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283163025,106.449075,0.283163025,73.55092499,0,0.873423274,0,0,0,12,20,0% +2018-12-22 05:00:00,137.5908248,275.973613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401412914,4.816648195,-0.821160043,0.821160043,1,0.670580327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486452285,119.1076661,0.486452285,60.89233395,0,0.947214996,0,0,0,12,21,0% +2018-12-22 06:00:00,149.1534841,288.6067687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603219388,5.037138357,-0.46669605,0.46669605,1,0.609963415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669727069,132.0460034,0.669727069,47.95399663,0,0.975342722,0,0,0,12,22,0% +2018-12-22 07:00:00,159.5357424,309.9485281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78442398,5.409622326,-0.186877162,0.186877162,1,0.562111567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820507004,145.1355791,0.820507004,34.86442093,0,0.989062068,0,0,0,12,23,0% +2018-12-23 08:00:00,165.4780928,352.699306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888137559,6.155764159,0.056942723,-0.056942723,1,0.52041591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928524517,158.20597,0.928524517,21.79402999,0,0.996151126,0,0,0,12,0,0% +2018-12-23 09:00:00,161.7878159,41.34788097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823730077,0.721656662,0.288729629,-0.288729629,1,0.480778015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986423754,170.5480797,0.986423754,9.451920259,0,0.999311845,0,0,0,12,1,0% +2018-12-23 10:00:00,152.0903373,66.9623155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654477146,1.16871288,0.528944422,-0.528944422,1,0.439698866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990261323,171.9972235,0.990261323,8.002776549,0,0.999508277,0,0,0,12,2,0% +2018-12-23 11:00:00,140.7057059,81.10961946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455777845,1.415629915,0.802989098,-0.802989098,1,0.392834466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939774799,160.0137712,0.939774799,19.98622882,0,0.996795764,0,0,0,12,3,0% +2018-12-23 12:00:00,128.9049297,91.13939624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249815445,1.590682543,1.155711466,-1.155711466,1,0.332515389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83840074,146.971625,0.83840074,33.02837497,0,0.990362648,0,0,0,12,4,0% +2018-12-23 13:00:00,117.1292517,99.64752647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044291092,1.739177428,1.696204858,-1.696204858,1,0.240085575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693040945,133.8713107,0.693040945,46.1286893,0,0.97785419,0,0,0,12,5,0% +2018-12-23 14:00:00,105.6360257,107.7790224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843696457,1.881098806,2.823964267,-2.823964267,1,0.047227358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513592802,120.9034422,0.513592802,59.09655776,0,0.952646611,0,0,0,12,6,0% +2018-12-23 15:00:00,94.66366493,116.216437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652192635,2.028359471,8.482046898,-8.482046898,1,0,#DIV/0!,0,0,0.479264781,1,0.11735435,0,0.949249332,0.988011295,0.724496596,1,0,0,0.066796,0.312029739,0.828105146,0.552601742,0.961238037,0.922476074,0,0,0,0,0,0,-0.312275625,108.1964239,0.312275625,71.80357613,0,0.889885038,0,0,0,12,7,0% +2018-12-23 16:00:00,84.35103602,125.4943122,39.94212403,216.0950028,18.67116505,18.40926114,0,18.40926114,18.10816054,0.301100603,31.92441997,21.67698505,10.24743492,0.563004516,9.684430405,1.472203306,2.190288941,-5.727092224,5.727092224,0.490455859,0.490455859,0.467455487,0.219395468,7.056512408,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.40625269,0.407894855,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15895127,6.782988134,17.56520396,7.190882989,0,21.67698505,-0.100312292,95.75715392,0.100312292,84.24284608,0,0.5515566,17.56520396,19.14696715,30.09651102,12,8,71% +2018-12-23 17:00:00,75.4682436,136.0930926,189.0379022,561.5132273,48.144932,105.176002,57.05776974,48.11823222,46.69318466,1.425047556,47.28617532,0,47.28617532,1.451747336,45.83442798,1.317169332,2.375272555,-1.563417221,1.563417221,0.797513781,0.797513781,0.254684015,1.209984772,38.91726955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.88326516,1.051786003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876629848,37.40875978,45.75989501,38.46054579,57.05776974,0,0.101614293,84.16786375,-0.101614293,95.83213625,0.557943239,0,77.59489187,38.46054579,102.7665499,12,9,32% +2018-12-23 18:00:00,68.22849784,148.3943188,322.6173859,700.9140186,62.64418611,262.6951366,199.5078777,63.1872589,60.75523277,2.432026129,80.11127368,0,80.11127368,1.888953344,78.22232034,1.190811931,2.589969454,-0.503699941,0.503699941,0.616291453,0.616291453,0.194174861,1.680038802,54.03582295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.40024067,1.368540267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.217182393,51.94128837,59.61742307,53.30982864,199.5078777,0,0.284639588,73.46269374,-0.284639588,106.5373063,0.874339263,0,234.0549937,53.30982864,268.9452104,12,10,15% +2018-12-23 19:00:00,63.30088296,162.4808794,412.1855764,760.9494006,70.28703003,402.6188398,331.3439941,71.27484573,68.16761675,3.107228983,102.0585784,0,102.0585784,2.119413287,99.93916513,1.104808827,2.835826317,0.086067906,-0.086067906,0.515435211,0.515435211,0.170522779,1.858323489,59.77007136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5253061,1.535507712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346349042,57.45326605,66.87165514,58.98877377,331.3439941,0,0.435434989,64.18702385,-0.435434989,115.8129762,0.935172296,0,376.7353789,58.98877377,415.3423516,12,11,10% +2018-12-23 20:00:00,61.27317087,177.8531229,448.2583102,780.5649415,73.09212409,498.5813697,424.3140823,74.26728736,70.88812687,3.379160487,110.8894143,0,110.8894143,2.203997223,108.6854171,1.069418575,3.104122579,0.559354131,-0.559354131,0.4344985,0.4344985,0.163058046,1.779831096,57.24548616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.14036391,1.596788485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28948157,55.02653874,69.42984548,56.62332722,424.3140823,0,0.543598693,57.07104483,-0.543598693,122.9289552,0.958020382,0,475.9313849,56.62332722,512.9902201,12,12,8% +2018-12-23 21:00:00,62.43668709,193.4014723,427.6254017,769.6130682,71.50350511,535.6743806,463.1033491,72.57103152,69.34741061,3.223620908,105.838824,0,105.838824,2.156094499,103.6827295,1.089725764,3.37549247,1.054657812,-1.054657812,0.349796582,0.349796582,0.167210612,1.478086577,47.54034521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.65936884,1.562083125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.070868694,45.6975881,67.73023753,47.25967123,463.1033491,0,0.601735298,53.00571942,-0.601735298,126.9942806,0.966906985,0,515.5081007,47.25967123,546.4386103,12,13,6% +2018-12-23 22:00:00,66.62022154,207.9199551,352.0949828,722.7619006,65.2857428,503.893255,437.9218775,65.97137748,63.31713678,2.654240706,87.33811101,0,87.33811101,1.968606024,85.36950498,1.162742214,3.628887797,1.71680662,-1.71680662,0.236562466,0.236562466,0.185420827,1.00362066,32.27989034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.86284025,1.426248363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.727119752,31.02865842,61.58996001,32.45490678,437.9218775,0,0.605900611,52.70632292,-0.605900611,127.2936771,0.967478215,0,485.2698364,32.45490678,506.5109237,12,14,4% +2018-12-23 23:00:00,73.29147415,220.7224365,229.0957801,612.2737835,53.0652032,393.5549005,340.3627882,53.19211229,51.46509153,1.727020761,57.14703592,0,57.14703592,1.600111666,55.54692426,1.279177538,3.85233325,2.905825749,-2.905825749,0.03322822,0.03322822,0.231628899,0.444121527,14.28447496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.47020355,1.159275455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321764534,13.73078067,49.79196808,14.89005612,340.3627882,0,0.55589966,56.22729648,-0.55589966,123.7727035,0.96005571,0,376.5592066,14.89005612,386.3044505,12,15,3% +2018-12-23 00:00:00,81.79545342,231.7581066,78.15910544,343.2750009,29.17119688,185.2795643,156.3987903,28.88077402,28.29157767,0.589196351,19.83019922,0,19.83019922,0.879619216,18.95058001,1.427599975,4.044942029,6.587060117,-6.587060117,0,0,0.373228387,0.219904804,7.072894417,0.373551311,1,0.150662378,0,0.945261331,0.984023294,0.724496596,1,27.42992123,0.637281128,0.054289773,0.312029739,0.8576078,0.582104396,0.961238037,0.922476074,0.150638981,6.798735144,27.58056021,7.436016272,97.97581711,0,0.455607865,62.89594784,-0.455607865,117.1040522,0.940256504,0,119.7029595,7.436016272,124.5696834,12,16,4% +2018-12-23 01:00:00,91.78321255,241.353249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601919257,4.212408856,-31.75519775,31.75519775,1,0,#DIV/0!,0,0,1,0.798411984,0,0.031480504,0.961238037,1,0.639104072,0.914607476,0,0,0.115824807,0.215123071,0.724496596,0.448993192,0.97559664,0.936834677,0,0,0,0,0,0,0.308727738,72.01742522,-0.308727738,107.9825748,0.888045002,0,0,0,0,12,17,0% +2018-12-23 02:00:00,102.5657595,249.9718911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790110204,4.362832537,-4.486334335,4.486334335,1,0.702637954,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129388165,82.56576185,-0.129388165,97.43423815,0.663565893,0,0,0,0,12,18,0% +2018-12-23 03:00:00,113.9409285,258.1305668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988644355,4.505228291,-2.229644094,2.229644094,1,0.911445286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071870044,94.12140345,0.071870044,85.87859655,0,0,0,0,0,12,19,0% +2018-12-23 04:00:00,125.6619875,266.4531455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193215427,4.650484691,-1.336531898,1.336531898,1,0.758714105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281340469,106.3402244,0.281340469,73.65977562,0,0.872279389,0,0,0,12,20,0% +2018-12-23 05:00:00,137.4862528,275.9041773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399587788,4.815436314,-0.824660788,0.824660788,1,0.67117899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484757941,118.9966146,0.484757941,61.00338539,0,0.946855738,0,0,0,12,21,0% +2018-12-23 06:00:00,149.0524343,288.5013549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601455737,5.03529854,-0.469255351,0.469255351,1,0.610401081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668269894,131.9336744,0.668269894,48.0663256,0,0.97517993,0,0,0,12,22,0% +2018-12-23 07:00:00,159.4496262,309.7323827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782920969,5.405849878,-0.18895793,0.18895793,1,0.562467399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819379491,145.0227266,0.819379491,34.97727341,0,0.988978214,0,0,0,12,23,0% +2018-12-24 08:00:00,165.4504397,352.2557386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887654921,6.148022447,0.055094131,-0.055094131,1,0.520732038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927796349,158.0938709,0.927796349,21.90612913,0,0.996108863,0,0,0,12,0,0% +2018-12-24 09:00:00,161.8396838,41.01991791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824635343,0.715932626,0.28694449,-0.28694449,1,0.481083292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986137015,170.4485566,0.986137015,9.551443431,0,0.999297107,0,0,0,12,1,0% +2018-12-24 10:00:00,152.1708075,66.7871911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.655881616,1.165656383,0.527061795,-0.527061795,1,0.440020814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990427608,172.0659503,0.990427608,7.934049735,0,0.999516755,0,0,0,12,2,0% +2018-12-24 11:00:00,140.7939922,80.99356079,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45731873,1.413604309,0.800784494,-0.800784494,1,0.393211476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940374413,160.1145296,0.940374413,19.8854704,0,0.996829689,0,0,0,12,3,0% +2018-12-24 12:00:00,128.9944903,91.04689347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378573,1.589068065,1.152739862,-1.152739862,1,0.333023563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839384051,147.075134,0.839384051,32.92486601,0,0.990432511,0,0,0,12,4,0% +2018-12-24 13:00:00,117.2169638,99.56406604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045821957,1.737720769,1.691224758,-1.691224758,1,0.240937223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694331786,133.9739931,0.694331786,46.02600689,0,0.977988318,0,0,0,12,5,0% +2018-12-24 14:00:00,105.7195442,107.6969689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84515413,1.879666702,2.811300921,-2.811300921,1,0.049392918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515093701,121.0037183,0.515093701,58.99628173,0,0.952930283,0,0,0,12,6,0% +2018-12-24 15:00:00,94.74053787,116.1306066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653534321,2.026861448,8.356919215,-8.356919215,1,0,#DIV/0!,0,0,0.47339698,1,0.119095042,0,0.949047205,0.987809168,0.724496596,1,0,0,0.066128955,0.312029739,0.829647329,0.554143925,0.961238037,0.922476074,0,0,0,0,0,0,-0.313874494,108.2928814,0.313874494,71.70711861,0,0.890700659,0,0,0,12,7,0% +2018-12-24 16:00:00,84.41679581,125.400492,38.92271648,210.8354598,18.41029164,18.1485693,0,18.1485693,17.85515342,0.293415878,31.46946266,21.4770612,9.992401462,0.55513822,9.437263242,1.473351031,2.18865147,-5.808779363,5.808779363,0.476486535,0.476486535,0.472996063,0.212464298,6.833582172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.16305262,0.40219575,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.153929661,6.568699112,17.31698228,6.970894862,0,21.4770612,-0.101866457,95.8466595,0.101866457,84.1533405,0,0.559161291,17.31698228,18.98003613,29.73903633,12,8,72% +2018-12-24 17:00:00,75.52159216,135.9879005,187.7839585,558.2256583,48.21909483,104.1033628,55.92265679,48.18070601,46.76511121,1.4155948,46.98437845,0,46.98437845,1.453983619,45.53039483,1.31810044,2.373436606,-1.575929612,1.575929612,0.799653526,0.799653526,0.256779627,1.204810495,38.75084703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.9524037,1.053406182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872881102,37.24878813,45.8252848,38.30219431,55.92265679,0,0.100179302,84.25050443,-0.100179302,95.74949557,0.550894905,0,76.63279152,38.30219431,101.7008116,12,9,33% +2018-12-24 18:00:00,68.26354565,148.276285,321.6494471,698.7739442,62.8670129,261.4629452,198.0668753,63.3960699,60.9713405,2.424729397,79.88330477,0,79.88330477,1.895672393,77.98763237,1.191423631,2.587909377,-0.509656281,0.509656281,0.617310047,0.617310047,0.195451954,1.678173513,53.97582885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.60797165,1.373408196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.215830997,51.88361976,59.82380265,53.25702796,198.0668753,0,0.283449142,73.53383135,-0.283449142,106.4661687,0.873601513,0,232.8553245,53.25702796,267.7109841,12,10,15% +2018-12-24 19:00:00,63.31252997,162.3526445,411.6347322,759.3608301,70.58784944,401.5672582,330.0048164,71.56244182,68.45936534,3.103076487,101.9340907,0,101.9340907,2.128484102,99.80560656,1.105012106,2.833588197,0.081663039,-0.081663039,0.516188487,0.516188487,0.171481763,1.859218636,59.79886236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.80574594,1.542079486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346997573,57.48094106,67.15274351,59.02302055,330.0048164,0,0.434582353,64.24127866,-0.434582353,115.7587213,0.934947008,0,375.6897592,59.02302055,414.3191457,12,11,10% +2018-12-24 20:00:00,61.25812273,177.7228638,448.1758504,779.2931975,73.44143847,497.8806439,423.2751969,74.605447,71.22690813,3.37853887,110.8799541,0,110.8799541,2.21453034,108.6654237,1.069155935,3.10184913,0.555058574,-0.555058574,0.435233083,0.435233083,0.163867461,1.783125257,57.35143771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.46601334,1.604419693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291868179,55.1283834,69.75788152,56.73280309,423.2751969,0,0.543152691,57.10148485,-0.543152691,122.8985151,0.957944854,0,475.2321784,56.73280309,512.3626634,12,12,8% +2018-12-24 21:00:00,62.39537398,193.2800954,428.0162288,768.574557,71.88369242,535.4221336,462.4794326,72.942701,69.71613387,3.226567127,105.9450486,0,105.9450486,2.167558549,103.7774901,1.089004714,3.373374043,1.049421942,-1.049421942,0.350691968,0.350691968,0.167946184,1.48338447,47.71074365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01379966,1.57038879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.074706999,45.86138156,68.08850666,47.43177035,462.4794326,0,0.601736589,53.00562679,-0.601736589,126.9943732,0.966907164,0,515.2631831,47.43177035,546.3063281,12,13,6% +2018-12-24 22:00:00,66.55675697,207.8151206,352.9233181,722.0001701,65.68245465,504.1536038,437.7912325,66.36237134,63.7018863,2.660485048,87.55091284,0,87.55091284,1.98056835,85.57034449,1.161634549,3.62705809,1.708768521,-1.708768521,0.237937062,0.237937062,0.186109705,1.010357431,32.49656805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23267613,1.434915028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732000519,31.23693728,61.96467665,32.6718523,437.7912325,0,0.606358905,52.67330883,-0.606358905,127.3266912,0.967540586,0,485.5454622,32.6718523,506.9285361,12,14,4% +2018-12-24 23:00:00,73.21156859,220.6357988,230.2761983,612.1363163,53.46766376,394.4240716,340.8327359,53.59133567,51.85541642,1.735919252,57.44537767,0,57.44537767,1.612247337,55.83313033,1.277782922,3.850821137,2.888722527,-2.888722527,0.036153043,0.036153043,0.232189276,0.451248686,14.51370891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.84539868,1.168067707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326928137,13.95112906,50.17232682,15.11919676,340.8327359,0,0.556792216,56.16575291,-0.556792216,123.8342471,0.960199894,0,377.4398837,15.11919676,387.3350956,12,15,3% +2018-12-24 00:00:00,81.70487443,231.687193,79.42590495,345.3551204,29.60082527,187.0904269,157.7834297,29.3069972,28.70825117,0.598746021,20.15030431,0,20.15030431,0.892574097,19.25773022,1.426019074,4.043704353,6.511471867,-6.511471867,0,0,0.372684772,0.223143524,7.177062794,0.368437107,1,0.152384539,0,0.945048272,0.983810235,0.724496596,1,27.83347888,0.646666895,0.053657407,0.312029739,0.859132572,0.583629167,0.961238037,0.922476074,0.152883404,6.89886575,27.98636228,7.545532645,99.65015936,0,0.456872999,62.8144888,-0.456872999,117.1855112,0.940560396,0,121.7133557,7.545532645,126.6517559,12,16,4% +2018-12-24 01:00:00,91.68397953,241.2941445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600187314,4.211377288,-33.62234032,33.62234032,1,0,#DIV/0!,0,0,1,0.810602923,0,0.029733364,0.961238037,1,0.643639465,0.919142869,0,0,0.115824807,0.220260352,0.724496596,0.448993192,0.974885651,0.936123688,0,0,0,0,0,0,0.310319003,71.92154386,-0.310319003,108.0784561,0.888875481,0,0,0,0,12,17,0% +2018-12-24 02:00:00,102.4616481,249.9205728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788293117,4.361936864,-4.525036053,4.525036053,1,0.696019571,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131189482,82.46166668,-0.131189482,97.53833332,0.668871884,0,0,0,0,12,18,0% +2018-12-24 03:00:00,113.833844,258.08297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986775378,4.50439757,-2.241192585,2.241192585,1,0.913420194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.06997132,94.01233993,0.06997132,85.98766007,0,0,0,0,0,12,19,0% +2018-12-24 04:00:00,125.553408,266.4041979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191320357,4.649630394,-1.342231329,1.342231329,1,0.759688765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279463499,106.2281873,0.279463499,73.77181272,0,0.871085758,0,0,0,12,20,0% +2018-12-24 05:00:00,137.3777336,275.8448784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39769377,4.814401353,-0.828217536,0.828217536,1,0.67178723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48302022,118.8828438,0.48302022,61.11715619,0,0.946484665,0,0,0,12,21,0% +2018-12-24 06:00:00,148.946926,288.4089291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59961427,5.033685406,-0.471820833,0.471820833,1,0.610839804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666779176,131.8189641,0.666779176,48.18103588,0,0.975012655,0,0,0,12,22,0% +2018-12-24 07:00:00,159.3575372,309.5327788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.781313713,5.402366133,-0.191014804,0.191014804,1,0.562819145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818226397,144.9076414,0.818226397,35.09235859,0,0.988892218,0,0,0,12,23,0% +2018-12-25 08:00:00,165.414294,351.8180884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88702406,6.14038401,0.053293168,-0.053293168,1,0.521040021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927048138,157.9792516,0.927048138,22.02074842,0,0.996065368,0,0,0,12,0,0% +2018-12-25 09:00:00,161.8845186,40.67653539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825417858,0.709939471,0.285231414,-0.285231414,1,0.481376245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985832968,170.3441362,0.985832968,9.655863763,0,0.999281469,0,0,0,12,1,0% +2018-12-25 10:00:00,152.2462067,66.59819222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.657197581,1.16235773,0.525282781,-0.525282781,1,0.440325044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990576327,172.1279223,0.990576327,7.872077672,0,0.999524334,0,0,0,12,2,0% +2018-12-25 11:00:00,140.8779673,80.86676497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458784373,1.411391304,0.798732465,-0.798732465,1,0.393562394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940953232,160.2122604,0.940953232,19.78773956,0,0.996862396,0,0,0,12,3,0% +2018-12-25 12:00:00,129.0799145,90.94567838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252869506,1.587301528,1.150011486,-1.150011486,1,0.333490143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840340586,147.1761021,0.840340586,32.82389787,0,0.990500315,0,0,0,12,4,0% +2018-12-25 13:00:00,117.3004135,99.47317491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047278429,1.73613442,1.686699892,-1.686699892,1,0.24171102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.695587531,134.0740544,0.695587531,45.92594565,0,0.97811832,0,0,0,12,5,0% +2018-12-25 14:00:00,105.7984851,107.6083461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846531909,1.878119942,2.799860676,-2.799860676,1,0.051349315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.516549417,121.1010765,0.516549417,58.89892348,0,0.95320384,0,0,0,12,6,0% +2018-12-25 15:00:00,94.81237717,116.0388555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654788153,2.02526009,8.245293321,-8.245293321,1,0,#DIV/0!,0,0,0.468049599,1,0.120691858,0,0.948861172,0.987623135,0.724496596,1,0,0,0.065518393,0.312029739,0.83106203,0.555558626,0.961238037,0.922476074,0,0,0,0,0,0,-0.315417024,108.385991,0.315417024,71.61400902,0,0.891479704,0,0,0,12,7,0% +2018-12-25 16:00:00,84.47705181,125.3013514,37.98642789,205.8998056,18.16972003,17.90819367,0,17.90819367,17.62183593,0.286357739,31.03878742,21.28065408,9.758133332,0.547884098,9.210249234,1.474402696,2.186921139,-5.887275941,5.887275941,0.46306283,0.46306283,0.478321365,0.206146459,6.630378753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.93877898,0.396940164,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.149352408,6.373372256,17.08813138,6.77031242,0,21.28065408,-0.103354416,95.93236567,0.103354416,84.06763433,0,0.566227733,17.08813138,18.82000893,29.40545083,12,8,72% +2018-12-25 17:00:00,75.5687252,135.8781108,186.6453028,555.0951287,48.30529995,103.1117021,54.85597407,48.25572806,46.84871693,1.407011132,46.71089759,0,46.71089759,1.456583021,45.25431457,1.318923066,2.371520414,-1.588100991,1.588100991,0.801734954,0.801734954,0.258808013,1.20024738,38.60408156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.03276869,1.05528944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869575141,37.10771158,45.90234383,38.16300102,54.85597407,0,0.098822654,84.32862228,-0.098822654,95.67137772,0.544043139,0,75.74636017,38.16300102,100.7232811,12,9,33% +2018-12-25 18:00:00,68.29172707,148.1546899,320.8082823,696.7335184,63.09985397,260.3361404,196.7205915,63.6155489,61.19716056,2.418388342,79.68637563,0,79.68637563,1.902693411,77.78368222,1.191915489,2.58578714,-0.515604233,0.515604233,0.618327206,0.618327206,0.196690227,1.676906885,53.93508974,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.82503847,1.378494899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214913329,51.84445978,60.0399518,53.22295468,196.7205915,0,0.282346961,73.59967126,-0.282346961,106.4003287,0.872912916,0,231.759897,53.22295468,266.5932564,12,10,15% +2018-12-25 19:00:00,63.31679828,162.2223452,411.2164263,757.8508512,70.89815417,400.635532,328.7752956,71.86023636,68.76031324,3.09992312,101.8420244,0,101.8420244,2.137840935,99.70418346,1.105086602,2.831314045,0.077156856,-0.077156856,0.51695909,0.51695909,0.172410803,1.860699593,59.84649503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09502851,1.54885848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348070521,57.5267274,67.44309903,59.07558587,328.7752956,0,0.433825858,64.2893951,-0.433825858,115.7106049,0.934746381,0,374.7646169,59.07558587,413.4284063,12,11,10% +2018-12-25 20:00:00,61.23547633,177.5924447,448.2276048,778.0939935,73.80022285,497.3096144,422.3558116,74.95380285,71.57487383,3.378929017,110.9033212,0,110.9033212,2.225349013,108.6779722,1.068760681,3.099572887,0.550587412,-0.550587412,0.435997697,0.435997697,0.164648991,1.786980761,57.47544399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80049121,1.612257784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294661478,55.24758295,70.09515269,56.85984073,422.3558116,0,0.542808215,57.12498841,-0.542808215,122.8750116,0.957886435,0,474.6640552,56.85984073,511.8776838,12,12,8% +2018-12-25 21:00:00,62.34662936,193.1605306,428.539105,767.6126768,72.27369094,535.3063924,461.9815111,73.32488129,70.0943725,3.230508789,106.0835859,0,106.0835859,2.179318443,103.9042675,1.08815396,3.371287244,1.043919448,-1.043919448,0.35163295,0.35163295,0.168651332,1.489202903,47.89788446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.37737702,1.578908794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078922434,46.04126843,68.45629945,47.62017722,461.9815111,0,0.601841951,52.99806811,-0.601841951,127.0019319,0.96692171,0,515.1562522,47.62017722,546.3227058,12,13,6% +2018-12-25 22:00:00,66.48636103,207.713737,353.8775933,721.3313567,66.08992687,504.5557464,437.7909959,66.76475051,64.09707173,2.667678777,87.79457468,0,87.79457468,1.992855141,85.80171954,1.160405908,3.625288612,1.700299152,-1.700299152,0.23938541,0.23938541,0.186759287,1.017552051,32.72797178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6125434,1.443816766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.737212997,31.45937134,62.3497564,32.90318811,437.7909959,0,0.606920789,52.63281259,-0.606920789,127.3671874,0.967616926,0,485.9637343,32.90318811,507.4982128,12,14,4% +2018-12-25 23:00:00,73.12541196,220.5537642,231.5715448,612.1311361,53.88346722,395.441838,341.437472,54.004366,52.25868188,1.745684121,57.77198741,0,57.77198741,1.624785346,56.14720207,1.276279206,3.849389362,2.870774502,-2.870774502,0.039222336,0.039222336,0.232686046,0.458734177,14.75446801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.23303277,1.177151452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33235135,14.18255587,50.56538412,15.35970732,341.437472,0,0.557784847,56.09725685,-0.557784847,123.9027431,0.960359702,0,378.4681729,15.35970732,388.5207942,12,15,3% +2018-12-25 00:00:00,81.60877014,231.6216549,80.78529169,347.6541999,30.05155769,189.060545,159.306159,29.754386,29.14539234,0.608993653,20.49349461,0,20.49349461,0.906165343,19.58732927,1.424341737,4.042560497,6.433397156,-6.433397156,0,0,0.371992934,0.226541336,7.286348086,0.363066258,1,0.154204848,0,0.944822342,0.983584305,0.724496596,1,28.25678267,0.656513706,0.052990465,0.312029739,0.860744148,0.585240743,0.961238037,0.922476074,0.155241241,7.00391493,28.41202391,7.660428636,101.467468,0,0.458231654,62.7269419,-0.458231654,117.2730581,0.940884884,0,123.8812308,7.660428636,128.8948281,12,16,4% +2018-12-25 01:00:00,91.57981309,241.2410036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598369267,4.210449804,-35.83539276,35.83539276,1,0,#DIV/0!,0,0,1,0.823270558,0,0.027898133,0.961238037,1,0.648429409,0.923932813,0,0,0.115824807,0.225687335,0.724496596,0.448993192,0.974128345,0.935366382,0,0,0,0,0,0,0.311996078,71.82043535,-0.311996078,108.1795647,0.889741575,0,0,0,0,12,17,0% +2018-12-25 02:00:00,102.3531283,249.8758052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786399088,4.361155521,-4.566057501,4.566057501,1,0.68900449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.133066441,82.35317365,-0.133066441,97.64682635,0.674247859,0,0,0,0,12,18,0% +2018-12-25 03:00:00,113.7227383,258.0426747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984836218,4.503694284,-2.253226832,2.253226832,1,0.915478172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068008145,93.89958965,0.068008145,86.10041035,0,0,0,0,0,12,19,0% +2018-12-25 04:00:00,125.4410205,266.3636554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189358825,4.648922795,-1.34809259,1.34809259,1,0.7606911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277533524,106.1130527,0.277533524,73.88694731,0,0.869841584,0,0,0,12,20,0% +2018-12-25 05:00:00,137.2653646,275.795729,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395732562,4.813543534,-0.831828459,0.831828459,1,0.672404734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481240402,118.766446,0.481240402,61.23355398,0,0.946101824,0,0,0,12,21,0% +2018-12-25 06:00:00,148.8370651,288.3295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597696836,5.032299106,-0.474390813,0.474390813,1,0.611279296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665255988,131.7019671,0.665255988,48.29803291,0,0.974840962,0,0,0,12,22,0% +2018-12-25 07:00:00,159.2595955,309.3498488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779604307,5.399173402,-0.193046283,0.193046283,1,0.563166548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81704851,144.7904204,0.81704851,35.2095796,0,0.988804123,0,0,0,12,23,0% +2018-12-26 08:00:00,165.3697032,351.3873911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886245804,6.132866925,0.051541189,-0.051541189,1,0.521339627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926280335,157.8622173,0.926280335,22.13778269,0,0.996020661,0,0,0,12,0,0% +2018-12-26 09:00:00,161.9221975,40.31825893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826075478,0.703686367,0.283591639,-0.283591639,1,0.481656663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985511696,170.235002,0.985511696,9.764997965,0,0.999264935,0,0,0,12,1,0% +2018-12-26 10:00:00,152.3164115,66.39544188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658422886,1.158819069,0.523608513,-0.523608513,1,0.44061136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990707193,172.1828584,0.990707193,7.817141613,0,0.999531001,0,0,0,12,2,0% +2018-12-26 11:00:00,140.9575221,80.72929491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460172866,1.408991999,0.79683398,-0.79683398,1,0.393887054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941510616,160.306812,0.941510616,19.69318801,0,0.996893854,0,0,0,12,3,0% +2018-12-26 12:00:00,129.1611039,90.83580498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254286528,1.585383876,1.147526847,-1.147526847,1,0.333915041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841269398,147.2744087,0.841269398,32.7255913,0,0.990566006,0,0,0,12,4,0% +2018-12-26 13:00:00,117.3795116,99.37490808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048658952,1.73441934,1.682628805,-1.682628805,1,0.242407217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696806995,134.1713868,0.696806995,45.82861321,0,0.978244119,0,0,0,12,5,0% +2018-12-26 14:00:00,105.8727685,107.5132129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847828398,1.876459555,2.789627076,-2.789627076,1,0.053099363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51795861,121.1954184,0.51795861,58.80458156,0,0.95346719,0,0,0,12,6,0% +2018-12-26 15:00:00,94.87911329,115.9412481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655952918,2.023556518,8.146332307,-8.146332307,1,0,#DIV/0!,0,0,0.463217281,1,0.12214356,0,0.948691536,0.987453499,0.724496596,1,0,0,0.064964431,0.312029739,0.832348153,0.556844749,0.961238037,0.922476074,0,0,0,0,0,0,-0.316901811,108.4756627,0.316901811,71.52433734,0,0.892222423,0,0,0,12,7,0% +2018-12-26 16:00:00,84.53175319,125.1969603,37.132115,201.2906796,17.95030255,17.68895227,0,17.68895227,17.4090347,0.279917568,30.63459192,21.09021289,9.544379033,0.541267852,9.003111182,1.475357416,2.185099171,-5.962171412,5.962171412,0.45025495,0.45025495,0.483417186,0.200424101,6.446328038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73422634,0.392146716,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.145206579,6.196455708,16.87943292,6.588602424,0,21.09021289,-0.10477491,96.01419834,0.10477491,83.98580166,0,0.572786516,16.87943292,18.66879197,29.09778389,12,8,72% +2018-12-26 17:00:00,75.6095999,135.7637981,185.622457,552.1254644,48.40404172,102.2011783,53.85739658,48.34378176,46.94448127,1.399300488,46.46587422,0,46.46587422,1.45956045,45.00631377,1.319636464,2.369525282,-1.599901908,1.599901908,0.80375303,0.80375303,0.260766087,1.196300586,38.4771391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.12482102,1.057446577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866715702,36.98568965,45.99153672,38.04313623,53.85739658,0,0.097545576,84.40214873,-0.097545576,95.59785127,0.537419092,0,74.93552991,38.04313623,99.83400171,12,9,33% +2018-12-26 18:00:00,68.31301443,148.0296103,320.0943442,694.7945108,63.3429682,259.3153101,195.4693597,63.84595037,61.432944,2.413006375,79.52060388,0,79.52060388,1.910024202,77.61057968,1.192287024,2.583604089,-0.521533462,0.521533462,0.619341164,0.619341164,0.197888433,1.676241075,53.91367501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.05168249,1.383806032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214430953,51.82387513,60.26611344,53.20768116,195.4693597,0,0.281334059,73.66015836,-0.281334059,106.3398416,0.87227534,0,230.7692156,53.20768116,265.5925788,12,10,15% +2018-12-26 19:00:00,63.31367633,162.0900586,410.9308077,756.4203158,71.21810145,399.8241191,327.6557361,72.16838293,69.07061293,3.097770006,101.7824204,0,101.7824204,2.147488526,99.63493191,1.105032114,2.829005208,0.07255629,-0.07255629,0.517745833,0.517745833,0.173309229,1.862766335,59.91296856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39330037,1.555848126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349567869,57.59062428,67.74286824,59.14647241,327.6557361,0,0.43316623,64.3313345,-0.43316623,115.6686655,0.934570872,0,373.9603754,59.14647241,412.6705587,12,11,10% +2018-12-26 20:00:00,61.20523626,177.461943,448.4133574,776.9676238,74.16857554,496.8683923,421.5559436,75.31244863,71.93211933,3.380329299,110.9594663,0,110.9594663,2.236456205,108.7230101,1.068232892,3.097295202,0.545947586,-0.545947586,0.436791154,0.436791154,0.165402244,1.791395914,57.61745049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14388918,1.620304908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297860242,55.38408499,70.44174942,57.0043899,421.5559436,0,0.54256565,57.14153488,-0.54256565,122.8584651,0.957845253,0,474.227109,57.0043899,511.5353421,12,12,8% +2018-12-26 21:00:00,62.29047416,193.042857,429.1934497,766.727187,72.67355578,535.3267943,461.6091729,73.71762145,70.48217994,3.235441516,106.2542967,0,106.2542967,2.191375844,104.0629209,1.087173867,3.369233452,1.038159663,-1.038159663,0.352617931,0.352617931,0.169325874,1.495539051,48.10167675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.75015227,1.587644339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.083512951,46.23716133,68.83366523,47.82480567,461.6091729,0,0.602051395,52.98304027,-0.602051395,127.0169597,0.966950612,0,515.1869374,47.82480567,546.4873162,12,13,6% +2018-12-26 22:00:00,66.4090712,207.6158829,354.9569153,720.7543714,66.50817111,505.0987138,437.9201943,67.17851952,64.50270436,2.675815162,88.0688804,0,88.0688804,2.005466748,86.06341365,1.159056946,3.623580736,1.691415164,-1.691415164,0.240904661,0.240904661,0.187369701,1.02520146,32.97400306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.00245291,1.452953832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742754968,31.69586597,62.74520788,33.1488198,437.9201943,0,0.607585901,52.58484814,-0.607585901,127.4151519,0.96770711,0,486.5236933,33.1488198,508.2189329,12,14,4% +2018-12-26 23:00:00,73.03305681,220.4764065,232.9807729,612.2550953,54.31254256,396.6063228,342.1751963,54.43112648,52.67481901,1.756307478,58.1266093,0,58.1266093,1.63772355,56.48888575,1.274667304,3.848039216,2.852025875,-2.852025875,0.04242854,0.04242854,0.233120278,0.466576895,15.0067168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.63303961,1.186525137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338033372,14.42502699,50.97107299,15.61155213,342.1751963,0,0.558876846,56.02184034,-0.558876846,123.9781597,0.960534851,0,379.6422743,15.61155213,389.859723,12,15,3% +2018-12-26 00:00:00,81.50720302,231.5615571,82.236951,350.1633605,30.52304901,191.1867003,160.9640969,30.22260334,29.60266646,0.619936874,20.85968342,0,20.85968342,0.920382546,19.93930088,1.422569057,4.041511592,6.353122549,-6.353122549,0,0,0.371159784,0.230095636,7.400666616,0.35744799,1,0.156121981,0,0.944583585,0.983345548,0.724496596,1,28.69949391,0.666814021,0.052289665,0.312029739,0.86244134,0.586937936,0.961238037,0.922476074,0.157711248,7.113802249,28.85720515,7.78061627,103.427804,0,0.459682865,62.63335472,-0.459682865,117.3666453,0.941229359,0,126.2064908,7.78061627,131.2987485,12,16,4% +2018-12-26 01:00:00,91.47078946,241.1938805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596466446,4.209627351,-38.48813375,38.48813375,1,0,#DIV/0!,0,0,1,0.836387761,0,0.02597619,0.961238037,1,0.653474075,0.928977479,0,0,0.115824807,0.231404418,0.724496596,0.448993192,0.973323665,0.934561701,0,0,0,0,0,0,0.313757697,71.71416663,-0.313757697,108.2858334,0.890641359,0,0,0,0,12,17,0% +2018-12-26 02:00:00,102.2402835,249.8376314,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784429575,4.360489264,-4.609472117,4.609472117,1,0.681580153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135017622,82.2403611,-0.135017622,97.7596389,0.67967797,0,0,0,0,12,18,0% +2018-12-26 03:00:00,113.6077004,258.009713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982828427,4.503118993,-2.265749938,2.265749938,1,0.917619749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065981998,93.78323856,0.065981998,86.21676144,0,0,0,0,0,12,19,0% +2018-12-26 04:00:00,125.3249182,266.3315381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187332457,4.648362242,-1.354114121,1.354114121,1,0.761720843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27555198,105.9949113,0.27555198,74.00508874,0,0.868546033,0,0,0,12,20,0% +2018-12-26 05:00:00,137.1492434,275.756735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.393705864,4.81286296,-0.835491651,0.835491651,1,0.673031177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47941979,118.6475144,0.47941979,61.35248558,0,0.945707267,0,0,0,12,21,0% +2018-12-26 06:00:00,148.7229567,288.2630636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.595705267,5.031139572,-0.476963553,0.476963553,1,0.611719261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663701404,131.5827776,0.663701404,48.41722236,0,0.974664918,0,0,0,12,22,0% +2018-12-26 07:00:00,159.1559204,309.1836915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777794835,5.396273411,-0.195050826,0.195050826,1,0.563509345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815846607,144.6711586,0.815846607,35.32884136,0,0.98871397,0,0,0,12,23,0% +2018-12-27 08:00:00,165.3167222,350.9646493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885321111,6.125488688,0.049839576,-0.049839576,1,0.52163062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925493368,157.7428686,0.925493368,22.25713142,0,0.995974761,0,0,0,12,0,0% +2018-12-27 09:00:00,161.9525984,39.94566893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826606074,0.697183445,0.282026426,-0.282026426,1,0.48192433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985173249,170.1213253,0.985173249,9.878674659,0,0.999247505,0,0,0,12,1,0% +2018-12-27 10:00:00,152.3812955,66.17908809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.659555325,1.155042983,0.522040145,-0.522040145,1,0.440879567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990819877,172.230471,0.990819877,7.769528984,0,0.999536741,0,0,0,12,2,0% +2018-12-27 11:00:00,141.0325449,80.58122634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461482261,1.406407715,0.795090043,-0.795090043,1,0.394185284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942045881,160.3980236,0.942045881,19.60197638,0,0.996924029,0,0,0,12,3,0% +2018-12-27 12:00:00,129.2379582,90.7173355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255627888,1.583316193,1.145286546,-1.145286546,1,0.334298155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842169499,147.3699274,0.842169499,32.63007256,0,0.990629529,0,0,0,12,4,0% +2018-12-27 13:00:00,117.4541677,99.26932656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049961947,1.732576595,1.679010363,-1.679010363,1,0.243026007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69798895,134.2658791,0.69798895,45.73412094,0,0.978365628,0,0,0,12,5,0% +2018-12-27 14:00:00,105.9423139,107.4116332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849042195,1.874686655,2.780585716,-2.780585716,1,0.054645527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.519319903,121.286643,0.519319903,58.71335699,0,0.953720232,0,0,0,12,6,0% +2018-12-27 15:00:00,94.94067674,115.8378524,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657027403,2.021751923,8.059317795,-8.059317795,1,0,#DIV/0!,0,0,0.458895197,1,0.123449027,0,0.948538575,0.987300538,0.724496596,1,0,0,0.064467174,0.312029739,0.833504706,0.558001302,0.961238037,0.922476074,0,0,0,0,0,0,-0.318327427,108.5618049,0.318327427,71.43819511,0,0.892929023,0,0,0,12,7,0% +2018-12-27 16:00:00,84.58084957,125.0873919,36.35869036,197.0100237,17.75285434,17.49162745,0,17.49162745,17.21754028,0.274087166,30.25891628,20.90801679,9.350899484,0.535314059,8.815585425,1.476214309,2.183186841,-6.033056817,6.033056817,0.438132832,0.438132832,0.488269906,0.195280435,6.280890057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.55015462,0.387833214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.14148001,6.037430428,16.69163463,6.425263642,0,20.90801679,-0.106126665,96.09208243,0.106126665,83.90791757,0,0.578864871,16.69163463,18.52818009,28.81795794,12,8,73% +2018-12-27 17:00:00,75.64417461,135.6450399,184.7159277,549.3202089,48.51580343,101.3719524,52.92661281,48.44533964,47.05287295,1.392466687,46.24944571,0,46.24944571,1.462930478,44.78651523,1.320239907,2.36745256,-1.611303247,1.611303247,0.805702773,0.805702773,0.262650893,1.192975105,38.37018021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.22901122,1.059888151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864306403,36.8828767,46.09331762,37.94276485,52.92661281,0,0.096349291,84.47101521,-0.096349291,95.52898479,0.531054823,0,74.20025063,37.94276485,99.03303137,12,9,33% +2018-12-27 18:00:00,68.32738172,147.9011257,319.5080448,692.9585194,63.59660529,258.4010106,194.313491,64.0875196,61.678933,2.408586602,79.38609688,0,79.38609688,1.917672296,77.46842459,1.19253778,2.581361612,-0.527433481,0.527433481,0.620350127,0.620350127,0.199045396,1.676178015,53.9116468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.28813647,1.389347051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214385266,51.82192553,60.50252174,53.21127258,194.313491,0,0.280411432,73.71523819,-0.280411432,106.2847618,0.87169058,0,229.8837613,53.21127258,264.709475,12,10,15% +2018-12-27 19:00:00,63.30315475,161.9558644,410.7779664,755.0699402,71.5478391,399.1334224,326.6463969,72.48702559,69.39040777,3.096617824,101.7553051,0,101.7553051,2.157431332,99.59787377,1.104848477,2.826663076,0.067868553,-0.067868553,0.518547484,0.518547484,0.174176429,1.865418566,59.99827342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.70069934,1.563051656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351489401,57.67262255,68.05218874,59.23567421,326.6463969,0,0.432604159,64.36705947,-0.432604159,115.6329405,0.934420899,0,373.2774084,59.23567421,412.0459725,12,11,10% +2018-12-27 20:00:00,61.16740984,177.3314387,448.7328201,775.914255,74.54658439,496.5570122,420.8755449,75.68146736,72.29872982,3.382737543,111.048322,0,111.048322,2.247854567,108.8004675,1.067572697,3.095017473,0.541146407,-0.541146407,0.437612204,0.437612204,0.166126882,1.796368725,57.77739318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.49628912,1.628562982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301463026,55.537828,70.79775214,57.16639098,420.8755449,0,0.542425329,57.1511054,-0.542425329,122.8488946,0.957821414,0,473.9213615,57.16639098,511.3356211,12,12,8% +2018-12-27 21:00:00,62.22693269,192.9271564,429.9786015,765.9177097,73.08332958,535.4828805,461.3619226,74.12095787,70.87959754,3.241360322,106.4570221,0,106.4570221,2.203732036,104.25329,1.086064859,3.367214095,1.032152421,-1.032152421,0.35364523,0.35364523,0.16996969,1.502389795,48.32202025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.1321652,1.596596358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088476292,46.44896388,69.22064149,48.04556024,461.3619226,0,0.602364871,52.96054251,-0.602364871,127.0394575,0.966993832,0,515.3547748,48.04556024,546.799633,12,13,6% +2018-12-27 22:00:00,66.32492884,207.5216395,356.1603079,720.2679576,66.93718293,505.781421,438.1777543,67.60366674,64.9187799,2.684886844,88.37359316,0,88.37359316,2.018403037,86.35519013,1.157588384,3.621935879,1.682133962,-1.682133962,0.24249184,0.24249184,0.187941164,1.033302344,33.23455534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.40240054,1.46232613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748624031,31.94631873,63.15102457,33.40864486,438.1777543,0,0.608353807,52.52943253,-0.608353807,127.4705675,0.967810985,0,487.2242687,33.40864486,509.0895586,12,14,4% +2018-12-27 23:00:00,72.93455993,220.4038009,234.5027593,612.5048251,54.75479508,397.9155163,343.0439994,54.87151684,53.10373599,1.767780854,58.50896807,0,58.50896807,1.651059095,56.85790897,1.272948209,3.846772009,2.832522106,-2.832522106,0.045763881,0.045763881,0.23349318,0.474775569,15.27041433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.04533093,1.196186694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343973283,14.67850309,51.38930421,15.87468978,343.0439994,0,0.560067424,55.93953933,-0.560067424,124.0604607,0.960725034,0,380.9602624,15.87468978,391.3499293,12,15,3% +2018-12-27 00:00:00,81.40023979,231.5069646,83.7805071,352.8734647,31.01491261,193.465542,162.7542706,30.71127141,30.07969856,0.631572852,21.24876797,0,21.24876797,0.935214048,20.31355392,1.420702196,4.040558773,6.270930449,-6.270930449,0,0,0.370192467,0.233803512,7.519924641,0.35159189,1,0.158134518,0,0.944332054,0.983094018,0.724496596,1,29.16123379,0.677559394,0.051555763,0.312029739,0.864222871,0.588719466,0.961238037,0.922476074,0.160292001,7.228437599,29.32152579,7.905996993,105.531189,0,0.461225586,62.53377935,-0.461225586,117.4662207,0.941593178,0,128.6889734,7.905996993,133.8632903,12,16,4% +2018-12-27 01:00:00,91.35698894,241.1528285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594480252,4.208910857,-41.71256826,41.71256826,1,0,#DIV/0!,0,0,1,0.849926981,0,0.023968999,0.961238037,1,0.658773498,0.934276902,0,0,0.115824807,0.237411852,0.724496596,0.448993192,0.972470527,0.933708564,0,0,0,0,0,0,0.315602512,71.60280928,-0.315602512,108.3971907,0.891572871,0,0,0,0,12,17,0% +2018-12-27 02:00:00,102.123201,249.8060928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782386099,4.359938811,-4.655358355,4.655358355,1,0.673733144,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13704153,82.12331173,-0.13704153,97.87668827,0.685147097,0,0,0,0,12,18,0% +2018-12-27 03:00:00,113.488822,257.9841138,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980753608,4.502672203,-2.278764942,2.278764942,1,0.919845446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063894425,93.66337642,0.063894425,86.33662358,0,0,0,0,0,12,19,0% +2018-12-27 04:00:00,125.2051963,266.3078614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185242916,4.647949006,-1.360294201,1.360294201,1,0.762777698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.273520361,105.8738567,0.273520361,74.12614326,0,0.867198252,0,0,0,12,20,0% +2018-12-27 05:00:00,137.0294689,275.7278954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391615404,4.812359615,-0.83920509,0.83920509,1,0.673666212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477559722,118.5261445,0.477559722,61.47385549,0,0.945301053,0,0,0,12,21,0% +2018-12-27 06:00:00,148.6047063,288.2096033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593641408,5.030206513,-0.479537236,0.479537236,1,0.612159387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662116523,131.4614913,0.662116523,48.5385087,0,0.974484591,0,0,0,12,22,0% +2018-12-27 07:00:00,159.046632,309.0343739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.775887393,5.393667326,-0.19702684,0.19702684,1,0.563847264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81462147,144.5499509,0.81462147,35.45004911,0,0.988621799,0,0,0,12,23,0% +2018-12-28 08:00:00,165.2554141,350.5508303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884251084,6.118266184,0.048189747,-0.048189747,1,0.521912758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924687653,157.6213027,0.924687653,22.37869729,0,0.995927687,0,0,0,12,0,0% +2018-12-28 09:00:00,161.9756014,39.55940459,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827007553,0.69044186,0.280537065,-0.280537065,1,0.482179026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984817653,170.0032672,0.984817653,9.996732798,0,0.99922918,0,0,0,12,1,0% +2018-12-28 10:00:00,152.4407295,65.94930785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660592643,1.151032561,0.520578863,-0.520578863,1,0.441129461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990914011,172.2704694,0.990914011,7.729530599,0,0.999541535,0,0,0,12,2,0% +2018-12-28 11:00:00,141.1029209,80.42265053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462710555,1.403640045,0.793501702,-0.793501702,1,0.394456907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942558297,160.4857253,0.942558297,19.5142747,0,0.996952883,0,0,0,12,3,0% +2018-12-28 12:00:00,129.3103747,90.59034248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256891796,1.581099747,1.143291279,-1.143291279,1,0.334639366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843039847,147.4625259,0.843039847,32.53747406,0,0.990690822,0,0,0,12,4,0% +2018-12-28 13:00:00,117.5242899,99.15649919,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05118581,1.730607386,1.675843759,-1.675843759,1,0.243567528,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699132123,134.3574155,0.699132123,45.64258453,0,0.97848276,0,0,0,12,5,0% +2018-12-28 14:00:00,106.0070401,107.3036771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85017188,1.872802464,2.772724203,-2.772724203,1,0.055989925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520631877,121.3746461,0.520631877,58.62535388,0,0.953962853,0,0,0,12,6,0% +2018-12-28 15:00:00,94.99699797,115.7287423,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658010394,2.019847592,7.983636383,-7.983636383,1,0,#DIV/0!,0,0,0.455079043,1,0.124607251,0,0.948402539,0.987164502,0.724496596,1,0,0,0.064026714,0.312029739,0.834530799,0.559027395,0.961238037,0.922476074,0,0,0,0,0,0,-0.319692409,108.6443241,0.319692409,71.35567589,0,0.893599665,0,0,0,12,7,0% +2018-12-28 16:00:00,84.62429088,124.9727242,35.66513842,193.0591464,17.57815473,17.31696738,0,17.31696738,17.0481085,0.268858878,29.91364212,20.73617017,9.177471948,0.530046221,8.647425727,1.476972503,2.181185512,-6.099529183,6.099529183,0.426765388,0.426765388,0.492866578,0.190699874,6.13356346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.38729035,0.384016683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.138161409,5.895814499,16.52545176,6.279831182,0,20.73617017,-0.10740838,96.16594147,0.10740838,83.83405853,0,0.584486974,16.52545176,18.39985254,28.56778725,12,8,73% +2018-12-28 17:00:00,75.67240896,135.5219178,183.9262043,546.6826068,48.64105528,100.624194,52.06333256,48.56086141,47.17434799,1.386513419,46.06174495,0,46.06174495,1.466707283,44.59503767,1.320732689,2.365303674,-1.622276303,1.622276303,0.807579276,0.807579276,0.264459626,1.190275723,38.28335879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.34577766,1.062624434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.862350709,36.79942065,46.20812837,37.86204508,52.06333256,0,0.095235027,84.53515283,-0.095235027,95.46484717,0.524983083,0,73.54049721,37.86204508,98.32044848,12,9,34% +2018-12-28 18:00:00,68.33480496,147.7693199,319.0497477,691.2269604,63.86100435,257.5937676,193.2532764,64.34049121,61.93535944,2.405131765,79.28295005,0,79.28295005,1.925644903,77.35730515,1.19266734,2.579061166,-0.533293626,0.533293626,0.621352271,0.621352271,0.200160021,1.676719351,53.92905802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.53462332,1.395123177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214777462,51.83866186,60.74940078,53.23378503,193.2532764,0,0.279580062,73.7648569,-0.279580062,106.2351431,0.871160351,0,229.103993,53.23378503,263.9444406,12,10,15% +2018-12-28 19:00:00,63.28522695,161.8198462,410.7579218,753.8002966,71.88750415,398.5637854,325.747488,72.81629738,69.71983066,3.096466719,101.7606872,0,101.7606872,2.167673487,99.59301372,1.104535578,2.824289111,0.063101165,-0.063101165,0.519362755,0.519362755,0.175011851,1.868655639,60.1023888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01735315,1.570472062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353834649,57.77270222,68.3711878,59.34317429,325.747488,0,0.432140302,64.39653403,-0.432140302,115.603466,0.934296837,0,372.7160354,59.34317429,411.5549561,12,11,10% +2018-12-28 20:00:00,61.12200802,177.2010163,449.1856159,774.9339176,74.93432519,496.3754226,420.3144929,76.06092971,72.6747788,3.386150909,111.1697994,0,111.1697994,2.259546383,108.9102531,1.066780285,3.092741172,0.536191587,-0.536191587,0.438459528,0.438459528,0.166822629,1.801896815,57.95519554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.85776171,1.637033662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305468108,55.70873839,71.16322981,57.34577205,420.3144929,0,0.542387529,57.15368332,-0.542387529,122.8463167,0.95781499,0,473.7467515,57.34577205,511.2784124,12,12,8% +2018-12-28 21:00:00,62.15603377,192.8135144,430.8937977,765.1837203,73.50304076,535.7740796,461.2391673,74.53491234,71.28665288,3.248259458,106.6915779,0,106.6915779,2.216387876,104.47519,1.084827439,3.365230669,1.025908099,-1.025908099,0.354713072,0.354713072,0.170582731,1.509751622,48.5588019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52344227,1.605765471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.093809911,46.67656741,69.61725218,48.28233288,461.2391673,0,0.602782254,52.93057716,-0.602782254,127.0694228,0.967051307,0,515.6591918,48.28233288,547.259013,12,13,6% +2018-12-28 22:00:00,66.23398055,207.431091,357.4866875,719.8706815,67.37693978,506.6026462,438.5624841,68.04016211,65.34527645,2.694885653,88.70844954,0,88.70844954,2.031663329,86.67678621,1.156001037,3.620355509,1.672473757,-1.672473757,0.244143833,0.244143833,0.188473983,1.041851026,33.50951033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.81236525,1.471933166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754817522,32.21061593,63.56718278,33.68254909,438.5624841,0,0.609223983,52.46658697,-0.609223983,127.533413,0.967928379,0,488.064257,33.68254909,510.1088117,12,14,5% +2018-12-28 23:00:00,72.82998369,220.3360242,236.1362766,612.876724,55.21010404,399.3672496,344.0418389,55.3254107,53.5453157,1.780094997,58.91876248,0,58.91876248,1.66478834,57.25397414,1.27112301,3.845589082,2.812309915,-2.812309915,0.04922037,0.04922037,0.233806109,0.483328644,15.54551063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46979415,1.206133486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350169958,14.94293612,51.81996411,16.14906961,344.0418389,0,0.561355694,55.85039502,-0.561355694,124.149605,0.960929914,0,382.4200587,16.14906961,392.9893018,12,15,3% +2018-12-28 00:00:00,81.28795291,231.4579429,85.4154921,355.7750853,31.526717,195.8935487,164.6735805,31.21996822,30.57607016,0.643898059,21.6606218,0,21.6606218,0.950646839,20.70997497,1.41874242,4.039703183,6.187098255,-6.187098255,0,0,0.369098348,0.23766171,7.64401754,0.345507944,1,0.160240911,0,0.944067816,0.98282978,0.724496596,1,29.64158025,0.688740399,0.050789568,0.312029739,0.866087348,0.590583944,0.961238037,0.922476074,0.162981879,7.347720414,29.80456213,8.036460813,107.7775502,0,0.462858663,62.42827377,-0.462858663,117.5717262,0.941975664,0,131.3283915,8.036460813,136.5880944,12,16,4% +2018-12-28 01:00:00,91.23849721,241.1178998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592412181,4.208301237,-45.70045023,45.70045023,1,0,#DIV/0!,0,0,1,0.863860208,0,0.021878131,0.961238037,1,0.664327504,0.939830909,0,0,0.115824807,0.243709635,0.724496596,0.448993192,0.971567837,0.932805874,0,0,0,0,0,0,0.31752907,71.48644084,-0.31752907,108.5135592,0.892534103,0,0,0,0,12,17,0% +2018-12-28 02:00:00,102.0019728,249.7812285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780270269,4.359504847,-4.70379942,4.70379942,1,0.665449234,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139136565,82.00211389,-0.139136565,97.99788611,0.690640835,0,0,0,0,12,18,0% +2018-12-28 03:00:00,113.3661995,257.965903,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978613442,4.502354365,-2.292274652,2.292274652,1,0.922155742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061747063,93.54009812,0.061747063,86.45990188,0,0,0,0,0,12,19,0% +2018-12-28 04:00:00,125.0819541,266.2926363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183091933,4.647683277,-1.366630866,1.366630866,1,0.763861332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271440236,105.7499873,0.271440236,74.25001271,0,0.86579739,0,0,0,12,20,0% +2018-12-28 05:00:00,136.906143,275.7092025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389462961,4.812033362,-0.842966596,0.842966596,1,0.674309468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475661597,118.4024353,0.475661597,61.59756473,0,0.944883252,0,0,0,12,21,0% +2018-12-28 06:00:00,148.4824214,288.16909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591507135,5.029499423,-0.482109944,0.482109944,1,0.612599346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66050248,131.338206,0.66050248,48.66179399,0,0.974300057,0,0,0,12,22,0% +2018-12-28 07:00:00,158.9318521,308.9019323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773884105,5.391355785,-0.198972661,0.198972661,1,0.564180019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813373901,144.4268927,0.813373901,35.57310727,0,0.988527656,0,0,0,12,23,0% +2018-12-29 08:00:00,165.1858514,350.1468643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.883036985,6.111215647,0.046593175,-0.046593175,1,0.522185787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923863603,157.4976152,0.923863603,22.50238482,0,0.995879457,0,0,0,12,0,0% +2018-12-29 09:00:00,161.9910893,39.16016634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827277867,0.683473838,0.27912489,-0.27912489,1,0.482420522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98444491,169.8809797,0.98444491,10.11902026,0,0.999209956,0,0,0,12,1,0% +2018-12-29 10:00:00,152.4945814,65.70631025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661532537,1.146791453,0.519225889,-0.519225889,1,0.441360833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990989191,172.3025625,0.990989191,7.697437536,0,0.999545363,0,0,0,12,2,0% +2018-12-29 11:00:00,141.1685325,80.25367645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463855692,1.400690891,0.792070053,-0.792070053,1,0.394701733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943047084,160.5697373,0.943047084,19.43026269,0,0.996980378,0,0,0,12,3,0% +2018-12-29 12:00:00,129.3782485,90.45491038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258076417,1.578736011,1.141541844,-1.141541844,1,0.334938537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843879346,147.5520651,0.843879346,32.44793485,0,0.990749824,0,0,0,12,4,0% +2018-12-29 13:00:00,117.5897845,99.03650391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052328906,1.728513073,1.673128525,-1.673128525,1,0.244031861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700235178,134.4458754,0.700235178,45.55412455,0,0.978595418,0,0,0,12,5,0% +2018-12-29 14:00:00,106.0668647,107.1894222,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851216017,1.87080834,2.76603214,-2.76603214,1,0.057134335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52189306,121.4593201,0.52189306,58.54067993,0,0.954194932,0,0,0,12,6,0% +2018-12-29 15:00:00,95.04800716,115.6139978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658900672,2.017844922,7.918768681,-7.918768681,1,0,#DIV/0!,0,0,0.451765059,1,0.125617327,0,0.948283652,0.987045615,0.724496596,1,0,0,0.063643138,0.312029739,0.835425635,0.559922231,0.961238037,0.922476074,0,0,0,0,0,0,-0.320995253,108.7231242,0.320995253,71.27687576,0,0.894234457,0,0,0,12,7,0% +2018-12-29 16:00:00,84.66202726,124.8530409,35.05053226,189.4387965,17.42694952,17.16568841,0,17.16568841,16.90146269,0.264225718,29.60049433,20.57660015,9.023894174,0.525486827,8.498407347,1.477631127,2.179096646,-6.161196125,6.161196125,0.416219719,0.416219719,0.497195004,0.186668166,6.00388988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.24632882,0.380713417,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135240451,5.771167322,16.38156927,6.151880739,0,20.57660015,-0.108618723,96.23569712,0.108618723,83.76430288,0,0.589674205,16.38156927,18.28537107,28.34897893,12,8,73% +2018-12-29 17:00:00,75.69426395,135.3945189,183.2537613,544.215593,48.78025285,99.9580877,51.26729519,48.6907925,47.30934825,1.381444259,45.90290067,0,45.90290067,1.470904603,44.43199606,1.321114131,2.363080144,-1.632792862,1.632792862,0.809377714,0.809377714,0.266189641,1.188206996,38.21682143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.47554503,1.065665378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860851924,36.7354624,46.33639696,37.80112778,51.26729519,0,0.094204017,84.59449209,-0.094204017,95.40550791,0.519237073,0,72.95627726,37.80112778,97.69635937,12,9,34% +2018-12-29 18:00:00,68.33526244,147.6342814,318.7197656,689.6010608,64.13639285,256.8940779,192.2889898,64.60508819,62.20244397,2.402644221,79.21124605,0,79.21124605,1.933948883,77.27729717,1.192675325,2.576704299,-0.539103053,0.539103053,0.622345741,0.622345741,0.2012313,1.677866407,53.96595127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.79135513,1.401139382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2156085,51.87412505,61.00696363,53.27526443,192.2889898,0,0.278840914,73.80896101,-0.278840914,106.191039,0.870686285,0,228.4303498,53.27526443,263.2979449,12,10,15% +2018-12-29 19:00:00,63.25988956,161.6820928,410.870616,752.6118077,72.23722192,398.1154901,324.9591707,73.1563194,70.05900315,3.097316256,101.7985565,0,101.7985565,2.178218768,99.62033774,1.104093357,2.821884862,0.058261972,-0.058261972,0.520190306,0.520190306,0.175815011,1.87247651,60.22528115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.34337865,1.578112082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356602857,57.89083102,68.69998151,59.46894311,324.9591707,0,0.431775276,64.41972355,-0.431775276,115.5802764,0.93419902,0,372.2765203,59.46894311,411.1977542,12,11,10% +2018-12-29 20:00:00,61.06904597,177.0707649,449.7712697,774.0265022,75.33186072,496.3234804,419.8725874,76.45089299,73.06032718,3.390565816,111.3237852,0,111.3237852,2.271533546,109.0522516,1.065855923,3.090467857,0.531091259,-0.531091259,0.439331735,0.439331735,0.167489268,1.807977356,58.15076666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.22836547,1.645718321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30987344,55.89672878,71.53823891,57.5424471,419.8725874,0,0.542452469,57.14925438,-0.542452469,122.8507456,0.957826026,0,473.7031306,57.5424471,511.3635113,12,12,8% +2018-12-29 21:00:00,62.07781145,192.7020215,431.9381619,764.5245441,73.93270239,536.1997001,461.2402091,74.95949094,71.70335863,3.256132316,106.9577519,0,106.9577519,2.22934376,104.7284082,1.083462202,3.363284751,1.019437629,-1.019437629,0.355819588,0.355819588,0.171165016,1.517620553,48.81189378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.92399568,1.615151965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.099510925,46.91984895,70.02350661,48.53500092,461.2402091,0,0.603303338,52.89315007,-0.603303338,127.1068499,0.967122951,0,516.099499,48.53500092,547.8646864,12,13,6% +2018-12-29 22:00:00,66.13627899,207.3443249,358.9348481,719.5609292,67.82739974,507.5610189,439.0730631,68.48795588,65.78215338,2.7058025,89.07315588,0,89.07315588,2.045246359,87.02790952,1.154295823,3.618841155,1.662453556,-1.662453556,0.245857388,0.245857388,0.188968555,1.050843392,33.79873575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.23230798,1.481774025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761332461,32.4886304,63.99364044,33.97040442,439.0730631,0,0.610195809,52.39633745,-0.610195809,127.6036626,0.96805909,0,489.0423102,33.97040442,511.2752605,12,14,5% +2018-12-29 23:00:00,72.71939697,220.2731552,237.8799767,613.3669571,55.67832143,400.959181,345.1665266,55.79265435,53.99941461,1.793239745,59.35566124,0,59.35566124,1.678906822,57.67675442,1.269192907,3.844491812,2.791437186,-2.791437186,0.052789816,0.052789816,0.234060564,0.492234207,15.83194413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.90629129,1.216362277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356622007,15.21826689,52.26291329,16.43462917,345.1665266,0,0.562740661,55.75445461,-0.562740661,124.2455454,0.961149125,0,384.0194184,16.43462917,394.7755545,12,15,3% +2018-12-29 00:00:00,81.17042133,231.4145577,87.14132395,358.858504,32.05798476,198.4670067,166.7187803,31.74822634,31.09131823,0.656908109,22.0950894,0,22.0950894,0.966666522,21.12842288,1.416691107,4.038945969,6.101897195,-6.101897195,0,0,0.367884986,0.24166663,7.772829559,0.339206548,1,0.162439472,0,0.943790951,0.982552914,0.724496596,1,30.140067,0.700346604,0.049991941,0.312029739,0.868033255,0.592529851,0.961238037,0.922476074,0.165779057,7.471539426,30.30584606,8.17188603,110.1666784,0,0.464580826,62.31690277,-0.464580826,117.6830972,0.942376101,0,134.1242909,8.17188603,139.4726269,12,16,4% +2018-12-29 01:00:00,91.11540623,241.0891461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590263838,4.20779939,-50.74124396,50.74124396,1,0,#DIV/0!,0,0,1,0.878158994,0,0.019705283,0.961238037,1,0.670135645,0.945639049,0,0,0.115824807,0.250297449,0.724496596,0.448993192,0.970614503,0.931852539,0,0,0,0,0,0,0.319535798,71.36514575,-0.319535798,108.6348542,0.89352301,0,0,0,0,12,17,0% +2018-12-29 02:00:00,101.8766969,249.7630756,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778083792,4.35918802,-4.754883171,4.754883171,1,0.656713399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141301017,81.87686251,-0.141301017,98.12313749,0.696145506,0,0,0,0,12,18,0% +2018-12-29 03:00:00,113.2399343,257.9551031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976409698,4.502165872,-2.306281524,2.306281524,1,0.924551058,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.059541655,93.41350447,0.059541655,86.58649553,0,0,0,0,0,12,19,0% +2018-12-29 04:00:00,124.9552949,266.2858689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180881313,4.647565165,-1.373121866,1.373121866,1,0.764971358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269313265,105.6234062,0.269313265,74.37659379,0,0.864342602,0,0,0,12,20,0% +2018-12-29 05:00:00,136.7793709,275.7006416,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387250372,4.811883946,-0.84677381,0.84677381,1,0.67496054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473726884,118.2764899,0.473726884,61.72351007,0,0.944453953,0,0,0,12,21,0% +2018-12-29 06:00:00,148.3562121,288.1414832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.589304367,5.029017594,-0.484679637,0.484679637,1,0.613038789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65886046,131.2130228,0.65886046,48.78697721,0,0.974111397,0,0,0,12,22,0% +2018-12-29 07:00:00,158.8117046,308.7863751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771787136,5.38933893,-0.200886541,0.200886541,1,0.564507311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812104724,144.3020813,0.812104724,35.69791869,0,0.988431586,0,0,0,12,23,0% +2018-12-30 08:00:00,165.1081154,349.753641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.881680235,6.104352606,0.04505139,-0.04505139,1,0.522449448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923021636,157.3719004,0.923021636,22.62809965,0,0.995830089,0,0,0,12,0,0% +2018-12-30 09:00:00,161.9989482,38.74871584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827415032,0.676292672,0.277791277,-0.277791277,1,0.482648583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984055002,169.754607,0.984055002,10.24539298,0,0.999189832,0,0,0,12,1,0% +2018-12-30 10:00:00,152.5427168,65.45033823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662372658,1.142323899,0.517982487,-0.517982487,1,0.441573467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991044976,172.3264623,0.991044976,7.673537743,0,0.999548203,0,0,0,12,2,0% +2018-12-30 11:00:00,141.2292587,80.07443185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464915564,1.397562482,0.790796248,-0.790796248,1,0.394919566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943511413,160.6498702,0.943511413,19.35012979,0,0.99700647,0,0,0,12,3,0% +2018-12-30 12:00:00,129.4414718,90.31113627,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259179871,1.576226679,1.140039155,-1.140039155,1,0.335195512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844686842,147.6383991,0.844686842,32.36160085,0,0.990806465,0,0,0,12,4,0% +2018-12-30 13:00:00,117.6505557,98.90942829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053389564,1.726295185,1.670864543,-1.670864543,1,0.244419024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701296726,134.5311333,0.701296726,45.46886668,0,0.978703503,0,0,0,12,5,0% +2018-12-30 14:00:00,106.1217043,107.0689541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852173148,1.868705776,2.760501127,-2.760501127,1,0.058080194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523101923,121.5405533,0.523101923,58.45944665,0,0.954416333,0,0,0,12,6,0% +2018-12-30 15:00:00,95.09363411,115.4937061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659697013,2.015745437,7.864280407,-7.864280407,1,0,#DIV/0!,0,0,0.448950033,1,0.126478455,0,0.948182112,0.986944075,0.724496596,1,0,0,0.063316523,0.312029739,0.836188508,0.560685104,0.961238037,0.922476074,0,0,0,0,0,0,-0.32223441,108.7981065,0.32223441,71.20189354,0,0.894833455,0,0,0,12,7,0% +2018-12-30 16:00:00,84.69400882,124.7284324,34.51405004,186.14924,17.29995385,17.0384779,0,17.0384779,16.77829641,0.260181488,29.32104481,20.43105635,8.889988461,0.521657439,8.368331023,1.478189311,2.176921816,-6.217680663,6.217680663,0.406560295,0.406560295,0.501243807,0.183172522,5.891457946,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.1279367,0.377939038,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.132707868,5.66309347,16.26064457,6.041032509,0,20.43105635,-0.109756324,96.30126893,0.109756324,83.69873107,0,0.594445385,16.26064457,18.18617967,28.16313544,12,8,73% +2018-12-30 17:00:00,75.70970177,135.2629362,182.6990607,541.9217857,48.93383582,99.37383961,50.53827679,48.83556282,47.45830013,1.377262692,45.77303817,0,45.77303817,1.475535697,44.29750247,1.321383572,2.360783593,-1.642825323,1.642825323,0.811093366,0.811093366,0.267838464,1.186773253,38.17070731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.61872324,1.069020589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859813182,36.69113576,46.47853643,37.76015635,50.53827679,0,0.093257511,84.64896273,-0.093257511,95.35103727,0.513850155,0,72.44763778,37.76015635,97.1609049,12,9,34% +2018-12-30 18:00:00,68.32873466,147.4961044,318.5183611,688.0818557,64.42298611,256.3024134,191.420892,64.88152134,62.48039539,2.401125949,79.17105506,0,79.17105506,1.942590727,77.22846434,1.192561394,2.574292656,-0.544850763,0.544850763,0.623328658,0.623328658,0.202258312,1.679620179,54.0223586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.0585326,1.407400369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216879102,51.92834593,61.2754117,53.3357463,191.420892,0,0.278194942,73.84749729,-0.278194942,106.1525027,0.870269917,0,227.8632555,53.3357463,262.7704348,12,10,15% +2018-12-30 19:00:00,63.22714238,161.5426985,411.1159138,751.5047463,72.59710564,397.7887598,324.2815594,73.50720047,70.40803505,3.099165414,101.8688836,0,101.8688836,2.18907059,99.67981303,1.103521811,2.819451972,0.053359129,-0.053359129,0.521028741,0.521028741,0.176585491,1.876879728,60.3669038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67888139,1.585974191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359792974,58.0269641,69.03867437,59.61293829,324.2815594,0,0.431509662,64.43659468,-0.431509662,115.5634053,0.93412774,0,371.9590744,59.61293829,410.9745502,12,11,10% +2018-12-30 20:00:00,61.00854314,176.9407794,450.4892072,773.19176,75.73924044,496.4009524,419.5495516,76.85140083,73.45542289,3.395977931,111.5101414,0,111.5101414,2.283817547,109.2263239,1.06479995,3.088199182,0.525853959,-0.525853959,0.440227366,0.440227366,0.168126648,1.814607062,58.36400078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.6081465,1.654618039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314676639,56.10169753,71.92282314,57.75631557,419.5495516,0,0.542620309,57.13780661,-0.542620309,122.8621934,0.957854536,0,473.7902643,57.75631557,511.5906177,12,12,8% +2018-12-30 21:00:00,61.99230515,192.5927729,433.1107017,763.9393592,74.37231195,536.7589303,461.3642465,75.39468376,72.12971234,3.264971416,107.2553036,0,107.2553036,2.24259961,105.012704,1.081969836,3.361378003,1.012752466,-1.012752466,0.356962818,0.356962818,0.171716634,1.52599213,49.08115247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.33382309,1.624755783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105576104,47.17867064,70.43939919,48.80342643,461.3642465,0,0.603927839,52.84827059,-0.603927839,127.1517294,0.967208652,0,516.6748901,48.80342643,548.6157566,12,13,6% +2018-12-30 22:00:00,66.03188303,207.2614327,360.503459,719.3369131,68.28850144,508.6550215,439.708043,68.94697851,66.22935116,2.717627351,89.46738767,0,89.46738767,2.059150276,87.40823739,1.15247377,3.617394413,1.652093094,-1.652093094,0.247629131,0.247629131,0.189425371,1.06027487,34.1020845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.66217149,1.491847365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768165534,32.78022076,64.43033703,34.27206812,439.708043,0,0.611268565,52.31871487,-0.611268565,127.6812851,0.968202893,0,490.1569365,34.27206812,512.5873196,12,14,5% +2018-12-30 23:00:00,72.60287526,220.2152751,239.732387,613.9714731,56.15927234,402.6887978,346.4157307,56.27306707,54.46586308,1.807203996,59.81930201,0,59.81930201,1.693409267,58.12589274,1.26715922,3.843481613,2.769952733,-2.769952733,0.056463874,0.056463874,0.234258179,0.501489944,16.12964045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3546593,1.226869249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363327757,15.50442393,52.71798705,16.73129317,346.4157307,0,0.564221215,55.65177142,-0.564221215,124.3482286,0.961382276,0,385.7559307,16.73129317,396.7062274,12,15,3% +2018-12-30 00:00:00,81.04773076,231.3768756,88.95729601,362.1137416,32.60819433,201.1820105,168.8864759,32.29553463,31.62493696,0.670597673,22.5519837,0,22.5519837,0.98325737,21.56872633,1.414549753,4.038288292,6.015590786,-6.015590786,0,0,0.366560089,0.245814343,7.906234239,0.332698472,1,0.164728367,0,0.943501556,0.982263519,0.724496596,1,30.65618523,0.712366618,0.049163798,0.312029739,0.870058943,0.594555539,0.961238037,0.922476074,0.168681514,7.599773079,30.82486675,8.312139697,112.6982034,0,0.466390685,62.19973804,-0.466390685,117.800262,0.942793742,0,137.0760276,8.312139697,142.5161568,12,16,4% +2018-12-30 01:00:00,90.9878143,241.0666179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588036939,4.207406199,-57.29330731,57.29330731,1,0,#DIV/0!,0,0,1,0.892794576,0,0.017452274,0.961238037,1,0.676197174,0.951700578,0,0,0.115824807,0.257174615,0.724496596,0.448993192,0.969609441,0.930847478,0,0,0,0,0,0,0.321621002,71.23901542,-0.321621002,108.7609846,0.894537516,0,0,0,0,12,17,0% +2018-12-30 02:00:00,101.747477,249.7516694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775828479,4.358988944,-4.808702304,4.808702304,1,0.647509785,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143533056,81.74765907,-0.143533056,98.25234093,0.701648189,0,0,0,0,12,18,0% +2018-12-30 03:00:00,113.110133,257.9517338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974144238,4.502107065,-2.320787621,2.320787621,1,0.927031747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.057280047,93.28370226,0.057280047,86.71629774,0,0,0,0,0,12,19,0% +2018-12-30 04:00:00,124.8253266,266.2875614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178612939,4.647594703,-1.379764644,1.379764644,1,0.76610734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267141197,105.494222,0.267141197,74.50577804,0,0.862833061,0,0,0,12,20,0% +2018-12-30 05:00:00,136.6492616,275.7021917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384979535,4.811911,-0.850624181,0.850624181,1,0.675618992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.471757125,118.1484159,0.471757125,61.85158408,0,0.94401326,0,0,0,12,21,0% +2018-12-30 06:00:00,148.2261907,288.1267315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587035066,5.028760128,-0.487244155,0.487244155,1,0.613477348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657191698,131.0860458,0.657191698,48.91395424,0,0.973918698,0,0,0,12,22,0% +2018-12-30 07:00:00,158.6863156,308.6876833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769598685,5.387616434,-0.202766653,0.202766653,1,0.564828829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810814792,144.1756153,0.810814792,35.82438468,0,0.988333636,0,0,0,12,23,0% +2018-12-31 08:00:00,165.0222962,349.3720055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880182408,6.097691811,0.043565982,-0.043565982,1,0.522703468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922162169,157.2442515,0.922162169,22.75574845,0,0.995779602,0,0,0,12,0,0% +2018-12-31 09:00:00,161.9990687,38.32587306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827417134,0.668912674,0.276537652,-0.276537652,1,0.482862966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983647897,169.6242853,0.983647897,10.3757147,0,0.999168803,0,0,0,12,1,0% +2018-12-31 10:00:00,152.584999,65.18166862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663110621,1.137634729,0.516849968,-0.516849968,1,0.441767139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991080889,172.3418876,0.991080889,7.658112357,0,0.999550031,0,0,0,12,2,0% +2018-12-31 11:00:00,141.2849757,79.88506326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46588801,1.394257377,0.7896815,-0.7896815,1,0.3951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943950407,160.7259253,0.943950407,19.27407469,0,0.997031116,0,0,0,12,3,0% +2018-12-31 12:00:00,129.4999343,90.1591298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260200234,1.573573666,1.138784241,-1.138784241,1,0.335410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845461126,147.7213755,0.845461126,32.27862455,0,0.990860675,0,0,0,12,4,0% +2018-12-31 13:00:00,117.706506,98.7753694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054366081,1.723955416,1.669052058,-1.669052058,1,0.244728978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702315316,134.6130586,0.702315316,45.38694145,0,0.978806906,0,0,0,12,5,0% +2018-12-31 14:00:00,106.1714743,106.9423663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853041798,1.866496402,2.756124754,-2.756124754,1,0.058828598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.524256889,121.6182309,0.524256889,58.38176915,0,0.954626909,0,0,0,12,6,0% +2018-12-31 15:00:00,95.13380826,115.367961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660398184,2.013550771,7.819815012,-7.819815012,1,0,#DIV/0!,0,0,0.446631307,1,0.127189933,0,0.948098089,0.986860053,0.724496596,1,0,0,0.063046946,0.312029739,0.836818799,0.561315395,0.961238037,0.922476074,0,0,0,0,0,0,-0.323408288,108.8691694,0.323408288,71.13083055,0,0.895396665,0,0,0,12,7,0% +2018-12-31 16:00:00,84.72018563,124.5989945,34.05498906,183.1903313,17.19785467,16.93599679,0,16.93599679,16.6792759,0.256720892,29.07671714,20.30111199,8.775605145,0.518578772,8.257026373,1.478646182,2.174662698,-6.26862634,6.26862634,0.397848071,0.397848071,0.505002502,0.180201714,5.795906553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.03275442,0.375708555,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.130555528,5.571245837,16.16330995,5.946954392,0,20.30111199,-0.110819779,96.36257437,0.110819779,83.63742563,0,0.598817002,16.16330995,18.10360542,28.01175762,12,8,73% +2018-12-31 17:00:00,75.71868586,135.127268,182.2625548,539.8034796,49.1022267,98.87168013,49.8760946,48.99558552,47.62161339,1.373972126,45.67227987,0,45.67227987,1.480613303,44.19166657,1.321540374,2.358415736,-1.652346858,1.652346858,0.812721644,0.812721644,0.26940381,1.185978592,38.14514828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77570617,1.072699298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859237452,36.66656745,46.63494362,37.73926674,49.8760946,0,0.092396764,84.69849376,-0.092396764,95.30150624,0.508855506,0,72.01466898,37.73926674,96.71426428,12,9,34% +2018-12-31 18:00:00,68.31520418,147.3548885,318.4457494,686.6701876,64.72098682,255.819222,190.6492332,65.16998885,62.76941027,2.400578571,79.16243533,0,79.16243533,1.951576548,77.21085878,1.192325242,2.571827973,-0.550525647,0.550525647,0.62429912,0.62429912,0.203240228,1.681981346,54.09830186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.33634471,1.413910565,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218589759,52.00134547,61.55493447,53.41525604,190.6492332,0,0.277643091,73.88041277,-0.277643091,106.1195872,0.86991268,0,227.4031199,53.41525604,262.3623367,12,10,15% +2018-12-31 19:00:00,63.18698824,161.4017627,411.4936061,750.4792373,72.96725641,397.5837616,323.7147246,73.86903702,70.76702441,3.102012618,101.9716209,0,101.9716209,2.200232001,99.7713889,1.102820989,2.816992177,0.048401061,-0.048401061,0.521876621,0.521876621,0.177322941,1.881863452,60.52719749,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02395561,1.594060595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363403665,58.18104449,69.38735928,59.77510509,323.7147246,0,0.431344011,64.44711525,-0.431344011,115.5528847,0.934083241,0,371.7638582,59.77510509,410.885469,12,11,11% +2018-12-31 20:00:00,60.94052299,176.8111597,451.3387591,772.4293076,76.15650067,496.6075196,419.3450362,77.2624834,73.86010119,3.402382212,111.728707,0,111.728707,2.296399483,109.4323076,1.063612774,3.08593689,0.520488575,-0.520488575,0.441144901,0.441144901,0.168734679,1.821782205,58.59477804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.99713867,1.663733608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.319875006,56.32352941,72.31701367,57.98726302,419.3450362,0,0.542891151,57.11933022,-0.542891151,122.8806698,0.957900507,0,474.0078363,57.98726302,511.9593402,12,12,8% +2018-12-31 21:00:00,61.89955929,192.4858686,434.4103153,763.427204,74.8218518,537.4508456,461.6103802,75.84046536,72.56569691,3.274768453,107.5839653,0,107.5839653,2.256154895,105.3278104,1.080351115,3.35951217,1.00586452,-1.00586452,0.358140726,0.358140726,0.172237742,1.534861437,49.36641986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.75290804,1.634576541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.112001886,47.45288051,70.86490992,49.08745705,461.6103802,0,0.604655398,52.79595131,-0.604655398,127.2040487,0.967308272,0,517.384449,49.08745705,549.5112079,12,13,6% +2018-12-31 22:00:00,65.92085731,207.1825095,362.1910718,719.196686,68.76016489,509.8829981,440.4658566,69.41714151,66.68679222,2.730349289,89.89079133,0,89.89079133,2.073372669,87.81741866,1.150536006,3.616016943,1.641412705,-1.641412705,0.249455585,0.249455585,0.189845002,1.070140449,34.41939543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.10188123,1.502151441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775313112,33.08523209,64.87719435,34.58738353,440.4658566,0,0.612441444,52.23375464,-0.612441444,127.7662454,0.968359542,0,491.4065095,34.58738353,514.0432602,12,14,5% +2018-12-31 23:00:00,72.48050025,220.1624669,241.6919175,614.6860319,56.65275678,404.5534316,347.7869887,56.7664429,54.94446714,1.821975765,60.30929325,0,60.30929325,1.708289643,58.60100361,1.265023373,3.842559936,2.747905957,-2.747905957,0.060234095,0.060234095,0.234400709,0.511093152,16.43851264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.81471173,1.237650031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370285249,15.80132362,53.18499697,17.03897365,347.7869887,0,0.565796147,55.54240452,-0.565796147,124.4575955,0.961628949,0,387.6270335,17.03897365,398.7787009,12,15,3% +2018-12-31 00:00:00,80.91997316,231.3449635,90.86257745,365.5306167,33.17678434,204.0344817,171.1731394,32.86134237,32.17638188,0.684960489,23.03108633,0,23.03108633,1.000402457,22.03068387,1.412319962,4.03773132,5.92843308,-5.92843308,0,0,0.365131447,0.250100614,8.04409547,0.325994799,1,0.167105627,0,0.943199743,0.981961707,0.724496596,1,31.18938772,0.724788175,0.048306102,0.312029739,0.872162645,0.596659241,0.961238037,0.922476074,0.171687048,7.732290538,31.36107477,8.457078712,115.3715862,0,0.468286736,62.07685778,-0.468286736,117.9231422,0.943227811,0,140.1827635,8.457078712,145.7177523,12,16,4% +2018-12-31 01:00:00,90.85582557,241.0503653,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585733301,4.207122537,-66.12798554,66.12798554,1,0,#DIV/0!,0,0,1,0.907738057,0,0.015121038,0.961238037,1,0.682511052,0.958014457,0,0,0.115824807,0.264340096,0.724496596,0.448993192,0.968551587,0.929789624,0,0,0,0,0,0,0.323782877,71.10814771,-0.323782877,108.8918523,0.895575528,0,0,0,0,12,17,0% +2018-12-31 02:00:00,101.6144221,249.7470431,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773506233,4.358908199,-4.865354812,4.865354812,1,0.637821635,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145830746,81.61461117,-0.145830746,98.38538883,0.707136775,0,0,0,0,12,18,0% +2018-12-31 03:00:00,112.9769068,257.9558115,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971819002,4.502178235,-2.335794634,2.335794634,1,0.929598097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054964185,93.15080366,0.054964185,86.84919634,0,0,0,0,0,12,19,0% +2018-12-31 04:00:00,124.6921609,266.2977113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176288759,4.647771854,-1.386556357,1.386556357,1,0.767268792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264925863,105.3625476,0.264925863,74.63745238,0,0.861267955,0,0,0,12,20,0% +2018-12-31 05:00:00,136.5159266,275.7138257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3826524,4.812114051,-0.854514985,0.854514985,1,0.676284358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469753923,118.0183243,0.469753923,61.98167568,0,0.943561293,0,0,0,12,21,0% +2018-12-31 06:00:00,148.0924716,288.124773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584701226,5.028725945,-0.489801229,0.489801229,1,0.613914633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65549747,130.9573815,0.65549747,49.04261845,0,0.973722055,0,0,0,12,22,0% +2018-12-31 07:00:00,158.5558122,308.6058127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767320971,5.386187523,-0.204611094,0.204611094,1,0.565144247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809504976,144.0475944,0.809504976,35.95240557,0,0.988233857,0,0,0,12,23,0% diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 910cb35424..f4776be00b 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -17,6 +17,7 @@ """ import numpy as np +from collections import OrderedDict def _to_radians(*params, is_rad=False): @@ -28,16 +29,11 @@ def _to_radians(*params, is_rad=False): return p_rad -def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, - is_rad=False): +def solar_projection(solar_zenith, solar_azimuth, system_azimuth, + is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. - .. math:: - \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - - \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} - \\right)}{\\cos\\left(\\text{solar zenith}\\right)} - Parameters ---------- solar_zenith : numeric @@ -51,21 +47,31 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, Returns ------- + phi : numeric + 4-quadrant arc-tangent of solar projection tan_phi : numeric tangent of the solar projection """ solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, is_rad) + solar_zenith, solar_azimuth, system_azimuth, is_rad=is_rad) rotation_rad = solar_azimuth_rad - system_azimuth_rad - tan_phi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) - return tan_phi + x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) + x2 = np.cos(solar_zenith_rad) + tan_phi = x1 / x2 + phi = np.arctan2(x1, x2) + return phi, tan_phi -def solar_projection(solar_zenith, solar_azimuth, system_azimuth, - is_rad=False): +def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, + is_rad=False): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + .. math:: + \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - + \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} + \\right)}{\\cos\\left(\\text{solar zenith}\\right)} + Parameters ---------- solar_zenith : numeric @@ -79,19 +85,14 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth, Returns ------- - phi : numeric - 4-quadrant arc-tangent of solar projection tan_phi : numeric tangent of the solar projection """ solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, is_rad) + solar_zenith, solar_azimuth, system_azimuth, is_rad=is_rad) rotation_rad = solar_azimuth_rad - system_azimuth_rad - x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) - x2 = np.cos(solar_zenith_rad) - tan_phi = x1 / x2 - phi = np.arctan2(x1, x2) - return phi, tan_phi + tan_phi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) + return tan_phi def ground_illumination(gcr, tilt, tan_phi, is_rad=False): @@ -100,7 +101,7 @@ def ground_illumination(gcr, tilt, tan_phi, is_rad=False): .. math:: F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + - \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + \\sin \\beta \\tan \\phi \\right|\\right)} \\newline \\beta &= \\text{tilt} @@ -120,7 +121,7 @@ def ground_illumination(gcr, tilt, tan_phi, is_rad=False): f_gnd_sky : numeric fration of ground illuminated from sky """ - tilt_rad = _to_radians(tilt, is_rad)[0] + tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_gnd_sky = 1.0 - np.minimum( 1.0, gcr * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi)) return f_gnd_sky # 1 - min(1, abs()) < 1 always @@ -173,8 +174,7 @@ def shade_line(gcr, tilt, tan_phi, is_rad=False): .. math:: F_x = \\max \\left( 0, \\min \\left(1 - \\frac{1}{\\text{GCR} \\left( - \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) - \\right) + \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) \\right) Parameters ---------- @@ -192,21 +192,14 @@ def shade_line(gcr, tilt, tan_phi, is_rad=False): f_x : numeric fraction of module shaded from the bottom """ - tilt_rad = _to_radians(tilt, is_rad)[0] + tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_x = 1.0 - 1.0 / gcr / (np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi) return np.maximum(0.0, np.minimum(f_x, 1.0)) -def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): +def sky_angle(gcr, tilt, f_x, is_rad=False): """ - tangent of angle from shade line to top of next row - - .. math:: - - \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} - \\sin{\\beta}}{1 - F_y \\text{GCR} \\cos{\\beta}} \\newline - - F_y &= 1 - F_x + angle from shade line to top of next row Parameters ---------- @@ -221,17 +214,30 @@ def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): Returns ------- - tan_psi_top : numeric + psi_top : numeric + 4-quadrant arc-tangent + tan_psi_top tangent of angle from shade line to top of next row """ - tilt_rad = _to_radians(tilt, is_rad)[0] + tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_y = 1.0 - f_x - return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) + x1 = f_y * np.sin(tilt_rad) + x2 = (1/gcr - f_y * np.cos(tilt_rad)) + tan_psi_top = x1 / x2 + psi_top = np.arctan2(x1, x2) + return psi_top, tan_psi_top -def sky_angle(gcr, tilt, f_x, is_rad=False): +def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): """ - angle from shade line to top of next row + tangent of angle from shade line to top of next row + + .. math:: + + \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} \\sin{\\beta}}{1 - F_y + \\text{GCR} \\cos{\\beta}} \\newline + + F_y &= 1 - F_x Parameters ---------- @@ -246,29 +252,23 @@ def sky_angle(gcr, tilt, f_x, is_rad=False): Returns ------- - psi_top : numeric - 4-quadrant arc-tangent - tan_psi_top + tan_psi_top : numeric tangent of angle from shade line to top of next row """ - tilt_rad = _to_radians(tilt, is_rad)[0] + tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_y = 1.0 - f_x - x1 = f_y * np.sin(tilt_rad) - x2 = (1/gcr - f_y * np.cos(tilt_rad)) - tan_psi_top = x1 / x2 - psi_top = np.arctan2(x1, x2) - return psi_top, tan_psi_top - + return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) def sky_angle_0_tangent(gcr, tilt, is_rad=False): """ - tangent of angle to top of next row with no shade (shade line at bottom) + tangent of angle to top of next row with no shade (shade line at bottom) so + :math:`F_x = 0` .. math:: \\tan{\\psi_t\\left(x=0\\right)} = \\frac{\\text{GCR} \\sin{\\beta}} - {1 - \\text{GCR} \\cos{\\beta}} + {1 - \\text{GCR} \\cos{\\beta}} Parameters ---------- @@ -319,19 +319,17 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): .. math :: \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos - \\left(\\psi_t + \\beta - \\right) + \\cos \\left(\\psi_t\\left(x=0\\right) + - \\beta \\right)}{2} }{ 1 + \\cos \\beta}} + \\left(\\psi_t + \\beta \\right) + \\cos \\left(\\psi_t + \\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} - Recall that the view factor from the top of the rack is one because it's - view is not obstructued. + The view factor from the top of the rack is one because it's view is not + obstructued. .. math:: \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + - \\cos \\left(\\psi_t + \\beta - \\right)}{1 + \\cos \\beta} }{2}} + \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ - tilt_rad = _to_radians(tilt, is_rad)[0] + tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] psi_top = np.arctan(tan_psi_top) psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( @@ -343,14 +341,28 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): return f_sky_pv_shade, f_sky_pv_noshade -def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, - f_sky_pv_noshade): +def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): """ Sky diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. + + Parameters + ---------- + poa_sky_diffuse : numeric + sky diffuse irradiance on the plane of array (W/m^2) + f_x : numeric + shade line fraction from bottom of module + f_sky_pv_shade : numeric + fraction of sky visible from shaded part of PV surface + f_sky_pv_noshade : numeric + fraction of sky visible from unshaded part of PV surface + + Returns + ------- + poa_sky_diffuse_pv : numeric + total sky diffuse irradiance incident on PV surface """ - return poa_sky_diffuse * ( - f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) + return poa_sky_diffuse * (f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) def ground_angle(gcr, tilt, f_x, is_rad=False): @@ -376,7 +388,7 @@ def ground_angle(gcr, tilt, f_x, is_rad=False): tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row """ - tilt_rad = _to_radians(tilt, is_rad) + tilt_rad = _to_radians(tilt, is_rad=is_rad) x1 = f_x * np.sin(tilt_rad) x2 = (f_x * np.cos(tilt_rad) + 1/gcr) tan_psi_bottom = x1 / x2 @@ -390,7 +402,7 @@ def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): .. math:: \\tan{\\psi_b} = \\frac{F_x \\sin \\beta}{F_x \\cos \\beta + - \\frac{1}{\\text{GCR}}} + \\frac{1}{\\text{GCR}}} Parameters ---------- @@ -409,7 +421,7 @@ def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row """ - tilt_rad = _to_radians(tilt, is_rad) + tilt_rad = _to_radians(tilt, is_rad=is_rad) return f_x * np.sin(tilt_rad) / ( f_x * np.cos(tilt_rad) + 1/gcr) @@ -417,10 +429,11 @@ def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): def ground_angle_1_tangent(gcr, tilt, is_rad=False): """ tangent of angle to bottom of next row with all shade (shade line at top) + so :math:`F_x = 1` .. math:: - \\tan{\\psi_b\\left(x=1\\right)} = \\frac{F_x \\sin{\\beta}}{F_x - \\cos{\\beta} + \\frac{1}{\\text{GCR}}} + \\tan{\\psi_b\\left(x=1\\right)} = \\frac{\\sin{\\beta}}{\\cos{\\beta} + + \\frac{1}{\\text{GCR}}} Parameters ---------- @@ -440,8 +453,7 @@ def ground_angle_1_tangent(gcr, tilt, is_rad=False): return ground_angle_tangent(gcr, tilt, 1.0, is_rad) -def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, - is_rad=False): +def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=False): """ view factors of ground from shaded and unshaded parts of PV module @@ -469,20 +481,17 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, .. math:: \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos - \\left(\\beta - \\psi_b - \\right)}{1 - \\cos \\beta}}{2}} + \\left(\\beta - \\psi_b \\right)}{1 - \\cos \\beta}}{2}} - At the bottom of rack, ``x = 0``, the angle is zero, and the view factor is - 1. + At the bottom of rack, :math:`x = 0`, the angle is zero, and the view + factor is one. .. math:: - \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - - \\frac{\\cos \\left(\\beta - - \\psi_b \\right) + - \\cos \\left(\\beta - \\psi_b\\left(x=1\\right) - \\right)}{2}}{1 - \\cos \\beta}} + \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - \\frac{\\cos + \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b + \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ - tilt_rad = _to_radians(tilt, is_rad) + tilt_rad = _to_radians(tilt, is_rad=is_rad) psi_bottom = np.arctan(tan_psi_bottom) psi_bottom_1 = np.arctan(tan_psi_bottom_1) f_gnd_pv_shade = (1 + (1 - np.cos(tilt_rad - psi_bottom)) @@ -503,51 +512,194 @@ def poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): ---------- poa_gnd_sky : numeric diffuse ground POA accounting for ground shade but not adjacent rows + f_x : numeric + shade line fraction from bottom of module + f_gnd_pv_shade : numeric + fraction of ground visible from shaded part of PV surface + f_gnd_pv_noshade : numeric + fraction of ground visible from unshaded part of PV surface + """ return poa_gnd_sky * (f_x*f_gnd_pv_shade + (1 - f_x)*f_gnd_pv_noshade) def poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): + """diffuse incident on PV surface from sky and ground""" return poa_gnd_pv + poa_sky_pv def poa_direct_pv(poa_direct, iam, f_x): + """direct incident on PV surface""" return poa_direct * iam * (1 - f_x) def poa_global_pv(poa_dir_pv, poa_dif_pv): + """global incident on PV surface""" return poa_dir_pv + poa_dif_pv def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): + """total global incident on bifacial PV surfaces""" effects = (1+shade_factor)*(1+transmission_factor) return poa_global_front + poa_global_back * bifaciality * effects def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, - dhi, poa_ground, poa_sky_diffuse, poa_direct, is_rad=False): + dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, + is_rad=False, all_output=False): """Get irradiance from infinite sheds model.""" + # convert angles to radians from degrees if necessary solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad - ) + solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad=is_rad) + # calculate solar projection tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth, is_rad=True) + # fraction of ground illuminated accounting from shade from panels f_gnd_sky = ground_illumination(gcr, tilt, tan_phi, is_rad=True) + # diffuse fraction df = diffuse_fraction(ghi, dhi) + # diffuse from sky reflected from ground accounting from shade from panels + # but not considering the fraction of ground blocked by the next row poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df) + # fraction of panel shaded f_x = shade_line(gcr, tilt, tan_phi, is_rad=True) + # angles from shadeline to top of next row tan_psi_top = sky_angle_tangent(gcr, tilt, f_x, is_rad=True) tan_psi_top_0 = sky_angle_0_tangent(gcr, tilt, is_rad=True) + # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( tilt, tan_psi_top, tan_psi_top_0, is_rad=True) + # total sky diffuse incident on plane of array poa_sky_pv = poa_sky_diffuse_pv( poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) - return 0 - - -class InfiniteSheds(): - """hi""" - def __init__(self, x, y): - self.x = x - self.y = y + # angles from shadeline to bottom of next row + tan_psi_bottom = ground_angle_tangent(gcr, tilt, f_x, is_rad=True) + tan_psi_bottom_1 = ground_angle_1_tangent(gcr, tilt, is_rad=True) + f_gnd_pv_shade, f_gnd_pv_noshade = f_ground_pv( + tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=True) + poa_gnd_pv = poa_ground_pv( + poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) + poa_dif_pv = poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) + poa_dir_pv = poa_direct_pv(poa_direct, iam, f_x) + poa_glo_pv = poa_global_pv(poa_dir_pv, poa_dif_pv) + output = poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, poa_sky_pv + if all_output: + output += ( + tan_phi, f_gnd_sky, df, poa_gnd_sky, f_x, + tan_psi_top, tan_psi_top_0, f_sky_pv_shade, f_sky_pv_noshade, + tan_psi_bottom, tan_psi_bottom_1, f_gnd_pv_shade, f_gnd_pv_noshade) + return output + + +def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, + tilt, ghi, dhi, poa_ground, poa_sky_diffuse, + poa_direct, iam, bifaciality=0.8, + shade_factor=-0.02, transmission_factor=0, + is_rad=False): + """Get global bifacial irradiance from infinite sheds model.""" + # convert angles to radians from degrees if necessary + solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( + solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad=is_rad) + # get front side + poa_global_front = get_irradiance( + solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, dhi, + poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, + shade_factor, transmission_factor, is_rad=True) + # backside is rotated and flipped relative to front + backside_tilt, backside_sysaz = _backside(tilt, system_azimuth) + # get backside + poa_global_back = get_irradiance( + solar_zenith, solar_azimuth, backside_sysaz, gcr, backside_tilt, ghi, + dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, + shade_factor, transmission_factor, is_rad=True) + # get bifacial + poa_glo_bifi = poa_global_bifacial( + poa_global_front[0], poa_global_back[0], bifaciality, shade_factor, + transmission_factor) + return poa_glo_bifi + + +def _backside(tilt, system_azimuth): + backside_tilt = np.pi - tilt + backside_sysaz = (np.pi + system_azimuth) % (2*np.pi) + return backside_tilt, backside_sysaz + + +class InfiniteSheds(object): + """An infinite sheds model""" + def __init__(self,system_azimuth, gcr, tilt, is_bifacial=True, + bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, + is_rad=False): + # convert angles to radians from degrees if necessary + system_azimuth, tilt = _to_radians(system_azimuth, tilt, is_rad=is_rad) + self.system_azimuth = system_azimuth + self.gcr = gcr + self.tilt = tilt + self.is_bifacial = is_bifacial + self.bifaciality = bifaciality + self.shade_factor = shade_factor + self.transmission_factor = transmission_factor + # backside angles + self.backside_tilt, self.backside_sysaz = _backside( + self.tilt, self.system_azimuth) + # sheds parameters + self.tan_phi = None + self.f_gnd_sky = None + self.df = None + self.front_side = None + self.back_side = None + self.poa_global_bifacial = None + + def _backside(self): + backside_tilt = np.pi - self.tilt + backside_sysaz = (np.pi + self.system_azimuth) % (2*np.pi) + return backside_tilt, backside_sysaz + + def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, + poa_sky_diffuse, poa_direct, iam, is_rad=False): + # convert angles to radians from degrees if necessary + solar_zenith, solar_azimuth = _to_radians( + solar_zenith, solar_azimuth, is_rad=is_rad) + self.front_side = _PVSurface(*get_irradiance( + solar_zenith, solar_azimuth, self.system_azimuth, self.gcr, + self.tilt, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, + is_rad=True, all_output=True)) + self.tan_phi = self.front_side.tan_phi + self.f_gnd_sky = self.front_side.f_gnd_sky + self.df = self.front_side.df + if self.is_bifacial and self.bifaciality > 0: + self.back_side = _PVSurface(*get_irradiance( + solar_zenith, solar_azimuth, self.backside_sysaz, self.gcr, + self.backside_tilt, ghi, dhi, poa_ground, poa_sky_diffuse, + poa_direct, iam, is_rad=True, all_output=True)) + self.poa_global_bifacial = poa_global_bifacial( + self.front_side.poa_global_pv, self.back_side.poa_global_pv, + self.bifaciality, self.shade_factor, self.transmission_factor) + + +class _PVSurface(object): + """A PV surface in an infinite shed""" + def __init__(self, poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, + poa_sky_pv, tan_phi, f_gnd_sky, df, poa_gnd_sky, f_x, + tan_psi_top, tan_psi_top_0, f_sky_pv_shade, f_sky_pv_noshade, + tan_psi_bottom, tan_psi_bottom_1, f_gnd_pv_shade, + f_gnd_pv_noshade): + self.poa_global_pv = poa_glo_pv + self.poa_direct_pv = poa_dir_pv + self.poa_diffuse_pv = poa_dif_pv + self.poa_ground_pv = poa_gnd_pv + self.poa_sky_diffuse_pv = poa_sky_pv + self.tan_phi = tan_phi + self.f_gnd_sky = f_gnd_sky + self.df = df + self.poa_ground_sky = poa_gnd_sky + self.f_x = f_x + self.tan_psi_top = tan_psi_top + self.tan_psi_top_0 = tan_psi_top_0 + self.f_sky_pv_shade = f_sky_pv_shade + self.f_sky_pv_noshade = f_sky_pv_noshade + self.tan_psi_bottom = tan_psi_bottom + self.tan_psi_bottom_1 = tan_psi_bottom_1 + self.f_gnd_pv_shade = f_gnd_pv_shade + self.f_gnd_pv_noshade = f_gnd_pv_noshade \ No newline at end of file From 969093862d84bf0172efa8718e0ed71d685f3880 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 03:12:07 -0700 Subject: [PATCH 008/115] TST: add infinite_sheads test, add infinite_sheds to pvlib-api --- pvlib/__init__.py | 1 + pvlib/infinite_sheds.py | 216 +++++++++++------------------- pvlib/test/test_infinite_sheds.py | 78 +++++++++++ 3 files changed, 158 insertions(+), 137 deletions(-) create mode 100644 pvlib/test/test_infinite_sheds.py diff --git a/pvlib/__init__.py b/pvlib/__init__.py index 238d481615..8bc007ce3d 100644 --- a/pvlib/__init__.py +++ b/pvlib/__init__.py @@ -12,6 +12,7 @@ from pvlib import spa from pvlib import modelchain from pvlib import singlediode +from pvlib import infinite_sheds # for backwards compatibility for pvlib.tmy module from pvlib import tmy diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index f4776be00b..229213652e 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -20,50 +20,35 @@ from collections import OrderedDict -def _to_radians(*params, is_rad=False): - if is_rad: - return params - p_rad = [] - for p in params: - p_rad.append(np.radians(p)) - return p_rad - - -def solar_projection(solar_zenith, solar_azimuth, system_azimuth, - is_rad=False): +def solar_projection(solar_zenith, solar_azimuth, system_azimuth): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. Parameters ---------- solar_zenith : numeric - Apparent zenith in degrees. + apparent zenith in radians solar_azimuth : numeric - Azimuth in degrees. + azimuth in radians system_azimuth : numeric - System rotation from north in degrees. - is_rad : bool, default is False - if true, then input arguments are radians + system rotation from north in radians Returns ------- phi : numeric - 4-quadrant arc-tangent of solar projection + 4-quadrant arc-tangent of solar projection in radians tan_phi : numeric tangent of the solar projection """ - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, is_rad=is_rad) - rotation_rad = solar_azimuth_rad - system_azimuth_rad - x1 = np.cos(rotation_rad) * np.sin(solar_zenith_rad) - x2 = np.cos(solar_zenith_rad) + rotation = solar_azimuth - system_azimuth + x1 = np.cos(rotation) * np.sin(solar_zenith) + x2 = np.cos(solar_zenith) tan_phi = x1 / x2 phi = np.arctan2(x1, x2) return phi, tan_phi -def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, - is_rad=False): +def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -75,27 +60,23 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth, Parameters ---------- solar_zenith : numeric - Apparent zenith in degrees. + apparent zenith in radians solar_azimuth : numeric - Azimuth in degrees. + azimuth in radians system_azimuth : numeric - System rotation from north in degrees. - is_rad : bool, default is False - if true, then input arguments are radians + system rotation from north in radians Returns ------- tan_phi : numeric tangent of the solar projection """ - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, is_rad=is_rad) - rotation_rad = solar_azimuth_rad - system_azimuth_rad - tan_phi = np.cos(rotation_rad) * np.tan(solar_zenith_rad) + rotation = solar_azimuth - system_azimuth + tan_phi = np.cos(rotation) * np.tan(solar_zenith) return tan_phi -def ground_illumination(gcr, tilt, tan_phi, is_rad=False): +def ground_illumination(gcr, tilt, tan_phi): """ Calculate the fraction of the ground visible from the sky. @@ -110,20 +91,17 @@ def ground_illumination(gcr, tilt, tan_phi, is_rad=False): gcr : numeric ratio of module length to row spacing tilt : numeric - angle of module normal from vertical in degrees, if bifacial use front + angle of module normal from vertical in radians, if bifacial use front tan_phi : numeric solar projection tangent - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- f_gnd_sky : numeric fration of ground illuminated from sky """ - tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_gnd_sky = 1.0 - np.minimum( - 1.0, gcr * np.abs(np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi)) + 1.0, gcr * np.abs(np.cos(tilt) + np.sin(tilt) * tan_phi)) return f_gnd_sky # 1 - min(1, abs()) < 1 always @@ -168,7 +146,7 @@ def poa_ground_sky(poa_ground, f_gnd_sky, df): return poa_ground * (f_gnd_sky * (1 - df) + df) -def shade_line(gcr, tilt, tan_phi, is_rad=False): +def shade_line(gcr, tilt, tan_phi): """ calculate fraction of module shaded from the bottom @@ -181,23 +159,20 @@ def shade_line(gcr, tilt, tan_phi, is_rad=False): gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians tan_phi : numeric solar projection tangent - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- f_x : numeric fraction of module shaded from the bottom """ - tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] - f_x = 1.0 - 1.0 / gcr / (np.cos(tilt_rad) + np.sin(tilt_rad) * tan_phi) + f_x = 1.0 - 1.0 / gcr / (np.cos(tilt) + np.sin(tilt) * tan_phi) return np.maximum(0.0, np.minimum(f_x, 1.0)) -def sky_angle(gcr, tilt, f_x, is_rad=False): +def sky_angle(gcr, tilt, f_x): """ angle from shade line to top of next row @@ -206,29 +181,26 @@ def sky_angle(gcr, tilt, f_x, is_rad=False): gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians f_x : numeric fraction of module shaded from bottom - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- psi_top : numeric - 4-quadrant arc-tangent + 4-quadrant arc-tangent in radians tan_psi_top tangent of angle from shade line to top of next row """ - tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_y = 1.0 - f_x - x1 = f_y * np.sin(tilt_rad) - x2 = (1/gcr - f_y * np.cos(tilt_rad)) + x1 = f_y * np.sin(tilt) + x2 = (1/gcr - f_y * np.cos(tilt)) tan_psi_top = x1 / x2 psi_top = np.arctan2(x1, x2) return psi_top, tan_psi_top -def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): +def sky_angle_tangent(gcr, tilt, f_x): """ tangent of angle from shade line to top of next row @@ -247,20 +219,17 @@ def sky_angle_tangent(gcr, tilt, f_x, is_rad=False): angle of surface normal from vertical in degrees f_x : numeric fraction of module shaded from bottom - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- tan_psi_top : numeric tangent of angle from shade line to top of next row """ - tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] f_y = 1.0 - f_x - return f_y * np.sin(tilt_rad) / (1/gcr - f_y * np.cos(tilt_rad)) + return f_y * np.sin(tilt) / (1/gcr - f_y * np.cos(tilt)) -def sky_angle_0_tangent(gcr, tilt, is_rad=False): +def sky_angle_0_tangent(gcr, tilt): """ tangent of angle to top of next row with no shade (shade line at bottom) so :math:`F_x = 0` @@ -276,18 +245,16 @@ def sky_angle_0_tangent(gcr, tilt, is_rad=False): ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- tan_psi_top_0 : numeric tangent angle from bottom, ``x = 0``, to top of next row """ - return sky_angle_tangent(gcr, tilt, 0.0, is_rad) + return sky_angle_tangent(gcr, tilt, 0.0) -def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): +def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): """ view factors of sky from shaded and unshaded parts of PV module @@ -300,8 +267,6 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): tan_psi_top_0 : numeric tangent of angle to top of next row with no shade (shade line at bottom) - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- @@ -329,15 +294,14 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0, is_rad=False): \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ - tilt_rad = _to_radians(tilt, is_rad=is_rad)[0] psi_top = np.arctan(tan_psi_top) psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( - (1 + (np.cos(psi_top + tilt_rad) - + np.cos(psi_top_0 + tilt_rad)) / 2) / (1 + np.cos(tilt_rad))) + (1 + (np.cos(psi_top + tilt) + + np.cos(psi_top_0 + tilt)) / 2) / (1 + np.cos(tilt))) f_sky_pv_noshade = (1 + ( - 1 + np.cos(psi_top + tilt_rad)) / (1 + np.cos(tilt_rad))) / 2 + 1 + np.cos(psi_top + tilt)) / (1 + np.cos(tilt))) / 2 return f_sky_pv_shade, f_sky_pv_noshade @@ -365,7 +329,7 @@ def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): return poa_sky_diffuse * (f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) -def ground_angle(gcr, tilt, f_x, is_rad=False): +def ground_angle(gcr, tilt, f_x): """ angle from shadeline to bottom of adjacent row @@ -378,8 +342,6 @@ def ground_angle(gcr, tilt, f_x, is_rad=False): f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- @@ -388,15 +350,14 @@ def ground_angle(gcr, tilt, f_x, is_rad=False): tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row """ - tilt_rad = _to_radians(tilt, is_rad=is_rad) - x1 = f_x * np.sin(tilt_rad) - x2 = (f_x * np.cos(tilt_rad) + 1/gcr) + x1 = f_x * np.sin(tilt) + x2 = (f_x * np.cos(tilt) + 1/gcr) tan_psi_bottom = x1 / x2 psi_bottom = np.arctan2(x1, x2) return psi_bottom, tan_psi_bottom -def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): +def ground_angle_tangent(gcr, tilt, f_x): """ tangent of angle from shadeline to bottom of adjacent row @@ -413,20 +374,17 @@ def ground_angle_tangent(gcr, tilt, f_x, is_rad=False): f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row """ - tilt_rad = _to_radians(tilt, is_rad=is_rad) - return f_x * np.sin(tilt_rad) / ( - f_x * np.cos(tilt_rad) + 1/gcr) + return f_x * np.sin(tilt) / ( + f_x * np.cos(tilt) + 1/gcr) -def ground_angle_1_tangent(gcr, tilt, is_rad=False): +def ground_angle_1_tangent(gcr, tilt): """ tangent of angle to bottom of next row with all shade (shade line at top) so :math:`F_x = 1` @@ -441,8 +399,6 @@ def ground_angle_1_tangent(gcr, tilt, is_rad=False): ratio of module length to row spacing tilt : numeric angle of surface normal from vertical in degrees - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- @@ -450,10 +406,10 @@ def ground_angle_1_tangent(gcr, tilt, is_rad=False): tangent of angle to bottom of next row with all shade (shade line at top) """ - return ground_angle_tangent(gcr, tilt, 1.0, is_rad) + return ground_angle_tangent(gcr, tilt, 1.0) -def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=False): +def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): """ view factors of ground from shaded and unshaded parts of PV module @@ -465,8 +421,6 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=False): tangent of angle from shade line to bottom of next row tan_psi_bottom_1 : numeric tangent of angle to bottom of next row with all shade - is_rad : bool, default is False - if true, then input arguments are radians Returns ------- @@ -491,15 +445,14 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=False): \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ - tilt_rad = _to_radians(tilt, is_rad=is_rad) psi_bottom = np.arctan(tan_psi_bottom) psi_bottom_1 = np.arctan(tan_psi_bottom_1) - f_gnd_pv_shade = (1 + (1 - np.cos(tilt_rad - psi_bottom)) - / (1 - np.cos(tilt_rad))) / 2 + f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) + / (1 - np.cos(tilt))) / 2 f_gnd_pv_noshade = ( - (1 - (np.cos(tilt_rad - psi_bottom) - + np.cos(tilt_rad - psi_bottom_1))/2) - / (1 - np.cos(tilt_rad))) + (1 - (np.cos(tilt - psi_bottom) + + np.cos(tilt - psi_bottom_1))/2) + / (1 - np.cos(tilt))) return f_gnd_pv_shade, f_gnd_pv_noshade @@ -547,37 +500,34 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, - is_rad=False, all_output=False): + all_output=False): """Get irradiance from infinite sheds model.""" - # convert angles to radians from degrees if necessary - solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad=is_rad) # calculate solar projection tan_phi = solar_projection_tangent( - solar_zenith, solar_azimuth, system_azimuth, is_rad=True) + solar_zenith, solar_azimuth, system_azimuth) # fraction of ground illuminated accounting from shade from panels - f_gnd_sky = ground_illumination(gcr, tilt, tan_phi, is_rad=True) + f_gnd_sky = ground_illumination(gcr, tilt, tan_phi) # diffuse fraction df = diffuse_fraction(ghi, dhi) # diffuse from sky reflected from ground accounting from shade from panels # but not considering the fraction of ground blocked by the next row poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df) # fraction of panel shaded - f_x = shade_line(gcr, tilt, tan_phi, is_rad=True) + f_x = shade_line(gcr, tilt, tan_phi) # angles from shadeline to top of next row - tan_psi_top = sky_angle_tangent(gcr, tilt, f_x, is_rad=True) - tan_psi_top_0 = sky_angle_0_tangent(gcr, tilt, is_rad=True) + tan_psi_top = sky_angle_tangent(gcr, tilt, f_x) + tan_psi_top_0 = sky_angle_0_tangent(gcr, tilt) # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( - tilt, tan_psi_top, tan_psi_top_0, is_rad=True) + tilt, tan_psi_top, tan_psi_top_0) # total sky diffuse incident on plane of array poa_sky_pv = poa_sky_diffuse_pv( poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) # angles from shadeline to bottom of next row - tan_psi_bottom = ground_angle_tangent(gcr, tilt, f_x, is_rad=True) - tan_psi_bottom_1 = ground_angle_1_tangent(gcr, tilt, is_rad=True) + tan_psi_bottom = ground_angle_tangent(gcr, tilt, f_x) + tan_psi_bottom_1 = ground_angle_1_tangent(gcr, tilt) f_gnd_pv_shade, f_gnd_pv_noshade = f_ground_pv( - tilt, tan_psi_bottom, tan_psi_bottom_1, is_rad=True) + tilt, tan_psi_bottom, tan_psi_bottom_1) poa_gnd_pv = poa_ground_pv( poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) poa_dif_pv = poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) @@ -593,26 +543,27 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, - tilt, ghi, dhi, poa_ground, poa_sky_diffuse, - poa_direct, iam, bifaciality=0.8, + tilt, ghi, dhi, dni, iam_b0, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, - is_rad=False): + method='haydavies'): """Get global bifacial irradiance from infinite sheds model.""" - # convert angles to radians from degrees if necessary - solar_zenith, solar_azimuth, system_azimuth, tilt = _to_radians( - solar_zenith, solar_azimuth, system_azimuth, tilt, is_rad=is_rad) + # backside is rotated and flipped relative to front + backside_tilt, backside_sysaz = _backside(tilt, system_azimuth) + # AOI + aoi_front = pvlib.irradiance.aoi( + tilt, system_azimuth, solar_zenith, solar_azimuth) + aoi_back = pvlib.irradiance.aoi( + backside_tilt, backside_sysaz, solar_zenith, solar_azimuth) # get front side poa_global_front = get_irradiance( solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, - shade_factor, transmission_factor, is_rad=True) - # backside is rotated and flipped relative to front - backside_tilt, backside_sysaz = _backside(tilt, system_azimuth) + shade_factor, transmission_factor) # get backside poa_global_back = get_irradiance( solar_zenith, solar_azimuth, backside_sysaz, gcr, backside_tilt, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, - shade_factor, transmission_factor, is_rad=True) + shade_factor, transmission_factor) # get bifacial poa_glo_bifi = poa_global_bifacial( poa_global_front[0], poa_global_back[0], bifaciality, shade_factor, @@ -628,11 +579,8 @@ def _backside(tilt, system_azimuth): class InfiniteSheds(object): """An infinite sheds model""" - def __init__(self,system_azimuth, gcr, tilt, is_bifacial=True, - bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, - is_rad=False): - # convert angles to radians from degrees if necessary - system_azimuth, tilt = _to_radians(system_azimuth, tilt, is_rad=is_rad) + def __init__(self, system_azimuth, gcr, tilt, is_bifacial=True, + bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): self.system_azimuth = system_azimuth self.gcr = gcr self.tilt = tilt @@ -643,6 +591,7 @@ def __init__(self,system_azimuth, gcr, tilt, is_bifacial=True, # backside angles self.backside_tilt, self.backside_sysaz = _backside( self.tilt, self.system_azimuth) + # sheds parameters self.tan_phi = None self.f_gnd_sky = None @@ -651,28 +600,21 @@ def __init__(self,system_azimuth, gcr, tilt, is_bifacial=True, self.back_side = None self.poa_global_bifacial = None - def _backside(self): - backside_tilt = np.pi - self.tilt - backside_sysaz = (np.pi + self.system_azimuth) % (2*np.pi) - return backside_tilt, backside_sysaz - def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, - poa_sky_diffuse, poa_direct, iam, is_rad=False): - # convert angles to radians from degrees if necessary - solar_zenith, solar_azimuth = _to_radians( - solar_zenith, solar_azimuth, is_rad=is_rad) + poa_sky_diffuse, poa_direct, iam): self.front_side = _PVSurface(*get_irradiance( - solar_zenith, solar_azimuth, self.system_azimuth, self.gcr, - self.tilt, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, - is_rad=True, all_output=True)) + solar_zenith, solar_azimuth, self.system_azimuth, + self.gcr, self.tilt, ghi, dhi, poa_ground, poa_sky_diffuse, + poa_direct, iam, all_output=True)) self.tan_phi = self.front_side.tan_phi self.f_gnd_sky = self.front_side.f_gnd_sky self.df = self.front_side.df if self.is_bifacial and self.bifaciality > 0: self.back_side = _PVSurface(*get_irradiance( - solar_zenith, solar_azimuth, self.backside_sysaz, self.gcr, - self.backside_tilt, ghi, dhi, poa_ground, poa_sky_diffuse, - poa_direct, iam, is_rad=True, all_output=True)) + solar_zenith, solar_azimuth, self.backside_sysaz, + self.gcr, self.backside_tilt, ghi, dhi, poa_ground, + poa_sky_diffuse, poa_direct, iam, + all_output=True)) self.poa_global_bifacial = poa_global_bifacial( self.front_side.poa_global_pv, self.back_side.poa_global_pv, self.bifaciality, self.shade_factor, self.transmission_factor) diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py new file mode 100644 index 0000000000..1bcd410b65 --- /dev/null +++ b/pvlib/test/test_infinite_sheds.py @@ -0,0 +1,78 @@ +""" +test infinite sheds +""" + +import os +import numpy as np +import pandas as pd +import pvlib + +BASEDIR = os.path.dirname(__file__) +PROJDIR = os.path.dirname(BASEDIR) +DATADIR = os.path.join(PROJDIR, 'data') +TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') +TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) + +# location and irradiance +LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates + +# PV module orientation +# tilt: positive = facing toward sun, negative = backward +# system-azimuth: positive counter-clockwise from north +TILT, SYSAZ = 20.0, 250.0 +GCR = 0.5 # ground coverage ratio + +# IAM parameters +B0 = 0.05 +MAXAOI = 85 + +# backside +BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} + + +def test_solar_projection_tangent(): + solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) + solar_azimuth_rad = np.radians(TESTDATA.azimuth) + system_azimuth_rad = np.radians(SYSAZ) + tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + backside_sysaz_rad = np.radians(BACKSIDE['sysaz']) + tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( + solar_zenith_rad, solar_azimuth_rad, backside_sysaz_rad) + assert np.allclose(tan_phi_f, -tan_phi_b) + + +def test_frontside_solar_projection(): + solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) + solar_azimuth_rad = np.radians(TESTDATA.azimuth) + system_azimuth_rad = np.radians(SYSAZ) + phi, tan_phi = pvlib.infinite_sheds.solar_projection( + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + assert np.allclose(tan_phi, TESTDATA.tan_phi_f) + + +def test_frontside_solar_projection_tangent(): + solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) + solar_azimuth_rad = np.radians(TESTDATA.azimuth) + system_azimuth_rad = np.radians(SYSAZ) + tan_phi = pvlib.infinite_sheds.solar_projection_tangent( + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + assert np.allclose(tan_phi, TESTDATA.tan_phi_f) + + +def test_backside_solar_projection(): + solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) + solar_azimuth_rad = np.radians(TESTDATA.azimuth) + system_azimuth_rad = np.radians(BACKSIDE['sysaz']) + phi, tan_phi = pvlib.infinite_sheds.solar_projection( + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + assert np.allclose(tan_phi, TESTDATA.tan_phi_b) + + +def test_backside_solar_projection_tangent(): + solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) + solar_azimuth_rad = np.radians(TESTDATA.azimuth) + system_azimuth_rad = np.radians(BACKSIDE['sysaz']) + tan_phi = pvlib.infinite_sheds.solar_projection_tangent( + solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + assert np.allclose(tan_phi, TESTDATA.tan_phi_b) \ No newline at end of file From 6d5c2cb199f87cf07dd8b2dded73bcce689637e3 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 03:27:22 -0700 Subject: [PATCH 009/115] TST: ground illumination test --- pvlib/data/infinite_sheds.csv | 17522 ++++++++++++++-------------- pvlib/test/test_infinite_sheds.py | 48 +- 2 files changed, 8787 insertions(+), 8783 deletions(-) diff --git a/pvlib/data/infinite_sheds.csv b/pvlib/data/infinite_sheds.csv index 2db211a157..56c978bf52 100644 --- a/pvlib/data/infinite_sheds.csv +++ b/pvlib/data/infinite_sheds.csv @@ -1,8761 +1,8761 @@ -timestamp UTC,apparent_zenith,azimuth,ghi,dni,dhi,poa_global_f,poa_direct_f,poa_diffuse_f,poa_sky_diffuse_f,poa_ground_diffuse_f,poa_global_b,poa_direct_b,poa_diffuse_b,poa_sky_diffuse_b,poa_ground_diffuse_b,solar_zenith,solar_azimuth,tan_phi_f,tan_phi_b,Fsky-gnd,Fsky-gnd,df,POA_gnd-sky_f,POA_gnd-sky_b,Fx_f,Fx_b,psi_top_f,psi_top_b,Fnextrow-sky-front-shade,Fnextrow-sky-front-Noshade,Fnextrow-sky-back-shade,Fnextrow-sky-back-NOshade,POAsky-nextrow-f,POAsky-nextrow-b,psi_bot_f,psi_bot_b,Fnextrow-gnd-front-shade,Fnextrow-gnd-front-Noshade,Fnextrow-gnd-back-shade,Fnextrow-gnd-back-NOshade,POAgnd-nextrow-f,POAgnd-nextrow-b,poa_diffuse_sheds_f,poa_diffuse_sheds_b,poa_beam_sheds_f,poa_beam_sheds_b,cos_aoi_f,AOI_f,cos_aoi_b,AOI_b,iam_f,iam_b,poa_global_sheds_f,poa_global_sheds_b,poa_bifacial_sheds,month,hour,BG -2018-01-01 08:00:00,164.9034207,348.9030137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.87810764,6.089506359,0.041748175,-0.041748175,1,0.523014331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921048053,157.0797842,0.921048053,22.92021583,0,0.995714016,0,0,0,1,0,0% -2018-01-01 09:00:00,161.989496,37.77591193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827250058,0.659314041,0.275043485,-0.275043485,1,0.483118483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983108488,169.4540642,0.983108488,10.54593582,0,0.999140913,0,0,0,1,1,0% -2018-01-01 10:00:00,152.631317,64.82517022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663919024,1.131412658,0.515547605,-0.515547605,1,0.441989857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991100555,172.3503474,0.991100555,7.649652595,0,0.999551032,0,0,0,1,2,0% -2018-01-01 11:00:00,141.3494297,79.63235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467012944,1.389846708,0.788460715,-0.788460715,1,0.395318966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944474914,160.8171758,0.944474914,19.18282416,0,0.997060531,0,0,0,1,3,0% -2018-01-01 12:00:00,129.5681988,89.95619044,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261391675,1.570031706,1.137493917,-1.137493917,1,0.335630773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846401384,147.8223949,0.846401384,32.17760508,0,0.990926373,0,0,0,1,4,0% -2018-01-01 13:00:00,117.7715194,98.59677328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055500778,1.720838326,1.667302389,-1.667302389,1,0.245028189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703553512,134.7128026,0.703553512,45.28719739,0,0.9789322,0,0,0,1,5,0% -2018-01-01 14:00:00,106.2283483,106.7743418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854034437,1.863563821,2.751975557,-2.751975557,1,0.059538152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525654593,121.7123206,0.525654593,58.28767944,0,0.954880504,0,0,0,1,6,0% -2018-01-01 15:00:00,95.17804736,115.2018541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661170302,2.010651659,7.775378981,-7.775378981,1,0,#DIV/0!,0,0,0.444294536,1,0.127908939,0,0.94801306,0.986775023,0.724496596,1,0,0,0.062774769,0.312029739,0.837455753,0.561952349,0.961238037,0.922476074,0,0,0,0,0,0,-0.32481597,108.954426,0.32481597,71.04557404,0,0.896066682,0,0,0,1,7,0% -2018-01-01 16:00:00,84.74625363,124.4289979,33.60029708,180.2608368,17.0944016,16.83223555,0,16.83223555,16.57894232,0.253293232,28.8652617,20.20302138,8.662240318,0.51545928,8.146781038,1.479101155,2.171695698,-6.326179519,6.326179519,0.388005898,0.388005898,0.508757454,0.177143778,5.69755282,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93630997,0.373448494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128340064,5.476704488,16.06465003,5.850152981,0,20.20302138,-0.112076598,96.43503624,0.112076598,83.56496376,0,0.603876538,16.06465003,18.05028359,27.87819964,1,8,74% -2018-01-01 17:00:00,75.72216628,134.9503073,181.926759,537.8365704,49.28329531,98.3329472,49.16428432,49.16866288,47.79722212,1.371440756,45.59632219,0,45.59632219,1.48607319,44.110249,1.321601118,2.355327188,-1.66376966,1.66376966,0.814675058,0.814675058,0.270896352,1.186130185,38.15002403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.94450796,1.076654967,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859347281,36.67125421,46.80385524,37.74790917,49.16428432,0,0.091411196,84.75520262,-0.091411196,95.24479738,0.503021052,0,71.53452526,37.74790917,96.23977686,1,9,35% -2018-01-01 18:00:00,68.28948118,147.1721957,318.5970414,685.4430997,65.03976102,255.3886295,189.9083382,65.48029133,63.07857226,2.401719074,79.20873004,0,79.20873004,1.961188766,77.24754127,1.191876291,2.568639382,-0.557617858,0.557617858,0.625511959,0.625511959,0.204144272,1.685914438,54.22480363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63352296,1.420874585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221439272,52.12294379,61.85496224,53.54381838,189.9083382,0,0.277059231,73.91523144,-0.277059231,106.0847686,0.869533174,0,226.9865623,53.54381838,262.0299206,1,10,15% -2018-01-01 19:00:00,63.12703546,161.2212777,412.2249719,749.6649375,73.36603173,397.5592473,323.2979461,74.26130115,71.15377518,3.107525963,102.1609736,0,102.1609736,2.212256549,99.94871701,1.101774616,2.813842119,0.042060779,-0.042060779,0.522960873,0.522960873,0.177975709,1.888947723,60.75505198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39571517,1.602772339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368536195,58.40006689,69.76425137,60.00283923,323.2979461,0,0.431256592,64.4526669,-0.431256592,115.5473331,0.934059743,0,371.7438479,60.00283923,411.0145062,1,11,11% -2018-01-01 20:00:00,60.8451321,176.6473821,452.6684664,771.9194992,76.6109743,497.1436819,419.4304051,77.71327687,74.30087076,3.412406107,112.064814,0,112.064814,2.31010354,109.7547105,1.061947889,3.083078433,0.513546466,-0.513546466,0.442332072,0.442332072,0.169243011,1.831484327,58.90683163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42082315,1.673662151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32690416,56.6234872,72.74772731,58.29714935,419.4304051,0,0.543360293,57.08731715,-0.543360293,122.9126828,0.957980026,0,474.5536777,58.29714935,512.707996,1,12,8% -2018-01-01 21:00:00,61.77319689,192.3533458,436.3035114,763.2413046,75.31862258,538.6339794,462.2974511,76.33652838,73.04748822,3.289040164,108.0579721,0,108.0579721,2.271134367,105.7868377,1.078145675,3.357199212,0.996910125,-0.996910125,0.359672018,0.359672018,0.172628963,1.546543434,49.74215304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.21602417,1.645429118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.120465453,47.81404953,71.33648962,49.45947865,462.2974511,0,0.605702873,52.72056293,-0.605702873,127.2794371,0.967451275,0,518.586748,49.45947865,550.9569876,1,13,6% -2018-01-01 22:00:00,65.77211302,207.0874781,364.5618841,719.5252163,69.29252857,511.7750416,441.823717,69.95132465,67.20310317,2.748221474,90.48167496,0,90.48167496,2.089425399,88.39224956,1.147939928,3.614358332,1.627531715,-1.627531715,0.251829374,0.251829374,0.190070689,1.082894571,34.82961184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59817896,1.513781589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.784553431,33.47954771,65.38273239,34.9933293,441.823717,0,0.614048969,52.11715089,-0.614048969,127.8828491,0.968573269,0,493.3213744,34.9933293,516.2238085,1,14,5% -2018-01-01 23:00:00,72.31836992,220.1019037,244.3836152,616.186029,57.23090706,407.2827856,349.9353346,57.34745098,55.50518406,1.842266919,60.97935989,0,60.97935989,1.725723008,59.25363688,1.262193665,3.84150291,2.719408319,-2.719408319,0.065107478,0.065107478,0.234184714,0.523286737,16.83070024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.35369416,1.250280444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379119459,16.17830926,53.73281362,17.4285897,349.9353346,0,0.567905337,55.39571266,-0.567905337,124.6042873,0.961957158,0,390.3556135,17.4285897,401.7622769,1,15,3% -2018-01-01 00:00:00,80.75202477,231.3117387,93.44204989,370.5499601,33.89182317,208.0262619,174.4519966,33.5742653,32.86985966,0.704405642,23.67807035,0,23.67807035,1.021963516,22.65610683,1.40938871,4.037151438,5.817788295,-5.817788295,0,0,0.362704192,0.255490879,8.217464915,0.317288103,1,0.170223218,0,0.94280202,0.981563983,0.724496596,1,31.8596135,0.740409089,0.047185005,0.312029739,0.874921185,0.599417781,0.961238037,0.922476074,0.175479243,7.898939842,32.03509274,8.639348931,119.1004534,0,0.470792107,61.91427378,-0.470792107,118.0857262,0.943796011,0,144.4416255,8.639348931,150.0959066,1,16,4% -2018-01-01 01:00:00,90.09314715,241.0375941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572422051,4.206899639,-607.5998407,607.5998407,1,0,#DIV/0!,0,0,1,0.990332172,0,0.001645819,0.961238037,1,0.719840199,0.995343603,0,0,0.115824807,0.306738104,0.724496596,0.448993192,0.96207268,0.923310717,0,0,0,0,0,0,0.336316214,70.34740387,-0.336316214,109.6525961,0.901330391,0,0,0,0,1,17,0% -2018-01-01 02:00:00,101.4413707,249.7496077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770485917,4.35895296,-4.940984311,4.940984311,1,0.624888229,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148818167,81.44155619,-0.148818167,98.55844381,0.714019514,0,0,0,0,1,18,0% -2018-01-01 03:00:00,112.8041787,257.9702063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968804328,4.502429472,-2.355445598,2.355445598,1,0.93295861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.051968182,92.97889936,0.051968182,87.02110064,0,0,0,0,0,1,19,0% -2018-01-01 04:00:00,124.519822,266.3210234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173280878,4.648178725,-1.395341032,1.395341032,1,0.768771059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.262070866,105.1929755,0.262070866,74.80702446,0,0.85921191,0,0,0,1,20,0% -2018-01-01 05:00:00,136.3433689,275.7410052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3796407,4.812588423,-0.859487583,0.859487583,1,0.677134723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467179527,117.8513687,0.467179527,62.1486313,0,0.942974762,0,0,0,1,21,0% -2018-01-01 06:00:00,147.918875,288.1381007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581671394,5.028958557,-0.493024919,0.493024919,1,0.614465916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653323694,130.7926655,0.653323694,49.20733454,0,0.973468259,0,0,0,1,22,0% -2018-01-01 07:00:00,158.3845602,308.5232861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764332059,5.384747161,-0.206897381,0.206897381,1,0.565535226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807824035,143.8838753,0.807824035,36.11612471,0,0.988105333,0,0,0,1,23,0% -2018-01-02 08:00:00,164.7999617,348.5531096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876301938,6.083399381,0.040408095,-0.040408095,1,0.523243498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920155609,156.9488414,0.920155609,23.05115855,0,0.995661365,0,0,0,1,0,0% -2018-01-02 09:00:00,161.9714827,37.33285705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826935667,0.651581275,0.273987347,-0.273987347,1,0.483299094,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982664464,169.3159561,0.982664464,10.68404388,0,0.999117932,0,0,0,1,1,0% -2018-01-02 10:00:00,152.6593763,64.53023968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664408751,1.12626515,0.514682463,-0.514682463,1,0.442137805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991088848,172.3453105,0.991088848,7.654689473,0,0.999550436,0,0,0,1,2,0% -2018-01-02 11:00:00,141.392809,79.42156246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467770056,1.386167762,0.787723822,-0.787723822,1,0.395444982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944849564,160.8826119,0.944849564,19.11738814,0,0.997081523,0,0,0,1,3,0% -2018-01-02 12:00:00,129.6149205,89.78669813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262207123,1.567073507,1.136821617,-1.136821617,1,0.335745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847089735,147.8965298,0.847089735,32.10347024,0,0.990974376,0,0,0,1,4,0% -2018-01-02 13:00:00,117.81565,98.44791913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056271003,1.718240331,1.666543386,-1.666543386,1,0.245157986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704461203,134.7860318,0.704461203,45.21396816,0,0.97902377,0,0,0,1,5,0% -2018-01-02 14:00:00,106.2658112,106.6348717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854688288,1.861129609,2.750271181,-2.750271181,1,0.059829618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526672046,121.7808729,0.526672046,58.21912707,0,0.955064261,0,0,0,1,6,0% -2018-01-02 15:00:00,95.20514452,115.064749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661643237,2.008258722,7.753297076,-7.753297076,1,0,#DIV/0!,0,0,0.443125952,1,0.128269255,0,0.947970405,0.986732368,0.724496596,1,0,0,0.062638469,0.312029739,0.837774948,0.562271544,0.961238037,0.922476074,0,0,0,0,0,0,-0.325825919,109.0156205,0.325825919,70.98437946,0,0.896543823,0,0,0,1,7,0% -2018-01-02 16:00:00,84.75870568,124.2896642,33.31948709,178.0651046,17.05318418,16.79014413,0,16.79014413,16.53896776,0.251176368,28.70661784,20.11370601,8.592911827,0.514216423,8.078695404,1.479318484,2.169263867,-6.362837498,6.362837498,0.381737014,0.381737014,0.511808124,0.175363562,5.640294958,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.8978849,0.372548048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.127050304,5.421666053,16.02493521,5.794214101,0,20.11370601,-0.112957034,96.48580386,0.112957034,83.51419614,0,0.607353815,16.02493521,18.01035019,27.8123492,1,8,74% -2018-01-02 17:00:00,75.716093,134.8065037,181.7651625,536.1289453,49.48776739,98.02391348,48.65816229,49.36575119,47.99552861,1.370222573,45.56330682,0,45.56330682,1.492238777,44.07106805,1.32149512,2.352817343,-1.671957684,1.671957684,0.816075293,0.816075293,0.272262114,1.186819682,38.17220065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.1351277,1.081121914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85984682,36.69257121,46.99497452,37.77369313,48.65816229,0,0.09075832,84.79276583,-0.09075832,95.20723417,0.49908632,0,71.27959767,37.77369313,96.00172435,1,9,35% -2018-01-02 18:00:00,68.25984601,147.0252969,318.8201375,684.2786325,65.36482332,255.1585645,189.3613309,65.7972336,63.39383273,2.403400866,79.27262409,0,79.27262409,1.970990594,77.3016335,1.19135906,2.566075514,-0.563047023,0.563047023,0.626440401,0.626440401,0.205021,1.689658017,54.34520999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.93656332,1.427975976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.224151482,52.23868296,62.1607148,53.66665894,189.3613309,0,0.276731322,73.93478372,-0.276731322,106.0652163,0.869319333,0,226.7761806,53.66665894,261.8999355,1,10,15% -2018-01-02 19:00:00,63.07009543,161.0781124,412.9019959,748.8230515,73.75995617,397.6340556,322.9856046,74.648451,71.53582135,3.112629656,102.3370041,0,102.3370041,2.224134824,100.1128693,1.100780825,2.811343415,0.037039453,-0.037039453,0.52381957,0.52381957,0.178637926,1.895228697,60.9570697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.76295248,1.611378109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.373086739,58.59425401,70.13603922,60.20563212,322.9856046,0,0.431324335,64.44836485,-0.431324335,115.5516352,0.934077953,0,371.8297715,60.20563212,411.2331536,1,11,11% -2018-01-02 20:00:00,60.76033469,176.5198616,453.8106807,771.3161758,77.05060605,497.6416729,419.4934103,78.14826259,74.72724599,3.421016602,112.3550136,0,112.3550136,2.323360059,110.0316536,1.060467895,3.08085278,0.50795425,-0.50795425,0.443288397,0.443288397,0.169785792,1.839857341,59.17613655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83067123,1.683266454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.33297038,56.88235333,73.16364161,58.56561978,419.4934103,0,0.543866994,57.05272805,-0.543866994,122.947272,0.958065758,0,475.0659136,58.56561978,513.3959405,1,12,8% -2018-01-02 21:00:00,61.66455981,192.2529528,437.8807517,762.8858595,75.79014913,539.6193237,462.8135971,76.80572657,73.5047965,3.300930068,108.4546105,0,108.4546105,2.285352632,106.1692579,1.076249601,3.355447022,0.989643683,-0.989643683,0.360914653,0.360914653,0.173083993,1.556487874,50.06200041,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65560629,1.655730202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.127670166,48.12149899,71.78327645,49.7772292,462.8135971,0,0.606661654,52.65149175,-0.606661654,127.3485083,0.967581737,0,519.5932604,49.7772292,552.1714614,1,13,6% -2018-01-02 22:00:00,65.64680223,207.0186025,366.5047533,719.5592694,69.78700703,513.2922835,442.8467446,70.44553892,67.68267128,2.762867643,90.96765644,0,90.96765644,2.104335748,88.86332069,1.145752842,3.613156226,1.616256386,-1.616256386,0.253757569,0.253757569,0.190412284,1.093684733,35.17666053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05915807,1.524584086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792370866,33.81314411,65.85152893,35.3377282,442.8467446,0,0.615441651,52.01598157,-0.615441651,127.9840184,0.96875753,0,494.8626473,35.3377282,517.9904836,1,14,5% -2018-01-02 23:00:00,72.18364054,220.0614603,246.5689245,617.1195706,57.75060794,409.4302592,351.5623044,57.86795474,56.00921403,1.858740704,61.52488434,0,61.52488434,1.741393906,59.78349043,1.259842193,3.840797039,2.696376922,-2.696376922,0.069046079,0.069046079,0.234216895,0.533628129,17.16331495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.83818694,1.261633957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386611763,16.49803117,54.2247987,17.75966513,351.5623044,0,0.569682637,55.27190195,-0.569682637,124.728098,0.962231834,0,392.5092398,17.75966513,404.1325855,1,15,3% -2018-01-02 00:00:00,80.61380137,231.293595,95.53561455,374.2670527,34.49703247,211.1560583,176.9790509,34.17700747,33.45681966,0.720187817,24.20392863,0,24.20392863,1.040212809,23.16371582,1.406976257,4.036834772,5.72998241,-5.72998241,0,0,0.36109081,0.260053202,8.364204914,0.310216867,1,0.172780479,0,0.942474156,0.981236119,0.724496596,1,32.42673449,0.753630639,0.046268514,0.312029739,0.877183667,0.601680263,0.961238037,0.922476074,0.178694535,8.039991911,32.60542903,8.793622551,122.0771642,0,0.472868369,61.77934974,-0.472868369,118.2206503,0.944262329,0,147.8782964,8.793622551,153.6335465,1,16,4% -2018-01-02 01:00:00,89.97613348,241.0361034,0.005689293,1.032316604,0.005259282,0.354308523,0.349164939,0.005143583,0.005100695,4.28883E-05,0.001538022,0,0.001538022,0.000158587,0.001379435,1.570379777,4.206873621,2371.35595,-2371.35595,0,0,0.924417538,3.96467E-05,0.001275174,0.997536919,1,0.0004217,0,0.961200837,0.9999628,0.724496596,1,0.004903279,0.000114896,0.11563229,0.312029739,0.724865662,0.449362258,0.961238037,0.922476074,2.87116E-05,0.001225746,0.004931991,0.001340641,0.000860021,0,0.338234354,70.23066218,-0.338234354,109.7693378,0.902173502,0,0.00570788,0.001340641,0.006585302,1,17,15% -2018-01-02 02:00:00,101.3007827,249.760765,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768032193,4.359147692,-5.004111721,5.004111721,1,0.614092806,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151244393,81.30095218,-0.151244393,98.69904782,0.719409232,0,0,0,0,1,18,0% -2018-01-02 03:00:00,112.6643712,257.9914856,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966364227,4.502800866,-2.371502606,2.371502606,1,0.93570452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04955025,92.84018321,0.04955025,87.15981679,0,0,0,0,0,1,19,0% -2018-01-02 04:00:00,124.3805974,266.3505953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17085095,4.648694852,-1.402416301,1.402416301,1,0.769981002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.259777731,105.0568739,0.259777731,74.94312608,0,0.857527767,0,0,0,1,20,0% -2018-01-02 05:00:00,136.2039063,275.7757088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.37720662,4.813194116,-0.863433685,0.863433685,1,0.677809546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465118918,117.7179185,0.465118918,62.28208152,0,0.94250061,0,0,0,1,21,0% -2018-01-02 06:00:00,147.7779449,288.1654077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5792117,5.029435155,-0.495538296,0.495538296,1,0.614895729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651587169,130.6613748,0.651587169,49.33862521,0,0.973264296,0,0,0,1,22,0% -2018-01-02 07:00:00,158.2436012,308.4804519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.761871862,5.383999564,-0.208639517,0.208639517,1,0.565833148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806480699,143.7534976,0.806480699,36.24650244,0,0.988002236,0,0,0,1,23,0% -2018-01-03 08:00:00,164.6887868,348.217291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.874361571,6.07753824,0.039130641,-0.039130641,1,0.523461956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919247375,156.8163002,0.919247375,23.18369985,0,0.995607677,0,0,0,1,0,0% -2018-01-03 09:00:00,161.9454058,36.88155813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826480539,0.643704623,0.273016763,-0.273016763,1,0.483465073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982203186,169.1743255,0.982203186,10.82567453,0,0.999094036,0,0,0,1,1,0% -2018-01-03 10:00:00,152.6811078,64.22381544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664788037,1.120917038,0.513933382,-0.513933382,1,0.442265905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991055509,172.330983,0.991055509,7.669016976,0,0.999548739,0,0,0,1,2,0% -2018-01-03 11:00:00,141.4307357,79.2012994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468432001,1.382323446,0.787151012,-0.787151012,1,0.395542939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945195592,160.9432406,0.945195592,19.05675937,0,0.997100896,0,0,0,1,3,0% -2018-01-03 12:00:00,129.6564834,89.60944613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262932531,1.563979876,1.136402133,-1.136402133,1,0.335817479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847740343,147.9667406,0.847740343,32.03325937,0,0.991019676,0,0,0,1,4,0% -2018-01-03 13:00:00,117.8546078,98.29248608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056950945,1.715527512,1.666240531,-1.666240531,1,0.245209777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705320532,134.8554452,0.705320532,45.1445548,0,0.979110245,0,0,0,1,5,0% -2018-01-03 14:00:00,106.2979008,106.4896593,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855248357,1.858595175,2.749717125,-2.749717125,1,0.059924367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.527629752,121.8454461,0.527629752,58.15455386,0,0.95523658,0,0,0,1,6,0% -2018-01-03 15:00:00,95.22653801,114.9225606,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662016623,2.005777068,7.740566681,-7.740566681,1,0,#DIV/0!,0,0,0.442450018,1,0.128477899,0,0.947945691,0.986707654,0.724496596,1,0,0,0.062559572,0.312029739,0.83795978,0.562456376,0.961238037,0.922476074,0,0,0,0,0,0,-0.326764748,109.0725261,0.326764748,70.92747393,0,0.896984718,0,0,0,1,7,0% -2018-01-03 16:00:00,84.76517326,124.1458739,33.11498782,176.1985456,17.03900199,16.77484798,0,16.77484798,16.52521322,0.249634766,28.58691977,20.0440188,8.542900967,0.513788777,8.02911219,1.479431364,2.166754252,-6.392963985,6.392963985,0.376585081,0.376585081,0.514540488,0.174084626,5.59915998,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.88466351,0.37223822,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126123719,5.382125547,16.01078723,5.754363767,0,20.0440188,-0.11375814,96.53200165,0.11375814,83.46799835,0,0.610471013,16.01078723,17.99065623,27.78531192,1,8,74% -2018-01-03 17:00:00,75.70344125,134.6589925,181.7234434,534.6023316,49.70830944,97.79815425,48.21882567,49.57932858,48.2094205,1.369908077,45.5598417,0,45.5598417,1.498888934,44.06095277,1.321274305,2.350242786,-1.679551262,1.679551262,0.817373871,0.817373871,0.273538232,1.188161139,38.2153465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.34072872,1.08593993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.8608187,36.73404465,47.20154742,37.81998458,48.21882567,0,0.090195689,84.82513497,-0.090195689,95.17486503,0.495649781,0,71.10119779,37.81998458,95.8536213,1,9,35% -2018-01-03 18:00:00,68.22315532,146.8757403,319.1725962,683.2232005,65.70186511,255.0385271,188.9117578,66.12676931,63.72071146,2.406057849,79.36824485,0,79.36824485,1.981153647,77.3870912,1.190718686,2.56346526,-0.568365748,0.568365748,0.627349957,0.627349957,0.205850583,1.694009536,54.48516979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.25077159,1.435339073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227304142,52.37321765,62.47807573,53.80855672,188.9117578,0,0.276500795,73.9485283,-0.276500795,106.0514717,0.869168693,0,226.6742614,53.80855672,261.8908856,1,10,16% -2018-01-03 19:00:00,63.00577216,160.9337883,413.7103397,748.0621341,74.1643875,397.8309514,322.7841705,75.04678087,71.92805758,3.118723293,102.5451916,0,102.5451916,2.236329921,100.3088616,1.099658172,2.808824484,0.031992552,-0.031992552,0.524682641,0.524682641,0.179266459,1.902081582,61.17748204,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.13998486,1.620213415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378051631,58.80612274,70.51803649,60.42633615,322.7841705,0,0.431493797,64.43760235,-0.431493797,115.5623977,0.934123479,0,372.0383088,60.42633615,411.5861373,1,11,11% -2018-01-03 20:00:00,60.6681226,176.3930915,455.0817144,770.7829737,77.50013574,498.2672565,419.6734377,78.59381889,75.1632207,3.430598191,112.6767455,0,112.6767455,2.336915038,110.3398304,1.05885849,3.078640225,0.502265452,-0.502265452,0.444261239,0.444261239,0.170299384,1.848760369,59.46248854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.24974671,1.69308699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339420594,57.15760575,73.5891673,58.85069274,419.6734377,0,0.544476788,57.0110836,-0.544476788,122.9889164,0.958168721,0,475.7071282,58.85069274,514.2237295,1,12,8% -2018-01-03 21:00:00,61.54886564,192.1552841,439.580686,762.5993652,76.27142918,540.7336174,463.4483084,77.28530907,73.97156418,3.313744891,108.8812916,0,108.8812916,2.299865001,106.5814266,1.074230356,3.353742383,0.982216162,-0.982216162,0.362184833,0.362184833,0.173509509,1.566910336,50.39722263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.10428114,1.666244365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.135221205,48.44372734,72.23950234,50.1099717,463.4483084,0,0.607721865,52.57503938,-0.607721865,127.4249606,0.967725521,0,520.7302579,50.1099717,553.5262321,1,13,6% -2018-01-03 22:00:00,65.51511894,206.9540478,368.5609988,719.6697298,70.29163963,514.9371562,443.9867004,70.95045583,68.17208734,2.77836849,91.48143349,0,91.48143349,2.119552283,89.3618812,1.143454535,3.612029535,1.604730504,-1.604730504,0.255728611,0.255728611,0.190719148,1.104888845,35.5370233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5296034,1.535608414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800488207,34.15953851,66.33009161,35.69514692,443.9867004,0,0.616931187,51.90762185,-0.616931187,128.0923782,0.968953684,0,496.5326405,35.69514692,519.8944003,1,14,5% -2018-01-03 23:00:00,72.04337504,220.0263865,248.8552109,618.1482791,58.28199999,411.7029638,353.3024055,58.40055835,56.52458265,1.875975697,62.09524438,0,62.09524438,1.757417337,60.33782704,1.257394099,3.840184886,2.672944069,-2.672944069,0.073053333,0.073053333,0.23420044,0.544304313,17.50669774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.33357886,1.273242878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394346622,16.82810376,54.72792548,18.10134664,353.3024055,0,0.571549606,55.14164465,-0.571549606,124.8583553,0.96251853,0,394.7880373,18.10134664,406.6350066,1,15,3% -2018-01-03 00:00:00,80.47086276,231.2814521,97.71462829,378.1119137,35.11852199,214.4088205,179.6126374,34.79618312,34.05956898,0.736614143,24.75099594,0,24.75099594,1.058953012,23.69204293,1.404481507,4.036622838,5.642057499,-5.642057499,0,0,0.359398819,0.264738253,8.514892245,0.302987727,1,0.175418572,0,0.942134397,0.98089636,0.724496596,1,33.00889805,0.767207852,0.045325966,0.312029739,0.879517409,0.604014005,0.961238037,0.922476074,0.182004413,8.184838306,33.19090247,8.952046158,125.1922126,0,0.475025068,61.63901781,-0.475025068,118.3609822,0.944742397,0,151.4652935,8.952046158,157.3242287,1,16,4% -2018-01-03 01:00:00,89.85522564,241.0410517,0.04180317,1.380137223,0.038315858,0.507027124,0.4695515,0.037475623,0.037160493,0.00031513,0.011291027,0,0.011291027,0.001155364,0.010135663,1.568269538,4.206959985,390.9301487,-390.9301487,0,0,0.916577807,0.000288841,0.009290123,0.9851462,1,0.002557996,0,0.961011723,0.999773686,0.724496596,1,0.035733065,0.000837058,0.114659066,0.312029739,0.726735965,0.45123256,0.961238037,0.922476074,0.000208729,0.00893002,0.035941794,0.009767078,0.006974624,0,0.34022088,70.10966816,-0.34022088,109.8903318,0.903036651,0,0.042240136,0.009767078,0.048632493,1,17,15% -2018-01-03 02:00:00,101.1567586,249.7788025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765518498,4.359462506,-5.070412186,5.070412186,1,0.602754759,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153729113,81.15690359,-0.153729113,98.84309641,0.724752563,0,0,0,0,1,18,0% -2018-01-03 03:00:00,112.5215388,258.0202501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963871332,4.503302901,-2.388060151,2.388060151,1,0.938536027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047085179,92.69877985,0.047085179,87.30122015,0,0,0,0,0,1,19,0% -2018-01-03 04:00:00,124.2385698,266.3885933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168372101,4.649358043,-1.409628218,1.409628218,1,0.771214312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.257447966,104.9186872,0.257447966,75.0813128,0,0.855785997,0,0,0,1,20,0% -2018-01-03 05:00:00,136.0616047,275.8203721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374722988,4.813973638,-0.867409729,0.867409729,1,0.67848949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463030618,117.5828413,0.463030618,62.41715869,0,0.94201578,0,0,0,1,21,0% -2018-01-03 06:00:00,147.6337028,288.2052425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576694201,5.030130404,-0.498035894,0.498035894,1,0.615322843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649829709,130.5287639,0.649829709,49.47123609,0,0.973056765,0,0,0,1,22,0% -2018-01-03 07:00:00,158.0979508,308.4541204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759329782,5.383539993,-0.210339209,0.210339209,1,0.566123813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805120536,143.6218977,0.805120536,36.37810226,0,0.987897498,0,0,0,1,23,0% -2018-01-04 08:00:00,164.5700037,347.8960104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.872288415,6.071930836,0.037916926,-0.037916926,1,0.523669513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918323494,156.6822059,0.918323494,23.3177941,0,0.995552956,0,0,0,1,0,0% -2018-01-04 09:00:00,161.9111996,36.42290178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82588353,0.635699559,0.272132661,-0.272132661,1,0.483616264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981724429,169.0292391,0.981724429,10.97076094,0,0.999069211,0,0,0,1,1,0% -2018-01-04 10:00:00,152.6964019,63.90624456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665054969,1.11537438,0.513301138,-0.513301138,1,0.442374025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990999977,172.3071778,0.990999977,7.692822192,0,0.999545912,0,0,0,1,2,0% -2018-01-04 11:00:00,141.4631114,78.97174068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468997064,1.378316891,0.786742918,-0.786742918,1,0.395612727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945512157,160.9988704,0.945512157,19.00112964,0,0.997118607,0,0,0,1,3,0% -2018-01-04 12:00:00,129.6928042,89.42455949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263566449,1.560752995,1.136235909,-1.136235909,1,0.335845905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848352162,148.0328913,0.848352162,31.96710873,0,0.991062212,0,0,0,1,4,0% -2018-01-04 13:00:00,117.8883239,98.13057701,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057539402,1.712701666,1.666393834,-1.666393834,1,0.245183561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706130334,134.9209345,0.706130334,45.0790655,0,0.979191542,0,0,0,1,5,0% -2018-01-04 14:00:00,106.3245622,106.338797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855713686,1.85596213,2.750310972,-2.750310972,1,0.059822813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.528526516,121.9059514,0.528526516,58.0940486,0,0.955397367,0,0,0,1,6,0% -2018-01-04 15:00:00,95.24218731,114.7753758,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662289755,2.003208208,7.73707592,-7.73707592,1,0,#DIV/0!,0,0,0.442264385,1,0.128535229,0,0.947938899,0.986700862,0.724496596,1,0,0,0.062537897,0.312029739,0.838010566,0.562507162,0.961238037,0.922476074,0,0,0,0,0,0,-0.327631337,109.1250702,0.327631337,70.87492978,0,0.897389446,0,0,0,1,7,0% -2018-01-04 16:00:00,84.76563236,123.9977095,32.98641981,174.658629,17.05232643,16.78680144,0,16.78680144,16.53813588,0.248665566,28.50687218,19.99474224,8.512129945,0.514190558,7.997939386,1.479439377,2.164168295,-6.41638496,6.41638496,0.372579859,0.372579859,0.5169499,0.17330116,5.573961013,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89708526,0.372529309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.1255561,5.357903342,16.02264136,5.730432651,0,19.99474224,-0.114478983,96.57357452,0.114478983,83.42642548,0,0.613238608,16.02264136,17.99198055,27.7980328,1,8,73% -2018-01-04 17:00:00,75.68420123,134.5078522,181.8016326,533.2570039,49.94519945,97.65562477,47.84595986,49.80966491,48.43916741,1.3704975,45.58594269,0,45.58594269,1.506032042,44.07991065,1.320938503,2.34760489,-1.686533902,1.686533902,0.818567973,0.818567973,0.274723603,1.190155972,38.27950719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.56157019,1.091115087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86226395,36.79571835,47.42383414,37.88683343,47.84595986,0,0.089724016,84.85226987,-0.089724016,95.14773013,0.492735598,0,70.9992418,37.88683343,95.79541655,1,9,35% -2018-01-04 18:00:00,68.17941492,146.7235996,319.6541678,682.2765992,66.05100367,255.0284635,188.5594531,66.46901035,64.05932221,2.409688139,79.49553527,0,79.49553527,1.991681463,77.50385381,1.189955272,2.560809903,-0.573565431,0.573565431,0.628239155,0.628239155,0.2066327,1.698967737,54.64464257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57625712,1.44296644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230896342,52.52650895,62.80715347,53.96947539,188.5594531,0,0.27636805,73.95644241,-0.27636805,106.0435576,0.869081837,0,226.6807493,53.96947539,262.0026915,1,10,16% -2018-01-04 19:00:00,62.93408622,160.7883747,414.6493912,747.3816437,74.57936508,398.1495797,322.6932554,75.45632432,72.33052206,3.125802259,102.7853886,0,102.7853886,2.248843026,100.5365455,1.098407016,2.806286537,0.026927519,-0.026927519,0.525548813,0.525548813,0.179861268,1.909503227,61.41618764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52684903,1.629279117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383428588,59.03557564,70.91027761,60.66485476,322.6932554,0,0.431765027,64.42037458,-0.431765027,115.5796254,0.934196271,0,372.3691135,60.66485476,412.0730477,1,11,11% -2018-01-04 20:00:00,60.56853062,176.2671409,456.4805993,770.3190243,77.95955105,499.0196543,419.9697278,79.04992652,75.60878294,3.441143575,113.0297743,0,113.0297743,2.350768104,110.6790062,1.057120282,3.076441971,0.496488389,-0.496488389,0.445249175,0.445249175,0.170783931,1.858188973,59.76574487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.67803809,1.703123489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346251586,57.44910727,74.02428967,59.15223076,419.9697278,0,0.54518935,56.96239594,-0.54518935,123.0376041,0.958288744,0,476.4765526,59.15223076,515.1905046,1,12,8% -2018-01-04 21:00:00,61.42616384,192.0604105,441.4020402,762.3804869,76.76240507,541.9755894,464.2003791,77.77521036,74.44773533,3.327475028,109.3377048,0,109.3377048,2.314669736,107.023035,1.072088806,3.352086526,0.97463883,-0.97463883,0.363480633,0.363480633,0.173905868,1.57780576,50.7476569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56199496,1.676970344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143114902,48.78057809,72.70510986,50.45754844,464.2003791,0,0.608882818,52.49123282,-0.608882818,127.5087672,0.967882393,0,521.9964836,50.45754844,555.0199399,1,13,6% -2018-01-04 22:00:00,65.37712713,206.8938814,370.7291354,719.8543974,70.80631247,516.7078158,445.2418621,71.46595372,68.6712409,2.794712819,92.02264259,0,92.02264259,2.135071569,89.88757102,1.141046124,3.610979432,1.59297291,-1.59297291,0.257739278,0.257739278,0.190992036,1.116502205,35.91054888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.0094088,1.546852083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.808902047,34.5185855,66.81831084,36.06543759,445.2418621,0,0.618516555,51.79211379,-0.618516555,128.2078862,0.96916142,0,498.3295462,36.06543759,521.9336537,1,14,5% -2018-01-04 23:00:00,71.89764921,219.9967383,251.2409695,619.2679711,58.82485673,414.0982777,355.1532469,58.94503081,57.05107026,1.893960553,62.69006829,0,62.69006829,1.773786471,60.91628182,1.254850703,3.839667426,2.649152889,-2.649152889,0.077121864,0.077121864,0.234137198,0.555312956,17.86077355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.83965877,1.28510226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.402322347,17.16845491,55.24198112,18.45355717,355.1532469,0,0.57350495,55.00499997,-0.57350495,124.995,0.962816794,0,397.1894918,18.45355717,409.2669759,1,15,3% -2018-01-04 00:00:00,80.32329068,231.2753494,99.97827746,382.0754033,35.75572798,217.7808275,182.3495882,35.43123935,34.67756086,0.753678486,25.319058,0,25.319058,1.078167123,24.24089088,1.401905888,4.036516326,5.554194386,-5.554194386,0,0,0.357634967,0.269541781,8.669390215,0.295610699,1,0.178135666,0,0.94178284,0.980544803,0.724496596,1,33.60555095,0.781128411,0.044358257,0.312029739,0.881920763,0.606417359,0.961238037,0.922476074,0.18540677,8.333347631,33.79095772,9.114476042,128.4450989,0,0.477260736,61.49335133,-0.477260736,118.5066487,0.945235463,0,155.2018203,9.114476042,161.1670626,1,16,4% -2018-01-04 01:00:00,89.73022431,241.0524608,0.093913342,1.833349125,0.085281097,0.710934259,0.627516744,0.083417516,0.082709557,0.000707958,0.025341917,0,0.025341917,0.00257154,0.022770377,1.566087853,4.207159111,209.7970269,-209.7970269,0,0,0.908082869,0.000642885,0.020677389,0.972487603,1,0.004766476,0,0.960815058,0.999577021,0.724496596,1,0.079556792,0.001863072,0.113656543,0.312029739,0.728670561,0.453167157,0.961238037,0.922476074,0.000463578,0.019875893,0.080020371,0.021738965,0.01726449,0,0.342278912,69.98422134,-0.342278912,110.0157787,0.903920302,0,0.095626094,0.021738965,0.109853811,1,17,15% -2018-01-04 02:00:00,101.0093871,249.803724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76294638,4.359897468,-5.140027668,5.140027668,1,0.590849811,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.156270675,81.00950136,-0.156270675,98.99049864,0.730042336,0,0,0,0,1,18,0% -2018-01-04 03:00:00,112.3757682,258.0564845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961327155,4.50393531,-2.405123004,2.405123004,1,0.941453947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.044574544,92.55477976,0.044574544,87.44522024,0,0,0,0,0,1,19,0% -2018-01-04 04:00:00,124.0938225,266.4349787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165845784,4.650167621,-1.416975028,1.416975028,1,0.772470691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255082977,104.778502,0.255082977,75.22149799,0,0.853985352,0,0,0,1,20,0% -2018-01-04 05:00:00,135.9165434,275.8749209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372191191,4.814925693,-0.871413711,0.871413711,1,0.679174211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.460915784,117.4462172,0.460915784,62.55378282,0,0.941520313,0,0,0,1,21,0% -2018-01-04 06:00:00,147.4862275,288.2574694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574120271,5.031041934,-0.50051604,0.50051604,1,0.615746973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648052157,130.3949033,0.648052157,49.60509667,0,0.972845716,0,0,0,1,22,0% -2018-01-04 07:00:00,157.9477024,308.4440799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756707452,5.383364752,-0.211995099,0.211995099,1,0.566406987,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803744033,143.4891333,0.803744033,36.51086666,0,0.98779114,0,0,0,1,23,0% -2018-01-05 08:00:00,164.4437219,347.5896562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.870084382,6.066583946,0.036768063,-0.036768063,1,0.523865981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917384077,156.5465991,0.917384077,23.45340087,0,0.995497201,0,0,0,1,0,0% -2018-01-05 09:00:00,161.8688051,35.95779358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825143606,0.62758189,0.271335969,-0.271335969,1,0.483752506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981227938,168.8807536,0.981227938,11.11924638,0,0.99904344,0,0,0,1,1,0% -2018-01-05 10:00:00,152.7051504,63.57789562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66520766,1.10964361,0.512786517,-0.512786517,1,0.442462031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990921664,172.2737305,0.990921664,7.726269483,0,0.999541925,0,0,0,1,2,0% -2018-01-05 11:00:00,141.4898383,78.73307702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469463537,1.374151424,0.786500203,-0.786500203,1,0.395654233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945798391,161.0493056,0.945798391,18.95069444,0,0.997134611,0,0,0,1,3,0% -2018-01-05 12:00:00,129.7238001,89.23216997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264107431,1.557395165,1.136323488,-1.136323488,1,0.335830929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848924122,148.0948431,0.848924122,31.90515689,0,0.991101921,0,0,0,1,4,0% -2018-01-05 13:00:00,117.9167301,97.96229917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058035184,1.709764663,1.667003659,-1.667003659,1,0.245079274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706889423,134.9823905,0.706889423,45.01760953,0,0.979267579,0,0,0,1,5,0% -2018-01-05 14:00:00,106.3457416,106.1823801,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856083336,1.85323214,2.752052243,-2.752052243,1,0.059525038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529361139,121.9622997,0.529361139,58.03770031,0,0.955546523,0,0,0,1,6,0% -2018-01-05 15:00:00,95.25205334,114.6232832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66246195,2.000553691,7.742772304,-7.742772304,1,0,#DIV/0!,0,0,0.442567245,1,0.128441702,0,0.947949979,0.986711943,0.724496596,1,0,0,0.062573258,0.312029739,0.837927714,0.56242431,0.961238037,0.922476074,0,0,0,0,0,0,-0.328424568,109.1731811,0.328424568,70.82681893,0,0.89775804,0,0,0,1,7,0% -2018-01-05 16:00:00,84.76005988,123.8452551,32.93356966,173.442703,17.09360682,16.82643866,0,16.82643866,16.5781715,0.248267159,28.46704718,19.96648661,8.500560571,0.515435314,7.985125257,1.479342119,2.161507465,-6.432972264,6.432972264,0.369743263,0.369743263,0.51903292,0.173009254,5.564572336,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93556903,0.373431131,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125344616,5.348878588,16.06091365,5.722309718,0,19.96648661,-0.115118631,96.61046757,0.115118631,83.38953243,0,0.615665441,16.06091365,18.01498551,27.85136136,1,8,73% -2018-01-05 17:00:00,75.65836489,134.3531621,181.9997472,532.0928822,50.19868975,97.59630501,47.5393,50.05700501,48.68501404,1.371990971,45.64162154,0,45.64162154,1.513675709,44.12794583,1.320487574,2.34490504,-1.69289093,1.69289093,0.819655089,0.819655089,0.27581736,1.192805309,38.36471899,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.79788732,1.096652899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864183386,36.87762717,47.6620707,37.97428006,47.5393,0,0.089343988,84.87413167,-0.089343988,95.12586833,0.490365253,0,70.97369159,37.97428006,95.82709841,1,9,35% -2018-01-05 18:00:00,68.12863247,146.5689486,320.2645589,681.4384348,66.41234133,255.1282905,188.3042368,66.82405373,64.4097642,2.414289525,79.65442733,0,79.65442733,2.002577126,77.6518502,1.189068951,2.558110734,-0.578637764,0.578637764,0.629106575,0.629106575,0.207367127,1.704531087,54.82357904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.9131153,1.450860311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23492697,52.69850949,63.14804227,54.1493698,188.3042368,0,0.276333455,73.95850488,-0.276333455,106.0414951,0.869059187,0,226.7955692,54.1493698,262.2352487,1,10,16% -2018-01-05 19:00:00,62.85506021,160.6419413,415.7184825,746.7809118,75.00491658,398.5895339,322.7124308,75.87710312,72.7432416,3.133861521,103.0574341,0,103.0574341,2.261674973,100.7957591,1.097027752,2.803730792,0.021851776,-0.021851776,0.526416816,0.526416816,0.180422377,1.917490212,61.67307655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.92357075,1.638575819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.389215131,59.28250703,71.31278588,60.92108285,322.7124308,0,0.432138028,64.3966785,-0.432138028,115.6033215,0.934296228,0,372.8217926,60.92108285,412.6934229,1,11,11% -2018-01-05 20:00:00,60.46159571,176.1420794,458.0063055,769.9233591,78.42882889,499.8980227,420.3814674,79.51655532,76.06391033,3.452644993,113.4138499,0,113.4138499,2.364918563,111.0489314,1.055253916,3.074259237,0.490631425,-0.490631425,0.446250774,0.446250774,0.171239627,1.868138458,60.08575448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.11552384,1.713375448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353459953,57.75671268,74.46898379,59.47008813,420.3814674,0,0.546004303,56.90667904,-0.546004303,123.093321,0.95842563,0,477.3733566,59.47008813,516.2953399,1,12,8% -2018-01-05 21:00:00,61.2965063,191.9684037,443.3434767,762.2278023,77.26300828,543.3438958,465.0685419,78.27535391,74.93324351,3.342110396,109.8235235,0,109.8235235,2.32976477,107.4937588,1.069825855,3.350480705,0.96692301,-0.96692301,0.364800116,0.364800116,0.174273475,1.589168839,51.1131326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.02868389,1.687906645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.151347414,49.13188724,73.1800313,50.81979389,465.0685419,0,0.610143766,52.40010109,-0.610143766,127.5998989,0.968052101,0,523.3906102,50.81979389,556.6511489,1,13,6% -2018-01-05 22:00:00,65.23289351,206.8381713,373.0076166,720.1109939,71.33089992,518.6023433,446.6104442,71.99189907,69.1800101,2.811888973,92.590905,0,92.590905,2.150889815,90.44001519,1.138528772,3.610007109,1.581002405,-1.581002405,0.259786355,0.259786355,0.191231752,1.128519885,36.29707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.4984571,1.558312349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817608815,34.89013272,67.31606591,36.44844507,446.6104442,0,0.620196675,51.66950183,-0.620196675,128.3304982,0.969380413,0,500.2514826,36.44844507,524.106261,1,14,5% -2018-01-05 23:00:00,71.74654157,219.9725714,253.7246369,620.474417,59.37893841,416.6135126,357.1123847,59.50112782,57.58844433,1.912683487,63.30896982,0,63.30896982,1.790494078,61.51847574,1.252213377,3.839245635,2.625045718,-2.625045718,0.081244433,0.081244433,0.234029061,0.566651486,18.22545965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.35620318,1.297206865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410537073,17.51900505,55.76674025,18.81621192,357.1123847,0,0.575547315,54.86202998,-0.575547315,125.13797,0.963126169,0,399.7110234,18.81621192,412.0258577,1,15,3% -2018-01-05 00:00:00,80.17116955,231.2753255,102.3256649,386.1484389,36.40807162,221.268301,185.186693,36.08160802,35.31023393,0.771374085,25.90787984,0,25.90787984,1.097837691,24.81004215,1.399250874,4.036515909,5.46656136,-5.46656136,0,0,0.355805864,0.274459423,8.827558483,0.288095789,1,0.180929871,0,0.941419591,0.980181554,0.724496596,1,34.21612499,0.79537967,0.043366299,0.312029739,0.884392027,0.608888623,0.961238037,0.922476074,0.18889944,8.485384986,34.40502443,9.280764656,131.8351866,0,0.479573849,61.3424269,-0.479573849,118.6575731,0.94574077,0,159.0869354,9.280764656,165.1610103,1,16,4% -2018-01-05 01:00:00,89.60098229,241.0703508,0.166578814,2.417409262,0.149743695,0.979065687,0.832581576,0.146484111,0.14522837,0.001255741,0.044904287,0,0.044904287,0.004515325,0.040388962,1.563832154,4.207471351,141.849397,-141.849397,0,0,0.89893601,0.001128831,0.036307092,0.959559231,1,0.007049614,0,0.960610504,0.999372468,0.724496596,1,0.139735552,0.003271338,0.11262393,0.312029739,0.730671694,0.45516829,0.961238037,0.922476074,0.000812228,0.034899758,0.14054778,0.038171096,0.033670239,0,0.344410683,69.85417415,-0.344410683,110.1458258,0.90482448,0,0.171013437,0.038171096,0.195995656,1,17,15% -2018-01-05 02:00:00,100.8587585,249.8355312,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760317416,4.360452608,-5.213110692,5.213110692,1,0.578351877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158867383,80.85883882,-0.158867383,99.14116118,0.735272085,0,0,0,0,1,18,0% -2018-01-05 03:00:00,112.2271471,258.1001708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958733228,4.504697781,-2.42269599,2.42269599,1,0.944459104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.042019956,92.40827522,0.042019956,87.59172478,0,0,0,0,0,1,19,0% -2018-01-05 04:00:00,123.946439,266.4897092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163273457,4.651122848,-1.424454869,1.424454869,1,0.773749819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.252684194,104.636406,0.252684194,75.36359399,0,0.852124545,0,0,0,1,20,0% -2018-01-05 05:00:00,135.7688013,275.9392764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369612604,4.816048909,-0.875443561,0.875443561,1,0.679863356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.458775583,117.3081263,0.458775583,62.69187368,0,0.941014252,0,0,0,1,21,0% -2018-01-05 06:00:00,147.3355959,288.3219452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571491254,5.032167249,-0.502977023,0.502977023,1,0.616167826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.646255354,130.259863,0.646255354,49.74013703,0,0.972631202,0,0,0,1,22,0% -2018-01-05 07:00:00,157.7929473,308.4501006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754006467,5.383469834,-0.213605809,0.213605809,1,0.566682434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802351663,143.3552601,0.802351663,36.6447399,0,0.987683185,0,0,0,1,23,0% -2018-01-06 08:00:00,164.3100537,347.2985568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86775143,6.061503303,0.035685176,-0.035685176,1,0.524051165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916429214,156.4095167,0.916429214,23.59048327,0,0.995440412,0,0,0,1,0,0% -2018-01-06 09:00:00,161.8181703,35.48715831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824259861,0.619367755,0.270627625,-0.270627625,1,0.48387364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980713431,168.728918,0.980713431,11.27108197,0,0.999016707,0,0,0,1,1,0% -2018-01-06 10:00:00,152.7072468,63.23916161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665244249,1.103731586,0.512390315,-0.512390315,1,0.442529785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.99081995,172.230502,0.99081995,7.769498012,0,0.999536745,0,0,0,1,2,0% -2018-01-06 11:00:00,141.5108189,78.48551289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469829717,1.369830615,0.786423564,-0.786423564,1,0.395667339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946053397,161.0943473,0.946053397,18.90565274,0,0.997148861,0,0,0,1,3,0% -2018-01-06 12:00:00,129.7493889,89.03241804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264554038,1.553908836,1.136665512,-1.136665512,1,0.335772439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849455123,148.152455,0.849455123,31.84754504,0,0.991138739,0,0,0,1,4,0% -2018-01-06 13:00:00,117.9397589,97.78776591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058437112,1.706718483,1.668070718,-1.668070718,1,0.244896797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707596591,135.0397023,0.707596591,44.96029766,0,0.979338269,0,0,0,1,5,0% -2018-01-06 14:00:00,106.3613862,106.0205085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856356386,1.850406947,2.754942387,-2.754942387,1,0.059030795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530132405,122.0144013,0.530132405,57.98559866,0,0.955683939,0,0,0,1,6,0% -2018-01-06 15:00:00,95.2560984,114.4663751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66253255,1.997815128,7.757661821,-7.757661821,1,0,#DIV/0!,0,0,0.443357326,1,0.128197875,0,0.947978857,0.98674082,0.724496596,1,0,0,0.062665466,0.312029739,0.837711714,0.56220831,0.961238037,0.922476074,0,0,0,0,0,0,-0.329143319,109.2167867,0.329143319,70.78321327,0,0.898090491,0,0,0,1,7,0% -2018-01-06 16:00:00,84.74843366,123.6885977,32.95639302,172.548032,17.16327151,16.89417476,0,16.89417476,16.64573555,0.248439211,28.46788691,19.9596919,8.508195006,0.517535962,7.990659044,1.479139203,2.158773278,-6.442645278,6.442645278,0.36808908,0.36808908,0.520787317,0.173206917,5.570929851,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.00051416,0.374953042,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125487822,5.354989673,16.12600198,5.729942716,0,19.9596919,-0.115676149,96.64262583,0.115676149,83.35737417,0,0.617758779,16.12600198,18.06021761,27.9460532,1,8,73% -2018-01-06 17:00:00,75.6259262,134.1950041,182.3177854,531.109529,50.46900553,97.62020171,47.29863443,50.32156728,48.94717881,1.374388477,45.72688459,0,45.72688459,1.521826728,44.20505786,1.319921412,2.342144661,-1.698609499,1.698609499,0.820633022,0.820633022,0.276818882,1.196109935,38.4710071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.04989006,1.102558284,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866577576,36.97979534,47.91646764,38.08235363,47.29863443,0,0.089056272,84.89068258,-0.089056272,95.10931742,0.488557228,0,71.02455735,38.08235363,95.94869615,1,9,35% -2018-01-06 18:00:00,68.07081807,146.4118636,321.0034229,680.7081191,66.78596418,255.3378939,188.1459135,67.19198034,64.77212095,2.419859394,79.84483956,0,79.84483956,2.013843234,77.83099633,1.1880599,2.555369083,-0.583574701,0.583574701,0.629950841,0.629950841,0.208053745,1.710697709,55.02191882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.26142638,1.459022568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239394667,52.88916123,63.50082105,54.3481838,188.1459135,0,0.27639734,73.95469617,-0.27639734,106.0453038,0.869101009,0,227.0186243,54.3481838,262.5884236,1,10,16% -2018-01-06 19:00:00,62.76871948,160.4945602,416.9168759,746.2591385,75.44105666,399.1503488,322.8412228,76.30912597,73.16623045,3.142895517,103.3611497,0,103.3611497,2.274826206,101.0863235,1.095520822,2.801158507,0.01677274,-0.01677274,0.527285382,0.527285382,0.180949875,1.926038764,61.94802736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33016372,1.648103843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395408528,59.5468002,71.72557225,61.19490405,322.8412228,0,0.432612756,64.36651314,-0.432612756,115.6334869,0.934423195,0,373.3958993,61.19490405,413.4467401,1,11,11% -2018-01-06 20:00:00,60.3473581,176.0179794,459.657723,769.5949041,78.907934,500.9014413,420.9077785,79.99366273,76.52856865,3.465094076,113.828702,0,113.828702,2.379365349,111.4493367,1.053260094,3.072093283,0.484703006,-0.484703006,0.447264594,0.447264594,0.171666721,1.878603763,60.42235467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.56217109,1.723842096,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361042031,58.08026558,74.92321312,59.80410768,420.9077785,0,0.546921213,56.84394936,-0.546921213,123.1560506,0.958579154,0,478.3966354,59.80410768,517.5372278,1,12,8% -2018-01-06 21:00:00,61.1599487,191.8793378,445.403572,762.1397942,77.77315779,544.8371022,466.0514518,78.7856504,75.42801013,3.357640265,110.3384004,0,110.3384004,2.34514766,107.9932527,1.067442475,3.348926211,0.959080125,-0.959080125,0.366141329,0.366141329,0.174612784,1.600993913,51.49346763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50427238,1.699051496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15991464,49.49747973,73.66418702,51.19653123,466.0514518,0,0.611503894,52.30167611,-0.611503894,127.6983239,0.968234372,0,524.9112217,51.19653123,558.4183274,1,13,6% -2018-01-06 22:00:00,65.08248889,206.7869873,375.3948084,720.4371532,71.86526259,520.6187215,448.0905771,72.5281444,69.69825977,2.829884633,93.18582029,0,93.18582029,2.167002822,91.01881747,1.135903717,3.609113779,1.568837809,-1.568837809,0.261866623,0.261866623,0.191439149,1.140936611,36.69644335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99661839,1.569986167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.826604691,35.27401717,67.82322308,36.84400334,448.0905771,0,0.62197039,51.53983401,-0.62197039,128.460166,0.969610321,0,502.2964714,36.84400334,526.4101347,1,14,5% -2018-01-06 23:00:00,71.59013487,219.9539423,256.3045631,621.7633251,59.9439897,419.2458845,359.1772952,60.0685893,58.13645724,1.93213206,63.95154117,0,63.95154117,1.807532459,62.14400871,1.249483565,3.838920496,2.600664206,-2.600664206,0.085413917,0.085413917,0.233877965,0.578316976,18.60066189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.88297403,1.309551114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.41898868,17.87966372,56.30196271,19.18921484,359.1772952,0,0.577675268,54.71280109,-0.577675268,125.2871989,0.963446182,0,402.3499564,19.18921484,414.9089138,1,15,3% -2018-01-06 00:00:00,80.01458792,231.2814184,104.7557819,390.3219609,37.07495586,224.8673673,188.1206648,36.74670249,35.95700915,0.789693333,26.51719885,0,26.51719885,1.117946711,25.39925214,1.396518009,4.03662225,5.379315057,-5.379315057,0,0,0.353917991,0.279486678,8.989252288,0.280453043,1,0.183799207,0,0.941044767,0.979806731,0.724496596,1,34.84003415,0.809948587,0.04235103,0.312029739,0.886929421,0.611426017,0.961238037,0.922476074,0.192480179,8.640811222,35.03251433,9.450759809,135.361652,0,0.481962799,61.18632583,-0.481962799,118.8136742,0.946257553,0,163.1195,9.450759809,169.3048333,1,16,4% -2018-01-06 01:00:00,89.46740452,241.0947402,0.265086942,3.161149751,0.235702757,1.326303757,1.095709971,0.230593786,0.228595449,0.001998337,0.071380706,0,0.071380706,0.007107308,0.064273398,1.561500782,4.207897026,106.278571,-106.278571,0,0,0.889152648,0.001776827,0.057148862,0.94636503,1,0.009408957,0,0.960397801,0.999159764,0.724496596,1,0.220017816,0.00514922,0.111560879,0.312029739,0.73274079,0.457237386,0.961238037,0.922476074,0.001275698,0.05493366,0.221293514,0.06008288,0.058768371,0,0.346617547,69.71943186,-0.346617547,110.2805681,0.905748791,0,0.274522895,0.06008288,0.313845938,1,17,14% -2018-01-06 02:00:00,100.7049662,249.8742233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757633233,4.361127913,-5.289824476,5.289824476,1,0.565233048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.161517474,80.70501319,-0.161517474,99.29498681,0.740435971,0,0,0,0,1,18,0% -2018-01-06 03:00:00,112.0757656,258.1512879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956091121,4.505589943,-2.440783806,2.440783806,1,0.947552303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039423081,92.25936164,0.039423081,87.74063836,0,0,0,0,0,1,19,0% -2018-01-06 04:00:00,123.7965045,266.5527384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160656605,4.652222915,-1.432065692,1.432065692,1,0.775051346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25025309,104.4924893,0.25025309,75.50751072,0,0.850202268,0,0,0,1,20,0% -2018-01-06 05:00:00,135.618458,276.0133549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366988618,4.817341822,-0.879497099,0.879497099,1,0.680556551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456611214,117.1686506,0.456611214,62.83134944,0,0.940497652,0,0,0,1,21,0% -2018-01-06 06:00:00,147.1818854,288.3985194,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568808499,5.033503722,-0.505417069,0.505417069,1,0.616585099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644440158,130.1237134,0.644440158,49.87628658,0,0.972413277,0,0,0,1,22,0% -2018-01-06 07:00:00,157.6337764,308.4719371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75122841,5.383850953,-0.215169925,0.215169925,1,0.566949914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800943904,143.2203334,0.800943904,36.77966664,0,0.987573656,0,0,0,1,23,0% -2018-01-07 08:00:00,164.1691149,347.0229849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.865291586,6.056693666,0.034669413,-0.034669413,1,0.524224871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915458987,156.2709935,0.915458987,23.72900646,0,0.995382589,0,0,0,1,0,0% -2018-01-07 09:00:00,161.7592512,35.01193932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823231529,0.611073619,0.270008582,-0.270008582,1,0.483979503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980180603,168.5737754,0.980180603,11.42622459,0,0.998988993,0,0,0,1,1,0% -2018-01-07 10:00:00,152.7025865,62.89046222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665162911,1.097645634,0.51211335,-0.51211335,1,0.442577149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990694185,172.1773804,0.990694185,7.822619616,0,0.999530339,0,0,0,1,2,0% -2018-01-07 11:00:00,141.525956,78.22926865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470093908,1.365358309,0.786513736,-0.786513736,1,0.395651919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946276242,161.1337933,0.946276242,18.86620671,0,0.997161307,0,0,0,1,3,0% -2018-01-07 12:00:00,129.7694881,88.82545444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264904836,1.55029664,1.137262725,-1.137262725,1,0.335670309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849944034,148.2055827,0.849944034,31.79441727,0,0.991172597,0,0,0,1,4,0% -2018-01-07 13:00:00,117.9573432,97.60709806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058744016,1.703565234,1.669596079,-1.669596079,1,0.244635944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708250605,135.0927574,0.708250605,44.90724258,0,0.97940352,0,0,0,1,5,0% -2018-01-07 14:00:00,106.3714441,105.8532879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856531929,1.847488398,2.758984798,-2.758984798,1,0.058339502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53083908,122.0621656,0.53083908,57.93783439,0,0.955809497,0,0,0,1,6,0% -2018-01-07 15:00:00,95.25428606,114.3047486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662500918,1.994994214,7.781809069,-7.781809069,1,0,#DIV/0!,0,0,0.444633897,1,0.127804396,0,0.948025431,0.986787394,0.724496596,1,0,0,0.062814328,0.312029739,0.837363141,0.561859737,0.961238037,0.922476074,0,0,0,0,0,0,-0.32978646,109.255815,0.32978646,70.74418501,0,0.898386741,0,0,0,1,7,0% -2018-01-07 16:00:00,84.73073254,123.5278284,33.05501679,171.971828,17.26172888,16.99040674,0,16.99040674,16.74122406,0.249182679,28.5097059,19.97462957,8.535076334,0.520504815,8.014571519,1.47883026,2.155967323,-6.445371749,6.445371749,0.367622826,0.367622826,0.522212074,0.173894082,5.59303142,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.09230135,0.377103966,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.12598567,5.376234543,16.21828702,5.753338509,0,19.97462957,-0.116150592,96.66999385,0.116150592,83.33000615,0,0.619524362,16.21828702,18.12810816,28.08277125,1,8,73% -2018-01-07 17:00:00,75.58688133,134.0334634,182.7557235,530.3061505,50.75634393,97.72735113,47.12380839,50.60354273,49.22585289,1.37768984,45.84173208,0,45.84173208,1.530491041,44.31124104,1.319239951,2.339325244,-1.703678587,1.703678587,0.821499887,0.821499887,0.277727794,1.200070254,38.59838458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.3177622,1.108835549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869446814,37.10223542,48.18720901,38.21107097,47.12380839,0,0.088861516,84.90188568,-0.088861516,95.09811432,0.487326727,0,71.1519003,38.21107097,96.16028203,1,9,35% -2018-01-07 18:00:00,68.00598458,146.2524239,321.8703534,680.0848694,67.17194138,255.6571275,188.0842733,67.5728542,65.14645951,2.426394683,80.06667554,0,80.06667554,2.025481871,78.04119367,1.186928342,2.552586336,-0.58836845,0.58836845,0.63077062,0.63077062,0.208692539,1.717465333,55.23958886,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62125485,1.46745472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244297787,53.09839395,63.86555264,54.56584867,188.0842733,0,0.276560003,73.94499827,-0.276560003,106.0550017,0.869207407,0,227.3497962,54.56584867,263.0620528,1,10,16% -2018-01-07 19:00:00,62.67509277,160.3463066,418.2437543,745.8153906,75.88778623,399.8314967,323.0791092,76.75238757,73.59948948,3.152898086,103.6963372,0,103.6963372,2.288296751,101.4080405,1.093886728,2.798570993,0.011697852,-0.011697852,0.528153239,0.528153239,0.18144392,1.935144689,62.24090523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.74662878,1.657863206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.40200574,59.82832555,72.14863452,61.48618876,323.0791092,0,0.433189115,64.32987967,-0.433189115,115.6701203,0.934576971,0,374.0909296,61.48618876,414.3324104,1,11,11% -2018-01-07 20:00:00,60.22586197,175.8949162,461.4336487,769.3324775,79.39681799,502.0289051,421.5477124,80.48119274,77.00271099,3.478481754,114.2740374,0,114.2740374,2.394107006,111.8799304,1.051139586,3.069945425,0.478711674,-0.478711674,0.448289172,0.448289172,0.172065514,1.889579395,60.77536873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01793474,1.734522376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368993839,58.41959612,75.38692858,60.1541185,421.5477124,0,0.547939577,56.77422614,-0.547939577,123.2257739,0.958749063,0,479.5454027,60.1541185,518.9150702,1,12,8% -2018-01-07 21:00:00,61.01655136,191.7932897,447.5808009,762.114849,78.29275898,546.453673,467.1476765,79.30599656,75.93194342,3.374053136,110.8819627,0,110.8819627,2.360815553,108.5211471,1.064939719,3.347424389,0.951121714,-0.951121714,0.367502297,0.367502297,0.174924302,1.613274882,51.88846579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.98867223,1.710402831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16881216,49.877167,74.15748439,51.58756983,467.1476765,0,0.612962308,52.19599332,-0.612962308,127.8040067,0.968428916,0,526.5568022,51.58756983,560.3198349,1,13,6% -2018-01-07 22:00:00,64.92598927,206.740401,377.8889709,720.830419,72.40924622,522.7548205,449.6802935,73.07452697,70.22584029,2.848686684,93.80696198,0,93.80696198,2.183405935,91.62355605,1.133172283,3.608300694,1.556497982,-1.556497982,0.263976858,0.263976858,0.191615135,1.153746685,37.10845936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.50374885,1.581870167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.835885546,35.67006262,68.3396344,37.25193279,449.6802935,0,0.623836455,51.40316276,-0.623836455,128.5968372,0.969850789,0,504.4624217,37.25193279,528.8430666,1,14,5% -2018-01-07 23:00:00,71.42851716,219.9409078,258.9789915,623.1303371,60.51973835,421.9924956,361.3453576,60.64713798,58.69484495,1.952293031,64.61734825,0,64.61734825,1.824893405,62.79245485,1.246662804,3.838693,2.576049349,-2.576049349,0.089623306,0.089623306,0.233685899,0.590306062,18.98627211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41971753,1.32212906,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427674732,18.25032693,56.84739226,19.57245599,361.3453576,0,0.579887282,54.55738494,-0.579887282,125.4426151,0.963776347,0,405.1035009,19.57245599,417.9132819,1,15,3% -2018-01-07 00:00:00,79.85363949,231.2936652,107.2674875,394.5869204,37.75576418,228.5740344,191.1481182,37.42591622,36.61728859,0.808627631,27.14671985,0,27.14671985,1.138475594,26.00824425,1.393708929,4.036835997,5.292601031,-5.292601031,0,0,0.351977706,0.284618898,9.154322147,0.272692569,1,0.186741592,0,0.940658503,0.979420466,0.724496596,1,35.47667348,0.824821692,0.041313418,0.312029739,0.889531072,0.614027668,0.961238037,0.922476074,0.196146651,8.799482649,35.67282013,9.624304341,139.0234467,0,0.484425885,61.02513519,-0.484425885,118.9748648,0.946785037,0,167.2981392,9.624304341,173.5970539,1,16,4% -2018-01-07 01:00:00,89.32944531,241.1256458,0.395408044,4.096264308,0.347468971,1.769158946,1.429186693,0.339972253,0.3369915,0.002980753,0.10634873,0,0.10634873,0.010477472,0.095871258,1.55909294,4.20843643,84.41862944,-84.41862944,0,0,0.878760502,0.002619368,0.084247875,0.932914191,1,0.011845173,0,0.960176756,0.99893872,0.724496596,1,0.324447711,0.007590892,0.110467455,0.312029739,0.734878506,0.459375102,0.961238037,0.922476074,0.001876505,0.080982262,0.326324216,0.088573154,0.095878146,0,0.348900019,69.57994991,-0.348900019,110.4200501,0.90669247,0,0.413256208,0.088573154,0.471225566,1,17,14% -2018-01-07 02:00:00,100.5481073,249.9197971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75489553,4.361923325,-5.370343274,5.370343274,1,0.551463522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164219102,80.54812648,-0.164219102,99.45187352,0.745528721,0,0,0,0,1,18,0% -2018-01-07 03:00:00,111.921717,258.2098116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953402466,4.506611373,-2.459390878,2.459390878,1,0.9507343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036785657,92.10813855,0.036785657,87.89186145,0,0,0,0,0,1,19,0% -2018-01-07 04:00:00,123.6441066,266.6240164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15799676,4.653466951,-1.439805205,1.439805205,1,0.776374881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.2477912,104.3468452,0.2477912,75.65315484,0,0.848217208,0,0,0,1,20,0% -2018-01-07 05:00:00,135.4655952,276.0970677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364320659,4.818802887,-0.88357201,0.88357201,1,0.681253402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454423918,117.0278742,0.454423918,62.9721258,0,0.93997058,0,0,0,1,21,0% -2018-01-07 06:00:00,147.0251741,288.4870349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566073372,5.035048608,-0.507834327,0.507834327,1,0.616998474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642607456,129.9865268,0.642607456,50.01347316,0,0.972192001,0,0,0,1,22,0% -2018-01-07 07:00:00,157.4702805,308.5093297,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748374869,5.384503576,-0.216685985,0.216685985,1,0.567209175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799521245,143.0844089,0.799521245,36.91559111,0,0.987462575,0,0,0,1,23,0% -2018-01-08 08:00:00,164.0210256,346.7631608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862706939,6.052158881,0.03372195,-0.03372195,1,0.524386897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914473471,156.1310633,0.914473471,23.86893666,0,0.995323728,0,0,0,1,0,0% -2018-01-08 09:00:00,161.6920126,34.5330959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822057994,0.602716224,0.269479818,-0.269479818,1,0.484069927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979629136,168.4153646,0.979629136,11.58463538,0,0.998960277,0,0,0,1,1,0% -2018-01-08 10:00:00,152.6910672,62.53224456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664961861,1.091393556,0.511956465,-0.511956465,1,0.442603978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990543695,172.1142826,0.990543695,7.885717355,0,0.999522671,0,0,0,1,2,0% -2018-01-08 11:00:00,141.5351526,77.96458139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470254421,1.360738645,0.786771498,-0.786771498,1,0.395607839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946465964,161.1674388,0.946465964,18.83256117,0,0.997171899,0,0,0,1,3,0% -2018-01-08 12:00:00,129.7840158,88.61144102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265158391,1.546561401,1.138115985,-1.138115985,1,0.335524394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850389689,148.2540794,0.850389689,31.74592056,0,0.991203426,0,0,0,1,4,0% -2018-01-08 13:00:00,117.9694163,97.42042454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058954731,1.700307167,1.671581179,-1.671581179,1,0.244296472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708850197,135.141441,0.708850197,44.85855898,0,0.979463235,0,0,0,1,5,0% -2018-01-08 14:00:00,106.3758639,105.6808306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856609071,1.844478451,2.764184862,-2.764184862,1,0.057450238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531479903,122.1055005,0.531479903,57.89449948,0,0.955923065,0,0,0,1,6,0% -2018-01-08 15:00:00,95.24658107,114.1385063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662366441,1.992092738,7.815338533,-7.815338533,1,0,#DIV/0!,0,0,0.446396792,1,0.127262001,0,0.948089572,0.986851535,0.724496596,1,0,0,0.063019653,0.312029739,0.836882643,0.561379239,0.961238037,0.922476074,0,0,0,0,0,0,-0.330352844,109.2901931,0.330352844,70.70980691,0,0.898646679,0,0,0,1,7,0% -2018-01-08 16:00:00,84.70693626,123.3630427,33.22974127,171.7112787,17.3893683,17.11551451,0,17.11551451,16.86501468,0.250499826,28.5926934,20.0114043,8.581289107,0.524353614,8.056935492,1.478414937,2.15309127,-6.441167715,6.441167715,0.368341758,0.368341758,0.523307364,0.175072617,5.630937165,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.21129361,0.379892408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126839515,5.412670986,16.33813312,5.792563394,0,20.0114043,-0.116541001,96.69251561,0.116541001,83.30748439,0,0.620966445,16.33813312,18.21897397,28.26208721,1,8,73% -2018-01-08 17:00:00,75.54122856,133.8686296,183.3135175,529.6816065,51.06087377,97.91782252,47.01472777,50.90309476,49.52120003,1.381894727,45.98615838,0,45.98615838,1.539673739,44.44648464,1.318443159,2.336448351,-1.708088988,1.708088988,0.82225411,0.82225411,0.278543964,1.204686288,38.74685211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.6016611,1.115488382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872791115,37.24494805,48.47445222,38.36043644,47.01472777,0,0.088760356,84.90770472,-0.088760356,95.09229528,0.486685448,0,71.35583605,38.36043644,96.46197449,1,9,35% -2018-01-08 18:00:00,67.93414759,146.0907128,322.8648846,679.5677134,67.57032504,256.0858169,188.1190945,67.96672232,65.53283044,2.433891879,80.31982389,0,80.31982389,2.037494608,78.28232928,1.18567455,2.549763946,-0.593011468,0.593011468,0.631564623,0.631564623,0.209283599,1.724831281,55.47650306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.99264928,1.476157908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.249634391,53.3261249,64.24228367,54.8022828,188.1190945,0,0.276821707,73.92939452,-0.276821707,106.0706055,0.869378327,0,227.7889473,54.8022828,263.6559453,1,10,16% -2018-01-08 19:00:00,62.57421218,160.1972594,419.6982195,745.448606,76.34509234,400.6323896,323.425521,77.20686858,74.04300612,3.16386246,104.0627786,0,104.0627786,2.302086217,101.7606924,1.092126029,2.79596963,0.006634562,-0.006634562,0.529019113,0.529019113,0.181904732,1.944803363,62.55156138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17295384,1.667853628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409003416,60.12694006,72.58195726,61.79479369,323.425521,0,0.433866961,64.28678128,-0.433866961,115.7132187,0.9347573,0,374.9063241,61.79479369,415.3497806,1,11,11% -2018-01-08 20:00:00,60.09715568,175.7729691,463.3327839,769.1347944,79.8954193,503.2793258,422.3002499,80.97907586,77.48627763,3.492798237,114.7495394,0,114.7495394,2.409141675,112.3403977,1.048893238,3.067817046,0.472666059,-0.472666059,0.449323033,0.449323033,0.172436361,1.901059405,61.14460532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48275739,1.745414942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.377311068,58.77452038,75.86006846,60.51993532,422.3002499,0,0.549058829,56.69753133,-0.549058829,123.3024687,0.958935077,0,480.8185912,60.51993532,520.4276784,1,12,8% -2018-01-08 21:00:00,60.86637949,191.71034,449.8735329,762.1512606,78.82170358,548.1919711,468.355696,79.83627512,76.4449384,3.391336718,111.4538117,0,111.4538117,2.376765184,109.0770465,1.062318726,3.345976643,0.943059418,-0.943059418,0.368881031,0.368881031,0.175208582,1.626005183,52.29791605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.48178251,1.721958285,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17803522,50.27074615,74.65981773,51.99270444,468.355696,0,0.614518036,52.08309171,-0.614518036,127.9169083,0.968635423,0,528.3257355,51.99270444,562.3539207,1,13,6% -2018-01-08 22:00:00,64.76347604,206.6984863,380.4882543,721.2882502,72.96268167,525.0083961,451.3775274,73.63086879,70.76258761,2.86828118,94.45387645,0,94.45387645,2.200094056,92.25378239,1.130335892,3.607569145,1.544001788,-1.544001788,0.266113833,0.266113833,0.191760668,1.166943948,37.5329287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0196908,1.593960654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.845446918,36.0780787,68.86513772,37.67203936,451.3775274,0,0.62579354,51.2595451,-0.62579354,128.7404549,0.970101444,0,506.7471289,37.67203936,531.4027252,1,14,5% -2018-01-08 23:00:00,71.26178205,219.9335256,261.7460534,624.5710369,61.10589557,424.8503319,363.6138522,61.23647967,59.26332736,1.973152313,65.30592925,0,65.30592925,1.842568208,63.46336104,1.243752728,3.838564157,2.551241403,-2.551241403,0.093865714,0.093865714,0.233454888,0.602614908,19.38216692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.96616445,1.334934394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.43659245,18.63087608,57.4027569,19.96581048,363.6138522,0,0.582181739,54.39585872,-0.582181739,125.6041413,0.964116166,0,407.9687499,19.96581048,421.0359735,1,15,3% -2018-01-08 00:00:00,79.68842342,231.3121026,109.859502,398.9342969,38.44986196,232.3841903,194.2655662,38.11862409,37.29045676,0.828167331,27.79611337,0,27.79611337,1.159405203,26.63670817,1.390825364,4.03715779,5.206553953,-5.206553953,0,0,0.349991228,0.289851301,9.32261419,0.264824524,1,0.189754836,0,0.940260948,0.979022911,0.724496596,1,36.12542059,0.839985123,0.040254462,0.312029739,0.892195013,0.616691609,0.961238037,0.922476074,0.199896433,8.961251363,36.32531702,9.801236486,142.8192801,0,0.486961306,60.85894806,-0.486961306,119.1410519,0.947322437,0,171.6212255,9.801236486,178.0359388,1,16,4% -2018-01-08 01:00:00,89.18710369,241.1630825,0.564104898,5.256501261,0.489529647,2.325408369,1.846387387,0.479020983,0.474768522,0.004252461,0.151534888,0,0.151534888,0.014761125,0.136773763,1.55660861,4.209089825,69.64216276,-69.64216276,0,0,0.867798966,0.003690281,0.11869213,0.919220364,1,0.014358131,0,0.95994725,0.998709213,0.724496596,1,0.457239321,0.010694385,0.109344087,0.312029739,0.737084795,0.461581391,0.961238037,0.922476074,0.002637923,0.11409139,0.459877244,0.124785775,0.149150501,0,0.35125786,69.43572921,-0.35125786,110.5642708,0.907654431,0,0.595254357,0.124785775,0.676924152,1,17,14% -2018-01-08 02:00:00,100.3882835,249.9722468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752106077,4.362838745,-5.454853098,5.454853098,1,0.537011491,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.166970332,80.38828576,-0.166970332,99.61171424,0.750545604,0,0,0,0,1,18,0% -2018-01-08 03:00:00,111.7650981,258.2757144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950668951,4.507761594,-2.478521297,2.478521297,1,0.954005794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.034109503,91.95470974,0.034109503,88.04529026,0,0,0,0,0,1,19,0% -2018-01-08 04:00:00,123.4893359,266.7034894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155295502,4.654854017,-1.447670851,1.447670851,1,0.777719986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245300119,104.1995705,0.245300119,75.80042947,0,0.846168057,0,0,0,1,20,0% -2018-01-08 05:00:00,135.3102964,276.1903219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361610185,4.820430479,-0.887665831,0.887665831,1,0.681953487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452214986,116.8858842,0.452214986,63.11411579,0,0.93943312,0,0,0,1,21,0% -2018-01-08 06:00:00,146.8655415,288.5873282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563287257,5.036799056,-0.510226861,0.510226861,1,0.617407622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640758164,129.8483771,0.640758164,50.15162286,0,0.97196744,0,0,0,1,22,0% -2018-01-08 07:00:00,157.3025512,308.5620065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.74544744,5.385422961,-0.218152477,0.218152477,1,0.56745996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798084188,142.9475432,0.798084188,37.05245678,0,0.987349968,0,0,0,1,23,0% -2018-01-09 08:00:00,163.8659091,346.5192554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.859999646,6.047901929,0.032844,-0.032844,1,0.524537035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913472745,155.9897592,0.913472745,24.01024076,0,0.995263829,0,0,0,1,0,0% -2018-01-09 09:00:00,161.6164279,34.05159827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820738793,0.594312505,0.269042336,-0.269042336,1,0.48414474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979058696,168.253721,0.979058696,11.746279,0,0.998930539,0,0,0,1,1,0% -2018-01-09 10:00:00,152.6725893,62.16498216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66463936,1.084983618,0.511920532,-0.511920532,1,0.442610123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990367781,172.0411553,0.990367781,7.958844748,0,0.999513705,0,0,0,1,2,0% -2018-01-09 11:00:00,141.5383126,77.69170466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470309573,1.355976048,0.787197681,-0.787197681,1,0.395534958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946621568,161.1950772,0.946621568,18.80492278,0,0.997180582,0,0,0,1,3,0% -2018-01-09 12:00:00,129.7928898,88.39055048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265313273,1.542706134,1.139226268,-1.139226268,1,0.335334524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85079089,148.2977954,0.85079089,31.70220455,0,0.991231153,0,0,0,1,4,0% -2018-01-09 13:00:00,117.9759117,97.22788223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059068097,1.69694667,1.674027844,-1.674027844,1,0.243878068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709394069,135.1856365,0.709394069,44.8143635,0,0.979517313,0,0,0,1,5,0% -2018-01-09 14:00:00,106.3745952,105.503255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856586928,1.841379171,2.770550027,-2.770550027,1,0.056361731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532053589,122.1443129,0.532053589,57.85568712,0,0.956024504,0,0,0,1,6,0% -2018-01-09 15:00:00,95.23294924,113.9677557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662128521,1.989112578,7.858436857,-7.858436857,1,0,#DIV/0!,0,0,0.44864642,1,0.126571504,0,0.94817113,0.986933093,0.724496596,1,0,0,0.063281253,0.312029739,0.836270939,0.560767535,0.961238037,0.922476074,0,0,0,0,0,0,-0.330841313,109.3198477,0.330841313,70.6801523,0,0.898870144,0,0,0,1,7,0% -2018-01-09 16:00:00,84.67702532,123.1943407,33.48104073,171.7635666,17.54656049,17.26986118,0,17.26986118,17.01746695,0.252394227,28.71691494,20.06995545,8.646959493,0.529093539,8.117865955,1.477892893,2.150146866,-6.430096694,6.430096694,0.370235014,0.370235014,0.524074524,0.176746327,5.684769424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.35783652,0.383326468,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128052112,5.464416601,16.48588864,5.847743069,0,20.06995545,-0.116846406,96.7101344,0.116846406,83.2898656,0,0.622087823,16.48588864,18.33301796,28.48448223,1,8,73% -2018-01-09 17:00:00,75.4889681,133.700596,183.9911047,529.2344227,51.3827357,98.19172066,46.97136136,51.2203593,49.83335664,1.387002666,46.16015258,0,46.16015258,1.549379064,44.61077352,1.317531042,2.333515612,-1.711833335,1.711833335,0.822894431,0.822894431,0.279267499,1.209957684,38.91639833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.90171791,1.122519857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876610223,37.40792233,48.77832813,38.53044219,46.97136136,0,0.088753413,84.90810408,-0.088753413,95.09189592,0.486641384,0,71.63653642,38.53044219,96.85394022,1,9,35% -2018-01-09 18:00:00,67.85532525,145.9268174,323.9864947,679.1554977,67.98115054,256.6237619,188.2501469,68.37361508,65.93126803,2.44234705,80.60415915,0,80.60415915,2.049882513,78.55427664,1.184298841,2.546903431,-0.59749649,0.59749649,0.632331607,0.632331607,0.209827112,1.732792488,55.73256284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.37564265,1.485132902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.255402259,53.57225929,64.63104491,55.05739219,188.2501469,0,0.277182689,73.90786952,-0.277182689,106.0921305,0.869613554,0,228.3359242,55.05739219,264.3698863,1,10,16% -2018-01-09 19:00:00,62.46611297,160.0475015,421.2792975,745.1576014,76.8129486,401.5523834,323.8798473,77.67253609,74.49675479,3.175781294,104.4602369,0,104.4602369,2.31619381,102.1440431,1.090239342,2.79335586,0.001590307,-0.001590307,0.529881731,0.529881731,0.182332598,1.955009746,62.87983372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60911433,1.678074531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416397906,60.44248793,73.02551224,62.12056246,323.8798473,0,0.434646103,64.23722302,-0.434646103,115.762777,0.934963883,0,375.8414718,62.12056246,416.4981375,1,11,11% -2018-01-09 20:00:00,59.96129141,175.652221,465.3537399,769.0004742,80.40366372,504.651537,423.1643073,81.48722966,77.9791966,3.508033057,115.254869,0,115.254869,2.424467119,112.8304019,1.046521959,3.065709594,0.466574844,-0.466574844,0.450364692,0.450364692,0.172779666,1.91303741,61.52985914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.95656985,1.756518175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385989092,59.14484101,76.34255895,60.90135918,423.1643073,0,0.550278344,56.61388939,-0.550278344,123.3861106,0.959136893,0,482.2150579,60.90135918,522.0737795,1,12,8% -2018-01-09 21:00:00,60.70950288,191.6305724,452.2800383,762.2472402,79.35987042,550.0502645,469.673909,80.3763555,76.96687752,3.409477973,112.0535245,0,112.0535245,2.3929929,109.6605316,1.059580713,3.344584435,0.934904924,-0.934904924,0.370275531,0.370275531,0.175466224,1.639177814,52.72159313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.98349025,1.73371521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.187578746,50.67800068,75.171069,52.41171589,469.673909,0,0.616170036,51.96301357,-0.616170036,128.0369864,0.968853568,0,530.2163115,52.41171589,564.5187313,1,13,6% -2018-01-09 22:00:00,64.59503569,206.6613197,383.1907049,721.8080344,73.52538591,527.3770993,453.1801217,74.19697764,71.30832424,2.888653394,95.12608449,0,95.12608449,2.217061665,92.90902282,1.127396053,3.606920466,1.531368007,-1.531368007,0.268274337,0.268274337,0.191876747,1.180521803,37.9696392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54427361,1.606253629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.855284028,36.49786145,69.39955763,38.10411508,453.1801217,0,0.627840229,51.1090423,-0.627840229,128.8909577,0.970361905,0,509.1482837,38.10411508,534.0866649,1,14,5% -2018-01-09 23:00:00,71.09002834,219.9318544,264.6037741,626.0809723,61.70215763,427.8162752,365.9799702,61.83630494,59.84160992,1.994695018,66.01679622,0,66.01679622,1.860547709,64.15624851,1.24075506,3.83853499,2.526279714,-2.526279714,0.098134415,0.098134415,0.23318699,0.615239215,19.78820803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.52203164,1.347960482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.445738717,19.02117824,57.96777036,20.36913872,365.9799702,0,0.584556929,54.22830478,-0.584556929,125.7716952,0.964465132,0,410.9426905,20.36913872,424.2738844,1,15,3% -2018-01-09 00:00:00,79.51904391,231.3367667,112.5304103,403.35514,39.15660023,236.2936198,197.4694337,38.82418603,37.97588426,0.848301766,28.46501677,0,28.46501677,1.180715969,27.2843008,1.387869134,4.03758826,5.121297542,-5.121297542,0,0,0.347964609,0.295178992,9.493971066,0.256859063,1,0.192836645,0,0.939852269,0.978614232,0.724496596,1,36.78563918,0.855424701,0.039175185,0.312029739,0.894919188,0.619415784,0.961238037,0.922476074,0.20372703,9.125966109,36.98936621,9.98139081,146.7476201,0,0.489567168,60.68786323,-0.489567168,119.3121368,0.947868968,0,176.0868814,9.98139081,182.6195021,1,16,4% -2018-01-09 01:00:00,89.04041755,241.2070643,0.778200675,6.676598171,0.666387083,3.013606645,2.361447186,0.652159459,0.646293053,0.005866405,0.208777793,0,0.208777793,0.020094029,0.188683763,1.554048454,4.20985745,59.00181009,-59.00181009,0,0,0.85631779,0.005023507,0.161573263,0.905300789,1,0.01694701,0,0.959709218,0.998471181,0.724496596,1,0.622625766,0.014558056,0.108191518,0.312029739,0.739358997,0.463855593,0.961238037,0.922476074,0.003583112,0.155310366,0.626208879,0.169868422,0.223627185,0,0.353690177,69.28681033,-0.353690177,110.7131897,0.908633337,0,0.829403994,0.169868422,0.940579479,1,17,13% -2018-01-09 02:00:00,100.2255998,250.0315646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749266711,4.363874037,-5.543552853,5.543552853,1,0.52184294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16976915,80.22560278,-0.16976915,99.77439722,0.755482415,0,0,0,0,1,18,0% -2018-01-09 03:00:00,111.6060091,258.3489664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947892323,4.509040082,-2.498178829,2.498178829,1,0.95736743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.031396506,91.79918294,0.031396506,88.20081706,0,0,0,0,0,1,19,0% -2018-01-09 04:00:00,123.3322854,266.7911005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152554454,4.65638312,-1.455659815,1.455659815,1,0.779086179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242781504,104.0507653,0.242781504,75.94923466,0,0.844053504,0,0,0,1,20,0% -2018-01-09 05:00:00,135.1526471,276.2930204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358858684,4.822222907,-0.891775964,0.891775964,1,0.682656361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449985752,116.7427698,0.449985752,63.25723018,0,0.938885371,0,0,0,1,21,0% -2018-01-09 06:00:00,146.7030677,288.6992308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560451555,5.038752125,-0.512592657,0.512592657,1,0.617812197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638893228,129.7093397,0.638893228,50.29066032,0,0.971739662,0,0,0,1,22,0% -2018-01-09 07:00:00,157.1306797,308.6296854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742447717,5.386604179,-0.219567842,0.219567842,1,0.567702002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796633247,142.8097933,0.796633247,37.19020673,0,0.987235861,0,0,0,1,23,0% -2018-01-10 08:00:00,163.7038918,346.2913909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85717191,6.043924942,0.032036805,-0.032036805,1,0.524675073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.912456881,155.8471134,0.912456881,24.15288656,0,0.99520289,0,0,0,1,0,0% -2018-01-10 09:00:00,161.5324797,33.56842073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.819273619,0.585879466,0.268697165,-0.268697165,1,0.484203768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978468934,168.0888765,0.978468934,11.91112347,0,0.998899757,0,0,0,1,1,0% -2018-01-10 10:00:00,152.6470562,61.78917268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664193724,1.078424505,0.512006452,-0.512006452,1,0.442595429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990165721,171.9579744,0.990165721,8.042025613,0,0.999503402,0,0,0,1,2,0% -2018-01-10 11:00:00,141.5353406,77.41090734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470257702,1.35107521,0.787793167,-0.787793167,1,0.395433124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946742033,161.2165011,0.946742033,18.78349888,0,0.997187303,0,0,0,1,3,0% -2018-01-10 12:00:00,129.7960289,88.16296554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26536806,1.538734027,1.14059468,-1.14059468,1,0.335100512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851146411,148.3365791,0.851146411,31.66342087,0,0.9912557,0,0,0,1,4,0% -2018-01-10 13:00:00,117.9767636,97.02961513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059082966,1.693486256,1.676938303,-1.676938303,1,0.24338035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709880899,135.2252258,0.709880899,44.77477422,0,0.97956565,0,0,0,1,5,0% -2018-01-10 14:00:00,106.3675882,105.3206849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856464632,1.838192721,2.778089857,-2.778089857,1,0.055072344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532558837,122.1785087,0.532558837,57.82149129,0,0.95611366,0,0,0,1,6,0% -2018-01-10 15:00:00,95.21335757,113.7926088,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661786581,1.986055688,7.911355927,-7.911355927,1,0,#DIV/0!,0,0,0.451383786,1,0.125733791,0,0.948269929,0.987031892,0.724496596,1,0,0,0.063598943,0.312029739,0.835528811,0.560025407,0.961238037,0.922476074,0,0,0,0,0,0,-0.331250697,109.3447053,0.331250697,70.6552947,0,0.899056921,0,0,0,1,7,0% -2018-01-10 16:00:00,84.64098107,123.0218263,33.80956019,172.1258697,17.73365648,17.45379205,0,17.45379205,17.1989213,0.254870746,28.88231177,20.1500573,8.732254474,0.534735173,8.197519301,1.477263802,2.147135921,-6.412268354,6.412268354,0.37328384,0.37328384,0.524516036,0.178920924,5.75471196,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.53225735,0.387413813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129627601,5.531648027,16.66188495,5.91906184,0,20.1500573,-0.117065827,96.72279318,0.117065827,83.27720682,0,0.622889875,16.66188495,18.47032851,28.75034555,1,8,73% -2018-01-10 17:00:00,75.43010208,133.5294593,184.7884052,528.9628026,51.72204221,98.54918507,46.99374021,51.55544486,50.16243181,1.393013053,46.36369865,0,46.36369865,1.559610407,44.80408824,1.316503636,2.330528713,-1.714906142,1.714906142,0.823419912,0.823419912,0.279898742,1.215883721,39.10700005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.21803747,1.129932431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880903617,37.59113595,49.09894109,38.72106838,46.99374021,0,0.088841295,84.90304887,-0.088841295,95.09695113,0.487198656,0,71.99422818,38.72106838,97.33639301,1,9,35% -2018-01-10 18:00:00,67.76953802,145.7608276,325.2346088,678.8468974,68.40443687,257.2707385,188.4771919,68.79354657,66.34179071,2.451755861,80.91954251,0,80.91954251,2.062646157,78.85689635,1.182801571,2.544006362,-0.601816578,0.601816578,0.633070386,0.633070386,0.210323364,1.741345518,56.0076577,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.77025266,1.494380119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2615989,53.83669094,65.03185156,55.33107106,188.4771919,0,0.277643151,73.88040915,-0.277643151,106.1195909,0.86991272,0,228.9905582,55.33107106,265.2036376,1,10,16% -2018-01-10 19:00:00,62.35083325,159.8971184,422.9859434,744.9410805,77.29131581,402.5907811,324.4414369,78.14934417,74.96069746,3.188646712,104.8884575,0,104.8884575,2.330618346,102.5578391,1.088227332,2.79073118,-0.003427541,0.003427541,0.530739834,0.530739834,0.182727859,1.965758413,63.22554783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.05507367,1.688525058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424185279,60.77480147,73.47925895,62.46332653,324.4414369,0,0.435526306,64.18121173,-0.435526306,115.8187883,0.935196372,0,376.8957137,62.46332653,417.7767116,1,11,11% -2018-01-10 20:00:00,59.81832477,175.532758,467.4950458,768.92805,80.92146519,506.1443006,424.1387411,82.00555957,78.48138445,3.524175126,115.7896671,0,115.7896671,2.440080744,113.3495863,1.04402672,3.063624573,0.460446711,-0.460446711,0.451412665,0.451412665,0.173095878,1.925506633,61.93091219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43929192,1.767830193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395023001,59.53034845,76.83431492,61.29817865,424.1387411,0,0.551597436,56.52332706,-0.551597436,123.4766729,0.959354183,0,483.7335905,61.29817865,523.8520225,1,12,8% -2018-01-10 21:00:00,60.54599534,191.5540737,454.7984985,762.4009278,79.90712647,552.0267367,471.1006417,80.92609497,77.49763178,3.428463189,112.6806561,0,112.6806561,2.409494689,110.2711614,1.056726968,3.343249282,0.926669899,-0.926669899,0.371683804,0.371683804,0.175697868,1.652785374,53.15925903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.49367143,1.7456707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197437377,51.09870179,75.69110881,52.84437249,471.1006417,0,0.617917194,51.83580406,-0.617917194,128.1641959,0.969083009,0,532.2267363,52.84437249,566.8123212,1,13,6% -2018-01-10 22:00:00,64.42075918,206.6289795,385.9942772,722.3871044,74.09716357,529.8584894,455.0858408,74.77264861,71.8628607,2.909787906,95.82308427,0,95.82308427,2.234302871,93.5887814,1.124354354,3.606356022,1.518615229,-1.518615229,0.27045519,0.27045519,0.19196441,1.194473258,38.41836595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.07731514,1.618744824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.865391809,36.92919467,69.94270695,38.54793949,455.0858408,0,0.629975034,50.95171938,-0.629975034,129.0482806,0.970631775,0,511.6634845,38.54793949,536.89234,1,14,5% -2018-01-10 23:00:00,70.91335936,219.9359536,267.5500854,627.6556814,62.3082083,430.8871215,368.4408301,62.44629148,60.42938592,2.016905557,66.74943817,0,66.74943817,1.878822373,64.8706158,1.237671605,3.838606534,2.501202505,-2.501202505,0.10242287,0.10242287,0.232884277,0.628174254,20.20424334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.08702429,1.361200413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455110109,19.4210872,58.5421344,20.78228762,368.4408301,0,0.587011065,54.05481004,-0.587011065,125.94519,0.96482273,0,414.0222219,20.78228762,427.6238135,1,15,3% -2018-01-10 00:00:00,79.34560952,231.3676932,115.2786732,407.8406216,39.87532043,240.2980308,200.7560791,39.54195173,38.6729324,0.869019332,29.153037,0,29.153037,1.202388035,27.95064897,1.384842133,4.038128028,5.036944437,-5.036944437,0,0,0.345903707,0.300597009,9.668233099,0.248806282,1,0.195984645,0,0.939432647,0.97819461,0.724496596,1,37.45668375,0.871126039,0.03807663,0.312029739,0.897701466,0.622198061,0.961238037,0.922476074,0.207635893,9.293473404,37.66431965,10.16459944,150.8067055,0,0.492241499,60.51198441,-0.492241499,119.4880156,0.948423843,0,180.6929948,10.16459944,187.3455218,1,16,4% -2018-01-10 01:00:00,88.88945727,241.2576031,1.045013542,8.391028373,0.882383551,3.852500903,2.988846717,0.863654185,0.855776432,0.007877753,0.279982752,0,0.279982752,0.02660712,0.253375632,1.5514137,4.21073952,50.98678846,-50.98678846,0,0,0.844375231,0.00665178,0.213944108,0.891175422,1,0.01961041,0,0.959462651,0.998224614,0.724496596,1,0.824695406,0.019276768,0.107010746,0.312029739,0.741699939,0.466196535,0.961238037,0.922476074,0.004734194,0.205651214,0.8294296,0.224927982,0.325259982,0,0.35619552,69.13326714,-0.35619552,110.8667329,0.909627656,0,1.125295075,0.224927982,1.272505941,1,17,13% -2018-01-10 02:00:00,100.0601646,250.0977407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746379323,4.365029026,-5.636655794,5.636655794,1,0.505921399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.172613474,80.06019315,-0.172613474,99.93980685,0.760335475,0,0,0,0,1,18,0% -2018-01-10 03:00:00,111.4445521,258.4295349,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945074368,4.510446269,-2.518366973,2.518366973,1,0.960819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028648608,91.64166896,0.028648608,88.35833104,0,0,0,0,0,1,19,0% -2018-01-10 04:00:00,123.1730496,266.8867898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149775266,4.658053213,-1.463769058,1.463769058,1,0.780472941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.240237054,103.9005319,0.240237054,76.09946812,0,0.841872239,0,0,0,1,20,0% -2018-01-10 05:00:00,134.9927333,276.4050628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356067662,4.824178414,-0.89589969,0.89589969,1,0.68336156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44773758,116.5986218,0.44773758,63.4013782,0,0.938327444,0,0,0,1,21,0% -2018-01-10 06:00:00,146.5378332,288.8225695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557567667,5.040904791,-0.51492964,0.51492964,1,0.618211844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637013608,129.5694905,0.637013608,50.43050951,0,0.971508741,0,0,0,1,22,0% -2018-01-10 07:00:00,156.9547569,308.7120744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739377284,5.38804214,-0.220930485,0.220930485,1,0.567935028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795168944,142.6712157,0.795168944,37.32878429,0,0.987120281,0,0,0,1,23,0% -2018-01-11 08:00:00,163.5351017,346.0796414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.854225968,6.040229217,0.031301628,-0.031301628,1,0.524800796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911425947,155.7031567,0.911425947,24.29684331,0,0.995140908,0,0,0,1,0,0% -2018-01-11 09:00:00,161.4401593,33.08453395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817662325,0.577434049,0.26844535,-0.26844535,1,0.484246831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977859488,167.9208597,0.977859488,12.0791403,0,0.998867909,0,0,0,1,1,0% -2018-01-11 10:00:00,152.6143752,61.40533487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663623334,1.071725272,0.51221515,-0.51221515,1,0.44255974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989936773,171.8647457,0.989936773,8.135254346,0,0.999491724,0,0,0,1,2,0% -2018-01-11 11:00:00,141.5261429,77.12247209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470097171,1.346041065,0.788558884,-0.788558884,1,0.395302178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946826314,161.231504,0.946826314,18.76849602,0,0.997192004,0,0,0,1,3,0% -2018-01-11 12:00:00,129.7933526,87.92887781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265321349,1.534648425,1.142222443,-1.142222443,1,0.334822148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851455002,148.3702778,0.851455002,31.62972218,0,0.991276991,0,0,0,1,4,0% -2018-01-11 13:00:00,117.9719073,96.8257735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058998207,1.689928548,1.680315182,-1.680315182,1,0.24280287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710309346,135.2600902,0.710309346,44.73990984,0,0.979608134,0,0,0,1,5,0% -2018-01-11 14:00:00,106.3547944,105.1332488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856241338,1.834921345,2.786816053,-2.786816053,1,0.053580077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532994331,122.2079939,0.532994331,57.79200611,0,0.956190372,0,0,0,1,6,0% -2018-01-11 15:00:00,95.18777462,113.6131813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661340075,1.982924087,7.974416756,-7.974416756,1,0,#DIV/0!,0,0,0.454610472,1,0.124749826,0,0.948385772,0.987147735,0.724496596,1,0,0,0.06397254,0.312029739,0.834657109,0.559153705,0.961238037,0.922476074,0,0,0,0,0,0,-0.331579829,109.3646927,0.331579829,70.63530725,0,0.89920675,0,0,0,1,7,0% -2018-01-11 16:00:00,84.59878601,122.8456061,34.21610787,172.7953416,17.95098478,17.66763183,0,17.66763183,17.40969635,0.257935474,29.0886976,20.25131768,8.837379917,0.541288423,8.296091494,1.476527359,2.144060298,-6.387836696,6.387836696,0.377461899,0.377461899,0.524635498,0.181603981,5.841008277,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73486235,0.39216162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.131571466,5.61459933,16.86643381,6.00676095,0,20.25131768,-0.117198285,96.73043506,0.117198285,83.26956494,0,0.623372597,16.86643381,18.63087744,29.05997048,1,8,72% -2018-01-11 17:00:00,75.36463463,133.3553185,185.7053173,528.864634,52.07887719,98.99038574,47.08195373,51.90843202,50.50850689,1.399925124,46.59677449,0,46.59677449,1.570370298,45.02640419,1.315361014,2.327489383,-1.717303874,1.717303874,0.823829948,0.823829948,0.280438266,1.222463296,39.3186218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.55069801,1.137727935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885670497,37.79455483,49.43636851,38.93228277,47.08195373,0,0.089024583,84.89250542,-0.089024583,95.10749458,0.488357383,0,72.42918822,38.93228277,97.90958864,1,9,35% -2018-01-11 18:00:00,67.67680875,145.5928353,326.6085988,678.6404221,68.84018669,258.0264948,188.7999801,69.22651464,66.76440107,2.462113578,81.26582173,0,81.26582173,2.075785622,79.19003611,1.18118314,2.541074344,-0.605965167,0.605965167,0.633779836,0.633779836,0.210772732,1.750486578,56.3016656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17648181,1.503899617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.268221567,54.11930251,65.44470338,55.62320213,188.7999801,0,0.278203263,73.84700091,-0.278203263,106.1529991,0.870275293,0,229.7526614,55.62320213,266.1569347,1,10,16% -2018-01-11 19:00:00,62.22841376,159.7461979,424.8170448,744.7976419,77.78014227,403.7468331,325.1095988,78.63723433,75.434784,3.202450327,105.3471691,0,105.3471691,2.345358268,103.0018109,1.086090708,2.788097121,-0.008411722,0.008411722,0.531592179,0.531592179,0.183090917,1.977043586,63.58851775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.51078368,1.699204081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.432361348,61.12370197,73.94314503,62.82290605,325.1095988,0,0.436507288,64.1187562,-0.436507288,115.8812438,0.935454375,0,378.0683417,62.82290605,419.1846772,1,11,11% -2018-01-11 20:00:00,59.66831442,175.4146687,469.7551552,768.915978,81.44872654,507.7563108,425.2223511,82.5339597,78.99274692,3.541212785,116.3535556,0,116.3535556,2.455979619,113.897576,1.041408546,3.061563524,0.454290281,-0.454290281,0.452465476,0.452465476,0.173385487,1.938459937,62.34753498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93083297,1.779348873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404407625,59.93082212,77.3352406,61.710171,425.2223511,0,0.553015366,56.42587337,-0.553015366,123.5741266,0.959586599,0,485.3729103,61.710171,525.760983,1,12,8% -2018-01-11 21:00:00,60.37593419,191.480933,457.4270155,762.6104042,80.46332789,554.1194942,472.6341545,81.48533974,78.03706168,3.448278061,113.334742,0,113.334742,2.426266214,110.9084758,1.053758841,3.341972736,0.918365912,-0.918365912,0.373103869,0.373103869,0.175904188,1.666820112,53.61066446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01219197,1.757821613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207605497,51.53260986,76.21979747,53.29043148,472.6341545,0,0.619758335,51.70151103,-0.619758335,128.298489,0.969323392,0,534.3551395,53.29043148,569.2326611,1,13,7% -2018-01-11 22:00:00,64.24074124,206.6015454,388.8968464,723.0227545,74.6778085,532.4500473,457.0923816,75.35766574,72.42599704,2.931668699,96.54435435,0,96.54435435,2.251811458,94.29254289,1.121212449,3.605877208,1.50576174,-1.50576174,0.272653266,0.272653266,0.192024721,1.208790974,38.87887292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.61862321,1.631429736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.875764946,37.37185148,70.49438816,39.00328121,457.0923816,0,0.632196399,50.78764461,-0.632196399,129.2123554,0.970910654,0,514.2902511,39.00328121,539.8171186,1,14,5% -2018-01-11 23:00:00,70.73188221,219.9458825,270.5828395,629.2907188,62.92372128,434.0596,370.9934933,63.06610666,61.02633892,2.039767739,67.50332449,0,67.50332449,1.89738236,65.60594213,1.234504231,3.838779826,2.476046679,-2.476046679,0.10672477,0.10672477,0.232548825,0.641414908,20.63010829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.66083822,1.374647061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.464702917,19.8304448,59.12554113,21.20509186,370.9934933,0,0.589542293,53.87546535,-0.589542293,126.1245347,0.965188443,0,417.2041732,21.20509186,431.0824817,1,15,3% -2018-01-11 00:00:00,79.16823231,231.4049167,118.1026407,412.382087,40.60535938,244.3930823,204.1218167,40.27126557,39.38095798,0.890307592,29.85975398,0,29.85975398,1.224401403,28.63535258,1.381746317,4.038777701,4.953596164,-4.953596164,0,0,0.343814153,0.306100351,9.845239495,0.240676156,1,0.199196391,0,0.939002276,0.977764239,0.724496596,1,38.1379043,0.887074649,0.036959854,0.312029739,0.900539657,0.625036253,0.961238037,0.922476074,0.211620443,9.463618685,38.34952474,10.35069333,154.9945626,0,0.494982258,60.33141956,-0.494982258,119.6685804,0.948986278,0,185.4372379,10.35069333,192.2115597,1,16,4% -2018-01-11 01:00:00,88.73431956,241.3147095,1.371969522,10.43265572,1.141527866,4.860393802,3.742944727,1.117449075,1.107106589,0.010342486,0.367071172,0,0.367071172,0.034421277,0.332649895,1.548706036,4.211736214,44.74236634,-44.74236634,0,0,0.832035878,0.008605319,0.276776647,0.876866118,1,0.022346461,0,0.959207582,0.997969545,0.724496596,1,1.067229155,0.024938098,0.105802971,0.312029739,0.744106026,0.468602622,0.961238037,0.922476074,0.006111345,0.266048241,1.0733405,0.290986339,0.460883313,0,0.358771997,68.97520069,-0.358771997,111.0247993,0.910635723,0,1.493037308,0.290986339,1.683482048,1,17,13% -2018-01-11 02:00:00,99.89208839,250.1707626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743445839,4.3663035,-5.734391238,5.734391238,1,0.489207654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175501172,79.89217548,-0.175501172,100.1078245,0.765101617,0,0,0,0,1,18,0% -2018-01-11 03:00:00,111.2808311,258.5173848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942216897,4.511979538,-2.539089041,2.539089041,1,0.964363489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025867795,91.48228085,0.025867795,88.51771915,0,0,0,0,0,1,19,0% -2018-01-11 04:00:00,123.011724,266.9904943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146959603,4.659863198,-1.471995355,1.471995355,1,0.781879721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.237668496,103.7489738,0.237668496,76.25102616,0,0.839622937,0,0,0,1,20,0% -2018-01-11 05:00:00,134.8306412,276.5263448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353238622,4.826295186,-0.900034203,0.900034203,1,0.684068603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445471851,116.4535316,0.445471851,63.54646842,0,0.937759462,0,0,0,1,21,0% -2018-01-11 06:00:00,146.3699173,288.9571664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554636984,5.043253951,-0.51723569,0.51723569,1,0.618606202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635120273,129.4289054,0.635120273,50.57109457,0,0.971274754,0,0,0,1,22,0% -2018-01-11 07:00:00,156.7748719,308.8088728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.736237699,5.38973159,-0.222238791,0.222238791,1,0.568158761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793691792,142.5318662,0.793691792,37.46813383,0,0.987003254,0,0,0,1,23,0% -2018-01-12 08:00:00,163.3596684,345.8840337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.851164079,6.036815219,0.030639744,-0.030639744,1,0.524913985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91038,155.5579176,0.91038,24.44208238,0,0.99507788,0,0,0,1,0,0% -2018-01-12 09:00:00,161.3394679,32.60089719,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815904928,0.568992995,0.268287944,-0.268287944,1,0.484273749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977229978,167.7496952,0.977229978,12.25030477,0,0.998834971,0,0,0,1,1,0% -2018-01-12 10:00:00,152.5744584,61.01400544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662926654,1.064895285,0.512547563,-0.512547563,1,0.442502894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989680176,171.7615033,0.989680176,8.238496656,0,0.999478628,0,0,0,1,2,0% -2018-01-12 11:00:00,141.510628,76.82669379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469826385,1.34087876,0.789495798,-0.789495798,1,0.395141957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946873349,161.2398817,0.946873349,18.76011832,0,0.997194627,0,0,0,1,3,0% -2018-01-12 12:00:00,129.7847823,87.68848672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26517177,1.530452809,1.144110891,-1.144110891,1,0.334499204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851715401,148.3987389,0.851715401,31.60126108,0,0.991294944,0,0,0,1,4,0% -2018-01-12 13:00:00,117.9612798,96.61651287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058812722,1.686276261,1.684161492,-1.684161492,1,0.242145112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710678063,135.2901112,0.710678063,44.70988879,0,0.979644655,0,0,0,1,5,0% -2018-01-12 14:00:00,106.3361674,104.9410791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855916234,1.83156735,2.796742462,-2.796742462,1,0.051882561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533358762,122.232675,0.533358762,57.76732495,0,0.95625447,0,0,0,1,6,0% -2018-01-12 15:00:00,95.156171,113.4295915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660788488,1.979719841,8.048014373,-8.048014373,1,0,#DIV/0!,0,0,0.458328633,1,0.123620652,0,0.948518437,0.9872804,0.724496596,1,0,0,0.064401865,0.312029739,0.833656752,0.558153348,0.961238037,0.922476074,0,0,0,0,0,0,-0.331827551,109.379738,0.331827551,70.62026198,0,0.899319323,0,0,0,1,7,0% -2018-01-12 16:00:00,84.55042421,122.6657886,34.70164419,173.7690768,18.19884733,17.91168059,0,17.91168059,17.65008494,0.261595652,29.33575321,20.37317542,8.962577789,0.548762394,8.413815396,1.475683287,2.140921891,-6.356997701,6.356997701,0.382735678,0.382735678,0.52443761,0.184804851,5.943959269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.965933,0.397576486,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.133890485,5.713559739,17.09982348,6.111136225,0,20.37317542,-0.117242813,96.73300406,0.117242813,83.26699594,0,0.623534628,17.09982348,18.81451658,29.41354829,1,8,72% -2018-01-12 17:00:00,75.29257223,133.1782739,186.741712,528.9374944,52.45329525,99.51551663,47.23614386,52.27937277,50.87163487,1.407737905,46.85935049,0,46.85935049,1.581660384,45.2776901,1.314103288,2.324399372,-1.719025014,1.719025014,0.82412428,0.82412428,0.280886871,1.229694903,39.55121512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.89975043,1.145907564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890909771,38.01813238,49.7906602,39.16403994,47.23614386,0,0.08930383,84.87644181,-0.08930383,95.12355819,0.490113596,0,72.94173653,39.16403994,98.57381739,1,9,35% -2018-01-12 18:00:00,67.57716273,145.4229338,328.1077803,678.5344217,69.28838627,258.8907466,189.2182457,69.67250082,67.19908578,2.473415041,81.64283053,0,81.64283053,2.089300493,79.55353003,1.179443989,2.538109002,-0.609936137,0.609936137,0.634458912,0.634458912,0.211175688,1.76021151,56.61445285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59431729,1.513691095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.275267247,54.41996551,65.86958454,55.93365661,189.2182457,0,0.278863149,73.80763437,-0.278863149,106.1923656,0.870700583,0,230.6220215,55.93365661,267.2294811,1,10,16% -2018-01-12 19:00:00,62.09889789,159.5948288,426.7714224,744.725785,78.27936412,405.0197346,325.8835989,79.13613572,75.91895247,3.217183251,105.836084,0,105.836084,2.360411648,103.4756723,1.08383023,2.785455232,-0.013355141,0.013355141,0.532437553,0.532437553,0.183422226,1.98885914,63.96854659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.97618483,1.710110204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440921676,61.48900014,74.41710651,63.19911035,325.8835989,0,0.437588714,64.04986744,-0.437588714,115.9501326,0.935737455,0,379.3585961,63.19911035,420.7211498,1,11,11% -2018-01-12 20:00:00,59.51132182,175.2980426,472.1324504,768.9626449,81.98534002,509.4861949,426.4138816,83.07231337,79.51317952,3.559133841,116.9461393,0,116.9461393,2.472160495,114.4739788,1.038668508,3.059528015,0.448114064,-0.448114064,0.453521671,0.453521671,0.173649026,1.951889862,62.77948754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.43109259,1.791071863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414137561,60.34603136,77.84523015,62.13710323,426.4138816,0,0.554531334,56.32155967,-0.554531334,123.6784403,0.95983377,0,487.1316736,62.13710323,527.7991649,1,12,8% -2018-01-12 21:00:00,60.19939982,191.4112406,460.1636203,762.8737006,81.02832105,556.3265731,474.2726471,82.05392595,78.5850182,3.468907743,114.0153002,0,114.0153002,2.443302842,111.5719973,1.050677735,3.340756373,0.91000437,-0.91000437,0.374533777,0.374533777,0.176085891,1.68127397,54.07555021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.53890862,1.770164592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218077268,51.97947572,76.75698589,53.74964031,474.2726471,0,0.621692223,51.56018483,-0.621692223,128.4398152,0.969574352,0,536.5995803,53.74964031,571.7776449,1,13,7% -2018-01-12 22:00:00,64.05507984,206.579098,391.8962187,723.7122551,75.26710516,535.149187,459.1973835,75.95180346,72.99752423,2.954279234,97.28935637,0,97.28935637,2.269580927,95.01977545,1.117972046,3.605485425,1.492825423,-1.492825423,0.274865507,0.274865507,0.192058769,1.223467313,39.35091443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16799689,1.644303655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886397904,37.82559574,71.05439479,39.46989939,459.1973835,0,0.634502705,50.61688922,-0.634502705,129.3831108,0.971198129,0,517.0260347,39.46989939,542.8582945,1,14,5% -2018-01-12 23:00:00,70.54570703,219.9617003,273.6998216,630.9816786,63.5483625,437.3303894,373.6349796,63.69540977,61.63214491,2.063264866,68.27790813,0,68.27790813,1.916217598,66.36169053,1.231254861,3.839055899,2.450847647,-2.450847647,0.111034058,0.111034058,0.232182696,0.654955716,21.06562723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24316198,1.388293127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474513187,20.24908216,59.71767516,21.63737529,373.6349796,0,0.592148698,53.69036493,-0.592148698,126.3096351,0.96556175,0,420.4853198,21.63737529,434.6465492,1,15,3% -2018-01-12 00:00:00,78.98702706,231.4484705,121.0005649,416.9711009,41.34605383,248.57441,207.5629389,41.01147113,40.09931776,0.912153369,30.58472392,0,30.58472392,1.246736074,29.33798785,1.378583689,4.039537859,4.871343236,-4.871343236,0,0,0.341701329,0.311684018,10.02482944,0.232478481,1,0.20246939,0,0.938561363,0.977323326,0.724496596,1,38.82865074,0.903256041,0.035825917,0.312029739,0.90343153,0.627928126,0.961238037,0.922476074,0.215678091,9.636247371,39.04432883,10.53950341,159.3090221,0,0.497787349,60.14628017,-0.497787349,119.8537198,0.949555503,0,190.3170874,10.53950341,197.2149816,1,16,4% -2018-01-12 01:00:00,88.57512179,241.3783918,1.76640703,12.83140655,1.447338029,6.054504442,4.637493072,1.41701137,1.403695447,0.013315922,0.471928417,0,0.471928417,0.043642582,0.428285835,1.545927511,4.21284768,39.74841724,-39.74841724,0,0,0.819368359,0.010910645,0.350923862,0.862395913,1,0.025152929,0,0.95894408,0.997706043,0.724496596,1,1.353552476,0.031618902,0.104569543,0.312029739,0.746575333,0.471071929,0.961238037,0.922476074,0.007731992,0.337321364,1.361284468,0.368940266,0.638138002,0,0.361417359,68.81273355,-0.361417359,111.1872664,0.911655787,0,1.94304667,0.368940266,2.184510696,1,17,12% -2018-01-12 02:00:00,99.72148274,250.2506157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740468209,4.367697199,-5.837006481,5.837006481,1,0.471659414,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178430075,79.72167053,-0.178430075,100.2783295,0.769778182,0,0,0,0,1,18,0% -2018-01-12 03:00:00,111.1149503,258.6124779,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939321732,4.513639225,-2.560348241,2.560348241,1,0.967999026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023056077,91.32113296,0.023056077,88.67886704,0,0,0,0,0,1,19,0% -2018-01-12 04:00:00,122.8484039,267.1021479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144109129,4.66181192,-1.480335339,1.480335339,1,0.783305942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235077573,103.5961955,0.235077573,76.40380451,0,0.837304253,0,0,0,1,20,0% -2018-01-12 05:00:00,134.6664564,276.656759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350373057,4.828571343,-0.904176631,0.904176631,1,0.684777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443189951,116.3075904,0.443189951,63.69240964,0,0.937181557,0,0,0,1,21,0% -2018-01-12 06:00:00,146.1993985,289.1028391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.551660868,5.04579642,-0.519508665,0.519508665,1,0.618994904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633214185,129.2876594,0.633214185,50.71234058,0,0.971037777,0,0,0,1,22,0% -2018-01-12 07:00:00,156.5911122,308.9197707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.733030487,5.391667123,-0.223491141,0.223491141,1,0.568372926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792202297,142.3917985,0.792202297,37.60820153,0,0.986884808,0,0,0,1,23,0% -2018-01-13 08:00:00,163.1777218,345.7045474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.847988512,6.033682592,0.030052421,-0.030052421,1,0.525014423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909319078,155.4114221,0.909319078,24.58857787,0,0.995013801,0,0,0,1,0,0% -2018-01-13 09:00:00,161.2304158,32.11845091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81400161,0.560572719,0.268225995,-0.268225995,1,0.484284343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976580006,167.575404,0.976580006,12.42459603,0,0.998800918,0,0,0,1,1,0% -2018-01-13 10:00:00,152.5272233,60.61573589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662102245,1.05794417,0.513004628,-0.513004628,1,0.442424731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989395152,171.6483092,0.989395152,8.351690771,0,0.999464074,0,0,0,1,2,0% -2018-01-13 11:00:00,141.4887078,76.52387804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469443805,1.335593628,0.790604898,-0.790604898,1,0.394952289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946882063,161.2414342,0.946882063,18.75856582,0,0.997195113,0,0,0,1,3,0% -2018-01-13 12:00:00,129.7702421,87.44199843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264917996,1.526150777,1.146261454,-1.146261454,1,0.334131436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85192634,148.421811,0.85192634,31.578189,0,0.99130948,0,0,0,1,4,0% -2018-01-13 13:00:00,117.9448205,96.40199324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058525453,1.682532188,1.688480612,-1.688480612,1,0.241406499,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710985705,135.3151717,0.710985705,44.6848283,0,0.979675098,0,0,0,1,5,0% -2018-01-13 14:00:00,106.3116629,104.7443109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85548855,1.828133099,2.807885085,-2.807885085,1,0.04997706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533650831,122.2524603,0.533650831,57.74753969,0,0.956305777,0,0,0,1,6,0% -2018-01-13 15:00:00,95.11851991,113.2419598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660131352,1.976445049,8.132624083,-8.132624083,1,0,#DIV/0!,0,0,0.46254097,1,0.122347397,0,0.948667678,0.987429642,0.724496596,1,0,0,0.064886733,0.312029739,0.832528739,0.557025335,0.961238037,0.922476074,0,0,0,0,0,0,-0.331992732,109.3897709,0.331992732,70.61022905,0,0.899394294,0,0,0,1,7,0% -2018-01-13 16:00:00,84.49588178,122.4824838,35.26726887,175.0440687,18.47751479,18.18620911,0,18.18620911,17.92034954,0.26585957,29.62301983,20.51489694,9.108122893,0.557165246,8.550957647,1.474731341,2.137722618,-6.319986323,6.319986323,0.389064996,0.389064996,0.523928146,0.18853459,6.063920509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.22572161,0.403664324,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.136592669,5.828871046,17.36231428,6.23253537,0,20.51489694,-0.117198469,96.73044571,0.117198469,83.26955429,0,0.623373268,17.36231428,19.02097372,29.81116116,1,8,72% -2018-01-13 17:00:00,75.21392392,132.9984267,187.8974264,529.1786559,52.84532117,100.1247888,47.45649891,52.66828993,51.25183976,1.416450169,47.15138785,0,47.15138785,1.593481412,45.55790644,1.312730616,2.321260446,-1.720070108,1.720070108,0.824303002,0.824303002,0.281245583,1.237576602,39.80471765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.26521784,1.154471858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896620035,38.26180865,50.16183787,39.41628051,47.45649891,0,0.089679541,84.85482841,-0.089679541,95.14517159,0.492459233,0,73.53222894,39.41628051,99.3293962,1,9,35% -2018-01-13 18:00:00,67.4706279,145.2512162,329.73141,678.5270921,69.74900535,259.8631715,189.7317014,70.13147014,67.6458155,2.485654648,82.05038772,0,82.05038772,2.103189858,79.94719786,1.177584605,2.535111965,-0.613723852,0.613723852,0.63510665,0.63510665,0.211532791,1.770515794,56.94587404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02373089,1.523753892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282732666,54.73854017,66.30646355,56.26229406,189.7317014,0,0.279622883,73.76230154,-0.279622883,106.2376985,0.871187738,0,231.5983954,56.26229406,268.4209416,1,10,16% -2018-01-13 19:00:00,61.96233158,159.4431002,428.8478307,744.7239168,78.78890551,406.4086228,326.7626574,79.6459654,76.41312931,3.232836094,106.3548978,0,106.3548978,2.375776201,103.9791216,1.081446698,2.782807068,-0.018250918,0.018250918,0.53327478,0.53327478,0.18372229,2.001198626,64.36542687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.4512064,1.72124177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449861592,61.87049657,74.90106799,63.59173834,326.7626574,0,0.438770194,63.97455902,-0.438770194,116.025441,0.936045131,0,380.7656625,63.59173834,422.3851834,1,11,11% -2018-01-13 20:00:00,59.34741104,175.18297,474.6252468,769.0663753,82.53118789,511.3325155,427.7120219,83.62049366,80.04256807,3.577925593,117.5670059,0,117.5670059,2.488619822,115.0783861,1.035807725,3.057519619,0.441926406,-0.441926406,0.454579823,0.454579823,0.173887058,1.965788649,63.22652032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.93996099,1.80299659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424207185,60.77573627,78.36416818,62.57873286,427.7120219,0,0.556144483,56.21041983,-0.556144483,123.7895802,0.960095305,0,489.0084724,62.57873286,529.9650014,1,12,8% -2018-01-13 21:00:00,60.01647532,191.3450873,463.0062793,763.1888087,81.60194331,558.6459439,476.0142634,82.63168055,79.14134364,3.490336908,114.7218326,0,114.7218326,2.46059967,112.2612329,1.0474851,3.33960178,0.901596454,-0.901596454,0.375971615,0.375971615,0.176243708,1.696138615,54.55364829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.0736698,1.782696085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228846653,52.43904179,77.30251645,54.22173787,476.0142634,0,0.623717562,51.41187828,-0.623717562,128.5881217,0.96983551,0,538.9580526,54.22173787,574.4450956,1,13,7% -2018-01-13 22:00:00,63.86387564,206.5617175,394.9901419,724.4528663,75.86483001,537.9532647,461.3984367,76.554828,73.57722547,2.977602534,98.05753748,0,98.05753748,2.287604536,95.76993294,1.114634903,3.605182078,1.479823672,-1.479823672,0.277088937,0.277088937,0.192067654,1.238494379,39.83423651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72522777,1.657361699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897284961,38.2901833,71.62251273,39.947545,461.3984367,0,0.636892278,50.43952706,-0.636892278,129.5604729,0.971493788,0,519.8682279,39.947545,546.0130972,1,14,5% -2018-01-13 23:00:00,70.35494643,219.983465,276.8987616,632.7242154,64.18179224,440.6961335,376.3622792,64.33385422,62.2464744,2.087379828,69.07262842,0,69.07262842,1.935317842,67.13731058,1.22792546,3.839435765,2.425639193,-2.425639193,0.115344957,0.115344957,0.231787935,0.668790909,21.51061459,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83367885,1.402131188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.484536737,20.67682094,60.31821559,22.07895213,376.3622792,0,0.594828316,53.49960593,-0.594828316,126.5003941,0.965942132,0,423.862398,22.07895213,438.3126306,1,15,3% -2018-01-13 00:00:00,78.8021106,231.498386,123.9706123,421.5994856,42.09674449,252.8376492,211.0757341,41.76191516,40.82737232,0.934542841,31.32748241,0,31.32748241,1.269372167,30.05811025,1.375356287,4.040409049,4.790265405,-4.790265405,0,0,0.339570352,0.317343042,10.20684308,0.22422283,1,0.205801111,0,0.938110124,0.976872087,0.724496596,1,39.52827677,0.919655814,0.034675879,0.312029739,0.906374823,0.630871419,0.961238037,0.922476074,0.219806252,9.811205805,39.74808302,10.73086162,163.7477357,0,0.500654629,59.95668063,-0.500654629,120.0433194,0.950130755,0,195.3298427,10.73086162,202.352977,1,16,4% -2018-01-13 01:00:00,88.4119969,241.4486559,2.235386435,15.61306487,1.80271196,7.45037592,5.685171089,1.765204831,1.748353543,0.016851287,0.596353738,0,0.596353738,0.054358417,0.541995322,1.543080444,4.214074021,35.67015345,-35.67015345,0,0,0.806443097,0.013589604,0.437088386,0.847788407,1,0.028027301,0,0.958672244,0.997434207,0.724496596,1,1.686413335,0.039382488,0.103311918,0.312029739,0.749105684,0.47360228,0.961238037,0.922476074,0.009610172,0.420145982,1.696023507,0.45952847,0.865348949,0,0.364129089,68.64600481,-0.364129089,111.3539952,0.91268606,0,2.48581543,0.45952847,2.786567623,1,17,12% -2018-01-13 02:00:00,99.54845993,250.3372824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737448391,4.369209819,-5.944768911,5.944768911,1,0.453230953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.181397994,79.54880042,-0.181397994,100.4511996,0.774362994,0,0,0,0,1,18,0% -2018-01-13 03:00:00,110.9470142,258.714773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936390693,4.515424612,-2.582147751,2.582147751,1,0.971726962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.020215474,91.15834023,0.020215474,88.84165977,0,0,0,0,0,1,19,0% -2018-01-13 04:00:00,122.6831837,267.2216812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141225493,4.66389817,-1.488785537,1.488785537,1,0.784751011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.23246603,103.4423009,0.23246603,76.55769915,0,0.834914811,0,0,0,1,20,0% -2018-01-13 05:00:00,134.500263,276.7961941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347472434,4.831004943,-0.908324064,0.908324064,1,0.685486253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440893258,116.1608884,0.440893258,63.83911162,0,0.936593866,0,0,0,1,21,0% -2018-01-13 06:00:00,146.0263527,289.2594007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548640649,5.048528935,-0.521746414,0.521746414,1,0.619377581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631296294,129.1458257,0.631296294,50.85417432,0,0.970797888,0,0,0,1,22,0% -2018-01-13 07:00:00,156.4035625,309.0444499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.729757127,5.393843185,-0.224685923,0.224685923,1,0.568577245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790700943,142.251064,0.790700943,37.74893599,0,0.986764967,0,0,0,1,23,0% -2018-01-14 08:00:00,162.9893918,345.5411162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.844701532,6.030830179,0.029540916,-0.029540916,1,0.525101895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908243202,155.2636929,0.908243202,24.73630709,0,0.994948666,0,0,0,1,0,0% -2018-01-14 09:00:00,161.1130232,31.63811009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811952723,0.55218919,0.268260536,-0.268260536,1,0.484278436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975909157,167.3980028,0.975909157,12.60199724,0,0.998765723,0,0,0,1,1,0% -2018-01-14 10:00:00,152.4725935,60.21108946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661148775,1.050881757,0.513587279,-0.513587279,1,0.442325092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989080908,171.5252509,0.989080908,8.474749147,0,0.999448018,0,0,0,1,2,0% -2018-01-14 11:00:00,141.4602981,76.21433971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468947962,1.330191165,0.791887189,-0.791887189,1,0.394733005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946851374,161.235967,0.946851374,18.76403299,0,0.997193402,0,0,0,1,3,0% -2018-01-14 12:00:00,129.7496592,87.18962496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264558756,1.521746029,1.148675648,-1.148675648,1,0.333718585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852086552,148.4393447,0.852086552,31.56065526,0,0.991320515,0,0,0,1,4,0% -2018-01-14 13:00:00,117.9224719,96.18237826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058135396,1.678699183,1.693276284,-1.693276284,1,0.240586391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71123094,135.3351564,0.71123094,44.66484359,0,0.979699346,0,0,0,1,5,0% -2018-01-14 14:00:00,106.2812398,104.543082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854957568,1.824620992,2.820262113,-2.820262113,1,0.047860464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533869262,122.26726,0.533869262,57.73273998,0,0.956344112,0,0,0,1,6,0% -2018-01-14 15:00:00,95.07479748,113.0504077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659368252,1.973101836,8.22880945,-8.22880945,1,0,#DIV/0!,0,0,0.467250732,1,0.120931279,0,0.948833228,0.987595191,0.724496596,1,0,0,0.065426958,0.312029739,0.831274144,0.555770739,0.961238037,0.922476074,0,0,0,0,0,0,-0.332074272,109.3947238,0.332074272,70.60527619,0,0.899431274,0,0,0,1,7,0% -2018-01-14 16:00:00,84.4351472,122.2958019,35.91420767,176.6171652,18.78722174,18.49145415,0,18.49145415,18.22071769,0.270736468,29.94989222,20.67557272,9.274319503,0.566504053,8.70781545,1.473671323,2.134464405,-6.277072803,6.277072803,0.39640364,0.39640364,0.523113914,0.192805867,6.201299461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.5144469,0.410430258,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.139687195,5.96092492,17.65413409,6.371355178,0,20.67557272,-0.117064345,96.72270766,0.117064345,83.27729234,0,0.622884467,17.65413409,19.24984827,30.25277479,1,8,71% -2018-01-14 17:00:00,75.12870161,132.8158777,189.1722581,529.5850944,53.25494961,100.818425,47.74324822,53.07517678,51.64911639,1.426060388,47.47283735,0,47.47283735,1.605833221,45.86700413,1.311243206,2.318074365,-1.720441784,1.720441784,0.824366562,0.824366562,0.281515642,1.246106002,40.07905249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.64709524,1.163420702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902799557,38.52550973,50.5498948,39.68893044,47.74324822,0,0.090152175,84.82763832,-0.090152175,95.17236168,0.495382212,0,74.20105071,39.68893044,100.1766619,1,9,35% -2018-01-14 18:00:00,67.3572349,145.0777755,331.4786833,678.6164822,70.22199723,260.9434054,190.3400341,70.60337126,68.10454493,2.498826332,82.4882968,0,82.4882968,2.117452308,80.37084449,1.175605524,2.532084854,-0.617323211,0.617323211,0.635722176,0.635722176,0.211844685,1.781394543,57.29577201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46467907,1.534086989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.290614282,55.07487541,66.75529335,56.6089624,190.3400341,0,0.28048248,73.71099726,-0.28048248,106.2890027,0.871735746,0,232.6815051,56.6089624,269.7309388,1,10,16% -2018-01-14 19:00:00,61.81876333,159.2911005,431.0449588,744.790358,79.30867895,407.9125759,327.7459473,80.16662863,76.91722966,3.249398974,106.90329,0,106.90329,2.391449288,104.5118407,1.07894096,2.780154173,-0.023092425,0.023092425,0.534102727,0.534102727,0.183991663,2.014055278,64.77894102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93576684,1.732596868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.459176193,62.2679821,75.39494303,64.00057896,327.7459473,0,0.440051276,63.89284722,-0.440051276,116.1071528,0.936376878,0,382.2886698,64.00057896,424.1757687,1,11,11% -2018-01-14 20:00:00,59.17664859,175.0695408,477.2317961,769.2254396,83.08614293,513.293771,429.115407,84.17836403,80.58078916,3.597574862,118.2157279,0,118.2157279,2.505353765,115.7103742,1.032827358,3.055539906,0.435735449,-0.435735449,0.455638539,0.455638539,0.174100183,1.980148264,63.68837488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45731958,1.815120274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.434610677,61.21968844,78.89193026,63.03480872,429.115407,0,0.557853894,56.09249022,-0.557853894,123.9075098,0.960370797,0,491.0018356,63.03480872,532.2568572,1,12,8% -2018-01-14 21:00:00,59.82724615,191.2825639,465.9529015,763.5536894,82.18402394,561.0755172,477.857095,83.21842218,79.70587239,3.512549791,115.4538271,0,115.4538271,2.478151548,112.9756756,1.044182428,3.338510542,0.893153072,-0.893153072,0.377415519,0.377415519,0.176378393,1.711405476,55.04468302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.6163163,1.795412361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239907441,52.91104304,77.85622374,54.7064554,477.857095,0,0.625832999,51.25664652,-0.625832999,128.7433535,0.970106482,0,541.428489,54.7064554,577.23277,1,13,7% -2018-01-14 22:00:00,63.66723157,206.5494838,398.1763131,725.2418498,76.47075266,540.8595884,463.6930898,77.16649856,74.16487732,3.001621238,98.84833237,0,98.84833237,2.30587534,96.54245703,1.111202817,3.604968561,1.466773321,-1.466773321,0.279320679,0.279320679,0.192052491,1.253864051,40.32857799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.29010108,1.670598834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908420236,38.76536314,72.19852131,40.43596197,463.6930898,0,0.639363393,50.25563432,-0.639363393,129.7443657,0.971797212,0,522.8141731,40.43596197,549.2787015,1,14,5% -2018-01-14 23:00:00,70.15971491,220.0112334,280.1773438,634.5140611,64.82366687,444.1534533,379.172364,64.98108931,62.86899414,2.112095165,69.88691352,0,69.88691352,1.95467273,67.93224078,1.224518027,3.839920414,2.40045338,-2.40045338,0.119651985,0.119651985,0.231366555,0.682914444,21.96487601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.43206851,1.416153739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.49476919,21.1134743,60.9268377,22.52962804,379.172364,0,0.597579135,53.30328798,-0.597579135,126.696712,0.966329073,0,427.3321168,22.52962804,442.0773077,1,15,3% -2018-01-14 00:00:00,78.61360119,231.5546926,127.0108751,426.2593506,42.8567794,257.1784537,214.6565027,42.521951,41.56448938,0.957461626,32.08754717,0,32.08754717,1.292290024,30.79525714,1.372066178,4.041391784,4.71043205,-4.71043205,0,0,0.337426062,0.323072506,10.39112234,0.215918506,1,0.209189004,0,0.937648783,0.976410746,0.724496596,1,40.23614321,0.936259723,0.033510796,0.312029739,0.909367255,0.63386385,0.961238037,0.922476074,0.224002365,9.988342043,40.46014557,10.92460177,168.3081913,0,0.503581921,59.76273771,-0.503581921,120.2372623,0.950711289,0,200.4726431,10.92460177,207.6225764,1,16,4% -2018-01-14 01:00:00,88.2450892,241.5255052,2.785516342,18.79827896,2.209834411,9.061370731,6.897172581,2.164198149,2.14319975,0.020998399,0.742015348,0,0.742015348,0.066634661,0.675380687,1.540167355,4.215415294,32.28225421,-32.28225421,0,0,0.793330263,0.016658665,0.535799938,0.833067268,1,0.030966869,0,0.958392194,0.997154157,0.724496596,1,2.067893785,0.048276585,0.10203162,0.312029739,0.751694716,0.476191312,0.961238037,0.922476074,0.01175609,0.51503128,2.079649875,0.563307865,1.151363862,0,0.36690447,68.47516586,-0.36690447,111.5248341,0.913724746,0,3.131679527,0.563307865,3.500353258,1,17,12% -2018-01-14 02:00:00,99.37313212,250.4307424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734388344,4.370841003,-6.057968316,6.057968316,1,0.433872715,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184402725,79.37368803,-0.184402725,100.626312,0.778854332,0,0,0,0,1,18,0% -2018-01-14 03:00:00,110.7771261,258.8242261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933425587,4.517334929,-2.604490783,2.604490783,1,0.975547845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017348008,90.99401752,0.017348008,89.00598248,0,0,0,0,0,1,19,0% -2018-01-14 04:00:00,122.5161567,267.3490218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138310321,4.666120682,-1.4973424,1.4973424,1,0.786214321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229835602,103.2873931,0.229835602,76.71260686,0,0.832453199,0,0,0,1,20,0% -2018-01-14 05:00:00,134.332143,276.9445352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344538186,4.833593984,-0.912473572,0.912473572,1,0.686195861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438583133,116.0135144,0.438583133,63.98648562,0,0.935996528,0,0,0,1,21,0% -2018-01-14 06:00:00,145.8508536,289.42666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.545577613,5.05144816,-0.523946796,0.523946796,1,0.619753869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629367527,129.0034752,0.629367527,50.99652476,0,0.970555164,0,0,0,1,22,0% -2018-01-14 07:00:00,156.2123047,309.1825844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726419049,5.396254088,-0.225821545,0.225821545,1,0.568771448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789188191,142.1097113,0.789188191,37.89028869,0,0.986643756,0,0,0,1,23,0% -2018-01-15 08:00:00,162.7948075,345.3936301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.841305396,6.028256061,0.029106463,-0.029106463,1,0.525176191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907152367,155.1147491,0.907152367,24.88525093,0,0.994882468,0,0,0,1,0,0% -2018-01-15 09:00:00,160.9873199,31.16075854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.809758787,0.543857834,0.26839258,-0.26839258,1,0.484255855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975216994,167.2175045,0.975216994,12.7824955,0,0.998729359,0,0,0,1,1,0% -2018-01-15 10:00:00,152.4104995,59.80063827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660065031,1.043718033,0.514296436,-0.514296436,1,0.442203819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98873664,171.3924394,0.98873664,8.607560591,0,0.999430417,0,0,0,1,2,0% -2018-01-15 11:00:00,141.425319,75.89840165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468337463,1.324677006,0.793343691,-0.793343691,1,0.394483928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946780193,161.2232926,0.946780193,18.77670742,0,0.997189432,0,0,0,1,3,0% -2018-01-15 12:00:00,129.7229643,86.93158325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264092842,1.517242352,1.151355074,-1.151355074,1,0.333260376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852194776,148.4511938,0.852194776,31.54880622,0,0.991327967,0,0,0,1,4,0% -2018-01-15 13:00:00,117.8941797,95.9578346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057641606,1.674780157,1.698552611,-1.698552611,1,0.239684086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71141245,135.3499527,0.71141245,44.65004733,0,0.979717283,0,0,0,1,5,0% -2018-01-15 14:00:00,106.2448605,104.3375317,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854322629,1.821033461,2.833893995,-2.833893995,1,0.045529274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534012807,122.2769872,0.534012807,57.72301281,0,0.956369287,0,0,0,1,6,0% -2018-01-15 15:00:00,95.02498308,112.8550579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658498826,1.969692337,8.337232337,-8.337232337,1,0,#DIV/0!,0,0,0.472461713,1,0.119373603,0,0.949014794,0.987776757,0.724496596,1,0,0,0.066022351,0.312029739,0.829894121,0.554390717,0.961238037,0.922476074,0,0,0,0,0,0,-0.33207111,109.3945317,0.33207111,70.60546827,0,0.89942984,0,0,0,1,7,0% -2018-01-15 16:00:00,84.36821161,122.1058535,36.64379893,178.4850259,19.12816221,18.82761398,0,18.82761398,18.55137754,0.276236435,30.31561181,20.85411385,9.461497965,0.576784666,8.884713299,1.472503077,2.131149179,-6.228558397,6.228558397,0.404700093,0.404700093,0.522002706,0.197632875,6.356552628,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.83228973,0.417878527,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143184345,6.110160169,17.97547407,6.528038696,0,20.85411385,-0.116839571,96.70974008,0.116839571,83.29025992,0,0.62206279,17.97547407,19.50060694,30.7382313,1,8,71% -2018-01-15 17:00:00,75.0369201,132.6307272,190.5659614,530.1535019,53.68214524,101.5966551,48.09665787,53.49999721,52.0634305,1.436566712,47.82363837,0,47.82363837,1.618714745,46.20492363,1.309641316,2.31484288,-1.720144723,1.720144723,0.824315762,0.824315762,0.281698499,1.255280251,40.37412786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.04534972,1.172753322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909446268,38.8091474,50.95479599,39.98190072,48.09665787,0,0.090722136,84.79484763,-0.090722136,95.20515237,0.498866589,0,74.94861166,39.98190072,101.115966,1,9,35% -2018-01-15 18:00:00,67.23701709,144.9027035,333.348733,678.8005017,70.70729899,262.1310395,191.0429029,71.0881366,68.57521304,2.512923556,82.95634564,0,82.95634564,2.132085947,80.82425969,1.173507328,2.52902927,-0.620729665,0.620729665,0.636304714,0.636304714,0.212112098,1.792842507,57.66397788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91710316,1.54468901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298908293,55.42880889,67.21601145,56.9734979,191.0429029,0,0.2814419,73.65371934,-0.2814419,106.3462807,0.872343439,0,233.8710344,56.9734979,271.1590493,1,10,16% -2018-01-15 19:00:00,61.66824409,159.138917,433.3614313,744.9233505,79.83858564,409.5306123,328.832593,80.69801924,77.43115771,3.266861522,107.4809242,0,107.4809242,2.40742793,105.0734963,1.076313903,2.777498071,-0.027873314,0.027873314,0.534920307,0.534920307,0.184230944,2.027422029,65.20886168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.42977403,1.74417334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468860359,62.68123818,75.89863439,64.42541152,328.832593,0,0.441431448,63.80475115,-0.441431448,116.1952488,0.93673213,0,383.9266895,64.42541152,426.0918329,1,11,11% -2018-01-15 20:00:00,58.99910318,174.9578442,479.9502897,769.4380604,83.65006897,515.3683983,430.6226195,84.74577877,81.12771076,3.618068015,118.8918626,0,118.8918626,2.522358215,116.3695044,1.029728606,3.053590433,0.429549097,-0.429549097,0.456696468,0.456696468,0.174289027,1.994960415,64.16478456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98304142,1.827439941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445342029,61.67763155,79.42838345,63.50507149,430.6226195,0,0.559658589,55.96780979,-0.559658589,124.0321902,0.960659818,0,493.1102309,63.50507149,534.6730301,1,12,8% -2018-01-15 21:00:00,59.63179991,191.2237608,469.0013425,763.966281,82.77438474,563.6131474,479.7991855,83.81396186,80.27843164,3.535530227,116.2107585,0,116.2107585,2.495953105,113.7148054,1.040771247,3.337484235,0.884684815,-0.884684815,0.378863676,0.378863676,0.17649072,1.727065763,55.54837168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16668203,1.808309528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.251253266,53.39520774,78.41793529,55.20351727,479.7991855,0,0.628037123,51.09454693,-0.628037123,128.9054531,0.970386872,0,544.008766,55.20351727,580.138364,1,13,7% -2018-01-15 22:00:00,63.4652525,206.5424762,401.4523851,726.0764784,77.08463687,543.8654239,466.0788556,77.78656831,74.76025066,3.026317653,99.66116484,0,99.66116484,2.324386214,97.33677862,1.107677617,3.604846254,1.453690595,-1.453690595,0.281557957,0.281557957,0.192014395,1.26956801,40.83367131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.86239658,1.684009899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.919797701,39.25087805,72.78219428,40.93488795,466.0788556,0,0.641914274,50.06528934,-0.641914274,129.9347107,0.972107979,0,525.8611688,40.93488795,552.6522342,1,14,5% -2018-01-15 23:00:00,69.96012854,220.0450604,283.5332136,636.347038,65.47364038,447.6989563,382.0621947,65.63676168,63.49936855,2.137393129,70.72018209,0,70.72018209,1.974271829,68.74591026,1.221034588,3.840510807,2.375320491,-2.375320491,0.123949962,0.123949962,0.230920532,0.697320025,22.42820903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.03800836,1.43035322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.505205984,21.55884762,61.54321435,22.98920084,382.0621947,0,0.600399109,53.10151292,-0.600399109,126.8984871,0.966722062,0,430.8911668,22.98920084,445.937139,1,15,3% -2018-01-15 00:00:00,78.42161818,231.6174172,130.1193784,430.9431138,43.62551651,261.5925087,218.3015676,43.29094106,42.31004623,0.980894837,32.86442004,0,32.86442004,1.315470284,31.54894976,1.368715442,4.042486535,4.63190269,-4.63190269,0,0,0.335273017,0.328867571,10.57751156,0.207574523,1,0.212630504,0,0.937177573,0.975939536,0.724496596,1,40.95162043,0.953053743,0.032331713,0.312029739,0.912406536,0.636903132,0.961238037,0.922476074,0.228263896,10.16750644,41.17988432,11.12056019,172.9877237,0,0.506567017,59.56457022,-0.506567017,120.4354298,0.951296377,0,205.7424791,11.12056019,213.0206634,1,16,4% -2018-01-15 01:00:00,88.07455087,241.6089403,3.422805322,22.40183972,2.670123624,10.89828276,8.282870665,2.615412097,2.589609545,0.025802552,0.910412857,0,0.910412857,0.080514079,0.829898778,1.5371909,4.21687151,29.4274695,-29.4274695,0,0,0.780098011,0.02012852,0.647402386,0.818255837,1,0.033968784,0,0.958104069,0.996866032,0.724496596,1,2.499358622,0.058332176,0.100730216,0.312029739,0.754339936,0.478836532,0.961238037,0.922476074,0.014175888,0.622307799,2.51353451,0.680639975,1.505363397,0,0.369740645,68.30037693,-0.369740645,111.6996231,0.914770074,0,3.890595897,0.680639975,4.336061147,1,17,11% -2018-01-15 02:00:00,99.19561099,250.5309722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731290015,4.372590344,-6.176919376,6.176919376,1,0.413530885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.187442062,79.19645663,-0.187442062,100.8035434,0.783250907,0,0,0,0,1,18,0% -2018-01-15 03:00:00,110.6053886,258.94079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930428202,4.519369354,-2.627380623,2.627380623,1,0.979462238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014455696,90.82827922,0.014455696,89.17172078,0,0,0,0,0,1,19,0% -2018-01-15 04:00:00,122.3474142,267.4840939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13536521,4.668478135,-1.506002323,1.506002323,1,0.787695255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227188008,103.1315744,0.227188008,76.86842564,0,0.829917961,0,0,0,1,20,0% -2018-01-15 05:00:00,134.1621762,277.1016643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341571707,4.836336404,-0.916622218,0.916622218,1,0.686905321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436260918,115.8655552,0.436260918,64.13444478,0,0.935389688,0,0,0,1,21,0% -2018-01-15 06:00:00,145.6729722,289.6044216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.542472995,5.054550684,-0.526107683,0.526107683,1,0.620123402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627428785,128.8606767,0.627428785,51.13932333,0,0.970309681,0,0,0,1,22,0% -2018-01-15 07:00:00,156.0174177,309.3338415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72301763,5.398894022,-0.226896436,0.226896436,1,0.568955265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787664477,141.9677858,0.787664477,38.03221423,0,0.986521195,0,0,0,1,23,0% -2018-01-16 08:00:00,162.5940972,345.2619385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.837802341,6.025957609,0.028750269,-0.028750269,1,0.525237104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906046546,154.9646061,0.906046546,25.03539392,0,0.994815197,0,0,0,1,0,0% -2018-01-16 09:00:00,160.853345,30.68724429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807420483,0.535593451,0.268623117,-0.268623117,1,0.484216431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974503063,167.0339185,0.974503063,12.96608155,0,0.998691798,0,0,0,1,1,0% -2018-01-16 10:00:00,152.3408791,59.38496081,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658849925,1.036463092,0.515133004,-0.515133004,1,0.442060758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98836153,171.2500073,0.98836153,8.749992654,0,0.999411224,0,0,0,1,2,0% -2018-01-16 11:00:00,141.3836957,75.57639365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467610998,1.319056906,0.794975431,-0.794975431,1,0.394204884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946667434,161.2032314,0.946667434,18.79676864,0,0.997183141,0,0,0,1,3,0% -2018-01-16 12:00:00,129.6900923,86.66809467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263519117,1.512643608,1.154301417,-1.154301417,1,0.332756522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852249759,148.4572153,0.852249759,31.54278472,0,0.991331752,0,0,0,1,4,0% -2018-01-16 13:00:00,117.8598935,95.72853151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057043198,1.670778063,1.704314064,-1.704314064,1,0.238698819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711528943,135.3594508,0.711528943,44.64054916,0,0.97972879,0,0,0,1,5,0% -2018-01-16 14:00:00,106.2024904,104.1278005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85358313,1.817372961,2.848803526,-2.848803526,1,0.042979594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534080253,122.2815579,0.534080253,57.71844211,0,0.956381111,0,0,0,1,6,0% -2018-01-16 15:00:00,94.96905946,112.6560331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657522775,1.966218699,8.458665305,-8.458665305,1,0,#DIV/0!,0,0,0.478178268,1,0.11767576,0,0.949212062,0.987974025,0.724496596,1,0,0,0.066672717,0.312029739,0.828389904,0.5528865,0.961238037,0.922476074,0,0,0,0,0,0,-0.331982229,109.3891329,0.331982229,70.61086706,0,0.899389528,0,0,0,1,7,0% -2018-01-16 16:00:00,84.29506898,121.9127485,37.53364287,181.4994346,19.49162145,19.1868216,0,19.1868216,18.90387714,0.282944454,30.83712812,21.14891755,9.688210565,0.587744303,9.100466262,1.471226497,2.127778862,-6.174770668,6.174770668,0.413898336,0.413898336,0.519310676,0.203229717,6.536566305,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.17112576,0.425818747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.147239238,6.283196163,18.31836499,6.70901491,0,21.14891755,-0.116523325,96.69149589,0.116523325,83.30850411,0,0.620901361,18.31836499,19.84040661,31.30351431,1,8,71% -2018-01-16 17:00:00,74.93859723,132.4430748,192.2388515,531.9131911,54.0190491,102.4507759,48.61142282,53.83935312,52.39017546,1.449177664,48.23940884,0,48.23940884,1.628873639,46.6105352,1.307925258,2.311567727,-1.719185601,1.719185601,0.824151742,0.824151742,0.280999645,1.265950945,40.71733407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.35942941,1.180113407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91717715,39.13905027,51.27660656,40.31916367,48.61142282,0,0.091389767,84.75643557,-0.091389767,95.24356443,0.502892797,0,75.72294097,40.31916367,102.1110272,1,9,35% -2018-01-16 18:00:00,67.11001063,144.7260906,335.5294061,679.9662852,71.04768249,263.525876,192.0911808,71.43469512,68.90533273,2.529362391,83.49533889,0,83.49533889,2.142349765,81.35298913,1.171290647,2.525946795,-0.623939233,0.623939233,0.636853582,0.636853582,0.211748005,1.805330161,58.06562376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.23442676,1.552125112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.307955556,55.81488619,67.54238232,57.3670113,192.0911808,0,0.282501037,73.59046871,-0.282501037,106.4095313,0.873009499,0,235.2398079,57.3670113,272.7853695,1,10,16% -2018-01-16 19:00:00,61.51082727,158.986636,435.9962596,745.9183505,80.19866627,411.441902,330.3747975,81.06710455,77.78038058,3.286723971,108.1306266,0,108.1306266,2.41828569,105.7123409,1.073566461,2.774840265,-0.032587537,0.032587537,0.535726487,0.535726487,0.183943473,2.041471584,65.66074364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.76546033,1.75203975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479039213,63.11560431,76.24449955,64.86764406,330.3747975,0,0.442910135,63.71029285,-0.442910135,116.2897072,0.937110283,0,385.8421194,64.86764406,428.2966951,1,11,11% -2018-01-16 20:00:00,58.81484574,174.8479685,482.9835368,770.4615136,84.03443454,517.7998857,432.6584655,85.14142019,81.50048628,3.640933914,119.6388985,0,119.6388985,2.533948255,117.1049503,1.026512707,3.051672741,0.423374998,-0.423374998,0.457752301,0.457752301,0.173990267,2.010152779,64.65342323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.34136743,1.835836885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.456348846,62.14732962,79.79771628,63.98316651,432.6584655,0,0.561557531,55.83642001,-0.561557531,124.16358,0.960961928,0,495.5660294,63.98316651,537.4417322,1,12,8% -2018-01-16 21:00:00,59.4302262,191.1687678,472.353182,765.1919728,83.18629065,566.5610037,482.3222888,84.23871487,80.67791706,3.560797809,117.0358713,0,117.0358713,2.508373588,114.5274977,1.037253122,3.336524425,0.876201937,-0.876201937,0.380314334,0.380314334,0.176110364,1.742823235,56.05518617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55068261,1.817308126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262669501,53.88237711,78.81335211,55.69968523,482.3222888,0,0.630328474,50.92563906,-0.630328474,129.0743609,0.970676279,0,546.9921567,55.69968523,583.4464867,1,13,7% -2018-01-16 22:00:00,63.2580451,206.5407725,405.0132568,727.7782189,77.53267171,547.3323674,469.0844308,78.2479366,75.1947756,3.053161008,100.5380493,0,100.5380493,2.337896117,98.2001532,1.104061165,3.604816519,1.44059108,-1.44059108,0.283798106,0.283798106,0.191432429,1.285082718,41.33267764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.28007848,1.693797778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.931038054,39.73054191,73.21111653,41.42433969,469.0844308,0,0.644543102,49.86857254,-0.644543102,130.1314275,0.972425669,0,529.3608579,41.42433969,556.4722597,1,14,5% -2018-01-16 23:00:00,69.75630476,220.0849996,287.1452836,639.1571895,65.98806451,451.7575851,385.5946817,66.16290333,63.99828089,2.164622439,71.61148209,0,71.61148209,1.989783615,69.62169847,1.217477192,3.841207877,2.350269024,-2.350269024,0.128234015,0.128234015,0.229807238,0.711234645,22.87575105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.51758189,1.441591456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.515287079,21.98904203,62.03286897,23.43063348,385.5946817,0,0.603286153,52.89438469,-0.603286153,127.1056153,0.967120591,0,434.9494253,23.43063348,450.2843063,1,15,4% -2018-01-16 00:00:00,78.22628174,231.6865843,133.4347931,436.7137269,44.32465807,266.546664,222.55267,43.99399392,42.98810609,1.005887833,33.68936242,0,33.68936242,1.336551981,32.35281044,1.365306178,4.043693729,4.554727608,-4.554727608,0,0,0.332182162,0.334137995,10.74702652,0.199199587,1,0.21612304,0,0.936696733,0.975458697,0.724496596,1,41.60119499,0.968327361,0.031139664,0.312029739,0.915490375,0.639986971,0.961238037,0.922476074,0.232181512,10.33045068,41.8333765,11.29877804,178.22027,0,0.509607682,59.36229883,-0.509607682,120.6377012,0.951885309,0,211.4786334,11.29877804,218.8734576,1,16,3% -2018-01-16 01:00:00,87.90053926,241.6989589,4.1698659,26.68937807,3.192119132,13.07268649,9.945387318,3.127299173,3.095864963,0.031434211,1.107286434,0,1.107286434,0.096254169,1.011032265,1.534153824,4.218442632,26.99270496,-26.99270496,0,0,0.765520813,0.024063542,0.773966241,0.803376835,1,0.037030112,0,0.957808023,0.996569987,0.724496596,1,2.988839435,0.069735818,0.099409284,0.312029739,0.757038766,0.481535361,0.961238037,0.922476074,0.016913504,0.74396579,3.005752939,0.813701608,1.955493536,0,0.37263466,68.12180438,-0.37263466,111.8781956,0.915820318,0,4.796633652,0.813701608,5.32918508,1,17,11% -2018-01-16 02:00:00,99.01600756,250.6379458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728155344,4.374457385,-6.301964342,6.301964342,1,0.392146937,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190513798,79.01722962,-0.190513798,100.9827704,0.787551818,0,0,0,0,1,18,0% -2018-01-16 03:00:00,110.4319027,259.0644147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927400302,4.521527011,-2.650820639,2.650820639,1,0.983470717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011540543,90.66123909,0.011540543,89.33876091,0,0,0,0,0,1,19,0% -2018-01-16 04:00:00,122.177046,267.626819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132391723,4.670969157,-1.514761649,1.514761649,1,0.789193188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224524951,102.9749452,0.224524951,77.02505483,0,0.827307601,0,0,0,1,20,0% -2018-01-16 05:00:00,133.9904403,277.26746,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33857435,4.839230086,-0.920767063,0.920767063,1,0.687614131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433927926,115.7170958,0.433927926,64.28290424,0,0.934773491,0,0,0,1,21,0% -2018-01-16 06:00:00,145.4927764,289.7924865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539327985,5.057833038,-0.528226967,0.528226967,1,0.620485821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548094,128.7174959,0.62548094,51.2825041,0,0.970061513,0,0,0,1,22,0% -2018-01-16 07:00:00,155.8189774,309.4978824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719554192,5.401757076,-0.227909054,0.227909054,1,0.569128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786130206,141.8253297,0.786130206,38.17467035,0,0.986397305,0,0,0,1,23,0% -2018-01-17 08:00:00,162.3873879,345.145853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.834194583,6.023931535,0.028473515,-0.028473515,1,0.525284432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904925685,154.8132759,0.904925685,25.18672412,0,0.994746844,0,0,0,1,0,0% -2018-01-17 09:00:00,160.7111467,30.21837601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804938655,0.527410156,0.268953113,-0.268953113,1,0.484159998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973766888,166.8472506,0.973766888,13.15274942,0,0.998653009,0,0,0,1,1,0% -2018-01-17 10:00:00,152.2636773,58.96463983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6575025,1.029127107,0.516097873,-0.516097873,1,0.441895755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987954751,171.0981059,0.987954751,8.901894142,0,0.999390395,0,0,0,1,2,0% -2018-01-17 11:00:00,141.3353581,75.2486516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.466767349,1.313336728,0.796783449,-0.796783449,1,0.393895695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946512006,161.1756128,0.946512006,18.8243872,0,0.997174468,0,0,0,1,3,0% -2018-01-17 12:00:00,129.650982,86.39938447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262836514,1.507953731,1.157516447,-1.157516447,1,0.332206719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852250263,148.4572704,0.852250263,31.54272956,0,0.991331787,0,0,0,1,4,0% -2018-01-17 13:00:00,117.8195664,95.49464054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056339358,1.666695895,1.710565495,-1.710565495,1,0.237629762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711579146,135.3635446,0.711579146,44.63645536,0,0.979733747,0,0,0,1,5,0% -2018-01-17 14:00:00,106.1540987,103.9140303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852738537,1.813641968,2.865015961,-2.865015961,1,0.040207105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534070418,122.2808914,0.534070418,57.7191086,0,0.956379387,0,0,0,1,6,0% -2018-01-17 15:00:00,94.90701281,112.4534566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656439857,1.962683072,8.594006788,-8.594006788,1,0,#DIV/0!,0,0,0.484405331,1,0.115839225,0,0.949424698,0.988186661,0.724496596,1,0,0,0.067377861,0.312029739,0.826762798,0.551259394,0.961238037,0.922476074,0,0,0,0,0,0,-0.331806657,109.378469,0.331806657,70.62153103,0,0.899309835,0,0,0,1,7,0% -2018-01-17 16:00:00,84.21571619,121.7165968,38.58847537,185.6728907,19.87573048,19.5673001,0,19.5673001,19.27640388,0.290896227,31.51492557,21.55937635,9.955549223,0.599326608,9.356222615,1.46984153,2.124355369,-6.116058555,6.116058555,0.423938699,0.423938699,0.515069079,0.209634384,6.742562415,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.52921262,0.434210087,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151879398,6.481207459,18.68109202,6.915417546,0,21.55937635,-0.116114831,96.66793097,0.116114831,83.33206903,0,0.619391786,18.68109202,20.26911818,31.94682448,1,8,71% -2018-01-17 17:00:00,74.83375383,132.2530189,194.1918901,534.8510544,54.26382188,103.3808578,49.28938992,54.09146793,52.62756743,1.463900494,48.72032646,0,48.72032646,1.636254442,47.08407202,1.306095396,2.308250626,-1.717573005,1.717573005,0.823875972,0.823875972,0.279434027,1.278118374,41.1086804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5876196,1.185460773,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.925992411,39.51522725,51.51361202,40.70068802,49.28938992,0,0.092155357,84.71238461,-0.092155357,95.28761539,0.507437944,0,76.52491871,40.70068802,103.162705,1,9,35% -2018-01-17 18:00:00,66.97625439,144.5480262,338.0204998,682.1018902,71.24186414,265.1266351,193.4848347,71.64180038,69.09365908,2.548141308,84.10518869,0,84.10518869,2.148205058,81.95698363,1.16895616,2.522838984,-0.626948503,0.626948503,0.637368198,0.637368198,0.210761963,1.818856101,58.5006645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.41545321,1.556367252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317755054,56.2330639,67.73320826,57.78943115,193.4848347,0,0.283659725,73.52124943,-0.283659725,106.4787506,0.873732467,0,236.7871902,57.78943115,274.6092171,1,10,16% -2018-01-17 19:00:00,61.34656868,158.8343421,438.9485847,747.7643616,80.38778548,413.6440915,332.3713146,81.27277699,77.96379715,3.308979844,108.8521547,0,108.8521547,2.423988331,106.4281663,1.070699608,2.772182234,-0.037229356,0.037229356,0.536520284,0.536520284,0.183137133,2.056202163,66.1345297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94176731,1.756171295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489711467,63.5710255,76.43147878,65.3271968,332.3713146,0,0.444486701,63.60949725,-0.444486701,116.3905028,0.937510695,0,388.033141,65.3271968,430.7884847,1,11,11% -2018-01-17 20:00:00,58.62394929,174.7400012,486.3302498,772.2847136,84.23804561,520.58488,435.2207594,85.36412058,81.69795773,3.666162849,120.4564875,0,120.4564875,2.54008788,117.9163996,1.023180936,3.049788355,0.417220524,-0.417220524,0.458804778,0.458804778,0.17321161,2.025723888,65.15424362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.5311845,1.840285023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467630061,62.62873723,79.99881456,64.46902226,435.2207594,0,0.563549623,55.69836494,-0.563549623,124.3016351,0.961276669,0,498.3663763,64.46902226,540.560062,1,12,8% -2018-01-17 21:00:00,59.22261658,191.1176738,476.0069169,767.2185299,83.41830696,569.9146896,485.4234112,84.49127843,80.90293722,3.588341206,117.9287578,0,117.9287578,2.515369736,115.413388,1.033629651,3.335632667,0.867714335,-0.867714335,0.381765799,0.381765799,0.175245997,1.758677847,56.56512499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76698055,1.822376811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.274156114,54.3725497,79.04113666,56.19492651,485.4234112,0,0.632705536,50.74998465,-0.632705536,129.2500153,0.970974297,0,550.3747919,56.19492651,587.1532474,1,13,7% -2018-01-17 22:00:00,63.04571779,206.5444498,408.8575134,730.3323699,77.81289642,551.2548656,472.7061745,78.54869113,75.46655049,3.082140638,101.4785836,0,101.4785836,2.346345926,99.13223772,1.100355355,3.6048807,1.427489705,-1.427489705,0.286038573,0.286038573,0.190317883,1.300411231,41.82569532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.54131884,1.699919636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.94214351,40.20444926,73.48346235,41.9043689,472.7061745,0,0.647248012,49.66556632,-0.647248012,130.3344337,0.972749859,0,533.308327,41.9043689,560.7338984,1,14,5% -2018-01-17 23:00:00,69.54836232,220.1311022,291.0128331,642.9259451,66.36381683,456.3227143,389.7662338,66.55648056,64.3627029,2.19377766,72.56054454,0,72.56054454,2.001113934,70.5594306,1.213847912,3.84201252,2.325325696,-2.325325696,0.132499576,0.132499576,0.228044297,0.724666406,23.30776264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.86787818,1.449800233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525018344,22.404308,62.39289652,23.85410823,389.7662338,0,0.606238147,52.68200926,-0.606238147,127.3179907,0.967524161,0,439.5011447,23.85410823,455.1131815,1,15,4% -2018-01-17 00:00:00,78.02771282,231.7622162,136.9589654,443.555929,44.94836396,272.0373196,227.4118602,44.62545947,43.59300494,1.032454533,34.56264584,0,34.56264584,1.355359015,33.20728683,1.361840496,4.045013754,4.478948521,-4.478948521,0,0,0.328188548,0.338839754,10.89825124,0.190802085,1,0.219664039,0,0.936206511,0.974968474,0.724496596,1,42.17939759,0.981952993,0.029935668,0.312029739,0.918616478,0.643113074,0.961238037,0.922476074,0.235723938,10.47581362,42.41512153,11.45776662,184.021203,0,0.512701658,59.15604603,-0.512701658,120.843954,0.952477397,0,217.691158,11.45776662,225.1900371,1,16,3% -2018-01-17 01:00:00,87.72321479,241.7955562,5.038915104,31.75974138,3.77719773,15.62972161,11.92843485,3.701286753,3.663301282,0.037985471,1.335639754,0,1.335639754,0.113896448,1.221743306,1.531058929,4.220128572,24.89453737,-24.89453737,0,0,0.749605352,0.028474112,0.915825321,0.78845215,1,0.04014787,0,0.95750422,0.996266184,0.724496596,1,3.537665545,0.082517589,0.098070403,0.312029739,0.759788573,0.484285168,0.961238037,0.922476074,0.019974772,0.880326133,3.557640318,0.962843722,2.523434748,0,0.375583501,67.93961866,-0.375583501,112.0603813,0.916873811,0,5.871311553,0.962843722,6.501473512,1,17,11% -2018-01-17 02:00:00,98.83443212,250.7516339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724986255,4.376441617,-6.433476012,6.433476012,1,0.369657117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193615727,78.83613044,-0.193615727,101.1638696,0.791756516,0,0,0,0,1,18,0% -2018-01-17 03:00:00,110.2567683,259.195047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92434363,4.523806975,-2.674814288,2.674814288,1,0.987573873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008604544,90.49301011,0.008604544,89.50698989,0,0,0,0,0,1,19,0% -2018-01-17 04:00:00,122.0051397,267.7771153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129391392,4.673592324,-1.523616674,1.523616674,1,0.790707486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221848112,102.8176047,0.221848112,77.18239527,0,0.824620575,0,0,0,1,20,0% -2018-01-17 05:00:00,133.8170104,277.441798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335547426,4.842272858,-0.924905166,0.924905166,1,0.688321788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431585448,115.5682188,0.431585448,64.4317812,0,0.934148086,0,0,0,1,21,0% -2018-01-17 06:00:00,145.3103316,289.9906526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536143724,5.061291688,-0.53030256,0.53030256,1,0.620840768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623524839,128.5739963,0.623524839,51.4260037,0,0.969810733,0,0,0,1,22,0% -2018-01-17 07:00:00,155.6170565,309.6743634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.716030009,5.404837251,-0.228857886,0.228857886,1,0.569290693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784585758,141.6823821,0.784585758,38.31761787,0,0.986272103,0,0,0,1,23,0% -2018-01-18 08:00:00,162.1748052,345.0451515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.830484315,6.022173961,0.028277351,-0.028277351,1,0.525317978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903789707,154.660767,0.903789707,25.33923298,0,0.994677396,0,0,0,1,0,0% -2018-01-18 09:00:00,160.5607822,29.75492013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802314299,0.519321325,0.269383507,-0.269383507,1,0.484086397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973007979,166.6575041,0.973007979,13.34249592,0,0.99861296,0,0,0,1,1,0% -2018-01-18 10:00:00,152.1788471,58.54026023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656021933,1.021720286,0.517191921,-0.517191921,1,0.441708662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987515466,170.9369024,0.987515466,9.063097642,0,0.999367882,0,0,0,1,2,0% -2018-01-18 11:00:00,141.2802419,74.91551677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465805389,1.307522428,0.798768793,-0.798768793,1,0.393556181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946312825,161.1402764,0.946312825,18.85972363,0,0.997163349,0,0,0,1,3,0% -2018-01-18 12:00:00,129.6055767,86.1256815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262044043,1.503176713,1.161002022,-1.161002022,1,0.331610651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852195061,148.451225,0.852195061,31.548775,0,0.991327987,0,0,0,1,4,0% -2018-01-18 13:00:00,117.7731557,95.25633529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055529337,1.662536684,1.717312151,-1.717312151,1,0.236476016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711561815,135.3621314,0.711561815,44.63786862,0,0.979732036,0,0,0,1,5,0% -2018-01-18 14:00:00,106.0996585,103.696364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851788377,1.809842974,2.882559131,-2.882559131,1,0.037207046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533982163,122.2749105,0.533982163,57.7250895,0,0.956363913,0,0,0,1,6,0% -2018-01-18 15:00:00,94.8388329,112.2474517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655249893,1.959087609,8.744299524,-8.744299524,1,0,#DIV/0!,0,0,0.491148425,1,0.11386555,0,0.949652345,0.988414308,0.724496596,1,0,0,0.068137584,0.312029739,0.825014185,0.549510781,0.961238037,0.922476074,0,0,0,0,0,0,-0.331543472,109.3624848,0.331543472,70.63751524,0,0.899190214,0,0,0,1,7,0% -2018-01-18 16:00:00,84.13015324,121.5175076,39.73519789,190.1534608,20.28838658,19.97615757,0,19.97615757,19.67661687,0.299540706,32.23031026,21.98428179,10.24602848,0.611769711,9.634258765,1.468348174,2.120880607,-6.052787416,6.052787416,0.434758701,0.434758701,0.510589796,0.216677305,6.969086943,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.91391257,0.443225073,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15698197,6.698951452,19.07089454,7.142176525,0,21.98428179,-0.115613367,96.63900435,0.115613367,83.36099565,0,0.617524055,19.07089454,20.71799936,32.63041076,1,8,71% -2018-01-18 17:00:00,74.72241387,132.0606569,196.2646497,537.92655,54.52331738,104.3962237,50.03745964,54.35876403,52.8792382,1.479525832,49.23071578,0,49.23071578,1.644079189,47.58663659,1.304152147,2.304893275,-1.715317341,1.715317341,0.823490231,0.823490231,0.277805083,1.290924079,41.52055589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82953511,1.191129776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.9352701,39.91113763,51.76480521,41.10226741,50.03745964,0,0.09301913,84.66268058,-0.09301913,95.33731942,0.512476159,0,77.40781034,41.10226741,104.3084223,1,9,35% -2018-01-18 18:00:00,66.83579007,144.3685978,340.6325115,684.3118277,71.44634816,266.8323838,194.9725749,71.85980891,69.29197716,2.567831755,84.74466712,0,84.74466712,2.154371006,82.59029612,1.166504595,2.519707368,-0.629754631,0.629754631,0.637848074,0.637848074,0.209746122,1.832938942,58.95361707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60608409,1.56083446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.327958024,56.66845914,67.93404212,58.2292936,194.9725749,0,0.284917733,73.44606882,-0.284917733,106.5539312,0.874510748,0,238.4396543,58.2292936,276.5495624,1,10,16% -2018-01-18 19:00:00,61.17552659,158.6821185,442.016649,749.6587373,80.58522839,415.9554716,334.4680769,81.48739463,78.15528642,3.332108209,109.601996,0,109.601996,2.429941964,107.172054,1.067714361,2.769525431,-0.041793355,0.041793355,0.537300774,0.537300774,0.182312654,2.071427387,66.62422524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.12583409,1.760484681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.50074209,64.04173948,76.62657618,65.80222416,334.4680769,0,0.446160446,63.50239228,-0.446160446,116.4976077,0.937932692,0,390.3351201,65.80222416,433.4013597,1,11,11% -2018-01-18 20:00:00,58.42648905,174.6340283,489.7840152,774.1433149,84.44870775,523.476021,437.8815546,85.59446642,81.90226763,3.692198792,121.3002451,0,121.3002451,2.546440121,118.753805,1.019734604,3.047938779,0.411092764,-0.411092764,0.459852687,0.459852687,0.172420302,2.041730732,65.66907873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72757495,1.844887199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479226965,63.12361632,80.20680191,64.96850352,437.8815546,0,0.565633709,55.55369122,-0.565633709,124.4463088,0.961603571,0,501.2752685,64.96850352,543.7958547,1,12,8% -2018-01-18 21:00:00,59.00906458,191.0705672,479.7567547,769.2727768,83.65631043,573.3668549,488.6164818,84.75037308,81.13376401,3.616609067,118.845126,0,118.845126,2.522546418,116.3225796,1.029902465,3.334810501,0.859231536,-0.859231536,0.383216443,0.383216443,0.174372345,1.774910351,57.08721809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98886004,1.827576293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285916507,54.87440545,79.27477655,56.70198174,488.6164818,0,0.63516674,50.56764764,-0.63516674,129.4323524,0.971280513,0,553.8584436,56.70198174,590.9687566,1,13,7% -2018-01-18 22:00:00,62.82838069,206.5535838,412.7857613,732.90791,78.09800615,555.2648168,476.4100002,78.85481655,75.74306312,3.11175343,102.4396299,0,102.4396299,2.354943036,100.0846869,1.096562107,3.605040119,1.41440073,-1.41440073,0.288276919,0.288276919,0.189197432,1.316063521,42.32912677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.8071133,1.706148213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953483541,40.68836671,73.76059684,42.39451493,476.4100002,0,0.650027096,49.45635519,-0.650027096,130.5436448,0.97308013,0,537.3457016,42.39451493,565.0920637,1,14,5% -2018-01-18 23:00:00,69.33642122,220.1834179,294.9526821,646.7062689,66.7428843,460.9615147,394.0076967,66.95381799,64.73034009,2.223477906,73.52723683,0,73.52723683,2.012544217,71.51469261,1.210148842,3.842925601,2.300515474,-2.300515474,0.136742374,0.136742374,0.226283361,0.738379682,23.74882875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.22126503,1.458081434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534953566,22.82827752,62.7562186,24.28635895,394.0076967,0,0.609252942,52.46449464,-0.609252942,127.5355054,0.96793228,0,444.1289867,24.28635895,460.0239229,1,15,4% -2018-01-18 00:00:00,77.82603301,231.8443323,140.5503089,450.3892131,45.57192799,277.5890669,232.3317731,45.25729381,44.19776621,1.059527597,35.4522114,0,35.4522114,1.374161771,34.07804963,1.35832052,4.04644695,4.404599231,-4.404599231,0,0,0.324239259,0.343540443,11.04944155,0.182390082,1,0.22325093,0,0.935707158,0.974469122,0.724496596,1,42.75688916,0.995575525,0.028720732,0.312029739,0.921782555,0.646279151,0.961238037,0.922476074,0.23928562,10.62114351,42.99617478,11.61671903,189.9567618,0,0.515846664,58.94593601,-0.515846664,121.054064,0.953071972,0,224.0386403,11.61671903,231.6415506,1,16,3% -2018-01-18 01:00:00,87.54273934,241.8987242,6.019584559,37.38935631,4.416547945,18.48376748,14.15501658,4.3287509,4.283372729,0.045378171,1.592693184,0,1.592693184,0.133175216,1.459517969,1.527909038,4.221929194,23.0700862,-23.0700862,0,0,0.733696471,0.033293804,1.070843182,0.773502687,1,0.043319058,0,0.957192833,0.995954796,0.724496596,1,4.137619464,0.096484991,0.096715134,0.312029739,0.7625867,0.487083296,0.961238037,0.922476074,0.023311853,1.029335198,4.160931317,1.125820189,3.206073227,0,0.378584121,67.75399263,-0.378584121,112.2460074,0.917928956,0,7.103878767,1.125820189,7.840705565,1,17,10% -2018-01-18 02:00:00,98.6509941,250.8720045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721784657,4.37854248,-6.571861101,6.571861101,1,0.345991873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196745647,78.6532825,-0.196745647,101.3467175,0.795864771,0,0,0,0,1,18,0% -2018-01-18 03:00:00,110.0800837,259.3326311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921259901,4.52620827,-2.699365115,2.699365115,1,0.991772311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.005649678,90.32370442,0.005649678,89.67629558,0,0,0,0,0,1,19,0% -2018-01-18 04:00:00,121.8317811,267.9348984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126365713,4.676346158,-1.532563652,1.532563652,1,0.792237509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219159151,102.6596507,0.219159151,77.34034931,0,0.821855294,0,0,0,1,20,0% -2018-01-18 05:00:00,133.6419592,277.6245509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.332492207,4.845462497,-0.929033596,0.929033596,1,0.689027791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429234746,115.419005,0.429234746,64.58099501,0,0.933513624,0,0,0,1,21,0% -2018-01-18 06:00:00,145.1257006,290.1987143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.532921304,5.064923049,-0.532332402,0.532332402,1,0.621187892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621561298,128.4302386,0.621561298,51.56976144,0,0.969557411,0,0,0,1,22,0% -2018-01-18 07:00:00,155.4117253,309.8629368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712446302,5.408128478,-0.229741448,0.229741448,1,0.569441791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783031483,141.5389793,0.783031483,38.46102071,0,0.986145607,0,0,0,1,23,0% -2018-01-19 08:00:00,161.9564732,344.9595807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826673703,6.02068047,0.028162897,-0.028162897,1,0.525337551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902638511,154.5070848,0.902638511,25.49291524,0,0.994606839,0,0,0,1,0,0% -2018-01-19 09:00:00,160.4023174,29.29759821,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799548566,0.511339552,0.26991521,-0.26991521,1,0.48399547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972225827,166.4646797,0.972225827,13.53532025,0,0.998571619,0,0,0,1,1,0% -2018-01-19 10:00:00,152.0863493,58.11240693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654407543,1.014252837,0.518416004,-0.518416004,1,0.441499332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987042835,170.766578,0.987042835,9.233421983,0,0.999343637,0,0,0,1,2,0% -2018-01-19 11:00:00,141.2182881,74.57733489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464724092,1.301620041,0.800932522,-0.800932522,1,0.393186162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946068807,161.0970724,0.946068807,18.90292755,0,0.997149721,0,0,0,1,3,0% -2018-01-19 12:00:00,129.5538245,85.84721772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261140797,1.498316603,1.16476009,-1.16476009,1,0.330967983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852082944,148.4389498,0.852082944,31.56105019,0,0.991320267,0,0,0,1,4,0% -2018-01-19 13:00:00,117.7206225,95.01379111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05461246,1.65830349,1.724559675,-1.724559675,1,0.235236616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711475736,135.3551124,0.711475736,44.64488757,0,0.979723534,0,0,0,1,5,0% -2018-01-19 14:00:00,106.0391467,103.4749451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850732245,1.805978485,2.901463566,-2.901463566,1,0.033974197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533814387,122.2635417,0.533814387,57.73645829,0,0.956334484,0,0,0,1,6,0% -2018-01-19 15:00:00,94.76451321,112.0381419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65395277,1.955434463,8.910752857,-8.910752857,1,0,#DIV/0!,0,0,0.498413682,1,0.111756367,0,0.949894629,0.988656592,0.724496596,1,0,0,0.068951684,0.312029739,0.823145517,0.547642112,0.961238037,0.922476074,0,0,0,0,0,0,-0.331191802,109.341129,0.331191802,70.65887104,0,0.899030079,0,0,0,1,7,0% -2018-01-19 16:00:00,84.03838343,121.3155894,40.97591598,194.9388344,20.72914124,20.41297491,0,20.41297491,20.10408115,0.308893763,32.98167171,22.42152638,10.56014532,0.625060091,9.935085232,1.466746489,2.117356469,-5.985334231,5.985334231,0.446293875,0.446293875,0.505885976,0.224382295,7.216905902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.3248075,0.452853908,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162564209,6.937164461,19.4873717,7.390018369,0,22.42152638,-0.115018264,96.60467851,0.115018264,83.39532149,0,0.615286433,19.4873717,21.18567935,33.35297513,1,8,71% -2018-01-19 17:00:00,74.60460451,131.8660849,198.4568394,541.1347932,54.79711143,105.4973503,50.85652246,54.64082782,53.14477634,1.496051484,49.77049345,0,49.77049345,1.652335089,48.11815836,1.302095986,2.301497354,-1.712430742,1.712430742,0.822996593,0.822996593,0.276116014,1.30436251,41.95278202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.08478048,1.197111148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.945006198,40.32660983,52.02978668,41.52372098,50.85652246,0,0.093981247,84.6073128,-0.093981247,95.3926872,0.517978966,0,78.3723956,41.52372098,105.5488405,1,9,35% -2018-01-19 18:00:00,66.6886623,144.1878916,343.3643944,686.5929844,71.66084961,268.6426811,196.5542447,72.08843644,69.5000106,2.588425842,85.41351177,0,85.41351177,2.160839016,83.25267275,1.163936731,2.51655345,-0.632355344,0.632355344,0.638292822,0.638292822,0.20870204,1.847571382,59.42424663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.80605375,1.565520511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338559177,57.12084617,68.14461292,58.68636668,196.5542447,0,0.286274764,73.36493756,-0.286274764,106.6350624,0.875342621,0,240.1969206,58.68636668,278.6059739,1,10,16% -2018-01-19 19:00:00,60.99776182,158.5300467,445.1988714,751.5990454,80.79074486,418.3749178,336.6642148,81.71070296,78.35460582,3.356097145,110.3797597,0,110.3797597,2.436139044,107.9436207,1.06461178,2.766871278,-0.046274452,0.046274452,0.538067087,0.538067087,0.181471136,2.087138616,67.12955237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.31742747,1.764974444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.512124822,64.52747914,76.8295523,66.29245358,336.6642148,0,0.447930605,63.38900899,-0.447930605,116.610991,0.938375566,0,392.7470256,66.29245358,436.1341106,1,11,11% -2018-01-19 20:00:00,58.2225424,174.5301348,493.3428301,776.0350817,84.66616939,526.4715704,440.6393718,85.83219864,82.113172,3.719026643,122.1696783,0,122.1696783,2.552997392,119.6166809,1.016175064,3.046125496,0.404998506,-0.404998506,0.460894866,0.460894866,0.17161731,2.058163787,66.19762228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93030425,1.84963792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491132657,63.63167248,80.42143691,65.4813104,440.6393718,0,0.567808572,55.40244822,-0.567808572,124.5975518,0.961942154,0,504.2910232,65.4813104,547.1472312,1,12,8% -2018-01-19 21:00:00,58.78966569,191.0275349,483.6003853,771.3523632,83.90002955,576.9151926,491.8994745,85.01571808,81.3701341,3.645583978,119.7844078,0,119.7844078,2.529895449,117.2545123,1.026073232,3.334059447,0.850762681,-0.850762681,0.384664703,0.384664703,0.173490411,1.791510969,57.62115103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.21606796,1.832900641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297943598,55.3876421,79.51401156,57.22054274,491.8994745,0,0.637710465,50.37869424,-0.637710465,129.6213058,0.971594512,0,557.4408417,57.22054274,594.8905425,1,13,7% -2018-01-19 22:00:00,62.60614558,206.568249,416.7955205,735.5020216,78.38769045,559.3593784,480.1933853,79.16599305,76.02401237,3.141980689,103.4205775,0,103.4205775,2.363678087,101.0568994,1.092683372,3.605296075,1.401337733,-1.401337733,0.290510823,0.290510823,0.188072296,1.332030402,42.84267655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.0771724,1.712476728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965051492,41.1820103,74.04222389,42.89448703,480.1933853,0,0.652878403,49.24102567,-0.652878403,130.7589743,0.973416061,0,541.4701774,42.89448703,569.5437613,1,14,5% -2018-01-19 23:00:00,69.12060255,220.2419939,298.9623541,650.4942182,67.12487935,465.6705747,398.3160537,67.35452108,65.10081658,2.253704507,74.51094678,0,74.51094678,2.024062777,72.48688401,1.206382096,3.843947946,2.275861589,-2.275861589,0.140958436,0.140958436,0.224526193,0.752367176,24.19871463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.57738112,1.466426592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.545087458,23.26072494,63.12246858,24.72715154,398.3160537,0,0.612328354,52.24195083,-0.612328354,127.7580492,0.968344464,0,448.829614,24.72715154,465.0130402,1,15,4% -2018-01-19 00:00:00,77.62136443,231.9329493,144.2065629,457.2062482,46.19474235,283.1974044,237.308514,45.88889041,44.80180043,1.087089984,36.35749266,0,36.35749266,1.392941922,34.96455074,1.354748379,4.047993609,4.33170623,-4.33170623,0,0,0.320337309,0.348235481,11.20045011,0.173971309,1,0.226881147,0,0.935198936,0.973960899,0.724496596,1,43.33308224,1.009181681,0.027495844,0.312029739,0.924986326,0.649482922,0.961238037,0.922476074,0.242863815,10.76629867,43.57594606,11.77548035,196.0236411,0,0.5190404,58.73209459,-0.5190404,121.2679054,0.953668385,0,230.5174953,11.77548035,238.2243116,1,16,3% -2018-01-19 01:00:00,87.3592748,242.0084522,7.115412542,43.57256374,5.107892345,21.63625787,16.62874834,5.00750953,4.953870545,0.053638985,1.87923595,0,1.87923595,0.1540218,1.72521415,1.524706977,4.223844308,21.47106228,-21.47106228,0,0,0.717863134,0.03850545,1.238467636,0.75854825,1,0.046540682,0,0.95687404,0.995636003,0.724496596,1,4.786594109,0.11158827,0.095345008,0.312029739,0.76543049,0.489927086,0.961238037,0.922476074,0.026911833,1.190462199,4.813505942,1.302050469,4.015040392,0,0.381633462,67.5651002,-0.381633462,112.4348998,0.918984235,0,8.503264765,1.302050469,9.355430756,1,17,10% -2018-01-19 02:00:00,98.46580188,250.9990224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718552443,4.380759359,-6.717564185,6.717564185,1,0.321075178,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.199901363,78.46880891,-0.199901363,101.5311911,0.799876643,0,0,0,0,1,18,0% -2018-01-19 03:00:00,109.9019456,259.4771078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918150805,4.528729864,-2.724476784,2.724476784,1,0.99606666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002677908,90.15343303,0.002677908,89.84656697,0,0,0,0,0,1,19,0% -2018-01-19 04:00:00,121.6570538,268.1000807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123316148,4.679229133,-1.541598805,1.541598805,1,0.793782612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216459701,102.5011789,0.216459701,77.49882113,0,0.819010122,0,0,0,1,20,0% -2018-01-19 05:00:00,133.4653569,277.8155883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329409916,4.84879673,-0.933149435,0.933149435,1,0.689731641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426877051,115.2695326,0.426877051,64.73046739,0,0.932870255,0,0,0,1,21,0% -2018-01-19 06:00:00,144.9389431,290.4164629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529661772,5.06872348,-0.534314465,0.534314465,1,0.621526845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619591099,128.2862805,0.619591099,51.71371949,0,0.969301617,0,0,0,1,22,0% -2018-01-19 07:00:00,155.2030509,310.0632509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.708804247,5.411624618,-0.230558297,0.230558297,1,0.569581481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781467702,141.3951539,0.781467702,38.60484605,0,0.986017829,0,0,0,1,23,0% -2018-01-20 08:00:00,161.7325144,344.8888593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822764884,6.019446148,0.028131233,-0.028131233,1,0.525342965,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901471972,154.3522311,0.901471972,25.64776892,0,0.994535159,0,0,0,1,0,0% -2018-01-20 09:00:00,160.2358264,28.84708434,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796642751,0.503476601,0.270549102,-0.270549102,1,0.483887068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971419909,166.2687762,0.971419909,13.73122375,0,0.998528953,0,0,0,1,1,0% -2018-01-20 10:00:00,151.9861536,57.6816624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652658798,1.006734927,0.519770958,-0.519770958,1,0.441267621,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986536008,170.5873255,0.986536008,9.412674549,0,0.999317613,0,0,0,1,2,0% -2018-01-20 11:00:00,141.1494443,74.23445516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463522541,1.295635661,0.8032757,-0.8032757,1,0.392785455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94577888,161.0458635,0.94577888,18.95413654,0,0.99713352,0,0,0,1,3,0% -2018-01-20 12:00:00,129.4956784,85.56422764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260125956,1.493377494,1.168792677,-1.168792677,1,0.33027837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851912726,148.4203215,0.851912726,31.5796785,0,0.991308542,0,0,0,1,4,0% -2018-01-20 13:00:00,117.6619329,94.76718476,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053588134,1.653999397,1.732314105,-1.732314105,1,0.23391053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711319728,135.3423937,0.711319728,44.65760628,0,0.979708121,0,0,0,1,5,0% -2018-01-20 14:00:00,105.9725443,103.2499176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849569815,1.802051015,2.921762592,-2.921762592,1,0.030502859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533566038,122.2467158,0.533566038,57.7532842,0,0.956290887,0,0,0,1,6,0% -2018-01-20 15:00:00,94.6840513,111.8256501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652548444,1.951725782,9.094769737,-9.094769737,1,0,#DIV/0!,0,0,0.50620784,1,0.109513391,0,0.950151155,0.988913118,0.724496596,1,0,0,0.069819957,0.312029739,0.821158322,0.545654917,0.961238037,0.922476074,0,0,0,0,0,0,-0.330750833,109.3143543,0.330750833,70.68564567,0,0.898828801,0,0,0,1,7,0% -2018-01-20 16:00:00,83.94041374,121.1109497,42.31274179,200.0258695,21.19747376,20.87726304,0,20.87726304,20.55829172,0.318971321,33.76713809,22.86874192,10.89839617,0.639182044,10.25921413,1.465036595,2.113784833,-5.914083126,5.914083126,0.458478531,0.458478531,0.500971406,0.232774202,7.486818506,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.76141197,0.463085215,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.168644117,7.196614723,19.93005609,7.659699939,0,22.86874192,-0.114328921,96.56491979,0.114328921,83.43508021,0,0.61266534,19.93005609,21.67058547,34.11302087,1,8,71% -2018-01-20 17:00:00,74.48035646,131.6693976,200.7680961,544.4706841,55.08476352,106.6847017,51.74747233,54.93722937,53.42375465,1.513474713,50.33955818,0,50.33955818,1.661008861,48.67854932,1.299927448,2.298064512,-1.708926992,1.708926992,0.822397417,0.822397417,0.274370105,1.318427561,42.40516243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.35294505,1.203395266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95519628,40.76145509,52.30814133,41.96485035,51.74747233,0,0.095041797,84.5462745,-0.095041797,95.4537255,0.523915672,0,79.41945306,41.96485035,106.8846083,1,9,35% -2018-01-20 18:00:00,66.53491881,144.0059915,346.2150251,688.942173,71.88507628,270.5570312,198.2296401,72.3273911,69.717476,2.609915101,86.11144146,0,86.11144146,2.167600277,83.94384118,1.161253401,2.513378694,-0.634748946,0.634748946,0.638702152,0.638702152,0.207631302,1.862745721,59.91230555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01508977,1.570419022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349552934,57.58998697,68.3646427,59.16040599,198.2296401,0,0.287730448,73.27787006,-0.287730448,106.7221299,0.876226246,0,242.0586561,59.16040599,280.7779586,1,10,16% -2018-01-20 19:00:00,60.81333784,158.3782062,448.4936001,753.5828296,81.00408085,420.9012425,338.9587994,81.94244314,78.56150894,3.380934202,111.1850377,0,111.1850377,2.442571911,108.7424658,1.061392974,2.764221161,-0.050667913,0.050667913,0.538818413,0.538818413,0.180613683,2.103326899,67.6502232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.51631062,1.769635035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.523853178,65.02796774,77.0401638,66.79760277,338.9587994,0,0.449796341,63.26938185,-0.449796341,116.7306182,0.93883858,0,395.2677617,66.79760277,438.9854568,1,11,11% -2018-01-20 20:00:00,58.01218899,174.4284038,497.0046307,777.9577826,84.89017731,529.5697309,443.4926748,86.07705609,82.33042525,3.746630842,123.0642789,0,123.0642789,2.559752057,120.5045268,1.012503704,3.044349956,0.39894422,-0.39894422,0.46193021,0.46193021,0.170803594,2.075013284,66.73956004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13913634,1.854531652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503340061,64.15260367,80.6424764,66.00713532,443.4926748,0,0.570072933,55.24468825,-0.570072933,124.7553117,0.962291924,0,507.4118958,66.00713532,550.6122458,1,12,9% -2018-01-20 21:00:00,58.5645173,190.9886629,487.5354497,773.4549693,84.1491935,580.5573499,495.2703169,85.28703299,81.61178484,3.675248156,120.7460229,0,120.7460229,2.537408661,118.2086143,1.022143652,3.333381001,0.842316505,-0.842316505,0.386109084,0.386109084,0.172601179,1.80846973,58.16660309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.44835184,1.838343938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310230163,55.91195136,79.758582,57.7502953,495.2703169,0,0.640335038,50.18319305,-0.640335038,129.8168069,0.971915877,0,561.1196663,57.7502953,598.9160795,1,13,7% -2018-01-20 22:00:00,62.37912574,206.5885177,420.8842744,738.1119565,78.68164309,563.5356826,484.0537779,79.48190469,76.30910124,3.172803443,104.420807,0,104.420807,2.372541843,102.0482652,1.088721129,3.605649832,1.388313589,-1.388313589,0.292738083,0.292738083,0.186943651,1.348302521,43.36604385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.35121067,1.718898489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976840587,41.68509085,74.32805126,43.40398934,484.0537779,0,0.655799942,49.01966638,-0.655799942,130.9803336,0.973757236,0,545.6789202,43.40398934,574.0859632,1,14,5% -2018-01-20 23:00:00,68.90102833,220.306875,303.0393426,654.2860024,67.50942587,470.4464909,402.6882848,67.75820617,65.4737676,2.284438569,75.51105536,0,75.51105536,2.035658273,73.47539709,1.202549802,3.845080333,2.251385549,-2.251385549,0.145144085,0.145144085,0.22277446,0.766621376,24.65717869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93587583,1.474827489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.555414577,23.70141803,63.49129041,25.17624552,402.6882848,0,0.615462173,52.01448973,-0.615462173,127.9855103,0.968760239,0,453.5996893,25.17624552,470.0770385,1,15,4% -2018-01-20 00:00:00,77.41382936,232.0280807,147.9254155,464.0000885,46.81623268,288.8578968,242.338222,46.5196748,45.40455053,1.115124266,37.27791177,0,37.27791177,1.411682149,35.86622962,1.351126209,4.049653966,4.260289233,-4.260289233,0,0,0.316485389,0.352920537,11.35113763,0.165553151,1,0.23055214,0,0.934682107,0.97344407,0.724496596,1,43.90742199,1.022758911,0.026261972,0.312029739,0.928225527,0.652722123,0.961238037,0.922476074,0.246455909,10.91114525,44.1538779,11.93390417,202.2183657,0,0.522280551,58.51464894,-0.522280551,121.4853511,0.954266012,0,237.1239913,11.93390417,244.9344929,1,16,3% -2018-01-20 01:00:00,87.17298196,242.1247256,8.328936296,50.29595203,5.848301963,25.08502615,19.35028503,5.734741121,5.671954081,0.06278704,2.195794916,0,2.195794916,0.176347882,2.019447034,1.521455554,4.225873663,20.05977303,-20.05977303,0,0,0.70216673,0.044086971,1.41798852,0.743607463,1,0.049809779,0,0.956548026,0.995309989,0.724496596,1,5.481865937,0.12776344,0.09396152,0.312029739,0.768317302,0.492813898,0.961238037,0.922476074,0.03075861,1.363024501,5.512624547,1.490787942,4.961268666,0,0.384728477,67.37311517,-0.384728477,112.6268848,0.920038214,0,10.07718131,1.490787942,11.0528722,1,17,10% -2018-01-20 02:00:00,98.27896244,251.1326488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.71529148,4.383091581,-6.871072334,6.871072334,1,0.294823738,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.203080697,78.28283211,-0.203080697,101.7171679,0.803792454,0,0,0,0,1,18,0% -2018-01-20 03:00:00,109.7224487,259.6284148,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915017993,4.53137067,-2.750153125,2.750153125,1,0.999542427,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000308829,89.98230542,-0.000308829,90.01769458,0,0,0,0,0,1,19,0% -2018-01-20 04:00:00,121.4810391,268.2725714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120244111,4.682239664,-1.550718355,1.550718355,1,0.795342147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213751363,102.3422829,0.213751363,77.65771715,0,0.816083363,0,0,0,1,20,0% -2018-01-20 05:00:00,133.2872711,278.0147766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326301731,4.85227322,-0.9372498,0.9372498,1,0.690432845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424513558,115.1198771,0.424513558,64.88012287,0,0.932218132,0,0,0,1,21,0% -2018-01-20 06:00:00,144.7501161,290.6436864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526366118,5.072689277,-0.53624677,0.53624677,1,0.621857288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617614989,128.1421767,0.617614989,51.85782326,0,0.969043416,0,0,0,1,22,0% -2018-01-20 07:00:00,154.9910976,310.2749501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.705104965,5.415319466,-0.231307038,0.231307038,1,0.569709523,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779894701,141.2509354,0.779894701,38.74906463,0,0.985888781,0,0,0,1,23,0% -2018-01-21 08:00:00,161.5030495,344.8326791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818759966,6.018465619,0.028183394,-0.028183394,1,0.525334045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900289938,154.1962045,0.900289938,25.80379555,0,0.994462336,0,0,0,1,0,0% -2018-01-21 09:00:00,160.061392,28.40400254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793598295,0.495743365,0.271286018,-0.271286018,1,0.483761048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970589684,166.0697902,0.970589684,13.93020977,0,0.998484925,0,0,0,1,1,0% -2018-01-21 10:00:00,151.8782382,57.24860402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650775319,0.999176632,0.521257587,-0.521257587,1,0.441013392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985994135,170.3993466,0.985994135,9.600653384,0,0.999289759,0,0,0,1,2,0% -2018-01-21 11:00:00,141.0736646,73.88722901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462199935,1.289575421,0.80579938,-0.80579938,1,0.39235388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945441982,160.986525,0.945441982,19.01347496,0,0.997114682,0,0,0,1,3,0% -2018-01-21 12:00:00,129.4310971,85.27694762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2589988,1.488363512,1.173101876,-1.173101876,1,0.329541454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851683249,148.3952235,0.851683249,31.60477652,0,0.991292728,0,0,0,1,4,0% -2018-01-21 13:00:00,117.597058,94.51669384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052455852,1.649627506,1.740581859,-1.740581859,1,0.232496661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711092656,135.3238865,0.711092656,44.67611347,0,0.979685675,0,0,0,1,5,0% -2018-01-21 14:00:00,105.8998374,103.0214257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84830084,1.798063078,2.943492421,-2.943492421,1,0.02678684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533236122,122.2243685,0.533236122,57.77563155,0,0.956232909,0,0,0,1,6,0% -2018-01-21 15:00:00,94.59744929,111.6100987,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651036954,1.9479637,9.297979486,-9.297979486,1,0,#DIV/0!,0,0,0.514538232,1,0.107138423,0,0.95042151,0.989183473,0.724496596,1,0,0,0.070742189,0.312029739,0.819054211,0.543550807,0.961238037,0.922476074,0,0,0,0,0,0,-0.330219823,109.2821184,0.330219823,70.71788163,0,0.89858571,0,0,0,1,7,0% -2018-01-21 16:00:00,83.83625537,120.9036947,43.74776824,205.4105205,21.69278732,21.3684589,0,21.3684589,21.03866975,0.329789156,34.58456913,23.32329865,11.26127048,0.654117576,10.6071529,1.463218689,2.110167551,-5.839421297,5.839421297,0.471246456,0.471246456,0.495860433,0.241878718,7.779651011,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.22316961,0.473905957,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.175240308,7.478096465,20.39840991,7.952002422,0,23.32329865,-0.113544811,96.51969907,0.113544811,83.48030093,0,0.609645221,20.39840991,22.17093998,34.90884671,1,8,71% -2018-01-21 17:00:00,74.3497043,131.4706873,203.1979749,547.9289188,55.38581747,107.9587183,52.71119537,55.24752288,53.71573072,1.531792166,50.93778832,0,50.93778832,1.670086749,49.26770157,1.297647138,2.294596364,-1.704821473,1.704821473,0.821695332,0.821695332,0.272570716,1.333112538,42.87748177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.63360354,1.209972164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965835496,41.21546641,52.59943904,42.42543857,52.71119537,0,0.096200791,84.47956336,-0.096200791,95.52043664,0.530253754,0,80.54974824,42.42543857,108.3163493,1,9,34% -2018-01-21 18:00:00,66.37461082,143.822979,349.1831973,691.356139,72.11872888,272.5748743,199.9985007,72.57637355,69.94408311,2.632290437,86.83815465,0,86.83815465,2.174645765,84.66350888,1.158455499,2.510184523,-0.63693434,0.63693434,0.639075877,0.639075877,0.206535508,1.878453848,60.41753288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.23291314,1.575523454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360933418,58.0756307,68.59384656,59.65115415,199.9985007,0,0.289284335,73.18488496,-0.289284335,106.815115,0.87715967,0,244.0244654,59.65115415,283.0649527,1,10,16% -2018-01-21 19:00:00,60.62232105,158.2266736,451.8991084,755.6076144,81.22497851,423.5331883,341.3508362,82.18235208,78.77574572,3.406606362,112.0174035,0,112.0174035,2.44923279,109.5681707,1.058059103,2.761576419,-0.054969375,0.054969375,0.539554006,0.539554006,0.1797414,2.119982967,68.18593962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.72224317,1.774460819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535920443,65.54291874,77.25816361,67.31737956,341.3508362,0,0.451756745,63.14354915,-0.451756745,116.8564508,0.939320966,0,397.8961609,67.31737956,441.9540395,1,11,11% -2018-01-21 20:00:00,57.79551084,174.3289161,500.7672906,779.9091945,85.1204768,532.7686425,446.4398668,86.32877572,82.55378036,3.774995362,123.9835237,0,123.9835237,2.566696437,121.4168273,1.008721957,3.042613568,0.392936036,-0.392936036,0.46295767,0.46295767,0.169980105,2.092269215,67.29457009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.35383377,1.859562831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515841924,64.68610044,80.86967569,66.54566328,446.4398668,0,0.572425444,55.0804669,-0.572425444,124.9195331,0.96265238,0,510.6360761,66.54566328,554.1888818,1,12,9% -2018-01-21 21:00:00,58.33371869,190.9540344,491.5595417,775.5783101,84.40353252,584.290927,498.7268889,85.56403806,81.85845459,3.705583461,121.7293799,0,121.7293799,2.545077921,119.184302,1.018115456,3.33277662,0.833901313,-0.833901313,0.387548166,0.387548166,0.171705613,1.825776486,58.72324784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.68546019,1.84390029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.322768849,56.44701947,80.00822904,58.29091976,498.7268889,0,0.643038727,49.98121529,-0.643038727,130.0187847,0.972244185,0,564.8925469,58.29091976,603.042788,1,13,7% -2018-01-21 22:00:00,62.14743577,206.6144598,425.0494739,740.7350409,78.97956257,567.7908391,487.9885992,79.80223983,76.59803735,3.204202476,105.4396912,0,105.4396912,2.381525215,103.058166,1.084677376,3.606102606,1.375340448,-1.375340448,0.294956621,0.294956621,0.185812635,1.364870382,43.89892319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62894705,1.725406911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988843945,42.19731474,74.617791,43.92272166,487.9885992,0,0.658789678,48.79236803,-0.658789678,131.207632,0.974103243,0,549.9690682,43.92272166,578.715611,1,14,5% -2018-01-21 23:00:00,68.67782114,220.3781023,307.1811186,658.0779895,67.89615983,475.2858741,407.121373,68.16450113,65.8488401,2.315661026,76.52693836,0,76.52693836,2.047319729,74.47961863,1.198654102,3.846323484,2.227107141,-2.227107141,0.149295938,0.149295938,0.22102973,0.781134587,25.12397345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.29640979,1.483276174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.565929349,24.15011892,63.86233914,25.63339509,407.121373,0,0.618652165,51.78222491,-0.618652165,128.2177751,0.96917914,0,458.4358813,25.63339509,475.2124257,1,15,4% -2018-01-21 00:00:00,77.20354986,232.1297364,151.7045146,470.7641865,47.43585868,294.5661881,247.4170829,47.14910523,46.00549252,1.143612711,38.21288209,0,38.21288209,1.430366159,36.78251593,1.347456139,4.051428192,4.19036166,-4.19036166,0,0,0.312685874,0.35759154,11.50137313,0.15714263,1,0.234261385,0,0.934156941,0.972918905,0.724496596,1,44.47938671,1.036295413,0.025020061,0.312029739,0.931497918,0.655994514,0.961238037,0.922476074,0.250059417,11.05555733,44.72944613,12.09185274,208.5373118,0,0.525564794,58.29372728,-0.525564794,121.7062727,0.954864252,0,243.8542703,12.09185274,251.7681461,1,16,3% -2018-01-21 01:00:00,86.98401932,242.2475265,9.66172333,57.53920222,6.634327699,28.8246211,22.31750871,6.507112393,6.434278241,0.072834152,2.542646139,0,2.542646139,0.200049458,2.342596681,1.518157534,4.228016942,18.8063722,-18.8063722,0,0,0.686660906,0.050012365,1.60856956,0.728697708,1,0.053123437,0,0.956214978,0.994976941,0.724496596,1,6.220217442,0.144935151,0.092566115,0.312029739,0.771244533,0.495741129,0.961238037,0.922476074,0.034833603,1.546218246,6.255051045,1.691153398,6.054791262,0,0.387866148,67.17821012,-0.387866148,112.8217899,0.921089549,0,11.832056,1.691153398,12.93888207,1,17,9% -2018-01-21 02:00:00,98.09058083,251.2728415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712003601,4.385538405,-7.032920587,7.032920587,1,0.267146057,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.206281492,78.09547334,-0.206281492,101.9045267,0.807612767,0,0,0,0,1,18,0% -2018-01-21 03:00:00,109.5416852,259.7864861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911863075,4.534129535,-2.776398224,2.776398224,1,0.995054251,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.003308633,89.81042897,-0.003308633,90.18957103,0,0,0,0,0,1,19,0% -2018-01-21 04:00:00,121.3038151,268.452276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117150969,4.685376101,-1.559918559,1.559918559,1,0.796915474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.211035694,102.1830534,0.211035694,77.81694657,0,0.813073255,0,0,0,1,20,0% -2018-01-21 05:00:00,133.1077656,278.2219782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32316877,4.85588957,-0.941331869,0.941331869,1,0.69113092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422145413,114.9701107,0.422145413,65.02988934,0,0.931557401,0,0,0,1,21,0% -2018-01-21 06:00:00,144.5592728,290.8801685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523035275,5.076816669,-0.538127398,0.538127398,1,0.622178895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615633666,127.997978,0.615633666,52.00202198,0,0.968782869,0,0,0,1,22,0% -2018-01-21 07:00:00,154.7759268,310.4976744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701349525,5.419206738,-0.231986338,0.231986338,1,0.56982569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778312726,141.1063487,0.778312726,38.89365129,0,0.98575847,0,0,0,1,23,0% -2018-01-22 08:00:00,161.2681976,344.7907066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814661027,6.017733061,0.028320355,-0.028320355,1,0.525310624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899092224,154.0389995,0.899092224,25.96100055,0,0.994388352,0,0,0,1,0,0% -2018-01-22 09:00:00,159.8791047,27.96892399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790416782,0.488149812,0.27212674,-0.27212674,1,0.483617276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969734595,165.8677163,0.969734595,14.1322837,0,0.998439501,0,0,0,1,1,0% -2018-01-22 10:00:00,151.7625912,56.81380108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648756898,0.991587889,0.522876649,-0.522876649,1,0.440736516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985416366,170.2028509,0.985416366,9.797149102,0,0.999260027,0,0,0,1,2,0% -2018-01-22 11:00:00,140.9909107,73.5360086,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460755607,1.283445469,0.808504593,-0.808504593,1,0.391891261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945057069,160.9189473,0.945057069,19.08105273,0,0.997093142,0,0,0,1,3,0% -2018-01-22 12:00:00,129.3600459,84.98561497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257758721,1.483278798,1.177689827,-1.177689827,1,0.328756868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851393388,148.3635469,0.851393388,31.63645305,0,0.991272741,0,0,0,1,4,0% -2018-01-22 13:00:00,117.5259746,94.26249617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051215214,1.645190919,1.749369709,-1.749369709,1,0.23099385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710793439,135.2995084,0.710793439,44.70049158,0,0.979656076,0,0,0,1,5,0% -2018-01-22 14:00:00,105.8210175,102.7896127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846925174,1.794017179,2.966692211,-2.966692211,1,0.022819442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532823715,122.1964411,0.532823715,57.80355887,0,0.956160333,0,0,0,1,6,0% -2018-01-22 15:00:00,94.50471454,111.3916087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649418427,1.944150331,9.522277887,-9.522277887,1,0,#DIV/0!,0,0,0.523412761,1,0.104633362,0,0.950705258,0.989467221,0.724496596,1,0,0,0.071718155,0.312029739,0.816834889,0.541331485,0.961238037,0.922476074,0,0,0,0,0,0,-0.329598108,109.2443841,0.329598108,70.7556159,0,0.8983001,0,0,0,1,7,0% -2018-01-22 16:00:00,83.7259244,120.6939287,45.28304072,211.087769,22.21440546,21.88592186,0,21.88592186,21.54455917,0.341362689,35.43155165,23.78230787,11.64924378,0.669846287,10.97939749,1.46129305,2.106506442,-5.761735333,5.761735333,0.484531538,0.484531538,0.490567884,0.251722147,8.09624955,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.70944976,0.485301355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.182371839,7.782423023,20.8918216,8.267724378,0,23.78230787,-0.112665494,96.46899258,0.112665494,83.53100742,0,0.6062084,20.8918216,22.68475919,35.7385428,1,8,71% -2018-01-22 17:00:00,74.2126871,131.2700441,205.7459363,551.5039973,55.6998018,109.3198033,53.74855621,55.57124704,54.02024727,1.550999775,51.56503883,0,51.56503883,1.679554535,49.8854843,1.295255737,2.291094478,-1.70013111,1.70013111,0.820893233,0.820893233,0.270721273,1.348410115,43.36950443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.92631643,1.216831543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976918538,41.6884173,52.90323497,42.90524884,53.74855621,0,0.097458144,84.40718219,-0.097458144,95.59281781,0.536959245,0,81.76401912,42.90524884,109.8446464,1,9,34% -2018-01-22 18:00:00,66.20779346,143.6389322,352.2676128,693.8315651,72.36150109,274.6955758,201.8604989,72.83507691,70.17953484,2.655542064,87.59332738,0,87.59332738,2.181966243,85.41136114,1.155543986,2.506972301,-0.638911046,0.638911046,0.639413913,0.639413913,0.205416276,1.89468721,60.93965363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4592383,1.580827116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372694434,58.57751302,68.83193273,60.15834014,201.8604989,0,0.290935883,73.08600574,-0.290935883,106.9139943,0.878140828,0,246.0938783,60.15834014,285.4663088,1,10,16% -2018-01-22 19:00:00,60.42478106,158.075522,455.41359,757.6709091,81.45317629,426.2694192,343.8392567,82.4301625,78.99706249,3.433100009,112.8764113,0,112.8764113,2.456113795,110.4202975,1.054611379,2.758938325,-0.059174875,0.059174875,0.540273189,0.540273189,0.178855392,2.137097231,68.73639317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93498126,1.779446084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.548319669,66.07203563,77.48330093,67.85148172,343.8392567,0,0.45381082,63.01155362,-0.45381082,116.9884464,0.939821931,0,400.6309751,67.85148172,445.0384128,1,11,11% -2018-01-22 20:00:00,57.5725924,174.2317489,504.6286203,781.887107,85.35681192,536.066378,449.4792851,86.58709281,82.78298911,3.804103696,124.9268742,0,124.9268742,2.573822813,122.3530514,1.004831296,3.04091768,0.386979716,-0.386979716,0.463976261,0.463976261,0.169147782,2.10992134,67.8623231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.57415794,1.864725866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.528630828,65.23184623,81.10278877,67.0965721,449.4792851,0,0.574864685,54.90984347,-0.574864685,125.0901565,0.96302301,0,513.9616828,67.0965721,557.8750473,1,12,9% -2018-01-22 21:00:00,58.09737091,190.9237297,495.6702103,777.7201395,84.6627783,588.1134767,502.2670221,85.84645458,82.10988317,3.736571417,122.7338763,0,122.7338763,2.552895138,120.1809811,1.013990409,3.332247704,0.825524953,-0.825524953,0.388980608,0.388980608,0.170804653,1.843420931,59.29075387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9271429,1.849563837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335552189,56.99252785,80.26269509,58.84209169,502.2670221,0,0.645819745,49.77283502,-0.645819745,130.227165,0.972579016,0,568.7570613,58.84209169,607.2680335,1,13,7% -2018-01-22 22:00:00,61.91119132,206.6461415,429.2885432,743.3686809,79.28115276,572.1219386,491.9952467,80.12669186,76.89053349,3.236158371,106.4765967,0,106.4765967,2.390619272,104.0859774,1.080554132,3.606655555,1.362429704,-1.362429704,0.297164488,0.297164488,0.184680337,1.381724376,44.44100558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91010547,1.731995525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001054607,42.71838496,74.91116007,44.45038049,491.9952467,0,0.661845541,48.55922342,-0.661845541,131.4407766,0.974453672,0,554.3377351,44.45038049,583.4296201,1,14,5% -2018-01-22 23:00:00,68.45110368,220.455713,311.3851393,661.866713,68.28473004,480.1853576,411.6123114,68.57304619,66.22569348,2.347352709,77.55796866,0,77.55796866,2.059036554,75.49893211,1.194697136,3.847678047,2.203044428,-2.203044428,0.153410904,0.153410904,0.219293478,0.795898975,25.59884692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.65865559,1.491764975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576626098,24.60658536,64.23528169,26.09835033,411.6123114,0,0.621896076,51.54527145,-0.621896076,128.4547285,0.969600715,0,463.334873,26.09835033,480.4157213,1,15,4% -2018-01-22 00:00:00,76.99064717,232.2379216,155.541481,477.4924071,48.05311496,300.3180174,252.5413438,47.77667363,46.60413625,1.172537384,39.16181157,0,39.16181157,1.448978713,37.71283286,1.343740286,4.05331638,4.121931054,-4.121931054,0,0,0.308940835,0.362244678,11.65103406,0.148746384,1,0.238006396,0,0.933623709,0.972385672,0.724496596,1,45.04848878,1.049780145,0.02377103,0.312029739,0.934801297,0.659297893,0.961238037,0.922476074,0.253671989,11.19941711,45.30216077,12.24919725,214.976732,0,0.528890805,58.06945838,-0.528890805,121.9305416,0.955462527,0,250.7043725,12.24919725,258.7212271,1,16,3% -2018-01-22 01:00:00,86.79254207,242.376832,11.11442757,65.27610144,7.462133931,32.84670351,25.5257952,7.320908311,7.237123061,0.08378525,2.919832512,0,2.919832512,0.22501087,2.694821642,1.514815625,4.230273749,17.68692347,-17.68692347,0,0,0.671391656,0.056252718,1.809280765,0.713835075,1,0.056478816,0,0.955875082,0.994637045,0.724496596,1,6.998062042,0.16301961,0.091160183,0.312029739,0.774209639,0.498706235,0.961238037,0.922476074,0.039116465,1.739149491,7.037178507,1.902169101,7.304587271,0,0.3910435,66.98055537,-0.3910435,113.0194446,0.922136987,0,13.77300861,1.902169101,15.01794024,1,17,9% -2018-01-22 02:00:00,97.90075949,251.4195537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.708690593,4.388099016,-7.203698461,7.203698461,1,0.23794132,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.20950163,77.90685191,-0.20950163,102.0931481,0.811338372,0,0,0,0,1,18,0% -2018-01-22 03:00:00,109.3597441,259.9512514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.908687604,4.537005232,-2.80321654,2.80321654,1,0.990468049,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006319652,89.6379082,-0.006319652,90.3620918,0,0,0,0,0,1,19,0% -2018-01-22 04:00:00,121.1254562,268.6390959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114038019,4.688636724,-1.569195761,1.569195761,1,0.798501969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208314191,102.0235778,0.208314191,77.97642222,0,0.809977945,0,0,0,1,20,0% -2018-01-22 05:00:00,132.9269006,278.4370514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320012081,4.859643306,-0.945392908,0.945392908,1,0.691825398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419773701,114.8203011,0.419773701,65.17969887,0,0.930888203,0,0,0,1,21,0% -2018-01-22 06:00:00,144.3664628,291.1256885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519670106,5.081101802,-0.539954524,0.539954524,1,0.622491351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613647772,127.8537306,0.613647772,52.14626945,0,0.968520033,0,0,0,1,22,0% -2018-01-22 07:00:00,154.5575959,310.7310585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697538932,5.423280059,-0.232594949,0.232594949,1,0.569929769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776721972,140.9614144,0.776721972,39.03858564,0,0.985626901,0,0,0,1,23,0% -2018-01-23 08:00:00,161.0280756,344.7625833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810470107,6.017242217,0.028543013,-0.028543013,1,0.525272547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897878611,153.8806062,0.897878611,26.11939379,0,0.994313185,0,0,0,1,0,0% -2018-01-23 09:00:00,159.6890636,27.54236435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787099939,0.480704942,0.27307198,-0.27307198,1,0.483455631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968854066,165.6625468,0.968854066,14.33745318,0,0.998392641,0,0,0,1,1,0% -2018-01-23 10:00:00,151.639211,56.37781149,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646603507,0.983978436,0.524628837,-0.524628837,1,0.440436875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984801853,169.9980534,0.984801853,10.00194663,0,0.999228365,0,0,0,1,2,0% -2018-01-23 11:00:00,140.901153,73.18114514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459189039,1.277251933,0.811392323,-0.811392323,1,0.39139743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944623122,160.843036,0.944623122,19.15696396,0,0.997068837,0,0,0,1,3,0% -2018-01-23 12:00:00,129.2824973,84.69046689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256405242,1.478127492,1.182558686,-1.182558686,1,0.327924244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85104207,148.3251921,0.85104207,31.67480786,0,0.991248498,0,0,0,1,4,0% -2018-01-23 13:00:00,117.4486666,94.00476896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049865935,1.640692731,1.758684739,-1.758684739,1,0.229400886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71042106,135.2691843,0.71042106,44.7308157,0,0.979619204,0,0,0,1,5,0% -2018-01-23 14:00:00,105.7360826,102.554621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845442779,1.789915799,2.991404122,-2.991404122,1,0.018593456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532327975,122.1628821,0.532327975,57.83711794,0,0.956072943,0,0,0,1,6,0% -2018-01-23 15:00:00,94.40586039,111.1702993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647693097,1.940287754,9.769876647,-9.769876647,1,0,#DIV/0!,0,0,0.532839866,1,0.102000221,0,0.951001947,0.989763911,0.724496596,1,0,0,0.072747612,0.312029739,0.814502161,0.538998757,0.961238037,0.922476074,0,0,0,0,0,0,-0.328885125,109.2011211,0.328885125,70.79887894,0,0.897971233,0,0,0,1,7,0% -2018-01-23 16:00:00,83.60944252,120.481753,46.92052726,217.0515641,22.76156935,22.4289308,0,22.4289308,22.07522405,0.353706754,36.30539869,24.24262833,12.06277036,0.686345297,11.37642506,1.459260058,2.102803278,-5.681407916,5.681407916,0.498268335,0.498268335,0.485108985,0.262331168,8.437472106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.21954503,0.497254831,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190058038,8.110419123,21.40960307,8.607673955,0,24.24262833,-0.111690641,96.4127828,0.111690641,83.5872172,0,0.602334918,21.40960307,23.2098555,36.59998929,1,8,71% -2018-01-23 17:00:00,74.06934898,131.0675541,208.411333,555.190233,56.02623006,110.7683078,54.86038267,55.90792517,54.33683251,1.571092661,52.22113814,0,52.22113814,1.689397551,50.53174059,1.292754014,2.287560361,-1.694874342,1.694874342,0.819994272,0.819994272,0.268825257,1.364312293,43.88097312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.23063021,1.223962775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988439612,42.18006046,53.21906982,43.40402323,54.86038267,0,0.098813667,84.32913976,-0.098813667,95.67086024,0.54399712,0,83.06295997,43.40402323,111.4700251,1,9,34% -2018-01-23 18:00:00,66.03452623,143.4539251,355.4668733,696.3650766,72.61307953,276.9184143,203.8152275,73.10318671,70.42352727,2.679659441,88.37661115,0,88.37661115,2.189552262,86.18705889,1.152519903,2.503743318,-0.640679235,0.640679235,0.639716292,0.639716292,0.204275236,1.911436802,61.47837808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.6937731,1.58632316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384829457,59.09535546,69.07860256,60.68167862,203.8152275,0,0.292684447,72.98126149,-0.292684447,107.0187385,0.879167554,0,248.2663376,60.68167862,287.9812827,1,10,16% -2018-01-23 19:00:00,60.22079099,157.9248196,459.0351538,759.7702117,81.68840896,429.1085127,346.4229098,82.68560292,79.22520203,3.460400887,113.7615945,0,113.7615945,2.463206928,111.2983876,1.051051081,2.756308073,-0.063280877,0.063280877,0.540975357,0.540975357,0.177956761,2.154659775,69.30126496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.15427767,1.784585035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.561043672,66.61501188,77.71532134,68.39959692,346.4229098,0,0.455957478,62.873443,-0.455957478,117.126557,0.940340652,0,403.4708661,68.39959692,448.2370342,1,11,11% -2018-01-23 20:00:00,57.3435207,174.1369748,508.5863665,783.8893257,85.59892575,539.4609377,452.6091965,86.85174117,83.01780231,3.833938858,125.8937762,0,125.8937762,2.581123438,123.3126528,1.000833241,3.039263559,0.381080625,-0.381080625,0.464985065,0.464985065,0.168307551,2.127959205,68.44248285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79986931,1.870015144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.5416992,65.78951786,81.34156851,67.659533,452.6091965,0,0.577389156,54.73288145,-0.577389156,125.2671186,0.963403292,0,517.3867585,67.659533,561.6685697,1,12,9% -2018-01-23 21:00:00,57.85557662,190.8978246,499.8649634,779.8782559,84.9266645,592.0225045,505.888499,86.13400546,82.36581222,3.768193238,123.7588999,0,123.7588999,2.560852281,121.1980476,1.009770303,3.331795575,0.817194782,-0.817194782,0.390405151,0.390405151,0.169899214,1.861392641,59.86878583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.17315164,1.85532876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348572632,57.54815416,80.52172427,59.40348292,505.888499,0,0.648676246,49.55812934,-0.648676246,130.4418707,0.972919946,0,572.7107355,59.40348292,611.589127,1,13,7% -2018-01-23 22:00:00,61.67050865,206.6836242,433.5988883,746.0103683,79.5861236,576.5260582,496.0710983,80.4549599,77.18630833,3.268651573,107.5308858,0,107.5308858,2.399815268,105.1310705,1.076353427,3.607309753,1.349591966,-1.349591966,0.299359871,0.299359871,0.183547804,1.398854833,44.99197995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.19441549,1.738657992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013465564,43.24800248,75.20788106,44.98666047,496.0710983,0,0.664965421,48.32032739,-0.664965421,131.6796726,0.97480812,0,558.7820159,44.98666047,588.2248854,1,14,5% -2018-01-23 23:00:00,68.22099821,220.5397393,315.6488601,665.6488799,68.67479909,485.1416079,416.1581129,68.98349495,66.60400051,2.379494438,78.60351916,0,78.60351916,2.070798575,76.53272058,1.190681038,3.849144581,2.179213735,-2.179213735,0.157486193,0.157486193,0.217567075,0.810906617,26.08154429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.0222987,1.500286519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587499084,25.07057243,64.60979778,26.57085895,416.1581129,0,0.625191637,51.30374551,-0.625191637,128.6962545,0.970024522,0,468.2933724,26.57085895,485.6834681,1,15,4% -2018-01-23 00:00:00,76.77524104,232.3526363,159.4339253,484.179042,48.66753209,306.1092376,257.7073309,48.40190671,47.20002643,1.201880274,40.12410672,0,40.12410672,1.467505657,38.65660106,1.33998074,4.055318529,4.054999451,-4.054999451,0,0,0.305252047,0.366876414,11.80000661,0.140370646,1,0.241784745,0,0.933082679,0.971844642,0.724496596,1,45.61427547,1.063202853,0.022515764,0.312029739,0.938133516,0.662630112,0.961238037,0.922476074,0.257291421,11.34261519,45.8715669,12.40581804,221.5327865,0,0.53225627,57.84197096,-0.53225627,122.158029,0.956060289,0,257.6702669,12.40581804,265.7896266,1,16,3% -2018-01-23 01:00:00,86.59870099,242.5126144,12.68686474,73.47564957,8.327627515,37.14049289,28.96833513,8.172157765,8.07651882,0.095638945,3.327185935,0,3.327185935,0.251108695,3.07607724,1.51143246,4.232643598,16.6820102,-16.6820102,0,0,0.656397596,0.062777174,2.019129705,0.699034328,1,0.059873167,0,0.955528525,0.994290488,0.724496596,1,7.811564946,0.181927395,0.089745053,0.312029739,0.777210149,0.501706745,0.961238037,0.922476074,0.043585757,1.940864274,7.855150704,2.122791669,8.718474453,0,0.394257625,66.7803179,-0.394257625,113.2196821,0.923179371,0,15.90386647,2.122791669,17.29319116,1,17,9% -2018-01-23 02:00:00,97.70959745,251.5727337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705354186,4.390772511,-7.384057679,7.384057679,1,0.207098078,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.212739043,77.71708435,-0.212739043,102.2829157,0.81497027,0,0,0,0,1,18,0% -2018-01-23 03:00:00,109.1767103,260.1226358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.905493061,4.539996453,-2.830613073,2.830613073,1,0.985782966,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009340101,89.46484386,-0.009340101,90.53515614,0,0,0,0,0,1,19,0% -2018-01-23 04:00:00,120.9460325,268.8329278,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110906485,4.692019729,-1.578546463,1.578546463,1,0.800101033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.20558828,101.8639386,0.20558828,78.13606144,0,0.806795475,0,0,0,1,20,0% -2018-01-23 05:00:00,132.7447316,278.6598495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316832631,4.863531867,-0.949430314,0.949430314,1,0.692515836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.417399434,114.6705114,0.417399434,65.32948856,0,0.930210667,0,0,0,1,21,0% -2018-01-23 06:00:00,144.1717309,291.3800201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516271392,5.085540725,-0.541726434,0.541726434,1,0.622794366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611657878,127.7094751,0.611657878,52.2905249,0,0.968254956,0,0,0,1,22,0% -2018-01-23 07:00:00,154.3361588,310.9747308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.693674126,5.427532942,-0.233131723,0.233131723,1,0.570021562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775122577,140.8161471,0.775122577,39.18385289,0,0.985494073,0,0,0,1,23,0% -2018-01-24 08:00:00,160.7827981,344.747926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806189208,6.016986398,0.028852174,-0.028852174,1,0.525219677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89664884,153.7210098,0.89664884,26.27899022,0,0.99423681,0,0,0,1,0,0% -2018-01-24 09:00:00,159.4913754,27.12478121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783649629,0.473416741,0.274122361,-0.274122361,1,0.483276005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967947501,165.4542716,0.967947501,14.54572839,0,0.998344306,0,0,0,1,1,0% -2018-01-24 10:00:00,151.5081068,55.94117834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315307,0.97635775,0.526514766,-0.526514766,1,0.440114362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98414975,169.7851732,0.98414975,10.21482681,0,0.999194724,0,0,0,1,2,0% -2018-01-24 11:00:00,140.8043708,72.82298695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.457499872,1.271000893,0.814463492,-0.814463492,1,0.390872229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944139153,160.7587142,0.944139153,19.24128582,0,0.997041705,0,0,0,1,3,0% -2018-01-24 12:00:00,129.198432,84.39173924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254938027,1.472913711,1.187710602,-1.187710602,1,0.327043214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850628272,148.2800695,0.850628272,31.71993045,0,0.991219917,0,0,0,1,4,0% -2018-01-24 13:00:00,117.3651253,93.74368789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048407863,1.636136007,1.768534314,-1.768534314,1,0.22771651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709974585,135.2328475,0.709974585,44.76715249,0,0.979574944,0,0,0,1,5,0% -2018-01-24 14:00:00,105.6450375,102.3165906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843853743,1.785761386,3.017673372,-3.017673372,1,0.01410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531748161,122.1236473,0.531748161,57.87635274,0,0.955970526,0,0,0,1,6,0% -2018-01-24 15:00:00,94.30090694,110.9462869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645861314,1.936378,10.04336501,-10.04336501,1,0,#DIV/0!,0,0,0.542828486,1,0.099241132,0,0.951311102,0.990073065,0.724496596,1,0,0,0.073830291,0.312029739,0.812057951,0.536554547,0.961238037,0.922476074,0,0,0,0,0,0,-0.32808042,109.1523062,0.32808042,70.84769383,0,0.897598342,0,0,0,1,7,0% -2018-01-24 16:00:00,83.4868378,120.2672657,48.66208809,223.2947753,23.33343621,22.9966824,0,22.9966824,22.62984702,0.366835375,37.20315304,24.7008772,12.50227584,0.703589193,11.79868665,1.457120202,2.099059768,-5.598814861,5.598814861,0.51239258,0.51239258,0.47949928,0.273732552,8.804179821,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.75266972,0.509747975,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.198318302,8.462912527,21.95098803,8.972660502,0,24.7008772,-0.110620041,96.35105944,0.110620041,83.64894056,0,0.598002337,21.95098803,23.7438428,37.49085826,1,8,71% -2018-01-24 17:00:00,73.91973972,130.8632994,211.1933966,558.9817622,56.36460119,112.3045152,56.0474497,56.25706553,54.6650005,1.592065032,52.90588482,0,52.90588482,1.699600689,51.20628413,1.29014284,2.283995445,-1.689071071,1.689071071,0.819001854,0.819001854,0.266886191,1.380810357,44.41160759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.54607776,1.231354914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.000392403,42.69012649,53.54647017,43.92148141,56.0474497,0,0.100267045,84.24545166,-0.100267045,95.75454834,0.551331671,0,84.44720424,43.92148141,113.1929354,1,9,34% -2018-01-24 18:00:00,65.85487348,143.2680262,358.7794714,698.9532466,72.87314382,279.2425685,205.8621876,73.38038087,70.67574966,2.704631204,89.1876308,0,89.1876308,2.19739416,86.99023664,1.149384371,2.50049877,-0.642239753,0.642239753,0.639983156,0.639983156,0.203114029,1.928693141,62.03340126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93621886,1.592004588,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397331615,59.62886484,69.33355047,61.22086943,205.8621876,0,0.294529267,72.87068767,-0.294529267,107.1293123,0.880237584,0,250.5411851,61.22086943,290.6090197,1,10,16% -2018-01-24 19:00:00,60.01042772,157.7746291,462.7618206,761.9030129,81.93040777,432.04895,349.1005523,82.94839776,79.45990369,3.488494075,114.6724652,0,114.6724652,2.470504085,112.2019611,1.047379549,2.753686753,-0.067284304,0.067284304,0.541659983,0.541659983,0.177046602,2.172660364,69.88022576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.37988183,1.7898718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574085037,67.17153103,77.95396687,68.96140283,349.1005523,0,0.458195527,62.7292707,-0.458195527,117.2707293,0.940876281,0,406.4143961,68.96140283,451.548255,1,11,11% -2018-01-24 20:00:00,57.10838533,174.0446605,512.6382125,785.9136773,85.84656062,542.9502455,455.827792,87.12245347,83.25797008,3.864483385,126.8836603,0,126.8836603,2.588590543,124.2950698,0.996729355,3.037652371,0.375243698,-0.375243698,0.465983238,0.465983238,0.167460323,2.146372166,69.03470696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.03072771,1.875425036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555039328,66.3587862,81.58576704,68.23421123,455.827792,0,0.579997276,54.54964895,-0.579997276,125.450351,0.963792699,0,520.9092648,68.23421123,565.5671914,1,12,9% -2018-01-24 21:00:00,57.60843985,190.8763894,504.1412735,782.0505061,85.19492721,596.0154688,509.5890531,86.42641569,82.62598582,3.80042987,124.8038299,0,124.8038299,2.568941391,122.2348885,1.005456952,3.331421459,0.808917639,-0.808917639,0.391820626,0.391820626,0.168990185,1.879681103,60.45700563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.4232404,1.861189293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36182256,58.1135734,80.78506296,59.9747627,509.5890531,0,0.651606321,49.33717864,-0.651606321,130.6628214,0.973266552,0,576.7510434,59.9747627,616.0033261,1,13,7% -2018-01-24 22:00:00,61.42550422,206.726964,437.9779059,748.6576869,79.89419183,581.0002673,500.2135177,80.78674963,77.48508717,3.301662457,108.6019187,0,108.6019187,2.409104662,106.192814,1.072077293,3.608066174,1.33683702,-1.33683702,0.301541095,0.301541095,0.182416032,1.416252064,45.5515347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48161308,1.745388127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.026069799,43.78586779,75.50768288,45.53125592,500.2135177,0,0.668147174,48.07577664,-0.668147174,131.9242234,0.975166188,0,563.2989921,45.53125592,593.0982885,1,14,5% -2018-01-24 23:00:00,67.98762586,220.6302071,319.9697476,669.4213779,69.06604427,490.1513358,420.7558205,69.39551533,66.98344821,2.412067113,79.66296585,0,79.66296585,2.082596061,77.58036979,1.186607922,3.850723543,2.155629641,-2.155629641,0.16151931,0.16151931,0.215851795,0.826149562,26.57180978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.38703826,1.508833757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.598542545,25.54183427,64.98558081,27.05066802,420.7558205,0,0.628536576,51.05776392,-0.628536576,128.9422361,0.970450135,0,473.3081235,27.05066802,491.0122447,1,15,4% -2018-01-24 00:00:00,76.55744891,232.4738745,163.3794653,490.8188217,49.27867742,311.9358339,262.911467,49.0243669,47.79274348,1.231623421,41.09917685,0,41.09917685,1.485933943,39.61324291,1.33617955,4.057434535,3.989563737,-3.989563737,0,0,0.301620998,0.371483486,11.94818587,0.132021215,1,0.245594072,0,0.932534119,0.971296083,0.724496596,1,46.17632986,1.076554084,0.02125511,0.312029739,0.941492489,0.665989085,0.961238037,0.922476074,0.260915653,11.48505073,46.43724552,12.56160481,228.2015758,0,0.535658894,57.61139301,-0.535658894,122.388607,0.956657015,0,264.7478838,12.56160481,272.969203,1,16,3% -2018-01-24 01:00:00,86.40264148,242.6548401,14.37810101,82.10318981,9.226576761,41.69323497,32.63648534,9.056749628,8.948361429,0.108388199,3.764352385,0,3.764352385,0.278215332,3.486137053,1.508010576,4.235125905,15.77571978,-15.77571978,0,0,0.641710387,0.069553833,2.237090357,0.684308884,1,0.063303853,0,0.955175489,0.993937452,0.724496596,1,8.656754881,0.201566061,0.088321978,0.312029739,0.780243684,0.50474028,0.961238037,0.922476074,0.048219565,2.150376343,8.704974446,2.351942404,10.30304849,0,0.397505693,66.57766039,-0.397505693,113.4223396,0.924215638,0,18.22721298,2.351942404,19.76651224,1,17,8% -2018-01-24 02:00:00,97.51718943,251.7323244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701996033,4.393557895,-7.574721288,7.574721288,1,0.17449268,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.215991731,77.52628349,-0.215991731,102.4737165,0.818509657,0,0,0,0,1,18,0% -2018-01-24 03:00:00,108.9926638,260.300559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902280843,4.543101799,-2.858593536,2.858593536,1,0.980998025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012368275,89.29133198,-0.012368275,90.70866802,0,0,0,0,0,1,19,0% -2018-01-24 04:00:00,120.7656087,269.0336632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107757494,4.695523222,-1.587967387,1.587967387,1,0.801712106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202859298,101.704213,0.202859298,78.295787,0,0.803523745,0,0,0,1,20,0% -2018-01-24 05:00:00,132.5613083,278.8902204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313631291,4.867552598,-0.953441657,0.953441657,1,0.693201816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415023533,114.5207985,0.415023533,65.47920151,0,0.929524904,0,0,0,1,21,0% -2018-01-24 06:00:00,143.9751166,291.6429307,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512839826,5.090129381,-0.543441557,0.543441557,1,0.623087669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609664473,127.5652461,0.609664473,52.43475386,0,0.967987676,0,0,0,1,22,0% -2018-01-24 07:00:00,154.1116647,311.2283126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689755965,5.431958781,-0.233595637,0.233595637,1,0.570100896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77351461,140.6705554,0.77351461,39.32944462,0,0.98535998,0,0,0,1,23,0% -2018-01-25 08:00:00,160.5324774,344.7463271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801820287,6.016958492,0.029248528,-0.029248528,1,0.525151897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895402601,153.5601895,0.895402601,26.43981052,0,0.994159197,0,0,0,1,0,0% -2018-01-25 09:00:00,159.2861546,26.71657215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780067851,0.466292149,0.275278402,-0.275278402,1,0.48307831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967014283,165.2428777,0.967014283,14.7571223,0,0.998294456,0,0,0,1,1,0% -2018-01-25 10:00:00,151.3692994,55.50442655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641892661,0.968734993,0.528534951,-0.528534951,1,0.43976889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983459219,169.5644321,0.983459219,10.43556792,0,0.999159051,0,0,0,1,2,0% -2018-01-25 11:00:00,140.700554,72.46187754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455687928,1.264698345,0.817718935,-0.817718935,1,0.390315516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943604206,160.6659225,0.943604206,19.3340775,0,0.997011682,0,0,0,1,3,0% -2018-01-25 12:00:00,129.10784,84.08966531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253356898,1.467641527,1.193147687,-1.193147687,1,0.326113418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850151039,148.228101,0.850151039,31.77189898,0,0.991186921,0,0,0,1,4,0% -2018-01-25 13:00:00,117.2753503,93.47942618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046840994,1.63152377,1.778926036,-1.778926036,1,0.225939421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709453167,135.1904409,0.709453167,44.80955909,0,0.979523184,0,0,0,1,5,0% -2018-01-25 14:00:00,105.5478953,102.075659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842158291,1.781556337,3.045548309,-3.045548309,1,0.009334255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531083643,122.0787015,0.531083643,57.92129852,0,0.955852871,0,0,0,1,6,0% -2018-01-25 15:00:00,94.18988174,110.7196844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643923558,1.93242304,10.34578721,-10.34578721,1,0,#DIV/0!,0,0,0.553388023,1,0.096358362,0,0.951632226,0.990394189,0.724496596,1,0,0,0.074965898,0.312029739,0.809504306,0.534000902,0.961238037,0.922476074,0,0,0,0,0,0,-0.327183672,109.0979247,0.327183672,70.9020753,0,0.897180638,0,0,0,1,7,0% -2018-01-25 16:00:00,83.35814536,120.0505606,50.50944607,229.8091638,23.92907934,23.58829085,0,23.58829085,23.20752931,0.38076154,38.12159551,25.1534455,12.96815001,0.721550031,12.24659998,1.454874095,2.095277551,-5.514322414,5.514322414,0.526841639,0.526841639,0.473754539,0.285952891,9.197227937,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.30795991,0.522760541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.207171896,8.840725327,22.51513181,9.363485868,0,25.1534455,-0.109453623,96.28382028,0.109453623,83.71617972,0,0.593185517,22.51513181,24.28414545,38.40861933,1,8,71% -2018-01-25 17:00:00,73.76391533,130.6573568,214.0912255,562.8725568,56.71440012,113.9286255,57.31046369,56.61816179,55.0042517,1.61391009,53.6190447,0,53.6190447,1.710148417,51.90889628,1.287423192,2.280401069,-1.682742599,1.682742599,0.817919622,0.817919622,0.264907635,1.397894849,44.96110356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.87217892,1.238996707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.012770059,43.21832292,53.88494898,44.45731963,57.31046369,0,0.101817832,84.15614101,-0.101817832,95.84385899,0.558926887,0,85.91730802,44.45731963,115.0137346,1,9,34% -2018-01-25 18:00:00,65.66890483,143.081298,362.203783,701.5926023,73.14136666,281.6671062,208.0007765,73.66632971,70.9358846,2.730445112,90.02598271,0,90.02598271,2.205482068,87.82050064,1.146138605,2.497239748,-0.643594136,0.643594136,0.640214769,0.640214769,0.201934298,1.946446255,62.60440243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.18627045,1.59786425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410193686,60.17773289,69.59646414,61.77559714,208.0007765,0,0.296469455,72.75432673,-0.296469455,107.2456733,0.881348562,0,252.9176493,61.77559714,293.3485422,1,10,16% -2018-01-25 19:00:00,59.79377216,157.6250058,466.5915189,764.0668011,82.17890053,435.0891085,351.8708411,83.21826742,79.70090347,3.517363958,115.6085128,0,115.6085128,2.477997059,113.1305158,1.043598196,2.751075334,-0.071182562,0.071182562,0.542326625,0.542326625,0.176126006,2.191088443,70.47293614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.61153998,1.795300434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587436118,67.74126679,78.1989761,69.53656722,351.8708411,0,0.460523662,62.5790964,-0.460523662,117.4209036,0.941427946,0,409.4600192,69.53656722,454.9703117,1,11,11% -2018-01-25 20:00:00,56.86727847,173.9548659,516.7817792,787.9580131,86.09945849,546.5321448,459.1331833,87.39896148,83.50324214,3.895719341,127.8959418,0,127.8959418,2.596216347,125.2997255,0.992521246,3.036085159,0.369473421,-0.369473421,0.466970013,0.466970013,0.166606993,2.165149404,69.63864748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.26649254,1.880949905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.568643373,66.93931679,81.83513592,68.8202667,459.1331833,0,0.582687371,54.36021914,-0.582687371,125.6397809,0.964190692,0,524.5270778,68.8202667,569.5685659,1,12,9% -2018-01-25 21:00:00,57.35606584,190.8594875,508.4965816,784.2347901,85.46730544,600.0897818,513.3663689,86.72341286,82.89015084,3.833262022,125.868038,0,125.868038,2.5771546,123.2908834,1.001052195,3.331126465,0.800699817,-0.800699817,0.393225956,0.393225956,0.168078427,1.898275754,61.05507354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.67716587,1.867139735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375294322,58.68845903,81.05246019,60.55559876,513.3663689,0,0.654608002,49.11006674,-0.654608002,130.8899333,0.97361841,0,580.8754081,60.55559876,620.5078363,1,13,7% -2018-01-25 22:00:00,61.17629423,206.7762099,442.4229915,751.3083163,80.20508165,585.5416321,504.4198582,81.12177391,77.78660252,3.335171391,109.6890556,0,109.6890556,2.418479137,107.2705765,1.067727759,3.608925677,1.324173817,-1.324173817,0.30370663,0.30370663,0.181285971,1.433906411,46.1193592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.7714411,1.752179902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038860314,44.3316823,75.81030141,46.0838622,504.4198582,0,0.671388626,47.82566971,-0.671388626,132.1743303,0.975527484,0,567.8857367,46.0838622,598.0467028,1,14,5% -2018-01-25 23:00:00,67.75110612,220.7271358,324.3452907,673.1812801,69.45815827,495.2113058,425.4025154,69.80879033,67.36373853,2.445051806,80.73569063,0,80.73569063,2.094419745,78.64127088,1.182479874,3.852415267,2.132304994,-2.132304994,0.16550806,0.16550806,0.214148811,0.84161988,27.06938838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.75258778,1.517399976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.609750738,26.02012574,65.36233852,27.53752572,425.4025154,0,0.631928617,50.80744382,-0.631928617,129.1925562,0.970877139,0,478.3759157,27.53752572,496.3986755,1,15,4% -2018-01-25 00:00:00,76.33738529,232.6016236,167.3757409,497.4069204,49.88615541,317.7939383,268.1502855,49.6436528,48.38190377,1.261749035,42.08643784,0,42.08643784,1.504251646,40.58218619,1.332338716,4.059664178,3.92561604,-3.92561604,0,0,0.2980489,0.376062912,12.09547594,0.123703446,1,0.249432106,0,0.931978293,0.970740256,0.724496596,1,46.73427097,1.089825197,0.019989874,0.312029739,0.944876214,0.66937281,0.961238037,0.922476074,0.264542783,11.62663155,46.99881376,12.71645675,234.979171,0,0.539096411,57.37785123,-0.539096411,122.6221488,0.957252211,0,271.9331448,12.71645675,280.2558114,1,16,3% -2018-01-25 01:00:00,86.20450273,242.8034691,16.18654825,91.12150108,10.15471625,46.49066267,36.52012754,9.970535131,9.848514093,0.122021038,4.230818188,0,4.230818188,0.306202162,3.924616026,1.504552403,4.237719972,14.95489055,-14.95489055,0,0,0.627355264,0.07655054,2.462128523,0.669670814,1,0.066768362,0,0.954816152,0.993578115,0.724496596,1,9.52962275,0.221842424,0.086892141,0.312029739,0.783307974,0.50780457,0.961238037,0.922476074,0.052996028,2.366691588,9.582618778,2.588534012,12.063664,0,0.400784964,66.37274045,-0.400784964,113.6272596,0.925244821,0,20.74446141,2.588534012,22.43860515,1,17,8% -2018-01-25 02:00:00,97.32362519,251.8982628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6986177,4.396454066,-7.776494252,7.776494252,1,0.139987471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.219257774,77.33455776,-0.219257774,102.6654422,0.821957915,0,0,0,0,1,18,0% -2018-01-25 03:00:00,108.8076789,260.4849353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899052249,4.546319772,-2.887164532,2.887164532,1,0.976112097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015402565,89.11746315,-0.015402565,90.88253685,0,0,0,0,0,1,19,0% -2018-01-25 04:00:00,120.5842434,269.241188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104592073,4.699145213,-1.597455544,1.597455544,1,0.803334677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200128477,101.5444721,0.200128477,78.45552788,0,0.800160493,0,0,0,1,20,0% -2018-01-25 05:00:00,132.3766747,279.128006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310408827,4.871702739,-0.957424706,0.957424706,1,0.693882957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412646817,114.3712125,0.412646817,65.62878748,0,0.928831005,0,0,0,1,21,0% -2018-01-25 06:00:00,143.7766538,291.9141812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509375996,5.094863595,-0.545098485,0.545098485,1,0.623371021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607667954,127.4210712,0.607667954,52.57892883,0,0.967718221,0,0,0,1,22,0% -2018-01-25 07:00:00,153.8841584,311.4914177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685785231,5.436550831,-0.233985808,0.233985808,1,0.570167619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771898064,140.5246407,0.771898064,39.47535934,0,0.985224608,0,0,0,1,23,0% -2018-01-26 08:00:00,160.2772231,344.7573559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.797365259,6.01715098,0.029732643,-0.029732643,1,0.525069108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.894139533,153.3981185,0.894139533,26.60188147,0,0.994080316,0,0,0,1,0,0% -2018-01-26 09:00:00,159.0735232,26.31807388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776356733,0.459337042,0.276540504,-0.276540504,1,0.482862478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966053769,165.0283493,0.966053769,14.97165071,0,0.998243046,0,0,0,1,1,0% -2018-01-26 10:00:00,151.2228213,55.06806004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.639336136,0.96111896,0.530689798,-0.530689798,1,0.439400389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982729432,169.3360531,0.982729432,10.66394695,0,0.999121296,0,0,0,1,2,0% -2018-01-26 11:00:00,140.5897029,72.09815399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45375321,1.258350172,0.821159386,-0.821159386,1,0.389727164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943017372,160.5646205,0.943017372,19.43537953,0,0.996978707,0,0,0,1,3,0% -2018-01-26 12:00:00,129.0107207,83.78447483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251661846,1.462314948,1.198871996,-1.198871996,1,0.325134504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849609489,148.1692207,0.849609489,31.83077933,0,0.991149433,0,0,0,1,4,0% -2018-01-26 13:00:00,117.1793503,93.21215388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045165479,1.626858988,1.789867719,-1.789867719,1,0.224068283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708856064,135.1419176,0.708856064,44.85808243,0,0.979463818,0,0,0,1,5,0% -2018-01-26 14:00:00,105.4446774,101.8319601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840356799,1.777302987,3.075080517,-3.075080517,1,0.00428395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530333915,122.0280189,0.530333915,57.97198111,0,0.955719777,0,0,0,1,6,0% -2018-01-26 15:00:00,94.07282031,110.4906009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641880451,1.928424778,10.68074096,-10.68074096,1,0,#DIV/0!,0,0,0.564528321,1,0.093354319,0,0.951964802,0.990726765,0.724496596,1,0,0,0.076154099,0.312029739,0.80684341,0.531340005,0.961238037,0.922476074,0,0,0,0,0,0,-0.326194693,109.0379708,0.326194693,70.96202917,0,0.89671731,0,0,0,1,7,0% -2018-01-26 16:00:00,83.22340787,119.8317266,52.46415993,236.5853794,24.54749019,24.20278979,0,24.20278979,23.80729279,0.395496999,39.05725865,25.59651826,13.46074038,0.7401974,12.72054298,1.452522482,2.091458178,-5.428284745,5.428284745,0.541554947,0.541554947,0.467890656,0.299018315,9.617456884,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88447539,0.536270497,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216637751,9.244665375,23.10111314,9.780935871,0,25.59651826,-0.108191463,96.2110718,0.108191463,83.7889282,0,0.587856327,23.10111314,24.82801108,39.35054983,1,8,70% -2018-01-26 17:00:00,73.60193839,130.4497974,217.1037753,566.8564421,57.07509888,115.6407431,58.65004904,56.99069402,55.35407406,1.636619963,54.36034867,0,54.36034867,1.721024816,52.63932386,1.284596161,2.276778473,-1.675911527,1.675911527,0.81675144,0.81675144,0.262893166,1.415555541,45.52913215,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.20844148,1.24687662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025565171,43.7643336,54.23400665,45.01121023,58.65004904,0,0.103465436,84.06123903,-0.103465436,95.93876097,0.56674683,0,87.47373604,45.01121023,116.9326729,1,9,34% -2018-01-26 18:00:00,65.47669541,142.893796,365.7380622,704.279633,73.4174142,284.1909758,210.2302796,73.96069629,71.20360828,2.757088001,90.89123347,0,90.89123347,2.21380592,88.67742755,1.142783918,2.493967221,-0.644744614,0.644744614,0.640411512,0.640411512,0.200737691,1.964685677,63.19104493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.44361664,1.603894853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423408085,60.74163598,69.86702473,62.34553083,210.2302796,0,0.298503989,72.63222865,-0.298503989,107.3677714,0.882498051,0,255.3948366,62.34553083,296.1987396,1,10,16% -2018-01-26 19:00:00,59.57090941,157.4759977,470.5220827,766.2590667,82.43361184,438.2272563,354.7323277,83.49492851,79.9479343,3.546994209,116.569204,0,116.569204,2.485677545,114.0835265,1.039708508,2.748474653,-0.074973548,0.074973548,0.542974921,0.542974921,0.175196053,2.209933146,71.07904657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84899541,1.80086492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601089041,68.32388318,78.45008445,70.1247481,354.7323277,0,0.462940464,62.42298637,-0.462940464,117.5770136,0.941994751,0,412.6060753,70.1247481,458.5013204,1,11,11% -2018-01-26 20:00:00,56.62029492,173.867643,521.014625,790.0202126,86.3573611,550.2043959,462.5233995,87.68099636,83.75336804,3.927628321,128.930021,0,128.930021,2.603993062,126.3260279,0.98821057,3.034562833,0.363773819,-0.363773819,0.467944703,0.467944703,0.16574844,2.184279943,70.25395138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.50692307,1.886584109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582503383,67.5307703,82.08942646,69.41735441,462.5233995,0,0.585457678,54.16467053,-0.585457678,125.8353295,0.96459673,0,528.2379853,69.41735441,573.6702554,1,12,9% -2018-01-26 21:00:00,57.09856084,190.847175,512.9283008,786.4290636,85.74354144,604.2428095,517.218082,87.0247275,83.1580573,3.866670193,126.9508891,0,126.9508891,2.585484134,124.365405,0.996557885,3.330911573,0.792547057,-0.792547057,0.394620161,0.394620161,0.16716477,1.917166005,61.66264894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93468775,1.873174454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.388980244,59.27248361,81.32366799,61.14565806,517.218082,0,0.657679257,48.87688103,-0.657679257,131.123119,0.9739751,0,585.0812009,61.14565806,625.0998112,1,13,7% -2018-01-26 22:00:00,60.92299442,206.8314036,446.9315452,753.9600351,80.51852504,590.1472192,508.687466,81.4597532,78.09059443,3.369158772,110.7916581,0,110.7916581,2.427930612,108.3637275,1.063306843,3.60988899,1.311610467,-1.311610467,0.30585509,0.30585509,0.180158518,1.451808277,46.69514476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06364969,1.759027463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051830155,44.88514928,76.11547984,46.64417675,508.687466,0,0.674687573,47.57010686,-0.674687573,132.4298931,0.975891624,0,572.5393174,46.64417675,603.0669982,1,14,5% -2018-01-26 23:00:00,67.51155649,220.8305371,328.7730082,676.9258457,69.85084936,500.3183409,430.0953225,70.22301834,67.74458853,2.47842981,81.82108307,0,81.82108307,2.10626083,79.71482224,1.178298944,3.854219961,2.109250959,-2.109250959,0.169450532,0.169450532,0.212459197,0.857309703,27.57402702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.11867529,1.525978802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.621117961,26.5052036,65.73979325,28.03118241,430.0953225,0,0.635365491,50.55290245,-0.635365491,129.4470975,0.971305137,0,483.4935896,28.03118241,501.8394379,1,15,4% -2018-01-26 00:00:00,76.11516132,232.7358638,171.4204257,503.9389509,50.48960704,323.6798376,273.420439,50.25939868,48.9671591,1.292239577,43.08531479,0,43.08531479,1.522447939,41.56286685,1.328460176,4.062007111,3.863144186,-3.863144186,0,0,0.294536703,0.380611985,12.24178978,0.115422248,1,0.253296671,0,0.931415454,0.970177417,0.724496596,1,47.28775322,1.103008349,0.018720818,0.312029739,0.948282772,0.672779368,0.961238037,0.922476074,0.268171056,11.76727397,47.55592428,12.87028232,241.8616373,0,0.542566592,57.14147063,-0.542566592,122.8585294,0.957845413,0,279.2219842,12.87028232,287.6453266,1,16,3% -2018-01-26 01:00:00,86.00441732,242.9584552,18.11006005,100.4918033,11.10783494,51.51742838,40.60801436,10.90941402,10.77289274,0.136521282,4.725935937,0,4.725935937,0.334942207,4.39099373,1.501060253,4.240424988,14.20854575,-14.20854575,0,0,0.613351635,0.083735552,2.693223184,0.655130879,1,0.070264317,0,0.954450685,0.993212648,0.724496596,1,10.42620477,0.242664489,0.085456644,0.312029739,0.786400864,0.51089746,0.961238037,0.922476074,0.057893776,2.588828566,10.48409854,2.831493055,14.00445021,0,0.404092802,66.16571007,-0.404092802,113.8342899,0.926266046,0,23.45594527,2.831493055,25.30910084,1,17,8% -2018-01-26 02:00:00,97.12898908,252.0704799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695220659,4.399459821,-7.990275646,7.990275646,1,0.103428699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.222535337,77.14201066,-0.222535337,102.8579893,0.825316583,0,0,0,0,1,18,0% -2018-01-26 03:00:00,108.6218243,260.6756731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895808474,4.549648775,-2.916333689,2.916333689,1,0.971123877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.018441464,88.94332204,-0.018441464,91.05667796,0,0,0,0,0,1,19,0% -2018-01-26 04:00:00,120.4019891,269.4553824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101411137,4.702883611,-1.60700827,1.60700827,1,0.804968289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.197396942,101.3847804,0.197396942,78.61521962,0,0.796703269,0,0,0,1,20,0% -2018-01-26 05:00:00,132.1908683,279.3730421,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307165894,4.875979425,-0.961377456,0.961377456,1,0.694558917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410269998,114.2217968,0.410269998,65.77820324,0,0.928129036,0,0,0,1,21,0% -2018-01-26 06:00:00,143.5763706,292.1935253,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505880394,5.099739069,-0.546695987,0.546695987,1,0.62364421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605668618,127.2769705,0.605668618,52.72302952,0,0.967446606,0,0,0,1,22,0% -2018-01-26 07:00:00,153.65368,311.7636522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.681762623,5.441302219,-0.234301502,0.234301502,1,0.570221606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770272855,140.3783973,0.770272855,39.62160267,0,0.985087937,0,0,0,1,23,0% -2018-01-27 08:00:00,160.0171421,344.7805604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79282599,6.017555977,0.030304952,-0.030304952,1,0.524971238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892859223,153.2347641,0.892859223,26.76523595,0,0.99400013,0,0,0,1,0,0% -2018-01-27 09:00:00,158.85361,25.92956302,0,0,0,0,0,0,0,0,0,0,0,0,0,2.772518523,0.452556248,0.277908946,-0.277908946,1,0.482628461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965065295,164.810668,0.965065295,15.18933205,0,0.998190034,0,0,0,1,1,0% -2018-01-27 10:00:00,151.0687168,54.63255973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636646505,0.953518046,0.532979593,-0.532979593,1,0.439008811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981959568,169.1002591,0.981959568,10.89974091,0,0.999081407,0,0,0,1,2,0% -2018-01-27 11:00:00,140.4718286,71.73214569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451695915,1.251962122,0.824785469,-0.824785469,1,0.389107068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942377782,160.4547864,0.942377782,19.54521359,0,0.996942722,0,0,0,1,3,0% -2018-01-27 12:00:00,128.9070835,83.4763932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249853036,1.456937909,1.204885518,-1.204885518,1,0.324106131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849002816,148.1033752,0.849002816,31.89662476,0,0.99110738,0,0,0,1,4,0% -2018-01-27 13:00:00,117.0771433,92.94203736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04338163,1.622144565,1.801367385,-1.801367385,1,0.222101724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708182634,135.0872411,0.708182634,44.91275887,0,0.979396744,0,0,0,1,5,0% -2018-01-27 14:00:00,105.3354138,101.5856238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838449789,1.773003608,3.106325016,-3.106325016,1,0,#DIV/0!,0,0,0.001058053,1,0.311447084,0,0.922568255,0.961330218,0.724496596,1,0,0,0.000180848,0.312029739,0.999487308,0.723983904,0.961238037,0.922476074,0,0,0,0,0,0,-0.529498598,121.9715833,0.529498598,58.02841666,0,0.955571044,0,0,0,1,6,0% -2018-01-27 15:00:00,93.94976623,110.2591409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639732752,1.924385039,11.05250431,-11.05250431,1,0,#DIV/0!,0,0,0.576259671,1,0.090231552,0,0.952308293,0.991070256,0.724496596,1,0,0,0.07739453,0.312029739,0.804077575,0.528574171,0.961238037,0.922476074,0,0,0,0,0,0,-0.32511344,108.9724479,0.32511344,71.02755212,0,0.896207527,0,0,0,1,7,0% -2018-01-27 16:00:00,83.08267565,119.610848,54.52760378,243.6129906,25.1875835,24.83913704,0,24.83913704,24.42808493,0.41105211,40.00644646,26.02609905,13.98034741,0.759498575,13.22084884,1.450066241,2.087603118,-5.341041507,5.341041507,0.55647442,0.55647442,0.461923535,0.312954246,10.06568432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.4812044,0.550254132,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.226734286,9.675518634,23.70793869,10.22577277,0,26.02609905,-0.10683379,96.13282935,0.10683379,83.86717065,0,0.581983279,23.70793869,25.37252724,40.31375031,1,8,70% -2018-01-27 17:00:00,73.4338781,130.2406862,220.2298568,570.9271228,57.4461585,117.4408701,60.06673952,57.37413055,55.71394486,1.660185686,55.12949215,0,55.12949215,1.732213632,53.39727852,1.281662955,2.273128795,-1.668601591,1.668601591,0.815501367,0.815501367,0.260846369,1.433781459,46.1153403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.55436299,1.25498288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038769786,44.32781918,54.59313277,45.58280206,60.06673952,0,0.105209119,83.96078508,-0.105209119,96.03921492,0.574756024,0,89.11685313,45.58280206,118.9498854,1,9,33% -2018-01-27 18:00:00,65.27832595,142.705569,369.3804418,707.0108019,73.7009469,286.8130045,212.5498673,74.26313722,71.47859142,2.784545797,91.78292012,0,91.78292012,2.222355476,89.56056464,1.139321718,2.490682039,-0.645694076,0.645694076,0.64057388,0.64057388,0.199525851,1.983400456,63.79297657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.70794089,1.610088978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436966879,61.32023557,70.14490777,62.93032454,212.5498673,0,0.300631711,72.50445089,-0.300631711,107.4955491,0.883683547,0,257.9717283,62.93032454,299.1583671,1,10,16% -2018-01-27 19:00:00,59.34192869,157.327645,474.5512542,768.4773094,82.69426371,441.4615526,357.6834582,83.77809435,80.20072655,3.577367805,117.5539829,0,117.5539829,2.49353716,115.0604457,1.03571204,2.745885409,-0.078655644,0.078655644,0.543604597,0.543604597,0.174257813,2.229183308,71.69819796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.09198894,1.806559184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615035718,68.91903505,78.70702466,70.72559424,357.6834582,0,0.465444397,62.26101352,-0.465444397,117.7389865,0.942575783,0,415.8507903,70.72559424,462.1392772,1,11,11% -2018-01-27 20:00:00,56.36753199,173.783036,525.3342498,792.0981884,86.62001051,553.964678,465.9963889,87.96828907,84.0080976,3.960191477,129.9852839,0,129.9852839,2.611912911,127.373371,0.983799024,3.033086162,0.358148454,-0.358148454,0.468906697,0.468906697,0.164885519,2.203752668,70.88026116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75177881,1.892322012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.596611306,68.13280309,82.34839012,70.0251251,465.9963889,0,0.588306343,53.96308691,-0.588306343,126.0369131,0.965010265,0,532.039689,70.0251251,577.8697329,1,12,9% -2018-01-27 21:00:00,56.83603203,190.8395006,517.4338197,788.6313415,86.02338105,608.4718753,521.1417819,87.33009342,83.42945872,3.900634698,128.0517426,0,128.0517426,2.593922331,125.4578202,0.991975893,3.330777628,0.784464551,-0.784464551,0.396002351,0.396002351,0.166250016,1.936341257,62.27939094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19556911,1.879287899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402872649,59.86531949,81.59844176,61.74460739,521.1417819,0,0.660817995,48.63771239,-0.660817995,131.3622876,0.974336201,0,589.3657457,61.74460739,629.7763563,1,13,7% -2018-01-27 22:00:00,60.66571981,206.8925796,451.5009755,756.6107213,80.834262,594.8140993,513.0136835,81.80041582,78.39681075,3.403605068,111.90909,0,111.90909,2.437451246,109.4716388,1.058816554,3.610956712,1.299154259,-1.299154259,0.307985227,0.307985227,0.179034523,1.469948146,47.27858529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.35799646,1.76592513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064972428,45.44597451,76.42296889,47.21189964,513.0136835,0,0.678041784,47.30918998,-0.678041784,132.69081,0.976258232,0,577.2568005,47.21189964,608.1560445,1,14,5% -2018-01-27 23:00:00,67.26909221,220.9404155,333.2504534,680.6525173,70.24384131,505.4693266,434.8314136,70.63791301,68.12573032,2.512182683,82.91854164,0,82.91854164,2.118110988,80.80043065,1.174067144,3.856137701,2.086477098,-2.086477098,0.173345092,0.173345092,0.210783933,0.873211248,28.0854754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48504328,1.5345642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632638577,26.99682723,66.11768185,28.53139143,434.8314136,0,0.638844936,50.29425692,-0.638844936,129.7057431,0.971733746,0,488.6580402,28.53139143,507.3312653,1,15,4% -2018-01-27 00:00:00,75.8908846,232.8765683,175.5112338,510.4109521,51.0887085,329.5899757,278.7187024,50.87127325,49.54819544,1.323077816,44.09524368,0,44.09524368,1.540513058,42.55473062,1.324545808,4.064462868,3.802132201,-3.802132201,0,0,0.29108512,0.385128265,12.38704886,0.107182086,1,0.257185691,0,0.930845851,0.969607814,0.724496596,1,47.83646514,1.116096467,0.017448657,0.312029739,0.95171034,0.676206936,0.961238037,0.922476074,0.271798868,11.90690253,48.10826401,13.02299899,248.8450505,0,0.546067245,56.90237437,-0.546067245,123.0976256,0.958436185,0,286.610365,13.02299899,295.1336574,1,16,3% -2018-01-27 01:00:00,85.80251099,243.1197452,20.14602408,110.1746471,12.08184701,56.75749373,44.88808974,11.86940399,11.71753475,0.151869239,5.248949046,0,5.248949046,0.364312265,4.884636782,1.497536323,4.24324003,13.52746212,-13.52746212,0,0,0.599713718,0.091078066,2.929383686,0.640698585,1,0.073789479,0,0.95407925,0.992841213,0.724496596,1,11.34264954,0.263942996,0.08401651,0.312029739,0.789520315,0.514016911,0.961238037,0.922476074,0.062892278,2.815835024,11.40554182,3.07977802,16.12835415,0,0.407426671,65.9567155,-0.407426671,114.0432845,0.92727853,0,26.36101835,3.07977802,28.37667147,1,17,8% -2018-01-27 02:00:00,96.93335998,252.2489005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691806287,4.402573847,-8.217072759,8.217072759,1,0.064644109,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.225822679,76.94874066,-0.225822679,103.0512593,0.82858734,0,0,0,0,1,18,0% -2018-01-27 03:00:00,108.4351623,260.8726752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892550608,4.553087111,-2.946109749,2.946109749,1,0.966031871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021483571,88.76898733,-0.021483571,91.23101267,0,0,0,0,0,1,19,0% -2018-01-27 04:00:00,120.2188922,269.6761212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098215492,4.706736229,-1.61662325,1.61662325,1,0.806612547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194665704,101.2251956,0.194665704,78.77480439,0,0.793149415,0,0,0,1,20,0% -2018-01-27 05:00:00,132.0039206,279.6251587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.30390304,4.88037969,-0.965298134,0.965298134,1,0.695229393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407893678,114.0725874,0.407893678,65.92741257,0,0.927419037,0,0,0,1,21,0% -2018-01-27 06:00:00,143.3742892,292.4807106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502353409,5.104751398,-0.54823301,0.54823301,1,0.623907056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603666668,127.1329573,0.603666668,52.86704274,0,0.967172833,0,0,0,1,22,0% -2018-01-27 07:00:00,153.4202649,312.0446161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.677688761,5.446205964,-0.234542132,0.234542132,1,0.570262756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768638819,140.2318128,0.768638819,39.76818716,0,0.984949942,0,0,0,1,23,0% -2018-01-28 08:00:00,159.7523387,344.8154714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788204298,6.018165288,0.030965761,-0.030965761,1,0.524858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891561204,153.0700874,0.891561204,26.92991265,0,0.993918601,0,0,0,1,0,0% -2018-01-28 09:00:00,158.6265497,25.55125817,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768555574,0.445953583,0.279383889,-0.279383889,1,0.482376231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964048174,164.5898131,0.964048174,15.41018693,0,0.998135372,0,0,0,1,1,0% -2018-01-28 10:00:00,150.9070413,54.19838199,0,0,0,0,0,0,0,0,0,0,0,0,0,2.633824735,0.945940215,0.535404512,-0.535404512,1,0.438594126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981148818,168.8572718,0.981148818,11.14272821,0,0.999039331,0,0,0,1,2,0% -2018-01-28 11:00:00,140.3469526,71.36417329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449516419,1.245539792,0.828597711,-0.828597711,1,0.388455136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941684611,160.336417,0.941684611,19.66358303,0,0.996903667,0,0,0,1,3,0% -2018-01-28 12:00:00,128.7969471,83.16564088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247930794,1.451514258,1.211190191,-1.211190191,1,0.323027968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848330286,148.0305239,0.848330286,31.9694761,0,0.991060692,0,0,0,1,4,0% -2018-01-28 13:00:00,116.9687558,92.6692389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041489912,1.617383334,1.813433301,-1.813433301,1,0.220038331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707432339,135.0263855,0.707432339,44.9736145,0,0.979321863,0,0,0,1,5,0% -2018-01-28 14:00:00,105.2201427,101.3367763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.836437929,1.768660399,3.139340577,-3.139340577,1,0,#DIV/0!,0,0,0.006660508,1,0.308376396,0,0.923052921,0.961814885,0.724496596,1,0,0,0.00113546,0.312029739,0.996785266,0.721281862,0.961238037,0.922476074,0,0,0,0,0,0,-0.528577433,121.909388,0.528577433,58.09061201,0,0.95540648,0,0,0,1,6,0% -2018-01-28 15:00:00,93.82077064,110.0254048,0,0,0,0,0,0,0,0,0,0,0,0,0,1.637481354,1.920305574,11.4662011,-11.4662011,1,0,#DIV/0!,0,0,0.588592862,1,0.086992731,0,0.952662146,0.991424109,0.724496596,1,0,0,0.078686793,0.312029739,0.801209238,0.525705834,0.961238037,0.922476074,0,0,0,0,0,0,-0.323940005,108.9013679,0.323940005,71.09863212,0,0.895650431,0,0,0,1,7,0% -2018-01-28 16:00:00,82.93600623,119.3880035,56.70095584,250.8805569,25.84820585,25.49622283,0,25.49622283,25.06878708,0.427435756,40.96526037,26.43803839,14.52722198,0.779418776,13.7478032,1.447506377,2.083713748,-5.252915445,5.252915445,0.571544864,0.571544864,0.455868962,0.327785205,10.54269895,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.09707168,0.56468625,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.237479265,10.13404325,24.33455094,10.6987295,0,26.43803839,-0.105380978,96.04911676,0.105380978,83.95088324,0,0.575531068,24.33455094,25.91464196,41.29516581,1,8,70% -2018-01-28 17:00:00,73.25980978,130.0300824,223.4681436,575.0782205,57.82703223,119.3289077,61.56097658,57.76793111,56.08333385,1.68459726,55.92613701,0,55.92613701,1.743698381,54.18243863,1.27862489,2.269453065,-1.660837438,1.660837438,0.814173619,0.814173619,0.258770809,1.452560937,46.71935288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90943373,1.263303541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.052375454,44.90841905,54.96180918,46.17172259,61.56097658,0,0.107048006,83.8548262,-0.107048006,96.1451738,0.582919836,0,90.84692356,46.17172259,121.0653926,1,9,33% -2018-01-28 18:00:00,65.07388212,142.5166584,373.1289429,709.7825642,73.99162118,289.5319059,214.9586015,74.57330439,71.76050081,2.812803582,92.70055252,0,92.70055252,2.231120379,90.46943215,1.1357535,2.487384927,-0.646446023,0.646446023,0.64070247,0.64070247,0.198300407,2.002579213,64.40983133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97892292,1.616439119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450861823,61.91317982,70.42978474,63.52961894,214.9586015,0,0.302851341,72.37105795,-0.302851341,107.628942,0.884902498,0,260.6471881,63.52961894,302.2260531,1,10,16% -2018-01-28 19:00:00,59.10692285,157.1799799,478.676693,770.7190484,82.96057663,444.7900576,360.7225813,84.06747626,80.45900915,3.608467106,118.5622736,0,118.5622736,2.501567477,116.0607062,1.031610414,2.743308167,-0.082227694,0.082227694,0.544215454,0.544215454,0.173312338,2.248827512,72.33002309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34026,1.812377122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629267877,69.5263694,78.96952788,71.33874652,360.7225813,0,0.468033821,62.09325687,-0.468033821,117.9067431,0.943170113,0,419.1922858,71.33874652,465.8820686,1,11,11% -2018-01-28 20:00:00,56.10908903,173.7010814,529.7381036,794.1898931,86.88714988,557.8105994,469.550028,88.26057132,84.26718173,3.993389587,131.0611045,0,131.0611045,2.619968148,128.4411363,0.979288344,3.031655784,0.352600443,-0.352600443,0.469855463,0.469855463,0.164019068,2.223556362,71.51721604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.00082034,1.898158005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610959015,68.74506834,82.61177935,70.64322635,469.550028,0,0.591231432,53.75555685,-0.591231432,126.2444432,0.965430748,0,535.9298141,70.64322635,582.1643929,1,12,9% -2018-01-28 21:00:00,56.56858703,190.8365055,522.0105115,790.8397022,86.30657435,612.7742687,525.1350202,87.63924843,83.7041127,3.935135734,129.1699538,0,129.1699538,2.602461654,126.5674921,0.987308097,3.330725354,0.776456959,-0.776456959,0.397371729,0.397371729,0.165334936,1.955790934,62.90495941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45957697,1.885474609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416963874,60.46663969,81.87654084,62.3521143,525.1350202,0,0.664022075,48.39265466,-0.664022075,131.6073453,0.974701299,0,593.726327,62.3521143,634.5345387,1,13,7% -2018-01-28 22:00:00,60.40458441,206.9597651,456.1287066,759.2583552,81.15204092,599.539354,517.3958557,82.14349832,78.70500747,3.43849086,113.0407192,0,113.0407192,2.447033453,110.5936858,1.054258881,3.61212932,1.286811692,-1.286811692,0.31009593,0.31009593,0.177914785,1.488316605,47.86937808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.65424687,1.772867407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078280314,46.01386701,76.73252718,47.78673442,517.3958557,0,0.681449012,47.04302205,-0.681449012,132.956978,0.976626939,0,582.0352579,47.78673442,613.3107198,1,14,5% -2018-01-28 23:00:00,67.02382608,221.0567688,337.7752197,684.3589184,70.6368733,510.661215,439.6080117,71.05320323,68.50691095,2.546292283,84.02747499,0,84.02747499,2.129962352,81.89751264,1.169786442,3.858168449,2.063991456,-2.063991456,0.177190363,0.177190363,0.209123906,0.889316841,28.60348661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.85144859,1.543150474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.644307024,27.49475932,66.49575562,29.03790979,439.6080117,0,0.642364701,50.03162387,-0.642364701,129.9683761,0.972162597,0,493.866222,29.03790979,512.8709532,1,15,4% -2018-01-28 00:00:00,75.66465903,233.023704,179.6459257,516.8193733,51.68316968,335.5209536,284.0419753,51.4789783,50.12473143,1.354246871,45.11567282,0,45.11567282,1.558438256,43.55723456,1.320597427,4.06703087,3.742560799,-3.742560799,0,0,0.287694639,0.389609564,12.53118286,0.098987001,1,0.261097197,0,0.930269723,0.969031686,0.724496596,1,48.38012792,1.129083212,0.016174064,0.312029739,0.955157187,0.679653782,0.961238037,0.922476074,0.275424756,12.04544961,48.65555267,13.17453282,255.9255121,0,0.549596223,56.66068344,-0.549596223,123.3393166,0.95902412,0,294.0942917,13.17453282,302.7167599,1,16,3% -2018-01-28 01:00:00,85.59890273,243.2872805,22.29144937,120.1306783,13.07284664,62.19447202,49.34777757,12.84669444,12.67865208,0.168042361,5.799014541,0,5.799014541,0.39419456,5.404819981,1.493982689,4.246164073,12.90383694,-12.90383694,0,0,0.586451173,0.09854864,3.16966302,0.626382253,1,0.077341747,0,0.953702005,0.992463968,0.724496596,1,12.27527014,0.285592617,0.082572689,0.312029739,0.792664414,0.51716101,0.961238037,0.922476074,0.067972097,3.046800659,12.34324224,3.332393276,18.43720546,0,0.410784142,65.74589713,-0.410784142,114.2541029,0.928281572,0,29.4581603,3.332393276,31.63914505,1,17,7% -2018-01-28 02:00:00,96.73681131,252.4334444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688375865,4.405794748,-8.458017615,8.458017615,1,0.023440112,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.229118145,76.7548412,-0.229118145,103.2451588,0.831771976,0,0,0,0,1,18,0% -2018-01-28 03:00:00,108.2477496,261.0758399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889279639,4.556633003,-2.976502639,2.976502639,1,0.960834381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024527587,88.59453184,-0.024527587,91.40546816,0,0,0,0,0,1,19,0% -2018-01-28 04:00:00,120.0349926,269.9032745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095005839,4.710700801,-1.626298515,1.626298515,1,0.808267115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.191935669,101.0657692,0.191935669,78.93423076,0,0.78949605,0,0,0,1,20,0% -2018-01-28 05:00:00,131.8158569,279.8841814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300620709,4.884900489,-0.969185189,0.969185189,1,0.695894118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.405518356,113.9236141,0.405518356,66.0763859,0,0.926701019,0,0,0,1,21,0% -2018-01-28 06:00:00,143.1704266,292.77548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498795336,5.109896094,-0.549708668,0.549708668,1,0.624159408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601662214,126.9890379,0.601662214,53.01096208,0,0.966896892,0,0,0,1,22,0% -2018-01-28 07:00:00,153.1839445,312.3339056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673564192,5.451255018,-0.234707244,0.234707244,1,0.570290992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766995719,140.0848682,0.766995719,39.91513177,0,0.984810588,0,0,0,1,23,0% -2018-01-29 08:00:00,159.4829138,344.8616066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783501947,6.018970498,0.03171526,-0.03171526,1,0.524730061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890244959,152.9040445,0.890244959,27.09595549,0,0.993835683,0,0,0,1,0,0% -2018-01-29 09:00:00,158.3924819,25.18332312,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764470319,0.439531905,0.280965391,-0.280965391,1,0.482105778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963001699,164.3657622,0.963001699,15.63423776,0,0.998079012,0,0,0,1,1,0% -2018-01-29 10:00:00,150.7378603,53.76595756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630871969,0.938392985,0.537964641,-0.537964641,1,0.438156318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980296383,168.6073096,0.980296383,11.39269036,0,0.998995017,0,0,0,1,2,0% -2018-01-29 11:00:00,140.2151062,70.99454764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447215264,1.239088607,0.832596567,-0.832596567,1,0.387771291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940937074,160.209526,0.940937074,19.79047404,0,0.996861484,0,0,0,1,3,0% -2018-01-29 12:00:00,128.6803389,82.85243261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245895597,1.446047742,1.217787944,-1.217787944,1,0.321899686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847591236,147.9506375,0.847591236,32.04936253,0,0.9910093,0,0,0,1,4,0% -2018-01-29 13:00:00,116.8542222,92.39391616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039490923,1.612578046,1.826074066,-1.826074066,1,0.217876633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706604731,134.9593341,0.706604731,45.04066593,0,0.979239081,0,0,0,1,5,0% -2018-01-29 14:00:00,105.0989093,101.085539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834322008,1.764275481,3.174190209,-3.174190209,1,0,#DIV/0!,0,0,0.012506414,1,0.305198107,0,0.923552545,0.962314508,0.724496596,1,0,0,0.002126226,0.312029739,0.993988403,0.718484999,0.961238037,0.922476074,0,0,0,0,0,0,-0.527570272,121.8414344,0.527570272,58.15856558,0,0.955225896,0,0,0,1,6,0% -2018-01-29 15:00:00,93.68589123,109.789488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635127265,1.91618805,11.92801912,-11.92801912,1,0,#DIV/0!,0,0,0.601539288,1,0.083640627,0,0.953025795,0.991787758,0.724496596,1,0,0,0.080030469,0.312029739,0.798240933,0.522737529,0.961238037,0.922476074,0,0,0,0,0,0,-0.322674598,108.8247506,0.322674598,71.17524939,0,0.895045131,0,0,0,1,7,0% -2018-01-29 16:00:00,82.78346332,119.1632668,58.98519752,258.3757406,26.52814755,26.17288136,0,26.17288136,25.72822602,0.444655334,41.92963053,26.82806496,15.10156557,0.799921527,14.30164404,1.444844001,2.079791354,-5.164210131,5.164210131,0.586714366,0.586714366,0.449742455,0.343534691,11.04925657,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.73094947,0.579540423,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.248889714,10.62096569,24.97983919,11.20050612,0,26.82806496,-0.103833529,95.95996535,0.103833529,84.04003465,0,0.568459977,24.97983919,26.45118729,42.29161225,1,8,69% -2018-01-29 17:00:00,73.07981377,129.8180392,226.81719,579.3033232,58.21716991,121.304666,63.13311483,58.17155122,56.46170744,1.709843786,56.74991618,0,56.74991618,1.755462471,54.99445371,1.275483367,2.265752213,-1.652644341,1.652644341,0.812772517,0.812772517,0.256670008,1.471881742,47.3407764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.27314082,1.271826585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066373312,45.50575497,55.33951413,46.77758155,63.13311483,0,0.108981102,83.74341607,-0.108981102,96.25658393,0.591204862,0,92.66411853,46.77758155,123.2791101,1,9,33% -2018-01-29 18:00:00,64.86345359,142.327099,376.9814951,712.59139,74.289092,292.3462976,217.45545,74.89084753,72.04900178,2.841845748,93.64361825,0,93.64361825,2.240090221,91.40352803,1.132080829,2.484076493,-0.64700448,0.64700448,0.640797972,0.640797972,0.197062967,2.02221023,65.0412323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.25624103,1.62293774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465084428,62.52010645,70.72132545,64.14304419,217.45545,0,0.30516149,72.23212023,-0.30516149,107.7678798,0.886152327,0,263.4199785,64.14304419,305.4003181,1,10,16% -2018-01-29 19:00:00,58.8659873,157.0330276,482.8959957,772.9818364,83.2322714,448.2107511,363.8479658,84.36278532,80.72251133,3.640273992,119.593485,0,119.593485,2.509760077,117.0837249,1.027405296,2.740743366,-0.085688974,0.085688974,0.544807367,0.544807367,0.172360658,2.268854163,72.97414903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.59354832,1.818312632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643777118,70.14552776,79.23732544,71.96384039,363.8479658,0,0.470707006,61.91980039,-0.470707006,118.0801996,0.943776809,0,422.6285977,71.96384039,469.727492,1,11,11% -2018-01-29 20:00:00,55.84506646,173.6218087,534.2236039,796.2933281,87.1585249,561.7397154,473.1821384,88.55757697,84.53037379,4.027203183,132.1568489,0,132.1568489,2.628151106,129.5286978,0.974680281,3.030272215,0.347132478,-0.347132478,0.47079054,0.47079054,0.163149895,2.243679767,72.16445391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25381056,1.90408653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.625538353,69.367218,82.87934891,71.27130453,473.1821384,0,0.594230947,53.54217255,-0.594230947,126.4578275,0.96585763,0,539.9059279,71.27130453,586.5515713,1,12,9% -2018-01-29 21:00:00,56.29633317,190.838225,526.6557469,793.0522943,86.59287668,617.1472614,529.195326,87.95193543,83.98178195,3.97015348,130.304878,0,130.304878,2.611094726,127.6937832,0.982556371,3.330755365,0.768528423,-0.768528423,0.398727589,0.398727589,0.164420264,1.97550453,63.53901644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.72648322,1.89172924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431246307,61.07611943,82.15772952,62.96784867,529.195326,0,0.66728932,48.14180364,-0.66728932,131.8581964,0.975069983,0,598.1602071,62.96784867,639.3714047,1,13,7% -2018-01-29 22:00:00,60.13970065,207.0329818,460.8121888,761.9010224,81.47161926,604.3200892,521.8313429,82.48874627,79.01494934,3.473796927,114.1859202,0,114.1859202,2.456669919,111.7292503,1.049635788,3.613407192,1.2745885,-1.2745885,0.312186219,0.312186219,0.176800053,1.506904384,48.46722495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95217478,1.779848993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.091747097,46.58854016,77.04392188,48.36838916,521.8313429,0,0.684906999,46.7717064,-0.684906999,133.2282936,0.976997388,0,586.8717809,48.36838916,618.5279242,1,14,5% -2018-01-29 23:00:00,66.77586806,221.179589,342.3449482,688.0428519,71.02970003,515.8910333,444.4223999,71.46863333,68.8878925,2.580740826,85.14730374,0,85.14730374,2.141807528,83.00549622,1.165458759,3.860312067,2.041800652,-2.041800652,0.180985214,0.180985214,0.207479913,0.905618939,29.12781811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.21766255,1.551732263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.656117838,27.9987667,66.87378039,29.55049896,444.4223999,0,0.645922559,49.7651189,-0.645922559,130.2348811,0.97259134,0,499.1151577,29.55049896,518.4553683,1,15,4% -2018-01-29 00:00:00,75.43658462,233.1772326,183.8223154,523.1610594,52.27273287,341.4695325,289.3872852,52.08224737,50.69651711,1.38573026,46.14606434,0,46.14606434,1.576215762,44.56984858,1.316616778,4.06971045,3.684407819,-3.684407819,0,0,0.284365545,0.39405394,12.67412928,0.090840619,1,0.265029323,0,0.929687301,0.968449264,0.724496596,1,48.91849408,1.141962954,0.014897662,0.312029739,0.958621678,0.683118274,0.961238037,0.922476074,0.279047396,12.18285514,49.19754148,13.3248181,263.099165,0,0.553151424,56.41651636,-0.553151424,123.5834836,0.959608838,0,301.6698255,13.3248181,310.3906524,1,16,3% -2018-01-29 01:00:00,85.39370473,243.460998,24.54304733,130.3212763,14.07714851,67.81192254,53.97423614,13.83768641,13.65267055,0.185015858,6.375223941,0,6.375223941,0.424477967,5.950745974,1.490401308,4.249196015,12.33102772,-12.33102772,0,0,0.573569709,0.106119492,3.413167637,0.61218909,1,0.08091916,0,0.953319096,0.992081059,0.724496596,1,13.22058275,0.307532842,0.081126053,0.312029739,0.795831364,0.52032796,0.961238037,0.922476074,0.073115071,3.280866559,13.29369782,3.588399401,20.93179763,0,0.414162888,65.5333894,-0.414162888,114.4666106,0.929274552,0,32.74508469,3.588399401,35.09362033,1,17,7% -2018-01-29 02:00:00,96.53941116,252.6240278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684930583,4.409121055,-8.714386598,8.714386598,1,0,#DIV/0!,0,0,1,0.019993664,0,0.114253017,0.961238037,1,0.452015149,0.727518553,0,0,0.115824807,0.003451528,0.724496596,0.448993192,0.999694259,0.960932296,0,0,0,0,0,0,0.232420171,76.56040071,-0.232420171,103.4395993,0.834872372,0,0,0,0,1,18,0% -2018-01-29 03:00:00,108.0596371,261.2850618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885996457,4.560284615,-3.007523517,3.007523517,1,0.955529498,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.027572311,88.4200227,-0.027572311,91.5799773,0,0,0,0,0,1,19,0% -2018-01-29 04:00:00,119.8503249,270.1367095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091782779,4.714775012,-1.636032438,1.636032438,1,0.809931714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189207641,100.9065466,0.189207641,79.09345336,0,0.785740059,0,0,0,1,20,0% -2018-01-29 05:00:00,131.6266969,280.1499328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297319245,4.889538727,-0.973037277,0.973037277,1,0.696552864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403144436,113.7749001,0.403144436,66.22509992,0,0.925974972,0,0,0,1,21,0% -2018-01-29 06:00:00,142.9647946,293.0775738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49520638,5.115168626,-0.551122225,0.551122225,1,0.624401141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599655278,126.8452127,0.599655278,53.15478729,0,0.966618761,0,0,0,1,22,0% -2018-01-29 07:00:00,152.9447457,312.6311165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669389386,5.456442328,-0.234796505,0.234796505,1,0.570306257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765343249,139.9375386,0.765343249,40.06246137,0,0.984669836,0,0,0,1,23,0% -2018-01-30 08:00:00,159.2089649,344.9184764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778720637,6.019963064,0.032553542,-0.032553542,1,0.524586706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888909928,152.7365869,0.888909928,27.26341306,0,0.993751331,0,0,0,1,0,0% -2018-01-30 09:00:00,158.1515487,24.82587067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760265242,0.433293183,0.282653431,-0.282653431,1,0.481817106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96192514,164.1384916,0.96192514,15.86150844,0,0.998020903,0,0,0,1,1,0% -2018-01-30 10:00:00,150.5612474,53.33569062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627789492,0.93088341,0.540660002,-0.540660002,1,0.437695384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979401469,168.3505863,0.979401469,11.64941371,0,0.998948412,0,0,0,1,2,0% -2018-01-30 11:00:00,140.0763282,70.6235687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444793131,1.232613803,0.836782455,-0.836782455,1,0.387055462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940134419,160.0741427,0.940134419,19.92585733,0,0.996816116,0,0,0,1,3,0% -2018-01-30 12:00:00,128.5572933,82.53697668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243748045,1.440541998,1.224680754,-1.224680754,1,0.320720946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846785056,147.8636972,0.846785056,32.13630277,0,0.990953138,0,0,0,1,4,0% -2018-01-30 13:00:00,116.7335833,92.1162216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037385376,1.607731361,1.839298727,-1.839298727,1,0.215615082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70569944,134.8860785,0.70569944,45.11392153,0,0.979148307,0,0,0,1,5,0% -2018-01-30 14:00:00,104.9717649,100.8320286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832102919,1.759850891,3.210941756,-3.210941756,1,0,#DIV/0!,0,0,0.018597277,1,0.301914426,0,0.924066566,0.962828529,0.724496596,1,0,0,0.003152763,0.312029739,0.991098632,0.715595228,0.961238037,0.922476074,0,0,0,0,0,0,-0.526477059,121.7677314,0.526477059,58.23226857,0,0.9550291,0,0,0,1,6,0% -2018-01-30 15:00:00,93.54519084,109.5514812,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632671579,1.912034048,12.44550052,-12.44550052,1,0,#DIV/0!,0,0,0.615111085,1,0.080178072,0,0.953398665,0.992160628,0.724496596,1,0,0,0.081425129,0.312029739,0.795175261,0.519671857,0.961238037,0.922476074,0,0,0,0,0,0,-0.321317532,108.7426224,0.321317532,71.25737764,0,0.894390688,0,0,0,1,7,0% -2018-01-30 16:00:00,82.62511545,118.9367064,61.38112005,266.0854434,27.22615632,26.86790406,0,26.86790406,26.40518725,0.46271681,42.89535009,27.19181782,15.70353227,0.820969067,14.8825632,1.442080309,2.075837129,-5.075208088,5.075208088,0.601934612,0.601934612,0.443559132,0.360225106,11.58607768,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38167035,0.594789294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.260981863,11.13697856,25.64265222,11.73176786,0,27.19181782,-0.102192053,95.86541269,0.102192053,84.13458731,0,0.560725165,25.64265222,26.9789044,43.29980557,1,8,69% -2018-01-30 17:00:00,72.89397406,129.6046038,230.2754553,583.5960369,58.61602284,123.3678789,64.7834318,58.58444713,56.84853348,1.735913651,57.60043954,0,57.60043954,1.767489359,55.83295018,1.272239852,2.262027062,-1.644047912,1.644047912,0.811302441,0.811302441,0.254547419,1.491731214,47.97920364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64497272,1.280540024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080754187,46.11943552,55.72572691,47.39997554,64.7834318,0,0.11100732,83.62661362,-0.11100732,96.37338638,0.599579251,0,94.56852846,47.39997554,125.5908644,1,9,33% -2018-01-30 18:00:00,64.64713258,142.1369194,380.9359607,715.4337899,74.59301559,295.2547232,220.0393061,75.21541713,72.34376095,2.87165618,94.61158864,0,94.61158864,2.249254639,92.362334,1.128305315,2.480757233,-0.64737392,0.64737392,0.64086115,0.64086115,0.195815106,2.042281563,65.68679536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.53957475,1.629577329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.47962604,63.14064622,71.01920079,64.77022355,220.0393061,0,0.307560684,72.08771266,-0.307560684,107.9122873,0.887430457,0,266.2887827,64.77022355,308.6795986,1,10,16% -2018-01-30 19:00:00,58.61921882,156.8868067,487.2067176,775.2632745,83.50907114,451.7215562,367.0578216,84.66373457,80.99096453,3.672770034,120.647016,0,120.647016,2.518106611,118.1289094,1.023098373,2.73819133,-0.089039147,0.089039147,0.54538028,0.54538028,0.171403776,2.289251581,73.63020011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85159575,1.824359667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658554978,70.77614901,79.51015073,72.60050868,367.0578216,0,0.473462156,61.74073168,-0.473462156,118.2592683,0.944394939,0,426.1576997,72.60050868,473.6732806,1,11,11% -2018-01-30 20:00:00,55.57556477,173.5452417,538.7881543,798.4065541,87.43388524,565.7495501,476.8905064,88.8590437,84.79743101,4.061612692,133.2718801,0,133.2718801,2.636454237,130.6354259,0.969976589,3.028935868,0.341746847,-0.341746847,0.471711537,0.471711537,0.162278782,2.264111654,72.82161363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51051611,1.91010212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640341186,69.99890492,83.1508573,71.90900704,476.8905064,0,0.597302845,53.3230286,-0.597302845,126.6769714,0.96629037,0,543.9655613,71.90900704,591.0285682,1,12,9% -2018-01-30 21:00:00,56.01937667,190.8446895,531.3669098,795.2673423,86.88204971,621.5881257,533.3202222,88.26790357,84.26223535,4.005668216,131.4558736,0,131.4558736,2.619814359,128.8360592,0.977722568,3.330868192,0.760682593,-0.760682593,0.400069305,0.400069305,0.1635067,1.995471661,64.18122801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.99606569,1.898046585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445712426,61.69343761,82.44177812,63.5914842,533.3202222,0,0.670617532,47.8852559,-0.670617532,132.1147441,0.975441854,0,602.6646443,63.5914842,644.2839989,1,13,7% -2018-01-30 22:00:00,59.8711788,207.1122469,465.5489094,764.5369172,81.79276418,609.1534482,526.3175333,82.83591489,79.32641056,3.509504328,115.3440767,0,115.3440767,2.466353623,112.877723,1.044949197,3.614790629,1.262489688,-1.262489688,0.314255238,0.314255238,0.175691023,1.525702386,49.07183331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25156315,1.786864804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105366185,47.16971272,77.35692934,48.95657752,526.3175333,0,0.688413498,46.4953457,-0.688413498,133.5046543,0.977369234,0,591.7634934,48.95657752,623.8045943,1,14,5% -2018-01-30 23:00:00,66.52532499,221.3088643,346.9573344,691.7022983,71.4220917,521.1558913,449.2719283,71.88396306,69.26845212,2.615510942,86.27746224,0,86.27746224,2.153639584,84.12382265,1.161085957,3.862568346,2.019909968,-2.019909968,0.184728741,0.184728741,0.205852664,0.922110158,29.6582324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58347093,1.560304548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.66806567,28.50862109,67.2515366,30.06892564,449.2719283,0,0.649516316,49.49485593,-0.649516316,130.5051441,0.97301964,0,504.4019464,30.06892564,524.0814568,1,15,4% -2018-01-30 00:00:00,75.20675738,233.3371123,188.0382748,529.4332334,52.85717112,347.4326336,294.7517893,52.68084433,51.26333239,1.417511943,47.18589548,0,47.18589548,1.593838731,45.59205675,1.312605536,4.072500876,3.627648654,-3.627648654,0,0,0.281097937,0.398459683,12.8158331,0.082746171,1,0.268980312,0,0.929098803,0.967860766,0.724496596,1,49.45134594,1.154730735,0.013620034,0.312029739,0.96210228,0.686598876,0.961238037,0.922476074,0.282665597,12.31906625,49.73401153,13.47379698,270.3622073,0,0.556730803,56.16998885,-0.556730803,123.8300111,0.960189988,0,309.3330962,13.47379698,318.1514268,1,16,3% -2018-01-30 01:00:00,85.18702256,243.6408313,26.89730479,140.7090662,15.0913152,73.59359415,58.75457454,14.83901961,14.63625637,0.202763245,6.976621786,0,6.976621786,0.455058834,6.521562951,1.486794024,4.252334699,11.80334717,-11.80334717,0,0,0.561071651,0.113764709,3.659064092,0.598125263,1,0.084519895,0,0.952930663,0.991692626,0.724496596,1,14.17533309,0.329688576,0.079677403,0.312029739,0.799019491,0.523516087,0.961238037,0.922476074,0.078304435,3.517231584,14.25363752,3.846920161,23.61197917,0,0.417560688,65.31932093,-0.417560688,114.6806791,0.930256927,0,36.2188447,3.846920161,38.73657701,1,17,7% -2018-01-30 02:00:00,96.34122248,252.820564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681471538,4.412551258,-8.987623738,8.987623738,1,0,#DIV/0!,0,0,1,0.062905179,0,0.110808356,0.961238037,1,0.458707584,0.734210988,0,0,0.115824807,0.011084592,0.724496596,0.448993192,0.999007883,0.96024592,0,0,0,0,0,0,0.235727278,76.36550282,-0.235727278,103.6344972,0.837890479,0,0,0,0,1,18,0% -2018-01-30 03:00:00,107.8708704,261.500234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882701856,4.564040078,-3.039184815,3.039184815,1,0.950115097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030616638,88.24552171,-0.030616638,91.75447829,0,0,0,0,0,1,19,0% -2018-01-30 04:00:00,119.6649179,270.3762922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088546817,4.718956518,-1.645823711,1.645823711,1,0.81160612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.186482328,100.7475676,0.186482328,79.2524324,0,0.781878078,0,0,0,1,20,0% -2018-01-30 05:00:00,131.4364552,280.4222348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293998901,4.894291293,-0.976853243,0.976853243,1,0.697205433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.400772228,113.626463,0.400772228,66.37353695,0,0.925240856,0,0,0,1,21,0% -2018-01-30 06:00:00,142.7573999,293.3867323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49158666,5.12056446,-0.552473072,0.552473072,1,0.624632149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597645806,126.7014763,0.597645806,53.29852369,0,0.966338407,0,0,0,1,22,0% -2018-01-30 07:00:00,152.7026914,312.9358478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665164742,5.461760891,-0.234809673,0.234809673,1,0.570308509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763681042,139.789794,0.763681042,40.21020598,0,0.98452764,0,0,0,1,23,0% -2018-01-31 08:00:00,158.9305852,344.9855893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773861994,6.021134405,0.033480632,-0.033480632,1,0.524428164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887555506,152.5676621,0.887555506,27.4323379,0,0.993665495,0,0,0,1,0,0% -2018-01-31 09:00:00,157.9038938,24.4789671,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755942848,0.427238573,0.284447937,-0.284447937,1,0.481510228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960817749,163.907976,0.960817749,16.092024,0,0.997960995,0,0,0,1,1,0% -2018-01-31 10:00:00,150.377283,52.90795863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624578709,0.923418079,0.543490587,-0.543490587,1,0.437211325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978463287,168.087309,0.978463287,11.912691,0,0.998899462,0,0,0,1,2,0% -2018-01-31 11:00:00,139.9306643,70.25152497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442250817,1.226120415,0.841155802,-0.841155802,1,0.386307576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93927592,159.9303101,0.93927592,20.06968991,0,0.996767506,0,0,0,1,3,0% -2018-01-31 12:00:00,128.4278503,82.21947444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241488839,1.435000538,1.231870706,-1.231870706,1,0.319491392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845911185,147.7696936,0.845911185,32.23030641,0,0.99089214,0,0,0,1,4,0% -2018-01-31 13:00:00,116.6068847,91.83630222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035174069,1.602845847,1.853116898,-1.853116898,1,0.213252036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704716157,134.8066173,0.704716157,45.19338267,0,0.979049448,0,0,0,1,5,0% -2018-01-31 14:00:00,104.8387648,100.5763569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82978163,1.755388578,3.249668547,-3.249668547,1,0,#DIV/0!,0,0,0.024934722,1,0.2985276,0,0.924594417,0.96335638,0.724496596,1,0,0,0.004214686,0.312029739,0.988117895,0.712614491,0.961238037,0.922476074,0,0,0,0,0,0,-0.525297808,121.6882937,0.525297808,58.31170628,0,0.954815898,0,0,0,1,6,0% -2018-01-31 15:00:00,93.39873612,109.31147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.630115462,1.907845062,13.02793227,-13.02793227,1,0,#DIV/0!,0,0,0.629321272,1,0.076607934,0,0.953780177,0.992542141,0.724496596,1,0,0,0.082870344,0.312029739,0.792014868,0.516511464,0.961238037,0.922476074,0,0,0,0,0,0,-0.319869196,108.6550146,0.319869196,71.34498538,0,0.893686105,0,0,0,1,7,0% -2018-01-31 16:00:00,82.46103476,118.7083855,63.88933283,273.9959466,27.94095074,27.58005276,0,27.58005276,27.09842798,0.481624778,43.85810933,27.52487815,16.33323119,0.842522756,15.49070843,1.439216561,2.071852177,-4.986169543,4.986169543,0.6171611,0.6171611,0.437333581,0.377877699,12.15384574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.04803971,0.610404869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.273771106,11.68273882,26.32181082,12.29314369,0,27.52487815,-0.100457246,95.76550132,0.100457246,84.23449868,0,0.552275823,26.32181082,27.49446841,44.31639051,1,8,68% -2018-01-31 17:00:00,72.70237706,129.389818,233.8413255,587.9500321,59.02304797,125.5182177,66.51213775,59.00607999,57.2432853,1.762794686,58.47729935,0,58.47729935,1.779762668,56.69753668,1.268895854,2.258278343,-1.635073821,1.635073821,0.809767781,0.809767781,0.252406404,1.512096392,48.63421776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02442319,1.289431995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095508689,46.74906,56.11993188,48.038492,66.51213775,0,0.113125494,83.50448181,-0.113125494,96.49551819,0.608012979,0,96.56017491,48.038492,128.0004072,1,9,33% -2018-01-31 18:00:00,64.4250128,141.9461421,384.9901558,718.3063355,74.90305185,298.2556724,222.7090055,75.54666689,72.64444847,2.902218415,95.60392391,0,95.60392391,2.258603376,93.34532053,1.124428594,2.47742754,-0.647559164,0.647559164,0.640892829,0.640892829,0.194558356,2.062781137,66.34613212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82860704,1.636350457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.494477912,63.77442579,71.32308495,65.41077625,222.7090055,0,0.310047391,71.93791347,-0.310047391,108.0620865,0.888734331,0,269.2522239,65.41077625,312.0622688,1,10,16% -2018-01-31 19:00:00,58.36671453,156.7413299,491.606391,777.5610234,83.7907028,455.3203582,370.3503176,84.97004059,81.26410396,3.705936631,121.72226,0,121.72226,2.526598844,119.1956611,1.018691342,2.735652281,-0.092278221,0.092278221,0.545934195,0.545934195,0.170442664,2.310008065,74.29779998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.11414776,1.830512262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67359298,71.41787139,79.78774074,73.24838365,370.3503176,0,0.476297431,61.55614073,-0.476297431,118.4438593,0.945023578,0,429.7775231,73.24838365,477.7171252,1,11,11% -2018-01-31 20:00:00,55.30068366,173.4713992,543.4291582,800.5276967,87.71298563,569.8376125,480.6728985,89.16471403,85.06811549,4.09659854,134.4055611,0,134.4055611,2.644870143,131.760691,0.965179008,3.027647074,0.33644547,-0.33644547,0.472618126,0.472618126,0.161406476,2.284840867,73.48833637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.77070833,1.916199415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65535943,70.63978418,83.42606776,72.55598359,480.6728985,0,0.600445057,53.09822084,-0.600445057,126.9017792,0.966728434,0,548.1062264,72.55598359,595.5926665,1,12,9% -2018-01-31 21:00:00,55.73782212,190.8559259,536.1414058,797.4831502,87.17386202,626.0941463,537.5072375,88.58690883,84.54524844,4.041660384,132.6223046,0,132.6223046,2.628613577,129.9936911,0.972808514,3.331064304,0.75292266,-0.75292266,0.401396332,0.401396332,0.162594907,2.015682084,64.83126468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.26810864,1.904421589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460354808,62.31827759,82.72846344,64.22269918,537.5072375,0,0.674004507,47.62310791,-0.674004507,132.3768921,0.97581652,0,607.2369053,64.22269918,649.2693774,1,13,7% -2018-01-31 22:00:00,59.59912678,207.1975747,470.3363965,767.1643414,82.11525259,614.036618,530.8518488,83.18476918,79.63917475,3.545594428,116.5145825,0,116.5145825,2.476077838,114.0385047,1.040200994,3.616279881,1.250519588,-1.250519588,0.316302245,0.316302245,0.174588344,1.544701693,49.68291633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55220399,1.793909965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.119131118,47.75710895,77.67133511,49.55101892,530.8518488,0,0.691966271,46.21404147,-0.691966271,133.7859585,0.977742143,0,596.7075593,49.55101892,629.1377101,1,14,5% -2018-01-31 23:00:00,66.27230057,221.4445797,351.6101279,695.3354064,71.81383333,526.4529812,454.1540143,72.29896695,69.64838129,2.650585665,87.41739835,0,87.41739835,2.16545204,85.25194631,1.156669848,3.864937026,1.998323476,-1.998323476,0.188420249,0.188420249,0.204242789,0.938783267,30.19449693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.9486733,1.568862631,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680145281,29.02409895,67.62881858,30.59296158,454.1540143,0,0.653143807,49.22094705,-0.653143807,130.779053,0.97344718,0,509.7237632,30.59296158,529.7462447,1,15,4% -2018-01-31 00:00:00,74.97526956,233.5032985,192.2917321,535.6334684,53.43628571,353.4073282,300.1327674,53.27456084,51.82498454,1.449576301,48.23465789,0,48.23465789,1.611301173,46.62335672,1.308565311,4.075401373,3.572256728,-3.572256728,0,0,0.277891749,0.402825293,12.95624613,0.07470652,1,0.272948509,0,0.928504441,0.967266404,0.724496596,1,49.97849314,1.167382215,0.012341717,0.312029739,0.965597547,0.690094142,0.961238037,0.922476074,0.286278285,12.4540366,50.26477142,13.62141881,277.7108927,0,0.560332364,55.92121398,-0.560332364,124.078786,0.960767246,0,317.080301,13.62141881,325.9952472,1,16,3% -2018-01-31 01:00:00,84.97895572,243.8267124,29.35054478,151.2582967,16.11217193,79.52361222,63.67602492,15.84758731,15.6263305,0.221256804,7.602220823,0,7.602220823,0.485841431,7.116379392,1.483162572,4.255578935,11.31590061,-11.31590061,0,0,0.548956486,0.121460358,3.906582626,0.584196003,1,0.088142253,0,0.952536837,0.9912988,0.724496596,1,15.13651093,0.351990463,0.078227471,0.312029739,0.802227232,0.526723828,0.961238037,0.922476074,0.083524865,3.755155814,15.22003579,4.107146277,26.4767457,0,0.42097542,65.10381487,-0.42097542,114.8961851,0.93122822,0,39.87592855,4.107146277,42.56397365,1,17,7% -2018-01-31 02:00:00,96.14230362,253.0229651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677999749,4.416083825,-9.279368127,9.279368127,1,0,#DIV/0!,0,0,1,0.104760159,0,0.107351661,0.961238037,1,0.465519499,0.741022903,0,0,0.115824807,0.018840262,0.724496596,0.448993192,0.998296086,0.959534123,0,0,0,0,0,0,0.239038064,76.17022691,-0.239038064,103.8297731,0.840828293,0,0,0,0,1,18,0% -2018-01-31 03:00:00,107.6814903,261.7212485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879396549,4.567897508,-3.071500201,3.071500201,1,0.944588841,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03365954,88.07108607,-0.03365954,91.92891393,0,0,0,0,0,1,19,0% -2018-01-31 04:00:00,119.4787959,270.6218878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085298375,4.723242971,-1.655671309,1.655671309,1,0.813290159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.183760358,100.5888671,0.183760358,79.41113287,0,0.777906494,0,0,0,1,20,0% -2018-01-31 05:00:00,131.2451417,280.7009093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290659851,4.89915508,-0.980632086,0.980632086,1,0.697851653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398401971,113.4783159,0.398401971,66.5216841,0,0.924498613,0,0,0,1,21,0% -2018-01-31 06:00:00,142.5482455,293.7026973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.487936226,5.126079089,-0.553760707,0.553760707,1,0.624852348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595633678,126.5578188,0.595633678,53.44218122,0,0.966055788,0,0,0,1,22,0% -2018-01-31 07:00:00,152.4578011,313.2477036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660890599,5.467203801,-0.23474658,0.23474658,1,0.570297719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762008681,139.6416002,0.762008681,40.35839978,0,0.98438395,0,0,0,1,23,0% -2018-02-01 08:00:00,158.6478637,345.0624562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768927573,6.022475986,0.0344965,-0.0344965,1,0.524254441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886181055,152.3972146,0.886181055,27.60278544,0,0.993578121,0,0,0,2,0,0% -2018-02-01 09:00:00,157.649661,24.14263751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.751505649,0.421368515,0.286348801,-0.286348801,1,0.481185161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.959678764,163.6741903,0.959678764,16.32580975,0,0.997899233,0,0,0,2,1,0% -2018-02-01 10:00:00,150.1860531,52.48311328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621241118,0.916003128,0.546456378,-0.546456378,1,0.436704145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97748105,167.817678,0.97748105,12.18232202,0,0.998848113,0,0,0,2,2,0% -2018-02-01 11:00:00,139.7781655,69.87869381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43958921,1.219613284,0.845717065,-0.845717065,1,0.385527554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938360872,159.7780834,0.938360872,20.22191657,0,0.996715596,0,0,0,2,3,0% -2018-02-01 12:00:00,128.2920548,81.90012069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23911876,1.429426764,1.239360031,-1.239360031,1,0.318210642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844969097,147.668625,0.844969097,32.33137498,0,0.990826238,0,0,0,2,4,0% -2018-02-01 13:00:00,116.4741764,91.55429998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.032857871,1.597923979,1.867538854,-1.867538854,1,0.210785736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703654621,134.7209552,0.703654621,45.27904483,0,0.978942412,0,0,0,2,5,0% -2018-02-01 14:00:00,104.6999681,100.318631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82735917,1.750890413,3.290450021,-3.290450021,1,0,#DIV/0!,0,0,0.031520524,1,0.295039894,0,0.925135526,0.963897489,0.724496596,1,0,0,0.005311613,0.312029739,0.985048147,0.709544743,0.961238037,0.922476074,0,0,0,0,0,0,-0.524032595,121.6031408,0.524032595,58.39685917,0,0.954586088,0,0,0,2,6,0% -2018-02-01 15:00:00,93.24659662,109.0695356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627460127,1.903622511,13.68687793,-13.68687793,1,0,#DIV/0!,0,0,0.644183865,1,0.072933089,0,0.954169754,0.992931717,0.724496596,1,0,0,0.084365696,0.312029739,0.788762425,0.513259021,0.961238037,0.922476074,0,0,0,0,0,0,-0.318330043,108.561963,0.318330043,71.43803701,0,0.892930314,0,0,0,2,7,0% -2018-02-01 16:00:00,82.29129608,118.4783628,66.51026786,282.0930354,28.67123163,28.30807071,0,28.30807071,27.80668821,0.501382493,44.81352724,27.82279935,16.99072789,0.864543419,16.12618447,1.436254062,2.067837524,-4.897331942,4.897331942,0.632353224,0.632353224,0.43107978,0.396512486,12.75320456,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.72884639,0.626358764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.287271946,12.25886531,27.01611833,12.88522408,0,27.82279935,-0.09862987,95.66027775,0.09862987,84.33972225,0,0.543054182,27.01611833,27.99451163,45.3379663,2,8,68% -2018-02-01 17:00:00,72.50511092,129.173719,237.5131252,592.3590757,59.43771066,127.7553,68.31938139,59.43591865,57.64544439,1.790474264,59.38007331,0,59.38007331,1.792266278,57.58780703,1.26545291,2.254506704,-1.62574757,1.62574757,0.808172898,0.808172898,0.250250215,1.532964086,49.30539454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.4109938,1.298490818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110627262,47.39422065,56.52162106,48.69271147,68.31938139,0,0.115334405,83.37708663,-0.115334405,96.62291337,0.616478016,0,98.63901774,48.69271147,130.5074235,2,9,32% -2018-02-01 18:00:00,64.1971889,141.7547847,389.1418598,721.2056717,75.21886556,301.3475925,225.4633375,75.88425495,72.95073924,2.933515714,96.62007557,0,96.62007557,2.268126325,94.35194925,1.120452317,2.474087723,-0.647565306,0.647565306,0.640893879,0.640893879,0.193294203,2.083696776,67.01885099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.12302537,1.643249801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.509631221,64.42106876,71.63265659,66.06431856,225.4633375,0,0.312620028,71.78280329,-0.312620028,108.2171967,0.890061431,0,272.3088774,66.06431856,315.5466526,2,10,16% -2018-02-01 19:00:00,58.10857163,156.5966056,496.0925304,779.8728081,84.07689772,459.0050147,373.7235906,85.28142409,81.54166904,3.739755044,122.8186062,0,122.8186062,2.535228677,120.2833775,1.014185899,2.733126365,-0.095406497,0.095406497,0.546469162,0.546469162,0.169478258,2.3311119,74.97657186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.38095387,1.836764546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.688882636,72.07033274,80.06983651,73.90709729,373.7235906,0,0.479210952,61.36611929,-0.479210952,118.6338807,0.945661817,0,433.4859663,73.90709729,481.8566833,2,11,11% -2018-02-01 20:00:00,55.02052215,173.4002967,548.1440191,802.6549473,87.99558579,574.0014024,484.527067,89.47433536,85.34219421,4.132141153,135.5572552,0,135.5572552,2.653391581,132.9038636,0.960289268,3.026406102,0.331229945,-0.331229945,0.473510033,0.473510033,0.160533697,2.305856305,74.1642651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.03416322,1.922373168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.670585044,71.28951259,83.70474826,73.21188576,484.527067,0,0.603655492,52.86784596,-0.603655492,127.132154,0.967171299,0,552.3254213,73.21188576,600.2411363,2,12,9% -2018-02-01 21:00:00,55.45177284,190.8719586,540.9766575,799.6980977,87.46808858,630.6626196,541.753906,88.90871354,84.83060299,4.078110553,133.8035394,0,133.8035394,2.637485594,131.1660538,0.967816012,3.331344128,0.745251413,-0.745251413,0.402708192,0.402708192,0.161685513,2.036125663,65.48880045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.54240228,1.910849334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475166111,62.95032598,83.01756839,64.86117531,541.753906,0,0.677448036,47.35545597,-0.677448036,132.644544,0.976193601,0,611.8742648,64.86117531,654.3246068,2,13,7% -2018-02-01 22:00:00,59.32365074,207.2889776,475.172209,769.7816958,82.43887005,618.9668223,535.4317395,83.53508277,79.95303395,3.582048825,117.6968395,0,117.6968395,2.485836099,115.2110034,1.03539303,3.617875162,1.238681943,-1.238681943,0.318326602,0.318326602,0.173492617,1.563893515,50.30019129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85389739,1.800979792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.133035528,48.35045713,77.98693292,50.15143692,535.4317395,0,0.695563096,45.92789432,-0.695563096,134.0721057,0.978115795,0,601.7011746,50.15143692,634.5242871,2,14,5% -2018-02-01 23:00:00,66.01689626,221.5867185,356.3011186,698.9404763,72.20472274,531.7795617,459.0661294,72.71343228,70.02748394,2.685948334,88.56657012,0,88.56657012,2.177238798,86.38933132,1.152212202,3.867417816,1.977044217,-1.977044217,0.192059216,0.192059216,0.202650845,0.955631137,30.73638234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.31308119,1.577402097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692351506,29.54497982,68.00543269,31.12238192,459.0661294,0,0.656802897,48.94350309,-0.656802897,131.0564969,0.973873661,0,515.0778448,31.12238192,535.4468213,2,15,4% -2018-02-01 00:00:00,74.74221063,233.675745,196.5806568,541.7596449,54.00990195,359.3908117,305.5275995,53.86321215,52.38130413,1.481908027,49.291854,0,49.291854,1.628597819,47.66325618,1.304497666,4.078411132,3.51820407,-3.51820407,0,0,0.274746777,0.407149455,13.09532603,0.066724217,1,0.276932343,0,0.927904419,0.966666382,0.724496596,1,50.49976876,1.179913576,0.011063214,0.312029739,0.969106112,0.693602708,0.961238037,0.922476074,0.28988449,12.58772549,50.78965325,13.76763906,285.1415097,0,0.563954149,55.67030297,-0.563954149,124.329697,0.96134031,0,324.9076806,13.76763906,333.918325,2,16,3% -2018-02-01 01:00:00,84.76959875,244.0185715,31.89897151,161.9350851,17.13680955,85.58660504,68.7260656,16.86053943,16.62007151,0.240467921,8.251012992,0,8.251012992,0.516738036,7.734274956,1.479508604,4.258927508,10.8644565,-10.8644565,0,0,0.537221382,0.129184509,4.155017878,0.570405731,1,0.091784645,0,0.952137743,0.990899707,0.724496596,1,16.10135344,0.374374948,0.076776933,0.312029739,0.805453118,0.529949714,0.961238037,0.922476074,0.088762474,3.993961228,16.19011591,4.368336176,29.52432392,0,0.424405036,64.88699007,-0.424405036,115.1130099,0.932188014,0,43.7123368,4.368336176,46.57132546,2,17,7% -2018-02-01 02:00:00,95.94270954,253.2311424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674516175,4.419717204,-9.591486005,9.591486005,1,0,#DIV/0!,0,0,1,0.145587162,0,0.103883812,0.961238037,1,0.472450048,0.747953452,0,0,0.115824807,0.026718594,0.724496596,0.448993192,0.99755822,0.958796257,0,0,0,0,0,0,0.242351184,75.97464918,-0.242351184,104.0253508,0.843687825,0,0,0,0,2,18,0% -2018-02-01 03:00:00,107.4915342,261.9479968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876081189,4.571855014,-3.10448446,3.10448446,1,0.9389482,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036700053,87.89676951,-0.036700053,92.10323049,0,0,0,0,0,2,19,0% -2018-02-01 04:00:00,119.2919798,270.873362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082037819,4.727632024,-1.665574413,1.665574413,1,0.814983689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1810423,100.4304767,0.1810423,79.56952331,0,0.773821449,0,0,0,2,20,0% -2018-02-01 05:00:00,131.0527633,280.9857789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.287302213,4.904126993,-0.984372921,0.984372921,1,0.698491373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.396033847,113.3304681,0.396033847,66.66953195,0,0.923748165,0,0,0,2,21,0% -2018-02-01 06:00:00,142.3373314,294.0252126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484255081,5.131708044,-0.554984699,0.554984699,1,0.625061663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593618729,126.414227,0.593618729,53.58577304,0,0.965770852,0,0,0,2,22,0% -2018-02-01 07:00:00,152.2100918,313.566295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656567257,5.472764271,-0.23460711,0.23460711,1,0.570273868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760325711,139.4929203,0.760325711,40.50707969,0,0.984238709,0,0,0,2,23,0% -2018-02-02 08:00:00,158.3608865,345.148595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.763918875,6.023979391,0.035601087,-0.035601087,1,0.524065545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884785915,152.2251875,0.884785915,27.77481255,0,0.993489155,0,0,0,2,0,0% -2018-02-02 09:00:00,157.3889941,23.81687197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746956154,0.415682833,0.288355904,-0.288355904,1,0.480841926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958507412,163.4371101,0.958507412,16.56288987,0,0.997835562,0,0,0,2,1,0% -2018-02-02 10:00:00,149.9876484,52.06148291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617778303,0.90864429,0.549557364,-0.549557364,1,0.436173845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976453977,167.5418867,0.976453977,12.45811333,0,0.99879431,0,0,0,2,2,0% -2018-02-02 11:00:00,139.6188876,69.50534298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436809286,1.213097083,0.850466751,-0.850466751,1,0.384715309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937388588,159.617529,0.937388588,20.38247096,0,0.996660328,0,0,0,2,3,0% -2018-02-02 12:00:00,128.1499556,81.57910501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236638661,1.423823983,1.247151133,-1.247151133,1,0.316878285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843958298,147.5604973,0.843958298,32.43950274,0,0.990755367,0,0,0,2,4,0% -2018-02-02 13:00:00,116.3355115,91.27035309,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030437712,1.592968171,1.88257558,-1.88257558,1,0.208214305,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702514614,134.6291017,0.702514614,45.37089834,0,0.978827103,0,0,0,2,5,0% -2018-02-02 14:00:00,104.5554366,100.0589549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824836619,1.746358209,3.333372273,-3.333372273,1,0,#DIV/0!,0,0,0.038356628,1,0.291453579,0,0.925689319,0.964451282,0.724496596,1,0,0,0.006443162,0.312029739,0.981891348,0.706387944,0.961238037,0.922476074,0,0,0,0,0,0,-0.522681539,121.5122964,0.522681539,58.48770364,0,0.954339457,0,0,0,2,6,0% -2018-02-02 15:00:00,93.08884432,108.8257563,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62470683,1.899367759,14.43691444,-14.43691444,1,0,#DIV/0!,0,0,0.659713952,1,0.069156418,0,0.954566816,0.993328779,0.724496596,1,0,0,0.085910775,0.312029739,0.785420619,0.509917214,0.961238037,0.922476074,0,0,0,0,0,0,-0.316700575,108.4635065,0.316700575,71.5364935,0,0.892122168,0,0,0,2,7,0% -2018-02-02 16:00:00,82.11597672,118.2466942,69.24417885,290.3621024,29.41569107,29.05069132,0,29.05069132,28.52869945,0.521991869,45.75717999,28.08113553,17.67604446,0.886991618,16.78905284,1.433194162,2.063794144,-4.808910132,4.808910132,0.647474244,0.647474244,0.424811032,0.416148138,13.38475463,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.42287105,0.642622408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.30149791,12.86593527,27.72436896,13.50855767,0,28.08113553,-0.096710746,95.54979179,0.096710746,84.45020821,0,0.532994372,27.72436896,28.47564486,46.36110901,2,8,67% -2018-02-02 17:00:00,72.30226534,128.9563408,241.2891197,596.8170474,59.85948588,130.0786918,70.20525102,59.87344083,58.05450152,1.818939305,60.30832498,0,60.30832498,1.804984357,58.50334063,1.261912587,2.250712739,-1.616094318,1.616094318,0.806522095,0.806522095,0.248081994,1.554320887,49.99230267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.80419507,1.307705022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.126100191,48.05450287,56.93029526,49.3622079,70.20525102,0,0.117632784,83.24449656,-0.117632784,96.75550344,0.624948427,0,100.8049565,49.3622079,133.1115343,2,9,32% -2018-02-02 18:00:00,63.96375661,141.5628619,393.3888139,724.1285202,75.54012646,304.5288913,228.3010473,76.22784398,73.26231293,2.965531047,97.65948594,0,97.65948594,2.277813526,95.38167242,1.116378155,2.470738038,-0.647397623,0.647397623,0.640865204,0.640865204,0.192024084,2.105016182,67.70455637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42252186,1.650268146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.525077058,65.08019485,71.94759891,66.730463,228.3010473,0,0.315276972,71.62246485,-0.315276972,108.3775352,0.891409286,0,275.4572725,66.730463,319.131026,2,10,16% -2018-02-02 19:00:00,57.84488789,156.452639,500.6626253,782.1964164,84.3673911,462.7733545,377.1757452,85.59760933,81.82340298,3.77420635,123.9354381,0,123.9354381,2.543988124,121.39145,1.009583749,2.730613673,-0.098424505,0.098424505,0.546985271,0.546985271,0.168511462,2.352551307,75.66613687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65176725,1.843110736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.704415413,72.73316886,80.35618266,74.5762796,377.1757452,0,0.48220081,61.17076073,-0.48220081,118.8292393,0.94630876,0,437.2808943,74.5762796,486.0895778,2,11,11% -2018-02-02 20:00:00,54.73517934,173.3319478,552.9301282,804.7865582,88.28144953,578.2384032,488.4507442,89.78765897,85.6194381,4.168220865,136.7263226,0,136.7263226,2.662011427,134.0643112,0.955309096,3.025213187,0.326101611,-0.326101611,0.47438703,0.47438703,0.159661131,2.327146849,74.84904217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.3006606,1.928618217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.68600997,71.94774636,83.98667057,73.87636458,488.4507442,0,0.606932036,52.63200175,-0.606932036,127.3679982,0.967618453,0,556.6206241,73.87636458,604.9712272,2,12,9% -2018-02-02 21:00:00,55.161332,190.8928114,545.8700861,801.9106322,87.76450934,635.290841,546.0577562,89.23308485,85.11808557,4.114999285,134.998946,0,134.998946,2.646423773,132.3525222,0.962746863,3.331708077,0.737671313,-0.737671313,0.404004465,0.404004465,0.160779115,2.056792274,66.15350972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.81874147,1.917325015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490139001,63.58926981,83.30888047,65.50659483,546.0577562,0,0.680945899,47.0823968,-0.680945899,132.9176032,0.976572728,0,616.5739929,65.50659483,659.446749,2,13,7% -2018-02-02 22:00:00,59.04485649,207.3864668,480.0539143,772.3874667,82.76340876,623.941301,540.0546652,83.8866358,80.26778662,3.618849182,118.8902515,0,118.8902515,2.495622138,116.3946294,1.030527152,3.619576669,1.226980023,-1.226980023,0.320327748,0.320327748,0.172404404,1.583269088,50.92337634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15644963,1.808069744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.147073065,48.9494863,78.3035227,50.75755604,540.0546652,0,0.699201746,45.63700501,-0.699201746,134.362995,0.978489881,0,606.7415478,50.75755604,639.9613531,2,14,5% -2018-02-02 23:00:00,65.75921269,221.7352624,361.0281106,702.515934,72.59456756,537.1329296,464.0057737,73.1271559,70.40557351,2.721582397,89.72443932,0,89.72443932,2.188994057,87.53544526,1.147714775,3.870010396,1.956074423,-1.956074423,0.195645262,0.195645262,0.201077327,0.972646637,31.28365931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67651526,1.585918743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704679178,30.07104326,68.38119444,31.656962,464.0057737,0,0.660491458,48.66263503,-0.660491458,131.337365,0.974298794,0,520.4614601,31.656962,541.1803086,2,15,4% -2018-02-02 00:00:00,74.5076688,233.854404,200.9030337,547.809895,54.57786371,365.3803623,310.9337306,54.44663168,52.93213975,1.51449193,50.35699047,0,50.35699047,1.645723962,48.71126651,1.300404139,4.08152932,3.46546195,-3.46546195,0,0,0.271662716,0.41143099,13.23303494,0.058801567,1,0.280930298,0,0.927298937,0.9660609,0.724496596,1,51.01502423,1.192321408,0.009785002,0.312029739,0.97262666,0.697123256,0.961238037,0.922476074,0.293483307,12.72009652,51.30850754,13.91241793,292.6503401,0,0.567594221,55.41736672,-0.567594221,124.5826333,0.961908899,0,332.8114739,13.91241793,341.9168732,2,16,3% -2018-02-02 01:00:00,84.55904292,244.2163376,34.53869883,172.707543,18.16257778,91.76777475,73.8924984,17.87527635,17.61490905,0.260367301,8.92197614,0,8.92197614,0.547668733,8.374307408,1.475833711,4.262379178,10.44534225,-10.44534225,0,0,0.525861668,0.136917183,4.403727261,0.556758225,1,0.09544556,0,0.951733504,0.990495467,0.724496596,1,17.06733947,0.396784133,0.075326419,0.312029739,0.808695752,0.533192347,0.961238037,0.922476074,0.094004755,4.233030148,17.16134422,4.62981428,32.75224211,0,0.427847546,64.66896265,-0.427847546,115.3310373,0.933135943,0,47.72363855,4.62981428,50.7537594,2,17,6% -2018-02-02 02:00:00,95.74249339,253.445006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671021744,4.423449827,-9.926108548,9.926108548,1,0,#DIV/0!,0,0,1,0.185414504,0,0.100405643,0.961238037,1,0.479498376,0.75500178,0,0,0.115824807,0.034719654,0.724496596,0.448993192,0.996793627,0.958031664,0,0,0,0,0,0,0.245665324,75.77884431,-0.245665324,104.2211557,0.846471072,0,0,0,0,2,18,0% -2018-02-02 03:00:00,107.3010376,262.18037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872756397,4.57591069,-3.138153256,3.138153256,1,0.933190497,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039737245,87.72262394,-0.039737245,92.27737606,0,0,0,0,0,2,19,0% -2018-02-02 04:00:00,119.1044888,271.13058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078765483,4.732121324,-1.675532315,1.675532315,1,0.816686591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17832869,100.2724258,0.17832869,79.72757417,0,0.769618868,0,0,0,2,20,0% -2018-02-02 05:00:00,130.8593252,281.2766667,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283926081,4.909203944,-0.988074922,0.988074922,1,0.699124453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39366801,113.1829271,0.39366801,66.8170729,0,0.922989426,0,0,0,2,21,0% -2018-02-02 06:00:00,142.1246569,294.3540241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480543211,5.137446887,-0.556144662,0.556144662,1,0.625260028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591600769,126.2706861,0.591600769,53.72931393,0,0.965483545,0,0,0,2,22,0% -2018-02-02 07:00:00,151.9595806,313.8912407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652195011,5.478435643,-0.234391173,0.234391173,1,0.570236941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758631662,139.3437163,0.758631662,40.65628369,0,0.984091862,0,0,0,2,23,0% -2018-02-03 08:00:00,158.069738,345.2435331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.758837377,6.025636374,0.036794313,-0.036794313,1,0.523861491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883369417,152.0515243,0.883369417,27.94847565,0,0.993398539,0,0,0,2,0,0% -2018-02-03 09:00:00,157.1220378,23.50163206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742296886,0.410180859,0.29046912,-0.29046912,1,0.480480545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957302922,163.1967145,0.957302922,16.80328551,0,0.997769929,0,0,0,2,1,0% -2018-02-03 10:00:00,149.7821645,51.64337581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614191932,0.901346945,0.552793547,-0.552793547,1,0.435620425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975381297,167.2601228,0.975381297,12.73987725,0,0.998737996,0,0,0,2,2,0% -2018-02-03 11:00:00,139.452891,69.1317329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433912099,1.206576357,0.855405425,-0.855405425,1,0.383870747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9363584,159.4487238,0.9363584,20.55127615,0,0.996601643,0,0,0,2,3,0% -2018-02-03 12:00:00,128.0016053,81.25661374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23404946,1.418195449,1.255246589,-1.255246589,1,0.31549388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842878319,147.4453229,0.842878319,32.5546771,0,0.990679457,0,0,0,2,4,0% -2018-02-03 13:00:00,116.1909462,90.98459781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027914572,1.5879808,1.898238796,-1.898238796,1,0.205535737,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701295951,134.531071,0.701295951,45.468929,0,0.978703424,0,0,0,2,5,0% -2018-02-03 14:00:00,104.4052347,99.79743107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822215101,1.741793757,3.37852861,-3.37852861,1,0,#DIV/0!,0,0,0.045445145,1,0.28777094,0,0.92625522,0.965017183,0.724496596,1,0,0,0.007608959,0.312029739,0.978649462,0.703146058,0.961238037,0.922476074,0,0,0,0,0,0,-0.521244801,121.4157874,0.521244801,58.58421262,0,0.954075782,0,0,0,2,6,0% -2018-02-03 15:00:00,92.92555345,108.5802091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621856867,1.895082152,15.29667385,-15.29667385,1,0,#DIV/0!,0,0,0.675927745,1,0.065280798,0,0.954970789,0.993732752,0.724496596,1,0,0,0.087505185,0.312029739,0.781992153,0.506488749,0.961238037,0.922476074,0,0,0,0,0,0,-0.314981335,108.359687,0.314981335,71.640313,0,0.891260435,0,0,0,2,7,0% -2018-02-03 16:00:00,81.93515638,118.0134343,72.0911374,298.7882408,30.17301991,29.80664548,0,29.80664548,29.26319203,0.543453445,46.68462758,28.2954688,18.38915878,0.909827877,17.4793309,1.430038252,2.059722989,-4.72109697,4.72109697,0.662491179,0.662491179,0.418539934,0.436801847,14.0490489,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.12889326,0.6591672,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316461451,13.50448019,28.44535471,14.16364739,0,28.2954688,-0.094700744,95.43409607,0.094700744,84.56590393,0,0.522021045,28.44535471,28.93447758,47.3823916,2,8,67% -2018-02-03 17:00:00,72.09393189,128.7377163,245.1675108,601.3179498,60.28785851,132.4879063,72.16977294,60.31813339,58.46995714,1.848176255,61.26160281,0,61.26160281,1.817901373,59.44370144,1.258276482,2.246897021,-1.606138732,1.606138732,0.804819589,0.804819589,0.245904762,1.576153139,50.69450294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.20354681,1.317063356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141917584,48.72948448,57.3454644,50.04654784,72.16977294,0,0.120019322,83.10678226,-0.120019322,96.89321774,0.633400415,0,103.0578285,50.04654784,135.8122931,2,9,32% -2018-02-03 18:00:00,63.72481323,141.3703869,397.7287118,727.071678,75.86650873,307.797935,231.2208344,76.5771006,73.57885357,2.998247031,98.72158607,0,98.72158607,2.287655156,96.43393092,1.112207806,2.467378716,-0.647061507,0.647061507,0.640807724,0.640807724,0.190749389,2.126726872,68.40284678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72679276,1.657398373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.540806379,65.75141816,72.26759914,67.40881653,231.2208344,0,0.318016561,71.45698279,-0.318016561,108.5430172,0.892775483,0,278.6958913,67.40881653,322.8136136,2,10,16% -2018-02-03 19:00:00,57.57576243,156.3094345,505.3141271,784.5296938,84.66192111,466.6231716,380.7048484,85.91832316,82.10905182,3.809271335,125.0721297,0,125.0721297,2.552869291,122.5192604,1.004886624,2.728114283,-0.101332944,0.101332944,0.547482644,0.547482644,0.167543151,2.374314357,76.36611136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.92634378,1.849545111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.720182669,73.40601097,80.64652645,75.25555608,380.7048484,0,0.485265059,60.97016017,-0.485265059,119.0298398,0.946963527,0,441.1601326,75.25555608,490.4133889,2,11,11% -2018-02-03 20:00:00,54.44475564,173.2663656,557.7848455,806.920835,88.57034337,582.5460711,492.4416326,90.1044385,85.89962072,4.204817775,137.9121162,0,137.9121162,2.670722642,135.2413936,0.950240246,3.024068562,0.321061608,-0.321061608,0.475248921,0.475248921,0.15878944,2.348701257,75.54230605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.56998279,1.934929463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701626066,72.61413796,84.27160886,74.54906742,492.4416326,0,0.610272546,52.39078756,-0.610272546,127.6092124,0.968069393,0,560.9892813,74.54906742,609.7801549,2,12,9% -2018-02-03 21:00:00,54.86660411,190.9185079,550.8190884,804.1192577,88.06290739,639.9760873,550.4162945,89.55979277,85.40748581,4.152306955,136.2078867,0,136.2078867,2.655421575,133.5524651,0.957602891,3.332156566,0.730184576,-0.730184576,0.405284773,0.405284773,0.159876281,2.077671693,66.8250636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.096924,1.923843892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505266069,64.23479294,83.60219007,66.15863684,550.4162945,0,0.68449585,46.80402853,-0.68449585,133.1959715,0.976953538,0,621.3333364,66.15863684,664.6328411,2,13,7% -2018-02-03 22:00:00,58.76285105,207.4900533,484.9790604,774.9802098,83.08866517,628.9572854,544.7180731,84.23921236,80.58323535,3.655977013,120.0942179,0,120.0942179,2.505429819,117.5887881,1.025605229,3.621384595,1.215416737,-1.215416737,0.322305186,0.322305186,0.171324232,1.602819551,51.55218641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45967095,1.815175375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161237308,49.55392246,78.62090826,51.36909784,544.7180731,0,0.702879978,45.34147581,-0.702879978,134.6585242,0.9788641,0,611.8258745,51.36909784,645.4459216,2,14,5% -2018-02-03 23:00:00,65.49935145,221.8901918,365.7888917,706.0603046,72.98318195,542.5103869,468.970446,73.53994091,70.78246973,2.757471176,90.89046397,0,90.89046397,2.200712215,88.68975175,1.143179341,3.872714426,1.935415734,-1.935415734,0.199178106,0.199178106,0.199522685,0.989822518,31.83609466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03880225,1.594408508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717123045,30.60206513,68.75592529,32.19647364,468.970446,0,0.664207353,48.37845562,-0.664207353,131.6215444,0.974722303,0,525.8718784,32.19647364,546.9438264,2,15,4% -2018-02-03 00:00:00,74.27173281,234.0392261,205.2568327,553.7825479,55.14002788,371.3732974,316.3486321,55.0246653,53.47735259,1.547312706,51.42957075,0,51.42957075,1.662675286,49.76689546,1.296286279,4.084755074,3.414001463,-3.414001463,0,0,0.268639183,0.415668821,13.36933815,0.050940706,1,0.284940885,0,0.926688197,0.96545016,0.724496596,1,51.52412428,1.204602584,0.008507541,0.312029739,0.976157901,0.700654497,0.961238037,0.922476074,0.297073866,12.85111636,51.82119815,14.05571894,300.2336096,0,0.571250635,55.16251755,-0.571250635,124.8374825,0.962472745,0,340.7878645,14.05571894,349.9870514,2,16,3% -2018-02-03 01:00:00,84.34737808,244.4199382,37.26576704,183.5458199,19.18707261,98.05292901,79.16349234,18.88943667,18.60851158,0.280925093,9.614077698,0,9.614077698,0.578561032,9.035516667,1.472139463,4.265932678,10.05535899,-10.05535899,0,0,0.514871265,0.144640258,4.652127894,0.543256774,1,0.099123532,0,0.95132424,0.990086203,0.724496596,1,18.03217813,0.419165498,0.073876529,0.312029739,0.811953775,0.536450371,0.961238037,0.922476074,0.099240496,4.471802284,18.13141863,4.890967782,36.15738886,0,0.431300982,64.44984791,-0.431300982,115.5501521,0.934071676,0,51.90501144,4.890967782,55.10605203,2,17,6% -2018-02-03 02:00:00,95.54170827,253.6644646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667517382,4.427280103,-10.28567726,10.28567726,1,0,#DIV/0!,0,0,1,0.224269862,0,0.096917974,0.961238037,1,0.486663567,0.762166971,0,0,0.115824807,0.042843452,0.724496596,0.448993192,0.99600165,0.957239687,0,0,0,0,0,0,0.248979169,75.58288711,-0.248979169,104.4171129,0.849179987,0,0,0,0,2,18,0% -2018-02-03 03:00:00,107.110036,262.4182578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869422791,4.580062617,-3.17252286,3.17252286,1,0.927312949,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042770186,87.54870111,-0.042770186,92.45129889,0,0,0,0,0,2,19,0% -2018-02-03 04:00:00,118.9163419,271.3934063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075481701,4.736708508,-1.685544308,1.685544308,1,0.818398743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.175620062,100.1147439,0.175620062,79.88525613,0,0.765294485,0,0,0,2,20,0% -2018-02-03 05:00:00,130.6648333,281.5733957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280531557,4.914382841,-0.991737276,0.991737276,1,0.699750752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39130461,113.0357004,0.39130461,66.96429956,0,0.922222308,0,0,0,2,21,0% -2018-02-03 06:00:00,141.9102223,294.6888794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.476800621,5.143291215,-0.557240222,0.557240222,1,0.62544738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589579606,126.1271814,0.589579606,53.87281857,0,0.96519381,0,0,0,2,22,0% -2018-02-03 07:00:00,151.7062859,314.2221672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.647774185,5.4842114,-0.234098692,0.234098692,1,0.570186924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756926066,139.193951,0.756926066,40.80604904,0,0.98394335,0,0,0,2,23,0% -2018-02-04 08:00:00,157.7745032,345.3468111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753684556,6.027438916,0.038076097,-0.038076097,1,0.523642293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.881930899,151.8761711,0.881930899,28.12382891,0,0.993306216,0,0,0,2,0,0% -2018-02-04 09:00:00,156.8489375,23.19685693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737530387,0.404861529,0.292688327,-0.292688327,1,0.480101038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956064534,162.952987,0.956064534,17.04701298,0,0.997702275,0,0,0,2,1,0% -2018-02-04 10:00:00,149.5697017,51.22908336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610483755,0.894116177,0.556164953,-0.556164953,1,0.435043881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974262257,166.9725693,0.974262257,13.02743066,0,0.998679116,0,0,0,2,2,0% -2018-02-04 11:00:00,139.2802406,68.75811886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430898781,1.200055562,0.860533705,-0.860533705,1,0.382993759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935269664,159.2717548,0.935269664,20.72824518,0,0.996539483,0,0,0,2,3,0% -2018-02-04 12:00:00,127.8470598,80.93283183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231352133,1.412544388,1.263649153,-1.263649153,1,0.314056957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84172872,147.3231209,0.84172872,32.67687912,0,0.990598439,0,0,0,2,4,0% -2018-02-04 13:00:00,116.0405396,90.69717014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025289483,1.582964241,1.914540985,-1.914540985,1,0.202747899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699998473,134.4268815,0.699998473,45.57311851,0,0.978571273,0,0,0,2,5,0% -2018-02-04 14:00:00,104.2494291,99.53416219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819495782,1.737198848,3.426020148,-3.426020148,1,0,#DIV/0!,0,0,0.052788353,1,0.283994267,0,0.926832651,0.965594614,0.724496596,1,0,0,0.008808631,0.312029739,0.97532446,0.699821056,0.961238037,0.922476074,0,0,0,0,0,0,-0.519722571,121.3136439,0.519722571,58.68635607,0,0.953794827,0,0,0,2,6,0% -2018-02-04 15:00:00,92.75680037,108.3329712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61891157,1.890767037,16.29035016,-16.29035016,1,0,#DIV/0!,0,0,0.692842643,1,0.061309103,0,0.955381098,0.994143061,0.724496596,1,0,0,0.089148539,0.312029739,0.778479748,0.502976344,0.961238037,0.922476074,0,0,0,0,0,0,-0.313172901,108.2505487,0.313172901,71.7494513,0,0.890343785,0,0,0,2,7,0% -2018-02-04 16:00:00,81.74891713,117.7786379,75.05103113,307.3563398,30.94191522,30.57466869,0,30.57466869,30.00890232,0.565766374,47.59144015,28.46143584,19.13000431,0.933012908,18.19699141,1.426787764,2.05562502,-4.634064118,4.634064118,0.677374674,0.677374674,0.412278349,0.458489212,14.74658909,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.84569835,0.675964675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.332173873,14.17498235,29.17787222,14.85094702,0,28.46143584,-0.092600777,95.31324565,0.092600777,84.68675435,0,0.510047726,29.17787222,29.36763766,48.39840372,2,8,66% -2018-02-04 17:00:00,71.88020404,128.5178787,249.1464336,605.8559176,60.72232382,134.9824033,74.21291057,60.76949277,58.89132171,1.878171057,62.23943946,0,62.23943946,1.831002105,60.40843735,1.254546227,2.243060131,-1.59590486,1.59590486,0.803069494,0.803069494,0.243721425,1.598446923,51.41154767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.60857847,1.326554792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158069354,49.41873515,57.76664782,50.74528994,74.21291057,0,0.122492673,82.96401627,-0.122492673,97.03598373,0.641812319,0,105.397408,50.74528994,138.6091854,2,9,32% -2018-02-04 18:00:00,63.48045803,141.1773736,402.1591945,730.0320184,76.19769071,311.1530476,234.2213526,76.93169507,73.90004919,3.031645881,99.80579426,0,99.80579426,2.297641514,97.50815274,1.107943003,2.464009998,-0.646562393,0.646562393,0.640722371,0.640722371,0.189471462,2.148816135,69.11331342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03553821,1.664633456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.556809975,66.43434571,72.59234819,68.09897916,234.2213526,0,0.320837096,71.28644357,-0.320837096,108.7135564,0.894157672,0,282.0231675,68.09897916,326.5925874,2,10,16% -2018-02-04 19:00:00,57.30129644,156.166997,510.0444384,786.870541,84.96022811,470.5522211,384.308927,86.24329418,82.39836376,3.84493042,126.2280435,0,126.2280435,2.561864347,123.6661792,1.000096289,2.725628281,-0.104132632,0.104132632,0.547961418,0.547961418,0.166574168,2.396388908,77.07610482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.20444142,1.856061999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736175606,74.08848369,80.94061703,75.94454569,384.308927,0,0.488401722,60.76441459,-0.488401722,119.2355854,0.947625259,0,445.1214633,75.94454569,494.8256496,2,11,11% -2018-02-04 20:00:00,54.14935367,173.2035645,562.7054856,809.0561314,88.86203547,586.9218263,496.4973974,90.42442888,86.18251724,4.241911638,139.113978,0,139.113978,2.679518236,136.4344598,0.945084509,3.022972477,0.316110934,-0.316110934,0.476095536,0.476095536,0.157919263,2.370508087,76.24368863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.84191368,1.94130184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717425039,73.28833358,84.55933872,75.22963542,496.4973974,0,0.613674847,52.14430473,-0.613674847,127.8556953,0.968523628,0,565.4287994,75.22963542,614.6650912,2,12,9% -2018-02-04 21:00:00,54.56769619,190.9490732,555.8210183,806.3225275,88.36306758,644.7156027,554.826994,89.88860868,85.69859506,4.190013616,137.4297135,0,137.4297135,2.664472512,134.765241,0.952385964,3.332690032,0.72279323,-0.72279323,0.406548768,0.406548768,0.158977557,2.098753496,67.50312684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.37674928,1.930401265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520539763,64.88657312,83.89728904,66.81697439,554.826994,0,0.688095613,46.52045143,-0.688095613,133.4795486,0.97733568,0,626.1495064,66.81697439,669.8798798,2,13,7% -2018-02-04 22:00:00,58.47774409,207.5997482,489.9451541,777.5585384,83.41443814,634.0119794,549.4193808,84.59259859,80.89918506,3.693413525,121.3081281,0,121.3081281,2.515253076,118.792875,1.020629174,3.623299133,1.203994733,-1.203994733,0.324258464,0.324258464,0.170252604,1.622535841,52.18633008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76337383,1.822292292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.175521694,50.16348548,78.93889553,51.98577777,549.4193808,0,0.706595521,45.04141164,-0.706595521,134.9585884,0.979238159,0,616.9513184,51.98577777,650.9749703,2,14,6% -2018-02-04 23:00:00,65.23741643,222.0514866,370.5812093,709.5721924,73.370384,547.9092154,473.9576215,73.95159391,71.15799622,2.79359769,92.06409243,0,92.06409243,2.212387786,89.85170464,1.138607712,3.87552955,1.91506937,-1.91506937,0.202657539,0.202657539,0.19798733,1.007151314,32.39344833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39977259,1.602867419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729677699,31.13781468,69.12945029,32.7406821,473.9576215,0,0.667948415,48.09108069,-0.667948415,131.9089193,0.97514392,0,531.3063433,32.7406821,552.7344649,2,15,4% -2018-02-04 00:00:00,74.03449329,234.2301603,209.6399844,559.6760875,55.69626009,377.3669389,321.7697718,55.59716711,54.01681235,1.580354755,52.50908908,0,52.50908908,1.679447739,50.82964134,1.292145668,4.088087504,3.363793948,-3.363793948,0,0,0.26567575,0.419861935,13.50420309,0.043143652,1,0.288962613,0,0.926072406,0.964834369,0.724496596,1,52.02694298,1.21675417,0.007231286,0.312029739,0.979698546,0.704195141,0.961238037,0.922476074,0.300655307,12.98075367,52.32759829,14.19750784,307.8874486,0,0.574921421,54.90587053,-0.574921421,125.0941295,0.963031593,0,348.8329385,14.19750784,358.1249234,2,16,3% -2018-02-04 01:00:00,84.13469419,244.6292991,40.07615506,194.4221045,20.20812176,104.4284943,84.52761104,19.90088331,19.59877233,0.302110985,10.32627721,0,10.32627721,0.609349431,9.716927779,1.468427429,4.269586715,9.691710565,-9.691710565,0,0,0.504243028,0.152337358,4.899693081,0.529904299,1,0.102817116,0,0.950910076,0.989672039,0.724496596,1,18.99379562,0.441471588,0.072427842,0.312029739,0.815225849,0.539722445,0.961238037,0.922476074,0.104459689,4.709771359,19.09825531,5.151242947,39.7360666,0,0.434763379,64.22976174,-0.434763379,115.7702383,0.934994913,0,56.25127546,5.151242947,59.62266094,2,17,6% -2018-02-04 02:00:00,95.34040868,253.8894257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664004042,4.431206414,-10.67299974,10.67299974,1,0,#DIV/0!,0,0,1,0.26218001,0,0.093421637,0.961238037,1,0.493944593,0.769447997,0,0,0.115824807,0.051089877,0.724496596,0.448993192,0.995181638,0.956419675,0,0,0,0,0,0,0.252291385,75.3868539,-0.252291385,104.6131461,0.851816459,0,0,0,0,2,18,0% -2018-02-04 03:00:00,106.9185663,262.6615491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866081013,4.584308851,-3.207609904,3.207609904,1,0.921312711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045797926,87.37505394,-0.045797926,92.62494606,0,0,0,0,0,2,19,0% -2018-02-04 04:00:00,118.7275599,271.6617046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072186834,4.741391197,-1.695609598,1.695609598,1,0.820120008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172916966,99.95746116,0.172916966,80.04253884,0,0.760843875,0,0,0,2,20,0% -2018-02-04 05:00:00,130.4692951,281.8757885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.277118771,4.919660591,-0.995359132,0.995359132,1,0.700370126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.388943817,112.8887966,0.388943817,67.11120341,0,0.921446729,0,0,0,2,21,0% -2018-02-04 06:00:00,141.6940302,295.029528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473027357,5.149236654,-0.55827099,0.55827099,1,0.625623652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587555069,125.9836997,0.587555069,54.01630027,0,0.964901594,0,0,0,2,22,0% -2018-02-04 07:00:00,151.4502291,314.5587096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.643305151,5.490085174,-0.233729579,0.233729579,1,0.570123802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755208474,139.0435891,0.755208474,40.95641093,0,0.983793116,0,0,0,2,23,0% -2018-02-05 08:00:00,157.4752679,345.4579848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748461915,6.029379262,0.039446364,-0.039446364,1,0.523407964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880469718,151.6990773,0.880469718,28.30092275,0,0.99321213,0,0,0,2,0,0% -2018-02-05 09:00:00,156.5698405,22.90246801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732659225,0.399723474,0.295013416,-0.295013416,1,0.479703424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954791508,162.7059176,0.954791508,17.29408238,0,0.997632546,0,0,0,2,1,0% -2018-02-05 10:00:00,149.3503649,50.81888221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606655607,0.886956817,0.559671632,-0.559671632,1,0.434444204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973096121,166.6794058,0.973096121,13.32059423,0,0.998617615,0,0,0,2,2,0% -2018-02-05 11:00:00,139.1010053,68.3847523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427770535,1.193539086,0.865852278,-0.865852278,1,0.382084229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934121755,159.0867184,0.934121755,20.91328161,0,0.996473787,0,0,0,2,3,0% -2018-02-05 12:00:00,127.6863786,80.60794393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228547716,1.406874025,1.272361771,-1.272361771,1,0.312567012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840509079,147.1939162,0.840509079,32.80608377,0,0.990512243,0,0,0,2,4,0% -2018-02-05 13:00:00,115.8843534,90.40820684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022563519,1.57792088,1.931495438,-1.931495438,1,0.199848516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698622049,134.3165551,0.698622049,45.68344492,0,0.978430544,0,0,0,2,5,0% -2018-02-05 14:00:00,104.0880889,99.26925201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816679864,1.732575294,3.475956543,-3.475956543,1,0,#DIV/0!,0,0,0.060388712,1,0.280125856,0,0.927421036,0.966182999,0.724496596,1,0,0,0.01004181,0.312029739,0.971918314,0.69641491,0.961238037,0.922476074,0,0,0,0,0,0,-0.518115066,121.2058986,0.518115066,58.79410145,0,0.95349634,0,0,0,2,6,0% -2018-02-05 15:00:00,92.58266323,108.0841213,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615872304,1.886423786,17.44993418,-17.44993418,1,0,#DIV/0!,0,0,0.710477317,1,0.057244197,0,0.955797176,0.994559139,0.724496596,1,0,0,0.090840467,0.312029739,0.774886132,0.499382728,0.961238037,0.922476074,0,0,0,0,0,0,-0.311275879,108.1361377,0.311275879,71.86386227,0,0.889370785,0,0,0,2,7,0% -2018-02-05 16:00:00,81.5573432,117.5423615,78.12356626,316.051187,31.72108811,31.3535087,0,31.3535087,30.76458026,0.588928442,48.47322466,28.57475369,19.89847097,0.956507845,18.94196312,1.423444168,2.051501218,-4.547962952,4.547962952,0.69209884,0.69209884,0.406037379,0.48122416,15.47782319,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.57208474,0.692986677,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.348645266,14.87787238,29.92073,15.57085906,0,28.57475369,-0.09041179,95.18729753,0.09041179,84.81270247,0,0.496974783,29.92073,29.77179109,49.40577183,2,8,65% -2018-02-05 17:00:00,71.66117714,128.2968626,253.2239594,610.4252311,61.16238832,137.5615911,76.33456527,61.22702582,59.31811665,1.908909168,63.24135235,0,63.24135235,1.844271673,61.39708067,1.250723487,2.239202673,-1.585416021,1.585416021,0.801275797,0.801275797,0.24153476,1.62118807,52.14298111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.01883,1.336168549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.174545238,50.1218168,58.19337523,51.45798535,76.33456527,0,0.125051458,82.81627256,-0.125051458,97.18372744,0.650164598,0,107.8234072,51.45798535,141.5016295,2,9,31% -2018-02-05 18:00:00,63.23079229,140.9838371,406.6778501,733.0064946,76.53335509,314.5925144,237.3012129,77.29130147,74.22559206,3.065709415,100.9115161,0,100.9115161,2.307763034,98.6037531,1.103585514,2.460632149,-0.645905711,0.645905711,0.640610071,0.640610071,0.1881916,2.171271025,69.83553987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.34846239,1.671966462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573078467,67.12857725,72.92154086,68.80054371,237.3012129,0,0.323736849,71.11093507,-0.323736849,108.8890649,0.895553572,0,285.4374897,68.80054371,330.4660695,2,10,16% -2018-02-05 19:00:00,57.02159336,156.0253332,514.8509116,789.2169144,85.2620546,474.5582219,387.9859692,86.57225271,82.69108907,3.881163646,127.4025298,0,127.4025298,2.57096553,124.8315643,0.995214549,2.723155782,-0.106824467,0.106824467,0.548421749,0.548421749,0.165605329,2.418762585,77.79571918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48582012,1.862655774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.752385259,74.78020438,81.23820538,76.64286015,387.9859692,0,0.491608786,60.55362264,-0.491608786,119.4463774,0.948293111,0,449.1626273,76.64286015,499.3238464,2,11,11% -2018-02-05 20:00:00,53.84907868,173.1435612,567.6893131,811.1908485,89.15629537,591.363053,500.615667,90.74738595,86.46790411,4.279481835,140.3312377,0,140.3312377,2.688391257,137.6428464,0.939843722,3.021925221,0.311250476,-0.311250476,0.476926723,0.476926723,0.157051213,2.392555656,76.95281424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.1162384,1.947730314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.733398428,73.96997209,84.84963683,75.91770241,500.615667,0,0.617136729,51.89265657,-0.617136729,128.1073434,0.968980677,0,569.9365448,75.91770241,619.6231626,2,12,9% -2018-02-05 21:00:00,54.26471836,190.9845346,560.8731796,808.5190412,88.66477595,649.5065959,559.2872911,90.21930475,85.99120581,4.228098941,138.6637661,0,138.6637661,2.673570133,135.9901959,0.947098003,3.333308949,0.715499161,-0.715499161,0.407796127,0.407796127,0.158083466,2.120027019,68.18735648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.65801786,1.93699246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535952359,65.54428068,84.19397022,67.48127314,559.2872911,0,0.691742881,46.23176815,-0.691742881,133.7682319,0.977718808,0,631.0196738,67.48127314,675.1848175,2,13,7% -2018-02-05 22:00:00,58.18964853,207.7155637,494.9496517,780.1211181,83.74052813,639.1025522,554.1559704,84.94658178,81.21544224,3.731139542,122.5313593,0,122.5313593,2.525085893,120.0062734,1.015600957,3.625320494,1.192716442,-1.192716442,0.326187165,0.326187165,0.169189993,1.642408651,52.82550797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06737226,1.829416134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.189919477,50.77788758,79.25729174,52.60730371,554.1559704,0,0.71034607,44.73692048,-0.71034607,135.2630795,0.979611774,0,622.1150048,52.60730371,656.5454329,2,14,6% -2018-02-05 23:00:00,64.97351457,222.2191256,375.4027595,713.0502712,73.75599458,553.3266661,478.9647424,74.36192378,71.53197921,2.829944572,93.24476066,0,93.24476066,2.224015367,91.0207453,1.134001756,3.878455402,1.895036223,-1.895036223,0.206083409,0.206083409,0.196471637,1.0246253,32.95547177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75925927,1.611291563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742337542,31.67805299,69.50159681,33.28934455,478.9647424,0,0.671712447,47.80062976,-0.671712447,132.1993702,0.975563386,0,536.7620627,33.28934455,558.549273,2,15,4% -2018-02-05 00:00:00,73.79604346,234.4271544,214.0503691,565.4891304,56.24643246,383.3585967,327.1945996,56.16399709,54.55039499,1.613602098,53.59502765,0,53.59502765,1.696037466,51.89899018,1.287983933,4.0915257,3.314811205,-3.314811205,0,0,0.262771948,0.424009366,13.63759875,0.03541234,1,0.29299398,0,0.925451778,0.964213741,0.724496596,1,52.52336173,1.22877337,0.005956686,0.312029739,0.983247296,0.707743892,0.961238037,0.922476074,0.304226768,13.10897865,52.8275885,14.33775202,315.6078733,0,0.578604578,54.64754417,-0.578604578,125.3524558,0.963585198,0,356.9426636,14.33775202,366.3264356,2,16,3% -2018-02-05 01:00:00,83.92108207,244.8443447,42.96579448,205.3106129,21.22377098,110.881527,89.97383672,20.90769029,20.58379598,0.323894308,11.05752932,0,11.05752932,0.639975002,10.41755431,1.464699194,4.27333997,9.351943762,-9.351943762,0,0,0.49396901,0.159993751,5.145948995,0.516703426,1,0.106524873,0,0.950491141,0.989253104,0.724496596,1,19.95032276,0.463659711,0.07098092,0.312029739,0.818510641,0.543007237,0.961238037,0.922476074,0.109653443,4.946481909,20.0599762,5.41014162,43.48404701,0,0.438232761,64.00882141,-0.438232761,115.9911786,0.935905381,0,60.75692977,5.41014162,64.29775926,2,17,6% -2018-02-05 02:00:00,95.13865114,254.1197953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660482708,4.435227122,-11.09131936,11.09131936,1,0,#DIV/0!,0,0,1,0.299170712,0,0.089917481,0.961238037,1,0.501340285,0.77684369,0,0,0.115824807,0.059458663,0.724496596,0.448993192,0.994332954,0.955570991,0,0,0,0,0,0,0.255600607,75.19082317,-0.255600607,104.8091768,0.854382311,0,0,0,0,2,18,0% -2018-02-05 03:00:00,106.7266672,262.9101315,0,0,0,0,0,0,0,0,0,0,0,0,0,1.862731742,4.588647431,-3.243431238,3.243431238,1,0.915186902,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.048819486,87.20173721,-0.048819486,92.79826279,0,0,0,0,0,2,19,0% -2018-02-05 04:00:00,118.5381657,271.935338,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06888128,4.746167,-1.705727246,1.705727246,1,0.821850228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.170219987,99.80060979,0.170219987,80.19939021,0,0.756262461,0,0,0,2,20,0% -2018-02-05 05:00:00,130.2727206,282.1836681,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2736879,4.925034103,-0.998939577,0.998939577,1,0.700982418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38658583,112.7422259,0.38658583,67.25777411,0,0.920662616,0,0,0,2,21,0% -2018-02-05 06:00:00,141.4760864,295.3757216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46922352,5.155278872,-0.559236548,0.559236548,1,0.625788772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585527013,125.8402298,0.585527013,54.1597702,0,0.964606843,0,0,0,2,22,0% -2018-02-05 07:00:00,151.1914353,314.9005128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638788347,5.496050765,-0.23328373,0.23328373,1,0.570047557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753478463,138.8925982,0.753478463,41.10740178,0,0.983641103,0,0,0,2,23,0% -2018-02-06 08:00:00,157.1721199,345.5766263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743170984,6.031449948,0.040905057,-0.040905057,1,0.523158513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878985257,151.5201968,0.878985257,28.47980318,0,0.993116225,0,0,0,2,0,0% -2018-02-06 09:00:00,156.2848951,22.61837215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727685991,0.394765065,0.297444302,-0.297444302,1,0.479287718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953483128,162.4555029,0.953483128,17.54449715,0,0.997560687,0,0,0,2,1,0% -2018-02-06 10:00:00,149.1242634,50.41303498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602709392,0.879873446,0.563313673,-0.563313673,1,0.433821378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971882182,166.3808079,0.971882182,13.61919209,0,0.998553435,0,0,0,2,2,0% -2018-02-06 11:00:00,138.915258,68.01188104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424528634,1.187031255,0.87136191,-0.87136191,1,0.381142027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93291407,158.8937198,0.93291407,21.1062802,0,0.996404496,0,0,0,2,3,0% -2018-02-06 12:00:00,127.5196236,80.2821346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225637293,1.401187579,1.281387596,-1.281387596,1,0.311023505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839219001,147.0577397,0.839219001,32.94226029,0,0.990420796,0,0,0,2,4,0% -2018-02-06 13:00:00,115.7224512,90.11784563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019737792,1.572853121,1.949116315,-1.949116315,1,0.196835169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697166568,134.2001171,0.697166568,45.7998829,0,0.978281128,0,0,0,2,5,0% -2018-02-06 14:00:00,103.9212846,99.00280561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813768579,1.727924927,3.528456849,-3.528456849,1,0,#DIV/0!,0,0,0.068248877,1,0.276167999,0,0.928019797,0.96678176,0.724496596,1,0,0,0.011308136,0.312029739,0.96843299,0.692929585,0.961238037,0.922476074,0,0,0,0,0,0,-0.516422524,121.0925859,0.516422524,58.90741406,0,0.953180056,0,0,0,2,6,0% -2018-02-06 15:00:00,92.4032217,107.8337393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612740458,1.882053796,18.81862167,-18.81862167,1,0,#DIV/0!,0,0,0.728851807,1,0.053088922,0,0.95621846,0.994980423,0.724496596,1,0,0,0.092580613,0.312029739,0.771214039,0.495710635,0.961238037,0.922476074,0,0,0,0,0,0,-0.309290895,108.0165017,0.309290895,71.98349828,0,0.88833989,0,0,0,2,7,0% -2018-02-06 16:00:00,81.36052062,117.304663,81.3082737,324.8575746,32.50927152,32.14193315,0,32.14193315,31.52899704,0.612936112,49.32565124,28.63124444,20.69440679,0.980274483,19.71413231,1.420008966,2.047352598,-4.462925579,4.462925579,0.706641087,0.706641087,0.399827349,0.505018905,16.24314396,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.30687122,0.710205526,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365884477,15.61352782,30.6727557,16.32373334,0,28.63124444,-0.08813476,95.05631027,0.08813476,84.94368973,0,0.482686946,30.6727557,30.14366128,50.40117913,2,8,64% -2018-02-06 17:00:00,71.43694806,128.0747046,257.398101,615.0203331,61.60757106,140.2248293,78.53457816,61.69025109,59.74987548,1.940375611,64.26684521,0,64.26684521,1.857695575,62.40914964,1.246809951,2.235325283,-1.574694725,1.574694725,0.799442347,0.799442347,0.239347419,1.644362199,52.88834078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.43385301,1.34589412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.191334816,50.83828486,58.62518783,52.18417898,78.53457816,0,0.127694279,82.66362623,-0.127694279,97.33637377,0.658439781,0,110.3354782,52.18417898,144.4889797,2,9,31% -2018-02-06 18:00:00,62.97591896,140.7897945,411.2822199,735.9921464,76.87318962,318.1145868,240.4589884,77.65559842,74.55517932,3.1004191,102.0381462,0,102.0381462,2.318010299,99.72013587,1.099137135,2.457245467,-0.645096847,0.645096847,0.640471748,0.640471748,0.186911045,2.194078387,70.56910303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.66527421,1.679390571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.589602323,67.83370606,73.25487653,69.51309663,240.4589884,0,0.326714068,70.93054631,-0.326714068,109.0694537,0.896960983,0,288.9372071,69.51309663,334.4321385,2,10,16% -2018-02-06 19:00:00,56.73675862,155.8844519,519.730854,791.5668296,85.56714569,478.6388617,391.7339305,86.90493125,82.98698054,3.917950713,128.5949279,0,128.5949279,2.580165152,126.0147628,0.990243245,2.720696939,-0.109409411,0.109409411,0.548863801,0.548863801,0.164637418,2.441422794,78.52454941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77024226,1.869320869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768802504,75.48078372,81.53904476,77.35010458,391.7339305,0,0.494884217,60.33788425,-0.494884217,119.6621157,0.948966267,0,453.2813303,77.35010458,503.9054267,2,11,11% -2018-02-06 20:00:00,53.54403839,173.0863747,572.7335473,813.3234363,89.45289424,595.8671046,504.7940378,91.07306684,86.75555943,4.317507403,141.5632142,0,141.5632142,2.697334807,138.8658794,0.934519765,3.020927129,0.30648102,-0.30648102,0.477742348,0.477742348,0.156185882,2.414832062,77.66930004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39274364,1.954209886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749537608,74.65868549,85.14228124,76.61289538,504.7940378,0,0.62065596,51.63594805,-0.62065596,128.364052,0.969440071,0,574.5098491,76.61289538,624.6514568,2,12,9% -2018-02-06 21:00:00,53.95778372,191.0249217,565.9728293,810.707446,88.96781998,654.3462446,563.7945904,90.5516542,86.28511195,4.266542255,139.9093731,0,139.9093731,2.682708029,137.2266651,0.941740983,3.334013837,0.708304117,-0.708304117,0.409026552,0.409026552,0.157194507,2.14148137,68.87740217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.94053162,1.943612834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551495963,66.20757884,84.49202758,68.15119168,563.7945904,0,0.695435318,45.93808343,-0.695435318,134.0619166,0.978102587,0,635.9409752,68.15119168,680.5445671,2,13,7% -2018-02-06 22:00:00,57.89868049,207.837513,499.9899616,782.6666676,84.06673731,644.2261428,558.9251923,85.30095053,81.53181501,3.769135528,123.7632772,0,123.7632772,2.534922303,121.2283549,1.010522607,3.627448911,1.181584102,-1.181584102,0.328090908,0.328090908,0.16813685,1.662428432,53.46941295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.3714818,1.836542579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.20442374,51.39683353,79.57590554,53.23337611,558.9251923,0,0.714129291,44.42811324,-0.714129291,135.5718868,0.979984667,0,627.314024,53.23337611,662.154204,2,14,6% -2018-02-06 23:00:00,64.7077558,222.3930876,380.2511884,716.4932835,74.13983722,558.7599617,483.9892201,74.77074166,71.90424758,2.866494077,94.43189266,0,94.43189266,2.235589639,92.19630302,1.12936339,3.881491613,1.875316887,-1.875316887,0.209455614,0.209455614,0.194975951,1.042236487,33.5219081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11709779,1.619677083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.755096787,32.22253313,69.87219458,33.84221021,483.9892201,0,0.675497219,47.50722601,-0.675497219,132.492774,0.97598045,0,542.2362115,33.84221021,564.3852612,2,15,4% -2018-02-06 00:00:00,73.55647918,234.6301553,218.4858177,571.2204207,56.79042315,389.3455701,332.6205493,56.72502074,55.07798236,1.647038382,54.68685682,0,54.68685682,1.712440792,52.97441603,1.283802748,4.095068734,3.267025522,-3.267025522,0,0,0.259927275,0.428110198,13.76949559,0.027748617,1,0.297033468,0,0.924826534,0.963588498,0.724496596,1,53.0132689,1.240657525,0.004684188,0.312029739,0.986802846,0.711299442,0.961238037,0.922476074,0.307787378,13.23576291,53.32105627,14.47642043,323.390789,0,0.582298071,54.3876604,-0.582298071,125.6123396,0.964133324,0,365.1128925,14.47642043,374.5874202,2,16,3% -2018-02-06 01:00:00,83.70663362,245.0649984,45.93058785,216.1875758,22.23227203,117.3997274,95.49159625,21.90813117,21.561887,0.346244172,11.80678782,0,11.80678782,0.67038503,11.13640279,1.460956362,4.277191103,9.033897739,-9.033897739,0,0,0.484040659,0.167596258,5.39047175,0.503656515,1,0.110245366,0,0.950067568,0.988829531,0.724496596,1,20.90008403,0.485691672,0.069536316,0.312029739,0.821806823,0.546303419,0.961238037,0.922476074,0.114813912,5.181526483,21.01489795,5.667218155,47.39663164,0,0.441707142,63.78714567,-0.441707142,116.2128543,0.936802826,0,65.41619643,5.667218155,69.12527737,2,17,6% -2018-02-06 02:00:00,94.93649429,254.3554785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656954406,4.439340571,-11.544403,11.544403,1,0,#DIV/0!,0,0,1,0.335266765,0,0.08640638,0.961238037,1,0.508849333,0.784352737,0,0,0.115824807,0.067949374,0.724496596,0.448993192,0.993454974,0.954693011,0,0,0,0,0,0,0.258905434,74.99487559,-0.258905434,105.0051244,0.856879295,0,0,0,0,2,18,0% -2018-02-06 03:00:00,106.5343797,263.1638919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859375692,4.593076386,-3.280003904,3.280003904,1,0.908932608,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051833852,87.02880758,-0.051833852,92.97119242,0,0,0,0,0,2,19,0% -2018-02-06 04:00:00,118.3481841,272.2141692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065565477,4.751033522,-1.715896158,1.715896158,1,0.823589215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167529737,99.64422366,0.167529737,80.35577634,0,0.751545522,0,0,0,2,20,0% -2018-02-06 05:00:00,130.0751226,282.4968579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270239164,4.930500296,-1.002477635,1.002477635,1,0.701587462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384230879,112.5960006,0.384230879,67.40399942,0,0.919869907,0,0,0,2,21,0% -2018-02-06 06:00:00,141.2563997,295.7272151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465389264,5.161413591,-0.560136442,0.560136442,1,0.625942663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583495326,125.6967626,0.583495326,54.30323736,0,0.964309511,0,0,0,2,22,0% -2018-02-06 07:00:00,150.929933,315.2472318,0,0,0,0,0,0,0,0,0,0,0,0,0,2.634224271,5.502102153,-0.232761016,0.232761016,1,0.569958168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75173564,138.7409489,0.75173564,41.25905112,0,0.983487256,0,0,0,2,23,0% -2018-02-07 08:00:00,156.8651485,345.7023252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737813323,6.033643806,0.04245214,-0.04245214,1,0.522893946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877476926,151.3394883,0.877476926,28.66051165,0,0.993018445,0,0,0,2,0,0% -2018-02-07 09:00:00,155.9942509,22.34446304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.722613292,0.38998445,0.299980926,-0.299980926,1,0.47885393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952138707,162.2017458,0.952138707,17.79825422,0,0.997486643,0,0,0,2,1,0% -2018-02-07 10:00:00,148.8915104,50.01178995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598647085,0.872870399,0.567091207,-0.567091207,1,0.433175382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970619752,166.0769481,0.970619752,13.92305187,0,0.998486521,0,0,0,2,2,0% -2018-02-07 11:00:00,138.7230753,67.63974853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421174412,1.180536317,0.877063447,-0.877063447,1,0.380167007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931646032,158.6928724,0.931646032,21.30712757,0,0.996331548,0,0,0,2,3,0% -2018-02-07 12:00:00,127.3468597,79.95558772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222621993,1.395488261,1.290730009,-1.290730009,1,0.309425858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83785811,146.9146277,0.83785811,33.08537234,0,0.990324025,0,0,0,2,4,0% -2018-02-07 13:00:00,115.5548987,89.8262247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01681345,1.567763376,1.96741871,-1.96741871,1,0.193705275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69563194,134.0775961,0.69563194,45.9224039,0,0.978122909,0,0,0,2,5,0% -2018-02-07 14:00:00,103.7490882,98.73492902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810763185,1.723249598,3.583650464,-3.583650464,1,0,#DIV/0!,0,0,0.076371713,1,0.272122979,0,0.928628362,0.967390325,0.724496596,1,0,0,0.012607254,0.312029739,0.964870443,0.689367039,0.961238037,0.922476074,0,0,0,0,0,0,-0.514645204,120.9737429,0.514645204,59.02625711,0,0.952845689,0,0,0,2,6,0% -2018-02-07 15:00:00,92.21855666,107.5819066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609517445,1.877658486,20.45618035,-20.45618035,1,0,#DIV/0!,0,0,0.747987629,1,0.048846097,0,0.956644394,0.995406357,0.724496596,1,0,0,0.094368642,0.312029739,0.767466199,0.491962795,0.961238037,0.922476074,0,0,0,0,0,0,-0.307218594,107.8916897,0.307218594,72.10831026,0,0.887249434,0,0,0,2,7,0% -2018-02-07 16:00:00,81.15853693,117.0656019,84.60451542,333.760397,33.30522718,32.93873627,0,32.93873627,32.30095169,0.637784574,50.14447829,28.62685853,21.51761976,1.004275483,20.51334428,1.416483686,2.043180193,-4.37906604,4.37906604,0.720981913,0.720981913,0.393657797,0.529883899,17.04288764,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.04890339,0.727594168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383899081,16.38227186,31.43280247,17.10986603,0,28.62685853,-0.085770687,94.92034383,0.085770687,85.07965617,0,0,31.43280247,17.10986603,42.63086759,2,8,36% -2018-02-07 17:00:00,71.20761488,127.8514424,261.6668195,619.6358424,62.05740462,142.9714304,80.81273044,62.15869992,60.18614491,1.972555014,65.31540957,0,65.31540957,1.871259717,63.44414985,1.242807332,2.231428624,-1.563762628,1.563762628,0.797572849,0.797572849,0.237161917,1.667954765,53.64715879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.85321177,1.355721295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.208427549,51.5676896,59.06163932,52.9234109,80.81273044,0,0.130419716,82.50615325,-0.130419716,97.49384675,0.666622382,0,112.9332142,52.9234109,147.5705281,2,9,31% -2018-02-07 18:00:00,62.71594236,140.5952645,415.9698058,738.9861075,77.21688779,321.7174878,243.6932179,78.02426983,74.88851373,3.135756102,103.1850694,0,103.1850694,2.328374067,100.8566953,1.094599688,2.453850278,-0.644141138,0.644141138,0.640308312,0.640308312,0.185630992,2.217224896,71.31357431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.98568792,1.686899085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606371889,68.54932017,73.59205981,70.23621925,243.6932179,0,0.329766981,70.74536718,-0.329766981,109.2546328,0.898377785,0,292.5206333,70.23621925,338.488834,2,10,16% -2018-02-07 19:00:00,56.44689928,155.7443637,524.6815357,793.9183665,85.87524971,482.7918039,395.5507388,87.24106513,83.28579409,3.955271043,129.8045685,0,129.8045685,2.589455625,127.2151129,0.985184245,2.718251938,-0.111888488,0.111888488,0.549287748,0.549287748,0.163671187,2.464356768,79.26218482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0574732,1.876051785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785418089,76.18982693,81.84289129,78.06587871,395.5507388,0,0.498225958,60.11730042,-0.498225958,119.8826996,0.949643928,0,457.4752487,78.06587871,508.567805,2,11,11% -2018-02-07 20:00:00,53.23434255,173.0320269,577.8353706,815.452398,89.75160555,600.4313117,509.0300811,91.4012306,87.04526349,4.355967102,142.8092176,0,142.8092176,2.706342055,140.1028755,0.929114553,3.019978581,0.301803252,-0.301803252,0.478542294,0.478542294,0.155323835,2.437325219,78.39275729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.6712182,1.960735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765833824,75.35410012,85.43705202,77.31483573,509.0300811,0,0.624230283,51.37428546,-0.624230283,128.6257145,0.969901355,0,579.1460172,77.31483573,629.7470309,2,12,9% -2018-02-07 21:00:00,53.64700791,191.0702667,571.1171877,812.8864399,89.27198918,659.2317044,568.3462725,90.88543193,86.58010933,4.305322602,141.1658542,0,141.1658542,2.691879852,138.4739743,0.936316922,3.334805257,0.701209705,-0.701209705,0.410239768,0.410239768,0.156311158,2.163105466,69.5729074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.22409432,1.95025779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567162546,66.87612492,84.79125687,68.82638271,568.3462725,0,0.699170566,45.63950376,-0.699170566,134.3604962,0.978486692,0,640.910521,68.82638271,685.956012,2,13,7% -2018-02-07 22:00:00,57.60495889,207.9656105,505.063454,785.1939618,84.39287019,649.3798692,563.7243737,85.65549543,81.84811377,3.807381656,125.0032383,0,125.0032383,2.544756413,122.4584818,1.005396198,3.629684634,1.170599736,-1.170599736,0.329969345,0.329969345,0.167093599,1.682585432,54.11773135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.6755202,1.843667358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219027418,52.02002184,79.89454762,53.8636892,563.7243737,0,0.717942828,44.11510332,-0.717942828,135.8848967,0.980356572,0,632.5454419,53.8636892,667.7981492,2,14,6% -2018-02-07 23:00:00,64.4402526,222.5733514,385.1241023,719.9000447,74.52173889,564.2063074,489.0284457,75.17786167,72.27463351,2.90322816,95.62490279,0,95.62490279,2.247105383,93.37779741,1.124694579,3.884637809,1.85591164,-1.85591164,0.212774107,0.212774107,0.193500584,1.059976665,34.09249319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.47312682,1.628020201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.767949485,32.77100122,70.24107631,34.39902142,489.0284457,0,0.67930048,47.21099579,-0.67930048,132.7890042,0.97639487,0,547.7259421,34.39902142,570.2394136,2,15,4% -2018-02-07 00:00:00,73.31589844,234.8391089,222.944121,576.8688357,57.32811709,395.3251585,338.0450487,57.2801098,55.59946284,1.680646956,55.78403753,0,55.78403753,1.728654249,54.05538328,1.279603822,4.098715662,3.220409607,-3.220409607,0,0,0.257141192,0.432163562,13.89986571,0.02015424,1,0.301079559,0,0.924196902,0.962958866,0.724496596,1,53.49656037,1.252404119,0.003414234,0.312029739,0.990363887,0.714860482,0.961238037,0.922476074,0.311336267,13.36107963,53.80789664,14.61348375,331.2320077,0,0.585999846,54.12634404,-0.585999846,125.873656,0.964675745,0,373.3393806,14.61348375,382.9036134,2,16,3% -2018-02-07 01:00:00,83.49144143,245.2911825,48.96642986,227.0312194,23.23207164,123.9714555,101.0707869,22.9006686,22.53153897,0.369129632,12.57301051,0,12.57301051,0.700532677,11.87247783,1.45720055,4.281138761,8.735661543,-8.735661543,0,0,0.474448958,0.175133169,5.632884742,0.49076565,1,0.11397717,0,0.949639495,0.988401458,0.724496596,1,21.8415876,0.50753354,0.068094565,0.312029739,0.825113077,0.549609673,0.961238037,0.922476074,0.119934221,5.414543071,21.96152182,5.922076611,51.46871644,0,0.445184531,63.56485439,-0.445184531,116.4351456,0.937687023,0,70.22306931,5.922076611,74.09895001,2,17,6% -2018-02-07 02:00:00,94.73399848,254.5963798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653420187,4.443545092,-12.03665212,12.03665212,1,0,#DIV/0!,0,0,1,0.370492106,0,0.082889223,0.961238037,1,0.516470291,0.791973695,0,0,0.115824807,0.076561418,0.724496596,0.448993192,0.992547092,0.953785128,0,0,0,0,0,0,0.262204446,74.79909355,-0.262204446,105.2009064,0.859309107,0,0,0,0,2,18,0% -2018-02-07 03:00:00,106.3417463,263.422717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856013606,4.597593736,-3.317345197,3.317345197,1,0.902546871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.054839986,86.85632316,-0.054839986,93.14367684,0,0,0,0,0,2,19,0% -2018-02-07 04:00:00,118.1576422,272.4980611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062239893,4.755988372,-1.726115106,1.726115106,1,0.825336758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164846855,99.48833808,0.164846855,80.51166192,0,0.746688178,0,0,0,2,20,0% -2018-02-07 05:00:00,129.8765158,282.8151824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266772822,4.936056108,-1.005972271,1.005972271,1,0.70218508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381879218,112.4501344,0.381879218,67.54986558,0,0.919068549,0,0,0,2,21,0% -2018-02-07 06:00:00,141.0349819,296.0837668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461524794,5.167636592,-0.560970192,0.560970192,1,0.626085242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581459918,125.5532912,0.581459918,54.44670885,0,0.96400955,0,0,0,2,22,0% -2018-02-07 07:00:00,150.6657538,315.5985321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629613475,5.508233499,-0.232161288,0.232161288,1,0.569855608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749979638,138.5886141,0.749979638,41.41138586,0,0.983331523,0,0,0,2,23,0% -2018-02-08 08:00:00,156.5544441,345.8346871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732390508,6.035953958,0.044087596,-0.044087596,1,0.522614267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875944162,151.1569146,0.875944162,28.84308537,0,0.992918736,0,0,0,2,0,0% -2018-02-08 09:00:00,155.6980576,22.08062182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.717443744,0.385379552,0.302623254,-0.302623254,1,0.478402065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95075758,161.9446555,0.95075758,18.05534451,0,0.997410359,0,0,0,2,1,0% -2018-02-08 10:00:00,148.6522224,49.61538005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.594470722,0.865951742,0.571004409,-0.571004409,1,0.432506185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969308173,165.7679952,0.969308173,14.23200477,0,0.998416818,0,0,0,2,2,0% -2018-02-08 11:00:00,138.5245369,67.26859276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417709264,1.174058427,0.882957828,-0.882957828,1,0.379159008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930317089,158.4842973,0.930317089,21.51570265,0,0.996254884,0,0,0,2,3,0% -2018-02-08 12:00:00,127.1681542,79.62848561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219502994,1.389779252,1.300392622,-1.300392622,1,0.307773454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836426056,146.7646222,0.836426056,33.23537784,0,0.990221853,0,0,0,2,4,0% -2018-02-08 13:00:00,115.3817636,89.53348204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013791672,1.562654052,1.986418697,-1.986418697,1,0.190456086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694018101,133.9490241,0.694018101,46.05097589,0,0.97795577,0,0,0,2,5,0% -2018-02-08 14:00:00,103.5715734,98.46572853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807664967,1.718551163,3.641678137,-3.641678137,1,0,#DIV/0!,0,0,0.084760302,1,0.267993066,0,0.92924616,0.968008123,0.724496596,1,0,0,0.013938823,0.312029739,0.961232618,0.685729214,0.961238037,0.922476074,0,0,0,0,0,0,-0.512783389,120.8494084,0.512783389,59.15059162,0,0.952492941,0,0,0,2,6,0% -2018-02-08 15:00:00,92.02875021,107.3287049,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606204698,1.873239282,22.44772694,-22.44772694,1,0,#DIV/0!,0,0,0.767907864,1,0.044518507,0,0.957074431,0.995836394,0.724496596,1,0,0,0.096204235,0.312029739,0.763645344,0.48814194,0.961238037,0.922476074,0,0,0,0,0,0,-0.305059646,107.7617524,0.305059646,72.2382476,0,0.886097627,0,0,0,2,7,0% -2018-02-08 16:00:00,80.9514811,116.8252381,88.01148877,342.7447349,34.10775092,33.74274417,0,33.74274417,33.07927639,0.663467779,50.92557554,28.55769659,22.36787895,1.028474535,21.33940441,1.41286988,2.038985054,-4.296481668,4.296481668,0.735104672,0.735104672,0.387537484,0.555827789,17.87733233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.7970587,0.745126299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.402695341,17.18437183,32.19975404,17.92949813,0,28.55769659,-0.083320599,94.77945967,0.083320599,85.22054033,0,0,32.19975404,17.92949813,43.93425198,2,8,36% -2018-02-08 17:00:00,70.97327679,127.627115,266.0280264,624.2665632,62.51143572,145.8006578,83.16874091,62.63191692,60.62648529,2.005431634,66.38652541,0,66.38652541,1.88495043,64.50157498,1.238717361,2.227513372,-1.552640528,1.552640528,0.795670858,0.795670858,0.234980639,1.691951084,54.41896291,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.2764837,1.36564017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.225812801,52.30957708,59.5022965,53.67521725,83.16874091,0,0.133226326,82.34393057,-0.133226326,97.65606943,0.674698801,0,115.6161463,53.67521725,150.7455025,2,9,30% -2018-02-08 18:00:00,62.45096798,140.4002668,420.7380744,741.9856093,77.56414927,325.3994118,247.0024065,78.39700531,75.22530399,3.171701326,104.3516626,0,104.3516626,2.338845282,102.0128173,1.089975012,2.450446926,-0.643043865,0.643043865,0.640120667,0.640120667,0.184352579,2.240697088,72.0685207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.30942352,1.694485445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623377413,69.27500336,73.93280094,70.96948881,247.0024065,0,0.332893797,70.5554884,-0.332893797,109.4445116,0.899801947,0,296.1860473,70.96948881,342.6341584,2,10,16% -2018-02-08 19:00:00,56.15212372,155.6050806,529.7001965,796.2696717,86.18611869,487.0146907,399.4342976,87.58039304,83.58728921,3.993103827,131.0307748,0,131.0307748,2.598829471,128.4319453,0.980039441,2.715820989,-0.114262792,0.114262792,0.549693778,0.549693778,0.162707356,2.487551599,80.00821031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.34728179,1.882843105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.802222665,76.90693501,82.14950446,78.78977812,399.4342976,0,0.501631937,59.89197307,-0.501631937,120.1080269,0.950325326,0,461.7420334,78.78977812,513.3083674,2,11,11% -2018-02-08 20:00:00,52.92010256,172.9805415,582.9919373,817.5762925,90.0522056,605.0529872,513.3213484,91.73163882,87.33679934,4.39483948,144.0685511,0,144.0685511,2.715406256,141.3531449,0.92363003,3.019079991,0.297217744,-0.297217744,0.479326462,0.479326462,0.154465611,2.460022904,79.12279288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95145354,1.967302589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.78227822,76.0558381,85.73373176,78.02314069,513.3213484,0,0.627857428,51.10777622,-0.627857428,128.8922238,0.970364086,0,583.8423329,78.02314069,634.9069181,2,12,9% -2018-02-08 21:00:00,53.33250864,191.1206041,576.3034477,815.0547754,89.57707579,664.160117,572.9397017,91.22041527,86.87599645,4.344418821,142.4325225,0,142.4325225,2.701079339,139.7314431,0.930827874,3.335683811,0.694217375,-0.694217375,0.411435527,0.411435527,0.155433871,2.18488808,70.27351114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.50851227,1.956922786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582943976,67.54957189,85.09145625,69.50649468,572.9397017,0,0.702946255,45.33613702,-0.702946255,134.663863,0.978870807,0,645.9254043,69.50649468,691.4160149,2,13,7% -2018-02-08 22:00:00,57.30860481,208.0998715,510.1674722,787.7018361,84.7187344,654.5608389,568.550829,86.01000988,82.16415198,3.845857901,126.2505926,0,126.2505926,2.554582421,123.6960101,1.000223844,3.632027931,1.159765141,-1.159765141,0.33182217,0.33182217,0.166060635,1.702869748,54.77014467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97930815,1.850786268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.233723336,52.64714634,80.21303148,54.49793261,568.550829,0,0.721784314,43.79800617,-0.721784314,136.2019938,0.980727228,0,637.8063102,54.49793261,673.4741171,2,14,6% -2018-02-08 23:00:00,64.17111935,222.7598949,390.0190801,723.2694491,74.9015308,569.6629035,494.0798017,75.58310186,72.64297329,2.940128571,96.82319897,0,96.82319897,2.258557511,94.56464145,1.119997317,3.887893608,1.836820413,-1.836820413,0.216038899,0.216038899,0.192045812,1.077837448,34.66695737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82718903,1.636317228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780889562,33.32319804,70.6080786,34.95951527,494.0798017,0,0.683119966,46.91206806,-0.683119966,133.0879319,0.976806414,0,553.2283979,34.95951527,576.1087015,2,15,4% -2018-02-08 00:00:00,73.07440073,235.0539602,227.4230432,582.4333936,57.85940695,401.2946771,343.4655338,57.82914332,56.11473235,1.714410964,56.88602444,0,56.88602444,1.744674598,55.14134985,1.275388892,4.102465525,3.174936496,-3.174936496,0,0,0.254413124,0.43616865,14.02868309,0.012630849,1,0.305130739,0,0.923563113,0.962325076,0.724496596,1,53.97314051,1.264010807,0.002147256,0.312029739,0.993929118,0.718425714,0.961238037,0.922476074,0.314872571,13.48490379,54.28801308,14.7489146,339.1272726,0,0.589707832,53.86372218,-0.589707832,126.1362778,0.96521225,0,381.617811,14.7489146,391.2706806,2,16,3% -2018-02-08 01:00:00,83.27559828,245.5228186,52.06922946,237.8217332,24.22180079,130.5857424,106.7017985,23.88394397,23.49142412,0.392519846,13.35516418,0,13.35516418,0.730376663,12.62478752,1.453433377,4.285181573,8.455538542,-8.455538542,0,0,0.465184544,0.182594166,5.872856031,0.478032628,1,0.117718875,0,0.949207061,0.987969024,0.724496596,1,22.77351542,0.529155406,0.066656184,0.312029739,0.828428101,0.552924697,0.961238037,0.922476074,0.125008405,5.645212602,22.89852383,6.174368008,55.69485734,0,0.448662942,63.342068,-0.448662942,116.657932,0.938557767,0,75.17136478,6.174368008,79.21236515,2,17,5% -2018-02-08 02:00:00,94.53122507,254.8424029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649881123,4.447839005,-12.57324383,12.57324383,1,0,#DIV/0!,0,0,1,0.404869956,0,0.079366902,0.961238037,1,0.524201605,0.799705009,0,0,0.115824807,0.085294062,0.724496596,0.448993192,0.991608716,0.952846753,0,0,0,0,0,0,0.265496206,74.60356049,-0.265496206,105.3964395,0.861673392,0,0,0,0,2,18,0% -2018-02-08 03:00:00,106.1488108,263.6864931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852646246,4.602197497,-3.355472792,3.355472792,1,0.896026668,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.05783684,86.68434288,-0.05783684,93.31565712,0,0,0,0,0,2,19,0% -2018-02-08 04:00:00,117.9665681,272.786877,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058905021,4.761029159,-1.736382765,1.736382765,1,0.827092631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162171996,99.33298915,0.162171996,80.66701085,0,0.741685363,0,0,0,2,20,0% -2018-02-08 05:00:00,129.6769167,283.1384674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26328916,4.941698495,-1.009422416,1.009422416,1,0.702775089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.379531119,112.3046421,0.379531119,67.69535787,0,0.918258497,0,0,0,2,21,0% -2018-02-08 06:00:00,140.8118467,296.4451384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45763035,5.173943717,-0.561737305,0.561737305,1,0.626216426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.579420721,125.4098095,0.579420721,54.59019046,0,0.963706918,0,0,0,2,22,0% -2018-02-08 07:00:00,150.3989319,315.9540891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624956554,5.51443914,-0.231484391,0.231484391,1,0.569739852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748210111,138.4355691,0.748210111,41.56443085,0,0.983173851,0,0,0,2,23,0% -2018-02-09 08:00:00,156.2400979,345.9733334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726904132,6.038373792,0.045811421,-0.045811421,1,0.522319475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874386425,150.9724422,0.874386425,29.02755782,0,0.992817045,0,0,0,2,0,0% -2018-02-09 09:00:00,155.3964654,21.82671708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712179967,0.380948078,0.305371273,-0.305371273,1,0.477932126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949339109,161.6842464,0.949339109,18.31575362,0,0.997331781,0,0,0,2,1,0% -2018-02-09 10:00:00,148.4065196,49.22402174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590182398,0.85912125,0.575053491,-0.575053491,1,0.431813751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967946812,165.4541144,0.967946812,14.54588559,0,0.998344269,0,0,0,2,2,0% -2018-02-09 11:00:00,138.3197266,66.89864497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414134649,1.16760162,0.889046073,-0.889046073,1,0.378117857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928926716,158.2681229,0.928926716,21.73187705,0,0.996174441,0,0,0,2,3,0% -2018-02-09 12:00:00,126.9835774,79.30100801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216281522,1.38406369,1.310379281,-1.310379281,1,0.306065635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834922519,146.6077712,0.834922519,33.3922288,0,0.990114204,0,0,0,2,4,0% -2018-02-09 13:00:00,115.2031157,89.23975458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010673677,1.557527541,2.006133374,-2.006133374,1,0.187084678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692325015,133.8144369,0.692325015,46.18556307,0,0.977779585,0,0,0,2,5,0% -2018-02-09 14:00:00,103.3888154,98.19531004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804475239,1.71383147,3.702693051,-3.702693051,1,0,#DIV/0!,0,0,0.093417945,1,0.263780522,0,0.929872625,0.968634588,0.724496596,1,0,0,0.015302504,0.312029739,0.957521449,0.682018045,0.961238037,0.922476074,0,0,0,0,0,0,-0.510837391,120.719624,0.510837391,59.28037596,0,0.952121495,0,0,0,2,6,0% -2018-02-09 15:00:00,91.83388588,107.0742158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602803673,1.86879761,24.91874235,-24.91874235,1,0,#DIV/0!,0,0,0.788637232,1,0.040108914,0,0.957508031,0.996269994,0.724496596,1,0,0,0.098087093,0.312029739,0.759754207,0.484250803,0.961238037,0.922476074,0,0,0,0,0,0,-0.302814749,107.6267422,0.302814749,72.37325782,0,0.884882547,0,0,0,2,7,0% -2018-02-09 16:00:00,80.73944364,116.5836318,91.5282287,351.7959254,34.91567685,34.55281882,0,34.55281882,33.86284037,0.68997845,51.66494502,28.42002982,23.24491521,1.052836482,22.19207873,1.409169128,2.034768229,-4.215254538,4.215254538,0.74899533,0.74899533,0.381474408,0.582857355,18.74669609,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.5502502,0.762776447,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.42227817,18.02003735,32.97252837,18.7828138,0,28.42002982,-0.080785557,94.633721,0.080785557,85.366279,0,0,32.97252837,18.7828138,45.26550434,2,8,37% -2018-02-09 17:00:00,70.73403411,127.4017613,270.4795843,628.9074889,62.96922525,148.7117217,85.60226153,63.10946013,61.07047077,2.038989357,67.47966119,0,67.47966119,1.898754473,65.58090672,1.234541788,2.223580208,-1.541348385,1.541348385,0.793739787,0.793739787,0.232805834,1.716336354,55.20327703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.70325944,1.375641152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243479846,53.06348964,59.94673928,54.43913079,85.60226153,0,0.136112645,82.17703635,-0.136112645,97.82296365,0.6826572,0,118.3837395,54.43913079,154.0130618,2,9,30% -2018-02-09 18:00:00,62.18110238,140.2048213,425.5844595,744.987983,77.91468006,329.1585238,250.3850234,78.7735004,75.56526498,3.208235424,105.5372945,0,105.5372945,2.349415078,103.1878795,1.085264969,2.447035759,-0.641810271,0.641810271,0.63990971,0.63990971,0.183076892,2.264481389,72.83350557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63620696,1.702143227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640609058,70.01033591,74.27681602,71.71247914,250.3850234,0,0.336092701,70.36100178,-0.336092701,109.6389982,0.901231521,0,299.9316914,71.71247914,346.8660748,2,10,16% -2018-02-09 19:00:00,55.85254148,155.4666151,534.7840499,798.618961,86.49950863,491.3051435,403.3824861,87.92265736,83.8912293,4.031428062,132.2728638,0,132.2728638,2.608279334,129.6645844,0.974810744,2.71340431,-0.1165335,0.1165335,0.550082092,0.550082092,0.161746613,2.510994277,80.76220743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.63944056,1.889689499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.819206806,77.63170572,82.45864737,79.52139522,403.3824861,0,0.505100061,59.66200512,-0.505100061,120.3379949,0.951009713,0,466.0793098,79.52139522,518.1244725,2,11,11% -2018-02-09 20:00:00,52.60143112,172.9319435,588.2003806,819.6937368,90.35447395,609.7294304,517.6653743,92.06405612,87.62995319,4.434102926,145.340513,0,145.340513,2.724520762,142.6159922,0.918068164,3.018231796,0.292724938,-0.292724938,0.480094777,0.480094777,0.153611723,2.482912799,79.85901057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.23324417,1.973906018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.798861871,76.76351854,86.03210604,78.73742456,517.6653743,0,0.63153511,50.8365288,-0.63153511,129.1634712,0.970827838,0,588.5960622,78.73742456,640.1281318,2,12,9% -2018-02-09 21:00:00,53.01440519,191.1759697,581.5287849,817.2112613,89.88287527,669.1286161,577.5722315,91.55638457,87.17257495,4.383809619,143.7086869,0,143.7086869,2.710300322,140.9983866,0.925275922,3.336650122,0.687328401,-0.687328401,0.412613611,0.412613611,0.154563072,2.206817895,70.97884939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.79359481,1.963603357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598832053,68.22756985,85.39242686,70.1911732,577.5722315,0,0.706760001,45.02809221,-0.706760001,134.9719078,0.979254627,0,650.9827069,70.1911732,696.9214259,2,13,7% -2018-02-09 22:00:00,57.00974098,208.2403119,515.2993445,790.1891898,85.0441414,659.766159,573.4018681,86.36429088,82.47974676,3.884544122,127.5046866,0,127.5046866,2.564394643,124.940292,0.995007686,3.634479078,1.149081862,-1.149081862,0.333649118,0.333649118,0.165038326,1.723271378,55.42633124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.28266985,1.857895189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.248504247,53.27789783,80.5311741,55.13579302,573.4018681,0,0.72565137,43.47693886,-0.72565137,136.5230611,0.981096389,0,643.0936761,55.13579302,679.1789499,2,14,6% -2018-02-09 23:00:00,63.90047173,222.9526957,394.9336864,726.600474,75.27904932,575.1269586,499.1406735,75.98628518,73.00910823,2.977176949,98.02618574,0,98.02618574,2.269941087,95.75624465,1.115273625,3.891258617,1.818042764,-1.818042764,0.219250066,0.219250066,0.190611872,1.095810332,35.24502709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17913187,1.64456459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.793910855,33.87886065,70.97304272,35.52342524,499.1406735,0,0.68695341,46.6105739,-0.68695341,133.3894261,0.97721486,0,558.7407262,35.52342524,581.9900975,2,15,4% -2018-02-09 00:00:00,72.83208639,235.274653,231.9203356,587.91326,58.38419416,407.2514721,348.8794634,58.37200874,56.62369529,1.748313453,57.99226932,0,57.99226932,1.760498869,56.23177045,1.271159709,4.106317342,3.13057946,-3.13057946,0,0,0.251742453,0.440124717,14.15592382,0.005179957,1,0.309185516,0,0.922925399,0.961687362,0.724496596,1,54.44292297,1.275475437,0.000883674,0.312029739,0.99749726,0.721993856,0.961238037,0.922476074,0.318395442,13.60721243,54.76131841,14.88268786,347.0722829,0,0.59341996,53.59992357,-0.59341996,126.4000764,0.965742639,0,389.9438207,14.88268786,399.6842423,2,16,2% -2018-02-09 01:00:00,83.05919654,245.7598269,55.23493077,248.5412229,25.20026365,137.2322957,112.3755287,24.85676696,24.44038272,0.416384239,14.15222938,0,14.15222938,0.759880928,13.39234845,1.449656454,4.289318149,8.192016734,-8.192016734,0,0,0.456237806,0.189970232,6.110095681,0.46545894,1,0.121469101,0,0.948770409,0.987532372,0.724496596,1,23.69471324,0.550531146,0.065221669,0.312029739,0.831750623,0.556247219,0.961238037,0.922476074,0.130031345,5.873256378,23.82474458,6.423787523,60.06933423,0,0.452140403,63.11890686,-0.452140403,116.8810931,0.939414882,0,80.25477109,6.423787523,84.45901155,2,17,5% -2018-02-09 02:00:00,94.32823585,255.0934508,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646338293,4.452220616,-13.16031157,13.16031157,1,0,#DIV/0!,0,0,1,0.438422939,0,0.075840303,0.961238037,1,0.532041636,0.80754504,0,0,0.115824807,0.094146452,0.724496596,0.448993192,0.990639272,0.951877309,0,0,0,0,0,0,0.26877928,74.4083602,-0.26877928,105.5916398,0.863973756,0,0,0,0,2,18,0% -2018-02-09 03:00:00,105.9556173,263.9551061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849274383,4.606885679,-3.394404887,3.394404887,1,0.889368887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.060823361,86.51292581,-0.060823361,93.48707419,0,0,0,0,0,2,19,0% -2018-02-09 04:00:00,117.7749906,273.0804799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055561362,4.766153498,-1.746697757,1.746697757,1,0.828856598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159505814,99.1782131,0.159505814,80.8217869,0,0.736531803,0,0,0,2,20,0% -2018-02-09 05:00:00,129.4763427,283.4665395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259788483,4.947424433,-1.012826991,1.012826991,1,0.703357306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377186859,112.1595387,0.377186859,67.84046126,0,0.917439709,0,0,0,2,21,0% -2018-02-09 06:00:00,140.5870097,296.8110951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453706204,5.180330867,-0.562437286,0.562437286,1,0.62633613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577377673,125.2663127,0.577377673,54.73368729,0,0.96340157,0,0,0,2,22,0% -2018-02-09 07:00:00,150.1295035,316.3135878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62025414,5.520713576,-0.230730165,0.230730165,1,0.569610872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746426724,138.2817905,0.746426724,41.71820946,0,0.983014188,0,0,0,2,23,0% -2018-02-10 08:00:00,155.9222015,346.1178991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.721355792,6.04089694,0.047623614,-0.047623614,1,0.522009572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872803191,150.7860407,0.872803191,29.2139593,0,0.992713317,0,0,0,2,0,0% -2018-02-10 09:00:00,155.0896245,21.58260489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.706824583,0.376687516,0.308224984,-0.308224984,1,0.477444113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94788268,161.4205376,0.94788268,18.57946242,0,0.997250856,0,0,0,2,1,0% -2018-02-10 10:00:00,148.1545253,48.83791403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585784268,0.8523824,0.579238698,-0.579238698,1,0.431098038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966535065,165.1354673,0.966535065,14.86453267,0,0.998268819,0,0,0,2,2,0% -2018-02-10 11:00:00,138.1087314,66.53012851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410452089,1.161169794,0.895329279,-0.895329279,1,0.377043365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927474421,158.0444846,0.927474421,21.95551537,0,0.996090157,0,0,0,2,3,0% -2018-02-10 12:00:00,126.7932027,78.97333117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212958857,1.37834465,1.320694065,-1.320694065,1,0.304301703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833347214,146.444129,0.833347214,33.55587097,0,0.990000999,0,0,0,2,4,0% -2018-02-10 13:00:00,115.0190272,88.94517743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007460727,1.5523862,2.026580889,-2.026580889,1,0.183587947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690552685,133.6738746,0.690552685,46.32612541,0,0.977594228,0,0,0,2,5,0% -2018-02-10 14:00:00,103.2008917,97.92377835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801195351,1.709092348,3.766862024,-3.766862024,1,0,#DIV/0!,0,0,0.102348158,1,0.259487602,0,0.930507193,0.969269157,0.724496596,1,0,0,0.016697969,0.312029739,0.953738864,0.67823546,0.961238037,0.922476074,0,0,0,0,0,0,-0.508807559,120.5844345,0.508807559,59.41556554,0,0.95173102,0,0,0,2,6,0% -2018-02-10 15:00:00,91.63404878,106.8185205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599315858,1.864334884,28.06219485,-28.06219485,1,0,#DIV/0!,0,0,0.810202175,1,0.035620059,0,0.957944661,0.996706624,0.724496596,1,0,0,0.10001693,0.312029739,0.755795527,0.480292123,0.961238037,0.922476074,0,0,0,0,0,0,-0.300484637,107.4867139,0.300484637,72.51328615,0,0.883602142,0,0,0,2,7,0% -2018-02-10 16:00:00,80.52251671,116.3408426,95.15360998,360.8996253,35.72788056,35.36786125,0,35.36786125,34.65055314,0.717308105,52.35874035,28.21031854,24.14842181,1.077327421,23.07109439,1.405383039,2.030530759,-4.135452869,4.135452869,0.762642219,0.762642219,0.375475829,0.610977456,19.65113522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.30742968,0.780520049,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442651087,18.88941864,33.75008077,19.66993869,0,28.21031854,-0.078166661,94.48319309,0.078166661,85.51680691,0,0,33.75008077,19.66993869,46.62366224,2,8,38% -2018-02-10 17:00:00,70.48998843,127.1754198,275.0193051,633.5538053,63.43034824,151.7037735,88.11287255,63.5909009,61.51768921,2.07321169,68.59427361,0,68.59427361,1.912659032,66.68161458,1.230282388,2.219629804,-1.529905348,1.529905348,0.791782913,0.791782913,0.230639621,1.741095664,55.99962154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.13314281,1.385714958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261417882,53.82896627,60.39456069,55.21468123,88.11287255,0,0.139077174,82.00555021,-0.139077174,97.99444979,0.690487373,0,121.2353866,55.21468123,157.3722912,2,9,30% -2018-02-10 18:00:00,61.90645324,140.0089476,430.506363,747.9906616,78.26819258,332.9929558,253.8394992,79.15345661,75.9081178,3.245338811,106.7413267,0,106.7413267,2.360074785,104.3812519,1.080471437,2.443617118,-0.640445567,0.640445567,0.639676332,0.639676332,0.181804961,2.288564127,73.60808922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96577013,1.709866148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65805692,70.75489517,74.62382705,72.46476132,253.8394992,0,0.339361856,70.16200033,-0.339361856,109.8379997,0.902664644,0,303.7557681,72.46476132,351.1825051,2,10,16% -2018-02-10 19:00:00,55.54826307,155.3289796,539.9302874,800.9645205,86.81517976,495.6607633,407.3931589,88.26760435,84.19738177,4.070222574,133.5301473,0,133.5301473,2.617797984,130.9123493,0.969500084,2.711002117,-0.118701882,0.118701882,0.550452907,0.550452907,0.160789609,2.534671716,81.52375528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.93372597,1.896585728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.83636103,78.36373448,82.770087,80.26032021,407.3931589,0,0.508628221,59.42750066,-0.508628221,120.5724993,0.951696371,0,470.4846778,80.26032021,523.0134522,2,11,11% -2018-02-10 20:00:00,52.27844194,172.8862586,593.4578185,821.8034071,90.65819379,614.4579293,522.0596788,92.39825047,87.92451476,4.473735713,146.6243979,0,146.6243979,2.733679036,143.8907189,0.91243094,3.017434444,0.288325137,-0.288325137,0.480847187,0.480847187,0.152762658,2.505982524,80.60101223,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.51638796,1.980541156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815575808,77.47675877,86.33196376,79.45729992,522.0596788,0,0.63526103,50.56065274,-0.63526103,129.4393473,0.971292197,0,593.4044562,79.45729992,645.4076698,2,12,9% -2018-02-10 21:00:00,52.69281804,191.2364003,586.7903655,819.3547651,90.18918687,674.1343339,582.2412101,91.89312376,87.46965013,4.423473637,144.9936545,0,144.9936545,2.719536747,142.2741178,0.919663167,3.337704835,0.680543869,-0.680543869,0.413773834,0.413773834,0.153699161,2.228883546,71.68855657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.07915477,1.970295115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614818542,68.90976739,85.69397331,70.8800625,582.2412101,0,0.710609415,44.71547936,-0.710609415,135.2845206,0.979637859,0,656.0795057,70.8800625,702.469089,2,13,7% -2018-02-10 22:00:00,56.7084912,208.3869471,520.4563944,792.654988,85.36890707,664.9929438,578.2748041,86.71813969,82.79471955,3.923420142,128.764866,0,128.764866,2.574187526,126.1906784,0.989749885,3.637038346,1.138551175,-1.138551175,0.335449972,0.335449972,0.164027012,1.743780273,56.0859678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.58543368,1.8649901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263362872,53.91196558,80.84879655,55.77695568,578.2748041,0,0.72954162,43.15201979,-0.72954162,136.8479802,0.981463814,0,648.4045915,55.77695568,684.9094935,2,14,6% -2018-02-10 23:00:00,63.62842607,223.15173,399.8654832,729.8921837,75.65413667,580.5957001,504.2084599,76.38724023,73.37288532,3.014354916,99.23326724,0,99.23326724,2.281251355,96.95201589,1.110525533,3.894732421,1.799577856,-1.799577856,0.222407751,0.222407751,0.189198968,1.113886742,35.82642658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.52880824,1.652758841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807007153,34.43772395,71.33581539,36.09048279,504.2084599,0,0.690798547,46.30664594,-0.690798547,133.6933541,0.977619998,0,564.2600891,36.09048279,587.8805883,2,15,4% -2018-02-10 00:00:00,72.58905593,235.5011299,236.4337488,593.3077531,58.90238964,413.192934,354.2843313,58.90860274,57.12626527,1.782337469,59.10222412,0,59.10222412,1.776124374,57.32609974,1.266918027,4.110270108,3.087311946,-3.087311946,0.002192252,0.002192252,0.249128519,0.446964999,14.3759308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.91193908,1.286796063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.32382462,13.8186915,55.2357637,15.10548757,354.2843313,0,0.597134168,53.33507793,-0.597134168,126.6649221,0.966266724,0,397.5689239,15.10548757,407.4551634,2,16,2% -2018-02-10 01:00:00,82.84232763,246.0021268,58.45953197,259.173645,26.16642629,143.9014965,118.0833919,25.81810464,25.37741199,0.440692645,14.96320464,0,14.96320464,0.789014296,14.17419035,1.445871377,4.29354708,7.943743921,-7.943743921,0,0,0.44759897,0.197253574,6.344352997,0.453045764,1,0.125226507,0,0.94832968,0.987091643,0.724496596,1,24.60418001,0.571638172,0.063791492,0.312029739,0.835079405,0.559576001,0.961238037,0.922476074,0.134998699,6.09843342,24.73917871,6.670071592,64.58621138,0,0.455614968,62.8954907,-0.455614968,117.1045093,0.940258215,0,85.4668945,6.670071592,89.83232296,2,17,5% -2018-02-10 02:00:00,94.12509235,255.3494256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64279277,4.45668822,-13.80517839,13.80517839,1,0,#DIV/0!,0,0,1,0.471173184,0,0.072310291,0.961238037,1,0.539988684,0.815492088,0,0,0.115824807,0.103117644,0.724496596,0.448993192,0.989638201,0.950876238,0,0,0,0,0,0,0.272052243,74.21357614,-0.272052243,105.7864239,0.866211771,0,0,0,0,2,18,0% -2018-02-10 03:00:00,105.7622097,264.2284417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845898783,4.611656284,-3.434160354,3.434160354,1,0.882570302,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063798508,86.34213049,-0.063798508,93.65786951,0,0,0,0,0,2,19,0% -2018-02-10 04:00:00,117.5829384,273.3787335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052209419,4.771359004,-1.757058696,1.757058696,1,0.830628423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.15684896,99.02404567,0.15684896,80.97595433,0,0.731221987,0,0,0,2,20,0% -2018-02-10 05:00:00,129.2748117,283.7992263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256271104,4.953230913,-1.016184927,1.016184927,1,0.703931547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374846712,112.014839,0.374846712,67.98516095,0,0.916612142,0,0,0,2,21,0% -2018-02-10 06:00:00,140.3604874,297.1814052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449752644,5.186793997,-0.563069654,0.563069654,1,0.626444272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575330716,125.1227958,0.575330716,54.87720424,0,0.963093463,0,0,0,2,22,0% -2018-02-10 07:00:00,149.8575062,316.6767222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615506892,5.527051467,-0.229898466,0.229898466,1,0.569468643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744629154,138.127256,0.744629154,41.87274402,0,0.982852481,0,0,0,2,23,0% -2018-02-11 08:00:00,155.6008465,346.2680322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.71574709,6.043517256,0.049524172,-0.049524172,1,0.521684557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.871193955,150.5976826,0.871193955,29.4023174,0,0.992607499,0,0,0,2,0,0% -2018-02-11 09:00:00,154.7776847,21.348129,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701380206,0.37259514,0.311184392,-0.311184392,1,0.476938024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9463877,161.1535524,0.9463877,18.84644764,0,0.99716753,0,0,0,2,1,0% -2018-02-11 10:00:00,147.8963662,48.45723773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581278542,0.845738345,0.583560297,-0.583560297,1,0.430359001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965072356,164.8122122,0.965072356,15.18778785,0,0.998190413,0,0,0,2,2,0% -2018-02-11 11:00:00,137.8916427,66.16325787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406663176,1.154766694,0.901808616,-0.901808616,1,0.375935334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925959747,157.8135244,0.925959747,22.18647556,0,0.996001972,0,0,0,2,3,0% -2018-02-11 12:00:00,126.5971068,78.64562703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209536337,1.372625134,1.331341277,-1.331341277,1,0.302480922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831699894,146.2737563,0.831699894,33.72624371,0,0.989882161,0,0,0,2,4,0% -2018-02-11 13:00:00,114.8295732,88.64988326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004154131,1.547232344,2.047780484,-2.047780484,1,0.179962602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688701153,133.5273816,0.688701153,46.47261842,0,0.97739957,0,0,0,2,5,0% -2018-02-11 14:00:00,103.0078815,97.65123661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797826688,1.704335597,3.834366872,-3.834366872,1,0,#DIV/0!,0,0,0.111554674,1,0.255116553,0,0.931149305,0.969911269,0.724496596,1,0,0,0.018124894,0.312029739,0.949886784,0.674383379,0.961238037,0.922476074,0,0,0,0,0,0,-0.506694285,120.4438875,0.506694285,59.55611247,0,0.951321169,0,0,0,2,6,0% -2018-02-11 15:00:00,91.42932581,106.5616985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595742768,1.859852495,32.19093342,-32.19093342,1,0,#DIV/0!,0,0,0.832630945,1,0.031054661,0,0.958383798,0.997145761,0.724496596,1,0,0,0.101993474,0.312029739,0.751772058,0.476268654,0.961238037,0.922476074,0,0,0,0,0,0,-0.298070084,107.3417247,0.298070084,72.65827529,0,0.882254216,0,0,0,2,7,0% -2018-02-11 16:00:00,80.30079427,116.0969292,98.88635056,370.0418691,36.54328205,36.18681434,0,36.18681434,35.44136726,0.74544708,53.00328403,27.92522868,25.07805534,1.101914784,23.97614056,1.401513252,2.026273666,-4.057132341,4.057132341,0.776035818,0.776035818,0.369548293,0.640190996,20.59074306,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.06759029,0.79833351,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.463816197,19.79260544,34.53140649,20.59093895,0,27.92522868,-0.075465051,94.32794352,0.075465051,85.67205648,0,0,34.53140649,20.59093895,48.00776421,2,8,39% -2018-02-11 17:00:00,70.24124259,126.9481281,279.6449506,638.200893,63.89439379,154.7759026,90.70007879,64.07582383,61.96774207,2.10808176,69.72980761,0,69.72980761,1.926651718,67.80315589,1.225940954,2.215662814,-1.518329772,1.518329772,0.789803373,0.789803373,0.228483989,1.766214007,56.8075138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.56575073,1.395852611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.279616036,54.60554304,60.84536677,56.00139565,90.70007879,0,0.142118383,81.82955348,-0.142118383,98.17044652,0.698180629,0,124.1704048,56.00139565,160.8221983,2,9,30% -2018-02-11 18:00:00,61.62712931,139.8126641,435.5011563,750.9911797,78.62440572,336.9008056,257.3642242,79.53658146,76.25358979,3.282991672,107.9631133,0,107.9631133,2.370815926,105.5922974,1.075596315,2.440191325,-0.63895494,0.63895494,0.63942142,0.63942142,0.180537766,2.312931556,74.39182949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29785095,1.717648067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675711039,71.50825614,74.97356199,73.2259042,257.3642242,0,0.342699397,69.95857851,-0.342699397,110.0414215,0.904099539,0,307.6564384,73.2259042,355.5813282,2,10,16% -2018-02-11 19:00:00,55.23939992,155.1921857,545.1360817,803.3047074,87.13289665,500.0791306,411.4641462,88.61498438,84.50551833,4.10946605,134.8019327,0,134.8019327,2.62737832,132.1745544,0.964109405,2.708614613,-0.120769308,0.120769308,0.550806458,0.550806458,0.159836965,2.558570781,82.29243136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.22991855,1.903526649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853675821,79.10261517,83.08359437,81.00614182,411.4641462,0,0.512214285,59.18856498,-0.512214285,120.811435,0.952384604,0,474.9557125,81.00614182,527.9726122,2,11,11% -2018-02-11 20:00:00,51.95124956,172.8435125,598.7613595,823.9040403,90.9631522,619.2357635,526.50177,92.73399359,88.22027754,4.513716046,147.9194985,0,147.9194985,2.742874657,145.1766238,0.906720355,3.016688383,0.284018497,-0.284018497,0.481583666,0.481583666,0.151918875,2.529219677,81.34839896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.8006864,1.987203352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.832411046,78.19517531,86.63309744,80.18237867,526.50177,0,0.639032878,50.28025862,-0.639032878,129.7197414,0.971756764,0,598.2647539,80.18237867,650.7425171,2,12,9% -2018-02-11 21:00:00,52.36786852,191.301933,592.0853543,821.4842141,90.49581395,679.1744055,586.9439848,92.23042077,87.76703127,4.463389498,146.2867318,0,146.2867318,2.728782685,143.5579491,0.913991728,3.338848597,0.673864669,-0.673864669,0.414916044,0.414916044,0.152842514,2.251073657,72.40226681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36500884,1.976993766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630895201,69.59581282,85.99590404,71.57280658,586.9439848,0,0.714492104,44.39840929,-0.714492104,135.6015907,0.98002022,0,661.2128773,71.57280658,708.0558478,2,13,7% -2018-02-11 22:00:00,56.40497998,208.5397924,525.6359492,795.0982635,85.69285218,670.238323,583.1669607,87.07136233,83.10889651,3.962465815,130.0304772,0,130.0304772,2.583955666,127.4465215,0.984452615,3.639705999,1.128174085,-1.128174085,0.337224559,0.337224559,0.163027001,1.764386374,56.74873084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88743253,1.872067084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278291922,54.54903863,81.16572445,56.42110571,583.1669607,0,0.733452691,42.82336831,-0.733452691,137.1766317,0.981829277,0,653.73612,56.42110571,690.6626053,2,14,6% -2018-02-11 23:00:00,63.3550989,223.3569726,404.81204,733.1437311,76.02664144,586.0663839,509.280582,76.78580184,73.73415769,3.051644151,100.4438496,0,100.4438496,2.292483748,98.15136585,1.105755074,3.898314579,1.781424451,-1.781424451,0.225512167,0.225512167,0.187807263,1.132058077,36.41087917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.87607699,1.660896671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820172223,34.99952202,71.69624921,36.66041869,509.280582,0,0.694653123,46.000418,-0.694653123,133.999582,0.978021629,0,569.7836738,36.66041869,593.7771846,2,15,4% -2018-02-11 00:00:00,72.34540958,235.7333314,240.9610439,598.6163438,59.41391426,419.1165081,359.6776765,59.43883166,57.62236553,1.816466132,60.21534358,0,60.21534358,1.791548729,58.42379485,1.262665596,4.114322789,3.045107542,-3.045107542,0.009409631,0.009409631,0.246570621,0.460765005,14.81978642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.38880952,1.297970955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333822677,14.24534241,55.7226322,15.54331336,359.6776765,0,0.600848407,53.0693155,-0.600848407,126.9306845,0.966784335,0,403.4533753,15.54331336,413.626163,2,16,3% -2018-02-11 01:00:00,82.62508159,246.249636,61.7391009,269.7047262,27.11940472,150.5843886,123.8173186,26.76707003,26.30165461,0.465415421,15.78710992,0,15.78710992,0.817750112,14.9693598,1.442079718,4.297866931,7.709506922,-7.709506922,0,0,0.439258174,0.204437528,6.575413651,0.44079396,1,0.128989795,0,0.947885016,0.986646979,0.724496596,1,25.50105696,0.592457173,0.062366094,0.312029739,0.838413251,0.562909847,0.961238037,0.922476074,0.139906839,6.32053771,25.6409638,6.912994882,69.23939237,0,0.45908472,62.67193812,-0.45908472,117.3280619,0.941087641,0,90.80130019,6.912994882,95.32571708,2,17,5% -2018-02-11 02:00:00,93.92185542,255.6102287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639245617,4.461240093,-14.51666178,14.51666178,1,0,#DIV/0!,0,0,1,0.503142391,0,0.068777707,0.961238037,1,0.548041012,0.823544416,0,0,0.115824807,0.112206609,0.724496596,0.448993192,0.988604959,0.949842996,0,0,0,0,0,0,0.275313692,74.01929096,-0.275313692,105.980709,0.868388982,0,0,0,0,2,18,0% -2018-02-11 03:00:00,105.5686312,264.5063849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842520202,4.61650731,-3.474758879,3.474758879,1,0.875627546,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.066761258,86.17201448,-0.066761258,93.82798552,0,0,0,0,0,2,19,0% -2018-02-11 04:00:00,117.39044,273.6815011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048849689,4.776643296,-1.767464221,1.767464221,1,0.832407873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.154202067,98.87052172,0.154202067,81.12947828,0,0.725750132,0,0,0,2,20,0% -2018-02-11 05:00:00,129.0723419,284.1363566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252737339,4.959114948,-1.019495186,1.019495186,1,0.704497634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.372510942,111.8705572,0.372510942,68.12944284,0,0.915775755,0,0,0,2,21,0% -2018-02-11 06:00:00,140.1322972,297.5558401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445769975,5.193329118,-0.563633956,0.563633956,1,0.626540773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.57327979,124.9792536,0.57327979,55.02074639,0,0.962782552,0,0,0,2,22,0% -2018-02-11 07:00:00,149.582979,317.0431947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610715489,5.533447618,-0.228989163,0.228989163,1,0.569313143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742817081,137.9719438,0.742817081,42.02805621,0,0.982688678,0,0,0,2,23,0% -2018-02-12 08:00:00,155.2761246,346.4233923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.710079623,6.046228802,0.051513083,-0.051513083,1,0.521344434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869558223,150.4073427,0.869558223,29.59265732,0,0.992499537,0,0,0,2,0,0% -2018-02-12 09:00:00,154.4607955,21.12312151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695849447,0.368668019,0.314249506,-0.314249506,1,0.476413859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944853599,160.8833177,0.944853599,19.11668232,0,0.997081749,0,0,0,2,1,0% -2018-02-12 10:00:00,147.632172,48.08215515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576667484,0.839191919,0.588018582,-0.588018582,1,0.42959659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96355814,164.4845036,0.96355814,15.51549639,0,0.998108995,0,0,0,2,2,0% -2018-02-12 11:00:00,137.6685552,65.7982379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402769565,1.148395893,0.908485322,-0.908485322,1,0.37479355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924382272,157.5753905,0.924382272,22.42460947,0,0.995909824,0,0,0,2,3,0% -2018-02-12 12:00:00,126.3953695,78.31806264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206015356,1.366908057,1.342325449,-1.342325449,1,0.300602518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829980355,146.0967201,0.829980355,33.90327993,0,0.98975761,0,0,0,2,4,0% -2018-02-12 13:00:00,114.6348313,88.35400175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000755244,1.542068238,2.069752542,-2.069752542,1,0.176205159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686770507,133.375007,0.686770507,46.62499296,0,0.977195476,0,0,0,2,5,0% -2018-02-12 14:00:00,102.8098667,97.37778589,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794370677,1.699562982,3.905405968,-3.905405968,1,0,#DIV/0!,0,0,0.12104144,1,0.250669624,0,0.931798405,0.970560368,0.724496596,1,0,0,0.019582959,0.312029739,0.945967128,0.670463724,0.961238037,0.922476074,0,0,0,0,0,0,-0.504498007,120.2980346,0.504498007,59.70196539,0,0.950891581,0,0,0,2,6,0% -2018-02-12 15:00:00,91.21980573,106.3038279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592085953,1.855351804,37.84786815,-37.84786815,1,0,#DIV/0!,0,0,0.855953713,1,0.026415422,0,0.958824927,0.99758689,0.724496596,1,0,0,0.104016463,0.312029739,0.747686566,0.472183162,0.961238037,0.922476074,0,0,0,0,0,0,-0.29557191,107.1918347,0.29557191,72.80816525,0,0.880836428,0,0,0,2,7,0% -2018-02-12 16:00:00,80.07437205,115.8519486,102.7250168,379.2091238,37.36084826,37.00866541,0,37.00866541,36.23428084,0.774384568,53.59508279,27.56164574,26.03343704,1.126567422,24.90686962,1.397561439,2.021997947,-3.980337302,3.980337302,0.789168543,0.789168543,0.36369766,0.670498904,21.56554957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.82976898,0.816194262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.485774173,20.72962653,35.31554315,21.54582079,0,27.56164574,-0.072681916,94.16804228,0.072681916,85.83195772,0,0,35.31554315,21.54582079,49.41685195,2,8,40% -2018-02-12 17:00:00,69.98790076,126.7199222,284.3542334,642.8443292,64.36096502,157.9271341,93.3633073,64.56382678,62.42024446,2.143582323,70.88569658,0,70.88569658,1.940720562,68.94497602,1.221519305,2.21167987,-1.50663923,1.50663923,0.787804172,0.787804172,0.226340801,1.791676299,57.62646863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.00071324,1.406045441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29806338,55.39275358,61.29877662,56.79879902,93.3633073,0,0.145234706,81.64912926,-0.145234706,98.35087074,0.705729672,0,127.1880328,56.79879902,164.3617108,2,9,29% -2018-02-12 18:00:00,61.34324036,139.615988,440.5661829,753.9871753,78.98304487,340.8801364,260.9575477,79.92258863,76.60141465,3.321173982,109.202002,0,109.202002,2.381630219,106.8203717,1.070641518,2.436758679,-0.637343549,0.637343549,0.639145856,0.639145856,0.179276231,2.337569871,75.18428238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.63219344,1.725482986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693561414,72.269992,75.32575485,73.99547498,260.9575477,0,0.34610343,69.7508322,-0.34610343,110.2491678,0.905534515,0,311.6318212,73.99547498,360.0603797,2,10,16% -2018-02-12 19:00:00,54.9260642,155.0562438,550.3985899,805.6379505,87.45242842,504.5578071,415.593255,88.9645521,84.81541504,4.14913706,136.0875238,0,136.0875238,2.637013382,133.4505104,0.958640665,2.706241981,-0.122737247,0.122737247,0.551142995,0.551142995,0.158889267,2.582678308,83.06781229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52780305,1.910507219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.871141643,79.84794081,83.39894469,81.75844803,415.593255,0,0.515856105,58.9453046,-0.515856105,121.0546954,0.953073746,0,479.4899649,81.75844803,532.999234,2,11,11% -2018-02-12 20:00:00,51.61996912,172.8037306,604.1081075,825.9944336,91.26914035,624.060207,530.9891458,93.07106111,88.51703902,4.554022091,149.2251061,0,149.2251061,2.752101329,146.4730048,0.900938421,3.015994059,0.279805023,-0.279805023,0.482304213,0.482304213,0.151080807,2.552611855,82.1007718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.08594482,1.993888044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849358599,78.91838471,86.93530342,80.91227275,530.9891458,0,0.642848334,49.99545799,-0.642848334,130.004542,0.972221156,0,603.1741849,80.91227275,656.1296491,2,12,9% -2018-02-12 21:00:00,52.03967854,191.3726053,597.4109195,823.5985952,90.80256424,684.2459733,591.6779055,92.56806776,88.0645319,4.503535858,147.5872263,0,147.5872263,2.738032338,144.849194,0.908263732,3.34008206,0.667291496,-0.667291496,0.416040123,0.416040123,0.151993479,2.27337687,73.11961481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.65097776,1.983695108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647053803,70.285355,86.29803156,72.26905011,591.6779055,0,0.718405676,44.07699351,-0.718405676,135.9230065,0.980401441,0,666.3799026,72.26905011,713.6785505,2,13,7% -2018-02-12 22:00:00,56.09933218,208.698862,530.8353469,797.5181167,86.01580262,675.4994461,588.0756762,87.42376987,83.4221088,4.001661071,131.3008695,0,131.3008695,2.593693813,128.7071757,0.979118055,3.642482286,1.117951319,-1.117951319,0.338972754,0.338972754,0.162038574,1.785079645,57.41429755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1885041,1.879122339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.293284126,55.18880667,81.48178822,57.06792901,588.0756762,0,0.737382216,42.4911046,-0.737382216,137.5088954,0.982192561,0,659.0853424,57.06792901,696.4351606,2,14,6% -2018-02-12 23:00:00,63.08060663,223.5683966,409.7709404,736.3543564,76.39641878,591.5362998,514.3544885,77.18181132,74.09278488,3.089026437,101.6573426,0,101.6573426,2.303633899,99.35370867,1.10096428,3.902004623,1.763580922,-1.763580922,0.22856359,0.22856359,0.186436888,1.150315738,36.99810831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.22080308,1.668974918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.833399836,35.563989,72.05420292,37.23296391,514.3544885,0,0.698514898,45.6920248,-0.698514898,134.3079752,0.978419565,0,575.308698,37.23296391,599.6769282,2,15,4% -2018-02-12 00:00:00,72.10124693,235.9711967,245.4999991,603.8386517,59.9186987,425.0197003,365.0570888,59.96261155,58.11192886,1.850682693,61.33108693,0,61.33108693,1.806769842,59.52431709,1.258404154,4.118474322,3.003939992,-3.003939992,0.016449696,0.016449696,0.24406802,0.474705425,15.26815826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.85939641,1.3089986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343922464,14.67633447,56.20331888,15.98533307,365.0570888,0,0.604560652,52.80276667,-0.604560652,127.1972333,0.967295312,0,409.3213295,15.98533307,419.7834103,2,16,3% -2018-02-12 01:00:00,82.40754684,246.5022712,65.06978635,280.1218663,28.05845257,157.2726574,129.5697472,27.70291023,27.2123867,0.490523535,16.62298892,0,16.62298892,0.84606587,15.77692305,1.438283021,4.302276245,7.488214144,-7.488214144,0,0,0.431205543,0.211516467,6.803096675,0.428704083,1,0.132757717,0,0.947436557,0.98619852,0.724496596,1,26.38461605,0.612971842,0.060945894,0.312029739,0.841751011,0.566247607,0.961238037,0.922476074,0.144752784,6.539395292,26.52936883,7.152367135,74.02266756,0,0.462547779,62.44836637,-0.462547779,117.5516336,0.941903059,0,96.25154584,7.152367135,100.9326271,2,17,5% -2018-02-12 02:00:00,93.71858491,255.8757605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635697877,4.465874497,-15.30547616,15.30547616,1,0,#DIV/0!,0,0,1,0.534351857,0,0.06524336,0.961238037,1,0.556196858,0.831700262,0,0,0.115824807,0.121412256,0.724496596,0.448993192,0.987539015,0.948777052,0,0,0,0,0,0,0.278562247,73.82558614,-0.278562247,106.1744139,0.870506905,0,0,0,0,2,18,0% -2018-02-12 03:00:00,105.3749245,264.7888207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839139381,4.621436744,-3.51622106,3.51622106,1,0.868537095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069710613,86.00263406,-0.069710613,93.99736594,0,0,0,0,0,2,19,0% -2018-02-12 04:00:00,117.1975235,273.9886466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04548266,4.782003996,-1.777913019,1.777913019,1,0.834194722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.151565749,98.71767491,0.151565749,81.28232509,0,0.720110164,0,0,0,2,20,0% -2018-02-12 05:00:00,128.8689511,284.4777601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249187501,4.965073563,-1.022756766,1.022756766,1,0.705055397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370179798,111.7267063,0.370179798,68.27329368,0,0.914930501,0,0,0,2,21,0% -2018-02-12 06:00:00,139.9024572,297.9341742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44175851,5.199932293,-0.564129764,0.564129764,1,0.626625561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571224826,124.8356808,0.571224826,55.1643192,0,0.96246879,0,0,0,2,22,0% -2018-02-12 07:00:00,149.305962,317.4127161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60588063,5.539896984,-0.228002147,0.228002147,1,0.569144353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740990188,137.8158328,0.740990188,42.18416717,0,0.982522723,0,0,0,2,23,0% -2018-02-13 08:00:00,154.948127,346.5836509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704354987,6.049025843,0.053590321,-0.053590321,1,0.520989205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867895514,150.214998,0.867895514,29.78500195,0,0.992389378,0,0,0,2,0,0% -2018-02-13 09:00:00,154.139106,20.9074039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690234906,0.364903036,0.317420337,-0.317420337,1,0.475871615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943279829,160.609864,0.943279829,19.39013598,0,0.99699346,0,0,0,2,1,0% -2018-02-13 10:00:00,147.3620753,47.71281025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571953406,0.832745634,0.592613864,-0.592613864,1,0.42881075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961991901,164.1524931,0.961991901,15.84750686,0,0.99802451,0,0,0,2,2,0% -2018-02-13 11:00:00,137.4395678,65.43526355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39877298,1.142060796,0.915360703,-0.915360703,1,0.37361779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922741615,157.3302367,0.922741615,22.6697633,0,0.99581365,0,0,0,2,3,0% -2018-02-13 12:00:00,126.1880741,77.99079976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20239737,1.361196242,1.35365135,-1.35365135,1,0.298665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828188436,145.9130938,0.828188436,34.08690619,0,0.989627266,0,0,0,2,4,0% -2018-02-13 13:00:00,114.434882,88.0576594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99726547,1.536896088,2.092518643,-2.092518643,1,0.172311926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684760882,133.2168048,0.684760882,46.78319519,0,0.97698181,0,0,0,2,5,0% -2018-02-13 14:00:00,102.6069311,97.10352499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790828783,1.694776226,3.98019603,-3.98019603,1,0,#DIV/0!,0,0,0.130812629,1,0.246149056,0,0.932453941,0.971215904,0.724496596,1,0,0,0.021071851,0.312029739,0.941981814,0.66647841,0.961238037,0.922476074,0,0,0,0,0,0,-0.502219209,120.1469306,0.502219209,59.85306941,0,0.95044188,0,0,0,2,6,0% -2018-02-13 15:00:00,91.00557915,106.044985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588346994,1.850834144,46.06504278,-46.06504278,1,0,#DIV/0!,0,0,0.880202686,1,0.021705026,0,0.959267541,0.998029504,0.724496596,1,0,0,0.106085649,0.312029739,0.743541833,0.468038429,0.961238037,0.922476074,0,0,0,0,0,0,-0.292990979,107.0371067,0.292990979,72.96289328,0,0.879346282,0,0,0,2,7,0% -2018-02-13 16:00:00,79.84334756,115.6059563,106.6680292,388.3883376,38.17959519,37.83244819,0,37.83244819,37.02833953,0.804108661,54.13084044,27.11668614,27.01415431,1.151255663,25.86289864,1.393529301,2.017704573,-3.905101876,3.905101876,0.802034559,0.802034559,0.357929133,0.701900144,22.57552139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.59304839,0.834080809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.508524265,21.70044987,36.10157266,22.53453068,0,27.11668614,-0.069818487,94.00356179,0.069818487,85.99643821,0,0,36.10157266,22.53453068,50.8499723,2,8,41% -2018-02-13 17:00:00,69.7300684,126.4908367,289.1448179,647.4798898,64.82967907,161.1564271,96.10190625,65.05452082,62.87482505,2.179695772,72.06136272,0,72.06136272,1.95485402,70.1065087,1.217019281,2.207681575,-1.494850522,1.494850522,0.785788185,0.785788185,0.224211797,1.817467391,58.4559988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.4376734,1.416285083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316748938,56.19012953,61.75442234,57.60641461,96.10190625,0,0.148424542,81.4643625,-0.148424542,98.5356375,0.713128488,0,130.2874294,57.60641461,167.9896756,2,9,29% -2018-02-13 18:00:00,61.05489716,139.4189348,445.6987596,756.9763893,79.343842,344.9289761,264.6177782,80.31119793,76.95133241,3.359865514,110.457334,0,110.457334,2.392509584,108.0648244,1.06560898,2.433319452,-0.635616524,0.635616524,0.638850517,0.638850517,0.178021231,2.36246522,75.9850024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.9685477,1.733365049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71159801,73.03967453,75.68014571,74.77303958,264.6177782,0,0.349572037,69.53885879,-0.349572037,110.4611412,0.906967964,0,315.6799934,74.77303958,364.6174523,2,10,16% -2018-02-13 19:00:00,54.60836883,154.9211633,555.7149561,807.9627497,87.77354872,509.0943359,419.7782695,89.31606645,85.12685238,4.189214074,137.3862213,0,137.3862213,2.646696344,134.739525,0.953095835,2.70388438,-0.124607265,0.124607265,0.551462787,0.551462787,0.157947069,2.606981119,83.84947423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.82716846,1.917522491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888748946,80.599304,83.71591741,82.51682649,419.7782695,0,0.519551514,58.69782728,-0.519551514,121.3021727,0.953763152,0,484.0849629,82.51682649,538.0905755,2,11,11% -2018-02-13 20:00:00,51.28471631,172.7669381,609.495164,828.0734446,91.57595357,628.9285292,535.5192965,93.40923269,88.81460069,4.594631998,150.5405119,0,150.5405119,2.761352879,147.779159,0.895087155,3.015351908,0.27568458,-0.27568458,0.48300885,0.48300885,0.15024886,2.576146667,82.85773226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.37197241,2.000590761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.866409491,79.6460039,87.2383819,81.64659466,535.5192965,0,0.646705072,49.7063634,-0.646705072,130.2936366,0.972685004,0,608.129971,81.64659466,661.5660343,2,12,9% -2018-02-13 21:00:00,51.70837055,191.4484544,602.7642363,825.6969541,91.10924987,689.3461886,596.4403273,92.90586125,88.36196982,4.543891422,148.8944477,0,148.8944477,2.747280041,146.1471677,0.902481317,3.341405877,0.660824854,-0.660824854,0.417145984,0.417145984,0.151152382,2.29578186,73.84023631,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.93688641,1.990395037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.663286142,70.97804379,86.60017255,72.96843882,596.4403273,0,0.722347738,43.75134421,-0.722347738,136.2486558,0.98078126,0,671.5776685,72.96843882,719.3340524,2,13,7% -2018-02-13 22:00:00,55.79167297,208.8641693,536.0519387,799.9137133,86.33758941,680.773485,592.9983065,87.77517848,83.73419254,4.040985943,132.5753956,0,132.5753956,2.603396873,129.9719987,0.973748389,3.645367443,1.107883346,-1.107883346,0.340694479,0.340694479,0.161061985,1.805850084,58.08234627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48849085,1.886152172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308332238,55.8309605,81.79682309,57.71711267,592.9983065,0,0.741327842,42.15534954,-0.741327842,137.8446505,0.982553457,0,664.4493593,57.71711267,702.2240552,2,14,6% -2018-02-13 23:00:00,62.8050654,223.7859734,414.7397854,739.5233849,76.76333028,597.0027744,519.427658,77.57511634,74.44863265,3.126483689,102.8731603,0,102.8731603,2.314697635,100.5584627,1.096155178,3.905802055,1.746045278,-1.746045278,0.231562361,0.231562361,0.185087935,1.168651142,37.58783794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56285749,1.676990557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.846683774,36.13085956,72.40954127,37.80785011,519.427658,0,0.702381654,45.38160189,-0.702381654,134.6183981,0.97881363,0,580.832413,37.80785011,605.5768947,2,15,4% -2018-02-13 00:00:00,71.85666682,236.214663,250.048413,608.9744369,60.41668299,430.9000779,370.4202102,60.47986765,58.59489709,1.884970558,62.4489186,0,62.4489186,1.821785906,60.62713269,1.254135426,4.122723611,2.963783247,-2.963783247,0.023316904,0.023316904,0.241619942,0.488778553,15.72079842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.32364385,1.319877687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.354118397,15.11142941,56.67776224,16.43130709,370.4202102,0,0.608268899,52.53556193,-0.608268899,127.4644381,0.967799513,0,415.1702612,16.43130709,425.924223,2,16,3% -2018-02-13 01:00:00,82.18981017,246.7599473,68.44782485,290.414028,28.98294828,163.9586002,135.3336062,28.62499407,28.10900546,0.515988616,17.46991042,0,17.46991042,0.873942826,16.5959676,1.434482799,4.306773543,7.278880892,-7.278880892,0,0,0.423431254,0.218485707,7.027251364,0.416776399,1,0.136529074,0,0.946984442,0.985746405,0.724496596,1,27.25424808,0.633168603,0.05953128,0.312029739,0.845091582,0.569588178,0.961238037,0.922476074,0.149534129,6.754861306,27.40378221,7.388029908,78.92975314,0,0.466002304,62.22489126,-0.466002304,117.7751087,0.942704393,0,101.8112072,7.388029908,106.6465251,2,17,5% -2018-02-13 02:00:00,93.51533964,256.1459206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632150578,4.47058968,-16.18477216,16.18477216,1,0,#DIV/0!,0,0,1,0.564822465,0,0.061708029,0.961238037,1,0.564454441,0.839957846,0,0,0.115824807,0.130733423,0.724496596,0.448993192,0.986439855,0.947677892,0,0,0,0,0,0,0.281796556,73.63254192,-0.281796556,106.3674581,0.872567029,0,0,0,0,2,18,0% -2018-02-13 03:00:00,105.181131,265.0756335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835757047,4.626442571,-3.558568472,3.558568472,1,0.861295261,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.072645597,85.83404417,-0.072645597,94.16595583,0,0,0,0,0,2,19,0% -2018-02-13 04:00:00,117.0042161,274.3000337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042108809,4.787438727,-1.788403828,1.788403828,1,0.835988756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148940599,98.56553772,0.148940599,81.43446228,0,0.714295697,0,0,0,2,20,0% -2018-02-13 05:00:00,128.6646574,284.8232676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245621902,4.971103806,-1.025968706,1.025968706,1,0.705604672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367853518,111.5832989,0.367853518,68.41670108,0,0.91407633,0,0,0,2,21,0% -2018-02-13 06:00:00,139.670986,298.3161851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437718575,5.206599643,-0.564556686,0.564556686,1,0.626698569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569165751,124.6920715,0.569165751,55.30792847,0,0.962152128,0,0,0,2,22,0% -2018-02-13 07:00:00,149.0264963,317.7850055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601003033,5.54639466,-0.22693733,0.22693733,1,0.568962259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739148163,137.6589026,0.739148163,42.34109742,0,0.982354564,0,0,0,2,23,0% -2018-02-14 08:00:00,154.6169452,346.7484906,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698574774,6.051902837,0.055755853,-0.055755853,1,0.520618877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866205362,150.0206282,0.866205362,29.97937183,0,0.992276968,0,0,0,2,0,0% -2018-02-14 09:00:00,153.8127645,20.70078849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.684539173,0.361296917,0.320696893,-0.320696893,1,0.475311291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941665865,160.3332253,0.941665865,19.66677471,0,0.99690261,0,0,0,2,1,0% -2018-02-14 10:00:00,147.0862112,47.34932923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567138669,0.826401694,0.597346475,-0.597346475,1,0.428001426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960373158,163.8163291,0.960373158,16.18367086,0,0.997936904,0,0,0,2,2,0% -2018-02-14 11:00:00,137.2047825,65.07451974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394675205,1.135764629,0.922436132,-0.922436132,1,0.372407821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921037432,157.0782217,0.921037432,22.92177825,0,0.99571339,0,0,0,2,3,0% -2018-02-14 12:00:00,125.9753072,77.66399488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198683887,1.355492421,1.365323982,-1.365323982,1,0.296669538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82632402,145.7229571,0.82632402,34.27704289,0,0.989491049,0,0,0,2,4,0% -2018-02-14 13:00:00,114.2298085,87.76097946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993686261,1.531718046,2.116101628,-2.116101628,1,0.168278999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682672463,133.0528333,0.682672463,46.94716667,0,0.976758434,0,0,0,2,5,0% -2018-02-14 14:00:00,102.399161,96.82855045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787202511,1.689977015,4.058974152,-4.058974152,1,0,#DIV/0!,0,0,0.140872635,1,0.241557088,0,0.933115364,0.971877327,0.724496596,1,0,0,0.02259126,0.312029739,0.937932755,0.662429351,0.961238037,0.922476074,0,0,0,0,0,0,-0.499858424,119.9906339,0.499858424,60.00936613,0,0.949971677,0,0,0,2,6,0% -2018-02-14 15:00:00,90.17882918,105.7852444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573917485,1.846300815,259.9073142,-259.9073142,1,0,#DIV/0!,0,0,0.977736523,1,0.003847506,0,0.960897035,0.999658998,0.724496596,1,0,0,0.114073262,0.312029739,0.727865424,0.45236202,0.961238037,0.922476074,0,0,0,0,0,0,-0.280383252,106.2830797,0.280383252,73.71692032,0,0.871672658,0,0,0,2,7,0% -2018-02-14 16:00:00,79.60782004,115.3590065,110.7136699,397.566982,38.99858944,38.65724449,0,38.65724449,37.82263808,0.834606409,54.60746842,26.58770599,28.01976243,1.175951361,26.84381107,1.38941857,2.013394485,-3.831450989,3.831450989,0.814629602,0.814629602,0.352247283,0.73439173,23.6205625,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.35655838,0.851972758,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.532064309,22.70498312,36.88862269,23.55695588,0,26.58770599,-0.066876042,93.83457686,0.066876042,86.16542314,0,0,36.88862269,23.55695588,52.30617917,2,8,42% -2018-02-14 17:00:00,69.4678522,126.260905,294.0143223,652.1035499,65.30016696,164.4626748,98.91514468,65.54753014,63.33112599,2.216404154,73.25621739,0,73.25621739,1.969040966,71.28717642,1.212442745,2.203668509,-1.482979668,1.482979668,0.783758149,0.783758149,0.222098592,1.843572082,59.29561541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.87628722,1.426563477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335661698,56.99720095,62.21194892,58.42376442,98.91514468,0,0.151686254,81.2753399,-0.151686254,98.7246601,0.720372241,0,133.4676733,58.42376442,171.7048587,2,9,29% -2018-02-14 18:00:00,60.76221148,139.2215187,450.8961781,759.9566651,79.70653556,349.0453189,268.3431836,80.70213527,77.30308942,3.39904585,111.7284448,0,111.7284448,2.403446133,109.3249987,1.060500651,2.429873891,-0.633778946,0.633778946,0.638536273,0.638536273,0.176773589,2.387603717,76.79354287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.30666992,1.741288542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729810765,73.81687439,76.03648068,75.55816293,268.3431836,0,0.35310327,69.32275711,-0.35310327,110.6772429,0.908398366,0,319.7989902,75.55816293,369.2502967,2,10,15% -2018-02-14 19:00:00,54.28642744,154.7869519,561.0823128,810.2776756,88.09603576,513.6862433,424.0169526,89.66929072,85.43961524,4.229675476,138.6973233,0,138.6973233,2.656420518,136.0409027,0.947476898,2.701541949,-0.126381012,0.126381012,0.551766115,0.551766115,0.157010894,2.631466029,84.6369931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12780802,1.924567622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.90648818,81.35629709,84.0342962,83.28086472,424.0169526,0,0.523298328,58.446242,-0.523298328,121.553758,0.954452208,0,488.7382127,83.28086472,543.243873,2,11,11% -2018-02-14 20:00:00,50.94560738,172.7331596,614.9196296,830.1399896,91.8833913,633.837997,540.089705,93.74829195,89.11276804,4.635523911,151.8650067,0,151.8650067,2.770623261,149.0943835,0.889168588,3.014762362,0.271656898,-0.271656898,0.483697624,0.483697624,0.149423415,2.599811745,83.61888252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.6585822,2.007307121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.883554759,80.37765048,87.54213696,82.3849576,540.089705,0,0.650600756,49.41308836,-0.650600756,130.5869116,0.973147953,0,613.1293278,82.3849576,667.0486348,2,12,9% -2018-02-14 21:00:00,51.37406753,191.5295178,608.1424881,827.7783938,91.4156873,694.4722135,601.2286115,93.243602,88.65916704,4.584434955,150.2077073,0,150.2077073,2.75652026,147.4511871,0.896646628,3.342820701,0.654465072,-0.654465072,0.418233571,0.418233571,0.150319521,2.318277339,74.56376824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22256368,1.997089545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67958404,71.67353021,86.90214772,73.67061975,601.2286115,0,0.726315903,43.42157421,-0.726315903,136.5784258,0.981159431,0,676.8032701,73.67061975,725.0192173,2,13,7% -2018-02-14 22:00:00,55.48212779,209.0357268,541.2830902,802.2842828,86.65804857,686.0576351,597.9322259,88.12540925,84.04498867,4.080420573,133.8534119,0,133.8534119,2.613059899,131.240352,0.968345806,3.648361686,1.097970395,-1.097970395,0.342389694,0.342389694,0.160097461,1.82668773,58.7525566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.78723992,1.893153001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.323429042,56.47519216,82.11066896,58.36834516,597.9322259,0,0.745287224,41.81622479,-0.745287224,138.1837752,0.982911771,0,669.825292,58.36834516,708.0262065,2,14,6% -2018-02-14 23:00:00,62.52859114,224.0096726,419.7161939,742.6502214,77.12724368,602.4631706,524.4976,77.96557067,74.80157271,3.163997959,104.0907215,0,104.0907215,2.325670966,101.7650505,1.091329792,3.909706344,1.728815203,-1.728815203,0.234508878,0.234508878,0.183760467,1.18705573,38.17979276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.90211691,1.684940698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860017836,36.69986904,72.76213474,38.38480973,524.4976,0,0.706251186,45.06928566,-0.706251186,134.9307143,0.979203659,0,586.3521036,38.38480973,611.4741939,2,15,4% -2018-02-14 00:00:00,71.61176739,236.4636659,254.6041054,614.0235894,60.90781571,436.7552678,375.7647342,60.99053363,59.07122034,1.919313292,63.56830844,0,63.56830844,1.836595369,61.73171307,1.249861124,4.127069532,2.924611523,-2.924611523,0.030015663,0.030015663,0.239225584,0.502976647,16.17745794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78150387,1.330607093,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364404869,15.55038791,57.14590874,16.88099501,375.7647342,0,0.61197117,52.26783177,-0.61197117,127.7321682,0.968296805,0,420.9977001,16.88099501,432.0459738,2,16,3% -2018-02-14 01:00:00,81.97195677,247.0225784,71.86954426,300.5716215,29.89238256,170.6350919,141.102292,29.53279992,28.99101694,0.541782982,18.32696871,0,18.32696871,0.901365625,17.42560308,1.43068054,4.311357319,7.080616848,-7.080616848,0,0,0.41592559,0.225341406,7.247754235,0.405010917,1,0.140302713,0,0.946528807,0.985290771,0.724496596,1,28.10945091,0.653036327,0.058122615,0.312029739,0.848433903,0.572930499,0.961238037,0.922476074,0.154248983,6.966817052,28.2636999,7.619853379,83.95432338,0,0.469446488,62.00162716,-0.469446488,117.9983728,0.943491588,0,107.4738978,7.619853379,112.4609394,2,17,5% -2018-02-14 02:00:00,93.31217745,256.4206077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.628604729,4.475383874,-17.1708702,17.1708702,1,0,#DIV/0!,0,0,1,0.594574668,0,0.058172458,0.961238037,1,0.572811966,0.848315371,0,0,0.115824807,0.140168879,0.724496596,0.448993192,0.985306985,0.946545022,0,0,0,0,0,0,0.285015293,73.44023728,-0.285015293,106.5597627,0.874570817,0,0,0,0,2,18,0% -2018-02-14 03:00:00,104.9872916,265.3667073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832373911,4.631522767,-3.601823706,3.601823706,1,0.85389818,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075565262,85.66629842,-0.075565262,94.33370158,0,0,0,0,0,2,19,0% -2018-02-14 04:00:00,116.8105447,274.6155267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038728605,4.792945117,-1.798935436,1.798935436,1,0.837789767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146327192,98.41414148,0.146327192,81.58585852,0,0.70830001,0,0,0,2,20,0% -2018-02-14 05:00:00,128.4594786,285.1727108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242040857,4.977202741,-1.029130084,1.029130084,1,0.706145299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365532325,111.4403465,0.365532325,68.55965347,0,0.913213192,0,0,0,2,21,0% -2018-02-14 06:00:00,139.437903,298.7016537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433650509,5.213327339,-0.564914355,0.564914355,1,0.626759734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567102491,124.5484198,0.567102491,55.45158021,0,0.961832516,0,0,0,2,22,0% -2018-02-14 07:00:00,148.7446243,318.1597901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596083438,5.552935885,-0.225794644,0.225794644,1,0.568766848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737290699,137.5011332,0.737290699,42.49886675,0,0.982184144,0,0,0,2,23,0% -2018-02-15 08:00:00,154.2826704,346.9176052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.692740576,6.054854443,0.058009633,-0.058009633,1,0.520233458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864487317,149.824215,0.864487317,30.17578497,0,0.992162252,0,0,0,2,0,0% -2018-02-15 09:00:00,153.4819188,20.50307992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.678764825,0.357846251,0.324079186,-0.324079186,1,0.474732885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940011209,160.0534388,0.940011209,19.94656117,0,0.996809145,0,0,0,2,1,0% -2018-02-15 10:00:00,146.8047173,46.99182125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.562225674,0.820162002,0.602216765,-0.602216765,1,0.427168557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958701463,163.4761572,0.958701463,16.52384281,0,0.997846121,0,0,0,2,2,0% -2018-02-15 11:00:00,136.9643052,64.71618152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390478084,1.129510447,0.929713052,-0.929713052,1,0.371163394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919269422,156.819509,0.919269422,23.18049099,0,0.995608982,0,0,0,2,3,0% -2018-02-15 12:00:00,125.7571585,77.3377991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194876474,1.349799231,1.377348597,-1.377348597,1,0.294613207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824387038,145.5263956,0.824387038,34.47360445,0,0.989348877,0,0,0,2,4,0% -2018-02-15 13:00:00,114.0196964,87.46408189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990019115,1.526536206,2.140525667,-2.140525667,1,0.164102242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680505479,132.8831556,0.680505479,47.1168444,0,0.976525206,0,0,0,2,5,0% -2018-02-15 14:00:00,102.1866447,96.55295654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783493402,1.685166994,4.142000138,-4.142000138,1,0,#DIV/0!,0,0,0.151226091,1,0.236895954,0,0.933782133,0.972544096,0.724496596,1,0,0,0.024140878,0.312029739,0.933821863,0.658318459,0.961238037,0.922476074,0,0,0,0,0,0,-0.497416235,119.8292062,0.497416235,60.17079377,0,0.949480563,0,0,0,2,6,0% -2018-02-15 15:00:00,89.99346212,105.5246787,0.00134681,0.752284014,0.001260969,0.001233099,0,0.001233099,0.001222946,1.01528E-05,0.209688431,0.209323858,0.000364573,3.80229E-05,0.00032655,1.570682219,1.841753085,-7132.440047,7132.440047,0,0,0.936263261,9.50572E-06,0.000305737,1,0.999179823,0,0.000140204,0.961238037,1,0.724099103,0.999602507,0.001175542,2.75409E-05,0.115824807,0.311578003,0.724496596,0.448993192,0.961309511,0.922547548,6.88686E-06,0.000293898,0.001182429,0.000321439,0,0.000171683,-0.278251105,106.1558529,0.278251105,73.84414709,0,0.870306195,0.001182429,0.000470855,0.001490594,2,7,26% -2018-02-15 16:00:00,79.36789038,115.1111517,114.8600895,406.7330876,39.81694937,39.48218531,0,39.48218531,38.61632143,0.865863872,55.02209403,25.9723076,29.04978643,1.200627932,27.8491585,1.385231007,2.009068603,-3.759401323,3.759401323,0.826950821,0.826950821,0.346656089,0.767968759,24.70051516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.11947701,0.86985085,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556390752,23.7430747,37.67586776,24.61292555,0,25.9723076,-0.063855901,93.66116459,0.063855901,86.33883541,0,0,37.67586776,24.61292555,53.78453527,2,8,43% -2018-02-15 17:00:00,69.20136012,126.0301589,298.9603205,656.7114844,65.77207349,167.8447049,101.8022129,66.04249198,63.7888028,2.253689177,74.46966163,0,74.46966163,1.983270689,72.48639094,1.207791581,2.199641229,-1.471041913,1.471041913,0.781716673,0.781716673,0.220002686,1.869975136,60.14482837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.31622358,1.436872863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35479062,57.81349675,62.6710142,59.25036961,101.8022129,0,0.155018171,81.08214991,-0.155018171,98.91785009,0.727457166,0,136.7277635,59.25036961,175.5059454,2,9,28% -2018-02-15 18:00:00,60.46529605,139.0237524,456.1557071,762.9259487,80.0708705,353.2271255,272.1319927,81.09513272,77.65643832,3.438694401,113.0146646,0,113.0146646,2.414432176,110.6002324,1.055318499,2.426422218,-0.63183584,0.63183584,0.638203982,0.638203982,0.175534076,2.412971446,77.60945624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64632232,1.749247892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.748189599,74.60116136,76.39451192,76.35040925,272.1319927,0,0.356695159,69.10262741,-0.356695159,110.8973726,0.909824282,0,323.9868069,76.35040925,373.9566227,2,10,15% -2018-02-15 19:00:00,53.96035441,154.6536164,566.4977825,812.5813685,88.41967225,518.3310397,428.3070472,90.02399248,85.7534929,4.270499574,140.0201254,0,140.0201254,2.666179352,137.3539461,0.94178585,2.699214807,-0.12806021,0.12806021,0.552053275,0.552053275,0.156081233,2.656119855,85.42994487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.42951917,1.931637865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924349793,82.1185125,84.35386896,84.05015036,428.3070472,0,0.527094349,58.19065892,-0.527094349,121.8093411,0.955140322,0,493.4472001,84.05015036,548.4563425,2,11,11% -2018-02-15 20:00:00,50.60275917,172.7024194,620.378606,832.193043,92.19125706,638.7858757,544.6978492,94.08802649,89.41135051,4.676675981,153.1978821,0,153.1978821,2.77990655,150.4179755,0.883184758,3.014225845,0.267721584,-0.267721584,0.484370602,0.484370602,0.14860483,2.623594747,84.38382561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.94559104,2.014032832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.900785463,81.11294287,87.8463765,83.1269757,544.6978492,0,0.654533048,49.11574732,-0.654533048,130.8842527,0.973609663,0,618.169466,83.1269757,672.574409,2,12,9% -2018-02-15 21:00:00,51.03689301,191.6158331,613.5428675,829.842073,91.72169729,699.6212217,606.0401267,93.581095,88.9559497,4.625145297,151.5263192,0,151.5263192,2.76574759,148.7605716,0.890761823,3.344327186,0.648212312,-0.648212312,0.419302856,0.419302856,0.149495173,2.340852063,75.28984897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50784246,2.003774714,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.695939351,72.37146662,87.20378181,74.37524134,606.0401267,0,0.730307786,43.08779699,-0.730307786,136.912203,0.981535716,0,682.0538112,74.37524134,730.7309191,2,13,7% -2018-02-15 22:00:00,55.1708224,209.213546,546.5261831,804.6291152,86.97702096,691.3491161,602.874828,88.47428809,84.35434286,4.119945222,135.1342787,0,135.1342787,2.622678093,132.5116006,0.962912502,3.651465217,1.088212469,-1.088212469,0.344058397,0.344058397,0.159145204,1.847582668,59.42460962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.08460293,1.90012135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338567353,57.12119509,82.42317029,59.02131644,602.874828,0,0.749258033,41.47385278,-0.749258033,138.5261472,0.983267315,0,675.2102839,59.02131644,713.8385551,2,14,6% -2018-02-15 23:00:00,62.2512995,224.2394621,424.6978044,745.7343471,77.48803255,607.9148886,529.5618547,78.35303392,75.15148247,3.201551442,105.3094497,0,105.3094497,2.336550082,102.9728996,1.08649014,3.913716927,1.71188809,-1.71188809,0.237403585,0.237403585,0.182454517,1.205520968,38.77369828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23846348,1.69282258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.873395838,37.27075362,73.11185932,38.9635762,529.5618547,0,0.710121314,44.75521335,-0.710121314,135.2447867,0.979589495,0,591.8650894,38.9635762,617.3659708,2,15,4% -2018-02-15 00:00:00,71.36664602,236.7181391,259.1649185,618.986119,61.39205325,442.5829552,381.0884042,61.49455095,59.54085633,1.953694627,64.68873191,0,64.68873191,1.851196918,62.83753499,1.245582949,4.131510926,2.88639936,-2.88639936,0.036550328,0.036550328,0.236884118,0.517291946,16.63788715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23293585,1.341185865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374776254,15.99296998,57.6077121,17.33415585,381.0884042,0,0.615665509,51.99970669,-0.615665509,128.0002933,0.96878707,0,426.8012306,17.33415585,438.1460889,2,16,3% -2018-02-15 01:00:00,81.75407035,247.2900767,75.33136607,310.5863906,30.78634666,177.2955496,146.8696452,30.42590438,29.85802472,0.567879658,19.1932838,0,19.1932838,0.928321941,18.26496186,1.426877704,4.316026045,6.892615247,-6.892615247,0,0,0.408678991,0.232080485,7.464506179,0.393407408,1,0.144077527,0,0.94606979,0.984831753,0.724496596,1,28.94981854,0.672566086,0.05672024,0.312029739,0.851776956,0.576273552,0.961238037,0.922476074,0.158895908,7.175167266,29.10871444,7.847733352,89.09003883,0,0.47287856,61.77868706,-0.47287856,118.2213129,0.944264608,0,113.233285,7.847733352,118.3694695,2,17,5% -2018-02-15 02:00:00,93.10915521,256.6997196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625061322,4.480255297,-18.28427629,18.28427629,1,0,#DIV/0!,0,0,1,0.623628467,0,0.054637367,0.961238037,1,0.581267622,0.856771027,0,0,0.115824807,0.149717319,0.724496596,0.448993192,0.984139928,0.945377965,0,0,0,0,0,0,0.28821716,73.24874996,-0.28821716,106.75125,0.876519698,0,0,0,0,2,18,0% -2018-02-15 03:00:00,104.7934462,265.6619258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82899067,4.636675302,-3.646010419,3.646010419,1,0.846341807,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.07846868,85.49944916,-0.07846868,94.50055084,0,0,0,0,0,2,19,0% -2018-02-15 04:00:00,116.6165357,274.9349896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03534251,4.798520797,-1.80950668,1.80950668,1,0.839597557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143726083,98.26351642,0.143726083,81.73648358,0,0.702116032,0,0,0,2,20,0% -2018-02-15 05:00:00,128.2534329,285.5259226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238444682,4.983367449,-1.032240018,1.032240018,1,0.706677129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.363216432,111.29786,0.363216432,68.70213997,0,0.91234103,0,0,0,2,21,0% -2018-02-15 06:00:00,139.2032286,299.0903639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429554668,5.22011161,-0.565202437,0.565202437,1,0.626808999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565034966,124.4047194,0.565034966,55.59528055,0,0.961509901,0,0,0,2,22,0% -2018-02-15 07:00:00,148.4603897,318.5368052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591122608,5.559516039,-0.22457404,0.22457404,1,0.568558112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735417498,137.3425059,0.735417498,42.65749408,0,0.982011408,0,0,0,2,23,0% -2018-02-16 08:00:00,153.9453938,347.0906996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68685399,6.057875512,0.060351604,-0.060351604,1,0.519832957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862740945,149.6257432,0.862740945,30.37425678,0,0.992045176,0,0,0,2,0,0% -2018-02-16 09:00:00,153.1467158,20.31407644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.672914429,0.354547518,0.327567226,-0.327567226,1,0.474136395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938315388,159.7705454,0.938315388,20.22945459,0,0.996713013,0,0,0,2,1,0% -2018-02-16 10:00:00,146.5177334,46.64037918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.55721686,0.814028181,0.607225108,-0.607225108,1,0.42631208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956976403,163.1321203,0.956976403,16.86787973,0,0.997752108,0,0,0,2,2,0% -2018-02-16 11:00:00,136.7182449,64.36041403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386183522,1.123301133,0.937192977,-0.937192977,1,0.369884251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917437325,156.5542658,0.917437325,23.44573422,0,0.995500364,0,0,0,2,3,0% -2018-02-16 12:00:00,125.5337208,77.01235814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19097675,1.344119214,1.389730697,-1.389730697,1,0.292495743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822377468,145.3235005,0.822377468,34.67649951,0,0.989200669,0,0,0,2,4,0% -2018-02-16 13:00:00,113.8046344,87.16708338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986265574,1.521352604,2.165816337,-2.165816337,1,0.159777283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678260213,132.7078391,0.678260213,47.29216093,0,0.97628198,0,0,0,2,5,0% -2018-02-16 14:00:00,101.9694728,96.27683525,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779703036,1.680347769,4.229559151,-4.229559151,1,0,#DIV/0!,0,0,0.161877863,1,0.232167883,0,0.93445371,0.973215673,0.724496596,1,0,0,0.025720405,0.312029739,0.929651046,0.654147642,0.961238037,0.922476074,0,0,0,0,0,0,-0.494893273,119.6627129,0.494893273,60.33728712,0,0.948968115,0,0,0,2,6,0% -2018-02-16 15:00:00,89.80314844,105.263359,0.056440208,1.27341709,0.052065128,0.050920642,0,0.050920642,0.050495172,0.00042547,0.366757994,0.351503457,0.015254538,0.001569956,0.013684582,1.567360619,1.837192197,-237.6522626,237.6522626,0,0,0.922482913,0.000392489,0.012623793,1,0.975106472,0,0.004207804,0.961238037,1,0.712633781,0.988137185,0.04853788,0.001129571,0.115824807,0.298549518,0.724496596,0.448993192,0.963352972,0.924591009,0.000284357,0.012148988,0.048822237,0.013278558,0,0.008750161,-0.276031678,106.0235049,0.276031678,73.97649511,0,0.86886137,0.048822237,0.020881235,0.062488588,2,7,28% -2018-02-16 16:00:00,79.12366108,114.8624431,119.1053146,415.875272,40.63384553,40.30645134,0,40.30645134,39.40858517,0.897866172,55.37206681,25.26834397,30.10372285,1.225260366,28.87846248,1.380968402,2.004727819,-3.688962218,3.688962218,0.838996617,0.838996617,0.341158962,0.802624447,25.81516121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.88103104,0.887696964,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.581498679,24.81451488,38.46252972,25.70221185,0,25.26834397,-0.060759429,93.48340437,0.060759429,86.51659563,0,0,38.46252972,25.70221185,55.28411333,2,8,44% -2018-02-16 17:00:00,68.9307013,125.7986287,303.980344,661.3000668,66.2450571,171.3012793,104.7622228,66.53905645,64.24752421,2.291532235,75.70108664,0,75.70108664,1.99753289,73.70355375,1.203067693,2.195600266,-1.459051742,1.459051742,0.779666233,0.779666233,0.217925463,1.896661291,61.00314685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75716405,1.447205779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.374124649,58.63854512,63.1312887,60.08575089,104.7622228,0,0.158418588,80.88488268,-0.158418588,99.11511732,0.734380472,0,140.0666193,60.08575089,179.3915416,2,9,28% -2018-02-16 18:00:00,60.16426456,138.8256472,461.4745937,765.882287,80.43659821,357.4723242,275.9823958,81.48992841,78.011138,3.478790415,114.3153182,0,114.3153182,2.425460216,111.889858,1.050064509,2.42296463,-0.629792168,0.629792168,0.637854493,0.637854493,0.174303416,2.438554477,78.43229446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98727314,1.75723767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.766724418,75.39210476,76.75399756,77.14934243,275.9823958,0,0.360345709,68.87857128,-0.360345709,111.1214287,0.911244359,0,328.2413988,77.14934243,378.7341004,2,10,15% -2018-02-16 19:00:00,53.63026478,154.5211624,571.95848,814.8725376,88.74424546,523.026221,432.6462773,90.37994364,86.06827902,4.311664618,141.3539218,0,141.3539218,2.675966432,138.6779554,0.936024699,2.696903048,-0.129646654,0.129646654,0.552324573,0.552324573,0.155158545,2.680929424,86.2279059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.73210356,1.938728571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942324241,82.88554299,84.6744278,84.82427156,432.6462773,0,0.530937364,57.93118935,-0.530937364,122.0688107,0.955826933,0,498.2093921,84.82427156,553.7251814,2,11,11% -2018-02-16 20:00:00,50.25628902,172.6747418,625.8691981,834.2316359,92.49935849,643.7694308,549.3412029,94.42822793,89.71016155,4.718066384,154.5384301,0,154.5384301,2.789196945,151.7492331,0.877137713,3.013742779,0.26387813,-0.26387813,0.485027872,0.485027872,0.147793435,2.647483369,85.1521658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.23281957,2.020763692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918092688,81.85150068,88.15091226,83.87226438,549.3412029,0,0.658499605,48.8144557,-0.658499605,131.1855443,0.97406981,0,623.2475935,83.87226438,678.1403131,2,12,9% -2018-02-16 21:00:00,50.69697106,191.7074376,618.9625794,831.8872046,92.02710485,704.7904008,610.8722513,93.91814947,89.25214809,4.666001375,152.8496002,0,152.8496002,2.774956755,150.0746435,0.884829066,3.345925987,0.642066581,-0.642066581,0.420353838,0.420353838,0.148679594,2.363494843,76.0181186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.79255962,2.010446723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712343968,73.07150709,87.50490358,75.08195381,610.8722513,0,0.734321009,42.75012666,-0.734321009,137.2498733,0.981909888,0,687.3264073,75.08195381,736.4660444,2,13,7% -2018-02-16 22:00:00,54.85788276,209.3976373,551.7786172,806.9475594,87.29435223,696.6451739,607.8235282,88.82164571,84.66210542,4.159540289,136.4173608,0,136.4173608,2.632246801,133.785114,0.957450675,3.654678216,1.078609362,-1.078609362,0.345700625,0.345700625,0.158205392,1.868525038,60.09818824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.38043601,1.907053847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35374003,57.76866448,82.73417604,59.67571833,607.8235282,0,0.753237953,41.12835669,-0.753237953,138.8716433,0.983619914,0,680.6015027,59.67571833,719.6580668,2,14,6% -2018-02-16 23:00:00,61.97330582,224.4753077,429.6822767,748.7753155,77.84557623,613.3553672,534.6179958,78.73737139,75.49824489,3.2391265,106.528774,0,106.528774,2.347331343,104.1814427,1.081638235,3.917833209,1.695261062,-1.695261062,0.240246974,0.240246974,0.181170089,1.224038362,39.36928134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.5717847,1.700633567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886811627,37.84325071,73.45859633,39.54388427,534.6179958,0,0.713989878,44.43952299,-0.713989878,135.560477,0.979970996,0,597.3687262,39.54388427,623.2494075,2,15,4% -2018-02-16 00:00:00,71.12139927,236.9780142,263.7287192,623.8621481,61.86935943,448.3808841,386.3890157,61.99186845,60.00376997,1.988098485,65.80967077,0,65.80967077,1.86558946,63.94408131,1.241302586,4.136046602,2.849121647,-2.849121647,0.042925193,0.042925193,0.234594699,0.531716679,17.10183615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.67790605,1.351613213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385226924,16.43893541,58.06313297,17.79054862,386.3890157,0,0.619349991,51.73131712,-0.619349991,128.2686829,0.969270201,0,432.578492,17.79054862,444.2220503,2,16,3% -2018-02-16 01:00:00,81.53623303,247.5623532,78.82980868,320.4513078,31.66452193,183.9339014,152.6299292,31.30397216,30.70971976,0.594252396,20.06800194,0,20.06800194,0.954802166,19.11319977,1.423075726,4.320778168,6.714143393,-6.714143393,0,0,0.401682085,0.238700541,7.677429941,0.381965425,1,0.147852454,0,0.945607523,0.984369486,0.724496596,1,29.77503125,0.691750919,0.055324469,0.312029739,0.855119768,0.579616364,0.961238037,0.922476074,0.16347386,7.379837685,29.93850512,8.071588604,94.33057349,0,0.47629679,61.55618247,-0.47629679,118.4438175,0.945023437,0,119.0831079,8.071588604,124.3658012,2,17,4% -2018-02-16 02:00:00,92.90632877,256.9831535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621521333,4.48520215,-19.55111607,19.55111607,1,0,#DIV/0!,0,0,1,0.652003419,0,0.051103442,0.961238037,1,0.589819592,0.865322996,0,0,0.115824807,0.159377366,0.724496596,0.448993192,0.982938229,0.944176265,0,0,0,0,0,0,0.291400887,73.05815632,-0.291400887,106.9418437,0.878415073,0,0,0,0,2,18,0% -2018-02-16 03:00:00,104.599634,265.9611723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825608009,4.64189814,-3.691153409,3.691153409,1,0.838621901,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081354952,85.33354732,-0.081354952,94.66645268,0,0,0,0,0,2,19,0% -2018-02-16 04:00:00,116.4222153,275.2582869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031950979,4.804163401,-1.820116459,1.820116459,1,0.841411936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141137808,98.11369161,0.141137808,81.88630839,0,0.695736314,0,0,0,2,20,0% -2018-02-16 05:00:00,128.0465386,285.8827369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234833695,4.989595033,-1.035297669,1.035297669,1,0.707200018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36090604,111.1558495,0.36090604,68.84415053,0,0.911459786,0,0,0,2,21,0% -2018-02-16 06:00:00,138.966984,299.4821026,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425431422,5.226948741,-0.565420629,0.565420629,1,0.626846312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562963094,124.2609642,0.562963094,55.73903583,0,0.961184231,0,0,0,2,22,0% -2018-02-16 07:00:00,148.1738375,318.9157939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586121329,5.56613064,-0.223275494,0.223275494,1,0.568336048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733528267,137.1830025,0.733528267,42.81699752,0,0.981836301,0,0,0,2,23,0% -2018-02-17 08:00:00,153.6052069,347.2674896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680916608,6.060961079,0.062781698,-0.062781698,1,0.519417387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860965831,149.4251999,0.860965831,30.5748001,0,0.991925686,0,0,0,2,0,0% -2018-02-17 09:00:00,152.8073019,20.1335708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66699054,0.351397101,0.331161023,-0.331161023,1,0.473521819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936577959,159.484589,0.936577959,20.51541101,0,0.996614161,0,0,0,2,1,0% -2018-02-17 10:00:00,146.2254013,46.29507994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552114703,0.808001573,0.612371894,-0.612371894,1,0.425431928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955197602,162.7843589,0.955197602,17.21564106,0,0.99765481,0,0,0,2,2,0% -2018-02-17 11:00:00,136.4667139,64.00737243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381793477,1.117139394,0.944877487,-0.944877487,1,0.368570123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915540926,156.2826629,0.915540926,23.71733709,0,0.995387477,0,0,0,2,3,0% -2018-02-17 12:00:00,125.3050898,76.68781209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186986386,1.338454817,1.40247604,-1.40247604,1,0.290316161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820295336,145.1143689,0.820295336,34.88563108,0,0.989046344,0,0,0,2,4,0% -2018-02-17 13:00:00,113.5847133,86.87009712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982427227,1.516169216,2.192000689,-2.192000689,1,0.155299495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675936996,132.5269557,0.675936996,47.47304433,0,0.976028609,0,0,0,2,5,0% -2018-02-17 14:00:00,101.7477378,96.00027616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775833032,1.675520902,4.321964721,-4.321964721,1,0,#DIV/0!,0,0,0.172833063,1,0.227375101,0,0.935129563,0.973891526,0.724496596,1,0,0,0.027329541,0.312029739,0.925422213,0.649918809,0.961238037,0.922476074,0,0,0,0,0,0,-0.492290219,119.4912225,0.492290219,60.50877751,0,0.948433895,0,0,0,2,6,0% -2018-02-17 15:00:00,89.60706012,105.0013545,0.153322184,2.079611245,0.139060125,0.136022756,0,0.136022756,0.134866949,0.001155807,0.61058002,0.569212105,0.041367914,0.004193176,0.037174739,1.563938232,1.832619355,-119.4392436,119.4392436,0,0,0.906979808,0.001048294,0.033716737,1,0.94988842,0,0.008372262,0.961238037,1,0.701029192,0.976532597,0.129639241,0.002997429,0.115824807,0.285366471,0.724496596,0.448993192,0.965385155,0.926623192,0.000759485,0.032484145,0.130398726,0.035481575,0,0.028524118,-0.273710823,105.8852024,0.273710823,74.11479765,0,0.867325455,0.130398726,0.060221268,0.169812342,2,7,30% -2018-02-17 16:00:00,78.87523633,114.6129302,123.4472534,424.9827566,41.44850041,41.12927273,0,41.12927273,40.19867519,0.93059754,55.65496323,24.47392221,31.18104101,1.249825216,29.9312158,1.376632572,2.000372997,-3.620136562,3.620136562,0.850766497,0.850766497,0.33575879,0.838350158,26.9642229,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.64049562,0.905494114,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607381836,25.91903669,39.24787746,26.8245308,0,24.47392221,-0.057588036,93.30137789,0.057588036,86.69862211,0,0,39.24787746,26.8245308,56.80399638,2,8,45% -2018-02-17 17:00:00,68.65598616,125.5663435,309.0718819,665.8658665,66.71878939,174.8310925,107.7942064,67.03688613,64.70697173,2.329914398,76.94987375,0,76.94987375,2.011817666,74.93805608,1.19827301,2.191546124,-1.447022898,1.447022898,0.777609179,0.777609179,0.215868195,1.923615268,61.87007941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19880247,1.457555051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393652714,59.47187367,63.59245519,60.92942872,107.7942064,0,0.161885767,80.68363015,-0.161885767,99.31636985,0.741140234,0,143.4830786,60.92942872,183.3601711,2,9,28% -2018-02-17 18:00:00,59.85923168,138.6272128,466.8500639,768.8238266,80.80347636,361.7788098,279.8925434,81.88626639,78.36695341,3.51931298,115.6297259,0,115.6297259,2.436522945,113.193203,1.04474068,2.419501296,-0.627652827,0.627652827,0.637488644,0.637488644,0.173082286,2.46433887,79.26160916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32929645,1.76525258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785405122,76.18927359,77.11470157,77.95452617,279.8925434,0,0.3640529,68.65069184,-0.3640529,111.3493082,0.912657322,0,332.5606809,77.95452617,383.5803591,2,10,15% -2018-02-17 19:00:00,53.29627433,154.389594,577.4615132,817.1499593,89.06954705,527.7692681,437.0323477,90.73692039,86.38377158,4.353148807,142.698005,0,142.698005,2.685775475,140.0122295,0.930195466,2.694606746,-0.131142201,0.131142201,0.552580327,0.552580327,0.154243261,2.705881587,87.03045324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03536701,1.945835189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960401999,83.65698202,84.99576901,85.60281721,437.0323477,0,0.534825148,57.66794586,-0.534825148,122.3320541,0.956511502,0,503.0222361,85.60281721,559.0475679,2,11,11% -2018-02-17 20:00:00,49.9063148,172.6501501,631.3885159,836.2548548,92.80750729,648.7859288,554.0172369,94.76869185,90.00901852,4.759673333,155.8859444,0,155.8859444,2.798488768,153.0874556,0.871029511,3.013313573,0.260125911,-0.260125911,0.485669539,0.485669539,0.14698954,2.671465358,85.92350901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.52009226,2.027495586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.935467558,82.59294512,88.45555982,84.6204407,554.0172369,0,0.662498081,48.50932989,-0.662498081,131.4906701,0.974528083,0,628.3609158,84.6204407,683.7433019,2,12,9% -2018-02-17 21:00:00,50.35442613,191.8043687,624.3988437,833.9130546,92.33173927,709.9769537,615.7223748,94.2545789,89.54759666,4.706982231,154.1768713,0,154.1768713,2.784142607,151.3927287,0.878850529,3.347617754,0.636027732,-0.636027732,0.421386542,0.421386542,0.147873015,2.386194559,76.74821952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07655602,2.017101841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728789835,73.77330786,87.80534586,75.7904097,615.7223748,0,0.738353203,42.40867798,-0.738353203,137.591322,0.982281732,0,692.6181866,75.7904097,742.221494,2,13,7% -2018-02-17 22:00:00,54.54343494,209.5880097,557.0378144,809.2390221,87.60989291,701.9430838,612.7757661,89.16731773,84.96813139,4.199186339,137.7020288,0,137.7020288,2.641761517,135.0602673,0.951962525,3.658000841,1.069160661,-1.069160661,0.347316448,0.347316448,0.157278179,1.889505058,60.77297778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67459981,1.913947226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368939982,58.41729786,83.04353979,60.33124508,612.7757661,0,0.757224688,40.77986037,-0.757224688,139.2201396,0.983969401,0,685.9961431,60.33124508,725.4817364,2,14,6% -2018-02-17 23:00:00,61.69472484,224.717173,434.6672974,751.7727508,78.19975977,618.7820876,539.6636334,79.11845418,75.84174849,3.276705692,107.7481299,0,107.7481299,2.358011283,105.3901187,1.07677608,3.922054555,1.678930989,-1.678930989,0.243039581,0.243039581,0.179907162,1.24259948,39.96627069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90197343,1.708371148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900259093,38.41709958,73.80223252,40.12547073,539.6636334,0,0.717854741,44.12235325,-0.717854741,135.8776467,0.980348026,0,602.8604101,40.12547073,629.1217282,2,15,4% -2018-02-17 00:00:00,70.87612263,237.243221,268.2934045,628.6519065,62.33970532,454.1468615,391.6644193,62.48244221,60.4599332,2.022509011,66.93061425,0,66.93061425,1.879772124,65.05084212,1.237021701,4.140675334,2.812753627,-2.812753627,0.04914449,0.04914449,0.232356459,0.546243095,17.56905563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.1163875,1.361888505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.395751263,16.88804454,58.51213876,18.24993305,391.6644193,0,0.623022718,51.4627931,-0.623022718,128.5372069,0.969746105,0,438.3271837,18.24993305,450.2713999,2,16,3% -2018-02-17 01:00:00,81.3185252,247.8393175,82.36149185,330.1604786,32.52667076,190.5445593,158.3778119,32.16674734,31.54587163,0.620875715,20.95029638,0,20.95029638,0.980799134,19.96949725,1.419276008,4.325612106,6.544534337,-6.544534337,0,0,0.394925711,0.245199784,7.886467907,0.370684309,1,0.151626479,0,0.945142139,0.983904102,0.724496596,1,30.58484717,0.710585634,0.053935595,0.312029739,0.858461409,0.582958005,0.961238037,0.922476074,0.167982153,7.580772929,30.75282932,8.291358563,99.66964218,0,0.479699486,61.33422317,-0.479699486,118.6657768,0.945768077,0,125.0171951,8.291358563,130.4437235,2,17,4% -2018-02-17 02:00:00,92.70375269,257.2708051,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617985713,4.490222619,-21.00520288,21.00520288,1,0,#DIV/0!,0,0,1,0.679718659,0,0.047571335,0.961238037,1,0.598466065,0.873969469,0,0,0.115824807,0.169147582,0.724496596,0.448993192,0.981701452,0.942939489,0,0,0,0,0,0,0.294565237,72.86853106,-0.294565237,107.1314689,0.880258314,0,0,0,0,2,18,0% -2018-02-17 03:00:00,104.4058931,266.2643298,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822226594,4.647189236,-3.737278753,3.737278753,1,0.830734003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084223209,85.16864218,-0.084223209,94.83135782,0,0,0,0,0,2,19,0% -2018-02-17 04:00:00,116.2276087,275.5852832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028554454,4.809870561,-1.830763752,1.830763752,1,0.84323273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.138562877,97.96469465,0.138562877,82.03530535,0,0.689152988,0,0,0,2,20,0% -2018-02-17 05:00:00,127.8388139,286.2429884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231208214,4.995882608,-1.038302252,1.038302252,1,0.707713832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358601333,111.0143239,0.358601333,68.98567611,0,0.910569397,0,0,0,2,21,0% -2018-02-17 06:00:00,138.729191,299.8766598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421281152,5.233835064,-0.565568668,0.565568668,1,0.626871628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560886787,124.1171472,0.560886787,55.88285279,0,0.96085545,0,0,0,2,22,0% -2018-02-17 07:00:00,147.8850137,319.2965066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581080404,5.572775331,-0.221899007,0.221899007,1,0.568100655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73162272,137.0226055,0.73162272,42.97739455,0,0.981658765,0,0,0,2,23,0% -2018-02-18 08:00:00,153.2622012,347.4477004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674930029,6.064106351,0.065299825,-0.065299825,1,0.518986762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859161576,149.2225746,0.859161576,30.7774254,0,0.991803729,0,0,0,2,0,0% -2018-02-18 09:00:00,152.4638229,19.96135058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660995699,0.348391291,0.334860577,-0.334860577,1,0.472889158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934798506,159.1956166,0.934798506,20.80438345,0,0.996512538,0,0,0,2,1,0% -2018-02-18 10:00:00,145.9278651,45.95598483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546921716,0.802083246,0.617657522,-0.617657522,1,0.424528032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953364723,162.4330116,0.953364723,17.56698839,0,0.997554174,0,0,0,2,2,0% -2018-02-18 11:00:00,136.2098278,63.65720162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377309968,1.111027761,0.952768219,-0.952768219,1,0.367220728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913580058,156.0048746,0.913580058,23.99512544,0,0.995270259,0,0,0,2,3,0% -2018-02-18 12:00:00,125.0713648,76.36429514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182907115,1.332808381,1.41559063,-1.41559063,1,0.288073434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818140721,144.8991036,0.818140721,35.1008964,0,0.988885819,0,0,0,2,4,0% -2018-02-18 13:00:00,113.3600271,86.57323255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978505713,1.510987952,2.219107301,-2.219107301,1,0.150663991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673536219,132.3405821,0.673536219,47.65941789,0,0.975764942,0,0,0,2,5,0% -2018-02-18 14:00:00,101.5215351,95.72336615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771885049,1.67068791,4.419562111,-4.419562111,1,0,#DIV/0!,0,0,0.184097035,1,0.222519835,0,0.935809165,0.974571128,0.724496596,1,0,0,0.028967988,0.312029739,0.921137276,0.645633872,0.961238037,0.922476074,0,0,0,0,0,0,-0.489607813,119.3148075,0.489607813,60.6851925,0,0.947877447,0,0,0,2,6,0% -2018-02-18 15:00:00,89.40473756,104.7387322,0.309134119,3.277611903,0.275082673,0.269118299,0,0.269118299,0.266787915,0.002330384,0.972399791,0.889151887,0.083247904,0.008294758,0.074953146,1.560407037,1.828035731,-79.09390202,79.09390202,0,0,0.889848954,0.002073689,0.066696979,1,0.923406907,0,0.012642526,0.961238037,1,0.689270498,0.964773902,0.256446692,0.005892365,0.115824807,0.272013372,0.724496596,0.448993192,0.967406768,0.928644805,0.001502381,0.064325092,0.257949073,0.070217457,0,0.068102893,-0.271280406,105.7404727,0.271280406,74.25952734,0,0.865688863,0.257949073,0.129173373,0.342490462,2,7,33% -2018-02-18 16:00:00,78.62272225,114.3626607,127.8836967,434.0453701,42.26018688,41.94992765,0,41.94992765,40.98588632,0.964041324,55.86859024,23.58740682,32.28118342,1.274300558,31.00688286,1.37222537,1.99600497,-3.552921672,3.552921672,0.862260921,0.862260921,0.330457971,0.875135406,28.14736292,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.39719291,0.923226416,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.634032623,27.05631588,40.03122553,27.97954229,0,23.58740682,-0.054343183,93.11516957,0.054343183,86.88483043,0,0,40.03122553,27.97954229,58.34327637,2,8,46% -2018-02-18 17:00:00,68.37732667,125.3333304,314.2323778,670.4056419,67.19295435,178.4327669,110.8971116,67.53565525,65.16683886,2.368816396,78.21539355,0,78.21539355,2.026115489,76.18927806,1.193409484,2.187479277,-1.434968435,1.434968435,0.775547744,0.775547744,0.213832053,1.950821761,62.74513375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.64084425,1.467913775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.413363725,60.31300918,64.05420798,61.78092296,110.8971116,0,0.165417927,80.47848644,-0.165417927,99.52151356,0.747735301,0,146.9758931,61.78092296,187.4102716,2,9,28% -2018-02-18 18:00:00,59.55031335,138.4284569,472.2793202,771.7488098,81.17126842,366.1444385,283.8605423,82.28389619,78.72365518,3.560241007,116.9572023,0,116.9572023,2.447613233,114.509589,1.039349039,2.416032351,-0.62542266,0.62542266,0.637107264,0.637107264,0.171871316,2.490310672,80.09695158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67217176,1.773287455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804221604,76.9922365,77.47639337,78.76552395,283.8605423,0,0.367814681,68.41909401,-0.367814681,111.580906,0.914061979,0,336.9425223,78.76552395,388.4929824,2,10,15% -2018-02-18 19:00:00,52.95849973,154.2589132,583.0039825,819.4124752,89.39537295,532.5576436,441.4629407,91.09470291,86.69977263,4.394930282,144.0516657,0,144.0516657,2.695600328,141.3560653,0.924300187,2.692325936,-0.132548783,0.132548783,0.552820866,0.552820866,0.153335784,2.730963221,87.83716482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.33911923,1.952953262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978573557,84.43242387,85.31769279,86.38537713,441.4629407,0,0.538755455,57.40104262,-0.538755455,122.5989574,0.957193515,0,507.8831567,86.38537713,564.4206584,2,11,11% -2018-02-18 20:00:00,49.55295497,172.6286666,636.9336755,838.2618405,93.11551914,653.8326349,558.7234171,95.10921776,90.30774268,4.801475088,157.2397202,0,157.2397202,2.807776462,154.4319438,0.864862218,3.012938615,0.256464186,-0.256464186,0.486295731,0.486295731,0.146193431,2.695528526,86.69746321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80723728,2.034224488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.952901241,83.33689933,88.76013852,85.37112382,558.7234171,0,0.666526126,48.20048761,-0.666526126,131.7995124,0.974984186,0,633.5066345,85.37112382,689.3803276,2,12,9% -2018-02-18 21:00:00,50.00938307,191.9066626,629.8488975,835.9189408,92.63543419,715.1780987,620.5878976,94.5902011,89.84213406,4.748067039,155.5074575,0,155.5074575,2.793300129,152.7141573,0.872828391,3.349403119,0.630095463,-0.630095463,0.422401019,0.422401019,0.147075647,2.408940184,77.47979699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.35967657,2.023736435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745268963,74.47652795,88.10494553,76.50026439,620.5878976,0,0.742402005,42.0635665,-0.742402005,137.9364335,0.982651044,0,697.926291,76.50026439,747.994184,2,13,7% -2018-02-18 22:00:00,54.22760486,209.78467,562.3012231,811.5029661,87.92349848,707.2401522,617.7290075,89.51114474,85.2722806,4.238864137,138.9876595,0,138.9876595,2.651217882,136.3364416,0.94645025,3.661433212,1.059865751,-1.059865751,0.348905972,0.348905972,0.156363698,1.910513043,61.4486668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.9669596,1.920798331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384160196,59.06679584,83.3511198,60.98759417,617.7290075,0,0.761215958,40.42848839,-0.761215958,139.5715116,0.984315618,0,691.3914293,60.98759417,731.30659,2,14,6% -2018-02-18 23:00:00,61.41567051,224.9650188,439.6505851,754.7263463,78.55047415,624.1925779,544.6964185,79.49615936,76.18188754,3.31427182,108.9669611,0,108.9669611,2.368586616,106.5983745,1.071905663,3.92638028,1.662894488,-1.662894488,0.245781984,0.245781984,0.178665688,1.261195978,40.56439798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.22892802,1.71603294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913732193,38.99204228,74.14266021,40.70807522,544.6964185,0,0.721713799,43.80384329,-0.721713799,136.1961567,0.98072046,0,608.3375824,40.70807522,634.9802034,2,15,4% -2018-02-18 00:00:00,70.63091018,237.5136866,272.856909,633.3557289,62.80306934,459.8787626,396.9125268,62.96623572,60.90932508,2.056910635,68.05106086,0,68.05106086,1.893744259,66.1573166,1.232741936,4.145395849,2.777270877,-2.777270877,0.055212398,0.055212398,0.230168514,0.560863493,18.03929789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54836007,1.372011269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.406343691,17.34005929,58.95470376,18.71207056,396.9125268,0,0.626681829,51.194264,-0.626681829,128.805736,0.970214696,0,444.0450705,18.71207056,456.2917464,2,16,3% -2018-02-18 01:00:00,81.10102513,248.1208769,85.92314318,339.7090562,33.37262876,197.1223971,164.1083512,33.01404582,32.36632087,0.647724947,21.83936874,0,21.83936874,1.006307889,20.83306085,1.415479915,4.330526246,6.383179525,-6.383179525,0,0,0.38840093,0.251576972,8.091580217,0.359563191,1,0.155398642,0,0.944673766,0.983435729,0.724496596,1,31.37909479,0.72906664,0.052553884,0.312029739,0.861800999,0.586297595,0.961238037,0.922476074,0.172420411,7.777934683,31.55151521,8.507001323,105.1010288,0,0.483085005,61.11291682,-0.483085005,118.8870832,0.946498547,0,131.0294863,8.507001323,136.5971485,2,17,4% -2018-02-18 02:00:00,92.5014799,257.5625693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614455387,4.495314863,-22.69109313,22.69109313,1,0,#DIV/0!,0,0,1,0.706792946,0,0.044041658,0.961238037,1,0.607205256,0.88270866,0,0,0.115824807,0.179026487,0.724496596,0.448993192,0.980429184,0.941667221,0,0,0,0,0,0,0.297709017,72.67994677,-0.297709017,107.3200532,0.882050771,0,0,0,0,2,18,0% -2018-02-18 03:00:00,104.2122603,266.5712802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818847063,4.65254653,-3.784414003,3.784414003,1,0.822673401,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087072618,85.00478087,-0.087072618,94.99521913,0,0,0,0,0,2,19,0% -2018-02-18 04:00:00,116.0327404,275.9158423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02515336,4.815639906,-1.841447671,1.841447671,1,0.845059788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.136001768,97.81655126,0.136001768,82.18344874,0,0.682357721,0,0,0,2,20,0% -2018-02-18 05:00:00,127.6302764,286.6065122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227568549,5.002227295,-1.041253066,1.041253066,1,0.708218451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356302469,110.8732909,0.356302469,69.12670915,0,0.909669791,0,0,0,2,21,0% -2018-02-18 06:00:00,138.489872,300.2738275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417104246,5.240766948,-0.565646349,0.565646349,1,0.626884912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558805944,123.973261,0.558805944,56.02673901,0,0.9605235,0,0,0,2,22,0% -2018-02-18 07:00:00,147.5939655,319.6786999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576000655,5.579445863,-0.220444625,0.220444625,1,0.567851941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729700569,136.8612976,0.729700569,43.13870242,0,0.981478743,0,0,0,2,23,0% -2018-02-19 08:00:00,152.9164682,347.6310655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66889585,6.067306675,0.067905866,-0.067905866,1,0.518541103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857327795,149.0178589,0.857327795,30.98214112,0,0.99167925,0,0,0,2,0,0% -2018-02-19 09:00:00,152.1164238,19.7971981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654932442,0.345526289,0.338665869,-0.338665869,1,0.472238415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932976641,158.9036777,0.932976641,21.09632226,0,0.99640809,0,0,0,2,1,0% -2018-02-19 10:00:00,145.6252709,45.62313934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541640452,0.796273997,0.623082388,-0.623082388,1,0.423600326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951477471,162.0782148,0.951477471,17.92178519,0,0.997450148,0,0,0,2,2,0% -2018-02-19 11:00:00,135.9477059,63.3100358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372735079,1.104968574,0.960866853,-0.960866853,1,0.36583578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911554605,155.7210782,0.911554605,24.27892177,0,0.995148651,0,0,0,2,3,0% -2018-02-19 12:00:00,124.8326486,76.04193513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178740732,1.327182138,1.429080696,-1.429080696,1,0.285766497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815913765,144.6778133,0.815913765,35.32218665,0,0.988719014,0,0,0,2,4,0% -2018-02-19 13:00:00,113.1306731,86.276595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97450273,1.50581065,2.247166311,-2.247166311,1,0.145865618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671058336,132.1488003,0.671058336,47.85119967,0,0.975490829,0,0,0,2,5,0% -2018-02-19 14:00:00,101.2909627,95.4461891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767860801,1.665850258,4.522732093,-4.522732093,1,0,#DIV/0!,0,0,0.195675339,1,0.217604326,0,0.936491993,0.975253956,0.724496596,1,0,0,0.030635444,0.312029739,0.916798164,0.64129476,0.961238037,0.922476074,0,0,0,0,0,0,-0.486846861,119.1335447,0.486846861,60.8664553,0,0.9472983,0,0,0,2,6,0% -2018-02-19 15:00:00,89.19599459,104.4755567,0.543708202,4.98874576,0.473705716,0.463520443,0,0.463520443,0.459421741,0.004098702,1.486771766,1.340659443,0.146112323,0.014283975,0.131828348,1.556763785,1.823442452,-58.74300328,58.74300328,0,0,0.8712499,0.003570994,0.114855435,1,0.895570071,0,0.01702166,0.961238037,1,0.677360234,0.952863638,0.441613653,0.010086358,0.115824807,0.258494395,0.724496596,0.448993192,0.969415415,0.930653452,0.002587173,0.110877705,0.444200825,0.120964063,0,0.140004971,-0.268736774,105.5891114,0.268736774,74.41088862,0,0.863944332,0.444200825,0.241920564,0.602532996,2,7,36% -2018-02-19 16:00:00,78.36622737,114.11168,132.4123165,443.0535409,43.06822596,42.76774002,0,42.76774002,41.76956004,0.998179973,56.01098835,22.60742328,33.40356507,1.298665918,32.10489915,1.36774869,1.991624532,-3.487310164,3.487310164,0.873481149,0.873481149,0.325258459,0.91296782,29.36418339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1504899,0.940879036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.661442078,28.22597,40.81193197,29.16684903,0,22.60742328,-0.051026391,92.92486704,0.051026391,87.07513296,0,0,40.81193197,29.16684903,59.90105133,2,8,47% -2018-02-19 17:00:00,68.09483682,125.0996141,319.4592225,674.9163306,67.66724715,182.1048433,114.0697947,68.03504854,65.62682999,2.408218559,79.49700423,0,79.49700423,2.040417167,77.45658706,1.188479106,2.183400158,-1.422900783,1.422900783,0.773484054,0.773484054,0.211818105,1.978265411,63.62781587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.08300522,1.478275292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433246556,61.16147681,64.51625178,62.63975211,114.0697947,0,0.169013238,80.26954838,-0.169013238,99.73045162,0.754165186,0,150.5437197,62.63975211,191.5401847,2,9,27% -2018-02-19 18:00:00,59.23762716,138.2293845,477.7595361,774.6555698,81.53974308,370.5670198,287.8844476,82.68257217,79.08101898,3.601553189,118.2970549,0,118.2970549,2.458724104,115.8383308,1.033891635,2.412557882,-0.623106478,0.623106478,0.636711173,0.636711173,0.170671095,2.516455905,80.93787217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01568344,1.781337243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823163737,77.80056135,77.83884717,79.58189859,287.8844476,0,0.371628965,68.1838851,-0.371628965,111.8161149,0.915457204,0,341.3847387,79.58189859,393.4694997,2,10,15% -2018-02-19 19:00:00,52.61705886,154.1291193,588.5829776,821.6589892,89.7215229,537.3887852,445.9357102,91.45307505,87.01608794,4.436987104,145.4141922,0,145.4141922,2.705434952,142.7087573,0.91834092,2.690060605,-0.133868412,0.133868412,0.553046536,0.553046536,0.15243649,2.75616123,88.64761939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.64317355,1.960078413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996829429,85.21146364,85.64000298,87.17154205,445.9357102,0,0.542726017,57.13059588,-0.542726017,122.8694041,0.957872484,0,512.7895492,87.17154205,569.8415801,2,11,11% -2018-02-19 20:00:00,49.19632868,172.6103115,642.5017986,840.2517854,93.42321355,658.9068096,563.4572007,95.44960891,90.60615896,4.843449952,158.5990543,0,158.5990543,2.817054583,155.7819997,0.858637915,3.012618258,0.252892086,-0.252892086,0.486906596,0.486906596,0.145405373,2.71966076,87.4736388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.09408637,2.040946456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970384962,84.08298884,89.06447133,86.12393529,563.4572007,0,0.670581379,47.88804824,-0.670581379,132.1119518,0.975437834,0,638.6819428,86.12393529,695.048336,2,12,9% -2018-02-19 21:00:00,49.661967,192.0143536,635.3099985,837.9042312,92.93802753,720.3910692,625.466231,94.92483822,90.13560309,4.789235124,156.8406889,0,156.8406889,2.802424435,154.0382645,0.866764837,3.351282682,0.624269308,-0.624269308,0.42339735,0.42339735,0.146287683,2.431720801,78.21249994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.64177017,2.030346963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761773442,75.1808299,88.40354361,77.21117687,625.466231,0,0.746465059,41.71490884,-0.746465059,138.2850912,0.983017628,0,703.2478746,77.21117687,753.7810456,2,13,7% -2018-02-19 22:00:00,53.91051806,209.9876223,567.5663237,813.7389094,88.23502956,712.5337195,622.680747,89.85297256,85.57441787,4.278554689,140.2736379,0,140.2736379,2.660611694,137.6130262,0.940916042,3.664975397,1.050723805,-1.050723805,0.350469336,0.350469336,0.155462059,1.931539443,62.1249481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.25738544,1.927604115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.399393751,59.71686315,83.65677919,61.64446726,622.680747,0,0.765209504,40.07436601,-0.765209504,139.925634,0.984658417,0,696.7846181,61.64446726,737.129689,2,14,6% -2018-02-19 23:00:00,61.13625547,225.2188022,444.6298989,757.6358644,78.89761657,629.5844189,549.7140486,79.87037032,76.51856233,3.35180799,110.184721,0,110.184721,2.379054241,107.8056667,1.06702895,3.930809636,1.647147917,-1.647147917,0.248474806,0.248474806,0.177445594,1.279819641,41.16339901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55255263,1.723616699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927224973,39.56782485,74.47977761,41.29144155,549.7140486,0,0.725564977,43.48413243,-0.725564977,136.5158676,0.981088184,0,613.7977354,41.29144155,640.8221581,2,15,4% -2018-02-19 00:00:00,70.38585406,237.7893348,277.4172139,637.9740542,63.25943765,465.5745401,402.1313197,63.44322034,61.3519322,2.09128814,69.17052078,0,69.17052078,1.907505448,67.26301533,1.2284649,4.150206818,2.742649265,-2.742649265,0.061133042,0.061133042,0.228029965,0.575570265,18.51231824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.97381087,1.381981203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.416998698,17.79474444,59.39080956,19.17672565,402.1313197,0,0.630325508,50.925858,-0.630325508,129.074142,0.970675906,0,449.7299926,19.17672565,462.280776,2,16,3% -2018-02-19 01:00:00,80.88380852,248.4069365,89.51160676,349.0931667,34.2022982,203.6627341,169.8169851,33.84574901,33.17097271,0.674776302,22.73445087,0,22.73445087,1.031325484,21.70312539,1.41168877,4.335518927,6.229522315,-6.229522315,0,0,0.382099031,0.257831371,8.292743178,0.348600983,1,0.159168044,0,0.944202528,0.982964491,0.724496596,1,32.15766692,0.747191802,0.051179574,0.312029739,0.865137715,0.589634311,0.961238037,0.922476074,0.176788543,7.971300172,32.33445546,8.718491975,110.6186171,0,0.486451759,60.89236842,-0.486451759,119.1076316,0.947214885,0,137.1140562,8.718491975,142.8201348,2,17,4% -2018-02-19 02:00:00,92.2995611,257.8583386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610931239,4.500477012,-24.66872668,24.66872668,1,0,#DIV/0!,0,0,1,0.733244728,0,0.040514973,0.961238037,1,0.616035439,0.891538843,0,0,0.115824807,0.189012588,0.724496596,0.448993192,0.979121027,0.940359064,0,0,0,0,0,0,0.300831082,72.49247333,-0.300831082,107.5075267,0.88379377,0,0,0,0,2,18,0% -2018-02-19 03:00:00,104.0187702,266.881904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815470024,4.657967938,-3.832588456,3.832588456,1,0.814435084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089902399,84.84200779,-0.089902399,95.15799221,0.493841316,0,0,0,0,2,19,0% -2018-02-19 04:00:00,115.837633,276.2498273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021748093,4.821469045,-1.852167513,1.852167513,1,0.846892989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.133454916,97.66928463,0.133454916,82.33071537,0,0.675341639,0,0,0,2,20,0% -2018-02-19 05:00:00,127.4209431,286.973143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223914993,5.00862621,-1.044149517,1.044149517,1,0.708713773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.354009576,110.7327558,0.354009576,69.2672442,0,0.908760883,0,0,0,2,21,0% -2018-02-19 06:00:00,138.249049,300.6733989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412901093,5.247740784,-0.565653545,0.565653545,1,0.626886143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556720442,123.8292965,0.556720442,56.17070349,0,0.960188317,0,0,0,2,22,0% -2018-02-19 07:00:00,147.3007405,320.0621351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570882912,5.586138068,-0.218912452,0.218912452,1,0.567589924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727761521,136.6990613,0.727761521,43.30093873,0,0.981296175,0,0,0,2,23,0% -2018-02-20 08:00:00,152.5680995,347.8173247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662815671,6.070557511,0.070599657,-0.070599657,1,0.518080437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855464113,148.8110458,0.855464113,31.18895418,0,0.991552195,0,0,0,2,0,0% -2018-02-20 09:00:00,151.7652499,19.64088971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648803301,0.342798194,0.342576844,-0.342576844,1,0.471569599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931112002,158.6088245,0.931112002,21.39117554,0,0.996300767,0,0,0,2,1,0% -2018-02-20 10:00:00,145.3177677,45.29657288,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536273509,0.790574337,0.628646865,-0.628646865,1,0.422648744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949535591,161.7201036,0.949535591,18.27989641,0,0.997342679,0,0,0,2,2,0% -2018-02-20 11:00:00,135.680472,62.96599784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368070967,1.098963979,0.969175083,-0.969175083,1,0.364414989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909464506,155.4314548,0.909464506,24.56854518,0,0.995022593,0,0,0,2,3,0% -2018-02-20 12:00:00,124.5890485,75.72085293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174489107,1.321578196,1.442952662,-1.442952662,1,0.283394251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813614675,144.4506135,0.813614675,35.54938649,0,0.988545848,0,0,0,2,4,0% -2018-02-20 13:00:00,112.8967526,85.98028511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970420048,1.500639067,2.276209433,-2.276209433,1,0.140898951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668503878,131.9516982,0.668503878,48.04830184,0,0.975206118,0,0,0,2,5,0% -2018-02-20 14:00:00,101.0561224,95.16882538,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763762064,1.661009348,4.631895234,-4.631895234,1,0,#DIV/0!,0,0,0.207573723,1,0.212630836,0,0.937177527,0.975939491,0.724496596,1,0,0,0.032331599,0.312029739,0.91240683,0.636903426,0.961238037,0.922476074,0,0,0,0,0,0,-0.484008248,118.9475159,0.484008248,61.05248408,0,0.946695975,0,0,0,2,6,0% -2018-02-20 15:00:00,88.98083659,104.2118896,0.878666358,7.341151821,0.748090618,0.732156684,0,0.732156684,0.725532926,0.006623758,2.188930018,1.953329494,0.235600524,0.022557692,0.213042831,1.55300857,1.818840593,-46.48572003,46.48572003,0,0,0.851393264,0.005639423,0.181383232,1,0.866304441,0,0.021508665,0.961238037,1,0.665312492,0.940815896,0.697409846,0.015838795,0.115824807,0.244826714,0.724496596,0.448993192,0.971406835,0.932644872,0.004085743,0.175256928,0.701495588,0.191095723,0,0.261151479,-0.26607943,105.4311026,0.26607943,74.56889741,0,0.862086188,0.701495588,0.416230806,0.973910326,2,7,39% -2018-02-20 16:00:00,78.10586328,113.8600309,137.0306601,451.9982812,43.8719838,43.58207661,0,43.58207661,42.54908161,1.032994998,56.08043459,21.53286237,34.54757221,1.322902182,33.22467003,1.363204479,1.987232426,-3.423290776,3.423290776,0.884429109,0.884429109,0.320161807,0.951833092,30.61422414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.89979568,0.958438127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.689599835,29.42755671,41.58939552,30.38599484,0,21.53286237,-0.047639257,92.73056188,0.047639257,87.26943812,0,0,41.58939552,30.38599484,61.47642142,2,8,48% -2018-02-20 17:00:00,67.80863319,124.8652164,324.7497451,679.395039,68.1413729,185.8457708,117.3110109,68.53475985,66.08665909,2.448100753,80.79404932,0,80.79404932,2.054713808,78.73933552,1.18348391,2.179309148,-1.410831826,1.410831826,0.771420141,0.771420141,0.209827333,2.005930777,64.51762912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52501045,1.488633159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453290019,62.01679916,64.97830047,63.50543232,117.3110109,0,0.172669808,80.05691624,-0.172669808,99.94308376,0.760429979,0,154.18511,63.50543232,195.7481454,2,9,27% -2018-02-20 18:00:00,58.92129282,138.0299973,483.2878493,777.5425249,81.90867352,375.044306,291.9622533,83.08205275,79.4388248,3.64322795,119.6485831,0,119.6485831,2.469848717,117.1787344,1.028370559,2.409077919,-0.620709086,0.620709086,0.636301195,0.636301195,0.16948217,2.542760554,81.78392011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35962,1.789396988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842221366,78.61381481,78.20184136,80.4032118,291.9622533,0,0.375493615,67.94517548,-0.375493615,112.0548245,0.916841943,0,345.8850811,80.4032118,398.5073751,2,10,15% -2018-02-20 19:00:00,52.27207106,154.0002078,594.1955741,823.888464,90.04780007,542.2600982,450.4482743,91.81182388,87.33252666,4.479297227,146.7848697,0,146.7848697,2.715273413,144.0695963,0.912319747,2.687810674,-0.135103203,0.135103203,0.553257698,0.553257698,0.151545727,2.781462546,89.4613967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.94734648,1.967206345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.015160146,85.99369734,85.96250662,87.96090368,450.4482743,0,0.546734533,56.8567246,-0.546734533,123.1432754,0.958547939,0,517.7387714,87.96090368,575.3074236,2,11,11% -2018-02-20 20:00:00,48.83655586,172.5951014,648.0900134,842.2239321,93.7304137,664.0057046,568.2160325,95.78967218,90.9040959,4.885576275,159.9632449,0,159.9632449,2.826317802,157.1369271,0.852358695,3.012352793,0.249408603,-0.249408603,0.487502306,0.487502306,0.14462561,2.743850041,88.25164925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.38047469,2.047657626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987910014,84.83084207,89.3683847,86.8784997,568.2160325,0,0.674661466,47.57213341,-0.674661466,132.4278666,0.975888757,0,643.8840222,86.8784997,700.7442627,2,12,9% -2018-02-20 21:00:00,49.31230319,192.127473,640.7794288,839.8683433,93.23936168,725.6131133,630.3547964,95.25831691,90.42785091,4.830466,158.175902,0,158.175902,2.811510771,155.3643912,0.860662052,3.353256987,0.618548627,-0.618548627,0.424375645,0.424375645,0.145509293,2.454525641,78.945982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.92268988,2.036929983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.778295472,75.88588076,88.70098535,77.92281074,630.3547964,0,0.750540012,41.36282294,-0.750540012,138.6371771,0.9833813,0,708.5801044,77.92281074,759.5790255,2,13,7% -2018-02-20 22:00:00,53.59229928,210.196866,572.8306365,815.9464258,88.54435223,717.8211647,627.6285121,90.19265262,85.87441332,4.318239302,141.5593587,0,141.5593587,2.669938914,138.8894198,0.935362076,3.668627389,1.041733766,-1.041733766,0.352006724,0.352006724,0.154573353,1.952574885,62.80152022,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.54575247,1.934361654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414633857,60.36721001,83.96038633,62.30157166,627.6285121,0,0.76920309,39.71761912,-0.76920309,140.2823809,0.984997661,0,702.1730027,62.30157166,742.9481353,2,14,6% -2018-02-20 23:00:00,60.85659052,225.478476,449.6030491,760.5011373,79.24109097,634.9552531,554.7142756,80.24097741,76.85167971,3.389297697,111.4008758,0,111.4008758,2.389411261,109.0114646,1.062147876,3.935341798,1.631687353,-1.631687353,0.251118718,0.251118718,0.176246783,1.298462436,41.76301538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.87275774,1.731120325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940731615,40.14419891,74.81348935,41.87531924,554.7142756,0,0.729406241,43.16335981,-0.729406241,136.8366402,0.981451094,0,619.2384219,41.87531924,646.6449808,2,15,4% -2018-02-20 00:00:00,70.14104382,238.0700856,281.9723612,642.5074284,63.70880488,471.2322367,407.3188606,63.91337611,61.78774935,2.125626764,70.28851907,0,70.28851907,1.921055528,68.36746354,1.224192155,4.155106844,2.70886489,-2.70886489,0.066910511,0.066910511,0.225939892,0.590355953,18.98787677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.39273489,1.39179819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427710878,18.25186939,59.82044576,19.64366758,407.3188606,0,0.633951987,50.65770146,-0.633951987,129.3422985,0.971129674,0,455.379878,19.64366758,468.2362656,2,16,3% -2018-02-20 01:00:00,80.66694772,248.697398,93.12385499,358.3098454,35.0156428,210.1613257,175.4995268,34.66179893,33.95979197,0.702006955,23.63480762,0,23.63480762,1.055850824,22.57895679,1.407903835,4.340588437,6.083052194,-6.083052194,0,0,0.376011526,0.263962706,8.489947993,0.337796366,1,0.162933856,0,0.943728544,0.982490507,0.724496596,1,32.92051559,0.764960328,0.049812874,0.312029739,0.868470803,0.592967399,0.961238037,0.922476074,0.181086717,8.160860942,33.10160231,8.92582127,116.2164244,0,0.489798226,60.67267956,-0.489798226,119.3273204,0.947917148,0,143.2651438,8.92582127,149.1069153,2,17,4% -2018-02-20 02:00:00,92.09804405,258.1580033,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607414103,4.505707148,-27.02070235,27.02070235,1,0,#DIV/0!,0,0,1,0.759092217,0,0.036991778,0.961238037,1,0.624954983,0.900458387,0,0,0.115824807,0.199104418,0.724496596,0.448993192,0.977776595,0.939014632,0,0,0,0,0,0,0.303930353,72.30617701,-0.303930353,107.693823,0.885488626,0,0,0,0,2,18,0% -2018-02-20 03:00:00,103.8254548,267.1960798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812096034,4.66345134,-3.881833518,3.881833518,1,0.806013682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092711834,84.68036372,-0.092711834,95.31963628,0.510694524,0,0,0,0,2,19,0% -2018-02-20 04:00:00,115.6423071,276.5870999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018339013,4.827355561,-1.862922855,1.862922855,1,0.84873226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130922695,97.52291457,0.130922695,82.47708543,0,0.668095243,0,0,0,2,20,0% -2018-02-20 05:00:00,127.2108291,287.3427145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.220247812,5.015076449,-1.046991168,1.046991168,1,0.709199724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35172273,110.5927212,0.35172273,69.40727875,0,0.907842568,0,0,0,2,21,0% -2018-02-20 06:00:00,138.0067438,301.0751675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40867207,5.254752969,-0.565590235,0.565590235,1,0.626875316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554630125,123.6852425,0.554630125,56.31475749,0,0.95984983,0,0,0,2,22,0% -2018-02-20 07:00:00,147.0053864,320.4465764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.565728011,5.592847835,-0.217302671,0.217302671,1,0.567314635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725805267,136.5358778,0.725805267,43.46412215,0,0.981110999,0,0,0,2,23,0% -2018-02-21 08:00:00,152.2171868,348.006222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656691088,6.073854391,0.073380965,-0.073380965,1,0.517604806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853570159,148.6021293,0.853570159,31.39787069,0,0.991422507,0,0,0,2,0,0% -2018-02-21 09:00:00,151.4104461,19.49219491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642610806,0.34020298,0.346593388,-0.346593388,1,0.470882729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929204253,158.3111104,0.929204253,21.68888963,0,0.996190517,0,0,0,2,1,0% -2018-02-21 10:00:00,145.0055073,44.97629803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530823536,0.784984486,0.634351282,-0.634351282,1,0.421673231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947538874,161.3588117,0.947538874,18.64118834,0,0.997231716,0,0,0,2,2,0% -2018-02-21 11:00:00,135.4082541,62.6251984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363319869,1.093015907,0.977694593,-0.977694593,1,0.362958067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907309766,155.1361888,0.907309766,24.86381117,0,0.994892029,0,0,0,2,3,0% -2018-02-21 12:00:00,124.3406765,75.40116165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170154199,1.315998531,1.457213111,-1.457213111,1,0.280955571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811243737,144.2176265,0.811243737,35.78237354,0,0.988366242,0,0,0,2,4,0% -2018-02-21 13:00:00,112.6583717,85.68439815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966259517,1.495474865,2.306269964,-2.306269964,1,0.135758298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873463,131.74937,0.665873463,48.25063,0,0.974910658,0,0,0,2,5,0% -2018-02-21 14:00:00,100.8171203,94.89135116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759590692,1.656166509,4.747516814,-4.747516814,1,0,#DIV/0!,0,0,0.219798092,1,0.207601666,0,0.937865249,0.976627212,0.724496596,1,0,0,0.034056133,0.312029739,0.907965264,0.63246186,0.961238037,0.922476074,0,0,0,0,0,0,-0.481092952,118.7568088,0.481092952,61.2431912,0,0.94606998,0,0,0,2,6,0% -2018-02-21 15:00:00,88.7593964,103.9477889,1.336285321,10.46004439,1.109815677,1.086424123,0,1.086424123,1.076350639,0.010073483,3.11169709,2.754234205,0.357462884,0.033465037,0.323997847,1.549143709,1.814231167,-38.30562968,38.30562968,0,0,0.830522987,0.008366259,0.26908766,1,0.835548013,0,0.026099895,0.961238037,1,0.653148501,0.928651905,1.034629176,0.023373842,0.115824807,0.231035402,0.724496596,0.448993192,0.973375817,0.934613853,0.006061326,0.260208126,1.040690502,0.283581968,0,0.452939288,-0.263309992,105.2665564,0.263309992,74.7334436,0,0.860109751,1.040690502,0.673159467,1.48125991,2,7,42% -2018-02-21 16:00:00,77.84174525,113.6077524,141.7361453,460.8711696,44.6708687,44.39234412,0,44.39234412,43.32387719,1.068466933,56.07544567,20.36288476,35.71256091,1.346991509,34.3655694,1.35859475,1.982829336,-3.360849102,3.360849102,0.895107265,0.895107265,0.315169208,0.99171492,31.89696082,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.64455866,0.975890763,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.718494083,30.660572,42.36305274,31.63646276,0,20.36288476,-0.044183464,92.53235041,0.044183464,87.46764959,0,0,42.36305274,31.63646276,63.06848489,2,8,49% -2018-02-21 17:00:00,67.51883554,124.6301555,330.1012047,683.8390317,68.61504531,189.653895,120.6194042,69.03449085,66.54604854,2.488442316,82.10585563,0,82.10585563,2.068996779,80.03685885,1.178425987,2.17520656,-1.398772977,1.398772977,0.769357957,0.769357957,0.207860633,2.033802307,65.41407334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.96659305,1.498981123,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473482848,62.87849544,65.4400759,64.37747656,120.6194042,0,0.176385668,79.84069451,-0.176385668,100.1593055,0.766530256,0,157.8984987,64.37747656,200.0322696,2,9,27% -2018-02-21 18:00:00,58.60143265,137.8302922,488.8613563,780.4081744,82.2778367,379.5739827,296.0918829,83.48209976,79.79685636,3.6852434,121.011076,0,121.011076,2.48098035,118.5300957,1.022787946,2.405592407,-0.618235312,0.618235312,0.635878155,0.635878155,0.168305053,2.569210558,82.63464315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.70377355,1.797461818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861384303,79.43156216,78.56515785,81.22902398,296.0918829,0,0.379406435,67.7030793,-0.379406435,112.2969207,0.918215203,0,350.4412262,81.22902398,403.6039978,2,10,15% -2018-02-21 19:00:00,51.92365749,153.8721688,599.8388319,826.0999185,90.37401084,547.1689477,454.9982083,92.17073945,87.64890097,4.521838488,148.1629794,0,148.1629794,2.725109871,145.4378695,0.906238783,2.685575973,-0.136255391,0.136255391,0.553454734,0.553454734,0.150663822,2.806854145,90.2780778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.2514575,1.974332825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033556273,86.77872228,86.28501377,88.7530551,454.9982083,0,0.550778663,56.57955111,-0.550778663,123.4204489,0.959219432,0,522.7281365,88.7530551,580.815236,2,11,11% -2018-02-21 20:00:00,48.47375726,172.5830484,653.6954565,844.1775718,94.03694651,669.1265593,572.9973412,96.12921809,91.20138561,4.927832473,161.3315926,0,161.3315926,2.835560897,158.4960317,0.846026665,3.012142427,0.24601257,-0.24601257,0.488083062,0.488083062,0.143854368,2.768084477,89.031112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.66624086,2.054354217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005467781,85.58009132,89.67170864,87.63444554,572.9973412,0,0.678763995,47.2528674,-0.678763995,132.7471326,0.976336694,0,649.1100383,87.63444554,706.4650302,2,12,9% -2018-02-21 21:00:00,48.96051666,192.2460471,646.2545017,841.8107438,93.53928371,730.8414953,635.2510267,95.5904686,90.71872919,4.871739413,159.5124405,0,159.5124405,2.820554527,156.691886,0.854522219,3.355326496,0.612932583,-0.612932583,0.425336045,0.425336045,0.14474063,2.477344127,79.67990295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.20229315,2.043482153,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794827387,76.59135349,88.99712054,78.63483564,635.2510267,0,0.754624518,41.00742821,-0.754624518,138.9925718,0.983741882,0,713.9201614,78.63483564,765.3850887,2,13,7% -2018-02-21 22:00:00,53.27307186,210.4123954,578.0917322,818.1251448,88.85133854,723.0999112,632.5698687,90.53004252,86.17214286,4.357899665,142.8442291,0,142.8442291,2.679195684,140.1650334,0.929790507,3.672389087,1.032894335,-1.032894335,0.353518355,0.353518355,0.153697646,1.97361023,63.47808925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.83194143,1.941068152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.429873893,61.01755389,84.26181533,62.95862204,632.5698687,0,0.773194508,39.35837403,-0.773194508,140.641626,0.985333219,0,707.5539202,62.95862204,748.7590791,2,14,6% -2018-02-21 23:00:00,60.57678382,225.7439871,454.5679112,763.3220696,79.58080885,640.3027955,559.6949167,80.60787877,77.18115384,3.426724925,112.6149079,0,112.6149079,2.399655009,110.2152529,1.057264328,3.939975842,1.616508569,-1.616508569,0.253714443,0.253714443,0.17506913,1.317116576,42.36299663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.1894608,1.738541885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.954246475,40.72092371,75.14370728,42.4594656,559.6949167,0,0.733235601,42.84166376,-0.733235601,137.1583362,0.981809094,0,624.6572664,42.4594656,652.4461374,2,15,4% -2018-02-21 00:00:00,69.89656552,238.3558542,286.5204694,646.9565084,64.15117516,476.8500012,412.4733083,64.37669286,62.21678053,2.159912325,71.40459965,0,71.40459965,1.934394624,69.47020502,1.219925204,4.160094447,2.675893995,-2.675893995,0.072548866,0.072548866,0.223897355,0.605213311,19.4657405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.80513598,1.40146232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.438474984,18.71121018,60.24361096,20.1126725,412.4733083,0,0.637559562,50.38991802,-0.637559562,129.610082,0.971575955,0,460.9927593,20.1126725,474.1561012,2,16,3% -2018-02-21 01:00:00,80.45051097,248.9921595,96.75700309,367.3569827,35.81268353,216.6143587,181.1521645,35.46219415,34.73279899,0.72939516,24.53974016,0,24.53974016,1.079884543,23.45985561,1.404126301,4.345732996,5.943299663,-5.943299663,0,0,0.370130144,0.269971136,8.683199747,0.327147763,1,0.166695339,0,0.943251923,0.982013887,0.724496596,1,33.66764814,0.782372676,0.048453956,0.312029739,0.871799584,0.59629618,0.961238037,0.922476074,0.185315342,8.346621879,33.85296348,9.128994554,121.8886391,0,0.493122965,60.45394749,-0.493122965,119.5460525,0.948605412,0,149.4771862,9.128994554,155.4519305,2,17,4% -2018-02-21 02:00:00,91.89697262,258.4614507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603904745,4.511003305,-29.86411641,29.86411641,1,0,#DIV/0!,0,0,1,0.784353481,0,0.033472496,0.961238037,1,0.633962404,0.909465808,0,0,0.115824807,0.209300591,0.724496596,0.448993192,0.976395508,0.937633545,0,0,0,0,0,0,0.307005833,72.12111959,-0.307005833,107.8788804,0.887136645,0,0,0,0,2,18,0% -2018-02-21 03:00:00,103.6323425,267.5136837,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808725588,4.668994575,-3.932183161,3.932183161,1,0.797403386,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095500288,84.51988487,-0.095500288,95.48011513,0.52644137,0,0,0,0,2,19,0% -2018-02-21 04:00:00,115.4467799,276.9275192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01492642,4.833297,-1.873713643,1.873713643,1,0.850577594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.128405407,97.37745657,0.128405407,82.62254343,0,0.660608297,0,0,0,2,20,0% -2018-02-21 05:00:00,126.9999472,287.7150585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216567229,5.021575079,-1.049777781,1.049777781,1,0.709676263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.349441946,110.4531858,0.349441946,69.54681416,0,0.906914716,0,0,0,2,21,0% -2018-02-21 06:00:00,137.7629765,301.478926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404417527,5.261799884,-0.565456531,0.565456531,1,0.626852451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55253479,123.5410846,0.55253479,56.45891542,0,0.959507961,0,0,0,2,22,0% -2018-02-21 07:00:00,146.7079507,320.8317901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560536778,5.599571083,-0.215615569,0.215615569,1,0.567026124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723831472,136.3717267,0.723831472,43.62827331,0,0.980923147,0,0,0,2,23,0% -2018-02-22 08:00:00,151.8638212,348.1975036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650523695,6.077192885,0.076249474,-0.076249474,1,0.517114262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851645561,148.3911033,0.851645561,31.60889669,0,0.99129013,0,0,0,2,0,0% -2018-02-22 09:00:00,151.0521575,19.3508752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636357491,0.337736485,0.350715315,-0.350715315,1,0.470177838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927253079,158.0105902,0.927253079,21.98940981,0,0.996077289,0,0,0,2,1,0% -2018-02-22 10:00:00,144.6886445,44.66230979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525293238,0.779504357,0.640195902,-0.640195902,1,0.420673742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945487157,160.9944716,0.945487157,19.00552843,0,0.997117209,0,0,0,2,2,0% -2018-02-22 11:00:00,135.1311857,62.28773491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358484113,1.087126058,0.98642703,-0.98642703,1,0.361464733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905090453,154.8354684,0.905090453,25.16453163,0,0.994756903,0,0,0,2,3,0% -2018-02-22 12:00:00,124.0876503,75.0829657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165738059,1.310444964,1.471868748,-1.471868748,1,0.278449309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80880132,143.978982,0.80880132,36.02101804,0,0.988180121,0,0,0,2,4,0% -2018-02-22 13:00:00,112.4156417,85.38902318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962023078,1.4903196,2.337382803,-2.337382803,1,0.130437689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663167805,131.5419175,0.663167805,48.45808254,0,0.974604301,0,0,0,2,5,0% -2018-02-22 14:00:00,100.5740677,94.61383766,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755348623,1.651322985,4.870112536,-4.870112536,1,0,#DIV/0!,0,0,0.23235448,1,0.202519167,0,0.938554639,0.977316602,0.724496596,1,0,0,0.035808703,0.312029739,0.903475508,0.627972104,0.961238037,0.922476074,0,0,0,0,0,0,-0.478102056,118.5615175,0.478102056,61.43848251,0,0.945419818,0,0,0,2,6,0% -2018-02-22 15:00:00,88.53188727,103.6833082,1.938302494,14.45765255,1.567888802,1.535222912,0,1.535222912,1.520611169,0.014611743,4.282468654,3.765227142,0.517241513,0.047277632,0.469963881,1.545172926,1.809615108,-32.46772782,32.46772782,0,0,0.808897892,0.011819408,0.380152792,1,0.803244969,0,0.030790081,0.961238037,1,0.640893466,0.91639687,1.461669295,0.032862689,0.115824807,0.217149783,0.724496596,0.448993192,0.975316833,0.93655487,0.008563121,0.36787014,1.470232416,0.400732829,0,0.740827384,-0.260431431,105.0956633,0.260431431,74.90433673,0,0.858010885,1.470232416,1.036370789,2.14851637,2,7,46% -2018-02-22 16:00:00,77.57399274,113.3548794,146.5260554,469.6643332,45.46432831,45.19798637,0,45.19798637,44.09341107,1.104575299,55.99478104,19.09692524,36.8978558,1.370917244,35.52693856,1.353921587,1.978415868,-3.299968215,3.299968215,0.905518509,0.905518509,0.310281528,1.032594954,33.21180325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.38426389,0.993224877,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.748111529,31.92444855,43.13237542,32.91767343,0,19.09692524,-0.040660795,92.33033438,0.040660795,87.66966562,0,0,43.13237542,32.91767343,64.67633433,2,8,50% -2018-02-22 17:00:00,67.22556726,124.3944444,335.5107834,688.2457227,69.08798571,193.527448,123.993498,69.53395004,67.00472803,2.529222006,83.43173153,0,83.43173153,2.083257677,81.34847385,1.17330749,2.171092626,-1.386735253,1.386735253,0.767299385,0.767299385,0.205918823,2.061864325,66.31664429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40749323,1.509313095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493813684,63.74608097,65.90130692,65.25539406,123.993498,0,0.180158763,79.62099257,-0.180158763,100.3790074,0.772467011,0,161.6821936,65.25539406,204.3905439,2,9,26% -2018-02-22 18:00:00,58.27817188,137.6302606,494.4771081,783.2510936,82.64701299,384.1536589,300.271181,83.88247792,80.15490061,3.727577309,122.3838121,0,122.3838121,2.492112377,119.8916997,1.017145981,2.402101198,-0.615690038,0.615690038,0.635442887,0.635442887,0.167140221,2.59579181,83.4895876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.04793931,1.805526933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88064233,80.25336728,78.92858164,82.05889421,300.271181,0,0.38336516,67.45771515,-0.38336516,112.5422848,0.919576046,0,355.050767,82.05889421,408.7566721,2,10,15% -2018-02-22 19:00:00,51.57194118,153.7449862,605.5097948,828.2924266,90.69996456,552.1126539,459.5830393,92.52961459,87.96502599,4.564588602,149.5477987,0,149.5477987,2.734938579,146.8128601,0.900100175,2.683356218,-0.137327353,0.137327353,0.55363805,0.55363805,0.149791077,2.832323063,91.09724574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55532889,1.98145369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052008417,87.56613766,86.60733731,89.54759135,459.5830393,0,0.55485602,56.29920162,-0.55485602,123.7007984,0.959886532,0,527.7549072,89.54759135,586.3620148,2,11,11% -2018-02-22 20:00:00,48.1080542,172.574158,659.3152773,846.1120441,94.34264267,674.2665993,577.7985384,96.46806096,91.49786391,4.970197056,162.703401,0,162.703401,2.844778764,159.8586223,0.839643943,3.01198726,0.242702645,-0.242702645,0.488649093,0.488649093,0.14309185,2.792352334,89.8116497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.95122708,2.06103253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02304976,86.33037384,89.97427684,88.39140637,577.7985384,0,0.682886554,46.93037754,-0.682886554,133.0696225,0.976781396,0,654.3571399,88.39140637,712.2075476,2,12,9% -2018-02-22 21:00:00,48.60673179,192.3700966,651.7325698,843.7309488,93.83764579,736.0734991,640.1523692,95.92112995,91.00809455,4.913035404,160.8496583,0,160.8496583,2.829551245,158.020107,0.848347508,3.357491568,0.607420131,-0.607420131,0.42627873,0.42627873,0.143981827,2.500165924,80.41393038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.48044214,2.050000245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.811361701,77.29692857,89.29180384,79.34692882,640.1523692,0,0.758716235,40.64884562,-0.758716235,139.3511544,0.984099209,0,719.2652441,79.34692882,771.196222,2,13,7% -2018-02-22 22:00:00,52.95295703,210.6341982,583.347244,820.2747537,89.15586714,728.3674352,637.5024284,90.86500673,86.4674888,4.397517932,144.1276714,0,144.1276714,2.688378344,141.4392931,0.924203449,3.676260276,1.024203943,-1.024203943,0.3550045,0.3550045,0.152834985,1.994636638,64.15437081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.11583918,1.947720959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445107455,61.66762145,84.56094664,63.61534241,637.5024284,0,0.777181579,38.99675711,-0.777181579,141.0032429,0.98566497,0,712.9247588,63.61534241,754.5597281,2,14,6% -2018-02-22 23:00:00,60.29694009,226.0152764,459.5224408,766.0986403,79.91669001,645.6248466,564.6538654,80.9709812,77.50690694,3.464074262,113.826319,0,113.826319,2.409783065,111.4165359,1.052380133,3.944710732,1.601607,-1.601607,0.256262762,0.256262762,0.173912486,1.335774588,42.96310244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50258707,1.745879627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.967764142,41.29776824,75.47035121,43.04364787,564.6538654,0,0.737051126,42.5191811,-0.737051126,137.4808189,0.982162101,0,630.0519779,43.04364787,658.2231846,2,15,4% -2018-02-22 00:00:00,69.65250086,238.6465504,291.0597504,651.3220669,64.58656314,482.4261041,417.5929328,64.8331713,62.63903996,2.194131343,72.51832944,0,72.51832944,1.947523178,70.57080626,1.215665472,4.165168053,2.643712898,-2.643712898,0.078052157,0.078052157,0.22190139,0.620135383,19.94568562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.2110278,1.410973913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.449285974,19.17255169,60.66031378,20.5835256,417.5929328,0,0.641146606,50.12262772,-0.641146606,129.8773723,0.972014716,0,466.5667899,20.5835256,480.0382957,2,16,3% -2018-02-22 01:00:00,80.23456142,249.2911149,100.4083239,376.2332727,36.59349485,223.0184486,186.7714623,36.24698633,35.49006597,0.756920358,25.44858951,0,25.44858951,1.103428885,24.34516062,1.400357271,4.350950751,5.80983177,-5.80983177,0,0,0.364446825,0.275857221,8.872516492,0.316653323,1,0.170451851,0,0.942772766,0.98153473,0.724496596,1,34.39912353,0.799430471,0.047102952,0.312029739,0.875123473,0.599620069,0.961238037,0.922476074,0.189475053,8.528600335,34.58859858,9.328030806,127.6296581,0,0.496424628,60.23626416,-0.496424628,119.7637358,0.949279775,0,155.7448518,9.328030806,161.8498614,2,17,4% -2018-02-22 02:00:00,91.69638594,258.7685649,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600403847,4.516363458,-33.37068974,33.37068974,1,0,#DIV/0!,0,0,1,0.809046525,0,0.029957452,0.961238037,1,0.643056413,0.918559817,0,0,0.115824807,0.219599853,0.724496596,0.448993192,0.974977384,0.936215421,0,0,0,0,0,0,0.31005662,71.93735727,-0.31005662,108.0626427,0.888739131,0,0,0,0,2,18,0% -2018-02-22 03:00:00,103.439457,267.8345892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805359102,4.674595432,-3.983674425,3.983674425,1,0.788597861,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098267221,84.36060191,-0.098267221,95.63939809,0.541183333,0,0,0,0,2,19,0% -2018-02-22 04:00:00,115.2510649,277.2709422,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011510548,4.839290862,-1.884540302,1.884540302,1,0.852429062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12590326,97.23292086,0.12590326,82.76707914,0,0.652869694,0,0,0,2,20,0% -2018-02-22 05:00:00,126.7883072,288.0900048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212873414,5.028119126,-1.052509364,1.052509364,1,0.710143391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347167159,110.3141435,0.347167159,69.68585655,0,0.90597716,0,0,0,2,21,0% -2018-02-22 06:00:00,137.5177652,301.8844658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400137782,5.268877889,-0.565252708,0.565252708,1,0.626817596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550434176,123.3968043,0.550434176,56.60319567,0,0.959162617,0,0,0,2,22,0% -2018-02-22 07:00:00,146.4084796,321.2175428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.555310022,5.606303737,-0.213851554,0.213851554,1,0.566724459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721839765,136.2065845,0.721839765,43.79341553,0,0.98073255,0,0,0,2,23,0% -2018-02-23 08:00:00,151.5080933,348.3909162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315072,6.080568571,0.079204766,-0.079204766,1,0.516608877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849689936,148.1779611,0.849689936,31.82203889,0,0.991155005,0,0,0,2,0,0% -2018-02-23 09:00:00,150.6905292,19.21668324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630045887,0.335394394,0.354942348,-0.354942348,1,0.469454973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925258184,157.7073191,0.925258184,22.29268085,0,0.995961029,0,0,0,2,1,0% -2018-02-23 10:00:00,144.3673377,44.35458493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519685375,0.774133545,0.646180905,-0.646180905,1,0.419650247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943380323,160.6272146,0.943380323,19.37278537,0,0.996999107,0,0,0,2,2,0% -2018-02-23 11:00:00,134.8494054,61.9536907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353566118,1.081295887,0.99537398,-0.99537398,1,0.359934714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902806711,154.5294851,0.902806711,25.47051491,0,0.99461716,0,0,0,2,3,0% -2018-02-23 12:00:00,123.8300934,74.7663599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161242842,1.30491915,1.486926374,-1.486926374,1,0.275874304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806287887,143.7348174,0.806287887,36.26518256,0,0.98798741,0,0,0,2,4,0% -2018-02-23 13:00:00,112.1686796,85.09424223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957712777,1.485174701,2.369584467,-2.369584467,1,0.12493088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660387728,131.3294498,0.660387728,48.67055017,0,0.974286903,0,0,0,2,5,0% -2018-02-23 14:00:00,100.3270809,94.33635039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75103789,1.646479919,5.000255203,-5.000255203,1,0,#DIV/0!,0,0,0.245249019,1,0.197385745,0,0.93924518,0.978007143,0.724496596,1,0,0,0.037588948,0.312029739,0.898939658,0.623436254,0.961238037,0.922476074,0,0,0,0,0,0,-0.475036756,118.3617432,0.475036756,61.63825677,0,0.944744987,0,0,0,2,6,0% -2018-02-23 15:00:00,88.29857003,103.418496,2.704825784,19.42447624,2.128089955,2.08431031,0,2.08431031,2.063920191,0.020390119,5.720769713,5.000783623,0.719986091,0.064169764,0.655816327,1.541100772,1.804993262,-28.09931517,28.09931517,0,0,0.78677524,0.016042441,0.515980048,1,0.769341818,0,0.035573043,0.961238037,1,0.628574411,0.904077815,1.983918592,0.044413275,0.115824807,0.20320092,0.724496596,0.448993192,0.977224458,0.938462495,0.011622694,0.499615067,1.995541286,0.544028342,0,1.153471658,-0.25744754,104.9186619,0.25744754,75.08133807,0,0.855785676,1.995541286,1.531152864,2.997650213,2,7,50% -2018-02-23 16:00:00,77.30272987,113.1014415,151.3975368,478.3704335,46.25184721,45.99848195,0,45.99848195,44.85718336,1.141298583,55.83744532,17.73469587,38.10274945,1.394663844,36.70808561,1.349187157,1.973992542,-3.240629179,3.240629179,0.915666082,0.915666082,0.305499338,1.074452768,34.55809444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.11843087,1.010429208,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.778437373,33.21855485,43.89686825,34.22898406,0,17.73469587,-0.037073144,92.12462155,0.037073144,87.87537845,0,0,43.89686825,34.22898406,66.29905374,2,8,51% -2018-02-23 17:00:00,66.92895575,124.1580908,340.975582,692.6126694,69.5599222,197.4645401,127.4316882,70.03285186,67.46243389,2.570417966,84.77096584,0,84.77096584,2.097488303,82.67347753,1.168130643,2.166967477,-1.374729321,1.374729321,0.765246249,0.765246249,0.20400265,2.090101019,67.22483345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84745752,1.519623135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514271073,64.61906693,66.36172859,66.13869007,127.4316882,0,0.183986944,79.39792525,-0.183986944,100.6020747,0.778241586,0,165.5343678,66.13869007,208.8208176,2,9,26% -2018-02-23 18:00:00,57.95163893,137.4298872,500.1321087,786.0699319,83.0159857,388.7808616,304.4979071,84.28295453,80.51274744,3.770207092,123.7660583,0,123.7660583,2.503238265,121.2628201,1.011446906,2.398604022,-0.613078216,0.613078216,0.634996239,0.634996239,0.165988114,2.62249017,84.34829861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.39191529,1.813587602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899985201,81.07879297,79.29190049,82.89238057,304.4979071,0,0.387367453,67.20920653,-0.387367453,112.7907935,0.92092359,0,359.7112064,82.89238057,413.9626116,2,10,15% -2018-02-23 19:00:00,51.21704714,153.6186359,611.2054922,830.4651147,91.02547357,557.0884877,464.2002428,92.88824487,88.28071969,4.607525174,150.9386018,0,150.9386018,2.744753876,148.1938479,0.893906106,2.68115099,-0.13832162,0.13832162,0.55380808,0.55380808,0.148927774,2.85785642,91.91848628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85878569,1.98856484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.070507248,88.3555453,86.92929294,90.34411014,464.2002428,0,0.558964169,56.01580664,-0.558964169,123.9841934,0.960548828,0,532.8162922,90.34411014,591.9447054,2,11,11% -2018-02-23 20:00:00,47.7395685,172.5684282,664.9466425,848.0267358,94.64733687,679.4230369,582.6170177,96.80601912,91.79337045,5.012648666,164.0779784,0,164.0779784,2.853966418,161.224012,0.833212654,3.011887257,0.239477296,-0.239477296,0.48920066,0.48920066,0.142338243,2.816642077,90.59289134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.23527921,2.067688955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.040647597,87.08133302,90.2759268,89.14902198,582.6170177,0,0.687026709,46.60479445,-0.687026709,133.3952055,0.977222626,0,659.6224586,89.14902198,717.9687105,2,12,9% -2018-02-23 21:00:00,48.25107188,192.4996348,657.211033,845.6285236,94.13430549,741.3064314,645.0562882,96.25014324,91.29580886,4.954334374,162.1869205,0,162.1869205,2.838496629,159.3484239,0.842140072,3.359752436,0.602009998,-0.602009998,0.427203917,0.427203917,0.143232996,2.522980987,81.14774123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.75700409,2.056481145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827891137,78.00229548,89.58489522,80.05877662,645.0562882,0,0.762812831,40.28719768,-0.762812831,139.7128023,0.984453121,0,724.6125716,80.05877662,777.0094398,2,13,7% -2018-02-23 22:00:00,52.63207327,210.8622545,588.5948778,822.3949972,89.45782376,733.6212725,642.4238554,91.19741712,86.76034031,4.437076813,145.4091261,0,145.4091261,2.69748345,142.7116426,0.918602971,3.680240609,1.015660741,-1.015660741,0.356465474,0.356465474,0.151985393,2.015645621,64.83009191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39733919,1.954317577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460328391,62.31715027,84.85766758,64.27146785,642.4238554,0,0.781162164,38.63289449,-0.781162164,141.3671055,0.985992804,0,718.2829659,64.27146785,760.3473562,2,14,6% -2018-02-23 23:00:00,60.01715978,226.2922774,464.4646867,768.8309048,80.24866325,650.9193028,569.5891019,81.33020097,77.82886997,3.501330999,115.034634,0,115.034634,2.419793283,112.6148407,1.047497046,3.949545312,1.586977732,-1.586977732,0.258764514,0.258764514,0.172776673,1.354429377,43.56310458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.81207018,1.753131996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.981279473,41.87451312,75.79334965,43.62764512,569.5891019,0,0.740850944,42.1960465,-0.740850944,137.8039535,0.982510041,0,635.4203614,43.62764512,663.9737825,2,15,4% -2018-02-23 00:00:00,69.40892641,238.9420784,295.5885245,655.6049939,65.01499474,487.9589523,422.6761284,65.28282392,63.05455277,2.228271154,73.62930193,0,73.62930193,1.960441971,71.66885996,1.211414296,4.170325989,2.612297944,-2.612297944,0.083424431,0.083424431,0.219951011,0.635115557,20.4274995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.61043452,1.420333534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.460139059,19.63568952,61.07057357,21.05602306,422.6761284,0,0.644711575,49.85594617,-0.644711575,130.1440538,0.97244594,0,472.1002587,21.05602306,485.8810047,2,16,3% -2018-02-23 01:00:00,80.01915645,249.5941536,104.0752609,384.9381596,37.35820084,229.370634,192.3543575,37.01627653,36.23171325,0.784563278,26.36073954,0,26.36073954,1.126487592,25.23425194,1.396597745,4.356239774,5.682248298,-5.682248298,0,0,0.358953708,0.281621898,9.057928312,0.306310905,1,0.174202864,0,0.94229116,0.981053123,0.724496596,1,35.11504863,0.816136426,0.045759953,0.312029739,0.878441987,0.602938583,0.961238037,0.922476074,0.193566695,8.706825228,35.30861533,9.522961654,133.4341201,0,0.499701972,60.01971541,-0.499701972,119.9802846,0.949940359,0,162.0630712,9.522961654,168.2956592,2,17,4% -2018-02-23 02:00:00,91.49631763,259.079226,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596911996,4.521785518,-37.80284422,37.80284422,1,0,#DIV/0!,0,0,1,0.833189342,0,0.026446868,0.961238037,1,0.652235964,0.927739368,0,0,0.115824807,0.230001135,0.724496596,0.448993192,0.97352183,0.934759867,0,0,0,0,0,0,0.313081924,71.75493993,-0.313081924,108.2450601,0.890297391,0,0,0,0,2,18,0% -2018-02-23 03:00:00,103.2468172,268.1586664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801996901,4.680251646,-4.036347942,4.036347942,1,0.779590159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101012207,84.20253918,-0.101012207,95.79746082,0.55501032,0,0,0,0,2,19,0% -2018-02-23 04:00:00,115.0551706,277.6172229,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008091549,4.8453346,-1.895403825,1.895403825,1,0.854286834,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123416358,97.08931167,0.123416358,82.91068833,0,0.64486732,0,0,0,2,20,0% -2018-02-23 05:00:00,126.5759148,288.4673803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209166468,5.034705571,-1.05518621,1.05518621,1,0.710601159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344898214,110.1755825,0.344898214,69.82441748,0,0.905029693,0,0,0,2,21,0% -2018-02-23 06:00:00,137.2711253,302.2915763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395833104,5.275983308,-0.564979229,0.564979229,1,0.626770828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548327949,123.2523788,0.548327949,56.74762125,0,0.958813694,0,0,0,2,22,0% -2018-02-23 07:00:00,146.1070182,321.6036007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550048527,5.613041718,-0.212011173,0.212011173,1,0.566409735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719829731,136.0404245,0.719829731,43.95957546,0,0.980539129,0,0,0,2,23,0% -2018-02-24 08:00:00,151.1500927,348.5862058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638066782,6.083977019,0.082246311,-0.082246311,1,0.516088742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847702887,147.9626948,0.847702887,32.03730521,0,0.99101707,0,0,0,2,0,0% -2018-02-24 09:00:00,150.3257063,19.08936257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623678526,0.333172229,0.359274105,-0.359274105,1,0.468714199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923219288,157.4013525,0.923219288,22.5986475,0,0.995841686,0,0,0,2,1,0% -2018-02-24 10:00:00,144.041748,44.05308178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514002763,0.768871323,0.652306372,-0.652306372,1,0.41860273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9412183,160.2571709,0.9412183,19.74282909,0,0.996877361,0,0,0,2,2,0% -2018-02-24 11:00:00,134.5630571,61.6231344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348568399,1.075526591,1.004536952,-1.004536952,1,0.358367753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900458753,154.2184339,0.900458753,25.78156611,0,0.994472748,0,0,0,2,3,0% -2018-02-24 12:00:00,123.5681351,74.45142882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156670808,1.299422566,1.502392857,-1.502392857,1,0.273229379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803703996,143.485278,0.803703996,36.51472203,0,0.987788041,0,0,0,2,4,0% -2018-02-24 13:00:00,111.9176084,84.80012975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953330758,1.48004147,2.40291314,-2.40291314,1,0.119231341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657534165,131.1120842,0.657534165,48.88791576,0,0.973958324,0,0,0,2,5,0% -2018-02-24 14:00:00,100.0762822,94.05894863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746660627,1.641638345,5.1385826,-5.1385826,1,0,#DIV/0!,0,0,0.258487916,1,0.192203869,0,0.939936353,0.978698316,0.724496596,1,0,0,0.039396479,0.312029739,0.894359875,0.618856471,0.961238037,0.922476074,0,0,0,0,0,0,-0.47189837,118.1575946,0.47189837,61.84240541,0,0.944044983,0,0,0,2,6,0% -2018-02-24 15:00:00,88.05973092,103.153395,3.653464878,25.42306588,2.792700581,2.736031716,0,2.736031716,2.708490355,0.027541361,7.436711504,6.46667642,0.970035085,0.084210226,0.885824858,1.536932243,1.800366377,-24.71318515,24.71318515,0,0,0.764397818,0.021052557,0.677122589,1,0.73378464,0,0.040442167,0.961238037,1,0.616218767,0.891722171,2.603503952,0.058068173,0.115824807,0.189219963,0.724496596,0.448993192,0.979093627,0.940331664,0.015252506,0.655979163,2.618756457,0.714047336,0,1.721528593,-0.254362572,104.7358178,0.254362572,75.26418217,0,0.853430199,2.618756457,2.183251827,4.047651113,2,7,55% -2018-02-24 16:00:00,77.02808556,112.8474627,156.3476,486.9826555,47.03294503,46.79334245,0,46.79334245,45.6147282,1.17861425,55.60268943,16.27618685,39.32650258,1.418216826,37.90828575,1.34439371,1.969559776,-3.182811426,3.182811426,0.9255535,0.9255535,0.300822942,1.117265865,35.93511078,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.84661179,1.027493262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.809455316,34.54219534,44.6560671,35.5696886,0,16.27618685,-0.033422519,91.91532596,0.033422519,88.08467404,0,0,44.6560671,35.5696886,67.9357169,2,8,52% -2018-02-24 17:00:00,66.62913258,123.921096,346.492619,696.9375683,70.03058927,201.463156,130.9322397,70.53091633,67.91890861,2.612007721,86.12282767,0,86.12282767,2.111680652,84.01114702,1.162897741,2.162831138,-1.362765533,1.362765533,0.763200321,0.763200321,0.202112788,2.118496456,68.13812832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28623838,1.529905444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.534843471,65.49696071,66.82108185,67.02686615,130.9322397,0,0.187867961,79.1716131,-0.187867961,100.8283869,0.78385563,0,169.4530551,67.02686615,213.3207985,2,9,26% -2018-02-24 18:00:00,57.62196549,137.2291492,505.8233158,788.8634108,83.38454112,393.4530328,308.7697334,84.68329936,80.87018954,3.813109816,125.1570707,0,125.1570707,2.514351571,122.6427191,1.005693019,2.395100483,-0.61040488,0.61040488,0.634539072,0.634539072,0.164849145,2.649291478,85.2103208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.73550224,1.821639154,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919402657,81.90740149,79.65490489,83.72904064,308.7697334,0,0.391410895,66.95768208,-0.391410895,113.0423179,0.922257005,0,364.4199545,83.72904064,419.218937,2,10,15% -2018-02-24 19:00:00,50.85910226,153.4930853,616.922942,832.617162,91.3503532,562.093671,468.8472423,93.24642873,88.59580301,4.650625726,152.33466,0,152.33466,2.754550196,149.5801098,0.887658789,2.678959717,-0.13924088,0.13924088,0.553965283,0.553965283,0.148074171,2.883441449,92.74138877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.16165576,1.99566224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089043514,89.14655047,87.25069927,91.14221271,468.8472423,0,0.563100623,55.72950116,-0.563100623,124.2704988,0.961205923,0,537.9094456,91.14221271,597.560201,2,11,11% -2018-02-24 20:00:00,47.36842211,172.5658485,670.5867418,849.9210808,94.95086797,684.5930722,587.4501571,97.14291509,92.08774897,5.055166117,165.4546383,0,165.4546383,2.863119001,162.5915193,0.826734927,3.011842233,0.2363348,-0.2363348,0.489738059,0.489738059,0.141593715,2.840942405,91.37447341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51824704,2.07431997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058253101,87.83261943,90.57650014,89.9069394,587.4501571,0,0.691182006,46.27625217,-0.691182006,133.7237478,0.977660154,0,664.9031111,89.9069394,723.7454048,2,12,9% -2018-02-24 21:00:00,47.89365866,192.634667,662.6873458,847.5030827,94.42912612,746.5376265,649.9602698,96.5773567,91.58173957,4.995617133,163.5236059,0,163.5236059,2.847386559,160.6762193,0.835902034,3.362109193,0.596700686,-0.596700686,0.428111862,0.428111862,0.142494235,2.545779604,81.88102312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.03185155,2.062921869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844408657,78.70715392,89.87626021,80.77007579,649.9602698,0,0.766911983,39.9226083,-0.766911983,140.0773917,0.98480347,0,729.9593893,80.77007579,782.8217885,2,13,7% -2018-02-24 22:00:00,52.31053578,211.0965363,593.8324221,824.4856779,89.75710161,738.8590259,647.3318725,91.52715346,87.05059383,4.476559633,146.6880537,0,146.6880537,2.706507782,143.9815459,0.912991083,3.684329597,1.007262597,-1.007262597,0.357901641,0.357901641,0.151148873,2.036629089,65.50499237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.67634192,1.960855675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475530842,62.96589027,85.15187276,64.92674594,647.3318725,0,0.785134163,38.26691161,-0.785134163,141.7330884,0.986316616,0,723.626055,64.92674594,766.1193117,2,14,6% -2018-02-24 23:00:00,59.73753853,226.5749165,469.3928014,771.5189936,80.57666679,656.184165,574.4987008,81.6854642,78.14698299,3.538481209,116.2394029,0,116.2394029,2.4296838,113.8097191,1.042616734,3.954478296,1.572615498,-1.572615498,0.261220601,0.261220601,0.171661488,1.373074271,44.16278847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.11785251,1.760297642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994787635,42.45095209,76.11264015,44.21124973,574.4987008,0,0.744633257,41.87239188,-0.744633257,138.1276081,0.982852851,0,640.7603263,44.21124973,669.695705,2,15,5% -2018-02-24 00:00:00,69.16591295,239.2423364,300.1052308,659.8062941,65.43650747,493.4470976,427.7214223,65.72567533,63.46335534,2.262319995,74.73713984,0,74.73713984,1.973152135,72.76398771,1.207172911,4.175566481,2.58162549,-2.58162549,0.088669729,0.088669729,0.218045208,0.650147619,20.9109823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.0033911,1.429542005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.471029737,20.10043158,61.47442083,21.52997358,427.7214223,0,0.648253019,49.58998386,-0.648253019,130.4100161,0.972869623,0,477.5915995,21.52997358,491.6825366,2,16,3% -2018-02-24 01:00:00,79.80434712,249.9011604,107.7554369,393.4717782,38.10697089,235.6683649,197.8981538,37.77021112,36.95790512,0.812305999,27.27561899,0,27.27561899,1.149065772,26.12655322,1.392848615,4.361598053,5.560178529,-5.560178529,0,0,0.353643139,0.287266443,9.239476279,0.296118082,1,0.177947971,0,0.941807178,0.980569141,0.724496596,1,35.81557408,0.83249424,0.044425006,0.312029739,0.88175475,0.606251346,0.961238037,0.922476074,0.197591306,8.88133604,36.01316538,9.71383028,139.296932,0,0.50295387,59.80438032,-0.50295387,120.1956197,0.950587304,0,168.4270605,9.71383028,174.7845681,2,17,4% -2018-02-24 02:00:00,91.29679532,259.3933109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593429675,4.527267333,-43.58271473,43.58271473,1,0,#DIV/0!,0,0,1,0.856799931,0,0.022940851,0.961238037,1,0.661500293,0.937003697,0,0,0.115824807,0.24050359,0.724496596,0.448993192,0.972028436,0.933266473,0,0,0,0,0,0,0.316081072,71.57391052,-0.316081072,108.4260895,0.891812736,0,0,0,0,2,18,0% -2018-02-24 03:00:00,103.0544358,268.4857824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798639213,4.685960898,-4.090248432,4.090248432,1,0.770372633,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103734937,84.04571421,-0.103734937,95.95428579,0.568002312,0,0,0,0,2,19,0% -2018-02-24 04:00:00,114.8591008,277.9662123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004669485,4.851425615,-1.906305847,1.906305847,1,0.856151189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120944695,96.94662676,0.120944695,83.05337324,0,0.636587904,0,0,0,2,20,0% -2018-02-24 05:00:00,126.3627717,288.8470093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205446419,5.041331347,-1.057808925,1.057808925,1,0.71104967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.342634861,110.0374856,0.342634861,69.96251441,0,0.904072058,0,0,0,2,21,0% -2018-02-24 06:00:00,137.0230695,302.7000448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391503713,5.283112428,-0.564636749,0.564636749,1,0.626712261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546215704,123.1077798,0.546215704,56.89222018,0,0.958461072,0,0,0,2,22,0% -2018-02-24 07:00:00,145.8036095,321.9897294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544753047,5.619780936,-0.210095116,0.210095116,1,0.56608207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717800909,135.8732166,0.717800909,44.12678339,0,0.980342802,0,0,0,2,23,0% -2018-02-25 08:00:00,150.7899079,348.7831178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631780371,6.087413781,0.085373454,-0.085373454,1,0.515553969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845683999,147.745295,0.845683999,32.25470502,0,0.990876261,0,0,0,2,0,0% -2018-02-25 09:00:00,149.9578334,18.96864794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617257931,0.331065361,0.363710097,-0.363710097,1,0.4679556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921136127,157.0927452,0.921136127,22.90725482,0,0.995719206,0,0,0,2,1,0% -2018-02-25 10:00:00,143.7120396,43.75774049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.508248266,0.763716645,0.658572283,-0.658572283,1,0.417531196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939001063,159.884469,0.939001063,20.11553097,0,0.996751924,0,0,0,2,2,0% -2018-02-25 11:00:00,134.2722901,61.29611961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343493557,1.069819106,1.013917369,-1.013917369,1,0.356763608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898046866,153.9025124,0.898046866,26.09748758,0,0.994323618,0,0,0,2,3,0% -2018-02-25 12:00:00,123.3019108,74.1382464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152024317,1.293956501,1.518275131,-1.518275131,1,0.270513351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801050299,143.2305159,0.801050299,36.76948414,0,0.987581947,0,0,0,2,4,0% -2018-02-25 13:00:00,111.6625571,84.50675214,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948879272,1.474921065,2.437408757,-2.437408757,1,0.113332243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654608163,130.8899455,0.654608163,49.11005454,0,0.973618429,0,0,0,2,5,0% -2018-02-25 14:00:00,99.82179929,93.781685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742219063,1.636799181,5.285806923,-5.285806923,1,0,#DIV/0!,0,0,0.272077453,1,0.186976069,0,0.940627639,0.979389603,0.724496596,1,0,0,0.041230883,0.312029739,0.889738381,0.614234977,0.961238037,0.922476074,0,0,0,0,0,0,-0.468688338,117.9491873,0.468688338,62.05081266,0,0.9433193,0,0,0,2,6,0% -2018-02-25 15:00:00,87.81566694,102.8880419,4.798743149,32.48488824,3.560595621,3.489405478,0,3.489405478,3.453230525,0.036174953,9.430462738,8.159586809,1.27087593,0.107365095,1.163510834,1.532672523,1.795735092,-22.01580794,22.01580794,0,0,0.741985039,0.026841274,0.863307631,1,0.696517101,0,0.045390709,0.961238037,1,0.603853478,0.879356882,3.319376531,0.073809643,0.115824807,0.175237101,0.724496596,0.448993192,0.980919781,0.942157818,0.019446411,0.836679933,3.338822943,0.910489576,0,2.476295057,-0.251181003,104.5474089,0.251181003,75.45259114,0,0.85094036,3.338822943,3.017668984,5.313826939,2,7,59% -2018-02-25 16:00:00,76.75019342,112.592961,161.3731278,495.4947063,47.80717563,47.5821117,0,47.5821117,46.36561289,1.216498802,55.29000967,14.72166379,40.56834589,1.441562735,39.12678315,1.339543577,1.965117884,-3.126493001,3.126493001,0.935184518,0.935184518,0.296252395,1.161009742,37.34206424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.56839072,1.044407294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841147606,35.89461252,45.40953832,36.93901981,0,14.72166379,-0.029711042,91.70256784,0.029711042,88.29743216,0,0,45.40953832,36.93901981,69.58538801,2,8,53% -2018-02-25 17:00:00,66.32623329,123.6834547,352.0588368,701.2182562,70.49972797,205.5211574,134.4932881,71.02786928,68.37390106,2.653968222,87.4865679,0,87.4865679,2.125826915,85.36074098,1.157611151,2.158683514,-1.350853921,1.350853921,0.761163315,0.761163315,0.200249846,2.147034614,69.05601357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.72359442,1.540154363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555519269,66.37926692,67.27911369,67.91942128,134.4932881,0,0.191799468,78.94218228,-0.191799468,101.0578177,0.789311059,0,173.4361534,67.91942128,217.8880563,2,9,26% -2018-02-25 18:00:00,57.28928623,137.0280159,511.5476482,791.6303246,83.75246873,398.1675336,313.0842486,85.08328503,81.22702278,3.856262251,126.5560957,0,126.5560957,2.525445946,124.0306498,0.999886671,2.391590046,-0.607675132,0.607675132,0.634072257,0.634072257,0.16372369,2.676181594,86.07519938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.07850392,1.829676991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938884455,82.73875567,80.01738837,84.56843266,313.0842486,0,0.395492996,66.70327551,-0.395492996,113.2967245,0.923575511,0,369.1743332,84.56843266,424.522681,2,10,15% -2018-02-25 19:00:00,50.49823502,153.3682924,622.6591588,834.7478002,91.67442219,567.125382,473.5214142,93.60396787,88.91010012,4.693867751,153.735244,0,153.735244,2.764322072,150.9709219,0.881360468,2.67678167,-0.140087981,0.140087981,0.554110145,0.554110145,0.147230505,2.909065533,93.56554739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.4637701,2.002741931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107608076,89.93876309,87.57137817,91.94150502,473.5214142,0,0.567262848,55.4404245,-0.567262848,124.5595755,0.961857439,0,543.031473,91.94150502,603.2053492,2,11,11% -2018-02-25 20:00:00,46.99473676,172.5663995,676.232796,851.7945602,95.25307941,689.7739009,592.2953248,97.47857608,92.38084762,5.097728458,166.8327023,0,166.8327023,2.872231791,163.9604705,0.820212888,3.011851849,0.233273246,-0.233273246,0.490261615,0.490261615,0.140858414,2.865242286,92.15604112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79998461,2.080922155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.075858282,88.58389205,90.87584289,90.6648142,592.2953248,0,0.695349973,45.94488787,-0.695349973,134.0551121,0.978093763,0,670.1962059,90.6648142,729.5345135,2,12,9% -2018-02-25 21:00:00,47.53461181,192.7751904,668.1590262,849.3542896,94.7219771,751.7644533,654.8618283,96.90262498,91.86576,5.036864971,164.8591087,0,164.8591087,2.856217096,162.0028916,0.829635485,3.364561789,0.591490473,-0.591490473,0.429002861,0.429002861,0.141765618,2.568552433,82.61347558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.3048628,2.069319563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.860907494,79.41121508,90.16577029,81.48053465,654.8618283,0,0.771011386,39.55520247,-0.771011386,140.4447975,0.985150115,0,735.3029756,81.48053465,788.6303559,2,13,7% -2018-02-25 22:00:00,51.98845589,211.3370073,599.0577559,826.5466553,90.05360172,744.078372,652.2242682,91.85410377,87.33815337,4.515950407,147.9639369,0,147.9639369,2.715448354,145.2484886,0.907369728,3.688526609,0.999007102,-0.999007102,0.359313413,0.359313413,0.150325408,2.05757939,66.17882606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95275508,1.967333089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490709264,63.61360485,85.44346435,65.58093794,652.2242682,0,0.789095527,37.89893278,-0.789095527,142.1010672,0.986636315,0,728.9516132,65.58093794,771.8730255,2,14,6% -2018-02-25 23:00:00,59.45816664,226.8631129,474.3050488,774.1631114,80.90064849,661.4175459,579.3808386,82.03670725,78.46119544,3.575511805,117.4402034,0,117.4402034,2.439453043,115.0007504,1.037740775,3.959508271,1.558514694,-1.558514694,0.26363198,0.26363198,0.170566703,1.391703059,44.76195431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.41988548,1.767375426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.008284128,43.02689309,76.4281696,44.79426852,579.3808386,0,0.748396339,41.54834584,-0.748396339,138.4516542,0.98319048,0,646.0698946,44.79426852,675.3868474,2,15,5% -2018-02-25 00:00:00,68.92352511,239.5472172,304.6084357,663.9270827,65.85115045,498.8892427,432.7274804,66.16176236,63.8654953,2.296267056,75.84149703,0,75.84149703,1.985655151,73.85584188,1.202942445,4.180887655,2.551671923,-2.551671923,0.093792091,0.093792091,0.216182951,0.66522579,21.3959481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.38994333,1.438600398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48195382,20.56659914,61.87189715,22.00519954,432.7274804,0,0.651769587,49.32484562,-0.651769587,130.6751544,0.973285773,0,483.0393974,22.00519954,497.4413604,2,16,3% -2018-02-25 01:00:00,79.59017782,250.212016,111.4466597,401.8348907,38.84001517,241.9094867,203.4005093,38.5089774,37.6688454,0.840131996,28.1927027,0,28.1927027,1.171169762,27.02153294,1.389110655,4.367023508,5.443278503,-5.443278503,0,0,0.348507665,0.29279244,9.417211351,0.286072146,1,0.181686888,0,0.941320879,0.980082842,0.724496596,1,36.50088985,0.848508505,0.04309811,0.312029739,0.8850615,0.609558096,0.961238037,0.922476074,0.201550102,9.052181752,36.70243995,9.900690257,145.2132891,0,0.506179314,59.59033082,-0.506179314,120.4096692,0.951220776,0,174.8323375,9.900690257,181.3121412,2,17,4% -2018-02-25 02:00:00,91.09784032,259.7106931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589957255,4.532806697,-51.43547157,51.43547157,1,0,#DIV/0!,0,0,1,0.879896289,0,0.019439387,0.961238037,1,0.670848943,0.946352347,0,0,0.115824807,0.251106627,0.724496596,0.448993192,0.970496767,0.931734804,0,0,0,0,0,0,0.319053517,71.39430476,-0.319053517,108.6056952,0.893286479,0,0,0,0,2,18,0% -2018-02-25 03:00:00,102.8623201,268.8158018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795286162,4.691720823,-4.145425176,4.145425176,1,0.760936854,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106435229,83.89013748,-0.106435229,96.10986252,0.580230727,0,0,0,0,2,19,0% -2018-02-25 04:00:00,114.6628538,278.3177594,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001244329,4.857561268,-1.917248687,1.917248687,1,0.858022525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118488148,96.80485732,0.118488148,83.19514268,0,0.628016865,0,0,0,2,20,0% -2018-02-25 05:00:00,126.1488753,289.228714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201713221,5.04799335,-1.060378437,1.060378437,1,0.711489082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340376748,109.8998293,0.340376748,70.10017072,0,0.90310395,0,0,0,2,21,0% -2018-02-25 06:00:00,136.773607,303.1096572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387149772,5.290261513,-0.564226127,0.564226127,1,0.62664204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544096957,122.9629744,0.544096957,57.03702555,0,0.958104614,0,0,0,2,22,0% -2018-02-25 07:00:00,145.4982947,322.3756948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539424298,5.626517302,-0.20810422,0.20810422,1,0.565741607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715752786,135.7049268,0.715752786,44.29507324,0,0.980143478,0,0,0,2,23,0% -2018-02-26 08:00:00,150.4276257,348.981397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.625457355,6.090874406,0.088585429,-0.088585429,1,0.515004689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843632841,147.5257507,0.843632841,32.47424934,0,0.990732511,0,0,0,2,0,0% -2018-02-26 09:00:00,149.5870541,18.85426639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610786612,0.329069027,0.368249731,-0.368249731,1,0.467179277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919008448,156.7815515,0.919008448,23.21844847,0,0.995593536,0,0,0,2,1,0% -2018-02-26 10:00:00,143.3783786,43.46848372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502424783,0.758668162,0.664978522,-0.664978522,1,0.416435665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936728629,159.5092358,0.936728629,20.49076424,0,0.996622748,0,0,0,2,2,0% -2018-02-26 11:00:00,133.9772578,60.97268498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338344272,1.064174107,1.023516578,-1.023516578,1,0.355122046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895571409,153.5819201,0.895571409,26.41807992,0,0.994169723,0,0,0,2,3,0% -2018-02-26 12:00:00,123.0315608,73.82687563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14730582,1.288522056,1.534580212,-1.534580212,1,0.267725018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798327541,142.9706898,0.798327541,37.02931023,0,0.987369065,0,0,0,2,4,0% -2018-02-26 13:00:00,111.4036594,84.21416746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944360655,1.469814499,2.473113153,-2.473113153,1,0.107226432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651610873,130.6631652,0.651610873,49.33683479,0,0.973267088,0,0,0,2,5,0% -2018-02-26 14:00:00,99.56376482,93.50460518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737715512,1.631963226,5.442726138,-5.442726138,1,0,#DIV/0!,0,0,0.286023997,1,0.181704924,0,0.941318525,0.980080489,0.724496596,1,0,0,0.043091724,0.312029739,0.885077449,0.609574045,0.961238037,0.922476074,0,0,0,0,0,0,-0.465408209,117.7366439,0.465408209,62.26335614,0,0.94256743,0,0,0,2,6,0% -2018-02-26 15:00:00,87.56667645,102.6224673,6.151796397,40.61021795,4.427618847,4.340484643,0,4.340484643,4.294109803,0.04637484,11.69265594,10.06757263,1.625083304,0.133509044,1.49157426,1.528326819,1.791099941,-19.81974075,19.81974075,0,0,0.719727794,0.033377261,1.073527451,1,0.657478995,0,0.050411998,0.961238037,1,0.591504442,0.867007846,4.127661677,0.091569868,0.115824807,0.161280904,0.724496596,0.448993192,0.982698949,0.943936986,0.024181712,1.040701302,4.151843389,1.13227117,0,3.4483551,-0.247907378,104.353716,0.247907378,75.64628395,0,0.848311771,4.151843389,4.057551391,6.807429623,2,7,64% -2018-02-26 16:00:00,76.4691911,112.3379481,166.4708905,503.9008224,48.5741273,48.36436603,0,48.36436603,47.10943814,1.25492789,54.89914378,13.07165988,41.8274839,1.464689158,40.36279474,1.334639161,1.960667069,-3.071650668,3.071650668,0.94456311,0.94456311,0.291787514,1.205658044,38.7781071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.28338384,1.061162309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.873495148,37.27499154,46.15687899,38.33615385,0,13.07165988,-0.025940938,91.486473,0.025940938,88.513527,0,0,46.15687899,38.33615385,71.24712496,2,8,54% -2018-02-26 17:00:00,66.02039672,123.4451547,357.6711157,705.4527158,70.9670868,209.6362929,138.1128496,71.52344324,68.82716729,2.696275951,88.86142247,0,88.86142247,2.139919508,86.72150297,1.152273296,2.154524395,-1.339004162,1.339004162,0.759136887,0.759136887,0.198414364,2.175699451,69.97797326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.15929117,1.550364399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576286846,67.26548964,67.73557801,68.81585404,138.1128496,0,0.195779032,78.70976396,-0.195779032,101.290236,0.794610035,0,177.4814343,68.81585404,222.5200345,2,9,25% -2018-02-26 18:00:00,56.95373817,136.8264486,517.3019986,794.3695441,84.11956208,402.9216563,317.4389684,85.48268789,81.58304691,3.899640975,127.9623738,0,127.9623738,2.536515165,125.4258587,0.994030252,2.388072032,-0.604894123,0.604894123,0.633596677,0.633596677,0.162612096,2.703146459,86.94248213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.42072785,1.837696602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958420408,83.57242084,80.37914826,85.41011745,317.4389684,0,0.399611202,66.4461249,-0.399611202,113.5538751,0.924878382,0,373.9715879,85.41011745,429.8708016,2,10,15% -2018-02-26 19:00:00,50.13457478,153.2442061,628.4111661,836.856316,91.99750338,572.1807673,478.2200993,93.96066803,89.22343921,4.737228812,155.1396269,0,155.1396269,2.774064161,152.3655627,0.875013399,2.674615957,-0.140865904,0.140865904,0.554243178,0.554243178,0.14639699,2.934716257,94.39056286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.76496355,2.009800042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126191938,90.73179934,87.89115549,92.74159938,478.2200993,0,0.571448276,55.14871967,-0.571448276,124.8512803,0.962503017,0,548.1794439,92.74159938,608.8769659,2,11,11% -2018-02-26 20:00:00,46.61863325,172.5700526,681.8820689,853.6467036,95.55381977,694.9627247,597.1498901,97.81283461,92.67251955,5.140315063,168.2115024,0,168.2115024,2.881300222,165.3302022,0.813648643,3.011915608,0.230290544,-0.230290544,0.490771687,0.490771687,0.140132472,2.889531009,92.93724995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.08035076,2.087492203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.09345538,89.33481969,91.17380614,91.42231189,597.1498901,0,0.699528139,45.61084121,-0.699528139,134.3891588,0.978523247,0,675.4988556,91.42231189,735.3329303,2,12,9% -2018-02-26 21:00:00,47.17404831,192.9211941,673.6236658,851.181857,95.01273443,756.9843263,659.7585166,97.22580966,92.14774992,5.078059732,166.1928412,0,166.1928412,2.864984503,163.3278567,0.823342464,3.367110034,0.586377421,-0.586377421,0.429877245,0.429877245,0.141047204,2.591290542,83.34481132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57592224,2.075671519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877381176,80.11420282,90.45330341,82.18987434,659.7585166,0,0.775108763,39.18510552,-0.775108763,140.8148945,0.985492924,0,740.640653,82.18987434,794.432282,2,13,7% -2018-02-26 22:00:00,51.66594049,211.5836239,604.2688579,828.5778455,90.34723328,749.2770704,657.0989056,92.17816475,87.62293085,4.555233895,149.236283,0,149.236283,2.724302429,146.5119806,0.901740773,3.692830881,0.990891584,-0.990891584,0.360701249,0.360701249,0.149514959,2.07848934,66.85136194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22649403,1.973747836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505858451,64.26007191,85.73235249,66.23381974,657.0989056,0,0.793044262,37.52908045,-0.793044262,142.4709196,0.986951817,0,734.2573111,66.23381974,777.6060215,2,14,6% -2018-02-26 23:00:00,59.17912863,227.1567793,479.1998118,776.7635342,81.22056601,666.6176763,584.2337995,82.38387686,78.77146627,3.612410596,118.6366421,0,118.6366421,2.449099737,116.1875424,1.032870643,3.964633717,1.544669399,-1.544669399,0.265999665,0.265999665,0.169492066,1.410310015,45.360418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.7181296,1.774364422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.021764805,43.60215915,76.7398944,45.37652358,584.2337995,0,0.752138552,41.22403305,-0.752138552,138.7759669,0.983522886,0,651.3472071,45.37652358,681.0452343,2,15,5% -2018-02-26 00:00:00,68.68182106,239.8566088,309.0968375,667.968578,66.25898415,504.2842448,437.693111,66.59113383,64.26103131,2.330102524,76.94205968,0,76.94205968,1.997952842,74.94410684,1.198723914,4.186287556,2.522413688,-2.522413688,0.098795544,0.098795544,0.21436319,0.680344747,21.88222575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.77014758,1.447510033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.492907454,21.03402772,62.26305504,22.48153775,437.693111,0,0.655260031,49.06063019,-0.655260031,130.9393698,0.973694415,0,488.4423927,22.48153775,503.1561095,2,16,3% -2018-02-26 01:00:00,79.37668614,250.5265979,115.1469244,410.0288225,39.55757991,248.0922206,208.8594216,39.23279908,38.36477292,0.868026155,29.11151194,0,29.11151194,1.192806986,27.91870495,1.385384523,4.372513997,5.331228642,-5.331228642,0,0,0.343540048,0.298201747,9.591193231,0.276170125,1,0.185419457,0,0.940832305,0.979594268,0.724496596,1,37.17122075,0.864184601,0.041779223,0.312029739,0.888362086,0.612858682,0.961238037,0.922476074,0.205444451,9.219419752,37.3766652,10.08360435,151.1786891,0,0.509377415,59.37763146,-0.509377415,120.6223685,0.951840956,0,181.2747331,10.08360435,187.8742505,2,17,4% -2018-02-26 02:00:00,90.89946759,260.0312437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586494998,4.53840136,-62.72072451,62.72072451,1,0,#DIV/0!,0,0,1,0.902496378,0,0.015942343,0.961238037,1,0.680281787,0.955785191,0,0,0.115824807,0.261809925,0.724496596,0.448993192,0.96892636,0.930164397,0,0,0,0,0,0,0.321998833,71.21615101,-0.321998833,108.783849,0.894719934,0,0,0,0,2,18,0% -2018-02-26 03:00:00,102.6704712,269.1485873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791937767,4.697529025,-4.201932464,4.201932464,1,0.751273539,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.10911302,83.7358124,-0.10911302,96.2641876,0.591759544,0,0,0,0,2,19,0% -2018-02-26 04:00:00,114.4664228,278.6717113,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997815961,4.863738894,-1.928235381,1.928235381,1,0.85990136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.116046479,96.663988,0.116046479,83.336012,0,0.619138154,0,0,0,2,20,0% -2018-02-26 05:00:00,125.9342184,289.6123153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197966752,5.054688456,-1.062895991,1.062895991,1,0.711919609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338123428,109.7625843,0.338123428,70.23741566,0,0.902125006,0,0,0,2,21,0% -2018-02-26 06:00:00,136.5227441,303.5201991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382771389,5.297426821,-0.56374841,0.56374841,1,0.626560346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.54197115,122.8179247,0.54197115,57.18207534,0,0.957744167,0,0,0,2,22,0% -2018-02-26 07:00:00,145.1911126,322.7612638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53406296,5.633246751,-0.206039452,0.206039452,1,0.565388511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713684804,135.5355175,0.713684804,44.46448251,0,0.979941061,0,0,0,2,23,0% -2018-02-27 08:00:00,150.063331,349.1807895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619099212,6.094354462,0.091881363,-0.091881363,1,0.514441051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84154896,147.3040493,0.84154896,32.69595073,0,0.99058575,0,0,0,2,0,0% -2018-02-27 09:00:00,149.2135104,18.74593886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604267045,0.327178354,0.372892325,-0.372892325,1,0.466385346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916836008,156.4678249,0.916836008,23.53217507,0,0.99546462,0,0,0,2,1,0% -2018-02-27 10:00:00,143.040932,43.18521778,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496535228,0.753724238,0.671524894,-0.671524894,1,0.415316169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934401052,159.1315953,0.934401052,20.86840474,0,0.996489786,0,0,0,2,2,0% -2018-02-27 11:00:00,133.6781168,60.65285439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333123275,1.05859201,1.033335877,-1.033335877,1,0.353442847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893032801,153.2568567,0.893032801,26.74314329,0,0.994011015,0,0,0,2,3,0% -2018-02-27 12:00:00,122.7572295,73.51736854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142517835,1.283120138,1.551315246,-1.551315246,1,0.264863158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795536549,142.7059635,0.795536549,37.29403654,0,0.987149336,0,0,0,2,4,0% -2018-02-27 13:00:00,111.1410535,83.92242526,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939777318,1.464722637,2.510070272,-2.510070272,1,0.100906393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648543543,130.431881,0.648543543,49.56811898,0,0.972904174,0,0,0,2,5,0% -2018-02-27 14:00:00,99.30231529,93.22774773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733152357,1.627131152,5.610237735,-5.610237735,1,0,#DIV/0!,0,0,0.30033404,1,0.176393046,0,0.942008502,0.980770465,0.724496596,1,0,0,0.044978546,0.312029739,0.880379393,0.604875989,0.961238037,0.922476074,0,0,0,0,0,0,-0.462059635,117.5200921,0.462059635,62.47990793,0,0.94178886,0,0,0,2,6,0% -2018-02-27 15:00:00,87.31305292,102.356695,7.720326106,49.77053679,5.387138787,5.282895755,0,5.282895755,5.224696676,0.058199079,14.20552051,12.17119596,2.034324558,0.162442111,1.871882447,1.523900253,1.786461339,-17.99965884,17.99965884,0,0,0.697786429,0.040610528,1.306174169,1,0.616605085,0,0.055499555,0.961238037,1,0.579196192,0.854699596,5.022177176,0.111244061,0.115824807,0.147377945,0.724496596,0.448993192,0.984427771,0.945665808,0.029422189,1.266422889,5.051599365,1.377666949,0,4.666374638,-0.244546206,104.1550175,0.244546206,75.84498248,0,0.845539662,5.051599365,5.323271783,8.535574282,2,7,69% -2018-02-27 16:00:00,76.18521925,112.0824293,171.637569,512.1957822,49.33342371,49.13971546,0,49.13971546,47.84583896,1.293876495,54.43006361,11.32696312,43.10310049,1.487584746,41.61551575,1.329682917,1.956207426,-3.018259939,3.018259939,0.953693462,0.953693462,0.287427887,1.251182779,40.24233907,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.99124031,1.077750084,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.906477664,38.68246701,46.89771798,39.76021709,0,11.32696312,-0.022114519,91.26717188,0.022114519,88.73282812,0,0,46.89771798,39.76021709,72.91998486,2,8,55% -2018-02-27 17:00:00,65.7117641,123.206177,363.3262936,709.6390839,71.43242303,213.8062149,141.7888359,72.01737899,69.27847192,2.738907071,90.24661744,0,90.24661744,2.153951112,88.09266633,1.146886641,2.150353448,-1.327225526,1.327225526,0.757122622,0.757122622,0.196606809,2.204475002,70.9034939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.59310235,1.560530248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597134635,68.15513529,68.19023698,69.71566553,141.7888359,0,0.199804153,78.47449334,-0.199804153,101.5255067,0.799754951,0,181.5865605,69.71566553,227.2140693,2,9,25% -2018-02-27 18:00:00,56.61545973,136.6244006,523.0832528,797.0800215,84.48561987,407.7126419,321.8313527,85.88128923,81.93806672,3.943222511,129.3751439,0,129.3751439,2.547553158,126.8275907,0.98812618,2.384545628,-0.602067015,0.602067015,0.633113213,0.633113213,0.161514672,2.730172172,87.81172195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.76198639,1.845693591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978000445,84.40796722,80.73998684,86.25366081,321.8313527,0,0.403762915,66.18637179,-0.403762915,113.8136282,0.926164952,0,378.8089061,86.25366081,435.260202,2,10,15% -2018-02-27 19:00:00,49.76825088,153.1207664,634.1760134,838.942054,92.31942459,577.2569589,482.940619,94.31633998,89.53565331,4.780686666,156.547088,0,156.547088,2.783771274,153.7633167,0.868619841,2.672461527,-0.141577748,0.141577748,0.55436491,0.55436491,0.14557382,2.960381476,95.21604451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06507562,2.016832811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144786302,91.5252837,88.20986192,93.54211651,482.940619,0,0.575654322,54.85453238,-0.575654322,125.1454676,0.963142318,0,553.3504091,93.54211651,614.5718535,2,11,11% -2018-02-27 20:00:00,46.24023056,172.5767711,687.5318806,855.4770905,95.8529435,700.1567676,602.0112383,98.14552932,92.96262359,5.182905731,169.5903843,0,169.5903843,2.890319906,166.7000644,0.80704427,3.012032869,0.227384448,-0.227384448,0.491268659,0.491268659,0.139415998,2.913798228,93.71776713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.3592098,2.094026933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.111036897,90.0850825,91.4702467,92.17910943,602.0112383,0,0.703714039,45.27425341,-0.703714039,134.7257466,0.978948412,0,680.8081924,92.17910943,741.1375759,2,12,9% -2018-02-27 21:00:00,46.81208171,193.0726604,679.0789399,852.9855475,95.30128117,762.1947172,664.6479374,97.54677981,92.42759591,5.119183893,167.5242363,0,167.5242363,2.873685251,164.6505511,0.817024956,3.369753619,0.581359399,-0.581359399,0.430735377,0.430735377,0.140339032,2.613985443,84.07475735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84492085,2.081975182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893823555,80.8158547,90.7387444,82.89782988,664.6479374,0,0.779201874,38.81244225,-0.779201874,141.1875578,0.985831777,0,745.9698013,82.89782988,800.224773,2,13,7% -2018-02-27 22:00:00,51.34309161,211.836336,609.4638127,830.5792199,90.63791385,754.452972,661.95373,92.49924198,87.90484632,4.594395659,150.504625,0,150.504625,2.733067521,147.7715575,0.896105997,3.697241539,0.982913127,-0.982913127,0.362065645,0.362065645,0.148717466,2.099352245,67.52238468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.49748191,1.980098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520973555,64.9050845,86.01845547,66.88518261,661.95373,0,0.796978439,37.15747443,-0.796978439,142.8425256,0.987263046,0,739.540911,66.88518261,783.3159253,2,14,6% -2018-02-27 23:00:00,58.900503,227.4558232,484.0755953,779.3206061,81.5363867,671.7829097,589.0559796,82.72693012,79.0777638,3.649166312,119.8283554,0,119.8283554,2.458622896,117.3697325,1.028007708,3.969853017,1.531073411,-1.531073411,0.268324716,0.268324716,0.168437301,1.428889916,45.95801146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01255444,1.781263919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03522588,44.17658871,77.04778032,45.95785263,589.0559796,0,0.75585834,40.89957377,-0.75585834,139.1004262,0.983850039,0,656.5905286,45.95785263,686.669024,2,15,5% -2018-02-27 00:00:00,68.44085244,240.1703954,313.5692672,671.9320916,66.66007977,509.6311137,442.6172637,67.01385,64.65003241,2.363817588,78.03854657,0,78.03854657,2.010047355,76.02849921,1.194518218,4.191764165,2.493827356,-2.493827356,0.103684095,0.103684095,0.212584863,0.69549964,22.36965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14407024,1.456272466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.503887122,21.50256729,62.64795736,22.95883975,442.6172637,0,0.658723209,48.79742998,-0.658723209,131.20257,0.974095585,0,493.7994797,22.95883975,508.8255811,2,16,3% -2018-02-27 01:00:00,79.16390298,250.8447811,118.8544107,418.0553933,40.2599424,254.2151386,214.2732072,39.94193135,39.04595659,0.895974752,30.03161373,0,30.03161373,1.213985807,28.81762792,1.381670756,4.378067341,5.223731748,-5.223731748,0,0,0.338733263,0.303496452,9.761489149,0.266408812,1,0.189145643,0,0.940341485,0.979103448,0.724496596,1,37.82682154,0.879528584,0.040468257,0.312029739,0.89165647,0.616153066,0.961238037,0.922476074,0.209275857,9.383114666,38.03609739,10.26264325,157.1889366,0,0.512547405,59.16633939,-0.512547405,120.8336606,0.952448048,0,187.7503932,10.26264325,194.4670879,2,17,4% -2018-02-27 02:00:00,90.10831854,260.3548324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572686842,4.54404905,-520.3408909,520.3408909,1,0,#DIV/0!,0,0,1,0.988702312,0,0.001921815,0.961238037,1,0.71906141,0.994564814,0,0,0.115824807,0.305853113,0.724496596,0.448993192,0.962211711,0.923449748,0,0,0,0,0,0,0.33467272,70.44736257,-0.33467272,109.5526374,0.900600312,0,0,0,0,2,18,0% -2018-02-27 03:00:00,102.4788847,269.4840006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788593952,4.703383092,-4.259829986,4.259829986,1,0.741372479,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111768368,83.58273573,-0.111768368,96.41726427,0.602646236,0,0,0,0,2,19,0% -2018-02-27 04:00:00,114.2697959,279.0279149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994384174,4.869955819,-1.93926967,1.93926967,1,0.861788335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113619344,96.52399736,0.113619344,83.47600264,0,0.609934092,0,0,0,2,20,0% -2018-02-27 05:00:00,125.71879,289.9976342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194206817,5.06141354,-1.065363135,1.065363135,1,0.712341516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335874362,109.6257162,0.335874362,70.37428381,0,0.901134812,0,0,0,2,21,0% -2018-02-27 06:00:00,136.2704838,303.9314573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378368616,5.304604631,-0.563204817,0.563204817,1,0.626467386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539837656,122.672588,0.539837656,57.32741195,0,0.957379562,0,0,0,2,22,0% -2018-02-27 07:00:00,144.8820998,323.1462068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.528669668,5.639965274,-0.203901895,0.203901895,1,0.565022967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711596358,135.3649482,0.711596358,44.63505175,0,0.979735447,0,0,0,2,23,0% -2018-02-28 08:00:00,149.6971059,349.3810446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612707378,6.097849573,0.095260299,-0.095260299,1,0.513863219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839431888,147.0801769,0.839431888,32.91982306,0,0.990435906,0,0,0,2,0,0% -2018-02-28 09:00:00,148.8373415,18.64338241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59770166,0.325388407,0.377637133,-0.377637133,1,0.465573936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914618576,156.1516177,0.914618576,23.84838232,0,0.995332403,0,0,0,2,1,0% -2018-02-28 10:00:00,142.6998663,42.90783431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490582509,0.748882984,0.678211152,-0.678211152,1,0.414172752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932018424,158.7516686,0.932018424,21.24833144,0,0.996352992,0,0,0,2,2,0% -2018-02-28 11:00:00,133.3750255,60.3366378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.327833335,1.053072989,1.043376547,-1.043376547,1,0.351725791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890431517,152.9275213,0.890431517,27.07247875,0,0.99384745,0,0,0,2,3,0% -2018-02-28 12:00:00,122.479064,73.20976645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137662932,1.277751469,1.56848757,-1.56848757,1,0.261926518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792678218,142.4365043,0.792678218,37.56349572,0,0.986922702,0,0,0,2,4,0% -2018-02-28 13:00:00,110.8748805,83.63156675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935131723,1.459646198,2.548326422,-2.548326422,1,0.094364206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645407495,130.1962349,0.645407495,49.8037651,0,0.972529564,0,0,0,2,5,0% -2018-02-28 14:00:00,99.03758994,92.95114425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728532028,1.622303511,5.789355277,-5.789355277,1,0,#DIV/0!,0,0,0.315014244,1,0.171043056,0,0.942697068,0.981459031,0.724496596,1,0,0,0.046890881,0.312029739,0.875646545,0.600143141,0.961238037,0.922476074,0,0,0,0,0,0,-0.458644346,117.2996642,0.458644346,62.70033581,0,0.940983067,0,0,0,2,6,0% -2018-02-28 15:00:00,87.05508114,102.0907428,9.508752828,59.91268536,6.430684549,6.308456679,0,6.308456679,6.236775683,0.071680995,16.94447846,14.44506238,2.499416078,0.193908866,2.305507212,1.519397796,1.781819598,-16.46859506,16.46859506,0,0,0.676291062,0.048477216,1.559193921,1,0.573824163,0,0.060647169,0.961238037,1,0.566951712,0.842455116,5.995026014,0.132704365,0.115824807,0.133552597,0.724496596,0.448993192,0.986103499,0.947341536,0.035121578,1.511769614,6.030147593,1.644473978,0,6.156136557,-0.241101902,103.9515846,0.241101902,76.04841538,0,0.842618807,6.030147593,6.831750421,10.50139161,2,7,74% -2018-02-28 16:00:00,75.8984205,111.826404,176.8697793,520.3749162,50.08472477,49.90780463,0,49.90780463,48.57448553,1.333319107,53.88296454,9.488599569,44.39436497,1.510239245,42.88412572,1.324677335,1.95173894,-2.966295081,2.966295081,0.962579976,0.962579976,0.28317288,1.297554571,41.73381531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.69164311,1.094163192,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.94007387,40.1161307,47.63171698,41.21029389,0,9.488599569,-0.01823416,91.04479832,0.01823416,88.95520168,0,0,47.63171698,41.21029389,74.60303013,2,8,57% -2018-02-28 17:00:00,65.40047792,122.9664961,369.0211878,713.7756596,71.8955041,218.0284993,145.5190724,72.50942698,69.72758939,2.781837589,91.64137407,0,91.64137407,2.167914715,89.47345935,1.141453672,2.146170227,-1.315526809,1.315526809,0.755122024,0.755122024,0.194827578,2.233345471,71.83206743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02481114,1.570646831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.618051191,69.04771548,68.64286233,70.61836231,145.5190724,0,0.203872282,78.23650854,-0.203872282,101.7634915,0.804748416,0,185.7491053,70.61836231,231.9674111,2,9,25% -2018-02-28 18:00:00,56.27458974,136.4218176,528.8883079,799.7607948,84.85044707,412.5376997,326.2588232,86.27887649,82.29189302,3.986983468,130.7936475,0,130.7936475,2.558554044,128.2350935,0.982176876,2.381009888,-0.599198935,0.599198935,0.632622742,0.632622742,0.160431694,2.757245057,88.68247902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.1020977,1.853663695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997614658,85.24497203,81.09971236,87.09863573,326.2588232,0,0.407945507,65.92416003,-0.407945507,114.07584,0.927434611,0,383.683437,87.09863573,440.6877521,2,10,15% -2018-02-28 19:00:00,49.39939177,152.9979048,639.9507901,841.0044183,92.64001944,582.351092,487.6802916,94.67080043,89.84658105,4.824219372,157.9569165,0,157.9569165,2.793438392,155.1634781,0.862182035,2.670317188,-0.142226694,0.142226694,0.554475887,0.554475887,0.144761161,2.986049354,96.04161171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36395119,2.023836605,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163382592,92.3188503,88.52733378,94.3426869,487.6802916,0,0.579878394,54.55801001,-0.579878394,125.44199,0.963775025,0,558.541419,94.3426869,620.2868208,2,11,11% -2018-02-28 20:00:00,45.85964528,172.5865111,693.1796178,857.2853506,96.15031136,705.3532887,606.8767833,98.47650548,93.25102472,5.225480759,170.9687103,0,170.9687103,2.899286644,168.0694237,0.800401804,3.012202864,0.22455258,-0.22455258,0.491752937,0.491752937,0.138709086,2.93803399,94.49727255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63643194,2.100523304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.128595624,90.83437275,91.76502756,92.93489606,606.8767833,0,0.70790523,44.93526634,-0.70790523,135.0647337,0.979369077,0,686.1213824,92.93489606,746.9454132,2,12,9% -2018-02-28 21:00:00,46.44882184,193.2295657,684.522613,854.7651716,95.58750758,767.3931643,669.5277522,97.86541215,92.70519155,5.1602206,168.8527487,0,168.8527487,2.882316034,165.9704326,0.810684875,3.372492134,0.576434112,-0.576434112,0.431577651,0.431577651,0.139641125,2.636629097,84.80305513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.11175633,2.088228155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.910228806,81.51592223,91.02198514,83.60415038,669.5277522,0,0.783288527,38.43733616,-0.783288527,141.5626638,0.986166562,0,751.2878663,83.60415038,806.0051107,2,13,7% -2018-02-28 22:00:00,51.02000629,212.0950883,614.6408117,832.5508015,90.92556913,759.6040224,666.7867726,92.81724981,88.18382774,4.633422064,151.7685223,0,151.7685223,2.741741389,149.0267809,0.890467094,3.701757617,0.975068615,-0.975068615,0.363407136,0.363407136,0.147932853,2.120161892,68.19169447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.76564946,1.986382303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.536050074,65.54845052,86.30169954,67.53483282,666.7867726,0,0.800896199,36.78423149,-0.800896199,143.2157685,0.987569937,0,744.8002707,67.53483282,789.0004681,2,14,6% -2018-02-28 23:00:00,58.62236239,227.7601481,488.9310226,781.8347321,81.84808697,676.9117187,593.845885,83.06583373,79.38006516,3.685768573,121.0150089,0,121.0150089,2.468021809,118.5469871,1.023153239,3.975164489,1.517720308,-1.517720308,0.270608231,0.270608231,0.167402114,1.447438012,46.554582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.303138,1.788073399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048663912,44.75003501,77.35180191,46.53810841,593.845885,0,0.759554239,40.57508367,-0.759554239,139.4249163,0.984171916,0,661.7982446,46.53810841,692.2565058,2,15,5% -2018-02-28 00:00:00,68.20066474,240.4884591,318.0246818,675.8190129,67.05451786,514.929002,447.4990208,67.42998112,65.03257674,2.397404386,79.13070719,0,79.13070719,2.021941118,77.10876607,1.190326152,4.197315424,2.465889721,-2.465889721,0.108461712,0.108461712,0.210846899,0.710686064,22.85810679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.5117864,1.464889457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.514889634,21.9720817,63.02667603,23.43697116,447.4990208,0,0.662158081,48.53533125,-0.662158081,131.4646687,0.974489331,0,499.1096973,23.43697116,514.4487262,2,16,3% -2018-02-28 01:00:00,78.95185303,251.1664396,122.5674726,425.9168396,40.94740501,260.2771266,219.6404716,40.63665505,39.71268967,0.923965381,30.9526181,0,30.9526181,1.234715341,29.71790276,1.377969786,4.383681341,5.120511381,-5.120511381,0,0,0.33408052,0.308678835,9.928172418,0.256784809,1,0.192865523,0,0.939848429,0.978610393,0.724496596,1,38.46797124,0.894547061,0.039165089,0.312029739,0.894944713,0.619441309,0.961238037,0.922476074,0.213045933,9.543336965,38.68101717,10.43788403,163.2401351,0,0.51568863,58.9565049,-0.51568863,121.0434951,0.953042268,0,194.2557657,10.43788403,201.0871521,2,17,4% -2018-02-28 02:00:00,89.94443293,260.6813289,0.012896529,0.93048872,0.011994115,0.325309231,0.313579563,0.011729668,0.011632448,9.72195E-05,0.00348858,0,0.00348858,0.000361667,0.003126913,1.569826498,4.549747488,1013.244234,-1013.244234,0,0,0.930026589,9.04167E-05,0.002908112,0.994244433,1,0.000986929,0,0.961150908,0.999912871,0.724496596,1,0.011183134,0.000262026,0.115374458,0.312029739,0.72536041,0.449857006,0.961238037,0.922476074,6.54413E-05,0.002795388,0.011248575,0.003057414,0.001804828,0,0.337005227,70.30547899,-0.337005227,109.694521,0.901634349,0,0.01287587,0.003057414,0.014876887,2,18,16% -2018-02-28 03:00:00,102.2875512,269.8219039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785254551,4.709280617,-4.319183101,4.319183101,1,0.731222499,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114401432,83.43089824,-0.114401432,96.56910176,0.612942533,0,0,0,0,2,19,0% -2018-02-28 04:00:00,114.072957,279.3862176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990948687,4.876209381,-1.950355964,1.950355964,1,0.863684203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111206309,96.38485868,0.111206309,83.61514132,0,0.600385223,0,0,0,2,20,0% -2018-02-28 05:00:00,125.5025755,290.3844929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.190433163,5.068165498,-1.067781681,1.067781681,1,0.712755111,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.333628935,109.4891858,0.333628935,70.51081425,0,0.900132903,0,0,0,2,21,0% -2018-02-28 06:00:00,136.0168267,304.3432211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373941464,5.311791264,-0.56259671,0.56259671,1,0.626363393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537695791,122.5269187,0.537695791,57.47308131,0,0.957010617,0,0,0,2,22,0% -2018-02-28 07:00:00,144.5712905,323.5302988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523245023,5.646668943,-0.20169272,0.20169272,1,0.564645176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709486812,135.1931762,0.709486812,44.80682377,0,0.979526527,0,0,0,2,23,0% -2018-03-01 08:00:00,149.3290301,349.5819168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606283243,6.101355453,0.09872122,-0.09872122,1,0.513271367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837281145,146.8541192,0.837281145,33.14588081,0,0.990282902,0,0,0,3,0,0% -2018-03-01 09:00:00,148.4586836,18.54631295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591092832,0.323694225,0.382483362,-0.382483362,1,0.464745182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91235593,155.8329813,0.91235593,24.16701869,0,0.995196827,0,0,0,3,1,0% -2018-03-01 10:00:00,142.355347,42.63621265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484569513,0.744142291,0.685037023,-0.685037023,1,0.413005459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929580863,158.3695732,0.929580863,21.63042676,0,0.996212318,0,0,0,3,2,0% -2018-03-01 11:00:00,133.0681433,60.02403266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32247723,1.047617,1.053639885,-1.053639885,1,0.349970657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887768077,152.5941106,0.887768077,27.4058894,0,0.993678984,0,0,0,3,3,0% -2018-03-01 12:00:00,122.1972131,72.90410101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132743706,1.272416601,1.586104759,-1.586104759,1,0.258913801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789753502,142.1624818,0.789753502,37.83751818,0,0.986689106,0,0,0,3,4,0% -2018-03-01 13:00:00,110.605283,83.34162561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930426359,1.454585771,2.587930534,-2.587930534,1,0.087591503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642204117,129.956372,0.642204117,50.04362798,0,0.972143134,0,0,0,3,5,0% -2018-03-01 14:00:00,98.76972962,92.67482009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723856983,1.617480744,5.98122823,-5.98122823,1,0,#DIV/0!,0,0,0.330071486,1,0.165657572,0,0.943383737,0.9821457,0.724496596,1,0,0,0.048828256,0.312029739,0.870881245,0.595377841,0.961238037,0.922476074,0,0,0,0,0,0,-0.455164135,117.0754955,0.455164135,62.92450451,0,0.940149517,0,0,0,3,6,0% -2018-03-01 15:00:00,86.79303509,101.8246229,11.51850761,70.96397096,7.548579015,7.407792882,0,7.407792882,7.320961506,0.086831376,19.87994384,16.85953081,3.020413036,0.227617509,2.792795527,1.51482423,1.77717493,-15.16431796,15.16431796,0,0,0.655343493,0.056904377,1.830240377,1,0.529058235,0,0.065848937,0.961238037,1,0.55479237,0.830295774,7.037186666,0.155812932,0.115824807,0.11982696,0.724496596,0.448993192,0.98772397,0.948962007,0.041227028,1.774361935,7.078413694,1.930174867,0,7.939857194,-0.23757874,103.7436796,0.23757874,76.25632042,0,0.839543458,7.078413694,8.596030035,12.70434343,3,7,79% -2018-03-01 16:00:00,75.60893845,111.5698659,182.1640943,528.4341046,50.82772667,50.66831307,0,50.66831307,49.29508318,1.373229889,53.2582523,7.557815118,45.70043718,1.532643494,44.16779369,1.31962492,1.947261507,-2.915729165,2.915729165,0.971227257,0.971227257,0.279021653,1.344742888,43.2515538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.38430898,1.110394994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.974261645,41.57503867,48.35857063,42.68543366,0,7.557815118,-0.014302285,90.8194885,0.014302285,89.1805115,0,0,48.35857063,42.68543366,76.29533325,3,8,58% -2018-03-01 17:00:00,65.08668121,122.726081,374.7526108,717.8609065,72.35610835,222.3006626,149.3013144,72.9993482,70.17430472,2.825043476,93.04491285,0,93.04491285,2.181803632,90.86310922,1.135976886,2.141974192,-1.303916278,1.303916278,0.753136506,0.753136506,0.193076996,2.26229529,72.7631931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.45421091,1.580709305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639025236,69.94274889,69.09323614,71.5234582,149.3013144,0,0.20798084,77.99594949,-0.20798084,102.0040505,0.80959324,0,189.966571,71.5234582,236.7772439,3,9,25% -2018-03-01 18:00:00,55.93126689,136.2186393,534.7140837,802.4109879,85.21385539,417.3940229,330.718779,86.67524387,82.64434325,4.030900627,132.2171324,0,132.2171324,2.569512146,129.6476203,0.976184762,2.377463758,-0.596294927,0.596294927,0.632126128,0.632126128,0.159363402,2.784351701,89.55432184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44088626,1.861602803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.017253329,86.08302052,81.45813959,87.94462332,330.718779,0,0.412156344,65.65963489,-0.412156344,114.3403651,0.928686812,0,388.5923081,87.94462332,446.1503052,3,10,15% -2018-03-01 19:00:00,49.02812473,152.875546,645.7326322,843.0428719,92.95912756,587.4603164,492.4364442,95.02387223,90.15606689,4.86780534,159.3684134,0,159.3684134,2.803060679,156.5653527,0.855702203,2.668181623,-0.142815962,0.142815962,0.554576657,0.554576657,0.14395916,3.011708379,96.86689415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.66144074,2.03080792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181972468,93.11214317,88.84341321,95.14295109,492.4364442,0,0.584117914,54.25930087,-0.584117914,125.7406991,0.964400845,0,563.749536,95.14295109,626.0186946,3,11,11% -2018-03-01 20:00:00,45.47699154,172.5992227,698.8227345,859.0711611,96.44579034,710.5495894,611.7439745,98.80561487,93.53759391,5.268020956,172.3458591,0,172.3458591,2.908196426,169.4376627,0.793723236,3.012424723,0.221792473,-0.221792473,0.492224943,0.492224943,0.13801181,2.962228716,95.27545809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.91189315,2.106978411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.146124621,91.5823943,92.05801777,93.68937271,611.7439745,0,0.712099302,44.59402195,-0.712099302,135.405978,0.979785074,0,691.4356329,93.68937271,752.7534536,3,12,9% -2018-03-01 21:00:00,46.084375,193.3918825,689.9525338,856.5205843,95.87131064,772.5772725,674.395682,98.18159053,92.9804369,5.201153637,170.1778536,0,170.1778536,2.890873743,167.2869798,0.804324078,3.375325097,0.57159914,-0.57159914,0.43240448,0.43240448,0.138953487,2.659213878,85.52945932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37633263,2.094428186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.926591403,82.21416957,91.30292403,84.30859775,674.395682,0,0.787366579,38.05990928,-0.787366579,141.9400907,0.986497178,0,756.5923609,84.30859775,811.7706519,3,13,7% -2018-03-01 22:00:00,50.69677719,212.3598215,619.7981428,834.4926584,91.21013209,764.7282557,671.5961454,93.13211028,88.45981007,4.672300204,153.0275575,0,153.0275575,2.750322012,150.2772355,0.884825682,3.706378084,0.967354785,-0.967354785,0.364726279,0.364726279,0.147161028,2.140912491,68.85910504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03093418,1.992598935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551083812,66.18999094,86.58201799,68.18258988,671.5961454,0,0.804795751,36.40946555,-0.804795751,143.5905345,0.987872435,0,750.0333377,68.18258988,794.6574791,3,14,6% -2018-03-01 23:00:00,58.34477439,228.0696546,493.7648202,784.3063661,82.15565078,682.0026818,598.6021192,83.40056257,79.67835479,3.722207782,122.1962933,0,122.1962933,2.477295993,119.7189973,1.018308414,3.980566397,1.504603536,-1.504603536,0.272851331,0.272851331,0.166386197,1.465949969,47.14999017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.58986534,1.794792514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062075762,45.32236399,77.6519411,47.1171565,598.6021192,0,0.763224864,40.25067449,-0.763224864,139.7493255,0.984488507,0,666.968848,47.1171565,697.8060846,3,15,5% -2018-03-01 00:00:00,67.96129827,240.8106802,322.4621454,679.6307859,67.44238595,520.1771816,452.3375766,67.83960503,65.40874917,2.430855861,80.21831727,0,80.21831727,2.033636772,78.18468049,1.186148419,4.202939243,2.438577965,-2.438577965,0.113132297,0.113132297,0.209148227,0.725900001,23.34743928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.87337765,1.473362919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525912079,22.4424467,63.39928973,23.91580962,452.3375766,0,0.665563694,48.27441498,-0.665563694,131.725585,0.97487571,0,504.3722058,23.91580962,520.0246249,3,16,3% -2018-03-01 01:00:00,78.74055594,251.4914468,126.2846175,433.6157236,41.62028801,266.2773356,224.960066,41.31726956,40.36528277,0.95198679,31.87417284,0,31.87417284,1.255005246,30.61916759,1.374281956,4.389353788,5.021310624,-5.021310624,0,0,0.329575279,0.313751312,10.09132069,0.247294589,1,0.196579266,0,0.939353139,0.978115103,0.724496596,1,39.09496628,0.909247029,0.037869566,0.312029739,0.898226959,0.622723555,0.961238037,0.922476074,0.216756366,9.700161291,39.31172265,10.60940832,169.3286591,0,0.518800527,58.74817242,-0.518800527,121.2518276,0.953623845,0,200.7875696,10.60940832,207.7312151,3,17,3% -2018-03-01 02:00:00,89.77988219,261.0106027,0.067528919,1.449170305,0.061961538,0.55235179,0.49174956,0.060602231,0.060093169,0.000509062,0.018241537,0,0.018241537,0.001868369,0.016373168,1.566954546,4.555494399,255.5031448,-255.5031448,0,0,0.917555607,0.000467092,0.015023292,0.977356845,1,0.003913826,0,0.960891126,0.999653089,0.724496596,1,0.057795736,0.001353627,0.114043167,0.312029739,0.727923522,0.452420118,0.961238037,0.922476074,0.000337094,0.01444096,0.05813283,0.015794587,0.011134761,0,0.339331794,70.1638314,-0.339331794,109.8361686,0.902651591,0,0.06818364,0.015794587,0.078520881,3,18,15% -2018-03-01 03:00:00,102.0964574,270.1621598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781919336,4.715219204,-4.380062934,4.380062934,1,0.720811434,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117012454,83.28028604,-0.117012454,96.71971396,0.622695057,0,0,0,0,3,19,0% -2018-03-01 04:00:00,113.875887,279.7464679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987509167,4.882496935,-1.961499249,1.961499249,1,0.865589817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108806868,96.2465413,0.108806868,83.7534587,0,0.590470183,0,0,0,3,20,0% -2018-03-01 05:00:00,125.2855583,290.7727153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186645497,5.074941257,-1.070153657,1.070153657,1,0.713160743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.33138648,109.3529508,0.33138648,70.64704922,0,0.899118769,0,0,0,3,21,0% -2018-03-01 06:00:00,135.761772,304.7552831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36948992,5.318983104,-0.56192556,0.56192556,1,0.62624862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535544837,122.3808685,0.535544837,57.61913153,0,0.956637136,0,0,0,3,22,0% -2018-03-01 07:00:00,144.2587183,323.913321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517789609,5.653353942,-0.199413163,0.199413163,1,0.564255349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707355511,135.0201578,0.707355511,44.97984222,0,0.979314186,0,0,0,3,23,0% -2018-03-02 08:00:00,148.9591814,349.7831678,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599828166,6.104867946,0.102263066,-0.102263066,1,0.512665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835096255,146.6258622,0.835096255,33.37413777,0,0.990126662,0,0,0,3,0,0% -2018-03-02 09:00:00,148.0776698,18.45444845,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584442887,0.322090887,0.387430191,-0.387430191,1,0.463899225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910047869,155.5119676,0.910047869,24.48803243,0,0.995057835,0,0,0,3,1,0% -2018-03-02 10:00:00,142.0075379,42.37022304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478499099,0.739499897,0.692002222,-0.692002222,1,0.41181434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927088525,157.985424,0.927088525,22.01457599,0,0.996067718,0,0,0,3,2,0% -2018-03-02 11:00:00,132.7576295,59.71502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317057742,1.042223821,1.064127219,-1.064127219,1,0.348177218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885043047,152.2568191,0.885043047,27.74318088,0,0.993505573,0,0,0,3,3,0% -2018-03-02 12:00:00,121.9118264,72.60039595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127762768,1.267115948,1.604174671,-1.604174671,1,0.255823664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786763404,141.884067,0.786763404,38.11593299,0,0.986448493,0,0,0,3,4,0% -2018-03-02 13:00:00,110.3324049,83.05262949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.925663738,1.449541837,2.628934396,-2.628934396,1,0.08057943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63893485,129.7124398,0.63893485,50.28756024,0,0.97174476,0,0,0,3,5,0% -2018-03-02 14:00:00,98.49887614,92.39879584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719129698,1.612663212,6.187165732,-6.187165732,1,0,#DIV/0!,0,0,0.345512887,1,0.160239193,0,0.944068032,0.982829995,0.724496596,1,0,0,0.050790192,0.312029739,0.866085828,0.590582423,0.961238037,0.922476074,0,0,0,0,0,0,-0.451620845,116.8477233,0.451620845,63.15227667,0,0.939287661,0,0,0,3,6,0% -2018-03-02 15:00:00,86.52717714,101.5583434,13.74840313,82.83753773,8.730512096,8.570896214,0,8.570896214,8.467254944,0.10364127,22.97911343,19.38239676,3.596716665,0.263257152,3.333459513,1.510184134,1.772527476,-14.04113376,14.04113376,0,0,0.635020083,0.065814288,2.116813736,1,0.482221822,0,0.071099273,0.961238037,1,0.542737927,0.818241331,8.13904752,0.180433182,0.115824807,0.106220891,0.724496596,0.448993192,0.98928757,0.950525607,0.047682228,2.051652857,8.186729747,2.232086039,0,10.03578207,-0.233980841,103.5315545,0.233980841,76.46844552,0,0.83630729,8.186729747,10.62508375,15.14063456,3,7,85% -2018-03-02 16:00:00,75.31691723,111.3128055,187.5170577,536.3697626,51.56216059,51.420954,0,51.420954,50.00737121,1.413582788,52.55652851,5.536057492,47.02047102,1.554789386,45.46568163,1.314528188,1.942774956,-2.866534177,2.866534177,0.979640095,0.979640095,0.274973174,1.392716218,44.79454102,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.06898733,1.126439617,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.009018159,43.05821667,49.07800549,44.18465629,0,5.536057492,-0.010321345,90.59138002,0.010321345,89.40861998,0,0,49.07800549,44.18465629,77.99597933,3,8,59% -2018-03-02 17:00:00,64.77051716,122.484897,380.5173786,721.8934488,72.81402504,226.6201746,153.1332603,73.48691426,70.61841353,2.868500731,94.45645543,0,94.45645543,2.19561151,92.26084392,1.130458783,2.137764736,-1.292401629,1.292401629,0.751167385,0.751167385,0.191355321,2.291309131,73.69637797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.88110519,1.590713065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660045665,70.83976169,69.54115085,72.43047475,153.1332603,0,0.212127234,77.75295723,-0.212127234,102.2470428,0.814292405,0,194.2364018,72.43047475,241.6406989,3,9,24% -2018-03-02 18:00:00,55.58562961,136.0148007,540.5575259,805.0298079,85.57566324,422.278798,335.2086058,87.07019221,82.99524125,4.074950963,133.6448525,0,133.6448525,2.580421987,131.0644305,0.970152253,2.373906104,-0.593359911,0.593359911,0.63162421,0.63162421,0.158310002,2.811478931,90.42682683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77818277,1.869506946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036906915,86.9217055,81.81508968,88.79121244,335.2086058,0,0.416392788,65.39294238,-0.416392788,114.6070576,0.929921071,0,393.5326354,88.79121244,451.6447081,3,10,15% -2018-03-02 19:00:00,48.65457607,152.7536096,651.5187198,845.0569325,93.27659415,592.5818014,497.2064174,95.37538399,90.46396068,4.911423312,160.7808901,0,160.7808901,2.812633467,157.9682566,0.849182549,2.666053432,-0.143348773,0.143348773,0.554667774,0.554667774,0.143167942,3.037347315,97.69153045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95739997,2.037743373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.20054779,93.90481495,89.15794776,95.94255832,497.2064174,0,0.58837032,53.95855378,-0.58837032,126.0414462,0.965019507,0,568.9718394,95.94255832,631.764325,3,11,11% -2018-03-02 20:00:00,45.09238166,172.6148521,704.458743,860.8342419,96.73925282,715.7430117,616.6102968,99.13271499,93.82220742,5.31050757,173.7212236,0,173.7212236,2.917045402,170.8041782,0.787010528,3.012697507,0.219101616,-0.219101616,0.492685107,0.492685107,0.137324228,2.986373132,96.05202553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.18547447,2.113389464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163617168,92.32886046,92.34909164,94.44224992,616.6102968,0,0.716293877,44.25066231,-0.716293877,135.7493377,0.980196248,0,696.7481911,94.44224992,758.5587549,3,12,9% -2018-03-02 21:00:00,45.7188451,193.5595803,695.36662,858.2516773,96.15259281,777.7447054,679.2495008,98.49520468,93.25323738,5.241967306,171.4990431,0,171.4990431,2.899355439,168.5996877,0.797944377,3.378251976,0.566852,-0.566852,0.433216288,0.433216288,0.138276112,2.681732479,86.25373493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63855883,2.100573146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942906052,82.91037084,91.58146488,85.01094398,679.2495008,0,0.791433933,37.68028257,-0.791433933,142.3197174,0.986823533,0,761.8808568,85.01094398,817.5188194,3,13,7% -2018-03-02 22:00:00,50.37349384,212.6304738,624.934169,836.4048937,91.49154124,769.8237779,676.3800264,93.44375144,88.7327337,4.711017739,154.281332,0,154.281332,2.758807536,151.5225245,0.879183323,3.711101857,0.959768299,-0.959768299,0.366023644,0.366023644,0.146401886,2.161598567,69.52444037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.29327875,1.998746669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.566070804,66.82953658,86.85934955,68.82828325,676.3800264,0,0.808675358,36.03328856,-0.808675358,143.9667114,0.988170491,0,755.2381326,68.82828325,800.2848675,3,14,6% -2018-03-02 23:00:00,58.06780304,228.384241,498.5757921,786.7359954,82.45906744,687.0544585,603.3233613,83.73109724,79.97262232,3.75847492,123.3719182,0,123.3719182,2.486445125,120.8854731,1.013474352,3.986056966,1.491716523,-1.491716523,0.27505514,0.27505514,0.165389232,1.484421749,47.74410611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.87272648,1.801421029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075458504,45.89345083,77.94818498,47.69487186,603.3233613,0,0.766868892,39.92645529,-0.766868892,140.0735447,0.984799807,0,672.1009146,47.69487186,703.3162543,3,15,5% -2018-03-02 00:00:00,67.72278978,241.1369379,326.8807999,683.3688794,67.82377526,525.3750102,457.1322065,68.24280374,65.77863819,2.464165544,81.30117149,0,81.30117149,2.045137067,79.25603442,1.18198566,4.208633515,2.411869866,-2.411869866,0.117699651,0.117699651,0.207487792,0.741137711,23.83753644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.22892904,1.481694843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.536951749,22.91354674,63.76588079,24.39524158,457.1322065,0,0.668939163,48.01475837,-0.668939163,131.9852416,0.975254787,0,509.5862536,24.39524158,525.5524513,3,16,3% -2018-03-02 01:00:00,78.53002793,251.8196761,130.0044756,441.1548339,42.27892137,272.2151184,230.2310338,41.98408455,41.0040559,0.980028651,32.79595572,0,32.79595572,1.274865472,31.52109025,1.370607549,4.395082469,4.925891139,-4.925891139,0,0,0.325211276,0.318716368,10.25101397,0.237934584,1,0.200287102,0,0.938855606,0.977617569,0.724496596,1,39.70811275,0.923635695,0.036581513,0.312029739,0.90150341,0.626000006,0.961238037,0.922476074,0.220408876,9.853664548,39.92852163,10.77730024,175.4511085,0,0.521882605,58.54138217,-0.521882605,121.4586178,0.954193013,0,207.3427434,10.77730024,214.3962709,3,17,3% -2018-03-02 02:00:00,89.61421392,261.3425237,0.153153769,2.181909373,0.138462567,0.880912359,0.745470412,0.135441947,0.134287409,0.001154538,0.041309062,0,0.041309062,0.004175157,0.037133905,1.564063089,4.561287515,145.6140765,-145.6140765,0,0,0.904075474,0.001043789,0.033571852,0.960585417,1,0.00686736,0,0.960626879,0.999388843,0.724496596,1,0.129205258,0.003024887,0.112706218,0.312029739,0.73051191,0.455008506,0.961238037,0.922476074,0.000751166,0.032270541,0.129956424,0.035295429,0.029382406,0,0.341659659,70.02197825,-0.341659659,109.9780217,0.903655535,0,0.156507997,0.035295429,0.179608149,3,18,15% -2018-03-02 03:00:00,101.9055881,270.5046319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778588039,4.721196469,-4.442546269,4.442546269,1,0.710126155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119601728,83.13088226,-0.119601728,96.86911774,0.63194584,0,0,0,0,3,19,0% -2018-03-02 04:00:00,113.6785655,280.1085154,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984065257,4.888815857,-1.972704952,1.972704952,1,0.867506105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.106420474,96.1090123,0.106420474,83.8909877,0,0.580165595,0,0,0,3,20,0% -2018-03-02 05:00:00,125.0677211,291.1621272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18284352,5.081737777,-1.072481236,1.072481236,1,0.713558783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.329146301,109.2169676,0.329146301,70.78303236,0,0.898091867,0,0,0,3,21,0% -2018-03-02 06:00:00,135.5053195,305.16744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365013978,5.326176598,-0.561192908,0.561192908,1,0.626123329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533384064,122.2343888,0.533384064,57.76561116,0,0.956258917,0,0,0,3,22,0% -2018-03-02 07:00:00,143.9444172,324.2950618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512304021,5.660016577,-0.1970645,0.1970645,1,0.563853704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705201808,134.8458501,0.705201808,45.1541499,0,0.97909831,0,0,0,3,23,0% -2018-03-03 08:00:00,148.5876371,349.9845688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593343496,6.108383057,0.105884755,-0.105884755,1,0.51204633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832876757,146.3953947,0.832876757,33.60460534,0,0.989967109,0,0,0,3,0,0% -2018-03-03 09:00:00,147.6944311,18.36751221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57775411,0.320573563,0.392476789,-0.392476789,1,0.463036206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907694222,155.1886299,0.907694222,24.81137011,0,0.99491537,0,0,0,3,1,0% -2018-03-03 10:00:00,141.6566012,42.10973021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472374097,0.734953439,0.699106463,-0.699106463,1,0.410599443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924541602,157.5993337,0.924541602,22.4006663,0,0.995919145,0,0,0,3,2,0% -2018-03-03 11:00:00,132.4436434,59.40959851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.311577651,1.036893101,1.074839927,-1.074839927,1,0.346345237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882257037,151.9158386,0.882257037,28.08416139,0,0.993327173,0,0,0,3,3,0% -2018-03-03 12:00:00,121.6230541,72.2986694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12272274,1.261849826,1.622705458,-1.622705458,1,0.252654713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783708976,141.6014314,0.783708976,38.39856855,0,0.986200807,0,0,0,3,4,0% -2018-03-03 13:00:00,110.0563906,82.76460199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920846379,1.444514809,2.671392862,-2.671392862,1,0.073318605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635601177,129.4645869,0.635601177,50.53541307,0,0.971334318,0,0,0,3,5,0% -2018-03-03 14:00:00,98.22517179,92.12308909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714352656,1.607851222,6.408665273,-6.408665273,1,0,#DIV/0!,0,0,0.36134582,1,0.154790502,0,0.944749493,0.983511456,0.724496596,1,0,0,0.052776206,0.312029739,0.861262625,0.585759221,0.961238037,0.922476074,0,0,0,0,0,0,-0.448016355,116.6164864,0.448016355,63.38351357,0,0.938396932,0,0,0,3,6,0% -2018-03-03 15:00:00,86.25775809,101.2919103,16.19503721,95.43748329,9.966022184,9.787594876,0,9.787594876,9.665509844,0.122085031,26.20759993,21.98041332,4.227186612,0.30051234,3.926674272,1.505481884,1.76787734,-13.0647473,13.0647473,0,0,0.615375072,0.075128085,2.416377461,1,0.433221301,0,0.076392901,0.961238037,1,0.530806584,0.806309988,9.290855708,0.206438768,0.115824807,0.092752081,0.724496596,0.448993192,0.990793185,0.952031222,0.054430042,2.341043826,9.34528575,2.547482594,0,12.45803006,-0.230312164,103.3154508,0.230312164,76.68454915,0,0.832903347,9.34528575,12.92381753,17.80366584,3,7,91% -2018-03-03 16:00:00,75.02250122,111.0552112,192.9251925,544.1788137,52.2877906,52.16547239,0,52.16547239,50.71112079,1.454351593,51.77857571,3.424959359,48.35361635,1.576669808,46.77694654,1.309389659,1.938279087,-2.818681175,2.818681175,0.987823441,0.987823441,0.271026246,1.441442198,46.36173602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.7454582,1.142291909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.044319966,44.56466411,49.78977816,45.70695602,0,3.424959359,-0.006293812,90.36061127,0.006293812,89.63938873,0,0,49.78977816,45.70695602,79.70406674,3,8,60% -2018-03-03 17:00:00,64.45212917,122.2429072,386.3123126,725.8720636,73.26905378,230.9844669,157.01256,73.97190687,71.05972148,2.912185391,95.87522506,0,95.87522506,2.209332306,93.66589276,1.124901864,2.133541219,-1.280989958,1.280989958,0.749215874,0.749215874,0.189662745,2.320371892,74.63113626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.30530717,1.600653735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101537,71.73828691,69.98640871,73.33894064,157.01256,0,0.216308862,77.50767331,-0.216308862,102.4923267,0.818849045,0,198.5559935,73.33894064,246.5548634,3,9,24% -2018-03-03 18:00:00,55.23781637,135.8102348,546.415603,807.616539,85.93569508,427.1892098,339.7256814,87.46352843,83.3444168,4.119111622,135.0760674,0,135.0760674,2.591278276,132.4847891,0.964081767,2.370335754,-0.590398631,0.590398631,0.631117802,0.631117802,0.157271671,2.838613779,91.29957681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.11382359,1.87737229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05656602,87.76062597,82.17038961,89.63799826,339.7256814,0,0.420652209,65.12422897,-0.420652209,114.875771,0.931136961,0,398.5015281,89.63799826,457.1678052,3,10,15% -2018-03-03 19:00:00,48.27887185,152.6320122,657.3062675,847.0461667,93.59226916,597.7127359,501.9875667,95.72516922,90.77011693,4.955052292,162.1936668,0,162.1936668,2.822152234,159.3715146,0.842625273,2.663931158,-0.143828299,0.143828299,0.554749777,0.554749777,0.142387611,3.062955133,98.51516592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.251689,2.044639687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.219100567,94.69652469,89.47078957,96.74116438,501.9875667,0,0.592633066,53.65591797,-0.592633066,126.344082,0.965630762,0,574.2054262,96.74116438,637.5205835,3,11,11% -2018-03-03 20:00:00,44.70592725,172.6333433,710.0851991,862.5743486,97.03057548,720.9309327,621.4732649,99.45766779,94.10474562,5.352922172,175.0942075,0,175.0942075,2.925829855,172.1683776,0.780265626,3.01302024,0.216477498,-0.216477498,0.493133857,0.493133857,0.136646385,3.010458181,96.82668348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.45706094,2.11975377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181066704,93.07349114,92.63812764,95.19324491,621.4732649,0,0.720486606,43.90532985,-0.720486606,136.0946702,0.980602457,0,702.0563383,95.19324491,764.3584133,3,12,9% -2018-03-03 21:00:00,45.35233499,193.7326274,700.7628374,859.9583712,96.4312606,782.8931721,684.0870235,98.80614857,93.5235023,5.282646272,172.8158214,0,172.8158214,2.9077583,169.9080631,0.791547569,3.381272217,0.562190197,-0.562190197,0.434013504,0.434013504,0.137608982,2.7041778,86.97565361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.89834775,2.10666099,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.959167611,83.60430653,91.85751536,85.71096752,684.0870235,0,0.795488533,37.29857677,-0.795488533,142.7014232,0.987145543,0,767.1509715,85.71096752,823.2470855,3,13,7% -2018-03-03 22:00:00,50.05024436,212.9069811,630.0473023,838.2876341,91.76973877,774.8887469,681.1366416,93.75210524,89.00254255,4.749562698,155.5294591,0,155.5294591,2.767196218,152.7622629,0.873541555,3.71592782,0.952305824,-0.952305824,0.367299802,0.367299802,0.145655316,2.182214838,70.18753052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55262927,2.00482424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581007222,67.46692405,87.13363649,69.47174829,681.1366416,0,0.812533329,35.6558119,-0.812533329,144.3441881,0.988464063,0,760.4127285,69.47174829,805.8805983,3,14,6% -2018-03-03 23:00:00,57.79151055,228.7038038,503.3627888,789.1241236,82.75832908,692.0657611,608.0083396,84.05742143,80.26286011,3.794561323,124.5416048,0,124.5416048,2.495468967,122.0461359,1.008652139,3.991634388,1.479052799,-1.479052799,0.277220764,0.277220764,0.1644109,1.502849479,48.33680526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15171409,1.807958772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088809332,46.46317579,78.24052342,48.27113456,608.0083396,0,0.77048505,39.60253411,-0.77048505,140.3974659,0.985105814,0,677.1930738,48.27113456,708.785566,3,15,5% -2018-03-03 00:00:00,67.48517421,241.4671103,331.2798312,687.0347568,68.19877723,530.5218924,461.8822326,68.63965977,66.14233247,2.497327301,82.37907526,0,82.37907526,2.05644476,80.3226305,1.177838486,4.214396111,2.385744011,-2.385744011,0.122167435,0.122167435,0.205864562,0.756395616,24.32828311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57852582,1.489887228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.548006049,23.38527109,64.12653187,24.87515832,461.8822326,0,0.672283648,47.75643653,-0.672283648,132.2435635,0.975626631,0,514.7511383,24.87515832,531.0314319,3,16,3% -2018-03-03 01:00:00,78.32028365,252.1510002,133.725764,448.5370891,42.92363681,278.0899656,235.4525535,42.63741208,41.62933078,1.008081295,33.71766572,0,33.71766572,1.294306021,32.4233597,1.366946821,4.400865165,4.834032326,-4.834032326,0,0,0.320982551,0.323576505,10.4073327,0.228701275,1,0.203989291,0,0.938355814,0.977117777,0.724496596,1,40.30771887,0.937720306,0.035300752,0.312029739,0.904774292,0.629270888,0.961238037,0.922476074,0.224005177,10.00392405,40.53172405,10.94164436,181.6042543,0,0.524934413,58.33617193,-0.524934413,121.6638281,0.954750005,0,213.9183869,10.94164436,221.0794743,3,17,3% -2018-03-03 02:00:00,89.4472017,261.6769622,0.278371665,3.182470962,0.247667183,1.33704326,1.094745673,0.242297587,0.240199103,0.002098483,0.074962512,0,0.074962512,0.007468079,0.067494433,1.561148176,4.567124567,101.4986117,-101.4986117,0,0,0.889699685,0.00186702,0.060049776,0.943905725,1,0.009852033,0,0.960357706,0.999119669,0.724496596,1,0.231199331,0.005410598,0.111361697,0.312029739,0.733129488,0.457626084,0.961238037,0.922476074,0.001339914,0.057722129,0.232539245,0.063132727,0.061408965,0,0.343992353,69.87970264,-0.343992353,110.1202974,0.904647931,0,0.288092738,0.063132727,0.329411845,3,18,14% -2018-03-03 03:00:00,101.7149281,270.849184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775260393,4.727210037,-4.506715341,4.506715341,1,0.699152597,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122169569,82.98266884,-0.122169569,97.01733116,0.640732779,0,0,0,0,3,19,0% -2018-03-03 04:00:00,113.4809727,280.4722106,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980616612,4.895163536,-1.983978797,1.983978797,1,0.869434046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104046573,95.97223834,0.104046573,84.02776166,0,0.56944597,0,0,0,3,20,0% -2018-03-03 05:00:00,124.8490482,291.5525561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17902696,5.088552047,-1.074766671,1.074766671,1,0.713949615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.326907709,109.0811931,0.326907709,70.91880693,0,0.897051634,0,0,0,3,21,0% -2018-03-03 06:00:00,135.2474709,305.5794922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360513672,5.333368265,-0.560400327,0.560400327,1,0.62598779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531212758,122.0874327,0.531212758,57.91256732,0,0.955875755,0,0,0,3,22,0% -2018-03-03 07:00:00,143.6284237,324.6753175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506788893,5.66665329,-0.19464802,0.19464802,1,0.563440462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703025078,134.6702132,0.703025078,45.32978684,0,0.978878782,0,0,0,3,23,0% -2018-03-04 08:00:00,148.2144756,350.1859022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586830598,6.111896987,0.109585194,-0.109585194,1,0.511413518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830622231,146.1627093,0.830622231,33.83729073,0,0.989804163,0,0,0,3,0,0% -2018-03-04 09:00:00,147.3090975,18.28523597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57102877,0.319137572,0.39762232,-0.39762232,1,0.462156268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90529486,154.8630251,0.90529486,25.13697492,0,0.994769376,0,0,0,3,1,0% -2018-03-04 10:00:00,141.3026979,41.85459688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46619732,0.730500523,0.706349469,-0.706349469,1,0.409360816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921940335,157.2114145,0.921940335,22.78858548,0,0.995766555,0,0,0,3,2,0% -2018-03-04 11:00:00,132.1263441,59.10772498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306039733,1.031624414,1.085779429,-1.085779429,1,0.344474472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879410704,151.5713585,0.879410704,28.42864147,0,0.993143744,0,0,0,3,3,0% -2018-03-04 12:00:00,121.3310464,71.99893613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117626245,1.256618493,1.64170558,-1.64170558,1,0.249405501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78059131,141.3147471,0.78059131,38.68525286,0,0.985945995,0,0,0,3,4,0% -2018-03-04 13:00:00,109.7773847,82.47756471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915976808,1.439505063,2.715364063,-2.715364063,1,0.065799087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63220462,129.2129633,0.63220462,50.78703667,0,0.970911682,0,0,0,3,5,0% -2018-03-04 14:00:00,97.94875911,91.8477164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709528345,1.603045062,6.647447707,-6.647447707,1,0,#DIV/0!,0,0,0.377577924,1,0.149314054,0,0.945427672,0.984189635,0.724496596,1,0,0,0.054785813,0.312029739,0.856413961,0.580910557,0.961238037,0.922476074,0,0,0,0,0,0,-0.444352577,116.3819243,0.444352577,63.61807572,0,0.937476741,0,0,0,3,6,0% -2018-03-04 15:00:00,85.98501769,101.0253289,18.85319495,108.6633965,11.2448746,11.04792349,0,11.04792349,10.90580014,0.142123347,29.53082278,24.62057293,4.910249849,0.339074458,4.571175391,1.500721666,1.763224617,-12.20892701,12.20892701,0,0,0.596443978,0.084768615,2.726450036,1,0.38195424,0,0.081724847,0.961238037,1,0.519015061,0.794518465,10.48306992,0.233720217,0.115824807,0.079436176,0.724496596,0.448993192,0.992240155,0.953478191,0.061414573,2.63997655,10.54448449,2.873696767,0,15.2166407,-0.226576508,103.0955998,0.226576508,76.90440016,0,0.829323989,10.54448449,15.49322193,20.68448838,3,7,96% -2018-03-04 16:00:00,74.72583499,110.7970714,198.3850078,551.858661,53.0044113,52.90164272,0,52.90164272,51.40613273,1.495509987,50.92534253,1.226322012,49.69902052,1.598278566,48.10074196,1.304211857,1.933773697,-2.772140447,2.772140447,0.995782374,0.995782374,0.267179521,1.49088772,47.95207397,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.41353011,1.15794738,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.080143078,46.09335745,50.49367319,47.25130483,0,1.226322012,-0.002222167,90.12732089,0.002222167,89.87267911,0,0,50.49367319,47.25130483,81.41870717,3,8,61% -2018-03-04 17:00:00,64.13166088,122.0000754,392.1342403,729.7956717,73.72100389,235.3909403,160.9368231,74.45411717,71.49804363,2.956073541,97.3004468,0,97.3004468,2.222960269,95.07748653,1.119308637,2.129303004,-1.269687749,1.269687749,0.747283083,0.747283083,0.187999405,2.349468665,75.56698851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72663909,1.610527148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.70218205,72.63786369,70.42882114,74.24839084,160.9368231,0,0.220523126,77.26023943,-0.220523126,102.7397606,0.823266411,0,202.9227018,74.24839084,251.5167887,3,9,24% -2018-03-04 18:00:00,54.88796606,135.6048738,552.2853019,810.1705367,86.29378089,432.1224448,344.2673799,87.8550649,83.69170501,4.163359892,136.5100415,0,136.5100415,2.602075884,133.9079656,0.957975728,2.36675153,-0.587415627,0.587415627,0.630607678,0.630607678,0.156248556,2.865743428,92.17215957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.44765022,1.88519512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076221358,88.59938571,82.52387158,90.48458083,344.2673799,0,0.424931992,64.8536412,-0.424931992,115.1463588,0.932334112,0,403.4960937,90.48458083,462.7164421,3,10,15% -2018-03-04 19:00:00,47.90113855,152.5106698,663.0925162,849.0101847,93.90600659,602.8503274,506.7772619,96.07306549,91.07439401,4.998671479,163.6060701,0,163.6060701,2.831612575,160.7744576,0.836032583,2.661813332,-0.144257626,0.144257626,0.554823197,0.554823197,0.141618257,3.088520947,99.33745037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.54417171,2.051493671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237622912,95.48693578,89.78179462,97.53842945,506.7772619,0,0.596903631,53.35154307,-0.596903631,126.6484569,0.966234385,0,579.4474103,97.53842945,643.2843616,3,11,11% -2018-03-04 20:00:00,44.31774026,172.6546402,715.6996874,864.2912671,97.31963825,726.1107575,626.3304189,99.78033864,94.38509208,5.395246557,176.4642215,0,176.4642215,2.934546164,173.5296753,0.773490485,3.013391941,0.21391766,-0.21391766,0.493571615,0.493571615,0.135978316,3.034474926,97.59914457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.72654062,2.126068707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198466754,93.81601012,92.92500738,95.94207883,626.3304189,0,0.724675168,43.55816768,-0.724675168,136.4418323,0.981003569,0,707.3573839,95.94207883,770.1495556,3,12,9% -2018-03-04 21:00:00,44.98494791,193.910992,706.1391803,861.6406085,96.70722314,788.0204147,688.9060957,99.11431896,93.79114355,5.323175415,174.1276992,0,174.1276992,2.916079589,171.2116197,0.785135455,3.384385267,0.557611279,-0.557611279,0.434796545,0.434796545,0.136952071,2.726542843,87.69499026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.1556147,2.112689736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975371008,84.29576028,92.13098571,86.40845002,688.9060957,0,0.799528352,36.91491314,-0.799528352,143.0850869,0.987463131,0,772.4003558,86.40845002,828.9529581,3,13,7% -2018-03-04 22:00:00,49.72711696,213.189278,635.1359797,840.1410207,92.04466878,779.9213537,685.864248,94.05710571,89.26918241,4.787923298,156.771558,0,156.771558,2.775486372,153.9960716,0.867901918,3.720854831,0.944964102,-0.944964102,0.368555311,0.368555311,0.144921201,2.202756092,70.84820783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.80893365,2.010830429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59588929,68.10199221,87.40482294,70.11282264,685.864248,0,0.816368004,35.27714756,-0.816368004,144.7228524,0.988753112,0,765.5552323,70.11282264,811.4426725,3,14,6% -2018-03-04 23:00:00,57.51595896,229.0282376,508.1246795,791.4712565,83.05342846,697.0353289,612.6558093,84.37951962,80.54906116,3.830458467,125.7050787,0,125.7050787,2.504367303,123.2007114,1.003842856,3.997296826,1.466606094,-1.466606094,0.279349276,0.279349276,0.163450885,1.521229328,48.92796439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.42682142,1.814405586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.10212547,47.03142044,78.52894689,48.84582602,612.6558093,0,0.774072089,39.27901942,-0.774072089,140.7209806,0.985406533,0,682.2439838,48.84582602,714.2126,3,15,5% -2018-03-04 00:00:00,67.2484864,241.8010746,335.6584397,690.6298517,68.56748056,535.6172471,466.586994,69.03025313,66.49991803,2.530335101,83.45183736,0,83.45183736,2.067562526,81.38427483,1.173707505,4.220224886,2.36017995,-2.36017995,0.126539147,0.126539147,0.204277541,0.771670178,24.81956551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.92225066,1.497942012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559072417,23.85751042,64.48132307,25.35545244,466.586994,0,0.675596331,47.49952413,-0.675596331,132.5004759,0.975991309,0,519.8661742,25.35545244,536.4608107,3,16,3% -2018-03-04 01:00:00,78.11133783,252.4852914,137.447255,455.7654593,43.55476132,283.90145,240.6238899,43.27756004,42.24142457,1.036135466,34.63901504,0,34.63901504,1.313336754,33.32567829,1.363300028,4.406699648,4.745530386,-4.745530386,0,0,0.316883457,0.328334188,10.56035614,0.219591257,1,0.207686089,0,0.93785375,0.976615713,0.724496596,1,40.89408892,0.951508007,0.034027105,0.312029739,0.908039832,0.632536428,0.961238037,0.922476074,0.227546942,10.15101601,41.12163586,11.10252401,187.7849874,0,0.52795552,58.13257867,-0.52795552,121.8674213,0.955295052,0,220.5117052,11.10252401,227.7780851,3,17,3% -2018-03-04 02:00:00,89.27877098,262.013788,0.452160512,4.505959375,0.3954418,1.947479437,1.560553089,0.386926347,0.383517771,0.003408577,0.12155558,0,0.12155558,0.011924029,0.109631551,1.558208506,4.573003287,77.69778998,-77.69778998,0,0,0.874560668,0.002981007,0.095879443,0.927309474,1,0.012869668,0,0.960083374,0.998845337,0.724496596,1,0.369289645,0.008638919,0.110008925,0.312029739,0.735777829,0.460274425,0.961238037,0.922476074,0.00213366,0.092162967,0.371423305,0.100801886,0.113437425,0,0.346330927,69.73693829,-0.346330927,110.2630617,0.905629411,0,0.474155573,0.100801886,0.540128392,3,18,14% -2018-03-04 03:00:00,101.5244632,271.1956802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771936155,4.733257536,-4.57265765,4.57265765,1,0.687875798,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124716284,82.83562814,-0.124716284,97.16437186,0.649090045,0,0,0,0,3,19,0% -2018-03-04 04:00:00,113.283091,280.8374047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977162924,4.901537375,-1.99532666,1.99532666,1,0.871374645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101684629,95.83618718,0.101684629,84.16381282,0,0.558283598,0,0,0,3,20,0% -2018-03-04 05:00:00,124.6295271,291.9438314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175195594,5.095381088,-1.07701223,1.07701223,1,0.714333628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.324670041,108.9455857,0.324670041,71.05441427,0,0.895997494,0,0,0,3,21,0% -2018-03-04 06:00:00,134.9882321,305.9912443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355989102,5.340554695,-0.55954939,0.55954939,1,0.625842271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529030245,121.9399558,0.529030245,58.06004422,0,0.955487445,0,0,0,3,22,0% -2018-03-04 07:00:00,143.3107779,325.0538927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501244928,5.673260674,-0.19216501,0.19216501,1,0.563015842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700824749,134.4932112,0.700824749,45.50678879,0,0.978655488,0,0,0,3,23,0% -2018-03-05 08:00:00,147.8397772,350.3869624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580290877,6.115406149,0.113363299,-0.113363299,1,0.510767424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828332304,145.9278045,0.828332304,34.07219545,0,0.989637752,0,0,0,3,0,0% -2018-03-05 09:00:00,146.9217985,18.20736216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564269126,0.317778418,0.402865953,-0.402865953,1,0.461259554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90284971,154.5352145,0.90284971,25.46478554,0,0.994619797,0,0,0,3,1,0% -2018-03-05 10:00:00,140.9459884,41.60468647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459971565,0.726138763,0.713730973,-0.713730973,1,0.408098505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919285016,156.821779,0.919285016,23.17822103,0,0.995609904,0,0,0,3,2,0% -2018-03-05 11:00:00,131.8058904,58.80937891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300446761,1.026417293,1.0969472,-1.0969472,1,0.34256467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876504755,151.2235662,0.876504755,28.77643376,0,0.992955244,0,0,0,3,3,0% -2018-03-05 12:00:00,121.0359539,71.70120942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112475909,1.251422182,1.661183816,-1.661183816,1,0.246074526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777411546,141.0241861,0.777411546,38.97581389,0,0.985684001,0,0,0,3,4,0% -2018-03-05 13:00:00,109.495532,82.19153873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911057549,1.434512968,2.760909647,-2.760909647,1,0.058010333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628746734,128.9577192,0.628746734,51.04228076,0,0.970476724,0,0,0,3,5,0% -2018-03-05 14:00:00,97.66978056,91.57269464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70465925,1.598245026,6.905500451,-6.905500451,1,0,#DIV/0!,0,0,0.394217113,1,0.143812383,0,0.946102137,0.9848641,0.724496596,1,0,0,0.056818525,0.312029739,0.85154215,0.576038746,0.961238037,0.922476074,0,0,0,0,0,0,-0.440631443,116.1441766,0.440631443,63.85582336,0,0.936526482,0,0,0,3,6,0% -2018-03-05 15:00:00,85.7091853,100.7586059,21.71622771,122.4141525,12.55733996,12.34239592,0,12.34239592,12.17868983,0.163706097,32.91512204,27.27112108,5.644000961,0.378650131,5.265350829,1.495907483,1.758569422,-11.45327511,11.45327511,0,0,0.578246836,0.094662533,3.044672456,1,0.328308673,0,0.087090414,0.961238037,1,0.507378673,0.782882077,11.7066199,0.262189437,0.115824807,0.066286894,0.724496596,0.448993192,0.993628222,0.954866259,0.068582683,2.946001162,11.77520258,3.208190599,0,18.3177755,-0.222777518,102.8722226,0.222777518,77.12777743,0,0.825560836,11.77520258,18.33062865,23.77223242,3,7,102% -2018-03-05 16:00:00,74.42706304,110.5383761,203.8930057,559.4071601,53.71184575,54.68716789,1.057900863,53.62926703,52.09223543,1.537031602,51.05583016,0,51.05583016,1.619610325,49.43621983,1.298997303,1.929258613,-2.726881659,2.726881659,0.996477918,0.996477918,0.263431527,1.53304415,49.30796968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.07303812,1.173402167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110685268,47.39669597,51.18372338,48.57009814,1.057900863,0,0.001891111,89.89164727,-0.001891111,90.10835273,0,0,51.18372338,48.57009814,82.97188121,3,8,62% -2018-03-05 17:00:00,63.80925611,121.7563668,397.9799982,733.6633303,74.16969397,239.8369729,164.9036275,74.93334537,71.93320404,3.000141334,98.73134815,0,98.73134815,2.23648993,96.49485822,1.113681612,2.125049486,-1.258500863,1.258500863,0.745370012,0.745370012,0.186365381,2.378584734,76.50346139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14493183,1.620329341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723276543,73.53803704,70.86820837,75.15836638,164.9036275,0,0.224767439,77.01079691,-0.224767439,102.9892031,0.82754785,0,207.3338507,75.15836638,256.5234984,3,9,24% -2018-03-05 18:00:00,54.53621808,135.3986519,558.163628,812.6912236,86.64975584,437.075697,348.8310778,88.2446192,84.036946,4.207673197,137.9460436,0,137.9460436,2.612809842,135.3332338,0.951836567,2.363152279,-0.584415206,0.584415206,0.630094576,0.630094576,0.155240778,2.892855192,93.04416709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77950899,1.892971836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.095863739,89.43759251,82.87537273,91.33056435,348.8310778,0,0.429229537,64.58132543,-0.429229537,115.4186746,0.93351221,0,408.5134432,91.33056435,468.287471,3,10,15% -2018-03-05 19:00:00,47.52150344,152.3894987,668.8747284,850.9486368,94.21766396,607.9918044,511.5728904,96.418914,91.37665377,5.042260237,165.0174321,0,165.0174321,2.841010195,162.1764219,0.829406701,2.659698498,-0.144639726,0.144639726,0.55488854,0.55488854,0.140859955,3.114033968,100.1580368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.83471528,2.058302215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.256107009,96.2757147,90.09082229,98.33401692,511.5728904,0,0.601179517,53.04557889,-0.601179517,126.9544211,0.966830167,0,584.6949253,98.33401692,649.0525727,3,11,11% -2018-03-05 20:00:00,43.92793365,172.6786878,721.2998143,865.9848093,97.60632369,731.2799189,631.1793233,100.1005956,94.66313291,5.437462679,177.8306817,0,177.8306817,2.943190788,174.8874909,0.766687076,3.01381165,0.211419716,-0.211419716,0.493998789,0.493998789,0.135320046,3.058414503,98.36912366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.99380404,2.132331707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.215810896,94.55614331,93.20961493,96.68847502,631.1793233,0,0.728857269,43.20931974,-0.728857269,136.7906803,0.981399463,0,712.648664,96.68847502,775.9293371,3,12,9% -2018-03-05 21:00:00,44.61678834,194.0946433,711.4936605,863.2983486,96.98039141,793.1242031,693.7045886,99.41961454,94.05607479,5.363539749,175.434192,0,175.434192,2.924316621,172.5098754,0.778709858,3.387590587,0.55311287,-0.55311287,0.435565818,0.435565818,0.136305349,2.748820644,88.41152091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.41027669,2.118657437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.991511199,84.98451679,92.40178789,87.10317423,693.7045886,0,0.803551391,36.52941392,-0.803551391,143.4705861,0.987776226,0,777.6266885,87.10317423,834.6339739,3,13,7% -2018-03-05 22:00:00,49.40420093,213.4772982,640.1986485,841.9652028,92.31627625,784.919812,690.5611242,94.35868774,89.53259991,4.826087834,158.0072506,0,158.0072506,2.78367634,155.2235743,0.862265971,3.725881733,0.937739984,-0.937739984,0.369790708,0.369790708,0.144199424,2.223217109,71.5063045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06214057,2.016764032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610713228,68.73457976,87.6728538,70.75134379,690.5611242,0,0.820177748,34.897409,-0.820177748,145.102591,0.989037605,0,770.6637741,70.75134379,816.9691136,3,14,6% -2018-03-05 23:00:00,57.24121113,229.3574359,512.860335,793.7778935,83.34435764,701.9619135,617.2645379,84.69737558,80.83121775,3.866157838,126.8620658,0,126.8620658,2.513139891,124.3489259,0.999047602,4.00304242,1.454370398,-1.454370398,0.281441704,0.281441704,0.162508878,1.539557428,49.51745907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69804106,1.820761296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115404116,47.59806515,78.81344518,49.41882645,617.2645379,0,0.777628784,38.95602113,-0.777628784,141.0439789,0.985701969,0,687.2523153,49.41882645,719.5959489,3,15,5% -2018-03-05 00:00:00,67.0127621,242.1387067,340.0158201,694.1555535,68.92996941,540.6604865,471.2458271,69.41465938,66.85147651,2.563182875,84.51926504,0,84.51926504,2.078492902,82.44077214,1.169593339,4.226117678,2.335158283,-2.335158283,0.130818104,0.130818104,0.202725771,0.786957825,25.3112688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26018204,1.505861032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.570148265,24.33015433,64.83033031,25.83601536,471.2458271,0,0.678876406,47.24409631,-0.678876406,132.7559037,0.976348891,0,524.9306711,25.83601536,541.8398265,3,16,3% -2018-03-05 01:00:00,77.90320634,252.8224218,141.1677535,462.8429134,44.17261308,289.6491881,245.7443602,43.90482797,42.84064582,1.064182155,35.55972349,0,35.55972349,1.331967264,34.22775622,1.359667448,4.412583683,4.660197217,-4.660197217,0,0,0.312908664,0.332991816,10.71016145,0.21060129,1,0.211377735,0,0.937349401,0.976111365,0.724496596,1,41.46751937,0.965005749,0.032760406,0.312029739,0.911300241,0.635796837,0.961238037,0.922476074,0.231035785,10.29501457,41.69855516,11.26002032,193.9902809,0,0.530945496,57.93063954,-0.530945496,122.0693605,0.955828375,0,227.1199701,11.26002032,234.4894282,3,17,3% -2018-03-05 02:00:00,89.108945,262.3528713,0.683471252,6.205628546,0.586966178,2.738165894,2.163746618,0.574419277,0.569266982,0.005152295,0.183414714,0,0.183414714,0.017699196,0.165715518,1.555244483,4.578921406,62.80733315,-62.80733315,0,0,0.85880156,0.004424799,0.142316745,0.910798174,1,0.015920363,0,0.959803805,0.998565768,0.724496596,1,0.548352934,0.012823007,0.108648008,0.312029739,0.738456989,0.462953585,0.961238037,0.922476074,0.003158782,0.136800269,0.551511717,0.149623276,0.193010149,0,0.348674852,69.59371542,-0.348674852,110.4062846,0.906599925,0,0.726494703,0.149623276,0.824420145,3,18,13% -2018-03-05 03:00:00,101.3341822,271.543985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768615124,4.739336601,-4.640465928,4.640465928,1,0.6762799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127242158,82.68974392,-0.127242158,97.31025608,0.657048475,0,0,0,0,3,19,0% -2018-03-05 04:00:00,113.0849059,281.2039496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973703943,4.907934791,-2.006754477,2.006754477,1,0.873328917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099334142,95.70082872,0.099334142,84.29917128,0,0.546648394,0,0,0,3,20,0% -2018-03-05 05:00:00,124.4091492,292.3357841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171349273,5.102221954,-1.079220156,1.079220156,1,0.714711206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322432684,108.8101073,0.322432684,71.18989275,0,0.894928872,0,0,0,3,21,0% -2018-03-05 06:00:00,134.7276136,306.4025056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35144045,5.347732559,-0.558641642,0.558641642,1,0.625687037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526835905,121.7919179,0.526835905,58.20808209,0,0.955093788,0,0,0,3,22,0% -2018-03-05 07:00:00,142.9915245,325.4306012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495672905,5.679835478,-0.189616735,0.189616735,1,0.562580061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698600303,134.3148137,0.698600303,45.68518627,0,0.978428316,0,0,0,3,23,0% -2018-03-06 08:00:00,147.4636249,350.5875571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573725782,6.118907187,0.117217998,-0.117217998,1,0.510108231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826006671,145.6906854,0.826006671,34.30931455,0,0.989467801,0,0,0,3,0,0% -2018-03-06 09:00:00,146.5326634,18.13364519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557477437,0.316491814,0.408206872,-0.408206872,1,0.460346203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900358758,154.2052645,0.900358758,25.7947355,0,0.994466581,0,0,0,3,1,0% -2018-03-06 10:00:00,140.586632,41.35986475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453699613,0.721865818,0.721250729,-0.721250729,1,0.406812551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916575997,156.4305403,0.916575997,23.5694597,0,0.99544915,0,0,0,3,2,0% -2018-03-06 11:00:00,131.4824407,58.51453266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294801499,1.021271255,1.108344773,-1.108344773,1,0.340615571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873539946,150.8726469,0.873539946,29.12735307,0,0.992761633,0,0,0,3,3,0% -2018-03-06 12:00:00,120.7379266,71.40550204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107274351,1.246261115,1.681149282,-1.681149282,1,0.24266023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774170858,140.7299201,0.774170858,39.27007991,0,0.985414774,0,0,0,3,4,0% -2018-03-06 13:00:00,109.2109768,81.90654551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906091125,1.429538898,2.808095059,-2.808095059,1,0.049941152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625229103,128.699005,0.625229103,51.30099502,0,0.970029314,0,0,0,3,5,0% -2018-03-06 14:00:00,97.38837819,91.29804177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699747853,1.59345143,7.185131203,-7.185131203,1,0,#DIV/0!,0,0,0.411271598,1,0.138287988,0,0.946772472,0.985534435,0.724496596,1,0,0,0.058873851,0.312029739,0.846649492,0.571146088,0.961238037,0.922476074,0,0,0,0,0,0,-0.436854903,115.9033831,0.436854903,64.09661691,0,0.935545522,0,0,0,3,6,0% -2018-03-06 15:00:00,85.4304805,100.4917493,24.77639593,136.5909177,13.89438307,13.66219109,0,13.66219109,13.47541616,0.186774938,36.3285962,29.90230525,6.426290958,0.418966914,6.007324043,1.491043166,1.753911897,-10.781698,10.781698,0,0,0.56079113,0.104741729,3.368854039,1,0.272162279,0,0.092485173,0.961238037,1,0.495911405,0.771414809,12.95308257,0.291782458,0.115824807,0.053316155,0.724496596,0.448993192,0.994957491,0.956195528,0.075885026,3.25682304,13.0289676,3.548605499,0,21.76402571,-0.218918693,102.6455306,0.218918693,77.35446939,0,0.821604703,13.0289676,21.43003138,27.05449453,3,7,108% -2018-03-06 16:00:00,74.12632958,110.2791175,209.4456914,566.822594,54.40994373,57.77379232,3.425619051,54.34817327,52.76928317,1.578890092,52.42319332,0,52.42319332,1.640660555,50.78253276,1.293748514,1.924733697,-2.682873996,2.682873996,0.988952164,0.988952164,0.259780678,1.56597821,50.36724226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.72384216,1.188652987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.134545883,48.41490907,51.85838805,49.60356206,3.425619051,0,0.006043547,89.65372815,-0.006043547,90.34627185,0,0,51.85838805,49.60356206,84.32292734,3,8,63% -2018-03-06 17:00:00,63.48505864,121.5117491,403.8464383,737.4742285,74.61495172,244.3199283,168.9105277,75.40940067,72.36503563,3.044365037,100.1671606,0,100.1671606,2.249916094,97.91724454,1.108023299,2.120780101,-1.247434549,1.247434549,0.743477561,0.743477561,0.184760703,2.407705585,77.44008803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56002478,1.630056551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.7443745,74.43835819,71.30439928,76.06841475,168.9105277,0,0.229039228,76.75948633,-0.229039228,103.2405137,0.831696784,0,211.7867419,76.06841475,261.571998,3,9,24% -2018-03-06 18:00:00,54.1827122,135.1915051,564.0476089,815.1780875,87.00346026,442.0461743,353.4141602,88.63201406,84.37998493,4.252029131,139.3833484,0,139.3833484,2.623475336,136.7598731,0.945666726,2.359536884,-0.581401429,0.581401429,0.62957919,0.62957919,0.154248434,2.91993652,93.91519568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10925106,1.90069895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115484069,90.27485833,83.22473513,92.17555728,353.4141602,0,0.433542272,64.3074274,-0.433542272,115.6925726,0.934670992,0,413.550699,92.17555728,473.8777577,3,10,15% -2018-03-06 19:00:00,47.14009461,152.2684172,674.6501906,852.8612114,94.52710236,613.1344216,516.3718621,96.76255957,91.67676146,5.08579811,166.4270905,0,166.4270905,2.850340904,163.5767495,0.822749861,2.657585226,-0.144977445,0.144977445,0.554946293,0.554946293,0.140112763,3.139483504,100.9765814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12319021,2.065062282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274545111,97.06253087,90.39773532,99.12759315,516.3718621,0,0.605458256,52.73817512,-0.605458256,127.2618249,0.967417924,0,589.9451299,99.12759315,654.8221571,3,11,11% -2018-03-06 20:00:00,43.53662152,172.705433,726.883207,867.6548116,97.89051689,736.4358793,636.01757,100.4183093,94.93875663,5.479552651,179.1930094,0,179.1930094,2.951760262,176.2412491,0.759857391,3.014278442,0.208981374,-0.208981374,0.49441577,0.49441577,0.13467159,3.082268102,99.13633739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.25874404,2.138540262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.233092747,95.29361833,93.49183679,97.43215859,636.01757,0,0.733030649,42.85893054,-0.733030649,137.1410695,0.981790028,0,717.9275447,97.43215859,781.6949439,3,12,9% -2018-03-06 21:00:00,44.24796228,194.283552,716.8243044,864.9315664,97.25067798,798.2023352,698.4803996,99.72193562,94.31821123,5.403724394,176.7348185,0,176.7348185,2.932466758,173.8023517,0.772272629,3.390887665,0.548692686,-0.548692686,0.436321714,0.436321714,0.135668779,2.771004249,89.1250219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.6622522,2.124562184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.007583145,85.67036109,92.66983534,87.79492327,698.4803996,0,0.80755568,36.14220235,-0.80755568,143.8577976,0.988084765,0,782.8276766,87.79492327,840.287698,3,13,7% -2018-03-06 22:00:00,49.08158705,213.7709752,645.2337614,843.7603358,92.58450663,789.8823559,695.2255691,94.6567868,89.79274215,4.864044641,159.2361602,0,159.2361602,2.791764475,156.4443957,0.856635296,3.731007362,0.930630459,-0.930630459,0.371006508,0.371006508,0.143489867,2.243592639,72.16165157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.31219919,2.022623859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62547523,69.3645243,87.93767442,71.38714815,695.2255691,0,0.823960952,34.51671129,-0.823960952,145.4832887,0.989317513,0,775.7365052,71.38714815,822.4579659,3,14,6% -2018-03-06 23:00:00,56.96733119,229.691291,517.5686205,796.0445245,83.63110746,706.8442739,621.833302,85.01097188,81.109321,3.901650883,128.0122907,0,128.0122907,2.521786456,125.4905042,0.994267495,4.008869291,1.442339985,-1.442339985,0.283499025,0.283499025,0.161584579,1.557829836,50.10516254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.96536449,1.827025703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128642413,48.16298808,79.0940069,49.99001378,621.833302,0,0.781153921,38.63365089,-0.781153921,141.3663491,0.985992128,0,692.2167477,49.99001378,724.934212,3,15,5% -2018-03-06 00:00:00,66.77803842,242.4798822,344.3511533,697.6132025,69.28632288,545.6510091,475.8580601,69.79294905,67.1970846,2.595864448,85.58116216,0,85.58116216,2.089238274,83.49192389,1.165496638,4.232072314,2.310660648,-2.310660648,0.135007447,0.135007447,0.201208337,0.802254918,25.80327591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59239369,1.513646018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.581230957,24.80309028,65.17362464,26.31673629,475.8580601,0,0.682123071,46.9902291,-0.682123071,133.0097709,0.976699445,0,529.9439276,26.31673629,547.1677052,3,16,3% -2018-03-06 01:00:00,77.69590667,253.1622631,144.8860849,469.772393,44.77749965,295.332822,250.8133166,44.51950533,43.42729282,1.092212508,36.47951555,0,36.47951555,1.350206826,35.12930872,1.356049387,4.418515032,4.577859133,-4.577859133,0,0,0.309053141,0.337551706,10.85682321,0.201728308,1,0.215064433,0,0.936842759,0.975604722,0.724496596,1,42.02829723,0.978220249,0.031500503,0.312029739,0.914555702,0.639052297,0.961238037,0.922476074,0.234473249,10.43599143,42.26277048,11.41421167,200.2171705,0,0.533903908,57.73039233,-0.533903908,122.2696077,0.956350189,0,233.7404994,11.41421167,241.2108726,3,17,3% -2018-03-06 02:00:00,88.93780672,262.6940821,0.980842013,8.329807774,0.826426468,3.732851786,2.923951124,0.808900662,0.801506661,0.007394001,0.262736309,0,0.262736309,0.024919807,0.237816502,1.552257557,4.584876658,52.61651569,-52.61651569,0,0,0.842568382,0.006229952,0.200376665,0.894378847,1,0.019003152,0,0.959519018,0.998280981,0.724496596,1,0.772342319,0.018054315,0.107279522,0.312029739,0.74116609,0.465662686,0.961238037,0.922476074,0.004436144,0.192609672,0.776778463,0.210663988,0.30883109,0,0.351022641,69.45012284,-0.351022641,110.5498772,0.907559046,0,1.057060912,0.210663988,1.194936279,3,18,13% -2018-03-06 03:00:00,101.1440764,271.8939633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765297153,4.745444876,-4.710238322,4.710238322,1,0.664348117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129747442,82.54500182,-0.129747442,97.45499818,0.664635947,0,0,0,0,3,19,0% -2018-03-06 04:00:00,112.8864068,281.5716985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97023948,4.914353219,-2.018268192,2.018268192,1,0.875297878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096994656,95.56613544,0.096994656,84.43386456,0,0.53450768,0,0,0,3,20,0% -2018-03-06 05:00:00,124.1879101,292.7282478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167487923,5.109071738,-1.081392646,1.081392646,1,0.715082723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320195075,108.6747226,0.320195075,71.32527737,0,0.893845194,0,0,0,3,21,0% -2018-03-06 06:00:00,134.4656306,306.8130904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346867985,5.354898615,-0.557678593,0.557678593,1,0.625522346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52462918,121.6432832,0.52462918,58.35671683,0,0.954694588,0,0,0,3,22,0% -2018-03-06 07:00:00,142.6707128,325.8052664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490073685,5.686374619,-0.187004431,0.187004431,1,0.562133331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696351292,134.1349958,0.696351292,45.8650042,0,0.978197161,0,0,0,3,23,0% -2018-03-07 08:00:00,147.0861047,350.7875071,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567136811,6.122396973,0.121148245,-0.121148245,1,0.50943612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823645089,145.4513636,0.823645089,34.54863637,0,0.989294241,0,0,0,3,0,0% -2018-03-07 09:00:00,146.1418217,18.06385171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550655963,0.315273688,0.413644279,-0.413644279,1,0.459416352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897822056,153.8732468,0.897822056,26.12675324,0,0.994309677,0,0,0,3,1,0% -2018-03-07 10:00:00,140.2247872,41.12000056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447384229,0.717679398,0.728908512,-0.728908512,1,0.405502993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913813685,156.0378125,0.913813685,23.96218752,0,0.995284251,0,0,0,3,2,0% -2018-03-07 11:00:00,131.1561529,58.22315819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289106703,1.016185811,1.119973747,-1.119973747,1,0.338626899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870517083,150.5187835,0.870517083,29.48121645,0,0.992562873,0,0,0,3,3,0% -2018-03-07 12:00:00,120.4371142,71.11182652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102024184,1.24113551,1.701611461,-1.701611461,1,0.239160992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770870463,140.4321202,0.770870463,39.56787982,0,0.985138259,0,0,0,3,4,0% -2018-03-07 13:00:00,108.9238631,81.62260705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901080044,1.424583237,2.856989845,-2.856989845,1,0.041579651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621653337,128.4369706,0.621653337,51.56302935,0,0.969569321,0,0,0,3,5,0% -2018-03-07 14:00:00,97.10469335,91.02377704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694796618,1.588664607,7.489035195,-7.489035195,1,0,#DIV/0!,0,0,0.428749905,1,0.132743333,0,0.947438275,0.986200238,0.724496596,1,0,0,0.060951302,0.312029739,0.84173827,0.566234865,0.961238037,0.922476074,0,0,0,0,0,0,-0.433024918,115.6596828,0.433024918,64.34031724,0,0.934533204,0,0,0,3,6,0% -2018-03-07 15:00:00,85.14911374,100.2247694,28.02516852,151.0993928,15.24777653,14.99926537,0,14.99926537,14.78799981,0.211265558,39.74168598,32.48688269,7.254803293,0.459776721,6.795026572,1.48613239,1.749252217,-10.1813333,10.1813333,0,0,0.544074392,0.11494418,3.696999953,1,0.213381468,0,0.09790494,0.961238037,1,0.484625997,0.760129401,14.21478791,0.322460762,0.115824807,0.040534211,0.724496596,0.448993192,0.996228376,0.957466413,0.083276667,3.570331482,14.29806457,3.892792243,0,25.55478398,-0.215003397,102.4157266,0.215003397,77.58427342,0,0.817445534,14.29806457,24.78243629,30.51767348,3,7,113% -2018-03-07 16:00:00,73.82377816,110.0192902,215.0395812,574.1036483,55.09857998,60.9328341,5.874620402,55.05821369,53.4371545,1.621059196,53.80026158,0,53.80026158,1.661425478,52.1388361,1.288467995,1.920198856,-2.640086314,2.640086314,0.981635039,0.981635039,0.256225294,1.598916511,51.42665124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.36582548,1.203697103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158409569,49.43325328,52.52423505,50.63695038,5.874620402,0,0.010232683,89.41370024,-0.010232683,90.58629976,0,0,52.52423505,50.63695038,85.66510634,3,8,63% -2018-03-07 17:00:00,63.15921191,121.2661927,409.7304342,741.2276818,75.05661393,248.8371635,172.9550623,75.88210118,72.79338009,3.088721084,101.6071213,0,101.6071213,2.26323384,99.34388746,1.102336201,2.116494334,-1.236493466,1.236493466,0.741606526,0.741606526,0.183185352,2.436816926,78.37640884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.97176578,1.639705212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765465567,75.33838536,71.73723134,76.97809058,172.9550623,0,0.233335946,76.50644724,-0.233335946,103.4935528,0.835716685,0,216.2786626,76.97809058,266.6592834,3,9,23% -2018-03-07 18:00:00,53.82758834,134.9833719,569.9343006,817.6306791,87.35473984,447.0311053,358.0140276,89.01707763,84.72067213,4.296405499,140.8212374,0,140.8212374,2.634067711,138.1871697,0.939468645,2.355904274,-0.578378116,0.578378116,0.629062173,0.629062173,0.153271596,2.946975016,94.78484668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.43673256,1.90837309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.135073367,91.11079995,83.57180593,93.01917304,358.0140276,0,0.437867654,64.03209195,-0.437867654,115.9679081,0.935810245,0,418.605001,93.01917304,479.4841894,3,10,15% -2018-03-07 19:00:00,46.7570407,152.1473451,680.4162184,854.7476346,94.83418658,618.2754659,521.1716151,97.10385082,91.97458596,5.129264864,167.8343904,0,167.8343904,2.859600626,164.9747897,0.816064309,2.655472121,-0.145273495,0.145273495,0.55499692,0.55499692,0.139376729,3.164858975,101.7927438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40947044,2.071770919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292929553,97.84705717,90.7024,99.91882809,521.1716151,0,0.609737417,52.42948106,-0.609737417,127.5705189,0.967997488,0,595.1952141,99.91882809,660.5900887,3,11,11% -2018-03-07 20:00:00,43.14391896,172.734825,732.4475181,869.3011348,98.17210559,741.5761365,640.8427833,100.7333532,95.21185439,5.521498779,180.550632,0,180.550632,2.9602512,177.5903808,0.753003438,3.014791429,0.206600435,-0.206600435,0.494822934,0.494822934,0.134032955,3.106026982,99.90050464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.521256,2.144691917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.250305975,96.02816496,93.77156198,98.17285687,640.8427833,0,0.737193083,42.50714498,-0.737193083,137.492855,0.982175164,0,723.1914277,98.17285687,787.4435991,3,12,9% -2018-03-07 21:00:00,43.87857714,194.4776907,722.1291566,866.5402517,97.51799716,803.2526413,703.2314569,100.0211844,94.57746974,5.443714611,178.029102,0,178.029102,2.940527417,175.0885745,0.765825642,3.394276025,0.544348538,-0.544348538,0.437064607,0.437064607,0.135042321,2.793086727,89.83527031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.91146134,2.130402104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.023581826,86.35307888,92.93504317,88.48348098,703.2314569,0,0.811539286,35.75340243,-0.811539286,144.2465976,0.988388688,0,788.0010603,88.48348098,845.911729,3,13,7% -2018-03-07 22:00:00,48.75936741,214.0702419,650.2397794,845.5265811,92.84930602,794.8072443,699.8559053,94.95133899,90.04955687,4.901782119,160.4579119,0,160.4579119,2.799749154,157.6581627,0.851011502,3.736230551,0.923632643,-0.923632643,0.372203205,0.372203205,0.142792411,2.263877402,72.81407928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.55905926,2.028408731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640171471,69.99166262,88.19923073,72.02007135,699.8559053,0,0.82771603,34.13517101,-0.82771603,145.864829,0.989592809,0,780.7716022,72.02007135,827.9072985,3,14,6% -2018-03-07 23:00:00,56.69438444,230.0296943,522.2483983,798.2716308,83.91366773,711.6811794,626.3608894,85.32029006,81.38336104,3.936929025,129.1554772,0,129.1554772,2.53030669,126.6251706,0.989503676,4.014775543,1.430509394,-1.430509394,0.285522176,0.285522176,0.160677693,1.576042545,50.69094586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22878219,1.833198584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141837459,48.72606529,79.37061965,50.55926387,626.3608894,0,0.78464631,38.31202193,-0.78464631,141.6879781,0.986277021,0,697.135972,50.55926387,730.225999,3,15,5% -2018-03-07 00:00:00,66.54435377,242.8244761,348.6636085,701.0040934,69.63661525,550.5882027,480.4230148,70.16518792,67.53681437,2.628373557,86.63732945,0,86.63732945,2.099800881,84.53752857,1.161418072,4.238086612,2.286669665,-2.286669665,0.139110146,0.139110146,0.199724358,0.817557748,26.29546753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.91895486,1.521298591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.592317806,25.27620358,65.51127266,26.79750217,480.4230148,0,0.685335534,46.73799927,-0.685335534,133.2620007,0.977043036,0,534.9052335,26.79750217,552.4436628,3,16,3% -2018-03-07 01:00:00,77.48945786,253.5046871,148.6010928,476.5568051,45.36971801,300.9520141,255.8301427,45.12187142,44.00165361,1.120217807,37.39811979,0,37.39811979,1.368064394,36.0300554,1.352446175,4.424491459,4.498355528,-4.498355528,0,0,0.305312142,0.342016099,11.0004134,0.192969415,1,0.21874636,0,0.936333818,0.975095781,0.724496596,1,42.57669999,0.991157997,0.030247253,0.312029739,0.917806373,0.642302969,0.961238037,0.922476074,0.237860807,10.57401578,42.8145608,11.56517378,206.4627496,0,0.536830321,57.53187538,-0.536830321,122.4681246,0.956860701,0,240.3706521,11.56517378,247.939827,3,17,3% -2018-03-07 02:00:00,88.76547291,263.0372911,1.352069018,10.91930806,1.11681367,4.951910869,3.858580784,1.093330085,1.083137617,0.010192467,0.36150084,0,0.36150084,0.033676053,0.327824787,1.549249764,4.590866786,45.20779994,-45.20779994,0,0,0.826003447,0.008419013,0.270784404,0.878061204,1,0.02211647,0,0.959229092,0.997991055,0.724496596,1,1.044096657,0.024398186,0.105904294,0.312029739,0.743903722,0.468400318,0.961238037,0.922476074,0.005980102,0.260288269,1.050076759,0.284686455,0.470510697,0,0.35337228,69.3062819,-0.35337228,110.6937181,0.908506162,0,1.477538627,0.284686455,1.663860218,3,18,13% -2018-03-07 03:00:00,100.9541403,272.2454809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761982142,4.751580015,-4.7820788,4.7820788,1,0.652062672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132232355,82.40138931,-0.132232355,97.59861069,0.671877717,0,0,0,0,3,19,0% -2018-03-07 04:00:00,112.6875865,281.9405056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966769411,4.920790118,-2.029873753,2.029873753,1,0.877282546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094665756,95.43208235,0.094665756,84.56791765,0,0.521825906,0,0,0,3,20,0% -2018-03-07 05:00:00,123.96581,293.1210587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163611545,5.115927581,-1.083531842,1.083531842,1,0.715448548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.317956708,108.5394002,0.317956708,71.46059982,0,0.892745887,0,0,0,3,21,0% -2018-03-07 06:00:00,134.2023035,307.2228183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34227206,5.362049717,-0.556661713,0.556661713,1,0.625348449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52240957,121.4940199,0.52240957,58.50598006,0,0.954289655,0,0,0,3,22,0% -2018-03-07 07:00:00,142.3483964,326.177721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484448203,5.692875177,-0.184329309,0.184329309,1,0.561675858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694077331,133.953738,0.694077331,46.04626202,0,0.977961918,0,0,0,3,23,0% -2018-03-08 08:00:00,146.7073046,350.9866458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560525502,6.1258726,0.125153014,-0.125153014,1,0.508751264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821247383,145.2098572,0.821247383,34.79014284,0,0.989117005,0,0,0,3,0,0% -2018-03-08 09:00:00,145.7494026,17.9977601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543806957,0.314120172,0.419177398,-0.419177398,1,0.458470133,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895239718,153.5392375,0.895239718,26.46076255,0,0.994149037,0,0,0,3,1,0% -2018-03-08 10:00:00,139.8606111,40.88496573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441028158,0.713577267,0.736704127,-0.736704127,1,0.404169864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910998546,155.64371,0.910998546,24.35628998,0,0.99511517,0,0,0,3,2,0% -2018-03-08 11:00:00,130.8271838,57.93522698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283365109,1.011160464,1.131835793,-1.131835793,1,0.33659837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867437017,150.1621566,0.867437017,29.83784335,0,0.992358927,0,0,0,3,3,0% -2018-03-08 12:00:00,120.1336656,70.82019508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096728007,1.236045581,1.722580214,-1.722580214,1,0.235575124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767511612,140.1309566,0.767511612,39.86904335,0,0.984854406,0,0,0,3,4,0% -2018-03-08 13:00:00,108.6343338,81.33974573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896026805,1.419646376,2.907667975,-2.907667975,1,0.032913181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618021067,128.1717659,0.618021067,51.82823409,0,0.969096609,0,0,0,3,5,0% -2018-03-08 14:00:00,96.81886657,90.74992071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689808,1.583884912,7.820380011,-7.820380011,1,0,#DIV/0!,0,0,0.446660892,1,0.127180843,0,0.948099164,0.986861127,0.724496596,1,0,0,0.063050388,0.312029739,0.836810746,0.561307342,0.961238037,0.922476074,0,0,0,0,0,0,-0.429143459,115.4132142,0.429143459,64.58678585,0,0.933488845,0,0,0,3,6,0% -2018-03-08 15:00:00,84.8652871,99.95767771,31.45347604,165.8513699,16.61015386,16.34640602,0,16.34640602,16.10929643,0.237109588,43.12753851,35.00042167,8.127116844,0.500857424,7.626259421,1.481178681,1.744590589,-9.641782188,9.641782188,0,0,0.52808643,0.125214356,4.027324108,1,0.15182038,0,0.103345764,0.961238037,1,0.473534014,0.749037418,15.48486848,0.354211572,0.115824807,0.027949773,0.724496596,0.448993192,0.997441565,0.958679602,0.090717375,3.884613694,15.57558585,4.238825266,0,29.68664436,-0.211034866,102.1830049,0.211034866,77.81699506,0,0.813072326,15.57558585,28.37621425,34.14725055,3,7,119% -2018-03-08 16:00:00,73.51955156,109.758891,220.6712094,581.2493828,55.77765226,64.16184634,8.402583303,55.75926304,54.09575025,1.663512788,55.18619156,0,55.18619156,1.681902013,53.50428955,1.283158239,1.915654032,-2.598487304,2.598487304,0.97452119,0.97452119,0.252763613,1.631841677,52.48563775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.99889277,1.218532283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.18226374,50.45119139,53.18115651,51.66972368,8.402583303,0,0.014456073,89.1716992,-0.014456073,90.8283008,0,0,53.18115651,51.66972368,86.99795726,3,8,64% -2018-03-08 17:00:00,62.83185886,121.0196705,415.6288867,744.9231265,75.49452619,253.3860327,177.0347589,76.35127379,73.21808768,3.13318611,103.0504741,0,103.0504741,2.27643851,100.7740356,1.096622812,2.112191711,-1.225681719,1.225681719,0.739757608,0.739757608,0.181639267,2.465904714,79.31197208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.38001086,1.649271951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786539571,76.23768434,72.16655043,77.88695629,177.0347589,0,0.237655072,76.25181799,-0.237655072,103.748182,0.839611054,0,220.806891,77.88695629,271.7823462,3,9,23% -2018-03-08 18:00:00,53.4709863,134.7741931,575.8207926,820.0486108,87.70344568,452.0277434,362.6280998,89.39964357,85.05886321,4.340780363,142.2590003,0,142.2590003,2.644582479,139.6144178,0.933244765,2.352253416,-0.575348851,0.575348851,0.628544138,0.628544138,0.152310314,2.973958467,95.65272721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.76181468,1.915991003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.154622786,91.94503972,83.91643747,93.86103073,362.6280998,0,0.442203176,63.75546289,-0.442203176,116.2445371,0.936929803,0,423.6735118,93.86103073,485.1036791,3,10,14% -2018-03-08 19:00:00,46.37247071,152.0262042,686.170162,856.6076694,95.13878535,623.4122602,525.9696198,97.44264047,92.26999995,5.172640521,169.2386854,0,169.2386854,2.868785403,166.3699,0.809352296,2.653357813,-0.145530468,0.145530468,0.555040865,0.555040865,0.138651883,3.190149939,102.6061881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.69343361,2.078425259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311252771,98.62897082,91.00468638,100.7073961,525.9696198,0,0.614014605,52.11964542,-0.614014605,127.8803546,0.968568712,0,600.4424037,100.7073961,666.3533802,3,11,11% -2018-03-08 20:00:00,42.74994174,172.7668151,737.9904321,870.9236639,98.45098052,746.6982287,645.6526248,101.0456038,95.48232021,5.563283605,181.9029847,0,181.9029847,2.968660308,178.9343244,0.746127238,3.015349761,0.204274784,-0.204274784,0.495220644,0.495220644,0.133404142,3.1296825,100.6613474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78123803,2.150784288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267444317,96.75951597,94.04868235,98.91030026,645.6526248,0,0.741342384,42.15410807,-0.741342384,137.8458919,0.98255478,0,728.4377552,98.91030026,793.1725686,3,12,9% -2018-03-08 21:00:00,43.50874135,194.6770336,727.4062867,868.1244106,97.78226532,808.27299,707.9557249,100.3172651,94.83376924,5.483495847,179.3165719,0,179.3165719,2.948496078,176.3680758,0.75937079,3.397755214,0.540078318,-0.540078318,0.437794858,0.437794858,0.134425928,2.815061199,90.54204486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.15782618,2.136175371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.039502256,87.03245745,93.19732843,89.16863282,707.9557249,0,0.815500309,35.36313864,-0.815500309,144.6368614,0.988687945,0,793.144619,89.16863282,851.5037058,3,13,7% -2018-03-08 22:00:00,48.43763503,214.3750308,655.2151786,847.264108,93.11062157,799.6927667,704.4504851,95.24228157,90.30299279,4.939288781,161.6721347,0,161.6721347,2.807628782,158.8645059,0.845396213,3.741550122,0.916743769,-0.916743769,0.373381272,0.373381272,0.142106936,2.284066122,73.46341789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80267151,2.034117495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65479813,70.6158316,88.45746964,72.64994909,704.4504851,0,0.831441434,33.75290588,-0.831441434,146.2470941,0.989863473,0,785.7672736,72.64994909,833.3152123,3,14,6% -2018-03-08 23:00:00,56.4224369,230.3725364,526.8985348,800.4596882,84.19202775,716.4714179,630.8461067,85.6253112,81.65332748,3.971983718,130.2913502,0,130.2913502,2.538700272,127.75265,0.984757296,4.020759266,1.41887341,-1.41887341,0.287512046,0.287512046,0.159787933,1.594191506,51.27467884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.48828421,1.839279705,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15498632,49.28717163,79.64327053,51.12645133,630.8461067,0,0.78810478,37.99124866,-0.78810478,142.0087513,0.986556659,0,702.0086982,51.12645133,735.4699381,3,15,5% -2018-03-08 00:00:00,66.31174746,243.172363,352.9523492,704.3294815,69.98091685,555.4714532,484.9400153,70.5314379,67.870734,2.660703896,87.68756625,0,87.68756625,2.110182845,85.5773834,1.157358326,4.244158385,2.263168845,-2.263168845,0.143129023,0.143129023,0.198272988,0.832862559,26.78772283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.23993111,1.528820288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.603406089,25.74937811,65.8433372,27.2781984,484.9400153,0,0.688513016,46.48748387,-0.688513016,133.5125161,0.977379732,0,539.8138791,27.2781984,557.6669144,3,16,3% -2018-03-08 01:00:00,77.28388017,253.8495659,152.3116421,483.1990252,45.94955545,306.5064527,260.7942564,45.71219631,44.56400682,1.148189495,38.31526966,0,38.31526966,1.385548633,36.92972102,1.348858168,4.43051073,4.421537579,-4.421537579,0,0,0.301681177,0.346387158,11.1410017,0.184321863,1,0.222423665,0,0.935822575,0.974584538,0.724496596,1,43.11299654,1.003825268,0.029000527,0.312029739,0.921052392,0.645548988,0.961238037,0.922476074,0.24119987,10.70915461,43.35419641,11.71297987,212.7241733,0,0.539724302,57.33512717,-0.539724302,122.6648728,0.95736011,0,247.0078343,11.71297987,254.6737454,3,17,3% -2018-03-08 02:00:00,88.5920768,263.3823695,1.803957425,14.00555052,1.459835132,6.411490322,4.982075612,1.42941471,1.415815716,0.013598993,0.481409779,0,0.481409779,0.044019415,0.437390363,1.546223431,4.596889539,39.58228407,-39.58228407,0,0,0.809240347,0.011004854,0.353953929,0.861855853,1,0.025258455,0,0.958934135,0.997696098,0.724496596,1,1.365255342,0.031891917,0.104523272,0.312029739,0.746668206,0.471164802,0.961238037,0.922476074,0.007798139,0.34023398,1.373053481,0.372125897,0.688244587,0,0.355721512,69.16232931,-0.355721512,110.8376707,0.909440607,0,1.998971055,0.372125897,2.242520012,3,18,12% -2018-03-08 03:00:00,100.7643708,272.5984045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758670039,4.757739694,-4.856097728,4.856097728,1,0.63940469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.134697094,82.25889534,-0.134697094,97.74110466,0.678796742,0,0,0,0,3,19,0% -2018-03-08 04:00:00,112.488441,282.310227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963293665,4.927242973,-2.041577143,2.041577143,1,0.879283943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092347068,95.29864668,0.092347068,84.70135332,0,0.508564296,0,0,0,3,20,0% -2018-03-08 05:00:00,123.7428528,293.5140554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159720207,5.122786668,-1.085639853,1.085639853,1,0.715809039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.315717122,108.4041112,0.315717122,71.59588876,0,0.891630382,0,0,0,3,21,0% -2018-03-08 06:00:00,133.9376567,307.6315145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337653101,5.369182811,-0.555592442,0.555592442,1,0.625165593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520176635,121.3441005,0.520176635,58.65589945,0,0.953878804,0,0,0,3,22,0% -2018-03-08 07:00:00,142.0246329,326.5478068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478797462,5.699334394,-0.181592551,0.181592551,1,0.561207845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691778096,133.7710259,0.691778096,46.22897411,0,0.977722487,0,0,0,3,23,0% -2018-03-09 08:00:00,146.3273148,351.1848185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553893429,6.129331366,0.129231297,-0.129231297,1,0.508053836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818813437,144.96619,0.818813437,35.03380997,0,0.988936029,0,0,0,3,0,0% -2018-03-09 09:00:00,145.3555347,17.93515954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536932667,0.313027586,0.424805467,-0.424805467,1,0.457507676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892611918,153.2033169,0.892611918,26.79668314,0,0.993984615,0,0,0,3,1,0% -2018-03-09 10:00:00,139.4942597,40.65463467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434634119,0.709557231,0.744637397,-0.744637397,1,0.402813195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9081311,155.2483477,0.9081311,24.75165228,0,0.99494187,0,0,0,3,2,0% -2018-03-09 11:00:00,130.4956894,57.65070969,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27757944,1.0061947,1.143932648,-1.143932648,1,0.334529686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86430065,149.8029443,0.86430065,30.19705566,0,0.99214976,0,0,0,3,3,0% -2018-03-09 12:00:00,119.827729,70.53061918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091388407,1.230991528,1.744065793,-1.744065793,1,0.231900873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764095593,139.8265989,0.764095593,40.17340109,0,0.984563161,0,0,0,3,4,0% -2018-03-09 13:00:00,108.3425312,81.05798389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890933889,1.414728704,2.960208173,-2.960208173,1,0.023928278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614333953,127.90354,0.614333953,52.09645995,0,0.968611042,0,0,0,3,5,0% -2018-03-09 14:00:00,96.5310375,90.47649371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684784435,1.579112711,8.182913511,-8.182913511,1,0,#DIV/0!,0,0,0.465013755,1,0.121602904,0,0.94875477,0.987516733,0.724496596,1,0,0,0.065170619,0.312029739,0.831869165,0.556365761,0.961238037,0.922476074,0,0,0,0,0,0,-0.425212508,115.1641152,0.425212508,64.83588477,0,0.932411738,0,0,0,3,6,0% -2018-03-09 15:00:00,84.57919509,99.69048732,35.05191886,180.7657075,17.97501686,17.69723995,0,17.69723995,17.43300378,0.26423617,46.46219212,37.4214355,9.040756625,0.542013079,8.498743546,1.476185433,1.739927237,-9.154550418,9.154550418,0,0,0.512811208,0.13550327,4.358250944,1,0.087319779,0,0.1088039,0.961238037,1,0.462645934,0.738149338,16.75726633,0.387047443,0.115824807,0.01557015,0.724496596,0.448993192,0.998597976,0.959836013,0.098171658,4.19795752,16.85543798,4.585004962,0,34.15380402,-0.207016231,101.9475528,0.207016231,78.05244717,0,0.808473045,16.85543798,32.19743489,37.92801517,3,7,125% -2018-03-09 16:00:00,73.21379173,109.4979184,226.3371318,588.2592027,56.44707925,67.45830358,11.00708713,56.45121645,54.74499155,1.706224905,56.58014575,0,56.58014575,1.702087707,54.87805805,1.277821724,1.9110992,-2.55804567,2.55804567,0.967605263,0.967605263,0.249393808,1.664736869,53.54366019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.6229682,1.23315675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.206096194,51.46820281,53.8290644,52.70135956,11.00708713,0,0.018711288,88.92785962,-0.018711288,91.07214038,0,0,53.8290644,52.70135956,88.3210502,3,8,64% -2018-03-09 17:00:00,62.50314183,120.7721576,421.5387265,748.560113,75.92854252,257.9638906,181.1471368,76.8167538,73.63901682,3.177736979,104.4964703,0,104.4964703,2.289525704,102.2069446,1.090885618,2.107871795,-1.215002914,1.215002914,0.737931425,0.737931425,0.180122342,2.494955162,80.24633435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.78462396,1.658753578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.807586521,77.1358289,72.59221049,78.79458247,181.1471368,0,0.241994108,75.99573583,-0.241994108,104.0042642,0.843383399,0,225.3686985,78.79458247,276.9381769,3,9,23% -2018-03-09 18:00:00,53.11304569,134.5639113,581.7042116,822.4315537,88.04943429,457.0333686,367.2538175,89.77955104,85.39441898,4.38513206,143.6959362,0,143.6959362,2.655015312,141.0409208,0.926997523,2.348583306,-0.57231701,0.57231701,0.628025662,0.628025662,0.151364615,3.000874857,96.51845086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.08436366,1.923549555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.174123619,92.77720622,84.25848728,94.70075578,367.2538175,0,0.446546361,63.47768298,-0.446546361,116.522317,0.938029543,0,428.753418,94.70075578,490.7331686,3,10,14% -2018-03-09 19:00:00,45.98651371,151.904917,691.909411,858.4411153,95.44077147,628.542167,530.7633816,97.77878548,92.56288008,5.215905404,170.6393388,0,170.6393388,2.877891399,167.7614474,0.802616076,2.651240952,-0.145750845,0.145750845,0.555078552,0.555078552,0.137938247,3.215346121,103.4165839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97496113,2.085022522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.32950732,99.40795413,91.30446845,101.4929767,530.7633816,0,0.618287466,51.80881629,-0.618287466,128.1911837,0.969131468,0,605.6839633,101.4929767,672.1090867,3,11,11% -2018-03-09 20:00:00,42.35480595,172.8013559,743.5096704,872.5223084,98.72703562,751.7997381,650.4447969,101.3549412,95.75005123,5.604889956,183.249512,0,183.249512,2.976984388,180.2725277,0.739230818,3.015952613,0.202002384,-0.202002384,0.495609247,0.495609247,0.13278514,3.153226142,101.4185919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.03859128,2.156815055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284501606,97.48740813,94.32309288,99.64422319,650.4447969,0,0.745476409,41.79996485,-0.745476409,138.2000351,0.982928796,0,733.6640142,99.64422319,798.8791654,3,12,9% -2018-03-09 21:00:00,43.13856398,194.881556,732.6537957,869.6840655,98.04340133,813.2612935,712.6512086,100.6100848,95.08703103,5.523053787,180.5967654,0,180.5967654,2.956370292,177.6403951,0.752909976,3.401324803,0.535879988,-0.535879988,0.438512814,0.438512814,0.13381955,2.836920869,91.24512699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.40127104,2.141880212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055339512,87.70828674,93.45661055,89.85016695,712.6512086,0,0.819436893,34.97153574,-0.819436893,145.0284643,0.988982489,0,798.2561764,89.85016695,857.0613136,3,13,7% -2018-03-09 22:00:00,48.11648342,214.685274,660.1584586,848.973095,93.36840197,804.5372506,709.0076971,95.52955347,90.55300016,4.976553313,162.8784632,0,162.8784632,2.815401812,160.0630613,0.83979106,3.746964887,0.909961169,-0.909961169,0.374541165,0.374541165,0.141433319,2.30415356,74.10949895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.0429881,2.039749029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66935141,71.23686929,88.71233951,73.27661832,709.0076971,0,0.83513565,33.37003441,-0.83513565,146.6299656,0.990129487,0,790.7217668,73.27661832,838.6798479,3,14,6% -2018-03-09 23:00:00,56.15155485,230.7197067,531.5179088,802.6091698,84.46617695,721.2138036,635.287787,85.92601658,81.91921007,4.00680651,131.4196376,0,131.4196376,2.546966882,128.8726707,0.980029512,4.026818531,1.407427024,-1.407427024,0.289469493,0.289469493,0.158915016,1.612272668,51.85623114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.74386067,1.845268836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.168086059,49.84618182,79.91194673,51.69145066,635.287787,0,0.791528194,37.67144616,-0.791528194,142.3285538,0.986831056,0,706.8336646,51.69145066,740.6646852,3,15,5% -2018-03-09 00:00:00,66.08025921,243.5234172,357.2165427,707.5905904,70.31929499,560.300155,489.4083971,70.89175798,68.19890879,2.692849188,88.73167267,0,88.73167267,2.120386194,86.61128648,1.153318094,4.250285436,2.240142491,-2.240142491,0.147066762,0.147066762,0.196853411,0.848165576,27.27992046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.55538521,1.53621258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614493072,26.22249719,66.16987828,27.75870977,489.4083971,0,0.691654756,46.23875971,-0.691654756,133.7612403,0.977709599,0,544.6691657,27.75870977,562.836686,3,16,3% -2018-03-09 01:00:00,77.07919462,254.1967715,156.0166243,489.7019039,46.51729087,311.9958591,265.7051169,46.29074214,45.11462292,1.176119215,39.2307048,0,39.2307048,1.40266795,37.82803685,1.345285731,4.436570611,4.347267051,-4.347267051,0,0,0.298155989,0.350666988,11.27865573,0.175783029,1,0.226096479,0,0.935309029,0.974070992,0.724496596,1,43.63744823,1.016228155,0.027760203,0.312029739,0.924293881,0.648790477,0.961238037,0.922476074,0.244491791,10.84147289,43.88194002,11.85770105,218.9986668,0,0.542585428,57.14018585,-0.542585428,122.8598142,0.957848612,0,253.6495091,11.85770105,261.4101373,3,17,3% -2018-03-09 02:00:00,88.41775692,263.7291889,2.342160178,17.60951479,1.855929046,8.123026295,6.305404165,1.81762213,1.799965937,0.017656193,0.62384696,0,0.62384696,0.055963108,0.567883852,1.543180975,4.60294268,35.16817053,-35.16817053,0,0,0.792400564,0.013990777,0.449991484,0.845773207,1,0.028427143,0,0.958634273,0.997396236,0.724496596,1,1.736269473,0.040545082,0.103137424,0.312029739,0.749457771,0.473954367,0.961238037,0.922476074,0.009891028,0.432548931,1.746160502,0.473094013,0.972462265,0,0.358068024,69.01840593,-0.358068024,110.9815941,0.910361728,0,2.63145293,0.473094013,2.941083499,3,18,12% -2018-03-09 03:00:00,100.5747667,272.9526016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755360824,4.763921601,-4.932412566,4.932412566,1,0.626354084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137141834,82.11750991,-0.137141834,97.88249009,0.685413948,0,0,0,0,3,19,0% -2018-03-09 04:00:00,112.2889689,282.6807201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959812221,4.933709297,-2.053384414,2.053384414,1,0.881303105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090038247,95.16580741,0.090038247,84.83419259,0,0.494680436,0,0,0,3,20,0% -2018-03-09 05:00:00,123.5190457,293.9070797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155814037,5.129646236,-1.08771876,1.08771876,1,0.716164553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313475899,108.2688297,0.313475899,71.7311703,0,0.890498105,0,0,0,3,21,0% -2018-03-09 06:00:00,133.6717185,308.0390092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333011604,5.376294935,-0.554472195,0.554472195,1,0.624974019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51792998,121.1935008,0.51792998,58.80649919,0,0.953461854,0,0,0,3,22,0% -2018-03-09 07:00:00,141.6994829,326.9153745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473122524,5.70574966,-0.178795325,0.178795325,1,0.560729491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689453317,133.5868497,0.689453317,46.41315025,0,0.977478774,0,0,0,3,23,0% -2018-03-10 08:00:00,145.9462272,351.3818809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547242196,6.132770753,0.133382104,-0.133382104,1,0.507344006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816343197,144.7203915,0.816343197,35.27960849,0,0.988751251,0,0,0,3,0,0% -2018-03-10 09:00:00,144.9603462,17.87584893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530035327,0.31199242,0.430527738,-0.430527738,1,0.45652911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889938889,152.8655687,0.889938889,27.1344313,0,0.993816367,0,0,0,3,1,0% -2018-03-10 10:00:00,139.1258876,40.42888387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428204813,0.705617136,0.752708167,-0.752708167,1,0.401433012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905211921,154.8518404,0.905211921,25.14815956,0,0.994764316,0,0,0,3,2,0% -2018-03-10 11:00:00,130.1618247,57.36957573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271752401,1.001287987,1.15626611,-1.15626611,1,0.332420539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861108929,149.4413223,0.861108929,30.55867769,0,0.991935337,0,0,0,3,3,0% -2018-03-10 12:00:00,119.519452,70.24310911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086007957,1.225973531,1.766078844,-1.766078844,1,0.22813642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760623731,139.5192155,0.760623731,40.48078448,0,0.984264475,0,0,0,3,4,0% -2018-03-10 13:00:00,108.048597,80.77734345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88580377,1.409830604,3.014694259,-3.014694259,1,0.014610608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610593676,127.632442,0.610593676,52.367558,0,0.968112483,0,0,0,3,5,0% -2018-03-10 14:00:00,96.24134506,90.20351724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679728348,1.574348373,8.581102677,-8.581102677,1,0,#DIV/0!,0,0,0.483818029,1,0.116011864,0,0.949404743,0.988166706,0.724496596,1,0,0,0.067311502,0.312029739,0.826915751,0.551412347,0.961238037,0.922476074,0,0,0,0,0,0,-0.421234062,114.9125235,0.421234062,65.08747645,0,0.931301147,0,0,0,3,6,0% -2018-03-10 15:00:00,84.29102546,99.42321205,38.81093472,195.7688372,19.33671035,19.04621041,0,19.04621041,18.75363719,0.29257322,49.72462189,39.73138827,9.993233623,0.583073162,9.410160461,1.471155924,1.735262403,-8.712634523,8.712634523,0,0,0.498228411,0.14576829,4.688409297,1,0.019705818,0,0.114275793,0.961238037,1,0.451971217,0.727474621,18.02670939,0.421005411,0.115824807,0.003401373,0.724496596,0.448993192,0.999698722,0.960936759,0.10560863,4.508846013,18.13231803,4.929851425,0,38.94844875,-0.202950525,101.709551,0.202950525,78.29044903,0,0.803634537,18.13231803,36.23017001,41.84423969,3,7,131% -2018-03-10 16:00:00,72.90663981,109.2363722,232.0339282,595.1328275,57.10679833,70.8196087,13.68562128,57.13398742,55.38481766,1.749169763,57.98129297,0,57.98129297,1.721980671,56.25931229,1.272460911,1.906534357,-2.518730285,2.518730285,0.960881936,0.960881936,0.246114001,1.697585766,54.60019363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.2379934,1.247569135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.229895108,52.48378294,54.46788851,53.73135207,13.68562128,0,0.022995911,88.68231523,-0.022995911,91.31768477,0,0,54.46788851,53.73135207,89.63398381,3,8,65% -2018-03-10 17:00:00,62.17320257,120.5236304,427.456916,752.1382974,76.35852493,262.5680924,185.2897079,77.27838446,74.05603367,3.222350791,105.9443695,0,105.9443695,2.30249126,103.6418782,1.085127091,2.103534177,-1.204460199,1.204460199,0.736128515,0.736128515,0.178634436,2.523954749,81.17906076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18547642,1.66814708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828596624,78.032401,73.01407305,79.70054808,185.2897079,0,0.246350583,75.73833697,-0.246350583,104.261663,0.847037217,0,229.9613515,79.70054808,282.1237662,3,9,23% -2018-03-10 18:00:00,52.75390579,134.3524703,587.581724,824.7792347,88.39256749,462.0452881,371.8886434,90.15664468,85.72720545,4.429439231,145.1313538,0,145.1313538,2.665362044,142.4659918,0.920729349,2.344892965,-0.569285771,0.569285771,0.62750729,0.62750729,0.150434508,3.027712391,97.38163819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40425067,1.931045727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193567321,93.60693471,84.59781799,95.53798044,371.8886434,0,0.45089477,63.19889403,-0.45089477,116.801106,0.939109381,0,433.8419318,95.53798044,496.3696292,3,10,14% -2018-03-10 19:00:00,45.59929874,151.7834067,697.6313983,860.2478063,95.74002193,633.6625894,535.5504422,98.11214718,92.85310702,5.259040161,172.0357243,0,172.0357243,2.886914904,169.1488094,0.7958579,2.649120196,-0.145937007,0.145937007,0.555110388,0.555110388,0.137235827,3.240437435,104.2236069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.25393831,2.091560021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.347685891,100.1836952,91.6016242,102.2752553,535.5504422,0,0.622553685,51.49714113,-0.622553685,128.5028589,0.969685641,0,610.9171982,102.2752553,677.8543073,3,11,11% -2018-03-10 20:00:00,41.95862779,172.8384013,749.0029974,874.0970019,99.00016831,756.8782943,655.2170453,101.6612489,96.01494796,5.646300975,184.5896687,0,184.5896687,2.985220346,181.6044484,0.732316205,3.016599177,0.199781261,-0.199781261,0.495989082,0.495989082,0.132175931,3.176649548,102.1719691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.29322009,2.162781979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301471784,98.21158303,94.59469187,100.374365,655.2170453,0,0.749593059,41.44486033,-0.749593059,138.5551397,0.983297141,0,738.8677394,100.374365,804.5607538,3,12,9% -2018-03-10 21:00:00,42.76815433,195.091234,737.8698233,871.2192561,98.30132679,818.215512,717.3159585,100.8995535,95.3371791,5.562374406,181.8692291,0,181.8692291,2.964147696,178.9050814,0.746445108,3.404984374,0.531751572,-0.531751572,0.439218815,0.439218815,0.133223129,2.85865906,91.94430195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.64172288,2.147514916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.071088758,88.38036031,93.71281163,90.52787522,717.3159585,0,0.823347227,34.57871853,-0.823347227,145.4212815,0.98927228,0,803.3336053,90.52787522,862.5822891,3,13,7% -2018-03-10 22:00:00,47.79600607,215.0009021,665.0681495,850.6537314,93.62259786,809.3390674,713.5259717,95.81309574,90.7995311,5.013564637,164.0765395,0,164.0765395,2.823066756,161.2534727,0.834197675,3.752473636,0.903282254,-0.903282254,0.375683327,0.375683327,0.140771435,2.324134552,74.75215636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.27996302,2.045302255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.683827572,71.85461603,88.9637906,73.89991829,713.5259717,0,0.838797204,32.98667553,-0.838797204,147.0133245,0.990390836,0,795.6333743,73.89991829,843.9993928,3,14,6% -2018-03-10 23:00:00,55.88180436,231.0710935,536.1054204,804.72055,84.73610545,725.9071854,639.6847971,86.22238834,82.18099923,4.041389111,132.5400722,0,132.5400722,2.555106222,129.984966,0.975321478,4.032951387,1.396165408,-1.396165408,0.291395343,0.291395343,0.158058662,1.630282009,52.43547346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.99550237,1.85116576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181133766,50.40297157,80.17663613,52.25413733,639.6847971,0,0.794915449,37.35272971,-0.794915449,142.6472703,0.987100229,0,711.6096456,52.25413733,745.8089334,3,15,5% -2018-03-10 00:00:00,65.84992868,243.8775123,361.4553683,710.7886185,70.65181485,565.0737218,493.8275165,71.2462052,68.52140196,2.724803245,89.76945172,0,89.76945172,2.130412895,87.63903882,1.149298068,4.256465562,2.217575616,-2.217575616,0.150925925,0.150925925,0.195464838,0.863463039,27.77193946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.8653779,1.54347689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625576032,26.69544457,66.49095393,28.23892146,493.8275165,0,0.694760022,45.99190281,-0.694760022,134.0080972,0.978032704,0,549.4704154,28.23892146,567.9522247,3,16,3% -2018-03-10 01:00:00,76.87542248,254.5461763,159.7149634,496.0682737,47.07319592,317.4199957,270.5622314,46.85776424,45.65376538,1.203998858,40.14417253,0,40.14417253,1.419430539,38.724742,1.341729236,4.442668875,4.275415246,-4.275415246,0,0,0.294732534,0.354857635,11.41344135,0.167350395,1,0.229764921,0,0.934793182,0.973555146,0.724496596,1,44.15031,1.028372593,0.026526165,0.312029739,0.92753095,0.652027546,0.961238037,0.922476074,0.247737878,10.97103395,44.39804788,11.99940655,225.283535,0,0.545413294,56.94708875,-0.545413294,123.0529112,0.9583264,0,260.293207,11.99940655,268.1465786,3,17,3% -2018-03-10 02:00:00,88.24265005,264.0776216,2.971100867,21.74147892,2.304360716,10.09310988,7.835836733,2.257273152,2.234875738,0.022397413,0.789862781,0,0.789862781,0.069484978,0.720377803,1.540124784,4.609023978,31.61441587,-31.61441587,0,0,0.775591546,0.017371244,0.558718935,0.829822858,1,0.031620597,0,0.958329632,0.997091596,0.724496596,1,2.156489779,0.05034163,0.101747695,0.312029739,0.752270659,0.476767255,0.961238037,0.922476074,0.012253437,0.537061892,2.168743217,0.587403522,1.333480302,0,0.360409555,68.8746497,-0.360409555,111.1253503,0.911268939,0,3.383902396,0.587403522,3.768346253,3,18,11% -2018-03-10 03:00:00,100.3853287,273.307941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752054506,4.770123442,-5.011148651,5.011148651,1,0.61288942,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139566745,81.97722359,-0.139566745,98.02277641,0.691748469,0,0,0,0,3,19,0% -2018-03-10 04:00:00,112.0891713,283.0518438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956325094,4.940186629,-2.065301739,2.065301739,1,0.883341088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087738968,95.03354486,0.087738968,84.96645514,0,0.480127787,0,0,0,3,20,0% -2018-03-10 05:00:00,123.294399,294.299976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151893212,5.13650357,-1.089770644,1.089770644,1,0.716515446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311232652,108.1335315,0.311232652,71.86646845,0,0.889348476,0,0,0,3,21,0% -2018-03-10 06:00:00,133.4045205,308.445138,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32834812,5.38338322,-0.553302378,0.553302378,1,0.624773969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515669257,121.0421996,0.515669257,58.95780042,0,0.953038625,0,0,0,3,22,0% -2018-03-10 07:00:00,141.3730101,327.2802826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467424499,5.712118509,-0.175938786,0.175938786,1,0.560240994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687102777,133.4012039,0.687102777,46.5987961,0,0.977230683,0,0,0,3,23,0% -2018-03-11 08:00:00,145.5641348,351.5776982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540573425,6.13618841,0.137604449,-0.137604449,1,0.506621943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813836663,144.4724957,0.813836663,35.52750433,0,0.988562611,0,0,0,3,0,0% -2018-03-11 09:00:00,144.5639645,17.8196359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523117161,0.311011318,0.436343469,-0.436343469,1,0.455534562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887220918,152.5260796,0.887220918,27.47392038,0,0.99364425,0,0,0,3,1,0% -2018-03-11 10:00:00,138.755648,40.2075914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421742913,0.701754854,0.76091629,-0.76091629,1,0.40002934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902241637,154.4543029,0.902241637,25.54569708,0,0.994582473,0,0,0,3,2,0% -2018-03-11 11:00:00,129.8257438,57.09179295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265886684,0.996439763,1.168838033,-1.168838033,1,0.330270614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857862848,149.0774639,0.857862848,30.92253614,0,0.991715625,0,0,0,3,3,0% -2018-03-11 12:00:00,119.2089813,69.9576737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080589222,1.220991743,1.788630408,-1.788630408,1,0.224279875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757097391,139.2089742,0.757097391,40.79102585,0,0.983958298,0,0,0,3,4,0% -2018-03-11 13:00:00,107.7526723,80.49784555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880638909,1.404952446,3.071215522,-3.071215522,1,0.004944903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606801948,127.3586205,0.606801948,52.64137952,0,0.967600792,0,0,0,3,5,0% -2018-03-11 14:00:00,95.94992744,89.9310124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674642151,1.569592266,9.020314329,-9.020314329,1,0,#DIV/0!,0,0,0.503083592,1,0.110410037,0,0.950048747,0.98881071,0.724496596,1,0,0,0.069472545,0.312029739,0.821952715,0.546449311,0.961238037,0.922476074,0,0,0,0,0,0,-0.417210132,114.6585763,0.417210132,65.34142369,0,0.930156314,0,0,0,3,6,0% -2018-03-11 15:00:00,84.00095996,99.15586623,42.72093092,210.7949108,20.69037524,20.38853251,0,20.38853251,20.06648408,0.322048423,52.89668267,41.91460721,10.98207546,0.623891153,10.35818431,1.466093326,1.730596338,-8.310211048,8.310211048,0.048716524,0.048716524,0.484314709,0.164063416,5.276843414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.28866777,0.452007016,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118863386,5.072302604,19.40753115,5.524309621,0,41.91460721,-0.198840698,101.4691744,0.198840698,78.5308256,0,0.798542424,19.40753115,38.99490165,44.92891438,3,7,132% -2018-03-11 16:00:00,72.5982362,108.9742533,237.7582039,601.8702627,57.75676358,74.24309954,16.43559371,57.80750583,56.01518406,1.792321771,59.38880874,0,59.38880874,1.741579522,57.64722922,1.267078253,1.90195952,-2.480510327,2.480510327,0.954345938,0.954345938,0.242922274,1.730372547,55.65472923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.84392556,1.261768435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.25364902,53.49744266,55.09757458,54.7592111,16.43559371,0,0.027307536,88.43519893,-0.027307536,91.56480107,0,0,55.09757458,54.7592111,90.93638306,3,8,65% -2018-03-11 17:00:00,61.8421822,120.2740668,433.3804507,755.6574352,76.78434292,267.1959951,189.4599785,77.73601657,74.46901168,3.267004898,107.393439,0,107.393439,2.315331243,105.0781078,1.079349696,2.09917847,-1.194056317,1.194056317,0.734349346,0.734349346,0.177175373,2.552890225,82.10972513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58244659,1.677449604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849560277,78.92699099,73.43200687,80.60444059,189.4599785,0,0.250722046,75.47975673,-0.250722046,104.5202433,0.850575974,0,234.5821126,80.60444059,287.3361068,3,9,22% -2018-03-11 18:00:00,52.39370555,134.1398148,593.450538,827.0914342,88.73271232,467.060837,376.5300625,90.53077449,86.05709366,4.47368083,146.5645723,0,146.5645723,2.675618665,143.8889537,0.914442669,2.341181426,-0.566258137,0.566258137,0.626989534,0.626989534,0.14951998,3.054459501,98.24191719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72135176,1.938476615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.212945511,94.43386761,84.93429728,96.37234423,376.5300625,0,0.455245995,62.91923694,-0.455245995,117.0807631,0.94016927,0,438.9362912,96.37234423,502.010063,3,10,14% -2018-03-11 19:00:00,45.21095468,151.6615964,703.3336027,862.0276104,96.0364179,638.7709724,540.3283811,98.44259135,93.14056556,5.302025787,173.4272272,0,173.4272272,2.895852336,170.5313749,0.789080017,2.646994206,-0.146091249,0.146091249,0.555136765,0.555136765,0.136544618,3.265414001,105.0269391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.53025439,2.09803516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365781328,100.9558887,91.89603572,103.0539239,540.3283811,0,0.626810991,51.18476681,-0.626810991,128.8152332,0.970231137,0,616.1394553,103.0539239,683.5861874,3,11,11% -2018-03-11 20:00:00,41.56152334,172.8779055,754.4682239,875.6477017,99.27027957,761.9315762,659.9671617,101.9644145,96.27691437,5.68750016,185.922921,0,185.922921,2.993365197,182.9295558,0.725385424,3.017288655,0.197609494,-0.197609494,0.496360476,0.496360476,0.131576488,3.199944542,102.9212162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54503217,2.168682896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318348928,98.93178783,94.8633811,101.1004707,659.9671617,0,0.75369028,41.08893943,-0.75369028,138.9110606,0.983659752,0,744.0465157,101.1004707,810.2147518,3,12,9% -2018-03-11 21:00:00,42.39762167,195.3060439,743.0525522,872.7300394,98.55596638,823.1336577,721.9480733,101.1855844,95.58414036,5.601444005,183.1335201,0,183.1335201,2.971826019,180.161694,0.739978093,3.408733516,0.527691139,-0.527691139,0.43991319,0.43991319,0.132636603,2.88026924,92.63935963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87911143,2.153077834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08674526,89.04847619,93.96585669,91.20155402,721.9480733,0,0.827229545,34.18481176,-0.827229545,145.8151882,0.989557285,0,808.3748317,91.20155402,868.0644248,3,13,7% -2018-03-11 22:00:00,47.4762961,215.3218444,669.9428181,852.3062182,93.87316219,814.0966374,718.0037855,96.09285194,91.04253999,5.050311948,165.2660148,0,165.2660148,2.830622195,162.4353926,0.828617684,3.758075136,0.896704505,-0.896704505,0.376808188,0.376808188,0.140121156,2.344004037,75.3912273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.51355241,2.050776145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.698222946,72.46891533,89.21177536,74.51969147,718.0037855,0,0.842424671,32.60294841,-0.842424671,147.3970516,0.990647512,0,800.5004392,74.51969147,849.2720869,3,14,6% -2018-03-11 23:00:00,55.61325083,231.4265835,540.6599974,806.7943056,85.00180453,730.5504531,644.0360432,86.51440994,82.4386865,4.075723436,133.6523939,0,133.6523939,2.56311803,131.0892759,0.970634335,4.039155858,1.385083888,-1.385083888,0.293290395,0.293290395,0.157218594,1.648215568,53.01227838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24320118,1.856970288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194126568,50.9574184,80.43732774,52.81438868,644.0360432,0,0.79826548,37.03521439,-0.79826548,142.9647856,0.987364196,0,716.3354578,52.81438868,750.9014189,3,15,5% -2018-03-11 00:00:00,65.62079509,244.2345215,365.6680242,713.924744,70.97854015,569.7915932,498.1967578,71.59483531,68.83827528,2.756560026,90.8007109,0,90.8007109,2.140264869,88.66044603,1.145298932,4.262696547,2.195453874,-2.195453874,0.154708965,0.154708965,0.194106499,0.878751226,28.2636601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.16996859,1.550614612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.636652272,27.16810515,66.80662087,28.71871976,498.1967578,0,0.697828114,45.746988,-0.697828114,134.253012,0.978349118,0,554.2169794,28.71871976,573.0128071,3,16,3% -2018-03-11 01:00:00,76.67258502,254.8976526,163.4056201,502.300952,47.61753582,322.7786709,275.3651588,47.41351201,46.18169142,1.231820587,41.05542884,0,41.05542884,1.435844395,39.61958444,1.338189055,4.448803294,4.205862106,-4.205862106,0,0,0.291406965,0.358961099,11.54542286,0.159021535,1,0.233429105,0,0.934275036,0.973036999,0.724496596,1,44.65183109,1.040264376,0.025298302,0.312029739,0.930763708,0.655260304,0.961238037,0.922476074,0.250939394,11.0978996,44.90277048,12.13816398,231.5761686,0,0.548207519,56.75587199,-0.548207519,123.244128,0.958793663,0,266.9365333,12.13816398,274.8807189,3,17,3% -2018-03-11 02:00:00,88.06688716,264.4275406,3.6939685,26.40143138,2.803374742,12.32364929,9.576959946,2.746689345,2.71884265,0.027846695,0.980177522,0,0.980177522,0.084532092,0.89564543,1.537057143,4.615131216,28.69352177,-28.69352177,0,0,0.758905968,0.021133023,0.679710663,0.814013265,1,0.034836973,0,0.958020339,0.996782302,0.724496596,1,2.624307266,0.061243213,0.100354965,0.312029739,0.755105195,0.479601791,0.961238037,0.922476074,0.0148748,0.653363743,2.639182066,0.714606956,1.781187516,0,0.362743967,68.73119165,-0.362743967,111.2688083,0.912161732,0,4.263913156,0.714606956,4.731609117,3,18,11% -2018-03-11 03:00:00,100.1960584,273.6642922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748751117,4.776342943,-5.092440017,5.092440017,1,0.598987778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141971988,81.8380272,-0.141971988,98.1619728,0.69781785,0,0,0,0,3,19,0% -2018-03-11 04:00:00,111.889051,283.423459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952832337,4.946672537,-2.077335439,2.077335439,1,0.885398972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085448926,94.90184038,0.085448926,85.09815962,0,0,0,0,0,3,20,0% -2018-03-11 05:00:00,123.0689255,294.6925914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147957958,5.143356002,-1.091797593,1.091797593,1,0.716862074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.308987027,107.9981946,0.308987027,72.00180536,0,0.888180908,0,0,0,3,21,0% -2018-03-11 06:00:00,133.1360974,308.8497413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323663252,5.39044488,-0.552084392,0.552084392,1,0.624565681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513394157,120.8901785,0.513394157,59.10982151,0,0.952608942,0,0,0,3,22,0% -2018-03-11 07:00:00,141.0452806,327.6423975,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46170454,5.718438605,-0.173024086,0.173024086,1,0.559742551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684726306,133.2140865,0.684726306,46.78591351,0,0.976978123,0,0,0,3,23,0% -2018-03-12 08:00:00,145.1811316,351.7721445,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533888758,6.139582137,0.141897349,-0.141897349,1,0.505887814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811293886,144.2225409,0.811293886,35.7774591,0,0.988370052,0,0,0,3,0,0% -2018-03-12 09:00:00,144.1665162,17.76633612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516180379,0.310081061,0.442251919,-0.442251919,1,0.454524157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884458346,152.1849388,0.884458346,27.81506124,0,0.993468225,0,0,0,3,1,0% -2018-03-12 10:00:00,138.3836927,39.99063676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415251069,0.697968281,0.769261626,-0.769261626,1,0.398602204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899220926,154.0558497,0.899220926,25.94415033,0,0.994396312,0,0,0,3,2,0% -2018-03-12 11:00:00,129.4876,56.8173275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25998496,0.991649437,1.18165032,-1.18165032,1,0.328079584,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854563449,148.7115399,0.854563449,31.28846008,0,0.991490594,0,0,0,3,3,0% -2018-03-12 12:00:00,118.8964632,69.67432008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075134752,1.216046289,1.811731927,-1.811731927,1,0.220329283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753517975,138.8960416,0.753517975,41.10395836,0,0.983644582,0,0,0,3,4,0% -2018-03-12 13:00:00,107.4548973,80.21951037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875441755,1.40009458,3.129867137,-3.129867137,1,0,#DIV/0!,0,0,0.005059386,1,0.309251483,0,0.922914997,0.96167696,0.724496596,1,0,0,0.000863154,0.312029739,0.997555308,0.722051904,0.961238037,0.922476074,0,0,0,0,0,0,-0.602960507,127.0822239,0.602960507,52.91777608,0,0.967075829,0,0,0,3,5,0% -2018-03-12 14:00:00,95.65692218,89.65900003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669528244,1.564844755,9.507053289,-9.507053289,1,0,#DIV/0!,0,0,0.522820666,1,0.104799699,0,0.950686462,0.989448425,0.724496596,1,0,0,0.071653248,0.312029739,0.816982251,0.541478847,0.961238037,0.922476074,0,0,0,0,0,0,-0.413142743,114.4024105,0.413142743,65.59758951,0,0.928976453,0,0,0,3,6,0% -2018-03-12 15:00:00,83.70917495,98.88846455,46.77238697,225.7856823,22.03188841,21.7201357,0,21.7201357,21.36754569,0.35259001,55.96298018,43.95813072,12.00484946,0.664342725,11.34050673,1.461000717,1.725929299,-7.942400058,7.942400058,0.111615907,0.111615907,0.471044773,0.186902531,6.011427871,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.53929767,0.481314043,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135410247,5.778413125,20.67470792,6.259727168,0,43.95813072,-0.194689629,101.2265932,0.194689629,78.77340684,0,0.793180979,20.67470792,41.12648031,47.59116675,3,7,130% -2018-03-12 16:00:00,72.28872051,108.7115635,243.5065921,608.4717738,58.39694396,77.72605584,19.25433965,58.47171618,56.63606064,1.835655549,60.80187579,0,60.80187579,1.760883322,59.04099247,1.261676185,1.897374718,-2.443355384,2.443355384,0.947992069,0.947992069,0.239816686,1.763081876,56.70677368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44073574,1.275753973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.277346817,54.50870781,55.71808256,55.78446178,19.25433965,0,0.031643768,88.18664293,-0.031643768,91.81335707,0,0,55.71808256,55.78446178,92.22789711,3,8,66% -2018-03-12 17:00:00,61.51022127,120.0234456,439.3063605,759.1173737,77.20587308,271.8449592,193.6554512,78.18950805,74.87783115,3.311676909,108.8429552,0,108.8429552,2.328041933,106.5149132,1.073555885,2.094804305,-1.183793636,1.183793636,0.732594324,0.732594324,0.175744947,2.581748614,83.03791012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97541941,1.686658455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870468082,79.81919771,73.8458875,81.50585616,193.6554512,0,0.255106072,75.22012951,-0.255106072,104.7798705,0.854003097,0,239.2282426,81.50585616,292.5721953,3,9,22% -2018-03-12 18:00:00,52.03258357,133.9258901,599.3079055,829.367982,89.06974089,472.0773795,381.1755838,90.90179571,86.38395957,4.51783614,147.9949216,0,147.9949216,2.68578132,145.3091402,0.908139902,2.337447736,-0.563236948,0.563236948,0.626472881,0.626472881,0.148621001,3.081104861,99.09892354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03554771,1.945839424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.232249983,95.25765472,85.2677977,97.20349415,381.1755838,0,0.45959766,62.63885172,-0.45959766,117.3611483,0.941209194,0,444.0337616,97.20349415,507.6515044,3,10,14% -2018-03-12 19:00:00,44.82161017,151.5394091,709.0135521,863.7804277,96.32984481,643.8648046,545.0948164,98.76998821,93.42514457,5.344843644,174.8132446,0,174.8132446,2.90470024,171.9085444,0.782284674,2.644861635,-0.146215784,0.146215784,0.555158061,0.555158061,0.135864603,3.290266157,105.8262698,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.80380256,2.104445436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.38378663,101.7242359,92.18758919,103.8286813,545.0948164,0,0.631057152,50.87183959,-0.631057152,129.1281604,0.970767874,0,621.348125,103.8286813,689.3019203,3,11,11% -2018-03-12 20:00:00,41.16360841,172.9198228,759.9032101,877.1743876,99.53727409,766.9573143,664.6929849,102.2643294,96.53585803,5.728471382,187.2487472,0,187.2487472,3.001416067,184.2473311,0.718440499,3.018020249,0.195485214,-0.195485214,0.496723749,0.496723749,0.130986779,3.223103139,103.6660763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79393866,2.174515724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335127252,99.64777565,95.12906591,101.8222914,664.6929849,0,0.757766066,40.73234697,-0.757766066,139.267653,0.984016576,0,749.1979806,101.8222914,815.8386339,3,12,9% -2018-03-12 21:00:00,42.02707502,195.5259622,748.2002115,874.2164892,98.80724787,828.0137965,726.5457025,101.468094,95.82784479,5.640249235,184.3892067,0,184.3892067,2.979403083,181.4098036,0.733510834,3.412571813,0.523696801,-0.523696801,0.440596262,0.440596262,0.132059904,2.901745035,93.33009502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.1133694,2.158567392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1023044,89.71243732,94.2156738,91.87100471,726.5457025,0,0.831082131,33.78994003,-0.831082131,146.21006,0.989837474,0,813.3778369,91.87100471,873.5055721,3,13,7% -2018-03-12 22:00:00,47.15744603,215.6480285,674.7810713,853.9307678,94.12005035,818.8084327,722.4396644,96.36876831,91.28198357,5.086784744,166.4465499,0,166.4465499,2.838066784,163.6084831,0.8230527,3.763768123,0.890225463,-0.890225463,0.377916169,0.377916169,0.139482351,2.363757069,76.0265527,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.74371468,2.056169724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71253395,73.07961427,89.45624863,75.13578399,722.4396644,0,0.84601667,32.21897221,-0.84601667,147.7810278,0.99089951,0,805.3213578,75.13578399,854.4962257,3,14,6% -2018-03-12 23:00:00,55.34595887,231.786062,545.1805983,808.8309167,85.26326681,735.1425406,648.3404742,86.80206636,82.69226473,4.109801635,134.75635,0,134.75635,2.571002082,132.1853479,0.96596921,4.045429942,1.374177934,-1.374177934,0.295155423,0.295155423,0.156394536,1.666069458,53.58652084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48695021,1.862682257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207061651,51.5094021,80.69401186,53.37208435,648.3404742,0,0.801577265,36.71901485,-0.801577265,143.2809851,0.987622981,0,721.0099639,53.37208435,755.9409257,3,15,5% -2018-03-12 00:00:00,65.39289705,244.5943172,369.8537307,717.0001269,71.29953346,574.4532394,502.5155363,71.93770311,69.14958946,2.788113649,91.82526304,0,91.82526304,2.149944001,89.67531903,1.141321361,4.268976168,2.173763513,-2.173763513,0.158418236,0.158418236,0.192777651,0.894026461,28.75496419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.46921562,1.55762711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.647719128,27.64036533,67.11693475,29.19799244,502.5155363,0,0.700858364,45.50408867,-0.700858364,134.4959113,0.97865891,0,558.9082415,29.19799244,578.0177436,3,16,3% -2018-03-12 01:00:00,76.47070327,255.251073,167.0875922,508.4027378,48.15056962,328.0717392,280.1135101,47.95822914,46.69865229,1.259576848,41.96423854,0,41.96423854,1.451917331,40.51232121,1.334665553,4.454971643,4.138495471,-4.138495471,0,0,0.288175615,0.362979333,11.67466307,0.150794101,1,0.237089137,0,0.933754591,0.972516554,0.724496596,1,45.14225527,1.051909164,0.024076505,0.312029739,0.933992258,0.658488854,0.961238037,0.922476074,0.254097563,11.22213021,45.39635283,12.27403938,237.8740452,0,0.550967745,56.56657031,-0.550967745,123.4334297,0.959250586,0,273.5771701,12.27403938,281.6102834,3,17,3% -2018-03-12 02:00:00,87.89059127,264.7788192,4.512768053,31.57998856,3.350377797,14.81225436,11.52888366,3.283370697,3.249351545,0.034019152,1.195199114,0,1.195199114,0.101026252,1.094172862,1.533980199,4.621262185,26.25156193,-26.25156193,0,0,0.742421892,0.025256563,0.812337886,0.798351637,1,0.038074562,0,0.957706508,0.996468471,0.724496596,1,3.137322983,0.073193176,0.098960042,0.312029739,0.757959818,0.482456413,0.961238037,0.922476074,0.017740336,0.780850075,3.155063319,0.854043251,2.324780512,0,0.365069279,68.58815367,-0.365069279,111.4118463,0.913039695,0,5.277680208,0.854043251,5.836634435,3,18,11% -2018-03-12 03:00:00,100.006959,274.0215257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745450709,4.782577844,-5.176430208,5.176430208,1,0.58462461,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.144357726,81.69991171,-0.144357726,98.30008829,0.703638212,0,0,0,0,3,19,0% -2018-03-12 04:00:00,111.6886129,283.7954277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949334032,4.953164616,-2.089491999,2.089491999,1,0.887477866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08316783,94.77067619,0.08316783,85.22932381,0,0,0,0,0,3,20,0% -2018-03-12 05:00:00,122.8426405,295.0847759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144008539,5.150200911,-1.093801705,1.093801705,1,0.717204798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306738694,107.8627985,0.306738694,72.13720147,0,0.886994807,0,0,0,3,21,0% -2018-03-12 06:00:00,132.8664864,309.2526647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.318957654,5.397477219,-0.550819635,0.550819635,1,0.624349395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511104407,120.7374218,0.511104407,59.26257821,0,0.95217263,0,0,0,3,22,0% -2018-03-12 07:00:00,140.7163627,328.0015926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455963841,5.724707743,-0.170052375,0.170052375,1,0.559234359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682323779,133.0254993,0.682323779,46.97450071,0,0.976721006,0,0,0,3,23,0% -2018-03-13 08:00:00,144.7973126,351.9651018,0,0,0,0,0,0,0,0,0,0,0,0,0,2.527189852,6.142949879,0.146259825,-0.146259825,1,0.505141786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808714969,143.9705698,0.808714969,36.02943024,0,0.98817352,0,0,0,3,0,0% -2018-03-13 09:00:00,143.7681269,17.71577289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509227174,0.309198566,0.448252345,-0.448252345,1,0.453498024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88165157,151.8422375,0.88165157,28.15776246,0,0.993288254,0,0,0,3,1,0% -2018-03-13 10:00:00,138.0101723,39.7779009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408731909,0.69425534,0.777744038,-0.777744038,1,0.397151626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89615052,153.656595,0.89615052,26.34340505,0,0.994205801,0,0,0,3,2,0% -2018-03-13 11:00:00,129.1475454,56.54614395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254049887,0.986916391,1.194704914,-1.194704914,1,0.325847117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851211819,148.3437191,0.851211819,31.6562809,0,0.991260214,0,0,0,3,3,0% -2018-03-13 12:00:00,118.5820433,69.39305383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06964709,1.211137267,1.835395247,-1.835395247,1,0.216282617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749886924,138.5805839,0.749886924,41.41941611,0,0.983323281,0,0,0,3,4,0% -2018-03-13 13:00:00,107.1554118,79.94235719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870214748,1.395257345,3.190750617,-3.190750617,1,0,#DIV/0!,0,0,0.015260316,1,0.30370994,0,0.923785774,0.962547737,0.724496596,1,0,0,0.002591084,0.312029739,0.992678778,0.717175374,0.961238037,0.922476074,0,0,0,0,0,0,-0.599071121,126.8034005,0.599071121,53.19659948,0,0.966537456,0,0,0,3,5,0% -2018-03-13 14:00:00,95.36246613,89.38750075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664389017,1.560106198,10.04928049,-10.04928049,1,0,#DIV/0!,0,0,0.54303982,1,0.099183096,0,0.951317586,0.990079549,0.724496596,1,0,0,0.073853109,0.312029739,0.81200654,0.536503136,0.961238037,0.922476074,0,0,0,0,0,0,-0.409033938,114.1441627,0.409033938,65.85583728,0,0.927760754,0,0,0,3,6,0% -2018-03-13 15:00:00,83.41584196,98.62102207,50.95593264,240.6902032,23.35779601,23.03759962,0,23.03759962,22.65347228,0.384127344,58.91069504,45.8515155,13.05917955,0.704323731,12.35485582,1.45588109,1.721261547,-7.60508301,7.60508301,0.16930052,0.16930052,0.458392081,0.211303298,6.796240424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.77537922,0.510280145,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15308852,6.532804803,21.92846774,7.043084948,0,45.8515155,-0.190500132,100.9819728,0.190500132,79.01802724,0,0.78753299,21.92846774,43.15266606,50.17102462,3,7,129% -2018-03-13 16:00:00,71.97823163,108.4483054,249.2757559,614.9378613,59.02732169,81.26570655,22.13913045,59.1265761,57.24743016,1.879145943,62.21968458,0,62.21968458,1.779891537,60.43979304,1.256257132,1.892779997,-2.407235529,2.407235529,0.94181521,0.94181521,0.236795277,1.795698884,57.7558488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02840738,1.289525359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.300977729,55.51711871,56.32938511,56.80664407,22.13913045,0,0.036002224,87.93677865,-0.036002224,92.06322135,0,0,56.32938511,56.80664407,93.50819752,3,8,66% -2018-03-13 17:00:00,61.17745968,119.7717468,445.2317119,762.5180456,77.62299871,276.5123513,197.8736277,78.63872361,75.2823789,3.356344711,110.2922031,0,110.2922031,2.34061981,107.9515833,1.067748099,2.090411332,-1.173674181,1.173674181,0.730863795,0.730863795,0.174342924,2.610517217,83.96320731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36428611,1.695771084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.891310838,80.70862856,74.25559694,82.40439964,197.8736277,0,0.259500256,74.95958885,-0.259500256,105.0404111,0.857321962,0,243.8970037,82.40439964,297.8290352,3,9,22% -2018-03-13 18:00:00,51.67067804,133.7106423,605.1511236,831.6087555,89.40353026,477.0923103,385.8227416,91.26956874,86.70768396,4.561884786,149.4217424,0,149.4217424,2.695846301,146.7258961,0.901823458,2.333690953,-0.560224887,0.560224887,0.625957788,0.625957788,0.147737527,3.107637387,99.9523008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.34672391,1.953131468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.251472708,96.0779534,85.59819661,98.03108487,385.8227416,0,0.463947426,62.35787748,-0.463947426,117.6421225,0.942229168,0,449.1316375,98.03108487,513.2910219,3,10,14% -2018-03-13 19:00:00,44.43139362,151.4167674,714.6688239,865.5061884,96.62019222,648.9416194,549.847407,99.0942124,93.70673693,5.387475472,176.1931858,0,176.1931858,2.913455286,173.2797305,0.77547411,2.642721133,-0.146312745,0.146312745,0.555174643,0.555174643,0.135195756,3.314984467,106.6212956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.07447985,2.110788437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401694961,102.4884449,92.47617481,104.5992333,549.847407,0,0.635289977,50.55850513,-0.635289977,129.4414949,0.971295783,0,626.5406427,104.5992333,694.9987489,3,11,11% -2018-03-13 20:00:00,40.76499858,172.9641077,765.3058669,878.6770613,99.80106018,771.9532915,669.3924026,102.5608889,96.79168999,5.769198891,188.566638,0,188.566638,3.009370191,185.5572678,0.711483445,3.018793166,0.193406602,-0.193406602,0.497079213,0.497079213,0.130406762,3.246117549,104.4062988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.03985407,2.180278459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351801114,100.3593057,95.39165519,102.5395842,669.3924026,0,0.761818456,40.37522768,-0.761818456,139.6247723,0.984367565,0,754.3198248,102.5395842,821.4299319,3,12,9% -2018-03-13 21:00:00,41.65662317,195.7509649,753.3110777,875.6786952,99.05510216,832.8540495,731.107047,101.7470025,96.06822536,5.678777104,185.6358691,0,185.6358691,2.986876805,182.6489923,0.72704523,3.416498852,0.519766719,-0.519766719,0.441268346,0.441268346,0.131492958,2.923080233,94.01630831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.34443235,2.163982077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.117761678,90.37205164,94.46219403,92.53603371,731.107047,0,0.834903317,33.39422779,-0.834903317,146.6057722,0.990112826,0,818.3406586,92.53603371,878.903642,3,13,7% -2018-03-13 22:00:00,46.83954777,215.9793802,679.5815564,855.5276036,94.36322016,823.4729776,726.8321839,96.64079374,91.51782091,5.122972828,167.6178155,0,167.6178155,2.845399251,164.7724163,0.817504329,3.769551302,0.883842732,-0.883842732,0.379007681,0.379007681,0.138854887,2.38338882,76.65797729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.97041051,2.061482071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726757087,73.6865636,89.6971676,75.74804567,726.8321839,0,0.849571867,31.83486617,-0.849571867,148.1651338,0.991146827,0,810.0945805,75.74804567,859.6701614,3,14,6% -2018-03-13 23:00:00,55.07999221,232.1494127,549.666213,810.8308664,85.52048621,739.6824261,652.597082,87.08534411,82.94172802,4.143616093,135.8516954,0,135.8516954,2.578758196,133.2729372,0.961327216,4.051771608,1.363443159,-1.363443159,0.296991177,0.296991177,0.155586216,1.683839862,54.15807814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72674381,1.868301535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219936248,52.05880471,80.94668006,53.92710624,652.597082,0,0.804849826,36.40424528,-0.804849826,143.5957547,0.98787661,0,725.6320728,53.92710624,760.9262853,3,15,5% -2018-03-13 00:00:00,65.16627255,244.9567715,374.0117295,720.0159089,71.6148562,579.0581607,506.7832982,72.27486245,69.45540405,2.819458401,92.84292613,0,92.84292613,2.159452145,90.68347399,1.137366017,4.275302187,2.152491356,-2.152491356,0.162055988,0.162055988,0.191477568,0.909285116,29.24573499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.76317624,1.564515728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.658773972,28.11211289,67.42195021,29.67662862,506.7832982,0,0.70385014,45.2632767,-0.70385014,134.7367233,0.978962151,0,563.5436179,29.67662862,582.9663778,3,16,3% -2018-03-13 01:00:00,76.26979811,255.60631,170.7599125,514.3764053,48.67254999,333.2990972,284.8069438,48.49215337,47.20489302,1.28726035,42.87037473,0,42.87037473,1.467656965,41.40271777,1.331159097,4.461171698,4.073210475,-4.073210475,0,0,0.28503499,0.366914241,11.80122326,0.142665829,1,0.240745117,0,0.93323185,0.971993814,0.724496596,1,45.62182057,1.063312475,0.02286067,0.312029739,0.937216699,0.661713295,0.961238037,0.922476074,0.257213567,11.34378468,45.87903414,12.40709715,244.174725,0,0.553693639,56.37921704,-0.553693639,123.620783,0.959697355,0,280.2128719,12.40709715,288.3330689,3,17,3% -2018-03-13 02:00:00,87.71387663,265.1313316,5.428409904,37.25963976,3.942130563,17.55276599,13.68858356,3.864182428,3.823260782,0.040921647,1.43505061,0,1.43505061,0.118869781,1.316180829,1.530895947,4.627414686,24.18066439,-24.18066439,0,0,0.726203554,0.029717445,0.955815195,0.782843954,1,0.041331805,0,0.957388247,0.99615021,0.724496596,1,3.692526832,0.086120752,0.097563656,0.312029739,0.760833091,0.485329687,0.961238037,0.922476074,0.020832103,0.918765922,3.713358936,1.004886674,2.972558681,0,0.36738368,68.44564775,-0.36738368,111.5543523,0.913902501,0,6.429987749,1.004886674,7.087665979,3,18,10% -2018-03-13 03:00:00,99.81803445,274.3795132,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742153354,4.788825905,-5.263273086,5.263273086,1,0.569773603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146724116,81.56286827,-0.146724116,98.43713173,0.709224392,0,0,0,0,3,19,0% -2018-03-13 04:00:00,111.4878635,284.1676139,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945830294,4.959660489,-2.101778067,2.101778067,1,0.889578907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080895406,94.64003552,0.080895406,85.35996448,0,0,0,0,0,3,20,0% -2018-03-13 05:00:00,122.6155617,295.4763819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140045265,5.157035727,-1.095785091,1.095785091,1,0.717543977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304487354,107.7273246,0.304487354,72.27267542,0,0.885789568,0,0,0,3,21,0% -2018-03-13 06:00:00,132.5957279,309.6537583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314232026,5.404477624,-0.549509505,0.549509505,1,0.624125349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508799776,120.5839164,0.508799776,59.41608356,0,0.951729516,0,0,0,3,22,0% -2018-03-13 07:00:00,140.3863271,328.3577487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450203633,5.730923839,-0.167024799,0.167024799,1,0.558716612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679895119,132.8354478,0.679895119,47.16455219,0,0.976459246,0,0,0,3,23,0% -2018-03-14 08:00:00,144.4127736,352.1564602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52047838,6.146289714,0.150690895,-0.150690895,1,0.504384029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806100068,143.7166289,0.806100068,36.28337112,0,0.987972961,0,0,0,3,0,0% -2018-03-14 09:00:00,143.3689218,17.66777709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50225973,0.308360882,0.454344003,-0.454344003,1,0.452456289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878801036,151.4980696,0.878801036,28.50193039,0,0.9931043,0,0,0,3,1,0% -2018-03-14 10:00:00,137.6352359,39.56926661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402188034,0.690613985,0.786363388,-0.786363388,1,0.39567763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.8930312,153.2566529,0.8930312,26.74334715,0,0.994010915,0,0,0,3,2,0% -2018-03-14 11:00:00,128.8057312,56.27820564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248084106,0.982239986,1.208003804,-1.208003804,1,0.323572872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847809092,147.9741678,0.847809092,32.02583223,0,0.991024459,0,0,0,3,3,0% -2018-03-14 12:00:00,118.2658665,69.11387917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064128763,1.20626475,1.859632632,-1.859632632,1,0.21213778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746205718,138.2627658,0.746205718,41.73723422,0,0.982994349,0,0,0,3,4,0% -2018-03-14 13:00:00,106.8543551,79.66640457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864960317,1.390441063,3.253974324,-3.253974324,1,0,#DIV/0!,0,0,0.025634288,1,0.29815559,0,0.924652253,0.963414216,0.724496596,1,0,0,0.004331524,0.312029739,0.987790477,0.712287073,0.961238037,0.922476074,0,0,0,0,0,0,-0.595135582,126.522298,0.595135582,53.47770196,0,0.965985531,0,0,0,3,5,0% -2018-03-14 14:00:00,95.06669541,89.11653511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659226844,1.555376956,10.65684426,-10.65684426,1,0,#DIV/0!,0,0,0.56375198,1,0.093562437,0,0.951941829,0.990703792,0.724496596,1,0,0,0.076071622,0.312029739,0.807027748,0.531524344,0.961238037,0.922476074,0,0,0,0,0,0,-0.404885772,113.8839692,0.404885772,66.11603076,0,0.92650838,0,0,0,3,6,0% -2018-03-14 15:00:00,83.12112802,98.35355438,55.26240618,255.4643954,24.66524447,24.3380877,0,24.3380877,23.92149634,0.416591361,61.72937904,47.58662073,14.14275831,0.743748126,13.39901018,1.450737362,1.716593355,-7.294761001,7.294761001,0.222368709,0.222368709,0.446329543,0.237227337,7.630046616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.99425218,0.538842985,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.171870398,7.33429103,23.16612258,7.873134015,0,47.58662073,-0.186274963,100.7354746,0.186274963,79.26452542,0,0.7815796,23.16612258,45.06586602,52.66083057,3,7,127% -2018-03-14 16:00:00,71.66690757,108.1844826,255.0623925,621.2692388,59.6478909,84.85923786,25.08718289,59.77205497,57.84928691,1.922768054,63.64143407,0,63.64143407,1.798603988,61.84283008,1.250823502,1.88817542,-2.372121368,2.372121368,0.935810335,0.935810335,0.233856079,1.828209163,58.80149111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.60693499,1.303082467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324531315,56.52222988,56.9314663,57.82531235,25.08718289,0,0.040380533,87.68573667,-0.040380533,92.31426333,0,0,56.9314663,57.82531235,94.77697673,3,8,66% -2018-03-14 17:00:00,60.84403666,119.5189518,451.1536098,765.8594636,78.03560953,281.1955472,202.1120128,79.08353446,75.68254798,3.400986479,111.7404775,0,111.7404775,2.353061548,109.387416,1.06192877,2.085999228,-1.163699655,1.163699655,0.729158051,0.729158051,0.172969046,2.639183616,84.88521724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.74894384,1.704785081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912079546,81.59489958,74.66102339,83.29968466,202.1120128,0,0.26390222,74.69826725,-0.26390222,105.3017327,0.860535887,0,248.5856636,83.29968466,303.1036412,3,9,22% -2018-03-14 18:00:00,51.30812674,133.4940184,610.9775359,833.8136762,89.73396231,482.1030575,390.4690985,91.633959,87.02815226,4.605806744,150.8443873,0,150.8443873,2.705810047,148.1385772,0.895495745,2.329910153,-0.557224482,0.557224482,0.625444688,0.625444688,0.146869495,3.134046244,100.8017004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65477023,1.960350168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270605835,96.89442862,85.92537606,98.85477878,390.4690985,0,0.468292989,62.07645231,-0.468292989,117.9235477,0.943229236,0,454.2272457,98.85477878,518.9257213,3,10,14% -2018-03-14 19:00:00,44.0404332,151.2935939,720.2970463,867.2048516,96.90735378,653.9989968,554.5838539,99.4151429,93.98523951,5.42990339,177.5664724,0,177.5664724,2.922114266,174.6443582,0.768650563,2.64057135,-0.146384184,0.146384184,0.555186859,0.555186859,0.134538041,3.339559716,107.4117201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.34218712,2.117061839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419499646,103.248231,92.76168677,105.3652928,554.5838539,0,0.639507324,50.24490832,-0.639507324,129.7550917,0.971814813,0,631.7144907,105.3652928,700.6739676,3,11,11% -2018-03-14 20:00:00,40.36580921,173.010715,770.6741556,880.1557444,100.0615497,776.9173446,674.0633525,102.8539921,97.0443248,5.809667319,189.8760965,0,189.8760965,3.017224912,186.8588716,0.704516276,3.019606619,0.191371893,-0.191371893,0.497427168,0.497427168,0.129836389,3.268980181,105.1416397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.28269626,2.185969177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368365013,101.0661433,95.65106127,103.2521125,674.0633525,0,0.765845541,40.01772613,-0.765845541,139.9822739,0.984712684,0,759.4097942,103.2521125,826.9862368,3,12,9% -2018-03-14 21:00:00,41.28637474,195.9810283,758.383474,877.1167618,99.29946316,837.6525932,735.6303603,102.0222329,96.30521797,5.717014969,186.8730987,0,186.8730987,2.99424519,183.8788535,0.720583175,3.420514215,0.515899099,-0.515899099,0.441929748,0.441929748,0.13093569,2.944268775,94.69780468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.57223866,2.169320448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133112705,91.02713186,94.70535136,93.19645231,735.6303603,0,0.838691486,32.99779938,-0.838691486,147.0022006,0.990383322,0,823.2613916,93.19645231,884.2566057,3,13,7% -2018-03-14 22:00:00,46.52269271,216.3158236,684.3429599,857.0969581,94.60263171,828.0888485,731.1799688,96.90887962,91.75001332,5.158866299,168.7794921,0,168.7794921,2.852618393,165.9268737,0.811974165,3.775423346,0.877553985,-0.877553985,0.38008312,0.38008312,0.138238628,2.402894571,77.28534929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19360268,2.066712315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740888937,74.28961743,89.93449162,76.35632975,731.1799688,0,0.853088979,31.45074966,-0.853088979,148.5492503,0.991389467,0,814.818611,76.35632975,864.7923017,3,14,6% -2018-03-14 23:00:00,54.81541384,232.5165177,554.1158601,812.7946385,85.77345779,744.1691308,656.8048999,87.36423098,83.18707157,4.177159413,136.9381918,0,136.9381918,2.586386223,134.3518056,0.956709452,4.0581788,1.352875328,-1.352875328,0.298798383,0.298798383,0.154793364,1.701523028,54.72682953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.96257737,1.873828014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.232747642,52.60551018,81.19532501,54.47933819,656.8048999,0,0.808082225,36.09101943,-0.808082225,143.9089806,0.988125108,0,730.2007379,54.47933819,765.8563752,3,15,5% -2018-03-14 00:00:00,64.94095911,245.3217555,378.1412811,722.9732108,71.92456843,583.6058849,510.9995189,72.60636602,69.75577732,2.850588705,93.85352269,0,93.85352269,2.168791112,91.68473158,1.133433556,4.281672361,2.131624797,-2.131624797,0.16562438,0.16562438,0.190205545,0.924523594,29.73585683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.05190645,1.571281777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.669814197,28.58323664,67.72172065,30.15451842,510.9995189,0,0.70680284,45.02462258,-0.70680284,134.9753774,0.979258915,0,568.1225549,30.15451842,587.8580841,3,16,3% -2018-03-14 01:00:00,76.06989041,255.9632365,174.4216435,520.2246934,49.18372261,338.460675,289.4451591,49.01551593,47.7006519,1.314864025,43.77361755,0,43.77361755,1.483070705,42.29054685,1.327670049,4.46740124,4.009909032,-4.009909032,0,0,0.281981763,0.370767676,11.92516298,0.134634545,1,0.244397135,0,0.932706818,0.971468781,0.724496596,1,46.0907588,1.074479677,0.021650696,0.312029739,0.940437119,0.664933715,0.961238037,0.922476074,0.260288545,11.46292025,46.35104734,12.53739993,250.4758418,0,0.556384891,56.19384433,-0.556384891,123.8061557,0.960134152,0,286.8414573,12.53739993,295.0469348,3,17,3% -2018-03-14 02:00:00,87.53684879,265.4849524,6.440823024,43.41615964,4.574932904,20.53586111,16.05032567,4.485535441,4.436981797,0.048553645,1.699603218,0,1.699603218,0.137951107,1.561652112,1.527806228,4.633586533,22.40299221,-22.40299221,0,0,0.710302532,0.034487777,1.109245449,0.767495045,1,0.044607284,0,0.957065654,0.995827617,0.724496596,1,4.286470511,0.099945107,0.096166457,0.312029739,0.763723706,0.488220302,0.961238037,0.922476074,0.024129987,1.066248918,4.310600498,1.166194025,3.731780241,0,0.369685523,68.30377604,-0.369685523,111.696224,0.914749911,0,7.72424614,1.166194025,8.487496806,3,18,10% -2018-03-14 03:00:00,99.62929038,274.7381272,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738859149,4.795084901,-5.353133641,5.353133641,1,0.554406543,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.149071312,81.42688841,-0.149071312,98.57311159,0.714590059,0,0,0,0,3,19,0% -2018-03-14 04:00:00,111.2868114,284.5398828,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942321273,4.966157807,-2.114200431,2.114200431,1,0.891703257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078631398,94.50990277,0.078631398,85.49009723,0,0,0,0,0,3,20,0% -2018-03-14 05:00:00,122.3877094,295.8672651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136068493,5.163857925,-1.097749858,1.097749858,1,0.717879971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30223274,107.5917561,0.30223274,72.40824385,0,0.884564581,0,0,0,3,21,0% -2018-03-14 06:00:00,132.3238648,310.0528776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309487121,5.411443569,-0.548155388,0.548155388,1,0.623893782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506480074,120.4296523,0.506480074,59.57034767,0,0.951279433,0,0,0,3,22,0% -2018-03-14 07:00:00,140.0552469,328.7107533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444425193,5.737084932,-0.163942498,0.163942498,1,0.558189508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6774403,132.6439414,0.6774403,47.35605859,0,0.976192758,0,0,0,3,23,0% -2018-03-15 08:00:00,144.0276114,352.3461175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513756033,6.149599857,0.155189581,-0.155189581,1,0.503614708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803449392,143.4607691,0.803449392,36.53923092,0,0.987768327,0,0,0,3,0,0% -2018-03-15 09:00:00,142.9690252,17.62218726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495280218,0.307565189,0.460526148,-0.460526148,1,0.45139908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87590725,151.1525308,0.87590725,28.84746917,0,0.99291633,0,0,0,3,1,0% -2018-03-15 10:00:00,137.2590313,39.36461893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395622024,0.687042209,0.795119539,-0.795119539,1,0.39418024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889863803,152.8561374,0.889863803,27.14386264,0,0.993811626,0,0,0,3,2,0% -2018-03-15 11:00:00,128.4623078,56.01347515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242090236,0.977619567,1.221549016,-1.221549016,1,0.321256505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844356448,147.60305,0.844356448,32.39694997,0,0.990783303,0,0,0,3,3,0% -2018-03-15 12:00:00,117.9480767,68.83679936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058582284,1.201428795,1.884456771,-1.884456771,1,0.207892602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742475871,137.9427511,0.742475871,42.05724891,0,0.982657744,0,0,0,3,4,0% -2018-03-15 13:00:00,106.5518654,79.39167062,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859680875,1.385646051,3.319654039,-3.319654039,1,0,#DIV/0!,0,0,0.036182281,1,0.292590546,0,0.925514038,0.964276001,0.724496596,1,0,0,0.006084029,0.312029739,0.982892175,0.707388771,0.961238037,0.922476074,0,0,0,0,0,0,-0.591155708,126.2390637,0.591155708,53.76093628,0,0.965419915,0,0,0,3,5,0% -2018-03-15 14:00:00,94.76974523,88.84612387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654044086,1.550657389,11.34207465,-11.34207465,1,0,#DIV/0!,0,0,0.584968438,1,0.087939896,0,0.952558918,0.991320881,0.724496596,1,0,0,0.078308274,0.312029739,0.802048025,0.526544621,0.961238037,0.922476074,0,0,0,0,0,0,-0.400700313,113.6219657,0.400700313,66.37803428,0,0.925218465,0,0,0,3,6,0% -2018-03-15 15:00:00,82.82519604,98.08607791,59.68289672,270.0705493,25.95191281,25.61928177,0,25.61928177,25.16936688,0.449914886,64.41073829,49.15738307,15.25335522,0.782545924,14.47080929,1.445572374,1.71192501,-7.00844334,7.00844334,0.271331913,0.271331913,0.43482998,0.264630327,8.51142097,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.19375281,0.566951858,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191723771,8.181501584,24.38547658,8.748453442,0,49.15738307,-0.182016822,100.4872561,0.182016822,79.51274393,0,0.775300115,24.38547658,46.8601782,55.05452601,3,7,126% -2018-03-15 16:00:00,71.3548854,107.9201001,260.8632363,627.4668138,60.25865641,88.50380171,28.09566886,60.40813286,58.44163559,1.966497264,65.06633263,0,65.06633263,1.817020822,63.24931181,1.245377688,1.883561076,-2.337984075,2.337984075,0.929972514,0.929972514,0.23099712,1.860598755,59.84325171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.17632307,1.3164254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.347997464,57.52360979,57.52432053,58.84003519,28.09566886,0,0.044776342,87.43364652,-0.044776342,92.56635348,0,0,57.52432053,58.84003519,96.03394676,3,8,67% -2018-03-15 17:00:00,60.51009065,119.2650437,457.0692007,769.1417146,78.44360141,285.891937,206.3681189,79.5238181,76.0782374,3.445580702,113.1870835,0,113.1870835,2.365364009,110.8217195,1.056100312,2.081567696,-1.153871453,1.153871453,0.72747733,0.72747733,0.171623031,2.667735677,85.80354964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.12929557,1.713698172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932765416,82.47763561,75.06206098,84.19133379,206.3681189,0,0.268309617,74.43629605,-0.268309617,105.5637039,0.863648126,0,253.2915001,84.19133379,308.3930442,3,9,22% -2018-03-15 18:00:00,50.94506696,133.2759669,616.7845353,835.9827072,90.06092369,487.1070857,395.1122488,91.9948369,87.34525455,4.649582358,152.2622206,0,152.2622206,2.715669139,149.5465515,0.889159156,2.326104435,-0.554238107,0.554238107,0.624933988,0.624933988,0.146016832,3.160320844,101.6467819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95958101,1.967493046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289641693,97.70675306,86.2492227,99.67424611,395.1122488,0,0.472632084,61.79471313,-0.472632084,118.2052869,0.944209467,0,459.3179486,99.67424611,524.5527492,3,10,14% -2018-03-15 19:00:00,43.64885687,151.1698115,725.8958998,868.876403,97.19122718,659.0345662,559.3019032,99.732663,94.26055308,5.472109913,178.9325391,0,178.9325391,2.930674097,176.001865,0.761816267,2.638410941,-0.146432069,0.146432069,0.555195048,0.555195048,0.133891412,3.363982914,108.1972541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.606829,2.123263407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.43719417,104.0033162,93.04402317,106.1265796,559.3019032,0,0.643707093,49.93119321,-0.643707093,130.0688068,0.97232492,0,636.8672014,106.1265796,706.3249252,3,11,11% -2018-03-15 20:00:00,39.96615551,173.0596004,776.0060891,881.6104776,100.318658,781.847366,678.7038239,103.143542,97.29368035,5.849861686,191.1766383,0,191.1766383,3.024977676,188.1516606,0.697541003,3.020459829,0.189379381,-0.189379381,0.497767908,0.497767908,0.129275607,3.29168363,105.8718606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.5223863,2.191586029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384813585,101.7680595,95.90719988,103.9596455,678.7038239,0,0.76984546,39.65998665,-0.76984546,140.3400133,0.9850519,0,764.4656911,103.9596455,832.5051999,3,12,9% -2018-03-15 21:00:00,40.91643828,196.2161285,763.4157694,878.5308067,99.54026765,842.4076603,740.1139484,102.2937119,96.53876132,5.754950538,188.1004982,0,188.1004982,3.001506334,185.0989918,0.714126566,3.424617488,0.512092203,-0.512092203,0.442580765,0.442580765,0.130388016,2.965304754,95.37439405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79672941,2.174581122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1483532,91.67749531,94.94508261,93.85207643,740.1139484,0,0.842445072,32.60077901,-0.842445072,147.399221,0.990648949,0,828.1381881,93.85207643,889.5624951,3,13,7% -2018-03-15 22:00:00,46.20697181,216.6572809,689.0640058,858.6390722,94.83824719,832.6546728,735.4816931,97.17297966,91.97852412,5.194455538,169.931269,0,169.931269,2.859723069,167.0715459,0.806463795,3.781382899,0.87135697,-0.87135697,0.381142872,0.381142872,0.137633437,2.422269702,77.90852011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.41325596,2.071859628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.754926153,74.88863293,90.16818211,76.96049256,735.4816931,0,0.856566766,31.06674224,-0.856566766,148.9332578,0.991627434,0,819.4920063,76.96049256,869.8611095,3,14,6% -2018-03-15 23:00:00,54.55228617,232.8872578,558.528585,814.7227167,86.02217752,748.6017172,660.9630013,87.63871587,83.42829148,4.210424398,138.0156079,0,138.0156079,2.59388604,135.4217219,0.952117008,4.064649435,1.342470358,-1.342470358,0.300577737,0.300577737,0.154015712,1.71911525,55.29265585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19444712,1.879261606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245493146,53.14940396,81.43994026,55.02866557,660.9630013,0,0.811273563,35.77945075,-0.811273563,144.2205492,0.988368508,0,734.7149558,55.02866557,770.7301168,3,15,5% -2018-03-15 00:00:00,64.71699397,245.6891402,382.2416615,725.8731313,72.22872861,588.0959644,515.1636993,72.93226505,70.05076595,2.881499104,94.85687893,0,94.85687893,2.177962663,92.67891626,1.129524627,4.288084434,2.11115179,-2.11115179,0.169125471,0.169125471,0.188960901,0.939738318,30.22521464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.33546074,1.577926535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680837212,29.05362598,68.01629795,30.63155252,515.1636993,0,0.709715895,44.7881955,-0.709715895,135.2118045,0.979549274,0,572.6445257,30.63155252,592.6922641,3,16,4% -2018-03-15 01:00:00,75.87100126,256.3217254,178.0718729,525.9502966,49.68432571,343.5564301,294.0278891,49.52854097,48.18615998,1.342380996,44.67375296,0,44.67375296,1.498165736,43.17558722,1.324198779,4.473658052,3.948499371,-3.948499371,0,0,0.279012766,0.374541434,12.04653999,0.126698168,1,0.248045263,0,0.932179499,0.970941462,0.724496596,1,46.54929502,1.085415976,0.020446491,0.312029739,0.943653596,0.668150192,0.961238037,0.922476074,0.263323591,11.57959246,46.81261861,12.66500843,256.7750943,0,0.559041208,56.01048321,-0.559041208,123.9895168,0.960561155,0,293.4607998,12.66500843,301.7497945,3,17,3% -2018-03-15 02:00:00,87.35960511,265.8395568,7.549079877,50.0200598,5.244792031,23.74967809,18.60612774,5.143550353,5.0866422,0.056908153,1.988511647,0,1.988511647,0.158149831,1.830361816,1.524712742,4.639775549,20.86097854,-20.86097854,0,0,0.694759112,0.039537458,1.27166055,0.752308715,1,0.047899723,0,0.956738817,0.99550078,0.724496596,1,4.915424894,0.114579014,0.094769028,0.312029739,0.766630474,0.491127069,0.961238037,0.922476074,0.027612592,1.222368491,4.943037486,1.336947505,4.608575693,0,0.371973321,68.16263135,-0.371973321,111.8373687,0.915581758,0,9.162565319,1.336947505,10.03757072,3,18,10% -2018-03-15 03:00:00,99.44073386,275.0972415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735568217,4.801352628,-5.446188881,5.446188881,1,0.53849316,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151399455,81.29196425,-0.151399455,98.70803575,0.719747821,0,0,0,0,3,19,0% -2018-03-15 04:00:00,111.0854676,284.9121016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938807161,4.972654252,-2.126765997,2.126765997,1,0.893852095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076375575,94.38026369,0.076375575,85.61973631,0,0,0,0,0,3,20,0% -2018-03-15 05:00:00,122.1591069,296.2572839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132078627,5.170665036,-1.099698103,1.099698103,1,0.718213141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299974621,107.4560788,0.299974621,72.54392121,0,0.883319233,0,0,0,3,21,0% -2018-03-15 06:00:00,132.0509435,310.4498828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304723744,5.418372617,-0.546758659,0.546758659,1,0.623654927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504145157,120.2746224,0.504145157,59.72537758,0,0.950822215,0,0,0,3,22,0% -2018-03-15 07:00:00,139.7231974,329.0605014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438629836,5.743189187,-0.160806602,0.160806602,1,0.557653238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674959348,132.4509934,0.674959348,47.54900657,0,0.975921465,0,0,0,3,23,0% -2018-03-16 08:00:00,143.6419239,352.533979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507024517,6.152878658,0.159754907,-0.159754907,1,0.502833991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800763209,143.2030453,0.800763209,36.79695466,0,0.987559569,0,0,0,3,0,0% -2018-03-16 09:00:00,142.5685608,17.57884963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.488290795,0.306808805,0.466798033,-0.466798033,1,0.450326525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872970771,150.8057193,0.872970771,29.19428074,0,0.992724314,0,0,0,3,1,0% -2018-03-16 10:00:00,136.8817048,39.16384554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389036435,0.683538052,0.804012353,-0.804012353,1,0.392659479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886649214,152.4551624,0.886649214,27.54483761,0,0.993607913,0,0,0,3,2,0% -2018-03-16 11:00:00,128.1174241,55.75191465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23607088,0.973054475,1.235342615,-1.235342615,1,0.31889766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840855112,147.2305278,0.840855112,32.76947224,0,0.990536724,0,0,0,3,3,0% -2018-03-16 12:00:00,117.628817,68.56181695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053010152,1.196629447,1.9098808,-1.9098808,1,0.203544837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738698933,137.6207023,0.738698933,42.37929771,0,0.982313426,0,0,0,3,4,0% -2018-03-16 13:00:00,106.2480801,79.11817327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854378821,1.380872622,3.387913601,-3.387913601,1,0,#DIV/0!,0,0,0.046905278,1,0.287016893,0,0.926370746,0.965132709,0.724496596,1,0,0,0.007848151,0.312029739,0.977985623,0.702482219,0.961238037,0.922476074,0,0,0,0,0,0,-0.587133339,125.953844,0.587133339,54.04615598,0,0.964840469,0,0,0,3,5,0% -2018-03-16 14:00:00,94.4717498,88.57628816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648843084,1.545947868,12.1206176,-12.1206176,1,0,#DIV/0!,0,0,0.606700872,1,0.082317608,0,0.953168597,0.991930561,0.724496596,1,0,0,0.08056255,0.312029739,0.797069504,0.5215661,0.961238037,0.922476074,0,0,0,0,0,0,-0.396479634,113.3582871,0.396479634,66.64171293,0,0.923890118,0,0,0,3,6,0% -2018-03-16 15:00:00,82.52820496,97.81861001,64.17857432,284.1657218,27.22619852,26.88903338,0,26.88903338,26.40522818,0.483805202,66.8861158,50.50430708,16.38180872,0.820970339,15.56083838,1.440388902,1.707256814,-6.743559188,6.743559188,0.31662977,0.31662977,0.424225667,0.293443802,9.438161393,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38170969,0.594790216,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.212599036,9.072319728,25.59430873,9.667109945,0,50.50430708,-0.177728358,100.2374709,0.177728358,79.76252906,0,0.768671794,25.59430873,48.48834629,57.32896161,3,7,124% -2018-03-16 16:00:00,71.04230106,107.6551645,266.622529,633.2414625,60.90137743,92.22233977,31.14745032,61.07488945,59.0649762,2.009913245,66.48212023,0,66.48212023,1.836401232,64.645719,1.239922062,1.878937077,-2.304795412,2.304795412,0.924296918,0.924296918,0.228417972,1.892511927,60.86968903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.77550177,1.330466441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371118448,58.51026038,58.14662022,59.84072683,31.14745032,0,0.04918732,87.18063653,-0.04918732,92.81936347,0,0,58.14662022,59.84072683,97.31117911,3,8,67% -2018-03-16 17:00:00,60.17575914,119.0100074,462.9157942,772.1326509,78.90252841,290.589098,210.5761171,80.01298085,76.52332606,3.489654793,114.6184961,0,114.6184961,2.379202351,112.2392938,1.050265127,2.077116473,-1.144190678,1.144190678,0.725821819,0.725821819,0.170446827,2.695948934,86.71098498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55713172,1.723724004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.953205825,83.34989698,75.51033754,85.07362098,210.5761171,0,0.27272013,74.17380523,-0.27272013,105.8261948,0.866661865,0,258.008628,85.07362098,313.6876114,3,9,22% -2018-03-16 18:00:00,50.58163542,133.0564376,622.5064097,837.9181379,90.44669316,492.067628,399.6555201,92.41210791,87.71939165,4.692716264,153.6611877,0,153.6611877,2.727301511,150.9338862,0.882816079,2.322272927,-0.551267987,0.551267987,0.624426068,0.624426068,0.145294397,3.186330201,102.4833322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.31921582,1.975920661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308485384,98.51087707,86.6277012,100.4867977,399.6555201,0,0.476962488,61.51279546,-0.476962488,118.4872045,0.945169953,0,464.3700904,100.4867977,530.1366898,3,10,14% -2018-03-16 19:00:00,43.25679227,151.0453439,731.3983912,870.3417175,97.53744974,663.9932143,563.8832886,100.1099258,94.59633575,5.513590017,180.2771218,0,180.2771218,2.941113984,177.3360078,0.754973449,2.63623857,-0.14645828,0.14645828,0.555199531,0.555199531,0.133357485,3.38819481,108.9759919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92959607,2.13082707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454735606,104.7518685,93.38433168,106.8826956,563.8832886,0,0.647887235,49.61750283,-0.647887235,130.3824972,0.972826076,0,641.9446988,106.8826956,711.8972854,3,11,11% -2018-03-16 20:00:00,39.56615253,173.11072,781.2344038,882.8696187,100.639338,786.6729607,683.1789952,103.4939655,97.6046906,5.889274931,192.4539734,0,192.4539734,3.034647359,189.419326,0.690559634,3.021352035,0.18742742,-0.18742742,0.498101713,0.498101713,0.128820924,3.31422901,106.5969975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82134118,2.198591681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401147636,102.4650887,96.22248881,104.6636803,683.1789952,0,0.773816406,39.30215325,-0.773816406,140.6978467,0.98538519,0,769.4169528,104.6636803,837.9172383,3,12,9% -2018-03-16 21:00:00,40.54692227,196.4562421,768.3412009,879.747393,99.84416545,847.0348816,744.4093056,102.625576,96.83349548,5.792080521,189.3038897,0,189.3038897,3.010669974,186.2932197,0.707677295,3.428808261,0.508344354,-0.508344354,0.443221685,0.443221685,0.129947692,2.986244628,96.04789238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.08003909,2.181220148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163524067,92.32488752,95.24356316,94.50610767,744.4093056,0,0.846162559,32.20329075,-0.846162559,147.7967093,0.990909699,0,832.8859644,94.50610767,894.7383217,3,13,7% -2018-03-16 22:00:00,45.89247562,217.0036725,693.6792274,859.9690078,95.13469335,837.0720978,739.5768194,97.49527837,92.26603134,5.229247028,171.0592218,0,171.0592218,2.868662014,168.1905598,0.800974802,3.787428575,0.865249514,-0.865249514,0.382187308,0.382187308,0.13714508,2.441625796,78.53107863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68961883,2.078335864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768949578,75.48705986,90.45856841,77.56539572,739.5768194,0,0.860004038,30.68296371,-0.860004038,149.3170363,0.991860738,0,824.0157784,77.56539572,874.7807786,3,14,6% -2018-03-16 23:00:00,54.29067105,233.2615122,562.8413597,816.4060909,86.32681821,752.8665663,664.8998843,87.96668204,83.72374613,4.242935915,139.0704761,0,139.0704761,2.603072081,136.467404,0.947550963,4.071181406,1.332224327,-1.332224327,0.302329912,0.302329912,0.153376821,1.736787823,55.86106657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47844936,1.885916862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.258296866,53.69578197,81.73674623,55.58169883,664.8998843,0,0.814422983,35.4696523,-0.814422983,144.5303477,0.988606841,0,739.0613202,55.58169883,775.4384304,3,15,5% -2018-03-16 00:00:00,64.49441413,246.0587961,386.2545208,728.4639137,72.57862283,592.3970599,519.0952006,73.3018593,70.39010957,2.911749732,95.84039373,0,95.84039373,2.188513265,93.65188047,1.125639876,4.294536145,2.091060835,-2.091060835,0.172561226,0.172561226,0.18790362,0.955170288,30.72155983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66165074,1.585570411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692017622,29.53073186,68.35366836,31.11630227,519.0952006,0,0.712588765,44.55406338,-0.712588765,135.4459366,0.979833303,0,576.9804333,31.11630227,597.3454308,3,16,4% -2018-03-16 01:00:00,75.67315202,256.68165,181.6630252,531.238316,50.2064823,348.4385681,298.3765439,50.06202423,48.69257161,1.369452619,45.56021436,0,45.56021436,1.513910683,44.04630368,1.320745658,4.479939921,3.888895581,-3.888895581,0,0,0.276371497,0.378477671,12.1731429,0.118854712,1,0.251689557,0,0.931649901,0.970411864,0.724496596,1,47.02752049,1.096823137,0.01924797,0.312029739,0.946866191,0.671362787,0.961238037,0.922476074,0.266489029,11.70128799,47.29400952,12.79811112,262.9130858,0,0.561662318,55.82916377,-0.561662318,124.1708362,0.960978539,0,299.9478426,12.79811112,308.3239504,3,17,3% -2018-03-16 02:00:00,87.18223536,266.1950212,8.742609045,56.90295171,5.945291311,27.12761121,21.29568689,5.831924322,5.766018842,0.06590548,2.29901925,0,2.29901925,0.179272469,2.119746781,1.521617056,4.645979572,19.51113921,-19.51113921,0,0,0.680036278,0.044818117,1.44150471,0.73728786,1,0.051207966,0,0.956407815,0.995169778,0.724496596,1,5.573382227,0.129882293,0.093371885,0.312029739,0.769552311,0.494048907,0.961238037,0.922476074,0.031246036,1.385629158,5.604628263,1.515511451,5.594635468,0,0.374245733,68.02229777,-0.374245733,111.9777022,0.916397942,0,10.73154069,1.515511451,11.72341263,3,18,9% -2018-03-16 03:00:00,99.25237365,275.4567311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.732280711,4.807626904,-5.542628864,5.542628864,1,0.522000951,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153708677,81.15808857,-0.153708677,98.84191143,0.72470932,0,0,0,0,3,19,0% -2018-03-16 04:00:00,110.8838452,285.2841395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935288185,4.979147539,-2.13948178,2.13948178,1,0.896026622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074127733,94.25110556,0.074127733,85.74889444,0,0,0,0,0,3,20,0% -2018-03-16 05:00:00,121.9297802,296.6462996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128076121,5.177454642,-1.101631904,1.101631904,1,0.71854384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297712801,107.3202803,0.297712801,72.67971966,0,0.882052905,0,0,0,3,21,0% -2018-03-16 06:00:00,131.7770129,310.8446395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299942753,5.425262421,-0.545320673,0.545320673,1,0.623409017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50179493,120.1188228,0.50179493,59.88117717,0,0.950357702,0,0,0,3,22,0% -2018-03-16 07:00:00,139.3902563,329.4068946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432818918,5.74923489,-0.157618233,0.157618233,1,0.557107995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672452344,132.2566212,0.672452344,47.7433788,0,0.975645289,0,0,0,3,23,0% -2018-03-17 08:00:00,143.25581,352.7199575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.500285556,6.156124596,0.164385905,-0.164385905,1,0.502042044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798041841,142.9435167,0.798041841,37.05648329,0,0.987346643,0,0,0,3,0,0% -2018-03-17 09:00:00,142.1676517,17.53761803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.481293612,0.306089178,0.473158909,-0.473158909,1,0.449238751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869992216,150.457735,0.869992216,29.542265,0,0.992528221,0,0,0,3,1,0% -2018-03-17 10:00:00,136.5034015,38.96683697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382433797,0.680099604,0.813041692,-0.813041692,1,0.391115372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883388373,152.0538417,0.883388373,27.94615826,0,0.993399753,0,0,0,3,2,0% -2018-03-17 11:00:00,127.771228,55.49348614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230028617,0.968544047,1.249386709,-1.249386709,1,0.316495979,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837306351,146.8567606,0.837306351,33.14323941,0,0.9902847,0,0,0,3,3,0% -2018-03-17 12:00:00,117.3082295,68.28893395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047414845,1.19186674,1.935918313,-1.935918313,1,0.19909216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734876487,137.2967804,0.734876487,42.70321957,0,0.981961356,0,0,0,3,4,0% -2018-03-17 13:00:00,105.9431354,78.84593031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849056532,1.376121086,3.458885599,-3.458885599,1,0,#DIV/0!,0,0,0.057804259,1,0.281436692,0,0.927222007,0.96598397,0.724496596,1,0,0,0.009623441,0.312029739,0.973072553,0.697569149,0.961238037,0.922476074,0,0,0,0,0,0,-0.583070333,125.6667846,0.583070333,54.33321543,0,0.964247052,0,0,0,3,5,0% -2018-03-17 14:00:00,94.17284219,88.30704957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643626162,1.541248768,13.01262958,-13.01262958,1,0,#DIV/0!,0,0,0.628961352,1,0.076697671,0,0.953770625,0.992532588,0.724496596,1,0,0,0.082833928,0.312029739,0.792094299,0.516590895,0.961238037,0.922476074,0,0,0,0,0,0,-0.392225817,113.0930673,0.392225817,66.90693267,0,0.922522415,0,0,0,3,6,0% -2018-03-17 15:00:00,82.23031002,97.55116913,68.73797992,297.7116063,28.48991967,28.1490194,0,28.1490194,27.63084347,0.518175928,69.15221085,51.6268156,17.52539525,0.859076195,16.66631905,1.435189655,1.702589091,-6.497886996,6.497886996,0.35864219,0.35864219,0.414471297,0.323583556,10.40755947,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.55981773,0.622397779,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234435185,10.00414204,26.79425292,10.62653982,0,51.6268156,-0.17341217,99.98626943,0.17341217,80.01373057,0,0.761669601,26.79425292,49.94911588,59.48495028,3,7,122% -2018-03-17 16:00:00,70.7292893,107.389684,272.3361573,638.6001591,61.57774404,96.01002507,34.23609222,61.77393285,59.72094786,2.052984989,67.88785053,0,67.88785053,1.85679618,66.03105435,1.234458976,1.874303569,-2.272527758,2.272527758,0.918778824,0.918778824,0.226109323,1.923941927,61.88058588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.40604668,1.345242512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393889377,59.48197289,58.79993605,60.8272154,34.23609222,0,0.053611155,86.92683375,-0.053611155,93.07316625,0,0,58.79993605,60.8272154,98.61013199,3,8,68% -2018-03-17 17:00:00,59.84117864,118.7538299,468.6901839,774.8368385,79.41319453,295.2834564,214.7316781,80.55177829,77.01859371,3.533184582,116.0339622,0,116.0339622,2.394600819,113.6393614,1.044425596,2.072645332,-1.134658161,1.134658161,0.724191663,0.724191663,0.169436436,2.723815535,87.60727067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.03320182,1.734880142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973395083,84.21144087,76.0065969,85.94632102,214.7316781,0,0.277131478,73.91092331,-0.277131478,106.0890767,0.869580221,0,262.733017,85.94632102,318.9831652,3,9,21% -2018-03-17 18:00:00,50.21796816,132.8353824,628.1403789,839.6231881,90.89175457,496.981768,404.0955477,92.88622032,88.15103282,4.735187504,155.040629,0,155.040629,2.740721755,152.2999072,0.876468888,2.318414785,-0.548316199,0.548316199,0.623921282,0.623921282,0.144699748,3.212066039,103.3110852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73412573,1.985643582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.327130911,99.30654476,87.06125664,101.2921883,404.0955477,0,0.481282024,61.23083343,-0.481282024,118.7691666,0.946110809,0,469.3804223,101.2921883,535.6741337,3,10,14% -2018-03-17 19:00:00,42.86436669,150.920115,736.8021036,871.6033663,97.94637464,668.8725276,568.325272,100.5472555,94.99293007,5.554325483,181.599645,0,181.599645,2.953444579,178.6462004,0.74812433,2.634052913,-0.146464615,0.146464615,0.555200614,0.555200614,0.132934439,3.412187502,109.7476794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.31081761,2.139760544,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.47211823,105.4936439,93.78293584,107.6334044,568.325272,0,0.652045752,49.30397906,-0.652045752,130.6960209,0.973318264,0,646.9443032,107.6334044,717.3882137,3,11,11% -2018-03-17 20:00:00,39.16591506,173.164031,786.3570417,883.9354618,101.0238969,791.392206,687.4866608,103.9055452,97.97765368,5.927891539,193.7076121,0,193.7076121,3.04624323,190.6613689,0.683574172,3.022282488,0.185514424,-0.185514424,0.498428855,0.498428855,0.128470773,3.336609116,107.3168187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.17984748,2.206992851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.417361947,103.1570081,96.59720942,105.364001,687.4866608,0,0.777756624,38.94436953,-0.777756624,141.0556305,0.985712537,0,774.2614302,105.364001,843.2200615,3,12,9% -2018-03-17 21:00:00,40.17793506,196.7013457,773.1580605,880.7687945,100.2114707,851.5328605,748.5147433,103.0181172,97.18972516,5.828392044,190.4828687,0,190.4828687,3.021745584,187.4611231,0.701237253,3.433086126,0.504653928,-0.504653928,0.443852785,0.443852785,0.129613175,3.007081889,96.71809034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.42246061,2.189244389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178620592,92.96910728,95.60108121,95.15835167,748.5147433,0,0.849842488,31.80545841,-0.849842488,148.1945416,0.991165568,0,837.5031219,95.15835167,899.7823599,3,13,7% -2018-03-17 22:00:00,45.57929423,217.3549174,698.1872355,861.0892788,95.49234128,841.3403105,743.4641853,97.87612516,92.61289486,5.263230297,172.163025,0,172.163025,2.879446419,169.2835786,0.795508755,3.793558954,0.859229518,-0.859229518,0.383216788,0.383216788,0.136771823,2.460956762,79.15282895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.02303725,2.086149129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782954797,76.08470991,90.80599204,78.17085904,743.4641853,0,0.863399654,30.29953401,-0.863399654,149.700466,0.992089391,0,828.3889227,78.17085904,879.5501865,3,14,6% -2018-03-17 23:00:00,54.0306297,233.6391588,567.0530372,817.8478972,86.68788576,756.9635326,668.6149211,88.34861148,84.07392616,4.274685319,140.1025336,0,140.1025336,2.6139596,137.488574,0.943012385,4.077772582,1.322133464,-1.322133464,0.304055551,0.304055551,0.152874388,1.754534469,56.4318597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.81505573,1.893804832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27115425,54.24445004,82.08620998,56.13825487,668.6149211,0,0.81752967,35.16173669,-0.81752967,144.8382633,0.98884014,0,743.2394823,56.13825487,779.9808473,3,15,5% -2018-03-17 00:00:00,64.27325632,246.4305931,390.1787686,730.7500131,72.97507417,596.5097995,522.7938607,73.7159388,70.77460643,2.94133237,96.80382751,0,96.80382751,2.200467735,94.60335978,1.121779944,4.301025228,2.071340952,-2.071340952,0.175933525,0.175933525,0.187029844,0.970811894,31.22464767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03124374,1.594231384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703349913,30.01431903,68.73459366,31.60855041,522.7938607,0,0.715420939,44.32229272,-0.715420939,135.6777073,0.980111076,0,581.1306467,31.60855041,601.8178108,3,16,4% -2018-03-17 01:00:00,75.4763643,257.0428839,185.1933091,536.0944391,50.7518867,353.1077923,302.4901969,50.61759545,49.22153006,1.39606539,46.43261852,0,46.43261852,1.530356639,44.90226188,1.317311064,4.486244643,3.831017161,-3.831017161,0,0,0.274048166,0.38258916,12.30538252,0.111102285,1,0.255330053,0,0.931118036,0.969879999,0.724496596,1,47.52700292,1.108738175,0.018055053,0.312029739,0.950074951,0.674571546,0.961238037,0.922476074,0.269794455,11.82840173,47.79679738,12.93713991,268.8828448,0,0.564247966,55.64991499,-0.564247966,124.350085,0.961386477,0,306.2971283,12.93713991,314.7642276,3,17,3% -2018-03-17 02:00:00,87.00482238,266.5512222,10.01645306,63.9956901,6.672556344,30.6413394,24.09447699,6.546862406,6.471354152,0.075508254,2.629807203,0,2.629807203,0.201202193,2.42860501,1.518520616,4.652196453,18.32002073,-18.32002073,0,0,0.666159598,0.050300548,1.617838538,0.722434588,1,0.054530975,0,0.956072721,0.994834684,0.724496596,1,6.256710341,0.145770304,0.091975486,0.312029739,0.772488237,0.496984833,0.961238037,0.922476074,0.035010088,1.55512794,6.291720429,1.700898244,6.687793428,0,0.376501557,67.8828513,-0.376501557,112.1171487,0.917198425,0,12.42575402,1.700898244,13.53895791,3,18,9% -2018-03-17 03:00:00,99.06422006,275.8164718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728996811,4.813905565,-5.642657938,5.642657938,1,0.504894972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155999097,81.02525483,-0.155999097,98.97474517,0.729485324,0,0,0,0,3,19,0% -2018-03-17 04:00:00,110.6819594,285.6558673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931764615,4.985635412,-2.152354905,2.152354905,1,0.898228056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071887688,94.12241702,0.071887688,85.87758298,0,0,0,0,0,3,20,0% -2018-03-17 05:00:00,121.6997581,297.0341769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124061477,5.184224378,-1.103553323,1.103553323,1,0.718872423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295447125,107.1843509,0.295447125,72.81564914,0,0.88076498,0,0,0,3,21,0% -2018-03-17 06:00:00,131.5021251,311.2370181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295145056,5.43211072,-0.543842774,0.543842774,1,0.623156281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499429342,119.9622527,0.499429342,60.03774727,0,0.949885738,0,0,0,3,22,0% -2018-03-17 07:00:00,139.0565036,329.7498414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426993834,5.75522044,-0.154378503,0.154378503,1,0.556553968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66991942,132.0608459,0.66991942,47.9391541,0,0.975364158,0,0,0,3,23,0% -2018-03-18 08:00:00,142.8693691,352.9039728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.493540891,6.159336268,0.169081604,-0.169081604,1,0.501239032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795285669,142.6822461,0.795285669,37.31775391,0,0.98712951,0,0,0,3,0,0% -2018-03-18 09:00:00,141.7664203,17.49835339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474290804,0.30540388,0.479608025,-0.479608025,1,0.448135887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866972257,150.10868,0.866972257,29.89132001,0,0.992328028,0,0,0,3,1,0% -2018-03-18 10:00:00,136.124265,38.77348649,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375816617,0.676725002,0.82220741,-0.82220741,1,0.389547941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880082269,151.6522891,0.880082269,28.3477109,0,0.993187129,0,0,0,3,2,0% -2018-03-18 11:00:00,127.4238659,55.23815148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223966006,0.964087616,1.263683432,-1.263683432,1,0.314051095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833711479,146.481906,0.833711479,33.51809397,0,0.990027214,0,0,0,3,3,0% -2018-03-18 12:00:00,116.9864552,68.01815179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041798824,1.1871407,1.962583364,-1.962583364,1,0.194532168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731010147,136.9711453,0.731010147,43.02885475,0,0.981601497,0,0,0,3,4,0% -2018-03-18 13:00:00,105.6371668,78.57495937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843716372,1.371391751,3.5327121,-3.5327121,1,0,#DIV/0!,0,0,0.068880201,1,0.275851976,0,0.928067466,0.966829429,0.724496596,1,0,0,0.011409452,0.312029739,0.968154678,0.692651274,0.961238037,0.922476074,0,0,0,0,0,0,-0.578968573,125.3780302,0.578968573,54.6219698,0,0.963639527,0,0,0,3,5,0% -2018-03-18 14:00:00,93.87315444,88.03843009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638395624,1.536560473,14.04452823,-14.04452823,1,0,#DIV/0!,0,0,0.651762337,1,0.071082146,0,0.954364773,0.993126736,0.724496596,1,0,0,0.085121881,0.312029739,0.787124507,0.511621103,0.961238037,0.922476074,0,0,0,0,0,0,-0.387940949,112.8264398,0.387940949,67.17356022,0,0.921114405,0,0,0,3,6,0% -2018-03-18 15:00:00,81.93166314,97.28377466,73.38242654,310.9963347,29.73281663,29.38945023,0,29.38945023,28.8362625,0.553187728,71.26937645,52.58040342,18.68897303,0.896554124,17.79241891,1.429977283,1.697922177,-6.269497781,6.269497781,0.397699046,0.397699046,0.405176253,0.355001083,11.41805512,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.71851236,0.649550411,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.257197076,10.97546889,27.97570944,11.6250193,0,52.58040342,-0.169070814,99.73379862,0.169070814,80.26620138,0,0.754265929,27.97570944,51.28462616,61.54047156,3,7,120% -2018-03-18 16:00:00,70.41598377,107.1236683,278.053251,643.8363754,62.24654009,99.83750249,37.37184239,62.4656601,60.36957724,2.096082856,69.29419274,0,69.29419274,1.876962849,67.41722989,1.228990763,1.869660719,-2.24115416,2.24115416,0.913413623,0.913413623,0.223865536,1.955220489,62.88661196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.02953392,1.359853195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416550589,60.44900342,59.4460845,61.80885662,37.37184239,0,0.058045559,86.67236403,-0.058045559,93.32763597,0,0,59.4460845,61.80885662,99.89874498,3,8,68% -2018-03-18 17:00:00,59.50648473,118.4965001,474.449405,777.4882145,79.92013191,299.9819737,218.8951286,81.08684508,77.51024506,3.576600023,117.4456381,0,117.4456381,2.409886851,115.0357512,1.038584085,2.068154079,-1.125274496,1.125274496,0.722586962,0.722586962,0.168448166,2.751538053,88.49892213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50579579,1.74595482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993479953,85.06853017,76.49927575,86.81448499,218.8951286,0,0.281541411,73.64777753,-0.281541411,106.3522225,0.872406232,0,267.4647501,86.81448499,324.2830942,3,9,21% -2018-03-18 18:00:00,49.85420063,132.6127544,633.7470669,841.2966283,91.33379993,501.8812169,408.5240149,93.35720197,88.57974888,4.777453086,156.4133647,0,156.4133647,2.754051054,153.6593136,0.870119947,2.314529195,-0.545384688,0.545384688,0.623419964,0.623419964,0.144117117,3.237639793,104.1336251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14622392,1.995300613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345659009,100.0972013,87.49188293,102.0925019,408.5240149,0,0.485588556,60.94895981,-0.485588556,119.0510402,0.94703217,0,474.3772671,102.0925019,541.1947678,3,10,14% -2018-03-18 19:00:00,42.47170713,150.7940493,742.1695485,872.8413244,98.35231217,673.7230409,572.7416263,100.9814146,95.38662708,5.594787551,182.9132847,0,182.9132847,2.965685093,179.9475996,0.741271128,2.631852652,-0.146452793,0.146452793,0.555198592,0.555198592,0.132520005,3.436003398,110.5136805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68925415,2.148628755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.489372765,106.2299532,94.17862692,108.378582,572.7416263,0,0.656180694,48.99076281,-0.656180694,131.0092372,0.973801477,0,651.9152683,108.378582,722.8468826,3,11,11% -2018-03-18 20:00:00,38.76555772,173.219491,791.4374505,884.9804783,101.4053436,796.0715355,691.7577473,104.3137881,98.34759834,5.966189806,194.9509181,0,194.9509181,3.057745255,191.8931728,0.676586619,3.023250447,0.183638865,-0.183638865,0.498749594,0.498749594,0.128128058,3.358808757,108.0308355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.53545235,2.215326028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433445511,103.8433482,96.96889787,106.0586742,691.7577473,0,0.781664414,38.58677877,-0.781664414,141.4132212,0.986033931,0,779.0655086,106.0586742,848.4787897,3,12,9% -2018-03-18 21:00:00,39.80958482,196.9514155,777.9299886,881.7693826,100.5755313,855.9827454,752.5755727,103.4071728,97.54280792,5.864364853,191.6508556,0,191.6508556,3.032723352,188.6181323,0.694808329,3.437450667,0.501019357,-0.501019357,0.444474334,0.444474334,0.129286096,3.027748575,97.38280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.7618572,2.197197745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193593536,93.6080534,95.95545073,95.80525115,752.5755727,0,0.853483448,31.4074057,-0.853483448,148.5925943,0.991416556,0,842.0713329,95.80525115,904.7739537,3,13,7% -2018-03-18 22:00:00,45.26751707,217.7109319,702.651042,862.1860206,95.84661908,845.5552773,747.301907,98.25337023,92.95648987,5.296880355,173.2560093,0,173.2560093,2.890129201,170.3658801,0.790067217,3.799772579,0.853294957,-0.853294957,0.384231658,0.384231658,0.13640714,2.480141637,79.76988047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.35331384,2.093888768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796854173,76.6778433,91.15016801,78.77173207,747.301907,0,0.866752521,29.91657326,-0.866752521,150.0834267,0.992313407,0,832.7078694,78.77173207,884.2623926,3,14,6% -2018-03-18 23:00:00,53.77222252,234.0200737,571.2247707,819.258918,87.04535582,761.004759,672.2780082,88.72675078,84.42061718,4.306133608,141.1247977,0,141.1247977,2.624738641,138.5000591,0.938502329,4.084420801,1.312194137,-1.312194137,0.305755276,0.305755276,0.152383721,1.772175809,56.99926583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.14830832,1.901614211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283935341,54.78986239,82.43224367,56.6914766,672.2780082,0,0.820592847,34.85581586,-0.820592847,145.1441841,0.989068443,0,747.3612064,56.6914766,784.464644,3,15,5% -2018-03-18 00:00:00,64.05355677,246.8044008,394.0712509,732.9863457,73.36713777,600.5650697,526.4395463,74.12552341,71.15484787,2.970675545,97.75942707,0,97.75942707,2.2122899,95.54713717,1.117945463,4.307549402,2.051981642,-2.051981642,0.179244162,0.179244162,0.186177341,0.986413711,31.72645572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39674627,1.602796501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714653376,30.49667601,69.11139965,32.09947251,526.4395463,0,0.718211941,44.09294836,-0.718211941,135.9070516,0.980382667,0,585.2236059,32.09947251,606.2320687,3,16,4% -2018-03-18 01:00:00,75.28065973,257.405301,188.7082958,540.8398668,51.28930507,357.7122175,306.5469114,51.16530613,49.74274328,1.422562844,47.30107289,0,47.30107289,1.546561785,45.7545111,1.313895375,4.492570014,3.774788562,-3.774788562,0,0,0.27179147,0.386640446,12.43568582,0.103439078,1,0.258966774,0,0.930583916,0.969345879,0.724496596,1,48.0184796,1.120478749,0.01686767,0.312029739,0.953279908,0.677776504,0.961238037,0.922476074,0.273074219,11.95365423,48.29155382,13.07413297,274.8379815,0,0.56679792,55.47276457,-0.56679792,124.5272354,0.961785138,0,312.6266399,13.07413297,321.1833984,3,17,3% -2018-03-18 02:00:00,86.82744253,266.9080375,11.3758336,71.3858868,7.425104265,34.3236364,27.03667058,7.286965815,7.201209976,0.085755839,2.98209685,0,2.98209685,0.223894289,2.758202561,1.515424753,4.658424054,17.26147024,-17.26147024,0,0,0.652708586,0.055973572,1.800302494,0.707750307,1,0.057867812,0,0.955733597,0.994495561,0.724496596,1,6.96401486,0.16221065,0.090580238,0.312029739,0.77543736,0.499933956,0.961238037,0.922476074,0.038897243,1.730519235,7.002912103,1.892729885,7.901458665,0,0.378739717,67.74436033,-0.378739717,112.2556397,0.917983215,0,14.25631853,1.892729885,15.49507238,3,18,9% -2018-03-18 03:00:00,98.87628478,276.176341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725716721,4.820186467,-5.746496243,5.746496243,1,0.487137576,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158270829,80.89345681,-0.158270829,99.10654319,0.734085815,0,0,0,0,3,19,0% -2018-03-18 04:00:00,110.4798278,286.0271573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928236752,4.992115645,-2.165392641,2.165392641,1,0.90045764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.069655281,93.99418792,0.069655281,86.00581208,0,0,0,0,0,3,20,0% -2018-03-18 05:00:00,121.4690716,297.4207829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120035239,5.190971926,-1.105464421,1.105464421,1,0.719199239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.293177465,107.0482823,0.293177465,72.95171767,0,0.879454832,0,0,0,3,21,0% -2018-03-18 06:00:00,131.2263346,311.6268937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290331604,5.438915333,-0.542326299,0.542326299,1,0.622896949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497048384,119.804914,0.497048384,60.19508596,0,0.949406171,0,0,0,3,22,0% -2018-03-18 07:00:00,138.7220211,330.0892559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421156013,5.761144341,-0.151088525,0.151088525,1,0.555991349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667360759,131.8636922,0.667360759,48.13630776,0,0.975078004,0,0,0,3,23,0% -2018-03-19 08:00:00,142.4827018,353.0859505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486792274,6.162512378,0.173841028,-0.173841028,1,0.500425123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792495124,142.4192999,0.792495124,37.5807001,0,0.986908129,0,0,0,3,0,0% -2018-03-19 09:00:00,141.3649887,17.46092295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4672845,0.304750596,0.486144613,-0.486144613,1,0.447018065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86391162,149.7586578,0.86391162,30.24134216,0,0.992123709,0,0,0,3,1,0% -2018-03-19 10:00:00,135.7444378,38.58368973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369187382,0.673412423,0.83150934,-0.83150934,1,0.387957218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876731945,151.2506182,0.876731945,28.74938184,0,0.992970026,0,0,0,3,2,0% -2018-03-19 11:00:00,127.0754837,54.98587216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217885589,0.959684511,1.27823493,-1.27823493,1,0.311562643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830071853,146.1061197,0.830071853,33.89388026,0,0.989764251,0,0,0,3,3,0% -2018-03-19 12:00:00,116.6636344,67.74947119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036164538,1.182451339,1.989890442,-1.989890442,1,0.189862382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727101568,136.6439555,0.727101568,43.35604453,0,0.981233816,0,0,0,3,4,0% -2018-03-19 13:00:00,105.3303089,78.30527778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838360692,1.366684919,3.609545382,-3.609545382,1,0,#DIV/0!,0,0,0.080134053,1,0.270264763,0,0.928906778,0.967668741,0.724496596,1,0,0,0.013205729,0.312029739,0.963233703,0.687730299,0.961238037,0.922476074,0,0,0,0,0,0,-0.574829963,125.0877253,0.574829963,54.91227471,0,0.963017756,0,0,0,3,5,0% -2018-03-19 14:00:00,93.57281793,87.77045196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.633153763,1.531883373,15.25162583,-15.25162583,1,0,#DIV/0!,0,0,0.675116659,1,0.065473065,0,0.954950831,0.993712794,0.724496596,1,0,0,0.087425874,0.312029739,0.782162214,0.50665881,0.961238037,0.922476074,0,0,0,0,0,0,-0.383627131,112.5585373,0.383627131,67.44146269,0,0.91966511,0,0,0,3,6,0% -2018-03-19 15:00:00,81.63241352,97.01644682,78.10440436,324.0053106,30.95406567,30.60947037,0,30.60947037,30.02068638,0.588783991,73.23657877,53.36588239,19.87069639,0.933379288,18.9373171,1.424754392,1.693256426,-6.056709253,6.056709253,0.434088027,0.434088027,0.396316519,0.38763671,12.46772908,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.85702564,0.676230117,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.280841477,11.98445543,29.13786712,12.66068554,0,53.36588239,-0.164706814,99.48020312,0.164706814,80.51979688,0,0.746430288,29.13786712,52.49459652,63.49453065,3,7,118% -2018-03-19 16:00:00,70.10251738,106.8571285,283.7707622,648.9515582,62.90773309,103.7018681,40.55185137,63.1500167,61.01083283,2.139183871,70.70040695,0,70.70040695,1.896900257,68.80350669,1.223519742,1.865008722,-2.210648409,2.210648409,0.908196832,0.908196832,0.221685041,1.986335379,63.88737376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64593318,1.374297779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43909322,61.41097373,60.0850264,62.78527151,40.55185137,0,0.062488256,86.41735248,-0.062488256,93.58264752,0,0,60.0850264,62.78527151,101.1767309,3,8,68% -2018-03-19 17:00:00,59.17181244,118.2380085,480.1908037,780.0869926,80.42322526,304.6821348,223.0640854,81.6180494,77.99816829,3.619881112,118.8528768,0,118.8528768,2.425056972,116.4278198,1.032742951,2.06364255,-1.116040081,1.116040081,0.721007784,0.721007784,0.167481811,2.779105463,89.38558479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.97480616,1.756945521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013452447,85.92082405,76.98825861,87.67776957,223.0640854,0,0.285947705,73.3844942,-0.285947705,106.6155058,0.875142853,0,272.2011986,87.67776957,329.5845453,3,9,21% -2018-03-19 18:00:00,49.49046807,132.3885084,639.3240844,842.9384693,91.77271329,506.7636059,412.9386836,93.82492238,89.00542738,4.819495,157.778812,0,157.778812,2.767285911,155.0115261,0.863771616,2.310615363,-0.542475289,0.542475289,0.622922428,0.622922428,0.143546467,3.263041888,104.9506438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55540228,2.004889222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.36406274,100.8825508,87.91946502,102.88744,412.9386836,0,0.489879984,60.66730645,-0.489879984,119.3326936,0.947934185,0,479.3581593,102.88744,546.695931,3,10,14% -2018-03-19 19:00:00,42.07894058,150.6670711,747.4986332,874.0555916,98.75516006,678.542593,577.1303049,101.4122881,95.77732762,5.634960442,184.2175303,0,184.2175303,2.977832444,181.2396979,0.734416059,2.629636465,-0.146424469,0.146424469,0.555193749,0.555193749,0.132114168,3.459634432,111.2737358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.06481038,2.157429469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506493369,106.9605473,94.57130374,109.1179768,577.1303049,0,0.660290158,48.67799433,-0.660290158,131.3220057,0.974275715,0,656.8553443,109.1179768,728.2708778,3,11,11% -2018-03-19 20:00:00,38.36519502,173.2770571,796.4738635,886.0047018,101.7835934,800.7090711,695.9904722,104.7185989,98.71444251,6.004156415,196.1834603,0,196.1834603,3.069150882,193.1143095,0.669598971,3.024255165,0.181799256,-0.181799256,0.499064186,0.499064186,0.12779276,3.380821331,108.7388355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.88807693,2.223589366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449393546,104.5239048,97.33747047,106.7474941,695.9904722,0,0.785538125,38.22952433,-0.785538125,141.7704757,0.986349366,0,783.8272312,106.7474941,853.6913312,3,12,9% -2018-03-19 21:00:00,39.44197945,197.2064265,782.6555544,882.7492491,100.9362818,860.382999,756.5903303,103.7926686,97.89268047,5.899988164,192.8075017,0,192.8075017,3.043601311,189.7639004,0.688392405,3.441901448,0.497439111,-0.497439111,0.445086592,0.445086592,0.128966416,3.048239416,98.04185788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.098168,2.205078789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208439081,94.241563,96.30660708,96.44664179,756.5903303,0,0.857084083,31.00925641,-0.857084083,148.9907436,0.991662666,0,846.5889915,96.44664179,909.7113896,3,13,7% -2018-03-19 22:00:00,44.95723271,218.0716294,707.0695382,863.2594241,96.19748235,849.7158357,751.0888735,98.62696217,93.29677332,5.330188846,174.3379047,0,174.3379047,2.900709024,171.4371957,0.784651733,3.806067937,0.847443861,-0.847443861,0.385232254,0.385232254,0.13605095,2.499176251,80.3820991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.68040723,2.101553813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810644687,77.26633114,91.49105192,79.36788495,751.0888735,0,0.870061597,29.5342017,-0.870061597,150.4657983,0.992532804,0,836.9713979,79.36788495,888.9160912,3,14,6% -2018-03-19 23:00:00,53.51550877,234.4041306,575.3557316,820.6395451,87.39920904,764.9894777,675.8884028,89.10107495,84.76380042,4.337274536,142.137067,0,142.137067,2.635408621,139.5016584,0.934021829,4.091123859,1.302402835,-1.302402835,0.307429687,0.307429687,0.151904647,1.789708398,57.56317416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.47818911,1.909344575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.296637642,55.33191253,82.77482675,57.2412571,675.8884028,0,0.823611788,34.55200077,-0.823611788,145.4479992,0.989291787,0,751.4256724,57.2412571,788.8889304,3,15,5% -2018-03-19 00:00:00,63.83535089,247.1800873,397.9313326,735.1738299,73.75483705,604.5625343,530.0319032,74.53063106,71.53085659,2.999774472,98.70703914,0,98.70703914,2.223980464,96.48305867,1.114137052,4.31410637,2.032972836,-2.032972836,0.182494859,0.182494859,0.185345639,1.001972286,32.22687296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75818016,1.611266275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.72592551,30.9776961,69.48410567,32.58896237,530.0319032,0,0.720961331,43.86609313,-0.720961331,136.1339069,0.980648153,0,589.2589125,32.58896237,610.5877366,3,16,4% -2018-03-19 01:00:00,75.08605962,257.7687744,192.2072144,545.4771851,51.81889125,362.2519925,310.5466928,51.70529966,50.25636049,1.448939171,48.16539519,0,48.16539519,1.562530763,46.60286443,1.310498963,4.498913822,3.720138737,-3.720138737,0,0,0.269599096,0.390632691,12.56409012,0.095863351,1,0.262599728,0,0.930047555,0.968809518,0.724496596,1,48.5020952,1.132048218,0.015685751,0.312029739,0.956481088,0.680977684,0.961238037,0.922476074,0.27632902,12.07708132,48.77842422,13.20912954,280.7766463,0,0.569311974,55.29773849,-0.569311974,124.7022615,0.962174691,0,318.9346071,13.20912954,327.5797182,3,17,3% -2018-03-19 02:00:00,86.650166,267.2653444,12.81759888,79.03733206,8.199263395,38.15865341,30.11000359,8.048649826,7.952025351,0.096624475,3.355013288,0,3.355013288,0.247238043,3.107775245,1.512330694,4.664660236,16.31474993,-16.31474993,0,0,0.639687938,0.061809511,1.988006338,0.693235806,1,0.06121764,0,0.955390503,0.994152466,0.724496596,1,7.691845302,0.179123121,0.089186497,0.312029739,0.778398875,0.502895471,0.961238037,0.922476074,0.042888649,1.910947309,7.734733951,2.09007043,9.236670967,0,0.380959261,67.60688587,-0.380959261,112.3931141,0.91875237,0,16.2209473,2.09007043,17.58885659,3,18,8% -2018-03-19 03:00:00,98.68858044,276.5362161,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722440663,4.826467472,-5.854381534,5.854381534,1,0.468688105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160523989,80.76268826,-0.160523989,99.23731174,0.738520076,0,0,0,0,3,19,0% -2018-03-19 04:00:00,110.277469,286.3978832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924704925,4.998586033,-2.178602459,2.178602459,1,0.902716652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067430359,93.86640875,0.067430359,86.13359125,0,0,0,0,0,3,20,0% -2018-03-19 05:00:00,121.2377542,297.8059871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115997988,5.197695007,-1.107367282,1.107367282,1,0.719524648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290903721,106.9120682,0.290903721,73.0879318,0,0.878121827,0,0,0,3,21,0% -2018-03-19 06:00:00,130.9496983,312.0141451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28550339,5.445674145,-0.540772601,0.540772601,1,0.622631251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494652084,119.646811,0.494652084,60.35318903,0,0.948918853,0,0,0,3,22,0% -2018-03-19 07:00:00,138.3868923,330.425057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415306913,5.767005177,-0.14774943,0.14774943,1,0.55542033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664776586,131.665188,0.664776586,48.33481201,0,0.974786761,0,0,0,3,23,0% -2018-03-20 08:00:00,142.0959094,353.2658207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480041473,6.165651706,0.178663176,-0.178663176,1,0.499600487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78967069,142.1547476,0.78967069,37.84525238,0,0.986682467,0,0,0,3,0,0% -2018-03-20 09:00:00,140.9634786,17.42519904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460276826,0.304127096,0.492767868,-0.492767868,1,0.445885421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860811083,149.4077736,0.860811083,30.59222642,0,0.991915246,0,0,0,3,1,0% -2018-03-20 10:00:00,135.3640619,38.39734404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362548568,0.670160078,0.840947269,-0.840947269,1,0.386343237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873338495,150.8489428,0.873338495,29.15105719,0,0.99274843,0,0,0,3,2,0% -2018-03-20 11:00:00,126.7262267,54.73660893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211789904,0.955334047,1.293043319,-1.293043319,1,0.309030259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82638888,145.7295561,0.82638888,34.27044389,0,0.989495798,0,0,0,3,3,0% -2018-03-20 12:00:00,116.3399075,67.48289185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030514437,1.177798652,2.017854427,-2.017854427,1,0.185080259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723152446,136.3153693,0.723152446,43.68463069,0,0.980858285,0,0,0,3,4,0% -2018-03-20 13:00:00,105.0226965,78.03690227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832991844,1.362000883,3.689548678,-3.689548678,1,0,#DIV/0!,0,0,0.091566709,1,0.26467706,0,0.92973961,0.968501574,0.724496596,1,0,0,0.015011811,0.312029739,0.95831133,0.682807926,0.961238037,0.922476074,0,0,0,0,0,0,-0.570656445,124.7960144,0.570656445,55.20398563,0,0.962381608,0,0,0,3,5,0% -2018-03-20 14:00:00,93.27196401,87.50313738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627902872,1.527217853,16.68221282,-16.68221282,1,0,#DIV/0!,0,0,0.699037466,1,0.059872442,0,0.955528599,0.994290562,0.724496596,1,0,0,0.089745354,0.312029739,0.777209507,0.501706103,0.961238037,0.922476074,0,0,0,0,0,0,-0.379286487,112.289493,0.379286487,67.71050696,0,0.918173527,0,0,0,3,6,0% -2018-03-20 15:00:00,81.33270847,96.74920634,82.89668714,336.7272572,32.15307016,31.80844671,0,31.80844671,31.18353647,0.624910243,75.05380978,53.98501454,21.06879524,0.969533698,20.09926154,1.419523552,1.688592199,-5.858048413,5.858048413,0.468061032,0.468061032,0.387869181,0.421429322,13.55461564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.97480137,0.702423864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.305324109,13.02921213,30.28012548,13.731636,0,53.98501454,-0.160322675,99.22562591,0.160322675,80.77437409,0,0.738128956,30.28012548,53.5795384,65.34686178,3,7,116% -2018-03-20 16:00:00,69.7890229,106.5900767,289.4856712,653.9472255,63.56129476,107.6002015,43.77324905,63.82695247,61.6446872,2.182265269,72.10576008,0,72.10576008,1.916607553,70.18915253,1.218048231,1.860347788,-2.180985126,2.180985126,0.903124112,0.903124112,0.21956629,2.017274648,64.88248702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.25521811,1.388575648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.461508615,62.36751445,60.71672673,63.75609009,43.77324905,0,0.066936975,86.16192407,-0.066936975,93.83807593,0,0,60.71672673,63.75609009,102.4438126,3,8,69% -2018-03-20 17:00:00,58.8372968,117.9783471,485.9117586,782.6334249,80.92236305,309.3814334,227.2361701,82.14526331,78.48225523,3.663008086,120.2550394,0,120.2550394,2.440107818,117.8149316,1.026904552,2.059110603,-1.106955171,1.106955171,0.719454173,0.719454173,0.166537157,2.806506969,90.26691142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44012894,1.767849807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033304745,86.76798873,77.47343369,88.53583854,227.2361701,0,0.290348154,73.12119937,-0.290348154,106.8788006,0.877792947,0,276.939741,88.53583854,334.8846766,3,9,21% -2018-03-20 18:00:00,49.12690596,132.1625994,644.8690844,844.5487462,92.2083821,511.6265944,417.3373397,94.28925472,89.42795916,4.861295552,159.1363985,0,159.1363985,2.780422933,156.3559756,0.85742626,2.306672508,-0.53958975,0.53958975,0.622428971,0.622428971,0.142987754,3.288262977,105.7618407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96155591,2.01440695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.382335333,101.6623041,88.34389124,103.676711,417.3373397,0,0.494154235,60.3860049,-0.494154235,119.6139951,0.948817016,0,484.3206606,103.676711,552.1749945,3,10,14% -2018-03-20 19:00:00,41.6861944,150.5391035,752.7873134,875.2461845,99.15481939,683.3290642,581.4892997,101.8397645,96.16493574,5.674828747,185.5118832,0,185.5118832,2.989883647,182.5219996,0.727561345,2.627403008,-0.146381255,0.146381255,0.555186359,0.555186359,0.131716911,3.483072765,112.0275931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.43739405,2.166160524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523474362,107.6851837,94.96086841,109.8513442,581.4892997,0,0.664372276,48.36581387,-0.664372276,131.6341861,0.97474099,0,661.7623238,109.8513442,733.6578316,3,11,11% -2018-03-20 20:00:00,37.96494155,173.3366848,801.464566,887.0081787,102.1585649,805.3029862,700.1831005,105.1198857,99.07810727,6.041778438,197.4048207,0,197.4048207,3.080457658,194.3243631,0.66261323,3.025295865,0.179994141,-0.179994141,0.499372879,0.499372879,0.127464855,3.402640453,109.4406135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.23764533,2.231781087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465201425,105.1984804,97.70284676,107.4302615,700.1831005,0,0.789376149,37.87275015,-0.789376149,142.1272498,0.986658841,0,788.5446934,107.4302615,858.8556509,3,12,9% -2018-03-20 21:00:00,39.07522648,197.4663508,787.3333792,883.7084966,101.2936601,864.73214,760.5576059,104.1745341,98.23928247,5.935251584,193.9524708,0,193.9524708,3.054377585,190.8980932,0.681991358,3.446437983,0.493911691,-0.493911691,0.445689816,0.445689816,0.128654091,3.068549336,98.69509473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.43133503,2.212886163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223153549,94.8694791,96.65448857,97.08236527,760.5576059,0,0.860643084,30.61113481,-0.860643084,149.3888652,0.991903908,0,851.05455,97.08236527,914.5930164,3,13,7% -2018-03-20 22:00:00,44.64852852,218.4369188,711.4416639,864.3096883,96.54488948,853.8208808,754.8240282,98.99685263,93.63370485,5.363147777,175.4084528,0,175.4084528,2.911184631,172.4972682,0.779263829,3.81244344,0.8416743,-0.8416743,0.386218907,0.386218907,0.135703171,2.518056595,80.98935586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.00427863,2.109143355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824323431,77.85004943,91.82860206,79.95919279,754.8240282,0,0.873325891,29.15253972,-0.873325891,150.8474603,0.992747604,0,841.1783473,79.95919279,893.5100398,3,14,6% -2018-03-20 23:00:00,53.2605461,234.7912001,579.4451334,821.9901737,87.74942829,768.916975,679.4454135,89.47156144,85.10345926,4.368102175,143.1391502,0,143.1391502,2.645969024,140.4931812,0.929571891,4.097879496,1.292756142,-1.292756142,0.309079369,0.309079369,0.151436992,1.807128911,58.12347776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.80468211,1.916995551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309258745,55.87049765,83.11394086,57.7874932,679.4454135,0,0.82658581,34.25040102,-0.82658581,145.749599,0.989510212,0,755.4321164,57.7874932,793.2528749,3,15,5% -2018-03-20 00:00:00,63.61867268,247.5575193,401.7584123,737.313374,74.13819637,608.5019014,533.5706206,74.93128082,71.90265621,3.028624616,99.64651863,0,99.64651863,2.235540161,97.41097847,1.110355304,4.320693799,2.014304828,-2.014304828,0.185687277,0.185687277,0.184534273,1.017484256,32.72579125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1155681,1.619641237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.73716388,31.45727534,69.85273198,33.07691658,533.5706206,0,0.723668713,43.64178716,-0.723668713,136.3582128,0.980907611,0,593.2362149,33.07691658,614.8843952,3,16,4% -2018-03-20 01:00:00,74.89258436,258.1331767,195.6893308,550.0089356,52.34079611,366.7273038,314.4895869,52.23771682,50.76252799,1.475188835,49.02541198,0,49.02541198,1.57826812,47.44714386,1.307122182,4.505273842,3.667000693,-3.667000693,0,0,0.267468829,0.39456703,12.690632,0.088373411,1,0.266228926,0,0.929508968,0.968270931,0.724496596,1,48.97799181,1.14344988,0.014509232,0.312029739,0.959678515,0.684175111,0.961238037,0.922476074,0.279559534,12.19871819,49.25755135,13.34216807,286.6970693,0,0.571789959,55.12486038,-0.571789959,124.8751396,0.962555303,0,325.2193357,13.34216807,333.9515178,3,17,3% -2018-03-20 02:00:00,86.47305695,267.6230202,14.3383484,86.91452546,8.991549262,42.13062317,33.30211377,8.828509403,8.720420877,0.108088527,3.747626959,0,3.747626959,0.271128386,3.476498574,1.509239558,4.670902856,15.46320606,-15.46320606,0,0,0.627097976,0.067782096,2.180105219,0.678891305,1,0.064579715,0,0.955043487,0.99380545,0.724496596,1,8.436922526,0.196431592,0.087794573,0.312029739,0.781372063,0.505868659,0.961238037,0.922476074,0.046966589,2.095600061,8.483889115,2.292031653,10.69359828,0,0.383159358,67.47048161,-0.383159358,112.5295184,0.919505993,0,18.31671682,2.292031653,19.8168057,3,18,8% -2018-03-20 03:00:00,98.50112004,276.8959747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719168862,4.832746444,-5.966571404,5.966571404,1,0.449502507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162758707,80.63294214,-0.162758707,99.36705786,0.742796773,0,0,0,0,3,19,0% -2018-03-20 04:00:00,110.074903,286.7679189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921169481,5.005044374,-2.191992122,2.191992122,1,0.90500642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065212773,93.73907004,0.065212773,86.26092996,0,0,0,0,0,3,20,0% -2018-03-20 05:00:00,121.0058404,298.18966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11195033,5.204391362,-1.109264057,1.109264057,1,0.719849016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288625803,106.7757027,0.288625803,73.2242973,0,0.876765315,0,0,0,3,21,0% -2018-03-20 06:00:00,130.6722748,312.3986537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280661437,5.452385086,-0.539183073,0.539183073,1,0.622359425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492240493,119.4879494,0.492240493,60.51205063,0,0.948423635,0,0,0,3,22,0% -2018-03-20 07:00:00,138.0512024,330.757167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409448018,5.772801589,-0.144362392,0.144362392,1,0.554841113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662167166,131.4653633,0.662167166,48.53463666,0,0.974490366,0,0,0,3,23,0% -2018-03-21 08:00:00,141.709094,353.4435166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473290271,6.168753085,0.183546999,-0.183546999,1,0.498765304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786812896,141.8886612,0.786812896,38.11133879,0,0.98645249,0,0,0,3,0,0% -2018-03-21 09:00:00,140.5620118,17.39105761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45326991,0.303531216,0.499476928,-0.499476928,1,0.444738104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857671478,149.0561334,0.857671478,30.94386661,0,0.99170262,0,0,0,3,1,0% -2018-03-21 10:00:00,134.9832788,38.21434747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355902651,0.666966185,0.850520908,-0.850520908,1,0.384706048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869903068,150.4473774,0.869903068,29.55262264,0,0.992522332,0,0,0,3,2,0% -2018-03-21 11:00:00,126.3762404,54.49032113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205681492,0.951035514,1.308110645,-1.308110645,1,0.306453595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822664023,145.3523688,0.822664023,34.64763124,0,0.989221847,0,0,0,3,3,0% -2018-03-21 12:00:00,116.0154152,67.21841187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024850978,1.173182605,2.046490515,-2.046490515,1,0.1801832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719164526,135.9855452,0.719164526,44.01445481,0,0.98047488,0,0,0,3,4,0% -2018-03-21 13:00:00,104.7144651,77.7698485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82761219,1.357339915,3.772896932,-3.772896932,1,0,#DIV/0!,0,0,0.103178976,1,0.259090881,0,0.930565639,0.969327602,0.724496596,1,0,0,0.016827224,0.312029739,0.953389273,0.677885869,0.961238037,0.922476074,0,0,0,0,0,0,-0.566450003,124.5030428,0.566450003,55.49695717,0,0.961730956,0,0,0,3,5,0% -2018-03-21 14:00:00,92.97072467,87.23650804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622645253,1.522564293,18.40411745,-18.40411745,1,0,#DIV/0!,0,0,0.723538162,1,0.054282289,0,0.956097889,0.994859852,0.724496596,1,0,0,0.092079749,0.312029739,0.772268484,0.49676508,0.961238037,0.922476074,0,0,0,0,0,0,-0.374921175,112.0194411,0.374921175,67.98055891,0,0.916638634,0,0,0,3,6,0% -2018-03-21 15:00:00,81.03269435,96.48207397,87.75231223,349.1537566,33.32942259,32.98593153,0,32.98593153,32.32441753,0.661513996,76.72193703,54.44036791,22.28156912,1.005005064,21.27656406,1.414287318,1.68392986,-5.672220819,5.672220819,0.499839422,0.499839422,0.379812472,0.456316752,14.67671532,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07145965,0.728122747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330599933,14.10781702,31.40205958,14.83593977,0,54.44036791,-0.1559209,98.97020932,0.1559209,81.02979068,0,0.72932458,31.40205958,54.54063824,67.0978165,3,7,114% -2018-03-21 16:00:00,69.47563372,106.3225253,295.1949732,658.8249442,64.20719912,111.529558,47.03313841,64.49641957,62.27111517,2.225304399,73.50952286,0,73.50952286,1.936083953,71.57343891,1.212578558,1.855678136,-2.152139863,2.152139863,0.898191282,0.898191282,0.217507766,2.048026567,65.87157444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.8573645,1.402686233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.483788276,63.3182629,61.34115277,64.72094913,47.03313841,0,0.071389432,85.90620452,-0.071389432,94.09379548,0,0,61.34115277,64.72094913,103.6997196,3,8,69% -2018-03-21 17:00:00,58.50307353,117.7175082,491.6096702,785.1277927,81.41743643,314.07736,231.4089983,82.66836167,78.96240032,3.705961351,121.6514923,0,121.6514923,2.455036107,119.1964562,1.021071256,2.054558106,-1.098019942,1.098019942,0.717926159,0.717926159,0.165613985,2.833731963,91.14256081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.90166267,1.778665302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053029161,87.60969623,77.95469183,89.38836153,231.4089983,0,0.294740551,72.85801966,-0.294740551,107.1419803,0.880359278,0,281.6777504,89.38836153,340.1806453,3,9,21% -2018-03-21 18:00:00,48.76365062,131.9349825,650.3797541,846.1275141,92.64069661,516.467858,421.7177829,94.7500751,89.8472378,4.902837308,160.48556,0,160.48556,2.79345881,157.6921012,0.851086259,2.302699843,-0.536729772,0.536729772,0.621939886,0.621939886,0.142440929,3.313293917,106.5669217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36458248,2.023851399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.400470164,102.4361786,88.76505264,104.46003,421.7177829,0,0.498409254,60.10518724,-0.498409254,119.8948128,0.949680835,0,489.262349,104.46003,557.6293495,3,10,14% -2018-03-21 19:00:00,41.29359671,150.410067,758.0335892,876.4131348,99.55119416,688.0803676,585.8166319,102.2637357,96.54935835,5.71437739,186.7958557,0,186.7958557,3.001835809,183.7940199,0.720709223,2.625150897,-0.146324741,0.146324741,0.555176694,0.555176694,0.13132821,3.50631078,112.7750075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80691568,2.174819825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540310224,108.4036269,95.34722591,110.5784467,585.8166319,0,0.668425208,48.05436235,-0.668425208,131.9456376,0.975197315,0,666.6340326,110.5784467,739.0054144,3,11,11% -2018-03-21 20:00:00,37.56491213,173.3983263,806.4078949,887.9909676,102.53018,809.8514999,704.3339398,105.5175601,99.43851675,6.07904334,198.6145936,0,198.6145936,3.091663222,195.5229304,0.6556314,3.026371711,0.178222072,-0.178222072,0.49967592,0.49967592,0.127144316,3.424259965,110.1359713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58408463,2.23989948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.480864688,105.8668848,98.06494932,108.1067843,704.3339398,0,0.793176919,37.51660139,-0.793176919,142.4833986,0.986962361,0,793.2160377,108.1067843,863.9697659,3,12,9% -2018-03-21 21:00:00,38.7094328,197.731156,791.9621401,884.6472379,101.6476072,869.0287431,764.4760412,104.5527019,98.58255677,5.970145138,195.0854403,0,195.0854403,3.065050396,192.0203899,0.675607054,3.451059706,0.490435599,-0.490435599,0.446284263,0.446284263,0.128349074,3.088673481,99.34235639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.76130334,2.220618578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237733423,95.49165164,96.99903676,97.71227021,764.4760412,0,0.864159191,30.21316593,-0.864159191,149.7868341,0.99214029,0,855.4665181,97.71227021,919.4172447,3,13,7% -2018-03-21 22:00:00,44.34149005,218.8067033,715.7664149,865.3370215,96.88880209,857.8693693,758.5063725,99.3629968,93.96724722,5.395749576,176.467409,0,176.467409,2.921554865,173.5458541,0.773904997,3.818897398,0.835984357,-0.835984357,0.387191945,0.387191945,0.135363717,2.536778861,81.5915283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32489225,2.116656554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.837887649,78.42888048,92.1627799,80.54553704,758.5063725,0,0.87654446,28.77170768,-0.87654446,151.2282923,0.992957828,0,845.3276199,80.54553704,898.043063,3,14,6% -2018-03-21 23:00:00,53.00738984,235.1811482,583.4922422,823.3112062,88.09599938,772.7865996,682.9484086,89.83819095,85.43957996,4.39861099,144.130869,0,144.130869,2.656419421,141.4744495,0.925153481,4.104685375,1.283250692,-1.283250692,0.310704897,0.310704897,0.150980584,1.824434198,58.68007526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12777411,1.924566828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321796366,56.40552035,83.44957048,58.33008717,682.9484086,0,0.829514288,33.95112413,-0.829514288,146.0488759,0.989723763,0,759.3798392,58.33008717,797.5557147,3,15,5% -2018-03-21 00:00:00,63.40355401,247.9365603,405.5519358,739.4058846,74.51724211,612.3829377,537.0554435,75.32749412,72.27027232,3.057221798,100.5777319,0,100.5777319,2.246969789,98.33076215,1.106600775,4.327309313,1.995968204,-1.995968204,0.188823024,0.188823024,0.183742785,1.032946405,33.2231071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.46893469,1.627921963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748366154,31.93531425,70.21730084,33.56323621,537.0554435,0,0.726333743,43.42008713,-0.726333743,136.5799129,0.981161122,0,597.1552223,33.56323621,619.1216892,3,16,4% -2018-03-21 01:00:00,74.7002526,258.4983786,199.1539613,554.437634,52.85516949,371.1383941,318.3756963,52.7626978,51.26139112,1.501306683,49.88096202,0,49.88096202,1.593778375,48.28718364,1.30376536,4.511647818,3.615311024,-3.615311024,0,0,0.265398535,0.398444594,12.81534778,0.08096759,1,0.269854386,0,0.928968167,0.96773013,0.724496596,1,49.44631071,1.154687007,0.013338042,0.312029739,0.962872223,0.687368819,0.961238037,0.922476074,0.282766432,12.31859974,49.72907715,13.47328675,292.5975836,0,0.574231756,54.95415065,-0.574231756,125.0458494,0.962927142,0,331.4792322,13.47328675,340.2972289,3,17,3% -2018-03-21 02:00:00,86.29617325,267.9809408,15.93451841,94.9832365,9.79870027,46.22412878,36.60077435,9.623354434,9.503233303,0.120121131,4.158975437,0,4.158975437,0.295466966,3.863508471,1.506152355,4.677149749,14.69331087,-14.69331087,0,0,0.614935451,0.073866742,2.375808326,0.664716485,1,0.067953391,0,0.954692592,0.993454555,0.724496596,1,9.196172801,0.214064811,0.086404729,0.312029739,0.784356291,0.508852887,0.961238037,0.922476074,0.051114643,2.283717331,9.247287445,2.497782142,12.27163627,0,0.385339305,67.33519365,-0.385339305,112.6648063,0.920244225,0,20.54018986,2.497782142,22.17493832,3,18,8% -2018-03-21 03:00:00,98.31391607,277.2554936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715901536,4.839021233,-6.083346011,6.083346011,1,0.429532873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164975139,80.50420978,-0.164975139,99.49579022,0.746924031,0,0,0,0,3,19,0% -2018-03-21 04:00:00,109.8721497,287.1371381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917630769,5.011488464,-2.205569815,2.205569815,1,0.907328342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063002355,93.61216138,0.063002355,86.38783862,0,0,0,0,0,3,20,0% -2018-03-21 05:00:00,120.773366,298.5716728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107892886,5.211058743,-1.111157015,1.111157015,1,0.72017273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286343619,106.6391799,0.286343619,73.36082008,0,0.87538462,0,0,0,3,21,0% -2018-03-21 06:00:00,130.3941238,312.7803024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275806786,5.459046112,-0.537559185,0.537559185,1,0.622081724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489813676,119.3283358,0.489813676,60.67166424,0,0.947920368,0,0,0,3,22,0% -2018-03-21 07:00:00,137.7150373,331.0855096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40358083,5.778532248,-0.140928646,0.140928646,1,0.554253907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659532784,131.26425,0.659532784,48.73575,0,0.974188757,0,0,0,3,23,0% -2018-03-22 08:00:00,141.3223584,353.6189723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46654046,6.171815364,0.188491378,-0.188491378,1,0.497919765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783922306,141.6211143,0.783922306,38.37888568,0,0.986218169,0,0,0,3,0,0% -2018-03-22 09:00:00,140.1607107,17.35837642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446265884,0.302960821,0.506270846,-0.506270846,1,0.443576276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854493684,148.7038441,0.854493684,31.29615589,0,0.991485817,0,0,0,3,1,0% -2018-03-22 10:00:00,134.6022308,38.03459754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349252108,0.663828957,0.860229858,-0.860229858,1,0.38304572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866426869,150.0460366,0.866426869,29.95396343,0,0.992291725,0,0,0,3,2,0% -2018-03-22 11:00:00,126.0256714,54.24696572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199562908,0.946788161,1.323438828,-1.323438828,1,0.303832321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818898802,144.9747111,0.818898802,35.02528895,0,0.988942394,0,0,0,3,3,0% -2018-03-22 12:00:00,115.6902996,66.95602697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019176641,1.168603125,2.075814143,-2.075814143,1,0.175168564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715139616,135.6546423,0.715139616,44.34535765,0,0.980083582,0,0,0,3,4,0% -2018-03-22 13:00:00,104.4057514,77.50413031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822224119,1.352702258,3.85977761,-3.85977761,1,0,#DIV/0!,0,0,0.114971531,1,0.25350826,0,0.931384546,0.970146509,0.724496596,1,0,0,0.018651477,0.312029739,0.948469269,0.672965865,0.961238037,0.922476074,0,0,0,0,0,0,-0.562212678,124.2089577,0.562212678,55.7910423,0,0.961065684,0,0,0,3,5,0% -2018-03-22 14:00:00,92.66923337,86.97058443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617383238,1.517923051,20.51569146,-20.51569146,1,0,#DIV/0!,0,0,0.74863232,1,0.04870463,0,0.956658522,0.995420486,0.724496596,1,0,0,0.094428456,0.312029739,0.767341267,0.491837863,0.961238037,0.922476074,0,0,0,0,0,0,-0.370533404,111.7485174,0.370533404,68.25148258,0,0.915059399,0,0,0,3,6,0% -2018-03-22 15:00:00,80.73251747,96.21506976,92.66455784,361.2788338,34.48287121,34.14163,0,34.14163,33.44308542,0.698544579,78.24257191,54.73519124,23.50738068,1.039785795,22.46759488,1.409048243,1.679269757,-5.498085081,5.498085081,0.529618387,0.529618387,0.372125784,0.492236083,15.83200447,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.14676577,0.753321269,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.356623366,15.2183249,32.50338914,15.97164617,0,54.73519124,-0.151504008,98.71409607,0.151504008,81.28590393,0,0.719975727,32.50338914,55.37965528,68.74826593,3,7,112% -2018-03-22 16:00:00,69.16248447,106.0544867,300.8956671,663.5863101,64.84542069,115.4869587,50.32858801,65.15837064,62.890092,2.268278637,74.91096682,0,74.91096682,1.955328688,72.95563813,1.207113073,1.85099998,-2.124089182,2.124089182,0.893394333,0.893394333,0.215507991,2.07857956,66.85426371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.45234858,1.416628978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505923815,64.2628612,61.95827239,65.67949018,50.32858801,0,0.075843319,85.65032107,-0.075843319,94.34967893,0,0,61.95827239,65.67949018,104.9441851,3,8,69% -2018-03-22 17:00:00,58.16927966,117.4554841,497.2819512,787.5703992,81.90833833,318.7673898,235.5801687,83.18722112,79.43849972,3.748721401,123.041605,0,123.041605,2.46983861,120.5717664,1.015245454,2.049984922,-1.089234545,1.089234545,0.716423767,0.716423767,0.164712068,2.86076999,92.01219672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35930752,1.789389665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072618119,88.44562334,78.43192564,90.235013,235.5801687,0,0.29912268,72.59508311,-0.29912268,107.4049169,0.882844504,0,286.4125828,90.235013,345.4695941,3,9,21% -2018-03-22 18:00:00,48.40083974,131.7056111,655.8538079,847.6748445,93.06954929,521.285078,426.0778159,95.20726203,90.26315899,4.944103037,161.8257392,0,161.8257392,2.806390301,159.0193489,0.844754014,2.298696557,-0.533897039,0.533897039,0.621455461,0.621455461,0.141905937,3.338125761,107.3655992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76438175,2.03322022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418460751,103.2038978,89.1828425,105.237118,426.0778159,0,0.502642987,59.82498679,-0.502642987,120.1750132,0.950525818,0,494.180807,105.237118,563.056396,3,10,14% -2018-03-22 19:00:00,40.90127673,150.279878,763.2355028,877.5564869,99.94419114,692.7944412,590.1103445,102.6840966,96.93050502,5.753591612,188.0689702,0,188.0689702,3.013686118,185.0552841,0.713861947,2.622878671,-0.146256521,0.146256521,0.555165028,0.555165028,0.130948037,3.529341092,113.5157415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.17328835,2.183405333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556995607,109.1156485,95.73028396,111.2990539,590.1103445,0,0.672447134,47.74378211,-0.672447134,132.2562179,0.975644712,0,671.4683214,111.2990539,744.3113262,3,11,11% -2018-03-22 20:00:00,37.16522162,173.4619281,811.3022407,888.9531388,102.8983635,814.3528731,708.4413359,105.9115372,99.79559819,6.115938986,199.8123865,0,199.8123865,3.102765314,196.7096212,0.648655485,3.027481773,0.176481585,-0.176481585,0.499973561,0.499973561,0.12683111,3.445673967,110.8247192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.92732489,2.247942908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49637906,106.5289355,98.42370395,108.7768784,708.4413359,0,0.796938899,37.16122496,-0.796938899,142.838775,0.987259933,0,797.8394498,108.7768784,869.0317411,3,12,9% -2018-03-22 21:00:00,38.34470416,198.0008034,796.5405758,885.5655973,101.9980678,873.2714394,768.3443304,104.927109,98.9224497,6.004659321,196.2061027,0,196.2061027,3.075618076,193.1304846,0.669241338,3.455765941,0.487009322,-0.487009322,0.44687019,0.44687019,0.128051314,3.108607265,99.9834954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.08802135,2.228274826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252175381,96.10793883,97.34019673,98.33621366,768.3443304,0,0.867631187,29.81547583,-0.867631187,150.1845242,0.992371827,0,859.8234637,98.33621366,924.1825489,3,13,7% -2018-03-22 22:00:00,44.03620028,219.180879,720.0428532,866.3416435,97.22918564,861.8603252,762.134971,99.72535413,94.29736696,5.427987175,177.5145448,0,177.5145448,2.931818685,174.5827261,0.768576685,3.825427996,0.830372101,-0.830372101,0.388151697,0.388151697,0.135032499,2.555339506,82.18850242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.64221589,2.124092657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851334773,79.00271472,92.49355067,81.12680738,762.134971,0,0.879716422,28.39182549,-0.879716422,151.6081745,0.993163503,0,849.4181881,81.12680738,902.514061,3,14,6% -2018-03-22 23:00:00,52.75609205,235.573836,587.4963909,824.6030569,88.43891205,776.5977748,686.3968263,90.2009485,85.77215255,4.428795954,145.1120613,0,145.1120613,2.666759503,142.4453018,0.920767507,4.111539069,1.273883137,-1.273883137,0.312306843,0.312306843,0.150535243,1.841621348,59.2328731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.44745553,1.932058182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334248398,56.93689065,83.78170393,58.86894884,686.3968263,0,0.832396655,33.65427465,-0.832396655,146.3457253,0.989932483,0,763.2682187,58.86894884,801.7967683,3,15,5% -2018-03-22 00:00:00,63.19002358,248.317071,409.3114129,741.4522757,74.89200417,616.2054852,540.486189,75.71929624,72.63373392,3.085562325,101.5005612,0,101.5005612,2.258270248,99.24229091,1.102873966,4.333950477,1.977953749,-1.977953749,0.191903677,0.191903677,0.182970721,1.048355727,33.71872389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8183078,1.636109107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.759530156,32.41171995,70.57783796,34.04782906,540.486189,0,0.72895614,43.20104516,-0.72895614,136.7989548,0.981408768,0,601.0157226,34.04782906,623.2993458,3,16,4% -2018-03-22 01:00:00,74.5090803,258.8642487,202.6004903,558.7657915,53.36216263,375.4855857,322.2052011,53.28038462,51.75309655,1.527288075,50.73190059,0,50.73190059,1.609066089,49.1228345,1.300428774,4.518033455,3.565009457,-3.565009457,0,0,0.263386148,0.402266522,12.93827414,0.073644205,1,0.273476154,0,0.928425161,0.967187124,0.724496596,1,49.90719454,1.165762904,0.012172106,0.312029739,0.966062271,0.690558866,0.961238037,0.922476074,0.285950391,12.43676123,50.19314494,13.60252414,298.4766553,0,0.576637307,54.7856254,-0.576637307,125.2143746,0.963290383,0,337.7128366,13.60252414,346.6154165,3,17,3% -2018-03-22 02:00:00,86.1195661,268.3389806,17.60245909,103.2109406,10.61770155,50.42432139,39.99408794,10.43023345,10.29753868,0.132694772,4.588082878,0,4.588082878,0.320162877,4.267920001,1.503069979,4.683398723,13.9939613,-13.9939613,0,0,0.603194218,0.080040719,2.574384669,0.650710497,1,0.071338131,0,0.95433785,0.993099813,0.724496596,1,9.96675081,0.231956914,0.08501718,0.312029739,0.787351019,0.511847615,0.961238037,0.922476074,0.055317788,2.474596465,10.0220686,2.70655338,13.96951508,0,0.387498532,67.20105998,-0.387498532,112.79894,0.920967253,0,22.88753453,2.70655338,24.65891958,3,18,8% -2018-03-22 03:00:00,98.12697956,277.6146484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712638878,4.845289666,-6.205011361,6.205011361,1,0.408726873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16717349,80.37647972,-0.16717349,99.62352028,0.750909517,0,0,0,0,3,19,0% -2018-03-22 04:00:00,109.6692284,287.5054135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.914089123,5.017916083,-2.219344296,2.219344296,1,0.909683917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.060798905,93.48567036,0.060798905,86.51432964,0,0,0,0,0,3,20,0% -2018-03-22 05:00:00,120.5403662,298.9518963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103826273,5.217694896,-1.113048604,1.113048604,1,0.720496211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28405706,106.5024928,0.28405706,73.49750725,0,0.873979027,0,0,0,3,21,0% -2018-03-22 06:00:00,130.1153052,313.1589745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270940483,5.465655188,-0.535902519,0.535902519,1,0.621798418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487371691,119.1679763,0.487371691,60.83202367,0,0.947408896,0,0,0,3,22,0% -2018-03-22 07:00:00,137.3784831,331.4100087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397706851,5.784195827,-0.137449526,0.137449526,1,0.553658943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656873743,131.0618802,0.656873743,48.9381198,0,0.973881871,0,0,0,3,23,0% -2018-03-23 08:00:00,140.9358055,353.7921209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459793839,6.174837377,0.1934951,-0.1934951,1,0.497064079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780999515,141.3521814,0.780999515,38.64781863,0,0.985979474,0,0,0,3,0,0% -2018-03-23 09:00:00,139.7596978,17.32703328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.439266888,0.30241378,0.513148563,-0.513148563,1,0.442400117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85127862,148.3510127,0.85127862,31.64898735,0,0.991264823,0,0,0,3,1,0% -2018-03-23 10:00:00,134.2210604,37.85798979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34259943,0.66074657,0.870073577,-0.870073577,1,0.381362345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862911155,149.6450356,0.862911155,30.35496445,0,0.992056607,0,0,0,3,2,0% -2018-03-23 11:00:00,125.6746673,54.00649618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193436731,0.942591176,1.339029618,-1.339029618,1,0.301166139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815094799,144.5967364,0.815094799,35.40326357,0,0.988657442,0,0,0,3,3,0% -2018-03-23 12:00:00,115.3647048,66.69572956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013493939,1.164060078,2.105840905,-2.105840905,1,0.170033685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711079585,135.3228214,0.711079585,44.67717863,0,0.979684383,0,0,0,3,4,0% -2018-03-23 13:00:00,104.0966943,77.23975883,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816830057,1.348088105,3.950391596,-3.950391596,1,0,#DIV/0!,0,0,0.126944885,1,0.24793126,0,0.93219602,0.970957983,0.724496596,1,0,0,0.020484055,0.312029739,0.94355309,0.668049686,0.961238037,0.922476074,0,0,0,0,0,0,-0.557946574,123.9139082,0.557946574,56.08609175,0,0.960385685,0,0,0,3,5,0% -2018-03-23 14:00:00,92.36762567,86.70538494,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61211919,1.513294446,23.16514815,-23.16514815,1,0,#DIV/0!,0,0,0.774333605,1,0.043141512,0,0.95721033,0.995972293,0.724496596,1,0,0,0.096790838,0.312029739,0.76243001,0.486926606,0.961238037,0.922476074,0,0,0,0,0,0,-0.366125439,111.4768606,0.366125439,68.52313945,0,0.913434783,0,0,0,3,6,0% -2018-03-23 15:00:00,80.43232491,95.9482122,97.62692045,373.0985907,35.61329151,35.27537233,0,35.27537233,34.53941937,0.735952964,79.61795559,54.8733063,24.74464929,1.073872138,23.67077715,1.403808895,1.674612214,-5.33463152,5.33463152,0.557570592,0.557570592,0.364789664,0.529123883,17.01844294,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.20060367,0.778016708,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383348452,16.35877468,33.58395212,17.13679139,0,54.8733063,-0.147074547,98.45743014,0.147074547,81.54256986,0,0.710036349,33.58395212,56.09883347,70.29951665,3,7,109% -2018-03-23 16:00:00,68.84971174,105.7859718,306.5847448,668.2329312,65.47593307,119.4693825,53.65662512,65.81275741,63.50159211,2.311165308,76.30936185,0,76.30936185,1.974340962,74.33502089,1.201654159,1.846313511,-2.096810712,2.096810712,0.88872944,0.88872944,0.213565529,2.108922156,67.8301859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.04014573,1.430403306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.527906923,65.20095473,62.56805266,66.63135804,53.65662512,0,0.08029629,85.39440332,-0.08029629,94.60559668,0,0,62.56805266,66.63135804,106.1769439,3,8,70% -2018-03-23 17:00:00,57.83605407,117.1922653,502.9260185,789.9615628,82.3949627,323.4489725,239.7472532,83.70171933,79.91045057,3.791268765,124.424748,0,124.424748,2.48451213,121.9402359,1.00942957,2.045390887,-1.080599162,1.080599162,0.71494703,0.71494703,0.163831179,2.887610733,92.87548725,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.81296463,1.800020581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092064146,89.27545104,78.90502877,91.07547162,239.7472532,0,0.303492302,72.33251984,-0.303492302,107.6674802,0.885251175,0,291.1415665,91.07547162,350.7486411,3,9,20% -2018-03-23 18:00:00,48.03861274,131.4744358,661.2889837,849.1908221,93.49483452,526.0759321,430.4152361,95.66069598,90.6756203,4.985075689,163.1563844,0,163.1563844,2.81921422,160.3371702,0.83843196,2.294661788,-0.531093254,0.531093254,0.620975985,0.620975985,0.141382719,3.36274976,108.1575916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16085524,2.042511105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436300754,103.9651911,89.597156,106.0077022,430.4152361,0,0.506853377,59.54553886,-0.506853377,120.4544611,0.951352142,0,499.0736128,106.0077022,568.4535337,3,10,14% -2018-03-23 19:00:00,40.50936481,150.148447,768.3911376,878.6762975,100.3337197,697.4692416,594.3684967,103.1007449,97.30828789,5.792456965,189.3307593,0,189.3307593,3.025431842,186.3053274,0.707021794,2.620584767,-0.14617822,0.14617822,0.555151638,0.555151638,0.130576363,3.55215657,114.2495657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.53642762,2.191915071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.573525343,109.8210283,96.10995296,112.0129433,594.3684967,0,0.676436247,47.43421744,-0.676436247,132.5657826,0.976083204,0,676.2630597,112.0129433,749.5732908,3,11,11% -2018-03-23 20:00:00,36.76598475,173.5274294,816.1460517,889.8947742,103.2630439,818.8054073,712.5036715,106.3017358,100.1492822,6.152453679,200.997821,0,200.997821,3.113761774,197.8840592,0.641687487,3.028624985,0.174771178,-0.174771178,0.500266058,0.500266058,0.126525202,3.46687686,111.5066771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.26729937,2.255909806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511740483,107.1844594,98.77903985,109.4403692,712.5036715,0,0.800660586,36.80676993,-0.800660586,143.1932301,0.987551566,0,802.4131562,109.4403692,874.039689,3,12,9% -2018-03-23 21:00:00,37.98114443,198.2752458,801.067496,886.4637117,102.3449907,877.4589196,772.1612228,105.2976967,99.25891157,6.038785157,197.3141679,0,197.3141679,3.086079081,194.2280888,0.662896024,3.460555864,0.483631302,-0.483631302,0.447447866,0.447447866,0.127760758,3.128346427,100.6183747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4114413,2.235853789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266476337,96.71820898,97.67791763,98.95406277,772.1612228,0,0.871057904,29.41819154,-0.871057904,150.5818085,0.992598535,0,864.124016,98.95406277,928.887471,3,13,7% -2018-03-23 22:00:00,43.7327386,219.5593333,724.2701206,867.3237888,97.56601025,865.7928485,765.7089593,100.0838892,94.62403506,5.459854102,178.5496512,0,178.5496512,2.941975189,175.6076761,0.763280279,3.83203327,0.824835555,-0.824835555,0.389098502,0.389098502,0.134709423,2.573735316,82.78017493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.9562217,2.13145101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864662475,79.57145284,92.82088417,81.70290385,765.7089593,0,0.882840952,28.01301202,-0.882840952,151.986988,0.993364657,0,853.449102,81.70290385,906.9220185,3,14,6% -2018-03-23 23:00:00,52.50670046,235.9691183,591.4569965,825.8661567,88.77816104,780.3500118,689.7901872,90.5598246,86.10117192,4.458652672,146.0825856,0,146.0825856,2.676989112,143.4055964,0.916414802,4.118438048,1.264650091,-1.264650091,0.313885787,0.313885787,0.150100788,1.858687772,59.78178794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.76372147,1.939469499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346612964,57.46452848,84.11033443,59.40399798,689.7901872,0,0.835232418,33.35995307,-0.835232418,146.6400469,0.990136423,0,767.0967231,59.40399798,805.9754517,3,15,5% -2018-03-23 00:00:00,62.97810589,248.698908,413.0364369,743.4534792,75.26251743,619.9694808,543.8627629,76.10671796,72.99307484,3.113643128,102.4149087,0,102.4149087,2.26944259,100.1454661,1.099175304,4.340614791,1.960252359,-1.960252359,0.194930793,0.194930793,0.182217622,1.063709511,34.21255435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16371996,1.644203431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.77065392,32.88640858,70.93437388,34.53061201,543.8627629,0,0.731535702,42.98470766,-0.731535702,137.0152923,0.981650636,0,604.8176009,34.53061201,627.4171959,3,16,4% -2018-03-23 01:00:00,74.31907964,259.2306529,206.0283891,562.9959366,53.86193058,379.7693044,325.9783807,53.79092367,52.23779465,1.553129024,51.57810419,0,51.57810419,1.624135936,49.95396826,1.297112637,4.524428416,3.516038424,-3.516038424,0,0,0.261429654,0.406033984,13.05944866,0.066401531,1,0.277094319,0,0.927879953,0.966641916,0.724496596,1,50.36078946,1.176680957,0.011011334,0.312029739,0.969248755,0.693745351,0.961238037,0.922476074,0.289112113,12.55323879,50.64990157,13.72991975,304.3329171,0,0.579006631,54.61929533,-0.579006631,125.3807047,0.963645203,0,343.9188573,13.72991975,352.9048152,3,17,3% -2018-03-23 02:00:00,85.94327945,268.6970122,19.33850372,111.5671434,11.44579904,54.71709126,43.47064348,11.24644778,11.10066597,0.14578181,5.033977192,0,5.033977192,0.345133072,4.688844121,1.499993196,4.689647553,13.35595782,-13.35595782,0,0,0.591865803,0.086283268,2.775166492,0.636871965,1,0.07473351,0,0.953979285,0.992741248,0.724496596,1,10.74605342,0.250047735,0.083632089,0.312029739,0.790355812,0.514852408,0.961238037,0.922476074,0.059562444,2.667595591,10.80561586,2.917643326,15.78540937,0,0.38963661,67.06810992,-0.38963661,112.9318901,0.921675303,0,25.35463782,2.917643326,27.26417702,3,18,8% -2018-03-23 03:00:00,97.94031899,277.973313,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709381037,4.851549545,-6.331903172,6.331903172,1,0.387027095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.169354033,80.24973669,-0.169354033,99.75026331,0.7547605,0,0,0,0,3,19,0% -2018-03-23 04:00:00,109.4661562,287.8726169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910544845,5.024324991,-2.233325074,2.233325074,1,0.912074771,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058602165,93.35958151,0.058602165,86.64041849,0,0,0,0,0,3,20,0% -2018-03-23 05:00:00,120.3068752,299.3302006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099751085,5.224297551,-1.114941515,1.114941515,1,0.720819918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281765973,106.3656318,0.281765973,73.63436822,0,0.872547771,0,0,0,3,21,0% -2018-03-23 06:00:00,129.8358782,313.5345532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266063561,5.472210272,-0.534214805,0.534214805,1,0.621509802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484914577,119.0068759,0.484914577,60.99312411,0,0.946889056,0,0,0,3,22,0% -2018-03-23 07:00:00,137.0416255,331.7305874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391827577,5.789790979,-0.133926484,0.133926484,1,0.553056467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654190339,130.8582856,0.654190339,49.14171438,0,0.973569645,0,0,0,3,23,0% -2018-03-24 08:00:00,140.549538,353.9628934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4530522,6.17781792,0.198556832,-0.198556832,1,0.496198471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778045134,141.0819365,0.778045134,38.91806346,0,0.985736376,0,0,0,3,0,0% -2018-03-24 09:00:00,139.3590956,17.29690438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432275061,0.301887932,0.520108888,-0.520108888,1,0.441209831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848027242,147.9977452,0.848027242,32.00225476,0,0.99103963,0,0,0,3,1,0% -2018-03-24 10:00:00,133.8399111,37.68441648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335947119,0.657717144,0.880051355,-0.880051355,1,0.379656044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859357233,149.2444894,0.859357233,30.75551055,0,0.991816979,0,0,0,3,2,0% -2018-03-24 11:00:00,125.3233774,53.7688614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187305566,0.938443666,1.354884551,-1.354884551,1,0.298454785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811253656,144.2185985,0.811253656,35.78140153,0,0.988366996,0,0,0,3,3,0% -2018-03-24 12:00:00,115.0387767,66.43750766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007805421,1.159553256,2.136586482,-2.136586482,1,0.164775882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706986374,134.9902444,0.706986374,45.00975555,0,0.979277279,0,0,0,3,4,0% -2018-03-24 13:00:00,103.7874353,76.97674158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811432468,1.343497588,4.044954208,-4.044954208,1,0,#DIV/0!,0,0,0.13909935,1,0.242361982,0,0.932999754,0.971761717,0.724496596,1,0,0,0.022324419,0.312029739,0.938642546,0.663139142,0.961238037,0.922476074,0,0,0,0,0,0,-0.553653866,123.6180464,0.553653866,56.38195361,0,0.959690868,0,0,0,3,5,0% -2018-03-24 14:00:00,92.06603958,86.440925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60685552,1.50867875,26.58673811,-26.58673811,1,0,#DIV/0!,0,0,0.800655695,1,0.037595015,0,0.95775315,0.996515113,0.724496596,1,0,0,0.099166216,0.312029739,0.75753691,0.482033506,0.961238037,0.922476074,0,0,0,0,0,0,-0.361699616,111.204612,0.361699616,68.79538801,0,0.911763746,0,0,0,3,6,0% -2018-03-24 15:00:00,80.13226498,95.68151723,102.633095,384.6108889,36.72066225,36.38709042,0,36.38709042,35.61339879,0.773691622,80.85086126,54.85901569,25.99184557,1.107263452,24.88458212,1.398571861,1.669957509,-5.180964166,5.180964166,0.583849257,0.583849257,0.357785783,0.566916406,18.23398037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.23295354,0.802208601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.410729006,17.5271955,34.64368255,18.3294041,0,54.85901569,-0.142635108,98.20035742,0.142635108,81.79964258,0,0.699455168,34.64368255,56.70082613,71.75323924,3,7,107% -2018-03-24 16:00:00,68.53745431,105.5169893,312.2591862,672.7664176,66.09870803,123.4737607,57.01423092,66.45952975,64.10558811,2.353941644,77.70397483,0,77.70397483,1.993119925,75.71085491,1.196204239,1.841618879,-2.070283174,2.070283174,0.884192964,0.884192964,0.211678986,2.139042967,68.79897472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.62072966,1.444008601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549729348,66.13219139,63.17045901,67.5762,57.01423092,0,0.084745953,85.13858369,-0.084745953,94.86141631,0,0,63.17045901,67.5762,107.3977304,3,8,70% -2018-03-24 17:00:00,57.50353774,116.9278399,508.5392906,792.3016138,82.87720414,328.1195255,243.9077909,84.21173463,80.37815065,3.833583981,125.8002922,0,125.8002922,2.499053489,123.3012387,1.003626065,2.040775793,-1.072114039,1.072114039,0.713495988,0.713495988,0.162971093,2.914244003,93.7321048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.26253574,1.810555746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.11135986,90.09886441,79.3738956,91.90942015,243.9077909,0,0.307847146,72.07046267,-0.307847146,107.9295373,0.887581733,0,295.8619953,91.90942015,356.0148726,3,9,20% -2018-03-24 18:00:00,47.67711088,131.2414032,666.6830423,850.6755435,93.91644839,530.8380896,434.7278302,96.11025934,91.08452096,5.025738381,164.4769496,0,164.4769496,2.831927434,161.6450222,0.832122563,2.2905946,-0.528320163,0.528320163,0.620501759,0.620501759,0.140871212,3.387157374,108.9426244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55390611,2.051721786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.453983987,104.7197944,90.0078901,106.7715162,434.7278302,0,0.511038355,59.26698119,-0.511038355,120.7330188,0.952159986,0,503.9383347,106.7715162,573.8181566,3,10,14% -2018-03-24 19:00:00,40.11799241,150.0156765,773.4986217,879.7726346,100.7196922,702.102742,598.5891609,103.5135812,97.68262182,5.830959338,190.5807664,0,190.5807664,3.037070335,187.5436961,0.700191057,2.618267484,-0.146091518,0.146091518,0.555136811,0.555136811,0.13021315,3.574750368,114.97626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.89625163,2.200347119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.589894473,110.5195544,96.48614611,112.7199015,598.5891609,0,0.680390748,47.12581499,-0.680390748,132.874185,0.976512816,0,681.0161333,112.7199015,754.7890544,3,11,11% -2018-03-24 20:00:00,36.36731551,173.5947595,820.9378403,890.815968,103.6241534,823.2074449,716.5193658,106.6880791,100.4995029,6.188576206,202.1705344,0,202.1705344,3.124650558,199.0458839,0.634729396,3.029800117,0.173089291,-0.173089291,0.500553678,0.500553678,0.126226553,3.487863386,112.1816759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.60394485,2.263798693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.52694515,107.833294,99.13089,110.0970927,716.5193658,0,0.804340505,36.45338772,-0.804340505,143.5466123,0.987837272,0,806.9354257,110.0970927,878.9917709,3,12,9% -2018-03-24 21:00:00,37.61885473,198.554426,805.5417907,887.3417319,102.6883292,881.5899387,775.9255272,105.6644115,99.59189722,6.072514281,198.4093654,0,198.4093654,3.096432006,195.3129334,0.656572876,3.465428477,0.480299913,-0.480299913,0.448017567,0.448017567,0.127477346,3.147887092,101.2468697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.73151977,2.243354447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280633483,97.32234225,98.01215325,99.56569669,775.9255272,0,0.874438223,29.02144093,-0.874438223,150.9785591,0.992820432,0,868.3668702,99.56569669,933.5306274,3,13,8% -2018-03-24 22:00:00,43.43117978,219.9419445,728.4474514,868.2837086,97.89925145,869.6661239,769.2275515,100.4385724,94.94722781,5.491344586,179.5725419,0,179.5725419,2.952023641,176.6205183,0.758017085,3.838711094,0.819372664,-0.819372664,0.390032712,0.390032712,0.134394391,2.591963483,83.36645543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26688686,2.138731079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87786872,80.13500795,93.14475558,82.27373903,769.2275515,0,0.885917292,27.63538425,-0.885917292,152.3646157,0.993561323,0,857.4194993,82.27373903,911.266016,3,14,6% -2018-03-24 23:00:00,52.25925737,236.3668439,595.3735749,827.1009583,89.11374712,784.0429226,693.1281063,90.91481634,86.42663885,4.488177494,147.0423245,0,147.0423245,2.68710827,144.3552162,0.912096106,4.125379669,1.255548094,-1.255548094,0.31544232,0.31544232,0.149677028,1.875631272,60.32674916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.07657266,1.946800795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.358888472,57.98836593,84.43546113,59.93516672,693.1281063,0,0.838021162,33.0682546,-0.838021162,146.9317454,0.990335636,0,770.8649248,59.93516672,810.0912928,3,15,5% -2018-03-24 00:00:00,62.76782013,249.0819242,416.7267018,745.4104533,75.62882321,623.6749733,547.1851763,76.48979705,73.34833515,3.141461904,103.3207016,0,103.3207016,2.28048806,101.0402135,1.095505126,4.347299685,1.942854964,-1.942854964,0.197905923,0.197905923,0.181483027,1.079005409,34.70452301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.50520968,1.652205837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781735746,33.35930757,71.28694543,35.0115134,547.1851763,0,0.734072314,42.77111414,-0.734072314,137.2288859,0.98188682,0,608.5608578,35.0115134,631.4751931,3,16,4% -2018-03-24 01:00:00,74.13025794,259.5974549,209.4372343,567.130633,54.35463437,383.9901015,329.6956335,54.29446794,52.7156416,1.578826339,52.419475,0,52.419475,1.638992774,50.78048223,1.293817076,4.530830317,3.468342696,-3.468342696,0,0,0.259527082,0.409748193,13.1789104,0.059237769,1,0.280709033,0,0.927332534,0.966094497,0.724496596,1,50.80724708,1.187444685,0.009855619,0.312029739,0.972431828,0.696928424,0.961238037,0.922476074,0.292252338,12.66806996,51.09949942,13.85551465,310.1651998,0,0.581339844,54.45516461,-0.581339844,125.5448354,0.963991789,0,350.0962052,13.85551465,359.1643624,3,17,3% -2018-03-24 02:00:00,85.76734947,269.0549061,21.13902897,120.0236034,12.28050518,59.0891956,47.01963803,12.06955757,11.91020264,0.15935493,5.495704853,0,5.495704853,0.370302542,5.125402312,1.496922639,4.69589398,12.77161221,-12.77161221,0,0,0.580939891,0.092575635,2.977550661,0.62319898,1,0.078139228,0,0.953616906,0.992378869,0.724496596,1,11.53172562,0.268282931,0.082249563,0.312029739,0.793370345,0.517866941,0.961238037,0.922476074,0.06383649,2.862134952,11.59556211,3.130417883,17.71704756,0,0.391753261,66.9363635,-0.391753261,113.0636365,0.922368644,0,27.93721125,3.130417883,29.98600714,3,18,7% -2018-03-24 03:00:00,97.75393932,278.33136,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706128098,4.857798643,-6.46439132,6.46439132,1,0.364370288,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171517122,80.12396057,-0.171517122,99.87603943,0.758483914,0,0,0,0,3,19,0% -2018-03-24 04:00:00,109.2629477,288.2386183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906998188,5.030712921,-2.247522574,2.247522574,1,0.914502686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056411809,93.23387529,0.056411809,86.76612471,0,0,0,0,0,3,20,0% -2018-03-24 05:00:00,120.0729248,299.7064546,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09566788,5.230864421,-1.116838739,1.116838739,1,0.721144362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279470153,106.2285844,0.279470153,73.77141564,0,0.871090018,0,0,0,3,21,0% -2018-03-24 06:00:00,129.5559002,313.9069205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261177024,5.478709307,-0.532497947,0.532497947,1,0.621216202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482442338,118.8450368,0.482442338,61.15496316,0,0.946360671,0,0,0,3,22,0% -2018-03-24 07:00:00,136.7045487,332.0471666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385944477,5.795316328,-0.130361108,0.130361108,1,0.552446752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651482857,130.6534964,0.651482857,49.34650356,0,0.97325201,0,0,0,3,23,0% -2018-03-25 08:00:00,140.1636579,354.1312174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446317321,6.180755728,0.203675112,-0.203675112,1,0.495323194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77505978,140.8104528,0.77505978,39.18954721,0,0.985488847,0,0,0,3,0,0% -2018-03-25 09:00:00,138.9590265,17.26786313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425292539,0.301381066,0.527150479,-0.527150479,1,0.440005648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844740532,147.6441466,0.844740532,32.35585336,0,0.990810227,0,0,0,3,1,0% -2018-03-25 10:00:00,133.4589264,37.51376547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329297682,0.654738722,0.890162291,-0.890162291,1,0.377926972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855766456,148.8445129,0.855766456,31.15548708,0,0.991572844,0,0,0,3,2,0% -2018-03-25 11:00:00,124.9719524,53.53400471,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181172041,0.934344644,1.371004916,-1.371004916,1,0.295698041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807377077,143.8404507,0.807377077,36.15954933,0,0.988071068,0,0,0,3,3,0% -2018-03-25 12:00:00,114.7126636,66.18134407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002113674,1.155082357,2.168066585,-2.168066585,1,0.159392468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702861991,134.6570753,0.702861991,45.34292469,0,0.978862279,0,0,0,3,4,0% -2018-03-25 13:00:00,103.4781181,76.71508155,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806033865,1.338930759,4.143696396,-4.143696396,1,0,#DIV/0!,0,0,0.151435016,1,0.236802564,0,0.933795445,0.972557408,0.724496596,1,0,0,0.024172002,0.312029739,0.933739489,0.658236085,0.961238037,0.922476074,0,0,0,0,0,0,-0.549336803,123.3215268,0.549336803,56.67847322,0,0.958981157,0,0,0,3,5,0% -2018-03-25 14:00:00,91.76461575,86.17721622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601594682,1.504076163,31.17377137,-31.17377137,1,0,#DIV/0!,0,0,0.827612219,1,0.032067253,0,0.958286829,0.997048792,0.724496596,1,0,0,0.10155387,0.312029739,0.752664204,0.4771608,0.961238037,0.922476074,0,0,0,0,0,0,-0.357258339,110.9319164,0.357258339,69.06808358,0,0.910045254,0,0,0,3,6,0% -2018-03-25 15:00:00,79.83248755,95.41499748,107.6769595,395.8150807,37.80504593,37.47679871,0,37.47679871,36.66508431,0.811714404,81.94451068,54.69702359,27.24748709,1.13996162,26.10752547,1.393339758,1.665305862,-5.036285469,5.036285469,0.608590771,0.608590771,0.351096893,0.60554977,19.47656216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.24387366,0.825898313,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.438718747,18.72161237,35.68259241,19.54751069,0,54.69702359,-0.138188326,97.94302604,0.138188326,82.05697396,0,0.688174936,35.68259241,57.18863142,73.1114079,3,7,105% -2018-03-25 16:00:00,68.22585332,105.2475445,317.9159586,677.1883759,66.71371527,127.4969749,60.39833953,67.09863539,64.70205061,2.396584784,79.09406952,0,79.09406952,2.011664663,77.08240486,1.190765775,1.836916181,-2.044486361,2.044486361,0.879781449,0.879781449,0.209847016,2.168930686,69.76026652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19407211,1.4574442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.571382899,67.05622164,63.76545501,68.51366584,60.39833953,0,0.089189865,84.88299768,-0.089189865,95.11700232,0.489398185,0,93.32429272,68.51366584,138.1651167,3,8,48% -2018-03-25 17:00:00,57.17187377,116.6621925,514.1191883,794.5908923,83.35495788,332.7764324,248.0592864,84.71714596,80.84149835,3.875647607,127.167609,0,127.167609,2.513459527,124.6541495,0.997837437,2.036139371,-1.063779513,1.063779513,0.7120707,0.7120707,0.162131583,2.940659766,94.58172652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.70792317,1.820992871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.13049799,90.91555312,79.83842116,92.73654599,248.0592864,0,0.31218491,71.80904723,-0.31218491,108.1909528,0.889838511,0,300.5711273,92.73654599,361.2653419,3,9,20% -2018-03-25 18:00:00,47.31647717,131.0064542,672.0337704,852.129117,94.33428894,535.5692105,439.013374,96.5558365,91.48976207,5.06607443,165.786895,0,165.786895,2.844526868,162.9423682,0.825828317,2.286493967,-0.525579571,0.525579571,0.62003309,0.62003309,0.140371352,3.411340303,109.7204305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.94343928,2.060850033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.471504437,105.4674513,90.41494372,107.5283013,439.013374,0,0.515195837,58.98945407,-0.515195837,121.0105459,0.952949526,0,508.7725306,107.5283013,579.1476532,3,10,14% -2018-03-25 19:00:00,39.72729171,149.8814599,778.5561331,880.8455786,101.1020237,706.6929332,602.7704236,103.9225096,98.05342464,5.869084995,191.8185473,0,191.8185473,3.048599041,188.7699483,0.693372043,2.615924962,-0.145998157,0.145998157,0.555120845,0.555120845,0.129858361,3.597115962,115.6956144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.25268141,2.208699627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60609827,111.2110252,96.85877968,113.4197248,602.7704236,0,0.684308849,46.81872378,-0.684308849,133.1812762,0.976933577,0,685.7254455,113.4197248,759.956387,3,11,11% -2018-03-25 20:00:00,35.96932664,173.6638369,825.6761907,891.7168278,103.9816284,827.5573731,720.4868786,107.0704945,100.8461986,6.224295893,203.3301815,0,203.3301815,3.135429747,200.1947518,0.62778318,3.031005746,0.171434286,-0.171434286,0.5008367,0.5008367,0.125935118,3.50862868,112.8495592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.93720201,2.271608179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541989535,108.4752887,99.47919154,110.7468969,720.4868786,0,0.807977214,36.10123201,-0.807977214,143.898768,0.988117067,0,811.4045727,110.7468969,883.8862018,3,12,9% -2018-03-25 21:00:00,37.25793259,198.8382759,809.9624406,888.1998244,103.0280421,885.6633225,779.6361169,106.0272055,99.92136654,6.105839007,199.4914467,0,199.4914467,3.106675604,196.3847711,0.650273596,3.470382593,0.477013444,-0.477013444,0.448579586,0.448579586,0.127201012,3.167225822,101.8688697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.04821821,2.250775899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294644327,97.92023234,98.34286254,100.1710082,779.6361169,0,0.877771078,28.62535228,-0.877771078,151.3746477,0.99303754,0,872.5507941,100.1710082,938.1107156,3,13,8% -2018-03-25 22:00:00,43.13159296,220.3285809,732.5741843,869.2216736,98.22889091,873.4794298,772.6900487,100.7893811,95.26692742,5.522453642,180.5830559,0,180.5830559,2.961963487,177.6210924,0.752788309,3.845459173,0.813981281,-0.813981281,0.390954692,0.390954692,0.134087295,2.610021656,83.94726834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.57419429,2.145932463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890951805,80.69330742,93.4651461,82.83923988,772.6900487,0,0.888944756,27.2590565,-0.888944756,152.7409435,0.993753535,0,861.3286136,82.83923988,915.5452393,3,14,6% -2018-03-25 23:00:00,52.01379876,236.7668552,599.2457553,828.3079394,89.44567801,787.6762319,696.4103035,91.26592842,86.74856079,4.517367626,147.9911884,0,147.9911884,2.697117211,145.2940712,0.907812045,4.132361182,1.246573583,-1.246573583,0.316977052,0.316977052,0.149263766,1.892450109,60.86770078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38601628,1.954052238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371073662,58.5083492,84.75708994,60.46240144,696.4103035,0,0.84076256,32.77926812,-0.84076256,147.2207319,0.990530178,0,774.5725116,60.46240144,814.1439441,3,15,5% -2018-03-25 00:00:00,62.55917937,249.4659688,420.3820176,747.3241895,75.99097036,627.3221377,550.4535582,76.86857945,73.69956223,3.169017219,104.2178953,0,104.2178953,2.291408133,101.9264872,1.091863657,4.354002528,1.92575247,-1.92575247,0.200830622,0.200830622,0.180766463,1.094241502,35.19456813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.84282251,1.660117392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792774243,33.83035758,71.63559676,35.49047497,550.4535582,0,0.736565959,42.56029627,-0.736565959,137.4397037,0.982117417,0,612.2456234,35.49047497,635.4734295,3,16,4% -2018-03-25 01:00:00,73.94261695,259.9645156,212.8267216,571.1724923,54.8404426,388.1486701,333.3574915,54.79117864,53.18680092,1.604377726,53.25594435,0,53.25594435,1.653641684,51.60230267,1.290542123,4.537236735,3.421869101,-3.421869101,0,0,0.25767649,0.413410421,13.29670023,0.052151021,1,0.28432052,0,0.926782886,0.965544849,0.724496596,1,51.24672583,1.198057771,0.00870483,0.312029739,0.975611709,0.700108305,0.961238037,0.922476074,0.295371861,12.78129403,51.54209769,13.9793518,315.9725579,0,0.58363716,54.29323012,-0.58363716,125.7067699,0.964330335,0,356.2440203,13.9793518,365.3932265,3,17,3% -2018-03-25 02:00:00,85.59180415,269.4125312,23.00050569,128.5544624,13.11959755,63.52834555,50.63096474,12.89738081,12.72399328,0.173387527,5.972343169,0,5.972343169,0.395604272,5.576738896,1.493858795,4.702135715,12.23444888,-12.23444888,0,0,0.570404744,0.098901068,3.18099832,0.609689122,1,0.081555119,0,0.953250712,0.992012675,0.724496596,1,12.3216597,0.286613949,0.080869655,0.312029739,0.796394412,0.520891008,0.961238037,0.922476074,0.068129231,3.057696581,12.38978893,3.344310529,19.76181628,0,0.393848364,66.80583117,-0.393848364,113.1941688,0.923047588,0,30.63088577,3.344310529,32.81967012,3,18,7% -2018-03-25 03:00:00,97.5678412,278.6886602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.702880073,4.864034708,-6.60288483,6.60288483,1,0.340686502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173663206,79.99912568,-0.173663206,100.0008743,0.762086392,0,0,0,0,3,19,0% -2018-03-25 04:00:00,109.0596137,288.6032868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903449339,5.037077586,-2.261948285,2.261948285,1,0.916969628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054227426,93.10852742,0.054227426,86.89147258,0,0,0,0,0,3,20,0% -2018-03-25 05:00:00,119.8385441,300.0805263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091577165,5.237393204,-1.118743605,1.118743605,1,0.721470114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277169331,106.0913339,0.277169331,73.90866607,0,0.869604861,0,0,0,3,21,0% -2018-03-25 06:00:00,129.2754263,314.2759578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256281832,5.485150224,-0.530754046,0.530754046,1,0.620917977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.479954931,118.6824585,0.479954931,61.31754146,0,0.945823552,0,0,0,3,22,0% -2018-03-25 07:00:00,136.3673348,332.3596654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380058985,5.800770461,-0.126755138,0.126755138,1,0.551830095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648751557,130.4475406,0.648751557,49.55245941,0,0.972928894,0,0,0,3,23,0% -2018-03-26 08:00:00,139.7782652,354.2970165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43959095,6.183649468,0.208848337,-0.208848337,1,0.49443852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044071,140.5378012,0.772044071,39.46219883,0,0.985236858,0,0,0,3,0,0% -2018-03-26 09:00:00,138.559612,17.2397795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418321439,0.300890915,0.534271843,-0.534271843,1,0.438787823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841419492,147.2903194,0.841419492,32.70968057,0,0.990576608,0,0,0,3,1,0% -2018-03-26 10:00:00,133.0782502,37.34591965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322653628,0.65180926,0.900405291,-0.900405291,1,0.376175316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852140214,148.4452195,0.852140214,31.55478046,0,0.99132421,0,0,0,3,2,0% -2018-03-26 11:00:00,124.6205439,53.30186326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175038806,0.930293011,1.387391746,-1.387391746,1,0.292895728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803466817,143.462446,0.803466817,36.53755397,0,0.987769676,0,0,0,3,3,0% -2018-03-26 12:00:00,114.3865156,65.92721569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996421316,1.150646981,2.200296935,-2.200296935,1,0.153880753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698708506,134.3234789,0.698708506,45.67652114,0,0.9784394,0,0,0,3,4,0% -2018-03-26 13:00:00,103.1688888,76.45477664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800636796,1.334387581,4.246866153,-4.246866153,1,0,#DIV/0!,0,0,0.163951736,1,0.231255181,0,0.934582796,0.973344759,0.724496596,1,0,0,0.026026213,0.312029739,0.928845811,0.653342407,0.961238037,0.922476074,0,0,0,0,0,0,-0.5449977,123.0245065,0.5449977,56.97549352,0,0.958256494,0,0,0,3,5,0% -2018-03-26 14:00:00,91.46349716,85.91426574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596339171,1.499486812,37.64122394,-37.64122394,1,0,#DIV/0!,0,0,0.855216716,1,0.02656037,0,0.958811222,0.997573185,0.724496596,1,0,0,0.103953034,0.312029739,0.747814164,0.47231076,0.961238037,0.922476074,0,0,0,0,0,0,-0.352804082,110.6589215,0.352804082,69.3410785,0,0.908278284,0,0,0,3,6,0% -2018-03-26 15:00:00,79.53314383,95.14866155,112.7525663,406.711786,38.86657318,38.54457907,0,38.54457907,37.6946026,0.849976472,82.90250241,54.39236671,28.5101357,1.171970584,27.33816511,1.388115224,1.660657423,-4.899883232,4.899883232,0.631916928,0.631916928,0.344706772,0.644960154,20.74413559,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.2334858,0.849088698,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467271436,19.94005217,36.70075724,20.78914087,0,54.39236671,-0.133736883,97.68558633,0.133736883,82.31441367,0,0.67613156,36.70075724,57.56553662,74.37624964,3,7,103% -2018-03-26 16:00:00,67.91505198,104.9776392,323.5520223,681.500409,67.32092272,131.535862,63.80584167,67.73002033,65.29094851,2.439071813,80.47890798,0,80.47890798,2.029974208,78.44893377,1.185341269,1.832205446,-2.019401082,2.019401082,0.875491613,0.875491613,0.208068311,2.19857412,70.71370125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.76014317,1.470709403,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592859466,67.97269937,64.35300264,69.44340877,63.80584167,0,0.093625537,84.62778373,-0.093625537,95.37221627,0.515957668,0,97.27411594,69.44340877,142.7234381,3,8,47% -2018-03-26 17:00:00,56.84120706,116.3953034,519.6631415,796.8297496,83.82812012,337.4170474,252.1992141,85.21783327,81.300393,3.917440267,128.5260722,0,128.5260722,2.527727114,125.9983451,0.992066214,2.031481277,-1.055596006,1.055596006,0.710671238,0.710671238,0.161312422,2.966848165,95.42403545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.14903017,1.83132969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.149471396,91.72521251,80.29850156,93.5565422,252.1992141,0,0.316503261,71.54841185,-0.316503261,108.4515882,0.892023745,0,305.2661889,93.5565422,366.4970746,3,9,20% -2018-03-26 18:00:00,46.95685598,130.7695238,677.338988,853.5516631,94.74825646,540.266951,443.2696366,96.99731435,91.89124695,5.106067401,167.0856891,0,167.0856891,2.857009516,164.2286796,0.819551743,2.282358752,-0.522873347,0.522873347,0.619570298,0.619570298,0.139883069,3.435290521,110.4907519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32936182,2.069893669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488856288,106.2079134,90.81821811,108.2778071,443.2696366,0,0.519323734,58.71310018,-0.519323734,121.2868998,0.953720942,0,513.5737534,108.2778071,584.4394126,3,10,14% -2018-03-26 19:00:00,39.33739515,149.7456803,783.5619069,881.8952224,101.4806331,711.2378291,606.9103909,104.3274382,98.42061755,5.906820632,193.0436716,0,193.0436716,3.060015511,189.9836561,0.686567065,2.613555162,-0.145899954,0.145899954,0.555104051,0.555104051,0.129511953,3.619247189,116.4074307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.6056412,2.216970821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.622132268,111.8952501,97.22777347,114.112221,606.9103909,0,0.688188773,46.51309499,-0.688188773,133.486905,0.977345516,0,690.3889228,114.112221,765.0730892,3,11,11% -2018-03-26 20:00:00,35.57212885,173.734568,830.3597671,892.5974753,104.3354098,831.8536298,724.4047149,107.4489149,101.1893122,6.25960267,204.4764367,0,204.4764367,3.146097562,201.3303391,0.62085077,3.032240236,0.169804448,-0.169804448,0.501115419,0.501115419,0.125650849,3.529168304,113.5101841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26701584,2.279336974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556870423,109.1103065,99.82388627,111.3896435,724.4047149,0,0.811569308,35.75045841,-0.811569308,144.2495416,0.988390967,0,815.8189631,111.3896435,888.721257,3,12,9% -2018-03-26 21:00:00,36.89847106,199.126716,814.3285252,889.0381724,103.3640938,889.6779734,783.291936,106.3860374,100.247285,6.138752396,200.5601877,0,200.5601877,3.1168088,197.4433789,0.643999809,3.475416823,0.473770097,-0.473770097,0.449134231,0.449134231,0.126931687,3.186359658,102.4842796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.36150339,2.258117365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308506725,98.51178776,98.67001012,100.7699051,783.291936,0,0.88105546,28.2300538,-0.88105546,151.7699462,0.993249884,0,876.6746343,100.7699051,942.6265218,3,13,8% -2018-03-26 22:00:00,42.83404088,220.7191016,736.6497713,870.1379751,98.55491693,877.2321446,776.0958449,101.1362997,95.58312256,5.553177138,181.5810601,0,181.5810601,2.971794374,178.6092657,0.747595045,3.852275045,0.80865915,-0.80865915,0.39186483,0.39186483,0.133788024,2.627907987,84.52255423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87813308,2.153054908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.903910391,81.2462941,93.78204347,83.39934901,776.0958449,0,0.891922738,26.88413947,-0.891922738,153.1158605,0.993941333,0,865.1757819,83.39934901,919.7589878,3,14,6% -2018-03-26 23:00:00,51.77035356,237.1689888,603.0732885,829.4876046,89.77396884,791.2497836,699.63661,91.61317363,87.06695245,4.546221188,148.9291173,0,148.9291173,2.707016391,146.2221009,0.903563125,4.139379738,1.237722873,-1.237722873,0.318490612,0.318490612,0.148860794,1.909143041,61.40460284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.69206644,1.96122416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383167634,59.02443989,85.07523408,60.98566405,699.63661,0,0.843456377,32.49307528,-0.843456377,147.5069247,0.990720111,0,778.2192943,60.98566405,818.1331917,3,15,5% -2018-03-26 00:00:00,62.35218999,249.8508878,424.0023185,749.1957148,76.34901584,630.9112825,553.6681626,77.24311989,74.04681132,3.196308576,105.1064756,0,105.1064756,2.302204526,102.8042711,1.088251011,4.360720631,1.90893573,-1.90893573,0.203706454,0.203706454,0.180067449,1.109416336,35.68264297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17661155,1.667939342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.803768359,34.29951368,71.9803799,35.96745302,553.6681626,0,0.739016724,42.35227725,-0.739016724,137.6477228,0.982342532,0,615.8721649,35.96745302,639.4121435,3,16,4% -2018-03-26 01:00:00,73.75615229,260.3316944,216.1966743,575.1241772,55.31953212,392.2458527,336.9646267,55.28122597,53.65144412,1.629781852,54.08747472,0,54.08747472,1.668088001,52.41938671,1.287287701,4.543645214,3.376566339,-3.376566339,0,0,0.255875962,0.417022,13.41286103,0.045139285,1,0.287929088,0,0.926230975,0.964992938,0.724496596,1,51.67939146,1.208524078,0.007558814,0.312029739,0.978788689,0.703285284,0.961238037,0.922476074,0.298471533,12.8929522,51.97786299,14.10147628,321.7542843,0,0.585898907,54.13348093,-0.585898907,125.8665191,0.964661046,0,362.3616874,14.10147628,371.5908216,3,17,3% -2018-03-26 02:00:00,85.41666324,269.7697551,24.91953917,137.136292,13.9611112,68.0232546,54.2952684,13.7279862,13.54013219,0.187854012,6.463009795,0,6.463009795,0.420979014,6.042030781,1.49080201,4.708370448,11.73897493,-11.73897493,0,0,0.560247567,0.105244753,3.385033047,0.596339486,1,0.084981149,0,0.952880685,0.991642649,0.724496596,1,13.11398848,0.304997862,0.079492364,0.312029739,0.799427925,0.523924521,0.961238037,0.922476074,0.072431342,3.253822521,13.18641982,3.558820384,21.91685594,0,0.395921952,66.67651375,-0.395921952,113.3234863,0.923712484,0,33.43129325,3.558820384,35.76047001,3,18,7% -2018-03-26 03:00:00,97.38202058,279.0450838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699636891,4.870255474,-6.747837389,6.747837389,1,0.315898155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175792835,79.87520049,-0.175792835,100.1247995,0.765574301,0,0,0,0,3,19,0% -2018-03-26 04:00:00,108.8561609,288.9664906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89989842,5.043416689,-2.276614863,2.276614863,1,0.91947776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.052048519,92.98350859,0.052048519,87.01649141,0,0,0,0,0,3,20,0% -2018-03-26 05:00:00,119.6037587,300.4522832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087479387,5.243881587,-1.120659805,1.120659805,1,0.721797803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274863162,105.9538597,0.274863162,74.04614035,0,0.868091301,0,0,0,3,21,0% -2018-03-26 06:00:00,128.9945088,314.6415462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378896,5.491530944,-0.528985402,0.528985402,1,0.620615521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477452261,118.5191369,0.477452261,61.48086305,0,0.945277488,0,0,0,3,22,0% -2018-03-26 07:00:00,136.0300633,332.668001,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374172486,5.806151934,-0.123110459,0.123110459,1,0.551206818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645996668,130.2404434,0.645996668,49.75955662,0,0.97260022,0,0,0,3,23,0% -2018-03-27 08:00:00,139.3934581,354.4602108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432874799,6.186497747,0.214074769,-0.214074769,1,0.493544748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768998614,140.2640502,0.768998614,39.73594976,0,0.984980377,0,0,0,3,0,0% -2018-03-27 09:00:00,138.1609718,17.21252008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.411363856,0.300415148,0.541471338,-0.541471338,1,0.437556637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838065138,146.9363635,0.838065138,33.06363654,0,0.990338766,0,0,0,3,1,0% -2018-03-27 10:00:00,132.6980254,37.18075686,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316017454,0.648926626,0.910779069,-0.910779069,1,0.374401296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848479931,148.0467212,0.848479931,31.95327883,0,0.991071087,0,0,0,3,2,0% -2018-03-27 11:00:00,124.269304,53.07236793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168908514,0.926287562,1.404045813,-1.404045813,1,0.290047714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799524678,143.0847364,0.799524678,36.91526365,0,0.987462843,0,0,0,3,3,0% -2018-03-27 12:00:00,114.0604838,65.67509336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990730989,1.146246616,2.233293262,-2.233293262,1,0.148238049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694528046,133.9896205,0.694528046,46.01037948,0,0.978008667,0,0,0,3,4,0% -2018-03-27 13:00:00,102.8598952,76.19581933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79524384,1.329867924,4.354730187,-4.354730187,1,0,#DIV/0!,0,0,0.176649132,1,0.225722033,0,0.935361519,0.974123482,0.724496596,1,0,0,0.027886433,0.312029739,0.923963435,0.648460031,0.961238037,0.922476074,0,0,0,0,0,0,-0.540638933,122.7271444,0.540638933,57.27285562,0,0.957516834,0,0,0,3,5,0% -2018-03-27 14:00:00,91.16282862,85.65207597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591091515,1.494910737,47.43910411,-47.43910411,1,0,#DIV/0!,0,0,0.883482624,1,0.021076535,0,0.959326194,0.998088158,0.724496596,1,0,0,0.106362902,0.312029739,0.742989092,0.467485688,0.961238037,0.922476074,0,0,0,0,0,0,-0.348339372,110.3857773,0.348339372,69.61422273,0,0.906461818,0,0,0,3,6,0% -2018-03-27 15:00:00,79.23438594,94.88251376,117.8541391,417.3027075,39.90543057,39.59056889,0,39.59056889,38.7021346,0.888434283,83.72874957,53.95035311,29.77839647,1.203295967,28.5751005,1.382900915,1.656012268,-4.771119411,4.771119411,0.653936838,0.653936838,0.338600162,0.685084007,22.03465664,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.20196389,0.871783832,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.496341031,21.18055009,37.69830492,22.05233392,0,53.95035311,-0.129283496,97.42819029,0.129283496,82.57180971,0,0.663253034,37.69830492,57.8350693,75.55020108,3,7,100% -2018-03-27 16:00:00,67.60519499,104.707271,329.1643423,685.7041207,67.92029742,135.587223,67.23359334,68.3536297,65.87224985,2.481379852,81.85775328,0,81.85775328,2.048047566,79.80970571,1.179933244,1.82748663,-1.995009067,1.995009067,0.871320333,0.871320333,0.206341601,2.227962238,71.65892416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.31891213,1.48380349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614151058,68.88128358,64.93306319,70.36508707,67.23359334,0,0.098050444,84.37308262,-0.098050444,95.62691738,0.540058402,0,101.2431302,70.36508707,147.2956723,3,8,45% -2018-03-27 17:00:00,56.51168372,116.1271484,525.1686001,799.0185506,84.29658875,342.0387056,256.3250273,85.71367832,81.75473558,3.95894274,129.8750605,0,129.8750605,2.541853172,127.3332073,0.986314947,2.02680109,-1.047564013,1.047564013,0.709297687,0.709297687,0.160513383,2.992799576,96.25872205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58576153,1.84156397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.168273105,92.52754501,80.75403464,94.36910898,256.3250273,0,0.320799845,71.28869699,-0.320799845,108.711303,0.894139576,0,309.9443857,94.36910898,371.7070802,3,9,20% -2018-03-27 18:00:00,46.59839244,130.5305407,682.5965578,854.9433167,95.15825413,544.9289724,447.4943895,97.43458286,92.28888167,5.145701183,168.3728107,0,168.3728107,2.869372459,165.5034383,0.813295374,2.278187709,-0.520203411,0.520203411,0.619113712,0.619113712,0.139406291,3.459000317,111.2533404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71158344,2.078850579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506033955,106.9409426,91.2176174,109.0197931,447.4943895,0,0.523419952,58.43806404,-0.523419952,121.561936,0.954474409,0,518.3395606,109.0197931,589.6908348,3,10,14% -2018-03-27 19:00:00,38.9484348,149.6082105,788.5142444,882.9216731,101.855443,715.7354754,611.0071964,104.728279,98.78412558,5.944153444,194.2557251,0,194.2557251,3.071317413,191.1844077,0.679778426,2.611155861,-0.14579879,0.14579879,0.555086751,0.555086751,0.129173878,3.641138276,117.1115233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.95505894,2.22515901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.637992286,112.5720507,97.59305123,114.7972097,611.0071964,0,0.692028767,46.20908135,-0.692028767,133.7909186,0.977748668,0,695.0045238,114.7972097,770.1370016,3,11,11% -2018-03-27 20:00:00,35.1758302,173.8068469,834.9873203,893.4580471,104.6854437,836.0947109,728.2714325,107.8232784,101.5287913,6.29448712,205.6089953,0,205.6089953,3.156652374,202.452343,0.613934054,3.033501741,0.168197984,-0.168197984,0.50139014,0.50139014,0.125373693,3.54947828,114.1634227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.59333601,2.2869839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.571584931,109.7382243,100.1649209,112.0252082,728.2714325,0,0.815115421,35.40122391,-0.815115421,144.5987761,0.988658994,0,820.1770227,112.0252082,893.495281,3,12,9% -2018-03-27 21:00:00,36.54055812,199.4196558,818.6392279,889.8569757,103.6964544,893.6328765,786.8920045,106.740872,100.5696237,6.171248295,201.6153894,0,201.6153894,3.126830698,198.4885587,0.63775305,3.480529587,0.470567983,-0.470567983,0.449681825,0.449681825,0.126669296,3.205286137,103.0930203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.67134761,2.265378197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322218895,99.09693243,98.9935665,101.3623106,786.8920045,0,0.884290426,27.83567297,-0.884290426,152.164327,0.99345749,0,880.7373225,101.3623106,947.0769275,3,13,8% -2018-03-27 22:00:00,42.53857941,221.1133569,740.673781,871.0329249,98.8773246,880.923751,779.4444307,101.4793203,95.89580844,5.583511823,182.5664496,0,182.5664496,2.981516155,179.5849334,0.74243827,3.859156098,0.803403913,-0.803403913,0.392763529,0.392763529,0.133496456,2.645621144,85.09227026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.17869865,2.160098305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.916743513,81.79392682,94.09544216,83.95402512,779.4444307,0,0.894850709,26.51073968,-0.894850709,153.4892603,0.994124758,0,868.9604482,83.95402512,923.9066785,3,14,6% -2018-03-27 23:00:00,51.52894349,237.5730766,606.8560491,830.6404849,90.09864227,794.7635431,702.8069701,91.95657302,87.38183578,4.574737235,149.8560815,0,149.8560815,2.716806493,147.139275,0.899349724,4.146432402,1.228992166,-1.228992166,0.319983651,0.319983651,0.148467898,1.925709332,61.93743169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.99474428,1.968317056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395169855,59.53661524,85.38991414,61.5049323,702.8069701,0,0.846102475,32.20974995,-0.846102475,147.79025,0.990905503,0,781.8052085,61.5049323,822.0589566,3,15,5% -2018-03-27 00:00:00,62.14685155,250.236525,427.5876639,751.0260898,76.70302467,634.4428497,556.8293678,77.6134819,74.39014548,3.223336424,105.9864587,0,105.9864587,2.312879198,103.6735795,1.084667179,4.36745127,1.892395558,-1.892395558,0.20653499,0.20653499,0.179385495,1.124528934,36.16871606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5066374,1.675673106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814717385,34.76674562,72.32135478,36.44241873,556.8293678,0,0.741424799,42.14707156,-0.741424799,137.8529284,0.982562277,0,619.4408865,36.44241873,643.2917207,3,16,4% -2018-03-27 01:00:00,73.57085347,260.6988495,219.547043,578.9883946,55.79208765,396.2826371,340.5178484,55.7647887,54.10975035,1.655038347,54.91405969,0,54.91405969,1.682337293,53.23172239,1.284053627,4.550053281,3.332384906,-3.332384906,0,0,0.254123612,0.420584323,13.52743759,0.038200458,1,0.291535125,0,0.925676756,0.964438719,0.724496596,1,52.10541668,1.218847642,0.006417392,0.312029739,0.981963131,0.706459727,0.961238037,0.922476074,0.301552265,13.00308755,52.40696895,14.22193519,327.5099106,0,0.588125516,53.97589833,-0.588125516,126.0241017,0.964984134,0,368.4488365,14.22193519,377.7568086,3,17,3% -2018-03-27 02:00:00,85.24193856,270.126445,26.89289747,145.7480629,14.80332563,72.5636502,58.00396944,14.55968077,14.35695075,0.202730021,6.966869234,0,6.966869234,0.446374886,6.520494348,1.487752489,4.714595861,11.28050168,-11.28050168,0,0,0.550454842,0.111593722,3.589237686,0.583146741,1,0.088417412,0,0.952506796,0.991268759,0.724496596,1,13.9070735,0.323397086,0.078117634,0.312029739,0.802470913,0.526967509,0.961238037,0.922476074,0.076734791,3.450111788,13.98380829,3.773508873,24.17914368,0,0.397974205,66.54840281,-0.397974205,113.4515972,0.924363717,0,36.33413141,3.773508873,38.80381749,3,18,7% -2018-03-27 03:00:00,97.19646873,279.4005008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696398401,4.87645867,-6.899753346,6.899753346,1,0.289918996,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177906659,79.75214773,-0.177906659,100.2478523,0.768953746,0,0,0,0,3,19,0% -2018-03-27 04:00:00,108.6525923,289.3280981,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896345477,5.04972793,-2.291536185,2.291536185,1,0.922029457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.049874504,92.85878459,0.049874504,87.14121541,0,0,0,0,0,3,20,0% -2018-03-27 05:00:00,119.3685908,300.8215933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083374932,5.250327265,-1.122591387,1.122591387,1,0.722128123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.272551233,105.8161367,0.272551233,74.18386334,0,0.866548253,0,0,0,3,21,0% -2018-03-27 06:00:00,128.7131966,315.0035668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246469072,5.497849396,-0.527194505,0.527194505,1,0.62030926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.474934182,118.3550647,0.474934182,61.64493527,0,0.944722254,0,0,0,3,22,0% -2018-03-27 07:00:00,135.6928104,332.9720899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368286313,5.811459286,-0.119429094,0.119429094,1,0.550577268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64321839,130.0322275,0.64321839,49.9677725,0,0.972265904,0,0,0,3,23,0% -2018-03-28 08:00:00,139.0093318,354.6207178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426170532,6.189299122,0.219352547,-0.219352547,1,0.492642195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765924008,139.989266,0.765924008,40.01073398,0,0.984719372,0,0,0,3,0,0% -2018-03-28 09:00:00,137.7632238,17.18594892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404421844,0.299951394,0.548747182,-0.548747182,1,0.436312395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834678494,146.5823756,0.834678494,33.41762443,0,0.990096695,0,0,0,3,1,0% -2018-03-28 10:00:00,132.3183936,37.01815061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309391629,0.646088611,0.921282161,-0.921282161,1,0.372605161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844787052,147.6491274,0.844787052,32.35087257,0,0.990813487,0,0,0,3,2,0% -2018-03-28 11:00:00,123.9183844,52.84544375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162783812,0.922326988,1.420967648,-1.420967648,1,0.28715391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795552497,142.7074716,0.795552497,37.29252845,0,0.987150596,0,0,0,3,3,0% -2018-03-28 12:00:00,113.7347201,65.42494209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98504534,1.141880652,2.26707133,-2.26707133,1,0.142461659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690322783,133.6556653,0.690322783,46.34433465,0,0.977570115,0,0,0,3,4,0% -2018-03-28 13:00:00,102.5512859,75.93819688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789857591,1.325371564,4.467575881,-4.467575881,1,0,#DIV/0!,0,0,0.189526597,1,0.220205335,0,0.936131333,0.974893296,0.724496596,1,0,0,0.029752024,0.312029739,0.919094303,0.643590899,0.961238037,0.922476074,0,0,0,0,0,0,-0.536262922,122.4296003,0.536262922,57.57039973,0,0.956762154,0,0,0,3,5,0% -2018-03-28 14:00:00,90.86275588,85.39064471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585854258,1.490347901,64.02379548,-64.02379548,1,0,#DIV/0!,0,0,0.912423284,1,0.015617923,0,0.959831621,0.998593584,0.724496596,1,0,0,0.108782629,0.312029739,0.738191304,0.462687899,0.961238037,0.922476074,0,0,0,0,0,0,-0.343866782,110.1126353,0.343866782,69.88736473,0,0.904594853,0,0,0,3,6,0% -2018-03-28 15:00:00,78.93636624,94.61655432,122.9760747,427.5904763,40.92185099,40.6149518,0,40.6149518,39.6879062,0.927045596,84.42742447,53.3765066,31.05091787,1.233944793,29.81697308,1.37769949,1.6513704,-4.649420522,4.649420522,0.674748574,0.674748574,0.332762703,0.72585827,23.34609708,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.14952504,0.893988802,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525881846,22.44115653,38.67540689,23.33514533,0,53.3765066,-0.124830906,97.17099093,0.124830906,82.82900907,0,0.649458167,38.67540689,58.00095344,76.6358709,3,7,98% -2018-03-28 16:00:00,67.29642779,104.4364335,334.7499023,689.8011213,68.51180666,139.6478375,70.67842841,68.96940907,66.44592291,2.523486163,83.22987318,0,83.22987318,2.065883752,81.16398942,1.17454424,1.822759623,-1.971292856,1.971292856,0.867264622,0.867264622,0.204665651,2.257084239,72.5955878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87034849,1.496725746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.635249848,69.7816403,65.50559834,71.27836604,70.67842841,0,0.102462038,84.11903673,-0.102462038,95.88096327,0.562014389,0,105.2278921,71.27836604,151.8781571,3,8,44% -2018-03-28 17:00:00,56.18345038,115.8576992,530.6330473,801.1576771,84.76026417,346.6387371,260.4341716,86.20456552,82.20442947,4.000136051,131.2139605,0,131.2139605,2.555834697,128.6581258,0.980586194,2.022098314,-1.039684063,1.039684063,0.707950136,0.707950136,0.159734236,3.018504654,97.08548572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0180244,1.851693537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.186896346,93.3222617,81.20492075,95.17395523,260.4341716,0,0.325072304,71.03004447,-0.325072304,108.9699555,0.896188065,0,314.6029171,95.17395523,376.8923673,3,9,20% -2018-03-28 18:00:00,46.24123179,130.2894274,687.8043963,856.3042279,95.56418856,549.5529549,451.6854191,97.86753575,92.68257568,5.184960069,169.6477519,0,169.6477519,2.881612879,166.766139,0.807061745,2.273979489,-0.517571718,0.517571718,0.618663666,0.618663666,0.138940939,3.482462328,112.0079593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.0900171,2.087718722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523032102,107.666311,91.6130492,109.7540297,451.6854191,0,0.527482411,58.1644912,-0.527482411,121.8355088,0.95521011,0,523.0675279,109.7540297,594.8993452,3,10,14% -2018-03-28 19:00:00,38.56054181,149.4689132,793.41152,883.9250524,102.2263805,720.1839603,615.0590111,105.1249491,99.14387796,5.981071176,195.4543114,0,195.4543114,3.082502547,192.3718088,0.673008416,2.608724664,-0.145696594,0.145696594,0.555069275,0.555069275,0.128844084,3.662783862,117.8077197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.30086661,2.233262602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.65367444,113.2412613,97.95454105,115.4745239,615.0590111,0,0.695827106,45.90683644,-0.695827106,134.0931636,0.978143069,0,699.5702501,115.4745239,775.1460165,3,11,11% -2018-03-28 20:00:00,34.78053569,173.8805563,839.5576916,894.2986944,105.0316811,840.2791773,732.0856484,108.1935289,101.8645884,6.32894051,206.7275751,0,206.7275751,3.167092711,203.5604824,0.607034863,3.034788213,0.166613041,-0.166613041,0.501661182,0.501661182,0.12510359,3.569555084,114.8091618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.91611699,2.294547888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.586130507,110.3589333,100.5022475,112.6534812,732.0856484,0,0.818614243,35.05368625,-0.818614243,144.9463138,0.98892117,0,824.4772436,112.6534812,898.206694,3,12,9% -2018-03-28 21:00:00,36.18427647,199.7169947,822.8938366,890.6564506,104.0251002,897.5271027,790.4354218,107.0916809,100.8883596,6.203321332,202.6568784,0,202.6568784,3.136740581,199.5201378,0.631534762,3.485719131,0.467405141,-0.467405141,0.450222703,0.450222703,0.126413755,3.224003287,103.6950281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97772869,2.272557873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335779406,99.67560529,99.3135081,101.9481632,790.4354218,0,0.887475099,27.44233611,-0.887475099,152.5576639,0.993660391,0,884.7378784,101.9481632,951.4609122,3,13,8% -2018-03-28 22:00:00,42.24525763,221.5111895,744.6458951,871.9068538,99.19611553,884.5538344,782.7353925,101.818442,96.20498666,5.613455297,183.5391474,0,183.5391474,2.991128878,180.5480185,0.737318839,3.866099587,0.798213132,-0.798213132,0.393651205,0.393651205,0.133212465,2.663160288,85.65638943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.47589251,2.16706269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929450563,82.33617962,94.40534307,84.50324231,782.7353925,0,0.897728225,26.13895908,-0.897728225,153.8610409,0.994303857,0,872.6821625,84.50324231,927.9878445,3,14,6% -2018-03-28 23:00:00,51.28958327,237.978947,610.5940288,831.767134,90.41972797,798.2175914,705.9214361,92.29615526,87.69323956,4.602915705,150.7720799,0,150.7720799,2.726488412,148.0455915,0.8951721,4.153516176,1.220377582,-1.220377582,0.321456832,0.321456832,0.148084855,1.942148721,62.46617896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.29407744,1.975331573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407080137,60.04486723,85.70115757,62.02019881,705.9214361,0,0.848700805,31.9293583,-0.848700805,148.0706417,0.991086423,0,785.3303088,62.02019881,825.9212885,3,15,5% -2018-03-28 00:00:00,61.94315728,250.6227229,431.1382293,752.8164022,77.05306909,637.9174044,559.9376676,77.97973684,74.72963476,3.250102086,106.8578896,0,106.8578896,2.323434328,104.5344552,1.081112044,4.374191695,1.876122777,-1.876122777,0.209317799,0.209317799,0.178720104,1.139578757,36.65277012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83296741,1.683320262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825620931,35.23203679,72.65858834,36.91535705,559.9376676,0,0.743790473,41.94468538,-0.743790473,138.0553146,0.982776767,0,622.9523192,36.91535705,647.1126821,3,16,4% -2018-03-28 01:00:00,73.38670444,261.0658391,222.8778952,582.7678777,56.25830019,400.2601405,344.0180879,56.24205259,54.56190487,1.680147718,55.73572139,0,55.73572139,1.696395322,54.03932607,1.28083962,4.556458458,3.289277137,-3.289277137,0,0,0.252417586,0.42409883,13.64047622,0.031332358,1,0.295139096,0,0.92512017,0.963882133,0.724496596,1,52.52497959,1.229032636,0.005280365,0.312029739,0.985135465,0.70963206,0.961238037,0.922476074,0.304615021,13.11174458,52.82959461,14.34077722,333.2391899,0,0.590317519,53.82045643,-0.590317519,126.1795436,0.96529982,0,374.5053248,14.34077722,383.8910766,3,17,3% -2018-03-28 02:00:00,85.06763479,270.4824683,28.91752705,154.3710464,15.64474701,77.14025053,61.74925783,15.3909927,15.17300017,0.217992534,7.483136075,0,7.483136075,0.471746845,7.011389229,1.484710314,4.720809641,10.8550046,-10.8550046,0,0,0.541012618,0.117936711,3.793250042,0.570107221,1,0.091864117,0,0.952129001,0.990890964,0.724496596,1,14.6994886,0.341778984,0.076745366,0.312029739,0.805523507,0.530020102,0.961238037,0.922476074,0.081032732,3.646216224,14.78052133,3.987995207,26.54556008,0,0.400005437,66.42148165,-0.400005437,113.5785184,0.925001699,0,39.3352095,3.987995207,41.94527261,3,18,7% -2018-03-28 03:00:00,97.01117283,279.7547813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693164377,4.882642033,-7.059194149,7.059194149,1,0.262653013,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.180005409,79.62992516,-0.180005409,100.3700748,0.772230569,0,0,0,0,3,19,0% -2018-03-28 04:00:00,108.4489072,289.6879783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892790501,5.056009024,-2.306727323,2.306727323,1,0.924627294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047704723,92.73431707,0.047704723,87.26568293,0,0,0,0,0,3,20,0% -2018-03-28 05:00:00,119.1330595,301.1883255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079264137,5.256727948,-1.124542723,1.124542723,1,0.722461821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.270233076,105.6781367,0.270233076,74.32186328,0,0.864974537,0,0,0,3,21,0% -2018-03-28 06:00:00,128.4315363,315.3619023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241553171,5.504103531,-0.525384009,0.525384009,1,0.619999647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47240051,118.190232,0.47240051,61.80976802,0,0.944157608,0,0,0,3,22,0% -2018-03-28 07:00:00,135.35565,333.2718488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362401754,5.816691065,-0.115713183,0.115713183,1,0.549941809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640416899,129.8229137,0.640416899,50.17708633,0,0.971925858,0,0,0,3,23,0% -2018-03-29 08:00:00,138.6259793,354.7784537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419479767,6.192052132,0.224679701,-0.224679701,1,0.491731198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762820845,139.7135124,0.762820845,40.2864876,0,0.98445381,0,0,0,3,0,0% -2018-03-29 09:00:00,137.3664834,17.15992895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397497418,0.29949726,0.556097478,-0.556097478,1,0.43505542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831260591,146.2284498,0.831260591,33.77155019,0,0.98985039,0,0,0,3,1,0% -2018-03-29 10:00:00,131.9394945,36.85797137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.302778592,0.643292956,0.931912945,-0.931912945,1,0.37078719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841063046,147.2525455,0.841063046,32.74745453,0,0.990551424,0,0,0,3,2,0% -2018-03-29 11:00:00,123.5679358,52.62101102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156667329,0.918409898,1.438157559,-1.438157559,1,0.284214262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791552142,142.3307991,0.791552142,37.66920092,0,0.986832967,0,0,0,3,3,0% -2018-03-29 12:00:00,113.4093756,65.17672199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979367007,1.137548394,2.301646979,-2.301646979,1,0.136548875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686094918,133.3217772,0.686094918,46.67822277,0,0.977123786,0,0,0,3,4,0% -2018-03-29 13:00:00,102.2432094,75.68189215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784480642,1.320898202,4.585713516,-4.585713516,1,0,#DIV/0!,0,0,0.202583316,1,0.214707298,0,0.936891968,0.975653931,0.724496596,1,0,0,0.03162233,0.312029739,0.914240366,0.638736962,0.961238037,0.922476074,0,0,0,0,0,0,-0.53187212,122.1320339,0.53187212,57.86796605,0,0.955992441,0,0,0,3,5,0% -2018-03-29 14:00:00,89.99350105,85.1299659,0.001390979,0.822295724,0.001297707,0.001269063,0,0.001269063,0.001258577,1.04858E-05,0.271781552,0.271405162,0.00037639,3.91307E-05,0.000337259,1.570682899,1.485798197,-8510.562092,8510.562092,0,0,0.932945506,9.78267E-06,0.000314644,1,0.999312678,0,0.000117501,0.961238037,1,0.724163459,0.999666863,0.001209792,2.83444E-05,0.115824807,0.311651141,0.724496596,0.448993192,0.961297942,0.922535979,7.08751E-06,0.000302458,0.001216879,0.000330803,0,0.000186543,-0.330057854,109.2722871,0.330057854,70.72771295,0,0.898511407,0.001216879,0.000498414,0.001543081,3,6,27% -2018-03-29 15:00:00,78.6392365,94.35078005,128.1129472,437.5785187,41.91610579,41.61795006,0,41.61795006,40.65218054,0.965769511,85.00290848,52.67651594,32.32639253,1.263925243,31.06246729,1.372513598,1.646731764,-4.534269448,4.534269448,0.694440567,0.694440567,0.327180872,0.767220597,24.67645171,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.07642222,0.915709536,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.555848711,23.719944,39.63227093,24.63565353,0,52.67651594,-0.12038186,96.91414131,0.12038186,83.08585869,0,0.63465503,39.63227093,58.06706934,77.63600647,3,7,96% -2018-03-29 16:00:00,66.98889577,104.1651172,340.305721,693.7930339,69.09541916,143.7144791,74.13717348,69.5773056,67.01193733,2.56536827,84.59454379,0,84.59454379,2.083481823,82.51106197,1.169176793,1.818024262,-1.948235678,1.948235678,0.863321612,0.863321612,0.203039252,2.285929606,73.52335395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41442309,1.509475488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.656148218,70.67344442,66.07057131,72.1829199,74.13717348,0,0.106857766,83.86578903,-0.106857766,96.13421097,0.582088289,0,109.2249518,72.1829199,156.4672292,3,8,43% -2018-03-29 17:00:00,55.85665346,115.5869242,536.0540119,803.2475303,85.21905004,351.214483,264.5241002,86.69038283,82.64938126,4.041001572,132.5421702,0,132.5421702,2.569668784,129.9725014,0.974882512,2.0173724,-1.031956678,1.031956678,0.706628675,0.706628675,0.158974745,3.04395437,97.90403607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44572899,1.861716286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.205334579,94.10908343,81.65106357,95.97079972,264.5241002,0,0.329318286,70.77259652,-0.329318286,109.2274035,0.898171201,0,319.2389923,95.97079972,382.0499613,3,9,20% -2018-03-29 18:00:00,45.88551882,130.0461023,692.9604818,857.6345641,95.9659703,554.1366105,455.8405394,98.29607104,93.07224222,5.223828819,170.9100197,0,170.9100197,2.893728081,168.0162916,0.800853382,2.269732664,-0.51498022,0.51498022,0.618220494,0.618220494,0.138486931,3.505669552,112.7543835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.4645794,2.096496144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539845657,108.3838022,92.00442506,110.4802984,455.8405394,0,0.531509058,57.89252738,-0.531509058,122.1074726,0.955928226,0,527.7552633,110.4802984,600.0624089,3,10,14% -2018-03-29 19:00:00,38.17384611,149.3276426,798.252185,884.9054962,102.5933771,724.5814237,619.0640533,105.5173704,99.49980829,6.017562153,196.6390529,0,196.6390529,3.09356885,193.5454841,0.666259303,2.606259028,-0.145595315,0.145595315,0.555051955,0.555051955,0.128522513,3.68417899,118.4958606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.64300039,2.241280101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669175137,113.9027284,98.31217552,116.1440085,619.0640533,0,0.699582109,45.60651385,-0.699582109,134.3934861,0.978528761,0,704.0841566,116.1440085,780.0980873,3,11,11% -2018-03-29 20:00:00,34.38634725,173.955569,844.0698114,895.1195823,105.3740784,844.4056601,735.8460441,108.5596159,102.1966612,6.362954775,207.8319153,0,207.8319153,3.177417253,204.6544981,0.600154977,3.036097431,0.165047732,-0.165047732,0.501928865,0.501928865,0.124840478,3.589395624,115.4473017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.23531795,2.302027984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600504911,110.9723377,100.8358229,113.2743657,735.8460441,0,0.822064514,34.70800331,-0.822064514,145.2919967,0.989177523,0,828.7181901,113.2743657,902.8539969,3,12,9% -2018-03-29 21:00:00,35.82970386,200.0186237,827.0917362,891.4368272,104.3500128,901.3598073,793.9213655,107.4384418,101.2034749,6.234966873,203.6845051,0,203.6845051,3.146537897,200.5379672,0.625346302,3.49098355,0.46427957,-0.46427957,0.450757207,0.450757207,0.126164981,3.242509569,104.2902538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.28062957,2.279655995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.349187145,100.2477588,99.62981671,102.5274148,793.9213655,0,0.890608668,27.05016822,-0.890608668,152.9498318,0.99385862,0,888.6754092,102.5274148,955.7775516,3,13,8% -2018-03-29 22:00:00,41.95411846,221.9124363,748.565897,872.7601073,99.51129711,888.122076,785.9684058,102.1536703,96.51066434,5.643005927,184.4991011,0,184.4991011,3.000632765,181.4984683,0.732237502,3.873102665,0.79308432,-0.79308432,0.394528283,0.394528283,0.132935921,2.680525008,86.21489852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.76972153,2.173948224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942031244,82.8730398,94.71175277,85.04698802,785.9684058,0,0.900554917,25.7688953,-0.900554917,154.2311047,0.994478677,0,876.3405735,85.04698802,932.0021262,3,14,6% -2018-03-29 23:00:00,51.05228154,238.3864257,614.2873203,832.8681219,90.73726142,801.6121113,708.9801558,92.6319555,88.0011982,4.630757297,151.677136,0,151.677136,2.736063217,148.9410728,0.891030404,4.16062802,1.211875204,-1.211875204,0.322910824,0.322910824,0.147711435,1.958461352,62.99084925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.590099,1.982268486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.418898583,60.54920027,86.00899758,62.53146876,708.9801558,0,0.851251401,31.65195935,-0.851251401,148.3480407,0.991262945,0,788.7947551,62.53146876,829.7203508,3,15,5% -2018-03-29 00:00:00,61.74109507,251.0093236,434.6542872,754.5677538,77.39922684,641.3356141,562.9936519,78.34196219,75.06535458,3.276607616,107.7208364,0,107.7208364,2.333872262,105.3869642,1.077585393,4.38093915,1.860108307,-1.860108307,0.212056435,0.212056435,0.178070777,1.154565637,37.13479968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.15567407,1.690882509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836478874,35.69538194,72.99215294,37.38626445,562.9936519,0,0.746114115,41.74511757,-0.746114115,138.2548824,0.982986122,0,626.4070997,37.38626445,650.8756621,3,16,4% -2018-03-29 01:00:00,73.20368463,261.4325217,226.1893945,586.4653569,56.71836419,404.1795798,347.4663723,56.71320744,55.00809624,1.705111199,56.55250538,0,56.55250538,1.710267949,54.84223743,1.277645321,4.562858275,3.247197342,-3.247197342,0,0,0.250756072,0.427566987,13.75202406,0.024532767,1,0.298741515,0,0.924561147,0.96332311,0.724496596,1,52.93826107,1.239083307,0.004147519,0.312029739,0.988306167,0.712802763,0.961238037,0.922476074,0.307660796,13.21896861,53.24592187,14.45805192,338.9420607,0,0.592475529,53.66712328,-0.592475529,126.3328767,0.965608329,0,380.5311986,14.45805192,389.9937045,3,17,2% -2018-03-29 02:00:00,84.89375085,270.8376933,30.99055512,162.9886576,16.48408659,81.7447099,65.52405945,16.22065045,15.98703056,0.233619895,8.011074914,0,8.011074914,0.49705603,7.514018884,1.481675467,4.727009487,10.45901271,-10.45901271,0,0,0.531906787,0.124264008,3.99675764,0.557217039,1,0.095321562,0,0.951747247,0.99050921,0.724496596,1,15.48999991,0.360115402,0.075375429,0.312029739,0.808585917,0.533082513,0.961238037,0.922476074,0.085319382,3.841835467,15.57531929,4.201950869,29.01293705,0,0.402016069,66.29572666,-0.402016069,113.7042733,0.925626862,0,42.43047318,4.201950869,45.18056598,3,18,6% -2018-03-29 03:00:00,96.82611709,280.107797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689934545,4.888803319,-7.226785208,7.226785208,1,0.233993254,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182089882,79.50848674,-0.182089882,100.4915133,0.775410334,0,0,0,0,3,19,0% -2018-03-29 04:00:00,108.2451026,290.0460015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889233439,5.062257709,-2.322204448,2.322204448,1,0.927274039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04553847,92.61006479,0.04553847,87.38993521,0,0,0,0,0,3,20,0% -2018-03-29 05:00:00,118.8971824,301.5523504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075147305,5.263081381,-1.126518451,1.126518451,1,0.722799691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267908184,105.5398295,0.267908184,74.46017054,0,0.863368897,0,0,0,3,21,0% -2018-03-29 06:00:00,128.1495724,315.7164377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236631973,5.51029134,-0.523556698,0.523556698,1,0.619687158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469851036,118.0246274,0.469851036,61.9753726,0,0.943583293,0,0,0,3,22,0% -2018-03-29 07:00:00,135.0186538,333.567196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356520061,5.821845846,-0.111964955,0.111964955,1,0.549300825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637592366,129.6125217,0.637592366,50.38747831,0,0.97157999,0,0,0,3,23,0% -2018-03-30 08:00:00,138.2434909,354.9333353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412804085,6.194755327,0.230054182,-0.230054182,1,0.490812107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759689722,139.4368521,0.759689722,40.56314789,0,0.984183656,0,0,0,3,0,0% -2018-03-30 09:00:00,136.9708635,17.13432409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390592548,0.299050371,0.563520227,-0.563520227,1,0.433786055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827812479,145.8746781,0.827812479,34.12532187,0,0.989599847,0,0,0,3,1,0% -2018-03-30 10:00:00,131.5614654,36.70008863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296180739,0.640537382,0.942669662,-0.942669662,1,0.368947683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837309402,146.8570803,0.837309402,33.14291974,0,0.990284917,0,0,0,3,2,0% -2018-03-30 11:00:00,123.2181069,52.39898715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150561664,0.914534851,1.455615651,-1.455615651,1,0.281228753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787525505,141.9548636,0.787525505,38.04513635,0,0.986509993,0,0,0,3,3,0% -2018-03-30 12:00:00,113.0846006,64.93038983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973698613,1.133249087,2.337036151,-2.337036151,1,0.13049697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68184668,132.9881182,0.68184668,47.01188177,0,0.976669732,0,0,0,3,4,0% -2018-03-30 13:00:00,101.9358136,75.42688492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779115573,1.316447486,4.709478762,-4.709478762,1,0,#DIV/0!,0,0,0.21581827,1,0.209230123,0,0.937643168,0.976405131,0.724496596,1,0,0,0.033496682,0.312029739,0.909403571,0.633900167,0.961238037,0.922476074,0,0,0,0,0,0,-0.527469,121.8346043,0.527469,58.16539567,0,0.955207699,0,0,0,3,5,0% -2018-03-30 14:00:00,89.74375083,84.87003092,0.083368873,1.591475725,0.076251194,0.074580409,0,0.074580409,0.073951939,0.00062847,0.54190714,0.519394136,0.022513003,0.002299255,0.020213748,1.566323935,1.481261476,-216.1045065,216.1045065,0,0,0.914624262,0.000574814,0.018487985,1,0.972592378,0,0.004627358,0.961238037,1,0.711458528,0.986961932,0.071085417,0.001653186,0.115824807,0.297214216,0.724496596,0.448993192,0.963560442,0.924798479,0.000416451,0.01779465,0.071501867,0.019447835,0,0.014235358,-0.326360075,109.0479951,0.326360075,70.95200492,0,0.896794985,0.071501867,0.032214033,0.092585308,3,6,29% -2018-03-30 15:00:00,78.34314727,94.08518571,133.2595112,447.2709368,42.88849785,42.59981789,0,42.59981789,41.5952514,1.004566485,85.45974604,51.85618827,33.60355778,1.293246452,32.31031133,1.367345866,1.642096268,-4.425198469,4.425198469,0.713092803,0.713092803,0.321841927,0.809109559,26.02374472,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.9829378,0.936952652,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.586197121,25.01501329,40.56913492,25.95196594,0,51.85618827,-0.115939096,96.65779364,0.115939096,83.34220636,0,0.618739092,40.56913492,58.03741678,78.55346345,3,7,94% -2018-03-30 16:00:00,66.68274358,103.8933113,345.8288638,697.6814975,69.6711059,147.7839316,77.60666256,70.17726905,67.570265,2.607004054,85.9510528,0,85.9510528,2.100840902,83.8502119,1.16383343,1.813280354,-1.925821337,1.925821337,0.859488534,0.859488534,0.201461223,2.314488152,74.44189498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95110888,1.522052082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676838788,71.55638099,66.62794766,73.07843308,77.60666256,0,0.111235088,83.61348215,-0.111235088,96.38651785,0.600501546,0,113.2308685,73.07843308,161.0592414,3,8,42% -2018-03-30 17:00:00,55.53143859,115.3147906,541.4290782,805.2885327,85.67285387,355.7633104,268.5922881,87.17102232,83.08950123,4.081521092,133.8591011,0,133.8591011,2.583352643,131.2757485,0.969206442,2.012622773,-1.024382327,1.024382327,0.705333385,0.705333385,0.158234674,3.069140032,98.71409352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86878904,1.871630196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223581505,94.88774146,82.09237055,96.75937166,268.5922881,0,0.333535469,70.51649487,-0.333535469,109.4835051,0.900090906,0,323.8498464,96.75937166,387.1769199,3,9,20% -2018-03-30 18:00:00,45.53139756,129.8004807,698.0628597,858.9345087,96.36351406,558.6776954,459.9576041,98.72009127,93.45779857,5.2622927,172.1591377,0,172.1591377,2.905715493,169.2534222,0.7946728,2.265445759,-0.512430836,0.512430836,0.617784524,0.617784524,0.138044179,3.528615346,113.4923991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.83519083,2.105180983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556469806,109.0932109,92.39166063,111.1983919,459.9576041,0,0.535497875,57.62231763,-0.535497875,122.3776824,0.956628948,0,532.4004195,111.1983919,605.177543,3,10,14% -2018-03-30 19:00:00,37.78847646,149.1842468,803.0347668,885.8631542,102.9563688,728.926065,623.0205953,105.9054697,99.85185446,6.053615275,197.8095908,0,197.8095908,3.104514389,194.7050764,0.659533333,2.603756298,-0.145496894,0.145496894,0.555035124,0.555035124,0.128209105,3.705319069,119.1757982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98140056,2.249210107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684491052,114.5563103,98.66589161,116.8055204,623.0205953,0,0.703292142,45.30826657,-0.703292142,134.6917334,0.978905789,0,708.544359,116.8055204,784.991236,3,11,11% -2018-03-30 20:00:00,33.9933642,174.0317497,848.5226921,895.9208872,105.7125963,848.4728608,739.5513669,108.921494,102.5249715,6.39652247,208.9217754,0,208.9217754,3.187624817,205.7341505,0.593296129,3.037427036,0.163500168,-0.163500168,0.502193514,0.502193514,0.124584289,3.608997175,116.077755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.55090234,2.309423329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614706168,111.5783533,101.1656085,113.8877767,739.5513669,0,0.825465035,34.36433286,-0.825465035,145.6356671,0.989428083,0,832.8984993,113.8877767,907.4357714,3,12,9% -2018-03-30 21:00:00,35.47691398,200.324427,831.2323959,892.1983458,104.6711787,905.1302248,797.3490874,107.7811374,101.5149565,6.266180914,204.6981403,0,204.6981403,3.156222233,201.5419181,0.619188957,3.496320823,0.461189263,-0.461189263,0.451285681,0.451285681,0.125922882,3.260803803,104.8786592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.58003746,2.286672264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.362441255,100.8133565,99.94247872,103.1000288,797.3490874,0,0.89369039,26.65929316,-0.89369039,153.3407068,0.994052213,0,892.5491032,103.1000288,960.0260101,3,13,8% -2018-03-30 22:00:00,41.66519987,222.3169291,752.4336521,873.5930405,99.82288119,891.6282393,789.1432235,102.4850157,96.81285302,5.672162699,185.4462785,0,185.4462785,3.010028175,182.4362503,0.727194921,3.880162396,0.788014994,-0.788014994,0.395395189,0.395395189,0.132666689,2.697715221,86.76779485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.06019678,2.180755166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954485495,83.40450479,95.01468227,85.58525995,789.1432235,0,0.903330483,25.40064243,-0.903330483,154.5993576,0.994649272,0,879.935415,85.58525995,935.9492559,3,14,6% -2018-03-30 23:00:00,50.81704233,238.7953366,617.9360934,833.9440259,91.05128226,804.9473669,711.9833534,92.96401345,88.30575016,4.658263289,152.5712922,0,152.5712922,2.745532104,149.8257601,0.886924705,4.167764863,1.203481154,-1.203481154,0.324346291,0.324346291,0.147347409,1.974647658,63.5114565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.88284593,1.989128663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430625507,61.04962777,86.31347143,63.03875643,711.9833534,0,0.853754366,31.3776062,-0.853754366,148.6223938,0.991435146,0,792.1987912,63.03875643,833.4563966,3,15,5% -2018-03-30 00:00:00,61.54064905,251.3961693,438.136179,756.2812449,77.74157891,644.69822,565.997981,78.70023905,75.39738347,3.302855587,108.5753846,0,108.5753846,2.34419544,106.2311892,1.07408695,4.387690881,1.844343287,-1.844343287,0.214752412,0.214752412,0.177437022,1.169489658,37.61480748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.47483287,1.698361616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847291276,36.1567837,73.32212414,37.85514532,565.997981,0,0.748396162,41.54836117,-0.748396162,138.4516388,0.983190464,0,629.8059419,37.85514532,654.5813774,3,16,4% -2018-03-30 01:00:00,73.02177057,261.7987566,229.4817712,590.0835238,57.17247381,408.0422326,350.8637893,57.17844331,55.44851278,1.729930525,57.36447331,0,57.36447331,1.723961029,55.64051228,1.274470322,4.56925028,3.206102025,-3.206102025,0,0,0.249137322,0.430990257,13.8621282,0.017799484,1,0.302342925,0,0.923999615,0.962761578,0.724496596,1,53.34544137,1.249003897,0.003018637,0.312029739,0.991475738,0.715972334,0.961238037,0.922476074,0.310690599,13.32480489,53.65613197,14.57380879,344.6185948,0,0.594600214,53.51586252,-0.594600214,126.4841375,0.965909886,0,386.5266394,14.57380879,396.0649058,3,17,2% -2018-03-30 02:00:00,84.72028167,271.1919894,33.10927993,171.5862549,17.32023652,86.36953931,69.32198009,17.04755922,16.79796749,0.249591738,8.54999728,0,8.54999728,0.522269036,8.027728244,1.478647858,4.733193119,10.08952006,-10.08952006,0,0,0.523123323,0.130567259,4.199491871,0.544472233,1,0.098790102,0,0.951361471,0.990123435,0.724496596,1,16.2775433,0.378382139,0.074007668,0.312029739,0.811658406,0.536155002,0.961238037,0.922476074,0.089589894,4.036711322,16.3671332,4.415093461,31.57808681,0,0.404006604,66.17110921,-0.404006604,113.8288908,0.926239647,0,45.61600917,4.415093461,48.50559954,3,18,6% -2018-03-30 03:00:00,96.64128436,280.4594206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686708605,4.894940308,-7.40322331,7.40322331,1,0.203820562,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184160911,79.38778436,-0.184160911,100.6122156,0.778498303,0,0,0,0,3,19,0% -2018-03-30 04:00:00,108.0411746,290.4020399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885674225,5.068471751,-2.337984665,2.337984665,1,0.929972615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.043375015,92.48598523,0.043375015,87.51401477,0,0,0,0,0,3,20,0% -2018-03-30 05:00:00,118.6609765,301.9135412,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071024734,5.269385351,-1.128523398,1.128523398,1,0.723142557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265576041,105.401184,0.265576041,74.59881597,0,0.861730004,0,0,0,3,21,0% -2018-03-30 06:00:00,127.8673493,316.067061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231706251,5.516410871,-0.521715441,0.521715441,1,0.619372285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467285556,117.8582399,0.467285556,62.14176013,0,0.942999047,0,0,0,3,22,0% -2018-03-30 07:00:00,134.6818927,333.8580529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350642471,5.826922257,-0.108186702,0.108186702,1,0.548654705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634744971,129.401072,0.634744971,50.59892797,0,0.971228206,0,0,0,3,23,0% -2018-03-31 08:00:00,137.861956,355.0852822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406145045,6.197407299,0.235473873,-0.235473873,1,0.489885286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756531257,139.1593481,0.756531257,40.84065188,0,0.983908877,0,0,0,3,0,0% -2018-03-31 09:00:00,136.5764754,17.10900144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383709177,0.298608407,0.571013349,-0.571013349,1,0.432504656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824335229,145.5211515,0.824335229,34.47884847,0,0.989345065,0,0,0,3,1,0% -2018-03-31 10:00:00,131.1844415,36.54437317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289600432,0.637819635,0.953550421,-0.953550421,1,0.367086964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833527634,146.4628352,0.833527634,33.53716482,0,0.990013986,0,0,0,3,2,0% -2018-03-31 11:00:00,122.8690448,52.17928873,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144469381,0.91070039,1.473341832,-1.473341832,1,0.278197397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783474499,141.5798073,0.783474499,38.42019266,0,0.986181714,0,0,0,3,3,0% -2018-03-31 12:00:00,112.7605436,64.68590089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968042752,1.12898195,2.373254908,-2.373254908,1,0.124303198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677580311,132.6548482,0.677580311,47.34515182,0,0.976208009,0,0,0,3,4,0% -2018-03-31 13:00:00,101.6292448,75.17315363,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773764939,1.31201904,4.839235415,-4.839235415,1,0,#DIV/0!,0,0,0.229230244,1,0.203775988,0,0.938384691,0.977146654,0.724496596,1,0,0,0.035374399,0.312029739,0.904585855,0.629082451,0.961238037,0.922476074,0,0,0,0,0,0,-0.523056041,121.5374689,0.523056041,58.46253114,0,0.954407949,0,0,0,3,5,0% -2018-03-31 14:00:00,89.49104778,84.61083024,0.240174788,2.861066754,0.214760575,0.21009529,0,0.21009529,0.208284751,0.001810539,0.987687948,0.922978966,0.064708982,0.006475824,0.058233158,1.561913435,1.476737571,-108.9325476,108.9325476,0,0,0.89418451,0.001618956,0.052071188,1,0.944930028,0,0.009179735,0.961238037,1,0.698794786,0.97429819,0.200211225,0.004623523,0.115824807,0.282828669,0.724496596,0.448993192,0.965772229,0.927010266,0.001172928,0.050177755,0.201384153,0.054801278,0,0.050828425,-0.322599592,108.8202102,0.322599592,71.17978977,0,0.895009103,0.201384153,0.100293181,0.267024035,3,6,33% -2018-03-31 15:00:00,78.04824736,93.81976573,138.410703,456.6723982,43.83935535,43.56083538,0,43.56083538,42.51743703,1.043398344,85.80260275,50.92140703,34.88119572,1.321918314,33.55927741,1.362198892,1.637463815,-4.321783355,4.321783355,0.730777829,0.730777829,0.316733854,0.851464806,27.38603507,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.86937771,0.957725318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.616883354,26.32449858,41.48626106,27.2822239,0,50.92140703,-0.111505331,96.40209859,0.111505331,83.59790141,0,0.601590947,41.48626106,57.91608137,79.391178,3,7,91% -2018-03-31 16:00:00,66.37811464,103.621005,351.3164533,701.468167,70.23884069,151.8530028,81.08375047,70.76925231,68.12088049,2.648371822,87.2987017,0,87.2987017,2.117960201,85.1807415,1.158516652,1.808527712,-1.904034129,1.904034129,0.855762702,0.855762702,0.199930405,2.342750041,75.35089447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48038143,1.534454955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69731443,72.43014588,67.17769586,73.96460083,81.08375047,0,0.11559149,83.36225756,-0.11559149,96.63774244,0.617442205,0,117.2422255,73.96460083,165.6505775,3,8,41% -2018-03-31 17:00:00,55.20795031,115.0412661,546.7558919,807.2811273,86.12158723,360.2826247,272.6362442,87.64638048,83.52470362,4.121676864,135.1641797,0,135.1641797,2.59688361,132.5672961,0.963560506,2.00784887,-1.016961385,1.016961385,0.704064329,0.704064329,0.15751378,3.094053279,99.51538918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.28712214,1.881433335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.241631068,95.65797733,82.5287532,97.53941067,272.6362442,0,0.337721563,70.26187996,-0.337721563,109.73812,0.901949045,0,328.4327532,97.53941067,392.2703467,3,9,19% -2018-03-31 18:00:00,45.17901118,129.5524781,703.1096431,860.204261,96.75673867,563.174019,464.0345155,99.13950349,93.83916601,5.300337485,173.394646,0,173.394646,2.917572665,170.4770733,0.788522498,2.261117296,-0.509925412,0.509925412,0.617356071,0.617356071,0.137612589,3.551293391,114.221803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.20177571,2.113771464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.572899973,109.7943416,92.77467569,111.9081131,464.0345155,0,0.539446893,57.35400564,-0.539446893,122.6459944,0.95731247,0,537.0007039,111.9081131,610.2423258,3,10,14% -2018-03-31 19:00:00,37.40456079,149.0385699,807.7578639,886.7981868,103.3152956,733.2161471,626.9269689,106.2891782,100.1999583,6.089219976,198.9655834,0,198.9655834,3.115337356,195.850246,0.652832741,2.601213757,-0.145403222,0.145403222,0.555019105,0.555019105,0.127903794,3.726199823,119.847395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.31601117,2.257051309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.699619087,115.2018747,99.01563026,117.458926,626.9269689,0,0.706955628,45.01224642,-0.706955628,134.9877536,0.979274203,0,712.9490383,117.458926,789.8235562,3,11,11% -2018-03-31 20:00:00,33.60168417,174.1089577,852.9154165,896.7027938,106.0471995,852.4795507,743.2004288,109.2791218,102.8494852,6.429636682,209.9969318,0,209.9969318,3.197714338,206.7992174,0.586460023,3.038774569,0.161968497,-0.161968497,0.502455445,0.502455445,0.124334955,3.628357301,116.7004432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86283721,2.316733152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.628732514,112.1769049,101.4915697,114.4936381,743.2004288,0,0.828814669,34.02283234,-0.828814669,145.9771677,0.989672882,0,837.0168803,114.4936381,911.9506766,3,12,9% -2018-03-31 21:00:00,35.12597776,200.6342835,835.3153512,892.9412529,104.9885876,908.8376595,800.7179052,108.1197543,101.8227943,6.296959956,205.6976711,0,205.6976711,3.165793283,202.5318778,0.613063965,3.50172884,0.458132249,-0.458132249,0.451808461,0.451808461,0.125687368,3.278885059,105.4602146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.87594293,2.293606457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375541064,101.3723696,100.251484,103.6659761,800.7179052,0,0.89671958,26.26983419,-0.89671958,153.7301658,0.994241209,0,896.3582218,103.6659761,964.2055299,3,13,8% -2018-03-31 22:00:00,41.3785365,222.724496,756.2490847,874.4060116,100.1308827,895.0721537,792.2596615,102.8124922,97.11156714,5.700925041,186.3806617,0,186.3806617,3.019315557,183.3613461,0.722191702,3.88727578,0.783002725,-0.783002725,0.396252338,0.396252338,0.132404633,2.714731051,87.31508244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34733215,2.187483843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966813405,83.93057843,95.31414556,86.11806227,792.2596615,0,0.906054683,25.03429219,-0.906054683,154.9657078,0.994815693,0,883.4664895,86.11806227,939.8290389,3,14,6% -2018-03-31 23:00:00,50.58386673,239.2055028,621.5405659,834.9954206,91.36183237,808.223679,714.9313076,93.29237136,88.60693603,4.685435326,153.4546025,0,153.4546025,2.754896335,150.6997062,0.882855023,4.174923612,1.195191667,-1.195191667,0.325763877,0.325763877,0.146992549,1.990708233,64.0280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.17235724,1.995913017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442261338,61.54616805,86.61461858,63.54208107,714.9313076,0,0.856209855,31.10634758,-0.856209855,148.8936524,0.991603101,0,795.5427206,63.54208107,837.1297418,3,15,5% -2018-03-31 00:00:00,61.34180131,251.7831024,441.5842831,757.9579562,78.08020686,648.0060049,568.9513555,79.05464939,75.72580054,3.328848852,109.4216282,0,109.4216282,2.354406322,107.0672219,1.070616402,4.394444138,1.828819204,-1.828819204,0.217407186,0.217407186,0.176818356,1.18435103,38.0928003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.79051985,1.705759366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.858058289,36.61624858,73.64857814,38.32200794,568.9513555,0,0.750637091,41.35440513,-0.750637091,138.6455949,0.983389916,0,633.1496036,38.32200794,658.2305914,3,16,4% -2018-03-31 01:00:00,72.84093768,262.164404,232.7552882,593.6249927,57.6208189,411.8493943,354.211448,57.63794629,55.88333861,1.754607678,58.17169465,0,58.17169465,1.737480288,56.43421436,1.271314193,4.575632031,3.165950101,-3.165950101,0,0,0.247559655,0.434370072,13.97083465,0.011130384,1,0.305943863,0,0.923435498,0.962197462,0.724496596,1,53.7466965,1.258798554,0.001893503,0.312029739,0.994644674,0.71914127,0.961238037,0.922476074,0.313705423,13.42929768,54.06040192,14.68809623,350.2689385,0,0.596692276,53.36663513,-0.596692276,126.6333649,0.966204714,0,392.4919014,14.68809623,402.1049666,3,17,2% -2018-03-31 02:00:00,84.54722012,271.545227,35.27115258,180.1509201,18.15224517,91.00801304,73.1372362,17.87077685,17.604888,0.265888847,9.099256464,0,9.099256464,0.547357166,8.551899298,1.475627365,4.739358279,9.743913992,-9.743913992,0,0,0.514648483,0.136839292,4.401222,0.5318689,1,0.102270112,0,0.950971611,0.989733575,0.724496596,1,17.06120138,0.396558404,0.072641924,0.312029739,0.814741257,0.539237853,0.961238037,0.922476074,0.093840219,4.230621995,17.1550416,4.627180399,34.23781482,0,0.405977589,66.04759758,-0.405977589,113.9524024,0.926840492,0,48.88803475,4.627180399,51.91643177,3,18,6% -2018-03-31 03:00:00,96.45665787,280.8095262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683486265,4.901050803,-7.589284879,7.589284879,1,0.172002159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186219333,79.26776954,-0.186219333,100.7322305,0.781499414,0,0,0,0,3,19,0% -2018-03-31 04:00:00,107.8371206,290.7559673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882112811,5.07464895,-2.354085816,2.354085816,1,0.932726074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041213636,92.36203639,0.041213636,87.63796361,0,0,0,0,0,3,20,0% -2018-03-31 05:00:00,118.4244601,302.2717738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066896744,5.275637688,-1.130562492,1.130562492,1,0.723491262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.26323615,105.2621709,0.26323615,74.73782915,0,0.860056484,0,0,0,3,21,0% -2018-03-31 06:00:00,127.5849128,316.4136639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.226776805,5.522460233,-0.519863146,0.519863146,1,0.619055524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464703894,117.6910603,0.464703894,62.30893975,0,0.942404603,0,0,0,3,22,0% -2018-03-31 07:00:00,134.3454385,334.1443448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344770237,5.831918995,-0.104380749,0.104380749,1,0.548003849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631874932,129.1885875,0.631874932,50.81141251,0,0.970870417,0,0,0,3,23,0% -2018-04-01 08:00:00,137.4814638,355.2342179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399504203,6.200006719,0.240936613,-0.240936613,1,0.488951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753346106,138.8810652,0.753346106,41.11893476,0,0.983629444,0,0,0,4,0,0% -2018-04-01 09:00:00,136.1834291,17.08383349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376849225,0.298169143,0.578574689,-0.578574689,1,0.431211591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82082995,145.1679615,0.82082995,34.83203853,0,0.989086043,0,0,0,4,1,0% -2018-04-01 10:00:00,130.8085564,36.39069943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283039999,0.635137522,0.964553214,-0.964553214,1,0.365205375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829719289,146.069913,0.829719289,33.93008701,0,0.989738655,0,0,0,4,2,0% -2018-04-01 11:00:00,122.5208946,51.96183379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138393013,0.906905085,1.491335812,-1.491335812,1,0.275120245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779401063,141.20577,0.779401063,38.79423005,0,0.985848176,0,0,0,4,3,0% -2018-04-01 12:00:00,112.4373515,64.443211,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962401986,1.124746212,2.410319417,-2.410319417,1,0.117964793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67329807,132.3221246,0.67329807,47.67787537,0,0.975738685,0,0,0,4,4,0% -2018-04-01 13:00:00,101.3236481,74.92067727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768431269,1.307612496,4.975378433,-4.975378433,1,0,#DIV/0!,0,0,0.242817824,1,0.198347048,0,0.939116308,0.977878271,0.724496596,1,0,0,0.037254791,0.312029739,0.899789142,0.624285738,0.961238037,0.922476074,0,0,0,0,0,0,-0.518635725,121.240783,0.518635725,58.75921696,0,0.95359322,0,0,0,4,5,0% -2018-04-01 14:00:00,89.23496753,84.35235526,0.501686497,4.807879523,0.437491984,0.428081911,0,0.428081911,0.424299987,0.003781925,1.667436145,1.532604448,0.134831697,0.013191997,0.121639699,1.557443991,1.472226331,-72.55150665,72.55150665,0,0,0.872042575,0.003297999,0.106074997,1,0.916228205,0,0.013782439,0.961238037,1,0.686155734,0.961659138,0.407853286,0.009356228,0.115824807,0.26847725,0.724496596,0.448993192,0.967935879,0.929173916,0.002389389,0.102329353,0.410242676,0.111685581,0,0.128389025,-0.318769312,108.5885144,0.318769312,71.41148558,0,0.893146758,0.410242676,0.226355823,0.558388034,4,6,36% -2018-04-01 15:00:00,77.75468349,93.55451599,143.5616388,465.7880342,44.76902594,44.5013029,0,44.5013029,43.41907463,1.082228274,86.03622757,49.87809484,36.15813273,1.349951312,34.80818142,1.357075236,1.632834334,-4.223638328,4.223638328,0.747561617,0.747561617,0.311845325,0.8942272,28.76142064,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.73606606,0.97803513,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.647864562,27.64657151,42.38393062,28.62460664,0,49.87809484,-0.107083246,96.14720462,0.107083246,83.85279538,0,0.583073551,42.38393062,57.70720451,80.15214183,4,7,89% -2018-04-01 16:00:00,66.07515081,103.3481898,356.7656748,705.1547118,70.79860036,155.9185358,84.56532409,71.35321169,68.66376134,2.689450355,88.63680736,0,88.63680736,2.13483902,86.50196834,1.153228935,1.803766188,-1.882858767,1.882858767,0.852141502,0.852141502,0.198445662,2.370705788,76.2500474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.00221915,1.546683603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717568273,73.29444587,67.71978743,74.84112947,84.56532409,0,0.119924497,83.11225489,-0.119924497,96.88774511,0.633071005,0,121.2556421,74.84112947,170.2376645,4,8,40% -2018-04-01 17:00:00,54.88633186,114.7663214,552.032163,809.2257761,86.56516586,364.7698799,276.6535216,88.11635835,83.95490672,4.161451624,136.4568483,0,136.4568483,2.610259142,133.8465891,0.957947205,2.003050178,-1.009694099,1.009694099,0.70282155,0.70282155,0.156811816,3.118686072,100.3076645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.70064972,1.891123863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259477443,96.41954249,82.96012716,98.31066635,276.6535216,0,0.341874332,70.00889029,-0.341874332,109.9911097,0.903747429,0,332.985036,98.31066635,397.3274009,4,9,19% -2018-04-01 18:00:00,44.82850211,129.3020123,708.0990117,861.4440337,97.14556693,567.6234511,468.0692319,99.55421911,94.21626966,5.337949453,174.6161007,0,174.6161007,2.929297272,171.6868035,0.782404961,2.256745843,-0.507465694,0.507465694,0.616935434,0.616935434,0.137192067,3.573697661,114.9424013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56426209,2.122265902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.58913179,110.4870082,93.15339388,112.6092741,468.0692319,0,0.543354198,57.08773313,-0.543354198,122.9122669,0.957978994,0,541.5538857,112.6092741,615.2544034,4,10,14% -2018-04-01 19:00:00,37.02222674,148.8904553,812.4201397,887.7107639,103.6701011,737.449999,630.7815678,106.6684312,100.544065,6.124366181,200.1067048,0,200.1067048,3.126036049,196.9806687,0.646159753,2.59862867,-0.145316117,0.145316117,0.555004209,0.555004209,0.127606513,3.74681723,120.5105217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64677967,2.264802476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.714556329,115.8392973,99.361336,118.1040998,630.7815678,0,0.710571048,44.71860363,-0.710571048,135.2813964,0.97963406,0,717.296444,118.1040998,794.5932152,4,11,11% -2018-04-01 20:00:00,33.21140402,174.1870489,857.2471265,897.4654923,106.3778557,856.4245669,746.792105,109.6324618,103.1701709,6.462290942,211.0571755,0,211.0571755,3.207684843,207.8494907,0.579648349,3.040137518,0.160450935,-0.160450935,0.502714964,0.502714964,0.124092403,3.647473775,117.3152947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.17109254,2.323956749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642582334,112.7679236,101.8136749,115.0918803,746.792105,0,0.832112333,33.68365888,-0.832112333,146.3163411,0.989911959,0,841.0721105,115.0918803,916.3974444,4,12,9% -2018-04-01 21:00:00,34.77696476,200.9480687,839.3401867,893.665797,105.3022319,912.4814766,804.0271946,108.4542819,102.1269811,6.327300866,206.6829966,0,206.6829966,3.175250815,203.5077458,0.606972539,3.507205424,0.455106635,-0.455106635,0.452325871,0.452325871,0.125458346,3.296752559,106.0348948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1683388,2.300458407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388486006,101.9247741,100.5568248,104.2252325,804.0271946,0,0.89969561,25.88191464,-0.89969561,154.1180854,0.994425649,0,900.1020893,104.2252325,968.3154195,4,13,8% -2018-04-01 22:00:00,41.09416123,223.1349619,760.0121554,875.1993761,100.4353181,898.453699,795.3175836,103.1361154,97.40682271,5.729292658,187.3022416,0,187.3022416,3.028495408,184.2737462,0.717228417,3.894439762,0.778045187,-0.778045187,0.397100126,0.397100126,0.132149621,2.731572713,87.85676818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63114304,2.194134614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979015132,84.45126737,95.61015817,86.64540198,795.3175836,0,0.90872732,24.66993515,-0.90872732,155.3300649,0.994977994,0,886.9336521,86.64540198,943.6413348,4,14,6% -2018-04-01 23:00:00,50.3527546,239.6167462,625.1009774,836.0228689,91.66895396,811.4414027,717.8243307,93.61707198,88.90479677,4.712275211,154.3271263,0,154.3271263,2.764157184,151.5629691,0.878821355,4.182101164,1.18700316,-1.18700316,0.327164194,0.327164194,0.146646634,2.006643704,64.54055931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.45867232,2.00262247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453806533,62.03884053,86.91247885,64.041463,717.8243307,0,0.858618056,30.83822937,-0.858618056,149.1617706,0.99176689,0,798.8268826,64.041463,840.7407393,4,15,5% -2018-04-01 00:00:00,61.14453365,252.169966,444.9989842,759.5989342,78.4151905,651.2597629,571.8544894,79.4052735,76.05068319,3.354590311,110.2596631,0,110.2596631,2.364507315,107.8951557,1.067173432,4.401196181,1.813528007,-1.813528007,0.220022135,0.220022135,0.176214313,1.199149965,38.56878491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.10280941,1.713077501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.868780067,37.07378309,73.97158948,38.78686059,571.8544894,0,0.752837404,41.16323602,-0.752837404,138.836764,0.983584596,0,636.4388567,38.78686059,661.8240812,4,16,4% -2018-04-01 01:00:00,72.6611619,262.5293251,236.0102096,597.0922694,58.06358145,415.602339,357.5104441,58.09189489,56.31275024,1.779144651,58.97423895,0,58.97423895,1.750831213,57.22340774,1.268176513,4.582001106,3.126703062,-3.126703062,0,0,0.246021482,0.437707803,14.07818756,0.00452347,1,0.309544828,0,0.922868727,0.96163069,0.724496596,1,54.14219506,1.268471253,0.000771918,0.312029739,0.997813438,0.722310034,0.961238037,0.922476074,0.316706224,13.53248937,54.45890128,14.80096063,355.8932562,0,0.598752425,53.2194012,-0.598752425,126.7805988,0.966493031,0,398.4272533,14.80096063,408.114186,4,17,2% -2018-04-01 02:00:00,84.37455884,271.8972778,37.47375514,188.6712421,18.97929383,95.65407388,76.96458279,18.68949109,18.4069981,0.282492995,9.658241525,0,9.658241525,0.572295735,9.08594579,1.472613857,4.745502724,9.419915946,-9.419915946,0,0,0.506468961,0.143073934,4.601749524,0.519403325,1,0.105761951,0,0.950577603,0.989339566,0.724496596,1,17.84018171,0.414626312,0.071278049,0.312029739,0.817834739,0.542331335,0.961238037,0.922476074,0.098066983,4.423376678,17.93824869,4.83800299,36.98892262,0,0.407929592,65.9251588,-0.407929592,114.0748412,0.927429829,0,52.24287885,4.83800299,55.40925505,4,18,6% -2018-04-01 03:00:00,96.27222289,281.1579892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680267268,4.907132631,-7.78583559,7.78583559,1,0.138390008,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.18826596,79.14839511,-0.18826596,100.8516049,0.784418267,0,0,0,0,4,19,0% -2018-04-01 04:00:00,107.6329404,291.1076596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878549193,5.080787137,-2.370526284,2.370526284,1,0.935537559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039053648,92.23817836,0.039053648,87.76182164,0,0,0,0,0,4,20,0% -2018-04-01 05:00:00,118.1876545,302.6269266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062763707,5.281836275,-1.13264069,1.13264069,1,0.723846655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260888063,105.1227632,0.260888063,74.87723682,0,0.858346923,0,0,0,4,21,0% -2018-04-01 06:00:00,127.3023113,316.7561425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221844478,5.528437612,-0.518002726,0.518002726,1,0.618737373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462105928,117.5230829,0.462105928,62.47691712,0,0.9417997,0,0,0,4,22,0% -2018-04-01 07:00:00,134.0093649,334.4260024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338904646,5.836834845,-0.100549437,0.100549437,1,0.547348656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628982522,128.9750947,0.628982522,51.02490528,0,0.970506535,0,0,0,4,23,0% -2018-04-02 08:00:00,137.1021045,355.380072,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392883134,6.202552353,0.246440206,-0.246440206,1,0.488009932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750134978,138.6020715,0.750134978,41.39792852,0,0.983345329,0,0,0,4,0,0% -2018-04-02 09:00:00,135.7918344,17.05869986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370014608,0.297730479,0.586202029,-0.586202029,1,0.429907239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817297802,144.815201,0.817297802,35.18479897,0,0.988822789,0,0,0,4,1,0% -2018-04-02 10:00:00,130.433942,36.23894743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276501744,0.63248895,0.975675911,-0.975675911,1,0.363303282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825885955,145.6784166,0.825885955,34.32158342,0,0.989458953,0,0,0,4,2,0% -2018-04-02 11:00:00,122.1737995,51.74654361,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132335061,0.903147563,1.509597096,-1.509597096,1,0.271997382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775307163,140.8328894,0.775307163,39.16711063,0,0.985509431,0,0,0,4,3,0% -2018-04-02 12:00:00,112.1151694,64.20227823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956778847,1.120541142,2.448245933,-2.448245933,1,0.111478977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669002225,131.9901027,0.669002225,48.00989728,0,0.975261833,0,0,0,4,4,0% -2018-04-02 13:00:00,101.0191662,74.6694369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763117059,1.303227524,5.118337319,-5.118337319,1,0,#DIV/0!,0,0,0.256579389,1,0.192945427,0,0.939837805,0.978599768,0.724496596,1,0,0,0.039137158,0.312029739,0.895015339,0.619511935,0.961238037,0.922476074,0,0,0,0,0,0,-0.514210529,120.9447002,0.514210529,59.05529979,0,0.952763562,0,0,0,4,5,0% -2018-04-02 14:00:00,88.97569254,84.0945997,0.89795958,7.600972365,0.762080148,0.745869819,0,0.745869819,0.73910062,0.006769199,2.634034454,2.393334229,0.240700225,0.022979528,0.217720696,1.552918789,1.467727648,-54.24637655,54.24637655,0,0,0.84867979,0.005744882,0.184775155,1,0.886451771,0,0.018432323,0.961238037,1,0.673555542,0.949058947,0.710451629,0.016196855,0.115824807,0.254177287,0.724496596,0.448993192,0.970048719,0.931286756,0.004162147,0.178427642,0.714613776,0.194624497,0,0.271758864,-0.314872113,108.3530935,0.314872113,71.64690645,0,0.891205372,0.714613776,0.436817456,1.000502065,4,6,40% -2018-04-02 15:00:00,77.4626,93.28943536,148.7076126,474.6233497,45.67787174,45.42153617,0,45.42153617,44.30051538,1.121020798,86.16541974,48.73218104,37.43323871,1.377356366,36.05588234,1.351977417,1.628207804,-4.130411747,4.130411747,0.763504302,0.763504302,0.307165659,0.937338915,30.14804159,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.58334043,0.997889999,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.679098853,28.97944432,43.26243928,29.97733431,0,48.73218104,-0.102675482,95.89325756,0.102675482,84.10674244,0,0.563028824,43.26243928,57.41495692,80.83938029,4,7,87% -2018-04-02 16:00:00,65.77399211,103.0748609,362.1737817,708.7428129,71.35036488,159.9774189,88.04831179,71.92910707,69.19888812,2.730218949,89.96470322,0,89.96470322,2.151476756,87.81322647,1.147972724,1.798995699,-1.862280332,1.862280332,0.848622383,0.848622383,0.197005881,2.398346266,77.13906018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.51660337,1.558737586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.737593705,74.14899877,68.25419708,75.70773636,88.04831179,0,0.124231682,82.86361144,-0.124231682,97.13638856,0.647526177,0,125.2677838,75.70773636,174.8169831,4,8,40% -2018-04-02 17:00:00,54.566725,114.4899316,557.2556684,811.1229591,87.00350969,369.2225867,280.6417252,88.58086148,84.38003287,4.200828614,137.7365653,0,137.7365653,2.623476826,135.1130885,0.952369013,1.998226267,-1.002580568,1.002580568,0.701605064,0.701605064,0.156128532,3.14303068,101.0906708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10929714,1.90070003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.277115028,97.1721979,83.38641217,99.07289793,280.6417252,0,0.345991594,69.75766192,-0.345991594,110.2423381,0.905487818,0,337.5040757,99.07289793,402.345306,4,9,19% -2018-04-02 18:00:00,44.48001204,129.0490058,713.0292107,862.6540517,97.52992548,572.023927,472.0597733,99.96415375,94.58903838,5.375115375,175.8230744,0,175.8230744,2.9408871,172.8821873,0.776322661,2.252330048,-0.505053301,0.505053301,0.616522891,0.616522891,0.13678251,3.59582239,115.6540086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92258156,2.130662693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605161081,111.1710322,93.52774264,113.3016949,472.0597733,0,0.54721794,56.8236394,-0.54721794,123.1763606,0.958628727,0,546.057802,113.3016949,620.2114953,4,10,14% -2018-04-02 19:00:00,36.64160202,148.7397476,817.0203173,888.6010623,104.0207321,741.6260178,634.5828503,107.0431674,100.8841232,6.159044262,201.2326439,0,201.2326439,3.136608867,198.0960351,0.639516598,2.595998325,-0.145237294,0.145237294,0.55499073,0.55499073,0.127317191,3.767167475,121.1650556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97365652,2.272462447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.729300012,116.4684601,99.70295653,118.7409226,634.5828503,0,0.714136948,44.42748653,-0.714136948,135.5725135,0.979985418,0,721.5848963,118.7409226,799.2984553,4,11,11% -2018-04-02 20:00:00,32.82262072,174.2658777,861.5170133,898.2091762,106.7045354,860.3068106,750.3253315,109.9814791,103.4869999,6.494479153,212.1023096,0,212.1023096,3.217535439,208.8847742,0.572862801,3.041513339,0.158945791,-0.158945791,0.502972358,0.502972358,0.123856562,3.666344509,117.9222424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47564065,2.331093473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.656254116,113.3513448,102.1318948,115.6824382,750.3253315,0,0.83535701,33.34696921,-0.83535701,146.6530308,0.990145352,0,845.063034,115.6824382,920.7748762,4,12,9% -2018-04-02 21:00:00,34.42994425,201.2656552,843.3065225,894.3722255,105.6121055,916.061095,807.2763833,108.7847116,102.4275109,6.357200781,207.6540245,0,207.6540245,3.184594648,204.4694299,0.600915888,3.512748355,0.452110631,-0.452110631,0.452838218,0.452838218,0.125235727,3.314405595,106.6026771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45721947,2.307227982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401275571,102.4705481,100.858495,104.7777761,807.2763833,0,0.902617904,25.49565842,-0.902617904,154.5043416,0.994605575,0,903.7800862,104.7777761,972.3550451,4,13,8% -2018-04-02 22:00:00,40.81210639,223.5481494,763.7228432,875.9734825,100.7362045,901.7727929,798.3168912,103.4559016,97.69863626,5.75726539,188.2110137,0,188.2110137,3.037568243,185.1734454,0.712305631,3.901651243,0.773140196,-0.773140196,0.397938929,0.397938929,0.131901521,2.748240422,88.39285898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.91164532,2.200707852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.99109083,84.96657824,95.90273615,87.16728609,798.3168912,0,0.91134824,24.30766176,-0.91134824,155.6923382,0.99513623,0,890.3367978,87.16728609,947.3860432,4,14,6% -2018-04-02 23:00:00,50.12370585,240.0288884,628.6175678,837.026916,91.97268828,814.60091,720.6627529,93.93815714,89.19937238,4.738784756,155.1889231,0,155.1889231,2.773315895,152.4156072,0.8748237,4.189294402,1.178912281,-1.178912281,0.328547816,0.328547816,0.146309446,2.022454635,65.04909322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.7418296,2.009257925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465261499,62.52766266,87.2070911,64.53692059,720.6627529,0,0.860979186,30.57329575,-0.860979186,149.4267043,0.991926587,0,802.0516358,64.53692059,844.2897596,4,15,5% -2018-04-02 00:00:00,60.94882885,252.5566034,448.3806511,761.2051796,78.74660609,654.4602774,574.7080893,79.75218811,76.37210537,3.380082744,111.0895807,0,111.0895807,2.374500718,108.71508,1.063757739,4.407944277,1.798462174,-1.798462174,0.222598544,0.222598544,0.175624452,1.213886577,39.04276503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.41177263,1.720317687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.879456693,37.52939081,74.29122933,39.24970849,574.7080893,0,0.754997607,40.9748393,-0.754997607,139.0251607,0.983774625,0,639.6744641,39.24970849,665.3626133,4,16,4% -2018-04-02 01:00:00,72.48242101,262.8933818,239.2467767,600.4877292,58.50093312,419.3022915,360.7618341,58.54045741,56.73691414,1.803543261,59.77216988,0,59.77216988,1.764018979,58.0081509,1.265056897,4.588355094,3.088325039,-3.088325039,0.002019003,0.002019003,0.244521301,0.443755715,14.27270919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.53767997,1.278025745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321499505,13.71947096,54.85917947,14.9974967,360.7618341,0,0.600781359,53.07412111,-0.600781359,126.9258789,0.966775048,0,403.6347188,14.9974967,413.4502805,4,17,2% -2018-04-02 02:00:00,84.20229163,272.2480142,39.71477995,197.1371241,19.8006766,100.3022476,80.79924767,19.50299993,19.20361314,0.299386787,10.22637166,0,10.22637166,0.597063456,9.6293082,1.469607227,4.751624231,9.115532013,-9.115532013,0,0,0.498571983,0.149265864,4.800903286,0.50707206,1,0.109265937,0,0.950179385,0.988941348,0.724496596,1,18.61379797,0.432570442,0.069915909,0.312029739,0.820939088,0.545435684,0.961238037,0.922476074,0.102267382,4.61481085,18.71606535,5.047381291,39.8282067,0,0.409863175,65.80376001,-0.409863175,114.19624,0.92800807,0,55.67696256,5.047381291,58.98037267,4,18,6% -2018-04-02 03:00:00,96.08796793,281.5046866,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677051412,4.913183641,-7.993841939,7.993841939,1,0.102818827,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190301563,79.02961641,-0.190301563,100.9703836,0.787259121,0,0,0,0,4,19,0% -2018-04-02 04:00:00,107.4286374,291.4569943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874983433,5.086884179,-2.387324834,2.387324834,1,0.938410281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036894422,92.11437454,0.036894422,87.88562546,0,0,0,0,0,4,20,0% -2018-04-02 05:00:00,117.950585,302.9788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058626064,5.287979046,-1.13476291,1.13476291,1,0.724209576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258531397,104.9829383,0.258531397,75.01706175,0,0.856599892,0,0,0,4,21,0% -2018-04-02 06:00:00,127.0195971,317.0943973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216910183,5.534341272,-0.516137064,0.516137064,1,0.618418326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459491607,117.3543067,0.459491607,62.64569332,0,0.941184084,0,0,0,4,22,0% -2018-04-02 07:00:00,133.6737485,334.7029614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333047035,5.841668692,-0.096695103,0.096695103,1,0.546689526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626068087,128.7606252,0.626068087,51.2393748,0,0.970136482,0,0,0,4,23,0% -2018-04-03 08:00:00,136.7239699,355.5227806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38628344,6.205043087,0.251982434,-0.251982434,1,0.487062156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746898652,138.322439,0.746898652,41.67756102,0,0.983056513,0,0,0,4,0,0% -2018-04-03 09:00:00,135.4018012,17.03348841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363207244,0.297290456,0.593893092,-0.593893092,1,0.428591989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813739999,144.4629657,0.813739999,35.53703434,0,0.988555312,0,0,0,4,1,0% -2018-04-03 10:00:00,130.0607291,36.08900393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269987949,0.629871942,0.986916263,-0.986916263,1,0.361381069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822029261,145.2884495,0.822029261,34.71155047,0,0.989174915,0,0,0,4,2,0% -2018-04-03 11:00:00,121.8279011,51.53334401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126297995,0.899426527,1.52812497,-1.52812497,1,0.268828929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771194794,140.4613018,0.771194794,39.53869816,0,0.985165537,0,0,0,4,3,0% -2018-04-03 12:00:00,111.7941402,63.96306401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951175831,1.116366067,2.487050778,-2.487050778,1,0.104842958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664695057,131.6589352,0.664695057,48.34106476,0,0.974777536,0,0,0,4,4,0% -2018-04-03 13:00:00,100.7159402,74.41941669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757824765,1.298863849,5.268579969,-5.268579969,1,0,#DIV/0!,0,0,0.270513107,1,0.187573217,0,0.940548983,0.979310946,0.724496596,1,0,0,0.04102079,0.312029739,0.89026633,0.614762926,0.961238037,0.922476074,0,0,0,0,0,0,-0.509782921,120.6493713,0.509782921,59.35062871,0,0.951919037,0,0,0,4,5,0% -2018-04-03 14:00:00,88.71369196,83.83756069,1.456187572,11.37900161,1.200746912,1.17551732,0,1.17551732,1.164539963,0.010977357,3.927185893,3.537909407,0.389276486,0.03620695,0.353069536,1.548346016,1.463241471,-43.24281244,43.24281244,0,0,0.824582585,0.009051737,0.291134991,1,0.855597965,0,0.023121109,0.961238037,1,0.661021622,0.936525026,1.119400108,0.025374007,0.115824807,0.239960824,0.724496596,0.448993192,0.972106195,0.933344232,0.006557953,0.281384556,1.125958061,0.306758563,0,0.510881319,-0.310915626,108.114419,0.310915626,71.88558099,0,0.889184667,1.125958061,0.761026399,1.624034618,4,6,44% -2018-04-03 15:00:00,77.17213867,93.02452665,153.8440934,483.1841433,46.566265,46.32186206,0,46.32186206,45.1621203,1.15974176,86.19500005,47.48957376,38.70542629,1.404144701,37.30128159,1.346907911,1.623584275,-4.041782373,4.041782373,0.778660817,0.778660817,0.302684776,0.980743527,31.5440831,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.41154786,1.017298056,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.710545346,30.32137251,44.1220932,31.33867057,0,47.48957376,-0.098284628,95.64040027,0.098284628,84.35959973,0,0.541273447,44.1220932,57.04351586,81.45593346,4,7,85% -2018-04-03 16:00:00,65.47477649,102.8010185,367.5380998,712.2341599,71.89411746,164.0265934,91.52969142,72.496902,69.72624456,2.770657445,91.2817404,0,91.2817404,2.167872902,89.1138675,1.142750427,1.794216248,-1.842284246,1.842284246,0.845202851,0.845202851,0.195609972,2.425662707,78.01765081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02351843,1.570616538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757384374,74.9935335,68.78090281,76.56415004,91.52969142,0,0.128510673,82.6164617,-0.128510673,97.3835383,0.660927258,0,129.2753708,76.56415004,179.3850757,4,8,39% -2018-04-03 17:00:00,54.24926986,114.2120782,562.424255,812.9731725,87.4365429,373.6383192,284.5985191,89.03980012,84.80000852,4.239791603,139.0028065,0,139.0028065,2.636534375,136.3662721,0.946828376,1.993376811,-0.995620727,0.995620727,0.700414861,0.700414861,0.155463677,3.167079677,101.8641692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51299372,1.910160179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294538445,97.91571401,83.80753216,99.82587419,284.5985191,0,0.350071231,69.50832803,-0.350071231,110.491672,0.907171925,0,341.9873186,99.82587419,407.3213568,4,9,19% -2018-04-03 18:00:00,44.13368188,128.7933873,717.8985517,863.8345511,97.90974476,576.3734534,476.0042262,100.3692272,94.95740471,5.411822524,177.0151555,0,177.0151555,2.952340053,174.0628154,0.77027806,2.247868664,-0.502689714,0.502689714,0.616118694,0.616118694,0.136383817,3.617662063,116.3564476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.27666929,2.138960318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62098385,111.8462432,93.89765314,113.9852036,476.0042262,0,0.551036336,56.56186094,-0.551036336,123.4381391,0.959261882,0,550.5103631,113.9852036,625.1113991,4,10,14% -2018-04-03 19:00:00,36.2628146,148.5862945,821.5571774,889.4692652,104.3671386,745.7426717,638.3293424,107.4133293,101.2200843,6.19324503,202.3431036,0,202.3431036,3.147054302,199.1960493,0.632905511,2.593320062,-0.145168354,0.145168354,0.55497894,0.55497894,0.127035758,3.787246923,121.8108796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.2965951,2.280030129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743847504,117.0892508,100.0404426,119.3692809,638.3293424,0,0.717651938,44.13904115,-0.717651938,135.8609589,0.980328343,0,725.8127888,119.3692809,803.9375958,4,11,11% -2018-04-03 20:00:00,32.43543173,174.3452982,865.724313,898.9340408,107.027211,864.1252469,753.7991057,110.3261412,103.7999457,6.526195555,213.132148,0,213.132148,3.227265299,209.9048827,0.566105078,3.042899488,0.157451486,-0.157451486,0.5032279,0.5032279,0.12362736,3.684967522,118.5212225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.77645601,2.338142723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669746426,113.9271072,102.4462024,116.26525,753.7991057,0,0.838547737,33.01291951,-0.838547737,146.9870805,0.990373102,0,848.9885614,116.26525,925.0818422,4,12,9% -2018-04-03 21:00:00,34.0849858,201.5869139,847.2140065,895.060783,105.9182037,919.5759841,810.4649481,109.1110361,102.724379,6.386657046,208.6106692,0,208.6106692,3.193824637,205.4168446,0.594895228,3.518355376,0.44914257,-0.44914257,0.453345787,0.453345787,0.12501942,3.331843485,107.1635396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.74258042,2.313915077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.413909263,103.0096705,101.1564897,105.3235855,810.4649481,0,0.905485933,25.11119023,-0.905485933,154.8888098,0.994781031,0,907.391646,105.3235855,976.3238263,4,13,8% -2018-04-03 22:00:00,40.5324045,223.9638786,767.3811361,876.7286702,101.0335588,905.0293845,801.2575172,103.7718673,97.9870242,5.784843147,189.1069755,0,189.1069755,3.046534571,186.0604409,0.707423912,3.908907086,0.768285726,-0.768285726,0.398769093,0.398769093,0.131660206,2.764734339,88.92336005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.18885478,2.207203926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003040617,85.47651604,96.19189539,87.68371997,801.2575172,0,0.913917321,23.94756287,-0.913917321,156.0524371,0.995290456,0,893.6758549,87.68371997,951.063096,4,14,6% -2018-04-03 23:00:00,49.89672121,240.4417504,632.090566,838.0080855,92.27307481,817.7025803,723.4469134,94.25566684,89.49070116,4.764965683,156.0400495,0,156.0400495,2.782373657,153.2576758,0.870862071,4.196500204,1.170915933,-1.170915933,0.329915272,0.329915272,0.145980782,2.038141473,65.55363585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0218659,2.015820243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476626559,63.01264823,87.49849246,65.02846847,723.4469134,0,0.863293476,30.31158986,-0.863293476,149.6884101,0.992082268,0,805.2173473,65.02846847,847.7771793,4,15,5% -2018-04-03 00:00:00,60.7546714,252.9428586,451.7296225,762.7776434,79.0745254,657.6083084,577.512843,80.09546541,76.6901367,3.405328706,111.9114656,0,111.9114656,2.384388695,109.5270769,1.060369052,4.414685702,1.783614748,-1.783614748,0.225137604,0.225137604,0.175048351,1.228560829,39.51473942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.71747645,1.727481493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890088139,37.98307055,74.60756459,39.71055204,577.512843,0,0.757118209,40.78920004,-0.757118209,139.2108,0.983960114,0,642.8571676,39.71055204,668.8469297,4,16,4% -2018-04-03 01:00:00,72.30469537,263.2564369,242.4651935,603.8136093,58.93303409,422.950412,363.9666213,58.98379072,57.15598567,1.827805046,60.56554174,0,60.56554174,1.777048418,58.78849332,1.261954999,4.594691601,3.050782746,-3.050782746,0.008439114,0.008439114,0.243057708,0.45593798,14.66453273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.94050746,1.287465529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330325515,14.09610665,55.27083298,15.38357218,363.9666213,0,0.602779758,52.93075636,-0.602779758,127.0692436,0.967050964,0,407.2451049,15.38357218,417.3133452,4,17,2% -2018-04-03 02:00:00,84.03041428,272.5973101,41.99201343,205.5396251,20.61578405,104.9475732,84.63687754,20.31069564,19.9941421,0.316553535,10.80309178,0,10.80309178,0.621641953,10.18144982,1.466607401,4.757720594,8.829011148,-8.829011148,0,0,0.490945358,0.155410488,4.998535525,0.494871976,1,0.11278233,0,0.949776904,0.988538867,0.724496596,1,19.38145477,0.450377479,0.068555397,0.312029739,0.824054486,0.548551082,0.961238037,0.922476074,0.106439089,4.804782475,19.48789385,5.255159955,42.75245875,0,0.411778885,65.68336937,-0.411778885,114.3166306,0.92857561,0,59.1867843,5.255159955,62.62618139,4,18,6% -2018-04-03 03:00:00,95.90388539,281.8494964,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673838566,4.919201707,-8.214385428,8.214385428,1,0.06510367,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.192326855,78.91139197,-0.192326855,101.088608,0.790025905,0,0,0,0,4,19,0% -2018-04-03 04:00:00,107.2242195,291.8038514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871415668,5.092937977,-2.404500526,2.404500526,1,0.941347497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0347354,91.99059225,0.0347354,88.00940775,0,0,0,0,0,4,20,0% -2018-04-03 05:00:00,117.7132815,303.3275234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054484335,5.294063996,-1.136933998,1.136933998,1,0.724580854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256165845,104.8426779,0.256165845,75.15732207,0,0.854813948,0,0,0,4,21,0% -2018-04-03 06:00:00,126.7368265,317.4283336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211974906,5.540169561,-0.514269001,0.514269001,1,0.618098868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45686096,117.1847358,0.45686096,62.81526424,0,0.940557512,0,0,0,4,22,0% -2018-04-03 07:00:00,133.3386693,334.9751637,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3271988,5.84641952,-0.09282007,0.09282007,1,0.546026856,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623132049,128.5452158,0.623132049,51.45478421,0,0.969760186,0,0,0,4,23,0% -2018-04-04 08:00:00,136.3471537,355.6622865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379706758,6.207477925,0.25756106,-0.25756106,1,0.486108154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743637975,138.0422443,0.743637975,41.95775565,0,0.982762982,0,0,0,4,0,0% -2018-04-04 09:00:00,135.0134397,17.0080956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356429058,0.296847268,0.601645541,-0.601645541,1,0.427266243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810157817,144.1113535,0.810157817,35.88864653,0,0.98828363,0,0,0,4,1,0% -2018-04-04 10:00:00,129.6890473,35.94076305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26350088,0.627284651,0.998271902,-0.998271902,1,0.35943914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818150885,144.9001163,0.818150885,35.09988371,0,0.988886578,0,0,0,4,2,0% -2018-04-04 11:00:00,121.4833391,51.32216584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284254,0.895740773,1.546918499,-1.546918499,1,0.265615046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767065974,140.091142,0.767065974,39.90885797,0,0.984816559,0,0,0,4,3,0% -2018-04-04 12:00:00,111.4744049,63.72553366,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945595397,1.11222038,2.526750317,-2.526750317,1,0.098053937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660378851,131.3287725,0.660378851,48.6712275,0,0.974285885,0,0,0,4,4,0% -2018-04-04 13:00:00,100.4141085,74.17060443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752556808,1.294521255,5.426617032,-5.426617032,1,0,#DIV/0!,0,0,0.284616928,1,0.182232476,0,0.941249657,0.98001162,0.724496596,1,0,0,0.042904972,0.312029739,0.885543979,0.610040575,0.961238037,0.922476074,0,0,0,0,0,0,-0.505355357,120.3549446,0.505355357,59.64505543,0,0.951059721,0,0,0,4,5,0% -2018-04-04 14:00:00,88.44954255,83.58123916,2.198414126,16.23402859,1.75916539,1.722692637,0,1.722692637,1.706120063,0.016572574,5.568450768,4.982374483,0.586076284,0.053045327,0.533030957,1.543735739,1.458767816,-35.91203145,35.91203145,0,0,0.800197456,0.013261332,0.426530016,1,0.823678956,0,0.027838627,0.961238037,1,0.648585162,0.924088566,1.6399875,0.036981198,0.115824807,0.225863825,0.724496596,0.448993192,0.974103609,0.935341646,0.00960779,0.412569287,1.64959529,0.449550485,0,0.878497472,-0.306909308,107.8730694,0.306909308,72.1269306,0,0.887085423,1.64959529,1.228852787,2.453854861,4,6,49% -2018-04-04 15:00:00,76.88343849,92.75979709,158.9667228,491.4764382,47.43458449,47.20261506,0,47.20261506,46.00425675,1.198358304,86.12978637,46.15613624,39.97365014,1.430327737,38.5433224,1.341869142,1.618963873,-3.957456142,3.957456142,0.793081452,0.793081452,0.298393171,1.024386079,32.94777759,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22104145,1.036267577,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.742164227,31.67065705,44.96320567,32.70692463,0,46.15613624,-0.093913223,95.38877241,0.093913223,84.61122759,0,0.517593609,44.96320567,56.59704577,82.00484019,4,7,82% -2018-04-04 16:00:00,65.17763956,102.5266682,372.8560319,715.6304489,72.42984465,168.0630607,95.00649688,73.05656386,70.2458176,2.810746263,92.58728876,0,92.58728876,2.184027054,90.40326171,1.137564409,1.789427931,-1.822856247,1.822856247,0.841880467,0.841880467,0.194256867,2.452646711,78.88554915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.5229518,1.582320166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776934193,75.8277904,69.299886,77.41011057,95.00649688,0,0.132759159,82.37093717,-0.132759159,97.62906283,0.673378152,0,133.2751853,77.41011057,183.9385544,4,8,38% -2018-04-04 17:00:00,53.93410461,113.9327491,567.5358432,814.7769278,87.86419403,378.0147206,288.5216313,89.49308931,85.2147644,4.278324914,140.2550655,0,140.2550655,2.649429634,137.6056359,0.941327705,1.988501598,-0.988814349,0.988814349,0.699250902,0.699250902,0.154816995,3.19082595,102.6279309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.91167284,1.919502751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311742538,98.64987085,84.22341538,100.5693736,288.5216313,0,0.354111195,69.26101861,-0.354111195,110.7389814,0.908801414,0,346.4322818,100.5693736,412.2529255,4,9,19% -2018-04-04 18:00:00,43.78965155,128.5350925,722.7054147,864.9857787,98.28495913,580.6701121,479.9007484,100.7693637,95.32130498,5.448058688,178.1919491,0,178.1919491,2.963654151,175.228295,0.764273598,2.243360569,-0.500376276,0.500376276,0.615723072,0.615723072,0.13599588,3.639211412,117.0495487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.62646406,2.147157343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.636596279,112.5124784,94.26306034,114.6596358,479.9007484,0,0.554807675,56.30253109,-0.554807675,123.6974689,0.95987868,0,554.9095573,114.6596358,629.9519957,4,10,14% -2018-04-04 19:00:00,35.88599265,148.4299472,826.0295595,890.3155613,104.7092738,749.7985027,642.0196401,107.7788626,101.5519029,6.226959736,203.4378011,0,203.4378011,3.157370941,200.2804301,0.626328727,2.590591288,-0.145110779,0.145110779,0.554969094,0.554969094,0.126762139,3.807052117,122.4478827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.61555174,2.287504499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758196299,117.7015624,100.373748,119.9890669,642.0196401,0,0.721114701,43.85341091,-0.721114701,136.1465891,0.980662903,0,729.9785921,119.9890669,808.5090366,4,11,11% -2018-04-04 20:00:00,32.0499351,174.4251649,869.8683054,899.6402827,107.3458574,867.8789063,757.2124879,110.6664184,104.1089837,6.55743472,214.1465153,0,214.1465153,3.236873663,210.9096416,0.559376893,3.044293426,0.155966551,-0.155966551,0.503481839,0.503481839,0.123404723,3.703340929,119.1121744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0735151,2.34510395,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683057897,114.4951527,102.756573,116.8402567,757.2124879,0,0.841683618,32.68166513,-0.841683618,147.3183349,0.990595256,0,852.8476712,116.8402567,929.3172823,4,12,9% -2018-04-04 21:00:00,33.74215952,201.9117138,851.0623126,895.7317111,106.2205226,923.0256639,813.5924148,109.4332491,103.0175819,6.415667202,209.5528516,0,209.5528516,3.202940667,206.3499109,0.58891178,3.524024204,0.446200908,-0.446200908,0.45384884,0.45384884,0.124809337,3.34906556,107.7174607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02441817,2.32051961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.426386597,103.5421205,101.4508048,105.8626401,813.5924148,0,0.90829922,24.72863559,-0.90829922,155.2713644,0.994952061,0,910.9362547,105.8626401,980.2212354,4,13,8% -2018-04-04 22:00:00,40.2550885,224.3819678,770.9870278,877.4652689,101.3273976,908.2234532,804.1394246,104.0840286,98.2720027,5.812025882,189.990126,0,189.990126,3.055394896,186.9347311,0.702583835,3.91620412,0.763479912,-0.763479912,0.399590935,0.399590935,0.131425554,2.781054555,89.44827431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46278696,2.213623201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014864558,85.9810836,96.47765151,88.1947068,804.1394246,0,0.916434477,23.58972983,-0.916434477,156.4102702,0.995440726,0,896.9507839,88.1947068,954.6724556,4,14,6% -2018-04-04 23:00:00,49.67180249,240.8551531,635.5201856,838.9668796,92.57015108,820.7467974,726.1771583,94.56963908,89.77881948,4.790819604,156.8805584,0,156.8805584,2.791331603,154.0892268,0.866936499,4.203715442,1.163011274,-1.163011274,0.331267048,0.331267048,0.145660442,2.053704525,66.05419707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.29881618,2.022310244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487901937,63.49380672,87.78671812,65.51611696,726.1771583,0,0.865561175,30.05315397,-0.865561175,149.946846,0.992234008,0,808.3243904,65.51611696,851.2033786,4,15,5% -2018-04-04 00:00:00,60.56204783,253.3285762,455.0462035,764.3172262,79.39901553,660.7045892,580.2694164,80.43517276,77.00484226,3.430330494,112.7253936,0,112.7253936,2.39417327,110.3312204,1.057007136,4.421417743,1.768979318,-1.768979318,0.22764041,0.22764041,0.174485613,1.24317251,39.9847013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01998341,1.734570384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900674252,38.43481578,74.92065766,40.16938617,580.2694164,0,0.75919971,40.60630321,-0.75919971,139.3936968,0.984141176,0,645.9876836,40.16938617,672.2777435,4,16,4% -2018-04-04 01:00:00,72.12796808,263.6183542,245.6656217,607.0720106,59.360033,426.547792,367.1257518,59.42204021,57.57010899,1.851931226,61.35439821,0,61.35439821,1.78992401,59.5644742,1.258870526,4.60100825,3.014045334,-3.014045334,0.014721581,0.014721581,0.241629385,0.46815673,15.05752973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.33857855,1.296793852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339177958,14.47387032,55.6777565,15.77066417,367.1257518,0,0.604748276,52.78926982,-0.604748276,127.2107302,0.967320971,0,410.8061953,15.77066417,421.1277796,4,17,3% -2018-04-04 02:00:00,83.85892492,272.9450402,44.30332515,213.8708341,21.42409056,109.5855488,88.47349644,21.11205236,20.77807518,0.333977179,11.38786948,0,11.38786948,0.646015377,10.74185411,1.463614347,4.763789628,8.558809824,-8.558809824,0,0,0.483577485,0.161503844,5.194518795,0.482800262,1,0.116311322,0,0.949370112,0.988132075,0.724496596,1,20.14263571,0.468035941,0.067196434,0.312029739,0.827181061,0.551677657,0.961238037,0.922476074,0.110580192,4.993169049,20.2532159,5.46120499,45.75846918,0,0.41367724,65.5639564,-0.41367724,114.4360436,0.929132824,0,62.76891157,5.46120499,66.34316101,4,18,6% -2018-04-04 03:00:00,95.71997174,282.1922984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670628667,4.925184731,-8.448679911,8.448679911,1,0.025036953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.19434249,78.79368375,-0.19434249,101.2063163,0.792722243,0,0,0,0,4,19,0% -2018-04-04 04:00:00,107.0196991,292.1481128,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867846113,5.098946473,-2.422072672,2.422072672,1,0.944352511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032576093,91.86680294,0.032576093,88.13319706,0,0,0,0,0,4,20,0% -2018-04-04 05:00:00,117.4757783,303.6727408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050339122,5.300089175,-1.139158709,1.139158709,1,0.724961302,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.253791182,104.7019688,0.253791182,75.29803117,0,0.852987639,0,0,0,4,21,0% -2018-04-04 06:00:00,126.4540602,317.757862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207039704,5.545920916,-0.512401323,0.512401323,1,0.617779477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.4542141,117.0143795,0.4542141,62.98562053,0,0.939919754,0,0,0,4,22,0% -2018-04-04 07:00:00,133.0042103,335.2425575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321361388,5.851086421,-0.088926647,0.088926647,1,0.545361042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620174913,128.3289086,0.620174913,51.67109136,0,0.969377584,0,0,0,4,23,0% -2018-04-05 08:00:00,135.9717516,355.79854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373154755,6.209855997,0.26317383,-0.26317383,1,0.485148314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740353869,137.7615685,0.740353869,42.23843146,0,0.982464728,0,0,0,4,0,0% -2018-04-05 09:00:00,134.6268603,16.98242644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349681974,0.296399256,0.609456984,-0.609456984,1,0.425930407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806552593,143.7604651,0.806552593,36.23953494,0,0.988007762,0,0,0,4,1,0% -2018-04-05 10:00:00,129.3190252,35.79412617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257042776,0.624725355,1.009740336,-1.009740336,1,0.357477922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814252543,144.513522,0.814252543,35.48647801,0,0.98859399,0,0,0,4,2,0% -2018-04-05 11:00:00,121.1402513,51.1129451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114296241,0.892089182,1.56597651,-1.56597651,1,0.262355934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762922749,139.722543,0.762922749,40.27745705,0,0.984462565,0,0,0,4,3,0% -2018-04-05 12:00:00,111.1561021,63.48965644,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940039966,1.108103546,2.567360931,-2.567360931,1,0.091109113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656055898,130.9997623,0.656055898,49.00023773,0,0.973786982,0,0,0,4,4,0% -2018-04-05 13:00:00,100.1138073,73.92299149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747315563,1.290199594,5.593006888,-5.593006888,1,0,#DIV/0!,0,0,0.29888858,1,0.176925221,0,0.941939659,0.980701622,0.724496596,1,0,0,0.044788982,0.312029739,0.880850122,0.605346718,0.961238037,0.922476074,0,0,0,0,0,0,-0.500930276,120.0615657,0.500930276,59.93843433,0,0.95018571,0,0,0,4,5,0% -2018-04-05 14:00:00,88.1838356,83.32563987,3.140286268,22.20453631,2.436563659,2.386765079,0,2.386765079,2.363092275,0.023672804,7.559800737,6.72493059,0.834870147,0.073471384,0.761398763,1.539098278,1.454306767,-30.68800596,30.68800596,0,0,0.77590495,0.018367846,0.590773069,1,0.790712306,0,0.032574494,0.961238037,1,0.636276428,0.911779832,2.271494179,0.050984431,0.115824807,0.211920814,0.724496596,0.448993192,0.976036918,0.937274955,0.013307442,0.571823737,2.284801621,0.622808168,0,1.407445219,-0.302862915,107.6296378,0.302862915,72.37036216,0,0.884908807,2.284801621,1.868268837,3.507546209,4,6,54% -2018-04-05 15:00:00,76.59663548,92.49525835,164.0713118,499.5064219,48.28321241,48.06413426,0,48.06413426,46.82729541,1.236838852,85.97457287,44.73766678,41.23690609,1.455917,39.78098909,1.336863485,1.614346801,-3.877163352,3.877163352,0.806812328,0.806812328,0.29428187,1.068213137,34.35740645,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.01217751,1.05480691,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.773916782,33.02564593,45.78609429,34.08045284,0,44.73766678,-0.089563747,95.13851028,0.089563747,84.86148972,0,0.491738408,45.78609429,56.07968187,82.48912448,4,7,80% -2018-04-05 16:00:00,64.88271437,102.2518209,378.1250614,718.9333799,72.95753639,172.0838869,98.47582294,73.60806392,70.75759748,2.850466433,93.88073781,0,93.88073781,2.199938907,91.68079891,1.132416993,1.784630941,-1.803982385,1.803982385,0.838652847,0.838652847,0.192945519,2.479290258,79.74249721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0148941,1.593848249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796237352,76.65152147,69.81113145,78.24536972,98.47582294,0,0.136974893,82.12716606,-0.136974893,97.87283394,0.6849696,0,137.2640765,78.24536972,188.4741061,4,8,37% -2018-04-05 17:00:00,53.62136533,113.651939,572.5884299,816.5347516,88.28639614,382.3495067,292.4088577,89.940649,85.62423556,4.316413447,141.4928546,0,141.4928546,2.662160586,138.830694,0.935869374,1.983600537,-0.982161057,0.982161057,0.698113122,0.698113122,0.154188229,3.214262705,103.3817376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.30527209,1.928726282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.328722388,99.37445846,84.63399448,101.3031847,292.4088577,0,0.358109507,69.01586029,-0.358109507,110.9841397,0.910377904,0,350.8365574,101.3031847,417.1374658,4,9,19% -2018-04-05 18:00:00,43.44805975,128.2740643,727.4482511,866.1079918,98.65550693,584.9120632,483.7475716,101.1644916,95.68067939,5.483812192,179.3530781,0,179.3530781,2.974827534,176.3782506,0.758311696,2.238804767,-0.498114189,0.498114189,0.615336233,0.615336233,0.135618591,3.660465427,117.7331509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.97190842,2.155252422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651994741,113.1695828,94.62390316,115.3248353,483.7475716,0,0.558530317,56.04577978,-0.558530317,123.9542202,0.960479345,0,559.2534537,115.3248353,634.7312519,4,10,13% -2018-04-05 19:00:00,35.51126431,148.2705615,830.436364,891.1401456,105.0470941,753.7921293,645.6524126,108.1397167,101.8795366,6.260180089,204.5164684,0,204.5164684,3.167557469,201.3489109,0.619788484,2.587809482,-0.145065937,0.145065937,0.554961426,0.554961426,0.12649626,3.826579784,123.0759596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.93048576,2.294884603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.772344027,118.3052938,100.7028298,120.6001784,645.6524126,0,0.724523989,43.57073632,-0.724523989,136.4292637,0.980989172,0,734.0808558,120.6001784,813.0112605,4,11,11% -2018-04-05 20:00:00,31.6662293,174.5053329,873.9483167,900.3281007,107.6604516,871.5668865,760.5646032,111.0022833,104.4140918,6.588191569,215.1452475,0,215.1452475,3.24635984,211.8988876,0.552679963,3.045692621,0.154489628,-0.154489628,0.503734407,0.503734407,0.123188579,3.721462948,119.6950408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3667966,2.351976653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696187237,115.0554261,103.0629838,117.4074027,760.5646032,0,0.844763817,32.35336032,-0.844763817,147.6466397,0.990811859,0,856.6394121,117.4074027,933.4802091,4,12,9% -2018-04-05 21:00:00,33.4015358,202.2399225,854.8511425,896.385249,106.5190597,926.4097061,816.6583601,109.751346,103.307117,6.444229003,210.4804993,0,210.4804993,3.211942662,207.2685566,0.582966775,3.529752527,0.443284224,-0.443284224,0.454347623,0.454347623,0.12460539,3.366071165,108.2644195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30273034,2.327041525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.4387071,104.067878,101.7414374,106.3949195,816.6583601,0,0.911057339,24.34812061,-0.911057339,155.6518794,0.995118712,0,914.4134531,106.3949195,984.0468,4,13,8% -2018-04-05 22:00:00,39.98019157,224.8022335,774.5405191,878.1835996,101.6177375,911.3550095,806.9626081,104.3924014,98.55358782,5.8388136,190.8604659,0,190.8604659,3.064149716,187.7963162,0.697785978,3.92353914,0.758721046,-0.758721046,0.400404749,0.400404749,0.131197445,2.797201099,89.96760267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.73345728,2.219966039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.026562674,86.48028177,96.76001996,88.70024781,806.9626081,0,0.918899657,23.23425432,-0.918899657,156.7657457,0.995587095,0,900.1615784,88.70024781,958.2141166,4,14,6% -2018-04-05 23:00:00,49.44895245,241.2689173,638.9066267,839.9037802,92.86395279,823.7339515,728.8538415,94.88011001,90.06376198,4.816348028,157.7104995,0,157.7104995,2.800190808,154.9103087,0.863047032,4.21093699,1.155195706,-1.155195706,0.332603589,0.332603589,0.145348239,2.069143964,66.55078253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.57271376,2.028728708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499087759,63.97114355,88.07180152,65.99987226,728.8538415,0,0.867782547,29.79802924,-0.867782547,150.2019708,0.992381879,0,811.3731461,65.99987226,854.5687425,4,15,5% -2018-04-05 00:00:00,60.37094652,253.7136015,458.3306667,765.8247815,79.72013919,663.7498285,582.9784554,80.77137303,77.31628286,3.455090165,113.5314328,0,113.5314328,2.403856333,111.1275765,1.053671789,4.428137704,1.754549993,-1.754549993,0.23010797,0.23010797,0.173935861,1.257721241,40.4526385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31935195,1.74158573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911214758,38.88461482,75.23056671,40.62620055,582.9784554,0,0.76124261,40.42613357,-0.76124261,139.5738664,0.984317917,0,649.0667058,40.62620055,675.6557416,4,16,4% -2018-04-05 01:00:00,71.95222499,263.9789987,248.8481821,610.2649072,59.78206769,430.0954587,370.2401182,59.85534049,57.97941778,1.87592271,62.13877272,0,62.13877272,1.802649913,60.33612281,1.25580323,4.607302683,2.978084192,-2.978084192,0.020871298,0.020871298,0.240235099,0.48040951,15.45162124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.73202172,1.306013726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.348055055,14.85268606,56.08007678,16.15869979,370.2401182,0,0.606687545,52.64962566,-0.606687545,127.3503743,0.967585254,0,414.3189555,16.15869979,424.8945014,4,17,3% -2018-04-05 02:00:00,83.68782406,273.2910807,46.64666119,222.1237701,22.22514432,114.2120904,92.30547396,21.90661645,21.55497422,0.351642236,11.98019316,0,11.98019316,0.670170103,11.31002306,1.460628074,4.769829174,8.303562219,-8.303562219,0,0,0.476457345,0.167542526,5.388743555,0.470854418,1,0.119853038,0,0.948958969,0.987720933,0.724496596,1,20.89689419,0.485535959,0.065838965,0.312029739,0.830318878,0.554815474,0.961238037,0.922476074,0.114689137,5.179865276,21.01158333,5.665401234,48.84303373,0,0.41555874,65.4454921,-0.41555874,114.5545079,0.929680066,0,66.41997817,5.665401234,70.12786997,4,18,6% -2018-04-05 03:00:00,95.53622734,282.5329741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667421722,4.931130644,-8.698092739,8.698092739,1,0,#DIV/0!,0,0,1,0.01731023,0,0.11446518,0.961238037,1,0.451606075,0.72710948,0,0,0.115824807,0.002984488,0.724496596,0.448993192,0.999735799,0.960973836,0,0,0,0,0,0,0.196349065,78.676457,-0.196349065,101.323543,0.795351474,0,0,0,0,4,19,0% -2018-04-05 04:00:00,106.8150928,292.4896631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864275059,5.104907649,-2.440060859,2.440060859,1,0.947428672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.030416084,91.74298207,0.030416084,88.25701793,0,0,0,0,0,4,20,0% -2018-04-05 05:00:00,117.2381141,304.0144257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0461911,5.306052702,-1.141441711,1.141441711,1,0.725351718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251407258,104.5608021,0.251407258,75.43919788,0,0.851119505,0,0,0,4,21,0% -2018-04-05 06:00:00,126.1713629,318.0828978,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202105704,5.551593862,-0.51053677,0.51053677,1,0.617460619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451551218,116.8432521,0.451551218,63.15674786,0,0.93927059,0,0,0,4,22,0% -2018-04-05 07:00:00,132.6704573,335.5050963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3155363,5.855668588,-0.085017127,0.085017127,1,0.544692475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617197257,128.1117509,0.617197257,51.88824907,0,0.968988622,0,0,0,4,23,0% -2018-04-06 08:00:00,135.5978606,355.9314977,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366629126,6.212176546,0.268818473,-0.268818473,1,0.484183023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737047323,137.4804965,0.737047323,42.51950349,0,0.982161751,0,0,0,4,0,0% -2018-04-06 09:00:00,134.2421733,16.9563939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34296792,0.295944903,0.617324971,-0.617324971,1,0.424584902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802925718,143.4104031,0.802925718,36.58959686,0,0.987727739,0,0,0,4,1,0% -2018-04-06 10:00:00,128.9507899,35.64900153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.250615856,0.622192452,1.021318945,-1.021318945,1,0.355497864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810335997,144.1287722,0.810335997,35.87122778,0,0.9882972,0,0,0,4,2,0% -2018-04-06 11:00:00,120.7987732,50.90562259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108336324,0.888470722,1.585297582,-1.585297582,1,0.259051836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758767185,139.3556359,0.758767185,40.64436411,0,0.984103634,0,0,0,4,3,0% -2018-04-06 12:00:00,110.8393682,63.2554053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.934511915,1.104015092,2.608898981,-2.608898981,1,0.084005688,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651728489,130.6720497,0.651728489,49.32795033,0,0.973280935,0,0,0,4,4,0% -2018-04-06 13:00:00,99.81517012,73.67657268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742103362,1.285898775,5.768361274,-5.768361274,1,0,#DIV/0!,0,0,0.313325556,1,0.171653434,0,0.942618833,0.981380796,0.724496596,1,0,0,0.04667209,0.312029739,0.876186567,0.600683163,0.961238037,0.922476074,0,0,0,0,0,0,-0.496510099,119.7693774,0.496510099,60.23062262,0,0.949297114,0,0,0,4,5,0% -2018-04-06 14:00:00,87.91713276,83.07077117,4.29078647,29.27708465,3.2267142,3.161762622,0,3.161762622,3.129416861,0.032345761,9.885224364,8.747576169,1.137648195,0.097297338,1.040350857,1.534443436,1.449858469,-26.78362836,26.78362836,0,0,0.752009969,0.024324335,0.782354215,1,0.756716089,0,0.037318907,0.961238037,1,0.624122678,0.899626082,3.00811452,0.067246883,0.115824807,0.19816252,0.724496596,0.448993192,0.977903025,0.939141062,0.017622898,0.757688827,3.025737418,0.824935709,0,2.12814454,-0.298785766,107.384688,0.298785766,72.61531198,0,0.882656018,3.025737418,2.703355294,4.795029391,4,6,58% -2018-04-06 15:00:00,76.31186264,92.23092628,169.1538361,507.280391,49.11253158,48.90676061,0,48.90676061,47.63160755,1.275153067,85.73411253,43.23988254,42.49422999,1.480924033,41.01330595,1.331893261,1.609733336,-3.800656234,3.800656234,0.819895815,0.819895815,0.290342405,1.112172818,35.77130089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.78531293,1.072924421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.80576542,34.38473504,46.59107835,35.45765946,0,43.23988254,-0.085238624,94.88974682,0.085238624,85.11025318,0,0,46.59107835,35.45765946,69.79740731,4,7,50% -2018-04-06 16:00:00,64.59013131,101.9764929,383.3427538,722.1446528,73.4771859,176.0862054,101.9348281,74.15137724,71.26157764,2.889799603,95.16149711,0,95.16149711,2.215608257,92.94588886,1.127310456,1.77982556,-1.785649034,1.785649034,0.835517659,0.835517659,0.191674905,2.505585707,80.58824924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.499339,1.60520064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815288315,77.46449049,70.31462731,79.06969113,101.9348281,0,0.141155692,81.88527333,-0.141155692,98.11472667,0.695781199,0,141.2389642,79.06969113,192.9884957,4,8,37% -2018-04-06 17:00:00,53.31118576,113.369649,577.5800907,818.2471831,88.70308674,386.640468,296.2580639,90.38240409,86.0283614,4.354042695,142.7157053,0,142.7157053,2.674725345,140.04098,0.93045572,1.978673646,-0.975660329,0.975660329,0.697001432,0.697001432,0.15357712,3.237383482,104.1253812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.69373322,1.937829407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345473312,100.089277,85.03920654,102.0271064,296.2580639,0,0.362064264,68.77297624,-0.362064264,111.2270238,0.911902969,0,355.1978144,102.0271064,421.9725151,4,9,19% -2018-04-06 18:00:00,43.10904377,128.0102527,732.1255853,867.2014576,99.02133059,589.0975465,487.5430024,101.554544,96.03547212,5.519071913,180.4981829,0,180.4981829,2.985858467,177.5123244,0.752394751,2.234200386,-0.49590453,0.49590453,0.614958359,0.614958359,0.135251837,3.681419367,118.4071016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.31294869,2.163244295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6671758,113.8174099,94.98012449,115.9806542,487.5430024,0,0.562202702,55.79173346,-0.562202702,124.2082665,0.961064106,0,563.5402042,115.9806542,639.4472228,4,10,13% -2018-04-06 19:00:00,35.13875753,148.1079969,834.7765541,891.9432188,105.3805592,757.7222476,649.2264029,108.4958448,102.2029465,6.292898276,205.5788529,0,205.5788529,3.177612671,202.4012403,0.613287014,2.584972194,-0.145035088,0.145035088,0.55495615,0.55495615,0.126238044,3.845826847,123.6950113,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.24135964,2.302169563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786288459,118.9003499,101.0276481,121.2025194,649.2264029,0,0.727878624,43.2911548,-0.727878624,136.7088452,0.981307229,0,738.1182102,121.2025194,817.4428351,4,11,11% -2018-04-06 20:00:00,31.28441301,174.5856573,877.9637217,900.9976955,107.9709733,875.1883541,763.8546427,111.3337114,104.7152501,6.618461387,216.1281922,0,216.1281922,3.255723215,212.872469,0.546016012,3.047094546,0.153019462,-0.153019462,0.50398582,0.50398582,0.122978855,3.739331912,120.2697682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6562814,2.358760386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.709133241,115.6078758,103.3654146,117.9666362,763.8546427,0,0.847787565,32.02815796,-0.847787565,147.971842,0.991022961,0,860.3629047,117.9666362,937.5697088,4,12,9% -2018-04-06 21:00:00,33.0631851,202.5714056,858.5802289,897.0216336,106.8138138,929.7277369,819.6624132,110.0653236,103.5929832,6.472340431,211.3935474,0,211.3935474,3.220830587,208.1727168,0.577061441,3.535537998,0.440391209,-0.440391209,0.454842357,0.454842357,0.124407493,3.382859683,108.8043959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.57751582,2.333480796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.450870324,104.5869239,102.0283861,106.9204047,819.6624132,0,0.913759917,23.96977187,-0.913759917,156.0302281,0.995281032,0,917.8228383,106.9204047,987.8001048,4,13,8% -2018-04-06 22:00:00,39.70774687,225.2244902,778.0416223,878.8839753,101.9045952,914.4240985,809.7270963,104.6970021,98.83179571,5.865206395,191.7179987,0,191.7179987,3.072799535,188.6451992,0.693030921,3.93090891,0.754007564,-0.754007564,0.401210802,0.401210802,0.130975763,2.813173954,90.48134458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00088129,2.226232803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038134953,86.97411004,97.03901624,89.20034284,809.7270963,0,0.921312846,22.88122806,-0.921312846,157.1187719,0.995729618,0,903.3082686,89.20034284,961.688109,4,14,6% -2018-04-06 23:00:00,49.22817455,241.6828638,642.2500808,840.819251,93.15451419,826.6644429,731.4773286,95.18711428,90.34556189,4.841552397,158.5299201,0,158.5299201,2.808952306,155.7209678,0.859193731,4.218161719,1.147466852,-1.147466852,0.333925301,0.333925301,0.14504399,2.084459857,67.04339428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.84359055,2.035076384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51018407,64.4446607,88.35377462,66.47973708,731.4773286,0,0.869957875,29.54625536,-0.869957875,150.4537446,0.992525953,0,814.3640071,66.47973708,857.8736654,4,15,5% -2018-04-06 00:00:00,60.18135751,254.0977811,461.5832575,767.3011204,80.03795519,666.7447158,585.6405907,81.1041251,77.62451553,3.479609569,114.3296445,0,114.3296445,2.413439658,111.9162048,1.050362837,4.434842902,1.740321344,-1.740321344,0.232541212,0.232541212,0.17339874,1.272206494,40.91853404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.61563692,1.748528816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921709274,39.33245133,75.5373462,41.08098015,585.6405907,0,0.763247407,40.24867539,-0.763247407,139.7513246,0.984490442,0,652.0949104,41.08098015,678.9815903,4,16,4% -2018-04-06 01:00:00,71.77745432,264.3382364,252.012959,613.3941581,60.19926627,433.5943829,373.3105665,60.28381641,58.38403628,1.899780136,62.9186896,0,62.9186896,1.81522999,61.10345961,1.252752907,4.613572564,2.94287274,-2.94287274,0.026892811,0.026892811,0.238873693,0.492693767,15.84672516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.12095641,1.315127948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356954957,15.23247499,56.47791137,16.54760294,373.3105665,0,0.608598177,52.51178907,-0.608598177,127.4882109,0.967843987,0,417.7842983,16.54760294,428.6143735,4,17,3% -2018-04-06 02:00:00,83.51711431,273.6353092,49.02004021,230.2922993,23.01855937,118.8234984,96.12949972,22.69399864,22.32446488,0.369533769,12.57957078,0,12.57957078,0.694094494,11.88547628,1.457648627,4.775837095,8.06205516,-8.06205516,0,0,0.469574469,0.173523624,5.581116219,0.459032224,1,0.123407536,0,0.948543443,0.987305406,0.724496596,1,21.64384587,0.502869098,0.064482965,0.312029739,0.833467948,0.557964544,0.961238037,0.922476074,0.118764684,5.364781198,21.76261055,5.867650296,52.00296168,0,0.417423857,65.32794871,-0.417423857,114.6720513,0.930217675,0,70.13668467,5.867650296,73.97694443,4,18,5% -2018-04-06 03:00:00,95.35265615,282.8714068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6642178,4.937037408,-8.964170354,8.964170354,1,0,#DIV/0!,0,0,1,0.059369851,0,0.111095893,0.961238037,1,0.458145287,0.733648691,0,0,0.115824807,0.0104438,0.724496596,0.448993192,0.999066045,0.960304082,0,0,0,0,0,0,0.198347124,78.55968003,-0.198347124,101.44032,0.797916688,0,0,0,0,4,19,0% -2018-04-06 04:00:00,106.610421,292.8283892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860702864,5.110819535,-2.45848498,2.45848498,1,0.950579382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028255019,91.61910881,0.028255019,88.38089119,0,0,0,0,0,4,20,0% -2018-04-06 05:00:00,117.0003317,304.3524739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042041014,5.311952757,-1.14378759,1.14378759,1,0.725752887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249013997,104.4191733,0.249013997,75.58082674,0,0.849208074,0,0,0,4,21,0% -2018-04-06 06:00:00,125.8888024,318.4033616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197174093,5.55718701,-0.508678032,0.508678032,1,0.617142756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448872579,116.6713728,0.448872579,63.32862723,0,0.938609814,0,0,0,4,22,0% -2018-04-06 07:00:00,132.3374987,335.7627396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309725077,5.860165312,-0.081093795,0.081093795,1,0.544021545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614199732,127.8937944,0.614199732,52.10620561,0,0.968593257,0,0,0,4,23,0% -2018-04-07 08:00:00,135.2255789,356.0611222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360131585,6.21443892,0.274492695,-0.274492695,1,0.483212674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73371939,137.1991167,0.73371939,42.80088332,0,0.981854057,0,0,0,4,0,0% -2018-04-07 09:00:00,133.8594889,16.92991829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336288816,0.295482816,0.625246984,-0.625246984,1,0.423230158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799278635,143.0612722,0.799278635,36.93872784,0,0.987443592,0,0,0,4,1,0% -2018-04-07 10:00:00,128.5844668,35.50530368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244222313,0.619684451,1.033004975,-1.033004975,1,0.353499435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80640304,143.7459728,0.80640304,36.2540272,0,0.987996266,0,0,0,4,2,0% -2018-04-07 11:00:00,120.4590385,50.70014351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102406835,0.884884436,1.604880023,-1.604880023,1,0.255703042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754601367,138.9905503,0.754601367,41.00944968,0,0.98373985,0,0,0,4,3,0% -2018-04-07 12:00:00,110.5243369,63.02275656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929013583,1.099954606,2.651380755,-2.651380755,1,0.076740877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647398917,130.3457772,0.647398917,49.65422276,0,0.972767866,0,0,0,4,4,0% -2018-04-07 13:00:00,99.51832813,73.43134586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736922492,1.281618759,5.953351679,-5.953351679,1,0,#DIV/0!,0,0,0.327925105,1,0.166419052,0,0.94328704,0.982049003,0.724496596,1,0,0,0.048553561,0.312029739,0.871555096,0.596051692,0.961238037,0.922476074,0,0,0,0,0,0,-0.492097229,119.4785198,0.492097229,60.52148022,0,0.948394063,0,0,0,4,5,0% -2018-04-07 14:00:00,87.64994819,82.81664473,5.652689605,37.39405252,4.119359862,4.037758326,0,4.037758326,3.995145964,0.042612362,12.51429447,11.01952053,1.494773938,0.124213899,1.370560039,1.529780185,1.445423126,-23.75986746,23.75986746,0,0,0.728743333,0.031053475,0.998786491,1,0.721706632,0,0.042062952,0.961238037,1,0.612147473,0.887650878,3.840286263,0.0855608,0.115824807,0.184615112,0.724496596,0.448993192,0.979699814,0.940937851,0.022498137,0.967736833,3.8627844,1.053297632,0,3.066659485,-0.294686448,107.1387364,0.294686448,72.8612636,0,0.880328133,3.8627844,3.75296425,6.319024442,4,6,64% -2018-04-07 15:00:00,76.02924997,91.96682063,174.2104308,514.8047025,49.92292295,49.73083444,0,49.73083444,48.41756263,1.313271815,85.41310266,41.66840644,43.74469622,1.505360323,42.2393359,1.32696074,1.605123823,-3.727706826,3.727706826,0.832370899,0.832370899,0.286566784,1.15621479,37.18784212,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.54080285,1.09062843,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.83767368,35.74636835,47.37847653,36.83699678,0,41.66840644,-0.080940221,94.64261171,0.080940221,85.35738829,0,0,47.37847653,36.83699678,71.48755418,4,7,51% -2018-04-07 16:00:00,64.30001806,101.7007051,388.5067575,725.2659639,73.98878948,180.0672186,105.3807361,74.68648253,71.75775449,2.928728044,96.42899632,0,96.42899632,2.231034992,94.19796133,1.122247024,1.775012155,-1.767842895,1.767842895,0.83247263,0.83247263,0.190444022,2.531525793,81.42257156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97628305,1.616377257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.834081819,78.26647284,70.81036487,79.8828501,105.3807361,0,0.145299437,81.64538071,-0.145299437,98.35461929,0.705883043,0,145.1968396,79.8828501,197.4785673,4,8,36% -2018-04-07 17:00:00,53.00369728,113.0858865,582.5089801,819.9147732,89.11420776,390.8854695,300.0671852,90.81828435,86.4270856,4.391198745,143.9231684,0,143.9231684,2.68712216,141.2360463,0.925089033,1.973721057,-0.969311526,0.969311526,0.695915723,0.695915723,0.152983406,3.260182149,104.8586647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0770021,1.946810858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361990869,100.794137,85.43899296,102.7409479,300.0671852,0,0.365973629,68.53248621,-0.365973629,111.4675138,0.913378134,0,359.5137987,102.7409479,426.7556943,4,9,19% -2018-04-07 18:00:00,42.77273934,127.7436149,736.7360157,868.2664525,99.38237661,593.2248813,491.2854227,101.9394586,96.38563127,5.553827285,181.626922,0,181.626922,2.996745337,178.6301766,0.746525132,2.229546679,-0.493748261,0.493748261,0.614589615,0.614589615,0.134895505,3.702068767,119.0712573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.64953498,2.171131795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682136219,114.4558216,95.3316712,116.6269534,491.2854227,0,0.565823338,55.54051506,-0.565823338,124.4594849,0.961633196,0,567.7680424,116.6269534,644.0980509,4,10,13% -2018-04-07 19:00:00,34.7685999,147.9421169,839.0491578,892.7249871,105.7096322,761.5876314,652.7404277,108.8472037,102.5220968,6.325106968,206.6247179,0,206.6247179,3.187535438,203.4371825,0.606826544,2.582077042,-0.145019393,0.145019393,0.554953466,0.554953466,0.125987412,3.864790436,124.3049456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.54813902,2.309358574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.800027515,119.4866418,101.3481665,121.7960004,652.7404277,0,0.731177504,43.01480061,-0.731177504,136.9851994,0.981617152,0,742.0893662,121.7960004,821.8024126,4,11,11% -2018-04-07 20:00:00,30.90458485,174.6659929,881.9139456,901.6492701,108.2774045,878.7425453,767.0818642,111.6606811,105.0124412,6.648239844,217.0952098,0,217.0952098,3.264963246,213.8302466,0.53938676,3.048496667,0.151554892,-0.151554892,0.504236277,0.504236277,0.122775476,3.75694629,120.8363071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9419529,2.365454758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721894798,116.1524546,103.6638477,118.5179094,767.0818642,0,0.850754156,31.70620943,-0.850754156,148.2937906,0.991228615,0,864.0173416,118.5179094,941.5849429,4,12,9% -2018-04-07 21:00:00,32.7271776,202.9060262,862.2493383,897.6411006,107.1047854,932.9794377,822.6042571,110.3751806,103.8751809,6.499999727,212.2919393,0,212.2919393,3.229604453,209.0623348,0.571197004,3.54137823,0.437520654,-0.437520654,0.455333251,0.455333251,0.124215561,3.399430548,109.3373719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.84877498,2.339837433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.46287586,105.0992407,102.3116508,107.4390781,822.6042571,0,0.916406631,23.59371624,-0.916406631,156.4062838,0.995439068,0,921.1640657,107.4390781,991.4807936,4,13,8% -2018-04-07 22:00:00,39.43778719,225.6485503,781.4903646,879.566703,102.1879878,917.4308019,812.4329546,104.9978474,99.10664289,5.891204471,192.5627315,0,192.5627315,3.081344864,189.4813867,0.688319236,3.938310155,0.749338032,-0.749338032,0.402009339,0.402009339,0.130760394,2.828973079,90.98949875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.26507485,2.232423865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.049581366,87.46256715,97.31465622,89.69499102,812.4329546,0,0.923674068,22.53074247,-0.923674068,157.4692575,0.995868351,0,906.3909234,89.69499102,965.0945011,4,14,6% -2018-04-07 23:00:00,49.00947264,242.0968134,645.5507349,841.71374,93.44186844,829.5386857,734.0480002,95.49068546,90.62425134,4.866434121,159.3388667,0,159.3388667,2.817617097,156.5212496,0.855376662,4.225386502,1.139822538,-1.139822538,0.335232556,0.335232556,0.144747521,2.099652177,67.53203151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.11147745,2.041353995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.521190855,64.91435739,88.6326683,66.95571139,734.0480002,0,0.872087463,29.2978702,-0.872087463,150.7021298,0.992666301,0,817.2973816,66.95571139,861.1185556,4,15,5% -2018-04-07 00:00:00,59.99327215,254.4809621,464.8041995,768.7470163,80.35251899,669.6899273,588.2564428,81.43348446,77.92959407,3.50389039,115.1200844,0,115.1200844,2.422924917,112.6971595,1.047080128,4.441530672,1.726288371,-1.726288371,0.234940992,0.234940992,0.172873909,1.286627616,41.38236689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.90889002,1.755400854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.932157328,39.77830511,75.84104734,41.53370597,588.2564428,0,0.765214603,40.07391218,-0.765214603,139.9260878,0.984658853,0,655.0729615,41.53370597,682.2559414,4,16,4% -2018-04-07 01:00:00,71.6036464,264.6959348,255.1600056,616.461519,60.61174813,437.0454874,376.3379032,60.70758419,58.78408029,1.923503902,63.69416534,0,63.69416534,1.82766784,61.8664975,1.249719386,4.619815579,2.908386229,-2.908386229,0.032790352,0.032790352,0.237544077,0.505006862,16.24275664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.50549394,1.324139128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.365875753,15.6131555,56.87136969,16.93729463,376.3379032,0,0.610480771,52.37572607,-0.610480771,127.6242739,0.968097338,0,421.2030921,16.93729463,432.2882127,4,17,3% -2018-04-07 02:00:00,83.34680026,273.9776048,51.42155033,238.3710604,23.80400849,123.4164279,99.94256068,23.47386718,23.08622981,0.387637367,13.1855289,0,13.1855289,0.717778684,12.46775022,1.454676086,4.781811281,7.833207146,-7.833207146,0,0,0.462918919,0.179444671,5.771557453,0.447331714,1,0.126974813,0,0.948123506,0.98688547,0.724496596,1,22.38316209,0.520028213,0.063128428,0.312029739,0.836628227,0.561124823,0.961238037,0.922476074,0.122805873,5.547840555,22.50596797,6.067868768,55.23508368,0,0.419273046,65.21129962,-0.419273046,114.7887004,0.930745971,0,73.91579956,6.067868768,77.88709831,4,18,5% -2018-04-07 03:00:00,95.16926533,283.2074815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661017027,4.942903019,-9.24866922,9.24866922,1,0,#DIV/0!,0,0,1,0.100532798,0,0.107705247,0.961238037,1,0.464818291,0.740321695,0,0,0.115824807,0.018042492,0.724496596,0.448993192,0.998369972,0.959608009,0,0,0,0,0,0,0.200337163,78.44332391,-0.200337163,101.5566761,0.800420744,0,0,0,0,4,19,0% -2018-04-07 04:00:00,106.4057079,293.1641807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857129945,5.116680202,-2.477365288,2.477365288,1,0.953808105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.026092603,91.4951657,0.026092603,88.5048343,0,0,0,0,0,4,20,0% -2018-04-07 05:00:00,116.7624772,304.6867848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03788967,5.317787582,-1.146200863,1.146200863,1,0.726165581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.246611385,104.2770816,0.246611385,75.72291842,0,0.847251858,0,0,0,4,21,0% -2018-04-07 06:00:00,125.6064498,318.7191785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19224611,5.562699055,-0.506827768,0.506827768,1,0.616826342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446178517,116.4987646,0.446178517,63.50123541,0,0.937937231,0,0,0,4,22,0% -2018-04-07 07:00:00,132.0054248,336.0154519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303929294,5.864575973,-0.07715893,0.07715893,1,0.543348644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611183057,127.6750949,0.611183057,52.3249051,0,0.968191449,0,0,0,4,23,0% -2018-04-08 08:00:00,134.8550056,356.1873818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353663861,6.216642566,0.280194172,-0.280194172,1,0.482237664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.730371181,136.9175205,0.730371181,43.08247951,0,0.981541658,0,0,0,4,0,0% -2018-04-08 09:00:00,133.4789167,16.90292658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329646578,0.295011722,0.633220437,-0.633220437,1,0.421866617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795612835,142.7131779,0.795612835,37.28682213,0,0.987155363,0,0,0,4,1,0% -2018-04-08 10:00:00,128.2201802,35.36295294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.237864311,0.617199962,1.044795523,-1.044795523,1,0.351483132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802455503,143.3652296,0.802455503,36.63477044,0,0.987691249,0,0,0,4,2,0% -2018-04-08 11:00:00,120.1211787,50.49645711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096510069,0.881329437,1.624721847,-1.624721847,1,0.25230989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750427397,138.6274139,0.750427397,41.37258611,0,0.983371303,0,0,0,4,3,0% -2018-04-08 12:00:00,110.21114,62.79168959,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923547265,1.095921726,2.694822405,-2.694822405,1,0.069311917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643069472,130.021085,0.643069472,49.97891504,0,0.972247903,0,0,0,4,4,0% -2018-04-08 13:00:00,99.22340987,73.18731175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731775197,1.277359561,6.148716649,-6.148716649,1,0,#DIV/0!,0,0,0.342684214,1,0.161223978,0,0.943944153,0.982706116,0.724496596,1,0,0,0.050432653,0.312029739,0.866957462,0.591454058,0.961238037,0.922476074,0,0,0,0,0,0,-0.487694046,119.1891303,0.487694046,60.81086972,0,0.947476706,0,0,0,4,5,0% -2018-04-08 14:00:00,87.38274423,82.56327525,7.223447791,46.46444686,5.101702439,5.002320688,0,5.002320688,4.947867288,0.054453401,15.40654504,13.50130134,1.905243699,0.153835152,1.751408547,1.525116596,1.441000994,-21.35252078,21.35252078,0,0,0.706269719,0.038458788,1.236966822,1,0.685697653,0,0.046798683,0.961238037,1,0.600370659,0.875874063,4.756078238,0.105678907,0.115824807,0.171300213,0.724496596,0.448993192,0.981426081,0.942664117,0.027863261,1.198921563,4.783941499,1.30460047,0,4.243490703,-0.290572734,106.8922479,0.290572734,73.10775214,0,0.877926043,4.783941499,5.030071472,8.076022676,4,6,69% -2018-04-08 15:00:00,75.74892448,91.7029648,179.2373842,522.0857317,50.71476343,50.53669331,0,50.53669331,49.1855262,1.351167112,85.01617287,40.0287567,44.98741617,1.529237235,43.45817894,1.322068137,1.60051867,-3.658105092,3.658105092,0.844273497,0.844273497,0.282947465,1.200290274,38.60546119,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.27899864,1.107927171,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.869606218,37.10903773,48.14860486,38.2169649,0,40.0287567,-0.07667085,94.39723143,0.07667085,85.60276857,0,0,48.14860486,38.2169649,73.16084405,4,7,52% -2018-04-08 16:00:00,64.01249957,101.4244834,393.6148023,728.2990011,74.49234627,184.0241982,108.8108364,75.21336183,72.24612718,2.967234644,97.68268503,0,97.68268503,2.246219088,95.43646594,1.11722888,1.770191177,-1.750551016,1.750551016,0.829515544,0.829515544,0.189251893,2.55710362,82.24524241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44572547,1.627378083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.852612868,79.05725536,71.29833833,80.68463344,108.8108364,0,0.149404072,81.40760675,-0.149404072,98.59239325,0.7153371,0,149.1347665,80.68463344,201.9412454,4,8,35% -2018-04-08 17:00:00,52.69902882,112.8006652,587.3733309,821.5380825,89.5197054,395.0824504,303.8342262,91.24822427,86.82035599,4.427868276,145.1148139,0,145.1148139,2.69934941,142.4154644,0.919771566,1.968743007,-0.9631139,0.9631139,0.694855867,0.694855867,0.152406827,3.282652907,105.5814015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.45502855,1.955669459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378270857,101.4888591,85.83329941,103.4445286,303.8342262,0,0.369835839,68.29450658,-0.369835839,111.7054934,0.914804882,0,363.7823328,103.4445286,431.4847079,4,9,19% -2018-04-08 18:00:00,42.43928059,127.4741151,741.2782146,869.3032614,99.7385955,597.2924654,494.9732883,102.3191771,96.73110885,5.588068299,182.738972,0,182.738972,3.00748665,179.7314853,0.740705178,2.224843019,-0.491646236,0.491646236,0.614230148,0.614230148,0.134549476,3.722409436,119.7254832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.98162117,2.17891384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696872965,115.0846884,95.67849413,117.2636022,494.9732883,0,0.56939081,55.29224398,-0.56939081,124.707756,0.962186851,0,571.9352838,117.2636022,648.6819662,4,10,13% -2018-04-08 19:00:00,34.40091853,147.772789,843.2532677,893.4856624,106.0342798,765.3871314,656.1933771,109.1937543,102.836955,6.356799324,207.6538424,0,207.6538424,3.19732476,204.4565176,0.600409294,2.579121712,-0.145019921,0.145019921,0.554953557,0.554953557,0.125744286,3.883467897,124.9056769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.85079275,2.316450905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.813559272,120.0640877,101.664352,122.3805386,656.1933771,0,0.734419594,42.74180475,-0.734419594,137.2581953,0.981919028,0,745.9931148,122.3805386,826.0887297,4,11,11% -2018-04-08 20:00:00,30.52684333,174.7461939,885.798466,902.2830302,108.57973,882.2287654,770.2455919,111.9831735,105.3056505,6.677523,218.046173,0,218.046173,3.274079477,214.7720935,0.532793926,3.049896439,0.150094842,-0.150094842,0.50448596,0.50448596,0.122578368,3.774304688,121.3946128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2237968,2.372059436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.734470898,116.6891193,103.9582677,119.0611788,770.2455919,0,0.853662948,31.38766449,-0.853662948,148.6123355,0.991428874,0,867.6019876,119.0611788,945.5251479,4,12,9% -2018-04-08 21:00:00,32.39358298,203.2436447,865.8582729,898.2438851,107.3919764,936.1645465,825.483629,110.6809175,104.1537121,6.527205401,213.1756271,0,213.1756271,3.238264323,209.9373628,0.565374679,3.547270785,0.434671449,-0.434671449,0.455820494,0.455820494,0.124029509,3.41578326,109.8633313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1165097,2.346111479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.474723344,105.6048129,102.5912331,107.9509244,825.483629,0,0.918997215,23.22008085,-0.918997215,156.7799192,0.995592871,0,924.4368493,107.9509244,995.0885703,4,13,8% -2018-04-08 22:00:00,39.17034474,226.0742241,784.886791,880.2320838,102.4679326,920.3752402,815.0802857,105.2949546,99.37814641,5.916808168,193.3946758,0,193.3946758,3.089786236,190.3048896,0.683651485,3.945739564,0.744711134,-0.744711134,0.402800585,0.402800585,0.130551226,2.844598425,91.49206361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.52605436,2.23853961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060901876,87.94565161,97.58695623,90.18419122,815.0802857,0,0.925983386,22.18288852,-0.925983386,157.8171115,0.996003351,0,909.409652,90.18419122,968.4334015,4,14,6% -2018-04-08 23:00:00,48.7928507,242.5105868,648.808775,842.587681,93.72604782,832.3571109,736.5662546,95.79085627,90.89986167,4.890994604,160.1373853,0,160.1373853,2.826186154,157.3111991,0.851595896,4.232608211,1.132260772,-1.132260772,0.336525694,0.336525694,0.144458662,2.114720827,68.0166911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37640458,2.047562248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53210804,65.38023063,88.90851262,67.42779288,736.5662546,0,0.87417164,29.05290947,-0.87417164,150.9470905,0.992802995,0,820.1736959,67.42779288,864.3038378,4,15,5% -2018-04-08 00:00:00,59.80668289,254.8629928,467.993698,770.1632083,80.66388311,672.5861296,590.826626,81.7595036,78.23156942,3.527934177,115.902804,0,115.902804,2.432313694,113.4704903,1.043823531,4.448198367,1.712446455,-1.712446455,0.237308099,0.237308099,0.172361046,1.300983841,41.84411242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.19916021,1.762202991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.942558364,40.22215247,76.14171857,41.98435546,590.826626,0,0.767144703,39.90182646,-0.767144703,140.0981735,0.984823248,0,658.0015155,41.98435546,685.4794365,4,16,4% -2018-04-08 01:00:00,71.43079343,265.0519625,258.2893477,619.4686517,61.01962483,440.4496528,379.3229006,61.12675221,59.17965801,1.947094205,64.46520955,0,64.46520955,1.839966827,62.62524272,1.246702533,4.626029435,2.874601578,-2.874601578,0.038567868,0.038567868,0.236245224,0.517346079,16.63962828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.88573828,1.333049703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374815473,15.99464362,57.26055376,17.32769332,379.3229006,0,0.61233591,52.24140321,-0.61233591,127.7585968,0.968345472,0,424.5761668,17.32769332,435.9167955,4,17,3% -2018-04-08 02:00:00,83.17688825,274.3178482,53.84934552,246.3553942,24.58121677,127.9878602,103.7419187,24.2459415,23.84000239,0.405939113,13.79761165,0,13.79761165,0.741214381,13.05639727,1.451710562,4.787749649,7.616050806,-7.616050806,0,0,0.456481254,0.185303595,5.960000596,0.435751158,1,0.130554803,0,0.947699142,0.986461105,0.724496596,1,23.11456387,0.537007295,0.061775374,0.312029739,0.839799617,0.564296213,0.961238037,0.922476074,0.126811985,5.728979273,23.24137586,6.265986568,58.53625751,0,0.421106747,65.09551919,-0.421106747,114.9044808,0.93126526,0,77.75415895,6.265986568,81.85512184,4,18,5% -2018-04-08 03:00:00,94.98606503,283.5410853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657819578,4.948725504,-9.553593221,9.553593221,1,0,#DIV/0!,0,0,1,0.140830252,0,0.104292875,0.961238037,1,0.471627496,0.7471309,0,0,0.115824807,0.025784155,0.724496596,0.448993192,0.997646516,0.958884553,0,0,0,0,0,0,0.202319634,78.3273622,-0.202319634,101.6726378,0.802866299,0,0,0,0,4,19,0% -2018-04-08 04:00:00,106.2009806,293.4969297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853556781,5.122487767,-2.496722428,2.496722428,1,0.957118371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023928596,91.37113842,0.023928596,88.62886158,0,0,0,0,0,4,20,0% -2018-04-08 05:00:00,116.5246,305.0172612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03373793,5.323555484,-1.148685988,1.148685988,1,0.726590563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.244199474,104.1345301,0.244199474,75.86546992,0,0.845249354,0,0,0,4,21,0% -2018-04-08 06:00:00,125.3243788,319.0302784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187323043,5.568128772,-0.504988599,0.504988599,1,0.616511826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443469429,116.3254548,0.443469429,63.6745452,0,0.937252657,0,0,0,4,22,0% -2018-04-08 07:00:00,131.6743277,336.2632024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298150559,5.868900035,-0.073214813,0.073214813,1,0.54267416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60814801,127.4557121,0.60814801,52.54428786,0,0.967783173,0,0,0,4,23,0% -2018-04-09 08:00:00,134.4862405,356.3102497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347227696,6.218787015,0.285920551,-0.285920551,1,0.481258396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727003866,136.6358021,0.727003866,43.3641979,0,0.981224575,0,0,0,4,0,0% -2018-04-09 09:00:00,133.100566,16.87535191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323043112,0.294530453,0.641242664,-0.641242664,1,0.420494736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791929857,142.3662271,0.791929857,37.63377288,0,0.986863095,0,0,0,4,1,0% -2018-04-09 10:00:00,127.8580525,35.22187505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231543991,0.614737688,1.05668753,-1.05668753,1,0.349449479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798495246,142.9866482,0.798495246,37.0133518,0,0.98738222,0,0,0,4,2,0% -2018-04-09 11:00:00,119.7853232,50.29451642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090648285,0.877804907,1.64482075,-1.64482075,1,0.248872775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.74624739,138.2663525,0.74624739,41.73364753,0,0.982998091,0,0,0,4,3,0% -2018-04-09 12:00:00,109.8999067,62.56218664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918115219,1.091916144,2.739239878,-2.739239878,1,0.061716082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638742441,129.6981103,0.638742441,50.30188969,0,0.971721187,0,0,0,4,4,0% -2018-04-09 13:00:00,98.93054145,72.94447371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726663679,1.273121237,6.355270185,-6.355270185,1,0,#DIV/0!,0,0,0.357599589,1,0.156070075,0,0.94459006,0.983352023,0.724496596,1,0,0,0.052308617,0.312029739,0.862395391,0.586891987,0.961238037,0.922476074,0,0,0,0,0,0,-0.483302914,118.9013437,0.483302914,61.09865634,0,0.946545213,0,0,0,4,5,0% -2018-04-09 14:00:00,87.11593331,82.31068035,8.996251336,56.37526895,6.159718097,6.041797412,0,6.041797412,5.973979869,0.067817543,18.5157699,16.14878638,2.366983519,0.185738228,2.181245291,1.520459867,1.436592382,-19.39311091,19.39311091,0,0,0.684698311,0.046434557,1.493494967,1,0.648700135,0,0.051519073,0.961238037,1,0.588808641,0.864312046,5.742416682,0.127340819,0.115824807,0.15823526,0.724496596,0.448993192,0.983081403,0.94431944,0.033641678,1.447890098,5.77605836,1.575230918,0,5.673066479,-0.286451607,106.6456377,0.286451607,73.35436234,0,0.875450447,5.77605836,6.541719501,10.05748294,4,6,74% -2018-04-09 15:00:00,75.47101027,91.43938571,184.2311322,529.1298365,51.48842427,51.3246704,0,51.3246704,49.93585831,1.388812094,84.54787507,38.32633815,46.22153692,1.552565964,44.66897095,1.317217619,1.595918347,-3.591657246,3.591657246,0.855636747,0.855636747,0.279477326,1.244352031,40.02263875,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.00024641,1.124828756,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.90152881,38.4712827,48.90177522,39.59611145,0,38.32633815,-0.072432767,94.15372935,0.072432767,85.84627065,0,0,48.90177522,39.59611145,74.81663824,4,7,53% -2018-04-09 16:00:00,63.72769808,101.147858,398.6647002,731.2454414,74.98785805,187.954486,112.2224857,75.73200036,72.72669746,3.005302907,98.92203275,0,98.92203275,2.261160596,96.66087215,1.112258156,1.765363153,-1.73376079,1.73376079,0.826644247,0.826644247,0.188097562,2.582312657,83.05605169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.90766789,1.638203155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87087673,79.83663608,71.77854462,81.47483923,112.2224857,0,0.153467604,81.17206689,-0.153467604,98.82793311,0.72419834,0,153.0498825,81.47483923,206.3735353,4,8,35% -2018-04-09 17:00:00,52.39730685,112.5140047,592.1714545,823.1176791,89.91953005,399.2294242,307.5572611,91.67216301,87.20812445,4.464038558,146.2902307,0,146.2902307,2.711405599,143.5788251,0.914505524,1.963739837,-0.957066612,0.957066612,0.69382172,0.69382172,0.15184712,3.304790284,106.2934157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.82776634,1.964404126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.394309311,102.1732742,86.22207565,104.1376784,307.5572611,0,0.373649199,68.05915036,-0.373649199,111.9408496,0.916184645,0,368.0013159,104.1376784,436.1573436,4,9,19% -2018-04-09 18:00:00,42.1087999,127.2017243,745.7509281,870.3121765,100.0899417,601.2987754,498.6051292,102.6936462,97.07186071,5.621785503,183.8340276,0,183.8340276,3.018081036,180.8159465,0.734937202,2.220088903,-0.489599212,0.489599212,0.613880086,0.613880086,0.134213634,3.742437465,120.3696534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.30916482,2.186589437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711383203,115.7038893,96.02054803,117.8904788,498.6051292,0,0.572903773,55.04703611,-0.572903773,124.9529639,0.962725309,0,576.0403249,117.8904788,653.1972854,4,10,13% -2018-04-09 19:00:00,34.03584003,147.5998843,847.3880417,894.2254616,106.3544719,769.1196754,659.5842143,109.5354611,103.1474921,6.387968997,208.6660212,0,208.6660212,3.206979733,205.4590414,0.594037472,2.576103956,-0.145037656,0.145037656,0.55495659,0.55495659,0.125508582,3.901856788,125.4971269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.14929284,2.323445899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826881961,120.6326118,101.9761748,122.9560577,659.5842143,0,0.737603929,42.47229486,-0.737603929,137.5277051,0.982212942,0,749.8283267,122.9560577,830.3006074,4,11,11% -2018-04-09 20:00:00,30.15128666,174.8261136,889.6168126,902.8991836,108.8779373,885.6463892,773.3452161,112.3011731,105.5948657,6.706307309,218.9809674,0,218.9809674,3.283071526,215.6978958,0.526239226,3.0512913,0.148638321,-0.148638321,0.50473504,0.50473504,0.122387455,3.791405858,121.9446453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5018015,2.378574144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.746860638,117.2178314,104.2486621,119.5964056,773.3452161,0,0.856513363,31.07267109,-0.856513363,148.9273289,0.991623795,0,871.1161798,119.5964056,949.3896354,4,12,9% -2018-04-09 21:00:00,32.06247032,203.5841184,869.4068715,898.8302212,107.6753907,939.2828574,828.3003207,110.9825367,104.4285804,6.553956236,214.0445719,0,214.0445719,3.246810311,210.7977616,0.559595673,3.553213171,0.431842569,-0.431842569,0.456304261,0.456304261,0.123849252,3.43191739,110.3822604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3807236,2.352303018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.486412466,106.1036273,102.8671361,108.4559303,828.3003207,0,0.921531454,22.84899301,-0.921531454,157.151007,0.995742492,0,927.6409618,108.4559303,998.6231991,4,13,8% -2018-04-09 22:00:00,38.90545101,226.5013194,788.230965,880.8804137,102.7444481,923.2575725,817.6692306,105.5883419,99.64632391,5.942017964,194.2138475,0,194.2138475,3.098124197,191.1157233,0.679028217,3.953193783,0.740125671,-0.740125671,0.403584746,0.403584746,0.13034815,2.860049941,91.98903748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.78383678,2.244580434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072096447,88.4233618,97.85593322,90.66794223,817.6692306,0,0.928240903,21.83775651,-0.928240903,158.1622435,0.996134673,0,912.3646047,90.66794223,971.7049595,4,14,7% -2018-04-09 23:00:00,48.57831281,242.9240048,652.0243877,843.4414947,94.00708392,835.1201666,739.0325078,96.08765874,91.17242349,4.915235251,160.9255221,0,160.9255221,2.834660429,158.0908617,0.847851504,4.239823715,1.124779738,-1.124779738,0.337805026,0.337805026,0.144177251,2.129665644,68.4973678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.63840137,2.053701832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.54293551,65.84227535,89.18133688,67.89597718,739.0325078,0,0.876210754,28.8114066,-0.876210754,151.1885934,0.992936103,0,822.9933954,67.89597718,867.4299545,4,15,5% -2018-04-09 00:00:00,59.62158321,255.2437225,471.1519421,771.5504031,80.97209735,675.4339814,593.3517492,82.08223222,78.53048986,3.551742355,116.6778507,0,116.6778507,2.44160749,114.2362432,1.040592932,4.454843352,1.698791342,-1.698791342,0.23964326,0.23964326,0.17185984,1.315274296,42.30374258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.48649391,1.768936315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95291175,40.66396646,76.43940566,42.43290278,593.3517492,0,0.769038221,39.73239971,-0.769038221,140.2676003,0.984983726,0,660.8812221,42.43290278,688.6527083,4,16,4% -2018-04-09 01:00:00,71.25888942,265.4061895,261.4009847,622.41713,61.42300053,443.8077205,382.2662991,61.54142148,59.57087044,1.970551039,65.23182522,0,65.23182522,1.852130093,63.37969513,1.243702242,4.632211862,2.841497247,-2.841497247,0.044229042,0.044229042,0.234976164,0.529708622,17.03725016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.26178656,1.341861947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.383772094,16.3768529,57.64555865,17.71871484,382.2662991,0,0.614164168,52.10878765,-0.614164168,127.8912124,0.968588543,0,427.9043162,17.71871484,439.5008606,4,17,3% -2018-04-09 02:00:00,83.00738638,274.6559215,56.3016401,254.241272,25.34995508,132.5350724,107.5250865,25.00998595,24.5855604,0.424425545,14.41537916,0,14.41537916,0.764394677,13.65098448,1.448752196,4.79365014,7.409718249,-7.409718249,0,0,0.450252515,0.191098669,6.146390101,0.424289047,1,0.134147379,0,0.94727034,0.986032303,0.724496596,1,23.83781583,0.553801341,0.060423843,0.312029739,0.842981967,0.567478563,0.961238037,0.922476074,0.13078251,5.908143954,23.96859834,6.461945296,61.90337004,0,0.42292538,64.98058281,-0.42292538,115.0194172,0.931775835,0,81.64866263,6.461945296,85.87787658,4,18,5% -2018-04-09 03:00:00,94.80306827,283.8721071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654625682,4.954502923,-9.881239006,9.881239006,1,0,#DIV/0!,0,0,1,0.180290969,0,0.100858494,0.961238037,1,0.47857519,0.754078594,0,0,0.115824807,0.033672263,0.724496596,0.448993192,0.996894588,0.958132625,0,0,0,0,0,0,0.204294948,78.21177093,-0.204294948,101.7882291,0.805255817,0,0,0,0,4,19,0% -2018-04-09 04:00:00,105.9962696,293.8265306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8499839,5.128240389,-2.516577452,2.516577452,1,0.96051378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.021762812,91.24701573,0.021762812,88.75298427,0,0,0,0,0,4,20,0% -2018-04-09 05:00:00,116.2867528,305.3438096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029586712,5.329254829,-1.151247359,1.151247359,1,0.727028583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.241778375,103.9915253,0.241778375,76.00847471,0,0.84319904,0,0,0,4,21,0% -2018-04-09 06:00:00,125.0426658,319.3365957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182406223,5.573475016,-0.50316312,0.50316312,1,0.616199651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440745779,116.1514744,0.440745779,63.84852557,0,0.936555919,0,0,0,4,22,0% -2018-04-09 07:00:00,131.344301,336.5059651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292390506,5.873137044,-0.069263726,0.069263726,1,0.541998484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605095432,127.2357094,0.605095432,52.76429058,0,0.967368406,0,0,0,4,23,0% -2018-04-10 08:00:00,134.119384,356.4297039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340824842,6.220871885,0.291669441,-0.291669441,1,0.480275278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723618666,136.3540581,0.723618666,43.64594188,0,0.980902833,0,0,0,4,0,0% -2018-04-10 09:00:00,132.7245455,16.84713332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316480317,0.294037946,0.649310922,-0.649310922,1,0.419114982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78823128,142.0205277,0.78823128,37.97947228,0,0.986566841,0,0,0,4,1,0% -2018-04-10 10:00:00,127.4982049,35.08200099,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225263465,0.612296425,1.068677773,-1.068677773,1,0.347399027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794524158,142.6103343,0.794524158,37.38966573,0,0.987069251,0,0,0,4,2,0% -2018-04-10 11:00:00,119.4515994,50.09427824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084823706,0.874310092,1.665174087,-1.665174087,1,0.24539215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742063478,137.9074901,0.742063478,42.09250987,0,0.98262032,0,0,0,4,3,0% -2018-04-10 12:00:00,109.5907639,62.33423288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912719659,1.0879376,2.784648849,-2.784648849,1,0.05395069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634420108,129.3769883,0.634420108,50.62301174,0,0.97118787,0,0,0,4,4,0% -2018-04-10 13:00:00,98.63984647,72.70283783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721590095,1.268903896,6.573911496,-6.573911496,1,0,#DIV/0!,0,0,0.372667651,1,0.150959168,0,0.945224661,0.983986624,0.724496596,1,0,0,0.054180697,0.312029739,0.857870579,0.582367175,0.961238037,0.922476074,0,0,0,0,0,0,-0.478926171,118.615292,0.478926171,61.38470796,0,0.945599775,0,0,0,4,5,0% -2018-04-10 14:00:00,86.8498827,82.0588806,10.96109032,67.00179962,7.279192413,7.142327233,0,7.142327233,7.059697904,0.082629329,21.79371136,18.9165736,2.877137759,0.219494509,2.657643251,1.515816408,1.432197647,-17.76917616,17.76917616,0,0,0.664093827,0.054873627,1.764924476,1,0.610722535,0,0.05621793,0.961238037,1,0.577474782,0.852978186,6.786050154,0.15029273,0.115824807,0.14543399,0.724496596,0.448993192,0.984666016,0.945904053,0.039755756,1.711229928,6.82580591,1.861522657,0,7.36379581,-0.282329336,106.3992761,0.282329336,73.60072393,0,0.872901861,6.82580591,8.289393723,12.25104831,4,6,79% -2018-04-10 15:00:00,75.19562839,91.17611384,189.1882551,535.9433307,52.24426993,52.09509341,0,52.09509341,50.66891243,1.42618098,84.01267483,36.56643453,47.4462403,1.575357499,45.8708828,1.312411299,1.591323386,-3.528184232,3.528184232,0.866491272,0.866491272,0.276149647,1.288354366,41.43790509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.70488592,1.141341146,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.933408352,39.83169054,49.63829427,40.97303169,0,36.56643453,-0.068228173,93.91222569,0.068228173,86.08777431,0,0,49.63829427,40.97303169,76.45432405,4,7,54% -2018-04-10 16:00:00,63.44573295,100.8708639,403.6543459,734.1069482,75.47532922,191.8554967,115.6131102,76.24238654,73.19946957,3.042916964,100.1465292,0,100.1465292,2.27585965,97.87066951,1.107336936,1.760528695,-1.71745995,1.71745995,0.823856639,0.823856639,0.186980098,2.607146734,83.85480097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.36211443,1.648852569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888868934,80.60442426,72.25098336,82.25327683,115.6131102,0,0.157488102,80.93887335,-0.157488102,99.06112665,0.732515699,0,156.9394016,82.25327683,210.7725262,4,8,34% -2018-04-10 17:00:00,52.09865521,112.2259309,596.9017416,824.6541385,90.31363624,403.32448,311.2344357,92.09004435,87.59034689,4.499697461,147.4490273,0,147.4490273,2.723289355,144.7257379,0.909293069,1.958712,-0.951168736,0.951168736,0.692813123,0.692813123,0.151304025,3.32658914,106.9945418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.19517309,1.973013867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410102508,102.8472233,86.6052756,104.8202372,311.2344357,0,0.377412082,67.82652707,-0.377412082,112.1734729,0.917518815,0,372.1687261,104.8202372,440.771475,4,9,18% -2018-04-10 18:00:00,41.78142783,126.9264212,750.1529768,871.2934975,100.4363738,605.2423672,502.1795506,103.0628166,97.40784657,5.654970005,184.9118014,0,184.9118014,3.028527241,181.8832742,0.729223482,2.215283957,-0.48760785,0.48760785,0.613539543,0.613539543,0.133887856,3.762149218,121.0036512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63212721,2.194157677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.725664302,116.3133121,96.35779152,118.5074698,502.1795506,0,0.576360953,54.80500362,-0.576360953,125.1949964,0.963248807,0,580.0816447,118.5074698,657.6424136,4,10,13% -2018-04-10 19:00:00,33.67349036,147.4232785,851.4527026,894.9446061,106.6701818,772.7842684,662.911976,109.8722924,103.4536823,6.418610127,209.6610651,0,209.6610651,3.216499553,206.4445655,0.587713277,2.573021605,-0.145073499,0.145073499,0.554962719,0.554962719,0.12528022,3.919954882,126.0792238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.44361446,2.330342977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839993968,121.1921455,102.2836084,123.5224885,662.911976,0,0.740729618,42.20639505,-0.740729618,137.7936049,0.982498986,0,753.5939529,123.5224885,834.4369512,4,11,11% -2018-04-10 20:00:00,29.77801286,174.9056044,893.3685669,903.4979403,109.1720163,888.9948605,776.3801937,112.6146668,105.8800772,6.734589618,219.8994912,0,219.8994912,3.291939092,216.6075521,0.519724369,3.052678676,0.147184416,-0.147184416,0.504983672,0.504983672,0.122202661,3.808248695,122.4863688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7759575,2.384998666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.759063216,117.7385567,104.5350207,120.1235554,776.3801937,0,0.859304885,30.76137521,-0.859304885,149.2386248,0.991813434,0,874.5593272,120.1235554,953.1777917,4,12,9% -2018-04-10 21:00:00,31.73390813,203.9273014,872.8950084,899.4003421,107.9550338,942.3342202,831.0541777,111.2800425,104.6997912,6.580251286,214.8987434,0,214.8987434,3.25524258,211.6435008,0.553861181,3.559202844,0.429033081,-0.429033081,0.456784712,0.456784712,0.123674706,3.447832571,110.8941473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6414218,2.358412168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49794296,106.5956725,103.1393647,108.9540846,831.0541777,0,0.924009186,22.48058023,-0.924009186,157.5194198,0.995887984,0,930.7762342,108.9540846,1002.084504,4,13,8% -2018-04-10 22:00:00,38.64313685,226.9296419,791.5229675,881.5119834,103.0175529,926.0779955,820.1999674,105.8780281,99.91119358,5.96683447,195.0202667,0,195.0202667,3.106359314,191.9139074,0.674449971,3.960669422,0.735580553,-0.735580553,0.404362006,0.404362006,0.13015106,2.875327566,92.48041839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.03843958,2.250546749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083165033,88.89569582,98.12160461,91.14624257,820.1999674,0,0.930446758,21.49543616,-0.930446758,158.5045638,0.996262374,0,915.2559712,91.14624257,974.9093641,4,14,7% -2018-04-10 23:00:00,48.36586323,243.3368881,655.1977579,844.2755881,94.28500746,837.828317,741.4471929,96.38112406,91.44196661,4.939157456,161.7033229,0,161.7033229,2.843040849,158.860282,0.844143559,4.247029888,1.117377789,-1.117377789,0.339070834,0.339070834,0.143903129,2.144486391,68.97405397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89749647,2.059773417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553673091,66.30048423,89.45116956,68.36025765,741.4471929,0,0.878205178,28.57339274,-0.878205178,151.4266073,0.993065697,0,825.7569427,68.36025765,870.4973641,4,15,5% -2018-04-10 00:00:00,59.43796773,255.6230012,474.2791016,772.9092758,81.27720866,678.2341313,595.8324141,82.40171714,78.82640093,3.575316204,117.4452669,0,117.4452669,2.450807722,114.9944592,1.037388238,4.461463014,1.685319128,-1.685319128,0.241947145,0.241947145,0.171369998,1.329497995,42.76122563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77093489,1.775601852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.963216772,41.10371658,76.73415166,42.87931843,595.8324141,0,0.77089567,39.56561249,-0.77089567,140.4343875,0.98514038,0,663.7127227,42.87931843,691.776379,4,16,4% -2018-04-10 01:00:00,71.08793027,265.758487,264.4948868,625.3084414,61.82197204,447.1204909,385.1688053,61.95168566,59.95781148,1.99387418,65.99400808,0,65.99400808,1.864160556,64.12984753,1.240718442,4.638360614,2.809053155,-2.809053155,0.049777308,0.049777308,0.233735982,0.542091605,17.43552944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.633729,1.350577977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.392743522,16.75969409,58.02647253,18.11027207,385.1688053,0,0.615966105,51.97784719,-0.615966105,128.0221528,0.968826702,0,431.188296,18.11027207,443.0411069,4,17,3% -2018-04-10 02:00:00,82.83830468,274.9917082,58.77670087,262.025222,26.11003363,137.0556039,111.2898005,25.76580338,25.32271978,0.443083599,15.03840547,0,15.03840547,0.78731385,14.25109162,1.445801163,4.799510723,7.213428782,-7.213428782,0,0,0.444224212,0.196828462,6.330679945,0.412944095,1,0.137752347,0,0.946837097,0.98559906,0.724496596,1,24.5527201,0.570406204,0.059073901,0.312029739,0.846175069,0.570671665,0.961238037,0.922476074,0.134717109,6.085290362,24.68743721,6.655696566,65.33333449,0,0.424729343,64.86646706,-0.424729343,115.1335329,0.932277971,0,85.59626574,6.655696566,89.95228603,4,18,5% -2018-04-10 03:00:00,94.62029102,284.2004375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651435618,4.960233371,-10.23425126,10.23425126,1,0,#DIV/0!,0,0,1,0.218941439,0,0.09740191,0.961238037,1,0.485663515,0.761166919,0,0,0.115824807,0.04171015,0.724496596,0.448993192,0.996113079,0.957351115,0,0,0,0,0,0,0.206263468,78.09652874,-0.206263468,101.9034713,0.807591587,0,0,0,0,4,19,0% -2018-04-10 04:00:00,105.7916085,294.1528809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84641189,5.133936276,-2.536951792,2.536951792,1,0.963997997,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.019595121,91.12278959,0.019595121,88.87721041,0,0,0,0,0,4,20,0% -2018-04-10 05:00:00,116.048991,305.6663401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025436987,5.334884048,-1.153889293,1.153889293,1,0.72748038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239348261,103.8480774,0.239348261,76.15192258,0,0.841099381,0,0,0,4,21,0% -2018-04-10 06:00:00,124.7613896,319.6380691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177497028,5.57873672,-0.501353885,0.501353885,1,0.615890253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438008091,115.9768584,0.438008091,64.02314161,0,0.935846857,0,0,0,4,22,0% -2018-04-10 07:00:00,131.01544,336.7437187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2866508,5.877286627,-0.06530795,0.06530795,1,0.541322007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602026227,127.0151537,0.602026227,52.98484631,0,0.96694714,0,0,0,4,23,0% -2018-04-11 08:00:00,133.7545371,356.5457274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334457061,6.222896877,0.297438418,-0.297438418,1,0.479288724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720216859,136.0723877,0.720216859,43.92761235,0,0.980576465,0,0,0,4,0,0% -2018-04-11 09:00:00,132.3509635,16.8182158,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309960081,0.29353324,0.657422384,-0.657422384,1,0.417727841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784518728,141.6761884,0.784518728,38.32381163,0,0.986266659,0,0,0,4,1,0% -2018-04-11 10:00:00,127.1407567,34.94326713,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219024818,0.609875063,1.080762859,-1.080762859,1,0.345332356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790544159,142.2363931,0.790544159,37.76360687,0,0.986752426,0,0,0,4,2,0% -2018-04-11 11:00:00,119.1201324,49.89570332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079038516,0.870844306,1.68577886,-1.68577886,1,0.241868526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7378778,137.5509491,0.7378778,42.44905086,0,0.982238102,0,0,0,4,3,0% -2018-04-11 12:00:00,109.2838361,62.10781657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907362759,1.08398589,2.831064661,-2.831064661,1,0.046013119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63010475,129.0578512,0.63010475,50.94214881,0,0.970648114,0,0,0,4,4,0% -2018-04-11 13:00:00,98.35144589,72.46241306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716556555,1.264707692,6.805636336,-6.805636336,1,0,#DIV/0!,0,0,0.387884521,1,0.145893042,0,0.945847871,0.984609834,0.724496596,1,0,0,0.056048133,0.312029739,0.853384694,0.57788129,0.961238037,0.922476074,0,0,0,0,0,0,-0.474566134,118.3311048,0.474566134,61.66889522,0,0.944640607,0,0,0,4,5,0% -2018-04-11 14:00:00,86.58491975,81.80789967,13.1057144,78.215987,8.446457803,8.290562348,0,8.290562348,8.191765936,0.098796411,25.19291536,21.7605913,3.432324057,0.254691867,3.17763219,1.511191932,1.427817203,-16.40281304,16.40281304,0,0,0.644486637,0.063672967,2.047941484,1,0.57177114,0,0.06088979,0.961238037,1,0.566379792,0.841883196,7.874237007,0.174300493,0.115824807,0.132906943,0.724496596,0.448993192,0.986180692,0.947418729,0.046130848,1.985646588,7.920367855,2.159947081,0,9.3185132,-0.278211554,106.1534936,0.278211554,73.84650637,0,0.870280649,7.920367855,10.26966879,14.64166069,4,6,85% -2018-04-11 15:00:00,74.92289676,90.91318345,194.1054758,542.5324631,52.98265747,52.84828393,0,52.84828393,51.38503487,1.463249067,83.41494384,34.75420134,48.6607425,1.597622608,47.06311989,1.307651234,1.586734385,-3.467520344,3.467520344,0.876865408,0.876865408,0.272958077,1.332253142,42.84984065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.39325004,1.157472141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.965212867,41.18889671,50.3584629,42.34636885,0,34.75420134,-0.064059211,93.6728373,0.064059211,86.3271627,0,0,50.3584629,42.34636885,78.07331439,4,7,55% -2018-04-11 16:00:00,63.16672055,100.5935411,408.5817194,736.8851705,75.95476688,195.7247216,118.9802096,76.744512,73.66445041,3.080061586,101.3556847,0,101.3556847,2.290316465,99.06536825,1.102467251,1.755688498,-1.701636553,1.701636553,0.821150678,0.821150678,0.185898593,2.631600048,84.6413036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.8090717,1.659326482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906585276,81.36044051,72.71565698,83.01976699,118.9802096,0,0.161463705,80.70813491,-0.161463705,99.29186509,0.740332883,0,160.8006185,83.01976699,215.1353956,4,8,34% -2018-04-11 17:00:00,51.80319493,111.9364761,601.5626642,826.1480418,90.70198274,407.3657866,314.8639699,92.50181677,87.9669833,4.534833464,148.590832,0,148.590832,2.734999434,145.8558326,0.904136315,1.953660061,-0.945419258,0.945419258,0.691829905,0.691829905,0.150777281,3.348044662,107.6846252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55721034,1.98149778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.425646961,103.5105577,86.9828573,105.4920555,314.8639699,0,0.381122939,67.59674255,-0.381122939,112.4032574,0.918808736,0,376.2826235,105.4920555,445.325064,4,9,18% -2018-04-11 18:00:00,41.45729289,126.6481923,754.4832564,872.2475301,100.7778541,609.1218786,505.6952351,103.4266435,97.73903,5.687613482,185.9720248,0,185.9720248,3.038824133,182.9332006,0.72356626,2.210427948,-0.485672716,0.485672716,0.613208616,0.613208616,0.133572022,3.781541337,121.6273684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.95047332,2.20161774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.739713826,116.9128528,96.69018714,119.1144705,505.6952351,0,0.579761155,54.56625473,-0.579761155,125.4337453,0.963757589,0,584.0578075,119.1144705,662.0158462,4,10,13% -2018-04-11 19:00:00,33.31399482,147.2428527,855.4465382,895.643322,106.9813864,776.3799942,666.1757739,110.2042202,103.7555029,6.448717347,210.6388007,0,210.6388007,3.22588352,207.4129172,0.581438897,2.56987258,-0.14512826,0.14512826,0.554972084,0.554972084,0.125059114,3.937760159,126.6519027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.73373591,2.337141629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85289383,121.7426263,102.5866297,124.0797679,666.1757739,0,0.743795837,41.94422559,-0.743795837,138.0557744,0.982777252,0,757.2890263,124.0797679,838.4967528,4,11,11% -2018-04-11 20:00:00,29.40711973,174.9845187,897.053361,904.0795122,109.4619595,892.2736927,779.350048,112.9236447,106.1612776,6.762367152,220.8016551,0,220.8016551,3.300681951,217.5009731,0.513251063,3.054055991,0.145732302,-0.145732302,0.505231998,0.505231998,0.122023911,3.824832222,123.019752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.046258,2.391332838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771077925,118.2512649,104.817336,120.6425978,779.350048,0,0.862037064,30.45392053,-0.862037064,149.5460795,0.991997854,0,877.9309108,120.6425978,956.8890782,4,12,9% -2018-04-11 21:00:00,31.40796446,204.273045,876.322591,899.9544798,108.2309125,945.3185394,833.7450984,111.573441,104.9673512,6.606089851,215.7381192,0,215.7381192,3.263561342,212.4745579,0.548172391,3.565237209,0.426242145,-0.426242145,0.45726199,0.45726199,0.123505788,3.463528488,111.398982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8986106,2.364439083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509314599,107.0809387,103.4079252,109.4453778,833.7450984,0,0.9264303,22.1149702,-0.9264303,157.8850298,0.996029399,0,933.8425545,109.4453778,1005.472365,4,13,8% -2018-04-11 22:00:00,38.38343268,227.3589954,794.7628934,882.127078,103.2872661,928.8367412,822.6727089,106.1640323,100.1727739,5.9912584,195.8139571,0,195.8139571,3.114492162,192.6994649,0.669917279,3.968163054,0.731074812,-0.731074812,0.405132534,0.405132534,0.12995985,2.890431211,92.96620352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.28988057,2.25643897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.094107573,89.36265097,98.38398814,91.61908994,822.6727089,0,0.932601129,21.15601666,-0.932601129,158.8439833,0.996386511,0,918.0839786,91.61908994,978.0468406,4,14,7% -2018-04-11 23:00:00,48.15550669,243.7490577,658.329065,845.0903544,94.55984811,840.4820383,743.810756,96.67128237,91.7085198,4.962762571,162.470832,0,162.470832,2.851328309,159.6195037,0.840472145,4.254223606,1.110053457,-1.110053457,0.340323368,0.340323368,0.143636144,2.159182738,69.44673901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.15371753,2.065777654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.564320544,66.75484707,89.71803808,68.82062472,743.810756,0,0.880155302,28.33889693,-0.880155302,151.6611031,0.993191844,0,828.4648141,68.82062472,873.5065366,4,15,5% -2018-04-11 00:00:00,59.25583252,256.0006802,477.375323,774.2404684,81.57926085,680.9872134,598.2692115,82.71800197,79.11934514,3.598656829,118.2050896,0,118.2050896,2.45991571,115.7451739,1.034209379,4.468054757,1.67202626,-1.67202626,0.244220359,0.244220359,0.17089124,1.343653816,43.21652551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.052524,1.782200558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973472616,41.54136814,77.02599662,43.3235687,598.2692115,0,0.772717568,39.4014448,-0.772717568,140.5985552,0.985293305,0,666.4966452,43.3235687,694.8510545,4,16,4% -2018-04-11 01:00:00,70.9179141,266.1087278,267.5709902,628.1439865,62.21662852,450.3887178,388.0310871,62.35763076,60.34056762,2.017063147,66.75174532,0,66.75174532,1.876060905,64.87568441,1.2377511,4.644473468,2.777250618,-2.777250618,0.055215862,0.055215862,0.232523819,0.554492027,17.83436965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.00164876,1.359199739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401727586,17.14307447,58.40337634,18.50227421,388.0310871,0,0.617742262,51.84855071,-0.617742262,128.1514493,0.969060095,0,434.4288184,18.50227421,446.5381869,4,17,3% -2018-04-11 02:00:00,82.66965545,275.3250937,61.27283712,269.7042553,26.86129541,141.5472212,115.0339924,26.51322877,26.05132824,0.461900528,15.66627592,0,15.66627592,0.809967164,14.85630875,1.442857679,4.805329398,7.026478539,-7.026478539,0,0,0.438388308,0.202491791,6.51283206,0.40171525,1,0.14136944,0,0.946399422,0.985161385,0.724496596,1,25.2591103,0.586818453,0.057725638,0.312029739,0.849378651,0.573875246,0.961238037,0.922476074,0.138615586,6.260381904,25.39772588,6.847200357,68.82308343,0,0.426519012,64.75315016,-0.426519012,115.2468498,0.932771931,0,89.59396633,6.847200357,94.07532202,4,18,5% -2018-04-11 03:00:00,94.43775247,284.5259696,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648249719,4.965914978,-10.6156906,10.6156906,1,0,#DIV/0!,0,0,1,0.256806004,0,0.093923023,0.961238037,1,0.492894444,0.768397848,0,0,0.115824807,0.049900974,0.724496596,0.448993192,0.995300858,0.956538895,0,0,0,0,0,0,0.20822551,77.98161717,-0.20822551,102.0183828,0.809875723,0,0,0,0,4,19,0% -2018-04-11 04:00:00,105.5870343,294.4758805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842841396,5.139573682,-2.557867209,2.557867209,1,0.967574744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017425453,90.99845544,0.017425453,89.00154456,0,0,0,0,0,4,20,0% -2018-04-11 05:00:00,115.8113737,305.9847665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021289782,5.340441637,-1.156616005,1.156616005,1,0.727946675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.236909373,103.7042006,0.236909373,76.29579943,0,0.838948832,0,0,0,4,21,0% -2018-04-11 06:00:00,124.4806319,319.9346424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172596882,5.583912901,-0.499563401,0.499563401,1,0.615584063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435256959,115.8016457,0.435256959,64.19835428,0,0.935125329,0,0,0,4,22,0% -2018-04-11 07:00:00,130.6878418,336.9764466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280933131,5.881348495,-0.06134976,0.06134976,1,0.540645116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59894136,126.7941157,0.59894136,53.20588431,0,0.966519373,0,0,0,4,23,0% -2018-04-12 08:00:00,133.3918012,356.658308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328126125,6.22486178,0.303225028,-0.303225028,1,0.478299156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716799779,135.7908924,0.716799779,44.20910763,0,0.980245514,0,0,0,4,0,0% -2018-04-12 09:00:00,131.9799276,16.78855047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303484283,0.293015482,0.665574143,-0.665574143,1,0.416333808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780793868,141.3333188,0.780793868,38.6666812,0,0.985962612,0,0,0,4,1,0% -2018-04-12 10:00:00,126.7858259,34.80561548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212830107,0.607472588,1.092939226,-1.092939226,1,0.343250074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786557194,141.86493,0.786557194,38.13507004,0,0.986431832,0,0,0,4,2,0% -2018-04-12 11:00:00,118.7910453,49.69875665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073294862,0.867406938,1.706631702,-1.706631702,1,0.23830248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733692508,137.1968499,0.733692508,42.80315006,0,0.98185156,0,0,0,4,3,0% -2018-04-12 12:00:00,108.9792453,61.88292936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902046647,1.080060868,2.878502266,-2.878502266,1,0.037900811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625798631,128.7408289,0.625798631,51.25917113,0,0.970102094,0,0,0,4,4,0% -2018-04-12 13:00:00,98.06545783,72.22321156,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711565122,1.260532838,7.051550279,-7.051550279,1,0,#DIV/0!,0,0,0.403246018,1,0.140873437,0,0.946459615,0.985221578,0.724496596,1,0,0,0.057910157,0.312029739,0.848939368,0.573435964,0.961238037,0.922476074,0,0,0,0,0,0,-0.470225086,118.0489083,0.470225086,61.95109166,0,0.943667944,0,0,0,4,5,0% -2018-04-12 14:00:00,86.32133711,81.5577647,15.41644412,89.89272151,9.648866234,9.474132984,0,9.474132984,9.357917317,0.116215668,28.6687396,24.63989532,4.028844279,0.290948917,3.737895362,1.506591547,1.423451525,-15.23837669,15.23837669,0,0,0.625881439,0.072737229,2.339479329,1,0.531850456,0,0.065529828,0.961238037,1,0.555532102,0.831035507,8.99518607,0.199157122,0.115824807,0.12066192,0.724496596,0.448993192,0.987626628,0.948864665,0.052697875,2.268078964,9.047883946,2.467236086,0,11.53515577,-0.274103341,105.9085863,0.274103341,74.09141371,0,0.867587047,9.047883946,12.47498781,17.21251397,4,6,90% -2018-04-12 15:00:00,74.6529299,90.65063285,198.9796595,548.9034024,53.70393633,53.58455722,0,53.58455722,52.0845645,1.499992723,82.7589531,32.89465912,49.86429398,1.619371827,48.24492215,1.302939423,1.582152012,-3.409511977,3.409511977,0.886785423,0.886785423,0.269896614,1.376005805,44.25707668,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.06566453,1.173229376,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.996911522,42.54158551,51.06257605,43.71481488,0,32.89465912,-0.059927956,93.43567753,0.059927956,86.56432247,0,0,51.06257605,43.71481488,79.6730481,4,7,56% -2018-04-12 16:00:00,62.89077394,100.3159344,413.4448896,739.5817427,76.426181,199.5597337,122.3213618,77.23837188,74.12164966,3.116722218,102.5490315,0,102.5490315,2.30453134,100.2445002,1.097651074,1.750843348,-1.686278955,1.686278955,0.818524375,0.818524375,0.18485216,2.65566717,85.415385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.24854901,1.669625111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924021825,82.10451699,73.17257083,83.7741421,122.3213618,0,0.16539262,80.47995671,-0.16539262,99.52004329,0.74768905,0,164.6309136,83.7741421,219.4594141,4,8,33% -2018-04-12 17:00:00,51.51104395,111.64568,606.1527781,827.5999766,91.08453263,411.3515963,318.4441627,92.90743358,88.3379979,4.569435681,149.7152936,0,149.7152936,2.746534725,146.9687588,0.899037318,1.948584711,-0.939817071,0.939817071,0.690871874,0.690871874,0.150266626,3.369152377,108.3635218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.91384368,1.989855059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440939428,104.163139,87.35478311,106.152994,318.4441627,0,0.384780294,67.36989865,-0.384780294,112.6301014,0.920055716,0,380.3411551,106.152994,449.8161666,4,9,18% -2018-04-12 18:00:00,41.13652134,126.3670333,758.7407395,873.1745869,101.1143492,612.936033,509.1509463,103.7850867,98.06537847,5.719708187,187.0144474,0,187.0144474,3.0489707,183.9654767,0.71796774,2.205520797,-0.483794272,0.483794272,0.612887383,0.612887383,0.133266008,3.800610738,122.2407058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.26417189,2.208968893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753529542,117.5024161,97.01770143,119.711385,509.1509463,0,0.583103258,54.33089341,-0.583103258,125.6691066,0.964251894,0,587.9674657,119.711385,666.316173,4,10,13% -2018-04-12 19:00:00,32.95747793,147.058494,859.3689014,896.3218392,107.2880657,779.9060172,669.3747968,110.5312204,104.0529347,6.478285778,211.5990706,0,211.5990706,3.235131031,208.3639396,0.575216503,2.566654914,-0.145202659,0.145202659,0.554984807,0.554984807,0.124845181,3.955270796,127.215105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0196386,2.343841419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865580228,122.2839977,102.8852189,124.6278392,669.3747968,0,0.746801838,41.68590253,-0.746801838,138.3140975,0.983047835,0,760.9126636,124.6278392,842.4790917,4,11,11% -2018-04-12 20:00:00,29.03870501,175.0627093,900.6708762,904.6441124,109.7477621,895.482469,782.2543694,113.2280996,106.4384621,6.78963751,221.6873815,0,221.6873815,3.309299952,218.3780815,0.506821013,3.055420674,0.144281244,-0.144281244,0.505480144,0.505480144,0.121851128,3.841155579,123.5447673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3126984,2.39757655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.782904141,118.7559296,105.0956025,121.1535061,782.2543694,0,0.864709512,30.15044809,-0.864709512,149.8495519,0.992177113,0,881.2304848,121.1535061,960.5230315,4,12,9% -2018-04-12 21:00:00,31.08470712,204.621198,879.6895571,900.4928644,108.5030353,948.235773,836.3730331,111.8627399,105.2312685,6.631471464,216.5626847,0,216.5626847,3.271766848,213.2909178,0.542530486,3.571313625,0.423469019,-0.423469019,0.457736222,0.457736222,0.123342416,3.479004859,111.8967553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1522979,2.370383944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520527178,107.5594174,103.6728251,109.9298013,836.3730331,0,0.928794737,21.75229073,-0.928794737,158.2477093,0.996166792,0,936.8398666,109.9298013,1008.786723,4,13,8% -2018-04-12 22:00:00,38.12636881,227.7891819,797.9508471,882.7259754,103.5536069,931.5340745,825.0877003,106.4463741,100.4310836,6.015290541,196.5949446,0,196.5949446,3.122523321,193.4724212,0.665430668,3.975671225,0.726607599,-0.726607599,0.405896472,0.405896472,0.129774418,2.90536074,93.4463885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.53817764,2.262257516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.104923966,89.82422303,98.6431016,92.08648055,825.0877003,0,0.934704227,20.81958683,-0.934704227,159.1804132,0.996507143,0,920.8488882,92.08648055,981.117648,4,14,7% -2018-04-12 23:00:00,47.94724871,244.1603353,661.4184774,845.8861714,94.83163414,843.081815,746.1236526,96.95816235,91.97211048,4.986051867,163.2280911,0,163.2280911,2.859523661,160.3685675,0.836837357,4.261401754,1.102805454,-1.102805454,0.34156285,0.34156285,0.143376149,2.173754238,69.91540853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40709092,2.071715158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574877546,67.20535004,89.98196847,69.2770652,746.1236526,0,0.882061532,28.10794641,-0.882061532,151.8920536,0.993314612,0,831.1174952,69.2770652,876.4579488,4,15,5% -2018-04-12 00:00:00,59.07517542,256.3766123,480.4407235,775.5445884,81.87829427,683.693842,600.6627153,83.03112671,79.4093616,3.621765113,118.9573484,0,118.9573484,2.468932671,116.4884158,1.031056317,4.474616009,1.658909539,-1.658909539,0.246463451,0.246463451,0.170423302,1.357740478,43.66960098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33129885,1.788733316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.983678354,41.97688151,77.31497721,43.76561483,600.6627153,0,0.774504425,39.23987641,-0.774504425,140.7601236,0.98544259,0,669.2335989,43.76561483,697.8773185,4,16,4% -2018-04-12 01:00:00,70.74884155,266.456786,270.6291901,630.9250769,62.60705109,453.613102,390.8537674,62.75933466,60.71921751,2.040117149,67.50501396,0,67.50501396,1.887833586,65.61718037,1.234800227,4.65054823,2.746072307,-2.746072307,0.060547668,0.060547668,0.23133887,0.566906751,18.23366985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.36562144,1.367729007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410722011,17.52689701,58.77634345,18.89462602,390.8537674,0,0.619493157,51.72086848,-0.619493157,128.2791315,0.969288858,0,437.6265454,18.89462602,449.9927002,4,17,3% -2018-04-12 02:00:00,82.50145359,275.6559651,63.78838974,277.2757964,27.60361014,146.0078842,118.7557609,27.25212328,26.77125945,0.480863826,16.2985843,0,16.2985843,0.832350692,15.46623361,1.439922003,4.811104193,6.848231611,-6.848231611,0,0,0.432737215,0.208087673,6.692814863,0.390601697,1,0.144998307,0,0.945957332,0.984719295,0.724496596,1,25.95684579,0.603035243,0.056379174,0.312029739,0.852592367,0.577088963,0.961238037,0.922476074,0.14247785,6.43338822,26.09932364,7.036423463,72.36955919,0,0.428294725,64.64061231,-0.428294725,115.3593877,0.93325796,0,93.6387908,7.036423463,98.24398923,4,18,5% -2018-04-12 03:00:00,94.25547529,284.8485985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645068382,4.971545914,-11.02911795,11.02911795,1,0,#DIV/0!,0,0,1,0.293906952,0,0.09042184,0.961238037,1,0.500269745,0.775773149,0,0,0.115824807,0.05824768,0.724496596,0.448993192,0.994456787,0.955694824,0,0,0,0,0,0,0.210181333,77.86702098,-0.210181333,102.132979,0.812110177,0,0,0,0,4,19,0% -2018-04-12 04:00:00,105.3825877,294.7954323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839273129,5.145150914,-2.579345719,2.579345719,1,0.971247786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.015253804,90.87401247,0.015253804,89.12598753,0,0,0,0,0,4,20,0% -2018-04-12 05:00:00,115.5739632,306.2990067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017146187,5.345926163,-1.159431579,1.159431579,1,0.728428167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234462023,103.559913,0.234462023,76.44008698,0,0.836745848,0,0,0,4,21,0% -2018-04-12 06:00:00,124.2004771,320.226264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167707258,5.589002659,-0.497794115,0.497794115,1,0.615281497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432493051,115.6258798,0.432493051,64.37412023,0,0.934391206,0,0,0,4,22,0% -2018-04-12 07:00:00,130.3616049,337.2041373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275239224,5.885322447,-0.057391417,0.057391417,1,0.5399682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595841866,126.5726701,0.595841866,53.42732988,0,0.966085118,0,0,0,4,23,0% -2018-04-13 08:00:00,133.0312786,356.767439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321833819,6.226766474,0.309026791,-0.309026791,1,0.477306996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713368814,135.5096766,0.713368814,44.49032343,0,0.979910028,0,0,0,4,0,0% -2018-04-13 09:00:00,131.6115449,16.75809483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297054792,0.292483931,0.673763218,-0.673763218,1,0.414933393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777058411,140.9920298,0.777058411,39.00797025,0,0.985654773,0,0,0,4,1,0% -2018-04-13 10:00:00,126.4335287,34.66899396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20668136,0.605088093,1.105203145,-1.105203145,1,0.341152821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782565236,141.4960498,0.782565236,38.50395024,0,0.986107563,0,0,0,4,2,0% -2018-04-13 11:00:00,118.4644585,49.50340781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067594848,0.863997457,1.727728868,-1.727728868,1,0.234694652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729509758,136.8453111,0.729509758,43.15468889,0,0.981460821,0,0,0,4,3,0% -2018-04-13 12:00:00,108.6771106,61.65956665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896773401,1.076162453,2.926976178,-2.926976178,1,0.029611284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621504005,128.4260482,0.621504005,51.57395177,0,0.969549995,0,0,0,4,4,0% -2018-04-13 13:00:00,97.78199737,71.98524896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706617803,1.256379607,7.312884281,-7.312884281,1,0,#DIV/0!,0,0,0.418747658,1,0.135902048,0,0.947059835,0.985821798,0.724496596,1,0,0,0.059766,0.312029739,0.844536196,0.569032792,0.961238037,0.922476074,0,0,0,0,0,0,-0.46590528,117.768826,0.46590528,62.23117402,0,0.942682049,0,0,0,4,5,0% -2018-04-13 14:00:00,86.05939739,81.30850648,17.87882304,101.914144,10.87505052,10.68190575,0,10.68190575,10.54712763,0.13477812,32.18061679,27.51776625,4.662850538,0.327922898,4.33492764,1.502019837,1.419101148,-14.23508154,14.23508154,0,0,0.608264342,0.081980724,2.636781907,1,0.490963587,0,0.070133766,0.961238037,1,0.544938188,0.820441592,10.13830025,0.224686032,0.115824807,0.108704402,0.724496596,0.448993192,0.989005356,0.950243393,0.059394756,2.555764424,10.19769501,2.780450455,0,14.00754503,-0.270009296,105.66482,0.270009296,74.33517999,0,0.86482119,10.19769501,14.89447222,19.94582919,4,6,96% -2018-04-13 15:00:00,74.38583869,90.38850472,203.8078143,555.0622262,54.40844832,54.30422225,0,54.30422225,52.76783286,1.536389393,82.04886694,30.99268728,51.05617966,1.640615463,49.41556419,1.298277802,1.577577013,-3.354016509,3.354016509,0.896275707,0.896275707,0.266959579,1.419571409,45.65829627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.72244807,1.188620318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.028474654,43.88849107,51.75092272,45.07711139,0,30.99268728,-0.055836419,93.20085587,0.055836419,86.79914413,0,0,51.75092272,45.07711139,81.25299058,4,7,57% -2018-04-13 16:00:00,62.6180026,100.0380947,418.2420187,742.1982856,76.88958475,203.3581936,125.6342285,77.72396508,74.57108008,3.152885003,103.7261243,0,103.7261243,2.318504673,101.4076197,1.092890316,1.745994131,-1.671375791,1.671375791,0.815975783,0.815975783,0.183839933,2.679343062,86.17688305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.68055862,1.679748743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.941174927,82.83649788,73.62173355,84.51624662,125.6342285,0,0.169273132,80.25443987,-0.169273132,99.74556013,0.754619396,0,168.4277592,84.51624662,223.7419523,4,8,33% -2018-04-13 17:00:00,51.22231684,111.3535896,610.6707262,829.0105362,91.4612535,415.2802498,321.9733967,93.30685313,88.70335925,4.603493883,150.8220819,0,150.8220819,2.757894249,148.0641877,0.893998079,1.943486772,-0.934360973,0.934360973,0.689938827,0.689938827,0.149771799,3.38990815,109.0310988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.2650429,1.998084995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.455976915,104.8048394,87.72101982,106.8029244,321.9733967,0,0.388382756,67.14609288,-0.388382756,112.8539071,0.92126102,0,384.3425596,106.8029244,454.2429375,4,9,18% -2018-04-13 18:00:00,40.81923688,126.0829493,762.9244772,874.0749864,101.4458296,616.6836429,512.5455324,104.1381105,98.38686351,5.75124697,188.0388384,0,188.0388384,3.058966057,184.9798723,0.712430082,2.200562596,-0.481972874,0.481972874,0.612575905,0.612575905,0.132969688,3.819354608,122.8435732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57319553,2.216210495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.767109412,118.0819151,97.34030494,120.2981256,512.5455324,0,0.586386226,54.09901901,-0.586386226,125.900981,0.964731967,0,591.8093646,120.2981256,670.5420819,4,10,13% -2018-04-13 19:00:00,32.60406324,146.8700972,863.2192106,896.9803918,107.5902031,783.3615856,672.508313,110.8532726,104.3459615,6.507311035,212.5417332,0,212.5417332,3.24424159,209.2974916,0.569048253,2.56336677,-0.145297322,0.145297322,0.555000995,0.555000995,0.124638333,3.972485169,127.7687784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3013072,2.350441988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.878051982,122.8162097,103.1793592,125.1666517,672.508313,0,0.74974695,41.43153733,-0.74974695,138.5684627,0.983310832,0,764.4640683,125.1666517,846.3831384,4,11,11% -2018-04-13 20:00:00,28.67286634,175.1400304,904.2208423,905.1919554,110.0294212,898.6208436,785.0928167,113.5280269,106.7116282,6.816398654,222.5566049,0,222.5566049,3.317793016,219.2388119,0.500435924,3.056770183,0.142830598,-0.142830598,0.505728219,0.505728219,0.121684235,3.857218015,124.0613905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.575276,2.403729746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794541322,119.2525274,105.3698174,121.6562572,785.0928167,0,0.867321911,29.8510959,-0.867321911,150.1489041,0.992351278,0,884.4576771,121.6562572,964.0792643,4,12,9% -2018-04-13 21:00:00,30.76420384,204.9716071,882.9958726,901.0157236,108.7714117,951.085932,838.9379838,112.1479482,105.4915523,6.656395867,217.3724317,0,217.3724317,3.279859386,214.0925723,0.536936649,3.577429417,0.420713063,-0.420713063,0.458207518,0.458207518,0.123184507,3.494261421,112.3874587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4024926,2.37624696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531580505,108.0311002,103.9340731,110.4073472,838.9379838,0,0.93110249,21.39266966,-0.93110249,158.6073303,0.996300219,0,939.76817,110.4073472,1012.027571,4,13,8% -2018-04-13 22:00:00,37.87197565,228.2200021,801.0869398,883.3089468,103.8165945,934.1702902,827.4452174,106.7250728,100.6861411,6.038931733,197.3632566,0,197.3632566,3.130453366,194.2328032,0.660990669,3.983190455,0.722178194,-0.722178194,0.406653945,0.406653945,0.129594666,2.920115951,93.92096683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.78334862,2.268002807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115614066,90.28040577,98.89896268,92.54840858,827.4452174,0,0.936756296,20.48623524,-0.936756296,159.5137648,0.996624325,0,923.5509936,92.54840858,984.1220761,4,14,7% -2018-04-13 23:00:00,47.74109589,244.5705431,664.4661486,846.663401,95.1003922,845.6281356,748.3863446,97.24179099,92.23276449,5.0090265,163.9751384,0,163.9751384,2.867627708,161.1075106,0.833239312,4.26856123,1.095632678,-1.095632678,0.342789467,0.342789467,0.143123005,2.188200307,70.38004377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65764147,2.077586513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.585343674,67.65197511,90.24298515,69.72956162,748.3863446,0,0.883924289,27.88056678,-0.883924289,152.1194332,0.993434069,0,833.7154769,69.72956162,879.3520804,4,15,5% -2018-04-13 00:00:00,58.89599633,256.7506514,483.4753856,776.8222081,82.17434543,686.3546064,603.013479,83.34112741,79.69648573,3.644641678,119.7020644,0,119.7020644,2.477859706,117.2242047,1.027929052,4.481144223,1.645966122,-1.645966122,0.248676905,0.248676905,0.169965934,1.371756518,44.12040501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.60729349,1.795200922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993832928,42.4102115,77.60112641,44.20541242,603.013479,0,0.776256745,39.08088721,-0.776256745,140.9191128,0.985588321,0,671.924169,44.20541242,700.8557273,4,16,4% -2018-04-13 01:00:00,70.58071604,266.8025376,273.6693355,633.6529348,62.99331255,456.7942862,393.6374194,63.15686681,61.09383176,2.06303505,68.25377963,0,68.25377963,1.899480794,66.35429883,1.231865883,4.656582734,2.715502195,-2.715502195,0.065775465,0.065775465,0.230180383,0.57933248,18.63332398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.72571491,1.376167369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.419724409,17.91105977,59.14543931,19.28722713,393.6374194,0,0.621219279,51.59477253,-0.621219279,128.4052275,0.969513123,0,440.7820829,19.28722713,453.4051873,4,17,3% -2018-04-13 02:00:00,82.33371689,275.9842115,66.3217216,284.7376226,28.3368692,150.4357158,122.4533466,27.98236919,27.48240804,0.499961152,16.93493041,0,16.93493041,0.854461158,16.08046925,1.436994445,4.816833175,6.678112282,-6.678112282,0,0,0.427263776,0.21361529,6.87060201,0.37960287,1,0.14863851,0,0.945510858,0.984272822,0.724496596,1,26.64580696,0.6190542,0.055034655,0.312029739,0.855815799,0.580312395,0.961238037,0.922476074,0.146303889,6.604283988,26.79211085,7.223338188,75.96970481,0,0.430056785,64.52883607,-0.430056785,115.4711639,0.933736284,0,97.7277807,7.223338188,102.4553111,4,18,5% -2018-04-13 03:00:00,94.07348585,285.1682217,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641892067,4.97712439,-11.47870037,11.47870037,1,0,#DIV/0!,0,0,1,0.330264634,0,0.08689848,0.961238037,1,0.507790949,0.783294353,0,0,0.115824807,0.066752964,0.724496596,0.448993192,0.993579719,0.954817755,0,0,0,0,0,0,0.212131135,77.75272847,-0.212131135,102.2472715,0.814296741,0,0,0,0,4,19,0% -2018-04-13 04:00:00,105.1783131,295.1114426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835707865,5.150666333,-2.601409523,2.601409523,1,0.975020919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.013080241,90.74946396,0.013080241,89.25053604,0,0,0,0,0,4,20,0% -2018-04-13 05:00:00,115.3368256,306.6089827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013007355,5.351336264,-1.162339944,1.162339944,1,0.728925527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232006599,103.4152374,0.232006599,76.58476256,0,0.834488888,0,0,0,4,21,0% -2018-04-13 06:00:00,123.9210125,320.5128878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162829681,5.594005186,-0.496048397,0.496048397,1,0.614982961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429717107,115.4496084,0.429717107,64.55039161,0,0.933644381,0,0,0,4,22,0% -2018-04-13 07:00:00,130.0368299,337.4267846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269570831,5.889208375,-0.053435158,0.053435158,1,0.53929164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592728849,126.3508957,0.592728849,53.64910431,0,0.965644396,0,0,0,4,23,0% -2018-04-14 08:00:00,132.6730721,356.8731189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315581937,6.228610936,0.31484121,-0.31484121,1,0.476312672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709925415,135.2288472,0.709925415,44.7711528,0,0.979570066,0,0,0,4,0,0% -2018-04-14 09:00:00,131.245922,16.72681292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290673468,0.291937959,0.681986557,-0.681986557,1,0.41352712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77331411,140.652433,0.77331411,39.34756702,0,0.98534322,0,0,0,4,1,0% -2018-04-14 10:00:00,126.0839794,34.53335658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200580574,0.602720774,1.117550719,-1.117550719,1,0.339041261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778570279,141.1298573,0.778570279,38.87014272,0,0.985779722,0,0,0,4,2,0% -2018-04-14 11:00:00,118.1404902,49.30963115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061940534,0.860615416,1.749066232,-1.749066232,1,0.231045748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72533171,136.4964492,0.72533171,43.50355078,0,0.981066022,0,0,0,4,3,0% -2018-04-14 12:00:00,108.3775481,61.43772771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89154505,1.072290634,2.97650042,-2.97650042,1,0.021142139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617223105,128.1136332,0.617223105,51.88636677,0,0.968992015,0,0,0,4,4,0% -2018-04-14 13:00:00,97.50117629,71.74854451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701716551,1.252248335,7.591012997,-7.591012997,1,0,#DIV/0!,0,0,0.434384657,1,0.130980518,0,0.947648484,0.986410447,0.724496596,1,0,0,0.061614892,0.312029739,0.840176732,0.564673327,0.961238037,0.922476074,0,0,0,0,0,0,-0.46160893,117.4909777,0.46160893,62.50902234,0,0.941683205,0,0,0,4,5,0% -2018-04-14 14:00:00,85.7993371,81.06015964,20.47812084,114.1723036,12.11502976,11.90408964,0,11.90408964,11.74971691,0.154372725,35.69272192,30.36225159,5.330470332,0.365312847,4.965157485,1.497480928,1.414766678,-13.36236658,13.36236658,0,0,0.591608471,0.091328212,2.937429228,1,0.44911259,0,0.0746978,0.961238037,1,0.534602847,0.810106251,11.29427482,0.250741314,0.115824807,0.097037903,0.724496596,0.448993192,0.990318666,0.951556703,0.066166979,2.846266666,11.3604418,3.09700798,0,16.72618216,-0.265933599,105.4224348,0.265933599,74.57756523,0,0.861983141,11.3604418,17.51469501,22.82345939,4,6,101% -2018-04-14 15:00:00,74.12173009,90.12684619,208.5870928,561.0149124,55.09652784,55.00758186,0,55.00758186,53.43516424,1.572417613,81.2887378,29.05301862,52.23571918,1.661363599,50.57435558,1.293668237,1.57301021,-3.300901298,3.300901298,0.905358943,0.905358943,0.264141597,1.46291065,47.05223521,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.36391238,1.203652272,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.059873786,45.2283982,52.42378616,46.43205048,0,29.05301862,-0.051786535,92.96847776,0.051786535,87.03152224,0,0,52.42378616,46.43205048,82.81263456,4,7,58% -2018-04-14 16:00:00,62.34851215,99.76007839,422.9713661,744.7364059,77.34499469,207.1178543,128.9165598,78.20129455,75.01275772,3.188536822,104.8865417,0,104.8865417,2.332236962,102.5543047,1.088186821,1.74114183,-1.656915946,1.656915946,0.813503004,0.813503004,0.182861066,2.70262308,86.92564847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10511597,1.68969774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958041222,83.55623969,74.06315719,85.24593743,128.9165598,0,0.173103609,80.03168126,-0.173103609,99.96831874,0.761155647,0,172.1887247,85.24593743,227.9804858,4,8,32% -2018-04-14 17:00:00,50.93712447,111.0602599,615.1152423,830.38032,91.83211761,419.1501815,325.4501425,93.70003896,89.06304044,4.636998522,151.9108892,0,151.9108892,2.76907717,149.1418121,0.889020534,1.938367203,-0.929049662,0.929049662,0.689030539,0.689030539,0.149292541,3.4103082,109.6872346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.61078215,2.006186984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.470756682,105.435542,88.08153883,107.441729,325.4501425,0,0.391929017,66.92541816,-0.391929017,113.0745818,0.922425879,0,388.2851725,107.441729,458.6036353,4,9,18% -2018-04-14 18:00:00,40.50556033,125.7959558,767.0336022,874.9490537,101.7722702,620.3636135,515.8779295,104.485684,98.70346073,5.78222329,189.0449867,0,189.0449867,3.068809445,185.9761773,0.706955393,2.195553614,-0.480208772,0.480208772,0.612274226,0.612274226,0.132682936,3.83777042,123.4358889,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.87752082,2.223341997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780451605,118.6512716,97.65797243,120.8746136,515.8779295,0,0.589609106,53.87072591,-0.589609106,126.1292741,0.965198053,0,595.5823457,120.8746136,674.6923628,4,10,13% -2018-04-14 19:00:00,32.2538731,146.6775654,866.9969512,897.6192178,107.8877856,786.7460327,675.5756726,111.1703601,104.6345708,6.535789239,213.4666634,0,213.4666634,3.2532148,210.2134486,0.562936282,2.560006454,-0.145412771,0.145412771,0.555020738,0.555020738,0.124438483,3.989401847,128.3128769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5787294,2.356943048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890308058,123.3392179,103.4690375,125.6961609,675.5756726,0,0.75263058,41.18123643,-0.75263058,138.8187636,0.983566345,0,767.9425329,125.6961609,850.2081563,4,11,11% -2018-04-14 20:00:00,28.30970123,175.2163384,907.7030374,905.7232567,110.3069369,901.6885427,787.8651181,113.8234246,106.9807757,6.842648911,223.4092716,0,223.4092716,3.326161136,220.0831104,0.494097497,3.058102008,0.141379822,-0.141379822,0.505976316,0.505976316,0.121523155,3.873018883,124.5696007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8339909,2.40979242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805988997,119.7410384,105.6399798,122.1508309,787.8651181,0,0.869874006,29.55599846,-0.869874006,150.4440015,0.992520411,0,887.612191,122.1508309,967.5574668,4,12,9% -2018-04-14 21:00:00,30.44652227,205.3241173,886.2415307,901.5232831,109.0360524,953.8690801,841.440004,112.4290762,105.7482131,6.680863008,218.1673589,0,218.1673589,3.287839281,214.8795197,0.531392059,3.583581881,0.417973745,-0.417973745,0.45867597,0.45867597,0.123031982,3.509297921,112.8710843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6492048,2.382028367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542474397,108.4959794,104.1916792,110.8780078,841.440004,0,0.933353602,21.03623473,-0.933353602,158.9637653,0.996429735,0,942.6275192,110.8780078,1015.194958,4,13,8% -2018-04-14 22:00:00,37.62028382,228.6512557,804.1712873,883.876256,104.0762477,936.7457129,829.7455652,107.0001477,100.9379648,6.062182847,198.1189218,0,198.1189218,3.138282869,194.980639,0.656597818,3.990717251,0.717786005,-0.717786005,0.407405053,0.407405053,0.129420497,2.934696569,94.3899296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.02541116,2.273675255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126177674,90.73119063,99.15158883,93.00486589,829.7455652,0,0.938757614,20.1560502,-0.938757614,159.8439498,0.996738115,0,926.1906195,93.00486589,987.0604441,4,14,7% -2018-04-14 23:00:00,47.53705609,244.9795043,667.4722148,847.422389,95.36614716,848.1214912,750.5992978,97.52219345,92.49050596,5.031687497,164.7120074,0,164.7120074,2.8756412,161.8363662,0.829678145,4.27569895,1.088534211,-1.088534211,0.344003376,0.344003376,0.14287658,2.202520216,70.84062127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90539237,2.083392261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.595718399,68.09469971,90.50111077,70.17809198,750.5992978,0,0.885744002,27.65678213,-0.885744002,152.3432179,0.993550281,0,836.259254,70.17809198,882.1894116,4,15,5% -2018-04-14 00:00:00,58.71829738,257.1226535,486.4793554,778.0738641,82.46744696,688.9700689,605.3220328,83.64803603,79.98074916,3.667286871,120.4392498,0,120.4392498,2.486697798,117.952552,1.024827621,4.487636885,1.633193512,-1.633193512,0.25086115,0.25086115,0.169518904,1.385700284,44.56888445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.88053831,1.80160409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.003935139,42.841307,77.88447345,44.64291109,605.3220328,0,0.777975024,38.92445743,-0.777975024,141.0755426,0.985730585,0,674.5689147,44.64291109,703.7868072,4,16,4% -2018-04-14 01:00:00,70.41354397,267.1458606,276.6912269,636.3286948,63.37547741,459.9328526,396.3825643,63.55028827,61.46447293,2.085815343,68.99799586,0,68.99799586,1.911004474,67.08699139,1.22894818,4.662574851,2.68552548,-2.68552548,0.070901785,0.070901785,0.229047658,0.591765742,19.03322045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.0819893,1.384516236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.428732266,18.29545546,59.51072156,19.6799717,396.3825643,0,0.62292109,51.47023684,-0.62292109,128.5297632,0.969733011,0,443.8959794,19.6799717,456.7761273,4,17,3% -2018-04-14 02:00:00,82.16646619,276.3097243,68.87121016,292.0878168,29.06098157,154.8289782,126.1251121,28.70386602,28.18468575,0.519180274,17.57491808,0,17.57491808,0.876295818,16.69862227,1.43407537,4.822514444,6.515598199,-6.515598199,0,0,0.421961245,0.219073954,7.046171437,0.368718443,1,0.15228952,0,0.945060045,0.983822008,0.724496596,1,27.32589153,0.634873337,0.053692262,0.312029739,0.859048445,0.583545041,0.961238037,0.922476074,0.15009375,6.773048,27.47598528,7.407921337,79.62045719,0,0.431805453,64.41780658,-0.431805453,115.5821934,0.934207113,0,101.8579827,7.407921337,106.7063191,4,18,5% -2018-04-14 03:00:00,93.89181429,285.4847393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6387213,4.982648665,-11.96934562,11.96934562,1,0,#DIV/0!,0,0,1,0.365897595,0,0.083353179,0.961238037,1,0.515459326,0.79096273,0,0,0.115824807,0.075419237,0.724496596,0.448993192,0.992668503,0.95390654,0,0,0,0,0,0,0.214075054,77.63873159,-0.214075054,102.3612684,0.816437055,0,0,0,0,4,19,0% -2018-04-14 04:00:00,104.9742588,295.4238208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832146447,5.156118361,-2.624080955,2.624080955,1,0.978897962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010904903,90.62481729,0.010904903,89.37518271,0,0,0,0,0,4,20,0% -2018-04-14 05:00:00,115.1000304,306.914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008874499,5.356670658,-1.16534485,1.16534485,1,0.729439396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229543564,103.270201,0.229543564,76.72979905,0,0.832176424,0,0,0,4,21,0% -2018-04-14 06:00:00,123.6423282,320.7944725,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157965722,5.598919768,-0.494328536,0.494328536,1,0.614688848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426929944,115.2728839,0.426929944,64.72711612,0,0.932884767,0,0,0,4,22,0% -2018-04-14 07:00:00,129.7136189,337.6443875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263929735,5.893006263,-0.049483195,0.049483195,1,0.538615814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58960348,126.128875,0.58960348,53.87112499,0,0.965197244,0,0,0,4,23,0% -2018-04-15 08:00:00,132.3172851,356.9753519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309372282,6.230395239,0.320665769,-0.320665769,1,0.475316613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706471086,134.9485137,0.706471086,45.0514863,0,0.979225695,0,0,0,4,0,0% -2018-04-15 09:00:00,130.8831644,16.69467524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284342155,0.29137705,0.690241038,-0.690241038,1,0.41211552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769562757,140.3146411,0.769562757,39.68535893,0,0.985028041,0,0,0,4,1,0% -2018-04-15 10:00:00,125.7372904,34.39866342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194529711,0.600369935,1.129977888,-1.129977888,1,0.33691609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774574341,140.7664568,0.774574341,39.23354318,0,0.985448417,0,0,0,4,2,0% -2018-04-15 11:00:00,117.8192556,49.11740578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056333933,0.857260451,1.770639276,-1.770639276,1,0.22735654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721160524,136.1503788,0.721160524,43.84962125,0,0.980667309,0,0,0,4,3,0% -2018-04-15 12:00:00,108.0806708,61.21741575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886363564,1.068445464,3.027088467,-3.027088467,1,0.012491074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612958144,127.8037047,0.612958144,52.19629525,0,0.968428362,0,0,0,4,4,0% -2018-04-15 13:00:00,97.2231029,71.51312111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696863255,1.248139422,7.887476326,-7.887476326,1,0,#DIV/0!,0,0,0.450151929,1,0.126110437,0,0.948225528,0.986987491,0.724496596,1,0,0,0.063456063,0.312029739,0.835862482,0.560359078,0.961238037,0.922476074,0,0,0,0,0,0,-0.457338207,117.2154798,0.457338207,62.78452019,0,0.940671719,0,0,0,4,5,0% -2018-04-15 14:00:00,85.54137017,80.81276263,23.19970612,126.5705293,13.36020741,13.13223705,0,13.13223705,12.95734786,0.174889184,39.17419563,33.14629874,6.027896892,0.402859547,5.625037345,1.492978556,1.410448786,-12.5968912,12.5968912,0,0,0.575878304,0.100714887,3.239336966,1,0.406298798,0,0.079218535,0.961238037,1,0.524529441,0.800032845,12.45509562,0.277206101,0.115824807,0.085664283,0.724496596,0.448993192,0.991568539,0.952806575,0.072967593,3.137477682,12.52806322,3.414683782,0,19.67899741,-0.261880067,105.181648,0.261880067,74.81835202,0,0.859072907,12.52806322,20.32037729,25.82734375,4,6,106% -2018-04-15 15:00:00,73.860707,89.86570888,213.3147906,566.7673304,55.76850184,55.69493274,0,55.69493274,54.08687575,1.608056996,80.48250236,27.0802356,53.40226676,1.681626094,51.72064066,1.289112525,1.568452505,-3.250042809,3.250042809,0.914056257,0.914056257,0.261437576,1.505985869,48.43768234,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.99036226,1.218332381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091081636,46.56014268,53.0814439,47.77847506,0,27.0802356,-0.047780163,92.73864441,0.047780163,87.26135559,0,0,53.0814439,47.77847506,84.35150026,4,7,59% -2018-04-15 16:00:00,62.08240412,99.48194751,427.6312906,747.1976968,77.7924309,210.8365644,132.1661971,78.67036738,75.44670208,3.223665301,106.0298862,0,106.0298862,2.345728815,103.6841574,1.08354236,1.73628753,-1.642888556,1.642888556,0.811104179,0.811104179,0.18191473,2.72550299,87.66154503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52223979,1.699472541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.974617639,84.26361145,74.49685743,85.96308399,132.1661971,0,0.176882501,79.81177334,-0.176882501,100.1882267,0.767326475,0,175.9114795,85.96308399,232.1725987,4,8,32% -2018-04-15 17:00:00,50.65557377,110.7657538,619.4851521,831.7099331,92.19710194,422.9599207,328.8729608,94.08695989,89.41701914,4.669940748,152.9814301,0,152.9814301,2.780082795,150.2013473,0.884106547,1.933227102,-0.92388174,0.92388174,0.688146772,0.688146772,0.14882859,3.4303491,110.3318188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95103994,2.014160521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485276246,106.0551409,88.43631619,108.0693014,328.8729608,0,0.395417859,66.70796261,-0.395417859,113.2920374,0.923551488,0,392.1674284,108.0693014,462.8966248,4,9,18% -2018-04-15 18:00:00,40.19560941,125.5060785,771.0673287,875.7971201,102.0936502,623.9749444,519.1471632,104.8277812,99.01514993,5.812631224,190.0327012,0,190.0327012,3.078500238,186.9542009,0.701545729,2.190494302,-0.478502109,0.478502109,0.611982369,0.611982369,0.132405623,3.855855921,124.0175808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17712834,2.230362943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793554489,119.2104159,97.97068283,121.4407789,519.1471632,0,0.592771033,53.64610334,-0.592771033,126.3538967,0.965650399,0,599.2853482,121.4407789,678.7659092,4,10,13% -2018-04-15 19:00:00,31.90702853,146.4808104,870.7016756,898.2385589,108.1808035,790.0587786,678.5763084,111.4824702,104.9187531,6.563717016,214.3737522,0,214.3737522,3.262050371,211.1117019,0.556882702,2.556572433,-0.145549434,0.145549434,0.555044109,0.555044109,0.124245544,4.006019594,128.8473607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8518963,2.363344389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902347559,123.8529841,103.7542439,126.2163285,678.5763084,0,0.755452214,40.93510102,-0.755452214,139.064899,0.983814477,0,771.3474398,126.2163285,853.9535024,4,11,11% -2018-04-15 20:00:00,27.94930697,175.2914916,911.1172881,906.2382328,110.5803111,904.6853648,790.5710711,114.1142937,107.2459067,6.868386975,224.2453394,0,224.2453394,3.334404378,220.910935,0.48780743,3.059413679,0.139928463,-0.139928463,0.506224513,0.506224513,0.121367811,3.888557639,125.0693805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0888448,2.415764621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.817246772,120.2214458,105.9060916,122.6372104,790.5710711,0,0.872365613,29.26528644,-0.872365613,150.7347136,0.992684582,0,890.6938046,122.6372104,970.9574061,4,12,9% -2018-04-15 21:00:00,30.13172997,205.678572,889.4265518,902.0157661,109.2969695,956.5853339,843.8791983,112.7061356,106.0012626,6.704873043,218.9474718,0,218.9474718,3.295706893,215.6517649,0.525897897,3.589768283,0.415250631,-0.415250631,0.459141649,0.459141649,0.122884761,3.524114116,113.347624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8924456,2.387728425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.553208681,108.9540476,104.4456542,111.341776,843.8791983,0,0.935548169,20.68311337,-0.935548169,159.3168866,0.996555398,0,945.4180241,111.341776,1018.28899,4,13,8% -2018-04-15 22:00:00,37.37132417,229.0827417,807.2040101,884.4281594,104.3325854,939.2606957,831.9890779,107.2716178,101.186573,6.085044793,198.8619701,0,198.8619701,3.146012396,195.7159577,0.652252653,3.998248103,0.713430566,-0.713430566,0.408149877,0.408149877,0.129251817,2.949102241,94.85326556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26438277,2.279275271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136614535,91.17656677,99.40099731,93.45584204,831.9890779,0,0.940708489,19.82911964,-0.940708489,160.1708804,0.996848572,0,928.7681211,93.45584204,989.9331006,4,14,7% -2018-04-15 23:00:00,47.33513838,245.3870436,670.4367951,848.1634655,95.62892218,850.5623754,752.7629823,97.7993931,92.74535734,5.054035755,165.4387279,0,165.4387279,2.883564837,162.555163,0.826154017,4.282811852,1.081509314,-1.081509314,0.345204704,0.345204704,0.142636745,2.216713091,71.29711289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.15036522,2.089132908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606001088,68.53349683,90.75636631,70.62262974,752.7629823,0,0.887521112,27.43661497,-0.887521112,152.563385,0.993663312,0,838.7493245,70.62262974,884.9704232,4,15,6% -2018-04-15 00:00:00,58.54208293,257.4924761,489.4526424,779.3000599,82.75762767,691.5407651,607.5888845,83.95188062,80.26217986,3.689700764,121.1689076,0,121.1689076,2.495447817,118.6734598,1.021752098,4.494091507,1.620589534,-1.620589534,0.253016557,0.253016557,0.169081992,1.399569935,45.0149801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.1510602,1.807943449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013983654,43.2701111,78.16504385,45.07805455,607.5888845,0,0.779659743,38.77056765,-0.779659743,141.2294324,0.98586946,0,677.1683696,45.07805455,706.6710547,4,16,4% -2018-04-15 01:00:00,70.2473346,267.4866349,279.6946164,638.9534089,63.75360221,463.0293252,399.0896732,63.93965204,61.83119588,2.108456162,69.73760428,0,69.73760428,1.922406332,67.81519795,1.22604728,4.668522485,2.656128499,-2.656128499,0.075928965,0.075928965,0.227940041,0.604202896,19.43324207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.43449734,1.392776844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437742941,18.67997146,59.87224029,20.0727483,399.0896732,0,0.62459902,51.34723735,-0.62459902,128.6527627,0.969948642,0,446.9687267,20.0727483,460.105939,4,17,3% -2018-04-15 02:00:00,81.99972536,276.6323968,71.43524309,299.3247321,29.7758711,159.1860559,129.7695282,29.41652776,28.87801873,0.538509037,18.21815411,0,18.21815411,0.897852375,17.32030173,1.431165193,4.828146143,6.360214306,-6.360214306,0,0,0.416823263,0.224463094,7.219504682,0.357948317,1,0.155950712,0,0.944604948,0.983366911,0.724496596,1,27.99701193,0.650490989,0.052352204,0.312029739,0.862289724,0.58678632,0.961238037,0.922476074,0.153847521,6.939662507,28.15085945,7.590153496,83.31874397,0,0.433540948,64.30751157,-0.433540948,115.6924884,0.93467064,0,106.0264432,7.590153496,110.9940469,4,18,5% -2018-04-15 03:00:00,93.7104944,285.7980542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635556671,4.988117042,-12.50687453,12.50687453,1,0,#DIV/0!,0,0,1,0.400822742,0,0.079786292,0.961238037,1,0.523275864,0.798779268,0,0,0.115824807,0.084248601,0.724496596,0.448993192,0.991721998,0.952960035,0,0,0,0,0,0,0.216013162,77.52502591,-0.216013162,102.4749741,0.818532623,0,0,0,0,4,19,0% -2018-04-15 04:00:00,104.770477,295.7324798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828589782,5.161505478,-2.647382457,2.647382457,1,0.982882753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008728,90.50008392,0.008728,89.49991608,0,0,0,0,0,4,20,0% -2018-04-15 05:00:00,114.8636506,307.2158523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004748893,5.361928137,-1.168449862,1.168449862,1,0.729970384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227073458,103.124835,0.227073458,76.87516503,0,0.829806938,0,0,0,4,21,0% -2018-04-15 06:00:00,123.3645168,321.0709825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153116999,5.603745778,-0.49263674,0.49263674,1,0.614399534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424132452,115.0957628,0.424132452,64.90423717,0,0.932112298,0,0,0,4,22,0% -2018-04-15 07:00:00,129.3920755,337.8569503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258317744,5.896716183,-0.045537713,0.045537713,1,0.537941097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586466998,125.9066944,0.586466998,54.09330557,0,0.964743711,0,0,0,4,23,0% -2018-04-16 08:00:00,131.964021,357.0741473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303206661,6.232119544,0.326497936,-0.326497936,1,0.474319254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703007386,134.6687878,0.703007386,45.33121223,0,0.978876992,0,0,0,4,0,0% -2018-04-16 09:00:00,130.5233772,16.66165841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278062683,0.290800798,0.698523468,-0.698523468,1,0.410699141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765806186,139.9787673,0.765806186,40.02123271,0,0.984709329,0,0,0,4,1,0% -2018-04-16 10:00:00,125.3935724,34.26488035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188530699,0.59803498,1.142480419,-1.142480419,1,0.334778031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770579458,140.4059522,0.770579458,39.59404777,0,0.985113765,0,0,0,4,2,0% -2018-04-16 11:00:00,117.5008674,48.92671543,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05077701,0.853932276,1.792443066,-1.792443066,1,0.223627872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716998358,135.8072121,0.716998358,44.1927879,0,0.980264833,0,0,0,4,3,0% -2018-04-16 12:00:00,107.7865887,60.99863775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881230863,1.064627068,3.078753137,-3.078753137,1,0.003655895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608711312,127.4963807,0.608711312,52.50361935,0,0.967859256,0,0,0,4,4,0% -2018-04-16 13:00:00,96.94788214,71.27900518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692059746,1.244053328,8.204004687,-8.204004687,1,0,#DIV/0!,0,0,0.466044071,1,0.121293343,0,0.948790945,0.987552908,0.724496596,1,0,0,0.065288741,0.312029739,0.831594912,0.556091508,0.961238037,0.922476074,0,0,0,0,0,0,-0.453095241,116.9424455,0.453095241,63.05755452,0,0.939647925,0,0,0,4,5,0% -2018-04-16 14:00:00,85.28569104,80.56635764,25.97580475,138.3601655,14.60434184,14.35978364,0,14.35978364,14.16396705,0.195816588,42.41498313,35.67647374,6.738509391,0.440374791,6.2981346,1.488516114,1.406148207,-11.92053032,11.92053032,0,0,0.562228658,0.110093698,3.540991762,1,0.362523157,0,0.083692927,0.961238037,1,0.514720104,0.790223508,13.61494388,0.304011479,0.115824807,0.074584023,0.724496596,0.448993192,0.992757091,0.953995128,0.079762509,3.427847293,13.69470639,3.731858772,0,22.74292583,-0.257852205,104.9426577,0.257852205,75.05734234,0,0.856090469,13.69470639,23.20186082,28.87986026,4,6,111% -2018-04-16 15:00:00,73.60286831,89.60514875,217.8430171,571.4382974,56.52973911,56.46735158,0,56.46735158,54.8251589,1.64219268,79.56304679,25.03990498,54.52314181,1.704580207,52.8185616,1.284612391,1.563904872,-3.201325889,3.201325889,0.922387341,0.922387341,0.259497595,1.54781199,49.78295417,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.70002811,1.234962557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.121384518,47.85326914,53.82141263,49.08823169,0,25.03990498,-0.043819088,92.51145295,0.043819088,87.48854705,0,0,53.82141263,49.08823169,85.94867851,4,7,60% -2018-04-16 16:00:00,61.81977605,99.20376986,432.0466592,748.8838074,78.38886594,214.5367624,135.2546597,79.28210262,76.02515241,3.256950215,107.1184281,0,107.1184281,2.363713532,104.7547146,1.078958635,1.731432414,-1.629283004,1.629283004,0.808777493,0.808777493,0.181436112,2.747146836,88.3576855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.07826825,1.712502408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990298531,84.93276815,75.06856678,86.64527056,135.2546597,0,0.180608338,79.59480424,-0.180608338,100.4051958,0.773157853,0,179.6417691,86.64527056,236.3493658,4,8,32% -2018-04-16 17:00:00,50.37776778,110.4701419,623.5935154,832.4229058,92.73834886,426.6531903,332.0103335,94.6428568,89.94194548,4.700911326,153.9938709,0,153.9938709,2.796403386,151.1974675,0.879257918,1.928067701,-0.918855725,0.918855725,0.687287273,0.687287273,0.148716025,3.449494258,110.9475929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.4556191,2.025984734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.499146848,106.6470464,88.95476595,108.6730311,332.0103335,0,0.398848147,66.49380969,-0.398848147,113.5061903,0.924639006,0,395.9444708,108.6730311,467.0687962,4,9,18% -2018-04-16 18:00:00,39.88949871,125.2133543,774.8328997,876.1144274,102.6054518,627.4039113,522.0513748,105.3525366,99.51151888,5.841017688,190.9611402,0,190.9611402,3.093932946,187.8672072,0.69620309,2.185385299,-0.476852928,0.476852928,0.611700343,0.611700343,0.132422683,3.873295799,124.5785073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.65425705,2.241543887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806189621,119.7495998,98.46044667,121.9911436,522.0513748,0,0.595871222,53.42523549,-0.595871222,126.5747645,0.966089252,0,602.8086688,121.9911436,682.6494325,4,10,13% -2018-04-16 19:00:00,31.56364916,146.2797536,874.1378466,898.3721605,108.6715811,793.1403797,681.1560274,111.9843523,105.394732,6.589620325,215.2216905,0,215.2216905,3.276849126,211.9448413,0.550889602,2.55306333,-0.145707649,0.145707649,0.555071165,0.555071165,0.124318586,4.022199397,129.3677588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3094253,2.374066037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.914069771,124.3532105,104.223495,126.7272766,681.1560274,0,0.758211415,40.69322706,-0.758211415,139.3067729,0.984055332,0,774.5187158,126.7272766,857.4591838,4,11,11% -2018-04-16 20:00:00,27.59178066,175.3653508,914.267218,906.2846256,111.0543138,907.4124653,792.8147164,114.5977489,107.7056164,6.892132477,225.0233693,0,225.0233693,3.348697306,221.674672,0.481567419,3.060702765,0.13847616,-0.13847616,0.506472871,0.506472871,0.121468113,3.903846368,125.5611186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5307353,2.426119799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.828323404,120.6941231,106.3590587,123.1202429,792.8147164,0,0.874796608,28.97908661,-0.874796608,151.0209134,0.992843857,0,893.5002797,123.1202429,974.0800163,4,12,9% -2018-04-16 21:00:00,29.81989436,206.0348123,892.3553208,902.0333633,109.7576327,958.9993435,845.824357,113.1749865,106.4480352,6.726951341,219.6714765,0,219.6714765,3.30959759,216.3618789,0.520455339,3.595985849,0.412543386,-0.412543386,0.459604616,0.459604616,0.122997678,3.5388607,113.8219249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3219003,2.397792188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563892531,109.4099636,104.8857929,111.8077558,845.824357,0,0.937686333,20.33343285,-0.937686333,159.6665672,0.996677265,0,947.8996995,111.8077558,1021.07564,4,13,8% -2018-04-16 22:00:00,37.12512767,229.5142579,809.9920136,884.4741593,104.7836882,941.4436701,833.7135347,107.7301353,101.6240734,6.106061941,199.5515563,0,199.5515563,3.159614809,196.3919415,0.647955713,4.005779481,0.709111525,-0.709111525,0.408888477,0.408888477,0.129363853,2.963619547,95.32019202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68492479,2.289130174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147132274,91.62539425,99.83205706,93.91452442,833.7135347,0,0.942609262,19.50553112,-0.942609262,160.4944689,0.996955751,0,931.0075606,93.91452442,992.4727385,4,14,7% -2018-04-16 23:00:00,47.13535299,245.7929861,673.1718649,848.335494,96.07574625,852.6408529,754.387491,98.25336189,93.17870802,5.074653867,166.1153506,0,166.1153506,2.897038231,163.2183124,0.822667104,4.289896886,1.07455741,-1.07455741,0.34639355,0.34639355,0.142720977,2.231208086,71.76332177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.56691837,2.098894337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.616502663,68.98163454,91.18342104,71.08052888,754.387491,0,0.889256074,27.22008613,-0.889256074,152.7799139,0.993773226,0,840.8735119,71.08052888,887.3942964,4,15,6% -2018-04-16 00:00:00,58.36735938,257.8599785,492.2170197,779.8445137,83.21115807,693.7139667,609.3013923,84.41257444,80.70203464,3.710539807,121.8528385,0,121.8528385,2.509123432,119.3437151,1.018702597,4.500505634,1.608152314,-1.608152314,0.255143447,0.255143447,0.169053801,1.413954175,45.4776267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.57386534,1.817851385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.024404986,43.71482461,78.59827033,45.532676,609.3013923,0,0.781311379,38.61919868,-0.781311379,141.3808013,0.986005028,0,679.3725066,45.532676,709.1727323,4,16,4% -2018-04-16 01:00:00,70.08209993,267.8247422,282.5224532,640.7010185,64.25272686,465.6862809,401.2412372,64.44504366,62.31527007,2.12977359,70.43829649,0,70.43829649,1.937456782,68.50083971,1.223163391,4.67442357,2.627298619,-2.627298619,0.080859165,0.080859165,0.227425205,0.617410625,19.85804802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.89980787,1.403680843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.447311896,19.08831109,60.34711977,20.49199194,401.2412372,0,0.626253472,51.2257518,-0.626253472,128.7742482,0.970160123,0,449.6153679,20.49199194,463.0269668,4,17,3% -2018-04-16 02:00:00,81.83352108,276.9521247,73.91747953,305.5355122,30.51620963,163.1416958,132.9884413,30.1532545,29.59603332,0.557221184,18.84232501,0,18.84232501,0.920176313,17.9221487,1.428264381,4.833726447,6.211527481,-6.211527481,0,0,0.412841588,0.230044078,7.399008329,0.347292599,1,0.159621373,0,0.944145639,0.982907602,0.724496596,1,28.69175194,0.666664607,0.051014719,0.312029739,0.865538977,0.590035573,0.961238037,0.922476074,0.157744875,7.112208241,28.84949681,7.778872848,86.8025398,0,0.43526345,64.19794119,-0.43526345,115.8020588,0.935127042,0,110.0208991,7.778872848,115.1120158,4,18,5% -2018-04-16 03:00:00,93.52956339,286.1080717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632398829,4.993527868,-13.09824463,13.09824463,1,0,#DIV/0!,0,0,1,0.43505552,0,0.076198291,0.961238037,1,0.531241258,0.806744662,0,0,0.115824807,0.093242833,0.724496596,0.448993192,0.990739067,0.951977104,0,0,0,0,0,0,0.217945479,77.41161034,-0.217945479,102.5883897,0.820584825,0,0,0,0,4,19,0% -2018-04-16 04:00:00,104.5670229,296.0373357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825038839,5.166826218,-2.671336594,2.671336594,1,0.986979152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006549808,90.37527904,0.006549808,89.62472096,0,0,0,0,0,4,20,0% -2018-04-16 05:00:00,114.6277622,307.5126116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000631864,5.367107564,-1.171658368,1.171658368,1,0.730519071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224596889,102.9791749,0.224596889,77.02082507,0,0.827378929,0,0,0,4,21,0% -2018-04-16 06:00:00,123.0876735,321.3423864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148285171,5.608482669,-0.490975141,0.490975141,1,0.614115384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.421325589,114.9183058,0.421325589,65.08169421,0,0.931326933,0,0,0,4,22,0% -2018-04-16 07:00:00,129.0723045,338.0644816,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252736687,5.900338287,-0.041600884,0.041600884,1,0.53726786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583320701,125.6844436,0.583320701,54.31555637,0,0.964283858,0,0,0,4,23,0% -2018-04-17 08:00:00,131.6133839,357.1695188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297086888,6.233784091,0.332335146,-0.332335146,1,0.473321033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699535926,134.3897831,0.699535926,45.61021689,0,0.978524043,0,0,0,4,0,0% -2018-04-17 09:00:00,130.1666645,16.62774452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271836872,0.290208889,0.706830563,-0.706830563,1,0.409278544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762046263,139.6449255,0.762046263,40.3550745,0,0.984387186,0,0,0,4,1,0% -2018-04-17 10:00:00,125.052934,34.13197849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182585438,0.595715405,1.155053878,-1.155053878,1,0.332627843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766587685,140.048447,0.766587685,39.95155299,0,0.984775889,0,0,0,4,2,0% -2018-04-17 11:00:00,117.185436,48.73754809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045271693,0.850630683,1.814472197,-1.814472197,1,0.219860669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71284737,135.4670599,0.71284737,44.53294005,0,0.979858758,0,0,0,4,3,0% -2018-04-17 12:00:00,107.4954091,60.78140425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876148819,1.060835628,3.131506411,-3.131506411,1,0,#DIV/0!,0,0,0.005336812,1,0.309099715,0,0.922938928,0.961700892,0.724496596,1,0,0,0.000910366,0.312029739,0.997421759,0.721918355,0.961238037,0.922476074,0,0,0,0,0,0,-0.604484781,127.1917762,0.604484781,52.80822376,0,0.967284932,0,0,0,4,4,0% -2018-04-17 13:00:00,96.67561599,71.04622647,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687307805,1.239990573,8.542548608,-8.542548608,1,0,#DIV/0!,0,0,0.48205533,1,0.11653073,0,0.949344726,0.988106689,0.724496596,1,0,0,0.067112154,0.312029739,0.827375449,0.551872045,0.961238037,0.922476074,0,0,0,0,0,0,-0.448882124,116.6719848,0.448882124,63.32801523,0,0.938612183,0,0,0,4,5,0% -2018-04-17 14:00:00,85.03247764,80.32099035,28.83923423,150.0759239,15.8440033,15.58365048,0,15.58365048,15.36624815,0.217402329,45.56742224,38.09726086,7.470161386,0.477755158,6.992406228,1.484096706,1.40186574,-11.31900182,11.31900182,0,0,0.549390569,0.119438789,3.841562036,1,0.3177866,0,0.088118228,0.961238037,1,0.505175937,0.780679341,14.7706222,0.331145502,0.115824807,0.063796467,0.724496596,0.448993192,0.993886531,0.955124568,0.086532996,3.716490767,14.8571552,4.047636269,0,25.99046185,-0.253853249,104.7056454,0.253853249,75.29435461,0,0.853035808,14.8571552,26.2184309,32.01659385,4,6,115% -2018-04-17 15:00:00,73.34830939,89.34522593,222.3129045,575.931026,57.27824359,57.22698179,0,57.22698179,55.55109322,1.675888579,78.6120316,22.98254368,55.62948792,1.727150379,53.90233754,1.2801695,1.559368363,-3.154643175,3.154643175,0.930370555,0.930370555,0.257646958,1.589262518,51.11614564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.39782379,1.25131457,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.151415284,49.13478349,54.54923907,50.38609806,0,22.98254368,-0.039905028,92.28699693,0.039905028,87.71300307,0,0,54.54923907,50.38609806,87.52593253,4,7,60% -2018-04-17 16:00:00,61.5607219,98.92561861,436.388954,750.5041816,78.97850548,218.1894005,138.3027041,79.88669641,76.59701214,3.289684267,108.1890476,0,108.1890476,2.38149334,105.8075542,1.074437287,1.726577759,-1.616088965,1.616088965,0.806521179,0.806521179,0.180981908,2.768392165,89.04100832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62796158,1.725383818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.0056907,85.58960403,75.63365228,87.31498785,138.3027041,0,0.184279725,79.38085831,-0.184279725,100.6191417,0.778673352,0,183.3262825,87.31498785,240.4721958,4,8,31% -2018-04-17 17:00:00,50.10380608,110.1735026,627.6248619,833.1021837,93.27423063,430.2823501,335.0893803,95.19296975,90.46166843,4.731301319,154.9874764,0,154.9874764,2.812562199,152.1749142,0.874476384,1.922890369,-0.913970079,0.913970079,0.686451778,0.686451778,0.14861462,3.468278673,111.5517643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95519658,2.037691739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.512756092,107.2277989,89.46795267,109.2654906,335.0893803,0,0.402218824,66.28303866,-0.402218824,113.7169613,0.925689557,0,399.6566928,109.2654906,471.1687711,4,9,18% -2018-04-17 18:00:00,39.58734009,124.91783,778.5215408,876.4101897,103.1124635,630.7619881,524.8899216,105.8720665,100.0032422,5.868824224,191.8707822,0,191.8707822,3.109221218,188.761561,0.690929427,2.180227428,-0.475261197,0.475261197,0.611428141,0.611428141,0.132446513,3.890403252,125.1287418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.12692026,2.252620188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818583913,120.2785061,98.94550417,122.5311263,524.8899216,0,0.598908967,53.20820192,-0.598908967,126.7917981,0.966514858,0,606.2594124,122.5311263,686.4535839,4,10,13% -2018-04-17 19:00:00,31.22385363,146.0743252,877.5001649,898.4897717,109.1579675,796.1493078,683.6678889,112.4814189,105.866452,6.614966901,216.0515898,0,216.0515898,3.29151547,212.7600743,0.544959051,2.549477928,-0.145887674,0.145887674,0.555101951,0.555101951,0.124396521,4.038078236,129.8784769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7628605,2.384691754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925573936,124.8441321,104.6884345,127.2288239,683.6678889,0,0.760907815,40.45570567,-0.760907815,139.5442943,0.984289018,0,777.6152292,127.2288239,860.8839498,4,11,11% -2018-04-17 20:00:00,27.23721944,175.4377777,917.3488902,906.3177659,111.5243143,910.0687815,794.9919734,115.0768082,108.1614447,6.915363424,225.7847287,0,225.7847287,3.362869557,222.4218591,0.475379158,3.061966853,0.137022631,-0.137022631,0.50672144,0.50672144,0.121572409,3.918870774,126.0443551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9688948,2.436387546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839208535,121.1586285,106.8081033,123.595016,794.9919734,0,0.877166931,28.69752212,-0.877166931,151.3024779,0.992998307,0,896.2337871,123.595016,977.1242532,4,12,9% -2018-04-17 21:00:00,29.51108268,206.3926757,895.223474,902.0389,110.2147125,961.3474559,847.707551,113.639905,106.8913323,6.748572691,220.380676,0,220.380676,3.323380231,217.0572958,0.515065559,3.602231744,0.409851758,-0.409851758,0.460064911,0.460064911,0.12311419,3.553383895,114.2890407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7480144,2.407777664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574414536,109.8589732,105.3224289,112.2667508,847.707551,0,0.939768286,19.98732059,-0.939768286,160.0126794,0.996795395,0,950.3134124,112.2667508,1023.789756,4,13,8% -2018-04-17 22:00:00,36.88172522,229.9455998,812.728537,884.5080698,105.2316497,943.5679773,835.382759,108.1852183,102.0585272,6.12669101,200.2285657,0,200.2285657,3.173122503,197.0554432,0.643707539,4.013307817,0.704828634,-0.704828634,0.409620894,0.409620894,0.129479457,2.977956958,95.78133242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.10253837,2.298916452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.157519679,92.06865994,100.2600581,94.3675764,835.382759,0,0.944460302,19.18537183,-0.944460302,160.8146282,0.997059712,0,933.1865515,94.3675764,994.9482429,4,14,7% -2018-04-17 23:00:00,46.937711,246.1971574,675.8654794,848.4937334,96.51985812,854.6693303,755.9649425,98.70438775,93.60942828,5.09495947,166.7818402,0,166.7818402,2.910429843,163.8714104,0.8192176,4.296951006,1.067678067,-1.067678067,0.347569987,0.347569987,0.142809274,2.245567942,72.22518409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.98094307,2.108596514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62690633,69.42559417,91.6078494,71.53419068,755.9649425,0,0.890949353,27.00721442,-0.890949353,152.9927856,0.993880087,0,842.9463524,71.53419068,889.7640495,4,15,6% -2018-04-17 00:00:00,58.19413485,258.2250207,494.9503338,780.3693678,83.66228254,695.8456028,610.9749021,84.87070072,81.13955604,3.731144684,122.5291653,0,122.5291653,2.5227265,120.0064388,1.015679258,4.506876821,1.595880239,-1.595880239,0.257242096,0.257242096,0.169031672,1.428251239,45.93746944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.99442756,1.827706761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.034763161,44.15684294,79.02919072,45.98454971,610.9749021,0,0.782930401,38.47033123,-0.782930401,141.5296688,0.986137363,0,681.5343695,45.98454971,711.6303376,4,16,4% -2018-04-17 01:00:00,69.91785426,268.1600653,285.3304067,642.40682,64.7490775,468.3050896,403.3574946,64.94759505,62.79665392,2.150941129,71.13408412,0,71.13408412,1.952423585,69.18166053,1.220296763,4.680276061,2.599024127,-2.599024127,0.085694387,0.085694387,0.226926665,0.630601543,20.2823133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.36253233,1.414524241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456868671,19.49613102,60.819401,20.91065526,403.3574946,0,0.627884826,51.10575932,-0.627884826,128.8942407,0.970367561,0,452.2244293,20.91065526,465.9100349,4,17,3% -2018-04-17 02:00:00,81.66788249,277.2688049,76.40810461,311.6251308,31.2502379,167.0557266,136.1718021,30.8839245,30.30792793,0.575996567,19.46833956,0,19.46833956,0.942309974,18.52602958,1.425373443,4.839253558,6.069141769,-6.069141769,0,0,0.408991141,0.235577493,7.576981983,0.336751574,1,0.163300703,0,0.9436822,0.982444163,0.724496596,1,29.38023291,0.682700368,0.049680071,0.312029739,0.868795471,0.593292066,0.961238037,0.922476074,0.161622244,7.283283286,29.54185515,7.965983655,90.3157334,0,0.436973108,64.08908756,-0.436973108,115.9109124,0.935576483,0,114.0391313,7.965983655,119.2527083,4,18,5% -2018-04-17 03:00:00,93.34906148,286.4146988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629248476,4.998879521,-13.75184354,13.75184354,1,0,#DIV/0!,0,0,1,0.468610119,0,0.072589755,0.961238037,1,0.539355907,0.814859312,0,0,0.115824807,0.102403372,0.724496596,0.448993192,0.98971859,0.950956627,0,0,0,0,0,0,0.219871971,77.29848665,-0.219871971,102.7015133,0.822594934,0,0,0,0,4,19,0% -2018-04-17 04:00:00,104.3639552,296.338307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821494638,5.172079158,-2.695966106,2.695966106,1,0.991191047,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.004370659,90.25042112,0.004370659,89.74957888,0,0,0,0,0,4,20,0% -2018-04-17 05:00:00,114.392444,307.8048369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996524786,5.372207857,-1.174973605,1.174973605,1,0.73108601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.222114526,102.8332597,0.222114526,77.16674027,0,0.824890905,0,0,0,4,21,0% -2018-04-17 06:00:00,122.8118953,321.6086567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143471933,5.613129962,-0.489345823,0.489345823,1,0.613836754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.418510373,114.7405768,0.418510373,65.25942324,0,0.930528648,0,0,0,4,22,0% -2018-04-17 07:00:00,128.7544121,338.2669932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247188418,5.903872783,-0.037674885,0.037674885,1,0.536596474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580165946,125.4622152,0.580165946,54.53778477,0,0.963817761,0,0,0,4,23,0% -2018-04-18 08:00:00,131.2654781,357.2614835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291014788,6.235389178,0.338174782,-0.338174782,1,0.472322396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696058363,134.1116152,0.696058363,45.88838483,0,0.978166943,0,0,0,4,0,0% -2018-04-18 09:00:00,129.8131304,16.59291999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265666537,0.289601086,0.715158926,-0.715158926,1,0.40785431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758284892,139.3132302,0.758284892,40.68676979,0,0.984061722,0,0,0,4,1,0% -2018-04-18 10:00:00,124.7154833,33.9999334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176695811,0.593410783,1.167693595,-1.167693595,1,0.330466324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762601098,139.6940447,0.762601098,40.30595533,0,0.984434923,0,0,0,4,2,0% -2018-04-18 11:00:00,116.8730702,48.54989538,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039819881,0.847355526,1.836720711,-1.836720711,1,0.216055949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708709727,135.1300319,0.708709727,44.86996812,0,0.979449254,0,0,0,4,3,0% -2018-04-18 12:00:00,107.2072371,60.5657289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87111927,1.057071383,3.185359163,-3.185359163,1,0,#DIV/0!,0,0,0.014365436,1,0.304192885,0,0.923710135,0.962472098,0.724496596,1,0,0,0.002440159,0.312029739,0.993103786,0.717600382,0.961238037,0.922476074,0,0,0,0,0,0,-0.600280715,126.890005,0.600280715,53.10999501,0,0.966705637,0,0,0,4,4,0% -2018-04-18 13:00:00,96.40640427,70.81481772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682609175,1.235951728,8.905313414,-8.905313414,1,0,#DIV/0!,0,0,0.498179545,1,0.111824061,0,0.949886869,0.988648832,0.724496596,1,0,0,0.06892552,0.312029739,0.823205491,0.547702087,0.961238037,0.922476074,0,0,0,0,0,0,-0.444700926,116.4042057,0.444700926,63.59579432,0,0.937564884,0,0,0,4,5,0% -2018-04-18 14:00:00,84.78189429,80.07670968,31.7772563,161.6626767,17.07447568,16.79916762,0,16.79916762,16.55961724,0.239550381,48.61689704,40.39727491,8.219622134,0.51485844,7.704763694,1.479723201,1.397602238,-10.78090546,10.78090546,0,0,0.537317493,0.12871461,4.139904311,1,0.272090474,0,0.092491933,0.961238037,1,0.495897182,0.771400586,15.91773397,0.35856736,0.115824807,0.053300058,0.724496596,0.448993192,0.994959116,0.956197153,0.093253297,4.002227295,16.01098727,4.360794655,0,29.40556123,-0.249886218,104.4707793,0.249886218,75.52922073,0,0.849908933,16.01098727,29.35284383,35.2218365,4,6,120% -2018-04-18 15:00:00,73.09712287,89.08600439,226.7222241,580.2507801,58.01417056,57.97395716,0,57.97395716,56.26482926,1.709127893,77.63280511,20.91203569,56.72076942,1.749341292,54.97142813,1.275785468,1.554844094,-3.109894629,3.109894629,0.938023007,0.938023007,0.255882152,1.630306014,52.43624555,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.08389402,1.267391811,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.181151157,50.40371373,55.26504518,51.67110554,0,20.91203569,-0.036039651,92.06536717,0.036039651,87.93463283,0,0,55.26504518,51.67110554,89.08275034,4,7,61% -2018-04-18 16:00:00,61.30533284,98.64757197,440.6568241,752.0600513,79.56131651,221.7926725,141.3085659,80.48410654,77.16224927,3.321857275,109.241416,0,109.241416,2.399067243,106.8423488,1.069979907,1.72172493,-1.603296453,1.603296453,0.804333531,0.804333531,0.18055165,2.789235445,89.71139985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.17128901,1.738116051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020791585,86.23400987,76.19208059,87.97212592,141.3085659,0,0.187895323,79.17001696,-0.187895323,100.829983,0.783894387,0,186.9630723,87.97212592,244.5390692,4,8,31% -2018-04-18 17:00:00,49.8337855,109.8759214,631.5782722,833.7481778,93.80470346,433.8462241,338.1089748,95.73724934,90.97614555,4.761103796,155.9620222,0,155.9620222,2.828557912,153.1334643,0.869763636,1.917696597,-0.909223244,0.909223244,0.685640022,0.685640022,0.148524273,3.486699661,112.1442465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.44973155,2.049280578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.526102035,107.7973154,89.97583358,109.846596,338.1089748,0,0.405528892,66.07572552,-0.405528892,113.9242745,0.926704223,0,403.3028482,109.846596,475.1952483,4,9,18% -2018-04-18 18:00:00,39.28924329,124.6195627,782.1326907,876.6846084,103.6146541,634.0484431,527.6621065,106.3863365,100.4902899,5.896046597,192.7614902,0,192.7614902,3.124364117,189.6371261,0.685726656,2.175021682,-0.473726825,0.473726825,0.611165748,0.611165748,0.132477079,3.907176674,125.6682327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.59508903,2.263591167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.8307362,120.7970853,99.42582523,123.0606764,527.6621065,0,0.601883621,52.99507849,-0.601883621,127.0049215,0.966927462,0,609.6368067,123.0606764,690.1775582,4,10,13% -2018-04-18 19:00:00,30.88776008,145.8644639,880.7883682,898.5915323,109.6399463,799.0852216,686.1115695,112.9736521,106.3338974,6.639754766,216.8633862,0,216.8633862,3.306048909,213.5573373,0.539093112,2.545815157,-0.146089711,0.146089711,0.555136502,0.555136502,0.12447933,4.053655353,130.3794905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2121868,2.39522118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.936859504,125.3257255,105.1490463,127.7209467,686.1115695,0,0.763541103,40.22262389,-0.763541103,139.7773761,0.984515641,0,780.6366176,127.7209467,864.2274228,4,11,11% -2018-04-18 20:00:00,26.88572083,175.5086332,920.3622699,906.3377793,111.9903082,912.6543095,797.1028427,115.5514668,108.6133872,6.938079553,226.5294089,0,226.5294089,3.376920993,223.1524879,0.46924435,3.063203516,0.135567651,-0.135567651,0.506970256,0.506970256,0.121680681,3.93363059,126.5190815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4033191,2.446567764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.849901972,121.6149536,107.2532211,124.0615213,797.1028427,0,0.879476571,28.42071313,-0.879476571,151.5792869,0.993148002,0,898.8943169,124.0615213,980.0901014,4,12,9% -2018-04-18 21:00:00,29.20536194,206.751994,898.0311173,902.0325087,110.6682123,963.6299326,849.5290374,114.1008952,107.3311574,6.769737892,221.0750964,0,221.0750964,3.337054922,217.7380414,0.509729725,3.60850303,0.407175564,-0.407175564,0.460522567,0.460522567,0.123234273,3.567683529,114.7489661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.170791,2.417684931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.584774572,110.3010709,105.7555656,112.7187559,849.5290374,0,0.941794258,19.64490475,-0.941794258,160.3550953,0.996909848,0,952.6594294,112.7187559,1026.431601,4,13,8% -2018-04-18 22:00:00,36.64114734,230.3765592,815.4137313,884.5300455,105.6764771,945.6340525,836.9971779,108.6368745,102.4899414,6.146933139,200.8930354,0,200.8930354,3.186535689,197.7064997,0.639508663,4.020829477,0.700581728,-0.700581728,0.410347158,0.410347158,0.129598599,2.992114,96.23667158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.51723006,2.308634259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167776408,92.50634926,100.6850065,94.81498352,836.9971779,0,0.946262009,18.86872848,-0.946262009,161.1312715,0.997160512,0,935.305541,94.81498352,997.3600514,4,14,7% -2018-04-18 23:00:00,46.74222383,246.5993819,678.517735,848.6383831,96.96126374,856.6483109,757.4958337,99.15247718,94.03752389,5.114953293,167.4382203,0,167.4382203,2.923739851,164.5144804,0.815805706,4.303971148,1.060870972,-1.060870972,0.348734069,0.348734069,0.142901591,2.259791512,72.68266302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.39244485,2.118239569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.637211258,69.86534031,92.02965611,71.98357988,757.4958337,0,0.892601429,26.79801617,-0.892601429,153.2019838,0.993983957,0,844.9683623,71.98357988,892.0801757,4,15,6% -2018-04-18 00:00:00,58.02241856,258.5874626,497.6525271,780.8749298,84.11100229,697.9361372,612.609877,85.32626019,81.57474523,3.751514959,123.1978739,0,123.1978739,2.536257055,120.6616168,1.012682244,4.513202627,1.583771914,-1.583771914,0.259312741,0.259312741,0.169015523,1.442458949,46.39443821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.41274796,1.837509603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.045056598,44.59609871,79.45780456,46.43360831,612.609877,0,0.784517281,38.32394529,-0.784517281,141.6760547,0.986266541,0,683.6544289,46.43360831,714.0442969,4,16,4% -2018-04-18 01:00:00,69.75461359,268.4924873,288.1181449,644.0715432,65.24265516,470.8861244,405.4388198,65.44730466,63.27534839,2.171956278,71.82488672,0,71.82488672,1.967306773,69.85757995,1.217447676,4.68607792,2.571294091,-2.571294091,0.090436503,0.090436503,0.226444104,0.643771737,20.70591202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.82267166,1.42530706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466410432,19.90331022,61.2890821,21.32861728,405.4388198,0,0.629493453,50.98723969,-0.629493453,129.0127603,0.970571056,0,454.7962657,21.32861728,468.7554191,4,17,3% -2018-04-18 02:00:00,81.50284054,277.5823347,78.90565545,317.593832,31.97787055,170.9273466,139.3189027,31.60844393,31.01361976,0.594824161,20.09584048,0,20.09584048,0.964250783,19.1315897,1.422492917,4.844725686,5.932694075,-5.932694075,0,0,0.405267156,0.241062696,7.753404941,0.32632566,1,0.166987828,0,0.943214729,0.981976692,0.724496596,1,30.06235975,0.69859641,0.048348545,0.312029739,0.872058406,0.596555002,0.961238037,0.922476074,0.165479617,7.452867745,30.22783937,8.151464154,93.8555698,0,0.438670052,63.98094404,-0.438670052,116.019056,0.936019117,0,118.0784469,8.151464154,123.4134172,4,18,5% -2018-04-18 03:00:00,93.16903118,286.7178437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626106355,5.004170396,-14.47787929,14.47787929,1,0,#DIV/0!,0,0,1,0.501499704,0,0.068961362,0.961238037,1,0.54761993,0.823123334,0,0,0.115824807,0.11173133,0.724496596,0.448993192,0.988659462,0.949897499,0,0,0,0,0,0,0.221792574,77.18565867,-0.221792574,102.8143413,0.824564138,0,0,0,0,4,19,0% -2018-04-18 04:00:00,104.1613345,296.6353137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817958241,5.177262902,-2.721294037,2.721294037,1,0.995522378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002190928,90.12553105,0.002190928,89.87446895,0,0,0,0,0,4,20,0% -2018-04-18 05:00:00,114.157777,308.0924682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992429075,5.377227971,-1.178398713,1.178398713,1,0.731671738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219627087,102.687131,0.219627087,77.31286905,0,0.822341378,0,0,0,4,21,0% -2018-04-18 06:00:00,122.5372811,321.8697679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138679011,5.617687213,-0.487750856,0.487750856,1,0.613563998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41568787,114.5626424,0.41568787,65.4373576,0,0.929717443,0,0,0,4,22,0% -2018-04-18 07:00:00,128.4385055,338.4644989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241674807,5.907319907,-0.033761934,0.033761934,1,0.53592732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577004134,125.2401041,0.577004134,54.7598959,0,0.963345508,0,0,0,4,23,0% -2018-04-19 08:00:00,130.920409,357.3500602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284992195,6.236935132,0.344014141,-0.344014141,1,0.471323807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692576397,133.8344006,0.692576397,46.16559935,0,0.977805798,0,0,0,4,0,0% -2018-04-19 09:00:00,129.4628789,16.55717415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259553496,0.288977204,0.723505001,-0.723505001,1,0.406427048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754524013,138.9837965,0.754524013,41.01620354,0,0.983733057,0,0,0,4,1,0% -2018-04-19 10:00:00,124.3813276,33.86872385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170863694,0.591120745,1.180394599,-1.180394599,1,0.328294325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758621801,139.3428491,0.758621801,40.65715092,0,0.984091006,0,0,0,4,2,0% -2018-04-19 11:00:00,116.563878,48.36375171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03442346,0.844106706,1.85918198,-1.85918198,1,0.212214846,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704587607,134.7962371,0.704587607,45.20376293,0,0.979036504,0,0,0,4,3,0% -2018-04-19 12:00:00,106.9221773,60.35162772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866144037,1.053334613,3.240320804,-3.240320804,1,0,#DIV/0!,0,0,0.023412516,1,0.299338335,0,0.924468275,0.963230238,0.724496596,1,0,0,0.003960192,0.312029739,0.98883144,0.713328035,0.961238037,0.922476074,0,0,0,0,0,0,-0.596101276,126.5911795,0.596101276,53.40882054,0,0.966121636,0,0,0,4,4,0% -2018-04-19 13:00:00,96.14034564,70.584814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677965575,1.231937406,9.294800242,-9.294800242,1,0,#DIV/0!,0,0,0.514410067,1,0.107174789,0,0.95041738,0.989179343,0.724496596,1,0,0,0.070728045,0.312029739,0.81908643,0.543583026,0.961238037,0.922476074,0,0,0,0,0,0,-0.440553706,116.1392151,0.440553706,63.86078491,0,0.936506459,0,0,0,4,5,0% -2018-04-19 14:00:00,84.53409447,79.83356717,34.77783799,173.0746391,18.29188767,18.0024898,0,18.0024898,17.74031977,0.262170033,51.55224992,42.56839256,8.983857367,0.551567903,8.432289464,1.475398279,1.393358601,-10.29703635,10.29703635,0,0,0.525963911,0.137891976,4.435079942,1,0.225437028,0,0.096811727,0.961238037,1,0.486883378,0.762386782,17.05267015,0.386250931,0.115824807,0.043092529,0.724496596,0.448993192,0.995977119,0.957215156,0.099902267,4.284081159,17.15257241,4.67033209,0,32.97190063,-0.245953958,104.2382167,0.245953958,75.7617833,0,0.846709919,17.15257241,32.58796742,38.48074533,4,6,124% -2018-04-19 15:00:00,72.84939971,88.8275513,231.068829,584.4026142,58.7376667,58.70840376,0,58.70840376,56.96650933,1.741894437,76.6286067,18.83213652,57.79647018,1.77115737,56.02531281,1.271461883,1.550333237,-3.066987152,3.066987152,0.945360618,0.945360618,0.254199872,1.670912137,53.74227804,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.75837559,1.283197485,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.210570155,51.65912184,55.96894575,52.94231933,0,18.83213652,-0.032224593,91.84665288,0.032224593,88.15334712,0,0,55.96894575,52.94231933,90.6186349,4,7,62% -2018-04-19 16:00:00,61.05369829,98.36971251,444.8489719,753.5526112,80.13726715,225.3448259,144.2705335,81.07429233,77.72083287,3.353459455,110.2752178,0,110.2752178,2.41643428,107.8587835,1.065588056,1.716875368,-1.590895891,1.590895891,0.80221291,0.80221291,0.180144886,2.809673344,90.36875294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70822081,1.75069841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035598773,86.86588267,76.74381959,88.61658108,144.2705335,0,0.19145383,78.96235978,-0.19145383,101.0376402,0.78884043,0,190.5502492,88.61658108,248.5480292,4,8,30% -2018-04-19 17:00:00,49.56780107,109.5774901,635.4528784,834.3612927,94.32972596,437.3436872,341.0680383,96.2756489,91.48533668,4.790312214,156.9172967,0,156.9172967,2.844389277,154.0729074,0.865121332,1.912487989,-0.904613689,0.904613689,0.684851741,0.684851741,0.148444879,3.504754744,112.7249601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.93918543,2.060750349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539182881,108.3555193,90.47836832,110.4162697,341.0680383,0,0.408777398,65.87194403,-0.408777398,114.128056,0.92768404,0,406.8817439,110.4162697,479.1469841,4,9,18% -2018-04-19 18:00:00,38.99531679,124.3186186,785.665837,876.9378845,104.1119951,637.2625971,530.3672819,106.8953152,100.9726343,5.922680946,193.6331391,0,193.6331391,3.139360784,190.4937783,0.680596671,2.169769217,-0.472249702,0.472249702,0.610913145,0.610913145,0.132514347,3.923614647,126.1969344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.05873677,2.274456201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842645455,121.3052935,99.90138223,123.5797497,530.3672819,0,0.604794583,52.78593836,-0.604794583,127.2140616,0.967327302,0,612.940134,123.5797497,693.8206085,4,10,13% -2018-04-19 19:00:00,30.5554868,145.6501151,884.0022392,898.6775833,110.1175032,801.9478314,688.4867949,113.4610365,106.7970542,6.663982283,217.6570265,0,217.6570265,3.320449013,214.3365775,0.533293849,2.542074064,-0.14631393,0.14631393,0.555174845,0.555174845,0.124566996,4.068930144,130.8707803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6573907,2.405654007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.947926038,125.7979719,105.6053168,128.2036259,688.4867949,0,0.766111014,39.99406571,-0.766111014,140.0059343,0.984735307,0,783.5825723,128.2036259,867.4892814,4,11,11% -2018-04-19 20:00:00,26.53738294,175.5777752,923.3073599,906.3447926,112.452293,915.1690928,799.1473705,116.0217224,109.0614415,6.960280886,227.2574106,0,227.2574106,3.390851539,223.8665591,0.463164707,3.064410271,0.134111034,-0.134111034,0.507219352,0.507219352,0.121792913,3.948125666,126.985293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8340059,2.456660397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860403605,122.0630938,107.6944095,124.5197541,799.1473705,0,0.881725561,28.14877751,-0.881725561,151.8512225,0.993293013,0,901.4819089,124.5197541,982.9775976,4,12,9% -2018-04-19 21:00:00,28.9027985,207.1125903,900.778386,902.0143221,111.1181371,965.8470759,851.2891127,114.5579632,107.7675153,6.790447964,221.7547703,0,221.7547703,3.350621816,218.4041485,0.504448997,3.614796624,0.404514664,-0.404514664,0.460977608,0.460977608,0.123357908,3.581759505,115.2016979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5902348,2.4275141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.594972569,110.7362539,106.1852074,113.163768,851.2891127,0,0.943764519,19.30631476,-0.943764519,160.6936852,0.997020683,0,954.9380596,113.163768,1029.001482,4,13,8% -2018-04-19 22:00:00,36.40342337,230.8069223,818.047767,884.5402398,106.1181782,947.6423627,838.5572495,109.0851132,102.9183236,6.166789612,201.5450067,0,201.5450067,3.199854607,198.3451521,0.635359597,4.028340731,0.6963707,-0.6963707,0.411067286,0.411067286,0.129721249,3.006090235,96.68619532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92900733,2.31828377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.177902142,92.93844858,101.1069095,95.25673235,838.5572495,0,0.948014812,18.55568695,-0.948014812,161.4443131,0.997258208,0,937.3650094,95.25673235,999.7086356,4,14,7% -2018-04-19 23:00:00,46.54890237,246.9994816,681.1287374,848.7696387,97.39996944,858.5783185,758.9806814,99.59763713,94.46300099,5.134636132,168.0845167,0,168.0845167,2.936968446,165.1475482,0.81243161,4.310954205,1.054135895,-1.054135895,0.349885835,0.349885835,0.142997886,2.273877647,73.13572152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80142963,2.127823642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647416614,70.30083738,92.44884625,72.42866102,758.9806814,0,0.894212807,26.59250427,-0.894212807,153.4074957,0.994084898,0,846.9400798,72.42866102,894.3431898,4,15,6% -2018-04-19 00:00:00,57.85221993,258.9471632,500.3235414,781.3614965,84.5573181,699.9860416,614.2067884,85.77925317,82.00760298,3.771650193,123.8589503,0,123.8589503,2.549715124,121.3092352,1.009711717,4.519480587,1.571826097,-1.571826097,0.261355596,0.261355596,0.169005276,1.456575086,46.84846172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.82882729,1.847259928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055283692,45.03252337,79.88411099,46.8797833,614.2067884,0,0.786072504,38.18001911,-0.786072504,141.8199809,0.986392636,0,685.733164,46.8797833,716.4150446,4,16,4% -2018-04-19 01:00:00,69.59239456,268.8218908,290.8853276,645.695885,65.73345892,473.4297506,407.4855815,65.94416908,63.75135261,2.19281647,72.51062175,0,72.51062175,1.982106317,70.52851543,1.214616419,4.691827096,2.544098188,-2.544098188,0.095087276,0.095087276,0.225977224,0.656917252,21.12871695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.28022502,1.436029279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.475934313,20.30972641,61.75615934,21.74575569,407.4855815,0,0.631079725,50.87017231,-0.631079725,129.1298277,0.970770708,0,457.3312257,21.74575569,471.5633879,4,17,3% -2018-04-19 02:00:00,81.33842699,277.8926117,81.40869639,323.4420109,32.69903283,174.7558443,142.4291148,32.32672948,31.71303634,0.613693141,20.72447744,0,20.72447744,0.985996486,19.73848096,1.419623359,4.85014104,5.80185021,-5.80185021,0,0,0.401665108,0.246499122,7.928259086,0.316015358,1,0.170681815,0,0.942743331,0.981505294,0.724496596,1,30.73804817,0.714351098,0.047020444,0.312029739,0.875326937,0.599823533,0.961238037,0.922476074,0.169317003,7.620944199,30.90736517,8.335295297,97.41932712,0,0.440354407,63.87350414,-0.440354407,116.1264959,0.936455093,0,122.1361902,8.335295297,127.5914743,4,18,4% -2018-04-19 03:00:00,92.98951632,287.0174144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62297323,5.009398892,-15.28890766,15.28890766,1,0,#DIV/0!,0,0,1,0.533736688,0,0.065313864,0.961238037,1,0.556033193,0.831536597,0,0,0.115824807,0.121227521,0.724496596,0.448993192,0.987560597,0.948798634,0,0,0,0,0,0,0.223707206,77.07313112,-0.223707206,102.9268689,0.826493566,0,0,0,0,4,19,0% -2018-04-19 04:00:00,103.9592232,296.9282763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814430734,5.182376063,-2.74734394,2.74734394,1,0.999977174,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-1.10129E-05,90.00063099,1.10129E-05,89.99936901,0,0,0,0,0,4,20,0% -2018-04-19 05:00:00,113.9238435,308.3754467,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988346165,5.382166877,-1.181936805,1.181936805,1,0.732276787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217135314,102.5408317,0.217135314,77.45916831,0,0.819728843,0,0,0,4,21,0% -2018-04-19 06:00:00,122.2639306,322.1256958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133908146,5.622153997,-0.486192344,0.486192344,1,0.613297477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412859179,114.384571,0.412859179,65.61542901,0,0.928893331,0,0,0,4,22,0% -2018-04-19 07:00:00,128.1246924,338.6570123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236197736,5.9106799,-0.029864322,0.029864322,1,0.53526079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573836702,125.0182064,0.573836702,54.98179364,0,0.962867198,0,0,0,4,23,0% -2018-04-20 08:00:00,130.578282,357.4352672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279020952,6.238422276,0.349850395,-0.349850395,1,0.470325748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68909176,133.5582568,0.68909176,46.44174324,0,0.977440723,0,0,0,4,0,0% -2018-04-20 09:00:00,129.1160148,16.52049738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253499576,0.288337073,0.731865035,-0.731865035,1,0.404997398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750765593,138.6567395,0.750765593,41.34326052,0,0.983401317,0,0,0,4,1,0% -2018-04-20 10:00:00,124.0505746,33.7383303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165090966,0.588844948,1.193151564,-1.193151564,1,0.326112755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754651919,138.9949645,0.754651919,41.00503545,0,0.983744288,0,0,0,4,2,0% -2018-04-20 11:00:00,116.2579676,48.17911287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029084316,0.84088415,1.8818486,-1.8818486,1,0.208338626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700483209,134.4657848,0.700483209,45.53421522,0,0.978620702,0,0,0,4,3,0% -2018-04-20 12:00:00,106.6403339,60.139118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861224941,1.049625618,3.296398897,-3.296398897,1,0,#DIV/0!,0,0,0.032473781,1,0.294537736,0,0.925213228,0.963975191,0.724496596,1,0,0,0.005469831,0.312029739,0.984606147,0.709102743,0.961238037,0.922476074,0,0,0,0,0,0,-0.591948643,126.2954121,0.591948643,53.70458794,0,0.965533213,0,0,0,4,4,0% -2018-04-20 13:00:00,95.8775385,70.35625176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673378726,1.227948243,9.713855104,-9.713855104,1,0,#DIV/0!,0,0,0.530739687,1,0.102584368,0,0.950936267,0.989698231,0.724496596,1,0,0,0.072518913,0.312029739,0.815019656,0.539516252,0.961238037,0.922476074,0,0,0,0,0,0,-0.436442527,115.8771197,0.436442527,64.1228803,0,0.935437379,0,0,0,4,5,0% -2018-04-20 14:00:00,84.28922321,79.591616,37.82965531,184.274272,19.49309219,19.19047946,0,19.19047946,18.90530354,0.285175921,54.36530595,44.60527939,9.760026557,0.587788651,9.172237906,1.471124469,1.389135756,-9.85988509,9.85988509,0,0,0.515286011,0.146947163,4.726325884,1,0.177829918,0,0.101075444,0.961238037,1,0.478133498,0.753636902,18.17249686,0.414181837,0.115824807,0.033171087,0.724496596,0.448993192,0.996942806,0.958180843,0.106462719,4.561253657,18.27895958,4.975435494,0,36.67312623,-0.242059181,104.0081068,0.242059181,75.99189317,0,0.843438944,18.27895958,35.90697837,41.77935878,4,6,129% -2018-04-20 15:00:00,72.60523011,88.56993611,235.3506332,588.3913581,59.44886818,59.43043795,0,59.43043795,57.65626547,1.774172485,75.60257538,16.74648686,58.85608852,1.792602719,57.0634858,1.26720032,1.545837003,-3.025834217,3.025834217,0.952398184,0.952398184,0.252597018,1.711051439,55.03329599,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.42139543,1.298734567,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.239650943,52.9000974,56.66104637,54.19883197,0,16.74648686,-0.028461477,91.63094273,0.028461477,88.36905727,0,0,56.66104637,54.19883197,92.13309792,4,7,63% -2018-04-20 16:00:00,60.80590679,98.09212606,448.964135,754.9830105,80.70632527,228.8441445,147.1869314,81.65721308,78.27273179,3.384481293,111.2901459,0,111.2901459,2.433593481,108.8565525,1.061263278,1.71203057,-1.578878176,1.578878176,0.80015776,0.80015776,0.179761186,2.829702662,91.01296466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.23872704,1.763130193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050109946,87.48512348,77.28883699,89.24825367,147.1869314,0,0.194953965,78.75796563,-0.194953965,101.2420344,0.793529197,0,194.0859644,89.24825367,252.4971615,4,8,30% -2018-04-20 17:00:00,49.30594684,109.2783057,639.2478496,834.9419216,94.84925817,440.773647,343.9655236,96.80812339,91.98920308,4.81892031,157.8530972,0,157.8530972,2.86005509,154.9930421,0.860551113,1.907266236,-0.900139959,0.900139959,0.684086688,0.684086688,0.148376343,3.522441605,113.2938303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.42352098,2.072100177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.551996952,108.9023391,90.97551793,110.9744392,343.9655236,0,0.411963413,65.67176686,-0.411963413,114.3282331,0.928629999,0,410.3922217,110.9744392,483.0227727,4,9,18% -2018-04-20 18:00:00,38.70566842,124.0150712,789.1205068,877.1702165,104.6044599,640.4038071,533.0048339,107.3989732,101.4502494,5.948723706,194.4856134,0,194.4856134,3.154210414,191.331403,0.675541353,2.164471314,-0.470829727,0.470829727,0.610670315,0.610670315,0.132558284,3.939715916,126.7148065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.51783861,2.285214708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85431077,121.8030919,100.3721494,124.0883066,533.0048339,0,0.607641281,52.58085307,-0.607641281,127.4191469,0.96771461,0,616.1687142,124.0883066,697.3820291,4,10,13% -2018-04-20 19:00:00,30.22715255,145.4312291,887.1416003,898.7480657,110.5906263,804.7368868,690.7933278,113.943559,107.2559109,6.687648114,218.4324674,0,218.4324674,3.334715419,215.097752,0.527563335,2.538253783,-0.146560494,0.146560494,0.55521701,0.55521701,0.124659498,4.083902165,131.3523319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0984612,2.415989969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.958773216,126.2608577,106.0572344,128.6768477,690.7933278,0,0.768617318,39.77011293,-0.768617318,140.2298871,0.984948122,0,786.4528254,128.6768477,870.6692486,4,11,11% -2018-04-20 20:00:00,26.19230422,175.6450546,926.1842023,906.3389337,112.9102683,917.6132163,801.1256415,116.4875748,109.5056071,6.981967739,227.968744,0,227.968744,3.404661183,224.5640828,0.457141947,3.065584517,0.132652605,-0.132652605,0.507468758,0.507468758,0.121909085,3.962355998,127.4429894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2609548,2.466665437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870713432,122.5030489,108.1316682,124.9697144,801.1256415,0,0.883913966,27.88183152,-0.883913966,152.1181685,0.993433409,0,903.9966451,124.9697144,985.7868238,4,12,9% -2018-04-20 21:00:00,28.60345731,207.4742768,903.4654518,901.9844748,111.564494,967.9992287,852.9881116,115.0111171,108.2004129,6.810704201,222.4197399,0,222.4197399,3.364081124,219.0556587,0.499224507,3.621109243,0.401868934,-0.401868934,0.461430054,0.461430054,0.123485069,3.595611856,115.6472371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0063525,2.437265322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60500855,111.1645232,106.611361,113.6017885,852.9881116,0,0.945679372,18.97168161,-0.945679372,161.0283184,0.997127957,0,957.1496545,113.6017885,1031.499753,4,13,8% -2018-04-20 22:00:00,36.16858042,231.2364684,820.6308472,884.5388084,106.556763,949.5934133,840.0634679,109.5299454,103.3436834,6.186261962,202.1845294,0,202.1845294,3.213079556,198.9714498,0.631260814,4.035837724,0.692195463,-0.692195463,0.411781294,0.411781294,0.129847377,3.019885329,97.12989298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33787937,2.327865201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.187896641,93.36494765,101.525776,95.69281285,840.0634679,0,0.949719176,18.24633145,-0.949719176,161.7536685,0.997352858,0,939.3654769,95.69281285,1001.994509,4,14,7% -2018-04-20 23:00:00,46.35775576,247.3972755,683.6986196,848.8876976,97.83598319,860.4599114,760.4200351,100.0398763,94.88586732,5.15400899,168.7207618,0,168.7207618,2.950115869,165.7706459,0.809095472,4.317897018,1.047472636,-1.047472636,0.351025319,0.351025319,0.143098114,2.287825276,73.58432523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.20790482,2.137348905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657521625,70.73205233,92.86542645,72.86940124,760.4200351,0,0.895784021,26.39068694,-0.895784021,153.6093131,0.994182974,0,848.8620784,72.86940124,896.5536441,4,15,6% -2018-04-20 00:00:00,57.6835472,259.3039798,502.9633396,781.8293647,85.0012321,701.9958161,615.7661347,86.22968144,82.43813133,3.791550107,124.5123856,0,124.5123856,2.563100769,121.9492848,1.006767823,4.525708211,1.560041616,-1.560041616,0.263370861,0.263370861,0.16900085,1.470597495,47.29947057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24266752,1.856957782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065442879,45.46605024,80.3081104,47.32300802,615.7661347,0,0.787596581,38.03852788,-0.787596581,141.9614721,0.986515722,0,687.7710836,47.32300802,718.7430459,4,16,5% -2018-04-20 01:00:00,69.43121319,269.1481573,293.6316305,647.280533,66.22148868,475.9363545,409.4981688,66.43818572,64.22466646,2.213519261,73.19121058,0,73.19121058,1.996822215,71.19438836,1.211803274,4.69752152,2.517426503,-2.517426503,0.099648403,0.099648403,0.225525733,0.670034177,21.55060235,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.73519231,1.446690897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48543748,20.7152587,62.22062979,22.16194959,409.4981688,0,0.632644036,50.75453477,-0.632644036,129.2454652,0.970966614,0,459.8296803,22.16194959,474.3342331,4,17,3% -2018-04-20 02:00:00,81.1746731,278.1995322,83.91583812,329.170248,33.41366451,178.5406252,145.5019129,33.03871227,32.40611924,0.632593034,21.35391176,0,21.35391176,1.007545268,20.3463665,1.416765315,4.855497814,5.676301257,-5.676301257,0,0,0.398180668,0.251886317,8.101529809,0.305821173,1,0.1743817,0,0.94226812,0.981030083,0.724496596,1,31.4072283,0.729963117,0.045696073,0.312029739,0.87860019,0.603096786,0.961238037,0.922476074,0.173134453,7.787498609,31.58036275,8.517461726,101.0043472,0,0.442026319,63.76676013,-0.442026319,116.2332399,0.936884563,0,126.2097765,8.517461726,131.7842849,4,18,4% -2018-04-20 03:00:00,92.81056066,287.3133188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619849864,5.014563399,-16.20055576,16.20055576,1,0,#DIV/0!,0,0,1,0.56533303,0,0.061648061,0.961238037,1,0.564595367,0.840098771,0,0,0.115824807,0.13089251,0.724496596,0.448993192,0.986420923,0.94765896,0,0,0,0,0,0,0.225615796,76.96090818,-0.225615796,103.0390918,0.828384311,0,0,0,0,4,19,0% -2018-04-20 04:00:00,103.7576837,297.2171152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810913204,5.187417253,-2.774140176,2.774140176,1,0.9954404,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.002168693,89.87574295,-0.002168693,90.12425705,0,0,0,0,0,4,20,0% -2018-04-20 05:00:00,113.6907258,308.6537133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984277494,5.387023546,-1.185591063,1.185591063,1,0.732901702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.214639955,102.3944051,0.214639955,77.60559486,0,0.817051759,0,0,0,4,21,0% -2018-04-20 06:00:00,121.9919436,322.3764155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129161077,5.626529882,-0.484672475,0.484672475,1,0.613037564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410025408,114.2064309,0.410025408,65.79356909,0,0.928056337,0,0,0,4,22,0% -2018-04-20 07:00:00,127.8130805,338.8445457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230759082,5.913952976,-0.025984457,0.025984457,1,0.534597293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570665097,124.796618,0.570665097,55.20338198,0,0.962382937,0,0,0,4,23,0% -2018-04-21 08:00:00,130.2392028,357.5171214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.273102904,6.239850901,0.355680565,-0.355680565,1,0.469328731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685606201,133.2833001,0.685606201,46.71669991,0,0.977071838,0,0,0,4,0,0% -2018-04-21 09:00:00,128.7726429,16.48287925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247506605,0.287680513,0.740235045,-0.740235045,1,0.403566042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.747011618,138.3321739,0.747011618,41.66782613,0,0.983066637,0,0,0,4,1,0% -2018-04-21 10:00:00,123.7233324,33.60873303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159379512,0.586583049,1.205958761,-1.205958761,1,0.323922595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750693601,138.6504955,0.750693601,41.34950451,0,0.98339493,0,0,0,4,2,0% -2018-04-21 11:00:00,115.9554473,47.99597453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023804341,0.837687783,1.904712283,-1.904712283,1,0.204428706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69639875,134.1387845,0.69639875,45.86121545,0,0.978202054,0,0,0,4,3,0% -2018-04-21 12:00:00,106.3618114,59.92821687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856363808,1.045944699,3.353598779,-3.353598779,1,0,#DIV/0!,0,0,0.041544703,1,0.289792784,0,0.925944876,0.964706839,0.724496596,1,0,0,0.006968427,0.312029739,0.980429362,0.704925958,0.961238037,0.922476074,0,0,0,0,0,0,-0.587825007,126.0028155,0.587825007,53.99718445,0,0.964940672,0,0,0,4,4,0% -2018-04-21 13:00:00,95.61808164,70.12916745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668850349,1.223984874,10.16572828,-10.16572828,1,0,#DIV/0!,0,0,0.547160563,1,0.09805427,0,0.951443545,0.990205509,0.724496596,1,0,0,0.074297284,0.312029739,0.811006575,0.535503171,0.961238037,0.922476074,0,0,0,0,0,0,-0.432369466,115.6180267,0.432369466,64.38197332,0,0.934358162,0,0,0,4,5,0% -2018-04-21 14:00:00,84.04741901,79.35090973,40.92207666,195.2312167,20.67555628,20.36059988,0,20.36059988,20.05211198,0.308487899,57.05042954,46.50495397,10.54547557,0.623444307,9.922031264,1.46690419,1.384934639,-9.463267914,9.463267914,0,0,0.505242108,0.155861077,5.013027994,1,0.129274684,0,0.105281027,0.961238037,1,0.469646053,0.745149457,19.27485275,0.442354834,0.115824807,0.02353254,0.724496596,0.448993192,0.997858413,0.95909645,0.112920819,4.833097339,19.38777357,5.275452173,0,40.49304074,-0.238204498,103.7805926,0.238204498,76.21940742,0,0.840096323,19.38777357,39.29350681,45.10458791,4,6,133% -2018-04-21 15:00:00,72.36470427,88.31322909,239.5655961,592.2216102,60.14789939,60.14016496,0,60.14016496,58.3342183,1.805946656,74.55775839,14.65862493,59.89913346,1.813681089,58.08545237,1.263002352,1.541356621,-2.986355484,2.986355484,0.959149445,0.959149445,0.251070689,1.750695203,56.30837571,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.07306948,1.314005775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.268372715,54.12575253,57.34144219,55.4397583,0,14.65862493,-0.024751925,91.41832569,0.024751925,88.58167431,0,0,57.34144219,55.4397583,93.62565521,4,7,63% -2018-04-21 16:00:00,60.56204667,97.81490018,453.0010743,756.3523474,81.26845748,232.2889343,150.0561072,82.23282708,78.81791364,3.414913447,112.285899,0,112.285899,2.450543842,109.8353551,1.057007116,1.707192066,-1.567234722,1.567234722,0.798166612,0.798166612,0.179400143,2.849320287,91.64393489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.76277657,1.775410671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064322848,88.09163606,77.82709942,89.86704673,150.0561072,0,0.198394449,78.55691354,-0.198394449,101.4430865,0.79797682,0,197.5683946,89.86704673,256.3845794,4,8,30% -2018-04-21 17:00:00,49.04831643,108.9784684,642.9623823,835.4904436,95.36326089,444.13503,346.8004012,97.33462875,92.48770672,4.846922026,158.7692277,0,158.7692277,2.875554169,155.8936736,0.856054614,1.902033088,-0.89580071,0.89580071,0.683344633,0.683344633,0.14831857,3.53975807,113.8507874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90270164,2.083329207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564542672,109.4377073,91.46724432,111.5210365,346.8004012,0,0.415086018,65.47526645,-0.415086018,114.5247336,0.92954304,0,413.8331434,111.5210365,486.8214314,4,9,18% -2018-04-21 18:00:00,38.42040567,123.7089991,792.4962606,877.3817982,105.0920233,643.4714541,535.5741715,107.8972826,101.923111,5.974171564,195.3188058,0,195.3188058,3.168912249,192.1498936,0.670562579,2.159129348,-0.469466848,0.469466848,0.610437249,0.610437249,0.132608857,3.955479398,127.2218143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97237113,2.295866137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865731359,122.290447,100.8381025,124.5863132,535.5741715,0,0.610423162,52.37989338,-0.610423162,127.6201066,0.968089609,0,619.3218927,124.5863132,700.8611429,4,10,13% -2018-04-21 19:00:00,29.90287649,145.2077586,890.2063136,898.8031203,111.0593053,807.4521684,693.0309597,114.4212087,107.7104575,6.710751216,219.189675,0,219.189675,3.34884782,215.8408272,0.521903651,2.534353487,-0.146829598,0.146829598,0.55526303,0.55526303,0.124756816,4.09857116,131.8241373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5353887,2.426228846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.969400854,126.7143749,106.5047895,129.1406038,693.0309597,0,0.771059806,39.55084586,-0.771059806,140.4491541,0.985154187,0,789.2471412,129.1406038,873.7670836,4,11,11% -2018-04-21 20:00:00,25.85058292,175.7103126,928.992883,906.3203328,113.3642358,919.9868021,803.0377755,116.9490266,109.9458858,7.00314076,228.66343,0,228.66343,3.41834998,225.24508,0.451177785,3.066723484,0.131192168,-0.131192168,0.507718508,0.507718508,0.122029176,3.976321782,127.892177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6841675,2.476582924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.880831595,122.9348252,108.5649991,125.4114081,803.0377755,0,0.886041884,27.61999013,-0.886041884,152.3800099,0.993569259,0,906.4386467,125.4114081,988.517905,4,12,9% -2018-04-21 21:00:00,28.30740059,207.8368516,906.0925335,901.9431053,112.0072927,970.086777,854.6264093,115.4603678,108.6298595,6.830508253,223.0700583,0,223.0700583,3.377433137,219.6926251,0.494057343,3.627437368,0.399238232,-0.399238232,0.461879931,0.461879931,0.123615733,3.609240818,116.0855914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4191529,2.44693881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614882687,111.585886,107.0340356,114.0328248,854.6264093,0,0.947539157,18.64113772,-0.947539157,161.3588623,0.997231732,0,959.2946101,114.0328248,1033.926813,4,13,8% -2018-04-21 22:00:00,35.93664192,231.6649686,823.1632235,884.5259128,106.9922441,951.487757,841.5163718,109.9713852,103.7660331,6.205352084,202.8116647,0,202.8116647,3.226210918,199.5854538,0.627212724,4.043316463,0.688055912,-0.688055912,0.412489199,0.412489199,0.129976949,3.03349915,97.56776024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74385799,2.337378827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.197759808,93.78584231,101.9416178,96.12322114,841.5163718,0,0.951375601,17.94074323,-0.951375601,162.0592568,0.997444521,0,941.3075126,96.12322114,1004.218238,4,14,7% -2018-04-21 23:00:00,46.1687899,247.7925788,686.2275629,848.9927652,98.26931593,862.2936978,761.8144911,100.4792067,95.30613348,5.173073233,169.3469999,0,169.3469999,2.96318245,166.3838175,0.805797395,4.324796362,1.040880976,-1.040880976,0.352152559,0.352152559,0.143202228,2.30163352,74.02844581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.61188065,2.146815598,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66752565,71.15895792,93.2794063,73.30577352,761.8144911,0,0.897315646,26.19256613,-0.897315646,153.8074339,0.994278248,0,850.7349837,73.30577352,898.7121464,4,15,6% -2018-04-21 00:00:00,57.51640602,259.6577675,505.5719309,782.2788425,85.44274963,703.9660126,617.2884624,86.67755025,82.86633548,3.81121477,125.1581821,0,125.1581821,2.576414151,122.581768,1.003850659,4.531882971,1.548417278,-1.548417278,0.26535874,0.26535874,0.169002163,1.484524183,47.74740076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65427363,1.866603282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075532717,45.89661777,80.72980635,47.76322105,617.2884624,0,0.789090065,37.89944225,-0.789090065,142.1005577,0.986635877,0,689.7687497,47.76322105,721.0288226,4,16,5% -2018-04-21 01:00:00,69.2710833,269.471167,296.3567724,648.8261892,66.70674799,478.4063743,411.4770183,66.92935595,64.69529342,2.234062532,73.86658514,0,73.86658514,2.011454574,71.85513057,1.20900848,4.703159103,2.49126932,-2.49126932,0.104121545,0.104121545,0.225089332,0.683118746,21.97144707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.18757684,1.457291991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.494917206,21.11979065,62.68249405,22.57708264,411.4770183,0,0.634186821,50.64030144,-0.634186821,129.3596986,0.971158879,0,462.2920538,22.57708264,477.0683029,4,17,3% -2018-04-21 02:00:00,81.01160815,278.5029919,86.42576003,334.779349,34.12172411,182.2812437,148.5369016,33.74434212,33.09282823,0.651513885,21.983822,0,21.983822,1.028895878,20.95492612,1.413919295,4.860794186,5.555760349,-5.555760349,0,0,0.39480965,0.257223969,8.273207058,0.295743544,1,0.178086511,0,0.941789214,0.980551178,0.724496596,1,32.06984874,0.745431561,0.044375736,0.312029739,0.881877287,0.606373882,0.961238037,0.922476074,0.176932082,7.952521311,32.24678082,8.697952872,104.6080718,0,0.443685974,63.66070162,-0.443685974,116.3392984,0.937307684,0,130.2967304,8.697952872,135.9893666,4,18,4% -2018-04-21 03:00:00,92.63220642,287.605464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616736995,5.019662294,-17.23253168,17.23253168,1,0,#DIV/0!,0,0,1,0.596300525,0,0.057964772,0.961238037,1,0.573305992,0.848809396,0,0,0.115824807,0.140726684,0.724496596,0.448993192,0.985239377,0.946477414,0,0,0,0,0,0,0.227518306,76.84899205,-0.227518306,103.151008,0.830237464,0,0,0,0,4,19,0% -2018-04-21 04:00:00,103.5567766,297.5017503,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807406715,5.192385073,-2.80170826,2.80170826,1,0.99072598,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004347824,89.75088726,-0.004347824,90.24911274,0,0,0,0,0,4,20,0% -2018-04-21 05:00:00,113.4585047,308.9272089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980224471,5.391796944,-1.189364831,1.189364831,1,0.733547055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212141736,102.2478931,0.212141736,77.75210695,0,0.814308519,0,0,0,4,21,0% -2018-04-21 06:00:00,121.721418,322.6219012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124439515,5.630814415,-0.483193572,0.483193572,1,0.612784657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407187648,114.0282892,0.407187648,65.97171077,0,0.927206491,0,0,0,4,22,0% -2018-04-21 07:00:00,127.5037757,339.0271087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225360695,5.917139301,-0.022124888,0.022124888,1,0.533937268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56749076,124.5754335,0.56749076,55.42456646,0,0.961892839,0,0,0,4,23,0% -2018-04-22 08:00:00,129.903276,357.5956358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.267239875,6.241221235,0.361501492,-0.361501492,1,0.468333294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682121467,133.0096452,0.682121467,46.99035478,0,0.976699272,0,0,0,4,0,0% -2018-04-22 09:00:00,128.4328676,16.44430676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241576408,0.287007296,0.748610791,-0.748610791,1,0.402133705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743264081,138.0102126,0.743264081,41.98978744,0,0.982729159,0,0,0,4,1,0% -2018-04-22 10:00:00,123.3997088,33.47991047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153731215,0.584334671,1.218810022,-1.218810022,1,0.3217249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746749002,138.3095457,0.746749002,41.69045426,0,0.983043098,0,0,0,4,2,0% -2018-04-22 11:00:00,115.656426,47.81433058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018585434,0.834517498,1.927763787,-1.927763787,1,0.200486666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692336462,133.8153458,0.692336462,46.18465419,0,0.977780779,0,0,0,4,3,0% -2018-04-22 12:00:00,106.0867153,59.71893982,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851562474,1.042292126,3.411923221,-3.411923221,1,0,#DIV/0!,0,0,0.050620484,1,0.285105195,0,0.926663104,0.965425067,0.724496596,1,0,0,0.008455307,0.312029739,0.976302564,0.70079916,0.961238037,0.922476074,0,0,0,0,0,0,-0.583732581,125.713503,0.583732581,54.28649699,0,0.964344339,0,0,0,4,4,0% -2018-04-22 13:00:00,95.3620745,69.90359612,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664382182,1.220047911,10.6541469,-10.6541469,1,0,#DIV/0!,0,0,0.563664175,1,0.093585987,0,0.951939229,0.990701192,0.724496596,1,0,0,0.07606229,0.312029739,0.807048607,0.531545203,0.961238037,0.922476074,0,0,0,0,0,0,-0.428336617,115.3620439,0.428336617,64.63795606,0,0.933269377,0,0,0,4,5,0% -2018-04-22 14:00:00,83.8088152,79.11150083,44.04513536,205.9213056,21.83726385,21.51082061,0,21.51082061,21.17878977,0.332030835,59.60412473,48.26639765,11.33772708,0.658474076,10.679253,1.462739767,1.380756166,-9.10204885,9.10204885,0,0,0.495792865,0.164618519,5.294697443,1,0.079779201,0,0.109426508,0.961238037,1,0.46141917,0.736922574,20.3578583,0.470771519,0.115824807,0.014173409,0.724496596,0.448993192,0.998726135,0.959964172,0.119265557,5.099093161,20.47712386,5.569864679,0,44.41574302,-0.234392442,103.555812,0.234392442,76.44418798,0,0.836682541,20.47712386,42.73174143,48.44419399,4,6,137% -2018-04-22 15:00:00,72.1279127,88.05749995,243.7117138,595.8977385,60.83487249,60.83767847,0,60.83767847,59.00047663,1.837201843,73.49711835,12.57199588,60.92512248,1.834395862,59.09072661,1.258869559,1.536893305,-2.94847639,2.94847639,0.965627152,0.965627152,0.249618172,1.789815335,57.56661364,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.71350233,1.329013558,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.296715118,55.33521868,58.01021745,56.66423224,0,12.57199588,-0.021097573,91.20889157,0.021097573,88.79110843,0,0,58.01021745,56.66423224,95.09582416,4,7,64% -2018-04-22 16:00:00,60.32220638,97.53812257,456.9585676,757.6616676,81.82362871,235.6775146,152.8764235,82.80109111,79.3563444,3.444746703,113.2621795,0,113.2621795,2.467284303,110.7948952,1.052821113,1.702361385,-1.55595748,1.55595748,0.79623809,0.79623809,0.179061373,2.868523175,92.26156578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.28033671,1.787539078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.078235275,88.68532637,78.35857198,90.47286545,152.8764235,0,0.201773998,78.35928321,-0.201773998,101.6407168,0.802198001,0,200.9957333,90.47286545,260.2084143,4,8,29% -2018-04-22 17:00:00,48.79500325,108.6780799,646.5956964,836.0072224,95.87169541,447.4267726,349.571651,97.85512154,92.98081006,4.874311482,159.665498,0,159.665498,2.890885345,156.7746126,0.851633465,1.89679032,-0.891594746,0.891594746,0.682625371,0.682625371,0.148271472,3.5567021,114.3957656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37669133,2.094436592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.576818564,109.9615612,91.95350989,112.0559978,349.571651,0,0.418144295,65.28251557,-0.418144295,114.7174844,0.930424053,0,417.2033824,112.0559978,490.5417918,4,9,18% -2018-04-22 18:00:00,38.13963571,123.4004845,795.7926912,877.5728195,105.5746616,646.4649363,538.0747188,108.3902174,102.391196,5.99902145,196.1326169,0,196.1326169,3.183465575,192.9491513,0.665662219,2.153744754,-0.468161083,0.468161083,0.61021395,0.61021395,0.132666036,3.970904193,127.7179287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.42231222,2.306409972,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87690657,122.7673311,101.2992188,125.0737411,538.0747188,0,0.613139681,52.18312976,-0.613139681,127.8168702,0.968452513,0,622.3990326,125.0737411,704.2572947,4,10,13% -2018-04-22 19:00:00,29.58277789,144.9796561,893.1962823,898.8428884,111.5235323,810.0934833,695.1995061,114.8939772,108.1606863,6.733290864,219.9286257,0,219.9286257,3.362845976,216.5657797,0.516316876,2.530372348,-0.147121484,0.147121484,0.555312945,0.555312945,0.12485893,4.112937098,132.2861952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9681658,2.436370462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.979808927,127.1585226,106.9479747,129.594893,695.1995061,0,0.773438289,39.33634372,-0.773438289,140.6636563,0.985353601,0,791.9653117,129.594893,876.7825773,4,11,11% -2018-04-22 20:00:00,25.51231615,175.7733775,931.7335383,906.2891235,113.8142003,922.2900091,804.8839259,117.4060832,110.3822823,7.023800978,229.3415017,0,229.3415017,3.43191807,225.9095836,0.445273917,3.067824174,0.129729482,-0.129729482,0.507968642,0.507968642,0.122153165,3.990023469,128.3328704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1036483,2.486412959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890758421,123.3584364,108.9944067,125.8448493,804.8839259,0,0.88810944,27.36336701,-0.88810944,152.636633,0.993700632,0,908.8080727,125.8448493,991.1710097,4,12,9% -2018-04-22 21:00:00,28.01468657,208.2000977,908.659908,901.8903583,112.446546,972.1101541,856.2044241,115.9057299,109.0558677,6.849862206,223.705793,0,223.705793,3.390678245,220.3151148,0.48894852,3.633777208,0.396622369,-0.396622369,0.46232727,0.46232727,0.123749871,3.6226469,116.5167771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8286482,2.456534846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.624595347,112.0003581,107.4532436,114.4568929,856.2044241,0,0.949344248,18.31481656,-0.949344248,161.6851834,0.997332066,0,961.373371,114.4568929,1036.283118,4,13,8% -2018-04-22 22:00:00,35.70762616,232.0921858,825.6452113,884.5017236,107.4246379,953.3260032,842.9165521,110.4094511,104.1853887,6.224062356,203.4264896,0,203.4264896,3.239249188,200.1872405,0.623215645,4.050772811,0.683951887,-0.683951887,0.413191028,0.413191028,0.130109927,3.046931847,97.99980196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1469585,2.34682501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.207491751,94.20113724,102.3544503,96.54796225,842.9165521,0,0.952984635,17.63899914,-0.952984635,162.3610009,0.997533257,0,943.1917438,96.54796225,1006.380454,4,14,7% -2018-04-22 23:00:00,45.98200607,248.1852033,688.7158161,849.0850607,98.69998292,864.0803509,763.1647059,100.915645,95.72381427,5.191830737,169.9632919,0,169.9632919,2.976168649,166.9871233,0.802537403,4.331648952,1.034360626,-1.034360626,0.353267605,0.353267605,0.143310173,2.315301779,74.46806401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.01337131,2.156224055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.677428257,71.58153566,93.69079957,73.73775971,763.1647059,0,0.898808307,25.99813604,-0.898808307,154.001864,0.994370786,0,852.5594877,73.73775971,900.8193767,4,15,6% -2018-04-22 00:00:00,57.35079807,260.0083801,508.1493934,782.7102594,85.88188099,705.8972545,618.7743844,87.12287017,83.2922254,3.83064477,125.7963592,0,125.7963592,2.589655582,123.2067036,1.000960255,4.538002315,1.536951798,-1.536951798,0.267319452,0.267319452,0.169009118,1.49835343,48.19219686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.06365523,1.876196654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085551959,46.32417271,81.14920719,48.20036936,618.7743844,0,0.790553563,37.76272706,-0.790553563,142.2372729,0.986753179,0,691.7267978,48.20036936,723.2729755,4,16,5% -2018-04-22 01:00:00,69.11201529,269.7907992,299.0605396,650.3335907,67.18924668,480.8403267,413.422639,67.41768766,65.16324299,2.254444671,74.53669392,0,74.53669392,2.026003689,72.51069023,1.20623222,4.708737738,2.465616948,-2.465616948,0.108508359,0.108508359,0.22466771,0.696167429,22.39113759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.63738777,1.467832776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.504370933,21.52321314,63.1417587,22.99104592,413.422639,0,0.635708573,50.52744215,-0.635708573,129.4725579,0.971347608,0,464.7188502,22.99104592,479.7660299,4,17,3% -2018-04-22 02:00:00,80.84925814,278.8028859,88.93723101,340.2703743,34.82319254,185.977429,151.5338378,34.44359121,33.7731448,0.670446415,22.61390908,0,22.61390908,1.050047739,21.56386134,1.411085752,4.866028323,5.439959968,-5.439959968,0,0,0.391547973,0.262511935,8.4432862,0.285782776,1,0.181795297,0,0.941306732,0.980068695,0.724496596,1,32.7258799,0.760756012,0.043059724,0.312029739,0.88515737,0.609653966,0.961238037,0.922476074,0.18071009,8.116007851,32.90658999,8.876763864,108.2280769,0,0.445333621,63.5553143,-0.445333621,116.4446857,0.937724623,0,134.3947227,8.876763864,140.2043871,4,18,4% -2018-04-22 03:00:00,92.45449292,287.8937567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363531,5.02469395,-18.41005926,18.41005926,1,0,#DIV/0!,0,0,1,0.62665103,0,0.054264804,0.961238037,1,0.582164542,0.857667947,0,0,0.115824807,0.150730309,0.724496596,0.448993192,0.984014903,0.94525294,0,0,0,0,0,0,0.229414755,76.73738163,-0.229414755,103.2626184,0.832054123,0,0,0,0,4,19,0% -2018-04-22 04:00:00,103.3565602,297.7821013,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80391228,5.197278121,-2.830075203,2.830075203,1,0.985874947,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006526066,89.62608133,-0.006526066,90.37391867,0,0,0,0,0,4,20,0% -2018-04-22 05:00:00,113.2272584,309.1958732,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976188461,5.396486021,-1.1932617,1.1932617,1,0.734213458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.209641336,102.1013345,0.209641336,77.89866552,0,0.811497418,0,0,0,4,21,0% -2018-04-22 06:00:00,121.4524492,322.8621254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119745122,5.635007118,-0.481758125,0.481758125,1,0.612539181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.404346953,113.8502103,0.404346953,66.14978969,0,0.926343819,0,0,0,4,22,0% -2018-04-22 07:00:00,127.1968815,339.2047075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22000438,5.920238983,-0.018288328,0.018288328,1,0.533281178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564315104,124.3547444,0.564315104,55.64525557,0,0.96139702,0,0,0,4,23,0% -2018-04-23 08:00:00,129.5706044,357.6708191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26143366,6.242533432,0.367309824,-0.367309824,1,0.46734001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678639288,132.7374035,0.678639288,47.2625965,0,0.976323157,0,0,0,4,0,0% -2018-04-23 09:00:00,128.0967924,16.40476313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235710789,0.28631713,0.756987766,-0.756987766,1,0.400701157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739524966,137.6909657,0.739524966,42.30903429,0,0.98238903,0,0,0,4,1,0% -2018-04-23 10:00:00,123.0798115,33.35183782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148147953,0.582099381,1.231698727,-1.231698727,1,0.319520802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742820282,137.9722177,0.742820282,42.0277823,0,0.982688968,0,0,0,4,2,0% -2018-04-23 11:00:00,115.3610123,47.63417185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013429494,0.831373135,1.950992867,-1.950992867,1,0.19651426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688298583,133.4955774,0.688298583,46.50442255,0,0.977357107,0,0,0,4,3,0% -2018-04-23 12:00:00,105.815151,59.51129944,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846822783,1.038668117,3.471372133,-3.471372133,1,0,#DIV/0!,0,0,0.05969605,1,0.280476712,0,0.927367799,0.966129762,0.724496596,1,0,0,0.00992978,0.312029739,0.97222726,0.696723856,0.961238037,0.922476074,0,0,0,0,0,0,-0.579673585,125.4275876,0.579673585,54.57241237,0,0.96374456,0,0,0,4,4,0% -2018-04-23 13:00:00,95.10961712,69.67957021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659975969,1.216137922,11.18340428,-11.18340428,1,0,#DIV/0!,0,0,0.580241299,1,0.08918103,0,0.952423335,0.991185298,0.724496596,1,0,0,0.077813037,0.312029739,0.803147186,0.527643782,0.961238037,0.922476074,0,0,0,0,0,0,-0.42434609,115.10928,0.42434609,64.89071997,0,0.932171649,0,0,0,4,5,0% -2018-04-23 14:00:00,83.57354073,78.87343954,47.18949737,216.3256714,22.97663144,22.63953559,0,22.63953559,22.28380123,0.355734364,62.02468236,49.89021217,12.13447019,0.692830213,11.44163998,1.458633453,1.376601212,-8.771928316,8.771928316,0,0,0.486901381,0.173207553,5.570950307,1,0.029354061,0,0.113509987,0.961238037,1,0.453450649,0.728954053,21.42003735,0.499438374,0.115824807,0.005089997,0.724496596,0.448993192,0.999548112,0.960786149,0.125488283,5.358830636,21.54552563,5.858269011,0,48.42573186,-0.230625482,103.3338993,0.230625482,76.66610075,0,0.833198285,21.54552563,46.20650574,51.7867595,4,6,140% -2018-04-23 15:00:00,71.89494629,87.80281653,247.787016,599.423889,61.50988788,61.52306101,0,61.52306101,59.65513782,1.867923192,72.42353839,10.48995751,61.93358088,1.854750067,60.07883081,1.254803528,1.532448241,-2.912127714,2.912127714,0.971843141,0.971843141,0.248236929,1.828384327,58.80712499,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.34278756,1.34376011,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.324658221,56.52764538,58.66744578,57.87140549,0,10.48995751,-0.017500066,91.0027311,0.017500066,88.9972689,0,0,58.66744578,57.87140549,96.54312325,4,7,65% -2018-04-23 16:00:00,60.08647449,97.26187972,460.8354088,758.9119659,82.37180217,239.0082154,155.646255,83.36196039,79.88798842,3.473971969,114.218694,0,114.218694,2.483813755,111.7348802,1.048706816,1.697540038,-1.545038936,1.545038936,0.794370909,0.794370909,0.178744516,2.887308361,92.86576196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79137315,1.79951461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.091845079,89.26610272,78.88321823,91.06561733,155.646255,0,0.205091318,78.16515526,-0.205091318,101.8348447,0.806206159,0,204.3661877,91.06561733,263.9668129,4,8,29% -2018-04-23 17:00:00,48.54610037,108.3772419,650.1470349,836.4926068,96.37452349,450.6478186,352.2782597,98.36955899,93.46847602,4.901082972,160.5417232,0,160.5417232,2.906047467,157.6356757,0.847289291,1.891539705,-0.887521021,0.887521021,0.681928723,0.681928723,0.148234966,3.57327181,114.9287044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.8454544,2.105421497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588823262,110.4738422,92.43427766,112.5792637,352.2782597,0,0.421137326,65.09358752,-0.421137326,114.9064125,0.931273882,0,420.50182,112.5792637,494.1826965,4,9,18% -2018-04-23 18:00:00,37.86346508,123.0896112,799.0094253,877.7434662,106.0523526,649.3836666,540.5059131,108.8777535,102.8544829,6.023270551,196.9269555,0,196.9269555,3.197869724,193.7290858,0.660842132,2.14831899,-0.466912534,0.466912534,0.610000435,0.610000435,0.132729789,3.985989609,128.2031276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86764124,2.316845729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887835903,123.2337227,101.7554771,125.5505684,540.5059131,0,0.615790301,51.99063258,-0.615790301,128.0093674,0.968803528,0,625.3995126,125.5505684,707.5698486,4,10,13% -2018-04-23 19:00:00,29.26697555,144.7468724,896.1114552,898.8675126,111.9833016,812.6606642,697.2988057,115.3618585,108.6065919,6.755266668,220.6493069,0,220.6493069,3.376709717,217.2725971,0.510805085,2.526309505,-0.147436461,0.147436461,0.555366809,0.555366809,0.124965819,4.1270002,132.7385129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3967871,2.446414695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989997596,127.5933076,107.3867847,130.0397222,697.2988057,0,0.775752595,39.12668464,-0.775752595,140.8733154,0.985546461,0,794.607155,130.0397222,879.7155525,4,11,11% -2018-04-23 20:00:00,25.17759907,175.8340627,934.4063609,906.2454442,114.2601695,924.5230344,806.6642807,117.8587537,110.8148038,7.043949843,230.0030061,0,230.0030061,3.445365686,226.5576404,0.439432001,3.068883331,0.128264245,-0.128264245,0.508219212,0.508219212,0.122281027,4.003461801,128.7650933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5194045,2.496155711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900494446,123.7739055,109.4198989,126.2700612,806.6642807,0,0.890116784,27.11207437,-0.890116784,152.8879256,0.993827596,0,911.1051215,126.2700612,993.7463512,4,12,9% -2018-04-23 21:00:00,27.72536829,208.5637819,911.1679184,901.8263865,112.8822706,974.0698435,857.7226211,116.3472223,109.4784537,6.868768648,224.3270279,0,224.3270279,3.403816951,220.923211,0.483898963,3.640124694,0.394021091,-0.394021091,0.462772115,0.462772115,0.123887451,3.635830937,116.940821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2348539,2.466053794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634147137,112.4079652,107.869001,114.874019,857.7226211,0,0.95109506,17.99285213,-0.95109506,162.0071479,0.997429019,0,963.3864339,114.874019,1038.569182,4,13,8% -2018-04-23 22:00:00,35.48154529,232.5178751,828.0772008,884.4664231,107.8539654,955.1088236,844.2646575,110.8441662,104.6017704,6.242395721,204.0290995,0,204.0290995,3.252194997,200.7769045,0.619269789,4.058202491,0.679883153,-0.679883153,0.413886823,0.413886823,0.130246269,3.060183917,98.4260341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5472005,2.356204204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.217092831,94.61084779,102.7642933,96.96705199,844.2646575,0,0.954546872,17.34117035,-0.954546872,162.6588297,0.997619125,0,945.0188625,96.96705199,1008.481859,4,14,7% -2018-04-23 23:00:00,45.79740001,248.5749581,691.1637089,849.1648207,99.12800458,865.8206177,764.4714042,101.3492135,96.1389295,5.210283986,170.5697183,0,170.5697183,2.989075081,167.5806432,0.799315419,4.338451456,1.027911192,-1.027911192,0.354370523,0.354370523,0.143421889,2.328829807,74.90317188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.41239586,2.165574721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687229267,71.99977789,94.09962512,74.16535262,764.4714042,0,0.900262688,25.80738207,-0.900262688,154.1926179,0.994460655,0,854.3363585,74.16535262,902.8760985,4,15,6% -2018-04-23 00:00:00,57.18672012,260.3556699,510.6958886,783.1239726,86.3186426,707.7902499,620.2245915,87.56565837,83.71581704,3.849841327,126.4269564,0,126.4269564,2.602825556,123.8241308,0.998096554,4.544063667,1.525643741,-1.525643741,0.269253244,0.269253244,0.169021613,1.51208385,48.63381436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47082763,1.885738255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095499602,46.74867224,81.56632723,48.63441049,620.2245915,0,0.791987748,37.62834042,-0.791987748,142.3716596,0.98686771,0,693.6459497,48.63441049,725.4761987,4,16,5% -2018-04-23 01:00:00,68.95401514,270.1069326,301.742802,651.803522,67.66900245,483.2388237,415.3356266,67.90319705,65.62853235,2.274664698,75.20150589,0,75.20150589,2.040470096,73.1610358,1.203474597,4.714255306,2.440459612,-2.440459612,0.112810516,0.112810516,0.224260536,0.709177002,22.80957017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.0846416,1.478313638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.513796324,21.92542645,63.59843792,23.40374009,415.3356266,0,0.637209853,50.41592147,-0.637209853,129.5840785,0.971532915,0,467.1106698,23.40374009,482.4279496,4,17,3% -2018-04-23 02:00:00,80.68764492,279.0991089,91.4491236,345.6446495,35.51807476,189.6290988,154.492643,35.13645588,34.44707376,0.689382122,23.24389978,0,23.24389978,1.071001002,22.17289878,1.40826507,4.871198389,5.32864986,-5.32864986,0,0,0.388391636,0.26775025,8.61176844,0.275938999,1,0.185507146,0,0.94082079,0.979582753,0.724496596,1,33.37531561,0.77593658,0.041748307,0.312029739,0.88843962,0.612936216,0.961238037,0.922476074,0.184468771,8.277959389,33.55978438,9.053895969,111.8620977,0,0.446969577,63.45057922,-0.446969577,116.5494208,0.938135563,0,138.5015964,9.053895969,144.4271902,4,18,4% -2018-04-23 03:00:00,92.27745568,288.1781032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610545427,5.029656733,-19.76596002,19.76596002,1,0,#DIV/0!,0,0,1,0.656396581,0,0.05054893,0.961238037,1,0.591170479,0.866673883,0,0,0.115824807,0.160903582,0.724496596,0.448993192,0.982746444,0.943984481,0,0,0,0,0,0,0.231305229,76.62607178,-0.231305229,103.3739282,0.83383541,0,0,0,0,4,19,0% -2018-04-23 04:00:00,103.157089,298.0580874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80043085,5.202094988,-2.859269794,2.859269794,1,0.980882378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00870317,89.50133882,-0.00870317,90.49866118,0,0,0,0,0,4,20,0% -2018-04-23 05:00:00,112.9970612,309.4596459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972170762,5.401089722,-1.19728556,1.19728556,1,0.734901579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.207139377,101.9547649,0.207139377,78.04523511,0,0.808616634,0,0,0,4,21,0% -2018-04-23 06:00:00,121.1851285,323.097059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115079496,5.639107483,-0.480368813,0.480368813,1,0.612301595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.401504327,113.6722549,0.401504327,66.32774505,0,0.925468341,0,0,0,4,22,0% -2018-04-23 07:00:00,126.8924976,339.3773446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21469188,5.92325207,-0.014477663,0.014477663,1,0.532629516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.5611395,124.1346384,0.5611395,55.86536155,0,0.960895597,0,0,0,4,23,0% -2018-04-24 08:00:00,129.2412878,357.7426753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255686001,6.243787558,0.373102017,-0.373102017,1,0.466349487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675161362,132.4666821,0.675161362,47.53331786,0,0.975943629,0,0,0,4,0,0% -2018-04-24 09:00:00,127.7645188,16.36422718,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22991152,0.285609644,0.7653612,-0.7653612,1,0.399269216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735796236,137.3745399,0.735796236,42.62546012,0,0.982046404,0,0,0,4,1,0% -2018-04-24 10:00:00,122.7637468,33.22448641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142631584,0.57987668,1.244617801,-1.244617801,1,0.31731151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738909585,137.6386116,0.738909585,42.36138838,0,0.982332722,0,0,0,4,2,0% -2018-04-24 11:00:00,115.0693148,47.45548539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008338411,0.828254468,1.974388252,-1.974388252,1,0.192513413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684287352,133.1795872,0.684287352,46.82041283,0,0.976931281,0,0,0,4,3,0% -2018-04-24 12:00:00,105.5472242,59.30530474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842146578,1.035072832,3.531942302,-3.531942302,1,0,#DIV/0!,0,0,0.068766055,1,0.275909094,0,0.928058852,0.966820815,0.724496596,1,0,0,0.011391138,0.312029739,0.96820498,0.692701576,0.961238037,0.922476074,0,0,0,0,0,0,-0.575650249,125.1451822,0.575650249,54.85481777,0,0.963141703,0,0,0,4,4,0% -2018-04-24 13:00:00,94.86080981,69.45711889,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655633462,1.212255414,11.7584705,-11.7584705,1,0,#DIV/0!,0,0,0.596881994,1,0.084840926,0,0.952895884,0.991657847,0.724496596,1,0,0,0.079548603,0.312029739,0.799303759,0.523800354,0.961238037,0.922476074,0,0,0,0,0,0,-0.420400001,114.8598438,0.420400001,65.14015618,0,0.931065652,0,0,0,4,5,0% -2018-04-24 14:00:00,83.3417207,78.63677312,50.34642764,226.4299589,24.09243645,23.74549324,0,23.74549324,23.3659606,0.379532638,64.31187306,51.37832294,12.93355012,0.726475851,12.20707427,1.45458743,1.372470604,-8.469280462,8.469280462,0.021514052,0.021514052,0.478533187,0.185876888,5.978439656,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.4602501,0.526329281,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.134667172,5.746703598,22.59491727,6.273032879,0,51.37832294,-0.22690603,103.1149849,0.22690603,76.88501509,0,0.829644463,22.59491727,48.89877402,54.59818689,4,6,142% -2018-04-24 15:00:00,71.66589602,87.54924411,251.7895684,602.8039991,62.1730351,62.19638482,0,62.19638482,60.2982887,1.898096123,71.33982496,8.415782585,62.92404238,1.874746402,61.04929597,1.250805847,1.528022567,-2.877245123,2.877245123,0.977808416,0.977808416,0.246924587,1.866375261,60.02904401,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.96100865,1.358247387,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.352182523,57.70220042,59.31319118,59.06044781,0,8.415782585,-0.01396106,90.79993578,0.01396106,89.20006422,0,0,59.31319118,59.06044781,97.96707306,4,7,65% -2018-04-24 16:00:00,59.85493941,96.98625611,464.6304115,760.1041893,82.91293975,242.2793792,158.3639902,83.915389,80.4128087,3.502580302,115.1551536,0,115.1551536,2.50013105,112.6550226,1.044665766,1.692729498,-1.53447208,1.53447208,0.79256387,0.79256387,0.178449231,2.905672977,93.45643112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.29585037,1.811336435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.10515018,89.83387638,79.40100055,91.64521281,158.3639902,0,0.208345109,77.97461098,-0.208345109,102.025389,0.810013565,0,207.6779808,91.64521281,267.6579397,4,8,29% -2018-04-24 17:00:00,48.30170029,108.0760551,653.6156677,836.9469321,96.87170763,453.7971216,354.9192224,98.87789922,93.95066822,4.927230991,161.3977253,0,161.3977253,2.921039403,158.4766859,0.843023704,1.886283004,-0.883578646,0.883578646,0.681254537,0.681254537,0.148208974,3.589465483,115.4495486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30895588,2.116283104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600555523,110.9744975,92.90951141,113.0907806,354.9192224,0,0.424064189,64.90855598,-0.424064189,115.091444,0.932093322,0,423.7273483,113.0907806,497.7430024,4,9,17% -2018-04-24 18:00:00,37.59199939,122.7764635,802.1461267,877.8939214,106.5250761,652.2270745,542.8672061,109.3598683,103.312952,6.046916331,197.7017394,0,197.7017394,3.21212408,194.4896153,0.656104162,2.142853532,-0.465721391,0.465721391,0.609796738,0.609796738,0.132800088,4.000735177,128.6773957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30833917,2.327172961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.898519017,123.6896073,102.2068582,126.0167802,542.8672061,0,0.61837449,51.80247193,-0.61837449,128.1975281,0.969142848,0,628.3227286,126.0167802,710.7981909,4,10,13% -2018-04-24 19:00:00,28.95558735,144.5093557,898.9518294,898.8771374,112.4386101,815.153571,699.3287212,115.8248498,109.0481712,6.776678609,221.3517177,0,221.3517177,3.39043895,217.9612787,0.505370336,2.522164057,-0.147774907,0.147774907,0.555424687,0.555424687,0.125077459,4.14076096,133.1811062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.82125,2.456361478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99996722,128.0187451,107.8212172,130.4751066,699.3287212,0,0.778002568,38.92194552,-0.778002568,141.0780545,0.98573286,0,797.1725177,130.4751066,882.5658654,4,11,11% -2018-04-24 20:00:00,24.8465242,175.8921658,937.0116029,906.1894384,114.7021544,926.6861142,808.3790637,118.3070505,111.2434612,7.063589258,230.6480046,0,230.6480046,3.45869316,227.1893115,0.433653655,3.069897421,0.126796089,-0.126796089,0.508470281,0.508470281,0.122412736,4.016637836,129.1888799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9314463,2.505811421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.910040439,124.1812653,109.8414867,126.6870767,808.3790637,0,0.892064098,26.86622252,-0.892064098,153.1337775,0.993950216,0,913.3300317,126.6870767,996.2441896,4,12,9% -2018-04-24 21:00:00,27.43949293,208.9276546,913.6169779,901.7513507,113.3144874,975.9663808,859.1815126,116.7848682,109.8976375,6.887230693,224.9338637,0,224.9338637,3.416849881,221.5170138,0.478909497,3.646475472,0.391434076,-0.391434076,0.46321452,0.46321452,0.124028439,3.648794112,117.3577613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6377893,2.475496107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.643538913,112.8087441,108.2813282,115.2842402,859.1815126,0,0.952792044,17.67537855,-0.952792044,162.3246214,0.997522652,0,965.334349,115.2842402,1040.785578,4,13,8% -2018-04-24 22:00:00,35.25840473,232.9417844,830.4596607,884.4202062,108.2802522,956.8369549,845.5613961,111.2755588,105.0152031,6.26035571,204.6196086,0,204.6196086,3.265049117,201.3545595,0.615375251,4.065601103,0.67584939,-0.67584939,0.414576637,0.414576637,0.130385926,3.073256225,98.84648445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9446077,2.36551697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.226563673,95.01500066,103.1711714,97.38051763,845.5613961,0,0.956062955,17.04732151,-0.956062955,162.9526785,0.997702189,0,946.7896269,97.38051763,1010.523228,4,14,7% -2018-04-24 23:00:00,45.61496145,248.96165,693.5716554,849.2323006,99.55340677,867.5153213,765.735381,101.7799403,96.55150424,5.228436104,171.1663803,0,171.1663803,3.001902527,168.1644777,0.796131265,4.345200503,1.021532171,-1.021532171,0.3554614,0.3554614,0.143537306,2.342217729,75.3337735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80897839,2.174868162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696928772,72.41368854,94.50590716,74.58855671,765.735381,0,0.901679529,25.62028036,-0.901679529,154.3797196,0.994547926,0,856.0664422,74.58855671,904.8831608,4,15,6% -2018-04-24 00:00:00,57.02416376,260.6994892,513.2116665,783.5203681,86.75305733,709.6457936,621.6398547,88.00593889,84.13713256,3.868806324,127.0500351,0,127.0500351,2.615924763,124.4341103,0.995259411,4.550064445,1.514491511,-1.514491511,0.271160388,0.271160388,0.169039527,1.525714421,49.07222037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.87581213,1.895228586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105374904,47.17008477,81.98118704,49.06531336,621.6398547,0,0.793393356,37.49623357,-0.793393356,142.5037664,0.986979558,0,695.5270161,49.06531336,727.6392824,4,16,5% -2018-04-24 01:00:00,68.79708417,270.419446,304.4035179,653.2368165,68.1460413,485.6025752,417.2166662,68.38590902,66.09118672,2.294722298,75.86101175,0,75.86101175,2.054854577,73.80615717,1.200735635,4.719709694,2.415787431,-2.415787431,0.117029708,0.117029708,0.223867457,0.722144567,23.22665163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52936258,1.488735146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.52319128,22.32634101,64.05255386,23.81507616,417.2166662,0,0.638691292,50.3056985,-0.638691292,129.6943015,0.971714918,0,469.4682125,23.81507616,485.0547036,4,17,3% -2018-04-24 02:00:00,80.52678589,279.3915557,93.96041838,350.9037505,36.20639915,193.2363564,157.4134004,35.82295595,35.11464263,0.708313323,23.87354779,0,23.87354779,1.091756522,22.78179127,1.40545755,4.87630255,5.221595537,-5.221595537,0,0,0.385336717,0.27293913,8.778660657,0.266212164,1,0.189221191,0,0.940331502,0.979093465,0.724496596,1,34.01817241,0.790973884,0.040441735,0.312029739,0.891723257,0.616219853,0.961238037,0.922476074,0.18820851,8.438382536,34.20638092,9.22935642,115.5080385,0,0.448594238,63.3464726,-0.448594238,116.6535274,0.938540699,0,142.6153761,9.22935642,148.6558053,4,18,4% -2018-04-24 03:00:00,92.10112614,288.4584104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607467896,5.034549016,-21.34374903,21.34374903,1,0,#DIV/0!,0,0,1,0.685549398,0,0.046817888,0.961238037,1,0.600323261,0.875826665,0,0,0.115824807,0.17124664,0.724496596,0.448993192,0.981432946,0.942670983,0,0,0,0,0,0,0.233189888,76.51505316,-0.233189888,103.4849468,0.835582469,0,0,0,0,4,19,0% -2018-04-24 04:00:00,102.9584133,298.3296284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796963304,5.206834272,-2.889322768,2.889322768,1,0.975743017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.010878955,89.37666951,-0.010878955,90.62333049,0,0,0,0,0,4,20,0% -2018-04-24 05:00:00,112.7679835,309.7184662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968172603,5.40560699,-1.201440617,1.201440617,1,0.735612136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204636416,101.808216,0.204636416,78.19178399,0,0.805664212,0,0,0,4,21,0% -2018-04-24 06:00:00,120.9195434,323.3266717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110444162,5.643114981,-0.479028507,0.479028507,1,0.612072389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398660718,113.4944802,0.398660718,66.50551982,0,0.924580068,0,0,0,4,22,0% -2018-04-24 07:00:00,126.5907202,339.5450197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209424871,5.926178553,-0.010695943,0.010695943,1,0.531982804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557965272,123.9151993,0.557965272,56.08480075,0,0.960388688,0,0,0,4,23,0% -2018-04-25 08:00:00,128.915423,357.8112037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249998588,6.244983605,0.378874343,-0.378874343,1,0.465362361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671689351,132.197584,0.671689351,47.80241604,0,0.975560827,0,0,0,4,0,0% -2018-04-25 09:00:00,127.436146,16.32267365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224180333,0.284884398,0.773726062,-0.773726062,1,0.39783874,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732079826,137.0610377,0.732079826,42.93896227,0,0.981701437,0,0,0,4,1,0% -2018-04-25 10:00:00,122.4516197,33.09782384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137183938,0.577666001,1.257559725,-1.257559725,1,0.315098311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735019042,137.3088252,0.735019042,42.69117485,0,0.981974551,0,0,0,4,2,0% -2018-04-25 11:00:00,114.7814407,47.27825454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00331406,0.825161206,1.997937633,-1.997937633,1,0.188486232,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680304995,132.867481,0.680304995,47.13251897,0,0.976503553,0,0,0,4,3,0% -2018-04-25 12:00:00,105.28304,59.10096111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837535695,1.031506362,3.59362716,-3.59362716,1,0,#DIV/0!,0,0,0.077824892,1,0.271404109,0,0.928736156,0.967498119,0.724496596,1,0,0,0.012838654,0.312029739,0.964237266,0.688733862,0.961238037,0.922476074,0,0,0,0,0,0,-0.571664795,124.8663988,0.571664795,55.13360125,0,0.962536157,0,0,0,4,4,0% -2018-04-25 13:00:00,94.61575266,69.23626796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651356408,1.208400838,12.38513035,-12.38513035,1,0,#DIV/0!,0,0,0.613575605,1,0.080567208,0,0.9533569,0.992118863,0.724496596,1,0,0,0.081268049,0.312029739,0.795519769,0.520016365,0.961238037,0.922476074,0,0,0,0,0,0,-0.416500472,114.613844,0.416500472,65.38615605,0,0.929952117,0,0,0,4,5,0% -2018-04-25 14:00:00,83.1134764,78.40154579,53.50775748,236.2236371,25.18375644,24.82773734,0,24.82773734,24.42437326,0.403364078,66.46668259,52.73372413,13.73295847,0.759383175,12.97357529,1.450603816,1.368365113,-8.19102667,8.19102667,0.069098253,0.069098253,0.470656174,0.204599534,6.58062432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.47763661,0.550170525,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.148231666,6.325546402,23.62586827,6.875716927,0,52.73372413,-0.223236441,102.8991962,0.223236441,77.10080378,0,0.826022232,23.62586827,50.43494541,56.63453134,4,6,140% -2018-04-25 15:00:00,71.44085252,87.29684529,255.717479,606.0418139,62.8243942,62.85771329,0,62.85771329,60.93000692,1.927706372,70.24870832,6.352657656,63.89605066,1.894387282,62.00166338,1.246878097,1.523617377,-2.843768732,2.843768732,0.983533216,0.983533216,0.245678921,1.903761864,61.23152568,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56824023,1.372477137,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.37926899,58.85807154,59.94750922,60.23054868,0,6.352657656,-0.01048221,90.6005974,0.01048221,89.3994026,0,0,59.94750922,60.23054868,99.36719872,4,7,66% -2018-04-25 16:00:00,59.62768895,96.71133415,468.3424162,761.2392424,83.44700257,245.4893685,161.028038,84.46133051,80.93076755,3.530562962,116.0712761,0,116.0712761,2.516235014,113.5550411,1.040699498,1.687931205,-1.524250357,1.524250357,0.790815852,0.790815852,0.178175198,2.923614277,94.03348502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.79373212,1.823003702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.118148592,90.38856254,79.91188071,92.21156624,161.028038,0,0.211534074,77.78773196,-0.211534074,102.212268,0.813631461,0,210.9293585,92.21156624,271.2799843,4,8,29% -2018-04-25 17:00:00,48.06189439,107.7746193,657.0008971,837.3705225,97.36321145,456.8736511,357.4935494,99.38010167,94.42735139,4.952750281,162.2333341,0,162.2333341,2.935860057,159.297474,0.838838302,1.881021957,-0.879766864,0.879766864,0.680602684,0.680602684,0.148193422,3.60528159,115.958249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.76716188,2.127020617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.612014239,111.4634796,93.37917611,113.5905003,357.4935494,0,0.426923972,64.72749454,-0.426923972,115.2725055,0.932883128,0,426.8788769,113.5905003,501.2215875,4,9,17% -2018-04-25 18:00:00,37.32534277,122.4611269,805.2025001,878.0243658,106.9928135,654.9946117,545.1580697,109.8365419,103.7665854,6.069956565,198.4568966,0,198.4568966,3.226228088,195.2306685,0.651450126,2.13734987,-0.464587919,0.464587919,0.609602903,0.609602903,0.132876902,4.015140662,129.1407257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74438882,2.337391267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.908955742,124.1349776,102.6533446,126.4723689,545.1580697,0,0.620891733,51.61871721,-0.620891733,128.3812828,0.969470662,0,631.1680995,126.4723689,713.9417355,4,10,13% -2018-04-25 19:00:00,28.64872983,144.2670526,901.7174522,898.8719096,112.8894576,817.5720948,701.2891438,116.282951,109.4854239,6.797527042,222.0358697,0,222.0358697,3.404033664,218.631836,0.500014662,2.51793507,-0.148137261,0.148137261,0.555486653,0.555486653,0.125193826,4.154220146,133.6139999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2415539,2.466210802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.009718354,128.434859,108.2512723,130.9010698,701.2891438,0,0.780188074,38.7222015,-0.780188074,141.2777985,0.985912889,0,799.6612778,130.9010698,885.33341,4,11,11% -2018-04-25 20:00:00,24.51918119,175.9474689,939.549576,906.1212551,115.1401692,928.7795257,810.0285358,118.7509899,111.6682683,7.082721571,231.2765733,0,231.2765733,3.471900924,227.8046724,0.427940442,3.070862642,0.125324586,-0.125324586,0.508721923,0.508721923,0.122548264,4.029552941,129.6042741,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.339787,2.5153804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919397389,124.580558,110.2591844,127.0959384,810.0285358,0,0.893951589,26.62591934,-0.893951589,153.3740807,0.99406856,0,915.4830842,127.0959384,998.664834,4,12,9% -2018-04-25 21:00:00,27.15710169,209.2914515,916.0075671,901.6654202,113.7432208,977.8003533,860.5816583,117.218695,110.313443,6.905251964,225.5264176,0,225.5264176,3.429777774,222.0966398,0.47398084,3.652824925,0.388860934,-0.388860934,0.463654553,0.463654553,0.124172796,3.661537938,117.7676466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0374774,2.484862322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652771772,113.2027414,108.6902492,115.6876037,860.5816583,0,0.954435691,17.36252976,-0.954435691,162.6374702,0.997613024,0,967.2177194,115.6876037,1042.932942,4,13,8% -2018-04-25 22:00:00,35.03820339,233.3636557,832.793134,884.3632793,108.7035284,958.5111947,846.8075324,111.7036623,105.4257159,6.277946417,205.1981495,0,205.1981495,3.277812454,201.9203371,0.611532013,4.072964146,0.671850202,-0.671850202,0.415260538,0.415260538,0.130528848,3.086149981,99.26119197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3392082,2.374763965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235905156,95.41363331,103.5751134,97.78839727,846.8075324,0,0.957533575,16.75751051,-0.957533575,163.2424895,0.99778251,0,948.5048584,97.78839727,1012.505409,4,14,7% -2018-04-25 23:00:00,45.43467452,249.3450847,695.940149,849.2877719,99.97622042,869.1653555,766.9574962,102.2078593,96.9615685,5.24629081,171.7533984,0,171.7533984,3.014651919,168.7387464,0.792984665,4.351892702,1.015222963,-1.015222963,0.356540338,0.356540338,0.143656348,2.355466024,75.75988421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.20314776,2.184105053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706527116,72.82328237,94.90967487,75.00738742,766.9574962,0,0.903059624,25.43679804,-0.903059624,154.563202,0.99463267,0,857.7506573,75.00738742,906.8414922,4,15,6% -2018-04-25 00:00:00,56.86311575,261.0396901,515.6970583,783.8998575,87.18515396,711.4647595,623.0210174,88.44374215,84.55619989,3.887542257,127.6656764,0,127.6656764,2.628954071,125.0367223,0.992448593,4.556002071,1.503493379,-1.503493379,0.273041179,0.273041179,0.169062733,1.53924446,49.50739294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.27863558,1.904668275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115177371,47.5883892,82.39381296,49.49305747,623.0210174,0,0.794771183,37.36635132,-0.794771183,142.6336487,0.987088811,0,697.3708884,49.49305747,729.7631046,4,16,5% -2018-04-25 01:00:00,68.64121943,270.7282187,307.0427267,654.6343484,68.62039668,487.9323788,419.0665225,68.86585631,66.55123854,2.31461777,76.51522206,0,76.51522206,2.069158142,74.44606392,1.198015282,4.725098795,2.391590478,-2.391590478,0.121167631,0.121167631,0.223488103,0.735067539,23.64229884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.97158188,1.49909803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53255393,22.72587692,64.50413581,24.22497495,419.0665225,0,0.640153581,50.19672739,-0.640153581,129.8032726,0.971893743,0,471.792267,24.22497495,487.6470286,4,17,3% -2018-04-25 02:00:00,80.3666944,279.6801222,96.47019763,356.0494638,36.88821439,196.79947,160.2963382,36.50313172,35.77589862,0.727233099,24.50263207,0,24.50263207,1.112315767,23.39031631,1.402663426,4.881338985,5.118577277,-5.118577277,0,0,0.38237938,0.278078942,8.943974656,0.256602067,1,0.192936605,0,0.939838978,0.978600941,0.724496596,1,34.65448667,0.805868987,0.039140242,0.312029739,0.895007541,0.619504137,0.961238037,0.922476074,0.191929774,8.59728864,34.84641645,9.403157626,119.1639665,0,0.45020806,63.24296638,-0.45020806,116.7570336,0.938940238,0,146.7342595,9.403157626,152.8884381,4,18,4% -2018-04-25 03:00:00,91.92553202,288.7345859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6044032,5.039369188,-23.20237115,23.20237115,1,0,#DIV/0!,0,0,1,0.714121771,0,0.043072387,0.961238037,1,0.609622338,0.885125742,0,0,0.115824807,0.181759533,0.724496596,0.448993192,0.980073363,0.9413114,0,0,0,0,0,0,0.235068952,76.40431271,-0.235068952,103.5956873,0.837296452,0,0,0,0,4,19,0% -2018-04-25 04:00:00,102.7605799,298.5966446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79351046,5.211494584,-2.92026683,2.92026683,1,0.970451271,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013053301,89.25207971,-0.013053301,90.74792029,0,0,0,0,0,4,20,0% -2018-04-25 05:00:00,112.540092,309.9722741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964195146,5.410036772,-1.205731361,1.205731361,1,0.736345896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202132956,101.6617163,0.202132956,78.33828372,0,0.802638061,0,0,0,4,21,0% -2018-04-25 06:00:00,120.6557774,323.5509328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.105840577,5.647029075,-0.477740241,0.477740241,1,0.611852082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395817027,113.3169397,0.395817027,66.68306034,0,0.923679007,0,0,0,4,22,0% -2018-04-25 07:00:00,126.2916415,339.7077298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204204961,5.92901838,-0.006946368,0.006946368,1,0.531341589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554793704,123.6965068,0.554793704,56.30349322,0,0.959876411,0,0,0,4,23,0% -2018-04-26 08:00:00,128.5931037,357.8764004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244373055,6.246121502,0.384622901,-0.384622901,1,0.4643793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66822488,131.9302076,0.66822488,48.0697924,0,0.97517489,0,0,0,4,0,0% -2018-04-26 09:00:00,127.1117707,16.28007408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218518917,0.284140895,0.782077088,-0.782077088,1,0.396410631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728377643,136.7505581,0.728377643,43.24944194,0,0.981354291,0,0,0,4,1,0% -2018-04-26 10:00:00,122.143533,32.97181473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13180681,0.575466727,1.270516554,-1.270516554,1,0.312882563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731150759,136.9829532,0.731150759,43.01704681,0,0.981614651,0,0,0,4,2,0% -2018-04-26 11:00:00,114.4974959,47.10245962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998358289,0.822093006,2.021627676,-2.021627676,1,0.184434996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676353723,132.559363,0.676353723,47.44063701,0,0.976074185,0,0,0,4,3,0% -2018-04-26 12:00:00,105.0227026,58.89827097,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83299195,1.027968752,3.656416578,-3.656416578,1,0,#DIV/0!,0,0,0.086866709,1,0.266963522,0,0.929399613,0.968161576,0.724496596,1,0,0,0.014271593,0.312029739,0.960325663,0.684822259,0.961238037,0.922476074,0,0,0,0,0,0,-0.567719436,124.5913477,0.567719436,55.40865229,0,0.961928328,0,0,0,4,4,0% -2018-04-26 13:00:00,94.37454494,69.01704041,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647146539,1.204574595,13.07015687,-13.07015687,1,0,#DIV/0!,0,0,0.630310785,1,0.076361406,0,0.953806412,0.992568375,0.724496596,1,0,0,0.082970413,0.312029739,0.791796656,0.516293252,0.961238037,0.922476074,0,0,0,0,0,0,-0.412649611,114.3713882,0.412649611,65.62861176,0,0.928831826,0,0,0,4,5,0% -2018-04-26 14:00:00,82.88892528,78.16779925,56.66585426,245.6994056,26.2499183,25.88555755,0,25.88555755,25.45838641,0.427171145,68.49108542,53.96026111,14.53082431,0.791531889,13.73929242,1.44668466,1.364285466,-7.934536238,7.934536238,0.1129607,0.1129607,0.463240494,0.223783525,7.197647402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.47156937,0.573462159,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162130402,6.918652458,24.63369977,7.492114617,0,53.96026111,-0.219619014,102.6866568,0.219619014,77.31334317,0,0.822333009,24.63369977,51.86541851,58.57857888,4,6,138% -2018-04-26 15:00:00,71.21990546,87.04568053,259.568908,609.1409051,63.46403745,63.50710263,0,63.50710263,61.55036256,1.956740071,69.1528407,4.303678874,64.84916182,1.913674886,62.93548694,1.243021843,1.519233725,-2.811642655,2.811642655,0.989027098,0.989027098,0.24449784,1.940518596,62.41374855,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.16454967,1.386450941,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.405899117,59.99446913,60.57044879,61.38092007,0,4.303678874,-0.007065162,90.4048073,0.007065162,89.5951927,0,0,60.57044879,61.38092007,100.7430334,4,7,66% -2018-04-26 16:00:00,59.40480969,96.43719471,471.9703001,762.3179937,83.97395188,248.6365764,163.6368375,84.99973888,81.4418274,3.557911483,116.966788,0,116.966788,2.53212448,114.4346635,1.036809521,1.683146569,-1.514367604,1.514367604,0.789125802,0.789125802,0.17792211,2.941129682,94.59684065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28498229,1.834515566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.130838443,90.9300814,80.41582073,92.76459697,163.6368375,0,0.214656926,77.60459928,-0.214656926,102.3954007,0.817070176,0,214.1186004,92.76459697,274.8311738,4,8,28% -2018-04-26 17:00:00,47.82677243,107.4730342,660.3020656,837.7636932,97.8490002,459.8764042,360.0002765,99.8761277,94.89849182,4.977635883,163.0483889,0,163.0483889,2.95050838,160.0978805,0.834734649,1.875758303,-0.876085019,0.876085019,0.679973051,0.679973051,0.148188239,3.620718809,116.454763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22003997,2.137633278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.623198452,111.9407478,93.84323843,114.0783811,360.0002765,0,0.429715777,64.550476,-0.429715777,115.449524,0.933644021,0,429.9553441,114.0783811,504.6173629,4,9,17% -2018-04-26 18:00:00,37.06359736,122.1436889,808.1782959,878.1349796,107.4555487,657.6857609,547.3780042,110.3077568,104.2153674,6.09238937,199.1923659,0,199.1923659,3.240181261,195.9521846,0.646881807,2.131809531,-0.463512437,0.463512437,0.609418985,0.609418985,0.132960201,4.029206066,129.5931174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1757752,2.347500294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919146079,124.5698337,103.0949213,126.917334,547.3780042,0,0.623341533,51.43943637,-0.623341533,128.5605636,0.969787151,0,633.9350766,126.917334,716.9999334,4,10,13% -2018-04-26 19:00:00,28.34651787,144.0199096,904.4084219,898.8519786,113.3358462,819.9161629,703.1799979,116.736165,109.9183523,6.817812708,222.7017867,0,222.7017867,3.417493928,219.2842928,0.494740068,2.513621612,-0.148524005,0.148524005,0.55555279,0.55555279,0.125314895,4.167378784,134.037227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6577011,2.475962717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.019251743,128.8416809,108.6769529,131.3176436,703.1799979,0,0.782309006,38.52752531,-0.782309006,141.4724747,0.986086636,0,802.0733517,131.3176436,888.0181231,4,11,11% -2018-04-26 20:00:00,24.1956569,175.9997404,942.0206479,906.0410477,115.5742314,930.8035889,811.6129974,119.1905915,112.0892419,7.101349555,231.8888019,0,231.8888019,3.484989502,228.4038124,0.422293878,3.071774953,0.12384927,-0.12384927,0.508974217,0.508974217,0.122687578,4.042208755,130.0113285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7444429,2.524863031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928566482,124.9718342,110.6730094,127.4966973,811.6129974,0,0.895779501,26.3912696,-0.895779501,153.6087304,0.994182692,0,917.5646042,127.4966973,1001.008643,4,12,9% -2018-04-26 21:00:00,26.87823025,209.6548942,918.340227,901.5687708,114.1684989,979.5723962,861.9236623,117.6487339,110.7258974,6.922836539,226.1048217,0,226.1048217,3.442601478,222.6622202,0.469113615,3.659168197,0.386301235,-0.386301235,0.464092288,0.464092288,0.124320481,3.674064217,118.1705347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4339442,2.494153052,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.661847018,113.5900128,109.0957913,116.0841659,861.9236623,0,0.956026529,17.05443934,-0.956026529,162.9455607,0.997700196,0,969.0371981,116.0841659,1045.011963,4,13,8% -2018-04-26 22:00:00,34.82093437,233.7832264,835.0782268,884.2958578,109.1238277,960.1323945,848.0038804,112.1285141,105.8333417,6.295172412,205.7648703,0,205.7648703,3.290486029,202.4743843,0.607739953,4.080287036,0.667885143,-0.667885143,0.415938603,0.415938603,0.130674977,3.098866688,99.67020496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7310336,2.383945927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245118366,95.80679215,103.9761519,98.19073807,848.0038804,0,0.958959462,16.47178864,-0.958959462,163.5282114,0.997860153,0,950.1654335,98.19073807,1014.429308,4,14,7% -2018-04-26 23:00:00,45.25651855,249.7250679,698.2697478,849.3315189,100.3964806,870.771672,768.1386634,102.6330086,97.36915633,5.263852309,172.3309089,0,172.3309089,3.027324315,169.3035846,0.789875257,4.35852466,1.0089829,-1.0089829,0.357607452,0.357607452,0.143778935,2.368575455,76.18152856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.59493668,2.193286161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716024854,73.22858296,95.31096153,75.42186912,768.1386634,0,0.904403812,25.25689411,-0.904403812,154.7431059,0.994714961,0,859.3899822,75.42186912,908.7520871,4,15,6% -2018-04-26 00:00:00,56.70355894,261.3761258,518.1524597,784.2628696,87.61496592,713.2480836,624.36898,88.87910354,84.97305143,3.90605211,128.2739773,0,128.2739773,2.641914487,125.6320628,0.989663801,4.561873981,1.492647535,-1.492647535,0.274895928,0.274895928,0.169091093,1.552673557,49.93931887,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67932914,1.914058053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.124906706,48.00357283,82.80423585,49.91763088,624.36898,0,0.796122071,37.23863309,-0.796122071,142.7613669,0.987195561,0,699.1785214,49.91763088,731.8486125,4,16,5% -2018-04-26 01:00:00,68.48641463,271.0331314,309.6605317,655.9970154,69.09210754,490.2290974,420.8860199,69.34307746,67.00872557,2.334351889,77.164163,0,77.164163,2.083381965,75.08078104,1.195313428,4.730420525,2.367858898,-2.367858898,0.12522597,0.12522597,0.223122098,0.747943589,24.05643685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41133582,1.509403142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.541882584,23.12396213,64.9532184,24.63336527,420.8860199,0,0.641597462,50.08895841,-0.641597462,129.9110416,0.972069517,0,474.0836886,24.63336527,490.2057335,4,17,3% -2018-04-26 02:00:00,80.20738072,279.9647052,98.97762927,361.0837287,37.56358445,200.3188386,163.1417996,37.17703896,36.43090378,0.746135178,25.13095281,0,25.13095281,1.132680666,23.99827214,1.399882878,4.886305896,5.019389476,-5.019389476,0,0,0.379515904,0.283170166,9.107725946,0.247108406,1,0.196652581,0,0.939343331,0.978105294,0.724496596,1,35.28430984,0.820623287,0.037844045,0.312029739,0.89829175,0.622788346,0.961238037,0.922476074,0.19563308,8.754692608,35.47994292,9.575315895,122.8280896,0,0.451811551,63.14002926,-0.451811551,116.8599707,0.939334392,0,150.8565918,9.575315895,157.1234446,4,18,4% -2018-04-26 03:00:00,91.75069824,289.0065385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601351775,5.044115656,-25.42369128,25.42369128,1,0,#DIV/0!,0,0,1,0.742125875,0,0.039313126,0.961238037,1,0.619067098,0.894570502,0,0,0.115824807,0.192442158,0.724496596,0.448993192,0.978666662,0.939904699,0,0,0,0,0,0,0.236942688,76.29383471,-0.236942688,103.7061653,0.838978506,0,0,0,0,4,19,0% -2018-04-26 04:00:00,102.5636329,298.8590577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790073086,5.216074557,-2.952136552,2.952136552,1,0.965001227,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015226129,89.12757335,-0.015226129,90.87242665,0,0,0,0,0,4,20,0% -2018-04-26 05:00:00,112.3134503,310.2210103,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960239503,5.414378039,-1.2101625,1.2101625,1,0.737103665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.199629461,101.5152918,0.199629461,78.48470822,0,0.799535967,0,0,0,4,21,0% -2018-04-26 06:00:00,120.3939109,323.7698115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101270145,5.65084923,-0.47650718,0.47650718,1,0.611641217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.392974115,113.1396846,0.392974115,66.86031543,0,0.922765157,0,0,0,4,22,0% -2018-04-26 07:00:00,125.9953503,339.8654709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199033704,5.931771482,-0.003232259,0.003232259,1,0.530706439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551626045,123.4786381,0.551626045,56.5213619,0,0.959358885,0,0,0,4,23,0% -2018-04-27 08:00:00,128.2744203,357.9382592,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238810981,6.247201142,0.390343648,-0.390343648,1,0.463400994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664769549,131.6646483,0.664769549,48.33535173,0,0.974785965,0,0,0,4,0,0% -2018-04-27 09:00:00,126.7914873,16.23639833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212928916,0.28337861,0.790408794,-0.790408794,1,0.394985825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724691572,136.4431963,0.724691572,43.55680366,0,0.981005131,0,0,0,4,1,0% -2018-04-27 10:00:00,121.8395874,32.84642223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12650196,0.573278215,1.283479941,-1.283479941,1,0.310665693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727306821,136.661088,0.727306821,43.33891203,0,0.981253223,0,0,0,4,2,0% -2018-04-27 11:00:00,114.2175846,46.9280792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993472916,0.819049494,2.045444031,-2.045444031,1,0.180362159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672435725,132.2553347,0.672435725,47.74466525,0,0.975643451,0,0,0,4,3,0% -2018-04-27 12:00:00,104.7663144,58.69723484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828517131,1.02446001,3.720296676,-3.720296676,1,0,#DIV/0!,0,0,0.095885429,1,0.262589086,0,0.93004913,0.968811093,0.724496596,1,0,0,0.015689208,0.312029739,0.956471711,0.680968307,0.961238037,0.922476074,0,0,0,0,0,0,-0.563816362,124.3201377,0.563816362,55.67986233,0,0.961318643,0,0,0,4,4,0% -2018-04-27 13:00:00,94.13728441,68.79945744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643005562,1.200777056,13.82153132,-13.82153132,1,0,#DIV/0!,0,0,0.64707552,1,0.072225035,0,0.954244451,0.993006414,0.724496596,1,0,0,0.084654726,0.312029739,0.788135838,0.512632434,0.961238037,0.922476074,0,0,0,0,0,0,-0.408849505,114.132583,0.408849505,65.86741704,0,0.927705612,0,0,0,4,5,0% -2018-04-27 14:00:00,82.66818055,77.93557363,59.81359382,254.8526847,27.29045587,26.91844807,0,26.91844807,26.46754794,0.450900136,70.38785167,55.06244541,15.32540625,0.822907936,14.50249832,1.442831937,1.360232364,-7.697547749,7.697547749,0.153488118,0.153488118,0.456258421,0.24335815,7.827234629,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.44161382,0.596193998,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176312151,7.523835649,25.61792597,8.120029647,0,55.06244541,-0.216055976,102.4774864,0.216055976,77.52251357,0,0.81857849,25.61792597,53.19296309,60.43165646,4,6,136% -2018-04-27 15:00:00,71.00314278,86.79580913,263.3420791,612.1046897,64.09203113,64.14460374,0,64.14460374,62.15941991,1.985183828,68.0547929,2.271845743,65.78294716,1.932611213,63.85033595,1.239238621,1.514872646,-2.780814589,2.780814589,0.994299008,0.994299008,0.243379377,1.976620762,63.57491829,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.74999877,1.400170245,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.432055013,61.11062965,61.18205378,62.5107999,0,2.271845743,-0.003711531,90.21265557,0.003711531,89.78734443,0,0,61.18205378,62.5107999,102.0941221,4,7,67% -2018-04-27 16:00:00,59.18638624,96.16391829,475.5129886,763.3412822,84.49374997,251.7194401,166.1888707,85.53056942,81.94595166,3.584617765,117.8414277,0,117.8414277,2.54779831,115.2936294,1.032997312,1.678376996,-1.504817971,1.504817971,0.787492719,0.787492719,0.177689678,2.958216813,95.14642149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.7695657,1.845871203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.143218011,91.45835941,80.91278371,93.30423061,166.1888707,0,0.217712411,77.4252927,-0.217712411,102.5747073,0.820339229,0,217.2440338,93.30423061,278.3097867,4,8,28% -2018-04-27 17:00:00,47.59642178,107.1714005,663.5185639,838.1267538,98.32904133,462.8044178,362.4384766,100.3659411,95.36405794,5.001883206,163.8427412,0,163.8427412,2.964983392,160.8777578,0.830714272,1.870493803,-0.87253252,0.87253252,0.679365538,0.679365538,0.148193354,3.63577604,116.9390554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66755984,2.148120374,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634107365,112.406268,94.3016672,114.5543884,362.4384766,0,0.432438739,64.3775715,-0.432438739,115.6224285,0.934376686,0,432.95573,114.5543884,507.9292861,4,9,17% -2018-04-27 18:00:00,36.80686279,121.8242411,811.0733138,878.2259433,107.9132681,660.3000463,549.5265482,110.7734981,104.6592849,6.114213238,199.9080984,0,199.9080984,3.25398319,196.6541152,0.642400943,2.126234115,-0.462495289,0.462495289,0.609245042,0.609245042,0.133049955,4.042931618,130.0345783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6024855,2.357499744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.929090194,124.9941828,103.5315757,127.3516825,549.5265482,0,0.625723429,51.2646951,-0.625723429,128.7353049,0.970092492,0,636.6231542,127.3516825,719.9722834,4,10,13% -2018-04-27 19:00:00,28.04906446,143.7678766,907.0248874,898.8174964,113.777781,822.1857458,705.001248,117.1844979,110.3469611,6.83753673,223.349505,0,223.349505,3.430819893,219.9186851,0.489548527,2.509222805,-0.148935635,0.148935635,0.555623183,0.555623183,0.125440639,4.180238129,134.4508277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0696963,2.485617333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.028568295,129.2392497,109.0982646,131.724867,705.001248,0,0.784365292,38.33798642,-0.784365292,141.6620136,0.986254191,0,804.4087001,131.724867,890.6199911,4,11,11% -2018-04-27 20:00:00,23.87603575,176.0487379,944.4252366,905.9489737,116.0043613,932.7586677,813.1327895,119.6258781,112.5064018,7.119476361,232.4847923,0,232.4847923,3.497959503,228.9868328,0.416715436,3.072630121,0.122369658,-0.122369658,0.509227246,0.509227246,0.122830645,4.054607142,130.4101033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1454328,2.534259752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937549072,125.3551517,111.0829818,127.8894115,813.1327895,0,0.89754811,26.1623742,-0.89754811,153.8376258,0.99429268,0,919.5749622,127.8894115,1003.276024,4,12,9% -2018-04-27 21:00:00,26.60290961,210.0176931,920.6155476,901.461583,114.5903525,981.2831892,863.2081698,118.0750194,111.1350306,6.939988868,226.66922,0,226.66922,3.455321921,223.213898,0.464308363,3.665500231,0.383754532,-0.383754532,0.4645278,0.4645278,0.12447145,3.686374965,118.5664907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8272186,2.503368969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.670766114,113.9706208,109.4979847,116.4739897,863.2081698,0,0.957565121,16.75124048,-0.957565121,163.2487595,0.99778423,0,970.7934839,116.4739897,1047.023381,4,13,8% -2018-04-27 22:00:00,34.60658624,234.2002309,837.3155925,884.2181626,109.5411868,961.7014488,849.1512943,112.5501545,106.2381159,6.31203862,206.3199304,0,206.3199304,3.303070947,203.0168595,0.603998873,4.087565139,0.663953748,-0.663953748,0.416610912,0.416610912,0.130824253,3.11140805,100.0735783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.120118,2.393063657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.254204541,96.19452993,104.3743225,98.58759359,849.1512943,0,0.960341384,16.19020136,-0.960341384,163.8097986,0.997935181,0,951.7722733,98.58759359,1016.295882,4,14,7% -2018-04-27 23:00:00,45.0804695,250.1014055,700.561054,849.3638321,100.8142253,872.3352639,769.2798343,103.0554296,97.77430447,5.281125143,172.8990592,0,172.8990592,3.039920859,169.8591384,0.786802621,4.36509299,1.002811297,-1.002811297,0.358662858,0.358662858,0.143904981,2.381546975,76.59873724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.98438048,2.202412314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725422676,73.62961981,95.70980316,75.83203212,769.2798343,0,0.905712965,25.08052077,-0.905712965,154.9194792,0.994794872,0,860.9854376,75.83203212,910.615986,4,15,6% -2018-04-27 00:00:00,56.54547364,261.7086508,520.5783077,784.6098398,88.04252946,714.9967402,625.6846787,89.31206153,85.38772236,3.924339177,128.8750449,0,128.8750449,2.654807106,126.2202378,0.986904692,4.567677637,1.481952164,-1.481952164,0.276724944,0.276724944,0.169124468,1.566001478,50.36799062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07792661,1.923398711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.13456274,48.41562842,83.21248935,50.33902713,625.6846787,0,0.797446893,37.11301445,-0.797446893,142.8869856,0.9872999,0,700.95091,50.33902713,733.8967964,4,16,5% -2018-04-27 01:00:00,68.33266148,271.334066,312.2570742,657.3257165,69.56121559,492.4936291,422.6760151,69.81761401,67.46368828,2.353925723,77.80787012,0,77.80787012,2.097527304,75.71034282,1.192629929,4.735672824,2.344583072,-2.344583072,0.12920637,0.12920637,0.222769062,0.760770552,24.4689961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84866329,1.519651391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.551175676,23.52052977,65.39983896,25.04018117,422.6760151,0,0.643023701,49.98233942,-0.643023701,130.0176606,0.972242368,0,476.343369,25.04018117,492.7316667,4,17,3% -2018-04-27 02:00:00,80.04885331,280.2452033,101.4819437,366.0085681,38.23258232,203.7949478,165.9502052,37.84474265,37.0797289,0.765013758,25.75832558,0,25.75832558,1.15285342,24.60547216,1.397116053,4.891201511,4.9238402,-4.9238402,0,0,0.376742708,0.288213355,9.269932224,0.237730845,1,0.200368314,0,0.938844674,0.977606638,0.724496596,1,35.90770256,0.835238378,0.036553361,0.312029739,0.901575167,0.626071762,0.961238037,0.922476074,0.199318966,8.910611453,36.10702153,9.745849831,126.4987227,0,0.453405247,63.03762813,-0.453405247,116.9623719,0.939723376,0,154.9808283,9.745849831,161.3592921,4,18,4% -2018-04-27 03:00:00,91.57664824,289.2741788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59831403,5.048786861,-28.12481014,28.12481014,1,0,#DIV/0!,0,0,1,0.769573546,0,0.035540824,0.961238037,1,0.628656793,0.904160197,0,0,0.115824807,0.20329417,0.724496596,0.448993192,0.977211847,0.938449884,0,0,0,0,0,0,0.238811383,76.18360214,-0.238811383,103.8163979,0.840629746,0,0,0,0,4,19,0% -2018-04-27 04:00:00,102.3676146,299.1167912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786651923,5.220572855,-2.984968143,2.984968143,1,0.959386694,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017397379,89.0031533,-0.017397379,90.9968467,0,0,0,0,0,4,20,0% -2018-04-27 05:00:00,112.0881206,310.4646176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956306757,5.418629789,-1.214738869,1.214738869,1,0.737886271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.19712638,101.3689676,0.19712638,78.63103235,0,0.796355612,0,0,0,4,21,0% -2018-04-27 06:00:00,120.1340222,323.9832787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096734231,5.654574934,-0.475332572,0.475332572,1,0.611440347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.390132834,112.962765,0.390132834,67.03723502,0,0.921838524,0,0,0,4,22,0% -2018-04-27 07:00:00,125.7019333,340.018239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193912612,5.934437788,0.000442973,-0.000442973,1,0.530077937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548463533,123.2616686,0.548463533,56.73833138,0,0.958836236,0,0,0,4,23,0% -2018-04-28 08:00:00,127.9594613,357.9967737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.233313909,6.248222412,0.39603242,-0.39603242,1,0.462428157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661324942,131.4009989,0.661324942,48.59900115,0,0.974394202,0,0,0,4,0,0% -2018-04-28 09:00:00,126.4753875,16.19161638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207411934,0.282597017,0.798715506,-0.798715506,1,0.393565294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721023479,136.1390455,0.721023479,43.86095449,0,0.980654131,0,0,0,4,1,0% -2018-04-28 10:00:00,121.5398815,32.72160968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121271105,0.571099826,1.296441163,-1.296441163,1,0.308449193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723489293,136.3433195,0.723489293,43.65668053,0,0.980890477,0,0,0,4,2,0% -2018-04-28 11:00:00,113.9418086,46.75509171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988659715,0.816030292,2.069371359,-2.069371359,1,0.176270345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668553168,131.9554956,0.668553168,48.04450438,0,0.975211633,0,0,0,4,3,0% -2018-04-28 12:00:00,104.5139756,58.49785288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824112989,1.020980138,3.785249634,-3.785249634,1,0,#DIV/0!,0,0,0.104874771,1,0.25828253,0,0.930684624,0.969446587,0.724496596,1,0,0,0.017090749,0.312029739,0.952676936,0.677173531,0.961238037,0.922476074,0,0,0,0,0,0,-0.559957735,124.0528749,0.559957735,55.94712512,0,0.960707547,0,0,0,4,4,0% -2018-04-28 13:00:00,93.90406673,68.58353984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638935146,1.197008583,14.64872461,-14.64872461,1,0,#DIV/0!,0,0,0.663857157,1,0.068159582,0,0.954671059,0.993433022,0.724496596,1,0,0,0.086320007,0.312029739,0.784538703,0.509035299,0.961238037,0.922476074,0,0,0,0,0,0,-0.405102209,113.8975322,0.405102209,66.10246777,0,0.926574358,0,0,0,4,5,0% -2018-04-28 14:00:00,82.45135094,77.70490887,62.94433434,263.6811755,28.30507428,27.92607284,0,27.92607284,27.45157186,0.47450098,72.1603823,56.04529727,16.11508503,0.853502424,15.2615826,1.439047547,1.356206505,-7.47810638,7.47810638,0.191014803,0.191014803,0.449684226,0.263254418,8.467167008,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.38749504,0.618359601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19072693,8.138962992,26.57822197,8.757322593,0,56.04529727,-0.212549482,102.2718004,0.212549482,77.72819961,0,0.814760659,26.57822197,54.42082595,62.19556414,4,6,134% -2018-04-28 15:00:00,70.79065001,86.54729063,267.0352906,614.9364479,64.70843725,64.77026393,0,64.77026393,62.75723911,2.013024817,66.95705011,0.26005415,66.69699597,1.951198132,64.74579783,1.235529922,1.51053518,-2.751235435,2.751235435,0.999357341,0.999357341,0.242321669,2.012044618,64.71427126,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.32464532,1.413636404,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.457719476,62.20581907,61.7823648,63.61945547,0,0.26005415,-0.000422896,90.02423016,0.000422896,89.97576984,0,0,61.7823648,63.61945547,103.420026,4,7,67% -2018-04-28 16:00:00,58.97250059,95.89158646,478.9694657,764.309923,85.00636105,254.7364545,168.6826747,86.05377977,82.44310563,3.61067415,118.6949477,0,118.6949477,2.563255426,116.1316923,1.029264303,1.673623909,-1.495595858,1.495595858,0.785915645,0.785915645,0.17747762,2.974873523,95.68215856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.247449,1.85706983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.155285741,91.97333026,81.40273474,93.83040009,168.6826747,0,0.220699313,77.2498897,-0.220699313,102.7501103,0.823447414,0,220.304047,93.83040009,281.7141673,4,8,28% -2018-04-28 17:00:00,47.3709269,106.8698221,666.6498388,838.4600103,98.80330501,465.6567821,364.8072732,100.8495089,95.82402082,5.025488079,164.6162558,0,164.6162558,2.979284192,161.6369716,0.826778644,1.865230267,-0.869108798,0.869108798,0.678780047,0.678780047,0.148208699,3.650452418,117.4110981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.10969366,2.158481255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.644740351,112.8600135,94.75443401,115.0184947,364.8072732,0,0.435092036,64.20884957,-0.435092036,115.7911504,0.935081785,0,435.8790704,115.0184947,511.1563748,4,9,17% -2018-04-28 18:00:00,36.55523572,121.5028816,813.8874067,878.2974381,108.3659608,662.8370437,551.6032894,111.2337543,105.0983273,6.135427059,200.6040582,0,200.6040582,3.267633546,197.3364246,0.638009222,2.120625335,-0.461536809,0.461536809,0.609081132,0.609081132,0.133146133,4.056317762,130.4651227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0245098,2.367389381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93878841,125.4080384,103.9632982,127.7754278,551.6032894,0,0.628037001,51.0945559,-0.628037001,128.9054441,0.970386856,0,639.2318802,127.7754278,722.8583422,4,10,13% -2018-04-28 19:00:00,27.75648068,143.5109098,909.5670457,898.7686171,114.2152696,824.3808633,706.7529049,117.6279584,110.7712579,6.856700593,223.9790726,0,223.9790726,3.444011789,220.5350608,0.484441977,2.504737888,-0.149372637,0.149372637,0.555697915,0.555697915,0.125571029,4.192799628,134.8548487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4775464,2.495174817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.037669058,129.62761,109.5152155,132.1227848,706.7529049,0,0.786356901,38.15365021,-0.786356901,141.8463498,0.98641564,0,806.6673348,132.1227848,893.139055,4,11,11% -2018-04-28 20:00:00,23.56040037,176.094211,946.7638027,905.8451929,116.4305812,934.6451706,814.5882955,120.056875,112.9197696,7.137105459,233.0646568,0,233.0646568,3.510811606,229.5538452,0.41120656,3.073423775,0.120885283,-0.120885283,0.509481089,0.509481089,0.122977432,4.066750132,130.8006636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5427776,2.543571057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946346627,125.7305731,111.4891243,128.2741442,814.5882955,0,0.899257734,25.93932943,-0.899257734,154.0606706,0.994398588,0,921.5145749,128.2741442,1005.467437,4,12,9% -2018-04-28 21:00:00,26.33116732,210.3795489,922.8341549,901.3440394,115.0088145,982.9334502,864.4358621,118.4975881,111.5408744,6.956713666,227.2197651,0,227.2197651,3.467940095,223.751825,0.459565566,3.671815807,0.381220396,-0.381220396,0.464961162,0.464961162,0.124625659,3.698472332,118.9555836,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2173312,2.512510794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679530615,114.3446317,109.8968618,116.8571425,864.4358621,0,0.959052065,16.45306606,-0.959052065,163.5469339,0.997865187,0,972.487315,116.8571425,1048.967978,4,13,8% -2018-04-28 22:00:00,34.39514448,234.6144018,839.5059125,884.1304161,109.9556441,963.2192827,850.2506567,112.968626,106.6400758,6.328550177,206.8634963,0,206.8634963,3.315568364,203.5479279,0.600308518,4.094793784,0.660055576,-0.660055576,0.417277538,0.417277538,0.130976617,3.123775878,100.4713702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5064971,2.402117993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.26316499,96.57690261,104.7696621,98.9790206,850.2506567,0,0.961680134,15.9127893,-0.961680134,164.0872107,0.998007661,0,953.3263308,98.9790206,1018.10612,4,14,7% -2018-04-28 23:00:00,44.90650149,250.4739048,702.8146907,849.3850014,101.2294936,873.857146,770.3819811,103.4751649,98.17705091,5.298114009,173.4580014,0,173.4580014,3.05244273,170.4055587,0.783766306,4.371594329,0.996707506,-0.996707506,0.359706668,0.359706668,0.144034402,2.394381617,77.01154343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.37151568,2.211484367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.734721331,74.02642482,96.10623701,76.23790919,770.3819811,0,0.906987973,24.90762511,-0.906987973,155.0923749,0.994872477,0,862.5380671,76.23790919,912.4342539,4,15,6% -2018-04-28 00:00:00,56.38883925,262.0371213,522.975053,784.9411984,88.4678816,716.7117163,626.9690609,89.74265542,85.80024856,3.942406855,129.4689894,0,129.4689894,2.667633042,126.8013564,0.984170906,4.573410529,1.471405535,-1.471405535,0.278528524,0.278528524,0.169162718,1.579228048,50.79340259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.47446249,1.932691058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144145345,48.82455059,83.61860783,50.75724164,626.9690609,0,0.798746533,36.98942876,-0.798746533,143.0105712,0.987401919,0,702.6890618,50.75724164,735.9086613,4,16,5% -2018-04-28 01:00:00,68.17995132,271.6309064,314.8325049,658.6213281,70.02776231,494.7268737,424.4373664,70.28950731,67.9161669,2.373340408,78.44638122,0,78.44638122,2.111595409,76.33478581,1.189964634,4.740853668,2.321753782,-2.321753782,0.133110409,0.133110409,0.222428629,0.773546332,24.87990909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28360294,1.529843685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.560431684,23.91551497,65.84403463,25.44535866,424.4373664,0,0.644433073,49.87681748,-0.644433073,130.1231825,0.972412424,0,478.5722029,25.44535866,495.2256812,4,17,3% -2018-04-28 02:00:00,79.89112043,280.5215168,103.9824064,370.8260177,38.89528334,207.228322,168.7220117,38.50631034,37.72244704,0.783863302,26.3845746,0,26.3845746,1.172836301,25.2117383,1.394363095,4.896024091,4.831750805,-4.831750805,0,0,0.374056388,0.293209075,9.43061176,0.228469096,1,0.204082961,0,0.938343129,0.977105093,0.724496596,1,36.52472849,0.849715908,0.035268415,0.312029739,0.904857042,0.629353638,0.961238037,0.922476074,0.202987954,9.065062735,36.72771644,9.914778643,130.1742461,0,0.454989681,62.93572968,-0.454989681,117.0642703,0.940107398,0,159.1054882,9.914778643,165.5945125,4,18,4% -2018-04-28 03:00:00,91.40340547,289.5374194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595290373,5.053381277,-31.47927297,31.47927297,1,0,#DIV/0!,0,0,1,0.79647604,0,0.031756255,0.961238037,1,0.638390448,0.913893852,0,0,0.115824807,0.214314858,0.724496596,0.448993192,0.975707972,0.936946009,0,0,0,0,0,0,0.240675319,76.07359835,-0.240675319,103.9264016,0.842251236,0,0,0,0,4,19,0% -2018-04-28 04:00:00,102.1725677,299.3697709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783247712,5.224988183,-3.018799126,3.018799126,1,0.953601256,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.019566982,88.87882298,-0.019566982,91.12117702,0,0,0,0,0,4,20,0% -2018-04-28 05:00:00,111.8641644,310.7030411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952397983,5.422791063,-1.219465311,1.219465311,1,0.73869454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194624171,101.2227696,0.194624171,78.77723043,0,0.793094603,0,0,0,4,21,0% -2018-04-28 06:00:00,119.8761887,324.1913069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092234188,5.658205711,-0.474219689,0.474219689,1,0.611250033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387294042,112.7862313,0.387294042,67.21376874,0,0.920899124,0,0,0,4,22,0% -2018-04-28 07:00:00,125.4114759,340.1660316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188843174,5.937017255,0.004075863,-0.004075863,1,0.529456676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545307411,123.0456735,0.545307411,56.95432647,0,0.9583086,0,0,0,4,23,0% -2018-04-29 08:00:00,127.6483134,358.0519386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227883354,6.249185221,0.401684956,-0.401684956,1,0.461461517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657892643,131.1393511,0.657892643,48.86064886,0,0.973999758,0,0,0,4,0,0% -2018-04-29 09:00:00,126.1635616,16.14570012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201969546,0.281795627,0.80699138,-0.80699138,1,0.392150036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717375223,135.838197,0.717375223,44.16180302,0,0.980301468,0,0,0,4,1,0% -2018-04-29 10:00:00,121.2445116,32.59734245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116115927,0.568930953,1.309391144,-1.309391144,1,0.306234616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719700225,136.029736,0.719700225,43.97026401,0,0.98052663,0,0,0,4,2,0% -2018-04-29 11:00:00,113.6702672,46.58347712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983920424,0.813035053,2.093393339,-2.093393339,1,0.172162345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664708194,131.6599427,0.664708194,48.34005727,0,0.974779023,0,0,0,4,3,0% -2018-04-29 12:00:00,104.2657842,58.30012638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819781231,1.01752916,3.851253471,-3.851253471,1,0,#DIV/0!,0,0,0.113828265,1,0.254045553,0,0.931306019,0.970067982,0.724496596,1,0,0,0.018475464,0.312029739,0.948942838,0.673439434,0.961238037,0.922476074,0,0,0,0,0,0,-0.556145685,123.789663,0.556145685,56.21033695,0,0.9600955,0,0,0,4,4,0% -2018-04-29 13:00:00,93.67498494,68.3693095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634936914,1.193269558,15.56306077,-15.56306077,1,0,#DIV/0!,0,0,0.68064244,1,0.064166502,0,0.955086281,0.993848244,0.724496596,1,0,0,0.087965275,0.312029739,0.781006604,0.5055032,0.961238037,0.922476074,0,0,0,0,0,0,-0.401409736,113.6663375,0.401409736,66.33366246,0,0.925438995,0,0,0,4,5,0% -2018-04-29 14:00:00,82.23854041,77.47584613,66.05189072,272.184478,29.29361967,28.90823601,0,28.90823601,28.41030895,0.497927053,73.81256825,56.91421191,16.89835634,0.883310715,16.01504563,1.435333302,1.352208606,-7.274513607,7.274513607,0.225831217,0.225831217,0.443494037,0.283405368,9.115290822,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.3090696,0.639955606,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205326224,8.761964255,27.51439583,9.401919861,0,56.91421191,-0.209101608,102.0697094,0.209101608,77.93029064,0,0.8108818,27.51439583,55.55261847,63.87247356,4,6,132% -2018-04-29 15:00:00,70.58250967,86.30018624,270.6469245,617.6393368,65.31331487,67.11303804,1.728909759,65.38412829,63.34387745,2.040250839,67.59091772,0,67.59091772,1.969437424,65.62148029,1.231897188,1.506222395,-2.722858975,2.722858975,0.995789998,0.995789998,0.241322952,2.033734213,65.4118832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8885444,1.426850709,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473433514,62.87639019,62.36197792,64.3032409,1.728909759,0,0.002799222,89.83961617,-0.002799222,90.16038383,0,0,62.36197792,64.3032409,104.447163,4,7,67% -2018-04-29 16:00:00,58.76323146,95.62028348,482.3387828,765.2247127,85.51175195,257.6861834,171.1168528,86.56933061,82.93325713,3.636073485,119.527117,0,119.527117,2.578494826,116.9486222,1.025611868,1.668888778,-1.486695849,1.486695849,0.784393653,0.784393653,0.177285665,2.991097927,96.20399117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.71860127,1.868110724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167040266,92.47493561,81.88564154,94.34304634,171.1168528,0,0.223616475,77.07846475,-0.223616475,102.9215352,0.826402879,0,223.2971013,94.34304634,285.0427383,4,8,28% -2018-04-29 17:00:00,47.15036872,106.5684075,669.6953987,838.7637673,99.27176452,468.4326519,367.1058505,101.3268013,96.27835454,5.048446796,165.3688129,0,165.3688129,2.993409974,162.3754029,0.822929178,1.859969589,-0.865813272,0.865813272,0.678216479,0.678216479,0.148234204,3.664747312,117.870871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54641651,2.168715336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.655096952,113.3019647,95.20151347,115.47068,367.1058505,0,0.437674903,64.04437535,-0.437674903,115.9556247,0.935759956,0,438.7244681,115.47068,514.2977188,4,9,17% -2018-04-29 18:00:00,36.30880945,121.1797177,816.6204817,878.3496471,108.8136189,665.2963896,553.6078726,111.688517,105.5324868,6.156030133,201.2802224,0,201.2802224,3.28113209,197.9990903,0.633708272,2.114985061,-0.460637295,0.460637295,0.608927306,0.608927306,0.133248702,4.069365138,130.8847712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4418405,2.37716903,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.94824119,125.8114205,104.3900817,128.1885895,553.6078726,0,0.630281887,50.92907732,-0.630281887,129.0709227,0.970670416,0,641.7608656,128.1885895,725.6577336,4,10,13% -2018-04-29 19:00:00,27.46887577,143.2489763,912.0351391,898.7054965,114.6483221,826.5015888,708.4350305,118.0665583,111.1912521,6.875306124,224.5905486,0,224.5905486,3.457069917,221.1334787,0.479422324,2.500166287,-0.149835453,0.149835453,0.555777061,0.555777061,0.125706036,4.205064872,135.2493411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8812609,2.504635387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046555185,130.0068111,109.9278161,132.5114465,708.4350305,0,0.788283852,37.97457723,-0.788283852,142.0254228,0.986571072,0,808.8493233,132.5114465,895.5754148,4,11,11% -2018-04-29 20:00:00,23.24883246,176.1359048,949.0368405,905.7298659,116.8529156,936.4635502,815.9799406,120.4836096,113.329369,7.154240579,233.6285161,0,233.6285161,3.523546545,230.1049696,0.405768674,3.074151469,0.119395719,-0.119395719,0.509735819,0.509735819,0.123127902,4.078639847,131.1830777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9365002,2.552797477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.954960685,126.0981641,111.8914609,128.6509616,815.9799406,0,0.900908727,25.72222635,-0.900908727,154.2777736,0.994500482,0,923.3839052,128.6509616,1007.583387,4,12,9% -2018-04-29 21:00:00,26.06302883,210.7401549,924.996696,901.2163223,115.423919,984.5239289,865.6074511,118.9164778,111.943462,6.973015815,227.7566152,0,227.7566152,3.480457027,224.2761582,0.454885666,3.678109569,0.378698443,-0.378698443,0.465392442,0.465392442,0.124783061,3.710358515,119.3378841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6043136,2.521579268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.688142113,114.7121134,110.2924558,117.2336927,865.6074511,0,0.960487987,16.16004886,-0.960487987,163.8399511,0.997943128,0,974.1194633,117.2336927,1050.84657,4,13,8% -2018-04-29 22:00:00,34.18659312,235.0254705,841.6498774,884.0328379,110.3672384,964.6868393,851.302868,113.3839713,107.039259,6.34471229,207.3957365,0,207.3957365,3.32797945,204.0677571,0.59666861,4.101968286,0.656190244,-0.656190244,0.417938549,0.417938549,0.131132008,3.135971985,100.8636389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8902072,2.411109783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.272001028,96.95396621,105.1622082,99.365076,851.302868,0,0.962976523,15.63958942,-0.962976523,164.3604106,0.998077654,0,954.8285777,99.365076,1019.861033,4,14,7% -2018-04-29 23:00:00,44.73458841,250.8423745,705.0312782,849.39531,101.6423245,875.3383361,771.4460791,103.8922569,98.57743336,5.314823581,174.0078871,0,174.0078871,3.064891103,170.942996,0.780765857,4.378025339,0.990670962,-0.990670962,0.360738977,0.360738977,0.144167114,2.407080379,77.41997927,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.75637852,2.220503171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743921541,74.41902889,96.50030006,76.63953206,771.4460791,0,0.908229737,24.7381507,-0.908229737,155.2618493,0.99494785,0,864.0489177,76.63953206,914.2079586,4,15,6% -2018-04-29 00:00:00,56.2336358,262.3613955,525.3431333,785.2573587,88.89105807,718.3939858,628.2230627,90.17092314,86.2106647,3.960258444,130.0559182,0,130.0559182,2.680393374,127.3755249,0.981462095,4.579070181,1.461006076,-1.461006076,0.280306936,0.280306936,0.16920571,1.59235304,51.21554744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86897009,1.941935875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153654357,49.23033228,84.02262445,51.17226815,628.2230627,0,0.800021873,36.8678089,-0.800021873,143.1321911,0.987501709,0,704.3939723,51.17226815,737.8851984,4,16,5% -2018-04-29 01:00:00,68.02827662,271.9235384,317.3869558,659.8846812,70.49178599,496.9297004,426.1709049,70.75879549,68.36619856,2.392596937,79.07972944,0,79.07972944,2.125587435,76.954142,1.187317411,4.745961059,2.299362372,-2.299362372,0.136939566,0.136939566,0.222100451,0.786268789,25.28910703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71619049,1.539980861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.569649061,24.3088516,66.28583955,25.84883246,426.1709049,0,0.645826335,49.77234049,-0.645826335,130.2276595,0.972579806,0,480.7710557,25.84883246,497.6885995,4,17,4% -2018-04-29 02:00:00,79.73419163,280.7935481,106.478291,375.5380614,39.55175904,210.6194791,171.4576732,39.16180591,38.35912757,0.802678334,27.00952588,0,27.00952588,1.192631465,25.81689441,1.39162417,4.900771932,4.742955518,-4.742955518,0,0,0.371453736,0.298157866,9.589781893,0.219322989,1,0.207795622,0,0.937838829,0.976600792,0.724496596,1,37.13544847,0.864057437,0.033989447,0.312029739,0.908136578,0.632633174,0.961238037,0.922476074,0.206640517,9.21806312,37.34208899,10.08212056,133.8530639,0,0.456565368,62.83430193,-0.456565368,117.1656981,0.940486656,0,163.2291095,10.08212056,169.8276558,4,18,4% -2018-04-29 03:00:00,91.23099491,289.796175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592281241,5.057897414,-35.75569464,35.75569464,1,0,#DIV/0!,0,0,1,0.822843846,0,0.027960284,0.961238037,1,0.64826676,0.923770165,0,0,0.115824807,0.225503031,0.724496596,0.448993192,0.974154168,0.935392205,0,0,0,0,0,0,0.242534745,75.96380849,-0.242534745,104.0361915,0.843843971,0,0,0,0,4,19,0% -2018-04-29 04:00:00,101.978536,299.6179249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77986122,5.229319288,-3.053667992,3.053667992,1,0.947638328,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021734832,88.75458779,-0.021734832,91.24541221,0,0,0,0,0,4,20,0% -2018-04-29 05:00:00,111.6416444,310.9362286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948514278,5.426860952,-1.224346572,1.224346572,1,0.739529285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192123328,101.0767252,0.192123328,78.92327478,0,0.789750501,0,0,0,4,21,0% -2018-04-29 06:00:00,119.6204886,324.3938717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087771378,5.661741135,-0.473171784,0.473171784,1,0.61107083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384458631,112.6101355,0.384458631,67.38986447,0,0.919946996,0,0,0,4,22,0% -2018-04-29 07:00:00,125.1240634,340.3088485,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183826879,5.93950988,0.007662916,-0.007662916,1,0.528843254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542158949,122.8307291,0.542158949,57.16927089,0,0.957776123,0,0,0,4,23,0% -2018-04-30 08:00:00,127.3410628,358.1037512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222520819,6.250089523,0.407296921,-0.407296921,1,0.460501814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654474254,130.8797971,0.654474254,49.12020288,0,0.973602801,0,0,0,4,0,0% -2018-04-30 09:00:00,125.8560986,16.09862498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196603303,0.280974011,0.815230419,-0.815230419,1,0.390741077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713748669,135.5407417,0.713748669,44.45925832,0,0.97994733,0,0,0,4,1,0% -2018-04-30 10:00:00,120.953572,32.47358956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111038073,0.566771058,1.322320466,-1.322320466,1,0.304023572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715941659,135.7204248,0.715941659,44.27957522,0,0.980161907,0,0,0,4,2,0% -2018-04-30 11:00:00,113.4030576,46.41321853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979256737,0.81006348,2.117492673,-2.117492673,1,0.168041116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660902923,131.3687712,0.660902923,48.63122876,0,0.974345924,0,0,0,4,3,0% -2018-04-30 12:00:00,104.0218352,58.10405929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815523518,1.014107143,3.918281789,-3.918281789,1,0,#DIV/0!,0,0,0.122739268,1,0.249879817,0,0.93191325,0.970675214,0.724496596,1,0,0,0.019842601,0.312029739,0.945270893,0.669767489,0.961238037,0.922476074,0,0,0,0,0,0,-0.552382308,123.5306033,0.552382308,56.46939675,0,0.959482981,0,0,0,4,4,0% -2018-04-30 13:00:00,93.45012916,68.15679073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63101244,1.189560406,16.57819149,-16.57819149,1,0,#DIV/0!,0,0,0.697417521,1,0.060247211,0,0.955490169,0.994252132,0.724496596,1,0,0,0.089589546,0.312029739,0.777540849,0.502037445,0.961238037,0.922476074,0,0,0,0,0,0,-0.397774055,113.4390975,0.397774055,66.56090255,0,0.9243005,0,0,0,4,5,0% -2018-04-30 14:00:00,82.02984801,77.24842915,69.13050896,280.3637601,30.25605336,29.8648567,0,29.8648567,29.34372172,0.521134977,75.34867033,57.67484643,17.6738239,0.912331642,16.76149226,1.431690933,1.348239431,-7.085286584,7.085286584,0.258190944,0.258190944,0.437665711,0.3037463,9.769525136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.20630146,0.660981169,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.220063161,9.390839163,28.42636462,10.05182033,0,57.67484643,-0.205714342,101.8713191,0.205714342,78.12868086,0,0.806944511,28.42636462,56.59222108,65.46484147,4,6,130% -2018-04-30 15:00:00,70.37880084,86.05456024,274.1754527,620.2164008,65.90672112,69.67861493,3.692374241,65.98624069,63.91939031,2.066850374,68.46434361,0,68.46434361,1.987330812,66.4770128,1.228341798,1.501935413,-2.695641602,2.695641602,0.991135553,0.991135553,0.240381553,2.052933036,66.02938335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.44174926,1.439814408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487342996,63.46995483,62.92909226,64.90976924,3.692374241,0,0.005953364,89.65889533,-0.005953364,90.34110467,0,0,62.92909226,64.90976924,105.411238,4,7,68% -2018-04-30 16:00:00,58.55865395,95.35009778,485.6200646,766.0864323,86.00989261,260.567269,173.4900828,87.07718618,83.41637701,3.660809174,120.3377226,0,120.3377226,2.593515605,117.744207,1.022041317,1.664173148,-1.478112666,1.478112666,0.782925843,0.782925843,0.177113548,3.00688841,96.71186738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.18299447,1.878993227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178480417,92.96312554,82.36147489,94.84211877,173.4900828,0,0.226462806,76.91108869,-0.226462806,103.0889113,0.829213192,0,226.2217402,94.84211877,288.2940101,4,8,27% -2018-04-30 17:00:00,46.93482433,106.2672719,672.6548173,839.0383289,99.73439646,471.1312545,369.3334619,101.7977926,96.72703643,5.070756143,166.1003082,0,166.1003082,3.007360034,163.0929482,0.819167218,1.854713782,-0.862645317,0.862645317,0.677674727,0.677674727,0.148269802,3.678660322,118.3183613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.97770661,2.178822107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66517688,113.7321093,95.64288349,115.9109314,369.3334619,0,0.440186639,63.88420996,-0.440186639,116.11579,0.936411818,0,441.4911021,115.9109314,517.3524885,4,9,17% -2018-04-30 18:00:00,36.06767367,120.8548682,819.2725008,878.3827547,109.2562372,667.6777872,555.5400064,112.1377808,105.9617586,6.176022173,201.9365817,0,201.9365817,3.294478666,198.642103,0.629499659,2.109315367,-0.459796984,0.459796984,0.608783605,0.608783605,0.133357628,4.082074558,131.2935498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8544728,2.386838578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957449122,126.2043541,104.8119219,128.5911927,555.5400064,0,0.632457779,50.76831329,-0.632457779,129.2316867,0.970943339,0,644.2097909,128.5911927,728.3701547,4,10,13% -2018-04-30 19:00:00,27.18635714,142.9820574,914.4294513,898.6282915,115.0769505,828.5480526,710.0477413,118.5003113,111.6069558,6.89335546,225.184002,0,225.184002,3.469994645,221.7140074,0.474491444,2.495507672,-0.150324463,0.150324463,0.555860687,0.555860687,0.12584563,4.217035561,135.6343596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2808511,2.513999308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.055227908,130.3769055,110.336079,132.8909049,710.0477413,0,0.790146213,37.80082259,-0.790146213,142.1991774,0.986720572,0,810.9547928,132.8909049,897.9292322,4,11,11% -2018-04-30 20:00:00,22.94141351,176.1735632,951.2448705,905.6031531,117.2713901,938.2143025,817.3081918,120.9061106,113.735225,7.170885641,234.1764971,0,234.1764971,3.536165096,230.640332,0.400403201,3.074808732,0.11790061,-0.11790061,0.509991498,0.509991498,0.123282021,4.09027845,131.5574152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3266244,2.561939575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.963392813,126.4579915,112.2900172,129.0199311,817.3081918,0,0.902501486,25.51115021,-0.902501486,154.4888498,0.994598429,0,925.183461,129.0199311,1009.624425,4,12,9% -2018-04-30 21:00:00,25.79851868,211.0991981,927.1038279,901.0786114,115.8357005,986.0554015,866.7236745,119.331727,112.3428267,6.988900265,228.2799305,0,228.2799305,3.492873758,224.7870567,0.450269093,3.684376056,0.376188367,-0.376188367,0.46582169,0.46582169,0.124943611,3.722035683,119.713462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9881982,2.530575147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696602182,115.0731332,110.6848004,117.6037083,866.7236745,0,0.961873541,15.87232171,-0.961873541,164.1276783,0.998018115,0,975.690728,117.6037083,1052.660003,4,13,8% -2018-04-30 22:00:00,33.98091607,235.4331681,843.7481707,883.9256416,110.7760079,966.1050689,852.3088362,113.7962327,107.4357026,6.360530111,207.9168179,0,207.9168179,3.340305359,204.5765126,0.593078868,4.109083952,0.652357462,-0.652357462,0.418593993,0.418593993,0.131290368,3.147998099,101.25044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2712838,2.420039862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280713907,97.32577421,105.5519977,99.74581408,852.3088362,0,0.964231374,15.37063609,-0.964231374,164.6293639,0.998145226,0,956.2799937,99.74581408,1021.561634,4,14,7% -2018-04-30 23:00:00,44.56470536,251.2066252,707.2114141,849.3950284,102.0527551,876.7798388,772.4730925,104.3067463,98.97548797,5.331258367,174.5488623,0,174.5488623,3.0772671,171.4715952,0.777800839,4.384382712,0.98470123,-0.98470123,0.361759862,0.361759862,0.144303037,2.419644134,77.82407283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.13900375,2.229469538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753023938,74.80745898,96.89202769,77.03692852,772.4730925,0,0.90943915,24.5720391,-0.90943915,155.4279609,0.99502106,0,865.5190234,77.03692852,915.9381524,4,15,6% -2018-04-30 00:00:00,56.0798453,262.6813333,527.6829514,785.5587081,89.31209164,720.0444891,629.4475896,90.59689954,86.61900255,3.977896982,130.63593,0,130.63593,2.69308909,127.9428409,0.978777944,4.584654149,1.450752438,-1.450752438,0.282060411,0.282060411,0.16925332,1.605376077,51.63441308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.26147997,1.951133878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.163089503,49.63296186,84.42456947,51.58409574,629.4475896,0,0.801273773,36.7480886,-0.801273773,143.2519114,0.987599355,0,706.0666031,51.58409574,739.8273621,4,16,5% -2018-04-30 01:00:00,67.87763226,272.2118494,319.9205164,661.1165443,70.95331937,499.1029224,427.8774114,71.22551099,68.813815,2.411695988,79.70793748,0,79.70793748,2.139504369,77.56843311,1.184688171,4.750993034,2.27740085,-2.27740085,0.140695207,0.140695207,0.221784211,0.798935656,25.69651702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14645644,1.550063632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.578826163,24.70046957,66.7252826,26.2505332,427.8774114,0,0.647204211,49.66885848,-0.647204211,130.3311415,0.972744631,0,482.9407374,26.2505332,500.1211864,4,17,4% -2018-04-30 02:00:00,79.57807898,281.0612012,108.9688559,380.1465832,40.20207224,213.9688945,174.1576098,39.8112847,38.98983143,0.821453264,27.63300152,0,27.63300152,1.212240808,26.42076071,1.388899491,4.905443361,4.65730086,-4.65730086,0,0,0.368931764,0.303060202,9.747457858,0.210292519,1,0.211505305,0,0.93733192,0.976093883,0.724496596,1,37.73991616,0.878264339,0.032716725,0.312029739,0.911412899,0.635909495,0.961238037,0.922476074,0.210277048,9.369627256,37.95019321,10.24789159,137.5335673,0,0.458132777,62.7333155,-0.458132777,117.2666845,0.940861334,0,167.3502089,10.24789159,174.057249,4,18,4% -2018-04-30 03:00:00,91.05944423,290.0503625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589287117,5.062333822,-41.39314194,41.39314194,1,0,#DIV/0!,0,0,1,0.848686551,0,0.024153893,0.961238037,1,0.658284013,0.933787417,0,0,0.115824807,0.236856901,0.724496596,0.448993192,0.972549663,0.9337877,0,0,0,0,0,0,0.244389861,75.85422072,-0.244389861,104.1457793,0.845408861,0,0,0,0,4,19,0% -2018-04-30 04:00:00,101.7855658,299.8611841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776493255,5.233564962,-3.089613857,3.089613857,1,0.941491223,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02390077,88.63045632,-0.02390077,91.36954368,0,0,0,0,0,4,20,0% -2018-04-30 05:00:00,111.4206256,311.1641308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944656772,5.430838597,-1.229387199,1.229387199,1,0.740391283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1896244,100.9308654,0.1896244,79.06913457,0,0.786320853,0,0,0,4,21,0% -2018-04-30 06:00:00,119.3670011,324.590952,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083347187,5.665180835,-0.472192047,0.472192047,1,0.610903285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381627541,112.4345328,0.381627541,67.56546723,0,0.918982202,0,0,0,4,22,0% -2018-04-30 07:00:00,124.8397818,340.4466928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178865229,5.941915716,0.011200631,-0.011200631,1,0.528238269,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539019454,122.6169138,0.539019454,57.38308622,0,0.95723897,0,0,0,4,23,0% -2018-05-01 08:00:00,127.0377956,358.1522128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217227808,6.250935337,0.412863919,-0.412863919,1,0.459549801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651071403,130.6224299,0.651071403,49.37757013,0,0.973203508,0,0,0,5,0,0% -2018-05-01 09:00:00,125.5530864,16.05037104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191314744,0.280131821,0.823426482,-0.823426482,1,0.389339468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710145696,135.2467708,0.710145696,44.75322924,0,0.979591913,0,0,0,5,1,0% -2018-05-01 10:00:00,120.6671554,32.35032484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106039161,0.564619683,1.33521938,-1.33521938,1,0.301817728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712215634,135.4154726,0.712215634,44.58452744,0,0.979796543,0,0,0,5,2,0% -2018-05-01 11:00:00,113.1402745,46.24430329,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974670306,0.807115353,2.141651082,-2.141651082,1,0.163909785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657139456,131.0820746,0.657139456,48.91792539,0,0.97391265,0,0,0,5,3,0% -2018-05-01 12:00:00,103.7822209,57.90965927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81134146,1.010714223,3.986303505,-3.986303505,1,0,#DIV/0!,0,0,0.131600973,1,0.245786944,0,0.932506263,0.971268226,0.724496596,1,0,0,0.021191411,0.312029739,0.941662544,0.66615914,0.961238037,0.922476074,0,0,0,0,0,0,-0.548669661,123.275794,0.548669661,56.72420603,0,0.958870485,0,0,0,5,4,0% -2018-05-01 13:00:00,93.22958637,67.94601129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627163242,1.185881611,17.71072386,-17.71072386,1,0,#DIV/0!,0,0,0.71416799,1,0.056403078,0,0.955882783,0.994644747,0.724496596,1,0,0,0.09119184,0.312029739,0.7741427,0.498639296,0.961238037,0.922476074,0,0,0,0,0,0,-0.39419708,113.2159074,0.39419708,66.78409258,0,0.923159893,0,0,0,5,5,0% -2018-05-01 14:00:00,81.82536781,77.02270518,72.1748412,288.2214712,31.19243003,30.79594761,0,30.79594761,30.25186317,0.54408444,76.77321752,58.33302481,18.44019271,0.940566853,17.49962586,1.42812208,1.344299804,-6.909125056,6.909125056,0.288316339,0.288316339,0.432178714,0.324214949,10.42786725,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.07924157,0.681437483,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234892627,10.02366264,29.31413419,10.70510013,0,58.33302481,-0.202389588,101.6767305,0.202389588,78.32326947,0,0.802951718,29.31413419,57.54370262,66.97533668,5,6,128% -2018-05-01 15:00:00,70.17959884,85.81048094,277.6194409,622.6705797,66.48871192,72.20442975,5.627785206,66.57664455,64.48383194,2.092812613,69.3169276,0,69.3169276,2.004879982,67.31204762,1.224865067,1.497675425,-2.669542089,2.669542089,0.986672274,0.986672274,0.239495879,2.071600302,66.62978678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.98431202,1.452528722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500867367,64.04708544,63.48517938,65.49961417,5.627785206,0,0.009038142,89.48214555,-0.009038142,90.51785445,0,0,63.48517938,65.49961417,106.3533669,5,7,68% -2018-05-01 16:00:00,58.35883911,95.08112301,488.8125133,766.8958494,86.5007564,263.378438,175.8011234,87.57731465,83.89243945,3.6848752,121.1265701,0,121.1265701,2.608316959,118.5182531,1.01855389,1.659478653,-1.469841135,1.469841135,0.781511328,0.781511328,0.176961011,3.022243637,97.20574426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.6406038,1.889716758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189605227,93.43785878,82.83020903,95.32757554,175.8011234,0,0.229237286,76.74782823,-0.229237286,103.2521718,0.831885396,0,229.0765961,95.32757554,291.4665877,5,8,27% -2018-05-01 17:00:00,46.72436664,105.9665384,675.5277361,839.2839998,100.191181,473.7518966,371.489436,102.2624606,97.17004722,5.092413419,166.8106544,0,166.8106544,3.021133773,163.7895206,0.815494039,1.849464991,-0.859604247,0.859604247,0.677154673,0.677154673,0.148315422,3.692191276,118.7535632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.40354543,2.188801134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67498001,114.150442,96.07852544,116.3392431,371.489436,0,0.442626615,63.72841001,-0.442626615,116.27159,0.937037972,0,444.1782333,116.3392431,520.3199411,5,9,17% -2018-05-01 18:00:00,35.83191422,120.5284649,821.843481,878.3969474,109.6938136,669.9810113,557.3994676,112.5815437,106.3861404,6.195403308,202.5731402,0,202.5731402,3.307673206,199.265467,0.62538488,2.103618554,-0.459016032,0.459016032,0.608650054,0.608650054,0.133472877,4.094446991,131.6914898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2624047,2.396397978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.966412907,126.5868691,105.2288176,128.9832671,557.3994676,0,0.634564441,50.61231267,-0.634564441,129.3876873,0.971205796,0,646.5784113,128.9832671,730.9953799,5,10,13% -2018-05-01 19:00:00,26.90903046,142.7101511,916.7503046,898.5371595,115.5011691,830.5204443,711.5912106,118.9292337,112.0183827,6.910851033,225.7595115,0,225.7595115,3.482786402,222.2767251,0.46965118,2.490762013,-0.150839969,0.150839969,0.555948843,0.555948843,0.12598978,4.228713472,136.0099614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6763303,2.523266892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063688515,130.7379482,110.7400188,133.2612151,711.5912106,0,0.791944109,37.63243549,-0.791944109,142.3675645,0.986864231,0,812.983932,133.2612151,900.200732,5,11,11% -2018-05-01 20:00:00,22.63822538,176.206931,953.3884335,905.4652137,117.6860315,939.8979655,818.5735573,121.3244082,114.1373635,7.187044724,234.7087317,0,234.7087317,3.548668066,231.1600636,0.39511157,3.075391111,0.116399677,-0.116399677,0.510248172,0.510248172,0.123439752,4.101668103,131.9237456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7131752,2.570997934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971644578,126.8101222,112.6848198,129.3811202,818.5735573,0,0.90403645,25.30617988,-0.90403645,154.6938201,0.994692496,0,926.9137942,129.3811202,1011.59115,5,12,9% -2018-05-01 21:00:00,25.53766137,211.4563607,929.1562082,900.9310824,116.2441934,987.5286662,867.7852921,119.7433741,112.7390021,7.004371975,228.7898714,0,228.7898714,3.505191327,225.2846801,0.445716274,3.690609719,0.373689951,-0.373689951,0.466248944,0.466248944,0.125107267,3.733505932,120.0823846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.369017,2.539499184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.704912338,115.4277556,111.0739294,117.9672548,867.7852921,0,0.963209405,15.59001751,-0.963209405,164.4099825,0.998090208,0,977.201932,117.9672548,1054.409141,5,13,8% -2018-05-01 22:00:00,33.77809815,235.8372259,845.8014574,883.8090325,111.1819899,967.4749217,853.2694704,114.2054513,107.8294426,6.376008654,208.4269029,0,208.4269029,3.352547212,205.0743557,0.589539028,4.11613609,0.648557048,-0.648557048,0.419243902,0.419243902,0.131451641,3.159855808,101.6318247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6497618,2.428909043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289304777,97.69237568,105.9390665,100.1212847,853.2694704,0,0.965445519,15.10596181,-0.965445519,164.8940382,0.998210439,0,957.6815588,100.1212847,1023.208937,5,14,7% -2018-05-01 23:00:00,44.39682952,251.5664689,709.3556606,849.3844114,102.4608203,878.1826355,773.4639643,104.7186711,99.37124854,5.347422603,175.0810643,0,175.0810643,3.089571772,171.9914926,0.774870853,4.390663169,0.978798027,-0.978798027,0.362769369,0.362769369,0.144442099,2.432073565,78.22384605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.51942386,2.238384232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762029019,75.19173621,97.28145288,77.43012044,773.4639643,0,0.910617094,24.40923089,-0.910617094,155.5907691,0.995092179,0,866.9493949,77.43012044,917.6258601,5,15,6% -2018-05-01 00:00:00,55.92745262,262.9967964,529.9948604,785.8456028,89.73101102,721.6641191,630.643504,91.02061509,87.02528996,3.995325129,131.209111,0,131.209111,2.705721054,128.50339,0.97611819,4.59016002,1.440643532,-1.440643532,0.283789136,0.283789136,0.169305436,1.618296569,52.04998053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65201888,1.960285693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.172450356,50.0324211,84.82446924,51.9927068,630.643504,0,0.802503064,36.63020345,-0.802503064,143.3697966,0.987694942,0,707.7078683,51.9927068,741.7360551,5,16,5% -2018-05-01 01:00:00,67.72801639,272.4957286,322.4332187,662.3176136,71.41238812,501.2472798,429.5576009,71.68967894,69.25904114,2.430637799,80.33101386,0,80.33101386,2.153346986,78.17766687,1.182076882,4.755947662,2.255861948,-2.255861948,0.144378576,0.144378576,0.221479624,0.811544478,26.10206009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.57442474,1.560092561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587961212,25.090293,67.16238595,26.65038556,429.5576009,0,0.648567382,49.56632448,-0.648567382,130.4336755,0.972907008,0,485.0819862,26.65038556,502.5241305,5,17,4% -2018-05-01 02:00:00,79.42279788,281.3243824,111.4533285,384.6533379,40.84627414,217.2769777,176.8221872,40.45479053,39.61460827,0.840182269,28.25481574,0,28.25481574,1.231665872,27.02314987,1.386189324,4.910036738,4.574644901,-4.574644901,0,0,0.366487701,0.307916468,9.903652066,0.201377887,1,0.21521092,0,0.936822567,0.97558453,0.724496596,1,38.3381752,0.892337731,0.031450546,0.312029739,0.914685042,0.639181638,0.961238037,0.922476074,0.213897848,9.51976707,38.55207305,10.4121048,141.2141088,0,0.459692325,62.63274442,-0.459692325,117.3672556,0.941231597,0,171.4672542,10.4121048,178.2817686,5,18,4% -2018-05-01 03:00:00,90.88878459,290.2999009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586308544,5.066689089,-49.16178332,49.16178332,1,0,#DIV/0!,0,0,1,0.874012792,0,0.020338199,0.961238037,1,0.668440003,0.943943407,0,0,0.115824807,0.248373994,0.724496596,0.448993192,0.970893806,0.932131843,0,0,0,0,0,0,0.246240799,75.74482705,-0.246240799,104.255173,0.846946728,0,0,0,0,5,19,0% -2018-05-01 04:00:00,101.5937069,300.099482,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773144685,5.237724045,-3.126676189,3.126676189,1,0.935153191,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.026064569,88.50644107,-0.026064569,91.49355893,0,0,0,0,0,5,20,0% -2018-05-01 05:00:00,111.2011757,311.3867021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940826647,5.434723199,-1.234591472,1.234591472,1,0.741281266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.187128001,100.7852248,0.187128001,79.21477516,0,0.782803216,0,0,0,5,21,0% -2018-05-01 06:00:00,119.1158079,324.7825301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078963039,5.668524503,-0.471283573,0.471283573,1,0.610747927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378801772,112.2594814,0.378801772,67.74051858,0,0.918004841,0,0,0,5,22,0% -2018-05-01 07:00:00,124.5587183,340.5795712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173959746,5.944234882,0.014685519,-0.014685519,1,0.527642318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535890288,122.4043087,0.535890288,57.5956913,0,0.95669732,0,0,0,5,23,0% -2018-05-02 08:00:00,126.7385986,358.1973287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212005834,6.251722757,0.418381504,-0.418381504,1,0.458606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647685755,130.3673442,0.647685755,49.63265585,0,0.972802069,0,0,0,5,0,0% -2018-05-02 09:00:00,125.2546128,16.00092372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186105396,0.279268802,0.831573299,-0.831573299,1,0.38794628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706568199,134.9563761,0.706568199,45.04362391,0,0.979235423,0,0,0,5,1,0% -2018-05-02 10:00:00,120.3853531,32.22752761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101120783,0.562476467,1.348077822,-1.348077822,1,0.299618805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708524188,135.1149658,0.708524188,44.88503425,0,0.979430779,0,0,0,5,2,0% -2018-05-02 11:00:00,112.8820101,46.07672361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970162743,0.804190536,2.165849307,-2.165849307,1,0.159771644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653419873,130.7999446,0.653419873,49.20005535,0,0.973479524,0,0,0,5,3,0% -2018-05-02 12:00:00,103.5470308,57.71693825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807236618,1.007350607,4.055282568,-4.055282568,1,0,#DIV/0!,0,0,0.140406422,1,0.241768515,0,0.933085009,0.971846973,0.724496596,1,0,0,0.022521145,0.312029739,0.938119204,0.662615799,0.961238037,0.922476074,0,0,0,0,0,0,-0.545009765,123.025331,0.545009765,56.97466903,0,0.958258525,0,0,0,5,4,0% -2018-05-02 13:00:00,93.01344018,67.73700295,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62339078,1.182233727,18.98106241,-18.98106241,1,0,#DIV/0!,0,0,0.730878888,1,0.052635427,0,0.95626419,0.995026153,0.724496596,1,0,0,0.092771183,0.312029739,0.770813369,0.495309965,0.961238037,0.922476074,0,0,0,0,0,0,-0.390680675,112.9968596,0.390680675,67.00314041,0,0.922018241,0,0,0,5,5,0% -2018-05-02 14:00:00,81.62518884,76.79872553,75.17992212,295.7610987,32.10287929,31.70159704,0,31.70159704,31.13485903,0.566738009,78.0909218,58.89465902,19.19626278,0.968020258,18.22824252,1.424628298,1.340390622,-6.744884202,6.744884202,0.31640318,0.31640318,0.427014,0.344751601,11.08839655,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.92801077,0.701327381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.249771361,10.65858853,30.17778214,11.35991591,0,58.89465902,-0.19912916,101.4860393,0.19912916,78.51396072,0,0.798906689,30.17778214,58.41125295,68.40677896,5,6,127% -2018-05-02 15:00:00,69.98497496,85.56802114,280.9775524,625.0047159,67.05934253,74.68809173,7.532708326,67.15538341,65.03725593,2.118127475,70.14834722,0,70.14834722,2.0220866,68.12626062,1.22146824,1.493443703,-2.644521408,2.644521408,0.982393485,0.982393485,0.238664413,2.089735107,67.21306445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.51628421,1.464994858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514005971,64.60775412,64.03029018,66.07274898,7.532708326,0,0.012052242,89.30944066,-0.012052242,90.69055934,0,0,64.03029018,66.07274898,107.2735829,5,7,68% -2018-05-02 16:00:00,58.16385376,94.81345847,491.9154117,767.6537204,86.98432042,266.1185064,178.048818,88.06968838,84.36142222,3.708266159,121.893485,0,121.893485,2.622898199,119.2705868,1.015150754,1.654807025,-1.461876169,1.461876169,0.780149238,0.780149238,0.176827801,3.03716256,97.68558811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.09140788,1.900280816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.200413936,93.89910295,83.29182182,95.79938376,178.048818,0,0.231938976,76.5887457,-0.231938976,103.4112543,0.834426055,0,231.8603947,95.79938376,294.5591754,5,8,27% -2018-05-02 17:00:00,46.51906406,105.6663382,678.3138664,839.5010857,100.6421019,476.2939678,373.5731802,102.7207877,97.60737122,5.113416446,167.4997809,0,167.4997809,3.034730703,164.4650502,0.811910833,1.84422551,-0.856689302,0.856689302,0.676656189,0.676656189,0.148370993,3.705340231,119.1764789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82391789,2.198652064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684506384,114.5569646,96.50842427,116.7556166,373.5731802,0,0.444994279,63.57702728,-0.444994279,116.4229727,0.937639005,0,446.7852092,116.7556166,523.1994251,5,9,17% -2018-05-02 18:00:00,35.60161281,120.2006539,824.3334948,878.3924134,110.1263486,672.2059112,559.1861042,113.019807,106.8056329,6.214174084,203.1899153,0,203.1899153,3.320715734,199.8691996,0.621365363,2.097897173,-0.458294511,0.458294511,0.608526667,0.608526667,0.133594412,4.106483556,132.0786271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6656369,2.405847245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.975133358,126.9590002,105.6407702,129.3648475,559.1861042,0,0.636601701,50.4611189,-0.636601701,129.5388811,0.971457954,0,648.866559,129.3648475,733.5332644,5,10,13% -2018-05-02 19:00:00,26.63699944,142.4332749,918.9980594,898.4322588,115.9209941,832.4190142,713.0656702,119.353344,112.4255484,6.927795559,226.317165,0,226.317165,3.495445675,222.8217193,0.464903343,2.485929612,-0.151382183,0.151382183,0.556041568,0.556041568,0.126138454,4.240100448,136.3762056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0677135,2.532438493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.07193834,131.0899962,111.1396518,133.6224347,713.0656702,0,0.793677724,37.46945887,-0.793677724,142.5305411,0.987002138,0,814.9369925,133.6224347,902.3902036,5,11,11% -2018-05-02 20:00:00,22.33935048,176.235756,955.4680878,905.316205,118.0968676,941.5151196,819.7765863,121.7385333,114.5358113,7.202722037,235.2253562,0,235.2253562,3.561056289,231.6642999,0.389895219,3.075894202,0.114892736,-0.114892736,0.510505875,0.510505875,0.123601059,4.112810946,132.2821377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0961784,2.579973159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97971753,127.1546224,113.0758959,129.7345955,819.7765863,0,0.905514097,25.10738742,-0.905514097,154.8926126,0.994782748,0,928.5755012,129.7345955,1013.484199,5,12,9% -2018-05-02 21:00:00,25.28048183,211.8113203,931.1544912,900.7739062,116.649432,988.9445414,868.7930843,120.1514571,113.1320212,7.019435876,229.2865977,0,229.2865977,3.517410766,225.7691869,0.441227644,3.696804933,0.371203077,-0.371203077,0.466674225,0.466674225,0.125273983,3.744771251,120.444716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.746802,2.548352126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.713074024,115.7760424,111.459876,118.3243945,868.7930843,0,0.964496283,15.31326899,-0.964496283,164.686731,0.998159468,0,978.6539192,118.3243945,1056.094869,5,13,8% -2018-05-02 22:00:00,33.57812553,236.2373754,847.8103788,883.6832066,111.5852197,968.7973437,854.1856772,114.6116664,108.2205137,6.391152752,208.926148,0,208.926148,3.364706081,205.5614419,0.586048847,4.123120016,0.644788942,-0.644788942,0.419888286,0.419888286,0.131615775,3.17154653,102.0078385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0256741,2.437718101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297774664,98.05381443,106.3234488,100.4915325,854.1856772,0,0.966619792,14.84559752,-0.966619792,165.1544025,0.998273354,0,959.0342495,100.4915325,1024.803948,5,14,7% -2018-05-02 23:00:00,44.2309407,251.9217197,711.4645376,849.3636962,102.8665521,879.547678,774.4196117,105.1280663,99.76474605,5.363320208,175.6046203,0,175.6046203,3.101806084,172.5028142,0.771975546,4.396863467,0.972961232,-0.972961232,0.36376752,0.36376752,0.14458423,2.444369134,78.6193138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.89766864,2.247247949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770937116,75.57187486,97.66860576,77.81912281,774.4196117,0,0.911764436,24.24966621,-0.911764436,155.7503338,0.995161274,0,868.3410132,77.81912281,919.2720727,5,15,6% -2018-05-02 00:00:00,55.77644595,263.3076486,532.2791564,786.1183649,90.1478403,723.2537144,631.811619,91.44209542,87.4295503,4.012545116,131.775534,0,131.775534,2.718289995,129.057244,0.973482627,4.595585415,1.430678537,-1.430678537,0.285493251,0.285493251,0.169361958,1.631113685,52.46222303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.0406093,1.969391848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181736312,50.42868428,85.22234561,52.39807613,631.811619,0,0.803710544,36.51409144,-0.803710544,143.4859086,0.987788548,0,709.3186273,52.39807613,743.6121202,5,16,5% -2018-05-02 01:00:00,67.57943085,272.7750674,324.9250296,663.48851,71.86901025,503.3634324,431.2121158,72.15131655,69.70189442,2.449422122,80.9489511,0,80.9489511,2.167115827,78.78183528,1.179483575,4.760823044,2.234739107,-2.234739107,0.147990795,0.147990795,0.221186439,0.824092585,26.50565034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.00011216,1.57006804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.597052273,25.4782393,67.59716443,27.04830734,431.2121158,0,0.649916478,49.46469501,-0.649916478,130.535305,0.973067038,0,487.1954605,27.04830734,504.8980367,5,17,4% -2018-05-02 02:00:00,79.26836744,281.5829997,113.9308967,389.0599408,41.48440303,220.5440606,179.4517062,41.09235445,40.23349522,0.858859224,28.87477277,0,28.87477277,1.250907813,27.62386495,1.383494004,4.914550462,4.494856357,-4.494856357,0,0,0.36411899,0.312726953,10.05837381,0.192579494,1,0.218911264,0,0.936310955,0.975072918,0.724496596,1,38.93025822,0.906278452,0.030191239,0.312029739,0.917951949,0.642448545,0.961238037,0.922476074,0.217503113,9.66849149,39.14776134,10.57476994,144.8929874,0,0.461244367,62.53256657,-0.461244367,117.4674334,0.941597592,0,175.5786494,10.57476994,182.4996248,5,18,4% -2018-05-02 03:00:00,90.1227182,290.5447119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572938163,5.070961847,-354.7879087,354.7879087,1,0,#DIV/0!,0,0,1,0.983389383,0,0.002818578,0.961238037,1,0.716535078,0.992038483,0,0,0.115824807,0.302982367,0.724496596,0.448993192,0.962661598,0.923899635,0,0,0,0,0,0,0.257887476,75.05525069,-0.257887476,104.9447493,0.856116991,0,0,0,0,5,19,0% -2018-05-02 04:00:00,101.4030124,300.3327551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769816438,5.241795428,-3.164894612,3.164894612,1,0.928617456,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.028225926,88.38255877,-0.028225926,91.61744123,0,0,0,0,0,5,20,0% -2018-05-02 05:00:00,110.9833651,311.6039001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.937025137,5.438514018,-1.239963349,1.239963349,1,0.742199911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184634818,100.6398422,0.184634818,79.36015776,0,0.779195173,0,0,0,5,21,0% -2018-05-02 06:00:00,118.8669928,324.9685922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074620396,5.671771899,-0.47044935,0.47044935,1,0.610605267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.375982391,112.0850436,0.375982391,67.91495638,0,0.917015049,0,0,0,5,22,0% -2018-05-02 07:00:00,124.2809615,340.7074944,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169111976,5.946467563,0.018114113,-0.018114113,1,0.527055994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532772859,122.1929979,0.532772859,57.80700207,0,0.956151376,0,0,0,5,23,0% -2018-05-03 08:00:00,126.4435585,358.2391087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206856414,6.252451957,0.423845189,-0.423845189,1,0.457671894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644319011,130.1146364,0.644319011,49.88536358,0,0.972398689,0,0,0,5,0,0% -2018-05-03 09:00:00,124.9607645,15.95027396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180976776,0.278384797,0.839664475,-0.839664475,1,0.386562608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703018091,134.6696502,0.703018091,45.33034978,0,0.978878075,0,0,0,5,1,0% -2018-05-03 10:00:00,120.1082545,32.10518285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0962845,0.560341148,1.360885417,-1.360885417,1,0.297428577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704869356,134.8189905,0.704869356,45.18100952,0,0.979064869,0,0,0,5,2,0% -2018-05-03 11:00:00,112.6283544,45.91047679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965735616,0.801288981,2.190067119,-2.190067119,1,0.155630155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64974623,130.5224714,0.64974623,49.47752856,0,0.973046879,0,0,0,5,3,0% -2018-05-03 12:00:00,103.316351,57.52591261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803210497,1.00401658,4.125177696,-4.125177696,1,0,#DIV/0!,0,0,0.149148517,1,0.237826064,0,0.933649454,0.972411417,0.724496596,1,0,0,0.023831063,0.312029739,0.934642244,0.65913884,0.961238037,0.922476074,0,0,0,0,0,0,-0.541404599,122.7793072,0.541404599,57.22069275,0,0.957647626,0,0,0,5,4,0% -2018-05-03 13:00:00,92.8017707,67.52980157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61969645,1.178617381,20.41455603,-20.41455603,1,0,#DIV/0!,0,0,0.74753474,1,0.048945533,0,0.956634461,0.995396424,0.724496596,1,0,0,0.094326606,0.312029739,0.767554015,0.49205061,0.961238037,0.922476074,0,0,0,0,0,0,-0.387226642,112.7820427,0.387226642,67.21795733,0,0.920876653,0,0,0,5,5,0% -2018-05-03 14:00:00,81.42939505,76.57654561,78.14114664,302.9869594,32.98759038,32.58195379,0,32.58195379,31.99289282,0.58906097,79.30660694,59.36568369,19.94092325,0.994697561,18.94622569,1.421211052,1.336512851,-6.591552207,6.591552207,0.342624495,0.342624495,0.422153907,0.36529917,11.74927703,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.75278549,0.720654997,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264658005,11.29385199,31.01744349,12.01450698,0,59.36568369,-0.195934781,101.2993361,0.195934781,78.70066391,0,0.794813046,31.01744349,59.19912689,69.76208806,5,6,125% -2018-05-03 15:00:00,69.79499626,85.32725821,284.2485491,627.2215587,67.61866804,77.12733138,9.404830041,67.72250134,65.57971571,2.14278563,70.95830397,0,70.95830397,2.038952328,68.91935164,1.218152486,1.489241597,-2.62054256,2.62054256,0.978292861,0.978292861,0.23788571,2.107336839,67.77919667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.03771719,1.477214021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526758366,65.15194195,64.56447555,66.62915597,9.404830041,0,0.01499443,89.14085022,-0.01499443,90.85914978,0,0,64.56447555,66.62915597,108.1719256,5,7,68% -2018-05-03 16:00:00,57.97376018,94.54720919,494.9281254,768.3607914,87.46056562,268.7863816,180.2320975,88.55428414,84.82330687,3.730977268,122.6383128,0,122.6383128,2.637258749,120.0010541,1.011832995,1.650160099,-1.454212748,1.454212748,0.778838716,0.778838716,0.17671367,3.051644427,98.15137474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.53538897,1.910684986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.210905999,94.34683476,83.74629497,96.25751975,180.2320975,0,0.234567015,76.43389881,-0.234567015,103.5661012,0.8368413,0,234.5719578,96.25751975,297.5705793,5,8,27% -2018-05-03 17:00:00,46.3189803,105.3668112,681.0129908,839.689894,101.0871468,478.7569428,375.5841829,103.17276,98.03899637,5.133763585,168.1676346,0,168.1676346,3.048150448,165.1194841,0.808418712,1.838997778,-0.853899649,0.853899649,0.67617913,0.67617913,0.148436444,3.718107477,119.5871174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.2388124,2.208374624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69375621,114.9516859,96.93256861,117.1600605,375.5841829,0,0.447289155,63.43010851,-0.447289155,116.5698915,0.938215488,0,449.3114659,117.1600605,525.9903823,5,9,17% -2018-05-03 18:00:00,35.37684668,119.8715956,826.7426705,878.3693434,110.5538461,674.3524117,560.8998365,113.4525752,107.2202397,6.232335468,203.7869385,0,203.7869385,3.33360636,200.4533322,0.617442454,2.092154023,-0.457632404,0.457632404,0.60841344,0.60841344,0.133722197,4.118185522,132.4550025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0641727,2.41518646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.983611392,127.3207866,106.0477841,129.7359731,560.8998365,0,0.638569459,50.31476981,-0.638569459,129.6852302,0.971699982,0,651.0741453,129.7359731,735.9837449,5,10,13% -2018-05-03 19:00:00,26.37036552,142.1514664,921.1731135,898.3137482,116.3364437,834.2440732,714.4714105,119.7726627,112.8284707,6.944192034,226.8570593,0,226.8570593,3.507973014,223.3490863,0.460249703,2.481011126,-0.151951231,0.151951231,0.556138881,0.556138881,0.126291619,4.251198391,136.7331537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4550177,2.541514507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.079978763,131.4331082,111.5349965,133.9746227,714.4714105,0,0.795347296,37.31192908,-0.795347296,142.6880709,0.987134381,0,816.81429,133.9746227,904.4980011,5,11,11% -2018-05-03 20:00:00,22.04487178,176.2597898,957.4844089,905.1562832,118.5039267,943.0663868,820.9178688,122.148518,114.9305961,7.217921918,235.7265109,0,235.7265109,3.573330623,232.1531803,0.384755596,3.076313672,0.11337969,-0.11337969,0.510764621,0.510764621,0.123765907,4.123709092,132.6326595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4756606,2.588865873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.987613199,127.4915573,113.4632738,130.0804232,820.9178688,0,0.90693495,24.91483759,-0.90693495,155.0851624,0.994869254,0,930.1692218,130.0804232,1015.304257,5,12,9% -2018-05-03 21:00:00,25.02700547,212.1637509,933.0993266,900.6072494,117.0514501,990.3038645,869.7478506,120.5560139,113.5219171,7.034096867,229.7702679,0,229.7702679,3.529533096,226.2407348,0.436803647,3.702956006,0.368727727,-0.368727727,0.467097535,0.467097535,0.125443719,3.755833527,120.8005168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1215847,2.557134713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721088605,116.1180516,111.8426733,118.6751863,869.7478506,0,0.965734899,15.04220839,-0.965734899,164.9577916,0.998225957,0,980.047554,118.6751863,1057.71809,5,13,8% -2018-05-03 22:00:00,33.38098596,236.6333491,849.775551,883.5483504,111.9857316,970.0732753,855.0583596,115.0149156,108.6089486,6.40596705,209.4147037,0,209.4147037,3.37678299,206.0379207,0.582608113,4.130031062,0.6410532,-0.6410532,0.420527136,0.420527136,0.131782718,3.183071504,102.3785213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3990525,2.446467781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306124469,98.41012883,106.705177,100.8565966,855.0583596,0,0.967755029,14.58957258,-0.967755029,165.4104274,0.998334032,0,960.3390371,100.8565966,1026.347662,5,14,7% -2018-05-03 23:00:00,44.06702143,252.272194,713.5385214,849.333103,103.2699796,880.8758877,775.3409243,105.5349634,100.1560086,5.378954774,176.1196465,0,176.1196465,3.113970909,173.0056756,0.769114616,4.402980397,0.967190879,-0.967190879,0.364754308,0.364754308,0.144729368,2.456531078,79.01048373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.27376513,2.256061323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779748403,75.94788227,98.05351353,78.20394359,775.3409243,0,0.912882027,24.09328504,-0.912882027,155.906715,0.99522841,0,869.6948288,78.20394359,920.8777459,5,15,6% -2018-05-03 00:00:00,55.62681691,263.6137557,534.5360776,786.3772836,90.56259893,724.8140584,632.9526973,91.86136118,87.83180244,4.029558742,132.3352572,0,132.3352572,2.730796498,129.6044607,0.970871107,4.600927991,1.420856885,-1.420856885,0.287172852,0.287172852,0.1694228,1.643826346,52.8711059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.42726935,1.978452767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190946592,50.82171804,85.61821594,52.8001708,632.9526973,0,0.804896976,36.39969313,-0.804896976,143.6003069,0.987880249,0,710.8996839,52.8001708,745.4563397,5,16,5% -2018-05-03 01:00:00,67.43188117,273.0497589,327.3958505,664.6297816,72.32319611,505.4519593,432.8415262,72.61043312,70.14238491,2.468048214,81.56172562,0,81.56172562,2.180811207,79.38091442,1.176908347,4.765617315,2.214026439,-2.214026439,0.15153287,0.15153287,0.220904437,0.836577085,26.90719477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.42352837,1.579990296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.60609725,25.86421908,68.02962562,27.44420937,432.8415262,0,0.651252078,49.36393018,-0.651252078,130.6360698,0.973224813,0,489.2817391,27.44420937,507.2434252,5,17,4% -2018-05-03 02:00:00,79.11481047,281.8369635,116.4007063,393.367872,42.11648453,223.7703964,182.0464016,41.72399482,40.84651713,0.877477692,29.49266629,0,29.49266629,1.269967402,28.22269889,1.38081393,4.918982968,4.417813637,-4.417813637,0,0,0.361823273,0.31749185,10.21162928,0.183897939,1,0.222605024,0,0.935797285,0.974559248,0.724496596,1,39.51618703,0.92008706,0.028939167,0.312029739,0.921212466,0.645709062,0.961238037,0.922476074,0.221092933,9.815806484,39.73727996,10.73589354,148.5684436,0,0.462789197,62.43276375,-0.462789197,117.5672362,0.941959449,0,179.6827291,10.73589354,186.7091568,5,18,4% -2018-05-03 03:00:00,89.98256512,290.7847194,0.003076372,0.517228902,0.002918981,0.136947342,0.134093187,0.002854154,0.002830963,2.3191E-05,0.00083392,0,0.00083392,8.80181E-05,0.000745902,1.570492031,5.075150769,2488.265213,-2488.265213,0,0,0.948838857,2.20045E-05,0.000707741,0.997652517,1,0.000401886,0,0.961202586,0.999964549,0.724496596,1,0.002721387,6.37688E-05,0.115641332,0.312029739,0.724848321,0.449344917,0.961238037,0.922476074,1.59357E-05,0.000680307,0.002737322,0.000744076,0.000314781,0,0.259253083,74.97425264,-0.259253083,105.0257474,0.857138263,0,0.003007134,0.000744076,0.003494117,5,19,16% -2018-05-03 04:00:00,101.2135389,300.5609428,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766509501,5.245778055,-3.204308782,3.204308782,1,0.921877236,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030384465,88.25883039,-0.030384465,91.74116961,0,0,0,0,0,5,20,0% -2018-05-03 05:00:00,110.7672676,311.8156858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933253523,5.442210377,-1.24550644,1.24550644,1,0.743147835,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.182145608,100.4947604,0.182145608,79.50523959,0,0.775494342,0,0,0,5,21,0% -2018-05-03 06:00:00,118.6206415,325.1491282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070320755,5.674922848,-0.469692243,0.469692243,1,0.610475794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.373170524,111.9112851,0.373170524,68.08871491,0,0.916012997,0,0,0,5,22,0% -2018-05-03 07:00:00,124.0066012,340.8304769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164323485,5.948614013,0.021482972,-0.021482972,1,0.526479885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52966863,121.9830682,0.52966863,58.01693179,0,0.955601357,0,0,0,5,23,0% -2018-05-04 08:00:00,126.1527628,358.2775673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201781072,6.253123186,0.429250455,-0.429250455,1,0.456747539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640972903,129.8644047,0.640972903,50.13559529,0,0.971993582,0,0,0,5,0,0% -2018-05-04 09:00:00,124.6716278,15.89841806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175930388,0.277479741,0.847693504,-0.847693504,1,0.385189563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6994973,134.3866862,0.6994973,45.61331375,0,0.978520096,0,0,0,5,1,0% -2018-05-04 10:00:00,119.8359473,31.98328103,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091531842,0.55821356,1.373631498,-1.373631498,1,0.295248869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701253166,134.5276324,0.701253166,45.47236763,0,0.978699074,0,0,0,5,2,0% -2018-05-04 11:00:00,112.3793945,45.74556501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961390446,0.798410728,2.214283321,-2.214283321,1,0.15148894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64612056,130.2497433,0.64612056,49.75025672,0,0.972615061,0,0,0,5,3,0% -2018-05-04 12:00:00,103.0902647,57.33660304,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799264547,1.000712505,4.195942095,-4.195942095,1,0,#DIV/0!,0,0,0.157820036,1,0.233961079,0,0.93419957,0.972961533,0.724496596,1,0,0,0.025120429,0.312029739,0.931233001,0.655729597,0.961238037,0.922476074,0,0,0,0,0,0,-0.537856096,122.5378129,0.537856096,57.4621871,0,0.957038332,0,0,0,5,4,0% -2018-05-04 13:00:00,92.5946544,67.32444697,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616081589,1.175033267,22.04308641,-22.04308641,1,0,#DIV/0!,0,0,0.764119572,1,0.045334615,0,0.956993675,0.995755638,0.724496596,1,0,0,0.095857151,0.312029739,0.764365739,0.488862335,0.961238037,0.922476074,0,0,0,0,0,0,-0.383836728,112.5715419,0.383836728,67.42845815,0,0.91973628,0,0,0,5,5,0% -2018-05-04 14:00:00,81.23806541,76.35622479,81.05424811,309.9040208,33.84679902,33.43721431,0,33.43721431,32.82619315,0.61102116,80.42514911,59.75200237,20.67314674,1.020605872,19.65254087,1.417871719,1.332667527,-6.448231661,6.448231661,0.367133752,0.367133752,0.417582049,0.385803243,12.40875849,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.55378546,0.73942548,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.279513136,11.92777065,31.8332986,12.66719613,0,59.75200237,-0.19280809,101.1167067,0.19280809,78.88329332,0,0.790674782,31.8332986,59.91159758,71.04424098,5,6,123% -2018-05-04 15:00:00,69.60972547,85.08827385,287.4312923,629.323769,68.16674353,79.52000038,11.24195718,68.2780432,66.11126471,2.166778493,71.7465234,0,71.7465234,2.055478826,69.69104457,1.214918901,1.485070533,-2.597570451,2.597570451,0.974364399,0.974364399,0.237158394,2.124405182,68.32817324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.5486623,1.489187412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.539124322,65.6796391,65.08778662,67.16882651,11.24195718,0,0.017863551,88.97643948,-0.017863551,91.02356052,0,0,65.08778662,67.16882651,109.0484402,5,7,68% -2018-05-04 16:00:00,57.78861606,94.28248563,497.8501028,769.0177987,87.92947687,271.3810636,182.3499805,89.03108308,85.27807872,3.753004368,123.3609195,0,123.3609195,2.651398153,120.7095213,1.00860162,1.645539801,-1.446845927,1.446845927,0.777578915,0.777578915,0.176618376,3.065688779,98.60308936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97253297,1.920928936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221081084,94.78104005,84.19361405,96.70196898,182.3499805,0,0.237120624,76.28334064,-0.237120624,103.7166594,0.839136857,0,237.2102037,96.70196898,300.4997083,5,8,27% -2018-05-04 17:00:00,46.12417421,105.0681052,683.6249626,839.8507339,101.526307,481.1403813,377.5220133,103.618368,98.46491427,5.153453732,168.8141797,0,168.8141797,3.061392749,165.7527869,0.805018705,1.833784375,-0.85123438,0.85123438,0.675723342,0.675723342,0.148511702,3.730493531,119.9854954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.64822089,2.217968625,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.702729864,115.3346221,97.35095075,117.5525907,377.5220133,0,0.449510845,63.28769537,-0.449510845,116.7123046,0.938767979,0,451.7565281,117.5525907,528.6923476,5,9,17% -2018-05-04 18:00:00,35.15768842,119.5414647,829.0711923,878.3279304,110.9763126,676.4205128,562.5406566,113.8798562,107.6299673,6.249888849,204.3642545,0,204.3642545,3.346345285,201.0179092,0.61361742,2.086392152,-0.457029606,0.457029606,0.608310355,0.608310355,0.133856192,4.129554305,132.8206617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4580185,2.424415768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.991848036,127.6722721,106.4498666,130.0966879,562.5406566,0,0.640467685,50.17329753,-0.640467685,129.8267025,0.971932049,0,653.2011595,130.0966879,738.3468397,5,10,13% -2018-05-04 19:00:00,26.10922764,141.8647842,923.2759016,898.1817875,116.7475381,835.9959928,715.80878,120.1872128,113.2271691,6.96004374,227.3793007,0,227.3793007,3.520369027,223.8589317,0.455691987,2.476007577,-0.152547154,0.152547154,0.556240789,0.556240789,0.126449242,4.262009269,137.0808686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8382617,2.550495376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.087811207,131.7673451,111.9260729,134.3178404,715.80878,0,0.796953122,37.15987587,-0.796953122,142.8401241,0.987261053,0,818.6162026,134.3178404,906.5245428,5,11,11% -2018-05-04 20:00:00,21.75487263,176.2787887,959.4379889,904.9856026,118.9072383,944.55243,821.9980348,122.5543952,115.3217464,7.232648829,236.2123404,0,236.2123404,3.585491957,232.6268484,0.379694156,3.076645264,0.111860528,-0.111860528,0.511024413,0.511024413,0.123934261,4.134364629,132.9753782,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8516491,2.597676717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9953331,127.8209915,113.8469822,130.4186683,821.9980348,0,0.908299571,24.72858751,-0.908299571,155.2714125,0.994952082,0,931.6956386,130.4186683,1017.052049,5,12,9% -2018-05-04 21:00:00,24.77725814,212.5133226,934.9913601,900.4312736,117.4502814,991.6074916,870.6504097,120.9570818,113.908722,7.048359814,230.2410395,0,230.2410395,3.541559328,226.6994802,0.432444734,3.709057184,0.366263976,-0.366263976,0.467518861,0.467518861,0.125616435,3.766694538,121.1498443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4933963,2.565847677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728957371,116.4538385,112.2223537,119.0196861,870.6504097,0,0.966926,14.77696701,-0.966926,165.223033,0.998289735,0,981.3837203,119.0196861,1059.279724,5,13,8% -2018-05-04 22:00:00,33.18666867,237.0248805,851.6975659,883.4046414,112.3835578,971.3036515,855.8884166,115.4152349,108.9947789,6.42045601,209.8927144,0,209.8927144,3.388778919,206.5039355,0.579216636,4.136864573,0.63734999,-0.63734999,0.421160422,0.421160422,0.131952423,3.194431804,102.7439076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7699273,2.455158791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.314354968,98.76135204,107.0842823,101.2165108,855.8884166,0,0.968852071,14.33791465,-0.968852071,165.6620854,0.998392534,0,961.5968876,101.2165108,1027.84107,5,14,7% -2018-05-04 23:00:00,43.90505692,252.6177102,715.5780463,849.292835,103.6711287,882.1681561,776.2287648,105.9393912,100.5450616,5.394329575,176.626249,0,176.626249,3.126067035,173.500182,0.766287802,4.409010792,0.961487151,-0.961487151,0.365729703,0.365729703,0.144877458,2.46855942,79.39735656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64773767,2.264824926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.788462896,76.31975915,98.43620057,78.58458408,776.2287648,0,0.913970698,23.94002721,-0.913970698,156.0599728,0.995293651,0,871.0117619,78.58458408,922.4438005,5,15,6% -2018-05-04 00:00:00,55.47856036,263.9149856,536.7658068,786.6226165,90.97530191,726.345881,634.0674527,92.27842828,88.2320609,4.046367382,132.8883253,0,132.8883253,2.743241016,130.1450843,0.968283543,4.606185445,1.411178245,-1.411178245,0.288827997,0.288827997,0.169487886,1.656433237,53.27658687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.812013,1.987468778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.200080242,51.21148177,86.01209324,53.19895055,634.0674527,0,0.806063085,36.28695163,-0.806063085,143.7130484,0.987970116,0,712.4517878,53.19895055,747.2694369,5,16,5% -2018-05-04 01:00:00,67.28537645,273.3196985,329.8455202,665.7419085,72.77494884,507.5133632,434.4463327,73.06703048,70.58051562,2.486514859,82.16929841,0,82.16929841,2.194433218,79.97486519,1.174351358,4.770328649,2.19371866,-2.19371866,0.155005704,0.155005704,0.220633431,0.848994875,27.30659358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.84467627,1.589859397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.615093897,26.24813641,68.45977017,27.83799581,434.4463327,0,0.65257471,49.26399359,-0.65257471,130.7360064,0.97338042,0,491.3413241,27.83799581,509.5607356,5,17,4% -2018-05-04 02:00:00,78.96215332,282.0861865,118.8618623,397.5784856,42.74253233,226.9561629,184.6064447,42.3497182,41.45368728,0.896030925,30.1082797,0,30.1082797,1.288845053,28.81943464,1.37814956,4.92333273,4.343403908,-4.343403908,0,0,0.359598373,0.322211263,10.36342182,0.175333992,1,0.226290783,0,0.93528178,0.974043743,0.724496596,1,40.09597344,0.933763853,0.02769472,0.312029739,0.924465351,0.648961946,0.961238037,0.922476074,0.2246673,9.961715245,40.32064074,10.8954791,152.2386599,0,0.464327048,62.33332154,-0.464327048,117.6666785,0.942317279,0,183.7777605,10.8954791,190.9086336,5,18,4% -2018-05-04 03:00:00,89.84250683,291.0198502,0.035452415,0.761353658,0.033359628,0.231052685,0.198431718,0.032620967,0.032353712,0.000267255,0.009601764,0,0.009601764,0.001005916,0.008595848,1.568047552,5.079254575,274.4788135,-274.4788135,0,0,0.940969132,0.000251479,0.008088428,0.978906731,1,0.003643252,0,0.960915228,0.999677191,0.724496596,1,0.031115628,0.000728783,0.114165968,0.312029739,0.727686496,0.452183092,0.961238037,0.922476074,0.000181536,0.007774905,0.031297164,0.008503687,0.004185574,0,0.260630149,74.89254374,-0.260630149,105.1074563,0.858157268,0,0.034889045,0.008503687,0.040454538,5,19,16% -2018-05-04 04:00:00,101.0253462,300.7839878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763224919,5.249670925,-3.244958288,3.244958288,1,0.914925761,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032539743,88.13528087,-0.032539743,91.86471913,0,0,0,0,0,5,20,0% -2018-05-04 05:00:00,110.5529591,312.0220241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929513134,5.445811659,-1.251223997,1.251223997,1,0.744125595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.179661194,100.3500259,0.179661194,79.64997406,0,0.771698387,0,0,0,5,21,0% -2018-05-04 06:00:00,118.3768417,325.3241321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066065645,5.677977242,-0.469014996,0.469014996,1,0.610359978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370367356,111.7382748,0.370367356,68.26172515,0,0.914998901,0,0,0,5,22,0% -2018-05-04 07:00:00,123.7357279,340.9485372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159595855,5.950674554,0.024788687,-0.024788687,1,0.525914575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526579104,121.7746087,0.526579104,58.22539127,0,0.955047505,0,0,0,5,23,0% -2018-05-05 08:00:00,125.8662988,358.312723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196781331,6.253736769,0.43459275,-0.43459275,1,0.455833952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637649194,129.6167483,0.637649194,50.38325169,0,0.971586978,0,0,0,5,0,0% -2018-05-05 09:00:00,124.3872878,15.84535741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17096772,0.276553658,0.855653772,-0.855653772,1,0.383828277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696007765,134.1075775,0.696007765,45.89242245,0,0.978161721,0,0,0,5,1,0% -2018-05-05 10:00:00,119.5685171,31.86181779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086864306,0.556093626,1.386305108,-1.386305108,1,0.293081554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69767764,134.2409764,0.69767764,45.75902359,0,0.978333664,0,0,0,5,2,0% -2018-05-05 11:00:00,112.135215,45.58199509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957128708,0.795555894,2.238475756,-2.238475756,1,0.14735179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642544866,129.9818466,0.642544866,50.01815344,0,0.972184422,0,0,0,5,3,0% -2018-05-05 12:00:00,102.8688518,57.14903424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795400162,0.997438812,4.267523158,-4.267523158,1,0,#DIV/0!,0,0,0.166413639,1,0.230174997,0,0.934735338,0.973497301,0.724496596,1,0,0,0.026388515,0.312029739,0.927892771,0.652389367,0.961238037,0.922476074,0,0,0,0,0,0,-0.534366145,122.3009351,0.534366145,57.69906486,0,0.956431198,0,0,0,5,4,0% -2018-05-05 13:00:00,92.39216415,67.12098268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612547468,1.171482145,23.9073092,-23.9073092,1,0,#DIV/0!,0,0,0.780616934,1,0.041803843,0,0.957341915,0.996103878,0.724496596,1,0,0,0.09736187,0.312029739,0.76124959,0.485746186,0.961238037,0.922476074,0,0,0,0,0,0,-0.380512615,112.3654388,0.380512615,67.63456116,0,0.918598312,0,0,0,5,5,0% -2018-05-05 14:00:00,81.05127395,76.13782609,83.91527674,316.5177472,34.68077627,34.26761171,0,34.26761171,33.63502291,0.632588802,81.45142738,60.05944364,21.39198375,1.045753363,20.34623038,1.414611593,1.328855751,-6.314124057,6.314124057,0.390067503,0.390067503,0.413283226,0.406212074,13.06517666,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.33126339,0.757644752,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.294299265,12.55874476,32.62556265,13.31638951,0,60.05944364,-0.189750635,100.9382319,0.189750635,79.06176807,0,0.786496271,32.62556265,60.55291797,72.25623641,5,6,121% -2018-05-05 15:00:00,69.42922104,84.85115376,290.5247403,631.31392,68.70362411,81.86406983,13.04201527,68.82205457,66.63195635,2.190098211,72.51275462,0,72.51275462,2.071667756,70.44108687,1.211768504,1.480932007,-2.575571776,2.575571776,0.970602404,0.970602404,0.236481148,2.140940101,68.85999307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.04917092,1.500916237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551103815,66.19084456,65.60027473,67.69176079,13.04201527,0,0.020658526,88.81626942,-0.020658526,91.18373058,0,0,65.60027473,67.69176079,109.9031783,5,7,68% -2018-05-05 16:00:00,57.6084745,94.01940325,500.6808736,769.6254686,88.39104282,273.9016426,184.4015719,89.50007066,85.72572675,3.774343913,124.0611905,0,124.0611905,2.665316069,121.3958745,1.005457557,1.640948148,-1.439770832,1.439770832,0.776369003,0.776369003,0.176541681,3.079295443,99.04072645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40282929,1.931012419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.230939066,95.20171347,84.63376835,97.13272588,184.4015719,0,0.239599103,76.13711969,-0.239599103,103.8628803,0.841318084,0,239.7741455,97.13272588,303.3455719,5,8,27% -2018-05-05 17:00:00,45.93469973,104.7703757,686.1497046,839.9839156,101.9595775,483.443926,379.3863197,104.0576064,98.88512006,5.172486304,169.4393973,0,169.4393973,3.074457453,166.3649399,0.801711751,1.828588014,-0.848692522,0.848692522,0.675288659,0.675288659,0.148596694,3.742499139,120.3716371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05213868,2.227433959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711427886,115.7057961,97.76356657,117.9332301,379.3863197,0,0.451659029,63.14982455,-0.451659029,116.8501754,0.939297021,0,454.1200065,117.9332301,531.3049469,5,9,17% -2018-05-05 18:00:00,34.94420581,119.2104495,831.3192985,878.2683692,111.3937578,678.4102873,564.1086262,114.3016611,108.034825,6.266836023,204.9219214,0,204.9219214,3.358932798,201.5629886,0.609891446,2.080614847,-0.456485935,0.456485935,0.608217382,0.608217382,0.133996357,4.140591471,133.1756549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.8471831,2.433535378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999844425,128.0135051,106.8470276,130.4470404,564.1086262,0,0.642296416,50.03672859,-0.642296416,129.9632714,0.972154322,0,655.2476666,130.4470404,740.6226457,5,10,13% -2018-05-05 19:00:00,25.85368195,141.5733082,925.3068952,898.036537,117.1542994,837.6752024,717.0781831,120.5970192,113.621665,6.975354227,227.8840039,0,227.8840039,3.532634379,224.3513696,0.451231874,2.470920361,-0.153169911,0.153169911,0.556347287,0.556347287,0.12661129,4.272535107,137.4194158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2174662,2.559381582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.095437141,132.0927695,112.3129033,134.652151,717.0781831,0,0.798495555,37.01332235,-0.798495555,142.9866777,0.987382244,0,820.3431688,134.652151,908.4703086,5,11,11% -2018-05-05 20:00:00,21.4694367,176.2925138,961.3294363,904.8043164,119.3068326,945.9739513,823.0177525,122.9561988,115.7092914,7.246907358,236.6829929,0,236.6829929,3.597541199,233.0854517,0.374712359,3.076884812,0.110335323,-0.110335323,0.511285238,0.511285238,0.124106085,4.144779626,133.3103604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2241721,2.606406352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.00287873,128.1429891,114.2270509,130.7493955,823.0177525,0,0.909608561,24.54868647,-0.909608561,155.4513135,0.9950313,0,933.1554752,130.7493955,1018.72834,5,12,9% -2018-05-05 21:00:00,24.53126603,212.8597021,936.8312334,900.2461367,117.8459589,992.8562961,871.5015981,121.354698,114.2924684,7.062229557,230.6990693,0,230.6990693,3.553490466,227.1455788,0.428151362,3.715102647,0.363811985,-0.363811985,0.467938176,0.467938176,0.12579209,3.777355972,121.4927526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.862268,2.574491746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681543,116.783455,112.5989495,119.3579468,871.5015981,0,0.968070356,14.51767486,-0.968070356,165.4823251,0.998350861,0,982.6633207,119.3579468,1060.78071,5,13,8% -2018-05-05 22:00:00,32.99516432,237.411704,853.5769925,883.2522491,112.7787295,972.4894019,856.6767433,115.8126586,109.3780347,6.434623922,210.360319,0,210.360319,3.400694803,206.9596242,0.575874255,4.143615918,0.633679579,-0.633679579,0.421788099,0.421788099,0.132124847,3.205628345,103.1040269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1383273,2.463791808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322466824,99.10751236,107.4607941,101.5713042,856.6767433,0,0.96991176,14.09064944,-0.96991176,165.9093506,0.998448919,0,962.8087622,101.5713042,1029.285149,5,14,7% -2018-05-05 23:00:00,43.7450349,252.958089,717.5835076,849.2430804,104.070023,883.4253461,777.0839707,106.3413754,100.9319278,5.409447589,177.1245245,0,177.1245245,3.13809517,173.9864293,0.76349489,4.414951523,0.955850364,-0.955850364,0.36669365,0.36669365,0.145028449,2.480453982,79.77992658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.01960815,2.273539269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.797080466,76.6875,98.81668861,78.96103927,777.0839707,0,0.915031266,23.78983242,-0.915031266,156.2101676,0.995357058,0,872.2927039,78.96103927,923.9711248,5,15,6% -2018-05-05 00:00:00,55.33167432,264.2112085,538.9684746,786.8545924,91.38596003,727.8498615,635.1565533,92.69330818,88.63033616,4.062972023,133.4347705,0,133.4347705,2.755623873,130.6791466,0.965719898,4.611355509,1.401642497,-1.401642497,0.290458706,0.290458706,0.169557153,1.668932828,53.67861666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.19485033,1.996440116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.209136152,51.5979281,86.40398649,53.59436821,635.1565533,0,0.807209565,36.17581253,-0.807209565,143.8241875,0.988058217,0,713.9756378,53.59436821,749.0520799,5,16,5% -2018-05-05 01:00:00,67.13992915,273.5847836,332.2738187,666.8253093,73.22426483,509.5480745,436.0269711,73.52110348,71.01628308,2.504820398,82.77161603,0,82.77161603,2.207981754,80.56363427,1.171812823,4.774955257,2.173811027,-2.173811027,0.15841011,0.15841011,0.220373261,0.861342655,27.70374064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.26355253,1.599675264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.624039822,26.62988926,68.88759235,28.22956453,436.0269711,0,0.653884856,49.16485221,-0.653884856,130.8351478,0.973533938,0,493.3746465,28.22956453,511.8503319,5,17,4% -2018-05-05 02:00:00,78.81042564,282.3305836,121.3134308,401.6930221,43.36254926,230.1014679,187.1319476,42.9695203,42.05500841,0.914511885,30.72138667,0,30.72138667,1.307540851,29.41384582,1.375501412,4.927598263,4.271522251,-4.271522251,0,0,0.35744228,0.326885213,10.5137521,0.166888577,1,0.229967023,0,0.934764679,0.973526642,0.724496596,1,40.66962027,0.947308896,0.026458318,0.312029739,0.927709271,0.652205867,0.961238037,0.922476074,0.228226103,10.10621843,40.89784637,11.05352733,155.9017631,0,0.465858099,62.23422912,-0.465858099,117.7657709,0.94267118,0,187.8619454,11.05352733,195.0962579,5,18,4% -2018-05-05 03:00:00,89.70226016,291.2500336,0.08412785,1.092477178,0.078450774,0.362974497,0.286255113,0.076719385,0.076085193,0.000634191,0.022763351,0,0.022763351,0.00236558,0.020397771,1.565599786,5.083272032,144.6794567,-144.6794567,0,0,0.932518466,0.000591395,0.019021298,0.960335546,1,0.006911721,0,0.960622894,0.999384858,0.724496596,1,0.073206157,0.001713855,0.112686186,0.312029739,0.730550801,0.455047397,0.961238037,0.922476074,0.000425582,0.018283995,0.073631739,0.01999785,0.011354153,0,0.262023883,74.80981382,-0.262023883,105.1901862,0.8591777,0,0.083386974,0.01999785,0.096475167,5,19,16% -2018-05-05 04:00:00,100.8384969,301.0018357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759963784,5.253473087,-3.286882565,3.286882565,1,0.907756287,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03469125,88.01193891,-0.03469125,91.98806109,0,0,0,0,0,5,20,0% -2018-05-05 05:00:00,110.3405181,312.2228831,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92580534,5.449317311,-1.257118897,1.257118897,1,0.745133682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177182461,100.2056889,0.177182461,79.79431108,0,0.767805025,0,0,0,5,21,0% -2018-05-05 06:00:00,118.1356824,325.4936012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061856622,5.680935035,-0.46842023,0.46842023,1,0.610258267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367574125,111.5660849,0.367574125,68.43391512,0,0.913973015,0,0,0,5,22,0% -2018-05-05 07:00:00,123.4684329,341.061697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154930677,5.952649565,0.028027876,-0.028027876,1,0.52536064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523505829,121.5677108,0.523505829,58.43228923,0,0.95449008,0,0,0,5,23,0% -2018-05-06 08:00:00,125.5842534,358.3445983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191858711,6.254293097,0.439867495,-0.439867495,1,0.454931918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634349672,129.3717675,0.634349672,50.62823251,0,0.971179119,0,0,0,5,0,0% -2018-05-06 09:00:00,124.1078289,15.79109807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166090242,0.275606654,0.863538557,-0.863538557,1,0.382479899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69255143,133.8324176,0.69255143,46.16758241,0,0.977803196,0,0,0,5,1,0% -2018-05-06 10:00:00,119.306048,31.74079363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082283354,0.553981356,1.398895011,-1.398895011,1,0.290928554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694144786,133.9591068,0.694144786,46.04089316,0,0.977968918,0,0,0,5,2,0% -2018-05-06 11:00:00,111.8958976,45.41977816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952951832,0.792724674,2.262621304,-2.262621304,1,0.143222658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639021123,129.7188657,0.639021123,50.28113426,0,0.971755325,0,0,0,5,3,0% -2018-05-06 12:00:00,102.6521889,56.96323471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79161868,0.994195998,4.339862153,-4.339862153,1,0,#DIV/0!,0,0,0.174921881,1,0.226469211,0,0.935256749,0.974018712,0.724496596,1,0,0,0.0276346,0.312029739,0.924622809,0.649119405,0.961238037,0.922476074,0,0,0,0,0,0,-0.53093659,122.0687583,0.53093659,57.93124167,0,0.955826796,0,0,0,5,4,0% -2018-05-06 13:00:00,92.19436924,66.91945566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609095295,1.167964835,26.05988469,-26.05988469,1,0,#DIV/0!,0,0,0.797009918,1,0.038354337,0,0.957679271,0.996441234,0.724496596,1,0,0,0.098839828,0.312029739,0.758206561,0.482703157,0.961238037,0.922476074,0,0,0,0,0,0,-0.37725593,112.1638119,0.37725593,67.83618812,0,0.917463979,0,0,0,5,5,0% -2018-05-06 14:00:00,80.86909,75.92141592,86.72057895,322.8339684,35.48981906,35.07340643,0,35.07340643,34.41967007,0.653736355,82.39028313,60.29372576,22.09655737,1.070148988,21.02640838,1.411431884,1.325078681,-6.188516769,6.188516769,0.411547614,0.411547614,0.409243336,0.426476569,13.71695245,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.08549609,0.775319299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.308980822,13.18525644,33.39447691,13.96057574,0,60.29372576,-0.186763884,100.7639881,0.186763884,79.23601193,0,0.782282286,33.39447691,61.12728937,73.40106526,5,6,120% -2018-05-06 15:00:00,69.25353715,84.61598738,293.5279461,633.1944993,69.22936479,84.15762793,14.80304627,69.35458166,67.14184401,2.212737645,73.25676967,0,73.25676967,2.087520778,71.16924889,1.208702242,1.47682758,-2.554514934,2.554514934,0.967001471,0.967001471,0.235852721,2.156941837,69.37466391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.53929433,1.512401697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562697018,66.68556575,66.10199135,68.19796744,14.80304627,0,0.023378356,88.66039684,-0.023378356,91.33960316,0,0,66.10199135,68.19796744,110.7361971,5,7,68% -2018-05-06 16:00:00,57.433384,93.75808222,503.4200461,770.1845165,88.84525575,276.3472975,186.3860611,89.96123644,86.16624349,3.794992953,124.7390308,0,124.7390308,2.679012265,122.0600186,1.002401651,1.636387235,-1.432982669,1.432982669,0.775208159,0.775208159,0.176483349,3.092464524,99.46428936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.82627073,1.940935266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24048002,95.60885824,85.06675075,97.54979351,186.3860611,0,0.242001828,75.99527994,-0.242001828,104.0047201,0.843389991,0,242.2628891,97.54979351,306.1072779,5,8,26% -2018-05-06 17:00:00,45.75060589,104.473785,688.5872067,840.0897506,102.3869568,485.6673,381.1768265,104.4904735,99.29961232,5.190861225,170.043285,0,170.043285,3.087344516,166.9559405,0.798498708,1.82341153,-0.84627304,0.84627304,0.674874903,0.674874903,0.148691343,3.754125261,120.7455731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.45056441,2.236770592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.719850972,116.0652377,98.17041538,118.3020082,381.1768265,0,0.453733457,63.01652783,-0.453733457,116.9834722,0.939803145,0,456.4015956,118.3020082,533.827894,5,9,17% -2018-05-06 18:00:00,34.73646173,118.8787516,833.4872798,878.1908569,111.8061941,680.3218781,565.6038741,114.718004,108.4348248,6.283179182,205.46001,0,205.46001,3.371369272,202.0886408,0.606265628,2.074825626,-0.456001131,0.456001131,0.608134476,0.608134476,0.134142652,4.151298724,133.520037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2316781,2.442545561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007601794,128.3445382,107.2392799,130.7870838,565.6038741,0,0.644055754,49.90508402,-0.644055754,130.094916,0.972366969,0,657.2138049,130.7870838,742.8113355,5,10,13% -2018-05-06 19:00:00,25.60382164,141.2771401,927.2666001,897.8781579,117.5567514,839.2821868,718.2800778,121.0021089,114.0119816,6.990127311,228.3712925,0,228.3712925,3.544769793,224.8265227,0.446870989,2.465751253,-0.153819388,0.153819388,0.556458354,0.556458354,0.126777726,4.282777996,137.7488623,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5926534,2.568173648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102858079,132.409446,112.6955115,134.9776196,718.2800778,0,0.799974998,36.87228507,-0.799974998,143.1277149,0.987498047,0,821.9956853,134.9776196,910.3358378,5,11,11% -2018-05-06 20:00:00,21.18864783,176.3007318,963.1593755,904.6125767,119.7027407,947.3316903,823.9777266,123.3539636,116.0932614,7.260702213,237.1386209,0,237.1386209,3.609479288,233.5291417,0.369811669,3.077028244,0.108804224,-0.108804224,0.511547072,0.511547072,0.124281343,4.154956136,133.6376719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5932587,2.615055457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.010251577,128.4576134,114.6035103,131.0726689,823.9777266,0,0.910862559,24.37517573,-0.910862559,155.6248243,0.995106976,0,934.5494944,131.0726689,1020.333935,5,12,9% -2018-05-06 21:00:00,24.28905561,213.2025523,938.6195851,900.0519925,118.2385158,994.0511679,872.3022687,121.7488992,114.6731883,7.075710907,231.1445129,0,231.1445129,3.565327505,227.5791854,0.423923993,3.721086512,0.361372001,-0.361372001,0.468355438,0.468355438,0.125970646,3.787819425,121.8292933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2282304,2.583067641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.744262279,117.1069507,112.9724927,119.6900183,872.3022687,0,0.969168755,14.26446029,-0.969168755,165.7355397,0.998409397,0,983.8872752,119.6900183,1062.221998,5,13,8% -2018-05-06 22:00:00,32.80646487,237.7935555,855.4143782,883.0913346,113.1712761,973.6314504,857.4242309,116.2072195,109.7587446,6.448474911,210.8176512,0,210.8176512,3.412531533,207.4051196,0.572580828,4.150280483,0.630042334,-0.630042334,0.422410105,0.422410105,0.132299946,3.216661896,103.4589038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5042802,2.472367479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.330460594,99.44863356,107.8347408,101.921001,857.4242309,0,0.970934939,13.8478006,-0.970934939,166.1521994,0.998503244,0,963.9756165,101.921001,1030.680873,5,14,7% -2018-05-06 23:00:00,43.58694551,253.2931535,719.5552629,849.1840125,104.4666834,884.6482934,777.9073544,106.7409389,101.3166274,5.424311513,177.6145602,0,177.6145602,3.150055944,174.4645042,0.76073571,4.420799502,0.950280955,-0.950280955,0.367646075,0.367646075,0.145182293,2.4922144,80.15818202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.38939603,2.282204808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805600849,77.05109353,99.19499688,79.33329834,777.9073544,0,0.916064531,23.6426402,-0.916064531,156.3573598,0.995418692,0,873.5385184,79.33329834,925.4605755,5,15,6% -2018-05-06 00:00:00,55.18615975,264.5022967,541.1441624,787.0734126,91.79458013,729.326631,636.2206228,93.10600813,89.02663486,4.079373276,133.9746126,0,133.9746126,2.767945277,131.2066673,0.963180189,4.616435957,1.39224971,-1.39224971,0.292064967,0.292064967,0.169630547,1.681323379,54.07713937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.57578772,2.005366931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218113064,51.98100328,86.79390078,53.98637021,636.2206228,0,0.808337078,36.06622379,-0.808337078,143.9337762,0.988144616,0,715.4718841,53.98637021,750.8048837,5,16,5% -2018-05-06 01:00:00,66.99555489,273.844914,334.6804707,667.880345,73.67113423,511.556456,437.5838156,73.97264047,71.44967772,2.522962757,83.36861142,0,83.36861142,2.221456515,81.14715491,1.169293017,4.779495389,2.154299287,-2.154299287,0.161746814,0.161746814,0.220123792,0.873616938,28.09852378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68014794,1.609437683,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632932498,27.00936984,69.31308044,28.61880752,437.5838156,0,0.655182951,49.06647625,-0.655182951,130.9335237,0.973685438,0,495.3820695,28.61880752,514.1125067,5,17,4% -2018-05-06 02:00:00,78.65966019,282.5700719,123.7544413,405.7126181,43.97652809,233.2063532,189.6229664,43.58338677,42.65047352,0.932913252,31.33175164,0,31.33175164,1.326054578,30.00569706,1.372870059,4.931778122,4.202070916,-4.202070916,0,0,0.35535313,0.331513645,10.66261838,0.158562756,1,0.233632132,0,0.934246242,0.973008205,0.724496596,1,41.23712217,0.960722028,0.025230406,0.312029739,0.930942815,0.655439411,0.961238037,0.922476074,0.231769142,10.24931436,41.46889131,11.21003639,159.5558263,0,0.467382472,62.13547915,-0.467382472,117.8645208,0.943021234,0,191.9334236,11.21003639,199.2701682,5,18,4% -2018-05-06 03:00:00,89.56168815,291.4752013,0.153080726,1.5300769,0.141375775,0.541345743,0.403078982,0.138266761,0.137112774,0.001153987,0.041379196,0,0.041379196,0.004263001,0.037116194,1.563146342,5.08720195,97.93847081,-97.93847081,0,0,0.923537395,0.00106575,0.034278193,0.941922295,1,0.010210137,0,0.960325266,0.999087229,0.724496596,1,0.13198153,0.00308853,0.111200817,0.312029739,0.733443673,0.457940268,0.961238037,0.922476074,0.000764615,0.032949503,0.132746145,0.036038033,0.023409902,0,0.263437075,74.72589582,-0.263437075,105.2741042,0.860201354,0,0.152883375,0.036038033,0.176469547,5,19,15% -2018-05-06 04:00:00,100.6530565,301.214435,0,0,0,0,0,0,0,0,0,0,0,0,0,1.756727238,5.257183646,-3.330120774,3.330120774,1,0.900362118,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036838413,87.88883675,-0.036838413,92.11116325,0,0,0,0,0,5,20,0% -2018-05-06 05:00:00,110.1300251,312.4182345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.922131543,5.452726835,-1.263193628,1.263193628,1,0.746172522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17471035,100.0618027,0.17471035,79.93819729,0,0.763812032,0,0,0,5,21,0% -2018-05-06 06:00:00,117.897254,325.6575363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057695262,5.683796243,-0.467910436,0.467910436,1,0.610171087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.364792119,111.3947899,0.364792119,68.60521009,0,0.912935635,0,0,0,5,22,0% -2018-05-06 07:00:00,123.204808,341.1699815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150329554,5.954539485,0.031197192,-0.031197192,1,0.524818656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520450388,121.3624675,0.520450388,58.63753254,0,0.953929364,0,0,0,5,23,0% -2018-05-07 08:00:00,125.3067137,358.3732192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187014729,6.254792626,0.445070081,-0.445070081,1,0.454042223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631076145,129.1295633,0.631076145,50.87043671,0,0.970770258,0,0,0,5,0,0% -2018-05-07 09:00:00,123.8333341,15.73565053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161299403,0.274638912,0.871341039,-0.871341039,1,0.381145596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689130247,133.5612997,0.689130247,46.43870028,0,0.977444775,0,0,0,5,1,0% -2018-05-07 10:00:00,119.0486216,31.62021357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077790417,0.551876837,1.411389698,-1.411389698,1,0.288791836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690656601,133.682107,0.690656601,46.31789301,0,0.977605122,0,0,0,5,2,0% -2018-05-07 11:00:00,111.6615216,45.25892946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9488612,0.789917335,2.286695894,-2.286695894,1,0.139105661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635551272,129.4608833,0.635551272,50.53911668,0,0.971328141,0,0,0,5,3,0% -2018-05-07 12:00:00,102.4403494,56.7792365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787921385,0.990984624,4.412893949,-4.412893949,1,0,#DIV/0!,0,0,0.183337218,1,0.222845063,0,0.935763802,0.974525765,0.724496596,1,0,0,0.028857972,0.312029739,0.921424332,0.645920927,0.961238037,0.922476074,0,0,0,0,0,0,-0.527569227,121.8413639,0.527569227,58.15863606,0,0.955225708,0,0,0,5,4,0% -2018-05-07 13:00:00,92.00133539,66.71991613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605726219,1.164482213,28.57024864,-28.57024864,1,0,#DIV/0!,0,0,0.813281182,1,0.034987163,0,0.958005836,0.996767799,0.724496596,1,0,0,0.1002901,0.312029739,0.755237589,0.479734185,0.961238037,0.922476074,0,0,0,0,0,0,-0.374068236,111.9667358,0.374068236,68.03326417,0,0.916334548,0,0,0,5,5,0% -2018-05-07 14:00:00,80.69157824,75.7070639,89.46677914,328.8587728,36.27424267,35.85487879,0,35.85487879,35.18044042,0.674438372,83.2464875,60.46042883,22.78605867,1.093802254,21.69225641,1.408333719,1.321337532,-6.070771994,6.070771994,0.431683157,0.431683157,0.405449297,0.446550247,14.36259093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.81677749,0.79245601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.323524133,13.80586871,34.14030162,14.59832472,0,60.46042883,-0.18384922,100.5940468,0.18384922,79.40595319,0,0.778038008,34.14030162,61.63883636,74.48168724,5,6,118% -2018-05-07 15:00:00,69.08272373,84.3828676,296.4400556,634.9679108,69.74402058,86.39887849,16.5232071,69.87567139,67.64098103,2.234690356,73.9783631,0,73.9783631,2.103039548,71.87532355,1.205720985,1.472758872,-2.534369918,2.534369918,0.963556471,0.963556471,0.235271918,2.172410899,69.87220212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.01908381,1.523644994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573904301,67.1638184,66.59298812,68.68746339,16.5232071,0,0.026022114,88.5088744,-0.026022114,91.4911256,0,0,66.59298812,68.68746339,111.5475592,5,7,68% -2018-05-07 16:00:00,57.26338852,93.49864706,506.0673065,770.695647,89.2921115,278.7172947,188.3027207,90.414574,86.59962488,3.81494912,125.3943641,0,125.3943641,2.692486614,122.7018775,0.999434671,1.631859237,-1.426476722,1.426476722,0.774095576,0.774095576,0.176443154,3.105196396,99.87379013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.24285341,1.950697387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249704218,96.00248596,85.49255763,97.95318335,188.3027207,0,0.244328253,75.85786097,-0.244328253,104.142139,0.845357273,0,244.675632,97.95318335,308.7840314,5,8,26% -2018-05-07 17:00:00,45.57193678,104.1785025,690.9375244,840.1685507,102.808447,487.8103052,382.8933334,104.9169719,99.70839296,5.208578912,170.6258562,0,170.6258562,3.100053999,167.5258022,0.795380343,1.818257879,-0.843974845,0.843974845,0.674481888,0.674481888,0.148795576,3.765373072,121.1073414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.84349991,2.245978569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.727999973,116.4129831,98.57149988,118.6589616,382.8933334,0,0.455733951,62.8878321,-0.455733951,117.1121679,0.940286866,0,458.6010724,118.6589616,536.2609896,5,9,17% -2018-05-07 18:00:00,34.53451404,118.5465855,835.5754779,878.0955921,112.2136364,682.1554968,567.0265946,115.1289021,108.8299812,6.298920901,205.9786037,0,205.9786037,3.383655162,202.5949486,0.602740976,2.069028234,-0.455574865,0.455574865,0.60806158,0.60806158,0.134295033,4.161677909,133.8538672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6115175,2.451446646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015121478,128.6654286,107.626639,131.1168752,567.0265946,0,0.645745862,49.77837934,-0.645745862,130.2216207,0.972570158,0,659.0997838,131.1168752,744.9131563,5,10,13% -2018-05-07 19:00:00,25.3597367,140.976404,929.1555564,897.706812,117.95492,840.817485,719.414974,121.402511,114.398144,7.004367061,228.8412981,0,228.8412981,3.556776045,225.284522,0.442610903,2.460502418,-0.154495397,0.154495397,0.556573959,0.556573959,0.126948517,4.292740083,138.0692773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9638473,2.576872137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110075577,132.717441,113.0739229,135.2943132,719.414974,0,0.801391907,36.736774,-0.801391907,143.263226,0.987608554,0,823.574305,135.2943132,912.1217271,5,11,11% -2018-05-07 20:00:00,20.91259,176.3032159,964.9284461,904.4105341,120.0949943,948.6264221,824.8786967,123.7477254,116.4736872,7.274038214,237.5793805,0,237.5793805,3.621307183,233.9580733,0.364993551,3.077071599,0.107267451,-0.107267451,0.511809875,0.511809875,0.12446,4.164896191,133.9573783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9589384,2.623624726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.017453113,128.7649273,114.9763915,131.388552,824.8786967,0,0.912062239,24.20808834,-0.912062239,155.7919117,0.99517918,0,935.8784963,131.388552,1021.869676,5,12,9% -2018-05-07 21:00:00,24.0506536,213.5415327,940.3570498,899.8489907,118.6279848,995.1930126,873.0532906,122.139722,115.0509133,7.08880865,231.5775252,0,231.5775252,3.577071431,228.0004538,0.419763093,3.727002836,0.358944346,-0.358944346,0.468770591,0.468770591,0.126152066,3.798086408,122.1595147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5913141,2.591576075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.751700673,117.4243721,113.3430147,120.0159482,873.0532906,0,0.970222004,14.01744953,-0.970222004,165.9825505,0.998465403,0,985.0565203,120.0159482,1063.604558,5,13,8% -2018-05-07 22:00:00,32.62056366,238.1701717,857.2102489,882.9220514,113.5612261,974.7307146,858.1317655,116.5989491,110.1369361,6.462012944,211.2648393,0,211.2648393,3.424289963,207.8405493,0.56933624,4.156853677,0.626438709,-0.626438709,0.423026361,0.423026361,0.132477681,3.227533081,103.8085585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8678123,2.480886421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33833673,99.78473494,108.206149,102.2656214,858.1317655,0,0.971922452,13.60938962,-0.971922452,166.3906104,0.998555566,0,965.0984002,102.2656214,1032.029204,5,14,7% -2018-05-07 23:00:00,43.43078132,253.6227291,721.4936332,849.1157907,104.8611282,885.8378056,778.6997035,107.138102,101.6991783,5.438923767,178.0964344,0,178.0964344,3.161949911,174.9344845,0.758010131,4.426551681,0.944779477,-0.944779477,0.368586883,0.368586883,0.145338952,2.503840123,80.53210524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.75711847,2.290821947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.814023646,77.41052274,99.57114212,79.70134469,778.6997035,0,0.917071278,23.49839008,-0.917071278,156.5016099,0.995478611,0,874.7500413,79.70134469,926.9129774,5,15,6% -2018-05-07 00:00:00,55.04202054,264.788125,543.2929033,787.2792526,92.20116518,730.7767729,637.2602417,93.51653126,89.42095987,4.095571393,134.5078597,0,134.5078597,2.780205316,131.7276544,0.960664485,4.621424601,1.383000134,-1.383000134,0.293646738,0.293646738,0.169708024,1.693602952,54.47209266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95482791,2.014249287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227009573,52.36064741,87.18183749,54.3748967,637.2602417,0,0.809446254,35.95813585,-0.809446254,144.0418641,0.988229376,0,716.9411286,54.3748967,752.528411,5,16,5% -2018-05-07 01:00:00,66.85227242,274.0999915,337.0651468,668.9073228,74.11554106,513.5388043,439.1171808,74.4216235,71.88068404,2.540939453,83.96020426,0,83.96020426,2.23485702,81.72534723,1.166792266,4.783947331,2.135179628,-2.135179628,0.165016468,0.165016468,0.219884915,0.885814057,28.49082503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.09444762,1.619146303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.641769269,27.38646472,69.73621689,29.00561103,439.1171808,0,0.656469388,48.96883915,-0.656469388,131.0311609,0.973834986,0,497.3638906,29.00561103,516.3474829,5,17,4% -2018-05-07 02:00:00,78.50989276,282.804571,126.1838859,409.6383114,44.58445194,236.2707955,192.0795019,44.19129365,43.24006621,0.951227433,31.93912978,0,31.93912978,1.344385725,30.59474405,1.370256124,4.935870903,4.134958709,-4.134958709,0,0,0.353329204,0.336096431,10.81001655,0.150357709,1,0.237284403,0,0.933726744,0.972488707,0.724496596,1,41.79846606,0.974002881,0.024011452,0.312029739,0.93416449,0.658661085,0.961238037,0.922476074,0.235296119,10.39099909,42.03376218,11.36500197,163.198868,0,0.468900238,62.03706772,-0.468900238,117.9629323,0.94336751,0,195.9902719,11.36500197,203.4284384,5,18,4% -2018-05-07 03:00:00,89.42075828,291.695288,0.246433862,2.094261994,0.225261914,0.775035974,0.554708815,0.220327159,0.218469437,0.001857723,0.066543221,0,0.066543221,0.006792478,0.059750743,1.560686652,5.091043188,73.85671988,-73.85671988,0,0,0.914086694,0.001698119,0.054617359,0.923664642,1,0.013538902,0,0.960022236,0.9987842,0.724496596,1,0.210381948,0.004921127,0.109709807,0.312029739,0.736365406,0.460862002,0.961238037,0.922476074,0.001214724,0.052500283,0.211596672,0.05742141,0.042343896,0,0.264870783,74.64072513,-0.264870783,105.3592749,0.861228708,0,0.248064451,0.05742141,0.285645615,5,19,15% -2018-05-07 04:00:00,100.4690927,301.4217377,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753516464,5.260801759,-3.374711623,3.374711623,1,0.892736634,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.038980601,87.7660101,-0.038980601,92.2339899,0,0,0,0,0,5,20,0% -2018-05-07 05:00:00,109.9215624,312.6080531,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918493183,5.456039795,-1.269450263,1.269450263,1,0.74724247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17224586,99.91842382,0.17224586,80.08157618,0,0.75971726,0,0,0,5,21,0% -2018-05-07 06:00:00,117.6616481,325.8159418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053583163,5.686560941,-0.467487974,0.467487974,1,0.610098841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.362022671,111.2244673,0.362022671,68.77553274,0,0.911887103,0,0,0,5,22,0% -2018-05-07 07:00:00,122.9449452,341.273419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145794092,5.956344811,0.034293323,-0.034293323,1,0.524289186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.517414397,121.1589736,0.517414397,58.84102636,0,0.953365658,0,0,0,5,23,0% -2018-05-08 08:00:00,125.033766,358.3986155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182250893,6.255235875,0.450195883,-0.450195883,1,0.453165659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627830443,128.8902374,0.627830443,51.10976265,0,0.970360663,0,0,0,5,0,0% -2018-05-08 09:00:00,123.5638852,15.67902958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156596634,0.27365069,0.879054311,-0.879054311,1,0.379826549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685746165,133.2943171,0.685746165,46.70568289,0,0.977086723,0,0,0,5,1,0% -2018-05-08 10:00:00,118.7963179,31.50008715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073386886,0.549780235,1.423777408,-1.423777408,1,0.286673413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687215063,133.4100592,0.687215063,46.58994075,0,0.977242573,0,0,0,5,2,0% -2018-05-08 11:00:00,111.4321635,45.09946826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944858145,0.787134212,2.310674533,-2.310674533,1,0.135005072,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632137225,129.2079797,0.632137225,50.79202026,0,0.97090325,0,0,0,5,3,0% -2018-05-08 12:00:00,102.2334037,56.59707519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784309501,0.987805309,4.48654678,-4.48654678,1,0,#DIV/0!,0,0,0.191652027,1,0.219303847,0,0.936256501,0.975018464,0.724496596,1,0,0,0.03005793,0.312029739,0.918298514,0.642795109,0.961238037,0.922476074,0,0,0,0,0,0,-0.524265802,121.6188305,0.524265802,58.38116948,0,0.95462853,0,0,0,5,4,0% -2018-05-08 13:00:00,91.81312464,66.52241747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602441322,1.161035211,31.53185541,-31.53185541,1,0,#DIV/0!,0,0,0.829412993,1,0.031703334,0,0.958321707,0.99708367,0.724496596,1,0,0,0.101711781,0.312029739,0.752343556,0.476840152,0.961238037,0.922476074,0,0,0,0,0,0,-0.370951034,111.774282,0.370951034,68.225718,0,0.915211321,0,0,0,5,5,0% -2018-05-08 14:00:00,80.51879866,75.49484272,92.15076495,334.5984226,37.03437504,36.61232338,0,36.61232338,35.91765199,0.694671391,84.02471602,60.56497312,23.4597429,1.11672305,22.34301985,1.405318146,1.317633574,-5.960317288,5.960317288,0.450572024,0.450572024,0.401888959,0.466389216,15.00068038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.52541329,0.809062048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337897399,14.41922456,34.86331069,15.22828661,0,60.56497312,-0.181007946,100.4284753,0.181007946,79.57152471,0,0.773769032,34.86331069,62.09158726,75.50101272,5,6,117% -2018-05-08 15:00:00,68.91682634,84.15189064,299.2603084,636.6364793,70.24764676,88.58614113,18.2007695,70.38537163,68.12942102,2.255950613,74.67735222,0,74.67735222,2.118225736,72.55912648,1.20282553,1.468727563,-2.515108215,2.515108215,0.960262526,0.960262526,0.234737601,2.187348068,70.35263284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48859091,1.534647335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58472623,67.62562668,67.07331714,69.16027401,18.2007695,0,0.028588952,88.36175052,-0.028588952,91.63824948,0,0,67.07331714,69.16027401,112.3373333,5,7,67% -2018-05-08 16:00:00,57.09852727,93.24122645,508.6224192,771.1595548,89.73160954,281.0109889,190.1509079,90.86008108,87.02587044,3.834210639,126.0271333,0,126.0271333,2.705739102,123.3213942,0.996557299,1.6273664,-1.420248346,1.420248346,0.773030461,0.773030461,0.17642087,3.117491707,100.2692496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65257685,1.960298769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.258612129,96.38261665,85.91118898,98.34291542,190.1509079,0,0.246577906,75.72489777,-0.246577906,104.2751022,0.84722433,0,247.0116645,98.34291542,311.3751358,5,8,26% -2018-05-08 17:00:00,45.39873136,103.884704,693.2007795,840.2206288,103.2240533,489.8728237,384.5357161,105.3371076,100.1114673,5.225640285,171.1871407,0,171.1871407,3.112586065,168.0745546,0.792357339,1.813130127,-0.84179679,0.84179679,0.674109419,0.674109419,0.148909315,3.776243957,121.4569864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.23095028,2.255058008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.735875892,116.7490752,98.96682617,119.0041332,384.5357161,0,0.457660408,62.76375933,-0.457660408,117.2362407,0.940748688,0,460.7182966,119.0041332,538.6041217,5,9,17% -2018-05-08 18:00:00,34.3384153,118.2141785,837.5842854,877.9827754,112.6161027,683.9114238,568.3770479,115.5343758,109.2203117,6.314064141,206.4777982,0,206.4777982,3.395791005,203.0820072,0.599318407,2.063226637,-0.455206733,0.455206733,0.607998626,0.607998626,0.134453457,4.171731005,134.1772094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.986718,2.460239024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.022404912,128.9762373,108.0091229,131.4364763,568.3770479,0,0.647366969,49.65662449,-0.647366969,130.3433755,0.972764054,0,660.9058845,131.4364763,746.9284295,5,10,13% -2018-05-08 19:00:00,25.1215136,140.6712471,930.9743372,897.5226618,118.3488327,842.2816899,720.4834334,121.7982565,114.7801787,7.018077799,229.2941605,0,229.2941605,3.568653967,225.7255065,0.438453125,2.455176425,-0.155197678,0.155197678,0.556694056,0.556694056,0.127123625,4.302423572,138.3807316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3310737,2.585477651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.117091232,133.0168227,113.4481649,135.6023004,720.4834334,0,0.802746787,36.60679239,-0.802746787,143.3932076,0.987713858,0,825.0796369,135.6023004,913.8286304,5,11,11% -2018-05-08 20:00:00,20.64134722,176.2997466,966.6373019,904.198338,120.4836261,949.8589573,825.7214367,124.1375206,116.8506003,7.286920291,238.0054311,0,238.0054311,3.633025866,234.3724052,0.360259471,3.077011049,0.105725301,-0.105725301,0.512073598,0.512073598,0.12464202,4.174601803,134.2695441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3212416,2.632114872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024484796,129.064993,115.3457264,131.6971078,825.7214367,0,0.913208311,24.04744878,-0.913208311,155.9525512,0.99524798,0,937.143318,131.6971078,1023.336441,5,12,9% -2018-05-08 21:00:00,23.81608709,213.8763,942.0442571,899.6372772,119.0143982,996.2827494,873.7555469,122.5272025,115.4256749,7.101527531,231.99826,0,231.99826,3.588723221,228.4095367,0.415669135,3.732845628,0.356529422,-0.356529422,0.469183568,0.469183568,0.126336313,3.808158337,122.4834626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9515492,2.600017757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758997751,117.7357631,113.7105469,120.3357809,873.7555469,0,0.971230927,13.77676611,-0.971230927,166.2232339,0.998518938,0,986.1720073,120.3357809,1064.929369,5,13,8% -2018-05-08 22:00:00,32.43745556,238.5412916,858.9651076,882.7445451,113.9486061,975.7881041,858.8002271,116.987877,110.5126352,6.47524181,211.702006,0,211.702006,3.435970899,208.2660351,0.5661404,4.163330941,0.622869248,-0.622869248,0.423636775,0.423636775,0.132658015,3.238242374,104.1530061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2289485,2.48934922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346095577,100.1158312,108.5750441,102.6051804,858.8002271,0,0.972875145,13.37543589,-0.972875145,166.6245641,0.998605944,0,966.1780553,102.6051804,1033.331094,5,14,7% -2018-05-08 23:00:00,43.27653745,253.9466439,723.3989009,849.0385598,105.2533732,886.9946609,779.4617787,107.5328822,102.0795957,5.45328648,178.5702163,0,178.5702163,3.173777546,175.3964387,0.755318067,4.43220506,0.939346599,-0.939346599,0.36951596,0.36951596,0.145498387,2.515330413,80.90167246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.12279014,2.299391028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.822348321,77.76576481,99.94513847,80.06515584,779.4617787,0,0.918052272,23.35702189,-0.918052272,156.6429781,0.99553687,0,875.9280781,80.06515584,928.3291213,5,15,6% -2018-05-08 00:00:00,54.89926364,265.0685704,545.4146801,787.4722611,92.60571413,732.200821,638.2759446,93.92487641,89.81331017,4.111566243,135.0345077,0,135.0345077,2.79240396,132.2421038,0.958172907,4.626319296,1.373894186,-1.373894186,0.295203946,0.295203946,0.169789552,1.705769403,54.86340755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.33196995,2.023087163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235824126,52.73679417,87.56779407,54.75988134,638.2759446,0,0.810537686,35.85150186,-0.810537686,144.1484981,0.988312554,0,718.3839228,54.75988134,754.22317,5,16,5% -2018-05-08 01:00:00,66.71010371,274.3499204,339.4274616,669.9064963,74.55746316,515.4953475,440.6273194,74.86802814,72.30928056,2.558747581,84.54630043,0,84.54630043,2.248182602,82.29811783,1.164310954,4.788309414,2.116448668,-2.116448668,0.168219651,0.168219651,0.219656544,0.897930153,28.88052033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50643089,1.628800642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.650547339,27.76105467,70.15697823,29.38985531,440.6273194,0,0.657744509,48.87191777,-0.657744509,131.1280822,0.973982642,0,499.3203388,29.38985531,518.5554113,5,17,4% -2018-05-08 02:00:00,78.36116229,283.0340031,128.6007175,413.4710408,45.18629404,239.2947033,194.5014962,44.79320709,43.82376056,0.969446529,32.54326632,0,32.54326632,1.362533485,31.18073284,1.367660288,4.939875249,4.07010049,-4.07010049,0,0,0.351368911,0.340633371,10.95594014,0.142274738,1,0.240922038,0,0.933206481,0.971968444,0.724496596,1,42.35363099,0.987150872,0.022801948,0.312029739,0.937372723,0.661869319,0.961238037,0.922476074,0.238806643,10.53126639,42.59243763,11.51841726,166.8288469,0,0.470411412,61.93899449,-0.470411412,118.0610055,0.943710062,0,200.030499,11.51841726,207.5690727,5,18,4% -2018-05-08 03:00:00,89.27951054,291.9102311,0.368291823,2.804837932,0.333022158,1.072754745,0.746998095,0.325756651,0.322980312,0.002776339,0.099338463,0,0.099338463,0.010041847,0.089296616,1.558221414,5.094794653,59.17758955,-59.17758955,0,0,0.904234463,0.002510462,0.080745078,0.905569601,1,0.016896681,0,0.959713861,0.998475824,0.724496596,1,0.311150889,0.007275284,0.108213879,0.312029739,0.739314773,0.463811369,0.961238037,0.922476074,0.00179071,0.07761524,0.312941599,0.084890524,0.070539328,0,0.266324869,74.55430841,-0.266324869,105.4456916,0.862259365,0,0.373764795,0.084890524,0.429323945,5,19,15% -2018-05-08 04:00:00,100.2866759,301.6236985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750332691,5.26432664,-3.4206931,3.4206931,1,0.884873338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041117121,87.6434982,-0.041117121,92.3565018,0,0,0,0,0,5,20,0% -2018-05-08 05:00:00,109.7152144,312.7923176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91489173,5.459255817,-1.275890415,1.275890415,1,0.748343801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169790044,99.77561202,0.169790044,80.22438798,0,0.755518659,0,0,0,5,21,0% -2018-05-08 06:00:00,117.4289573,325.9688256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049521942,5.689229266,-0.467155049,0.467155049,1,0.610041908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.359267164,111.0551969,0.359267164,68.94480309,0,0.910827805,0,0,0,5,22,0% -2018-05-08 07:00:00,122.6889367,341.3720415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141325902,5.958066098,0.037313009,-0.037313009,1,0.523772789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51439951,120.9573259,0.51439951,59.04267415,0,0.952799285,0,0,0,5,23,0% -2018-05-09 08:00:00,124.7654963,358.4208205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177568704,6.255623426,0.455240268,-0.455240268,1,0.452303019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624614413,128.653892,0.624614413,51.34610805,0,0.969950614,0,0,0,5,0,0% -2018-05-09 09:00:00,123.2995629,15.62125456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151983339,0.272642325,0.886671393,-0.886671393,1,0.378523951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682401139,133.0315626,0.682401139,46.96843738,0,0.976729313,0,0,0,5,1,0% -2018-05-09 10:00:00,118.5492143,31.38042852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069074114,0.547691798,1.436046154,-1.436046154,1,0.284575334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683822133,133.1430449,0.683822133,46.85695512,0,0.976881571,0,0,0,5,2,0% -2018-05-09 11:00:00,111.2078965,44.94141799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940943949,0.784375715,2.334531353,-2.334531353,1,0.130925316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628780853,128.9602333,0.628780853,51.03976674,0,0.970481039,0,0,0,5,3,0% -2018-05-09 12:00:00,102.0314185,56.41678999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780784193,0.984658739,4.560742089,-4.560742089,1,0,#DIV/0!,0,0,0.199858626,1,0.215846804,0,0.936734861,0.975496825,0.724496596,1,0,0,0.031233782,0.312029739,0.915246483,0.639743079,0.961238037,0.922476074,0,0,0,0,0,0,-0.521028007,121.4012335,0.521028007,58.59876653,0,0.954035869,0,0,0,5,4,0% -2018-05-09 13:00:00,91.62979514,66.32701636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599241618,1.157624819,35.07352946,-35.07352946,1,0,#DIV/0!,0,0,0.845387279,1,0.028503808,0,0.958626988,0.997388951,0.724496596,1,0,0,0.10310398,0.312029739,0.749525282,0.474021878,0.961238037,0.922476074,0,0,0,0,0,0,-0.367905761,111.586518,0.367905761,68.413482,0,0.914095632,0,0,0,5,5,0% -2018-05-09 14:00:00,80.35080645,75.28482824,94.76967566,340.0592891,37.7705526,37.34604493,0,37.34604493,36.63163108,0.714413846,84.72952886,60.61260227,24.11692659,1.138921519,22.97800507,1.402386129,1.31396813,-5.856637416,5.856637416,0.468302326,0.468302326,0.398551038,0.485952147,15.62989148,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.21171715,0.825144764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.352070676,15.02404621,35.56378782,15.84919097,0,60.61260227,-0.178241278,100.267336,0.178241278,79.73266405,0,0.769481365,35.56378782,62.4894589,76.46188888,5,6,115% -2018-05-09 15:00:00,68.75588593,83.92315612,301.9880405,638.2024565,70.74029944,90.71785328,19.83412147,70.88373181,68.6072184,2.276513409,75.35357774,0,75.35357774,2.133081032,73.22049671,1.20001659,1.464735393,-2.496702682,2.496702682,0.957114994,0.957114994,0.234248679,2.201754417,70.81599052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94786793,1.545409946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59516358,68.07102371,67.54303151,69.61643365,19.83412147,0,0.031078103,88.21906912,-0.031078103,91.78093088,0,0,67.54303151,69.61643365,113.105595,5,7,67% -2018-05-09 16:00:00,56.93883451,92.9859533,511.0852299,771.5769269,90.16375327,283.2278271,191.9300673,91.29775978,87.44498344,3.852776347,126.637301,0,126.637301,2.71876983,123.9185311,0.993770134,1.622911043,-1.41429295,1.41429295,0.772012028,0.772012028,0.176416277,3.129351387,100.6506977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.05544421,1.969739487,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267204427,96.74927905,86.32264864,98.71901853,191.9300673,0,0.248750398,75.59642052,-0.248750398,104.4035795,0.848995296,0,249.270373,98.71901853,313.8799963,5,8,26% -2018-05-09 17:00:00,45.23102319,103.5925716,695.3771618,840.2462999,103.6337851,491.85482,386.1039291,105.7508909,100.5088441,5.242046774,171.7271847,0,171.7271847,3.124940989,168.6022437,0.789430279,1.808031455,-0.839737661,0.839737661,0.673757287,0.673757287,0.149032483,3.78673952,121.7945598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.61292402,2.264009109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743479892,117.0735636,99.35640391,119.3375727,386.1039291,0,0.459512799,62.64432622,-0.459512799,117.3556738,0.941189103,0,462.7532144,119.3375727,540.857269,5,9,17% -2018-05-09 18:00:00,34.14821249,117.8817707,839.5141471,877.8526097,113.0136136,685.5900106,569.6555622,115.9344484,109.6058361,6.328612253,206.9577019,0,206.9577019,3.407777425,203.5499245,0.595998742,2.057425027,-0.454896255,0.454896255,0.607945531,0.607945531,0.134617879,4.181460127,134.4901314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3572988,2.468923144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.029453628,129.2770299,108.3867524,131.745953,569.6555622,0,0.64891937,49.53982356,-0.64891937,130.4601764,0.972948825,0,662.6324622,131.745953,748.8575535,5,10,13% -2018-05-09 19:00:00,24.88923493,140.3618409,932.7235487,897.3258706,118.7385188,843.6754492,721.4860707,122.1893785,115.1581144,7.031264094,229.7300275,0,229.7300275,3.580404441,226.1496231,0.434399098,2.449776268,-0.155925891,0.155925891,0.556818587,0.556818587,0.127303014,4.311830715,138.6832976,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6943598,2.59399083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123906675,133.3076608,113.8182665,135.9016516,721.4860707,0,0.804040198,36.48233651,-0.804040198,143.5176635,0.987814054,0,826.5123472,135.9016516,915.4572601,5,11,11% -2018-05-09 20:00:00,20.37500357,176.2901143,968.2866093,903.9761364,120.8686694,951.0301413,826.5067548,124.5233865,117.224033,7.299353467,238.4169352,0,238.4169352,3.644636339,234.7722989,0.355610897,3.076842934,0.104178148,-0.104178148,0.512338177,0.512338177,0.124827368,4.184074949,134.574233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6801994,2.640526621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031348057,129.3578716,115.7115474,131.9983982,826.5067548,0,0.914301519,23.89327253,-0.914301519,156.1067275,0.995313445,0,938.3448332,131.9983982,1024.735145,5,12,9% -2018-05-09 21:00:00,23.58538385,214.2065092,943.6818288,899.4169936,119.3977879,997.3213103,874.4099341,122.9113763,115.797504,7.113872239,232.4068688,0,232.4068688,3.600283835,228.806585,0.411642604,3.738608864,0.354127714,-0.354127714,0.469594284,0.469594284,0.126523352,3.818036521,122.8011789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3089654,2.608393383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766154462,118.0411642,114.0751199,120.6495575,874.4099341,0,0.972196368,13.54253028,-0.972196368,166.4574697,0.998570061,0,987.234701,120.6495575,1066.197423,5,13,8% -2018-05-09 22:00:00,32.25713732,238.9066561,860.6794303,882.5589526,114.3334412,976.8045179,859.4304866,117.3740312,110.8858661,6.488165098,212.1292676,0,212.1292676,3.447575099,208.6816925,0.562993254,4.169707754,0.619334589,-0.619334589,0.424241237,0.424241237,0.132840913,3.248790081,104.4922567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5877123,2.497756423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353737355,100.4419317,108.9414496,102.9396881,859.4304866,0,0.973793857,13.14595689,-0.973793857,166.8540431,0.998654431,0,967.215513,102.9396881,1034.58748,5,14,7% -2018-05-09 23:00:00,43.12421197,254.2647287,725.2713051,848.9524492,105.6434313,888.1196037,780.1943102,107.9252935,102.457892,5.467401454,179.0359641,0,179.0359641,3.185539235,175.8504248,0.752659486,4.437756688,0.933983105,-0.933983105,0.370433172,0.370433172,0.145660569,2.526684321,81.26685318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.486423,2.307912332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830574189,78.11679041,100.3169972,80.42470274,780.1943102,0,0.919008256,23.21847625,-0.919008256,156.7815237,0.995593525,0,877.0734004,80.42470274,929.7097599,5,15,6% -2018-05-09 00:00:00,54.75789942,265.3435127,547.5094206,787.6525594,93.00822152,733.5992539,639.2682161,94.33103776,90.20368048,4.127357282,135.5545389,0,135.5545389,2.804541043,132.7499979,0.955705636,4.631117945,1.364932464,-1.364932464,0.296736491,0.296736491,0.169875107,1.717820361,55.25100778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70720874,2.031880438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244555004,53.10937025,87.95176374,55.14125069,639.2682161,0,0.811611933,35.74627809,-0.811611933,144.2537219,0.988394203,0,719.8007627,55.14125069,755.8896084,5,16,5% -2018-05-09 01:00:00,66.56907427,274.5946078,341.7669687,670.8780627,74.99687165,517.42624,442.114417,75.31182304,72.73543926,2.576383773,85.12679079,0,85.12679079,2.261432389,82.8653584,1.161849526,4.792580013,2.098103446,-2.098103446,0.171356869,0.171356869,0.219438619,0.909961161,29.2674789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.91607085,1.638400068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.659263763,28.13301396,70.57533461,29.77141403,442.114417,0,0.659008606,48.77569278,-0.659008606,131.2243072,0.974128457,0,501.2515693,29.77141403,520.7363643,5,17,4% -2018-05-09 02:00:00,78.2135111,283.258293,131.0038427,417.2116393,45.78201693,242.2779088,196.8888262,45.38908251,44.40152021,0.987562303,33.1438951,0,33.1438951,1.380496728,31.76339838,1.365083288,4.943789847,4.007416779,-4.007416779,0,0,0.349470794,0.345124182,11.10038005,0.134315264,1,0.244543142,0,0.932685768,0.971447731,0.724496596,1,42.90258738,1.00016518,0.021602415,0.312029739,0.940565861,0.665062456,0.961238037,0.922476074,0.242300219,10.67010753,43.1448876,11.67027271,170.4436516,0,0.471915948,61.8412631,-0.471915948,118.1587369,0.944048929,0,204.0520343,11.67027271,211.6899944,5,18,4% -2018-05-09 03:00:00,89.13803387,292.119971,0.522578501,3.680346093,0.467212922,1.442654853,0.985590707,0.457064146,0.453124729,0.003939417,0.140793401,0,0.140793401,0.014088193,0.126705208,1.55575218,5.098455305,49.30064508,-49.30064508,0,0,0.894053087,0.003522048,0.113281182,0.887649957,1,0.020280929,0,0.959400308,0.998162271,0.724496596,1,0.436701321,0.010206848,0.106714272,0.312029739,0.742289476,0.466786072,0.961238037,0.922476074,0.002505362,0.108890181,0.439206683,0.119097029,0.110731158,0,0.267798376,74.46670069,-0.267798376,105.5332993,0.86329237,0,0.534800047,0.119097029,0.612746671,5,19,15% -2018-05-09 04:00:00,100.1058795,301.8202759,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747177198,5.267757563,-3.468102098,3.468102098,1,0.876765922,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.043247213,87.52134416,-0.043247213,92.47865584,0,0,0,0,0,5,20,0% -2018-05-09 05:00:00,109.5110674,312.9710102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911328694,5.462374592,-1.282515171,1.282515171,1,0.749476701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167344021,99.63343056,0.167344021,80.36656944,0,0.751214302,0,0,0,5,21,0% -2018-05-09 06:00:00,117.1992755,326.1161995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045513238,5.691801425,-0.466913689,0.466913689,1,0.610000633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356527032,110.8870617,0.356527032,69.11293832,0,0.909758179,0,0,0,5,22,0% -2018-05-09 07:00:00,122.4368755,341.4658847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136926603,5.959703971,0.040253058,-0.040253058,1,0.523270011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511407416,120.7576226,0.511407416,59.24237745,0,0.952230593,0,0,0,5,23,0% -2018-05-10 08:00:00,124.5019901,358.439872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172969653,6.255955937,0.460198616,-0.460198616,1,0.451455091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621429919,128.4206301,0.621429919,51.5793699,0,0.969540404,0,0,0,5,0,0% -2018-05-10 09:00:00,123.0404463,15.56234962,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147460901,0.27161424,0.894185255,-0.894185255,1,0.377239005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679097119,132.7731289,0.679097119,47.22687106,0,0.976372829,0,0,0,5,1,0% -2018-05-10 10:00:00,118.307386,31.26125682,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064853416,0.54561186,1.448183761,-1.448183761,1,0.282499681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680479753,132.8811441,0.680479753,47.11885594,0,0.976522428,0,0,0,5,2,0% -2018-05-10 11:00:00,110.9887912,44.7848066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93711984,0.78164233,2.358239674,-2.358239674,1,0.126870954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548399,128.7177198,0.62548399,51.28228017,0,0.970061903,0,0,0,5,3,0% -2018-05-10 12:00:00,101.8344567,56.23842405,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777346561,0.981545666,4.635394441,-4.635394441,1,0,#DIV/0!,0,0,0.207949303,1,0.212475112,0,0.937198905,0.975960868,0.724496596,1,0,0,0.032384856,0.312029739,0.912269317,0.636765913,0.961238037,0.922476074,0,0,0,0,0,0,-0.51785748,121.1886449,0.51785748,58.81135508,0,0.953448339,0,0,0,5,4,0% -2018-05-10 13:00:00,91.45140087,66.133773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596128051,1.154252086,39.3779269,-39.3779269,1,0,#DIV/0!,0,0,0.861185693,1,0.025389481,0,0.958921783,0.997683746,0.724496596,1,0,0,0.104465829,0.312029739,0.746783525,0.471280121,0.961238037,0.922476074,0,0,0,0,0,0,-0.36493378,111.4035075,0.36493378,68.59649251,0,0.912988842,0,0,0,5,5,0% -2018-05-10 14:00:00,80.18765169,75.07709974,97.32089326,345.247803,38.48311742,38.05635544,0,38.05635544,37.32270944,0.733646002,85.36535571,60.60837042,24.75698529,1.160407978,23.59657731,1.399538541,1.310342583,-5.759267338,5.759267338,0.48495359,0.48495359,0.395425033,0.505200253,16.24897676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.87600795,0.84071163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.366015864,15.61913452,36.24202382,16.45984615,0,60.60837042,-0.175550344,100.1106863,0.175550344,79.88931372,0,0.765181418,36.24202382,62.83624494,77.36708941,5,6,113% -2018-05-10 15:00:00,68.59993851,83.69676725,304.6226889,639.668029,71.22203626,92.7925734,21.42176981,71.37080359,69.07442909,2.296374502,76.00690489,0,76.00690489,2.147607175,73.85929771,1.197294794,1.460784162,-2.479127421,2.479127421,0.954109447,0.954109447,0.233804109,2.215631327,71.26231966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39696861,1.555934087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.605217354,68.50005225,68.00218597,70.05598634,21.42176981,0,0.033488886,88.08086933,-0.033488886,91.91913067,0,0,68.00218597,70.05598634,113.8524279,5,7,67% -2018-05-10 16:00:00,56.78433918,92.73296483,513.4556696,771.9484447,90.58855034,285.3673528,193.6397358,91.72761703,87.85697131,3.870645722,127.2248507,0,127.2248507,2.731579029,124.4932717,0.991073682,1.618495561,-1.408605973,1.408605973,0.771039498,0.771039498,0.176429156,3.140776661,101.0181738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.45146262,1.979019708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275481999,97.10251104,86.72694462,99.08153075,193.6397358,0,0.250845425,75.47245428,-0.250845425,104.5275457,0.850674061,0,251.4512449,99.08153075,316.2981252,5,8,26% -2018-05-10 17:00:00,45.06884009,103.3022941,697.4669321,840.2458818,104.0376553,493.7563462,387.5980097,106.1583365,100.9005361,5.257800346,172.2460519,0,172.2460519,3.137119165,169.1089327,0.78659965,1.802965157,-0.837796164,0.837796164,0.673425272,0.673425272,0.149165001,3.796861586,122.1201202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.98943326,2.272832156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.750813294,117.3865046,99.74024655,119.6593368,387.5980097,0,0.461291175,62.52954393,-0.461291175,117.4704561,0.941608592,0,464.7058627,119.6593368,543.0205054,5,9,17% -2018-05-10 18:00:00,33.9639466,117.5496154,841.3655609,877.7053009,113.4061926,687.1916833,570.8625369,116.3291465,109.9865775,6.342568992,207.4184364,0,207.4184364,3.419615132,203.9988212,0.592782695,2.051627823,-0.45464286,0.45464286,0.607902198,0.607902198,0.134788251,4.190867524,134.7927056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7232818,2.477499522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036269255,129.5678757,108.7595511,132.0453752,570.8625369,0,0.650403428,49.42797444,-0.650403428,130.5720256,0.973124636,0,664.2799497,132.0453752,750.7010069,5,10,13% -2018-05-10 19:00:00,24.66297905,140.0483831,934.4038302,897.1166027,119.1240095,844.9994676,722.4235557,122.5759119,115.5319811,7.043930766,230.1490552,0,230.1490552,3.592028407,226.5570268,0.430450188,2.444305397,-0.156679613,0.156679613,0.556947482,0.556947482,0.127486645,4.320963808,138.9770493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0537347,2.602412353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13052357,133.590026,114.1842583,136.1924384,722.4235557,0,0.805272752,36.36339529,-0.805272752,143.6366047,0.987909237,0,827.8731616,136.1924384,917.0083887,5,11,11% -2018-05-10 20:00:00,20.11364319,176.2741218,969.8770456,903.7440757,121.2501578,952.140855,827.235494,124.905361,117.5940182,7.311342848,238.8140582,0,238.8140582,3.656139623,235.1579186,0.351049298,3.076563812,0.102626451,-0.102626451,0.512603533,0.512603533,0.125016009,4.193317558,134.8715071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0358432,2.648860711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.038044296,129.6436227,116.0738875,132.2924834,827.235494,0,0.915342647,23.74556566,-0.915342647,156.2544343,0.995375647,0,939.4839524,132.2924834,1026.066737,5,12,9% -2018-05-10 21:00:00,23.35857269,214.5318146,945.2703758,899.1882765,119.778185,998.3096387,875.0173605,123.2922782,116.1664308,7.125847377,232.8035008,0,232.8035008,3.611754213,229.1917466,0.407684002,3.744286515,0.351739796,-0.351739796,0.470002642,0.470002642,0.126713148,3.827722141,123.1127018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6635919,2.616703633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.773171661,118.3406117,114.4367636,120.9573154,875.0173605,0,0.973119182,13.31485822,-0.973119182,166.6851418,0.998618832,0,988.2455782,120.9573154,1067.409722,5,13,8% -2018-05-10 22:00:00,32.07960812,239.2660092,862.3536612,882.3654014,114.7157546,977.7808405,860.0234029,117.7574375,111.2566514,6.500786158,212.5467324,0,212.5467324,3.459103258,209.0876291,0.559894784,4.175979648,0.615835473,-0.615835473,0.424839621,0.424839621,0.133026344,3.259176314,104.8263136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9441251,2.506108535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361262145,100.7630399,109.3053873,103.2691484,860.0234029,0,0.974679426,12.92096855,-0.974679426,167.0790315,0.998701082,0,968.2116903,103.2691484,1035.799283,5,14,7% -2018-05-10 23:00:00,42.97380637,254.5768179,727.1110359,848.8575717,106.0313118,889.2133394,780.8979928,108.3153467,102.8340765,5.481270122,179.4937241,0,179.4937241,3.197235264,176.2964889,0.750034413,4.443203672,0.928689904,-0.928689904,0.371338363,0.371338363,0.145825474,2.537900661,81.62760923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.84802584,2.316386065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.838700389,78.46356284,100.6867262,80.77994891,780.8979928,0,0.919939951,23.08269527,-0.919939951,156.9173047,0.995648626,0,878.18674,80.77994891,931.055601,5,15,6% -2018-05-10 00:00:00,54.61794206,265.6128347,549.5769901,787.8202381,93.40867698,734.9724884,640.2374841,94.73500422,90.59206073,4.142943494,136.0679203,0,136.0679203,2.816616252,133.251304,0.95326292,4.635818501,1.356115748,-1.356115748,0.298244238,0.298244238,0.169964679,1.729753198,55.63480882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.08053461,2.040628887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253200303,53.47829441,88.33373491,55.5189233,640.2374841,0,0.812669507,35.64242453,-0.812669507,144.3575755,0.988474374,0,721.1920814,55.5189233,757.5281063,5,16,5% -2018-05-10 01:00:00,66.42921356,274.8339632,344.0831526,671.8221599,75.43373026,519.3315535,443.5785844,75.75296912,73.15912497,2.593844146,85.7015493,0,85.7015493,2.274605288,83.42694401,1.159408496,4.796757554,2.080141436,-2.080141436,0.174428554,0.174428554,0.219231106,0.921902777,29.65156233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.32333367,1.647943788,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.667915424,28.50220956,70.99124909,30.15015335,443.5785844,0,0.660261913,48.68014918,-0.660261913,131.3198508,0.974272476,0,503.1576547,30.15015335,522.8903271,5,17,4% -2018-05-10 02:00:00,78.06698532,283.4773687,133.3921149,420.8608246,46.37157121,245.2201569,199.2412936,45.97886336,44.97329725,1.005566107,33.74073658,0,33.74073658,1.398273965,32.34246261,1.362525931,4.947613438,3.946833444,-3.946833444,0,0,0.347633526,0.349568491,11.24332431,0.12648084,1,0.248145716,0,0.932164939,0.970926902,0.724496596,1,43.44529601,1.013044728,0.020413395,0.312029739,0.943742157,0.668238752,0.961238037,0.922476074,0.245776242,10.80751099,43.69107226,11.82055572,174.0410873,0,0.473413732,61.74388158,-0.473413732,118.2561184,0.944384137,0,208.0527143,11.82055572,215.7890316,5,18,4% -2018-05-10 03:00:00,88.99644932,292.3244516,0.712888563,4.737169902,0.629920026,1.891971258,1.27567159,0.616299668,0.610925613,0.005374055,0.191842499,0,0.191842499,0.018994413,0.172848086,1.553281063,5.102024165,42.20708433,-42.20708433,0,0,0.883616401,0.004748603,0.152731403,0.869921793,1,0.023688273,0,0.959081833,0.997843797,0.724496596,1,0.589007997,0.013761388,0.105212569,0.312029739,0.745286477,0.469783073,0.961238037,0.922476074,0.003368894,0.146811234,0.592376891,0.160572622,0.165937073,0,0.269289811,74.37798912,-0.269289811,105.6220109,0.864326432,0,0.73580069,0.160572622,0.840892259,5,19,14% -2018-05-10 04:00:00,99.92677966,302.0114321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744051316,5.271093868,-3.516973951,3.516973951,1,0.868408343,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045370044,87.39959532,-0.045370044,92.60040468,0,0,0,0,0,5,20,0% -2018-05-10 05:00:00,109.3092105,313.1441176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907805625,5.465395885,-1.289325018,1.289325018,1,0.750641253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164908972,99.49194651,0.164908972,80.50805349,0,0.746802428,0,0,0,5,21,0% -2018-05-10 06:00:00,116.9726979,326.2580796,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041558714,5.694277701,-0.466765713,0.466765713,1,0.609975328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.353803763,110.7201476,0.353803763,69.27985244,0,0.908678722,0,0,0,5,22,0% -2018-05-10 07:00:00,122.1888546,341.5549885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132597821,5.961259126,0.043110368,-0.043110368,1,0.522781383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508439844,120.5599643,0.508439844,59.44003567,0,0.951659949,0,0,0,5,23,0% -2018-05-11 08:00:00,124.2433325,358.4558122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168455225,6.256234146,0.465066336,-0.465066336,1,0.450622662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618278852,128.1905557,0.618278852,51.80944425,0,0.969130341,0,0,0,5,0,0% -2018-05-11 09:00:00,122.7866131,15.50234428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143030675,0.27056695,0.901588846,-0.901588846,1,0.375972916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675836059,132.5191087,0.675836059,47.48089133,0,0.976017561,0,0,0,5,1,0% -2018-05-11 10:00:00,118.0709059,31.14259658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060726059,0.543540848,1.460177899,-1.460177899,1,0.280448563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677189843,132.6244358,0.677189843,47.37556418,0,0.976165461,0,0,0,5,2,0% -2018-05-11 11:00:00,110.7749145,44.62966689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933386986,0.778934631,2.381772088,-2.381772088,1,0.122846674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622248426,128.480513,0.622248426,51.51948703,0,0.969646241,0,0,0,5,3,0% -2018-05-11 12:00:00,101.6425773,56.06202475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773997635,0.978466917,4.710411506,-4.710411506,1,0,#DIV/0!,0,0,0.215916346,1,0.20918989,0,0.937648662,0.976410625,0.724496596,1,0,0,0.033510492,0.312029739,0.909368037,0.633864633,0.961238037,0.922476074,0,0,0,0,0,0,-0.514755796,120.9811334,0.514755796,59.01886658,0,0.952866562,0,0,0,5,4,0% -2018-05-11 13:00:00,91.27799131,65.94275142,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593101483,1.15091813,44.71290923,-44.71290923,1,0,#DIV/0!,0,0,0.876789693,1,0.022361178,0,0.959206205,0.997968168,0.724496596,1,0,0,0.105796489,0.312029739,0.744118971,0.468615567,0.961238037,0.922476074,0,0,0,0,0,0,-0.362036379,111.2253098,0.362036379,68.77469018,0,0.911892332,0,0,0,5,5,0% -2018-05-11 14:00:00,80.0293791,74.8717401,99.80203593,350.1704177,39.17241528,38.74357233,0,38.74357233,37.99122243,0.752349903,85.93648432,60.55713238,25.37935193,1.181192852,24.19815908,1.396776164,1.306758381,-5.667786143,5.667786143,0.500597796,0.500597796,0.392501164,0.524097282,16.85677015,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.51860807,0.8557702,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.379706697,16.20336865,36.89831476,17.05913885,0,60.55713238,-0.172936174,99.95857852,0.172936174,80.04142148,0,0.760875991,36.89831476,63.13560697,78.21930681,5,6,112% -2018-05-11 15:00:00,68.4490148,83.47283097,307.1637967,641.0353256,71.69291723,94.80898517,22.96234347,71.8466417,69.53111126,2.315530446,76.63722471,0,76.63722471,2.161805973,74.47541874,1.194660678,1.456875736,-2.462357659,2.462357659,0.951241649,0.951241649,0.233402888,2.228980524,71.69167573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.83594888,1.566221068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614888802,68.91276564,68.45083768,70.4789867,22.96234347,0,0.035820715,87.94718507,-0.035820715,92.05281493,0,0,68.45083768,70.4789867,114.5779249,5,7,67% -2018-05-11 16:00:00,56.63506454,92.48240281,515.7337595,772.2747875,91.00601313,287.4292121,195.2795471,92.14966499,88.26184606,3.887818926,127.789788,0,127.789788,2.744167072,125.045621,0.988468348,1.614122429,-1.403182859,1.403182859,0.770112091,0.770112091,0.17645929,3.15176907,101.3717274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.84064364,1.988139702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.283445962,97.44236026,87.1240896,99.43049996,195.2795471,0,0.252862777,75.35301854,-0.252862777,104.6469815,0.852264293,0,253.5538747,99.43049996,318.6291483,5,8,26% -2018-05-11 17:00:00,44.91220374,103.0140671,699.4704265,840.219697,104.435681,495.5775472,389.0180838,106.5594634,101.2865599,5.272903532,172.7438242,0,172.7438242,3.149121109,169.5947031,0.78386583,1.797934647,-0.835970917,0.835970917,0.673113136,0.673113136,0.149306786,3.806612214,122.4337339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.36049399,2.281527523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757877591,117.6879621,100.1183716,119.9694896,389.0180838,0,0.462995673,62.41941764,-0.462995673,117.5805824,0.94200763,0,466.5763747,119.9694896,545.0940062,5,9,17% -2018-05-11 18:00:00,33.7856522,117.2179793,843.1390807,877.5410585,113.7938665,688.7169472,571.9984471,116.7185001,110.3625616,6.355938534,207.8601366,0,207.8601366,3.43130493,204.4288316,0.589670871,2.045839681,-0.454445884,0.454445884,0.607868513,0.607868513,0.134964526,4.19995558,135.0850087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.084692,2.485968741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.042853521,129.8488486,109.1275455,132.3348173,571.9984471,0,0.651819583,49.32106845,-0.651819583,130.6789316,0.973291657,0,665.8488621,132.3348173,752.4593533,5,10,13% -2018-05-11 19:00:00,24.44281956,139.7310987,936.0158544,896.8950238,119.5053377,846.2545096,723.2966159,122.9578937,115.9018108,7.056082886,230.5514076,0,230.5514076,3.603526859,226.9478807,0.42660768,2.438767739,-0.157458326,0.157458326,0.557080649,0.557080649,0.12767448,4.329825179,139.2620614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4092291,2.610742942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136943603,133.8639906,114.5461727,136.4747335,723.2966159,0,0.806445121,36.24994994,-0.806445121,143.7500501,0.987999501,0,829.1628682,136.4747335,918.4828517,5,11,11% -2018-05-11 20:00:00,19.85735027,176.2515868,971.4092979,903.5023008,121.6281257,953.1920156,827.908533,125.2834826,117.960589,7.322893613,239.1969676,0,239.1969676,3.66753675,235.5294309,0.346576143,3.076170502,0.101070761,-0.101070761,0.512869572,0.512869572,0.125207908,4.202331497,135.1614264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.388205,2.657117891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044574864,129.9223041,116.4327798,132.579422,827.908533,0,0.916332512,23.60432419,-0.916332512,156.3956758,0.995434655,0,940.5616244,132.579422,1027.332205,5,12,9% -2018-05-11 21:00:00,23.13568384,214.8518719,946.8104944,898.9512573,120.1556199,999.2486873,875.5787452,123.6699421,116.5324847,7.137457441,233.1883014,0,233.1883014,3.623135268,229.5651662,0.403793858,3.749872569,0.349366338,-0.349366338,0.470408527,0.470408527,0.12690567,3.837216228,123.4180642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0154568,2.624949168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780050095,118.6341378,114.7955069,121.2590869,875.5787452,0,0.974000245,13.09386127,-0.974000245,166.9061387,0.998665311,0,989.2056265,121.2590869,1068.567274,5,13,8% -2018-05-11 22:00:00,31.90487001,239.6190986,863.9882081,882.1640085,115.095567,978.717939,860.5798199,118.1381191,111.625011,6.513108063,212.9545,0,212.9545,3.470556003,209.483944,0.556845029,4.182142222,0.612372746,-0.612372746,0.425431782,0.425431782,0.13321428,3.269400966,105.1551736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2982065,2.51440601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368669871,101.0791526,109.6668763,103.5935586,860.5798199,0,0.975532681,12.70048562,-0.975532681,167.2995144,0.998745951,0,969.1674868,103.5935586,1036.967399,5,14,7% -2018-05-11 23:00:00,42.82532601,254.8827495,728.918228,848.7540214,106.4170205,890.2765292,781.573481,108.7030482,103.2081547,5.494893499,179.9435293,0,179.9435293,3.208865805,176.7346635,0.747442942,4.448543185,0.923468043,-0.923468043,0.372231353,0.372231353,0.145993085,2.54897798,81.98389389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.207604,2.324812352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.84672587,78.80603722,101.0543299,81.13084957,781.573481,0,0.920848045,22.94962317,-0.920848045,157.0503768,0.995702225,0,879.2687838,81.13084957,932.3673023,5,15,6% -2018-05-11 00:00:00,54.47941007,265.8764225,551.6171849,787.9753555,93.80706466,736.3208728,641.1841139,95.13675889,90.97843555,4.158323344,136.574602,0,136.574602,2.828629111,133.7459729,0.95084508,4.640418977,1.347445017,-1.347445017,0.299727021,0.299727021,0.170058271,1.741565,56.014717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.45193278,2.049332162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261757914,53.84347661,88.7136907,55.89280877,641.1841139,0,0.813710872,35.53990543,-0.813710872,144.4600946,0.988553113,0,722.5582425,55.89280877,759.138968,5,16,5% -2018-05-11 01:00:00,66.29055539,275.0678997,346.3754222,672.738862,75.86799465,521.2112699,445.019851,76.19141893,73.58029469,2.611124242,86.27043128,0,86.27043128,2.287699962,83.98273132,1.156988455,4.800840516,2.062560552,-2.062560552,0.177435062,0.177435062,0.219034001,0.933750436,30.03262375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72817801,1.657430835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.676499012,28.8685003,71.40467703,30.52593113,445.019851,0,0.661504599,48.58527677,-0.661504599,131.4147232,0.974414736,0,505.0385774,30.52593113,525.0171888,5,17,4% -2018-05-11 02:00:00,77.92163525,283.6911612,135.7643262,424.4191909,46.95489449,248.1210959,201.5586159,46.56248001,45.53903118,1.023448838,34.33349602,0,34.33349602,1.415863314,32.91763271,1.359989094,4.951344821,3.888281384,-3.888281384,0,0,0.345855909,0.353965828,11.38475779,0.118773154,1,0.251727656,0,0.93164435,0.970406313,0.724496596,1,43.98170707,1.025788151,0.019235463,0.312029739,0.946899774,0.67139637,0.961238037,0.922476074,0.249233987,10.94346223,44.23094106,11.96925038,177.6188634,0,0.474904576,61.64686283,-0.474904576,118.3531372,0.944715691,0,212.0302684,11.96925038,219.8639034,5,18,4% -2018-05-11 03:00:00,88.85489834,292.5236203,0.942362412,5.988782386,0.822679807,2.426723209,1.621746307,0.804976902,0.797872976,0.007103926,0.253293509,0,0.253293509,0.024806832,0.228486677,1.550810533,5.105500314,36.8712208,-36.8712208,0,0,0.872997264,0.006201708,0.199468244,0.852402803,1,0.027114777,0,0.958758758,0.997520721,0.724496596,1,0.76953246,0.017972465,0.103710559,0.312029739,0.748302238,0.472798833,0.961238037,0.922476074,0.004388569,0.191736463,0.773921028,0.209708928,0.239365209,0,0.270797335,74.2882816,-0.270797335,105.7117184,0.865360073,0,0.981058123,0.209708928,1.118308423,5,19,14% -2018-05-11 04:00:00,99.74945611,302.1971333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740956436,5.274334967,-3.567341906,3.567341906,1,0.859794915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0474847,87.27830365,-0.0474847,92.72169635,0,0,0,0,0,5,20,0% -2018-05-11 05:00:00,109.1097348,313.3116307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904324118,5.46831954,-1.296319764,1.296319764,1,0.751837425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162486156,99.35123115,0.162486156,80.64876885,0,0.742281476,0,0,0,5,21,0% -2018-05-11 06:00:00,116.7493217,326.3944868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037660063,5.696658455,-0.4667127,0.4667127,1,0.609966262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351098908,110.554544,0.351098908,69.44545603,0,0.907589987,0,0,0,5,22,0% -2018-05-11 07:00:00,121.9449678,341.6393976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128341194,5.962732343,0.045881947,-0.045881947,1,0.522307415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50549857,120.3644541,0.50549857,59.63554588,0,0.951087752,0,0,0,5,23,0% -2018-05-12 08:00:00,123.9896078,358.4686886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164026895,6.256458881,0.469838895,-0.469838895,1,0.449806506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61516312,127.9637739,0.61516312,52.03622613,0,0.968720745,0,0,0,5,0,0% -2018-05-12 09:00:00,122.5381392,15.44127384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138693988,0.269501069,0.90887512,-0.90887512,1,0.37472689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672619911,132.2695943,0.672619911,47.73040574,0,0.975663812,0,0,0,5,1,0% -2018-05-12 10:00:00,117.8398438,31.02447814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056693264,0.541479292,1.472016141,-1.472016141,1,0.278424104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673954296,132.3729979,0.673954296,47.62700212,0,0.975810993,0,0,0,5,2,0% -2018-05-12 11:00:00,110.5663295,44.47603686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929746491,0.776253281,2.405100556,-2.405100556,1,0.118857271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619075904,128.2486834,0.619075904,51.75131655,0,0.969234459,0,0,0,5,3,0% -2018-05-12 12:00:00,101.455835,55.88764398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770738366,0.975423399,4.785694153,-4.785694153,1,0,#DIV/0!,0,0,0.223752075,1,0.205992179,0,0.938084172,0.976846136,0.724496596,1,0,0,0.034610055,0.312029739,0.906543601,0.631040197,0.961238037,0.922476074,0,0,0,0,0,0,-0.511724461,120.7787636,0.511724461,59.22123637,0,0.952291167,0,0,0,5,4,0% -2018-05-12 13:00:00,91.109611,65.75401962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590162692,1.147624139,51.48775639,-51.48775639,1,0,#DIV/0!,0,0,0.892180629,1,0.019419652,0,0.959480367,0.99824233,0.724496596,1,0,0,0.107095148,0.312029739,0.741532234,0.46602883,0.961238037,0.922476074,0,0,0,0,0,0,-0.359214761,111.0519797,0.359214761,68.94802033,0,0.910807502,0,0,0,5,5,0% -2018-05-12 14:00:00,79.87602763,74.66883594,102.2109537,354.8335836,39.83879468,39.40801737,0,39.40801737,38.63750803,0.770509343,86.44705201,60.46353629,25.98351572,1.201286649,24.78222907,1.394099675,1.303217036,-5.581811781,5.581811781,0.515300278,0.515300278,0.389770306,0.542609505,17.45218688,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.13984237,0.870328088,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.393118739,16.77570585,37.53296111,17.64603394,0,60.46353629,-0.1703997,99.81105928,0.1703997,80.18894072,0,0.756572254,37.53296111,63.39106786,79.0211472,5,6,111% -2018-05-12 15:00:00,68.30313976,83.25145809,309.6110204,642.3064271,72.15300562,96.76590249,24.45459755,72.31130494,69.97732629,2.333978652,77.24445578,0,77.24445578,2.175679336,75.06877645,1.192114678,1.453012051,-2.446369622,2.446369622,0.948507534,0.948507534,0.233044048,2.241804109,72.1041263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.26486775,1.576272273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.624179446,69.30922881,68.88904719,70.88550108,24.45459755,0,0.038073101,87.81804463,-0.038073101,92.18195537,0,0,68.88904719,70.88550108,115.2821899,5,7,67% -2018-05-12 16:00:00,56.4910277,92.23441348,517.9196176,772.5566356,91.41615931,289.4131604,196.8492387,92.56392166,88.65962482,3.904296847,128.332142,0,128.332142,2.756534493,125.5756075,0.985954431,1.609794199,-1.398019029,1.398019029,0.769229024,0.769229024,0.176506462,3.162330492,101.7114191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22300371,1.997099857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.291097676,97.76888478,87.51410138,99.76598464,196.8492387,0,0.25480234,75.2381268,-0.25480234,104.7618732,0.853769463,0,255.5779702,99.76598464,320.8728119,5,8,26% -2018-05-12 17:00:00,44.76112918,102.7280928,701.3880606,840.1680744,104.827884,497.3186666,390.3643707,106.954296,101.6669365,5.287359468,173.2206031,0,173.2206031,3.160947475,170.0596557,0.781229081,1.792943454,-0.834260431,0.834260431,0.672820626,0.672820626,0.149457754,3.81599371,122.7354751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.72612644,2.290095685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764674453,117.9780071,100.4908009,120.2681028,390.3643707,0,0.464626522,62.3139461,-0.464626522,117.6860539,0.942386686,0,468.3649864,120.2681028,547.0780543,5,9,17% -2018-05-12 18:00:00,33.6133569,116.8871424,844.8353194,877.3600966,114.1766652,690.1663911,573.0638481,117.102543,110.7338175,6.368725497,208.2829521,0,208.2829521,3.442847723,204.8401043,0.586663751,2.040065487,-0.454304553,0.454304553,0.607844344,0.607844344,0.135146652,4.208726822,135.367122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4415573,2.494331455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.049208256,130.1200266,109.4907656,132.6143581,573.0638481,0,0.653168352,49.21908984,-0.653168352,130.7809102,0.973450057,0,667.3398013,132.6143581,754.1332463,5,10,13% -2018-05-12 19:00:00,24.2288248,139.4102417,937.5603289,896.6613011,119.8825383,847.4414027,724.1060395,123.3353632,116.2676374,7.067725787,230.9372573,0,230.9372573,3.614900848,227.3223564,0.422872767,2.433167728,-0.158261412,0.158261412,0.557217985,0.557217985,0.127866479,4.338417192,139.5384101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7608755,2.618983359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.143168487,134.1296274,114.904044,136.7486108,724.1060395,0,0.807558036,36.14197349,-0.807558036,143.8580265,0.988084945,0,830.3823204,136.7486108,919.8815512,5,11,11% -2018-05-12 20:00:00,19.6062089,176.2223453,972.8840623,903.250955,122.0026079,954.1845776,828.5267874,125.6577902,118.3237791,7.334011009,239.5658333,0,239.5658333,3.67882877,235.8870046,0.342192899,3.075660141,0.099511728,-0.099511728,0.513136182,0.513136182,0.125403029,4.211118562,135.4440486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7373172,2.665298921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.050941063,130.1939714,116.7882582,132.8592703,828.5267874,0,0.917271975,23.46953362,-0.917271975,156.5304664,0.99549054,0,941.5788373,132.8592703,1028.532572,5,12,9% -2018-05-12 21:00:00,22.91674921,215.1663394,948.3027648,898.7060618,120.5301218,1000.139419,876.0950177,124.0444008,116.895694,7.148706805,233.5614123,0,233.5614123,3.634427882,229.9269844,0.399972728,3.755361062,0.347008113,-0.347008113,0.470811807,0.470811807,0.127100886,3.846519652,123.7172943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3645874,2.633130629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786790394,118.9217691,115.1513778,121.5548997,876.0950177,0,0.974840446,12.87964483,-0.974840446,167.1203552,0.998709555,0,990.1158433,121.5548997,1069.671094,5,13,8% -2018-05-12 22:00:00,31.7329283,239.9656769,865.5834391,881.95488,115.4728967,979.6166607,861.1005642,118.5160964,111.9909629,6.525133588,213.3526601,0,213.3526601,3.481933887,209.8707262,0.55384408,4.188191153,0.608947369,-0.608947369,0.426017556,0.426017556,0.133404697,3.279463696,105.4788256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6499733,2.522649248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375960284,101.3902592,110.0259336,103.9129085,861.1005642,0,0.976354441,12.48452188,-0.976354441,167.5154781,0.998789089,0,970.083782,103.9129085,1038.092702,5,14,7% -2018-05-12 23:00:00,42.67878053,255.1823657,730.6929566,848.6418733,106.800559,891.3097863,782.221386,109.0884003,103.5801281,5.508272153,180.3853979,0,180.3853979,3.220430907,177.164967,0.744885241,4.453772475,0.9183187,-0.9183187,0.373111943,0.373111943,0.146163389,2.559914544,82.33565137,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.56515901,2.333191229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.854649373,79.14415989,101.4198084,81.47735111,782.221386,0,0.921733196,22.81920684,-0.921733196,157.1807932,0.995754368,0,880.32017,81.47735111,933.6454668,5,15,6% -2018-05-12 00:00:00,54.34232653,266.134166,553.6297277,788.1179361,94.20336292,737.6446819,642.1084032,95.5362787,91.36278396,4.173494742,137.0745162,0,137.0745162,2.840578966,134.2339372,0.948452521,4.644917449,1.338921443,-1.338921443,0.301184638,0.301184638,0.170155897,1.753252556,56.39062898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.82138309,2.057989791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270225509,54.20481749,89.0916086,56.26280728,642.1084032,0,0.814736442,35.43868979,-0.814736442,144.5613102,0.988630461,0,723.8995351,56.26280728,760.7224172,5,16,5% -2018-05-12 01:00:00,66.15313821,275.2963338,348.6431061,673.6281788,76.299612,523.0652753,446.4381592,76.62711619,73.99889719,2.628219001,86.83327234,0,86.83327234,2.300714817,84.53255753,1.154590072,4.804827443,2.045359136,-2.045359136,0.180376677,0.180376677,0.218847327,0.945499291,30.41050734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.13055466,1.666860053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685011018,29.23173638,71.81556568,30.89859643,446.4381592,0,0.662736764,48.49107055,-0.662736764,131.5089295,0.974555264,0,506.8942239,30.89859643,527.1167372,5,17,4% -2018-05-12 02:00:00,77.77751557,283.8996055,138.1192031,427.8872063,47.53191086,250.9802711,203.8404219,47.13984926,46.09864837,1.041200895,34.92186237,0,34.92186237,1.433262486,33.48859988,1.357473731,4.954982861,3.831696189,-3.831696189,0,0,0.344136874,0.358315622,11.52466209,0.111194027,1,0.255286746,0,0.93112438,0.969886343,0.724496596,1,44.51175975,1.038393792,0.018069219,0.312029739,0.950036782,0.674533378,0.961238037,0.922476074,0.252672607,11.07794357,44.76443236,12.11633736,181.1745845,0,0.476388214,61.55022498,-0.476388214,118.449775,0.945043583,0,215.9823108,12.11633736,223.9122113,5,18,4% -2018-05-12 03:00:00,88.71353461,292.7174285,1.213590404,7.445185379,1.04643728,3.051496509,2.027464617,1.024031892,1.014883335,0.009148557,0.325802989,0,0.325802989,0.031553945,0.294249044,1.54834327,5.108882906,32.71647218,-32.71647218,0,0,0.862265618,0.007888486,0.253720834,0.83511118,1,0.030556129,0,0.958431449,0.997193412,0.724496596,1,0.979182645,0.022860726,0.10221016,0.312029739,0.75133288,0.475829476,0.961238037,0.922476074,0.005568525,0.243886116,0.984751171,0.266746842,0.334306248,0,0.27231889,74.19769898,-0.27231889,105.802301,0.866391731,0,1.27439134,0.266746842,1.448971813,5,19,14% -2018-05-12 04:00:00,99.57399196,302.3773505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737894009,5.27748035,-3.619236589,3.619236589,1,0.850920402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049590184,87.15752594,-0.049590184,92.84247406,0,0,0,0,0,5,20,0% -2018-05-12 05:00:00,108.9127344,313.4735456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.900885813,5.471145488,-1.303498463,1.303498463,1,0.753065055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.160076904,99.21136002,0.160076904,80.78863998,0,0.737650131,0,0,0,5,21,0% -2018-05-12 06:00:00,116.5292451,326.525447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033819002,5.698944142,-0.466755956,0.466755956,1,0.609973659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34841408,110.3903438,0.34841408,69.6096562,0,0.906492596,0,0,0,5,22,0% -2018-05-12 07:00:00,121.7053092,341.7191621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124158363,5.964124495,0.048564941,-0.048564941,1,0.521848596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502585408,120.1711971,0.502585408,59.82880287,0,0.950514422,0,0,0,5,23,0% -2018-05-13 08:00:00,123.7409001,358.4785541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159686126,6.256631067,0.474511839,-0.474511839,1,0.449007386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612084657,127.7403904,0.612084657,52.25960963,0,0.968311953,0,0,0,5,0,0% -2018-05-13 09:00:00,122.2950988,15.37917965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134452134,0.268417321,0.916037073,-0.916037073,1,0.373502124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669450624,132.0246778,0.669450624,47.97532218,0,0.975311893,0,0,0,5,1,0% -2018-05-13 10:00:00,117.6142665,30.90693776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052756197,0.539427826,1.483686017,-1.483686017,1,0.276428437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67077498,132.1269064,0.67077498,47.87309363,0,0.975459355,0,0,0,5,2,0% -2018-05-13 11:00:00,110.3630954,44.32395978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926199387,0.773599036,2.428196534,-2.428196534,1,0.114907626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615968115,128.022299,0.615968115,51.977701,0,0.968826967,0,0,0,5,3,0% -2018-05-13 12:00:00,101.2742795,55.7153382,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767569624,0.972416095,4.861136634,-4.861136634,1,0,#DIV/0!,0,0,0.231448887,1,0.202882943,0,0.938505485,0.977267448,0.724496596,1,0,0,0.035682935,0.312029739,0.903796895,0.628293491,0.961238037,0.922476074,0,0,0,0,0,0,-0.508764909,120.5815959,0.508764909,59.41840407,0,0.951722782,0,0,0,5,4,0% -2018-05-13 13:00:00,90.94629915,65.5676496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587312363,1.144371368,60.36064782,-60.36064782,1,0,#DIV/0!,0,0,0.907339843,1,0.01656557,0,0.95974439,0.998506353,0.724496596,1,0,0,0.108361034,0.312029739,0.739023843,0.463520439,0.961238037,0.922476074,0,0,0,0,0,0,-0.356470039,110.8835666,0.356470039,69.11643337,0,0.909735758,0,0,0,5,5,0% -2018-05-13 14:00:00,79.72763006,74.46847757,104.545725,359.2437293,40.48260628,40.05001617,0,40.05001617,39.26190633,0.788109836,86.90103951,60.33201814,26.56902137,1.220699944,25.34832142,1.391509649,1.299720123,-5.500996504,5.500996504,0.529120504,0.529120504,0.387223928,0.560705717,18.03422328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.74003777,0.884392954,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.406229383,17.33518138,38.14626715,18.21957433,0,60.33201814,-0.167941743,99.66816917,0.167941743,80.33183083,0,0.752277712,38.14626715,63.60600691,79.77512655,5,6,109% -2018-05-13 15:00:00,68.16233217,83.03276307,311.9641354,643.4833744,72.60236895,98.66227414,25.89741706,72.76485708,70.41313965,2.351717427,77.82854572,0,77.82854572,2.189229298,75.63931642,1.189657122,1.449195103,-2.431140424,2.431140424,0.945903188,0.945903188,0.232726653,2.254104592,72.49975213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68378813,1.586089174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.633091104,69.68951941,69.31687923,71.27560858,25.89741706,0,0.040245666,87.69347025,-0.040245666,92.30652975,0,0,69.31687923,71.27560858,115.9653395,5,7,67% -2018-05-13 16:00:00,56.3522392,91.98914734,520.0134639,772.7946738,91.81901228,291.3190679,198.3486565,92.97041143,89.05033028,3.920081145,128.8519668,0,128.8519668,2.768681996,126.0832848,0.983532115,1.605513497,-1.393109859,1.393109859,0.768389506,0.768389506,0.176570452,3.172463168,102.0373207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.59856466,2.005900681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298438765,98.08215387,87.89700343,100.0880546,198.3486565,0,0.256664109,75.12778616,-0.256664109,104.8722138,0.855192864,0,257.5233591,100.0880546,323.028989,5,8,25% -2018-05-13 17:00:00,44.61562442,102.4445796,703.2203344,840.0913508,105.2142907,498.9800524,391.6371888,107.3428636,102.0416917,5.301171922,173.6765107,0,173.6765107,3.172599065,170.5039117,0.778689544,1.787995215,-0.832663099,0.832663099,0.672547466,0.672547466,0.149617816,3.825008643,123.0254263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.08635536,2.298537222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771205741,118.2567193,100.8575611,120.5552565,391.6371888,0,0.466184051,62.21312128,-0.466184051,117.7868787,0.942746223,0,470.0720418,120.5552565,548.9730461,5,9,17% -2018-05-13 18:00:00,33.44708087,116.5573976,846.4549516,877.1626348,114.5546222,691.5406918,574.0593791,117.4813127,111.1003777,6.38093497,208.6870475,0,208.6870475,3.454244522,205.2328029,0.583761686,2.034310355,-0.454217981,0.454217981,0.607829539,0.607829539,0.135334576,4.217183928,135.6391316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.793909,2.502588398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.0553354,130.3814926,109.8492444,132.884081,574.0593791,0,0.654450334,49.12201552,-0.654450334,130.8779845,0.973600008,0,668.7534607,132.884081,755.723434,5,10,13% -2018-05-13 19:00:00,24.02105715,139.0860954,939.0379979,896.4156042,120.2556482,848.56104,724.8526782,123.7083618,116.6294967,7.078865079,231.3067859,0,231.3067859,3.62615149,227.6806344,0.419246537,2.427510308,-0.159088147,0.159088147,0.557359365,0.557359365,0.128062601,4.346742245,139.8061724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1087085,2.62713441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14919996,134.3870107,115.2579084,137.0141451,724.8526782,0,0.808612294,36.03943046,-0.808612294,143.9605695,0.988165669,0,831.5324403,137.0141451,921.2054581,5,11,11% -2018-05-13 20:00:00,19.36030272,176.1862537,974.3020446,902.99018,122.3736397,955.1195343,829.091211,126.0283233,118.6836229,7.344700359,239.9208275,0,239.9208275,3.690016747,236.2308108,0.337901027,3.075030225,0.097950103,-0.097950103,0.513403235,0.513403235,0.125601337,4.21968048,135.7194293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0832127,2.673404572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057144143,130.4586778,117.1403569,133.1320823,829.091211,0,0.918161935,23.34116844,-0.918161935,156.6588316,0.995543375,0,942.5366194,133.1320823,1029.668905,5,12,9% -2018-05-13 21:00:00,22.70180247,215.4748797,949.7477502,898.4528103,120.9017189,1000.982804,876.567118,124.4156858,117.256086,7.159599716,233.9229707,0,233.9229707,3.645632906,230.2773378,0.396221199,3.760746106,0.344665994,-0.344665994,0.471212333,0.471212333,0.127298768,3.855633117,124.0104147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.71101,2.64124863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793393068,119.2035276,115.504403,121.8447762,876.567118,0,0.975640688,12.67230728,-0.975640688,167.3276927,0.998751625,0,990.9772365,121.8447762,1070.722206,5,13,8% -2018-05-13 22:00:00,31.56379174,240.305502,867.1396815,881.738111,115.8477595,980.4778317,861.5864444,118.8913873,112.3545221,6.536865201,213.7412926,0,213.7412926,3.493237381,210.2480552,0.55089209,4.194122221,0.605560412,-0.605560412,0.42659676,0.42659676,0.133597576,3.289363924,105.7972509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9994402,2.530838591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383132965,101.6963418,110.3825732,104.2271804,861.5864444,0,0.977145519,12.27309023,-0.977145519,167.7269098,0.998830549,0,970.9614343,104.2271804,1039.176039,5,14,7% -2018-05-13 23:00:00,42.53418394,255.475514,732.4352363,848.5211829,107.1819249,892.313674,782.8422734,109.4714006,103.9499944,5.521406193,180.8193334,0,180.8193334,3.231930495,177.5874029,0.742361554,4.458888878,0.913243191,-0.913243191,0.373979906,0.373979906,0.146336385,2.570708328,82.68281657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.92068855,2.341522642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862469432,79.47786828,101.783158,81.81939092,782.8422734,0,0.922596028,22.69139621,-0.922596028,157.3086038,0.995805099,0,881.3414859,81.81939092,934.8906409,5,15,6% -2018-05-13 00:00:00,54.20671926,266.3859593,555.614266,788.2479703,94.5975442,738.9441151,643.0105808,95.93353424,91.74507921,4.18845503,137.5675765,0,137.5675765,2.852464985,134.7151115,0.946085728,4.64931207,1.330546385,-1.330546385,0.302616857,0.302616857,0.170257587,1.764812346,56.76243155,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.18885984,2.066601172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278600537,54.56220827,89.46746037,56.62880944,643.0105808,0,0.815746574,35.3387516,-0.815746574,144.6612484,0.988706454,0,725.2161717,56.62880944,762.2785949,5,16,5% -2018-05-13 01:00:00,66.01700514,275.519186,350.8854514,674.4900562,76.72852099,524.8933593,447.8333635,77.05999573,74.41487298,2.645122747,87.3898881,0,87.3898881,2.313648006,85.07624009,1.152214102,4.808716948,2.028535929,-2.028535929,0.183253615,0.183253615,0.218671138,0.957144217,30.78504818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53040642,1.676230104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.693447727,29.59175927,72.22385415,31.26798938,447.8333635,0,0.663958437,48.39753094,-0.663958437,131.6024691,0.974694081,0,508.7243831,31.26798938,529.1886567,5,17,4% -2018-05-13 02:00:00,77.63468538,284.1026406,140.4554048,431.265216,48.10253097,253.7971234,206.086249,47.71087435,46.65206218,1.05881217,35.50550782,0,35.50550782,1.450468788,34.05503904,1.354980874,4.958526492,3.777017776,-3.777017776,0,0,0.342475471,0.362617197,11.66301555,0.103745405,1,0.258820667,0,0.930605428,0.969367392,0.724496596,1,45.03538237,1.0508597,0.016915291,0.312029739,0.953151157,0.677647753,0.961238037,0.922476074,0.25609113,11.21093417,45.2914735,12.26179387,184.7057477,0,0.477864296,61.45399149,-0.477864296,118.5460085,0.945367785,0,219.906337,12.26179387,227.9314359,5,18,4% -2018-05-13 03:00:00,88.57251853,292.9058323,1.528548268,9.112563415,1.301539056,3.769312104,2.49549641,1.273815694,1.262292852,0.011522843,0.409860429,0,0.409860429,0.039246205,0.370614225,1.545882075,5.112171171,29.39370012,-29.39370012,0,0,0.85148705,0.009811551,0.315573213,0.818064886,1,0.034007779,0,0.958100312,0.996862275,0.724496596,1,1.218305069,0.028433742,0.10071335,0.312029739,0.754374306,0.478870902,0.961238037,0.922476074,0.00690979,0.303340976,1.22521486,0.331774717,0.454018424,0,0.273852296,74.10636985,-0.273852296,105.8936302,0.867419825,0,1.619039442,0.331774717,1.836179359,5,19,13% -2018-05-13 04:00:00,99.4004737,302.5520592,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734865544,5.280529592,-3.672685467,3.672685467,1,0.841780105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051685414,87.03732384,-0.051685414,92.96267616,0,0,0,0,0,5,20,0% -2018-05-13 05:00:00,108.7183057,313.6298634,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897492392,5.47387375,-1.310859357,1.310859357,1,0.754323842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.157682625,99.07241299,0.157682625,80.92758701,0,0.732907359,0,0,0,5,21,0% -2018-05-13 06:00:00,116.3125681,326.6509918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030037274,5.701135311,-0.466896495,0.466896495,1,0.609997693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.345750952,110.2276434,0.345750952,69.77235663,0,0.905387238,0,0,0,5,22,0% -2018-05-13 07:00:00,121.4699732,341.794337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120050974,5.965436546,0.05115665,-0.05115665,1,0.521405387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499702217,119.9803008,0.499702217,60.01969922,0,0.949940408,0,0,0,5,23,0% -2018-05-14 08:00:00,123.4972919,358.4854673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15543436,6.256751726,0.479080815,-0.479080815,1,0.448226045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60904541,127.5205119,0.60904541,52.47948814,0,0.967904315,0,0,0,5,0,0% -2018-05-14 09:00:00,122.0575638,15.31610916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130306365,0.267316533,0.923067772,-0.923067772,1,0.372299804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666330136,131.7844509,0.666330136,48.2155491,0,0.974962121,0,0,0,5,1,0% -2018-05-14 10:00:00,117.3942373,30.79001769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048915964,0.537387185,1.495175065,-1.495175065,1,0.274463695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667653727,131.8862356,0.667653727,48.11376445,0,0.97511088,0,0,0,5,2,0% -2018-05-14 11:00:00,110.165267,44.17348418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92274663,0.770972741,2.451031082,-2.451031082,1,0.111002689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612926692,127.801424,0.612926692,52.19857599,0,0.968424176,0,0,0,5,3,0% -2018-05-14 12:00:00,101.0979554,55.54516829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764492188,0.96944607,4.93662679,-4.93662679,1,0,#DIV/0!,0,0,0.238999285,1,0.199863058,0,0.938912659,0.977674622,0.724496596,1,0,0,0.036728548,0.312029739,0.90112873,0.625625326,0.961238037,0.922476074,0,0,0,0,0,0,-0.505878495,120.3896862,0.505878495,59.61031382,0,0.951162037,0,0,0,5,4,0% -2018-05-14 13:00:00,90.17994887,65.3837172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573937027,1.141161142,317.3664179,-317.3664179,1,0,#DIV/0!,0,0,0.981732724,1,0.003150922,0,0.960959039,0.999721002,0.724496596,1,0,0,0.114389556,0.312029739,0.727255251,0.451751847,0.961238037,0.922476074,0,0,0,0,0,0,-0.343860252,110.1122369,0.343860252,69.88776313,0,0.904592092,0,0,0,5,5,0% -2018-05-14 14:00:00,79.58421287,74.27075877,106.8046516,363.4072421,41.10420208,40.66989731,0,40.66989731,39.86475873,0.805138578,87.3022657,60.16679802,27.13546767,1.239443351,25.89602432,1.389006547,1.296269278,-5.425023008,5.425023008,0.542112737,0.542112737,0.384854044,0.578357209,18.60195594,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.31952242,0.897972489,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419017829,17.88090761,38.73854025,18.7788801,0,60.16679802,-0.165563013,99.5299426,0.165563013,80.4700574,0,0.748000181,38.73854025,63.78365591,80.48366737,5,6,108% -2018-05-14 15:00:00,68.02660442,82.8168638,314.2230392,644.5681734,73.04107938,100.4971854,27.28981801,73.20736734,70.83862135,2.368745997,78.38947183,0,78.38947183,2.202458036,76.18701379,1.187288226,1.44542695,-2.416647991,2.416647991,0.943424836,0.943424836,0.23244979,2.26588491,72.87864763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.09277732,1.59567335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641625904,70.05372817,69.73440322,71.64940152,27.28981801,0,0.042338141,87.57347793,-0.042338141,92.42652207,0,0,69.73440322,71.64940152,116.6275035,5,7,67% -2018-05-14 16:00:00,56.21870281,91.74675879,522.0156229,772.9895928,92.21460144,293.1469222,199.7777569,93.36916524,89.43399097,3.935174266,129.3493419,0,129.3493419,2.780610469,126.5687315,0.981201465,1.601283019,-1.388450671,1.388450671,0.767592738,0.767592738,0.176651038,3.182169707,102.3495164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96735391,2.014542819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.30547112,98.38224822,88.27282503,100.396791,199.7777569,0,0.258448185,75.02199719,-0.258448185,104.9780028,0.856537623,0,259.3899901,100.396791,325.0976819,5,8,25% -2018-05-14 17:00:00,44.4756902,102.1637418,704.9678333,839.9898716,105.5949328,500.5621576,392.8369564,107.7252013,102.410856,5.314345307,174.1116899,0,174.1116899,3.184076828,170.927613,0.776247231,1.78309367,-0.831177199,0.831177199,0.672293362,0.672293362,0.149786881,3.833659851,123.3036789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.44121015,2.306852823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.777473512,118.5241863,101.2186837,120.8310391,392.8369564,0,0.467668682,62.11692823,-0.467668682,117.8830718,0.943086705,0,471.6979943,120.8310391,550.7794927,5,9,17% -2018-05-14 18:00:00,33.28683657,116.2290501,847.9987148,876.9488987,114.9277747,692.8406143,574.9857635,117.8548508,111.4622783,6.392572508,209.0726026,0,209.0726026,3.465496446,205.6071062,0.580964896,2.02857961,-0.45418517,0.45418517,0.607823928,0.607823928,0.135528242,4.225329728,135.9011285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1417815,2.510740378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061237004,130.633334,110.2030186,133.1440744,574.9857635,0,0.655666213,49.02981492,-0.655666213,130.9701851,0.973741686,0,670.0906253,133.1440744,757.2307591,5,10,13% -2018-05-14 19:00:00,23.81957266,138.7589727,940.4496418,896.158105,120.6247065,849.6143799,725.5374467,124.0769332,116.9874266,7.089506647,231.6601838,0,231.6601838,3.63727996,228.0229038,0.415729969,2.42180094,-0.159937705,0.159937705,0.557504648,0.557504648,0.128262802,4.354802777,140.0654268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4527643,2.635196949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155039787,134.6362159,115.607804,137.2714129,725.5374467,0,0.809608754,35.94227679,-0.809608754,144.0577232,0.988241774,0,832.6142178,137.2714129,922.4556121,5,11,11% -2018-05-14 20:00:00,19.11971473,176.1431915,975.6639599,902.7201165,122.7412568,955.9979172,829.602795,126.3951221,119.0401551,7.354967052,240.2621247,0,240.2621247,3.70110176,236.5610229,0.333701974,3.074278647,0.096386736,-0.096386736,0.513670587,0.513670587,0.125802799,4.228018905,135.9876217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.425925,2.681435626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063185304,130.7164745,117.4891103,133.3979101,829.602795,0,0.919003332,23.21919191,-0.919003332,156.7808081,0.995593233,0,943.4360392,133.3979101,1030.742303,5,12,9% -2018-05-14 21:00:00,22.49087909,215.7771609,951.1459969,898.1916176,121.2704384,1001.779823,876.9959952,124.7838275,117.6136872,7.17014029,234.2731101,0,234.2731101,3.656751158,230.6163589,0.392539892,3.766021908,0.342340956,-0.342340956,0.471609938,0.471609938,0.127499289,3.864557162,124.2974427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0547498,2.649303766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.799858508,119.4794298,115.8546083,122.1287335,876.9959952,0,0.976401893,12.47193908,-0.976401893,167.5280609,0.998791578,0,991.7908225,122.1287335,1071.721636,5,13,8% -2018-05-14 22:00:00,31.39747261,240.6383381,868.6572212,881.5137854,116.2201683,981.3022564,862.0382499,119.2640065,112.7157014,6.548305056,214.1204671,0,214.1204671,3.50446688,210.6160002,0.547989274,4.199931307,0.602213054,-0.602213054,0.427169192,0.427169192,0.133792899,3.299100829,106.1104232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3466195,2.538974325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39018732,101.9973749,110.7368069,104.5363492,862.0382499,0,0.977906715,12.06620283,-0.977906715,167.9337972,0.998870379,0,971.80128,104.5363492,1040.21823,5,14,7% -2018-05-14 23:00:00,42.39155472,255.7620468,734.1450205,848.3919866,107.5611115,893.2887053,783.4366629,109.8520424,104.3177471,5.534295269,181.2453242,0,181.2453242,3.243364369,178.0019599,0.739872205,4.463889818,0.908242955,-0.908242955,0.374834997,0.374834997,0.146512077,2.581357023,83.02531523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2741864,2.349806444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870184376,79.80709102,102.1443708,82.15689747,783.4366629,0,0.923437132,22.56614452,-0.923437132,157.4338555,0.995854462,0,882.3332675,82.15689747,936.1033138,5,15,6% -2018-05-14 00:00:00,54.0726208,266.6317008,557.5703729,788.3654157,94.98957505,740.2192965,643.8908066,96.32848988,92.12528889,4.203200989,138.0536784,0,138.0536784,2.864286162,135.1893922,0.943745268,4.653601069,1.322321375,-1.322321375,0.304023416,0.304023416,0.170363383,1.776240549,57.13000185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.55433183,2.075165574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286880231,54.91553082,89.84121207,56.99069639,643.8908066,0,0.816741569,35.24006996,-0.816741569,144.75993,0.988781125,0,726.5082882,56.99069639,763.8075592,5,16,5% -2018-05-14 01:00:00,65.88220399,275.736381,353.1016247,675.3243789,77.1546519,526.6952153,449.2052316,77.48998367,74.82815448,2.661829198,87.9400744,0,87.9400744,2.326497425,85.61357698,1.149861378,4.812507716,2.012090042,-2.012090042,0.186066027,0.186066027,0.218505514,0.968679807,31.15607242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92766831,1.685539465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701805223,29.94840188,72.62947353,31.63394135,449.2052316,0,0.665169577,48.30466379,-0.665169577,131.6953362,0.974831198,0,510.5287478,31.63394135,531.2325297,5,17,4% -2018-05-14 02:00:00,77.49320811,284.3002097,142.7715239,434.5534488,48.66665255,256.5709913,208.2955458,48.27544547,47.19917341,1.076272054,36.08408806,0,36.08408806,1.467479135,34.61660892,1.352511629,4.961974723,3.724190036,-3.724190036,0,0,0.340870863,0.366869784,11.79979335,0.096429345,1,0.262326996,0,0.930087917,0.96884988,0.724496596,1,45.55249288,1.063183638,0.015774334,0.312029739,0.956240786,0.680737382,0.961238037,0.922476074,0.259488464,11.3424102,45.81198134,12.40559384,188.2097427,0,0.479332396,61.35819118,-0.479332396,118.6418088,0.945688252,0,223.799724,12.40559384,231.918937,5,18,4% -2018-05-14 03:00:00,88.43201347,293.0887919,1.888562583,10.99315009,1.587755788,4.58157779,3.027461915,1.554115876,1.539879093,0.014236782,0.505780559,0,0.505780559,0.047876695,0.457903863,1.543429799,5.11536442,26.6790735,-26.6790735,0,0,0.840721829,0.011969174,0.384969773,0.801281203,1,0.037465022,0,0.957765784,0.996527747,0.724496596,1,1.48670478,0.034686503,0.099222131,0.312029739,0.757422276,0.481918872,0.961238037,0.922476074,0.008410434,0.370047589,1.495115215,0.404734092,0.60161359,0,0.275395304,74.0144269,-0.275395304,105.9855731,0.868442801,0,2.017582206,0.404734092,2.282472574,5,19,13% -2018-05-14 04:00:00,99.22899103,302.7212401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731872607,5.283482356,-3.727712306,3.727712306,1,0.832369962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.053769228,86.91776376,-0.053769228,93.08223624,0,0,0,0,0,5,20,0% -2018-05-14 05:00:00,108.5265475,313.7805909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894145579,5.47650444,-1.318399834,1.318399834,1,0.75561334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155304799,98.93447404,0.155304799,81.06552596,0,0.728052448,0,0,0,5,21,0% -2018-05-14 06:00:00,116.0993915,326.7711577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026316641,5.703232602,-0.467135022,0.467135022,1,0.610038483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343111253,110.0665422,0.343111253,69.93345779,0,0.904274672,0,0,0,5,22,0% -2018-05-14 07:00:00,121.2390539,341.8649831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116020673,5.966669552,0.053654534,-0.053654534,1,0.520978224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496850892,119.7918745,0.496850892,60.20812554,0,0.949366186,0,0,0,5,23,0% -2018-05-15 08:00:00,123.2588649,358.4894925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151273024,6.256821978,0.483541583,-0.483541583,1,0.447463209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606047343,127.3042456,0.606047343,52.69575441,0,0.967498195,0,0,0,5,0,0% -2018-05-15 09:00:00,121.8256036,15.25211574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126257896,0.266199638,0.92996037,-0.92996037,1,0.3711211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663260379,131.5490044,0.663260379,48.45099558,0,0.974614825,0,0,0,5,1,0% -2018-05-15 10:00:00,117.1798163,30.67376589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045173611,0.535358209,1.506470855,-1.506470855,1,0.272532001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664592332,131.6510578,0.664592332,48.34894217,0,0.974765909,0,0,0,5,2,0% -2018-05-15 11:00:00,109.9728947,44.02466364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9193891,0.768375333,2.473574938,-2.473574938,1,0.107147462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609953207,127.5861196,0.609953207,52.41388038,0,0.968026499,0,0,0,5,3,0% -2018-05-15 12:00:00,100.9269024,55.37719942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761506751,0.96651446,5.012046149,-5.012046149,1,0,#DIV/0!,0,0,0.246395897,1,0.196933317,0,0.939305762,0.978067725,0.724496596,1,0,0,0.03774634,0.312029739,0.898539844,0.62303644,0.961238037,0.922476074,0,0,0,0,0,0,-0.503066494,120.2030858,0.503066494,59.79691419,0,0.95060956,0,0,0,5,4,0% -2018-05-15 13:00:00,90.05299245,65.20230193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571721219,1.137994849,1077.417909,-1077.417909,1,0,#DIV/0!,0,0,0.994586376,1,0.000928145,0,0.961156104,0.999918067,0.724496596,1,0,0,0.115401261,0.312029739,0.725308953,0.449805548,0.961238037,0.922476074,0,0,0,0,0,0,-0.341690749,109.9799172,0.341690749,70.02008284,0,0.903668851,0,0,0,5,5,0% -2018-05-15 14:00:00,79.44579639,74.07577662,108.9862457,367.3304373,41.70393325,41.26799015,0,41.26799015,40.44640579,0.821584356,87.65438253,59.97187801,27.68250452,1.257527459,26.42497706,1.386590724,1.292866198,-5.353601295,5.353601295,0.554326569,0.554326569,0.382653178,0.595537681,19.15453898,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.8786237,0.911074363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.431465023,18.41207145,39.31008872,19.32314581,0,59.97187801,-0.163264113,99.39640808,0.163264113,80.60359192,0,0.743747762,39.31008872,63.92709586,81.14909442,5,6,106% -2018-05-15 15:00:00,67.89596278,82.6038814,316.3877453,645.5627937,73.46921339,102.2698533,28.63094335,73.63891,71.25384553,2.385064467,78.92723971,0,78.92723971,2.215367856,76.71187185,1.185008099,1.441709705,-2.40287103,2.40287103,0.941068837,0.941068837,0.232212576,2.277148394,73.24092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.4919066,1.60502647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.64978626,70.40195816,70.14169286,72.00698463,28.63094335,0,0.044350362,87.45807769,-0.044350362,92.54192231,0,0,70.14169286,72.00698463,117.2688242,5,7,67% -2018-05-15 16:00:00,56.09041579,91.50740583,523.9265176,773.1420876,92.60296179,294.8968221,201.1366018,93.76022022,89.81064082,3.949579397,129.824371,0,129.824371,2.792320967,127.03205,0.978962434,1.597105522,-1.384036741,1.384036741,0.766837912,0.766837912,0.176747996,3.191453065,102.6481011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.32940407,2.023027035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.312196881,98.66925919,88.64160096,100.6922862,201.1366018,0,0.26015477,74.92075417,-0.26015477,105.0792458,0.857806714,0,261.1779285,100.6922862,327.079016,5,8,25% -2018-05-15 17:00:00,44.34132025,101.8857988,706.6312227,839.8639896,105.9698464,502.0655351,393.9641859,108.1013492,102.7744645,5.326884639,174.5263029,0,174.5263029,3.195381855,171.330921,0.773902033,1.778242649,-0.829800895,0.829800895,0.672058,0.672058,0.149964852,3.841950416,123.570332,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.79072451,2.315043277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.783479998,118.7805034,101.5742045,121.0955466,393.9641859,0,0.469080935,62.02534541,-0.469080935,117.9746546,0.943408586,0,473.2434002,121.0955466,552.4980136,5,9,17% -2018-05-15 18:00:00,33.13262894,115.9024164,849.4674033,876.7191188,115.296163,694.0670061,575.8438037,118.2232024,111.8195583,6.403644103,209.4398114,0,209.4398114,3.476604712,205.9632067,0.578273465,2.022878778,-0.454205013,0.454205013,0.607827321,0.607827321,0.135727589,4.233167188,136.1532082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.4852127,2.518788279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066915218,130.8756425,110.5521279,133.3944308,575.8438037,0,0.656816752,48.94245035,-0.656816752,131.0575497,0.973875267,0,671.3521658,133.3944308,758.6561529,5,10,13% -2018-05-15 19:00:00,23.62442106,138.4292158,941.7960736,895.8889773,120.9897541,850.6024407,726.1613175,124.4411232,117.3414666,7.099656619,231.9976493,0,231.9976493,3.648287489,228.3493618,0.412323931,2.416045597,-0.160809158,0.160809158,0.557653675,0.557653675,0.12846704,4.362601248,140.3162525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.793081,2.643171867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160689753,134.8773191,115.9537707,137.5204909,726.1613175,0,0.810548333,35.85046028,-0.810548333,144.1495397,0.988313364,0,833.6287052,137.5204909,923.6331161,5,11,11% -2018-05-15 20:00:00,18.88452739,176.0930618,976.9705297,902.4409035,123.1054954,956.8207911,830.062564,126.758227,119.3934105,7.364816527,240.5899008,0,240.5899008,3.712084898,236.8778159,0.329597181,3.073403718,0.094822569,-0.094822569,0.513938075,0.513938075,0.126007379,4.236135413,136.2486765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7654875,2.689392872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069065687,130.9674103,117.8345532,133.6568032,830.062564,0,0.919797142,23.10355649,-0.919797142,156.8964435,0.995640188,0,944.2782003,133.6568032,1031.753905,5,12,9% -2018-05-15 21:00:00,22.28401654,216.072856,952.4980322,897.9225927,121.6363062,1002.53146,877.3826051,125.1488553,117.9685228,7.180332504,234.611959,0,234.611959,3.667783422,230.9441756,0.388929459,3.771182762,0.340034065,-0.340034065,0.47200444,0.47200444,0.127702423,3.873292161,124.5783903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3958312,2.657296604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806186986,119.7494873,116.2020182,122.4067839,877.3826051,0,0.977124991,12.27862222,-0.977124991,167.7213778,0.998829474,0,992.5576239,122.4067839,1072.670416,5,13,8% -2018-05-15 22:00:00,31.23398676,240.9639549,870.1363033,881.2819764,116.5901337,982.0907158,862.4567498,119.633966,113.074511,6.559455001,214.4902435,0,214.4902435,3.515622702,210.9746208,0.545135907,4.205614392,0.598906574,-0.598906574,0.427734634,0.427734634,0.133990656,3.30867336,106.4183087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6915209,2.54705668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397122586,102.2933262,111.0886435,104.8403829,862.4567498,0,0.978638816,11.86387127,-0.978638816,168.1361287,0.998908628,0,972.604132,104.8403829,1041.220066,5,14,7% -2018-05-15 23:00:00,42.25091572,256.0418211,735.8222038,848.2543022,107.938108,894.2353436,784.0050292,110.2303144,104.6833758,5.546938585,181.6633446,0,181.6633446,3.254732206,178.4086124,0.737417591,4.468772801,0.90331955,-0.90331955,0.375676949,0.375676949,0.146690474,2.591858047,83.36306426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6256427,2.358042404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877792332,80.13174824,102.503435,82.48979064,784.0050292,0,0.924257062,22.44340839,-0.924257062,157.5565916,0.995902496,0,883.2960005,82.48979064,937.2839187,5,15,6% -2018-05-15 00:00:00,53.94006824,266.8712931,559.49755,788.4701985,95.37941637,741.4702777,644.7491737,96.72110392,92.50337506,4.217728865,138.5326999,0,138.5326999,2.876041316,135.6566586,0.94143179,4.657782744,1.314248108,-1.314248108,0.305404026,0.305404026,0.170473341,1.787533057,57.49320772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91776264,2.083682143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295061615,55.26465812,90.21282426,57.34834027,644.7491737,0,0.817721678,35.14262897,-0.817721678,144.857371,0.988854501,0,727.7759468,57.34834027,765.3092885,5,16,5% -2018-05-15 01:00:00,65.74878701,275.9478473,355.2907164,676.1309751,77.57792708,528.4704464,450.5534486,77.91699785,75.23866635,2.678331496,88.48360835,0,88.48360835,2.339260734,86.14434761,1.147532812,4.816198499,1.996020921,-1.996020921,0.188814009,0.188814009,0.218350561,0.980100391,31.52339765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32226794,1.694786438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710079397,30.30148887,73.03234733,31.99627531,450.5534486,0,0.666370075,48.21248016,-0.666370075,131.7875198,0.974966619,0,512.3069196,31.99627531,533.2478418,5,17,4% -2018-05-15 02:00:00,77.35315131,284.4922597,145.0660892,437.7520273,49.22416119,259.3011167,210.4676761,48.83344056,47.73987111,1.093569457,36.65724292,0,36.65724292,1.484290078,35.17295284,1.350067177,4.965326628,3.673160503,-3.673160503,0,0,0.339322315,0.371072519,11.93496778,0.089248004,1,0.265803216,0,0.929572288,0.968334251,0.724496596,1,46.06299971,1.075363108,0.014647025,0.312029739,0.959303475,0.683800071,0.961238037,0.922476074,0.262863394,11.472345,46.32586311,12.5477081,191.683856,0,0.480792008,61.26285792,-0.480792008,118.7371421,0.946004927,0,227.6597353,12.5477081,235.8719593,5,18,4% -2018-05-15 03:00:00,88.29218336,293.266272,2.294303096,13.08528606,1.90432742,5.488113325,3.623912977,1.864200348,1.846904922,0.017295426,0.613702846,0,0.613702846,0.057422498,0.556280348,1.540989303,5.118462031,24.42245487,-24.42245487,0,0,0.830024343,0.014355624,0.46172623,0.784776468,1,0.040923065,0,0.957428323,0.996190286,0.724496596,1,1.783686862,0.041602404,0.097738501,0.312029739,0.760472464,0.48496906,0.961238037,0.922476074,0.010065843,0.443828815,1.793752705,0.48543122,0.779951352,0,0.276945644,73.92200453,-0.276945644,106.0779955,0.869459157,0,2.47188855,0.48543122,2.789593575,5,19,13% -2018-05-15 04:00:00,99.0596367,302.8848781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728916816,5.286338377,-3.784336634,3.784336634,1,0.822686631,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055840385,86.79891657,-0.055840385,93.20108343,0,0,0,0,0,5,20,0% -2018-05-15 05:00:00,108.3375605,313.9257389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890847135,5.479037751,-1.326116408,1.326116408,1,0.756932952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152944976,98.79763101,0.152944976,81.20236899,0,0.723085045,0,0,0,5,21,0% -2018-05-15 06:00:00,115.8898175,326.8859862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022658885,5.705236737,-0.467471946,0.467471946,1,0.610096101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340496769,109.9071428,0.340496769,70.09285717,0,0.903155729,0,0,0,5,22,0% -2018-05-15 07:00:00,121.0126459,341.9311652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112069107,5.967824648,0.056056209,-0.056056209,1,0.520567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494033363,119.6060294,0.494033363,60.3939706,0,0.94879226,0,0,0,5,23,0% -2018-05-16 08:00:00,123.0257,358.4906984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147203529,6.256843025,0.487890002,-0.487890002,1,0.446719585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603092433,127.0916994,0.603092433,52.9083006,0,0.967093969,0,0,0,5,0,0% -2018-05-16 09:00:00,121.5992862,15.18725799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122307912,0.265067656,0.936708093,-0.936708093,1,0.369967171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660243274,131.3184289,0.660243274,48.68157112,0,0.974270338,0,0,0,5,1,0% -2018-05-16 10:00:00,116.9710606,30.5582356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041530138,0.533341825,1.517560988,-1.517560988,1,0.270635476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661592564,131.4214442,0.661592564,48.57855581,0,0.974424785,0,0,0,5,2,0% -2018-05-16 11:00:00,109.7860253,43.87755648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916127615,0.765807828,2.495798509,-2.495798509,1,0.103347008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607049186,127.3764443,0.607049186,52.62355565,0,0.967634351,0,0,0,5,3,0% -2018-05-16 12:00:00,100.7611562,55.21150086,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758613933,0.963622475,5.087269801,-5.087269801,1,0,#DIV/0!,0,0,0.253631466,1,0.194094443,0,0.939684869,0.978446832,0.724496596,1,0,0,0.038735781,0.312029739,0.896030909,0.620527505,0.961238037,0.922476074,0,0,0,0,0,0,-0.500330115,120.0218426,0.500330115,59.97815739,0,0.950065979,0,0,0,5,4,0% -2018-05-16 13:00:00,89.92991213,65.02348684,0.012122212,0.460790512,0.011558544,0.011301394,0,0.011301394,0.011210011,9.13824E-05,0.159763451,0.156475748,0.003287703,0.000348533,0.002939171,1.569573063,1.134873936,-814.4029336,814.4029336,0,0,0.953501199,8.71332E-05,0.002802503,1,0.992795454,0,0.001227893,0.961238037,1,0.721020607,0.996524011,0.010775489,0.000251991,0.115824807,0.308079505,0.724496596,0.448993192,0.961861643,0.92309968,6.31277E-05,0.002694837,0.010838617,0.002946828,0,0.001127337,-0.339581097,109.8513543,0.339581097,70.14864568,0,0.902759767,0.010838617,0.003964543,0.013433331,5,5,24% -2018-05-16 14:00:00,79.31239568,73.88363136,111.1632386,371.5947592,42.24949407,41.81351139,0,41.81351139,40.97551594,0.837995448,88.07047544,59.8436831,28.22679234,1.27397813,26.95281421,1.384262442,1.28951263,-5.286466195,5.286466195,0.565807348,0.565807348,0.380067139,0.612431968,19.69791731,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.3872245,0.922992819,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.443704876,18.93438736,39.83092938,19.85738018,0,59.8436831,-0.161045552,99.26758899,0.161045552,80.73241101,0,0.739528836,39.83092938,64.11350947,81.79193905,5,6,105% -2018-05-16 15:00:00,67.77040815,82.39394,318.5645962,646.9707664,73.80331095,103.9226106,29.94326729,73.97934331,71.57786882,2.401474488,79.46511668,0,79.46511668,2.22544213,77.23967455,1.182816758,1.438045537,-2.389789084,2.389789084,0.938831692,0.938831692,0.231674555,2.28861199,73.60962864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80337011,1.612325248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658091596,70.75637493,70.4614617,72.36870018,29.94326729,0,0.046282257,87.34727439,-0.046282257,92.65272561,0,0,70.4614617,72.36870018,117.8253286,5,7,67% -2018-05-16 16:00:00,55.96736975,91.27124981,525.8656072,773.6597792,92.87534251,296.5708778,202.5318725,94.03900534,90.07480826,3.964197074,130.302739,0,130.302739,2.80053425,127.5022047,0.976814876,1.592983822,-1.379863346,1.379863346,0.766124219,0.766124219,0.176614217,3.200811672,102.9491061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58333186,2.028977531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.31897716,98.95859663,88.90230902,100.9875742,202.5318725,0,0.261784156,74.82404597,-0.261784156,105.175954,0.859002956,0,262.8777861,100.9875742,328.9721337,5,8,25% -2018-05-16 17:00:00,44.21250221,101.6109749,708.3364789,840.0594533,106.216754,503.5356166,395.1819501,108.3536665,103.0139269,5.33973958,174.9472072,0,174.9472072,3.20282703,171.7443801,0.771653734,1.773446068,-0.828532272,0.828532272,0.671841053,0.671841053,0.149952399,3.850215348,123.8361606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02090489,2.32043728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789467913,119.0360279,101.8103728,121.3564652,395.1819501,0,0.470421407,61.93834554,-0.470421407,118.0616545,0.94371232,0,474.7484477,121.3564652,554.173827,5,9,17% -2018-05-16 18:00:00,32.98445627,115.5778238,850.9904868,876.7817004,115.5299586,695.2985446,576.8371148,118.4614299,112.0463041,6.41512575,209.8161505,0,209.8161505,3.483654512,206.332496,0.575687364,2.017213567,-0.454276317,0.454276317,0.607839515,0.607839515,0.135759401,4.240904835,136.4020775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7031694,2.523895835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.072521117,131.1148652,110.7756905,133.6387611,576.8371148,0,0.657902776,48.85987796,-0.657902776,131.140122,0.974000929,0,672.615576,133.6387611,760.0794723,5,10,13% -2018-05-16 19:00:00,23.43564642,138.0971952,943.2084963,895.8963376,121.2170095,851.6311295,726.958956,124.6721735,117.5618695,7.110304058,232.3469601,0,232.3469601,3.655140081,228.69182,0.409029192,2.410250743,-0.161701498,0.161701498,0.557806274,0.557806274,0.128515604,4.370242218,140.5620124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0049406,2.648136546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16622561,135.1135528,116.1711662,137.7616894,726.958956,0,0.811431999,35.76392155,-0.811431999,144.2360785,0.988380542,0,834.6832531,137.7616894,924.8455236,5,11,11% -2018-05-16 20:00:00,18.65482312,176.0357909,978.3534338,902.4335699,123.3312131,957.7177052,830.7301418,126.9875634,119.612322,7.375241442,240.9320081,0,240.9320081,3.718891119,237.213117,0.325588085,3.072404152,0.093258628,-0.093258628,0.514205525,0.514205525,0.126059979,4.244044087,136.5030466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9759136,2.694323956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074795494,131.2119206,118.0507091,133.9062445,830.7301418,0,0.92054437,22.99420476,-0.92054437,157.0057952,0.995684313,0,945.1956794,133.9062445,1032.834638,5,12,9% -2018-05-16 21:00:00,22.08125447,216.3616417,953.9349138,897.9315937,121.865102,1003.388903,878.0073195,125.3815839,118.1904196,7.191164324,234.9672466,0,234.9672466,3.67468246,231.2925641,0.385390593,3.776223024,0.337746474,-0.337746474,0.472395641,0.472395641,0.127749913,3.881769301,124.8510442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6091269,2.662294933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.812328645,120.0115726,116.4214555,122.6738676,878.0073195,0,0.977810922,12.09243037,-0.977810922,167.9075696,0.99886537,0,993.4325613,122.6738676,1073.720154,5,13,8% -2018-05-16 22:00:00,31.0733535,241.2821261,871.7061789,881.3461407,116.8268498,983.0151975,863.1398189,119.8753786,113.3040892,6.571289386,214.8780159,0,214.8780159,3.522760565,211.3552553,0.542332328,4.211167526,0.595642339,-0.595642339,0.428292851,0.428292851,0.134020904,3.317933113,106.7161342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9122003,2.552228038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403831246,102.5796074,111.3160315,105.1318354,863.1398189,0,0.979342598,11.66610681,-0.979342598,168.3338932,0.998945343,0,973.5455343,105.1318354,1042.352218,5,14,7% -2018-05-16 23:00:00,42.11229386,256.3146975,737.5926504,848.4452172,108.1888622,895.3464828,784.859629,110.4868537,104.9265688,5.560284959,182.100171,0,182.100171,3.262293368,178.8378776,0.734998183,4.473535392,0.898474638,-0.898474638,0.376505477,0.376505477,0.146678335,2.601983254,83.68872572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.859409,2.36352044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88512801,80.44478641,102.744537,82.80830685,784.859629,0,0.925056342,22.32314758,-0.925056342,157.6768524,0.995949238,0,884.4248866,82.80830685,938.6212673,5,15,6% -2018-05-16 00:00:00,53.80910285,267.1046415,561.5156584,788.9556515,95.65513349,742.9115363,645.9078158,97.00372051,92.77077829,4.232942218,139.0303276,0,139.0303276,2.884355205,136.1459724,0.939146012,4.661855442,1.306328415,-1.306328415,0.306758374,0.306758374,0.170351676,1.798379244,57.84205838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.1748008,2.089705527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302919641,55.59998665,90.47772044,57.68969217,645.9078158,0,0.818687102,35.04641725,-0.818687102,144.9535828,0.988926606,0,729.2331445,57.68969217,766.9898942,5,16,5% -2018-05-16 01:00:00,65.61681045,276.1535158,357.5611281,677.3914251,77.90873558,530.4542047,452.1992581,78.25494657,75.55949975,2.695446818,89.04407103,0,89.04407103,2.34923583,86.6948352,1.145229387,4.819788092,1.9803283,-1.9803283,0.191497605,0.191497605,0.217889277,0.991012309,31.87436244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63066521,1.702013362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717985044,30.63884957,73.34865025,32.34086294,452.1992581,0,0.667559761,48.12099575,-0.667559761,131.8790042,0.975100339,0,514.2883,32.34086294,535.454748,5,17,4% -2018-05-16 02:00:00,77.21458622,284.6787405,147.4205253,441.4384262,49.73009596,262.2222656,212.8803973,49.34186827,48.23055008,1.11131819,37.24335901,0,37.24335901,1.499545878,35.74381313,1.34764876,4.968581332,3.623880008,-3.623880008,0,0,0.337334953,0.374886469,12.05763752,0.082203617,1,0.269246719,0,0.929059004,0.967820967,0.724496596,1,46.52485705,1.086415884,0.013534061,0.312029739,0.962336952,0.686833548,0.961238037,0.922476074,0.265974799,11.59025982,46.79083185,12.6766757,195.3808586,0,0.482242561,61.16803005,-0.482242561,118.8319699,0.946317737,0,231.6832039,12.6766757,239.9798346,5,18,4% -2018-05-16 03:00:00,88.15319094,293.4382398,2.752872179,15.47596808,2.25412324,6.51697879,4.31007337,2.206905421,2.186153107,0.020752313,0.735435864,0,0.735435864,0.067970133,0.667465731,1.538563428,5.121463436,22.51936627,-22.51936627,0,0,0.818825973,0.016992533,0.546538277,0.768565917,1,0.044377069,0,0.957088411,0.995850374,0.724496596,1,2.111953432,0.04924413,0.096264431,0.312029739,0.763520502,0.488017098,0.961238037,0.922476074,0.011890689,0.52535338,2.12384412,0.57459751,0.997497878,0,0.278501051,73.82923691,-0.278501051,106.1707631,0.870467464,0,2.992133568,0.57459751,3.368196147,5,19,13% -2018-05-16 04:00:00,98.89250616,303.0429613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725999838,5.28909745,-3.842573276,3.842573276,1,0.812727579,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.057897579,86.68085695,-0.057897579,93.31914305,0,0,0,0,0,5,20,0% -2018-05-16 05:00:00,108.1514477,314.065322,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887598854,5.481473936,-1.334004738,1.334004738,1,0.758281935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150604762,98.66197503,0.150604762,81.33802497,0,0.718005186,0,0,0,5,21,0% -2018-05-16 06:00:00,115.6839494,326.9955218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019065808,5.707148494,-0.467907405,0.467907405,1,0.610170568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.337909331,109.7495503,0.337909331,70.25044971,0,0.902031313,0,0,0,5,22,0% -2018-05-16 07:00:00,120.790844,341.9929515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108197934,5.968903023,0.058359411,-0.058359411,1,0.520173643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491251593,119.4228784,0.491251593,60.57712157,0,0.94821916,0,0,0,5,23,0% -2018-05-17 08:00:00,122.7978778,358.4891573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143227281,6.256816128,0.492122001,-0.492122001,1,0.445995871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600182673,126.8829817,0.600182673,53.11701826,0,0.96669203,0,0,0,5,0,0% -2018-05-17 09:00:00,121.3786782,15.12159862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118457576,0.263921684,0.943304208,-0.943304208,1,0.368839169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657280739,131.0928147,0.657280739,48.90718527,0,0.973929005,0,0,0,5,1,0% -2018-05-17 10:00:00,116.7680257,30.44348439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03798651,0.531339038,1.528433038,-1.528433038,1,0.268776246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658656168,131.1974649,0.658656168,48.80253509,0,0.974087859,0,0,0,5,2,0% -2018-05-17 11:00:00,109.6047033,43.73222502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912962948,0.763271316,2.517671804,-2.517671804,1,0.099606454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604216113,127.172455,0.604216113,52.82754497,0,0.967248152,0,0,0,5,3,0% -2018-05-17 12:00:00,100.600749,55.04814537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755814301,0.960771384,5.16216606,-5.16216606,1,0,#DIV/0!,0,0,0.260698815,1,0.191347106,0,0.940050059,0.978812022,0.724496596,1,0,0,0.03969636,0.312029739,0.893602554,0.61809915,0.961238037,0.922476074,0,0,0,0,0,0,-0.497670515,119.8460018,0.497670515,60.15399819,0,0.949531922,0,0,0,5,4,0% -2018-05-17 13:00:00,89.81048423,64.84735804,0.04068495,0.655554009,0.038516595,0.037661878,0,0.037661878,0.037355177,0.0003067,0.232293772,0.221267817,0.011025955,0.001161417,0.009864537,1.567488653,1.131799909,-301.1044255,301.1044255,0,0,0.946703753,0.000290354,0.009338794,1,0.980400628,0,0.003321095,0.961238037,1,0.715122146,0.99062555,0.035907217,0.000836827,0.115824807,0.301376877,0.724496596,0.448993192,0.962912466,0.924150503,0.000210361,0.008985347,0.036117578,0.009822173,0,0.00433671,-0.337527975,109.7263363,0.337527975,70.27366366,0,0.901864131,0.036117578,0.013733297,0.045105746,5,5,25% -2018-05-17 14:00:00,79.18402181,73.694426,113.3361728,376.2056143,42.73921808,42.3048489,0,42.3048489,41.45047296,0.854375944,88.55040703,59.78199467,28.76841237,1.288745116,27.47966725,1.382021896,1.286210374,-5.223375421,5.223375421,0.576596505,0.576596505,0.3771013,0.62904498,20.23224888,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.84377125,0.933691449,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.455740947,19.4480072,40.2995122,20.38169865,0,59.78199467,-0.158907769,99.1435049,0.158907769,80.8564951,0,0.735352073,40.2995122,64.34251233,82.41039967,5,6,104% -2018-05-17 15:00:00,67.64993745,82.18716637,320.7542456,648.7894062,74.04271673,105.4567511,31.22871446,74.22803662,71.81005563,2.41798099,80.0032415,0,80.0032415,2.232661098,77.77058041,1.180714147,1.434436656,-2.377382624,2.377382624,0.936710063,0.936710063,0.230839397,2.30027337,73.98469872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.0265569,1.617555365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666540226,71.11690655,70.69309713,72.73446192,31.22871446,0,0.048133823,87.24106904,-0.048133823,92.75893096,0,0,70.69309713,72.73446192,118.2963478,5,7,67% -2018-05-17 16:00:00,55.84955197,91.03845488,527.8336326,774.5404141,93.03152917,298.1702342,203.964916,94.2053182,90.22628532,3.979032881,130.7846191,0,130.7846191,2.805243854,127.9793753,0.974758568,1.588920784,-1.375925823,1.375925823,0.765450863,0.765450863,0.176251613,3.210246035,103.2525476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.72893737,2.032389623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.325812324,99.25027618,89.0547497,101.2826658,203.964916,0,0.263336699,74.73185741,-0.263336699,105.2681426,0.860129009,0,264.4908908,101.2826658,330.7783699,5,8,25% -2018-05-17 17:00:00,44.0892189,101.3394984,710.084457,840.5746724,106.3356195,504.9734234,396.4912986,108.4821248,103.1292082,5.352916578,175.3746089,0,175.3746089,3.206411265,172.1681977,0.769502034,1.76870791,-0.827369369,0.827369369,0.671642185,0.671642185,0.149750665,3.858457134,124.1012448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.13171768,2.323034046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.795439059,119.2908369,101.9271567,121.613871,396.4912986,0,0.471690751,61.85589707,-0.471690751,118.1441029,0.943998346,0,476.2142866,121.613871,555.8081329,5,9,17% -2018-05-17 18:00:00,32.8423114,115.2556083,852.568875,877.1354447,115.6292011,696.5361917,577.9666133,118.5695784,112.1425541,6.427024306,210.2018415,0,210.2018415,3.48664704,206.7151944,0.573206468,2.011589846,-0.454397827,0.454397827,0.607860295,0.607860295,0.135624469,4.248546074,136.647846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7956885,2.526063912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.078057168,131.3511072,110.8737457,133.8771712,577.9666133,0,0.65892516,48.78204918,-0.65892516,131.2179508,0.974118848,0,673.8819175,133.8771712,761.5018484,5,10,13% -2018-05-17 19:00:00,23.25328798,137.7633073,944.6877831,896.1791707,121.3065406,852.7013207,727.9311643,124.7701564,117.6487008,7.121455546,232.70833,0,232.70833,3.657839772,229.0504902,0.405846437,2.404423301,-0.162613651,0.162613651,0.557962262,0.557962262,0.128409134,4.377729248,140.802821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0884062,2.650092463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171649938,135.3450272,116.2600562,137.9951197,727.9311643,0,0.812260749,35.68259554,-0.812260749,144.3174045,0.988443412,0,835.7788202,137.9951197,926.0938661,5,11,11% -2018-05-17 20:00:00,18.43068477,175.9713265,979.8134106,902.6971308,123.4184776,958.6893563,831.6061538,127.0832025,119.6969551,7.386247364,241.2886278,0,241.2886278,3.721522464,237.5671053,0.321676133,3.071279037,0.091696001,-0.091696001,0.51447275,0.51447275,0.125961205,4.251748135,136.7508353,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0572661,2.696230357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.08037705,131.4501045,118.1376432,134.1463348,831.6061538,0,0.921246036,22.89107089,-0.921246036,157.1089291,0.995725682,0,946.1892481,134.1463348,1033.985341,5,12,9% -2018-05-17 21:00:00,21.8826346,216.6431949,955.457154,898.2175227,121.9568706,1004.352542,878.8704809,125.4820606,118.279421,7.202639614,235.3390985,0,235.3390985,3.677449622,231.6616489,0.381924023,3.781137053,0.335479396,-0.335479396,0.472783334,0.472783334,0.127642428,3.889991153,125.1154872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6946785,2.664299733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818285349,120.2657653,116.5129638,122.9300651,878.8704809,0,0.978460627,11.91342915,-0.978460627,168.0865709,0.998899323,0,994.4160926,122.9300651,1074.871362,5,13,8% -2018-05-17 22:00:00,30.91559505,241.5926269,873.3670622,881.704889,116.9303109,984.0756277,864.0873873,119.9882404,113.4044306,6.583809827,215.283836,0,215.283836,3.525880301,211.7579557,0.539578924,4.216586788,0.592421787,-0.592421787,0.428843597,0.428843597,0.133884498,3.326881968,107.0039602,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0086522,2.554488275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.41031466,102.8562766,111.4189669,105.4107649,864.0873873,0,0.980018823,11.47292021,-0.980018823,168.5270798,0.998980572,0,974.6254791,105.4107649,1043.614717,5,14,7% -2018-05-17 23:00:00,41.97571935,256.580538,739.4562369,848.9627693,108.3132707,896.6214032,785.9998438,110.6215594,105.0472259,5.574333461,182.5557705,0,182.5557705,3.266044744,179.2897258,0.732614509,4.478175185,0.893709958,-0.893709958,0.377320286,0.377320286,0.146476918,2.611734046,84.00234469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9753892,2.366238299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.892192426,80.7462489,102.8675816,83.1124872,785.9998438,0,0.925835469,22.20532432,-0.925835469,157.7946757,0.995994724,0,885.7192792,83.1124872,940.1147398,5,15,6% -2018-05-17 00:00:00,53.67976916,267.3316528,563.6242563,789.8187444,95.81642204,744.5415011,647.36546,97.17604111,92.92720339,4.24883772,139.546445,0,139.546445,2.889218649,136.6572264,0.936888714,4.665817536,1.298564227,-1.298564227,0.308086128,0.308086128,0.17000053,1.808780577,58.17660101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.32516255,2.093229076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310455371,55.92156175,90.63561792,58.01479082,647.36546,0,0.819638005,34.95142693,-0.819638005,145.0485731,0.98899746,0,730.8784137,58.01479082,768.847934,5,16,5% -2018-05-17 01:00:00,65.48633369,276.3533192,359.9122557,679.1009402,78.1462966,532.6439596,454.1408915,78.50306804,75.78989743,2.713170611,89.62129248,0,89.62129248,2.356399172,87.26489331,1.142952138,4.823275319,1.965012128,-1.965012128,0.194116825,0.194116825,0.217125967,1.001417676,32.2090348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.85213222,1.707203178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725523697,30.96054938,73.57765592,32.66775256,454.1408915,0,0.668738423,48.03022982,-0.668738423,131.9697702,0.97523235,0,516.470545,32.66775256,537.8509357,5,17,4% -2018-05-17 02:00:00,77.07758685,284.8596033,149.8346652,445.6092282,50.18244557,265.3325798,215.5338031,49.79877668,48.66925968,1.129516997,37.8423352,0,37.8423352,1.513185888,36.32914931,1.34525767,4.971737984,3.576302263,-3.576302263,0,0,0.334918795,0.378296472,12.16731492,0.075298462,1,0.272654832,0,0.928548542,0.967310505,0.724496596,1,46.93623439,1.096298024,0.012436156,0.312029739,0.965338887,0.689835483,0.961238037,0.922476074,0.268810083,11.69568591,47.20504448,12.79198393,199.3044393,0,0.483683437,61.07374925,-0.483683437,118.9262508,0.946626603,0,235.8719288,12.79198393,244.2440265,5,18,4% -2018-05-17 03:00:00,88.01519626,293.6046646,3.266643914,18.19110234,2.636605414,7.676314681,5.094587307,2.581727374,2.557102033,0.024625342,0.871539018,0,0.871539018,0.079503381,0.792035637,1.536154967,5.124368097,20.89485043,-20.89485043,0,0,0.807129728,0.019875845,0.639275508,0.752663577,1,0.047822193,0,0.956746543,0.995508506,0.724496596,1,2.471014094,0.057599929,0.094801855,0.312029739,0.766562012,0.491058608,0.961238037,0.922476074,0.013881688,0.614495934,2.484895782,0.672095864,1.260077001,0,0.280059296,73.73625631,-0.280059296,106.2637437,0.871466379,0,3.583010523,0.672095864,4.022883824,5,19,12% -2018-05-17 04:00:00,98.72769675,303.1954798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723123371,5.291759399,-3.902432066,3.902432066,1,0.802491123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059939457,86.56366236,-0.059939457,93.43633764,0,0,0,0,0,5,20,0% -2018-05-17 05:00:00,107.9683133,314.1993566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884402555,5.48381328,-1.342059696,1.342059696,1,0.759659414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148285804,98.52759946,0.148285804,81.47240054,0,0.712813307,0,0,0,5,21,0% -2018-05-17 06:00:00,115.4818912,327.0998106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015539228,5.708968678,-0.46844132,0.46844132,1,0.610261873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335350799,109.5938713,0.335350799,70.40612874,0,0.900902398,0,0,0,5,22,0% -2018-05-17 07:00:00,120.5737434,342.0504114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104408813,5.969905887,0.060561959,-0.060561959,1,0.519796985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488507564,119.2425352,0.488507564,60.75746477,0,0.94764744,0,0,0,5,23,0% -2018-05-18 08:00:00,122.5754788,358.4849432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139345688,6.256742577,0.49623354,-0.49623354,1,0.445292756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597320061,126.6782013,0.597320061,53.32179867,0,0.966292783,0,0,0,5,0,0% -2018-05-18 09:00:00,121.1638461,15.05520274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114708048,0.262762857,0.949741974,-0.949741974,1,0.367738247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654374687,130.8722524,0.654374687,49.1277476,0,0.973591176,0,0,0,5,1,0% -2018-05-18 10:00:00,116.570766,30.32957271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034543678,0.529350905,1.5390745,-1.5390745,1,0.266956449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655784873,130.97919,0.655784873,49.02080999,0,0.973755484,0,0,0,5,2,0% -2018-05-18 11:00:00,109.4289715,43.5887344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909895849,0.760766932,2.539164334,-2.539164334,1,0.095931015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601455448,126.9742077,0.601455448,53.02579229,0,0.966868323,0,0,0,5,3,0% -2018-05-18 12:00:00,100.4457117,54.88720824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753108389,0.957962501,5.236596043,-5.236596043,1,0,#DIV/0!,0,0,0.267590807,1,0.188691949,0,0.940401411,0.979163374,0.724496596,1,0,0,0.040627577,0.312029739,0.891255382,0.615751977,0.961238037,0.922476074,0,0,0,0,0,0,-0.495088817,119.6756072,0.495088817,60.32439277,0,0.94900802,0,0,0,5,4,0% -2018-05-18 13:00:00,89.69462252,64.67400384,0.079856995,0.904480653,0.075036278,0.073375653,0,0.073375653,0.072773658,0.000601996,0.325105545,0.303480672,0.021624874,0.002262621,0.019362253,1.565466484,1.128774307,-186.8110074,186.8110074,0,0,0.939633132,0.000565655,0.018193414,1,0.968230487,0,0.005352952,0.961238037,1,0.709429237,0.984932641,0.069952808,0.001624973,0.115824807,0.294908666,0.724496596,0.448993192,0.9639178,0.925155837,0.000409815,0.017514552,0.070362623,0.019139525,0,0.009641433,-0.335530308,109.6047889,0.335530308,70.39521109,0,0.900982165,0.070362623,0.027826284,0.08857437,5,5,26% -2018-05-18 14:00:00,79.06068326,73.50826546,115.43041,380.5929105,43.20558833,42.77294361,0,42.77294361,41.90278043,0.870163188,88.98668477,59.69643756,29.29024721,1.3028079,27.98743931,1.379869232,1.28296126,-5.164107918,5.164107918,0.586731845,0.586731845,0.374299878,0.645154707,20.75039309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.2785464,0.943879888,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467412389,19.94606712,40.74595878,20.88994701,0,59.69643756,-0.156851155,99.02417298,0.156851155,80.97582702,0,0.731226447,40.74595878,64.54156092,82.98711958,5,6,104% -2018-05-18 15:00:00,67.53454497,81.98368899,322.8508095,650.5176437,74.27088707,106.929278,32.46414645,74.46513157,72.03134579,2.433785775,80.51845789,0,80.51845789,2.239541275,78.27891661,1.178700169,1.430885306,-2.365633169,2.365633169,0.934700787,0.934700787,0.230047083,2.311421551,74.34326253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23926942,1.62254003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674617045,71.46157173,70.91388647,73.08411176,32.46414645,0,0.049905098,87.13946033,-0.049905098,92.86053967,0,0,70.91388647,73.08411176,118.7459759,5,7,67% -2018-05-18 16:00:00,55.73694683,90.80918691,529.7122791,775.3769421,93.18031194,299.69351,205.3297333,94.36377665,90.37058174,3.993194911,131.2446051,0,131.2446051,2.809730204,128.4348749,0.972793237,1.584919303,-1.372219654,1.372219654,0.764817071,0.764817071,0.175907404,3.21926378,103.5425893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.86764058,2.035639968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33234565,99.52907529,89.19998623,101.5647153,205.3297333,0,0.264812793,74.6441708,-0.264812793,105.3558292,0.861187369,0,266.0273591,101.5647153,332.4994339,5,8,25% -2018-05-18 17:00:00,43.97144976,101.0716002,711.7507284,841.0640844,106.4488027,506.3349597,397.7305035,108.6044562,103.2389786,5.365477635,175.7820286,0,175.7820286,3.209824156,172.5722045,0.767446575,1.764032203,-0.826310235,0.826310235,0.671461062,0.671461062,0.149559106,3.866347367,124.3550218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.23723307,2.325506674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801155506,119.534777,102.0383886,121.8602837,397.7305035,0,0.472889654,61.77796571,-0.472889654,118.2220343,0.944267088,0,477.6022131,121.8602837,557.3573315,5,9,17% -2018-05-18 18:00:00,32.70618308,114.9361127,854.07483,877.4720235,115.7238223,697.7031507,579.0304518,118.6726989,112.2343221,6.438376831,210.5698309,0,210.5698309,3.489500219,207.0803307,0.57083058,2.006013596,-0.454568267,0.454568267,0.607889442,0.607889442,0.135496116,4.255888766,136.8840123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8838995,2.52813103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.083376924,131.5781192,110.9672764,134.1062502,579.0304518,0,0.659884801,48.70891233,-0.659884801,131.2910877,0.974229199,0,675.0756496,134.1062502,762.8455082,5,10,13% -2018-05-18 19:00:00,23.07738109,137.4279712,946.104425,896.4493776,121.3922342,853.709201,728.8452558,124.8639452,117.7318105,7.132134791,233.0543952,0,233.0543952,3.660423751,229.3939714,0.402776283,2.398570581,-0.163544516,0.163544516,0.558121449,0.558121449,0.128307437,4.38496309,141.0354862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1682944,2.651964547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176890831,135.5686739,116.3451852,138.2206384,728.8452558,0,0.813035598,35.60641321,-0.813035598,144.3935868,0.988502078,0,836.8102349,138.2206384,927.2728783,5,11,11% -2018-05-18 20:00:00,18.21219568,175.8996339,981.2202197,902.9505074,123.5025231,959.6082549,832.432936,127.1753189,119.7784664,7.396852485,241.6322592,0,241.6322592,3.724056749,237.9082024,0.317862779,3.070027765,0.090135808,-0.090135808,0.514739559,0.514739559,0.125866264,4.259236939,136.991701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1356179,2.698066437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085802663,131.6816337,118.2214206,134.3797002,832.432936,0,0.921903171,22.79408224,-0.921903171,157.2059178,0.995764369,0,947.128478,134.3797002,1035.077304,5,12,9% -2018-05-18 21:00:00,21.68820007,216.9171894,956.9346816,898.4943703,122.0458955,1005.272956,879.693417,125.5795393,118.3657614,7.213777841,235.7000266,0,235.7000266,3.680134051,232.0198926,0.3785305,3.78591916,0.333234079,-0.333234079,0.473167306,0.473167306,0.127538376,3.89802756,125.3739657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7776722,2.666244592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824107698,120.5142247,116.6017799,123.1804693,879.693417,0,0.979075046,11.7416764,-0.979075046,168.2583236,0.998931392,0,995.3551492,123.1804693,1075.974303,5,13,8% -2018-05-18 22:00:00,30.76073546,241.8952324,874.9900708,882.0544448,117.0313402,985.1012404,865.0027821,120.0984582,113.5024135,6.596044751,215.6803996,0,215.6803996,3.528926706,212.1514729,0.536876114,4.221868251,0.589246387,-0.589246387,0.429386623,0.429386623,0.133751621,3.335666576,107.2865034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1028371,2.556695386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.416679079,103.1278679,111.5195162,105.6845632,865.0027821,0,0.980668242,11.28432102,-0.980668242,168.715679,0.999014358,0,975.6697152,105.6845632,1044.838148,5,14,7% -2018-05-18 23:00:00,41.8412244,256.8392053,741.2867339,849.4692589,108.4353337,897.8676437,787.1139029,110.7537408,105.1656083,5.588132521,183.0032763,0,183.0032763,3.269725394,179.733551,0.730267129,4.48268978,0.889027283,-0.889027283,0.37812107,0.37812107,0.146279879,2.621333982,84.31111163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0891829,2.368904918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899147546,81.04304743,102.9883304,83.41195235,787.1139029,0,0.926594923,22.08990201,-0.926594923,157.910098,0.996038988,0,886.9844655,83.41195235,941.5759201,5,15,6% -2018-05-18 00:00:00,53.55211362,267.5522342,565.7023308,790.6650181,95.97505158,746.1451281,648.7995753,97.34555279,93.08104966,4.264503123,140.0550815,0,140.0550815,2.894001915,137.1610796,0.934660704,4.669667408,1.290957513,-1.290957513,0.309386953,0.309386953,0.169656454,1.819040496,58.50659528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.47304545,2.096694536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317888647,56.23876479,90.79093409,58.33545932,648.7995753,0,0.82057453,34.85765221,-0.82057453,145.1423478,0.989067083,0,732.4972373,58.33545932,770.6766287,5,16,5% -2018-05-18 01:00:00,65.35741771,276.5471905,362.2337899,680.7760494,78.37984378,534.8029114,456.0558377,78.74707362,76.0164023,2.730671316,90.19121764,0,90.19121764,2.363441481,87.82777616,1.14070213,4.826659012,1.950072441,-1.950072441,0.196671662,0.196671662,0.216379162,1.011700545,32.53976721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.06985732,1.712305307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732973601,31.27846195,73.80283092,32.99076726,456.0558377,0,0.66990582,47.94020362,-0.66990582,132.0597964,0.975362643,0,518.6226581,32.99076726,540.2144554,5,17,4% -2018-05-18 02:00:00,76.94222852,285.0348002,152.2243747,449.685683,50.62535959,268.3951664,218.1488165,50.24634984,49.09881821,1.147531637,38.43510343,0,38.43510343,1.526541379,36.90856205,1.342895221,4.974795747,3.530383332,-3.530383332,0,0,0.332570652,0.381635345,12.27470455,0.068534803,1,0.276024838,0,0.928041394,0.966803357,0.724496596,1,47.33846913,1.105974033,0.011354029,0.312029739,0.968306913,0.692803509,0.961238037,0.922476074,0.271604181,11.79891291,47.61007331,12.90488694,203.1980303,0,0.485113991,60.98005892,-0.485113991,119.0199411,0.946931441,0,240.024677,12.90488694,248.4706674,5,18,4% -2018-05-18 03:00:00,87.87835509,293.7655164,3.828581657,21.13991978,3.045955883,8.93635707,5.95338653,2.98297054,2.954109075,0.028861466,1.020130757,0,1.020130757,0.091846808,0.928283949,1.533766638,5.12717549,19.49372432,-19.49372432,0,0,0.795583366,0.022961702,0.738527269,0.737082156,1,0.051253633,0,0.956403228,0.995165191,0.724496596,1,2.855425405,0.0665427,0.093352647,0.312029739,0.769592652,0.494089248,0.961238037,0.922476074,0.016007932,0.709900502,2.871433337,0.776443202,1.565251549,0,0.281618218,73.64319124,-0.281618218,106.3568088,0.872454668,0,4.237044357,0.776443202,4.745210904,5,19,12% -2018-05-18 04:00:00,98.56530641,303.3424244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720289125,5.294324066,-3.963917824,3.963917824,1,0.791976439,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061964647,86.44741136,-0.061964647,93.55258864,0,0,0,0,0,5,20,0% -2018-05-18 05:00:00,107.7882615,314.3278594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881260058,5.486056077,-1.350275485,1.350275485,1,0.761064397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.145989764,98.3945984,0.145989764,81.6054016,0,0.707510234,0,0,0,5,21,0% -2018-05-18 06:00:00,115.2837467,327.1988989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012080954,5.710698095,-0.469073466,0.469073466,1,0.610369977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.332823043,109.4402126,0.332823043,70.55978743,0,0.899770017,0,0,0,5,22,0% -2018-05-18 07:00:00,120.3614389,342.1036137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100703401,5.970834442,0.062661704,-0.062661704,1,0.519437907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.485803258,119.0651131,0.485803258,60.93488688,0,0.947077677,0,0,0,5,23,0% -2018-05-19 08:00:00,122.3585834,358.4781293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135560149,6.256623652,0.500220566,-0.500220566,1,0.444610935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594506592,126.4774661,0.594506592,53.52253386,0,0.965896643,0,0,0,5,0,0% -2018-05-19 09:00:00,120.9548558,14.98813576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11106048,0.261592318,0.956014604,-0.956014604,1,0.366665564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651527019,130.6568318,0.651527019,49.34316824,0,0.973257212,0,0,0,5,1,0% -2018-05-19 10:00:00,116.3793354,30.21656193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031202583,0.527378494,1.549472739,-1.549472739,1,0.265178245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65298039,130.7666893,0.65298039,49.23331074,0,0.973428022,0,0,0,5,2,0% -2018-05-19 11:00:00,109.2588721,43.44715084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906927055,0.758295833,2.560245042,-2.560245042,1,0.092326001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59876863,126.7817581,0.59876863,53.21824193,0,0.966495291,0,0,0,5,3,0% -2018-05-19 12:00:00,100.296074,54.72876567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750496718,0.955197157,5.310413355,-5.310413355,1,0,#DIV/0!,0,0,0.274300315,1,0.186129609,0,0.940739,0.979500963,0.724496596,1,0,0,0.041528939,0.312029739,0.888989987,0.613486583,0.961238037,0.922476074,0,0,0,0,0,0,-0.492586123,119.5107021,0.492586123,60.48929789,0,0.948494907,0,0,0,5,4,0% -2018-05-19 13:00:00,89.58232988,64.50351322,0.130773049,1.2133622,0.121928058,0.1192373,0,0.1192373,0.118251477,0.000985822,0.440147673,0.404763652,0.035384021,0.003676581,0.03170744,1.563506608,1.125798685,-136.5463419,136.5463419,0,0,0.932363809,0.000919145,0.029562869,1,0.956295527,0,0.00732339,0.961238037,1,0.703939196,0.9794426,0.113667818,0.002632358,0.115824807,0.288671877,0.724496596,0.448993192,0.964878998,0.926117035,0.000665918,0.02847451,0.114333736,0.031106868,0,0.017689982,-0.33358848,109.486727,0.33358848,70.51327302,0,0.900114728,0.114333736,0.047029881,0.145113852,5,5,27% -2018-05-19 14:00:00,78.94238713,73.32525507,117.4448595,384.7617263,43.64911538,43.21828246,0,43.21828246,42.33293351,0.88534896,89.38243524,59.59038745,29.79204779,1.316181877,28.47586591,1.377804575,1.279767126,-5.108462313,5.108462313,0.596247804,0.596247804,0.371656244,0.660740204,21.25167624,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.6920259,0.953569289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478704028,20.42791955,41.17072993,21.38148884,0,59.59038745,-0.154876079,98.9096093,0.154876079,81.0903907,0,0.727161248,41.17072993,64.71330934,83.52429662,5,6,103% -2018-05-19 15:00:00,67.42422374,81.7836365,324.8544944,652.1574871,74.48799396,108.3396031,33.64880661,74.69079651,72.24190611,2.448890398,81.01082104,0,81.01082104,2.246087849,78.7647332,1.1767747,1.427393731,-2.354523375,2.354523375,0.932800901,0.932800901,0.229296486,2.322060939,74.68546183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44166801,1.627283001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.682325246,71.79050671,71.12399325,73.41778971,33.64880661,0,0.051596136,87.04244591,-0.051596136,92.95755409,0,0,71.12399325,73.41778971,119.1744683,5,7,68% -2018-05-19 16:00:00,55.62953715,90.58361172,531.5021363,776.1702244,93.32178284,301.140957,206.6264826,94.51447437,90.50778676,4.006687611,131.6828425,0,131.6828425,2.813996073,128.8688465,0.970918585,1.580982273,-1.368740527,1.368740527,0.764222105,0.764222105,0.1755812,3.227868758,103.819355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.99952727,2.038730576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.338579927,99.79511298,89.3381072,101.8338436,206.6264826,0,0.266212844,74.56096738,-0.266212844,105.4390326,0.862180362,0,267.4874027,101.8338436,334.1356166,5,8,25% -2018-05-19 17:00:00,43.85917217,100.8075109,713.3360885,841.5281772,106.5563762,507.6209222,398.9001851,108.7207371,103.3433083,5.377428749,176.1696613,0,176.1696613,3.213067894,172.9565934,0.765486962,1.759422977,-0.825352976,0.825352976,0.671297361,0.671297361,0.149377521,3.873889703,124.5976093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33751881,2.327856752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806619903,119.7679613,102.1441387,122.0958181,398.9001851,0,0.47401881,61.70451594,-0.47401881,118.2954841,0.944518954,0,478.9129243,122.0958181,558.8221953,5,9,17% -2018-05-19 18:00:00,32.57605697,114.6196829,855.5092304,877.7917671,115.8138871,698.8003886,580.0295276,118.770861,112.3216711,6.449189947,210.9203337,0,210.9203337,3.492216003,207.4281177,0.568559451,2.000490854,-0.454786381,0.454786381,0.607926741,0.607926741,0.135374211,4.262936155,137.1106805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9678626,2.530098607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.088482733,131.7960013,111.0563453,134.3261,580.0295276,0,0.660782602,48.64041421,-0.660782602,131.3595858,0.974332148,0,676.197761,134.3261,764.1115069,5,10,13% -2018-05-19 19:00:00,22.90795762,137.0916232,947.4592686,896.7072054,121.4741477,854.6558703,729.7022682,124.9536021,117.8112539,7.142348175,233.3853627,0,233.3853627,3.662893744,229.722469,0.399819285,2.392700203,-0.164492994,0.164492994,0.558283648,0.558283648,0.128210417,4.391946212,141.2600874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.2446584,2.653754049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18195008,135.7845691,116.4266085,138.4383231,729.7022682,0,0.813757561,35.53530308,-0.813757561,144.4646969,0.988556638,0,837.7786299,138.4383231,928.3837436,5,11,11% -2018-05-19 20:00:00,17.99943923,175.8206916,982.574566,903.1938933,123.5833967,960.4755021,833.2115387,127.2639634,119.8569013,7.40706212,241.9630748,0,241.9630748,3.726495384,238.2365794,0.314149478,3.068649962,0.088579167,-0.088579167,0.51500576,0.51500576,0.125775082,4.266511855,137.2256873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2110125,2.69983322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.091073315,131.9065503,118.3020858,134.6063835,833.2115387,0,0.922516798,22.70316091,-0.922516798,157.2968391,0.995800445,0,948.0145068,134.6063835,1036.111693,5,12,9% -2018-05-19 21:00:00,21.49799412,217.1832934,958.3679617,898.7622869,122.1322091,1006.151122,880.4770675,125.6740549,118.4494724,7.224582512,236.0501446,0,236.0501446,3.682736725,232.3674079,0.37521078,3.790563551,0.33101177,-0.33101177,0.473547343,0.473547343,0.1274377,3.905878487,125.6264785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8581383,2.668130221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.829795668,120.7569496,116.687934,123.4250798,880.4770675,0,0.979655111,11.57722212,-0.979655111,168.4227779,0.99896163,0,996.2507405,123.4250798,1077.029987,5,13,8% -2018-05-19 22:00:00,30.60879891,242.1897162,876.5753494,882.3949133,117.1299519,986.0927647,865.8867178,120.206047,113.5980517,6.607995251,216.0677423,0,216.0677423,3.531900214,212.5358421,0.534224321,4.227007962,0.586117601,-0.586117601,0.429921677,0.429921677,0.133622229,3.344285335,107.5637123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1947682,2.558849682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.422923341,103.3943316,111.6176916,105.9531813,865.8867178,0,0.981291602,11.10031614,-0.981291602,168.8996839,0.999046746,0,976.6789996,105.9531813,1046.023238,5,14,7% -2018-05-19 23:00:00,41.70884142,257.0905613,743.0839075,849.9647323,108.5550437,899.0855855,788.2021965,110.883389,105.2817086,5.601680375,183.4426316,0,183.4426316,3.273335094,180.1692965,0.72795661,4.48707677,0.884428364,-0.884428364,0.378907532,0.378907532,0.146087195,2.630779827,84.61492248,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2007829,2.371520133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.905991029,81.33508198,103.106774,83.70660211,788.2021965,0,0.927335178,21.97684358,-0.927335178,158.0231564,0.996082063,0,888.2208437,83.70660211,943.0051406,5,15,6% -2018-05-19 00:00:00,53.4261827,267.7662929,567.7492369,791.4944333,96.13098976,747.7223744,650.2101551,97.5122193,93.23228574,4.279933566,140.5560797,0,140.5560797,2.898704027,137.6573757,0.932462795,4.673403437,1.283510194,-1.283510194,0.310660519,0.310660519,0.169319452,1.829154166,58.83188567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.61841931,2.1001012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325215967,56.55144628,90.94363528,58.65154748,650.2101551,0,0.821496814,34.76508753,-0.821496814,145.2349125,0.989135491,0,734.0895765,58.65154748,772.4758413,5,16,5% -2018-05-19 01:00:00,65.23012335,276.735063,364.524663,682.4166258,78.60932174,536.9305728,457.9436713,78.98690154,76.23896065,2.747940886,90.75358596,0,90.75358596,2.370361088,88.38322487,1.138480424,4.829938005,1.935509212,-1.935509212,0.19916212,0.19916212,0.215648843,1.021854471,32.86635238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.28378887,1.717318539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.740330085,31.59238804,74.02411895,33.30970658,457.9436713,0,0.671061715,47.85093855,-0.671061715,132.1490615,0.975491205,0,520.7441425,33.30970658,542.5446793,5,17,4% -2018-05-19 02:00:00,76.80858605,285.2042835,154.5880087,453.6676436,51.05879682,271.4090801,220.7245447,50.68453541,49.51918571,1.165349708,39.02126358,0,39.02126358,1.539611111,37.48165247,1.34056272,4.977753788,3.486081045,-3.486081045,0,0,0.330289505,0.384902778,12.37979643,0.061914822,1,0.279354022,0,0.927538059,0.966300022,0.724496596,1,47.73154715,1.115443009,0.010288391,0.312029739,0.971238665,0.69573526,0.961238037,0.922476074,0.274356007,11.89993121,48.00590316,13.01537422,207.0584238,0,0.486533584,60.88700237,-0.486533584,119.1129976,0.947232171,0,244.1383035,13.01537422,252.6566056,5,18,3% -2018-05-19 03:00:00,87.74281712,293.9207654,4.43723351,24.3097136,3.479793404,10.29223598,6.883921441,3.408314534,3.374864794,0.03344974,1.180787247,0,1.180787247,0.10492861,1.075858637,1.531401054,5.129885096,18.27445353,-18.27445353,0,0,0.784225891,0.026232153,0.843716198,0.721832937,1,0.054666677,0,0.956058981,0.994820944,0.724496596,1,3.262958604,0.076020421,0.091918609,0.312029739,0.772608153,0.497104749,0.961238037,0.922476074,0.018256848,0.811012102,3.281215453,0.887032523,1.914880213,0,0.283175752,73.55016466,-0.283175752,106.4498353,0.87343121,0,4.953731593,0.887032523,5.534276639,5,19,12% -2018-05-19 04:00:00,98.40543185,303.483786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717498788,5.296791291,-4.027030567,4.027030567,1,0.781183525,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063971791,86.33218179,-0.063971791,93.66781821,0,0,0,0,0,5,20,0% -2018-05-19 05:00:00,107.6113951,314.4508468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878173158,5.488202612,-1.358645795,1.358645795,1,0.762495804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143718281,98.26306474,0.143718281,81.73693526,0,0.702097148,0,0,0,5,21,0% -2018-05-19 06:00:00,115.0896181,327.2928313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00869277,5.712337524,-0.469803536,0.469803536,1,0.610494826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.330327908,109.2886794,0.330327908,70.7113206,0,0.898635254,0,0,0,5,22,0% -2018-05-19 07:00:00,120.1540237,342.1526248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097083322,5.971689847,0.064656492,-0.064656492,1,0.519096778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.483140631,118.8907233,0.483140631,61.10927673,0,0.946510463,0,0,0,5,23,0% -2018-05-20 08:00:00,122.1472707,358.4687866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.131872045,6.256460592,0.504078992,-0.504078992,1,0.443951105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591744229,126.280882,0.591744229,53.71911805,0,0.965504034,0,0,0,5,0,0% -2018-05-20 09:00:00,120.7517728,14.92046131,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107516012,0.260411176,0.962115247,-0.962115247,1,0.365622292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648739608,130.446641,0.648739608,49.553359,0,0.972927474,0,0,0,5,1,0% -2018-05-20 10:00:00,116.1937874,30.10451223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02796416,0.525422858,1.559614981,-1.559614981,1,0.26344382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650244405,130.5600315,0.650244405,49.4399685,0,0.973105836,0,0,0,5,2,0% -2018-05-20 11:00:00,109.0944469,43.30753958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904057295,0.755859157,2.580882306,-2.580882306,1,0.088796821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596157074,126.5951613,0.596157074,53.4048387,0,0.966129486,0,0,0,5,3,0% -2018-05-20 12:00:00,100.1518653,54.57289289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747979802,0.952476663,5.383464039,-5.383464039,1,0,#DIV/0!,0,0,0.280820206,1,0.18366072,0,0.9410629,0.979824863,0.724496596,1,0,0,0.042399953,0.312029739,0.886806962,0.611303558,0.961238037,0.922476074,0,0,0,0,0,0,-0.490163513,119.3513293,0.490163513,60.64867065,0,0.947993223,0,0,0,5,4,0% -2018-05-20 13:00:00,89.47366439,64.33597401,0.194224646,1.586368132,0.179652014,0.175698991,0,0.175698991,0.174234843,0.001464147,0.578713494,0.526204309,0.052509185,0.005417171,0.047092014,1.561610037,1.122874574,-108.3233615,108.3233615,0,0,0.924970224,0.001354293,0.043558711,1,0.944612268,0,0.009231357,0.961238037,1,0.698652113,0.974155517,0.167481159,0.003867381,0.115824807,0.28266663,0.724496596,0.448993192,0.965796899,0.927034935,0.000981181,0.04197535,0.168462339,0.045842731,0,0.029145263,-0.331703782,109.3722208,0.331703782,70.6277792,0,0.8992631,0.168462339,0.072051991,0.215618926,5,5,28% -2018-05-20 14:00:00,78.82913998,73.14549871,119.3785212,388.7169241,44.07028323,43.6413273,0,43.6413273,42.74140158,0.899925718,89.74062744,59.46704122,30.27358621,1.328881641,28.94470457,1.375828039,1.276629786,-5.056255338,5.056255338,0.605175723,0.605175723,0.369164258,0.67578188,21.73546826,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.08466095,0.962770225,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.489601672,20.89295884,41.57426262,21.85572906,0,59.46704122,-0.152982897,98.79982959,0.152982897,81.20017041,0,0.72316608,41.57426262,64.86027614,84.02401615,5,6,102% -2018-05-20 15:00:00,67.31896627,81.58713568,326.7655164,653.710835,74.69420067,109.6871817,34.7819903,74.90519142,72.44189493,2.463296489,81.48038836,0,81.48038836,2.252305742,79.22808262,1.17493761,1.423964145,-2.344037084,2.344037084,0.931007639,0.931007639,0.228586546,2.332195822,75.0114345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.63390487,1.631787843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.689667934,72.10384404,71.3235728,73.73563188,34.7819903,0,0.053206997,86.95002341,-0.053206997,93.04997659,0,0,71.3235728,73.73563188,119.5820692,5,7,68% -2018-05-20 16:00:00,55.52730505,90.36189275,533.2037928,776.9210816,93.45603075,302.5128362,207.8553342,94.65750203,90.63798661,4.019515416,132.0994769,0,132.0994769,2.818044143,129.2814328,0.969134298,1.577112547,-1.365484392,1.365484392,0.763665273,0.763665273,0.175272629,3.236064762,104.0829667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.12468031,2.041663389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.344517904,100.0485065,89.46919822,102.0901699,207.8553342,0,0.267537256,74.48222837,-0.267537256,105.5177716,0.863110141,0,268.871245,102.0901699,335.6872195,5,8,25% -2018-05-20 17:00:00,43.75236219,100.547459,714.8413278,841.9674201,106.6584111,508.8320041,400.0009618,108.8310424,103.4422665,5.388775879,176.5377007,0,176.5377007,3.216144622,173.3215561,0.763622776,1.754884213,-0.824495797,0.824495797,0.671150775,0.671150775,0.149205715,3.881087774,124.829124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.43264116,2.330085831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81183488,119.9905021,102.244476,122.3205879,400.0009618,0,0.475078907,61.63551221,-0.475078907,118.3644878,0.944754326,0,480.1471149,122.3205879,560.2034932,5,9,17% -2018-05-20 18:00:00,32.45191632,114.3066639,856.8729496,878.0949954,115.8994592,699.8288634,580.9647302,118.8641332,112.4046629,6.459470238,211.2535635,0,211.2535635,3.494796319,207.7587671,0.566392788,1.995027641,-0.455050961,0.455050961,0.607971987,0.607971987,0.135258628,4.26969147,137.3279546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0476375,2.531968037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093376935,132.0048535,111.1410144,134.5368216,580.9647302,0,0.661619453,48.57650129,-0.661619453,131.4234987,0.974427857,0,677.2492314,134.5368216,765.3008904,5,10,13% -2018-05-20 19:00:00,22.74504596,136.7547119,948.753157,896.9528949,121.5523377,855.5424177,730.5032294,125.0391883,117.8870862,7.152102052,233.7014387,0,233.7014387,3.665251462,230.0361872,0.396975941,2.386819991,-0.165458027,0.165458027,0.558448679,0.558448679,0.12811798,4.398681098,141.4767045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3175513,2.655462207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.186829482,135.9927897,116.5043808,138.6482519,730.5032294,0,0.81442764,35.46919252,-0.81442764,144.5308075,0.988607192,0,838.685127,138.6482519,929.4276348,5,11,11% -2018-05-20 20:00:00,17.79249781,175.7344874,983.8771553,903.4274784,123.6611448,961.2921898,833.9430032,127.3491866,119.932305,7.416881588,242.281247,0,242.281247,3.728839775,238.5524072,0.310537669,3.067145414,0.087027161,-0.087027161,0.515271169,0.515271169,0.125687586,4.27357428,137.4528392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2834934,2.701531724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.096190018,132.1248973,118.3796834,134.826429,833.9430032,0,0.923087933,22.61822482,-0.923087933,157.3817752,0.995833979,0,948.8484629,134.826429,1037.089664,5,12,9% -2018-05-20 21:00:00,21.31205849,217.4411677,959.7574667,899.0214208,122.2158442,1006.988009,881.2223667,125.7656428,118.5305856,7.235057187,236.3895681,0,236.3895681,3.685258632,232.7043095,0.371965591,3.795064305,0.328813674,-0.328813674,0.47392324,0.47392324,0.127340342,3.913543972,125.8730269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9361074,2.669957334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.835349286,120.9939412,116.7714567,123.6638986,881.2223667,0,0.980201746,11.42010797,-0.980201746,168.579892,0.998990093,0,997.1038707,123.6638986,1078.039419,5,13,8% -2018-05-20 22:00:00,30.45980805,242.4758499,878.1230573,882.7264002,117.2261612,987.0509324,866.7399099,120.3110224,113.6913599,6.619662527,216.4459031,0,216.4459031,3.534801279,212.9111018,0.53162394,4.232001938,0.58303684,-0.58303684,0.430448518,0.430448518,0.13349628,3.35273675,107.8355388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2844596,2.560951493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.429046362,103.6556217,111.713506,106.2165731,866.7399099,0,0.981889643,10.92090826,-0.981889643,169.0790917,0.99907778,0,977.6540914,106.2165731,1047.170714,5,14,7% -2018-05-20 23:00:00,41.57860128,257.3344679,744.847547,850.4492399,108.6723947,900.275622,789.2651255,111.0104965,105.395521,5.614975434,183.873785,0,183.873785,3.276873659,180.5969113,0.725683491,4.491333744,0.879914877,-0.879914877,0.379679383,0.379679383,0.145898842,2.640068483,84.91367758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3101837,2.374083811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912720629,81.62225674,103.2229044,83.99634055,789.2651255,0,0.928056712,21.8661098,-0.928056712,158.1338902,0.996123982,0,889.4288241,83.99634055,944.4027491,5,15,6% -2018-05-20 00:00:00,53.30202116,267.9737361,569.7643622,792.3069626,96.2842066,749.2732214,651.5972144,97.67600695,93.38088252,4.295124431,141.0492902,0,141.0492902,2.90332408,138.1459661,0.930295767,4.677024004,1.276224061,-1.276224061,0.311906522,0.311906522,0.168989521,1.839116912,59.15232182,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.76125619,2.103448413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.332433942,56.85946171,91.09369014,58.96291012,651.5972144,0,0.822405009,34.67372591,-0.822405009,145.3262741,0.989202705,0,735.6554172,58.96291012,774.2454626,5,16,5% -2018-05-20 01:00:00,65.10450944,276.9168701,366.7838476,684.0225737,78.83467922,539.026497,459.8040027,79.22249435,76.45752277,2.764971573,91.30814678,0,91.30814678,2.377156448,88.93099033,1.136288048,4.833111137,1.921322194,-1.921322194,0.201588243,0.201588243,0.214934981,1.031873176,33.18858839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49387909,1.722241754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747588604,31.90213355,74.2414677,33.62437531,459.8040027,0,0.67220589,47.76245444,-0.67220589,132.2375456,0.975618027,0,522.8345418,33.62437531,544.841023,5,17,4% -2018-05-20 02:00:00,76.67673198,285.3680056,156.9239721,457.5550727,51.48272555,274.373448,223.2601574,51.11329061,49.93033143,1.182959187,39.60042796,0,39.60042796,1.552394126,38.04803384,1.338261433,4.980611278,3.443354461,-3.443354461,0,0,0.328074321,0.388098532,12.48258286,0.055440543,1,0.282639707,0,0.927039034,0.965800997,0.724496596,1,48.11546437,1.12470426,0.009239935,0.312029739,0.974131812,0.698628407,0.961238037,0.922476074,0.277064499,11.99873344,48.39252887,13.1234377,210.8824931,0,0.487941607,60.79462108,-0.487941607,119.2053789,0.947528722,0,248.2097481,13.1234377,256.7987756,5,18,3% -2018-05-20 03:00:00,87.60872437,294.0703819,5.090670196,27.68519572,3.935546438,11.73805543,7.882804618,3.855250814,3.816875192,0.038375622,1.352963172,0,1.352963172,0.118671246,1.234291927,1.529060694,5.132496397,17.20517153,-17.20517153,0,0,0.773090042,0.029667811,0.954218798,0.706925691,1,0.058056743,0,0.955714318,0.994476281,0.724496596,1,3.691202489,0.085976914,0.090501446,0.312029739,0.775604366,0.500100962,0.961238037,0.922476074,0.020615017,0.917231404,3.711817506,1.003208318,2.310247516,0,0.284729958,73.45729244,-0.284729958,106.5427076,0.874395015,0,5.731886417,1.003208318,6.388466197,5,19,11% -2018-05-20 04:00:00,98.24816682,303.6195552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714753995,5.299160911,-4.091765818,4.091765818,1,0.770113145,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.065959577,86.2180489,-0.065959577,93.7819511,0,0,0,0,0,5,20,0% -2018-05-20 05:00:00,107.4378136,314.5683342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875143589,5.490253154,-1.367163943,1.367163943,1,0.763952493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141472948,98.13308839,0.141472948,81.86691161,0,0.696575543,0,0,0,5,21,0% -2018-05-20 06:00:00,114.899604,327.3816504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005376399,5.71388771,-0.470631205,0.470631205,1,0.610636366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.327867187,109.1393734,0.327867187,70.86062655,0,0.897499225,0,0,0,5,22,0% -2018-05-20 07:00:00,119.951588,342.1975078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093550153,5.972473203,0.066544138,-0.066544138,1,0.518773972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480521584,118.719473,0.480521584,61.28052696,0,0.945946401,0,0,0,5,23,0% -2018-05-21 08:00:00,121.9416173,358.4569823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128282717,6.256254567,0.507804686,-0.507804686,1,0.443313974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589034888,126.0885508,0.589034888,53.91144924,0,0.965115384,0,0,0,5,0,0% -2018-05-21 09:00:00,120.5546605,14.85223945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104075755,0.25922048,0.968036991,-0.968036991,1,0.364609614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64601428,130.2417653,0.64601428,49.75823466,0,0.97260233,0,0,0,5,1,0% -2018-05-21 10:00:00,116.0141743,29.99348076,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024829321,0.523484993,1.569488328,-1.569488328,1,0.261755378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647578563,130.3592837,0.647578563,49.64071631,0,0.972789291,0,0,0,5,2,0% -2018-05-21 11:00:00,108.9357372,43.16996311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901287288,0.753457994,2.601044004,-2.601044004,1,0.085348968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593622164,126.4144715,0.593622164,53.58552847,0,0.965771339,0,0,0,5,3,0% -2018-05-21 12:00:00,100.0131148,54.41966239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745558149,0.949802286,5.455586816,-5.455586816,1,0,#DIV/0!,0,0,0.287143361,1,0.181285918,0,0.94137318,0.980135143,0.724496596,1,0,0,0.043240133,0.312029739,0.884706902,0.609203498,0.961238037,0.922476074,0,0,0,0,0,0,-0.487822048,119.1975313,0.487822048,60.80246867,0,0.947503608,0,0,0,5,4,0% -2018-05-21 13:00:00,89.36871612,64.17147117,0.270611574,2.025716025,0.248292722,0.242845765,0,0.242845765,0.24080578,0.002039984,0.741339065,0.668239214,0.073099851,0.007486942,0.065612909,1.559778345,1.120003458,-90.28785819,90.28785819,0,0,0.917524402,0.001871735,0.060201445,1,0.933201013,0,0.011075234,0.961238037,1,0.693569664,0.969073068,0.231471676,0.0053305,0.115824807,0.276894821,0.724496596,0.448993192,0.966672049,0.927910086,0.001356066,0.058039177,0.232827742,0.063369678,0,0.044637703,-0.329878031,109.2613727,0.329878031,70.73862735,0,0.898428827,0.232827742,0.103473477,0.300549063,5,5,29% -2018-05-21 14:00:00,78.7209481,72.96909715,121.2304733,392.4631349,44.46954859,44.04251414,0,44.04251414,43.12862762,0.913886516,90.06407494,59.32942216,30.73465278,1.340920965,29.39373182,1.373939735,1.273550997,-5.007320252,5.007320252,0.613544115,0.613544115,0.366818238,0.690261393,22.20117917,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.45687735,0.971492675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.50009203,21.34061788,41.95696938,22.31211055,0,59.32942216,-0.151171962,98.69484958,0.151171962,81.30515042,0,0.719250837,41.95696938,64.98484708,84.48825209,5,6,101% -2018-05-21 15:00:00,67.21876503,81.39430968,328.584094,655.1794751,74.88966135,110.9715041,35.86303668,75.10846744,72.63146175,2.477005695,81.9272174,0,81.9272174,2.258199603,79.66901779,1.173188769,1.420598696,-2.334159305,2.334159305,0.92931844,0.92931844,0.227916271,2.341830335,75.32131357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8161237,1.636057925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696648106,72.40171159,71.51277181,74.03776951,35.86303668,0,0.054737729,86.86219088,-0.054737729,93.13780912,0,0,71.51277181,74.03776951,119.9690112,5,7,68% -2018-05-21 16:00:00,55.43023235,90.14418907,534.8178282,777.630293,93.58314099,303.8094078,209.0164611,94.79294671,90.76126401,4.031682697,132.4946513,0,132.4946513,2.821876986,129.6727744,0.96744006,1.573312901,-1.362447488,1.362447488,0.763145932,0.763145932,0.174981341,3.243855511,104.3335439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.24317924,2.04444027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.350162275,100.2893709,89.59334151,102.3338112,209.0164611,0,0.268786418,74.40793558,-0.268786418,105.5920644,0.863978696,0,270.179111,102.3338112,337.1545438,5,8,25% -2018-05-21 17:00:00,43.65099504,100.2916671,716.2672261,842.3822625,106.7549765,509.9688849,401.03344,108.935445,103.5359201,5.399524903,176.8863381,0,176.8863381,3.219056425,173.6672816,0.761853585,1.750419804,-0.823737024,0.823737024,0.671021017,0.671021017,0.149043503,3.887945169,125.0496814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.52266453,2.332195422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81680304,120.2025102,102.3394676,122.5347056,401.03344,0,0.476070613,61.57091956,-0.476070613,118.4290804,0.944973563,0,481.3054664,122.5347056,561.5019806,5,9,17% -2018-05-21 18:00:00,32.33374221,113.997396,858.166852,878.3820177,115.9806014,700.7895145,581.8369319,118.9525826,112.4833584,6.469224222,211.5697318,0,211.5697318,3.497243056,208.0724888,0.564330261,1.989629899,-0.455360878,0.455360878,0.608024986,0.608024986,0.135149244,4.276157941,137.5359386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1232826,2.533740689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.098061871,132.2047756,111.2213445,134.7385163,581.8369319,0,0.662396224,48.51712047,-0.662396224,131.4828795,0.974516478,0,678.2310221,134.7385163,766.4146862,5,10,13% -2018-05-21 19:00:00,22.58867074,136.4176925,949.9869302,897.1866812,121.6268604,856.3699145,731.24915,125.1207645,117.9593618,7.161402756,234.0028284,0,234.0028284,3.667498595,230.3353298,0.394246678,2.380937892,-0.166438617,0.166438617,0.558616369,0.558616369,0.128030035,4.405170269,141.6854185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3870253,2.657090248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.191530864,136.1934136,116.5785562,138.8505038,731.24915,0,0.815046818,35.40800856,-0.815046818,144.5919914,0.988653831,0,839.5308296,138.8505038,930.4057074,5,11,11% -2018-05-21 20:00:00,17.5914517,175.641015,985.1286988,903.6514495,123.735814,962.0593971,834.6283582,127.4310389,120.0047226,7.426316252,242.5869498,0,242.5869498,3.731091328,238.8558585,0.307028752,3.065514014,0.085480815,-0.085480815,0.515535609,0.515535609,0.125603704,4.280425696,137.6732042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.353104,2.703162966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.101153845,132.3367206,118.4542579,135.0398835,834.6283582,0,0.923617573,22.53918858,-0.923617573,157.4608114,0.99586504,0,949.6314615,135.0398835,1038.012364,5,12,9% -2018-05-21 21:00:00,21.13043201,217.6904652,961.1036848,899.2719206,122.2968343,1007.784583,881.9302445,125.854339,118.6091335,7.245205548,236.7184164,0,236.7184164,3.687700781,233.0307157,0.368795611,3.799415368,0.326640928,-0.326640928,0.474294801,0.474294801,0.127246244,3.921024192,126.1136164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0116106,2.671726662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840768679,121.2252051,116.8523793,123.8969318,881.9302445,0,0.980715871,11.27036667,-0.980715871,168.7296333,0.999016834,0,997.91554,123.8969318,1079.003604,5,13,8% -2018-05-21 22:00:00,30.3137825,242.7534043,879.6333824,883.0490147,117.3199846,987.9764836,867.5630814,120.4134022,113.7823542,6.631047995,216.814928,0,216.814928,3.537630401,213.2772976,0.529075313,4.236846176,0.580005427,-0.580005427,0.43096692,0.43096692,0.133373729,3.361019511,108.1019409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3719268,2.563001183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.435047195,103.9116975,111.806974,106.4746986,867.5630814,0,0.98246311,10.74609436,-0.98246311,169.2539056,0.999107504,0,978.5957587,106.4746986,1048.281319,5,14,7% -2018-05-21 23:00:00,41.45053191,257.5707875,746.5774831,850.9228415,108.7873831,901.4381704,790.3031118,111.1350586,105.5070421,5.628016424,184.2966953,0,184.2966953,3.280340984,181.0163544,0.723448258,4.495458299,0.875488374,-0.875488374,0.38043636,0.38043636,0.145714793,2.649197082,85.20728473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4173821,2.376595876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919334268,81.9044831,103.3367163,84.28107897,790.3031118,0,0.928760016,21.75765815,-0.928760016,158.2423419,0.99616478,0,890.6088416,84.28107897,945.7691222,5,15,6% -2018-05-21 00:00:00,53.17967065,268.1744721,571.7471481,793.1025992,96.43467609,750.7976929,652.9608066,97.83688631,93.5268148,4.31007151,141.5345768,0,141.5345768,2.90786129,138.6267155,0.928160348,4.680527507,1.269100709,-1.269100709,0.313124686,0.313124686,0.16866665,1.848924324,59.46776189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90153185,2.106735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339539379,57.1626747,91.24107123,59.2694103,652.9608066,0,0.82329929,34.58355773,-0.82329929,145.4164423,0.989268744,0,737.1947882,59.2694103,775.9854318,5,16,5% -2018-05-21 01:00:00,64.98063144,277.0925461,369.010381,685.5938442,79.0558714,541.0903013,461.6365,79.45380131,76.67204519,2.781756123,91.85466534,0,91.85466534,2.383826208,89.47083913,1.134125969,4.836177262,1.907510812,-1.907510812,0.203950129,0.203950129,0.214237527,1.041750656,33.50628209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7000862,1.727073973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754744804,32.20751282,74.454831,33.93458679,461.6365,0,0.673338164,47.67476835,-0.673338164,132.3252316,0.975743107,0,524.8934638,33.93458679,547.1029722,5,17,4% -2018-05-21 02:00:00,76.54673511,285.5259198,159.2307447,461.3480735,51.89712717,277.2874983,225.7549124,51.53258592,50.33223731,1.200348613,40.17222743,0,40.17222743,1.564889864,38.60733757,1.335992559,4.983367401,3.402163497,-3.402163497,0,0,0.325924037,0.391222466,12.58305933,0.049113781,1,0.28587929,0,0.926544812,0.965306775,0.724496596,1,48.49022987,1.13375738,0.008209325,0.312029739,0.976984088,0.701480684,0.961238037,0.922476074,0.27972864,12.09531525,48.76995851,13.22907263,214.6672351,0,0.489337499,60.7029534,-0.489337499,119.2970466,0.947821033,0,252.2360791,13.22907263,260.8942425,5,18,3% -2018-05-21 03:00:00,87.47621011,294.2143367,5.786561469,31.24908984,4.410532785,13.26711968,8.945959188,4.321160493,4.277538948,0.043621545,1.536012659,0,1.536012659,0.132993837,1.403018823,1.526747884,5.135008882,16.26101793,-16.26101793,0,0,0.762202702,0.033248459,1.069384737,0.692368665,1,0.061419417,0,0.955369752,0.994131715,0.724496596,1,4.137638386,0.096353582,0.089102765,0.312029739,0.77857729,0.503073886,0.961238037,0.922476074,0.023068573,1.027933285,4.160706958,1.124286867,2.752057367,0,0.286279032,73.36468235,-0.286279032,106.6353176,0.875345225,0,6.569707233,1.124286867,7.305530502,5,19,11% -2018-05-21 04:00:00,98.09360065,303.7497225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712056306,5.30143276,-4.158114808,4.158114808,1,0.758766799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.067926761,86.10508413,-0.067926761,93.89491587,0,0,0,0,0,5,20,0% -2018-05-21 05:00:00,107.2676119,314.6803359,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872173009,5.492207953,-1.375822991,1.375822991,1,0.765433278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.139255283,98.00475496,0.139255283,81.99524504,0,0.690947194,0,0,0,5,21,0% -2018-05-21 06:00:00,114.7137986,327.4653963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002133483,5.715349352,-0.471556162,0.471556162,1,0.610794543,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325442595,108.9923916,0.325442595,71.00760836,0,0.896363074,0,0,0,5,22,0% -2018-05-21 07:00:00,119.7542177,342.2383219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090105393,5.973185543,0.068322416,-0.068322416,1,0.518469868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477947946,118.5514647,0.477947946,61.44853533,0,0.945386097,0,0,0,5,23,0% -2018-05-22 08:00:00,121.7416967,358.4427785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124793444,6.256006665,0.511393477,-0.511393477,1,0.442700254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586380409,125.9005696,0.586380409,54.09943042,0,0.964731121,0,0,0,5,0,0% -2018-05-22 09:00:00,120.3635803,14.7835257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100740776,0.258021198,0.973772886,-0.973772886,1,0.363628719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643352797,130.0422859,0.643352797,49.95771408,0,0.972282144,0,0,0,5,1,0% -2018-05-22 10:00:00,115.840547,29.88352052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021798952,0.521565825,1.579079809,-1.579079809,1,0.260115138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644984456,130.1645101,0.644984456,49.83548993,0,0.972478752,0,0,0,5,2,0% -2018-05-22 11:00:00,108.782783,43.03447998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898617733,0.751093368,2.620697631,-2.620697631,1,0.081988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591165245,126.2397412,0.591165245,53.76025879,0,0.96542128,0,0,0,5,3,0% -2018-05-22 12:00:00,99.87985098,54.26914275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743232256,0.947175223,5.526613569,-5.526613569,1,0,#DIV/0!,0,0,0.293262691,1,0.179005836,0,0.941669903,0.980431866,0.724496596,1,0,0,0.044048993,0.312029739,0.882690395,0.607186991,0.961238037,0.922476074,0,0,0,0,0,0,-0.485562761,119.0493495,0.485562761,60.95065046,0,0.9470267,0,0,0,5,4,0% -2018-05-22 13:00:00,89.26759153,64.01008567,0.359920486,2.531486949,0.327561523,0.320397567,0,0.320397567,0.317684335,0.002713233,0.927758644,0.830614567,0.097144077,0.009877188,0.087266889,1.558013388,1.117186749,-77.79792192,77.79792192,0,0,0.910094135,0.002469297,0.079421084,1,0.922084288,0,0.012853106,0.961238037,1,0.688694332,0.964197736,0.305370266,0.007014388,0.115824807,0.271359229,0.724496596,0.448993192,0.967504845,0.928742882,0.001788997,0.076600418,0.307159264,0.083614806,0,0.064717925,-0.328113312,109.1543011,0.328113312,70.84569886,0,0.897613619,0.307159264,0.141706497,0.399903332,5,5,30% -2018-05-22 14:00:00,78.61781756,72.79614678,122.9998667,396.0047567,44.84734159,44.42225372,0,44.42225372,43.49502877,0.927224951,90.35543942,59.18038487,31.17505455,1.352312818,29.82274173,1.372139767,1.270532444,-4.961505301,4.961505301,0.621378933,0.621378933,0.364612928,0.704161581,22.64825699,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.80907607,0.979746033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.510162669,21.77036609,42.31923874,22.75011212,0,59.18038487,-0.149443621,98.59468498,0.149443621,81.40531502,0,0.715425666,42.31923874,65.0892784,84.91886966,5,6,101% -2018-05-22 15:00:00,67.12361246,81.20527674,330.3104453,656.5650879,75.07452128,112.1920924,36.89132531,75.30076713,72.81074747,2.490019661,82.35136548,0,82.35136548,2.263773812,80.08759167,1.171528043,1.417299449,-2.324876175,2.324876175,0.927730931,0.927730931,0.227284733,2.350968464,75.61522721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.98845996,1.640096421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703268649,72.68423256,71.69172861,74.32432898,36.89132531,0,0.056188375,86.77894686,-0.056188375,93.22105314,0,0,71.69172861,74.32432898,120.3355154,5,7,68% -2018-05-22 16:00:00,55.33830072,89.93065386,536.3448117,778.2985964,93.70319526,305.0309274,210.1100355,94.92089193,90.87769819,4.043193744,132.8685063,0,132.8685063,2.825497065,130.0430092,0.96583555,1.569586008,-1.359626338,1.359626338,0.762663487,0.762663487,0.174707004,3.251244645,104.5712038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.3551002,2.047063005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355515677,100.5178187,89.71061588,102.5648817,210.1100355,0,0.269960702,74.33807159,-0.269960702,105.6619284,0.864787858,0,271.4112233,102.5648817,338.5378871,5,8,25% -2018-05-22 17:00:00,43.55504517,100.0403512,717.6145506,842.7731343,106.8461394,511.0322264,401.9982107,109.0340157,103.6243341,5.409681604,177.2157614,0,177.2157614,3.221805324,173.993956,0.760178944,1.746033514,-0.823075116,0.823075116,0.670907824,0.670907824,0.148890709,3.894465445,125.2593959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.60765147,2.33418699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.821526958,120.4040958,102.4291784,122.7382828,401.9982107,0,0.476994572,61.51070394,-0.476994572,118.4892961,0.945177004,0,482.3886429,122.7382828,562.7183942,5,9,17% -2018-05-22 18:00:00,32.22151359,113.6922127,859.3917928,878.6531326,116.0573752,701.6832596,582.6469842,119.0362754,112.5578171,6.478458342,211.8690479,0,211.8690479,3.499558067,208.3694898,0.562371502,1.984303446,-0.455715091,0.455715091,0.60808556,0.60808556,0.135045943,4.282338804,137.7347364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1948551,2.535417907,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102539886,132.3958676,111.297395,134.9312855,582.6469842,0,0.663113762,48.46221944,-0.663113762,131.5377806,0.974598157,0,679.1440718,134.9312855,767.4538995,5,10,13% -2018-05-22 19:00:00,22.43885254,136.0810237,951.1614256,897.4087935,121.6977713,857.1394117,731.9410206,125.1983911,118.0281345,7.170256599,234.2897366,0,234.2897366,3.669636821,230.6200998,0.391631857,2.375061912,-0.167433839,0.167433839,0.558786562,0.558786562,0.127946496,4.411416305,141.8863125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4531323,2.658639385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196056096,136.3865205,116.6491884,139.0451599,731.9410206,0,0.815616056,35.35167829,-0.815616056,144.6483217,0.988696646,0,840.3168203,139.0451599,931.3190966,5,11,11% -2018-05-22 20:00:00,17.39637828,175.5402737,986.3299153,903.8659913,123.8074512,962.7781891,835.2686178,127.5095712,120.0741997,7.435371529,242.8803588,0,242.8803588,3.733251454,239.1471073,0.303624079,3.063755746,0.083941079,-0.083941079,0.51579892,0.51579892,0.125523366,4.287067699,137.8868339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.419888,2.70472797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.105965954,132.5420695,118.525854,135.2467975,835.2686178,0,0.924106699,22.46596393,-0.924106699,157.5340361,0.995893694,0,950.3646031,135.2467975,1038.880927,5,12,9% -2018-05-22 21:00:00,20.95314976,217.9308323,962.407125,899.5139356,122.3752137,1008.541807,882.6016263,125.940181,118.6851495,7.25503143,237.036814,0,237.036814,3.690064211,233.3467498,0.365701452,3.803610565,0.32449459,-0.32449459,0.474661846,0.474661846,0.127155349,3.928319495,126.3482585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0846801,2.673438959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846054102,121.4507519,116.9307342,124.1241909,882.6016263,0,0.981198391,11.12802133,-0.981198391,168.8719787,0.999041906,0,998.686745,124.1241909,1079.923545,5,13,8% -2018-05-22 22:00:00,30.17073819,243.02215,881.1065475,883.3628711,117.4114408,988.8701699,868.3569639,120.513206,113.8710527,6.642153336,217.1748717,0,217.1748717,3.540388143,213.6344835,0.526578719,4.241536673,0.577024584,-0.577024584,0.431476674,0.431476674,0.133254532,3.369132541,108.3628838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4571871,2.564999157,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440925057,104.1625257,111.8981122,106.7275249,868.3569639,0,0.983012748,10.57586508,-0.983012748,169.4241349,0.99913596,0,979.5047807,106.7275249,1049.355811,5,14,7% -2018-05-22 23:00:00,41.32465757,257.7993838,748.2735968,851.3856081,108.9000086,902.5736772,791.3166032,111.257074,105.6162716,5.640802445,184.7113338,0,184.7113338,3.283737059,181.4275968,0.721251337,4.499448056,0.871150264,-0.871150264,0.381178221,0.381178221,0.145535014,2.658163041,85.49566076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5223776,2.379056321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.925830074,82.18168111,103.4482076,84.56073743,791.3166032,0,0.929445595,21.65144231,-0.929445595,158.3485577,0.99620449,0,891.7613605,84.56073743,947.104672,5,15,6% -2018-05-22 00:00:00,53.05916903,268.3684101,573.6971006,793.8813601,96.58237697,752.2958625,654.3010295,97.99483302,93.67006195,4.324771075,142.0118191,0,142.0118191,2.912315017,139.0995041,0.926057198,4.683912365,1.262141513,-1.262141513,0.314314779,0.314314779,0.168350819,1.858572306,59.77807417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.03922646,2.109962316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346529309,57.46095866,91.38575577,59.57092098,654.3010295,0,0.824179862,34.49457024,-0.824179862,145.5054298,0.989333631,0,738.7077687,59.57092098,777.6957451,5,16,5% -2018-05-22 01:00:00,64.85854076,277.2620266,371.2033768,687.1304412,79.27286082,543.1216772,463.4408978,79.68077943,76.88249158,2.798287852,92.3929256,0,92.3929256,2.39036924,90.00255636,1.131995084,4.839135255,1.89407412,-1.89407412,0.206247939,0.206247939,0.213556411,1.051481229,33.81925076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.90237528,1.731814377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761794571,32.50835021,74.66416985,34.24016458,463.4408978,0,0.6744584,47.58789406,-0.6744584,132.4121059,0.975866443,0,526.9205905,34.24016458,549.3300934,5,17,4% -2018-05-22 02:00:00,76.41865992,285.6779804,161.5068934,465.0468979,52.30199741,280.1505723,228.2081659,51.94240639,50.72489921,1.217507183,40.73631436,0,40.73631436,1.577098196,39.15921617,1.333757226,4.986021359,3.362468784,-3.362468784,0,0,0.323837555,0.394274549,12.6812248,0.042936123,1,0.289070257,0,0.926055878,0.964817841,0.724496596,1,48.85586687,1.142602274,0.007197191,0.312029739,0.979793307,0.704289903,0.961238037,0.922476074,0.282347477,12.18967563,49.13821435,13.33227791,218.409792,0,0.490720757,60.61203412,-0.490720757,119.3879659,0.948109058,0,256.2145166,13.33227791,264.9402258,5,18,3% -2018-05-22 03:00:00,87.34539843,294.3526013,6.522250653,34.98269552,4.902028387,14.87214703,10.06876541,4.803381625,4.754214144,0.04916748,1.729209425,0,1.729209425,0.147814242,1.581395183,1.524464789,5.137422055,15.42231399,-15.42231399,0,0,0.751585403,0.036953561,1.188553536,0.678168633,1,0.064750469,0,0.955025791,0.993787755,0.724496596,1,4.59970507,0.107090915,0.087724062,0.312029739,0.781523088,0.506019684,0.961238037,0.922476074,0.02560355,1.142482868,4.62530862,1.249573783,3.240444533,0,0.287821314,73.27243383,-0.287821314,106.7275662,0.876281107,0,7.464848943,1.249573783,8.282669993,5,19,11% -2018-05-22 04:00:00,97.94181765,303.8742787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709407193,5.303606676,-4.226064407,4.226064407,1,0.747146733,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069872176,85.99335452,-0.069872176,94.00664548,0,0,0,0,0,5,20,0% -2018-05-22 05:00:00,107.1008795,314.7868655,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869262979,5.494067245,-1.384615792,1.384615792,1,0.766936935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137066718,97.87814518,0.137066718,82.12185482,0,0.685214143,0,0,0,5,21,0% -2018-05-22 06:00:00,114.5322906,327.5441068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998965571,5.716723109,-0.472578121,0.472578121,1,0.610969308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.323055763,108.8478255,0.323055763,71.15217446,0,0.895227959,0,0,0,5,22,0% -2018-05-22 07:00:00,119.5619942,342.2751222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086750459,5.97382783,0.069989067,-0.069989067,1,0.518184854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475421458,118.3867946,0.475421458,61.61320535,0,0.944830157,0,0,0,5,23,0% -2018-05-23 08:00:00,121.5475782,358.4262328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121405438,6.255717888,0.514841176,-0.514841176,1,0.442110663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583782559,125.7170298,0.583782559,54.28297015,0,0.964351672,0,0,0,5,0,0% -2018-05-23 09:00:00,120.1785904,14.71437074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097512093,0.256814217,0.979315968,-0.979315968,1,0.362680796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640756852,129.8482793,0.640756852,50.15172074,0,0.97196728,0,0,0,5,1,0% -2018-05-23 10:00:00,115.6729538,29.77468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0188739,0.5196662,1.588376434,-1.588376434,1,0.258525322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642463618,129.9757716,0.642463618,50.02422842,0,0.972174581,0,0,0,5,2,0% -2018-05-23 11:00:00,108.6356229,42.90114441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896049305,0.748766223,2.639810449,-2.639810449,1,0.078719516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588787612,126.0710206,0.588787612,53.92897937,0,0.965079735,0,0,0,5,3,0% -2018-05-23 12:00:00,99.75210136,54.12139827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741002605,0.944596596,5.596370021,-5.596370021,1,0,#DIV/0!,0,0,0.299171175,1,0.176821101,0,0.941953133,0.980715096,0.724496596,1,0,0,0.04482606,0.312029739,0.880758025,0.605254621,0.961238037,0.922476074,0,0,0,0,0,0,-0.483386652,118.9068242,0.483386652,61.0931758,0,0.946563135,0,0,0,5,4,0% -2018-05-23 13:00:00,89.17040323,63.85189397,0.461728446,3.101586056,0.416821546,0.407733542,0,0.407733542,0.404252838,0.003480704,1.13691443,1.012394315,0.124520115,0.012568708,0.111951408,1.556317132,1.114425783,-68.66257964,68.66257964,0,0,0.90274175,0.003142177,0.10106321,1,0.911285751,0,0.014562944,0.961238037,1,0.684028901,0.959532305,0.388583204,0.008904552,0.115824807,0.266062962,0.724496596,0.448993192,0.968295621,0.929533658,0.002276496,0.097511533,0.390859701,0.106416085,0,0.089813801,-0.326411809,109.051131,0.326411809,70.94886905,0,0.896819267,0.390859701,0.186962833,0.513223136,5,5,31% -2018-05-23 14:00:00,78.51975399,72.62673919,124.6859226,399.3459618,45.20406714,44.78093288,0,44.78093288,43.84099773,0.939935152,90.61723458,59.02261967,31.59461491,1.36306941,30.2315455,1.370428235,1.267575724,-4.918672268,4.918672268,0.628703813,0.628703813,0.362543471,0.717466433,23.07618676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.14163459,0.987539147,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.519801988,22.18170846,42.66143658,23.1692476,0,59.02261967,-0.147798213,98.49935129,0.147798213,81.50064871,0,0.711700917,42.66143658,65.17570017,85.31762883,5,6,100% -2018-05-23 15:00:00,67.03350085,81.02014964,331.9447916,657.8692535,75.24891757,113.3485015,37.86627642,75.48222512,72.97988507,2.502340053,82.75289034,0,82.75289034,2.269032504,80.48385784,1.169955299,1.414068372,-2.316174867,2.316174867,0.92624292,0.92624292,0.226691063,2.35961406,75.89329928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15104145,1.643906325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709532354,72.95152601,71.86057381,74.59543234,37.86627642,0,0.05755897,86.70029024,-0.05755897,93.29970976,0,0,71.86057381,74.59543234,120.6817924,5,7,68% -2018-05-23 16:00:00,55.25149153,89.72143387,537.7853036,778.9266914,93.81627191,306.1776483,211.1362304,95.04141795,90.98736517,4.05405278,133.2211799,0,133.2211799,2.828906743,130.3922731,0.964320444,1.565934431,-1.357017736,1.357017736,0.76221739,0.76221739,0.174449304,3.258235735,104.7960614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.46051627,2.049533306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.360580699,100.7339603,89.82109697,102.7834936,211.1362304,0,0.271060464,74.27261962,-0.271060464,105.7273804,0.865539311,0,272.5678043,102.7834936,339.8375452,5,8,25% -2018-05-23 17:00:00,43.4644862,99.79371919,718.8840572,843.1404469,106.9319651,512.022674,402.8958505,109.1268235,103.7075718,5.419251681,177.5261559,0,177.5261559,3.224393286,174.3017626,0.758598392,1.741728973,-0.822508659,0.822508659,0.670810954,0.670810954,0.148747165,3.900652129,125.4583809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.68766277,2.336061959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826009189,120.5953677,102.513672,122.9314297,402.8958505,0,0.477851409,61.45483208,-0.477851409,118.5451679,0.945364963,0,483.3972926,122.9314297,563.8534547,5,9,17% -2018-05-23 18:00:00,32.1152072,113.3914389,860.5486181,878.9086288,116.1298407,702.5109947,583.3957182,119.1152765,112.6280975,6.487178981,212.1517187,0,212.1517187,3.501743171,208.6499756,0.560516106,1.979053953,-0.45611264,0.45611264,0.608153545,0.608153545,0.134948611,4.288237305,137.9244525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2624114,2.537001007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10681333,132.5782299,111.3692247,135.1152309,583.3957182,0,0.663772887,48.41174662,-0.663772887,131.5882534,0.974673031,0,679.9892974,135.1152309,768.4195137,5,10,13% -2018-05-23 19:00:00,22.2956076,135.7451658,952.2774783,897.6194555,121.7651255,857.8519393,732.5798117,125.2721276,118.0934577,7.178669875,234.5623675,0,234.5623675,3.6716678,230.8906997,0.389131761,2.369200086,-0.168442839,0.168442839,0.558959112,0.558959112,0.127867274,4.417421843,142.0794713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5159235,2.660110822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.200407088,136.572192,116.7163306,139.2323029,732.5798117,0,0.816136289,35.30012896,-0.816136289,144.699871,0.988735723,0,841.0441601,139.2323029,932.1689177,5,11,11% -2018-05-23 20:00:00,17.20735166,175.4322684,987.4815311,904.0712863,123.8761033,963.4496159,835.8647812,127.5848347,120.1407818,7.444052895,243.1616514,0,243.1616514,3.73532157,239.4263299,0.300324942,3.061870697,0.08240883,-0.08240883,0.51606095,0.51606095,0.125446501,4.293501999,138.0937831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4838892,2.706227762,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110627583,132.740997,118.5945168,135.4472247,835.8647812,0,0.924556276,22.39846003,-0.924556276,157.60154,0.995920004,0,951.0489728,135.4472247,1039.696472,5,12,9% -2018-05-23 21:00:00,20.78024298,218.1619099,963.6683157,899.747616,122.4510181,1009.260639,883.2374317,126.0232069,118.7586681,7.264538819,237.3448901,0,237.3448901,3.692349992,233.6525401,0.362683659,3.807643631,0.322375633,-0.322375633,0.475024209,0.475024209,0.127067598,3.935430399,126.5769696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.155349,2.675095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851205927,121.6705977,117.0065549,124.3456927,883.2374317,0,0.981650205,10.993085,-0.981650205,169.006915,0.99906536,0,999.4184774,124.3456927,1080.800246,5,13,8% -2018-05-23 22:00:00,30.03068737,243.2818586,882.5428091,883.6680882,117.5005503,989.732752,869.1222964,120.6104557,113.9574752,6.652980482,217.5257969,0,217.5257969,3.543075123,213.9827218,0.524134371,4.246069442,0.574095429,-0.574095429,0.431977589,0.431977589,0.133138641,3.377074988,108.6183402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5402597,2.566945866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446679333,104.4080801,111.9869391,106.975026,869.1222964,0,0.983539304,10.41020465,-0.983539304,169.5897953,0.999163191,0,980.3819458,106.975026,1050.394961,5,14,7% -2018-05-23 23:00:00,41.20099898,258.0201223,749.9358172,851.8376216,109.0102739,903.6826153,792.3060704,111.3765449,105.723212,5.653332964,185.1176833,0,185.1176833,3.287061964,181.8306213,0.719093087,4.503300671,0.866901816,-0.866901816,0.381904748,0.381904748,0.145359471,2.666964049,85.77873146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6251727,2.381465203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932206375,82.45377943,103.5573791,84.83524463,792.3060704,0,0.930113968,21.5474125,-0.930113968,158.4525875,0.996243147,0,892.8868719,84.83524463,948.4098428,5,15,6% -2018-05-23 00:00:00,52.94055045,268.5554617,575.6137881,794.6432848,96.72729249,753.7678507,655.6180231,98.14982761,93.81060774,4.339219875,142.4809119,0,142.4809119,2.916684754,139.5642272,0.923986913,4.687177031,1.25534763,-1.25534763,0.315476601,0.315476601,0.168042001,1.868057079,60.08313708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.17432442,2.113128176,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353400995,57.75419673,91.52772541,59.86732491,655.6180231,0,0.825046956,34.40674779,-0.825046956,145.5932522,0.989397389,0,740.1944854,59.86732491,779.3764522,5,16,5% -2018-05-23 01:00:00,64.73828487,277.4252489,373.3620235,688.6324176,79.4856171,545.1203864,465.2169933,79.90339311,77.08883247,2.814560642,92.92272987,0,92.92272987,2.396784626,90.52594524,1.129896223,4.841984022,1.881010824,-1.881010824,0.208481894,0.208481894,0.212891542,1.06105954,34.12732218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.10071799,1.736462303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768734025,32.80448017,74.86945201,34.54094248,465.2169933,0,0.675566502,47.50184222,-0.675566502,132.4981578,0.975988041,0,528.9156741,34.54094248,551.5220301,5,17,4% -2018-05-23 02:00:00,76.29256661,285.8241432,163.7510713,468.6519343,52.69734521,282.9621182,230.6193676,52.34275057,51.10832582,1.234424744,41.29236247,0,41.29236247,1.589019391,39.70334308,1.331556482,4.98857238,3.324231705,-3.324231705,0,0,0.321813743,0.397254848,12.77708146,0.036908936,1,0.292210192,0,0.925572705,0.964334668,0.724496596,1,49.21241163,1.151239139,0.00620413,0.312029739,0.982557368,0.707053964,0.961238037,0.922476074,0.284920116,12.2818167,49.49733175,13.43305583,222.1074521,0,0.492090933,60.52189457,-0.492090933,119.4781054,0.948392763,0,260.142432,13.43305583,268.9340984,5,18,3% -2018-05-23 03:00:00,87.21640464,294.4851484,7.294823115,38.86639473,5.4073235,16.5454608,11.2461966,5.299264203,5.244272745,0.054991458,1.931765075,0,1.931765075,0.163050754,1.768714321,1.522213423,5.139735438,14.67328327,-14.67328327,0,0,0.741254917,0.040762689,1.311068186,0.66433103,1,0.068045855,0,0.954682937,0.9934449,0.724496596,1,5.074851926,0.118129717,0.086366733,0.312029739,0.784438091,0.508934687,0.961238037,0.922476074,0.028206156,1.26024861,5.103058082,1.378378326,3.77499923,0,0.289355282,73.18063838,-0.289355282,106.8193616,0.877202048,0,8.414495138,1.378378326,9.316616185,5,19,11% -2018-05-23 04:00:00,97.79289714,303.9932149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70680804,5.305682504,-4.295596703,4.295596703,1,0.73525601,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.071794731,85.88292283,-0.071794731,94.11707717,0,0,0,0,0,5,20,0% -2018-05-23 05:00:00,106.9377007,314.8879358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866414972,5.495831255,-1.393534977,1.393534977,1,0.768462206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134908606,97.75333503,0.134908606,82.24666497,0,0.679378721,0,0,0,5,21,0% -2018-05-23 06:00:00,114.3551637,327.6178177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995874123,5.718009606,-0.473696803,0.473696803,1,0.611160614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320708237,108.7057615,0.320708237,71.29423855,0,0.894095055,0,0,0,5,22,0% -2018-05-23 07:00:00,119.3749936,342.3079605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083486683,5.974400966,0.07154182,-0.07154182,1,0.517919318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472943779,118.2255539,0.472943779,61.77444611,0,0.944279189,0,0,0,5,23,0% -2018-05-24 08:00:00,121.3593273,358.4073983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11811984,6.255389165,0.518143594,-0.518143594,1,0.441545916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581243018,125.5380175,0.581243018,54.46198251,0,0.963977461,0,0,0,5,0,0% -2018-05-24 09:00:00,119.9997458,14.64482096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094390665,0.255600344,0.984659304,-0.984659304,1,0.361767031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638228063,129.6598172,0.638228063,50.34018281,0,0.971658099,0,0,0,5,1,0% -2018-05-24 10:00:00,115.5114411,29.6670036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016054971,0.517786892,1.597365259,-1.597365259,1,0.256988142,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640017517,129.7931257,0.640017517,50.20687431,0,0.971877138,0,0,0,5,2,0% -2018-05-24 11:00:00,108.4942938,42.77000664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.893582646,0.746477437,2.658349645,-2.658349645,1,0.075549126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58649051,125.9083577,0.58649051,54.09164232,0,0.964747129,0,0,0,5,3,0% -2018-05-24 12:00:00,99.62989228,53.97648917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738869654,0.942067455,5.66467658,-5.66467658,1,0,#DIV/0!,0,0,0.304861894,1,0.174732323,0,0.942222928,0.980984891,0.724496596,1,0,0,0.045570869,0.312029739,0.878910356,0.603406952,0.961238037,0.922476074,0,0,0,0,0,0,-0.481294681,118.7699939,0.481294681,61.23000612,0,0.946113541,0,0,0,5,4,0% -2018-05-24 13:00:00,89.07726335,63.69696833,0.575227223,3.73183264,0.51512943,0.503932683,0,0.503932683,0.499596377,0.004336306,1.367012098,1.212008545,0.155003553,0.015533053,0.1394705,1.554691534,1.111721821,-61.71263644,61.71263644,0,0,0.895523385,0.003883263,0.124899094,1,0.900829424,0,0.016202719,0.961238037,1,0.679576151,0.955079556,0.480231041,0.010980284,0.115824807,0.261009094,0.724496596,0.448993192,0.969044699,0.930282736,0.002813411,0.120552687,0.483044452,0.131532971,0,0.120195586,-0.324775697,108.9519862,0.324775697,71.04801381,0,0.896047594,0.483044452,0.239233937,0.639618279,5,5,32% -2018-05-24 14:00:00,78.42676223,72.46096138,126.2879338,402.4907084,45.54010689,45.11891643,0,45.11891643,44.16690464,0.95201179,90.85183021,58.85865629,31.99317392,1.373202248,30.61997167,1.368805223,1.264682355,-4.878695122,4.878695122,0.635540308,0.635540308,0.360605368,0.730161083,23.48449034,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.45490871,0.994880354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528999219,22.57418539,42.98390793,23.56906575,0,58.85865629,-0.146236062,98.40886337,0.146236062,81.59113663,0,0.708087074,42.98390793,65.24611943,85.68618818,5,6,99% -2018-05-24 15:00:00,66.94842191,80.83903595,333.4873619,659.0934603,75.41298014,114.4403231,38.78735395,75.65296914,73.13900054,2.5139686,83.13185148,0,83.13185148,2.273979595,80.85787189,1.168470391,1.410907341,-2.308043504,2.308043504,0.924852375,0.924852375,0.226134447,2.367770871,76.15565037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.3039893,1.647490476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715441936,73.20370786,72.01943123,74.85119833,38.78735395,0,0.058849551,86.62621982,-0.058849551,93.37378018,0,0,72.01943123,74.85119833,121.0080435,5,7,68% -2018-05-24 16:00:00,55.16978551,89.5166696,539.1398608,779.5152427,93.92244652,307.2498271,212.0952249,95.15460223,91.09033822,4.064264004,133.5528095,0,133.5528095,2.8321083,130.7207012,0.962894405,1.56236062,-1.354618713,1.354618713,0.761807133,0.761807133,0.174207944,3.264832307,105.0082298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55949789,2.051852822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365359893,100.9379046,89.92485778,102.9897575,212.0952249,0,0.272086052,74.21156312,-0.272086052,105.7884369,0.866234608,0,273.6490818,102.9897575,341.0538182,5,8,25% -2018-05-24 17:00:00,43.37929065,99.55197118,720.0764947,843.484595,107.0125173,512.9408627,403.7269269,109.2139358,103.785695,5.428240779,177.8177051,0,177.8177051,3.22682223,174.5908829,0.757111449,1.737509674,-0.822036342,0.822036342,0.670730183,0.670730183,0.148612707,3.906508724,125.6467491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76275775,2.337821721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830252272,120.7764344,102.59301,123.1142562,403.7269269,0,0.478641731,61.40327113,-0.478641731,118.5967289,0.945537734,0,484.3320535,123.1142562,564.9078719,5,9,17% -2018-05-24 18:00:00,32.01479738,113.0953911,861.6381675,879.1487857,116.1980575,703.273599,584.0839492,119.1896498,112.6942573,6.495392464,212.4179496,0,212.4179496,3.503800158,208.9141494,0.558763624,1.973886944,-0.456552638,0.456552638,0.608228789,0.608228789,0.134857138,4.2938567,138.1051915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3260067,2.538491287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110884563,132.7519632,111.4368912,135.2904545,584.0839492,0,0.664374403,48.36565085,-0.664374403,131.6343491,0.974741231,0,680.7675987,135.2904545,769.3124953,5,10,13% -2018-05-24 19:00:00,22.15894773,135.4105805,953.3359205,897.8188859,121.8289777,858.5085098,733.1664764,125.3420334,118.1553845,7.186648859,234.8209244,0,234.8209244,3.673593178,231.1473313,0.386746597,2.363360472,-0.169464826,0.169464826,0.559133882,0.559133882,0.127792287,4.423189564,142.264981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5754498,2.661505752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204585782,136.7505111,116.7800356,139.4120168,733.1664764,0,0.816608436,35.25328774,-0.816608436,144.7467123,0.988771144,0,841.7138915,139.4120168,932.9562683,5,11,11% -2018-05-24 20:00:00,17.02444266,175.3170126,988.5842768,904.2675144,123.9418175,964.0747133,836.417833,127.6568803,120.2045144,7.452365858,243.4310064,0,243.4310064,3.737303096,239.6937033,0.297132578,3.059859105,0.080884887,-0.080884887,0.516321559,0.516321559,0.125373041,4.299730394,138.2941097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5451515,2.70766337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115140033,132.9335585,118.6602915,135.6412219,836.417833,0,0.924967247,22.33658342,-0.924967247,157.6634166,0.995944032,0,951.6856404,135.6412219,1040.460107,5,12,9% -2018-05-24 21:00:00,20.61173954,218.3833363,964.8878001,899.973112,122.5242835,1009.942029,883.8385724,126.1034561,118.8297243,7.273731807,237.6427774,0,237.6427774,3.694559214,233.9482182,0.35974272,3.811508249,0.320284961,-0.320284961,0.475381735,0.475381735,0.126982934,3.94235756,126.7997709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2236509,2.676695574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.856224632,121.8847629,117.0798755,124.5614584,883.8385724,0,0.982072198,10.86556023,-0.982072198,169.1344398,0.999087246,0,1000.111721,124.5614584,1081.634704,5,13,8% -2018-05-24 22:00:00,29.89363923,243.5323039,883.9424499,883.9647877,117.5873351,990.5649947,869.8598201,120.7051747,114.0416431,6.663531566,217.8677729,0,217.8677729,3.545692004,214.3220809,0.52174243,4.250440539,0.571218992,-0.571218992,0.432469489,0.432469489,0.133026008,3.384846189,108.8682888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6211651,2.568841787,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.452309541,104.6483402,112.0734747,107.217182,869.8598201,0,0.984043519,10.24909161,-0.984043519,169.7509084,0.999189239,0,981.2280464,107.217182,1051.399548,5,14,7% -2018-05-24 23:00:00,41.07957395,258.2328715,751.5641124,852.2789714,109.1181841,904.7654758,793.2719998,111.493476,105.8278682,5.665607741,185.5157362,0,185.5157362,3.290315853,182.2254204,0.716973821,4.507013845,0.862744175,-0.862744175,0.382615746,0.382615746,0.145188125,2.675598034,86.05643009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7257723,2.383822635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938461668,82.72071392,103.664234,85.10453655,793.2719998,0,0.930765661,21.44551631,-0.930765661,158.5544837,0.996280786,0,893.9858852,85.10453655,949.6851023,5,15,6% -2018-05-24 00:00:00,52.82384603,268.7355407,577.4968305,795.3884305,96.86940959,755.2138129,656.9119584,98.30185453,93.94843948,4.353415044,142.9417627,0,142.9417627,2.920970109,140.0207926,0.921950037,4.690320002,1.248720032,-1.248720032,0.316609987,0.316609987,0.167740158,1.877375132,60.38283769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30681353,2.116232901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360151893,58.04228036,91.66696543,60.15851326,656.9119584,0,0.825900822,34.32007263,-0.825900822,145.6799274,0.989460043,0,741.6551002,60.15851326,781.0276439,5,16,5% -2018-05-24 01:00:00,64.61990794,277.5821524,375.4855722,690.0998649,79.69411552,547.0862461,466.9646333,80.12161275,77.2910439,2.830568849,93.44389581,0,93.44389581,2.403071623,91.04082419,1.127830156,4.844722505,1.868319349,-1.868319349,0.210652264,0.210652264,0.212242817,1.070480522,34.43033335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.29509131,1.741017211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775559494,33.09574604,75.0706508,34.83676325,466.9646333,0,0.676662404,47.41662118,-0.676662404,132.5833788,0.976107909,0,530.8785225,34.83676325,553.6784874,5,17,4% -2018-05-24 02:00:00,76.16851171,285.9643657,165.9620067,472.1636795,53.08319004,285.7216714,232.9880437,52.73362771,51.482536,1.251091709,41.84006401,0,41.84006401,1.600654036,40.23940997,1.329391316,4.991019725,3.287414576,-3.287414576,0,0,0.319851459,0.400163509,12.870634,0.031033396,1,0.295296763,0,0.925095759,0.963857722,0.724496596,1,49.55991073,1.1596684,0.005230706,0.312029739,0.985274242,0.709770838,0.961238037,0.922476074,0.28744571,12.37174296,49.84735644,13.53141136,225.7576334,0,0.49344762,60.43256339,-0.49344762,119.5674366,0.948672122,0,264.0173296,13.53141136,272.8733677,5,18,3% -2018-05-24 03:00:00,87.08933609,294.611952,8.101166279,42.88008545,5.923766089,18.27915174,12.47293904,5.806212698,5.745142685,0.061070013,2.14284496,0,2.14284496,0.178623404,1.964221556,1.519995658,5.141948578,14.001136,-14.001136,0,0,0.731223861,0.044655851,1.436285671,0.650860125,1,0.071301699,0,0.954341683,0.993103646,0.724496596,1,5.560580147,0.129412048,0.085032079,0.312029739,0.787318781,0.511815377,0.961238037,0.922476074,0.030862979,1.380612419,5.591443126,1.510024467,4.35480038,0,0.290879529,73.08938055,-0.290879529,106.9106194,0.878107532,0,9.415426141,1.510024467,10.40370695,5,19,10% -2018-05-24 04:00:00,97.64691408,304.1065232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.704260155,5.307660106,-4.366688258,4.366688258,1,0.723098638,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073693398,85.77384827,-0.073693398,94.22615173,0,0,0,0,0,5,20,0% -2018-05-24 05:00:00,106.7781552,314.9835599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863630377,5.49750021,-1.402572894,1.402572894,1,0.770007781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132782229,97.63039642,0.132782229,82.36960358,0,0.673443586,0,0,0,5,21,0% -2018-05-24 06:00:00,114.1824966,327.6865633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992860514,5.719209445,-0.474911904,0.474911904,1,0.611368408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.318401487,108.5662811,0.318401487,71.4337189,0,0.892965557,0,0,0,5,22,0% -2018-05-24 07:00:00,119.1932878,342.3368857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080315318,5.974905807,0.072978422,-0.072978422,1,0.517673644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470516491,118.0678283,0.470516491,61.93217169,0,0.943733799,0,0,0,5,23,0% -2018-05-25 08:00:00,121.1770054,358.3863249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114937722,6.255021364,0.521296583,-0.521296583,1,0.441006724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578763397,125.3636135,0.578763397,54.63638653,0,0.963608911,0,0,0,5,0,0% -2018-05-25 09:00:00,119.8270983,14.57491942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091377399,0.254380332,0.989796031,-0.989796031,1,0.360888599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635767978,129.4769673,0.635767978,50.5230327,0,0.971354957,0,0,0,5,1,0% -2018-05-25 10:00:00,115.3560524,29.56053257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013342926,0.515928622,1.60603346,-1.60603346,1,0.255505792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637647557,129.6166266,0.637647557,50.3833734,0,0.971586777,0,0,0,5,2,0% -2018-05-25 11:00:00,108.3588305,42.64111376,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891218366,0.744227832,2.676282516,-2.676282516,1,0.072482425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584275129,125.7517977,0.584275129,54.24820231,0,0.964423878,0,0,0,5,3,0% -2018-05-25 12:00:00,99.5132484,53.83447242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736833834,0.939588795,5.731349354,-5.731349354,1,0,#DIV/0!,0,0,0.310328073,1,0.172740086,0,0.942479346,0.981241309,0.724496596,1,0,0,0.046282969,0.312029739,0.877147932,0.601644527,0.961238037,0.922476074,0,0,0,0,0,0,-0.479287766,118.6388952,0.479287766,61.36110479,0,0.945678539,0,0,0,5,4,0% -2018-05-25 13:00:00,88.98827939,63.54537748,0.699263309,4.416154275,0.621287546,0.607824777,0,0.607824777,0.602553435,0.005271342,1.61561088,1.427332283,0.188278597,0.018734112,0.169544485,1.553138471,1.109076061,-56.26718981,56.26718981,0,0,0.888488697,0.004683528,0.150638359,1,0.890739159,0,0.017770476,0.961238037,1,0.675338664,0.950842069,0.579197281,0.013215799,0.115824807,0.256200467,0.724496596,0.448993192,0.969752418,0.930990455,0.0033932,0.145443934,0.582590481,0.158659734,0,0.155951526,-0.32320707,108.8569862,0.32320707,71.14301381,0,0.895300414,0.582590481,0.298283199,0.777810869,5,5,34% -2018-05-25 14:00:00,78.33884588,72.29889642,127.8052687,405.4427578,45.85582153,45.43654942,0,45.43654942,44.47309932,0.963450101,91.06145618,58.69086688,32.37058929,1.382722209,30.98786708,1.367270793,1.261853788,-4.841458778,4.841458778,0.641908098,0.641908098,0.358794453,0.742231828,23.872727,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.74923468,1.001777533,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537744433,22.94737323,43.28697911,23.94915077,0,58.69086688,-0.144757468,98.32323493,0.144757468,81.67676507,0,0.704594676,43.28697911,65.3024231,86.02610899,5,6,99% -2018-05-25 15:00:00,66.86836639,80.66203866,334.9384023,660.2391158,75.56683293,115.4671922,39.65407089,75.81312126,73.2882141,2.524907155,83.48831225,0,83.48831225,2.278618825,81.20969343,1.167073159,1.407818156,-2.300471037,2.300471037,0.923557406,0.923557406,0.22561412,2.375442587,76.40239913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44741905,1.650851582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.721000068,73.44089215,72.16841912,75.09174373,39.65407089,0,0.060060166,86.55673375,-0.060060166,93.44326625,0,0,72.16841912,75.09174373,121.3144636,5,7,68% -2018-05-25 16:00:00,55.09316235,89.31649599,540.4090443,780.0648848,94.02179255,308.2477325,212.9872122,95.26052025,91.18668861,4.073831645,133.8635334,0,133.8635334,2.835103949,131.0284294,0.961557078,1.558866931,-1.352426495,1.352426495,0.761432241,0.761432241,0.173982641,3.271037859,105.2078217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.65211354,2.05402316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.369855794,101.12976,90.02196934,103.1837831,212.9872122,0,0.273037816,74.15488514,-0.273037816,105.8451149,0.866875183,0,274.6552979,103.1837831,342.1870203,5,8,25% -2018-05-25 17:00:00,43.2994295,99.31530042,721.19261,843.8059587,107.0878583,513.7874257,404.4920069,109.2954188,103.8587643,5.436654527,178.090592,0,178.090592,3.22909404,174.861498,0.755717609,1.73337899,-0.821656936,0.821656936,0.670665301,0.670665301,0.148487182,3.912038724,125.8246129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.83299468,2.33946764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.834258738,120.9474039,102.6672534,123.2868715,404.4920069,0,0.479366142,61.35598808,-0.479366142,118.6440119,0.945695595,0,485.1935627,123.2868715,565.8823544,5,9,17% -2018-05-25 18:00:00,31.92025576,112.8043782,862.6612763,879.3738746,116.262084,703.9719422,584.7124839,119.2594583,112.7563532,6.50310509,212.6679448,0,212.6679448,3.505730793,209.162214,0.557113561,1.968807811,-0.457034248,0.457034248,0.608311149,0.608311149,0.134771419,4.299200247,138.2770583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3856956,2.539890026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114755944,132.9171681,111.5004515,135.4570581,584.7124839,0,0.664919098,48.32388086,-0.664919098,131.6761191,0.974802882,0,681.4798659,135.4570581,770.1338013,5,10,13% -2018-05-25 19:00:00,22.02888006,135.077732,954.3375813,898.0072981,121.8893818,859.1101218,733.7019548,125.4081671,118.2139673,7.194199802,235.0656101,0,235.0656101,3.675414586,231.3901955,0.384476488,2.35755117,-0.17049905,0.17049905,0.559310744,0.559310744,0.127721452,4.428722175,142.4429288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6317618,2.662825356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.20859414,136.9215612,116.8403559,139.5843866,733.7019548,0,0.817033399,35.21108124,-0.817033399,144.7889188,0.988802991,0,842.3270436,139.5843866,933.6822329,5,11,11% -2018-05-25 20:00:00,16.84771901,175.1945322,989.6388836,904.4548524,124.0046406,964.6545034,836.9287443,127.7257591,120.2654432,7.46031593,243.6886024,0,243.6886024,3.739197442,239.949405,0.294048168,3.057721419,0.079370022,-0.079370022,0.516580616,0.516580616,0.125302919,4.305754733,138.4878731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6037185,2.709035818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119504647,133.1198113,118.7232231,135.8288471,836.9287443,0,0.925340543,22.28023788,-0.925340543,157.7197621,0.995965839,0,952.275662,135.8288471,1041.172926,5,12,9% -2018-05-25 21:00:00,20.44766486,218.5947491,966.0661275,900.1905723,122.5950463,1010.586918,884.40595,126.1809678,118.8983533,7.282614537,237.9306103,0,237.9306103,3.696692973,234.2339173,0.356879076,3.8151981,0.318223428,-0.318223428,0.475734278,0.475734278,0.126901299,3.949101724,127.0166864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2896197,2.678241475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861110756,122.0932703,117.1507305,124.7715118,884.40595,0,0.982465244,10.74543872,-0.982465244,169.2545613,0.999107614,0,1000.767449,124.7715118,1082.427908,5,13,8% -2018-05-25 22:00:00,29.759601,243.7732633,885.305767,884.2530918,117.6718178,991.3676591,870.5702719,120.7973872,114.1235784,6.673808826,218.2008724,0,218.2008724,3.548239471,214.6526329,0.519403022,4.254646074,0.568396239,-0.568396239,0.432952208,0.432952208,0.132916583,3.392445606,109.1127122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6999244,2.570687418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.457815293,104.8832892,112.1577397,107.4539766,870.5702719,0,0.984526127,10.09249995,-0.984526127,169.9075001,0.999214146,0,982.0438707,107.4539766,1052.370349,5,14,7% -2018-05-25 23:00:00,40.96039844,258.437503,753.1584742,852.7097513,109.2237455,905.8227555,794.2148822,111.6078733,105.9302466,5.677626714,185.9054908,0,185.9054908,3.29349892,182.6119918,0.714893816,4.510585338,0.858678397,-0.858678397,0.383311035,0.383311035,0.145020934,2.684063084,86.32869519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8241823,2.386128756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.944594568,82.98242549,103.7687768,85.36855425,794.2148822,0,0.931401196,21.34570006,-0.931401196,158.6542999,0.996317441,0,895.0589156,85.36855425,950.930927,5,15,6% -2018-05-25 00:00:00,52.70908487,268.9085636,579.3458813,796.1168641,97.00871749,756.6339233,658.1830226,98.4509007,94.08354673,4.36735397,143.3942871,0,143.3942871,2.925170756,140.4691164,0.919947077,4.693339822,1.242259557,-1.242259557,0.317714794,0.317714794,0.167445253,1.886523149,60.67706936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.43668376,2.119276255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3667796,58.32510703,91.80346336,60.44438329,658.1830226,0,0.826741716,34.23452607,-0.826741716,145.7654739,0.98952162,0,743.0897939,60.44438329,782.6494339,5,16,5% -2018-05-25 01:00:00,64.50345185,277.732679,377.5733176,691.5328987,79.89833513,549.0191073,468.6836946,80.33541268,77.48910553,2.846307156,93.95625185,0,93.95625185,2.409229598,91.54702225,1.125797614,4.847349688,1.855997945,-1.855997945,0.212759348,0.212759348,0.21161012,1.079739325,34.72812826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48547568,1.745478642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782267465,33.38199783,75.26774314,35.12747648,468.6836946,0,0.677746056,47.33223802,-0.677746056,132.667762,0.976226055,0,532.8089775,35.12747648,555.7992083,5,17,4% -2018-05-25 02:00:00,76.04654915,286.0986077,168.1384855,475.5827018,53.459558,288.4288267,235.3137727,53.11505401,51.84755508,1.267498925,42.37912536,0,42.37912536,1.612002918,40.76712244,1.327262668,4.99336269,3.251980887,-3.251980887,0,0,0.317949563,0.40300073,12.96188877,0.025310536,1,0.298327707,0,0.924625498,0.963387461,0.724496596,1,49.89841752,1.167890627,0.004277462,0.312029739,0.987941963,0.712438559,0.961238037,0.922476074,0.289923439,12.45946052,50.18834096,13.62735114,229.3578549,0,0.494790437,60.34406756,-0.494790437,119.6559324,0.948947117,0,267.8368162,13.62735114,276.755645,5,18,3% -2018-05-25 03:00:00,86.96429353,294.7329879,8.938020154,47.00353715,6.44879332,20.0652103,13.74349332,6.321716979,6.254338408,0.067378571,2.361581379,0,2.361581379,0.194454912,2.167126467,1.517813254,5.144061054,13.39540104,-13.39540104,0,0,0.721501318,0.048613728,1.563584602,0.637759225,1,0.074514269,0,0.954002519,0.992764482,0.724496596,1,6.054472786,0.140881922,0.08372132,0.312029739,0.790161773,0.514658369,0.961238037,0.922476074,0.033561129,1.502976993,6.088033915,1.643858915,4.978453669,0,0.292392746,72.99873931,-0.292392746,107.0012607,0.878997126,0,10.46408038,1.643858915,11.53995316,5,19,10% -2018-05-25 04:00:00,97.50393997,304.2141968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701764786,5.309539365,-4.439309063,4.439309063,1,0.710679749,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075567191,85.66618755,-0.075567191,94.33381245,0,0,0,0,0,5,20,0% -2018-05-25 05:00:00,106.6223188,315.073751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860910519,5.499074341,-1.411721497,1.411721497,1,0.771572284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130688817,97.50939824,0.130688817,82.49060176,0,0.667411795,0,0,0,5,21,0% -2018-05-25 06:00:00,114.0143642,327.7503777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98992605,5.720323215,-0.476223039,0.476223039,1,0.611592626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316136926,108.4294626,0.316136926,71.57053737,0,0.891840684,0,0,0,5,22,0% -2018-05-25 07:00:00,119.0169448,342.3619453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077237552,5.975343179,0.074296673,-0.074296673,1,0.51744821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468141115,117.9136998,0.468141115,62.08630021,0,0.943194598,0,0,0,5,23,0% -2018-05-26 08:00:00,121.0006707,358.3630603,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1118601,6.254615319,0.524296067,-0.524296067,1,0.440493782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576345239,125.1938946,0.576345239,54.80610539,0,0.963246442,0,0,0,5,0,0% -2018-05-26 09:00:00,119.6606971,14.50470716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088473149,0.253154897,0.994719398,-0.994719398,1,0.360046654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633378082,129.2997934,0.633378082,50.70020659,0,0.971058209,0,0,0,5,1,0% -2018-05-26 10:00:00,115.2068287,29.45530628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010738481,0.514092077,1.614368405,-1.614368405,1,0.254080433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635355085,129.4463254,0.635355085,50.55367458,0,0.971303849,0,0,0,5,2,0% -2018-05-26 11:00:00,108.2292655,42.5145109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88895703,0.742018195,2.693576657,-2.693576657,1,0.069524952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582142602,125.6013834,0.582142602,54.39861659,0,0.964110392,0,0,0,5,3,0% -2018-05-26 12:00:00,99.40219234,53.69540279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73489554,0.937161572,5.796201322,-5.796201322,1,0,#DIV/0!,0,0,0.315563123,1,0.170844943,0,0.942722444,0.981484407,0.724496596,1,0,0,0.04696193,0.312029739,0.875471265,0.599967861,0.961238037,0.922476074,0,0,0,0,0,0,-0.477366773,118.5135626,0.477366773,61.48643742,0,0.945258734,0,0,0,5,4,0% -2018-05-26 13:00:00,88.90355154,63.39718763,0.8323886,5.146855478,0.733901113,0.718046184,0,0.718046184,0.711771287,0.006274897,1.879736144,1.655784065,0.223952079,0.022129826,0.201822253,1.551659691,1.106489661,-51.90284631,51.90284631,0,0,0.88168088,0.005532457,0.177942822,1,0.881038248,0,0.019264383,0.961238037,1,0.671318716,0.946822121,0.684181634,0.015581458,0.115824807,0.25163956,0.724496596,0.448993192,0.970419149,0.931657186,0.004008246,0.171858593,0.68818988,0.187440051,0,0.196974973,-0.321707899,108.7662429,0.321707899,71.23375711,0,0.894579508,0.68818988,0.363649826,0.926191418,5,5,35% -2018-05-26 14:00:00,78.25600676,72.14062442,129.2373764,408.2056933,46.15155328,45.7341596,0,45.7341596,44.75991367,0.974245934,91.24820621,58.52146842,32.72673779,1.391639612,31.33509818,1.365824977,1.259091421,-4.806857954,4.806857954,0.647825187,0.647825187,0.357106857,0.753666159,24.2404944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.02493154,1.008238162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.546028567,23.30088525,43.57096011,24.30912341,0,58.52146842,-0.143362695,98.24247798,0.143362695,81.75752202,0,0.701234236,43.57096011,65.34638058,86.33885928,5,6,98% -2018-05-26 15:00:00,66.79332342,80.48925719,336.298185,661.3075575,75.71059528,116.4287953,40.465996,75.96279926,73.42764149,2.535157772,83.82234227,0,83.82234227,2.28295379,81.53938848,1.165763412,1.40480255,-2.293447136,2.293447136,0.922356249,0.922356249,0.22512936,2.382632886,76.63366387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58144195,1.653992249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726209415,73.66319261,72.30765137,75.31718486,40.465996,0,0.061190887,86.49182882,-0.061190887,93.50817118,0,0,72.30765137,75.31718486,121.6012425,5,7,68% -2018-05-26 16:00:00,55.02160006,89.12104344,541.5934283,780.5762272,94.11438217,309.1716565,213.8124101,95.35924633,91.2764863,4.082760032,134.1534929,0,134.1534929,2.837895867,131.315597,0.960308081,1.555455641,-1.35043845,1.35043845,0.761092266,0.761092266,0.173773124,3.276855901,105.3949499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.7384305,2.056045895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.374070946,101.3096347,90.11250145,103.3656806,213.8124101,0,0.273916118,74.10256769,-0.273916118,105.8974323,0.867462367,0,275.5867207,103.3656806,343.2374914,5,8,25% -2018-05-26 17:00:00,43.22487173,99.08389427,722.2331551,844.1049063,107.1580501,514.5630049,405.1916668,109.3713382,103.9268396,5.444498595,178.3450008,0,178.3450008,3.231210583,175.1137902,0.75441633,1.729340191,-0.82136926,0.82136926,0.670616106,0.670616106,0.148370439,3.917245627,125.9920848,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89843124,2.341001068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838031122,121.1083842,102.7364624,123.4493853,405.1916668,0,0.480025248,61.312949,-0.480025248,118.687051,0.945838812,0,485.9824671,123.4493853,566.7776208,5,9,17% -2018-05-26 18:00:00,31.83155094,112.5187027,863.6187795,879.5841596,116.3219783,704.6068931,585.2821285,119.3247646,112.8144414,6.510323154,212.9019086,0,212.9019086,3.507536827,209.3943717,0.55556537,1.963821832,-0.457556655,0.457556655,0.608400486,0.608400486,0.134691349,4.3042712,138.4401576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4415322,2.541198491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118429832,133.0739453,111.5599621,135.6151438,585.2821285,0,0.665407763,48.2863845,-0.665407763,131.7136155,0.974858105,0,682.126989,135.6151438,770.8843883,5,10,13% -2018-05-26 19:00:00,21.90540697,134.7470882,955.2832864,898.1849005,121.9463915,859.6577671,734.1871803,125.4705868,118.2692579,7.201328926,235.2966263,0,235.2966263,3.677133639,231.6194927,0.382321476,2.351780347,-0.171544779,0.171544779,0.559489574,0.559489574,0.12765469,4.434022383,142.6134017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6849093,2.664070804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212434122,137.0854263,116.8973434,139.7494971,734.1871803,0,0.817412072,35.17343498,-0.817412072,144.826565,0.988831341,0,842.8846377,139.7494971,934.3478885,5,11,11% -2018-05-26 20:00:00,16.67724579,175.0648699,990.6460785,904.6334731,124.0646189,965.1899968,837.3984753,127.7915214,120.3236129,7.46790859,243.934617,0,243.934617,3.741006008,240.193611,0.291072849,3.055458385,0.077864987,-0.077864987,0.516837993,0.516837993,0.125236067,4.311576878,138.6751333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6596334,2.710346118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123722771,133.2998129,118.7833562,136.010159,837.3984753,0,0.925677084,22.2293241,-0.925677084,157.7706759,0.995985484,0,952.8200816,136.010159,1041.836011,5,12,9% -2018-05-26 21:00:00,20.28804303,218.7957891,967.2038444,900.4001422,122.6633424,1011.196234,884.9404528,126.2557812,118.9645901,7.291191128,238.2085223,0,238.2085223,3.698752353,234.50977,0.35409315,3.81870691,0.316191858,-0.316191858,0.476081697,0.476081697,0.126822637,3.955663661,127.2277409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.353289,2.679733489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865864857,122.2961439,117.2191539,124.9758773,884.9404528,0,0.982830201,10.63270089,-0.982830201,169.3672991,0.999126512,0,1001.386622,124.9758773,1083.180834,5,13,8% -2018-05-26 22:00:00,29.62857924,244.0045184,886.6330583,884.5331207,117.7540211,992.1414944,871.254377,120.8871174,114.2033029,6.683814509,218.5251683,0,218.5251683,3.550718202,214.9744501,0.51711626,4.258682237,0.565628099,-0.565628099,0.433425588,0.433425588,0.132810321,3.399872752,109.3515947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7765587,2.57248325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.463196236,105.1129122,112.2397549,107.6853955,871.254377,0,0.98498785,9.94040052,-0.98498785,170.0595995,0.999237953,0,982.8301947,107.6853955,1053.308132,5,14,7% -2018-05-26 23:00:00,40.84348788,258.633892,754.7189008,853.1300534,109.3269649,906.8549439,795.1352005,111.7197434,106.0303535,5.689389869,186.2869467,0,186.2869467,3.296611365,182.9903353,0.712853341,4.514012973,0.854705485,-0.854705485,0.383990443,0.383990443,0.14485786,2.692357365,86.59546777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9204089,2.388383712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950603746,83.23885744,103.8710126,85.62724115,795.1352005,0,0.932021088,21.24791024,-0.932021088,158.7520898,0.996353145,0,896.1064705,85.62724115,952.1477873,5,15,6% -2018-05-26 00:00:00,52.59629536,269.0744502,581.1606077,796.8286545,97.14520612,758.0283553,659.4314014,98.59695387,94.21591973,4.381034144,143.8384042,0,143.8384042,2.929286392,140.9091178,0.917978528,4.696235088,1.235966964,-1.235966964,0.31879089,0.31879089,0.167157245,1.89549792,60.96572882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56392572,2.122258019,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37328179,58.60257749,91.93720751,60.72483551,659.4314014,0,0.827569889,34.15008984,-0.827569889,145.8499102,0.989582142,0,744.4987463,60.72483551,784.2419366,5,16,5% -2018-05-26 01:00:00,64.38895745,277.876773,379.6245762,692.9316423,80.09825637,550.9188299,470.3740611,80.54476882,77.68299841,2.86177041,94.45963161,0,94.45963161,2.415257961,92.04437365,1.123799309,4.849864603,1.844044789,-1.844044789,0.214803458,0.214803458,0.210993338,1.08883123,35.02055519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.67185289,1.749846171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.78885452,33.66308972,75.46070741,35.41293589,470.3740611,0,0.678817408,47.24869992,-0.678817408,132.7513001,0.97634249,0,534.7068895,35.41293589,557.8839477,5,17,4% -2018-05-26 02:00:00,75.92673144,286.2268313,170.2793288,478.9096013,53.82647771,291.0832058,237.5961575,53.48704831,52.20341081,1.283637507,42.90926159,0,42.90926159,1.623066901,41.28619468,1.325171454,4.995600613,3.217895557,-3.217895557,0,0,0.316106941,0.405766725,13.0508527,0.019741293,1,0.301300809,0,0.924162376,0.962924339,0.724496596,1,50.2279882,1.175906445,0.003344922,0.312029739,0.990558604,0.7150552,0.961238037,0.922476074,0.292352488,12.54497603,50.52034069,13.72088248,232.9057021,0,0.49611901,60.25643375,-0.49611901,119.7435663,0.94921773,0,271.5985626,13.72088248,280.5786057,5,18,3% -2018-05-26 03:00:00,86.84137248,294.8482342,9.802018468,51.21667088,6.979952734,21.89562994,15.05225678,6.843373162,6.769481406,0.073891756,2.58708419,0,2.58708419,0.210471328,2.376612862,1.515667877,5.14607248,12.84743026,-12.84743026,0,0,0.712093408,0.052617832,1.692370351,0.625030881,1,0.077679955,0,0.953665933,0.992427896,0.724496596,1,6.554215094,0.152485761,0.082435608,0.312029739,0.792963792,0.517460388,0.961238037,0.922476074,0.036288336,1.626770754,6.590503431,1.779256515,5.644131469,0,0.293893697,72.90878951,-0.293893697,107.0912105,0.879870458,0,11.55660797,1.779256515,12.72109578,5,19,10% -2018-05-26 04:00:00,97.36404413,304.3162308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699323143,5.311320195,-4.513421252,4.513421252,1,0.698005819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077415151,85.55999611,-0.077415151,94.44000389,0,0,0,0,0,5,20,0% -2018-05-26 05:00:00,106.4702647,315.1585237,0,0,0,0,0,0,0,0,0,0,0,0,0,1.858256675,5.500553904,-1.420972221,1.420972221,1,0.773154251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12862957,97.39040758,0.12862957,82.60959242,0,0.661286891,0,0,0,5,21,0% -2018-05-26 06:00:00,113.8508385,327.8092948,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987071987,5.721351513,-0.477629689,0.477629689,1,0.611833177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313915928,108.2953818,0.313915928,71.70461821,0,0.890721685,0,0,0,5,22,0% -2018-05-26 07:00:00,118.8460296,342.3831861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07425452,5.975713901,0.075494471,-0.075494471,1,0.517243375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465819124,117.7632473,0.465819124,62.23675273,0,0.9426622,0,0,0,5,23,0% -2018-05-27 08:00:00,120.8303783,358.3376513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108887938,6.254171849,0.527138083,-0.527138083,1,0.440007768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573990038,125.0289346,0.573990038,54.97106542,0,0.962890474,0,0,0,5,0,0% -2018-05-27 09:00:00,119.5005883,14.43422466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085678723,0.251924745,0.999422818,-0.999422818,1,0.359242322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631059806,129.1283564,0.631059806,50.87164358,0,0.970768207,0,0,0,5,1,0% -2018-05-27 10:00:00,115.0638084,29.35136364,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008242307,0.512277936,1.622357734,-1.622357734,1,0.252714177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633141388,129.2822706,0.633141388,50.71772941,0,0.971028698,0,0,0,5,2,0% -2018-05-27 11:00:00,108.1056288,42.39024256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886799163,0.739849303,2.710200169,-2.710200169,1,0.066682164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580094009,125.457155,0.580094009,54.54284496,0,0.963807074,0,0,0,5,3,0% -2018-05-27 12:00:00,99.29674428,53.55933408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733055124,0.934786725,5.859043648,-5.859043648,1,0,#DIV/0!,0,0,0.320560683,1,0.169047406,0,0.942952279,0.981714242,0.724496596,1,0,0,0.04760734,0.312029739,0.873880831,0.598377427,0.961238037,0.922476074,0,0,0,0,0,0,-0.475532518,118.3940279,0.475532518,61.60597211,0,0.94485472,0,0,0,5,4,0% -2018-05-27 13:00:00,88.82317119,63.2524636,0.972917079,5.91493151,0.851435664,0.833095997,0,0.833095997,0.825761737,0.00733426,2.156003244,1.894434307,0.261568937,0.025673927,0.23589501,1.550256789,1.10396375,-48.34256183,48.34256183,0,0,0.875136928,0.006418482,0.206440434,1,0.87174914,0,0.020682756,0.961238037,1,0.667518222,0.943021626,0.793753591,0.018044965,0.115824807,0.247328437,0.724496596,0.448993192,0.9710453,0.932283337,0.004650168,0.199436745,0.798403759,0.21748171,0,0.24296283,-0.320280007,108.6798594,0.320280007,71.32014062,0,0.893886603,0.798403759,0.434662929,1.082881953,5,5,36% -2018-05-27 14:00:00,78.17824436,71.98622363,130.5837928,410.7829396,46.42762841,46.0120599,0,46.0120599,45.02766411,0.984395789,91.41404135,58.35252463,33.06151671,1.399964296,31.66155242,1.364467768,1.256396618,-4.774796148,4.774796148,0.653308079,0.653308079,0.355538979,0.7644528,24.58742983,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.28230345,1.014269367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.553843451,23.63437278,43.8361469,24.64864215,0,58.35252463,-0.142051967,98.16660219,0.142051967,81.83339781,0,0.698016138,43.8361469,65.37964603,86.62581764,5,6,98% -2018-05-27 15:00:00,66.72327997,80.32078847,337.5670188,662.3000639,75.84438322,117.3248788,41.22276084,76.102118,73.55739523,2.544722777,84.13401991,0,84.13401991,2.28698799,81.84703192,1.164540923,1.401862217,-2.286962076,2.286962076,0.921247238,0.921247238,0.224679483,2.389345485,76.84956411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.70616619,1.656915014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.73107267,73.87072414,72.43723886,75.52763915,41.22276084,0,0.062241819,86.43149983,-0.062241819,93.56850017,0,0,72.43723886,75.52763915,121.8685681,5,7,68% -2018-05-27 16:00:00,54.95507443,88.93043902,542.6936095,781.0498591,94.20028702,310.0219252,214.5710707,95.45085447,91.35980081,4.091053663,134.4228349,0,134.4228349,2.840486216,131.5823487,0.95914699,1.552128966,-1.348652043,1.348652043,0.760786772,0.760786772,0.173579134,3.28228998,105.5697286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.81851557,2.057922594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378007917,101.4776386,90.19652349,103.5355612,214.5710707,0,0.274721349,74.05459094,-0.274721349,105.9454091,0.867997399,0,276.4436548,103.5355612,344.2056089,5,8,25% -2018-05-27 17:00:00,43.15558382,98.85793562,723.1988944,844.3817968,107.2231545,515.2682628,405.8265032,109.4417595,103.9899808,5.451778746,178.5811186,0,178.5811186,3.23317372,175.3479448,0.753207028,1.725396468,-0.821172146,0.821172146,0.670582397,0.670582397,0.148262332,3.922132945,126.1492777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.95912498,2.342423354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.841571967,121.2594841,102.8006969,123.6019074,405.8265032,0,0.480619673,61.27411833,-0.480619673,118.7258817,0.945967638,0,486.6994355,123.6019074,567.5944119,5,9,17% -2018-05-27 18:00:00,31.74864811,112.2386621,864.5115158,879.7798989,116.3777981,705.1793295,585.7936984,119.3856311,112.8685781,6.517052977,213.120046,0,213.120046,3.509220002,209.610826,0.554118443,1.958934202,-0.458119044,0.458119044,0.60849666,0.60849666,0.134616828,4.309072808,138.5945939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4935705,2.542417946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121908581,133.2223953,111.615479,135.7648133,585.7936984,0,0.665841194,48.2531081,-0.665841194,131.7468919,0.974907019,0,682.7098674,135.7648133,771.5652224,5,10,13% -2018-05-27 19:00:00,21.78852592,134.4191227,956.1738576,898.3518969,122.0000598,860.1524357,734.6230855,125.5293503,118.3213079,7.208042428,235.5141739,0,235.5141739,3.678751935,231.835422,0.380281516,2.346056268,-0.172601278,0.172601278,0.559670247,0.559670247,0.127591922,4.439092866,142.7764858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7349417,2.665243254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.21610767,137.242189,116.9510494,139.9074322,734.6230855,0,0.817745349,35.14027272,-0.817745349,144.8597273,0.988856271,0,843.3876942,139.9074322,934.9543105,5,11,11% -2018-05-27 20:00:00,16.5130858,174.9280904,991.6065791,904.8035449,124.1217979,965.6821944,837.8279774,127.854217,120.3790678,7.475149249,244.1692257,0,244.1692257,3.742730169,240.4264955,0.288207717,3.053071132,0.076370537,-0.076370537,0.517093559,0.517093559,0.125172423,4.317198653,138.8559489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7129388,2.711595266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127795728,133.4736198,118.8407345,136.185215,837.8279774,0,0.925977779,22.18373935,-0.925977779,157.8162606,0.996003024,0,953.3199335,136.185215,1042.450433,5,12,9% -2018-05-27 21:00:00,20.13289807,218.9861027,968.3014852,900.6019627,122.729207,1011.770888,885.4429542,126.3279342,119.0284686,7.299465608,238.4766441,0,238.4766441,3.700738413,234.7759057,0.351385359,3.822028509,0.314191077,-0.314191077,0.476423851,0.476423851,0.126746895,3.962044107,127.4329579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4146914,2.681172382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870487468,122.4934063,117.2851789,125.1745787,885.4429542,0,0.983167915,10.52731565,-0.983167915,169.4726844,0.999143987,0,1001.970183,125.1745787,1083.894441,5,13,8% -2018-05-27 22:00:00,29.50058123,244.2258564,887.9246084,884.8049889,117.8339664,992.8872294,871.9128411,120.9743883,114.2808375,6.693550759,218.8407302,0,218.8407302,3.553128848,215.2876013,0.514882274,4.262545313,0.562915491,-0.562915491,0.433889471,0.433889471,0.132707175,3.407127112,109.5849198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8510879,2.574229755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.468451994,105.3371932,112.3195399,107.911423,871.9128411,0,0.985429391,9.792762653,-0.985429391,170.2072373,0.999260697,0,983.5877737,107.911423,1054.213642,5,14,7% -2018-05-27 23:00:00,40.72885849,258.8219181,756.2453783,853.5399645,109.4278479,907.8625083,796.0334167,111.8290916,106.1281945,5.700897101,186.6601008,0,186.6601008,3.29965336,183.3604475,0.710852681,4.517294648,0.850826425,-0.850826425,0.384653802,0.384653802,0.144698865,2.700479031,86.85668846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.0144574,2.390587627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956487865,83.4899527,103.9709452,85.88054033,796.0334167,0,0.932625829,21.15209515,-0.932625829,158.8479049,0.996387931,0,897.1290345,85.88054033,953.3361305,5,15,6% -2018-05-27 00:00:00,52.48550646,269.2331232,582.9406683,797.5238637,97.27886454,759.3972618,660.657261,98.74000085,94.34554786,4.394452993,144.2740308,0,144.2740308,2.933316687,141.3407141,0.916044897,4.699004456,1.229842995,-1.229842995,0.319838151,0.319838151,0.166876099,1.904296245,61.24871321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68852921,2.125177954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379656147,58.87459284,92.06818535,60.9997708,660.657261,0,0.828385571,34.06674751,-0.828385571,145.9332525,0.989641633,0,745.8821162,60.9997708,785.8052462,5,16,5% -2018-05-27 01:00:00,64.27646585,278.0143818,381.6386624,694.2962099,80.29385886,552.7852577,472.0356015,80.7496562,77.87270276,2.876953442,94.95386825,0,94.95386825,2.421156097,92.53271216,1.121835961,4.85226633,1.832458098,-1.832458098,0.216784899,0.216784899,0.21039236,1.097751565,35.30746384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.85420393,1.754119351,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.795317272,33.93887723,75.6495212,35.69299658,472.0356015,0,0.679876391,47.16601544,-0.679876391,132.8339846,0.97645722,0,536.5720923,35.69299658,559.9324447,5,17,4% -2018-05-27 02:00:00,75.80911093,286.349001,172.3833709,482.1449706,54.18397615,293.6844255,239.8347974,53.84962802,52.55012935,1.299498665,43.43019086,0,43.43019086,1.633846799,41.79634407,1.323118589,4.997732878,3.185125175,-3.185125175,0,0,0.314322523,0.4084617,13.13753234,0.014326561,1,0.304213879,0,0.923706846,0.962468809,0.724496596,1,50.54867799,1.183716444,0.0024336,0.312029739,0.993122261,0.717618857,0.961238037,0.922476074,0.294732023,12.62829579,50.84341001,13.81201224,236.3987895,0,0.497432955,60.1696895,-0.497432955,119.8303105,0.949483941,0,275.3002645,13.81201224,284.3399502,5,18,3% -2018-05-27 03:00:00,86.72066478,294.957671,10.68972127,55.49977137,7.51491497,23.76248466,16.39358847,7.368896191,7.288312557,0.080583634,2.818449098,0,2.818449098,0.226602413,2.591846684,1.51356113,5.147982512,12.35002507,-12.35002507,0,0,0.703003827,0.056650603,1.822078139,0.612677077,1,0.080795228,0,0.953332411,0.992094374,0.724496596,1,7.057606912,0.164172677,0.081176046,0.312029739,0.795721643,0.520218238,0.961238037,0.922476074,0.039032994,1.751450813,7.096639906,1.915623491,6.349612609,0,0.295381189,72.81960345,-0.295381189,107.1803965,0.880727203,0,12.68891646,1.915623491,13.94265372,5,19,10% -2018-05-27 04:00:00,97.22729476,304.4126223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696936416,5.313002544,-4.588977648,4.588977648,1,0.685084914,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.079236318,85.45532938,-0.079236318,94.54467062,0,0,0,0,0,5,20,0% -2018-05-27 05:00:00,106.3220647,315.2378942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855670096,5.50193918,-1.430315846,1.430315846,1,0.774752105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126605675,97.27349092,0.126605675,82.72650908,0,0.655072994,0,0,0,5,21,0% -2018-05-27 06:00:00,113.6919893,327.8633499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984299547,5.722294953,-0.479131139,0.479131139,1,0.61208994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311739848,108.1641131,0.311739848,71.83588687,0,0.889609853,0,0,0,5,22,0% -2018-05-27 07:00:00,118.6806053,342.4006555,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071367321,5.9760188,0.076569847,-0.076569847,1,0.517059475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463551965,117.6165479,0.463551965,62.38345207,0,0.942137228,0,0,0,5,23,0% -2018-05-28 08:00:00,120.6661814,358.3101454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106022162,6.25369178,0.529818812,-0.529818812,1,0.439549337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571699251,124.8688049,0.571699251,55.13119513,0,0.962541428,0,0,0,5,0,0% -2018-05-28 09:00:00,119.3468158,14.36351319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082994888,0.250690597,1.003899909,-1.003899909,1,0.358476694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628814533,128.962715,0.628814533,51.037285,0,0.970485298,0,0,0,5,1,0% -2018-05-28 10:00:00,114.9270276,29.24874446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005855031,0.510486893,1.629989432,-1.629989432,1,0.25140908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631007704,129.1245083,0.631007704,50.87549166,0,0.970761665,0,0,0,5,2,0% -2018-05-28 11:00:00,107.9879478,42.26835384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884745241,0.737721944,2.726121851,-2.726121851,1,0.063959397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578130375,125.3191503,0.578130375,54.6808497,0,0.963514318,0,0,0,5,3,0% -2018-05-28 12:00:00,99.19692173,53.42632025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731312892,0.932465196,5.919687066,-5.919687066,1,0,#DIV/0!,0,0,0.325314662,1,0.167347936,0,0.943168909,0.981930872,0.724496596,1,0,0,0.048218817,0.312029739,0.87237706,0.596873656,0.961238037,0.922476074,0,0,0,0,0,0,-0.47378576,118.2803204,0.47378576,61.71967963,0,0.944467069,0,0,0,5,4,0% -2018-05-28 13:00:00,88.74722008,63.11126991,1.118983594,6.710400967,0.972271466,0.951389265,0,0.951389265,0.942953894,0.008435371,2.440743076,2.140114977,0.300628099,0.029317572,0.271310527,1.548931192,1.101499455,-45.39751379,45.39751379,0,0,0.868888044,0.007329393,0.235738474,1,0.862893228,0,0.022024076,0.961238037,1,0.663938713,0.939442117,0.90640315,0.020572495,0.115824807,0.243268721,0.724496596,0.448993192,0.971631312,0.932869349,0.00531012,0.227798044,0.91171327,0.248370539,0,0.293424256,-0.318925052,108.597929,0.318925052,71.40207096,0,0.893223354,0.91171327,0.510463936,1.245801707,5,5,37% -2018-05-28 14:00:00,78.10555538,71.83577145,131.8441457,413.1777792,46.68435933,46.27055051,0,46.27055051,45.27665365,0.993896861,91.560793,58.18594776,33.37484524,1.407705681,31.96713955,1.363199106,1.253770733,-4.745184758,4.745184758,0.658371925,0.658371925,0.354087465,0.774581735,24.91321121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52164167,1.019877974,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56118183,23.94752624,44.0828235,24.96740421,0,58.18594776,-0.140825453,98.09561444,0.140825453,81.90438556,0,0.694950546,44.0828235,65.4037604,86.8882766,5,6,97% -2018-05-28 15:00:00,66.65822033,80.15672799,338.7452576,663.2178643,75.96831068,118.1552567,41.92406602,76.23119066,73.67758582,2.553604839,84.42343443,0,84.42343443,2.29072486,82.13270957,1.163405418,1.398998821,-2.281006635,2.281006635,0.920228798,0.920228798,0.224263835,2.395584179,77.05022198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.82169795,1.659622363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.735592583,74.06360411,72.55729053,75.72322648,41.92406602,0,0.063213113,86.37573896,-0.063213113,93.62426104,0,0,72.55729053,75.72322648,122.1166278,5,7,68% -2018-05-28 16:00:00,54.89355858,88.74480756,543.7102154,781.4863547,94.27957901,310.798909,215.2634899,95.53541912,91.43670185,4.098717268,134.6717137,0,134.6717137,2.842877162,131.8288366,0.958073335,1.548889086,-1.347064791,1.347064791,0.760515336,0.760515336,0.173400419,3.287343711,105.7322739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89243578,2.059654826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381669328,101.6338834,90.27410511,103.6935382,215.2634899,0,0.275453933,74.01093258,-0.275453933,105.9890674,0.868481444,0,277.2264517,103.6935382,345.0917986,5,8,24% -2018-05-28 17:00:00,43.09152928,98.63760405,724.0906106,844.6369818,107.2832335,515.9038914,406.3971424,109.506749,104.0482481,5.45850088,178.7991371,0,178.7991371,3.234985322,175.5641518,0.752089066,1.721550957,-0.821064414,0.821064414,0.670563974,0.670563974,0.148162719,3.926704219,126.2963056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0151338,2.343735853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.844883839,121.4008129,102.8600176,123.7445487,406.3971424,0,0.481150069,61.23945817,-0.481150069,118.7605418,0.946082318,0,487.3451681,123.7445487,568.3335003,5,9,17% -2018-05-28 18:00:00,31.67150879,111.9645505,865.3403304,879.9613456,116.4296013,705.6901461,586.248026,119.4421201,112.9188192,6.523300932,213.3225637,0,213.3225637,3.510782058,209.8117817,0.552772107,1.954150053,-0.458720574,0.458720574,0.608599528,0.608599528,0.134547758,4.313608306,138.740471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5418641,2.54354965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.125194533,133.362618,111.6670586,135.9061677,586.248026,0,0.666220203,48.22399577,-0.666220203,131.7760042,0.974949739,0,683.2294186,135.9061677,772.1772873,5,10,13% -2018-05-28 19:00:00,21.67822938,134.0943163,957.0101125,898.508486,122.0504391,860.5951223,735.0106077,125.5845146,118.3701681,7.214346471,235.7184527,0,235.7184527,3.680271058,232.0381817,0.378356479,2.340387328,-0.173667788,0.173667788,0.559852631,0.559852631,0.127533072,4.443936256,142.9322659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.781908,2.666343854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219616689,137.3919307,117.0015247,140.0582745,735.0106077,0,0.81803413,35.11151593,-0.81803413,144.8884841,0.988877856,0,843.8372385,140.0582745,935.502578,5,11,11% -2018-05-28 20:00:00,16.35529999,174.7842851,992.5210893,904.9652309,124.1762224,966.1320891,838.2181947,127.9138944,120.4318512,7.482043214,244.3926004,0,244.3926004,3.744371268,240.6482291,0.285453835,3.050561256,0.074887449,-0.074887449,0.517347182,0.517347182,0.125111923,4.322621806,139.0303762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7636762,2.712784237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131724783,133.6412859,118.895401,136.3540701,838.2181947,0,0.926243535,22.14337722,-0.926243535,157.8566228,0.996018517,0,953.7762439,136.3540701,1043.017256,5,12,9% -2018-05-28 21:00:00,19.98225509,219.1653449,969.3595627,900.7961681,122.7926736,1012.311774,885.9143104,126.3974632,119.0900214,7.307441843,238.735101,0,238.735101,3.702652165,235.0324488,0.348756143,3.825156875,0.312221929,-0.312221929,0.476760595,0.476760595,0.126674021,3.968243701,127.6323582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4738584,2.682558889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.874979053,122.6850774,117.3488374,125.3676363,885.9143104,0,0.983479217,10.42924007,-0.983479217,169.5707599,0.999160085,0,1002.519055,125.3676363,1084.569666,5,13,8% -2018-05-28 22:00:00,29.37561621,244.4370708,889.1806755,885.0688035,117.9116735,993.6055652,872.5463442,121.059221,114.3562015,6.703019524,219.1476214,0,219.1476214,3.555472004,215.5921494,0.512701223,4.266231699,0.560259354,-0.560259354,0.434343697,0.434343697,0.132607103,3.41420807,109.8126678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9235306,2.575927364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.473582124,105.5561132,112.3971128,108.1320406,872.5463442,0,0.985851428,9.649555665,-0.985851428,170.3504443,0.999282419,0,984.317334,108.1320406,1055.087592,5,14,7% -2018-05-28 23:00:00,40.61652852,259.0014651,757.7378649,853.9395608,109.5263981,908.845882,796.9099608,111.9359212,106.2237731,5.712148095,187.0249431,0,187.0249431,3.302625013,183.7223181,0.708892153,4.520428334,0.847042223,-0.847042223,0.385300938,0.385300938,0.144543916,2.708426145,87.11229497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1063311,2.39274058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962245522,83.7356514,104.0685767,86.12839198,796.9099608,0,0.933215882,21.05820621,-0.933215882,158.9417938,0.996421829,0,898.1270575,86.12839198,954.4963675,5,15,6% -2018-05-28 00:00:00,52.37674891,269.3845093,584.6856951,798.20254,97.40967953,760.7407585,661.8607325,98.88002603,94.47241829,4.407607742,144.7010773,0,144.7010773,2.937261241,141.763816,0.91414672,4.701646641,1.223888418,-1.223888418,0.320856443,0.320856443,0.166601783,1.912914856,61.52591737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.81048189,2.128035771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385900301,59.14105203,92.19638219,61.2690878,661.8607325,0,0.829188958,33.98448568,-0.829188958,146.0155143,0.989700114,0,747.2400243,61.2690878,787.3394169,5,16,5% -2018-05-28 01:00:00,64.16601954,278.1454557,383.6148685,695.6266933,80.4851194,554.6181961,473.6681491,80.95004701,78.05819609,2.891850918,95.43878951,0,95.43878951,2.426923308,93.0118662,1.119908309,4.854554002,1.821236219,-1.821236219,0.218703953,0.218703953,0.20980709,1.106495625,35.58870285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03250717,1.758297675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.801652314,34.20921486,75.83415948,35.96751254,473.6681491,0,0.680922905,47.08419571,-0.680922905,132.9158043,0.976570248,0,538.4043814,35.96751254,561.944399,5,17,4% -2018-05-28 02:00:00,75.69374091,286.4650844,174.4494393,485.2893631,54.53207524,296.2320693,242.0292637,54.20280554,52.88773197,1.315073562,43.94162955,0,43.94162955,1.644343271,42.29728627,1.321105002,4.999758915,3.153638166,-3.153638166,0,0,0.312595302,0.411085818,13.22193299,0.009067232,1,0.307064733,0,0.923259364,0.962021327,0.724496596,1,50.86053796,1.191321102,0.001544009,0.312029739,0.995631033,0.720127629,0.961238037,0.922476074,0.29706117,12.70942491,51.15759913,13.90074602,239.8347282,0,0.498731854,60.08386446,-0.498731854,119.9161355,0.949745726,0,278.9396072,13.90074602,288.0373674,5,18,3% -2018-05-28 03:00:00,86.60225988,295.0612813,11.59764089,59.83364423,8.051480268,25.65798608,17.76185974,7.896126347,7.808698431,0.087427916,3.054764145,0,3.054764145,0.242781837,2.811982308,1.511494575,5.149790854,11.89715071,-11.89715071,0,0,0.694234314,0.060695459,1.952174608,0.6006994,1,0.083856626,0,0.953002442,0.991764405,0.724496596,1,7.562569169,0.175894614,0.079943694,0.312029739,0.79843219,0.522928786,0.961238037,0.922476074,0.041784181,1.876504487,7.60435335,2.052399102,7.092321254,0,0.296854052,72.7312522,-0.296854052,107.2687478,0.881567062,0,13.85671016,2.052399102,15.19996433,5,19,10% -2018-05-28 04:00:00,97.09376006,304.5033709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694605796,5.314586405,-4.665920244,4.665920244,1,0.671926955,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081029714,85.35224384,-0.081029714,94.64775616,0,0,0,0,0,5,20,0% -2018-05-28 05:00:00,106.1777897,315.3118806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853152023,5.503230488,-1.439742367,1.439742367,1,0.776364135,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124618328,97.15871525,0.124618328,82.84128475,0,0.648774909,0,0,0,5,21,0% -2018-05-28 06:00:00,113.5378858,327.9125798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981609933,5.723154177,-0.480726424,0.480726424,1,0.61236275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309610036,108.035731,0.309610036,71.96426898,0,0.888506527,0,0,0,5,22,0% -2018-05-28 07:00:00,118.5207334,342.4144024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068577029,5.976258727,0.077521005,-0.077521005,1,0.516896817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461341068,117.4736781,0.461341068,62.52632191,0,0.941620314,0,0,0,5,23,0% -2018-05-29 08:00:00,120.5081314,358.2805915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103263669,6.253175967,0.532334621,-0.532334621,1,0.439119108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569474306,124.7135756,0.569474306,55.28642435,0,0.962199726,0,0,0,5,0,0% -2018-05-29 09:00:00,119.1994216,14.29261598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080422374,0.249453208,1.008144534,-1.008144534,1,0.357750821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626643613,128.8029262,0.626643613,51.19707379,0,0.970209831,0,0,0,5,1,0% -2018-05-29 10:00:00,114.7965196,29.14749052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003577237,0.508719678,1.637251899,-1.637251899,1,0.250167125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628955226,128.973083,0.628955226,51.02691701,0,0.970503085,0,0,0,5,2,0% -2018-05-29 11:00:00,107.876247,42.1488915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882795694,0.735636933,2.741311392,-2.741311392,1,0.061361832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576252668,125.1874046,0.576252668,54.81259542,0,0.963232506,0,0,0,5,3,0% -2018-05-29 12:00:00,99.10273922,53.29641639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729669097,0.930197946,5.977943344,-5.977943344,1,0,#DIV/0!,0,0,0.329819276,1,0.165746943,0,0.943372395,0.982134358,0.724496596,1,0,0,0.048796003,0.312029739,0.870960333,0.595456928,0.961238037,0.922476074,0,0,0,0,0,0,-0.472127199,118.1724664,0.472127199,61.82753356,0,0.944096336,0,0,0,5,4,0% -2018-05-29 13:00:00,88.67576999,62.97367164,1.268601631,7.522635783,1.094752645,1.071305068,0,1.071305068,1.061741813,0.009563255,2.730122042,2.389524057,0.340597984,0.033010831,0.307587153,1.547684153,1.099097912,-42.93465995,42.93465995,0,0,0.862960143,0.008252708,0.265435453,1,0.8544907,0,0.023286995,0.961238037,1,0.660581341,0.936084745,1.020586616,0.023129688,0.115824807,0.239461601,0.724496596,0.448993192,0.97217766,0.933415697,0.005979059,0.256553302,1.026565675,0.27968299,0,0.347697973,-0.317644523,108.5205353,0.317644523,71.4794647,0,0.892591336,1.026565675,0.590035188,1.412731905,5,5,38% -2018-05-29 14:00:00,78.03793337,71.68934533,133.0181582,415.3933666,46.92204643,46.50992067,0,46.50992067,45.50717361,1.002747064,91.69016569,58.02350036,33.66666532,1.414872824,32.2517925,1.362018879,1.251215115,-4.717942312,4.717942312,0.663030658,0.663030658,0.352749181,0.784044236,25.21755778,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.74322622,1.025070544,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56803738,24.24007573,44.3112636,25.26514628,0,58.02350036,-0.139683262,98.02951839,0.139683262,81.97048161,0,0.692047305,44.3112636,65.42015333,87.12744555,5,6,97% -2018-05-29 15:00:00,66.5981257,79.99717064,339.8333076,664.0621466,76.08249038,118.9198155,42.56968593,76.3501296,73.78832258,2.561807019,84.69068768,0,84.69068768,2.2941678,82.39651988,1.162356569,1.39621402,-2.275572019,2.275572019,0.919299424,0.919299424,0.223881793,2.401352882,77.23576327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.92814234,1.662116761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.739771988,74.24195346,72.66791433,75.90407023,42.56968593,0,0.064104973,86.32453531,-0.064104973,93.67546469,0,0,72.66791433,75.90407023,122.3456102,5,7,68% -2018-05-29 16:00:00,54.83702248,88.5642725,544.6439102,781.8862759,94.3523308,311.5030299,215.8900142,95.61301576,91.5072599,4.105755854,134.9002926,0,134.9002926,2.845070897,132.0552217,0.957086594,1.545738155,-1.345674227,1.345674227,0.760277536,0.760277536,0.173236731,3.292020794,105.882705,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96025887,2.06124418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.385057859,101.7784835,90.34531673,103.8397277,215.8900142,0,0.276114341,73.97156736,-0.276114341,106.0284326,0.868915599,0,277.9355178,103.8397277,345.8965428,5,8,24% -2018-05-29 17:00:00,43.03266836,98.42307677,724.9091095,844.8708078,107.3383498,516.4706209,406.9042473,109.5663735,104.1017025,5.46467107,178.9992536,0,178.9992536,3.236647282,175.7626063,0.751061749,1.71780675,-0.821044845,0.821044845,0.670560627,0.670560627,0.148071459,3.930963024,126.4332834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0665161,2.344939938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.847969329,121.5324812,102.9144854,123.8774211,406.9042473,0,0.481617122,61.20892781,-0.481617122,118.7910722,0.946183093,0,487.9204048,123.8774211,568.9956993,5,9,17% -2018-05-29 18:00:00,31.60009055,111.6966593,866.1060774,880.1287486,116.4774455,706.1402611,586.6459669,119.4942942,112.9652208,6.529073456,213.5096706,0,213.5096706,3.512224738,209.9974459,0.551525624,1.949474469,-0.459360362,0.459360362,0.608708938,0.608708938,0.134484041,4.317880907,138.8778926,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5864671,2.544594867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128290018,133.4947128,111.7147571,136.0393077,586.6459669,0,0.666545625,48.19898894,-0.666545625,131.8010111,0.97498638,0,683.6865849,136.0393077,772.721591,5,10,13% -2018-05-29 19:00:00,21.57450474,133.7731582,957.7928641,898.6548621,122.0975815,860.9868295,735.3506934,125.6361361,118.4158889,7.220247183,235.9096614,0,235.9096614,3.681692574,232.2279688,0.376546142,2.334782061,-0.174743508,0.174743508,0.560036589,0.560036589,0.127478066,4.448555113,143.0808242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8258566,2.667373737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222963036,137.5347306,117.0488196,140.2021043,735.3506934,0,0.818279324,35.08708338,-0.818279324,144.9129166,0.988896171,0,844.2343046,140.2021043,935.9937779,5,11,11% -2018-05-29 20:00:00,16.20394768,174.6335761,993.3902961,905.1186882,124.2279357,966.5406671,838.5700664,127.9706007,120.4820051,7.488595662,244.604909,0,244.604909,3.745930613,240.8589784,0.282812239,3.047930888,0.073416537,-0.073416537,0.517598722,0.517598722,0.125054509,4.327847975,139.1984677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.811886,2.713913977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.135511125,133.8028619,118.9473971,136.5167758,838.5700664,0,0.926475254,22.10812746,-0.926475254,157.8918725,0.996032018,0,954.1900324,136.5167758,1043.537532,5,12,9% -2018-05-29 21:00:00,19.83614122,219.3331818,970.3785624,900.9828856,122.853774,1012.819761,886.3553583,126.4644029,119.1492794,7.315123493,238.9840117,0,238.9840117,3.704494568,235.2795171,0.346205975,3.828086182,0.310285294,-0.310285294,0.477091779,0.477091779,0.126603965,3.974262948,127.8259579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5308195,2.683893704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.879339977,122.8711728,117.4101594,125.5550665,886.3553583,0,0.983764922,10.3384193,-0.983764922,169.6615807,0.99917485,0,1003.034141,125.5550665,1085.207421,5,13,8% -2018-05-29 22:00:00,29.25369635,244.6379619,890.4014829,885.3246618,117.9871599,994.2971694,873.1555353,121.1416342,114.4294117,6.712222485,219.4458964,0,219.4458964,3.557748196,215.8881482,0.51057332,4.269737911,0.557660665,-0.557660665,0.434788099,0.434788099,0.132510067,3.421114862,110.034814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.993903,2.577576457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478586071,105.7696486,112.4724891,108.347225,873.1555353,0,0.986254617,9.510750176,-0.986254617,170.4892498,0.999303152,0,985.019568,108.347225,1055.93066,5,14,7% -2018-05-29 23:00:00,40.50651914,259.1724216,759.1962788,854.328906,109.6226165,909.8054552,797.7652229,112.0402323,106.3170901,5.723142235,187.3814538,0,187.3814538,3.305526351,184.0759275,0.706972127,4.523412087,0.843353928,-0.843353928,0.385931674,0.385931674,0.144392984,2.716196621,87.36222021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.196031,2.394842589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967875206,83.97588905,104.1639062,86.37073164,797.7652229,0,0.933791678,20.96619915,-0.933791678,159.0338008,0.996454867,0,899.1009449,86.37073164,955.6288614,5,15,6% -2018-05-29 00:00:00,52.27005601,269.5285382,586.3952796,798.8647124,97.53763456,762.0589111,663.0419008,99.01701032,94.596515,4.420495312,145.1194441,0,145.1194441,2.941119558,142.1783246,0.912284578,4.70416042,1.218104068,-1.218104068,0.321845626,0.321845626,0.166334276,1.921350353,61.79723195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92976838,2.130831108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39201179,59.40184992,92.32178017,61.53268103,663.0419008,0,0.829980209,33.90329497,-0.829980209,146.096705,0.9897576,0,748.5725404,61.53268103,788.8444495,5,16,5% -2018-05-29 01:00:00,64.05766322,278.2699483,385.55245,696.9231523,80.67201058,556.4173967,475.2714877,81.14590904,78.23945181,2.906457226,95.91421405,0,95.91421405,2.432558767,93.48165528,1.118017134,4.856726807,1.810377684,-1.810377684,0.220560872,0.220560872,0.209237448,1.115058611,35.86411793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.20673706,1.762380546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807856168,34.47395432,76.01459323,36.23633486,475.2714877,0,0.681956807,47.00325526,-0.681956807,132.9967447,0.976681574,0,540.2034977,36.23633486,563.9194541,5,17,4% -2018-05-29 02:00:00,75.58067638,286.5750518,176.4763402,488.3432705,54.8707895,298.7256681,244.1790822,54.54658594,53.21623274,1.330353196,44.4432886,0,44.4432886,1.654556755,42.78873185,1.319131654,5.001678208,3.123404879,-3.123404879,0,0,0.310924339,0.413639189,13.30405819,0.003964225,1,0.309851181,0,0.922820386,0.961582349,0.724496596,1,51.16361284,1.198720737,0.000676662,0.312029739,0.998083013,0.722579609,0.961238037,0.922476074,0.299339003,12.78836677,51.46295185,13.98708751,243.2111014,0,0.500015249,59.99899111,-0.500015249,120.0010089,0.95000305,0,282.5142399,13.98708751,291.6685089,5,18,3% -2018-05-29 03:00:00,86.48624585,295.1590508,12.52226344,64.19973269,8.587580901,27.57452603,19.15149427,8.423031763,8.328633652,0.094398111,3.295114998,0,3.295114998,0.258947249,3.036167749,1.509469748,5.151497253,11.48371471,-11.48371471,0,0,0.685785037,0.064736812,2.082158413,0.58909916,1,0.086860727,0,0.952676516,0.991438479,0.724496596,1,8.067146532,0.1876064,0.078739586,0.312029739,0.801092341,0.525588937,0.961238037,0.922476074,0.044531661,2.001449865,8.111678193,2.189056266,7.869365082,0,0.298311122,72.64380662,-0.298311122,107.3561934,0.882389756,0,15.05552532,2.189056266,16.48821887,5,19,10% -2018-05-29 04:00:00,96.96350887,304.5884787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692332484,5.316071817,-4.744178758,4.744178758,1,0.658543961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082794332,85.25079778,-0.082794332,94.74920222,0,0,0,0,0,5,20,0% -2018-05-29 05:00:00,106.0375111,315.3805039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850703699,5.504428189,-1.449240907,1.449240907,1,0.777988481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.122668747,97.04614871,0.122668747,82.95385129,0,0.642398217,0,0,0,5,21,0% -2018-05-29 06:00:00,113.3885964,327.9570236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979004341,5.723929867,-0.482414295,0.482414295,1,0.612651393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307527851,107.9103103,0.307527851,72.0896897,0,0.8874131,0,0,0,5,22,0% -2018-05-29 07:00:00,118.3664743,342.4244774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065884701,5.976434569,0.078346348,-0.078346348,1,0.516755675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459187858,117.3347139,0.459187858,62.66528613,0,0.941112103,0,0,0,5,23,0% -2018-05-30 08:00:00,120.3562783,358.2490409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100613332,6.252625305,0.534682082,-0.534682082,1,0.438717668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567316614,124.5633163,0.567316614,55.43668372,0,0.961865793,0,0,0,5,0,0% -2018-05-30 09:00:00,119.0584458,14.22157892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077961881,0.248213377,1.01215084,-1.01215084,1,0.357065702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62454836,128.649046,0.62454836,51.35095404,0,0.969942148,0,0,0,5,1,0% -2018-05-30 10:00:00,114.6723156,29.04764632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001409468,0.506977068,1.644134014,-1.644134014,1,0.248990214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626985099,128.8280372,0.626985099,51.1719628,0,0.970253288,0,0,0,5,2,0% -2018-05-30 11:00:00,107.7705481,42.0319046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880950902,0.733595126,2.755739558,-2.755739558,1,0.05889447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574461807,125.0619509,0.574461807,54.93804911,0,0.962962012,0,0,0,5,3,0% -2018-05-30 12:00:00,99.01420815,53.16967932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728123939,0.927985966,6.033626791,-6.033626791,1,0,#DIV/0!,0,0,0.334069081,1,0.164244774,0,0.943562797,0.98232476,0.724496596,1,0,0,0.049338575,0.312029739,0.869630975,0.594127571,0.961238037,0.922476074,0,0,0,0,0,0,-0.470557476,118.0704896,0.470557476,61.92951042,0,0.943743055,0,0,0,5,4,0% -2018-05-30 13:00:00,88.60888273,62.83973499,1.419717906,8.340672922,1.217229794,1.191228258,0,1.191228258,1.180525825,0.010702433,3.020251404,2.639320392,0.380931013,0.036703969,0.344227043,1.54651675,1.096760277,-40.85764853,40.85764853,0,0,0.857374405,0.009175992,0.295131456,1,0.846560416,0,0.024470336,0.961238037,1,0.657446891,0.932950295,1.134766326,0.025682502,0.115824807,0.235907853,0.724496596,0.448993192,0.972684844,0.933922881,0.006647975,0.285314565,1.141414302,0.310997067,0,0.404976223,-0.316439743,108.4477516,0.316439743,71.55224837,0,0.891992034,1.141414302,0.672232632,1.581377115,5,5,39% -2018-05-30 14:00:00,77.97536844,71.54702318,134.1056514,417.4327383,47.14097942,46.73045001,0,46.73045001,45.71950496,1.010945047,91.80373955,57.86679729,33.93694227,1.421474461,32.5154678,1.360926915,1.248731125,-4.692993831,4.692993831,0.667297099,0.667297099,0.351521199,0.792832866,25.50023032,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.94732719,1.029853408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574404713,24.51179134,44.52173191,25.54164474,0,57.86679729,-0.138625441,97.96831423,0.138625441,82.03168577,0,0.689315844,44.52173191,65.43014498,87.34445319,5,6,96% -2018-05-30 15:00:00,66.54297397,79.84221114,340.8316313,664.8340628,76.18703457,119.6185189,43.15947172,76.45904718,73.88971437,2.569332804,84.93589521,0,84.93589521,2.297320192,82.63857501,1.16139399,1.393509466,-2.270649799,2.270649799,0.918457674,0.918457674,0.223532758,2.40665564,77.40631821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.02560399,1.664400659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743613819,74.40589736,72.76921781,76.07029802,43.15947172,0,0.06491766,86.27787457,-0.06491766,93.72212543,0,0,72.76921781,76.07029802,122.5557065,5,7,68% -2018-05-30 16:00:00,54.78543276,88.38895632,545.4953993,782.2501754,94.41861623,312.1347668,216.4510455,95.68372132,91.57154658,4.112174738,135.1087447,0,135.1087447,2.847069647,132.2616751,0.956186184,1.54267831,-1.344477879,1.344477879,0.760072948,0.760072948,0.173087832,3.296325033,106.0211441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.02205367,2.062692267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388176265,101.9115564,90.41022993,103.9742487,216.4510455,0,0.276703096,73.93646668,-0.276703096,106.0635333,0.869300902,0,278.5713189,103.9742487,346.6203852,5,8,24% -2018-05-30 17:00:00,42.9789578,98.21452901,725.655223,845.083617,107.3885671,516.9692234,407.3485222,109.6207011,104.1504056,5.470295589,179.1816717,0,179.1816717,3.238161519,175.9435102,0.750124323,1.714166904,-0.821112169,0.821112169,0.67057214,0.67057214,0.147988416,3.934912977,126.5603275,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1133314,2.346036997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.850831057,121.6546008,102.9641624,124.0006378,407.3485222,0,0.482021559,61.18248337,-0.482021559,118.8175166,0.9462702,0,488.4259299,124.0006378,569.5818673,5,9,17% -2018-05-30 18:00:00,31.53434695,111.4352775,866.8096216,880.2823532,116.521389,706.5306199,586.9884036,119.5422162,113.0078392,6.53437707,213.6815781,0,213.6815781,3.513549795,210.1680283,0.550378182,1.944912496,-0.46003747,0.46003747,0.60882473,0.60882473,0.134425583,4.321893804,139.0069612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6274335,2.545554866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131197349,133.6187784,111.7586308,136.1643333,586.9884036,0,0.666818324,48.17802607,-0.666818324,131.8219739,0.975017058,0,684.082337,136.1643333,773.1991698,5,10,13% -2018-05-30 19:00:00,21.47733423,133.456145,958.5229204,898.7912149,122.1415382,861.3285711,735.6443002,125.6842709,118.4585202,7.225750656,236.0879975,0,236.0879975,3.683018032,232.4049794,0.374850197,2.329249137,-0.175827586,0.175827586,0.560221978,0.560221978,0.127426831,4.452951919,143.2222407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8668354,2.668334027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.226148507,137.6706654,117.0929839,140.3389995,735.6443002,0,0.818481854,35.06689096,-0.818481854,144.933109,0.988911291,0,844.5799384,140.3389995,936.4290068,5,11,11% -2018-05-30 20:00:00,16.05908664,174.4761191,994.2148669,905.2640684,124.2769797,966.9089084,838.8845265,128.0243819,120.5295703,7.494811624,244.8063146,0,244.8063146,3.747409472,241.0589051,0.280283937,3.045182745,0.071958665,-0.071958665,0.517848033,0.517848033,0.125000122,4.332878671,139.3602722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8576075,2.714985406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139155847,133.9583945,118.9967634,136.6733799,838.8845265,0,0.926673836,22.07787602,-0.926673836,157.922124,0.996043583,0,954.5623128,136.6733799,1044.012306,5,12,9% -2018-05-30 21:00:00,19.69458615,219.4892928,971.358938,901.1622345,122.912538,1013.2957,886.7669148,126.5287855,119.2062715,7.322513978,239.223487,0,239.223487,3.70626652,235.5172205,0.343735373,3.830810832,0.308382099,-0.308382099,0.477417245,0.477417245,0.126536683,3.98010219,128.0137679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5856024,2.685177477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.883570488,123.051703,117.4691729,125.7368805,886.7669148,0,0.984025829,10.25478647,-0.984025829,169.7452135,0.999188326,0,1003.516322,125.7368805,1085.808595,5,13,8% -2018-05-30 22:00:00,29.13483737,244.828338,891.5872126,885.5726506,118.0604402,994.9626728,873.7410295,121.2216434,114.5004823,6.721161017,219.7356,0,219.7356,3.559957869,216.1756421,0.508498839,4.273060601,0.555120445,-0.555120445,0.435222503,0.435222503,0.132416031,3.427846542,110.2513279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0622189,2.579177358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.483463151,105.97777,112.545682,108.5569474,873.7410295,0,0.986639582,9.376319093,-0.986639582,170.6236809,0.999322933,0,985.6951304,108.5569474,1056.743481,5,14,7% -2018-05-30 23:00:00,40.39885496,259.3346811,760.6204917,854.7080486,109.7165004,910.7415695,798.5995478,112.1420217,106.4081431,5.733878554,187.7296017,0,187.7296017,3.308357299,184.4212444,0.705093033,4.52624405,0.83976264,-0.83976264,0.38654582,0.38654582,0.144246049,2.723788193,87.60639124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2835546,2.396893601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973375274,84.21059554,104.2569299,86.60748914,798.5995478,0,0.934353607,20.8760347,-0.934353607,159.1239653,0.996487069,0,900.0510527,86.60748914,956.7339222,5,15,6% -2018-05-30 00:00:00,52.16546419,269.6651439,588.0689649,799.5103885,97.66270928,763.3517285,664.200798,99.15093052,94.71781826,4.433112259,145.52902,0,145.52902,2.944891022,142.584129,0.910459106,4.706544639,1.212490859,-1.212490859,0.322805541,0.322805541,0.166073565,1.929599171,62.0625423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.04636968,2.13356352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397988031,59.65687633,92.44435771,61.79043985,664.200798,0,0.830759434,33.82317053,-0.830759434,146.1768295,0.989814105,0,749.8796762,61.79043985,790.3202833,5,16,5% -2018-05-30 01:00:00,63.9514442,278.3878161,387.4506179,698.1856097,80.85450007,558.1825485,476.8453435,81.33720499,78.41643857,2.920766418,96.37994957,0,96.37994957,2.438061499,93.94188807,1.116163263,4.858783988,1.799881246,-1.799881246,0.222355869,0.222355869,0.208683368,1.123435608,36.13355094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37686347,1.766367256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813925274,34.73294357,76.19078875,36.49931083,476.8453435,0,0.682977903,46.92321256,-0.682977903,133.0767874,0.976791189,0,541.9691189,36.49931083,565.8571879,5,17,4% -2018-05-30 02:00:00,75.46997446,286.6788764,178.4628506,491.3071122,55.20012485,301.1646894,246.2837236,54.88096577,53.53563742,1.345328351,44.93487173,0,44.93487173,1.664487431,43.2703843,1.317199541,5.00349029,3.094397571,-3.094397571,0.000980539,0.000980539,0.30930877,0.417032981,13.41321422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46049102,1.205915478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.302138975,12.8932917,51.76262999,14.09920718,246.2837236,0,0.501282635,59.91510523,-0.501282635,120.0848948,0.950255871,0,285.7951842,14.09920718,295.0228333,5,18,3% -2018-05-30 03:00:00,86.37270998,295.250968,13.46006763,68.58020481,9.121281084,29.50470913,20.55700065,8.947708481,8.846240806,0.101467675,3.538589511,0,3.538589511,0.275040279,3.263549233,1.507488173,5.153101512,11.10539326,-11.10539326,0,0,0.677654922,0.06876007,2.211560201,0.577877471,1,0.08980414,0,0.952355129,0.991117093,0.724496596,1,8.569507635,0.199265746,0.077564728,0.312029739,0.803699037,0.528195633,0.961238037,0.922476074,0.047265867,2.125835786,8.616773503,2.325101532,8.677573097,0,0.299751229,72.55733805,-0.299751229,107.442662,0.883195012,0,16.28076278,2.325101532,17.80249523,5,19,9% -2018-05-30 04:00:00,96.83661105,304.6679507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690117699,5.317458866,-4.823669332,4.823669332,1,0.644950272,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084529126,85.15105167,-0.084529126,94.84894833,0,0,0,0,0,5,20,0% -2018-05-30 05:00:00,105.9013003,315.4437871,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848326372,5.50553269,-1.458799652,1.458799652,1,0.779623123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120758174,96.93586097,0.120758174,83.06413903,0,0.635949354,0,0,0,5,21,0% -2018-05-30 06:00:00,113.2441893,327.9967225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976483961,5.724622744,-0.484193186,0.484193186,1,0.612955601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305494666,107.7879267,0.305494666,72.21207335,0,0.886331021,0,0,0,5,22,0% -2018-05-30 07:00:00,118.217888,342.4309337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063291381,5.976547253,0.079044502,-0.079044502,1,0.516636284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457093758,117.1997314,0.457093758,62.80026856,0,0.940613251,0,0,0,5,23,0% -2018-05-31 08:00:00,120.2106707,358.2155474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098072,6.252040734,0.536858001,-0.536858001,1,0.438345564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565227569,124.4180956,0.565227569,55.58190441,0,0.961540054,0,0,0,5,0,0% -2018-05-31 09:00:00,118.9239264,14.15045095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075614075,0.24697196,1.015913289,-1.015913289,1,0.356422285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622530059,128.5011291,0.622530059,51.49887092,0,0.969682593,0,0,0,5,1,0% -2018-05-31 10:00:00,114.5544442,28.94925937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999352223,0.505259892,1.650625195,-1.650625195,1,0.247880157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625098426,128.689412,0.625098426,51.31058799,0,0.970012597,0,0,0,5,2,0% -2018-05-31 11:00:00,107.67087,41.91744476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879211191,0.731597425,2.769378367,-2.769378367,1,0.056562097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572758652,124.9428199,0.572758652,55.05718014,0,0.962703196,0,0,0,5,3,0% -2018-05-31 12:00:00,98.93133665,53.04616776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726677558,0.925830283,6.086555794,-6.086555794,1,0,#DIV/0!,0,0,0.338058998,1,0.162841716,0,0.943740179,0.982502142,0.724496596,1,0,0,0.049846239,0.312029739,0.868389256,0.592885852,0.961238037,0.922476074,0,0,0,0,0,0,-0.469077169,117.9744103,0.469077169,62.02558975,0,0.943407731,0,0,0,5,4,0% -2018-05-31 13:00:00,88.5466104,62.7095274,1.570262243,9.153496891,1.338095569,1.309584351,0,1.309584351,1.297747051,0.0118373,3.307282952,2.886206173,0.421076779,0.040348518,0.380728261,1.545429893,1.094487725,-39.09508138,39.09508138,0,0,0.852147834,0.01008713,0.324436763,1,0.839119827,0,0.025573089,0.961238037,1,0.654535808,0.930039212,1.247443828,0.028197919,0.115824807,0.232607867,0.724496596,0.448993192,0.973153381,0.934391417,0.007308091,0.313703535,1.254751919,0.341901454,0,0.464333347,-0.315311865,108.3796418,0.315311865,71.6203582,0,0.891426836,1.254751919,0.75582066,1.749421424,5,5,39% -2018-05-31 14:00:00,77.91784714,71.40888353,135.1065437,419.2988194,47.34143828,46.93240944,0,46.93240944,45.91391925,1.018490195,91.90297272,57.71730797,34.18566476,1.427519035,32.75814572,1.359922979,1.246320133,-4.670270291,4.670270291,0.671183053,0.671183053,0.35040078,0.800941472,25.76103095,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.1342056,1.034232682,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.58027937,24.76248282,44.71448497,25.7967155,0,57.71730797,-0.137651969,97.91199849,0.137651969,82.08800151,0,0.686765093,44.71448497,65.43494789,87.54034967,5,6,96% -2018-05-31 15:00:00,66.49273951,79.69194411,341.7407499,665.5347335,76.28205536,120.2514084,43.69335231,76.55805607,73.98186994,2.576186125,85.15918677,0,85.15918677,2.30018542,82.85900135,1.160517233,1.390886812,-2.266231868,2.266231868,0.917702164,0.917702164,0.223216153,2.411496652,77.56202179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.11418743,1.666476507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121115,74.55556555,72.86130854,76.22204206,43.69335231,0,0.065651498,86.23573886,-0.065651498,93.76426114,0,0,72.86130854,76.22204206,122.7471106,5,7,68% -2018-05-31 16:00:00,54.73875261,88.21898058,546.2654308,782.5785984,94.47851049,312.6946572,216.9470428,95.74761437,91.62963481,4.117979561,135.2972538,0,135.2972538,2.84887568,132.4483781,0.955371462,1.539711674,-1.343473253,1.343473253,0.759901147,0.759901147,0.172953486,3.300260337,106.147717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.07789028,2.064000732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39102738,102.0332231,90.46891766,104.0972239,216.9470428,0,0.277220771,73.90559854,-0.277220771,106.0944015,0.869638335,0,279.1343827,104.0972239,347.2639337,5,8,24% -2018-05-31 17:00:00,42.9303508,98.01213396,726.3298102,845.2757484,107.4339501,517.4005155,407.7307145,109.669801,104.1944201,5.475380912,179.3466016,0,179.3466016,3.239529984,176.1070716,0.749275971,1.710634445,-0.821265056,0.821265056,0.670598286,0.670598286,0.147913453,3.938557736,126.6775555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1556398,2.347028445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853471673,121.7672848,103.0091115,124.1143132,407.7307145,0,0.482364146,61.16007771,-0.482364146,118.8399223,0.946343871,0,488.8625743,124.1143132,570.09291,5,9,17% -2018-05-31 18:00:00,31.47422748,111.1806914,867.4518387,880.4224013,116.5614899,706.8621961,587.2762468,119.5859493,113.0467309,6.539218373,213.8385003,0,213.8385003,3.514758987,210.3237413,0.549328899,1.940469129,-0.460750899,0.460750899,0.608946734,0.608946734,0.13437229,4.325650166,139.1277787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6648177,2.546430921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13391882,133.7349128,111.7987365,136.2813437,587.2762468,0,0.667039192,48.16104258,-0.667039192,131.8389574,0.975041886,0,684.4176756,136.2813437,773.6110895,5,10,13% -2018-05-31 19:00:00,21.3866949,133.1437803,959.201084,898.9177297,122.1823602,861.6213719,735.8923977,125.7289742,118.4981113,7.230862939,236.253657,0,236.253657,3.684248966,232.5694081,0.373268242,2.323797345,-0.176919116,0.176919116,0.56040864,0.56040864,0.127379297,4.457129071,143.3565922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9048918,2.669225834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.229174839,137.7998093,117.1340667,140.4690351,735.8923977,0,0.818642656,35.05085167,-0.818642656,144.9491483,0.98892329,0,844.8751978,140.4690351,936.8093719,5,11,11% -2018-05-31 20:00:00,15.92077293,174.312105,994.9954488,905.4015166,124.3233953,967.2377867,839.1625046,128.0752822,120.5745862,7.500695981,244.9969753,0,244.9969753,3.748809072,241.2481662,0.277869907,3.042320158,0.070514744,-0.070514744,0.518094958,0.518094958,0.124948707,4.337715269,139.5158339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9008785,2.715999411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142659946,134.1079262,119.0435385,136.8239257,839.1625046,0,0.92684018,22.05250522,-0.92684018,157.9474948,0.996053267,0,954.8940924,136.8239257,1044.442615,5,12,9% -2018-05-31 21:00:00,19.5576224,219.6333721,972.3011099,901.334326,122.9689933,1013.740417,887.1497757,126.5906409,119.2610244,7.329616468,239.4536299,0,239.4536299,3.707968854,235.745661,0.341344905,3.83332549,0.306513319,-0.306513319,0.477736825,0.477736825,0.126472131,3.985761597,128.1957939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.638233,2.686410812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887670709,123.2266733,117.5259037,125.9130841,887.1497757,0,0.98426272,10.17826284,-0.98426272,169.8217372,0.999200555,0,1003.966452,125.9130841,1086.374047,5,13,8% -2018-05-31 22:00:00,29.01905876,245.0080155,892.7380036,885.8128457,118.1315265,995.6026678,874.3034065,121.2992613,114.5694251,6.729836165,220.0167661,0,220.0167661,3.562101382,216.4546647,0.506478121,4.276196564,0.552639766,-0.552639766,0.435646724,0.435646724,0.132324967,3.434401973,110.4621731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1284893,2.580730325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488212538,106.1804424,112.6167018,108.7611728,874.3034065,0,0.987006918,9.246238315,-0.987006918,170.7537617,0.999341794,0,986.3446364,108.7611728,1057.526649,5,14,7% -2018-05-31 23:00:00,40.29356427,259.4881424,762.0103261,855.0770222,109.8080443,911.6545158,799.4132335,112.2412823,106.4969266,5.744355713,188.0693435,0,188.0693435,3.311117683,184.7582258,0.703255364,4.528922455,0.836269517,-0.836269517,0.38714318,0.38714318,0.144103092,2.731198399,87.84472895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3688966,2.39889349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978743943,84.4396948,104.3476406,86.83858829,799.4132335,0,0.934902018,20.78767897,-0.934902018,159.212321,0.99651846,0,900.9776847,86.83858829,957.8118039,5,15,6% -2018-05-31 00:00:00,52.06301312,269.7942641,589.7062438,800.1395534,97.78487933,764.6191602,665.337401,99.28175919,94.83630443,4.445454758,145.9296811,0,145.9296811,2.9485749,142.9811062,0.908670997,4.708798211,1.20704979,-1.20704979,0.323736018,0.323736018,0.165819644,1.937657574,62.32172824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.16026309,2.136232477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.403826316,59.90601571,92.56408941,62.04224818,665.337401,0,0.831526698,33.74411229,-0.831526698,146.2558877,0.98986964,0,751.1613828,62.04224818,791.7667934,5,16,5% -2018-05-31 01:00:00,63.84741259,278.4990193,389.3085363,699.414051,81.03255048,559.9132755,478.3893832,81.5238923,78.58912011,2.934772191,96.83579226,0,96.83579226,2.443430375,94.39236189,1.114347569,4.86072485,1.789745874,-1.789745874,0.224089119,0.224089119,0.208144808,1.13162157,36.3968396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54285153,1.770256989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.819855975,34.98602665,76.36270751,36.75628364,478.3893832,0,0.683985949,46.84409014,-0.683985949,133.1559099,0.976899083,0,543.7008574,36.75628364,567.7571099,5,17,4% -2018-05-31 02:00:00,75.36169449,286.7765349,180.4077167,494.1812324,55.52007848,303.5485341,248.3426012,55.20593284,53.84594327,1.359989573,45.41607481,0,45.41607481,1.674135214,43.7419396,1.315309699,5.005194752,3.066590335,-3.066590335,0.005735857,0.005735857,0.307747803,0.423933859,13.63517016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.7587688,1.212905263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307138637,13.10664419,52.06590744,14.31954946,248.3426012,0,0.502533453,59.83224606,-0.502533453,120.1677539,0.950504136,0,288.1165771,14.31954946,297.4884359,5,18,3% -2018-05-31 03:00:00,86.26173909,295.3370247,14.40754179,72.95801842,9.650775238,31.44137822,21.97299933,9.468378893,9.359768757,0.108610136,3.784281794,0,3.784281794,0.291006481,3.493275313,1.505551366,5.154603483,10.75849378,-10.75849378,0,0,0.669841905,0.07275162,2.339942189,0.567035298,1,0.092683508,0,0.95203878,0.990800743,0.724496596,1,9.067943724,0.210833205,0.076420105,0.312029739,0.806249252,0.530745848,0.961238037,0.922476074,0.04997789,2.249241436,9.117921614,2.460074641,9.51353311,0,0.301173193,72.47191859,-0.301173193,107.5280814,0.883982568,0,17.52771904,2.460074641,19.13778869,5,19,9% -2018-05-31 04:00:00,96.7131375,304.7417949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687962679,5.318747689,-4.904293395,4.904293395,1,0.631162745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086233015,85.05306823,-0.086233015,94.94693177,0,0,0,0,0,5,20,0% -2018-05-31 05:00:00,105.7692293,315.5017566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846021299,5.506544448,-1.468405836,1.468405836,1,0.781265877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118887879,96.8279233,0.118887879,83.1720767,0,0.629435681,0,0,0,5,21,0% -2018-05-31 06:00:00,113.1047326,328.0317206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974049983,5.725233576,-0.486061207,0.486061207,1,0.613275051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303511865,107.6686565,0.303511865,72.33134345,0,0.885261795,0,0,0,5,22,0% -2018-05-31 07:00:00,118.0750336,342.4338268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060798101,5.976597748,0.079614324,-0.079614324,1,0.516538838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.455060191,117.0688071,0.455060191,62.93119293,0,0.940124425,0,0,0,5,23,0% -2018-06-01 08:00:00,120.0713562,358.1801677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095640503,6.251423242,0.538859433,-0.538859433,1,0.438003299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563208546,124.2779818,0.563208546,55.72201819,0,0.961222938,0,0,0,6,0,0% -2018-06-01 09:00:00,118.7958997,14.07928407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073379587,0.245729863,1.019426685,-1.019426685,1,0.355821459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620589961,128.3592293,0.620589961,51.64077066,0,0.969431504,0,0,0,6,1,0% -2018-06-01 10:00:00,114.4429314,28.85238025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997405958,0.503569032,1.656715456,-1.656715456,1,0.246838661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623296265,128.5572468,0.623296265,51.44275321,0,0.969781326,0,0,0,6,2,0% -2018-06-01 11:00:00,107.5772285,41.80556617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877576837,0.729644775,2.78220125,-2.78220125,1,0.054369254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571144011,124.8300397,0.571144011,55.1699603,0,0.962456405,0,0,0,6,3,0% -2018-06-01 12:00:00,98.85412954,52.92594234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72533004,0.923731954,6.136554333,-6.136554333,1,0,#DIV/0!,0,0,0.341784343,1,0.161537991,0,0.943904607,0.98266657,0.724496596,1,0,0,0.050318736,0.312029739,0.867235389,0.591731985,0.961238037,0.922476074,0,0,0,0,0,0,-0.467686795,117.8842458,0.467686795,62.11575415,0,0.943090845,0,0,0,6,4,0% -2018-06-01 13:00:00,88.48899574,62.58311751,1.718191845,9.950286669,1.455813308,1.424867621,0,1.424867621,1.411915166,0.012952456,3.587489497,3.126995849,0.460493648,0.043898143,0.416595505,1.544424328,1.092281457,-37.5930266,37.5930266,0,0,0.847293806,0.010974536,0.352978791,1,0.832184915,0,0.026594407,0.961238037,1,0.651848226,0.927351631,1.357186562,0.030644497,0.115824807,0.229561689,0.724496596,0.448993192,0.9735838,0.934821837,0.007951014,0.341358362,1.365137576,0.372002858,0,0.524757074,-0.314261885,108.3162602,0.314261885,71.68373975,0,0.890897028,1.365137576,0.839507376,1.914578363,6,5,40% -2018-06-01 14:00:00,77.86535249,71.27500542,136.0208492,420.9944266,47.52369374,47.11606165,0,47.11606165,46.09067903,1.025382617,91.98920352,57.57635912,34.41284439,1.43301471,32.97982968,1.359006774,1.243983519,-4.649708189,4.649708189,0.67469938,0.67469938,0.349385363,0.808365159,25.99980225,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.30411383,1.038214279,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585657806,24.99199887,44.88977164,26.03021315,0,57.57635912,-0.136762759,97.86056405,0.136762759,82.13943595,0,0.684403397,44.88977164,65.4356689,87.71610822,6,6,95% -2018-06-01 15:00:00,66.44739325,79.546464,342.5612427,666.1652492,76.36766495,120.8186029,44.17133346,76.64726943,74.06489809,2.582371346,85.36070621,0,85.36070621,2.302766865,83.05793934,1.159725792,1.388347705,-2.262310421,2.262310421,0.917031557,0.917031557,0.222931422,2.415880261,77.70301374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19399724,1.668346755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750297025,74.69109239,72.94429426,76.35943914,44.17133346,0,0.066306871,86.19810674,-0.066306871,93.80189326,0,0,72.94429426,76.35943914,122.92002,6,7,69% -2018-06-01 16:00:00,54.69694178,88.05446574,546.954795,782.8720826,94.53209018,313.1832966,217.3785214,95.80477516,91.68159888,4.123176279,135.4660138,0,135.4660138,2.850491305,132.6155225,0.954641725,1.536840348,-1.342657832,1.342657832,0.759761702,0.759761702,0.172833461,3.303830721,106.2625528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12784012,2.065171247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393614111,102.1436077,90.52145423,104.2087789,217.3785214,0,0.277667995,73.87892746,-0.277667995,106.1210725,0.869928833,0,279.6252976,104.2087789,347.8278592,6,8,24% -2018-06-01 17:00:00,42.88679707,97.81606249,726.9337564,845.4475378,107.4745644,517.7653572,408.0516137,109.7137435,104.2338098,5.479933714,179.49426,0,179.49426,3.240754657,176.2535054,0.748515815,1.707212352,-0.821502118,0.821502118,0.670638826,0.670638826,0.147846435,3.941901,126.7850864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1935027,2.347915717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855893856,121.8706475,103.0493965,124.2185632,408.0516137,0,0.482645694,61.14166049,-0.482645694,118.8583395,0.946404338,0,489.2312141,124.2185632,570.5297793,6,9,17% -2018-06-01 18:00:00,31.41967771,110.9331836,868.033614,880.5491316,116.5978069,707.1359912,587.5104343,119.6255569,113.0819529,6.543604041,213.9806535,0,213.9806535,3.515854079,210.4647995,0.548376826,1.936149304,-0.461499593,0.461499593,0.609074768,0.609074768,0.134324069,4.329153132,139.2404461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6986744,2.547224312,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136456707,133.843213,111.8351311,136.3904374,587.5104343,0,0.667209146,48.14797093,-0.667209146,131.8520291,0.975060979,0,684.6936305,136.3904374,773.9584439,6,10,13% -2018-06-01 19:00:00,21.30255867,132.8365727,959.8281511,899.0345873,122.2200977,861.866267,736.0959662,125.7703008,118.5347108,7.235590036,236.4068346,0,236.4068346,3.685386889,232.7214477,0.371799788,2.31843556,-0.178017138,0.178017138,0.560596413,0.560596413,0.127335396,4.461088876,143.4839531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9400727,2.670050255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.232043704,137.9222334,117.1721164,140.5922837,736.0959662,0,0.818762678,35.03887581,-0.818762678,144.9611242,0.988932243,0,845.1211515,140.5922837,937.1359894,6,11,11% -2018-06-01 20:00:00,15.78906073,174.1417608,995.7326677,905.5311722,124.3672215,967.5282682,839.4049239,128.1233444,120.6170909,7.506253448,245.1770441,0,245.1770441,3.750130594,241.4269135,0.275571096,3.039347091,0.069085735,-0.069085735,0.518339333,0.518339333,0.124900212,4.342359007,139.6651924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9417357,2.71695685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146024319,134.2514954,119.08776,136.9684522,839.4049239,0,0.926975183,22.03189421,-0.926975183,157.9681058,0.996061123,0,955.1863714,136.9684522,1044.829484,6,12,9% -2018-06-01 21:00:00,19.42528543,219.7651304,973.205465,901.499263,123.0231652,1014.154712,887.504715,126.6499967,119.3135628,7.336433879,239.6745347,0,239.6745347,3.709602337,235.9649324,0.339035189,3.835625107,0.304679972,-0.304679972,0.478050346,0.478050346,0.12641027,3.991241166,128.3720357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6887349,2.687594265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891640638,123.3960836,117.5803755,126.0836778,887.504715,0,0.984476362,10.10875813,-0.984476362,169.8912419,0.999211579,0,1004.385363,126.0836778,1086.904609,6,13,8% -2018-06-01 22:00:00,28.90638386,245.1768192,893.853952,886.0453119,118.2004278,996.2177077,874.8432103,121.3744974,114.6362488,6.738248655,220.2894183,0,220.2894183,3.564179011,216.7252393,0.504511573,4.279142744,0.550219746,-0.550219746,0.436060571,0.436060571,0.132236846,3.440779828,110.6673069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1927227,2.582235561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492833273,106.3776248,112.685556,108.9598604,874.8432103,0,0.987357191,9.120487272,-0.987357191,170.8795127,0.999359765,0,986.9686612,108.9598604,1058.280711,6,14,7% -2018-06-01 23:00:00,40.190679,259.6327096,763.3655563,855.4358457,109.8972388,912.5445345,800.2065309,112.3380036,106.5834316,5.754572011,188.4006243,0,188.4006243,3.313807227,185.0868171,0.701459677,4.531445629,0.832875772,-0.832875772,0.387723544,0.387723544,0.143964105,2.738424591,88.07714813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.4520485,2.400842055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983979294,84.66310496,104.4360278,87.06394701,800.2065309,0,0.935437222,20.70110366,-0.935437222,159.2988963,0.996549059,0,901.881093,87.06394701,958.862705,6,15,6% -2018-06-01 00:00:00,51.96274564,269.9158405,591.3065593,800.7521709,97.90411648,765.861097,666.4516322,99.40946475,94.95194614,4.457518613,146.3212915,0,146.3212915,2.95217034,143.3691212,0.906921,4.71092012,1.201781939,-1.201781939,0.324636874,0.324636874,0.165572519,1.945521656,62.57466413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.2714223,2.138837361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409523817,60.14914731,92.68094612,62.28798467,666.4516322,0,0.832282017,33.66612502,-0.832282017,146.333875,0.98992421,0,752.4175514,62.28798467,793.1837916,6,16,5% -2018-06-01 01:00:00,63.74562117,278.6035213,391.1253236,700.6084253,81.20611951,561.6091381,479.9032148,81.70592329,78.75745539,2.948467901,97.28152712,0,97.28152712,2.448664122,94.832863,1.112570973,4.862548755,1.779970743,-1.779970743,0.225760765,0.225760765,0.207621738,1.139611329,36.65381772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.70466181,1.774048821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825644528,35.23304379,76.53030633,37.00709261,479.9032148,0,0.68498065,46.76591457,-0.68498065,133.2340854,0.977005237,0,545.3982606,37.00709261,569.6186626,6,17,4% -2018-06-01 02:00:00,75.25589793,286.8680069,182.3096547,496.9659035,55.83063915,305.8765381,250.3550715,55.52146657,54.14713939,1.374327185,45.88658624,0,45.88658624,1.683499763,44.20308648,1.313463201,5.006791238,3.039958992,-3.039958992,0.010290084,0.010290084,0.306240716,0.430686045,13.85234368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.04828996,1.219689848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312030574,13.31539965,52.36032054,14.53508949,250.3550715,0,0.503767099,59.7504562,-0.503767099,120.2495438,0.950747786,0,290.3848504,14.53508949,299.8977758,6,18,3% -2018-06-01 03:00:00,86.15341965,295.4172153,15.361199,77.31696533,10.17438485,33.37763303,23.39424422,9.983388813,9.867589606,0.115799207,4.031295785,0,4.031295785,0.306795243,3.724500542,1.503660835,5.156003075,10.43984571,-10.43984571,0,0,0.662343145,0.076698811,2.466897402,0.55657348,1,0.095495506,0,0.951727967,0.99048993,0.724496596,1,9.560865938,0.222272109,0.07530668,0.312029739,0.808739994,0.53323659,0.961238037,0.922476074,0.052659446,2.371275615,9.613525384,2.593547724,10.37362829,0,0.30257582,72.38762126,-0.30257582,107.6123787,0.884752162,0,18.79161545,2.593547724,20.48904056,6,19,9% -2018-06-01 04:00:00,96.59316006,304.810022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685868678,5.319938477,-4.985936652,4.985936652,1,0.617200926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087904878,84.95691234,-0.087904878,95.04308766,0.481203351,0,0,0,0,6,20,0% -2018-06-01 05:00:00,105.6413704,315.5544408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84378974,5.507463962,-1.478045738,1.478045738,1,0.782914397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117059157,96.72240838,0.117059157,83.27759162,0,0.622865539,0,0,0,6,21,0% -2018-06-01 06:00:00,112.970294,328.0620641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971703587,5.72576317,-0.488016139,0.488016139,1,0.613609364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301580846,107.5525772,0.301580846,72.44742282,0,0.884206978,0,0,0,6,22,0% -2018-06-01 07:00:00,117.9379692,342.4332147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058405876,5.976587064,0.080054916,-0.080054916,1,0.516463493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453088573,116.9420169,0.453088573,63.05798305,0,0.939646301,0,0,0,6,23,0% -2018-06-02 08:00:00,119.9383808,358.1429609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093319644,6.25077386,0.540683696,-0.540683696,1,0.437691332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561260903,124.1430425,0.561260903,55.85695748,0,0.960914871,0,0,0,6,0,0% -2018-06-02 09:00:00,118.6744001,14.00813321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071259019,0.244488047,1.022686196,-1.022686196,1,0.35526405,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618729285,128.2233994,0.618729285,51.77660062,0,0.969189214,0,0,0,6,1,0% -2018-06-02 10:00:00,114.3378008,28.75706238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995571083,0.501905422,1.662395443,-1.662395443,1,0.245867326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621579627,128.4315792,0.621579627,51.56842081,0,0.969559783,0,0,0,6,2,0% -2018-06-02 11:00:00,107.4896363,41.69632541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876048064,0.727738164,2.79418319,-2.79418319,1,0.052320222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569618633,124.7236362,0.569618633,55.27636381,0,0.962221973,0,0,0,6,3,0% -2018-06-02 12:00:00,98.78258841,52.80906541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724081411,0.921692066,6.183453441,-6.183453441,1,0,#DIV/0!,0,0,0.345240839,1,0.160333755,0,0.944056147,0.98281811,0.724496596,1,0,0,0.050755842,0.312029739,0.866169525,0.590666121,0.961238037,0.922476074,0,0,0,0,0,0,-0.466386806,117.8000107,0.466386806,62.19998929,0,0.94279285,0,0,0,6,4,0% -2018-06-02 13:00:00,88.43607272,62.46057503,1.861529544,10.72062437,1.568939145,1.535662837,0,1.535662837,1.521629841,0.014032996,3.857330053,3.358671359,0.498658694,0.047309304,0.45134939,1.543500647,1.090142687,-36.3100896,36.3100896,0,0,0.842822586,0.011827326,0.38040746,1,0.825770153,0,0.027533595,0.961238037,1,0.649384007,0.924887411,1.462648481,0.032992795,0.115824807,0.226769056,0.724496596,0.448993192,0.973976634,0.935214671,0.008568857,0.367938899,1.471217339,0.400931695,0,0.585180799,-0.313290648,108.2576526,0.313290648,71.74234742,0,0.89040379,1.471217339,0.921978896,2.074634086,6,5,41% -2018-06-02 14:00:00,77.81786401,71.14546826,136.848674,422.5222679,47.68800741,47.28166115,0,47.28166115,46.25003804,1.03162311,92.06365266,57.44513789,34.61851477,1.437969374,33.1805454,1.358177944,1.241722669,-4.631249191,4.631249191,0.677856054,0.677856054,0.348472557,0.815100253,26.21642602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.45729577,1.041803916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.590537358,25.20022588,45.04783313,26.24202979,0,57.44513789,-0.135957658,97.81400023,0.135957658,82.18599977,0,0.682238442,45.04783313,65.43331118,87.87262663,6,6,95% -2018-06-02 15:00:00,66.40690278,79.40586483,343.2937446,666.7266708,76.44397548,121.3202962,44.59349535,76.72680083,74.13890757,2.587893254,85.54061079,0,85.54061079,2.305067909,83.23554288,1.1590191,1.385893787,-2.258877941,2.258877941,0.916444568,0.916444568,0.222678032,2.419810952,77.82943827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26513797,1.670013853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753144798,74.81261645,73.01828277,76.4826303,44.59349535,0,0.066884223,86.16495333,-0.066884223,93.83504667,0,0,73.01828277,76.4826303,123.0746346,6,7,69% -2018-06-02 16:00:00,54.65995677,87.89553087,547.5643215,783.1311586,94.57943312,313.6013361,217.7460507,95.8552854,91.72751425,4.127771148,135.6152281,0,135.6152281,2.85191887,132.7633092,0.953996215,1.534066411,-1.342029076,1.342029076,0.759654178,0.759654178,0.172727531,3.307040294,106.3657837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.17197573,2.066205513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395939436,102.2428372,90.56791516,104.3090427,217.7460507,0,0.278045444,73.85641472,-0.278045444,106.1435853,0.870173281,0,280.0447105,104.3090427,348.3128927,6,8,24% -2018-06-02 17:00:00,42.84824305,97.62648265,727.4679707,845.5993173,107.5104767,518.064649,408.312049,109.7526,104.2686391,5.483960847,179.6248694,0,179.6248694,3.241837543,176.3830318,0.74784292,1.703903559,-0.821821907,0.821821907,0.670693513,0.670693513,0.147787231,3.944946498,126.88304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.226982,2.348700264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858100309,121.9648043,103.0850823,124.3135046,408.312049,0,0.482867051,61.12717831,-0.482867051,118.8728217,0.946451829,0,489.5327679,124.3135046,570.8934703,6,9,17% -2018-06-02 18:00:00,31.37063952,110.6930327,868.5558408,880.6627793,116.6303987,707.353031,587.6919283,119.6611027,113.1135619,6.547540808,214.1082562,0,214.1082562,3.516836842,210.5914194,0.547520948,1.93195788,-0.462282439,0.462282439,0.609208643,0.609208643,0.134280829,4.332405809,139.3450634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7290582,2.54793632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.138813261,133.9437752,111.8678714,136.4917115,587.6919283,0,0.667329132,48.13874088,-0.667329132,131.8612591,0.975074453,0,684.9112572,136.4917115,774.2423525,6,10,13% -2018-06-02 19:00:00,21.22489248,132.5350331,960.4049104,899.1419638,122.2548001,862.0642992,736.2559945,125.8083046,118.5683668,7.239937891,236.547723,0,236.547723,3.686433294,232.8612897,0.370444257,2.313172702,-0.179120642,0.179120642,0.560785123,0.560785123,0.127295059,4.46483355,143.6043947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9724241,2.670808372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234756708,138.0380065,117.2071808,140.7088148,736.2559945,0,0.818842879,35.03087128,-0.818842879,144.9691287,0.988938225,0,845.3188769,140.7088148,937.409982,6,11,11% -2018-06-02 20:00:00,15.66400212,173.9653496,996.4271274,905.6531683,124.4084962,967.7813097,839.6127001,128.1686096,120.657121,7.511488579,245.3466685,0,245.3466685,3.751375179,241.5952933,0.273388411,3.036268135,0.067672646,-0.067672646,0.518580986,0.518580986,0.124854586,4.346810986,139.8083834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9802141,2.717858547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149249762,134.389136,119.1294639,137.1069945,839.6127001,0,0.927079736,22.01591939,-0.927079736,157.9840806,0.996067206,0,955.4401406,137.1069945,1045.173926,6,12,9% -2018-06-02 21:00:00,19.29761358,219.8842959,974.072356,901.6571406,123.075077,1014.539362,887.8324836,126.7068782,119.3639094,7.34296887,239.8862878,0,239.8862878,3.711167671,236.1751201,0.336806895,3.837704937,0.302883124,-0.302883124,0.478357625,0.478357625,0.126351062,3.996540728,128.5424878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7371299,2.688728344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.895480153,123.5599287,117.6326101,126.248657,887.8324836,0,0.984667501,10.04617105,-0.984667501,169.953829,0.999221438,0,1004.773861,126.248657,1087.401082,6,13,8% -2018-06-02 22:00:00,28.79683982,245.334583,894.9351112,886.2701039,118.2671506,996.8083069,875.3609483,121.4473586,114.7009597,6.746398891,220.5535699,0,220.5535699,3.56619095,216.9873789,0.502599669,4.281896242,0.547861544,-0.547861544,0.436463848,0.436463848,0.132151649,3.446978599,110.8666807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2549253,2.583693204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497324261,106.5692705,112.7522496,109.1529637,875.3609483,0,0.987690936,8.999049404,-0.987690936,171.0009506,0.999376877,0,987.5677401,109.1529637,1059.006172,6,14,7% -2018-06-02 23:00:00,40.09023463,259.7682924,764.6859094,855.7845235,109.9840716,913.4118161,800.9796446,112.4321715,106.6676461,5.76452539,188.7233775,0,188.7233775,3.316425558,185.406952,0.699706592,4.533811994,0.829582662,-0.829582662,0.388286699,0.388286699,0.143829081,2.745463942,88.30355783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5329987,2.402739027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.98907928,84.88073858,104.522078,87.2834776,800.9796446,0,0.935959488,20.61628612,-0.935959488,159.3837139,0.996578884,0,902.7614786,87.2834776,959.8867691,6,15,6% -2018-06-02 00:00:00,51.8647077,270.029819,592.8693073,801.3481843,98.02038877,767.0773729,667.5433612,99.53401166,95.06471239,4.469299267,146.7037039,0,146.7037039,2.955676378,143.7480276,0.905209915,4.71290942,1.196688454,-1.196688454,0.325507911,0.325507911,0.165332203,1.953187353,62.82121932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37981751,2.141377474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.415077589,60.38614553,92.7948951,62.52752301,667.5433612,0,0.833025362,33.58921821,-0.833025362,146.4107818,0.989977818,0,753.6480152,62.52752301,794.5710284,6,16,5% -2018-06-02 01:00:00,63.64612523,278.7012894,392.9000557,701.7686482,81.37516027,563.2696356,481.38639,81.88324553,78.92139895,2.961846581,97.71692867,0,97.71692867,2.453761325,95.26316734,1.110834441,4.864255129,1.77055522,-1.77055522,0.227370915,0.227370915,0.207114148,1.147399608,36.90431556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.86225059,1.777741727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83128711,35.47383184,76.6935377,37.25157357,481.38639,0,0.685961665,46.68871638,-0.685961665,133.3112836,0.977109629,0,547.0608148,37.25157357,571.4412247,6,17,4% -2018-06-02 02:00:00,75.15264821,286.9532751,184.1673536,499.6613297,56.13178775,308.1479756,252.320437,55.82753855,54.43920724,1.388331304,46.34608761,0,46.34608761,1.692580505,44.6535071,1.311661153,5.00827945,3.014480979,-3.014480979,0.014647081,0.014647081,0.304786851,0.437282287,14.06450149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3290367,1.226268814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316809528,13.5193338,52.64584623,14.74560262,252.320437,0,0.504982919,59.66978147,-0.504982919,120.3302185,0.95098675,0,292.5992386,14.74560262,302.2499406,6,18,3% -2018-06-02 03:00:00,86.04783779,295.4915377,16.31759022,81.64169706,10.69055411,35.30684264,24.81563929,10.49120334,10.36819446,0.123008888,4.278748318,0,4.278748318,0.32235965,3.956388668,1.501818084,5.157300244,10.14671303,-10.14671303,0,0,0.655155201,0.080589913,2.592048614,0.546492754,1,0.098236848,0,0.951423193,0.990185156,0.724496596,1,10.04680141,0.233548469,0.074225396,0.312029739,0.811168309,0.535664905,0.961238037,0.922476074,0.055302855,2.491575721,10.10210426,2.72512419,11.25407223,0,0.303957906,72.30451996,-0.303957906,107.69548,0.885503539,0,20.06762505,2.72512419,21.85116433,6,19,9% -2018-06-02 04:00:00,96.47675133,304.8726455,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683836962,5.321031464,-5.068468172,5.068468172,1,0.603087205,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089543564,84.8626508,-0.089543564,95.1373492,0.491612575,0,0,0,0,6,20,0% -2018-06-02 05:00:00,105.5177959,315.6018713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841632959,5.508291779,-1.487704702,1.487704702,1,0.784566177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115273324,96.61939018,0.115273324,83.38060982,0,0.616248301,0,0,0,6,21,0% -2018-06-02 06:00:00,112.8409408,328.0878016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969445948,5.726212374,-0.490055437,0.490055437,1,0.613958105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299703013,107.4397663,0.299703013,72.56023374,0,0.883168177,0,0,0,6,22,0% -2018-06-02 07:00:00,117.8067521,342.4291572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056115705,5.976516248,0.080365624,-0.080365624,1,0.516410358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451180317,116.8194371,0.451180317,63.18056291,0,0.939179563,0,0,0,6,23,0% -2018-06-03 08:00:00,119.8117891,358.1039885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091110202,6.250093664,0.542328378,-0.542328378,1,0.437410075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559385976,124.0133445,0.559385976,55.98665551,0,0.960616279,0,0,0,6,0,0% -2018-06-03 09:00:00,118.5594599,13.93705601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069252934,0.243247515,1.025687368,-1.025687368,1,0.354750819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616949214,128.0936906,0.616949214,51.90630941,0,0.968956052,0,0,0,6,1,0% -2018-06-03 10:00:00,114.2390735,28.66336184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993847967,0.500270039,1.667656477,-1.667656477,1,0.244967636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619949477,128.3124451,0.619949477,51.68755486,0,0.969348267,0,0,0,6,2,0% -2018-06-03 11:00:00,107.4081033,41.58978124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874625045,0.725878618,2.805300854,-2.805300854,1,0.05041899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568183214,124.6236327,0.568183214,55.3763673,0,0.962000216,0,0,0,6,3,0% -2018-06-03 12:00:00,98.71671165,52.69560084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722931645,0.919711736,6.227092646,-6.227092646,1,0,#DIV/0!,0,0,0.348424631,1,0.159229103,0,0.944194868,0.982956831,0.724496596,1,0,0,0.051157364,0.312029739,0.865191762,0.589688358,0.961238037,0.922476074,0,0,0,0,0,0,-0.465177593,117.7217162,0.465177593,62.2782838,0,0.942514169,0,0,0,6,4,0% -2018-06-03 13:00:00,88.38786703,62.34197046,1.998396158,11.4546666,1.676138405,1.640661402,0,1.640661402,1.625596648,0.015064754,4.113500755,3.578424712,0.535076042,0.050541757,0.484534285,1.542659298,1.088072647,-35.21407849,35.21407849,0,0,0.838741807,0.012635439,0.406399162,1,0.819888482,0,0.028390103,0.961238037,1,0.647142769,0.922646174,1.56258533,0.035215682,0.115824807,0.224229441,0.724496596,0.448993192,0.974332413,0.93557045,0.009154333,0.39313061,1.571739663,0.428346292,0,0.644515507,-0.312398853,108.2038562,0.312398853,71.79614385,0,0.889948196,1.571739663,1.001931705,2.227483925,6,5,42% -2018-06-03 14:00:00,77.77535796,71.02035156,137.5902117,423.8849416,47.83463179,47.42945429,0,47.42945429,46.39224115,1.037213134,92.12742556,57.32469513,34.80273043,1.44239064,33.3603398,1.357436073,1.239538971,-4.614839827,4.614839827,0.680662221,0.680662221,0.347660137,0.821144251,26.41082179,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.59398681,1.045007108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.594916215,25.38708649,45.18890303,26.43209359,0,57.32469513,-0.135236451,97.77229292,0.135236451,82.22770708,0,0.680277195,45.18890303,65.4287764,88.0107286,6,6,95% -2018-06-03 15:00:00,66.37123253,79.27023994,343.9389423,667.2200293,76.51109892,121.7567537,44.95998971,76.79676402,74.20400699,2.592757028,85.69907048,0,85.69907048,2.307091928,83.39197856,1.158396536,1.383526686,-2.255927198,2.255927198,0.915939961,0.915939961,0.22245547,2.423293331,77.94144354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32771401,1.671480248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755667769,74.92028018,73.08338178,76.59176042,44.95998971,0,0.067384053,86.13625043,-0.067384053,93.86374957,0,0,73.08338178,76.59176042,123.2111571,6,7,69% -2018-06-03 16:00:00,54.62775102,87.74229333,548.0948766,783.356349,94.62061821,313.949479,218.0502508,95.89922815,91.76745746,4.131770696,135.7451092,0,135.7451092,2.853160752,132.8919485,0.953434118,1.531391912,-1.341584425,1.341584425,0.759578138,0.759578138,0.172635473,3.309893248,106.4575445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21037065,2.067105252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.398006391,102.3310411,90.60837704,104.3981464,218.0502508,0,0.278353844,73.83801849,-0.278353844,106.1619815,0.870372518,0,280.393323,104.3981464,348.7198218,6,8,24% -2018-06-03 17:00:00,42.81463214,97.44355926,727.9333836,845.7314155,107.541754,518.2993287,408.512886,109.7864427,104.2989734,5.487469326,179.7386572,0,179.7386572,3.242780671,176.4958766,0.747256299,1.700710944,-0.822222924,0.822222924,0.670762091,0.670762091,0.147735708,3.94769798,126.9715372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2561404,2.349383557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860093748,122.0498711,103.1162341,124.3992547,408.512886,0,0.483029102,61.11657497,-0.483029102,118.883425,0.946486568,0,489.7681937,124.3992547,571.1850179,6,9,17% -2018-06-03 18:00:00,31.32705133,110.4605119,869.0194182,880.7635757,116.6593239,707.5143633,587.821713,119.6926503,113.1416149,6.551035449,214.2215281,0,214.2215281,3.517709044,210.7038191,0.546760191,1.927899626,-0.463098272,0.463098272,0.609348158,0.609348158,0.134242482,4.335411265,139.4417292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7560238,2.548568227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140990703,134.036694,111.8970145,136.5852622,587.821713,0,0.667400116,48.13327972,-0.667400116,131.8667203,0.975082422,0,685.0716343,136.5852622,774.4639567,6,10,13% -2018-06-03 19:00:00,21.15365852,132.2396733,960.9321409,899.2400309,122.2865162,862.2165166,736.3734777,125.8430389,118.5991265,7.243912378,236.6765125,0,236.6765125,3.687389651,232.9891229,0.36920099,2.308017701,-0.180228571,0.180228571,0.56097459,0.56097459,0.127258222,4.468365218,143.7179853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0019915,2.67150125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.237315389,138.1471941,117.2393069,140.8186953,736.3734777,0,0.818884227,35.02674392,-0.818884227,144.9732561,0.988941308,0,845.469457,140.8186953,937.6324767,6,11,11% -2018-06-03 20:00:00,15.54564689,173.7831705,997.0794093,905.7676321,124.4472556,967.9978571,839.7867397,128.2111175,120.6947117,7.516405756,245.5059905,0,245.5059905,3.752543919,241.7534466,0.271322723,3.03308851,0.066276525,-0.066276525,0.518819736,0.518819736,0.12481178,4.35107217,139.9454377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0163477,2.718705295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152336976,134.5208778,119.1686847,137.2395831,839.7867397,0,0.927154725,22.00445494,-0.927154725,157.9955451,0.996071569,0,955.6563798,137.2395831,1045.476942,6,12,9% -2018-06-03 21:00:00,19.17464809,219.9906152,974.9021025,901.8080461,123.12475,1014.895117,888.1338087,126.7613084,119.4120845,7.349223849,240.0889673,0,240.0889673,3.712665496,236.3763018,0.334660742,3.839560559,0.301123873,-0.301123873,0.478658475,0.478658475,0.126294476,4.00165995,128.7071396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7834377,2.689813513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.899189011,123.7181982,117.6826267,126.4080117,888.1338087,0,0.984836865,9.99038995,-0.984836865,170.0096101,0.99923017,0,1005.132724,126.4080117,1087.864239,6,13,8% -2018-06-03 22:00:00,28.69045749,245.4811498,895.9814939,886.4872658,118.3316987,997.3749405,875.8570922,121.5178483,114.7635614,6.754286965,220.8092238,0,220.8092238,3.568137312,217.2410865,0.500742947,4.284454315,0.545566359,-0.545566359,0.436856347,0.436856347,0.132069356,3.452996603,111.0602403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3151004,2.585103336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.501684284,106.7553274,112.8167847,109.3404307,875.8570922,0,0.988008656,8.881912623,-0.988008656,171.1180874,0.999393156,0,988.1423682,109.3404307,1059.703493,6,14,7% -2018-06-03 23:00:00,39.99227004,259.8948058,765.9710674,856.1230466,110.0685274,914.2565023,801.7327337,112.5237686,106.7495552,5.774213453,189.0375256,0,189.0375256,3.318972211,185.7185534,0.697996788,4.53602007,0.826391489,-0.826391489,0.388832422,0.388832422,0.143698022,2.752313454,88.52386168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6117329,2.404584068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.994041728,85.09250302,104.6057746,87.49708709,801.7327337,0,0.936469047,20.53320938,-0.936469047,159.4667906,0.996607952,0,903.6189926,87.49708709,960.8840862,6,15,6% -2018-06-03 00:00:00,51.76894811,270.1361496,594.3938391,801.9275175,98.13366077,768.2677671,668.6124064,99.65536065,95.17456882,4.480791832,147.0767599,0,147.0767599,2.959091947,144.1176679,0.903538595,4.714765239,1.191770542,-1.191770542,0.326348924,0.326348924,0.165098718,1.96065046,63.0612585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48541569,2.143852042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.420484584,60.61688032,92.90590027,62.76073236,668.6124064,0,0.833756657,33.51340603,-0.833756657,146.486594,0.990030464,0,754.8525511,62.76073236,795.9281953,6,16,5% -2018-06-03 01:00:00,63.54898244,278.7922938,394.6317688,702.8946036,81.53962162,564.8942095,482.8384073,82.05580215,79.08090118,2.974900967,98.14176168,0,98.14176168,2.458720441,95.68304124,1.10913898,4.865843456,1.761498844,-1.761498844,0.228919646,0.228919646,0.206622041,1.154981034,37.14816026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01557021,1.78133459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836779827,35.70822464,76.85235003,37.48955923,482.8384073,0,0.686928602,46.61252985,-0.686928602,133.3874702,0.977212232,0,548.6879475,37.48955923,573.2241143,6,17,4% -2018-06-03 02:00:00,75.05201048,287.0323257,185.9794786,502.2676521,56.42349787,310.3620628,254.2379497,56.12411309,54.72212122,1.401991868,46.79425442,0,46.79425442,1.701376641,45.09287778,1.309904693,5.009659143,2.990135247,-2.990135247,0.018810447,0.018810447,0.303385612,0.44371534,14.2714106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.60098438,1.232641585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321470253,13.7182227,52.92245463,14.95086429,254.2379497,0,0.506180218,59.59027075,-0.506180218,120.4097293,0.951220952,0,294.7589192,14.95086429,304.5439608,6,18,3% -2018-06-03 03:00:00,85.94507925,295.5599922,17.2733155,85.91773344,11.1978445,37.22265212,26.2322504,10.99040172,10.86018817,0.130213549,4.525771654,0,4.525771654,0.337656327,4.188115326,1.500024609,5.158495001,9.87672392,-9.87672392,0,0,0.648274183,0.084414082,2.715047043,0.536793763,1,0.100904289,0,0.951124958,0.989886921,0.724496596,1,10.52438834,0.24463086,0.073177171,0.312029739,0.813531289,0.538027884,0.961238037,0.922476074,0.057901003,2.60980649,10.58228934,2.854437349,12.150942,0,0.305318231,72.22268953,-0.305318231,107.7773105,0.886236442,0,21.35089694,2.854437349,23.2190691,6,19,9% -2018-06-03 04:00:00,96.36398447,304.9296819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681868809,5.322026936,-5.151739548,5.151739548,1,0.588846961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091147891,84.77035217,-0.091147891,95.22964783,0.501440953,0,0,0,0,6,20,0% -2018-06-03 05:00:00,105.3985782,315.6440816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839552217,5.509028489,-1.497367158,1.497367158,1,0.786218555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113531712,96.51894371,0.113531712,83.48105629,0,0.609594417,0,0,0,6,21,0% -2018-06-03 06:00:00,112.7167397,328.1089838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96727823,5.726582073,-0.492176231,0.492176231,1,0.614320782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297879774,107.3303018,0.297879774,72.66969815,0,0.882147046,0,0,0,6,22,0% -2018-06-03 07:00:00,117.6814385,342.4217164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053928571,5.976386382,0.080546049,-0.080546049,1,0.516379504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449336823,116.7011432,0.449336823,63.29885685,0,0.9387249,0,0,0,6,23,0% -2018-06-04 08:00:00,119.6916242,358.0633142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08901293,6.249383764,0.543791351,-0.543791351,1,0.437159892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557585076,123.8889536,0.557585076,56.1110464,0,0.960327586,0,0,0,6,0,0% -2018-06-04 09:00:00,118.4511094,13.86611261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067361862,0.242009319,1.02842615,-1.02842615,1,0.35428246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615250896,127.9701531,0.615250896,52.02984692,0,0.968732341,0,0,0,6,1,0% -2018-06-04 10:00:00,114.1467681,28.57133718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992236934,0.498663906,1.672490592,-1.672490592,1,0.244140954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618406732,128.1998788,0.618406732,51.80012124,0,0.969147064,0,0,0,6,2,0% -2018-06-04 11:00:00,107.3326365,41.48599442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873307901,0.724067196,2.815532718,-2.815532718,1,0.048669238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566838392,124.5300502,0.566838392,55.46994984,0,0.961791437,0,0,0,6,3,0% -2018-06-04 12:00:00,98.65649454,52.58561384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721880658,0.917792101,6.267321414,-6.267321414,1,0,#DIV/0!,0,0,0.351332303,1,0.158224068,0,0.944320841,0.983082804,0.724496596,1,0,0,0.051523149,0.312029739,0.864302139,0.588798734,0.961238037,0.922476074,0,0,0,0,0,0,-0.464059488,117.6493707,0.464059488,62.35062927,0,0.942255193,0,0,0,6,4,0% -2018-06-04 13:00:00,88.34439658,62.22737493,2.127037505,12.14328218,1.77619732,1.738672924,0,1.738672924,1.722638417,0.016034507,4.352973428,3.783689656,0.569283772,0.053558903,0.515724869,1.541900596,1.086072577,-34.27969326,34.27969326,0,0,0.835056888,0.013389726,0.430659604,1,0.814551288,0,0.029163519,0.961238037,1,0.645123921,0.920627325,1.65586557,0.037288547,0.115824807,0.221942084,0.724496596,0.448993192,0.974651657,0.935889694,0.009700811,0.416647362,1.665566381,0.45393591,0,0.701680372,-0.311587065,108.1549005,0.311587065,71.84509954,0,0.889531208,1.665566381,1.078102498,2.371162904,6,5,42% -2018-06-04 14:00:00,77.73780733,70.89973473,138.2457404,425.0849377,47.96381053,47.55967946,0,47.55967946,46.51752468,1.042154786,92.18151481,57.21594864,34.96556617,1.446285855,33.51928032,1.356780691,1.23743381,-4.60043119,4.60043119,0.683126243,0.683126243,0.346946028,0.826495792,26.58294573,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7144141,1.047829179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.598793388,25.55253857,45.31320749,26.60036775,0,57.21594864,-0.134598861,97.73542464,0.134598861,82.26457536,0,0.678525833,45.31320749,65.42286694,88.13116544,6,6,94% -2018-06-04 15:00:00,66.34034384,79.13968176,344.4975735,667.6463269,76.56914706,122.1283108,45.27103784,76.85727299,74.26030477,2.596968226,85.83626745,0,85.83626745,2.308842294,83.52742516,1.157857427,1.381248016,-2.25345123,2.25345123,0.915516546,0.915516546,0.222263241,2.426332123,78.03918153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38182957,1.672748382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757869363,75.01422965,73.13969893,76.68697804,45.27103784,0,0.067806915,86.11196666,-0.067806915,93.88803334,0,0,73.13969893,76.68697804,123.3297923,6,7,69% -2018-06-04 16:00:00,54.60027502,87.5948685,548.5473613,783.5481686,94.65572535,314.2284789,218.2917912,95.93668771,91.80150599,4.135181717,135.855878,0,135.855878,2.854219362,133.0016586,0.952954572,1.528818863,-1.341321304,1.341321304,0.759533142,0.759533142,0.17255707,3.312393853,106.5379726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2430994,2.067872211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39981807,102.4083516,90.64291747,104.4762238,218.2917912,0,0.278593965,73.82369393,-0.278593965,106.1763061,0.87052734,0,280.6718898,104.4762238,349.0494887,6,8,24% -2018-06-04 17:00:00,42.78590482,97.2674535,728.330945,845.844157,107.5684643,518.4703697,408.6550251,109.8153446,104.3248783,5.490466312,179.835856,0,179.835856,3.243586085,176.5922699,0.746754913,1.697637319,-0.822703617,0.822703617,0.670844294,0.670844294,0.14769174,3.950159214,127.0506989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2810412,2.349967077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861876904,122.1259644,103.1429181,124.4759315,408.6550251,0,0.483132764,61.10979157,-0.483132764,118.8902084,0.946508778,0,489.9384866,124.4759315,571.4054942,6,9,17% -2018-06-04 18:00:00,31.28884835,110.2358883,869.4252492,880.8517485,116.6846412,707.6210559,587.9007924,119.7202635,113.1661687,6.554094776,214.32069,0,214.32069,3.518472452,210.8022175,0.546093423,1.923979205,-0.463945874,0.463945874,0.609493107,0.609493107,0.13420894,4.338172524,139.5305407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7796259,2.549121314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142991226,134.1220631,111.9226171,136.6711844,587.9007924,0,0.667423086,48.13151244,-0.667423086,131.8684876,0.975085001,0,685.1758617,136.6711844,774.6244185,6,10,13% -2018-06-04 19:00:00,21.08881429,131.9510031,961.4106118,899.3289553,122.3152939,862.3239711,736.4494153,125.8745558,118.6270365,7.247519293,236.7933911,0,236.7933911,3.688257407,233.1051337,0.368069245,2.302979455,-0.181339824,0.181339824,0.561164626,0.561164626,0.127224822,4.471685908,143.8247901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0288197,2.672129936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239721218,138.2498589,117.2685409,140.9219888,736.4494153,0,0.818887695,35.02639773,-0.818887695,144.9736023,0.988941566,0,845.5739792,140.9219888,937.8046025,6,11,11% -2018-06-04 20:00:00,15.43404231,173.5955581,997.6900714,905.8746845,124.4835346,968.178844,839.9279381,128.2509059,120.7298967,7.521009184,245.6551465,0,245.6551465,3.753637863,241.9015087,0.269374855,3.029814055,0.064898459,-0.064898459,0.519055399,0.519055399,0.124771748,4.355143392,140.0763822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0501689,2.719497854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155286562,134.6467466,119.2054555,137.3662445,839.9279381,0,0.927201027,21.99737329,-0.927201027,158.0026267,0.996074262,0,955.8360563,137.3662445,1045.739516,6,12,9% -2018-06-04 21:00:00,19.05643307,220.0838551,975.6949904,901.952059,123.1722032,1015.222701,888.4093927,126.8133078,119.4581069,7.355200973,240.282643,0,240.282643,3.714096385,236.5685466,0.332597501,3.841187903,0.299403357,-0.299403357,0.4789527,0.4789527,0.126240479,4.006598338,128.8659752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8276761,2.690850187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902766857,123.870877,117.730443,126.5617272,888.4093927,0,0.98498516,9.941293564,-0.98498516,170.0587064,0.999237814,0,1005.462702,126.5617272,1088.294822,6,13,8% -2018-06-04 22:00:00,28.58727143,245.6163722,896.9930717,886.6968321,118.3940731,997.9180447,876.3320771,121.5859676,114.824055,6.761912666,221.0563734,0,221.0563734,3.570018131,217.4863553,0.498942011,4.286814391,0.543335422,-0.543335422,0.43723786,0.43723786,0.131989953,3.458831985,111.2479263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3732492,2.586465983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505911999,106.9357383,112.8791612,109.5222043,876.3320771,0,0.988310824,8.769069808,-0.988310824,171.2309302,0.999408629,0,988.6930005,109.5222043,1060.373093,6,14,7% -2018-06-04 23:00:00,39.89682748,260.0121708,767.2206686,856.4513929,110.1505876,915.0786868,802.4659123,112.6127744,106.829141,5.783633475,189.3429803,0,189.3429803,3.321446628,186.0215337,0.696331001,4.538068476,0.823303588,-0.823303588,0.389360484,0.389360484,0.143570934,2.75896997,88.73795813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6882337,2.406376775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.998864351,85.29830066,104.6870981,87.70467744,802.4659123,0,0.936966089,20.4518623,-0.936966089,159.5481377,0.996636276,0,904.4537364,87.70467744,961.8546937,6,15,6% -2018-06-04 00:00:00,51.67551852,270.2347865,595.8794626,802.4900761,98.24389366,769.432005,669.6585362,99.77346888,95.28147779,4.49199109,147.4402904,0,147.4402904,2.962415875,144.4778746,0.901907941,4.716486777,1.18702947,-1.18702947,0.327159695,0.327159695,0.164872092,1.967906634,63.294642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.58818066,2.146260217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.425741658,60.84121742,93.01392231,62.98747763,669.6585362,0,0.834475785,33.43870727,-0.834475785,146.5612927,0.990082144,0,756.0308815,62.98747763,797.2549258,6,16,5% -2018-06-04 01:00:00,63.4542527,278.8765087,396.3194616,703.9861453,81.69944834,566.482245,484.258713,82.22353204,79.23590854,2.987623508,98.5557817,0,98.5557817,2.463539806,96.0922419,1.107485634,4.867313284,1.752801317,-1.752801317,0.230407011,0.230407011,0.206145436,1.162350143,37.38517614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.16456917,1.784826204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842118721,35.93605332,77.00668789,37.72087952,484.258713,0,0.687881027,46.53739299,-0.687881027,133.462607,0.977313012,0,550.2790293,37.72087952,574.9665905,6,17,4% -2018-06-04 02:00:00,74.95405157,287.1051477,187.7446722,504.7849503,56.7057361,312.5179594,256.1068118,56.41114757,54.99584893,1.415298643,47.23075657,0,47.23075657,1.709887165,45.52086941,1.308194988,5.010930127,2.966902181,-2.966902181,0.022783535,0.022783535,0.30203646,0.449977979,14.47283859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.86410186,1.23880743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326007514,13.91184296,53.19010937,15.15065039,256.1068118,0,0.507358256,59.51197587,-0.507358256,120.4880241,0.951450308,0,296.8630143,15.15065039,306.778812,6,18,3% -2018-06-04 03:00:00,85.84522946,295.6225825,18.22503262,90.13145489,11.69492836,39.11898315,27.63931204,11.47967112,11.34228312,0.137387994,4.771515399,0,4.771515399,0.35264524,4.41887016,1.498281901,5.159587408,9.62781385,-9.62781385,0,0,0.641695881,0.08816131,2.835570781,0.527477077,1,0.103494634,0,0.950833762,0.989595725,0.724496596,1,10.99237003,0.255490276,0.0721629,0.312029739,0.815826068,0.540322664,0.961238037,0.922476074,0.060447308,2.725658491,11.05281734,2.981148766,13.06020851,0,0.306655563,72.1422057,-0.306655563,107.8577943,0.886950618,0,22.63657735,2.981148766,24.58767959,6,19,9% -2018-06-04 04:00:00,96.25493309,304.9811501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679965504,5.322925226,-5.23558409,5.23558409,1,0.5745087,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092716649,84.68008669,-0.092716649,95.31991331,0.510722528,0,0,0,0,6,20,0% -2018-06-04 05:00:00,105.2837894,315.6811081,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837548775,5.509674723,-1.507016641,1.507016641,1,0.787868713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111835674,96.42114494,0.111835674,83.57885506,0,0.602915466,0,0,0,6,21,0% -2018-06-04 06:00:00,112.5977566,328.1256636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965201583,5.72687319,-0.494375328,0.494375328,1,0.61469685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296112541,107.2242622,0.296112541,72.77573781,0,0.881145281,0,0,0,6,22,0% -2018-06-04 07:00:00,117.5620834,342.4109562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051845431,5.976198581,0.080596051,-0.080596051,1,0.516370953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447559481,116.5872103,0.447559481,63.41278972,0,0.938283006,0,0,0,6,23,0% -2018-06-05 08:00:00,119.5779278,358.021004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087028552,6.248645311,0.545070786,-0.545070786,1,0.436941095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.555859489,123.7699347,0.555859489,56.23006534,0,0.96004921,0,0,0,6,0,0% -2018-06-05 09:00:00,118.349377,13.79536563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065586297,0.240774552,1.030898913,-1.030898913,1,0.353859593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613635437,127.8528355,0.613635437,52.14716453,0,0.968518395,0,0,0,6,1,0% -2018-06-05 10:00:00,114.0609006,28.48104933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990738263,0.497088085,1.676890587,-1.676890587,1,0.24338851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616952259,128.0939123,0.616952259,51.90608773,0,0.968956452,0,0,0,6,2,0% -2018-06-05 11:00:00,107.2632398,41.38502761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872096701,0.722304993,2.824859219,-2.824859219,1,0.047074312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565584746,124.442907,0.565584746,55.55709305,0,0.961595918,0,0,0,6,3,0% -2018-06-05 12:00:00,98.60192913,52.47917083,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720928312,0.91593432,6.304000644,-6.304000644,1,0,#DIV/0!,0,0,0.353960894,1,0.157318614,0,0.944434138,0.983196101,0.724496596,1,0,0,0.051853076,0.312029739,0.863500634,0.58799723,0.961238037,0.922476074,0,0,0,0,0,0,-0.463032757,117.5829796,0.463032757,62.41702038,0,0.942016279,0,0,0,6,4,0% -2018-06-05 13:00:00,88.30567182,62.1168601,2.245846721,12.77816085,1.868031062,1.828633175,0,1.828633175,1.811703033,0.016930141,4.573023916,3.972164348,0.600859568,0.056328029,0.544531539,1.541224721,1.08414373,-33.48689046,33.48689046,0,0,0.831771396,0.014082007,0.452925758,1,0.809768365,0,0.02985356,0.961238037,1,0.643326679,0.918830083,1.741477867,0.039189445,0.115824807,0.219906016,0.724496596,0.448993192,0.974934875,0.936172912,0.010202366,0.438233355,1.751680233,0.477422801,0,0.755631318,-0.310855717,108.1108075,0.310855717,71.8891925,0,0.889153674,1.751680233,1.149295163,2.503870932,6,5,43% -2018-06-05 14:00:00,77.70518184,70.78369696,138.8156224,426.1246447,48.07577917,47.67256785,0,47.67256785,46.62611705,1.046450797,92.22680293,57.11968601,35.10711691,1.449662123,33.65745479,1.356211269,1.235408569,-4.587978609,4.587978609,0.68525576,0.68525576,0.346328305,0.831154637,26.7327902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.81879722,1.050275273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.602168705,25.69657477,45.42096592,26.74685004,0,57.11968601,-0.134044549,97.70337445,0.134044549,82.29662555,0,0.676989682,45.42096592,65.41628812,88.23461817,6,6,94% -2018-06-05 15:00:00,66.31419496,79.01428166,344.9704269,668.0065397,76.6182318,122.4353727,45.5269305,76.90844221,74.30790942,2.600532794,85.9523963,0,85.9523963,2.31032238,83.64207392,1.157401043,1.379059371,-2.251443319,2.251443319,0.915173173,0.915173173,0.22210087,2.428932177,78.12280823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42758897,1.6738207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759753094,75.09461481,73.18734206,76.76843551,45.5269305,0,0.06815342,86.09206734,-0.06815342,93.90793266,0,0,73.18734206,76.76843551,123.4307477,6,7,69% -2018-06-05 16:00:00,54.57747629,87.45336955,548.922712,783.7071257,94.68483557,314.4391402,218.4713905,95.9677497,91.82973843,4.138011269,135.9477639,0,135.9477639,2.855097142,133.0926667,0.952556659,1.526349241,-1.341237108,1.341237108,0.759518744,0.759518744,0.172492108,3.314546457,106.6072077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2702375,2.068508161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401377625,102.4749031,90.67161512,104.5434112,218.4713905,0,0.278766625,73.81339316,-0.278766625,106.1866068,0.8706385,0,280.8812189,104.5434112,349.3027907,6,8,24% -2018-06-05 17:00:00,42.76199869,97.09832256,728.6616251,845.9378632,107.5906762,518.5787813,408.7394019,109.8393794,104.3464203,5.492959118,179.916703,0,179.916703,3.244255854,176.6724472,0.746337672,1.694685427,-0.823262378,0.823262378,0.670939848,0.670939848,0.147655197,3.952333986,127.1206471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3017482,2.350452322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.863452519,122.1932012,103.1652007,124.5436535,408.7394019,0,0.483178989,61.1067665,-0.483178989,118.8932335,0.946518679,0,490.0446796,124.5436535,571.5560099,6,9,17% -2018-06-05 18:00:00,31.25596256,110.0194225,869.774242,880.9275218,116.706409,707.6741968,587.930191,119.7440058,113.1872802,6.556725631,214.4059637,0,214.4059637,3.519128832,210.8868349,0.545519458,1.920201164,-0.46482398,0.46482398,0.609643272,0.609643272,0.134180116,4.340692569,139.6115941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.799919,2.549596859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14481699,134.1999746,111.944736,136.7495715,587.930191,0,0.66739905,48.13336178,-0.66739905,131.8666382,0.975082303,0,685.2250605,136.7495715,774.72492,6,10,13% -2018-06-05 19:00:00,21.03031269,131.6695289,961.8410818,899.4088993,122.3411805,862.3877186,736.4848118,125.9029068,118.6521425,7.250764358,236.8985441,0,236.8985441,3.689037982,233.2095061,0.367048199,2.298066804,-0.182453255,0.182453255,0.561355034,0.561355034,0.127194796,4.474797556,143.9248714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0529525,2.67269546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241975597,138.3460609,117.2949281,141.0187563,736.4848118,0,0.818854263,35.02973496,-0.818854263,144.970265,0.988939073,0,845.6335355,141.0187563,937.9274911,6,11,11% -2018-06-05 20:00:00,15.32923282,173.4028828,998.2596485,905.9744407,124.5173662,968.3251916,840.0371805,128.2880111,120.7627082,7.525302897,245.7942672,0,245.7942672,3.754658012,242.0396092,0.267545585,3.026451237,0.063539575,-0.063539575,0.519287782,0.519287782,0.124734448,4.359025347,140.2012392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0817086,2.720236949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158099025,134.766764,119.2398076,137.4870009,840.0371805,0,0.927219514,21.9945453,-0.927219514,158.0054547,0.996075337,0,955.9801251,137.4870009,1045.962617,6,12,9% -2018-06-05 21:00:00,18.94301547,220.1638042,976.4512715,902.0892511,123.2174535,1015.522808,888.6599133,126.8628948,119.5019927,7.360902139,240.4673766,0,240.4673766,3.715460848,236.7519157,0.33061799,3.842583277,0.297722747,-0.297722747,0.479240101,0.479240101,0.126189045,4.01135524,129.0189735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8698608,2.691838736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.906213216,124.0179448,117.7760741,126.7097835,888.6599133,0,0.985113072,9.898751618,-0.985113072,170.1012484,0.999244405,0,1005.76452,126.7097835,1088.69354,6,13,8% -2018-06-05 22:00:00,28.48731999,245.7401131,897.9697754,886.8988271,118.4542724,998.4380155,876.786301,121.6517145,114.882439,6.769275471,221.2950017,0,221.2950017,3.571833362,217.7231684,0.497197529,4.288974078,0.541169997,-0.541169997,0.43760817,0.43760817,0.131913429,3.464482725,111.4296735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4293702,2.587781112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51000594,107.1104406,112.9393761,109.6982217,876.786301,0,0.988597881,8.660519404,-0.988597881,171.3394806,0.999423319,0,989.2200508,109.6982217,1061.015343,6,14,7% -2018-06-05 23:00:00,39.80395262,260.1203146,768.4343064,856.769527,110.2302307,915.8784136,803.1792487,112.6991649,106.9063826,5.792782389,189.6396424,0,189.6396424,3.323848162,186.3157942,0.694710029,4.539955941,0.820320332,-0.820320332,0.389870651,0.389870651,0.143447826,2.765430169,88.94574034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7624813,2.408116679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003544744,85.49802883,104.766026,87.90614551,803.1792487,0,0.937450765,20.37223978,-0.937450765,159.6277602,0.996663866,0,905.2657608,87.90614551,962.7985749,6,15,6% -2018-06-05 00:00:00,51.5844734,270.3256885,597.3254421,803.0357472,98.35104523,770.5697572,670.6814674,99.88828984,95.38539834,4.502891494,147.7941159,0,147.7941159,2.965646891,144.828469,0.900318904,4.718073318,1.182466557,-1.182466557,0.327939999,0.327939999,0.164652363,1.974951395,63.5212257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68807305,2.148601077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430845562,61.05901829,93.11891861,63.20761937,670.6814674,0,0.83518258,33.36514551,-0.83518258,146.6348545,0.990132851,0,757.182672,63.20761937,798.5507947,6,16,5% -2018-06-05 01:00:00,63.36199819,278.9539121,397.9620941,705.0430968,81.85458108,568.0330698,485.6467,82.38636982,79.38636345,3.000006365,98.95873478,0,98.95873478,2.468217631,96.49051715,1.105875489,4.868664228,1.744462506,-1.744462506,0.231833031,0.231833031,0.205684366,1.169501384,37.61518464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30919216,1.788215271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847299771,36.15714624,77.15649193,37.94536151,485.6467,0,0.68881846,46.46334766,-0.68881846,133.5366523,0.977411934,0,551.8333721,37.94536151,576.6678523,6,17,5% -2018-06-05 02:00:00,74.85883998,287.171734,189.461554,507.2132411,56.97846191,314.614767,257.9261747,56.68859228,55.26035106,1.428241223,47.65525812,0,47.65525812,1.718110855,45.93714727,1.306533232,5.012092277,2.944763551,-2.944763551,0.026569464,0.026569464,0.300738914,0.456062996,14.66855366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.11835137,1.244765466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330416088,14.09997172,53.44876746,15.34473719,257.9261747,0,0.508516249,59.43495173,-0.508516249,120.5650483,0.951674725,0,298.9105888,15.34473719,308.9534124,6,18,3% -2018-06-05 03:00:00,85.74837363,295.6793153,19.16946292,94.27007761,12.18058126,40.99002805,29.03222874,11.95779931,11.8132918,0.144507509,5.015147688,0,5.015147688,0.367289467,4.647858222,1.496591448,5.160577583,9.398179394,-9.398179394,0,0,0.635415886,0.091822367,2.953322949,0.518543222,1,0.106004736,0,0.950550102,0.989312066,0.724496596,1,11.44958786,0.266099968,0.07118346,0.312029739,0.818049831,0.542546427,0.961238037,0.922476074,0.062935679,2.838846354,11.51252354,3.104946322,13.97776332,0,0.307968652,72.0631454,-0.307968652,107.9368546,0.887645813,0,23.91982663,3.104946322,25.9519519,6,19,8% -2018-06-05 04:00:00,96.14967125,305.0270723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678128338,5.323726719,-5.319816013,5.319816013,1,0.560104193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0942486,84.59192627,-0.0942486,95.40807373,0.519488142,0,0,0,0,6,20,0% -2018-06-05 05:00:00,105.1735016,315.7129896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835623888,5.510231161,-1.516635795,1.516635795,1,0.789513686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.110186574,96.32607083,0.110186574,83.67392917,0,0.596224205,0,0,0,6,21,0% -2018-06-05 06:00:00,112.4840567,328.1378963,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963217146,5.72708669,-0.496649194,0.496649194,1,0.615085704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294402728,107.1217258,0.294402728,72.8782742,0,0.880164617,0,0,0,6,22,0% -2018-06-05 07:00:00,117.4487405,342.3969429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049867225,5.975954003,0.080515767,-0.080515767,1,0.516384683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445849669,116.4777132,0.445849669,63.52228682,0,0.937854576,0,0,0,6,23,0% -2018-06-06 08:00:00,119.4707394,357.9771262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085157763,6.2478795,0.546165171,-0.546165171,1,0.436753945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554210475,123.6563515,0.554210475,56.34364855,0,0.959781568,0,0,0,6,0,0% -2018-06-06 09:00:00,118.2542886,13.72488037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063926691,0.239544352,1.033102485,-1.033102485,1,0.35348276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612103904,127.7417849,0.612103904,52.25821509,0,0.968314522,0,0,0,6,1,0% -2018-06-06 10:00:00,113.9814839,28.39256178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989352181,0.495543686,1.680850075,-1.680850075,1,0.242711398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615586872,127.9945758,0.615586872,52.00542419,0,0.968776695,0,0,0,6,2,0% -2018-06-06 11:00:00,107.1999141,41.28694546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870991459,0.720593136,2.833262912,-2.833262912,1,0.045637196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564422795,124.3622187,0.564422795,55.63778125,0,0.961413925,0,0,0,6,3,0% -2018-06-06 12:00:00,98.55300404,52.37633954,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720074408,0.914139575,6.337004194,-6.337004194,1,0,#DIV/0!,0,0,0.356307927,1,0.156512636,0,0.944534831,0.983296794,0.724496596,1,0,0,0.052147065,0.312029739,0.862787164,0.58728376,0.961238037,0.922476074,0,0,0,0,0,0,-0.462097601,117.5225449,0.462097601,62.47745509,0,0.94179775,0,0,0,6,4,0% -2018-06-06 13:00:00,88.27169591,62.01049816,2.353382493,13.35189745,1.950688964,1.909609286,0,1.909609286,1.891868495,0.017740791,4.77125214,4.141826839,0.629425301,0.05882047,0.570604832,1.54063173,1.082287364,-32.81970525,32.81970525,0,0,0.828887344,0.014705117,0.472967124,1,0.805547869,0,0.030460076,0.961238037,1,0.641750078,0.917253482,1.818535958,0.040899184,0.115824807,0.218120073,0.724496596,0.448993192,0.975182559,0.936420596,0.010653807,0.457664373,1.829189765,0.498563557,0,0.805387057,-0.310205112,108.0715919,0.310205112,71.9284081,0,0.888816325,1.829189765,1.214404721,2.623993367,6,5,43% -2018-06-06 14:00:00,77.67744768,70.67231721,139.3003063,427.0063611,48.17076644,47.76834465,0,47.76834465,46.7182401,1.050104549,92.26406527,57.03656691,35.22749836,1.452526339,33.77497202,1.355727217,1.233464625,-4.577441288,4.577441288,0.687057748,0.687057748,0.345805172,0.835121683,26.86038402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9073494,1.052350388,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.605042816,25.81922281,45.51239222,26.8715732,0,57.03656691,-0.133573108,97.67611775,0.133573108,82.32388225,0,0.675673157,45.51239222,65.4096504,88.32170021,6,6,94% -2018-06-06 15:00:00,66.29274078,78.8941299,345.358346,668.3016228,76.65846568,122.6784171,45.72802985,76.9503872,74.3469301,2.603457092,86.04766498,0,86.04766498,2.31153558,83.7361294,1.157026597,1.376962327,-2.249896941,2.249896941,0.914908727,0.914908727,0.221967897,2.43109849,78.19248427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.46509714,1.674699659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.76132258,75.16159008,73.22641972,76.83628974,45.72802985,0,0.068424239,86.07651428,-0.068424239,93.92348572,0,0,73.22641972,76.83628974,123.5142346,6,7,69% -2018-06-06 16:00:00,54.5592992,87.31790741,549.2219041,783.8337246,94.70803137,314.5823221,218.5898206,95.9925015,91.85223479,4.140266706,136.0210059,0,136.0210059,2.855796581,133.1652093,0.952239409,1.52398498,-1.341329186,1.341329186,0.75953449,0.75953449,0.172440375,3.316355505,106.6653929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29186185,2.069014902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402688274,102.5308329,90.69455012,104.5998478,218.5898206,0,0.278872692,73.80706505,-0.278872692,106.192935,0.870706719,0,281.0221756,104.5998478,349.480684,6,8,24% -2018-06-06 17:00:00,42.74284828,96.93631958,728.926417,846.0128532,107.608459,518.6256127,408.7669905,109.8586221,104.3636669,5.494955231,179.9814411,0,179.9814411,3.244792071,176.736649,0.746003434,1.691857941,-0.823897536,0.823897536,0.671048466,0.671048466,0.147625956,3.954226112,127.1815043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3183263,2.35084081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864823358,122.2516995,103.1831497,124.6025404,408.7669905,0,0.483168771,61.10743522,-0.483168771,118.8925648,0.946516491,0,490.087847,124.6025404,571.6377176,6,9,17% -2018-06-06 18:00:00,31.22832264,109.8113681,870.067311,880.9911169,116.7246861,707.6748975,587.9109564,119.763941,113.2050061,6.558934908,214.4775728,0,214.4775728,3.519679954,210.9578928,0.54503705,1.91656993,-0.46573126,0.46573126,0.609798426,0.609798426,0.134155926,4.342974346,139.6849839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8169579,2.549996145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14647013,134.2705197,111.963428,136.8205158,587.9109564,0,0.66732904,48.13874796,-0.66732904,131.861252,0.975074443,0,685.2203764,136.8205158,774.7666676,6,10,13% -2018-06-06 19:00:00,20.97810192,131.3957522,962.2243005,899.4800209,122.3642222,862.4088207,736.4806781,125.9281426,118.6744894,7.253653222,236.9921547,0,236.9921547,3.689732775,233.3024219,0.366136949,2.2932885,-0.183567665,0.183567665,0.561545609,0.561545609,0.127168086,4.477702001,144.0182884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0744332,2.673198835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.244079857,138.4358568,117.3185131,141.1090556,736.4806781,0,0.818784921,35.03665596,-0.818784921,144.963344,0.988933902,0,845.649224,141.1090556,938.0022788,6,11,11% -2018-06-06 20:00:00,15.23125978,173.2055515,998.7886518,906.0670097,124.5487824,968.4378097,840.1153419,128.3224678,120.793177,7.529290747,245.9234775,0,245.9234775,3.755605324,242.1678722,0.265835632,3.023007157,0.062201044,-0.062201044,0.519516685,0.519516685,0.124699837,4.36271859,140.3200266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1109964,2.720923273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160774768,134.8809469,119.2717711,137.6018702,840.1153419,0,0.927211048,21.99584037,-0.927211048,158.0041596,0.996074844,0,956.0895296,137.6018702,1046.147202,6,12,9% -2018-06-06 21:00:00,18.83444535,220.2302754,977.1711625,902.2196862,123.2605156,1015.796108,888.8860227,126.9100853,119.5437563,7.366328982,240.643221,0,240.643221,3.716759329,236.9264616,0.328723084,3.843743419,0.296083255,-0.296083255,0.479520471,0.479520471,0.126140149,4.015929829,129.166108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9100056,2.692779481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90952749,124.159376,117.8195331,126.8521555,888.8860227,0,0.985221267,9.862625466,-0.985221267,170.1373745,0.999249979,0,1006.038873,126.8521555,1089.061071,6,13,8% -2018-06-06 22:00:00,28.39064557,245.8522468,898.9114917,887.0932647,118.5122923,998.9352074,877.2201235,121.7150839,114.9387094,6.776374526,221.5250813,0,221.5250813,3.573582875,217.9514984,0.495510242,4.29093118,0.539071386,-0.539071386,0.437967053,0.437967053,0.131839779,3.469946611,111.6054109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4834594,2.589048628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513964508,107.2793661,112.9974239,109.8684147,877.2201235,0,0.988870233,8.556266204,-0.988870233,171.4437338,0.999437248,0,989.7238903,109.8684147,1061.63057,6,14,7% -2018-06-06 23:00:00,39.71369482,260.2191711,769.611526,857.0773995,110.307432,916.6556746,803.8727619,112.7829127,106.9812559,5.801656769,189.9274008,0,189.9274008,3.326176066,186.6012247,0.693134733,4.541681313,0.817443138,-0.817443138,0.39036268,0.39036268,0.143328716,2.77169055,89.14709572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8344524,2.409803237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008080368,85.69157928,104.8425328,88.10138252,803.8727619,0,0.937923182,20.29434331,-0.937923182,159.7056567,0.99669073,0,906.0550629,88.10138252,963.7156557,6,15,6% -2018-06-06 00:00:00,51.49587041,270.4088196,598.7309932,803.5643974,98.45506953,771.6806346,671.6808616,99.99977305,95.48628592,4.513487132,148.1380448,0,148.1380448,2.968783607,145.1692612,0.89877249,4.719524229,1.178083187,-1.178083187,0.328689599,0.328689599,0.164439574,1.981780105,63.74086051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78505002,2.150873617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43579294,61.27013962,93.22084296,63.42101324,671.6808616,0,0.83587683,33.29274953,-0.83587683,146.7072505,0.990182575,0,758.3075277,63.42101324,799.8153125,6,16,5% -2018-06-06 01:00:00,63.27228364,279.024486,399.5585829,706.0652481,82.00495592,569.5459478,487.0017025,82.5442453,79.53220393,3.012041372,99.35035635,0,99.35035635,2.472751987,96.87760436,1.104309675,4.869895974,1.736482452,-1.736482452,0.233197701,0.233197701,0.20523888,1.1764291,37.83800382,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.44937957,1.791500397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.852318879,36.37132851,77.30169845,38.16282891,487.0017025,0,0.689740366,46.39043991,-0.689740366,133.6095601,0.977508955,0,553.3502237,38.16282891,578.327032,6,17,5% -2018-06-06 02:00:00,74.76644613,287.2320808,191.1287155,509.5524711,57.24162693,316.6515215,259.6951318,56.95638967,55.51558068,1.44080899,48.06741613,0,48.06741613,1.726046251,46.34136988,1.304920655,5.013145528,2.923702509,-2.923702509,0.030171114,0.030171114,0.299492553,0.461963191,14.8583242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.36368779,1.250514633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334690759,14.28238638,53.69837855,15.53290101,259.6951318,0,0.509653366,59.35925664,-0.509653366,120.6407434,0.951894104,0,300.9006434,15.53290101,311.0666165,6,18,3% -2018-06-06 03:00:00,85.65459717,295.7302009,20.10339359,98.32161121,12.65367311,42.83023642,30.40657038,12.42366605,12.27211818,0.151547873,5.255855456,0,5.255855456,0.381554931,4.874300525,1.49495474,5.161465703,9.186240696,-9.186240696,0,0,0.629429706,0.095388733,3.068029544,0.509992716,1,0.108431493,0,0.950274475,0.989036438,0.724496596,1,11.8949729,0.276435249,0.070239706,0.312029739,0.820199807,0.544696403,0.961238037,0.922476074,0.065360468,2.949106696,11.96033337,3.225541945,14.89944096,0,0.309256226,71.98558708,-0.309256226,108.0144129,0.888321767,0,25.1958311,3.225541945,27.30688379,6,19,8% -2018-06-06 04:00:00,96.0482737,305.0674737,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676358617,5.324431856,-5.404229545,5.404229545,1,0.545668629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095742473,84.50594484,-0.095742473,95.49405516,0.527765733,0,0,0,0,6,20,0% -2018-06-06 05:00:00,105.0677866,315.7397681,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833778814,5.510698533,-1.526206351,1.526206351,1,0.791150347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108585801,96.2337996,0.108585801,83.7662004,0,0.589534639,0,0,0,6,21,0% -2018-06-06 06:00:00,112.3757046,328.1457398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961326044,5.727223585,-0.49899394,0.49899394,1,0.615486679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292751756,107.0227717,0.292751756,72.97722831,0,0.879206832,0,0,0,6,22,0% -2018-06-06 07:00:00,117.3414624,342.3797454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047994869,5.975653849,0.080305635,-0.080305635,1,0.516420617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.444208755,116.3727263,0.444208755,63.62727372,0,0.93744031,0,0,0,6,23,0% -2018-06-07 08:00:00,119.3700972,357.9317521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083401225,6.247087572,0.547073339,-0.547073339,1,0.436598639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.552639267,123.5482668,0.552639267,56.45173317,0,0.959525068,0,0,0,6,0,0% -2018-06-07 09:00:00,118.1658677,13.65472522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062383455,0.238319914,1.035034184,-1.035034184,1,0.35315242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610657326,127.6370471,0.610657326,52.36295292,0,0.968121018,0,0,0,6,1,0% -2018-06-07 10:00:00,113.9085284,28.30594092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988078867,0.494031867,1.684363553,-1.684363553,1,0.242110558,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614311331,127.9018974,0.614311331,52.09810259,0,0.968608045,0,0,0,6,2,0% -2018-06-07 11:00:00,107.1426566,41.19181501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869992127,0.718932797,2.840728637,-2.840728637,1,0.044360482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563352994,124.2879983,0.563352994,55.71200173,0,0.961245701,0,0,0,6,3,0% -2018-06-07 12:00:00,98.50970411,52.27718927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719318682,0.912409076,6.366220401,-6.366220401,1,0,#DIV/0!,0,0,0.358371441,1,0.155805954,0,0.944622999,0.983384962,0.724496596,1,0,0,0.052405073,0.312029739,0.862161577,0.586658172,0.961238037,0.922476074,0,0,0,0,0,0,-0.461254149,117.4680651,0.461254149,62.53193493,0,0.941599891,0,0,0,6,4,0% -2018-06-07 13:00:00,88.24246471,61.90836209,2.448383666,13.85805519,2.023357569,1.980802823,0,1.980802823,1.962345872,0.01845695,4.94559547,4.290944808,0.654650662,0.061011696,0.593638966,1.540121549,1.080504753,-32.26539025,32.26539025,0,0,0.826405435,0.015252924,0.490586468,1,0.801896264,0,0.030983044,0.961238037,1,0.64039298,0.915896384,1.886281494,0.042401374,0.115824807,0.2165829,0.724496596,0.448993192,0.975395187,0.936633224,0.011050692,0.47474852,1.897332186,0.517149894,0,0.850052196,-0.309635425,108.0372609,0.309635425,71.96273911,0,0.888519769,1.897332186,1.272438075,2.730117457,6,5,44% -2018-06-07 14:00:00,77.65456723,70.56567443,139.7003321,427.7323106,48.24899593,47.8472308,0,47.8472308,46.79411069,1.053120113,92.29397319,56.96712503,35.32684816,1.454885247,33.87196291,1.355327877,1.231603358,-4.568781928,4.568781928,0.688538586,0.688538586,0.345374955,0.838398987,26.96579341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.98027909,1.054059409,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607417212,25.92054632,45.5876963,26.97460573,0,56.96712503,-0.133184058,97.65362587,0.133184058,82.34637413,0,0.674579694,45.5876963,65.40347148,88.39296032,6,6,94% -2018-06-07 15:00:00,66.27593253,78.77931586,345.6622358,668.5325173,76.68996279,122.8579988,45.87477338,76.9832254,74.37747746,2.605747942,86.12229633,0,86.12229633,2.312485334,83.809811,1.156733238,1.374958444,-2.248805706,2.248805706,0.914722115,0.914722115,0.221863874,2.432836232,78.24837604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49446042,1.675387753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762581568,75.21531537,73.25704199,76.89070312,45.87477338,0,0.068620108,86.06526538,-0.068620108,93.93473462,0,0,73.25704199,76.89070312,123.5804694,6,7,69% -2018-06-07 16:00:00,54.54568459,87.18859095,549.4459578,783.9284681,94.72539721,314.658944,218.6479113,96.0110327,91.86907698,4.141955717,136.075854,0,136.075854,2.856320225,133.2195337,0.952001789,1.521727982,-1.341594817,1.341594817,0.759579915,0.759579915,0.172401664,3.317825561,106.712675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30805121,2.06939428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403753324,102.5762822,90.71180453,104.6456765,218.6479113,0,0.27891309,73.80465476,-0.27891309,106.1953452,0.870732688,0,281.095688,104.6456765,349.5841904,6,8,24% -2018-06-07 17:00:00,42.72838476,96.78159382,729.1263415,846.069446,107.6218835,518.6119581,408.7388091,109.873149,104.3766866,5.496462346,180.0303199,0,180.0303199,3.24519687,176.785123,0.745750998,1.689157467,-0.824607337,0.824607337,0.671169849,0.671169849,0.147603889,3.955839449,127.2333948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3308414,2.351134086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865992215,122.3015786,103.1968336,124.6527127,408.7388091,0,0.483103144,61.11172988,-0.483103144,118.8882701,0.946502433,0,490.0691109,124.6527127,571.6518183,6,9,17% -2018-06-07 18:00:00,31.20585375,109.6119717,870.3053806,881.042753,116.7395314,707.6242978,587.8441644,119.7801334,113.2194038,6.560729577,214.5357432,0,214.5357432,3.520127596,211.0156156,0.544644894,1.913089806,-0.466666318,0.466666318,0.60995833,0.60995833,0.134136286,4.345020769,139.7508038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8307975,2.55032046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147952756,134.3337883,111.9787502,136.8841088,587.8441644,0,0.667214119,48.1475884,-0.667214119,131.8524116,0.975061538,0,685.1629852,136.8841088,774.7508967,6,10,13% -2018-06-07 19:00:00,20.93212538,131.1301691,962.5610096,899.542474,122.3844648,862.3883492,736.438036,125.9503132,118.6941217,7.256191478,237.0744041,0,237.0744041,3.690343166,233.3840609,0.365334507,2.2886532,-0.184681798,0.184681798,0.561736137,0.561736137,0.127144631,4.480400984,144.1050969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0933045,2.673641061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.246035261,138.5193005,117.3393398,141.1929415,736.438036,0,0.818680671,35.04705891,-0.818680671,144.9529411,0.988926126,0,845.6221539,141.1929415,938.0301103,6,11,11% -2018-06-07 20:00:00,15.14016121,173.0040088,999.2775684,906.1524948,124.5778131,968.5175986,840.1632899,128.3543088,120.8213324,7.532976407,246.0428964,0,246.0428964,3.756480708,242.2864157,0.264245662,3.019489573,0.060884089,-0.060884089,0.519741897,0.519741897,0.124667877,4.366223524,140.4327573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1380603,2.721557485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16331408,134.989308,119.3013744,137.7108655,840.1632899,0,0.92717649,22.00112632,-0.92717649,157.9988737,0.996072835,0,956.165204,137.7108655,1046.294211,6,12,9% -2018-06-07 21:00:00,18.73077615,220.2831088,977.8548422,902.3434199,123.3014018,1016.04324,889.0883479,126.9548925,119.5834096,7.371482848,240.8102199,0,240.8102199,3.717992198,237.0922277,0.326913715,3.844665536,0.294486138,-0.294486138,0.479793594,0.479793594,0.126093768,4.020321088,129.307346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9481219,2.693672691,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912708943,124.2951394,117.8608308,126.9888121,889.0883479,0,0.985310391,9.832768645,-0.985310391,170.1672314,0.999254569,0,1006.286425,126.9888121,1089.398063,6,13,8% -2018-06-07 22:00:00,28.29729509,245.9526601,899.8180593,887.2801476,118.5681253,999.4099308,877.6338633,121.7760675,114.9928589,6.783208616,221.7465727,0,221.7465727,3.575266448,218.1713062,0.493880969,4.292683722,0.53704094,-0.53704094,0.43831428,0.43831428,0.131768999,3.475221228,111.7750607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5355099,2.590268371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51778595,107.4424399,113.0532959,110.0327083,877.6338633,0,0.989128254,8.456322279,-0.989128254,171.5436777,0.999450438,0,990.2048449,110.0327083,1062.219052,6,14,7% -2018-06-07 23:00:00,39.62610759,260.3086817,770.7518186,857.3749453,110.3821631,917.4104046,804.5464183,112.8639863,107.0537336,5.810252776,190.2061314,0,190.2061314,3.328429483,186.8777019,0.691606047,4.543243567,0.814673473,-0.814673473,0.390836321,0.390836321,0.143213626,2.777747404,89.34190497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9041207,2.41143583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012468539,85.87883734,104.9165892,88.29027317,804.5464183,0,0.938383402,20.21818161,-0.938383402,159.7818184,0.996716875,0,906.8215812,88.29027317,964.6057991,6,15,6% -2018-06-07 00:00:00,51.40977075,270.4841489,600.0952766,804.0758708,98.55591635,772.7641821,672.6563186,100.1078635,95.58409184,4.523771676,148.471872,0,148.471872,2.97182451,145.5000475,0.897269767,4.720838973,1.173880823,-1.173880823,0.329408246,0.329408246,0.164233781,1.988387946,63.95339138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87906479,2.153076741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440580298,61.47443238,93.31964509,63.62750912,672.6563186,0,0.836558269,33.22155384,-0.836558269,146.7784462,0.9902313,0,759.4049861,63.62750912,801.0479183,6,16,5% -2018-06-07 01:00:00,63.18517674,279.088217,401.1077941,707.0523507,82.15050364,571.0200712,488.3229884,82.69708284,79.67336286,3.02371998,99.73036933,0,99.73036933,2.477140788,97.25322854,1.102789373,4.87100829,1.728861403,-1.728861403,0.234500977,0.234500977,0.204809043,1.183127503,38.05344747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.5850669,1.794680068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.857171848,36.57842115,77.44223875,38.37310121,488.3229884,0,0.690646156,46.31872047,-0.690646156,133.6812795,0.977604028,0,554.828759,38.37310121,579.9431863,6,17,5% -2018-06-07 02:00:00,74.67694278,287.2861888,192.7447127,511.8025052,57.49517371,318.6271827,261.4127096,57.21447315,55.76148209,1.45299106,48.46687875,0,48.46687875,1.733691622,46.73318713,1.303358527,5.01408989,2.903703619,-2.903703619,0.033591126,0.033591126,0.298297021,0.467671347,15.04191814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.60005758,1.256053678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338826299,14.45886387,53.93888388,15.71491755,261.4127096,0,0.510768718,59.28495275,-0.510768718,120.7150473,0.952108336,0,302.8321037,15.71491755,313.1172029,6,18,3% -2018-06-07 03:00:00,85.56398606,295.7752533,21.02367691,102.2748029,13.11315841,44.63429625,31.75806259,12.87623366,12.7177483,0.158485357,5.492843979,0,5.492843979,0.395410108,5.09743387,1.493373278,5.162252016,8.990610688,-8.990610688,0,0,0.623732873,0.098852527,3.179437075,0.501826128,1,0.110771843,0,0.950007371,0.988769334,0.724496596,1,12.32753686,0.286473278,0.069332478,0.312029739,0.822273262,0.546769858,0.961238037,0.922476074,0.067716419,3.056195852,12.39525327,3.34266913,15.821037,0,0.310516977,71.90961133,-0.310516977,108.0903887,0.888978208,0,26.4598104,3.34266913,28.64752049,6,19,8% -2018-06-07 04:00:00,95.95081617,305.1023833,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674657662,5.325041144,-5.488598027,5.488598027,1,0.531240768,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097196953,84.42221877,-0.097196953,95.57778123,0.535580579,0,0,0,0,6,20,0% -2018-06-07 05:00:00,104.9667168,315.761489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832014814,5.511077634,-1.535709097,1.535709097,1,0.792775412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107034771,96.14441115,0.107034771,83.85558885,0,0.582862085,0,0,0,6,21,0% -2018-06-07 06:00:00,112.2727644,328.1492554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959529398,5.727284946,-0.501405288,0.501405288,1,0.615899044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291161059,106.9274797,0.291161059,73.07252026,0,0.878273739,0,0,0,6,22,0% -2018-06-07 07:00:00,117.2403006,342.3594358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046229261,5.97529938,0.079966419,-0.079966419,1,0.516478627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.442638104,116.2723241,0.442638104,63.72767594,0,0.937040904,0,0,0,6,23,0% -2018-06-08 08:00:00,119.2760374,357.8849564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081759572,6.246270833,0.547794499,-0.547794499,1,0.436475313,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551147078,123.445743,0.551147078,56.55425705,0,0.959280114,0,0,0,6,0,0% -2018-06-08 09:00:00,118.0841354,13.58497233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060956958,0.237102496,1.036691859,-1.036691859,1,0.35286894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609296687,127.5386662,0.609296687,52.46133376,0,0.967938172,0,0,0,6,1,0% -2018-06-08 10:00:00,113.8420408,28.22125666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986918439,0.492553848,1.687426466,-1.687426466,1,0.241586769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613126343,127.8159029,0.613126343,52.18409713,0,0.968450739,0,0,0,6,2,0% -2018-06-08 11:00:00,107.0914608,41.09970605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869098591,0.717325192,2.847243696,-2.847243696,1,0.043246341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56237573,124.2202551,0.56237573,55.77974492,0,0.961091469,0,0,0,6,3,0% -2018-06-08 12:00:00,98.47201007,52.18179127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718660797,0.910744067,6.391553563,-6.391553563,1,0,#DIV/0!,0,0,0.360150019,1,0.155198299,0,0.944698722,0.983460685,0.724496596,1,0,0,0.052627106,0.312029739,0.86162364,0.586120236,0.961238037,0.922476074,0,0,0,0,0,0,-0.460502453,117.4195347,0.460502453,62.58046534,0,0.941422945,0,0,0,6,4,0% -2018-06-08 13:00:00,88.21796667,61.81052594,2.529780668,14.29121153,2.08536208,2.041551275,0,2.041551275,2.02248072,0.019070555,5.094336871,4.418080898,0.676255973,0.062881361,0.613374612,1.539693978,1.07879719,-31.81377828,31.81377828,0,0,0.82432525,0.01572034,0.50562018,1,0.798818266,0,0.031422576,0.961238037,1,0.639254064,0.914757468,1.944085396,0.043682444,0.115824807,0.215292948,0.724496596,0.448993192,0.975573221,0.936811258,0.011389333,0.489326581,1.955474729,0.533009025,0,0.888837175,-0.309146701,108.0078143,0.309146701,71.99218573,0,0.888264488,1.955474729,1.322531522,2.82104516,6,5,44% -2018-06-08 14:00:00,77.63649853,70.4638478,140.0163377,428.3046623,48.31068821,47.90944501,0,47.90944501,46.85394272,1.055502296,92.31709726,56.91176965,35.40532761,1.456745497,33.94858212,1.355012519,1.229826148,-4.561966315,4.561966315,0.689704124,0.689704124,0.34503608,0.840989817,27.04912339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.03779191,1.055407154,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.609294259,26.00064627,45.64708617,27.05605342,0,56.91176965,-0.132876839,97.63586564,0.132876839,82.36413436,0,0.673711699,45.64708617,65.39817844,88.448886,6,6,94% -2018-06-08 15:00:00,66.26371731,78.66992823,345.8830708,668.7001591,76.71283974,122.9747563,45.96767908,77.00707727,74.39966458,2.607412689,86.17653016,0,86.17653016,2.313175158,83.863355,1.156520042,1.37304927,-2.24816328,2.24816328,0.914612253,0.914612253,0.221788362,2.434150798,78.29065701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51578752,1.675887528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763533967,75.25595745,73.27932149,76.93184498,45.96767908,0,0.06874184,86.05827415,-0.06874184,93.94172585,0,0,73.27932149,76.93184498,123.6296754,6,7,69% -2018-06-08 16:00:00,54.5365694,87.06552721,549.595946,783.9918629,94.7370202,314.6699941,218.6465582,96.02343589,91.8803495,4.143086391,136.1125708,0,136.1125708,2.856670701,133.2559001,0.951842699,1.519580115,-1.342031175,1.342031175,0.759654537,0.759654537,0.172375762,3.318961335,106.7492054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31888678,2.069648199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404576189,102.6113966,90.72346296,104.6810448,218.6465582,0,0.278888811,73.80610334,-0.278888811,106.1938967,0.870717081,0,281.1027559,104.6810448,349.6144062,6,8,24% -2018-06-08 17:00:00,42.71853555,96.63429088,729.2624535,846.1079622,107.6310222,518.5389658,408.6559276,109.8830382,104.3855498,5.497488416,180.0635974,0,180.0635974,3.245472436,176.8181249,0.745579097,1.686586546,-0.825389926,0.825389926,0.67130368,0.67130368,0.147588871,3.957177916,127.2764445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3393609,2.351333732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866961929,122.3429596,103.2063229,124.6942934,408.6559276,0,0.482983196,61.11957882,-0.482983196,118.8804212,0.94647673,0,489.9896488,124.6942934,571.5995699,6,9,17% -2018-06-08 18:00:00,31.18847718,109.4214733,870.4893895,881.0826488,116.7510046,707.5235732,587.7309254,119.7926478,113.2305311,6.562116715,214.5807042,0,214.5807042,3.520473555,211.0602307,0.544341615,1.909764981,-0.467627673,0.467627673,0.610122731,0.610122731,0.134121112,4.346834727,139.809147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8414934,2.550571107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149266963,134.38987,111.9907604,136.9404411,587.7309254,0,0.667055385,48.15979723,-0.667055385,131.8402028,0.975043705,0,685.0540996,136.9404411,774.6788795,6,10,13% -2018-06-08 19:00:00,20.89232139,130.8732694,962.8519456,899.5964093,122.4019537,862.3273903,736.3579224,125.9694679,118.7110832,7.258384676,237.1454722,0,237.1454722,3.69087052,233.4546017,0.364639797,2.284169455,-0.185794328,0.185794328,0.561926391,0.561926391,0.127124377,4.482896147,144.18535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1096086,2.674023127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247842998,138.5964427,117.3574516,141.2704659,736.3579224,0,0.818542532,35.0608394,-0.818542532,144.9391606,0.988915819,0,845.5534497,141.2704659,938.0121442,6,11,11% -2018-06-08 20:00:00,15.05597156,172.7987381,999.7268614,906.2309932,124.6044871,968.5654522,840.1818868,128.3835654,120.847202,7.536363368,246.152637,0,246.152637,3.757285026,242.395352,0.262776276,3.015906923,0.059589992,-0.059589992,0.519963201,0.519963201,0.124638531,4.369540389,140.5394391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1629272,2.722140211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.165717137,135.0918545,119.3286444,137.8139948,840.1818868,0,0.927116699,22.01026913,-0.927116699,157.9897309,0.996069357,0,956.2080759,137.8139948,1046.404579,6,12,9% -2018-06-08 21:00:00,18.632065,220.3221749,978.5024492,902.4604992,123.3401219,1016.264818,889.267491,126.997327,119.6209622,7.376364783,240.9684073,0,240.9684073,3.719159753,237.2492475,0.325190881,3.845347368,0.292932711,-0.292932711,0.480059246,0.480059246,0.126049886,4.024527795,129.4426481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9842188,2.69451858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.915756688,124.425197,117.8999755,127.1197155,889.267491,0,0.985381068,9.809027375,-0.985381068,170.1909726,0.999258209,0,1006.507816,127.1197155,1089.705128,6,13,8% -2018-06-08 22:00:00,28.2073205,246.0412535,900.6892643,887.4594664,118.6217609,999.8624496,878.0277963,121.8346533,115.0448772,6.789776127,221.9594237,0,221.9594237,3.576883759,218.38254,0.492310616,4.29422997,0.535080062,-0.535080062,0.43864961,0.43864961,0.131701093,3.480303923,111.9385376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5855119,2.591440107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.521468345,107.5995802,113.1069802,110.1910203,878.0277963,0,0.989372281,8.360707903,-0.989372281,171.6392921,0.999462906,0,990.663193,110.1910203,1062.781012,6,14,7% -2018-06-08 23:00:00,39.54124909,260.3887958,771.8546149,857.6620824,110.4543914,918.1424763,805.2001262,112.9423501,107.1237839,5.81856612,190.475695,0,190.475695,3.330607433,187.1450876,0.690124987,4.544641822,0.812012868,-0.812012868,0.391291311,0.391291311,0.143102586,2.783596785,89.53004117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9714558,2.413013748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016706395,86.05968101,104.9881622,88.47269476,805.2001262,0,0.938831438,20.14377131,-0.938831438,159.8562287,0.996742303,0,907.5651906,88.47269476,965.4687999,6,15,6% -2018-06-08 00:00:00,51.32623967,270.5516517,601.4173899,804.5699863,98.65353072,773.8198711,673.60737,100.2125011,95.67876277,4.533738325,148.7953771,0,148.7953771,2.974767944,145.8206092,0.895811875,4.72201712,1.169861022,-1.169861022,0.330095672,0.330095672,0.164035048,1.994769881,64.15865635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.9700661,2.155209249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445203988,61.67174087,93.41527009,63.82695012,673.60737,0,0.83722657,33.15159927,-0.83722657,146.8484007,0.99027901,0,760.4745093,63.82695012,802.2479716,6,16,5% -2018-06-08 01:00:00,63.10074862,279.1450969,402.6085344,708.0041132,82.29114902,572.4545505,489.60975,82.84480045,79.80976726,3.035033195,100.0984822,0,100.0984822,2.481381765,97.6171004,1.101315824,4.872001031,1.721599836,-1.721599836,0.235742778,0.235742778,0.204394944,1.189590641,38.2613242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.716184,1.797752642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86185437,36.77824016,77.57803837,38.5759928,489.60975,0,0.691535177,46.24824535,-0.691535177,133.7517546,0.977697098,0,556.2680703,38.5759928,581.515286,6,17,5% -2018-06-08 02:00:00,74.59040544,287.334063,194.3080587,513.963116,57.73903456,320.5406228,263.077857,57.46276586,55.99798963,1.464776222,48.85328337,0,48.85328337,1.741044926,47.11223844,1.301848165,5.014925452,2.884752882,-2.884752882,0.036831892,0.036831892,0.297152032,0.473180217,15.21910233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.82739762,1.261381122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.342817456,14.62918004,54.17021508,15.89056116,263.077857,0,0.511861355,59.21210661,-0.511861355,120.7878934,0.952317298,0,304.7038091,15.89056116,315.1038636,6,18,3% -2018-06-08 03:00:00,85.47662738,295.8144909,21.92722839,106.1190768,13.55806666,46.39711283,33.08257519,13.31453764,13.14924093,0.16529671,5.725336121,0,5.725336121,0.408825734,5.316510388,1.491848581,5.162936842,8.810069451,-8.810069451,0,0,0.61832104,0.102206433,3.287310232,0.49404412,1,0.113022755,0,0.949749281,0.988511244,0.724496596,1,12.74636297,0.296192852,0.068462609,0.312029739,0.824267495,0.548764091,0.961238037,0.922476074,0.069998624,3.159887634,12.81636159,3.456080486,16.73832345,0,0.311749557,71.83530141,-0.311749557,108.1646986,0.889614848,0,27.70702267,3.456080486,29.96895823,6,19,8% -2018-06-08 04:00:00,95.85737572,305.1318342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673026819,5.32555516,-5.572673162,5.572673162,1,0.516863074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098610677,84.3408273,-0.098610677,95.6591727,0.542955514,0,0,0,0,6,20,0% -2018-06-08 05:00:00,104.8703651,315.7782016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830333159,5.511369325,-1.545123839,1.545123839,1,0.794385428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105534937,96.05798746,0.105534937,83.94201254,0,0.576223247,0,0,0,6,21,0% -2018-06-08 06:00:00,112.1753,328.1485085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957828324,5.727271909,-0.503878544,0.503878544,1,0.616321995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289632089,106.835931,0.289632089,73.16406899,0,0.877367195,0,0,0,6,22,0% -2018-06-08 07:00:00,117.1453054,342.3360903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044571283,5.974891924,0.079499239,-0.079499239,1,0.516558519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441139077,116.1765813,0.441139077,63.82341869,0,0.93665706,0,0,0,6,23,0% -2018-06-09 08:00:00,119.1885943,357.8368182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080233401,6.245430662,0.548328268,-0.548328268,1,0.436384033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549735097,123.3488414,0.549735097,56.65115859,0,0.959047102,0,0,0,6,0,0% -2018-06-09 09:00:00,118.00911,13.51569819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059647517,0.235893434,1.038073937,-1.038073937,1,0.352632591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608022936,127.4466852,0.608022936,52.55331477,0,0.96776626,0,0,0,6,1,0% -2018-06-09 10:00:00,113.7820243,28.13858289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985870953,0.491110918,1.690035282,-1.690035282,1,0.241140635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612032556,127.7366155,0.612032556,52.26338448,0,0.968304999,0,0,0,6,2,0% -2018-06-09 11:00:00,107.0463157,41.0106916,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868310662,0.715771597,2.852798038,-2.852798038,1,0.042296493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561491318,124.1589952,0.561491318,55.84100481,0,0.960951428,0,0,0,6,3,0% -2018-06-09 12:00:00,98.43989794,52.090219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718100334,0.90914583,6.412925389,-6.412925389,1,0,#DIV/0!,0,0,0.361642831,1,0.154689307,0,0.944762086,0.983524049,0.724496596,1,0,0,0.052813217,0.312029739,0.861173039,0.585669635,0.961238037,0.922476074,0,0,0,0,0,0,-0.459842485,117.3769438,0.459842485,62.62305621,0,0.941267115,0,0,0,6,4,0% -2018-06-09 13:00:00,88.19818257,61.71706506,2.596704188,14.6469902,2.136166733,2.091328478,0,2.091328478,2.071753424,0.019575053,5.216109189,4.522094886,0.694014303,0.064413309,0.629600994,1.53934868,1.07716599,-31.45680557,31.45680557,0,0,0.822645391,0.016103327,0.517938356,1,0.796316766,0,0.031778921,0.961238037,1,0.638331817,0.913835221,1.991448195,0.044731644,0.115824807,0.214248457,0.724496596,0.448993192,0.975717113,0.93695515,0.011666806,0.50127211,2.003115,0.546003755,0,0.92107491,-0.308738848,107.9832441,0.308738848,72.01675594,0,0.888050831,2.003115,1.363965094,2.895802875,6,5,45% -2018-06-09 14:00:00,77.62319478,70.36691689,140.2490674,428.7255531,48.35606326,47.95520625,0,47.95520625,46.89794953,1.057256712,92.33391075,56.87078688,35.46312387,1.458113722,34.00501015,1.354780325,1.228134384,-4.556962901,4.556962901,0.690559758,0.690559758,0.344787057,0.842898705,27.11051979,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.08009294,1.056398428,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610677242,26.05966282,45.69077018,27.11606125,0,56.87078688,-0.132650798,97.62279879,0.132650798,82.37720121,0,0.673070493,45.69077018,65.39410983,88.48990718,6,6,94% -2018-06-09 15:00:00,66.25603752,78.56605514,346.0219053,668.8054884,76.72721692,123.0294195,46.00735195,77.02206752,74.41360824,2.608459282,86.21062573,0,86.21062573,2.313608684,83.89701704,1.156386004,1.371236342,-2.247963304,2.247963304,0.914578055,0.914578055,0.221740924,2.435047856,78.31950948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5291907,1.676201615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764183883,75.28369154,73.29337458,76.95989315,46.00735195,0,0.068790333,86.05548912,-0.068790333,93.94451088,0,0,73.29337458,76.95989315,123.6620855,6,7,69% -2018-06-09 16:00:00,54.53188606,86.94882143,549.6730032,784.0244231,94.74299089,314.6165383,218.5867309,96.02980743,91.88614015,4.143667281,136.1314343,0,136.1314343,2.85685074,133.2745835,0.951760959,1.517543215,-1.342635294,1.342635294,0.759757847,0.759757847,0.17236246,3.319767727,106.7751417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32445297,2.069778636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405160417,102.6363276,90.72961338,104.7061062,218.5867309,0,0.278800921,73.81134706,-0.278800921,106.1886529,0.870660563,0,281.0444596,104.7061062,349.5725121,6,8,24% -2018-06-09 17:00:00,42.71322376,96.49455272,729.3358498,846.1287271,107.6359498,518.4078465,408.519476,109.8883705,104.3903288,5.498041708,180.0815418,0,180.0815418,3.24562102,176.8359207,0.745486389,1.684147655,-0.82624333,0.82624333,0.671449621,0.671449621,0.147580775,3.958245524,127.3107824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3439547,2.351441381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867735407,122.3759666,103.2116901,124.7274079,408.519476,0,0.482810077,61.13090602,-0.482810077,118.869094,0.94643961,0,489.8507035,124.7274079,571.4822975,6,9,17% -2018-06-09 18:00:00,31.17610992,109.240106,870.6202968,881.1110235,116.7591663,707.3739421,587.5723919,119.8015502,113.2384467,6.563103549,214.6126903,0,214.6126903,3.52071966,211.0919706,0.544125766,1.906599524,-0.468613746,0.468613746,0.61029136,0.61029136,0.13411032,4.348419108,139.8601061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8491022,2.550749409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150414841,134.4388538,111.999517,136.9896032,587.5723919,0,0.666853979,48.17528473,-0.666853979,131.8247153,0.975021067,0,684.8949773,136.9896032,774.5519328,6,10,13% -2018-06-09 19:00:00,20.8586229,130.6255362,963.0978428,899.6419752,122.4167338,862.2270514,736.2413954,125.985656,118.7254176,7.260238353,237.2055385,0,237.2055385,3.691316194,233.5142223,0.364051647,2.279845694,-0.186903846,0.186903846,0.56211613,0.56211613,0.127107266,4.485189039,144.2590972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1233873,2.674346017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.249504191,138.6673314,117.3728915,141.3416774,736.2413954,0,0.818371547,35.07788991,-0.818371547,144.9221101,0.988903057,0,845.4442579,141.3416774,937.949559,6,11,11% -2018-06-09 20:00:00,14.97872114,172.5902627,1000.136971,906.3025967,124.6288314,968.5822609,840.1719936,128.4102673,120.8708123,7.539454947,246.2528069,0,246.2528069,3.758019098,242.4947878,0.261428002,3.012268341,0.058320106,-0.058320106,0.520180364,0.520180364,0.124611763,4.372669258,140.6400743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1856223,2.722672044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.167983992,135.1885889,119.3536063,137.911261,840.1719936,0,0.927032535,22.02313265,-0.927032535,157.9768673,0.99606446,0,956.2190698,137.911261,1046.479232,6,12,9% -2018-06-09 21:00:00,18.53837282,220.347378,979.1140809,902.5709624,123.3766833,1016.461427,889.4240303,127.0373966,119.656421,7.380975522,241.1178069,0,241.1178069,3.720262212,237.3975447,0.323555644,3.845787245,0.291424352,-0.291424352,0.48031719,0.48031719,0.126008486,4.028548504,129.5719679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0183033,2.695317308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.918669677,124.5495041,117.9369729,127.2448214,889.4240303,0,0.985433908,9.791240973,-0.985433908,170.208759,0.99926093,0,1006.703657,127.2448214,1089.982847,6,13,8% -2018-06-09 22:00:00,28.12077905,246.1179434,901.5248374,887.6311991,118.6731848,1000.29298,878.4021541,121.8908255,115.0947504,6.79607503,222.1635687,0,222.1635687,3.578434379,218.5851343,0.490800183,4.295568461,0.53319022,-0.53319022,0.438972792,0.438972792,0.131636068,3.485191792,112.0957483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.633452,2.592563527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525009589,107.750697,113.1584615,110.3432605,878.4021541,0,0.989602613,8.269452295,-0.989602613,171.7305477,0.999474669,0,991.0991634,110.3432605,1063.316621,6,14,7% -2018-06-09 23:00:00,39.45918247,260.4594724,772.9192808,857.9387109,110.5240802,918.8516965,805.8337331,113.0179634,107.1913714,5.826592021,190.735937,0,190.735937,3.332708808,187.4032282,0.688692654,4.545875361,0.809462927,-0.809462927,0.391727376,0.391727376,0.142995631,2.789234489,89.71136908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0364234,2.414536186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020790892,86.2339803,105.0572143,88.64851649,805.8337331,0,0.939267249,20.07113762,-0.939267249,159.9288624,0.996767014,0,908.2856985,88.64851649,966.3043795,6,15,6% -2018-06-09 00:00:00,51.24534682,270.6113102,602.6963627,805.0465353,98.7478525,774.8470937,674.5334736,100.3136202,95.7702404,4.543379762,149.108323,0,149.108323,2.977612094,146.1307109,0.894400028,4.723058357,1.166025445,-1.166025445,0.330751595,0.330751595,0.163843452,2.000920638,64.35648584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.05799787,2.157269826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449660191,61.86190211,93.50765806,64.01917193,674.5334736,0,0.837881345,33.08293353,-0.837881345,146.9170665,0.990325679,0,761.5154785,64.01917193,803.4147462,6,16,6% -2018-06-09 01:00:00,63.01907412,279.195123,404.0595461,708.9201973,82.42681028,573.8484078,490.8610985,82.98730937,79.94133783,3.045971534,100.4543874,0,100.4543874,2.485472453,97.96891498,1.099890335,4.872874153,1.714698472,-1.714698472,0.236922981,0.236922981,0.203996691,1.195812383,38.46143683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84265464,1.800716331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866362001,36.97059603,77.70901664,38.77131236,490.8610985,0,0.692406706,46.17907628,-0.692406706,133.8209237,0.977788105,0,557.6671602,38.77131236,583.0422087,6,17,5% -2018-06-09 02:00:00,74.5069126,287.3757137,195.8172176,516.0339763,57.97313077,322.3906186,264.6894387,57.70117988,56.22502698,1.4761529,49.2262553,0,49.2262553,1.748103791,47.47815151,1.30039094,5.015652394,2.866837733,-2.866837733,0.039895563,0.039895563,0.296057372,0.478482503,15.38964207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.04563456,1.266495246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346658945,14.79310933,54.3922935,16.05960458,264.6894387,0,0.512930254,59.14078962,-0.512930254,120.8592104,0.95252086,0,306.5145053,16.05960458,317.0251953,6,18,3% -2018-06-09 03:00:00,85.39260961,295.8479372,22.81102537,109.8444775,13.98749367,48.11378948,34.3761112,13.73767827,13.56571913,0.171959145,5.95257174,0,5.95257174,0.421774543,5.530797197,1.490382195,5.16352059,8.643542487,-8.643542487,0,0,0.613190045,0.105443636,3.391429782,0.486647478,1,0.115181229,0,0.949500692,0.988262655,0.724496596,1,13.15059786,0.30557422,0.06763092,0.312029739,0.826179835,0.550676431,0.961238037,0.922476074,0.072202473,3.259971306,13.22280034,3.565545526,17.64706339,0,0.312952567,71.7627437,-0.312952567,108.2372563,0.890231379,0,28.93276992,3.565545526,31.26634816,6,19,8% -2018-06-09 04:00:00,95.7680309,305.1558645,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671467457,5.325974566,-5.656184593,5.656184593,1,0.502581778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099982228,84.26185289,-0.099982228,95.73814711,0.549911126,0,0,0,0,6,20,0% -2018-06-09 05:00:00,104.7788048,315.7899602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82873513,5.51157455,-1.554429394,1.554429394,1,0.795976772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.10408779,95.97461281,0.10408779,84.02538719,0,0.569636262,0,0,0,6,21,0% -2018-06-09 06:00:00,112.083375,328.1435689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956223931,5.727185696,-0.506408568,0.506408568,1,0.616754655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288166318,106.748208,0.288166318,73.25179205,0,0.87648909,0,0,0,6,22,0% -2018-06-09 07:00:00,117.0565261,342.3097898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043021791,5.974432893,0.078905603,-0.078905603,1,0.516660037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.439713036,116.0855732,0.439713036,63.91442684,0,0.936289475,0,0,0,6,23,0% -2018-06-10 08:00:00,119.1078,357.7874212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078823274,6.244568522,0.548674707,-0.548674707,1,0.436324789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548404491,123.2576231,0.548404491,56.74237688,0,0.958826421,0,0,0,6,0,0% -2018-06-10 09:00:00,117.9408063,13.44698419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058455393,0.234694149,1.039179467,-1.039179467,1,0.352443534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606836972,127.3611452,0.606836972,52.63885483,0,0.967605548,0,0,0,6,1,0% -2018-06-10 10:00:00,113.7284779,28.05799785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984936393,0.489704444,1.692187573,-1.692187573,1,0.240772571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61103055,127.6640558,0.61103055,52.33594419,0,0.968171031,0,0,0,6,2,0% -2018-06-10 11:00:00,107.0072058,40.92484807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867628064,0.714273345,2.857384447,-2.857384447,1,0.041512171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560699989,124.1042205,0.560699989,55.89577951,0,0.960825752,0,0,0,6,3,0% -2018-06-10 12:00:00,98.41333843,52.00254829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717636784,0.907615687,6.430276348,-6.430276348,1,0,#DIV/0!,0,0,0.362849674,1,0.154278506,0,0.944813184,0.983575147,0.724496596,1,0,0,0.052963509,0.312029739,0.860809358,0.585305954,0.961238037,0.922476074,0,0,0,0,0,0,-0.459274118,117.3402776,0.459274118,62.65972245,0,0.941132554,0,0,0,6,4,0% -2018-06-10 13:00:00,88.18308515,61.62805609,2.64849126,14.92208081,2.175374275,2.12974416,0,2.12974416,2.109778714,0.019965446,5.309896248,4.602143318,0.70775293,0.065595561,0.642157369,1.53908518,1.07561249,-31.18815339,31.18815339,0,0,0.821363584,0.01639889,0.527444678,1,0.794392763,0,0.032052476,0.961238037,1,0.637624518,0.913127922,2.027999549,0.045541031,0.115824807,0.213447441,0.724496596,0.448993192,0.975827302,0.937065338,0.01188094,0.51049132,2.039880489,0.556032351,0,0.946233971,-0.308411633,107.9635342,0.308411633,72.0364658,0,0.887879008,2.039880489,1.39617363,2.953648207,6,5,45% -2018-06-10 14:00:00,77.61460371,70.27496158,140.3993821,428.9971124,48.38534307,47.98473631,0,47.98473631,46.92634646,1.058389847,92.34479322,56.84434092,35.50045229,1.458996617,34.04145568,1.354630382,1.226529461,-4.553742375,4.553742375,0.6911105,0.6911105,0.344626467,0.844131521,27.15017139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10738915,1.057038082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611570413,26.09777745,45.71895956,27.15481553,0,56.84434092,-0.132505183,97.61438135,0.132505183,82.38561865,0,0.67265627,45.71895956,65.39151788,88.51640018,6,6,94% -2018-06-10 15:00:00,66.25283028,78.467784,346.0798842,668.8494605,76.73321983,123.022817,45.99449054,77.02832649,74.41943014,2.608896352,86.22486438,0,86.22486438,2.313789693,83.91107469,1.156330027,1.369521187,-2.248199308,2.248199308,0.914618414,0.914618414,0.221721121,2.435533403,78.33512632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53478693,1.676332756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764535659,75.29870304,73.29932259,76.9750358,45.99449054,0,0.068766581,86.05685322,-0.068766581,93.94314678,0,0,73.29932259,76.9750358,123.677944,6,7,69% -2018-06-10 16:00:00,54.53156194,86.83857689,549.6783359,784.0266762,94.74340406,314.4997299,218.4694815,96.03024835,91.88654086,4.143707481,136.1327397,0,136.1327397,2.856863198,133.2758765,0.951755302,1.515619084,-1.343404031,1.343404031,0.759889309,0.759889309,0.172361539,3.320249864,106.7906489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32483815,2.069787662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405509724,102.6512337,90.73034788,104.7210214,218.4694815,0,0.278650572,73.82031688,-0.278650572,106.1796831,0.870563799,0,280.9219697,104.7210214,349.4597838,6,8,24% -2018-06-10 17:00:00,42.71236775,96.36251738,729.3476772,846.132073,107.6367438,518.2198822,408.3306525,109.8892297,104.3910989,5.498130868,180.0844334,0,180.0844334,3.245644963,176.8387884,0.745471449,1.681843204,-0.827165432,0.827165432,0.671607309,0.671607309,0.14757947,3.9590464,127.3365413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3446949,2.351458727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868315639,122.400727,103.2130106,124.7521857,408.3306525,0,0.482585007,61.14563056,-0.482585007,118.8543694,0.946391311,0,489.653592,124.7521857,571.3014025,6,9,17% -2018-06-10 18:00:00,31.16866418,109.0680956,870.6990874,881.1280986,116.7640785,707.1766738,587.3697657,119.8069082,113.2432107,6.563697506,214.6319421,0,214.6319421,3.520867779,211.1110743,0.543995813,1.903597377,-0.46962285,0.46962285,0.610463927,0.610463927,0.134103825,4.349776806,139.9037743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8536815,2.55085672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151398489,134.4808294,112.00508,137.0316861,587.3697657,0,0.666611094,48.19395686,-0.666611094,131.8060431,0.974993748,0,684.686929,137.0316861,774.3714269,6,10,13% -2018-06-10 19:00:00,20.83095699,130.3874441,963.2994374,899.679318,122.42885,862.0884656,736.0895391,125.9989265,118.7371685,7.261758059,237.2547828,0,237.2547828,3.691681543,233.5631013,0.363568786,2.275690203,-0.188008857,0.188008857,0.562305098,0.562305098,0.127093244,4.487281123,144.3263859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1346827,2.674610711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251019899,138.7320118,117.3857026,141.4066225,736.0895391,0,0.81816879,35.09809948,-0.81816879,144.9019005,0.988887916,0,845.2957528,141.4066225,937.8435591,6,11,11% -2018-06-10 20:00:00,14.90843555,172.3791457,1000.508316,906.3673918,124.6508719,968.5689154,840.1344729,128.4344425,120.8921882,7.542254306,246.3435085,0,246.3435085,3.758683701,242.5848248,0.260201287,3.008583654,0.05707586,-0.05707586,0.520393143,0.520393143,0.124587542,4.37561004,140.73466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2061697,2.723153547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.170114579,135.2795083,119.3762843,138.0026618,840.1344729,0,0.926924866,22.03957831,-0.926924866,157.9604217,0.996058195,0,956.1991112,138.0026618,1046.519093,6,12,9% -2018-06-10 21:00:00,18.44976428,220.3586599,979.6897938,902.674839,123.4110905,1016.633628,889.5585214,127.0751063,119.6897908,7.385315488,241.2584327,0,241.2584327,3.721299718,237.537133,0.322009133,3.84598415,0.289962504,-0.289962504,0.480567181,0.480567181,0.125969558,4.032381545,129.6952517,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0503795,2.696068978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.921446703,124.6680091,117.9718262,127.3640781,889.5585214,0,0.985469499,9.779242276,-0.985469499,170.2207577,0.999262763,0,1006.874532,127.3640781,1090.231774,6,13,8% -2018-06-10 22:00:00,28.03773347,246.1826634,902.3244522,887.7953109,118.7223793,1000.701688,878.7571235,121.9445643,115.1424615,6.802102864,222.358928,0,222.358928,3.579917773,218.7790102,0.489350764,4.296698037,0.531372948,-0.531372948,0.439283564,0.439283564,0.131573935,3.489881671,112.2465909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6793136,2.59363824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.528407391,107.8956927,113.207721,110.4893309,878.7571235,0,0.989819514,8.182594127,-0.989819514,171.8174059,0.99948574,0,991.5129352,110.4893309,1063.825993,6,14,7% -2018-06-10 23:00:00,39.37997609,260.5206806,773.9451151,858.204712,110.5911882,919.5378037,806.4470227,113.090781,107.2564558,5.834325193,190.9866859,0,190.9866859,3.334732362,187.6519536,0.687310242,4.546943646,0.807025324,-0.807025324,0.392144231,0.392144231,0.142892805,2.794656043,89.8857449,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.098985,2.416002244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02471879,86.40159697,105.1237038,88.81759921,806.4470227,0,0.939690742,20.00031472,-0.939690742,159.9996853,0.996791005,0,908.982842,88.81759921,967.1121843,6,15,6% -2018-06-10 00:00:00,51.16716641,270.6631142,603.9311536,805.5052813,98.83881617,775.8451593,675.43401,100.4111493,95.85846119,4.552688138,149.4104553,0,149.4104553,2.980354984,146.4301003,0.893035523,4.723962507,1.162375857,-1.162375857,0.331375711,0.331375711,0.163659079,2.006834702,64.54670246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.14279905,2.15925704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45394491,62.04474555,93.59674396,64.20400259,675.43401,0,0.838522137,33.01561156,-0.838522137,146.9843884,0.990371282,0,762.5271904,64.20400259,804.547426,6,16,6% -2018-06-10 01:00:00,62.94023194,279.2382994,405.4595044,709.8002165,82.55739888,575.2005728,492.076059,83.12451371,80.0679887,3.056525011,100.7977613,0,100.7977613,2.489410181,98.30835108,1.098514279,4.873627723,1.708158274,-1.708158274,0.238041421,0.238041421,0.203614413,1.201786417,38.65358229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.96439627,1.803569202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870690168,37.15529356,77.83508644,38.95886276,492.076059,0,0.693259945,46.11128101,-0.693259945,133.888719,0.977876981,0,559.0249376,38.95886276,584.5227341,6,17,5% -2018-06-10 02:00:00,74.42654589,287.4111571,197.2706038,518.0146558,58.19737234,324.1758471,266.2462311,57.92961597,56.44250683,1.487109139,49.58540732,0,49.58540732,1.754865501,47.83054182,1.298988277,5.016270998,2.849947001,-2.849947001,0.042784049,0.042784049,0.295012897,0.483570862,15.5533012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.25468446,1.271394082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350345444,14.95042471,54.60502991,16.2218188,266.2462311,0,0.513974321,59.07107819,-0.513974321,120.9289218,0.952718875,0,308.2628398,16.2218188,318.8796958,6,18,3% -2018-06-10 03:00:00,85.31202266,295.8756211,23.67210691,113.4416184,14.40059407,49.77961111,35.63479775,14.14481336,13.96636302,0.178450341,6.173807429,0,6.173807429,0.434231044,5.739576385,1.488975687,5.164003764,8.490082218,-8.490082218,0,0,0.608335968,0.108557761,3.491590756,0.479637129,1,0.117244297,0,0.949262087,0.98802405,0.724496596,1,13.53944446,0.314598913,0.066838225,0.312029739,0.828007643,0.552504239,0.961238037,0.922476074,0.074323626,3.356249843,13.61376808,3.670848756,18.54302568,0,0.314124554,71.69202801,-0.314124554,108.307972,0.89082747,0,30.13240473,3.670848756,32.53490182,6,19,8% -2018-06-10 04:00:00,95.68286169,305.1745173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669980974,5.32630012,-5.738839919,5.738839919,1,0.488446885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101310132,84.18538132,-0.101310132,95.81461868,0.556465947,0,0,0,0,6,20,0% -2018-06-10 05:00:00,104.6921099,315.796824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827222018,5.511694346,-1.563603604,1.563603604,1,0.797545654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102694862,95.89437388,0.102694862,84.10562612,0,0.563120725,0,0,0,6,21,0% -2018-06-10 06:00:00,111.9970526,328.1345114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95471732,5.727027614,-0.508989759,0.508989759,1,0.617196065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286765239,106.6643944,0.286765239,73.33560564,0,0.87564135,0,0,0,6,22,0% -2018-06-10 07:00:00,116.9740102,342.2806202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041581617,5.973923788,0.078187429,-0.078187429,1,0.516782852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438361342,115.999375,0.438361342,64.000625,0,0.935938847,0,0,0,6,23,0% -2018-06-11 08:00:00,119.0336839,357.7368547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077529705,6.243685971,0.548834355,-0.548834355,1,0.436297487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547156402,123.1721481,0.547156402,56.82785186,0,0.95861845,0,0,0,6,0,0% -2018-06-11 09:00:00,117.8792357,13.37891689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057380782,0.23350615,1.040008166,-1.040008166,1,0.352301819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605739648,127.2820852,0.605739648,52.71791484,0,0.967456286,0,0,0,6,1,0% -2018-06-11 10:00:00,113.681396,27.97958433,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984114658,0.48833587,1.693882083,-1.693882083,1,0.240482793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610120838,127.5982409,0.610120838,52.40175914,0,0.968049021,0,0,0,6,2,0% -2018-06-11 11:00:00,106.9741096,40.84225534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867050428,0.71283183,2.860998705,-2.860998705,1,0.040894096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560001887,124.0559283,0.560001887,55.94407173,0,0.960714587,0,0,0,6,3,0% -2018-06-11 12:00:00,98.39229646,51.91885723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717269532,0.906155003,6.443566756,-6.443566756,1,0,#DIV/0!,0,0,0.363771005,1,0.153965304,0,0.944852116,0.983614079,0.724496596,1,0,0,0.053078146,0.312029739,0.860532077,0.585028673,0.961238037,0.922476074,0,0,0,0,0,0,-0.458797127,117.3095155,0.458797127,62.69048452,0,0.94101937,0,0,0,6,4,0% -2018-06-11 13:00:00,88.17263884,61.54357686,2.68468838,15.1142449,2.2027244,2.156542447,0,2.156542447,2.136304132,0.020238315,5.375030451,4.657676403,0.717354048,0.066420268,0.65093378,1.538902858,1.07413805,-31.00298057,31.00298057,0,0,0.820476751,0.016605067,0.534076033,1,0.793045313,0,0.032243784,0.961238037,1,0.637130222,0.912633626,2.05349679,0.046105426,0.115824807,0.212887669,0.724496596,0.448993192,0.975904221,0.937142258,0.012030314,0.516922713,2.065527104,0.563028139,0,0.96392796,-0.308164677,107.9486602,0.308164677,72.05133981,0,0.887749088,2.065527104,1.418754307,2.994073423,6,5,45% -2018-06-11 14:00:00,77.61066715,70.1880619,140.4682656,429.1214834,48.39875388,47.998262,0,47.998262,46.93935288,1.05890912,92.35003418,56.83247589,35.51755829,1.459401002,34.05815729,1.354561676,1.225012776,-4.552277292,4.552277292,0.691361044,0.691361044,0.34455294,0.844695516,27.16831141,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11989141,1.057331058,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611979026,26.11521432,45.73187044,27.17254538,0,56.83247589,-0.13243913,97.61056313,0.13243913,82.38943687,0,0.672468072,45.73187044,65.39057089,88.52869128,6,6,94% -2018-06-11 15:00:00,66.254027,78.37520129,346.0582505,668.8330542,76.73098005,122.9558827,45.92989151,77.02599116,74.4172579,2.608733268,86.21955152,0,86.21955152,2.313722156,83.90582937,1.156350914,1.367905314,-2.24886464,2.24886464,0.914732193,0.914732193,0.221728509,2.435613807,78.33771239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53269889,1.676283826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764593912,75.30118887,73.2972928,76.97747269,45.92989151,0,0.068671683,86.06230335,-0.068671683,93.93769665,0,0,73.2972928,76.97747269,123.6775091,6,7,69% -2018-06-11 16:00:00,54.53551901,86.73489461,549.6132288,783.9991662,94.73835938,314.3208158,218.2959509,96.02486498,91.8816483,4.143216677,136.1168016,0,136.1168016,2.856711083,133.2600905,0.951824366,1.513809487,-1.34433404,1.34433404,0.76004835,0.76004835,0.172372779,3.320413134,106.7959002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32013523,2.069677455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405628012,102.6562815,90.72576325,104.7259589,218.2959509,0,0.278439009,73.83293804,-0.278439009,106.167062,0.87042746,0,280.7365533,104.7259589,349.2775989,6,8,24% -2018-06-11 17:00:00,42.7158807,96.23831867,729.2991381,846.1183412,107.6334851,517.9764327,408.0907293,109.8857034,104.3879384,5.49776496,180.0725663,0,180.0725663,3.245546702,176.8270196,0.745532761,1.679675527,-0.828153963,0.828153963,0.671776358,0.671776358,0.147584824,3.959584812,127.3538585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.341657,2.351387537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868705718,122.417373,103.2103627,124.7687605,408.0907293,0,0.482309282,61.16366624,-0.482309282,118.8363338,0.94633208,0,489.3997114,124.7687605,571.0583698,6,9,17% -2018-06-11 18:00:00,31.16604714,108.9056602,870.7267768,881.1340987,116.7658047,706.9330931,587.124302,119.8087911,113.2448849,6.56390624,214.6387078,0,214.6387078,3.520919831,211.117788,0.543950138,1.900762345,-0.470653179,0.470653179,0.610640124,0.610640124,0.134101543,4.350910745,139.9402457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8552908,2.550894432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152220024,134.5158871,112.0075108,137.0667815,587.124302,0,0.666327978,48.21571497,-0.666327978,131.784285,0.974961878,0,684.431323,137.0667815,774.1387901,6,10,13% -2018-06-11 19:00:00,20.80924475,130.159458,963.4574706,899.7085829,122.4383475,861.9127962,735.9034672,126.009329,118.7463796,7.26294938,237.2933862,0,237.2933862,3.691967927,233.6014183,0.363189836,2.271711094,-0.189107774,0.189107774,0.562493024,0.562493024,0.127082255,4.489173788,144.3872605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1435368,2.674818195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.252391128,138.7905268,117.3959279,141.465345,735.9034672,0,0.817935364,35.12135336,-0.817935364,144.8786466,0.988870475,0,845.1091394,141.465345,937.6953784,6,11,11% -2018-06-11 20:00:00,14.84513509,172.1659893,1000.841297,906.4254602,124.6706332,968.5263087,840.0701907,128.4561181,120.9113536,7.544764455,246.4248394,0,246.4248394,3.759279576,242.6655598,0.259096485,3.004863374,0.055858758,-0.055858758,0.520601279,0.520601279,0.124565836,4.378362483,140.823188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2245922,2.723585256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.172108715,135.3646048,119.3967009,138.08819,840.0701907,0,0.926794566,22.05946506,-0.926794566,157.9405349,0.996050612,0,956.1491281,138.08819,1046.525087,6,12,9% -2018-06-11 21:00:00,18.36630756,220.3560025,980.2296034,902.77215,123.4433459,1016.781956,889.6714981,127.1104584,119.7210736,7.389384801,241.3902884,0,241.3902884,3.722272337,237.668016,0.320552538,3.84593777,0.288548682,-0.288548682,0.480808959,0.480808959,0.125933093,4.036025026,129.8124386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0804497,2.696773637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.924086392,124.7806536,118.0045361,127.4774272,889.6714981,0,0.985488418,9.772858305,-0.985488418,170.2271417,0.999263737,0,1007.021002,127.4774272,1090.452428,6,13,8% -2018-06-11 22:00:00,27.95825198,246.2353659,903.0877254,887.951754,118.7693229,1001.088692,879.0928462,121.9958463,115.1879896,6.80785674,222.5454079,0,222.5454079,3.581333297,218.9640746,0.48796355,4.297617869,0.529629841,-0.529629841,0.439581652,0.439581652,0.131514713,3.494370137,112.3909554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.723077,2.594663782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531659269,108.0344614,113.2547362,110.6291251,879.0928462,0,0.99002321,8.100181892,-0.99002321,171.8998181,0.999496134,0,991.904637,110.6291251,1064.309187,6,14,7% -2018-06-11 23:00:00,39.30370348,260.572401,774.931349,858.4599483,110.6556696,920.2004673,807.0397146,113.1607527,107.3189929,5.841759841,191.2277541,0,191.2277541,3.336676714,187.8910774,0.685979034,4.547846337,0.804701806,-0.804701806,0.392541576,0.392541576,0.142794158,2.799856709,90.05301621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.159098,2.417410921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.028486655,86.56238451,105.1875847,88.97979543,807.0397146,0,0.940101767,19.93134607,-0.940101767,160.0686539,0.996814269,0,909.6562876,88.97979543,967.8917841,6,15,6% -2018-06-11 00:00:00,51.09177722,270.7070619,605.1206499,805.9459592,98.92635085,776.8132933,676.3082819,100.5050114,95.94335637,4.561655063,149.7015019,0,149.7015019,2.982994477,146.7185074,0.891719733,4.724729539,1.158914126,-1.158914126,0.331967702,0.331967702,0.163482028,2.012506312,64.72912093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22440353,2.161169344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458053972,62.22009313,93.6824575,64.38126248,676.3082819,0,0.839148425,32.94969569,-0.839148425,147.0503043,0.990415785,0,763.5088555,64.38126248,805.6451042,6,16,6% -2018-06-11 01:00:00,62.86430466,279.2746369,406.8070169,710.6437358,82.68281946,576.5098808,493.2535703,83.25631052,80.18962739,3.066683129,101.1282632,0,101.1282632,2.493192074,98.63507109,1.097189098,4.874261931,1.701980445,-1.701980445,0.239097892,0.239097892,0.203248263,1.207506247,38.83755168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.08132001,1.80630917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.874834165,37.33213193,77.95615417,39.1384411,493.2535703,0,0.694094024,46.04493346,-0.694094024,133.9550665,0.97796365,0,560.3402162,39.1384411,585.9555432,6,17,5% -2018-06-11 02:00:00,74.34939001,287.4404156,198.6665809,519.9046206,58.41165789,325.8948845,267.746921,58.14796349,56.65033089,1.497632604,49.93033962,0,49.93033962,1.761327001,48.16901262,1.297641653,5.016781656,2.834070872,-2.834070872,0.045499027,0.045499027,0.294018539,0.48843791,15.70984218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.45445285,1.276075417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.353871603,15.10089786,54.80832445,16.37697327,267.746921,0,0.514992386,59.00305395,-0.514992386,120.9969461,0.952911186,0,309.9473605,16.37697327,320.665762,6,18,3% -2018-06-11 03:00:00,85.234958,295.8975773,24.5075741,116.901635,14.79657453,51.39002948,36.85487782,14.53515166,14.35040321,0.184748446,6.388316394,0,6.388316394,0.446171315,5.942145078,1.487630655,5.164386972,8.348852383,-8.348852383,0,0,0.603755168,0.111542829,3.587600802,0.473014149,1,0.119209028,0,0.949033945,0.987795908,0.724496596,1,13.91215554,0.323249599,0.066085328,0.312029739,0.829748315,0.554244911,0.961238037,0.922476074,0.076357973,3.448538352,13.98851351,3.771787952,19.42199914,0,0.315264007,71.62324764,-0.315264007,108.3767524,0.891402764,0,31.30133723,3.771787952,33.76989701,6,19,8% -2018-06-11 04:00:00,95.60194945,305.1878418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668568789,5.326532676,-5.820325112,5.820325112,1,0.474512096,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102592855,84.11150174,-0.102592855,95.88849826,0.562636625,0,0,0,0,6,20,0% -2018-06-11 05:00:00,104.6103547,315.798858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82579512,5.511729846,-1.572623379,1.572623379,1,0.799088126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101357726,95.81735975,0.101357726,84.18264025,0,0.556697695,0,0,0,6,21,0% -2018-06-11 06:00:00,111.9163952,328.1214168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953309582,5.726799069,-0.511616052,0.511616052,1,0.617645187,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285430366,106.5845753,0.285430366,73.41542466,0,0.874825926,0,0,0,6,22,0% -2018-06-11 07:00:00,116.8978037,342.248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040251563,5.973366205,0.077347057,-0.077347057,1,0.516926564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437085351,115.9180624,0.437085351,64.08193758,0,0.935605867,0,0,0,6,23,0% -2018-06-12 08:00:00,118.9662728,357.6852135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076353159,6.24278466,0.548808239,-0.548808239,1,0.436301953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545991942,123.0924756,0.545991942,56.90752444,0,0.958423557,0,0,0,6,0,0% -2018-06-12 09:00:00,117.8244053,13.31158818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056423812,0.232331042,1.04056044,-1.04056044,1,0.352207374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604731762,127.2095421,0.604731762,52.79045788,0,0.967318714,0,0,0,6,1,0% -2018-06-12 10:00:00,113.6407678,27.90342971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983405562,0.487006721,1.69511876,-1.69511876,1,0.240271309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609303857,127.5391843,0.609303857,52.46081568,0,0.967939138,0,0,0,6,2,0% -2018-06-12 11:00:00,106.9470006,40.76299678,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866577286,0.711448507,2.86363966,-2.86363966,1,0.040442466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559397065,124.014111,0.559397065,55.98588896,0,0.960618051,0,0,0,6,3,0% -2018-06-12 12:00:00,98.37673096,51.83922618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716997863,0.904765179,6.452777337,-6.452777337,1,0,#DIV/0!,0,0,0.364407948,1,0.153748986,0,0.944878992,0.983640955,0.724496596,1,0,0,0.053157347,0.312029739,0.860340568,0.584837164,0.961238037,0.922476074,0,0,0,0,0,0,-0.458411182,117.2846314,0.458411182,62.7153686,0,0.940927617,0,0,0,6,4,0% -2018-06-12 13:00:00,88.16679987,61.46370632,2.705050814,15.22230454,2.218090519,2.171598721,0,2.171598721,2.151206906,0.020391816,5.411185568,4.688431067,0.722754501,0.066883613,0.655870888,1.538800949,1.072744046,-30.89773017,30.89773017,0,0,0.819981091,0.016720903,0.537801726,1,0.792271535,0,0.032353544,0.961238037,1,0.636846761,0.912350165,2.067821903,0.046422355,0.115824807,0.212566667,0.724496596,0.448993192,0.9759483,0.937186337,0.012114237,0.520536321,2.07993614,0.566958676,0,0.97392059,-0.307997456,107.9385892,0.307997456,72.06141076,0,0.887660997,2.07993614,1.431469997,3.016804624,6,5,45% -2018-06-12 14:00:00,77.61132093,70.10629794,140.4568252,429.1008306,48.39652686,47.99601589,0,47.99601589,46.93719301,1.058822877,92.34983657,56.83511931,35.51471726,1.459333849,34.05538342,1.354573087,1.223585725,-4.552541871,4.552541871,0.691315799,0.691315799,0.344565149,0.844599309,27.16521707,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11781527,1.057282406,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611909324,26.11223993,45.72972459,27.16952233,0,56.83511931,-0.132451665,97.6112877,0.132451665,82.3887123,0,0.672503801,45.72972459,65.39135607,88.52705932,6,6,94% -2018-06-12 15:00:00,66.2595534,78.28839251,345.9583463,668.7572743,76.72063547,122.8296542,45.81444876,77.01520539,74.40722525,2.607980148,86.19501665,0,86.19501665,2.313410229,83.88160642,1.156447368,1.366390215,-2.249952439,2.249952439,0.914918217,0.914918217,0.221762638,2.435295814,78.32748466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52305512,1.676057835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764363527,75.29135758,73.28741865,76.96741542,45.81444876,0,0.068506842,86.07177035,-0.068506842,93.92822965,0,0,73.28741865,76.96741542,123.6610527,6,7,69% -2018-06-12 16:00:00,54.54367385,86.63787329,549.4790454,783.9424551,94.72796141,314.0811364,218.0673674,96.01376901,91.87156386,4.142205145,136.0839538,0,136.0839538,2.856397545,133.2275562,0.951966695,1.512116146,-1.345421766,1.345421766,0.760234362,0.760234362,0.172395949,3.320263182,106.7910772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31044169,2.069450298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405519372,102.6516454,90.71596106,104.7210957,218.0673674,0,0.27816757,73.84913007,-0.27816757,106.1508699,0.870252231,0,280.4895741,104.7210957,349.0274369,6,8,24% -2018-06-12 17:00:00,42.72367079,96.12208597,729.1914897,846.0878826,107.6262577,517.6789344,407.801052,109.8778824,104.380929,5.496953461,180.0462477,0,180.0462477,3.245328769,176.800919,0.745668724,1.677646884,-0.829206498,0.829206498,0.671956352,0.671956352,0.1475967,3.959865169,127.3628758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3349192,2.351229646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868908835,122.4260407,103.2038281,124.7772703,407.801052,0,0.481984272,61.18492168,-0.481984272,118.8150783,0.946262175,0,489.0905385,124.7772703,570.7547664,6,9,17% -2018-06-12 18:00:00,31.16816113,108.7530097,870.7044101,881.129252,116.7644103,706.6445791,586.837309,119.8072701,113.2435325,6.563737631,214.6332427,0,214.6332427,3.520877785,211.1123649,0.543987033,1.898098091,-0.471702813,0.471702813,0.610819622,0.610819622,0.134103387,4.351823873,139.969615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8539909,2.55086397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152881582,134.544118,112.0068725,137.0949819,586.837309,0,0.666005932,48.24045588,-0.666005932,131.7595441,0.974925594,0,684.1295843,137.0949819,773.855508,6,10,13% -2018-06-12 19:00:00,20.79340146,129.9420313,963.5726873,899.7299143,122.4452715,861.701235,735.6843223,126.0169127,118.7530948,7.263817931,237.3215306,0,237.3215306,3.692176711,233.6293539,0.362913318,2.267916284,-0.190198916,0.190198916,0.56267962,0.56267962,0.127074245,4.490868344,144.4417632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1499917,2.674969458,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253618827,138.8429169,117.4036105,141.5178863,735.6843223,0,0.817672404,35.1475333,-0.817672404,144.8524667,0.988850816,0,844.8856532,141.5178863,937.5062795,6,11,11% -2018-06-12 20:00:00,14.78883469,171.9514321,1001.136293,906.4768787,124.6881384,968.4553353,839.9800161,128.4753192,120.928331,7.546988258,246.4968924,0,246.4968924,3.759807423,242.737085,0.258113858,3.001118644,0.05467038,-0.05467038,0.520804504,0.520804504,0.124546617,4.380926172,140.905645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2409115,2.723967679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173966099,135.4438656,119.4148776,138.1678333,839.9800161,0,0.926642517,22.0826497,-0.926642517,157.9173503,0.996041759,0,956.0700505,138.1678333,1046.498134,6,12,9% -2018-06-12 21:00:00,18.28807435,220.3394292,980.7334846,902.8629078,123.4734492,1016.906924,889.7634714,127.1434524,119.7502691,7.393183271,241.5133679,0,241.5133679,3.72318006,237.7901879,0.319187111,3.845648512,0.287184463,-0.287184463,0.481042254,0.481042254,0.125899086,4.039476828,129.9234604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1085136,2.69743128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.926587211,124.887372,118.0351008,127.5848033,889.7634714,0,0.985491223,9.771911441,-0.985491223,170.2280886,0.999263881,0,1007.1436,127.5848033,1090.645302,6,13,8% -2018-06-12 22:00:00,27.88240832,246.2760226,903.8142166,888.100468,118.8139907,1001.454062,879.4094183,122.0446438,115.2313105,6.813333337,222.722901,0,222.722901,3.582680196,219.1402208,0.486639829,4.298327462,0.527962564,-0.527962564,0.439866774,0.439866774,0.131458422,3.498653508,112.5287233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7647187,2.595639606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534762556,108.1668891,113.2994812,110.7625287,879.4094183,0,0.990213889,8.022274281,-0.990213889,171.9777257,0.999505859,0,992.2743471,110.7625287,1064.766207,6,14,7% -2018-06-12 23:00:00,39.2304434,260.6146254,775.8771462,858.704264,110.7174741,920.8392877,807.6114643,113.2278234,107.3789338,5.84888966,191.4589372,0,191.4589372,3.338540348,188.1203969,0.684700404,4.548583292,0.802494192,-0.802494192,0.3929191,0.3929191,0.142699749,2.804831483,90.21302203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2167155,2.418761117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.032090861,86.71618819,105.2488063,89.13494931,807.6114643,0,0.940500121,19.86428447,-0.940500121,160.1357155,0.996836796,0,910.3056307,89.13494931,968.6426723,6,15,6% -2018-06-12 00:00:00,51.01926261,270.7431596,606.2636679,806.3682762,99.01038026,777.7506377,677.1555141,100.5951236,96.02485199,4.570271616,149.9811736,0,149.9811736,2.985528274,146.9956454,0.890454115,4.725359562,1.155642225,-1.155642225,0.33252723,0.33252723,0.163312409,2.017929467,64.90354825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.30274021,2.163005072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.46198303,62.3877593,93.76472324,64.55076437,677.1555141,0,0.839759616,32.88525561,-0.839759616,147.1147444,0.990459152,0,764.4595993,64.55076437,806.7067835,6,16,6% -2018-06-12 01:00:00,62.79137872,279.3041531,408.1006244,711.4502721,82.80296994,577.7750747,494.3924849,83.38258978,80.30615489,3.076434889,101.4455363,0,101.4455363,2.496815054,98.94872122,1.0959163,4.874777087,1.696166433,-1.696166433,0.240092146,0.240092146,0.202898415,1.212965198,39.0131303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.19333067,1.808934007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.878789157,37.50090478,78.07211983,39.30983879,494.3924849,0,0.694907999,45.98011364,-0.694907999,134.0198864,0.978048029,0,561.6117153,39.30983879,587.3392186,6,17,5% -2018-06-12 02:00:00,74.27553275,287.4635179,200.0034627,521.7032327,58.61587478,327.5462066,269.1901062,58.35610047,56.84838989,1.507710584,50.26063998,0,50.26063998,1.767484894,48.49315509,1.2963526,5.017184866,2.819200876,-2.819200876,0.048041946,0.048041946,0.2930743,0.49307622,15.85902618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64483469,1.280536789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.357232043,15.24429919,55.00206674,16.52483598,269.1901062,0,0.515983205,58.93680354,-0.515983205,121.0631965,0.953097621,0,311.5665166,16.52483598,322.3816912,6,18,3% -2018-06-12 03:00:00,85.16150863,295.9138463,25.31459024,120.2161367,15.17468736,52.94064885,38.03270222,14.90794663,14.71711455,0.190832074,6.5953883,0,6.5953883,0.457572813,6.137815487,1.486348721,5.16467092,8.219115005,-8.219115005,0,0,0.599444321,0.114393203,3.679278638,0.466779782,1,0.121072528,0,0.948816736,0.987578699,0.724496596,1,14.26802767,0.331509945,0.065373029,0.312029739,0.831399283,0.555895879,0.961238037,0.922476074,0.07830161,3.536662575,14.34632928,3.86817252,20.27980576,0,0.31636936,71.55649939,-0.31636936,108.4435006,0.891956882,0,32.4350416,3.86817252,34.96668315,6,19,8% -2018-06-12 04:00:00,95.52537694,305.1958922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667232347,5.326673183,-5.900305334,5.900305334,1,0.460834672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103828809,84.04030657,-0.103828809,95.95969343,0.568438085,0,0,0,0,6,20,0% -2018-06-12 05:00:00,104.5336139,315.7961323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824455742,5.511682273,-1.581464763,1.581464763,1,0.800600092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100077995,95.74366181,0.100077995,84.25633819,0,0.550389673,0,0,0,6,21,0% -2018-06-12 06:00:00,111.8414647,328.1043704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952001799,5.726501553,-0.514280934,0.514280934,1,0.618100909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284163231,106.5088374,0.284163231,73.49116265,0,0.874044793,0,0,0,6,22,0% -2018-06-12 07:00:00,116.8279511,342.2140449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039032404,5.97276183,0.076387241,-0.076387241,1,0.517090702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435886415,115.8417113,0.435886415,64.15828873,0,0.935291217,0,0,0,6,23,0% -2018-06-13 08:00:00,118.9055907,357.6325972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075294057,6.241866334,0.548597867,-0.548597867,1,0.436337929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544912197,123.0186637,0.544912197,56.98133632,0,0.958242098,0,0,0,6,0,0% -2018-06-13 09:00:00,117.7763191,13.24509502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055584549,0.231170518,1.040837364,-1.040837364,1,0.352160017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603814066,127.1435511,0.603814066,52.85644886,0,0.967193052,0,0,0,6,1,0% -2018-06-13 10:00:00,113.6065783,27.82962578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982808842,0.4857186,1.695898728,-1.695898728,1,0.240137927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608579977,127.4868968,0.608579977,52.51310324,0,0.96784153,0,0,0,6,2,0% -2018-06-13 11:00:00,106.9258469,40.68715911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866208084,0.71012489,2.865309155,-2.865309155,1,0.040156966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558885492,123.9787571,0.558885492,56.02124295,0,0.960536236,0,0,0,6,3,0% -2018-06-13 12:00:00,98.3665955,51.76373774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716820965,0.903447657,6.457909014,-6.457909014,1,0,#DIV/0!,0,0,0.364762268,1,0.153628726,0,0.944893929,0.983655892,0.724496596,1,0,0,0.053201388,0.312029739,0.860234099,0.584730695,0.961238037,0.922476074,0,0,0,0,0,0,-0.458115859,117.265594,0.458115859,62.734406,0,0.940857304,0,0,0,6,4,0% -2018-06-13 13:00:00,88.16551693,61.38852457,2.709537381,15.24610996,2.221474342,2.174914331,0,2.174914331,2.154488694,0.020425637,5.418363549,4.694419193,0.723944356,0.066985648,0.656958708,1.538778557,1.071431877,-30.8699993,30.8699993,0,0,0.819872188,0.016746412,0.538622173,1,0.792066699,0,0.032382587,0.961238037,1,0.636771771,0.912275175,2.070976483,0.046491932,0.115824807,0.212481746,0.724496596,0.448993192,0.975959958,0.937197994,0.012132718,0.521332431,2.083109201,0.567824363,0,0.976126078,-0.30790931,107.9332809,0.30790931,72.06671914,0,0.887614523,2.083109201,1.434248046,3.021795862,6,5,45% -2018-06-13 14:00:00,77.61649558,70.02974995,140.366279,428.9373274,48.37889673,47.9782348,0,47.9782348,46.9200945,1.058140302,92.34431976,56.85208807,35.4922317,1.458802236,34.03342946,1.354663402,1.222249711,-4.554512048,4.554512048,0.690978879,0.690978879,0.344661817,0.843852775,27.14120598,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10137952,1.056897254,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611368463,26.08915955,45.71274799,27.14605681,0,56.85208807,-0.132541713,97.61649298,0.132541713,82.38350702,0,0.67276027,45.71274799,65.39388291,88.51173647,6,6,94% -2018-06-13 15:00:00,66.26933013,78.20744223,345.7816,668.6231454,76.70232932,122.6452631,45.64914425,76.99611885,74.38947109,2.606647759,86.15161046,0,86.15161046,2.31285823,83.83875223,1.156618004,1.364977367,-2.251455677,2.251455677,0.915175286,0.915175286,0.221823051,2.434586494,78.30467047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.50598915,1.675657915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763849627,75.26942772,73.26983878,76.94508563,45.64914425,0,0.068273353,86.08517965,-0.068273353,93.91482035,0,0,73.26983878,76.94508563,123.6288584,6,7,69% -2018-06-13 16:00:00,54.55593836,86.54760945,549.2772162,783.8571188,94.71231884,313.7821141,217.7850375,95.99707665,91.85639298,4.140683671,136.0345462,0,136.0345462,2.855925864,133.1786204,0.952180751,1.510540745,-1.346663466,1.346663466,0.760446705,0.760446705,0.172430816,3.319805869,106.7763685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29585886,2.069108567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405188051,102.6375068,90.70104691,104.7066154,217.7850375,0,0.277837673,73.86880745,-0.277837673,106.1311925,0.870038803,0,280.1824803,104.7066154,348.710866,6,8,24% -2018-06-13 17:00:00,42.73564194,96.01394453,729.0260346,846.0410549,107.6151483,517.3288897,407.4630289,109.8658607,104.3701545,5.495706191,180.0057962,0,180.0057962,3.244993779,176.7608025,0.74587766,1.67575946,-0.830320474,0.830320474,0.672146853,0.672146853,0.147614959,3.959891978,127.3637381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3245625,2.350986947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868928258,122.4268695,103.1934907,124.7778565,407.4630289,0,0.481611414,61.209301,-0.481611414,118.790699,0.946181863,0,488.7276183,124.7778565,570.3922298,6,9,17% -2018-06-13 18:00:00,31.17490448,108.6103459,870.6330538,881.1137883,116.7599617,706.3125562,586.5101385,119.8024177,113.239218,6.563199716,214.6158074,0,214.6158074,3.520743642,211.0950637,0.544104727,1.895608138,-0.472769725,0.472769725,0.611002074,0.611002074,0.134109268,4.352519133,139.991977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8498436,2.550766784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153385295,134.5656131,112.0032289,137.1163799,586.5101385,0,0.665646306,48.26807264,-0.665646306,131.7319274,0.974885033,0,683.7831849,137.1163799,773.5231132,6,10,13% -2018-06-13 19:00:00,20.78333768,129.735605,963.6458304,899.743454,122.4496669,861.4549948,735.4332678,126.021727,118.7573577,7.264369315,237.3393975,0,237.3393975,3.692309248,233.6470883,0.362737672,2.264313465,-0.19128052,0.19128052,0.562864585,0.562864585,0.127069161,4.492366004,144.4899331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1540893,2.675065481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254703878,138.8892196,117.4087932,141.5642851,735.4332678,0,0.817381071,35.17651829,-0.817381071,144.8234817,0.988829021,0,844.6265517,141.5642851,937.2775451,6,11,11% -2018-06-13 20:00:00,14.73954437,171.7361447,1001.393659,906.5217187,124.7034093,968.3568856,839.8648158,128.4920698,120.9431414,7.548928394,246.5597543,0,246.5597543,3.760267897,242.7994864,0.25725358,2.99736117,0.053512376,-0.053512376,0.521002534,0.521002534,0.124529857,4.383300523,140.9820123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2551478,2.724301291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.175686308,135.5172728,119.4308341,138.241574,839.8648158,0,0.926469602,22.10898788,-0.926469602,157.8910121,0.996031689,0,955.9628048,138.241574,1046.43915,6,12,9% -2018-06-13 21:00:00,18.2151399,220.3090035,981.2013699,902.9471162,123.5013973,1017.009012,889.8349275,127.1740849,119.7773745,7.396710388,241.6276549,0,241.6276549,3.7240228,237.9036321,0.317914165,3.845117483,0.28587149,-0.28587149,0.481266786,0.481266786,0.125867535,4.042734612,130.0282419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1345683,2.698041841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928947464,124.988092,118.0635158,127.6861338,889.8349275,0,0.985478453,9.776221304,-0.985478453,170.2237787,0.999263224,0,1007.242834,127.6861338,1090.810855,6,13,8% -2018-06-13 22:00:00,27.81028159,246.3046229,904.5034291,888.24138,118.8563543,1001.797816,879.7068908,122.0909256,115.2723966,6.818528913,222.891286,0,222.891286,3.583957614,219.3073284,0.48538098,4.298826632,0.526372838,-0.526372838,0.440138633,0.440138633,0.13140509,3.502727846,112.6597681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8042123,2.596565091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.537714401,108.2928543,113.3419267,110.8894194,879.7068908,0,0.990391701,7.948940477,-0.990391701,172.0510595,0.999514924,0,992.622093,110.8894194,1065.197,6,14,7% -2018-06-13 23:00:00,39.16027958,260.6473557,776.7816059,858.9374854,110.7765472,921.453799,808.1618656,113.2919334,107.4362256,5.855707859,191.6800152,0,191.6800152,3.340321619,188.3396936,0.683475815,4.549154544,0.800404369,-0.800404369,0.393276481,0.393276481,0.142609643,2.809575103,90.36559317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2717865,2.420051642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035527598,86.86284538,105.3073141,89.28289702,808.1618656,0,0.940885547,19.79919183,-0.940885547,160.2008082,0.996858574,0,910.9303988,89.28289702,969.3642692,6,15,6% -2018-06-13 00:00:00,50.94971022,270.7714209,607.3589568,806.7719126,99.09082308,778.6562556,677.9748581,100.6813975,96.10286915,4.578528366,150.2491648,0,150.2491648,2.987953922,147.2612108,0.889240196,4.725852814,1.152562229,-1.152562229,0.33305394,0.33305394,0.163150345,2.023097937,65.069784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37773328,2.164762445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465727568,62.54755143,93.84346085,64.71231387,677.9748581,0,0.840355059,32.82236802,-0.840355059,147.177632,0.99050134,0,765.3784662,64.71231387,807.7313814,6,16,6% -2018-06-13 01:00:00,62.7215441,279.3268716,409.3388053,712.2192965,82.91774184,578.9948096,495.4915748,83.50323481,80.41746599,3.08576882,101.7492083,0,101.7492083,2.50027585,99.2489325,1.094697456,4.875173598,1.690717933,-1.690717933,0.241023895,0.241023895,0.202565065,1.218156426,39.18009805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.30032714,1.811441342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.882550184,37.66140053,78.18287732,39.47284187,495.4915748,0,0.695700857,45.91690723,-0.695700857,134.0830928,0.97813003,0,562.838066,39.47284187,588.6722515,6,17,5% -2018-06-13 02:00:00,74.2050647,287.4804973,201.2795168,523.4097534,58.80989951,329.1281943,270.5743002,58.55389407,57.03656405,1.517330019,50.57588464,0,50.57588464,1.773335456,48.80254919,1.295122701,5.017481212,2.80532987,-2.80532987,0.050414027,0.050414027,0.29218025,0.497478336,16.00061334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.82571486,1.284775501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.360421361,15.38039816,55.18613622,16.66517366,270.5743002,0,0.516945469,58.87241831,-0.516945469,121.1275817,0.953277999,0,313.1186638,16.66517366,324.0256866,6,18,3% -2018-06-13 03:00:00,85.09176898,295.9244732,26.09038231,123.3771664,15.53422509,54.42721524,39.16472403,15.26249121,15.06581089,0.196680322,6.794329456,0,6.794329456,0.468414202,6.325915254,1.485131535,5.164856395,8.100219344,-8.100219344,0,0,0.59540044,0.11710355,3.766452723,0.460935448,1,0.122831946,0,0.948610927,0.98737289,0.724496596,1,14.60639597,0.339364495,0.064702116,0.312029739,0.832958017,0.557454613,0.961238037,0.922476074,0.08015081,3.620457621,14.68654678,3.959822116,21.11231443,0,0.317438998,71.49188319,-0.317438998,108.5081168,0.892489422,0,33.52906408,3.959822116,36.12068846,6,19,8% -2018-06-13 04:00:00,95.45322827,305.1987274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665973115,5.326722667,-5.97842633,5.97842633,1,0.447475195,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105016354,83.9718912,-0.105016354,96.0281088,0.573883681,0,0,0,0,6,20,0% -2018-06-13 05:00:00,104.4619631,315.788721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823205199,5.511552923,-1.590103062,1.590103062,1,0.802077328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098857318,95.67337355,0.098857318,84.32662645,0,0.544220547,0,0,0,6,21,0% -2018-06-13 06:00:00,111.772323,328.0834617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950795048,5.726136628,-0.516977493,0.516977493,1,0.618562048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.282965383,106.437268,0.282965383,73.56273196,0,0.87329994,0,0,0,6,22,0% -2018-06-13 07:00:00,116.7644958,342.1768363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037924902,5.972112417,0.075311107,-0.075311107,1,0.517274732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434765886,115.7703978,0.434765886,64.22960224,0,0.934995577,0,0,0,6,23,0% -2018-06-14 08:00:00,118.8516602,357.5791102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074352792,6.240932809,0.548205183,-0.548205183,1,0.436405082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543918232,122.9507704,0.543918232,57.04922962,0,0.958074418,0,0,0,6,0,0% -2018-06-14 09:00:00,117.7349781,13.17953865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054863012,0.230026343,1.040840627,-1.040840627,1,0.352159459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60298727,127.0841461,0.60298727,52.91585394,0,0.96707951,0,0,0,6,1,0% -2018-06-14 10:00:00,113.578809,27.75826823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982324177,0.484473175,1.696224186,-1.696224186,1,0.24008227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607949512,127.4413866,0.607949512,52.55861342,0,0.967756328,0,0,0,6,2,0% -2018-06-14 11:00:00,106.9106127,40.6148321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865942197,0.708862545,2.86601181,-2.86601181,1,0.040036805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558467067,123.9498513,0.558467067,56.05014866,0,0.960469206,0,0,0,6,3,0% -2018-06-14 12:00:00,98.36183947,51.69247654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716737957,0.902203914,6.458981913,-6.458981913,1,0,#DIV/0!,0,0,0.364836297,1,0.153603606,0,0.944897048,0.983659011,0.724496596,1,0,0,0.053210588,0.312029739,0.86021186,0.584708456,0.961238037,0.922476074,0,0,0,0,0,0,-0.457910657,117.252368,0.457910657,62.74763202,0,0.940808394,0,0,0,6,4,0% -2018-06-14 13:00:00,88.16873247,61.31811281,2.698300855,15.18648703,2.212998342,2.166609208,0,2.166609208,2.146268277,0.020340932,5.396875637,4.67591129,0.720964347,0.066730065,0.654234282,1.538834679,1.07020296,-30.91846279,30.91846279,0,0,0.820145143,0.016682516,0.536567069,1,0.792424414,0,0.032331864,0.961238037,1,0.636902743,0.912406147,2.063074705,0.046316706,0.115824807,0.212630063,0.724496596,0.448993192,0.975939597,0.937177634,0.012086426,0.519339811,2.075161131,0.565656516,0,0.970605027,-0.307899469,107.9326882,0.307899469,72.06731176,0,0.887609333,2.075161131,1.427174597,3.009218361,6,5,45% -2018-06-14 14:00:00,77.62611759,69.95849837,140.1979328,428.6331221,48.34609793,47.94515594,0,47.94515594,46.8882847,1.056871237,92.33352207,56.88309688,35.45042519,1.457813231,33.99261196,1.354831337,1.221006136,-4.558165787,4.558165787,0.690354052,0.690354052,0.344841732,0.842466831,27.09662926,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.07080274,1.056180723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610364351,26.04631071,45.68116709,27.10249144,0,56.88309688,-0.132708122,97.62611252,0.132708122,82.37388748,0,0.67323331,45.68116709,65.39808705,88.4829071,6,6,94% -2018-06-14 15:00:00,66.28327419,78.1324343,345.5295027,668.4316962,76.6762078,122.4039145,45.43502991,76.96888457,74.36413723,2.604747343,86.08969889,0,86.08969889,2.31207057,83.77762832,1.156861374,1.363668231,-2.253367275,2.253367275,0.915502189,0.915502189,0.221909293,2.43349312,78.26950381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.48163728,1.675087257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763057481,75.23562419,73.24469476,76.91071144,45.43502991,0,0.067972584,86.10245256,-0.067972584,93.89754744,0,0,73.24469476,76.91071144,123.5812172,6,7,69% -2018-06-14 16:00:00,54.57222119,86.46419762,549.0092165,783.7437385,94.69154283,313.425231,217.4503242,95.97490681,91.83624344,4.138663376,135.9689401,0,135.9689401,2.855299391,133.1136407,0.95246494,1.509084934,-1.348055271,1.348055271,0.760684718,0.760684718,0.172477146,3.319047178,106.7519664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.27649035,2.068654689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404638382,102.6140506,90.68112873,104.6827053,217.4503242,0,0.277450796,73.891881,-0.277450796,106.108119,0.869787866,0,279.8167822,104.6827053,348.3295192,6,8,24% -2018-06-14 17:00:00,42.75169532,95.91401556,728.8041011,845.9782179,107.6002449,516.9278453,407.0781116,109.8497337,104.3557005,5.494033162,179.9515365,0,179.9515365,3.244544386,176.7069921,0.746157844,1.67401537,-0.831493219,0.831493219,0.672347405,0.672347405,0.147639461,3.959669784,127.3565915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3106687,2.350661363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868767279,122.42,103.179436,124.7706614,407.0781116,0,0.48119219,61.23670517,-0.48119219,118.7632948,0.946091414,0,488.3125423,124.7706614,569.9724447,6,9,17% -2018-06-14 18:00:00,31.18617318,108.4778625,870.5137808,881.0879362,116.7525254,705.9384749,586.1441683,119.7943066,113.232006,6.562300586,214.586664,0,214.586664,3.520519412,211.0661446,0.544301403,1.893295866,-0.473851804,0.473851804,0.611187121,0.611187121,0.134119101,4.352999422,140.0074247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8429111,2.55060433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153733263,134.5804621,111.9966444,137.1310664,586.1441683,0,0.665250475,48.29845596,-0.665250475,131.701544,0.974840339,0,683.3936243,137.1310664,773.1431647,6,10,13% -2018-06-14 19:00:00,20.77896082,129.5406051,963.6776306,899.7493401,122.4515778,861.1752947,735.1514747,126.02382,118.759211,7.264609039,237.3471655,0,237.3471655,3.69236687,233.6547986,0.362661282,2.260910075,-0.192350757,0.192350757,0.563047606,0.563047606,0.127066951,4.493667866,144.5318054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1558708,2.675107228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255647072,138.9294689,117.4115179,141.6045762,735.1514747,0,0.817062533,35.20818608,-0.817062533,144.7918139,0.988805173,0,844.3330993,141.6045762,937.0104623,6,11,11% -2018-06-14 20:00:00,14.69727012,171.5208227,1001.613723,906.560045,124.7164659,968.2318363,839.7254446,128.5063916,120.9558043,7.550587327,246.613505,0,246.613505,3.760661601,242.8528434,0.256515755,2.993603092,0.052386453,-0.052386453,0.521195079,0.521195079,0.124515532,4.385484776,141.0522654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2673198,2.724586528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.177268791,135.5848027,119.4445886,138.3093892,839.7254446,0,0.926276698,22.13833572,-0.926276698,157.8616643,0.996020449,0,955.8283033,138.3093892,1046.349032,6,12,9% -2018-06-14 21:00:00,18.14758292,220.2648257,981.6331492,903.0247701,123.5271848,1017.088673,889.8863233,127.2023497,119.8023844,7.399965323,241.7331224,0,241.7331224,3.724800388,238.008322,0.316735073,3.844346434,0.284611455,-0.284611455,0.481482264,0.481482264,0.125838441,4.045795825,130.1267011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1586088,2.698605201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931165303,125.0827347,118.0897741,127.7813399,889.8863233,0,0.985450624,9.78560725,-0.985450624,170.2143927,0.999261791,0,1007.319175,127.7813399,1090.949506,6,13,8% -2018-06-14 22:00:00,27.74195579,246.3211717,905.1548143,888.3744052,118.8963818,1002.119927,879.9852705,122.1346565,115.3112172,6.823439329,223.0504288,0,223.0504288,3.585164592,219.4652643,0.484188469,4.299115463,0.524862437,-0.524862437,0.440396927,0.440396927,0.131354747,3.506588991,112.7839558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8415281,2.597439543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540511787,108.4122282,113.3820398,111.0096678,879.9852705,0,0.990556758,7.880260097,-0.990556758,172.1197399,0.999523337,0,992.9478536,111.0096678,1065.601461,6,14,7% -2018-06-14 23:00:00,39.09330012,260.6706022,777.6437703,859.1594228,110.8328304,922.0434754,808.6904566,113.3530188,107.4908116,5.862207219,191.8907541,0,191.8907541,3.342018766,188.5487354,0.682306803,4.549560272,0.798434283,-0.798434283,0.393613386,0.393613386,0.14252391,2.814082092,90.51055341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3242567,2.421281219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038792896,87.00218667,105.3630496,89.42346789,808.6904566,0,0.94125774,19.73613842,-0.94125774,160.2638616,0.996879587,0,911.5300579,89.42346789,970.0559292,6,15,6% -2018-06-14 00:00:00,50.88321131,270.7918649,608.4052092,807.1565258,99.16759364,779.5291428,678.7654025,100.7637403,96.1773248,4.586415458,150.5051557,0,150.5051557,2.990268838,147.5148868,0.888079571,4.726209629,1.149676306,-1.149676306,0.333547462,0.333547462,0.162995964,2.0280053,65.22762168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.44930288,2.166439594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469282937,62.69927101,93.91858582,64.86571061,678.7654025,0,0.840934045,32.76111567,-0.840934045,147.2388843,0.990542305,0,766.2644322,64.86571061,808.7177424,6,16,6% -2018-06-14 01:00:00,62.6548937,279.34282,410.5199869,712.950241,83.02702138,580.1676684,496.549545,83.61812342,80.52345035,3.094673065,102.0388947,0,102.0388947,2.503571032,99.53532365,1.093534188,4.875451952,1.685636869,-1.685636869,0.241892808,0.241892808,0.202248426,1.223072959,39.33823063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.40220334,1.81382869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886112195,37.81340359,78.28831553,39.62723228,496.549545,0,0.69647153,45.8554046,-0.69647153,134.1445954,0.978209557,0,564.0178257,39.62723228,589.9530567,6,17,5% -2018-06-14 02:00:00,74.13807868,287.4913911,202.4929759,525.0233562,58.99359929,330.6391498,271.8979476,58.7412022,57.21472461,1.526477586,50.87564108,0,50.87564108,1.778874682,49.0967664,1.293953574,5.017671345,2.79245198,-2.79245198,0.052616276,0.052616276,0.291336522,0.501636797,16.13436374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.99696956,1.288788652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363434151,15.50896413,55.36040372,16.79775278,271.8979476,0,0.517877813,58.80999324,-0.517877813,121.1900068,0.95345213,0,314.6020808,16.79775278,325.5958741,6,18,3% -2018-06-14 03:00:00,85.02583451,295.9295063,26.83224681,126.3771787,15.87451734,55.84561501,40.24750013,15.59811488,15.39584207,0.20227281,6.984464161,0,6.984464161,0.478675269,6.505788893,1.483980761,5.164944239,7.991592048,-7.991592048,0,0,0.591620875,0.119668817,3.848960519,0.455482729,1,0.124484482,0,0.948416973,0.987178936,0.724496596,1,14.92663118,0.346798603,0.06407337,0.312029739,0.834422036,0.558918632,0.961238037,0.922476074,0.081902018,3.699767253,15.0085332,4.046565855,21.91545894,0,0.318471266,71.42950129,-0.318471266,108.5704987,0.892999965,0,34.57903726,4.046565855,37.22743368,6,19,8% -2018-06-14 04:00:00,95.38558851,305.1964089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664792578,5.3266822,-6.054316787,6.054316787,1,0.434497163,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106153816,83.9063531,-0.106153816,96.0936469,0.578985373,0,0,0,0,6,20,0% -2018-06-14 05:00:00,104.3954778,315.7767009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822044812,5.511343132,-1.598513041,1.598513041,1,0.803515519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.097697365,95.60658986,0.097697365,84.39341014,0,0.53821547,0,0,0,6,21,0% -2018-06-14 06:00:00,111.7090317,328.0587824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949690407,5.725705893,-0.519698507,0.519698507,1,0.619027368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281838382,106.3699558,0.281838382,73.6300442,0,0.872593362,0,0,0,6,22,0% -2018-06-14 07:00:00,116.707481,342.1371498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036929805,5.971419758,0.074122085,-0.074122085,1,0.517478066,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433725108,115.7041982,0.433725108,64.29580176,0,0.934719609,0,0,0,6,23,0% -2018-06-15 08:00:00,118.8045027,357.5248588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073529738,6.239985944,0.547632498,-0.547632498,1,0.436503017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543011093,122.8888532,0.543011093,57.11114677,0,0.95792085,0,0,0,6,0,0% -2018-06-15 09:00:00,117.700382,13.11502314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054259197,0.228900335,1.04057244,-1.04057244,1,0.352205322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602252055,127.03136,0.602252055,52.96863998,0,0.966978282,0,0,0,6,1,0% -2018-06-15 10:00:00,113.5574395,27.6894554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981951209,0.483272165,1.69609827,-1.69609827,1,0.240103803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607412733,127.4026609,0.607412733,52.59733905,0,0.967683649,0,0,0,6,2,0% -2018-06-15 11:00:00,106.9012598,40.54610763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865778959,0.707663077,2.865754707,-2.865754707,1,0.040080772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558141642,123.9273771,0.558141642,56.07262294,0,0.960417005,0,0,0,6,3,0% -2018-06-15 12:00:00,98.36240977,51.62552858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716747911,0.901035452,6.456033817,-6.456033817,1,0,#DIV/0!,0,0,0.36463284,1,0.153672649,0,0.944888474,0.983650437,0.724496596,1,0,0,0.053185302,0.312029739,0.860272985,0.584769581,0.961238037,0.922476074,0,0,0,0,0,0,-0.457795023,117.2449157,0.457795023,62.75508435,0,0.940780814,0,0,0,6,4,0% -2018-06-15 13:00:00,88.17638445,61.2525528,2.671675297,15.04517147,2.192896987,2.146913269,0,2.146913269,2.126773052,0.020140217,5.347320035,4.633417492,0.713902542,0.066123935,0.647778607,1.538968231,1.069058722,-31.04284118,31.04284118,0,0,0.820794724,0.016530984,0.531693263,1,0.793336857,0,0.03220241,0.961238037,1,0.637237098,0.912740502,2.044335153,0.045901483,0.115824807,0.213008701,0.724496596,0.448993192,0.975887596,0.937125633,0.011976641,0.514613641,2.056311795,0.560515124,0,0.957556621,-0.307967078,107.9367598,0.307967078,72.06324022,0,0.887644983,2.056311795,1.410485455,2.979446315,6,5,45% -2018-06-15 14:00:00,77.64011122,69.89262339,139.9531475,428.1902909,48.29835937,47.89701158,0,47.89701158,46.84198564,1.055025942,92.31740288,56.92776821,35.38963467,1.456373737,33.93326093,1.355075572,1.219856401,-4.563483572,4.563483572,0.689444658,0.689444658,0.345103774,0.840453161,27.03186269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.02629831,1.055137815,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.608905454,25.98405462,45.63520377,27.03919244,0,56.92776821,-0.132949694,97.6400773,0.132949694,82.3599227,0,0.673917901,45.63520377,65.40383452,88.44070538,6,6,94% -2018-06-15 15:00:00,66.30130073,78.06345142,345.2035753,668.1839377,76.642417,122.1068595,45.17320377,76.93365571,74.33136534,2.602290365,86.00965511,0,86.00965511,2.311051653,83.69860346,1.157175996,1.362464253,-2.255680271,2.255680271,0.915897734,0.915897734,0.222020925,2.43202302,78.22222033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4501357,1.674349055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761992399,75.19017351,73.2121281,76.86452257,45.17320377,0,0.067605941,86.12350813,-0.067605941,93.87649187,0,0,73.2121281,76.86452257,123.5184208,6,7,69% -2018-06-15 16:00:00,54.59242961,86.38773,548.6765365,783.6028896,94.66574476,313.0119986,217.0646198,95.94737877,91.81122327,4.136155494,135.8875001,0,135.8875001,2.854521484,133.0329786,0.952817643,1.507750322,-1.349593268,1.349593268,0.760947731,0.760947731,0.172534706,3.317993098,106.7180636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.25244002,2.068091098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403874705,102.5814619,90.65631472,104.649553,217.0646198,0,0.277008447,73.91825966,-0.277008447,106.0817403,0.869500089,0,279.394021,104.649553,347.8850605,6,8,25% -2018-06-15 17:00:00,42.77173121,95.82241582,728.5270183,845.8997267,107.5816352,516.4773632,406.6477669,109.8295963,104.3376519,5.491944395,179.8837934,0,179.8837934,3.243983234,176.6398102,0.746507536,1.672416653,-0.832722012,0.832722012,0.672557541,0.672557541,0.147670069,3.959203077,127.3415806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2933197,2.35025481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868429152,122.405571,103.1617489,124.7558258,406.6477669,0,0.480728098,61.26703394,-0.480728098,118.7329661,0.945991101,0,487.8469177,124.7558258,569.4971106,6,9,17% -2018-06-15 18:00:00,31.20186273,108.355744,870.3476515,881.0519191,116.7421672,705.5237862,585.7407779,119.7830083,113.2219601,6.561048234,214.5460717,0,214.5460717,3.520207073,211.0258646,0.544575237,1.891164496,-0.474946899,0.474946899,0.611374393,0.611374393,0.1341328,4.353267533,140.0160481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8332546,2.550378041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153927508,134.5887512,111.9871822,137.1391293,585.7407779,0,0.66481982,48.33149607,-0.66481982,131.6685039,0.974791653,0,682.962403,137.1391293,772.7172203,6,10,13% -2018-06-15 19:00:00,20.78017711,129.3574396,963.6687943,899.7477046,122.4510469,860.8633404,734.840102,126.0232384,118.758696,7.264542427,237.345007,0,237.345007,3.692350859,233.6526561,0.36268251,2.257713232,-0.193407762,0.193407762,0.563228365,0.563228365,0.127067565,4.494774883,144.5674109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1553758,2.675095628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256449102,138.9636943,117.4118249,141.6387899,734.840102,0,0.816717951,35.2424151,-0.816717951,144.7575849,0.988779355,0,844.0065468,141.6387899,936.706302,6,11,11% -2018-06-15 20:00:00,14.66201467,171.3061768,1001.796777,906.5919155,124.7273259,968.081038,839.5627339,128.5183041,120.9663369,7.551967268,246.6582161,0,246.6582161,3.760989072,242.8972271,0.255900431,2.989856815,0.051294345,-0.051294345,0.52138184,0.52138184,0.124503621,4.387478007,141.1163746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2774442,2.72482378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178712881,135.6464269,119.4561571,138.3712506,839.5627339,0,0.92606466,22.1705519,-0.92606466,157.8294481,0.99600809,0,955.6674319,138.3712506,1046.228648,6,12,9% -2018-06-15 21:00:00,18.08548496,220.2070277,982.028673,903.0958562,123.5508036,1017.14632,889.9180818,127.228238,119.8252911,7.402946948,241.8297339,0,241.8297339,3.725512584,238.1042213,0.315651259,3.84333767,0.283406074,-0.283406074,0.481688397,0.481688397,0.125811809,4.048657746,130.2187503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1806275,2.699121185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933238755,125.1712159,118.1138663,127.8703371,889.9180818,0,0.985408222,9.799891145,-0.985408222,170.2001089,0.999259607,0,1007.373059,127.8703371,1091.061638,6,13,8% -2018-06-15 22:00:00,27.67751875,246.3256864,905.7677815,888.4994493,118.9340389,1002.420322,880.2445232,122.1757989,115.3477388,6.828060135,223.2001853,0,223.2001853,3.586300092,219.6138852,0.483063831,4.299194259,0.523433156,-0.523433156,0.440641348,0.440641348,0.131307429,3.510232619,112.9011474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.876634,2.598262209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543151583,108.5248772,113.4197856,111.1231395,880.2445232,0,0.990709138,7.81632245,-0.990709138,172.1836776,0.9995311,0,993.2515624,111.1231395,1065.979435,6,14,7% -2018-06-15 23:00:00,39.02959617,260.6843812,778.4626409,859.369875,110.8862626,922.6077441,809.1967312,113.4110129,107.5426327,5.868380211,192.09091,0,192.09091,3.343629945,188.74728,0.681194959,4.549800761,0.796585912,-0.796585912,0.393929476,0.393929476,0.142442626,2.818346828,90.647722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3740691,2.422448513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041882683,87.13403834,105.4159518,89.55648686,809.1967312,0,0.941616357,19.67520141,-0.941616357,160.3247986,0.996899818,0,912.1040258,89.55648686,970.7169553,6,15,6% -2018-06-15 00:00:00,50.81985941,270.8045146,609.4010819,807.5217579,99.24060349,780.3682473,679.5261914,100.8420559,96.24813314,4.593922767,150.7488181,0,150.7488181,2.992470354,147.7563477,0.886973872,4.726430409,1.146986681,-1.146986681,0.334007415,0.334007415,0.162849405,2.032645035,65.37685151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.51736655,2.168034585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472644409,62.8427164,93.99001096,65.01075099,679.5261914,0,0.841495829,32.70158578,-0.841495829,147.2984142,0.990581999,0,767.116424,65.01075099,809.6646603,6,16,6% -2018-06-15 01:00:00,62.591522,279.3520291,411.6425691,713.6425124,83.13069155,581.2921877,497.5650576,83.72713005,80.62399448,3.103135565,102.3142038,0,102.3142038,2.50669707,99.80750672,1.092428143,4.87561268,1.680925339,-1.680925339,0.242698527,0.242698527,0.201948724,1.227707776,39.48730231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49885018,1.816093494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889470105,37.95669695,78.38832029,39.77279044,497.5650576,0,0.697218914,45.79569922,-0.697218914,134.2043008,0.978286512,0,565.1495052,39.77279044,591.1800011,6,17,5% -2018-06-15 02:00:00,74.07466846,287.4962386,203.6420606,526.5431544,59.16683531,332.077327,273.1594502,58.9178768,57.38273693,1.535139872,51.15947367,0,51.15947367,1.784098387,49.37537528,1.292846857,5.01775595,2.780562429,-2.780562429,0.054649509,0.054649509,0.290543295,0.505544212,16.26003966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.15846939,1.292573208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366265061,15.6297686,55.52473445,16.92234181,273.1594502,0,0.518778846,58.74962548,-0.518778846,121.2503745,0.953619817,0,316.0149995,16.92234181,327.0903337,6,18,4% -2018-06-15 03:00:00,84.9638005,295.9289954,27.53756353,129.209049,16.19493145,57.19188871,41.27770441,15.9141843,15.70659452,0.207589786,7.165138034,0,7.165138034,0.488336936,6.676801098,1.482898064,5.164935321,7.892727865,-7.892727865,0,0,0.588103281,0.122084234,3.92664863,0.45042331,1,0.126027414,0,0.948235318,0.986997281,0.724496596,1,15.22814007,0.353798448,0.063487551,0.312029739,0.835788932,0.560285528,0.961238037,0.922476074,0.083551847,3.77444402,15.31169191,4.128242468,22.68526416,0,0.319464501,71.36945671,-0.319464501,108.6305433,0.893488088,0,35.58070521,4.128242468,38.28255734,6,19,8% -2018-06-15 04:00:00,95.32254264,305.1889991,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66369222,5.326552875,-6.127592001,6.127592001,1,0.421966363,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107239507,83.84379044,-0.107239507,96.15620956,0.583753919,0,0,0,0,6,20,0% -2018-06-15 05:00:00,104.3342335,315.7601491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820975897,5.511054248,-1.606669224,1.606669224,1,0.804910309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096599809,95.54340566,0.096599809,84.45659434,0,0.532400633,0,0,0,6,21,0% -2018-06-15 06:00:00,111.6516518,328.0304242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94868894,5.725210949,-0.522436554,0.522436554,1,0.619495602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280783777,106.3069886,0.280783777,73.69301145,0,0.871927034,0,0,0,6,22,0% -2018-06-15 07:00:00,116.6569487,342.0950883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03604785,5.970685645,0.072823838,-0.072823838,1,0.51770008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432765408,115.6431883,0.432765408,64.35681169,0,0.934463963,0,0,0,6,23,0% -2018-06-16 08:00:00,118.7641387,357.4699501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072825254,6.239027607,0.546882417,-0.546882417,1,0.436631288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542191797,122.832969,0.542191797,57.16703105,0,0.957781711,0,0,0,6,0,0% -2018-06-16 09:00:00,117.6725296,13.05165327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053773081,0.227794322,1.040035452,-1.040035452,1,0.352297152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601609064,126.9852255,0.601609064,53.01477452,0,0.96688955,0,0,0,6,1,0% -2018-06-16 10:00:00,113.5424482,27.62328652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981689562,0.4821173,1.695524913,-1.695524913,1,0.240201853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606969876,127.3707263,0.606969876,52.62927369,0,0.967623589,0,0,0,6,2,0% -2018-06-16 11:00:00,106.8977492,40.48107813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865717686,0.706528098,2.864547076,-2.864547076,1,0.040287289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557909033,123.9113164,0.557909033,56.08868359,0,0.960379655,0,0,0,6,3,0% -2018-06-16 12:00:00,98.36825225,51.56297985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716849881,0.899943771,6.449118483,-6.449118483,1,0,#DIV/0!,0,0,0.364155078,1,0.153834845,0,0.944868326,0.983630289,0.724496596,1,0,0,0.053125909,0.312029739,0.86041658,0.584913176,0.961238037,0.922476074,0,0,0,0,0,0,-0.457768373,117.2431982,0.457768373,62.75680182,0,0.940774455,0,0,0,6,4,0% -2018-06-16 13:00:00,88.18840787,61.19192566,2.623335802,14.73541198,2.157505525,2.112224587,0,2.112224587,2.092448774,0.019775813,5.24126067,4.540145781,0.701114889,0.065056752,0.636058137,1.539178079,1.068000578,-31.24390387,31.24390387,0,0,0.82242827,0.016264188,0.523112193,1,0.794795014,0,0.031995321,0.961238037,1,0.637772246,0.91327565,2.011341351,0.045169353,0.115824807,0.213614741,0.724496596,0.448993192,0.975804299,0.937042336,0.011783349,0.506294215,2.0231247,0.551463568,0,0.931660553,-0.308111221,107.9454407,0.308111221,72.05455928,0,0.887720938,2.0231247,1.378518148,2.925337258,6,5,45% -2018-06-16 14:00:00,77.65840022,69.83220387,139.5520738,427.0324744,48.27827353,47.87450794,0,47.87450794,46.82250546,1.052002479,92.20035681,56.90857277,35.29178405,1.455768075,33.83601597,1.355394776,1.218801881,-4.570448907,4.570448907,0.688253515,0.688253515,0.345951674,0.837502049,26.9369448,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.00757323,1.054699015,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.606767384,25.89281594,45.61434061,26.94751496,0,56.90857277,-0.133265211,97.65831739,0.133265211,82.34168261,0,0.674808308,45.61434061,65.34989264,88.38453835,6,6,94% -2018-06-16 15:00:00,66.32332484,78.00057408,344.6969348,667.3926383,76.6887485,121.8067615,44.83199067,76.97477088,74.37629978,2.598471095,85.88821133,0,85.88821133,2.312448719,83.57576261,1.157560389,1.361366836,-2.258387988,2.258387988,0.916360781,0.916360781,0.222481667,2.429489854,78.14074502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49332839,1.675361225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.760157129,75.11185634,73.25348552,76.78721757,44.83199067,0,0.067174835,86.14826493,-0.067174835,93.85173507,0,0,73.25348552,76.78721757,123.5091837,6,7,69% -2018-06-16 16:00:00,54.61647134,86.31829528,548.1607571,783.036777,94.74580438,312.5403031,216.519167,96.02113614,91.8888688,4.132267331,135.7648575,0,135.7648575,2.856935577,132.9079219,0.953237251,1.506538457,-1.35127359,1.35127359,0.761235083,0.761235083,0.1728431,3.316160862,106.6591325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32707586,2.0698401,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402547256,102.5248152,90.72962311,104.5946553,216.519167,0,0.27651213,73.94785248,-0.27651213,106.0521475,0.869176106,0,278.9229096,104.5946553,347.3780196,6,8,25% -2018-06-16 17:00:00,42.79565092,95.73925618,728.070312,845.4662119,107.682901,515.9346765,406.0103107,109.9243658,104.4358643,5.48850155,179.7761132,0,179.7761132,3.247036774,176.5290764,0.746925014,1.670965244,-0.834004141,0.834004141,0.672776798,0.672776798,0.147901788,3.958162939,127.3081262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3877251,2.352467089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867675575,122.3734133,103.2554007,124.7258804,406.0103107,0,0.480220623,61.30018778,-0.480220623,118.6998122,0.94588119,0,487.2929164,124.7258804,568.9235106,6,9,17% -2018-06-16 18:00:00,31.22187004,108.2441637,870.0066812,880.7022003,116.8596941,704.9939453,585.0995243,119.894421,113.3359432,6.558477856,214.4669434,0,214.4669434,3.523750944,210.9431925,0.544924431,1.889217053,-0.47605286,0.47605286,0.611563523,0.611563523,0.134320456,4.353114175,140.0111156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9428195,2.552945564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153816401,134.5840099,112.0966359,137.1369555,585.0995243,0,0.664355697,48.36708479,-0.664355697,131.6329152,0.974739112,0,682.4160264,137.1369555,772.169421,6,10,13% -2018-06-16 19:00:00,20.78689318,129.1864929,963.4892797,899.4548646,122.5827339,860.4181937,734.2685924,126.1496014,118.8864122,7.26318917,237.3054525,0,237.3054525,3.69632171,233.6091308,0.362799727,2.254729651,-0.194449676,0.194449676,0.563406543,0.563406543,0.127227917,4.495575767,144.5931701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2781415,2.677972496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25702934,138.988455,117.5351708,141.6664275,734.2685924,0,0.816348459,35.27908655,-0.816348459,144.7209135,0.988751645,0,843.5444496,141.6664275,936.262293,6,11,11% -2018-06-16 20:00:00,14.63377768,171.0929217,1001.811746,906.3410349,124.8720522,967.7804076,839.1216283,128.6587792,121.1066991,7.552080108,246.6662095,0,246.6662095,3.765353104,242.9008564,0.255407603,2.98613481,0.050237779,-0.050237779,0.521562523,0.521562523,0.124646225,4.389253468,141.1734795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4123657,2.727985506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179999196,135.7013183,119.5923649,138.4293038,839.1216283,0,0.925834312,22.20549979,-0.925834312,157.7945002,0.995994657,0,955.3530229,138.4293038,1045.952234,6,12,9% -2018-06-16 21:00:00,18.02892899,220.1357691,982.2567372,902.8802497,123.7075732,1017.036587,889.6545876,127.3819996,119.9773335,7.404666192,241.8897579,0,241.8897579,3.730239765,238.1595181,0.314664172,3.842093972,0.282257052,-0.282257052,0.481884891,0.481884891,0.125942199,4.051370155,130.3059907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3267765,2.702546011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.935203886,125.2550747,118.2619804,127.9576207,889.6545876,0,0.985351698,9.818899948,-0.985351698,170.1811001,0.999256697,0,1007.255285,127.9576207,1091.000988,6,13,8% -2018-06-16 22:00:00,27.61706033,246.3181947,906.2120079,888.3206968,119.101606,1002.533234,880.1915718,122.3416621,115.5102532,6.831408901,223.3129459,0,223.3129459,3.59135286,219.7215931,0.482008633,4.299063505,0.52208678,-0.52208678,0.440871592,0.440871592,0.131427972,3.51378097,113.0152745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.032849,2.601922922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.545722351,108.6345806,113.5785714,111.2365035,880.1915718,0,0.990848885,7.757225016,-0.990848885,172.242775,0.999538218,0,993.3636869,111.2365035,1066.165754,6,14,7% -2018-06-16 23:00:00,38.96926008,260.688714,779.1101512,859.2427435,111.0631059,922.9605824,809.3731775,113.5874049,107.7141435,5.873261417,192.2532388,0,192.2532388,3.348962423,188.9042764,0.680141895,4.549876382,0.794861215,-0.794861215,0.394224416,0.394224416,0.142551224,2.822562971,90.78332763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5389318,2.426311875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.044937264,87.26438763,105.5838691,89.69069951,809.3731775,0,0.941961028,19.61646298,-0.941961028,160.383537,0.996919248,0,912.4635683,89.69069951,971.1643373,6,15,6% -2018-06-16 00:00:00,50.75974843,270.8093959,610.2230011,807.4910664,99.42550047,780.9670642,679.9394907,101.0275735,96.42745479,4.600118742,150.9536772,0,150.9536772,2.99804568,147.9556315,0.885924738,4.726515604,1.144495568,-1.144495568,0.33443342,0.33443342,0.162933059,2.037283198,65.52603075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.68973734,2.17207389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476004741,62.98611316,94.16574208,65.15818705,679.9394907,0,0.842039645,32.64386804,-0.842039645,147.356132,0.990620373,0,767.727654,65.15818705,810.3723842,6,16,6% -2018-06-16 01:00:00,62.53152316,279.3545312,412.5918401,713.8402915,83.32549237,582.1422596,498.2190467,83.9232129,80.81292133,3.11029157,102.5502395,0,102.5502395,2.512571033,100.0376685,1.091380965,4.875656349,1.676585504,-1.676585504,0.243440682,0.243440682,0.20195623,1.232398759,39.63818043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.68045385,1.82034916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.892868706,38.10172674,78.57332256,39.92207591,498.2190467,0,0.697941896,45.73788561,-0.697941896,134.2621144,0.978360799,0,566.011307,39.92207591,592.1395072,6,17,5% -2018-06-16 02:00:00,74.01492686,287.4950802,204.6317899,527.4093068,59.39016755,333.2086932,274.0667574,59.14193575,57.59933488,1.542600869,51.40617928,0,51.40617928,1.790832678,49.61534661,1.291804169,5.017735733,2.769657258,-2.769657258,0.056514403,0.056514403,0.290229429,0.509585377,16.39001742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.36667158,1.297452179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369192871,15.75470817,55.73586445,17.05216035,274.0667574,0,0.519647177,58.69141219,-0.519647177,121.3085878,0.953780869,0,317.1354944,17.05216035,328.2957923,6,18,4% -2018-06-16 03:00:00,84.90576037,295.9229908,28.16752176,131.4718064,16.49359355,58.33439897,42.12580945,16.20858952,15.99625085,0.212338677,7.326884463,0,7.326884463,0.4973427,6.829541763,1.481885072,5.164830521,7.803180831,-7.803180831,0,0,0.585553592,0.124335675,3.999062711,0.445758865,1,0.127458142,0,0.948066385,0.986828348,0.724496596,1,15.50916276,0.360323093,0.062945387,0.312029739,0.837056401,0.561552997,0.961238037,0.922476074,0.085090497,3.84405119,15.59425325,4.204374283,23.34785643,0,0.320417058,71.31185134,-0.320417058,108.6881487,0.893953377,0,36.46614835,4.204374283,39.21782723,6,19,8% -2018-06-16 04:00:00,95.26417392,305.1765605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662673494,5.326335781,-6.197858931,6.197858931,1,0.40995001,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108271765,83.78430001,-0.108271765,96.21569999,0.588199088,0,0,0,0,6,20,0% -2018-06-16 05:00:00,104.2783035,315.7391418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819999734,5.510687602,-1.61454627,1.61454627,1,0.806257363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095566288,95.48391405,0.095566288,84.51608595,0,0.526802952,0,0,0,6,21,0% -2018-06-16 06:00:00,111.6002426,327.9984773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947791679,5.72465337,-0.525184149,0.525184149,1,0.619965469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279803076,106.248452,0.279803076,73.75154798,0,0.871302894,0,0,0,6,22,0% -2018-06-16 07:00:00,116.6129397,342.0507522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035279749,5.969911835,0.071420176,-0.071420176,1,0.51794012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431888064,115.5874412,0.431888064,64.41255876,0,0.934229262,0,0,0,6,23,0% -2018-06-17 08:00:00,118.7305879,357.4144889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072239682,6.238059626,0.545957776,-0.545957776,1,0.436789411,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541461313,122.7831722,0.541461313,57.21682775,0,0.957657299,0,0,0,6,0,0% -2018-06-17 09:00:00,117.6514188,12.98953222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053404628,0.226710106,1.039232675,-1.039232675,1,0.352434435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601058898,126.9457734,0.601058898,53.05422664,0,0.966813477,0,0,0,6,1,0% -2018-06-17 10:00:00,113.5338131,27.55985937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981538851,0.481010287,1.694508738,-1.694508738,1,0.240375629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606621138,127.3455882,0.606621138,52.65441184,0,0.967576232,0,0,0,6,2,0% -2018-06-17 11:00:00,106.900041,40.41983447,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865757687,0.705459195,2.862400051,-2.862400051,1,0.040654452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557769026,123.901651,0.557769026,56.09834902,0,0.960357159,0,0,0,6,3,0% -2018-06-17 12:00:00,98.37931278,51.50491443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717042924,0.898930338,6.438304179,-6.438304179,1,0,#DIV/0!,0,0,0.363406506,1,0.154089171,0,0.944836721,0.983598684,0.724496596,1,0,0,0.053032803,0.312029739,0.860641738,0.585138334,0.961238037,0.922476074,0,0,0,0,0,0,-0.457830103,117.2471764,0.457830103,62.75282361,0,0.940789182,0,0,0,6,4,0% -2018-06-17 13:00:00,88.20473597,61.13631009,2.561009757,14.35318087,2.111351275,2.066992217,0,2.066992217,2.047686244,0.019305973,5.110141281,4.425529784,0.684611497,0.063665031,0.620946466,1.539463058,1.067029904,-31.52350184,31.52350184,0,0,0.82442141,0.015916258,0.511921561,1,0.796788857,0,0.03171173,0.961238037,1,0.638505636,0.914009041,1.968313905,0.044214791,0.115824807,0.214445313,0.724496596,0.448993192,0.975690012,0.936928049,0.011531275,0.495444418,1.97984518,0.539659209,0,0.899316964,-0.308330942,107.9586741,0.308330942,72.04132592,0,0.88783658,1.97984518,1.338105706,2.855608603,6,5,44% -2018-06-17 14:00:00,77.68090918,69.77731561,139.0775577,425.7405164,48.24329653,47.83700852,0,47.83700852,46.78858314,1.048425376,92.07737095,56.90169352,35.17567743,1.454713389,33.72096404,1.355787631,1.217843901,-4.579048677,4.579048677,0.686782868,0.686782868,0.346880527,0.833950876,26.82272685,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9749658,1.053934898,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.604194571,25.7830253,45.57916037,26.8369602,0,56.90169352,-0.133653461,97.68076328,0.133653461,82.31923672,0,0.675898203,45.57916037,65.29671258,88.31455282,6,6,94% -2018-06-17 15:00:00,66.34926303,77.94387881,344.1195803,666.5467983,76.72744028,121.4537258,44.44578218,77.00794361,74.41382486,2.594118753,85.74939173,0,85.74939173,2.313615419,83.43577631,1.158013096,1.360377317,-2.261484175,2.261484175,0.916890261,0.916890261,0.222967377,2.426593213,78.04757908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52939892,1.676206495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758058522,75.0223017,73.28745745,76.69850819,44.44578218,0,0.066680663,86.17664257,-0.066680663,93.82335743,0,0,73.28745745,76.69850819,123.4850971,6,7,68% -2018-06-17 16:00:00,54.64425607,86.2559767,547.5832725,782.4441426,94.820887,312.015483,215.9258815,96.08960141,91.96168741,4.127914008,135.6271037,0,135.6271037,2.859199595,132.7679041,0.953722186,1.505450793,-1.3530925,1.3530925,0.761546135,0.761546135,0.173162497,3.314043757,106.5910392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.39707187,2.071480373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401013421,102.4593612,90.79808529,104.5308416,215.9258815,0,0.275963318,73.98057017,-0.275963318,106.0194298,0.868816499,0,278.3980538,104.5308416,346.811399,6,8,25% -2018-06-17 17:00:00,42.82335826,95.66463927,727.5610638,845.0176341,107.7805057,515.3458195,405.3306311,110.0151884,104.5305258,5.484662622,179.6555833,0,179.6555833,3.249979916,176.4056033,0.747408598,1.669662933,-0.835336958,0.835336958,0.673004723,0.673004723,0.148139464,3.956885868,127.2670512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4787174,2.354599385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866750341,122.3339305,103.3454678,124.6885298,405.3306311,0,0.47967121,61.33606957,-0.47967121,118.6639304,0.945761932,0,486.6917487,124.6885298,568.2978977,6,9,17% -2018-06-17 18:00:00,31.24609487,108.1432803,869.6208979,880.3427211,116.9743298,704.4265017,584.4238099,120.0026918,113.4471222,6.555569658,214.3768625,0,214.3768625,3.527207633,210.8496548,0.545347234,1.887456305,-0.477167583,0.477167583,0.611754152,0.611754152,0.134511866,4.352752888,139.9994954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.049689,2.555449923,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.15355465,134.5728401,112.2032437,137.12829,584.4238099,0,0.663859422,48.40511726,-0.663859422,131.5948827,0.974682849,0,681.831108,137.12829,771.5788312,6,10,13% -2018-06-17 19:00:00,20.79901723,129.0281206,963.2704516,899.1547962,122.7119844,859.9432832,733.6699784,126.2733049,119.0117653,7.261539551,237.2562924,0,237.2562924,3.70021909,233.5560733,0.363011332,2.251965533,-0.19547468,0.19547468,0.563581829,0.563581829,0.127390998,4.496182451,144.6126832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3986357,2.680796134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25746888,139.0072117,117.6561046,141.6880078,733.6699784,0,0.815955141,35.31808619,-0.815955141,144.6819138,0.988722121,0,843.051842,141.6880078,935.7838094,6,11,11% -2018-06-17 20:00:00,14.61255538,170.8817637,1001.790202,906.0839186,125.014555,967.4558042,838.6589815,128.7968227,121.244905,7.551917702,246.6652829,0,246.6652829,3.769650089,242.8956328,0.255037204,2.982449409,0.049218438,-0.049218438,0.521736841,0.521736841,0.124791154,4.390834875,141.224343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5452144,2.731098657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18114492,135.7502102,119.7263593,138.4813089,838.6589815,0,0.925586432,22.24304927,-0.925586432,157.7569507,0.995980193,0,955.014094,138.4813089,1045.647341,6,12,9% -2018-06-17 21:00:00,17.9779976,220.0512327,982.4481677,902.6582426,123.8621118,1016.90576,889.3724384,127.5333214,120.1272121,7.406109276,241.9408323,0,241.9408323,3.734899672,238.2059327,0.313775251,3.840618534,0.281166047,-0.281166047,0.482071464,0.482071464,0.126074958,4.05387672,130.3866104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4708455,2.705922098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937019884,125.3325694,118.4078654,128.0384915,889.3724384,0,0.985281468,9.842467786,-0.985281468,170.1575322,0.99925308,0,1007.116014,128.0384915,1090.914646,6,13,8% -2018-06-17 22:00:00,27.56067036,246.298734,906.6165744,888.1340885,119.2667064,1002.624414,880.1195805,122.5048339,115.6703752,6.834458694,223.4160161,0,223.4160161,3.596331246,219.8196849,0.481024442,4.298723852,0.52082503,-0.52082503,0.441087364,0.441087364,0.13155143,3.517102113,113.1220939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1867644,2.605529745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548128508,108.7372595,113.7348929,111.3427892,880.1195805,0,0.990976016,7.703071425,-0.990976016,172.2969286,0.999544692,0,993.4537479,111.3427892,1066.325377,6,14,7% -2018-06-17 23:00:00,38.9123833,260.6836262,779.7123314,859.1042162,111.2369755,923.2870554,809.5264842,113.7605712,107.8827703,5.877800906,192.4044872,0,192.4044872,3.354205234,189.050282,0.679149208,4.549787583,0.793262079,-0.793262079,0.394497885,0.394497885,0.142664122,2.826524614,90.91074772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7010223,2.430110274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.047807461,87.38686866,105.7488298,89.81697894,809.5264842,0,0.942291365,19.56000822,-0.942291365,160.4399918,0.996937856,0,912.7964274,89.81697894,971.5798438,6,15,6% -2018-06-17 00:00:00,50.70297053,270.8065371,610.9918298,807.441053,99.60650644,781.5302658,680.3213486,101.2089173,96.60300276,4.605914497,151.1455466,0,151.1455466,3.003503678,148.142043,0.884933776,4.726465708,1.142205099,-1.142205099,0.334825114,0.334825114,0.163024285,2.04163965,65.66614923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.85848073,2.17602819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479160976,63.12080038,94.33764171,65.29682857,680.3213486,0,0.842564725,32.58805252,-0.842564725,147.4119475,0.990657378,0,768.3030051,65.29682857,811.0384734,6,16,6% -2018-06-17 01:00:00,62.4749889,279.3503601,413.4792734,713.9994317,83.51459437,582.9414212,498.8281186,84.11330263,80.99632121,3.116981417,102.7711101,0,102.7711101,2.518273156,100.2528369,1.090394256,4.87558355,1.67261946,-1.67261946,0.244118916,0.244118916,0.201980123,1.236792885,39.77951064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85674479,1.824480329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896052235,38.23757871,78.75279703,40.06205904,498.8281186,0,0.698639378,45.68205724,-0.698639378,134.3179428,0.978432319,0,566.82235,40.06205904,593.0421664,6,17,5% -2018-06-17 02:00:00,73.95894376,287.4879571,205.5534263,528.1813491,59.60313767,334.2640238,274.9085921,59.35543171,57.80588316,1.549548553,51.63606253,0,51.63606253,1.797254513,49.83880801,1.29082708,5.017611412,2.759733007,-2.759733007,0.05821155,0.05821155,0.289964214,0.513360009,16.51142255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.56521365,1.302104777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.371927579,15.8714074,55.93714122,17.17351218,274.9085921,0,0.520481446,58.63544855,-0.520481446,121.3645515,0.953935096,0,318.1820954,17.17351218,329.4218157,6,18,4% -2018-06-17 03:00:00,84.85180375,295.9115428,28.75511213,133.5469318,16.77166305,59.39498474,42.91228104,16.48270371,16.26593553,0.216768181,7.477737372,0,7.477737372,0.505727522,6.972009851,1.480943352,5.164630716,7.722556315,-7.722556315,0,0,0.583258482,0.12643188,4.066483882,0.44149093,1,0.128774235,0,0.947910574,0.986672537,0.724496596,1,15.77079202,0.366397868,0.062447553,0.312029739,0.838222294,0.56271889,0.961238037,0.922476074,0.086523802,3.908858984,15.85731582,4.275256852,23.96689816,0,0.321327345,71.2567839,-0.321327345,108.7432161,0.89439544,0,37.29320025,4.275256852,40.09127036,6,19,8% -2018-06-17 04:00:00,95.21056189,305.1591547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661737788,5.326031991,-6.264722238,6.264722238,1,0.398515711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109248986,83.72797525,-0.109248986,96.27202475,0.59232985,0,0,0,0,6,20,0% -2018-06-17 05:00:00,104.2277574,315.7137535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819117539,5.510244492,-1.622119366,1.622119366,1,0.807552439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094598374,95.42820421,0.094598374,84.57179579,0,0.521449687,0,0,0,6,21,0% -2018-06-17 06:00:00,111.5548595,327.9630287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946999595,5.724034676,-0.527933858,0.527933858,1,0.620435696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278897712,106.1944277,0.278897712,73.80557225,0,0.870722803,0,0,0,6,22,0% -2018-06-17 07:00:00,116.5754916,342.0042386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034626156,5.969100019,0.069915005,-0.069915005,1,0.51819752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431094283,115.5370262,0.431094283,64.46297384,0,0.934016091,0,0,0,6,23,0% -2018-06-18 08:00:00,118.7038673,357.3585762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071773319,6.237083765,0.544861602,-0.544861602,1,0.436976868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540820541,122.7395141,0.540820541,57.26048586,0,0.95754789,0,0,0,6,0,0% -2018-06-18 09:00:00,117.637046,12.92875942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053153776,0.22564942,1.038167447,-1.038167447,1,0.3526166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600602097,126.9130319,0.600602097,53.08696814,0,0.966750207,0,0,0,6,1,0% -2018-06-18 10:00:00,113.5315111,27.49926818,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981498674,0.479952772,1.693055001,-1.693055001,1,0.240624233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606366664,127.3272502,0.606366664,52.67274976,0,0.967541641,0,0,0,6,2,0% -2018-06-18 11:00:00,106.9080957,40.36246391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865898267,0.704457889,2.859326531,-2.859326531,1,0.041180055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557721371,123.8983614,0.557721371,56.1016386,0,0.9603495,0,0,0,6,3,0% -2018-06-18 12:00:00,98.3955376,51.45141249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7173261,0.897996553,6.42367257,-6.42367257,1,0,#DIV/0!,0,0,0.362390888,1,0.154434602,0,0.944793772,0.983555735,0.724496596,1,0,0,0.052906392,0.312029739,0.860947549,0.585444145,0.961238037,0.922476074,0,0,0,0,0,0,-0.457979591,117.2568108,0.457979591,62.74318915,0,0.940824829,0,0,0,6,4,0% -2018-06-18 13:00:00,88.22530082,61.08578048,2.485580343,13.9035685,2.054995291,2.011766955,0,2.011766955,1.9930296,0.018737355,4.955615724,4.290992302,0.664623421,0.06196569,0.602657731,1.539821983,1.066147996,-31.88462952,31.88462952,0,0,0.826766794,0.015491423,0.4982574,1,0.799307469,0,0.031352797,0.961238037,1,0.639434773,0.914938177,1.91577586,0.043049191,0.115824807,0.215497616,0.724496596,0.448993192,0.975544998,0.936783035,0.011223483,0.482196452,1.926999343,0.525245644,0,0.861170105,-0.30862525,107.9764012,0.30862525,72.02359881,0,0.887991221,1.926999343,1.289957137,2.77125049,6,5,44% -2018-06-18 14:00:00,77.70756429,69.72802947,138.5310213,424.3160414,48.19354494,47.7846371,0,47.7846371,46.74033175,1.044305354,91.94806679,56.90640362,35.04166317,1.453213195,33.58844997,1.35625285,1.216983695,-4.589273316,4.589273316,0.685034352,0.685034352,0.347889913,0.8298131,26.68964178,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.92858473,1.052848013,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.601196767,25.65509886,45.5297815,26.70794688,0,56.90640362,-0.134113251,97.70734661,0.134113251,82.29265339,0,0.677180761,45.5297815,65.24386861,88.23058863,6,6,94% -2018-06-18 15:00:00,66.37903404,77.89343625,343.4729747,665.6471618,76.75859045,121.0490539,44.01577376,77.03328011,74.44403574,2.589244367,85.59355402,0,85.59355402,2.314554711,83.2789993,1.158532698,1.359496928,-2.264963087,2.264963087,0.917485189,0.917485189,0.223477817,2.423339619,77.94293233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55843877,1.676887009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755701305,74.92171126,73.31414007,76.59859827,44.01577376,0,0.066124782,86.20856261,-0.066124782,93.79143739,0,0,73.31414007,76.59859827,123.4463907,6,7,68% -2018-06-18 16:00:00,54.67569636,86.20085002,546.9454732,781.8254164,94.89107747,311.4390018,215.2861344,96.15286738,92.02976137,4.123106008,135.4745784,0,135.4745784,2.861316096,132.6132623,0.954270922,1.504488651,-1.355046436,1.355046436,0.761880278,0.761880278,0.173492756,3.311647099,106.5139544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.46250715,2.073013772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39927705,102.3852644,90.8617842,104.4582782,215.2861344,0,0.275363438,74.01632616,-0.275363438,105.9836738,0.86842179,0,277.8209545,104.4582782,346.1868084,6,8,25% -2018-06-18 17:00:00,42.85476049,95.59865709,727.0004829,844.5542575,107.8745186,514.7122507,404.61011,110.1021406,104.6217039,5.480436726,179.5224987,0,179.5224987,3.252814752,176.269684,0.747956671,1.668511327,-0.836717916,0.836717916,0.67324088,0.67324088,0.148383008,3.955375767,127.2184812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5663613,2.356653215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865656279,122.2872431,103.4320175,124.6438963,404.61011,0,0.479081251,61.37458577,-0.479081251,118.6254142,0.94563357,0,486.0449202,124.6438963,567.6218575,6,9,17% -2018-06-18 18:00:00,31.27444062,108.0532345,869.1912365,879.9736407,117.0861255,703.8227705,583.714893,120.1078775,113.5555468,6.552330689,214.2760571,0,214.2760571,3.530578684,210.7454784,0.545841961,1.88588471,-0.478289047,0.478289047,0.611945934,0.611945934,0.134706979,4.352185976,139.9812615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1539109,2.557892238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153143924,134.555313,112.3070548,137.1132053,583.714893,0,0.663332248,48.44549316,-0.663332248,131.5545068,0.974622992,0,681.2090104,137.1132053,770.946861,6,10,13% -2018-06-18 19:00:00,20.81645952,128.8826431,963.0128993,898.8475819,122.838829,859.4396641,733.045281,126.3943831,119.1347851,7.259598013,237.1976707,0,237.1976707,3.704043922,233.4936268,0.363315757,2.24942647,-0.196481032,0.196481032,0.563753925,0.563753925,0.127556785,4.496595529,144.6259692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5168869,2.683567212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257768154,139.0199827,117.7746551,141.7035499,733.045281,0,0.815539025,35.35930558,-0.815539025,144.6406944,0.988690855,0,842.529821,141.7035499,935.2719603,6,11,11% -2018-06-18 20:00:00,14.59833975,170.6733914,1001.732343,905.8205832,125.1548423,967.1079294,838.1754859,128.9324436,121.380962,7.551481537,246.6554846,0,246.6554846,3.773880267,242.8816043,0.254789094,2.978812625,0.048237929,-0.048237929,0.521904518,0.521904518,0.124938406,4.392221108,141.268929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6759976,2.734163407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.182149241,135.793068,119.8581469,138.5272314,838.1754859,0,0.925321749,22.28307798,-0.925321749,157.716922,0.995964741,0,954.6513779,138.5272314,1045.31468,6,12,9% -2018-06-18 21:00:00,17.932771,219.9536238,982.602752,902.4297848,124.0144031,1016.754119,889.0719329,127.6821859,120.2749113,7.407274598,241.9829052,0,241.9829052,3.739491818,238.2434134,0.312985898,3.838914937,0.280134629,-0.280134629,0.482247847,0.482247847,0.126210112,4.05617471,130.4605217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6128196,2.709249092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93868477,125.4036157,118.5515044,128.1128648,889.0719329,0,0.985197904,9.870437405,-0.985197904,170.1295626,0.999248776,0,1006.955545,128.1128648,1090.802852,6,13,8% -2018-06-18 22:00:00,27.50843673,246.2673515,906.9808689,887.939495,119.4292989,1002.693688,880.0284179,122.6652698,115.8280649,6.8372049,223.5092463,0,223.5092463,3.601234008,219.9080123,0.480112793,4.298176124,0.519649532,-0.519649532,0.441288386,0.441288386,0.131677859,3.52019193,113.2214731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3383417,2.60908178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55036707,108.8327865,113.8887087,111.4418683,880.0284179,0,0.991090522,7.65396946,-0.991090522,172.3460305,0.999550521,0,993.5215728,111.4418683,1066.458047,6,14,7% -2018-06-18 23:00:00,38.8590545,260.6691484,780.2682099,858.9540561,111.4078043,923.5865247,809.6560854,113.9304393,108.0484479,5.881991353,192.5444175,0,192.5444175,3.35935635,189.1850611,0.678218445,4.549534899,0.791790274,-0.791790274,0.394749578,0.394749578,0.142781422,2.830226567,91.02981524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.860278,2.43384224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050489513,87.5013209,105.9107675,89.93516314,809.6560854,0,0.942606976,19.50592341,-0.942606976,160.4940766,0.996955623,0,913.1019543,89.93516314,971.9627199,6,15,6% -2018-06-18 00:00:00,50.64961435,270.7959695,611.7063034,807.3713188,99.78352529,782.0567786,680.6707942,101.3859843,96.77468384,4.611300501,151.3241168,0,151.3241168,3.008841449,148.3152753,0.884002535,4.726281269,1.14011725,-1.14011725,0.335182157,0.335182157,0.163123258,2.045708519,65.79701805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.02350711,2.179895388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482108858,63.24659646,94.50561597,65.42649185,680.6707942,0,0.843070318,32.53422795,-0.843070318,147.4657721,0.990692966,0,768.841384,65.42649185,811.6617144,6,16,6% -2018-06-18 01:00:00,62.42200675,279.3395515,414.3034021,714.1192881,83.69786522,583.6882306,499.3909708,84.29725982,81.17406577,3.123194048,102.9764559,0,102.9764559,2.523799449,100.4526565,1.089469544,4.875394906,1.669029126,-1.669029126,0.244732899,0.244732899,0.202020705,1.240884007,39.91109518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02759962,1.828484109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899016239,38.36406278,78.92661586,40.19254688,499.3909708,0,0.699310296,45.62830488,-0.699310296,134.3716951,0.978500981,0,567.5811708,40.19254688,593.8863889,6,17,5% -2018-06-18 02:00:00,73.90680426,287.4749114,206.4053948,528.8583647,59.80556399,335.2416493,275.6834727,59.55817663,58.00220558,1.555971052,51.84873607,0,51.84873607,1.803358413,50.04537766,1.289917074,5.01738372,2.750786431,-2.750786431,0.059741505,0.059741505,0.289748066,0.516861819,16.62405281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.75392622,1.306527032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374464629,15.97967189,56.12839085,17.28619892,275.6834727,0,0.521280348,58.58182601,-0.521280348,121.418174,0.954082323,0,319.1531189,17.28619892,330.4665904,6,18,4% -2018-06-18 03:00:00,84.80201475,295.8947017,29.29821926,135.4298875,17.02860179,60.37066595,43.63467698,16.73598897,16.51512662,0.220862352,7.617167636,0,7.617167636,0.513475173,7.103692463,1.48007437,5.164336783,7.650504494,-7.650504494,0,0,0.581216272,0.128368793,4.128781654,0.437620795,1,0.12997347,0,0.947768252,0.986530215,0.724496596,1,16.01252464,0.372011015,0.061994661,0.312029739,0.839284645,0.563781241,0.961238037,0.922476074,0.087848832,3.968741972,16.10037347,4.340752987,24.53923494,0,0.322193851,71.20434832,-0.322193851,108.7956517,0.894813922,0,38.05842254,4.340752987,40.89935855,6,19,7% -2018-06-18 04:00:00,95.16178068,305.136842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660886395,5.325642561,-6.327790633,6.327790633,1,0.387730381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110169655,83.67490446,-0.110169655,96.32509554,0.596154521,0,0,0,0,6,20,0% -2018-06-18 05:00:00,104.1826595,315.6840561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818330432,5.509726175,-1.629364576,1.629364576,1,0.808791443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093697537,95.37635978,0.093697537,84.62364022,0,0.516368042,0,0,0,6,21,0% -2018-06-18 06:00:00,111.5155532,327.9241622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94631357,5.723356327,-0.530678395,0.530678395,1,0.62090504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278069018,106.1449914,0.278069018,73.85500856,0,0.870188526,0,0,0,6,22,0% -2018-06-18 07:00:00,116.5446377,341.9556395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034087654,5.968251806,0.068312279,-0.068312279,1,0.518471602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430385169,115.4920064,0.430385169,64.50799356,0,0.933824993,0,0,0,6,23,0% -2018-06-19 08:00:00,118.6839907,357.3023077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071426408,6.236101694,0.54359709,-0.54359709,1,0.437193112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540270289,122.7020405,0.540270289,57.29795948,0,0.95745373,0,0,0,6,0,0% -2018-06-19 09:00:00,117.6294052,12.86942907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053020418,0.22461391,1.03684342,-1.03684342,1,0.352843022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600239118,126.8870252,0.600239118,53.11297484,0,0.966699864,0,0,0,6,1,0% -2018-06-19 10:00:00,113.535518,27.44160202,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981568607,0.478946307,1.691169576,-1.691169576,1,0.240946659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606206539,127.3157136,0.606206539,52.68428642,0,0.96751986,0,0,0,6,2,0% -2018-06-19 11:00:00,106.9218728,40.30904848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866138723,0.703525614,2.855341111,-2.855341111,1,0.041861602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557765778,123.9014268,0.557765778,56.09857321,0,0.960356637,0,0,0,6,3,0% -2018-06-19 12:00:00,98.41687331,51.40254879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717698479,0.89714372,6.405317853,-6.405317853,1,0,#DIV/0!,0,0,0.361112248,1,0.154870108,0,0.944739585,0.983501548,0.724496596,1,0,0,0.052747094,0.312029739,0.8613331,0.585829696,0.961238037,0.922476074,0,0,0,0,0,0,-0.458216196,117.2720617,0.458216196,62.72793835,0,0.940881203,0,0,0,6,4,0% -2018-06-19 13:00:00,88.25003347,61.04040541,2.39805746,13.39227541,1.989085099,1.947184414,0,1.947184414,1.929106844,0.01807757,4.779536003,4.138120954,0.641415049,0.059978255,0.581436795,1.540253649,1.065356051,-32.33152128,32.33152128,0,0,0.829456814,0.014994564,0.482276711,1,0.802339098,0,0.030919711,0.961238037,1,0.640557213,0.916060617,1.854330876,0.041685695,0.115824807,0.216768919,0.724496596,0.448993192,0.975369483,0.93660752,0.01086351,0.466702915,1.865194386,0.50838861,0,0.817944721,-0.308993119,107.9985617,0.308993119,72.00143833,0,0.888184099,1.865194386,1.234874105,2.67339479,6,5,43% -2018-06-19 14:00:00,77.73829356,69.6844099,137.9138679,422.7605064,48.1291196,47.71750206,0,47.71750206,46.67784907,1.039652991,91.81199979,56.92191527,34.89008452,1.451270533,33.43881398,1.356789177,1.21622239,-4.601116813,4.601116813,0.683008995,0.683008995,0.34897955,0.825102271,26.53812529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.868524,1.051440561,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.597783786,25.50945546,45.46630779,26.56089602,0,56.92191527,-0.134643408,97.7380004,0.134643408,82.2619996,0,0.678648734,45.46630779,65.19088174,88.13243606,6,6,94% -2018-06-19 15:00:00,66.41255924,77.84930965,342.7585313,664.6944068,76.78229007,120.5940223,43.54314293,77.05087932,74.46702073,2.583858591,85.42104358,0,85.42104358,2.315269342,83.10577424,1.159117823,1.358726774,-2.268819505,2.268819505,0.918144676,0.918144676,0.224012776,2.419735289,77.82700467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58053281,1.677404757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75308998,74.81027719,73.33362279,76.48768194,43.54314293,0,0.065508514,86.24394891,-0.065508514,93.75605109,0,0,73.33362279,76.48768194,123.3932809,6,7,68% -2018-06-19 16:00:00,54.71070805,86.15298186,546.2486901,781.1809963,94.95645569,310.8122696,214.601248,96.21102156,92.0931682,4.117853363,135.3076067,0,135.3076067,2.863287491,132.4443192,0.954881992,1.503653194,-1.357132039,1.357132039,0.762236937,0.762236937,0.173833745,3.308975935,106.4280406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.52345621,2.07444204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397341801,102.3026808,90.92079801,104.3771228,214.601248,0,0.274713862,74.05503709,-0.274713862,105.9449629,0.867992439,0,277.1930586,104.3771228,345.505798,6,8,25% -2018-06-19 17:00:00,42.88976869,95.54138911,726.3897171,844.0763266,107.965005,514.0353608,403.8500665,110.1852943,104.7094618,5.475832516,179.37714,0,179.37714,3.25554325,176.1215968,0.748567679,1.667511812,-0.838144596,0.838144596,0.673484857,0.673484857,0.148632342,3.953636322,127.1625346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6507175,2.358630002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864396056,122.2334652,103.5151135,124.5920952,403.8500665,0,0.478452071,61.41564695,-0.478452071,118.584353,0.945496324,0,485.353867,124.5920952,566.8969015,6,9,17% -2018-06-19 18:00:00,31.30681476,107.9741472,868.7185766,879.5951053,117.1951289,703.1839946,582.9739637,120.2100309,113.6612634,6.548767579,214.1647421,0,214.1647421,3.533865541,210.6308766,0.546406996,1.884504375,-0.479415331,0.479415331,0.61213854,0.61213854,0.134905747,4.351415585,139.9564831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2555297,2.560273554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152585779,134.5314951,112.4081154,137.0917686,582.9739637,0,0.662775361,48.48811732,-0.662775361,131.5118827,0.974559658,0,680.551022,137.0917686,770.2748428,6,10,13% -2018-06-19 19:00:00,20.83913265,128.7503418,962.7171687,898.5332951,122.9632957,858.9083227,732.3954554,126.5128673,119.2554986,7.257368671,237.1297206,0,237.1297206,3.70779705,233.4219235,0.363711478,2.247117378,-0.197467084,0.197467084,0.56392255,0.56392255,0.127725255,4.496815517,144.6330447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6329214,2.686286341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257927534,139.026784,117.8908489,141.7130703,732.3954554,0,0.815101076,35.40264275,-0.815101076,144.5973572,0.988657914,0,841.9794123,141.7130703,934.7277826,6,11,11% -2018-06-19 20:00:00,14.5911179,170.4684673,1001.638341,905.5510399,125.2929203,966.7374274,837.671778,129.0656494,121.5148765,7.550772908,246.6368562,0,246.6368562,3.778043829,242.8588123,0.254663049,2.975236024,0.04729776,-0.04729776,0.522065296,0.522065296,0.125087984,4.39341106,141.3072019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8047213,2.737179893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183011357,135.8298574,119.9877327,138.5670373,837.671778,0,0.925040932,22.32547199,-0.925040932,157.674528,0.995948338,0,954.2655476,138.5670373,1044.954902,6,12,10% -2018-06-19 21:00:00,17.89332569,219.843169,982.7202729,902.1948246,124.1644307,1016.581906,888.7533304,127.8285755,120.420415,7.40816052,242.0159234,0,242.0159234,3.744015703,238.2719077,0.312297447,3.836987137,0.279164262,-0.279164262,0.482413789,0.482413789,0.126347684,4.058261513,130.5276404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7526833,2.712526632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940196651,125.4681328,118.69288,128.1806595,888.7533304,0,0.98510134,9.902661134,-0.98510134,170.0973389,0.999243801,0,1006.774136,128.1806595,1090.665814,6,13,8% -2018-06-19 22:00:00,27.4604441,246.2241052,907.3042997,887.7367895,119.5893432,1002.740862,879.9179357,122.8229264,115.9832833,6.839643058,223.5924918,0,223.5924918,3.606059937,219.9864319,0.479275164,4.297421334,0.518561788,-0.518561788,0.441474401,0.441474401,0.131807315,3.523046519,113.3132864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4875436,2.612578149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55243521,108.921041,114.0399788,111.5336192,879.9179357,0,0.991192374,7.610029531,-0.991192374,172.3899705,0.999555706,0,993.5669718,111.5336192,1066.563495,6,14,7% -2018-06-19 23:00:00,38.80935842,260.6453172,780.7768608,858.7920346,111.5755275,923.8583638,809.7614243,114.0969394,108.2111137,5.885825778,192.6728032,0,192.6728032,3.364413823,189.3083894,0.677351085,4.549118965,0.790447414,-0.790447414,0.394979221,0.394979221,0.14290322,2.833663948,91.14037321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0166385,2.437506362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052979884,87.60759342,106.0696183,90.04509979,809.7614243,0,0.94290747,19.45429502,-0.94290747,160.545705,0.996972527,0,913.3795121,90.04509979,972.3122291,6,15,6% -2018-06-19 00:00:00,50.59976383,270.7777279,612.3652278,807.2814847,99.9564654,782.5455713,680.9868943,101.5586769,96.94240917,4.616267751,151.4890954,0,151.4890954,3.014056232,148.4750392,0.88313248,4.725962894,1.138233802,-1.138233802,0.335504245,0.335504245,0.163230146,2.049484321,65.91846083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.18473108,2.18367348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484844414,63.36333188,94.66957549,65.54700536,680.9868943,0,0.843555696,32.48248077,-0.843555696,147.5175192,0.990727091,0,769.3417403,65.54700536,812.2409444,6,16,6% -2018-06-19 01:00:00,62.37265895,279.3221435,415.0628519,714.1992556,83.87517943,584.381319,499.9063666,84.4749524,81.3460333,3.128919101,103.16594,0,103.16594,2.529146126,100.6367939,1.088608262,4.875091077,1.665816178,-1.665816178,0.245282346,0.245282346,0.202078261,1.244666425,40.03275073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.19290136,1.832357759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901756588,38.48100272,79.09465795,40.31336048,499.9063666,0,0.699953637,45.57671558,-0.699953637,134.4232844,0.978566697,0,568.2863801,40.31336048,594.6706683,6,17,5% -2018-06-19 02:00:00,73.85858766,287.4559861,207.1862314,529.4395114,59.99727464,336.1399999,276.3900072,59.74999277,58.18813544,1.561857328,52.04383972,0,52.04383972,1.809139197,50.23470053,1.289075535,5.017053413,2.742814358,-2.742814358,0.06110481,0.06110481,0.289581379,0.520085017,16.72772194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.93264908,1.31071519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.376799825,16.0793226,56.30944891,17.39003779,276.3900072,0,0.522042653,58.53063137,-0.522042653,121.4693686,0.954222385,0,320.0469808,17.39003779,331.4284128,6,18,4% -2018-06-19 03:00:00,84.75647095,295.8725179,29.79489687,137.1166802,17.26391968,61.25872152,44.29076619,16.96795532,16.74334881,0.224606518,7.744688575,0,7.744688575,0.520570875,7.2241177,1.47927948,5.163949604,7.586715606,-7.586715606,0,0,0.579425388,0.130142719,4.185837201,0.434149451,1,0.131053864,0,0.947639752,0.986401715,0.724496596,1,16.23390278,0.377151827,0.061587252,0.312029739,0.840241704,0.5647383,0.961238037,0.922476074,0.089062903,4.023585934,16.32296569,4.400737761,25.06195438,0,0.323015159,71.15463274,-0.323015159,108.8453673,0.895208503,0,38.75864035,4.400737761,41.6388352,6,19,7% -2018-06-19 04:00:00,95.11789797,305.109682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660120497,5.32516853,-6.386682919,6.386682919,1,0.377659207,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111032361,83.62516991,-0.111032361,96.37483009,0.599680838,0,0,0,0,6,20,0% -2018-06-19 05:00:00,104.1430675,315.6501195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817639421,5.50913387,-1.636259101,1.636259101,1,0.809970476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092865135,95.32845782,0.092865135,84.67154218,0,0.511584804,0,0,0,6,21,0% -2018-06-19 06:00:00,111.482368,327.8819574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94573438,5.722619715,-0.533410684,0.533410684,1,0.621372289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277318208,106.100212,0.277318208,73.899788,0,0.869701705,0,0,0,6,22,0% -2018-06-19 07:00:00,116.520406,341.9050423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03366473,5.967368718,0.066615988,-0.066615988,1,0.518761685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429761713,115.4524388,0.429761713,64.54756121,0,0.933656458,0,0,0,6,23,0% -2018-06-20 08:00:00,118.6709679,357.2457733,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071199116,6.235114984,0.542167595,-0.542167595,1,0.43743757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539811258,122.6707913,0.539811258,57.32920874,0,0.957375033,0,0,0,6,0,0% -2018-06-20 09:00:00,117.6284873,12.81162942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053004398,0.223605116,1.035264553,-1.035264553,1,0.353113024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599970329,126.8677726,0.599970329,53.13222736,0,0.966662545,0,0,0,6,1,0% -2018-06-20 10:00:00,113.5458074,27.38694402,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98174819,0.477992345,1.688858945,-1.688858945,1,0.2413418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606140774,127.3109758,0.606140774,52.68902415,0,0.967510911,0,0,0,6,2,0% -2018-06-20 11:00:00,106.9413312,40.25966421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866478336,0.702663696,2.850460037,-2.850460037,1,0.042696314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557901904,123.9108243,0.557901904,56.08917574,0,0.96037851,0,0,0,6,3,0% -2018-06-20 12:00:00,98.44326665,51.35839187,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718159129,0.896373037,6.383345922,-6.383345922,1,0,#DIV/0!,0,0,0.359574862,1,0.155394656,0,0.944674262,0.983436225,0.724496596,1,0,0,0.052555341,0.312029739,0.86179747,0.586294066,0.961238037,0.922476074,0,0,0,0,0,0,-0.45853925,117.2928881,0.45853925,62.7071119,0,0.940958081,0,0,0,6,4,0% -2018-06-20 13:00:00,88.27886381,61.00024689,2.299566205,12.82555653,1.914350924,1.873961282,0,1.873961282,1.856626181,0.017335101,4.583937911,3.968656717,0.615281193,0.057724744,0.55755645,1.540756833,1.064655153,-32.86979229,32.86979229,0,0,0.832483501,0.014431186,0.464156545,1,0.805871201,0,0.030413689,0.961238037,1,0.641870555,0.917373959,1.784659705,0.040139114,0.115824807,0.218256541,0.724496596,0.448993192,0.975163657,0.936401694,0.010455345,0.449135903,1.79511505,0.489275017,0,0.770430561,-0.30943349,108.0250933,0.30943349,71.97490671,0,0.888414387,1.79511505,1.173736612,2.563302188,6,5,43% -2018-06-20 14:00:00,77.77302687,69.64651423,137.2274814,421.0752081,48.05010595,47.63569669,0,47.63569669,46.60121797,1.03447872,91.66866208,56.94738247,34.72127961,1.44888798,33.27239163,1.357395388,1.215560986,-4.614576631,4.614576631,0.68070723,0.68070723,0.350149296,0.819832008,26.36861553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.79486327,1.04971441,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.593965499,25.34651623,45.38882877,26.39623064,0,56.94738247,-0.135242782,97.77265901,0.135242782,82.22734099,0,0.680294502,45.38882877,65.13722183,88.01983772,6,6,94% -2018-06-20 15:00:00,66.44976265,77.81155413,341.9776129,663.6891464,76.79862313,120.0898811,43.02904814,77.06083298,74.48286128,2.577971698,85.23219338,0,85.23219338,2.315761844,82.91643153,1.159767145,1.358067816,-2.273048731,2.273048731,0.918867916,0.918867916,0.224572078,2.415786128,77.69998608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.59575936,1.677761573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750228826,74.68818209,73.34598818,76.36594366,43.02904814,0,0.064833135,86.28272772,-0.064833135,93.71727228,0,0,73.34598818,76.36594366,123.325971,6,7,68% -2018-06-20 16:00:00,54.74921033,86.11242897,545.4941938,780.5112476,95.01709658,310.1366412,213.872495,96.26414619,92.15198054,4.11216565,135.1264988,0,135.1264988,2.865116038,132.2613828,0.955553983,1.502945413,-1.359346156,1.359346156,0.762615573,0.762615573,0.174185349,3.306035047,106.3334515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57998887,2.075766816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395211137,102.2117582,90.9752,104.287525,213.872495,0,0.274015904,74.09662295,-0.274015904,105.9033771,0.867528839,0,276.5157574,104.287525,344.7698567,6,8,25% -2018-06-20 17:00:00,42.92829789,95.49290153,725.729853,843.5840662,108.0520259,513.3164711,403.0517543,110.2647168,104.7938586,5.470858182,179.2197723,0,179.2197723,3.25816725,175.9616051,0.74924014,1.666665544,-0.83961471,0.83961471,0.673736261,0.673736261,0.148887393,3.951670995,127.099323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.731843,2.360531082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.862972184,122.1727037,103.5948151,124.5332348,403.0517543,0,0.47778493,61.45916801,-0.47778493,118.540832,0.945350404,0,484.6199539,124.5332348,566.1244654,6,9,17% -2018-06-20 18:00:00,31.3431289,107.9061177,868.2037424,879.207248,117.3013845,702.511343,582.2021415,120.3092015,113.764315,6.544886541,214.0431186,0,214.0431186,3.537069539,210.5060491,0.547040797,1.883317037,-0.480544622,0.480544622,0.61233166,0.61233166,0.13510813,4.350443708,139.9252242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3545868,2.56259484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151881657,134.5014478,112.5064684,137.0640427,582.2021415,0,0.662189879,48.53289994,-0.662189879,131.4671001,0.974492957,0,679.8583546,137.0640427,769.5640292,6,10,13% -2018-06-20 19:00:00,20.86695162,128.631458,962.3837632,898.2120009,123.0854098,858.3501756,731.7213897,126.6287859,119.3739305,7.254855319,237.0525647,0,237.0525647,3.711479242,233.3410855,0.364197011,2.245042464,-0.19843129,0.19843129,0.564087439,0.564087439,0.127896391,4.496842861,144.6339242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7467626,2.688954076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257947345,139.0276294,118.00471,141.7165835,731.7213897,0,0.814642188,35.4480024,-0.814642188,144.5519976,0.98862336,0,841.4015691,141.7165835,934.1522387,6,11,11% -2018-06-20 20:00:00,14.59087179,170.2676232,1001.508342,905.2752947,125.4287939,966.3448841,837.1484381,129.1964459,121.646653,7.549792923,246.6094336,0,246.6094336,3.78214092,242.8272926,0.254658753,2.971730635,0.046399337,-0.046399337,0.522218936,0.522218936,0.125239889,4.394403653,141.3391271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9313899,2.740148221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183730487,135.8605451,120.1151204,138.6006933,837.1484381,0,0.924744598,22.37012604,-0.924744598,157.629874,0.995931017,0,953.8572157,138.6006933,1044.568597,6,12,10% -2018-06-20 21:00:00,17.8597337,219.7201167,982.800512,901.9533082,124.3121778,1016.389324,888.4168515,127.9724724,120.563707,7.408765396,242.0398334,0,242.0398334,3.748470825,238.2913626,0.311711157,3.834839469,0.278256299,-0.278256299,0.48256906,0.48256906,0.126487702,4.060134648,130.5878869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.890421,2.715754352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941553731,125.5260441,118.8319748,128.2417984,888.4168515,0,0.984992065,9.939001542,-0.984992065,170.0609985,0.99923817,0,1006.572003,128.2417984,1090.503696,6,13,8% -2018-06-20 22:00:00,27.41677341,246.1690644,907.5862986,887.5258482,119.7468007,1002.765731,879.7879696,122.9777618,116.1359929,6.841768885,223.6656136,0,223.6656136,3.610807861,220.0548058,0.478512966,4.296460691,0.517563168,-0.517563168,0.441645175,0.441645175,0.131939851,3.525662215,113.3974162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6343338,2.616018003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554330273,109.0019098,114.1886641,111.6179278,879.7879696,0,0.991281518,7.571363852,-0.991281518,172.4286361,0.999560242,0,993.5897398,111.6179278,1066.641441,6,14,7% -2018-06-20 23:00:00,38.76337542,260.612175,781.2374083,858.6179334,111.7400835,924.1019608,809.8419555,114.2600053,108.3707077,5.88929758,192.7894303,0,192.7894303,3.369375794,189.4200545,0.67654853,4.548540524,0.789234955,-0.789234955,0.395186563,0.395186563,0.143029612,2.83683221,91.24227542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1700463,2.441101293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055275279,87.7055457,106.2253216,90.14664699,809.8419555,0,0.943192454,19.40520936,-0.943192454,160.5947906,0.99698855,0,913.6284782,90.14664699,972.6276557,6,15,6% -2018-06-20 00:00:00,50.55349787,270.7518512,612.9674843,807.1711931,100.12524,782.9956586,681.2687562,101.7269024,97.10609462,4.620807815,151.6402087,0,151.6402087,3.01914541,148.6210633,0.882324986,4.725511259,1.136556334,-1.136556334,0.335791109,0.335791109,0.163345108,2.052961989,66.03031456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34207176,2.187360572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487363972,63.47084994,94.82943573,65.65821052,681.2687562,0,0.844020156,32.43289483,-0.844020156,147.5671052,0.990759709,0,769.8030701,65.65821052,812.7750557,6,16,6% -2018-06-20 01:00:00,62.32702209,279.2981762,415.756346,714.2387704,84.04641873,585.019395,500.3731389,84.64625606,81.51210911,3.134146953,103.3392492,0,103.3392492,2.534309623,100.8049396,1.087811748,4.87467277,1.662982036,-1.662982036,0.245767012,0.245767012,0.202153063,1.248134913,40.14430923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.35253974,1.836098695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904269495,38.58823699,79.25680923,40.42433569,500.3731389,0,0.700568437,45.52737243,-0.700568437,134.4726276,0.978629385,0,568.9366666,40.42433569,595.3935858,6,17,5% -2018-06-20 02:00:00,73.81436712,287.4312261,207.8945881,529.924022,60.1781079,336.9576102,277.0268971,59.93071313,58.36351591,1.56719722,52.2210418,0,52.2210418,1.814591987,50.40644981,1.288303742,5.016621269,2.735813676,-2.735813676,0.062301997,0.062301997,0.289464524,0.523024337,16.82226056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.10123146,1.314665717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378929352,16.17019671,56.48016081,17.48486243,277.0268971,0,0.5227672,58.4819465,-0.5227672,121.5180535,0.954355132,0,320.8622017,17.48486243,332.3056944,6,18,4% -2018-06-20 03:00:00,84.71524314,295.8450424,30.24337413,138.6038432,17.47717308,62.0566907,44.87853154,17.17815916,16.95017183,0.227987329,7.859857456,0,7.859857456,0.527001252,7.332856204,1.478559919,5.163470066,7.530916873,-7.530916873,0,0,0.577884366,0.131750313,4.237542958,0.431077595,1,0.132013678,0,0.94752537,0.986287333,0.724496596,1,16.43451233,0.381810613,0.061225789,0.312029739,0.841091932,0.565588528,0.961238037,0.922476074,0.090163574,4.073287474,16.5246759,4.455098087,25.53240209,0,0.32378995,71.10771938,-0.32378995,108.8922806,0.895578901,0,39.39095651,4.455098087,42.30672911,6,19,7% -2018-06-20 04:00:00,95.07897475,305.0777333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659441159,5.324610921,-6.441033356,6.441033356,1,0.368364735,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111835804,83.57884755,-0.111835804,96.42115245,0.602915986,0,0,0,0,6,20,0% -2018-06-20 05:00:00,104.1090325,315.6120114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817045398,5.508468758,-1.642781438,1.642781438,1,0.811085861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092102408,95.28456868,0.092102408,84.71543132,0,0.50712603,0,0,0,6,21,0% -2018-06-20 06:00:00,111.4553423,327.8364907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945262692,5.72182617,-0.536123883,0.536123883,1,0.621836273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276646374,106.0601514,0.276646374,73.93984862,0,0.869263852,0,0,0,6,22,0% -2018-06-20 07:00:00,116.502819,341.8525292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033357779,5.966452191,0.064830145,-0.064830145,1,0.519067082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429224785,115.4183731,0.429224785,64.58162692,0,0.933510921,0,0,0,6,23,0% -2018-06-21 08:00:00,118.6648039,357.1890576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071091534,6.234125107,0.540576636,-0.540576636,1,0.43770964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539444037,122.6458001,0.539444037,57.35419994,0,0.957311979,0,0,0,6,0,0% -2018-06-21 09:00:00,117.6342804,12.75544285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053105506,0.222624475,1.033435111,-1.033435111,1,0.353425877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599796001,126.8552887,0.599796001,53.1447113,0,0.966638324,0,0,0,6,1,0% -2018-06-21 10:00:00,113.5623511,27.33537137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982036932,0.477092233,1.686130188,-1.686130188,1,0.241808445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606169305,127.3130312,0.606169305,52.68696879,0,0.967514794,0,0,0,6,2,0% -2018-06-21 11:00:00,106.9664289,40.21438108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866916374,0.701873356,2.844701145,-2.844701145,1,0.043681143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558129357,123.9265288,0.558129357,56.07347124,0,0.960415033,0,0,0,6,3,0% -2018-06-21 12:00:00,98.47466442,51.31900404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718707124,0.895685589,6.35787346,-6.35787346,1,0,#DIV/0!,0,0,0.357783255,1,0.156007203,0,0.944597902,0.983359865,0.724496596,1,0,0,0.052331575,0.312029739,0.862339733,0.586836329,0.961238037,0.922476074,0,0,0,0,0,0,-0.45894806,117.3192485,0.45894806,62.68075146,0,0.94105521,0,0,0,6,4,0% -2018-06-21 13:00:00,88.31172048,60.96536037,2.19133473,12.21016203,1.831601714,1.792891371,0,1.792891371,1.776372164,0.016519207,4.371025899,3.784481874,0.586544025,0.05522955,0.531314476,1.541330291,1.064046268,-33.50663566,33.50663566,0,0,0.8358384,0.013807387,0.444093041,1,0.80989048,0,0.029835978,0.961238037,1,0.643372425,0.918875829,1.707516492,0.038425862,0.115824807,0.219957839,0.724496596,0.448993192,0.974927677,0.936165714,0.010003405,0.429686067,1.717519897,0.46811193,0,0.719466031,-0.309945262,108.0559318,0.309945262,71.94406821,0,0.888681193,1.717519897,1.107487861,2.442348552,6,5,42% -2018-06-21 14:00:00,77.81169586,69.61439265,136.4732284,419.261291,47.95657473,47.53929991,0,47.53929991,46.51050706,1.028792842,91.51748506,56.98190314,34.53558192,1.446067669,33.08951425,1.358070289,1.215000359,-4.629653624,4.629653624,0.678128912,0.678128912,0.351399137,0.814016014,26.18155318,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7076685,1.047671104,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.589751831,25.16670478,45.29742033,26.21437589,0,56.98190314,-0.135910241,97.811258,0.135910241,82.188742,0,0.682110137,45.29742033,65.08230963,87.89249034,6,6,94% -2018-06-21 15:00:00,66.49057083,77.7802168,341.1315338,662.6319316,76.8076668,119.5378556,42.4746297,77.06322586,74.49163226,2.571593596,85.0273244,0,85.0273244,2.316034544,82.71128986,1.160479383,1.357520876,-2.277646562,2.277646562,0.919654191,0.919654191,0.225155575,2.411497746,77.56205699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60419036,1.677959143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121908,74.5555994,73.35131226,76.23355854,42.4746297,0,0.064099884,86.32482751,-0.064099884,93.67517249,0,0,73.35131226,76.23355854,123.2446517,6,7,68% -2018-06-21 16:00:00,54.79112566,86.0792384,544.683196,779.8165047,95.07307017,309.4134177,213.1010994,96.31231833,92.20626632,4.106052006,134.9315508,0,134.9315508,2.866803848,132.064747,0.956285544,1.502366128,-1.361685827,1.361685827,0.763015681,0.763015681,0.174547463,3.302828956,106.2303326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.63217042,2.076989629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392888335,102.1126364,91.02505876,104.189626,213.1010994,0,0.273270825,74.14100692,-0.273270825,105.8589931,0.867031328,0,275.7903879,104.189626,343.9804143,6,8,25% -2018-06-21 17:00:00,42.97026702,95.4532475,725.0219168,843.0776822,108.1356383,512.5568353,402.2163641,110.3404712,104.8749498,5.46552146,179.0506462,0,179.0506462,3.260688471,175.7899577,0.74997264,1.665973451,-0.841126093,0.841126093,0.673994723,0.673994723,0.149148096,3.949483035,127.0289507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8097908,2.362357698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861387014,122.1050592,103.6711779,124.4674169,402.2163641,0,0.477081024,61.505068,-0.477081024,118.494932,0.945195999,0,483.844476,124.4674169,565.305911,6,9,17% -2018-06-21 18:00:00,31.38329882,107.8492251,867.6475032,878.8101891,117.4049332,701.8059121,581.4004775,120.4054346,113.8647412,6.540693375,213.9113743,0,213.9113743,3.540191913,210.3711824,0.547741894,1.882324073,-0.481675208,0.481675208,0.612525001,0.612525001,0.135314091,4.349272183,139.8875439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4511203,2.56485699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151032891,134.4652281,112.6021532,137.0300851,581.4004775,0,0.661576851,48.57975643,-0.661576851,131.4202436,0.97442299,0,679.1321451,137.0300851,768.8155952,6,10,13% -2018-06-21 19:00:00,20.89983408,128.5261932,962.0131432,897.8837551,123.2051942,857.7660703,731.0239058,126.7421644,119.490103,7.252061429,236.9663155,0,236.9663155,3.715091184,233.2512244,0.364770918,2.243205246,-0.199372201,0.199372201,0.564248344,0.564248344,0.128070178,4.496677935,144.6286196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.858432,2.691570916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257827857,139.0225304,118.1162599,141.7141013,731.0239058,0,0.814163194,35.49529576,-0.814163194,144.5047042,0.988587251,0,840.7971733,141.7141013,933.5462183,6,11,11% -2018-06-21 20:00:00,14.59757848,170.0714582,1001.342469,904.9933482,125.5624664,965.9308277,836.6059904,129.3248372,121.7762947,7.548542501,246.5732464,0,246.5732464,3.786171638,242.7870748,0.254775807,2.968306909,0.045543965,-0.045543965,0.522365213,0.522365213,0.125394129,4.395197831,141.3646706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0560065,2.743068463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184305867,135.8850985,120.2403124,138.6281669,836.6059904,0,0.924433303,22.41694346,-0.924433303,157.5830565,0.99591281,0,953.4269349,138.6281669,1044.156298,6,12,10% -2018-06-21 21:00:00,17.8320627,219.584737,982.8432469,901.7051804,124.4576274,1016.176536,888.0626772,128.1138583,120.7047707,7.40908755,242.0545808,0,242.0545808,3.752856666,238.3017242,0.311228206,3.832476647,0.277411983,-0.277411983,0.482713447,0.482713447,0.12663019,4.06179176,130.6411853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0260169,2.718931879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942754303,125.5772765,118.9687712,128.2962084,888.0626772,0,0.984870328,9.979331896,-0.984870328,170.0206681,0.999231895,0,1006.349323,128.2962084,1090.316626,6,13,8% -2018-06-21 22:00:00,27.37750202,246.1023106,907.8263184,887.3065495,119.9016335,1002.768073,879.6383378,123.1297351,116.2861569,6.843578256,223.728478,0,223.728478,3.615476641,220.1130014,0.477827551,4.295295616,0.516654917,-0.516654917,0.441800495,0.441800495,0.13207552,3.52803558,113.4737518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7786772,2.619400519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556049768,109.0752864,114.3347269,111.6946869,879.6383378,0,0.991357878,7.538086181,-0.991357878,172.4619138,0.999564127,0,993.5896542,111.6946869,1066.691593,6,14,7% -2018-06-21 23:00:00,38.72118172,260.5697709,781.6490226,858.4315426,111.9014133,924.316715,809.8971417,114.4195733,108.5271728,5.892400502,192.8940956,0,192.8940956,3.374240483,189.5198551,0.675812111,4.547800434,0.788154203,-0.788154203,0.395371383,0.395371383,0.14316069,2.839727124,91.33538581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3204465,2.444625744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.057372635,87.79504695,106.3778192,90.23967269,809.8971417,0,0.943461536,19.35875283,-0.943461536,160.6412472,0.997003669,0,913.8482408,90.23967269,972.9083018,6,15,6% -2018-06-21 00:00:00,50.51089055,270.718382,613.5120247,807.0401047,100.2897669,783.4060963,681.5155231,101.8905732,97.26566037,4.624912791,151.7771999,0,151.7771999,3.024106501,148.7530934,0.881581348,4.724927111,1.135086236,-1.135086236,0.336042511,0.336042511,0.163468299,2.056136847,66.13242893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49545242,2.190954865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489664147,63.56900616,94.98511657,65.75996103,681.5155231,0,0.844463019,32.38555165,-0.844463019,147.6144484,0.990790776,0,770.2244106,65.75996103,813.2629899,6,16,6% -2018-06-21 01:00:00,62.28516739,279.2676929,416.3826995,714.2373045,84.21147142,585.6012374,500.7901839,84.81105352,81.67218485,3.13886867,103.4960928,0,103.4960928,2.539286571,100.9568062,1.087081246,4.874140735,1.660527908,-1.660527908,0.246186693,0.246186693,0.202245366,1.251284699,40.2456172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.50641063,1.839704476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.906551505,38.68561806,79.41296214,40.52532254,500.7901839,0,0.701153777,45.48035484,-0.701153777,134.5196452,0.978688967,0,569.53079,40.52532254,596.0538031,6,17,5% -2018-06-21 02:00:00,73.77421001,287.4006775,208.5292275,530.3111914,60.34791091,337.6931099,277.5929298,60.10018013,58.52819873,1.5719814,52.38003765,0,52.38003765,1.819712174,50.56032547,1.287602868,5.016088095,2.729781443,-2.729781443,0.063333569,0.063333569,0.289397854,0.52567502,16.90751563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.25953085,1.318375275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.380849762,16.25214713,56.64038061,17.57052241,277.5929298,0,0.523452898,58.43584864,-0.523452898,121.5641514,0.954480422,0,321.5973973,17.57052241,333.0969528,6,18,4% -2018-06-21 03:00:00,84.67839565,295.8123265,30.64205425,139.8883945,17.66796019,62.76236093,45.39616217,17.36619876,17.13520601,0.230992748,7.962275001,0,7.962275001,0.532754188,7.429520813,1.477916809,5.162899065,7.482870703,-7.482870703,0,0,0.576591897,0.133188547,4.283801502,0.428405688,1,0.132851407,0,0.947425365,0.986187328,0.724496596,1,16.61397844,0.385978595,0.060910668,0.312029739,0.841834002,0.566330598,0.961238037,0.922476074,0.091148624,4.117752946,16.70512706,4.503731541,25.9481881,0,0.324517,71.06368482,-0.324517,108.9363152,0.895924867,0,39.95275403,4.503731541,42.90035625,6,19,7% -2018-06-21 04:00:00,95.04506567,305.0410541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658849334,5.323970748,-6.490496328,6.490496328,1,0.359906068,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112578782,83.53600747,-0.112578782,96.46399253,0.605866576,0,0,0,0,6,20,0% -2018-06-21 05:00:00,104.0805995,315.5697973,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816549148,5.507731983,-1.648911454,1.648911454,1,0.812134156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091410484,95.24475637,0.091410484,84.75524363,0,0.503016788,0,0,0,6,21,0% -2018-06-21 06:00:00,111.4345083,327.7878347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944899071,5.720976964,-0.538811391,0.538811391,1,0.622295864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276054494,106.024865,0.276054494,73.97513505,0,0.868876341,0,0,0,6,22,0% -2018-06-21 07:00:00,116.4918942,341.7981779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033167106,5.965503581,0.062958786,-0.062958786,1,0.519387103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428775143,115.3898528,0.428775143,64.61014724,0,0.933388763,0,0,0,6,23,0% -2018-06-22 08:00:00,118.6655,357.1322395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071103683,6.233133445,0.538827885,-0.538827885,1,0.438008694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539169116,122.6270949,0.539169116,57.37290513,0,0.957264718,0,0,0,6,0,0% -2018-06-22 09:00:00,117.6467691,12.7009464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053323475,0.221673333,1.03135966,-1.03135966,1,0.3537808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599716318,126.8495831,0.599716318,53.15041688,0,0.966627248,0,0,0,6,1,0% -2018-06-22 10:00:00,113.5851189,27.2869559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982434305,0.476247223,1.682990965,-1.682990965,1,0.242345284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606291998,127.3218705,0.606291998,52.67812953,0,0.967531486,0,0,0,6,2,0% -2018-06-22 11:00:00,106.9971228,40.17326361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867452083,0.701155721,2.838083784,-2.838083784,1,0.044812778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558447692,123.9485131,0.558447692,56.05148689,0,0.9604661,0,0,0,6,3,0% -2018-06-22 12:00:00,98.51101337,51.2844419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719341533,0.895082366,6.329026932,-6.329026932,1,0,#DIV/0!,0,0,0.355742192,1,0.156706697,0,0.9445106,0.983272563,0.724496596,1,0,0,0.052076252,0.312029739,0.862958953,0.587455549,0.961238037,0.922476074,0,0,0,0,0,0,-0.459441902,117.3511004,0.459441902,62.64889965,0,0.941172312,0,0,0,6,4,0% -2018-06-22 13:00:00,88.34853068,60.93579529,2.074681232,11.55327317,1.741720681,1.704841199,0,1.704841199,1.689201376,0.015639823,4.143156476,3.587606686,0.555549789,0.052519305,0.503030485,1.54197275,1.06353026,-34.25108997,34.25108997,0,0,0.839512429,0.013129826,0.422300344,1,0.814382913,0,0.02918786,0.961238037,1,0.645060461,0.920563865,1.623724614,0.036563866,0.115824807,0.221870187,0.724496596,0.448993192,0.974661673,0.93589971,0.009512514,0.408561559,1.633237129,0.445125425,0,0.665921103,-0.310527297,108.0910107,0.310527297,71.90898929,0,0.88898356,1.633237129,1.037118338,2.312010339,6,5,42% -2018-06-22 14:00:00,77.85423373,69.58808883,135.6524608,417.3197594,47.84858289,47.42837712,0,47.42837712,46.40577157,1.022605549,91.35784187,57.02452091,34.33332096,1.442811317,32.89050964,1.358812715,1.21454127,-4.646351925,4.646351925,0.675273335,0.675273335,0.352729192,0.807668086,25.97738199,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.60699277,1.045311887,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585152779,24.97044767,45.19214555,26.01575956,0,57.02452091,-0.13664467,97.85373397,0.13664467,82.14626603,0,0.684087448,45.19214555,65.02551854,87.75004692,6,6,94% -2018-06-22 15:00:00,66.53491274,77.75533731,340.2215636,661.5232554,76.80949192,118.9391486,41.88101237,77.0581362,74.49340234,2.564733857,84.80674663,0,84.80674663,2.316089578,82.49065705,1.161253295,1.357086647,-2.282609248,2.282609248,0.920502861,0.920502861,0.22576315,2.406875476,77.41338888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60589183,1.677999015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743773089,74.41269396,73.34966491,76.09069297,41.88101237,0,0.063309962,86.37017879,-0.063309962,93.62982121,0,0,73.34966491,76.09069297,123.1495016,6,7,68% -2018-06-22 16:00:00,54.83637962,86.05344821,543.8168537,779.0970726,95.12444193,308.6438514,212.2882412,96.35561018,92.25608903,4.099521152,134.7230452,0,134.7230452,2.868352896,131.8546923,0.957075374,1.501916004,-1.364148267,1.364148267,0.763436782,0.763436782,0.174919996,3.299361936,106.1188213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68006191,2.078111909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390376491,102.0054475,91.0704384,104.0835594,212.2882412,0,0.272479834,74.18811512,-0.272479834,105.8118849,0.866500182,0,275.0182381,104.0835594,343.138846,6,8,25% -2018-06-22 17:00:00,43.01559872,95.42246816,724.2668775,842.5573622,108.2158952,511.7576442,401.3450279,110.4126163,104.9527866,5.459829654,178.8699982,0,178.8699982,3.263108513,175.6068897,0.750763827,1.66543625,-0.842676693,0.842676693,0.674259891,0.674259891,0.149414392,3.947075479,126.9515154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8846106,2.36411101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.859642748,122.0306254,103.7442533,124.3947364,401.3450279,0,0.476341488,61.55326981,-0.476341488,118.4467302,0.945033288,0,483.0286646,124.3947364,564.4425317,6,9,17% -2018-06-22 18:00:00,31.42724436,107.8035291,867.0505757,878.4040363,117.5058125,701.0687304,580.5699582,120.4987722,113.9625787,6.536193483,213.7696842,0,213.7696842,3.543233797,210.2264504,0.548508889,1.881526528,-0.482805472,0.482805472,0.612718288,0.612718288,0.135523597,4.347902694,139.8434964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5451654,2.567060824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150040701,134.422888,112.6952061,136.9899488,580.5699582,0,0.660937261,48.6286071,-0.660937261,131.3713929,0.974349854,0,678.3734604,136.9899488,768.0306421,6,10,13% -2018-06-22 19:00:00,20.93770044,128.434711,961.6057266,897.5486052,123.3226691,857.1567888,730.3037631,126.8530257,119.6040356,7.248990151,236.871075,0,236.871075,3.718633485,233.1524415,0.365431811,2.24160858,-0.200288452,0.200288452,0.564405032,0.564405032,0.128246604,4.496321028,144.6171403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9679484,2.694137301,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257569278,139.011496,118.2255177,141.7056333,730.3037631,0,0.813664863,35.54444029,-0.813664863,144.4555597,0.988549638,0,840.1670386,141.7056333,932.9105415,6,11,11% -2018-06-22 20:00:00,14.61121064,169.8805371,1001.140816,904.7051954,125.6939393,965.4957303,836.0449047,129.4508256,121.9038032,7.547022356,246.5283177,0,246.5283177,3.79013603,242.7381817,0.255013733,2.964974708,0.044732863,-0.044732863,0.52250392,0.52250392,0.125550709,4.395792537,141.3837984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1785725,2.745940652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184736729,135.9034848,120.3633092,138.6494255,836.0449047,0,0.924107553,22.46583587,-0.924107553,157.5341641,0.995893744,0,952.9751994,138.6494255,1043.718475,6,12,10% -2018-06-22 21:00:00,17.81037635,219.4373223,982.8482475,901.450383,124.6007618,1015.943663,887.6909485,128.2527143,120.8435891,7.409125246,242.0601093,0,242.0601093,3.757172695,238.3029366,0.310849708,3.829903775,0.276632461,-0.276632461,0.482846753,0.482846753,0.126775178,4.06323058,130.6874627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1594543,2.722058828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943796724,125.6217601,119.103251,128.3438189,887.6909485,0,0.984736337,10.02353639,-0.984736337,169.9764636,0.999224987,0,1006.106228,128.3438189,1090.10469,6,13,8% -2018-06-22 22:00:00,27.34270433,246.0239371,908.0238257,887.0787729,120.0538045,1002.747644,879.4688378,123.2788065,116.4337394,6.845067149,223.7809544,0,223.7809544,3.620065158,220.1608893,0.477220217,4.293927741,0.515838174,-0.515838174,0.441940166,0.441940166,0.132214377,3.530163355,113.5421884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9205391,2.622724884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557591334,109.1410702,114.4781304,111.7637951,879.4688378,0,0.991421354,7.510311921,-0.991421354,172.4896881,0.999567356,0,993.5664714,111.7637951,1066.71364,6,14,7% -2018-06-22 23:00:00,38.68285007,260.5181606,782.0109106,858.2326582,112.0594599,924.50203,809.9264477,114.5755823,108.6804537,5.895128567,192.9866053,0,192.9866053,3.379006171,189.6075991,0.675143098,4.546899664,0.787206339,-0.787206339,0.395533477,0.395533477,0.143296543,2.842344728,91.41957696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.467786,2.448078468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05926908,87.87597469,106.5270551,90.32405316,809.9264477,0,0.943714318,19.31501261,-0.943714318,160.6849874,0.997017864,0,914.0381922,90.32405316,973.1534785,6,15,6% -2018-06-22 00:00:00,50.4720119,270.6773671,613.9978594,806.8878946,100.4499672,783.7759707,681.7263654,102.0496053,97.42103004,4.628575218,151.8998268,0,151.8998268,3.028937131,148.8708896,0.880902788,4.724211266,1.133824748,-1.133824748,0.336258238,0.336258238,0.163599865,2.059004565,66.22466461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.64479966,2.194454641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491741799,63.6576666,95.13654146,65.85212124,681.7263654,0,0.84488362,32.34053111,-0.84488362,147.6594689,0.990820252,0,770.6048305,65.85212124,813.7037268,6,16,6% -2018-06-22 01:00:00,62.24716148,279.230739,416.9408063,714.1943565,84.3702311,586.1256821,501.1564489,84.96923326,81.82615734,3.143075915,103.6361994,0,103.6361994,2.544073761,101.0921257,1.086417918,4.873495768,1.658454853,-1.658454853,0.246541206,0.246541206,0.202355418,1.254111414,40.33653406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65441485,1.843172779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90859945,38.77301081,79.5630143,40.61618359,501.1564489,0,0.701708778,45.43573926,-0.701708778,134.5642607,0.978745369,0,570.0675678,40.61618359,596.6500476,6,17,5% -2018-06-22 02:00:00,73.7381786,287.3643879,209.0890092,530.6003541,60.50653729,338.3452057,278.0869625,60.25824321,58.68204194,1.576201271,52.52054637,0,52.52054637,1.824495345,50.69605103,1.286974001,5.015454722,2.724715055,-2.724715055,0.064199973,0.064199973,0.289381721,0.528032777,16.98334921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.4074108,1.321840666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382557949,16.32504125,56.78996875,17.64688192,278.0869625,0,0.524098713,58.39241117,-0.524098713,121.6075888,0.954598125,0,322.2512617,17.64688192,333.8007929,6,18,4% -2018-06-22 03:00:00,84.64598712,295.7744218,30.98950792,140.9677778,17.83591473,63.37374748,45.84203938,17.5317081,17.2980961,0.233612001,8.051583617,0,8.051583617,0.537818637,7.51376498,1.477351174,5.162237504,7.442373713,-7.442373713,0,0,0.575546884,0.134454659,4.324524024,0.42613403,1,0.133565761,0,0.947339961,0.986101924,0.724496596,1,16.77195949,0.389647771,0.060642225,0.312029739,0.842466777,0.566963373,0.961238037,0.922476074,0.092016029,4.156896983,16.86397552,4.546544755,26.30718638,0,0.325195162,71.02260075,-0.325195162,108.9773993,0.896246175,0,40.4416907,4.546544755,43.41731331,6,19,7% -2018-06-22 04:00:00,95.01621981,304.9997017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658345878,5.323249013,-6.534750396,6.534750396,1,0.352338177,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113260187,83.49671457,-0.113260187,96.50328543,0.608538604,0,0,0,0,6,20,0% -2018-06-22 05:00:00,104.0578077,315.5235411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816151356,5.50692466,-1.654630402,1.654630402,1,0.813112153,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090790391,95.20907935,0.090790391,84.79092065,0,0.499280929,0,0,0,6,21,0% -2018-06-22 06:00:00,111.4198933,327.7360594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944643991,5.720073315,-0.541466835,0.541466835,1,0.622749972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275543442,105.9944024,0.275543442,74.00559763,0,0.86854041,0,0,0,6,22,0% -2018-06-22 07:00:00,116.4876446,341.7420622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033092936,5.964524178,0.061005982,-0.061005982,1,0.519721052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428413448,115.3669156,0.428413448,64.63308435,0,0.933290312,0,0,0,6,23,0% -2018-06-23 08:00:00,118.6730537,357.075394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071235521,6.232141302,0.536925177,-0.536925177,1,0.438334077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538986888,122.6146985,0.538986888,57.38530146,0,0.957233365,0,0,0,6,0,0% -2018-06-23 09:00:00,117.6659357,12.64821265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053657995,0.220752955,1.029043061,-1.029043061,1,0.354176962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59973138,126.8506616,0.59973138,53.14933844,0,0.966629342,0,0,0,6,1,0% -2018-06-23 10:00:00,113.6140787,27.24176498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98293975,0.475458493,1.679449499,-1.679449499,1,0.24295091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60650865,127.3374815,0.60650865,52.66251851,0,0.967560945,0,0,0,6,2,0% -2018-06-23 11:00:00,107.0333689,40.13637171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868084696,0.700511836,2.830628745,-2.830628745,1,0.046087665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558856417,123.9767482,0.558856417,56.0232518,0,0.960531581,0,0,0,6,3,0% -2018-06-23 12:00:00,98.55226005,51.25475722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720061423,0.894564271,6.296941586,-6.296941586,1,0,#DIV/0!,0,0,0.353456668,1,0.157492072,0,0.944412448,0.983174411,0.724496596,1,0,0,0.051789844,0.312029739,0.863654181,0.588150777,0.961238037,0.922476074,0,0,0,0,0,0,-0.460020027,117.3883998,0.460020027,62.61160015,0,0.94130908,0,0,0,6,4,0% -2018-06-23 13:00:00,88.38921987,60.91159588,1.951000161,10.86243297,1.64566028,1.610745014,0,1.610745014,1.596037551,0.014707463,3.902819898,3.380154592,0.522665306,0.049622729,0.473042577,1.54268291,1.063107901,-35.11439537,35.11439537,0,0,0.843495717,0.012405682,0.399009388,1,0.819333777,0,0.028470654,0.961238037,1,0.646932288,0.922435692,1.534172002,0.034572475,0.115824807,0.223990954,0.724496596,0.448993192,0.974365751,0.935603788,0.008987875,0.385986828,1.543159877,0.420559304,0,0.610679762,-0.311178407,108.1302611,0.311178407,71.86973886,0,0.889320471,1.543159877,0.963649317,2.173849082,6,5,41% -2018-06-23 14:00:00,77.90057497,69.56764073,134.7665212,415.2514916,47.72617482,47.30298152,0,47.30298152,46.28705456,1.015926963,91.18905004,57.07422644,34.11482361,1.439120262,32.67570334,1.359621522,1.214184384,-4.664678824,4.664678824,0.67213925,0.67213925,0.354139696,0.800802149,25.75654985,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.49287745,1.042637731,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.580178431,24.75817542,45.07305588,25.80081315,0,57.07422644,-0.137444964,97.90002419,0.137444964,82.09997581,0,0.686218029,45.07305588,64.96617633,87.59211897,6,6,94% -2018-06-23 15:00:00,66.58271937,77.73694886,339.2489336,660.3635586,76.80416362,118.2949462,41.24930975,77.04563647,74.48823471,2.557401761,84.57076056,0,84.57076056,2.31592891,82.25483165,1.162087678,1.356765708,-2.287933442,2.287933442,0.921413352,0.921413352,0.226394709,2.401924401,77.25414529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.6009245,1.677882612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740186052,74.25962295,73.34111055,75.93750557,41.24930975,0,0.062464546,86.41871365,-0.062464546,93.58128635,0,0,73.34111055,75.93750557,123.0406892,6,7,68% -2018-06-23 16:00:00,54.88490046,86.03508857,542.8962754,778.3532297,95.17127325,307.8291528,211.4350632,96.39408967,92.30150822,4.092581444,134.5012524,0,134.5012524,2.869765033,131.6314874,0.957922223,1.501595568,-1.366730834,1.366730834,0.763878427,0.763878427,0.175302866,3.295638036,105.9990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.72372056,2.079134998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.387678538,101.8903167,91.1113991,103.9694517,211.4350632,0,0.271644101,74.23787613,-0.271644101,105.7621239,0.865935631,0,274.2005539,103.9694517,342.2464807,6,8,25% -2018-06-23 17:00:00,43.06421901,95.40059393,723.4656522,842.0232772,108.2928461,510.9200337,400.4388268,110.481207,105.0274173,5.453789679,178.6780522,0,178.6780522,3.265428869,175.4126234,0.751612411,1.665054472,-0.844264546,0.844264546,0.67453143,0.67453143,0.14968623,3.944451168,126.8671085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9563484,2.3657921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.857741444,121.9494903,103.8140898,124.3152824,400.4388268,0,0.475567407,61.60369971,-0.475567407,118.3963003,0.944862433,0,482.1736941,124.3152824,563.5355602,6,9,17% -2018-06-23 18:00:00,31.47488917,107.7690724,866.4136269,877.9888858,117.604057,700.3007656,579.7115129,120.5892527,114.0578608,6.531391894,213.6182111,0,213.6182111,3.546196231,210.0720148,0.549340448,1.880925145,-0.483933869,0.483933869,0.612911255,0.612911255,0.13573662,4.346336766,139.7931308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6367542,2.569207098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148906192,134.3744747,112.7856604,136.9436818,579.7115129,0,0.66027204,48.67937658,-0.66027204,131.3206234,0.974273637,0,677.5833047,136.9436818,767.2102055,6,10,13% -2018-06-23 19:00:00,20.98047395,128.3571404,961.1618898,897.2065899,123.4378521,856.523053,729.5616633,126.9613898,119.7157454,7.245644322,236.7669348,0,236.7669348,3.722106678,233.0448281,0.366178349,2.240254719,-0.201178751,0.201178751,0.564557282,0.564557282,0.128425662,4.495772329,144.5994922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0753281,2.696653618,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257171748,138.994532,118.3324999,141.6911856,729.5616633,0,0.81314791,35.59535909,-0.81314791,144.4046409,0.988510572,0,839.5119168,141.6911856,932.245964,6,11,11% -2018-06-23 20:00:00,14.63173707,169.695392,1000.903449,904.410825,125.8232123,965.0400106,835.4655994,129.5744112,122.0291782,7.545232979,246.4746633,0,246.4746633,3.79403409,242.6806292,0.255371987,2.961743316,0.043967175,-0.043967175,0.52263486,0.52263486,0.12570964,4.396186684,141.3964756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2990877,2.748764783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185022287,135.9156706,120.48411,138.6644354,835.4655994,0,0.923767801,22.51672261,-0.923767801,157.4832774,0.995873844,0,952.5024481,138.6644354,1043.255548,6,12,10% -2018-06-23 21:00:00,17.79473502,219.278188,982.8152701,901.1888541,124.7415623,1015.690787,887.3017663,128.3890206,120.9801439,7.408876649,242.0563592,0,242.0563592,3.761418349,238.2949409,0.310576716,3.827126358,0.275918805,-0.275918805,0.482968795,0.482968795,0.126922694,4.064448893,130.7266478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.290716,2.72513479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944679387,125.6594263,119.2353954,128.3845611,887.3017663,0,0.984590258,10.07151013,-0.984590258,169.9284899,0.999217454,0,1005.842807,128.3845611,1089.867935,6,13,8% -2018-06-23 22:00:00,27.31245259,245.9340503,908.1782919,886.8423967,120.2032767,1002.704178,879.2792423,123.424936,116.5787044,6.846231581,223.8229137,0,223.8229137,3.624572295,220.1983414,0.476692225,4.29235892,0.515113993,-0.515113993,0.442064009,0.442064009,0.132356474,3.532042412,113.6026253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.059885,2.625990289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558952704,109.1991645,114.6188377,111.8251548,879.2792423,0,0.991471817,7.488158328,-0.991471817,172.5118417,0.999569923,0,993.5199223,111.8251548,1066.70725,6,14,7% -2018-06-23 23:00:00,38.64845058,260.4574064,782.3223037,858.0210789,112.2141675,924.6573051,809.9293327,114.7279723,108.8304964,5.89747598,193.0667711,0,193.0667711,3.383671178,189.6831,0.674542713,4.545839304,0.786392443,-0.786392443,0.395672662,0.395672662,0.14343726,2.844681267,91.49472808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6120127,2.45145825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060961894,87.9482128,106.6729746,90.39967105,809.9293327,0,0.943950391,19.27407747,-0.943950391,160.7259225,0.997031115,0,914.19772,90.39967105,973.3624967,6,15,6% -2018-06-23 00:00:00,50.4369287,270.6288574,614.4240429,806.7142455,100.6057647,784.1043861,681.9004684,102.2039176,97.57212967,4.631787969,152.0078578,0,152.0078578,3.033635,148.9742228,0.88029047,4.723364613,1.132773001,-1.132773001,0.336438098,0.336438098,0.163739954,2.061561086,66.30689109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.79004237,2.197858231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493593989,63.73670582,95.28363636,65.93456405,681.9004684,0,0.845281303,32.29791232,-0.845281303,147.7020877,0.990848094,0,770.9434159,65.93456405,814.0962694,6,16,6% -2018-06-23 01:00:00,62.21306722,279.1873627,417.4296224,714.10944,84.522595,586.5916039,501.4709162,85.12068772,81.9739269,3.146760816,103.7593129,0,103.7593129,2.548668094,101.2106448,1.085822861,4.87273871,1.656763858,-1.656763858,0.246830384,0.246830384,0.202483462,1.256611022,40.41693004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.79645657,1.846501358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.910410408,38.85029049,79.70686698,40.69679185,501.4709162,0,0.702232582,45.39360002,-0.702232582,134.6064,0.978798519,0,570.545857,40.69679185,597.1810933,6,17,5% -2018-06-23 02:00:00,73.70633103,287.3224066,209.5728734,530.7908588,60.65384432,338.9126592,278.5079032,60.40475597,58.82490712,1.579848843,52.64230669,0,52.64230669,1.828937195,50.8133695,1.286418156,5.014722009,2.720612442,-2.720612442,0.064901561,0.064901561,0.289416485,0.530093735,17.0496367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.54473824,1.325058772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.384051107,16.38875931,56.92878935,17.71381809,278.5079032,0,0.524703654,58.35170445,-0.524703654,121.6482955,0.954708116,0,322.8225448,17.71381809,334.4158845,6,18,4% -2018-06-23 03:00:00,84.61807138,295.731381,31.28446416,141.8397995,17.98069897,63.88906936,46.2147193,17.67435006,17.43851455,0.235835505,8.12746495,0,8.12746495,0.542184416,7.585280534,1.476863952,5.1614863,7.409256236,-7.409256236,0,0,0.574748504,0.135546104,4.359628638,0.424262859,1,0.134155644,0,0.94726935,0.986031313,0.724496596,1,16.90814048,0.392810763,0.060420741,0.312029739,0.842989288,0.567485884,0.961238037,0.922476074,0.092763924,4.190640874,17.0009044,4.583451637,26.60753038,0,0.325823355,70.98453487,-0.325823355,109.0154651,0.896542615,0,40.85568926,4.583451637,43.85546669,6,19,7% -2018-06-23 04:00:00,94.99248159,304.9537334,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657931568,5.322446713,-6.573501865,6.573501865,1,0.345711285,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113878977,83.46102959,-0.113878977,96.53897041,0.610937399,0,0,0,0,6,20,0% -2018-06-23 05:00:00,104.0406918,315.4733055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815852628,5.506047883,-1.659920896,1.659920896,1,0.814016881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09024308,95.17759148,0.09024308,84.82240852,0,0.495940899,0,0,0,6,21,0% -2018-06-23 06:00:00,111.4115201,327.6812324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94449785,5.719116402,-0.544084046,0.544084046,1,0.623197541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275114009,105.9688085,0.275114009,74.03119153,0,0.868257165,0,0,0,6,22,0% -2018-06-23 07:00:00,116.4900792,341.6842529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033135428,5.963515216,0.058975851,-0.058975851,1,0.520068225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428140271,115.3495948,0.428140271,64.65040515,0,0.933215844,0,0,0,6,23,0% -2018-06-24 08:00:00,118.6874594,357.0185923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071486948,6.231149926,0.534872516,-0.534872516,1,0.438685102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538897666,122.6086297,0.538897666,57.39137033,0,0.957218006,0,0,0,6,0,0% -2018-06-24 09:00:00,117.6917598,12.59731082,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054108712,0.219864551,1.026490477,-1.026490477,1,0.35461348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599841214,126.8585263,0.599841214,53.14147374,0,0.966644607,0,0,0,6,1,0% -2018-06-24 10:00:00,113.6491968,27.19986259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983552676,0.474727158,1.675514568,-1.675514568,1,0.243623823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606818998,127.3598495,0.606818998,52.64015049,0,0.967603107,0,0,0,6,2,0% -2018-06-24 11:00:00,107.0751219,40.10376172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868813425,0.699942684,2.822358206,-2.822358206,1,0.04750201,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559354994,124.011203,0.559354994,55.98879701,0,0.960611328,0,0,0,6,3,0% -2018-06-24 12:00:00,98.59835058,51.22999787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720865855,0.894132139,6.261760512,-6.261760512,1,0,#DIV/0!,0,0,0.350931916,1,0.158362246,0,0.944303535,0.983065498,0.724496596,1,0,0,0.051472832,0.312029739,0.864424451,0.588921047,0.961238037,0.922476074,0,0,0,0,0,0,-0.460681654,117.4311021,0.460681654,62.56889785,0,0.941465181,0,0,0,6,4,0% -2018-06-24 13:00:00,88.43371135,60.89280208,1.821747514,10.14547055,1.544436403,1.511599049,0,1.511599049,1.497865947,0.013733102,3.652619686,3.164345454,0.488274232,0.046570456,0.441703776,1.543459433,1.062779887,-36.11046509,36.11046509,0,0,0.847777418,0.011642614,0.374466487,1,0.824727664,0,0.027685727,0.961238037,1,0.648985498,0.924488902,1.439805723,0.032472351,0.115824807,0.226317471,0.724496596,0.448993192,0.974039999,0.935278036,0.008435034,0.362201249,1.448240757,0.394673599,0,0.554622221,-0.311897357,108.1736113,0.311897357,71.82638868,0,0.889690851,1.448240757,0.888115915,2.029494861,6,5,40% -2018-06-24 14:00:00,77.95065492,69.55308152,133.8167507,413.057259,47.58938418,47.16315585,0,47.16315585,46.15438866,1.008767191,91.01037428,57.12995829,33.880416,1.434995519,32.44542048,1.360495582,1.213930278,-4.684644588,4.684644588,0.668724904,0.668724904,0.355630995,0.793432312,25.51951057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.36535395,1.039649369,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574839009,24.53032424,44.94019296,25.56997361,0,57.12995829,-0.138310021,97.95006625,0.138310021,82.04993375,0,0.688493295,44.94019296,64.90356686,87.4182794,6,6,95% -2018-06-24 15:00:00,66.63392323,77.72507907,338.214846,659.1532379,76.79174238,117.606425,40.58063066,77.02579438,74.47618801,2.549606371,84.31965948,0,84.31965948,2.315554364,82.00410512,1.162981354,1.356558541,-2.293616132,2.293616132,0.922385149,0.922385149,0.227050182,2.396649404,77.08448325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58934476,1.677611254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736364335,74.09653736,73.32570909,75.77414861,40.58063066,0,0.06156479,86.47036528,-0.06156479,93.52963472,0,0,73.32570909,75.77414861,122.9183739,6,7,68% -2018-06-24 16:00:00,54.93661866,86.02418282,541.9225298,777.5852325,95.21362217,306.9705006,210.5426795,96.4278211,92.34258016,4.085240938,134.2664335,0,134.2664335,2.871042009,131.3953915,0.958824876,1.501405226,-1.369430996,1.369430996,0.764340182,0.764340182,0.175696003,3.291661113,105.8711364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.76320047,2.080060162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384797271,101.7673633,91.14799774,103.8474235,210.5426795,0,0.270764761,74.29022037,-0.270764761,105.7097796,0.865337861,0,273.3385496,103.8474235,341.3046113,6,8,25% -2018-06-24 17:00:00,43.11605673,95.38764591,722.6191136,841.4755837,108.3665377,510.0450951,399.4988003,110.5462949,105.0988868,5.447408114,178.4750212,0,178.4750212,3.267650942,175.2073703,0.75251715,1.664828487,-0.845887754,0.845887754,0.674809015,0.674809015,0.149963564,3.941612761,126.7758156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0250476,2.367401984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855685028,121.8617361,103.8807326,124.2291381,399.4988003,0,0.474759824,61.65628664,-0.474759824,118.3437134,0.944683591,0,481.2806937,124.2291381,562.58618,6,9,17% -2018-06-24 18:00:00,31.52616031,107.7458823,865.7372798,877.5648231,117.6996984,699.502934,578.8260224,120.6769115,114.1506182,6.526293304,213.4571068,0,213.4571068,3.549080173,209.9080266,0.550235298,1.880520401,-0.485058908,0.485058908,0.613103648,0.613103648,0.135953136,4.344575777,139.7364914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7259162,2.571296503,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147630361,134.3200306,112.8735465,136.8913271,578.8260224,0,0.65958207,48.73199315,-0.65958207,131.2680068,0.974194422,0,676.7626289,136.8913271,766.3552647,6,10,13% -2018-06-24 19:00:00,21.02808053,128.2935789,960.6819692,896.8577397,123.5507585,855.8655317,728.798258,127.0672738,119.8252473,7.242026477,236.653977,0,236.653977,3.725511223,232.9284658,0.367009241,2.239145362,-0.202041858,0.202041858,0.564704882,0.564704882,0.128607346,4.49503192,144.5756781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1805855,2.699120199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256635325,138.971641,118.4372208,141.6707612,728.798258,0,0.812613,35.64798015,-0.812613,144.3520199,0.988470096,0,838.8325047,141.6707612,931.5531845,6,11,11% -2018-06-24 20:00:00,14.65912321,169.5165229,1000.630401,904.1102193,125.9502834,964.5640376,834.8684453,129.6955923,122.1524176,7.543174629,246.4122913,0,246.4122913,3.797865751,242.6144256,0.255849965,2.958621461,0.043247996,-0.043247996,0.522757847,0.522757847,0.125870934,4.396379133,141.4026654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4175501,2.751540808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185161716,135.9216205,120.6027118,138.6731613,834.8684453,0,0.923414455,22.56953009,-0.923414455,157.4304699,0.995853133,0,952.0090684,138.6731613,1042.767879,6,12,10% -2018-06-24 21:00:00,17.78519639,219.1076736,982.744052,900.9205269,124.880009,1015.417947,886.8951914,128.5227558,121.114416,7.408339776,242.0432662,0,242.0432662,3.76559303,238.2776732,0.310410235,3.82415032,0.27527203,-0.27527203,0.4830794,0.4830794,0.12707277,4.065444487,130.7586696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4197835,2.728159332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945400692,125.6902068,119.3651842,128.4183662,886.8951914,0,0.984432217,10.12315881,-0.984432217,169.8768412,0.999209301,0,1005.559109,128.4183662,1089.606361,6,13,8% -2018-06-24 22:00:00,27.28681776,245.8327695,908.2891841,886.5972963,120.3500125,1002.637379,879.0692959,123.5680831,116.7210156,6.847067532,223.8542254,0,223.8542254,3.628996921,220.2252285,0.476244812,4.290591237,0.514483361,-0.514483361,0.442171853,0.442171853,0.132501867,3.533669696,113.6549643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1966799,2.629195916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560131666,109.2494748,114.7568115,111.8786707,879.0692959,0,0.99150911,7.471744639,-0.99150911,172.5282554,0.99957182,0,993.4497074,111.8786707,1066.67206,6,14,7% -2018-06-24 23:00:00,38.61805168,260.3875776,782.5824451,857.7966029,112.3654809,924.7819262,809.9052422,114.8766841,108.977247,5.899437035,193.1344081,0,193.1344081,3.388233832,189.7461742,0.674012153,4.544620561,0.785713528,-0.785713528,0.395788763,0.395788763,0.143582931,2.846733125,91.56072288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.753075,2.454763877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.062448458,88.01164951,106.8155234,90.46641339,809.9052422,0,0.944169328,19.23603874,-0.944169328,160.7639613,0.997043397,0,914.3261976,90.46641339,973.5346558,6,15,6% -2018-06-24 00:00:00,50.40570551,270.5729082,614.7896579,806.5188426,100.7570843,784.3904506,682.0370199,102.3534306,97.7188865,4.634544129,152.1010682,0,152.1010682,3.038197847,149.0628703,0.879745523,4.722388114,1.131932063,-1.131932063,0.336581906,0.336581906,0.163888711,2.063802554,66.37898442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.93111062,2.201163998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495217925,63.80600468,95.42632855,66.00716867,682.0370199,0,0.845655407,32.25777456,-0.845655407,147.7422254,0.990874262,0,771.2392574,66.00716867,814.4396291,6,16,6% -2018-06-24 01:00:00,62.18294476,279.1376152,417.8481481,713.9820716,84.66846228,586.9978984,501.7325868,85.26531159,82.11539575,3.14991584,103.8651877,0,103.8651877,2.553066531,101.3121212,1.085297125,4.871870451,1.655455914,-1.655455914,0.247054055,0.247054055,0.202629742,1.258779754,40.48668393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93244181,1.849688011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911981647,38.91734058,79.84442345,40.76702859,501.7325868,0,0.702724349,45.35401034,-0.702724349,134.6459897,0.978848346,0,570.964536,40.76702859,597.6457408,6,17,5% -2018-06-24 02:00:00,73.67872223,287.2747845,209.9798228,530.8820414,60.78968996,339.3942631,278.8546899,60.53957312,58.95665652,1.5829166,52.74507254,0,52.74507254,1.833033442,50.91203909,1.285936292,5.013890848,2.717472266,-2.717472266,0.065438563,0.065438563,0.28950253,0.531854379,17.10626507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.67138077,1.328026489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385326687,16.44319266,57.05670746,17.77121915,278.8546899,0,0.52526676,58.31379685,-0.52526676,121.6862032,0.954810272,0,323.3100298,17.77121915,334.9409373,6,18,4% -2018-06-24 03:00:00,84.59469843,295.6832574,31.52580028,142.5025669,18.1019969,64.30672499,46.51291529,17.7938097,17.5561549,0.237654799,8.189637267,0,8.189637267,0.545841996,7.643795271,1.476456017,5.160646384,7.383382105,-7.383382105,0,0,0.574196269,0.136460499,4.389038725,0.422792431,1,0.134620126,0,0.947213694,0.985975658,0.724496596,1,17.02222646,0.395460668,0.06024646,0.312029739,0.843400717,0.567897312,0.961238037,0.922476074,0.093390572,4.218910968,17.11561703,4.614371636,26.84760677,0,0.326400543,70.9495519,-0.326400543,109.0504481,0.896813981,0,41.19292613,4.614371636,44.21294008,6,19,7% -2018-06-24 04:00:00,94.97389173,304.9032063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657607114,5.32156485,-6.606487967,6.606487967,1,0.34007033,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11443417,83.42901005,-0.11443417,96.57098995,0.613067572,0,0,0,0,6,20,0% -2018-06-24 05:00:00,104.0292829,315.4191522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815653504,5.505102729,-1.664766875,1.664766875,1,0.814845592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089769435,95.15034303,0.089769435,84.84965697,0,0.493017551,0,0,0,6,21,0% -2018-06-24 06:00:00,111.4094078,327.6234195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944460984,5.718107377,-0.546657024,0.546657024,1,0.623637547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274766914,105.9481243,0.274766914,74.05187575,0,0.868027581,0,0,0,6,22,0% -2018-06-24 07:00:00,116.4992039,341.6248186,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033294684,5.962477891,0.056872575,-0.056872575,1,0.520427907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427956112,115.3379196,0.427956112,64.66208037,0,0.93316559,0,0,0,6,23,0% -2018-06-25 08:00:00,118.7087088,356.9619036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071857819,6.230160522,0.532674086,-0.532674086,1,0.439061056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53890169,122.6089034,0.53890169,57.39109663,0,0.957218699,0,0,0,6,0,0% -2018-06-25 09:00:00,117.724219,12.54830795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054675231,0.219009289,1.023707376,-1.023707376,1,0.355089418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60004578,126.8731765,0.60004578,53.12682351,0,0.966673025,0,0,0,6,1,0% -2018-06-25 10:00:00,113.6904375,27.16131046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984272462,0.474054297,1.671195506,-1.671195506,1,0.244362426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607222721,127.3889574,0.607222721,52.61104261,0,0.96765789,0,0,0,6,2,0% -2018-06-25 11:00:00,107.1223355,40.07548744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869637458,0.699449205,2.813295685,-2.813295685,1,0.049051793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559942836,124.0518446,0.559942836,55.94815545,0,0.960705171,0,0,0,6,3,0% -2018-06-25 12:00:00,98.64923027,51.21020879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721753873,0.893786754,6.223633733,-6.223633733,1,0,#DIV/0!,0,0,0.348173409,1,0.159316109,0,0.944183952,0.982945915,0.724496596,1,0,0,0.05112572,0.312029739,0.865268775,0.589765371,0.961238037,0.922476074,0,0,0,0,0,0,-0.461425967,117.4791609,0.461425967,62.52083909,0,0.941640255,0,0,0,6,4,0% -2018-06-25 13:00:00,88.48192577,60.87945047,1.688424884,9.410416984,1.439121353,1.408454595,0,1.408454595,1.395726535,0.01272806,3.39524899,2.94247601,0.45277298,0.043394819,0.409378161,1.544300933,1.062546858,-37.25651261,37.25651261,0,0,0.852345501,0.010848705,0.348931634,1,0.83054847,0,0.026834502,0.961238037,1,0.65121761,0.926721014,1.341625434,0.030285334,0.115824807,0.228846994,0.724496596,0.448993192,0.973684495,0.934922532,0.00785985,0.337457443,1.349485284,0.367742777,0,0.498607061,-0.312682851,108.2209861,0.312682851,71.77901385,0,0.890093565,1.349485284,0.811549714,1.88062834,6,5,39% -2018-06-25 14:00:00,78.00440926,69.5444405,132.8044976,410.7377488,47.43823606,47.00893461,0,47.00893461,46.00779821,1.0011364,90.82102952,57.19060368,33.63042584,1.430437846,32.19998799,1.361433773,1.213779463,-4.706262257,4.706262257,0.665028065,0.665028065,0.357203535,0.785572936,25.266726,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22444563,1.03634735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.569144918,24.2873381,44.79359055,25.32368545,0,57.19060368,-0.139238733,98.0037974,0.139238733,81.9962026,0,0.690904517,44.79359055,64.83693187,87.22806572,6,6,95% -2018-06-25 15:00:00,66.68845782,77.71975098,337.1204841,657.892655,76.77228516,116.8747603,39.87608623,76.99867411,74.4573175,2.541356609,84.05373207,0,84.05373207,2.314967657,81.73876441,1.163933162,1.356465548,-2.299654554,2.299654554,0.92341778,0.92341778,0.227729517,2.391055218,76.90455502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5712057,1.677186187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732311366,73.9235835,73.30351707,75.60076968,39.87608623,0,0.060611843,86.5250673,-0.060611843,93.4749327,0,0,73.30351707,75.60076968,122.7827088,6,7,67% -2018-06-25 16:00:00,54.99146633,86.02074852,540.8966559,776.7933196,95.25154411,306.0690522,209.6121861,96.45686608,92.37935861,4.077507468,134.018842,0,134.018842,2.872185496,131.1466565,0.959782148,1.501345287,-1.372246286,1.372246286,0.764821625,0.764821625,0.17609934,3.287434868,105.7352059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79855332,2.080888614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381735371,101.6367017,91.18028869,103.7175903,209.6121861,0,0.269842931,74.34507946,-0.269842931,105.6549205,0.864707023,0,272.4334181,103.7175903,340.3145066,6,8,25% -2018-06-25 17:00:00,43.17104305,95.38363717,721.7280987,840.9144265,108.4370138,509.1338862,398.5259572,110.607929,105.1672378,5.440691267,178.2611095,0,178.2611095,3.269776057,174.9913334,0.753476843,1.664758521,-0.847544458,0.847544458,0.675092328,0.675092328,0.150246352,3.938562765,126.6777173,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0907492,2.368941623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853475316,121.7674403,103.9442245,124.1363819,398.5259572,0,0.473919753,61.71096148,-0.473919753,118.2890385,0.944496906,0,480.3507582,124.1363819,561.5955374,6,9,17% -2018-06-25 18:00:00,31.58098771,107.7339726,865.0221189,877.1319243,117.792766,698.6761101,577.9143285,120.7617816,114.2408795,6.520902119,213.2865141,0,213.2865141,3.551886503,209.7346276,0.551192217,1.880312539,-0.486179131,0.486179131,0.613295218,0.613295218,0.136173126,4.342620959,139.6736177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8126787,2.57332968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146214102,134.2595941,112.9588928,136.8329238,577.9143285,0,0.658868196,48.786388,-0.658868196,131.213612,0.974112288,0,675.9123415,136.8329238,765.4667535,6,10,13% -2018-06-25 19:00:00,21.08044862,128.2440953,960.1662643,896.5020774,123.6614012,855.1848483,728.0141557,127.1706926,119.9325537,7.238138876,236.5322747,0,236.5322747,3.728847508,232.8034272,0.367923236,2.23828171,-0.202876562,0.202876562,0.564847625,0.564847625,0.128791654,4.494099766,144.5456968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2837325,2.701537326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255959982,138.9428219,118.5396924,141.6443592,728.0141557,0,0.812060757,35.70223562,-0.812060757,144.2977644,0.988428252,0,838.1294521,141.6443592,930.8328523,6,11,11% -2018-06-25 20:00:00,14.69333149,169.3443996,1000.321675,903.8033539,126.0751483,964.0681351,834.2537704,129.8143647,122.2735174,7.540847321,246.3412022,0,246.3412022,3.801630887,242.5395713,0.256447013,2.955617343,0.042576383,-0.042576383,0.522872699,0.522872699,0.126034606,4.396368665,141.4023287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5339558,2.754268637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185154132,135.9212968,120.7191099,138.6755655,834.2537704,0,0.923047881,22.62419097,-0.923047881,157.375809,0.995831629,0,951.4954012,138.6755655,1042.255785,6,12,10% -2018-06-25 21:00:00,17.78181606,218.9261435,982.6343067,900.6453289,125.0160806,1015.125142,886.4712454,128.653897,121.2463845,7.40751247,242.0207603,0,242.0207603,3.769696091,238.2510642,0.310351237,3.820982022,0.27469311,-0.27469311,0.483178401,0.483178401,0.127225439,4.066215123,130.7834559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5466366,2.731131985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945959014,125.7140324,119.4925957,128.4451644,886.4712454,0,0.984262303,10.17839826,-0.984262303,169.8216017,0.999200533,0,1005.255137,128.4451644,1089.319928,6,13,8% -2018-06-25 22:00:00,27.26587029,245.7202284,908.3559563,886.3433422,120.4939734,1002.546917,878.838711,123.7082064,116.8606355,6.847570889,223.874756,0,223.874756,3.633337873,220.2414182,0.47587921,4.288627025,0.513947229,-0.513947229,0.442263537,0.442263537,0.132650612,3.535042176,113.699108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3308879,2.632340921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561126023,109.2919074,114.8920139,111.9242483,878.838711,0,0.991533043,7.46119203,-0.991533043,172.538808,0.999573037,0,993.3554934,111.9242483,1066.607675,6,14,7% -2018-06-25 23:00:00,38.59172102,260.3087508,782.7905775,857.5590239,112.513344,924.8752574,809.8535998,115.0216576,109.1206516,5.901006026,193.1893308,0,193.1893308,3.392692453,189.7966384,0.673552596,4.543244774,0.785170566,-0.785170566,0.395881615,0.395881615,0.143733646,2.848496766,91.61744764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8909209,2.457994133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06372621,88.06617551,106.9546471,90.52416965,809.8535998,0,0.944370681,19.20099109,-0.944370681,160.7990089,0.997054688,0,914.4229757,90.52416965,973.6692343,6,15,6% -2018-06-25 00:00:00,50.37840553,270.509579,615.0938007,806.3013668,100.9038514,784.6332634,682.1351985,102.4980648,97.86122796,4.636836887,152.1792367,0,152.1792367,3.042623414,149.1366133,0.879269048,4.721282812,1.131302976,-1.131302976,0.336689487,0.336689487,0.164046282,2.065725256,66.44082512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.06793464,2.204370306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496610916,63.8654483,95.56454556,66.06981861,682.1351985,0,0.846005261,32.2201982,-0.846005261,147.7798018,0.990898713,0,771.4914357,66.06981861,814.7328105,6,16,6% -2018-06-25 01:00:00,62.15685237,279.0815504,418.1954123,713.8117602,84.80773247,587.3434643,501.9404642,85.40300009,82.25046643,3.152533664,103.9535854,0,103.9535854,2.557266041,101.3963194,1.084841727,4.870891937,1.654532094,-1.654532094,0.247212038,0.247212038,0.202794507,1.260614044,40.54568099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.06227688,1.852730542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913310584,38.9740508,79.97558746,40.82678134,501.9404642,0,0.703183237,45.31704322,-0.703183237,134.6829568,0.978894778,0,571.3224869,40.82678134,598.0427987,6,17,5% -2018-06-25 02:00:00,73.65540485,287.2215749,210.3089069,530.873202,60.91393019,339.7888198,279.126272,60.66254782,59.07715044,1.585397375,52.8286091,0,52.8286091,1.836779744,50.99182935,1.285529326,5.012962165,2.715294089,-2.715294089,0.065811053,0.065811053,0.289640278,0.533311504,17.15313122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78720411,1.330740672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386382369,16.48824218,57.17358648,17.81898285,279.126272,0,0.525787082,58.27875562,-0.525787082,121.7212444,0.954904472,0,323.712512,17.81898285,335.3746799,6,18,4% -2018-06-25 03:00:00,84.57591528,295.6301056,31.71253298,142.954434,18.1995082,64.62527075,46.7354824,17.88978835,17.65072588,0.239062469,8.237853097,0,8.237853097,0.548782321,7.689070776,1.47612819,5.159718711,7.364648571,-7.364648571,0,0,0.573890084,0.13719558,4.41268147,0.421723107,1,0.134958423,0,0.947173128,0.985935091,0.724496596,1,17.11393686,0.397590924,0.060119591,0.312029739,0.84370037,0.568196966,0.961238037,0.922476074,0.093894339,4.241637273,17.2078312,4.639228197,27.02604956,0,0.326925728,70.91771447,-0.326925728,109.0822855,0.897060064,0,41.45182094,4.639228197,44.48810301,6,19,7% -2018-06-25 04:00:00,94.96048805,304.8481783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657373176,5.320604429,-6.633479732,6.633479732,1,0.335454466,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11492482,83.40071119,-0.11492482,96.59928881,0.614932971,0,0,0,0,6,20,0% -2018-06-25 05:00:00,104.0236088,315.3611427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815554473,5.504090273,-1.669153559,1.669153559,1,0.815595759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089370293,95.12738155,0.089370293,84.87261845,0,0.490529975,0,0,0,6,21,0% -2018-06-25 06:00:00,111.4135729,327.5626858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944533678,5.717047373,-0.549179916,0.549179916,1,0.624068986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274502821,105.9323877,0.274502821,74.06761227,0,0.867852509,0,0,0,6,22,0% -2018-06-25 07:00:00,116.5150219,341.5638265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033570761,5.961413378,0.05470042,-0.05470042,1,0.520799367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.42786141,115.3319162,0.42786141,64.66808381,0,0.93313973,0,0,0,6,23,0% -2018-06-26 08:00:00,118.7367911,356.9053957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072347948,6.229174273,0.530334262,-0.530334262,1,0.43946119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538999139,122.6155319,0.538999139,57.38446814,0,0.957235473,0,0,0,6,0,0% -2018-06-26 09:00:00,117.7632886,12.50126987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055357123,0.21818832,1.020699537,-1.020699537,1,0.355603789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60034498,126.894609,0.60034498,53.10539098,0,0.966714553,0,0,0,6,1,0% -2018-06-26 10:00:00,113.7377633,27.12616905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985098453,0.473440963,1.666502198,-1.666502198,1,0.245165029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607719442,127.4247858,0.607719442,52.57521419,0,0.967725193,0,0,0,6,2,0% -2018-06-26 11:00:00,107.1749616,40.05160102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870555956,0.699032308,2.803465992,-2.803465992,1,0.050732769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56061931,124.0986379,0.56061931,55.90136205,0,0.960812919,0,0,0,6,3,0% -2018-06-26 12:00:00,98.7048433,51.1954328,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722724503,0.893528864,6.182717273,-6.182717273,1,0,#DIV/0!,0,0,0.345186863,1,0.16035252,0,0.944053788,0.982815751,0.724496596,1,0,0,0.050749025,0.312029739,0.866186135,0.59068273,0.961238037,0.922476074,0,0,0,0,0,0,-0.462252114,117.5325281,0.462252114,62.46747193,0,0.941833918,0,0,0,6,4,0% -2018-06-26 13:00:00,88.5337806,60.87157501,1.552561769,8.665409857,1.330835048,1.302409327,0,1.302409327,1.290705461,0.011703866,3.133462664,2.716896501,0.416566163,0.040129587,0.376436576,1.545205971,1.062409405,-38.57389426,38.57389426,0,0,0.857186538,0.010032397,0.322676365,1,0.836779413,0,0.025918463,0.961238037,1,0.653626043,0.929129447,1.240675184,0.028034283,0.115824807,0.231576666,0.724496596,0.448993192,0.973299311,0.934537348,0.007268437,0.312019191,1.247943621,0.340053475,0,0.443453443,-0.313533525,108.2723067,0.313533525,71.72769326,0,0.890527421,1.247943621,0.734960925,1.728960847,6,5,39% -2018-06-26 14:00:00,78.06177352,69.54174376,131.7311265,408.2935847,47.27274896,46.84034603,0,46.84034603,45.84730116,0.993044875,90.62018408,57.25499953,33.36518454,1.425447799,31.93973675,1.362434968,1.213732396,-4.729547458,4.729547458,0.661046061,0.661046061,0.358857851,0.777238689,24.99866799,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.07016976,1.032732078,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.563106785,24.02967054,44.63327654,25.06240262,0,57.25499953,-0.140229976,98.06115417,0.140229976,81.93884583,0,0.693442854,44.63327654,64.76547289,87.02098324,6,6,95% -2018-06-26 15:00:00,66.74625712,77.72098373,335.9670225,656.5821454,76.74584649,116.1011337,39.13679634,76.96433739,74.43167606,2.532661329,83.77326473,0,83.77326473,2.314170434,81.4590943,1.16494195,1.356487064,-2.306046132,2.306046132,0.924510804,0.924510804,0.228432677,2.385146477,76.7145096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54655817,1.676608602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728030504,73.74090461,73.27458868,75.41751321,39.13679634,0,0.059606854,86.58275321,-0.059606854,93.41724679,0,0,73.27458868,75.41751321,122.6338427,6,7,67% -2018-06-26 16:00:00,55.04937663,86.02479832,539.8196726,775.9777164,95.28509267,305.1259539,208.6446696,96.48128427,92.41189556,4.069388713,133.7587265,0,133.7587265,2.873197109,130.8855294,0.960792873,1.501415969,-1.375174272,1.375174272,0.76532234,0.76532234,0.17651282,3.282962887,105.5913716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.82982907,2.081621524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378495436,101.4984427,91.20832451,103.5800642,208.6446696,0,0.268879718,74.40238557,-0.268879718,105.5976144,0.864043244,0,271.4863418,103.5800642,339.2774222,6,8,25% -2018-06-26 17:00:00,43.22911089,95.38857381,720.793416,840.3399407,108.5043166,508.1874411,397.5212848,110.6661563,105.2325111,5.433645234,178.0365142,0,178.0365142,3.271805484,174.7647088,0.754490318,1.664844682,-0.849232811,0.849232811,0.675381053,0.675381053,0.150534556,3.935303555,126.5728898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1534924,2.370411935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851114029,121.6666761,104.0046064,124.0370881,397.5212848,0,0.473048186,61.76765647,-0.473048186,118.2323435,0.944302523,0,479.3849584,124.0370881,560.5647518,6,9,17% -2018-06-26 18:00:00,31.63930374,107.7333456,864.2686957,876.6902576,117.8832869,697.8211361,576.9772427,120.8438933,114.3286708,6.515222497,213.1065675,0,213.1065675,3.554616042,209.5519514,0.552210023,1.880301596,-0.487293095,0.487293095,0.613485717,0.613485717,0.136396571,4.340473411,139.6045452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8970671,2.575307222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.144658211,134.1931989,113.0417253,136.7685062,576.9772427,0,0.658131236,48.84249452,-0.658131236,131.1575055,0.974027311,0,675.0333173,136.7685062,764.5455692,6,10,13% -2018-06-26 19:00:00,21.13750887,128.2087325,959.6150405,896.1396184,123.769791,854.4815873,727.2099287,127.2716586,120.0376751,7.233983519,236.4018925,0,236.4018925,3.73211586,232.6697766,0.368919125,2.237664512,-0.203681674,0.203681674,0.564985307,0.564985307,0.128978586,4.49297571,144.5095433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3847792,2.703905236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255145607,138.9080697,118.6399248,141.611975,727.2099287,0,0.811491774,35.75806113,-0.811491774,144.2419389,0.988385081,0,837.403369,141.611975,930.0855744,6,11,11% -2018-06-26 20:00:00,14.73432161,169.1794632,999.9772401,903.4901978,126.1978007,963.5525857,833.6218635,129.9307222,122.3924714,7.538250828,246.2613885,0,246.2613885,3.805329312,242.4560592,0.257162425,2.952738659,0.041953372,-0.041953372,0.522979241,0.522979241,0.126200673,4.396153963,141.3954231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.648299,2.756948133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184998581,135.9146589,120.8332975,138.6716071,833.6218635,0,0.922668409,22.68064352,-0.922668409,157.3193565,0.995809351,0,950.9617443,138.6716071,1041.719538,6,12,10% -2018-06-26 21:00:00,17.7846479,218.7339879,982.4857203,900.3631813,125.1497538,1014.812331,886.0299115,128.7824193,121.3760269,7.406392363,241.9887645,0,241.9887645,3.77372683,238.2150377,0.310400662,3.817628275,0.274182997,-0.274182997,0.483265636,0.483265636,0.127380736,4.066758496,130.8009326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6712539,2.734052242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946352687,125.7308317,119.6176065,128.4648839,886.0299115,0,0.984080569,10.23715399,-0.984080569,169.762846,0.999191152,0,1004.930855,128.4648839,1089.008552,6,13,8% -2018-06-26 22:00:00,27.24968075,245.5965752,908.378043,886.0803985,120.6351194,1002.432429,878.5871659,123.8452628,116.9975254,6.847737389,223.8843673,0,223.8843673,3.637593945,220.2467734,0.475596649,4.286468869,0.513506519,-0.513506519,0.442338903,0.442338903,0.132802769,3.536156802,113.7349582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4624716,2.63542443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561933565,109.3263679,115.0244052,111.9617924,878.5871659,0,0.991543394,7.456623296,-0.991543394,172.5433767,0.999573564,0,993.2369095,111.9617924,1066.513663,6,14,7% -2018-06-26 23:00:00,38.56952608,260.2210106,782.9459345,857.3081296,112.6577003,924.9366341,809.773802,115.1628321,109.2606549,5.902177172,193.2313518,0,193.2313518,3.397045325,189.8343064,0.673165221,4.541713418,0.78476451,-0.78476451,0.395951055,0.395951055,0.143889502,2.849968687,91.66478968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.0254974,2.461147774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064792612,88.11168248,107.0902901,90.57283026,809.773802,0,0.944553975,19.16903324,-0.944553975,160.8309668,0.997064963,0,914.4873757,90.57283026,973.7654816,6,15,6% -2018-06-26 00:00:00,50.35509129,270.4389344,615.3355702,806.061491,101.0459902,784.8319045,682.1941643,102.6377402,97.99908077,4.638659447,152.2421425,0,152.2421425,3.046909424,149.1952331,0.878862138,4.720049831,1.130886788,-1.130886788,0.336760659,0.336760659,0.164212822,2.067325562,66.49229646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20044401,2.207475506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497770332,63.91492451,95.69821435,66.12240002,682.1941643,0,0.846330177,32.18526536,-0.846330177,147.8147346,0.990921402,0,771.6990123,66.12240002,814.9748006,6,16,6% -2018-06-26 01:00:00,62.13484716,279.0192258,418.4704592,713.597998,84.94030418,587.6271906,502.0935429,85.53364769,82.37904061,3.154607084,104.0242713,0,104.0242713,2.561263567,101.4630077,1.084457663,4.869804167,1.653993596,-1.653993596,0.247304126,0.247304126,0.202978017,1.262110478,40.59381145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.18586727,1.855626736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914394745,39.02031563,80.10026202,40.87594237,502.0935429,0,0.703608396,45.28277215,-0.703608396,134.7172279,0.978937744,0,571.6185822,40.87594237,598.3710689,6,17,5% -2018-06-26 02:00:00,73.63642992,287.1628331,210.5592095,530.7635849,61.02641679,340.0951252,279.3215957,60.77352942,59.18624516,1.587284262,52.89268974,0,52.89268974,1.84017163,51.05251811,1.285198152,5.011936928,2.714078511,-2.714078511,0.066018929,0.066018929,0.289830195,0.534462174,17.19014073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.89207011,1.333198082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387216026,16.52381713,57.27928613,17.85701521,279.3215957,0,0.526263677,58.24664762,-0.526263677,121.7533524,0.954990593,0,324.0287824,17.85701521,335.7158417,6,18,4% -2018-06-26 03:00:00,84.56176661,295.5719819,31.84381164,143.1939601,18.27294354,64.84340483,46.88140586,17.96199898,17.72194687,0.240052103,8.271897475,0,8.271897475,0.550996668,7.720900807,1.475881249,5.158704261,7.35298629,-7.35298629,0,0,0.573830286,0.137749167,4.430486718,0.421055412,1,0.135169879,0,0.947147758,0.985909721,0.724496596,1,17.18300096,0.39919521,0.060040318,0.312029739,0.843887672,0.568384268,0.961238037,0.922476074,0.094273666,4.258752356,17.27727463,4.657947566,27.1417362,0,0.327397928,70.88908379,-0.327397928,109.1109162,0.897280646,0,41.63102923,4.657947566,44.67956275,6,19,7% -2018-06-26 04:00:00,94.95230614,304.7887079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657230375,5.319566475,-6.654284641,6.654284641,1,0.331896617,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115350007,83.37618667,-0.115350007,96.62381333,0.616536654,0,0,0,0,6,20,0% -2018-06-26 05:00:00,104.0236951,315.2993388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815555979,5.503011592,-1.673067432,1.673067432,1,0.816265071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089046452,95.10875258,0.089046452,84.89124742,0,0.488495317,0,0,0,6,21,0% -2018-06-26 06:00:00,111.4240291,327.4990958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944716173,5.715937519,-0.551646991,0.551646991,1,0.624490881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274322347,105.9216346,0.274322347,74.07836542,0,0.867732677,0,0,0,6,22,0% -2018-06-26 07:00:00,116.5375342,341.5013432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033963674,5.96032284,0.052463744,-0.052463744,1,0.521181861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427856552,115.3316083,0.427856552,64.66839173,0,0.933138403,0,0,0,6,23,0% -2018-06-27 08:00:00,118.7716935,356.8491358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072957109,6.228192353,0.527857614,-0.527857614,1,0.439884721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539190137,122.628525,0.539190137,57.37147504,0,0.957268333,0,0,0,6,0,0% -2018-06-27 09:00:00,117.8089417,12.45626204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056153921,0.217402785,1.017473053,-1.017473053,1,0.35615555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600738658,126.9228184,0.600738658,53.07718156,0,0.966769132,0,0,0,6,1,0% -2018-06-27 10:00:00,113.7911348,27.09449826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986029961,0.472888204,1.66144507,-1.66144507,1,0.246029849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608308731,127.4673134,0.608308731,52.53268662,0,0.967804895,0,0,0,6,2,0% -2018-06-27 11:00:00,107.2329503,40.03215362,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87156805,0.698692887,2.792895156,-2.792895156,1,0.052540489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561383733,124.1515462,0.561383733,55.84845381,0,0.960934363,0,0,0,6,3,0% -2018-06-27 12:00:00,98.76513239,51.18571117,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723776746,0.89335919,6.139172134,-6.139172134,1,0,#DIV/0!,0,0,0.341978238,1,0.161470301,0,0.943913133,0.982675096,0.724496596,1,0,0,0.050343289,0.312029739,0.867175478,0.591672074,0.961238037,0.922476074,0,0,0,0,0,0,-0.463159202,117.5911537,0.463159202,62.40884635,0,0.942045759,0,0,0,6,4,0% -2018-06-27 13:00:00,88.58918975,60.86920754,1.41569588,7.918585091,1.220734013,1.194596492,0,1.194596492,1.183924378,0.010672114,2.870044307,2.489982816,0.380061491,0.036809635,0.343251857,1.546173043,1.062368085,-40.0892551,40.0892551,0,0,0.862285488,0.009202409,0.295981095,1,0.843403042,0,0.024939168,0.961238037,1,0.656208085,0.931711489,1.138033145,0.025742858,0.115824807,0.234503489,0.724496596,0.448993192,0.972884524,0.934122561,0.006667114,0.286158819,1.144700259,0.311901677,0,0.389923735,-0.314447946,108.32749,0.314447946,71.67250998,0,0.89099117,1.144700259,0.659320282,1.576212197,6,5,38% -2018-06-27 14:00:00,78.1226827,69.54501477,130.5980241,405.725344,47.09293641,46.6574137,0,46.6574137,45.67291063,0.984503071,90.40696282,57.32193408,33.08502875,1.420025787,31.66500296,1.363498034,1.213789486,-4.75451828,4.75451828,0.656775799,0.656775799,0.360594555,0.768444595,24.71581967,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.90253895,1.028803849,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556735493,23.75778598,44.45927444,24.78658983,0,57.32193408,-0.141282606,98.12207194,0.141282606,81.87792806,0,0.696099394,44.45927444,64.68835341,86.79650798,6,6,95% -2018-06-27 15:00:00,66.80725516,77.7287932,334.7556335,655.2220244,76.71247928,115.2867382,38.36389385,76.92284435,74.39931499,2.523529366,83.47854329,0,83.47854329,2.313164289,81.165379,1.166006567,1.356623365,-2.312788416,2.312788416,0.925663802,0.925663802,0.229159636,2.378927748,76.51449389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51545148,1.675879653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723525055,73.5486419,73.23897654,75.22452155,38.36389385,0,0.058550983,86.64335602,-0.058550983,93.35664398,0,0,73.23897654,75.22452155,122.4719214,6,7,67% -2018-06-27 16:00:00,55.11028347,86.03634053,538.6925846,775.1386378,95.31432011,304.1423472,207.6412133,96.50113393,92.44024168,4.060892247,133.4863323,0,133.4863323,2.874078424,130.6122539,0.961855898,1.501617419,-1.378212524,1.378212524,0.765841912,0.765841912,0.176936388,3.27824866,105.4397458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.85707644,2.082260034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375079995,101.3526943,91.23215644,103.4349543,207.6412133,0,0.267876226,74.46207105,-0.267876226,105.537929,0.863346632,0,270.4984985,103.4349543,338.1946074,6,8,25% -2018-06-27 17:00:00,43.29019458,95.40245575,719.8158512,839.7522531,108.5684864,507.2067775,396.4857555,110.7210219,105.294746,5.426275938,177.8014273,0,177.8014273,3.273740441,174.5276869,0.755556429,1.665086967,-0.850950966,0.850950966,0.675674875,0.675674875,0.150828141,3.931837387,126.461406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2133149,2.371813805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.848602803,121.5595136,104.0619177,123.9313274,396.4857555,0,0.472146105,61.82630473,-0.472146105,118.1736953,0.944100577,0,478.3843484,123.9313274,559.4949236,6,9,17% -2018-06-27 18:00:00,31.70104291,107.7439927,863.4775329,876.2398837,117.9712864,696.9388272,576.0155519,120.9232753,114.4140169,6.509258377,212.9173944,0,212.9173944,3.557269554,209.3601248,0.553287575,1.880487422,-0.488399359,0.488399359,0.613674899,0.613674899,0.136623458,4.338134107,139.5293051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.979105,2.577229682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142963393,134.1208753,113.1220684,136.698105,576.0155519,0,0.657371985,48.90024791,-0.657371985,131.0997521,0.973939564,0,674.1264037,136.698105,763.5925795,6,10,13% -2018-06-27 19:00:00,21.19919408,128.1875096,959.0285306,895.7703713,123.8759367,853.7562993,726.3861171,127.3701823,120.1406201,7.229562159,236.262887,0,236.262887,3.735316545,232.5275705,0.369995735,2.237294102,-0.204456012,0.204456012,0.565117727,0.565117727,0.129168145,4.491659471,144.4672086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4837338,2.706224121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254191996,138.8673759,118.7379258,141.5736001,726.3861171,0,0.810906612,35.81539532,-0.810906612,144.1846047,0.988340619,0,836.6548302,141.5736001,929.3119199,6,11,11% -2018-06-27 20:00:00,14.78205085,169.0221259,999.5970342,903.170713,126.3182326,963.0176334,832.9729769,130.0446565,122.5092718,7.535384675,246.1728347,0,246.1728347,3.808960777,242.3638739,0.257995458,2.949992605,0.041379989,-0.041379989,0.523077295,0.523077295,0.126369155,4.395733601,141.3819028,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7605719,2.759579117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18469403,135.9016627,120.945266,138.6612418,832.9729769,0,0.922276337,22.73883113,-0.922276337,157.2611689,0.995786314,0,950.4083561,138.6612418,1041.159366,6,12,10% -2018-06-27 21:00:00,17.79374424,218.5316227,982.2979492,900.0739981,125.2810033,1014.479431,885.5711352,128.9082957,121.5033188,7.404976865,241.9471949,0,241.9471949,3.777684488,238.1695104,0.310559423,3.814096335,0.273742632,-0.273742632,0.483340942,0.483340942,0.1275387,4.067072224,130.8110232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7936117,2.736919552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946579981,125.7405311,119.7401916,128.4774507,885.5711352,0,0.983887033,10.2993608,-0.983887033,169.7006392,0.999181158,0,1004.586184,128.4774507,1088.672106,6,13,8% -2018-06-27 22:00:00,27.23832016,245.4619734,908.3548549,885.8083224,120.7734087,1002.29351,878.3143026,123.9792074,117.1316448,6.847562587,223.882915,0,223.882915,3.641763878,220.2411511,0.47539837,4.284119624,0.513162144,-0.513162144,0.442397795,0.442397795,0.132958401,3.537010479,113.7624154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5913923,2.638445533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562552052,109.3527609,115.1539444,111.9912064,878.3143026,0,0.991539908,7.458162216,-0.991539908,172.5418378,0.999573386,0,993.093546,111.9912064,1066.389551,6,14,7% -2018-06-27 23:00:00,38.55153459,260.1244494,783.0477338,857.0436989,112.7984912,924.9653589,809.6652138,115.3001451,109.3972005,5.902944578,193.2602796,0,193.2602796,3.401290692,189.8589889,0.67285121,4.540028106,0.784496307,-0.784496307,0.39599692,0.39599692,0.144050594,2.851145385,91.70263633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1567503,2.464223528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065645126,88.14806212,107.2223954,90.61228565,809.6652138,0,0.944718706,19.14026826,-0.944718706,160.8597317,0.997074193,0,914.518685,90.61228565,973.8226137,6,15,6% -2018-06-27 00:00:00,50.3358251,270.3610439,615.5140601,805.7988767,101.183424,784.9854283,682.2130529,102.7723754,98.13237044,4.640004979,152.2895636,0,152.2895636,3.051053561,149.23851,0.87852588,4.718690386,1.130684576,-1.130684576,0.336795239,0.336795239,0.164388485,2.068599899,66.5332835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.32856711,2.210477919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498693585,63.95432282,95.8272607,66.16480074,682.2130529,0,0.846629442,32.15306038,-0.846629442,147.8469396,0.990942285,0,771.8610224,66.16480074,815.1645612,6,16,6% -2018-06-27 01:00:00,62.11698552,278.9507021,418.6723409,713.3402548,85.06607426,587.8479473,502.1908001,85.65714722,82.50101826,3.156128953,104.0770123,0,104.0770123,2.565055999,101.5119563,1.084145919,4.868608202,1.653841794,-1.653841794,0.247330086,0.247330086,0.203180545,1.263265765,40.63096944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.30311683,1.85837434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915231746,39.0560333,80.21834858,40.91440764,502.1908001,0,0.703998964,45.25127153,-0.703998964,134.7487285,0.978977168,0,571.8516759,40.91440764,598.6293374,6,17,5% -2018-06-27 02:00:00,73.6218473,287.098617,210.7298406,530.5523664,61.12699595,340.3119569,279.4395948,60.87236204,59.28379149,1.588570551,52.93709406,0,52.93709406,1.843204462,51.09388959,1.284943637,5.010816145,2.71382727,-2.71382727,0.066061894,0.066061894,0.290072805,0.5353037,17.21720709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.98583534,1.335395359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387825709,16.54983434,57.37366105,17.8852297,279.4395948,0,0.526695596,58.21753977,-0.526695596,121.7824602,0.955068506,0,324.2576173,17.8852297,335.9631424,6,18,4% -2018-06-27 03:00:00,84.5522952,295.5089441,31.91891487,143.219883,18.32202143,64.95995786,46.94979472,18.01016315,17.76954488,0.240618263,8.291587002,0,8.291587002,0.552476547,7.739110455,1.475715941,5.157604044,7.348359323,-7.348359323,0,0,0.574017679,0.138119137,4.442386221,0.420790079,1,0.135253957,0,0.947137668,0.985899631,0.724496596,1,17.22915492,0.400267378,0.060008804,0.312029739,0.843962144,0.56845874,0.961238037,0.922476074,0.094527058,4.27019061,17.32368198,4.670457987,27.19378688,0,0.327816178,70.86372011,-0.327816178,109.1362799,0.897475496,0,41.72943935,4.670457987,44.78616069,6,19,7% -2018-06-27 04:00:00,94.94937977,304.7248547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6571793,5.318452028,-6.668749062,6.668749062,1,0.329423055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115708831,83.35548898,-0.115708831,96.64451102,0.617880865,0,0,0,0,6,20,0% -2018-06-27 05:00:00,104.0295653,315.2338027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815658434,5.50186777,-1.676496252,1.676496252,1,0.816851434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088798684,95.09450003,0.088798684,84.90549997,0,0.486928592,0,0,0,6,21,0% -2018-06-27 06:00:00,111.4407883,327.4327143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945008677,5.714778943,-0.554052642,0.554052642,1,0.624902272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274226073,105.9158985,0.274226073,74.08410149,0,0.867668687,0,0,0,6,22,0% -2018-06-27 07:00:00,116.5667395,341.4374353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034473403,5.959207436,0.050166999,-0.050166999,1,0.521574628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427941881,115.3370175,0.427941881,64.66298251,0,0.933161704,0,0,0,6,23,0% -2018-06-28 08:00:00,118.813401,356.7931912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073685043,6.227215936,0.525248908,-0.525248908,1,0.440330836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539474757,122.6478904,0.539474757,57.35210956,0,0.957317257,0,0,0,6,0,0% -2018-06-28 09:00:00,117.8611497,12.41334998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057065123,0.216653828,1.014034316,-1.014034316,1,0.356743609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601226605,126.9577974,0.601226605,53.04220261,0,0.966836681,0,0,0,6,1,0% -2018-06-28 10:00:00,113.8505105,27.06635788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987066263,0.472397062,1.656035054,-1.656035054,1,0.246955016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608990105,127.5165167,0.608990105,52.48348325,0,0.96789686,0,0,0,6,2,0% -2018-06-28 11:00:00,107.29625,40.01719578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872672838,0.698431824,2.78161032,-2.78161032,1,0.054470309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562235375,124.2105302,0.562235375,55.78946977,0,0.961069274,0,0,0,6,3,0% -2018-06-28 12:00:00,98.83003877,51.18108395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724909576,0.89327843,6.093163162,-6.093163162,1,0,#DIV/0!,0,0,0.338553723,1,0.162668233,0,0.943762081,0.982524044,0.724496596,1,0,0,0.04990907,0.312029739,0.868235717,0.592732313,0.961238037,0.922476074,0,0,0,0,0,0,-0.464146294,117.6549856,0.464146294,62.34501437,0,0.942275344,0,0,0,6,4,0% -2018-06-28 13:00:00,88.6480633,60.87237816,1.279351471,7.177956285,1.109997948,1.086171707,0,1.086171707,1.076527415,0.009644292,2.60776811,2.264104,0.343664109,0.033470534,0.310193576,1.54720058,1.062423422,-41.83610783,41.83610783,0,0,0.867625491,0.008367633,0.269131854,1,0.850401287,0,0.023898246,0.961238037,1,0.658960877,0.934464281,1.034799099,0.023435259,0.115824807,0.237624295,0.724496596,0.448993192,0.972440215,0.933678252,0.006062322,0.260154012,1.040861421,0.283589271,0,0.338707044,-0.315424601,108.3864485,0.315424601,71.61355151,0,0.891483512,1.040861421,0.585541016,1.424086305,6,5,37% -2018-06-28 14:00:00,78.18707119,69.55427467,129.4066022,403.033569,46.89880795,46.46015748,0,46.46015748,45.48463585,0.975521629,90.18045015,57.39014913,32.79030102,1.414172098,31.37612892,1.364621825,1.213951102,-4.781195228,4.781195228,0.652213772,0.652213772,0.362414337,0.759206036,24.41867588,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.72156207,1.024562871,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.550042189,23.47216006,44.27160426,24.49672293,0,57.39014913,-0.142395457,98.1864848,0.142395457,81.8135152,0,0.698865201,44.27160426,64.60470107,86.55408901,6,6,96% -2018-06-28 15:00:00,66.87138594,77.74319224,333.4874905,653.8125915,76.67223519,114.4327803,37.55852631,76.87425398,74.36028441,2.513969569,83.16985383,0,83.16985383,2.311950781,80.85790305,1.16712586,1.356874676,-2.31987905,2.31987905,0.926876372,0.926876372,0.229910379,2.372403551,76.30465328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4779338,1.675000471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.718798297,73.34693512,73.1967321,75.02193559,37.55852631,0,0.057445401,86.70680805,-0.057445401,93.29319195,0,0,73.1967321,75.02193559,122.2970885,6,7,67% -2018-06-28 16:00:00,55.1741213,86.05537956,537.5163857,774.2762903,95.33927764,303.1193722,206.6029,96.51647222,92.46444665,4.052025563,133.2019019,0,133.2019019,2.874830985,130.3270709,0.962970079,1.501949712,-1.381358602,1.381358602,0.766379923,0.766379923,0.177369993,3.273295599,105.2804383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88034318,2.082805263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371491519,101.1995619,91.2518347,103.2823671,206.6029,0,0.266833561,74.52406818,-0.266833561,105.4759318,0.862617274,0,269.4710652,103.2823671,337.0673088,6,8,25% -2018-06-28 17:00:00,43.35422971,95.42527727,718.79617,839.1514838,108.6295624,506.1928992,395.4203298,110.7725695,105.3539803,5.41858915,177.5560355,0,177.5560355,3.275582107,174.2804533,0.756674053,1.665485278,-0.852697066,0.852697066,0.675973476,0.675973476,0.151127075,3.928166414,126.3433349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2702532,2.373148086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845943195,121.4460192,104.1161964,123.8191673,395.4203298,0,0.47121448,61.88684005,-0.47121448,118.11316,0.943891206,0,477.3499685,123.8191673,558.3871371,6,9,17% -2018-06-28 18:00:00,31.76614173,107.7658955,862.6491256,875.7808565,118.0567882,696.0299751,575.0300211,120.999954,114.4969405,6.503013494,212.7191157,0,212.7191157,3.559847749,209.1592679,0.554423764,1.880869698,-0.489496479,0.489496479,0.613862518,0.613862518,0.136853774,4.335603897,139.4479249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0588143,2.579097576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141130265,134.0426496,113.1999446,136.6217471,575.0300211,0,0.65659122,48.95958491,-0.65659122,131.0404151,0.973849119,0,673.1924239,136.6217471,762.608625,6,10,13% -2018-06-28 19:00:00,21.26543913,128.1804232,958.4069359,895.3943377,123.9798451,853.0095031,725.5432315,127.4662716,120.2413953,7.224876316,236.1153074,0,236.1153074,3.738449766,232.3768577,0.37115193,2.237170422,-0.205198392,0.205198392,0.565244681,0.565244681,0.129360338,4.490150641,144.4186794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5806028,2.70849413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253098854,138.8207279,118.8337016,141.529222,725.5432315,0,0.810305807,35.87417963,-0.810305807,144.1258204,0.988294901,0,835.8843778,141.529222,928.512423,6,11,11% -2018-06-28 20:00:00,14.83647424,168.8727712,999.1809615,902.8448544,126.4364335,962.4634847,832.3073281,130.1561567,122.6239085,7.532248143,246.0755172,0,246.0755172,3.812524971,242.2629922,0.258945325,2.947385874,0.040857254,-0.040857254,0.523166688,0.523166688,0.126540075,4.39510604,141.3617183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8707651,2.762161363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184239365,135.8822606,121.0550045,138.644422,832.3073281,0,0.92187193,22.79870211,-0.92187193,157.2012979,0.995762531,0,949.8354562,138.644422,1040.575458,6,12,10% -2018-06-28 21:00:00,17.80915589,218.3194884,982.0706191,899.7776865,125.409802,1014.126321,885.0948244,129.031497,121.6282338,7.403263155,241.8959599,0,241.8959599,3.781568245,238.1143916,0.310828407,3.810393894,0.273372946,-0.273372946,0.483404163,0.483404163,0.127699373,4.067153829,130.8136479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9136847,2.73973332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946639104,125.7430541,119.8603238,128.4827874,885.0948244,0,0.983681678,10.36496251,-0.983681678,169.6350375,0.999170549,0,1004.221005,128.4827874,1088.31042,6,13,8% -2018-06-28 22:00:00,27.23186008,245.3166015,908.2857766,885.5269628,120.9087978,1002.12972,878.0197267,124.1099933,117.2629514,6.847041846,223.8702487,0,223.8702487,3.645846359,220.2244023,0.47528562,4.281582406,0.512915009,-0.512915009,0.442440057,0.442440057,0.133117573,3.537600057,113.7813783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7176092,2.641403276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562979199,109.3709887,115.2805884,112.0123919,878.0197267,0,0.991522295,7.465932649,-0.991522295,172.5340674,0.99957249,0,992.9249534,112.0123919,1066.234824,6,14,7% -2018-06-28 23:00:00,38.53781474,260.0191676,783.0951751,856.7655017,112.935657,924.9606998,809.5271674,115.4335324,109.5302302,5.903302211,193.2759183,0,193.2759183,3.405426745,189.8704916,0.672611754,4.538190593,0.78436691,-0.78436691,0.396019048,0.396019048,0.144217026,2.852023344,91.73087451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2846235,2.467220084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066281204,88.17520573,107.3509047,90.64242581,809.5271674,0,0.944864337,19.11480364,-0.944864337,160.8851964,0.99708235,0,914.5161554,90.64242581,973.8398102,6,15,6% -2018-06-28 00:00:00,50.32066919,270.275982,615.6283557,805.513172,101.3160744,785.0928608,682.1909733,102.9018875,98.26102094,4.640866588,152.3212758,0,152.3212758,3.05505346,149.2662223,0.878261359,4.717205775,1.13069746,-1.13069746,0.336793036,0.336793036,0.164573437,2.06954473,66.56367254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.45223087,2.213375832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499378112,63.98353392,95.95160898,66.19690975,682.1909733,0,0.846902319,32.1236699,-0.846902319,147.8763301,0.990961314,0,771.9764723,66.19690975,815.3010258,6,16,6% -2018-06-28 01:00:00,62.10332328,278.8760434,418.8001132,713.0379745,85.18493739,588.0045817,502.2311923,85.77338939,82.61629723,3.157092156,104.1115763,0,104.1115763,2.568640161,101.5429362,1.083907468,4.867305162,1.654078254,-1.654078254,0.247289649,0.247289649,0.203402374,1.26407672,40.65705255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41392736,1.860971053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915819281,39.08110538,80.32974664,40.94207643,502.2311923,0,0.70435406,45.22261686,-0.70435406,134.7773831,0.979012974,0,572.0205998,40.94207643,598.81637,6,17,5% -2018-06-28 02:00:00,73.61170584,287.0289867,210.8199333,530.2386476,61.21550735,340.4380701,279.4791864,60.95888365,59.36963395,1.589249708,52.96160703,0,52.96160703,1.845873408,51.11573362,1.284766635,5.009600867,2.714543304,-2.714543304,0.065939445,0.065939445,0.290368688,0.535833628,17.2342514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.06835038,1.337329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38820964,16.56621798,57.45656002,17.90354698,279.4791864,0,0.527081886,58.19149917,-0.527081886,121.8085008,0.955138079,0,324.3977734,17.90354698,336.1152868,6,18,4% -2018-06-28 03:00:00,84.54754208,295.4410518,31.93725004,143.0311069,18.34646661,64.97388989,46.93988046,18.03400943,17.79325295,0.240756481,8.29676969,0,8.29676969,0.55321366,7.74355603,1.475632984,5.1564191,7.350765238,-7.350765238,0,0,0.574453548,0.138303415,4.448313238,0.420928076,1,0.135210225,0,0.947142916,0.985904879,0.724496596,1,17.25214021,0.400801413,0.060025195,0.312029739,0.843923409,0.568420005,0.961238037,0.922476074,0.094653076,4.275887884,17.34679329,4.676689297,27.18156687,0,0.328179523,70.84168286,-0.328179523,109.1583171,0.897644364,0,41.74617359,4.676689297,44.8069732,6,19,7% -2018-06-28 04:00:00,94.95174104,304.6566795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657220512,5.317262146,-6.676760396,6.676760396,1,0.328053037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116000407,83.33866963,-0.116000407,96.66133037,0.618967031,0,0,0,0,6,20,0% -2018-06-28 05:00:00,104.0412412,315.1645968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815862216,5.5006599,-1.67942908,1.67942908,1,0.817352977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088627731,95.0846664,0.088627731,84.9153336,0,0.485842493,0,0,0,6,21,0% -2018-06-28 06:00:00,111.4638605,327.3636058,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945411362,5.713572773,-0.556391392,0.556391392,1,0.625302221,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274214543,105.9152115,0.274214543,74.08478849,0,0.86766102,0,0,0,6,22,0% -2018-06-28 07:00:00,116.6026349,341.372169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035099896,5.958068324,0.04781472,-0.04781472,1,0.521976891,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428117695,115.3481635,0.428117695,64.65183645,0,0.933209686,0,0,0,6,23,0% -2018-06-29 08:00:00,118.8618969,356.7376291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074531456,6.226246194,0.522513085,-0.522513085,1,0.44079869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539853024,122.6736341,0.539853024,57.32636588,0,0.957382199,0,0,0,6,0,0% -2018-06-29 09:00:00,117.9198819,12.37259947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058090193,0.215942598,1.010390001,-1.010390001,1,0.357366823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601808564,126.9995366,0.601808564,53.00046337,0,0.966917101,0,0,0,6,1,0% -2018-06-29 10:00:00,113.915847,27.04180776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9882066,0.471968581,1.650283558,-1.650283558,1,0.24793858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609763033,127.5723707,0.609763033,52.42762933,0,0.968000933,0,0,0,6,2,0% -2018-06-29 11:00:00,107.3648073,40.00677761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873869389,0.698249992,2.769639617,-2.769639617,1,0.05651742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56317346,124.275549,0.56317346,55.72445099,0,0.961217407,0,0,0,6,3,0% -2018-06-29 12:00:00,98.89950211,51.18159015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72612194,0.893287265,6.044857862,-6.044857862,1,0,#DIV/0!,0,0,0.334919721,1,0.163945059,0,0.943600726,0.982362689,0.724496596,1,0,0,0.049446948,0.312029739,0.869365729,0.593862325,0.961238037,0.922476074,0,0,0,0,0,0,-0.465212414,117.72397,0.465212414,62.27602999,0,0.942522215,0,0,0,6,4,0% -2018-06-29 13:00:00,88.71030747,60.88111531,1.145015984,6.45128353,0.999813848,0.978297386,0,0.978297386,0.969665772,0.008631614,2.349355926,2.041585468,0.307770458,0.030148076,0.277622382,1.548286946,1.062575914,-43.85704194,43.85704194,0,0,0.873187678,0.007537019,0.242416443,1,0.857755516,0,0.022797405,0.961238037,1,0.661881392,0.937384796,0.932079623,0.021135919,0.115824807,0.240935728,0.724496596,0.448993192,0.971966481,0.933204518,0.005460545,0.234284051,0.937540167,0.25541997,0,0.290404272,-0.316461904,108.4490902,0.316461904,71.55090983,0,0.892003099,0.937540167,0.514461481,1.274244917,6,5,36% -2018-06-29 14:00:00,78.25487269,69.5695424,128.1582977,400.2187727,46.69036948,46.24859395,0,46.24859395,45.28248257,0.966111383,89.93969278,57.45834282,32.48134996,1.407886909,31.07346305,1.365805184,1.214217574,-4.809601241,4.809601241,0.647356057,0.647356057,0.364317959,0.749538753,24.10774283,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52724465,1.020009273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.543038275,23.17327939,44.07028293,24.19328866,0,57.45834282,-0.143567336,98.25432556,0.143567336,81.74567444,0,0.701731365,44.07028293,64.51360999,86.29315039,6,6,96% -2018-06-29 15:00:00,66.93858336,77.76419094,332.1637683,652.3541312,76.6251648,113.5404797,36.7218555,76.81862415,74.31463336,2.503990792,82.84748273,0,82.84748273,2.310531435,80.53695129,1.168298676,1.357241172,-2.327315764,2.327315764,0.928148125,0.928148125,0.230684897,2.365578363,76.08513179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.43405228,1.67397216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.713853471,73.13592271,73.14790575,74.80989487,36.7218555,0,0.05629129,86.77304092,-0.05629129,93.22695908,0,0,73.14790575,74.80989487,122.1094857,6,7,67% -2018-06-29 16:00:00,55.24082512,86.08191613,536.2920595,773.390872,95.36001545,302.0581674,205.5308122,96.52735522,92.48455914,4.042796075,132.9056751,0,132.9056751,2.875456307,130.0302188,0.96413428,1.502412863,-1.384610055,1.384610055,0.766935954,0.766935954,0.177813588,3.268107036,105.1135563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89967607,2.083258306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367732423,101.0391485,91.26740849,103.1224068,205.5308122,0,0.265752829,74.58830919,-0.265752829,105.4116908,0.861855248,0,268.4052177,103.1224068,335.8967705,6,8,25% -2018-06-29 17:00:00,43.42115313,95.45702727,717.7351179,838.5377456,108.6875822,505.1467975,394.3259564,110.8208411,105.4102506,5.410590491,177.3005206,0,177.3005206,3.277331617,174.023189,0.757842087,1.66603942,-0.85446924,0.85446924,0.676276536,0.676276536,0.151431328,3.924292679,126.2187422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3243423,2.3744156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.843136687,121.326256,104.167479,123.7006716,394.3259564,0,0.470254271,61.94919691,-0.470254271,118.0508031,0.943674544,0,476.282846,123.7006716,557.2424615,6,9,17% -2018-06-29 18:00:00,31.83453874,107.7990263,861.7839423,875.3132232,118.1398141,695.0953483,574.0213941,121.0739542,114.5774628,6.496491376,212.5118455,0,212.5118455,3.562351285,208.9494942,0.555617517,1.881447939,-0.490583007,0.490583007,0.614048325,0.614048325,0.137087509,4.332883508,139.3604278,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1362154,2.58091138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139159352,133.958544,113.2753748,136.5394554,574.0213941,0,0.655789698,49.02044382,-0.655789698,130.9795562,0.973756045,0,672.2321775,136.5394554,761.5945202,6,10,13% -2018-06-29 19:00:00,21.33618113,128.1874488,957.7504266,895.0115124,124.0815211,852.241686,724.6817534,127.5599327,120.3400054,7.219927271,235.959195,0,235.959195,3.741515672,232.2176794,0.37238661,2.237293042,-0.205907637,0.205907637,0.565365969,0.565365969,0.129555172,4.488448689,144.3639388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6753905,2.710715368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251865796,138.7681091,118.9272563,141.4788245,724.6817534,0,0.809689868,35.93435825,-0.809689868,144.0656417,0.988247961,0,835.0925218,141.4788245,927.6875828,6,11,11% -2018-06-29 20:00:00,14.89754485,168.7317527,998.7288938,902.5125704,126.5523912,961.8903096,831.6250997,130.2652099,122.7363696,7.528840266,245.9694047,0,245.9694047,3.816021522,242.1533832,0.260011208,2.944924636,0.040386182,-0.040386182,0.523247246,0.523247246,0.126713457,4.394269625,141.3348164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.978867,2.764694602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183633385,135.8564014,121.1625004,138.621096,831.6250997,0,0.92145542,22.86020954,-0.92145542,157.1397905,0.995738015,0,949.2432265,138.621096,1039.967961,6,12,10% -2018-06-29 21:00:00,17.83093195,218.098049,981.8033247,899.4741461,125.5361208,1013.752842,884.6008502,129.1519917,121.7507435,7.401248177,241.8349602,0,241.8349602,3.78537722,238.049583,0.311208471,3.806529047,0.273074864,-0.273074864,0.483455138,0.483455138,0.127862799,4.067000744,130.8087241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0314457,2.74249291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946528194,125.7383212,119.9779739,128.4808141,884.6008502,0,0.983464454,10.4339118,-0.983464454,169.5660882,0.999159322,0,1003.835159,128.4808141,1087.923283,6,13,8% -2018-06-29 22:00:00,27.23037248,245.1606533,908.170167,885.236161,121.0412412,1001.940579,877.7030073,124.2375715,117.3914012,6.846170331,223.8462114,0,223.8462114,3.649840016,220.1963714,0.475259656,4.278860596,0.512766018,-0.512766018,0.442465536,0.442465536,0.133280354,3.537922325,113.7917435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.84108,2.644296667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563212681,109.3809521,115.4042927,112.0252488,877.7030073,0,0.991490233,7.480057424,-0.991490233,172.5199426,0.99957086,0,992.7306423,112.0252488,1066.048927,6,14,7% -2018-06-29 23:00:00,38.52843507,259.905274,783.0874396,856.4732984,113.0691358,924.9218901,809.358962,115.5629281,109.6596842,5.903243897,193.2780676,0,193.2780676,3.409451626,189.868616,0.672448048,4.536202774,0.784377279,-0.784377279,0.396017275,0.396017275,0.144388902,2.852599032,91.74939061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4090596,2.470136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066698288,88.19300411,107.4757579,90.66314021,809.358962,0,0.944990303,19.0927511,-0.944990303,160.9072489,0.997089404,0,914.4790031,90.66314021,973.8162151,6,15,6% -2018-06-29 00:00:00,50.30968574,270.183828,615.6775339,805.2040116,101.4438614,785.1531989,682.1270069,103.026192,98.38495465,4.641237314,152.3370529,0,152.3370529,3.058906708,149.2781462,0.878069662,4.715597385,1.130926603,-1.130926603,0.33675385,0.33675385,0.164767846,2.070156559,66.58335106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57136066,2.216167497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49982138,64.00244966,96.07118204,66.21861715,682.1270069,0,0.847148048,32.09718286,-0.847148048,147.9028171,0.990978439,0,772.0443387,66.21861715,815.3830993,6,16,6% -2018-06-29 01:00:00,62.09391576,278.7953172,418.8528358,712.6905739,85.2967859,588.0959179,502.2136552,85.8822627,82.7247731,3.157489601,104.1277322,0,104.1277322,2.572012807,101.5557194,1.083743275,4.865896224,1.654704748,-1.654704748,0.247182512,0.247182512,0.203643807,1.264540266,40.67196179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.51819849,1.863414523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916155118,39.0954367,80.43435361,40.95885123,502.2136552,0,0.70467279,45.19688468,-0.70467279,134.8031153,0.979045082,0,572.1241629,40.95885123,598.9309119,6,17,5% -2018-06-29 02:00:00,73.60605345,286.9540049,210.8286436,529.8214503,61.29178385,340.4721961,279.4392703,61.0329258,59.44361043,1.58931537,52.96601896,0,52.96601896,1.848173426,51.11784554,1.284667982,5.008292187,2.716230789,-2.716230789,0.065650868,0.065650868,0.290718485,0.536049742,17.24120237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.13945939,1.338995356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388366214,16.57289952,57.5278256,17.91189488,279.4392703,0,0.527421587,58.16859316,-0.527421587,121.8314068,0.955199178,0,324.4479869,17.91189488,336.1709639,6,18,4% -2018-06-29 03:00:00,84.54754662,295.3683662,31.89835524,142.6267007,18.34600964,64.88429257,46.85101954,18.03327304,17.79280976,0.240463276,8.287325415,0,8.287325415,0.55319988,7.734125535,1.475633063,5.155150496,7.360235377,-7.360235377,0,0,0.575139674,0.13829997,4.44820244,0.421470622,1,0.135038364,0,0.947163538,0.985925501,0.724496596,1,17.25170323,0.40079143,0.060089619,0.312029739,0.84377118,0.568267776,0.961238037,0.922476074,0.094650337,4.275781381,17.34635357,4.676572811,27.10469121,0,0.328487018,70.82303067,-0.328487018,109.1769693,0.897786983,0,41.68059251,4.676572811,44.74131589,6,19,7% -2018-06-29 04:00:00,94.95942048,304.5842439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657354543,5.315997905,-6.678248788,6.678248788,1,0.327798507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116223866,83.32577918,-0.116223866,96.67422082,0.619795761,0,0,0,0,6,20,0% -2018-06-29 05:00:00,104.0587426,315.0917844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816167674,5.499389083,-1.681856339,1.681856339,1,0.817768063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088534313,95.0792928,0.088534313,84.9207072,0,0.485247213,0,0,0,6,21,0% -2018-06-29 06:00:00,111.4932536,327.2918351,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945924368,5.712320137,-0.558657913,0.558657913,1,0.625689819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274288264,105.9196039,0.274288264,74.08039614,0,0.867710028,0,0,0,6,22,0% -2018-06-29 07:00:00,116.6452155,341.3056107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035843067,5.956906662,0.045411512,-0.045411512,1,0.522387864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428384251,115.3650643,0.428384251,64.63493573,0,0.933282357,0,0,0,6,23,0% -2018-06-30 08:00:00,118.9171626,356.6825169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075496024,6.225284305,0.519655253,-0.519655253,1,0.441287408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540324915,122.70576,0.540324915,57.29424003,0,0.957463086,0,0,0,6,0,0% -2018-06-30 09:00:00,117.9851059,12.33407654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059228566,0.215270246,1.006547036,-1.006547036,1,0.358024009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602484226,127.0480252,0.602484226,52.9519748,0,0.967010275,0,0,0,6,1,0% -2018-06-30 10:00:00,113.9870991,27.02090781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989450185,0.471603808,1.644202407,-1.644202407,1,0.248978518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610626933,127.6348481,0.610626933,52.36515189,0,0.968116943,0,0,0,6,2,0% -2018-06-30 11:00:00,107.438567,40.00094875,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875156738,0.69814826,2.757012021,-2.757012021,1,0.058676866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564197164,124.3465595,0.564197164,55.6534405,0,0.961378498,0,0,0,6,3,0% -2018-06-30 12:00:00,98.97346068,51.18726774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727412761,0.893386357,5.994425171,-5.994425171,1,0,#DIV/0!,0,0,0.331082823,1,0.165299485,0,0.943429164,0.982191127,0.724496596,1,0,0,0.048957519,0.312029739,0.870564358,0.595060954,0.961238037,0.922476074,0,0,0,0,0,0,-0.466356548,117.7980509,0.466356548,62.20194915,0,0.942785895,0,0,0,6,4,0% -2018-06-30 13:00:00,88.7758246,60.89544584,1.014115472,5.74593478,0.891357793,0.872124898,0,0.872124898,0.864480067,0.007644831,2.097430402,1.824668638,0.272761763,0.026877726,0.245884037,1.549430435,1.062826029,-46.20687046,46.20687046,0,0,0.878950986,0.006719432,0.216120017,1,0.865446607,0,0.021638425,0.961238037,1,0.664966432,0.940469836,0.830971123,0.018869141,0.115824807,0.24443424,0.724496596,0.448993192,0.971463432,0.932701469,0.004868205,0.208825508,0.835839328,0.227694648,0,0.245515357,-0.317558188,108.5153186,0.317558188,71.48468144,0,0.892548541,0.835839328,0.446829022,1.128279986,6,5,35% -2018-06-30 14:00:00,78.32602035,69.5908348,126.8545711,397.2814419,46.46762338,46.02273643,0,46.02273643,45.06645309,0.956283341,89.68370238,57.52517265,32.15852973,1.401170292,30.75735944,1.367046945,1.214589196,-4.839761772,4.839761772,0.642198303,0.642198303,0.366306259,0.739458816,23.78353738,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.31958889,1.015143107,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.535735395,22.86164078,43.85532429,23.87678389,0,57.52517265,-0.144797029,98.32552579,0.144797029,81.67447421,0,0.704689049,43.85532429,64.41414307,86.01309264,6,6,96% -2018-06-30 15:00:00,67.00878138,77.79179663,330.7856415,650.8469129,76.57131743,112.611067,35.85505545,76.75601158,74.26240969,2.49360189,82.51171622,0,82.51171622,2.308907739,80.20280848,1.169523863,1.357722982,-2.335096373,2.335096373,0.929478688,0.929478688,0.231483196,2.358456613,75.85607183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38385291,1.672795797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708693788,72.91574157,73.09254669,74.58853737,35.85505545,0,0.055089845,86.84198565,-0.055089845,93.15801435,0,0,73.09254669,74.58853737,121.9092526,6,7,67% -2018-06-30 16:00:00,55.3103306,86.11594736,535.0205774,772.4825729,95.37658262,300.9598683,204.4260305,96.53383786,92.50062675,4.033211106,132.5978891,0,132.5978891,2.875955868,129.7219332,0.965347379,1.50300682,-1.387964417,1.387964417,0.767509584,0.767509584,0.17826713,3.262686222,104.9392043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91512087,2.083620236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363805062,100.8715548,91.27892593,102.955175,204.4260305,0,0.264635136,74.65472637,-0.264635136,105.3452736,0.861060614,0,267.3021293,102.955175,334.6842322,6,8,25% -2018-06-30 17:00:00,43.49090308,95.49768952,716.6334194,837.911144,108.7425819,504.0694486,393.2035713,110.8658773,105.4635919,5.402285422,177.0350595,0,177.0350595,3.278990062,173.7560694,0.759059453,1.66674911,-0.856265608,0.856265608,0.676583733,0.676583733,0.151740875,3.920218117,126.0876903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.375616,2.375617138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840184681,121.2002839,104.2158007,123.575901,393.2035713,0,0.46926643,62.01331054,-0.46926643,117.9866895,0.943450721,0,475.1839934,123.575901,556.0619491,6,9,17% -2018-06-30 18:00:00,31.90617466,107.8433484,860.8824234,874.8370239,118.2203841,694.1356908,572.9903922,121.1452987,114.6556033,6.489695346,212.2956913,0,212.2956913,3.564780767,208.7309105,0.5568678,1.882221505,-0.491657489,0.491657489,0.614232072,0.614232072,0.137324658,4.329973542,139.2668333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2113271,2.582671531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137051091,133.8685774,113.3483782,136.451249,572.9903922,0,0.654968156,49.08276459,-0.654968156,130.9172354,0.973660411,0,671.2464387,136.451249,760.5510521,6,10,13% -2018-06-30 19:00:00,21.41135951,128.208541,957.0591409,894.6218833,124.1809674,851.4533032,723.802134,127.6511692,120.4364531,7.214716067,235.7945835,0,235.7945835,3.744514347,232.0500692,0.373698721,2.23766117,-0.206582566,0.206582566,0.565481389,0.565481389,0.129752658,4.486552957,144.3029655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7680997,2.712887898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.250492344,138.7094993,119.0185921,141.4223872,723.802134,0,0.809059277,35.99587821,-0.809059277,144.0041218,0.988199831,0,834.2797386,141.4223872,926.8378626,6,11,11% -2018-06-30 20:00:00,14.96521398,168.5993928,998.2406703,902.1738018,126.6660911,961.2982404,830.9264395,130.3718009,122.8466411,7.525159831,245.8544577,0,245.8544577,3.819449994,242.0350077,0.261192257,2.942614521,0.039967784,-0.039967784,0.523318796,0.523318796,0.126889331,4.393222588,141.3011401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0848641,2.767178519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18287481,135.8240305,121.2677389,138.591209,830.9264395,0,0.92102701,22.92331136,-0.92102701,157.0766886,0.995712776,0,948.6318103,138.591209,1039.336985,6,12,10% -2018-06-30 21:00:00,17.85911961,217.8677894,981.4956305,899.1632693,125.6599282,1013.358793,884.0890464,129.2697464,121.8708177,7.398928648,241.7640894,0,241.7640894,3.789110471,237.974979,0.311700439,3.802510259,0.272849306,-0.272849306,0.48349371,0.48349371,0.128029025,4.066610312,130.7961665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1468656,2.745197637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946245328,125.7262503,120.0931109,128.471448,884.0890464,0,0.983235277,10.50617006,-0.983235277,169.4938299,0.999147471,0,1003.428446,128.471448,1087.510439,6,13,8% -2018-06-30 22:00:00,27.23392961,244.994337,908.0073595,884.9357502,121.1706915,1001.725568,877.3636774,124.3618911,117.5169481,6.84494302,223.8106403,0,223.8106403,3.653743422,220.1568969,0.47532174,4.275957829,0.512716068,-0.512716068,0.442474078,0.442474078,0.133446817,3.53797402,113.7934062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9617605,2.647124672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563250134,109.3825504,115.5250106,112.029675,877.3636774,0,0.991443364,7.500657119,-0.991443364,172.4993429,0.999568476,0,992.5100844,112.029675,1065.831266,6,14,7% -2018-06-30 23:00:00,38.52346435,259.7828847,783.023691,856.1668399,113.1988646,924.8481294,809.1598649,115.6882645,109.7855011,5.902763333,193.2665228,0,193.2665228,3.413363426,189.8531594,0.672361292,4.534066678,0.784528383,-0.784528383,0.395991435,0.395991435,0.144566334,2.852868907,91.75807073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5299996,2.472970182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066893812,88.20134777,107.5968934,90.67431795,809.1598649,0,0.945096011,19.07422632,-0.945096011,160.9257737,0.997095322,0,914.4064096,90.67431795,973.7509372,6,15,6% -2018-06-30 00:00:00,50.30293673,270.0846662,615.6606642,804.8710165,101.5667033,785.1654122,682.0202097,103.1452026,98.50409242,4.641110143,152.3366668,0,152.3366668,3.062610845,149.2740559,0.877951869,4.713866684,1.131373221,-1.131373221,0.336677474,0.336677474,0.16497189,2.07043193,66.59220792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.68588042,2.218851131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500020885,64.01096322,96.1859013,66.22981435,682.0202097,0,0.847365846,32.07369026,-0.847365846,147.9263097,0.990993609,0,772.0635706,66.22981435,815.4096595,6,16,6% -2018-06-30 01:00:00,62.08881762,278.7085942,418.8295733,712.2974425,85.40150981,588.1207583,502.1371048,85.98365343,82.82633919,3.157314238,104.1252497,0,104.1252497,2.575170619,101.5500791,1.083654296,4.864382623,1.655723263,-1.655723263,0.247008336,0.247008336,0.203905157,1.264653438,40.67560178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.61582768,1.865702347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916237111,39.0989356,80.53206479,40.96463795,502.1371048,0,0.704954244,45.17415242,-0.704954244,134.8258476,0.979073411,0,572.1611527,40.96463795,598.971689,6,17,5% -2018-06-30 02:00:00,73.60493694,286.8737362,210.7551519,529.2997167,61.35565132,340.4130443,279.3187308,61.09431341,59.50555205,1.588761359,52.95012589,0,52.95012589,1.850099266,51.10002663,1.284648495,5.006891234,2.718895165,-2.718895165,0.065195233,0.065195233,0.291122901,0.53595007,17.23799656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.19900004,1.34039062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388294001,16.56981797,57.58729404,17.91020859,279.3187308,0,0.527713736,58.14888908,-0.527713736,121.8511109,0.955251661,0,324.4069756,17.91020859,336.1288489,6,18,4% -2018-06-30 03:00:00,84.55234638,295.2909497,31.80190282,142.0059048,18.32038733,64.69039503,46.6826988,18.00769624,17.76796006,0.239736177,8.263166801,0,8.263166801,0.552427273,7.710739528,1.475716835,5.153799323,7.37683541,-7.37683541,0,0,0.576078338,0.138106818,4.441990015,0.42241919,1,0.134738157,0,0.947199544,0.985961507,0.724496596,1,17.22759571,0.400231679,0.060202189,0.312029739,0.843505265,0.568001861,0.961238037,0.922476074,0.094517515,4.269809762,17.32211322,4.670041441,26.96303096,0,0.32873773,70.80782126,-0.32873773,109.1921787,0.897903068,0,41.53230146,4.670041441,44.58875018,6,19,7% -2018-06-30 04:00:00,94.97244695,304.5076102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657581898,5.314660396,-6.673188268,6.673188268,1,0.328663907,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116378356,83.31686712,-0.116378356,96.68313288,0.620366846,0,0,0,0,6,20,0% -2018-06-30 05:00:00,104.0820878,315.0154286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816575124,5.498056423,-1.683769862,1.683769862,1,0.818095294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08851912,95.07841885,0.08851912,84.92158115,0,0.485150279,0,0,0,6,21,0% -2018-06-30 06:00:00,111.5289738,327.2174666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946547805,5.711022162,-0.560847046,0.560847046,1,0.626064183,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274447711,105.929104,0.274447711,74.07089595,0,0.867815933,0,0,0,6,22,0% -2018-06-30 07:00:00,116.6944745,341.2378262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0367028,5.955723599,0.042962035,-0.042962035,1,0.522806749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428741761,115.3877356,0.428741761,64.6122644,0,0.933379683,0,0,0,6,23,0% -2018-07-01 08:00:00,118.9791777,356.6279219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076578392,6.224331442,0.516680662,-0.516680662,1,0.441796092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540890361,122.7442701,0.540890361,57.25572986,0,0.957559824,0,0,0,7,0,0% -2018-07-01 09:00:00,118.0567873,12.29784735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060479642,0.214637927,1.002512581,-1.002512581,1,0.358713941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603253234,127.1032504,0.603253234,52.89674962,0,0.967116068,0,0,0,7,1,0% -2018-07-01 10:00:00,114.0642199,27.0037179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990796196,0.471303788,1.637803794,-1.637803794,1,0.250072745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611581176,127.7039203,0.611581176,52.29607972,0,0.968244704,0,0,0,7,2,0% -2018-07-01 11:00:00,107.5174723,39.99975829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876533895,0.698127482,2.743757195,-2.743757195,1,0.060943575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565305621,124.4235168,0.565305621,55.57648316,0,0.961552268,0,0,0,7,3,0% -2018-07-01 12:00:00,99.05185144,51.19815354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728780938,0.89357635,5.942034285,-5.942034285,1,0,#DIV/0!,0,0,0.327049781,1,0.166730183,0,0.943247493,0.982009457,0.724496596,1,0,0,0.048441396,0.312029739,0.871830418,0.596327013,0.961238037,0.922476074,0,0,0,0,0,0,-0.46757764,117.8771704,0.46757764,62.12282958,0,0.943065887,0,0,0,7,4,0% -2018-07-01 13:00:00,88.84451321,60.91539494,0.887989325,5.068743652,0.785774653,0.768774687,0,0.768774687,0.762080648,0.006694039,1.854465279,1.615467981,0.238997298,0.023694005,0.215303293,1.550629278,1.063174207,-48.95720723,48.95720723,0,0,0.884892003,0.005923501,0.190520162,1,0.873455032,0,0.020423162,0.961238037,1,0.668212618,0.943716022,0.732540906,0.016658691,0.115824807,0.248116072,0.724496596,0.448993192,0.970931199,0.932169236,0.004291556,0.184047443,0.736832463,0.200706134,0,0.204429345,-0.318711715,108.5850327,0.318711715,71.41496726,0,0.893118412,0.736832463,0.383285745,0.987685317,7,5,34% -2018-07-01 14:00:00,78.40044695,69.61816649,125.4969038,394.2220385,46.2305683,45.78259477,0,45.78259477,44.8365461,0.946048671,89.41145812,57.58925862,31.8221995,1.394022207,30.42817729,1.368345934,1.215066224,-4.871704894,4.871704894,0.636735707,0.636735707,0.36838015,0.728982593,23.44658604,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.09859355,1.009964344,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528145407,22.53775034,43.62673896,23.54771468,0,57.58925862,-0.146083306,98.40001606,0.146083306,81.59998394,0,0.707729542,43.62673896,64.30533431,85.71329415,7,6,96% -2018-07-01 15:00:00,67.08191414,77.82601392,329.3542815,649.2911899,76.510741,111.6457816,34.95931007,76.68647155,74.20365986,2.482811693,82.16283981,0,82.16283981,2.307081136,79.85575867,1.17080027,1.358320187,-2.343218784,2.343218784,0.930867702,0.930867702,0.232305287,2.35104267,75.61761394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32738033,1.671472429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703322411,72.68652677,73.03070274,74.3579992,34.95931007,0,0.053842268,86.91357282,-0.053842268,93.08642718,0,0,73.03070274,74.3579992,121.6965261,7,7,67% -2018-07-01 16:00:00,55.38257423,86.15746681,533.7028966,771.5515733,95.38902693,299.8256048,203.2896311,96.53597369,92.51269582,4.023277872,132.2787774,0,132.2787774,2.87633111,129.4024463,0.966608269,1.503731471,-1.391419218,1.391419218,0.76810039,0.76810039,0.178730578,3.257036317,104.757484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92672211,2.083892098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.359711724,100.6968782,91.28643384,102.7807703,203.2896311,0,0.263481585,74.72325219,-0.263481585,105.2767478,0.860233417,0,266.1629678,102.7807703,333.4309263,7,8,25% -2018-07-01 17:00:00,43.56341931,95.54724267,715.4917761,837.2717767,108.7945962,502.9618121,392.0540952,110.907717,105.5140377,5.393679233,176.7598233,0,176.7598233,3.280558485,173.4792648,0.7603251,1.667613976,-0.858084282,0.858084282,0.676894744,0.676894744,0.152055691,3.915944547,125.9502376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4241065,2.376753455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.837088494,121.0681591,104.261195,123.4449126,392.0540952,0,0.468251894,62.07911711,-0.468251894,117.9208829,0.943219866,0,474.0544061,123.4449126,554.8466325,7,9,17% -2018-07-01 18:00:00,31.98099246,107.8988163,859.9449805,874.3522911,118.2985163,693.1517203,571.9377122,121.2140081,114.7313796,6.482628505,212.0707534,0,212.0707534,3.567136743,208.5036166,0.558173616,1.883189603,-0.492718474,0.492718474,0.614413511,0.614413511,0.137565215,4.326874474,139.1671566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2841661,2.584378427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134805827,133.7727644,113.4189719,136.3571428,571.9377122,0,0.65412731,49.14648894,-0.65412731,130.8535111,0.97356228,0,670.2359552,136.3571428,759.478978,7,10,13% -2018-07-01 19:00:00,21.49091625,128.2436343,956.333185,894.2254312,124.2781851,850.6447762,722.9047935,127.7399827,120.5307392,7.209243506,235.6214986,0,235.6214986,3.747445817,231.8740528,0.375087248,2.238273662,-0.207222008,0.207222008,0.56559074,0.56559074,0.12995281,4.484462661,144.2357344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8587312,2.715011738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.248977932,138.6448742,119.1077091,141.3598859,722.9047935,0,0.808414487,36.05868946,-0.808414487,143.9413105,0.988150539,0,833.4464707,141.3598859,925.9636889,7,11,11% -2018-07-01 20:00:00,15.03943143,168.4759818,997.716098,901.8284829,126.7775168,960.687372,830.2114597,130.4759123,122.9547069,7.521205384,245.730629,0,245.730629,3.82280989,241.9078191,0.262487596,2.940460593,0.039603061,-0.039603061,0.523381167,0.523381167,0.127067727,4.391963051,141.260629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1887411,2.769612752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.181962279,135.7850897,121.3707034,138.5547024,830.2114597,0,0.920586869,22.98797043,-0.920586869,157.0120296,0.99568682,0,948.0013119,138.5547024,1038.682594,7,12,10% -2018-07-01 21:00:00,17.89376382,217.6292136,981.1470715,898.8449413,125.7811912,1012.943935,883.5592102,129.3847252,121.9884242,7.396301063,241.6832338,0,241.6832338,3.792766996,237.8904668,0.312305094,3.798346326,0.272697182,-0.272697182,0.483519725,0.483519725,0.128198101,4.065979791,130.7758868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2599134,2.747846778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945788518,125.7067567,120.2057019,128.4546035,883.5592102,0,0.982994029,10.58170728,-0.982994029,169.4182927,0.999134991,0,1003.000625,128.4546035,1087.071594,7,13,8% -2018-07-01 22:00:00,27.24260364,244.8178752,907.796664,884.6255559,121.2970998,1001.484134,877.001235,124.4828994,117.6395447,6.843354708,223.7633664,0,223.7633664,3.657555097,220.1058113,0.47547313,4.272877991,0.512766052,-0.512766052,0.44246553,0.44246553,0.133617036,3.53775183,113.7862598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.079605,2.649886217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563089158,109.375681,115.6426942,112.0255672,877.001235,0,0.991381302,7.527848792,-0.991381302,172.4721512,0.999565319,0,992.2627131,112.0255672,1065.581206,7,14,7% -2018-07-01 23:00:00,38.52297135,259.6521239,782.9030777,855.8458677,113.3247783,924.7385851,808.9291129,115.8094722,109.9076181,5.9018541,193.2410755,0,193.2410755,3.417160189,189.8239153,0.672352688,4.531784471,0.784821195,-0.784821195,0.395941361,0.395941361,0.144749435,2.852829427,91.75680089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6473831,2.475720925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066865208,88.20012716,107.7142483,90.67584808,808.9291129,0,0.945180836,19.0593485,-0.945180836,160.9406515,0.99710007,0,914.2975234,90.67584808,973.6430525,7,15,6% -2018-07-01 00:00:00,50.30048376,269.9785852,615.5768112,804.5137942,101.684517,785.128445,681.8696133,103.2588317,98.61835367,4.640478024,152.3198881,0,152.3198881,3.066163364,149.2537248,0.877909057,4.712015221,1.132038577,-1.132038577,0.336563691,0.336563691,0.16518575,2.07036744,66.5901337,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.79571267,2.22142492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499974162,64.00896939,96.29568684,66.23039431,681.8696133,0,0.847554906,32.0532849,-0.847554906,147.9467151,0.991006772,0,772.0330911,66.23039431,815.3795596,7,16,6% -2018-07-01 01:00:00,62.08808274,278.6159481,418.7293978,711.8579427,85.49899693,588.0778856,502.0004399,86.07744579,82.92088671,3.156559073,104.1039006,0,104.1039006,2.578110215,101.5257904,1.08364147,4.862765644,1.657135998,-1.657135998,0.246766744,0.246766744,0.204186755,1.264413392,40.66788108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.70671036,1.867832075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916063198,39.09151418,80.62277356,40.95934625,502.0004399,0,0.705197498,45.15449821,-0.705197498,134.8455018,0.979097877,0,572.1303383,40.95934625,598.9374112,7,17,5% -2018-07-01 02:00:00,73.60840195,286.7882476,210.5986658,528.6723091,61.40692867,340.2593039,279.116439,61.1428649,59.5552832,1.5875817,52.91373021,0,52.91373021,1.851645467,51.06208475,1.284708971,5.005399176,2.722543161,-2.722543161,0.064571388,0.064571388,0.291582705,0.535532892,17.22457868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.24680351,1.341510837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387991757,16.55692019,57.63479526,17.89843103,279.116439,0,0.527957365,58.13245421,-0.527957365,121.8675458,0.955295383,0,324.2734408,17.89843103,335.9876059,7,18,4% -2018-07-01 03:00:00,84.56197705,295.2088664,31.647704,141.1681454,18.26934384,64.39157238,46.4345429,17.95702948,17.71845572,0.238573761,8.224240363,0,8.224240363,0.550888123,7.673352239,1.475884922,5.1523667,7.400666241,-7.400666241,0,0,0.57727233,0.137722031,4.429613929,0.42377552,1,0.134309495,0,0.947250921,0.986012884,0.724496596,1,17.17957569,0.39911657,0.060363002,0.312029739,0.843125566,0.567622162,0.961238037,0.922476074,0.094253344,4.257913397,17.27382903,4.657029968,26.75672032,0,0.328930743,70.79611123,-0.328930743,109.2038888,0.897992317,0,41.30115831,4.657029968,44.34909129,7,19,7% -2018-07-01 04:00:00,94.9908476,304.4268417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65790305,5.31325072,-6.661597219,6.661597219,1,0.330646093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116463042,83.31198175,-0.116463042,96.68801825,0.620679253,0,0,0,0,7,20,0% -2018-07-01 05:00:00,104.1112928,314.9355929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817084849,5.496663028,-1.685162946,1.685162946,1,0.818333526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088582813,95.08208262,0.088582813,84.91791738,0,0.485556422,0,0,0,7,21,0% -2018-07-01 06:00:00,111.5710256,327.1405646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947281746,5.70967997,-0.56295383,0.56295383,1,0.626424464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274693318,105.9437387,0.274693318,74.05626126,0,0.867978827,0,0,0,7,22,0% -2018-07-01 07:00:00,116.7504036,341.1688811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037678946,5.954520281,0.040470977,-0.040470977,1,0.523232745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429190395,115.4161915,0.429190395,64.58380848,0,0.933501587,0,0,0,7,23,0% -2018-07-02 08:00:00,119.0479202,356.5739112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077778176,6.223388778,0.513594685,-0.513594685,1,0.442323826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541549242,122.7891649,0.541549242,57.21083514,0,0.957672293,0,0,0,7,0,0% -2018-07-02 09:00:00,118.1348901,12.26397809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061842794,0.214046797,0.998293989,-0.998293989,1,0.359435363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60411518,127.1651977,0.60411518,52.83480227,0,0.967234326,0,0,0,7,1,0% -2018-07-02 10:00:00,114.1471607,26.99029773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992243785,0.471069562,1.63110023,-1.63110023,1,0.251219122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612625085,127.7795567,0.612625085,52.22044334,0,0.968384015,0,0,0,7,2,0% -2018-07-02 11:00:00,107.6014648,40.0032547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877999842,0.698188506,2.729905351,-2.729905351,1,0.06331238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56649792,124.5063743,0.56649792,55.49362566,0,0.961738423,0,0,0,7,3,0% -2018-07-02 12:00:00,99.13461012,51.21428319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.730225349,0.893857866,5.887853581,-5.887853581,1,0,#DIV/0!,0,0,0.322827486,1,0.168235794,0,0.943055815,0.981817778,0.724496596,1,0,0,0.047899206,0.312029739,0.873162692,0.597659288,0.961238037,0.922476074,0,0,0,0,0,0,-0.468874601,117.9612692,0.468874601,62.03873078,0,0.943361679,0,0,0,7,4,0% -2018-07-02 13:00:00,88.9162682,60.94098607,0.767864995,4.42586851,0.684156064,0.669314725,0,0.669314725,0.663526235,0.005788491,1.622734411,1.415926823,0.206807588,0.02062983,0.186177758,1.551881639,1.063620856,-52.20328843,52.20328843,0,0,0.890984833,0.005157457,0.165881559,1,0.881760936,0,0.019153539,0.961238037,1,0.671616384,0.947119789,0.637806655,0.014527354,0.115824807,0.251977256,0.724496596,0.448993192,0.970369935,0.931607972,0.00373656,0.160206213,0.641543215,0.174733566,0,0.167417862,-0.319920671,108.6581275,0.319920671,71.34187254,0,0.893711255,0.641543215,0.324356794,0.85382825,7,5,33% -2018-07-02 14:00:00,78.47808495,69.65154993,124.086797,391.041002,45.97919929,45.52817547,0,45.52817547,44.59275678,0.93541869,89.12190929,57.64918623,31.47272305,1.386442504,30.08628055,1.369700973,1.215648875,-4.905461398,4.905461398,0.630963005,0.630963005,0.370540625,0.718126731,23.09742423,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.86425399,1.004472874,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.520280372,22.20212272,43.38453436,23.2065956,0,57.64918623,-0.147424914,98.47772594,0.147424914,81.52227406,0,0.7108443,43.38453436,64.18619104,85.39311267,7,6,97% -2018-07-02 15:00:00,67.15791609,77.86684466,327.8708551,647.6871993,76.44348182,110.6458691,34.03581127,76.61005779,74.13842879,2.471628999,81.8011378,0,81.8011378,2.305053023,79.49608478,1.172126755,1.359032817,-2.351680997,2.351680997,0.932314826,0.932314826,0.233151195,2.343340838,75.36989653,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26467775,1.670003069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69774246,72.44841138,72.96242021,74.11841445,34.03581127,0,0.052549767,86.98773268,-0.052549767,93.01226732,0,0,72.96242021,74.11841445,121.4714401,7,7,66% -2018-07-02 16:00:00,55.45749341,86.20646454,532.3399587,770.5980442,95.3973948,298.656499,202.1226842,96.53381483,92.52081136,4.01300347,131.9485696,0,131.9485696,2.876583432,129.0719862,0.967915855,1.504586643,-1.394971983,1.394971983,0.768707948,0.768707948,0.179203896,3.251160385,104.5684938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93452308,2.084074904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355454632,100.5152137,91.28997771,102.5992886,202.1226842,0,0.262293274,74.79381946,-0.262293274,105.2061805,0.859373686,0,264.9888939,102.5992886,332.1380763,7,8,25% -2018-07-02 17:00:00,43.63864319,95.6056604,714.3108661,836.6197336,108.843658,501.8248293,390.8784322,110.9463972,105.5616201,5.384777035,176.4749774,0,176.4749774,3.282037879,173.1929395,0.761638005,1.668633558,-0.859923371,0.859923371,0.677209247,0.677209247,0.152375756,3.91147367,125.8064388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4698445,2.377825271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833849359,120.9299343,104.3036938,123.3077596,390.8784322,0,0.467211585,62.14655378,-0.467211585,117.8534462,0.942982106,0,472.895061,123.3077596,553.5975234,7,9,17% -2018-07-02 18:00:00,32.05893749,107.965376,858.9719957,873.8590504,118.3742271,692.1441271,570.864026,121.2801011,114.8048074,6.475293735,211.8371249,0,211.8371249,3.569419701,208.2677052,0.559534014,1.884351289,-0.493764511,0.493764511,0.614592394,0.614592394,0.137809181,4.323586654,139.061409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3547477,2.586032423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.132423813,133.6711158,113.4871715,136.2571482,570.864026,0,0.653267853,49.21156045,-0.653267853,130.7884395,0.973461717,0,669.2014463,136.2571482,758.3790246,7,10,13% -2018-07-02 19:00:00,21.57479585,128.2926436,955.5726331,893.8221296,124.3731726,849.8164929,721.9901201,127.8263728,120.6228626,7.203510144,235.4399582,0,235.4399582,3.750310044,231.6896481,0.376551223,2.239129038,-0.207824796,0.207824796,0.565693823,0.565693823,0.130155645,4.482176896,144.1622164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9472837,2.71708686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247321903,138.5742058,119.1946056,141.2912927,721.9901201,0,0.807755924,36.122745,-0.807755924,143.877255,0.988100114,0,832.5931252,141.2912927,925.0654505,7,11,11% -2018-07-02 20:00:00,15.12014564,168.3617769,997.154952,901.4765404,126.8866497,960.0577612,829.4802368,130.5775243,123.0605491,7.516975228,245.5978634,0,245.5978634,3.826100651,241.7717628,0.263896325,2.938467341,0.039293005,-0.039293005,0.52343419,0.52343419,0.127248678,4.390489028,141.2132194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2904806,2.771996897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.180894355,135.7395178,121.471375,138.5115147,829.4802368,0,0.920135133,23.05415448,-0.920135133,156.9458455,0.995660156,0,947.3517966,138.5115147,1038.004813,7,12,10% -2018-07-02 21:00:00,17.93490704,217.3828424,980.7571542,898.5190401,125.8998745,1012.507992,883.0111019,129.4968905,122.1035288,7.393361702,241.5922726,0,241.5922726,3.796345738,237.7959268,0.313023179,3.794046337,0.272619393,-0.272619393,0.483533028,0.483533028,0.12837008,4.065106366,130.7477944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3705563,2.750439564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945155724,125.6797532,120.315712,128.4301928,883.0111019,0,0.982740557,10.66050171,-0.982740557,169.3394983,0.999121872,0,1002.551417,128.4301928,1086.60641,7,13,8% -2018-07-02 22:00:00,27.25646643,244.6315045,907.5373682,884.305396,121.4204151,1001.215686,876.615144,124.6005416,117.7591416,6.841400027,223.7042155,0,223.7042155,3.66127351,220.042942,0.475715082,4.269625208,0.512916858,-0.512916858,0.442439741,0.442439741,0.133791092,3.537252407,113.7701966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1945661,2.652580194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562727328,109.3602405,115.7572934,112.0128207,876.615144,0,0.991303624,7.561744739,-0.991303624,172.4382553,0.999561367,0,991.9879248,112.0128207,1065.298076,7,14,7% -2018-07-02 23:00:00,38.52702465,259.513123,782.7247344,855.5101145,113.4468107,924.5923938,808.6659134,115.9264805,110.0259708,5.900509673,193.2015139,0,193.2015139,3.420839917,189.7806739,0.672423431,4.529358449,0.785256699,-0.785256699,0.395866885,0.395866885,0.144938323,2.852477054,91.74546739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7611482,2.478386875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066609916,88.18923296,107.8277581,90.66761984,808.6659134,0,0.945244129,19.04824,-0.945244129,160.95176,0.997103612,0,914.1514614,90.66761984,973.4916052,7,15,6% -2018-07-02 00:00:00,50.3023879,269.8656784,615.4250362,804.1319391,101.7972182,785.0412177,681.6742273,103.3669904,98.72765648,4.639333879,152.2864869,0,152.2864869,3.06956172,149.2169252,0.87794229,4.710044626,1.132923983,-1.132923983,0.336412278,0.336412278,0.165409615,2.069959747,66.57702089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.9007787,2.223887017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49967879,63.99636486,96.40045749,66.22025188,681.6742273,0,0.847714404,32.03606124,-0.847714404,147.9639388,0.991017871,0,771.9517992,66.22025188,815.2916296,7,16,6% -2018-07-02 01:00:00,62.09176404,278.5174558,418.5513912,711.3714095,85.58913292,587.9660653,501.8025433,86.16352196,83.00830478,3.155217183,104.0634588,0,104.0634588,2.580828148,101.4826306,1.083705721,4.861046627,1.658945374,-1.658945374,0.246457322,0.246457322,0.204488946,1.263817416,40.64871246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79073993,1.869801208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915631416,39.07308856,80.70637134,40.94288977,501.8025433,0,0.705401618,45.1380007,-0.705401618,134.8619993,0.979118393,0,572.0304713,40.94288977,598.8267738,7,17,5% -2018-07-02 02:00:00,73.61649283,286.6976078,210.3584219,527.9380087,61.44542774,340.0096466,278.8312546,61.17839202,59.59262138,1.58577064,52.8566412,0,52.8566412,1.852806356,51.00383484,1.284850184,5.003817214,2.727182824,-2.727182824,0.063777959,0.063777959,0.292098729,0.534796752,17.20090191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.28269439,1.342351898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387458427,16.53416118,57.67015282,17.87651308,278.8312546,0,0.528151506,58.11935556,-0.528151506,121.8806444,0.955330195,0,324.0460697,17.87651308,335.74589,7,18,4% -2018-07-02 03:00:00,84.57647233,295.1221815,31.4357137,140.1130499,18.192632,63.98735515,46.10632244,17.88103271,17.64405702,0.236975688,8.170527715,0,8.170527715,0.548574978,7.621952737,1.476137912,5.150853762,7.431865385,-7.431865385,0,0,0.578724955,0.137143745,4.411014255,0.425541618,1,0.133752375,0,0.947317631,0.986079594,0.724496596,1,17.10740889,0.397440704,0.060572139,0.312029739,0.842632077,0.567128673,0.961238037,0.922476074,0.093856631,4.240034683,17.20126552,4.637475387,26.48616341,0,0.329065155,70.78795599,-0.329065155,109.212044,0.898054407,0,40.9872813,4.637475387,44.02241619,7,19,7% -2018-07-02 04:00:00,95.01464776,304.3420023,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658318441,5.311769992,-6.643538042,6.643538042,1,0.333734394,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116477111,83.31117011,-0.116477111,96.68882989,0.620731112,0,0,0,0,7,20,0% -2018-07-02 05:00:00,104.1463722,314.8523409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817697098,5.495210007,-1.686030386,1.686030386,1,0.818481867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088726025,95.09032051,0.088726025,84.90967949,0,0.486467488,0,0,0,7,21,0% -2018-07-02 06:00:00,111.6194112,327.0611931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948126234,5.708294675,-0.564973511,0.564973511,1,0.62676985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275025482,105.9635327,0.275025482,74.03646729,0,0.868198664,0,0,0,7,22,0% -2018-07-02 07:00:00,116.8129923,341.0988408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038771325,5.953297846,0.037943049,-0.037943049,1,0.523665046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429730276,115.450444,0.429730276,64.54955598,0,0.933647947,0,0,0,7,23,0% -2018-07-03 08:00:00,119.1233663,356.5205519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079094957,6.222457481,0.510402802,-0.510402802,1,0.44286967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542301393,122.8404425,0.542301393,57.15955752,0,0.957800347,0,0,0,7,0,0% -2018-07-03 09:00:00,118.2193766,12.23253499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063317361,0.213498011,0.993898795,-0.993898795,1,0.360186985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605069608,127.233851,0.605069608,52.76614899,0,0.96736488,0,0,0,7,1,0% -2018-07-03 10:00:00,114.2358709,26.98070685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993792072,0.470902169,1.624104498,-1.624104498,1,0.252415463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613757935,127.861725,0.613757935,52.13827504,0,0.968534658,0,0,0,7,2,0% -2018-07-03 11:00:00,107.6904848,40.01148575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879553533,0.698332165,2.715487125,-2.715487125,1,0.065778042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567773109,124.5950834,0.567773109,55.40491657,0,0.961936654,0,0,0,7,3,0% -2018-07-03 12:00:00,99.22167125,51.23569104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731744853,0.894231503,5.832049702,-5.832049702,1,0,#DIV/0!,0,0,0.318422948,1,0.169814928,0,0.942854231,0.981616194,0.724496596,1,0,0,0.04733159,0.312029739,0.874559938,0.599056534,0.961238037,0.922476074,0,0,0,0,0,0,-0.470246306,118.050286,0.470246306,61.94971403,0,0.943672743,0,0,0,7,4,0% -2018-07-03 13:00:00,88.99098085,60.97224091,0.654833396,3.822658095,0.587517167,0.574737767,0,0.574737767,0.569801356,0.004936411,1.404261203,1.227773455,0.176487749,0.01771581,0.158771938,1.55318562,1.064166356,-56.07443072,56.07443072,0,0,0.897200983,0.004428953,0.142450339,1,0.890344217,0,0.01783155,0.961238037,1,0.675173977,0.950677381,0.547714737,0.012496458,0.115824807,0.256013601,0.724496596,0.448993192,0.969779821,0.931017858,0.003208761,0.137539983,0.550923498,0.150036441,0,0.134632459,-0.321183173,108.7344932,0.321183173,71.26550676,0,0.894325593,0.550923498,0.270441695,0.727922179,7,5,32% -2018-07-03 14:00:00,78.55886649,69.69099532,122.6257717,387.7387573,45.71350826,45.25948219,0,45.25948219,44.33507732,0.924404865,88.81397833,57.70350931,31.11046901,1.378430939,29.73203807,1.371110877,1.216337327,-4.94106485,4.94106485,0.624874456,0.624874456,0.372788751,0.706908151,22.73659612,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.61656269,0.998668523,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.512152549,21.85528102,43.12871524,22.85394954,0,57.70350931,-0.148820587,98.55858402,0.148820587,81.44141598,0,0.714024977,43.12871524,64.05569646,85.05188746,7,6,97% -2018-07-03 15:00:00,67.23672193,77.91428796,326.3365257,646.0351633,76.36958483,109.6125815,33.08575886,76.52682265,74.06676007,2.460062576,81.4268936,0,81.4268936,2.302824756,79.12406884,1.173502176,1.359860859,-2.360481095,2.360481095,0.933819731,0.933819731,0.234020953,2.335355363,75.1130562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19578705,1.668388697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69195701,72.20152668,72.88774406,73.86991538,33.08575886,0,0.051213557,87.06439509,-0.051213557,92.93560491,0,0,72.88774406,73.86991538,121.2341263,7,7,66% -2018-07-03 16:00:00,55.53502644,86.26292705,530.9326909,769.6221478,95.40173135,297.4536666,200.9262546,96.52741204,92.52501715,4.002394891,131.607492,0,131.607492,2.876714195,128.7307778,0.969269061,1.505572099,-1.398620227,1.398620227,0.769331835,0.769331835,0.179687054,3.245061402,104.3723295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93856585,2.084169642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351035939,100.3266531,91.28960178,102.4108228,200.9262546,0,0.2610713,74.86636122,-0.2610713,105.1336388,0.858481438,0,263.7810617,102.4108228,330.806897,7,8,25% -2018-07-03 17:00:00,43.71651763,95.67291147,713.0913447,835.9550968,108.8897986,500.6594242,389.677471,110.9819532,105.6063694,5.375583767,176.1806816,0,176.1806816,3.283429188,172.8972524,0.76299717,1.66980731,-0.86178098,0.86178098,0.677526917,0.677526917,0.152701052,3.906807079,125.6563452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5128592,2.37883327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830468429,120.7856586,104.3433276,123.1644919,389.677471,0,0.466146414,62.21555872,-0.466146414,117.7844413,0.942737564,0,471.7069174,123.1644919,552.315614,7,9,17% -2018-07-03 18:00:00,32.13995737,108.0429651,857.9638233,873.3573197,118.4475308,691.1135755,569.7699811,121.3435944,114.8759007,6.467693706,211.5948922,0,211.5948922,3.571630077,208.0232621,0.560948078,1.885705474,-0.494794153,0.494794153,0.614768473,0.614768473,0.138056556,4.320110311,138.9495979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4230853,2.587633833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.129905214,133.5636387,113.5529905,136.1512725,569.7699811,0,0.652390457,49.27792449,-0.652390457,130.7220755,0.973358781,0,668.1436047,136.1512725,757.2518895,7,10,13% -2018-07-03 19:00:00,21.66294534,128.3554656,954.7775283,893.411945,124.465927,848.9688079,721.0584715,127.9103364,120.7128201,7.197516308,235.2499727,0,235.2499727,3.75310693,231.4968658,0.378089722,2.240225488,-0.20838977,0.20838977,0.565790439,0.565790439,0.130361182,4.47969464,144.0823785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0337542,2.719113195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.245523518,138.4974626,119.2792777,141.2165758,721.0584715,0,0.807083984,36.18800069,-0.807083984,143.8119993,0.988048579,0,831.7200756,141.2165758,924.1435001,7,11,11% -2018-07-03 20:00:00,15.20730373,168.2570023,996.5569765,901.1178946,126.9934694,959.4094279,828.7328128,130.6766152,123.1641477,7.512467437,245.4560984,0,245.4560984,3.829321658,241.6267767,0.265417521,2.936638679,0.039038602,-0.039038602,0.523477695,0.523477695,0.127432222,4.388798436,141.1588441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3900636,2.774330506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179669527,135.6872502,121.5697331,138.4615807,828.7328128,0,0.919671907,23.12183594,-0.919671907,156.8781641,0.995632785,0,946.6832918,138.4615807,1037.303627,7,12,10% -2018-07-03 21:00:00,17.98258898,217.1292115,980.3253574,898.1854367,126.0159413,1012.050649,882.4444466,129.6062024,122.2160957,7.390106635,241.4910783,0,241.4910783,3.799845579,237.6912327,0.313855386,3.789619643,0.272616831,-0.272616831,0.483533466,0.483533466,0.128545019,4.063987143,130.7117964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4787599,2.752975187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944344851,125.6451505,120.4231048,128.3981257,882.4444466,0,0.982474677,10.74253946,-0.982474677,169.2574605,0.999108103,0,1002.080502,128.3981257,1086.114507,7,13,8% -2018-07-03 22:00:00,27.27558934,244.4354752,907.2287376,883.9750805,121.540585,1000.919596,876.2048342,124.7147614,117.875688,6.839073439,223.633008,0,223.633008,3.664897076,219.968111,0.476048839,4.26620385,0.513169367,-0.513169367,0.442396559,0.442396559,0.133969064,3.536472363,113.7451078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3065949,2.655205456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562162189,109.3361241,115.8687571,111.9913295,876.2048342,0,0.991209881,7.602451365,-0.991209881,172.3975486,0.999556596,0,991.685079,111.9913295,1064.981164,7,14,7% -2018-07-03 23:00:00,38.53569256,259.3660214,782.4877822,855.1593035,113.5648941,924.4086615,808.3694446,116.0392169,110.1404935,5.898723426,193.1476227,0,193.1476227,3.424400566,189.7232221,0.672574715,4.526791041,0.785835883,-0.785835883,0.395767839,0.395767839,0.145133121,2.851808261,91.72395671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8712317,2.480966553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066125377,88.16855608,107.9373571,90.64952263,808.3694446,0,0.945285213,19.04102609,-0.945285213,160.9589739,0.997105911,0,913.9673088,90.64952263,973.2956083,7,15,6% -2018-07-03 00:00:00,50.30870965,269.7460439,615.2043972,803.7250318,101.9047209,784.9026263,681.4330382,103.4695881,98.83191753,4.63767061,152.236232,0,152.236232,3.072803322,149.1634287,0.878052626,4.70795661,1.134030805,-1.134030805,0.336223,0.336223,0.165643681,2.06920557,66.55276397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00099839,2.226235547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499132391,63.97304818,96.50013078,66.19928373,681.4330382,0,0.847843493,32.02211524,-0.847843493,147.9778848,0.991026852,0,771.8185693,66.19928373,815.1446765,7,16,6% -2018-07-03 01:00:00,62.09991357,278.4131969,418.2946441,710.8371494,85.67180115,587.7840437,501.5422818,86.24176196,83.08848025,3.153281716,104.0037002,0,104.0037002,2.5833209,101.4203793,1.083847957,4.859226967,1.661154043,-1.661154043,0.246079618,0.246079618,0.204812092,1.262862929,40.61801287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86780764,1.871607198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914939893,39.04357895,80.78274753,40.91518615,501.5422818,0,0.705565659,45.12473908,-0.705565659,134.8752609,0.979134873,0,571.8602859,40.91518615,598.638457,7,17,5% -2018-07-03 02:00:00,73.62925263,286.601888,210.0336862,527.0955122,61.47095286,339.6627246,278.4620251,61.20069947,59.61737683,1.583322645,52.77867494,0,52.77867494,1.853576032,50.92509891,1.285072884,5.002146588,2.732823569,-2.732823569,0.062813335,0.062813335,0.292671876,0.533740461,17.16692795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30649027,1.342909526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386693147,16.50150412,57.69318341,17.84441365,278.4620251,0,0.528295193,58.10965993,-0.528295193,121.8903401,0.955355944,0,323.7235342,17.84441365,335.402346,7,18,4% -2018-07-03 03:00:00,84.59586394,295.0309616,31.16603443,138.8404633,18.09001453,63.47743796,45.69796138,17.77947658,17.54453385,0.234942732,8.102046557,0,8.102046557,0.545480683,7.556565874,1.476476359,5.149261676,7.470608941,-7.470608941,0,0,0.580440048,0.136370171,4.386133461,0.427719771,1,0.133066898,0,0.947399614,0.986161577,0.724496596,1,17.01086981,0.395198898,0.060829664,0.312029739,0.842024885,0.566521481,0.961238037,0.922476074,0.093326254,4.216118318,17.10419607,4.611317216,26.15203979,0,0.329140081,70.78340976,-0.329140081,109.2165902,0.898088997,0,40.59105525,4.611317216,43.60907014,7,19,7% -2018-07-03 04:00:00,95.043871,304.2531564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658828483,5.310219339,-6.619115922,6.619115922,1,0.337910822,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11641977,83.31447799,-0.11641977,96.68552201,0.620519682,0,0,0,0,7,20,0% -2018-07-03 05:00:00,104.1873382,314.7657365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81841209,5.493698474,-1.686368468,1.686368468,1,0.818539682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088949359,95.10316736,0.088949359,84.89683264,0,0.487882401,0,0,0,7,21,0% -2018-07-03 06:00:00,111.6741312,326.9794159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949081278,5.706867393,-0.566901553,0.566901553,1,0.627099565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275444562,105.9885089,0.275444562,74.01149111,0,0.868475269,0,0,0,7,22,0% -2018-07-03 07:00:00,116.8822285,341.0277702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039979724,5.95205743,0.035382977,-0.035382977,1,0.524102844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430361486,115.4905032,0.430361486,64.50949684,0,0.9338186,0,0,0,7,23,0% -2018-07-04 08:00:00,119.2054901,356.4679108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080528288,6.221538722,0.507110591,-0.507110591,1,0.443432671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543146598,122.8980994,0.543146598,57.10190058,0,0.957943822,0,0,0,7,0,0% -2018-07-04 09:00:00,118.310207,12.20358447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064902651,0.21299273,0.989334694,-0.989334694,1,0.360967493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606116013,127.3091922,0.606116013,52.69080782,0,0.967507542,0,0,0,7,1,0% -2018-07-04 10:00:00,114.3302984,26.97500481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995440142,0.47080265,1.61682963,-1.61682963,1,0.253659539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614978953,127.950391,0.614978953,52.049609,0,0.968696405,0,0,0,7,2,0% -2018-07-04 11:00:00,107.7844706,40.02449867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881193894,0.698559283,2.700533493,-2.700533493,1,0.068335263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56913019,124.6895935,0.56913019,55.31040648,0,0.962146639,0,0,0,7,3,0% -2018-07-04 12:00:00,99.31296789,51.26241035,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73333828,0.894697843,5.774786843,-5.774786843,1,0,#DIV/0!,0,0,0.313843291,1,0.17146616,0,0.942642846,0.981404809,0.724496596,1,0,0,0.046739202,0.312029739,0.876020881,0.600517477,0.961238037,0.922476074,0,0,0,0,0,0,-0.471691589,118.1441574,0.471691589,61.85584261,0,0.943998534,0,0,0,7,4,0% -2018-07-04 13:00:00,89.06853892,61.00917951,0.549825762,3.263529508,0.496772695,0.485937985,0,0.485937985,0.481793166,0.004144819,1.200770496,1.052479345,0.148291151,0.01497953,0.133311622,1.554539264,1.064811056,-60.75060389,60.75060389,0,0,0.903509311,0.003744882,0.120448291,1,0.899184593,0,0.016459255,0.961238037,1,0.678881441,0.954384845,0.463117917,0.010585381,0.115824807,0.260220687,0.724496596,0.448993192,0.969161069,0.930399106,0.002713155,0.116263107,0.465831071,0.126848488,0,0.106106133,-0.322497266,108.8140164,0.322497266,71.18598362,0,0.894959926,0.465831071,0.221809225,0.611000773,7,5,31% -2018-07-04 14:00:00,78.64272315,69.73651075,121.1153743,384.3157297,45.43348544,44.97651707,0,44.97651707,44.06349822,0.913018851,88.48656454,57.75075261,30.73581193,1.369987218,29.36582471,1.372574452,1.217131721,-4.978551554,4.978551554,0.618463852,0.618463852,0.375125666,0.695344067,22.36465542,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.35551053,0.992551076,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.503774409,21.49775747,42.85928494,22.49030855,0,57.75075261,-0.150269032,98.64251766,0.150269032,81.35748234,0,0.717263445,42.85928494,63.9128123,84.68894233,7,6,98% -2018-07-04 15:00:00,67.31826638,77.96834027,324.7524576,644.3352946,76.28909417,108.5471808,32.11036314,76.4368177,73.9886965,2.448121202,81.04039087,0,81.04039087,2.300397666,78.7399932,1.174925395,1.36080425,-2.3696172,2.3696172,0.935382097,0.935382097,0.234914601,2.327090461,74.84722855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12074937,1.666630278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.685969117,71.94600304,72.80671849,73.61263332,32.11036314,0,0.049834866,87.1434893,-0.049834866,92.8565107,0,0,72.80671849,73.61263332,120.9847147,7,7,66% -2018-07-04 16:00:00,55.61511217,86.32683755,529.4820109,768.6240397,95.40208083,296.2182211,199.701406,96.51681515,92.5253561,3.991459052,131.2557684,0,131.2557684,2.876724733,128.3790437,0.970666821,1.506687548,-1.402361442,1.402361442,0.76997162,0.76997162,0.180180023,3.238742276,104.1690847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93889165,2.084177276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346457754,100.1312865,91.28534941,102.2154638,199.701406,0,0.259816758,74.94081052,-0.259816758,105.0591895,0.857556678,0,262.5406237,102.2154638,329.4386004,7,8,25% -2018-07-04 17:00:00,43.79698682,95.74895997,711.8338492,835.2779421,108.9330481,499.4665082,388.4520892,111.014419,105.6483148,5.366104235,175.8770914,0,175.8770914,3.28473332,172.5923581,0.764401623,1.671134607,-0.863655196,0.863655196,0.677847427,0.677847427,0.153031565,3.901946269,125.5000049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5531787,2.379778108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826946789,120.6353783,104.3801255,123.0151564,388.4520892,0,0.465057282,62.28607071,-0.465057282,117.7139293,0.942486363,0,470.4909221,123.0151564,551.0018816,7,9,17% -2018-07-04 18:00:00,32.22400169,108.1315135,856.9207929,872.8471107,118.5184401,690.0607081,568.6562053,121.4045028,114.9446719,6.459830902,211.3441356,0,211.3441356,3.573768257,207.7703673,0.562414928,1.887250935,-0.495805944,0.495805944,0.6149415,0.6149415,0.138307345,4.316445564,138.831727,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4891907,2.589182936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127250117,133.4503367,113.6164409,136.0395197,568.6562053,0,0.651495776,49.3455279,-0.651495776,130.6544721,0.973253532,0,667.0631009,136.0395197,756.0982457,7,10,13% -2018-07-04 19:00:00,21.75531391,128.4319793,953.9478854,892.9948376,124.5564431,848.1020473,720.1101784,127.9918689,120.8006068,7.19126211,235.0515456,0,235.0515456,3.755836324,231.2957093,0.379701858,2.241560905,-0.20891577,0.20891577,0.56588039,0.56588039,0.130569442,4.47701476,143.9961843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1181381,2.721090632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.243581953,138.4146095,119.3617201,141.1357001,720.1101784,0,0.806399038,36.25441494,-0.806399038,143.7455851,0.987995958,0,830.8276655,141.1357001,923.1981585,7,11,11% -2018-07-04 20:00:00,15.30085154,168.1618507,995.9218867,900.7524585,127.0979533,958.7423584,827.9691975,130.7731609,123.2654811,7.507679861,245.3052641,0,245.3052641,3.832472233,241.4727918,0.267050238,2.934977971,0.038840832,-0.038840832,0.523511516,0.523511516,0.127618396,4.386889088,141.0974329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.487469,2.776613087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178286211,135.6282194,121.6657552,138.4048325,827.9691975,0,0.919197266,23.19099154,-0.919197266,156.8090085,0.995604712,0,945.9957897,138.4048325,1036.578984,7,12,10% -2018-07-04 21:00:00,18.03684647,216.8688708,979.8511325,897.8439948,126.1293526,1011.571554,881.858935,129.7126189,122.3260872,7.386531728,241.3795167,0,241.3795167,3.803265348,237.5762514,0.314802358,3.78507584,0.272690386,-0.272690386,0.483520887,0.483520887,0.128722975,4.062619152,130.6677971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5844879,2.755452798,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943353746,125.6028568,120.5278417,128.3583096,881.858935,0,0.982196172,10.82781375,-0.982196172,169.1721862,0.999093673,0,1001.587524,128.3583096,1085.59547,7,13,8% -2018-07-04 22:00:00,27.30004325,244.2300516,906.870015,883.6344117,121.6575553,1000.595202,875.7697021,124.8255004,117.9891311,6.836369237,223.5495587,0,223.5495587,3.668424161,219.8811345,0.476475641,4.262618533,0.513524462,-0.513524462,0.442335835,0.442335835,0.13415104,3.535408266,113.7108827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4156408,2.657760817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561391254,109.3032257,115.977032,111.9609865,875.7697021,0,0.991099589,7.650068241,-0.991099589,172.3499318,0.999550983,0,991.3534987,111.9609865,1064.629725,7,14,7% -2018-07-04 23:00:00,38.54904324,259.2109662,782.1913261,854.7931478,113.6789589,924.1864617,808.0388543,116.1476074,110.2511188,5.896488615,193.0791829,0,193.0791829,3.427840041,189.6513429,0.672807728,4.524084818,0.786559756,-0.786559756,0.395644049,0.395644049,0.145333955,2.850819515,91.69215522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.977569,2.483458441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065409034,88.13798728,108.0429781,90.62144572,808.0388543,0,0.945303383,19.03783485,-0.945303383,160.9621651,0.997106928,0,913.7441177,90.62144572,973.0540415,7,15,6% -2018-07-04 00:00:00,50.31950916,269.6197848,614.9139458,803.2926371,102.0069373,784.7115398,681.1450069,103.5665329,98.93105182,4.635481064,152.1688909,0,152.1688909,3.075885526,149.0930054,0.878241113,4.705752973,1.135360474,-1.135360474,0.335995614,0.335995614,0.165888151,2.068101675,66.51725891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.09629003,2.228468593,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498332623,63.93891937,96.59462266,66.16738796,681.1450069,0,0.847941305,32.0115446,-0.847941305,147.9884554,0.991033654,0,771.632248,66.16738796,814.9374801,7,16,6% -2018-07-04 01:00:00,62.11258263,278.3032549,417.9582527,710.2544362,85.74688212,587.5305442,501.2185011,86.31204311,83.16129725,3.150745855,103.9244022,0,103.9244022,2.585584868,101.3388173,1.084069074,4.857308116,1.663764907,-1.663764907,0.245633134,0.245633134,0.205156571,1.261547466,40.57570306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93780211,1.873247435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913986845,39.00290915,80.85178896,40.87615659,501.2185011,0,0.70568866,45.11479329,-0.70568866,134.8852067,0.979147225,0,571.6184933,40.87615659,598.3711203,7,17,5% -2018-07-04 02:00:00,73.64672338,286.5011616,209.6237498,526.1434225,61.48329982,339.2171645,278.0075806,61.20958385,59.62935148,1.580232371,52.67965341,0,52.67965341,1.853948339,50.82570507,1.285377806,5.00038858,2.739476263,-2.739476263,0.061675657,0.061675657,0.29330312,0.532363084,17.12262678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31800076,1.34317926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385695242,16.45892015,57.703696,17.80209942,278.0075806,0,0.528387449,58.10343416,-0.528387449,121.8965658,0.955372468,0,323.3044845,17.80209942,334.9556025,7,18,4% -2018-07-04 03:00:00,84.62018183,294.9352752,30.83891868,137.3504608,17.9612648,62.86168589,45.20954269,17.6521432,17.4196664,0.232476795,8.018851279,0,8.018851279,0.541598404,7.477252875,1.476900786,5.147591632,7.51711434,-7.51711434,0,0,0.582422004,0.135399601,4.3549166,0.43031258,1,0.132253261,0,0.947496786,0.986258749,0.724496596,1,16.88974253,0.3923862,0.061135633,0.312029739,0.841304158,0.565800754,0.961238037,0.922476074,0.092661168,4.186111483,16.98240369,4.578497683,25.75530775,0,0.329154649,70.78252584,-0.329154649,109.2174742,0.89809572,0,40.11313535,4.578497683,43.10967051,7,19,7% -2018-07-04 04:00:00,95.07853933,304.16037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659433559,5.30859991,-6.588476649,6.588476649,1,0.343150446,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11629024,83.3219503,-0.11629024,96.6780497,0.620041303,0,0,0,0,7,20,0% -2018-07-04 05:00:00,104.2342016,314.675844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81923001,5.492129554,-1.686174933,1.686174933,1,0.818506586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089253391,95.1206567,0.089253391,84.8793433,0,0.489797197,0,0,0,7,21,0% -2018-07-04 06:00:00,111.7351841,326.8952972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950146853,5.705399245,-0.568733623,0.568733623,1,0.627412867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275950884,106.0186886,0.275950884,73.98131138,0,0.868808335,0,0,0,7,22,0% -2018-07-04 07:00:00,116.958098,340.9557347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041303897,5.950800174,0.032795504,-0.032795504,1,0.524545328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431084064,115.5363772,0.431084064,64.46362277,0,0.934013342,0,0,0,7,23,0% -2018-07-05 08:00:00,119.2942639,356.4160558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082077685,6.22063368,0.503723736,-0.503723736,1,0.444011857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544084596,122.9621303,0.544084596,57.03786968,0,0.958102526,0,0,0,7,0,0% -2018-07-05 09:00:00,118.4073397,12.17719372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066597936,0.212532124,0.984609546,-0.984609546,1,0.361775541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607253838,127.3912014,0.607253838,52.60879863,0,0.96766211,0,0,0,7,1,0% -2018-07-05 10:00:00,114.4303885,26.97325157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997187044,0.47077205,1.609288891,-1.609288891,1,0.254949081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616287315,128.0455186,0.616287315,51.95448143,0,0.96886901,0,0,0,7,2,0% -2018-07-05 11:00:00,107.8833583,40.04234053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88291981,0.698870682,2.685075712,-2.685075712,1,0.0709787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570568116,124.7898517,0.570568116,55.21014831,0,0.962368044,0,0,0,7,3,0% -2018-07-05 12:00:00,99.40843125,51.2944735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735004429,0.895257451,5.716226221,-5.716226221,1,0,#DIV/0!,0,0,0.309095752,1,0.173188023,0,0.94242177,0.981183733,0.724496596,1,0,0,0.046122713,0.312029739,0.877544211,0.602040806,0.961238037,0.922476074,0,0,0,0,0,0,-0.473209241,118.2428178,0.473209241,61.75718219,0,0.944338496,0,0,0,7,4,0% -2018-07-05 13:00:00,89.14882669,61.0518205,0.453592755,2.751864578,0.412713173,0.403687722,0,0.403687722,0.400268348,0.003419374,1.013645059,0.891221419,0.12242364,0.012444825,0.109978815,1.55594055,1.065555282,-66.48974078,66.48974078,0,0,0.909876024,0.003111206,0.100067087,1,0.90826167,0,0.01503878,0.961238037,1,0.682734615,0.958238019,0.384753161,0.008811046,0.115824807,0.264593849,0.724496596,0.448993192,0.968513926,0.929751963,0.002254058,0.096560533,0.387007219,0.105371579,0,0.081759165,-0.323860929,108.896579,0.323860929,71.10342099,0,0.895612745,0.387007219,0.178596129,0.503894814,7,5,30% -2018-07-05 14:00:00,78.72958548,69.7881024,119.5571832,380.7723679,45.13912156,44.67928305,0,44.67928305,43.7780105,0.901272548,88.13854877,57.78941444,30.34913432,1.361111061,28.98802326,1.374090485,1.218032166,-5.017960423,5.017960423,0.611724539,0.611724539,0.377552568,0.68345204,21.98216697,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.08108887,0.98612033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.495158677,21.13009502,42.57624755,22.11621535,0,57.78941444,-0.151768929,98.72945251,0.151768929,81.27054749,0,0.720551803,42.57624755,63.75648212,84.30358997,7,6,98% -2018-07-05 15:00:00,67.40248366,78.0289957,323.1198256,642.5878043,76.20205424,107.450945,31.11085008,76.34009488,73.90428115,2.435813732,80.64191576,0,80.64191576,2.297773091,78.34414267,1.176395264,1.361862887,-2.379087409,2.379087409,0.937001598,0.937001598,0.235832184,2.318550367,74.57254978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03960612,1.664728782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.679781849,71.68197135,72.71938797,73.34670013,31.11085008,0,0.04841494,87.22494342,-0.04841494,92.77505658,0,0,72.71938797,73.34670013,120.7233363,7,7,66% -2018-07-05 16:00:00,55.69768956,86.39817618,527.9888354,767.6038732,95.39848734,294.9512819,198.4492081,96.50207383,92.52187096,3.980202864,130.8936224,0,130.8936224,2.876616376,128.017006,0.972108069,1.507932642,-1.40619306,1.40619306,0.770626866,0.770626866,0.180682774,3.232205887,103.9588519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93554161,2.084098772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.341722162,99.92920276,91.27726377,102.0133015,198.4492081,0,0.258530754,75.01709987,-0.258530754,104.9829001,0.856599411,0,261.2687386,102.0133015,328.0344042,7,8,26% -2018-07-05 17:00:00,43.87999565,95.83376577,710.5390064,834.5883413,108.9734358,498.2469891,387.2031614,111.0438278,105.6874846,5.356343163,175.5643596,0,175.5643596,3.285951157,172.2784084,0.7658504,1.672614747,-0.865544074,0.865544074,0.678170444,0.678170444,0.153367281,3.89689267,125.3374638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5908302,2.380660427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.823285474,120.4791376,104.4141157,122.859798,387.2031614,0,0.463945088,62.35802871,-0.463945088,117.6419713,0.942228625,0,469.2480181,122.859798,549.6572987,7,9,17% -2018-07-05 18:00:00,32.31102143,108.2309439,855.8432159,872.3284299,118.5869668,688.9861539,567.523314,121.4628399,115.0111322,6.451707671,211.0849309,0,211.0849309,3.575834588,207.5090963,0.563933709,1.888986324,-0.496798412,0.496798412,0.615111222,0.615111222,0.138561555,4.312592439,138.7077973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5530749,2.590679987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124458542,133.3312108,113.6775335,135.9218907,567.523314,0,0.650584453,49.4143184,-0.650584453,130.5856816,0.973146027,0,665.9605917,135.9218907,754.9187507,7,10,13% -2018-07-05 19:00:00,21.85185249,128.5220484,953.0836955,892.5707615,124.6447143,847.2165142,719.1455504,128.0709638,120.8862163,7.184747481,234.8446744,0,234.8446744,3.758498027,231.0861764,0.381386774,2.243132907,-0.209401626,0.209401626,0.565963477,0.565963477,0.13078045,4.474136017,143.903594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2004292,2.723019026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241496314,138.3256082,119.4419256,141.0486273,719.1455504,0,0.805701443,36.32194808,-0.805701443,143.6780519,0.987942273,0,829.9162154,141.0486273,922.229721,7,11,11% -2018-07-05 20:00:00,15.40073352,168.0764855,995.2493702,900.3801391,127.2000772,958.0565091,827.1893734,130.8671357,123.3645255,7.502610148,245.1452841,0,245.1452841,3.835551646,241.3097324,0.268793507,2.933488067,0.03870068,-0.03870068,0.523535483,0.523535483,0.127807242,4.384758696,141.0289122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5826744,2.778844111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176742749,135.5623547,121.7594171,138.3411988,827.1893734,0,0.918711262,23.26160155,-0.918711262,156.7383985,0.995575937,0,945.2892523,138.3411988,1035.8308,7,12,10% -2018-07-05 21:00:00,18.09771344,216.6023835,979.333903,897.4945708,126.2400675,1011.070322,881.2542256,129.8160963,122.4334637,7.382632633,241.2574469,0,241.2574469,3.806603812,237.4508431,0.315864687,3.780424759,0.27284095,-0.27284095,0.483495139,0.483495139,0.12890401,4.060999335,130.6156982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6877023,2.757871504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942180194,125.5527773,120.6298825,128.3106488,881.2542256,0,0.981904798,10.91632393,-0.981904798,169.0836761,0.999078566,0,1001.072091,128.3106488,1085.048844,7,13,8% -2018-07-05 22:00:00,27.32989869,244.015513,906.4604176,883.2831827,121.7712697,1000.241808,875.3091098,124.9326981,118.0994166,6.833281519,223.453676,0,223.453676,3.671853068,219.7818229,0.476996716,4.258874128,0.513983037,-0.513983037,0.442257414,0.442257414,0.134337106,3.534056618,113.6674091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5216514,2.660245049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560411989,109.2614371,116.0820633,111.9216822,875.3091098,0,0.990972235,7.704687353,-0.990972235,172.2953126,0.9995445,0,990.9924694,111.9216822,1064.242972,7,14,7% -2018-07-05 23:00:00,38.56714497,259.0481135,781.8344508,854.4113488,113.7889337,923.9248323,807.6732565,116.2515759,110.3577775,5.893798338,192.9959705,0,192.9959705,3.431156188,189.5648144,0.673123663,4.521242501,0.787429351,-0.787429351,0.39549534,0.39549534,0.145540956,2.849507253,91.64994839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0800934,2.485860978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064458305,88.09741647,108.1445517,90.58327744,807.6732565,0,0.945297903,19.03879735,-0.945297903,160.9612027,0.997106621,0,913.4809036,90.58327744,972.765847,7,15,6% -2018-07-05 00:00:00,50.33484651,269.4870096,614.5527205,802.8343014,102.1037777,784.4667935,680.8090634,103.6577301,99.02497212,4.632757995,152.0842278,0,152.0842278,3.078805622,149.0054221,0.8785088,4.703435609,1.136914505,-1.136914505,0.335729859,0.335729859,0.166143236,2.066644848,66.47040236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.1865698,2.230584192,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497277157,63.89387907,96.68384695,66.12446327,680.8090634,0,0.848006945,32.00444905,-0.848006945,147.995551,0.991038219,0,771.3916484,66.12446327,814.6687871,7,16,6% -2018-07-05 01:00:00,62.12982222,278.1877168,417.5413111,709.6225053,85.81425276,587.2042582,500.830019,86.37423919,83.22663642,3.147602773,103.8253413,0,103.8253413,2.587616342,101.237725,1.084369961,4.855291596,1.66678116,-1.66678116,0.245117324,0.245117324,0.205522784,1.259868656,40.52170675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0006086,1.874719231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.912770553,38.95100584,80.91337916,40.82572508,500.830019,0,0.705769638,45.10824444,-0.705769638,134.8917556,0.979155354,0,571.3037738,40.82572508,598.0233944,7,17,5% -2018-07-05 02:00:00,73.66894641,286.3955047,209.1279226,525.0802365,61.48225435,338.671557,277.4667249,61.20483215,59.62833754,1.576494616,52.55940284,0,52.55940284,1.853916814,50.70548602,1.285765671,4.998544521,2.747153347,-2.747153347,0.060362799,0.060362799,0.293993521,0.530663929,17.0679761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31702612,1.343156421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38446421,16.40638784,57.70149033,17.74954426,277.4667249,0,0.528427287,58.10074559,-0.528427287,121.8992544,0.955379602,0,322.7875396,17.74954426,334.4042613,7,18,4% -2018-07-05 03:00:00,84.64945449,294.8351926,30.45477018,135.6433588,17.80616731,62.14013955,44.64131296,17.49882659,17.26924567,0.229580922,7.921033264,0,7.921033264,0.536921642,7.384111622,1.477411691,5.145844862,7.571643881,-7.571643881,0,0,0.584675806,0.134230411,4.317311417,0.43332299,1,0.131311748,0,0.94760904,0.986371003,0.724496596,1,16.74382116,0.388997902,0.06149009,0.312029739,0.840470145,0.564966741,0.961238037,0.922476074,0.091860407,4.149963951,16.83568157,4.538961853,25.29720573,0,0.329107988,70.78535703,-0.329107988,109.214643,0.898074183,0,39.55444894,4.538961853,42.52510869,7,19,8% -2018-07-05 04:00:00,95.11867356,304.0637104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660134034,5.306912881,-6.551803624,6.551803624,1,0.349421903,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116087746,83.33363144,-0.116087746,96.66636856,0.61929132,0,0,0,0,7,20,0% -2018-07-05 05:00:00,104.2869716,314.5827293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820151021,5.490504395,-1.685448895,1.685448895,1,0.818382426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089638684,95.14282121,0.089638684,84.85717879,0,0.492205111,0,0,0,7,21,0% -2018-07-05 06:00:00,111.8025671,326.8089022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951322909,5.703891369,-0.570465571,0.570465571,1,0.627709048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276544745,106.0540921,0.276544745,73.94590793,0,0.869197432,0,0,0,7,22,0% -2018-07-05 07:00:00,117.040585,340.8828009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042743567,5.949527239,0.030185402,-0.030185402,1,0.524991682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431898011,115.5880731,0.431898011,64.4119269,0,0.934231928,0,0,0,7,23,0% -2018-07-06 08:00:00,119.3896582,356.3650557,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083742629,6.219743561,0.500248024,-0.500248024,1,0.444606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545115081,123.0325282,0.545115081,56.9674718,0,0.958276249,0,0,0,7,0,0% -2018-07-06 09:00:00,118.5107304,12.15343144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068402445,0.212117394,0.979731376,-0.979731376,1,0.362609757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608482477,127.4798569,0.608482477,52.52014314,0,0.967828365,0,0,0,7,1,0% -2018-07-06 10:00:00,114.5360843,26.97550821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999031783,0.470811436,1.601495786,-1.601495786,1,0.25628178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617682144,128.1470692,0.617682144,51.85293081,0,0.969052217,0,0,0,7,2,0% -2018-07-06 11:00:00,107.9870817,40.06505869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884730125,0.699267189,2.669145295,-2.669145295,1,0.073702961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572085784,124.8958023,0.572085784,55.10419773,0,0.96260052,0,0,0,7,3,0% -2018-07-06 12:00:00,99.50799013,51.33191246,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73674206,0.895910884,5.656525712,-5.656525712,1,0,#DIV/0!,0,0,0.304187694,1,0.174979002,0,0.942191117,0.98095308,0.724496596,1,0,0,0.045482814,0.312029739,0.879128569,0.603625165,0.961238037,0.922476074,0,0,0,0,0,0,-0.474798,118.3461987,0.474798,61.65380134,0,0.944692059,0,0,0,7,4,0% -2018-07-06 13:00:00,89.23172513,61.10018144,0.366686761,2.28993114,0.335982164,0.328615301,0,0.328615301,0.325851062,0.00276424,0.843889204,0.744850652,0.099038552,0.010131102,0.08890745,1.557387401,1.06639934,-73.67488962,73.67488962,0,0,0.916264779,0.002532775,0.081462765,1,0.917555024,0,0.013572312,0.961238037,1,0.686729131,0.962232535,0.313220435,0.007187439,0.115824807,0.269128181,0.724496596,0.448993192,0.967838677,0.929076714,0.001834987,0.078582482,0.315055422,0.085769922,0,0.061409194,-0.325272074,108.9820593,0.325272074,71.01794066,0,0.896282531,0.315055422,0.14080991,0.407212692,7,5,29% -2018-07-06 14:00:00,78.81938237,69.8457749,117.9528212,377.1091737,44.83041098,44.36778687,0,44.36778687,43.47860868,0.88917819,87.76879913,57.81796971,29.95082941,1.351802298,28.59902712,1.375657737,1.219038741,-5.059332755,5.059332755,0.604649453,0.604649453,0.380070697,0.671250051,21.58970904,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.79329245,0.979376163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.486318377,20.75284953,42.27961083,21.7322257,0,57.81796971,-0.153318916,98.81931189,0.153318916,81.18068811,0,0.72388238,42.27961083,63.58563521,83.89513736,7,6,98% -2018-07-06 15:00:00,67.48930687,78.09624627,321.4398268,640.7929142,76.10851119,106.3251766,30.0884686,76.23670796,73.81355877,2.423149191,80.23175994,0,80.23175994,2.294952423,77.93680752,1.177910615,1.363036631,-2.3888897,2.3888897,0.938677888,0.938677888,0.236773744,2.309739399,74.28915874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.95240032,1.662685218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673398332,71.4095651,72.62579865,73.07225032,30.0884686,0,0.046955058,87.30868376,-0.046955058,92.69131624,0,0,72.62579865,73.07225032,120.450125,7,7,66% -2018-07-06 16:00:00,55.78269699,86.47692038,526.4540919,766.5618051,95.39099578,293.6539859,197.1707472,96.48323862,92.5146053,3.96863332,130.5212801,0,130.5212801,2.876390478,127.6448897,0.973591728,1.509306988,-1.410112418,1.410112418,0.771297115,0.771297115,0.181195278,3.225455131,103.7417244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92855758,2.08393511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.336831263,99.72049154,91.26538884,101.8044267,197.1707472,0,0.257214416,75.09516057,-0.257214416,104.9048394,0.855609652,0,259.9665832,101.8044267,326.5955443,7,8,26% -2018-07-06 17:00:00,43.96548903,95.92728498,709.2074431,833.8863654,109.0109909,497.0017823,385.9315697,111.0702126,105.7239073,5.346305276,175.2426391,0,175.2426391,3.287083583,171.9555555,0.767342541,1.674246965,-0.867445611,0.867445611,0.678495626,0.678495626,0.153708188,3.891647681,125.1687669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6258411,2.381480866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.819485497,120.3169797,104.4453266,122.6984606,385.9315697,0,0.462810745,62.43137103,-0.462810745,117.568629,0.941964479,0,467.9791565,122.6984606,548.282845,7,9,17% -2018-07-06 18:00:00,32.40096832,108.341173,854.7313933,871.8012805,118.6531216,687.8905385,566.37192,121.5186184,115.0752922,6.443326283,210.8173514,0,210.8173514,3.577829398,207.239522,0.565503578,1.890910184,-0.497770051,0.497770051,0.615277382,0.615277382,0.138819192,4.308550898,138.5778074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6147479,2.59212522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121530459,133.2062596,113.7362784,135.7983848,566.37192,0,0.649657132,49.48424388,-0.649657132,130.5157561,0.973036326,0,664.8367304,135.7983848,753.7140572,7,10,13% -2018-07-06 19:00:00,21.95251302,128.625523,952.1849305,892.1396661,124.7307327,846.3124979,718.1648847,128.1476132,120.9696409,7.177972211,234.6293522,0,234.6293522,3.7610918,230.8682604,0.383143631,2.244938878,-0.209846146,0.209846146,0.566039494,0.566039494,0.130994231,4.471057083,143.804565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2806202,2.724898206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239265637,138.2304177,119.5198858,140.9553159,718.1648847,0,0.804991541,36.39056159,-0.804991541,143.6094384,0.987887546,0,828.9860314,140.9553159,921.2384666,7,11,11% -2018-07-06 20:00:00,15.50689252,168.0010435,994.53909,900.0008369,127.2998152,957.3518127,826.3933009,130.9585118,123.4612561,7.497255756,244.9760759,0,244.9760759,3.838559114,241.1375167,0.270646331,2.932171356,0.038619151,-0.038619151,0.523549426,0.523549426,0.127998805,4.38240487,140.953205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6756554,2.781023011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.17503741,135.4895821,121.8506928,138.2706051,826.3933009,0,0.918213925,23.33364897,-0.918213925,156.666351,0.995546459,0,944.5636169,138.2706051,1035.058963,7,12,10% -2018-07-06 21:00:00,18.16522092,216.3303263,978.7730641,897.1370136,126.3480434,1010.546536,880.6299474,129.9165885,122.5381837,7.378404793,241.1247209,0,241.1247209,3.809859682,237.3148612,0.317042914,3.775676466,0.273069435,-0.273069435,0.483456066,0.483456066,0.12908819,4.059124531,130.5553981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7883631,2.760230371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940821905,125.4948145,120.729185,128.2550449,880.6299474,0,0.981600284,11.00807438,-0.981600284,168.9919256,0.999062769,0,1000.533779,128.2550449,1084.474141,7,13,8% -2018-07-06 22:00:00,27.36522606,243.7921541,905.999134,882.9211772,121.8816697,999.8586765,874.8223847,125.0362918,118.2064877,6.829804168,223.3451614,0,223.3451614,3.675182037,219.6699793,0.477613295,4.25497578,0.514546007,-0.514546007,0.44216114,0.44216114,0.134527358,3.532413837,113.6145716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6245722,2.662656875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5592218,109.2106477,116.183794,111.8733046,874.8223847,0,0.990827276,7.766392434,-0.990827276,172.2336076,0.999537118,0,990.601239,111.8733046,1063.820079,7,14,7% -2018-07-06 23:00:00,38.59006656,258.8776284,781.4162151,854.0135945,113.8947448,923.6227715,807.271728,116.3510435,110.460398,5.890645501,192.897755,0,192.897755,3.434346782,189.4634083,0.67352372,4.518266976,0.788445747,-0.788445747,0.395321526,0.395321526,0.145754263,2.847867861,91.5972199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1787361,2.488172553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.063270571,88.04673184,108.2420067,90.53490439,807.271728,0,0.945268007,19.04404774,-0.945268007,160.9559523,0.997104948,0,913.1766414,90.53490439,972.4299256,7,15,6% -2018-07-06 00:00:00,50.35478223,269.3478331,614.1197402,802.3495493,102.1951492,784.1671824,680.4241,103.7430824,99.11358844,4.629494007,151.9820018,0,151.9820018,3.08156081,148.900441,0.878856744,4.701006521,1.138694515,-1.138694515,0.335425459,0.335425459,0.166409159,2.064831868,66.41209067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.27175117,2.232580317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495963659,63.83782766,96.76771483,66.07040798,680.4241,0,0.848039487,32.00093085,-0.848039487,147.9990692,0.991040481,0,771.0955424,66.07040798,814.337303,7,16,6% -2018-07-06 01:00:00,62.15168344,278.0666742,417.0429037,708.9405475,85.87378542,586.8038356,500.3756161,86.42821951,83.28437395,3.143845568,103.7062918,0,103.7062918,2.589411471,101.1168804,1.084751512,4.853179006,1.670206318,-1.670206318,0.244531588,0.244531588,0.205911154,1.257824191,40.45594972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05610811,1.876019796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911289344,38.88779769,80.96739746,40.76381748,500.3756161,0,0.705807586,45.10517536,-0.705807586,134.8948246,0.979159163,0,570.914767,40.76381748,597.5938702,7,17,5% -2018-07-06 02:00:00,73.69596286,286.2849973,208.5455256,523.9043308,61.46759045,338.0244455,276.8382255,61.18622007,59.61411581,1.572104262,52.41775178,0,52.41775178,1.853474643,50.56427714,1.286237197,4.996615802,2.755868959,-2.755868959,0.058872341,0.058872341,0.29474423,0.528642522,17.00296069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30335565,1.34283607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382999707,16.34389256,57.68635535,17.68672863,276.8382255,0,0.528413699,58.1016626,-0.528413699,121.8983374,0.955377169,0,322.1712756,17.68672863,333.7468857,7,18,4% -2018-07-06 03:00:00,84.68370938,294.7307874,30.01414559,133.7197318,17.6245186,61.31302194,43.9936883,17.31933364,17.09307433,0.226259308,7.808721354,0,7.808721354,0.531444263,7.277277091,1.478009551,5.144022647,7.634509018,-7.634509018,0,0,0.587207074,0.132861066,4.273268584,0.43675434,1,0.130242718,0,0.947736253,0.986498216,0.724496596,1,16.57291089,0.38502956,0.061893076,0.312029739,0.839523159,0.564019754,0.961238037,0.922476074,0.09092308,4.107628304,16.66383397,4.492657864,24.77925399,0,0.328999226,70.79195614,-0.328999226,109.2080439,0.898023959,0,38.91619774,4.492657864,41.85655246,7,19,8% -2018-07-06 04:00:00,95.16429364,303.9632473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660930254,5.30515947,-6.509314315,6.509314315,1,0.356688003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115811514,83.34956587,-0.115811514,96.65043413,0.618263998,0,0,0,0,7,20,0% -2018-07-06 05:00:00,104.3456564,314.48646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821175264,5.488824181,-1.684190749,1.684190749,1,0.81816727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090105791,95.16969317,0.090105791,84.83030683,0,0.495096706,0,0,0,7,21,0% -2018-07-06 06:00:00,111.8762758,326.7202983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952609367,5.702344938,-0.572093401,0.572093401,1,0.627987423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277226425,106.0947386,0.277226425,73.9052614,0,0.869642013,0,0,0,7,22,0% -2018-07-06 07:00:00,117.1296719,340.8090373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044298426,5.948239821,0.027557493,-0.027557493,1,0.525441081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432803298,115.6455965,0.432803298,64.35440352,0,0.934474078,0,0,0,7,23,0% -2018-07-07 08:00:00,119.4916409,356.314982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085522562,6.218869609,0.496689371,-0.496689371,1,0.445214805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546237703,123.1092846,0.546237703,56.8907154,0,0.958464759,0,0,0,7,0,0% -2018-07-07 09:00:00,118.6203324,12.13236859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07031536,0.211749778,0.974708391,-0.974708391,1,0.363468738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609801272,127.575135,0.609801272,52.424865,0,0.968006075,0,0,0,7,1,0% -2018-07-07 10:00:00,114.6473254,26.98183751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000973306,0.470921903,1.593464065,-1.593464065,1,0.257655286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619162503,128.2550018,0.619162503,51.74499821,0,0.969245756,0,0,0,7,2,0% -2018-07-07 11:00:00,108.0955711,40.09270135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886623623,0.699749645,2.652774007,-2.652774007,1,0.076502617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573682034,125.0073864,0.573682034,54.99261364,0,0.962843706,0,0,0,7,3,0% -2018-07-07 12:00:00,99.61157021,51.37475911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738549873,0.896658699,5.595839602,-5.595839602,1,0,#DIV/0!,0,0,0.29912662,1,0.176837515,0,0.941951009,0.980712972,0.724496596,1,0,0,0.044820215,0.312029739,0.880772543,0.605269139,0.961238037,0.922476074,0,0,0,0,0,0,-0.476456543,118.4542278,0.476456543,61.5457722,0,0.945058635,0,0,0,7,4,0% -2018-07-07 13:00:00,89.31711244,61.15427913,0.289448507,1.878836293,0.267055871,0.261185136,0,0.261185136,0.259003151,0.002181985,0.692102335,0.613869474,0.078232862,0.00805272,0.070180142,1.55887769,1.067343523,-82.90035641,82.90035641,0,0,0.922636891,0.00201318,0.064750788,1,0.927044307,0,0.012062089,0.961238037,1,0.690860426,0.96636383,0.24896368,0.005725161,0.115824807,0.273818548,0.724496596,0.448993192,0.967135647,0.928373684,0.001458542,0.062439686,0.250422222,0.068164847,0,0.044785273,-0.326728559,109.0703321,0.326728559,70.92966788,0,0.89696777,0.250422222,0.108335793,0.321325833,7,5,28% -2018-07-07 14:00:00,78.91204027,69.90953152,116.3039674,373.3267381,44.5073553,44.04204276,0,44.04204276,43.16529433,0.876748433,87.37617795,57.83487356,29.54130439,1.342060977,28.19924341,1.377274922,1.220151504,-5.10271192,5.10271192,0.597231179,0.597231179,0.382681316,0.65875658,21.18787607,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.49212278,0.972318609,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4772669,20.3665924,41.96938968,21.33891101,0,57.83487356,-0.154917577,98.912016,0.154917577,81.087984,0,0.727247727,41.96938968,63.39919134,83.46289243,7,6,99% -2018-07-07 15:00:00,67.57866714,78.17008214,319.7136954,638.9508696,76.00851468,105.1712133,29.04449893,76.12671441,73.71657752,2.410136883,79.81022412,0,79.81022412,2.291937159,77.51828696,1.179470246,1.36432531,-2.399021824,2.399021824,0.940410584,0.940410584,0.237739314,2.300662033,73.99719944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85917826,1.66050067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666821811,71.12892273,72.52600007,72.7894234,29.04449893,0,0.045456545,87.39463405,-0.045456545,92.60536595,0,0,72.52600007,72.7894234,120.1652219,7,7,66% -2018-07-07 16:00:00,55.8700714,86.56304516,524.8787328,765.4980021,95.37965302,292.3275002,195.8671381,96.46036217,92.50360457,3.956757598,130.1389741,0,130.1389741,2.876048452,127.2629256,0.975116699,1.510810149,-1.414116704,1.414116704,0.771981889,0.771981889,0.181717504,3.218492987,103.517798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91798326,2.083687313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331787213,99.50524488,91.24977047,101.5889322,195.8671381,0,0.255868908,75.17492186,-0.255868908,104.8250781,0.854587434,0,258.6353653,101.5889322,325.1232897,7,8,26% -2018-07-07 17:00:00,44.05341109,96.02947028,707.8397978,833.1720881,109.0457435,495.7318239,384.6382165,111.0936074,105.757612,5.335995388,174.9120856,0,174.9120856,3.288131503,171.6239541,0.76887707,1.676030435,-0.869357719,0.869357719,0.678822615,0.678822615,0.15405427,3.886212714,124.9939597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6582394,2.382240081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.815547883,120.1489484,104.4737872,122.5311885,384.6382165,0,0.461655187,62.50603461,-0.461655187,117.4939654,0.941694058,0,466.6853101,122.5311885,546.8795224,7,9,17% -2018-07-07 18:00:00,32.49379394,108.4621116,853.5856256,871.2656648,118.7169151,686.774496,565.2026449,121.5718511,115.1371621,6.434689002,210.5414704,0,210.5414704,3.57975301,206.9617174,0.567123691,1.893020961,-0.498719299,0.498719299,0.615439713,0.615439713,0.139080265,4.304320862,138.4417549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6742197,2.59351887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118465812,133.0754807,113.7926855,135.6689996,565.2026449,0,0.648714471,49.55525152,-0.648714471,130.4447485,0.972924488,0,663.6921794,135.6689996,752.4848263,7,10,13% -2018-07-07 19:00:00,22.05724775,128.7422414,951.2515509,891.701497,124.8144896,845.3902828,717.1684745,128.2218083,121.0508723,7.170936001,234.4055691,0,234.4055691,3.763617379,230.6419517,0.384971597,2.246975999,-0.210248101,0.210248101,0.566108232,0.566108232,0.131210813,4.467776554,143.6990518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3587028,2.726727979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.236888904,138.1289945,119.5955917,140.8557225,717.1684745,0,0.804269677,36.4602172,-0.804269677,143.5397828,0.987831798,0,828.0374151,140.8557225,920.2246684,7,11,11% -2018-07-07 20:00:00,15.61926948,167.9356384,993.7906878,899.614447,127.3971398,956.6281844,825.5809244,131.04726,123.555646,7.491613984,244.7975518,0,244.7975518,3.841493812,240.956058,0.272607679,2.931029822,0.038597275,-0.038597275,0.523553167,0.523553167,0.128193131,4.379825116,140.8702313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7663866,2.78314919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173168387,135.4098246,121.939555,138.1929738,825.5809244,0,0.917705276,23.40711856,-0.917705276,156.5928814,0.995516277,0,943.8188033,138.1929738,1034.263341,7,12,10% -2018-07-07 21:00:00,18.23939685,216.0532898,978.1679835,896.7711643,126.4532354,1009.99975,879.985703,130.0140472,122.6402038,7.37384344,240.981184,0,240.981184,3.81303161,237.1681524,0.318337529,3.770841267,0.273376777,-0.273376777,0.483403507,0.483403507,0.129275582,4.056991471,130.4867915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8864287,2.762528422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93927651,125.4288673,120.8257052,128.1913957,879.985703,0,0.981282336,11.10307324,-0.981282336,168.8969268,0.999046265,0,999.9721352,128.1913957,1083.87084,7,13,8% -2018-07-07 22:00:00,27.40609572,243.5602864,905.485322,882.5481684,121.9886947,999.4450361,874.3088198,125.1362163,118.3102855,6.825930836,223.2238089,0,223.2238089,3.678409237,219.5453997,0.478326605,4.250928926,0.515214321,-0.515214321,0.442046852,0.442046852,0.134721891,3.530476239,113.5522518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7243466,2.66499497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557818017,109.1507436,116.2821646,111.8157386,874.3088198,0,0.990664137,7.835258252,-0.990664137,172.1647417,0.999528808,0,990.1790169,111.8157386,1063.360182,7,14,7% -2018-07-07 23:00:00,38.61787756,258.6996868,780.9356473,853.5995578,113.9963155,923.2792346,806.8333058,116.4459288,110.558906,5.887022778,192.7842986,0,192.7842986,3.437409514,189.3468891,0.674009113,4.515161309,0.789610074,-0.789610074,0.395122414,0.395122414,0.14597402,2.845897645,91.53385096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2734258,2.490391492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061843156,87.9858192,108.3352689,90.4762107,806.8333058,0,0.945212891,19.05372338,-0.945212891,160.9462766,0.997101864,0,912.8302621,90.4762107,972.0451325,7,15,6% -2018-07-07 00:00:00,50.37937755,269.2023771,613.6139976,801.8378805,102.2809557,783.8114553,679.9889663,103.822489,99.1968075,4.625681506,151.8619661,0,151.8619661,3.084148191,148.7778179,0.879286013,4.698467834,1.140702238,-1.140702238,0.335082118,0.335082118,0.166686151,2.062659478,66.34221915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.35174451,2.234454865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49438977,63.77066449,96.84613428,66.00511936,679.9889663,0,0.848037967,32.00109513,-0.848037967,147.9989049,0.991040376,0,770.7426548,66.00511936,813.9416853,7,16,6% -2018-07-07 01:00:00,62.17821788,277.9402241,416.4620982,708.2077027,85.92534711,586.3278767,499.8540287,86.47384807,83.33438086,3.139467211,103.5670236,0,103.5670236,2.590966246,100.9760573,1.085214625,4.850972034,1.674044253,-1.674044253,0.243875262,0.243875262,0.20632213,1.255411807,40.37835916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.10417666,1.877146225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909541581,38.81321469,81.01371824,40.69036091,499.8540287,0,0.705801457,45.10567101,-0.705801457,134.894329,0.979158548,0,570.4500632,40.69036091,597.0810906,7,17,5% -2018-07-07 02:00:00,73.72781397,286.1697232,207.8758856,522.6139489,61.4390689,337.2743161,276.1208056,61.15351052,59.58645428,1.567056233,52.25452978,0,52.25452978,1.852614613,50.40191517,1.286793104,4.99460389,2.765639053,-2.765639053,0.057201557,0.057201557,0.295556499,0.5262986,16.9275721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.27676634,1.342212981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.381301544,16.27142618,57.65806788,17.61363916,276.1208056,0,0.528345648,58.10625506,-0.528345648,121.8937449,0.955364982,0,321.4542163,17.61363916,332.9819909,7,18,4% -2018-07-07 03:00:00,84.72297313,294.6221362,29.5177585,131.5804396,17.41612947,60.38075033,43.26726409,17.11348624,16.89096891,0.222517332,7.682082854,0,7.682082854,0.525160562,7.156922292,1.478694833,5.142126327,7.706075309,-7.706075309,0,0,0.590022087,0.131290141,4.222742227,0.440610388,1,0.1290466,0,0.947878279,0.986640242,0.724496596,1,16.37683008,0.38047704,0.062344632,0.312029739,0.838463573,0.562960169,0.961238037,0.922476074,0.089848385,4.059060448,16.46667847,4.439537487,24.20325806,0,0.328827478,70.80237638,-0.328827478,109.1976236,0.897944581,0,38.19986288,4.439537487,41.10545137,7,19,8% -2018-07-07 04:00:00,95.21541888,303.8590536,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661822558,5.303340948,-6.461256456,6.461256456,1,0.364906381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115460756,83.36979853,-0.115460756,96.63020147,0.616952429,0,0,0,0,7,20,0% -2018-07-07 05:00:00,104.410263,314.3871069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822302862,5.487090142,-1.682402081,1.682402081,1,0.81786139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09065526,95.20130482,0.09065526,84.79869518,0,0.498460022,0,0,0,7,21,0% -2018-07-07 06:00:00,111.9563041,326.6295552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954006125,5.700761172,-0.573613241,0.573613241,1,0.628247331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277996184,106.1406471,0.277996184,73.85935294,0,0.870141416,0,0,0,7,22,0% -2018-07-07 07:00:00,117.2253388,340.7345153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045968128,5.946939167,0.024916664,-0.024916664,1,0.525892689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433799866,115.7089521,0.433799866,64.29104793,0,0.934739476,0,0,0,7,23,0% -2018-07-08 08:00:00,119.6001774,356.2659091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087416882,6.218013127,0.493053827,-0.493053827,1,0.445836519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547452073,123.1923895,0.547452073,56.80761051,0,0.958667804,0,0,0,7,0,0% -2018-07-08 09:00:00,118.7360955,12.11407922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072335807,0.211430568,0.969548996,-0.969548996,1,0.364351046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611209511,127.6770099,0.611209511,52.32299007,0,0.96819499,0,0,0,7,1,0% -2018-07-08 10:00:00,114.7640478,26.99230455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003010497,0.471104587,1.585207743,-1.585207743,1,0.2590672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620727395,128.3692722,0.620727395,51.63072781,0,0.969449342,0,0,0,7,2,0% -2018-07-08 11:00:00,108.208753,40.12531789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888599019,0.700318911,2.635993865,-2.635993865,1,0.07937219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575355632,125.1245411,0.575355632,54.8754589,0,0.963097227,0,0,0,7,3,0% -2018-07-08 12:00:00,99.71909327,51.42304551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740426505,0.897501456,5.534318424,-5.534318424,1,0,#DIV/0!,0,0,0.293920194,1,0.178761904,0,0.94170158,0.980463543,0.724496596,1,0,0,0.044135657,0.312029739,0.88247465,0.606971245,0.961238037,0.922476074,0,0,0,0,0,0,-0.478183472,118.5668288,0.478183472,61.43317124,0,0.945437624,0,0,0,7,4,0% -2018-07-08 13:00:00,89.40486495,61.21412973,0.221999245,1.518518354,0.206226578,0.20168161,0,0.20168161,0.200008086,0.001673524,0.558465323,0.498420544,0.060044779,0.006218492,0.053826287,1.560409261,1.068388113,-95.14048796,95.14048796,0,0,0.928951709,0.001554623,0.050002022,1,0.936709403,0,0.010510385,0.961238037,1,0.695123783,0.970627188,0.19225538,0.004431052,0.115824807,0.278659624,0.724496596,0.448993192,0.966405198,0.927643235,0.001126319,0.048199545,0.193381699,0.052630597,0,0.031545334,-0.328228198,109.1612696,0.328228198,70.83873042,0,0.897666958,0.193381699,0.080947801,0.246360416,7,5,27% -2018-07-08 14:00:00,79.00748239,69.97937429,114.6123711,369.4257804,44.16996752,43.70207649,0,43.70207649,42.83808003,0.863996466,86.95954983,57.83856603,29.12098381,1.331887491,27.78909632,1.378940701,1.22137049,-5.148143001,5.148143001,0.589462007,0.589462007,0.385385688,0.645990695,20.77728134,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.17759195,0.964947953,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.46801806,19.97191312,41.64561001,20.93686107,0,57.83856603,-0.156563427,99.00748113,0.156563427,80.99251887,0,0.730640612,41.64561001,63.19606638,83.00617153,7,6,99% -2018-07-08 15:00:00,67.67049289,78.25049168,317.9427174,637.0619548,75.90211978,103.9904384,27.9802611,76.01017732,73.61339082,2.396786504,79.37762182,0,79.37762182,2.28872896,77.08889286,1.181072907,1.365728721,-2.409481185,2.409481185,0.94219924,0.94219924,0.238728914,2.29132299,73.69682373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.75999127,1.658176341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660055706,70.84019017,72.42004698,72.49836651,27.9802611,0,0.043920785,87.48271463,-0.043920785,92.51728537,0,0,72.42004698,72.49836651,119.8687779,7,7,66% -2018-07-08 16:00:00,55.95974752,86.65652311,523.263749,764.4126481,95.36450912,290.9730358,194.5395353,96.43350048,92.48891731,3.944583168,129.7469459,0,129.7469459,2.875591808,126.8713541,0.976681843,1.512441647,-1.418202917,1.418202917,0.772680672,0.772680672,0.182249409,3.211322572,103.2871728,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90386531,2.083356476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.326592272,99.28355918,91.23045758,101.3669157,194.5395353,0,0.254495443,75.25631017,-0.254495443,104.7436898,0.853532828,0,257.2763373,101.3669157,323.6189562,7,8,26% -2018-07-08 17:00:00,44.1437043,96.14027101,706.4367331,832.44559,109.0777254,494.438084,383.3240359,111.114048,105.7886295,5.325418494,174.5728607,0,174.5728607,3.289095875,171.2837648,0.770452984,1.677964273,-0.871278202,0.871278202,0.679151037,0.679151037,0.154405512,3.880589244,124.8130895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6880546,2.382938765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.811473697,119.9750892,104.4995283,122.3580279,383.3240359,0,0.460479388,62.58195413,-0.460479388,117.4180459,0.941417507,0,465.3674865,122.3580279,545.4483686,7,9,17% -2018-07-08 18:00:00,32.58944889,108.5936655,852.4062225,870.7215858,118.7783588,685.638681,564.0161298,121.6225512,115.196753,6.425798163,210.2573632,0,210.2573632,3.581605763,206.6757575,0.568793185,1.895317009,-0.499644528,0.499644528,0.615597936,0.615597936,0.139344781,4.299902249,138.2996372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7315007,2.594861183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115264542,132.9388717,113.8467653,135.5337329,564.0161298,0,0.647757146,49.627287,-0.647757146,130.372713,0.972810578,0,662.5276223,135.5337329,751.2317398,7,10,13% -2018-07-08 19:00:00,22.16600829,128.8720316,950.283512,891.2561976,124.8959758,844.4501583,716.1566184,128.2935399,121.1299013,7.163638515,234.173314,0,234.173314,3.766074488,230.4072395,0.386869827,2.249241265,-0.210606216,0.210606216,0.566169474,0.566169474,0.131430225,4.464292967,143.5870077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4346686,2.728508147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234365058,138.0212934,119.6690336,140.7498016,716.1566184,0,0.8035362,36.5308761,-0.8035362,143.4691239,0.98777505,0,827.0706731,140.7498016,919.1886032,7,11,11% -2018-07-08 20:00:00,15.73780291,167.8803632,993.0037887,899.2208596,127.4920226,955.885529,824.7521793,131.1333497,123.6476677,7.485682006,244.6096201,0,244.6096201,3.844354877,240.7652652,0.274676478,2.930065088,0.038636121,-0.038636121,0.523546524,0.523546524,0.128390268,4.377016854,140.7799079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8548414,2.785222022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171133811,135.3230023,122.0259752,138.1082243,824.7521793,0,0.917185328,23.48199592,-0.917185328,156.5180041,0.995485391,0,943.0547205,138.1082243,1033.443791,7,12,10% -2018-07-08 21:00:00,18.32026585,215.7718782,977.5180032,896.3968569,126.5555971,1009.429495,879.3210727,130.1084225,122.7394789,7.368943614,240.8266754,0,240.8266754,3.816118192,237.0105572,0.319748959,3.765929707,0.273763945,-0.273763945,0.483337298,0.483337298,0.129466257,4.054596777,130.4097699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9818557,2.764764639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937541563,125.3548312,120.9193973,128.1195959,879.3210727,0,0.980950642,11.20133116,-0.980950642,168.7986688,0.999029036,0,999.3866807,128.1195959,1083.238394,7,13,8% -2018-07-08 22:00:00,27.45257794,243.3202393,904.9181081,882.1639189,122.0922816,999.0000781,873.7676743,125.2324038,118.4107489,6.821654938,223.0894049,0,223.0894049,3.681532764,219.4078721,0.479137873,4.246739313,0.515988967,-0.515988967,0.441914379,0.441914379,0.134920807,3.528240033,113.4803277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8209158,2.667257955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556197893,109.0816074,116.3771137,111.7488654,873.7676743,0,0.990482217,7.911349811,-0.990482217,172.0886502,0.999519538,0,989.7249758,111.7488654,1062.862373,7,14,7% -2018-07-08 23:00:00,38.6506484,258.5144758,780.3917435,853.1688957,114.0935665,922.8931319,806.3569848,116.5361471,110.6532245,5.882922602,192.6553553,0,192.6553553,3.440341989,189.2150133,0.674581073,4.511928767,0.790923527,-0.790923527,0.394897801,0.394897801,0.146200376,2.843592823,91.45971996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3640883,2.49251606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06017332,87.91456167,108.4242616,90.40707773,806.3569848,0,0.945131719,19.06796474,-0.945131719,160.9320353,0.997097321,0,912.4406508,90.40707773,971.6102751,7,15,6% -2018-07-08 00:00:00,50.40869465,269.0507711,613.0344566,801.298768,102.3610972,783.3983102,679.502465,103.8958451,99.27453245,4.621312681,151.7238662,0,151.7238662,3.086564753,148.6373015,0.879797693,4.69582181,1.142939538,-1.142939538,0.334699517,0.334699517,0.16697446,2.060124379,66.26068165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.42645669,2.236205657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.4925531,63.69228755,96.91900979,65.92849321,679.502465,0,0.848001385,32.00505014,-0.848001385,147.9949499,0.991037832,0,770.3316597,65.92849321,813.4805399,7,16,6% -2018-07-08 01:00:00,62.20947781,277.8084691,415.7979423,707.4230565,85.96879896,585.7749265,499.2639435,86.51098301,83.37652248,3.134460523,103.4073015,0,103.4073015,2.59227648,100.8150251,1.085760214,4.848672476,1.678299212,-1.678299212,0.243147621,0.243147621,0.206756191,1.252629275,40.28886336,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14468479,1.878095485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.907525646,38.72718793,81.05221044,40.60528341,499.2639435,0,0.705750172,45.10981882,-0.705750172,134.8901812,0.9791534,0,569.9081983,40.60528341,596.4835442,7,17,5% -2018-07-08 02:00:00,73.76454128,286.0497713,207.118332,521.2071927,61.39643616,336.4195912,275.3131387,61.10645256,59.54510708,1.561345474,52.06956662,0,52.06956662,1.851329079,50.21823754,1.287434117,4.992510333,2.776481498,-2.776481498,0.05534739,0.05534739,0.296431685,0.523632108,16.84180857,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23702183,1.341281616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.37936968,16.18898701,57.61639151,17.53026862,275.3131387,0,0.528222063,58.11459467,-0.528222063,121.8854053,0.955342841,0,320.6348275,17.53026862,332.1080377,7,18,4% -2018-07-08 03:00:00,84.76727165,294.5093203,28.96648607,129.2266697,17.18082876,59.34395453,42.46282954,16.88112499,16.66276338,0.218361607,7.541325287,0,7.541325287,0.518065378,7.023259909,1.479467988,5.140157318,7.786768111,-7.786768111,0,0,0.593127821,0.129516344,4.165690845,0.444895338,1,0.127723886,0,0.948034956,0.986796919,0.724496596,1,16.15541393,0.375336602,0.062844796,0.312029739,0.837291818,0.561788414,0.961238037,0.922476074,0.088635623,4.00422049,16.24404955,4.379557092,23.57131462,0,0.328591843,70.81667164,-0.328591843,109.1833284,0.897835541,0,37.40721357,4.379557092,40.27354609,7,19,8% -2018-07-08 04:00:00,95.27206807,303.7512061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662811273,5.301458653,-6.407904129,6.407904129,1,0.374030166,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115034673,83.39437509,-0.115034673,96.60562491,0.615348439,0,0,0,0,7,20,0% -2018-07-08 05:00:00,104.4807974,314.2847442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823533921,5.485303575,-1.6800856,1.6800856,1,0.817465248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091287644,95.2376886,0.091287644,84.7623114,0,0.502280746,0,0,0,7,21,0% -2018-07-08 06:00:00,112.0426445,326.5367464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95551305,5.699141354,-0.575021327,0.575021327,1,0.628488128,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278854271,106.1918359,0.278854271,73.80816409,0,0.870694874,0,0,0,7,22,0% -2018-07-08 07:00:00,117.3275638,340.6593102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047752292,5.94562659,0.02226788,-0.02226788,1,0.526345658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434887626,115.7781436,0.434887626,64.22185644,0,0.93502777,0,0,0,7,23,0% -2018-07-09 08:00:00,119.7152302,356.2179156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089424931,6.217175482,0.489347596,-0.489347596,1,0.446470322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548757751,123.2818312,0.548757751,56.71816883,0,0.958885114,0,0,0,7,0,0% -2018-07-09 09:00:00,118.8579655,12.09864101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074462841,0.211161121,0.9642618,-0.9642618,1,0.36525521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612706422,127.7854532,0.612706422,52.21454678,0,0.968394849,0,0,0,7,1,0% -2018-07-09 10:00:00,114.886183,27.00697707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005142159,0.471360671,1.57674111,-1.57674111,1,0.260515079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622375749,128.4898326,0.622375749,51.51016743,0,0.96966268,0,0,0,7,2,0% -2018-07-09 11:00:00,108.3265489,40.16295909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890654946,0.700975873,2.618837133,-2.618837133,1,0.082306164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577105266,125.247199,0.577105266,54.75280102,0,0.963360694,0,0,0,7,3,0% -2018-07-09 12:00:00,99.83047642,51.47680396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742370507,0.898439718,5.472108777,-5.472108777,1,0,#DIV/0!,0,0,0.288576254,1,0.180750422,0,0.941442972,0.980204935,0.724496596,1,0,0,0.043429907,0.312029739,0.884233327,0.608729923,0.961238037,0.922476074,0,0,0,0,0,0,-0.479977308,118.68392,0.479977308,61.31608003,0,0.945828409,0,0,0,7,4,0% -2018-07-09 13:00:00,89.49485892,61.27974875,0.164239757,1.207783142,0.153591625,0.15019838,0,0.15019838,0.148960271,0.001238109,0.442742383,0.398289198,0.044453185,0.004631354,0.03982183,1.561979952,1.06953338,-112.1112411,112.1112411,0,0,0.935167152,0.001157839,0.037240068,1,0.946530655,0,0.008919476,0.961238037,1,0.699514408,0.975017812,0.143186279,0.003307923,0.115824807,0.283645984,0.724496596,0.448993192,0.965647716,0.926885753,0.00083885,0.035883603,0.144025129,0.039191527,0,0.021296262,-0.3297688,109.2547432,0.3297688,70.74525678,0,0.898378622,0.144025129,0.058323634,0.182196781,7,5,27% -2018-07-09 14:00:00,79.105628,70.05530393,112.8798638,365.4071853,43.81827592,43.34792933,0,43.34792933,42.49699323,0.850936094,86.51779044,57.8274779,28.69031255,1.321282691,27.36902986,1.380653666,1.222695712,-5.195672422,5.195672422,0.581333997,0.581333997,0.388185053,0.632972117,20.3585591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.84972635,0.957264812,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.458586144,19.56942138,41.30831249,20.52668619,0,57.8274779,-0.158254901,99.10561892,0.158254901,80.89438108,0,0.734054018,41.30831249,62.97517872,82.52430746,7,6,100% -2018-07-09 15:00:00,67.76470904,78.3374614,316.1282445,635.1265065,75.78938867,102.7842889,26.89712169,75.88716721,73.50405897,2.38310824,78.93428259,0,78.93428259,2.285329701,76.64895289,1.182717289,1.367246629,-2.420264733,2.420264733,0.944043335,0.944043335,0.239742541,2.281727308,73.38819361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65489734,1.655713589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.653103667,70.54352315,72.30800101,72.19923674,26.89712169,0,0.042349235,87.5728417,-0.042349235,92.4271583,0,0,72.30800101,72.19923674,119.5609575,7,7,65% -2018-07-09 16:00:00,56.05165714,86.75732436,521.6101829,763.3059506,95.3456184,289.591858,193.1891439,96.40271411,92.47059622,3.932117888,129.34545,0,129.34545,2.875022183,126.4704278,0.978285968,1.51420096,-1.422367814,1.422367814,0.773392911,0.773392911,0.182790945,3.203947203,103.0499555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88625438,2.082943784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.321248842,99.05553697,91.20750322,101.1384807,193.1891439,0,0.253095294,75.33924837,-0.253095294,104.6607516,0.852445951,0,255.8908067,101.1384807,322.0839196,7,8,26% -2018-07-09 17:00:00,44.23630881,96.25963323,704.9989467,831.7069616,109.1069707,493.1215777,381.9900049,111.1315728,105.816993,5.314579853,174.2251345,0,174.2251345,3.289977728,170.9351568,0.772069238,1.680047537,-0.873204729,0.873204729,0.679480493,0.679480493,0.154761892,3.874778848,124.6262072,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7153186,2.383577665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.807264085,119.7954508,104.5225827,122.1790284,381.9900049,0,0.459284366,62.65906139,-0.459284366,117.3409386,0.941134984,0,464.0267397,122.1790284,543.9904702,7,9,17% -2018-07-09 18:00:00,32.68788204,108.7357353,851.1935117,870.1690502,118.8374648,684.4837778,562.8130448,121.670733,115.2540768,6.416656236,209.9651097,0,209.9651097,3.583388027,206.3817217,0.570511167,1.897796596,-0.500544027,0.500544027,0.61575176,0.61575176,0.139612747,4.295295004,138.1514523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7866025,2.596152427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.111926609,132.7964308,113.8985291,135.3925832,562.8130448,0,0.646785868,49.70029382,-0.646785868,130.2997062,0.972694662,0,661.3437737,135.3925832,749.9555115,7,10,13% -2018-07-09 19:00:00,22.27874496,129.0147124,949.2807713,890.8037104,124.9751821,843.4924264,715.1296276,128.3627987,121.2067193,7.156079432,233.9325762,0,233.9325762,3.768462851,230.1641134,0.388837453,2.251731514,-0.210919158,0.210919158,0.56622299,0.56622299,0.131652495,4.460604829,143.4683845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5085089,2.730238507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.231693014,137.9072683,119.7402019,140.6375068,715.1296276,0,0.802791478,36.60249816,-0.802791478,143.3975018,0.987717326,0,826.0861254,140.6375068,918.1305609,7,11,11% -2018-07-09 20:00:00,15.86242843,167.8352925,992.1780055,898.8199608,127.584434,955.1237463,823.9069969,131.2167495,123.7372926,7.479456903,244.4121859,0,244.4121859,3.847141421,240.5650445,0.276851604,2.929278455,0.0387368,-0.0387368,0.523529307,0.523529307,0.128590266,4.373977422,140.6821494,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9409922,2.787240863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168931753,135.2290331,122.1099239,138.0162739,823.9069969,0,0.916654094,23.55826671,-0.916654094,156.4417333,0.995453797,0,942.2712726,138.0162739,1032.600164,7,12,10% -2018-07-09 21:00:00,18.40784876,215.4867087,976.8224417,896.0139181,126.6550801,1008.835279,878.6356171,130.1996623,122.8359621,7.363700177,240.6610282,0,240.6610282,3.819117971,236.8419102,0.321277569,3.760952562,0.274231951,-0.274231951,0.483257264,0.483257264,0.129660289,4.051936968,130.3242213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0745991,2.766937969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93561454,125.2725987,121.0102136,128.0395366,878.6356171,0,0.980604876,11.30286012,-0.980604876,168.6971399,0.999011063,0,998.7769156,128.0395366,1082.576232,7,13,8% -2018-07-09 22:00:00,27.50474268,243.0723606,904.2965885,881.7681808,122.1923649,998.5229592,873.1981752,125.3247839,118.5078143,6.81696966,222.9417281,0,222.9417281,3.684550644,219.2571775,0.48004832,4.242413014,0.516870976,-0.516870976,0.441763547,0.441763547,0.135124213,3.525701318,113.3986739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9142187,2.669444399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554358603,109.0031187,116.4685773,111.6725631,873.1981752,0,0.990280886,7.994721593,-0.990280886,172.0052784,0.999509275,0,989.2382523,111.6725631,1062.325711,7,14,7% -2018-07-09 23:00:00,38.68845039,258.322195,779.7834664,852.7212487,114.1864152,922.4633285,805.8417179,116.6216106,110.7432735,5.878337152,192.5106712,0,192.5106712,3.44314172,189.0675294,0.675240842,4.508572834,0.792387363,-0.792387363,0.39464747,0.39464747,0.146433491,2.840949522,91.37470234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4506468,2.494544456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058258258,87.83283949,108.508905,90.32738395,805.8417179,0,0.945023616,19.08691506,-0.945023616,160.9130849,0.997091269,0,912.0066464,90.32738395,971.1241126,7,15,6% -2018-07-09 00:00:00,50.4427967,268.8931535,612.38005,800.7316566,102.43547,782.9263925,678.9633504,103.9630421,99.34666261,4.616379487,151.5674404,0,151.5674404,3.088807366,148.478633,0.880392886,4.693070865,1.145408414,-1.145408414,0.334277315,0.334277315,0.167274342,2.057223222,66.16737048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.49579093,2.237830422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490451221,63.60259331,96.98624215,65.84042373,678.9633504,0,0.847928697,32.01290729,-0.847928697,147.9870927,0.991032778,0,769.8611772,65.84042373,812.9524178,7,16,6% -2018-07-09 01:00:00,62.24551629,277.6715188,415.0494615,706.5856359,86.00399582,585.1434708,498.6039946,86.53947618,83.41065802,3.128818158,103.226885,0,103.226885,2.593337795,100.6335472,1.086389204,4.846282242,1.682975833,-1.682975833,0.242347872,0.242347872,0.207213848,1.249474397,40.18739165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.17749717,1.878864404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.905239947,38.62964945,81.08273712,40.50851386,498.6039946,0,0.705652605,45.11770884,-0.705652605,134.8822912,0.979143605,0,569.2876497,40.50851386,595.7996618,7,17,5% -2018-07-09 02:00:00,73.80618673,285.9252359,206.2721962,519.6820147,61.33942348,335.458626,274.4138455,61.04478049,59.48981354,1.554966945,51.86269204,0,51.86269204,1.849609936,50.0130821,1.288160967,4.99033678,2.78841618,-2.78841618,0.053306439,0.053306439,0.297371263,0.520643205,16.74567516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18387158,1.340036103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.377204229,16.09657992,57.56107581,17.43661602,274.4138455,0,0.528041837,58.12675516,-0.528041837,121.8732448,0.955310533,0,319.7115128,17.43661602,331.1234293,7,18,4% -2018-07-09 03:00:00,84.8166302,294.3924256,28.36137757,126.65999,16.91846833,58.20349995,41.58138581,16.62211414,16.40831409,0.213800044,7.386698592,0,7.386698592,0.510154243,6.876544349,1.480329457,5.13811712,7.877079349,-7.877079349,0,0,0.596531966,0.127538561,4.102078523,0.449613859,1,0.126275128,0,0.948206103,0.986968066,0.724496596,1,15.9085193,0.369605012,0.063393609,0.312029739,0.836008381,0.560504977,0.961238037,0.922476074,0.087284219,3.943073906,15.99580352,4.312678918,22.88581848,0,0.328291403,70.83489662,-0.328291403,109.1651034,0.897696286,0,36.54031777,4.312678918,39.36287987,7,19,8% -2018-07-09 04:00:00,95.33425949,303.6397857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.663896718,5.299514001,-6.349553703,6.349553703,1,0.384008677,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114532444,83.42334213,-0.114532444,96.57665787,0.613442477,0,0,0,0,7,20,0% -2018-07-09 05:00:00,104.5572646,314.1794502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824868525,5.483465848,-1.677245063,1.677245063,1,0.816979488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092003496,95.27887728,0.092003496,84.72112272,0,0.506542392,0,0,0,7,21,0% -2018-07-09 06:00:00,112.1352879,326.4419498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957129981,5.697486841,-0.576313987,0.576313987,1,0.628709186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279800919,106.2483233,0.279800919,73.75167671,0,0.871301516,0,0,0,7,22,0% -2018-07-09 07:00:00,117.4363225,340.5835017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04965049,5.944303482,0.01961619,-0.01961619,1,0.526799124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436066457,115.8531736,0.436066457,64.14682635,0,0.935338578,0,0,0,7,23,0% -2018-07-10 08:00:00,119.836758,356.1710844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091545992,6.216358124,0.485577031,-0.485577031,1,0.447115127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550154255,123.3775961,0.550154255,56.62240388,0,0.959116399,0,0,0,7,0,0% -2018-07-10 09:00:00,118.9858843,12.08613575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076695444,0.210942863,0.958855622,-0.958855622,1,0.366179721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614291173,127.9004337,0.614291173,52.09956633,0,0.968605374,0,0,0,7,1,0% -2018-07-10 10:00:00,115.0136576,27.02592579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00736701,0.471691388,1.568078718,-1.568078718,1,0.261996436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624106421,128.6166311,0.624106421,51.38336888,0,0.969885458,0,0,0,7,2,0% -2018-07-10 11:00:00,108.4488754,40.20567731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892789945,0.701721447,2.60133627,-2.60133627,1,0.085298988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578929542,125.3752875,0.578929542,54.62471252,0,0.963633704,0,0,0,7,3,0% -2018-07-10 12:00:00,99.94563168,51.53606712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744380346,0.899474055,5.409353002,-5.409353002,1,0,#DIV/0!,0,0,0.283102811,1,0.182801223,0,0.941175342,0.979937305,0.724496596,1,0,0,0.042703766,0.312029739,0.886046927,0.610543522,0.961238037,0.922476074,0,0,0,0,0,0,-0.481836481,118.8054143,0.481836481,61.19458567,0,0.946230356,0,0,0,7,4,0% -2018-07-10 13:00:00,89.58697355,61.35115113,0.115857313,0.94438787,0.10904959,0.106634724,0,0.106634724,0.105761342,0.000873381,0.344300424,0.31292123,0.031379194,0.003288247,0.028090947,1.563587655,1.070779587,-137.1419696,137.1419696,0,0,0.941240455,0.000822062,0.026440336,1,0.956489223,0,0.007291585,0.961238037,1,0.704027572,0.979530976,0.101661825,0.002354434,0.115824807,0.288772265,0.724496596,0.448993192,0.96486359,0.926101627,0.000595581,0.025466724,0.102257406,0.027821158,0,0.013615446,-0.33134821,109.3506268,0.33134821,70.64937321,0,0.899101343,0.102257406,0.040062824,0.128477723,7,5,26% -2018-07-10 14:00:00,79.20639201,70.13731989,111.1083643,361.2720303,43.45232696,42.97966076,0,42.97966076,42.14207898,0.837581782,86.04979523,57.80003796,28.24975727,1.31024798,26.93950929,1.382412329,1.224127161,-5.245347706,5.245347706,0.572839023,0.572839023,0.391080611,0.619721232,19.93236509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.50856926,0.949270201,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.448985923,19.15974749,40.95755519,20.10901769,0,57.80003796,-0.159990348,99.206336,0.159990348,80.793664,0,0.737481148,40.95755519,62.73545604,82.01665646,7,6,100% -2018-07-10 15:00:00,67.86123668,78.430976,314.2717003,633.144923,75.6703918,101.5542595,25.79649643,75.75776312,73.38865029,2.369112826,78.48055376,0,78.48055376,2.281741507,76.19881226,1.184402015,1.368878767,-2.431368886,2.431368886,0.945942257,0.945942257,0.240780165,2.271880383,73.07148265,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.54396213,1.653113954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645969604,70.23908853,72.18993173,71.89220248,25.79649643,0,0.040743431,87.66492701,-0.040743431,92.33507299,0,0,72.18993173,71.89220248,119.2419404,7,7,65% -2018-07-10 16:00:00,56.14572874,86.86541669,519.9191345,762.1781447,95.32304008,288.1852922,191.8172234,96.36806877,92.44869872,3.919370051,128.9347549,0,128.9347549,2.874341363,126.0604136,0.979927827,1.516087527,-1.426607894,1.426607894,0.774118008,0.774118008,0.18334205,3.196370424,102.8062603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86520567,2.082450533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.315759491,98.82128781,91.18096516,100.9037383,191.8172234,0,0.251669803,75.42365546,-0.251669803,104.5763445,0.851326979,0,254.4801425,100.9037383,320.5196211,7,8,26% -2018-07-10 17:00:00,44.33116199,96.38749986,703.5271768,830.9563059,109.1335164,491.7833707,380.6371475,111.1462232,105.8427382,5.30348503,173.8690873,0,173.8690873,3.290778179,170.5783092,0.773724738,1.68227923,-0.875134828,0.875134828,0.679810559,0.679810559,0.155123384,3.86878323,124.4333675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7400659,2.384157589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.80292028,119.6100859,104.5429862,121.9942435,380.6371475,0,0.458071194,62.73728493,-0.458071194,117.2627151,0.940846662,0,462.6641757,121.9942435,542.5069682,7,9,17% -2018-07-10 18:00:00,32.78904018,108.8882173,849.9478434,869.6080686,118.8942468,683.3105062,561.5940937,121.7164125,115.3091466,6.407265863,209.6647952,0,209.6647952,3.585100215,206.079695,0.57227671,1.900457908,-0.501415995,0.501415995,0.615900875,0.615900875,0.139884168,4.290499115,137.9972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8395377,2.597392902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.108452003,132.6481576,113.9479897,135.2455505,561.5940937,0,0.645801383,49.77421294,-0.645801383,130.2257871,0.972576815,0,660.1413847,135.2455505,748.6568926,7,10,13% -2018-07-10 19:00:00,22.39540637,129.1700944,948.2432915,890.3439774,125.0520996,842.5174063,714.0878305,128.4295758,121.2813174,7.148258471,233.6833466,0,233.6833466,3.770782195,229.9125644,0.390873578,2.254443443,-0.211185534,0.211185534,0.566268543,0.566268543,0.131877653,4.456710622,143.3431335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5802154,2.731918864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.228871675,137.7868722,119.8090871,140.5187911,714.0878305,0,0.802035897,36.67504165,-0.802035897,143.3249583,0.987658651,0,825.0841102,140.5187911,917.0508486,7,11,11% -2018-07-10 20:00:00,15.99307873,167.8004839,991.3129411,898.4116327,127.6743436,954.3427347,823.045308,131.2974267,123.824491,7.472935683,244.2051521,0,244.2051521,3.849852527,240.3552996,0.279131881,2.92867093,0.038900471,-0.038900471,0.523501317,0.523501317,0.128793177,4.370704089,140.5768677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0248107,2.78920505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.166560234,135.1278323,122.1913709,137.9170374,823.045308,0,0.916111589,23.63591617,-0.916111589,156.3640838,0.995421496,0,941.4683627,137.9170374,1031.732305,7,12,10% -2018-07-10 21:00:00,18.50216254,215.1984103,976.0805954,895.6221676,126.7516345,1008.216593,877.9288798,130.2877129,122.929605,7.358107827,240.4840705,0,240.4840705,3.822029443,236.662041,0.322923655,3.755920805,0.274781846,-0.274781846,0.483163226,0.483163226,0.129857755,4.049008459,130.2300304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1646122,2.769047321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933492845,125.1820588,121.0981051,127.9511061,877.9288798,0,0.980244696,11.40767279,-0.980244696,168.5923272,0.998992328,0,998.1423205,127.9511061,1081.88376,7,13,8% -2018-07-10 22:00:00,27.56265945,242.8170168,903.6198288,881.3606949,122.2888767,998.012802,872.5995181,125.4132839,118.6014159,6.81186796,222.7805501,0,222.7805501,3.687460831,219.0930892,0.481059158,4.237956423,0.517861428,-0.517861428,0.44159417,0.44159417,0.135332219,3.522856083,113.3071614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0041922,2.67155282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55229724,108.9151533,116.5564894,111.5867062,872.5995181,0,0.990059488,8.085417082,-0.990059488,171.9145829,0.999497984,0,988.7179487,111.5867062,1061.749216,7,14,7% -2018-07-10 23:00:00,38.73135564,258.1230563,779.1097449,852.2562402,114.2747761,921.9886442,805.2864159,116.7022284,110.82897,5.873258355,192.349984,0,192.349984,3.44580613,188.9041779,0.67598968,4.505097208,0.794002913,-0.794002913,0.394371195,0.394371195,0.146673529,2.837963776,91.27867047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5330216,2.496474811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.056095095,87.74053001,108.5891167,90.23700482,805.2864159,0,0.944887673,19.11072,-0.944887673,160.88928,0.997083657,0,911.5270413,90.23700482,970.5853562,7,15,6% -2018-07-10 00:00:00,50.48174787,268.7296714,611.6496788,800.1359614,102.5039661,782.3942941,678.3703271,104.023967,99.41309332,4.610873641,151.3924188,0,151.3924188,3.090872777,148.3015461,0.881072713,4.690217564,1.14811101,-1.14811101,0.333815143,0.333815143,0.16758607,2.053952605,66.0621762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.55964666,2.239326805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488081671,63.50147656,97.04772833,65.74080337,678.3703271,0,0.847818821,32.02478108,-0.847818821,147.9752189,0.991025136,0,769.3297738,65.74080337,812.3558148,7,16,6% -2018-07-10 01:00:00,62.28638719,277.5294893,414.2156578,705.6944072,86.03078586,584.4319348,497.872762,86.55917284,83.43664024,3.122532594,103.0255275,0,103.0255275,2.594145613,100.4313819,1.087102536,4.84380336,1.688079173,-1.688079173,0.241475149,0.241475149,0.207695639,1.245945003,40.0738742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20247227,1.879449666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902682913,38.52053217,81.10515518,40.39998183,497.872762,0,0.705507592,45.12943375,-0.705507592,134.8705662,0.97912904,0,568.5868349,40.39998183,595.027815,7,17,5% -2018-07-10 02:00:00,73.85279276,285.7962169,205.3368102,518.0362104,61.26774592,334.389705,273.421492,60.96821294,59.42029733,1.54791561,51.63373554,0,51.63373554,1.847448594,49.78628694,1.288974395,4.988084974,2.801465134,-2.801465134,0.051074936,0.051074936,0.298376827,0.51733226,16.63918379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.11704996,1.338470217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374805461,15.99421636,57.49185542,17.33268658,273.421492,0,0.527803822,58.14281229,-0.527803822,121.8571877,0.955267833,0,318.6826115,17.33268658,330.0265082,7,18,4% -2018-07-10 03:00:00,84.87107336,294.2715429,27.70366357,123.8824095,16.62892899,56.96051385,40.62416651,16.33634734,16.12750543,0.208841918,7.218497537,0,7.218497537,0.501423563,6.717073973,1.48127967,5.136007318,7.977575716,-7.977575716,0,0,0.600242959,0.125355891,4.031876357,0.454771111,1,0.124700938,0,0.948391522,0.987153485,0.724496596,1,15.63603041,0.363279665,0.063991115,0.312029739,0.834613798,0.559110394,0.961238037,0.922476074,0.085793745,3.875592914,15.72182415,4.238872578,22.14946915,0,0.327925221,70.85710687,-0.327925221,109.1428931,0.897526214,0,35.60155334,4.238872578,38.37581067,7,19,8% -2018-07-10 04:00:00,95.40201105,303.5248781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665079206,5.297508485,-6.286519627,6.286519627,1,0.394788138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113953232,83.45674726,-0.113953232,96.54325274,0.611223501,0,0,0,0,7,20,0% -2018-07-10 05:00:00,104.6396686,314.0713077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826306745,5.481578406,-1.673885229,1.673885229,1,0.816404923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092803379,95.32490408,0.092803379,84.67509592,0,0.511226512,0,0,0,7,21,0% -2018-07-10 06:00:00,112.2342232,326.3452474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958856729,5.695799065,-0.577487646,0.577487646,1,0.628909893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280836354,106.3101272,0.280836354,73.68987277,0,0.871960372,0,0,0,7,22,0% -2018-07-10 07:00:00,117.5515881,340.5071738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051662254,5.942971309,0.016966712,-0.016966712,1,0.527252211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437336214,115.9340442,0.437336214,64.06595577,0,0.935671485,0,0,0,7,23,0% -2018-07-11 08:00:00,119.9647168,356.1255032,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093779294,6.215562581,0.48174862,-0.48174862,1,0.447769824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551641056,123.4796693,0.551641056,56.52033071,0,0.959361351,0,0,0,7,0,0% -2018-07-11 09:00:00,119.1197894,12.07664942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079032529,0.210777295,0.953339451,-0.953339451,1,0.367123042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61596287,128.0219175,0.61596287,51.9780825,0,0.968826276,0,0,0,7,1,0% -2018-07-11 10:00:00,115.1463933,27.04922455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009683685,0.472098029,1.559235319,-1.559235319,1,0.263508746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625918194,128.7496123,0.625918194,51.25038775,0,0.970117356,0,0,0,7,2,0% -2018-07-11 11:00:00,108.5756438,40.25352662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895002472,0.702556575,2.583523773,-2.583523773,1,0.088345104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580826983,125.5087292,0.580826983,54.49127076,0,0.963915845,0,0,0,7,3,0% -2018-07-11 12:00:00,100.0644662,51.60086814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7464544,0.900605046,5.346188551,-5.346188551,1,0,#DIV/0!,0,0,0.277508014,1,0.184912372,0,0.940898862,0.979660825,0.724496596,1,0,0,0.041958064,0.312029739,0.88791372,0.612410316,0.961238037,0.922476074,0,0,0,0,0,0,-0.483759337,118.9312195,0.483759337,61.06878051,0,0.946642822,0,0,0,7,4,0% -2018-07-11 13:00:00,89.68109583,61.42835146,0.076341471,0.725173027,0.072305231,0.070700455,0,0.070700455,0.070124961,0.000575494,0.262146939,0.241456796,0.020690143,0.002180269,0.018509873,1.565230399,1.072126987,-177.6559253,177.6559253,0,0,0.947129132,0.000545067,0.01753124,1,0.966567602,0,0.005628799,0.961238037,1,0.708658848,0.984162252,0.06740678,0.001565149,0.115824807,0.294033432,0.724496596,0.448993192,0.964053173,0.92529121,0.000394899,0.016878329,0.067801679,0.018443478,0,0.00807248,-0.332964392,109.4488011,0.332964392,70.55119886,0,0.899833793,0.067801679,0.025707368,0.084626638,7,5,25% -2018-07-11 14:00:00,79.30968524,70.22542067,109.2998739,357.0215916,43.07218567,42.59734897,0,42.59734897,41.77340036,0.823948618,85.55448652,57.75468134,27.79980518,1.298785318,26.50101986,1.384215136,1.225664809,-5.297217504,5.297217504,0.563968765,0.563968765,0.394073517,0.606259026,19.49937429,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.15418135,0.940965541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.439232601,18.74354026,40.59341395,19.6845058,0,57.75468134,-0.161768035,99.30953421,0.161768035,80.69046579,0,0.740915452,40.59341395,62.47584163,81.48260278,7,6,101% -2018-07-11 15:00:00,67.95999333,78.53101873,312.3745763,631.1176637,75.54520764,100.3018976,24.67984523,75.6220524,73.2672409,2.354811504,78.01679932,0,78.01679932,2.277966743,75.73883257,1.186125643,1.370624842,-2.442789532,2.442789532,0.947895302,0.947895302,0.241841729,2.261787955,72.74687547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42725881,1.650379151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.638657674,69.92706376,72.06591648,71.57744291,24.67984523,0,0.039104983,87.75887811,-0.039104983,92.24112189,0,0,72.06591648,71.57744291,118.9119213,7,7,65% -2018-07-11 16:00:00,56.24188775,86.98076599,518.1917576,761.0294923,95.29683805,286.7547194,190.4250843,96.32963513,92.42328678,3.906348354,128.5151423,0,128.5151423,2.873551275,125.641591,0.981606119,1.518100752,-1.430919396,1.430919396,0.774855318,0.774855318,0.183902651,3.188595993,102.5562079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84077874,2.081878117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.310126943,98.58092792,91.15090568,100.662806,190.4250843,0,0.250220374,75.50944683,-0.250220374,104.4905532,0.850176144,0,253.0457696,100.662806,318.9275629,7,8,26% -2018-07-11 17:00:00,44.42819885,96.52381132,702.0221987,830.1937374,109.1574022,490.4245753,379.2665316,111.1580437,105.8659038,5.29213987,173.5049082,0,173.5049082,3.291498425,170.2134098,0.775418351,1.684658314,-0.877065885,0.877065885,0.680140789,0.680140789,0.155489958,3.86260421,124.234629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7623335,2.384679404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.798443602,119.4190509,104.5607771,121.8037303,379.2665316,0,0.456840993,62.81655032,-0.456840993,117.1834497,0.940552729,0,461.2809485,121.8037303,540.9990539,7,9,17% -2018-07-11 18:00:00,32.89286833,109.0510039,848.6695878,869.0386557,118.9487199,682.1196174,560.3600105,121.7596069,115.3619771,6.397629833,209.3565099,0,209.3565099,3.586742778,205.7697671,0.574088853,1.90329907,-0.502258547,0.502258547,0.61604496,0.61604496,0.140159046,4.285514604,137.836881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8903204,2.598582933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104840742,132.4940529,113.9951611,135.0926359,560.3600105,0,0.644804471,49.84898305,-0.644804471,130.1510169,0.972457113,0,658.9212394,135.0926359,747.3366677,7,10,13% -2018-07-11 19:00:00,22.51593987,129.3379819,947.1710388,889.8769398,125.1267192,841.5254318,713.0315695,128.4938623,121.3536869,7.140175377,233.4256166,0,233.4256166,3.773032251,229.6525843,0.392977285,2.257373631,-0.211403889,0.211403889,0.566305884,0.566305884,0.132105728,4.452608799,143.2112047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6497798,2.733549022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.225899918,137.6600573,119.8756797,140.3936063,713.0315695,0,0.801269858,36.74846344,-0.801269858,143.2515366,0.98759905,0,824.0649806,140.3936063,915.9497881,7,11,11% -2018-07-11 20:00:00,16.12968414,167.7759785,990.4081873,897.9957535,127.7617202,953.5423897,822.1670415,131.3753482,123.9092329,7.466115266,243.9884188,0,243.9884188,3.852487254,240.1359316,0.281516096,2.92824323,0.03912834,-0.03912834,0.523462349,0.523462349,0.128999055,4.367194044,140.4639726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1062678,2.791113901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.164017219,135.0193133,122.270285,137.8104272,822.1670415,0,0.915557828,23.7149294,-0.915557828,156.2850706,0.995388485,0,940.6458909,137.8104272,1030.840059,7,12,10% -2018-07-11 21:00:00,18.60322032,214.9076188,975.2917385,895.2214179,126.8452087,1007.572906,877.2003872,130.3725187,123.0203576,7.352161089,240.2956246,0,240.2956246,3.824851051,236.4707735,0.324687446,3.750845536,0.275414727,-0.275414727,0.483054997,0.483054997,0.130058734,4.045807565,130.1270787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2518471,2.771091566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931173808,125.0830976,121.1830209,127.8541892,877.2003872,0,0.97986975,11.51578251,-0.97986975,168.4842175,0.99897281,0,997.4823565,127.8541892,1081.160366,7,13,8% -2018-07-11 22:00:00,27.62639717,242.5545903,902.8868649,880.941191,122.3817469,997.4686962,871.970868,125.4978282,118.6914857,6.806342569,222.6056349,0,222.6056349,3.690261209,218.9153737,0.482171591,4.233376217,0.518961457,-0.518961457,0.441406054,0.441406054,0.135544941,3.519700206,113.2056575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0907707,2.673581684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550010818,108.817584,116.6407815,111.4911657,871.970868,0,0.989817342,8.183468696,-0.989817342,171.8165313,0.999485629,0,988.1631333,111.4911657,1061.131871,7,14,7% -2018-07-11 23:00:00,38.77943697,257.9172828,778.369475,851.7734758,114.3585607,921.4678548,804.6899487,116.7779061,110.9102282,5.867677887,192.1730234,0,192.1730234,3.448332545,188.7246909,0.676828857,4.501505782,0.795771588,-0.795771588,0.394068733,0.394068733,0.146920665,2.834631519,91.17149364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.61113,2.49830519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053680886,87.63750757,108.6648109,90.13581276,804.6899487,0,0.944722948,19.13952698,-0.944722948,160.860473,0.997074431,0,911.0005832,90.13581276,969.99267,7,15,6% -2018-07-11 00:00:00,50.52561329,268.5604795,610.8422127,799.5110671,102.5664735,781.8005548,677.7220523,104.0785025,99.47371591,4.60478662,151.1985242,0,151.1985242,3.092757606,148.1057665,0.881838309,4.687264608,1.151049632,-1.151049632,0.33331261,0.33331261,0.167909931,2.050309069,65.94498756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.6179194,2.240692358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.485441941,63.38883038,97.10336134,65.62952274,677.7220523,0,0.847670633,32.04078874,-0.847670633,147.9592113,0.991014826,0,768.7359629,65.62952274,811.6891729,7,16,6% -2018-07-11 01:00:00,62.33214524,277.3825027,413.2955102,704.7482731,86.04901038,583.6386842,497.0687728,86.56991136,83.45431523,3.115596132,102.8029766,0,102.8029766,2.59469515,100.2082814,1.087901164,4.841237959,1.693614742,-1.693614742,0.240528511,0.240528511,0.208202142,1.242038946,39.94824199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.21946214,1.879847803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899852989,38.39976971,81.11931513,40.27961751,497.0687728,0,0.705313928,45.14508859,-0.705313928,134.8549114,0.979109581,0,567.8041129,40.27961751,594.166317,7,17,5% -2018-07-11 02:00:00,73.90440233,285.6628189,204.3115075,516.2674112,61.18110154,333.2110424,272.3345904,60.87645204,59.33626559,1.540186445,51.38252638,0,51.38252638,1.844835946,49.53769044,1.289875152,4.98575674,2.815652707,-2.815652707,0.048648718,0.048648718,0.299450101,0.513699857,16.52235323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.03627545,1.336577363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372173798,15.88191438,57.40844925,17.21849175,272.3345904,0,0.527506839,58.16284373,-0.527506839,121.8371563,0.955214499,0,317.5463986,17.21849175,328.815557,7,18,4% -2018-07-11 03:00:00,84.93062514,294.1467669,26.99476633,120.8964488,16.31212752,55.61641606,39.59266142,16.02375464,15.82025669,0.203497951,7.037064461,0,7.037064461,0.49187083,6.545193631,1.482319044,5.133829566,8.08890858,-8.08890858,0,0,0.604270002,0.122967707,3.955064172,0.460372785,1,0.123001977,0,0.948591,0.987352963,0.724496596,1,15.33786558,0.356358742,0.064637361,0.312029739,0.833108652,0.557605248,0.961238037,0.922476074,0.084163958,3.80175812,15.42202954,4.158116862,21.36527763,0,0.327492344,70.88335853,-0.327492344,109.1166415,0.897324675,0,34.59362035,4.158116862,37.31502467,7,19,8% -2018-07-11 04:00:00,95.4753405,303.4065725,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666359046,5.295443662,-6.219130242,6.219130242,1,0.406312402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113296178,83.49463908,-0.113296178,96.50536092,0.608678844,0,0,0,0,7,20,0% -2018-07-11 05:00:00,104.7280128,313.9604029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827848642,5.479642751,-1.670011816,1.670011816,1,0.81574253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093687858,95.37580275,0.093687858,84.62419725,0,0.516312911,0,0,0,7,21,0% -2018-07-11 06:00:00,112.3394387,326.2467245,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960693086,5.694079517,-0.578538854,0.578538854,1,0.629089661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281960791,106.3772658,0.281960791,73.62273422,0,0.87267038,0,0,0,7,22,0% -2018-07-11 07:00:00,117.6733321,340.4304144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053787087,5.941631605,0.014324595,-0.014324595,1,0.52770404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438696727,116.0207567,0.438696727,63.97924327,0,0.936026047,0,0,0,7,23,0% -2018-07-12 08:00:00,120.0990598,356.0812635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096124021,6.214790452,0.477868926,-0.477868926,1,0.44843329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553217593,123.5880345,0.553217593,56.41196547,0,0.959619649,0,0,0,7,0,0% -2018-07-12 09:00:00,119.2596151,12.07027187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081472949,0.210665986,0.947722377,-0.947722377,1,0.368083618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617720574,128.1498691,0.617720574,51.8501309,0,0.969057253,0,0,0,7,1,0% -2018-07-12 10:00:00,115.2843082,27.07695008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012090754,0.47258193,1.550225743,-1.550225743,1,0.265049474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627809796,128.8887175,0.627809796,51.11128252,0,0.970358044,0,0,0,7,2,0% -2018-07-12 11:00:00,108.7067618,40.30656276,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897290913,0.70348223,2.565431913,-2.565431913,1,0.091438994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582796048,125.647443,0.582796048,54.35255698,0,0.964206693,0,0,0,7,3,0% -2018-07-12 12:00:00,100.1868834,51.67124079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748590983,0.90183328,5.282747029,-5.282747029,1,0,#DIV/0!,0,0,0.27180008,1,0.187081861,0,0.94061371,0.979375673,0.724496596,1,0,0,0.041193652,0.312029739,0.889831915,0.614328511,0.961238037,0.922476074,0,0,0,0,0,0,-0.485744153,119.0612388,0.485744153,60.93876121,0,0.947065153,0,0,0,7,4,0% -2018-07-12 13:00:00,89.77712768,61.51136416,0.045009074,0.546238513,0.04288429,0.041930468,0,0.041930468,0.04159117,0.000339297,0.19498599,0.1827799,0.012206091,0.00129312,0.010912971,1.566906471,1.073575832,-254.2613973,254.2613973,0,0,0.952792104,0.00032328,0.010397793,1,0.976750357,0,0.00393294,0.961238037,1,0.713404473,0.988907877,0.039979015,0.0009308,0.115824807,0.299425185,0.724496596,0.448993192,0.963216717,0.924454754,0.000234215,0.010005957,0.04021323,0.010936757,0,0.004249567,-0.334615549,109.5491614,0.334615549,70.45083863,0,0.900574786,0.04021323,0.014763811,0.049875849,7,5,24% -2018-07-12 14:00:00,79.41541546,70.31960411,107.4564576,352.6573206,42.67793303,42.20108806,0,42.20108806,41.39103589,0.810052167,85.03081751,57.68985813,27.34095938,1.286897146,26.05406223,1.386060477,1.22730862,-5.351332048,5.351332048,0.554714633,0.554714633,0.397164898,0.592606908,19.06027523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.78663808,0.932352601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.429341687,18.32146154,40.21597977,19.25381414,0,57.68985813,-0.163586164,99.41511168,0.163586164,80.58488832,0,0.744350678,40.21597977,62.19529915,80.92155916,7,6,101% -2018-07-12 15:00:00,68.060894,78.63757186,310.4384123,629.0452361,75.41392086,99.02878684,23.54865806,75.48012878,73.1399129,2.340215882,77.54339516,0,77.54339516,2.274007962,75.2693872,1.187886692,1.372484545,-2.454522121,2.454522121,0.949901693,0.949901693,0.242927157,2.251456016,72.41456481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.30486629,1.647511027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.631172219,69.60763411,71.93603851,71.25514514,23.54865806,0,0.037435556,87.85459935,-0.037435556,92.14540065,0,0,71.93603851,71.25514514,118.5711059,7,7,65% -2018-07-12 16:00:00,56.34005768,87.10333682,516.429242,759.8602747,95.2670795,285.3015589,189.0140716,96.28748732,92.39442556,3.893061767,128.0869027,0,128.0869027,2.872653945,125.2142487,0.983319507,1.520240017,-1.435298351,1.435298351,0.775604163,0.775604163,0.184472667,3.180627811,102.2999237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.81303624,2.081228004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.304354022,98.33457786,91.11739026,100.4158059,189.0140716,0,0.248748458,75.59653526,-0.248748458,104.4034647,0.848993729,0,251.5891517,100.4158059,317.3092883,7,8,26% -2018-07-12 17:00:00,44.52735304,96.6685063,700.48481,829.4193778,109.1786695,489.0463338,377.8792537,111.1670801,105.8865297,5.280550384,173.1327918,0,173.1327918,3.29213971,169.8406521,0.777148918,1.687183718,-0.878995175,0.878995175,0.680470717,0.680470717,0.15586158,3.856243668,124.0300521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.78216,2.385144013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79383541,119.2224038,104.5759954,121.6075478,377.8792537,0,0.455594918,62.89678115,-0.455594918,117.1032189,0.940253385,0,459.8782429,121.6075478,539.4679508,7,9,17% -2018-07-12 18:00:00,32.9993109,109.2239848,847.3591231,868.4608271,119.0008992,680.9118807,559.1115466,121.8003341,115.4125831,6.387750996,209.040346,0,209.040346,3.588316179,205.4520298,0.575946626,1.906318156,-0.503069727,0.503069727,0.61618368,0.61618368,0.140437385,4.280341492,137.670496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9389648,2.599722856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10109284,132.3341173,114.0400576,134.9338401,559.1115466,0,0.643795931,49.92454158,-0.643795931,130.0754584,0.972335638,0,657.6841402,134.9338401,745.9956399,7,10,13% -2018-07-12 19:00:00,22.64029275,129.5181731,946.0639741,889.4025364,125.1990315,840.51684,711.9611913,128.5556487,121.4238188,7.131829856,233.1593764,0,233.1593764,3.775212736,229.3841637,0.395147652,2.260518563,-0.211572722,0.211572722,0.566334756,0.566334756,0.13233675,4.448297759,143.0725469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7171932,2.735128776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222776584,137.5267741,119.9399698,140.2619029,711.9611913,0,0.800493772,36.82271997,-0.800493772,143.17728,0.987538552,0,823.0290939,140.2619029,914.827704,7,11,11% -2018-07-12 20:00:00,16.27217387,167.7617996,989.4633198,897.5721962,127.8465314,952.722596,821.2721168,131.4504792,123.9914867,7.458992456,243.7618821,0,243.7618821,3.855044624,239.9068375,0.28400301,2.927995762,0.039421653,-0.039421653,0.52341219,0.52341219,0.129207954,4.363444394,140.343371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1853333,2.792966707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16130061,134.9033864,122.3466339,137.6963531,821.2721168,0,0.914992822,23.79529229,-0.914992822,156.2047077,0.995354763,0,939.8037468,137.6963531,1029.923256,7,12,10% -2018-07-12 21:00:00,18.71103174,214.614971,974.4551207,894.8114738,126.9357493,1006.903667,876.4496443,130.4540224,123.1081681,7.345854311,240.095507,0,240.095507,3.827581184,236.2679259,0.32656911,3.745737868,0.276131731,-0.276131731,0.482932383,0.482932383,0.13026331,4.042330495,130.0152441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3362538,2.773069538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928654683,124.975598,121.2649085,127.7486676,876.4496443,0,0.979479667,11.62720419,-0.979479667,168.3727958,0.998952488,0,996.7964613,127.7486676,1080.405409,7,13,8% -2018-07-12 22:00:00,27.69602389,242.2854765,902.0967039,880.5093878,122.4709028,996.8896986,871.3113594,125.5783392,118.7779532,6.800386001,222.4167396,0,222.4167396,3.692949588,218.72379,0.483386807,4.228679294,0.520172244,-0.520172244,0.441198997,0.441198997,0.135762499,3.516229466,113.0940266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1738865,2.675529405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.547496278,108.7102801,116.7213828,111.3858095,871.3113594,0,0.989553742,8.288898014,-0.989553742,171.711102,0.999472173,0,987.5728408,111.3858095,1060.472625,7,14,7% -2018-07-12 23:00:00,38.83276753,257.7051062,777.5615231,851.2725443,114.4376775,920.8996957,804.0511492,116.8485465,110.9869593,5.861587204,191.9795118,0,191.9795118,3.450718206,188.5287936,0.677759651,4.497802602,0.797694879,-0.797694879,0.393739831,0.393739831,0.147175078,2.830948607,91.05303851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6848869,2.500033594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.051012629,87.52364399,108.7358995,90.02367758,804.0511492,0,0.944528465,19.17348421,-0.944528465,160.8265158,0.997063533,0,910.425979,90.02367758,969.3446755,7,15,6% -2018-07-12 00:00:00,50.57445866,268.3857383,609.9564951,798.8563289,102.6228763,781.143669,677.0171413,104.1265276,99.52841793,4.598109707,150.9854724,0,150.9854724,3.094458358,147.8910141,0.882690821,4.6842148,1.154226752,-1.154226752,0.33276929,0.33276929,0.168246223,2.046289115,65.815692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.67050106,2.241924547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482529498,63.26454657,97.15303056,65.50647112,677.0171413,0,0.847482979,32.0610494,-0.847482979,147.9389506,0.991001765,0,768.0782125,65.50647112,810.9508877,7,16,6% -2018-07-12 01:00:00,62.38284563,277.2306851,412.2879797,703.7460736,86.05850405,582.7620325,496.1905089,86.57152358,83.46352263,3.108000942,102.5589754,0,102.5589754,2.594981419,99.96399398,1.088786053,4.838588242,1.699588531,-1.699588531,0.239506933,0.239506933,0.208733963,1.237754118,39.8104272,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22831265,1.880055205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896748645,38.26729688,81.12506129,40.14735209,496.1905089,0,0.705070376,45.16477008,-0.705070376,134.8352299,0.979085093,0,566.9377919,40.14735209,593.2134309,7,17,5% -2018-07-12 02:00:00,73.96105869,285.5251498,203.1956282,514.3730839,61.07917122,331.9207893,271.151606,60.76918332,59.23740885,1.531774476,51.10889494,0,51.10889494,1.84176237,49.26713257,1.290863992,4.983353961,2.831005717,-2.831005717,0.046023199,0.046023199,0.30059294,0.509746805,16.3952095,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.94125059,1.334350568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369309825,15.75969899,57.31056041,17.09404956,271.151606,0,0.527149679,58.18692837,-0.527149679,121.8130716,0.955150279,0,316.3010925,17.09404956,327.488806,7,18,4% -2018-07-12 03:00:00,84.9953087,294.018195,26.23631409,117.7052316,15.96802637,54.17295907,38.4886472,15.68431188,15.48653146,0.197780418,6.842793015,0,6.842793015,0.481494911,6.361298104,1.483447986,5.131585564,8.211825547,-8.211825547,0,0,0.608623083,0.120373728,3.871632865,0.466425117,1,0.121178953,0,0.948804307,0.98756627,0.724496596,1,15.01398654,0.348841424,0.065332402,0.312029739,0.831493569,0.555990165,0.961238037,0.922476074,0.082394838,3.721560774,15.09638138,4.070402198,20.53657543,0,0.326991814,70.91370781,-0.326991814,109.0862922,0.897090973,0,33.51955783,4.070402198,36.18355466,7,19,8% -2018-07-12 04:00:00,95.55426545,303.2849601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667736546,5.293321126,-6.147723983,6.147723983,1,0.418523591,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112560412,83.53706674,-0.112560412,96.46293326,0.605794093,0,0,0,0,7,20,0% -2018-07-12 05:00:00,104.8223002,313.8468236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829494268,5.477660419,-1.66563153,1.66563153,1,0.814993457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094657502,95.43160726,0.094657502,84.56839274,0,0.521779847,0,0,0,7,21,0% -2018-07-12 06:00:00,112.4509218,326.1464687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962638833,5.692329722,-0.579464349,0.579464349,1,0.629247929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28317444,106.4497569,0.28317444,73.55024308,0,0.873430391,0,0,0,7,22,0% -2018-07-12 07:00:00,117.8015251,340.3533136,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056024477,5.940285942,0.011694951,-0.011694951,1,0.528153735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440147808,116.1133123,0.440147808,63.88668774,0,0.936401797,0,0,0,7,23,0% -2018-07-13 08:00:00,120.2397389,356.0384597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098579336,6.214043386,0.473944518,-0.473944518,1,0.449104404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554883271,123.7026752,0.554883271,56.29732485,0,0.959890958,0,0,0,7,0,0% -2018-07-13 09:00:00,119.405294,12.06709577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084015525,0.210610552,0.942013484,-0.942013484,1,0.369059896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619563307,128.2842519,0.619563307,51.71574813,0,0.969297997,0,0,0,7,1,0% -2018-07-13 10:00:00,115.4273181,27.10918134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.014586748,0.473144472,1.541064734,-1.541064734,1,0.266616099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629779911,129.0338866,0.629779911,50.96611337,0,0.970607185,0,0,0,7,2,0% -2018-07-13 11:00:00,108.8421346,40.36484275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899653614,0.704499408,2.547092392,-2.547092392,1,0.094575237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584835153,125.7913452,0.584835153,54.20865479,0,0.964505823,0,0,0,7,3,0% -2018-07-13 12:00:00,100.3127845,51.7472193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750788372,0.903159356,5.219153037,-5.219153037,1,0,#DIV/0!,0,0,0.265987191,1,0.189307644,0,0.940320076,0.979082039,0.724496596,1,0,0,0.040411388,0.312029739,0.891799685,0.616296281,0.961238037,0.922476074,0,0,0,0,0,0,-0.487789163,119.195373,0.487789163,60.80462704,0,0.947496698,0,0,0,7,4,0% -2018-07-13 13:00:00,89.87499563,61.60020357,0.021037983,0.403155108,0.020158405,0.019709148,0,0.019709148,0.019550555,0.000158593,0.141289927,0.135581174,0.005708753,0.00060785,0.005100903,1.568614589,1.075126372,-453.4327179,453.4327179,0,0,0.958190953,0.000151963,0.004887639,1,0.987025071,0,0.002205395,0.961238037,1,0.718261838,0.993765242,0.018792737,0.000438769,0.115824807,0.30494452,0.724496596,0.448993192,0.962354283,0.92359232,0.000110096,0.004701182,0.018902833,0.00513995,0,0.001759156,-0.336300276,109.6516265,0.336300276,70.34837353,0,0.901323345,0.018902833,0.006725519,0.023304551,7,5,23% -2018-07-13 14:00:00,79.52348917,70.41986759,105.5802139,348.180795,42.26966029,41.79098233,0,41.79098233,40.99507408,0.79590825,84.47777285,57.60404139,26.87373145,1.274586216,25.59914524,1.387946719,1.229058548,-5.407743994,5.407743994,0.545067622,0.545067622,0.400355888,0.578786452,18.61576186,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.40602453,0.923433375,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419328814,17.89417839,39.82535334,18.81761176,0,57.60404139,-0.165442903,99.52296455,0.165442903,80.47703545,0,0.747780931,39.82535334,61.89281548,80.33296321,7,6,102% -2018-07-13 15:00:00,68.16385293,78.75061693,308.4647651,626.9281714,75.27661888,97.7365219,22.40443313,75.33208877,73.00675108,2.325337695,77.06072138,0,77.06072138,2.2698678,74.79085358,1.189683665,1.374457553,-2.466561853,2.466561853,0.951960609,0.951960609,0.244036361,2.240890655,72.07474648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17686608,1.644511494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623517651,69.28098781,71.80038373,70.92549931,22.40443313,0,0.035736842,87.95199369,-0.035736842,92.04800631,0,0,71.80038373,70.92549931,118.2197045,7,7,65% -2018-07-13 16:00:00,56.44016184,87.23309285,514.6327846,758.6707803,95.23383262,283.8272395,187.585539,96.2417005,92.36218119,3.879519312,127.6503283,0,127.6503283,2.871651429,124.7786768,0.985066654,1.522504687,-1.439740665,1.439740665,0.776363844,0.776363844,0.185052013,3.172469797,102.037534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.78204172,2.080501685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298443569,98.08235885,91.08048529,100.1628605,187.585539,0,0.247255521,75.68483272,-0.247255521,104.3151673,0.847780046,0,250.1117623,100.1628605,315.6663512,7,8,26% -2018-07-13 17:00:00,44.62855867,96.82152221,698.9158053,828.6333487,109.1973594,487.6497913,376.4764126,111.1733787,105.9046561,5.268722564,172.752932,0,172.752932,3.29270328,169.4602288,0.778915289,1.689854349,-0.880919913,0.880919913,0.680799867,0.680799867,0.156238217,3.849703452,123.8196963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7995837,2.385552318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789097046,119.0202018,104.5886808,121.4057541,376.4764126,0,0.454334131,62.97790076,-0.454334131,117.0220992,0.939948836,0,458.4572466,121.4057541,537.9148845,7,9,17% -2018-07-13 18:00:00,33.10831341,109.4070474,846.0168161,867.8745955,119.0507996,679.6880588,557.8494479,121.8386108,115.4609787,6.377632119,208.7163928,0,208.7163928,3.589820858,205.1265719,0.577849079,1.909513202,-0.503847548,0.503847548,0.616316695,0.616316695,0.140719188,4.274979731,137.4980433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9854845,2.600812991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.097208263,132.1683492,114.0826928,134.7691622,557.8494479,0,0.642776561,50.00082637,-0.642776561,129.9991736,0.972212472,0,656.4308833,134.7691622,744.6346046,7,10,13% -2018-07-13 19:00:00,22.76841392,129.7104611,944.9220405,888.9207009,125.2690261,839.4919532,710.8770289,128.6149242,121.4917027,7.123221478,232.884612,0,232.884612,3.77732333,229.1072887,0.397383788,2.263874621,-0.211690509,0.211690509,0.566354899,0.566354899,0.132570753,4.443775818,142.9271057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7824458,2.736657894,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219500453,137.3869705,120.0019463,140.1236284,710.8770289,0,0.799708037,36.89776901,-0.799708037,143.102231,0.987477182,0,821.9767916,140.1236284,913.6849039,7,11,11% -2018-07-13 20:00:00,16.42047741,167.7579494,988.4778921,897.1408275,127.9287431,951.8832164,820.360433,131.5227834,124.0712195,7.451563886,243.5254328,0,243.5254328,3.857523612,239.6679092,0.286591396,2.927928563,0.039781677,-0.039781677,0.523350622,0.523350622,0.129419934,4.359452153,140.2149668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2619755,2.794762725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158408245,134.7799594,122.4203837,137.5747221,820.360433,0,0.914416564,23.87699317,-0.914416564,156.1230068,0.995320326,0,938.941797,137.5747221,1028.981701,7,12,10% -2018-07-13 21:00:00,18.82560305,214.3210961,973.5699681,894.3921322,127.023201,1006.208295,875.6761307,130.5321645,123.1929828,7.339181657,239.8835285,0,239.8835285,3.830218176,236.0533104,0.328568757,3.740608784,0.276934017,-0.276934017,0.482795183,0.482795183,0.130471569,4.038573377,129.8944023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.417781,2.77498003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925932664,124.8594403,121.3437136,127.6344203,875.6761307,0,0.979074054,11.74195571,-0.979074054,168.2580443,0.99893134,0,996.0840443,127.6344203,1079.61822,7,13,8% -2018-07-13 22:00:00,27.77160612,242.0100783,901.2483301,880.0649935,122.5562698,996.2748353,870.6200986,125.6547367,118.8607461,6.793990601,222.2136156,0,222.2136156,3.695523719,218.5180919,0.484705965,4.223872689,0.521495009,-0.521495009,0.440972791,0.440972791,0.135985017,3.512439574,112.9721306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2534702,2.677394355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.544750514,108.5931091,116.7982207,111.2705034,870.6200986,0,0.989267957,8.401715964,-0.989267957,171.598284,0.999457577,0,986.9460746,111.2705034,1059.770394,7,14,7% -2018-07-13 23:00:00,38.89141993,257.4867642,776.6847365,850.7530194,114.5120326,920.2828712,803.3688213,116.9140499,111.0590723,5.854977617,191.7691668,0,191.7691668,3.452960287,188.3162065,0.678783329,4.493991815,0.799774349,-0.799774349,0.393384221,0.393384221,0.147436955,2.826910857,90.9231706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7542046,2.501657974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.048087293,87.39881002,108.8022919,89.90046799,803.3688213,0,0.944303227,19.21273916,-0.944303227,160.7872608,0.997050906,0,909.8019033,89.90046799,968.6399616,7,15,6% -2018-07-13 00:00:00,50.62834936,268.2056121,608.9913571,798.1710762,102.6730555,780.4220997,676.2541815,104.1679182,99.57708408,4.590834089,150.7529766,0,150.7529766,3.095971447,147.6570052,0.883631391,4.681071004,1.157645001,-1.157645001,0.332184735,0.332184735,0.168595259,2.041889253,65.67417734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.71728081,2.243020774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479341813,63.12851729,97.19662263,65.37153807,676.2541815,0,0.847254682,32.08568278,-0.847254682,147.9143172,0.990985868,0,767.3549594,65.37153807,810.1393236,7,16,6% -2018-07-13 01:00:00,62.43854321,277.0741648,411.1920252,702.686593,86.05909608,581.80026,495.236424,86.56383598,83.46409681,3.099739174,102.2932664,0,102.2932664,2.594999271,99.69826712,1.089758159,4.835856449,1.706007005,-1.706007005,0.238409309,0.238409309,0.209291744,1.233088498,39.6603648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22886457,1.880068138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.893368419,38.1230512,81.12223298,40.00311934,495.236424,0,0.704775684,45.18857528,-0.704775684,134.8114247,0.979055441,0,565.9861485,40.00311934,592.16739,7,17,5% -2018-07-13 02:00:00,74.02280457,285.3833185,201.9885344,512.3505429,60.96162012,330.517054,269.8709768,60.64607724,59.12340235,1.522674893,50.81267648,0,50.81267648,1.838217771,48.97445871,1.291941661,4.980878539,2.847553525,-2.847553525,0.043193357,0.043193357,0.301807329,0.505474184,16.25778732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83166321,1.331782518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366214326,15.62760356,57.19787753,16.95938608,269.8709768,0,0.526731123,58.21514513,-0.526731123,121.7848549,0.955074909,0,314.944876,16.95938608,326.044455,7,18,4% -2018-07-13 03:00:00,85.06514568,293.8859253,25.43016213,114.3126106,15.59664765,52.63228395,37.31422947,15.31805448,15.12635118,0.191703304,6.636133701,0,6.636133701,0.470296472,6.165837229,1.484666871,5.129277022,8.347183448,-8.347183448,0,0,0.613312946,0.117574118,3.781587795,0.472934877,1,0.119232637,0,0.949031198,0.987793161,0.724496596,1,14.66441172,0.340728193,0.066076293,0.312029739,0.829769232,0.554265828,0.961238037,0.922476074,0.080486655,3.635006028,14.74489838,3.975734221,19.66702896,0,0.326422686,70.94820968,-0.326422686,109.0517903,0.896824372,0,32.38276928,3.975734221,34.98480781,7,19,8% -2018-07-13 04:00:00,95.63880289,303.1601324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669212003,5.291142471,-6.072646298,6.072646298,1,0.431362632,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111745071,83.58407893,-0.111745071,96.41592107,0.602552972,0,0,0,0,7,20,0% -2018-07-13 05:00:00,104.9225333,313.7306578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831243665,5.475632944,-1.660752152,1.660752152,1,0.814159034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095712866,95.49235099,0.095712866,84.50764901,0,0.527604191,0,0,0,7,21,0% -2018-07-13 06:00:00,112.5686595,326.0445669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964693742,5.690551201,-0.580261141,0.580261141,1,0.629384189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284477487,106.527618,0.284477487,73.47238201,0,0.874239167,0,0,0,7,22,0% -2018-07-13 07:00:00,117.9361372,340.2759615,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058373901,5.938935894,0.009082774,-0.009082774,1,0.528600444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441689244,116.2117113,0.441689244,63.78828867,0,0.93679824,0,0,0,7,23,0% -2018-07-14 08:00:00,120.3867057,355.997187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10114439,6.213323041,0.469981874,-0.469981874,1,0.449782056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556637471,123.823574,0.556637471,56.17642605,0,0.96017493,0,0,0,7,0,0% -2018-07-14 09:00:00,119.5567578,12.06721482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086659067,0.21061263,0.936221737,-0.936221737,1,0.370050343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621490066,128.4250288,0.621490066,51.5749712,0,0.969548191,0,0,0,7,1,0% -2018-07-14 10:00:00,115.5753379,27.14599804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01717018,0.473787044,1.531766769,-1.531766769,1,0.268206145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631827198,129.1850589,0.631827198,50.81494111,0,0.970864439,0,0,0,7,2,0% -2018-07-14 11:00:00,108.9816666,40.42842375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902088907,0.705609106,2.528535988,-2.528535988,1,0.097748569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586942693,125.9403513,0.586942693,54.05964873,0,0.964812808,0,0,0,7,3,0% -2018-07-14 12:00:00,100.4420704,51.8288375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753044837,0.904583862,5.155523115,-5.155523115,1,0,#DIV/0!,0,0,0.260077388,1,0.191587673,0,0.940018148,0.978780111,0.724496596,1,0,0,0.039612128,0.312029739,0.893815202,0.618311798,0.961238037,0.922476074,0,0,0,0,0,0,-0.489892586,119.3335218,0.489892586,60.66647817,0,0.94793681,0,0,0,7,4,0% -2018-07-14 13:00:00,89.97466325,61.69488325,0.003507877,0.291196788,0.003379107,0.003303658,0,0.003303658,0.003277214,2.64439E-05,0.099382106,0.098429688,0.000952418,0.000101893,0.000850525,1.570354117,1.076778844,-2237.655074,2237.655074,0,0,0.963291174,2.54731E-05,0.000819304,1,0.997383512,0,0.000446896,0.961238037,1,0.723230136,0.99873354,0.003150183,7.37652E-05,0.115824807,0.310590465,0.724496596,0.448993192,0.961465617,0.922703654,1.84552E-05,0.000787649,0.003168638,0.000861414,0,0.00025754,-0.338017767,109.7561517,0.338017767,70.24384832,0,0.902078782,0.003168638,0.001093736,0.003884467,7,5,23% -2018-07-14 14:00:00,79.63381352,70.52620753,103.6732418,343.5936583,41.84746211,41.36713941,0,41.36713941,40.58560672,0.781532688,83.89436647,57.49573333,26.39863315,1.261855383,25.13677776,1.389872242,1.23091453,-5.466509495,5.466509495,0.53501813,0.53501813,0.403647666,0.564819126,18.16652466,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.01242893,0.91420993,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.409209534,17.4623545,39.42163847,18.37656443,0,57.49573333,-0.167336422,99.63298895,0.167336422,80.36701105,0,0.751200734,39.42163847,61.56740151,79.7162714,7,6,102% -2018-07-14 15:00:00,68.26878563,78.87013442,306.4551719,624.7669948,75.13338788,96.42667993,21.24865237,75.17802755,72.86783902,2.310188533,76.5691533,0,76.5691533,2.265548857,74.30360444,1.191515086,1.376543527,-2.47890391,2.47890391,0.954071225,0.954071225,0.245169261,2.230097874,71.72761355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.04333853,1.641382435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615698319,68.94731044,71.65903685,70.58869288,21.24865237,0,0.034010523,88.05096469,-0.034010523,91.94903531,0,0,71.65903685,70.58869288,117.8579246,7,7,64% -2018-07-14 16:00:00,56.54212533,87.36999647,512.803556,757.461289,95.19716384,282.3331665,186.1408185,96.19234793,92.32661811,3.865729814,127.2057049,0,127.2057049,2.87054573,124.3351592,0.986846253,1.524894106,-1.444242233,1.444242233,0.777133657,0.777133657,0.185640608,3.164125756,101.7691609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.74785714,2.07970061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292398339,97.82438846,91.04025548,99.90408907,186.1408185,0,0.245743012,75.77425234,-0.245743012,104.2257477,0.846535415,0,248.6150505,99.90408907,314.0002787,7,8,26% -2018-07-14 17:00:00,44.73175225,96.98279475,697.3159487,827.8357633,109.2135112,486.2360628,375.0590798,111.176983,105.9203209,5.256662169,172.3655153,0,172.3655153,3.293190317,169.072325,0.780716357,1.692669086,-0.88283732,0.88283732,0.681127763,0.681127763,0.156619838,3.842985284,123.6036169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8146413,2.385905174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784229757,118.8124981,104.5988711,121.1984033,375.0590798,0,0.453059769,63.05983431,-0.453059769,116.9401657,0.939639285,0,457.0191167,121.1984033,536.3410476,7,9,17% -2018-07-14 18:00:00,33.21982449,109.6000762,844.6430012,867.2799652,119.0984333,678.4488799,556.574428,121.8744519,115.5071761,6.367275722,208.3847318,0,208.3847318,3.591257192,204.7934746,0.579795314,1.91288219,-0.50459003,0.50459003,0.616443667,0.616443667,0.141004464,4.269429154,137.3195176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0298912,2.60185361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093186888,131.9967436,114.1230781,134.5985972,556.574428,0,0.641747129,50.07777776,-0.641747129,129.9222222,0.972087692,0,655.1622293,134.5985972,743.2543191,7,10,13% -2018-07-14 19:00:00,22.90025566,129.914631,943.7451497,888.4313596,125.33669,838.4510567,709.7793808,128.671676,121.5573264,7.114349578,232.6013015,0,232.6013015,3.779363647,228.8219379,0.399684861,2.267438057,-0.211755737,0.211755737,0.566366053,0.566366053,0.132807771,4.439041186,142.7748236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8455258,2.738136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.216070228,137.2405912,120.061596,139.9787273,709.7793808,0,0.79891302,36.97357156,-0.79891302,143.0264284,0.987414964,0,820.9083778,139.9787273,912.5216553,7,11,11% -2018-07-14 20:00:00,16.5745256,167.7644035,987.4514305,896.7015067,128.0083195,951.0240773,819.4318549,131.5922224,124.1483964,7.443825984,243.2789548,0,243.2789548,3.859923134,239.4190316,0.289280044,2.928041209,0.040209668,-0.040209668,0.523277431,0.523277431,0.129635054,4.355214259,140.0786615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.3361608,2.796501171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155337905,134.6489376,122.4914987,137.4454388,819.4318549,0,0.913829015,23.96002475,-0.913829015,156.0399752,0.995285169,0,938.059871,137.4454388,1028.015162,7,12,10% -2018-07-14 21:00:00,18.94693659,214.0266075,972.6354861,893.9631824,127.107507,1005.486179,874.8792954,130.6068838,123.2747467,7.332137137,239.6594947,0,239.6594947,3.832760312,235.8267344,0.330686427,3.735468988,0.277822744,-0.277822744,0.482643202,0.482643202,0.1306836,4.034532297,129.7644273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4963755,2.776821799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.923004915,124.7345033,121.4193804,127.5113251,874.8792954,0,0.978652491,11.86005944,-0.978652491,168.1399406,0.998909342,0,995.3444815,127.5113251,1078.798094,7,13,8% -2018-07-14 22:00:00,27.85320748,241.7288019,900.3407161,879.6077084,122.6377722,995.6231066,869.8961672,125.7269395,118.9397908,6.787148624,221.9960117,0,221.9960117,3.697981316,218.2980304,0.486130178,4.218963491,0.522930981,-0.522930981,0.440727225,0.440727225,0.136212625,3.508326247,112.8398319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3294511,2.679174875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541770423,108.4659385,116.8712215,111.1451134,869.8961672,0,0.988959236,8.521922608,-0.988959236,171.4780774,0.999441799,0,986.2818116,111.1451134,1059.024065,7,14,7% -2018-07-14 23:00:00,38.95546475,257.2624971,775.7379618,850.2144643,114.5815312,919.616068,802.6417524,116.9743157,111.1264753,5.847840429,191.5417059,0,191.5417059,3.455055926,188.08665,0.679901121,4.490077616,0.802011595,-0.802011595,0.393001629,0.393001629,0.14770649,2.822514146,90.78175726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8189949,2.503176257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.04490189,87.26287813,108.8638968,89.76605439,802.6417524,0,0.944046221,19.25743651,-0.944046221,160.7425635,0.997036492,0,909.1270136,89.76605439,967.8771009,7,15,6% -2018-07-14 00:00:00,50.6873489,268.0202664,607.9456404,797.4546205,102.716891,779.6343011,675.4317523,104.2025488,99.61959774,4.582951035,150.5007523,0,150.5007523,3.097293248,147.4034591,0.884661127,4.67783611,1.16130713,-1.16130713,0.331558474,0.331558474,0.168957361,2.037106108,65.52033495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.75814657,2.243978415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475876441,62.98063814,97.23402301,65.22461655,675.4317523,0,0.846984562,32.11480716,-0.846984562,147.8851928,0.990967047,0,766.5646319,65.22461655,809.252839,7,16,6% -2018-07-14 01:00:00,62.49929094,276.9130707,410.0066294,701.5685733,86.05061246,580.7516426,494.2049704,86.54667216,83.455869,3.09080316,102.0055977,0,102.0055977,2.594743459,99.4108542,1.090818407,4.833044825,1.712877046,-1.712877046,0.237234463,0.237234463,0.209876149,1.22804025,39.49799581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22095568,1.879882803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889710981,37.96697595,81.11066666,39.84685875,494.2049704,0,0.704428604,45.21659973,-0.704428604,134.7834003,0.979020486,0,564.9474569,39.84685875,591.0264291,7,17,5% -2018-07-14 02:00:00,74.08968074,285.2374339,200.6896375,510.1969778,60.82810089,328.9979373,268.4911449,60.50679248,58.99390922,1.512883259,50.4937178,0,50.4937178,1.834191674,48.65952612,1.293108871,4.978332371,2.865327999,-2.865327999,0.040153743,0.040153743,0.303095375,0.500883429,16.11013285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.70718948,1.328865624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.362888339,15.48567247,57.07007782,16.8145381,268.4911449,0,0.526249971,58.24757113,-0.526249971,121.7524289,0.954988118,0,313.475931,16.8145381,324.4807099,7,18,4% -2018-07-14 03:00:00,85.14015469,293.7500547,24.57842151,110.723333,15.19809221,50.9969933,36.07189713,14.92509618,14.73981365,0.185282523,6.417601409,0,6.417601409,0.458278555,5.959322854,1.485976025,5.126905632,8.495962783,-8.495962783,0,0,0.618351028,0.114569639,3.684953414,0.47990929,1,0.117163886,0,0.949271406,0.988033369,0.724496596,1,14.28923439,0.332021253,0.06686908,0.312029739,0.827936402,0.552432998,0.961238037,0.922476074,0.078440062,3.542117385,14.36767445,3.874138638,18.7606586,0,0.325784061,70.98691613,-0.325784061,109.0130839,0.896524106,0,31.18705713,3.874138638,33.72260339,7,19,8% -2018-07-14 04:00:00,95.72896799,303.0321793,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670785681,5.288909268,-5.99424736,5.99424736,1,0.44476964,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110849325,83.63572226,-0.110849325,96.36427774,0.598937263,0,0,0,0,7,20,0% -2018-07-14 05:00:00,105.0287129,313.6119913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833096849,5.473561822,-1.655382707,1.655382707,1,0.813240805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096854466,95.55806515,0.096854466,84.44193485,0,0.533761542,0,0,0,7,21,0% -2018-07-14 06:00:00,112.6926372,325.941104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966857562,5.688745433,-0.580926627,0.580926627,1,0.629497994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285870077,106.6108643,0.285870077,73.38913571,0,0.87509537,0,0,0,7,22,0% -2018-07-14 07:00:00,118.0771376,340.1984462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060834823,5.937582996,0.006492853,-0.006492853,1,0.529043346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44332078,116.3159527,0.44332078,63.6840473,0,0.937214851,0,0,0,7,23,0% -2018-07-15 08:00:00,120.539911,355.9575387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103818327,6.212631047,0.465987299,-0.465987299,1,0.450465168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558479536,123.9507126,0.558479536,56.04928742,0,0.960471205,0,0,0,7,0,0% -2018-07-15 09:00:00,119.7139382,12.0707215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089402382,0.210673833,0.93035588,-0.93035588,1,0.371053464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623499813,128.5721623,0.623499813,51.42783775,0,0.969807514,0,0,0,7,1,0% -2018-07-15 10:00:00,115.7282828,27.1874786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019839573,0.474511017,1.522345922,-1.522345922,1,0.269817204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633950294,129.3421732,0.633950294,50.65782683,0,0.971129463,0,0,0,7,2,0% -2018-07-15 11:00:00,109.1252632,40.49736133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904595139,0.706812294,2.509792281,-2.509792281,1,0.100953932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589117053,126.0943766,0.589117053,53.90562341,0,0.965127223,0,0,0,7,3,0% -2018-07-15 12:00:00,100.5746434,51.91612731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75535867,0.906107356,5.091965051,-5.091965051,1,0,#DIV/0!,0,0,0.254078486,1,0.193919925,0,0.939708117,0.97847008,0.724496596,1,0,0,0.03879671,0.312029739,0.895876663,0.620373259,0.961238037,0.922476074,0,0,0,0,0,0,-0.492052647,119.4755856,0.492052647,60.5244144,0,0.948384857,0,0,0,7,4,0% -2018-07-15 13:00:00,90.07614619,61.79541474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572125329,1.07853345,744.7425883,-744.7425883,1,0,#DIV/0!,0,0,0.992177008,1,0.001342745,0,0.961119437,0.999881401,0.724496596,1,0,0,0.115212273,0.312029739,0.725671896,0.450168492,0.961238037,0.922476074,0,0,0,0,0,0,-0.339768057,109.8627435,0.339768057,70.1372565,0,0.902840787,0,0,0,7,5,0% -2018-07-15 14:00:00,79.74629804,70.63861821,101.7376121,338.8975673,41.41143041,40.92966409,0,40.92966409,40.16272299,0.766941094,83.2796389,57.36346954,25.91616936,1.248707419,24.66746194,1.391835467,1.232876467,-5.527689259,5.527689259,0.524555774,0.524555774,0.407041502,0.550726062,17.71324328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.605937,0.904684274,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.398999157,17.02664319,39.00493616,17.93132747,0,57.36346954,-0.16926492,99.7450827,0.16926492,80.2549173,0,0.754605065,39.00493616,61.21809213,79.07095309,7,6,103% -2018-07-15 15:00:00,68.37561058,78.99610255,304.4111189,622.5621984,74.98430914,95.10079532,20.08276017,75.01803515,72.72325556,2.294779598,76.0690537,0,76.0690537,2.261053583,73.80800012,1.193379533,1.378742086,-2.491543675,2.491543675,0.956232752,0.956232752,0.246325789,2.219083433,71.37335126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.9043594,1.638125624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.607718393,68.60678005,71.5120778,70.24490567,20.08276017,0,0.032258239,88.15141835,-0.032258239,91.84858165,0,0,71.5120778,70.24490567,117.4859637,7,7,64% -2018-07-15 16:00:00,56.64587685,87.51400756,510.9426709,756.2320583,95.15713544,280.8206912,184.6811928,96.13949839,92.28779672,3.851701677,126.7533048,0,126.7533048,2.869338726,123.8839661,0.988657059,1.527407573,-1.448799043,1.448799043,0.777912918,0.777912918,0.18623838,3.155599256,101.4949194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71054054,2.078826139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286220919,97.56077705,90.99676146,99.63960319,184.6811928,0,0.24421233,75.86471034,-0.24421233,104.1352897,0.845260133,0,247.100411,99.63960319,312.3125385,7,8,26% -2018-07-15 17:00:00,44.83687445,97.15225636,695.6859491,827.0267184,109.2271604,484.8062042,373.6282712,111.177933,105.9335585,5.244374543,171.9707146,0,171.9707146,3.29360189,168.6771127,0.782551085,1.695626749,-0.884744685,0.884744685,0.681453942,0.681453942,0.15700642,3.836090679,123.3818627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8273658,2.386203357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779234638,118.5993395,104.6066004,120.9855428,373.6282712,0,0.451772915,63.14251066,-0.451772915,116.8574893,0.939324928,0,455.5649493,120.9855428,534.7475673,7,9,17% -2018-07-15 18:00:00,33.33379734,109.8029502,843.2379627,866.6769281,119.1438097,677.1950118,555.2871436,121.9078682,115.5511843,6.356683948,208.0454322,0,208.0454322,3.592625457,204.4528067,0.581784516,1.91642301,-0.505295257,0.505295257,0.616564268,0.616564268,0.141293223,4.263689427,137.1349083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0721935,2.602844914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.089028476,131.81929,114.161222,134.422135,555.2871436,0,0.640708349,50.15534041,-0.640708349,129.8446596,0.971961373,0,653.8788764,134.422135,741.8554752,7,10,13% -2018-07-15 19:00:00,23.03577475,130.1304568,942.5331728,887.9344288,125.402008,837.3943797,708.6684917,128.7258879,121.6206748,7.105213184,232.3094132,0,232.3094132,3.781333225,228.52808,0.402050115,2.271204928,-0.211766944,0.211766944,0.56636797,0.56636797,0.133047846,4.434091967,142.6156398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9064186,2.739563049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212484536,137.0875776,120.1189032,139.8271406,708.6684917,0,0.798109037,37.05009381,-0.798109037,142.9499062,0.987351918,0,819.8240981,139.8271406,911.3381651,7,11,11% -2018-07-15 20:00:00,16.73425095,167.781106,986.3834335,896.2540856,128.0852227,950.1449576,818.4862021,131.6587556,124.2229806,7.435774972,243.0223254,0,243.0223254,3.862242048,239.1600834,0.292067777,2.928332722,0.040706837,-0.040706837,0.52319241,0.52319241,0.12985338,4.350727611,139.9343555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.407854,2.798181216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152087344,134.5102252,122.5599414,137.3084064,818.4862021,0,0.913230093,24.04438585,-0.913230093,155.9556141,0.995249286,0,937.1577492,137.3084064,1027.023355,7,12,10% -2018-07-15 21:00:00,19.07502974,213.7320956,971.6508683,893.5244081,127.1886092,1004.736672,874.0585542,130.678118,123.3534034,7.324714672,239.4232082,0,239.4232082,3.835205843,235.5880024,0.332922074,3.730328785,0.27879903,-0.27879903,0.482476248,0.482476248,0.130899496,4.030203379,129.6251944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5719833,2.778593578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919868629,124.6006674,121.4918519,127.379261,874.0585542,0,0.978214525,11.98154327,-0.978214525,168.0184567,0.998886467,0,994.5771135,127.379261,1077.944292,7,13,8% -2018-07-15 22:00:00,27.94088688,241.4420533,899.3728405,879.1372276,122.7153336,994.9334951,869.1386292,125.7948659,119.0150136,6.779852368,221.7636778,0,221.7636778,3.700320081,218.0633578,0.487660472,4.213958784,0.52448136,-0.52448136,0.440462095,0.440462095,0.136445452,3.503885312,112.6969962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.401758,2.680869302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.538552981,108.3286394,116.940311,111.0095087,869.1386292,0,0.988626806,8.649506466,-0.988626806,171.3504935,0.999424798,0,985.5790103,111.0095087,1058.232513,7,14,7% -2018-07-15 23:00:00,39.02496853,257.0325464,774.7200691,849.6564372,114.6460789,918.8979733,801.8687296,117.0292437,111.1890766,5.840167124,191.2968524,0,191.2968524,3.457002277,187.8398501,0.681114191,4.48606422,0.80440821,-0.80440821,0.392591784,0.392591784,0.147983876,2.817754526,90.62867154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8791697,2.504586382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041453562,87.11572631,108.9206233,89.62031269,801.8687296,0,0.943756434,19.30771572,-0.943756434,160.6922843,0.997020229,0,908.3999675,89.62031269,967.0546697,7,15,6% -2018-07-15 00:00:00,50.75151698,267.8298667,606.8182278,796.7062656,102.7542633,778.7787457,674.5484504,104.2302953,99.65584318,4.574452122,150.228525,0,150.228525,3.098420163,147.1301048,0.885781072,4.67451301,1.165215942,-1.165215942,0.330890028,0.330890028,0.169332856,2.031936547,65.3540641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.79298706,2.24479486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472131112,62.82081227,97.26511817,65.06560713,674.5484504,0,0.846671452,32.14853721,-0.846671452,147.8514628,0.990945216,0,765.7056778,65.06560713,808.2898164,7,16,6% -2018-07-15 01:00:00,62.56513798,276.7475307,408.7308333,700.3907334,86.03287896,579.6144876,493.0946317,86.5198559,83.43867023,3.08118567,101.6957314,0,101.6957314,2.594208728,99.10152266,1.091967655,4.830155607,1.720205857,-1.720205857,0.235981163,0.235981163,0.210487861,1.222607861,39.3232715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20442357,1.879495393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885775234,37.7990243,81.09019881,39.67851969,493.0946317,0,0.704027921,45.24893535,-0.704027921,134.7510647,0.978980089,0,563.8200255,39.67851969,589.788823,7,17,5% -2018-07-15 02:00:00,74.16172419,285.0876031,199.2984333,507.9094929,60.67825827,327.3615763,267.0105956,60.35098068,58.8485849,1.502395775,50.15188593,0,50.15188593,1.829673366,48.32221256,1.294366266,4.97571733,2.884363357,-2.884363357,0.036898505,0.036898505,0.304459284,0.495976447,15.95230744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.56749822,1.325592125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.359333247,15.33396468,56.92683147,16.65955681,267.0105956,0,0.52570507,58.28427963,-0.52570507,121.7157204,0.954889637,0,311.8924822,16.65955681,322.795829,7,18,3% -2018-07-15 03:00:00,85.22034953,293.6106781,23.68349236,106.9432354,14.77256304,49.27023671,34.76458478,14.50565193,14.32711576,0.178536169,6.187784201,0,6.187784201,0.445447281,5.74233692,1.487375689,5.124473053,8.659284137,-8.659284137,0,0,0.623749353,0.11136182,3.581778941,0.487355919,1,0.114973684,0,0.949524642,0.988286605,0.724496596,1,13.88864488,0.322725039,0.067710786,0.312029739,0.825995957,0.550492553,0.961238037,0.922476074,0.076256205,3.442942157,13.96490109,3.765667196,17.82185863,0,0.325075117,71.029874,-0.325075117,108.970126,0.896189396,0,29.93666181,3.765667196,32.40121568,7,19,8% -2018-07-15 04:00:00,95.82477239,302.9011878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.672457783,5.286623035,-5.912880219,5.912880219,1,0.45868424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109872412,83.69203924,-0.109872412,96.30796076,0.594926712,0,0,0,0,7,20,0% -2018-07-15 05:00:00,105.1408366,313.4909063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835053778,5.471448491,-1.649533632,1.649533632,1,0.812240554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098082743,95.62877697,0.098082743,84.37122303,0,0.54022633,0,0,0,7,21,0% -2018-07-15 06:00:00,112.8228382,325.8361608,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969129998,5.686913828,-0.581458685,0.581458685,1,0.629588981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287352284,106.6995073,0.287352284,73.30049268,0,0.875997555,0,0,0,7,22,0% -2018-07-15 07:00:00,118.2244939,340.1208513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063406674,5.936228709,0.003929702,-0.003929702,1,0.529481671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445042093,116.4260319,0.445042093,63.57396812,0,0.937651077,0,0,0,7,23,0% -2018-07-16 08:00:00,120.6993048,355.9196042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106600274,6.211968966,0.461966866,-0.461966866,1,0.451152703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560408749,124.0840702,0.560408749,55.91592984,0,0.960779409,0,0,0,7,0,0% -2018-07-16 09:00:00,119.8767665,12.07770478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092244271,0.210795714,0.924424372,-0.924424372,1,0.372067812,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625591472,128.7256131,0.625591472,51.27438693,0,0.970075637,0,0,0,7,1,0% -2018-07-16 10:00:00,115.8860684,27.23369804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022593451,0.475317698,1.512815766,-1.512815766,1,0.271446957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636147813,129.5051677,0.636147813,50.49483229,0,0.971401915,0,0,0,7,2,0% -2018-07-16 11:00:00,109.2728306,40.57170745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907170678,0.708109878,2.490889503,-2.490889503,1,0.104186497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591356611,126.2533366,0.591356611,53.74666337,0,0.96544865,0,0,0,7,3,0% -2018-07-16 12:00:00,100.7104075,52.00911695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757728202,0.907730332,5.02857767,-5.02857767,1,0,#DIV/0!,0,0,0.247998023,1,0.196302427,0,0.939390166,0.978152129,0.724496596,1,0,0,0.037965952,0.312029739,0.897982306,0.622478901,0.961238037,0.922476074,0,0,0,0,0,0,-0.494267581,119.6214654,0.494267581,60.3785346,0,0.94884022,0,0,0,7,4,0% -2018-07-16 13:00:00,90.17953027,61.90180579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573929721,1.080390324,315.9592218,-315.9592218,1,0,#DIV/0!,0,0,0.981652068,1,0.003164955,0,0.960957791,0.999719754,0.724496596,1,0,0,0.11438318,0.312029739,0.727267542,0.451764138,0.961238037,0.922476074,0,0,0,0,0,0,-0.341552312,109.9714776,0.341552312,70.02852242,0,0.90360954,0,0,0,7,5,0% -2018-07-16 14:00:00,79.86085571,70.75709015,99.81026462,334.3661025,40.94869183,40.46634962,0,40.46634962,39.71393768,0.752411935,82.68729418,57.25238582,25.43490836,1.234754143,24.20015422,1.393834876,1.234944192,-5.5913494,5.5913494,0.513669249,0.513669249,0.410265337,0.536615601,17.25940233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17454749,0.894575173,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.388776176,16.59039401,38.56332367,17.48496918,0,57.25238582,-0.171226645,99.85914642,0.171226645,80.14085358,0,0.757989372,38.56332367,60.88166917,78.40915851,7,6,103% -2018-07-16 15:00:00,68.48425041,79.12849563,302.3860088,620.5623155,74.79045548,93.73047223,18.91571146,74.81476077,72.5352473,2.279513463,75.57219692,0,75.57219692,2.25520818,73.31698874,1.195275655,1.381052781,-2.504476888,2.504476888,0.958444462,0.958444462,0.247334378,2.208216151,71.02382212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.72363872,1.63389065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.599845085,68.27079935,71.32348381,69.90469,18.91571146,0,0.030481566,88.25326433,-0.030481566,91.74673567,0,0,71.32348381,69.90469,117.0747053,7,7,64% -2018-07-16 16:00:00,56.75134979,87.66508164,509.1099435,755.1860492,95.06142408,279.28993,183.2570728,96.03285721,92.19497141,3.837885803,126.3060527,0,126.3060527,2.866452675,123.4396001,0.990497909,1.530044314,-1.453407255,1.453407255,0.778700968,0.778700968,0.186720816,3.147151192,101.2232006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.62131332,2.076735206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280100325,97.29959061,90.90141365,99.37632582,183.2570728,0,0.242664802,75.95612735,-0.242664802,104.0438727,0.84395446,0,245.5620376,99.37632582,310.6018553,7,8,26% -2018-07-16 17:00:00,44.94387114,97.32983412,694.0885845,826.3783339,109.1787045,483.3813258,372.2624291,111.1188966,105.8865637,5.232332934,171.581954,0,171.581954,3.292140767,168.2898132,0.78441853,1.698726066,-0.886639424,0.886639424,0.681777961,0.681777961,0.15729794,3.829197216,123.1601453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7821926,2.385144779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.774240348,118.3862162,104.556433,120.771361,372.2624291,0,0.450474575,63.2258637,-0.450474575,116.7741363,0.939005945,0,454.1130669,120.771361,533.1555072,7,9,17% -2018-07-16 18:00:00,33.4501907,110.0155405,841.8658907,866.2185148,119.1231973,675.9636134,554.0860793,121.8775341,115.5311934,6.34634069,207.7121359,0,207.7121359,3.592003918,204.120132,0.583815963,1.92013341,-0.505961411,0.505961411,0.616678187,0.616678187,0.141499019,4.257873233,136.9478395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0529776,2.602394611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.084814663,131.6394724,114.1377922,134.241867,554.0860793,0,0.639660859,50.23346474,-0.639660859,129.7665353,0.971833579,0,652.6172498,134.241867,740.4758669,7,10,13% -2018-07-16 19:00:00,23.17493295,130.3576979,941.3508659,887.5721808,125.3990129,836.3721186,707.6580481,128.7140705,121.61777,7.096300456,232.0226589,0,232.0226589,3.781242913,228.241416,0.404478884,2.275171033,-0.211722758,0.211722758,0.566360414,0.566360414,0.133211768,4.428987814,142.4514726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9036265,2.739497619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.208786595,136.9297739,120.1124131,139.6692715,707.6580481,0,0.797296337,37.12730838,-0.797296337,142.8726916,0.98728806,0,818.7747546,139.6692715,910.1854994,7,11,11% -2018-07-16 20:00:00,16.89958718,167.8079644,985.33868,895.9364945,128.0925951,949.307291,817.6492611,131.6580299,124.2301308,7.427899179,242.7692352,0,242.7692352,3.862464354,238.9067708,0.294953438,2.92880149,0.041274316,-0.041274316,0.523095366,0.523095366,0.129998545,4.346006426,139.782506,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.414727,2.798342276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148666861,134.3642616,122.5633939,137.1626039,817.6492611,0,0.912619662,24.13008247,-0.912619662,155.8699175,0.995212664,0,936.2982933,137.1626039,1026.068474,7,12,10% -2018-07-16 21:00:00,19.20987344,213.4381223,970.6804901,893.2150727,127.1999143,1004.031439,873.3496718,130.6817672,123.3643676,7.317399552,239.1882697,0,239.1882697,3.835546735,235.352723,0.33527554,3.725197984,0.279863917,-0.279863917,0.482294141,0.482294141,0.131042002,4.025560186,129.4758534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5825225,2.778840553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916504652,124.4571151,121.4990272,127.2359557,873.3496718,0,0.977759667,12.10644081,-0.977759667,167.8935592,0.998862689,0,993.8554289,127.2359557,1077.128817,7,13,8% -2018-07-16 22:00:00,28.03469659,241.1502359,898.4082402,878.8000438,122.7238401,994.28746,868.4916157,125.7958443,119.0232635,6.772580804,221.5300558,0,221.5300558,3.700576581,217.8294792,0.48929776,4.208865609,0.526147275,-0.526147275,0.440177206,0.440177206,0.136601419,3.499052478,112.5415556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4096881,2.681055136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.535051609,108.179224,116.9447398,110.8602791,868.4916157,0,0.988269882,8.784443664,-0.988269882,171.2155563,0.999406533,0,984.920934,110.8602791,1057.476769,7,14,7% -2018-07-16 23:00:00,39.0999919,256.797154,773.6931691,849.2397981,114.6435994,918.2198295,801.2007317,117.0190978,111.1866719,5.832425918,191.0477939,0,191.0477939,3.456927511,187.5908664,0.682423596,4.481955846,0.806965725,-0.806965725,0.392154423,0.392154423,0.148177086,2.812531146,90.46066967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8768582,2.504532214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037669241,86.95423653,108.9145274,89.45876874,801.2007317,0,0.94343286,19.36370874,-0.94343286,160.6362913,0.997002058,0,907.7133058,89.45876874,966.2622808,7,15,6% -2018-07-16 00:00:00,50.82090756,267.6345787,605.668799,796.1109333,102.7285201,777.9566656,673.7600021,104.1966634,99.6308762,4.565787243,149.9490564,0,149.9490564,3.097643909,146.8514125,0.886992166,4.67110459,1.169374226,-1.169374226,0.330178919,0.330178919,0.169611709,2.026243496,65.17095599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.76898785,2.244232468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468006515,62.6448018,97.23699437,64.88903427,673.7600021,0,0.846314218,32.18698192,-0.846314218,147.8130181,0.990920288,0,764.8794499,64.88903427,807.3480251,7,16,6% -2018-07-16 01:00:00,62.63612781,276.5776718,407.4198028,699.3754576,85.95894998,578.4995949,492.0613218,86.43827306,83.36697049,3.071302569,101.3756276,0,101.3756276,2.591979497,98.78364814,1.093206661,4.82719101,1.728000839,-1.728000839,0.234648142,0.234648142,0.210983731,1.216619523,39.13066596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.13550305,1.877880322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881436703,37.61388453,81.01693975,39.49176485,492.0613218,0,0.703572475,45.28566844,-0.703572475,134.7143316,0.978934116,0,562.7125548,39.49176485,588.559125,7,17,5% -2018-07-16 02:00:00,74.23896619,284.9339318,197.8601979,505.7565384,60.48367814,325.7218284,265.5704026,60.15142583,58.65987208,1.491553748,49.79730177,0,49.79730177,1.823806057,47.97349572,1.295714393,4.97303526,2.904695989,-2.904695989,0.03342142,0.03342142,0.30568896,0.490562812,15.77818633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.38610028,1.32134128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.355411087,15.16659285,56.74151137,16.48793413,265.5704026,0,0.525095342,58.32533813,-0.525095342,121.6746619,0.954779197,0,310.3026072,16.48793413,321.0936303,7,18,3% -2018-07-16 03:00:00,85.30573718,293.4678881,22.76375807,103.1444092,14.32255244,47.51150838,33.44923092,14.06227747,13.89067464,0.171602824,5.951214494,0,5.951214494,0.431877801,5.519336693,1.488865985,5.121980897,8.838427829,-8.838427829,0,0,0.629182247,0.10796945,3.472668661,0.495282529,1,0.112663184,0,0.949790588,0.988552551,0.724496596,1,13.46498697,0.312893996,0.06860139,0.312029739,0.823948926,0.548445522,0.961238037,0.922476074,0.073948011,3.338061206,13.53893499,3.650955202,16.88241125,0,0.324295143,71.0771231,-0.324295143,108.9228769,0.895819461,0,28.66252753,3.650955202,31.05200469,7,19,8% -2018-07-16 04:00:00,95.92622246,302.7672419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674228421,5.284285238,-5.82889887,5.82889887,1,0.473045897,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108813672,83.75306651,-0.108813672,96.24693349,0.590498918,0,0,0,0,7,20,0% -2018-07-16 05:00:00,105.2588974,313.3674811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837114327,5.469294313,-1.643216921,1.643216921,1,0.811160333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099398037,95.70450783,0.099398037,84.29549217,0,0.546971957,0,0,0,7,21,0% -2018-07-16 06:00:00,112.9592414,325.729813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971510683,5.685057708,-0.581855755,0.581855755,1,0.629656884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288924077,106.793553,0.288924077,73.20644695,0,0.876944156,0,0,0,7,22,0% -2018-07-16 07:00:00,118.3781701,340.043255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066088832,5.9348744,0.00139751,-0.00139751,1,0.529914701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446852767,116.5419394,0.446852767,63.45806064,0,0.938106321,0,0,0,7,23,0% -2018-07-17 08:00:00,120.8648349,355.8834677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.109489319,6.211338264,0.457926376,-0.457926376,1,0.451843667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562424317,124.2236218,0.562424317,55.77637821,0,0.96109915,0,0,0,7,0,0% -2018-07-17 09:00:00,120.0451729,12.08824831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095183519,0.210979734,0.918435355,-0.918435355,1,0.373091994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627763903,128.8853393,0.627763903,51.11466065,0,0.970352222,0,0,0,7,1,0% -2018-07-17 10:00:00,116.0486104,27.28472597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025430344,0.476208304,1.503189343,-1.503189343,1,0.273093172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638418331,129.6739793,0.638418331,50.32602072,0,0.971681447,0,0,0,7,2,0% -2018-07-17 11:00:00,109.4242767,40.65150861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90981391,0.709502671,2.47185448,-2.47185448,1,0.107441678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593659736,126.4171466,0.593659736,53.58285344,0,0.96577667,0,0,0,7,3,0% -2018-07-17 12:00:00,100.8492693,52.10782917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760151798,0.909453185,4.965451005,-4.965451005,1,0,#DIV/0!,0,0,0.241843243,1,0.198733254,0,0.939064476,0.977826439,0.724496596,1,0,0,0.037120645,0.312029739,0.900130414,0.62462701,0.961238037,0.922476074,0,0,0,0,0,0,-0.496535642,119.7710634,0.496535642,60.22893665,0,0.949302294,0,0,0,7,4,0% -2018-07-17 13:00:00,90.91474094,62.01405879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586761568,1.082349508,62.02336921,-62.02336921,1,0,#DIV/0!,0,0,0.909718506,1,0.016121558,0,0.959785288,0.998547251,0.724496596,1,0,0,0.108558489,0.312029739,0.738633743,0.463130339,0.961238037,0.922476074,0,0,0,0,0,0,-0.353661913,110.7114584,0.353661913,69.28854159,0,0.90862204,0,0,0,7,5,0% -2018-07-17 14:00:00,79.97740343,70.8816085,97.8922333,329.9982453,40.46047487,39.97839527,0,39.97839527,39.24044227,0.737953004,82.11740156,57.16226364,24.95513792,1.220032601,23.73510532,1.395869017,1.237117448,-5.657562058,5.657562058,0.502346217,0.502346217,0.413316496,0.52249636,16.80527901,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.71940569,0.883909466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.378546834,16.1538734,38.09795253,17.03778287,0,57.16226364,-0.173219902,99.97508401,0.173219902,80.02491599,0,0.761349565,38.09795253,60.55824743,77.73211431,7,6,104% -2018-07-17 15:00:00,68.59463244,79.26728244,300.3808634,618.7688687,74.5524986,92.31639724,17.74753371,74.56886353,72.3044657,2.26439783,75.07885092,0,75.07885092,2.248032902,72.83081802,1.197202185,1.383475068,-2.517699742,2.517699742,0.960705703,0.960705703,0.248193236,2.197503627,70.67927051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50180266,1.628692185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592083897,67.93960323,71.09388656,69.56829541,17.74753371,0,0.028682008,88.35641658,-0.028682008,91.64358342,0,0,71.09388656,69.56829541,116.6249445,7,7,64% -2018-07-17 16:00:00,56.8584828,87.82316824,507.3061837,754.3243212,94.91041012,277.7416526,181.8688532,95.87279937,92.04851107,3.824288299,125.8641567,0,125.8641567,2.861899047,123.0022576,0.992367732,1.532803445,-1.458063251,1.458063251,0.779497191,0.779497191,0.187087036,3.138786181,100.9541531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.48053007,2.073436117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274039903,97.04097192,90.75456998,99.11440804,181.8688532,0,0.24110167,76.0484291,-0.24110167,103.9515709,0.842618607,0,244.0006498,99.11440804,308.8690476,7,8,27% -2018-07-17 17:00:00,45.05269386,97.51544774,692.5243303,825.8912267,109.0683781,481.9620913,370.9619863,111.000105,105.779564,5.220540926,171.1993557,0,171.1993557,3.288814018,167.9105417,0.786317845,1.701965635,-0.888519115,0.888519115,0.682099407,0.682099407,0.15749393,3.822306852,122.9385274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6793405,2.382734561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.769248302,118.1731888,104.4485888,120.5559233,370.9619863,0,0.44916567,63.3098332,-0.44916567,116.6901668,0.938682499,0,452.6641131,120.5559233,531.5655538,7,9,17% -2018-07-17 18:00:00,33.56896909,110.2377075,840.5268875,865.9050679,119.0367475,674.7550891,552.971492,121.7835971,115.4473504,6.336246718,207.3848723,0,207.3848723,3.589397137,203.7954752,0.585889037,1.924010956,-0.506586807,0.506586807,0.616785136,0.616785136,0.141621582,4.251980377,136.758305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9723845,2.600506007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080545309,131.4572846,114.0529298,134.0577906,552.971492,0,0.638605215,50.31210765,-0.638605215,129.6878923,0.971704366,0,651.377743,134.0577906,739.1158858,7,10,13% -2018-07-17 19:00:00,23.31769683,130.5960954,940.1979675,887.344789,125.327804,835.384343,706.7480253,128.6363177,121.5487083,7.08760942,231.7409782,0,231.7409782,3.779095701,227.9618825,0.406970584,2.279331854,-0.211621919,0.211621919,0.566343169,0.566343169,0.133299378,4.423726847,142.2822619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8372418,2.737941971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204975042,136.7671221,120.0422168,139.505064,706.7480253,0,0.796475095,37.20519506,-0.796475095,142.7948049,0.987223398,0,817.7604039,139.505064,909.0636782,7,11,11% -2018-07-17 20:00:00,17.07046857,167.8448483,984.3165872,895.7487976,128.0305025,948.5107963,816.9206916,131.5901047,124.1699105,7.420194212,242.5195446,0,242.5195446,3.860592033,238.6589526,0.297935881,2.929445235,0.04191313,-0.04191313,0.522986122,0.522986122,0.130070451,4.341047591,139.6230128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.356841,2.796985786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.145074202,134.2109507,122.5019152,137.0079365,816.9206916,0,0.911997531,24.21712831,-0.911997531,155.7828717,0.99517529,0,935.4812015,137.0079365,1025.150156,7,12,10% -2018-07-17 21:00:00,19.35145092,213.1452186,969.723516,893.0351645,127.1414688,1003.369878,872.7520082,130.6178699,123.3076844,7.310185477,238.9544779,0,238.9544779,3.833784385,235.1206935,0.337746534,3.72008585,0.281018346,-0.281018346,0.482096722,0.482096722,0.13111105,4.020598832,129.3162791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5280365,2.777563736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912910167,124.3037263,121.4409466,127.08129,872.7520082,0,0.977287393,12.23479114,-0.977287393,167.7652089,0.998837977,0,993.178797,127.08129,1076.35096,7,13,8% -2018-07-17 22:00:00,28.13468069,240.8537496,897.4459147,878.596086,122.6633324,993.684147,867.9542403,125.7299067,118.9645803,6.765326387,221.2949043,0,221.2949043,3.698752051,217.5961523,0.491042812,4.203690946,0.527929753,-0.527929753,0.439872385,0.439872385,0.136680473,3.493823543,112.3733751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3532797,2.67973327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531263264,108.0175625,116.8845429,110.6972957,867.9542403,0,0.98788767,8.926697404,-0.98788767,171.0733026,0.999386958,0,984.3066909,110.6972957,1056.755857,7,14,7% -2018-07-17 23:00:00,39.18058797,256.5565615,772.6561948,848.9644165,114.5741448,917.580623,800.6367026,116.9439204,111.1193116,5.824608768,190.7942731,0,190.7942731,3.4548332,187.3394399,0.683830263,4.477756716,0.809685573,-0.809685573,0.391689302,0.391689302,0.148286063,2.806839941,90.27762094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8121089,2.503014892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033545982,86.77828312,108.8456549,89.28129802,800.6367026,0,0.943074512,19.42553815,-0.943074512,160.5744619,0.99698192,0,907.0659719,89.28129802,965.4987958,7,15,6% -2018-07-17 00:00:00,50.8955674,267.4345675,604.4963212,795.668389,102.639749,777.166989,673.0652585,104.1017305,99.54478185,4.55694861,149.6620988,0,149.6620988,3.094967132,146.5671317,0.888295226,4.667613736,1.173784697,-1.173784697,0.329424685,0.329424685,0.169793836,2.020023498,64.97089949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.68623068,2.242293152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463500148,62.45249988,97.14973083,64.69479303,673.0652585,0,0.845911774,32.23024309,-0.845911774,147.7697569,0.990892181,0,764.0848328,64.69479303,806.426281,7,16,6% -2018-07-17 01:00:00,62.71229679,276.4036203,406.0726361,698.5221475,85.82899008,577.4058809,491.1038044,86.30207641,83.24092935,3.061147057,101.0450727,0,101.0450727,2.588060726,98.45701197,1.09453606,4.824153239,1.736269509,-1.736269509,0.233234116,0.233234116,0.211363639,1.210073096,38.92011038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.01434751,1.875041186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876693839,37.41149049,80.89104135,39.28653168,491.1038044,0,0.703061179,45.3268783,-0.703061179,134.6731217,0.978882434,0,561.6239286,39.28653168,587.3361779,7,17,5% -2018-07-17 02:00:00,74.32143102,284.776524,196.374309,503.7355123,60.24465281,324.0772853,264.1688786,59.90840673,58.42805424,1.48035249,49.42982331,0,49.42982331,1.816598561,47.61322475,1.297153676,4.970287976,2.926364353,-2.926364353,0.029715912,0.029715912,0.306784799,0.484644194,15.58782322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.16326816,1.316119474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.351123069,14.98360859,56.51439123,16.29972807,264.1688786,0,0.524419804,58.37080705,-0.524419804,121.6291929,0.954656537,0,308.7049381,16.29972807,319.3727841,7,18,3% -2018-07-17 03:00:00,85.39631643,293.3217748,21.82101946,99.32386747,13.84898715,45.7215506,32.12566545,13.59588515,13.43138909,0.164496062,5.708356864,0,5.708356864,0.41759806,5.290758804,1.490446891,5.119430738,9.034858417,-9.034858417,0,0,0.634662701,0.104399515,3.357847273,0.503696985,1,0.110233739,0,0.950068897,0.98883086,0.724496596,1,13.01913377,0.302548373,0.069540819,0.312029739,0.821796522,0.546293118,0.961238037,0.922476074,0.071520282,3.227690521,13.09065405,3.530238894,15.94406462,0,0.323443562,71.12869472,-0.323443562,108.8713053,0.895413525,0,27.36718516,3.530238894,29.67765591,7,19,8% -2018-07-17 04:00:00,96.03331799,302.6304221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676097591,5.281897282,-5.742655804,5.742655804,1,0.48779433,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107672566,83.81883351,-0.107672566,96.18116649,0.585629158,0,0,0,0,7,20,0% -2018-07-17 05:00:00,105.382882,313.2417893,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839278266,5.467100578,-1.636446156,1.636446156,1,0.810002464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100800558,95.78527202,0.100800558,84.21472798,0,0.553971,0,0,0,7,21,0% -2018-07-17 06:00:00,113.1018204,325.6221308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973999156,5.6831783,-0.582116875,0.582116875,1,0.629701538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290585305,106.8930006,0.290585305,73.10699938,0,0.877933488,0,0,0,7,22,0% -2018-07-17 07:00:00,118.5381266,339.9657295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068880598,5.933521323,-0.001099879,0.001099879,1,0.53034178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448752276,116.6636594,0.448752276,63.33634056,0,0.938579952,0,0,0,7,23,0% -2018-07-18 08:00:00,121.0364463,355.8492065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112484503,6.210740294,0.453871347,-0.453871347,1,0.452537118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564525353,124.3693374,0.564525353,55.63066256,0,0.961430019,0,0,0,7,0,0% -2018-07-18 09:00:00,120.2190864,12.10242924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098218881,0.211227238,0.912396636,-0.912396636,1,0.374124675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.630015898,129.0512955,0.630015898,50.94870453,0,0.970636923,0,0,0,7,1,0% -2018-07-18 10:00:00,116.2158241,27.3406255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028348774,0.477183934,1.493479144,-1.493479144,1,0.274753714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640760379,129.8485424,0.640760379,50.15145756,0,0.97196771,0,0,0,7,2,0% -2018-07-18 11:00:00,109.5795099,40.73680471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912523241,0.710991369,2.452712631,-2.452712631,1,0.110715127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596024779,126.5857208,0.596024779,53.41427919,0,0.96611087,0,0,0,7,3,0% -2018-07-18 12:00:00,100.9911376,52.21228022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.762627866,0.9112762,4.902666636,-4.902666636,1,0,#DIV/0!,0,0,0.235621087,1,0.201210541,0,0.938731224,0.977493187,0.724496596,1,0,0,0.036261556,0.312029739,0.902319322,0.626815918,0.961238037,0.922476074,0,0,0,0,0,0,-0.498855092,119.9242824,0.498855092,60.07571764,0,0.949770493,0,0,0,7,4,0% -2018-07-18 13:00:00,91.04428724,62.13216978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589022578,1.084410934,54.34341936,-54.34341936,1,0,#DIV/0!,0,0,0.897573709,1,0.018399415,0,0.959574971,0.998336934,0.724496596,1,0,0,0.107546996,0.312029739,0.740635403,0.465131999,0.961238037,0.922476074,0,0,0,0,0,0,-0.355870382,110.8467975,0.355870382,69.15320251,0,0.909499406,0,0,0,7,5,0% -2018-07-18 14:00:00,80.09586224,71.01215212,95.95016382,325.5224494,39.96022376,39.47858844,0,39.47858844,38.75527558,0.723312864,81.51472561,57.04554934,24.46917628,1.204948184,23.26422809,1.397936513,1.239395863,-5.726405919,5.726405919,0.490573224,0.490573224,0.416468531,0.508296141,16.34855115,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.25304501,0.872980857,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.368258824,15.71484921,37.62130384,16.58783007,0,57.04554934,-0.175243058,100.0928029,0.175243058,79.90719714,0,0.764681993,37.62130384,60.2095344,77.02723991,7,6,105% -2018-07-18 15:00:00,68.70668886,79.41242533,298.3448258,616.9344906,74.3097173,90.88952378,16.57146931,74.31805447,72.06900515,2.249049318,74.57786927,0,74.57786927,2.24071215,72.33715712,1.199157939,1.386008289,-2.531208928,2.531208928,0.96301591,0.96301591,0.249073256,2.18658795,70.32818483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.27546903,1.623388325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.584175527,67.60212632,70.85964456,69.22551465,16.57146931,0,0.026860987,88.46079368,-0.026860987,91.53920632,0,0,70.85964456,69.22551465,116.1663594,7,7,64% -2018-07-18 16:00:00,56.96721996,87.98820979,505.4734316,753.4446104,94.75663547,276.1779771,180.4681316,95.70984553,91.89937329,3.81047224,125.4151478,0,125.4151478,2.857262174,122.5578856,0.994265554,1.535683964,-1.462763665,1.462763665,0.780301009,0.780301009,0.187461159,3.130249737,100.6795917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.33717317,2.070076719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267855279,96.77705308,90.60502845,98.8471298,180.4681316,0,0.239524086,76.14154676,-0.239524086,103.8584532,0.841252726,0,242.4243361,98.8471298,307.1178056,7,8,27% -2018-07-18 17:00:00,45.16329999,97.70900846,690.9314955,825.3935896,108.9559089,480.5290827,369.650063,110.8790197,105.6704862,5.208533464,170.8097631,0,170.8097631,3.285422657,167.5243404,0.788248286,1.705343906,-0.890381511,0.890381511,0.682417896,0.682417896,0.157694228,3.815244306,122.7113717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5744907,2.380277531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764131512,117.954838,104.3386222,120.3351156,369.650063,0,0.447847024,63.39436505,-0.447847024,116.6056349,0.938354734,0,451.2015089,120.3351156,529.9584353,7,9,17% -2018-07-18 18:00:00,33.69010283,110.4693001,839.157061,865.5836237,118.948248,673.5332529,551.8458131,121.6874398,115.3615194,6.325920387,207.0500734,0,207.0500734,3.586728548,203.4633449,0.58800322,1.928053009,-0.507169904,0.507169904,0.616884851,0.616884851,0.1417473,4.245896967,136.5626416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8898805,2.598572624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.076137899,131.2692056,113.9660183,133.8677782,551.8458131,0,0.637541883,50.39123286,-0.637541883,129.6087671,0.97157378,0,650.1249409,133.8677782,737.7387244,7,10,13% -2018-07-18 19:00:00,23.46403756,130.8453714,939.0092711,887.1098833,125.2543499,834.3810258,705.8249082,128.5561176,121.4774691,7.078648525,231.45055,0,231.45055,3.776880789,227.6736693,0.409524711,2.283682543,-0.211463297,0.211463297,0.566316043,0.566316043,0.133389897,4.418245375,142.1059589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7687639,2.736337275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.201003734,136.5976529,119.9697677,139.3339902,705.8249082,0,0.795645412,37.28374105,-0.795645412,142.716259,0.987157936,0,816.7304271,139.3339902,907.921737,7,11,11% -2018-07-18 20:00:00,17.24682953,167.8915889,983.2512757,895.5528379,127.9657603,947.6934059,816.174122,131.5192839,124.1071205,7.412163443,242.2592953,0,242.2592953,3.858639816,238.4006555,0.301013961,2.930261013,0.042624185,-0.042624185,0.522864525,0.522864525,0.130145532,4.335830801,139.4552229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2964848,2.795571411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141294656,134.0496647,122.4377795,136.8452361,816.174122,0,0.911363448,24.30554484,-0.911363448,155.6944552,0.995137146,0,934.6429657,136.8452361,1024.205436,7,12,10% -2018-07-18 21:00:00,19.49973722,212.8538817,968.7139657,892.845071,127.0797898,1002.678959,872.1285185,130.5504403,123.2478652,7.30257506,238.7078409,0,238.7078409,3.831924536,234.8759164,0.340334618,3.715001061,0.282263141,-0.282263141,0.48188385,0.48188385,0.131184017,4.01533848,129.1470881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.470536,2.776216282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90909906,124.1410935,121.3796351,126.9173098,872.1285185,0,0.976797147,12.36663819,-0.976797147,167.6333618,0.998812299,0,992.4723259,126.9173098,1075.537167,7,13,8% -2018-07-18 22:00:00,28.24087423,240.5529893,896.4204001,878.3783661,122.5988236,993.0401266,867.3805143,125.6596123,118.9020167,6.757595626,221.0443113,0,221.0443113,3.696806872,217.3475044,0.492896239,4.198441689,0.529829703,-0.529829703,0.439547474,0.439547474,0.136764875,3.488255276,112.1942805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2931411,2.678323995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527229073,107.8454099,116.8203702,110.5237339,867.3805143,0,0.987479369,9.076218166,-0.987479369,170.9237818,0.999366031,0,983.6509919,110.5237339,1055.986565,7,14,7% -2018-07-18 23:00:00,39.26680159,256.3110107,771.5449952,848.6687155,114.4996719,916.8867022,800.0233857,116.8633164,111.0470844,5.816232076,190.5226043,0,190.5226043,3.452587567,187.0700167,0.685334974,4.473471045,0.812569068,-0.812569068,0.391196195,0.391196195,0.148403104,2.80077497,90.08255062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7426814,2.501387939,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029151931,86.59077411,108.7718333,89.09216205,800.0233857,0,0.942680425,19.49331608,-0.942680425,160.5066839,0.996959756,0,906.3629525,89.09216205,964.6719908,7,15,6% -2018-07-18 00:00:00,50.97553534,267.2299981,603.239187,795.1925682,102.5444637,776.3058033,672.3059617,103.9998416,99.45236977,4.547471801,149.3544189,0,149.3544189,3.092093929,146.2623249,0.88969093,4.664043326,1.178449973,-1.178449973,0.328626875,0.328626875,0.169989725,2.013408639,64.75814289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.59740068,2.240211526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458707705,62.24799014,97.05610838,64.48820166,672.3059617,0,0.845463085,32.27841442,-0.845463085,147.7215856,0.990860812,0,763.2177398,64.48820166,805.423978,7,16,6% -2018-07-18 01:00:00,62.79367354,276.2255015,404.6326115,697.6062016,85.68975489,576.2196743,490.0634902,86.15618417,83.10589262,3.050291543,100.6917236,0,100.6917236,2.583862272,98.10786134,1.095956353,4.82104448,1.745019462,-1.745019462,0.231737786,0.231737786,0.211771747,1.203138747,38.69707786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88454507,1.87199942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.871669927,37.19710316,80.756215,39.06910258,490.0634902,0,0.702493024,45.37263654,-0.702493024,134.6273635,0.978824916,0,560.4425696,39.06910258,586.0125159,7,17,5% -2018-07-18 02:00:00,74.40913525,284.6154821,194.7948529,501.5722381,59.98916322,322.3108485,262.662134,59.6487145,58.18026861,1.468445883,49.03916195,0,49.03916195,1.808894608,47.23026734,1.298684404,4.967477265,2.949409003,-2.949409003,0.025775045,0.025775045,0.30796072,0.478416825,15.38752965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.92508718,1.310537985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346611361,14.79107879,56.27169855,16.10161678,262.662134,0,0.523677576,58.42073906,-0.523677576,121.5792609,0.954521404,0,306.9883274,16.10161678,317.5265135,7,18,3% -2018-07-18 03:00:00,85.49207711,293.1724258,20.84249663,95.32168936,13.35050265,43.84820117,30.74314589,13.10505528,12.94793574,0.157119543,5.456071527,0,5.456071527,0.402566913,5.053504614,1.49211823,5.116824106,9.250255822,-9.250255822,0,0,0.640542392,0.100641728,3.236983934,0.5126072,1,0.107686916,0,0.950359188,0.989121151,0.724496596,1,12.549806,0.291658358,0.070528939,0.312029739,0.819540147,0.544036743,0.961238037,0.922476074,0.068965929,3.111512082,12.61877193,3.40317044,14.98398796,0,0.322519944,71.18461095,-0.322519944,108.815389,0.894970827,0,26.02900403,3.40317044,28.25631102,7,19,9% -2018-07-18 04:00:00,96.14605164,302.4908055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678065164,5.279460512,-5.654498951,5.654498951,1,0.50287004,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106448687,83.88936194,-0.106448687,96.11063806,0.580290122,0,0,0,0,7,20,0% -2018-07-18 05:00:00,105.5127705,313.1139002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841545248,5.464868493,-1.629236443,1.629236443,1,0.808769531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102290383,95.87107624,0.102290383,84.12892376,0,0.561195495,0,0,0,7,21,0% -2018-07-18 06:00:00,113.2505431,325.5131789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976594857,5.68127673,-0.582241688,0.582241688,1,0.629722882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292335685,106.9978419,0.292335685,73.00215808,0,0.878963747,0,0,0,7,22,0% -2018-07-18 07:00:00,118.7043186,339.8883401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071781197,5.932170624,-0.003558977,0.003558977,1,0.530762311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450739974,116.7911698,0.450739974,63.20883016,0,0.939071299,0,0,0,7,23,0% -2018-07-19 08:00:00,121.2140806,355.8168913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115584807,6.210176288,0.449806993,-0.449806993,1,0.453232164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566710868,124.5211816,0.566710868,55.47881842,0,0.961771588,0,0,0,7,0,0% -2018-07-19 09:00:00,120.3984337,12.12031787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101349083,0.211539453,0.906315679,-0.906315679,1,0.37516458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632346173,129.2234318,0.632346173,50.77656816,0,0.970929386,0,0,0,7,1,0% -2018-07-19 10:00:00,116.3876247,27.40145276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03134726,0.478245571,1.483697099,-1.483697099,1,0.276426542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643172442,130.0287894,0.643172442,49.97121063,0,0.972260351,0,0,0,7,2,0% -2018-07-19 11:00:00,109.7384401,40.82762869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915297096,0.712576546,2.43348796,-2.43348796,1,0.114002739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.598450077,126.758973,0.598450077,53.24102697,0,0.966450842,0,0,0,7,3,0% -2018-07-19 12:00:00,101.1359233,52.3224795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765154853,0.91319954,4.840298063,-4.840298063,1,0,#DIV/0!,0,0,0.229338188,1,0.203732479,0,0.93839058,0.977152543,0.724496596,1,0,0,0.035389424,0.312029739,0.904547417,0.629044013,0.961238037,0.922476074,0,0,0,0,0,0,-0.50122421,120.0810262,0.50122421,59.91897382,0,0.950244244,0,0,0,7,4,0% -2018-07-19 13:00:00,91.17614039,62.25612813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591323849,1.086574415,48.26403872,-48.26403872,1,0,#DIV/0!,0,0,0.885366889,1,0.020716396,0,0.959359761,0.998121725,0.724496596,1,0,0,0.106521898,0.312029739,0.74267239,0.467168986,0.961238037,0.922476074,0,0,0,0,0,0,-0.358117833,110.9846506,0.358117833,69.01534936,0,0.91038115,0,0,0,7,5,0% -2018-07-19 14:00:00,80.21615733,71.14869336,93.98586485,320.9398723,39.44803605,38.96703737,0,38.96703737,38.25853222,0.708505149,80.87835227,56.90088737,23.9774649,1.189503835,22.78796106,1.400036059,1.241778958,-5.797966751,5.797966751,0.478335601,0.478335601,0.419723073,0.494033687,15.8898216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.7755564,0.861791479,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.357925724,15.27390092,37.13348213,16.1356924,0,56.90088737,-0.177294541,100.212214,0.177294541,79.78778604,0,0.767983421,37.13348213,59.83463053,76.29405111,7,6,105% -2018-07-19 15:00:00,68.82035683,79.56388004,296.2790423,615.0594598,74.06218124,89.45110189,15.38869211,74.06240978,71.82893321,2.233476569,74.06953202,0,74.06953202,2.233248025,71.836284,1.201141819,1.388651672,-2.545001669,2.545001669,0.965374607,0.965374607,0.249974418,2.175473339,69.97070071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04470275,1.617980592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576123028,67.25849899,70.62082578,68.87647958,15.38869211,0,0.025019845,88.56631889,-0.025019845,91.43368111,0,0,70.62082578,68.87647958,115.6991041,7,7,64% -2018-07-19 16:00:00,57.07751086,88.16014164,503.6124601,752.547062,94.60014661,274.5999099,179.0558633,95.5440466,91.74760315,3.796443451,124.959215,0,124.959215,2.852543458,122.1066716,0.996190493,1.538684741,-1.46750539,1.46750539,0.781111892,0.781111892,0.187843142,3.121544085,100.399588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19128594,2.066658025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261548064,96.50790289,90.452834,98.57456092,179.0558633,0,0.23793311,76.23541708,-0.23793311,103.7645829,0.839856906,0,240.8341373,98.57456092,305.349216,7,8,27% -2018-07-19 17:00:00,45.27565269,97.91041901,689.3104754,824.8854497,108.8413173,479.0829939,368.3273304,110.7556635,105.55935,5.196313529,170.4132726,0,170.4132726,3.281967298,167.1313053,0.79020921,1.708859184,-0.892224553,0.892224553,0.682733074,0.682733074,0.15789883,3.80801003,122.4786925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4676624,2.377774135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758890304,117.7311779,104.2265527,120.1089521,368.3273304,0,0.446519369,63.47941141,-0.446519369,116.5205886,0.938022775,0,449.7259771,120.1089521,528.3348841,7,9,17% -2018-07-19 18:00:00,33.81356797,110.7101552,837.7564386,865.2541325,118.8576961,672.2984293,550.7093694,121.5890599,115.273698,6.315361904,206.7077458,0,206.7077458,3.583998075,203.1237477,0.590158093,1.932256723,-0.50770931,0.50770931,0.616977095,0.616977095,0.141876195,4.239621981,136.3608165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8054632,2.596594405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.071591693,131.0752036,113.8770549,133.671798,550.7093694,0,0.636471239,50.47081091,-0.636471239,129.5291891,0.971441855,0,648.8591861,133.671798,736.3447044,7,10,13% -2018-07-19 19:00:00,23.6139307,131.10523,937.7844724,886.8673604,125.1786286,833.362105,704.8886584,128.4734465,121.4040311,7.069415475,231.1513001,0,231.1513001,3.774597511,227.3767026,0.41214084,2.28821793,-0.211245891,0.211245891,0.566278865,0.566278865,0.133483367,4.412541248,141.9224946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6981725,2.734683048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196871113,136.4213,119.8950436,139.1559831,704.8886584,0,0.794807307,37.36294089,-0.794807307,142.6370591,0.98709167,0,815.6847669,139.1559831,906.7595748,7,11,11% -2018-07-19 20:00:00,17.42860465,167.947982,982.1421691,895.3484677,127.8983303,946.8546905,815.4091642,131.4455263,124.0417238,7.403802529,241.9883463,0,241.9883463,3.856606554,238.1317397,0.304186535,2.931245257,0.043408267,-0.043408267,0.522730439,0.522730439,0.130223846,4.330353174,139.2790436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2336231,2.79409832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137326134,133.8803144,122.3709492,136.6744127,815.4091642,0,0.910717105,24.39536107,-0.910717105,155.6046389,0.995098209,0,933.7831482,136.6744127,1023.233818,7,12,10% -2018-07-19 21:00:00,19.65469928,212.5645742,967.6510705,892.644598,127.0148267,1001.957934,871.4785105,130.4794235,123.184861,7.294562507,238.4481708,0,238.4481708,3.829965659,234.6182051,0.343039216,3.709951694,0.283599009,-0.283599009,0.481655403,0.481655403,0.131260979,4.009775944,128.9681779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.409974,2.774797082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905069022,123.9691181,121.315043,126.7439152,871.4785105,0,0.976288337,12.50203017,-0.976288337,167.4979698,0.998785622,0,991.7352491,126.7439152,1074.686607,7,13,8% -2018-07-19 22:00:00,28.35330322,240.2483442,895.3308295,878.1466279,122.5302536,992.3544069,866.7695106,125.5848963,118.8355144,6.749381982,220.7780646,0,220.7780646,3.694739234,217.0833254,0.494858495,4.193124629,0.531847918,-0.531847918,0.439202339,0.439202339,0.136854724,3.482344634,112.0041739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2292165,2.676825998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522946833,107.6626723,116.7521634,110.3394983,866.7695106,0,0.987044171,9.232944683,-0.987044171,170.7670553,0.999343706,0,982.9528181,110.3394983,1055.167813,7,14,7% -2018-07-19 23:00:00,39.35866931,256.060742,770.3587074,848.3523364,114.4201129,916.1369156,799.3597019,116.7772137,110.9699244,5.807289337,190.2325761,0,190.2325761,3.45018857,186.7823875,0.686938369,4.469103034,0.815617409,-0.815617409,0.390674898,0.390674898,0.148528357,2.794333795,89.87538032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6685122,2.499649874,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.024485323,86.39163414,108.6929976,88.89128401,799.3597019,0,0.942249662,19.56714391,-0.942249662,160.4328561,0.996935508,0,905.6030677,88.89128401,963.7806353,7,15,6% -2018-07-19 00:00:00,51.06084229,267.0210348,601.8966458,794.6829024,102.4425849,775.371877,671.4809629,103.8909141,99.35356295,4.537351158,149.0258322,0,149.0258322,3.089021906,145.9368103,0.891179817,4.660396229,1.183372577,-1.183372577,0.32778506,0.32778506,0.170199627,2.006397592,64.5326435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.50242381,2.237985856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453628225,62.03123155,96.95605203,64.26921741,671.4809629,0,0.84496717,32.33158144,-0.84496717,147.6684186,0.990826103,0,762.2769179,64.26921741,804.3398353,7,16,6% -2018-07-19 01:00:00,62.88027897,276.0434396,403.0992163,696.6264996,85.54112867,574.9396903,488.9392101,86.00048019,82.96174803,3.038732162,100.3154526,0,100.3154526,2.579380643,97.73607191,1.097467903,4.817866899,1.754258387,-1.754258387,0.230157837,0.230157837,0.212208621,1.195817015,38.4615858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.74598781,1.868752495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866365357,36.97073923,80.61235316,38.83949172,488.9392101,0,0.701867084,45.42300696,-0.701867084,134.576993,0.978761441,0,559.1671988,38.83949172,584.5868693,7,17,5% -2018-07-19 02:00:00,74.50208793,284.4509067,193.1218516,499.2638115,59.71693359,320.4210949,261.0490131,59.37208181,57.91624771,1.455834092,48.62531469,0,48.62531469,1.80068588,46.82462881,1.300306734,4.964604882,2.973872773,-2.973872773,0.021591494,0.021591494,0.309218937,0.471885228,15.17745103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.67130025,1.30459079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.341879241,14.58914323,56.01317949,15.89373402,261.0490131,0,0.522867885,58.47517909,-0.522867885,121.5248209,0.954373549,0,305.1514527,15.89373402,315.5535838,7,18,3% -2018-07-19 03:00:00,85.59300001,293.0199261,19.83183898,91.14825204,12.8279307,41.89697334,29.3063513,12.59062204,12.44112126,0.149500779,5.195268407,0,5.195268407,0.386809441,4.808458966,1.493879667,5.114162484,9.486554706,-9.486554706,0,0,0.646835158,0.09670236,3.110280315,0.522021134,1,0.105024491,0,0.950661051,0.989423014,0.724496596,1,12.05779103,0.280242123,0.071565553,0.312029739,0.8171814,0.541677996,0.961238037,0.922476074,0.066289139,2.989719744,12.12408017,3.269961867,14.00781656,0,0.321524008,71.24488452,-0.321524008,108.7551155,0.894490617,0,24.65394065,3.269961867,26.79406529,7,19,9% -2018-07-19 04:00:00,96.26440915,302.3484657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680130892,5.276976214,-5.564768288,5.564768288,1,0.518214887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105141761,83.96466592,-0.105141761,96.03533408,0.574451564,0,0,0,0,7,20,0% -2018-07-19 05:00:00,105.6485368,312.9838785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843914816,5.462599186,-1.62160426,1.62160426,1,0.80746435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.103867455,95.96191973,0.103867455,84.03808027,0,0.568617261,0,0,0,7,21,0% -2018-07-19 06:00:00,113.4053721,325.4030162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979297132,5.679354029,-0.582230415,0.582230415,1,0.629720955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294174807,107.1080618,0.294174807,72.89193823,0,0.880033032,0,0,0,7,22,0% -2018-07-19 07:00:00,118.8766975,339.8111458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074789775,5.93082333,-0.005976657,0.005976657,1,0.531175758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452815101,116.9244419,0.452815101,63.07555813,0,0.939579654,0,0,0,7,23,0% -2018-07-20 08:00:00,121.3976767,355.7865861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118789164,6.209647362,0.445738227,-0.445738227,1,0.453927964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568979782,124.6791134,0.568979782,55.32088657,0,0.962123415,0,0,0,7,0,0% -2018-07-20 09:00:00,120.5831404,12.14197777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104572822,0.21191749,0.90019959,-0.90019959,1,0.376210493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634753375,129.4016952,0.634753375,50.59830485,0,0.971229249,0,0,0,7,1,0% -2018-07-20 10:00:00,116.5639271,27.46725721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034424317,0.479394075,1.473854561,-1.473854561,1,0.278109715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645652965,130.2146502,0.645652965,49.78534981,0,0.972559017,0,0,0,7,2,0% -2018-07-20 11:00:00,109.9009781,40.92400682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918133919,0.714258662,2.414203053,-2.414203053,1,0.117300653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600933952,126.9368164,0.600933952,53.06318364,0,0.966796181,0,0,0,7,3,0% -2018-07-20 12:00:00,101.2835399,52.43842995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767731249,0.915223257,4.778411049,-4.778411049,1,0,#DIV/0!,0,0,0.223000869,1,0.20629732,0,0.938042711,0.976804674,0.724496596,1,0,0,0.034504962,0.312029739,0.906813141,0.631309737,0.961238037,0.922476074,0,0,0,0,0,0,-0.50364129,120.2411996,0.50364129,59.75880037,0,0.950722993,0,0,0,7,4,0% -2018-07-20 13:00:00,91.31022103,62.38591705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593663998,1.088839659,43.33673632,-43.33673632,1,0,#DIV/0!,0,0,0.873110371,1,0.023071017,0,0.959139733,0.997901697,0.724496596,1,0,0,0.105484008,0.312029739,0.744743412,0.469240008,0.961238037,0.922476074,0,0,0,0,0,0,-0.360402627,111.1249248,0.360402627,68.8750752,0,0.911266272,0,0,0,7,5,0% -2018-07-20 14:00:00,80.33821815,71.29119855,92.00109047,316.2516151,38.92399818,38.4438391,0,38.4438391,37.75029602,0.693543081,80.20738383,56.72695214,23.4804317,1.173702159,22.30672954,1.402166422,1.244266142,-5.872337978,5.872337978,0.465617372,0.465617372,0.423081922,0.479727218,15.42967638,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.28702043,0.850343219,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.347560736,14.83159184,36.63458117,15.68193505,0,56.72695214,-0.179372846,100.333232,0.179372846,79.66676802,0,0.771251008,36.63458117,59.43265405,75.53206459,7,6,106% -2018-07-20 15:00:00,68.93557844,79.72159623,294.1845723,613.1439812,73.80994988,88.00231208,14.20031695,73.80199513,71.58430756,2.21768757,73.55409782,0,73.55409782,2.225642319,71.3284555,1.203152815,1.391404339,-2.559075739,2.559075739,0.967781415,0.967781415,0.250896739,2.164163576,69.60693987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80955927,1.612470283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567929144,66.90883823,70.37748841,68.52130852,14.20031695,0,0.023159841,88.67292022,-0.023159841,91.32707978,0,0,70.37748841,68.52130852,115.2233144,7,7,64% -2018-07-20 16:00:00,57.18931052,88.33889259,501.7239535,751.631779,94.44098261,273.0083676,177.6329219,95.37544563,91.59323854,3.78220709,124.4965254,0,124.4965254,2.847744076,121.6487813,0.998141766,1.541804533,-1.472285585,1.472285585,0.781929353,0.781929353,0.188232956,3.112671091,100.114202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.0429048,2.063180889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.25511961,96.23357903,90.29802441,98.29675992,177.6329219,0,0.236329712,76.32998229,-0.236329712,103.6700177,0.838431173,0,239.2310035,98.29675992,303.5642669,7,8,27% -2018-07-20 17:00:00,45.38972086,98.11957437,687.6615849,824.366808,108.7246179,477.6244228,366.9943698,110.630053,105.4461695,5.183883497,170.0099611,0,170.0099611,3.278448381,166.7315127,0.792200076,1.712509633,-0.894046365,0.894046365,0.683044623,0.683044623,0.158107738,3.800604208,122.2404958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.358869,2.375224692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753524811,117.5022142,104.1123938,119.8774389,366.9943698,0,0.445183341,63.56493054,-0.445183341,116.4350695,0.937686723,0,448.2381417,119.8774389,526.6955279,7,9,18% -2018-07-20 18:00:00,33.93934614,110.9600993,836.3249837,864.9165276,118.765085,671.0508514,549.5624009,121.4884505,115.1838795,6.304570992,206.3578804,0,206.3578804,3.58120551,202.7766749,0.592353336,1.93661907,-0.50820378,0.50820378,0.617061654,0.617061654,0.142008295,4.233154235,136.1527916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7191262,2.594571201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066905833,130.8752421,113.7860321,133.4698133,549.5624009,0,0.635393571,50.55081901,-0.635393571,129.449181,0.971308615,0,647.5807266,133.4698133,734.93405,7,10,13% -2018-07-20 19:00:00,23.76735615,131.3753588,936.5232251,886.6171065,125.1006152,832.3274413,703.9391635,128.3882777,121.3283701,7.05990766,230.8431437,0,230.8431437,3.77224512,227.0708986,0.414818619,2.292932567,-0.210968825,0.210968825,0.566231484,0.566231484,0.133579832,4.40661228,141.7317986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6254443,2.732978748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.192575596,136.2379958,119.8180198,138.9709746,703.9391635,0,0.793960728,37.44279627,-0.793960728,142.5572037,0.987024593,0,814.6232862,138.9709746,905.5770097,7,11,11% -2018-07-20 20:00:00,17.61572899,168.0137916,980.9886759,895.1355341,127.8281735,945.9941655,814.6253761,131.3687894,123.9736824,7.395107011,241.706553,0,241.706553,3.854491065,237.852062,0.307452471,2.932393852,0.044266047,-0.044266047,0.52258375,0.52258375,0.130305453,4.324611919,139.0943851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1682191,2.792565656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.133166614,133.7028136,122.3013857,136.4953793,814.6253761,0,0.910058137,24.4866132,-0.910058137,155.5133868,0.995058455,0,932.9012539,136.4953793,1022.23475,7,12,10% -2018-07-20 21:00:00,19.81629678,212.2777237,966.5340762,892.4335502,126.9465294,1001.206029,870.8012641,130.4047653,123.1186232,7.286142132,238.1752832,0,238.1752832,3.827906245,234.3473769,0.345859624,3.704945207,0.285026549,-0.285026549,0.481411279,0.481411279,0.131342011,4.003908254,128.7794528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3463036,2.773305044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9008179,123.7877084,121.2471215,126.5610134,870.8012641,0,0.97576034,12.64101895,-0.97576034,167.3589811,0.998757909,0,990.9667714,126.5610134,1073.798423,7,13,8% -2018-07-20 22:00:00,28.47198511,239.9401957,894.1763803,877.9006185,122.4575648,991.6260006,866.1203039,125.5056966,118.7650174,6.740679256,220.4959632,0,220.4959632,3.692547398,216.8034158,0.496929885,4.187746423,0.533985083,-0.533985083,0.438836862,0.438836862,0.136950122,3.476088905,111.8029682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1614522,2.67523802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.518414579,107.4692656,116.6798667,110.1445037,866.1203039,0,0.986581266,9.396805443,-0.986581266,170.6031946,0.999319938,0,982.2111549,110.1445037,1054.29853,7,14,7% -2018-07-20 23:00:00,39.45621984,255.8059945,769.0965418,848.0149287,114.3354041,915.3301498,798.6446054,116.6855444,110.8877698,5.7977746,189.9239951,0,189.9239951,3.447634286,186.4763608,0.688640947,4.46465685,0.818831692,-0.818831692,0.390125223,0.390125223,0.148661966,2.787514408,89.65604537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5895421,2.497799304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019544699,86.18080104,108.6090868,88.67860034,798.6446054,0,0.941781304,19.64711236,-0.941781304,160.3528876,0.996909118,0,904.785176,88.67860034,962.8235464,7,15,6% -2018-07-20 00:00:00,51.15151177,266.8078406,600.4680456,794.1388352,102.3340385,774.3640478,670.5891763,103.7748715,99.2482897,4.526581766,148.6761785,0,148.6761785,3.085748834,145.5904296,0.892762298,4.656675289,1.188554967,-1.188554967,0.32689882,0.32689882,0.170423787,1.998989532,64.29437482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.40123116,2.235614526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.448261111,61.80219863,96.84949227,64.03781316,670.5891763,0,0.844423099,32.3898217,-0.844423099,147.6101783,0.990787977,0,761.2611856,64.03781316,803.1726536,7,16,6% -2018-07-20 01:00:00,62.97212679,275.8575569,401.4720569,695.5819308,85.38300159,573.5647381,487.7298831,85.83485501,82.80838906,3.026465947,99.91616081,0,99.91616081,2.574612528,97.34154828,1.099070949,4.814622635,1.763994124,-1.763994124,0.228492928,0.228492928,0.21267483,1.188109009,38.21366983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.59857333,1.865298012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860780933,36.73243297,80.45935427,38.59773098,487.7298831,0,0.701182508,45.47804602,-0.701182508,134.521954,0.978691889,0,557.796635,38.59773098,583.0580779,7,17,5% -2018-07-20 02:00:00,74.60029109,284.2828962,191.3554736,496.8073002,59.42768921,318.4067119,259.3284684,59.0782435,57.63572511,1.442518389,48.18831411,0,48.18831411,1.791964094,46.39635002,1.302020702,4.961672545,2.999801066,-2.999801066,0.017157494,0.017157494,0.310561742,0.465054621,14.95775523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.40165126,1.298271886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33693049,14.37796328,55.73858175,15.67623516,259.3284684,0,0.521990052,58.53416485,-0.521990052,121.4658352,0.954212734,0,303.1931086,15.67623516,313.452891,7,18,3% -2018-07-20 03:00:00,85.6990573,292.864358,18.79306873,86.81580596,12.28230575,39.87423168,27.82061268,12.053619,11.91194891,0.14167009,4.926953927,0,4.926953927,0.370356835,4.556597091,1.495730716,5.111447309,9.745993778,-9.745993778,0,0,0.653555091,0.092589209,2.977987228,0.53194683,1,0.102248439,0,0.950974048,0.989736011,0.724496596,1,11.54406871,0.268322266,0.07265041,0.312029739,0.814722057,0.539218653,0.961238037,0.922476074,0.06349507,2.862554597,11.60756378,3.130876863,13.02152596,0,0.320455617,71.30951909,-0.320455617,108.6904809,0.893972153,0,23.24844538,3.130876863,25.29754167,7,19,9% -2018-07-20 04:00:00,96.38836993,302.2034726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682294416,5.274445607,-5.473792495,5.473792495,1,0.533772664,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103751632,84.04475251,-0.103751632,95.95524749,0.568079868,0,0,0,0,7,20,0% -2018-07-20 05:00:00,105.790149,312.8517842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846386416,5.460293704,-1.613567247,1.613567247,1,0.80608994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105531597,96.05779497,0.105531597,83.94220503,0,0.576208248,0,0,0,7,21,0% -2018-07-20 06:00:00,113.5662648,325.2916961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98210524,5.677411126,-0.582083815,0.582083815,1,0.629695885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296102146,107.2236386,0.296102146,72.77636139,0,0.881139353,0,0,0,7,22,0% -2018-07-20 07:00:00,119.0552107,339.7341994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077905418,5.929480361,-0.008350133,0.008350133,1,0.531581647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454976795,117.0634412,0.454976795,62.93655883,0,0.940104285,0,0,0,7,23,0% -2018-07-21 08:00:00,121.587171,355.7583483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122096463,6.20915452,0.441669656,-0.441669656,1,0.45462373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571330928,124.8430877,0.571330928,55.15691235,0,0.962485046,0,0,0,7,0,0% -2018-07-21 09:00:00,120.7731307,12.1674664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10788878,0.21236235,0.894055114,-0.894055114,1,0.37726126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637236089,129.586029,0.637236089,50.41397098,0,0.971536145,0,0,0,7,1,0% -2018-07-21 10:00:00,116.7446464,27.53808224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037578464,0.480630205,1.463962301,-1.463962301,1,0.279801392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648200355,130.4060534,0.648200355,49.59394662,0,0.972863356,0,0,0,7,2,0% -2018-07-21 11:00:00,110.0670364,41.02595942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921032183,0.716038071,2.394879084,-2.394879084,1,0.120605246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603474722,127.1191637,0.603474722,52.8808363,0,0.967146488,0,0,0,7,3,0% -2018-07-21 12:00:00,101.4339035,52.56012878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77035559,0.917347302,4.717064036,-4.717064036,1,0,#DIV/0!,0,0,0.216615135,1,0.208903381,0,0.937687774,0.976449737,0.724496596,1,0,0,0.033608853,0.312029739,0.909114991,0.633611587,0.961238037,0.922476074,0,0,0,0,0,0,-0.506104647,120.4047088,0.506104647,59.59529124,0,0.951206202,0,0,0,7,4,0% -2018-07-21 13:00:00,91.44645329,62.52151425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596041699,1.091206277,39.26593527,-39.26593527,1,0,#DIV/0!,0,0,0.860815668,1,0.025461864,0,0.958914958,0.997676921,0.724496596,1,0,0,0.104434102,0.312029739,0.746847231,0.471343827,0.961238037,0.922476074,0,0,0,0,0,0,-0.362723166,111.2675295,0.362723166,68.73247053,0,0.912153828,0,0,0,7,5,0% -2018-07-21 14:00:00,80.46197828,71.43962877,89.9975431,311.4587298,38.38818601,37.90908006,0,37.90908006,37.23064056,0.678439495,79.50094057,56.52244885,22.97849173,1.157545446,21.82094628,1.404326444,1.246856738,-5.949621255,5.949621255,0.452401153,0.452401153,0.426547044,0.465394448,14.96868522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.78750785,0.838637735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337176693,14.3884696,36.12468454,15.22710733,0,56.52244885,-0.181476528,100.4557752,0.181476528,79.5442248,0,0.774482276,36.12468454,59.00274213,74.74079921,7,6,107% -2018-07-21 15:00:00,69.0523006,79.88551833,292.0623911,611.1881865,73.55307274,86.54426815,13.00740226,73.53686589,71.33517622,2.201689672,73.03180463,0,73.03180463,2.217896525,70.8139081,1.205190002,1.394265319,-2.573429465,2.573429465,0.970236047,0.970236047,0.251840275,2.152662025,69.23701046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.57008475,1.606858482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559596309,66.55324802,70.12968106,68.1601065,13.00740226,0,0.021282156,88.78053022,-0.021282156,91.21946978,0,0,70.12968106,68.1601065,114.7391076,7,7,64% -2018-07-21 16:00:00,57.30257918,88.52438585,499.8085108,750.6988233,94.27917532,271.4041809,176.2001029,95.20407801,91.43631034,3.767767674,124.027225,0,124.027225,2.842864989,121.18436,1.000118677,1.545042001,-1.477101663,1.477101663,0.782752951,0.782752951,0.188630592,3.103632273,99.82348255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89205944,2.059646007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248571016,95.9541284,90.14063046,98.01377441,176.2001029,0,0.234714772,76.42518986,-0.234714772,103.5748101,0.836975487,0,237.6157974,98.01377441,301.7638524,7,8,27% -2018-07-21 17:00:00,45.50547888,98.33636293,685.985062,823.8376398,108.6058198,476.1538759,365.6516771,110.5021988,105.3309536,5.171245159,169.5998865,0,169.5998865,3.27486618,166.3250203,0.794220434,1.716293308,-0.895845244,0.895845244,0.683352249,0.683352249,0.158320969,3.793026762,121.9967791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2481191,2.372629399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748034977,117.2679445,103.9961541,119.6405739,365.6516771,0,0.443839489,63.65088651,-0.443839489,116.3491135,0.937346662,0,446.738533,119.6405739,525.0408958,7,9,18% -2018-07-21 18:00:00,34.06742429,111.2189498,834.8625975,864.570726,118.6704039,669.7906659,548.4050657,121.3856003,115.0920534,6.293546907,206.000453,0,206.000453,3.578350524,202.4221025,0.594588722,1.941136864,-0.508652201,0.508652201,0.617138339,0.617138339,0.142143634,4.226492391,135.9385238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6308594,2.592502774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.06207935,130.6692797,113.6929388,133.2617825,548.4050657,0,0.634309085,50.63124063,-0.634309085,129.3687594,0.971174076,0,646.2897214,133.2617825,733.5068929,7,10,13% -2018-07-21 19:00:00,23.92429791,131.6554322,935.2251419,886.3589978,125.0202822,831.2768222,702.9762406,128.3005816,121.2504594,7.05012216,230.5259861,0,230.5259861,3.769822785,226.7561633,0.41755777,2.29782077,-0.210631336,0.210631336,0.566173769,0.566173769,0.133679343,4.40045624,141.5337992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5505536,2.731223775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.188115566,136.0476713,119.7386692,138.778895,702.9762406,0,0.79310555,37.52331548,-0.79310555,142.4766845,0.986956689,0,813.5457719,138.778895,904.3737831,7,11,11% -2018-07-21 20:00:00,17.8081385,168.0887549,979.7901889,894.9138781,127.7552492,945.1112934,813.8222641,131.2890294,123.9029571,7.386072309,241.413767,0,241.413767,3.85229213,237.5614749,0.31081065,2.933702208,0.045198099,-0.045198099,0.52242436,0.52242436,0.130390415,4.318604316,138.9011599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1002352,2.790972534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128814126,133.5170783,122.2290493,136.3080508,813.8222641,0,0.909386125,24.57934403,-0.909386125,155.420656,0.995017855,0,931.9967327,136.3080508,1021.207626,7,12,10% -2018-07-21 21:00:00,19.98448297,211.9937225,965.3622399,892.2117305,126.8748484,1000.422444,870.0960319,130.3264119,123.0491036,7.277308335,237.8889964,0,237.8889964,3.825744797,234.0632516,0.348795027,3.699988452,0.286546267,-0.286546267,0.481151392,0.481151392,0.131427192,3.997732625,128.5808233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2794788,2.771739082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.896343678,123.5967782,121.1758224,126.3685173,870.0960319,0,0.9752125,12.7836594,-0.9752125,167.2163406,0.998729123,0,990.1660695,126.3685173,1072.871737,7,13,8% -2018-07-21 22:00:00,28.59692958,239.628917,892.9562689,877.6400869,122.3807014,990.8539225,865.4319693,125.4219533,118.6904717,6.731481541,220.1978154,0,220.1978154,3.690229684,216.5075857,0.499110577,4.182313584,0.536241798,-0.536241798,0.438450941,0.438450941,0.13705117,3.469485669,111.5905854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.089796,2.673558844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513630557,107.2651152,116.6034266,109.9386741,865.4319693,0,0.986089836,9.567720314,-0.986089836,170.4322797,0.999294681,0,981.42499,109.9386741,1053.377653,7,14,7% -2018-07-21 23:00:00,39.55947476,255.5470044,767.7577735,847.6561472,114.245485,914.4653235,797.8770789,116.5882445,110.8005621,5.787682399,189.5966839,0,189.5966839,3.444922895,186.151761,0.690443085,4.460136621,0.822212937,-0.822212937,0.389546996,0.389546996,0.148804075,2.780315176,89.42449334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5057148,2.49583491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014328881,85.95822442,108.5200437,88.45405933,797.8770789,0,0.941274456,19.73330199,-0.941274456,160.266698,0.99688053,0,903.9081692,88.45405933,961.799582,7,15,6% -2018-07-21 00:00:00,51.24756056,266.5905769,598.9528216,793.5598183,102.2187554,773.2812139,669.6295718,103.6516422,99.13648281,4.515159368,148.3053187,0,148.3053187,3.082272623,145.223046,0.894438665,4.652883322,1.193999563,-1.193999563,0.325967739,0.325967739,0.170662449,1.991184086,64.04332485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.29375812,2.233096023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442606092,61.56087985,96.73636421,63.79397587,669.6295718,0,0.843829988,32.4532054,-0.843829988,147.5467946,0.990746358,0,760.1694237,63.79397587,801.921305,7,16,5% -2018-07-21 01:00:00,63.06922429,275.6679743,399.7508466,694.4713852,85.21526847,572.0937093,486.4345049,85.65920446,82.64571372,3.013490737,99.49377567,0,99.49377567,2.569554755,96.92422091,1.100765621,4.811313794,1.774234732,-1.774234732,0.226741681,0.226741681,0.213170952,1.180016353,37.95338219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44220361,1.861633673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.854917831,36.48223458,80.29712144,38.34386826,486.4345049,0,0.700438514,45.53780339,-0.700438514,134.4621966,0.978616147,0,556.3297823,38.34386826,581.4250772,7,17,5% -2018-07-21 02:00:00,74.70374051,284.1115467,189.4960221,494.1997238,59.12115391,316.2664813,257.4995472,58.76693404,57.33843298,1.428501058,47.72822539,0,47.72822539,1.782720924,45.94550446,1.303826235,4.958681932,3.0272422,-3.0272422,0.012464784,0.012464784,0.31199153,0.45793088,14.72863124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.11588276,1.291575241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.331769364,14.15772058,55.44765212,15.44929582,257.4995472,0,0.521043487,58.59772741,-0.521043487,121.4022726,0.95403872,0,301.1121905,15.44929582,311.2234456,7,18,3% -2018-07-21 03:00:00,85.81021296,292.7058008,17.73058073,82.33861596,11.71488645,37.78723642,26.2919364,11.49530001,11.3616394,0.133660607,4.652231625,0,4.652231625,0.35324705,4.298984575,1.497670748,5.108679964,10.03117719,-10.03117719,0,0,0.660716456,0.088311762,2.840409851,0.542392452,1,0.099360917,0,0.951297717,0.99005968,0.724496596,1,11.00983174,0.255926285,0.073783202,0.312029739,0.812164064,0.53666066,0.961238037,0.922476074,0.060589961,2.730309989,11.0704217,2.986236274,12.03138855,0,0.319314772,71.37850972,-0.319314772,108.6214903,0.893414698,0,21.81944106,2.986236274,23.77387298,7,19,9% -2018-07-21 04:00:00,96.51790788,302.0558925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68455528,5.27186985,-5.38188602,5.38188602,1,0.549489596,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102278251,84.12962252,-0.102278251,95.87037748,0.561137516,0,0,0,0,7,20,0% -2018-07-21 05:00:00,105.9375702,312.7176727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848959402,5.457953018,-1.60514398,1.60514398,1,0.804649477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107282521,96.15868836,0.107282521,83.84131164,0,0.583940855,0,0,0,7,21,0% -2018-07-21 06:00:00,113.7331748,325.1792665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985018369,5.67544886,-0.58180313,0.58180313,1,0.629647885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298117073,107.3445452,0.298117073,72.65545476,0,0.882280656,0,0,0,7,22,0% -2018-07-21 07:00:00,119.2398027,339.6575479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081127156,5.92814254,-0.010676946,0.010676946,1,0.531979555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457224102,117.2081285,0.457224102,62.79187155,0,0.940644435,0,0,0,7,23,0% -2018-07-22 08:00:00,121.782498,355.73223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125505562,6.20869867,0.437605595,-0.437605595,1,0.455318725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573763068,125.013055,0.573763068,54.98694498,0,0.962856015,0,0,0,7,0,0% -2018-07-22 09:00:00,120.9683284,12.1968359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111295622,0.212874945,0.887888643,-0.887888643,1,0.378315789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639792849,129.7763745,0.639792849,50.22362549,0,0.971849705,0,0,0,7,1,0% -2018-07-22 10:00:00,116.9296982,27.61396605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040808226,0.481954627,1.454030516,-1.454030516,1,0.281499827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650812994,130.6029262,0.650812994,49.39707377,0,0.973173015,0,0,0,7,2,0% -2018-07-22 11:00:00,110.2365288,41.13350166,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923990384,0.717915037,2.375535866,-2.375535866,1,0.123913131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606070698,127.3059279,0.606070698,52.69407205,0,0.967501374,0,0,0,7,3,0% -2018-07-22 12:00:00,101.5869327,52.68756821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773026453,0.91957154,4.656308648,-4.656308648,1,0,#DIV/0!,0,0,0.210186687,1,0.211549043,0,0.937325925,0.976087888,0.724496596,1,0,0,0.032701751,0.312029739,0.911451523,0.635948119,0.961238037,0.922476074,0,0,0,0,0,0,-0.508612615,120.5714608,0.508612615,59.42853917,0,0.951693355,0,0,0,7,4,0% -2018-07-22 13:00:00,91.58476458,62.66289275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598455687,1.093673797,35.8489499,-35.8489499,1,0,#DIV/0!,0,0,0.848493521,1,0.027887588,0,0.958685502,0.997447466,0.724496596,1,0,0,0.103372915,0.312029739,0.748982663,0.473479259,0.961238037,0.922476074,0,0,0,0,0,0,-0.365077895,111.4123766,0.365077895,68.58762344,0,0.913042927,0,0,0,7,5,0% -2018-07-22 14:00:00,80.58737513,71.59394058,87.97688034,306.5622371,37.84066661,37.36283778,0,37.36283778,36.69963089,0.663206886,78.75816384,56.28611492,22.47204891,1.141035715,21.3310132,1.406515032,1.249549988,-6.029926935,6.029926935,0.438668073,0.438668073,0.430120578,0.451052631,14.50740309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.27708115,0.826676492,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.326786096,13.94506767,35.60386725,14.77174416,0,56.28611492,-0.183604202,100.5797652,0.183604202,79.42023479,0,0.777675078,35.60386725,58.54405297,73.91977903,7,6,108% -2018-07-22 15:00:00,69.17047462,80.05558629,289.9133971,609.1921385,73.29159004,85.07802312,11.81095529,73.26706783,71.08157819,2.185489647,72.50287148,0,72.50287148,2.210011857,70.29285962,1.207252527,1.397233565,-2.588061692,2.588061692,0.972738305,0.972738305,0.252805116,2.140971662,68.8610082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32631667,1.601146067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551126681,66.19182033,69.87744335,67.7929664,11.81095529,0,0.019387898,88.88908564,-0.019387898,91.11091436,0,0,69.87744335,67.7929664,114.246584,7,7,63% -2018-07-22 16:00:00,57.41728186,88.71653992,497.8666529,749.7482183,94.11474995,269.7881028,174.7581307,95.02997213,91.276843,3.753129129,123.551441,0,123.551441,2.837906958,120.7135341,1.002120616,1.548395723,-1.481951269,1.481951269,0.783582282,0.783582282,0.189036059,3.094428826,99.52746806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73877337,2.05605393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24190315,95.66958801,89.98067652,97.72564194,174.7581307,0,0.233089091,76.52099204,-0.233089091,103.479008,0.835489747,0,235.9893028,97.72564194,299.948781,7,8,27% -2018-07-22 17:00:00,45.62290605,98.56066751,684.2810738,823.2978967,108.4849269,474.6717769,364.2996711,110.3721059,105.2137061,5.158399776,169.1830895,0,169.1830895,3.271220812,165.9118687,0.796269925,1.720208161,-0.897619641,0.897619641,0.683655689,0.683655689,0.158538547,3.785277375,121.7475322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1354163,2.369988343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.742420573,117.0283588,103.8778369,119.3983472,364.2996711,0,0.442488281,63.73724865,-0.442488281,116.2627513,0.937002657,0,445.2275966,119.3983472,523.3714269,7,9,18% -2018-07-22 18:00:00,34.19779417,111.4865167,833.3691245,864.216629,118.5736378,668.5179411,547.2374475,121.2804936,114.9982052,6.282288477,205.6354253,0,205.6354253,3.575432671,202.0599926,0.596864105,1.945806789,-0.509053581,0.509053581,0.617206979,0.617206979,0.142282254,4.21963496,135.7179652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.540649,2.590388799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057111164,130.4572705,113.5977601,133.0476592,547.2374475,0,0.63321791,50.71206486,-0.63321791,129.2879351,0.971038241,0,644.9862485,133.0476592,732.0632806,7,10,14% -2018-07-22 19:00:00,24.08474367,131.9451142,933.8897972,886.0929004,124.9375996,830.2099688,701.9996431,128.2103258,121.17027,7.040055768,230.1997231,0,230.1997231,3.767329599,226.4323935,0.420358076,2.302876674,-0.210232757,0.210232757,0.566105609,0.566105609,0.133781952,4.394070851,141.3284231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4734725,2.72941747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183489373,135.850256,119.6569619,138.5796734,701.9996431,0,0.792241584,37.60451278,-0.792241584,142.3954872,0.986887938,0,812.451942,138.5796734,903.1495667,7,11,11% -2018-07-22 20:00:00,18.00577011,168.1725871,978.5460847,894.6833351,127.6795159,944.2054886,812.9992875,131.2062012,123.8295075,7.376693726,241.1098359,0,241.1098359,3.850008493,237.2598274,0.314259973,2.935165357,0.046204906,-0.046204906,0.522252185,0.522252185,0.130478797,4.312327705,138.6992825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0296327,2.789318047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124266743,133.323026,122.1538994,136.1123441,812.9992875,0,0.908700605,24.67360218,-0.908700605,155.3263978,0.994976376,0,931.0689845,136.1123441,1020.151791,7,12,10% -2018-07-22 21:00:00,20.15920558,211.7129297,964.1348269,891.9789393,126.799734,999.6063506,869.3620408,130.2443098,122.9762542,7.268055578,237.589131,0,237.589131,3.823479822,233.7656512,0.351844512,3.695087692,0.28815859,-0.28815859,0.480875668,0.480875668,0.1315166,3.991246436,128.3722052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2094532,2.770098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891644456,123.3962465,121.1010976,126.1663446,869.3620408,0,0.974644134,12.93000848,-0.974644134,167.0699915,0.998699224,0,989.3322935,126.1663446,1071.905643,7,13,8% -2018-07-22 22:00:00,28.72813924,239.3148721,891.6697445,877.3647825,122.2996093,990.0371879,864.7035798,125.333608,118.6118248,6.721783177,219.8834374,0,219.8834374,3.687784458,216.195653,0.501400618,4.176832468,0.538618591,-0.538618591,0.438044486,0.438044486,0.137157967,3.462532759,111.3669559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0141977,2.671787286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.508593197,107.0501541,116.5227909,109.7219413,864.7035798,0,0.985569055,9.745602031,-0.985569055,170.254398,0.999267888,0,980.5933106,109.7219413,1052.404127,7,14,7% -2018-07-22 23:00:00,39.66844927,255.2840057,766.3417336,847.2756497,114.1502983,913.5413821,797.0561288,116.4852533,110.7082456,5.777007692,189.2504784,0,189.2504784,3.442052664,185.8084257,0.692345049,4.455546428,0.825762109,-0.825762109,0.388940052,0.388940052,0.148954824,2.772734803,89.18068249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4169767,2.493755438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008836926,85.72386416,108.4258136,88.2176196,797.0561288,0,0.940728238,19.82578376,-0.940728238,160.1742162,0.996849687,0,902.9709664,88.2176196,960.7076341,7,15,6% -2018-07-22 00:00:00,51.34899955,266.3694035,597.3504854,792.9453064,102.09667,772.1223247,668.6011658,103.5211589,99.01807866,4.503080281,147.9131324,0,147.9131324,3.078591296,144.8345411,0.89620911,4.649023117,1.19970879,-1.19970879,0.324991404,0.324991404,0.170915857,1.982981278,63.77949436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17994355,2.230428914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436663186,61.30727595,96.61660673,63.53770486,668.6011658,0,0.84318699,32.52179601,-0.84318699,147.478204,0.990701172,0,759.0005655,63.53770486,800.5847225,7,16,5% -2018-07-22 01:00:00,63.17157312,275.4748106,397.9353921,693.2937436,85.03782739,570.5255637,485.0521355,85.47342821,82.47362313,2.999805074,99.0482472,0,99.0482472,2.564204252,96.48404295,1.102551945,4.807942451,1.784988563,-1.784988563,0.224902668,0.224902668,0.213697573,1.171541132,37.68078996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.27678359,1.857757252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.848777562,36.22020856,80.12556116,38.07796582,485.0521355,0,0.699634376,45.60232273,-0.699634376,134.3976773,0.9785341,0,554.7656162,38.07796582,579.6868833,7,17,4% -2018-07-22 02:00:00,74.81242654,283.9369521,187.5439221,491.4380322,58.79704749,313.9992623,255.5613774,58.43788487,57.02409957,1.413785304,47.24514315,0,47.24514315,1.77294792,45.47219523,1.305723164,4.955634683,3.056247773,-3.056247773,0.007504539,0.007504539,0.313510813,0.450520498,14.49028786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.81373352,1.284494732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326400567,13.92861585,55.14013409,15.21311059,255.5613774,0,0.520027675,58.66589208,-0.520027675,121.3341079,0.953851271,0,298.9076788,15.21311059,308.8643554,7,18,3% -2018-07-22 03:00:00,85.92642326,292.5443312,16.64914091,77.73310663,11.1271797,35.6441883,24.72702586,10.91716243,10.79165417,0.125508257,4.372302494,0,4.372302494,0.335525523,4.036776971,1.499699,5.105861788,10.34515113,-10.34515113,0,0,0.668333565,0.083881381,2.697913544,0.553366325,1,0.09636425,0,0.951631572,0.990393535,0.724496596,1,10.45650824,0.243087099,0.074963574,0.312029739,0.809509522,0.534006118,0.961238037,0.922476074,0.057581248,2.593337118,10.51408949,2.836424217,11.04392243,0,0.318101604,71.4518433,-0.318101604,108.5481567,0.892817517,0,20.37429688,2.836424217,22.2306798,7,19,9% -2018-07-22 04:00:00,96.65299214,301.9057886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686912945,5.269250042,-5.289346707,5.289346707,1,0.565314751,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100721666,84.21927129,-0.100721666,95.78072871,0.553582476,0,0,0,0,7,20,0% -2018-07-22 05:00:00,106.0907595,312.5815957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851633059,5.455578027,-1.596353745,1.596353745,1,0.803146258,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109119847,96.26458112,0.109119847,83.73541888,0,0.591788215,0,0,0,7,21,0% -2018-07-22 06:00:00,113.906052,325.065771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988035646,5.673467989,-0.581390022,0.581390022,1,0.629577239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300218873,107.4707496,0.300218873,72.52925041,0,0.883454841,0,0,0,7,22,0% -2018-07-22 07:00:00,119.4304153,339.5812333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084453974,5.926810599,-0.012954932,0.012954932,1,0.532369113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459555991,117.3584601,0.459555991,62.64153986,0,0.941199329,0,0,0,7,23,0% -2018-07-23 08:00:00,121.9835907,355.7082784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12901529,6.208280635,0.43355008,-0.43355008,1,0.456012259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576274897,125.188963,0.576274897,54.81103701,0,0.963235853,0,0,0,7,0,0% -2018-07-23 09:00:00,121.1686564,12.23013405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114792005,0.213456107,0.881706233,-0.881706233,1,0.379373043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642422142,129.9726705,0.642422142,50.02732945,0,0.972169557,0,0,0,7,1,0% -2018-07-23 10:00:00,117.1189982,27.69494255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044112135,0.483367934,1.444068863,-1.444068863,1,0.28320337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653489237,130.8051949,0.653489237,49.19480507,0,0.973487646,0,0,0,7,2,0% -2018-07-23 11:00:00,110.4093704,41.24664438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927007038,0.71988975,2.356191922,-2.356191922,1,0.12722114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608720191,127.4970219,0.608720191,52.50297814,0,0.967860454,0,0,0,7,3,0% -2018-07-23 12:00:00,101.742548,52.82073628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775742452,0.921895761,4.596190288,-4.596190288,1,0,#DIV/0!,0,0,0.203720943,1,0.214232738,0,0.936957313,0.975719276,0.724496596,1,0,0,0.031784287,0.312029739,0.913821341,0.638317937,0.961238037,0.922476074,0,0,0,0,0,0,-0.511163546,120.7413641,0.511163546,59.25863594,0,0.952183948,0,0,0,7,4,0% -2018-07-23 13:00:00,91.7250851,62.81002159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600904742,1.09624168,32.942179,-32.942179,1,0,#DIV/0!,0,0,0.836153962,1,0.0303469,0,0.95845143,0.997213393,0.724496596,1,0,0,0.102301151,0.312029739,0.751148571,0.475645167,0.961238037,0.922476074,0,0,0,0,0,0,-0.367465293,111.55938,0.367465293,68.44061998,0,0.913932728,0,0,0,7,5,0% -2018-07-23 14:00:00,80.71434937,71.75408677,85.94072523,301.5631527,37.28150087,36.80518355,0,36.80518355,36.15732607,0.647857488,77.97822085,56.01672223,21.96149862,1.124174805,20.83732382,1.40873115,1.252345066,-6.113374453,6.113374453,0.424397707,0.424397707,0.43380482,0.436718631,14.0463724,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.75579713,0.81446082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316401162,13.50190743,35.07219829,14.31636825,0,56.01672223,-0.185754532,100.7051264,0.185754532,79.29487359,0,0.780827563,35.07219829,58.05576895,73.06853795,7,6,108% -2018-07-23 15:00:00,69.29005563,80.23173635,287.7384226,607.1558398,73.02553385,83.60457781,10.61193948,72.99263834,70.82354457,2.169093771,71.96750115,0,71.96750115,2.201989281,69.76551187,1.20933961,1.400307964,-2.602971724,2.602971724,0.975288071,0.975288071,0.253791389,2.129095129,68.47901808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.07828494,1.595333738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.542522174,65.8246369,69.62080711,67.41997064,10.61193948,0,0.017478115,88.99852679,-0.017478115,91.00147321,0,0,69.62080711,67.41997064,113.7458295,7,7,63% -2018-07-23 16:00:00,57.53338771,88.91526935,495.8988334,748.779953,93.94772589,268.1608188,173.3076686,94.8531502,91.11485532,3.738294875,123.069284,0,123.069284,2.832870566,120.2364135,1.004147045,1.551864205,-1.486832245,1.486832245,0.784416978,0.784416978,0.189449379,3.085061669,99.22618811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.58306466,2.052405081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235116677,95.37998627,89.81818133,97.43239135,173.3076686,0,0.231453404,76.61734521,-0.231453404,103.3826548,0.833973797,0,234.3522357,97.43239135,298.1197872,7,8,27% -2018-07-23 17:00:00,45.741986,98.79236627,682.5497263,822.7475089,108.3619386,473.1784782,362.9387038,110.2397744,105.0944263,5.145348147,168.7595957,0,168.7595957,3.267512261,165.4920834,0.798348262,1.724252067,-0.899368139,0.899368139,0.6839547,0.6839547,0.158760504,3.777355519,121.4927381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.02076,2.36730151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681215,116.783441,103.7574412,119.1507425,362.9387038,0,0.441130116,63.82399079,-0.441130116,116.1760092,0.936654757,0,443.7057048,119.1507425,521.6874828,7,9,18% -2018-07-23 18:00:00,34.33045162,111.7626038,831.8443594,863.8541243,118.4747687,667.2326771,546.0595656,121.1731114,114.9023173,6.270794154,205.2627471,0,205.2627471,3.572451401,201.6902957,0.599179414,1.950625417,-0.509407026,0.509407026,0.617267422,0.617267422,0.142424202,4.212580322,135.4910638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4484779,2.588228879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.052000103,130.2391642,113.500478,132.8273931,546.0595656,0,0.632120112,50.79328567,-0.632120112,129.2067143,0.970901109,0,643.6703157,132.8273931,730.6031879,7,10,14% -2018-07-23 19:00:00,24.24868416,132.2440604,932.5167321,885.8186711,124.8525351,829.1265442,701.0090687,128.1174755,121.0877705,7.029705023,229.8642426,0,229.8642426,3.76476459,226.099478,0.423219378,2.308094271,-0.209772508,0.209772508,0.566026901,0.566026901,0.133887716,4.38745379,141.1155956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3941708,2.727559129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178695335,135.6456781,119.5728661,138.3732373,701.0090687,0,0.791368585,37.68640752,-0.791368585,142.3135925,0.986818316,0,811.3414547,138.3732373,901.903971,7,11,11% -2018-07-23 20:00:00,18.20856171,168.2649864,977.2557255,894.4437347,127.600931,943.2761228,812.1558642,131.1202586,123.7532921,7.366966453,240.7946038,0,240.7946038,3.847638867,236.9469649,0.317799354,2.936778029,0.047286883,-0.047286883,0.522067156,0.522067156,0.130570666,4.305779473,138.4886689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9563716,2.787601261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119522571,133.1205762,122.0758942,135.9081775,812.1558642,0,0.908001066,24.76944111,-0.908001066,155.2305589,0.994933985,0,930.1173648,135.9081775,1019.066549,7,12,10% -2018-07-23 21:00:00,20.34040747,211.4356723,962.8511091,891.7349738,126.721137,998.7568997,868.5984941,130.1584055,122.9000272,7.258378371,237.2755087,0,237.2755087,3.821109831,233.4543989,0.355007082,3.690248638,0.289863884,-0.289863884,0.480584046,0.480584046,0.131610314,3.984447198,128.1535183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1361808,2.768381065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.886718431,123.1860364,121.0228993,125.9544174,868.5984941,0,0.974054534,13.08012416,-0.974054534,166.9198758,0.998668172,0,988.4645694,125.9544174,1070.899217,7,13,8% -2018-07-23 22:00:00,28.86561039,238.9984166,890.3160837,877.0744538,122.2142355,989.1748103,863.9342062,125.2406041,118.5290254,6.71157871,219.5526523,0,219.5526523,3.685210124,215.8674422,0.503799942,4.171309276,0.541115935,-0.541115935,0.437617415,0.437617415,0.137270614,3.455228223,111.1320169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9346077,2.66992219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.503301086,106.8243218,116.4379088,109.494244,863.9342062,0,0.985018093,9.930357481,-0.985018093,170.0696425,0.999239511,0,979.7151026,109.494244,1051.376895,7,14,7% -2018-07-23 23:00:00,39.78315291,255.0172298,764.8478004,846.8730942,114.0497886,912.5572922,796.1807797,116.3765125,110.6107667,5.765745793,188.8852262,0,188.8852262,3.439021925,185.4462043,0.694347005,4.450890309,0.829480138,-0.829480138,0.388304232,0.388304232,0.149114358,2.76477228,88.92458036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3232762,2.491559678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003068105,85.47768905,108.3263443,87.96924873,796.1807797,0,0.940141782,19.92461956,-0.940141782,160.0753804,0.996816532,0,901.9725083,87.96924873,959.5466222,7,15,6% -2018-07-23 00:00:00,51.45583442,266.1444784,595.6606137,792.2947524,101.9677194,770.8863707,667.5030129,103.3833577,98.89301639,4.490341314,147.4995151,0,147.4995151,3.074702959,144.4248121,0.89807373,4.645097433,1.205685101,-1.205685101,0.323969394,0.323969394,0.171184257,1.974381481,63.50289532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05972894,2.227611827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430432662,61.04139843,96.4901616,63.26901026,667.5030129,0,0.84249329,32.59565091,-0.84249329,147.4043491,0.990652346,0,757.7535876,63.26901026,799.1618894,7,16,5% -2018-07-23 01:00:00,63.27916998,275.2781831,396.0255814,692.0478686,84.8505783,568.8593161,483.5818877,85.27742841,82.2920203,2.985408115,98.57954524,0,98.57954524,2.558558001,96.02098724,1.104429864,4.804510654,1.796264324,-1.796264324,0.222974399,0.222974399,0.214255296,1.162685847,37.39597354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.10222004,1.853666562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842361938,35.9464322,79.94458198,37.80009876,483.5818877,0,0.69876942,45.67164242,-0.69876942,134.3283576,0.978445638,0,553.1031707,37.80009876,577.8425793,7,17,4% -2018-07-23 02:00:00,74.92633478,283.7592047,185.4997098,488.5190868,58.45508322,311.603976,253.5131541,58.09082196,56.69244679,1.398375168,46.73918872,0,46.73918872,1.762636436,44.97655228,1.307711238,4.952532405,3.086873039,-3.086873039,0.00226731,0.00226731,0.315122235,0.442830548,14.24295264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.49493626,1.277024097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.320829225,13.69086784,54.81576548,14.96789194,253.5131541,0,0.518942168,58.73867906,-0.518942168,121.2613209,0.95365015,0,296.5786229,14.96789194,306.3748088,7,18,3% -2018-07-23 03:00:00,86.04763711,292.3800237,15.55388315,73.01800976,10.52096709,33.45427331,23.13330045,10.32097286,10.20372112,0.117251741,4.088465022,0,4.088465022,0.317245976,3.771219046,1.501814581,5.10299408,10.69150008,-10.69150008,0,0,0.676420608,0.079311494,2.550930279,0.564876956,1,0.093260918,0,0.951975108,0.990737071,0.724496596,1,9.885786755,0.22984363,0.076191122,0.312029739,0.806760681,0.531257277,0.961238037,0.922476074,0.054477701,2.452051214,9.940264457,2.681894844,10.06583211,0,0.316816365,71.52949902,-0.316816365,108.470501,0.89217987,0,18.92079724,2.681894844,20.67604378,7,19,9% -2018-07-23 04:00:00,96.7935877,301.753221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6893668,5.266587235,-5.196454013,5.196454013,1,0.581200337,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099082002,84.31368945,-0.099082002,95.68631055,0.545367485,0,0,0,0,7,20,0% -2018-07-23 05:00:00,106.249672,312.4436014,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854406605,5.453169571,-1.587216325,1.587216325,1,0.801583667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111043112,96.37544991,0.111043112,83.62455009,0,0.599724437,0,0,0,7,21,0% -2018-07-23 06:00:00,114.0848434,324.9512489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991156144,5.671469202,-0.580846513,0.580846513,1,0.629484293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302406747,107.6022155,0.302406747,72.39778455,0,0.884659774,0,0,0,7,22,0% -2018-07-23 07:00:00,119.6269881,339.5052936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087884817,5.925485202,-0.015182193,0.015182193,1,0.532749998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461971359,117.514389,0.461971359,62.48561096,0,0.941768182,0,0,0,7,23,0% -2018-07-24 08:00:00,122.1903805,355.6865369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132624453,6.207901174,0.429506895,-0.429506895,1,0.456703685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578865055,125.3707562,0.578865055,54.62924384,0,0.963624083,0,0,0,7,0,0% -2018-07-24 09:00:00,121.3740371,12.26740517,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118376573,0.214106611,0.875513628,-0.875513628,1,0.380432041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645122413,130.1748542,0.645122413,49.82514583,0,0.97249533,0,0,0,7,1,0% -2018-07-24 10:00:00,117.3124623,27.78104216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047488721,0.484870655,1.434086489,-1.434086489,1,0.284910456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656227414,131.0127846,0.656227414,48.9872154,0,0.973806901,0,0,0,7,2,0% -2018-07-24 11:00:00,110.5854771,41.36539486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93008068,0.721962337,2.336864583,-2.336864583,1,0.13052631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611421501,127.6923579,0.611421501,52.30764211,0,0.968223353,0,0,0,7,3,0% -2018-07-24 12:00:00,101.9006717,52.95961746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778502231,0.924319695,4.536748724,-4.536748724,1,0,#DIV/0!,0,0,0.197223056,1,0.21695295,0,0.936582084,0.975344047,0.724496596,1,0,0,0.030857068,0.312029739,0.916223093,0.640719689,0.961238037,0.922476074,0,0,0,0,0,0,-0.513755802,120.9143273,0.513755802,59.08567274,0,0.952677498,0,0,0,7,4,0% -2018-07-24 13:00:00,91.86734735,62.96286639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603387686,1.098909325,30.44106017,-30.44106017,1,0,#DIV/0!,0,0,0.823806373,1,0.032838558,0,0.958212802,0.996974765,0.724496596,1,0,0,0.101219483,0.312029739,0.75334386,0.477840456,0.961238037,0.922476074,0,0,0,0,0,0,-0.369883868,111.7084553,0.369883868,68.29154469,0,0.914822437,0,0,0,7,5,0% -2018-07-24 14:00:00,80.84284439,71.92001687,83.89067701,296.4625171,36.71074662,36.23618552,0,36.23618552,35.60378216,0.632403359,77.16031059,55.71308024,21.44723035,1.106964459,20.34026589,1.410973811,1.255241093,-6.200092712,6.200092712,0.409568011,0.409568011,0.437602222,0.422408993,13.58612523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.22370967,0.801991982,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.306033877,13.05950034,34.52974355,13.86149233,0,55.71308024,-0.18792622,100.8317854,0.18792622,79.16821455,0,0.783938138,34.52974355,57.53710072,72.18662523,7,6,109% -2018-07-24 15:00:00,69.41100191,80.41390152,285.5382451,605.0792415,72.7549293,82.12488946,9.411281818,72.71360764,70.56109974,2.152507903,71.42588292,0,71.42588292,2.193829555,69.23205337,1.21145052,1.403487346,-2.618159258,2.618159258,0.977885292,0.977885292,0.254799245,2.117034794,68.09111625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.82601299,1.589422045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533784502,65.45177091,69.35979749,67.04119296,9.411281818,0,0.015553801,89.10879694,-0.015553801,90.89120306,0,0,69.35979749,67.04119296,113.2369175,7,7,63% -2018-07-24 16:00:00,57.65086932,89.12048533,493.9054496,747.7939872,93.77811757,266.5229582,171.849329,94.67362922,90.95036132,3.723267906,122.5808507,0,122.5808507,2.827756249,119.7530945,1.006197486,1.5554459,-1.491742597,1.491742597,0.785256698,0.785256698,0.189870587,3.07553149,98.91966479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.42494676,2.048699776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.228212095,95.08534439,89.65315886,97.13404416,171.849329,0,0.229808386,76.71420913,-0.229808386,103.2857909,0.832427435,0,232.7052549,97.13404416,296.2775441,7,8,27% -2018-07-24 17:00:00,45.86270591,99.03133352,680.7910737,822.186388,108.2368504,471.6742718,361.5690711,110.1052007,104.97311,5.132090681,168.3294181,0,168.3294181,3.263740391,165.0656777,0.800455222,1.728422833,-0.90108943,0.90108943,0.684249058,0.684249058,0.158986882,3.769260488,121.232374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9041462,2.364568803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730816393,116.5331692,103.6349626,118.897738,361.5690711,0,0.439765334,63.91109054,-0.439765334,116.0889095,0.936302998,0,442.1731679,118.897738,519.9893595,7,9,18% -2018-07-24 18:00:00,34.46539587,112.0470098,830.2880551,863.483087,118.3737753,665.9348161,544.8713848,121.0634313,114.8043693,6.259062074,204.8823578,0,204.8823578,3.569406079,201.3129517,0.601534636,1.955589238,-0.509711725,0.509711725,0.617319528,0.617319528,0.142569527,4.205326748,135.2577639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3543265,2.586022553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046744913,130.0149075,113.4010714,132.60093,544.8713848,0,0.6310157,50.87490112,-0.6310157,129.1250989,0.970762669,0,642.3418711,132.60093,729.1265278,7,10,14% -2018-07-24 19:00:00,24.41611255,132.551921,931.1054586,885.5361586,124.7650543,828.0261615,700.0041677,128.0219938,121.0029276,7.019066247,229.5194251,0,229.5194251,3.762126721,225.7572984,0.426141554,2.313467452,-0.209250072,0.209250072,0.565937559,0.565937559,0.133996695,4.380602698,140.895241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3126165,2.725648002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173731742,135.4338648,119.4863483,138.1595128,700.0041677,0,0.790486262,37.76902334,-0.790486262,142.2309767,0.986747794,0,810.2139164,138.1595128,900.6365544,7,11,11% -2018-07-24 20:00:00,18.41645197,168.3656384,975.9184609,894.194901,127.5194506,942.3225305,811.2913762,131.0311543,123.6742687,7.356885588,240.4679116,0,240.4679116,3.845181933,236.6227296,0.321427723,2.938534738,0.04844439,-0.04844439,0.521869211,0.521869211,0.130666091,4.298957046,138.2692362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8804113,2.785821221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114579745,132.9096491,121.994991,135.6954703,811.2913762,0,0.907286963,24.86691824,-0.907286963,155.1330818,0.994890644,0,929.1411909,135.6954703,1017.951162,7,12,10% -2018-07-24 21:00:00,20.52802723,211.1622478,961.5103633,891.4796279,126.6390078,997.8732204,867.8045746,130.0686457,122.8203745,7.248271262,236.9479529,0,236.9479529,3.818633334,233.1293196,0.358281664,3.68547648,0.291662464,-0.291662464,0.480276471,0.480276471,0.131708417,3.977332539,127.9246864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0596157,2.766586851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.881563885,122.9660745,120.9411795,125.7326613,867.8045746,0,0.973442968,13.23406448,-0.973442968,166.7659355,0.998635923,0,987.5620015,125.7326613,1069.851514,7,13,8% -2018-07-24 22:00:00,29.00933359,238.6798969,888.8945862,876.7688472,122.1245281,988.2658013,863.1229154,125.1428858,118.442023,6.700862861,219.2052888,0,219.2052888,3.682505113,215.5227837,0.506308385,4.165750059,0.54373427,-0.54373427,0.437169653,0.437169653,0.137389214,3.447570301,110.8857118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8509776,2.667962419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497752947,106.5875639,116.3487306,109.2555264,863.1229154,0,0.984436112,10.12188881,-0.984436112,169.8781112,0.999209502,0,978.7893494,109.2555264,1050.294906,7,14,7% -2018-07-24 23:00:00,39.90359018,254.7469054,763.2753928,846.4481369,113.9439023,911.5120364,795.2500708,116.2619656,110.5080733,5.753892319,188.5007849,0,188.5007849,3.435829064,185.0649559,0.696449032,4.446172259,0.833367943,-0.833367943,0.387639378,0.387639378,0.149282819,2.756426845,88.6561625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2245634,2.489246461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997021866,85.2196756,108.2215853,87.70892206,795.2500708,0,0.939514231,20.02986271,-0.939514231,159.9701373,0.996781008,0,900.9117527,87.70892206,958.315488,7,15,6% -2018-07-24 00:00:00,51.56806628,265.9159584,593.882839,791.6076035,101.831843,769.5723758,666.3341989,103.2381769,98.76123718,4.476939698,147.0643758,0,147.0643758,3.070605785,143.9937701,0.900032545,4.641109008,1.211931013,-1.211931013,0.32290128,0.32290128,0.1714679,1.965385371,63.21354951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.93305775,2.224643438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423915011,60.76326824,96.35697276,62.98791168,666.3341989,0,0.841748103,32.67482199,-0.841748103,147.325178,0.990599807,0,756.4275015,62.98791168,797.6518299,7,16,5% -2018-07-24 01:00:00,63.39200734,275.0782079,394.0213732,690.7325961,84.65342193,567.0940253,482.0229168,85.07110847,82.10080893,2.970299546,98.08765676,0,98.08765676,2.552613009,95.53504375,1.106399248,4.801020428,1.808071141,-1.808071141,0.220955314,0.220955314,0.214844746,1.153453369,37.09902533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9184204,1.849359436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83567304,35.66099427,79.75409344,37.51035371,482.0229168,0,0.697843014,45.74579613,-0.697843014,134.2542039,0.978350648,0,551.3415262,37.51035371,575.8913025,7,17,4% -2018-07-24 02:00:00,75.04544675,283.578395,183.3640226,485.4396424,58.09496562,309.0795915,251.354128,57.72546352,56.34318806,1.382275455,46.21050775,0,46.21050775,1.751777561,44.45873019,1.309790134,4.94937668,3.11917731,-3.11917731,0,0,0.316828595,0.43794439,14.08579702,0.003246472,1,0.31024472,0,0.922758261,0.961520224,0.724496596,1,54.16802459,1.26915688,0.000554334,0.312029739,0.998429306,0.722925901,0.961238037,0.922476074,0.316993047,13.53980387,54.48501763,14.80896075,250.5381139,0,0.517786571,58.81610416,-0.517786571,121.1838958,0.953435116,0,293.3568534,14.80896075,303.049022,7,18,3% -2018-07-24 03:00:00,86.17379617,292.2129506,14.45030373,68.21450769,9.89833387,31.22770493,21.51890986,9.708795076,9.599862583,0.108932493,3.802114727,0,3.802114727,0.298471287,3.50364344,1.504016472,5.100078106,11.07446895,-11.07446895,0,0,0.684991406,0.074617822,2.399965646,0.576933042,1,0.090053557,0,0.952327803,0.991089766,0.724496596,1,9.299643286,0.216241432,0.077465396,0.312029739,0.803919933,0.528416529,0.961238037,0.922476074,0.051289571,2.306938266,9.350932857,2.523179697,9.103939726,0,0.315459432,71.61144849,-0.315459432,108.3885515,0.891501014,0,17.46710436,2.523179697,19.11847501,7,19,9% -2018-07-24 04:00:00,96.93965606,301.5982476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691916174,5.263882439,-5.103467804,5.103467804,1,0.597101915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097359457,84.4128636,-0.097359457,95.5871364,0.536439205,0,0,0,0,7,20,0% -2018-07-24 05:00:00,106.4142598,312.303735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857279205,5.450728442,-1.57775181,1.57775181,1,0.79996514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113051783,96.49126759,0.113051783,83.50873241,0,0.607724799,0,0,0,7,21,0% -2018-07-24 06:00:00,114.2694932,324.8357365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994378892,5.66945313,-0.580174931,0.580174931,1,0.629369446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304679834,107.738903,0.304679834,72.26109701,0,0.885893307,0,0,0,7,22,0% -2018-07-24 07:00:00,119.8294589,339.4297633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091418598,5.924166949,-0.017357071,0.017357071,1,0.533121924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464469042,117.6758648,0.464469042,62.32413521,0,0.942350199,0,0,0,7,23,0% -2018-07-25 08:00:00,122.4027976,355.667046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136331833,6.207560993,0.425479591,-0.425479591,1,0.457392394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581532128,125.5583767,0.581532128,54.44162333,0,0.964020228,0,0,0,7,0,0% -2018-07-25 09:00:00,121.5843919,12.30869091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122047958,0.214827183,0.869316278,-0.869316278,1,0.381491851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647892068,130.3828608,0.647892068,49.61713925,0,0.972826652,0,0,0,7,1,0% -2018-07-25 10:00:00,117.5100065,27.87229257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050936517,0.486463275,1.424092067,-1.424092067,1,0.286619603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659025831,131.2256194,0.659025831,48.77438063,0,0.97413044,0,0,0,7,2,0% -2018-07-25 11:00:00,110.7647655,41.4897574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933209854,0.724132873,2.317570055,-2.317570055,1,0.133825868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614172924,127.891848,0.614172924,52.10815198,0,0.968589703,0,0,0,7,3,0% -2018-07-25 12:00:00,102.0612272,53.10419326,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781304453,0.926843019,4.478018599,-4.478018599,1,0,#DIV/0!,0,0,0.190697942,1,0.219708202,0,0.93620038,0.974962343,0.724496596,1,0,0,0.029920681,0.312029739,0.918655463,0.643152059,0.961238037,0.922476074,0,0,0,0,0,0,-0.516387754,121.0902596,0.516387754,58.90974044,0,0.953173536,0,0,0,7,4,0% -2018-07-25 13:00:00,92.01148568,63.12138992,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605903375,1.101676083,28.26766332,-28.26766332,1,0,#DIV/0!,0,0,0.811459543,1,0.035361365,0,0.957969677,0.99673164,0.724496596,1,0,0,0.100128555,0.312029739,0.755567466,0.480064062,0.961238037,0.922476074,0,0,0,0,0,0,-0.37233215,111.8595191,0.37233215,68.14048091,0,0.915711301,0,0,0,7,5,0% -2018-07-25 14:00:00,80.97280579,72.09167769,81.82831988,291.2614221,36.12846128,35.65591131,0,35.65591131,35.03905487,0.61685644,76.30366965,55.37403971,20.92962994,1.089406407,19.84022353,1.413242066,1.258237139,-6.290220568,6.290220568,0.39415524,0.39415524,0.441515374,0.408139989,13.12718502,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.68087232,0.789271234,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.295696033,12.61834955,33.97656835,13.40762079,0,55.37403971,-0.190118002,100.9596708,0.190118002,79.04032925,0,0.787005442,33.97656835,56.98729138,71.27361081,7,6,110% -2018-07-25 15:00:00,69.53327445,80.60201219,283.3135965,602.9622499,72.4797956,80.63987861,8.209878714,72.4299999,70.29426234,2.135737562,70.87819482,0,70.87819482,2.185533259,68.69266156,1.213584579,1.406770496,-2.63362433,2.63362433,0.980529975,0.980529975,0.255828864,2.104792796,67.69737148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.56951873,1.583411406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524915215,65.07328847,69.09443395,66.65669987,8.209878714,0,0.013615908,89.21984181,-0.013615908,90.78015819,0,0,69.09443395,66.65669987,112.7199109,7,7,63% -2018-07-25 16:00:00,57.76970223,89.3320963,491.8868509,746.7902548,93.60593518,264.8751026,170.3836809,94.49142172,90.78337086,3.708050856,122.0862262,0,122.0862262,2.822564315,119.2636619,1.008271512,1.559139208,-1.496680466,1.496680466,0.786101123,0.786101123,0.190299731,3.065838777,98.60791383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.26442919,2.044938238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221189758,94.7856775,89.48561894,96.83061574,170.3836809,0,0.228154666,76.81154649,-0.228154666,103.1884535,0.830850416,0,231.0489712,96.83061574,294.4226726,7,8,27% -2018-07-25 17:00:00,45.98505601,99.27744032,679.0051265,821.614429,108.1096547,470.1593982,360.1910211,109.9683772,104.8497497,5.118627457,167.8925591,0,167.8925591,3.25990497,164.6326542,0.802590634,1.732718206,-0.902782297,0.902782297,0.684538555,0.684538555,0.15921773,3.760991426,120.9664126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7855676,2.361790054,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724825485,116.2775169,103.510393,118.639307,360.1910211,0,0.438394225,63.9985288,-0.438394225,116.0014712,0.935947403,0,440.6302437,118.639307,518.2772974,7,9,18% -2018-07-25 18:00:00,34.60262896,112.3395292,828.6999281,863.1033812,118.2706341,664.6242509,543.6728227,120.9514283,114.7043382,6.247090102,204.4941879,0,204.4941879,3.566295992,200.9278919,0.603929805,1.960694664,-0.509966939,0.509966939,0.617363172,0.617363172,0.142718287,4.19787241,135.0180068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2581728,2.583769306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.041344271,129.7844438,113.2995171,132.3682131,543.6728227,0,0.629904638,50.95691277,-0.629904638,129.0430872,0.970622905,0,641.0008119,132.3682131,727.63316,7,10,14% -2018-07-25 19:00:00,24.58702388,132.8683422,929.655464,885.2452038,124.6751212,826.9083909,698.984549,127.9238418,120.9157063,7.008135576,229.1651453,0,229.1651453,3.759414906,225.4057304,0.42912452,2.318990043,-0.20866499,0.20866499,0.565837504,0.565837504,0.134108953,4.373515184,140.6672822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2287761,2.723683302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168596863,135.2147422,119.397373,137.9384255,698.984549,0,0.78959428,37.85238755,-0.78959428,142.1476125,0.98667634,0,809.0688893,137.9384255,899.34683,7,11,11% -2018-07-25 20:00:00,18.62938029,168.4742199,974.5336293,893.9366527,127.4350302,941.3440138,810.4051739,130.93884,123.5923938,7.346446142,240.1295975,0,240.1295975,3.842636345,236.2869612,0.325144024,2.940429842,0.049677736,-0.049677736,0.521658296,0.521658296,0.130765144,4.291857884,138.0409027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.80171,2.783976951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.109436427,132.6901663,121.9111464,135.4741433,810.4051739,0,0.90655772,24.9660942,-0.90655772,155.0339058,0.994846314,0,928.1397463,135.4741433,1016.804864,7,12,10% -2018-07-25 21:00:00,20.72199972,210.8929253,960.11187,891.2126915,126.553297,996.9544232,866.9794462,129.974977,122.7372481,7.237728829,236.6062875,0,236.6062875,3.816048836,232.7902387,0.361667123,3.680775915,0.293554611,-0.293554611,0.479952895,0.479952895,0.131810991,3.969900189,127.6856365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9797114,2.764714391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.876179173,122.7362906,120.8558906,125.501005,866.9794462,0,0.972808685,13.39188672,-0.972808685,166.6081133,0.998602433,0,986.6236746,125.501005,1068.761572,7,13,8% -2018-07-25 22:00:00,29.1592942,238.3596509,887.4045713,876.4477058,122.0304356,987.3091688,862.2687706,125.0403982,118.3507677,6.689630499,218.8411802,0,218.8411802,3.679667877,215.1615123,0.508925691,4.160160712,0.546474007,-0.546474007,0.436701131,0.436701131,0.137513869,3.439557391,110.6279891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7632596,2.665906851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491947621,106.3398311,116.2552072,109.0057379,862.2687706,0,0.983822269,10.32009442,-0.983822269,169.6799056,0.999177812,0,977.8150311,109.0057379,1049.157106,7,14,7% -2018-07-25 23:00:00,40.02976102,254.4732593,761.6239642,846.0004301,113.8325873,910.4046105,794.2630526,116.1415579,110.4001148,5.741443153,188.0970204,0,188.0970204,3.432472505,184.6645479,0.698651129,4.441396232,0.837426441,-0.837426441,0.386945334,0.386945334,0.149460354,2.747697959,88.37541152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1207896,2.486814645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990697818,84.94980707,108.1114874,87.43662172,794.2630526,0,0.938844738,20.14155834,-0.938844738,159.8584417,0.996743058,0,899.7876711,87.43662172,957.0131913,7,15,6% -2018-07-25 00:00:00,51.68569219,265.6839993,592.0168428,790.8832978,101.6889816,768.1793913,665.0938346,103.0855567,98.62268363,4.46287303,146.6076356,0,146.6076356,3.066297988,143.5413377,0.902085505,4.637060557,1.218449126,-1.218449126,0.321786617,0.321786617,0.171767042,1.955993899,62.91148746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.7998748,2.221522454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.417110921,60.4729147,96.21698573,62.69443716,665.0938346,0,0.840950664,32.75935601,-0.840950664,147.240644,0.99054348,0,755.0213472,62.69443716,796.0536024,7,16,5% -2018-07-25 01:00:00,63.5100739,274.8749997,391.9227882,689.3467285,84.44625877,565.2287844,480.3744124,84.85437202,81.8998925,2.954479527,97.57258381,0,97.57258381,2.546366276,95.02621753,1.108459898,4.797473776,1.820418618,-1.820418618,0.218843771,0.218843771,0.21546657,1.143846911,36.7900486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72529188,1.844833698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.828713193,35.36399409,79.55400508,37.20882779,480.3744124,0,0.696854562,45.82481335,-0.696854562,134.1751867,0.978249017,0,549.4798016,37.20882779,573.8322352,7,17,4% -2018-07-25 02:00:00,75.16974036,283.3946121,181.1375924,482.1963321,57.71638846,306.4251153,249.0835972,57.34151808,55.9760264,1.365491685,45.65926849,0,45.65926849,1.740362063,43.91890643,1.311959467,4.946169063,3.153224356,-3.153224356,0,0,0.318632856,0.435090516,13.9940066,0.008997739,1,0.307102544,0,0.923253417,0.962015381,0.724496596,1,53.83027557,1.26088639,0.001532225,0.312029739,0.995664306,0.720160902,0.961238037,0.922476074,0.314413728,13.45157143,54.1446893,14.71245782,246.842408,0,0.516560539,58.89817926,-0.516560539,121.1018207,0.953205924,0,289.4363349,14.71245782,299.0653443,7,18,3% -2018-07-25 03:00:00,86.30483488,292.0431828,13.34425221,63.34636296,9.26169951,28.97576039,19.89274068,9.083019707,8.982425098,0.10059461,3.514742854,0,3.514742854,0.279274412,3.235468442,1.506303529,5.097115099,11.49911952,-11.49911952,0,0,0.694059088,0.069818603,2.245606274,0.589543466,1,0.086744947,0,0.952689117,0.99145108,0.724496596,1,8.700369922,0.202333361,0.078785899,0.312029739,0.800989811,0.525486407,0.961238037,0.922476074,0.04802875,2.158562167,8.748398673,2.360895528,8.165105392,0,0.3140313,71.69765586,-0.3140313,108.3023441,0.890780202,0,16.02171291,2.360895528,17.56687181,7,19,10% -2018-07-25 04:00:00,97.09115563,301.4409242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69456034,5.261136627,-5.01062768,5.01062768,1,0.612978512,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095554286,84.51677679,-0.095554286,95.48322321,0.526737235,0,0,0,0,7,20,0% -2018-07-25 05:00:00,106.5844725,312.1620391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860249976,5.448255383,-1.567980439,1.567980439,1,0.798294137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115145262,96.61200363,0.115145262,83.38799637,0,0.615765895,0,0,0,7,21,0% -2018-07-25 06:00:00,114.4599436,324.7192669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997702878,5.667420352,-0.579377861,0.579377861,1,0.629233139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307037208,107.8807693,0.307037208,72.1192307,0,0.887153287,0,0,0,7,22,0% -2018-07-25 07:00:00,120.0377635,339.3546741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0950542,5.922856394,-0.019478125,0.019478125,1,0.533484645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467047823,117.8428343,0.467047823,62.15716566,0,0.942944582,0,0,0,7,23,0% -2018-07-26 08:00:00,122.6207713,355.6498435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140136191,6.207260753,0.421471497,-0.421471497,1,0.458077819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584274659,125.7517645,0.584274659,54.24823546,0,0.964423809,0,0,0,7,0,0% -2018-07-26 09:00:00,121.799642,12.35403085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125804781,0.215618514,0.863119355,-0.863119355,1,0.382551587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650729482,130.5966243,0.650729482,49.40337573,0,0.973163155,0,0,0,7,1,0% -2018-07-26 10:00:00,117.7115462,27.96871927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054454049,0.488146239,1.41409381,-1.41409381,1,0.288329406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661882775,131.4436225,0.661882775,48.55637754,0,0.974457922,0,0,0,7,2,0% -2018-07-26 11:00:00,110.9471527,41.61973387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93639311,0.72640139,2.298323478,-2.298323478,1,0.137117227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616972746,128.0954038,0.616972746,51.90459622,0,0.968959143,0,0,0,7,3,0% -2018-07-26 12:00:00,102.2241392,53.25444264,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784147804,0.929465365,4.420029861,-4.420029861,1,0,#DIV/0!,0,0,0.184150281,1,0.222497057,0,0.935812341,0.974574304,0.724496596,1,0,0,0.028975694,0.312029739,0.921117171,0.645613767,0.961238037,0.922476074,0,0,0,0,0,0,-0.519057778,121.2690703,0.519057778,58.73092972,0,0.95367161,0,0,0,7,4,0% -2018-07-26 13:00:00,92.15743609,63.28555251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60845069,1.10454126,26.36272913,-26.36272913,1,0,#DIV/0!,0,0,0.7991217,1,0.037914162,0,0.957722115,0.996484078,0.724496596,1,0,0,0.099028987,0.312029739,0.757818359,0.482314955,0.961238037,0.922476074,0,0,0,0,0,0,-0.374808686,112.012489,0.374808686,67.98751103,0,0.916598609,0,0,0,7,5,0% -2018-07-26 14:00:00,81.10418115,72.26901371,79.75522874,285.9610316,35.5347039,35.06443007,0,35.06443007,34.46320147,0.601228603,75.40757772,54.9984967,20.40908101,1.071502432,19.33757858,1.415534998,1.261332236,-6.383907499,6.383907499,0.378133832,0.378133832,0.445547012,0.393927653,12.67006744,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.12734012,0.776299864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.285399244,12.17895076,33.41273936,12.95525062,0,54.9984967,-0.192328641,101.0887123,0.192328641,78.91128766,0,0.79002832,33.41273936,56.40562058,70.32908992,7,6,110% -2018-07-26 15:00:00,69.65683659,80.79599648,281.0651684,600.8047311,72.20014657,79.15043327,7.008599542,72.14183373,70.02304576,2.118787962,70.32460494,0,70.32460494,2.177100809,68.14750413,1.215741145,1.410156161,-2.649367291,2.649367291,0.98322218,0.98322218,0.256880449,2.09237107,67.29784608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.30881504,1.577302125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515915717,64.68924945,68.82473076,66.26655158,7.008599542,0,0.011665353,89.33160932,-0.011665353,90.66839068,0,0,68.82473076,66.26655158,112.1948634,7,7,63% -2018-07-26 16:00:00,57.88986456,89.55000838,489.8433444,745.768666,93.43118506,263.2177914,168.9112553,94.30653614,90.6138901,3.692646041,121.585485,0,121.585485,2.817294954,118.7681901,1.01036874,1.562942491,-1.501644112,1.501644112,0.786949957,0.786949957,0.190736867,3.055983845,98.29094535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.10151783,2.041120604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.214049893,94.48099534,89.31556773,96.52211595,168.9112553,0,0.226492829,76.90932256,-0.226492829,103.0906774,0.829242459,0,229.3839525,96.52211595,292.5557469,7,8,28% -2018-07-26 17:00:00,46.1090292,99.53055509,677.1918558,821.0315118,107.9803406,468.6340522,358.804759,109.8292932,104.7243349,5.104958256,167.4490114,0,167.4490114,3.256005674,164.1930057,0.804754374,1.737135893,-0.904445603,0.904445603,0.684822997,0.684822997,0.1594531,3.75254734,120.6948217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6650141,2.358965027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718707774,116.0164535,103.3837219,118.3754185,358.804759,0,0.437017038,64.08628928,-0.437017038,115.9137107,0.935587985,0,439.0771432,118.3754185,516.5514872,7,9,18% -2018-07-26 18:00:00,34.74215539,112.6399534,827.0796628,862.7148605,118.1653192,663.3008297,542.4637551,120.8370747,114.6021988,6.234875858,204.0981602,0,204.0981602,3.563120357,200.5350398,0.606365001,1.965938056,-0.510171984,0.510171984,0.617398237,0.617398237,0.142870541,4.190215397,134.7717309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1599926,2.581468569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.035796791,129.5477141,113.1957894,132.1291826,542.4637551,0,0.628786845,51.03932525,-0.628786845,128.9606747,0.970481797,0,639.6469892,132.1291826,726.1228966,7,10,14% -2018-07-26 19:00:00,24.76141477,133.1929678,928.1662132,884.9456401,124.5826981,825.7727638,697.9497847,127.8229791,120.8260701,6.996908974,228.8012723,0,228.8012723,3.756628009,225.0446443,0.432168215,2.324655828,-0.208016849,0.208016849,0.565726666,0.565726666,0.134224556,4.366188828,140.4316414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1426144,2.721664204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.163288943,134.9882353,119.3059034,137.7098995,697.9497847,0,0.788692269,37.93653061,-0.788692269,142.0634694,0.986603918,0,807.9058953,137.7098995,898.0342703,7,11,11% -2018-07-26 20:00:00,18.84728676,168.5904015,973.1005588,893.6688029,127.347624,940.3398456,809.4965792,130.8432664,123.5076233,7.335643051,239.7794974,0,239.7794974,3.840000728,235.9394966,0.328947209,2.942457593,0.050987195,-0.050987195,0.521434366,0.521434366,0.130867897,4.284479478,137.8035878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7202254,2.782067455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104090797,132.4620502,121.8243162,135.2441177,809.4965792,0,0.905812731,25.06703229,-0.905812731,154.9329677,0.994800952,0,927.1122842,135.2441177,1015.626854,7,12,10% -2018-07-26 21:00:00,20.92225654,210.6279469,958.6549136,890.9339503,126.4639548,995.9996014,866.1222558,129.8773456,122.6505999,7.226745677,236.2503376,0,236.2503376,3.813354838,232.4369827,0.365162264,3.67615117,0.295540575,-0.295540575,0.479613275,0.479613275,0.131918121,3.962147969,127.4362985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8964219,2.762762599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870562716,122.4966174,120.7669846,125.25938,866.1222558,0,0.972150916,13.55364687,-0.972150916,166.4463531,0.998567656,0,985.6486557,125.25938,1067.628415,7,13,8% -2018-07-26 22:00:00,29.31547272,238.0380071,885.8453758,876.1107693,121.9319072,986.3039179,861.3708309,124.933087,118.2552104,6.677876626,218.4601642,0,218.4601642,3.676696884,214.7834673,0.511651521,4.154546968,0.549335543,-0.549335543,0.436211779,0.436211779,0.137644684,3.431188042,110.358802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6714062,2.663754376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485884056,106.0810782,116.1572903,108.7448326,861.3708309,0,0.983175714,10.52486983,-0.983175714,169.4751302,0.999144391,0,976.7911243,108.7448326,1047.962442,7,14,7% -2018-07-26 23:00:00,40.16166115,254.1965151,759.8929995,845.5296212,113.7157923,909.2340214,793.2187854,116.015236,110.2868416,5.728394411,187.6738062,0,187.6738062,3.428950704,184.2448555,0.70095322,4.436566135,0.841656566,-0.841656566,0.38622194,0.38622194,0.149647111,2.73858528,88.08231643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0119071,2.484263112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984095713,84.66807292,107.9960028,87.15233604,793.2187854,0,0.938132462,20.25974364,-0.938132462,159.7402564,0.996702622,0,898.5992464,87.15233604,955.6387073,7,15,6% -2018-07-26 00:00:00,51.80870552,265.448755,590.0623503,790.1212617,101.5390772,766.7064917,663.7810531,102.9254386,98.47729939,4.44813924,146.1292261,0,146.1292261,3.061777817,143.0674483,0.904232492,4.632954769,1.225242143,-1.225242143,0.320624943,0.320624943,0.172081946,1.94620826,62.59674767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.66012594,2.218247606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410021259,60.17037485,96.0701472,62.38862245,663.7810531,0,0.840100229,32.84929491,-0.840100229,147.1507051,0.990483292,0,753.5341898,62.38862245,794.3662955,7,16,5% -2018-07-26 01:00:00,63.63335494,274.668672,389.7299044,687.8890293,84.22898838,563.2627159,478.6355936,84.62712225,81.68917361,2.937948642,97.03434222,0,97.03434222,2.539814772,94.49452745,1.110611558,4.793872679,1.833316881,-1.833316881,0.216638038,0.216638038,0.216121441,1.133870001,36.46915689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.52274087,1.840087156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.821484956,35.05554077,79.34422583,36.89562793,478.6355936,0,0.695803499,45.90871967,-0.695803499,134.0912803,0.978140632,0,547.5171477,36.89562793,571.6645982,7,17,4% -2018-07-26 02:00:00,75.2991903,283.2079436,178.8212422,478.785657,57.31903331,303.6395856,246.7009025,56.93868303,55.59065297,1.348030058,45.08566083,0,45.08566083,1.728380339,43.35728049,1.314218795,4.942911084,3.189082837,-3.189082837,0,0,0.320538168,0.432095085,13.89766324,0.014983669,1,0.303859174,0,0.923762406,0.962524369,0.724496596,1,53.47507131,1.252205672,0.00254444,0.312029739,0.99281011,0.717306705,0.961238037,0.922476074,0.311728413,13.35896253,53.78679973,14.6111682,243.0044178,0,0.51526377,58.98491265,-0.51526377,121.0150874,0.952962322,0,285.3608538,14.6111682,294.9235712,7,18,3% -2018-07-26 03:00:00,86.44068018,291.8707893,12.24191704,58.44002221,8.613849322,26.71080615,18.26441143,8.446394725,8.354109984,0.092284742,3.227933856,0,3.227933856,0.259739339,2.968194517,1.508674477,5.094106264,11.97153301,-11.97153301,0,0,0.703635656,0.064934835,2.088527496,0.602717259,1,0.08333802,0,0.953058494,0.991820457,0.724496596,1,8.090604249,0.188180267,0.080152081,0.312029739,0.797972992,0.522469588,0.961238037,0.922476074,0.044708948,2.00757207,8.135313198,2.195752337,7.256135427,0,0.312532589,71.78807748,-0.312532589,108.2119225,0.890016684,0,14.59339479,2.195752337,16.03047078,7,19,10% -2018-07-26 04:00:00,97.24804212,301.2813043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697298526,5.258350735,-4.918152779,4.918152779,1,0.628792651,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.093666803,84.62540892,-0.093666803,95.37459108,0.516192947,0,0,0,0,7,20,0% -2018-07-26 05:00:00,106.7602568,312.0185541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863317992,5.445751096,-1.557922465,1.557922465,1,0.796574122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117322899,96.73762449,0.117322899,83.26237551,0,0.623825735,0,0,0,7,21,0% -2018-07-26 06:00:00,114.6561346,324.6018705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001127057,5.665371399,-0.578458118,0.578458118,1,0.629075854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309477892,108.0277687,0.309477892,71.97223134,0,0.888437571,0,0,0,7,22,0% -2018-07-26 07:00:00,120.2518365,339.2800547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098790479,5.921554041,-0.02154412,0.02154412,1,0.533837951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469706434,118.0152422,0.469706434,61.9847578,0,0.943550532,0,0,0,7,23,0% -2018-07-27 08:00:00,122.8442297,355.6349652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144036275,6.207001079,0.417485728,-0.417485728,1,0.458759425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58709115,125.9508579,0.58709115,54.04914207,0,0.964834349,0,0,0,7,0,0% -2018-07-27 09:00:00,122.0197077,12.40346281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129645652,0.216481265,0.856927757,-0.856927757,1,0.383610412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653632995,130.8160775,0.653632995,49.18392253,0,0.973504474,0,0,0,7,1,0% -2018-07-27 10:00:00,117.9169973,28.07034584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058039846,0.489919957,1.404099483,-1.404099483,1,0.290038536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664796512,131.6667163,0.664796512,48.33328374,0,0.974789016,0,0,0,7,2,0% -2018-07-27 11:00:00,111.1325561,41.75532393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93962901,0.728767883,2.279138963,-2.279138963,1,0.140397972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619819248,128.3029362,0.619819248,51.69706378,0,0.969331321,0,0,0,7,3,0% -2018-07-27 12:00:00,102.3893334,53.41034229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787030986,0.932186328,4.362808098,-4.362808098,1,0,#DIV/0!,0,0,0.177584531,1,0.225318115,0,0.935418107,0.97418007,0.724496596,1,0,0,0.028022655,0.312029739,0.923606973,0.648103569,0.961238037,0.922476074,0,0,0,0,0,0,-0.521764257,121.4506689,0.521764257,58.54933105,0,0.954171282,0,0,0,7,4,0% -2018-07-27 13:00:00,92.30513616,63.45531228,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611028542,1.107504127,24.68040003,-24.68040003,1,0,#DIV/0!,0,0,0.786800535,1,0.040495831,0,0.95747017,0.996232133,0.724496596,1,0,0,0.097921374,0.312029739,0.760095541,0.484592137,0.961238037,0.922476074,0,0,0,0,0,0,-0.377312044,112.1672835,0.377312044,67.83271646,0,0.917483689,0,0,0,7,5,0% -2018-07-27 14:00:00,81.23691987,72.45196739,77.67297233,280.562597,34.92953658,34.46181385,0,34.46181385,33.87628218,0.585531675,74.47136247,54.58539666,19.88596581,1.053254404,18.83271141,1.417851726,1.26452538,-6.481314444,6.481314444,0.361476263,0.361476263,0.449700012,0.379787786,12.21528071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.56317097,0.76307923,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.275154958,11.74179245,32.83832593,12.50487168,0,54.58539666,-0.194556927,101.2188417,0.194556927,78.78115834,0,0.793005809,32.83832593,55.79140832,69.35268685,7,6,111% -2018-07-27 15:00:00,69.78165394,80.99578055,278.7936148,598.6065119,71.91599087,77.65741076,5.808288323,71.84912244,69.74745841,2.101664031,69.76527212,0,69.76527212,2.168532467,67.59673966,1.217919619,1.413643051,-2.665388798,2.665388798,0.985962019,0.985962019,0.257954225,2.079771366,66.89259628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.04390999,1.57109439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.506787275,64.29970793,68.55069727,65.87080232,5.808288323,0,0.009703016,89.44404943,-0.009703016,90.55595057,0,0,68.55069727,65.87080232,111.66182,7,7,63% -2018-07-27 16:00:00,58.0113369,89.77412565,487.7751976,744.7291082,93.25386988,261.551524,167.4325469,94.11897711,90.44192163,3.677055477,121.0786922,0,121.0786922,2.811948247,118.2667439,1.012488832,1.566854076,-1.506631911,1.506631911,0.787802921,0.787802921,0.191182066,3.045966846,97.9687642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9362152,2.037246933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.206792611,94.17130257,89.14300781,96.2085495,167.4325469,0,0.224823422,77.00750501,-0.224823422,102.992495,0.827603243,0,227.7107267,96.2085495,290.6772982,7,8,28% -2018-07-27 17:00:00,46.23462087,99.79054396,675.351196,820.4375014,107.8488946,467.0983853,357.4104502,109.6879351,104.5968525,5.091082585,166.9987585,0,166.9987585,3.252042091,163.7467164,0.806946363,1.741673554,-0.906078284,0.906078284,0.685102202,0.685102202,0.159693053,3.743927113,120.4175656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5424731,2.356093425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712462448,115.7499444,103.2549356,118.1060378,357.4104502,0,0.435633975,64.17435843,-0.435633975,115.8256416,0.935224746,0,437.5140332,118.1060378,514.8120729,7,9,18% -2018-07-27 18:00:00,34.88398188,112.9480711,825.4269132,862.3173683,118.0578023,661.964359,541.2440183,120.7203407,114.497924,6.222416733,203.6941899,0,203.6941899,3.559878326,200.1343116,0.60884034,1.971315724,-0.510326238,0.510326238,0.617424616,0.617424616,0.143026355,4.182353717,134.5188723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0597597,2.579119729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.030101031,129.3046567,113.0898607,131.8837765,541.2440183,0,0.627662202,51.12214612,-0.627662202,128.8778539,0.970339317,0,638.2802115,131.8837765,724.5955055,7,10,14% -2018-07-27 19:00:00,24.93928322,133.5254406,926.6371502,884.6372939,124.4877458,824.6187753,696.899412,127.7193632,120.733981,6.985382252,228.4276702,0,228.4276702,3.753764848,224.6739053,0.435272605,2.330458573,-0.207305282,0.207305282,0.565604981,0.565604981,0.134343573,4.358621182,140.1882399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0540949,2.719589854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.157806209,134.7542685,119.2119011,137.4738583,696.899412,0,0.787779824,38.02148599,-0.787779824,141.978514,0.986530489,0,806.724419,137.4738583,896.6983098,7,11,11% -2018-07-27 20:00:00,19.07011221,168.7138498,971.6185683,893.3911595,127.2571859,939.3092711,808.5648877,130.7443834,123.4199122,7.324471181,239.4174446,0,239.4174446,3.837273683,235.5801709,0.332836247,2.944612173,0.052373007,-0.052373007,0.521197378,0.521197378,0.130974428,4.27681935,137.5572118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6359141,2.780091721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.09854106,132.2252242,121.7344552,135.0053159,808.5648877,0,0.905051364,25.16979816,-0.905051364,154.8302018,0.994754517,0,926.0580293,135.0053159,1014.416308,7,12,10% -2018-07-27 21:00:00,21.12872638,210.3675284,957.1387819,890.643186,126.3709313,995.0078325,865.2321345,129.7756979,122.5603815,7.215316435,235.8799289,0,235.8799289,3.810549839,232.0693791,0.368765842,3.671606011,0.297620583,-0.297620583,0.479257572,0.479257572,0.132029893,3.954073783,127.1766049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8097005,2.760730387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864712995,122.24699,120.6744135,125.0077204,865.2321345,0,0.971468876,13.71939919,-0.971468876,166.2806008,0.998531547,0,984.6359955,125.0077204,1066.451048,7,13,8% -2018-07-27 22:00:00,29.47784506,237.7152841,884.2163538,875.7577732,121.8288927,985.2490507,860.4281522,124.8208984,118.1553021,6.665596369,218.0620827,0,218.0620827,3.673590615,214.3884921,0.514485453,4.148914389,0.552319267,-0.552319267,0.435701532,0.435701532,0.137781768,3.42246094,110.0781085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5753706,2.661503895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479561301,105.8112649,116.0549319,108.4727688,860.4281522,0,0.982495592,10.73610837,-0.982495592,169.2638916,0.999109186,0,975.7166031,108.4727688,1046.709861,7,14,7% -2018-07-27 23:00:00,40.2992823,253.9168937,758.0820136,845.0353518,113.593467,907.9992865,792.1163392,115.8829473,110.1682049,5.714742434,187.2310231,0,187.2310231,3.425262147,183.805761,0.703355162,4.431685821,0.84605927,-0.84605927,0.385469033,0.385469033,0.149843243,2.729088656,87.77687236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.897869,2.481590765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.977215441,84.37446846,107.8750844,86.85605923,792.1163392,0,0.937376569,20.38444794,-0.937376569,159.6155521,0.996659644,0,897.345473,86.85605923,954.1910266,7,15,6% -2018-07-27 00:00:00,51.93709609,265.210378,588.0191289,789.3209086,101.3820725,765.1527736,662.3950081,102.7577655,98.32502895,4.432736574,145.6290892,0,145.6290892,3.057043546,142.5720456,0.906473331,4.628794307,1.232312886,-1.232312886,0.319415775,0.319415775,0.172412882,1.93602989,62.26937632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.5137578,2.214817642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402647065,59.85569305,95.91640487,62.07051069,662.3950081,0,0.839196075,32.94467581,-0.839196075,147.0553242,0.990419168,0,751.9651179,62.07051069,792.5890257,7,16,5% -2018-07-27 01:00:00,63.76183253,274.4593371,387.4428539,686.3582198,84.00150898,561.1949687,476.8057072,84.38926144,81.46855355,2.920707889,96.47296101,0,96.47296101,2.532955428,93.94000559,1.112853915,4.790219094,1.846776621,-1.846776621,0.214336287,0.214336287,0.216810061,1.123526477,36.13647359,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31067248,1.835117585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813991108,34.73575294,79.12466359,36.57087052,476.8057072,0,0.694689294,45.99753686,-0.694689294,134.0024631,0.978025377,0,545.4527452,36.57087052,569.3876485,7,17,4% -2018-07-27 02:00:00,75.43376818,283.0184758,176.4158846,475.2039796,56.90256851,300.7220696,244.205426,56.51664358,55.18674613,1.329897456,44.48989607,0,44.48989607,1.715822389,42.77407368,1.316567622,4.939604247,3.226826723,-3.226826723,0,0,0.322547874,0.428955597,13.79668653,0.021206711,1,0.300516244,0,0.924284764,0.963046727,0.724496596,1,53.10205098,1.24310748,0.003590768,0.312029739,0.989868121,0.714364716,0.961238037,0.922476074,0.308936926,13.26189988,53.4109879,14.50500736,239.0266321,0,0.513896004,59.07630915,-0.513896004,120.9236908,0.95270405,0,281.1326283,14.50500736,290.6258655,7,18,3% -2018-07-27 03:00:00,86.58125103,291.6958374,11.14980367,53.52467585,7.957965306,24.44630549,16.64425027,7.80205522,7.71800329,0.08405193,2.943361005,0,2.943361005,0.239962016,2.703398989,1.511127901,5.091052777,12.49907537,-12.49907537,0,0,0.713731429,0.059990504,1.929500822,0.616463545,1,0.079835866,0,0.953435363,0.992197326,0.724496596,1,7.473357937,0.173851664,0.081563337,0.312029739,0.794872305,0.519368901,0.961238037,0.922476074,0.041345858,1.854709583,7.514703795,2.028561246,6.383676738,0,0.310964056,71.88266145,-0.310964056,108.1173386,0.889209712,0,13.19113115,2.028561246,14.51878391,7,19,10% -2018-07-27 04:00:00,97.41026867,301.1194396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700129914,5.255525663,-4.826242001,4.826242001,1,0.64451032,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091697371,84.73873685,-0.091697371,95.26126315,0.504728099,0,0,0,0,7,20,0% -2018-07-27 05:00:00,106.9415578,311.8733177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.86648229,5.443216243,-1.547598059,1.547598059,1,0.794808545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.119583985,96.86809379,0.119583985,83.13190621,0,0.631883812,0,0,0,7,21,0% -2018-07-27 06:00:00,114.8580046,324.4835752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004650352,5.663306756,-0.577418719,0.577418719,1,0.628898106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.312000855,108.1798528,0.312000855,71.82014724,0,0.889744029,0,0,0,7,22,0% -2018-07-27 07:00:00,120.4716113,339.2059317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102626272,5.92026035,-0.02355402,0.02355402,1,0.534181664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472443561,118.1930307,0.472443561,61.80696935,0,0.944167253,0,0,0,7,23,0% -2018-07-28 08:00:00,123.0731,355.6224451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148030816,6.206782561,0.413525187,-0.413525187,1,0.459436718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589980061,126.1555933,0.589980061,53.8444067,0,0.965251373,0,0,0,7,0,0% -2018-07-28 09:00:00,122.2445091,12.45702299,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133569177,0.217416066,0.850746107,-0.850746107,1,0.384667537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656600921,131.041152,0.656600921,48.95884796,0,0.973850244,0,0,0,7,1,0% -2018-07-28 10:00:00,118.1262751,28.17719411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061692434,0.491784811,1.394116406,-1.394116406,1,0.291745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667765294,131.8948225,0.667765294,48.10517749,0,0.975123392,0,0,0,7,2,0% -2018-07-28 11:00:00,111.3208939,41.89652522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942916125,0.73123231,2.260029611,-2.260029611,1,0.143665864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622710708,128.5143561,0.622710708,51.48564393,0,0.969705893,0,0,0,7,3,0% -2018-07-28 12:00:00,102.5567365,53.57186679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789952722,0.935005462,4.306374839,-4.306374839,1,0,#DIV/0!,0,0,0.171004922,1,0.228170016,0,0.935017811,0.973779774,0.724496596,1,0,0,0.027062093,0.312029739,0.926123659,0.650620255,0.961238037,0.922476074,0,0,0,0,0,0,-0.524505583,121.6349653,0.524505583,58.36503466,0,0.95467213,0,0,0,7,4,0% -2018-07-28 13:00:00,92.45452501,63.63062534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363587,1.110563917,23.18463847,-23.18463847,1,0,#DIV/0!,0,0,0.774503213,1,0.04310529,0,0.957213899,0.995975862,0.724496596,1,0,0,0.096806285,0.312029739,0.762398044,0.486894639,0.961238037,0.922476074,0,0,0,0,0,0,-0.379840809,112.3238223,0.379840809,67.67617765,0,0.918365908,0,0,0,7,5,0% -2018-07-28 14:00:00,81.37097321,72.64047926,75.58311456,275.0674686,34.31302549,33.84813862,0,33.84813862,33.27836117,0.569777444,73.49440402,54.1337385,19.36066552,1.03466432,18.3260012,1.420191398,1.267815533,-6.582614838,6.582614838,0.344152875,0.344152875,0.453977396,0.36573595,11.76332538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.98842656,0.749610778,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264974451,11.30735579,32.25340102,12.05696657,0,54.1337385,-0.196801675,101.3499917,0.196801675,78.65000832,0,0.795937121,32.25340102,55.14401857,68.34405829,7,6,112% -2018-07-28 15:00:00,69.90769433,81.20128877,276.499552,596.3673787,71.62733188,76.16163794,4.609763974,71.55187396,69.46750354,2.084370417,69.20034592,0,69.20034592,2.159828333,67.04051759,1.220119439,1.417229846,-2.681689836,2.681689836,0.988749661,0.988749661,0.259050445,2.066995243,66.48167227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77480673,1.564788275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497531017,63.90471214,68.27233775,65.46950041,4.609763974,0,0.007729739,89.55711419,-0.007729739,90.44288581,0,0,68.27233775,65.46950041,111.1208164,7,7,63% -2018-07-28 16:00:00,58.13410221,90.00435039,485.6826387,743.6714453,93.07398863,259.8767604,165.948015,93.92874535,90.26746447,3.661280884,120.565903,0,120.565903,2.806524164,117.7593788,1.014631491,1.570872256,-1.511642354,1.511642354,0.788659757,0.788659757,0.191635404,3.035787767,97.64137003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76852034,2.033317203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.199417903,93.85659884,88.96793824,95.88991604,165.948015,0,0.22314695,77.10606394,-0.22314695,102.8939361,0.825932407,0,226.0297818,95.88991604,288.787814,7,8,28% -2018-07-28 17:00:00,46.36182885,100.057271,673.4830453,819.832248,107.7153001,465.5525067,356.0082206,109.5442861,104.4672864,5.076999676,166.5417754,0,166.5417754,3.248013726,163.2937616,0.809166561,1.746328819,-0.907679356,0.907679356,0.685376001,0.685376001,0.159937657,3.735129503,120.1346042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4179293,2.353174888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.70608861,115.4779511,103.1240179,117.831126,356.0082206,0,0.434245203,64.26272533,-0.434245203,115.7372747,0.93485768,0,435.9410371,117.831126,513.0591525,7,9,18% -2018-07-28 18:00:00,35.02811728,113.2636684,823.7413038,861.9107381,117.9480532,660.6146042,540.0134101,120.6011941,114.3914842,6.209709898,203.282185,0,203.282185,3.556568986,199.7256161,0.611355977,1.976823936,-0.510429129,0.510429129,0.617442212,0.617442212,0.143185795,4.174285304,134.2593644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9574457,2.576722124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024255493,129.0552079,112.9817012,131.63193,540.0134101,0,0.626530552,51.20538575,-0.626530552,128.7946142,0.970195432,0,636.9002449,131.63193,723.0507104,7,10,14% -2018-07-28 19:00:00,25.12062842,133.8654028,925.067699,884.3199841,124.3902237,823.445885,695.8329344,127.6129506,120.6393995,6.973551066,228.0441979,0,228.0441979,3.750824197,224.2933737,0.438437676,2.336392034,-0.206529962,0.206529962,0.565472393,0.565472393,0.134466076,4.350809775,139.9369982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9631796,2.717459362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152146871,134.5127654,119.1153265,137.2302248,695.8329344,0,0.786856508,38.10728996,-0.786856508,141.89271,0.986456013,0,805.5239084,137.2302248,895.3383459,7,11,11% -2018-07-28 20:00:00,19.29779818,168.8442292,970.0869683,893.1035251,127.1636684,938.2515092,807.6093692,130.64214,123.3292146,7.312925333,239.0432705,0,239.0432705,3.834453787,235.2088167,0.336810117,2.946887723,0.053835378,-0.053835378,0.520947298,0.520947298,0.131084813,4.268875053,137.3016959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5487322,2.778048716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092785444,131.9796126,121.6415176,134.7576613,807.6093692,0,0.904272961,25.27445954,-0.904272961,154.7255405,0.994706961,0,924.9761791,134.7576613,1013.172373,7,12,10% -2018-07-28 21:00:00,21.34133525,210.11186,955.5627671,890.3401755,126.2741767,993.9781788,864.3081987,129.6699801,122.4665444,7.20343577,235.4948883,0,235.4948883,3.80763233,231.687256,0.372476567,3.667143755,0.299794837,-0.299794837,0.478885753,0.478885753,0.132146397,3.945675626,126.9064913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7195007,2.758616661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85862856,121.9873466,120.5781293,124.7459632,864.3081987,0,0.970761763,13.88919595,-0.970761763,166.1108041,0.998494057,0,983.5847291,124.7459632,1065.228467,7,13,8% -2018-07-28 22:00:00,29.64638268,237.39179,882.5168765,875.3884486,121.7213421,984.1435675,859.439788,124.7037795,118.0509945,6.652784991,217.6467817,0,217.6467817,3.670347569,213.9764341,0.517426989,4.143268352,0.555425556,-0.555425556,0.435170326,0.435170326,0.137925229,3.413374916,109.7858707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4751062,2.659154319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.472978507,105.5303548,115.9480847,108.1895091,859.439788,0,0.981781047,10.95370175,-0.981781047,169.0462983,0.999072148,0,974.5904397,108.1895091,1045.39831,7,14,7% -2018-07-28 23:00:00,40.4426122,253.6346122,756.1905515,844.5172572,113.4655623,906.6994346,790.9547938,115.7446407,110.0441569,5.700483793,186.7685594,0,186.7685594,3.421405346,183.3471541,0.705856741,4.42675908,0.85063553,-0.85063553,0.384686447,0.384686447,0.150048902,2.719208125,87.45908051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7786294,2.478796526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.97005703,84.06899485,107.7486864,86.54779138,790.9547938,0,0.936576236,20.51569275,-0.936576236,159.4843073,0.996614063,0,896.0253571,86.54779138,952.6691556,7,15,6% -2018-07-28 00:00:00,52.07085027,264.969019,585.886988,788.4816383,101.217911,763.5173561,660.9348749,102.5824812,98.16581757,4.416663595,145.1071769,0,145.1071769,3.052093472,142.0550834,0.908807781,4.624581798,1.239664297,-1.239664297,0.318158609,0.318158609,0.172760128,1.925460461,61.92942717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36071776,2.211231331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39498955,59.52892099,95.75570731,61.74015232,660.9348749,0,0.838237497,33.04553101,-0.838237497,146.954469,0.990351034,0,750.3132441,61.74015232,790.720939,7,16,5% -2018-07-28 01:00:00,63.89548558,274.2471052,385.0618236,684.752977,83.76371726,559.0247182,474.8840274,84.14069081,81.23793213,2.902758677,95.88848236,0,95.88848236,2.525785131,93.36269723,1.115186601,4.78651495,1.860809123,-1.860809123,0.211936588,0.211936588,0.217533165,1.112820482,35.792132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.0889904,1.829922729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.806234651,34.40475869,78.89522505,36.23468142,474.8840274,0,0.693511446,46.09128291,-0.693511446,133.9087171,0.977903137,0,543.285805,36.23468142,567.0006793,7,17,4% -2018-07-28 02:00:00,75.57344259,282.8262932,173.9225239,471.4475205,56.46664851,297.6716652,241.596593,56.07507216,54.76397071,1.31110145,43.87220732,0,43.87220732,1.702677792,42.16952953,1.3190054,4.936250028,3.266535753,-3.266535753,0,0,0.324665531,0.425669448,13.69099268,0.027669439,1,0.29707543,0,0.924820022,0.963581985,0.724496596,1,52.71084006,1.233584264,0.004670994,0.312029739,0.986839778,0.711336374,0.961238037,0.922476074,0.306039051,13.16030292,53.01687911,14.39388719,234.9117508,0,0.512457023,59.17237013,-0.512457023,120.8276299,0.952430843,0,276.7540758,14.39388719,286.1745871,7,18,3% -2018-07-28 03:00:00,86.72645763,291.5183925,10.07470184,48.63224894,7.297653858,22.19679844,15.04324841,7.153550027,7.077602669,0.075947358,2.662779292,0,2.662779292,0.220051189,2.442728103,1.513662234,5.087955779,13.09074941,-13.09074941,0,0,0.724354325,0.055012797,1.769400667,0.630791448,1,0.07624175,0,0.953819139,0.992581103,0.724496596,1,6.852042216,0.159426338,0.083018996,0.312029739,0.791690745,0.516187341,0.961238037,0.922476074,0.037957319,1.700815224,6.889999535,1.860241561,5.55409597,0,0.309326604,71.98134678,-0.309326604,108.0186532,0.888358553,0,11.82402819,1.860241561,13.04151909,7,19,10% -2018-07-28 04:00:00,97.57778599,300.9553796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703053642,5.252662275,-4.735074529,4.735074529,1,0.660100876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089646408,84.85673447,-0.089646408,95.14326553,0.492253168,0,0,0,0,7,20,0% -2018-07-28 05:00:00,107.1283179,311.7263651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869741869,5.440651437,-1.537027227,1.537027227,1,0.793000826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.121927763,97.00337236,0.121927763,82.99662764,0,0.639921125,0,0,0,7,21,0% -2018-07-28 06:00:00,115.06549,324.3644059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008271656,5.661226859,-0.576262866,0.576262866,1,0.628700444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.314605018,108.3369707,0.314605018,71.66302926,0,0.891070558,0,0,0,7,22,0% -2018-07-28 07:00:00,120.6970197,339.1323286,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106560392,5.918975734,-0.025506983,0.025506983,1,0.534515641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475257848,118.3761398,0.475257848,61.62386022,0,0.944793952,0,0,0,7,23,0% -2018-07-29 08:00:00,123.3073091,355.6123147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152118535,6.206605752,0.409592565,-0.409592565,1,0.460109236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592939821,126.3659055,0.592939821,53.63409448,0,0.96567441,0,0,0,7,0,0% -2018-07-29 09:00:00,122.4739659,12.51474598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137573953,0.218423522,0.844578754,-0.844578754,1,0.385722216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659631549,131.2717787,0.659631549,48.72822131,0,0.974200108,0,0,0,7,1,0% -2018-07-29 10:00:00,118.3392957,28.28928417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065410344,0.493741152,1.384151457,-1.384151457,1,0.29344985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670787355,132.1278624,0.670787355,47.87213762,0,0.97546073,0,0,0,7,2,0% -2018-07-29 11:00:00,111.5120848,42.04333336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946253036,0.733794596,2.24100754,-2.24100754,1,0.14691883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6256454,128.7295738,0.6256454,51.27042621,0,0.970082526,0,0,0,7,3,0% -2018-07-29 12:00:00,102.7262766,53.73898863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792911755,0.937922288,4.250747811,-4.250747811,1,0,#DIV/0!,0,0,0.164415461,1,0.231051444,0,0.934611587,0.97337355,0.724496596,1,0,0,0.026094516,0.312029739,0.928666059,0.653162655,0.961238037,0.922476074,0,0,0,0,0,0,-0.527280158,121.8218696,0.527280158,58.17813039,0,0.95517375,0,0,0,7,4,0% -2018-07-29 13:00:00,92.60554352,63.81144583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61627164,1.11371983,21.84673481,-21.84673481,1,0,#DIV/0!,0,0,0.762236385,1,0.045741502,0,0.956953352,0.995715316,0.724496596,1,0,0,0.095684266,0.312029739,0.764724934,0.48922153,0.961238037,0.922476074,0,0,0,0,0,0,-0.382393588,112.4820261,0.382393588,67.51797394,0,0.91924467,0,0,0,7,5,0% -2018-07-29 14:00:00,81.50629432,72.83448808,73.48721486,269.4771049,33.6852416,33.22348495,0,33.22348495,32.66950728,0.553977667,72.47613912,53.64257875,18.83356037,1.01573432,17.81782605,1.422553197,1.271201626,-6.687995814,6.687995814,0.326131667,0.326131667,0.458382341,0.351787458,11.31469391,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.40317304,0.735896057,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.254868816,10.87611417,31.65804186,11.61201022,0,53.64257875,-0.19906173,101.4820969,0.19906173,78.51790306,0,0.798821635,31.65804186,54.46286266,67.30289621,7,6,113% -2018-07-29 15:00:00,70.03492787,81.41244379,274.1835581,594.0870756,71.33416743,74.66391039,3.413819821,71.25009057,69.18317909,2.066911477,68.62996639,0,68.62996639,2.150988343,66.47897805,1.222340083,1.420915196,-2.698271743,2.698271743,0.991585334,0.991585334,0.260169384,2.054044069,66.06511798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.50150325,1.558383732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488147936,63.50430431,67.98965119,65.06268804,3.413819821,0,0.005746329,89.67075779,-0.005746329,90.32924221,0,0,67.98965119,65.06268804,110.5718793,7,7,63% -2018-07-29 16:00:00,58.25814592,90.24058314,483.5658555,742.5955171,92.89153651,258.1939199,164.4580822,93.73583763,90.09051395,3.645323678,120.0471628,0,120.0471628,2.801022559,117.2461402,1.016796462,1.574995295,-1.51667406,1.51667406,0.789520229,0.789520229,0.192096972,3.025446432,97.30875717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.59842877,2.029331309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.191925641,93.53687871,88.79035441,95.56621002,164.4580822,0,0.221463877,77.20497191,-0.221463877,102.7950281,0.824229546,0,224.3415649,95.56621002,286.887738,7,8,28% -2018-07-29 17:00:00,46.49065338,100.3305983,671.5872653,819.2155864,107.5795379,463.9964821,354.5981557,109.3983264,104.3356179,5.062708486,166.0780278,0,166.0780278,3.243919994,162.8341078,0.811414973,1.75109928,-0.90924791,0.90924791,0.68564424,0.68564424,0.160186983,3.726153145,119.8458937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2913645,2.350208993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69958527,115.2004316,102.9909498,117.5506406,354.5981557,0,0.432850841,64.35138179,-0.432850841,115.6486182,0.934486767,0,434.358234,117.5506406,511.2927772,7,9,18% -2018-07-29 18:00:00,35.17457251,113.5865294,822.0224298,861.4947926,117.8360395,659.2512896,538.7716892,120.4796004,114.2828481,6.196752299,202.8620465,0,202.8620465,3.553191358,199.3088551,0.613912103,1.982458924,-0.510480145,0.510480145,0.617450936,0.617450936,0.143348935,4.166008014,133.9931383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8530206,2.574275044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018258624,128.7993012,112.8712792,131.3735762,538.7716892,0,0.625391696,51.28905734,-0.625391696,128.7109427,0.970050106,0,635.5068132,131.3735762,721.4881914,7,10,14% -2018-07-29 19:00:00,25.30545073,134.2124969,923.457264,883.9935224,124.2900896,822.2535176,694.7498218,127.5036958,120.5422848,6.961410926,227.6507099,0,227.6507099,3.747804784,223.9029051,0.441663434,2.342449968,-0.205690606,0.205690606,0.565328855,0.565328855,0.13459214,4.342752116,139.6778362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8698292,2.715271808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146309125,134.263649,119.0161384,136.9789208,694.7498218,0,0.785921847,38.1939816,-0.785921847,141.8060184,0.986380443,0,804.3037751,136.9789208,893.9537393,7,11,11% -2018-07-29 20:00:00,19.53028695,168.9812023,968.5050614,892.8056967,127.0670238,937.1657531,806.6292687,130.5364844,123.2354842,7.301000251,238.6568047,0,238.6568047,3.831539594,234.8252651,0.340867811,2.949278354,0.055374483,-0.055374483,0.520684095,0.520684095,0.131199132,4.260644177,137.0369626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4586349,2.775937393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.086822202,131.7251409,121.5454571,134.5010783,806.6292687,0,0.903476839,25.38108615,-0.903476839,154.6189139,0.994658238,0,923.8659043,134.5010783,1011.89417,7,12,10% -2018-07-29 21:00:00,21.56000678,209.8611064,953.9261665,890.0246918,126.1736408,992.9096892,863.3495508,129.5601384,122.36904,7.191098383,235.095044,0,235.095044,3.804600802,231.2904432,0.376293105,3.662767279,0.302063521,-0.302063521,0.478497785,0.478497785,0.132267722,3.936951586,126.6258962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6257758,2.756420329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.852308022,121.7176279,120.4780838,124.4740482,863.3495508,0,0.970028763,14.0630872,-0.970028763,165.9369128,0.998455137,0,982.4938775,124.4740482,1063.959653,7,13,8% -2018-07-29 22:00:00,29.82105263,237.0678215,880.746334,875.0025225,121.6092062,982.9864683,858.4047905,124.5816778,117.9422399,6.639437894,217.2141119,0,217.2141119,3.666966257,213.5471456,0.520475555,4.137614035,0.558654782,-0.558654782,0.434618095,0.434618095,0.138075177,3.403928943,109.4820557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3705672,2.656704571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.466134932,105.2383163,115.8367021,107.8950209,858.4047905,0,0.981031218,11.17754055,-0.981031218,168.8224594,0.999033222,0,973.411606,107.8950209,1044.026739,7,14,7% -2018-07-29 23:00:00,40.59163466,253.3498837,754.2181895,843.974967,113.3320296,905.3335074,789.7332413,115.6002661,109.9146508,5.685615295,186.2863109,0,186.2863109,3.417378844,182.8689321,0.708457674,4.42178963,0.85538635,-0.85538635,0.383874009,0.383874009,0.150264249,2.708943917,87.12894829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6541431,2.475879339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962620646,83.75165921,107.6167638,86.22753855,789.7332413,0,0.935730646,20.6534917,-0.935730646,159.3465083,0.99656582,0,894.6379188,86.22753855,951.0721182,7,15,6% -2018-07-29 00:00:00,52.20995092,264.7248262,583.6657801,787.6028363,101.0465372,761.7993824,659.3998519,102.3995305,97.99961132,4.399919192,144.5634518,0,144.5634518,3.04692592,141.5165258,0.911235546,4.62031983,1.24729945,-1.24729945,0.316852921,0.316852921,0.17312397,1.914501884,61.57696166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20095399,2.207487457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.387050098,59.19011774,95.58800409,61.3976052,659.3998519,0,0.837223816,33.15188784,-0.837223816,146.8481122,0.990278813,0,748.5777068,61.3976052,788.7612114,7,16,5% -2018-07-29 01:00:00,64.03428982,274.032085,382.5870557,683.0719326,83.51550831,556.7511676,472.8698572,83.88131042,80.99720759,2.884102831,95.2809618,0,95.2809618,2.518300715,92.76266109,1.117609192,4.78276214,1.875426301,-1.875426301,0.209436903,0.209436903,0.218291516,1.101756469,35.4362753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85759682,1.824500295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.798218811,34.0626957,78.65581563,35.887196,472.8698572,0,0.692269488,46.1899719,-0.692269488,133.8100281,0.977773792,0,541.015569,35.887196,564.5030211,7,17,4% -2018-07-29 02:00:00,75.71817916,282.6314785,171.3422591,467.5123577,56.01091334,294.4875034,238.8738754,55.61362797,54.32197764,1.291650325,43.23285016,0,43.23285016,1.688935695,41.54391446,1.32153153,4.93284987,3.308295911,-3.308295911,0,0,0.326894916,0.422233924,13.58049441,0.034374558,1,0.293538446,0,0.9253677,0.964129663,0.724496596,1,52.30105003,1.223628162,0.005784899,0.312029739,0.983726554,0.70822315,0.961238037,0.922476074,0.303034525,13.05408779,52.60408455,14.27771595,230.6626916,0,0.510946655,59.27309344,-0.510946655,120.7269066,0.952142426,0,272.2278194,14.27771595,281.5722989,7,18,3% -2018-07-29 03:00:00,86.8762005,291.338518,9.023638125,43.79729249,6.63696686,19.97784202,13.4729802,6.504861817,6.436837821,0.068023996,2.388014574,0,2.388014574,0.200129039,2.187885536,1.51627574,5.084816376,13.75766904,-13.75766904,0,0,0.735508978,0.05003226,1.609209455,0.645709972,1,0.072559126,0,0.95420922,0.992971184,0.724496596,1,6.230486945,0.144992807,0.084518312,0.312029739,0.788431486,0.512928082,0.961238037,0.922476074,0.034563455,1.546833338,6.2650504,1.691826145,4.773342531,0,0.307621303,72.08406249,-0.307621303,107.9159375,0.887462492,0,10.50121286,1.691826145,11.60847923,7,19,11% -2018-07-29 04:00:00,97.75054234,300.7891713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706068809,5.249761393,-4.644810556,4.644810556,1,0.675536924,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087514382,84.97937269,-0.087514382,95.02062731,0.478665333,0,0,0,0,7,20,0% -2018-07-29 05:00:00,107.3204777,311.5777291,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87309569,5.438057249,-1.526229747,1.526229747,1,0.791154348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124353422,97.14341823,0.124353422,82.85658177,0,0.647920191,0,0,0,7,21,0% -2018-07-29 06:00:00,115.278526,324.2443846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011989835,5.659132093,-0.574993929,0.574993929,1,0.628483443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31728925,108.4990692,0.31728925,71.5009308,0,0.892415084,0,0,0,7,22,0% -2018-07-29 07:00:00,120.9279929,339.0592663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110591635,5.917700557,-0.027402359,0.027402359,1,0.534839769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478147891,118.5645075,0.478147891,61.43549246,0,0.945429843,0,0,0,7,23,0% -2018-07-30 08:00:00,123.5467828,355.6046035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156298141,6.206471167,0.40569034,-0.40569034,1,0.460776556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595968819,126.5817279,0.595968819,53.41827214,0,0.966102993,0,0,0,7,0,0% -2018-07-30 09:00:00,122.7079976,12.57666468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141658577,0.219504208,0.83842977,-0.83842977,1,0.386773754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662723142,131.5078873,0.662723142,48.49211274,0,0.974553714,0,0,0,7,1,0% -2018-07-30 10:00:00,118.5559747,28.40663429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069192107,0.495789298,1.374211071,-1.374211071,1,0.295149756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673860921,132.3657566,0.673860921,47.63424345,0,0.975800713,0,0,0,7,2,0% -2018-07-30 11:00:00,111.7060483,42.19574192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949638338,0.736454627,2.2220839,-2.2220839,1,0.150154963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6286216,128.9484997,0.6286216,51.05150026,0,0.970460894,0,0,0,7,3,0% -2018-07-30 12:00:00,102.897883,53.91167825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795906852,0.940936291,4.195941199,-4.195941199,1,0,#DIV/0!,0,0,0.157819927,1,0.233961127,0,0.934199563,0.972961526,0.724496596,1,0,0,0.025120413,0.312029739,0.931233044,0.65572964,0.961238037,0.922476074,0,0,0,0,0,0,-0.530086396,122.0112924,0.530086396,57.98870755,0,0.955675753,0,0,0,7,4,0% -2018-07-30 13:00:00,92.75813429,63.99772598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618934851,1.116971032,20.64353718,-20.64353718,1,0,#DIV/0!,0,0,0.750006193,1,0.048403474,0,0.956688583,0.995450546,0.724496596,1,0,0,0.094555833,0.312029739,0.767075316,0.491571912,0.961238037,0.922476074,0,0,0,0,0,0,-0.384969014,112.6418166,0.384969014,67.3581834,0,0.920119417,0,0,0,7,5,0% -2018-07-30 14:00:00,81.64283838,73.03393083,71.38682883,263.7930835,33.04626156,32.58793892,0,32.58793892,32.04979485,0.53814407,71.41606568,53.11103583,18.30502985,0.996466714,17.30856314,1.42493634,1.274682559,-6.797659546,6.797659546,0.307378064,0.307378064,0.46291819,0.337957358,10.86987037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.80748188,0.721936742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.244848956,10.44853285,31.05233084,11.1704696,0,53.11103583,-0.201335968,101.6150937,0.201335968,78.38490632,0,0.801658879,31.05233084,53.74740304,66.22893118,7,6,113% -2018-07-30 15:00:00,70.16332702,81.62916665,271.8461714,591.7653016,71.03648961,73.16499188,2.221223263,70.94376862,68.89447735,2.049291268,68.05426383,0,68.05426383,2.142012259,65.91225157,1.224581071,1.424697724,-2.715136238,2.715136238,0.994469332,0.994469332,0.261311348,2.040919008,65.64297093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22399216,1.55188059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.478638874,63.09852051,67.70263104,64.6504011,2.221223263,0,0.003753554,89.78493667,-0.003753554,90.21506333,0,0,67.70263104,64.6504011,110.0150255,7,7,62% -2018-07-30 16:00:00,58.3834559,90.48272279,481.4249955,741.501138,92.7065048,256.5033807,162.9631341,93.5402466,89.91106163,3.629184971,119.5225071,0,119.5225071,2.79544317,116.7270639,1.018983534,1.579221429,-1.521725777,1.521725777,0.790384124,0.790384124,0.192566871,3.0149425,96.97091461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.42593237,2.025289061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.184315578,93.21213159,88.61024795,95.23742065,162.9631341,0,0.219774624,77.30420405,-0.219774624,102.6957959,0.822494208,0,222.6464818,95.23742065,284.9774689,7,8,28% -2018-07-30 17:00:00,46.62109714,100.610386,669.6636813,818.5873357,107.4415857,462.4303338,353.1803007,109.2500331,104.2018254,5.048207697,165.6074729,0,165.6074729,3.239760225,162.3677126,0.813691646,1.755982498,-0.910783122,0.910783122,0.685906777,0.685906777,0.160441112,3.716996552,119.5513862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1627581,2.347195254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.692951349,114.9173398,102.8557095,117.264535,353.1803007,0,0.431450971,64.44032231,-0.431450971,115.5596777,0.934111977,0,432.7656584,117.264535,509.5129513,7,9,18% -2018-07-30 18:00:00,35.32336053,113.9164362,820.2698572,861.0693445,117.7217264,657.8740982,537.5185755,120.3555227,114.171982,6.183540667,202.433668,0,202.433668,3.549744399,198.8839236,0.616508944,1.988216884,-0.510478832,0.510478832,0.617450711,0.617450711,0.143515851,4.157519631,133.7201227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7464519,2.571777733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.01210882,128.5368683,112.7585607,131.108646,537.5185755,0,0.624245398,51.37317693,-0.624245398,128.6268231,0.969903294,0,634.0995977,131.108646,719.9075844,7,10,14% -2018-07-30 19:00:00,25.49375156,134.5663655,921.8052309,883.657713,124.1872999,821.0410626,693.6495108,127.3915518,120.4425946,6.948957202,227.2470558,0,227.2470558,3.744705295,223.5023505,0.444949903,2.348626141,-0.204786974,0.204786974,0.565174325,0.565174325,0.134721843,4.334445697,139.4106732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7740032,2.713026239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140291152,134.0068418,118.9142944,136.719868,693.6495108,0,0.784975337,38.28160273,-0.784975337,141.7183973,0.986303731,0,803.0633951,136.719868,892.5438143,7,11,11% -2018-07-30 20:00:00,19.76752151,169.1244313,966.8721437,892.4974658,126.9672031,936.0511709,805.6238067,130.4273641,123.1386735,7.288690628,238.2578749,0,238.2578749,3.828529634,234.4293453,0.345008335,2.951778171,0.056990464,-0.056990464,0.520407746,0.520407746,0.131317469,4.252124352,136.7629357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3655768,2.773756687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080649618,131.4617359,121.4462264,134.2354926,805.6238067,0,0.902662291,25.48974949,-0.902662291,154.5102505,0.994608299,0,922.7263502,134.2354926,1010.580795,7,12,10% -2018-07-30 21:00:00,21.78466235,209.6154077,952.2282842,889.6965032,126.0692736,991.8013994,862.3552806,129.4461188,122.2678198,7.178299029,234.6802258,0,234.6802258,3.801453744,230.878772,0.380214084,3.658479027,0.304426792,-0.304426792,0.478093642,0.478093642,0.13239396,3.927899847,126.3347611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5284791,2.754140297,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845750068,121.4377778,120.3742292,124.1919181,862.3552806,0,0.969269046,14.24112058,-0.969269046,165.7588794,0.998414736,0,981.3624486,124.1919181,1062.643575,7,13,8% -2018-07-30 22:00:00,30.00181771,236.7436634,878.904136,874.5997175,121.4924363,981.7767537,857.322212,124.4545417,117.828991,6.625550628,216.7639286,0,216.7639286,3.663445213,213.1004834,0.523630501,4.131956409,0.562007312,-0.562007312,0.434044779,0.434044779,0.138231727,3.394122144,109.1666354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.261708,2.654153586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.459029939,104.9351223,115.720738,107.5892759,857.322212,0,0.980245242,11.40751465,-0.980245242,168.5924854,0.998992356,0,972.1790747,107.5892759,1042.594104,7,14,7% -2018-07-30 23:00:00,40.74632953,253.0629167,752.1645365,843.4081042,113.1928218,903.9005607,788.4507862,115.4497745,109.7796406,5.670133992,185.7841813,0,185.7841813,3.413181213,182.3710001,0.711157608,4.41678111,0.860312761,-0.860312761,0.383031543,0.383031543,0.150489443,2.698296457,86.78648939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5243662,2.47283817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954906598,83.42247469,107.4792728,85.89531286,788.4507862,0,0.934838997,20.79785064,-0.934838997,159.2021494,0.996514854,0,893.1821931,85.89531286,949.3989574,7,15,6% -2018-07-30 00:00:00,52.35437746,264.4779453,581.3554017,786.683874,100.8678963,759.9980207,657.789161,102.2088597,97.82635707,4.382502583,143.9978871,0,143.9978871,3.041539237,140.9563478,0.913756264,4.616010945,1.255221552,-1.255221552,0.315498162,0.315498162,0.173504703,1.90315631,61.21204898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.03441542,2.203584823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378830268,58.8393498,95.41324569,61.04293462,657.789161,0,0.836154373,33.26376863,-0.836154373,146.7362314,0.99020243,0,746.757671,61.04293462,786.7090509,7,16,5% -2018-07-30 01:00:00,64.17821786,273.8143832,380.0188482,681.3136711,83.25677541,554.3735481,470.762529,83.61101905,80.74627645,2.864742598,94.65046841,0,94.65046841,2.510498963,92.13996944,1.12012121,4.778962527,1.890640723,-1.890640723,0.206835084,0.206835084,0.219085911,1.090339201,35.06905671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.61639226,1.818847953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.789947039,33.70971123,78.4063393,35.52855918,470.762529,0,0.690962987,46.29361397,-0.690962987,133.706386,0.977637224,0,538.6413112,35.52855918,561.8940426,7,17,4% -2018-07-30 02:00:00,75.86794052,282.4341123,168.6762863,463.3944253,55.53498811,291.168751,236.0367946,55.13195641,53.86040331,1.271553095,42.57210327,0,42.57210327,1.674584794,40.89751847,1.324145359,4.92940518,3.352199973,-3.352199973,0,0,0.329240045,0.418646198,13.46510083,0.041324906,1,0.289907047,0,0.925927312,0.964689275,0.724496596,1,51.87227798,1.213230983,0.006932263,0.312029739,0.980529949,0.705026545,0.961238037,0.922476074,0.299923034,12.94316709,52.17220101,14.15639807,226.2825963,0,0.509364769,59.37847339,-0.509364769,120.6215266,0.951838519,0,267.5566924,14.15639807,276.8217718,7,18,3% -2018-07-30 03:00:00,87.03036944,291.1562752,8.003809691,39.05673949,5.980411693,17.80589689,11.94548058,5.860416314,5.800080216,0.060336098,2.120947802,0,2.120947802,0.180331478,1.940616325,1.518966496,5.08163564,14.51370833,-14.51370833,0,0,0.747195639,0.045082869,1.450020054,0.661227862,1,0.068791659,0,0.954604987,0.993366951,0.724496596,1,5.612949099,0.130649542,0.086060451,0.312029739,0.785097904,0.5095945,0.961238037,0.922476074,0.031186752,1.39381443,5.644135851,1.524463972,4.046795996,0,0.305849406,72.1907265,-0.305849406,107.8092735,0.886520853,0,9.23170489,1.524463972,10.22943607,7,19,11% -2018-07-30 04:00:00,97.9284836,300.6208595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70917447,5.246823798,-4.555592119,4.555592119,1,0.690794176,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.085301813,85.1066195,-0.085301813,94.8933805,0,0,0,0,0,7,20,0% -2018-07-30 05:00:00,107.5179757,311.4274395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876542681,5.435434201,-1.515225098,1.515225098,1,0.789272442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126860097,97.28818673,0.126860097,82.71181327,0,0.655865033,0,0,0,7,21,0% -2018-07-30 06:00:00,115.4970458,324.1235305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015803726,5.65702279,-0.573615435,0.573615435,1,0.628247706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320052374,108.6660923,0.320052374,71.33390773,0,0.893775569,0,0,0,7,22,0% -2018-07-30 07:00:00,121.1644608,338.986763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114718777,5.916435135,-0.02923968,0.02923968,1,0.535153969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481112246,118.7580698,0.481112246,61.24193021,0,0.946074148,0,0,0,7,23,0% -2018-07-31 08:00:00,123.7914469,355.5993391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160568334,6.206379286,0.401820782,-0.401820782,1,0.461438289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599065414,126.8029921,0.599065414,53.19700787,0,0.966536661,0,0,0,7,0,0% -2018-07-31 09:00:00,122.9465236,12.64281037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145821641,0.220658668,0.832302958,-0.832302958,1,0.387821501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873941,131.7494067,0.665873941,48.25059329,0,0.974910712,0,0,0,7,1,0% -2018-07-31 10:00:00,118.7762287,28.52926104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073036264,0.497929538,1.36430125,-1.36430125,1,0.296844435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676984205,132.6084253,0.676984205,47.3915747,0,0.976143033,0,0,0,7,2,0% -2018-07-31 11:00:00,111.9027049,42.3537425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953070642,0.739212257,2.203268914,-2.203268914,1,0.153372515,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631637585,129.1710442,0.631637585,50.82895583,0,0.970840683,0,0,0,7,3,0% -2018-07-31 12:00:00,103.0714865,54.08990407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798936804,0.944046918,4.141965927,-4.141965927,1,0,#DIV/0!,0,0,0.151221876,1,0.236897838,0,0.933781864,0.972543828,0.724496596,1,0,0,0.02414025,0.312029739,0.933823525,0.658320121,0.961238037,0.922476074,0,0,0,0,0,0,-0.532922724,122.2031451,0.532922724,57.79685494,0,0.956177767,0,0,0,7,4,0% -2018-07-31 13:00:00,92.91224174,64.18941613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621624534,1.120316656,19.55617147,-19.55617147,1,0,#DIV/0!,0,0,0.73781829,1,0.051090254,0,0.956419637,0.9951816,0.724496596,1,0,0,0.093421478,0.312029739,0.76944833,0.493944926,0.961238037,0.922476074,0,0,0,0,0,0,-0.387565739,112.8031171,0.387565739,67.19688288,0,0.920989628,0,0,0,7,5,0% -2018-07-31 14:00:00,81.78056243,73.23874283,69.28351087,258.0171177,32.39616931,31.94159364,0,31.94159364,31.41930527,0.52228837,70.31374858,52.5382952,17.77545338,0.976864034,16.79858935,1.427340078,1.278257202,-6.91182465,6.91182465,0.287854682,0.287854682,0.467588448,0.32426044,10.42933038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.20143132,0.707734667,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234925585,10.02506906,30.43635691,10.73280373,0,52.5382952,-0.203623293,101.7489198,0.203623293,78.2510802,0,0.804448525,30.43635691,52.9971578,65.12193674,7,6,114% -2018-07-31 15:00:00,70.29286652,81.8513768,269.4878922,589.4017105,70.73428474,71.66561552,1.032716886,70.63289864,68.60138507,2.031513564,67.47335916,0,67.47335916,2.132899667,65.3404595,1.226841961,1.428576022,-2.732285433,2.732285433,0.997402017,0.997402017,0.262476671,2.027621036,65.21526242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94226071,1.545278548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469004538,62.68739082,67.41126525,64.23266936,1.032716886,0,0.001752144,89.89960947,-0.001752144,90.10039053,0,0,67.41126525,64.23266936,109.4502627,7,7,62% -2018-07-31 16:00:00,58.51002238,90.73066668,479.260167,740.3880978,92.51888101,254.8054814,161.4635204,93.34196097,89.72909539,3.612865579,118.9919618,0,118.9919618,2.789785621,116.2021762,1.021192536,1.583548866,-1.526796389,1.526796389,0.79125125,0.79125125,0.193045213,3.004275469,96.62782622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.2510195,2.021190185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.176587351,92.88234198,88.42760685,94.90353217,161.4635204,0,0.218079573,77.40373791,-0.218079573,102.5962621,0.82072589,0,220.9448984,94.90353217,283.0573621,7,8,28% -2018-07-31 17:00:00,46.75316504,100.8964929,667.7120836,817.9472996,107.3014183,460.8540421,351.7546617,109.0993804,104.0658846,5.033495729,165.1300588,0,165.1300588,3.235533662,161.8945252,0.815996666,1.760976004,-0.912284245,0.912284245,0.686163484,0.686163484,0.160700129,3.707658118,119.2510301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0320867,2.344133124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.686185685,114.628626,102.7182723,116.9727592,351.7546617,0,0.43004563,64.52954403,-0.43004563,115.470456,0.933733268,0,431.1633021,116.9727592,507.7196336,7,9,18% -2018-07-31 18:00:00,35.47449609,114.253169,818.483125,860.6341959,117.6050774,656.4826738,536.2537519,120.228922,114.0588504,6.170071525,201.9969367,0,201.9969367,3.546227001,198.4507097,0.619146757,1.994093979,-0.51042479,0.51042479,0.61744147,0.61744147,0.143686624,4.148817877,133.4402444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6377055,2.569229391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.005804429,128.2678386,112.6435099,130.8370679,536.2537519,0,0.623091384,51.45776321,-0.623091384,128.5422368,0.969754949,0,632.6782396,130.8370679,718.3084838,7,10,14% -2018-07-31 19:00:00,25.68553311,134.9266527,920.1109682,883.3123532,124.0818097,819.8078774,692.531407,127.2764704,120.3402853,6.936185135,226.8330813,0,226.8330813,3.741524375,223.0915569,0.448297123,2.354914339,-0.20381887,0.20381887,0.565008769,0.565008769,0.134855266,4.325887998,139.1354282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6756596,2.710721673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134091129,133.7422658,118.8097507,136.4529875,692.531407,0,0.78401644,38.37019768,-0.78401644,141.6298023,0.986225827,0,801.8021104,136.4529875,891.1078617,7,11,11% -2018-07-31 20:00:00,20.00944545,169.2735794,965.1875062,892.1786187,126.8641572,934.9069079,804.592182,130.3147259,123.0387348,7.275991119,237.8463078,0,237.8463078,3.82542242,234.0208854,0.349230705,2.954381297,0.058683431,-0.058683431,0.520118232,0.520118232,0.131439908,4.243313254,136.4795405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2695119,2.771505521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074266008,131.1893256,121.3437779,133.9608311,804.592182,0,0.901828586,25.60052254,-0.901828586,154.3994775,0.994557091,0,921.5566381,133.9608311,1009.231323,7,12,10% -2018-07-31 21:00:00,22.01522132,209.3748805,950.4684318,889.3553737,125.9610249,990.6523345,861.3244668,129.3278678,122.1628352,7.165032518,234.2502651,0,234.2502651,3.798189647,230.4520754,0.384238098,3.654281036,0.306884791,-0.306884791,0.477673299,0.477673299,0.132525206,3.91851869,126.0330309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4275639,2.75177547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838953452,121.1477432,120.2665174,123.8995187,861.3244668,0,0.96848177,14.42334097,-0.96848177,165.576659,0.998372802,0,980.1894388,123.8995187,1061.279196,7,13,8% -2018-07-31 22:00:00,30.18863653,236.4195884,876.9897129,874.1797519,121.3709842,980.5134263,856.1911062,124.3223201,117.7112012,6.611118898,216.2960923,0,216.2960923,3.659782984,212.6363093,0.526891104,4.126300234,0.565483507,-0.565483507,0.433450314,0.433450314,0.138394992,3.38395379,108.8395862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.148484,2.651500314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.451663002,104.6207501,115.600147,107.2722504,856.1911062,0,0.979422258,11.64351352,-0.979422258,168.3564865,0.998949496,0,970.8918209,107.2722504,1041.099363,7,14,7% -2018-07-31 23:00:00,40.90667286,252.773915,750.0292337,842.8162854,113.0478924,902.3996653,787.1065468,115.2931185,109.6390813,5.654037177,185.2620823,0,185.2620823,3.408811057,181.8532712,0.713956128,4.41173708,0.865415825,-0.865415825,0.382158867,0.382158867,0.150724648,2.687266365,86.43172371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3892553,2.469672007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946915333,83.08146042,107.3361706,85.55113243,787.1065468,0,0.933900496,20.94876773,-0.933900496,159.0512323,0.996461106,0,891.6572305,85.55113243,947.6487356,7,15,6% -2018-07-31 00:00:00,52.50410594,264.2285195,578.9557922,785.7241073,100.6819342,758.1124638,656.1020481,102.0104157,97.64600241,4.364413314,143.4104665,0,143.4104665,3.035931793,140.3745347,0.91636952,4.611657642,1.263433951,-1.263433951,0.314093759,0.314093759,0.173902629,1.891426125,60.83476591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.86105166,2.199522249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.370331789,58.47669096,95.23138345,60.67621321,656.1020481,0,0.835028532,33.38119072,-0.835028532,146.6188093,0.990121807,0,744.8523286,60.67621321,784.5636966,7,16,5% -2018-07-31 01:00:00,64.32723926,273.5941043,377.3575542,679.4767273,82.98740982,551.8911177,468.5614039,83.32971386,80.48503322,2.84468064,93.99708451,0,93.99708451,2.502376597,91.49470791,1.122722124,4.775117934,1.906465653,-1.906465653,0.204128862,0.204128862,0.219917182,1.078573748,34.69063932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.36527533,1.812963326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781423009,33.34596204,78.14669834,35.15892536,468.5614039,0,0.689591542,46.40221546,-0.689591542,133.5977845,0.97749331,0,536.162336,35.15892536,559.1731495,7,17,4% -2018-07-31 02:00:00,76.02268644,282.2342735,165.9258999,459.0895107,55.0384822,287.7146113,233.0849229,54.62968841,53.37886889,1.250819521,41.89026876,0,41.89026876,1.659613309,40.23065545,1.326846185,4.925917335,3.398348115,-3.398348115,0,0,0.33170519,0.414903327,13.34471722,0.048523462,1,0.28618302,0,0.926498364,0.965260327,0.724496596,1,51.42410603,1.202384193,0.008112857,0.312029739,0.977251492,0.701748088,0.961238037,0.922476074,0.296704202,12.82744978,51.72081023,14.02983398,221.7748354,0,0.507711279,59.48850089,-0.507711279,120.5114991,0.951518832,0,262.7437425,14.02983398,271.9259882,7,18,3% -2018-07-31 03:00:00,87.18884229,290.9717234,7.022494759,34.44948629,5.332944672,15.69814518,10.47306993,5.225075245,5.172136714,0.052938532,1.863493116,0,1.863493116,0.160807958,1.702685158,1.521732369,5.078414604,15.37640549,-15.37640549,0,0,0.75940885,0.04020199,1.293034178,0.677353422,1,0.064943249,0,0.955005805,0.993767768,0.724496596,1,5.004105472,0.116504818,0.087644478,0.312029739,0.781693596,0.506190192,0.961238037,0.922476074,0.027852074,1.242913635,5.031957546,1.359418454,3.379100174,0,0.304012369,72.30124448,-0.304012369,107.6987555,0.885533007,0,8.024262285,1.359418454,8.913974475,7,19,11% -2018-07-31 04:00:00,98.1115534,300.4504868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712369641,5.243850234,-4.467543982,4.467543982,1,0.705851294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.083009272,85.23844005,-0.083009272,94.76155995,0,0,0,0,0,7,20,0% -2018-07-31 05:00:00,107.7207485,311.2755238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880081734,5.432782771,-1.504032393,1.504032393,1,0.787358377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.129446876,97.43763056,0.129446876,82.56236944,0,0.66374116,0,0,0,7,21,0% -2018-07-31 06:00:00,115.7209813,324.0018598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019712137,5.654899236,-0.572131033,0.572131033,1,0.627993859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322893164,108.8379817,0.322893164,71.16201827,0,0.89515002,0,0,0,7,22,0% -2018-07-31 07:00:00,121.4063522,338.9148341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118940578,5.915179739,-0.03101865,0.03101865,1,0.535458191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48414943,118.9567604,0.48414943,61.04323962,0,0.9467261,0,0,0,7,23,0% -2018-08-01 08:00:00,124.0412261,355.5965469,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164927803,6.206330553,0.397985965,-0.397985965,1,0.462094081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602227931,127.0296286,0.602227931,52.97037138,0,0.966974957,0,0,0,8,0,0% -2018-08-01 09:00:00,123.1894629,12.71321295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150061732,0.221887424,0.826201862,-0.826201862,1,0.38886485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669082163,131.9962652,0.669082163,48.0037348,0,0.975270762,0,0,0,8,1,0% -2018-08-01 10:00:00,118.9999739,28.65717943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076941354,0.500162135,1.354427589,-1.354427589,1,0.298532931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680155408,132.8557883,0.680155408,47.14421166,0,0.976487389,0,0,0,8,2,0% -2018-08-01 11:00:00,112.1019754,42.51732488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956548569,0.742067308,2.184571938,-2.184571938,1,0.156569886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634691631,129.3971171,0.634691631,50.60288293,0,0.971221586,0,0,0,8,3,0% -2018-08-01 12:00:00,103.2470187,54.27363265,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802000419,0.947253587,4.088830008,-4.088830008,1,0,#DIV/0!,0,0,0.144624659,1,0.239860392,0,0.933358613,0.972120577,0.724496596,1,0,0,0.023154475,0.312029739,0.936436452,0.660933048,0.961238037,0.922476074,0,0,0,0,0,0,-0.535787581,122.397339,0.535787581,57.60266103,0,0.956679435,0,0,0,8,4,0% -2018-08-01 13:00:00,93.06781177,64.38646492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624339743,1.123755807,18.56910074,-18.56910074,1,0,#DIV/0!,0,0,0.725677885,1,0.053800934,0,0.956146563,0.994908526,0.724496596,1,0,0,0.092281669,0.312029739,0.771843149,0.496339745,0.961238037,0.922476074,0,0,0,0,0,0,-0.390182439,112.9658518,0.390182439,67.03414823,0,0.921854817,0,0,0,8,5,0% -2018-08-01 14:00:00,81.91942515,73.44885784,67.17882083,252.1510852,31.73505899,31.2845522,0,31.2845522,30.77812987,0.506422328,69.16882793,51.92361593,17.245212,0.956929119,16.28828288,1.42976369,1.281924401,-7.030727528,7.030727528,0.267521092,0.267521092,0.472396785,0.310711253,9.993541963,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.58510914,0.693291889,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225109245,9.606172657,29.81021838,10.29946455,0,51.92361593,-0.205922635,101.8835146,0.205922635,78.11648544,0,0.807190364,29.81021838,52.21170702,63.98173639,8,6,115% -2018-08-01 15:00:00,70.42352299,82.07899227,267.1091895,586.9959161,70.42753405,70.31746595,0,70.31746595,68.30388405,2.013581898,67.03834321,0.150977736,66.88736547,2.123650002,64.76371547,1.229122347,1.432548662,-2.749721805,2.749721805,0.999616188,0.999616188,0.26366571,2.013012831,64.74541232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.65629142,1.538577197,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.458420943,62.23575303,67.11471236,63.77433023,0,0.150977736,-0.000257204,90.01473671,0.000257204,89.98526329,0,0,67.11471236,63.77433023,108.853736,8,7,62% -2018-08-01 16:00:00,58.63783754,90.98431068,477.0714459,739.2561634,92.32864932,253.1005266,159.9595606,93.14096596,89.54459989,3.596366075,118.4555448,0,118.4555448,2.784049433,115.6714954,1.023423331,1.587975789,-1.531884895,1.531884895,0.792121435,0.792121435,0.193532122,2.993444707,96.27947169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07367541,2.017034337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1687405,92.54749035,88.24241591,94.56452469,159.9595606,0,0.216379069,77.50355315,-0.216379069,102.4964468,0.818924045,0,219.2371464,94.56452469,281.1277365,8,8,28% -2018-08-01 17:00:00,46.88686383,101.1887756,665.7322342,817.2952682,107.1590084,459.2675517,350.321212,108.9463397,103.9277689,5.018570788,164.6457272,0,164.6457272,3.231239477,161.4144878,0.81833015,1.7660773,-0.913750606,0.913750606,0.686414246,0.686414246,0.160964128,3.698136152,118.9447709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89932454,2.341022001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679287053,114.3342381,102.5786116,116.6752601,350.321212,0,0.428634822,64.61904631,-0.428634822,115.3809537,0.933350588,0,429.5511208,116.6752601,505.912745,8,9,18% -2018-08-01 18:00:00,35.62799527,114.5965065,816.6617506,860.1891399,117.4860541,655.0766273,534.97687,120.0997573,113.9434161,6.156341235,201.5517344,0,201.5517344,3.542638009,198.0090964,0.621825823,2.000086349,-0.510317669,0.510317669,0.617423151,0.617423151,0.14386134,4.139900425,133.1534285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5267456,2.566629178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999343765,127.9921402,112.5260894,130.5587694,534.97687,0,0.621929347,51.54283711,-0.621929347,128.4571629,0.969605016,0,631.2423459,130.5587694,716.6904492,8,10,14% -2018-08-01 19:00:00,25.88079791,135.2930045,918.3738319,882.9572335,123.9735729,818.5532919,691.3948898,127.1584021,120.2353123,6.923089868,226.4086288,0,226.4086288,3.738260637,222.6703681,0.451705137,2.361308383,-0.202786128,0.202786128,0.56483216,0.56483216,0.134992493,4.317076505,138.8520203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5747555,2.708357106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127707232,133.4698434,118.7024627,136.1782005,691.3948898,0,0.783044596,38.45981279,-0.783044596,141.5401872,0.986146676,0,800.5192354,136.1782005,889.645144,8,11,11% -2018-08-01 20:00:00,20.25600267,169.4283124,963.4504375,891.8489369,126.7578362,933.7320909,803.5335748,130.1985162,122.9356198,7.262896361,237.4219295,0,237.4219295,3.822216449,233.599713,0.35353394,2.957081898,0.060453472,-0.060453472,0.519815537,0.519815537,0.131566536,4.234208611,136.1867039,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1703938,2.769182806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.067669725,130.9078399,121.2380636,133.6770227,803.5335748,0,0.900974976,25.71347907,-0.900974976,154.2865209,0.994504563,0,920.3558702,133.6770227,1007.844808,8,12,10% -2018-08-01 21:00:00,22.25160116,209.1396202,948.6459298,889.0010634,125.8488449,989.4615114,860.2561798,129.2053316,122.0540378,7.151293729,233.8049957,0,233.8049957,3.794807005,230.0101887,0.388363704,3.650174969,0.309437645,-0.309437645,0.477236736,0.477236736,0.132661556,3.9088065,125.7206535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3229837,2.749324757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.831917003,120.8474741,120.1549007,123.5967989,860.2561798,0,0.967666086,14.60978987,-0.967666086,165.3902101,0.998329284,0,978.9738363,123.5967989,1059.865469,8,13,8% -2018-08-01 22:00:00,30.38146384,236.0958576,875.002515,873.7423394,121.2448025,979.195492,855.0105291,124.1849629,117.5888243,6.59613856,215.8104683,0,215.8104683,3.655978141,212.1544902,0.530256576,4.120650066,0.569083732,-0.569083732,0.43283464,0.43283464,0.13856509,3.373423297,108.5008893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0308507,2.648743718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444033695,104.2951818,115.4748844,106.9439256,855.0105291,0,0.978561403,11.88542653,-0.978561403,168.1145735,0.998904586,0,969.5488229,106.9439256,1039.541483,8,14,7% -2018-08-01 23:00:00,41.0726371,252.483078,747.8119531,842.1991199,112.897196,900.8299057,785.6996544,115.1302513,109.492929,5.63732238,184.7199329,0,184.7199329,3.404267004,181.3156659,0.71685275,4.406661018,0.870696644,-0.870696644,0.381255794,0.381255794,0.150970034,2.675854442,86.06467704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2487681,2.466379856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938647434,82.7286412,107.1874155,85.19502106,785.6996544,0,0.932914362,21.10623377,-0.932914362,158.8937662,0.996404513,0,890.0620966,85.19502106,945.820534,8,15,6% -2018-08-01 00:00:00,52.65910932,263.9766895,576.466932,784.7228753,100.4885973,756.1419273,654.3377807,101.8041466,97.45849534,4.345651234,142.8011837,0,142.8011837,3.030101972,139.7710818,0.919074839,4.60726238,1.271940153,-1.271940153,0.312639113,0.312639113,0.17431806,1.879313942,60.44519646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.68081273,2.195298564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361556553,58.10222198,95.04236929,60.29752055,654.3377807,0,0.833845681,33.50416672,-0.833845681,146.4958333,0.990036866,0,742.8608952,60.29752055,782.3244165,8,16,5% -2018-08-01 01:00:00,64.48132082,273.3713512,374.6035787,677.5595822,82.70730016,549.3031575,466.2658676,83.03728991,80.2133699,2.82392001,93.32090492,0,93.32090492,2.493930257,90.82697467,1.125411354,4.771230159,1.922915099,-1.922915099,0.201315841,0.201315841,0.220786199,1.066465479,34.30119575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.10414221,1.806843982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.772650609,32.97161406,77.87679282,34.77845804,466.2658676,0,0.688154783,46.5157791,-0.688154783,133.4842209,0.977341928,0,533.5779747,34.77845804,556.3397799,8,17,4% -2018-08-01 02:00:00,76.18237407,282.0320394,163.0924925,454.5932496,54.52098804,284.1243218,230.0178827,54.10643919,52.87697909,1.229460099,41.18767199,0,41.18767199,1.644008951,39.54366303,1.329633259,4.922387683,3.44684862,-3.44684862,0,0,0.334294897,0.411002238,13.21924477,0.05597336,1,0.282368184,0,0.927080358,0.965842321,0.724496596,1,50.95610034,1.191078888,0.009326455,0.312029739,0.973892738,0.698389334,0.961238037,0.922476074,0.293377583,12.70684089,51.24947792,13.89791978,217.143009,0,0.505986138,59.60316371,-0.505986138,120.3968363,0.951183064,0,257.7922304,13.89791978,266.888141,8,18,4% -2018-08-01 03:00:00,87.35148365,290.7849205,6.086935501,30.01575836,4.699941222,13.67222351,9.068116962,4.604106544,4.558220654,0.045885891,1.617568553,0,1.617568553,0.141720569,1.475847984,1.524570996,5.075154278,16.36824691,-16.36824691,0,0,0.772135867,0.035430142,1.139555163,0.694094312,1,0.061018057,0,0.955411019,0.994172982,0.724496596,1,4.409023363,0.10267607,0.089269342,0.312029739,0.778222404,0.502719,0.961238037,0.922476074,0.024586547,1.095383768,4.43360991,1.198059838,2.773988558,0,0.302111873,72.41550867,-0.302111873,107.5844913,0.884498394,0,6.887198335,1.198059838,7.671304538,8,19,11% -2018-08-01 04:00:00,98.29969327,300.278094,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715653301,5.240841412,-4.380774522,4.380774522,1,0.720689745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.080637375,85.37479698,-0.080637375,94.62520302,0,0,0,0,0,8,20,0% -2018-08-01 05:00:00,107.9287308,311.1220074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.883711709,5.430103404,-1.49267029,1.49267029,1,0.785415343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132112801,97.59170009,0.132112801,82.40829991,0,0.671535538,0,0,0,8,21,0% -2018-08-01 06:00:00,115.9502628,323.8793868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023713855,5.65276168,-0.570544463,0.570544463,1,0.627722539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325810353,109.0146772,0.325810353,70.98532278,0,0.896536491,0,0,0,8,22,0% -2018-08-01 07:00:00,121.6535949,338.8434932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123255777,5.913934606,-0.032739119,0.032739119,1,0.535752409,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487257919,119.1605113,0.487257919,60.83948868,0,0.947384941,0,0,0,8,23,0% -2018-08-02 08:00:00,124.2960446,355.5962513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169375226,6.206325393,0.394187786,-0.394187786,1,0.462743608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605454664,127.2615662,0.605454664,52.73843377,0,0.967417434,0,0,0,8,0,0% -2018-08-02 09:00:00,123.4367342,12.78790147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154377429,0.223190985,0.820129794,-0.820129794,1,0.389903235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672346006,132.2483899,0.672346006,47.75161013,0,0.975633529,0,0,0,8,1,0% -2018-08-02 10:00:00,119.2271264,28.79040333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080905913,0.502487331,1.344595314,-1.344595314,1,0.300214349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683372718,133.1077646,0.683372718,46.89223538,0,0.976833485,0,0,0,8,2,0% -2018-08-02 11:00:00,112.303781,42.68647731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96007074,0.745019575,2.166001552,-2.166001552,1,0.159745609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637782011,129.6266277,0.637782011,50.37337226,0,0.971603308,0,0,0,8,3,0% -2018-08-02 12:00:00,103.4244121,54.46282891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805096519,0.950555684,4.036538958,-4.036538958,1,0,#DIV/0!,0,0,0.138031444,1,0.242847637,0,0.93292993,0.971691893,0.724496596,1,0,0,0.022163519,0.312029739,0.939070805,0.663567401,0.961238037,0.922476074,0,0,0,0,0,0,-0.538679407,122.5937855,0.538679407,57.40621446,0,0.957180413,0,0,0,8,4,0% -2018-08-02 13:00:00,93.22479119,64.58881942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627079551,1.127287559,17.66942369,-17.66942369,1,0,#DIV/0!,0,0,0.713589797,1,0.056534633,0,0.955869405,0.994631368,0.724496596,1,0,0,0.091136855,0.312029739,0.774258973,0.498755568,0.961238037,0.922476074,0,0,0,0,0,0,-0.3928178,113.1299452,0.3928178,66.87005483,0,0.922714526,0,0,0,8,5,0% -2018-08-02 14:00:00,82.05938623,73.66420818,65.07433485,246.1970714,31.06303957,30.61693214,0,30.61693214,30.12637431,0.490557824,67.98103085,51.2663397,16.71469114,0.936665253,15.77802589,1.432206472,1.285682974,-7.154623585,7.154623585,0.246333618,0.246333618,0.477347016,0.297324162,9.562967089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.9586169,0.678610788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.215410343,9.192287711,29.17402725,9.870898498,0,51.2663397,-0.208232939,102.018818,0.208232939,77.98118198,0,0.80988429,29.17402725,51.39070162,62.80821364,8,6,115% -2018-08-02 15:00:00,70.55527435,82.31192975,264.7105118,584.5475025,70.11621509,69.99745216,0,69.99745216,68.00195251,1.995499652,67.62554418,1.329153308,66.29639087,2.114262586,64.18212829,1.231421842,1.436614188,-2.767448119,2.767448119,0.996584809,0.996584809,0.264878847,1.990489792,64.02099398,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.36606333,1.531776047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.442103079,61.53941457,66.80816641,63.07119062,0,1.329153308,-0.002273816,90.13028016,0.002273816,89.86971984,0,0,66.80816641,63.07119062,108.0869992,8,7,62% -2018-08-02 16:00:00,58.76689485,91.24354938,474.858887,738.1050853,92.13579157,251.3887976,158.4515532,92.93724438,89.35755751,3.579686872,117.9132689,0,117.9132689,2.778234061,115.1350349,1.025675806,1.592500358,-1.536990375,1.536990375,0.792994524,0.792994524,0.194027729,2.982449502,95.9258281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89388316,2.012821119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.160774512,92.20755469,88.05465767,94.22037581,158.4515532,0,0.214673434,77.6036309,-0.214673434,102.3963691,0.817088088,0,217.5235343,94.22037581,279.1888858,8,8,28% -2018-08-02 17:00:00,47.02220136,101.4870899,663.7238767,816.6310208,107.0143267,457.670783,348.8799022,108.7908808,103.7874499,5.003430941,164.154415,0,164.154415,3.22687679,160.9275382,0.820692235,1.771283867,-0.915181579,0.915181579,0.686658957,0.686658957,0.161233203,3.688428906,118.6325525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76444457,2.337861249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.672254186,114.0341219,102.4366988,116.3719831,348.8799022,0,0.427218528,64.70883002,-0.427218528,115.29117,0.932963877,0,427.929045,116.3719831,504.0921806,8,9,18% -2018-08-02 18:00:00,35.78387472,114.9462265,814.8052383,859.7339625,117.3646169,653.6555468,533.68756,119.9679868,113.8256407,6.142346061,201.0979397,0,201.0979397,3.53897623,197.5589635,0.624546433,2.006190116,-0.510157154,0.510157154,0.617395701,0.617395701,0.144040086,4.130764932,132.8595996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4135354,2.563976231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.992725132,127.7097007,112.4062605,130.273677,533.68756,0,0.62075896,51.62842108,-0.62075896,128.3715789,0.969453438,0,629.7915004,130.273677,715.0530165,8,10,14% -2018-08-02 19:00:00,26.07954805,135.6650697,916.5931722,882.5921394,123.8625428,817.2766179,690.2393213,127.0372967,120.1276302,6.909666502,225.9735392,0,225.9735392,3.734912671,222.2386265,0.455173981,2.367802147,-0.20168861,0.20168861,0.564644473,0.564644473,0.135133608,4.308008721,138.5603692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4712474,2.705931516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121137654,133.1894972,118.5923851,135.8954288,690.2393213,0,0.782059221,38.55049564,-0.782059221,141.4495044,0.986066223,0,799.2140654,135.8954288,888.1549056,8,11,11% -2018-08-02 20:00:00,20.5071369,169.5883014,961.6602286,891.5081974,126.6481901,932.5258348,802.4471539,130.0786809,122.8292799,7.24940101,236.9845664,0,236.9845664,3.818910213,233.1656561,0.357917059,2.959874232,0.062300657,-0.062300657,0.51949965,0.51949965,0.13169744,4.22480821,135.8843547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0681758,2.766787449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.060859166,130.6172104,121.129035,133.3839978,802.4471539,0,0.900100702,25.82869283,-0.900100702,154.1713072,0.99445066,0,919.1231368,133.3839978,1006.420296,8,12,9% -2018-08-02 21:00:00,22.49371759,208.9097032,946.7601098,888.6333277,125.7326837,988.2279427,859.1494857,129.078457,121.9413793,7.137077621,233.3442542,0,233.3442542,3.791304316,229.5529498,0.392589433,3.646162161,0.312085473,-0.312085473,0.476783931,0.476783931,0.132803106,3.898761756,125.39758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2146921,2.746787071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824639621,120.5369236,120.0393317,123.2837107,859.1494857,0,0.966821139,14.80050466,-0.966821139,165.1994953,0.998284126,0,977.7146253,123.2837107,1058.401348,8,13,8% -2018-08-02 22:00:00,30.58025074,235.7727213,872.9420123,873.2871884,121.1138442,977.821961,853.7795405,124.0424205,117.4618149,6.580605621,215.3069267,0,215.3069267,3.652029264,211.6548975,0.533726062,4.115010273,0.572808363,-0.572808363,0.43219769,0.43219769,0.138742141,3.362530214,108.1505303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9087644,2.64588277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436141694,103.9584034,115.3449061,106.6042862,853.7795405,0,0.977661818,12.13314304,-0.977661818,167.866857,0.998857571,0,968.1490641,106.6042862,1037.919437,8,14,7% -2018-08-02 23:00:00,41.2441914,252.1906015,745.5123947,841.5562081,112.7406876,899.190379,784.2292517,114.9611273,109.3411399,5.619987337,184.1576591,0,184.1576591,3.399547701,180.7581113,0.719846937,4.401556339,0.876156367,-0.876156367,0.380322127,0.380322127,0.151225772,2.664061658,85.68538056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1028627,2.462960737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.930103602,82.364047,107.0329663,84.82700774,784.2292517,0,0.931879825,21.27023264,-0.931879825,158.7297674,0.996345013,0,888.3958702,84.82700774,943.9134502,8,15,6% -2018-08-02 00:00:00,52.81935777,263.7225945,573.8888369,783.6794971,100.287832,754.0856442,652.4956438,101.5900004,97.26378389,4.326216465,142.1700409,0,142.1700409,3.024048159,139.1459928,0.921871702,4.602827586,1.280743836,-1.280743836,0.311133594,0.311133594,0.17475132,1.866822575,60.04343118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49364868,2.190912597,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352506601,57.71602992,94.84615528,59.90694251,652.4956438,0,0.832605225,33.63270489,-0.832605225,146.3672951,0.98994753,0,740.7826064,59.90694251,779.9905022,8,16,5% -2018-08-02 01:00:00,64.64042691,273.1462257,371.7573725,675.5606564,82.41633165,546.6089638,463.8753245,82.73363927,79.93117516,2.802464105,92.62203551,0,92.62203551,2.485156483,90.13687903,1.128188279,4.767300977,1.940003868,-1.940003868,0.198393489,0.198393489,0.221693873,1.054020036,33.90090753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.8328859,1.800487412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763633928,32.5868418,77.59651982,34.38732922,463.8753245,0,0.686652368,46.63430451,-0.686652368,133.3656955,0.97718295,0,530.8875777,34.38732922,553.393397,8,17,4% -2018-08-02 02:00:00,76.34695829,281.8274862,160.1775524,449.9011168,53.98207955,280.3971494,226.8353426,53.56180672,52.35432068,1.207486049,40.46466091,0,40.46466091,1.627758871,38.83690204,1.332505796,4.918817557,3.497818687,-3.497818687,0,0,0.337014012,0.406939718,13.08858017,0.063677895,1,0.278464381,0,0.927672789,0.966434752,0.724496596,1,50.46780979,1.179305761,0.010572829,0.312029739,0.970455258,0.694951854,0.961238037,0.922476074,0.289942649,12.58124111,50.75775244,13.76054687,212.3909456,0,0.50418933,59.72244694,-0.50418933,120.2775531,0.950830904,0,252.7056273,13.76054687,261.71163,8,18,4% -2018-08-02 03:00:00,87.51814349,290.5959232,5.204189367,25.79622088,4.087135024,11.74585589,7.742731689,4.003124201,3.963892823,0.039231378,1.385058165,0,1.385058165,0.123242201,1.261815964,1.527479759,5.071855652,17.51853123,-17.51853123,0,0,0.785354785,0.03081055,0.990973206,0.711457303,1,0.057020533,0,0.955819956,0.99458192,0.724496596,1,3.833101951,0.089288555,0.090933859,0.312029739,0.774688439,0.499185035,0.961238037,0.922476074,0.021419308,0.952561139,3.854521259,1.041849694,2.234108687,0,0.300149845,72.53339664,-0.300149845,107.4666034,0.883416539,0,5.828169822,1.041849694,6.51003961,8,19,12% -2018-08-02 04:00:00,98.49284296,300.1037208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719024399,5.237798026,-4.295376614,4.295376614,1,0.735293648,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.078186775,85.51565092,-0.078186775,94.48434908,0,0,0,0,0,8,20,0% -2018-08-02 05:00:00,108.1418557,310.9669144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88743144,5.427396521,-1.481156903,1.481156903,1,0.783446438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134856876,97.75034379,0.134856876,82.24965621,0,0.679236554,0,0,0,8,21,0% -2018-08-02 06:00:00,116.1848193,323.7561244,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027807638,5.650610345,-0.56885951,0.56885951,1,0.627434395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.328802638,109.1961166,0.328802638,70.8038834,0,0.897933093,0,0,0,8,22,0% -2018-08-02 07:00:00,121.9061155,338.7727529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127663094,5.912699955,-0.034401052,0.034401052,1,0.536036616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.490436158,119.369253,0.490436158,60.63074702,0,0.948049931,0,0,0,8,23,0% -2018-08-03 08:00:00,124.5558256,355.5984761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173909259,6.206364223,0.390427999,-0.390427999,1,0.46338657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608743878,127.4987325,0.608743878,52.50126752,0,0.96786365,0,0,0,8,0,0% -2018-08-03 09:00:00,123.6882548,12.86690495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.158767292,0.224569856,0.814089874,-0.814089874,1,0.390936122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675663639,132.5057068,0.675663639,47.49429323,0,0.975998682,0,0,0,8,1,0% -2018-08-03 10:00:00,119.4576014,28.92894614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084928462,0.504905359,1.334809342,-1.334809342,1,0.301887848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686634304,133.3642718,0.686634304,46.63572816,0,0.977181034,0,0,0,8,2,0% -2018-08-03 11:00:00,112.5080422,42.86118699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963635771,0.748068834,2.147565678,-2.147565678,1,0.162898329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640906983,129.8594842,0.640906983,50.14051578,0,0.971985559,0,0,0,8,3,0% -2018-08-03 12:00:00,103.603599,54.65745648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808223919,0.953952576,3.985096244,-3.985096244,1,0,#DIV/0!,0,0,0.131445255,1,0.24585844,0,0.932495934,0.971257898,0.724496596,1,0,0,0.021167801,0.312029739,0.941725582,0.666222177,0.961238037,0.922476074,0,0,0,0,0,0,-0.541596639,122.7923953,0.541596639,57.20760472,0,0.957680372,0,0,0,8,4,0% -2018-08-03 13:00:00,93.38312697,64.7964254,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629843031,1.130910967,16.8463439,-16.8463439,1,0,#DIV/0!,0,0,0.701558532,1,0.059290487,0,0.955588209,0.994350172,0.724496596,1,0,0,0.08998747,0.312029739,0.776695011,0.501191607,0.961238037,0.922476074,0,0,0,0,0,0,-0.395470507,113.2953216,0.395470507,66.70467838,0,0.923568322,0,0,0,8,5,0% -2018-08-03 14:00:00,82.20040546,73.88472499,62.97165958,240.1574254,30.38024088,29.93887149,0,29.93887149,29.46416452,0.474706969,66.75018658,50.5659023,16.18428428,0.916076354,15.26820793,1.434667722,1.289531718,-7.283788311,7.283788311,0.224245149,0.224245149,0.482443072,0.284113404,9.138063705,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.32207567,0.6636942,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205839194,8.783854416,28.52791486,9.447548616,0,50.5659023,-0.210553149,102.1547702,0.210553149,77.84522982,0,0.812530268,28.52791486,50.53387476,61.60132521,8,6,116% -2018-08-03 15:00:00,70.68809893,82.55010484,262.292304,582.0560395,69.80030371,69.6728372,0,69.6728372,67.69556702,1.97727018,68.20165034,2.501107819,65.70054252,2.104736692,63.59580583,1.233740068,1.440771127,-2.78546731,2.78546731,0.993503346,0.993503346,0.266116476,1.967842977,63.29259455,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.07155394,1.524874569,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.425695538,60.83924933,66.49724948,62.3641239,0,2.501107819,-0.004297022,90.246202,0.004297022,89.753798,0,0,66.49724948,62.3641239,107.3133213,8,7,61% -2018-08-03 16:00:00,58.89718816,91.50827625,472.6225399,736.9346043,91.94028857,249.670567,156.939789,92.73077799,89.16794964,3.562828342,117.3651456,0,117.3651456,2.772338924,114.5928066,1.027949854,1.597120713,-1.542111937,1.542111937,0.793870362,0.793870362,0.194532171,2.971289132,95.56687222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.71162487,2.008550113,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152688861,91.86251264,87.86431373,93.87106276,156.939789,0,0.212962979,77.70395283,-0.212962979,102.2960472,0.815217409,0,215.8043619,93.87106276,277.2410951,8,8,28% -2018-08-03 17:00:00,47.15918565,101.7912901,661.6867509,815.9543304,106.8673434,456.0636468,347.4306739,108.6329729,103.6448987,4.988074226,163.6560582,0,163.6560582,3.222444701,160.4336135,0.823083062,1.776593162,-0.916576554,0.916576554,0.686897512,0.686897512,0.161507455,3.678534638,118.3143189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.62741893,2.334650217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.665085823,113.7282236,102.2925048,116.0628738,347.4306739,0,0.425796716,64.79889667,-0.425796716,115.2011033,0.932573073,0,426.2969959,116.0628738,502.2578255,8,9,18% -2018-08-03 18:00:00,35.94215065,115.3021064,812.9130911,859.2684448,117.2407259,652.2190115,532.3854438,119.8335677,113.7054854,6.128082257,200.635431,0,200.635431,3.535240458,197.1001905,0.627308869,2.01240139,-0.50994294,0.50994294,0.617359068,0.617359068,0.144222952,4.121409079,132.5586832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2980376,2.561269677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.985946848,127.4204484,112.2839844,129.9817181,532.3854438,0,0.619579885,51.7145381,-0.619579885,128.2854619,0.969300156,0,628.3252782,129.9817181,713.3957131,8,10,14% -2018-08-03 19:00:00,26.28178426,136.042502,914.7683414,882.2168523,123.7486727,815.9771605,689.0640567,126.9131038,120.0171936,6.895910157,225.5276543,0,225.5276543,3.731479065,221.7961752,0.458703669,2.374389583,-0.200526186,0.200526186,0.564445687,0.564445687,0.135278701,4.298682196,138.2603961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3650916,2.70344388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114380618,132.9011517,118.4794722,135.6045956,689.0640567,0,0.78105973,38.64229403,-0.78105973,141.357706,0.985984409,0,797.8858892,135.6045956,886.6363849,8,11,11% -2018-08-03 20:00:00,20.76279115,169.753225,959.8161777,891.1561737,126.5351688,931.2872511,801.3320848,129.9551663,122.7196666,7.235499775,236.5340468,0,236.5340468,3.815502204,232.7185446,0.362379068,2.962752692,0.064225056,-0.064225056,0.519170558,0.519170558,0.131832711,4.215109906,135.5724239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9628114,2.764318358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053832778,130.3173706,121.0166442,133.081689,801.3320848,0,0.899204997,25.94623635,-0.899204997,154.0537636,0.994395327,0,917.8575245,133.081689,1004.956828,8,12,9% -2018-08-03 21:00:00,22.74148466,208.6851907,944.8103159,888.2519185,125.6124918,986.9506422,858.0034512,128.947191,121.8248117,7.12237925,232.8678798,0,232.8678798,3.787680089,229.0801997,0.396913784,3.642243679,0.314828403,-0.314828403,0.476314862,0.476314862,0.132949958,3.888383032,125.0637645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1026429,2.74416133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81712027,120.2160475,119.9197631,122.9602088,858.0034512,0,0.965946071,14.99551759,-0.965946071,165.0044824,0.998237276,0,976.410791,122.9602088,1056.885788,8,13,8% -2018-08-03 22:00:00,30.78494509,235.4504207,870.807693,872.8140017,120.9780627,976.3918491,852.4972052,123.8946439,117.3301277,6.56451622,214.785342,0,214.785342,3.647934951,211.137407,0.537298652,4.109385066,0.576657796,-0.576657796,0.431539399,0.431539399,0.138926268,3.351274206,107.7884984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7821816,2.642916454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.427986754,103.6104046,115.2101684,106.253321,852.4972052,0,0.976722651,12.38655248,-0.976722651,167.6134475,0.998808395,0,966.6915338,106.253321,1036.232207,8,14,7% -2018-08-03 23:00:00,41.42130213,251.8966782,743.1302821,840.8871404,112.5783228,897.480192,782.694491,114.785701,109.183671,5.602029966,183.5751924,0,183.5751924,3.394651803,180.1805406,0.722938103,4.39642641,0.881796209,-0.881796209,0.379357657,0.379357657,0.151492041,2.651889123,85.29387002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9514976,2.459413675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.921284642,81.98771217,106.8727822,84.44712584,782.694491,0,0.930796124,21.44074187,-0.930796124,158.5592581,0.996282544,0,886.6576408,84.44712584,941.9265957,8,15,6% -2018-08-03 00:00:00,52.98481919,263.4663729,571.2215526,782.5932688,100.0795843,751.9428594,650.5749345,101.3679249,97.06181556,4.306109349,141.5170475,0,141.5170475,3.01776872,138.4992788,0.924759548,4.598355675,1.289848873,-1.289848873,0.309576541,0.309576541,0.175202745,1.853955018,59.62956632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29950904,2.186363165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3431841,57.31820727,94.64269314,59.50457043,650.5749345,0,0.831306581,33.76680968,-0.831306581,146.2331903,0.989853718,0,738.616711,59.50457043,777.5612622,8,16,5% -2018-08-03 01:00:00,64.80452001,272.9188293,368.8194252,673.4783025,82.11438506,543.8078389,461.3891889,82.41865,79.63833338,2.780316617,91.90059136,0,91.90059136,2.476051679,89.42453968,1.131052244,4.763332163,1.957747645,-1.957747645,0.195359125,0.195359125,0.222641161,1.041243318,33.48996436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55139524,1.793891013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754377239,32.1918276,77.30577248,33.98571861,461.3891889,0,0.68508397,46.75778876,-0.68508397,133.2422112,0.977016246,0,528.0905057,33.98571861,550.3334788,8,17,4% -2018-08-03 02:00:00,76.51639218,281.6206902,157.1826593,445.0084157,53.42131009,276.5323824,223.5370127,52.99536977,51.81046049,1.18490928,39.72160515,0,39.72160515,1.610849603,38.11075555,1.335462975,4.915208286,3.551385366,-3.551385366,0,0,0.339867708,0.402712401,12.95261512,0.071640549,1,0.274473472,0,0.928275152,0.967037115,0.724496596,1,49.95876432,1.167055054,0.011851751,0.312029739,0.966940637,0.691437233,0.961238037,0.922476074,0.286398769,12.45054633,50.24516309,13.61760139,207.5226985,0,0.502320866,59.8463336,-0.502320866,120.1536664,0.950462029,0,247.487608,13.61760139,256.4000558,8,18,4% -2018-08-03 03:00:00,87.68865551,290.4047881,4.380945858,21.83080321,3.500517622,9.936373779,6.508384258,3.427989521,3.3949641,0.03302542,1.167764566,0,1.167764566,0.105553522,1.062211044,1.530455755,5.068519715,18.86614394,-18.86614394,0,0,0.799032386,0.02638838,0.848741025,0.729447985,1,0.052955446,0,0.956231925,0.994993888,0.724496596,1,3.281976476,0.076473167,0.09263669,0.312029739,0.771096108,0.495592704,0.961238037,0.922476074,0.01838104,0.815842157,3.300357516,0.892315324,1.760856473,0,0.298128484,72.65476986,-0.298128484,107.3452301,0.882287075,0,4.853938423,0.892315324,5.437940957,8,19,12% -2018-08-03 04:00:00,98.69094077,299.9274068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722481858,5.234720766,-4.211428527,4.211428527,1,0.749649616,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075658151,85.66096096,-0.075658151,94.33903904,0,0,0,0,0,8,20,0% -2018-08-03 05:00:00,108.3600549,310.8102688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891239735,5.424662539,-1.469509702,1.469509702,1,0.781454649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137678076,97.91350873,0.137678076,82.08649127,0,0.686833973,0,0,0,8,21,0% -2018-08-03 06:00:00,116.4245784,323.6320852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031992224,5.648445452,-0.567079952,0.567079952,1,0.627130073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.331868684,109.3822363,0.331868684,70.61776366,0,0.899337999,0,0,0,8,22,0% -2018-08-03 07:00:00,122.1638393,338.7026258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132161224,5.911476006,-0.036004491,0.036004491,1,0.53631082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.493682561,119.5829144,0.493682561,60.41708564,0,0.948720344,0,0,0,8,23,0% -2018-08-04 08:00:00,124.8204907,355.603246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178528536,6.206447474,0.386708247,-0.386708247,1,0.464022685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612093811,127.7410536,0.612093811,52.25894643,0,0.968313175,0,0,0,8,0,0% -2018-08-04 09:00:00,123.9439408,12.95025333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163229854,0.22602456,0.808085067,-0.808085067,1,0.391963004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679033208,132.7681406,0.679033208,47.23185941,0,0.976365899,0,0,0,8,1,0% -2018-08-04 10:00:00,119.6913126,29.07282146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089007492,0.507416457,1.325074338,-1.325074338,1,0.303552632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689938313,133.625226,0.689938313,46.37477401,0,0.977529753,0,0,0,8,2,0% -2018-08-04 11:00:00,112.7146782,43.04144055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96724225,0.751214852,2.129271705,-2.129271705,1,0.166026783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644064787,130.0955925,0.644064787,49.90440746,0,0.972368058,0,0,0,8,3,0% -2018-08-04 12:00:00,103.7845103,54.85747806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811381417,0.957443611,3.934503734,-3.934503734,1,0,#DIV/0!,0,0,0.124869007,1,0.248891668,0,0.932056749,0.970818712,0.724496596,1,0,0,0.020167737,0.312029739,0.944399781,0.668896377,0.961238037,0.922476074,0,0,0,0,0,0,-0.544537694,122.9930769,0.544537694,57.00692307,0,0.958178992,0,0,0,8,4,0% -2018-08-04 13:00:00,93.5427652,65.00922763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632629244,1.134625066,16.0907626,-16.0907626,1,0,#DIV/0!,0,0,0.689588369,1,0.062067633,0,0.955303023,0.994064986,0.724496596,1,0,0,0.088833942,0.312029739,0.779150473,0.503647069,0.961238037,0.922476074,0,0,0,0,0,0,-0.39813923,113.4619042,0.39813923,66.53809581,0,0.924415792,0,0,0,8,5,0% -2018-08-04 14:00:00,82.3424418,74.11033844,60.87244789,234.0348256,29.68682087,29.25053591,0,29.25053591,28.79165369,0.458882225,65.47624474,49.82184781,15.65439693,0.895167182,14.75922975,1.437146723,1.293469416,-7.418518273,7.418518273,0.201204969,0.201204969,0.487688961,0.271093158,8.719287839,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.67563267,0.648545576,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19640607,8.381311125,27.87203874,9.029856701,0,49.82184781,-0.212882197,102.29131,0.212882197,77.70868996,0,0.815128316,27.87203874,49.64105562,60.36111682,8,6,117% -2018-08-04 15:00:00,70.82197439,82.79343218,259.8550262,579.5211029,69.47977651,69.34360185,0,69.34360185,67.3847049,1.958896951,68.76606576,3.666134538,65.09993122,2.095071615,63.0048596,1.236076636,1.445017991,-2.803782324,2.803782324,0.990371294,0.990371294,0.267378998,1.945078515,62.56041122,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.77274145,1.517872253,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.409202763,60.13544687,66.18194421,61.65331912,0,3.666134538,-0.006326145,90.36246383,0.006326145,89.63753617,0,0,66.18194421,61.65331912,106.5328085,8,7,61% -2018-08-04 16:00:00,59.02871059,91.77838387,470.3624671,735.7444616,91.74212171,247.9461152,155.424566,92.5215492,88.97575825,3.545790959,116.8111893,0,116.8111893,2.766363462,114.0448258,1.030245353,1.601834981,-1.547248653,1.547248653,0.794748793,0.794748793,0.195045583,2.959962943,95.20258307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.52688318,2.004220911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144483076,91.51234405,87.67136626,93.51656496,155.424566,0,0.211248027,77.80450015,-0.211248027,102.1954999,0.813311399,0,214.0799375,93.51656496,275.284659,8,8,29% -2018-08-04 17:00:00,47.29782374,102.1012299,659.6206087,815.2649694,106.7180292,454.4460617,345.9734761,108.4725856,103.5000868,4.972498773,163.1505957,0,163.1505957,3.217942326,159.9326534,0.825502753,1.782002632,-0.917934912,0.917934912,0.687129805,0.687129805,0.161786984,3.668451672,117.990016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.48822027,2.331388261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657780748,113.4164913,102.146001,115.7478796,345.9734761,0,0.424369363,64.88924729,-0.424369363,115.1107527,0.932178111,0,424.6549025,115.7478796,500.4095747,8,9,18% -2018-08-04 18:00:00,36.10283775,115.6639234,810.9848244,858.7923668,117.1143415,650.766608,531.0701499,119.6964582,113.582912,6.113546167,200.1640894,0,200.1640894,3.531429503,196.6326599,0.630113388,2.01871629,-0.509674718,0.509674718,0.6173132,0.6173132,0.144410028,4.11183061,132.2506067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1802154,2.558508653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97900728,127.1243136,112.1592227,129.6828223,531.0701499,0,0.618391791,51.80121059,-0.618391791,128.1987894,0.96914511,0,626.8432617,129.6828223,711.7180752,8,10,14% -2018-08-04 19:00:00,26.4875049,136.4249608,912.8987049,881.8311522,123.631916,814.6542314,687.8684578,126.7857736,119.9039575,6.881816048,225.0708186,0,225.0708186,3.72795842,221.3428602,0.462294171,2.381064747,-0.199298715,0.199298715,0.564235777,0.564235777,0.135427858,4.289094552,137.9520244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2562448,2.700893185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.107434402,132.6047332,118.3636792,135.3056263,687.8684578,0,0.780045541,38.73525476,-0.780045541,141.2647452,0.985901178,0,796.5340022,135.3056263,885.0888286,8,11,11% -2018-08-04 20:00:00,21.02290702,169.9227725,957.9175966,890.7926369,126.4187228,930.015458,800.1875386,129.8279193,122.6067319,7.221187469,236.0702026,0,236.0702026,3.811990928,232.2582117,0.366918946,2.965711855,0.066226748,-0.066226748,0.518828249,0.518828249,0.13197244,4.205111636,135.2508452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8542543,2.761774451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046589065,130.0082569,120.9008433,132.7700313,800.1875386,0,0.898287105,26.06617971,-0.898287105,153.9338203,0.994338509,0,916.558127,132.7700313,1003.453457,8,12,9% -2018-08-04 21:00:00,22.99481473,208.4661318,942.7959071,887.8565837,125.4882202,985.6286304,856.8171492,128.8114812,121.7042874,7.107193786,232.3757158,0,232.3757158,3.783932842,228.591783,0.401335228,3.638420379,0.317666579,-0.317666579,0.475829505,0.475829505,0.133102212,3.87766899,124.7191641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9867903,2.741446463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.809357983,119.8848045,119.7961483,122.6262509,856.8171492,0,0.965040036,15.19485474,-0.965040036,164.8051453,0.998188678,0,975.0613257,122.6262509,1055.317754,8,13,8% -2018-08-04 22:00:00,30.99549179,235.1291893,868.5990621,872.3224759,120.8374117,974.9041795,851.1625949,123.7415845,117.1937179,6.547866628,214.2455927,0,214.2455927,3.643693806,210.6018989,0.540973385,4.10377852,0.580632466,-0.580632466,0.43085969,0.43085969,0.139117594,3.339655041,107.4147861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6510593,2.639843759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419568709,103.2511781,115.070628,105.8910219,851.1625949,0,0.975743052,12.64554432,-0.975743052,167.3544557,0.998757001,0,965.1752289,105.8910219,1034.478785,8,14,7% -2018-08-04 23:00:00,41.6039332,251.6014995,740.6653582,840.1914955,112.4100569,895.6984589,781.0945316,114.6039273,109.020479,5.583448328,182.9724692,0,182.9724692,3.389577965,179.5828912,0.726125616,4.391274569,0.88761746,-0.88761746,0.378362164,0.378362164,0.151769022,2.639338071,84.89018502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7946312,2.455737697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912191448,81.5996748,106.7068226,84.0554125,781.0945316,0,0.929662506,21.6177331,-0.929662506,158.3822669,0.996217042,0,884.846506,84.0554125,939.8590924,8,15,6% -2018-08-04 00:00:00,53.15545968,263.2081632,568.4651475,781.4634596,99.86379872,749.7128233,648.5749562,101.1378671,96.85253673,4.285330402,140.8422185,0,140.8422185,3.01126199,137.8309565,0.927737787,4.593849065,1.299259356,-1.299259356,0.307967254,0.307967254,0.175672685,1.840714413,59.20370293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09834227,2.181649061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333591326,56.90885118,94.4319336,59.09050024,648.5749562,0,0.829949178,33.90648225,-0.829949178,146.0935177,0.989755347,0,736.3624646,59.09050024,775.0360152,8,16,5% -2018-08-04 01:00:00,64.97356113,272.6892644,365.7902574,671.310797,81.80133569,540.8990819,458.8068768,82.09220507,79.3347236,2.757481471,91.15669497,0,91.15669497,2.466612086,88.69008289,1.134002569,4.759325499,1.976163056,-1.976163056,0.192209904,0.192209904,0.223629072,1.028141452,33.0685633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25955397,1.787052059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744884982,31.78676087,77.00443895,33.57381293,458.8068768,0,0.683449274,46.88622695,-0.683449274,133.113773,0.976841681,0,525.1861198,33.57381293,547.1595089,8,17,4% -2018-08-04 02:00:00,76.69062744,281.4117285,154.1094822,439.9102682,52.8382106,272.5293251,220.1226391,52.40668597,51.2449436,1.161742373,38.95889517,0,38.95889517,1.593267002,37.36562817,1.338503954,4.911561217,3.607686596,-3.607686596,0,0,0.342861515,0.39831675,12.8112359,0.079865006,1,0.270397324,0,0.92888694,0.967648903,0.724496596,1,49.42847325,1.154316519,0.013163,0.312029739,0.963350468,0.687847064,0.961238037,0.922476074,0.282745203,12.31464725,49.71121845,13.46896376,202.5425431,0,0.500380771,59.9748052,-0.500380771,120.0251948,0.950076096,0,242.1420472,13.46896376,250.9572146,8,18,4% -2018-08-04 03:00:00,87.86283532,290.2115728,3.623307191,18.15722125,2.946189705,8.260115795,5.37545056,2.884665235,2.857351215,0.02731402,0.967351267,0,0.967351267,0.08883849,0.878512778,1.533495766,5.065147472,20.4638062,-20.4638062,0,0,0.813121701,0.022209622,0.714337804,0.748070426,1,0.048827923,0,0.95664621,0.995408173,0.724496596,1,2.761377058,0.064363184,0.094376325,0.312029739,0.76745015,0.491946745,0.961238037,0.922476074,0.015503265,0.686648668,2.776880323,0.751011852,1.354234971,0,0.296050287,72.77947215,-0.296050287,107.2205279,0.881109774,0,3.970109991,0.751011852,4.461632228,8,19,12% -2018-08-04 04:00:00,98.89392387,299.7491925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726024582,5.231610339,-4.128994863,4.128994863,1,0.763746603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073052203,85.81068531,-0.073052203,94.18931469,0,0,0,0,0,8,20,0% -2018-08-04 05:00:00,108.583259,310.6520953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895135382,5.421901892,-1.457745431,1.457745431,1,0.77944284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.140575357,98.08114105,0.140575357,81.91885895,0,0.694318884,0,0,0,8,21,0% -2018-08-04 06:00:00,116.6694664,323.5072827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036266325,5.646267237,-0.565209509,0.565209509,1,0.626810208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335007137,109.5729719,0.335007137,70.42702807,0,0.900749448,0,0,0,8,22,0% -2018-08-04 07:00:00,122.4266903,338.6331259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136748837,5.910263002,-0.037549517,0.037549517,1,0.536575035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496995518,119.8014233,0.496995518,60.19857666,0,0.949395471,0,0,0,8,23,0% -2018-08-05 08:00:00,125.0899597,355.6105878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183231658,6.206575612,0.3830301,-0.3830301,1,0.464651685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615502671,127.9884544,0.615502671,52.01154565,0,0.968765584,0,0,0,8,0,0% -2018-08-05 09:00:00,124.2037057,13.03797847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167763607,0.227555652,0.80211823,-0.80211823,1,0.392983394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682452829,133.0356144,0.682452829,46.96438563,0,0.976734863,0,0,0,8,1,0% -2018-08-05 10:00:00,119.9281711,29.22204383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093141452,0.510020879,1.315394785,-1.315394785,1,0.305207933,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693282859,133.8905407,0.693282859,46.10945927,0,0.977879365,0,0,0,8,2,0% -2018-08-05 11:00:00,112.9236059,43.22722457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970888725,0.754457395,2.111126606,-2.111126606,1,0.169129777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647253629,130.3348559,0.647253629,49.66514413,0,0.97275053,0,0,0,8,3,0% -2018-08-05 12:00:00,103.9670751,55.06285571,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814567775,0.961028128,3.884762124,-3.884762124,1,0,#DIV/0!,0,0,0.118305549,1,0.251946175,0,0.931612502,0.970374466,0.724496596,1,0,0,0.019163739,0.312029739,0.947092392,0.671588988,0.961238037,0.922476074,0,0,0,0,0,0,-0.547500957,123.1957366,0.547500957,56.80426344,0,0.958675959,0,0,0,8,4,0% -2018-08-05 13:00:00,93.70365011,65.22717008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635437216,1.13842888,15.39496247,-15.39496247,1,0,#DIV/0!,0,0,0.677683441,1,0.064865186,0,0.955013899,0.993775862,0.724496596,1,0,0,0.087676702,0.312029739,0.781624552,0.506121148,0.961238037,0.922476074,0,0,0,0,0,0,-0.400822607,113.6296137,0.400822607,66.37038632,0,0.925256537,0,0,0,8,5,0% -2018-08-05 14:00:00,82.48545228,74.34097782,58.77841448,227.8323489,28.98297346,28.55212639,0,28.55212639,28.10902988,0.443096516,64.15929589,49.0338452,15.12545069,0.873943586,14.2515071,1.439642727,1.297494832,-7.55913207,7.55913207,0.177158593,0.177158593,0.493088725,0.258277598,8.307095373,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.0194687,0.633169153,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.18712124,7.985096048,27.20658994,8.618265201,0,49.0338452,-0.215218978,102.4283746,0.215218978,77.57162545,0,0.81767848,27.20658994,48.71218521,59.08774091,8,6,117% -2018-08-05 15:00:00,70.95687668,83.04182559,257.3991731,576.942295,69.15461356,69.0097305,0,69.0097305,67.06934681,1.940383692,69.31818838,4.823512056,64.49467633,2.085266752,62.40940957,1.238431125,1.449353273,-2.82239595,2.82239595,0.987188177,0.987188177,0.268666805,1.922202857,61.8246514,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.46960726,1.510768663,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.392629426,59.42820654,65.86223668,60.93897521,0,4.823512056,-0.008360476,90.47902555,0.008360476,89.52097445,0,0,65.86223668,60.93897521,105.7455772,8,7,61% -2018-08-05 16:00:00,59.16145348,92.05376403,468.0787631,734.5344089,91.54127462,246.2157481,153.9062052,92.30954287,88.78096744,3.528575434,116.2514225,0,116.2514225,2.760307181,113.4911153,1.032562154,1.606641271,-1.552399495,1.552399495,0.795629639,0.795629639,0.195568101,2.948470441,94.83294468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.33964285,1.999833156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136156797,91.15703357,87.47579965,93.15686673,153.9062052,0,0.209528925,77.9052525,-0.209528925,102.0947475,0.811369463,0,212.3505947,93.15686673,273.3199008,8,8,29% -2018-08-05 17:00:00,47.43812061,102.4167624,657.5252314,814.5627144,106.5663563,452.8179718,344.5082814,108.3096904,103.3529875,4.956702934,162.6379737,0,162.6379737,3.213368832,159.4246049,0.827951396,1.787509714,-0.919255977,0.919255977,0.68735572,0.68735572,0.162071889,3.658178461,117.6595942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.34682282,2.32807478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.650337842,113.0988774,101.9971607,115.4269521,344.5082814,0,0.422936473,64.9798814,-0.422936473,115.0201186,0.931778936,0,423.0027204,115.4269521,498.547352,8,9,18% -2018-08-05 18:00:00,36.265948,116.0314558,809.0199796,858.3055104,116.9854257,649.2979463,529.7413285,119.5566178,113.4578835,6.098734338,199.6838028,0,199.6838028,3.527542215,196.1562606,0.632960199,2.02513094,-0.509352143,0.509352143,0.617258036,0.617258036,0.144601405,4.102027389,131.9353014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0600332,2.555692327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971904879,126.8212302,112.0319381,129.3769225,529.7413285,0,0.61719437,51.88845929,-0.61719437,128.1115407,0.968988243,0,625.3450575,129.3769225,710.0196657,8,10,14% -2018-08-05 19:00:00,26.69670486,136.8121127,910.9836513,881.4348192,123.5122274,813.3071627,686.6519051,126.6552576,119.787878,6.867379564,224.6028826,0,224.6028826,3.724349368,220.8785333,0.465945399,2.387821823,-0.198006035,0.198006035,0.564014716,0.564014716,0.135581168,4.279243513,137.6351812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1446647,2.698278439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.100297358,132.3001713,118.2449621,134.9984498,686.6519051,0,0.779016088,38.82942254,-0.779016088,141.1705775,0.985816473,0,795.1577215,134.9984498,883.5115069,8,11,11% -2018-08-05 20:00:00,21.28742398,170.0966463,955.9638177,890.4173568,126.2988035,928.7095903,799.0127027,129.6968877,122.4904286,7.206459059,235.5928703,0,235.5928703,3.808374919,231.7844954,0.371535638,2.968746525,0.068305837,-0.068305837,0.518472703,0.518472703,0.132116719,4.19481143,134.9195552,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7424591,2.759154665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.039126602,129.6898083,120.7815857,132.448963,799.0127027,0,0.89734628,26.18858927,-0.89734628,153.8114107,0.99428015,0,915.2240557,132.448963,1001.909253,8,12,9% -2018-08-05 21:00:00,23.25361841,208.2525667,940.716261,887.447068,125.3598205,984.260941,855.5896651,128.6712759,121.5797594,7.091516536,231.8676098,0,231.8676098,3.780061116,228.0875487,0.405852204,3.634692965,0.320600176,-0.320600176,0.475327831,0.475327831,0.13325997,3.866618387,124.3637387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8670892,2.738641411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801351859,119.5431561,119.6684411,122.2817975,855.5896651,0,0.964102194,15.39853505,-0.964102194,164.601465,0.998138278,0,973.6652361,122.2817975,1053.696227,8,13,8% -2018-08-05 22:00:00,31.21183304,234.809255,866.3156418,871.8123011,120.6918453,973.3579846,849.7747905,123.5831941,117.0525409,6.530653241,213.6875617,0,213.6875617,3.639304442,210.0482572,0.544749252,4.098194613,0.58473285,-0.58473285,0.430158483,0.430158483,0.139316249,3.327672583,107.0293891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5153546,2.636663679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410887458,102.8807198,114.9262421,105.5173835,849.7747905,0,0.974722184,12.91000782,-0.974722184,167.0899922,0.998703332,0,963.599157,105.5173835,1032.658174,8,14,7% -2018-08-05 23:00:00,41.79204645,251.3052563,738.1173826,839.4688385,112.235845,893.8442994,779.4285385,114.4157608,108.8515202,5.564240612,182.3494299,0,182.3494299,3.384324834,178.965105,0.729408812,4.386104149,0.893621501,-0.893621501,0.377335413,0.377335413,0.152056905,2.626409835,84.4743685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6322216,2.451931822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.902824984,81.19997614,106.5350466,83.65190797,779.4285385,0,0.928478227,21.80117256,-0.928478227,158.1988274,0.996148441,0,882.9615701,83.65190797,937.7100708,8,15,6% -2018-08-05 00:00:00,53.33124387,262.948105,565.619708,780.2893091,99.64041849,747.3947865,646.495014,100.8997725,96.63589224,4.263880278,140.145573,0,140.145573,3.004526251,137.1410467,0.9308058,4.589310194,1.308979615,-1.308979615,0.306304992,0.306304992,0.176161504,1.82710403,58.76594622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.89009535,2.176769041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32373065,56.48806278,94.21382599,58.66483182,646.495014,0,0.828532451,34.05172091,-0.828532451,145.9482791,0.989652334,0,734.0191253,58.66483182,772.4140844,8,16,5% -2018-08-05 01:00:00,65.14751024,272.4576347,362.6704154,669.0563325,81.47705238,537.88198,456.1277986,81.75418142,79.02021864,2.733962784,90.39047481,0,90.39047481,2.456833748,87.93364106,1.137038553,4.755282797,1.995267752,-1.995267752,0.188942808,0.188942808,0.224658668,1.014720776,32.63690824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95723983,1.779967687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.735161748,31.37183761,76.69240158,33.1518053,456.1277986,0,0.681747973,47.01961271,-0.681747973,132.9803873,0.976659115,0,522.1737735,33.1518053,543.870967,8,17,4% -2018-08-05 02:00:00,76.86961476,281.2006798,150.9597774,434.6016069,52.23228777,268.3872931,216.5920029,51.79529015,50.65729158,1.137998567,38.17694196,0,38.17694196,1.574996193,36.60194577,1.341627872,4.907877722,3.666872363,-3.666872363,0,0,0.346001357,0.393749048,12.6643229,0.088355173,1,0.266237809,0,0.929507646,0.968269609,0.724496596,1,48.87642381,1.14107938,0.014506357,0.312029739,0.959686341,0.684182937,0.961238037,0.922476074,0.278981079,12.17342888,49.15540489,13.31450826,197.4549792,0,0.49836908,60.10784227,-0.49836908,119.8921577,0.949672749,0,236.6730177,13.31450826,245.387097,8,18,4% -2018-08-05 03:00:00,88.04047834,290.0163366,2.936533967,14.80920946,2.430156179,6.731709296,4.352694459,2.379014837,2.356878004,0.022136833,0.785274834,0,0.785274834,0.073278175,0.711996658,1.536596222,5.061739958,22.38480032,-22.38480032,0,0,0.827559363,0.018319544,0.589219501,0.767326748,1,0.044643488,0,0.957062074,0.995824037,0.724496596,1,2.276934932,0.053089788,0.096151053,0.312029739,0.763755663,0.488252259,0.961238037,0.922476074,0.012817331,0.566380196,2.289752263,0.619469985,1.012755576,0,0.293918083,72.90732775,-0.293918083,107.0926722,0.879884574,0,3.180860272,0.619469985,3.586290987,8,19,13% -2018-08-05 04:00:00,99.10172856,299.56912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729651458,5.228467481,-4.048127561,4.048127561,1,0.777575726,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.070369638,85.96478171,-0.070369638,94.03521829,0,0,0,0,0,8,20,0% -2018-08-05 05:00:00,108.8113974,310.4924208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899117149,5.419115045,-1.445880042,1.445880042,1,0.777413739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14354766,98.25318642,0.14354766,81.74681358,0,0.701683628,0,0,0,8,21,0% -2018-08-05 06:00:00,116.9194082,323.3817325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040628633,5.644075973,-0.563251805,0.563251805,1,0.626475421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338216621,109.7682582,0.338216621,70.23174181,0,0.902165752,0,0,0,8,22,0% -2018-08-05 07:00:00,122.6945902,338.5642695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141424574,5.909061233,-0.039036218,0.039036218,1,0.536829276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500373397,120.0247068,0.500373397,59.97529319,0,0.950074624,0,0,0,8,23,0% -2018-08-06 08:00:00,125.3641501,355.6205311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188017184,6.206749156,0.379395091,-0.379395091,1,0.465273308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618968642,128.2408583,0.618968642,51.75914168,0,0.969220464,0,0,0,8,0,0% -2018-08-06 09:00:00,124.4674601,13.13011505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172366991,0.229163739,0.796192152,-0.796192152,1,0.393996813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685920587,133.3080491,0.685920587,46.69195087,0,0.977105264,0,0,0,8,1,0% -2018-08-06 10:00:00,120.1680847,29.37662932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097328733,0.512718905,1.305775034,-1.305775034,1,0.306853007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696666021,134.1601267,0.696666021,45.8398733,0,0.978229599,0,0,0,8,2,0% -2018-08-06 11:00:00,113.1347387,43.4185259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974573688,0.757796233,2.093137059,-2.093137059,1,0.172206171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650471676,130.5771737,0.650471676,49.42282635,0,0.973132702,0,0,0,8,3,0% -2018-08-06 12:00:00,104.1512194,55.2735511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817781699,0.964705456,3.835871294,-3.835871294,1,0,#DIV/0!,0,0,0.1117577,1,0.25502078,0,0.931163329,0.969925293,0.724496596,1,0,0,0.018156228,0.312029739,0.949802374,0.67429897,0.961238037,0.922476074,0,0,0,0,0,0,-0.55048477,123.4002766,0.55048477,56.59972339,0,0.959170966,0,0,0,8,4,0% -2018-08-06 13:00:00,93.86572306,65.45019601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638265922,1.142321416,14.75235908,-14.75235908,1,0,#DIV/0!,0,0,0.665847804,1,0.067682231,0,0.954720894,0.993482857,0.724496596,1,0,0,0.086516185,0.312029739,0.784116405,0.508613001,0.961238037,0.922476074,0,0,0,0,0,0,-0.40351923,113.7983677,0.40351923,66.20163232,0,0.926090168,0,0,0,8,5,0% -2018-08-06 14:00:00,82.62939103,74.57657168,56.69134964,221.5535421,28.26893656,27.84388717,0,27.84388717,27.41652383,0.42736334,62.79959357,48.20170676,14.59788681,0.852412739,13.74547407,1.442154932,1.301606721,-7.705971336,7.705971336,0.1520476,0.1520476,0.498646385,0.245680927,7.901943137,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.35380554,0.617570127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177994995,7.595648308,26.53180053,8.213218436,0,48.20170676,-0.217562339,102.5658976,0.217562339,77.43410236,0,0.820180812,26.53180053,47.74733343,57.78147532,8,6,118% -2018-08-06 15:00:00,71.09277903,83.29519812,254.9252924,574.3192668,68.82480092,68.67121377,0,68.67121377,66.74947924,1.921734535,69.85740596,5.97249571,63.88491025,2.075321684,61.80958857,1.240803068,1.453775458,-2.841310644,2.841310644,0.983953574,0.983953574,0.269980276,1.899222937,61.0855382,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.16213838,1.503563496,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.375980553,58.71774282,65.53811893,60.22130632,0,5.97249571,-0.010399261,90.59584448,0.010399261,89.40415552,0,0,65.53811893,60.22130632,104.9517595,8,7,60% -2018-08-06 16:00:00,59.29540532,92.33430781,465.7715727,733.3042181,91.33773482,244.4798123,152.3850644,92.09474797,88.58356511,3.511182858,115.68588,0,115.68588,2.754169705,112.9317103,1.034900054,1.611537684,-1.55756327,1.55756327,0.796512696,0.796512696,0.196099848,2.936811366,94.45794876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14989223,1.995386576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.127709838,90.79657323,87.27760206,92.79195981,152.3850644,0,0.207806065,78.00618702,-0.207806065,101.993813,0.809391046,0,210.6167087,92.79195981,271.3471906,8,8,29% -2018-08-06 17:00:00,47.58007813,102.7377403,655.4004457,813.8473528,106.4123002,451.1793633,343.0351012,108.1442621,103.2035767,4.940685402,162.1181495,0,162.1181495,3.208723471,158.909426,0.830429022,1.793111834,-0.920538994,0.920538994,0.687575129,0.687575129,0.162362264,3.647713656,117.3230101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.20320349,2.324709232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642756127,112.7753399,101.8459596,115.1000492,343.0351012,0,0.421498086,65.07079592,-0.421498086,114.9292041,0.931375499,0,421.3404482,115.1000492,496.6711284,8,9,18% -2018-08-06 18:00:00,36.43148966,116.4044829,807.0181383,857.8076628,116.8539426,647.8126749,528.3986663,119.4140087,113.330365,6.083643612,199.1944685,0,199.1944685,3.523577513,195.670891,0.635849446,2.03164149,-0.508974821,0.508974821,0.61719351,0.61719351,0.14479717,4.091997441,131.6127038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9374576,2.552819914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.964638216,126.5111371,111.9020958,129.063957,528.3986663,0,0.615987347,51.97630225,-0.615987347,128.0236977,0.968829502,0,623.8303123,129.063957,708.3000908,8,10,14% -2018-08-06 19:00:00,26.90937458,137.2036328,909.0226029,881.0276357,123.3895635,811.9353198,685.4138106,126.5215092,119.6689129,6.852596353,224.123705,0,224.123705,3.720650597,220.4030544,0.469657186,2.394655138,-0.196647942,0.196647942,0.563782468,0.563782468,0.135738719,4.269126941,137.3097975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0303109,2.695598692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092967936,131.9874001,118.1232788,134.6829988,685.4138106,0,0.777970841,38.92483887,-0.777970841,141.0751611,0.985730239,0,793.7563981,134.6829988,881.9037272,8,11,11% -2018-08-06 20:00:00,21.55627868,170.2745635,953.9542015,890.0301031,126.1753635,927.3688098,797.8067893,129.5620205,122.3707108,7.191309723,235.1018934,0,235.1018934,3.804652748,231.2972407,0.376228037,2.971851766,0.070462463,-0.070462463,0.518103899,0.518103899,0.132265641,4.184207436,134.5784943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6273818,2.756457964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031444044,129.3619676,120.6588258,132.1184256,797.8067893,0,0.896381804,26.31352656,-0.896381804,153.6864734,0.994220197,0,913.8544494,132.1184256,1000.323317,8,12,9% -2018-08-06 21:00:00,23.51780437,208.0445299,938.5707777,887.0231134,125.227245,982.8466274,854.320103,128.5265245,121.4511815,7.075342976,231.3434149,0,231.3434149,3.776063475,227.5673514,0.410463119,3.631062037,0.323629408,-0.323629408,0.474809801,0.474809801,0.133423337,3.855230075,123.9974515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7434953,2.735745133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793101065,119.1910668,119.5365963,121.926812,854.320103,0,0.963131727,15.60656938,-0.963131727,164.3934306,0.998086021,0,972.2215488,121.926812,1052.020209,8,13,8% -2018-08-06 22:00:00,31.43390841,234.4908413,863.9569721,871.2831605,120.5413178,971.7523096,848.3328847,123.4194249,116.9065523,6.512872592,213.1111359,0,213.1111359,3.634765483,209.4763704,0.548625199,4.092637247,0.588959481,-0.588959481,0.429435687,0.429435687,0.139522362,3.315326781,106.6323056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3750249,2.633375219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401942967,102.4990281,114.7769678,105.1324034,848.3328847,0,0.973659223,13.17983177,-0.973659223,166.8201682,0.998647331,0,961.9623387,105.1324034,1030.769394,8,14,7% -2018-08-06 23:00:00,41.9856018,251.0081401,735.4861302,838.718721,112.0556419,891.9168387,777.6956827,114.221156,108.6767509,5.54440512,181.7060185,0,181.7060185,3.378891045,178.3271274,0.73278699,4.380918494,0.899809812,-0.899809812,0.376277149,0.376277149,0.152355887,2.613105841,84.04646635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4642267,2.44799506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893186287,80.78866032,106.357413,83.23665538,777.6956827,0,0.927242547,21.99102135,-0.927242547,158.0089786,0.996076676,0,881.0019438,83.23665538,935.47867,8,15,6% -2018-08-06 00:00:00,53.51213522,262.6863403,562.6853355,779.0700244,99.40938472,744.9879966,644.3344119,100.6535847,96.41182499,4.241759739,139.4271339,0,139.4271339,2.997559731,136.4295741,0.933962949,4.584741539,1.319014237,-1.319014237,0.30458897,0.30458897,0.176669585,1.813127256,58.31640514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.67471338,2.171721821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.313604525,56.05594679,93.9883179,58.22766862,644.3344119,0,0.827055838,34.2025214,-0.827055838,145.7974786,0.98954459,0,731.5859492,58.22766862,769.6947937,8,16,5% -2018-08-06 01:00:00,65.32632651,272.2240465,359.4604666,666.7130119,81.14139681,534.7558029,453.3513538,81.40444915,78.69468432,2.709764834,89.60206431,0,89.60206431,2.446712494,87.15535182,1.140159486,4.751205915,2.015080474,-2.015080474,0.185554633,0.185554633,0.225731073,1.000987834,32.1952096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64432386,1.772634873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725212278,30.94726007,76.36953614,32.71989495,453.3513538,0,0.67997976,47.15793857,-0.67997976,132.8420614,0.9764684,0,519.052807,32.71989495,540.4673238,8,17,4% -2018-08-06 02:00:00,77.05330408,280.9876255,147.7353902,429.0771722,51.60302272,264.1056136,212.9449206,51.16069296,50.04700119,1.113691775,37.37617732,0,37.37617732,1.55602153,35.82015579,1.344833856,4.904159222,3.729105983,-3.729105983,0,0,0.349293576,0.389005382,12.5117503,0.097115186,1,0.261996799,0,0.930136763,0.968898726,0.724496596,1,48.30208001,1.127332301,0.015881613,0.312029739,0.955949848,0.680446444,0.961238037,0.922476074,0.275105388,12.02677029,48.57718539,13.15410259,192.264735,0,0.49628583,60.24542477,-0.49628583,119.7545752,0.949251607,0,231.0847941,13.15410259,239.6938911,8,18,4% -2018-08-06 03:00:00,88.22135758,289.8191414,2.324761031,11.81451628,1.95805994,5.363250954,3.446708715,1.916542239,1.899017208,0.017525031,0.622707959,0,0.622707959,0.059042732,0.563665227,1.53975316,5.058298254,24.73403913,-24.73403913,0,0,0.842262888,0.014760683,0.474754302,0.787216663,1,0.040408106,0,0.957478757,0.996240721,0.724496596,1,1.833931541,0.042776258,0.097958938,0.312029739,0.760018149,0.484514745,0.961238037,0.922476074,0.010353078,0.456351893,1.844284619,0.499128151,0.733402183,0,0.291735068,73.03813938,-0.291735068,106.9618606,0.878611623,0,2.488660301,0.499128151,2.815329693,8,19,13% -2018-08-06 04:00:00,99.31429045,299.3872344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733361363,5.225292979,-3.968866931,3.968866931,1,0.791130092,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.06761117,86.12320785,-0.06761117,93.87679215,0,0,0,0,0,8,20,0% -2018-08-06 05:00:00,109.0443987,310.3312747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903183788,5.416302515,-1.433928643,1.433928643,1,0.77536993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146593917,98.42959032,0.146593917,81.57040968,0,0.708921728,0,0,0,8,21,0% -2018-08-06 06:00:00,117.1743273,323.2554535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045077811,5.641871989,-0.561210327,0.561210327,1,0.626126308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34149575,109.9680295,0.34149575,70.03197051,0,0.903585294,0,0,0,8,22,0% -2018-08-06 07:00:00,122.9674592,338.4960769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146187037,5.907871047,-0.040464661,0.040464661,1,0.537073554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503814544,120.2526908,0.503814544,59.74730925,0,0.950757133,0,0,0,8,23,0% -2018-08-07 08:00:00,125.6429767,355.6331098,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192883625,6.206968694,0.375804737,-0.375804737,1,0.465887295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622489879,128.4981875,0.622489879,51.50181253,0,0.969677409,0,0,0,8,0,0% -2018-08-07 09:00:00,124.7351112,13.2267013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177038383,0.230849487,0.790309583,-0.790309583,1,0.395002791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689434529,133.5853636,0.689434529,46.41463639,0,0.977476797,0,0,0,8,1,0% -2018-08-07 10:00:00,120.4109571,29.536596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101567656,0.51551085,1.296219356,-1.296219356,1,0.308487125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700085836,134.433891,0.700085836,45.56610897,0,0.978580186,0,0,0,8,2,0% -2018-08-07 11:00:00,113.3479862,43.61533195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97829556,0.761231147,2.075309518,-2.075309518,1,0.17525486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653717045,130.822441,0.653717045,49.17755902,0,0.973514309,0,0,0,8,3,0% -2018-08-07 12:00:00,104.3368654,55.48952566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821021832,0.968474923,3.787830564,-3.787830564,1,0,#DIV/0!,0,0,0.105228275,1,0.258114258,0,0.930709375,0.969471338,0.724496596,1,0,0,0.017145632,0.312029739,0.952528648,0.677025244,0.961238037,0.922476074,0,0,0,0,0,0,-0.553487421,123.6065952,0.553487421,56.39340482,0,0.95966371,0,0,0,8,4,0% -2018-08-07 13:00:00,94.02892182,65.67824809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641114278,1.146301676,14.15730296,-14.15730296,1,0,#DIV/0!,0,0,0.654085491,1,0.0705178,0,0.954424073,0.993186037,0.724496596,1,0,0,0.085352843,0.312029739,0.78662515,0.511121746,0.961238037,0.922476074,0,0,0,0,0,0,-0.406227634,113.9680799,0.406227634,66.03192011,0,0.9269163,0,0,0,8,5,0% -2018-08-07 14:00:00,82.77420852,74.81704785,54.61312797,215.202481,27.54499917,27.12611264,0,27.12611264,26.71441581,0.411696827,61.39757555,47.32540703,14.07216852,0.830583355,13.24158516,1.444682474,1.305803822,-7.859402013,7.859402013,0.125809409,0.125809409,0.504365895,0.233317373,7.50428874,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67891261,0.601754813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.169037643,7.213407777,25.84795025,7.81516259,0,47.32540703,-0.219911066,102.7038095,0.219911066,77.29619047,0,0.822635362,25.84795025,46.74671592,56.44274089,8,6,118% -2018-08-07 15:00:00,71.2296512,83.55346211,252.4339988,571.6517347,68.49033277,68.32805065,0,68.32805065,66.42509654,1.902954111,70.38309398,7.11231216,63.27078182,2.065236235,61.20554559,1.243191939,1.458283015,-2.860528388,2.860528388,0.980667146,0.980667146,0.271319763,1.876146305,60.34331437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.85032939,1.496256622,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.359261611,58.00428904,65.209591,59.50054567,0,7.11231216,-0.012441687,90.71287457,0.012441687,89.28712543,0,0,65.209591,59.50054567,104.1515081,8,7,60% -2018-08-07 16:00:00,59.43055104,92.61990566,463.4411037,732.0536891,91.13149488,242.7387069,150.861548,91.87715886,88.38354407,3.493614798,115.1146119,0,115.1146119,2.74795081,112.3666611,1.037258792,1.616522307,-1.562738569,1.562738569,0.797397724,0.797397724,0.196640941,2.924985761,94.07759666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.95762439,1.990881007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119142227,90.43096432,87.07676661,92.42184533,150.861548,0,0.206079896,78.10727757,-0.206079896,101.8927224,0.807375654,0,208.8787076,92.42184533,269.3669569,8,8,29% -2018-08-07 17:00:00,47.72369425,103.0640159,653.2461356,813.1186858,106.2558397,449.5302761,341.5539967,107.9762794,103.0518341,4.924445303,161.5910942,0,161.5910942,3.20400561,158.3870886,0.832935596,1.798806417,-0.921783096,0.921783096,0.687787883,0.687787883,0.162658199,3.637056153,116.9802282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05734273,2.321291158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.635034802,112.4458449,101.6923775,114.767136,341.5539967,0,0.420054295,65.16198457,-0.420054295,114.8380154,0.930967769,0,419.6681397,114.767136,494.7809349,8,9,18% -2018-08-07 18:00:00,36.59946649,116.7827854,804.9789314,857.2986191,116.7198591,646.3104922,527.0418963,119.2685959,113.2003247,6.06827121,198.6959961,0,198.6959961,3.519534403,195.1764617,0.638781195,2.038244115,-0.50854229,0.50854229,0.617119543,0.617119543,0.144997409,4.081738991,131.2827568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8124579,2.549890694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957206004,126.1939795,111.7696639,128.7438701,527.0418963,0,0.614770495,52.06475407,-0.614770495,127.9352459,0.968668836,0,622.298724,128.7438701,706.5590122,8,10,14% -2018-08-07 19:00:00,27.12549945,137.5992054,907.0150235,880.609388,123.2638828,810.5381105,684.1536262,126.3844843,119.5470219,6.837462372,223.6331544,0,223.6331544,3.716860861,219.9162935,0.473429277,2.401559183,-0.195224187,0.195224187,0.563538992,0.563538992,0.135900597,4.258742861,136.9758097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9131447,2.692853041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085444706,131.6663585,117.9985894,134.3592115,684.1536262,0,0.776909303,39.02154127,-0.776909303,140.9784587,0.985642423,0,792.3294275,134.3592115,880.2648443,8,11,11% -2018-08-07 20:00:00,21.82940458,170.4562575,951.8881413,889.6306464,126.0483571,925.992312,796.5690431,129.4232689,122.247534,7.175734889,234.5971235,0,234.5971235,3.800823035,230.7963004,0.380994984,2.975022924,0.072696805,-0.072696805,0.517721804,0.517721804,0.132419296,4.173297929,134.227607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5089796,2.75368335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.023540143,129.0246815,120.5325198,131.7783648,796.5690431,0,0.895392988,26.44104739,-0.895392988,153.5589526,0.994158598,0,912.4484827,131.7783648,998.6947869,8,12,9% -2018-08-07 21:00:00,23.78727933,207.8420517,936.3588824,886.5844596,125.090447,981.3847676,853.0075903,128.3771773,121.3185085,7.058668775,230.8029903,0,230.8029903,3.771938512,227.0310518,0.415166344,3.627528126,0.326754533,-0.326754533,0.474275374,0.474275374,0.133592418,3.843503012,123.6202688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6159649,2.732756612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784604848,118.8285045,119.4005698,121.5612611,853.0075903,0,0.962127839,15.81896006,-0.962127839,164.1810399,0.998031854,0,970.7293166,121.5612611,1050.288731,8,13,8% -2018-08-07 22:00:00,31.661655,234.1741685,861.5226119,870.734731,120.385784,970.0862147,846.835985,123.2502298,116.7557084,6.494521357,212.5162072,0,212.5162072,3.630075563,208.8861316,0.552600126,4.087110263,0.593312953,-0.593312953,0.428691199,0.428691199,0.13973607,3.302617677,106.2235372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2300279,2.629977388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392735264,102.1061043,114.6227632,104.7360817,846.835985,0,0.972553356,13.45490441,-0.972553356,166.5450956,0.998588939,0,960.2638109,104.7360817,1028.811482,8,14,7% -2018-08-07 23:00:00,42.18455749,250.7103438,732.7713898,837.9406791,111.8694017,889.9152079,775.8951411,114.0200668,108.4961265,5.52394026,181.0421824,0,181.0421824,3.373275217,177.6689072,0.736259422,4.375720968,0.906183982,-0.906183982,0.375187102,0.375187102,0.15266617,2.599427604,83.60652721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2906037,2.443926411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88327645,80.36577408,106.1738801,82.80970049,775.8951411,0,0.925954737,22.18723569,-0.925954737,157.8127643,0.99600168,0,878.9667443,82.80970049,933.1640371,8,15,6% -2018-08-07 00:00:00,53.69809621,262.4230136,559.662144,777.8047782,99.17063627,742.4916963,642.092451,100.3992453,96.18027569,4.218969644,138.6869269,0,138.6869269,2.990360584,135.6965664,0.937208581,4.580145621,1.329368086,-1.329368086,0.302818358,0.302818358,0.177197328,1.798787586,57.85519205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45213939,2.166506064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303215483,55.61261122,93.75535487,57.77911729,642.092451,0,0.825518779,34.35887713,-0.825518779,145.6411229,0.989432026,0,729.0621895,57.77911729,766.8774662,8,16,5% -2018-08-07 01:00:00,65.50996857,271.9886091,356.1609974,664.2788416,80.79422272,531.5197985,450.4769276,81.04287084,78.3579788,2.684892042,88.79160123,0,88.79160123,2.436243914,86.35535731,1.143364644,4.747096756,2.035621139,-2.035621139,0.182041973,0.182041973,0.226847474,0.98694936,31.74368404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32066972,1.765050422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.715041452,30.51323653,76.03571117,32.27828696,450.4769276,0,0.678144326,47.3011962,-0.678144326,132.6988038,0.976269382,0,515.8225431,32.27828696,536.9480363,8,17,4% -2018-08-07 02:00:00,77.24164481,280.7726498,144.4382578,423.3315114,50.94986969,259.683628,209.1812483,50.50237974,49.41354314,1.088836598,36.55705442,0,36.55705442,1.536326556,35.02072786,1.348121022,4.900407188,3.794565569,-3.794565569,0,0,0.352744975,0.384081639,12.35338578,0.106149438,1,0.257676157,0,0.930773788,0.969535751,0.724496596,1,47.70488163,1.11306336,0.017288566,0.312029739,0.952142571,0.676639167,0.961238037,0.922476074,0.271116968,11.8745443,47.9759986,12.98760766,186.9767763,0,0.49413106,60.38753226,-0.49413106,119.6124677,0.94881227,0,225.3818582,12.98760766,233.8819877,8,18,4% -2018-08-07 03:00:00,88.40522172,289.6200523,1.790695629,9.192780054,1.534855615,4.163427369,2.661354294,1.502073075,1.488574055,0.01349902,0.480456447,0,0.480456447,0.04628156,0.434174887,1.542962195,5.054823493,27.6671527,-27.6671527,0,0,0.857128141,0.01157039,0.372143514,0.807736975,1,0.036128216,0,0.957895474,0.996657437,0.724496596,1,1.436991937,0.033530833,0.099797793,0.312029739,0.756243538,0.480740134,0.961238037,0.922476074,0.008137159,0.357718501,1.445129096,0.391249333,0.511680028,0,0.289504837,73.17168632,-0.289504837,106.8283137,0.877291314,0,1.89402154,0.391249333,2.150086404,8,19,14% -2018-08-07 04:00:00,99.53154462,299.2035838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737153163,5.222087671,-3.891242687,3.891242687,1,0.80440462,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064777508,86.28592163,-0.064777508,93.71407837,0,0,0,0,0,8,20,0% -2018-08-07 05:00:00,109.2821904,310.1686899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907334037,5.413464876,-1.42190548,1.42190548,1,0.773313848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14971306,98.61029835,0.14971306,81.38970165,0,0.716027801,0,0,0,8,21,0% -2018-08-07 06:00:00,117.434146,323.1284679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049612502,5.639655673,-0.559088411,0.559088411,1,0.625763439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344843128,110.17222,0.344843128,69.82778001,0,0.905006535,0,0,0,8,22,0% -2018-08-07 07:00:00,123.2452154,338.428572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151034795,5.906692865,-0.041834879,0.041834879,1,0.537307875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507317292,120.4853005,0.507317292,59.51469948,0,0.95144235,0,0,0,8,23,0% -2018-08-08 08:00:00,125.9263512,355.6483621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197829443,6.207234898,0.372260554,-0.372260554,1,0.466493386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626064511,128.7603625,0.626064511,51.23963753,0,0.970136026,0,0,0,8,0,0% -2018-08-08 09:00:00,125.0065622,13.3277794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181776097,0.232613632,0.784473243,-0.784473243,1,0.396000864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692992673,133.8674742,0.692992673,46.13252576,0,0.977849165,0,0,0,8,1,0% -2018-08-08 10:00:00,120.656688,29.70196424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10585647,0.51839707,1.286731945,-1.286731945,1,0.310109567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703540298,134.7117372,0.703540298,45.28826276,0,0.978930866,0,0,0,8,2,0% -2018-08-08 11:00:00,113.5632539,43.8176309,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98205269,0.76476193,2.057650238,-2.057650238,1,0.178274775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656987807,131.0705484,0.656987807,48.92945161,0,0.973895087,0,0,0,8,3,0% -2018-08-08 12:00:00,104.5239311,55.71074073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824286745,0.972335855,3.74063877,-3.74063877,1,0,#DIV/0!,0,0,0.098720086,1,0.261225336,0,0.930250795,0.969012758,0.724496596,1,0,0,0.016132391,0.312029739,0.955270095,0.67976669,0.961238037,0.922476074,0,0,0,0,0,0,-0.556507143,123.8145859,0.556507143,56.18541409,0,0.960153894,0,0,0,8,4,0% -2018-08-08 13:00:00,94.19318039,65.9112686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643981131,1.150368651,13.6049199,-13.6049199,1,0,#DIV/0!,0,0,0.642400519,1,0.073370879,0,0.95412351,0.992885473,0.724496596,1,0,0,0.084187137,0.312029739,0.789149856,0.513646452,0.961238037,0.922476074,0,0,0,0,0,0,-0.408946295,114.1386599,0.408946295,65.86134011,0,0.927734557,0,0,0,8,5,0% -2018-08-08 14:00:00,82.91985141,75.06233369,52.54570827,208.7838083,26.81150593,26.39915185,0,26.39915185,26.0030401,0.396111744,59.95388086,46.40509971,13.54878115,0.808465828,12.74031532,1.447224422,1.310084867,-8.019816268,8.019816268,0.098376956,0.098376956,0.510251109,0.221201123,7.11458848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.99511122,0.58573074,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.16025946,6.838813064,25.15537068,7.424543804,0,46.40509971,-0.222263882,102.8420366,0.222263882,77.15796344,0,0.825042173,25.15537068,45.71070809,55.07211491,8,6,119% -2018-08-08 15:00:00,71.36745933,83.81652944,249.9259762,568.9394882,68.15121208,67.98024916,0,67.98024916,66.09620159,1.884047578,70.89461682,8.24215985,62.65245697,2.055010495,60.59744647,1.245597144,1.462874406,-2.880050625,2.880050625,0.977328647,0.977328647,0.272685589,1.852981136,59.59824293,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.53418306,1.488848108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.342478526,57.28809803,64.87666158,58.77694614,0,8.24215985,-0.014486883,90.8300663,0.014486883,89.1699337,0,0,64.87666158,58.77694614,103.3449973,8,7,59% -2018-08-08 16:00:00,59.56687182,92.91044776,461.0876302,730.782653,90.92255283,240.9928853,149.3361096,91.65677571,88.18090239,3.475873321,114.5376847,0,114.5376847,2.741650436,111.7960342,1.039638038,1.621593223,-1.567923753,1.567923753,0.798284443,0.798284443,0.197191481,2.912993984,93.69189987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.7628375,1.986316408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.110454225,90.0602179,86.87329173,92.04653431,149.3361096,0,0.204350923,78.20849466,-0.204350923,101.7915053,0.805322857,0,207.1370742,92.04653431,267.37969,8,8,29% -2018-08-08 17:00:00,47.86896296,103.3954418,651.0622452,812.3765308,106.0969579,447.8708066,340.0650812,107.8057254,102.8977432,4.907982214,161.0567938,0,161.0567938,3.199214738,157.8575791,0.835471013,1.804590891,-0.922987302,0.922987302,0.687993814,0.687993814,0.162959776,3.626205101,116.631221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.90922467,2.317820187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.627173252,112.110366,101.5363979,114.4281861,340.0650812,0,0.41860525,65.2534376,-0.41860525,114.7465624,0.930555727,0,417.9859066,114.4281861,492.8768659,8,9,18% -2018-08-08 18:00:00,36.76987766,117.1661465,802.9020424,856.7781828,116.5831456,644.7911487,525.6708004,119.1203483,113.0677336,6.052614743,198.1883078,0,198.1883078,3.515411985,194.6728959,0.641755431,2.044935028,-0.508054017,0.508054017,0.617036043,0.617036043,0.145202203,4.071250474,130.9454101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6850063,2.546904017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949607109,125.8697089,111.6346134,128.4166129,525.6708004,0,0.613543635,52.15382576,-0.613543635,127.8461742,0.968506204,0,620.7500446,128.4166129,704.7961495,8,10,14% -2018-08-08 19:00:00,27.34505976,137.9985251,904.9604204,880.1798668,123.1351464,809.1149881,682.8708467,126.2441414,119.4221675,6.821973906,223.1311102,0,223.1311102,3.712978986,219.4181312,0.477261327,2.408528626,-0.193734463,0.193734463,0.563284234,0.563284234,0.136066886,4.248089462,136.6331598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7931298,2.690040636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.077726354,131.3369903,117.8708562,134.0270309,682.8708467,0,0.775831023,39.11956313,-0.775831023,140.8804369,0.985552977,0,790.8762518,134.0270309,878.5942631,8,11,11% -2018-08-08 20:00:00,22.10673209,170.6414778,949.765065,889.2187583,125.9177401,924.5793286,795.2987426,129.2805859,122.1208557,7.159730243,234.0784205,0,234.0784205,3.796884452,230.281536,0.385835262,2.978255629,0.075009093,-0.075009093,0.517326379,0.517326379,0.132577776,4.162081314,133.8668421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3872116,2.75082986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015413744,128.6779005,120.4026253,131.4287304,795.2987426,0,0.894379179,26.57120174,-0.894379179,153.4287983,0.9940953,0,911.0053672,131.4287304,997.0228426,8,12,9% -2018-08-08 21:00:00,24.06194827,207.6451587,934.0800266,886.1308438,124.9493811,979.8744654,851.6512794,128.223186,121.1816962,7.041489798,230.2462017,0,230.2462017,3.767684853,226.4785169,0.419960222,3.624091696,0.329975859,-0.329975859,0.473724494,0.473724494,0.133767319,3.831436256,123.2321605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4844558,2.72967485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.775862525,118.45544,119.2603183,121.1851149,851.6512794,0,0.961089759,16.03570108,-0.961089759,163.9642989,0.997975723,0,969.1876195,121.1851149,1048.500853,8,13,8% -2018-08-08 22:00:00,31.89500764,233.8594525,859.0121388,870.1666819,120.2251987,968.3587762,845.2832144,123.0755618,116.5999654,6.47559635,211.9026717,0,211.9026717,3.625233325,208.2774383,0.556672898,4.081617433,0.597793927,-0.597793927,0.427924907,0.427924907,0.139957509,3.289545391,105.8030875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0803218,2.626469203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383264437,101.7019521,114.4635863,104.3284213,845.2832144,0,0.971403792,13.73511356,-0.971403792,166.2648864,0.998528099,0,958.5026273,104.3284213,1026.783493,8,14,7% -2018-08-08 23:00:00,42.38887018,250.4120607,729.9729636,837.1342335,111.6770781,887.8385432,774.0260965,113.8124467,108.3096021,5.502844542,180.3578723,0,180.3578723,3.367475948,176.9903964,0.739825351,4.370514947,0.912745719,-0.912745719,0.374064979,0.374064979,0.152987965,2.585376709,83.15460213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1113093,2.439724861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.873096625,79.9313665,105.9844059,82.37109136,774.0260965,0,0.924614077,22.38976714,-0.924614077,157.6102329,0.995923384,0,876.8550956,82.37109136,930.7653275,8,15,6% -2018-08-08 00:00:00,53.8890885,262.1582714,556.5502581,776.4927065,98.92410951,739.9051223,639.7684288,100.1366936,95.94118262,4.195510933,137.9249805,0,137.9249805,2.982926893,134.9420536,0.940542025,4.575524997,1.340046322,-1.340046322,0.300992272,0.300992272,0.177745151,1.784088606,57.38242232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22231403,2.16112038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.292566122,55.15816698,93.51488016,57.31928736,639.7684288,0,0.823920719,34.52077918,-0.823920719,145.4792208,0.989314549,0,726.447095,57.31928736,763.9614222,8,16,5% -2018-08-08 01:00:00,65.69839468,271.7514341,352.7726105,661.7517256,80.43537528,528.17319,447.5038891,80.66930089,78.00995194,2.659348949,87.959227,0,87.959227,2.425423339,85.53380366,1.1466533,4.742957272,2.056910931,-2.056910931,0.178401204,0.178401204,0.228009128,0.972612278,31.28255419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98613305,1.757210953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704654285,30.06998098,75.69078734,31.82719193,447.5038891,0,0.676241363,47.44937646,-0.676241363,132.5506235,0.976061902,0,512.4822847,31.82719193,533.3125452,8,17,4% -2018-08-08 02:00:00,77.43458598,280.5558396,141.0704123,417.3589799,50.27225499,255.1206969,205.3008875,49.81980937,48.75636102,1.063448356,35.72004868,0,35.72004868,1.515893973,34.20415471,1.35148848,4.896623137,3.863445713,-3.863445713,0,0,0.356362856,0.378973493,12.18909025,0.115462594,1,0.253277737,0,0.931418219,0.970180182,0.724496596,1,47.08424337,1.098260023,0.018727023,0.312029739,0.948266083,0.672762679,0.961238037,0.922476074,0.267014497,11.71661719,47.35125786,12.81487721,181.5963146,0,0.491904805,60.53414407,-0.491904805,119.4658559,0.948354317,0,219.5689067,12.81487721,227.9559875,8,18,4% -2018-08-08 03:00:00,88.59179394,289.4191369,1.335319829,6.953484055,1.16443547,3.136648661,1.997259012,1.139389649,1.129323444,0.010066205,0.358875778,0,0.358875778,0.035112026,0.323763752,1.546218495,5.051316858,31.42530889,-31.42530889,0,0,0.872027393,0.008778006,0.282330861,0.828881124,1,0.031810751,0,0.958311416,0.997073379,0.724496596,1,1.089734242,0.025438543,0.101665161,0.312029739,0.752438199,0.476934794,0.961238037,0.922476074,0.006191078,0.271387163,1.095925321,0.296825706,0.341768718,0,0.287231407,73.30772319,-0.287231407,106.6922768,0.875924329,0,1.395288856,0.296825706,1.589555344,8,19,14% -2018-08-08 04:00:00,99.75342594,299.0182192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741025723,5.218852449,-3.815274963,3.815274963,1,0.817395866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061869361,86.45288133,-0.061869361,93.54711867,0,0,0,0,0,8,20,0% -2018-08-08 05:00:00,109.5246998,310.0047024,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911566623,5.410602754,-1.409823934,1.409823934,1,0.771247782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152904019,98.7952564,0.152904019,81.2047436,0,0.722997477,0,0,0,8,21,0% -2018-08-08 06:00:00,117.6987855,323.0008015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054231332,5.637427472,-0.556889238,0.556889238,1,0.625387358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.348257352,110.380764,0.348257352,69.61923603,0,0.906428013,0,0,0,8,22,0% -2018-08-08 07:00:00,123.5277751,338.361783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155966393,5.905527175,-0.04314688,0.04314688,1,0.537532241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510879958,120.7224611,0.510879958,59.27753889,0,0.952129651,0,0,0,8,23,0% -2018-08-09 08:00:00,126.2141831,355.6663308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202853058,6.207548511,0.368764039,-0.368764039,1,0.467091325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629690652,129.0273031,0.629690652,50.97269689,0,0.970595931,0,0,0,8,0,0% -2018-08-09 09:00:00,125.2817134,13.43339552,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186578391,0.234456982,0.778685804,-0.778685804,1,0.396990574,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696593009,134.1542957,0.696593009,45.84570427,0,0.978222076,0,0,0,8,1,0% -2018-08-09 10:00:00,120.9051735,29.87275674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11019336,0.521377962,1.277316892,-1.277316892,1,0.311719636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70702737,134.9935658,0.70702737,45.0064342,0,0.97928138,0,0,0,8,2,0% -2018-08-09 11:00:00,113.7804437,44.02541183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985843366,0.768388391,2.040165213,-2.040165213,1,0.18126489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660281991,131.3213825,0.660281991,48.67861746,0,0.974274778,0,0,0,8,3,0% -2018-08-09 12:00:00,104.7123316,55.93715786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827574954,0.976287579,3.694294119,-3.694294119,1,0,#DIV/0!,0,0,0.092235922,1,0.264352702,0,0.929787753,0.968549716,0.724496596,1,0,0,0.015116951,0.312029739,0.958025563,0.682522158,0.961238037,0.922476074,0,0,0,0,0,0,-0.559542126,124.0241386,0.559542126,55.97586142,0,0.960641223,0,0,0,8,4,0% -2018-08-09 13:00:00,94.35842963,66.14919976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646865274,1.154521333,13.09098042,-13.09098042,1,0,#DIV/0!,0,0,0.630796833,1,0.07624041,0,0.953819282,0.992581245,0.724496596,1,0,0,0.08301954,0.312029739,0.791689559,0.516186154,0.961238037,0.922476074,0,0,0,0,0,0,-0.411673643,114.3100139,0.411673643,65.6899861,0,0.928544568,0,0,0,8,5,0% -2018-08-09 14:00:00,83.06626314,75.31235648,50.49112158,202.3027338,26.06885788,25.66340903,0,25.66340903,25.28278563,0.380623402,58.46935923,45.44112999,13.02822924,0.786072249,12.24215699,1.449779789,1.314448588,-8.187635525,8.187635525,0.069678172,0.069678172,0.516305779,0.209346186,6.73329296,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.30277523,0.569506668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151670599,6.472297306,24.45444583,7.041803975,0,45.44112999,-0.224619456,102.9805018,0.224619456,77.01949818,0,0.827401295,24.45444583,44.63985377,53.67033732,8,6,119% -2018-08-09 15:00:00,71.50616655,84.08431206,247.4019667,566.1823803,67.80744942,67.62782516,0,67.62782516,65.76280463,1.865020528,71.39133291,9.361216981,62.03011592,2.044644783,59.98547114,1.248018042,1.467548095,-2.899878327,2.899878327,0.97393791,0.97393791,0.274078053,1.829736124,58.85060342,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.21370922,1.481338185,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.325637593,56.5694385,64.53934682,58.05077669,0,9.361216981,-0.016533925,90.94736729,0.016533925,89.05263271,0,0,64.53934682,58.05077669,102.5324191,8,7,59% -2018-08-09 16:00:00,59.70434577,93.20582458,458.711482,729.4909665,90.71091126,239.2428456,147.8092421,91.43360351,87.9756426,3.457960912,113.9551783,0,113.9551783,2.735268662,111.2199096,1.042037412,1.626748521,-1.573116979,1.573116979,0.799172537,0.799172537,0.19775156,2.900836661,93.30087858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.56553398,1.981692835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.101646286,89.68435337,86.66718027,91.6660462,147.8092421,0,0.202619702,78.30980598,-0.202619702,101.690194,0.803232289,0,205.3923361,91.6660462,265.38593,8,8,29% -2018-08-09 17:00:00,48.01587485,103.7318718,648.8487688,811.6207175,105.9356411,446.2010978,338.568511,107.6325868,102.7412907,4.891296094,160.5152466,0,160.5152466,3.194350441,157.3208961,0.838035109,1.810462701,-0.924150534,0.924150534,0.688192739,0.688192739,0.163267076,3.61515987,116.2759685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.75883656,2.31429602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.61917102,111.7688837,101.3780076,114.0831797,338.568511,0,0.417151144,65.34514248,-0.417151144,114.6548575,0.930139368,0,416.2939083,114.0831797,490.9590677,8,9,18% -2018-08-09 18:00:00,36.94271848,117.5543525,800.7871984,856.2461643,116.4437746,643.2544388,524.2852015,118.9692373,112.9325651,6.036672156,197.6713369,0,197.6713369,3.511209435,194.1601274,0.644772072,2.051710501,-0.507509407,0.507509407,0.61694291,0.61694291,0.145411633,4.060530501,130.6006189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5550772,2.543859283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941840526,125.5382825,111.4969177,128.0821418,524.2852015,0,0.612306628,52.24352529,-0.612306628,127.7564747,0.968341567,0,619.1840712,128.0821418,703.0112713,8,10,14% -2018-08-09 19:00:00,27.56803166,138.4012971,902.8583377,879.7388656,123.0033174,807.6654434,681.5650023,126.1004411,119.2943136,6.806127518,222.6174608,0,222.6174608,3.709003854,218.9084569,0.481152921,2.415558323,-0.19217842,0.19217842,0.563018135,0.563018135,0.136237671,4.237165077,136.281794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6702318,2.687160666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069811675,130.9992442,117.7400434,133.6864048,681.5650023,0,0.774735582,39.2189343,-0.774735582,140.7810657,0.985461852,0,789.3963526,133.6864048,876.8914308,8,11,11% -2018-08-09 20:00:00,22.38818948,170.8299895,947.5844301,888.7942104,125.78347,923.129122,793.9951961,129.133926,121.9906343,7.143291695,233.5456515,0,233.5456515,3.792835711,229.7528158,0.39074762,2.981545777,0.077399601,-0.077399601,0.516917578,0.516917578,0.132741174,4.150556109,133.4961519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2620378,2.747896561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007063772,128.321579,120.2691016,131.0694755,793.9951961,0,0.893339748,26.70403438,-0.893339748,153.2959656,0.994030253,0,909.5243469,131.0694755,995.3066973,8,12,9% -2018-08-09 21:00:00,24.34171516,207.4538725,931.7336843,885.6620003,124.8040024,978.3148481,850.2503448,128.0645033,121.0407012,7.023802078,229.6729202,0,229.6729202,3.763301149,225.909619,0.424843075,3.620753121,0.333293749,-0.333293749,0.473157102,0.473157102,0.133948149,3.819028955,122.833099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.348926,2.726498872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766873478,118.071847,119.1157995,120.7983458,850.2503448,0,0.960016738,16.25677921,-0.960016738,163.7432208,0.997917575,0,967.5955616,120.7983458,1046.655663,8,13,8% -2018-08-09 22:00:00,32.1338993,233.5469037,856.4251472,869.5786751,120.0595173,966.5690848,843.6737104,122.8953744,116.4392799,6.456094515,211.2704297,0,211.2704297,3.62023742,207.6501923,0.560842344,4.076162427,0.602403138,-0.602403138,0.427136686,0.427136686,0.140186819,3.276110116,105.3709629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9258648,2.622849687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.373530627,101.2865775,114.2993955,103.9094272,843.6737104,0,0.970209752,14.02034739,-0.970209752,165.9796526,0.998464752,0,956.6778576,103.9094272,1024.6845,8,14,7% -2018-08-09 23:00:00,42.59849519,250.1134833,727.0906661,836.298888,111.4786237,885.6859873,772.0877388,113.5982485,108.1171319,5.481116566,179.6530418,0,179.6530418,3.361491818,176.29155,0.743483998,4.365303788,0.919496864,-0.919496864,0.372910465,0.372910465,0.153321489,2.570954813,82.69074437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9262996,2.435389379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.86264801,79.48548879,105.7889476,81.92087817,772.0877388,0,0.923219856,22.5985629,-0.923219856,157.4014371,0.995841719,0,874.666129,81.92087817,928.2817053,8,15,6% -2018-08-09 00:00:00,54.08507306,261.892261,553.3498127,775.1329069,98.66973809,737.2275063,637.3616402,99.86586606,95.69448144,4.171384624,137.1413252,0,137.1413252,2.975256656,134.1660685,0.943962601,4.570882239,1.351054433,-1.351054433,0.299109774,0.299109774,0.178313493,1.76903399,56.89821414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.98517547,2.155563319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.281659104,54.69272766,93.26683458,56.84829098,637.3616402,0,0.822261105,34.68821626,-0.822261105,145.3117837,0.989192065,0,723.7399115,56.84829098,760.945981,8,16,5% -2018-08-09 01:00:00,65.8915628,271.5126344,349.2959247,659.1294607,80.06469057,524.7151771,444.4315922,80.28358497,77.65044475,2.633140223,87.10508677,0,87.10508677,2.414245828,84.69084095,1.15002472,4.738789432,2.078972413,-2.078972413,0.174628468,0.174628468,0.229217362,0.957983688,30.81204846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64056107,1.749112884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.694055921,29.61771297,75.33461699,31.36682586,444.4315922,0,0.674270562,47.60246922,-0.674270562,132.3975308,0.975845791,0,509.0313157,31.36682586,529.5602759,8,17,4% -2018-08-09 02:00:00,77.63207639,280.3372832,137.633987,411.153749,49.56957625,250.4162104,201.3037966,49.11241376,48.07487063,1.037543131,34.86565924,0,34.86565924,1.494705616,33.37095363,1.354935338,4.892808608,3.935959409,-3.935959409,0,0,0.360155056,0.373676404,12.01871766,0.125059614,1,0.24880337,0,0.932069562,0.970831525,0.724496596,1,46.43955433,1.082909131,0.020196805,0.312029739,0.94432194,0.668818536,0.961238037,0.922476074,0.262796483,11.55284857,46.70235081,12.6357577,176.1288216,0,0.489607105,60.68523903,-0.489607105,119.314761,0.947877299,0,213.6508624,12.6357577,221.9207131,8,18,4% -2018-08-09 03:00:00,88.78077266,289.2164644,0.957631248,5.094278154,0.849235577,2.282304747,1.451457727,0.83084702,0.823627991,0.007219029,0.257796369,0,0.257796369,0.025607586,0.232188783,1.549516795,5.047779554,36.40333407,-36.40333407,0,0,0.886808548,0.006401896,0.205906998,0.850638886,1,0.027463105,0,0.958725757,0.99748772,0.724496596,1,0.794401788,0.018552609,0.103558323,0.312029739,0.748608914,0.473105509,0.961238037,0.922476074,0.004529082,0.197925638,0.79893087,0.216478247,0.216791342,0,0.284919214,73.44598032,-0.284919214,106.5540197,0.87451166,0,0.988517427,0.216478247,1.13019811,8,19,14% -2018-08-09 04:00:00,99.97986936,298.8311932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744977906,5.21558823,-3.740975343,3.740975343,1,0.830101849,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.058887433,86.62404557,-0.058887433,93.37595443,0,0,0,0,0,8,20,0% -2018-08-09 05:00:00,109.7718538,309.8393498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915880276,5.407716807,-1.39769656,1.39769656,1,0.769173879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.156165726,98.98441077,0.156165726,81.01558923,0,0.729827313,0,0,0,8,21,0% -2018-08-09 06:00:00,117.9681668,322.8724818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058932923,5.635187871,-0.554615861,0.554615861,1,0.624998588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351737022,110.593596,0.351737022,69.40640403,0,0.907848344,0,0,0,8,22,0% -2018-08-09 07:00:00,123.8150543,338.2957404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160980362,5.904374515,-0.044400671,0.044400671,1,0.537746652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51450086,120.9640976,0.51450086,59.03590237,0,0.952818433,0,0,0,8,23,0% -2018-08-10 08:00:00,126.5063807,355.6870623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207952868,6.207910344,0.365316641,-0.365316641,1,0.467680865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633366407,129.2989289,0.633366407,50.70107106,0,0.971056754,0,0,0,8,0,0% -2018-08-10 09:00:00,125.5604629,13.5435992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191443488,0.236380399,0.772949839,-0.772949839,1,0.397971482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700233516,134.445742,0.700233516,45.554258,0,0.978595249,0,0,0,8,1,0% -2018-08-10 10:00:00,121.1563074,30.04899829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114576474,0.524453957,1.267978107,-1.267978107,1,0.313316663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710545,135.2792754,0.710545,44.72072465,0,0.97963148,0,0,0,8,2,0% -2018-08-10 11:00:00,113.9994552,44.23866473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989665838,0.772110356,2.02286005,-2.02286005,1,0.184224248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663597609,131.5748275,0.663597609,48.42517249,0,0.974653134,0,0,0,8,3,0% -2018-08-10 12:00:00,104.9019798,56.16873891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830884939,0.980329431,3.648793873,-3.648793873,1,0,#DIV/0!,0,0,0.08577849,1,0.267495035,0,0.929320419,0.968082382,0.724496596,1,0,0,0.014099755,0.312029739,0.960793892,0.685290488,0.961238037,0.922476074,0,0,0,0,0,0,-0.562590537,124.2351406,0.562590537,55.76485938,0,0.961125416,0,0,0,8,4,0% -2018-08-10 13:00:00,94.52459871,66.39198404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649765472,1.158758718,12.61179268,-12.61179268,1,0,#DIV/0!,0,0,0.61927821,1,0.079125325,0,0.953511474,0.992273438,0.724496596,1,0,0,0.081850522,0.312029739,0.794243278,0.518739874,0.961238037,0.922476074,0,0,0,0,0,0,-0.414408083,114.4820462,0.414408083,65.51795383,0,0.929345983,0,0,0,8,5,0% -2018-08-10 14:00:00,83.21338537,75.56704384,48.45144875,195.7650003,25.31750915,24.91934033,0,24.91934033,24.55409284,0.365247487,56.94507174,44.43404072,12.51103101,0.763416313,11.7476147,1.452347556,1.318893721,-8.363314845,8.363314845,0.039635239,0.039635239,0.522533584,0.197766203,6.360840894,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.602328,0.55309252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143280941,6.114282214,23.74560894,6.667374733,0,44.43404072,-0.226976429,103.1191266,0.226976429,76.88087342,0,0.829712809,23.74560894,43.53486748,52.23830901,8,6,120% -2018-08-10 15:00:00,71.64573443,84.35672247,244.8627445,563.380304,67.45905971,67.27079896,0,67.27079896,65.42492016,1.845878798,71.87260345,10.46865657,61.40394687,2.034139548,59.36980733,1.250453961,1.472302553,-2.920012191,2.920012191,0.970494816,0.970494816,0.275497442,1.806420221,58.10068383,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.88892182,1.473727178,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.308745301,55.84858727,64.19766712,57.32231444,0,10.46865657,-0.018581865,91.0647237,0.018581865,88.9352763,0,0,64.19766712,57.32231444,101.7139755,8,7,58% -2018-08-10 16:00:00,59.84294934,93.5059275,456.31302,728.1785,90.49657524,237.4891075,146.2814577,91.20764989,87.7677696,3.439880292,113.3671803,0,113.3671803,2.72880564,110.6383747,1.0444565,1.631986305,-1.578316285,1.578316285,0.800061671,0.800061671,0.198321265,2.888514583,92.9045582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36571855,1.977010397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092718983,89.30339514,86.45843753,91.28040554,146.2814577,0,0.200886812,78.41117782,-0.200886812,101.5888222,0.801103622,0,203.6450431,91.28040554,263.3862429,8,8,29% -2018-08-10 17:00:00,48.16441866,104.0731608,646.6057305,810.8510817,105.7718774,444.5213175,337.0644654,107.4568522,102.5824651,4.874387124,159.9664579,0,159.9664579,3.189412361,156.7770455,0.840627688,1.816419319,-0.925271651,0.925271651,0.688384461,0.688384461,0.163580173,3.603919966,115.9144545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.60616732,2.310718398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.611027747,111.4213827,101.2171951,113.7321011,337.0644654,0,0.415692194,65.43708518,-0.415692194,114.5629148,0.929718694,0,414.5923296,113.7321011,489.0277151,8,9,18% -2018-08-10 18:00:00,37.11798194,117.9471933,798.6341536,855.7023757,116.3017202,641.7001809,522.8849451,118.8152358,112.7947943,6.020441594,197.1450228,0,197.1450228,3.506925972,193.6380968,0.647830997,2.058566866,-0.506907826,0.506907826,0.616840033,0.616840033,0.145625778,4.049577803,130.2483425,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4226466,2.540755929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933905333,125.199661,111.3565519,127.7404169,522.8849451,0,0.611059359,52.33385902,-0.611059359,127.666141,0.968174889,0,617.6006255,127.7404169,701.2041735,8,10,14% -2018-08-10 19:00:00,27.79438866,138.8072371,900.7083433,879.286178,122.8683598,806.1889897,680.2356443,125.9533453,119.1634254,6.789919953,222.0921003,0,222.0921003,3.704934383,218.3871659,0.485103596,2.422643312,-0.190555672,0.190555672,0.562740629,0.562740629,0.136413036,4.225968143,135.9216621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5444171,2.684212348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061699534,130.6530717,117.6061166,133.337284,680.2356443,0,0.773622583,39.31968242,-0.773622583,140.6803176,0.985369002,0,787.8892343,133.337284,875.1558199,8,11,11% -2018-08-10 20:00:00,22.67370428,171.0215699,945.3457153,888.3567724,125.6455048,921.6409743,792.6577298,128.9832445,121.8568292,7.126415317,232.998689,0,232.998689,3.788675551,229.2100135,0.395730793,2.984889487,0.079868638,-0.079868638,0.516495348,0.516495348,0.132909583,4.138720924,133.1154917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1334193,2.74488254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99848922,127.9556739,120.1319085,130.7005564,792.6577298,0,0.892274089,26.83958631,-0.892274089,153.1604137,0.993963407,0,908.0046862,130.7005564,993.5455864,8,12,9% -2018-08-10 21:00:00,24.62648367,207.2682061,929.3193484,885.1776588,124.6542667,976.7050591,848.8039767,127.9010824,120.8954806,7.005601794,229.0830214,0,229.0830214,3.758786066,225.3242353,0.429813223,3.617512631,0.336708608,-0.336708608,0.472573126,0.472573126,0.134135017,3.806280338,122.4230597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2093345,2.72322771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757637148,117.6777015,118.9669716,120.4009293,848.8039767,0,0.958908043,16.48217577,-0.958908043,163.5178242,0.997857357,0,965.9522642,120.4009293,1044.752264,8,13,8% -2018-08-10 22:00:00,32.37826128,233.2367231,853.7612481,868.970364,119.8886951,964.7162445,842.0066229,122.7096216,116.2736086,6.436012919,210.6193856,0,210.6193856,3.615086501,207.0042991,0.565107265,4.070748755,0.607141389,-0.607141389,0.426326397,0.426326397,0.140424147,3.262312124,104.927172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7666153,2.619117863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363534029,100.8599889,114.1301493,103.4791067,842.0066229,0,0.968970471,14.31049517,-0.968970471,165.6895048,0.99839884,0,954.7885852,103.4791067,1022.513591,8,14,7% -2018-08-10 23:00:00,42.81338636,249.8148001,724.1243268,835.43413,111.2739909,883.4566909,770.0792664,113.3774246,107.9186695,5.458755047,178.927648,0,178.927648,3.355321384,175.5723266,0.747234556,4.360090782,0.926439385,-0.926439385,0.371723224,0.371723224,0.15366697,2.55616365,82.21500975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7355301,2.430918921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851931863,79.02819457,105.5874619,81.45911349,770.0792664,0,0.921771375,22.81356579,-0.921771375,157.1864342,0.995756615,0,872.3989851,81.45911349,925.7123457,8,15,6% -2018-08-10 00:00:00,54.28600987,261.625128,550.0609577,773.7244391,98.40745322,734.4580811,634.8713838,99.58669727,95.44010542,4.146591846,136.3359954,0,136.3359954,2.967347799,133.3686476,0.94746961,4.56621989,1.362398242,-1.362398242,0.297169869,0.297169869,0.178902814,1.753627515,56.40268893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.74065957,2.14983338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270497165,54.21640998,93.01115674,56.36624336,634.8713838,0,0.820539396,34.86117416,-0.820539396,145.1388258,0.989064474,0,720.9398878,56.36624336,757.8304667,8,16,5% -2018-08-10 01:00:00,66.08943037,271.2723223,345.7315812,656.4097358,79.68199573,521.1449432,441.259383,79.88556026,77.27928956,2.606270696,86.22933076,0,86.22933076,2.402706166,83.82662459,1.153478161,4.734595194,2.101829613,-2.101829613,0.170719657,0.170719657,0.230473581,0.943070888,30.33240153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.28379258,1.740752438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.683251648,29.1566581,74.96704423,30.89741054,441.259383,0,0.672231624,47.76046283,-0.672231624,132.2395372,0.975620875,0,505.4689096,30.89741054,525.6906468,8,17,4% -2018-08-10 02:00:00,77.83406434,280.1170685,134.1312297,404.7098262,48.84120314,245.5696089,197.1900104,48.37959853,47.36846066,1.011137866,33.99441203,0,33.99441203,1.47274248,32.52166955,1.358460693,4.888965137,4.012340153,-4.012340153,0,0,0.364129989,0.36818562,11.84211517,0.134945768,1,0.244254873,0,0.932727323,0.971489287,0.724496596,1,45.77017887,1.066996913,0.021697745,0.312029739,0.94031168,0.664808276,0.961238037,0.922476074,0.258461259,11.38309153,46.02864013,12.45008845,170.580053,0,0.48723801,60.84079492,-0.48723801,119.1592051,0.947380748,0,207.6328984,12.45008845,215.7812323,8,18,4% -2018-08-10 03:00:00,88.97183554,289.0121036,0.654468107,3.600023773,0.589869669,1.594286289,1.01726971,0.577016579,0.572082922,0.004933657,0.176470117,0,0.176470117,0.017786747,0.15868337,1.552851472,5.044212787,43.29539518,-43.29539518,0,0,0.901296278,0.004446687,0.143020731,0.872996439,1,0.023093039,0,0.959137669,0.997899632,0.724496596,1,0.551522592,0.012886438,0.105474319,0.312029739,0.744762786,0.469259382,0.961238037,0.922476074,0.003156138,0.137476966,0.55467873,0.150363404,0.129196876,0,0.282573053,73.58616722,-0.282573053,106.4138328,0.873054607,0,0.667474658,0.150363404,0.765884498,8,19,15% -2018-08-10 04:00:00,100.2108099,298.6425583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749008579,5.212295928,-3.668347988,3.668347988,1,0.842521858,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055832434,86.79937284,-0.055832434,93.20062716,0,0,0,0,0,8,20,0% -2018-08-10 05:00:00,110.0235799,309.6726698,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920273724,5.404807691,-1.385535169,1.385535169,1,0.767094158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159497107,99.17770776,0.159497107,80.82229224,0,0.736514691,0,0,0,8,21,0% -2018-08-10 06:00:00,118.242211,322.7435368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063715897,5.632937356,-0.552271256,0.552271256,1,0.624597637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35528073,110.8106507,0.35528073,69.18934933,0,0.90926622,0,0,0,8,22,0% -2018-08-10 07:00:00,124.106969,338.2304759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166075234,5.903235434,-0.045596312,0.045596312,1,0.537951118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518178311,121.2101353,0.518178311,58.78986466,0,0.953508119,0,0,0,8,23,0% -2018-08-11 08:00:00,126.8028521,355.7106049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213127271,6.208321239,0.361919698,-0.361919698,1,0.468261776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637089878,129.5751597,0.637089878,50.42484029,0,0.971518138,0,0,0,8,0,0% -2018-08-11 09:00:00,125.8427086,13.65844205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196369604,0.238384785,0.767267757,-0.767267757,1,0.398943175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703912173,134.741727,0.703912173,45.25827297,0,0.978968411,0,0,0,8,1,0% -2018-08-11 10:00:00,121.409983,30.23071479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119003949,0.527625508,1.258719227,-1.258719227,1,0.314900024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714091137,135.568764,0.714091137,44.431236,0,0.979980926,0,0,0,8,2,0% -2018-08-11 11:00:00,114.2201879,44.45737988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99351835,0.775927656,2.005739802,-2.005739802,1,0.187151982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666932677,131.8307665,0.666932677,48.16923354,0,0.975029914,0,0,0,8,3,0% -2018-08-11 12:00:00,105.0927886,56.40544584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834215182,0.984460746,3.60413397,-3.60413397,1,0,#DIV/0!,0,0,0.07935035,1,0.270651036,0,0.928848962,0.967610925,0.724496596,1,0,0,0.013081234,0.312029739,0.963573946,0.688070542,0.961238037,0.922476074,0,0,0,0,0,0,-0.565650549,124.4474788,0.565650549,55.55252117,0,0.961606203,0,0,0,8,4,0% -2018-08-11 13:00:00,94.69161693,66.63956406,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652680489,1.163079805,12.16411513,-12.16411513,1,0,#DIV/0!,0,0,0.607848137,1,0.08202457,0,0.953200172,0.991962135,0.724496596,1,0,0,0.080680536,0.312029739,0.796810052,0.521306648,0.961238037,0.922476074,0,0,0,0,0,0,-0.417148025,114.6546609,0.417148025,65.34533914,0,0.930138471,0,0,0,8,5,0% -2018-08-11 14:00:00,83.36115972,75.82632381,46.4287932,189.1768277,24.55796134,24.16744805,0,24.16744805,23.8174482,0.349999855,55.38228527,43.38457368,11.99771159,0.740513144,11.25719844,1.454926705,1.32341901,-8.547348603,8.547348603,0.008163613,0.008163613,0.528938179,0.186474234,5.997652356,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.89423715,0.536499252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135099948,5.765171576,23.0293371,6.301670828,0,43.38457368,-0.229333445,103.2578321,0.229333445,76.74216792,0,0.831976851,23.0293371,42.39663181,50.77708469,8,6,120% -2018-08-11 15:00:00,71.78612478,84.63367382,242.3090828,560.5331563,67.10605785,66.90919083,0,66.90919083,65.08256261,1.826628218,72.33780264,11.56366493,60.77413772,2.023495239,58.75064248,1.252904235,1.477136266,-2.940452937,2.940452937,0.966999243,0.966999243,0.276944046,1.783042322,57.34877026,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.55983471,1.466015412,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.291808093,55.12581934,63.85164281,56.59183475,0,11.56366493,-0.020629761,91.18208208,0.020629761,88.81791792,0,0,63.85164281,56.59183475,100.8898668,8,7,58% -2018-08-11 16:00:00,59.98265912,93.81064888,453.8926048,726.8451209,90.27954952,235.7321839,144.7532617,90.97892218,87.557288,3.42163418,112.7737785,0,112.7737785,2.722261514,110.051517,1.046894896,1.637304696,-1.583519698,1.583519698,0.800951507,0.800951507,0.198900684,2.876028565,92.50296492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.16339563,1.9722692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083672905,88.9173684,86.24706854,90.8896376,144.7532617,0,0.199152828,78.51257687,-0.199152828,101.4874231,0.798936531,0,201.8957373,90.8896376,261.3811873,8,8,29% -2018-08-11 17:00:00,48.31458304,104.4191658,644.3331561,810.0674555,105.6056547,442.8316288,335.5531187,107.2785101,102.4212546,4.857255498,159.4104337,0,159.4104337,3.184400133,156.2260335,0.843248551,1.822458245,-0.926349516,0.926349516,0.688568787,0.688568787,0.163899147,3.592484925,115.5466643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45120568,2.307087056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.602743099,111.0678487,101.0539488,113.3749358,335.5531187,0,0.414228613,65.52925203,-0.414228613,114.470748,0.929293708,0,412.8813506,113.3749358,487.0829786,8,9,18% -2018-08-11 18:00:00,37.29566045,118.3444622,796.4426672,855.1466265,116.1569566,640.1281912,521.4698742,118.658317,112.6543958,6.003921244,196.6093064,0,196.6093064,3.502560815,193.1067455,0.650932071,2.065500516,-0.50624864,0.50624864,0.616727306,0.616727306,0.145844719,4.038391153,129.8885414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2876902,2.537593387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925800643,124.8538065,111.2134909,127.3913999,521.4698742,0,0.609801709,52.42483339,-0.609801709,127.5751666,0.968006133,0,615.9995275,127.3913999,699.3746509,8,10,14% -2018-08-11 19:00:00,28.02410338,139.2160698,898.5100142,878.8215944,122.7302378,804.6851413,678.882325,125.8028163,119.0294683,6.773348019,221.554925,0,221.554925,3.700769496,217.8541555,0.489112874,2.42977879,-0.188865827,0.188865827,0.562451648,0.562451648,0.136593066,4.214497156,135.5527158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4156524,2.681194902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053388843,130.2984264,117.4690413,132.9796213,678.882325,0,0.772491629,39.42183476,-0.772491629,140.5781652,0.98527438,0,786.3544028,132.9796213,873.3869054,8,11,11% -2018-08-11 20:00:00,22.96320445,171.2160056,943.0484121,887.9062106,125.503803,920.1141727,791.2856752,128.8284976,121.7194003,7.109097275,232.4374085,0,232.4374085,3.784402721,228.6530057,0.400783524,2.98828303,0.082416525,-0.082416525,0.516059634,0.516059634,0.133083097,4.126574445,132.7248192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0013174,2.741786888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989689138,127.5801446,119.9910065,130.3219315,791.2856752,0,0.891181597,26.97789654,-0.891181597,153.0221035,0.993894712,0,906.4456549,130.3219315,991.7387527,8,12,9% -2018-08-11 21:00:00,24.91615766,207.0881608,926.8365285,884.6775445,124.5001303,975.0442513,847.3113741,127.7328772,120.745992,6.986885249,228.4763851,0,228.4763851,3.754138284,224.7222469,0.434868988,3.614370248,0.34022087,-0.34022087,0.471972494,0.471972494,0.134328036,3.793189727,122.0020206,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0656403,2.719860407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748153045,117.2729828,118.8137933,119.9928432,847.3113741,0,0.957762949,16.7118685,-0.957762949,163.2881315,0.997795015,0,964.2568589,119.9928432,1042.789775,8,13,8% -2018-08-11 22:00:00,32.62802303,232.9290994,851.0200732,868.3413944,119.7126878,962.7993724,840.281115,122.5182574,116.1029086,6.415348784,209.9494487,0,209.9494487,3.60977923,206.3396695,0.56946643,4.065379708,0.612009536,-0.612009536,0.425493895,0.425493895,0.140669641,3.248151793,104.4717271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6025319,2.615272764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353274917,100.4221979,113.9558068,103.0374706,840.281115,0,0.967685199,14.60544777,-0.967685199,165.3945522,0.998330304,0,952.8339079,103.0374706,1020.269872,8,14,7% -2018-08-11 23:00:00,43.03349546,249.5161931,721.0737993,834.5394322,111.0631318,881.1498212,767.9998937,113.1499275,107.7141686,5.435758882,178.1816541,0,178.1816541,3.348963204,174.8326909,0.751076184,4.354879107,0.933575369,-0.933575369,0.370502899,0.370502899,0.154024639,2.54100508,81.72745803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.538956,2.426312441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.840949531,78.55954131,105.3799055,80.98585375,767.9998937,0,0.920267951,23.03471391,-0.920267951,156.9652861,0.995667998,0,870.0528223,80.98585375,923.0564438,8,15,6% -2018-08-11 00:00:00,54.49185727,261.3570145,546.6838712,772.2663291,98.13718458,731.596094,632.2969736,99.29912032,95.17798638,4.121133941,135.5090321,0,135.5090321,2.959198203,132.5498338,0.951062325,4.561540427,1.374083901,-1.374083901,0.295171503,0.295171503,0.17951359,1.737873106,55.89597298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48870078,2.143929024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.259083149,53.72933534,92.74778393,55.87326436,632.2969736,0,0.818755072,35.03963487,-0.818755072,144.9603651,0.988931676,0,718.0462898,55.87326436,754.6142238,8,16,5% -2018-08-11 01:00:00,66.29195345,271.0306073,342.0802587,653.5901388,79.28711003,517.4616738,437.9866172,79.47505661,76.89631112,2.578745485,85.33211809,0,85.33211809,2.390798906,82.94131918,1.157012855,4.730376471,2.125508064,-2.125508064,0.166670403,0.166670403,0.231779262,0.927881422,29.84385609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91565914,1.732125669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.672246931,28.68704964,74.58790607,30.41917531,437.9866172,0,0.670124274,47.92334295,-0.670124274,132.0766571,0.975386974,0,501.7943472,30.41917531,521.7030891,8,17,4% -2018-08-11 02:00:00,78.04049679,279.8952813,130.5645248,398.0210993,48.08648039,240.5804205,192.9596744,47.62074613,46.63649559,0.984250539,33.10686547,0,33.10686547,1.449984804,31.65688066,1.362063619,4.88509422,4.092844136,-4.092844136,0,0,0.368296675,0.362496201,11.6591239,0.145126621,1,0.239634052,0,0.933391016,0.972152979,0.724496596,1,45.07545954,1.050509055,0.023229682,0.312029739,0.936236836,0.660733432,0.961238037,0.922476074,0.254007,11.20719337,45.32946654,12.25770242,164.9560888,0,0.484797602,61.00078732,-0.484797602,118.9992127,0.946864176,0,201.5204777,12.25770242,209.5428988,8,18,4% -2018-08-11 03:00:00,89.16464986,288.8061217,0.420473168,2.442933827,0.384857407,1.060927226,0.684504986,0.37642224,0.373252536,0.003169704,0.113553459,0,0.113553459,0.011604871,0.101948588,1.556216716,5.040617723,53.44558449,-53.44558449,0,0,0.915295995,0.002901218,0.093313134,0.895937174,1,0.018708437,0,0.959546343,0.998308306,0.724496596,1,0.359658687,0.008407689,0.107410058,0.312029739,0.740907026,0.465403622,0.961238037,0.922476074,0.002066356,0.089696134,0.361725043,0.098103823,0.071231523,0,0.280197923,73.72798225,-0.280197923,106.2720178,0.871554709,0,0.423807212,0.098103823,0.488014202,8,19,15% -2018-08-11 04:00:00,100.4461821,298.4523648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753116598,5.208976427,-3.597390864,3.597390864,1,0.854656241,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.052705099,86.97882047,-0.052705099,93.02117953,0,0,0,0,0,8,20,0% -2018-08-11 05:00:00,110.2798049,309.5046979,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924745694,5.401876029,-1.373350955,1.373350955,1,0.765010535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162897071,99.37509278,0.162897071,80.62490722,0,0.74305771,0,0,0,8,21,0% -2018-08-11 06:00:00,118.5208395,322.6139924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068578881,5.63067638,-0.549858383,0.549858383,1,0.624185011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358887057,111.0318621,0.358887057,68.96813792,0,0.910680403,0,0,0,8,22,0% -2018-08-11 07:00:00,124.4034354,338.1660196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171249549,5.902110461,-0.046733965,0.046733965,1,0.538145668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.521910613,121.4604991,0.521910613,58.53950086,0,0.954198154,0,0,0,8,23,0% -2018-08-12 08:00:00,127.103506,355.7370064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21837467,6.208782033,0.358574392,-0.358574392,1,0.468833857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640859166,129.8559153,0.640859166,50.14408475,0,0.971979738,0,0,0,8,0,0% -2018-08-12 09:00:00,126.1283487,13.7779759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201354965,0.240471044,0.761641741,-0.761641741,1,0.399905281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707626965,135.0421652,0.707626965,44.95783475,0,0.979341302,0,0,0,8,1,0% -2018-08-12 10:00:00,121.6660944,30.41793177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123473935,0.530893061,1.249543533,-1.249543533,1,0.31646916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717663744,135.8619301,0.717663744,44.13806985,0,0.980329489,0,0,0,8,2,0% -2018-08-12 11:00:00,114.4425423,44.68154672,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997399168,0.779840105,1.988808845,-1.988808845,1,0.190047347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670285231,132.0890829,0.670285231,47.91091712,0,0.975404891,0,0,0,8,3,0% -2018-08-12 12:00:00,105.2846726,56.64723978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837564189,0.988680846,3.560308742,-3.560308742,1,0,#DIV/0!,0,0,0.072953862,1,0.273819459,0,0.928373547,0.96713551,0.724496596,1,0,0,0.012061797,0.312029739,0.966364632,0.690861228,0.961238037,0.922476074,0,0,0,0,0,0,-0.568720364,124.661041,0.568720364,55.338959,0,0.962083331,0,0,0,8,4,0% -2018-08-12 13:00:00,94.85941546,66.8918819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655609126,1.167483582,11.74508618,-11.74508618,1,0,#DIV/0!,0,0,0.596509702,1,0.084937143,0,0.952885456,0.991647419,0.724496596,1,0,0,0.079510012,0.312029739,0.799388959,0.523885554,0.961238037,0.922476074,0,0,0,0,0,0,-0.419891914,114.8277638,0.419891914,65.17223625,0,0.930921736,0,0,0,8,5,0% -2018-08-12 14:00:00,83.5095295,76.09012418,44.42525676,182.5448594,23.79075821,23.40827542,0,23.40827542,23.07337907,0.334896351,53.78246584,42.29366886,11.48879698,0.717379139,10.77141784,1.457516247,1.328023195,-8.740277042,8.740277042,0,0,0.535523257,0.179344785,5.768344768,1,0.024227545,0,0.113917501,0.961238037,1,0.452662799,0.728166203,22.1790096,0.517582902,0.115824807,0.004190835,0.724496596,0.448993192,0.999628395,0.960866432,0.129934686,5.54802595,22.30894429,6.065608852,0,41.2689971,-0.23168918,103.3965413,0.23168918,76.60345872,0,0.834193634,22.30894429,40.49194353,48.81011149,8,6,119% -2018-08-12 15:00:00,71.9273014,84.91507934,239.7417219,557.6408039,66.74845431,66.5430165,0,66.5430165,64.73574214,1.807274367,72.78632704,12.64545875,60.14086829,2.012712173,58.12815611,1.255368231,1.482047719,-2.961201621,2.961201621,0.963451009,0.963451009,0.278418182,1.759610962,56.59513718,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.22645768,1.458203118,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.274832152,54.40139855,63.50128984,55.85960167,0,12.64545875,-0.02267671,91.29939115,0.02267671,88.70060885,0,0,63.50128984,55.85960167,100.0602819,8,7,58% -2018-08-12 16:00:00,60.1234536,94.1198814,451.4505673,725.4906768,90.05983585,233.9725514,143.2251268,90.74742458,87.34419951,3.40322507,112.1750531,0,112.1750531,2.715636336,109.4594168,1.049352223,1.642701822,-1.588725355,1.588725355,0.801841726,0.801841726,0.199489916,2.863379318,92.09612166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95856687,1.967469281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.074508568,88.52629518,86.03307544,90.49376447,143.2251268,0,0.197418287,78.61397205,-0.197418287,101.3860279,0.796730657,0,200.1449247,90.49376447,259.3712837,8,8,30% -2018-08-12 17:00:00,48.46635821,104.769744,642.0310486,809.2696588,105.4369589,441.1321612,334.0346144,107.0975468,102.2576456,4.83990124,158.8471742,0,158.8471742,3.179313332,155.6678609,0.845897527,1.828576989,-0.927383061,0.927383061,0.688745533,0.688745533,0.164224081,3.580854229,115.1725811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.29393849,2.303401686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5943167,110.7082658,100.8882552,113.0116675,334.0346144,0,0.412760581,65.62163145,-0.412760581,114.3783685,0.928864401,0,411.1611174,113.0116675,485.1249935,8,9,18% -2018-08-12 18:00:00,37.47574742,118.7459544,794.2124848,854.5787177,116.0094565,638.538259,520.0398064,118.4984526,112.5113434,5.987109187,196.0641252,0,196.0641252,3.498113144,192.566012,0.654075182,2.072507877,-0.50553126,0.50553126,0.616604627,0.616604627,0.146068538,4.026969324,129.5211761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1501828,2.534371065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.917525567,124.500681,111.0677084,127.0350521,520.0398064,0,0.608533533,52.51645677,-0.608533533,127.4835432,0.967835259,0,614.3805693,127.0350521,697.5224702,8,10,14% -2018-08-12 19:00:00,28.25714879,139.6275263,896.2629247,878.3448997,122.5889152,803.1533948,677.5045792,125.6488156,118.8924071,6.756408509,221.0058308,0,221.0058308,3.696508098,217.3093227,0.493180284,2.43696006,-0.187108523,0.187108523,0.562151132,0.562151132,0.136777849,4.202750661,135.1749081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.283904,2.678107534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044878547,129.9352633,117.3287825,132.6133708,677.5045792,0,0.771342305,39.52541988,-0.771342305,140.4745801,0.985177936,0,784.7913457,132.6133708,871.5841446,8,11,11% -2018-08-12 20:00:00,23.25661897,171.4130872,940.6920212,887.4422865,125.3583233,918.5479977,789.8783566,128.6696411,121.5783073,7.091333806,231.8616875,0,231.8616875,3.78001597,228.0816715,0.405904574,2.991722753,0.085043572,-0.085043572,0.515610382,0.515610382,0.133261812,4.114115457,132.3240953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8656934,2.738608702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980662643,127.1949536,119.8463561,129.9335623,789.8783566,0,0.890061662,27.11900366,-0.890061662,152.8809963,0.993824117,0,904.8465162,129.9335623,989.885434,8,12,9% -2018-08-12 21:00:00,25.21064081,206.9137226,924.2847553,884.1613783,124.3415499,973.3315835,845.7717412,127.5598423,120.5921934,6.967648905,227.8528964,0,227.8528964,3.749356501,224.1035399,0.440008689,3.611325727,0.343830966,-0.343830966,0.471355132,0.471355132,0.134527319,3.779756585,121.5699646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9178033,2.716396022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738420779,116.8576741,118.656224,119.5740701,845.7717412,0,0.956580735,16.9458329,-0.956580735,163.0541671,0.997730497,0,962.5084833,119.5740701,1040.767321,8,13,8% -2018-08-12 22:00:00,32.88311129,232.6242059,848.2012863,867.6914068,119.5314522,960.8176042,838.4963668,122.3212374,115.9271379,6.394099578,209.2605363,0,209.2605363,3.604314307,205.656222,0.57391856,4.060058313,0.617008459,-0.617008459,0.424639029,0.424639029,0.140923451,3.23362968,104.004646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4335744,2.611313446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.342753696,99.97322178,113.7763281,102.5845352,838.4963668,0,0.966353199,14.90509744,-0.966353199,165.0949026,0.998259084,0,950.8129429,102.5845352,1017.95247,8,14,7% -2018-08-12 23:00:00,43.25877108,249.2178358,717.9389796,833.6142577,110.8459998,878.7645745,765.8488634,112.9157112,107.5035839,5.412127287,177.4150335,0,177.4150335,3.342415871,174.0726176,0.755007986,4.34967179,0.940906981,-0.940906981,0.369249119,0.369249119,0.154394737,2.525481173,81.2281558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3365339,2.42156892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.829702513,78.07959302,105.1662364,80.50116194,765.8488634,0,0.918708931,23.26193968,-0.918708931,156.7380603,0.995575798,0,867.6268301,80.50116194,920.3132306,8,15,6% -2018-08-12 00:00:00,54.70257059,261.0880572,543.218782,770.7575775,97.858862,728.6408287,629.6377598,99.00306889,94.90805625,4.095012635,134.6604886,0,134.6604886,2.95080575,131.7096829,0.954739966,4.556846235,1.386117836,-1.386117836,0.293113579,0.293113579,0.180146315,1.721774939,55.37820059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22923367,2.137848721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247420082,53.23163282,92.47665376,55.36948154,629.6377598,0,0.816907648,35.22357516,-0.816907648,144.7764248,0.988793571,0,715.0584226,55.36948154,751.2966409,8,16,5% -2018-08-12 01:00:00,66.49908545,270.787595,338.3426994,650.6681719,78.87984726,513.6645855,434.6126865,79.05189902,76.50132883,2.550570185,84.41362311,0,84.41362311,2.378518431,82.03510468,1.160627991,4.726135106,2.150034785,-2.150034785,0.162476087,0.162476087,0.233135952,0.912423179,29.34666587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.53598714,1.723228506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.661047487,28.20913149,74.19703463,29.93236,434.6126865,0,0.66794828,48.09109108,-0.66794828,131.9089089,0.975143905,0,498.0069468,29.93236,517.5970778,8,17,4% -2018-08-12 02:00:00,78.25131806,279.6720038,126.9364277,391.0814063,47.30473343,235.4483147,188.6130931,46.83522159,45.87832118,0.95690041,32.20361877,0,32.20361877,1.426412249,30.77720652,1.365743144,4.881197293,4.177752495,-4.177752495,0,0,0.37266476,0.356603062,11.4695803,0.155607991,1,0.234942729,0,0.934060153,0.972822116,0.724496596,1,44.35472253,1.033430819,0.024792459,0.312029739,0.932098957,0.656595552,0.961238037,0.922476074,0.249431747,11.02499685,44.60415428,12.05842767,159.2633886,0,0.482286015,61.16518799,-0.482286015,118.834812,0.946327079,0,195.3194116,12.05842767,203.2114113,8,18,4% -2018-08-12 03:00:00,89.35889449,288.5985822,0.248251064,1.584097852,0.230526327,0.665506805,0.440060276,0.225446529,0.223575107,0.001871421,0.067142564,0,0.067142564,0.006951219,0.060191345,1.559606925,5.036995477,69.84316882,-69.84316882,0,0,0.928601564,0.001737805,0.055893777,0.919444045,1,0.014316814,0,0.959951035,0.998712998,0.724496596,1,0.21531927,0.005036135,0.10936252,0.312029739,0.737048511,0.461545106,0.961238037,0.922476074,0.001242279,0.053727224,0.216561549,0.058763359,0.035449476,0,0.27779867,73.87113372,-0.27779867,106.1288663,0.870013537,0,0.247403073,0.058763359,0.285862516,8,19,16% -2018-08-12 04:00:00,100.6859186,298.2606601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75730079,5.205630548,-3.528097013,3.528097013,1,0.866506187,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049506211,87.1623431,-0.049506211,92.8376569,0,0,0,0,0,8,20,0% -2018-08-12 05:00:00,110.5404545,309.3354663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929294887,5.398922381,-1.36115465,1.36115465,1,0.762924844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.166364477,99.5765089,0.166364477,80.4234911,0,0.749455071,0,0,0,8,21,0% -2018-08-12 06:00:00,118.8039725,322.4838709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073520484,5.628405331,-0.547380255,0.547380255,1,0.623761226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36255454,111.2571622,0.36255454,68.74283779,0,0.912089715,0,0,0,8,22,0% -2018-08-12 07:00:00,124.7043697,338.1023986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176501843,5.901000064,-0.047813943,0.047813943,1,0.538330355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525696044,121.7151124,0.525696044,58.28488761,0,0.954888004,0,0,0,8,23,0% -2018-08-13 08:00:00,127.4082512,355.7663125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223693478,6.209293522,0.355281706,-0.355281706,1,0.46939694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644672359,130.1411145,0.644672359,49.85888547,0,0.972441223,0,0,0,8,0,0% -2018-08-13 09:00:00,126.4172824,13.90225054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20639781,0.242640045,0.756073706,-0.756073706,1,0.400857471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711375878,135.3469711,0.711375878,44.65302895,0,0.97971367,0,0,0,8,1,0% -2018-08-13 10:00:00,121.924537,30.61067237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127984609,0.534257019,1.240453901,-1.240453901,1,0.318023579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721260798,136.1586726,0.721260798,43.84132739,0,0.980676948,0,0,0,8,2,0% -2018-08-13 11:00:00,114.6664213,44.91115209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001306593,0.783847475,1.972070797,-1.972070797,1,0.192909721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673653337,132.3496612,0.673653337,47.65033878,0,0.975777849,0,0,0,8,3,0% -2018-08-13 12:00:00,105.477549,56.89407953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840930517,0.992989013,3.517310804,-3.517310804,1,0,#DIV/0!,0,0,0.066591145,1,0.276999131,0,0.927894331,0.966656295,0.724496596,1,0,0,0.011041822,0.312029739,0.969164928,0.693661524,0.961238037,0.922476074,0,0,0,0,0,0,-0.571798225,124.8757169,0.571798225,55.12428312,0,0.962556567,0,0,0,8,4,0% -2018-08-13 13:00:00,95.02792853,67.14887777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658550234,1.171969006,11.35216797,-11.35216797,1,0,#DIV/0!,0,0,0.585265541,1,0.087862109,0,0.952567404,0.991329367,0.724496596,1,0,0,0.078339341,0.312029739,0.801979139,0.526475734,0.961238037,0.922476074,0,0,0,0,0,0,-0.422638247,115.0012635,0.422638247,64.99873653,0,0.931695515,0,0,0,8,5,0% -2018-08-13 14:00:00,83.65844091,76.35837123,42.44292358,175.8761292,23.0164827,22.64240351,0,22.64240351,22.32245083,0.319952686,52.14727511,41.16246503,10.98481009,0.694031875,10.29077821,1.460115241,1.332704989,-8.942693368,8.942693368,0,0,0.542292584,0.173507969,5.580612707,1,0.056108964,0,0.111360506,0.961238037,1,0.457628408,0.733131812,21.45718881,0.498088356,0.115824807,0.009854682,0.724496596,0.448993192,0.999119429,0.960357466,0.125705933,5.371520316,21.58289474,5.869608672,0,38.85288176,-0.234042364,103.5351801,0.234042364,76.46481986,0,0.836363464,21.58289474,38.36473943,46.69184941,8,6,116% -2018-08-13 15:00:00,72.06923131,85.20085099,237.161347,554.703056,66.38625186,66.17228384,0,66.17228384,64.38446143,1.787822411,73.21760217,13.7132974,59.50430477,2.001790433,57.50251434,1.257845376,1.487035375,-2.982259893,2.982259893,0.959849832,0.959849832,0.279920201,1.736134097,55.84004048,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.88879331,1.450290354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.257823243,53.67557089,63.14661655,55.12586124,0,13.7132974,-0.024721871,91.41660319,0.024721871,88.58339681,0,0,63.14661655,55.12586124,99.22539021,8,7,57% -2018-08-13 16:00:00,60.26531435,94.4335166,448.9871873,724.114983,89.83743105,232.2106295,141.6974734,90.51315611,87.12850104,3.384655071,111.5710718,0,111.5710718,2.708930011,108.8621417,1.05182816,1.648175789,-1.59393161,1.59393161,0.802732049,0.802732049,0.200089075,2.850567367,91.68404528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.75122929,1.962610571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065226354,88.13019169,85.81645564,90.09280227,141.6974734,0,0.195683664,78.71533587,-0.195683664,101.2846641,0.79448557,0,198.3930535,90.09280227,257.3569907,8,8,30% -2018-08-13 17:00:00,48.61973711,105.1247519,639.699371,808.4574929,105.2657726,439.4229896,332.5090444,106.9139452,102.0916212,4.822324069,158.2766701,0,158.2766701,3.174151433,155.1025187,0.848574494,1.834773046,-0.928371342,0.928371342,0.688914539,0.688914539,0.164555067,3.569027255,114.792185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1343495,2.299661908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.585748097,110.3426145,100.7200976,112.6422764,332.5090444,0,0.411288221,65.71421542,-0.411288221,114.2857846,0.928430751,0,409.4317195,112.6422764,483.1538366,8,9,18% -2018-08-13 18:00:00,37.65823814,119.1514647,791.9433271,853.9984391,115.8591908,636.9301275,518.5945154,118.3356121,112.3656087,5.970003318,195.5094105,0,195.5094105,3.493582078,192.0158284,0.657260246,2.079585367,-0.504755183,0.504755183,0.61647191,0.61647191,0.146297326,4.015311061,129.1462063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0100972,2.531088323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.909079195,124.1402458,110.9191764,126.6713341,518.5945154,0,0.607254641,52.60874075,-0.607254641,127.3912592,0.967662218,0,612.7434956,126.6713341,695.6473503,8,10,14% -2018-08-13 19:00:00,28.49349872,140.0413403,893.9666416,877.8558716,122.4443548,801.5932148,676.1019109,125.4913039,118.7522057,6.739098158,220.4447113,0,220.4447113,3.692149069,216.7525622,0.497305368,2.444182478,-0.185283461,0.185283461,0.561839028,0.561839028,0.136967476,4.190727262,134.7881943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1491371,2.674949432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036167636,129.5635393,117.1853048,132.2384887,676.1019109,0,0.770174163,39.6304689,-0.770174163,140.3695311,0.985079619,0,783.1995177,132.2384887,869.7469637,8,11,11% -2018-08-13 20:00:00,23.55387758,171.6126055,938.2760552,886.9647579,125.2090244,916.9417163,788.4350848,128.5066315,121.4335103,7.073121233,231.2714066,0,231.2714066,3.775514057,227.4958926,0.411092715,2.995205004,0.087750038,-0.087750038,0.515147549,0.515147549,0.133445827,4.101342881,131.9132853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7265091,2.735347082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971408956,126.8000674,119.697918,129.5354145,788.4350848,0,0.888913655,27.26294688,-0.888913655,152.7370531,0.993751567,0,903.2065191,129.5354145,987.9848572,8,12,9% -2018-08-13 21:00:00,25.50983574,206.7448599,921.6635908,883.6288785,124.1784838,971.5662214,844.1842876,127.3819338,120.4340443,6.94788946,227.2124477,0,227.2124477,3.744439456,223.4680082,0.445230625,3.608378517,0.347539294,-0.347539294,0.47072097,0.47072097,0.134732982,3.765980587,121.1268812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7657843,2.712833639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728440116,116.4317655,118.4942245,119.1445991,844.1842876,0,0.955360681,17.18404279,-0.955360681,162.8159572,0.997663745,0,960.7062825,119.1445991,1038.68404,8,13,8% -2018-08-13 22:00:00,33.14344882,232.3221992,845.3046007,867.0200399,119.3449471,958.7701037,836.6515839,122.1185198,115.7462567,6.372263138,208.5525775,0,208.5525775,3.598690493,204.953887,0.578462307,4.054787301,0.622139019,-0.622139019,0.423761651,0.423761651,0.14118573,3.218746617,103.5259556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2597045,2.607239011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331970967,99.5130863,113.5916755,102.1203253,836.6515839,0,0.964973755,15.20933689,-0.964973755,164.7906631,0.998185119,0,948.7248366,102.1203253,1015.560547,8,14,7% -2018-08-13 23:00:00,43.48915711,248.919892,714.7198288,832.658066,110.6225508,876.3001952,763.6254625,112.6747327,107.2868727,5.387859968,176.6277753,0,176.6277753,3.33567806,173.2920972,0.75902898,4.34447169,0.948436415,-0.948436415,0.36796151,0.36796151,0.154777503,2.509594322,80.71718007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.1282229,2.416687399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818192543,77.58842371,104.9464155,80.00511111,763.6254625,0,0.917093695,23.49516861,-0.917093695,156.5048314,0.995479944,0,865.1202478,80.00511111,917.4819929,8,15,6% -2018-08-13 00:00:00,54.91810059,260.8183864,539.6659975,769.1971708,97.57241763,725.5916311,626.8931516,98.69847948,94.63024923,4.068230245,133.7904375,0,133.7904375,2.942168395,130.8482691,0.958501674,4.552139592,1.398506686,-1.398506686,0.290994961,0.290994961,0.180801492,1.705337556,54.84951787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.962195,2.131590987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235511254,52.72344288,92.19770625,54.85503387,626.8931516,0,0.814996695,35.41296495,-0.814996695,144.587035,0.988650058,0,711.9756569,54.85503387,747.8771795,8,16,5% -2018-08-13 01:00:00,66.71077545,270.5433863,334.51974,647.6412725,78.46001868,509.7529598,431.137049,78.61591073,76.09415963,2.521751102,83.47404294,0,83.47404294,2.36585905,81.10818389,1.164322678,4.72187286,2.175438198,-2.175438198,0.158131847,0.158131847,0.234545258,0.896704507,28.84109936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.14460062,1.714056828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.649659363,27.72316173,73.79425998,29.43721855,431.137049,0,0.66570348,48.26368287,-0.66570348,131.7363171,0.974891485,0,494.1060978,29.43721855,513.3721686,8,17,4% -2018-08-13 02:00:00,78.46646813,279.4473145,123.2497027,383.8846253,46.49527594,230.1731661,184.150786,46.02238014,45.09327182,0.929108319,31.28532146,0,31.28532146,1.402004119,29.88331734,1.369498221,4.877275724,4.267373729,-4.267373729,0,0,0.377244528,0.35050103,11.27331795,0.166395883,1,0.230182775,0,0.934734241,0.973496204,0.724496596,1,43.60728494,1.015747211,0.026385905,0.312029739,0.927899634,0.652396229,0.961238037,0.922476074,0.24473344,10.83634202,43.85201838,11.85208923,153.5088534,0,0.479703468,61.33396318,-0.479703468,118.6660368,0.945768942,0,189.0359243,11.85208923,196.7928796,8,18,4% -2018-08-13 03:00:00,89.55430239,288.3895452,0.128758392,0.976472315,0.121162597,0.387379986,0.268900254,0.118479733,0.117509098,0.000970635,0.034872462,0,0.034872462,0.003653499,0.031218963,1.563017436,5.033347092,100.7587061,-100.7587061,0,0,0.94100738,0.000913375,0.029377274,0.94350474,1,0.009924375,0,0.960351155,0.999113118,0.724496596,1,0.113107327,0.002646948,0.111329189,0.312029739,0.733192956,0.457689551,0.961238037,0.922476074,0.000655464,0.028238554,0.113762791,0.030885501,0.01519159,0,0.275379291,74.01538131,-0.275379291,105.9846187,0.868432244,0,0.126955657,0.030885501,0.1471696,8,19,16% -2018-08-13 04:00:00,100.929949,298.0674873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761559923,5.202259047,-3.460455713,3.460455713,1,0.878073531,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046236637,87.349891,-0.046236637,92.650109,0,0,0,0,0,8,20,0% -2018-08-13 05:00:00,110.8054514,309.1650027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933919956,5.395947228,-1.348956661,1.348956661,1,0.760838865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169898112,99.78189511,0.169898112,80.21810489,0,0.75570597,0,0,0,8,21,0% -2018-08-13 06:00:00,119.0915282,322.3531894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078539279,5.62612451,-0.544840001,0.544840001,1,0.623326817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.366281658,111.4864794,0.366281658,68.51352058,0,0.913493028,0,0,0,8,22,0% -2018-08-13 07:00:00,125.0096867,338.0396343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181830629,5.899904621,-0.048836741,0.048836741,1,0.538505264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529532829,121.9738954,0.529532829,58.02610463,0,0.955577148,0,0,0,8,23,0% -2018-08-14 08:00:00,127.7169965,355.7985644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229082099,6.209856423,0.352042398,-0.352042398,1,0.469950894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648527512,130.4306743,0.648527512,49.56932566,0,0.972902268,0,0,0,8,0,0% -2018-08-14 09:00:00,126.7094093,14.03131174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211496386,0.244892588,0.750565279,-0.750565279,1,0.401799467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715156883,135.6560578,0.715156883,44.34394219,0,0.980085271,0,0,0,8,1,0% -2018-08-14 10:00:00,122.1852076,30.80895533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13253417,0.53771771,1.231452784,-1.231452784,1,0.319562861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724880288,136.4588901,0.724880288,43.54110992,0,0.981023093,0,0,0,8,2,0% -2018-08-14 11:00:00,114.8917299,45.14617844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005238971,0.787949459,1.955528518,-1.955528518,1,0.195738618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677035091,132.6123868,0.677035091,47.38761317,0,0.976148584,0,0,0,8,3,0% -2018-08-14 12:00:00,105.6713383,57.14591995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844312777,0.997384457,3.475131106,-3.475131106,1,0,#DIV/0!,0,0,0.060264072,1,0.280188966,0,0.927411462,0.966173425,0.724496596,1,0,0,0.010021656,0.312029739,0.971973885,0.696470481,0.961238037,0.922476074,0,0,0,0,0,0,-0.574882422,125.0913986,0.574882422,54.90860143,0,0.963025693,0,0,0,8,4,0% -2018-08-14 13:00:00,95.19709409,67.41048845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66150273,1.176534974,10.98310114,-10.98310114,1,0,#DIV/0!,0,0,0.574117815,1,0.090798614,0,0.952246087,0.991008051,0.724496596,1,0,0,0.077168879,0.312029739,0.804579803,0.529076399,0.961238037,0.922476074,0,0,0,0,0,0,-0.425385585,115.1750721,0.425385585,64.8249279,0,0.932459581,0,0,0,8,5,0% -2018-08-14 14:00:00,83.80784369,76.63098827,40.48385257,169.1780518,22.23575687,21.87045114,0,21.87045114,21.56526676,0.305184381,50.4785717,39.99230282,10.48626887,0.670490111,9.815778762,1.462722811,1.337463054,-9.155251297,9.155251297,0,0,0.549250021,0.167622528,5.391316689,1,0.087419607,0,0.108795636,0.961238037,1,0.462662237,0.738165641,20.72935468,0.478784411,0.115824807,0.01558871,0.724496596,0.448993192,0.99859627,0.959834307,0.121441951,5.193039492,20.85079663,5.671823903,0,36.49619141,-0.236391792,103.6736784,0.236391792,76.32632165,0,0.838486734,20.85079663,36.27339624,44.591009,8,6,114% -2018-08-14 15:00:00,72.2118855,85.49089795,234.5685749,551.7196467,66.01944349,65.79699068,0,65.79699068,64.02871368,1.768277,73.63108618,14.76648965,58.86459654,1.990729807,56.87386673,1.260335161,1.49209765,-3.003630192,3.003630192,0.956195296,0.956195296,0.281450503,1.712618982,55.08371354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.54683504,1.442276969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.240786622,52.94856067,62.78762167,54.39083764,0,14.76648965,-0.02676448,91.53367491,0.02676448,88.46632509,0,0,62.78762167,54.39083764,98.38533708,8,7,57% -2018-08-14 16:00:00,60.40822668,94.75144319,446.5026815,722.7178152,89.61232581,230.4467667,140.1706573,90.27610937,86.91018356,3.365925817,110.9618868,0,110.9618868,2.702142258,108.2597446,1.054322451,1.653724655,-1.599137102,1.599137102,0.80362224,0.80362224,0.200698293,2.837593005,91.26674522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.54137422,1.957692867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055826473,87.729067,85.5972007,89.68675987,140.1706573,0,0.193949359,78.81664537,-0.193949359,101.1833546,0.792200747,0,196.6405001,89.68675987,255.3386907,8,8,30% -2018-08-14 17:00:00,48.77471589,105.4840426,637.3380375,807.630737,105.0920743,437.7041197,330.9764359,106.7276839,101.9231605,4.804523339,157.6988998,0,157.6988998,3.168913789,154.529986,0.851279384,1.841043852,-0.929313588,0.929313588,0.689075673,0.689075673,0.164892205,3.55700325,114.4054516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97241874,2.295867253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.577036746,109.9708717,100.5494555,112.266739,330.9764359,0,0.409811589,65.80700032,-0.409811589,114.1929997,0.927992713,0,407.6931763,112.266739,481.1695116,8,9,18% -2018-08-14 18:00:00,37.84313014,119.5607848,789.634885,853.4055679,115.7061279,635.3034826,517.1337201,118.1697625,112.2171612,5.952601307,194.9450866,0,194.9450866,3.488966666,191.45612,0.66048722,2.086729352,-0.503920025,0.503920025,0.616329089,0.616329089,0.146531175,4.003415097,128.7635912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8674038,2.527744473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900460609,123.7724616,110.7678644,126.3002061,517.1337201,0,0.605964783,52.70170104,-0.605964783,127.298299,0.967486954,0,611.0879921,126.3002061,693.7489509,8,10,14% -2018-08-14 19:00:00,28.73312782,140.4572453,891.6207252,877.3542808,122.2965186,800.0040276,674.6737866,125.330241,118.6088274,6.721413649,219.8714589,0,219.8714589,3.687691262,216.1837677,0.501487685,2.451441389,-0.183390434,0.183390434,0.561515301,0.561515301,0.137162041,4.178425656,134.3925323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0113164,2.671719766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.027255164,129.1832139,117.0385715,131.8549337,674.6737866,0,0.768986715,39.73701623,-0.768986715,140.2629838,0.984979371,0,781.5783334,131.8549337,867.8747504,8,11,11% -2018-08-14 20:00:00,23.85491012,171.8143481,935.8000446,886.473379,125.0558657,915.2945803,786.9551543,128.339426,121.2849699,7.05445602,230.6664509,0,230.6664509,3.770895758,226.8955551,0.416346724,2.998726077,0.090536103,-0.090536103,0.514671104,0.514671104,0.133635242,4.088255838,131.492361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5837264,2.73200114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.961927438,126.395459,119.5456539,129.1274601,786.9551543,0,0.887736928,27.40976644,-0.887736928,152.5902336,0.993677008,0,901.524897,129.1274601,986.0362371,8,12,9% -2018-08-14 21:00:00,25.81364291,206.5815227,918.9726399,883.0797637,124.010892,969.7473419,842.5482319,127.19911,120.2715061,6.927603935,226.554942,0,226.554942,3.739385946,222.815556,0.450533061,3.605527745,0.351346184,-0.351346184,0.470069954,0.470069954,0.134945141,3.751861702,120.6727693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6095464,2.709172388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718211031,115.9952558,118.3277574,118.7044282,842.5482319,0,0.954102072,17.42647032,-0.954102072,162.5735297,0.997594706,0,958.8494127,118.7044282,1036.539087,8,13,8% -2018-08-14 22:00:00,33.40895308,232.0232185,842.3297963,866.3269347,119.153135,956.6560734,834.7460073,121.9100661,115.5602283,6.349837806,207.8255179,0,207.8255179,3.592906647,204.2326113,0.583096231,4.049569104,0.627402025,-0.627402025,0.422861624,0.422861624,0.141456631,3.203503806,103.0356944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.080887,2.603048635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.320927602,99.04182858,113.4018146,101.6448772,834.7460073,0,0.963546178,15.5180582,-0.963546178,164.4819418,0.998108351,0,946.5687755,101.6448772,1013.093315,8,14,7% -2018-08-14 23:00:00,43.7245913,248.6225155,711.4163951,831.6703196,110.3927452,873.7559921,761.3290382,112.4269539,107.0639966,5.36295729,175.8198901,0,175.8198901,3.328748573,172.4911415,0.763138082,4.33928149,0.956165844,-0.956165844,0.3666397,0.3666397,0.155173181,2.493347351,80.19462164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9139859,2.41166701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806421668,77.08612067,104.7204076,79.49778768,761.3290382,0,0.915421676,23.73431817,-0.915421676,156.2656818,0.995380363,0,862.5323817,79.49778768,914.5620938,8,15,6% -2018-08-14 00:00:00,55.13839204,260.5481264,536.0259288,767.5840921,97.27778789,722.4479333,624.0626398,98.38529354,94.34450367,4.04078987,132.8989766,0,132.8989766,2.933284222,129.9656923,0.962346485,4.547422665,1.411257221,-1.411257221,0.288814491,0.288814491,0.181479631,1.688565978,54.31008626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68752549,2.125154433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223360303,52.2049207,91.9108858,54.33007513,624.0626398,0,0.813021852,35.60776598,-0.813021852,144.392234,0.988501038,0,708.797453,54.33007513,744.3554005,8,16,5% -2018-08-14 01:00:00,66.92696681,270.2980774,330.6123386,644.5068332,78.02743573,505.7261739,427.5592578,78.16691611,75.67462065,2.49229546,82.51360427,0,82.51360427,2.352815078,80.16078919,1.168095929,4.717591413,2.201748069,-2.201748069,0.153632595,0.153632595,0.236008844,0.880734316,28.32744311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.7413238,1.704606515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.638089014,27.2294158,73.37941281,28.93402232,427.5592578,0,0.663389798,48.44108666,-0.663389798,131.5589133,0.974629531,0,490.0912918,28.93402232,509.0280307,8,17,4% -2018-08-14 02:00:00,78.68588121,279.2212876,119.5073582,376.4247707,45.65741776,224.755118,179.5735429,45.18157511,44.28067816,0.900896946,30.3526822,0,30.3526822,1.376739604,28.97594259,1.373327702,4.87333081,4.36204646,-4.36204646,0,0,0.382046917,0.344184901,11.07016954,0.177496426,1,0.225356138,0,0.935412781,0.974174744,0.724496596,1,42.83246239,0.997443156,0.028009829,0.312029739,0.923640529,0.648137125,0.961238037,0.922476074,0.239909953,10.64106804,43.07237235,11.63851119,147.6998808,0,0.477050282,61.50707219,-0.477050282,118.4929278,0.945189245,0,182.6767112,11.63851119,190.293884,8,18,4% -2018-08-14 03:00:00,89.75073779,288.1790665,0.05192899,0.569078318,0.049453253,0.203678704,0.155325187,0.048353518,0.047962055,0.000391463,0.014081983,0,0.014081983,0.001491198,0.012590785,1.566445881,5.029673546,180.689008,-180.689008,0,0,0.952324571,0.0003728,0.011990514,0.968121888,1,0.005534314,0,0.960746405,0.999508368,0.724496596,1,0.046138637,0.001080368,0.113308836,0.312029739,0.729343432,0.453840028,0.961238037,0.922476074,0.000268625,0.011525738,0.046407261,0.012606106,0.004951474,0,0.272941671,74.16061134,-0.272941671,105.8393887,0.866810677,0,0.050699252,0.012606106,0.058949696,8,19,16% -2018-08-14 04:00:00,101.1781979,297.8728854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765892684,5.198862602,-3.39445338,3.39445338,1,0.889360595,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042897346,87.54140868,-0.042897346,92.45859132,0,0,0,0,0,8,20,0% -2018-08-14 05:00:00,111.0747144,308.9933296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938619482,5.392950968,-1.336767178,1.336767178,1,0.75875434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.173496663,99.99118502,0.173496663,80.00881498,0,0.761810018,0,0,0,8,21,0% -2018-08-14 06:00:00,119.3834216,322.2219596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083633778,5.623834117,-0.542240893,0.542240893,1,0.622882344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.3700668,111.7197371,0.3700668,68.28026294,0,0.914889258,0,0,0,8,22,0% -2018-08-14 07:00:00,125.3192988,337.9777426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18723438,5.898824406,-0.04980306,0.04980306,1,0.538670514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533419127,122.2367639,0.533419127,57.76323608,0,0.956265079,0,0,0,8,23,0% -2018-08-15 08:00:00,128.0296491,355.8337974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234538917,6.210471354,0.348856991,-0.348856991,1,0.470495631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652422633,130.724508,0.652422633,49.27549196,0,0.973362561,0,0,0,8,0,0% -2018-08-15 09:00:00,127.004629,14.16519957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216648941,0.247229372,0.745117796,-0.745117796,1,0.402731042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718967936,135.9693369,0.718967936,44.03066311,0,0.980455869,0,0,0,8,1,0% -2018-08-15 10:00:00,122.4480045,31.01279339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137120842,0.541275355,1.222542213,-1.222542213,1,0.321086658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728520204,136.7624806,0.728520204,43.23751945,0,0.981367724,0,0,0,8,2,0% -2018-08-15 11:00:00,115.1183759,45.38660234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009194689,0.792145647,1.939184126,-1.939184126,1,0.198533673,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680428618,132.8771459,0.680428618,47.12285414,0,0.976516906,0,0,0,8,3,0% -2018-08-15 12:00:00,105.8659642,57.40271063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847709642,1.0018663,3.433759063,-3.433759063,1,0,#DIV/0!,0,0,0.053974263,1,0.283387965,0,0.926925075,0.965687039,0.724496596,1,0,0,0.009001616,0.312029739,0.974790636,0.699287232,0.961238037,0.922476074,0,0,0,0,0,0,-0.577971298,125.3079807,0.577971298,54.69201933,0,0.963490514,0,0,0,8,4,0% -2018-08-15 13:00:00,95.36685411,67.67664616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664465602,1.181180302,10.63586759,-10.63586759,1,0,#DIV/0!,0,0,0.563068217,1,0.093745888,0,0.95192157,0.990683533,0.724496596,1,0,0,0.07599894,0.312029739,0.807190239,0.531686835,0.961238037,0.922476074,0,0,0,0,0,0,-0.428132554,115.3491056,0.428132554,64.65089441,0,0.933213739,0,0,0,8,5,0% -2018-08-15 14:00:00,83.95769144,76.90789452,38.5500747,162.4584281,21.44924352,21.09307643,0,21.09307643,20.80246969,0.290606747,48.77841532,38.78472957,9.993685759,0.646773831,9.346911928,1.465338148,1.34229598,-9.378673399,9.378673399,0,0,0.556399532,0.161693458,5.200617422,1,0.118166796,0,0.106223554,0.961238037,1,0.467763419,0.743266823,19.99612512,0.45966958,0.115824807,0.021392337,0.724496596,0.448993192,0.998058697,0.959296734,0.11714636,5.012756097,20.11327148,5.472425677,0,34.20166236,-0.238736334,103.8119698,0.238736334,76.18803022,0,0.840563928,20.11327148,34.22110934,42.51030312,8,6,111% -2018-08-15 15:00:00,72.35523923,85.78512549,231.963948,548.6902239,65.64801112,65.4171236,0,65.4171236,63.66848137,1.748642222,74.02627127,15.80439674,58.22187453,1.979529751,56.24234478,1.262837156,1.497232889,-3.025315885,3.025315885,0.952486824,0.952486824,0.283009544,1.689072113,54.3263653,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.20056605,1.434162566,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.223726996,52.22056873,62.42429304,53.65473129,0,15.80439674,-0.028803861,91.65056794,0.028803861,88.34943206,0,0,62.42429304,53.65473129,97.54024158,8,7,56% -2018-08-15 16:00:00,60.55217999,95.07354584,443.9971981,721.2989044,89.38450409,228.6812333,138.6449633,90.03626992,86.68923149,3.347038425,110.3475337,0,110.3475337,2.695272592,107.6522611,1.05683491,1.659346406,-1.604340807,1.604340807,0.804512126,0.804512126,0.201317721,2.824456276,90.84422284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.3289867,1.952715818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308957,87.32292242,85.37529565,89.27563824,138.6449633,0,0.192215685,78.91788261,-0.192215685,101.0821174,0.789875547,0,194.8875619,89.27563824,253.3166817,8,8,30% -2018-08-15 17:00:00,48.93129419,105.8474651,634.9469092,806.7891461,104.9158383,435.9754815,329.4367448,106.5387367,101.7522387,4.786498004,157.1138289,0,157.1138289,3.163599624,153.9502293,0.854012191,1.84738677,-0.930209231,0.930209231,0.689228837,0.689228837,0.165235608,3.544781336,114.0123529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.80812217,2.292017158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.568182011,109.5930102,100.3763042,111.8850274,329.4367448,0,0.40833066,65.89998745,-0.40833066,114.1000125,0.927550219,0,405.9454289,111.8850274,479.1719416,8,9,18% -2018-08-15 18:00:00,38.03042322,119.9737021,787.2868191,852.7998678,115.5502337,633.6579474,515.657079,118.0008684,112.0659678,5.934900594,194.3710701,0,194.3710701,3.484265881,190.8868042,0.663756101,2.093936118,-0.503025548,0.503025548,0.616176125,0.616176125,0.146770187,3.991280156,128.3732897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7220709,2.52433877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891668886,123.397289,110.6137398,125.9216278,515.657079,0,0.604663648,52.79535789,-0.604663648,127.2046421,0.9673094,0,609.4136793,125.9216278,691.8268663,8,10,14% -2018-08-15 19:00:00,28.97601134,140.8749721,889.2247312,876.8398915,122.1453679,798.385217,673.219631,125.165586,118.4622343,6.703351634,219.2859647,0,219.2859647,3.683133509,215.6028312,0.505726802,2.458732097,-0.18142935,0.18142935,0.561179936,0.561179936,0.13736164,4.16584466,133.9878843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8704056,2.66841769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018140275,128.7942508,116.8885459,131.4626685,673.219631,0,0.767779429,39.84509988,-0.767779429,140.1549001,0.98487713,0,779.9271639,131.4626685,865.9668512,8,11,11% -2018-08-15 20:00:00,24.15964592,172.0180979,933.263544,885.9679022,124.8988076,913.6058262,785.4378437,128.1679826,121.1326478,7.035334807,230.0467111,0,230.0467111,3.766159878,226.2805512,0.421665367,3.002282182,0.093401852,-0.093401852,0.514181032,0.514181032,0.133830158,4.074853689,131.0613019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4373085,2.728570011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.952217626,125.9811085,119.3895262,128.7096785,785.4378437,0,0.886530812,27.55950379,-0.886530812,152.4404962,0.993600381,0,899.8008669,128.7096785,984.0387773,8,12,9% -2018-08-15 21:00:00,26.12195987,206.4236423,916.2115597,882.5137538,123.8387373,967.8741374,840.8628052,127.0113322,120.1045424,6.906789747,225.880295,0,225.880295,3.734194845,222.1461002,0.455914207,3.602772213,0.355251877,-0.355251877,0.469402041,0.469402041,0.135163911,3.737400243,120.207639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4490546,2.705411454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.707733753,115.548155,118.1567883,118.2535664,840.8628052,0,0.952804193,17.67308578,-0.952804193,162.3269142,0.997523321,0,956.9370461,118.2535664,1034.33164,8,13,8% -2018-08-15 22:00:00,33.67953552,231.7273855,839.2767317,865.6117373,118.9559819,954.4747626,832.7789199,121.6958426,115.3690201,6.326822515,207.0793222,0,207.0793222,3.586961754,203.4923604,0.587818785,4.044405843,0.632798202,-0.632798202,0.421938824,0.421938824,0.141736304,3.187902883,102.533915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8970904,2.598741581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.309624786,98.55949921,113.2067152,101.1582408,832.7789199,0,0.96206981,15.83115217,-0.96206981,164.1688478,0.998028719,0,944.3439943,101.1582408,1010.55004,8,14,7% -2018-08-15 23:00:00,43.96500452,248.3258496,708.0288284,830.6504885,110.1565485,871.1313516,758.9590091,112.1723425,106.8349221,5.337420381,174.9914131,0,174.9914131,3.321626372,171.6697867,0.767334085,4.334103693,0.964097385,-0.964097385,0.365283327,0.365283327,0.15558201,2.476743583,79.66058739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6937908,2.406506999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794392295,76.57278664,104.4881831,78.97929364,758.9590091,0,0.913692365,23.97929724,-0.913692365,156.0207028,0.995276986,0,859.8626182,78.97929364,911.5529863,8,15,6% -2018-08-15 00:00:00,55.36338284,260.2773948,532.2991075,765.9173288,96.97491486,719.2092697,621.1458108,98.0634589,94.05076338,4.012695517,131.9862328,0,131.9862328,2.924151483,129.0620814,0.966273316,4.542697507,1.424376306,-1.424376306,0.286570996,0.286570996,0.182181246,1.671465769,53.76008476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.40517116,2.118537795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.21097126,51.67623834,91.61614242,53.79477613,621.1458108,0,0.81098284,35.80793099,-0.81098284,144.192069,0.988346414,0,705.5233773,53.79477613,740.7309824,8,16,5% -2018-08-15 01:00:00,67.14759628,270.0517598,326.6215929,641.2622153,77.58191184,501.5837209,423.8789784,77.70474249,75.24253096,2.462211533,81.53256758,0,81.53256758,2.339380889,79.19318669,1.17194664,4.71329236,2.228995474,-2.228995474,0.148973014,0.148973014,0.237528423,0.86452214,27.80600378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32598274,1.69487349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626343347,26.72818849,72.95232609,28.42306198,423.8789784,0,0.661007258,48.6232627,-0.661007258,131.3767373,0.974357865,0,485.9621427,28.42306198,504.5644683,8,17,4% -2018-08-15 02:00:00,78.90948487,278.993993,115.7126728,368.6960832,44.79047175,219.1946345,174.8824697,44.31216477,43.43987377,0.872291005,29.40647518,0,29.40647518,1.350597982,28.0558772,1.377230322,4.869363771,4.462142794,-4.462142794,0,0,0.387083546,0.337649496,10.85996844,0.188915834,1,0.220464857,0,0.936095266,0.974857229,0.724496596,1,42.02957571,0.978503641,0.029664014,0.312029739,0.919323391,0.643819987,0.961238037,0.922476074,0.234959122,10.43901474,42.26453483,11.41751839,141.8444021,0,0.474326899,61.68446649,-0.474326899,118.3155335,0.944587467,0,176.2489793,11.41751839,183.7215168,8,18,4% -2018-08-15 03:00:00,89.94832826,287.9671979,0.007477463,0.311757122,0.007196307,0.091360808,0.084325127,0.007035681,0.006979312,5.63683E-05,0.002029993,0,0.002029993,0.000216995,0.001812997,1.569894485,5.025975741,874.1696969,-874.1696969,0,0,0.9623996,5.42488E-05,0.001744828,0.993331629,1,0.001143942,0,0.961137024,0.999898988,0.724496596,1,0.006709879,0.000157212,0.115302878,0.312029739,0.725497858,0.449994454,0.961238037,0.922476074,3.92577E-05,0.001677195,0.006749137,0.001834407,0.000562311,0,0.270483403,74.30696585,-0.270483403,105.6930341,0.865145774,0,0.007235618,0.001834407,0.008436201,8,19,17% -2018-08-15 04:00:00,101.4305847,297.6768886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770297665,5.195441813,-3.330074141,3.330074141,1,0.900370093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039489426,87.73683407,-0.039489426,92.26316593,0,0,0,0,0,8,20,0% -2018-08-15 05:00:00,111.3481571,308.8204646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943391958,5.389933904,-1.324596213,1.324596213,1,0.756672983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177158706,100.204306,0.177158706,79.79569397,0,0.767767187,0,0,0,8,21,0% -2018-08-15 06:00:00,119.6795632,322.0901866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088802425,5.621534244,-0.539586367,0.539586367,1,0.622428393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37390826,111.9568527,0.37390826,68.04314729,0,0.916277359,0,0,0,8,22,0% -2018-08-15 07:00:00,125.6331156,337.916732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192711517,5.897759571,-0.050713809,0.050713809,1,0.538826262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537353023,122.5036288,0.537353023,57.49637121,0,0.9569513,0,0,0,8,23,0% -2018-08-16 08:00:00,128.346115,355.8720401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240062289,6.211138815,0.345725772,-0.345725772,1,0.471031101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656355682,131.022525,0.656355682,48.97747498,0,0.973821791,0,0,0,8,0,0% -2018-08-16 09:00:00,127.3028408,14.30394752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221853719,0.24965098,0.7397323,-0.7397323,1,0.403652016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.722806961,136.2867173,0.722806961,43.7132827,0,0.980825237,0,0,0,8,1,0% -2018-08-16 10:00:00,122.7128273,31.22219242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141742871,0.544930057,1.213723807,-1.213723807,1,0.322594694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732178541,137.0693411,0.732178541,42.93065886,0,0.981710645,0,0,0,8,2,0% -2018-08-16 11:00:00,115.3462697,45.63239376,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013172186,0.796435517,1.923039024,-1.923039024,1,0.201294648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683832072,133.1438253,0.683832072,46.85617471,0,0.976882634,0,0,0,8,3,0% -2018-08-16 12:00:00,106.0613547,57.66439533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851119848,1.00643356,3.393182676,-3.393182676,1,0,#DIV/0!,0,0,0.047723093,1,0.286595226,0,0.926435297,0.96519726,0.724496596,1,0,0,0.00798198,0.312029739,0.977614395,0.702110991,0.961238037,0.922476074,0,0,0,0,0,0,-0.581063247,125.5253606,0.581063247,54.47463942,0,0.963950847,0,0,0,8,4,0% -2018-08-16 13:00:00,95.53715488,67.94727804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667437911,1.18590372,10.30865917,-10.30865917,1,0,#DIV/0!,0,0,0.552117982,1,0.096703254,0,0.951593909,0.990355872,0.724496596,1,0,0,0.074829797,0.312029739,0.809809814,0.53430641,0.961238037,0.922476074,0,0,0,0,0,0,-0.430877857,115.523284,0.430877857,64.47671595,0,0.933957834,0,0,0,8,5,0% -2018-08-16 14:00:00,84.10794185,77.1890046,36.67492058,156.0352538,20.65717486,20.31075586,0,20.31075586,20.03428482,0.276471043,47.13133831,37.61618917,9.515149141,0.622890039,8.892259102,1.467960512,1.347202277,-9.613760686,9.613760686,0,0,0.563250705,0.15572251,5.008571205,1,0.148358934,0,0.103644839,0.961238037,1,0.472931201,0.748434605,19.25771661,0.440732832,0.115824807,0.027265125,0.724496596,0.448993192,0.997506481,0.958744517,0.112820428,4.83074289,19.37053704,5.271475722,0,32.03549144,-0.241074938,103.9499928,0.241074938,76.05000724,0,0.842595612,19.37053704,32.26444024,40.48696789,8,6,109% -2018-08-16 15:00:00,72.49927235,86.08343453,229.419833,546.0122303,65.22417537,64.98688944,0,64.98688944,63.25742583,1.729463608,74.43094852,16.83870434,57.59224418,1.966749539,55.62549464,1.265351008,1.502439364,-3.047321389,3.047321389,0.948723661,0.948723661,0.284300509,1.665994975,53.58412523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.80544382,1.424903346,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.207007688,51.50709934,62.01245151,52.93200269,0,16.83870434,-0.030839427,91.76724922,0.030839427,88.23275078,0,0,62.01245151,52.93200269,96.65538863,8,7,56% -2018-08-16 16:00:00,60.69716796,95.3997047,441.5564015,720.1825367,89.08066291,226.9056234,137.1824324,89.72319092,86.39455225,3.328638669,109.7465724,0,109.7465724,2.686110659,107.0604617,1.059365427,1.665038952,-1.609542079,1.609542079,0.805401596,0.805401596,0.201742433,2.811569108,90.42972722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0457298,1.946078029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036972248,86.92449346,85.08270205,88.87057149,137.1824324,0,0.190482864,79.01903506,-0.190482864,100.9809649,0.787509197,0,193.1151293,88.87057149,251.2791409,8,8,30% -2018-08-16 17:00:00,49.08947526,106.214863,632.6175837,806.2044682,104.6506867,434.2645415,328.0005206,106.2640209,101.4950824,4.768938565,156.5410617,0,156.5410617,3.155604324,153.3854574,0.856772971,1.853799073,-0.931057923,0.931057923,0.689373972,0.689373972,0.165424878,3.532635329,113.6216955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.56093374,2.286224591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55938227,109.2174956,100.120316,111.5037201,328.0005206,0,0.406845327,65.99318337,-0.406845327,114.0068166,0.927103172,0,404.2106392,111.5037201,477.187594,8,9,18% -2018-08-16 18:00:00,38.22011951,120.3899987,784.9937575,852.4209765,115.2980062,632.0478836,514.3089232,117.7389604,111.8213459,5.917614527,193.8074851,0,193.8074851,3.47666029,190.3308249,0.667066926,2.101201863,-0.502071667,0.502071667,0.616013001,0.616013001,0.146877609,3.979075573,127.9807484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.486931,2.518828545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882826707,123.0199634,110.3697577,125.5387919,514.3089232,0,0.603350853,52.88973635,-0.603350853,127.1102637,0.967129478,0,607.7730782,125.5387919,689.9357067,8,10,14% -2018-08-16 19:00:00,29.22212508,141.2942489,886.8748541,876.534575,121.8936592,796.8128413,671.9090884,124.9037529,118.2181156,6.685637268,218.7086198,0,218.7086198,3.675543564,215.0330763,0.510022297,2.466049857,-0.17940024,0.17940024,0.560832938,0.560832938,0.137441781,4.153070006,133.5770075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6357494,2.6629188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.008885082,128.3993004,116.6446345,131.0622192,671.9090884,0,0.766551723,39.95476165,-0.766551723,140.0452384,0.984772829,0,778.3224485,131.0622192,864.1000497,8,11,11% -2018-08-16 20:00:00,24.46801374,172.2236324,930.7633933,885.6632889,124.639188,911.9702842,784.07294,127.8973443,120.8808567,7.016487615,229.4326921,0,229.4326921,3.758331389,225.6743607,0.427047401,3.005869436,0.096347263,-0.096347263,0.513677337,0.513677337,0.133910711,4.061151107,130.6205797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1952773,2.722898298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942290153,125.5574696,119.1375675,128.2803679,784.07294,0,0.885294615,27.71220151,-0.885294615,152.2877985,0.993521626,0,898.13099,128.2803679,982.0879252,8,12,9% -2018-08-16 21:00:00,26.43468124,206.2711321,913.4770858,882.1484514,123.5639084,966.0587351,839.3345583,126.7241768,119.8380007,6.886176127,225.2090031,0,225.2090031,3.725907742,221.4830953,0.461372224,3.600110406,0.359256517,-0.359256517,0.468717207,0.468717207,0.135267661,3.722546908,119.7299047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1928445,2.699407475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696972563,115.0889386,117.8898171,117.7883461,839.3345583,0,0.95146634,17.92385763,-0.95146634,162.0761424,0.997449534,0,955.0836807,117.7883461,1032.173797,8,13,8% -2018-08-16 22:00:00,33.95510152,231.434804,836.2412154,865.104723,118.6580287,952.3551657,830.9711749,121.3839908,115.0800513,6.303939511,206.3343417,0,206.3343417,3.577977366,202.7563643,0.592628319,4.039299334,0.638328188,-0.638328188,0.42099314,0.42099314,0.141894499,3.171833651,102.0170733,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6193226,2.592232422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297982683,98.0626913,112.9173053,100.6549237,830.9711749,0,0.960544028,16.14850821,-0.960544028,163.8514918,0.997946165,0,942.1818027,100.6549237,1008.058437,8,14,7% -2018-08-16 23:00:00,44.21032056,248.0300268,704.6508293,829.8539523,109.8239499,868.5725347,756.7482265,111.8243082,106.5123526,5.311955597,174.162349,0,174.162349,3.311597297,170.8507517,0.771615657,4.328940612,0.97223309,-0.97223309,0.363892039,0.363892039,0.155855844,2.459611706,79.10956731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3837247,2.399240968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.781980308,76.04312518,104.165705,78.44236615,756.7482265,0,0.911905311,24.23000626,-0.911905311,155.7699937,0.995169746,0,857.2586453,78.44236615,908.5976051,8,15,6% -2018-08-16 00:00:00,55.59300388,260.0063022,528.5750147,764.4946081,96.58376669,716.0400231,618.3839916,97.6560315,93.67140977,3.984621732,131.0714889,0,131.0714889,2.912356922,128.1591319,0.970280959,4.537966049,1.437870881,-1.437870881,0.284263287,0.284263287,0.182724805,1.653801864,53.19195286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.04052203,2.109992676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.198173821,51.13012835,91.23869585,53.24012102,618.3839916,0,0.808879468,36.01340359,-0.808879468,143.9865964,0.988186093,0,702.3171566,53.24012102,737.161751,8,16,5% -2018-08-16 01:00:00,67.37259387,269.8045197,322.628107,638.2698255,77.06216874,497.5069832,420.3364162,77.17056698,74.73846003,2.432106949,80.54862852,0,80.54862852,2.323708717,78.2249198,1.175873589,4.708977205,2.257212857,-2.257212857,0.144147557,0.144147557,0.23885758,0.847770221,27.2672045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.84145059,1.683519055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614206639,26.21027412,72.45565723,27.89379318,420.3364162,0,0.658555989,48.81016292,-0.658555989,131.1898371,0.974076311,0,481.895403,27.89379318,500.1513328,8,17,4% -2018-08-16 02:00:00,79.13719985,278.7654963,111.9242728,361.1061218,43.87098699,213.66562,170.2737726,43.39184731,42.54811486,0.843732445,28.46020787,0,28.46020787,1.322872124,27.13733575,1.381204698,4.865375752,4.568072447,-4.568072447,0,0,0.391970266,0.330718031,10.63702872,0.200660387,1,0.215511069,0,0.936781179,0.975543143,0.724496596,1,41.17658285,0.958416351,0.031348211,0.312029739,0.914950055,0.639446651,0.961238037,0.922476074,0.229759496,10.2247166,41.40634234,11.18313295,136.1065716,0,0.471533885,61.8660895,-0.471533885,118.1339105,0.943963082,0,169.8859211,11.18313295,177.2050579,8,18,4% -2018-08-16 03:00:00,90.147677,287.7539867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573373777,5.022254503,-306.754844,306.754844,1,0,#DIV/0!,0,0,1,0.980764911,0,0.003259921,0.961238037,1,0.715294045,0.990797449,0,0,0.115824807,0.3015722,0.724496596,0.448993192,0.962881974,0.92412001,0,0,0,0,0,0,0.267994285,74.45505008,-0.267994285,105.5449499,0.863428857,0,0,0,0,8,19,0% -2018-08-16 04:00:00,101.687023,297.4795266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774773358,5.191997197,-3.267300136,3.267300136,1,0.91110508,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036014089,87.9360984,-0.036014089,92.0639016,0,0,0,0,0,8,20,0% -2018-08-16 05:00:00,111.6256884,308.6464195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948235792,5.386896245,-1.312453597,1.312453597,1,0.754596473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.180882708,100.4211793,0.180882708,79.57882075,0,0.773577778,0,0,0,8,21,0% -2018-08-16 06:00:00,119.9798599,321.9578691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09404359,5.619224868,-0.536880014,0.536880014,1,0.621965579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377804236,112.1977382,0.377804236,67.80226185,0,0.917656328,0,0,0,8,22,0% -2018-08-16 07:00:00,125.951044,337.856604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198260414,5.89671014,-0.051570104,0.051570104,1,0.538972697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541332523,122.7743956,0.541332523,57.2256044,0,0.95763533,0,0,0,8,23,0% -2018-08-17 08:00:00,128.6662987,355.9133141,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245650549,6.211859183,0.342648791,-0.342648791,1,0.471557295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660324566,131.3246307,0.660324566,48.67536928,0,0.974279661,0,0,0,8,0,0% -2018-08-17 09:00:00,127.6039445,14.44758216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22710897,0.252157878,0.734409545,-0.734409545,1,0.404562261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.726671868,136.6081058,0.726671868,43.39189418,0,0.981193153,0,0,0,8,1,0% -2018-08-17 10:00:00,122.9795771,31.4371513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146398534,0.548681798,1.204998778,-1.204998778,1,0.324086762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735853304,137.3793684,0.735853304,42.62063157,0,0.982051674,0,0,0,8,2,0% -2018-08-17 11:00:00,115.5753248,45.88351608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017169952,0.800818428,1.90709392,-1.90709392,1,0.204021422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687243642,133.4123134,0.687243642,46.58768662,0,0.977245598,0,0,0,8,3,0% -2018-08-17 12:00:00,106.2574412,57.93091206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854542204,1.011085154,3.353388639,-3.353388639,1,0,#DIV/0!,0,0,0.04151169,1,0.289809944,0,0.925942238,0.964704202,0.724496596,1,0,0,0.006962995,0.312029739,0.980444468,0.704941064,0.961238037,0.922476074,0,0,0,0,0,0,-0.584156726,125.7434389,0.584156726,54.25656114,0,0.964406532,0,0,0,8,4,0% -2018-08-17 13:00:00,95.70794734,68.22230629,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670418801,1.190703868,9.999851012,-9.999851012,1,0,#DIV/0!,0,0,0.541267895,1,0.099670128,0,0.951263149,0.990025112,0.724496596,1,0,0,0.073661682,0.312029739,0.812437981,0.536934577,0.961238037,0.922476074,0,0,0,0,0,0,-0.433620273,115.6975321,0.433620273,64.30246786,0,0.934691738,0,0,0,8,5,0% -2018-08-17 14:00:00,84.25855692,77.4742288,34.85762044,149.8986513,19.86183947,19.5257032,0,19.5257032,19.26293173,0.262771467,45.53686772,36.48632634,9.050541385,0.598907743,8.451633643,1.470589241,1.352180378,-9.861403779,9.861403779,0,0,0.569799063,0.149726936,4.815732933,1,0.178005435,0,0.101059984,0.961238037,1,0.478164961,0.753668365,18.51626268,0.422006723,0.115824807,0.033206789,0.724496596,0.448993192,0.996939373,0.95817741,0.108476655,4.647554296,18.62473934,5.069561018,0,29.99156193,-0.243406635,104.0876904,0.243406635,75.91230964,0,0.844582428,18.62473934,30.39990721,38.52087061,8,6,107% -2018-08-17 15:00:00,72.64396945,86.38572186,226.9358928,543.6885433,64.74902836,64.50734487,0,64.50734487,62.79660625,1.710738618,74.84707511,17.87141844,56.97565667,1.952422103,55.02323457,1.267876449,1.507715273,-3.069652289,3.069652289,0.944904852,0.944904852,0.285318587,1.643377467,52.85666842,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.36248652,1.414523168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.190621381,50.80784018,61.5531079,52.22236335,0,17.87141844,-0.032870692,91.88369122,0.032870692,88.11630878,0,0,61.5531079,52.22236335,95.73160026,8,7,56% -2018-08-17 16:00:00,60.84318873,95.72979571,439.1800153,719.3712091,88.70126553,225.1193709,135.7820513,89.33731957,86.0265951,3.310724466,109.1589498,0,109.1589498,2.674670429,106.4842794,1.061913971,1.670800127,-1.614740672,1.614740672,0.806290608,0.806290608,0.201970177,2.798933237,90.02331418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.6920354,1.937789621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.027817602,86.53383379,84.719853,88.47162341,135.7820513,0,0.188751023,79.12009572,-0.188751023,100.8799043,0.785100773,0,191.3224465,88.47162341,249.2253545,8,8,30% -2018-08-17 17:00:00,49.24926614,106.5860755,630.3496645,805.8784241,104.2968443,432.5709197,326.667168,105.9037517,101.1519097,4.751842031,155.9805088,0,155.9805088,3.144934671,152.8355741,0.859561848,1.860277954,-0.931859545,0.931859545,0.689511057,0.689511057,0.165458713,3.520564483,113.2334556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.23106308,2.278494464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550636983,108.8443046,99.78170006,111.1227991,326.667168,0,0.405355396,66.08659998,-0.405355396,113.9134,0.926651451,0,402.4883053,111.1227991,475.2159548,8,9,18% -2018-08-17 18:00:00,38.41222361,120.809452,782.7551994,852.2702015,114.9495741,630.4729353,513.0887756,117.3841597,111.4834204,5.90073933,193.2542143,0,193.2542143,3.466153779,189.7880605,0.670419775,2.108522704,-0.501058457,0.501058457,0.615839732,0.615839732,0.146852521,3.96679937,127.5859035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1621041,2.511216614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87393264,122.6404234,110.0360368,125.1516401,513.0887756,0,0.602025947,52.98486634,-0.602025947,127.0151337,0.966947101,0,606.165741,125.1516401,688.0749864,8,10,14% -2018-08-17 19:00:00,29.47144561,141.7148013,884.5705617,876.4394677,121.5414882,795.286556,670.7417256,124.5448304,117.8765638,6.668266538,218.1392982,0,218.1392982,3.664924308,214.4743739,0.514373761,2.473389881,-0.177303259,0.177303259,0.560474333,0.560474333,0.137401688,4.140099313,133.1598254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3074368,2.655225185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999487859,127.9982892,116.3069247,130.6535143,670.7417256,0,0.765302968,40.06604711,-0.765302968,139.9339529,0.984666397,0,776.7637632,130.6535143,862.2738752,8,11,11% -2018-08-17 20:00:00,24.77994207,172.4307249,928.2991198,885.5606641,124.2771061,910.3876917,782.860088,127.5276037,120.5296928,6.99791088,228.8242824,0,228.8242824,3.747413283,225.0768691,0.432491577,3.009483882,0.099372208,-0.099372208,0.513160041,0.513160041,0.133876143,4.047145868,130.1701231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8577253,2.714988167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.932143404,125.1244736,118.7898687,127.8394617,782.860088,0,0.884027622,27.86790336,-0.884027622,152.1320966,0.993440681,0,896.5149279,127.8394617,980.1832989,8,12,9% -2018-08-17 21:00:00,26.75169922,206.1238879,910.7688943,881.9851061,123.1865397,964.3010704,837.9632988,126.3377717,119.472011,6.865760636,224.5409916,0,224.5409916,3.714528682,220.8264629,0.466905232,3.597540512,0.363360153,-0.363360153,0.468015444,0.468015444,0.135255541,3.707299984,119.2395112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8410413,2.691163386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.685926218,114.6175537,117.5269676,117.3087171,837.9632988,0,0.950087811,18.17875271,-0.950087811,161.8212473,0.997373285,0,953.289176,117.3087171,1030.065385,8,13,8% -2018-08-17 22:00:00,34.23555091,231.1455602,833.2231482,864.8074161,118.2594832,950.2975576,829.3228461,120.9747115,114.6935235,6.281188046,205.5905588,0,205.5905588,3.56595975,202.024599,0.597523085,4.034251077,0.643992533,-0.643992533,0.42002448,0.42002448,0.141930146,3.155295085,101.4851362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2477774,2.5835257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286000548,97.55137309,112.5337779,100.1348988,829.3228461,0,0.95896824,16.47001478,-0.95896824,163.5299852,0.99786063,0,940.0823955,100.1348988,1005.618684,8,14,7% -2018-08-17 23:00:00,44.46045661,247.7351686,701.2825698,829.2827,109.3952942,866.0803066,754.6971199,111.3831867,106.0966225,5.286564234,173.33275,0,173.33275,3.298671746,170.0340782,0.775981355,4.323794365,0.98057495,-0.98057495,0.362465497,0.362465497,0.155993174,2.441951396,78.54155106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9841091,2.389876451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.769185474,75.49712635,103.7532946,77.88700281,754.6971199,0,0.910060128,24.48633794,-0.910060128,155.5136621,0.995058575,0,854.7211355,77.88700281,905.6966211,8,15,6% -2018-08-17 00:00:00,55.82717943,259.734952,524.8540894,763.3185464,96.10495319,712.9415504,615.7779443,97.16360608,93.20703426,3.956571825,130.1548695,0,130.1548695,2.897918928,127.2569505,0.974368093,4.533230095,1.45174798,-1.45174798,0.281890163,0.281890163,0.183107944,1.6355747,52.60570462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.59414663,2.099532399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184968303,50.56660423,90.77911493,52.66613663,615.7779443,0,0.806711624,36.22411875,-0.806711624,143.7758812,0.988019983,0,699.1800292,52.66613663,733.6489623,8,16,5% -2018-08-17 01:00:00,67.6018832,269.5564374,318.6325058,635.5320764,76.46937095,493.4975873,416.9320636,76.56552369,74.16353727,2.40198642,79.56197371,0,79.56197371,2.305833676,77.25614004,1.179875442,4.704647353,2.286434132,-2.286434132,0.139150425,0.139150425,0.239992372,0.830481416,26.71113709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.28881297,1.670568649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.601680959,25.67576098,71.89049393,27.34632963,416.9320636,0,0.656036224,49.00173129,-0.656036224,130.9982687,0.973784696,0,477.8925569,27.34632963,495.7901827,8,17,4% -2018-08-17 02:00:00,79.3689404,278.5358582,108.1436012,353.6474863,42.90123984,208.1674914,165.7446501,42.42284132,41.60760917,0.815232146,27.51429881,0,27.51429881,1.29363067,26.22066814,1.385249334,4.86136781,4.680287725,-4.680287725,0,0,0.396706226,0.323407667,10.40190229,0.212736444,1,0.210497,0,0.937469997,0.97623196,0.724496596,1,40.2755781,0.937231017,0.033062143,0.312029739,0.910522441,0.635019037,0.961238037,0.922476074,0.224324824,9.998704139,40.49990292,10.93593516,130.4847226,0,0.46867193,62.05187685,-0.46867193,117.9481232,0.943315565,0,163.5881728,10.93593516,170.7455236,8,18,4% -2018-08-17 03:00:00,90.99314078,287.5394755,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588129903,5.018510577,-45.74095348,45.74095348,1,0,#DIV/0!,0,0,1,0.863988462,0,0.021858764,0.961238037,1,0.664379109,0.939882513,0,0,0.115824807,0.243768159,0.724496596,0.448993192,0.971559409,0.932797446,0,0,0,0,0,0,0.254871149,75.23404973,-0.254871149,104.7659503,0.853822441,0,0,0,0,8,19,0% -2018-08-17 04:00:00,101.9474215,297.2808241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779318169,5.188529183,-3.206111661,3.206111661,1,0.921568926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032472659,88.13912655,-0.032472659,91.86087345,0,0,0,0,0,8,20,0% -2018-08-17 05:00:00,111.9072125,308.4712005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953149315,5.383838097,-1.300348939,1.300348939,1,0.752526455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184667025,100.6417199,0.184667025,79.35828014,0,0.779242403,0,0,0,8,21,0% -2018-08-17 06:00:00,120.2842147,321.8249989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099355585,5.616905845,-0.534125557,0.534125557,1,0.621494539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381752837,112.4422997,0.381752837,67.55770026,0,0.919025204,0,0,0,8,22,0% -2018-08-17 07:00:00,126.2729885,337.7973526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203879406,5.895676008,-0.052373255,0.052373255,1,0.539110044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545355568,123.0489653,0.545355568,56.95103472,0,0.958316697,0,0,0,8,23,0% -2018-08-18 08:00:00,128.9901041,355.9576339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25130202,6.212632709,0.339625871,-0.339625871,1,0.472074245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664327154,131.6307271,0.664327154,48.36927287,0,0.974735878,0,0,0,8,0,0% -2018-08-18 09:00:00,127.9078404,14.59612341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232412954,0.254750412,0.729150001,-0.729150001,1,0.405461696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73056055,136.9334076,0.73056055,43.06659243,0,0.981559403,0,0,0,8,1,0% -2018-08-18 10:00:00,123.2481575,31.65766221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151086146,0.552530439,1.196367935,-1.196367935,1,0.325562723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73954251,137.692459,0.73954251,42.307541,0,0.982390634,0,0,0,8,2,0% -2018-08-18 11:00:00,115.8054583,46.13992652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021186539,0.805293634,1.891348854,-1.891348854,1,0.206713986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690661562,133.6825001,0.690661562,46.31749989,0,0.977605643,0,0,0,8,3,0% -2018-08-18 12:00:00,106.4541599,58.2021936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857975593,1.01581991,3.314362464,-3.314362464,1,0,#DIV/0!,0,0,0.035340934,1,0.293031417,0,0.925445999,0.964207962,0.724496596,1,0,0,0.005944871,0.312029739,0.98328025,0.707776846,0.961238037,0.922476074,0,0,0,0,0,0,-0.587250254,125.9621197,0.587250254,54.03788031,0,0.964857423,0,0,0,8,4,0% -2018-08-18 13:00:00,95.87918721,68.50164876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673407501,1.195579314,9.707979037,-9.707979037,1,0,#DIV/0!,0,0,0.530518306,1,0.102646025,0,0.95092933,0.989691293,0.724496596,1,0,0,0.072494785,0.312029739,0.815074279,0.539570875,0.961238037,0.922476074,0,0,0,0,0,0,-0.436358665,115.8717794,0.436358665,64.12822063,0,0.935415361,0,0,0,8,5,0% -2018-08-18 14:00:00,84.409503,77.76347363,33.06779845,143.7401808,19.06494176,18.73934245,0,18.73934245,18.49006342,0.249279033,43.91390118,35.32135227,8.592548916,0.574878336,8.01767058,1.473223747,1.357228653,-10.12259576,10.12259576,0,0,0.576541005,0.143719584,4.622515855,1,0.207116614,0,0.098469391,0.961238037,1,0.483464218,0.758967622,17.77335226,0.40351072,0.115824807,0.039217211,0.724496596,0.448993192,0.996357112,0.957595149,0.104124349,4.463609457,17.87747661,4.867120177,0,28.00571339,-0.24573054,104.2250105,0.24573054,75.77498952,0,0.846525088,17.87747661,28.57465917,36.57901955,8,6,105% -2018-08-18 15:00:00,72.78931998,86.69188074,224.4402589,541.3217551,64.27067036,64.02459799,0,64.02459799,62.33267251,1.691925476,75.24678537,18.89064828,56.35613709,1.937997845,54.41813925,1.270413294,1.513058754,-3.092315419,3.092315419,0.941029229,0.941029229,0.286359812,1.620722632,52.12801106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.91653576,1.404072841,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.17420803,50.10742701,61.09074379,51.51149986,0,18.89064828,-0.034897264,91.99987201,0.034897264,88.00012799,0,0,61.09074379,51.51149986,94.80399021,8,7,55% -2018-08-18 16:00:00,60.99024491,96.06369119,436.7822717,718.5409088,88.31973272,223.3308749,134.3816587,88.94921617,85.65656691,3.292649262,108.5660845,0,108.5660845,2.663165807,105.9029187,1.064480585,1.676627703,-1.619936748,1.619936748,0.807179189,0.807179189,0.202205397,2.786136408,89.61172417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.33635022,1.929454561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.018546343,86.13819782,84.35489656,88.06765238,134.3816587,0,0.187020192,79.22106316,-0.187020192,100.7789368,0.782649189,0,189.5285928,88.06765238,247.1671099,8,8,30% -2018-08-18 17:00:00,49.41067756,106.960938,628.0509947,805.5393943,103.9407161,430.8666489,325.3256152,105.5410337,100.80652,4.734513688,155.4124311,0,155.4124311,3.134196091,152.278235,0.862379009,1.866820539,-0.932614205,0.932614205,0.689640112,0.689640112,0.165497256,3.508292735,112.838754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.89906141,2.270714399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541746144,108.4649024,99.44080756,110.7356168,325.3256152,0,0.40386059,66.18025446,-0.40386059,113.8197455,0.926194902,0,400.7557338,110.7356168,473.2299802,8,9,18% -2018-08-18 18:00:00,38.60674255,121.2318359,780.4756685,852.1079484,114.5984266,628.8777873,511.8513707,117.0264165,111.1428613,5.883555263,192.6909272,0,192.6909272,3.455565387,189.2353619,0.673814771,2.115894694,-0.499986146,0.499986146,0.615656356,0.615656356,0.146831517,3.954279343,127.1832164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8347458,2.503545359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864861923,122.2533453,109.6996077,124.7568906,511.8513707,0,0.600688412,53.08078252,-0.600688412,126.9192175,0.96676217,0,604.5381495,124.7568906,686.1890393,8,10,14% -2018-08-18 19:00:00,29.7239503,142.1363541,882.2147202,876.3327104,121.1860724,793.7290341,669.5466618,124.1823724,117.5318651,6.65050721,217.55738,0,217.55738,3.65420721,213.9031728,0.518780799,2.480747366,-0.175138676,0.175138676,0.560104167,0.560104167,0.137365734,4.126844433,132.7335029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9760993,2.647460685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989884743,127.5884917,115.9659841,130.2359524,669.5466618,0,0.764032489,40.17900542,-0.764032489,139.8209946,0.984557757,0,775.1733434,130.2359524,860.4101696,8,11,11% -2018-08-18 20:00:00,25.09535943,172.6391457,925.7730603,885.4450787,123.9112049,908.7618297,781.6081364,127.1536933,120.1748249,6.978868377,228.2007767,0,228.2007767,3.736380013,224.4643967,0.437996649,3.01312151,0.102476464,-0.102476464,0.512629182,0.512629182,0.133846199,4.032822234,129.7094258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5166128,2.7069946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.92176598,124.6816338,118.4383788,127.3886284,781.6081364,0,0.882729099,28.02665403,-0.882729099,151.973346,0.993357481,0,894.8546681,127.3886284,978.2279776,8,12,9% -2018-08-18 21:00:00,27.07290421,205.9817904,907.9897445,881.8061393,122.8047466,962.4877292,836.5411886,125.9465406,119.1017303,6.84481023,223.8556421,0,223.8556421,3.70301621,220.1526259,0.472511317,3.595060441,0.367562749,-0.367562749,0.467296758,0.467296758,0.135249046,3.691709812,118.7380777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4851135,2.682822638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.674631192,114.1355567,117.1597446,116.8183794,836.5411886,0,0.948667912,18.43773642,-0.948667912,161.5622636,0.997294518,0,951.4376857,116.8183794,1027.892979,8,13,8% -2018-08-18 22:00:00,34.52077875,230.8597228,830.1267142,864.4895631,117.8558485,948.1719799,827.6120743,120.5599056,114.3020598,6.257845819,204.8276214,0,204.8276214,3.553788673,201.2738327,0.60250125,4.029262272,0.649791711,-0.649791711,0.419032763,0.419032763,0.141973323,3.138401118,100.9417681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8714876,2.574707796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.273760927,97.02906705,112.1452485,99.60377484,827.6120743,0,0.957341892,16.79556,-0.957341892,163.20444,0.997772055,0,937.9134484,99.60377484,1003.102127,8,14,7% -2018-08-18 23:00:00,44.71532394,247.4413849,697.8309894,828.6812749,108.9606921,863.5079437,752.5722738,110.93567,105.6751252,5.260544763,172.4827695,0,172.4827695,3.285566889,169.1972026,0.780429629,4.318666873,0.989124911,-0.989124911,0.361003368,0.361003368,0.156141951,2.42394092,77.96227221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5789499,2.380382026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.756136945,74.94030149,103.3350868,77.32068352,752.5722738,0,0.908156485,24.74817824,-0.908156485,155.2518218,0.994943409,0,852.1019105,77.32068352,902.7067515,8,15,6% -2018-08-18 00:00:00,56.06582776,259.4634399,521.0482649,762.0907828,95.61867262,709.7495436,613.0862448,96.66329876,92.73541684,3.927881912,129.2174401,0,129.2174401,2.883255775,126.3341843,0.978533292,4.528491314,1.466014761,-1.466014761,0.2794504,0.2794504,0.183512122,1.617030371,52.00925524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.14081003,2.088908994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171532999,49.99327441,90.31234303,52.0821834,613.0862448,0,0.804479281,36.44000347,-0.804479281,143.5599965,0.987847995,0,695.948361,52.0821834,730.0351084,8,16,5% -2018-08-18 01:00:00,67.83538213,269.3075879,314.5566371,632.6830521,75.86496155,489.3742727,413.4256588,75.94861385,73.57735305,2.3712608,78.55550699,0,78.55550699,2.287608503,76.26789849,1.183950767,4.700304109,2.316694833,-2.316694833,0.13397554,0.13397554,0.24118061,0.812972176,26.14797975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.7253504,1.657364573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.588995574,25.13443273,71.31434598,26.7917973,413.4256588,0,0.653448291,49.19790442,-0.653448291,130.8020956,0.973482851,0,473.7771352,26.7917973,491.3118306,8,17,4% -2018-08-18 02:00:00,79.60461479,278.3051342,104.3187564,345.9006244,41.9044738,202.5276906,161.1003925,41.42729815,40.6408993,0.78639885,26.55686474,0,26.55686474,1.263574496,25.29329024,1.389362628,4.857340917,4.799289393,-4.799289393,0,0,0.401696447,0.315893624,10.16022483,0.225150459,1,0.205424953,0,0.938161192,0.976923155,0.724496596,1,39.3483513,0.915455421,0.034805508,0.312029739,0.906042542,0.630539138,0.961238037,0.922476074,0.218778086,9.766394565,39.56712939,10.68184999,124.8285651,0,0.465741838,62.24175692,-0.465741838,117.7582431,0.942644388,0,157.2360758,10.68184999,164.227133,8,18,4% -2018-08-18 03:00:00,91.24103492,287.3237021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592456472,5.014744621,-36.70789558,36.70789558,1,0,#DIV/0!,0,0,1,0.827811048,0,0.02723536,0.961238037,1,0.650165758,0.925669162,0,0,0.115824807,0.227654953,0.724496596,0.448993192,0.973852199,0.935090236,0,0,0,0,0,0,0.251566105,75.42979445,-0.251566105,104.5702055,0.851245084,0,0,0,0,8,19,0% -2018-08-18 04:00:00,102.2116841,297.0808004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783930422,5.185038111,-3.146487262,3.146487262,1,0.931765298,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02886657,88.34583761,-0.02886657,91.65416239,0,0,0,0,0,8,20,0% -2018-08-18 05:00:00,112.1926299,308.2948079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958130789,5.380759464,-1.288291574,1.288291574,1,0.750464524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.188509922,100.8658377,0.188509922,79.13416229,0,0.784761972,0,0,0,8,21,0% -2018-08-18 06:00:00,120.592528,321.6915611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104736667,5.614576917,-0.531326825,0.531326825,1,0.621015928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.385752092,112.690439,0.385752092,67.30956101,0,0.920383075,0,0,0,8,22,0% -2018-08-18 07:00:00,126.598852,337.7389645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209566797,5.894656944,-0.053124753,0.053124753,1,0.539238557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549420044,123.3272347,0.549420044,56.67276534,0,0.958994947,0,0,0,8,23,0% -2018-08-19 08:00:00,129.3174348,356.0050073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257015017,6.213459531,0.336656618,-0.336656618,1,0.472582017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668361281,131.9407133,0.668361281,48.05928665,0,0.975190161,0,0,0,8,0,0% -2018-08-19 09:00:00,128.2144299,14.74958495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23776395,0.257428821,0.72395387,-0.72395387,1,0.406350286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734470897,137.2625265,0.734470897,42.73747349,0,0.981923783,0,0,0,8,1,0% -2018-08-19 10:00:00,123.5184743,31.88371123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155804064,0.556475739,1.187831715,-1.187831715,1,0.327022503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743244199,138.0085098,0.743244199,41.99149022,0,0.982727359,0,0,0,8,2,0% -2018-08-19 11:00:00,116.0365907,46.40157674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02522056,0.809860292,1.875803251,-1.875803251,1,0.209372441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69408411,133.9542775,0.69408411,46.04572255,0,0.977962621,0,0,0,8,3,0% -2018-08-19 12:00:00,106.6514513,58.47816809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861418978,1.020636574,3.276088653,-3.276088653,1,0,#DIV/0!,0,0,0.029211479,1,0.296259045,0,0.924946662,0.963708626,0.724496596,1,0,0,0.004927783,0.312029739,0.986121225,0.710617821,0.961238037,0.922476074,0,0,0,0,0,0,-0.590342417,126.1813109,0.590342417,53.81868908,0,0.965303392,0,0,0,8,4,0% -2018-08-19 13:00:00,96.05083498,68.78521949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.67640332,1.200528557,9.431721114,-9.431721114,1,0,#DIV/0!,0,0,0.519869162,1,0.105630557,0,0.95059248,0.989354443,0.724496596,1,0,0,0.071329252,0.312029739,0.817718333,0.542214929,0.961238037,0.922476074,0,0,0,0,0,0,-0.439091977,116.04596,0.439091977,63.95403998,0,0.936128641,0,0,0,8,5,0% -2018-08-19 14:00:00,84.56075057,78.05664235,31.30728638,137.5674777,18.26722628,17.95240955,0,17.95240955,17.716402,0.236007549,42.26468005,34.12304173,8.141638317,0.550824271,7.590814046,1.475863515,1.362345412,-10.39844672,10.39844672,0,0,0.583481623,0.137706068,4.429100501,1,0.235703534,0,0.095873379,0.961238037,1,0.488828632,0.764332036,17.02967948,0.385243691,0.115824807,0.045296435,0.724496596,0.448993192,0.995759419,0.956997456,0.099767577,4.279103644,17.12944706,4.664347335,0,26.08012021,-0.248045849,104.3619056,0.248045849,75.63809435,0,0.848424363,17.12944706,26.7913567,34.6638542,8,6,102% -2018-08-19 15:00:00,72.93531794,87.00180147,221.9331218,538.9110906,63.78906686,63.53861676,0,63.53861676,61.86559114,1.673025617,75.62970723,19.89597668,55.73373055,1.923475722,53.81025483,1.272961439,1.518467891,-3.115318905,3.115318905,0.937095401,0.937095401,0.287424727,1.598033479,51.39824988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.46755938,1.393551613,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.157769816,49.40595282,60.62532919,50.79950443,0,19.89597668,-0.036918848,92.115775,0.036918848,87.884225,0,0,60.62532919,50.79950443,93.87258885,8,7,55% -2018-08-19 16:00:00,61.1383433,96.4012605,434.3630096,717.6912305,87.93603667,221.5400863,132.9812337,88.55885256,85.28444072,3.274411842,107.9679365,0,107.9679365,2.651595955,105.3163406,1.06706539,1.682519399,-1.625130874,1.625130874,0.808067437,0.808067437,0.202448263,2.773177486,89.1949207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97864837,1.921072243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.009157649,85.73755047,83.98780602,87.65862271,132.9812337,0,0.185290314,79.32194117,-0.185290314,100.6780588,0.780153191,0,187.7335399,87.65862271,245.1043553,8,8,31% -2018-08-19 17:00:00,49.57372367,107.3392826,625.721202,805.187089,103.5822705,429.1513546,323.975521,105.1758336,100.4588829,4.716950727,154.8367374,0,154.8367374,3.123387634,151.7133498,0.8652247,1.873423898,-0.933322227,0.933322227,0.689761191,0.689761191,0.165540612,3.495818564,112.4375418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.56489936,2.262883708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.53270865,108.079242,99.09760801,110.3421257,323.975521,0,0.402360551,66.27416889,-0.402360551,113.7258311,0.925733345,0,399.0125506,110.3421257,471.229265,8,9,18% -2018-08-19 18:00:00,38.80368548,121.6569216,778.1546883,851.933983,114.2445307,627.2618199,510.5961245,116.6656953,110.7996366,5.866058734,192.1175075,0,192.1175075,3.444894119,188.6726133,0.677252073,2.12331384,-0.498855104,0.498855104,0.615462937,0.615462937,0.146814679,3.941514103,126.7726424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5048252,2.495814062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85561355,121.8586859,109.3604387,124.3545,510.5961245,0,0.599337665,53.17752386,-0.599337665,126.8224761,0.966574574,0,602.8896703,124.3545,684.2772035,8,10,13% -2018-08-19 19:00:00,29.97961721,142.5586324,879.8068589,876.2141004,120.8273816,792.1395112,668.3231652,123.816346,117.1839903,6.632355734,216.9627503,0,216.9627503,3.643391362,213.319359,0.523243029,2.488117512,-0.172906868,0.172906868,0.559722506,0.559722506,0.137333985,4.113304574,132.2980145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6417088,2.639624639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980075162,127.1698837,115.6217839,129.8095084,668.3231652,0,0.762739569,40.29368888,-0.762739569,139.7063111,0.984446826,0,773.5504023,129.8095084,858.5081294,8,11,11% -2018-08-19 20:00:00,25.41419457,172.8486637,923.1848585,885.3163449,123.5414617,907.0919026,780.3163144,126.7755882,119.8162308,6.959357418,227.5620881,0,227.5620881,3.725230889,223.8368572,0.443561372,3.01677829,0.10565972,-0.10565972,0.512084813,0.512084813,0.133820936,4.018180426,129.2384949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1719185,2.698917098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.91115804,124.2289571,118.0830765,126.9278742,780.3163144,0,0.881398292,28.18849869,-0.881398292,151.8115013,0.993271957,0,893.1493893,126.9278742,976.2211445,8,12,9% -2018-08-19 21:00:00,27.39818541,205.8447062,905.139495,881.6113595,122.4185175,960.6180006,835.0675293,125.5504714,118.7271475,6.823323846,223.1529199,0,223.1529199,3.691369978,219.4615499,0.478188545,3.592667871,0.371864193,-0.371864193,0.466561167,0.466561167,0.135248233,3.675777961,118.2256546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1250502,2.674384983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66308862,113.6429962,116.7881388,116.3173812,835.0675293,0,0.947205955,18.70077257,-0.947205955,161.2992274,0.99721317,0,949.5284766,116.3173812,1025.655876,8,13,8% -2018-08-19 22:00:00,34.81067608,230.5773438,826.9520745,864.1509338,117.447127,945.9779123,825.8383355,120.1395769,113.9056628,6.233914044,204.0455688,0,204.0455688,3.541464214,200.5041046,0.607560912,4.02433383,0.655726135,-0.655726135,0.418017916,0.418017916,0.142024104,3.12115494,100.3870718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4904557,2.565778767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261266129,96.49587178,111.7517218,99.06165055,825.8383355,0,0.95566446,17.12503202,-0.95566446,162.874968,0.997680381,0,935.6744274,99.06165055,1000.508296,8,14,7% -2018-08-19 23:00:00,44.97482866,247.1487746,694.2966217,828.0493168,108.5201592,860.8551897,750.3734125,110.4817772,105.247876,5.233901206,171.6125374,0,171.6125374,3.272283196,168.3402542,0.784958841,4.313559859,0.997884891,-0.997884891,0.359505323,0.359505323,0.1563023,2.405585335,77.37189352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1682617,2.370758036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742838386,74.37280703,102.9111001,76.74356507,750.3734125,0,0.906194109,25.01540733,-0.906194109,154.9845927,0.994824183,0,849.4007174,76.74356507,899.6278458,8,15,6% -2018-08-19 00:00:00,56.30886185,259.1918539,517.1585105,760.8105182,95.12493804,706.464,610.3088705,96.15512948,92.25657018,3.898559301,128.2594362,0,128.2594362,2.868367855,125.3910683,0.982775037,4.523751246,1.480678532,-1.480678532,0.276942748,0.276942748,0.183937683,1.59817627,51.40284255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68052441,2.078122747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.157873267,49.41036746,89.83839768,51.4884902,610.3088705,0,0.802182483,36.66097756,-0.802182483,143.3390224,0.987670043,0,692.6221858,51.4884902,726.3203729,8,16,5% -2018-08-19 01:00:00,68.0730034,269.0580401,310.4020716,629.7201957,75.24885879,485.1370178,409.8172478,75.31976999,72.97982806,2.33994193,77.52960669,0,77.52960669,2.269030731,75.26057596,1.188098041,4.695948678,2.348032263,-2.348032263,0.128616524,0.128616524,0.242423829,0.795254169,25.57810774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15098666,1.643905041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576158938,24.58665007,70.7271456,26.23055512,409.8172478,0,0.650792607,49.39861227,-0.650792607,130.6013877,0.973170608,0,469.549246,26.23055512,486.7166197,8,17,4% -2018-08-19 02:00:00,79.84412594,278.0733751,100.4539554,337.8599122,40.88022642,196.7476235,156.3428224,40.40480111,39.64753676,0.757264348,25.58891417,0,25.58891417,1.232689659,24.35622451,1.393542886,4.853295958,4.925633526,-4.925633526,0,0,0.40695487,0.308172415,9.91188419,0.237908999,1,0.200297299,0,0.938854233,0.977616196,0.724496596,1,38.39445163,0.893079461,0.036577978,0.312029739,0.90151242,0.626009016,0.961238037,0.922476074,0.213117791,9.5276801,38.60756943,10.42075956,119.147458,0,0.462744518,62.43565145,-0.462744518,117.5643486,0.941949017,0,150.8384004,10.42075956,157.6585791,8,18,5% -2018-08-19 03:00:00,91.4927437,287.1066997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596849619,5.010957214,-30.60392238,30.60392238,1,0,#DIV/0!,0,0,1,0.790080579,0,0.032663928,0.961238037,1,0.636045684,0.911549088,0,0,0.115824807,0.211659523,0.724496596,0.448993192,0.976072745,0.937310782,0,0,0,0,0,0,0.248193759,75.62934616,-0.248193759,104.3706538,0.848544491,0,0,0,0,8,19,0% -2018-08-19 04:00:00,102.4797111,296.8794702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788608375,5.181524236,-3.088403835,3.088403835,1,0.941698149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.025197347,88.55614555,-0.025197347,91.44385445,0,0,0,0,0,8,20,0% -2018-08-19 05:00:00,112.4818376,308.1172364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963178416,5.377660258,-1.276290512,1.276290512,1,0.748412222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192409578,101.0934379,0.192409578,78.90656208,0,0.790137676,0,0,0,8,21,0% -2018-08-19 06:00:00,120.9046974,321.5575344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110185051,5.61223771,-0.528487715,0.528487715,1,0.620530412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.389799964,112.9420532,0.389799964,67.05794684,0,0.92172908,0,0,0,8,22,0% -2018-08-19 07:00:00,126.9285361,337.6814197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.215320869,5.893652596,-0.053826235,0.053826235,1,0.539358518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553523786,123.6090969,0.553523786,56.39090308,0,0.959669645,0,0,0,8,23,0% -2018-08-20 08:00:00,129.6481942,356.055436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262787857,6.214339677,0.333740448,-0.333740448,1,0.473080712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672424761,132.254486,0.672424761,47.74551404,0,0.975642238,0,0,0,8,0,0% -2018-08-20 09:00:00,128.5236156,14.90797495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243160259,0.260193248,0.718821111,-0.718821111,1,0.40722804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738400798,137.5953657,0.738400798,42.40463431,0,0.982286097,0,0,0,8,1,0% -2018-08-20 10:00:00,123.7904359,32.11527898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160550689,0.560517358,1.179390215,-1.179390215,1,0.328466084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746956435,138.3274183,0.746956435,41.67258175,0,0.983061692,0,0,0,8,2,0% -2018-08-20 11:00:00,116.2686461,46.66841348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029270691,0.814517472,1.860455988,-1.860455988,1,0.211996978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697509607,134.2275394,0.697509607,45.77246064,0,0.9783164,0,0,0,8,3,0% -2018-08-20 12:00:00,106.8492599,58.75875965,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864871389,1.02553382,3.238550904,-3.238550904,1,0,#DIV/0!,0,0,0.023123767,1,0.29949232,0,0.924444301,0.963206265,0.724496596,1,0,0,0.003911876,0.312029739,0.988966964,0.71346356,0.961238037,0.922476074,0,0,0,0,0,0,-0.593431866,126.4009239,0.593431866,53.59907605,0,0.965744329,0,0,0,8,4,0% -2018-08-20 13:00:00,96.22285546,69.0729293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679405643,1.20555004,9.169881147,-9.169881147,1,0,#DIV/0!,0,0,0.509320059,1,0.108623424,0,0.950252617,0.989014581,0.724496596,1,0,0,0.070165197,0.312029739,0.820369849,0.544866445,0.961238037,0.922476074,0,0,0,0,0,0,-0.44181923,116.2200129,0.44181923,63.77998711,0,0.936831544,0,0,0,8,5,0% -2018-08-20 14:00:00,84.71227373,78.35363552,29.57790551,131.3886383,17.46948544,17.16568674,0,17.16568674,16.942716,0.222970746,40.5916609,32.89338583,7.698275074,0.526769441,7.171505633,1.478508093,1.367528921,-10.69020039,10.69020039,0,0,0.590626183,0.13169236,4.235678999,1,0.263777822,0,0.093272191,0.961238037,1,0.494257994,0.769761398,16.28598306,0.367205557,0.115824807,0.051444659,0.724496596,0.448993192,0.995145997,0.956384034,0.095410667,4.094243662,16.38139373,4.46144922,0,24.21684015,-0.250351828,104.4983325,0.250351828,75.50166746,0,0.850281067,16.38139373,25.0525699,32.77779968,8,6,100% -2018-08-20 15:00:00,73.08196147,87.31537189,219.4146013,536.455664,63.30417135,63.04935696,0,63.04935696,61.39531701,1.654039946,75.99549036,20.88702565,55.10846471,1.908854334,53.19961038,1.275520851,1.523940727,-3.13867215,3.13867215,0.933101761,0.933101761,0.288513941,1.575312335,50.66745978,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.015514,1.382958467,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.141308424,48.70348957,60.15682242,50.08644804,0,20.88702565,-0.038935232,92.23138848,0.038935232,87.76861152,0,0,60.15682242,50.08644804,92.93740093,8,7,54% -2018-08-20 16:00:00,61.28749432,96.74237051,431.9220045,716.8217204,87.55014319,219.7468859,131.580692,88.16619386,84.91018334,3.256010515,107.3644505,0,107.3644505,2.639959843,104.7244906,1.069668566,1.688472892,-1.630323989,1.630323989,0.808955512,0.808955512,0.202698965,2.760055097,88.77285953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.61889795,1.912641919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.999650522,85.33184922,83.61854847,87.24449114,131.580692,0,0.183561251,79.42273823,-0.183561251,100.5772618,0.777611358,0,185.937189,87.24449114,243.0369636,8,8,31% -2018-08-20 17:00:00,49.7384215,107.7209389,623.3598676,804.8211949,103.2214722,427.4245954,322.6164814,104.808114,100.108964,4.69914999,154.2533251,0,154.2533251,3.112508235,151.1408169,0.86809922,1.880085057,-0.933984133,0.933984133,0.689874383,0.689874383,0.165588896,3.483140335,112.0297664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.22854403,2.255001621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523523315,107.6872727,98.75206735,109.9422743,322.6164814,0,0.400854853,66.36836968,-0.400854853,113.6316303,0.925266572,0,397.2583131,109.9422743,469.2133328,8,9,18% -2018-08-20 18:00:00,39.00306317,122.0844786,775.7917575,851.7480587,113.8878515,625.6243605,509.322402,116.3019586,110.4537126,5.848245964,191.5338323,0,191.5338323,3.434138925,188.0996934,0.680731871,2.130776117,-0.497665828,0.497665828,0.615259559,0.615259559,0.14680209,3.928502262,126.3541369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1723099,2.488021961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846186515,121.4564025,109.0184964,123.9444244,509.322402,0,0.59797307,53.27513298,-0.59797307,126.724867,0.966384194,0,601.2196155,123.9444244,682.3387624,8,10,13% -2018-08-20 19:00:00,30.2384247,142.981363,877.346506,876.0834293,120.4653855,790.5171904,667.0704722,123.4467182,116.8329097,6.613808555,216.3552938,0,216.3552938,3.632475843,212.7228179,0.527760072,2.495495553,-0.170608306,0.170608306,0.559329428,0.559329428,0.137306509,4.099479059,131.8533384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3042367,2.631716383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.970058623,126.7424442,115.2742953,129.3741606,667.0704722,0,0.761423456,40.41015219,-0.761423456,139.5898478,0.984333518,0,771.8941197,129.3741606,856.5669203,8,11,11% -2018-08-20 20:00:00,25.73637635,173.0590487,920.5341814,885.1742736,123.1678546,905.3771073,778.9838425,126.3932648,119.4538893,6.939375495,226.9081351,0,226.9081351,3.713965257,223.1941699,0.449184505,3.020450201,0.10892159,-0.10892159,0.511527001,0.511527001,0.133800414,4.00322087,128.7573442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8236221,2.690755186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900319893,123.7664567,117.723942,126.4572119,778.9838425,0,0.880034436,28.35348232,-0.880034436,151.6465177,0.993184041,0,891.3982629,126.4572119,974.161979,8,12,9% -2018-08-20 21:00:00,27.72743112,205.7124909,902.2180515,881.400577,122.0278435,958.6911933,833.5416388,125.1495546,118.3482538,6.801300771,222.4328018,0,222.4328018,3.679589717,218.7532121,0.483934966,3.590360279,0.376264312,-0.376264312,0.465808703,0.465808703,0.135253161,3.65950629,117.7023017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7608431,2.665850224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651299849,113.1399295,116.412143,115.8057797,833.5416388,0,0.945701263,18.96782316,-0.945701263,161.0321768,0.997129181,0,947.5608348,115.8057797,1023.353402,8,13,8% -2018-08-20 22:00:00,35.10513053,230.2984605,823.6994569,863.7913024,117.0333253,943.7148793,824.0011462,119.7137331,113.5043387,6.209394438,203.2444564,0,203.2444564,3.528986563,199.7154698,0.612700112,4.019466398,0.661796167,-0.661796167,0.41697988,0.41697988,0.142082557,3.103560089,99.82116086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1046877,2.556738752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248518719,95.95189671,111.3532064,98.50863546,824.0011462,0,0.953935452,17.45831926,-0.953935452,162.5416807,0.997585552,0,933.3648448,98.50863546,997.8367765,8,14,7% -2018-08-20 23:00:00,45.23887235,246.857426,690.6800829,827.386471,108.0737156,858.1218562,748.1003236,110.0215326,104.8148944,5.206638209,170.7222038,0,170.7222038,3.258821276,167.4633825,0.789567272,4.308474867,1.006856795,-1.006856795,0.357971037,0.357971037,0.156474348,2.38689009,76.77059018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7520633,2.361004921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729293745,73.79481139,102.481357,76.15581631,748.1003236,0,0.904172778,25.28790046,-0.904172778,154.7120995,0.994700835,0,846.6173733,76.15581631,896.4598319,8,15,6% -2018-08-20 00:00:00,56.55619004,258.9202753,513.1858902,759.476952,94.62376724,703.0850013,607.4458778,95.63912354,91.77051153,3.868612011,127.2811162,0,127.2811162,2.853255707,124.4278605,0.987091729,4.519011305,1.495746783,-1.495746783,0.274365925,0.274365925,0.184384974,1.579020204,50.78671762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21330635,2.067174047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143994763,48.81812474,89.35730111,50.88529879,607.4458778,0,0.799821346,36.88695449,-0.799821346,143.1130455,0.98748604,0,689.2016252,50.88529879,722.5050355,8,16,5% -2018-08-20 01:00:00,68.31465529,268.8078577,306.1704877,626.6408941,74.62098194,480.7858861,406.1069597,74.67892647,72.37088401,2.308042464,76.4846774,0,76.4846774,2.250097927,74.23457947,1.192315662,4.691582172,2.380485655,-2.380485655,0.123066667,0.123066667,0.243723628,0.777339562,25.00191242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56564647,1.630188289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.563179867,24.03278921,70.12882634,25.6629775,406.1069597,0,0.648069674,49.60377886,-0.648069674,130.3962211,0.972847802,0,465.2090893,25.6629775,482.0049948,8,17,4% -2018-08-20 02:00:00,80.08737187,277.8406272,96.55370869,329.5201628,39.82805939,190.8291118,151.4741527,39.35495909,38.62709645,0.727862641,24.61152747,0,24.61152747,1.200962941,23.41056453,1.397788328,4.84923374,5.0599395,-5.0599395,0,0,0.412496422,0.300240735,9.656774113,0.251018761,1,0.195116469,0,0.939548591,0.978310554,0.724496596,1,37.41345527,0.870093562,0.038379205,0.312029739,0.896934192,0.621430788,0.961238037,0.922476074,0.207342442,9.282458591,37.62079771,10.15255215,113.4512986,0,0.459680984,62.6334761,-0.459680984,117.3665239,0.941228914,0,144.4044402,10.15255215,151.0490826,8,18,5% -2018-08-20 03:00:00,91.74816821,286.8884971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601307618,5.007148861,-26.20528176,26.20528176,1,0,#DIV/0!,0,0,1,0.750717982,0,0.038141739,0.961238037,1,0.622032896,0.8975363,0,0,0.115824807,0.195797756,0.724496596,0.448993192,0.978219583,0.93945762,0,0,0,0,0,0,0.244755378,75.8326222,-0.244755378,104.1673778,0.845714397,0,0,0,0,8,19,0% -2018-08-20 04:00:00,102.7513989,296.6768437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793350222,5.177987738,-3.031836745,3.031836745,1,0.951371691,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021466602,88.76995982,-0.021466602,91.23004018,0,0,0,0,0,8,20,0% -2018-08-20 05:00:00,112.7747298,307.938476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968290348,5.3745403,-1.264354391,1.264354391,1,0.746371025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.196364099,101.3244215,0.196364099,78.67557852,0,0.79537097,0,0,0,8,21,0% -2018-08-20 06:00:00,121.2206184,321.4228918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115698912,5.609887754,-0.525612157,0.525612157,1,0.620038662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.393894357,113.1970358,0.393894357,66.80296422,0,0.923062411,0,0,0,8,22,0% -2018-08-20 07:00:00,127.261941,337.624692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221139883,5.892662511,-0.054479467,0.054479467,1,0.539470227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557664593,123.8944421,0.557664593,56.10555787,0,0.960340372,0,0,0,8,23,0% -2018-08-21 08:00:00,129.9822858,356.1089162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268618856,6.215273084,0.330876612,-0.330876612,1,0.473570456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676515385,132.5719394,0.676515385,47.4280606,0,0.976091851,0,0,0,8,0,0% -2018-08-21 09:00:00,128.8353012,15.0712968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248600199,0.263043752,0.713751472,-0.713751472,1,0.408094999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742348145,137.9318275,0.742348145,42.06817249,0,0.982646158,0,0,0,8,1,0% -2018-08-21 10:00:00,124.0639526,32.3523413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165324456,0.564654876,1.171043238,-1.171043238,1,0.329893502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750677306,138.6490824,0.750677306,41.35091764,0,0.983393484,0,0,0,8,2,0% -2018-08-21 11:00:00,116.5015516,46.94037915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033335659,0.819264168,1.845305479,-1.845305479,1,0.214587867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700936421,134.5021816,0.700936421,45.49781844,0,0.978666854,0,0,0,8,3,0% -2018-08-21 12:00:00,107.0475338,59.04388886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868331921,1.030510264,3.201732342,-3.201732342,1,0,#DIV/0!,0,0,0.01707806,1,0.302730821,0,0.923938976,0.962700939,0.724496596,1,0,0,0.002897264,0.312029739,0.991817109,0.716313705,0.961238037,0.922476074,0,0,0,0,0,0,-0.596517309,126.6208734,0.596517309,53.37912664,0,0.966180136,0,0,0,8,4,0% -2018-08-21 13:00:00,96.39521731,69.3646862,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682413925,1.210642159,8.921375409,-8.921375409,1,0,#DIV/0!,0,0,0.498870293,1,0.111624404,0,0.949909754,0.988671717,0.724496596,1,0,0,0.069002696,0.312029739,0.823028601,0.547525197,0.961238037,0.922476074,0,0,0,0,0,0,-0.444539515,116.3938808,0.444539515,63.6061192,0,0.937524059,0,0,0,8,5,0% -2018-08-21 14:00:00,84.86404957,78.6543514,27.88147597,125.2122757,16.67256713,16.38001006,0,16.38001006,16.16982772,0.210182343,38.89753322,31.63460715,7.262926065,0.502739414,6.760186651,1.481157082,1.372777403,-10.9992533,10.9992533,0,0,0.597980076,0.125684854,4.04245693,1,0.291351475,0,0.090666008,0.961238037,1,0.499752214,0.775255618,15.54305345,0.349397505,0.115824807,0.057662208,0.724496596,0.448993192,0.994516533,0.955754569,0.091058249,3.909249584,15.6341117,4.258647089,0,22.41781768,-0.252647809,104.6342514,0.252647809,75.3657486,0,0.852096048,15.6341117,23.36078093,30.92327561,8,6,98% -2018-08-21 15:00:00,73.22925214,87.63247777,216.884758,533.9544874,62.81592654,62.55676351,0,62.55676351,60.92179459,1.634968919,76.34380169,21.86344915,54.48035254,1.894131951,52.58622059,1.278091559,1.529475269,-3.162385796,3.162385796,0.929046489,0.929046489,0.289628128,1.552560961,49.93569741,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56034624,1.372292151,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.124825131,48.00009174,59.68517137,49.3723839,0,21.86344915,-0.040946278,92.346705,0.040946278,87.653295,0,0,59.68517137,49.3723839,91.99840918,8,7,54% -2018-08-21 16:00:00,61.43771143,97.08688609,429.4589789,715.9318808,87.16201254,217.9510943,130.1798948,87.77119946,84.53375627,3.237443187,106.7555578,0,106.7555578,2.628256272,104.1273015,1.072290349,1.694485823,-1.635517377,1.635517377,0.809843633,0.809843633,0.202957714,2.74676767,88.34549021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25706192,1.904162722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990023826,84.92104557,83.24708575,86.8252083,130.1798948,0,0.181832795,79.52346685,-0.181832795,100.4765332,0.7750221,0,184.1393812,86.8252083,240.9647436,8,8,31% -2018-08-21 17:00:00,49.9047903,108.1057345,620.9665352,804.4413775,102.858283,425.6858737,321.2480394,104.4378343,99.75672622,4.68110804,153.6620825,0,153.6620825,3.101556738,150.5605258,0.871002903,1.886801008,-0.934600618,0.934600618,0.689979808,0.689979808,0.165642232,3.470256332,111.6153726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.88995968,2.247067299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.514188899,107.2889416,98.40414858,109.5360089,321.2480394,0,0.399343008,66.46288684,-0.399343008,113.5371132,0.924794352,0,395.4925211,109.5360089,467.1816482,8,9,18% -2018-08-21 18:00:00,39.20488739,122.5142753,773.3863572,851.5499186,113.5283528,623.9646937,508.0295266,115.9351671,110.1050541,5.83011304,190.939775,0,190.939775,3.423298712,187.5164763,0.684254368,2.138277485,-0.496418926,0.496418926,0.615046326,0.615046326,0.14679384,3.915242458,125.927656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.837166,2.480168263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.836579833,121.0464529,108.6737459,123.5266211,508.0295266,0,0.596593947,53.37365546,-0.596593947,126.6263445,0.966190903,0,599.5272529,123.5266211,680.3729559,8,10,13% -2018-08-21 19:00:00,30.50035094,143.4042757,874.8331941,875.9404838,120.1000535,788.8612515,665.7877956,123.073456,116.4785938,6.594862148,215.7348961,0,215.7348961,3.621459736,212.1134364,0.532331547,2.502876773,-0.16824354,0.16824354,0.558925029,0.558925029,0.137283375,4.085367331,131.3994567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9636548,2.623735251,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.959834724,126.3061558,114.9234896,128.9298911,665.7877956,0,0.760083371,40.52845177,-0.760083371,139.4715482,0.984217743,0,770.2036508,128.9298911,854.5856859,8,11,11% -2018-08-21 20:00:00,26.06183362,173.2700729,917.820722,885.0186746,122.7903632,903.6166396,777.6099386,126.006701,119.0877807,6.918920292,226.2388427,0,226.2388427,3.7025825,222.5362602,0.454864806,3.024133267,0.112261627,-0.112261627,0.510955821,0.510955821,0.133784693,3.987944201,128.265994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4717046,2.682508417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.889251998,123.2941522,117.3609566,125.9766607,777.6099386,0,0.878636757,28.52164897,-0.878636757,151.478351,0.993093662,0,889.6004583,125.9766607,972.0496632,8,12,9% -2018-08-21 21:00:00,28.06052908,205.5849914,899.2253652,881.1736036,121.6327181,956.7066377,831.9628542,124.7437835,117.9650428,6.778740638,221.6952759,0,221.6952759,3.667675227,218.0276007,0.489748622,3.588134992,0.380762878,-0.380762878,0.465039403,0.465039403,0.135263887,3.642896929,117.1680876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3924862,2.657218216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.639266424,112.6264225,116.0317526,115.2836407,831.9628542,0,0.944153173,19.23884796,-0.944153173,160.761152,0.997042491,0,945.5340693,115.2836407,1020.984907,8,13,8% -2018-08-21 22:00:00,35.40402693,230.0230962,820.3691524,863.4104465,116.6144528,941.38245,822.100064,119.282386,113.0980968,6.184289196,202.4243549,0,202.4243549,3.516356013,198.9079989,0.617916838,4.014660385,0.66800213,-0.66800213,0.415918597,0.415918597,0.142148754,3.085620427,99.24415968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7141925,2.547587961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235521495,95.39726122,110.949714,97.94484918,822.100064,0,0.95215441,17.79531052,-0.95215441,162.2046895,0.997487509,0,930.9842589,97.94484918,995.0872038,8,14,7% -2018-08-21 23:00:00,45.50735269,246.567418,686.9820658,826.6923863,107.6213858,855.3078187,745.7528537,109.5549649,104.376204,5.178760994,169.8119373,0,169.8119373,3.245181863,166.5667554,0.794253138,4.303413273,1.016042527,-1.016042527,0.356400184,0.356400184,0.156658217,2.367860985,76.15854874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3303774,2.351123213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715507223,73.20649388,102.0458846,75.55761709,745.7528537,0,0.902092321,25.56552882,-0.902092321,154.4344712,0.994573301,0,843.7517617,75.55761709,893.2027109,8,15,6% -2018-08-21 00:00:00,56.80771666,258.6487786,509.1315534,758.0892783,94.11518209,699.6127063,604.4973955,95.11531081,91.2772621,3.838048708,126.2827596,0,126.2827596,2.837919988,123.4448396,0.991481696,4.514272793,1.511227217,-1.511227217,0.271718615,0.271718615,0.184854349,1.559570354,50.16114356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73917623,2.056063371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.129903412,48.21679916,88.86907964,50.27286253,604.4973955,0,0.797396049,37.11784209,-0.797396049,142.8821579,0.987295902,0,685.686881,50.27286253,718.5894641,8,16,5% -2018-08-21 01:00:00,68.56024216,268.5570996,301.863663,623.4424701,73.98125012,476.3210158,402.2949975,74.02601827,71.75044247,2.2755758,75.42114761,0,75.42114761,2.230807653,73.19033996,1.196601962,4.687205617,2.414096345,-2.414096345,0.117318901,0.117318901,0.245081668,0.759240989,24.41980008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.96925446,1.616212551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.550067512,23.47324069,69.51932197,25.08945324,402.2949975,0,0.645280065,49.81332298,-0.645280065,130.186677,0.972514265,0,460.7569459,25.08945324,477.1774912,8,17,4% -2018-08-21 02:00:00,80.33424629,277.6069325,92.62282832,320.8767341,38.74756554,184.7744364,146.4970229,38.27741348,37.57918347,0.698230004,23.62585914,0,23.62585914,1.168382064,22.45747708,1.4020971,4.845154998,5.202899395,-5.202899395,0,0,0.418337102,0.292095516,9.394795868,0.264486585,1,0.189884941,0,0.940243737,0.9790057,0.724496596,1,36.40497233,0.846488828,0.040208821,0.312029739,0.892310029,0.616806624,0.961238037,0.922476074,0.20145056,9.030635137,36.60642289,9.877123965,107.7505256,0,0.456552337,62.83514111,-0.456552337,117.1648589,0.940483531,0,137.9440176,9.877123965,144.4083977,8,18,5% -2018-08-21 03:00:00,92.00720627,286.6691196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605828685,5.00332,-22.8865401,22.8865401,1,0,#DIV/0!,0,0,1,0.709638482,0,0.04366603,0.961238037,1,0.608141082,0.883644486,0,0,0.115824807,0.180084606,0.724496596,0.448993192,0.980291622,0.941529659,0,0,0,0,0,0,0.241252307,76.03953568,-0.241252307,103.9604643,0.842748096,0,0,0,0,8,19,0% -2018-08-21 04:00:00,103.0266412,296.4729274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798154107,5.174428726,-2.976759952,2.976759952,1,0.960790378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017676019,88.987186,-0.017676019,91.012814,0,0,0,0,0,8,20,0% -2018-08-21 05:00:00,113.0711979,307.7585122,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973464693,5.371399339,-1.252491433,1.252491433,1,0.744342339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200371528,101.5586858,0.200371528,78.44131417,0,0.800463549,0,0,0,8,21,0% -2018-08-21 06:00:00,121.5401845,321.2876013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121276394,5.607526489,-0.522704082,0.522704082,1,0.619541352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398033127,113.4552772,0.398033127,66.54472282,0,0.924382315,0,0,0,8,22,0% -2018-08-21 07:00:00,127.5989664,337.5687499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227022085,5.891686138,-0.055086309,0.055086309,1,0.539574003,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561840229,124.1831576,0.561840229,55.81684241,0,0.961006729,0,0,0,8,23,0% -2018-08-22 08:00:00,130.3196132,356.1654398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27450633,6.216259607,0.328064221,-0.328064221,1,0.474051404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680630935,132.8929662,0.680630935,47.10703377,0,0.976538749,0,0,0,8,0,0% -2018-08-22 09:00:00,129.1493914,15.23954983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254082107,0.265980321,0.708744514,-0.708744514,1,0.408951239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746310837,138.2718138,0.746310837,41.7281862,0,0.983003787,0,0,0,8,1,0% -2018-08-22 10:00:00,124.3389369,32.59486989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170123837,0.568887799,1.16279033,-1.16279033,1,0.331304832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754404925,138.9734005,0.754404925,41.02659946,0,0.983722596,0,0,0,8,2,0% -2018-08-22 11:00:00,116.7352372,47.21741237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037414243,0.82409931,1.830349745,-1.830349745,1,0.217145448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704362958,134.7781014,0.704362958,45.22189863,0,0.979013871,0,0,0,8,3,0% -2018-08-22 12:00:00,107.2462245,59.33347327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871799728,1.035564465,3.165615702,-3.165615702,1,0,#DIV/0!,0,0,0.011074461,1,0.305974202,0,0.923430734,0.962192697,0.724496596,1,0,0,0.001884039,0.312029739,0.994671372,0.719167968,0.961238037,0.922476074,0,0,0,0,0,0,-0.599597507,126.8410766,0.599597507,53.15892336,0,0.966610727,0,0,0,8,4,0% -2018-08-22 13:00:00,96.56789258,69.66039588,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685427677,1.215803266,8.685220486,-8.685220486,1,0,#DIV/0!,0,0,0.488518909,1,0.114633347,0,0.949563893,0.988325856,0.724496596,1,0,0,0.0678418,0.312029739,0.825694429,0.550191025,0.961238037,0.922476074,0,0,0,0,0,0,-0.447251983,116.5675102,0.447251983,63.43248976,0,0.938206197,0,0,0,8,5,0% -2018-08-22 14:00:00,85.01605757,78.95868638,26.21982455,119.0475721,15.87738241,15.59627686,0,15.59627686,15.39862075,0.197656113,37.1852371,30.34917542,6.836061686,0.478761661,6.357300025,1.483810122,1.37808905,-11.32717759,11.32717759,0,0,0.605548766,0.119690415,3.849655186,1,0.318436696,0,0.088054954,0.961238037,1,0.505311297,0.780814701,14.80173998,0.331822194,0.115824807,0.06394952,0.724496596,0.448993192,0.993870699,0.955108736,0.086715298,3.724356483,14.88845527,4.056178677,0,20.68488429,-0.254933174,104.7696254,0.254933174,75.23037456,0,0.85387017,14.88845527,21.71838435,29.10270346,8,6,95% -2018-08-22 15:00:00,73.37719451,87.95300325,214.3436037,531.4064788,62.32426562,62.06077168,0,62.06077168,60.44495906,1.615812624,76.67432136,22.8249265,53.84939486,1.879306561,51.9700883,1.28067364,1.535069494,-3.186471704,3.186471704,0.924927556,0.924927556,0.290768022,1.529780655,49.20300445,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.10199379,1.361551206,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.108320877,47.29579941,59.21031466,48.65735061,0,22.8249265,-0.042951916,92.46172084,0.042951916,87.53827916,0,0,59.21031466,48.65735061,91.05557749,8,7,54% -2018-08-22 16:00:00,61.58901053,97.43467053,426.9736121,715.0211744,86.77160032,216.1524817,128.7786578,87.37382386,84.15511641,3.218707442,106.1411795,0,106.1411795,2.616483903,103.5246956,1.074931017,1.700555806,-1.640712635,1.640712635,0.810732075,0.810732075,0.203224738,2.733313483,87.91275732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.89309889,1.895633681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.980276314,84.50508626,82.87337521,86.40071994,128.7786578,0,0.180104677,79.62414298,-0.180104677,100.375857,0.772383667,0,182.3399072,86.40071994,238.8874504,8,8,31% -2018-08-22 17:00:00,50.07285093,108.4934957,618.5407204,804.0472839,102.4926619,423.934645,319.8696938,104.0649512,99.40212994,4.662821223,153.0628908,0,153.0628908,3.090531912,149.9723589,0.873936115,1.893568717,-0.935172533,0.935172533,0.690077611,0.690077611,0.165700751,3.45716479,111.1943036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.54910824,2.23907985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.504704122,106.8841941,98.05381236,109.1232739,319.8696938,0,0.397824482,66.55775342,-0.397824482,113.4422466,0.924316433,0,393.7146267,109.1232739,465.133627,8,9,18% -2018-08-22 18:00:00,39.40917036,122.9460803,770.9379579,851.3392966,113.1659974,622.2820701,506.7167891,115.565281,109.753625,5.811655972,190.3352059,0,190.3352059,3.412372358,186.9228335,0.687819778,2.145813903,-0.495115102,0.495115102,0.614823359,0.614823359,0.146790019,3.901733375,125.4931575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.499359,2.472252158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826792548,120.6287963,108.3261516,123.1010485,506.7167891,0,0.595199577,53.47313921,-0.595199577,126.5268608,0.965994564,0,597.8118153,123.1010485,678.3789895,8,10,13% -2018-08-22 19:00:00,30.76537357,143.8271044,872.2664639,875.7850467,119.7313555,787.1708576,664.4743311,122.6965265,116.1210134,6.575513052,215.101445,0,215.101445,3.610342131,211.4911029,0.536957064,2.510256526,-0.165813187,0.165813187,0.558509415,0.558509415,0.137264655,4.07096896,130.9363556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.619935,2.615680584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949403153,125.8610054,114.5693381,128.476686,664.4743311,0,0.758718516,40.64864502,-0.758718516,139.351355,0.984099407,0,768.4781335,128.476686,852.5635549,8,11,11% -2018-08-22 20:00:00,26.39049507,173.4815123,915.0442005,884.8493569,122.4089685,901.8096985,776.1938223,125.6158762,118.7178865,6.8979897,225.5541425,0,225.5541425,3.691082042,221.8630604,0.46060103,3.027823581,0.115679328,-0.115679328,0.510371359,0.510371359,0.133773831,3.972351251,127.7644711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1161482,2.674176375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.877954959,122.8120694,116.9941031,125.4862457,776.1938223,0,0.877204483,28.69304117,-0.877204483,151.3069588,0.993000747,0,887.7551487,125.4862457,969.8833868,8,12,9% -2018-08-22 21:00:00,28.3973667,205.4620475,896.1614323,880.9302526,121.2331369,954.6636882,830.3305343,124.3331539,117.5775105,6.755643417,220.940341,0,220.940341,3.65562638,217.2847147,0.495627548,3.585989217,0.385359624,-0.385359624,0.464253313,0.464253313,0.135280467,3.625952267,116.623089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0199754,2.648488868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.626990074,112.1025491,115.6469654,114.751038,830.3305343,0,0.942561039,19.51380436,-0.942561039,160.4861956,0.996953038,0,943.4475138,114.751038,1018.549773,8,13,8% -2018-08-22 22:00:00,35.70724782,229.7512623,816.9615114,863.0081463,116.1905225,938.980237,820.1346865,118.8455505,112.6869495,6.158600959,201.5853498,0,201.5853498,3.50357295,198.0817769,0.623209041,4.009915988,0.674344321,-0.674344321,0.414834019,0.414834019,0.142222762,3.067340112,98.65620193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3189821,2.538326676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.22227747,94.83209386,110.5412596,97.37042054,820.1346865,0,0.95032091,18.13589521,-0.95032091,161.8641048,0.997386194,0,928.5322732,97.37042054,992.259266,8,14,7% -2018-08-22 23:00:00,45.78016409,246.2788203,683.2033335,825.9667135,107.1631977,852.413013,743.3309058,109.0821072,103.9318319,5.150275314,168.8819238,0,168.8819238,3.2313658,165.650558,0.799014595,4.298376292,1.025444011,-1.025444011,0.354792436,0.354792436,0.156854032,2.348504138,75.53596599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.90323003,2.341113522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701483253,72.60804366,101.6047133,74.94915719,743.3309058,0,0.899952618,25.84816027,-0.899952618,154.1518397,0.994441519,0,840.8038288,74.94915719,889.8565531,8,15,6% -2018-08-22 00:00:00,57.06334255,258.3774322,504.9967276,756.6466832,93.59920792,696.047344,601.4636189,94.5837251,90.77684646,3.806878644,125.2646647,0,125.2646647,2.822361463,122.4423032,0.99594321,4.509536906,1.527127777,-1.527127777,0.268999459,0.268999459,0.185346167,1.539835235,49.5263943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.25815768,2.044791272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115605386,47.60665403,88.37376307,49.6514453,601.4636189,0,0.794906833,37.3535433,-0.794906833,142.6464567,0.987099547,0,682.0782287,49.6514453,714.5741066,8,16,5% -2018-08-22 01:00:00,68.80966508,268.30582,297.4834651,620.1221737,73.32958131,471.7426102,398.3816304,73.36097989,71.11842387,2.242556018,74.33946769,0,74.33946769,2.211157434,72.12831026,1.200955213,4.682819962,2.448907957,-2.448907957,0.111365764,0.111365764,0.246499688,0.740971514,23.83219097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36173415,1.601976034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53683134,22.90840846,68.89856549,24.51038449,398.3816304,0,0.642424424,50.02715882,-0.642424424,129.9728412,0.972169833,0,456.1931687,24.51038449,472.2347251,8,17,4% -2018-08-22 02:00:00,80.58463892,277.3723295,88.66643937,311.9256602,37.63837783,178.5863912,141.4145443,37.17184694,36.50344187,0.668405073,22.63314073,0,22.63314073,1.134935962,21.49820477,1.406467276,4.841060404,5.355289067,-5.355289067,0,0,0.424494071,0.283733991,9.125860467,0.278319471,1,0.184605237,0,0.940939146,0.979701109,0.724496596,1,35.36865572,0.822257241,0.042066437,0.312029739,0.887642146,0.612138742,0.961238037,0.922476074,0.195440712,8.7721242,35.56409644,9.594381441,102.0561231,0,0.453359766,63.04055175,-0.453359766,116.9594483,0.939712313,0,131.4674919,9.594381441,137.7468227,8,18,5% -2018-08-22 03:00:00,92.26975291,286.4485887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610410988,4.999471011,-20.29474471,20.29474471,1,0,#DIV/0!,0,0,1,0.666751027,0,0.04923402,0.961238037,1,0.59438356,0.869886964,0,0,0.115824807,0.164534034,0.724496596,0.448993192,0.982288135,0.943526172,0,0,0,0,0,0,0.23768596,76.24999602,-0.23768596,103.750004,0.839638395,0,0,0,0,8,19,0% -2018-08-22 04:00:00,103.3053293,296.267724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803018131,5.170847252,-2.923146162,2.923146162,1,0.969958876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013827344,89.2077263,-0.013827344,90.7922737,0,0,0,0,0,8,20,0% -2018-08-22 05:00:00,113.3711315,307.5773266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978699521,5.368237053,-1.24070942,1.24070942,1,0.742327496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204429855,101.7961254,0.204429855,78.20387463,0,0.805417329,0,0,0,8,21,0% -2018-08-22 06:00:00,121.863288,321.151626,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126915613,5.605153272,-0.519767392,0.519767392,1,0.619039149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.402214087,113.7166649,0.402214087,66.28333506,0,0.925688094,0,0,0,8,22,0% -2018-08-22 07:00:00,127.9395109,337.5135571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232965709,5.890722842,-0.055648699,0.055648699,1,0.539670178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566048436,124.4751283,0.566048436,55.52487173,0,0.961668336,0,0,0,8,23,0% -2018-08-23 08:00:00,130.6600803,356.2249945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280448603,6.217299032,0.325302263,-0.325302263,1,0.474523726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684769184,133.2174575,0.684769184,46.78254254,0,0.976982695,0,0,0,8,0,0% -2018-08-23 09:00:00,129.4657919,15.41272991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259604337,0.269002884,0.703799642,-0.703799642,1,0.409796862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750286783,138.615226,0.750286783,41.38477399,0,0.983358815,0,0,0,8,1,0% -2018-08-23 10:00:00,124.615303,32.84283282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174947335,0.573215568,1.154630815,-1.154630815,1,0.332700191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758137429,139.3002717,0.758137429,40.69972828,0,0.984048897,0,0,0,8,2,0% -2018-08-23 11:00:00,116.9696354,47.49944848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041505263,0.829021769,1.815586472,-1.815586472,1,0.219670117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707787665,135.0551976,0.707787665,44.94480241,0,0.979357345,0,0,0,8,3,0% -2018-08-23 12:00:00,107.4452864,59.62742788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875274013,1.040694941,3.130183475,-3.130183475,1,0,#DIV/0!,0,0,0.005112934,1,0.309222184,0,0.922919617,0.96168158,0.724496596,1,0,0,0.000872268,0.312029739,0.997529526,0.722026122,0.961238037,0.922476074,0,0,0,0,0,0,-0.602671272,127.061454,0.602671272,52.93854604,0,0.967036032,0,0,0,8,4,0% -2018-08-23 13:00:00,96.74085636,69.95996209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688446465,1.221031683,8.460522529,-8.460522529,1,0,#DIV/0!,0,0,0.478264737,1,0.117650166,0,0.949215031,0.987976994,0.724496596,1,0,0,0.066682532,0.312029739,0.828367228,0.552863824,0.961238037,0.922476074,0,0,0,0,0,0,-0.449955845,116.740851,0.449955845,63.25914896,0,0.938877985,0,0,0,8,5,0% -2018-08-23 14:00:00,85.16827918,79.26653534,24.59478964,112.904324,15.08491245,14.8154526,0,14.8154526,14.63004668,0.185405913,35.45797925,29.03982199,6.418157265,0.454865768,5.963291498,1.48646689,1.383462028,-11.67574827,11.67574827,0,0,0.61333773,0.113716442,3.657511671,1,0.345045765,0,0.085439109,0.961238037,1,0.51093534,0.786438744,14.06295735,0.31448394,0.115824807,0.070307129,0.724496596,0.448993192,0.993208154,0.954446191,0.082387175,3.539816026,14.14534453,3.854299966,0,19.01975438,-0.25720735,104.9044205,0.25720735,75.09557952,0,0.855604311,14.14534453,20.12768381,27.31851103,8,6,93% -2018-08-23 15:00:00,73.52579565,88.27683116,211.7911083,528.8104661,61.82911296,61.56130792,0,61.56130792,59.96473708,1.596570835,76.98673943,23.77115731,53.21558212,1.864375881,51.35120624,1.283267219,1.540721357,-3.210942941,3.210942941,0.920742728,0.920742728,0.291934413,1.506972323,48.46941009,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.64038615,1.350733979,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091796318,46.5906406,58.73218247,47.94137458,0,23.77115731,-0.044952131,92.57643558,0.044952131,87.42356442,0,0,58.73218247,47.94137458,90.10885331,8,7,53% -2018-08-23 16:00:00,61.74140954,97.78558593,424.4655472,714.0890274,86.37885799,214.3507748,127.3767575,86.97401731,83.77421672,3.19980059,105.5212275,0,105.5212275,2.604641273,102.9165862,1.077590881,1.706680435,-1.64591165,1.64591165,0.811621159,0.811621159,0.203500281,2.719690689,87.47460143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.52696362,1.887053735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970406646,84.08391415,82.49737026,85.97096789,127.3767575,0,0.178376579,79.72478564,-0.178376579,100.2752144,0.769694141,0,180.5385143,85.97096789,236.8047933,8,8,31% -2018-08-23 17:00:00,50.24262553,108.8840477,616.0819158,803.6385442,102.124566,422.1703256,318.4809063,103.6894193,99.04513358,4.644285715,152.4556257,0,152.4556257,3.079432466,149.3761932,0.87689924,1.900385136,-0.935700867,0.935700867,0.690167962,0.690167962,0.16576459,3.443863916,110.7665017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.20594976,2.231038339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.495067684,106.4729747,97.70101745,108.704013,318.4809063,0,0.396298695,66.65300501,-0.396298695,113.346995,0.923832539,0,391.9240419,108.704013,463.0686443,8,9,18% -2018-08-23 18:00:00,39.61592437,123.3796623,768.4460238,851.1159185,112.8007473,620.5757126,505.3834533,115.1922593,109.3993886,5.79287072,189.719994,0,189.719994,3.401358721,186.3186352,0.691428316,2.153381338,-0.493755144,0.493755144,0.614590792,0.614590792,0.146790723,3.887973747,125.0506005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1588535,2.464272815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.816823745,120.2033938,107.9756773,122.6676666,505.3834533,0,0.593789215,53.57363395,-0.593789215,126.426366,0.965795035,0,596.0725073,122.6676666,676.3560418,8,10,13% -2018-08-23 19:00:00,31.03346943,144.2495881,869.6458676,875.6168974,119.3592617,785.4451604,663.1292629,122.3158975,115.7601396,6.55575789,214.4548311,0,214.4548311,3.59912213,210.855709,0.54163622,2.517630257,-0.163317924,0.163317924,0.558082699,0.558082699,0.137250421,4.056283644,130.4640254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2730493,2.607551732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.938763692,125.4069836,114.211813,128.0145354,663.1292629,0,0.757328079,40.77078991,-0.757328079,139.2292101,0.983978415,0,766.7166942,128.0145354,850.4996474,8,11,11% -2018-08-23 20:00:00,26.7222893,173.6931482,912.2043656,884.6661287,122.0236529,899.9554902,774.7347189,125.2207713,118.3441895,6.876581825,224.8539729,0,224.8539729,3.679463353,221.1745096,0.466391932,3.031517324,0.11917415,-0.11917415,0.50977371,0.50977371,0.13376789,3.956443044,127.2528085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7569364,2.665758674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866429517,122.3202398,116.6233659,124.9859985,774.7347189,0,0.875736839,28.86769945,-0.875736839,151.1323005,0.992905222,0,885.8615143,124.9859985,967.6623506,8,12,9% -2018-08-23 21:00:00,28.73783136,205.343494,893.0262925,880.6703379,120.829098,952.5617251,828.6440608,123.9176643,117.1856549,6.732009409,220.1680068,0,220.1680068,3.643443117,216.5245637,0.501569777,3.583920067,0.390054248,-0.390054248,0.463450485,0.463450485,0.135302957,3.608674933,116.0673906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6433089,2.639662135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614472705,111.5683907,115.2577816,114.2080528,828.6440608,0,0.940924231,19.79264723,-0.940924231,160.2073528,0.996860758,0,941.3005286,114.2080528,1016.047415,8,13,8% -2018-08-23 22:00:00,36.01467391,229.4829586,813.4769407,862.584184,115.7615501,936.5078962,818.1046511,118.4032451,112.2709123,6.132332793,200.7275402,0,200.7275402,3.49063785,197.2369024,0.628574639,4.005233205,0.680823018,-0.680823018,0.413726097,0.413726097,0.142304648,3.048723579,98.05743021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9190713,2.52895524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208789854,94.25653171,110.1278611,96.78548695,818.1046511,0,0.94843456,18.47996339,-0.94843456,161.5200366,0.99728155,0,926.0085356,96.78548695,989.3527011,8,14,7% -2018-08-23 23:00:00,46.05719812,245.9916942,679.3447147,825.2091042,106.6991825,849.4374323,740.8344364,108.6029959,103.4818085,5.121187416,167.9323653,0,167.9323653,3.217374032,164.7149913,0.803849751,4.293364996,1.035063198,-1.035063198,0.353147458,0.353147458,0.157061916,2.32882596,74.90304817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47065047,2.330976534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687226481,71.99965897,101.1578769,74.33063551,740.8344364,0,0.897753591,26.13565998,-0.897753591,153.86434,0.99430543,0,837.77358,74.33063551,886.4214943,8,15,6% -2018-08-23 00:00:00,57.3229656,258.1062988,500.7827118,755.1483419,93.07587303,692.3892086,598.344805,94.04440366,90.26929204,3.775111613,124.2271473,0,124.2271473,2.806580985,121.4205663,1.000474487,4.504804735,1.543456671,-1.543456671,0.266207054,0.266207054,0.185860795,1.519823672,48.88275366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.77027707,2.03335837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101107077,46.98796216,87.87138415,49.02132053,598.344805,0,0.792353994,37.5939567,-0.792353994,142.4060433,0.986896892,0,678.3760123,49.02132053,710.4594862,8,16,5% -2018-08-23 01:00:00,69.06282221,268.054069,293.0318455,616.6771762,72.66589137,467.050931,394.3671866,72.68374446,70.47474663,2.208997829,73.24010829,0,73.24010829,2.191144733,71.04896356,1.205373638,4.678426077,2.484966583,-2.484966583,0.105199376,0.105199376,0.247979503,0.722544612,23.23951845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.7430071,1.5874769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523481112,22.33870909,68.26648821,23.92618599,394.3671866,0,0.639503458,50.24519644,-0.639503458,129.7548036,0.97181434,0,451.5181753,23.92618599,467.1773855,8,17,3% -2018-08-23 02:00:00,80.8384359,277.1368531,84.68999474,302.6638113,36.50018106,172.2683504,136.2303556,36.03799488,35.39956593,0.638428954,21.63468486,0,21.63468486,1.10061513,20.53406973,1.410896869,4.836950565,5.517981245,-5.517981245,0,0,0.430985752,0.275153783,8.849891483,0.292524585,1,0.179279915,0,0.941634297,0.98039626,0.724496596,1,34.30421247,0.797391915,0.04395165,0.312029739,0.882932802,0.607429398,0.961238037,0.922476074,0.189311558,8.506852315,34.49352403,9.30424423,96.37962736,0,0.45010454,63.24960868,-0.45010454,116.7503913,0.938914695,0,124.9857725,9.30424423,131.0752142,8,18,5% -2018-08-23 03:00:00,92.53570073,286.2269231,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615052653,4.995602216,-18.2156096,18.2156096,1,0,#DIV/0!,0,0,1,0.621957665,0,0.05484292,0.961238037,1,0.580773241,0.856276645,0,0,0.115824807,0.149158974,0.724496596,0.448993192,0.984208741,0.945446778,0,0,0,0,0,0,0.234057814,76.46390937,-0.234057814,103.5360906,0.836377565,0,0,0,0,8,19,0% -2018-08-23 04:00:00,103.5873521,296.0612332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807940357,5.167243308,-2.870967004,2.870967004,1,0.978882037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009922382,89.43148003,-0.009922382,90.56851997,0,0,0,0,0,8,20,0% -2018-08-23 05:00:00,113.6744182,307.3948969,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983992874,5.365053056,-1.229015679,1.229015679,1,0.740327749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208537023,102.0366318,0.208537023,77.96336816,0,0.810234422,0,0,0,8,21,0% -2018-08-23 06:00:00,122.1898197,321.0149248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132614666,5.602767386,-0.516805948,0.516805948,1,0.618532712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.406435021,113.9810843,0.406435021,66.01891575,0,0.926979105,0,0,0,8,22,0% -2018-08-23 07:00:00,128.283473,337.4590727,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238968979,5.889771909,-0.056168634,0.056168634,1,0.539759092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570286936,124.7702371,0.570286936,55.22976289,0,0.962324837,0,0,0,8,23,0% -2018-08-24 08:00:00,131.0035913,356.2875643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.286444,6.218391081,0.322589623,-0.322589623,1,0.474987615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688927901,133.5453028,0.688927901,46.45469724,0,0.977423465,0,0,0,8,0,0% -2018-08-24 09:00:00,129.7844094,15.59082981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265165262,0.272111313,0.698916111,-0.698916111,1,0.410631995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754273904,138.9619655,0.754273904,41.03803455,0,0.983711083,0,0,0,8,1,0% -2018-08-24 10:00:00,124.892967,33.09619495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179793487,0.577637572,1.146563814,-1.146563814,1,0.33407973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.761872984,139.6295954,0.761872984,40.37040458,0,0.984372263,0,0,0,8,2,0% -2018-08-24 11:00:00,117.2046812,47.78641991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045607586,0.834030365,1.801013052,-1.801013052,1,0.222162319,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711209029,135.3333706,0.711209029,44.66662942,0,0.97969718,0,0,0,8,3,0% -2018-08-24 12:00:00,107.6446766,59.9256654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878754029,1.045900168,3.095418007,-3.095418007,1,0.000806034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605737467,127.2819281,0.605737467,52.71807185,0,0.967455989,0,0,0,8,4,0% -2018-08-24 13:00:00,96.91408659,70.26328695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691469903,1.2263257,8.246467637,-8.246467637,1,0,#DIV/0!,0,0,0.468106419,1,0.120674838,0,0.948863158,0.987625121,0.724496596,1,0,0,0.065524894,0.312029739,0.831046951,0.555543546,0.961238037,0.922476074,0,0,0,0,0,0,-0.452650366,116.9138562,0.452650366,63.08614375,0,0.939539468,0,0,0,8,5,0% -2018-08-24 14:00:00,85.32069748,79.57779192,23.00822353,106.7929771,14.2962149,14.03857698,0,14.03857698,13.86513127,0.173445708,33.71924671,27.7095529,6.009693801,0.431083627,5.578610174,1.489127091,1.388894481,-12.0469761,12.0469761,0,0,0.6213524,0.107770907,3.466282819,1,0.371190964,0,0.082818513,0.961238037,1,0.516624519,0.792127923,13.32769157,0.297388881,0.115824807,0.076735658,0.724496596,0.448993192,0.992528543,0.95376658,0.078079655,3.3558979,13.40577122,3.653286781,0,17.42401725,-0.259469805,105.0386046,0.259469805,74.96139543,0,0.85729935,13.40577122,18.59088545,25.57313393,8,6,91% -2018-08-24 15:00:00,73.67506494,88.60384335,209.227205,526.1651893,61.33038454,61.05829021,0,61.05829021,59.48104716,1.577243049,77.28075343,24.70185784,52.57889559,1.849337379,50.72955821,1.28587246,1.546428796,-3.235813818,3.235813818,0.916489558,0.916489558,0.293128155,1.48413653,47.7349325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.175445,1.339838636,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.075251864,45.8846328,58.25069687,47.22447144,0,24.70185784,-0.046946963,92.69085192,0.046946963,87.30914808,0,0,58.25069687,47.22447144,89.15816893,8,7,53% -2018-08-24 16:00:00,61.8949282,98.13949347,421.9343954,713.1348303,85.98373325,212.5456609,125.9739347,86.57172614,83.39100645,3.180719698,104.895606,0,104.895606,2.592726804,102.3028792,1.080270287,1.712857287,-1.651116596,1.651116596,0.812511257,0.812511257,0.203784603,2.705897333,87.03095968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.15860733,1.878421743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960413406,83.65746882,82.11902073,85.53589057,125.9739347,0,0.176648131,79.82541658,-0.176648131,100.1745834,0.766951435,0,178.7349107,85.53589057,234.7164403,8,8,31% -2018-08-24 17:00:00,50.4141372,109.2772152,613.5895955,803.2147725,101.7539509,420.3922967,317.0811053,103.3111914,98.68569384,4.625497552,151.8401584,0,151.8401584,3.068257052,148.7719013,0.879892684,1.907247203,-0.936186743,0.936186743,0.690251052,0.690251052,0.165833892,3.430351899,110.3319088,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.86044261,2.222941789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485278273,106.0552274,97.34572089,108.2781692,317.0811053,0,0.394765032,66.74867949,-0.394765032,113.2513205,0.923342378,0,390.1201428,108.2781692,460.986039,8,9,18% -2018-08-24 18:00:00,39.82516162,123.8147916,765.9100161,850.8795026,112.4325642,618.844821,504.0287602,114.8160608,109.0423076,5.773753223,189.0940075,0,189.0940075,3.390256643,185.7037508,0.695080195,2.160975776,-0.49233992,0.49233992,0.614348775,0.614348775,0.146796049,3.873962375,124.5999466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8156137,2.456229397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806672553,119.7702081,107.6222862,122.2264375,504.0287602,0,0.59236209,53.67519097,-0.59236209,126.324809,0.965592168,0,594.3085093,122.2264375,674.3032682,8,10,13% -2018-08-24 19:00:00,31.30461452,144.6714713,866.9709706,875.4358117,118.983743,783.683304,661.7517665,121.9315375,115.3959441,6.535593387,213.7949481,0,213.7949481,3.587798854,210.2071493,0.546368594,2.524993508,-0.160758482,0.160758482,0.557645009,0.557645009,0.137240746,4.041311216,129.9824606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9229708,2.599348056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.927916219,124.9440853,113.850887,127.5434333,661.7517665,0,0.755911236,40.89494461,-0.755911236,139.1050554,0.983854668,0,764.9184513,127.5434333,848.3930775,8,11,11% -2018-08-24 20:00:00,27.05714475,173.9047672,909.3009948,884.4687971,121.6344,898.0532303,773.2318613,124.821369,117.9666741,6.854694989,224.1382797,0,224.1382797,3.667725943,220.4705537,0.472236262,3.035210773,0.122745506,-0.122745506,0.509162972,0.509162972,0.133766927,3.940220797,126.7310452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3940542,2.65725496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.854676554,121.8187011,116.2487307,124.4759561,773.2318613,0,0.874233058,29.04566215,-0.874233058,150.9543379,0.992807013,0,883.9187452,124.4759561,965.385769,8,12,9% -2018-08-24 21:00:00,29.0818106,205.2291615,889.8200289,880.3936745,120.4206017,950.4001556,826.9028401,123.4973155,116.7894762,6.70783924,219.3782934,0,219.3782934,3.631125445,215.747168,0.507573347,3.581924588,0.39484642,-0.39484642,0.462630975,0.462630975,0.135331413,3.591067792,115.5010844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2624869,2.630738024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.601716391,111.0240356,114.8642032,113.6547737,826.9028401,0,0.939242141,20.07532901,-0.939242141,159.924671,0.996765591,0,939.0925017,113.6547737,1013.477278,8,13,8% -2018-08-24 22:00:00,36.32618447,229.2181747,809.9159016,862.1383433,115.3275543,933.9651261,816.0096349,117.9554912,111.850003,6.105488176,199.8510385,0,199.8510385,3.477551275,196.3734872,0.634011524,4.000611853,0.687438485,-0.687438485,0.412594785,0.412594785,0.142394481,3.02977552,97.44799551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.5144773,2.519474061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.195062051,93.6707199,109.7095394,96.19019396,816.0096349,0,0.946495004,18.82740596,-0.946495004,161.172594,0.997173519,0,923.4127389,96.19019396,986.367297,8,14,7% -2018-08-24 23:00:00,46.33834389,245.7060927,675.4071009,824.4192101,106.229375,846.3811256,738.2634542,108.1176714,103.0261674,5.09150402,166.9634788,0,166.9634788,3.2032076,163.7602712,0.808756671,4.288380309,1.044902074,-1.044902074,0.351464911,0.351464911,0.157281993,2.308833139,74.26001032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.03267088,2.320713002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67274175,71.38154654,100.7054126,73.70225954,738.2634542,0,0.895495211,26.42789096,-0.895495211,153.572109,0.994164972,0,834.661079,73.70225954,882.8977338,8,15,6% -2018-08-24 00:00:00,57.58648103,257.8354353,496.4908731,753.593417,92.54520839,688.6386571,595.1412702,93.49738683,89.75462891,3.74275792,123.1705398,0,123.1705398,2.790579489,120.3799604,1.005073699,4.500077275,1.560222394,-1.560222394,0.263339946,0.263339946,0.18639861,1.499544778,48.23051472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.27556329,2.02176534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.086415087,46.36100529,87.36197837,48.38277063,595.1412702,0,0.789737884,37.83897695,-0.789737884,142.1610231,0.986687854,0,674.5806413,48.38277063,706.246197,8,16,5% -2018-08-24 01:00:00,69.31960911,267.8018922,288.510836,613.1045652,71.99009353,462.2462936,390.2520505,71.99424314,69.81932659,2.174916549,72.12355938,0,72.12355938,2.170766935,69.95279245,1.209855415,4.674024763,2.522320982,-2.522320982,0.098811398,0.098811398,0.249523015,0.703974149,22.64222853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11299243,1.572713255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510026875,21.7645713,67.6230193,23.33728456,390.2520505,0,0.636517933,50.46734215,-0.636517933,129.5326579,0.971447618,0,446.7324441,23.33728456,462.0062301,8,17,3% -2018-08-24 02:00:00,81.09551986,276.9005347,80.6992946,293.0890899,35.33272678,165.8243508,130.9486907,34.87566007,34.2673147,0.60834537,20.63189036,0,20.63189036,1.065412076,19.56647828,1.41538383,4.832826031,5.691961057,-5.691961057,0,0,0.437831916,0.266353019,8.566828675,0.307109257,1,0.173911567,0,0.942328673,0.981090637,0.724496596,1,33.21141808,0.771887422,0.045864034,0.312029739,0.878184296,0.602680892,0.961238037,0.922476074,0.18306191,8.234761578,33.39447999,9.006649,90.73313565,0,0.446788008,63.46220813,-0.446788008,116.5377919,0.938090103,0,118.5103365,9.006649,124.4050082,8,18,5% -2018-08-24 03:00:00,92.80494018,286.0041381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619751768,4.991713883,-16.51150806,16.51150806,1,0,#DIV/0!,0,0,1,0.575152878,0,0.060489934,0.961238037,1,0.567322607,0.842826011,0,0,0.115824807,0.133971314,0.724496596,0.448993192,0.986053387,0.947291423,0,0,0,0,0,0,0.230369404,76.68117895,-0.230369404,103.318821,0.832957289,0,0,0,0,8,19,0% -2018-08-24 04:00:00,103.8725967,295.8534515,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812918815,5.163616831,-2.820193231,2.820193231,1,0.987564864,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00596299,89.65834384,-0.00596299,90.34165616,0,0,0,0,0,8,20,0% -2018-08-24 05:00:00,113.9809442,307.2111976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989342761,5.361846898,-1.217417087,1.217417087,1,0.738344273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212690933,102.2800946,0.212690933,77.7199054,0,0.814917107,0,0,0,8,21,0% -2018-08-24 06:00:00,122.5196692,320.8774524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138371626,5.600368039,-0.513823551,0.513823551,1,0.618022692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41069368,114.2484181,0.41069368,65.75158187,0,0.928254762,0,0,0,8,22,0% -2018-08-24 07:00:00,128.6307505,337.4052511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245030115,5.888832545,-0.056648164,0.056648164,1,0.539841096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574553438,125.0683652,0.574553438,54.93163483,0,0.962975893,0,0,0,8,23,0% -2018-08-25 08:00:00,131.3500507,356.3531298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292490858,6.219535414,0.31992509,-0.31992509,1,0.475443277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693104858,133.8763906,0.693104858,46.12360938,0,0.977860843,0,0,0,8,0,0% -2018-08-25 09:00:00,130.1051519,15.7738394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270763274,0.275305433,0.694093046,-0.694093046,1,0.411456788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758270137,139.3119334,0.758270137,40.68806663,0,0.984060439,0,0,0,8,1,0% -2018-08-25 10:00:00,125.171847,33.35491803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184660862,0.582153141,1.138588263,-1.138588263,1,0.335443629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765609787,139.9612719,0.765609787,40.03872811,0,0.98469258,0,0,0,8,2,0% -2018-08-25 11:00:00,117.4403122,48.0782563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049720122,0.839123871,1.786626611,-1.786626611,1,0.224622545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714625577,135.6125222,0.714625577,44.38747776,0,0.980033291,0,0,0,8,3,0% -2018-08-25 12:00:00,107.8443553,60.22809652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88223908,1.051178586,3.061301569,-3.061301569,1,0.006640289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608795003,127.5024247,0.608795003,52.49757527,0,0.967870548,0,0,0,8,4,0% -2018-08-25 13:00:00,97.08756404,70.5702711,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694497655,1.231683585,8.042313291,-8.042313291,1,0,#DIV/0!,0,0,0.458042426,1,0.123707394,0,0.948508256,0.987270219,0.724496596,1,0,0,0.064368862,0.312029739,0.833733599,0.558230195,0.961238037,0.922476074,0,0,0,0,0,0,-0.455334866,117.0864821,0.455334866,62.91351785,0,0.940190706,0,0,0,8,5,0% -2018-08-25 14:00:00,85.473297,79.89234872,21.46199199,100.7246505,13.51242931,13.26676927,0,13.26676927,13.10497971,0.161789561,31.9728179,26.36165986,5.611158035,0.407449599,5.203708436,1.491790455,1.394384532,-12.44314751,12.44314751,0,0,0.629598097,0.1018624,3.276244927,1,0.396884512,0,0.080193169,0.961238037,1,0.522379087,0.797882492,12.59700497,0.280545126,0.115824807,0.083235809,0.724496596,0.448993192,0.991831496,0.953069533,0.073798962,3.17289105,12.67080393,3.453436176,0,15.89912537,-0.261720043,105.1721479,0.261720043,74.82785207,0,0.858956168,12.67080393,17.11008797,23.8690143,8,6,88% -2018-08-25 15:00:00,73.82501399,88.93392078,206.6517922,523.4692978,60.82798789,60.55162813,0,60.55162813,58.99379963,1.5578285,77.55606647,25.61675864,51.93930783,1.834188266,50.10511956,1.288489564,1.552189734,-3.261099952,3.261099952,0.912165374,0.912165374,0.294350159,1.461273526,46.9995797,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.70708414,1.328863155,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.058687695,45.17778373,57.76577184,46.50664688,0,25.61675864,-0.048936506,92.80497559,0.048936506,87.19502441,0,0,57.76577184,46.50664688,88.20344209,8,7,53% -2018-08-25 16:00:00,62.0495879,98.49625361,419.3797376,712.1579376,85.58617007,210.7367897,124.5698969,86.16689287,83.00543126,3.161461609,104.2642116,0,104.2642116,2.580738807,101.6834728,1.082969608,1.719083926,-1.656329932,1.656329932,0.81340279,0.81340279,0.204077981,2.691931358,86.58176593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.78797779,1.86973648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950295105,83.22568671,81.7382729,85.09542319,124.5698969,0,0.174918919,79.92606025,-0.174918919,100.0739398,0.764153276,0,176.9287677,85.09542319,232.6220203,8,8,31% -2018-08-25 17:00:00,50.58740991,109.6728225,611.0632161,802.7755669,101.38077,418.5999058,315.6696874,102.9302184,98.32376576,4.606452637,151.2163557,0,151.2163557,3.057004272,148.1593514,0.882916863,1.914151853,-0.936631415,0.936631415,0.690327095,0.690327095,0.165908808,3.416626915,109.8904662,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.51254357,2.214789188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475334569,105.630896,96.98787814,107.8456852,315.6696874,0,0.393222839,66.84481692,-0.393222839,113.1551831,0.922845636,0,388.3022716,107.8456852,458.8851156,8,9,18% -2018-08-25 18:00:00,40.03689408,124.2512394,763.3293941,850.6297595,112.0614093,617.0885733,502.6519296,114.4366438,108.6823444,5.754299404,188.4571141,0,188.4571141,3.379064953,185.0780491,0.698775624,2.168593228,-0.490870373,0.490870373,0.614097467,0.614097467,0.146806097,3.859698121,124.1411592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4696033,2.448121056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79633815,119.3292042,107.2659415,121.7773252,502.6519296,0,0.590917404,53.77786294,-0.590917404,126.2221371,0.965385806,0,592.5189796,121.7773252,672.2198034,8,10,13% -2018-08-25 19:00:00,31.57878391,145.0925043,864.2413524,875.2415621,118.6047706,781.884426,660.3410105,121.5434155,115.0283992,6.515016371,213.1216932,0,213.1216932,3.576371439,209.5453217,0.551153753,2.532341919,-0.158135642,0.158135642,0.557196477,0.557196477,0.137235704,4.026051638,129.4916601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5696726,2.591068933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916860707,124.4723092,113.4865333,127.0633781,660.3410105,0,0.754467154,41.02116737,-0.754467154,138.9788326,0.983728063,0,763.0825162,127.0633781,846.2429559,8,11,11% -2018-08-25 20:00:00,27.39498982,174.1161618,906.3338952,884.2571688,121.2411952,896.1021451,771.6844915,124.4176536,117.5853259,6.832327739,223.4070154,0,223.4070154,3.655869368,219.7511461,0.478132771,3.038900305,0.126392777,-0.126392777,0.508539252,0.508539252,0.133771004,3.92368591,126.1992264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0274878,2.648664912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842697085,121.3074967,115.8701849,123.9561616,771.6844915,0,0.872692378,29.22696524,-0.872692378,150.7730348,0.992706043,0,881.9260425,123.9561616,963.0528712,8,12,9% -2018-08-25 21:00:00,29.42919221,205.1188772,886.5427673,880.100078,120.0076504,948.1784144,825.1063036,123.0721108,116.3889769,6.683133857,218.5712314,0,218.5712314,3.61867344,214.952558,0.5136363,3.579999765,0.399735784,-0.399735784,0.461794844,0.461794844,0.13536589,3.573133935,114.9242699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.8775117,2.621716589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588723373,110.4695796,114.4662351,113.0912962,825.1063036,0,0.937514181,20.36179982,-0.937514181,159.6382002,0.996667473,0,936.8228499,113.0912962,1010.838841,8,13,8% -2018-08-25 22:00:00,36.64165751,228.95689,806.2789091,861.6704093,114.8885564,931.3516686,813.849355,117.5023135,111.4242426,6.07807099,198.9559702,0,198.9559702,3.46431387,195.4916563,0.639517567,3.996051576,0.694190975,-0.694190975,0.411440041,0.411440041,0.142492325,3.010500886,96.82805701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1052202,2.509883606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181097644,93.07481144,109.2863178,95.58469504,813.849355,0,0.944501919,19.17811467,-0.944501919,160.8218853,0.997062045,0,920.7446201,95.58469504,983.3028913,8,14,7% -2018-08-25 23:00:00,46.62348829,245.4220608,671.3914447,823.5966824,105.7538126,843.2441971,735.6180199,107.6261772,102.5649449,5.061232307,165.9754965,0,165.9754965,3.188867639,162.7866289,0.813733379,4.283423018,1.054962661,-1.054962661,0.349744449,0.349744449,0.157514388,2.288532627,73.60707606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.58932631,2.310323749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658034098,70.75392129,100.2473604,73.06424504,735.6180199,0,0.893177493,26.72471437,-0.893177493,153.2752856,0.994020085,0,831.4664471,73.06424504,879.2855342,8,15,6% -2018-08-25 00:00:00,57.85378158,257.564893,492.1226444,751.9810586,92.00724755,684.7961073,591.8533893,92.94271793,89.23288956,3.709828367,122.0951907,0,122.0951907,2.774357984,119.3208327,1.009738973,4.49535542,1.577433738,-1.577433738,0.260396633,0.260396633,0.186959996,1.479007943,47.56997949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.77404759,2.010012915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.07153622,45.7260737,86.84558381,47.73608661,591.8533893,0,0.787058906,38.08849509,-0.787058906,141.9115049,0.986472353,0,670.6925897,47.73608661,701.9349036,8,16,5% -2018-08-25 01:00:00,69.57991892,267.5493313,283.9225467,609.4013427,71.30209802,457.3290661,386.0366614,71.29240478,69.15207669,2.140328086,70.99032991,0,70.99032991,2.150021332,68.84030858,1.214398678,4.669616742,2.561022757,-2.561022757,0.092193004,0.092193004,0.251132215,0.685274378,22.04077962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.47160644,1.557683136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.496478954,21.18643573,66.9680854,22.74411886,386.0366614,0,0.633468675,50.69349871,-0.633468675,129.3065013,0.971069499,0,441.8365127,22.74411886,456.7220836,8,17,3% -2018-08-25 02:00:00,81.35576995,276.6634023,76.70050963,283.2006658,34.13585191,159.2591911,125.5744603,33.68473086,33.10653002,0.57820084,19.62624845,0,19.62624845,1.029321883,18.59692657,1.419926051,4.82868729,5.878344544,-5.878344544,0,0,0.445053782,0.257330471,8.276632506,0.322080977,1,0.168502821,0,0.943021767,0.98178373,0.724496596,1,32.09013437,0.7457402,0.047803148,0.312029739,0.873398968,0.597895564,0.961238037,0.922476074,0.176690813,7.955813982,32.26682518,8.701554182,85.12931545,0,0.4434116,63.67824192,-0.4434116,116.3217581,0.937237952,0,112.0532505,8.701554182,117.7482436,8,18,5% -2018-08-25 03:00:00,93.07735967,285.7802458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624506385,4.987806226,-15.0900077,15.0900077,1,0,#DIV/0!,0,0,1,0.526222852,0,0.066172265,0.961238037,1,0.554043686,0.82954709,0,0,0.115824807,0.1189819,0.724496596,0.448993192,0.987822327,0.949060364,0,0,0,0,0,0,0.226622322,76.90170514,-0.226622322,103.0982949,0.8293686,0,0,0,0,8,19,0% -2018-08-25 04:00:00,104.1609484,295.6443719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817951502,5.159967705,-2.770794928,2.770794928,1,0.996012471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.001951071,89.88821182,-0.001951071,90.11178818,0,0,0,0,0,8,20,0% -2018-08-25 05:00:00,114.290594,307.0261993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99474717,5.358618068,-1.205920085,1.205920085,1,0.73637817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216889447,102.5264007,0.216889447,77.47359933,0,0.819467807,0,0,0,8,21,0% -2018-08-25 06:00:00,122.8527254,320.7391588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144184553,5.597954362,-0.510823946,0.510823946,1,0.617509729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.414987789,114.5185475,0.414987789,65.48145247,0,0.929514527,0,0,0,8,22,0% -2018-08-25 07:00:00,128.9812412,337.3520424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251147331,5.887903878,-0.05708938,0.05708938,1,0.539916549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578845636,125.3693917,0.578845636,54.63060825,0,0.963621185,0,0,0,8,23,0% -2018-08-26 08:00:00,131.6993639,356.4216679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298587522,6.220731631,0.317307361,-0.317307361,1,0.475890935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697297829,134.2106085,0.697297829,45.78939153,0,0.978294628,0,0,0,8,0,0% -2018-08-26 09:00:00,130.4279285,15.96174565,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276396789,0.278585016,0.689329445,-0.689329445,1,0.412271412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762273437,139.6650311,0.762273437,40.33496891,0,0.98440674,0,0,0,8,1,0% -2018-08-26 10:00:00,125.451863,33.6189608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189548063,0.586761557,1.130702926,-1.130702926,1,0.336792101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769346063,140.2952022,0.769346063,39.70479781,0,0.985009741,0,0,0,8,2,0% -2018-08-26 11:00:00,117.6764684,48.37488465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053841826,0.844301012,1.772424031,-1.772424031,1,0.227051329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718035881,135.8925563,0.718035881,44.10744372,0,0.980365597,0,0,0,8,3,0% -2018-08-26 12:00:00,108.0442854,60.53462993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885728517,1.056528604,3.02781639,-3.02781639,1,0.012366592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611842842,127.7228721,0.611842842,52.27712795,0,0.968279668,0,0,0,8,4,0% -2018-08-26 13:00:00,97.26127234,70.88081387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697529437,1.237103578,7.847380737,-7.847380737,1,0,#DIV/0!,0,0,0.448071063,1,0.126747927,0,0.948150302,0.986912265,0.724496596,1,0,0,0.063214391,0.312029739,0.836427231,0.560923827,0.961238037,0.922476074,0,0,0,0,0,0,-0.458008721,117.2586884,0.458008721,62.74131165,0,0.940831773,0,0,0,8,5,0% -2018-08-26 14:00:00,85.62606364,80.21009737,19.95797191,94.71115175,12.73478193,12.50123289,0,12.50123289,12.35078126,0.150451623,30.22277095,24.99972893,5.223042017,0.384000661,4.839041356,1.494456736,1.399930292,-12.86687309,12.86687309,0,0,0.63807996,0.096000165,3.087695316,1,0.422138535,0,0.077563045,0.961238037,1,0.528199375,0.803702779,11.87204074,0.26396289,0.115824807,0.089808365,0.724496596,0.448993192,0.99111663,0.952354667,0.069551793,2.99110475,11.94159253,3.25506764,0,14.44637998,-0.263957607,105.3050228,0.263957607,74.69497718,0,0.860575643,11.94159253,15.68727037,22.20859724,8,6,86% -2018-08-26 15:00:00,73.97565662,89.26694369,204.0647335,520.7213466,60.32182184,60.0412225,0,60.0412225,58.50289634,1.538326158,77.81238572,26.51560301,51.29678271,1.818925492,49.47785722,1.291118774,1.558002081,-3.286818357,3.286818357,0.907767268,0.907767268,0.295601405,1.438383251,46.26334975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.23520923,1.317805327,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.042103769,44.47009149,57.277313,45.78789682,0,26.51560301,-0.050920907,92.91881534,0.050920907,87.08118466,0,0,57.277313,45.78789682,87.24457571,8,7,52% -2018-08-26 16:00:00,62.20541172,98.85572618,416.8011244,711.1576669,85.18610864,208.9237739,123.1643178,85.7594561,82.61743316,3.142022933,103.6269336,0,103.6269336,2.568675479,101.0582582,1.085689247,1.725357906,-1.661554414,1.661554414,0.814296229,0.814296229,0.204380707,2.677790607,86.12695076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41501926,1.86099664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.940050179,82.78850107,81.35506944,84.64949771,123.1643178,0,0.173188483,80.02674375,-0.173188483,99.97325625,0.761297201,0,175.1197198,84.64949771,230.5211231,8,8,32% -2018-08-26 17:00:00,50.76246851,110.0706936,608.502217,802.3205089,101.0049754,416.7924679,314.2460185,102.5464494,97.95930269,4.587146744,150.5840802,0,150.5840802,3.045672676,147.5384075,0.885972212,1.921096014,-0.937036266,0.937036266,0.690396329,0.690396329,0.165989494,3.402687131,109.4421148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.16220781,2.206579486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465235244,105.1999236,96.62744305,107.4065031,314.2460185,0,0.391671427,66.94145949,-0.391671427,113.0585405,0.922341977,0,386.469737,107.4065031,456.7651451,8,9,18% -2018-08-26 18:00:00,40.25113348,124.6887787,760.7036149,850.3663917,111.6872433,615.3061262,501.2521602,114.053966,108.3194608,5.734505172,187.809181,0,187.809181,3.367782467,184.4413986,0.702514807,2.176229729,-0.489347524,0.489347524,0.613837045,0.613837045,0.146820971,3.845179915,123.6742038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1207859,2.439946933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.785819759,118.8803489,106.9066056,121.3202958,501.2521602,0,0.58945434,53.88170393,-0.58945434,126.1182961,0.965175788,0,590.7030543,121.3202958,670.1047615,8,10,13% -2018-08-26 19:00:00,31.85595187,145.5124432,861.4566063,875.0339179,118.2223166,780.0476583,658.896157,121.1515013,114.6574776,6.494023779,212.4349668,0,212.4349668,3.56483904,208.8701278,0.555991247,2.539671237,-0.155450235,0.155450235,0.556737246,0.556737246,0.137235371,4.010505004,128.9916269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2131286,2.582713749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905597223,123.9916583,113.1187259,126.574372,658.896157,0,0.752994991,41.14951645,-0.752994991,138.8504836,0.983598496,0,761.2079948,126.574372,844.0483898,8,11,11% -2018-08-26 20:00:00,27.73575292,174.32713,903.3029028,884.0310491,120.8440253,894.101472,770.0918611,124.0096109,117.200132,6.809478838,222.6601401,0,222.6601401,3.643893228,219.0162469,0.484080209,3.042582395,0.130115304,-0.130115304,0.507902662,0.507902662,0.13378018,3.90683997,125.6574031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6572248,2.63998824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830492259,120.7866755,115.4877171,123.4266637,770.0918611,0,0.871114043,29.41164235,-0.871114043,150.5883577,0.992602234,0,879.8826188,123.4266637,960.6629017,8,12,9% -2018-08-26 21:00:00,29.77986443,205.0124655,883.194676,879.7893647,119.5902487,945.8959641,823.2539081,122.642056,115.9841615,6.65789453,217.7468617,0,217.7468617,3.60608724,214.1407745,0.519756685,3.57814253,0.404721957,-0.404721957,0.460942159,0.460942159,0.135406442,3.554876679,114.3370538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4883877,2.61259793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575496052,109.9051251,114.0638837,112.5177231,823.2539081,0,0.935739782,20.65200766,-0.935739782,159.3479923,0.996566341,0,934.491019,112.5177231,1008.131618,8,13,8% -2018-08-26 22:00:00,36.96097002,228.6990747,802.5665314,861.1801686,114.4445807,928.6673086,811.6235688,117.0437398,110.9936543,6.050085519,198.0424737,0,198.0424737,3.450926362,194.5915473,0.645090622,3.991551849,0.701080731,-0.701080731,0.410261824,0.410261824,0.142598247,2.990904873,96.19778188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6913224,2.500184402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.166900399,92.468967,108.8582228,94.9691514,811.6235688,0,0.942455015,19.53198218,-0.942455015,160.4680178,0.99694707,0,918.0039616,94.9691514,980.1593718,8,14,7% -2018-08-26 23:00:00,46.91251614,245.1396357,667.298759,822.7411723,105.272536,840.0268068,732.8982463,107.1285605,102.0981806,5.030379913,164.9686652,0,164.9686652,3.174355373,161.7943098,0.818777867,4.27849377,1.065247022,-1.065247022,0.34798572,0.34798572,0.157759226,2.267931634,72.94447732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.14065467,2.299809662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643108749,70.11700618,99.78376341,72.41681584,732.8982463,0,0.890800498,27.02598989,-0.890800498,152.9740101,0.993870709,0,828.1898634,72.41681584,875.585221,8,15,6% -2018-08-26 00:00:00,58.12475768,257.2947174,487.6795233,750.3104034,91.4620265,680.8620383,588.4815952,92.38044319,88.70410894,3.676334243,121.0014641,0,121.0014641,2.757917558,118.2435466,1.014468398,4.490639966,1.595099805,-1.595099805,0.257375558,0.257375558,0.187545349,1.458222823,46.9014586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.26576354,1.998101882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056477471,45.08346599,86.32224101,47.08156787,588.4815952,0,0.78431752,38.34239877,-0.78431752,141.6576012,0.986250308,0,666.7123958,47.08156787,697.5263403,8,16,5% -2018-08-26 01:00:00,69.84364247,267.2964233,279.2691655,605.5644233,70.60181186,452.2996685,381.7215128,70.57815567,68.47290674,2.105248933,69.84094755,0,69.84094755,2.128905121,67.71204243,1.219001523,4.665202666,2.601126565,-2.601126565,0.085334849,0.085334849,0.252809191,0.666459931,21.43564233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.81876245,1.542384513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.482847951,20.60475475,66.3016104,22.14713927,381.7215128,0,0.63035657,50.92356547,-0.63035657,129.0764345,0.970679815,0,436.8309777,22.14713927,451.3258374,8,17,3% -2018-08-26 02:00:00,81.61906176,276.4254802,72.70020699,272.9992534,32.9095014,152.5785484,120.113345,32.46520338,31.91715851,0.548044869,18.61934977,0,18.61934977,0.99234289,17.62700688,1.42452136,4.824534767,6.078400924,-6.078400924,0,0,0.452674109,0.248085723,7.979289627,0.337447382,1,0.163056338,0,0.943713074,0.982475037,0.724496596,1,30.94033114,0.718949046,0.049768528,0.312029739,0.868579202,0.593075798,0.961238037,0.922476074,0.170197647,7.669996697,31.11052878,8.388945742,79.58141119,0,0.439976826,63.89759744,-0.439976826,116.1024026,0.936357651,0,105.627192,8.388945742,111.1175892,8,18,5% -2018-08-26 03:00:00,93.3528457,285.5552553,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629314523,4.983879401,-13.88672773,13.88672773,1,0,#DIV/0!,0,0,1,0.475044672,0,0.071887117,0.961238037,1,0.540948041,0.816451445,0,0,0.115824807,0.104200543,0.724496596,0.448993192,0.9895161,0.950754137,0,0,0,0,0,0,0.222818214,77.1253856,-0.222818214,102.8746144,0.825601828,0,0,0,0,8,19,0% -2018-08-26 04:00:00,104.4522909,295.4339847,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823036388,5.156295755,-2.722741711,2.722741711,1,0.995769945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002111422,90.12097564,0.002111422,89.87902436,0,0,0,0,0,8,20,0% -2018-08-26 05:00:00,114.6032508,306.839869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00020406,5.35536599,-1.194530691,1.194530691,1,0.734430469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.22113039,102.7754349,0.22113039,77.22456511,0,0.823889061,0,0,0,8,21,0% -2018-08-26 06:00:00,123.1888761,320.59999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150051489,5.595525408,-0.507810817,0.507810817,1,0.616994454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419315051,114.7913514,0.419315051,65.20864863,0,0.930757917,0,0,0,8,22,0% -2018-08-26 07:00:00,129.3348427,337.2993918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257318842,5.886984953,-0.05749442,0.05749442,1,0.539985815,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583161218,125.6731944,0.583161218,54.32680556,0,0.964260416,0,0,0,8,23,0% -2018-08-27 08:00:00,132.0514367,356.493152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304732352,6.221979264,0.314735048,-0.314735048,1,0.476330827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701504593,134.5478427,0.701504593,45.45215729,0,0.978724629,0,0,0,8,0,0% -2018-08-27 09:00:00,130.75265,16.15453254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282064248,0.281949782,0.684624182,-0.684624182,1,0.413076059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766281782,140.0211602,0.766281782,39.97883984,0,0.984749852,0,0,0,8,1,0% -2018-08-27 10:00:00,125.7329373,33.88827896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194453734,0.591462046,1.122906395,-1.122906395,1,0.338125387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773080076,140.6312884,0.773080076,39.36871156,0,0.985323647,0,0,0,8,2,0% -2018-08-27 11:00:00,117.9130929,48.67622936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057971703,0.84956047,1.758401961,-1.758401961,1,0.229449244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721438556,136.1733783,0.721438556,43.82662166,0,0.980694028,0,0,0,8,3,0% -2018-08-27 12:00:00,108.2444328,60.84517252,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889221749,1.061948594,2.994944693,-2.994944693,1,0.017987983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614880001,127.9432015,0.614880001,52.05679851,0,0.968683321,0,0,0,8,4,0% -2018-08-27 13:00:00,97.4351981,71.19481335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700565014,1.242583903,7.661048297,-7.661048297,1,0,#DIV/0!,0,0,0.438190483,1,0.129796593,0,0.947789264,0.986551227,0.724496596,1,0,0,0.062061415,0.312029739,0.839127959,0.563624555,0.961238037,0.922476074,0,0,0,0,0,0,-0.460671365,117.4304379,0.460671365,62.56956208,0,0.941462757,0,0,0,8,5,0% -2018-08-27 14:00:00,85.77898458,80.53092865,18.49804741,88.76498282,11.96459002,11.74325958,0,11.74325958,11.60381348,0.139446095,28.47348929,23.627647,4.84584229,0.360776534,4.485065757,1.49712571,1.405529855,-13.32114679,13.32114679,0,0,0.646802863,0.090194133,2.900953371,1,0.446965041,0,0.074928076,0.961238037,1,0.534085787,0.809589191,11.15402689,0.247654619,0.115824807,0.09645419,0.724496596,0.448993192,0.990383545,0.951621582,0.065345343,2.810869557,11.21937224,3.058524176,0,13.06691478,-0.266182071,105.4372035,0.266182071,74.56279649,0,0.862158649,11.21937224,14.32427776,20.59432555,8,6,84% -2018-08-27 15:00:00,74.12700892,89.60279165,201.4658576,517.9197907,59.81177605,59.52696506,0,59.52696506,58.00823032,1.518734734,78.04942084,27.39814545,50.6512754,1.80354573,48.84772967,1.29376037,1.563863733,-3.31298755,3.31298755,0.903292072,0.903292072,0.29688294,1.415465337,45.52623088,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.75971744,1.306662742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.025499819,43.7615448,56.78521725,45.06820754,0,27.39814545,-0.052900364,93.03238304,0.052900364,86.96761696,0,0,56.78521725,45.06820754,86.28145773,8,7,52% -2018-08-27 16:00:00,62.36242444,99.21777049,414.1980757,710.1332963,84.78348528,207.1061886,121.7568382,85.34935043,82.22695038,3.122400053,102.9836538,0,102.9836538,2.556534899,100.4271189,1.088429636,1.731676772,-1.66679311,1.66679311,0.815192099,0.815192099,0.204693093,2.663472815,85.66644134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.03967236,1.852200831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929676987,82.3458419,80.96934935,84.19804273,121.7568382,0,0.171456315,80.12749691,-0.171456315,99.87250309,0.758380528,0,173.3073646,84.19804273,228.4132996,8,8,32% -2018-08-27 17:00:00,50.9393387,110.4706525,605.9060201,801.8491626,100.626517,414.9692644,312.8094326,102.1598318,97.59225627,4.567575516,149.9431903,0,149.9431903,3.034260761,146.9089295,0.889059179,1.928076614,-0.937402818,0.937402818,0.690459013,0.690459013,0.166076114,3.388530699,108.9867953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.80938883,2.198311592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454978956,104.7622531,96.26436779,106.9605647,312.8094326,0,0.39011007,67.03865158,-0.39011007,112.9613484,0.921831045,0,384.6218139,106.9605647,454.6253643,8,9,18% -2018-08-27 18:00:00,40.46789141,125.1271842,758.032134,850.0890938,111.3100265,613.4966153,499.8286304,113.6679849,107.9536185,5.71436642,187.1500751,0,187.1500751,3.356407988,183.7936671,0.706297946,2.183881347,-0.487772468,0.487772468,0.613567694,0.613567694,0.146840776,3.830406748,123.1990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7691243,2.431706162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.77511665,118.423611,106.5442409,120.8553172,499.8286304,0,0.587972054,53.98676933,-0.587972054,126.0132307,0.964961945,0,588.8598481,120.8553172,667.9572361,8,10,13% -2018-08-27 19:00:00,32.1360919,145.9310502,858.6163398,874.8126442,117.8363535,778.1721271,657.4163618,120.7557653,114.2831527,6.47261265,211.7346731,0,211.7346731,3.553200829,208.1814723,0.560880612,2.546977308,-0.152703145,0.152703145,0.556267465,0.556267465,0.137239822,3.994671536,128.4823682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8533133,2.574281905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.894125929,123.5021394,112.7474393,126.0764213,657.4163618,0,0.751493895,41.28005005,-0.751493895,138.71995,0.98346586,0,759.2939869,126.0764213,841.8084831,8,11,11% -2018-08-27 20:00:00,28.07936259,174.5374753,900.2078831,883.7902424,120.4428782,892.0504599,768.4532315,123.5972284,116.8110811,6.786147272,221.8976207,0,221.8976207,3.631797166,218.2658235,0.490077329,3.046253612,0.133912391,-0.133912391,0.507253322,0.507253322,0.133794516,3.889684745,125.1056321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2832543,2.631224684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818063357,120.2562922,115.1013176,122.8875169,768.4532315,0,0.869497302,29.59972477,-0.869497302,150.4002752,0.992495509,0,877.7876986,122.8875169,958.2151206,8,12,9% -2018-08-27 21:00:00,30.13371599,204.9097482,879.7759656,879.4613512,119.1684035,943.552296,821.3451366,122.2071593,115.5750365,6.632122848,216.9052356,0,216.9052356,3.593367051,213.3118686,0.52593256,3.576349776,0.409804528,-0.409804528,0.460072988,0.460072988,0.135453125,3.536299559,113.7395498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0951212,2.603382196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562036992,109.3307815,113.6571582,111.9341637,821.3451366,0,0.933918398,20.94589858,-0.933918398,159.0541014,0.996462132,0,932.0964841,111.9341637,1005.355156,8,13,8% -2018-08-27 22:00:00,37.28399816,228.4446896,798.779389,860.6674089,113.9956539,925.9118748,809.3320741,116.5798007,110.5582643,6.02153644,197.1107004,0,197.1107004,3.437389563,193.6733108,0.650728526,3.987111992,0.708107984,-0.708107984,0.409060093,0.409060093,0.142712313,2.970992921,95.55734507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2728089,2.490377037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152474258,91.85335478,108.4252832,94.34373182,809.3320741,0,0.940354039,19.88890214,-0.940354039,160.1110979,0.996828537,0,915.1905905,94.34373182,976.9366761,8,14,7% -2018-08-27 23:00:00,47.2053104,244.8588466,663.1301159,821.8523308,104.7855888,836.7291696,730.104298,106.6248716,101.6259167,4.998954921,163.9432462,0,163.9432462,3.159672119,160.783574,0.823888091,4.273593076,1.07575726,-1.07575726,0.346188363,0.346188363,0.158016634,2.247037623,72.27245409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68669663,2.289171695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.627971108,69.47103188,99.31466774,71.76020358,730.104298,0,0.888364333,27.33157601,-0.888364333,152.668424,0.993716786,0,824.8315641,71.76020358,871.7971822,8,15,6% -2018-08-27 00:00:00,58.39929761,257.0249484,483.1630706,748.5805751,90.90958366,676.8369897,585.0263781,91.81061161,88.16832429,3.642287315,119.8897397,0,119.8897397,2.741259368,117.1484803,1.019260024,4.48593161,1.61323002,-1.61323002,0.254275108,0.254275108,0.188155075,1.437199338,46.22527104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.75074696,1.986033081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.041246028,44.43348879,85.79199299,46.41952187,585.0263781,0,0.781514239,38.6005725,-0.781514239,141.3994275,0.986021639,0,662.6406613,46.41952187,693.0213099,8,16,5% -2018-08-27 01:00:00,70.11066842,267.0432013,274.552957,601.5906325,69.88913856,447.158572,377.3071527,69.85141933,67.78172317,2.069696162,68.67595848,0,68.67595848,2.107415391,66.56854309,1.223662005,4.660783108,2.642690328,-2.642690328,0.078227027,0.078227027,0.254556131,0.647545816,20.82729935,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.15437051,1.526815277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.469144739,20.01999234,65.62351525,21.54680762,377.3071527,0,0.62718256,51.15743857,-0.62718256,128.8425614,0.970278395,0,431.7164939,21.54680762,445.8184486,8,17,3% -2018-08-27 02:00:00,81.8852673,276.1867894,68.70537806,262.4874343,31.6537553,145.7891101,114.5719021,31.21720794,30.69927778,0.517930161,17.61289187,0,17.61289187,0.954477512,16.65841435,1.429167523,4.820368826,6.293579534,-6.293579534,0,0,0.460717286,0.238619378,7.674819446,0.353216241,1,0.15757482,0,0.944402098,0.983164061,0.724496596,1,29.76211192,0.691515708,0.051759684,0.312029739,0.863727429,0.588224025,0.961238037,0.922476074,0.163582246,7.377328377,29.92569416,8.068844086,74.10324552,0,0.436485283,64.12015752,-0.436485283,115.8798425,0.935448601,0,99.24547149,8.068844086,104.5263686,8,18,5% -2018-08-27 03:00:00,93.63128296,285.3291724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634174171,4.979933511,-12.85544882,12.85544882,1,0,#DIV/0!,0,0,1,0.421485423,0,0.077631696,0.961238037,1,0.528046751,0.803550155,0,0,0.115824807,0.089636035,0.724496596,0.448993192,0.991135502,0.952373539,0,0,0,0,0,0,0.218958781,77.35211542,-0.218958781,102.6478846,0.821646519,0,0,0,0,8,19,0% -2018-08-27 04:00:00,104.7465062,295.2222764,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828171413,5.152600749,-2.676002893,2.676002893,1,0.987777136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006222488,90.35652462,0.006222488,89.64347538,0,0,0,0,0,8,20,0% -2018-08-27 05:00:00,114.9187965,306.6521697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005711372,5.35209002,-1.183254523,1.183254523,1,0.73250213,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225411551,103.02708,0.225411551,76.97292001,0,0.828183505,0,0,0,8,21,0% -2018-08-27 06:00:00,123.5280083,320.4598872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155970463,5.593080152,-0.504787782,0.504787782,1,0.616477484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.423673145,115.0667067,0.423673145,64.93329329,0,0.931984496,0,0,0,8,22,0% -2018-08-27 07:00:00,129.6914526,337.2472399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26354286,5.886074729,-0.057865455,0.057865455,1,0.540049265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587497862,125.9796492,0.587497862,54.02035076,0,0.964893307,0,0,0,8,23,0% -2018-08-28 08:00:00,132.4061761,356.5675518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310923723,6.223277784,0.312206681,-0.312206681,1,0.476763203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705722939,134.8879788,0.705722939,45.11202116,0,0.979150666,0,0,0,8,0,0% -2018-08-28 09:00:00,131.0792286,16.35218114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28776412,0.285399401,0.679976019,-0.679976019,1,0.413870942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770293169,140.3802225,0.770293169,39.61977753,0,0.985089649,0,0,0,8,1,0% -2018-08-28 10:00:00,126.0149944,34.16282527,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199376558,0.596253783,1.115197108,-1.115197108,1,0.339443752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776810121,140.9694339,0.776810121,39.03056611,0,0.985634206,0,0,0,8,2,0% -2018-08-28 11:00:00,118.1501315,48.98221234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062108807,0.85490088,1.744556843,-1.744556843,1,0.231816899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724832266,136.4548961,0.724832266,43.5451039,0,0.981018523,0,0,0,8,3,0% -2018-08-28 12:00:00,108.4447666,61.15962942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892718233,1.067436903,2.962668735,-2.962668735,1,0.023507497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617905551,128.1633475,0.617905551,51.83665249,0,0.969081484,0,0,0,8,4,0% -2018-08-28 13:00:00,97.60933084,71.51216652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703604204,1.248122761,7.482745601,-7.482745601,1,0,#DIV/0!,0,0,0.428398698,1,0.132853602,0,0.947425102,0.986187065,0.724496596,1,0,0,0.060909843,0.312029739,0.841835947,0.566332543,0.961238037,0.922476074,0,0,0,0,0,0,-0.463322289,117.6016974,0.463322289,62.39830259,0,0.942083759,0,0,0,8,5,0% -2018-08-28 14:00:00,85.93204806,80.85473265,17.08410568,82.89934104,11.20326617,10.99423357,0,10.99423357,10.86544636,0.128787205,26.72966568,22.24960665,4.480059026,0.337819811,4.142239215,1.499797172,1.4111813,-13.80941811,13.80941811,0,0,0.655771299,0.084454953,2.716361591,1,0.471375868,0,0.072288168,0.961238037,1,0.540038803,0.815542207,10.44428033,0.231635123,0.115824807,0.103174217,0.724496596,0.448993192,0.989631829,0.950869866,0.061187326,2.632538258,10.50546766,2.864173381,0,11.76167901,-0.268393046,105.5686661,0.268393046,74.43133392,0,0.863706053,10.50546766,13.02280673,19.02863421,8,6,81% -2018-08-28 15:00:00,74.27908914,89.9413437,198.8549604,515.0629825,59.29773101,59.00873833,0,59.00873833,57.50968564,1.499052688,78.26688196,28.26414916,50.0027328,1.788045375,48.21468742,1.296414671,1.569772581,-3.339627636,3.339627636,0.898736349,0.898736349,0.298195886,1.392519141,44.78820232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.28049732,1.295432788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.008875377,43.05212367,56.2893727,44.34755646,0,28.26414916,-0.054875132,93.14569357,0.054875132,86.85430643,0,0,56.2893727,44.34755646,85.31396145,8,7,52% -2018-08-28 16:00:00,62.52065243,99.58224544,411.5700825,709.0840649,84.37823245,205.2835734,120.3470669,84.93650655,81.83391742,3.10258913,102.3342465,0,102.3342465,2.544315031,99.78993149,1.091191235,1.738038059,-1.672049399,1.672049399,0.816090977,0.816090977,0.205015466,2.648975617,85.20016165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.66187413,1.843347579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919173817,81.89763612,80.58104795,83.7409837,120.3470669,0,0.169721861,80.22835215,-0.169721861,99.77164785,0.755400354,0,171.4912649,83.7409837,226.2980639,8,8,32% -2018-08-28 17:00:00,51.11804695,110.8725231,603.2740317,801.3610748,100.2453435,413.1295457,311.3592347,101.770311,97.22257652,4.547734475,149.2935404,0,149.2935404,3.022766972,146.2707735,0.892178227,1.935090579,-0.937732723,0.937732723,0.69051543,0.69051543,0.166168836,3.37415576,108.5244478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.45403859,2.189984382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444564362,104.3178272,95.89860296,106.5078116,311.3592347,0,0.388538007,67.13643954,-0.388538007,112.8635605,0.921312461,0,382.7577457,106.5078116,452.4649782,8,9,18% -2018-08-28 18:00:00,40.6871791,125.5662322,755.3144062,849.7975518,110.9297187,611.6591569,498.3804995,113.2786574,107.5847784,5.69387904,186.4796628,0,186.4796628,3.344940305,183.1347225,0.710125239,2.191544182,-0.486146377,0.486146377,0.613289616,0.613289616,0.14686562,3.815377679,122.7156614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4145812,2.423397865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.76422814,117.9589615,106.1788093,120.3823594,498.3804995,0,0.586469681,54.09311574,-0.586469681,125.9068843,0.964744101,0,586.9884562,120.3823594,665.7763027,8,10,13% -2018-08-28 19:00:00,32.41917669,146.3480935,855.7201755,874.5775026,117.4468545,776.2569551,655.9007765,120.3561787,113.9053985,6.45078014,211.0207197,0,211.0207197,3.541455996,207.4792637,0.565821374,2.554256086,-0.149895302,0.149895302,0.555787296,0.555787296,0.137249136,3.978551587,127.9638952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4902017,2.565772814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882447081,123.0037634,112.3726487,125.5695362,655.9007765,0,0.74996301,41.41282618,-0.74996301,138.5871738,0.983330045,0,757.3395889,125.5695362,839.522339,8,11,11% -2018-08-28 20:00:00,28.42574742,174.7470067,897.048731,883.5345519,120.0377438,889.9483707,766.7678755,123.1804952,116.4181629,6.762332249,221.1194314,0,221.1194314,3.619580868,217.4998505,0.496122885,3.049910625,0.137783311,-0.137783311,0.506591356,0.506591356,0.133814072,3.872222185,124.5439761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9055664,2.622374018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805411791,119.7164071,114.7109782,122.3387811,766.7678755,0,0.867841415,29.7912413,-0.867841415,150.2087587,0.992385787,0,875.6405199,122.3387811,955.7088053,8,12,9% -2018-08-28 21:00:00,30.49063623,204.8105455,876.286889,879.1158549,118.7421238,941.1469303,819.379499,121.7674313,115.1616106,6.605820714,216.0464147,0,216.0464147,3.580513143,212.4659015,0.532161993,3.574618363,0.414983064,-0.414983064,0.459187406,0.459187406,0.135505992,3.517406329,113.1318785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6977205,2.594069584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548348912,108.7466648,113.2460694,111.3407344,819.379499,0,0.932049507,21.24341678,-0.932049507,158.7565832,0.996354781,0,929.6387506,111.3407344,1002.509034,8,13,8% -2018-08-28 22:00:00,37.61061743,228.1936873,794.9181542,860.1319193,113.5418056,923.0852395,806.9747095,116.11053,110.1181012,5.992428822,196.1608141,0,196.1608141,3.423704363,192.7371097,0.656429108,3.982731176,0.715272955,-0.715272955,0.40783481,0.40783481,0.142834586,2.950770708,94.90692917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8497074,2.480462156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.137823333,91.22815028,107.9875308,93.70861243,806.9747095,0,0.938198771,20.24876919,-0.938198771,159.7512308,0.996706389,0,912.3043797,93.70861243,973.6347924,8,14,7% -2018-08-28 23:00:00,47.50175239,244.5797153,658.8866453,820.9298083,104.2930176,833.3515556,727.2363914,106.1151642,101.1481983,4.966965847,162.8995148,0,162.8995148,3.144819281,159.7546955,0.82906198,4.268721316,1.08649552,-1.08649552,0.344352013,0.344352013,0.158286738,2.225858295,71.5912541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.22749559,2.278410864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.612626758,68.81623655,98.84012234,71.09464741,727.2363914,0,0.88586915,27.64133033,-0.88586915,152.3586697,0.993558256,0,821.3918429,71.09464741,867.9218678,8,15,6% -2018-08-28 00:00:00,58.67728769,256.7556205,478.5749083,746.7906833,90.3499597,672.72156,581.4882851,91.23327487,87.62557506,3.60769981,118.7604119,0,118.7604119,2.724384641,116.0360273,1.024111866,4.481230951,1.631834144,-1.631834144,0.251093616,0.251093616,0.188789588,1.415947652,45.54174379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22903575,1.973807398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025849254,43.7764564,85.254885,45.75026379,581.4882851,0,0.778649624,38.86289797,-0.778649624,141.137102,0.985786266,0,658.4780502,45.75026379,688.4206829,8,16,5% -2018-08-28 01:00:00,70.38088342,266.7896939,269.776261,597.4767047,69.16397781,441.9062976,372.7941815,69.1121161,67.07842869,2.033687409,67.49592695,0,67.49592695,2.085549119,65.41037783,1.228378146,4.65635857,2.685775475,-2.685775475,0.070859033,0.070859033,0.25637533,0.628547405,20.21624515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.47833711,1.510973237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455380455,19.4326238,64.93371757,20.94359704,372.7941815,0,0.623947643,51.39501116,-0.623947643,128.6049888,0.969865071,0,426.4937729,20.94359704,440.2009383,8,17,3% -2018-08-28 02:00:00,82.15425485,275.9473473,64.72346761,251.6700314,30.36886098,138.898725,108.9576844,29.94104061,29.45312777,0.487912838,16.60868727,0,16.60868727,0.915733208,15.69295406,1.433862242,4.816189773,6.525542656,-6.525542656,0,0,0.469209424,0.228933302,7.363281943,0.369395434,1,0.152061005,0,0.945088349,0.983850313,0.724496596,1,28.55574458,0.663445592,0.053776103,0.312029739,0.858846127,0.583342722,0.961238037,0.922476074,0.156845049,7.077866679,28.71258963,7.741312271,68.70921326,0,0.432938653,64.34580048,-0.432938653,115.6541995,0.934510196,0,92.92205001,7.741312271,97.98858406,8,18,5% -2018-08-28 03:00:00,93.91255448,285.1019999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639083285,4.975968602,-11.9621316,11.9621316,1,0,#DIV/0!,0,0,1,0.365401166,0,0.083403214,0.961238037,1,0.515350402,0.790853806,0,0,0.115824807,0.075296171,0.724496596,0.448993192,0.992681567,0.953919604,0,0,0,0,0,0,0.215045773,77.58178725,-0.215045773,102.4182127,0.817491362,0,0,0,0,8,19,0% -2018-08-28 04:00:00,105.0434747,295.0092308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833354491,5.148882401,-2.630547628,2.630547628,1,0.980003828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010380089,90.59474595,0.010380089,89.40525405,0,0,0,0,0,8,20,0% -2018-08-28 05:00:00,115.2371118,306.4630613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011267022,5.348789456,-1.172096806,1.172096806,1,0.730594048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229730688,103.2812168,0.229730688,76.71878324,0,0.832353849,0,0,0,8,21,0% -2018-08-28 06:00:00,123.8700084,320.3187871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16193949,5.590617492,-0.501758389,0.501758389,1,0.615959428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428059733,115.3444888,0.428059733,64.65551119,0,0.933193872,0,0,0,8,22,0% -2018-08-28 07:00:00,130.0509687,337.1955223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269817599,5.885172086,-0.058204684,0.058204684,1,0.540107277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591853244,126.2886306,0.591853244,53.71136943,0,0.965519598,0,0,0,8,23,0% -2018-08-29 08:00:00,132.7634898,356.6448331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317160023,6.224626597,0.309720723,-0.309720723,1,0.477188327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709950665,135.2309014,0.709950665,44.76909856,0,0.979572571,0,0,0,8,0,0% -2018-08-29 09:00:00,131.4075781,16.55466974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293494899,0.288933494,0.675383617,-0.675383617,1,0.414656289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774305621,140.7421202,0.774305621,39.25787983,0,0.985426014,0,0,0,8,1,0% -2018-08-29 10:00:00,126.2979609,34.44254968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204315257,0.601135895,1.107573369,-1.107573369,1,0.340747488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780534533,141.3095428,0.780534533,38.69045718,0,0.985941335,0,0,0,8,2,0% -2018-08-29 11:00:00,118.3875328,49.29275316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06625224,0.86032084,1.730884944,-1.730884944,1,0.234154931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728215718,136.7370192,0.728215718,43.2629808,0,0.981339027,0,0,0,8,3,0% -2018-08-29 12:00:00,108.6452585,61.47790418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896217478,1.072991845,2.930970893,-2.930970893,1,0.028928147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620918612,128.3832475,0.620918612,51.61675254,0,0.969474148,0,0,0,8,4,0% -2018-08-29 13:00:00,97.78366277,71.83276935,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70664687,1.253718336,7.311948762,-7.311948762,1,0,#DIV/0!,0,0,0.418693602,1,0.135919222,0,0.947057771,0.985819735,0.724496596,1,0,0,0.059759568,0.312029739,0.844551409,0.569048004,0.961238037,0.922476074,0,0,0,0,0,0,-0.465961039,117.7724366,0.465961039,62.22756343,0,0.942694891,0,0,0,8,5,0% -2018-08-29 14:00:00,86.08524288,81.18139873,15.71803341,77.12811815,10.45232306,10.25563613,0,10.25563613,10.13714695,0.118489175,24.99630532,20.87011003,4.126195281,0.315176105,3.811019176,1.502470926,1.416882699,-14.33568025,14.33568025,0,0,0.664989238,0.078794026,2.534286738,1,0.495382598,0,0.069643207,0.961238037,1,0.546058953,0.821562357,9.744211235,0.215921718,0.115824807,0.109969433,0.724496596,0.448993192,0.988861056,0.950099092,0.057086004,2.456486909,9.801297239,2.672408626,0,10.5314207,-0.270590163,105.699388,0.270590163,74.30061202,0,0.865218707,9.801297239,11.78439083,17.51394535,8,6,79% -2018-08-29 15:00:00,74.43191737,90.2824784,196.2318121,512.1491759,58.77955869,58.48641641,0,58.48641641,57.00713812,1.479278288,78.46447668,29.11338139,49.35109529,1.772420568,47.57867473,1.299082027,1.575726505,-3.366760338,3.366760338,0.894096384,0.894096384,0.299541436,1.369543805,44.04923654,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.79742953,1.284112668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.992229824,42.34180165,55.78965936,43.62591432,0,29.11338139,-0.056845511,93.25876452,0.056845511,86.74123548,0,0,55.78965936,43.62591432,84.34194776,8,7,51% -2018-08-29 16:00:00,62.68012325,99.94900958,408.9166134,708.0091746,83.97027937,203.4554388,118.934587,84.52085179,81.43826563,3.082586159,101.6785809,0,101.6785809,2.53201374,99.1465672,1.093974526,1.744439301,-1.67732696,1.67732696,0.816993493,0.816993493,0.205348173,2.634296582,84.7280334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28155858,1.834435336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.908538906,81.44380849,80.19009749,83.27824383,118.934587,0,0.167984528,80.32934412,-0.167984528,99.67065588,0.752353541,0,169.6709551,83.27824383,224.1749001,8,8,32% -2018-08-29 17:00:00,51.29862005,111.2761295,600.6056484,800.8557771,99.86140197,411.2725378,309.8947065,101.3778313,96.85021225,4.527619074,148.6349827,0,148.6349827,3.011189719,145.623793,0.895329822,1.942134839,-0.93802776,0.93802776,0.690565884,0.690565884,0.166267837,3.359560476,108.0550133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09610789,2.181596701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433990128,103.8665889,95.53009802,106.0481856,309.8947065,0,0.38695445,67.2348714,-0.38695445,112.7651286,0.920785825,0,380.8767509,106.0481856,450.2831674,8,9,18% -2018-08-29 18:00:00,40.90900709,126.0057016,752.5498917,849.491445,110.5462799,609.7928551,496.9069145,112.8859406,107.2129016,5.673038962,185.7978122,0,185.7978122,3.33337821,182.464434,0.713996867,2.19921437,-0.484470489,0.484470489,0.613003023,0.613003023,0.146895616,3.800091854,122.2240167,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0571191,2.415021166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753153612,117.4863739,105.8102727,119.9013951,496.9069145,0,0.584946343,54.20080049,-0.584946343,125.7991995,0.964522074,0,585.0879607,119.9013951,663.5610257,8,10,13% -2018-08-29 19:00:00,32.70517781,146.7633475,852.7677556,874.3282518,117.0537937,774.3012673,654.3485538,119.9527134,113.5241899,6.428523552,210.2930191,0,210.2930191,3.529603761,206.7634153,0.570813035,2.561503634,-0.14702768,0.14702768,0.555296904,0.555296904,0.137263391,3.962145654,127.436224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1237694,2.55718591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870561039,122.4965458,111.9943305,125.0537317,654.3485538,0,0.748401476,41.54790214,-0.748401476,138.4520979,0.983190939,0,755.3438994,125.0537317,837.1890657,8,11,11% -2018-08-29 20:00:00,28.7748359,174.9555394,893.8253744,883.2637803,119.6286132,887.7944843,765.0350819,122.7594024,116.0213692,6.738033226,220.3255545,0,220.3255545,3.607244072,216.7183104,0.502215628,3.053550207,0.141727303,-0.141727303,0.505916893,0.505916893,0.133838909,3.854454426,123.972504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5241531,2.613436051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.792539111,119.1670863,114.3166922,121.7805224,765.0350819,0,0.866145651,29.98621784,-0.866145651,150.0137822,0.992272988,0,873.4403392,121.7805224,953.1432555,8,12,9% -2018-08-29 21:00:00,30.85051501,204.714677,872.7277427,878.7526937,118.3114206,938.6794202,817.3565351,121.3228851,114.7438948,6.578990366,215.1704712,0,215.1704712,3.567525854,211.6029453,0.538443063,3.572945141,0.420257111,-0.420257111,0.458285491,0.458285491,0.135565096,3.498200959,112.5141678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2961961,2.584660337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534434686,108.1528978,112.8306308,110.7375581,817.3565351,0,0.930132608,21.54450437,-0.930132608,158.4554956,0.996244224,0,927.117358,110.7375581,999.592875,8,13,8% -2018-08-29 22:00:00,37.9407028,227.9460131,790.9835511,859.5734902,113.083068,920.1873203,804.5513559,115.6359644,109.6731963,5.962768121,195.1929914,0,195.1929914,3.409871732,191.7831197,0.662190184,3.978408446,0.72257586,-0.72257586,0.40658594,0.40658594,0.142965132,2.930244139,94.24672415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4220479,2.470440462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.122951904,90.5935361,107.5449998,93.06397657,804.5513559,0,0.935989028,20.61147873,-0.935989028,159.3885213,0.99658057,0,909.345249,93.06397657,970.2537604,8,14,7% -2018-08-29 23:00:00,47.80172197,244.3022569,654.5695336,819.973255,103.7948718,829.8942891,724.294794,105.5994951,100.6650734,4.934421636,161.8377601,0,161.8377601,3.129798347,158.7079618,0.834297437,4.263878753,1.097463993,-1.097463993,0.342476294,0.342476294,0.158569665,2.204401585,70.90113256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.76309758,2.267528248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597081444,68.15286547,98.36017902,70.42039372,724.294794,0,0.883315144,27.9551098,-0.883315144,152.0448902,0.993395061,0,817.87105,70.42039372,863.9597893,8,15,6% -2018-08-29 00:00:00,58.95861246,256.4867632,473.9167171,744.9398236,89.78319738,668.5164049,577.8679178,90.64848711,87.07590272,3.572584397,117.6138895,0,117.6138895,2.707294666,114.9065949,1.02902191,4.476538505,1.650922288,-1.650922288,0.247829351,0.247829351,0.189449315,1.394478169,44.85121139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.70066978,1.961425769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.010294686,43.11269038,84.71096447,45.07411615,577.8679178,0,0.775724293,39.12925433,-0.775724293,140.8707457,0.98554411,0,654.2252869,45.07411615,683.7253945,8,16,5% -2018-08-29 01:00:00,70.65417235,266.5359264,264.9414897,593.2192809,68.42622507,436.543413,368.1832502,68.36016278,66.36292192,1.997240861,66.30143472,0,66.30143472,2.063303152,64.23813156,1.233147938,4.65192949,2.730447205,-2.730447205,0.063219717,0.063219717,0.258269194,0.60948043,19.60298572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79056479,1.49485611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.441566497,18.84313551,64.23213128,20.33799162,368.1832502,0,0.620652872,51.63617369,-0.620652872,128.3638263,0.96943967,0,421.16358,20.33799162,434.4743887,8,17,3% -2018-08-29 02:00:00,82.42588892,275.7071685,60.76240413,240.5545392,29.05527137,131.9165742,103.2793738,28.6372004,28.17914774,0.458052669,15.608672,0,15.608672,0.876123634,14.73254836,1.438603151,4.811997861,6.776205776,-6.776205776,0,0,0.478178436,0.219030909,7.044786934,0.385992931,1,0.146517677,0,0.945771345,0.984533309,0.724496596,1,27.32169755,0.634748591,0.055817245,0.312029739,0.853937824,0.57843442,0.961238037,0.922476074,0.149987282,6.771717163,27.47168483,7.406465753,63.41426553,0,0.429338703,64.57440012,-0.429338703,115.4255999,0.933541829,0,86.67155426,7.406465753,91.51893796,8,18,6% -2018-08-29 03:00:00,94.19654176,284.8737378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644039798,4.971984677,-11.18115291,11.18115291,1,0,#DIV/0!,0,0,1,0.306635783,0,0.089198891,0.961238037,1,0.502869065,0.778372469,0,0,0.115824807,0.061187776,0.724496596,0.448993192,0.994155537,0.955393573,0,0,0,0,0,0,0.211080987,77.81429166,-0.211080987,102.1857083,0.813124094,0,0,0,0,8,19,0% -2018-08-29 04:00:00,105.3430757,294.7948288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838583515,5.145140381,-2.586345013,2.586345013,1,0.972444736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014582143,90.83552489,0.014582143,89.16447511,0,0,0,0,0,8,20,0% -2018-08-29 05:00:00,115.5580763,306.2725004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016868908,5.345463541,-1.16106237,1.16106237,1,0.728707049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234085533,103.5377242,0.234085533,76.46227578,0,0.836402862,0,0,0,8,21,0% -2018-08-29 06:00:00,124.2147617,320.176623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167956572,5.588136259,-0.4987261,0.4987261,1,0.615440876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.43247246,115.6245713,0.43247246,64.37542869,0,0.934385702,0,0,0,8,22,0% -2018-08-29 07:00:00,130.4132884,337.1441706,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27614127,5.884275831,-0.058514314,0.058514314,1,0.540160227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596225035,126.6000114,0.596225035,53.3999886,0,0.966139046,0,0,0,8,23,0% -2018-08-30 08:00:00,133.1232859,356.7249591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32343965,6.22602506,0.307275587,-0.307275587,1,0.477606469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714185579,135.5764941,0.714185579,44.42350589,0,0.979990185,0,0,0,8,0,0% -2018-08-30 09:00:00,131.7376132,16.76197435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299255099,0.292551642,0.670845562,-0.670845562,1,0.415432342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778317184,141.1067555,0.778317184,38.89324448,0,0.985758838,0,0,0,8,1,0% -2018-08-30 10:00:00,126.5817655,34.72739965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209268581,0.606107464,1.100033383,-1.100033383,1,0.342036902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784251675,141.6515202,0.784251675,38.34847978,0,0.986244956,0,0,0,8,2,0% -2018-08-30 11:00:00,118.6252472,49.60776926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07040114,0.865818908,1.717382426,-1.717382426,1,0.236463998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731587659,137.0196587,0.731587659,42.98034127,0,0.98165549,0,0,0,8,3,0% -2018-08-30 12:00:00,108.8458828,61.79989888,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899719031,1.078611713,2.899833794,-2.899833794,1,0.034252905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623918349,128.6028411,0.623918349,51.39715891,0,0.969861309,0,0,0,8,4,0% -2018-08-30 13:00:00,97.95818806,72.15651687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709692911,1.259368796,7.148176385,-7.148176385,1,0,#DIV/0!,0,0,0.409073022,1,0.138993763,0,0.946687219,0.985449182,0.724496596,1,0,0,0.058610468,0.312029739,0.847274596,0.571771192,0.961238037,0.922476074,0,0,0,0,0,0,-0.468587203,117.9426278,0.468587203,62.05737217,0,0.943296275,0,0,0,8,5,0% -2018-08-30 14:00:00,86.23855756,81.51081568,14.40171327,71.46589505,9.71337842,9.52905042,0,9.52905042,9.420484222,0.108566198,23.27872747,19.49397116,3.784756318,0.292894198,3.49186212,1.505146772,1.42263211,-14.90457806,14.90457806,0,0,0.674459923,0.073223549,2.355121056,1,0.518996431,0,0.066993076,0.961238037,1,0.552146788,0.827650192,9.05532776,0.200534379,0.115824807,0.116840837,0.724496596,0.448993192,0.98807079,0.949308827,0.053050212,2.283115931,9.108377972,2.483650311,0,9.376669707,-0.272773064,105.8293472,0.272773064,74.17065283,0,0.866697443,9.108377972,10.61038597,16.05266338,8,6,76% -2018-08-30 15:00:00,74.58551481,90.6260738,193.5961699,509.176539,58.25712421,57.95986668,0,57.95986668,56.50045697,1.459409704,78.64190643,29.94560641,48.69630002,1.756667241,46.93963278,1.301762808,1.581723376,-3.394408948,3.394408948,0.889368193,0.889368193,0.300920851,1.346538389,43.30930329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.31038834,1.272699436,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.975562479,41.63054967,55.28595082,42.90324911,0,29.94560641,-0.058811835,93.37161546,0.058811835,86.62838454,0,0,55.28595082,42.90324911,83.3652693,8,7,51% -2018-08-30 16:00:00,62.84086496,100.3179211,406.237128,706.9077972,83.55955311,201.6212775,117.5189661,84.10231135,81.03992428,3.062387066,101.0165238,0,101.0165238,2.519628828,98.49689494,1.096779998,1.750878022,-1.682629729,1.682629729,0.81790032,0.81790032,0.205691571,2.619433263,84.24997797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.89865772,1.825462509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.897770482,80.98428343,79.7964282,82.80974594,117.5189661,0,0.166243698,80.43050899,-0.166243698,99.56949101,0.749236719,0,167.8459528,82.80974594,222.0432753,8,8,32% -2018-08-30 17:00:00,51.48108439,111.681296,597.9002694,800.332789,99.47463929,409.3974542,308.4151176,100.9823367,96.4751119,4.507224785,147.96737,0,147.96737,2.999527397,144.9678426,0.898514425,1.949206329,-0.938289803,0.938289803,0.690610696,0.690610696,0.166373297,3.34474307,107.5784346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.73554716,2.173147388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.423254968,103.4084833,95.15880213,105.5816307,308.4151176,0,0.385358593,67.33399604,-0.385358593,112.666004,0.92025072,0,378.9780361,105.5816307,448.0791018,8,9,18% -2018-08-30 18:00:00,41.13338449,126.4453734,749.7380657,849.1704482,110.1596705,607.8968127,495.4070205,112.4897922,106.83795,5.65184223,185.1043947,0,185.1043947,3.321720511,181.7826742,0.717912992,2.20688809,-0.482746095,0.482746095,0.612708134,0.612708134,0.146930876,3.78454854,121.7240903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6967013,2.406575203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.741892534,117.0058256,105.4385938,119.4124008,495.4070205,0,0.583401155,54.30988091,-0.583401155,125.6901191,0.964295679,0,583.1574429,119.4124008,661.310471,8,10,13% -2018-08-30 19:00:00,32.99406501,147.1765934,849.75875,874.0646494,116.6571464,772.3042007,652.7588572,119.5453434,113.139503,6.405840397,209.5514905,0,209.5514905,3.517643383,206.0338471,0.575855068,2.568716137,-0.144101285,0.144101285,0.554796461,0.554796461,0.137282666,3.945454401,126.899376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7539938,2.548520657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858468283,121.980507,111.6124621,124.5290277,652.7588572,0,0.74680844,41.68533373,-0.74680844,138.3146663,0.983048427,0,753.3060297,124.5290277,834.8077877,8,11,11% -2018-08-30 20:00:00,29.12655585,175.1628955,890.5377795,882.9777307,119.2154798,885.588106,763.2541628,122.3339432,115.6206932,6.713249947,219.5159815,0,219.5159815,3.594786574,215.9211949,0.508354299,3.057169254,0.145743586,-0.145743586,0.505230068,0.505230068,0.133869087,3.836383807,123.3912907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1390082,2.604410636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779447009,118.6084021,113.9184552,121.2128127,763.2541628,0,0.864409301,30.18467658,-0.864409301,149.8153234,0.992157031,0,871.1864396,121.2128127,950.5178012,8,12,9% -2018-08-30 21:00:00,31.21324245,204.6219635,869.0988699,878.3716873,117.8763078,936.1493564,815.2758199,120.8735366,114.3219022,6.55163439,214.2774887,0,214.2774887,3.554405597,210.7230831,0.544773851,3.571326984,0.425626198,-0.425626198,0.457367323,0.457367323,0.135630493,3.478687638,111.8865524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8905608,2.575154755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520297352,107.5496099,112.4108582,110.1247647,815.2758199,0,0.928167234,21.84910083,-0.928167234,158.1508992,0.996130397,0,924.5318846,110.1247647,996.6063406,8,13,8% -2018-08-30 22:00:00,38.27412879,227.7016067,786.9763558,858.9919137,112.6194761,917.2180826,802.061939,115.1561435,109.2235833,5.93256019,194.2074215,0,194.2074215,3.395892725,190.8115288,0.668009566,3.974142749,0.730016912,-0.730016912,0.405313445,0.405313445,0.143104015,2.909419345,93.57692721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9898628,2.460312719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107864412,89.94970181,107.0977272,92.41001453,802.061939,0,0.933724668,20.97692668,-0.933724668,159.0230733,0.996451024,0,906.3131676,92.41001453,966.7936739,8,14,7% -2018-08-30 23:00:00,48.10509775,244.0264812,650.1800215,818.9823204,103.2912035,826.3577488,721.2798245,105.0779242,100.1765926,4.901331639,160.7582846,0,160.7582846,3.114610888,157.6436737,0.839592343,4.259065558,1.108664917,-1.108664917,0.340560823,0.340560823,0.158865545,2.182675646,70.20235166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.29355119,2.256524986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581341075,67.48117069,97.87489226,69.73769568,721.2798245,0,0.880702558,28.27277097,-0.880702558,151.727229,0.993227143,0,814.269592,69.73769568,859.9115191,8,15,6% -2018-08-30 00:00:00,59.24315501,256.218402,469.1902325,743.0270755,89.20934131,664.2222343,574.1659296,90.05630469,86.51935053,3.53695416,116.4505948,0,116.4505948,2.689990788,113.760604,1.033988114,4.47185472,1.670504932,-1.670504932,0.244480521,0.244480521,0.190134694,1.372801507,44.15401543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.16569065,1.948889169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994590018,42.44251911,84.16028067,44.39140828,574.1659296,0,0.772738906,39.39951863,-0.772738906,140.6004814,0.985295092,0,649.8831529,44.39140828,678.9364418,8,16,4% -2018-08-30 01:00:00,70.93041857,266.281921,260.0511247,588.8149046,67.67577096,431.0705284,363.4750564,67.59547199,65.63509677,1.960375224,65.09308014,0,65.09308014,2.040674191,63.05240595,1.237969344,4.647496259,2.776774771,-2.776774771,0.055297237,0.055297237,0.260240255,0.59036097,18.98803815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.09095157,1.478461505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427714513,18.25202452,63.51866608,19.73048602,363.4750564,0,0.617299347,51.88081438,-0.617299347,128.1191856,0.96900202,0,415.7267301,19.73048602,428.6399386,8,17,3% -2018-08-30 02:00:00,82.7000302,275.4662654,56.83063054,229.1516157,27.71368996,124.8533628,97.54692951,27.30643326,26.87801996,0.428413298,14.61491434,0,14.61491434,0.835670005,13.77924434,1.443387818,4.807793309,7.047787334,-7.047787334,0,0,0.4876541,0.208917501,6.71950499,0.403016769,1,0.14094766,0,0.946450611,0.985212574,0.724496596,1,26.06068231,0.605440074,0.057882537,0.312029739,0.849005104,0.573501699,0.961238037,0.922476074,0.143011173,6.459043785,26.20369348,7.064483859,58.23388115,0,0.425687287,64.80582584,-0.425687287,115.1941742,0.932542886,0,80.50928509,7.064483859,85.13284848,8,18,6% -2018-08-30 03:00:00,94.48312506,284.6443846,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64904162,4.967981709,-10.49285625,10.49285625,1,0,#DIV/0!,0,0,1,0.245019653,0,0.095015963,0.961238037,1,0.490612285,0.766115689,0,0,0.115824807,0.04731673,0.724496596,0.448993192,0.995558841,0.956796878,0,0,0,0,0,0,0.207066256,78.04951746,-0.207066256,101.9504825,0.808531395,0,0,0,0,8,19,0% -2018-08-30 04:00:00,105.6451871,294.57905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843856354,5.14137433,-2.543364163,2.543364163,1,0.965094577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018826543,91.07874521,0.018826543,88.92125479,0,0,0,0,0,8,20,0% -2018-08-30 05:00:00,115.8815682,306.0804417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022514907,5.342111484,-1.150155647,1.150155647,1,0.726841889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.238473795,103.79648,0.238473795,76.20351999,0,0.840333357,0,0,0,8,21,0% -2018-08-30 06:00:00,124.562153,320.0333249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174019694,5.585635236,-0.495694267,0.495694267,1,0.614922402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436908962,115.9068265,0.436908962,64.09317354,0,0.935559683,0,0,0,8,22,0% -2018-08-30 07:00:00,130.7783087,337.0931134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282512076,5.883384715,-0.058796539,0.058796539,1,0.54020849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600610909,126.9136633,0.600610909,53.08633671,0,0.966751429,0,0,0,8,23,0% -2018-08-31 08:00:00,133.4854729,356.8078907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329761005,6.22747249,0.304869664,-0.304869664,1,0.478017907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7184255,135.9246394,0.7184255,44.07536063,0,0.980403361,0,0,0,8,0,0% -2018-08-31 09:00:00,132.0692494,16.97406938,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305043243,0.296253398,0.666360402,-0.666360402,1,0.41619935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78232592,141.4740305,0.78232592,38.52596948,0,0.986088018,0,0,0,8,1,0% -2018-08-31 10:00:00,126.8663373,35.01732059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214235297,0.61116754,1.092575301,-1.092575301,1,0.343312309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787959938,141.9952712,0.787959938,38.00472885,0,0.986544997,0,0,0,8,2,0% -2018-08-31 11:00:00,118.8632268,49.92717624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074554667,0.871393612,1.704045417,-1.704045417,1,0.238744761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734946865,137.3027265,0.734946865,42.69727355,0,0.981967871,0,0,0,8,3,0% -2018-08-31 12:00:00,109.0466145,62.1255143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903222461,1.084294774,2.869240484,-2.869240484,1,0.039484669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626903956,128.8220696,0.626903956,51.17793037,0,0.970242966,0,0,0,8,4,0% -2018-08-31 13:00:00,98.13290198,72.48330327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712742244,1.265072295,6.990986228,-6.990986228,1,0,#DIV/0!,0,0,0.399534771,1,0.142077558,0,0.94631339,0.985075353,0.724496596,1,0,0,0.057462412,0.312029739,0.850005782,0.574502378,0.961238037,0.922476074,0,0,0,0,0,0,-0.471200399,118.1122453,0.471200399,61.88775472,0,0.943888036,0,0,0,8,5,0% -2018-08-31 14:00:00,86.39197918,81.84287167,13.13701904,65.92792391,8.988159466,8.816165694,0,8.816165694,8.717133295,0.099032399,21.58256313,18.1263146,3.456248533,0.271026171,3.185222362,1.507824484,1.42842758,-15.52154157,15.52154157,0,0,0.684185616,0.067756543,2.179283324,1,0.542228007,0,0.064337671,0.961238037,1,0.55830283,0.833806234,8.379240096,0.185495887,0.115824807,0.123789382,0.724496596,0.448993192,0.987260595,0.948498632,0.049089385,2.11285104,8.42832948,2.298346927,0,8.297719154,-0.274941383,105.958521,0.274941383,74.04147898,0,0.868143055,8.42832948,9.501954183,14.64716845,8,6,74% -2018-08-31 15:00:00,74.73990274,90.97200755,190.9477978,506.1431761,57.73028857,57.42895252,0,57.42895252,55.98950736,1.439445156,78.79886217,30.76057668,48.03828549,1.740781202,46.29750429,1.304457385,1.587761059,-3.422598205,3.422598205,0.884547546,0.884547546,0.302335451,1.323502046,42.56837531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.81924414,1.261190055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.958872727,40.91834152,54.77811687,42.17953157,0,30.76057668,-0.060774457,93.48426701,0.060774457,86.51573299,0,0,54.77811687,42.17953157,82.3837767,8,7,50% -2018-08-31 16:00:00,63.00290502,100.6888381,403.5310949,705.7790845,83.14598025,199.7805808,116.0997708,83.68081001,80.63882217,3.041987845,100.347944,0,100.347944,2.50715808,97.84078587,1.099608131,1.757351744,-1.687961839,1.687961839,0.818812165,0.818812165,0.20604603,2.604383289,83.76591908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.51310311,1.816427495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.886866827,80.51898761,79.39996994,82.33541511,116.0997708,0,0.164498741,80.53188344,-0.164498741,99.46811656,0.746046306,0,166.015775,82.33541511,219.9026575,8,8,32% -2018-08-31 17:00:00,51.66546488,112.0878474,595.1573133,799.7916244,99.08500316,407.5035138,306.9197418,100.583772,96.09722473,4.486547223,147.2905595,0,147.2905595,2.98777843,144.3027811,0.901732472,1.956301989,-0.938520795,0.938520795,0.690650198,0.690650198,0.1664854,3.329701894,107.0946587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37230765,2.164635302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.412357688,102.9434595,94.78466533,105.1080948,306.9197418,0,0.383749632,67.43386218,-0.383749632,112.5661378,0.919706716,0,377.060813,105.1080948,445.8519589,8,9,18% -2018-08-31 18:00:00,41.36031791,126.8850316,746.8784333,848.8342349,109.7698526,605.9701479,493.8799762,112.0901717,106.4598866,5.630285113,184.3992893,0,184.3992893,3.309966065,181.0893232,0.721873727,2.214561574,-0.480974517,0.480974517,0.612405176,0.612405176,0.146971512,3.768747175,121.2158641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3332924,2.398059146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730444499,116.5172993,105.0637369,118.9153584,493.8799762,0,0.581833244,54.42041321,-0.581833244,125.5795868,0.964064725,0,581.1960001,118.9153584,659.0237239,8,10,13% -2018-08-31 19:00:00,33.28580543,147.5876204,846.6928672,873.7864538,116.2568903,770.2649187,651.1308742,119.1340446,112.7513161,6.382728477,208.7960625,0,208.7960625,3.505574184,205.2904883,0.580946899,2.575889912,-0.141117143,0.141117143,0.554286142,0.554286142,0.137307039,3.928478693,126.3533788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3808537,2.539776563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.84616944,121.4556738,111.2270232,123.9954504,651.1308742,0,0.745183072,41.82517414,-0.745183072,138.1748259,0.982902394,0,751.2251184,123.9954504,832.3776607,8,11,11% -2018-08-31 20:00:00,29.48083381,175.3689056,887.185958,882.6762082,118.7983392,883.3285777,761.4244642,121.9041134,115.2161309,6.687982501,218.6907153,0,218.6907153,3.582208245,215.108507,0.514537616,3.060764809,0.149831366,-0.149831366,0.504531017,0.504531017,0.133904666,3.818012881,122.8004186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7501275,2.59529768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766137336,118.0404333,113.5162648,120.635731,761.4244642,0,0.862631684,30.38663506,-0.862631684,149.6133649,0.992037835,0,868.8781419,120.635731,947.8318151,8,12,9% -2018-08-31 21:00:00,31.57870868,204.5322289,865.4006642,877.9726574,117.4368015,933.5563746,813.1369702,120.4194044,113.8956487,6.523755754,213.3675632,0,213.3675632,3.541152862,209.8264103,0.55115244,3.56976082,0.431089848,-0.431089848,0.456432984,0.456432984,0.135702232,3.458870778,111.249174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4808297,2.565553194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505940104,106.9369376,111.9867698,109.5024908,813.1369702,0,0.926152954,22.15714226,-0.926152954,157.8428577,0.996013237,0,921.8819556,109.5024908,993.5491458,8,13,8% -2018-08-31 22:00:00,38.61076953,227.4604044,782.8973965,858.3869839,112.1510674,914.1775423,799.506432,114.6711102,108.769299,5.901811272,193.2043063,0,193.2043063,3.381768477,189.8225379,0.673885055,3.969932975,0.73759633,-0.73759633,0.404017288,0.404017288,0.143251297,2.888302674,92.89774246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.5531874,2.45007975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092565455,89.29684359,106.6457529,91.74692334,799.506432,0,0.931405586,21.34500898,-0.931405586,158.654991,0.996317694,0,903.2081573,91.74692334,963.2546837,8,14,7% -2018-08-31 23:00:00,48.41175738,243.7523939,645.7194013,817.9566526,102.7820673,822.7423661,718.1918518,104.5505143,99.68280873,4.8677056,159.6614033,0,159.6614033,3.099258554,156.5621447,0.844944563,4.254281833,1.120100595,-1.120100595,0.338605207,0.338605207,0.159174507,2.160688828,69.49518004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.81890737,2.245402272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.565411701,66.80141043,97.38431907,69.0468127,718.1918518,0,0.878031677,28.5941702,-0.878031677,151.4058298,0.993054446,0,810.5879308,69.0468127,855.7776888,8,15,6% -2018-08-31 00:00:00,59.53079729,255.9505602,464.3972399,741.0515009,88.62843753,659.8398072,570.3830216,89.45678569,85.95596314,3.500822556,115.2709618,0,115.2709618,2.672474396,112.5984874,1.039008419,4.467179997,1.690592952,-1.690592952,0.241045268,0.241045268,0.190846176,1.350928483,43.4505038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.62414126,1.936198602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.978743087,41.76627697,83.60288435,43.70247557,570.3830216,0,0.769694172,39.67356628,-0.769694172,140.3264337,0.985039134,0,645.4524819,43.70247557,674.0548781,8,16,4% -2018-08-31 01:00:00,71.20950428,266.0276984,255.1077111,584.2600163,66.91250042,425.4882892,358.6703379,66.81795134,64.89484165,1.923109684,63.87147687,0,63.87147687,2.017658769,61.8538181,1.242840308,4.643059239,2.824831823,-2.824831823,0.047078997,0.047078997,0.262291172,0.57120543,18.37193012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37939019,1.461786909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.413836389,17.65979804,62.79322658,19.12158495,358.6703379,0,0.613888214,52.12881972,-0.613888214,127.8711803,0.968551947,0,410.1840805,19.12158495,422.6987754,8,17,3% -2018-08-31 02:00:00,82.97653552,275.2246495,52.93713414,217.47564,26.34512346,117.7215331,91.77174984,25.94978326,25.55072078,0.399062478,13.62962373,0,13.62962373,0.794402675,12.83522106,1.448213747,4.803576316,7.342870739,-7.342870739,0,0,0.497668109,0.198600669,6.387680196,0.420475021,1,0.135353825,0,0.94712568,0.985887643,0.724496596,1,24.77370308,0.575542034,0.059971375,0.312029739,0.844050604,0.5685472,0.961238037,0.922476074,0.135920212,6.140081171,24.90962329,6.715623205,53.18402136,0,0.421986342,65.03994276,-0.421986342,114.9600572,0.931512753,0,74.45121744,6.715623205,78.84645851,8,18,6% -2018-08-31 03:00:00,94.77218367,284.4139383,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654086644,4.963959662,-9.881910408,9.881910408,1,0,#DIV/0!,0,0,1,0.180368109,0,0.100851688,0.961238037,1,0.478589053,0.754092457,0,0,0.115824807,0.033687993,0.724496596,0.448993192,0.996893074,0.958131111,0,0,0,0,0,0,0.203003447,78.28735234,-0.203003447,101.7126477,0.803698764,0,0,0,0,8,19,0% -2018-08-31 04:00:00,105.949686,294.3618733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849170863,5.137583881,-2.501574243,2.501574243,1,0.95794808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023111157,91.32428965,0.023111157,88.67571035,0,0,0,0,0,8,20,0% -2018-08-31 05:00:00,116.2074651,305.886839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028202881,5.33873248,-1.139380645,1.139380645,1,0.724999255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242893172,104.0573608,0.242893172,75.94263916,0,0.844148186,0,0,0,8,21,0% -2018-08-31 06:00:00,124.9120659,319.8888219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180126826,5.583113183,-0.492666105,0.492666105,1,0.614404556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441366872,116.1911255,0.441366872,63.8088745,0,0.936715558,0,0,0,8,22,0% -2018-08-31 07:00:00,131.1459259,337.0422775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288928208,5.88249746,-0.059053506,0.059053506,1,0.540252434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605008543,127.2294566,0.605008543,52.7705434,0,0.967356539,0,0,0,8,23,0% -2018-09-01 08:00:00,133.8499586,356.8935882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33612248,6.228968194,0.302501355,-0.302501355,1,0.478422911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72266826,136.2752186,0.72266826,43.72478142,0,0.980811961,0,0,0,9,0,0% -2018-09-01 09:00:00,132.4024016,17.19092861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310857845,0.300038306,0.661926678,-0.661926678,1,0.416957561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78632991,141.8438465,0.78632991,38.15615349,0,0.986413458,0,0,0,9,1,0% -2018-09-01 10:00:00,127.1516058,35.31225656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21921417,0.616315143,1.085197279,-1.085197279,1,0.344574025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791657731,142.3407001,0.791657731,37.65929995,0,0.986841392,0,0,0,9,2,0% -2018-09-01 11:00:00,119.1014235,50.25088824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078711984,0.877043452,1.690870107,-1.690870107,1,0.240997871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738292132,137.5861339,0.738292132,42.41386607,0,0.982276131,0,0,0,9,3,0% -2018-09-01 12:00:00,109.2474293,62.45465019,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90672734,1.090039279,2.839174609,-2.839174609,1,0.044626236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629874647,129.0408748,0.629874647,50.95912519,0,0.970619126,0,0,0,9,4,0% -2018-09-01 13:00:00,98.30779968,72.81302204,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715794785,1.270826973,6.839972319,-6.839972319,1,0,#DIV/0!,0,0,0.390076719,1,0.145170945,0,0.945936226,0.984698189,0.724496596,1,0,0,0.056315271,0.312029739,0.852745247,0.577241843,0.961238037,0.922476074,0,0,0,0,0,0,-0.473800258,118.2812636,0.473800258,61.71873636,0,0.944470298,0,0,0,9,5,0% -2018-09-01 14:00:00,86.545492,82.17745441,11.925807,60.5300861,8.278505155,8.118779451,0,8.118779451,8.02887768,0.089901771,19.91374491,16.77256745,3.141177454,0.249627475,2.89154998,1.510503788,1.43426715,-16.19295262,16.19295262,0,0,0.694167292,0.062406869,2.00721942,1,0.565087235,0,0.061676934,0.961238037,1,0.564527512,0.840030916,7.717662619,0.170831928,0.115824807,0.130815911,0.724496596,0.448993192,0.98643004,0.947668076,0.045213564,1.946143681,7.762876183,2.11697561,0,7.294603692,-0.277094723,106.086885,0.277094723,73.91311504,0,0.86955629,7.762876183,8.46004413,13.29980587,9,6,71% -2018-09-01 15:00:00,74.89510136,91.32015695,188.2864878,503.047156,57.19891186,56.8935367,0,56.8935367,55.47415362,1.419383078,78.93502025,31.55802314,47.37699711,1.724758234,45.65223888,1.307166112,1.593837412,-3.451354093,3.451354093,0.87963,0.87963,0.303786599,1.300434223,41.82643484,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.32386652,1.249581469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.942160168,40.20516011,54.26602669,41.45474158,0,31.55802314,-0.062733727,93.59673962,0.062733727,86.40326038,0,0,54.26602669,41.45474158,81.39732596,9,7,50% -2018-09-01 16:00:00,63.16626913,101.0616183,400.7980137,704.6221811,82.72948891,197.9328581,114.6765838,83.2562743,80.23488958,3.021384725,99.67271802,0,99.67271802,2.49459933,97.17811869,1.102459373,1.763857986,-1.693327529,1.693327529,0.819729752,0.819729752,0.206411923,2.58914446,83.27578598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.12482774,1.807328723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.875826348,80.04785303,79.00065409,81.85518175,114.6765838,0,0.16274904,80.63350347,-0.16274904,99.36649653,0.742778527,0,164.1799581,81.85518175,217.7525374,9,8,33% -2018-09-01 17:00:00,51.85178376,112.4956093,592.3762373,799.2317985,98.69244355,405.5899605,305.4078759,100.1820845,95.71650224,4.465582297,146.6044183,0,146.6044183,2.975941309,143.628477,0.90498435,1.963418776,-0.938722701,0.938722701,0.690684726,0.690684726,0.166604326,3.31443551,106.6036393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.00634271,2.156059348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401297245,102.471473,94.40763995,104.6275323,305.4078759,0,0.382126783,67.53451715,-0.382126783,112.4654828,0.919153375,0,375.1243197,104.6275323,443.6009471,9,9,18% -2018-09-01 18:00:00,41.58981038,127.3244639,743.9705451,848.4824824,109.3767911,604.0120132,492.3249717,111.6870415,106.0786773,5.608364224,183.6823859,0,183.6823859,3.298113808,180.3842721,0.725879126,2.222231113,-0.479157082,0.479157082,0.612094376,0.612094376,0.147017636,3.752687426,120.6993274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9668595,2.389472227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718809265,116.0207845,104.6856688,118.4102567,492.3249717,0,0.580241763,54.53245122,-0.580241763,125.4675488,0.963829022,0,579.2027649,118.4102567,656.6999098,9,10,13% -2018-09-01 19:00:00,33.58036253,147.9962262,843.5698666,873.4934274,115.8530057,768.1826275,649.4638313,118.7187961,112.3596101,6.35918598,208.0266763,0,208.0266763,3.493395574,204.5332807,0.58608789,2.583021428,-0.138076278,0.138076278,0.553766124,0.553766124,0.137336586,3.911219632,125.7982681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0043311,2.530953202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833665309,120.9220803,110.8379964,123.4530335,649.4638313,0,0.743524577,41.96747267,-0.743524577,138.0325273,0.982752727,0,749.1003479,123.4530335,829.8978893,9,11,11% -2018-09-01 20:00:00,29.83759435,175.5734103,883.7699759,882.3590217,118.37719,881.0152899,759.5453776,121.4699124,114.807681,6.662231384,217.8497716,0,217.8497716,3.569509045,214.2802626,0.520764262,3.064334089,0.153989851,-0.153989851,0.503819874,0.503819874,0.133945702,3.799344439,122.1999773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3575099,2.586097152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.752612113,117.4632663,113.110122,120.0493635,759.5453776,0,0.860812162,30.5921049,-0.860812162,149.4078951,0.991915319,0,866.5148174,120.0493635,945.0847248,9,12,9% -2018-09-01 21:00:00,31.94680354,204.445303,861.6335733,877.5554293,116.9929211,930.9001629,810.9396522,119.9605107,113.4651529,6.495357831,212.4408037,0,212.4408037,3.52776823,208.9130355,0.557576907,3.568243678,0.436647589,-0.436647589,0.455482554,0.455482554,0.135780365,3.438755011,110.6021818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0670208,2.555856073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491366299,106.3150241,111.5583871,108.8708802,810.9396522,0,0.92408938,22.46856065,-0.92408938,157.5314394,0.99589268,0,919.1672504,108.8708802,990.4210641,9,13,8% -2018-09-01 22:00:00,38.95049889,227.2223413,778.7475536,857.7584966,111.6778825,911.0657689,796.8848585,114.1809103,108.3103823,5.870528004,192.1838606,0,192.1838606,3.367500206,188.8163604,0.679814451,3.96577799,0.745314348,-0.745314348,0.402697429,0.402697429,0.143407041,2.866900669,92.20938042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1120593,2.439742436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.077059775,88.63516382,106.1891191,91.07490625,796.8848585,0,0.929031728,21.71562127,-0.929031728,158.2843787,0.996180525,0,900.0302957,91.07490625,959.6370004,9,14,7% -2018-09-01 23:00:00,48.72157787,243.4799989,641.189013,816.8958979,102.2675202,819.0486239,715.0312931,104.0173308,99.18377714,4.833553619,158.5474427,0,158.5474427,3.083743061,155.4636996,0.850351951,4.249527643,1.131773398,-1.131773398,0.33660904,0.33660904,0.159496682,2.13844966,68.77989194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.33921922,2.23416135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549299499,66.1138483,96.88851872,68.34800965,715.0312931,0,0.875302832,28.91916398,-0.875302832,151.080836,0.992876913,0,806.8265816,68.34800965,851.558987,9,15,6% -2018-09-01 00:00:00,59.82142054,255.6832594,459.5395675,739.0121411,88.04053297,655.369926,566.5199366,88.84998944,85.38578607,3.46420337,114.0754354,0,114.0754354,2.654746904,111.4206885,1.044080752,4.462514719,1.71119765,-1.71119765,0.237521657,0.237521657,0.191584227,1.328870079,42.74102972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07606537,1.923355095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.962761849,41.0843035,83.03882722,43.00765859,566.5199366,0,0.766590838,39.95127162,-0.766590838,140.0487284,0.984776158,0,640.9341536,43.00765859,669.081806,9,16,4% -2018-09-01 01:00:00,71.49131104,265.7732791,250.1138507,579.5509452,66.13629164,419.797367,353.7698647,66.02750229,64.14203843,1.885463855,62.63725203,0,62.63725203,1.99425321,60.64299882,1.247758764,4.638618784,2.874696787,-2.874696787,0.038551586,0.038551586,0.264424747,0.552030518,17.75519907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6557671,1.444829662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.399944231,17.06697269,62.05571133,18.51180236,353.7698647,0,0.61042065,52.38007507,-0.61042065,127.6199249,0.968089272,0,404.536522,18.51180236,416.6521265,9,17,3% -2018-09-01 02:00:00,83.25525791,274.9823325,49.09147571,205.5453392,24.95094328,110.5355014,85.96684887,24.56865256,24.19858028,0.37007228,12.65515965,0,12.65515965,0.752362999,11.90279665,1.45307837,4.799347087,7.664482288,-7.664482288,0,0,0.508254089,0.18809075,6.049645071,0.438375775,1,0.129739089,0,0.947796093,0.986558056,0.724496596,1,23.46211466,0.545084432,0.06208312,0.312029739,0.839077019,0.563573615,0.961238037,0.922476074,0.128719459,5.815148951,23.59083412,6.360233383,48.28106487,0,0.418237889,65.27661202,-0.418237889,114.723388,0.930450812,0,68.51399014,6.360233383,72.67663568,9,18,6% -2018-09-01 03:00:00,95.06359638,284.1823972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659172756,4.959918507,-9.336181457,9.336181457,1,0,#DIV/0!,0,0,1,0.112479667,0,0.106703358,0.961238037,1,0.466807788,0.742311192,0,0,0.115824807,0.020305627,0.724496596,0.448993192,0.998159972,0.959398009,0,0,0,0,0,0,0.198894443,78.52768346,-0.198894443,101.4723165,0.798610373,0,0,0,0,9,19,0% -2018-09-01 04:00:00,106.2564489,294.1432783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854524884,5.133768679,-2.460944489,2.460944489,1,0.950999983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.027433842,91.57204061,0.027433842,88.42795939,0,0,0,0,0,9,20,0% -2018-09-01 05:00:00,116.5356435,305.691647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033930675,5.335325735,-1.128740931,1.128740931,1,0.723179757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.247341358,104.320243,0.247341358,75.67975699,0,0.847850224,0,0,0,9,21,0% -2018-09-01 06:00:00,125.2643831,319.7430428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18627592,5.580568856,-0.489644662,0.489644662,1,0.613887858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445843825,116.4773391,0.445843825,63.52266091,0,0.937853106,0,0,0,9,22,0% -2018-09-01 07:00:00,131.5160356,336.9915893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29538784,5.881612785,-0.059287287,0.059287287,1,0.540292413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609415624,127.5472608,0.609415624,52.45273921,0,0.967954188,0,0,0,9,23,0% -2018-09-02 08:00:00,134.2166497,356.9820124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.342522448,6.230511487,0.300169108,-0.300169108,1,0.478821749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7269117,136.6281119,0.7269117,43.37188809,0,0.981215855,0,0,0,9,0,0% -2018-09-02 09:00:00,132.7369835,17.41252638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316697401,0.303905916,0.657542975,-0.657542975,1,0.417707218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790327247,142.2161038,0.790327247,37.7838962,0,0.986735067,0,0,0,9,1,0% -2018-09-02 10:00:00,127.4374991,35.61215096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22420395,0.621549288,1.07789753,-1.07789753,1,0.345822356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795343476,142.6877099,0.795343476,37.31229009,0,0.987134079,0,0,0,9,2,0% -2018-09-02 11:00:00,119.3397887,50.57881847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082872241,0.882766914,1.67785283,-1.67785283,1,0.243223957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741622263,137.8697914,0.741622263,42.13020856,0,0.982580233,0,0,0,9,3,0% -2018-09-02 12:00:00,109.4483015,62.78720558,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910233222,1.095843465,2.809620585,-2.809620585,1,0.049680272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632829633,129.2591977,0.632829633,50.74080233,0,0.970989794,0,0,0,9,4,0% -2018-09-02 13:00:00,98.48287497,73.14556623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718850425,1.276630964,6.694762326,-6.694762326,1,0,#DIV/0!,0,0,0.380696852,1,0.148274243,0,0.945555671,0.984317634,0.724496596,1,0,0,0.055168923,0.312029739,0.855493253,0.579989849,0.961238037,0.922476074,0,0,0,0,0,0,-0.476386403,118.449657,0.476386403,61.55034299,0,0.945043184,0,0,0,9,5,0% -2018-09-02 14:00:00,86.69907601,82.5144513,10.7699017,55.28881292,7.586364841,7.438796018,0,7.438796018,7.35760795,0.081188068,18.27848491,15.43844066,2.840044248,0.228756891,2.611287357,1.513184335,1.440148856,-16.9263554,16.9263554,0,0,0.704404279,0.057189223,1.839401988,1,0.587583107,0,0.059010871,0.961238037,1,0.570821109,0.846324513,7.072412622,0.156571136,0.115824807,0.137921074,0.724496596,0.448993192,0.98557871,0.946816747,0.041433397,1.783470596,7.113846019,1.940041732,0,6.367073724,-0.27923263,106.214411,0.27923263,73.78558897,0,0.870937833,7.113846019,7.485367121,12.01286909,9,6,69% -2018-09-02 15:00:00,75.0511285,91.67039913,185.6120842,499.886544,56.662857,56.35348509,0,56.35348509,54.9542628,1.399222294,79.05003879,32.33764582,46.71239297,1.708594202,45.00379877,1.3098893,1.599950291,-3.480703614,3.480703614,0.874610936,0.874610936,0.30527569,1.277334877,41.08348046,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.82412769,1.237870683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.92542477,39.4910041,53.74955246,40.72887478,0,32.33764582,-0.064689971,93.7090523,0.064689971,86.2909477,0,0,53.74955246,40.72887478,80.40578643,9,7,50% -2018-09-02 16:00:00,63.33097992,101.4361198,398.0374383,703.4362392,82.3100109,196.0776573,113.2490226,82.82863473,79.82806038,3.000574342,98.99073575,0,98.99073575,2.48195052,96.50878523,1.105334118,1.770394271,-1.698731058,1.698731058,0.82065381,0.82065381,0.206789621,2.573714857,82.77951689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73376805,1.798164703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864647653,79.57082031,78.5984157,81.36898501,113.2490226,0,0.160994012,80.73540305,-0.160994012,99.26459695,0.739429444,0,162.3380775,81.36898501,215.5924508,9,8,33% -2018-09-02 17:00:00,52.04005932,112.9044083,589.5565586,798.6528358,98.29691429,403.6560857,303.8788597,99.77722601,95.33289965,4.444326369,145.9088279,0,145.9088279,2.964014643,142.9448133,0.908270378,1.970553664,-0.938897461,0.938897461,0.690714612,0.690714612,0.166730253,3.298942767,106.1053394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.6376093,2.147418519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390072805,101.9924882,94.02768211,104.1399067,303.8788597,0,0.380489302,67.63600559,-0.380489302,112.3639944,0.918590261,0,373.167843,104.1399067,441.3253291,9,9,18% -2018-09-02 18:00:00,41.82186008,127.7634621,741.0140156,848.1148759,108.9804543,602.0216161,490.7412479,111.2803682,105.6942915,5.586076656,182.95359,0,182.95359,3.286162793,179.6674273,0.729929158,2.229893077,-0.477295094,0.477295094,0.611775958,0.611775958,0.147069356,3.736369247,120.1744787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5973733,2.380813757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.706986801,115.51628,104.3043601,117.8970937,490.7412479,0,0.578625917,54.6460451,-0.578625917,125.3539549,0.963588385,0,577.1769266,117.8970937,654.3382165,9,10,13% -2018-09-02 19:00:00,33.87769516,148.4022184,840.3895723,873.1853395,115.4454768,766.0565925,647.7570112,118.2995813,111.9643697,6.335211578,207.2432886,0,207.2432886,3.481107074,203.7621815,0.591277324,2.590107329,-0.134979695,0.134979695,0.553236577,0.553236577,0.137371382,3.893678596,125.2340881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6244109,2.522050225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.820956888,120.379769,110.4453678,122.9018192,647.7570112,0,0.741832211,42.11227339,-0.741832211,137.8877266,0.982599314,0,746.9309626,122.9018192,827.3677452,9,11,11% -2018-09-02 20:00:00,30.19675941,175.7762618,880.2899612,882.0259856,117.9520345,878.6476952,757.6163521,121.031343,114.3953455,6.635997564,216.9931818,0,216.9931818,3.556689037,213.4364927,0.527032875,3.067874515,0.158218265,-0.158218265,0.503096773,0.503096773,0.133992252,3.780381524,121.5900648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9611573,2.5768091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738873545,116.8769952,112.7000309,119.4538043,757.6163521,0,0.858950149,30.8010907,-0.858950149,149.1989093,0.991789404,0,864.0959013,119.4538043,942.2760271,9,12,9% -2018-09-02 21:00:00,32.31741632,204.3610235,857.798103,877.1198322,116.5446889,928.1804703,808.6835893,119.496881,113.0304366,6.466444436,211.4973337,0,211.4973337,3.514252375,207.9830813,0.56404532,3.566772722,0.442298967,-0.442298967,0.454516112,0.454516112,0.135864941,3.418345193,109.9457319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6491549,2.546063883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.476579456,105.6840195,111.1257344,108.2300834,808.6835893,0,0.921976177,22.78328299,-0.921976177,157.216717,0.995768664,0,916.3875115,108.2300834,987.2219365,9,13,8% -2018-09-02 22:00:00,39.29319061,226.9873534,774.5277588,857.1062501,111.1999645,907.8828886,794.1972959,113.6855927,107.8468752,5.838717407,191.1463115,0,191.1463115,3.353089213,187.7932223,0.68579555,3.961676678,0.753171232,-0.753171232,0.401353823,0.401353823,0.143571309,2.845220064,91.51205764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6665186,2.42930172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061352251,87.96487063,105.7278709,90.39417235,794.1972959,0,0.926603085,22.08865843,-0.926603085,157.9113416,0.996039463,0,896.7797191,90.39417235,955.940897,9,14,7% -2018-09-02 23:00:00,49.03443594,243.2092996,636.5902395,815.799699,101.7476212,815.2770542,711.798613,103.4784411,98.67955501,4.798886122,157.4167399,0,157.4167399,3.068066188,154.3486737,0.855812354,4.24480305,1.143685786,-1.143685786,0.334571901,0.334571901,0.159832204,2.115966817,68.05676642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.85454174,2.222803509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533010756,65.41875255,96.38755249,67.64155606,711.798613,0,0.872516396,29.24760913,-0.872516396,150.7523909,0.992694487,0,802.9861112,67.64155606,847.2561568,9,15,6% -2018-09-02 00:00:00,60.11490576,255.4165218,454.6190795,736.908013,87.44567489,650.8134292,562.5774534,88.23597581,84.80886515,3.427110653,112.864469,0,112.864469,2.636809738,110.2276592,1.049203035,4.457859269,1.732330794,-1.732330794,0.233907676,0.233907676,0.192349329,1.306637414,42.02595078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52150705,1.910359679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.946654359,40.39694242,82.46816141,42.3073021,562.5774534,0,0.763429687,40.23250842,-0.763429687,139.7674916,0.984506084,0,636.3290868,42.3073021,664.0183699,9,16,4% -2018-09-02 01:00:00,71.77572018,265.5186843,245.0721946,574.6839014,65.34701488,413.9984504,348.7744314,65.224019,63.37656128,1.847457722,61.39104454,0,61.39104454,1.970453603,59.42059094,1.25272264,4.634175267,2.926453292,-2.926453292,0.029700702,0.029700702,0.266643937,0.532853229,17.13839151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.91996134,1.427586928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38605035,16.47407381,61.3060117,17.90166074,348.7744314,0,0.606897862,52.63446536,-0.606897862,127.3655346,0.967613814,0,398.7849696,17.90166074,410.5012485,9,17,3% -2018-09-02 02:00:00,83.53604647,274.7393275,45.30381741,193.3844935,23.53295742,103.3119197,80.1470485,23.16487124,22.82335192,0.341519312,11.69404053,0,11.69404053,0.709605493,10.98443504,1.457979055,4.79510585,8.01618985,-8.01618985,0,0,0.51944756,0.177401373,5.705837981,0.456727094,1,0.124106415,0,0.948461401,0.987223364,0.724496596,1,22.12768989,0.514106764,0.064217094,0.312029739,0.834087101,0.558583697,0.961238037,0.922476074,0.121415907,5.484668499,22.2491058,5.998775264,43.54171998,0,0.414444028,65.51569082,-0.414444028,114.4843092,0.929356447,0,62.71488398,5.998775264,66.64096242,9,18,6% -2018-09-02 03:00:00,95.35724189,283.9497616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664297837,4.95585825,-8.845940241,8.845940241,1,0,#DIV/0!,0,0,1,0.041133976,0,0.112568311,0.961238037,1,0.455276319,0.730779723,0,0,0.115824807,0.00717283,0.724496596,0.448993192,0.999361392,0.960599429,0,0,0,0,0,0,0.194741136,78.77039814,-0.194741136,101.2296019,0.793248904,0,0,0,0,9,19,0% -2018-09-02 04:00:00,106.5653518,293.9232469,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859916257,5.129928406,-2.421444216,2.421444216,1,0.944245039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.03179246,91.82188075,0.03179246,88.17811925,0,0,0,0,0,9,20,0% -2018-09-02 05:00:00,116.8659796,305.494822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039696128,5.331890493,-1.118239606,1.118239606,1,0.721383925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251816056,104.5850031,0.251816056,75.41499694,0,0.851442367,0,0,0,9,21,0% -2018-09-02 06:00:00,125.6189862,319.595918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192464912,5.578001045,-0.486632785,0.486632785,1,0.613372797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450337471,116.7653378,0.450337471,63.23466218,0,0.938972153,0,0,0,9,22,0% -2018-09-02 07:00:00,131.8885316,336.9409768,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301889121,5.88072943,-0.059499846,0.059499846,1,0.540328763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613829856,127.8669446,0.613829856,52.13305536,0,0.968544203,0,0,0,9,23,0% -2018-09-03 08:00:00,134.5854515,357.0731263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348959253,6.232101724,0.297871445,-0.297871445,1,0.479214672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731153678,136.9831984,0.731153678,43.01680163,0,0.981614924,0,0,0,9,0,0% -2018-09-03 09:00:00,133.0729069,17.63883867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322560371,0.307855811,0.653207952,-0.653207952,1,0.418448551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794316037,142.5907012,0.794316037,37.40929875,0,0.987052763,0,0,0,9,1,0% -2018-09-03 10:00:00,127.7239435,35.91694728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229203348,0.626868987,1.070674375,-1.070674375,1,0.347057588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799015598,143.0362015,0.799015598,36.96379851,0,0.987422999,0,0,0,9,2,0% -2018-09-03 11:00:00,119.5782713,50.91087964,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087034548,0.888562475,1.664990145,-1.664990145,1,0.245423606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744936057,138.153607,0.744936057,41.84639301,0,0.982880145,0,0,0,9,3,0% -2018-09-03 12:00:00,109.6492035,63.12307904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.913739624,1.101705563,2.780563747,-2.780563747,1,0.054649284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635768116,129.4769775,0.635768116,50.52302252,0,0.971354974,0,0,0,9,4,0% -2018-09-03 13:00:00,98.65811913,73.48082857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721909013,1.282482396,6.555015111,-6.555015111,1,0,#DIV/0!,0,0,0.371393336,1,0.151387734,0,0.945171674,0.983933638,0.724496596,1,0,0,0.054023262,0.312029739,0.858250028,0.582746624,0.961238037,0.922476074,0,0,0,0,0,0,-0.478958433,118.6173977,0.478958433,61.38260232,0,0.945606807,0,0,0,9,5,0% -2018-09-03 14:00:00,86.85270551,82.85374956,9.671074453,50.22095756,6.913791656,6.778219973,0,6.778219973,6.705315328,0.072904644,16.68323636,14.12989607,2.553340297,0.208476328,2.344863969,1.515865675,1.446070728,-17.73072554,17.73072554,0,0,0.714893851,0.052119082,1.676328832,1,0.609723556,0,0.056339585,0.961238037,1,0.577183669,0.852687073,6.445404143,0.142745025,0.115824807,0.145105252,0.724496596,0.448993192,0.984706221,0.945944258,0.037760097,1.625332126,6.48316424,1.768077151,0,5.514565594,-0.281354573,106.3410665,0.281354573,73.6589335,0,0.872288298,6.48316424,6.578368188,10.78857465,9,6,66% -2018-09-03 15:00:00,75.20799835,92.0226112,182.9245057,496.6594351,56.12199338,55.8086704,0,55.8086704,54.42970821,1.378962192,79.1435552,33.09910578,46.04444941,1.692285168,44.35216424,1.312627195,1.606097552,-3.510674531,3.510674531,0.869485607,0.869485607,0.306804127,1.254204672,40.33953354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.31990587,1.226054844,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.908667015,38.77589403,53.22857288,40.00194887,0,33.09910578,-0.066643465,93.82122142,0.066643465,86.17877858,0,0,53.22857288,40.00194887,79.40904838,9,7,49% -2018-09-03 16:00:00,63.49705569,101.812201,395.2489992,702.220433,81.88748386,194.2145841,111.8167561,82.397828,79.41827409,2.97955391,98.30190567,0,98.30190567,2.469209771,95.8326959,1.108232687,1.776958126,-1.704176608,1.704176608,0.821585053,0.821585053,0.207179484,2.558092941,82.27706236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33986588,1.788934074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853329627,79.0878419,78.19319551,80.87677597,111.8167561,0,0.159233128,80.83761296,-0.159233128,99.16238704,0.73599499,0,160.4897677,80.87677597,213.4220001,9,8,33% -2018-09-03 17:00:00,52.23030466,113.3140728,586.6978746,798.0542775,97.89837454,401.7012487,302.332095,99.36915374,94.94637734,4.422776401,145.2036894,0,145.2036894,2.951997199,142.2516922,0.911590786,1.977703659,-0.939046949,0.939046949,0.690740176,0.690740176,0.166863353,3.283222882,105.5997339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26606936,2.138711922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378683802,101.5064809,93.64475316,103.6451928,302.332095,0,0.378836507,67.73836816,-0.378836507,112.2616318,0.918016944,0,371.190739,103.6451928,439.0244448,9,9,18% -2018-09-03 18:00:00,42.05645928,128.2018232,738.0085393,847.7311136,108.5808159,599.998238,489.1281141,110.8701238,105.3067037,5.563420106,182.2128269,0,182.2128269,3.274112221,178.9387147,0.734023686,2.237543922,-0.475389808,0.475389808,0.611450135,0.611450135,0.147126774,3.719792939,119.6413276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2248091,2.372083159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.694977322,115.0037949,103.9197865,117.3758781,489.1281141,0,0.576984974,54.76124005,-0.576984974,125.2387599,0.963342631,0,575.1177506,117.3758781,651.9379153,9,10,13% -2018-09-03 19:00:00,34.17775665,148.8054157,837.1518852,872.8619691,115.0342921,763.8861557,646.0097674,117.8763883,111.5655838,6.310804525,206.4458751,0,206.4458751,3.468708339,202.9771668,0.596514384,2.597144449,-0.131828364,0.131828364,0.552697668,0.552697668,0.137411495,3.875857274,124.6608931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2410827,2.513067384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.808045401,119.8287922,110.0491281,122.3418595,646.0097674,0,0.740105298,42.25961392,-0.740105298,137.7403861,0.982442046,0,744.7162854,122.3418595,824.7865857,9,11,11% -2018-09-03 20:00:00,30.5582476,175.9773253,876.7461136,881.6769219,117.5228788,876.2253201,755.6369072,120.5884129,113.9791304,6.609282543,216.1209943,0,216.1209943,3.543748409,212.5772459,0.533342034,3.071383736,0.162515864,-0.162515864,0.50236184,0.50236184,0.134044368,3.761127449,120.9707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5610755,2.567433659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724924033,116.2817223,112.2859996,118.849156,755.6369072,0,0.857045124,31.01358891,-0.857045124,148.9864111,0.991660015,0,861.620906,118.849156,939.4053017,9,12,9% -2018-09-03 21:00:00,32.69043541,204.2792377,853.8948213,876.6657008,116.0921308,925.3971145,806.36857,119.0285446,112.5915247,6.43701985,210.5372916,0,210.5372916,3.500606077,207.0366855,0.570555732,3.565345291,0.448043555,-0.448043555,0.453533729,0.453533729,0.135956008,3.397646404,109.2799877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2272562,2.536177187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461583254,105.0440808,110.6888394,107.580258,806.36857,0,0.91981307,23.10123062,-0.91981307,156.8987694,0.995641129,0,913.5425528,107.580258,983.9516801,9,13,8% -2018-09-03 22:00:00,39.63871829,226.7553798,770.2389951,856.430045,110.717359,904.6290875,791.4438784,113.1852091,107.3788222,5.806386896,190.0918988,0,190.0918988,3.338536878,186.7533619,0.691826145,3.957627974,0.761167282,-0.761167282,0.399986418,0.399986418,0.143744162,2.823267764,90.80599622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2166082,2.418758604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.045447884,87.28617754,105.2620561,89.70493614,791.4438784,0,0.924119703,22.46401419,-0.924119703,157.5359858,0.995894455,0,893.4566262,89.70493614,952.1667128,9,14,7% -2018-09-03 23:00:00,49.35020827,242.9403007,631.924504,814.6676951,101.2224311,811.428237,708.4943218,102.9339151,98.17020131,4.763713837,156.2696419,0,156.2696419,3.052229768,153.2174122,0.861323621,4.240108133,1.15584032,-1.15584032,0.332493354,0.332493354,0.160181209,2.093249104,67.32608667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36493158,2.211330077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51655185,64.71639538,95.88148343,66.92772545,708.4943218,0,0.869672783,29.57936296,-0.869672783,150.420637,0.992507112,0,799.0671366,66.92772545,842.8699943,9,15,5% -2018-09-03 00:00:00,60.41113405,255.150371,449.6376702,734.7381067,86.8439104,646.1711865,558.5563818,87.61480477,84.22524609,3.389558685,111.6385232,0,111.6385232,2.618664319,109.0198589,1.054373194,4.453214061,1.754004656,-1.754004656,0.230201228,0.230201228,0.193141981,1.284241715,41.3056281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.9605102,1.897213385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.930428751,39.70454087,81.89093895,41.60175425,558.5563818,0,0.760211532,40.51715036,-0.760211532,139.4828496,0.984228833,0,631.6382345,41.60175425,658.8657506,9,16,4% -2018-09-03 01:00:00,72.06261325,265.2639373,239.9854378,569.6549681,64.54453145,408.0922369,343.6848496,64.40738728,62.59827568,1.8091116,60.13350362,0,60.13350362,1.946255767,58.18724785,1.257729869,4.629729092,2.980190639,-2.980190639,0.020511075,0.020511075,0.268951867,0.513690816,16.52206244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.17184362,1.410055678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372167247,15.88163486,60.54401087,17.29169054,343.6848496,0,0.603321078,52.89187551,-0.603321078,127.1081245,0.967125388,0,392.9303545,17.29169054,404.2474202,9,17,3% -2018-09-03 02:00:00,83.81874621,274.4956502,41.58494886,181.0227188,22.09349405,96.06996348,74.32918488,21.7407786,21.42729369,0.31348491,10.74895267,0,10.74895267,0.666200362,10.0827523,1.462913096,4.790852879,8.40222895,-8.40222895,0,0,0.53128583,0.16655009,5.356823422,0.475536969,1,0.118458819,0,0.949121163,0.987883126,0.724496596,1,20.772698,0.482659894,0.066372581,0.312029739,0.829083663,0.553580259,0.961238037,0.922476074,0.114018912,5.14918243,20.88671691,5.631842325,38.98290962,0,0.410606941,65.75703238,-0.410606941,114.2429676,0.928229044,0,57.07178582,5.631842325,60.75771398,9,18,6% -2018-09-03 03:00:00,95.6529992,283.7160347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669459775,4.951778947,-8.403294513,8.403294513,1,0.032798314,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190545413,79.01538442,-0.190545413,100.9846156,0.787595363,0,0,0,0,9,19,0% -2018-09-03 04:00:00,106.876271,293.7017641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865342822,5.126062802,-2.383042848,2.383042848,1,0.937678018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036184879,92.07369354,0.036184879,87.92630646,0,0,0,0,0,9,20,0% -2018-09-03 05:00:00,117.1983491,305.2963243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045497069,5.328426052,-1.107879298,1.107879298,1,0.719612208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256314986,104.8515182,0.256314986,75.14848179,0,0.85492752,0,0,0,9,21,0% -2018-09-03 06:00:00,125.9757561,319.4473812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198691722,5.575408588,-0.483633102,0.483633102,1,0.612859821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45484548,117.0549926,0.45484548,62.94500742,0,0.940072558,0,0,0,9,22,0% -2018-09-03 07:00:00,132.2633065,336.8903708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308430178,5.879846189,-0.059693019,0.059693019,1,0.540361797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618248958,128.1883766,0.618248958,51.81162343,0,0.969126431,0,0,0,9,23,0% -2018-09-04 08:00:00,134.9562668,357.1668963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355431202,6.233738319,0.295606993,-0.295606993,1,0.479601917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735392068,137.3403558,0.735392068,42.65964425,0,0.982009057,0,0,0,9,0,0% -2018-09-04 09:00:00,133.4100808,17.86984407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328445165,0.311887616,0.648920377,-0.648920377,1,0.419181769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798294391,142.9675359,0.798294391,37.03246407,0,0.987366465,0,0,0,9,1,0% -2018-09-04 10:00:00,128.0108622,36.22658965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234211023,0.632273266,1.063526284,-1.063526284,1,0.348279984,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802672522,143.3860726,0.802672522,36.61392736,0,0.987708096,0,0,0,9,2,0% -2018-09-04 11:00:00,119.8168177,51.24698425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091197968,0.894428607,1.652278898,-1.652278898,1,0.247597357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7482323,138.4374854,0.7482323,41.56251457,0,0.983175833,0,0,0,9,3,0% -2018-09-04 12:00:00,109.8501044,63.4621689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917246005,1.107623798,2.751990448,-2.751990448,1,0.059535606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638689267,129.6941508,0.638689267,50.30584924,0,0.97171467,0,0,0,9,4,0% -2018-09-04 13:00:00,98.83351989,73.81870164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724970333,1.288379393,6.42041828,-6.42041828,1,0,#DIV/0!,0,0,0.362164559,1,0.15451164,0,0.94478419,0.983546153,0.724496596,1,0,0,0.052878207,0.312029739,0.861015751,0.585512347,0.961238037,0.922476074,0,0,0,0,0,0,-0.481515907,118.7844552,0.481515907,61.2155448,0,0.946161271,0,0,0,9,5,0% -2018-09-04 14:00:00,87.0063479,83.19523638,8.631012836,45.34360511,6.262928728,6.139142539,0,6.139142539,6.074078319,0.065064221,15.13463414,12.85309474,2.281539397,0.188850409,2.092688988,1.518547241,1.452030797,-18.61681873,18.61681873,0,0,0.725630798,0.047212602,1.51851958,1,0.631515342,0,0.053663298,0.961238037,1,0.583614946,0.859118351,5.838635119,0.129387784,0.115824807,0.152368477,0.724496596,0.448993192,0.983812225,0.945050262,0.03420537,1.472248825,5.872840488,1.601636609,0,4.736168216,-0.283459921,106.4668127,0.283459921,73.53318735,0,0.87360822,5.872840488,5.739192095,9.629026931,9,6,64% -2018-09-04 15:00:00,75.36572054,92.37667038,180.2237635,493.3639838,55.57619999,55.25897536,0,55.25897536,53.9003725,1.358602856,79.21518511,33.84201961,45.3731655,1.675827484,43.69733802,1.315379967,1.61227705,-3.541295149,3.541295149,0.864249173,0.864249173,0.308373318,1.231045137,39.59464329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.81108825,1.214131307,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.891888011,38.05987718,52.70297626,39.27400849,0,33.84201961,-0.068594427,93.93325973,0.068594427,86.06674027,0,0,52.70297626,39.27400849,78.40702934,9,7,49% -2018-09-04 16:00:00,63.66450949,102.1897209,392.4324213,700.9739711,81.46185296,192.3433172,110.3795183,81.96379889,79.00547753,2.958321356,97.60615941,0,97.60615941,2.456375429,95.14978398,1.111155307,1.783547092,-1.709668205,1.709668205,0.822524172,0.822524172,0.207581863,2.54227764,81.76838791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.94307012,1.779635637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841871496,78.59888467,77.78494162,80.37852031,110.3795183,0,0.15746593,80.94015978,-0.15746593,99.05984022,0.732470996,0,158.6347373,80.37852031,211.2408712,9,8,33% -2018-09-04 17:00:00,52.42252682,113.7244331,583.7998784,797.4356887,97.49679004,399.7248932,300.767061,98.95783218,94.5569021,4.400930081,144.4889275,0,144.4889275,2.939887945,141.5490395,0.914945695,1.984865797,-0.939172933,0.939172933,0.69076172,0.69076172,0.167003786,3.267275506,105.0868115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.89169094,2.129938808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367129982,101.0134403,93.25882092,103.1433792,300.767061,0,0.377167796,67.84164062,-0.377167796,112.1583594,0.917433008,0,369.1924506,103.1433792,436.6977294,9,9,18% -2018-09-04 18:00:00,42.29359348,128.6393499,734.9539045,847.3309106,108.1778552,597.9412498,487.4849631,110.4562867,104.9158937,5.540392978,181.4600446,0,181.4600446,3.261961468,178.1980831,0.738162459,2.245180204,-0.473442409,0.473442409,0.61111711,0.61111711,0.147189986,3.702959195,119.0998965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8491477,2.363279979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682781331,114.4833507,103.531929,116.8466307,487.4849631,0,0.575318281,54.87807533,-0.575318281,125.1219247,0.963091585,0,573.0245947,116.8466307,649.4983776,9,10,13% -2018-09-04 19:00:00,34.48049413,149.2056484,833.8567942,872.5231077,114.6194455,761.6707484,644.2215374,117.4492111,111.1632463,6.285964737,205.634433,0,205.634433,3.456199183,202.1782338,0.60179815,2.604129828,-0.1286232,0.1286232,0.552149552,0.552149552,0.137456991,3.857757702,124.0787487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8543407,2.504004543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794932323,119.2692128,109.649273,121.7732173,644.2215374,0,0.738343239,42.40952446,-0.738343239,137.5904755,0.982280818,0,742.4557318,121.7732173,822.1538671,9,11,11% -2018-09-04 20:00:00,30.92197385,176.1764801,873.1387102,881.3116617,117.0897334,873.7477761,753.6066418,120.1411344,113.559046,6.582088413,215.2332766,0,215.2332766,3.530687478,211.7025891,0.539690255,3.074859642,0.166881945,-0.166881945,0.501615196,0.501615196,0.134102099,3.741585818,120.3422615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1572744,2.557971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.710766188,115.6775592,111.8680406,118.2355303,753.6066418,0,0.855096641,31.22958707,-0.855096641,148.7704129,0.991527077,0,859.0894314,118.2355303,936.4722212,9,12,9% -2018-09-04 21:00:00,33.06574815,204.1998041,849.9243621,876.1928763,115.6352762,922.5499888,803.9944541,118.5555348,112.1484459,6.407088851,209.5608319,0,209.5608319,3.486830225,206.0740017,0.577106175,3.563958913,0.453880966,-0.453880966,0.452535473,0.452535473,0.136053608,3.37666395,108.6051198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.801352,2.526196629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446381537,104.3953722,110.2477336,106.9215688,803.9944541,0,0.917599853,23.42231879,-0.917599853,156.5776812,0.995510017,0,910.6322665,106.9215688,980.6102948,9,13,8% -2018-09-04 22:00:00,39.98695551,226.5263637,765.8822978,855.7296847,110.2301149,901.3046147,788.6248002,112.6798145,106.9062702,5.773544271,189.0208748,0,189.0208748,3.32384467,185.6970302,0.697904031,3.953630889,0.769302851,-0.769302851,0.398595154,0.398595154,0.14392566,2.80105084,90.09142357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7623733,2.408114148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029351799,86.59930313,104.7917251,89.00741728,788.6248002,0,0.92158168,22.84158088,-0.92158168,157.1584191,0.995745449,0,890.0612811,89.00741728,948.3148556,9,14,7% -2018-09-04 23:00:00,49.66877172,242.6730093,627.193267,813.499521,100.6920123,807.5027997,705.1189753,102.3838244,97.65577659,4.728047774,155.1065047,0,155.1065047,3.036235684,152.070269,0.866883602,4.235443017,1.168239674,-1.168239674,0.330372939,0.330372939,0.160543835,2.070305435,66.5881394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.87044698,2.199742417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49992924,64.0070524,95.37037622,66.20679481,705.1189753,0,0.866772453,29.91428338,-0.866772453,150.0857166,0.992314733,0,795.0703243,66.20679481,838.4013473,9,15,5% -2018-09-04 00:00:00,60.70998689,254.8848331,444.5972592,732.5013829,86.23528608,641.4440947,554.4575588,86.98653596,83.63497403,3.351561939,110.3980649,0,110.3980649,2.600312049,107.7977529,1.05958916,4.44857955,1.776232046,-1.776232046,0.22640012,0.22640012,0.193962703,1.261694298,40.58042566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.39311824,1.883917228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914093224,39.0074487,81.30721147,40.89136592,554.4575588,0,0.756937218,40.80507131,-0.756937218,139.1949287,0.983944323,0,626.862579,40.89136592,653.6251602,9,16,4% -2018-09-04 01:00:00,72.3518723,265.0090642,234.8563148,564.4600954,63.72869283,402.0794281,338.5019444,63.57748371,61.8070376,1.770446105,58.86528782,0,58.86528782,1.921655223,56.9436326,1.262778392,4.625280718,3.036004307,-3.036004307,0.010966376,0.010966376,0.271351839,0.494560784,15.90677487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.41127549,1.392232667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.358307605,15.29019704,59.76958309,16.68242971,338.5019444,0,0.599691541,53.15219091,-0.599691541,126.8478091,0.966623803,0,386.97362,16.68242971,397.8919366,9,17,3% -2018-09-04 02:00:00,84.10319752,274.2513195,37.94630877,168.4963226,20.63549787,88.83164084,68.53232406,20.29931677,20.01326147,0.286055304,9.822758286,0,9.822758286,0.622236398,9.200521889,1.467877708,4.786588503,8.827665522,-8.827665522,0,0,0.543807778,0.155559099,5.003315368,0.494813254,1,0.112799376,0,0.949774946,0.988536909,0.724496596,1,19.39999462,0.450808152,0.068548817,0.312029739,0.824069589,0.548566185,0.961238037,0.922476074,0.106540704,4.809377042,19.50653532,5.260185194,34.62162181,0,0.406728901,66.00048558,-0.406728901,113.9995144,0.927067993,0,51.60313277,5.260185194,55.04581878,9,18,7% -2018-09-04 03:00:00,95.95074791,283.4812235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674656471,4.947680718,-8.001774849,8.001774849,1,0.10146222,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186309154,79.26253151,-0.186309154,100.7374685,0.78162886,0,0,0,0,9,19,0% -2018-09-04 04:00:00,107.1890832,293.4788191,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870802423,5.122171677,-2.345709957,2.345709957,1,0.931293718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04060899,92.3273637,0.04060899,87.6726363,0,0,0,0,0,9,20,0% -2018-09-04 05:00:00,117.5326274,305.0961178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051331326,5.32493179,-1.097662156,1.097662156,1,0.717864974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260835892,105.1196668,0.260835892,74.8803332,0,0.85830859,0,0,0,9,21,0% -2018-09-04 06:00:00,126.3345727,319.2973698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204954252,5.572790395,-0.48064801,0.48064801,1,0.61234934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459365546,117.3461749,0.459365546,62.65382508,0,0.941154223,0,0,0,9,22,0% -2018-09-04 07:00:00,132.6402512,336.8397059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315009105,5.878961919,-0.059868494,0.059868494,1,0.540391805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622670677,128.5114249,0.622670677,51.48857515,0,0.969700731,0,0,0,9,23,0% -2018-09-05 08:00:00,135.3289963,357.2632933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361936559,6.235420765,0.293374495,-0.293374495,1,0.479983696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739624761,137.6994608,0.739624761,42.30053923,0,0.982398153,0,0,0,9,0,0% -2018-09-05 09:00:00,133.7484108,18.10552443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334350137,0.316001014,0.644679139,-0.644679139,1,0.419907064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802260431,143.346503,0.802260431,36.65349696,0,0.987676099,0,0,0,9,1,0% -2018-09-05 10:00:00,128.2981748,36.5410232,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239225575,0.637761167,1.056451893,-1.056451893,1,0.349489776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806312669,143.7372179,0.806312669,36.26278207,0,0.987989316,0,0,0,9,2,0% -2018-09-05 11:00:00,120.0553704,51.58704487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095361498,0.900363784,1.639716245,-1.639716245,1,0.249745697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.751509763,138.721328,0.751509763,41.27867197,0,0.983467265,0,0,0,9,3,0% -2018-09-05 12:00:00,110.0509695,63.80437345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920751763,1.113596394,2.723888071,-2.723888071,1,0.064341395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641592231,129.9106509,0.641592231,50.08934913,0,0.972068882,0,0,0,9,4,0% -2018-09-05 13:00:00,99.00906093,74.15907806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728034103,1.294320082,6.29068562,-6.29068562,1,0,#DIV/0!,0,0,0.353009149,1,0.157646114,0,0.94439318,0.983155143,0.724496596,1,0,0,0.0517337,0.312029739,0.863790539,0.588287135,0.961238037,0.922476074,0,0,0,0,0,0,-0.484058341,118.9507959,0.484058341,61.0492041,0,0.946706666,0,0,0,9,5,0% -2018-09-05 14:00:00,87.15996295,83.53879905,7.65128014,40.67380957,5.635986347,5.523719145,0,5.523719145,5.466040564,0.057678582,13.63940961,11.61432237,2.025087236,0.169945783,1.855141453,1.521228329,1.458027097,-19.59762948,19.59762948,0,0,0.736606979,0.042486446,1.366510141,1,0.652964034,0,0.050982362,0.961238037,1,0.590114355,0.865617759,5.254166101,0.116535893,0.115824807,0.159710378,0.724496596,0.448993192,0.982896427,0.944134464,0.030781285,1.32475592,5.284947386,1.441291813,0,4.030587587,-0.285547936,106.5916041,0.285547936,73.40839587,0,0.874898051,5.284947386,4.967645039,8.536171711,9,6,62% -2018-09-05 15:00:00,75.52429961,92.73245424,177.5099701,489.9984222,55.02536722,54.70429451,0,54.70429451,53.36614937,1.338145135,79.26452327,34.56595804,44.69856523,1.659217844,43.03934739,1.318147693,1.61848665,-3.572594192,3.572594192,0.858896722,0.858896722,0.309984657,1.207858739,38.84888903,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.29757266,1.202097679,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.875089545,37.34302982,52.1726622,38.5451275,0,34.56595804,-0.070542999,94.04517585,0.070542999,85.95482415,0,0,52.1726622,38.5451275,77.39967725,9,7,48% -2018-09-05 16:00:00,63.83334862,102.5685395,389.5875329,699.6961034,81.03307183,190.4636163,108.9371152,81.52650112,78.58962574,2.936875385,96.90345393,0,96.90345393,2.443446096,94.46000784,1.114102106,1.790158723,-1.715209678,1.715209678,0.82347182,0.82347182,0.207997087,2.526268391,81.25347544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54333756,1.770268379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830272849,78.10393121,77.37361041,79.87419959,108.9371152,0,0.155692042,81.04306538,-0.155692042,98.95693462,0.728853207,0,156.7727762,79.87419959,209.0488423,9,8,33% -2018-09-05 17:00:00,52.61672631,114.1353219,580.8623671,796.7966616,97.09213368,397.7265555,299.183322,98.5432335,94.16444762,4.378785881,143.764492,0,143.764492,2.927686062,140.8368059,0.918335116,1.99203716,-0.939277053,0.939277053,0.690779526,0.690779526,0.167151703,3.251100752,104.5665758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.51444877,2.121098586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355411428,100.51337,92.8698602,102.6344686,299.183322,0,0.37548265,67.94585331,-0.37548265,112.0541467,0.916838055,0,367.1725152,102.6344686,434.3447222,9,9,18% -2018-09-05 18:00:00,42.53324112,129.0758514,731.8499992,846.9140007,107.7715577,595.8501196,485.8112776,110.038842,104.5218476,5.516994429,180.6952155,0,180.6952155,3.249710098,177.4455054,0.742345099,2.252798591,-0.471453996,0.471453996,0.610777071,0.610777071,0.14725908,3.685869119,118.550221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4703756,2.354403904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67039963,113.9549817,103.1407752,116.3093856,485.8112776,0,0.573625276,54.99658381,-0.573625276,125.0034162,0.962835082,0,570.8969167,116.3093856,647.0190834,9,10,13% -2018-09-05 19:00:00,34.78584849,149.6027592,830.5043795,872.1685604,114.2009361,759.4098976,642.3918482,117.0180494,110.7573565,6.260692819,204.8089816,0,204.8089816,3.443579581,201.365402,0.607127589,2.611060717,-0.125365059,0.125365059,0.551592377,0.551592377,0.137507928,3.839382269,123.4877316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.464184,2.494861684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.781619384,118.7011047,109.2458034,121.1959664,642.3918482,0,0.736545523,42.56202741,-0.736545523,137.4379726,0.982115533,0,740.148816,121.1959664,819.469152,9,11,11% -2018-09-05 20:00:00,31.28784938,176.3736192,869.4681085,880.930046,116.6526137,871.2147634,751.5252385,119.6895248,113.135107,6.554417867,214.330116,0,214.330116,3.517506705,210.8126093,0.546075987,3.078300369,0.17131585,-0.17131585,0.500856954,0.500856954,0.134165489,3.72176052,119.7046118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7497681,2.548421634,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696402827,115.064626,111.446171,117.6130477,751.5252385,0,0.853104332,31.44906366,-0.853104332,148.5509363,0.991390522,0,856.5011691,117.6130477,933.4765566,9,12,9% -2018-09-05 21:00:00,33.44324085,204.1225925,845.8874251,875.7012062,115.1741583,919.6390644,801.5611753,118.0778892,111.7012324,6.376656715,208.5681254,0,208.5681254,3.472925819,205.0951996,0.583694665,3.562611318,0.459810853,-0.459810853,0.451521403,0.451521403,0.136157785,3.355403354,107.921306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.3714734,2.516122933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.430978308,103.7380643,109.8024517,106.2541872,801.5611753,0,0.915336384,23.74645676,-0.915336384,156.2535432,0.995375273,0,907.6566254,106.2541872,977.1978659,9,13,8% -2018-09-05 22:00:00,40.33777593,226.3002533,761.4587517,855.0049754,109.7382833,897.9097827,785.7403157,112.1694669,106.4292692,5.740197712,187.9335043,0,187.9335043,3.309014134,184.6244902,0.704027003,3.949684518,0.777578343,-0.777578343,0.397179961,0.397179961,0.144115861,2.778576513,89.36857195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3038618,2.397369476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013069225,85.90447065,104.316931,88.30184013,785.7403157,0,0.918989174,23.22124946,-0.918989174,156.7787505,0.995592395,0,886.5940138,88.30184013,944.3858021,9,14,7% -2018-09-05 23:00:00,49.99000352,242.407435,622.3980232,812.2948062,100.1564287,803.5014156,701.6731735,101.8282421,97.13634285,4.691899201,153.9276925,0,153.9276925,3.020085864,150.9076066,0.872490155,4.230807872,1.180886644,-1.180886644,0.32821018,0.32821018,0.160920223,2.047144816,65.84321428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.37114751,2.188041927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48314945,63.29100204,94.85429696,65.47904397,701.6731735,0,0.863815905,30.25222906,-0.863815905,149.7477709,0.992117296,0,790.9963888,65.47904397,833.8511135,9,15,5% -2018-09-05 00:00:00,61.01134642,254.6199368,439.4997873,730.1967704,85.61984756,636.6330738,550.2818455,86.35122829,83.03809325,3.313135042,109.1435661,0,109.1435661,2.581754307,106.5618118,1.064848876,4.443956238,1.799026354,-1.799026354,0.222502064,0.222502064,0.194812034,1.239006546,39.85070958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81937374,1.870472207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897656025,38.30601784,80.71702976,40.17649005,550.2818455,0,0.753607614,41.0961456,-0.753607614,138.9038544,0.983652475,0,622.003129,40.17649005,648.2978383,9,16,4% -2018-09-05 01:00:00,72.64338018,264.7540943,229.6875965,559.0950948,62.89933986,395.9607255,333.2265507,62.73417481,61.00269269,1.731482123,57.58706417,0,57.58706417,1.896647171,55.690417,1.267866164,4.620830653,3.093996524,-3.093996524,0.001049122,0.001049122,0.273847351,0.475480875,15.29309941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.63810856,1.374114419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344484276,14.70030885,58.98259284,16.07442327,333.2265507,0,0.596010507,53.4152976,-0.596010507,126.5847024,0.966108861,0,380.9157163,16.07442327,391.4361049,9,17,3% -2018-09-05 02:00:00,84.38923563,274.0063576,34.39999738,155.8492153,19.16263907,81.62211383,62.77797732,18.84413651,18.5848148,0.259321711,8.918501906,0,8.918501906,0.57782427,8.340677635,1.472870015,4.782313112,9.298608424,-9.298608424,0,0,0.557053504,0.144456068,4.646203699,0.514563579,1,0.107131231,0,0.950422326,0.989184289,0.724496596,1,18.0131235,0.418631717,0.070744986,0.312029739,0.81904784,0.543544436,0.961238037,0.922476074,0.098996964,4.466107723,18.11212046,4.884739439,30.47471664,0,0.402812277,66.24589435,-0.402812277,113.7541056,0.925872701,0,46.32782866,4.884739439,49.52479293,9,18,7% -2018-09-05 03:00:00,96.25036856,283.2453386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679885838,4.94356375,-7.636027769,7.636027769,1,0.164008654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182034222,79.51173006,-0.182034222,100.4882699,0.775326373,0,0,0,0,9,19,0% -2018-09-05 04:00:00,107.5036654,293.2544052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876292919,5.118254917,-2.309415325,2.309415325,1,0.92508697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045062706,92.58277751,0.045062706,87.41722249,0,0,0,0,0,9,20,0% -2018-09-05 05:00:00,117.8686902,304.8941712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057196729,5.321407157,-1.087589879,1.087589879,1,0.716142513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265376549,105.3893286,0.265376549,74.61067138,0,0.861588476,0,0,0,9,21,0% -2018-09-05 06:00:00,126.6953152,319.1458255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211250397,5.570145449,-0.477679675,0.477679675,1,0.611841725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463895397,117.6387575,0.463895397,62.36124254,0,0.942217081,0,0,0,9,22,0% -2018-09-05 07:00:00,133.0192554,336.7889206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321623976,5.878075549,-0.060027818,0.060027818,1,0.540419051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627092789,128.835958,0.627092789,51.164042,0,0.970266983,0,0,0,9,23,0% -2018-09-06 08:00:00,135.7035382,357.362293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368473549,6.237148636,0.291172812,-0.291172812,1,0.480360206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743849672,138.0603894,0.743849672,41.93961061,0,0.982782117,0,0,0,9,0,0% -2018-09-06 09:00:00,134.0877996,18.34586511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340273589,0.32019575,0.64048325,-0.64048325,1,0.420624603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806212296,143.7274962,0.806212296,36.27250385,0,0.987981596,0,0,0,9,1,0% -2018-09-06 10:00:00,128.5857981,36.86019431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244245548,0.643331754,1.04945,-1.04945,1,0.35068717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809934465,144.0895289,0.809934465,35.91047108,0,0.98826661,0,0,0,9,2,0% -2018-09-06 11:00:00,120.2938689,51.93097438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099524083,0.906366487,1.627299628,-1.627299628,1,0.251869064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754767204,139.0050327,0.754767204,40.99496726,0,0.983754408,0,0,0,9,3,0% -2018-09-06 12:00:00,110.2517609,64.1495912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924256233,1.11962158,2.696244938,-2.696244938,1,0.069068649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644476122,130.1264082,0.644476122,49.87359176,0,0.972417607,0,0,0,9,4,0% -2018-09-06 13:00:00,99.18472211,74.50185076,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731099969,1.300302595,6.165554304,-6.165554304,1,0,#DIV/0!,0,0,0.343925952,1,0.160791247,0,0.943998615,0.982760578,0.724496596,1,0,0,0.050589709,0.312029739,0.866574455,0.591071051,0.961238037,0.922476074,0,0,0,0,0,0,-0.486585206,119.1163831,0.486585206,60.88361694,0,0.947243074,0,0,0,9,5,0% -2018-09-06 14:00:00,87.31350275,83.88432535,6.73326472,36.22825238,5.035208722,4.934136795,0,4.934136795,4.883378601,0.050758194,12.20427715,10.41988904,1.784388107,0.151830121,1.632557986,1.523908104,1.464057668,-20.68900436,20.68900436,0,0,0.747810896,0.03795753,1.22084465,1,0.674074073,0,0.048297266,0.961238037,1,0.596680945,0.872184349,4.69408926,0.104227529,0.115824807,0.167130155,0.724496596,0.448993192,0.981958586,0.943196623,0.027500101,1.183395311,4.721589361,1.287622839,0,3.396111997,-0.287617767,106.7153888,0.287617767,73.28461118,0,0.876158166,4.721589361,4.263154099,7.511738456,9,6,59% -2018-09-06 15:00:00,75.68373524,93.08984109,174.7833355,486.5610603,54.4693966,54.14453393,0,54.14453393,52.82694332,1.317590612,79.291146,35.27044946,44.02069654,1.642453278,42.37824326,1.32093037,1.624724227,-3.604600844,3.604600844,0.853423262,0.853423262,0.31163953,1.184648838,38.10237885,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.77926729,1.189951809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.858274051,36.62545584,51.63754134,37.81540765,0,35.27044946,-0.072489256,94.15697449,0.072489256,85.84302551,0,0,51.63754134,37.81540765,76.38696934,9,7,48% -2018-09-06 16:00:00,64.0035749,102.9485179,386.7142613,698.3861204,80.60110224,188.5753183,107.4894212,81.08589708,78.17068163,2.91521545,96.19377048,0,96.19377048,2.430420619,93.76334986,1.117073115,1.796790597,-1.720804657,1.720804657,0.824428617,0.824428617,0.208425472,2.51006512,80.73232254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.14063254,1.760831465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818533635,77.60297923,76.95916618,79.3638107,107.4894212,0,0.153911165,81.14634716,-0.153911165,98.85365284,0.725137277,0,154.9037524,79.3638107,206.8457792,9,8,34% -2018-09-06 17:00:00,52.81289749,114.5465751,577.8852376,796.1368145,96.6843852,395.7058609,297.5805237,98.12533727,93.76899425,4.356343021,143.0303573,0,143.0303573,2.915390941,140.1149664,0.921758949,1.999214882,-0.939360829,0.939360829,0.690793852,0.690793852,0.167307242,3.234699178,104.0390448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13432395,2.112190812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.343528543,100.0062871,92.4778525,102.1184779,297.5805237,0,0.373780635,68.05103136,-0.373780635,111.9489686,0.9162317,0,365.1305616,102.1184779,431.9650631,9,9,18% -2018-09-06 18:00:00,42.77537408,129.5111434,728.6968072,846.4801357,107.3619149,593.7244094,484.1066279,109.6177814,104.1245571,5.493224335,179.9183353,0,179.9183353,3.237357859,176.6809775,0.746571117,2.26039587,-0.469425589,0.469425589,0.610430193,0.610430193,0.147334137,3.668524211,117.9923491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0884848,2.345454748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657833303,113.418734,102.7463181,115.7641888,484.1066279,0,0.57190548,55.11679219,-0.57190548,124.8832078,0.962572966,0,568.7342707,115.7641888,644.499617,9,10,13% -2018-09-06 19:00:00,35.09375496,149.9966027,827.0948089,871.7981452,113.7787684,757.1032223,640.5203136,116.5829087,110.3479187,6.234990036,203.9695619,0,203.9695619,3.430849666,200.5387122,0.612501571,2.617934584,-0.122054739,0.122054739,0.551026279,0.551026279,0.13756436,3.820733696,122.8879293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0706168,2.485638904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.768108556,118.124552,108.8387253,120.6101909,640.5203136,0,0.734711719,42.71713768,-0.734711719,137.2828623,0.981946097,0,737.7951473,120.6101909,816.732105,9,11,11% -2018-09-06 20:00:00,31.65578233,176.5686492,865.7347417,880.5319251,116.211539,868.6260678,749.3924612,119.2336065,112.7073324,6.526274171,213.4116179,0,213.4116179,3.504206677,209.9074113,0.552497629,3.081704284,0.175816973,-0.175816973,0.500087216,0.500087216,0.13423458,3.701655712,119.0579721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3385749,2.538785809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.681836963,114.4430513,111.0204119,116.9818372,749.3924612,0,0.851067906,31.67198867,-0.851067906,148.3280113,0.991250281,0,853.8558999,116.9818372,930.4181727,9,12,9% -2018-09-06 21:00:00,33.82279931,204.0474833,841.7847714,875.1905443,114.7088136,916.6643871,799.0687383,117.5956489,111.2499197,6.345729178,207.5593576,0,207.5593576,3.458893962,204.1004637,0.59031921,3.561300413,0.465832921,-0.465832921,0.450491568,0.450491568,0.136268578,3.333870339,107.2287302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9376544,2.505956901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.415377712,103.0723341,109.3530321,105.578291,799.0687383,0,0.913022591,24.07354867,-0.913022591,155.9264513,0.995236842,0,904.6156801,105.578291,973.71456,9,13,8% -2018-09-06 22:00:00,40.69105371,226.0770009,756.9694877,854.2557252,109.2419181,894.4449639,782.7907369,111.6542269,105.9478712,5.706355744,186.8300631,0,186.8300631,3.29404689,183.5360162,0.710192863,3.945788029,0.785994226,-0.785994226,0.395740761,0.395740761,0.144314824,2.75585213,88.63767769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8411237,2.386525758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996605487,85.20190729,103.8377292,87.58843305,782.7907369,0,0.916342395,23.60291005,-0.916342395,156.39709,0.995435243,0,883.0552167,87.58843305,940.3800944,9,14,6% -2018-09-06 23:00:00,50.31378166,242.1435896,617.5402965,811.053174,99.61574545,799.4248001,698.1575573,101.2672428,96.61196318,4.655279605,152.7335768,0,152.7335768,3.003782268,149.7297945,0.878141149,4.226202902,1.193784168,-1.193784168,0.326004574,0.326004574,0.161310519,2.02377632,65.09160314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.86709382,2.176230028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466219055,62.56852482,94.33331288,64.74475485,698.1575573,0,0.860803681,30.59305979,-0.860803681,149.4069402,0.991914747,0,786.8460894,64.74475485,829.2202365,9,15,5% -2018-09-06 00:00:00,61.3150957,254.3557129,434.3472112,727.8231635,84.99763917,631.7390633,546.0301239,85.70893948,82.43464674,3.274292747,107.8755025,0,107.8755025,2.562992429,105.31251,1.070150301,4.439344661,1.822401598,-1.822401598,0.218504662,0.218504662,0.195690537,1.216189888,39.11684742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.239318,1.85687929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881125434,37.60060162,80.12044343,39.45748091,546.0301239,0,0.750223614,41.39024829,-0.750223614,138.6097517,0.983353204,0,617.0609153,39.45748091,642.8850474,9,16,4% -2018-09-06 01:00:00,72.93702075,264.499059,224.4820871,553.5556341,62.05630195,389.7368274,327.8595111,61.87731628,60.18507548,1.692240794,56.29950745,0,56.29950745,1.871226467,54.42828098,1.272991159,4.616379448,3.154276912,-3.154276912,0,0,0.276442111,0.467806617,15.04626887,0.009174481,1,0.307006387,0,0.923268539,0.962030502,0.724496596,1,57.87847529,1.355697206,0.001562193,0.312029739,0.995579689,0.720076285,0.961238037,0.922476074,0.338038879,14.46304595,58.21651417,15.81874316,324.8515703,0,0.592279242,53.68108253,-0.592279242,126.3189175,0.965580361,0,371.8868106,15.81874316,382.2398616,9,17,3% -2018-09-06 02:00:00,84.6766897,273.7607897,30.95877457,143.1338453,17.67943447,74.47001694,57.09030233,17.37971461,17.14633429,0.23338032,8.039413502,0,8.039413502,0.533100179,7.506313323,1.477887035,4.778027143,9.822490355,-9.822490355,0,0,0.571063768,0.133275045,4.286583572,0.534795243,1,0.101457613,0,0.951062886,0.989824849,0.724496596,1,16.61642915,0.386229265,0.07296021,0.312029739,0.81402147,0.538518066,0.961238037,0.922476074,0.091407486,4.120427177,16.70783664,4.506656443,26.55868021,0,0.398859558,66.49309669,-0.398859558,113.5069033,0.924642593,0,41.26512357,4.506656443,44.21464008,9,18,7% -2018-09-06 03:00:00,96.55174289,283.008394,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685145812,4.939428285,-7.301585077,7.301585077,1,0.221201723,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177722462,79.76287234,-0.177722462,100.2371277,0.768662461,0,0,0,0,9,19,0% -2018-09-06 04:00:00,107.819896,293.0285194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881812184,5.114312465,-2.274129013,2.274129013,1,0.919052655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04954397,92.83982299,0.04954397,87.16017701,0,0,0,0,0,9,20,0% -2018-09-06 05:00:00,118.2064137,304.6904568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063091116,5.31785167,-1.07766374,1.07766374,1,0.714445043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269934767,105.6603851,0.269934767,74.33961488,0,0.864770062,0,0,0,9,21,0% -2018-09-06 06:00:00,127.057863,318.9926937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21757805,5.567472794,-0.474730051,0.474730051,1,0.61133731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468432799,117.9326141,0.468432799,62.0673859,0,0.943261104,0,0,0,9,22,0% -2018-09-06 07:00:00,133.400208,336.7379572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328272852,5.87718607,-0.060172411,0.060172411,1,0.540443778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631513106,129.1618452,0.631513106,50.83815484,0,0.970825079,0,0,0,9,23,0% -2018-09-07 08:00:00,136.0797896,357.4638752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375040374,6.238921579,0.2890009,-0.2890009,1,0.480731625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748064748,138.4230174,0.748064748,41.57698264,0,0.983160866,0,0,0,9,0,0% -2018-09-07 09:00:00,134.4281479,18.59085475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346213788,0.324471626,0.636331814,-0.636331814,1,0.421334541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810148144,144.110408,0.810148144,35.88959199,0,0.988282893,0,0,0,9,1,0% -2018-09-07 10:00:00,128.8736463,37.18405057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249269446,0.648984112,1.042519517,-1.042519517,1,0.351872352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813536345,144.442895,0.813536345,35.55710499,0,0.988539931,0,0,0,9,2,0% -2018-09-07 11:00:00,120.5322504,52.27868617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103684624,0.912435202,1.615026703,-1.615026703,1,0.253967857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758003381,139.2884951,0.758003381,40.71150486,0,0.984037234,0,0,0,9,3,0% -2018-09-07 12:00:00,110.4524378,64.49772119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927758706,1.125697595,2.669050122,-2.669050122,1,0.073719237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647340042,130.3413514,0.647340042,49.65864865,0,0.972760842,0,0,0,9,4,0% -2018-09-07 13:00:00,99.36048037,74.84691342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734167529,1.306325074,6.044781956,-6.044781956,1,0,#DIV/0!,0,0,0.334913979,1,0.163947081,0,0.94360047,0.982362433,0.724496596,1,0,0,0.049446217,0.312029739,0.869367519,0.593864115,0.961238037,0.922476074,0,0,0,0,0,0,-0.489095944,119.2811779,0.489095944,60.71882208,0,0.947770569,0,0,0,9,5,0% -2018-09-07 14:00:00,87.46691232,84.23170401,5.878121575,32.02283001,4.462830355,4.372571317,0,4.372571317,4.328259554,0.044311763,10.8357934,9.276003964,1.559789432,0.134570801,1.42521863,1.526585607,1.47012057,-21.91047428,21.91047428,0,0,0.759227297,0.0336427,1.082064888,1,0.69484894,0,0.045608621,0.961238037,1,0.603313416,0.87881682,4.160487716,0.092501758,0.115824807,0.174626586,0.724496596,0.448993192,0.980998523,0.942236559,0.024374022,1.048705118,4.184861738,1.141206876,0,2.83058244,-0.289668463,106.8381085,0.289668463,73.16189154,0,0.877388873,4.184861738,3.624728412,6.55717399,9,6,57% -2018-09-07 15:00:00,75.84402325,93.44871053,172.0441498,483.050266,53.90819833,53.57960872,0,53.57960872,52.28266725,1.296941473,79.29461504,35.95498798,43.33962707,1.62553108,41.71409599,1.323727924,1.630987681,-3.637344989,3.637344989,0.847823683,0.847823683,0.313339328,1.16141953,37.35524443,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.25608843,1.177691734,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841444496,35.90728182,51.09753293,37.08497356,0,35.95498798,-0.074433223,94.26865733,0.074433223,85.73134267,0,0,51.09753293,37.08497356,75.36890642,9,7,48% -2018-09-07 16:00:00,64.17518573,103.3295194,383.8126155,697.0433431,80.16591251,186.6783225,106.0363665,80.64195608,77.74861446,2.893341619,95.4771103,0,95.4771103,2.417298043,93.05981226,1.120068289,1.803440328,-1.726456635,1.726456635,0.825395163,0.825395163,0.20886732,2.493668159,80.20493991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.73492553,1.751324203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806654092,77.09603899,76.54157963,78.84736319,106.0363665,0,0.15212306,81.2500189,-0.15212306,98.7499811,0.721318734,0,153.0275973,78.84736319,204.6316195,9,8,34% -2018-09-07 17:00:00,53.01102966,114.9580319,574.8684697,795.4557861,96.27353,393.6625088,295.9583796,97.70412921,93.37052786,4.33360135,142.2865182,0,142.2865182,2.903002141,139.3835161,0.925217008,2.006396158,-0.939425682,0.939425682,0.690804943,0.690804943,0.167470535,3.218071711,103.5042483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.7513029,2.103215169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331482,99.49222041,92.0827849,101.5954356,295.9583796,0,0.372061383,68.15719562,-0.372061383,111.8428044,0.915613573,0,363.0662941,101.5954356,429.5584748,9,9,18% -2018-09-07 18:00:00,43.01995889,129.9450491,725.4943932,846.0290819,106.9489236,591.5637597,482.3706575,109.1931021,103.7240189,5.469083186,179.1294197,0,179.1294197,3.224904645,175.9045151,0.750839927,2.267968954,-0.467358139,0.467358139,0.610076638,0.610076638,0.147415231,3.6509263,117.4263398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.70347232,2.336432437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.645083676,112.8746643,102.348556,115.2110968,482.3706575,0,0.570158483,55.23872204,-0.570158483,124.761278,0.962305084,0,566.5362923,115.2110968,641.9396509,9,10,13% -2018-09-07 19:00:00,35.40414449,150.3870458,823.6283253,871.4116903,113.352951,754.7504208,638.6066213,116.1437995,109.9349413,6.208858218,203.1162328,0,203.1162328,3.418009701,199.6982231,0.61791889,2.624749102,-0.118692983,0.118692983,0.550451385,0.550451385,0.137626339,3.801814988,122.2794387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6736472,2.476336393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.754402017,117.5396476,108.4280492,120.015984,638.6066213,0,0.732841467,42.87486382,-0.732841467,137.1251362,0.98177242,0,735.394417,120.015984,813.9424782,9,11,11% -2018-09-07 20:00:00,32.02567893,176.7614881,861.9391086,880.1171564,115.7665328,865.9815498,747.208144,118.7734058,112.2757447,6.497661086,212.4779042,0,212.4779042,3.490788096,208.9871161,0.558953543,3.085069958,0.180384753,-0.180384753,0.49930608,0.49930608,0.13430941,3.68127578,118.4024834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9237164,2.529064092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.667071771,113.8129707,110.5907882,116.3420348,747.208144,0,0.848987136,31.89832496,-0.848987136,148.101675,0.991106293,0,851.1534816,116.3420348,927.2970165,9,12,9% -2018-09-07 21:00:00,34.20430952,203.9743649,837.6172156,874.6607485,114.2392818,913.6260688,796.5172105,117.1088584,110.794546,6.314312383,206.5347274,0,206.5347274,3.444735845,203.0899915,0.59697782,3.560024257,0.471946917,-0.471946917,0.449446013,0.449446013,0.136386024,3.312070791,106.5275818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4999319,2.495699394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.399584014,102.3983636,108.8995159,104.894063,796.5172105,0,0.91065846,24.40349497,-0.91065846,155.596505,0.995094674,0,901.5095494,104.894063,970.1606158,9,13,8% -2018-09-07 22:00:00,41.04666398,225.8565611,752.4156762,853.4817429,108.7410749,890.910585,779.7764275,111.1341574,105.4621302,5.672027189,185.7108365,0,185.7108365,3.278944619,182.4318919,0.716399433,3.941940628,0.79455103,-0.79455103,0.394277461,0.394277461,0.144522607,2.732885144,87.89898046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.374211,2.375584214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979965984,84.49184342,103.354177,86.86742764,779.7764275,0,0.913641603,23.98645273,-0.913641603,156.0135473,0.995273946,0,879.4453388,86.86742764,936.2983328,9,14,6% -2018-09-07 23:00:00,50.63998508,241.8814855,612.6216364,809.7742401,99.07002841,795.2737075,694.5728053,100.7009022,96.08270152,4.618200668,151.5245353,0,151.5245353,2.987326886,148.5372084,0.883834473,4.221628321,1.206935327,-1.206935327,0.323755593,0.323755593,0.16171487,2.00020907,64.33359937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.35834739,2.16430816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449144662,61.83990276,93.80749205,64.00421092,694.5728053,0,0.857736355,30.93663679,-0.857736355,149.0633632,0.99170703,0,782.6202257,64.00421092,824.5097016,9,15,5% -2018-09-07 00:00:00,61.62111888,254.0921927,429.1415011,725.3794201,84.36870363,626.7630203,541.7032945,85.05972584,81.82467593,3.235049905,106.5943531,0,106.5943531,2.544027702,104.0503254,1.075491413,4.434745367,1.846372465,-1.846372465,0.214405402,0.214405402,0.196598799,1.19325578,38.37920769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65299086,1.84313941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864509751,36.89155425,79.51750061,38.73469366,541.7032945,0,0.746786136,41.68725525,-0.746786136,138.3127448,0.983046427,0,612.0369888,38.73469366,637.3880711,9,16,4% -2018-09-07 01:00:00,73.23267906,264.2439909,219.2426247,547.8372353,61.19939666,383.4084306,322.4016781,61.00675256,59.35400905,1.652743513,55.00330027,0,55.00330027,1.845387611,53.15791266,1.27815137,4.61192767,3.216963175,-3.216963175,0,0,0.279140047,0.461346903,14.83850226,0.019588056,1,0.301382944,0,0.924149556,0.962911519,0.724496596,1,57.1075932,1.336977042,0.003319195,0.312029739,0.990630889,0.715127485,0.961238037,0.922476074,0.332411544,14.26333278,57.44000474,15.60030983,316.0864561,0,0.588499024,53.94943345,-0.588499024,126.0505666,0.965038092,0,362.4754751,15.60030983,372.6855659,9,17,3% -2018-09-07 02:00:00,84.96538164,273.5146421,27.63603813,130.4121191,16.19137936,67.40775472,51.49627306,15.91148166,15.70314953,0.208332129,7.18890723,0,7.18890723,0.488229828,6.700677403,1.48292566,4.773731058,10.40844386,-10.40844386,0,0,0.58587918,0.122057457,3.925787384,0.555515066,1,0.095781856,0,0.951696213,0.990458176,0.724496596,1,15.21517922,0.353720848,0.075193542,0.312029739,0.808993639,0.533490235,0.961238037,0.922476074,0.083796903,3.773616158,15.29897612,4.127337006,22.88931753,0,0.394873371,66.74192324,-0.394873371,113.2580768,0.923377129,0,36.43444842,4.127337006,39.13570794,9,18,7% -2018-09-07 03:00:00,96.85475401,282.7704053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690434354,4.935274599,-6.994688358,6.994688358,1,0.273684153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173375703,80.0158521,-0.173375703,99.9841479,0.761608956,0,0,0,0,9,19,0% -2018-09-07 04:00:00,108.1376543,292.8011607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887358114,5.110344307,-2.23982147,2.23982147,1,0.91318572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.05405075,93.09838978,0.05405075,86.90161022,0,0,0,0,0,9,20,0% -2018-09-07 05:00:00,118.545675,304.4849492,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069012343,5.314264887,-1.067884648,1.067884648,1,0.71277272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274508387,105.9327194,0.274508387,74.0672806,0,0.867856203,0,0,0,9,21,0% -2018-09-07 06:00:00,127.4220959,318.8379214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223935113,5.564771508,-0.471800917,0.471800917,1,0.610836398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472975554,118.2276202,0.472975554,61.7723798,0,0.944286291,0,0,0,9,22,0% -2018-09-07 07:00:00,133.7829981,336.6867597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334953799,5.876292505,-0.060303596,0.060303596,1,0.540466212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63592948,129.4889564,0.63592948,50.5110436,0,0.97137493,0,0,0,9,23,0% -2018-09-08 08:00:00,136.4576471,357.5680228,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381635231,6.240739298,0.286857776,-0.286857776,1,0.481098121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.752267977,138.7872208,0.752267977,41.2127792,0,0.983534323,0,0,0,9,0,0% -2018-09-08 09:00:00,134.7693556,18.84048449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.352168986,0.328828487,0.632223986,-0.632223986,1,0.42203702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814066172,144.4951314,0.814066172,35.50486855,0,0.988579932,0,0,0,9,1,0% -2018-09-08 10:00:00,129.1616328,37.51254037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254295759,0.65471734,1.03565942,-1.03565942,1,0.353045498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817116775,144.7972047,0.817116775,35.20279529,0,0.988809236,0,0,0,9,2,0% -2018-09-08 11:00:00,120.770451,52.63009403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10784201,0.918568426,1.602895244,-1.602895244,1,0.256042459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76121707,139.5716099,0.76121707,40.42839008,0,0.984315714,0,0,0,9,3,0% -2018-09-08 12:00:00,110.6529586,64.84866319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931258455,1.131822688,2.642293198,-2.642293198,1,0.07829494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6501831,130.5554082,0.6501831,49.44459177,0,0.973098586,0,0,0,9,4,0% -2018-09-08 13:00:00,99.5363112,75.1941607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737236356,1.312385682,5.928143801,-5.928143801,1,0,#DIV/0!,0,0,0.325972325,1,0.167113631,0,0.943198725,0.981960688,0.724496596,1,0,0,0.048303219,0.312029739,0.872169728,0.596666323,0.961238037,0.922476074,0,0,0,0,0,0,-0.491589996,119.4451411,0.491589996,60.5548589,0,0.948289224,0,0,0,9,5,0% -2018-09-08 14:00:00,87.62013074,84.580825,5.086710325,28.07219006,3.921023536,3.84113598,0,3.84113598,3.802790209,0.038345771,9.540194743,8.188629606,1.351565137,0.118233327,1.23333181,1.529259772,1.47621388,-23.28640047,23.28640047,0,0,0.770836805,0.029558332,0.950697552,1,0.715291362,0,0.042917151,0.961238037,1,0.610010142,0.885513546,3.655386595,0.081397538,0.115824807,0.182198062,0.724496596,0.448993192,0.980016115,0.941254152,0.021414911,0.921207151,3.676801506,1.002604689,0,2.331373579,-0.291698994,106.9596997,0.291698994,73.04030026,0,0.878590427,3.676801506,3.050927198,5.673572338,9,6,54% -2018-09-08 15:00:00,76.00515697,93.80894372,169.292758,479.4644309,53.34168729,53.00943893,0,53.00943893,51.73323861,1.276200319,79.27448157,36.61904372,42.65543785,1.608448682,41.04698917,1.326540238,1.637274936,-3.670857605,3.670857605,0.842092688,0.842092688,0.315085465,1.138175409,36.60763361,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.72795672,1.165315594,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.82460421,35.18864987,50.55256093,36.35396546,0,36.61904372,-0.076374891,94.38022438,0.076374891,85.61977562,0,0,50.55256093,36.35396546,74.34550424,9,7,47% -2018-09-08 16:00:00,64.34817549,103.7114095,380.8826607,695.6671065,79.72747505,184.7725692,104.5779173,80.19465189,77.32339751,2.871254382,94.75348833,0,94.75348833,2.404077536,92.3494108,1.12308753,1.810105567,-1.732169069,1.732169069,0.826372046,0.826372046,0.209322931,2.477078125,79.6713474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.32619083,1.741745991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794634669,76.58312957,76.1208255,78.32487556,104.5779173,0,0.150327529,81.35409217,-0.150327529,98.64590783,0.717392924,0,151.1442833,78.32487556,202.4063479,9,8,34% -2018-09-08 17:00:00,53.21110858,115.3695355,571.8121035,794.753227,95.8595574,391.5962488,294.3166496,97.27959923,92.96903806,4.31056117,141.532984,0,141.532984,2.89051934,138.6424647,0.928709043,2.013578251,-0.939472983,0.939472983,0.690813032,0.690813032,0.167641708,3.201219558,102.9622251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.36537564,2.094171422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.319272673,98.97120714,91.68464831,101.0653786,294.3166496,0,0.370324573,68.26436406,-0.370324573,111.7356359,0.914983305,0,360.979469,101.0653786,427.124738,9,9,18% -2018-09-08 18:00:00,43.26695828,130.3773989,722.2428828,845.5606144,106.5325838,589.3678688,480.6030635,108.7648052,103.3202333,5.444571927,178.3284992,0,178.3284992,3.212350464,175.1161488,0.755150879,2.275514881,-0.465252558,0.465252558,0.609716563,0.609716563,0.147502435,3.633077477,116.8522603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.31533822,2.327336976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.632152265,112.3228373,101.9474905,114.6501742,480.6030635,0,0.568383928,55.36239113,-0.568383928,124.6376089,0.962031292,0,564.3026765,114.6501742,639.3389225,9,10,13% -2018-09-08 19:00:00,35.71694522,150.7739657,820.1052302,871.0090307,112.9234962,752.3512521,636.6505164,115.7007358,109.5184361,6.182299639,202.249068,0,202.249068,3.405060053,198.8440079,0.623378293,2.631502128,-0.115280501,0.115280501,0.549867816,0.549867816,0.137693911,3.782629382,121.6623636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2732866,2.466954417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.740502111,116.9464916,108.0137887,119.413446,636.6505164,0,0.730934461,43.03520948,-0.730934461,136.9647905,0.981594414,0,732.9463793,119.413446,811.1000914,9,11,11% -2018-09-08 20:00:00,32.39744468,176.9520631,858.081762,879.6856022,115.3176211,863.2811303,744.9721782,118.3089521,111.8403693,6.468582777,211.5291095,0,211.5291095,3.477251752,208.0518577,0.565442079,3.088396119,0.185018662,-0.185018662,0.498513635,0.498513635,0.134390015,3.660625298,117.7382929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.505217,2.519257057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652110567,113.1745255,110.1573276,115.6937826,744.9721782,0,0.846861852,32.12802994,-0.846861852,147.8719701,0.990958493,0,848.3938346,115.6937826,924.1131015,9,12,9% -2018-09-08 21:00:00,34.58765835,203.9031318,833.385619,874.11168,113.7656049,910.5242781,793.9067131,116.6175649,110.3351521,6.282412819,205.4944447,0,205.4944447,3.430452737,202.0639919,0.603668519,3.558781004,0.478152629,-0.478152629,0.448384774,0.448384774,0.136510161,3.290010744,105.8180549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.058345,2.48535133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383601584,101.7163393,108.4419466,104.2016906,793.9067131,0,0.908244028,24.73619397,-0.908244028,155.263806,0.994948716,0,898.3384114,104.2016906,966.5363339,9,13,8% -2018-09-08 22:00:00,41.404483,225.6388887,747.7985241,852.6828374,108.2358113,887.3071219,776.6977985,110.6093234,104.9721022,5.637221146,184.5761189,0,184.5761189,3.263709058,181.3124099,0.722644553,3.938141529,0.803249343,-0.803249343,0.392789962,0.392789962,0.144739268,2.709683104,87.15272311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9031775,2.364546103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.963156185,83.77451247,102.8663337,86.13905857,776.6977985,0,0.910887102,24.37176828,-0.910887102,155.6282317,0.995108455,0,875.7648802,86.13905857,932.1411713,9,14,6% -2018-09-08 23:00:00,50.96849371,241.6211333,607.643618,808.4576132,98.51934446,791.0489307,690.9196337,100.129297,95.54862272,4.580674262,150.300952,0,150.300952,2.970721733,147.3302302,0.88956803,4.217084319,1.220343347,-1.220343347,0.321462686,0.321462686,0.162133431,1.97645224,63.56949805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.84497053,2.152277783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43193292,61.10541951,93.27690345,63.25769729,690.9196337,0,0.854614543,31.28282279,-0.854614543,148.7171772,0.991494092,0,778.3196381,63.25769729,819.7205359,9,15,5% -2018-09-08 00:00:00,61.929301,253.8294067,423.8846439,722.8643635,83.73308238,621.7059233,537.3022808,84.4036425,81.208221,3.195421495,105.3006008,0,105.3006008,2.524861376,102.7757395,1.080870206,4.430158885,1.870954335,-1.870954335,0.210201655,0.210201655,0.197537428,1.17021572,37.63816014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06043093,1.829253472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847817306,36.17923117,78.90824824,38.00848464,537.3022808,0,0.743296126,41.98704295,-0.743296126,138.012957,0.982732059,0,606.9324249,38.00848464,631.8082179,9,16,4% -2018-09-08 01:00:00,73.53024098,263.9889221,213.972088,541.9352824,60.32843028,376.9762411,316.8539236,60.1223175,58.50930552,1.613011981,53.69913478,0,53.69913478,1.819124761,51.88001002,1.283344805,4.607475879,3.282181792,-3.282181792,0,0,0.281945327,0.45478119,14.62732638,0.030192488,1,0.2957406,0,0.925027014,0.963788977,0.724496596,1,56.32214912,1.317949697,0.005090955,0.312029739,0.985664902,0.710161498,0.961238037,0.922476074,0.326751022,14.06034249,56.64890014,15.37829219,307.2873154,0,0.584671148,54.22023849,-0.584671148,125.7797615,0.964481841,0,353.0219359,15.37829219,363.0867206,9,17,3% -2018-09-08 02:00:00,85.25512416,273.2679415,24.44577458,117.7562382,14.70508678,60.47174974,46.025793,14.44595673,14.26167416,0.184282575,6.370573693,0,6.370573693,0.443412622,5.92716107,1.487982621,4.76942532,11.06781149,-11.06781149,0,0,0.601538999,0.110853156,3.56541854,0.57672917,1,0.090107433,0,0.952321898,0.991083862,0.724496596,1,13.81569317,0.321250936,0.077443944,0.312029739,0.803967649,0.528464244,0.961238037,0.922476074,0.076195481,3.427215918,13.89188865,3.748466853,19.48137559,0,0.390856516,66.99219518,-0.390856516,113.0078048,0.922075818,0,31.85519399,3.748466853,34.30849057,9,18,8% -2018-09-08 03:00:00,97.15928614,282.5313887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695749442,4.931102973,-6.712154035,6.712154035,1,0.322000368,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.168995767,80.27056404,-0.168995767,99.72943596,0.754134601,0,0,0,0,9,19,0% -2018-09-08 04:00:00,108.456821,292.5723289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892928622,5.10635044,-2.206463683,2.206463683,1,0.907481202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058581033,93.35836865,0.058581033,86.64163135,0,0,0,0,0,9,20,0% -2018-09-08 05:00:00,118.8863522,304.2776238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074958282,5.310646376,-1.058253221,1.058253221,1,0.711125649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279095282,106.2062157,0.279095282,73.79378428,0,0.870849712,0,0,0,9,21,0% -2018-09-08 06:00:00,127.7878944,318.6814561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230319502,5.562040674,-0.468893919,0.468893919,1,0.610339272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477521502,118.5236521,0.477521502,61.47634785,0,0.945292673,0,0,0,9,22,0% -2018-09-08 07:00:00,134.1675154,336.6352722,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341664893,5.875393879,-0.060422636,0.060422636,1,0.540486569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640339804,129.8171625,0.640339804,50.18283747,0,0.971916458,0,0,0,9,23,0% -2018-09-09 08:00:00,136.8370078,357.67472,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388256325,6.242601516,0.284742487,-0.284742487,1,0.481459857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756457385,139.1528763,0.756457385,40.84712369,0,0.983902423,0,0,0,9,0,0% -2018-09-09 09:00:00,135.1113228,19.09474655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813744,0.333266197,0.628158932,-0.628158932,1,0.422732186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817964615,144.8815599,0.817964615,35.11844006,0,0.988872661,0,0,0,9,1,0% -2018-09-09 10:00:00,129.4496716,37.84561197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259322986,0.660530536,1.028868685,-1.028868685,1,0.354206782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820674258,145.1523467,0.820674258,34.84765335,0,0.989074487,0,0,0,9,2,0% -2018-09-09 11:00:00,121.0084077,52.9851116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111995137,0.924764652,1.590903039,-1.590903039,1,0.258093247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764407082,139.8542722,0.764407082,40.1457278,0,0.984589826,0,0,0,9,3,0% -2018-09-09 12:00:00,110.8532821,65.20231724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93475476,1.137995116,2.615964023,-2.615964023,1,0.082797495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65300443,130.7685079,0.65300443,49.23149207,0,0.973430841,0,0,0,9,4,0% -2018-09-09 13:00:00,99.71219011,75.54348798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740306022,1.318482594,5.815430211,-5.815430211,1,0,#DIV/0!,0,0,0.317100096,1,0.170290914,0,0.942793359,0.981555322,0.724496596,1,0,0,0.047160707,0.312029739,0.874981082,0.599477678,0.961238037,0.922476074,0,0,0,0,0,0,-0.494066819,119.6082341,0.494066819,60.39176589,0,0.948799114,0,0,0,9,5,0% -2018-09-09 14:00:00,87.77309222,84.93157934,4.359533987,24.38924107,3.411839098,3.34182357,0,3.34182357,3.308959561,0.032864009,8.323220701,7.163321676,1.159899025,0.102879537,1.057019488,1.531929454,1.482335698,-24.84757703,24.84757703,0,0,0.782615552,0.025719884,0.82723989,1,0.735403509,0,0.040223666,0.961238037,1,0.616769213,0.892272618,3.180697793,0.070952565,0.115824807,0.189842622,0.724496596,0.448993192,0.979011299,0.940249336,0.018633969,0.801392796,3.199331761,0.872345361,0,1.895389777,-0.293708265,107.0800954,0.293708265,72.91990456,0,0.879763047,3.199331761,2.539839247,4.861605752,9,6,52% -2018-09-09 15:00:00,76.16712881,94.1704232,166.5295331,475.8019326,52.76977871,52.43394515,0,52.43394515,51.17857518,1.255369963,79.23028993,37.26207308,41.96821685,1.591203528,40.37701332,1.32936718,1.643583943,-3.705171235,3.705171235,0.836224712,0.836224712,0.316879401,1.11492134,35.85970281,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.19479314,1.152821539,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.807756715,34.46971033,50.00254985,35.62253187,0,37.26207308,-0.078314253,94.49167553,0.078314253,85.50832447,0,0,50.00254985,35.62253187,73.31678451,9,7,47% -2018-09-09 16:00:00,64.52253707,104.0940555,377.9244919,694.256743,79.28576394,182.8580155,103.1140554,79.74396008,76.89500562,2.848954456,94.02292683,0,94.02292683,2.390758316,91.63216851,1.126130714,1.816784001,-1.737945497,1.737945497,0.827359874,0.827359874,0.209792606,2.460295803,79.13157023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91440425,1.732096262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782475934,76.06427523,75.69688018,77.79637149,103.1140554,0,0.148524385,81.45857784,-0.148524385,98.54142216,0.713354942,0,149.2538012,77.79637149,200.1699705,9,8,34% -2018-09-09 17:00:00,53.4131179,115.7809324,568.7162158,794.0287903,95.44245892,389.5068572,292.6551175,96.8517397,92.56451664,4.287223062,140.7697732,0,140.7697732,2.877942282,137.8918309,0.932234771,2.020758481,-0.939504111,0.939504111,0.690818355,0.690818355,0.167820885,3.184144115,102.4130202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97653426,2.085059386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306901572,98.44329045,91.28343583,100.5283498,292.6551175,0,0.368569907,68.37255324,-0.368569907,111.6274468,0.914340525,0,358.8698696,100.5283498,424.663664,9,9,18% -2018-09-09 18:00:00,43.51633262,130.8080291,718.9424445,845.074512,106.1128982,587.1364703,478.8035757,108.3328946,102.9132028,5.419691829,177.5156147,0,177.5156147,3.199695396,174.3159193,0.759503283,2.283030796,-0.463109752,0.463109752,0.609350121,0.609350121,0.147595818,3.614980029,116.2701841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92408504,2.318168422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.619040725,111.7633235,101.5431258,114.081492,478.8035757,0,0.566581489,55.48781502,-0.566581489,124.512185,0.961751441,0,562.0331546,114.081492,636.6972095,9,10,13% -2018-09-09 19:00:00,36.03208373,151.1572481,816.5258714,870.5900052,112.4904186,749.905518,634.6517837,115.2537343,109.0984174,6.15531692,201.3681521,0,201.3681521,3.392001166,197.9761509,0.628878497,2.638191668,-0.111817993,0.111817993,0.549275693,0.549275693,0.137767121,3.763180309,121.0368146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8695486,2.457493298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.726411323,116.34519,107.5959599,118.8026833,634.6517837,0,0.728990432,43.19817498,-0.728990432,136.801825,0.981411994,0,730.4508325,118.8026833,808.2048127,9,11,11% -2018-09-09 20:00:00,32.77098502,177.1403074,854.1633012,879.2371285,114.8648327,860.5247782,742.6845003,117.840278,111.4012342,6.439043764,210.56538,0,210.56538,3.463598512,207.1017815,0.571961588,3.091681603,0.189718182,-0.189718182,0.49770997,0.49770997,0.134476432,3.639709027,117.0655537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.0831037,2.509365332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6369568,112.5278631,109.7200605,115.0372284,742.6845003,0,0.844691922,32.36105708,-0.844691922,147.6389429,0.990806821,0,845.5769293,115.0372284,920.8664946,9,12,9% -2018-09-09 21:00:00,34.9727336,203.8336812,829.0908874,873.5432027,113.2878271,907.3592336,791.2374151,116.1218185,109.8717812,6.250037318,204.4387305,0,204.4387305,3.416045976,201.0226845,0.61038935,3.557568864,0.484449858,-0.484449858,0.447307885,0.447307885,0.136641023,3.267696391,105.1003486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6129352,2.474913681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367434911,101.0264527,107.9803701,103.5013664,791.2374151,0,0.905779374,25.071543,-0.905779374,154.928457,0.99479892,0,895.1024959,103.5013664,962.8420702,9,13,8% -2018-09-09 22:00:00,41.76438789,225.4239368,743.1192792,851.858819,107.7261872,883.6351003,773.5553081,110.0797922,104.4778451,5.601947021,183.4262148,0,183.4262148,3.24834201,180.1778728,0.728926079,3.934389911,0.812089787,-0.812089787,0.391278157,0.391278157,0.144964867,2.686253689,86.39915259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4280788,2.353412728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946181654,83.05015182,102.3742604,85.40356455,773.5553081,0,0.908079239,24.75874836,-0.908079239,155.2412516,0.994938726,0,872.014393,85.40356455,927.9093179,9,14,6% -2018-09-09 23:00:00,51.29918785,241.3625412,602.6078509,807.1028988,97.96376208,786.7513078,687.1988021,99.55250573,95.0097932,4.542712522,149.0632191,0,149.0632191,2.953968874,146.1092502,0.895339732,4.212571036,1.234011567,-1.234011567,0.319125283,0.319125283,0.162566355,1.9525151,62.79959735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.3270271,2.140140394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414590544,60.36536167,92.74161764,62.50550207,687.1988021,0,0.851438897,31.63148163,-0.851438897,148.3685184,0.99127588,0,773.9452149,62.50550207,814.8538159,9,15,5% -2018-09-09 00:00:00,62.2395273,253.5673826,418.5786553,720.2767892,83.09081665,616.5687857,532.8280411,83.74074467,80.58532196,3.155422712,103.9947358,0,103.9947358,2.505494695,101.4892411,1.086284676,4.425585702,1.896163248,-1.896163248,0.205890677,0.205890677,0.198507056,1.147081291,36.89407739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46167668,1.815222377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831056491,35.46399053,78.29273317,37.2792129,532.8280411,0,0.739754562,42.28948775,-0.739754562,137.7105123,0.982410015,0,601.7483368,37.2792129,626.1468361,9,16,4% -2018-09-09 01:00:00,73.82959247,263.7338829,208.6734134,535.8450418,59.4431999,370.4409969,311.2171605,59.22383643,57.6507681,1.573068334,52.38771681,0,52.38771681,1.792431799,50.59528501,1.288569474,4.603024606,3.350068661,-3.350068661,0,0,0.284862355,0.44810795,14.41269202,0.040989814,1,0.290081315,0,0.925900519,0.964662482,0.724496596,1,55.52193487,1.298610737,0.006877115,0.312029739,0.980683358,0.705179954,0.961238037,0.922476074,0.321057152,13.85402779,55.84299202,15.15263852,298.460427,0,0.58079694,54.49338532,-0.58079694,125.5066147,0.963911392,0,343.5323977,15.15263852,353.4494965,9,17,3% -2018-09-09 02:00:00,85.54571807,273.0207132,21.40247024,105.249349,13.22842692,53.70259492,40.71171301,12.99088191,12.82954104,0.161340861,5.588162578,0,5.588162578,0.398885879,5.189276698,1.493054441,4.765110372,11.81484885,-11.81484885,0,0,0.618079445,0.09972147,3.207385261,0.598442674,1,0.084438006,0,0.95293953,0.991701494,0.724496596,1,12.42547055,0.288991462,0.079710266,0.312029739,0.79894698,0.523443576,0.961238037,0.922476074,0.06863994,3.083060712,12.49411049,3.372052174,16.34808663,0,0.386812018,67.24372132,-0.386812018,112.7562787,0.920738246,0,27.54641909,3.372052174,29.7533598,9,18,8% -2018-09-09 03:00:00,97.46522378,282.2913596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701089061,4.926913676,-6.451268531,6.451268531,1,0.366614417,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164584485,80.52690276,-0.164584485,99.47309724,0.746204658,0,0,0,0,9,19,0% -2018-09-09 04:00:00,108.7772767,292.3420233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898521629,5.102330848,-2.174027364,2.174027364,1,0.901934265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063132804,93.61965046,0.063132804,86.38034954,0,0,0,0,0,9,20,0% -2018-09-09 05:00:00,119.2283237,304.068455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08092681,5.306995691,-1.048769877,1.048769877,1,0.709503901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283693331,106.4807585,0.283693331,73.51924147,0,0.873753347,0,0,0,9,21,0% -2018-09-09 06:00:00,128.1551394,318.5232436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236729137,5.559279344,-0.466010621,0.466010621,1,0.609846199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482068502,118.8205865,0.482068502,61.1794135,0,0.946280301,0,0,0,9,22,0% -2018-09-09 07:00:00,134.5536503,336.5834368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348404217,5.87448918,-0.060530776,0.060530776,1,0.540505062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644742,130.1463343,0.644742,49.85366571,0,0.9724496,0,0,0,9,23,0% -2018-09-10 08:00:00,137.2177698,357.7839503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394901875,6.244507944,0.282654066,-0.282654066,1,0.481816998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760631038,139.5198604,0.760631038,40.48013958,0,0.984265107,0,0,0,9,0,0% -2018-09-10 09:00:00,135.4539508,19.3536323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364117427,0.337784606,0.624135786,-0.624135786,1,0.423420184,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821841753,145.2695875,0.821841753,34.73041246,0,0.989161037,0,0,0,9,1,0% -2018-09-10 10:00:00,129.7376782,38.18321191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264349649,0.666422767,1.022146243,-1.022146243,1,0.355356387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824207342,145.5082101,0.824207342,34.49178994,0,0.989335653,0,0,0,9,2,0% -2018-09-10 11:00:00,121.246059,53.34365118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116142935,0.931022348,1.579047826,-1.579047826,1,0.260120608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76757227,140.1363785,0.76757227,39.86362148,0,0.984859554,0,0,0,9,3,0% -2018-09-10 12:00:00,111.0533686,65.55858278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938246927,1.144213122,2.59005257,-2.59005257,1,0.087228614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65580321,130.9805817,0.65580321,49.01941829,0,0.973757616,0,0,0,9,4,0% -2018-09-10 13:00:00,99.88809383,75.89479056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743376121,1.32461398,5.70644477,-5.70644477,1,0,#DIV/0!,0,0,0.308296354,1,0.173478971,0,0.942384348,0.981146312,0.724496596,1,0,0,0.046018668,0.312029739,0.8778016,0.602298196,0.961238037,0.922476074,0,0,0,0,0,0,-0.496525904,119.7704206,0.496525904,60.2295794,0,0.949300319,0,0,0,9,5,0% -2018-09-10 14:00:00,87.925727,85.28385826,3.696681729,20.98465855,2.937142313,2.876443784,0,2.876443784,2.848576636,0.027867148,7.1899304,6.205061438,0.984868961,0.088565678,0.896303284,1.534593433,1.488484125,-26.63351357,26.63351357,0,0,0.79453481,0.022141419,0.712144159,1,0.755187141,0,0.037529051,0.961238037,1,0.623588458,0.899091862,2.738160213,0.061202004,0.115824807,0.197557981,0.724496596,0.448993192,0.977984068,0.939222105,0.016041383,0.689707802,2.754201596,0.750909806,0,1.519078831,-0.295695135,107.1992254,0.295695135,72.80077463,0,0.880906924,2.754201596,2.089076865,4.121460623,9,6,50% -2018-09-10 15:00:00,76.32993136,94.53303203,163.7548566,472.0611015,52.19238464,51.85304495,0,51.85304495,50.61859167,1.234453279,79.16158037,37.88352654,41.27805383,1.573792966,39.70426087,1.33220862,1.649912661,-3.74032044,3.74032044,0.830213844,0.830213844,0.318722667,1.091662267,35.11161106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.65651568,1.140207647,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.790905596,33.75061609,49.44742128,34.89082374,0,37.88352654,-0.08025132,94.60301176,0.08025132,85.39698824,0,0,49.44742128,34.89082374,72.2827676,9,7,46% -2018-09-10 16:00:00,64.69826298,104.477326,374.9382135,692.8115684,78.84075291,180.934617,101.6447611,79.28985595,76.46341332,2.826442628,93.28545035,0,93.28545035,2.377339592,90.90811076,1.129197709,1.823473333,-1.74378965,1.74378965,0.828359283,0.828359283,0.210276654,2.443322056,78.5856362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49954131,1.722374441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770178512,75.53950266,75.26971983,77.2618771,101.6447611,0,0.146713429,81.5634873,-0.146713429,98.4365127,0.709199569,0,147.3561405,77.2618771,197.9224939,9,8,34% -2018-09-10 17:00:00,53.61704027,116.1920709,565.580904,793.2821255,95.02222699,387.3941164,290.9735724,96.42054401,92.15695625,4.263587757,139.996909,0,139.996909,2.865270738,137.1316382,0.935793888,2.027934202,-0.93952051,0.93952051,0.690821159,0.690821159,0.168008195,3.166846908,101.8566825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.58477171,2.075878896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294369805,97.90851756,90.87914151,99.98439645,290.9735724,0,0.366797087,68.4817796,-0.366797087,111.5182204,0.91368485,0,356.7372863,99.98439645,422.1750741,9,9,18% -2018-09-10 18:00:00,43.76804085,131.2367803,715.5932773,844.5705541,105.6898712,584.869316,476.97194,107.897376,102.5029317,5.394444392,176.6908145,0,176.6908145,3.186939571,173.5038749,0.76389642,2.290513916,-0.46093066,0.46093066,0.608977475,0.608977475,0.14769545,3.596636414,115.6801904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.52971679,2.308926871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605750838,111.1961991,101.1354676,113.505126,476.97194,0,0.564750852,55.61500818,-0.564750852,124.3849918,0.961465384,0,559.7274769,113.505126,634.0143118,9,10,13% -2018-09-10 19:00:00,36.34948565,151.5367848,812.8906363,870.1544551,112.053735,747.4130504,632.6102359,114.8028145,108.6749015,6.127912983,200.4735796,0,200.4735796,3.378833546,197.0947461,0.634418206,2.644815833,-0.108306183,0.108306183,0.548675138,0.548675138,0.137846015,3.743471396,120.4029082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.462449,2.447953402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712132283,115.7358551,107.1745813,118.1838085,632.6102359,0,0.727009133,43.36375838,-0.727009133,136.6362416,0.981225073,0,727.9076062,118.1838085,805.2565452,9,11,11% -2018-09-10 20:00:00,33.14620541,177.3261576,850.1843726,878.7716048,114.408199,857.7125033,740.3450847,117.3674186,110.9583697,6.40904892,209.5868736,0,209.5868736,3.449829322,206.1370442,0.578510419,3.0949253,0.194482777,-0.194482777,0.496895176,0.496895176,0.134568692,3.618531934,116.3844256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6574055,2.4993896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.621614069,111.8731368,109.2790195,114.3725264,740.3450847,0,0.84247725,32.59735694,-0.84247725,147.4026431,0.990651216,0,842.7027782,114.3725264,917.5573093,9,12,9% -2018-09-10 21:00:00,35.35942346,203.7659113,824.7339779,872.9551855,112.805996,904.1312043,788.5095323,115.6216721,109.404479,6.217193095,203.3678184,0,203.3678184,3.401516988,199.9663014,0.617138361,3.556386055,0.490838391,-0.490838391,0.446215381,0.446215381,0.136778645,3.245134134,104.3746688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1637466,2.464387479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351088633,100.3289017,107.5148352,102.7932892,788.5095323,0,0.903264618,25.40943887,-0.903264618,154.5905611,0.994645236,0,891.8020848,102.7932892,959.0782367,9,13,8% -2018-09-10 22:00:00,42.12625573,225.2116552,738.3792419,851.0095036,107.2122652,879.8951025,770.3494681,109.5456344,103.9794198,5.566214618,182.2614412,0,182.2614412,3.232845366,179.0285958,0.735241864,3.930684898,0.821072976,-0.821072976,0.389741941,0.389741941,0.145199457,2.662604774,85.63852218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.94897336,2.342185462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929048095,82.31900494,101.8780215,84.6611904,770.3494681,0,0.905218408,25.14728497,-0.905218408,154.852715,0.994764711,0,868.1944877,84.6611904,923.6035436,9,14,6% -2018-09-10 23:00:00,51.63194711,241.1057131,597.5159961,805.7097055,97.40335264,782.3817371,683.411127,98.97061015,94.46628218,4.50432797,147.8117415,0,147.8117415,2.937070462,144.8746711,0.901147476,4.208088538,1.247943385,-1.247943385,0.316742802,0.316742802,0.163013799,1.928407096,62.02420106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80458363,2.127897552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397124376,59.62002126,92.20170801,61.74791881,683.411127,0,0.848210121,31.98247728,-0.848210121,148.0175227,0.991052342,0,769.4979061,61.74791881,809.910684,9,15,5% -2018-09-10 00:00:00,62.55168202,253.3061453,413.2256008,717.615479,82.44194946,611.3526775,528.2815879,83.07108963,79.9560205,3.115069126,102.67726,0,102.67726,2.485928955,100.1913311,1.091732804,4.42102625,1.922015842,-1.922015842,0.201469623,0.201469623,0.19950833,1.123864248,36.14733747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85676818,1.801047065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814235822,34.74619571,77.671004,36.54724278,528.2815879,0,0.736162476,42.59446471,-0.736162476,137.4055353,0.982080211,0,596.4858973,36.54724278,620.4053368,9,16,4% -2018-09-10 01:00:00,74.13061833,263.4789014,203.3496194,529.5616982,58.54349686,363.8035033,305.4923736,58.31112976,56.77819443,1.532935326,51.06977196,0,51.06977196,1.765302433,49.30446953,1.293823366,4.598574339,3.420769685,-3.420769685,0,0,0.287895778,0.441325608,14.19454861,0.051982078,1,0.284407051,0,0.926769683,0.965531646,0.724496596,1,54.7067396,1.278955603,0.008677305,0.312029739,0.975687895,0.700184491,0.961238037,0.922476074,0.315329676,13.64434004,55.02206927,14.92329564,289.6122451,0,0.576877774,54.76875982,-0.576877774,125.2312402,0.963326527,0,334.0132276,14.92329564,343.7802261,9,17,3% -2018-09-10 02:00:00,85.83694869,272.7729808,18.52096321,92.98583666,11.77065291,47.14503814,35.589695,11.55534314,11.41572429,0.139618844,4.845550573,0,4.845550573,0.354928614,4.490621958,1.498137374,4.760786625,12.66771124,-12.66771124,0,0,0.635531358,0.088732154,2.853931073,0.620659278,1,0.078777491,0,0.95354869,0.992310653,0.724496596,1,11.05330566,0.257144573,0.081991214,0.312029739,0.793935357,0.518431953,0.961238037,0.922476074,0.061174227,2.743307102,11.11447988,3.000451675,13.5006206,0,0.382743182,67.49629449,-0.382743182,112.5037055,0.9193641,0,23.5264658,3.000451675,25.49020141,9,18,8% -2018-09-10 03:00:00,97.77245048,282.050332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706451179,4.92270695,-6.209705868,6.209705868,1,0.407924065,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160143723,80.7847615,-0.160143723,99.2152385,0.737780457,0,0,0,0,9,19,0% -2018-09-10 04:00:00,109.0989013,292.1102416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904135038,5.098285495,-2.142485146,2.142485146,1,0.896540228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067704029,93.88212482,0.067704029,86.11787518,0,0,0,0,0,9,20,0% -2018-09-10 05:00:00,119.5714667,303.8574155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086915785,5.303312357,-1.039434924,1.039434924,1,0.707907531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288300406,106.7562311,0.288300406,73.24376886,0,0.87656979,0,0,0,9,21,0% -2018-09-10 06:00:00,128.5237109,318.3632268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243161922,5.556486525,-0.463152555,0.463152555,1,0.609357441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486614414,119.1182987,0.486614414,60.88170134,0,0.947249242,0,0,0,9,22,0% -2018-09-10 07:00:00,134.9412926,336.5311916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355169853,5.873577329,-0.060629269,0.060629269,1,0.540521905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649134003,130.4763412,0.649134003,49.5236588,0,0.972974302,0,0,0,9,23,0% -2018-09-11 08:00:00,137.5998315,357.8956941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401570109,6.246458241,0.280591515,-0.280591515,1,0.482169715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764787026,139.8880486,0.764787026,40.11195142,0,0.984622322,0,0,0,9,0,0% -2018-09-11 09:00:00,135.7971418,19.61713013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370107239,0.342383511,0.620153631,-0.620153631,1,0.424101173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825695898,145.6591083,0.825695898,34.34089172,0,0.989445018,0,0,0,9,1,0% -2018-09-11 10:00:00,130.0255698,38.52528311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269374304,0.672393035,1.01549095,-1.01549095,1,0.35649451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827714617,145.8646847,0.827714617,34.13531532,0,0.989592706,0,0,0,9,2,0% -2018-09-11 11:00:00,121.4833458,53.70562209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284371,0.937339932,1.567327245,-1.567327245,1,0.262124945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770711536,140.4178272,0.770711536,39.58217277,0,0.985124884,0,0,0,9,3,0% -2018-09-11 12:00:00,111.2531806,65.91735726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.941734305,1.150474918,2.564548841,-2.564548841,1,0.091590009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658578667,131.1915638,0.658578667,48.80843624,0,0.974078926,0,0,0,9,4,0% -2018-09-11 13:00:00,100.0640011,76.24796239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746446283,1.330777992,5.601002852,-5.601002852,1,0,#DIV/0!,0,0,0.299560086,1,0.176677871,0,0.941971664,0.980733627,0.724496596,1,0,0,0.044877074,0.312029739,0.880631333,0.605127929,0.961238037,0.922476074,0,0,0,0,0,0,-0.498966795,119.9316672,0.498966795,60.06833275,0,0.949792931,0,0,0,9,5,0% -2018-09-11 14:00:00,88.07796194,85.63755204,3.097777075,17.86640398,2.498545011,2.446557012,0,2.446557012,2.42320466,0.023352352,6.14451801,5.318085743,0.826432267,0.075340351,0.751091917,1.537250434,1.494657247,-28.69575925,28.69575925,0,0,0.806560624,0.018835088,0.605801165,1,0.774643699,0,0.034834258,0.961238037,1,0.630465459,0.905968863,2.32927649,0.052177102,0.115824807,0.205341545,0.724496596,0.448993192,0.976934474,0.938172511,0.013645957,0.586536216,2.342922447,0.638713318,0,1.198464129,-0.297658429,107.3170171,0.297658429,72.6829829,0,0.882022227,2.342922447,1.695785319,3.452780022,9,6,47% -2018-09-11 15:00:00,76.4935582,94.89665254,160.969104,468.2401978,51.60941135,51.26665028,0,51.26665028,50.05319718,1.213453099,79.06789079,38.48285373,40.58503706,1.556214171,39.02882289,1.335064447,1.656259036,-3.776342209,3.776342209,0.824053759,0.824053759,0.320616877,1.068403096,34.36351618,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.113037,1.127471869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.774054406,33.03151883,48.8870914,34.1589907,0,38.48285373,-0.082186138,94.71423616,0.082186138,85.28576384,0,0,48.8870914,34.1589907,71.24346764,9,7,46% -2018-09-11 16:00:00,64.8753461,104.861089,371.9239268,691.3308721,78.39241405,179.0023132,100.17,78.83231319,76.02859353,2.803719662,92.54108257,0,92.54108257,2.363820521,90.17726205,1.132288393,1.83017126,-1.749705549,1.749705549,0.829370961,0.829370961,0.210775399,2.426157776,78.03357394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.08157599,1.712579921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75774305,75.00883942,74.83931904,76.72141934,100.17,0,0.144894441,81.66883347,-0.144894441,98.33116653,0.704921198,0,145.4512754,76.72141934,195.6639099,9,8,35% -2018-09-11 17:00:00,53.82285792,116.6028001,562.4062752,792.5128736,94.59885419,385.2578014,289.2717956,95.98600577,91.7463497,4.239656064,139.2144172,0,139.2144172,2.852504486,136.3619127,0.939386084,2.035102779,-0.939523738,0.939523738,0.690821711,0.690821711,0.168203767,3.149329572,101.2932648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19008108,2.06662979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281678554,97.36693898,90.47175963,99.43356877,289.2717956,0,0.3650058,68.59206034,-0.3650058,111.4079397,0.913015875,0,354.5815014,99.43356877,419.6587835,9,9,18% -2018-09-11 18:00:00,44.02204089,131.6634955,712.1956054,844.0485191,105.2635084,582.566164,475.1079074,107.4582565,102.0894252,5.368831306,175.8541532,0,175.8541532,3.174083159,172.6800701,0.768329557,2.297961501,-0.458716293,0.458716293,0.608598796,0.608598796,0.147801401,3.57804926,115.0823637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.13223869,2.299612444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.592284509,110.6215453,100.7245232,112.9211578,475.1079074,0,0.562891702,55.74398495,-0.562891702,124.256015,0.961172967,0,557.3854,112.9211578,631.2900394,9,10,13% -2018-09-11 19:00:00,36.66907574,151.9124708,809.1999519,869.702224,111.6134646,744.8737035,630.5257056,114.3479979,108.2479068,6.100091045,199.5654547,0,199.5654547,3.365557767,196.1998969,0.639996105,2.65137279,-0.10474585,0.10474585,0.548066285,0.548066285,0.137930637,3.723506493,119.7607683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0520054,2.438335146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.697667779,115.1186058,106.7496732,117.5569409,630.5257056,0,0.724990334,43.53195628,-0.724990334,136.4680437,0.981033563,0,725.3165529,117.5569409,802.2552196,9,11,11% -2018-09-11 20:00:00,33.52301083,177.5095506,846.1456744,878.2889057,113.9477542,854.8443543,737.9539418,116.8904125,110.511809,6.378603507,208.5937603,0,208.5937603,3.435945212,205.1578151,0.585086914,3.098126112,0.199311861,-0.199311861,0.496069354,0.496069354,0.134666828,3.597099244,115.6950766,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2281543,2.48933061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.606086157,111.2105083,108.8342405,113.699839,737.9539418,0,0.840217766,32.83687773,-0.840217766,147.1631223,0.990491618,0,839.7714341,113.699839,914.1857047,9,12,9% -2018-09-11 21:00:00,35.74761559,203.6997188,820.3159097,872.3475045,112.3201621,900.8405133,785.7233307,115.1171826,108.9332948,6.18388783,202.2819569,0,202.2819569,3.386867304,198.8950896,0.623913592,3.555230778,0.497317962,-0.497317962,0.445107309,0.445107309,0.136923057,3.222330651,103.6412304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7108264,2.453773833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.334567587,99.62389287,107.045394,102.0776667,785.7233307,0,0.900699924,25.74977786,-0.900699924,154.2502221,0.994487616,0,888.4375161,102.0776667,955.2453074,9,13,8% -2018-09-11 22:00:00,42.48996243,225.0019895,733.579781,850.1347171,106.6941121,876.0877781,767.0808529,109.0069252,103.476891,5.530034254,181.0821321,0,181.0821321,3.217221139,177.864911,0.741589743,3.927025541,0.830199475,-0.830199475,0.388181218,0.388181218,0.145443093,2.638744511,84.87109411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.46592354,2.330865764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.911761416,81.58132389,101.377685,83.91218965,767.0808529,0,0.902305055,25.53726966,-0.902305055,154.4627303,0.994586368,0,864.3058447,83.91218965,919.2246945,9,14,6% -2018-09-11 23:00:00,51.96664922,240.8506482,592.3697863,804.2776545,96.83819195,777.9411941,679.5574973,98.38369684,93.91816317,4.465533667,146.5469417,0,146.5469417,2.920028782,143.6269129,0.90698913,4.203636816,1.262142196,-1.262142196,0.314314662,0.314314662,0.163475914,1.904137937,61.24362148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.27771079,2.115550913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379541453,58.86969848,91.65725224,60.9852494,679.5574973,0,0.844928979,32.33567266,-0.844928979,147.6643273,0.990823429,0,764.9787417,60.9852494,804.8923677,9,15,5% -2018-09-11 00:00:00,62.86564715,253.0457157,407.8276187,714.8792159,81.78652775,606.0587498,523.6640108,82.39473903,79.32036217,3.074376857,101.3486934,0,101.3486934,2.466165572,98.88252781,1.097212529,4.416480897,1.948529254,-1.948529254,0.196935562,0.196935562,0.200541905,1.100576602,35.39832672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.24574922,1.786728562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797364002,34.02621809,77.04311322,35.81294665,523.6640108,0,0.732520962,42.90184639,-0.732520962,137.0981536,0.981742568,0,591.1463637,35.81294665,614.585221,9,16,4% -2018-09-11 01:00:00,74.43320087,263.2240028,198.0038331,523.0803976,57.62911092,357.0646713,299.6806541,57.38401712,55.89138059,1.492636531,49.74605208,0,49.74605208,1.737730323,48.00832175,1.299104428,4.594125519,3.494441363,-3.494441363,0,0,0.291050481,0.434432581,13.97284515,0.063171277,1,0.278719796,0,0.927634125,0.966396088,0.724496596,1,53.87635355,1.258979703,0.010491143,0.312029739,0.970680175,0.695176771,0.961238037,0.922476074,0.309568261,13.43123024,54.18592181,14.69020994,280.7494444,0,0.572915092,55.04624482,-0.572915092,124.9537552,0.962727033,0,324.4710014,14.69020994,334.08545,9,17,3% -2018-09-11 02:00:00,86.12858177,272.5247656,15.81621176,81.07103308,10.34249087,40.84769977,30.69784387,10.1498559,10.03062661,0.119229285,4.146687915,0,4.146687915,0.311864259,3.834823656,1.503227332,4.756454453,13.64986778,-13.64986778,0,0,0.653917071,0.077966065,2.507656653,0.643380759,1,0.073130136,0,0.954148945,0.992910908,0.724496596,1,9.709367777,0.225944594,0.084285314,0.312029739,0.788936805,0.513433401,0.961238037,0.922476074,0.053850147,2.410454958,9.763217924,2.636399552,10.94744179,0,0.378653666,67.74968747,-0.378653666,112.2503125,0.917953213,0,19.81245728,2.636399552,21.53792806,9,18,9% -2018-09-11 03:00:00,98.08084756,281.808318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711833723,4.918483009,-5.985461999,5.985461999,1,0.446272025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155675399,81.04403071,-0.155675399,98.95596929,0.728818874,0,0,0,0,9,19,0% -2018-09-11 04:00:00,109.4215726,291.8769799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909766715,5.09421431,-2.111810737,2.111810737,1,0.891294595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072292626,94.14567876,0.072292626,85.85432124,0,0,0,0,0,9,20,0% -2018-09-11 05:00:00,119.9156565,303.6444756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092923031,5.299595855,-1.03024864,1.03024864,1,0.706336583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292914344,107.0325144,0.292914344,72.96748563,0,0.879301634,0,0,0,9,21,0% -2018-09-11 06:00:00,128.893487,318.2013447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249615733,5.55366115,-0.460321257,0.460321257,1,0.608873261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491157081,119.4166616,0.491157081,60.58333845,0,0.948199574,0,0,0,9,22,0% -2018-09-11 07:00:00,135.3303314,336.4784695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36195986,5.872657154,-0.060719406,0.060719406,1,0.54053732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653513747,130.8070502,0.653513747,49.19294978,0,0.973490515,0,0,0,9,23,0% -2018-09-12 08:00:00,137.983091,358.009927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408259251,6.248451981,0.278553779,-0.278553779,1,0.482518188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768923452,140.257314,0.768923452,39.74268603,0,0.984974021,0,0,0,9,0,0% -2018-09-12 09:00:00,136.1407989,19.88522336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376105188,0.34706262,0.616211479,-0.616211479,1,0.42477532,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829525394,146.0500153,0.829525394,33.94998469,0,0.98972457,0,0,0,9,1,0% -2018-09-12 10:00:00,130.3132655,38.87176306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274395542,0.678440251,1.00890157,-1.00890157,1,0.35762136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831194716,146.2216605,0.831194716,33.77833946,0,0.989845623,0,0,0,9,2,0% -2018-09-12 11:00:00,121.7202116,54.07092926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12441846,0.943715745,1.55573882,-1.55573882,1,0.264106682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773823835,140.6985188,0.773823835,39.30148121,0,0.98538581,0,0,0,9,3,0% -2018-09-12 12:00:00,111.4526836,66.27853484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945216289,1.156778656,2.539442819,-2.539442819,1,0.095883391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661330086,131.4013917,0.661330086,48.59860826,0,0.97439479,0,0,0,9,4,0% -2018-09-12 13:00:00,100.2398934,76.60289492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749516181,1.336972733,5.498930502,-5.498930502,1,0,#DIV/0!,0,0,0.290890184,1,0.17988773,0,0.941555273,0.980317236,0.724496596,1,0,0,0.043735885,0.312029739,0.883470367,0.607966963,0.961238037,0.922476074,0,0,0,0,0,0,-0.501389094,120.0919444,0.501389094,59.90805562,0,0.950277049,0,0,0,9,5,0% -2018-09-12 14:00:00,88.22972087,85.99254891,2.561932558,15.0392734,2.097335057,2.053405596,0,2.053405596,2.034092667,0.01931293,5.190133001,4.505720401,0.6844126,0.06324239,0.62117021,1.539899127,1.500853111,-31.10287128,31.10287128,0,0,0.818653501,0.015810598,0.508523167,1,0.793774376,0,0.032140301,0.961238037,1,0.637397562,0.912900966,1.955247242,0.043903716,0.115824807,0.21319042,0.724496596,0.448993192,0.975862628,0.937100665,0.011454724,0.492183767,1.966701966,0.536087483,0,0.929195002,-0.299596947,107.4333965,0.299596947,72.56660354,0,0.883109114,1.966701966,1.356668059,2.854614077,9,6,45% -2018-09-12 15:00:00,76.6580045,95.26116525,158.1726363,464.3373929,51.02075755,50.67466561,0,50.67466561,49.48229347,1.192372145,78.94875737,39.05950635,39.88925103,1.538464087,38.35078694,1.337934577,1.662620983,-3.813276338,3.813276338,0.817737651,0.817737651,0.322563743,1.045148616,33.61557217,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.56426263,1.114611994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.757206615,32.3125666,48.32146924,33.4271786,0,39.05950635,-0.084118804,94.8253546,0.084118804,85.1746454,0,0,48.32146924,33.4271786,70.19888909,9,7,45% -2018-09-12 16:00:00,65.0537802,105.2452108,368.8817204,689.8139094,77.94071684,177.0610175,98.68971461,78.37130288,75.59051666,2.780786225,91.78984406,0,91.78984406,2.350200183,89.43964388,1.135402655,1.836875451,-1.75569758,1.75569758,0.830395659,0.830395659,0.211289182,2.408803847,77.47541193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.66047984,1.702712033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745170187,74.47231287,74.40565003,76.1750249,98.68971461,0,0.143067157,81.77463151,-0.143067157,98.22536849,0.700513778,0,143.5391549,76.1750249,193.3941852,9,8,35% -2018-09-12 17:00:00,54.03055313,117.012968,559.1924408,791.7206649,94.17233278,383.097669,287.5495507,95.54811831,91.33268949,4.215428822,138.4223247,0,138.4223247,2.839643292,135.5826814,0.943011049,2.042261558,-0.939515512,0.939515512,0.690820305,0.690820305,0.168407736,3.131593835,100.7228225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.79245514,2.057311899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.268829073,96.81860819,90.06128422,98.87592009,287.5495507,0,0.363195712,68.70341415,-0.363195712,111.2965859,0.912333176,0,352.4022792,98.87592009,417.1145914,9,9,18% -2018-09-12 18:00:00,44.27828988,132.0880182,708.7496753,843.5081831,104.8338164,580.2267705,473.2112261,107.0155444,101.67269,5.342854429,175.0056908,0,175.0056908,3.161126359,171.8445644,0.772801946,2.30537082,-0.456467762,0.456467762,0.608214274,0.608214274,0.147913742,3.559221376,114.4767942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.73165693,2.290225286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.578643771,110.0394489,100.3103007,112.3296742,473.2112261,0,0.561003717,55.87476007,-0.561003717,124.1252399,0.960874031,0,555.006679,112.3296742,628.5242041,9,10,13% -2018-09-12 19:00:00,36.99077787,152.284202,805.4542857,869.2331587,111.1696284,742.2873499,628.3980413,113.8893086,107.817454,6.071854631,198.6438913,0,198.6438913,3.35217447,195.2917168,0.645610867,2.657860723,-0.101137854,0.101137854,0.547449281,0.547449281,0.138021028,3.703289695,119.1105266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6382378,2.428638992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683020778,114.4935687,106.3212586,116.9222077,628.3980413,0,0.722933812,43.70276432,-0.722933812,136.2972357,0.980837375,0,722.677544,116.9222077,799.2007905,9,11,11% -2018-09-12 20:00:00,33.90130537,177.6904218,842.0479624,877.7889124,113.4835357,851.9204188,735.5111172,116.4093017,110.0615884,6.347713223,207.5862247,0,207.5862247,3.421947312,204.1642774,0.591689399,3.10128291,0.204204768,-0.204204768,0.495232618,0.495232618,0.134770869,3.575416482,114.9976845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7953852,2.479189179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.59037707,110.5401485,108.3857623,113.0193376,735.5111172,0,0.837913429,33.07956567,-0.837913429,146.9204343,0.990327964,0,836.7829897,113.0193376,910.7518858,9,12,9% -2018-09-12 21:00:00,36.13719636,203.6349981,815.8377732,871.7200462,111.8303805,897.4875428,782.8791311,114.6084117,108.4582819,6.150129746,201.1814121,0,201.1814121,3.372098582,197.8093136,0.630713059,3.55410119,0.503888223,-0.503888223,0.443983729,0.443983729,0.137074286,3.199292956,102.900259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.254226,2.443073944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.317876856,98.91164291,106.5721028,101.3547168,782.8791311,0,0.898085497,26.09245555,-0.898085497,153.9075445,0.994326013,0,885.0091882,101.3547168,951.3438233,9,13,7% -2018-09-12 22:00:00,42.85538178,224.7948805,728.7223473,849.2343004,106.1717998,872.2138542,763.7501091,108.4637452,102.9703283,5.493416867,179.8886414,0,179.8886414,3.201471496,176.68717,0.747967514,3.923410806,0.839469759,-0.839469759,0.386595906,0.386595906,0.14569582,2.614681401,84.09714178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.97899621,2.3194552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.894327775,80.83737147,100.873324,83.15682667,763.7501091,0,0.899339686,25.9285928,-0.899339686,154.0714072,0.994403654,0,860.3492235,83.15682667,914.7737034,9,14,6% -2018-09-12 23:00:00,52.30316898,240.597341,587.1710419,802.8063866,96.26836156,773.4307466,675.638888,97.7918586,93.36551527,4.426343336,145.2692634,0,145.2692634,2.902846294,142.3664171,0.912862508,4.199215772,1.276611331,-1.276611331,0.311840294,0.311840294,0.163952843,1.879717672,60.4581818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.74648461,2.103102258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361849054,58.11470399,91.10833366,60.21780625,675.638888,0,0.841596304,32.69092872,-0.841596304,147.3090713,0.990589093,0,760.3888467,60.21780625,799.8001965,9,15,5% -2018-09-12 00:00:00,63.18130138,252.7861111,402.386938,712.0667994,81.12460434,600.6882556,518.9764947,81.71176091,78.6783982,3.033362707,100.0095779,0,100.0095779,2.446206139,97.56337178,1.102721735,4.411949941,1.975721039,-1.975721039,0.192285493,0.192285493,0.201608444,1.07723069,34.64744196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.62866903,1.77226802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780449968,33.30443909,76.40911899,35.07670711,518.9764947,0,0.728831193,43.2115019,-0.728831193,136.7884981,0.981397009,0,585.7310985,35.07670711,608.6881017,9,16,4% -2018-09-12 01:00:00,74.73721893,262.9692093,192.6393109,516.3962896,56.69983393,350.2255512,293.7832299,56.44232124,54.99012474,1.452196497,48.41734041,0,48.41734041,1.709709193,46.70763122,1.304410544,4.589678534,3.571251472,-3.571251472,0,0,0.294331586,0.427427298,13.74753119,0.074559314,1,0.273021579,0,0.928493466,0.967255429,0.724496596,1,53.03057163,1.23867849,0.012318224,0.312029739,0.965661904,0.690158499,0.961238037,0.922476074,0.303772514,13.21464989,53.33434414,14.45332838,271.8789539,0,0.56891042,55.32571908,-0.56891042,124.6742809,0.962112701,0,314.9125389,14.45332838,324.3719532,9,17,3% -2018-09-12 02:00:00,86.42035916,272.2760869,13.30295209,69.62004192,8.956163342,34.8624013,26.07601605,8.786385245,8.686101973,0.100283272,3.495516121,0,3.495516121,0.270061369,3.225454751,1.508319808,4.752114191,14.79217653,-14.79217653,0,0,0.673246305,0.067515342,2.171525493,0.666606376,1,0.067500598,0,0.954739843,0.993501806,0.724496596,1,8.405218051,0.195658543,0.086590867,0.312029739,0.783955724,0.50845232,0.961238037,0.922476074,0.046727682,2.087352902,8.451945733,2.283011445,8.693577502,0,0.374547549,68.00364864,-0.374547549,111.9963514,0.916505601,0,16.41965821,2.283011445,17.91384354,9,18,9% -2018-09-12 03:00:00,98.39029306,281.5653277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717234566,4.914242029,-5.776801818,5.776801818,1,0.481955017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151181509,81.30459709,-0.151181509,98.69540291,0.719271722,0,0,0,0,9,19,0% -2018-09-12 04:00:00,109.745165,291.6422321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915414468,5.090117188,-2.081979011,2.081979011,1,0.88619307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076896451,94.4101957,0.076896451,85.5898043,0,0,0,0,0,9,20,0% -2018-09-12 05:00:00,120.2607654,303.4296028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098946317,5.295845618,-1.021211326,1.021211326,1,0.704791112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297532936,107.3094856,0.297532936,72.69051439,0,0.881951377,0,0,0,9,21,0% -2018-09-12 06:00:00,129.2643432,318.0375317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256088395,5.550802074,-0.4575183,0.4575183,1,0.608393927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495694315,119.7155447,0.495694315,60.2844553,0,0.949131383,0,0,0,9,22,0% -2018-09-12 07:00:00,135.7206535,336.4251966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368772266,5.871727367,-0.060802531,0.060802531,1,0.540551535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657879154,131.1383249,0.657879154,48.86167514,0,0.9739982,0,0,0,9,23,0% -2018-09-13 08:00:00,138.3674463,358.1266181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414967515,6.250488625,0.276539736,-0.276539736,1,0.48286261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773038429,140.6275267,0.773038429,39.37247328,0,0.985320162,0,0,0,9,0,0% -2018-09-13 09:00:00,136.4848262,20.15788871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382109596,0.351821528,0.612308258,-0.612308258,1,0.425442811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833328608,146.4422005,0.833328608,33.55779954,0,0.98999966,0,0,0,9,1,0% -2018-09-13 10:00:00,130.6006871,39.2225825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279411995,0.684563206,1.002376765,-1.002376765,1,0.358737167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834646314,146.5790279,0.834646314,33.4209721,0,0.990094386,0,0,0,9,2,0% -2018-09-13 11:00:00,121.9566032,54.43947212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12854427,0.950148032,1.544279941,-1.544279941,1,0.266066266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776908176,140.9783561,0.776908176,39.02164388,0,0.98564233,0,0,0,9,3,0% -2018-09-13 12:00:00,111.6518463,66.64200562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948692334,1.163122418,2.51472443,-2.51472443,1,0.100110485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664056813,131.6100073,0.664056813,48.38999268,0,0.974705238,0,0,0,9,4,0% -2018-09-13 13:00:00,100.415755,76.95947638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752585546,1.343196253,5.400063477,-5.400063477,1,0,#DIV/0!,0,0,0.282285431,1,0.183108713,0,0.941135134,0.979897097,0.724496596,1,0,0,0.04259504,0.312029739,0.886318837,0.610815433,0.961238037,0.922476074,0,0,0,0,0,0,-0.50379247,120.2512266,0.50379247,59.74877342,0,0.950752784,0,0,0,9,5,0% -2018-09-13 14:00:00,88.38092521,86.3487343,2.087712678,12.50449807,1.734405272,1.697844614,0,1.697844614,1.682106553,0.01573806,4.328713469,3.770224641,0.558488828,0.052298718,0.50619011,1.542538141,1.507069718,-33.948067,33.948067,0,0,0.830768185,0.01307468,0.420526638,1,0.812580183,0,0.029448243,0.961238037,1,0.644381891,0.919885295,1.616904801,0.036400781,0.115824807,0.221101426,0.724496596,0.448993192,0.974768702,0.936006739,0.009472561,0.40686118,1.626377362,0.443261961,0,0.706614814,-0.301509474,107.5482882,0.301509474,72.45171177,0,0.884167732,1.626377362,1.068027978,2.325380313,9,6,43% -2018-09-13 15:00:00,76.82326742,95.6264481,155.3657928,460.3507524,50.42631256,50.07698616,0,50.07698616,48.90577319,1.171212973,78.80371409,39.61293948,39.19077461,1.520539377,37.67023524,1.340818959,1.668996371,-3.851165816,3.851165816,0.811258168,0.811258168,0.32456509,1.021903438,32.86792734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.01008941,1.101625603,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.740365562,31.59390195,47.75045497,32.69552755,0,39.61293948,-0.086049473,94.93637635,0.086049473,85.06362365,0,0,47.75045497,32.69552755,69.14902384,9,7,45% -2018-09-13 16:00:00,65.23356032,105.6295556,365.8116628,688.2598954,77.48562738,175.1106098,97.20381717,77.90679265,75.14914982,2.757642834,91.03175043,0,91.03175043,2.336477557,88.69527287,1.13854041,1.843583533,-1.761770569,1.761770569,0.831434201,0.831434201,0.211818362,2.391261117,76.91117744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23622124,1.692770036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732460539,73.92994922,73.96868178,75.62271925,97.20381717,0,0.141231267,81.88089937,-0.141231267,98.11910063,0.695970747,0,141.619695,75.62271925,191.1132523,9,8,35% -2018-09-13 17:00:00,54.24010853,117.4224206,555.9395097,790.9051157,93.7426542,380.91345,285.8065759,95.10687415,90.9159673,4.190906854,137.6206575,0,137.6206575,2.826686898,134.7939706,0.94666848,2.049407855,-0.939497737,0.939497737,0.690817265,0.690817265,0.168620241,3.113641507,100.1454139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.39188592,2.047925035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.255822673,96.26358109,89.6477086,98.31150613,285.8065759,0,0.361366452,68.81586172,-0.361366452,111.1841383,0.911636298,0,350.1993575,98.31150613,414.542272,9,9,18% -2018-09-13 18:00:00,44.53674452,132.5101915,705.2557521,842.9493193,104.4008026,577.8508839,471.2816349,106.569249,101.2527332,5.316515761,174.1454917,0,174.1454917,3.148069397,170.9974223,0.77731283,2.312739135,-0.454186303,0.454186303,0.607824122,0.607824122,0.148032543,3.540155744,113.8635779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.3279785,2.280765562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564830785,109.4500021,99.89280929,111.7307677,471.2816349,0,0.55908656,56.00734923,-0.55908656,123.9926508,0.96056841,0,552.59106,111.7307677,625.7166128,9,10,13% -2018-09-13 19:00:00,37.31451512,152.6518744,801.654145,868.7471085,110.72225,739.6538757,626.2271025,113.4267732,107.3835656,6.043207565,197.709013,0,197.709013,3.338684359,194.3703287,0.651261148,2.664277818,-0.097483156,0.097483156,0.546824291,0.546824291,0.13811723,3.682825356,118.4523231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2211678,2.418865453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.668194434,113.8608785,105.8893623,116.2797439,626.2271025,0,0.720839352,43.87617758,-0.720839352,136.1238224,0.980636417,0,719.9904645,116.2797439,796.0932313,9,11,11% -2018-09-13 20:00:00,34.2809921,177.8687038,837.8920516,877.2715134,113.0155845,848.9408218,733.0166899,115.9241318,109.6077476,6.316384212,206.5644655,0,206.5644655,3.407836855,203.1566287,0.598316183,3.104394518,0.20916074,-0.20916074,0.494385096,0.494385096,0.134880841,3.553489494,114.2924372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3591362,2.468966201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574491042,109.8622379,107.9336272,112.3312041,733.0166899,0,0.835564222,33.32536533,-0.835564222,146.6746347,0.990160195,0,833.737576,112.3312041,907.2561024,9,12,9% -2018-09-13 21:00:00,36.52805051,203.5716405,811.3007351,871.072709,111.3367106,894.0727354,779.9773098,114.0954256,107.979498,6.115927636,200.0664688,0,200.0664688,3.357212613,196.7092561,0.637534751,3.55299539,0.510548722,-0.510548722,0.442844716,0.442844716,0.137232355,3.176028424,102.1519916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7940006,2.43228911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301021781,98.1923799,106.0950224,100.624669,779.9773098,0,0.89542159,26.4373669,-0.89542159,153.5626331,0.994160381,0,881.5175623,100.624669,947.3743956,9,13,7% -2018-09-13 22:00:00,43.22238508,224.5902635,723.8084801,848.3081121,105.6454054,868.2741399,760.3579591,107.9161807,102.4598067,5.456374061,178.6813447,0,178.6813447,3.185598764,175.495746,0.75437293,3.919839566,0.848884184,-0.848884184,0.384985944,0.384985944,0.145957679,2.590424325,83.3169508,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.48826343,2.307955461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.876753605,80.08742223,100.365017,82.39537769,760.3579591,0,0.896322867,26.32114331,-0.896322867,153.6788567,0.99421653,0,856.3254685,82.39537769,910.2515953,9,14,6% -2018-09-13 23:00:00,52.64137788,240.3457807,581.9216793,801.2955678,95.69394949,768.8515628,671.6563675,97.19519526,92.80842384,4.386771423,143.979174,0,143.979174,2.88552565,141.0936484,0.918765367,4.194825216,1.291354022,-1.291354022,0.309319146,0.309319146,0.164444723,1.855156719,59.66821716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.21098714,2.090553511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.344054728,57.35535992,90.55504186,59.44591343,671.6563675,0,0.838213007,33.0481041,-0.838213007,146.9518959,0.990349291,0,755.7294493,59.44591343,794.6356108,9,15,5% -2018-09-13 00:00:00,63.49851966,252.5273443,396.9058878,709.1770552,80.45623901,595.2425614,514.2203306,81.02223079,78.03018655,2.992044236,98.66048016,0,98.66048016,2.426052458,96.23442771,1.108258238,4.407433609,2.003609115,-2.003609115,0.187516351,0.187516351,0.202708605,1.053839206,33.89509142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.00558334,1.757666747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763502917,32.58125113,75.76908625,34.33891788,514.2203306,0,0.725094427,43.52329638,-0.725094427,136.4767036,0.981043464,0,580.2415806,34.33891788,602.7157156,9,16,4% -2018-09-13 01:00:00,75.04254734,262.71454,187.2594494,509.5045634,55.75546268,343.2873567,287.8014861,55.4858706,54.07422977,1.411640829,47.08445445,0,47.08445445,1.681232916,45.40322153,1.30973953,4.585233716,3.651379926,-3.651379926,0,0,0.297744455,0.420308229,13.51855744,0.086147966,1,0.267314484,0,0.929347327,0.968109291,0.724496596,1,52.16919607,1.218047524,0.014158117,0.312029739,0.96063484,0.685131436,0.961238037,0.922476074,0.297942,12.99455162,52.46713807,14.21259914,263.0079735,0,0.564865375,55.60705678,-0.564865375,124.3929432,0.961483333,0,305.3449212,14.21259914,314.6467831,9,17,3% -2018-09-13 02:00:00,86.71199437,272.0269609,10.99522042,58.75534811,7.625305572,29.24296994,21.76470885,7.478261091,7.395374475,0.082886616,2.895849587,0,2.895849587,0.229931097,2.665918489,1.513409803,4.747766123,16.13601203,-16.13601203,0,0,0.693510933,0.057482774,1.848843619,0.690332191,1,0.061894024,0,0.955320905,0.994082868,0.724496596,1,7.15372497,0.166584297,0.088905915,0.312029739,0.778996957,0.503493553,0.961238037,0.922476074,0.03987479,1.77717881,7.19359976,1.943763108,6.739829697,0,0.370429409,68.25789755,-0.370429409,111.7421025,0.915021516,0,13.36068895,1.943763108,14.63284303,9,18,10% -2018-09-13 03:00:00,98.70066133,281.3213689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722651514,4.909984143,-5.582215929,5.582215929,1,0.515231164,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146664125,81.5663431,-0.146664125,98.4336569,0.709085002,0,0,0,0,9,19,0% -2018-09-13 04:00:00,110.0695496,291.4059895,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921076046,5.085993977,-2.05296602,2.05296602,1,0.881231556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08151329,94.67555502,0.08151329,85.32444498,0,0,0,0,0,9,20,0% -2018-09-13 05:00:00,120.6066622,303.2127611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104983355,5.292061015,-1.012323336,1.012323336,1,0.703271176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302153915,107.5870183,0.302153915,72.41298169,0,0.884521423,0,0,0,9,21,0% -2018-09-13 06:00:00,129.636152,317.8717167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262577681,5.547908055,-0.454745305,0.454745305,1,0.607919717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500223894,120.0148138,0.500223894,59.98518621,0,0.950044759,0,0,0,9,22,0% -2018-09-13 07:00:00,136.112144,336.3712915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375605065,5.870786546,-0.060880054,0.060880054,1,0.540564792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66222813,131.4700248,0.66222813,48.52997515,0,0.974497318,0,0,0,9,23,0% -2018-09-14 08:00:00,138.7527946,358.2457289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421693112,6.2525675,0.274548186,-0.274548186,1,0.483203185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777130075,140.9985537,0.777130075,39.00144634,0,0.985660706,0,0,0,9,0,0% -2018-09-14 09:00:00,136.8291289,20.4350953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388118812,0.356659696,0.608442805,-0.608442805,1,0.426103842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837103936,146.8355542,0.837103936,33.16444576,0,0.990270261,0,0,0,9,1,0% -2018-09-14 10:00:00,130.8877588,39.57766473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284422341,0.69076056,0.99591508,-0.99591508,1,0.35984218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838068129,146.9366776,0.838068129,33.06332243,0,0.990338979,0,0,0,9,2,0% -2018-09-14 11:00:00,122.1924708,54.81114427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132660937,0.956634934,1.532947845,-1.532947845,1,0.268004169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779963626,141.2572452,0.779963626,38.7427548,0,0.985894446,0,0,0,9,3,0% -2018-09-14 12:00:00,111.8506413,67.00765532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95216196,1.169504209,2.490383514,-2.490383514,1,0.104273026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666758269,131.8173568,0.666758269,48.18264324,0,0.975010304,0,0,0,9,4,0% -2018-09-14 13:00:00,100.591574,77.31759163,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755654166,1.349446544,5.304246395,-5.304246395,1,0,#DIV/0!,0,0,0.273744488,1,0.18634104,0,0.940711199,0.979473162,0.724496596,1,0,0,0.041454462,0.312029739,0.889176925,0.613673521,0.961238037,0.922476074,0,0,0,0,0,0,-0.506176665,120.4094932,0.506176665,59.59050677,0,0.951220259,0,0,0,9,5,0% -2018-09-14 14:00:00,88.53149465,86.70599076,1.673108486,10.25942937,1.4101855,1.380275802,0,1.380275802,1.367663204,0.012612598,3.560844288,3.112657469,0.448186819,0.042522296,0.405664523,1.545166073,1.51330502,-37.36142179,37.36142179,0,0,0.842853594,0.010630574,0.341915801,1,0.83106205,0,0.026759188,0.961238037,1,0.651415375,0.92691878,1.314649893,0.029678792,0.115824807,0.229071124,0.724496596,0.448993192,0.973652928,0.934890965,0.007701815,0.330668331,1.322351708,0.360347123,0,0.525845972,-0.303394795,107.661617,0.303394795,72.33838304,0,0.885198227,1.322351708,0.825825045,1.862837683,9,6,41% -2018-09-14 15:00:00,76.98934658,95.99237642,152.5488839,456.2782184,49.82595467,49.47349622,0,49.47349622,48.3235183,1.149977924,78.63229103,40.1426116,38.48967942,1.502436371,36.98724305,1.343717587,1.675383025,-3.890057224,3.890057224,0.804607346,0.804607346,0.326622873,0.998671942,32.12072258,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.45040386,1.088510037,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.723534423,30.87566032,47.17393828,31.96417035,0,40.1426116,-0.087978365,95.04731453,0.087978365,84.95268547,0,0.481678458,47.17393828,51.30000162,80.74876334,9,7,71% -2018-09-14 16:00:00,65.41468325,106.0139851,362.7137948,686.6679971,77.02710746,173.1509297,95.71218394,77.43874577,74.70445597,2.734289796,90.26681039,0,90.26681039,2.32265149,87.9441589,1.141701602,1.850293093,-1.767929835,1.767929835,0.832487497,0.832487497,0.212363325,2.37353036,76.34089534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8087646,1.682753098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.719614666,73.38177237,73.52837927,75.06452547,95.71218394,0,0.139386406,81.98765825,-0.139386406,98.01234175,0.69128496,0,139.6927726,75.06452547,188.8210032,9,8,35% -2018-09-14 17:00:00,54.45150755,117.8310024,552.6475824,790.0658251,93.30980855,378.7048424,284.042578,94.66226446,90.49617354,4.166090915,136.8094397,0,136.8094397,2.813635004,133.9958047,0.950358089,2.056538954,-0.939472534,0.939472534,0.690812955,0.690812955,0.168841431,3.095474449,99.5610989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9883642,2.038468983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242660701,95.70191525,89.2310249,97.74038423,284.042578,0,0.359517611,68.92942618,-0.359517611,111.0705738,0.910924755,0,347.9724405,97.74038423,411.9415672,9,9,18% -2018-09-14 18:00:00,44.79736138,132.929858,701.7141146,842.3716961,103.9644751,575.4382377,469.3188577,106.11938,100.8295626,5.289817401,173.2736238,0,173.2736238,3.134912513,170.1387112,0.781861452,2.320063696,-0.451873289,0.451873289,0.607428573,0.607428573,0.148157879,3.520855506,113.2428159,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.92121082,2.271233444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550847828,108.8533021,99.47205865,111.1245355,469.3188577,0,0.557139871,56.14176941,-0.557139871,123.8582306,0.960255929,0,550.1382744,111.1245355,622.8670604,9,10,13% -2018-09-14 19:00:00,37.64021016,153.0153833,797.8000732,868.243925,110.2713546,736.9731761,624.0127557,112.9604204,106.9462664,6.014153944,196.7609526,0,196.7609526,3.3250882,193.4358644,0.656945598,2.670622244,-0.093782829,0.093782829,0.546191498,0.546191498,0.138219284,3.662118075,117.7863058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8008192,2.409015082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.653192079,113.2206773,105.4540113,115.6296924,624.0127557,0,0.718706734,44.05219102,-0.718706734,135.947809,0.980430595,0,717.2552085,115.6296924,792.9325296,9,11,11% -2018-09-14 20:00:00,34.66197331,178.044326,833.6788141,876.7366043,112.5439445,845.9057222,730.4707699,115.4349524,109.1503293,6.284623048,205.5286956,0,205.5286956,3.39361517,202.1350805,0.60496556,3.107459703,0.21417891,-0.21417891,0.493526939,0.493526939,0.134996767,3.53132444,113.5795329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9194483,2.458662638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558432536,109.1769672,107.4778808,111.6356298,730.4707699,0,0.833170152,33.57422007,-0.833170152,146.4257799,0.989988249,0,830.635359,111.6356298,903.698646,9,12,9% -2018-09-14 21:00:00,36.92006136,203.5095331,806.7060369,870.4054036,110.8392162,890.596593,777.0182972,113.5782958,107.4970049,6.08129086,198.9374297,0,198.9374297,3.342211322,195.5952184,0.644376631,3.551911413,0.517298898,-0.517298898,0.441690368,0.441690368,0.137397281,3.152544791,101.3966773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.33021,2.421420726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284007969,97.46634301,105.6142179,99.88776374,777.0182972,0,0.892708494,26.78440663,-0.892708494,153.2155934,0.993990675,0,877.9631599,99.88776374,943.3377035,9,13,7% -2018-09-14 22:00:00,43.59084121,224.3880683,718.8398067,847.3560294,105.1150119,864.269526,756.9052014,107.3643246,101.9454065,5.418918102,177.460639,0,177.460639,3.169605443,174.2910336,0.760803703,3.916310594,0.858442982,-0.858442982,0.383351294,0.383351294,0.146228702,2.565982539,82.53081896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.99380239,2.296368353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.859045615,79.3317624,99.85284801,81.62813075,756.9052014,0,0.893255226,26.71480888,-0.893255226,153.2851911,0.994024957,0,852.235508,81.62813075,905.659487,9,14,6% -2018-09-14 23:00:00,52.9811441,240.0959505,576.6237109,799.7448916,95.11505037,764.2049125,667.6110987,96.59381376,92.24698066,4.346833099,142.6771643,0,142.6771643,2.868069706,139.8090946,0.924695406,4.190464857,1.30637338,-1.30637338,0.306750684,0.306750684,0.164951681,1.830465868,58.8740745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.6713066,2.077906739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32616629,56.5919998,89.99747289,58.66990654,667.6110987,0,0.834780073,33.4070552,-0.834780073,146.5929448,0.990103985,0,751.001882,58.66990654,789.4001624,9,15,5% -2018-09-14 00:00:00,63.81717323,252.2694236,391.3868972,706.2088405,79.78149886,589.7231495,509.3969174,80.32623206,77.37579231,2.950439753,97.30199109,0,97.30199109,2.405706553,94.89628454,1.113819792,4.402932044,2.032211754,-2.032211754,0.182625012,0.182625012,0.20384305,1.030415186,33.14169443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.3765547,1.742926208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.746532295,31.85705729,75.12308699,33.5999835,509.3969174,0,0.721312009,43.83709118,-0.721312009,136.1629088,0.980681869,0,574.6794082,33.5999835,596.6699254,9,16,4% -2018-09-14 01:00:00,75.34905692,262.4600101,181.8677883,502.4004758,54.7958005,336.2514772,281.7369761,54.51450115,53.14350494,1.370996209,45.74824642,0,45.74824642,1.65229556,44.09595086,1.315089131,4.580791331,3.735019823,-3.735019823,0,0,0.301294699,0.41307389,13.28587623,0.097938868,1,0.261600649,0,0.930195335,0.968957298,0.724496596,1,51.29203811,1.197082509,0.016010365,0.312029739,0.955600794,0.68009739,0.961238037,0.922476074,0.292076237,12.77088959,51.58411434,13.9679721,254.1439755,0,0.560781667,55.89012756,-0.560781667,124.1098724,0.96083874,0,295.7754916,13.9679721,304.9172499,9,17,3% -2018-09-14 02:00:00,87.00316793,271.7774011,8.905718907,48.60286339,6.364725189,24.04338299,17.80344268,6.239940312,6.172805241,0.067135071,2.351214604,0,2.351214604,0.191919948,2.159294656,1.51849174,4.743410482,17.73812381,-17.73812381,0,0,0.714678428,0.047979987,1.54320131,0.714550296,1,0.056316137,0,0.955891623,0.994653586,0.724496596,1,5.968832382,0.139045349,0.091228185,0.312029739,0.77406586,0.498562455,0.961238037,0.922476074,0.03336641,1.483383798,6.002198792,1.622429147,5.081987437,0,0.366304399,68.51212027,-0.366304399,111.4878797,0.913501503,0,10.64460195,1.622429147,11.70644938,9,18,10% -2018-09-14 03:00:00,99.01182301,281.0764464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72808231,4.905709439,-5.400385211,5.400385211,1,0.546326048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.142125407,81.82914687,-0.142125407,98.17085313,0.698198018,0,0,0,0,9,19,0% -2018-09-14 04:00:00,110.3945936,291.1682407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926749134,5.081844477,-2.024748939,2.024748939,1,0.876406151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08614086,94.94163197,0.08614086,85.05836803,0,0,0,0,0,9,20,0% -2018-09-14 05:00:00,120.9532123,302.9939106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111031796,5.288241354,-1.003585084,1.003585084,1,0.701776847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306774965,107.864982,0.306774965,72.13501801,0,0.88701408,0,0,0,9,21,0% -2018-09-14 06:00:00,130.0087829,317.7038224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269081317,5.544977747,-0.452003949,0.452003949,1,0.607450917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504743559,120.3143307,0.504743559,59.6856693,0,0.950939796,0,0,0,9,22,0% -2018-09-14 07:00:00,136.5046865,336.3166643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382456224,5.869833122,-0.060953457,0.060953457,1,0.540577345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666558572,131.8020062,0.666558572,48.19799385,0,0.974987837,0,0,0,9,23,0% -2018-09-15 08:00:00,139.1390335,358.3672127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428434252,6.254687793,0.272577849,-0.272577849,1,0.483540132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781196519,141.3702584,0.781196519,38.62974157,0,0.985995619,0,0,0,9,0,0% -2018-09-15 09:00:00,137.1736142,20.71680427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394131214,0.361576445,0.60461386,-0.60461386,1,0.42675863,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840849806,147.2299661,0.840849806,32.77003386,0,0.990536348,0,0,0,9,1,0% -2018-09-15 10:00:00,131.1744083,39.93692559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289425319,0.697030845,0.989514939,-0.989514939,1,0.360936669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841458933,147.2945015,0.841458933,32.70549849,0,0.990579394,0,0,0,9,2,0% -2018-09-15 11:00:00,122.427769,55.18583357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136767664,0.963174496,1.521739611,-1.521739611,1,0.26992089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782989322,141.5350956,0.782989322,38.46490437,0,0.986142169,0,0,0,9,3,0% -2018-09-15 12:00:00,112.0490452,67.37536559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955624762,1.175921964,2.466409798,-2.466409798,1,0.108372773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669433946,132.0233915,0.669433946,47.97660851,0,0.975310032,0,0,0,9,4,0% -2018-09-15 13:00:00,100.7673423,77.67712238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758721902,1.355721539,5.21133202,-5.21133202,1,0,#DIV/0!,0,0,0.265265886,1,0.189584998,0,0.940283409,0.979045372,0.724496596,1,0,0,0.040314051,0.312029739,0.892044873,0.616541469,0.961238037,0.922476074,0,0,0,0,0,0,-0.508541506,120.566729,0.508541506,59.43327104,0,0.951679609,0,0,0,9,5,0% -2018-09-15 14:00:00,88.68134832,87.06419824,1.315527877,8.297344843,1.12458289,1.100589571,0,1.100589571,1.090672566,0.009917005,2.88565399,2.532778702,0.352875288,0.033910323,0.318964964,1.547781513,1.51955692,-41.53011128,41.53011128,0,0,0.854852953,0.008477581,0.272668142,1,0.849220947,0,0.024074263,0.961238037,1,0.658494792,0.933998196,1.048395956,0.023738411,0.115824807,0.237095868,0.724496596,0.448993192,0.972515594,0.933753631,0.006141978,0.263580413,1.054537935,0.287318824,0,0.381889974,-0.30525171,107.773308,0.30525171,72.22669198,0,0.886200754,1.054537935,0.625750007,1.464078799,9,6,39% -2018-09-15 15:00:00,77.15624436,96.35882314,149.7221874,452.1175954,49.21954979,48.86406785,0,48.86406785,47.73539876,1.128669092,78.43401152,40.64798272,37.78602879,1.484151027,36.30187777,1.346630503,1.681778727,-3.930001118,3.930001118,0.797776538,0.797776538,0.328739184,0.97545826,31.37409076,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.88508099,1.075262367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.706716189,30.15796941,46.59179718,31.23323177,0,40.64798272,-0.089905775,95.15818641,0.089905775,84.84181359,0,0.493862198,46.59179718,51.30773386,80.17168284,9,7,72% -2018-09-15 16:00:00,65.59714777,106.3983587,359.5881242,685.0373278,76.56511402,171.1817734,94.21465285,76.96712051,74.25639334,2.710727171,89.49502456,0,89.49502456,2.308720683,87.18630388,1.144886209,1.857001677,-1.774181233,1.774181233,0.833556549,0.833556549,0.212924479,2.355612246,75.7645872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.37806976,1.672660276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706633054,72.82780306,73.08470281,74.50046334,94.21465285,0,0.137532145,82.09493285,-0.137532145,97.90506715,0.686448627,0,137.7582219,74.50046334,186.5172852,9,8,35% -2018-09-15 17:00:00,54.66473468,118.2385561,549.3167456,789.2023727,92.87378421,376.4715075,282.2572289,94.21427861,90.07329695,4.14098166,135.988692,0,135.988692,2.800487262,133.1882047,0.954079605,2.063652108,-0.939442248,0.939442248,0.690807776,0.690807776,0.16907146,3.077094552,98.96993823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58187913,2.028943488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.229344528,95.13366913,88.81122366,97.16261262,282.2572289,0,0.357648733,69.04413329,-0.357648733,110.9558667,0.910198023,0,345.7211953,97.16261262,409.312182,9,9,18% -2018-09-15 18:00:00,45.06009729,133.3468595,698.1250505,841.775076,103.524842,572.9885479,467.3226003,105.6659476,100.4031861,5.26276152,172.390157,0,172.390157,3.121655953,169.2685011,0.786447059,2.327341746,-0.449530235,0.449530235,0.607027887,0.607027887,0.148289826,3.50132394,112.6146136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.51136148,2.261629112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.536697276,108.2494501,99.04805876,110.5110792,467.3226003,0,0.555163266,56.27803914,-0.555163266,123.7219609,0.959936404,0,547.6480353,110.5110792,619.9753264,9,10,13% -2018-09-15 19:00:00,37.9677856,153.3746232,793.8926455,867.7234608,109.8169694,734.245152,621.7548713,112.4902807,106.5055826,5.984698104,195.7998501,0,195.7998501,3.311386808,192.4884633,0.662662868,2.676892165,-0.090038057,0.090038057,0.545551104,0.545551104,0.138327229,3.641172678,117.1126298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3772171,2.39908847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.63801721,112.5731143,105.0152343,114.9722028,621.7548713,0,0.716535739,44.23079966,-0.716535739,135.7692003,0.98021981,0,714.4716762,114.9722028,789.7186835,9,11,11% -2018-09-15 20:00:00,35.04415094,178.2172144,829.4091749,876.1840872,112.0686629,842.8153105,727.8734946,114.941816,108.6893793,6.252436704,204.4791407,0,204.4791407,3.379283677,201.099857,0.611635817,3.110477175,0.219258309,-0.219258309,0.492658311,0.492658311,0.135118668,3.508927776,112.8591791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4763655,2.44827952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542206229,108.4845358,107.0185718,110.9328153,727.8734946,0,0.830731242,33.82607238,-0.830731242,146.1739276,0.989812063,0,827.4765367,110.9328153,900.0798457,9,12,9% -2018-09-15 21:00:00,37.31311114,203.4485596,802.0549903,869.7180526,110.3379655,887.0596735,774.0025755,113.057098,107.0108687,6.046229306,197.794615,0,197.794615,3.327096763,194.4675183,0.651236644,3.550847224,0.524138075,-0.524138075,0.4405208,0.4405208,0.137569078,3.128850129,100.6345755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8629174,2.410470279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266841268,96.73378181,105.1297586,99.14425208,774.0025755,0,0.889946544,27.13346956,-0.889946544,152.8665304,0.99381685,0,874.3465603,99.14425208,939.2344904,9,13,7% -2018-09-15 22:00:00,43.96061707,224.1882187,713.8180379,846.3779486,104.5807073,860.2009825,753.3927075,106.808275,101.4272131,5.381061888,176.2269418,0,176.2269418,3.153494187,173.0734476,0.767257509,3.91282256,0.86814625,-0.86814625,0.381691937,0.381691937,0.146508916,2.541365656,81.73905539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.49569522,2.284695803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841210767,78.57068914,99.33690598,80.85538494,753.3927075,0,0.890137448,27.10947634,-0.890137448,152.8905237,0.9938289,0,848.0803514,80.85538494,900.9985838,9,14,6% -2018-09-15 23:00:00,53.32233294,239.8478279,571.2792399,798.1540796,94.5317652,759.4921639,663.504336,95.98782791,91.68128369,4.30654422,141.3637473,0,141.3637473,2.850481506,138.5132658,0.930650275,4.186134301,1.321672392,-1.321672392,0.304134399,0.304134399,0.165473832,1.805656245,58.07611174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12753715,2.065164148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308191803,55.82496764,89.43572895,57.89013179,663.504336,0,0.831298559,33.76763664,-0.831298559,146.2323634,0.989853138,0,746.2075777,57.89013179,784.0955112,9,15,5% -2018-09-15 00:00:00,64.13712992,252.0123524,385.8324892,703.1610461,79.10045811,584.1316149,504.5077592,79.62385573,76.71528745,2.90856828,95.93472468,0,95.93472468,2.385170662,93.54955402,1.11940409,4.398445304,2.061547582,-2.061547582,0.17760829,0.17760829,0.205012435,1.006971983,32.38768042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7416523,1.728048025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729547774,31.13227034,74.47120007,32.86031837,504.5077592,0,0.717485364,44.1527442,-0.717485364,135.8472558,0.980312167,0,569.0462949,32.86031837,590.5527161,9,16,4% -2018-09-15 01:00:00,75.65661483,262.2056309,176.4680059,495.0793754,53.82065833,329.1194841,275.5914268,53.52805728,52.19776691,1.330290368,44.40960252,0,44.40960252,1.622891426,42.78671109,1.32045703,4.576351576,3.822378698,-3.822378698,0,0,0.304988194,0.405722856,13.04944173,0.109933506,1,0.255882258,0,0.931037115,0.969799078,0.724496596,1,50.3989191,1.175779314,0.017874484,0.312029739,0.950561626,0.675058222,0.961238037,0.922476074,0.2861747,12.54361975,50.6850938,13.71939906,245.294695,0,0.556661094,56.17479679,-0.556661094,123.8252032,0.960178742,0,286.2118454,13.71939906,295.1909177,9,17,3% -2018-09-15 02:00:00,87.29352242,271.5274175,7.045013642,39.28610321,5.189948209,19.31513595,14.22857554,5.08656041,5.033452121,0.053108289,1.864641209,0,1.864641209,0.156496087,1.708145122,1.523559382,4.739047445,19.67845485,-19.67845485,0,0,0.736683912,0.039124022,1.25836303,0.739247906,1,0.050773323,0,0.956451451,0.995213414,0.724496596,1,4.865127011,0.113380883,0.093555047,0.312029739,0.769168373,0.493664969,0.961238037,0.922476074,0.027282365,1.209586409,4.892409376,1.322967291,3.710130867,0,0.362178337,68.76596442,-0.362178337,111.2340356,0.911946464,0,8.275850103,1.322967291,9.141705736,9,18,10% -2018-09-15 03:00:00,99.32364539,280.8305621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733524637,4.90141795,-5.230151685,5.230151685,1,0.575437696,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137567589,82.09288257,-0.137567589,97.90711743,0.686542295,0,0,0,0,9,19,0% -2018-09-15 04:00:00,110.7201612,290.9289708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932431361,5.07766843,-1.997305996,1.997305996,1,0.871713131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090776811,95.20829802,0.090776811,84.79170198,0,0.49919854,0,0,0,9,20,0% -2018-09-15 05:00:00,121.3002784,302.7730075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117089241,5.284385867,-0.994997033,0.994997033,1,0.700308204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31139372,108.1432426,0.31139372,71.85675739,0,0.889431572,0,0,0,9,21,0% -2018-09-15 06:00:00,130.3821031,317.5337657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275596985,5.542009697,-0.449295959,0.449295959,1,0.606987824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509251026,120.6139538,0.509251026,59.38604617,0,0.951816594,0,0,0,9,22,0% -2018-09-15 07:00:00,136.8981632,336.2612165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389323687,5.868865374,-0.061024285,0.061024285,1,0.540589457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670868369,132.1341213,0.670868369,47.86587866,0,0.975469731,0,0,0,9,23,0% -2018-09-16 08:00:00,139.526061,358.4910144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435189156,6.256848539,0.270627361,-0.270627361,1,0.483873685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785235905,141.7425019,0.785235905,38.25749814,0,0.986324868,0,0,0,9,0,0% -2018-09-16 09:00:00,137.5181913,21.00296883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40014522,0.366570959,0.600820065,-0.600820065,1,0.427407407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844564682,147.6253251,0.844564682,32.37467491,0,0.990797903,0,0,0,9,1,0% -2018-09-16 10:00:00,131.4605671,40.30027368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294419732,0.703372465,0.983174642,-0.983174642,1,0.362020924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844817551,147.6523932,0.844817551,32.34760675,0,0.990815624,0,0,0,9,2,0% -2018-09-16 11:00:00,122.6624565,55.56342263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140863734,0.969764669,1.510652164,-1.510652164,1,0.271816955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785984465,141.8118211,0.785984465,38.18817888,0,0.986385511,0,0,0,9,3,0% -2018-09-16 12:00:00,112.2470393,67.74501439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959080411,1.182373553,2.44279292,-2.44279292,1,0.112411497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672083417,132.2280683,0.672083417,47.77193168,0,0.975604473,0,0,0,9,4,0% -2018-09-16 13:00:00,100.9430561,78.03794763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761788685,1.362019128,5.121180759,-5.121180759,1,0,#DIV/0!,0,0,0.256848033,1,0.192840935,0,0.939851699,0.978613662,0.724496596,1,0,0,0.039173685,0.312029739,0.894922979,0.619419575,0.961238037,0.922476074,0,0,0,0,0,0,-0.510886899,120.7229237,0.510886899,59.27707626,0,0.95213098,0,0,0,9,5,0% -2018-09-16 14:00:00,88.83040613,87.42323443,1.015005443,6.65610746,0.879142002,0.860284166,0,0.860284166,0.852632627,0.00765154,2.316560432,2.043951236,0.272609196,0.026509375,0.246099821,1.550383063,1.525823284,-46.73365606,46.73365606,0,0,0.86614511,0.006627344,0.213158157,1,0.86705804,0,0.02139459,0.961238037,1,0.66561683,0.941120234,0.819582912,0.018616018,0.115824807,0.245171875,0.724496596,0.448993192,0.971357034,0.93259507,0.004801488,0.205954251,0.8243844,0.224570269,0,0.271726883,-0.307079062,107.8832891,0.307079062,72.11671092,0,0.887175483,0.8243844,0.465639698,1.12913627,9,6,37% -2018-09-16 15:00:00,77.32396592,96.72565922,146.9693217,448.4579459,48.56054671,48.20418388,0,48.20418388,47.09626705,1.107916827,78.28151349,41.18282023,37.09869326,1.464279653,35.63441361,1.349557796,1.688181224,-3.971052359,3.971052359,0.790756362,0.790756362,0.330412811,0.95269008,30.64178783,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.27072329,1.060865624,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.69022072,29.45405198,45.96094401,30.5149176,0,41.18282023,-0.091832067,95.26901336,0.091832067,84.73098664,0,0.505527883,45.96094401,51.33398155,79.55800825,9,7,73% -2018-09-16 16:00:00,65.7809547,106.7825341,356.5443806,683.8564051,76.00856421,169.1818367,92.77742896,76.4044077,73.71662556,2.687782146,88.74025165,0,88.74025165,2.291938653,86.448313,1.148094245,1.863706804,-1.780531172,1.780531172,0.834642453,0.834642453,0.213181215,2.338084421,75.2008321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85922443,1.660501752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693934204,72.28590022,72.55315864,73.94640197,92.77742896,0,0.135667997,82.2027513,-0.135667997,97.7972487,0.681453246,0,135.7766388,73.94640197,184.17308,9,8,36% -2018-09-16 17:00:00,54.87977555,118.6449233,546.0672573,788.717958,92.32254094,374.248927,280.5937657,93.65516134,89.5386757,4.116485645,135.1841939,0,135.1841939,2.783865243,132.4003287,0.957832776,2.070744553,-0.939409453,0.939409453,0.690802167,0.690802167,0.169068077,3.058868481,98.38372513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06798085,2.016900892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216139801,94.5701788,88.28412065,96.58707969,280.5937657,0,0.355759322,69.16001138,-0.355759322,110.8399886,0.909455545,0,343.4716767,96.58707969,406.6859887,9,9,18% -2018-09-16 18:00:00,45.32490941,133.7610383,694.6140549,841.5119087,102.9591366,570.5784792,465.4876463,105.0908329,99.8545388,5.236294152,171.5218174,0,171.5218174,3.104597849,168.4172196,0.791068902,2.33457053,-0.447158794,0.447158794,0.606622347,0.606622347,0.148224954,3.481772901,111.985785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98398084,2.249270573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522532615,107.6449962,98.50651346,109.8942667,465.4876463,0,0.553156339,56.41617838,-0.553156339,123.5838216,0.959609641,0,545.1929466,109.8942667,617.1165463,9,10,13% -2018-09-16 19:00:00,38.29716418,153.7294891,790.0600836,867.5114114,109.2310163,731.5791863,619.6860816,111.8931047,105.9372981,5.955806633,194.8529324,0,194.8529324,3.29371816,191.5592143,0.668411609,2.683085741,-0.086250132,0.086250132,0.544903331,0.544903331,0.138256594,3.620078914,116.4341818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8309605,2.386287594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62273485,111.9209643,104.4536953,114.3072519,619.6860816,0,0.714326144,44.41199857,-0.714326144,135.5880014,0.980003962,0,711.7485104,114.3072519,786.5603206,9,11,11% -2018-09-16 20:00:00,35.42742681,178.3872925,825.212501,875.9307761,111.4599513,839.8073285,725.4875055,114.3198229,108.0990225,6.220800404,203.4432536,0,203.4432536,3.360928776,200.0823248,0.618325243,3.113445597,0.224397864,-0.224397864,0.491779395,0.491779395,0.135068181,3.486284772,112.1309023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9088922,2.434981457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525801449,107.7844884,106.4346937,110.2194698,725.4875055,0,0.828247534,34.08086398,-0.828247534,145.919136,0.989631574,0,824.4000356,110.2194698,896.5364743,9,12,9% -2018-09-16 21:00:00,37.70708145,203.3886001,797.4767581,869.334507,109.704549,883.6263034,771.2180347,112.4082687,106.396552,6.011716658,196.6654698,0,196.6654698,3.307996918,193.3574729,0.658112723,3.549800733,0.531065467,-0.531065467,0.439336146,0.439336146,0.137564572,3.104833003,99.86210217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2724128,2.396632506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249440941,95.99125105,104.5218538,98.38788355,771.2180347,0,0.887136112,27.48445078,-0.887136112,152.5155492,0.993638863,0,870.8340649,98.38788355,935.2269669,9,13,7% -2018-09-16 22:00:00,44.33157802,223.9906332,708.870555,845.7222072,103.918948,856.2596338,750.1304598,106.129174,100.7854083,5.343765672,175.0074128,0,175.0074128,3.133539702,171.8738731,0.773731999,3.909374042,0.877993963,-0.877993963,0.380007879,0.380007879,0.146597919,2.51636554,80.93496573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87876802,2.270238847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823098268,77.79776757,98.70186628,80.06800642,750.1304598,0,0.886970276,27.50503205,-0.886970276,152.4949679,0.993628325,0,844.0527387,80.06800642,896.4556476,9,14,6% -2018-09-16 23:00:00,53.66480726,239.6013846,566.0114271,796.9189313,93.83051176,754.9332675,659.6652587,95.26800885,91.00117563,4.266833222,140.0653597,0,140.0653597,2.829336127,137.2360236,0.936627579,4.181833053,1.337253927,-1.337253927,0.3014698,0.3014698,0.165774942,1.78041554,57.2642839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.47379141,2.049844393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.289904998,55.04460784,88.76369641,57.09445223,659.6652587,0,0.827769592,34.12970173,-0.827769592,145.8702983,0.989596718,0,741.5662714,57.09445223,778.9334485,9,15,5% -2018-09-16 00:00:00,64.45825467,251.756129,380.3567296,700.5098813,78.31886458,578.7196084,499.8950569,78.82455154,75.95726185,2.867289691,94.58349544,0,94.58349544,2.361602733,92.22189271,1.125008774,4.393973363,2.091635607,-2.091635607,0.172462935,0.172462935,0.205908976,0.983079643,31.61922064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.01300926,1.710973141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.712237855,30.39359758,73.72524712,32.10457072,499.8950569,0,0.713615996,44.47011043,-0.713615996,135.5298896,0.979934306,0,563.5895628,32.10457072,584.6013622,9,16,4% -2018-09-16 01:00:00,75.96508499,261.9514098,171.1520858,488.1213271,52.77625427,322.1648094,269.6897372,52.4750722,51.18485548,1.290216718,43.08920352,0,43.08920352,1.59139879,41.49780473,1.32584085,4.571914581,3.913679933,-3.913679933,0,0,0.308358814,0.397849697,12.79621387,0.122133213,1,0.250161536,0,0.931872301,0.970634264,0.724496596,1,49.43945913,1.152963006,0.019749965,0.312029739,0.945519238,0.670015834,0.961238037,0.922476074,0.27995249,12.3002075,49.71941162,13.45317051,236.751663,0,0.55250554,56.46092616,-0.55250554,123.5390738,0.95950317,0,276.8833827,13.45317051,285.6882138,9,17,3% -2018-09-16 02:00:00,87.58265714,271.2770168,5.432559181,31.07760898,4.12176542,15.16601192,11.12758001,4.038431911,3.997478985,0.040952926,1.441473305,0,1.441473305,0.124286435,1.31718687,1.528605735,4.734677128,22.07325971,-22.07325971,0,0,0.758715236,0.031071609,0.999369746,0.76440632,1,0.045272729,0,0.956999804,0.995761767,0.724496596,1,3.862091877,0.090045099,0.095883455,0.312029739,0.764311109,0.488807704,0.961238037,0.922476074,0.021731615,0.960632213,3.883823492,1.050677312,2.621587523,0,0.35805779,69.01903389,-0.35805779,110.9809661,0.910357737,0,6.270405978,1.050677312,6.958053265,9,18,11% -2018-09-16 03:00:00,99.63599283,280.5837152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738976128,4.897109658,-5.070494503,5.070494503,1,0.602740682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132992973,82.3574208,-0.132992973,97.6425792,0.674040286,0,0,0,0,9,19,0% -2018-09-16 04:00:00,111.0461139,290.6881622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938120309,5.073465528,-1.970616374,1.970616374,1,0.867148937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095418739,95.47542128,0.095418739,84.52457872,0,0.525993914,0,0,0,9,20,0% -2018-09-16 05:00:00,121.6477202,302.550004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123153244,5.280493722,-0.986559678,0.986559678,1,0.698865331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316007774,108.4216629,0.316007774,71.5783371,0,0.891776044,0,0,0,9,21,0% -2018-09-16 06:00:00,130.7559777,317.361457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282122328,5.539002343,-0.446623098,0.446623098,1,0.606530738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513743991,120.9135385,0.513743991,59.08646147,0,0.952675261,0,0,0,9,22,0% -2018-09-16 07:00:00,137.2924552,336.2048408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.396205381,5.867881433,-0.061094143,0.061094143,1,0.540601403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675155412,132.46622,0.675155412,47.53378003,0,0.975942977,0,0,0,9,23,0% -2018-09-17 08:00:00,139.9137759,358.6170705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441956058,6.259048635,0.268695291,-0.268695291,1,0.484204089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789246401,142.1151422,0.789246401,37.8848578,0,0.986648428,0,0,0,9,0,0% -2018-09-17 09:00:00,137.8627721,21.29353461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406159289,0.371642288,0.597059977,-0.597059977,1,0.42805042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848247069,148.0215197,0.848247069,31.97848026,0,0.99105491,0,0,0,9,1,0% -2018-09-17 10:00:00,131.7461703,40.66761088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299404449,0.709783709,0.976892388,-0.976892388,1,0.363095252,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848142866,148.0102481,0.848142866,31.98975186,0,0.991047668,0,0,0,9,2,0% -2018-09-17 11:00:00,122.8964967,55.94378923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144948506,0.976403318,1.499682297,-1.499682297,1,0.273692913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78894833,142.0873396,0.78894833,37.9126604,0,0.986624493,0,0,0,9,3,0% -2018-09-17 12:00:00,112.444609,68.11647648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962528653,1.188856789,2.419522473,-2.419522473,1,0.116390978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674706333,132.4313494,0.674706333,47.56865058,0,0.975893685,0,0,0,9,4,0% -2018-09-17 13:00:00,101.118715,78.3999441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764854512,1.368337158,5.033660323,-5.033660323,1,0,#DIV/0!,0,0,0.248489232,1,0.196109259,0,0.939415991,0.978177954,0.724496596,1,0,0,0.038033224,0.312029739,0.897811594,0.62230819,0.961238037,0.922476074,0,0,0,0,0,0,-0.51321283,120.8780727,0.51321283,59.12192728,0,0.952574532,0,0,0,9,5,0% -2018-09-17 14:00:00,88.97859102,87.78297521,0.763280099,5.255232788,0.66960029,0.655163299,0,0.655163299,0.649409371,0.005753928,1.828471086,1.62321407,0.205257016,0.020190919,0.185066097,1.552969377,1.532101945,-53.40898603,53.40898603,0,0,0.8772668,0.00504773,0.162352343,1,0.884574918,0,0.018721254,0.961238037,1,0.672778196,0.9482816,0.624236989,0.014226082,0.115824807,0.25329534,0.724496596,0.448993192,0.970177611,0.931415648,0.003657063,0.156784227,0.627894052,0.171010309,0,0.187359618,-0.308875769,107.9914922,0.308875769,72.00850781,0,0.888122621,0.627894052,0.337408623,0.848721248,9,6,35% -2018-09-17 15:00:00,77.49251887,97.09275402,144.2060347,444.7096188,47.89656785,47.53939561,0,47.53939561,46.45230961,1.087086003,78.10361977,41.69493885,36.40868092,1.44425824,34.96442268,1.3524996,1.694588238,-4.013270385,4.013270385,0.783536654,0.783536654,0.33213983,0.929928972,29.90971235,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.65172689,1.046360179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.673730375,28.75035318,45.32545727,29.79671336,0,41.69493885,-0.093757673,95.37982054,0.093757673,84.62017946,0,0.516710312,45.32545727,51.34091822,78.92706142,9,7,74% -2018-09-17 16:00:00,65.96610655,107.166368,353.4723887,682.6396684,75.44896487,167.1712224,91.33269803,75.83852437,73.1739002,2.664624173,87.97853766,0,87.97853766,2.275064668,85.70347299,1.151325754,1.870405969,-1.786986606,1.786986606,0.835746397,0.835746397,0.213450802,2.320371945,74.63113796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33753618,1.648276607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101575,71.73828854,72.01863775,73.38656515,91.33269803,0,0.133793423,82.31114481,-0.133793423,97.68885519,0.676289553,0,133.7859873,73.38656515,181.8160264,9,8,36% -2018-09-17 17:00:00,55.09661658,119.049945,542.7788083,788.2120993,91.76833489,372.0008151,278.9079382,93.09287693,89.00118101,4.091695928,134.37016,0,134.37016,2.767153886,131.6030062,0.961617366,2.077813515,-0.939376932,0.939376932,0.690796606,0.690796606,0.16907133,3.040433003,97.79077681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55132051,2.004793571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.202783361,94.00021432,87.75410387,96.00500789,278.9079382,0,0.353848841,69.27709098,-0.353848841,110.722909,0.908696725,0,341.196834,96.00500789,404.0301915,9,9,18% -2018-09-17 18:00:00,45.59175504,134.1722372,691.0561073,841.2321993,102.3902923,568.1310853,463.6187652,104.51232,99.30284721,5.20947284,170.6419991,0,170.6419991,3.087445093,167.554554,0.795726237,2.341747304,-0.444760749,0.444760749,0.606212257,0.606212257,0.148164948,3.461995797,111.3496854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4536739,2.23684346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.50820417,107.033553,97.96187807,109.2703964,463.6187652,0,0.551118663,56.55620816,-0.551118663,123.4437918,0.959275437,0,542.6999716,109.2703964,614.2152606,9,10,13% -2018-09-17 19:00:00,38.62826872,154.079876,786.1752965,867.2844846,108.6417586,728.866296,617.5739658,111.2923302,105.3658088,5.926521467,193.8932525,0,193.8932525,3.275949868,190.6173027,0.674190473,2.689201147,-0.082420448,0.082420448,0.544248416,0.544248416,0.138190247,3.598754758,115.7483237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2816232,2.373414528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.607285572,111.2616914,103.8889087,113.6351059,617.5739658,0,0.712077728,44.59578254,-0.712077728,135.4042175,0.979782946,0,708.9773486,113.6351059,783.3492527,9,11,10% -2018-09-17 20:00:00,35.81170275,178.5544818,820.9613077,875.662414,110.8478437,836.7453012,723.0511758,113.6941253,107.5053722,6.188753113,202.3940453,0,202.3940453,3.342471473,199.0515738,0.625032124,3.116363602,0.22959641,-0.22959641,0.490890391,0.490890391,0.135022007,3.463420522,111.3955094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.338253,2.421609204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509236378,107.0776008,105.8474893,109.49921,723.0511758,0,0.825719095,34.33853564,-0.825719095,145.6614644,0.989446719,0,821.2681033,109.49921,892.9331462,9,12,9% -2018-09-17 21:00:00,38.10185348,203.3295326,792.844854,868.9338486,109.0677216,880.134473,768.3787462,111.7557268,105.7789274,5.976799408,195.5232083,0,195.5232083,3.288794225,192.2344141,0.665002794,3.54876981,0.538080188,-0.538080188,0.438136558,0.438136558,0.137565024,3.080617632,99.08325259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6787285,2.38272022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.231896987,95.2425912,103.9106255,97.62531142,768.3787462,0,0.884277609,27.83724567,-0.884277609,152.1627543,0.993456671,0,867.2616166,97.62531142,931.1554304,9,13,7% -2018-09-17 22:00:00,44.70358829,223.7952256,703.8734243,845.0440554,103.2537813,852.2578854,746.8114914,105.446394,100.1402988,5.30609519,173.7757434,0,173.7757434,3.113482471,170.6622609,0.780224803,3.905963537,0.887985972,-0.887985972,0.378299145,0.378299145,0.146693678,2.491204952,80.1257147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.25866422,2.255707451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804869507,77.0198847,98.06353373,79.27559215,746.8114914,0,0.883754506,27.90136211,-0.883754506,152.0986379,0.993423202,0,839.9633969,79.27559215,891.8476865,9,14,6% -2018-09-17 23:00:00,54.00842797,239.356587,560.7012304,795.6481927,93.12564631,750.3131239,655.7687567,94.54436719,90.31756447,4.226802716,138.7565867,0,138.7565867,2.808081833,135.9485049,0.942624892,4.17756053,1.353120734,-1.353120734,0.298756416,0.298756416,0.166087822,1.755071773,56.44914123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.81667837,2.034445729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.271543525,54.2610617,88.08822189,56.29550742,655.7687567,0,0.824194365,34.49310293,-0.824194365,145.5068971,0.989334698,0,736.8630068,56.29550742,773.7072905,9,15,5% -2018-09-17 00:00:00,64.78040999,251.5007476,374.8501794,697.7841936,77.53226405,573.2414257,495.2212665,78.02015922,75.19438023,2.82577899,93.22464969,0,93.22464969,2.337883825,90.88676587,1.130631445,4.389516117,2.122495236,-2.122495236,0.167185627,0.167185627,0.206835339,0.959185445,30.8507011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.27969843,1.693788873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69492659,29.65486736,72.97462502,31.34865624,495.2212665,0,0.709705481,44.78904253,-0.709705481,135.2109575,0.97954824,0,558.0677451,31.34865624,578.5848137,9,16,4% -2018-09-17 01:00:00,76.27432855,261.6973507,165.8339138,480.9439899,51.71868558,315.1190492,263.7097468,51.40930248,50.15917639,1.250126091,41.76786156,0,41.76786156,1.559509192,40.20835237,1.331238168,4.567480413,4.009164352,-4.009164352,0,0,0.311870379,0.389877298,12.5397941,0.134539169,1,0.244440744,0,0.932700531,0.971462494,0.724496596,1,48.46617838,1.129859101,0.021636275,0.312029739,0.940475571,0.664972167,0.961238037,0.922476074,0.273708743,12.05372706,48.73988713,13.18358616,228.2304565,0,0.548316961,56.74837412,-0.548316961,123.2516259,0.958811867,0,267.5699572,13.18358616,276.1983507,9,17,3% -2018-09-17 02:00:00,87.87012288,271.0262029,4.054915725,23.85549649,3.168330786,11.54701857,8.443656975,3.10336159,3.072793923,0.030567668,1.078698127,0,1.078698127,0.095536863,0.983161264,1.533622958,4.7302996,25.09824872,-25.09824872,0,0,0.78135552,0.023884216,0.768198481,0.789999773,1,0.039822354,0,0.957536048,0.996298011,0.724496596,1,2.967323557,0.069216132,0.098209892,0.312029739,0.759501417,0.483998013,0.961238037,0.922476074,0.016758256,0.7384216,2.984081812,0.807637732,1.773169879,0,0.353950167,69.27088372,-0.353950167,110.7291163,0.908737177,0,4.595427202,0.807637732,5.124009944,9,18,12% -2018-09-17 03:00:00,99.94872722,280.335902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744434373,4.892784502,-4.92051009,4.92051009,1,0.628389527,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.128403923,82.62262916,-0.128403923,97.37737084,0.660603797,0,0,0,0,9,19,0% -2018-09-17 04:00:00,111.3723107,290.4457947,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943813516,5.069235415,-1.944660127,1.944660127,1,0.862710157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100064193,95.74286703,0.100064193,84.25713297,0,0.550320761,0,0,0,9,20,0% -2018-09-17 05:00:00,121.9953955,302.324849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129221323,5.276564025,-0.978273522,0.978273522,1,0.697448315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320614693,108.700103,0.320614693,71.29989704,0,0.894049567,0,0,0,9,21,0% -2018-09-17 06:00:00,131.1302699,317.1868014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288654959,5.535954029,-0.443987152,0.443987152,1,0.606079964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518220139,121.2129375,0.518220139,58.78706249,0,0.953515907,0,0,0,9,22,0% -2018-09-17 07:00:00,137.6874431,336.1474221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40309922,5.866879287,-0.061164675,0.061164675,1,0.540613465,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679417599,132.7981489,0.679417599,47.20185108,0,0.976407558,0,0,0,9,23,0% -2018-09-18 08:00:00,140.3020779,358.7453101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448733207,6.261286838,0.266780148,-0.266780148,1,0.484531597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793226201,142.4880355,0.793226201,37.51196453,0,0.986966278,0,0,0,9,0,0% -2018-09-18 09:00:00,138.2072708,21.58844022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412171925,0.376789362,0.593332085,-0.593332085,1,0.428687927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851895516,148.4184386,0.851895516,31.58156142,0,0.991307356,0,0,0,9,1,0% -2018-09-18 10:00:00,132.0311569,41.0388329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304378403,0.716262755,0.970666288,-0.970666288,1,0.364159978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851433818,148.3679634,0.851433818,31.63203658,0,0.99127553,0,0,0,9,2,0% -2018-09-18 11:00:00,123.1298569,56.32680691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14902141,0.983088238,1.488826707,-1.488826707,1,0.275549328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791880255,142.3615731,0.791880255,37.6384269,0,0.98685914,0,0,0,9,3,0% -2018-09-18 12:00:00,112.6417437,68.48962388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965969302,1.19536944,2.396588077,-2.396588077,1,0.120312991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677302414,132.6332021,0.677302414,47.36679792,0,0.976177732,0,0,0,9,4,0% -2018-09-18 13:00:00,101.2943225,78.76298658,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76791944,1.374673445,4.948645491,-4.948645491,1,0,#DIV/0!,0,0,0.240187706,1,0.199390432,0,0.938976202,0.977738165,0.724496596,1,0,0,0.036892512,0.312029739,0.900711115,0.625207711,0.961238037,0.922476074,0,0,0,0,0,0,-0.515519357,121.0321758,0.515519357,58.96782418,0,0.953010431,0,0,0,9,5,0% -2018-09-18 14:00:00,89.12583219,88.14329498,0.556419865,4.079154319,0.494186187,0.483479179,0,0.483479179,0.479284651,0.004194528,1.416964061,1.267152086,0.149811975,0.014901537,0.134910438,1.55553922,1.538390711,-62.27963106,62.27963106,0,0,0.888153387,0.003725384,0.119821163,1,0.901773942,0,0.016055234,0.961238037,1,0.679975778,0.955479182,0.460706637,0.010535944,0.115824807,0.26146263,0.724496596,0.448993192,0.968977696,0.930215733,0.002699028,0.115647823,0.463405665,0.126183767,0,0.124467355,-0.31064088,108.0978571,0.31064088,71.90214289,0,0.889042434,0.463405665,0.236840527,0.618413053,9,6,33% -2018-09-18 15:00:00,77.66191287,97.45997573,141.4324897,440.8699016,47.22748585,46.86958075,0,46.86958075,45.8034029,1.066177849,77.89981689,42.18378936,35.71602754,1.424082949,34.29194459,1.355456083,1.700997465,-4.056719433,4.056719433,0.77610643,0.77610643,0.333922467,0.907178238,29.17797053,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.02797309,1.031743249,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.657247545,28.04697511,44.68522063,29.07871836,0,42.18378936,-0.095683078,95.49063642,0.095683078,84.50936358,0,0.527441562,44.68522063,51.3282021,78.27850235,9,7,75% -2018-09-18 16:00:00,66.15260715,107.5497158,350.3720615,681.3861807,74.88628129,165.1496133,89.88017706,75.26943621,72.62818361,2.641252597,87.20986045,0,87.20986045,2.258097682,84.95176277,1.154580804,1.877096651,-1.793555017,1.793555017,0.836869662,0.836869662,0.213733598,2.302475227,74.05551801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81297264,1.635984084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.668135464,71.18498075,71.4811081,72.82096483,89.88017706,0,0.131907837,82.42014716,-0.131907837,97.57985284,0.670947464,0,131.785985,72.82096483,179.44585,9,8,36% -2018-09-18 17:00:00,55.31524468,119.4534621,539.4514506,787.6844122,91.21116385,369.7267456,277.199322,92.52742363,88.46081073,4.0666129,133.5466029,0,133.5466029,2.750353123,130.7962498,0.965433146,2.084856216,-0.93934767,0.93934767,0.690791602,0.690791602,0.169081321,3.02179011,97.19115729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03189604,1.992621475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189276648,93.42383723,87.22117269,95.41645871,277.199322,0,0.351916729,69.39540427,-0.351916729,110.6045957,0.907920935,0,338.8962402,95.41645871,401.3444041,9,9,18% -2018-09-18 18:00:00,45.86059128,134.5803004,687.451524,840.9357727,101.8183288,565.6460515,461.715621,103.9304305,98.74813052,5.182299969,169.7507793,0,169.7507793,3.070198283,166.680581,0.800418315,2.34886935,-0.442337999,0.442337999,0.605797942,0.605797942,0.148109831,3.441996278,110.7064321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.92045913,2.224348205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.493714587,106.4152335,97.41417371,108.6395817,461.715621,0,0.549049804,56.69815007,-0.549049804,123.3018499,0.95893358,0,540.1687871,108.6395817,611.2712205,9,10,13% -2018-09-18 19:00:00,38.96102187,154.4256807,782.2389484,867.0426115,108.0492382,726.1064192,615.4184167,110.6880026,104.791155,5.896847612,192.9209727,0,192.9209727,3.25808319,189.6628895,0.679998112,2.695236578,-0.078550488,0.078550488,0.543586614,0.543586614,0.138128175,3.577205623,115.0552294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7292441,2.36047018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.591673297,110.5954628,103.3209174,112.955933,615.4184167,0,0.709790278,44.78214563,-0.709790278,135.2178544,0.979556657,0,706.1581243,112.955933,780.0855233,9,11,10% -2018-09-18 20:00:00,36.19688055,178.7187033,816.6566616,875.3789978,110.2324053,833.6295262,720.5647317,113.0647945,106.9084916,6.156302873,201.3317763,0,201.3317763,3.323913735,198.0078625,0.631754745,3.119229807,0.234852695,-0.234852695,0.489991513,0.489991513,0.134980109,3.440342215,110.6532317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7645086,2.408164186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492516223,106.3640952,105.2570248,108.7722594,720.5647317,0,0.823146013,34.59902688,-0.823146013,145.4009731,0.989257435,0,818.0810432,108.7722594,889.2703116,9,12,9% -2018-09-18 21:00:00,38.49730819,203.2712334,788.1607729,868.5161187,108.427574,876.5849148,765.4853434,111.0995714,105.1580825,5.941488827,194.3681958,0,194.3681958,3.26949141,191.0987044,0.671904781,3.547752298,0.545181257,-0.545181257,0.436922204,0.436922204,0.137570376,3.056212896,98.2983124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0819488,2.368735397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.21421584,94.48807684,103.2961647,96.85681224,765.4853434,0,0.881371488,28.19174974,-0.881371488,151.8082503,0.993270232,0,863.6299694,96.85681224,927.0208158,9,13,7% -2018-09-18 22:00:00,45.07651132,223.6019062,698.8285657,844.3435469,102.5853235,848.1969441,743.4368817,104.7600624,99.49199748,5.268064914,172.5324025,0,172.5324025,3.093326003,169.4390765,0.786733538,3.902589478,0.898122014,-0.898122014,0.37656578,0.37656578,0.146796122,2.465894293,79.31163691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.63549234,2.241104159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786532021,76.23736217,97.42202436,78.47846633,743.4368817,0,0.880490985,28.29835247,-0.880490985,151.7016475,0.993213502,0,835.8135728,78.47846633,887.1761594,9,14,6% -2018-09-18 23:00:00,54.35305452,239.1133975,555.3509692,794.3418066,92.41730886,745.6333934,651.8163372,93.8170562,89.63058602,4.186470187,137.437995,0,137.437995,2.786722846,134.6512721,0.94863976,4.173316072,1.36927545,-1.36927545,0.295993797,0.295993797,0.166412438,1.729636748,55.63106341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.15632854,2.018971215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253115936,53.47469418,87.40944448,55.49366539,651.8163372,0,0.82057413,34.85769223,-0.82057413,145.1423078,0.989067053,0,732.0995082,55.49366539,768.4190023,9,15,5% -2018-09-18 00:00:00,65.1034565,251.2461985,369.3155645,694.9831603,76.74079402,567.6989911,490.4881584,77.21083267,74.42677594,2.784056725,91.85885248,0,91.85885248,2.314018083,89.5448344,1.13626967,4.385073397,2.154146304,-2.154146304,0.161772976,0.161772976,0.20779193,0.935303264,30.08256806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54184799,1.676498224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.677624031,28.91650866,72.21947203,30.59300689,490.4881584,0,0.705755458,45.10939131,-0.705755458,134.8906087,0.979153931,0,552.4828803,30.59300689,572.5053915,9,16,4% -2018-09-18 01:00:00,76.58420441,261.4434543,160.517445,473.542826,50.64789735,307.984137,257.6534123,50.33072468,49.12067637,1.210048303,40.44653391,0,40.44653391,1.527220976,38.91931294,1.336646522,4.563049085,4.109092004,-4.109092004,0,0,0.315528928,0.381805244,12.28016909,0.147152397,1,0.238722166,0,0.933521451,0.972283414,0.724496596,1,47.47903873,1.106466398,0.023532858,0.312029739,0.935432596,0.659929192,0.961238037,0.922476074,0.267443187,11.80416563,47.74648191,12.91063203,219.7390952,0,0.544097383,57.0369965,-0.544097383,122.9630035,0.958104686,0,258.2795387,12.91063203,266.7292891,9,17,3% -2018-09-18 02:00:00,88.15541789,270.7749771,2.910600597,17.6866478,2.341294462,8.480554696,6.187917564,2.292637132,2.270695796,0.021941337,0.776307479,0,0.776307479,0.070598666,0.705708813,1.538602296,4.725914882,29.03201605,-29.03201605,0,0,0.804402522,0.017649667,0.567673949,0.815994273,1,0.034431119,0,0.958059503,0.996821466,0.724496596,1,2.191657248,0.051148494,0.100530321,0.312029739,0.754747446,0.479244042,0.961238037,0.922476074,0.012426305,0.545669792,2.204083553,0.596818286,1.13861227,0,0.349863786,69.5210161,-0.349863786,110.4789839,0.907087238,0,3.236904212,0.596818286,3.627509844,9,18,12% -2018-09-18 03:00:00,100.2617084,280.0871169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749896926,4.888442382,-4.779395634,4.779395634,1,0.65252152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.123802851,82.8883728,-0.123802851,97.1116272,0.646132079,0,0,0,0,9,19,0% -2018-09-18 04:00:00,111.6986086,290.2018456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94950849,5.064977702,-1.919418096,1.919418096,1,0.858393516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104710686,96.01049823,0.104710686,83.98950177,0,0.572493819,0,0,0,9,20,0% -2018-09-18 05:00:00,122.3431602,302.0974885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135290962,5.272595836,-0.970139054,0.970139054,1,0.696057239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325212021,108.9784207,0.325212021,71.02157932,0,0.896254145,0,0,0,9,21,0% -2018-09-18 06:00:00,131.5048414,317.0096991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295192464,5.53286301,-0.441389909,0.441389909,1,0.60563581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.522677151,121.5120014,0.522677151,58.4879986,0,0.954338654,0,0,0,9,22,0% -2018-09-18 07:00:00,138.0830068,336.0888374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410003109,5.865856792,-0.061237556,0.061237556,1,0.540625928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683652844,133.1297528,0.683652844,46.87024717,0,0.976863465,0,0,0,9,23,0% -2018-09-19 08:00:00,140.6908677,358.8756549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455518869,6.263561782,0.264880403,-0.264880403,1,0.484856473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797173529,142.8610356,0.797173529,37.13896439,0,0.987278399,0,0,0,9,0,0% -2018-09-19 09:00:00,138.5516038,21.8876178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418181671,0.382010996,0.589634825,-0.589634825,1,0.429320196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855508617,148.8159701,0.855508617,31.1840299,0,0.991555235,0,0,0,9,1,0% -2018-09-19 10:00:00,132.3154691,41.41382985,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309340587,0.722807687,0.964494395,-0.964494395,1,0.365215434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854689402,148.7254382,0.854689402,31.27456182,0,0.991499216,0,0,0,9,2,0% -2018-09-19 11:00:00,123.3625082,56.71234547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153081942,0.989817155,1.478082031,-1.478082031,1,0.277386776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794779646,142.6344476,0.794779646,37.36555239,0,0.987089481,0,0,0,9,3,0% -2018-09-19 12:00:00,112.8384362,68.86432632,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969402234,1.201909231,2.373979451,-2.373979451,1,0.124179294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679871447,132.8335983,0.679871447,47.16640169,0,0.976456685,0,0,0,9,4,0% -2018-09-19 13:00:00,101.4698847,79.1269484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770983579,1.381025777,4.866017884,-4.866017884,1,0,#DIV/0!,0,0,0.231941629,1,0.202684956,0,0.938532241,0.977294204,0.724496596,1,0,0,0.035751379,0.312029739,0.903621979,0.628118575,0.961238037,0.922476074,0,0,0,0,0,0,-0.517806601,121.1852373,0.517806601,58.81476269,0,0.953438852,0,0,0,9,5,0% -2018-09-19 14:00:00,89.27207048,88.50406704,0.390096824,3.109310692,0.350594819,0.342963806,0,0.342963806,0.340023092,0.002940715,1.076421974,0.971266756,0.105155219,0.010571727,0.094583491,1.55809156,1.544687371,-74.63734861,74.63734861,0,0,0.898737949,0.002642932,0.085005773,1,0.918658794,0,0.013397316,0.961238037,1,0.687206927,0.962710331,0.326843129,0.007501874,0.115824807,0.269670596,0.724496596,0.448993192,0.967757612,0.928995649,0.001914795,0.081996965,0.328757924,0.08949884,0,0.079004009,-0.312373658,108.2023365,0.312373658,71.79766347,0,0.889935287,0.328757924,0.159807295,0.433348603,9,6,32% -2018-09-19 15:00:00,77.83215911,97.82719163,138.6488433,436.9359421,46.55316465,46.19460852,0,46.19460852,45.14941497,1.045193546,77.66956842,42.64880146,35.02076696,1.403749677,33.61701728,1.35842744,1.707406592,-4.101468781,4.101468781,0.76845384,0.76845384,0.335763094,0.884441206,28.44666944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.39933501,1.017011862,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.640774643,27.34402068,44.04010966,28.36103255,0,42.64880146,-0.097608819,95.60149221,0.097608819,84.39850779,0,0.537751206,44.04010966,51.29547698,77.61197343,9,7,76% -2018-09-19 16:00:00,66.34046114,107.9324327,347.2433003,680.0949597,74.32047624,163.1166718,88.41956543,74.69710634,72.07943967,2.617666674,86.43419497,0,86.43419497,2.241036572,84.19315839,1.157859474,1.883776321,-1.800244386,1.800244386,0.838013611,0.838013611,0.214029979,2.284394657,73.47398473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.28549909,1.623623368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655036153,70.62598884,70.94053524,72.24961221,88.41956543,0,0.130010617,82.52979416,-0.130010617,97.47020584,0.665416025,0,129.776331,72.24961221,177.0622572,9,8,36% -2018-09-19 17:00:00,55.53564672,119.8553158,536.0852397,787.1344996,90.6510254,367.4262791,275.4674796,91.9587995,87.91756252,4.04123698,132.7135358,0,132.7135358,2.733462883,129.9800729,0.969279888,2.091869886,-0.939324828,0.939324828,0.690787696,0.690787696,0.169098156,3.00294187,96.5849331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.5097052,1.980384553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175621163,92.84111148,86.68532636,94.82149603,275.4674796,0,0.349962401,69.51498457,-0.349962401,110.4850154,0.907127509,0,336.569455,94.82149603,398.6282277,9,9,18% -2018-09-19 18:00:00,46.13137475,134.985074,683.8006418,840.6224523,101.2432671,563.1230659,459.7778788,103.3451871,98.19040902,5.154778076,168.8482404,0,168.8482404,3.05285805,165.7953824,0.805144378,2.355933983,-0.439892547,0.439892547,0.605379746,0.605379746,0.148059626,3.421778146,110.0561475,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.384356,2.211785265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479066618,105.7901551,96.86342262,108.0019404,459.7778788,0,0.54694932,56.84202573,-0.54694932,123.1579743,0.958583852,0,537.5990728,108.0019404,608.2841827,9,10,13% -2018-09-19 19:00:00,39.29534601,154.7668021,778.2517394,866.7857269,107.4534986,723.299515,613.2193455,110.0801695,104.2133792,5.866790346,191.9362639,0,191.9362639,3.240119445,188.6961445,0.685833169,2.701190269,-0.074641816,0.074641816,0.542918192,0.542918192,0.138070361,3.555437121,114.3550795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.173864,2.347455508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575902091,109.9224522,102.7497661,112.2699077,613.2193455,0,0.707463594,44.97108071,-0.707463594,135.0289193,0.979324985,0,703.2907925,112.2699077,776.7692017,9,11,10% -2018-09-19 20:00:00,36.58286196,178.8798779,812.2996783,875.0805325,109.6137043,830.4603396,718.0284349,112.4319048,106.3084467,6.123458092,200.2567191,0,200.2567191,3.305257616,196.9514615,0.638491391,3.122042834,0.24016539,-0.24016539,0.489082989,0.489082989,0.134942445,3.417057273,109.904308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1877226,2.394647891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475646362,105.6442012,104.6633689,108.0388491,718.0284349,0,0.820528407,34.8622757,-0.820528407,145.1377243,0.989063658,0,814.8391989,108.0388491,885.5484649,9,12,9% -2018-09-19 21:00:00,38.89332652,203.2135789,783.4260674,868.0813711,107.7841998,872.9784162,762.5385111,110.4399051,104.5341085,5.905796617,193.2008115,0,193.2008115,3.250091304,189.9507202,0.678816605,3.546746037,0.552367603,-0.552367603,0.435693266,0.435693266,0.137580563,3.031627919,97.50757504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4821612,2.354680086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.196404108,93.72799001,102.6785653,96.08267009,762.5385111,0,0.878418241,28.54785848,-0.878418241,151.4521415,0.993079506,0,859.9399334,96.08267009,922.8241194,9,13,7% -2018-09-19 22:00:00,45.45021013,223.4105824,693.7379608,843.6207542,101.9136952,844.0780845,740.0077734,104.070311,98.84062126,5.229689785,171.2778744,0,171.2778744,3.073073932,168.2048004,0.793255812,3.899250247,0.908401715,-0.908401715,0.374807847,0.374807847,0.146905173,2.440444197,78.49307433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00936474,2.226431602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768093513,75.45052868,96.77745825,77.67696028,740.0077734,0,0.877180617,28.69588912,-0.877180617,151.3041109,0.992999196,0,831.6045826,77.67696028,882.4425996,9,14,6% -2018-09-19 23:00:00,54.69854524,238.8717743,549.9630249,792.9997439,91.70564432,740.8958144,647.80958,93.08623438,88.94038079,4.145853587,136.1101662,0,136.1101662,2.765263534,133.3449026,0.95466971,4.169098952,1.385720606,-1.385720606,0.29318151,0.29318151,0.166748745,1.704122462,54.81043627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.49287702,2.003424017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234630923,52.68587616,86.72750795,54.68930018,647.80958,0,0.816910201,35.22332156,-0.816910201,144.7766784,0.988793762,0,727.2775798,54.68930018,763.070633,9,15,5% -2018-09-19 00:00:00,65.42725332,250.9924685,363.7556692,692.1059928,75.94459793,562.0943131,485.6975811,76.39673198,73.6545881,2.742143886,90.48678325,0,90.48678325,2.290009833,88.19677342,1.141920991,4.380644974,2.186609093,-2.186609093,0.156221512,0.156221512,0.208779146,0.911447122,29.31527254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.79959167,1.659104329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.660340338,28.17895502,71.459932,29.83805935,485.6975811,0,0.701767628,45.43100633,-0.701767628,134.5689937,0.978751344,0,546.8370926,29.83805935,566.3655056,9,16,4% -2018-09-19 01:00:00,76.89456958,261.1897187,155.2067441,465.9134285,49.56384733,300.7621776,251.5228492,49.23932846,48.06931446,1.170013996,39.12620489,0,39.12620489,1.494532868,37.63167202,1.342063416,4.558620563,4.213744167,-4.213744167,0,0,0.31934081,0.373633217,12.01732862,0.159973759,1,0.233008109,0,0.934334715,0.973096678,0.724496596,1,46.47801737,1.082783975,0.025439138,0.312029739,0.930392309,0.654888905,0.961238037,0.922476074,0.261155503,11.55151337,46.73917288,12.63429734,211.2857934,0,0.539848894,57.32664699,-0.539848894,122.673353,0.95738149,0,249.0202807,12.63429734,257.2891756,9,17,3% -2018-09-19 02:00:00,88.43798753,270.5233386,1.991946556,12.59909896,1.648509182,5.970684464,4.356867782,1.613816683,1.598800548,0.015016135,0.532679139,0,0.532679139,0.049708634,0.482970504,1.543534066,4.721522963,34.34408618,-34.34408618,0,0,0.827587054,0.012427159,0.399700137,0.842346662,1,0.02910887,0,0.958569444,0.997331407,0.724496596,1,1.542331547,0.036013736,0.102840167,0.312029739,0.750058131,0.474554726,0.961238037,0.922476074,0.00878133,0.384206975,1.551112877,0.420220711,0.686874747,0,0.345807886,69.76888005,-0.345807886,110.2311199,0.905411048,0,2.173016862,0.420220711,2.448042913,9,18,13% -2018-09-19 03:00:00,100.5747947,279.8373523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755361313,4.884083167,-4.646435309,4.646435309,1,0.675259075,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119192211,83.15451493,-0.119192211,96.84548507,0.630509501,0,0,0,0,9,19,0% -2018-09-19 04:00:00,112.0248633,289.9562911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955202708,5.060691966,-1.894871835,1.894871835,1,0.854195858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109355704,96.27817604,0.109355704,83.72182396,0,0.592776477,0,0,0,9,20,0% -2018-09-19 05:00:00,122.6908685,301.8678661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141359618,5.268588169,-0.962156735,0.962156735,1,0.694692182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.32979729,109.2564723,0.32979729,70.74352771,0,0.89839172,0,0,0,9,21,0% -2018-09-19 06:00:00,131.8795523,316.8300457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301732404,5.529727466,-0.438833148,0.438833148,1,0.605198578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52711271,121.8105791,0.52711271,58.18942093,0,0.955143627,0,0,0,9,22,0% -2018-09-19 07:00:00,138.4790257,336.0289569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416914944,5.864811679,-0.061314472,0.061314472,1,0.540639082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687859079,133.4608744,0.687859079,46.53912556,0,0.977310693,0,0,0,9,23,0% -2018-09-20 08:00:00,141.0800469,359.0080197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462311328,6.265871985,0.262994496,-0.262994496,1,0.485178982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801086643,143.2339947,0.801086643,36.76600525,0,0.987584779,0,0,0,9,0,0% -2018-09-20 09:00:00,138.8956902,22.19099355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42418711,0.387305902,0.585966595,-0.585966595,1,0.4299475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859085013,149.2140029,0.859085013,30.78599712,0,0.991798542,0,0,0,9,1,0% -2018-09-20 10:00:00,132.5990525,41.79248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314290052,0.729416496,0.958374715,-0.958374715,1,0.366261961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857908671,149.0825734,0.857908671,30.91742664,0,0.991718738,0,0,0,9,2,0% -2018-09-20 11:00:00,123.5944253,57.10027147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157129658,0.996587741,1.467444874,-1.467444874,1,0.279205837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797645966,142.905893,0.797645966,37.09410699,0,0.987315548,0,0,0,9,3,0% -2018-09-20 12:00:00,113.0346825,69.24045162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972827379,1.208473856,2.351686461,-2.351686461,1,0.127991619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682413285,133.0325147,0.682413285,46.96748534,0,0.976730617,0,0,0,9,4,0% -2018-09-20 13:00:00,101.6454106,79.49170168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774047084,1.387391922,4.785665696,-4.785665696,1,0,#DIV/0!,0,0,0.223749143,1,0.205993369,0,0.938084011,0.976845974,0.724496596,1,0,0,0.034609645,0.312029739,0.906544652,0.631041248,0.961238037,0.922476074,0,0,0,0,0,0,-0.520074746,121.3372654,0.520074746,58.66273456,0,0.953859973,0,0,0,9,5,0% -2018-09-20 14:00:00,89.41726648,88.86516386,0.25969108,2.324781922,0.236047017,0.23088699,0,0.23088699,0.228929329,0.001957661,0.800235702,0.730152905,0.070082797,0.007117688,0.062965109,1.560625708,1.5509897,-93.03755616,93.03755616,0,0,0.90895312,0.001779422,0.057232332,1,0.935235312,0,0.010747934,0.961238037,1,0.69446989,0.969973294,0.220055579,0.00507002,0.115824807,0.277917073,0.724496596,0.448993192,0.966517556,0.927755593,0.001289185,0.055172377,0.221344764,0.060242398,0,0.047288125,-0.314073719,108.3049041,0.314073719,71.69509587,0,0.890801707,0.221344764,0.102366741,0.288341748,9,6,30% -2018-09-20 15:00:00,78.00326992,98.1942685,135.8552535,432.9047549,45.87346049,45.51434068,0,45.51434068,44.4902064,1.024134287,77.41231169,43.0893785,34.32293319,1.383254089,32.9396791,1.361413887,1.713813292,-4.147593045,4.147593045,0.760566127,0.760566127,0.337664237,0.861721319,27.71591975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.76567866,1.002162878,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.624314162,26.64159629,43.38999282,27.64375917,0,43.0893785,-0.099535471,95.71242144,0.099535471,84.28757856,0,0.547666513,43.38999282,51.24236885,76.92709838,9,7,77% -2018-09-20 16:00:00,66.52967357,108.3143737,344.0860011,678.7649811,73.75151051,161.0720473,86.9505513,74.12149598,71.52763036,2.593865619,85.65151482,0,85.65151482,2.223880156,83.42763467,1.161161854,1.890442448,-1.80706318,1.80706318,0.839179693,0.839179693,0.21434034,2.266130627,72.88655075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75507899,1.611193603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641803925,70.06132495,70.39688291,71.67251856,86.9505513,0,0.128101116,82.6401232,-0.128101116,97.3598768,0.659683337,0,127.7567127,71.67251856,174.6649427,9,8,37% -2018-09-20 17:00:00,55.75780931,120.2553482,532.6802403,786.5619533,90.08791735,365.0989695,273.7119665,91.38700291,87.37143426,4.015568656,131.8709745,0,131.8709745,2.716483097,129.1544914,0.973157356,2.09885177,-0.939311731,0.939311731,0.690785456,0.690785456,0.169121943,2.983890446,95.9721738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.98474594,1.968082757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.161818471,92.25210394,86.14656441,94.22018669,273.7119665,0,0.347985261,69.63586591,-0.347985261,110.3641341,0.906315754,0,334.2160316,94.22018669,395.8812594,9,9,18% -2018-09-20 18:00:00,46.40406132,135.3864066,680.1038217,840.2920608,100.6651293,560.561825,457.8052108,102.7566141,97.62970426,5.126909885,167.9344706,0,167.9344706,3.035425064,164.8990455,0.809903656,2.362938557,-0.43742649,0.43742649,0.604958025,0.604958025,0.148014356,3.401345357,109.3989587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.84538526,2.199155126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.464263132,105.1584403,96.30964839,107.3575954,457.8052108,0,0.544816775,56.98785642,-0.544816775,123.0121436,0.958226027,0,534.9905167,107.3575954,605.2539158,9,10,13% -2018-09-20 19:00:00,39.63116305,155.1031415,774.2144073,866.51377,106.8545859,720.4455673,610.9766862,109.4688811,103.6325259,5.836355232,190.9393066,0,190.9393066,3.222060017,187.7172466,0.691694282,2.707060499,-0.07069607,0.07069607,0.54224343,0.54224343,0.138016788,3.533455063,113.648061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.61552575,2.334371514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.559976165,109.242839,102.1755019,111.5772106,610.9766862,0,0.705097492,45.16257917,-0.705097492,134.8374208,0.97908782,0,700.3753339,111.5772106,773.4003867,9,11,10% -2018-09-20 20:00:00,36.96954867,179.0379273,807.8915214,874.7670313,108.9918114,827.2381189,715.4425852,111.7955337,105.7053062,6.090227543,199.1691581,0,199.1691581,3.286505252,195.8826528,0.645240347,3.124801318,0.245533092,-0.245533092,0.488165058,0.488165058,0.134908968,3.393573338,109.1489839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.607961,2.381061867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.458632331,104.918155,104.0665933,107.2992168,715.4425852,0,0.817866426,35.12821842,-0.817866426,144.8717816,0.988865323,0,811.5429562,107.2992168,881.7681476,9,12,9% -2018-09-20 21:00:00,39.28978951,203.1564455,778.6423449,867.6296721,107.1376964,869.3158194,759.5389849,109.7768344,103.9070995,5.869734896,192.0214482,0,192.0214482,3.230596841,188.7908513,0.685736189,3.545748871,0.559638073,-0.559638073,0.434449943,0.434449943,0.137595517,3.006872046,96.71134105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.87945635,2.340556414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178468562,92.96261961,102.0579249,95.30317603,759.5389849,0,0.875418406,28.90546737,-0.875418406,151.0945326,0.992884454,0,856.1923755,95.30317603,918.5663982,9,13,7% -2018-09-20 22:00:00,45.82454755,223.2211594,688.6036492,842.8757682,101.2390208,839.9026471,736.5253711,103.3772759,98.18629076,5.190985175,170.0126571,0,170.0126571,3.052730008,166.9599271,0.799789233,3.895944192,0.918824596,-0.918824596,0.37302543,0.37302543,0.147020744,2.414865496,77.6703754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.38039737,2.211692499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749561831,74.65971917,96.12995921,76.87141167,736.5253711,0,0.873824351,29.09385814,-0.873824351,150.9061419,0.992780262,0,827.3378105,76.87141167,877.648612,9,14,6% -2018-09-20 23:00:00,55.04475777,238.6316726,544.5398344,791.6220033,90.99080213,736.1021991,643.7501341,92.35206501,88.24709373,4.104971286,134.7736957,0,134.7736957,2.743708405,132.0299873,0.960712259,4.164908387,1.40245862,-1.40245862,0.290319141,0.290319141,0.167096687,1.67854107,53.98765077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82646313,1.987807399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216097292,51.89498344,86.04256042,53.88279084,643.7501341,0,0.813203942,35.58984305,-0.813203942,144.4101569,0.988514809,0,722.399101,53.88279084,757.66431,9,15,5% -2018-09-20 00:00:00,65.75165848,250.7395416,358.1733293,689.1519365,75.14382479,556.4294788,480.8514557,75.57802307,72.87796122,2.700061849,89.10913405,0,89.10913405,2.265863569,86.84327048,1.147582929,4.376230566,2.219904354,-2.219904354,0.150527687,0.150527687,0.209797376,0.887631157,28.54926921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.05306837,1.641610442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.643085751,27.44264349,70.69615412,29.08425393,480.8514557,0,0.697743749,45.75373621,-0.697743749,134.2462638,0.978340454,0,541.1325858,29.08425393,560.1676483,9,16,4% -2018-09-20 01:00:00,77.20527964,260.9361396,149.9059817,458.0515544,48.46650764,293.4554552,245.320337,48.13511823,47.00506362,1.130054611,37.80788484,0,37.80788484,1.461444028,36.34644081,1.34748633,4.554194773,4.323425575,-4.323425575,0,0,0.3233127,0.365361007,11.7512659,0.173003956,1,0.227300892,0,0.935139988,0.973901952,0.724496596,1,45.4631085,1.058811223,0.02735452,0.312029739,0.925356728,0.649853324,0.961238037,0.922476074,0.254845332,11.29576377,45.71795383,12.35457499,202.8789481,0,0.535573637,57.61717756,-0.535573637,122.3828224,0.956642156,0,239.8005082,12.35457499,247.8863304,9,17,3% -2018-09-20 02:00:00,88.717232,270.2712849,1.284396772,8.573320106,1.092468814,3.999505728,2.930296555,1.069209174,1.059526848,0.009682325,0.344358833,0,0.344358833,0.032941966,0.311416868,1.548407802,4.717123796,41.89226157,-41.89226157,0,0,0.850569573,0.008235491,0.264881712,0.869004413,1,0.023866225,0,0.959065124,0.997827087,0.724496596,1,1.021535151,0.023866342,0.105134363,0.312029739,0.745443051,0.469939647,0.961238037,0.922476074,0.005841873,0.254614377,1.027377024,0.278480719,0.383855916,0,0.341792505,70.01387916,-0.341792505,109.9861208,0.903712415,0,1.374272381,0.278480719,1.556532442,9,18,13% -2018-09-20 03:00:00,100.8878432,279.5865994,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76082504,4.879706704,-4.520988733,4.520988733,1,0.696711703,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114574488,83.4209172,-0.114574488,96.5790828,0.613602677,0,0,0,0,9,19,0% -2018-09-20 04:00:00,112.350929,289.7091055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960893628,5.056377764,-1.871003564,1.871003564,1,0.850114143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.11399671,96.54576023,0.11399671,83.45423977,0,0.611390852,0,0,0,9,20,0% -2018-09-20 05:00:00,123.0383737,301.6359236,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147424728,5.26454001,-0.95432698,0.95432698,1,0.693353215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.334368029,109.5341127,0.334368029,70.46588731,0,0.900464172,0,0,0,9,21,0% -2018-09-20 06:00:00,132.2542621,316.6477328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308272323,5.526545506,-0.436318628,0.436318628,1,0.604768569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531524514,122.1085181,0.531524514,57.89148192,0,0.955930961,0,0,0,9,22,0% -2018-09-20 07:00:00,138.8753791,335.9676436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423832615,5.86374156,-0.061397116,0.061397116,1,0.540653215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692034262,133.7913549,0.692034262,46.20864514,0,0.977749242,0,0,0,9,23,0% -2018-09-21 08:00:00,141.4695183,359.1423134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469108885,6.268215851,0.261120849,-0.261120849,1,0.485499395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80496384,143.6067633,0.80496384,36.39323666,0,0.987885409,0,0,0,9,0,0% -2018-09-21 09:00:00,139.2394509,22.49848804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430186868,0.392672693,0.582325767,-0.582325767,1,0.430570118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862623392,149.6124257,0.862623392,30.38757431,0,0.992037278,0,0,0,9,1,0% -2018-09-21 10:00:00,132.8818561,42.17468385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.319225905,0.736087094,0.952305227,-0.952305227,1,0.367299904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861090733,149.4392718,0.861090733,30.56072817,0,0.99193411,0,0,0,9,2,0% -2018-09-21 11:00:00,123.8255861,57.49044853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161164176,1.003397615,1.456911829,-1.456911829,1,0.281007093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80047874,143.175843,0.80047874,36.82415704,0,0.987537379,0,0,0,9,3,0% -2018-09-21 12:00:00,113.2304817,69.61786604,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976244719,1.215060981,2.329699154,-2.329699154,1,0.13175167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684927834,133.229932,0.684927834,46.77006801,0,0.976999609,0,0,0,9,4,0% -2018-09-21 13:00:00,101.8209113,79.85711768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777110149,1.393769635,4.707483367,-4.707483367,1,0,#DIV/0!,0,0,0.215608376,1,0.209316243,0,0.937631407,0.976393371,0.724496596,1,0,0,0.033467124,0.312029739,0.909479632,0.633976228,0.961238037,0.922476074,0,0,0,0,0,0,-0.522324028,121.4882722,0.522324028,58.51172781,0,0.954273981,0,0,0,9,5,0% -2018-09-21 14:00:00,89.56141256,89.2264574,0.160418103,1.703084781,0.147381466,0.14414667,0,0.14414667,0.142937371,0.001209299,0.581073391,0.53773407,0.043339321,0.004444095,0.038895226,1.563141532,1.557295462,-123.3483027,123.3483027,0,0,0.918733377,0.001111024,0.035734343,1,0.951512697,0,0.008106947,0.961238037,1,0.701764475,0.977267879,0.137396838,0.003178074,0.115824807,0.286201633,0.724496596,0.448993192,0.96525748,0.926495517,0.000804933,0.03442568,0.138201771,0.037603754,0,0.026073275,-0.315741222,108.4055665,0.315741222,71.59443351,0,0.89164247,0.138201771,0.060851794,0.178028052,9,6,29% -2018-09-21 15:00:00,78.17525854,98.56107279,133.0518861,428.773225,45.18822254,44.82863222,0,44.82863222,43.8256309,1.003001319,77.12745481,43.50489296,33.62256185,1.362591636,32.25997021,1.364415655,1.720215235,-4.195172545,4.195172545,0.752429553,0.752429553,0.339628575,0.839022189,26.98583772,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.12686341,0.987193002,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.60786872,25.93981367,42.73473213,26.92700667,0,43.50489296,-0.101463642,95.82345972,0.101463642,84.17654028,0,0.557212642,42.73473213,51.16848303,76.22348091,9,7,78% -2018-09-21 16:00:00,66.72024978,108.6953938,340.9000591,677.3951791,73.17934327,159.0153806,85.47281587,73.54256471,70.97271607,2.569848642,84.86179332,0,84.86179332,2.206627203,82.65516612,1.164488036,1.897092503,-1.814020349,1.814020349,0.840369439,0.840369439,0.214665094,2.247683547,72.29322923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22167426,1.598693897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628439078,69.49100175,69.85011334,71.08969564,85.47281587,0,0.12617866,82.75117301,-0.12617866,97.24882699,0.653736479,0,125.726811,71.08969564,172.2535951,9,8,37% -2018-09-21 17:00:00,55.98171857,120.6534027,529.236529,785.966355,89.52183792,362.744368,271.9323353,90.81203271,86.8224242,3.989608506,131.0189375,0,131.0189375,2.699413714,128.3195238,0.97706531,2.105799131,-0.939311865,0.939311865,0.690785479,0.690785479,0.169152795,2.964638102,95.35295224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.4570166,1.955716046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147870213,91.65688462,85.60488681,93.61260067,271.9323353,0,0.345984702,69.75808276,-0.345984702,110.2419172,0.90548494,0,331.8355211,93.61260067,393.103096,9,9,18% -2018-09-21 18:00:00,46.67860604,135.7841494,676.3614507,839.9444211,100.0839393,557.9620369,455.7972993,102.1647375,97.06603924,5.098698311,167.0095644,0,167.0095644,3.01790004,163.9916644,0.814695366,2.369880479,-0.434942012,0.434942012,0.604533154,0.604533154,0.147974044,3.380702025,108.7349982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.303569,2.186458305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449307109,104.5202162,95.75287611,106.7066745,455.7972993,0,0.542651737,57.13566281,-0.542651737,122.8643372,0.957859873,0,532.3428193,106.7066745,602.1802037,9,10,13% -2018-09-21 19:00:00,39.96839448,155.4346032,770.127728,866.2266853,106.2525481,717.5445877,608.6903978,108.8541899,103.0486418,5.805548117,189.9302902,0,189.9302902,3.203906356,186.7263839,0.69758008,2.712845598,-0.066714955,0.066714955,0.541562619,0.541562619,0.137967436,3.511265452,112.9343668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05427412,2.321219249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543899867,108.5568091,101.598174,110.8780283,608.6903978,0,0.702691811,45.35663071,-0.702691811,134.6433693,0.978845051,0,697.4117574,110.8780283,769.9792094,9,11,10% -2018-09-21 20:00:00,37.35684245,179.1927747,803.4334015,874.4385161,108.3668004,823.963283,712.8075211,111.1557619,105.0991416,6.056620352,198.0693889,0,198.0693889,3.267658864,194.80173,0.651999899,3.127503914,0.250954333,-0.250954333,0.487237971,0.487237971,0.134879631,3.369898259,108.387512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0252925,2.367407723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.441479817,104.1861992,103.4667723,106.5536069,712.8075211,0,0.815160252,35.39678968,-0.815160252,144.6032103,0.988662367,0,808.1927437,106.5536069,877.9299484,9,12,9% -2018-09-21 21:00:00,39.68657847,203.0997105,773.8112653,867.1611006,106.4881642,865.5980206,756.4875513,109.1104693,103.2771531,5.833316177,190.8305112,0,190.8305112,3.21101105,187.6195001,0.692661463,3.544758659,0.56699143,-0.56699143,0.433192444,0.433192444,0.137615164,2.981954825,95.90991758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.27392794,2.326366575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16041612,92.19226089,101.4343441,94.51862746,756.4875513,0,0.872372562,29.26447187,-0.872372562,150.7355281,0.992685038,0,852.3882179,94.51862746,914.2487692,9,13,7% -2018-09-21 22:00:00,46.19938651,223.0335409,683.4277237,842.1086987,100.5614283,835.672036,732.990939,102.681097,97.52913017,5.151966862,168.7372622,0,168.7372622,3.032298094,165.7049641,0.806331407,3.892669631,0.929390071,-0.929390071,0.371218627,0.371218627,0.147142741,2.389169205,76.84389434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.74870962,2.196889647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730944956,73.86527414,95.47965458,76.06216379,732.990939,0,0.870423189,29.49214591,-0.870423189,150.5078541,0.992556677,0,823.0147056,76.06216379,872.7958705,9,14,6% -2018-09-21 23:00:00,55.39154931,238.3930447,539.0838852,790.2086121,90.27293606,731.2544301,639.6397141,91.614716,87.55087396,4.063842036,133.4291913,0,133.4291913,2.722062094,130.7071293,0.966764913,4.160743545,1.419491801,-1.419491801,0.287406295,0.287406295,0.167456195,1.652904861,53.16310216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.15723021,1.972124721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197523945,51.10239595,85.35475416,53.07452067,639.6397141,0,0.809456774,35.9571093,-0.809456774,144.0428907,0.988230179,0,717.4660234,53.07452067,752.2022357,9,15,5% -2018-09-21 00:00:00,66.07652922,250.487399,352.571426,686.1202739,74.33862903,550.7066495,475.9517721,74.75487742,72.09704508,2.657832336,87.72660812,0,87.72660812,2.241583946,85.48502418,1.153252993,4.371829848,2.254053315,-2.254053315,0.144687871,0.144687871,0.210847004,0.863869586,27.78501541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.30242208,1.624019938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625870574,26.70801367,69.92829265,28.3320336,475.9517721,0,0.693685627,46.07742904,-0.693685627,133.922571,0.97792124,0,535.3716397,28.3320336,553.914389,9,16,3% -2018-09-21 01:00:00,77.51618891,260.6827105,144.6194322,449.9531662,47.35586711,286.0664465,239.0483311,47.01811536,45.92791299,1.090202367,36.4926098,0,36.4926098,1.427954118,35.06465568,1.35291272,4.549771601,4.438466894,-4.438466894,0,0,0.327451618,0.356988529,11.48197825,0.186243513,1,0.221602843,0,0.935936945,0.974698908,0.724496596,1,44.4343255,1.034547897,0.029278386,0.312029739,0.920327889,0.644824485,0.961238037,0.922476074,0.248512284,11.03691423,44.68283778,12.07146213,194.5271302,0,0.531273806,57.90843877,-0.531273806,122.0915612,0.95588657,0,230.6287091,12.07146213,238.5292396,9,17,3% -2018-09-21 02:00:00,88.99253114,270.0188117,0.766420348,5.538218313,0.669043281,2.525612397,1.870965638,0.654646758,0.648869158,0.0057776,0.20600161,0,0.20600161,0.020174123,0.185827487,1.553212678,4.712717307,53.42937955,-53.42937955,0,0,0.872945614,0.005043531,0.162217289,0.895907156,1,0.018714109,0,0.959545817,0.99830778,0.724496596,1,0.625237771,0.014616084,0.107407545,0.312029739,0.740912013,0.465408608,0.961238037,0.922476074,0.003592175,0.155929429,0.628829946,0.170545513,0.194754134,0,0.337828076,70.25539613,-0.337828076,109.7446039,0.901995724,0,0.804497342,0.170545513,0.916115969,9,18,14% -2018-09-21 03:00:00,101.20071,279.3348481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766285595,4.875312814,-4.402481276,4.402481276,1,0.716977672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109952198,83.68744003,-0.109952198,96.31255997,0.595256929,0,0,0,0,9,19,0% -2018-09-21 04:00:00,112.6766591,289.4602623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966578692,5.052034631,-1.847796129,1.847796129,1,0.846145438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118631158,96.81310938,0.118631158,83.18689062,0,0.628525566,0,0,0,9,20,0% -2018-09-21 05:00:00,123.3855278,301.4016011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153483709,5.260450311,-0.946650162,0.946650162,1,0.692040402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338921764,109.8111957,0.338921764,70.18880429,0,0.902473328,0,0,0,9,21,0% -2018-09-21 06:00:00,132.6288288,316.4626483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314809746,5.523315172,-0.433848082,0.433848082,1,0.604346081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535910271,122.4056649,0.535910271,57.59433515,0,0.956700799,0,0,0,9,22,0% -2018-09-21 07:00:00,139.2719457,335.9047539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430754009,5.862643929,-0.061487183,0.061487183,1,0.540668617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69617638,134.1210338,0.69617638,45.87896622,0,0.97817912,0,0,0,9,23,0% -2018-09-22 08:00:00,141.8591856,359.2784379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475909863,6.270591673,0.259257868,-0.259257868,1,0.485817983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808803459,143.9791903,0.808803459,36.0208097,0,0.988180284,0,0,0,9,0,0% -2018-09-22 09:00:00,139.5828097,22.81001634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436179609,0.398109887,0.57871069,-0.57871069,1,0.431188333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866122495,150.0111277,0.866122495,29.98887233,0,0.992271445,0,0,0,9,1,0% -2018-09-22 10:00:00,133.1638319,42.56029699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32414731,0.742817313,0.946283887,-0.946283887,1,0.368329614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864234753,149.7954386,0.864234753,30.20456143,0,0.992145349,0,0,0,9,2,0% -2018-09-22 11:00:00,124.055972,57.88273769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165185169,1.010244353,1.446479486,-1.446479486,1,0.282791129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80327755,143.4442351,0.80327755,36.55576487,0,0.987755014,0,0,0,9,3,0% -2018-09-22 12:00:00,113.4258356,69.99643449,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979654288,1.221668247,2.308007775,-2.308007775,1,0.135461115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687415065,133.4258356,0.687415065,46.57416445,0,0.977263741,0,0,0,9,4,0% -2018-09-22 13:00:00,101.9964004,80.22306693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780173013,1.400156654,4.631371208,-4.631371208,1,0,#DIV/0!,0,0,0.207517447,1,0.212654176,0,0.937174323,0.975936286,0.724496596,1,0,0,0.032323618,0.312029739,0.91242744,0.636924036,0.961238037,0.922476074,0,0,0,0,0,0,-0.524554738,121.6382732,0.524554738,58.36172676,0,0.954681063,0,0,0,9,5,0% -2018-09-22 14:00:00,89.70455015,89.58781921,0.087473395,1.221075716,0.081176857,0.079388487,0,0.079388487,0.078729075,0.000659411,0.411198254,0.387541535,0.023656719,0.002447782,0.021208937,1.565639754,1.563602415,-182.702827,182.702827,0,0,0.928017682,0.000611945,0.019682269,1,0.967505224,0,0.005473314,0.961238037,1,0.709093015,0.984596419,0.075677382,0.001757619,0.115824807,0.294526684,0.724496596,0.448993192,0.963976901,0.925214938,0.000443352,0.018948462,0.076120734,0.02070608,0,0.012593075,-0.317377153,108.5043802,0.317377153,71.49561984,0,0.892458729,0.076120734,0.03194488,0.097028019,9,6,27% -2018-09-22 15:00:00,78.34813902,98.92747086,130.2389176,424.5381053,44.49729303,44.13733144,0,44.13733144,43.15553547,0.981795974,76.81437382,43.89468284,32.91969098,1.341757562,31.57793342,1.367432989,1.726610087,-4.244293785,4.244293785,0.744029326,0.744029326,0.341658959,0.816347644,26.2565464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.48274219,0.972098787,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.591441089,25.23879111,42.07418328,26.2108899,0,43.89468284,-0.103393976,95.93464455,0.103393976,84.06535545,0,0.566412834,42.07418328,51.07340161,75.50070317,9,7,79% -2018-09-22 16:00:00,66.91219526,109.0753485,337.685369,675.9844456,72.60393209,156.9463061,83.98603544,72.96027061,70.41465566,2.545614951,84.06500374,0,84.06500374,2.189276433,81.87572731,1.167838117,1.903723964,-1.821125341,1.821125341,0.841584465,0.841584465,0.215004672,2.229053845,71.69403398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68524537,1.586123323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614941923,68.91503248,69.3001873,70.5011558,83.98603544,0,0.124242556,82.86298353,-0.124242556,97.13701647,0.647561403,0,123.6863022,70.5011558,169.8278987,9,8,37% -2018-09-22 17:00:00,56.20736012,121.0493237,525.7541952,785.3472761,88.95278576,360.3620252,270.1281369,90.23388827,86.27053106,3.963357203,130.1574463,0,130.1574463,2.682254691,127.4751916,0.981003498,2.112709256,-0.939328869,0.939328869,0.690788387,0.690788387,0.169190824,2.945187203,94.72734447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.92651592,1.943284393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133778103,91.05552663,85.06029402,92.99881102,270.1281369,0,0.343960112,69.88166994,-0.343960112,110.1183301,0.904634307,0,329.427474,92.99881102,390.2933358,9,9,18% -2018-09-22 18:00:00,46.95496319,136.1781567,672.5739412,839.5793559,99.49972208,555.3234227,453.7538379,101.5695848,96.49943834,5.070146465,166.0736226,0,166.0736226,3.000283736,163.0733388,0.819518708,2.376757204,-0.432441385,0.432441385,0.604105522,0.604105522,0.147938711,3.359852417,108.0644031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.75893067,2.173695353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.434201639,103.8756147,95.19313231,106.0493101,453.7538379,0,0.540453782,57.28546493,-0.540453782,122.7145351,0.957485151,0,529.6556943,106.0493101,599.0628467,9,10,13% -2018-09-22 19:00:00,40.30696146,155.7610947,765.9925141,865.9244217,105.6474355,714.5966153,606.3604646,108.2361507,102.4617755,5.774375128,188.9094134,0,188.9094134,3.185659978,185.7237534,0.703489189,2.718543948,-0.062700245,0.062700245,0.540876063,0.540876063,0.137922282,3.488874473,112.214196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.49015597,2.30799981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527677679,107.8645534,101.0178337,110.1725533,606.3604646,0,0.700246407,45.55322343,-0.700246407,134.4467766,0.978596563,0,694.4001004,110.1725533,766.505833,9,11,10% -2018-09-22 20:00:00,37.74464518,179.3443441,798.9265744,874.095017,107.7387476,820.6362928,710.1236199,110.5126729,104.4900269,6.022645986,196.9577184,0,196.9577184,3.248720755,193.7089976,0.658768333,3.1301493,0.256427574,-0.256427574,0.486301992,0.486301992,0.13485438,3.346040084,107.620151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4397883,2.353687128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42419465,103.4485827,102.863983,105.8022698,710.1236199,0,0.8124101,35.66792251,-0.8124101,144.3320775,0.988454729,0,804.789033,105.8022698,874.0345026,9,12,9% -2018-09-22 21:00:00,40.08357512,203.0432522,768.9345384,866.675748,105.8357069,861.8259693,753.3850462,108.4409232,102.6443698,5.79655335,189.6284183,0,189.6284183,3.191337054,186.4370812,0.699590362,3.543773274,0.574426358,-0.574426358,0.431920997,0.431920997,0.137639424,2.956885995,95.10361783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.66567253,2.312112832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.142253838,91.4172149,100.8079264,93.72932773,753.3850462,0,0.869281329,29.62476758,-0.869281329,150.3752324,0.992481222,0,848.5284374,93.72932773,909.8724079,9,13,7% -2018-09-22 22:00:00,46.57459015,222.847629,678.2123279,841.3196744,99.88104925,831.3877171,729.405799,101.9819181,96.8692671,5.112651006,167.4522131,0,167.4522131,3.011782157,164.440431,0.812879946,3.889424856,0.940097442,-0.940097442,0.369387559,0.369387559,0.147271061,2.363366498,76.01399059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.11442414,2.18202592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712250982,73.06753909,94.82667512,75.24956501,729.405799,0,0.866978179,29.8906392,-0.866978179,150.1093608,0.992328422,0,818.6367804,75.24956501,867.8861157,9,14,6% -2018-09-22 23:00:00,55.73877679,238.1558402,533.5977116,788.7596271,89.55220402,726.3544582,635.4800986,90.8743596,86.85187465,4.022484943,132.0772723,0,132.0772723,2.700329364,129.376943,0.972825176,4.156603544,1.436822335,-1.436822335,0.284442599,0.284442599,0.167827189,1.627226237,52.33718934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.48532549,1.956379432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17891987,50.30849714,84.66424536,52.26487657,635.4800986,0,0.805670165,36.32497353,-0.805670165,143.6750265,0.987939864,0,712.4803676,52.26487657,746.686684,9,15,5% -2018-09-22 00:00:00,66.40172212,250.2360193,346.9528821,683.0103272,73.52917047,544.9280593,471.0005872,73.92747207,71.31199469,2.615477379,86.33991892,0,86.33991892,2.217175783,84.12274314,1.15892868,4.367442444,2.289077682,-2.289077682,0.138698351,0.138698351,0.211928404,0.84017669,27.02297042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54780178,1.606336308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.608705151,25.97550704,69.15650693,27.58184335,471.0005872,0,0.689595118,46.4019325,-0.689595118,133.5980675,0.977493686,0,529.5566072,27.58184335,547.608372,9,16,3% -2018-09-22 01:00:00,77.82715066,260.4294228,139.3514731,441.614481,46.23193431,278.5978377,232.7094765,45.88836118,44.83787092,1.050490267,35.1814414,0,35.1814414,1.394063397,33.78737801,1.358340026,4.545350898,4.559227492,-4.559227492,0,0,0.331764949,0.348515849,11.20946773,0.199692766,1,0.215916301,0,0.93672527,0.975487234,0.724496596,1,43.39170385,1.009994186,0.031210101,0.312029739,0.915307844,0.639804439,0.961238037,0.922476074,0.242155948,10.77496675,43.6338598,11.78496094,186.2390776,0,0.526951643,58.20027991,-0.526951643,121.7997201,0.955114633,0,221.5135281,11.78496094,229.2265493,9,17,3% -2018-09-22 02:00:00,89.26330199,269.7659131,0.410351666,3.37458805,0.366963063,1.485848772,1.126857595,0.358991177,0.355897773,0.003093404,0.110559803,0,0.110559803,0.01106529,0.099494512,1.557938521,4.708303394,73.18746859,-73.18746859,0,0,0.894264831,0.002766323,0.088974443,0.922991862,1,0.013662691,0,0.960010916,0.998772879,0.724496596,1,0.342728097,0.008016765,0.109654514,0.312029739,0.736474101,0.460970697,0.961238037,0.922476074,0.001978635,0.085525619,0.344706732,0.093542384,0.086777205,0,0.333924491,70.49284996,-0.333924491,109.50715,0.90026555,0,0.42282926,0.093542384,0.48405088,9,18,14% -2018-09-22 03:00:00,101.5132504,279.0820869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771740453,4.870901299,-4.290395856,4.290395856,1,0.736145408,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105327877,83.95394273,-0.105327877,96.04605727,0.575291864,0,0,0,0,9,19,0% -2018-09-22 04:00:00,113.0019062,289.2097338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972255325,5.047662084,-1.825232984,1.825232984,1,0.842286913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123256485,97.08008112,0.123256485,82.91991888,0,0.644341831,0,0,0,9,20,0% -2018-09-22 05:00:00,123.7321819,301.1648369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159533964,5.256317996,-0.939126611,0.939126611,1,0.690753799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343456025,110.0875743,0.343456025,69.91242573,0,0.904420955,0,0,0,9,21,0% -2018-09-22 06:00:00,133.0031101,316.2746761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321342186,5.520034438,-0.431423222,0.431423222,1,0.603931406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540267709,122.7018648,0.540267709,57.29813517,0,0.957453288,0,0,0,9,22,0% -2018-09-22 07:00:00,139.6686046,335.8401373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437677012,5.861516156,-0.061586365,0.061586365,1,0.540685578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700283449,134.4497496,0.700283449,45.55025043,0,0.97860034,0,0,0,9,23,0% -2018-09-23 08:00:00,142.2489543,359.416289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48271261,6.272997628,0.257403949,-0.257403949,1,0.486135022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812603878,144.3511231,0.812603878,35.64887691,0,0.988469405,0,0,0,9,0,0% -2018-09-23 09:00:00,139.9256927,23.12548793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442164046,0.403615905,0.575119693,-0.575119693,1,0.43180243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869581111,150.4099984,0.869581111,29.59000162,0,0.992501051,0,0,0,9,1,0% -2018-09-23 10:00:00,133.4449353,42.94919757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329053492,0.749604909,0.940308627,-0.940308627,1,0.369351444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867339952,150.1509808,0.867339952,29.84901915,0,0.992352477,0,0,0,9,2,0% -2018-09-23 11:00:00,124.2855679,58.27699747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169192372,1.017125484,1.436144432,-1.436144432,1,0.284558527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806042043,143.7110113,0.806042043,36.28898869,0,0.987968496,0,0,0,9,3,0% -2018-09-23 12:00:00,113.6207492,70.37602069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983056171,1.228293275,2.286602755,-2.286602755,1,0.139121589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689875003,133.620215,0.689875003,46.37978495,0,0.977523102,0,0,0,9,4,0% -2018-09-23 13:00:00,102.1718938,80.58941942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78323595,1.406550711,4.557235007,-4.557235007,1,0,#DIV/0!,0,0,0.199474468,1,0.216007794,0,0.936712642,0.975474606,0.724496596,1,0,0,0.031178927,0.312029739,0.915388624,0.63988522,0.961238037,0.922476074,0,0,0,0,0,0,-0.52676722,121.787288,0.52676722,58.212712,0,0.955081413,0,0,0,9,5,0% -2018-09-23 14:00:00,89.84679371,89.94912063,0.036184727,0.8558878,0.033896125,0.033146808,0,0.033146808,0.032874032,0.000272776,0.282809769,0.27301427,0.009795499,0.001022093,0.008773406,1.568122373,1.569908314,-351.5369531,351.5369531,0,0,0.936752263,0.000255523,0.008218508,1,0.983234561,0,0.002844643,0.961238037,1,0.716461741,0.991965145,0.03159977,0.000737012,0.115824807,0.302899034,0.724496596,0.448993192,0.962674633,0.923912669,0.000185126,0.007906408,0.031784896,0.00864342,0,0.004577204,-0.318983714,108.6014754,0.318983714,71.39852462,0,0.893252186,0.031784896,0.012732018,0.040117746,9,6,26% -2018-09-23 15:00:00,78.5219263,99.29332909,127.4165365,420.196011,43.8005069,43.44027969,0,43.44027969,42.47976001,0.960519673,76.47240977,44.25804842,32.21436135,1.32074689,30.89361446,1.370466149,1.732995518,-4.295050023,4.295050023,0.735349498,0.735349498,0.343758417,0.793701742,25.52817634,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.83316112,0.956876626,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.57503421,24.53865411,41.40819533,25.49553074,0,44.25804842,-0.10532715,96.04601541,0.10532715,83.95398459,0,0.57528859,41.40819533,50.95668103,74.75832393,9,7,81% -2018-09-23 16:00:00,67.10551574,109.4540938,334.441825,674.5316271,72.02523276,154.8644517,82.48988172,72.37456999,69.85340624,2.521163746,83.26111901,0,83.26111901,2.171826512,81.0892925,1.171212196,1.910334316,-1.828388131,1.828388131,0.842826475,0.842826475,0.215359526,2.210241959,71.08897907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.14575108,1.573480915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601312776,68.33343068,68.74706386,69.9069116,82.48988172,0,0.122292089,82.97559593,-0.122292089,97.02440407,0.641142809,0,121.6348583,69.9069116,167.3875338,9,8,38% -2018-09-23 17:00:00,56.43471921,121.4429573,522.2333387,784.7042763,88.38075984,357.95149,268.2989207,89.65256934,85.71575384,3.9368155,129.2865252,0,129.2865252,2.665005999,126.6215192,0.984971663,2.119579458,-0.939366547,0.939366547,0.69079483,0.69079483,0.16923615,2.925540203,94.09542939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.39324295,1.930787775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119543918,90.44810583,84.51278687,92.3788936,268.2989207,0,0.341910869,70.00666266,-0.341910869,109.9933373,0.903763058,0,326.9914398,92.3788936,387.4515781,9,9,18% -2018-09-23 18:00:00,47.23308641,136.5682856,668.7417295,839.1966874,98.91250419,552.645715,451.6745302,100.9711849,95.92992724,5.041257634,165.1267517,0,165.1267517,2.98257695,162.1441747,0.824372874,2.383566238,-0.429926967,0.429926967,0.603675531,0.603675531,0.147908378,3.338800936,107.3873152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.21149493,2.160866847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418949913,103.224772,94.63044485,105.3856389,451.6745302,0,0.538222489,57.43728222,-0.538222489,122.5627178,0.957101615,0,526.9288672,105.3856389,595.9016601,9,10,13% -2018-09-23 19:00:00,40.64678501,156.082526,761.8096128,865.6069328,105.0393003,711.6017154,603.9868948,107.6148205,101.8719779,5.742842651,187.876883,0,187.876883,3.167322458,184.7095606,0.709420229,2.724153983,-0.058653782,0.058653782,0.540184077,0.540184077,0.137881301,3.466288482,111.4877529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.92322001,2.294714339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511314205,107.1662687,100.4345342,109.460983,603.9868948,0,0.697761157,45.75234385,-0.697761157,134.2476562,0.978342242,0,691.3404272,109.460983,762.9804513,9,11,10% -2018-09-23 20:00:00,38.13285911,179.4925611,794.3723387,873.7365726,107.1077318,817.2576483,707.3912955,109.8663528,103.8780385,5.988314233,195.8344637,0,195.8344637,3.229693301,192.6047704,0.665543945,3.132736174,0.261951208,-0.261951208,0.485357395,0.485357395,0.134833159,3.322007039,106.8471657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.85152184,2.339901802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.406782791,102.7055598,102.2583046,105.0454616,707.3912955,0,0.809616214,35.94154863,-0.809616214,144.0584514,0.988242344,0,801.3323363,105.0454616,870.08249,9,12,9% -2018-09-23 21:00:00,40.48066175,202.9869494,764.0139209,866.1737188,105.1804309,858.0006656,750.2323531,107.7683125,102.0088528,5.759459657,188.4155986,0,188.4155986,3.171578065,185.2440206,0.706520831,3.542790606,0.581941452,-0.581941452,0.43063584,0.43063584,0.137668213,2.931675468,94.29276063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.05478942,2.297797512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123988897,90.63778812,100.1787783,92.93558563,750.2323531,0,0.866145366,29.98625043,-0.866145366,150.0137496,0.992272969,0,844.6140631,92.93558563,905.4385452,9,13,7% -2018-09-23 22:00:00,46.95002202,222.6633244,672.9596524,840.5088439,99.19801866,827.0512157,725.7713292,101.2798865,96.20683239,5.073054119,166.1580453,0,166.1580453,2.991186264,163.166859,0.819432468,3.886208133,0.950945899,-0.950945899,0.367532363,0.367532363,0.147405596,2.337468696,75.18102827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.4776667,2.167104266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693488113,72.26686402,94.17115481,74.43396828,725.7713292,0,0.863490414,30.28922533,-0.863490414,149.7107747,0.992095478,0,814.2056082,74.43396828,862.9211518,9,14,6% -2018-09-23 23:00:00,56.08629704,237.9200058,528.0838918,787.275136,88.82876799,721.4042998,631.2731275,90.13117233,86.15025289,3.98091944,130.7185686,0,130.7185686,2.678515098,128.0400535,0.978890549,4.152487457,1.454452275,-1.454452275,0.281427702,0.281427702,0.168209577,1.601517697,51.51031431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.81089996,1.940575071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16029412,49.5136734,83.97119408,51.45424848,631.2731275,0,0.80184563,36.69328975,-0.80184563,143.3067102,0.987643858,0,707.4442212,51.45424848,741.1199977,9,15,5% -2018-09-23 00:00:00,66.72709331,249.9853784,341.3206577,679.8214629,72.71561439,539.0960127,466.0000231,73.09598962,70.52297033,2.573019292,84.94978921,0,84.94978921,2.192644066,82.75714514,1.164607479,4.363067936,2.324999631,-2.324999631,0.132555336,0.132555336,0.213041938,0.816566786,26.26359476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78936155,1.588563162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.591599857,25.24556627,68.38096141,26.83412943,466.0000231,0,0.685474126,46.72709412,-0.685474126,133.2729059,0.977057787,0,523.6899125,26.83412943,541.2523135,9,16,3% -2018-09-23 01:00:00,78.13801717,260.1762659,134.1065858,433.032029,45.09474124,271.0525461,226.3066256,44.7459205,43.73496841,1.010952091,33.8754672,0,33.8754672,1.35977283,32.51569437,1.363765671,4.540932475,4.686098536,-4.686098536,0,0,0.336260452,0.339943208,10.9337421,0.213351846,1,0.21024361,0,0.937504661,0.976266625,0.724496596,1,42.33530457,0.985150787,0.033149008,0.312029739,0.910298659,0.634795255,0.961238037,0.922476074,0.235775911,10.50992879,42.57108048,11.49507958,178.0236892,0,0.522609439,58.49254918,-0.522609439,121.5074508,0.954326259,0,212.4637618,11.49507958,219.9870615,9,17,4% -2018-09-23 02:00:00,89.52911658,269.5125816,0.184335598,1.927443021,0.168495151,0.801032044,0.636228043,0.164804001,0.163414401,0.0013896,0.04977505,0,0.04977505,0.00508075,0.0446943,1.562577861,4.703881924,114.6864801,-114.6864801,0,0,0.914067348,0.001270188,0.0408536,0.950205129,1,0.008719203,0,0.960460124,0.999222087,0.724496596,1,0.15726843,0.003680986,0.111871241,0.312029739,0.732135769,0.456632365,0.961238037,0.922476074,0.000912525,0.039270034,0.158180954,0.042951021,0.031680894,0,0.330089158,70.72581291,-0.330089158,109.2741871,0.898525773,0,0.186647053,0.042951021,0.214757638,9,18,15% -2018-09-23 03:00:00,101.8253189,278.8283032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777187076,4.866471938,-4.184265955,4.184265955,1,0.75429469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100704086,84.22028368,-0.100704086,95.77971632,0.553495817,0,0,0,0,9,19,0% -2018-09-23 04:00:00,113.3265221,288.9574912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97792094,5.043259619,-1.803298172,1.803298172,1,0.838535839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.127870123,97.34653217,0.127870123,82.65346783,0,0.658978246,0,0,0,9,20,0% -2018-09-23 05:00:00,124.0781864,300.9255676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165572882,5.252141958,-0.93175662,0.93175662,1,0.689493456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347968348,110.3631005,0.347968348,69.63689953,0,0.90630877,0,0,0,9,21,0% -2018-09-23 06:00:00,133.3769624,316.0836961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32786714,5.516701209,-0.429045737,0.429045737,1,0.603524832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544594574,122.9969626,0.544594574,57.0030374,0,0.958188582,0,0,0,9,22,0% -2018-09-23 07:00:00,140.0652346,335.7736356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444599511,5.860355482,-0.061696358,0.061696358,1,0.540704388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704353518,134.7773394,0.704353518,45.22266059,0,0.979012919,0,0,0,9,23,0% -2018-09-24 08:00:00,142.6387312,359.5557551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4895155,6.275431771,0.255557469,-0.255557469,1,0.486450789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816363521,144.7224077,0.816363521,35.27759226,0,0.988752775,0,0,0,9,0,0% -2018-09-24 09:00:00,140.268029,23.44480662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448138941,0.409189068,0.571551083,-0.571551083,1,0.432412698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872998087,150.808928,0.872998087,29.19107197,0,0.992726106,0,0,0,9,1,0% -2018-09-24 10:00:00,133.7251257,43.34125267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333943737,0.756447561,0.934377358,-0.934377358,1,0.370365751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870405612,150.5058085,0.870405612,29.4941915,0,0.992555517,0,0,0,9,2,0% -2018-09-24 11:00:00,124.514362,58.67308413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173185583,1.0240385,1.425903255,-1.425903255,1,0.286309872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808771921,143.9761178,0.808771921,36.02388224,0,0.988177874,0,0,0,9,3,0% -2018-09-24 12:00:00,113.8152303,70.75648735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986450508,1.234933671,2.26547471,-2.26547471,1,0.142734697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692307735,133.8130648,0.692307735,46.18693517,0,0.977777782,0,0,0,9,4,0% -2018-09-24 13:00:00,102.3474098,80.95604478,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786299283,1.412949531,4.484985642,-4.484985642,1,0,#DIV/0!,0,0,0.191477544,1,0.219377757,0,0.936246245,0.975008209,0.724496596,1,0,0,0.030032838,0.312029739,0.918363759,0.642860355,0.961238037,0.922476074,0,0,0,0,0,0,-0.528961875,121.9353397,0.528961875,58.0646603,0,0.955475229,0,0,0,9,5,0% -2018-09-24 14:00:00,89.98836276,90.31023288,0.00215915,0.585814839,0.002040166,0.001994924,0,0.001994924,0.001978647,1.62766E-05,0.188376672,0.187791643,0.000585029,6.15185E-05,0.000523511,1.570593219,1.576210912,-4617.375549,4617.375549,0,0,0.944893212,1.53796E-05,0.000494662,1,0.99873281,0,0.000216573,0.961238037,1,0.723882655,0.999386059,0.001901951,4.45537E-05,0.115824807,0.311332019,0.724496596,0.448993192,0.961348414,0.922586451,1.11425E-05,0.000475518,0.001913094,0.000520072,0,0.000237968,-0.320564845,108.6970877,0.320564845,71.30291227,0,0.894025317,0.001913094,0.000732821,0.00239271,9,6,25% -2018-09-24 15:00:00,78.69663627,99.65851398,124.5849443,415.7434124,43.09769135,42.73731088,0,42.73731088,41.79813694,0.939173935,76.10086562,44.59424908,31.50661654,1.299554408,30.20706213,1.373515413,1.739369197,-4.347541933,4.347541933,0.726372853,0.726372853,0.345930173,0.771088792,24.80086614,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1779591,0.941522745,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.558651205,23.83953588,40.7366103,24.78105862,0,44.59424908,-0.107263874,96.15761378,0.107263874,83.84238622,0,0.583859835,40.7366103,50.81784954,73.99587647,9,7,82% -2018-09-24 16:00:00,67.30021734,109.8314861,331.1693179,673.0355209,71.44319896,152.7694388,80.98402165,71.78541712,69.28892292,2.496494205,82.45011132,0,82.45011132,2.154276046,80.29583527,1.17461038,1.916921055,-1.835819247,1.835819247,0.844097271,0.844097271,0.215730127,2.191248323,70.47807844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60314824,1.560765662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587551951,67.74620976,68.19070019,69.30697543,80.98402165,0,0.120326519,83.08905269,-0.120326519,96.91094731,0.634464005,0,119.5721469,69.30697543,164.9321762,9,8,38% -2018-09-24 17:00:00,56.66378088,121.8341511,518.6740685,784.0369025,87.80575926,355.5123085,266.4442326,89.06807587,85.15809165,3.909984217,128.4062005,0,128.4062005,2.64766761,125.7585329,0.988969543,2.126407078,-0.939428874,0.939428874,0.690805489,0.690805489,0.169288894,2.905699631,93.45728841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.85719684,1.918226171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105169491,89.83470044,83.96236633,91.75292661,266.4442326,0,0.339836342,70.13309657,-0.339836342,109.8669034,0.902870356,0,324.5269654,91.75292661,384.5774208,9,9,19% -2018-09-24 18:00:00,47.51292895,136.9543964,664.8652729,838.7962364,98.32231321,549.9286568,449.5590888,100.369568,95.35753269,5.012035268,164.1690635,0,164.1690635,2.964780514,161.204283,0.829257047,2.390305142,-0.427401211,0.427401211,0.603243601,0.603243601,0.147883063,3.317552115,106.70388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66128753,2.14797339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403555214,102.5678281,94.06484274,104.7158015,449.5590888,0,0.535957446,57.59113362,-0.535957446,122.4088664,0.956709011,0,524.1620742,104.7158015,592.696472,9,10,13% -2018-09-24 19:00:00,40.98778618,156.3988102,757.5799033,865.2741764,104.4281966,708.5599777,601.5697192,106.9902585,101.2793012,5.710957314,186.8329139,0,186.8329139,3.148895426,183.6840185,0.715371822,2.729674183,-0.054577479,0.054577479,0.539486988,0.539486988,0.137844465,3.443513991,110.7552469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.35351663,2.281364017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.494814164,106.4621561,99.8483308,108.7435202,601.5697192,0,0.695235956,45.95397717,-0.695235956,134.0460228,0.97808197,0,688.2328271,108.7435202,759.4032862,9,11,10% -2018-09-24 20:00:00,38.52138697,179.6373519,789.7720324,873.3632295,106.4738343,813.8278874,704.6109969,109.2168905,103.2632553,5.953635181,194.6999519,0,194.6999519,3.210578951,191.4893729,0.672325035,3.13526325,0.267523555,-0.267523555,0.484404467,0.484404467,0.134815909,3.297807519,106.068826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.26056884,2.32605352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.389250322,101.95739,101.6498192,104.2834436,704.6109969,0,0.806778867,36.21759864,-0.806778867,143.7824014,0.988025149,0,797.8232044,104.2834436,866.0746325,9,12,9% -2018-09-24 21:00:00,40.87772135,202.9306821,759.0512134,865.6551299,104.5224455,854.1231579,747.0304011,107.0927568,101.3707081,5.722048671,187.192492,0,187.192492,3.151737379,184.0407547,0.713450828,3.541808556,0.589535224,-0.589535224,0.429337229,0.429337229,0.137701441,2.906333316,93.47766988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.44138048,2.283423002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105628594,89.85429189,99.54700907,92.13771489,747.0304011,0,0.862965372,30.3488169,-0.862965372,149.6511831,0.992060248,0,840.6461737,92.13771489,900.9484654,9,13,7% -2018-09-24 22:00:00,47.32554622,222.4805263,667.671932,839.6763752,98.51247459,822.6641137,722.0889607,100.5751531,95.54196001,5.033193049,164.8553045,0,164.8553045,2.970514581,161.88479,0.825986602,3.883017705,0.961934509,-0.961934509,0.3656532,0.3656532,0.147546227,2.311487251,74.34537567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.83856607,2.152127702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674664644,71.46360295,93.51323072,73.61573066,722.0889607,0,0.85996103,30.68779235,-0.85996103,149.3122077,0.99185783,0,809.7228207,73.61573066,857.9028441,9,14,6% -2018-09-24 23:00:00,56.43396694,237.6854857,522.5450435,785.7552588,88.10279387,716.4060347,627.0206998,89.38533483,85.44616957,3.939165262,129.3537199,0,129.3537199,2.6566243,126.6970956,0.984958533,4.148394309,1.472383524,-1.472383524,0.278361278,0.278361278,0.168603252,1.575791817,50.68288158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.13410829,1.924715262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141655807,48.71831359,83.2757641,50.64302885,627.0206998,0,0.797984732,37.0619129,-0.797984732,142.9380871,0.98734216,0,702.359736,50.64302885,735.5045855,9,15,5% -2018-09-24 00:00:00,67.05249859,249.7354497,335.6777475,676.5530958,71.89813157,533.2128835,460.9522652,72.26061828,69.73013763,2.530480651,83.55695016,0,83.55695016,2.167993943,81.38895622,1.170286872,4.358705856,2.361841801,-2.361841801,0.126254954,0.126254954,0.214187959,0.79305421,25.5073495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02726061,1.570704231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.574565076,24.51863456,67.60182568,26.08933879,460.9522652,0,0.681324597,47.05276138,-0.681324597,132.9472386,0.97661354,0,517.7740494,26.08933879,534.8489998,9,16,3% -2018-09-24 01:00:00,78.44863989,259.9232265,128.8893562,424.2027194,43.94434745,263.4337437,219.842858,43.59088564,42.61926323,0.97162241,32.57580085,0,32.57580085,1.325084213,31.25071664,1.36918706,4.536516106,4.819506505,-4.819506505,0,0,0.340946287,0.331271053,10.65481581,0.227220666,1,0.204587119,0,0.938274826,0.977036789,0.724496596,1,41.26521811,0.960019002,0.03509443,0.312029739,0.905302418,0.629799014,0.961238037,0.922476074,0.229371773,10.24181423,41.49458989,11.20183323,169.8900175,0,0.518249525,58.7850938,-0.518249525,121.2149062,0.953521378,0,203.4883535,11.20183323,210.8197293,9,17,4% -2018-09-24 02:00:00,89.78992386,269.2588078,0.055265635,1.025923216,0.051504075,0.385150352,0.334782699,0.050367653,0.049951037,0.000416616,0.014952831,0,0.014952831,0.001553038,0.013399793,1.567129806,4.699452735,257.4741174,-257.4741174,0,0,0.931936728,0.000388259,0.012487759,0.977528349,1,0.003883866,0,0.960893796,0.999655759,0.724496596,1,0.048041151,0.001125171,0.114056762,0.312029739,0.727897276,0.452393872,0.961238037,0.922476074,0.000280209,0.012003709,0.048321361,0.01312888,0.00752312,0,0.326323348,70.95423107,-0.326323348,109.0457689,0.896777743,0,0.055067927,0.01312888,0.063660516,9,18,16% -2018-09-24 03:00:00,102.1367695,278.5734829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782622915,4.862024485,-4.083669632,4.083669632,1,0.771497674,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.096083405,84.48632037,-0.096083405,95.51367963,0.529618776,0,0,0,0,9,19,0% -2018-09-24 04:00:00,113.6503578,288.7035043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98357294,5.038826711,-1.781976314,1.781976314,1,0.834889587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132469497,97.61231852,0.132469497,82.38768148,0,0.672554618,0,0,0,9,20,0% -2018-09-24 05:00:00,124.423391,300.683728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171597839,5.247921061,-0.924540453,0.924540453,1,0.688259419,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.352456276,110.6376257,0.352456276,69.36237428,0,0.908138432,0,0,0,9,21,0% -2018-09-24 06:00:00,133.7502419,315.8895843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334382096,5.513313319,-0.426717296,0.426717296,1,0.603126645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548888634,123.290802,0.548888634,56.70919804,0,0.95890684,0,0,0,9,22,0% -2018-09-24 07:00:00,140.4617148,335.7050832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451519396,5.859159017,-0.061818858,0.061818858,1,0.540725337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708384672,135.1036393,0.708384672,44.89636065,0,0.97941688,0,0,0,9,23,0% -2018-09-25 08:00:00,143.0284248,359.6967175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496316936,6.27789203,0.253716794,-0.253716794,1,0.486765562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820080859,145.0928889,0.820080859,34.90711109,0,0.989030402,0,0,0,9,0,0% -2018-09-25 09:00:00,140.6097506,23.76787043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454103109,0.414827595,0.568003146,-0.568003146,1,0.433019431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876372319,151.2078075,0.876372319,28.79219246,0,0.992946623,0,0,0,9,1,0% -2018-09-25 10:00:00,134.0043661,43.73632518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3388174,0.763342877,0.928487971,-0.928487971,1,0.371372895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873431075,150.8598342,0.873431075,29.14016582,0,0.992754498,0,0,0,9,2,0% -2018-09-25 11:00:00,124.7423466,59.0708518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177164665,1.030980856,1.41575254,-1.41575254,1,0.288045746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811466954,144.2395054,0.811466954,35.76049463,0,0.988383196,0,0,0,9,3,0% -2018-09-25 12:00:00,114.0092903,71.13769635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989837493,1.241587024,2.244614434,-2.244614434,1,0.146302014,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694713409,134.004384,0.694713409,45.99561602,0,0.978027875,0,0,0,9,4,0% -2018-09-25 13:00:00,102.5229692,81.32281232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789363372,1.419350832,4.414538759,-4.414538759,1,0,#DIV/0!,0,0,0.183524771,1,0.222764753,0,0.935775005,0.974536969,0.724496596,1,0,0,0.028885135,0.312029739,0.921353449,0.645850044,0.961238037,0.922476074,0,0,0,0,0,0,-0.531139157,122.0824555,0.531139157,57.91754455,0,0.955862712,0,0,0,9,5,0% -2018-09-25 14:00:00,90.12962326,90.67102721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57305868,1.582507961,413.5610872,-413.5610872,1,0,#DIV/0!,0,0,0.985953667,1,0.002418018,0,0.961024148,0.999786111,0.724496596,1,0,0,0.114722731,0.312029739,0.726613383,0.451109979,0.961238037,0.922476074,0,0,0,0,0,0,-0.322126889,108.791599,0.322126889,71.20840099,0,0.894781663,0,0,0,9,6,0% -2018-09-25 15:00:00,78.87228577,100.0228923,121.7443572,411.1766302,42.38866571,42.02825143,0,42.02825143,41.11049104,0.91776039,75.69900304,44.90249946,30.79650359,1.278174669,29.51832892,1.376581075,1.745728799,-4.401878295,4.401878295,0.717080788,0.717080788,0.348177662,0.748513386,24.07476349,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.5169677,0.926033196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.5422954,23.14157839,40.0592631,24.06761159,0,44.90249946,-0.109204892,96.26948311,0.109204892,83.73051689,0,0.592145053,40.0592631,50.65640451,73.21286673,9,7,83% -2018-09-25 16:00:00,67.49630655,110.2073828,327.8677356,671.4948721,70.85778223,150.6608827,79.46811861,71.19276414,68.72115866,2.471605483,81.631952,0,81.631952,2.136623572,79.49532843,1.178032782,1.92348169,-1.843429807,1.843429807,0.845398753,0.845398753,0.216116972,2.17207336,69.86134573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05739164,1.547976504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573659756,67.15338282,67.6310514,68.70135932,79.46811861,0,0.118345086,83.20339758,-0.118345086,96.79660242,0.627506751,0,117.4978323,68.70135932,162.461498,9,8,38% -2018-09-25 17:00:00,56.89452995,122.2227544,515.0765012,783.3446878,87.22778318,353.0440241,264.5636162,88.48040792,84.59754368,3.882864235,127.5165006,0,127.5165006,2.630239499,124.8862611,0.992996874,2.133189486,-0.939519998,0.939519998,0.690821072,0.690821072,0.16934918,2.88566809,92.81300519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.31837681,1.905599563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090656708,89.2153909,83.40903352,91.12099047,264.5636162,0,0.337735891,70.26100778,-0.337735891,109.7389922,0.901955326,0,322.0335961,91.12099047,381.6704619,9,9,19% -2018-09-25 18:00:00,47.79444367,137.3363522,660.9450492,838.3778219,97.72917784,547.1720008,447.4072353,99.76476551,94.78228254,4.982482965,163.2006746,0,163.2006746,2.946895294,160.2537793,0.834170406,2.396971529,-0.424866659,0.424866659,0.602810167,0.602810167,0.147862788,3.296110603,106.0142473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.1083352,2.135015609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388020911,101.9049269,93.49635611,104.0399426,447.4072353,0,0.533658243,57.74703757,-0.533658243,122.2529624,0.956307078,0,521.3550621,104.0399426,589.4471237,9,10,13% -2018-09-25 19:00:00,41.32988621,156.7098628,753.3042953,864.926114,103.8141802,705.471516,599.1089904,106.3625256,100.6837996,5.678725975,185.7777284,0,185.7777284,3.130380567,182.6473479,0.721342594,2.735103077,-0.050473321,0.050473321,0.538785136,0.538785136,0.137811746,3.420557658,110.0168924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.7810979,2.267950064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478182379,105.7524217,99.25928028,108.0203717,599.1089904,0,0.692670716,46.15810725,-0.692670716,133.8418928,0.977815629,0,685.0774145,108.0203717,755.7745874,9,11,10% -2018-09-25 20:00:00,38.9101321,179.778644,785.1270313,872.9750425,105.8371384,810.3475846,701.7832072,108.5643774,102.6457582,5.918619201,193.5545188,0,193.5545188,3.191380221,190.3631386,0.679109918,3.137729263,0.273142865,-0.273142865,0.483443509,0.483443509,0.134802566,3.273450076,105.2854068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.6670071,2.312144106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371603437,101.2043378,101.0386105,103.5164819,701.7832072,0,0.803898363,36.49600218,-0.803898363,143.5039978,0.987803083,0,794.262226,103.5164819,862.011693,9,12,9% -2018-09-25 21:00:00,41.27463771,202.8743308,754.0482577,865.1201114,103.8618627,850.1945423,743.7801637,106.4143786,100.7300443,5.684334278,185.9595485,0,185.9595485,3.13181837,182.8277301,0.720378326,3.54082504,0.597206093,-0.597206093,0.428025433,0.428025433,0.137739013,2.880869754,92.65867421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.82555006,2.268991748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08718033,89.06704209,98.91273039,91.33603384,743.7801637,0,0.85974208,30.71236408,-0.85974208,149.2876359,0.991843023,0,836.6258967,91.33603384,896.4035041,9,13,7% -2018-09-25 22:00:00,47.70102748,222.2991328,662.3514425,838.8224572,97.82455825,818.2280487,718.3601769,99.86787183,94.87478688,4.993084952,163.544547,0,163.544547,2.949771365,160.5947757,0.832539986,3.879851792,0.973062213,-0.973062213,0.363750251,0.363750251,0.147692829,2.285433727,73.50740478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19725389,2.137099313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655788955,70.65811347,92.85304284,72.79521278,718.3601769,0,0.856391207,31.0862291,-0.856391207,148.9137709,0.991615468,0,805.1901057,72.79521278,852.8331166,9,14,6% -2018-09-25 23:00:00,56.78164357,237.4522215,516.9838214,784.2001493,87.37445139,711.3618037,622.724772,88.63703172,84.7397893,3.897242421,127.983375,0,127.983375,2.634662087,125.3487129,0.991026635,4.144323081,1.490617826,-1.490617826,0.275243028,0.275243028,0.169008096,1.550061235,49.85529763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.45510871,1.908803713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.123014088,47.92280842,82.5781228,49.83161213,622.724772,0,0.794089076,37.43069894,-0.794089076,142.5693011,0.987034772,0,697.2291259,49.83161213,729.8429195,9,15,5% -2018-09-25 00:00:00,67.37779355,249.4862038,330.0271762,673.2046943,71.07689841,527.2811134,455.8595614,71.42155193,68.93366767,2.487884258,82.16214051,0,82.16214051,2.143230733,80.01890978,1.17596434,4.354355695,2.39962728,-2.39962728,0.119793256,0.119793256,0.215366805,0.769653293,24.75469557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.26166339,1.55276337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.557611191,23.79515497,66.81927458,25.34791834,455.8595614,0,0.677148519,47.37878193,-0.677148519,132.6212181,0.976160955,0,511.8115794,25.34791834,528.401285,9,16,3% -2018-09-25 01:00:00,78.7588695,259.6702898,123.7044748,415.1239144,42.78084488,255.7448834,213.3215023,42.42338114,41.49084456,0.932536584,31.28358244,0,31.28358244,1.290000318,29.99358213,1.374601588,4.532101527,4.95991716,-4.95991716,0,0,0.345831021,0.322500079,10.37271114,0.241298893,1,0.198949182,0,0.939035482,0.977797446,0.724496596,1,40.18156888,0.934600839,0.037045669,0.312029739,0.900321216,0.624817812,0.961238037,0.922476074,0.222943169,9.970644493,40.40451205,10.90524533,161.8472599,0,0.513874279,59.07776012,-0.513874279,120.9222399,0.952699936,0,194.5963863,10.90524533,201.7336513,9,17,4% -2018-09-25 02:00:00,90.04643609,269.0045807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571606789,4.695015636,-1166.608181,1166.608181,1,0,#DIV/0!,0,0,1,0.99497568,0,0.000857186,0.961238037,1,0.722068788,0.997572192,0,0,0.115824807,0.30927067,0.724496596,0.448993192,0.961673934,0.922911971,0,0,0,0,0,0,0.322615804,71.17880842,-0.322615804,108.8211916,0.895016892,0,0,0,0,9,18,0% -2018-09-25 03:00:00,102.4474558,278.3176107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788045414,4.857558673,-3.988224353,3.988224353,1,0.787819778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091468429,84.75190963,-0.091468429,95.24809037,0.503363302,0,0,0,0,9,19,0% -2018-09-25 04:00:00,113.9732642,288.447742,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989208719,5.034362817,-1.761252582,1.761252582,1,0.83134562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137052028,97.8772955,0.137052028,82.1227045,0,0.685175044,0,0,0,9,20,0% -2018-09-25 05:00:00,124.7676448,300.4392515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177606202,5.243654141,-0.917478343,0.917478343,1,0.687051727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356917361,110.9110009,0.356917361,69.08899912,0,0.90991155,0,0,0,9,21,0% -2018-09-25 06:00:00,134.122804,315.6922126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340884531,5.509868533,-0.424439545,0.424439545,1,0.602737127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55314768,123.5832261,0.55314768,56.41677389,0,0.959608226,0,0,0,9,22,0% -2018-09-25 07:00:00,140.8579244,335.6343067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458434557,5.857923735,-0.061955558,0.061955558,1,0.540748714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712375031,135.4284844,0.712375031,44.57151558,0,0.979812251,0,0,0,9,23,0% -2018-09-26 08:00:00,143.4179454,359.8390503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.503115354,6.280376205,0.251880281,-0.251880281,1,0.487079625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823754408,145.4624099,0.823754408,34.53759012,0,0.989302298,0,0,0,9,0,0% -2018-09-26 09:00:00,140.9507928,24.09457164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460055418,0.420529607,0.564474156,-0.564474156,1,0.433622924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879702762,151.6065285,0.879702762,28.39347145,0,0.99316262,0,0,0,9,1,0% -2018-09-26 10:00:00,134.282623,44.13427394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3436739,0.770288393,0.922638343,-0.922638343,1,0.37237324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87641574,151.2129733,0.87641574,28.78702665,0,0.99294945,0,0,0,9,2,0% -2018-09-26 11:00:00,124.9695173,59.47015262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181129542,1.03794997,1.405688885,-1.405688885,1,0.289766733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814126967,144.5011296,0.814126967,35.49887038,0,0.988584518,0,0,0,9,3,0% -2018-09-26 12:00:00,114.202943,71.51950881,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993217371,1.248250908,2.224012925,-2.224012925,1,0.14982508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697092228,134.1941761,0.697092228,45.80582388,0,0.97827348,0,0,0,9,4,0% -2018-09-26 13:00:00,102.698595,81.68959121,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792428621,1.425752331,4.345814566,-4.345814566,1,0,#DIV/0!,0,0,0.175614255,1,0.226169496,0,0.93529879,0.974060753,0.724496596,1,0,0,0.027735594,0.312029739,0.924358317,0.648854913,0.961238037,0.922476074,0,0,0,0,0,0,-0.533299573,122.228666,0.533299573,57.77133402,0,0.956244065,0,0,0,9,5,0% -2018-09-26 14:00:00,90.89805204,91.03137496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586470292,1.588797216,59.54508685,-59.54508685,1,0,#DIV/0!,0,0,0.906126696,1,0.016792418,0,0.959723477,0.99848544,0.724496596,1,0,0,0.108260208,0.312029739,0.739223161,0.463719757,0.961238037,0.922476074,0,0,0,0,0,0,-0.333925038,109.5071833,0.333925038,70.49281667,0,0.900265795,0,0,0,9,6,0% -2018-09-26 15:00:00,79.04889233,100.3863313,118.8950144,406.4918413,41.67324229,41.31292111,0,41.31292111,40.41664027,0.89628084,75.26603958,45.18196481,30.08407478,1.256602013,28.82747276,1.379663441,1.752072005,-4.458176667,4.458176667,0.707453199,0.707453199,0.35050454,0.725980472,23.35002753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.85001195,0.910403881,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525970381,22.44493462,39.37598233,23.3553385,0,45.18196481,-0.111150976,96.38166852,0.111150976,83.61833148,0,0.600161394,39.37598233,50.47180948,72.4087722,9,7,84% -2018-09-26 16:00:00,67.69378998,110.5816419,324.5369682,669.9083758,70.26893231,148.5383987,77.9418372,70.59656149,68.15006474,2.446496751,80.80661286,0,80.80661286,2.118867574,78.68774529,1.181479518,1.930013744,-1.851231512,1.851231512,0.846732923,0.846732923,0.216520579,2.152717505,69.23879489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50843444,1.535112344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559636504,66.55496327,67.06807095,68.09007561,77.9418372,0,0.116347011,83.31867532,-0.116347011,96.68132468,0.6202511,0,115.4115812,68.09007561,159.9751739,9,8,39% -2018-09-26 17:00:00,57.1269508,122.6086185,511.4407663,782.627153,86.64683115,350.5461832,262.6566171,87.88956603,84.0341095,3.85545653,126.6174567,0,126.6174567,2.612721652,124.004735,0.997053383,2.139924083,-0.939644234,0.939644234,0.690842317,0.690842317,0.169417139,2.865448266,92.16266616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77678245,1.892907943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076007515,88.59026029,82.85278996,90.48316823,262.6566171,0,0.335608873,70.39043253,-0.335608873,109.6095675,0.90101705,0,319.5108803,90.48316823,378.7303043,9,9,19% -2018-09-26 18:00:00,48.07758288,137.7140195,656.9815599,837.9412624,97.13312811,544.375515,445.2187046,99.15681042,94.20420591,4.952604509,162.2217077,0,162.2217077,2.928922196,159.2927855,0.839112118,2.403563066,-0.422325944,0.422325944,0.602375679,0.602375679,0.147847571,3.274481181,105.3185707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55266596,2.12199416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.372350469,101.2362162,92.92501643,103.3582103,445.2187046,0,0.531324479,57.90501172,-0.531324479,122.0949883,0.955895546,0,518.5075931,103.3582103,586.1534746,9,10,13% -2018-09-26 19:00:00,41.67300625,157.0156026,748.9837315,864.5627121,103.1973089,702.336472,596.604787,105.731685,100.0855293,5.64615574,184.7115568,0,184.7115568,3.111779621,181.5997771,0.727331168,2.740439242,-0.04634336,0.04634336,0.538078871,0.538078871,0.137783111,3.397426295,109.2729082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20601768,2.254473742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461423785,105.0372758,98.66744146,107.2917495,596.604787,0,0.690065369,46.36471638,-0.690065369,133.6352836,0.977543096,0,681.8743322,107.2917495,752.0946364,9,11,10% -2018-09-26 20:00:00,39.29899826,179.9163663,780.4387505,872.5720754,105.19773,806.817354,698.9084467,107.9089073,102.0256303,5.88327696,192.3985104,0,192.3985104,3.172099699,189.2264107,0.685896912,3.14013297,0.278807314,-0.278807314,0.482474831,0.482474831,0.134793063,3.248943414,104.4971884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.07091661,2.298175434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353848444,100.4466722,100.4247651,102.7448476,698.9084467,0,0.800975033,36.77668774,-0.800975033,143.2233123,0.987576082,0,790.6500303,102.7448476,857.8944782,9,12,9% -2018-09-26 21:00:00,41.67129533,202.8177774,749.0069374,864.5688071,103.1987971,846.2159632,740.4826599,105.7333032,100.0869726,5.646330676,184.7172282,0,184.7172282,3.111824495,181.6054037,0.727301307,3.539837997,0.604952388,-0.604952388,0.426700738,0.426700738,0.137780829,2.85529514,91.83610671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20740503,2.254506253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.068651609,88.27635893,98.27605664,90.53086518,740.4826599,0,0.856476262,31.07678951,-0.856476262,148.9232105,0.991621266,0,832.5544092,90.53086518,891.8050498,9,13,7% -2018-09-26 22:00:00,48.07633122,222.1190414,657.0004996,837.9473001,97.13441388,813.7447133,714.5865131,99.1582002,94.20545291,4.952747284,162.2263386,0,162.2263386,2.928960966,159.2973776,0.839090272,3.876708604,0.984327818,-0.984327818,0.361823719,0.361823719,0.147845266,2.259319795,72.66749097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55386462,2.122022249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.636869501,69.85075637,92.19073412,71.97277862,714.5865131,0,0.852782165,31.48442509,-0.852782165,148.5155749,0.99136838,0,800.6092078,71.97277862,847.713952,9,14,6% -2018-09-26 23:00:00,57.12918426,237.220153,511.4029148,782.609997,86.64391407,706.2738085,618.3873569,87.88645157,84.03128038,3.855171189,126.6081912,0,126.6081912,2.612633691,123.9955575,0.997092364,4.140272721,1.509156747,-1.509156747,0.272072686,0.272072686,0.169423974,1.524338637,49.02797045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77406299,1.892844216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.104378154,47.12755007,81.87844114,49.02039428,618.3873569,0,0.790160309,37.79950488,-0.790160309,142.2004951,0.986721701,0,692.054666,49.02039428,724.1375337,9,15,5% -2018-09-26 00:00:00,67.70283371,249.2376097,324.3719958,669.7757849,70.25209702,521.3032105,450.7242202,70.57899021,68.13373709,2.445253119,80.76610575,0,80.76610575,2.118359928,78.64774582,1.181637361,4.350016908,2.438379591,-2.438379591,0.113166221,0.113166221,0.216578798,0.74637834,24.00609307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.49273968,1.534744556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.540748567,23.07556978,66.03348825,24.61031433,450.7242202,0,0.672947918,47.70500368,-0.672947918,132.2949963,0.975700045,0,505.8051303,24.61031433,521.9120888,9,16,3% -2018-09-26 01:00:00,79.06855602,259.4174389,118.556738,405.7935134,41.60436328,247.9897296,206.7461606,41.24356899,40.34983822,0.893730769,29.99997878,0,29.99997878,1.254525057,28.74545372,1.380006637,4.527688446,5.107840061,-5.107840061,0,0,0.35092365,0.313631264,10.08745956,0.255585937,1,0.193332157,0,0.939786363,0.978548326,0.724496596,1,39.0845203,0.908899133,0.039002006,0.312029739,0.89535716,0.619853756,0.961238037,0.922476074,0.216489798,9.69644982,39.3010101,10.60534895,153.9047494,0,0.509486115,59.37039383,-0.509486115,120.6296062,0.951861899,0,185.797077,10.60534895,192.7380658,9,17,4% -2018-09-26 02:00:00,90.93369599,268.7498884,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587092396,4.690570417,-58.1027803,58.1027803,1,0,#DIV/0!,0,0,1,0.894362265,0,0.017209181,0.961238037,1,0.676853572,0.952356976,0,0,0.115824807,0.257919453,0.724496596,0.448993192,0.969499985,0.930738022,0,0,0,0,0,0,0.308513772,72.03031371,-0.308513772,107.9696863,0.887932681,0,0,0,0,9,18,0% -2018-09-26 03:00:00,102.757231,278.0606707,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79345201,4.853074225,-3.897582514,3.897582514,1,0.803320445,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086861765,85.0169078,-0.086861765,94.9830922,0,0,0,0,0,9,19,0% -2018-09-26 04:00:00,114.2950913,288.1901728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994825663,5.029867387,-1.741112677,1.741112677,1,0.827901493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141615137,98.14131806,0.141615137,81.85868194,0,0.696930399,0,0,0,9,20,0% -2018-09-26 05:00:00,125.1107962,300.1920705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183595324,5.239340018,-0.910570488,0.910570488,1,0.685870414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.361349172,111.1830764,0.361349172,68.81692357,0,0.911629682,0,0,0,9,21,0% -2018-09-26 06:00:00,134.4945033,315.4914499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347371909,5.506364563,-0.422214102,0.422214102,1,0.602356553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557369531,123.8740778,0.557369531,56.12592225,0,0.960292908,0,0,0,9,22,0% -2018-09-26 07:00:00,141.2537425,335.5611257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465342887,5.856646485,-0.062108141,0.062108141,1,0.540774807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716322753,135.7517087,0.716322753,44.2482913,0,0.980199062,0,0,0,9,23,0% -2018-09-27 08:00:00,143.8072049,359.9826203,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509909214,6.282881975,0.25004629,-0.25004629,1,0.487393256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827382731,145.8308124,0.827382731,34.16918756,0,0.989568475,0,0,0,9,0,0% -2018-09-27 09:00:00,141.2910932,24.42479708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46599478,0.426293128,0.560962387,-0.560962387,1,0.434223472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88298842,152.0049831,0.88298842,27.99501689,0,0.993374116,0,0,0,9,1,0% -2018-09-27 10:00:00,134.5598665,44.53495392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348512711,0.777281578,0.916826364,-0.916826364,1,0.373367147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879359063,151.5651439,0.879359063,28.43485608,0,0.993140405,0,0,0,9,2,0% -2018-09-27 11:00:00,125.1958728,59.87083693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185080191,1.04494323,1.395708939,-1.395708939,1,0.291473404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816751842,144.7609501,0.816751842,35.23904986,0,0.988781895,0,0,0,9,3,0% -2018-09-27 12:00:00,114.3962051,71.90178519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99659043,1.25492289,2.203661451,-2.203661451,1,0.153305387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699444447,134.3824489,0.699444447,45.6175511,0,0.978514694,0,0,0,9,4,0% -2018-09-27 13:00:00,102.8743119,82.05625044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795495459,1.432151742,4.278737762,-4.278737762,1,0,#DIV/0!,0,0,0.167744134,1,0.229592711,0,0.934817463,0.973579426,0.724496596,1,0,0,0.026583989,0.312029739,0.927379003,0.651875599,0.961238037,0.922476074,0,0,0,0,0,0,-0.53544367,122.374005,0.53544367,57.62599499,0,0.956619496,0,0,0,9,5,0% -2018-09-27 14:00:00,91.06929335,91.39114752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589459016,1.595076431,49.88584696,-49.88584696,1,0,#DIV/0!,0,0,0.888899117,1,0.020043081,0,0.959422434,0.998184398,0.724496596,1,0,0,0.106819402,0.312029739,0.742080345,0.466576941,0.961238037,0.922476074,0,0,0,0,0,0,-0.335939838,109.6296991,0.335939838,70.37030089,0,0.901163826,0,0,0,9,6,0% -2018-09-27 15:00:00,79.22647352,100.7486982,116.0371913,401.6850991,40.95122857,40.5911353,0,40.5911353,39.71639794,0.874737362,74.8011467,45.4317556,29.3693911,1.234830635,28.13456047,1.382762818,1.758396501,-4.516563971,4.516563971,0.697468382,0.697468382,0.352914683,0.70349548,22.6268329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17691238,0.894630592,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.509680081,21.74977244,38.68659246,22.64440303,0,45.4317556,-0.113102915,96.49421615,0.113102915,83.50578385,0,0.607924745,38.68659246,50.26349145,71.58304235,9,7,85% -2018-09-27 16:00:00,67.8926737,110.9541223,321.1769193,668.2746832,69.6765983,146.401612,76.4048529,69.99675907,67.57559178,2.421167284,79.97406907,0,79.97406907,2.101006518,77.87306255,1.184950694,1.936514753,-1.859236624,1.859236624,0.848101878,0.848101878,0.216941486,2.133181256,68.61044196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95622918,1.52217207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.545482559,65.95096654,66.50171174,67.47313861,76.4048529,0,0.114331509,83.43493098,-0.114331509,96.56506902,0.612675237,0,113.3130731,67.47313861,157.4728929,9,8,39% -2018-09-27 17:00:00,57.36102674,122.9915961,507.7670165,781.883811,86.06290396,348.0183462,260.7227941,87.29555212,83.46778987,3.827762252,125.709106,0,125.709106,2.595114093,123.1139919,1.001138779,2.146608305,-0.939806046,0.939806046,0.690869989,0.690869989,0.1694929,2.845042976,91.50636189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.23241448,1.880151326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061223951,87.95939566,82.29363843,89.83954699,260.7227941,0,0.333454652,70.5214065,-0.333454652,109.4785935,0.900054574,0,316.9583816,89.83954699,375.7565683,9,9,19% -2018-09-27 18:00:00,48.36229773,138.0872679,652.9753396,837.4863792,96.53419603,541.5389928,442.9932551,98.54573777,93.62333384,4.922403928,161.2322931,0,161.2322931,2.910862183,158.321431,0.844081329,2.41007748,-0.419781771,0.419781771,0.6019406,0.6019406,0.14783743,3.252668789,104.6170092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.99430963,2.108909743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.356547465,100.5618486,92.35085709,102.6707583,442.9932551,0,0.528955773,58.06507227,-0.528955773,121.9349277,0.955474139,0,515.6194559,102.6707583,582.8154138,9,10,13% -2018-09-27 19:00:00,42.0170669,157.315951,744.619195,864.1839445,102.5776429,699.1550247,594.0572222,105.0978025,99.48454846,5.61325402,183.6346391,0,183.6346391,3.093094403,180.5415447,0.733336159,2.745681311,-0.042189709,0.042189709,0.537368555,0.537368555,0.137758526,3.374126884,108.5235191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.62833206,2.240936366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444543442,104.3169344,98.0728755,106.5578708,594.0572222,0,0.687419879,46.57378467,-0.687419879,133.4262153,0.977264251,0,678.6237616,106.5578708,748.3637569,9,11,10% -2018-09-27 20:00:00,39.68788919,180.0504495,775.7086491,872.1544027,104.5556977,803.2378566,695.9872796,107.2505771,101.4029576,5.847619457,191.2322829,0,191.2322829,3.152740054,188.0795428,0.69268434,3.142473163,0.284515014,-0.284515014,0.481498757,0.481498757,0.13478733,3.224296408,103.7044559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.47237989,2.284149437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335991771,99.68466761,99.80837166,101.9688171,695.9872796,0,0.798009249,37.05958209,-0.798009249,142.9404179,0.987344085,0,786.9872951,101.9688171,853.7238465,9,12,8% -2018-09-27 21:00:00,42.06757913,202.7609062,743.9291801,864.0013762,102.5333661,842.1886188,737.1389596,105.0496592,99.44160684,5.608052397,183.4660019,0,183.4660019,3.091759297,180.3742426,0.734217764,3.538845407,0.612772346,-0.612772346,0.425363447,0.425363447,0.137826784,2.829619973,91.0103051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58705494,2.239969086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050050038,87.48256701,97.63710498,89.72253609,737.1389596,0,0.853168733,31.44199064,-0.853168733,148.5580094,0.991394946,0,828.4329438,89.72253609,887.1545492,9,13,7% -2018-09-27 22:00:00,48.45132338,221.9401499,651.6214596,837.0511374,96.44218888,809.2158578,710.769559,98.44629886,93.53410105,4.912197808,160.9012549,0,160.9012549,2.908087828,157.9931671,0.84563512,3.873586358,0.995729998,-0.995729998,0.359873831,0.359873831,0.148003396,2.233157226,71.8260128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90853567,2.106899732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.617914808,69.04189554,91.52645048,71.14879527,710.769559,0,0.849135169,31.88227018,-0.849135169,148.1177298,0.99111656,0,795.9819305,71.14879527,842.547394,9,14,6% -2018-09-27 23:00:00,57.47644663,236.9892189,505.8050455,780.9850297,85.91135928,701.1443108,614.0105239,87.13378691,83.32081482,3.812972086,125.2288337,0,125.2288337,2.590544462,122.6382893,1.003153236,4.136242162,1.528001661,-1.528001661,0.268850016,0.268850016,0.169850736,1.498636742,48.20130914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09113647,1.876840644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085757218,46.33293177,81.17689369,48.20977242,614.0105239,0,0.78620012,38.1681887,-0.78620012,141.8318113,0.986402961,0,686.8386923,48.20977242,718.3910241,9,15,5% -2018-09-27 00:00:00,68.02747463,248.9896348,318.7152821,666.2659586,69.42391542,515.2817488,445.5486102,69.73313864,67.33052822,2.402610423,79.36959731,0,79.36959731,2.093387197,77.27621011,1.187303414,4.345688931,2.478122665,-2.478122665,0.106369755,0.106369755,0.217824244,0.723243611,23.26200065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72066477,1.516651898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523987534,22.36031984,65.2446523,23.87697174,445.5486102,0,0.66872486,48.03127495,-0.66872486,131.968725,0.975230834,0,499.7573951,23.87697174,515.3843955,9,16,3% -2018-09-27 01:00:00,79.37754897,259.1646565,113.4510473,396.2100464,40.41507631,240.1723899,200.1207353,40.05165456,39.19641265,0.855241916,28.72618356,0,28.72618356,1.218663667,27.5075199,1.385399582,4.523276561,5.263833705,-5.263833705,0,0,0.356233612,0.304665917,9.799103162,0.270080926,1,0.187738403,0,0.940527211,0.979289174,0.724496596,1,37.97428053,0.882917678,0.040962699,0.312029739,0.890412371,0.614908967,0.961238037,0.922476074,0.210011451,9.419270686,38.18429198,10.30218836,146.0719419,0,0.505087484,59.66284011,-0.505087484,120.3371599,0.951007248,0,177.0997674,10.30218836,183.8423437,9,17,4% -2018-09-27 02:00:00,91.23945077,268.4947184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592428824,4.686116861,-43.83243274,43.83243274,1,0,#DIV/0!,0,0,1,0.857670314,0,0.0228102,0.961238037,1,0.661847393,0.937350797,0,0,0.115824807,0.240897175,0.724496596,0.448993192,0.97197201,0.933210047,0,0,0,0,0,0,0.303953592,72.30477942,-0.303953592,107.6952206,0.885501204,0,0,0,0,9,18,0% -2018-09-27 03:00:00,103.065948,277.8026472,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798840139,4.848570864,-3.811427535,3.811427535,1,0.818053814,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082266027,85.28117102,-0.082266027,94.71882898,0,0,0,0,0,9,19,0% -2018-09-27 04:00:00,114.6156893,287.9307657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000421153,5.02533988,-1.721542788,1.721542788,1,0.824554845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146156254,98.40424103,0.146156254,81.59575897,0,0.707900373,0,0,0,9,20,0% -2018-09-27 05:00:00,125.4526933,299.9421177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189562553,5.23497752,-0.903817038,0.903817038,1,0.684715506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365749294,111.4537028,0.365749294,68.5462972,0,0.913294336,0,0,0,9,21,0% -2018-09-27 06:00:00,134.8651939,315.287163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353841679,5.502799084,-0.420042538,0.420042538,1,0.601985194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561552034,124.1631994,0.561552034,55.83680064,0,0.960961056,0,0,0,9,22,0% -2018-09-27 07:00:00,141.6490479,335.4853534,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472242267,5.85532401,-0.062278258,0.062278258,1,0.540803899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720226034,136.0731454,0.720226034,43.92685462,0,0.98057735,0,0,0,9,23,0% -2018-09-28 08:00:00,144.1961157,0.127288371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516696988,0.002221601,0.248213202,-0.248213202,1,0.487706732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830964435,146.1979367,0.830964435,33.80206334,0,0.989828953,0,0,0,9,0,0% -2018-09-28 09:00:00,141.6305915,24.75842864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.471920144,0.432116097,0.557466138,-0.557466138,1,0.434821365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886228348,152.4030633,0.886228348,27.59693674,0,0.993581132,0,0,0,9,1,0% -2018-09-28 10:00:00,134.8360688,44.93821658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353333352,0.784319839,0.911049962,-0.911049962,1,0.37435497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882260545,151.9162656,0.882260545,28.08373442,0,0.993327399,0,0,0,9,2,0% -2018-09-28 11:00:00,125.4214139,60.27275335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189016624,1.051957995,1.385809446,-1.385809446,1,0.293166317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819341503,145.0189299,0.819341503,34.98107013,0,0.988975385,0,0,0,9,3,0% -2018-09-28 12:00:00,114.5890942,72.28438528,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999956981,1.261600521,2.183551637,-2.183551637,1,0.156744368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701770355,134.569213,0.701770355,45.43078701,0,0.978751621,0,0,0,9,4,0% -2018-09-28 13:00:00,103.0501451,82.42265874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798564327,1.438546773,4.213237583,-4.213237583,1,0,#DIV/0!,0,0,0.159912624,1,0.233035122,0,0.934330887,0.97309285,0.724496596,1,0,0,0.0254301,0.312029739,0.93041614,0.654912736,0.961238037,0.922476074,0,0,0,0,0,0,-0.537572022,122.5185083,0.537572022,57.48149171,0,0.956989207,0,0,0,9,5,0% -2018-09-28 14:00:00,91.24112839,91.75021628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592458104,1.601343364,42.87103871,-42.87103871,1,0,#DIV/0!,0,0,0.871815015,1,0.023321541,0,0.959116245,0.997878208,0.724496596,1,0,0,0.105373808,0.312029739,0.744963817,0.469460413,0.961238037,0.922476074,0,0,0,0,0,0,-0.33795039,109.7520499,0.33795039,70.24795014,0,0.90204929,0,0,0,9,6,0% -2018-09-28 15:00:00,79.4050459,101.1098608,113.1712201,396.7523693,40.22243094,39.86270871,0,39.86270871,39.00957624,0.853132461,74.30344923,45.65092196,28.65252726,1.212854698,27.43967256,1.385879494,1.764699978,-4.577176967,4.577176967,0.687102949,0.687102949,0.355412188,0.681064494,21.90537529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.49748849,0.8787091,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.493428908,21.05627994,37.9909174,21.93498904,0,45.65092196,-0.115061498,96.60717217,0.115061498,83.39282783,0,0.615449774,37.9909174,50.03083863,70.73510066,9,7,86% -2018-09-28 16:00:00,68.09296224,111.3246837,317.7875257,666.5924155,69.08073046,144.2501745,74.85686631,69.39330816,66.99769156,2.395616603,79.13430374,0,79.13430374,2.083038904,77.05126483,1.188446389,1.94298227,-1.867457897,1.867457897,0.849507798,0.849507798,0.217380246,2.113465264,67.97630788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40072951,1.509154595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.531198389,65.34141274,65.9319279,66.85056734,74.85686631,0,0.112297807,83.55220892,-0.112297807,96.44779108,0.604755329,0,111.2020167,66.85056734,154.9543761,9,8,39% -2018-09-28 17:00:00,57.59673901,123.3715425,504.0554452,781.1141744,85.47600492,345.460105,258.7617341,86.69837086,82.898588,3.79978286,124.7914954,0,124.7914954,2.577416921,122.2140784,1.005252734,2.15323962,-0.940010009,0.940010009,0.690904869,0.690904869,0.169576593,2.824455233,90.8441893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.68527599,1.867329786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308202,87.32289018,81.73158419,89.19021997,258.7617341,0,0.331272614,70.65396383,-0.331272614,109.3460362,0.899066908,0,314.3756963,89.19021997,372.7489115,9,9,19% -2018-09-28 18:00:00,48.64853726,138.4559708,648.9269708,837.0130007,95.93241657,538.6622702,440.7306843,97.93158587,93.03970025,4.891885614,160.2325734,0,160.2325734,2.892716312,157.3398571,0.849077151,2.416512559,-0.417236906,0.417236906,0.601505403,0.601505403,0.147832377,3.230678582,103.9097286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.43329882,2.095763121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.340615635,99.8819835,91.77391446,101.9777466,440.7306843,0,0.526551779,58.22723291,-0.526551779,121.7727671,0.955042577,0,512.6904829,101.9777466,579.4328786,9,10,13% -2018-09-28 19:00:00,42.36198733,157.6108338,740.2117207,863.7897955,101.9552455,695.927405,591.4664578,104.4609472,98.88091863,5.580028617,182.5472284,0,182.5472284,3.074326825,179.4729015,0.739356157,2.750827986,-0.038014533,0.038014533,0.536654558,0.536654558,0.137737951,3.350666619,107.7689563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.04810011,2.22733932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42754656,103.59162,97.47564667,105.8189593,591.4664578,0,0.68473425,46.785289,-0.68473425,133.214711,0.97697897,0,675.3259376,105.8189593,744.5823301,9,11,10% -2018-09-28 20:00:00,40.07670795,180.1808276,770.9382386,871.7221123,103.911133,799.6098118,693.0203248,106.5894871,100.777829,5.811658088,190.0562056,0,190.0562056,3.133304052,186.9229016,0.699470507,3.144748691,0.290264013,-0.290264013,0.48051562,0.48051562,0.134785289,3.199518118,102.9075009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87148248,2.270068119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318039985,98.91860417,99.18952246,101.1886723,693.0203248,0,0.795001429,37.3446094,-0.795001429,142.6553906,0.987107031,0,783.2747578,101.1886723,849.5007201,9,12,8% -2018-09-28 21:00:00,42.46337403,202.703605,738.8169624,863.4179955,101.8656907,838.1137691,733.7501905,104.3635786,98.79406424,5.569514341,182.2063527,0,182.2063527,3.071626418,179.1347263,0.741125688,3.537845312,0.620664117,-0.620664117,0.424013874,0.424013874,0.137876762,2.803854904,90.1816119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.96461236,2.225382883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031383333,86.68599558,96.99599569,88.91137846,733.7501905,0,0.849820359,31.80786404,-0.849820359,148.192136,0.991164036,0,824.2627959,88.91137846,882.4535149,9,13,7% -2018-09-28 22:00:00,48.82587026,221.7623582,646.2167202,836.1342282,95.74803395,804.6432946,706.9109626,97.73233206,92.86087746,4.8714546,159.5698819,0,159.5698819,2.887156496,156.6827254,0.852172196,3.870483307,1.007267282,-1.007267282,0.35790084,0.35790084,0.148167064,2.206957882,70.98335185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.26140755,2.091735053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598933473,68.23189778,90.86034102,70.32363283,706.9109626,0,0.84545153,32.2796541,-0.84545153,147.7203459,0.990860004,0,791.3101403,70.32363283,837.3355515,9,14,6% -2018-09-28 23:00:00,57.82328863,236.7593587,500.1929664,779.3255158,85.17696824,695.9756336,609.5963993,86.37923424,82.60856838,3.770665863,123.8459756,0,123.8459756,2.568399862,121.2775757,1.009206771,4.132230345,1.547153733,-1.547153733,0.265574819,0.265574819,0.170288217,1.472968287,47.3757234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.40649809,1.860796957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06716051,45.53934736,80.4736586,47.40014431,609.5963993,0,0.782210241,38.5366092,-0.782210241,141.4633908,0.986078566,0,681.5836021,47.40014431,712.6060486,9,15,5% -2018-09-28 00:00:00,68.35157205,248.7422473,313.0601305,662.6748759,68.59254759,509.2193664,440.3351577,68.88420871,66.5242292,2.359979501,77.97337152,0,77.97337152,2.06831839,75.90505313,1.192959981,4.341371204,2.518880828,-2.518880828,0.099399699,0.099399699,0.219103427,0.700263293,22.52287463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.94561948,1.498489632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.507338372,21.64984379,64.45295785,23.14833343,440.3351577,0,0.664481443,48.35744461,-0.664481443,131.6425554,0.974753354,0,493.6711296,23.14833343,508.8212509,9,16,3% -2018-09-28 01:00:00,79.68569749,258.9119255,108.3924087,386.3727757,39.21320824,232.2973497,193.4494566,38.84789309,38.03078533,0.817107762,27.46341731,0,27.46341731,1.18242291,26.2809944,1.390777788,4.518865573,5.428511448,-5.428511448,0,0,0.361770799,0.295605727,9.507696333,0.284782686,1,0.182170279,0,0.94125778,0.980019743,0.724496596,1,36.85110867,0.856661373,0.042926984,0.312029739,0.885488977,0.609985573,0.961238037,0.922476074,0.20350804,9.139159358,37.05461671,9.995820731,138.3584008,0,0.500680868,59.95494392,-0.500680868,120.0450561,0.950135988,0,168.5139126,9.995820731,175.0559774,9,17,4% -2018-09-28 02:00:00,91.54423365,268.2390594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597748288,4.681654769,-35.23041992,35.23041992,1,0,#DIV/0!,0,0,1,0.819979092,0,0.028376942,0.961238037,1,0.647177166,0.92268057,0,0,0.115824807,0.224268414,0.724496596,0.448993192,0.974326964,0.935565001,0,0,0,0,0,0,0.299395209,72.57871837,-0.299395209,107.4212816,0.88299666,0,0,0,0,9,18,0% -2018-09-28 03:00:00,103.3734599,277.5435258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804207235,4.844048343,-3.729470427,3.729470427,1,0.832069305,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077683825,85.54455574,-0.077683825,94.45544426,0,0,0,0,0,9,19,0% -2018-09-28 04:00:00,114.9349079,287.6694918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005992569,5.020779789,-1.702529544,1.702529544,1,0.821303389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150672822,98.66591959,0.150672822,81.33408041,0,0.718155151,0,0,0,9,20,0% -2018-09-28 05:00:00,125.7931833,299.6893279,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195505226,5.230565505,-0.89721807,0.89721807,1,0.683587016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37011534,111.7227308,0.37011534,68.27726924,0,0.914906977,0,0,0,9,21,0% -2018-09-28 06:00:00,135.2347284,315.0792188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360291274,5.499169773,-0.417926357,0.417926357,1,0.601623306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565693075,124.4504335,0.565693075,55.54956646,0,0.961612848,0,0,0,9,22,0% -2018-09-28 07:00:00,142.0437183,335.406799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.479130566,5.853952976,-0.062467511,0.062467511,1,0.540836263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724083114,136.3926271,0.724083114,43.60737293,0,0.980947154,0,0,0,9,23,0% -2018-09-29 08:00:00,144.5845906,0.272910222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523477154,0.004763182,0.246379448,-0.246379448,1,0.488020323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834498174,146.5636208,0.834498174,33.43637921,0,0.990083751,0,0,0,9,0,0% -2018-09-29 09:00:00,141.9692284,25.09534411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.477830471,0.437996382,0.553983766,-0.553983766,1,0.435416886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889421642,152.8006604,0.889421642,27.19933963,0,0.993783693,0,0,0,9,1,0% -2018-09-29 10:00:00,135.1112036,45.34391029,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813536,0.79140053,0.905307151,-0.905307151,1,0.375337049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88511973,152.2662589,0.88511973,27.7337411,0,0.993510467,0,0,0,9,2,0% -2018-09-29 11:00:00,125.6461421,60.67574904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192938871,1.058991597,1.375987312,-1.375987312,1,0.294846001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821895906,145.275034,0.821895906,34.72496602,0,0.989165046,0,0,0,9,3,0% -2018-09-29 12:00:00,114.7816284,72.66716828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003317336,1.268281345,2.163675579,-2.163675579,1,0.160143374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704070264,134.7544809,0.704070264,45.24551907,0,0.978984361,0,0,0,9,4,0% -2018-09-29 13:00:00,103.2261193,82.78868466,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801635656,1.444935131,4.149247895,-4.149247895,1,0,#DIV/0!,0,0,0.152118066,1,0.236497423,0,0.933838926,0.972600889,0.724496596,1,0,0,0.024273718,0.312029739,0.933470338,0.657966934,0.961238037,0.922476074,0,0,0,0,0,0,-0.539685211,122.6622123,0.539685211,57.33778767,0,0.9573534,0,0,0,9,5,0% -2018-09-29 14:00:00,91.41358122,92.10845263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595467973,1.607595767,37.5445203,-37.5445203,1,0,#DIV/0!,0,0,0.854869226,1,0.026628749,0,0.958804755,0.997566719,0.724496596,1,0,0,0.103923116,0.312029739,0.747874359,0.472370955,0.961238037,0.922476074,0,0,0,0,0,0,-0.339957447,109.8742815,0.339957447,70.12571846,0,0.902922769,0,0,0,9,6,0% -2018-09-29 15:00:00,79.5846238,101.4696871,110.2975141,391.6895799,39.4866595,39.12746028,0,39.12746028,38.29599103,0.831469251,73.7720265,45.83844875,27.93357775,1.190668474,26.74290928,1.389013719,1.770980131,-4.640162643,4.640162643,0.676331764,0.676331764,0.358001355,0.658694457,21.18587798,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.81156324,0.862635256,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.477221892,20.36467176,37.28878513,21.22730701,0,45.83844875,-0.117027491,96.72058148,0.117027491,83.27941852,0,0.622749962,37.28878513,49.77319921,69.86434855,9,7,87% -2018-09-29 16:00:00,68.29465736,111.6931868,314.3687801,664.8601814,68.48128262,142.0837847,73.29762073,68.78616393,66.41631928,2.369844655,78.28731372,0,78.28731372,2.06496334,76.22235038,1.191966633,1.949413862,-1.875908478,1.875908478,0.850952933,0.850952933,0.217837416,2.093570442,67.336422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.84189236,1.49605891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.516784658,64.72633009,65.35867702,66.222389,73.29762073,0,0.110245165,83.67055153,-0.110245165,96.32944847,0.596465373,0,109.0781697,66.222389,152.4193989,9,8,40% -2018-09-29 17:00:00,57.83406558,123.748315,500.3063078,780.3177657,84.88614154,342.871105,256.7730736,86.09803146,82.32651118,3.771520279,123.864687,0,123.864687,2.559630364,121.3050567,1.009394864,2.15981554,-0.940260767,0.940260767,0.690947751,0.690947751,0.169668342,2.803688334,90.17625443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13537399,1.854443485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031262654,86.68084578,81.16663664,88.53528926,256.7730736,0,0.329062191,70.78813581,-0.329062191,109.2118642,0.898053039,0,311.7624756,88.53528926,369.7070517,9,9,19% -2018-09-29 18:00:00,48.93624727,138.8200057,644.837102,836.5209691,95.32782894,535.7452459,438.4308482,97.31439763,92.45334317,4.861054456,159.2227068,0,159.2227068,2.874485765,156.3482211,0.854098638,2.422866167,-0.414694142,0.414694142,0.601070564,0.601070564,0.147832419,3.208515991,103.1969035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86967009,2.082555151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.324558914,99.19678892,91.19422901,101.2793441,438.4308482,0,0.524112203,58.39150357,-0.524112203,121.6084964,0.95460058,0,509.7205712,101.2793441,576.0058763,9,10,13% -2018-09-29 19:00:00,42.70768428,157.900181,735.7624098,863.3802645,101.3301841,692.6539134,588.8327204,103.8211931,98.27470522,5.546487832,181.4495935,0,181.4495935,3.05547892,178.3941146,0.745389707,2.755878048,-0.033820028,0.033820028,0.535937255,0.535937255,0.137721339,3.327052947,107.0094594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46538472,2.213684077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410438535,102.8615627,96.87582325,105.0752468,588.8327204,0,0.682008548,46.99920187,-0.682008548,133.0007981,0.976687136,0,671.9811664,105.0752468,740.7508139,9,11,10% -2018-09-29 20:00:00,40.46535616,180.3074393,766.1290926,871.2753088,103.2641318,795.9340111,690.0082692,105.9257419,100.1503372,5.775404714,188.870663,0,188.870663,3.113794577,185.7568684,0.706253698,3.146958482,0.296052308,-0.296052308,0.479525763,0.479525763,0.134786856,3.174617817,102.1066217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.2683135,2.255933571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.299999802,98.14876857,98.56831331,100.4047021,690.0082692,0,0.791952053,37.63169013,-0.791952053,142.3683099,0.986864865,0,779.5132305,100.4047021,845.2261,9,12,8% -2018-09-29 21:00:00,42.8585645,202.645767,733.672315,862.8188618,101.195895,833.9927443,730.3175471,103.6751972,98.14446537,5.530731815,180.9387765,0,180.9387765,3.051429607,177.8873469,0.748023063,3.53683585,0.628625768,-0.628625768,0.422652352,0.422652352,0.137930644,2.778010736,89.35037462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.34019322,2.210750363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012659322,85.88697869,96.35285254,88.09772906,730.3175471,0,0.846432061,32.17430451,-0.846432061,147.8256955,0.990928514,0,820.0453339,88.09772906,877.7035356,9,13,7% -2018-09-29 22:00:00,49.19983844,221.5855697,640.7887217,835.1968585,95.05210324,800.0289021,703.0124344,97.01646767,92.18593162,4.830536054,158.232816,0,158.232816,2.866171617,155.3666444,0.858699172,3.867397767,1.018938063,-1.018938063,0.355905018,0.355905018,0.148336105,2.180733712,70.13989241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.61262393,2.07653158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.579934151,67.42113249,90.19255809,69.49766407,703.0124344,0,0.841732613,32.6764659,-0.841732613,147.3235341,0.990598714,0,786.5957713,69.49766407,832.0806025,9,14,6% -2018-09-29 23:00:00,58.1695686,236.5305138,494.5694587,777.6317665,84.44092594,690.7701605,605.1471666,85.62299395,81.89472047,3.728273486,122.4602967,0,122.4602967,2.546205471,119.9140912,1.015250497,4.128236247,1.566613913,-1.566613913,0.262246932,0.262246932,0.170736232,1.447346008,46.55162284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72032033,1.844717196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048597256,44.74719055,79.76891758,46.59190775,605.1471666,0,0.778192446,38.90462589,-0.778192446,141.0953741,0.985748541,0,676.2918541,46.59190775,706.7853259,9,15,5% -2018-09-29 00:00:00,68.67498217,248.4954166,307.4096497,659.0022711,67.75819338,503.1187614,435.0863438,68.03241764,65.71503385,2.31738379,76.57818816,0,76.57818816,2.043159532,74.53502863,1.198604553,4.337063196,2.560678792,-2.560678792,0.092251826,0.092251826,0.220416612,0.677451469,21.78916798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.16779013,1.480262125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.490811283,20.94457705,63.65860141,22.42483918,435.0863438,0,0.660219794,48.6833623,-0.660219794,131.3166377,0.974267645,0,487.5491488,22.42483918,502.2257576,9,16,3% -2018-09-29 01:00:00,79.99285068,258.6592308,103.385929,376.281805,37.99904099,224.3695068,186.7369103,37.6325965,36.8532297,0.779366803,26.21292674,0,26.21292674,1.145811287,25.06711545,1.396138622,4.514455218,5.602548352,-5.602548352,0,0,0.367545578,0.286452822,9.213307425,0.29968973,1,0.176630141,0,0.941977839,0.980739802,0.724496596,1,35.71532136,0.830136377,0.044894076,0.312029739,0.880589114,0.60508571,0.961238037,0.922476074,0.196979641,8.856181542,35.912301,9.68631792,130.773776,0,0.496268775,60.24655038,-0.496268775,119.7534496,0.949248144,0,160.0490652,9.68631792,166.3885666,9,17,4% -2018-09-29 02:00:00,91.84790026,267.9829022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603048271,4.677183982,-29.48097894,29.48097894,1,0,#DIV/0!,0,0,1,0.781262892,0,0.033907176,0.961238037,1,0.632844576,0.908347981,0,0,0.115824807,0.208034967,0.724496596,0.448993192,0.976568177,0.937806214,0,0,0,0,0,0,0.294841173,72.85198634,-0.294841173,107.1480137,0.880417172,0,0,0,0,9,18,0% -2018-09-29 03:00:00,103.6796203,277.2832951,0,0,0,0,0,0,0,0,0,0,0,0,0,1.809550742,4.83950646,-3.65144676,3.65144676,1,0.845412138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073117758,85.80691922,-0.073117758,94.19308078,0,0,0,0,0,9,19,0% -2018-09-29 04:00:00,115.2525973,287.4063254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011537295,5.016186668,-1.684059954,1.684059954,1,0.818144903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155162311,98.92620989,0.155162311,81.07379011,0,0.727756798,0,0,0,9,20,0% -2018-09-29 05:00:00,126.1321136,299.4336393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201420675,5.226102898,-0.890773567,0.890773567,1,0.682484941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374444959,111.990012,0.374444959,68.00998795,0,0.916469026,0,0,0,9,21,0% -2018-09-29 06:00:00,135.6029588,314.8674859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366718107,5.495474337,-0.415866974,0.415866974,1,0.601271131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56979058,124.7356236,0.56979058,55.26437644,0,0.962248462,0,0,0,9,22,0% -2018-09-29 07:00:00,142.4376303,335.3252688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486005627,5.852530006,-0.062677421,0.062677421,1,0.54087216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727892278,136.7099861,0.727892278,43.29001394,0,0.981308517,0,0,0,9,23,0% -2018-09-30 08:00:00,144.9725415,0.419338428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530248175,0.007318836,0.244543535,-0.244543535,1,0.488334282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837982647,146.9277012,0.837982647,33.07229878,0,0.990332893,0,0,0,9,0,0% -2018-09-30 09:00:00,142.3069441,25.43541824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.483724723,0.443931795,0.550513715,-0.550513715,1,0.4360103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89256744,153.1976647,0.89256744,26.80233534,0,0.993981824,0,0,0,9,1,0% -2018-09-30 10:00:00,135.3852445,45.75188097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362918275,0.798520962,0.899596071,-0.899596071,1,0.376313701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88793619,152.6150443,0.88793619,27.3849557,0,0.993689647,0,0,0,9,2,0% -2018-09-30 11:00:00,125.8700585,61.07967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196846951,1.066041348,1.366239667,-1.366239667,1,0.296512946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824415025,145.5292286,0.824415025,34.47077138,0,0.989350936,0,0,0,9,3,0% -2018-09-30 12:00:00,114.9738243,73.04999296,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006671788,1.274962896,2.144025959,-2.144025959,1,0.163503657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706344487,134.9382657,0.706344487,45.06173428,0,0.97921301,0,0,0,9,4,0% -2018-09-30 13:00:00,103.4022571,83.15419661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804709841,1.451314518,4.086707294,-4.086707294,1,0,#DIV/0!,0,0,0.144358977,1,0.239980253,0,0.93334145,0.972103413,0.724496596,1,0,0,0.023114655,0.312029739,0.93654216,0.661038756,0.961238037,0.922476074,0,0,0,0,0,0,-0.541783807,122.805153,0.541783807,57.19484696,0,0.957712266,0,0,0,9,5,0% -2018-09-30 14:00:00,91.5866731,92.46572803,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598488997,1.613831399,33.36160937,-33.36160937,1,0,#DIV/0!,0,0,0.83805714,1,0.029965601,0,0.958487816,0.997249779,0.724496596,1,0,0,0.102467051,0.312029739,0.750812704,0.4753093,0.961238037,0.922476074,0,0,0,0,0,0,-0.341961731,109.9964385,0.341961731,70.00356152,0,0.903784808,0,0,0,9,6,0% -2018-09-30 15:00:00,79.7652179,101.8280455,107.416594,386.4926806,38.74373366,38.3852188,0,38.3852188,37.57546714,0.809751658,73.20591552,45.99325217,27.21266335,1.168266519,26.04439683,1.392165681,1.777234666,-4.705678556,4.705678556,0.665127883,0.665127883,0.360686671,0.636393377,20.46859859,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.11896827,0.846405116,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.461064835,19.67519553,36.5800331,20.52160064,0,45.99325217,-0.119001612,96.83448631,0.119001612,83.16551369,0,0.629837626,36.5800331,49.4898814,68.97017068,9,7,89% -2018-09-30 16:00:00,68.49775664,112.0594936,310.9207566,663.076598,67.87821471,139.902209,71.72692095,68.17528809,65.83143609,2.343851997,77.43311578,0,77.43311578,2.046778617,75.38633716,1.195511384,1.955807122,-1.884601787,1.884601787,0.852439576,0.852439576,0.218313552,2.073498083,66.69082596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.27968039,1.482884141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502242303,64.10575862,64.78192269,65.58864276,71.72692095,0,0.108172904,83.78999784,-0.108172904,96.21000216,0.587777037,0,106.9413598,65.58864276,149.8678147,9,8,40% -2018-09-30 17:00:00,58.07297982,124.1217736,496.5199446,779.4941281,84.29332732,340.2510686,254.7565191,85.49454956,81.75157249,3.742977073,122.9287639,0,122.9287639,2.541754828,120.3870091,1.013564704,2.166333624,-0.940562969,0.940562969,0.69099943,0.69099943,0.169768261,2.782745948,89.50267531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58272105,1.84149272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016089967,86.03337591,80.59881102,87.87486863,254.7565191,0,0.326822884,70.92394949,-0.326822884,109.0760505,0.897011937,0,309.1184496,87.87486863,366.6307937,9,9,19% -2018-09-30 18:00:00,49.22536915,139.179255,640.7064671,836.0101475,94.7204779,532.7879041,436.0936821,96.69422199,91.86430601,4.829915985,158.2028727,0,158.2028727,2.85617189,155.3467008,0.859144767,2.429136251,-0.412156272,0.412156272,0.600636563,0.600636563,0.147837556,3.186186793,102.4787197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30346516,2.069286811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308381486,98.50644337,90.61184665,100.5757302,436.0936821,0,0.521636829,58.55788909,-0.521636829,121.4421109,0.954147872,0,506.7097055,100.5757302,572.5345094,9,10,13% -2018-09-30 19:00:00,43.05407109,158.1839289,731.2724443,862.9553703,100.7025314,689.334939,586.1563199,103.1786191,97.66597855,5.512640576,180.3420234,0,180.3420234,3.036552875,177.3054705,0.751435297,2.760830382,-0.029608405,0.029608405,0.535217025,0.535217025,0.137708637,3.303293609,106.2452775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.88025349,2.199972221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393224975,102.1270019,96.27347847,104.3269742,586.1563199,0,0.679242913,47.21549008,-0.679242913,132.7845099,0.976388632,0,668.5898458,104.3269742,736.8697639,9,11,10% -2018-09-30 20:00:00,40.85373329,180.4302291,761.2828563,870.8141166,102.614794,792.2113327,686.9518816,105.2594511,99.52057937,5.738871738,187.676057,0,187.676057,3.094214648,184.5818423,0.713032158,3.149101569,0.301877861,-0.301877861,0.478529535,0.478529535,0.134791941,3.149605012,101.3021239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.66296634,2.241747979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281878109,97.37545468,97.94484444,99.61720266,686.9518816,0,0.788861674,37.92073997,-0.788861674,142.07926,0.986617532,0,775.7036142,99.61720266,840.901081,9,12,8% -2018-09-30 21:00:00,43.25303419,202.5872926,728.4973268,862.2041944,100.5241074,829.8269549,726.8422996,102.9846552,97.49293467,5.491720568,179.6637839,0,179.6637839,3.031172733,176.6326111,0.754907858,3.535815279,0.636655292,-0.636655292,0.421279222,0.421279222,0.1379883,2.752098431,88.51694583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.71391713,2.196074326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993885945,85.08585524,95.70780308,87.28192956,726.8422996,0,0.843004829,32.54120422,-0.843004829,147.4587958,0.990688359,0,815.7820079,87.28192956,872.9062852,9,13,7% -2018-09-30 22:00:00,49.57309465,221.4096936,635.3399466,834.2393436,94.35455436,795.3746283,699.075751,96.2988773,91.50941641,4.789460886,156.8906637,0,156.8906637,2.845137945,154.0455258,0.865213722,3.864328149,1.0307406,-1.0307406,0.353886666,0.353886666,0.148510345,2.154496735,69.29602103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96233179,2.061292756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.56092555,66.60997122,89.52325734,68.67126398,699.075751,0,0.837979839,33.07259355,-0.837979839,146.9274064,0.990332693,0,781.8408287,68.67126398,826.7847976,9,14,6% -2018-09-30 23:00:00,58.51514552,236.3026293,488.9373268,775.9041372,83.70342098,685.5303342,600.6650641,84.8652701,81.179454,3.685816097,121.0724826,0,121.0724826,2.523966975,118.5485156,1.021281952,4.124258913,1.586382932,-1.586382932,0.258866231,0.258866231,0.171194581,1.421782609,45.72941607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.032779,1.828605482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.030076661,43.95685413,79.06285566,45.78545961,600.6650641,0,0.774148552,39.27209901,-0.774148552,140.727901,0.985412913,0,670.9659661,45.78545961,700.9316337,9,15,4% -2018-09-30 00:00:00,68.99756197,248.2491156,301.7669538,655.2479544,66.9210582,496.9826867,429.8046985,67.17798815,64.90314138,2.274846765,75.18480851,0,75.18480851,2.017916817,73.16689169,1.204234632,4.332764432,2.603541663,-2.603541663,0.084921843,0.084921843,0.221764038,0.654822081,21.06132906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.38736821,1.461973865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474416368,20.2449506,62.86178458,21.70692446,429.8046985,0,0.655942068,49.00887878,-0.655942068,130.9911212,0.973773756,0,481.3943203,21.70692446,495.6010682,9,16,3% -2018-09-30 01:00:00,80.29885801,258.4065605,98.436811,365.938197,36.77292181,216.3942077,179.9880669,36.4061408,35.66408254,0.742058261,24.97598376,0,24.97598376,1.10883927,23.86714449,1.401479458,4.510045289,5.786689157,-5.786689157,0,0,0.373568805,0.277209818,8.916020634,0.31480025,1,0.171120332,0,0.942687168,0.981449131,0.724496596,1,34.56729985,0.803350277,0.046863173,0.312029739,0.875714915,0.600211511,0.961238037,0.922476074,0.190426526,8.570418171,34.75772638,9.373768447,123.3277784,0,0.491853729,60.53750519,-0.491853729,119.4624948,0.948343762,0,151.7148556,9.373768447,157.8497996,9,17,4% -2018-09-30 02:00:00,92.15030722,267.7262411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.608326268,4.672704402,-25.3684089,25.3684089,1,0,#DIV/0!,0,0,1,0.741495667,0,0.039398708,0.961238037,1,0.61885084,0.894354244,0,0,0.115824807,0.192197498,0.724496596,0.448993192,0.978699162,0.939937199,0,0,0,0,0,0,0.290294023,73.12444044,-0.290294023,106.8755596,0.877760835,0,0,0,0,9,18,0% -2018-09-30 03:00:00,103.9842837,277.0219479,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81486812,4.834945091,-3.577113987,3.577113987,1,0.858123791,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.068570398,86.06812024,-0.068570398,93.93187976,0,0,0,0,0,9,19,0% -2018-09-30 04:00:00,115.5686082,287.1412461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017052724,5.011560163,-1.666121343,1.666121343,1,0.81507722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159622229,99.18496972,0.159622229,80.81503028,0,0.73676042,0,0,0,9,20,0% -2018-09-30 05:00:00,126.4693312,299.1749961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207306232,5.221588721,-0.88448338,0.88448338,1,0.681409256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378735847,112.2554,0.378735847,67.74459995,0,0.917981865,0,0,0,9,21,0% -2018-09-30 06:00:00,135.969736,314.6518373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373119576,5.491710559,-0.41386568,0.41386568,1,0.600928889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573842529,125.018614,0.573842529,54.98138597,0,0.962868082,0,0,0,9,22,0% -2018-09-30 07:00:00,142.8306586,335.2405693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.492865266,5.85105172,-0.062909407,0.062909407,1,0.540911832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731651863,137.0250549,0.731651863,42.97494511,0,0.981661487,0,0,0,9,23,0% -2018-10-01 08:00:00,145.3598791,0.566424087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53700849,0.009885965,0.242704073,-0.242704073,1,0.488648849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841416598,147.2900125,0.841416598,32.70998745,0,0.990576404,0,0,0,10,0,0% -2018-10-01 09:00:00,142.6436779,25.77852396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.489601837,0.449920119,0.547054553,-0.547054553,1,0.436601851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895664919,153.5939646,0.895664919,26.40603538,0,0.994175552,0,0,0,10,1,0% -2018-10-01 10:00:00,135.6581637,46.16197276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.367681614,0.805678414,0.89391503,-0.89391503,1,0.377285216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890709523,152.9625411,0.890709523,27.03745891,0,0.993864977,0,0,0,10,2,0% -2018-10-01 11:00:00,126.0931626,61.48436145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200740852,1.073104546,1.356563926,-1.356563926,1,0.298167595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826898843,145.7814797,0.826898843,34.21852027,0,0.989533112,0,0,0,10,3,0% -2018-10-01 12:00:00,115.1656961,73.43271788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010020582,1.281642706,2.124596146,-2.124596146,1,0.16682635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708593328,135.1205795,0.708593328,44.87942046,0,0.979437665,0,0,0,10,4,0% -2018-10-01 13:00:00,103.5785778,83.519063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807787217,1.457682638,4.025559145,-4.025559145,1,0,#DIV/0!,0,0,0.136634101,1,0.243484173,0,0.932838337,0.9716003,0.724496596,1,0,0,0.021952752,0.312029739,0.9396321,0.664128696,0.961238037,0.922476074,0,0,0,0,0,0,-0.543868347,122.9473643,0.543868347,57.0526357,0,0.958065986,0,0,0,10,5,0% -2018-10-01 14:00:00,91.76042121,92.82191421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601521473,1.620048021,29.98927312,-29.98927312,1,0,#DIV/0!,0,0,0.821374794,1,0.033332906,0,0.958165281,0.996927244,0.724496596,1,0,0,0.101005377,0.312029739,0.753779511,0.478276106,0.961238037,0.922476074,0,0,0,0,0,0,-0.343963913,110.118562,0.343963913,69.881438,0,0.904635914,0,0,0,10,6,0% -2018-10-01 15:00:00,79.94683393,102.1848052,104.5291121,381.1577062,37.99348781,37.63582858,0,37.63582858,36.84784398,0.7879846,72.6041159,46.11417865,26.48993726,1.145643839,25.34429342,1.395335479,1.783461297,-4.773893192,4.773893192,0.653462493,0.653462493,0.363472788,0.614170521,19.75383516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.41954921,0.830015061,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.444964452,18.98813773,35.86451366,19.81815279,0,46.11417865,-0.120984511,96.94892489,0.120984511,83.05107511,0,0.636723956,35.86451366,49.18015507,68.05194154,10,7,90% -2018-10-01 16:00:00,68.70225225,112.4234676,307.4436348,661.2403119,67.27149535,137.7053026,70.14465107,67.56065154,65.24301156,2.317639984,76.5717525,0,76.5717525,2.02848379,74.54326871,1.199080505,1.962159667,-1.893551398,1.893551398,0.85397005,0.85397005,0.218809199,2.053249979,66.03957734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.71406435,1.469629601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48757262,63.47975367,64.20163697,64.94938327,70.14465107,0,0.106080422,83.91058217,-0.106080422,96.08941783,0.57865949,0,104.791505,64.94938327,147.2995774,10,8,41% -2018-10-01 17:00:00,58.31344934,124.4917821,492.6968022,778.6428368,83.69758343,337.5998178,252.7118687,84.88794909,81.17379248,3.714156611,121.9838349,0,121.9838349,2.523790952,119.4600439,1.017761689,2.172791488,-0.940921222,0.940921222,0.691060695,0.691060695,0.169876449,2.761632205,88.82358476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02733693,1.828477953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.000793132,85.38060824,80.02813006,87.2090862,252.7118687,0,0.324554284,71.06142636,-0.324554284,108.9385736,0.895942567,0,306.4434503,87.2090862,363.5200531,10,9,19% -2018-10-01 18:00:00,49.51583884,139.533607,636.5359029,835.4804261,94.11041498,529.7903355,433.7192203,96.07111525,91.27263874,4.79847651,157.1732755,0,157.1732755,2.837776242,154.3354992,0.86421442,2.435320859,-0.409626059,0.409626059,0.600203871,0.600203871,0.147847772,3.163697167,101.755376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73473208,2.055959227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292087828,97.81113788,90.02681991,99.86709711,433.7192203,0,0.519125532,58.72638786,-0.519125532,121.2736121,0.953684182,0,503.6579799,99.86709711,569.0189976,10,10,13% -2018-10-01 19:00:00,43.40105686,158.4620204,726.7431002,862.5151562,100.0723658,685.9709775,583.4376663,102.5333112,97.05481474,5.478496467,179.2248296,0,179.2248296,3.017551056,176.2072786,0.757491341,2.765683994,-0.025381872,0.025381872,0.534494245,0.534494245,0.137699781,3.27939668,105.4766701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29277958,2.186205468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375911731,101.3881873,95.66869131,103.5743928,583.4376663,0,0.676437582,47.4341136,-0.676437582,132.5658864,0.97608335,0,665.1524831,103.5743928,732.9398517,10,11,10% -2018-10-01 20:00:00,41.24173605,180.5491493,756.4012552,870.3386835,101.963225,788.4427547,683.852025,104.5907297,98.88865755,5.702072167,186.4728091,0,186.4728091,3.074567438,183.3982416,0.719804083,3.151177117,0.307738609,-0.307738609,0.477527288,0.477527288,0.134800444,3.124489454,100.4943212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05553905,2.227513642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.263681974,96.59896404,97.31922102,98.82647768,683.852025,0,0.785730932,38.21166883,-0.785730932,141.7883312,0.986364985,0,771.8469131,98.82647768,836.5268662,10,12,8% -2018-10-01 21:00:00,43.64666564,202.5280907,723.294149,861.5742373,99.85046042,825.6178992,723.3258017,102.2920975,96.83960063,5.452496816,178.3819002,0,178.3819002,3.010859791,175.3710404,0.761778023,3.53478201,0.644750621,-0.644750621,0.41989484,0.41989484,0.13804959,2.726129102,87.68168294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.0859076,2.181357669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975071255,84.28296878,95.06097886,86.46432645,723.3258017,0,0.839539729,32.90845198,-0.839539729,147.091548,0.990443557,0,811.4743588,86.46432645,868.0635312,10,13,7% -2018-10-01 22:00:00,49.94550582,221.2346456,629.872918,833.2620292,93.65554841,790.6824939,695.1027577,95.57973619,90.83148807,4.748248115,155.5440417,0,155.5440417,2.824060337,152.7199814,0.871713523,3.861272986,1.042673025,-1.042673025,0.351846101,0.351846101,0.148689594,2.128259015,68.45212578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.31068128,2.0460221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.541916412,65.798787,88.85259769,67.8448091,695.1027577,0,0.834194687,33.4679236,-0.834194687,146.5320764,0.990061953,0,777.0473918,67.8448091,821.4504625,10,14,6% -2018-10-01 23:00:00,58.85987919,236.0756559,483.2993931,774.1430283,82.96464529,680.2586537,596.1523836,84.1062701,80.46295513,3.643314972,119.6832235,0,119.6832235,2.501690163,117.1815333,1.027298689,4.120297479,1.606461307,-1.606461307,0.255432626,0.255432626,0.171663045,1.39629073,44.9095096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34405303,1.812466007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011607881,43.16872885,78.35566091,44.98119485,596.1523836,0,0.770080414,39.63888951,-0.770080414,140.3611105,0.985071716,0,665.6085122,44.98119485,695.0478046,10,15,4% -2018-10-01 00:00:00,69.31916962,248.0033214,296.1351539,651.4118144,66.08135263,490.8139428,424.4927948,66.32114792,64.08875604,2.232391878,73.79399319,0,73.79399319,1.992596596,71.8013966,1.209847745,4.328474515,2.64749495,-2.64749495,0.077405388,0.077405388,0.223145924,0.632388881,20.33980024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.60455004,1.443629451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.458163592,19.55138965,62.06271363,20.9950191,424.4927948,0,0.651650439,49.33384621,-0.651650439,130.6661538,0.973271747,0,475.2095575,20.9950191,488.9503776,10,16,3% -2018-10-01 01:00:00,80.60356968,258.153907,93.55034705,355.3441003,35.53527164,208.3772862,173.2083121,35.16897412,34.46375209,0.705222032,23.75388428,0,23.75388428,1.071519551,22.68236473,1.40679768,4.505635655,5.98175755,-5.98175755,0,0,0.379851842,0.267879888,8.615938023,0.330112109,1,0.165643179,0,0.943385563,0.982147526,0.724496596,1,33.40749782,0.776312267,0.04883345,0.312029739,0.870868508,0.595365104,0.961238037,0.922476074,0.183849212,8.281967351,33.59134703,9.058279618,116.0301508,0,0.487438266,60.82765515,-0.487438266,119.1723448,0.947422908,0,143.5209699,9.058279618,149.4494327,10,17,4% -2018-10-01 02:00:00,92.45131267,267.4690757,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613579804,4.668216017,-22.28189722,22.28189722,1,0,#DIV/0!,0,0,1,0.700651012,0,0.044849387,0.961238037,1,0.605196688,0.880700093,0,0,0.115824807,0.176755607,0.724496596,0.448993192,0.980723571,0.941961607,0,0,0,0,0,0,0.285756278,73.39593976,-0.285756278,106.6040602,0.875025716,0,0,0,0,10,18,0% -2018-10-01 03:00:00,104.2873058,276.7594827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820156855,4.830364209,-3.506249106,3.506249106,1,0.870242399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064044281,86.32801984,-0.064044281,93.67198016,0,0,0,0,0,10,19,0% -2018-10-01 04:00:00,115.8827924,286.8742402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022536273,5.00690003,-1.648701298,1.648701298,1,0.812098217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164050134,99.44205928,0.164050134,80.55794072,0,0.745215123,0,0,0,10,20,0% -2018-10-01 05:00:00,126.8046837,298.9133494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213159238,5.217022125,-0.878347208,0.878347208,1,0.680359909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38298576,112.5187505,0.38298576,67.48124946,0,0.919446843,0,0,0,10,21,0% -2018-10-01 06:00:00,136.3349098,314.4321523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379493062,5.487876331,-0.411923628,0.411923628,1,0.600596779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577846963,125.2992516,0.577846963,54.70074844,0,0.9634719,0,0,0,10,22,0% -2018-10-01 07:00:00,143.2226764,335.1525088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.499707266,5.849514774,-0.063164762,0.063164762,1,0.5409555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735360266,137.3376669,0.735360266,42.66233309,0,0.982006117,0,0,0,10,23,0% -2018-10-02 08:00:00,145.7465118,0.71401862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543756504,0.012461976,0.240859802,-0.240859802,1,0.488964238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844798823,147.6503878,0.844798823,32.34961216,0,0.990814311,0,0,0,10,0,0% -2018-10-02 09:00:00,142.979367,26.1245335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495460717,0.455959125,0.543604997,-0.543604997,1,0.43719176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898713288,153.9894467,0.898713288,26.01055326,0,0.994364904,0,0,0,10,1,0% -2018-10-02 10:00:00,135.9299315,46.57402871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372424856,0.812870147,0.88826254,-0.88826254,1,0.378251849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893439343,153.3086667,0.893439343,26.69133334,0,0.994036492,0,0,0,10,2,0% -2018-10-02 11:00:00,126.3154508,61.88966828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204620512,1.080178484,1.346957835,-1.346957835,1,0.299810334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829347337,146.031752,0.829347337,33.96824799,0,0.989711629,0,0,0,10,3,0% -2018-10-02 12:00:00,115.3572542,73.81520166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013363901,1.288318307,2.105380261,-2.105380261,1,0.17011246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710817061,135.3014326,0.710817061,44.69856741,0,0.979658413,0,0,0,10,4,0% -2018-10-02 13:00:00,103.7550961,83.88315255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810868042,1.464037199,3.96575152,-3.96575152,1,0,#DIV/0!,0,0,0.128942443,1,0.247009643,0,0.932329481,0.971091444,0.724496596,1,0,0,0.020787885,0.312029739,0.942740564,0.66723716,0.961238037,0.922476074,0,0,0,0,0,0,-0.54593932,123.0888769,0.54593932,56.9111231,0,0.95841473,0,0,0,10,5,0% -2018-10-02 14:00:00,91.93483748,93.17688336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.604565611,1.626243401,27.21244311,-27.21244311,1,0,#DIV/0!,0,0,0.804818948,1,0.036731367,0,0.957837012,0.996598975,0.724496596,1,0,0,0.099537914,0.312029739,0.756775342,0.481271938,0.961238037,0.922476074,0,0,0,0,0,0,-0.345964594,110.2406893,0.345964594,69.75931069,0,0.905476541,0,0,0,10,6,0% -2018-10-02 15:00:00,80.12947155,102.5398363,101.6358729,375.6808376,37.23577661,36.8791547,0,36.8791547,36.11298056,0.766174141,71.96559647,46.20000632,25.76559014,1.12279605,24.64279409,1.398523106,1.789657758,-4.844986421,4.844986421,0.641304835,0.641304835,0.366364508,0.59203656,19.04193089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.71317054,0.813461916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.428928472,18.30382826,35.14209901,19.11729018,0,46.20000632,-0.122976744,97.06393029,0.122976744,82.93606971,0,0.643419063,35.14209901,48.84325494,67.10903251,10,7,91% -2018-10-02 16:00:00,68.90812989,112.7849744,303.937719,659.3500187,66.66110396,135.4930256,68.55078893,66.94223664,64.65102573,2.29121091,75.70329709,0,75.70329709,2.010078238,73.69321885,1.202673748,1.968469151,-1.902770923,1.902770923,0.855546681,0.855546681,0.219324881,2.032828508,65.38275263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14502505,1.456294841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472777334,62.84838878,63.61780238,64.30468362,68.55078893,0,0.103967221,84.032333,-0.103967221,95.967667,0.56907919,0,102.6286298,64.30468362,144.7147592,10,8,41% -2018-10-02 17:00:00,58.55543505,124.8582076,488.8374512,777.7635091,83.09894015,334.9172924,250.6390287,84.27826369,80.5932005,3.685063193,121.0300393,0,121.0300393,2.505739648,118.5242996,1.021985137,2.179186822,-0.941340031,0.941340031,0.691132316,0.691132316,0.16999299,2.740351759,88.13913246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46924983,1.815399845,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.985375521,84.72268666,79.45462535,86.5380865,250.6390287,0,0.322256092,71.20058125,-0.322256092,108.7994187,0.894843895,0,303.73743,86.5380865,360.3748769,10,9,19% -2018-10-02 18:00:00,49.80758603,139.8829562,632.3263631,834.9317284,93.49769951,526.7527542,431.3076121,95.44514212,90.6783989,4.766743221,156.1341482,0,156.1341482,2.81930061,153.3148475,0.869306369,2.441418153,-0.407106204,0.407106204,0.599772951,0.599772951,0.147863042,3.141053738,101.0270855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16352614,2.042573695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275682741,97.11107735,89.43920888,99.15365105,431.3076121,0,0.516578299,58.89699084,-0.516578299,121.1030092,0.953209252,0,500.5656151,99.15365105,565.4596967,10,10,13% -2018-10-02 19:00:00,43.74854582,158.7344064,722.1757574,862.0596931,99.43977229,682.5626448,580.6772827,101.8853622,96.44129626,5.444065907,178.0983495,0,178.0983495,2.998476028,175.0998734,0.763556167,2.770438028,-0.021142609,0.021142609,0.533769289,0.533769289,0.137694697,3.25537059,104.7039084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.70304229,2.172385675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.35850491,100.6453794,95.0615472,102.8177651,580.6772827,0,0.673592893,47.65502463,-0.673592893,132.3449754,0.975771188,0,661.6697093,102.8177651,728.9618802,10,11,10% -2018-10-02 20:00:00,41.62925808,180.6641607,751.4860998,869.8491823,101.3095353,784.6293654,680.7096667,103.9196987,98.25467904,5.665019649,185.2613616,0,185.2613616,3.054856282,182.2065053,0.726567619,3.153184444,0.313632481,-0.313632481,0.476519377,0.476519377,0.134812254,3.099281149,99.68353546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.44613479,2.213232978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245418642,95.81960593,96.69155344,98.03283891,680.7096667,0,0.782560564,38.5043802,-0.782560564,141.4956198,0.986107182,0,767.9442443,98.03283891,832.1047767,10,12,8% -2018-10-02 21:00:00,44.0393402,202.46808,718.0649953,860.9292605,99.17509082,821.3671689,719.7694957,101.5976732,96.18459592,5.413077247,177.0936665,0,177.0936665,2.990494905,174.1031716,0.768631487,3.533734627,0.652909634,-0.652909634,0.418499566,0.418499566,0.138114365,2.700114001,86.84494786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45629215,2.166603379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956223402,83.4786672,94.41251556,85.64527057,719.7694957,0,0.836037905,33.27593282,-0.836037905,146.7240672,0.990194099,0,807.124023,85.64527057,863.1771397,10,13,7% -2018-10-02 22:00:00,50.31693917,221.0603501,624.3901967,832.2652923,92.9552498,785.9545919,691.0953688,94.85922309,90.15230605,4.706917046,154.1935759,0,154.1935759,2.80294375,151.3906321,0.878196258,3.858230955,1.054733354,-1.054733354,0.349783663,0.349783663,0.148873654,2.102032641,67.60859542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.65782568,2.030723205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.522915493,64.98795354,88.18074117,67.01867674,691.0953688,0,0.830378697,33.86234101,-0.830378697,146.137659,0.989786509,0,772.2176138,67.01867674,816.0799974,10,14,6% -2018-10-02 23:00:00,59.20363057,235.8495501,477.6584914,772.3488856,82.22479378,674.95767,591.6114656,83.34620434,79.74541287,3.600791472,118.2932123,0,118.2932123,2.47938091,115.8138314,1.033298283,4.116351189,1.626849343,-1.626849343,0.251946067,0.251946067,0.172141384,1.370882909,44.09230674,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.65432411,1.796303029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993200001,42.38320237,77.64752411,44.1795054,591.6114656,0,0.765989926,40.00485923,-0.765989926,139.9951408,0.98472499,0,660.2221187,44.1795054,689.1367214,10,15,4% -2018-10-02 00:00:00,69.63966489,247.7580169,290.5173482,647.4938184,65.23929197,484.6153703,419.1532412,65.4621291,63.27208661,2.190042485,72.40649991,0,72.40649991,1.96720536,70.43929455,1.215441442,4.324193143,2.692564596,-2.692564596,0.069698025,0.069698025,0.224562465,0.610165394,19.6250165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.81953632,1.425233587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.442062751,18.86431233,61.26159907,20.28954592,419.1532412,0,0.647347093,49.65811859,-0.647347093,130.3418814,0.972761683,0,468.9978114,20.28954592,482.2769134,10,16,3% -2018-10-02 01:00:00,80.9068371,257.9012684,88.73191314,344.5028889,34.28659454,200.3251063,166.4034805,33.92162585,33.25272721,0.668898642,22.54794697,0,22.54794697,1.033867329,21.51407964,1.412090695,4.501226279,6.188666971,-6.188666971,0,0,0.386406574,0.258466832,8.313181803,0.345622839,1,0.160200985,0,0.944072834,0.982834797,0.724496596,1,32.23644997,0.749033361,0.050804073,0.312029739,0.866052008,0.590548604,0.961238037,0.922476074,0.177248508,7.990946556,32.41369848,8.739979917,108.8906372,0,0.48302492,61.11684859,-0.48302492,118.8831514,0.946485672,0,135.4771264,8.739979917,141.1972685,10,17,4% -2018-10-02 02:00:00,92.75077683,267.2114108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618806439,4.663718917,-19.88092443,19.88092443,1,0,#DIV/0!,0,0,1,0.65870214,0,0.050257116,0.961238037,1,0.591882364,0.867385768,0,0,0.115824807,0.161707897,0.724496596,0.448993192,0.982645163,0.943883199,0,0,0,0,0,0,0.281230425,73.66634597,-0.281230425,106.333654,0.872209848,0,0,0,0,10,18,0% -2018-10-02 03:00:00,104.5885449,276.4959044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825414468,4.8257639,-3.438646606,3.438646606,1,0.881803108,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059541892,86.58648189,-0.059541892,93.41351811,0,0,0,0,0,10,19,0% -2018-10-02 04:00:00,116.1950036,286.6053013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027985387,5.002206162,-1.631787614,1.631787614,1,0.809205806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.168443649,99.69734182,0.168443649,80.30265818,0,0.753164825,0,0,0,10,20,0% -2018-10-02 05:00:00,127.1380197,298.6486593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218977049,5.212402412,-0.872364576,0.872364576,1,0.679336818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387192523,112.7799224,0.387192523,67.22007758,0,0.920865275,0,0,0,10,21,0% -2018-10-02 06:00:00,136.69833,314.2083179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385835941,5.483969685,-0.41004181,0.41004181,1,0.600274969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581801996,125.5773855,0.581801996,54.42261452,0,0.964060109,0,0,0,10,22,0% -2018-10-02 07:00:00,143.6135547,335.0608993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50652938,5.847915887,-0.063444635,0.063444635,1,0.541003361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739015949,137.6476569,0.739015949,42.3523431,0,0.982342462,0,0,0,10,23,0% -2018-10-03 08:00:00,146.1323459,0.86197523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550490579,0.015044306,0.239009604,-0.239009604,1,0.48928064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848128172,148.008659,0.848128172,31.99134105,0,0.991046646,0,0,0,10,0,0% -2018-10-03 09:00:00,143.313946,26.47331942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501300221,0.462046588,0.540163929,-0.540163929,1,0.437780217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901711795,154.3839954,0.901711795,25.61600462,0,0.99454991,0,0,0,10,1,0% -2018-10-03 10:00:00,136.2005149,46.98789139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377147429,0.820093413,0.882637331,-0.882637331,1,0.379213816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896125278,153.6533361,0.896125278,26.34666395,0,0.99420423,0,0,0,10,2,0% -2018-10-03 11:00:00,126.5369158,62.29543542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208485805,1.087260457,1.337419494,-1.337419494,1,0.301441486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831760475,146.2800083,0.831760475,33.71999168,0,0.98988654,0,0,0,10,3,0% -2018-10-03 12:00:00,115.5485044,74.19730333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016701848,1.294987239,2.086373206,-2.086373206,1,0.173362858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713015928,135.4808323,0.713015928,44.51916766,0,0.979875339,0,0,0,10,4,0% -2018-10-03 13:00:00,103.9318214,84.2463345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813952481,1.47037592,3.90723701,-3.90723701,1,0,#DIV/0!,0,0,0.121283285,1,0.250557009,0,0.931814789,0.970576752,0.724496596,1,0,0,0.019619968,0.312029739,0.945867857,0.670364453,0.961238037,0.922476074,0,0,0,0,0,0,-0.547997155,123.2297177,0.547997155,56.77028232,0,0.95875865,0,0,0,10,5,0% -2018-10-03 14:00:00,92.1099279,93.53050854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607621516,1.632415325,24.88604046,-24.88604046,1,0,#DIV/0!,0,0,0.788387102,1,0.040161563,0,0.957502881,0.996264844,0.724496596,1,0,0,0.098064537,0.312029739,0.759800652,0.484297248,0.961238037,0.922476074,0,0,0,0,0,0,-0.347964294,110.3628527,0.347964294,69.63714731,0,0.906307096,0,0,0,10,6,0% -2018-10-03 15:00:00,80.31312369,102.8930102,98.73784568,370.0584523,36.47047897,36.11508706,0,36.11508706,35.37075947,0.744327588,71.28930275,46.24944942,25.03985333,1.099719503,23.94013383,1.401728441,1.795821806,-4.919150173,4.919150173,0.628622087,0.628622087,0.369366768,0.570003645,18.3332766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.99971939,0.796743036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4129657,17.62264281,34.41268509,18.41938584,0,46.24944942,-0.124978768,97.17952966,0.124978768,82.82047034,0,0.649932046,34.41268509,48.47838512,66.14081859,10,7,92% -2018-10-03 16:00:00,69.11536823,113.1438822,300.4034502,657.4044764,66.04703215,133.2654533,66.94541478,66.32003854,64.05547044,2.264568099,74.82785616,0,74.82785616,1.991561707,72.83629446,1.206290739,1.974733273,-1.912273929,1.912273929,0.857171791,0.857171791,0.219861097,2.012236691,64.72044902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57255466,1.442879677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457858633,62.21175736,63.03041329,63.65463703,66.94541478,0,0.101832916,84.15527228,-0.101832916,95.84472772,0.558999624,0,100.452875,63.65463703,142.1135618,10,8,41% -2018-10-03 17:00:00,58.79889066,125.2209225,484.9425956,776.8558107,82.49743762,332.2035615,248.5380239,83.66553762,80.0098355,3.655702126,120.0675489,0,120.0675489,2.487602128,117.5799468,1.026234239,2.185517389,-0.941823771,0.941823771,0.69121504,0.69121504,0.170117945,2.718909822,87.44948608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.9084972,1.802259273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.969840911,84.05977232,78.87833811,85.8620316,248.5380239,0,0.319928126,71.34142168,-0.319928126,108.6585783,0.893714898,0,301.0004727,85.8620316,357.1954551,10,9,19% -2018-10-03 18:00:00,50.10053382,140.2272045,628.0789254,834.3640151,92.88239906,523.6755076,428.8591313,94.81637627,90.08165203,4.734724241,155.0857541,0,155.0857541,2.800747031,152.2850071,0.874419272,2.447426419,-0.40459933,0.40459933,0.59934425,0.59934425,0.147883324,3.1182636,100.2940763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58991035,2.02913169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259171363,96.40648104,88.84908172,98.43561273,428.8591313,0,0.513995239,59.06968102,-0.513995239,120.930319,0.952722834,0,497.4329688,98.43561273,561.8571087,10,10,13% -2018-10-03 19:00:00,44.09643721,159.0010465,717.5719035,861.5890823,98.80484286,679.1106851,577.8758127,101.2348724,95.82551229,5.409360112,176.9629463,0,176.9629463,2.979330563,173.9836158,0.769628018,2.775091775,-0.016892759,0.016892759,0.533042522,0.533042522,0.137693299,3.231224126,103.9272752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.11112732,2.158514851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.34101088,99.89884995,94.4521382,102.0573648,577.8758127,0,0.670709303,47.87816724,-0.670709303,132.1218328,0.975452055,0,658.1422874,102.0573648,724.9367916,10,11,10% -2018-10-03 20:00:00,42.01618993,180.7752334,746.5392868,869.3458132,100.6538412,780.7723669,677.5258818,103.246485,97.61875652,5.627728484,184.0421779,0,184.0421779,3.035084685,181.0070932,0.733320853,3.155123029,0.319557405,-0.319557405,0.475506155,0.475506155,0.134827253,3.073990341,98.87009614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.83486188,2.198908523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.227095538,95.03769711,96.06195741,97.23660564,677.5258818,0,0.779351406,38.79877095,-0.779351406,141.2012291,0.985844088,0,763.9968427,97.23660564,827.6362564,10,12,8% -2018-10-03 21:00:00,44.43093814,202.4071897,712.8121397,860.2695612,98.49813957,817.0764497,716.1749134,100.9015362,95.52805725,5.373479002,175.7996383,0,175.7996383,2.970082328,172.8295559,0.77546616,3.53267189,0.66113017,-0.66113017,0.417093772,0.417093772,0.138182466,2.674064497,86.00710625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.82520221,2.151814536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.937350625,82.67330197,93.76255284,84.8251165,716.1749134,0,0.832500586,33.64352794,-0.832500586,146.3564721,0.989939982,0,802.7327339,84.8251165,858.2490761,10,13,7% -2018-10-03 22:00:00,50.68726252,220.88674,618.8943755,831.2495416,92.25382597,781.1930861,687.0555661,94.13751996,89.47203274,4.665487225,152.8398999,0,152.8398999,2.781793233,150.0581067,0.88465962,3.855200887,1.066919495,-1.066919495,0.34769971,0.34769971,0.149062311,2.075829689,66.76581842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0039211,2.015399728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503931543,64.17784423,87.50785265,66.19324396,687.0555661,0,0.826533468,34.25572926,-0.826533468,145.7442707,0.989506382,0,767.35372,66.19324396,810.6758743,10,14,6% -2018-10-03 23:00:00,59.54626208,235.6242757,472.0174589,770.5221998,81.48406384,669.6299808,587.0446951,82.58528566,79.02701867,3.558266986,116.9031429,0,116.9031429,2.457045169,114.4460977,1.039278331,4.112419409,1.64754714,-1.64754714,0.248406535,0.248406535,0.172629343,1.345571546,43.27820629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.96377629,1.780120861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974862005,41.60065806,76.93863829,43.38077892,587.0446951,0,0.761879016,40.36987106,-0.761879016,139.6301289,0.984372782,0,654.8094582,43.38077892,683.2013103,10,15,4% -2018-10-03 00:00:00,69.95890957,247.5131906,284.9166126,643.494013,64.39509569,478.389842,413.7886743,64.60116773,62.45334596,2.147821775,71.0230811,0,71.0230811,1.941749728,69.08133137,1.221013313,4.319920118,2.738777,-2.738777,0.061795239,0.061795239,0.226013833,0.588164869,18.91740399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.03253166,1.406791068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.426123445,18.18412827,60.45865511,19.59091934,413.7886743,0,0.643034226,49.98155204,-0.643034226,130.018448,0.972243641,0,462.7620625,19.59091934,475.5839274,10,16,3% -2018-10-03 01:00:00,81.20851329,257.6486483,83.98696252,333.4193158,33.02748813,192.2446103,159.5798936,32.6647167,32.0315875,0.6331292,21.35951205,0,21.35951205,0.995900626,20.36361143,1.417355938,4.496817226,6.408433247,-6.408433247,0,0,0.393245417,0.248975156,8.007896876,0.361329636,1,0.154796017,0,0.944748807,0.98351077,0.724496596,1,31.0547818,0.721526613,0.052774189,0.312029739,0.861267508,0.585764104,0.961238037,0.922476074,0.170625575,7.697495072,31.22540738,8.419021685,101.9189488,0,0.478616223,61.4049357,-0.478616223,118.5950643,0.945532166,0,127.5930518,8.419021685,133.1031331,10,17,4% -2018-10-03 02:00:00,93.04856246,266.9532577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624003779,4.659213296,-17.96064417,17.96064417,1,0,#DIV/0!,0,0,1,0.615621856,0,0.055619865,0.961238037,1,0.578907614,0.854411018,0,0,0.115824807,0.147052052,0.724496596,0.448993192,0.984467771,0.945705808,0,0,0,0,0,0,0.27671891,73.9355238,-0.27671891,106.0644762,0.869311228,0,0,0,0,10,18,0% -2018-10-03 03:00:00,104.8878613,276.2312249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830638524,4.821144371,-3.374116694,3.374116694,1,0.892838373,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055065656,86.84337368,-0.055065656,93.15662632,0,0,0,0,0,10,19,0% -2018-10-03 04:00:00,116.5050978,286.3344315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033397551,4.997478592,-1.615368273,1.615368273,1,0.806397934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172800467,99.95068425,0.172800467,80.04931575,0,0.760648931,0,0,0,10,20,0% -2018-10-03 05:00:00,127.4691892,298.3808954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224757046,5.207729049,-0.866534827,0.866534827,1,0.678339873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.391354044,113.0387782,0.391354044,66.96122176,0,0.922238448,0,0,0,10,21,0% -2018-10-03 06:00:00,137.0598461,313.9802304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392145586,5.479988807,-0.408221054,0.408221054,1,0.599963601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585705818,125.8528685,0.585705818,54.14713151,0,0.964632912,0,0,0,10,22,0% -2018-10-03 07:00:00,144.0031633,334.9655576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513329333,5.846251861,-0.063750027,0.063750027,1,0.541055586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742617446,137.9548617,0.742617446,42.04513826,0,0.982670583,0,0,0,10,23,0% -2018-10-04 08:00:00,146.5172854,1.010149779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557209042,0.01763044,0.237152511,-0.237152511,1,0.489598222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851403551,148.364657,0.851403551,31.63534296,0,0.991273442,0,0,0,10,0,0% -2018-10-04 09:00:00,143.6473466,26.82475515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507119159,0.468180298,0.536730402,-0.536730402,1,0.438367385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904659727,154.777493,0.904659727,25.22250704,0,0.9947306,0,0,0,10,1,0% -2018-10-04 10:00:00,136.4698783,47.4034034,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381848706,0.827345466,0.877038357,-0.877038357,1,0.380171297,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898766975,153.9964619,0.898766975,26.0035381,0,0.994368227,0,0,0,10,2,0% -2018-10-04 11:00:00,126.7575466,62.70150833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21233654,1.094347766,1.327947352,-1.327947352,1,0.303061318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834138214,146.5262095,0.834138214,33.4737905,0,0.990057895,0,0,0,10,3,0% -2018-10-04 12:00:00,115.7394482,74.57888273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020034446,1.301647056,2.067570635,-2.067570635,1,0.176578287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715190132,135.6587834,0.715190132,44.34121663,0,0.980088521,0,0,0,10,4,0% -2018-10-04 13:00:00,104.108758,84.60847909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817040606,1.476696535,3.84997236,-3.84997236,1,0,#DIV/0!,0,0,0.113656186,1,0.254126496,0,0.931294183,0.970056147,0.724496596,1,0,0,0.018448956,0.312029739,0.94901418,0.673510776,0.961238037,0.922476074,0,0,0,0,0,0,-0.550042218,123.3699094,0.550042218,56.63009063,0,0.959097887,0,0,0,10,5,0% -2018-10-04 14:00:00,92.28569238,93.88266403,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610689185,1.638561598,22.90864679,-22.90864679,1,0,#DIV/0!,0,0,0.772077468,1,0.043623946,0,0.957162769,0.995924732,0.724496596,1,0,0,0.09658518,0.312029739,0.762855782,0.487352378,0.961238037,0.922476074,0,0,0,0,0,0,-0.349963446,110.4850793,0.349963446,69.5149207,0,0.907127935,0,0,0,10,6,0% -2018-10-04 15:00:00,80.4977765,103.2442005,95.83616674,364.2871583,35.69750031,35.34354247,0,35.34354247,34.62108897,0.722453506,70.57416454,46.26116502,24.31299952,1.076411344,23.23658818,1.40495124,1.801951232,-4.996589444,4.996589444,0.615379191,0.615379191,0.372484643,0.548085405,17.62831065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.27910759,0.779856355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.39708601,16.94500272,33.6761936,17.72485908,0,46.26116502,-0.12699093,97.29574405,0.12699093,82.70425595,0,0.656271094,33.6761936,48.08472443,65.14668405,10,7,93% -2018-10-04 16:00:00,69.32393887,113.5000622,296.8414064,655.4025105,65.42928396,131.0227779,65.32871234,65.69406555,63.45634964,2.237715908,73.94557001,0,73.94557001,1.97293432,71.97263569,1.209930984,1.980949786,-1.922073916,1.922073916,0.858847688,0.858847688,0.22041832,1.991478194,64.05278437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.99665695,1.429384199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442819172,61.5699727,62.43947613,62.9993569,65.32871234,0,0.099677238,84.27941526,-0.099677238,95.72058474,0.548380967,0,98.26449856,62.9993569,139.4963177,10,8,42% -2018-10-04 17:00:00,59.04376282,125.5798037,481.0130721,775.9194582,81.89312596,329.4588248,246.408999,83.04982577,79.42374605,3.626079718,119.0965682,0,119.0965682,2.469379901,116.6271883,1.030508064,2.191781048,-0.942376666,0.942376666,0.691309591,0.691309591,0.170251352,2.697312159,86.75483099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.34512574,1.789057332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954193477,83.39204343,78.29931921,85.18110076,246.408999,0,0.317570331,71.48394774,-0.317570331,108.5160523,0.892554561,0,298.2327953,85.18110076,353.9821221,10,9,19% -2018-10-04 18:00:00,50.39459904,140.5662613,623.7947895,833.7772849,92.26458942,520.5590769,426.3741767,94.18490024,89.48247163,4.702428615,154.0283866,0,154.0283866,2.782117791,151.2462688,0.879551679,2.453344078,-0.402107968,0.402107968,0.598918202,0.598918202,0.147908561,3.095334293,99.556591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.01395536,2.015634869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242559158,95.69758209,88.25651452,97.71321696,426.3741767,0,0.51137658,59.24443336,-0.51137658,120.7555666,0.952224697,0,494.2605358,97.71321696,558.211882,10,10,13% -2018-10-04 19:00:00,44.44462569,159.261909,712.9331303,861.1034557,98.16767613,675.6159692,575.0340196,100.5819496,95.2075585,5.37439108,175.8190091,0,175.8190091,2.960117636,172.8588915,0.775705053,2.779644685,-0.012634423,0.012634423,0.532314303,0.532314303,0.137695489,3.206966413,103.1470637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.51712662,2.14459515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.323436249,99.14888103,93.84056287,101.2934762,575.0340196,0,0.667787379,48.10347752,-0.667787379,131.8965225,0.975125869,0,654.5711107,101.2934762,720.8656649,10,11,10% -2018-10-04 20:00:00,42.40241949,180.882347,741.5627939,868.8288032,99.99626403,776.873073,674.3018517,102.5712213,96.98100772,5.590213578,182.8157412,0,182.8157412,3.015256307,179.8004849,0.740061831,3.156992513,0.325511319,-0.325511319,0.474487976,0.474487976,0.134845309,3.048627485,98.05433952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.22183347,2.18454293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208720235,94.25356082,95.43055371,96.43810375,674.3018517,0,0.776104394,39.0947317,-0.776104394,140.9052683,0.985575677,0,760.0060579,96.43810375,823.122868,10,12,8% -2018-10-04 21:00:00,44.82133907,202.345359,707.5379099,859.5954633,97.81975147,812.7475172,712.5436725,100.2038447,94.87012505,5.33371963,174.5003843,0,174.5003843,2.949626423,171.5507579,0.782279942,3.531592741,0.669410033,-0.669410033,0.415677832,0.415677832,0.138253725,2.647992039,85.16852638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19277276,2.136994303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918461218,81.8672271,93.11123397,84.0042214,712.5436725,0,0.828929075,34.0111152,-0.828929075,145.9888848,0.989681209,0,798.302317,84.0042214,853.2813998,10,13,7% -2018-10-04 22:00:00,51.05634461,220.7137568,613.3880718,830.2152167,91.55144696,776.400204,682.9853925,93.41481143,88.79083305,4.623978381,151.4836535,0,151.4836535,2.760613915,148.7230396,0.891101318,3.85218176,1.079229256,-1.079229256,0.345594617,0.345594617,0.149255343,2.04966219,65.92418169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.34912605,2.000055384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484973279,63.36883099,86.83409933,65.36888638,682.9853925,0,0.822660653,34.64797086,-0.822660653,145.3520291,0.989221598,0,762.4580006,65.36888638,805.2406294,10,14,6% -2018-10-04 23:00:00,59.88763807,235.399803,466.3791275,768.6635058,80.74265487,664.2782225,582.4544937,81.82372878,78.30796592,3.515762863,115.513708,0,115.513708,2.434688953,113.079019,1.045236466,4.108501621,1.668554602,-1.668554602,0.244814048,0.244814048,0.173126648,1.320368861,42.4676013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.27259543,1.763923859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956602745,40.82147371,76.22919818,42.58539756,582.4544937,0,0.757749639,40.73378938,-0.757749639,139.2662106,0.984015145,0,649.3732413,42.58539756,677.2445323,10,15,4% -2018-10-04 00:00:00,70.27676789,247.268837,279.3359916,639.4125244,63.54898691,472.1402547,408.4017515,63.73850318,61.63275048,2.105752696,69.64448162,0,69.64448162,1.916236426,67.7282452,1.226560987,4.315655344,2.786159047,-2.786159047,0.053692431,0.053692431,0.227500175,0.56640024,18.21737871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24374408,1.388306768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410355046,17.51123735,59.65409912,18.89954412,408.4017515,0,0.638714032,50.3040052,-0.638714032,129.6959948,0.971717705,0,456.505312,18.89954412,468.8746856,10,16,3% -2018-10-04 01:00:00,81.5084532,257.396056,79.32101996,322.099682,31.75865553,184.1433722,152.7444019,31.39897024,30.80101489,0.597955354,20.18994028,0,20.18994028,0.957640641,19.23229964,1.422590877,4.492408658,6.642189386,-6.642189386,0,0,0.400381331,0.23941016,7.700253722,0.377229361,1,0.149430508,0,0.945413321,0.984175285,0.724496596,1,29.86322052,0.693807385,0.054742938,0.312029739,0.856517074,0.58101367,0.961238037,0.922476074,0.163981989,7.401776771,30.0272025,8.095584156,95.12472887,0,0.474214693,61.69176889,-0.474214693,118.3082311,0.944562525,0,119.8784566,8.095584156,125.1768545,10,17,4% -2018-10-04 02:00:00,93.34453534,266.6946336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62916948,4.654699453,-16.39043235,16.39043235,1,0,#DIV/0!,0,0,1,0.571382532,0,0.06093567,0.961238037,1,0.566271694,0.841775098,0,0,0.115824807,0.132784909,0.724496596,0.448993192,0.986195272,0.947433309,0,0,0,0,0,0,0.272224131,74.20334144,-0.272224131,105.7966586,0.866327818,0,0,0,0,10,18,0% -2018-10-04 03:00:00,105.1851186,275.9654628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835826644,4.816505947,-3.312483761,3.312483761,1,0.903378225,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.050617931,87.0985663,-0.050617931,92.9014337,0,0,0,0,0,10,19,0% -2018-10-04 04:00:00,116.8129335,286.0616406,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038770298,4.992717492,-1.599431426,1.599431426,1,0.803672572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177118365,100.2019575,0.177118365,79.7980425,0,0.767702905,0,0,0,10,20,0% -2018-10-04 05:00:00,127.798044,298.1100363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230496645,5.203001667,-0.860857128,0.860857128,1,0.677368929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395468312,113.2951847,0.395468312,66.7048153,0,0.92356762,0,0,0,10,21,0% -2018-10-04 06:00:00,137.4193079,313.7477951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39841938,5.475932045,-0.406462026,0.406462026,1,0.59966279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589556708,126.1255571,0.589556708,53.87444285,0,0.965190516,0,0,0,10,22,0% -2018-10-04 07:00:00,144.3913708,334.8663055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.520104832,5.844519585,-0.064081798,0.064081798,1,0.541112322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746163368,138.259121,0.746163368,41.74087903,0,0.982990546,0,0,0,10,23,0% -2018-10-05 08:00:00,146.9012328,1.158400974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563910188,0.020217911,0.235287694,-0.235287694,1,0.489917124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854623931,148.7182131,0.854623931,31.28178686,0,0.991494735,0,0,0,10,0,0% -2018-10-05 09:00:00,143.9794986,27.17871532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512916305,0.474358069,0.533303625,-0.533303625,1,0.438953398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907556414,155.1698205,0.907556414,24.83017949,0,0.994907006,0,0,0,10,1,0% -2018-10-05 10:00:00,136.7379831,47.82040776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386528017,0.834623565,0.871464777,-0.871464777,1,0.381124436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901364097,154.337955,0.901364097,25.66204499,0,0.994528521,0,0,0,10,2,0% -2018-10-05 11:00:00,126.9773289,63.10773343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216172465,1.101437732,1.318540176,-1.318540176,1,0.30467004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836480507,146.7703149,0.836480507,33.22968509,0,0.990225744,0,0,0,10,3,0% -2018-10-05 12:00:00,115.9300825,74.95980091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023361642,1.308295333,2.048968864,-2.048968864,1,0.179759377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717339846,135.8352877,0.717339846,44.16471228,0,0.980298031,0,0,0,10,4,0% -2018-10-05 13:00:00,104.2859048,84.96945795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820132401,1.482996805,3.793917991,-3.793917991,1,0,#DIV/0!,0,0,0.10606095,1,0.257718218,0,0.930767605,0.969529569,0.724496596,1,0,0,0.017274841,0.312029739,0.952179637,0.676676233,0.961238037,0.922476074,0,0,0,0,0,0,-0.552074818,123.5094709,0.552074818,56.49052909,0,0.959432565,0,0,0,10,5,0% -2018-10-05 14:00:00,92.4621252,94.23322584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613768518,1.644680056,21.20722385,-21.20722385,1,0,#DIV/0!,0,0,0.755888886,1,0.047118842,0,0.956816567,0.995578531,0.724496596,1,0,0,0.095099831,0.312029739,0.765940961,0.490437557,0.961238037,0.922476074,0,0,0,0,0,0,-0.351962404,110.6073916,0.351962404,69.39260844,0,0.907939372,0,0,0,10,6,0% -2018-10-05 15:00:00,80.68340977,103.5932828,92.9321327,358.363807,34.91677278,34.56446492,0,34.56446492,33.86390325,0.700561671,69.81910254,46.23376151,23.58534103,1.052869528,22.5324715,1.408191152,1.808043867,-5.07752373,5.07752373,0.601538613,0.601538613,0.375723356,0.526296859,16.92751613,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.55127188,0.762800389,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.381300283,16.27137237,32.93257216,17.03417276,0,46.23376151,-0.129013479,97.41258878,0.129013479,82.58741122,0,0.662443596,32.93257216,47.661432,64.12602618,10,7,95% -2018-10-05 16:00:00,69.53380696,113.8533891,293.2522927,653.3430108,64.80787506,128.7653005,63.70096237,65.06433817,62.85367851,2.210659653,73.05661007,0,73.05661007,1.954196549,71.10241352,1.213593873,1.987116504,-1.932184334,1.932184334,0.860576671,0.860576671,0.220996994,1.970557272,63.37989561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.41734654,1.415808747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427662035,60.92316643,61.84500858,62.33897517,63.70096237,0,0.097500029,84.40477091,-0.097500029,95.59522909,0.537179639,0,96.06386853,62.33897517,136.863481,10,8,42% -2018-10-05 17:00:00,59.28999181,125.934734,477.0498401,774.9542167,81.28606443,326.6834037,244.2522108,82.43119287,78.83498967,3.596203201,118.1173316,0,118.1173316,2.451074756,115.6662568,1.034805571,2.197975751,-0.943002799,0.943002799,0.691416666,0.691416666,0.170393233,2.675565032,86.05536863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77919071,1.775795317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938437758,82.71969361,77.71762847,84.49548892,244.2522108,0,0.315182762,71.62815266,-0.315182762,108.3718473,0.891361883,0,295.434739,84.49548892,350.7353466,10,9,19% -2018-10-05 18:00:00,50.68969301,140.9000441,619.4752662,833.1715726,91.64435385,517.4040678,423.8532631,93.55080467,88.88093845,4.669866224,152.9623657,0,152.9623657,2.7634154,150.1989503,0.88470204,2.459169686,-0.399634565,0.399634565,0.598495225,0.598495225,0.147938681,3.072273757,98.81488489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.43573879,2.00208505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.225851878,94.98462597,87.66159067,96.98671102,423.8532631,0,0.508722665,59.42121548,-0.508722665,120.5787845,0.951714621,0,491.0489383,96.98671102,554.5248009,10,10,13% -2018-10-05 19:00:00,44.79300213,159.5169708,708.2611229,860.6029741,97.52837678,672.0794849,572.152777,99.92670789,94.58753638,5.339171515,174.6669496,0,174.6669496,2.940840401,171.7261092,0.781785369,2.784096354,-0.008369655,0.008369655,0.531584985,0.531584985,0.137701158,3.182606859,102.3635767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92113778,2.13062886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.305787835,98.39576354,93.22692561,100.5263924,572.152777,0,0.664827794,48.3308844,-0.664827794,131.6691156,0.974792555,0,650.9571928,100.5263924,716.7497061,10,11,10% -2018-10-05 20:00:00,42.78783278,180.9854894,736.5586687,868.298405,99.33692979,772.9328995,671.0388543,101.8940452,96.34155485,5.552490369,181.5825518,0,181.5825518,2.995374947,178.5871768,0.746788562,3.158792689,0.331492168,-0.331492168,0.47346519,0.47346519,0.134866283,3.023203203,97.23660719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.60716705,2.170138953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.190300429,93.4675254,94.79746748,95.63766436,671.0388543,0,0.772820554,39.39214781,-0.772820554,140.6078522,0.985301928,0,755.9733443,95.63766436,818.5662828,10,12,8% -2018-10-05 21:00:00,45.21042258,202.2825365,702.2446773,858.9073157,97.14007451,808.3822273,708.8774674,99.50475986,94.21094286,5.293817007,173.196484,0,173.196484,2.929131655,170.2673523,0.78907073,3.530496281,0.677746994,-0.677746994,0.414252128,0.414252128,0.138327961,2.621908117,84.32957778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55914176,2.122145913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899563505,81.06079779,92.45870527,83.18294371,708.8774674,0,0.825324752,34.37856997,-0.825324752,145.62143,0.989417787,0,793.8346802,83.18294371,848.2762532,10,13,7% -2018-10-05 22:00:00,51.42405564,220.5413496,607.8739179,829.1627865,90.84828479,771.5782286,678.8869444,92.69128417,88.10887381,4.58241036,150.1254801,0,150.1254801,2.739410981,147.3860691,0.897519086,3.849172687,1.091660349,-1.091660349,0.343468775,0.343468775,0.149452513,2.023542085,65.08406934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.69360089,1.98469393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466049352,62.56128304,86.15965024,64.54597697,678.8869444,0,0.818761955,35.03894791,-0.818761955,144.9610521,0.988932189,0,757.5328026,64.54597697,799.7768536,10,14,6% -2018-10-05 23:00:00,60.22762515,235.1761081,460.7463154,766.7733814,80.0007677,658.9050624,577.8433127,81.06174973,77.58844938,3.473300346,114.1255968,0,114.1255968,2.412318318,111.7132785,1.051170359,4.104597408,1.689871435,-1.689871435,0.241168654,0.241168654,0.173633006,1.295286859,41.66087792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.58096877,1.747716409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.93843092,40.0460205,75.51939969,41.79373691,577.8433127,0,0.753603772,41.09648043,-0.753603772,138.9035196,0.983652137,0,643.9162089,41.79373691,671.2693739,10,15,4% -2018-10-05 00:00:00,70.59310681,247.0249556,273.77849,635.2495594,62.70119202,465.8695219,402.9951442,62.87437764,60.81051974,2.063857902,68.27143689,0,68.27143689,1.890672282,66.38076461,1.232082143,4.311398809,2.834738134,-2.834738134,0.045384918,0.045384918,0.229021615,0.544884091,17.52534539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.45338461,1.369785632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394766669,16.8460286,58.84815128,18.21581423,402.9951442,0,0.634388703,50.62533954,-0.634388703,129.3746605,0.971183969,0,450.2305748,18.21581423,462.1524609,10,16,3% -2018-10-05 01:00:00,81.80651391,257.1435055,74.73967739,310.5520248,30.48091897,176.0296595,145.9044335,30.12522606,29.5618068,0.563419258,19.04061226,0,19.04061226,0.91911217,18.12150009,1.427793017,4.488000822,6.891202921,-6.891202921,0,0,0.40782781,0.229778042,7.390451701,0.393318526,1,0.144106648,0,0.946066236,0.984828199,0.724496596,1,28.66260762,0.665893638,0.056709447,0.312029739,0.851802745,0.576299341,0.961238037,0.922476074,0.157319819,7.103983285,28.81992744,7.769876923,88.51751682,0,0.469822837,61.97720285,-0.469822837,118.0227971,0.943576906,0,112.3430121,7.769876923,117.4282411,10,17,5% -2018-10-05 02:00:00,93.63856454,266.4355607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634301258,4.650177778,-15.08306247,15.08306247,1,0,#DIV/0!,0,0,1,0.525956104,0,0.066202646,0.961238037,1,0.55397338,0.829476784,0,0,0.115824807,0.118902544,0.724496596,0.448993192,0.987831555,0.949069592,0,0,0,0,0,0,0.267748433,74.46967067,-0.267748433,105.5303293,0.863257544,0,0,0,0,10,18,0% -2018-10-05 03:00:00,105.4801839,275.6986426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840976504,4.811849057,-3.253585068,3.253585068,1,0.913450495,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046201006,87.35193473,-0.046201006,92.64806527,0,0,0,0,0,10,19,0% -2018-10-05 04:00:00,117.1183725,285.7869458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044101215,4.987923164,-1.583965402,1.583965402,1,0.801027727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.181395198,100.4510367,0.181395198,79.54896329,0,0.774358746,0,0,0,10,20,0% -2018-10-05 05:00:00,128.1244386,297.8360697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236193305,5.198220047,-0.855330487,0.855330487,1,0.676423817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.399533409,113.5490129,0.399533409,66.45098715,0,0.92485402,0,0,0,10,21,0% -2018-10-05 06:00:00,137.7765668,313.5109257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404654723,5.471797894,-0.404765248,0.404765248,1,0.599372624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59335303,126.3953122,0.59335303,53.60468784,0,0.965733134,0,0,0,10,22,0% -2018-10-05 07:00:00,144.7780455,334.7629691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526853579,5.842716025,-0.064440678,0.064440678,1,0.541173695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749652407,138.5602773,0.749652407,41.43972272,0,0.983302422,0,0,0,10,23,0% -2018-10-06 08:00:00,147.2840894,1.306589776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570592296,0.022804294,0.233414451,-0.233414451,1,0.490237468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857788352,149.0691587,0.857788352,30.93084125,0,0.991710563,0,0,0,10,0,0% -2018-10-06 09:00:00,144.3103304,27.53507545,0,0,0,0,0,0,0,0,0,0,0,0,0,2.51869041,0.480577726,0.529882946,-0.529882946,1,0.439538369,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910401236,155.5608584,0.910401236,24.43914164,0,0.995079161,0,0,0,10,1,0% -2018-10-06 10:00:00,137.004789,48.23874794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39118466,0.841924979,0.865915922,-0.865915922,1,0.382073346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903916338,154.6777252,0.903916338,25.32227483,0,0.994685146,0,0,0,10,2,0% -2018-10-06 11:00:00,127.1962458,63.51395828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219993285,1.108527693,1.309196994,-1.309196994,1,0.306267818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838787311,147.0122833,0.838787311,32.98771671,0,0.990390133,0,0,0,10,3,0% -2018-10-06 12:00:00,116.1204009,75.33992051,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026683325,1.314929671,2.030564761,-2.030564761,1,0.182906664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719465221,136.0103457,0.719465221,43.9896543,0,0.980503937,0,0,0,10,4,0% -2018-10-06 13:00:00,104.4632568,85.3291445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823227778,1.489274519,3.739037432,-3.739037432,1,0,#DIV/0!,0,0,0.098497585,1,0.261332189,0,0.930235008,0.968996971,0.724496596,1,0,0,0.016097646,0.312029739,0.955364246,0.679860842,0.961238037,0.922476074,0,0,0,0,0,0,-0.554095218,123.6484183,0.554095218,56.35158173,0,0.959762802,0,0,0,10,5,0% -2018-10-06 14:00:00,92.63921591,94.58207207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616859334,1.650768571,19.72782755,-19.72782755,1,0,#DIV/0!,0,0,0.739820714,1,0.05064647,0,0.956464178,0.995226141,0.724496596,1,0,0,0.093608526,0.312029739,0.769056323,0.493552919,0.961238037,0.922476074,0,0,0,0,0,0,-0.353961457,110.7298079,0.353961457,69.2701921,0,0.908741682,0,0,0,10,6,0% -2018-10-06 15:00:00,80.86999789,103.9401356,90.02718611,352.2854906,34.12825399,33.77782416,0,33.77782416,33.09916121,0.678662957,69.02303418,46.16580783,22.85722635,1.029092778,21.82813357,1.411447729,1.81409759,-5.162188881,5.162188881,0.58706002,0.58706002,0.379088312,0.504654277,16.23141627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.81617274,0.745574214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365620305,15.60225471,32.18179305,16.34782893,0,46.16580783,-0.131046577,97.5300742,0.131046577,82.4699258,0,0.66845627,32.18179305,47.20765262,63.07825753,10,7,96% -2018-10-06 16:00:00,69.74493221,114.2037416,289.6369233,651.2249197,64.18283109,126.4934178,62.06253039,64.43088739,62.24748192,2.183405471,72.16117452,0,72.16117452,1.935349167,70.22582536,1.217278704,1.993231309,-1.942618667,1.942618667,0.862361047,0.862361047,0.221597545,1.949478686,62.70193584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83464732,1.402153883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412390672,60.27148572,61.24703799,61.6736396,62.06253039,0,0.095301222,84.5313428,-0.095301222,95.4686572,0.525347754,0,93.85144891,61.6736396,134.2156126,10,8,43% -2018-10-06 17:00:00,59.53751263,126.2856019,473.0539634,773.9598935,80.67632025,323.8777257,242.0680136,81.80971212,78.24363153,3.566080595,117.130099,0,117.130099,2.432688719,114.6974103,1.039125624,2.204099551,-0.94370614,0.94370614,0.691536944,0.691536944,0.170543588,2.653675127,85.35131402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.21075477,1.762474696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.922578596,82.04292953,77.13333336,83.80540423,242.0680136,0,0.312765578,71.77402363,-0.312765578,108.2259764,0.890135861,0,292.606753,83.80540423,347.4557139,10,9,19% -2018-10-06 18:00:00,50.98572271,141.2284779,615.1217608,832.5469454,91.02178206,514.2111944,421.2970073,92.91418716,88.2771395,4.637047662,151.8880351,0,151.8880351,2.744642564,149.1433925,0.889868733,2.464901937,-0.397181496,0.397181496,0.598075726,0.598075726,0.147973601,3.049090263,98.06922404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85534427,1.988484194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.209055516,94.26786839,87.06439979,96.25635258,421.2970073,0,0.506033936,59.59998861,-0.506033936,120.4000114,0.951192397,0,487.7989102,96.25635258,550.7967678,10,10,13% -2018-10-06 19:00:00,45.14145474,159.7662168,703.557645,860.0878247,96.88705458,668.5023227,569.2330555,99.26926712,93.96555241,5.303714712,173.5071987,0,173.5071987,2.921502171,170.5856965,0.787867014,2.788446517,-0.004100472,0.004100472,0.530854912,0.530854912,0.137710187,3.158155103,101.5771242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32326313,2.116618378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.288072622,97.63979547,92.61133575,99.75641384,569.2330555,0,0.661831314,48.56031076,-0.661831314,131.4396892,0.974452049,0,647.3016528,99.75641384,712.5902306,10,11,10% -2018-10-06 20:00:00,43.17231486,181.0846562,731.5290172,867.7548946,98.67596837,768.9533505,667.7382519,101.2150986,95.70052384,5.514574731,180.3431241,0,180.3431241,2.975444522,177.3676796,0.75349904,3.160523476,0.337497904,-0.337497904,0.472438149,0.472438149,0.134890026,2.997728232,96.41724457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.99098367,2.155699427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1718439,92.67992289,94.16282756,94.83562231,667.7382519,0,0.769500992,39.69090053,-0.769500992,140.3090995,0.985022826,0,751.9002474,94.83562231,813.9682655,10,12,8% -2018-10-06 21:00:00,45.59806883,202.2186782,696.9348468,858.2054914,96.45925931,803.982505,705.178059,98.80444601,93.55065675,5.253789262,171.888525,0,171.888525,2.908602565,168.9799224,0.795836434,3.529381744,0.686138792,-0.686138792,0.412817046,0.412817046,0.138404988,2.595824223,83.49063011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.92444964,2.107272657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.880665813,80.25436939,91.80511545,82.36164204,705.178059,0,0.821689055,34.74576622,-0.821689055,145.2542338,0.989149731,0,789.3318028,82.36164204,843.2358503,10,13,7% -2018-10-06 22:00:00,51.79026759,220.3694738,602.3545538,828.0927487,90.14451302,766.7294897,674.7623633,91.96712642,87.42632335,4.540803062,148.7660251,0,148.7660251,2.718189665,146.0478354,0.90391069,3.846172889,1.104210384,-1.104210384,0.341322593,0.341322593,0.149653576,1.997481205,64.24586184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.03750743,1.96931916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.447168333,61.75556611,85.48467576,63.72488527,674.7623633,0,0.814839116,35.42854286,-0.814839116,144.5714571,0.988638194,0,752.5805198,63.72488527,794.2871827,10,14,6% -2018-10-06 23:00:00,60.56609236,234.9531718,455.1218219,764.8524477,79.2586043,653.5131927,573.2136272,80.29956549,76.86866495,3.430900538,112.7394943,0,112.7394943,2.389939353,110.3495549,1.057077727,4.100706436,1.71149714,-1.71149714,0.237470441,0.237470441,0.174148108,1.270337314,40.85841477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.88908459,1.731502925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.92035506,39.2746624,74.80943965,41.00616533,573.2136272,0,0.749443411,41.4578126,-0.749443411,138.5421874,0.983283822,0,638.4411258,41.00616533,665.2788409,10,15,4% -2018-10-06 00:00:00,70.90779615,246.7815496,268.2470702,631.0054103,61.85194078,459.5805726,397.5715363,62.00903628,59.98687656,2.022159723,66.90467204,0,66.90467204,1.865064224,65.03960782,1.237574508,4.307150574,2.884542147,-2.884542147,0.03686793,0.03686793,0.230578253,0.523628635,16.84169687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.66166746,1.351232681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379367164,16.18887964,58.04103462,17.54011232,397.5715363,0,0.630060424,50.94541936,-0.630060424,129.0545806,0.970642532,0,443.9408772,17.54011232,455.4205299,10,16,3% -2018-10-06 01:00:00,82.10255459,256.891015,70.24859262,298.7863338,29.19523591,167.9125071,139.0680517,28.8444554,28.31489183,0.529563564,17.91292867,0,17.91292867,0.880344082,17.03258459,1.432959902,4.48359403,7.15689616,-7.15689616,0,0,0.415598873,0.22008602,7.078722958,0.409593272,1,0.138826586,0,0.946707423,0.985469386,0.724496596,1,27.45391375,0.63780629,0.058672834,0.312029739,0.847126528,0.571623124,0.961238037,0.922476074,0.15064172,6.80433776,27.60455547,7.44214405,82.10671341,0,0.465443148,62.26109442,-0.465443148,117.7389056,0.942575494,0,104.9963315,7.44214405,109.8670659,10,17,5% -2018-10-06 02:00:00,93.93052242,266.1760656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639396884,4.645648734,-13.97806567,13.97806567,1,0,#DIV/0!,0,0,1,0.479314113,0,0.07141898,0.961238037,1,0.542010993,0.817514397,0,0,0.115824807,0.105400364,0.724496596,0.448993192,0.989380497,0.950618534,0,0,0,0,0,0,0.263294112,74.73438674,-0.263294112,105.2656133,0.860098298,0,0,0,0,10,18,0% -2018-10-06 03:00:00,105.7729273,275.430794,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846085841,4.807174217,-3.197269645,3.197269645,1,0.923080999,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041817101,87.60335776,-0.041817101,92.39664224,0,0,0,0,0,10,19,0% -2018-10-06 04:00:00,117.4212799,285.5103704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049387947,4.983096013,-1.568958747,1.568958747,1,0.798461437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.185628904,100.6978011,0.185628904,79.30219895,0,0.780645395,0,0,0,10,20,0% -2018-10-06 05:00:00,128.4482299,297.5589904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241844529,5.193384102,-0.849953783,0.849953783,1,0.675504347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403547499,113.8001379,0.403547499,66.19986206,0,0.926098848,0,0,0,10,21,0% -2018-10-06 06:00:00,138.1314752,313.2695435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410849042,5.46758498,-0.40313112,0.40313112,1,0.599093171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597093235,126.6619984,0.597093235,53.33800164,0,0.966260984,0,0,0,10,22,0% -2018-10-06 07:00:00,145.1630559,334.6553775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533573278,5.840838197,-0.064827296,0.064827296,1,0.54123981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753083336,138.8581765,0.753083336,41.14182347,0,0.983606285,0,0,0,10,23,0% -2018-10-07 08:00:00,147.6657564,1.454578124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577253642,0.025387177,0.231532177,-0.231532177,1,0.490559356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86089592,149.417326,0.86089592,30.58267397,0,0.99192097,0,0,0,10,0,0% -2018-10-07 09:00:00,144.6397701,27.89371114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.524440217,0.4868371,0.526467818,-0.526467818,1,0.44012239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913193626,155.9504866,0.913193626,24.04951339,0,0.995247099,0,0,0,10,1,0% -2018-10-07 10:00:00,137.2702553,48.65826752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395817921,0.849246977,0.860391258,-0.860391258,1,0.383018119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906423426,155.0156821,0.906423426,24.9843179,0,0.994838142,0,0,0,10,2,0% -2018-10-07 11:00:00,127.4142786,63.92003155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223798676,1.115615008,1.299917038,-1.299917038,1,0.307854784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841058593,147.2520738,0.841058593,32.74792619,0,0.99055111,0,0,0,10,3,0% -2018-10-07 12:00:00,116.3103947,75.7191057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029999342,1.321547701,2.012355615,-2.012355615,1,0.186020612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721566397,136.183957,0.721566397,43.81604304,0,0.980706308,0,0,0,10,4,0% -2018-10-07 13:00:00,104.6408058,85.68741393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826326593,1.495527501,3.685296784,-3.685296784,1,0,#DIV/0!,0,0,0.090966259,1,0.264968343,0,0.929696358,0.968458321,0.724496596,1,0,0,0.01491742,0.312029739,0.958567955,0.683064551,0.961238037,0.922476074,0,0,0,0,0,0,-0.556103654,123.7867654,0.556103654,56.21323458,0,0.960088704,0,0,0,10,5,0% -2018-10-07 14:00:00,92.81695037,94.92908292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619961386,1.656825053,18.42974305,-18.42974305,1,0,#DIV/0!,0,0,0.723872696,1,0.05420696,0,0.95610551,0.994867473,0.724496596,1,0,0,0.092111339,0.312029739,0.772201921,0.496698517,0.961238037,0.922476074,0,0,0,0,0,0,-0.355960844,110.8523438,0.355960844,69.14765619,0,0.909535112,0,0,0,10,6,0% -2018-10-07 15:00:00,81.05751093,104.28464,87.12289906,346.0495334,33.33192514,32.98361383,0,32.98361383,32.32684462,0.656769214,68.18487894,46.05584287,22.12903607,1.005080525,21.12395555,1.414720449,1.820110327,-5.250839345,5.250839345,0.571899898,0.571899898,0.382585124,0.483175015,15.54056939,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07379266,0.728177419,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.350058654,14.93818641,31.42385131,15.66636383,0,46.05584287,-0.133090319,97.64820677,0.133090319,82.35179323,0,0.674315275,31.42385131,46.72252217,62.00280762,10,7,97% -2018-10-07 16:00:00,69.95726997,114.5510023,285.9962013,649.0472188,63.55418568,124.2076048,60.41385212,63.79375267,61.63779249,2.155960171,71.25948335,0,71.25948335,1.916393188,69.34309016,1.220984697,1.999292151,-1.953390537,1.953390537,0.864203145,0.864203145,0.222220384,1.928247603,62.01907122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24859065,1.388420341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397008824,59.61509026,60.64559948,61.0035106,60.41385212,0,0.093080827,84.65913017,-0.093080827,95.34086983,0.51283245,0,91.62778326,61.0035106,131.5533609,10,8,44% -2018-10-07 17:00:00,59.78625615,126.6323013,469.0265918,772.9363311,80.06396713,321.042306,239.8568423,81.18546368,77.64974312,3.535720566,116.1351514,0,116.1351514,2.414224014,113.7209274,1.043467017,2.210150597,-0.944490586,0.944490586,0.691671092,0.691671092,0.170702405,2.63164947,84.64289318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.63988664,1.749097079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906621082,81.36196848,76.54650772,83.11106556,239.8568423,0,0.310319017,71.92154303,-0.310319017,108.078457,0.888875488,0,289.7493756,83.11106556,344.1439058,10,9,19% -2018-10-07 18:00:00,51.28259187,141.5514946,610.7357573,831.9034986,90.39696911,510.9812616,418.7061105,92.27515107,87.67116696,4.603984114,150.8057574,0,150.8057574,2.725802148,148.0799552,0.895050077,2.470539642,-0.394751088,0.394751088,0.597660101,0.597660101,0.148013225,3.025792353,97.31988315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.27286042,1.974834377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.192176259,93.54757343,86.46503668,95.5224078,418.7061105,0,0.503310914,59.78070885,-0.503310914,120.2192911,0.950657827,0,484.5112778,95.5224078,547.0287832,10,10,13% -2018-10-07 19:00:00,45.48987004,160.0096384,698.8245261,859.5582185,96.24382364,664.8856589,566.2759072,98.60975172,93.34171726,5.268034462,172.3402034,0,172.3402034,2.902106385,169.4380971,0.793948009,2.792695025,0.000171124,-0.000171124,0.530124426,0.530124426,0.137722447,3.13362097,100.7880222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.72360905,2.102566197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270297726,96.88128055,91.99390678,98.98384675,566.2759072,0,0.658798782,48.79167472,-0.658798782,131.2083253,0.974104292,0,643.6056984,98.98384675,708.3886464,10,11,10% -2018-10-07 20:00:00,43.5557504,181.1798487,726.4759933,867.1985703,98.01351289,764.936006,664.4014792,100.5345267,95.05804384,5.476482902,179.0979845,0,179.0979845,2.955469045,176.1425154,0.760191253,3.162184897,0.343526466,-0.343526466,0.471407204,0.471407204,0.134916382,2.972213404,95.5966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37340745,2.141227262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.153358494,91.89108812,93.52676594,94.03231538,664.4014792,0,0.76614688,39.99086825,-0.76614688,140.0091317,0.984738362,0,747.7883906,94.03231538,809.3306604,10,12,8% -2018-10-07 21:00:00,45.98415883,202.1537465,691.6108515,857.4903869,95.77745877,799.5503359,701.4472662,98.10306974,92.889415,5.213654736,170.5771019,0,170.5771019,2.888043763,167.6890581,0.802574975,3.528248472,0.69458311,-0.69458311,0.411372982,0.411372982,0.13848461,2.569751844,82.65205276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.28883892,2.092377875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861776463,79.44829694,91.15061539,81.54067481,701.4472662,0,0.818023475,35.11257731,-0.818023475,144.8874227,0.98887706,0,784.7957255,81.54067481,838.1624664,10,13,7% -2018-10-07 22:00:00,52.1548542,220.1980898,596.8326251,827.0056308,89.44030672,761.8563594,670.6138315,91.2425279,86.74335147,4.499176431,147.4059351,0,147.4059351,2.696955247,144.7089798,0.910273927,3.843181674,1.11687685,-1.11687685,0.3391565,0.3391565,0.149858273,1.971491265,63.40993605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38100888,1.953934896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.428338711,60.95204245,84.80934759,62.90597735,670.6138315,0,0.810893912,35.81663876,-0.810893912,144.1833612,0.988339653,0,747.6035892,62.90597735,788.7742932,10,14,6% -2018-10-07 23:00:00,60.90291104,234.7309785,449.5084288,762.9013729,78.51636806,648.1053313,568.5679371,79.53739427,76.14880986,3.388584409,111.356081,0,111.356081,2.367558191,108.9885228,1.062956322,4.096828431,1.733430967,-1.733430967,0.233719536,0.233719536,0.174671626,1.245531772,40.06058329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.1971325,1.71528785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902383529,38.50775643,74.09951603,40.22304428,568.5679371,0,0.745270565,41.81765634,-0.745270565,138.1823437,0.982910271,0,632.9507813,40.22304428,659.2759593,10,15,4% -2018-10-07 00:00:00,71.22070824,246.5386254,262.7446551,626.6804672,61.00146716,453.2763575,392.1336295,61.14272805,59.16204786,1.980680194,65.54490289,0,65.54490289,1.839419306,63.70548359,1.243035854,4.302910746,2.935599382,-2.935599382,0.028136629,0.028136629,0.232170154,0.502645726,16.16681437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.86881074,1.332653026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364165117,15.54015691,57.23297585,16.87280993,392.1336295,0,0.625731373,51.26411152,-0.625731373,128.7358885,0.970093506,0,437.6392635,16.87280993,448.6821801,10,16,3% -2018-10-07 01:00:00,82.39643597,256.6386051,65.85349261,286.8147998,27.90271825,159.801806,132.2440262,27.55777979,27.06134835,0.496431444,16.80831161,0,16.80831161,0.841369905,15.96694171,1.4380891,4.479188647,7.440869783,-7.440869783,0,0,0.423709011,0.210342476,6.765337087,0.42604932,1,0.133592437,0,0.947336769,0.986098732,0.724496596,1,26.23825645,0.609569632,0.060632205,0.312029739,0.842490406,0.566987002,0.961238037,0.922476074,0.143951037,6.50309934,26.38220748,7.112668972,75.90154871,0,0.461078111,62.54330204,-0.461078111,117.456698,0.941558504,0,97.84795616,7.112668972,102.5030558,10,17,5% -2018-10-07 02:00:00,94.22028421,265.916178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644454182,4.64111284,-13.03220311,13.03220311,1,0,#DIV/0!,0,0,1,0.431427831,0,0.076582927,0.961238037,1,0.530382443,0.805885847,0,0,0.115824807,0.092273214,0.724496596,0.448993192,0.990845939,0.952083976,0,0,0,0,0,0,0.258863419,74.99736784,-0.258863419,105.0026322,0.85684795,0,0,0,0,10,18,0% -2018-10-07 03:00:00,106.0632221,275.1619505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85115244,4.802482013,-3.143397389,3.143397389,1,0.932293698,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03746838,87.85271734,-0.03746838,92.14728266,0,0,0,0,0,10,19,0% -2018-10-07 04:00:00,117.7215235,285.231943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054628185,4.978236537,-1.554400275,1.554400275,1,0.795971792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189817487,100.9421331,0.189817487,79.05786688,0,0.786589073,0,0,0,10,20,0% -2018-10-07 05:00:00,128.7692772,297.2788002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247447863,5.18849386,-0.844725812,0.844725812,1,0.674610311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407508825,114.0484388,0.407508825,65.95156117,0,0.927303271,0,0,0,10,21,0% -2018-10-07 06:00:00,138.4838867,313.0235758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416999784,5.463292035,-0.401559951,0.401559951,1,0.598824486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600775852,126.9254842,0.600775852,53.0745158,0,0.966774285,0,0,0,10,22,0% -2018-10-07 07:00:00,145.5462705,334.5433612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540261635,5.838883144,-0.065242199,0.065242199,1,0.541310763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756455001,139.1526675,0.756455001,40.84733252,0,0.983902215,0,0,0,10,23,0% -2018-10-08 08:00:00,148.0461353,1.602227104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.583892506,0.027964138,0.229640341,-0.229640341,1,0.490882878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86394581,149.7625477,0.86394581,30.23745233,0,0.992126,0,0,0,10,0,0% -2018-10-08 09:00:00,144.967746,28.25449656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530164477,0.493133993,0.523057777,-0.523057777,1,0.440705542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915933074,156.3385853,0.915933074,23.6614147,0,0.995410859,0,0,0,10,1,0% -2018-10-08 10:00:00,137.5343412,49.07880925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400427088,0.856586814,0.85489035,-0.85489035,1,0.38395883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908885127,155.3517361,0.908885127,24.6482639,0,0.994987547,0,0,0,10,2,0% -2018-10-08 11:00:00,127.6314085,64.32580233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227588307,1.122697045,1.29069969,-1.29069969,1,0.309431043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843294345,147.489647,0.843294345,32.51035298,0,0.990708721,0,0,0,10,3,0% -2018-10-08 12:00:00,116.5000538,76.09722173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033309517,1.328147071,1.994339027,-1.994339027,1,0.18910163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723643521,136.3561214,0.723643521,43.64387856,0,0.980905206,0,0,0,10,4,0% -2018-10-08 13:00:00,104.8185417,86.04414281,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82942867,1.501753594,3.632664261,-3.632664261,1,0,#DIV/0!,0,0,0.08346725,1,0.268626553,0,0.929151629,0.967913592,0.724496596,1,0,0,0.013734231,0.312029739,0.961790658,0.686287254,0.961238037,0.922476074,0,0,0,0,0,0,-0.558100344,123.9245254,0.558100344,56.07547458,0,0.960410376,0,0,0,10,5,0% -2018-10-08 14:00:00,92.99531182,95.27414029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62307438,1.66284744,17.28165719,-17.28165719,1,0,#DIV/0!,0,0,0.70804486,1,0.057800367,0,0.955740478,0.994502441,0.724496596,1,0,0,0.090608371,0.312029739,0.775377742,0.499874338,0.961238037,0.922476074,0,0,0,0,0,0,-0.357960774,110.9750129,0.357960774,69.0249871,0,0.910319891,0,0,0,10,6,0% -2018-10-08 15:00:00,81.2459156,104.6266796,84.22095856,339.6534854,32.52778956,32.18184985,0,32.18184985,31.54695669,0.634893161,67.30356404,45.90238469,21.40117935,0.98083287,20.42034648,1.418008731,1.826080044,-5.343750717,5.343750717,0.556011117,0.556011117,0.386219655,0.461877378,14.85556418,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.32413471,0.710610075,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.334628588,14.27973334,30.6587633,14.99034342,0,45.90238469,-0.135144748,97.76699004,0.135144748,82.23300996,0,0.680026318,30.6587633,46.20517307,60.89912498,10,7,99% -2018-10-08 16:00:00,70.17077232,114.8950567,282.3311003,646.8089154,62.92197873,121.9083993,58.7554193,63.15298,61.02464891,2.128331091,70.3517738,0,70.3517738,1.897329816,68.45444398,1.224711016,2.005297033,-1.964513829,1.964513829,0.86610534,0.86610534,0.222865914,1.906869507,61.33147815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65921372,1.374608993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.381520466,58.95414966,60.04073419,60.32875865,58.7554193,0,0.090838914,84.78812899,-0.090838914,95.21187101,0.4995751,0,89.39347868,60.32875865,128.8774446,10,8,44% -2018-10-08 17:00:00,60.03615009,126.9747308,464.9689445,771.8834015,79.44908411,318.1777295,237.6191962,80.55853339,77.05340109,3.505132307,115.1327868,0,115.1327868,2.395683022,112.7371038,1.047828489,2.216127118,-0.945360012,0.945360012,0.691819773,0.691819773,0.170869657,2.609495372,83.93034124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.06665999,1.735664194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890570514,80.67703644,75.95723051,82.41270064,237.6191962,0,0.307843381,72.07068941,-0.307843381,107.9293106,0.887579747,0,286.8632164,82.41270064,340.8006807,10,9,19% -2018-10-08 18:00:00,51.58020187,141.869032,606.3188046,831.2413529,89.77001456,507.7151485,416.0813439,91.63380466,87.0631174,4.570687259,149.715911,0,149.715911,2.706897155,147.0090139,0.900244352,2.476081715,-0.392345654,0.392345654,0.597248748,0.597248748,0.148057447,3.002388797,96.56714437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.68838005,1.961137774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175220463,92.82401228,85.86360052,94.78515005,416.0813439,0,0.500554192,59.96332817,-0.500554192,120.0366718,0.950110716,0,481.1869439,94.78515005,543.2219289,10,10,13% -2018-10-08 19:00:00,45.8381334,160.247232,694.0636522,859.0143893,95.59880185,661.2307438,563.2824536,97.94829023,92.71614525,5.232144984,171.1664247,0,171.1664247,2.882656598,168.2837681,0.800026351,2.796841816,0.004443124,-0.004443124,0.529393871,0.529393871,0.137737802,3.109014451,99.9965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.12228544,2.088474892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252470386,96.12052769,91.37475583,98.20900259,563.2824536,0,0.655731104,49.02489062,-0.655731104,130.9751094,0.973749232,0,639.8706126,98.20900259,704.1464407,10,11,10% -2018-10-08 20:00:00,43.93802397,181.2710718,721.4017954,866.6297528,97.34969956,760.8825133,661.0300349,99.85247839,94.41424694,5.438231455,177.84767,0,177.84767,2.935452624,174.9122174,0.766863185,3.163777042,0.349575755,-0.349575755,0.470372715,0.470372715,0.134945186,2.946669644,94.77502485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.75456538,2.126725433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.134852126,91.10135883,92.8894175,93.22808426,661.0300349,0,0.762759452,40.29192731,-0.762759452,139.7080727,0.984448534,0,743.6394666,93.22808426,804.6553831,10,12,8% -2018-10-08 21:00:00,46.36857427,202.0877079,686.2751531,856.7624236,95.09482816,795.0877628,697.6869626,97.40080022,92.22736823,5.173431988,169.2628162,0,169.2628162,2.867459932,166.3953563,0.80928429,3.527095882,0.703077555,-0.703077555,0.409920346,0.409920346,0.13856662,2.543702474,81.81421548,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65245438,2.077464959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842903783,78.64293587,90.49535816,80.72040083,697.6869626,0,0.814329554,35.47887641,-0.814329554,144.5211236,0.988599797,0,780.2285477,80.72040083,833.0584357,10,13,7% -2018-10-08 22:00:00,52.51769057,220.0271613,591.3107882,825.9019937,88.73584285,756.9612548,666.4435745,90.51768028,86.06012979,4.457550492,146.0458596,0,146.0458596,2.675713062,143.3701466,0.916606616,3.840198409,1.129657073,-1.129657073,0.336970953,0.336970953,0.150066335,1.945583907,62.57666634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72427021,1.938545005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409568917,60.1510719,84.13383913,62.08961691,666.4435745,0,0.806928158,36.20311922,-0.806928158,143.7968808,0.988036615,0,742.6044926,62.08961691,783.2409051,10,14,5% -2018-10-08 23:00:00,61.23795413,234.5095148,443.9089094,760.9208805,77.7742646,642.6842303,563.9087738,78.77545644,75.42908357,3.346372867,109.9760355,0,109.9760355,2.345181034,107.6308545,1.068803927,4.092963161,1.75567184,-1.75567184,0.229916123,0.229916123,0.175203207,1.2208816,39.26774901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50530421,1.699075676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.884524563,37.74565397,73.38982878,39.44472965,563.9087738,0,0.741087265,42.17588364,-0.741087265,137.8241164,0.982531562,0,627.4479973,39.44472965,653.2637839,10,15,4% -2018-10-08 00:00:00,71.53171718,246.2961911,257.2741408,622.2752398,60.15001121,446.9598661,386.6841585,60.27570758,58.33626644,1.939441146,64.19283882,0,64.19283882,1.813744768,62.37909405,1.248463984,4.298679469,2.987938364,-2.987938364,0.019186136,0.019186136,0.233797346,0.481946885,15.5010685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.07503823,1.31405191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.349168877,14.90021665,56.4242071,16.21426856,386.6841585,0,0.621403736,51.58128471,-0.621403736,128.4187153,0.969537014,0,431.3288116,16.21426856,441.9407261,10,16,2% -2018-10-08 01:00:00,82.68801947,256.386299,61.56017985,274.6520995,26.60465489,151.7084078,125.4419148,26.26649303,25.80242639,0.464066639,15.72820683,0,15.72820683,0.802228506,14.92597832,1.443178192,4.474785074,7.744930374,-7.744930374,0,0,0.432173118,0.200557126,6.450606597,0.442681898,1,0.128406305,0,0.947954173,0.986716136,0.724496596,1,25.01692096,0.581211822,0.062586643,0.312029739,0.837896356,0.562392952,0.961238037,0.922476074,0.137251936,6.200568422,25.1541729,6.781780243,69.91104991,0,0.456730223,62.82368477,-0.456730223,117.1763152,0.940526185,0,90.90734596,6.781780243,95.34588549,10,17,5% -2018-10-08 02:00:00,94.50772719,265.6559303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649471008,4.63657066,-12.21373984,12.21373984,1,0,#DIV/0!,0,0,1,0.382268466,0,0.081692786,0.961238037,1,0.519085284,0.794588688,0,0,0.115824807,0.079515498,0.724496596,0.448993192,0.992231658,0.953469695,0,0,0,0,0,0,0.254458579,75.2584942,-0.254458579,104.7415058,0.853504365,0,0,0,0,10,18,0% -2018-10-08 03:00:00,106.3509436,274.892149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856174128,4.797773088,-3.091838313,3.091838313,1,0.941110819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.033156964,88.09989765,-0.033156964,91.90010235,0,0,0,0,0,10,19,0% -2018-10-08 04:00:00,118.018973,284.9516965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059819659,4.973345312,-1.540279139,1.540279139,1,0.793556935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.193959006,101.183918,0.193959006,78.81608198,0,0.792213568,0,0,0,10,20,0% -2018-10-08 05:00:00,129.0874416,296.9955062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253000879,5.183549448,-0.839645329,0.839645329,1,0.673741497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.411415687,114.2937971,0.411415687,65.70620285,0,0.928468416,0,0,0,10,21,0% -2018-10-08 06:00:00,138.8336558,312.7729556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423104407,5.458917886,-0.400051994,0.400051994,1,0.59856661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604399475,127.1856409,0.604399475,52.81435911,0,0.967273257,0,0,0,10,22,0% -2018-10-08 07:00:00,145.9275578,334.4267508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546916352,5.836847908,-0.065685882,0.065685882,1,0.541386637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759766314,139.443601,0.759766314,40.55639899,0,0.984190291,0,0,0,10,23,0% -2018-10-09 08:00:00,148.4251277,1.749394698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59050717,0.030532697,0.227738468,-0.227738468,1,0.491208118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866937256,150.1046562,0.866937256,29.89534377,0,0.992325699,0,0,0,10,0,0% -2018-10-09 09:00:00,145.2941873,28.6173024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535861952,0.49946615,0.519652413,-0.519652413,1,0.441287893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918619118,156.725034,0.918619118,23.27496598,0,0.995570477,0,0,0,10,1,0% -2018-10-09 10:00:00,137.7970066,49.50021352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405011465,0.863941706,0.849412836,-0.849412836,1,0.38489554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911301249,155.6857984,0.911301249,24.31420159,0,0.995133401,0,0,0,10,2,0% -2018-10-09 11:00:00,127.8476164,64.73111902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231361847,1.129771155,1.281544434,-1.281544434,1,0.310996684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845494587,147.7249656,0.845494587,32.27503443,0,0.990863016,0,0,0,10,3,0% -2018-10-09 12:00:00,116.6893674,76.47413394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036613662,1.33472543,1.976512828,-1.976512828,1,0.192150089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725696751,136.5268402,0.725696751,43.47315979,0,0.981100697,0,0,0,10,4,0% -2018-10-09 13:00:00,104.9964529,86.39920821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832533806,1.507950654,3.581109839,-3.581109839,1,0,#DIV/0!,0,0,0.076000921,1,0.272306637,0,0.928600805,0.967362769,0.724496596,1,0,0,0.012548162,0.312029739,0.965032206,0.689528802,0.961238037,0.922476074,0,0,0,0,0,0,-0.560085506,124.0617113,0.560085506,55.93828874,0,0.960727917,0,0,0,10,5,0% -2018-10-09 14:00:00,93.17428171,95.61712694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626197994,1.668833686,16.25908818,-16.25908818,1,0,#DIV/0!,0,0,0.692337431,1,0.061426688,0,0.955369004,0.994130967,0.724496596,1,0,0,0.089099748,0.312029739,0.778583719,0.503080315,0.961238037,0.922476074,0,0,0,0,0,0,-0.359961438,111.0978278,0.359961438,68.90217219,0,0.911096232,0,0,0,10,6,0% -2018-10-09 15:00:00,81.43517613,104.966139,81.32315556,333.0951248,31.71587189,31.37256963,0,31.37256963,30.75952133,0.613048298,66.37803099,45.70393984,20.67409115,0.956350557,19.71774059,1.42131195,1.832004729,-5.441222582,5.441222582,0.539342447,0.539342447,0.389998048,0.440780496,14.17701591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.5672219,0.692872723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.319343969,13.62748694,29.88656587,14.32035967,0,45.70393984,-0.137209873,97.88642563,0.137209873,82.11357437,0,0.685594737,29.88656587,45.65474027,59.76668028,10,7,100% -2018-10-09 16:00:00,70.3853888,115.2357928,278.6426498,644.5090326,62.28625496,119.5963879,57.08776739,62.50862056,60.40809456,2.100525993,69.43829686,0,69.43829686,1.878160399,67.56013646,1.22845678,2.011244,-1.976002809,1.976002809,0.868070072,0.868070072,0.223534534,1.885350141,60.63934139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.06655823,1.360720816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.365929759,58.28884147,59.43248799,59.64956229,57.08776739,0,0.088575589,84.91833292,-0.088575589,95.08166708,0.485510389,0,87.14919212,59.64956229,126.1886376,10,8,45% -2018-10-09 17:00:00,60.28711971,127.3127921,460.8822985,770.801002,78.83175468,315.2846366,235.3556247,79.92901186,76.45468642,3.474325444,114.1233174,0,114.1233174,2.377068262,111.7462492,1.052208735,2.222027402,-0.946318326,0.946318326,0.691983654,0.691983654,0.171045308,2.587220387,83.21390116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49115268,1.722177864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.874432363,79.98836699,75.36558504,81.71054485,235.3556247,0,0.305339023,72.22143852,-0.305339023,107.7785615,0.886247593,0,283.9489409,81.71054485,337.4268583,10,9,19% -2018-10-09 18:00:00,51.87845224,142.1810319,601.8725094,830.5606527,89.141022,504.4137964,413.4235359,90.9902605,86.45309129,4.537169208,148.6188889,0,148.6188889,2.687930709,145.9309581,0.905449802,2.48152714,-0.389967528,0.389967528,0.596842065,0.596842065,0.148106153,2.978888586,95.81129679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.10199975,1.947396648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.15819464,92.09746283,85.26019439,94.04485948,413.4235359,0,0.497764413,60.14779535,-0.497764413,119.8522047,0.949550875,0,477.8268744,94.04485948,539.377354,10,10,13% -2018-10-09 19:00:00,46.18612929,160.4789971,689.276963,858.4565933,94.95211069,657.538892,560.2538768,97.28501512,92.08895422,5.196060899,169.9863363,0,169.9863363,2.863156473,167.1231799,0.806100025,2.800886879,0.008713482,-0.008713482,0.528663596,0.528663596,0.137756106,3.084345711,99.20316044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51940557,2.074347118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.234597968,95.35785119,90.75400354,97.43219831,560.2538768,0,0.652629243,49.25986988,-0.652629243,130.7401301,0.973386823,0,636.0977446,97.43219831,699.8651697,10,11,10% -2018-10-09 20:00:00,44.31901982,181.3583328,716.3086681,866.0487864,96.6846678,756.7945831,657.6254774,99.16910565,93.76926834,5.39983731,176.5927292,0,176.5927292,2.915399463,173.6773297,0.773512817,3.165300034,0.355643608,-0.355643608,0.469335051,0.469335051,0.134976264,2.921107995,93.95287435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13458742,2.112196986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.116332798,90.3110765,92.25092022,92.42327349,657.6254774,0,0.759339991,40.59395257,-0.759339991,139.4060474,0.984153343,0,739.4552322,92.42327349,799.9444162,10,12,8% -2018-10-09 21:00:00,46.75119697,202.0205318,680.9302487,856.0220513,94.41152561,790.5968869,693.8990773,96.69780962,91.56466977,5.133139841,167.9462782,0,167.9462782,2.846855839,165.0994223,0.815962316,3.525923436,0.711619614,-0.711619614,0.408459568,0.408459568,0.138650803,2.517687667,80.97748986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.01544342,2.062537364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824056144,77.83864338,89.83949956,79.90118074,693.8990773,0,0.810608881,35.84453651,-0.810608881,144.1554635,0.988317972,0,775.6324282,79.90118074,827.926153,10,13,7% -2018-10-09 22:00:00,52.87865226,219.8566543,585.7917221,824.7824376,88.03130114,752.0466448,662.2538668,89.79277805,85.37683261,4.41594544,144.6864536,0,144.6864536,2.65446853,142.0319851,0.922906586,3.8372225,1.14254816,-1.14254816,0.334766447,0.334766447,0.150277475,1.919770748,61.74642642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.06745897,1.923153414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.390867372,59.35301371,83.45832634,61.27616713,662.2538668,0,0.802943706,36.58786783,-0.802943706,143.4121322,0.987729134,0,737.5857646,61.27616713,777.6897904,10,14,5% -2018-10-09 23:00:00,61.57109525,234.288769,438.3260438,758.9117606,77.03250321,637.2526899,559.238714,78.01397588,74.70968902,3.304286868,108.6000383,0,108.6000383,2.322814191,106.2772241,1.074618336,4.089110419,1.778218253,-1.778218253,0.226060459,0.226060459,0.175742474,1.196398043,38.48027364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8137948,1.682870975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866786309,36.98870269,72.68058111,38.67157367,559.238714,0,0.736895569,42.53236713,-0.736895569,137.4676329,0.98214778,0,621.9356428,38.67157367,647.2454144,10,15,4% -2018-10-09 00:00:00,71.84069785,246.0542563,251.8384125,617.7903855,59.29782155,440.6341497,381.2259119,59.40823777,57.50977344,1.89846433,62.84918689,0,62.84918689,1.788048105,61.06113878,1.253856714,4.294456911,3.041587596,-3.041587596,0.010011577,0.010011577,0.235459797,0.461543353,14.84482077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.28058172,1.295434766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334386588,14.26940637,55.61496831,15.56484114,381.2259119,0,0.61707971,51.89680836,-0.61707971,128.1031916,0.968973191,0,425.0126566,15.56484114,435.1995338,10,16,2% -2018-10-09 01:00:00,82.97716603,256.134121,57.37453862,262.3157085,25.30253708,143.6442382,118.6721525,24.97208573,24.53957223,0.432513507,14.674086,0,14.674086,0.762964849,13.91112115,1.448224751,4.470383739,8.071122756,-8.071122756,0,0,0.441006371,0.190741212,6.134893056,0.459485635,1,0.123270294,0,0.94855954,0.987321504,0.724496596,1,23.79138369,0.552765436,0.064535204,0.312029739,0.833346361,0.557842957,0.961238037,0.922476074,0.130549545,5.897092558,23.92193324,6.449857994,64.14400309,0,0.452402005,63.10210115,-0.452402005,116.8978988,0.939478828,0,84.18386605,6.449857994,88.40516911,10,17,5% -2018-10-09 02:00:00,94.79272965,265.3953568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654445239,4.632022796,-11.4988606,11.4988606,1,0,#DIV/0!,0,0,1,0.331807478,0,0.08674689,0.961238037,1,0.508116774,0.783620178,0,0,0.115824807,0.067121292,0.724496596,0.448993192,0.993541351,0.954779388,0,0,0,0,0,0,0.250081805,75.51764695,-0.250081805,104.4823531,0.850065423,0,0,0,0,10,18,0% -2018-10-09 03:00:00,106.6359683,274.6214292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861148747,4.793048136,-3.042471902,3.042471902,1,0.949552972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02888495,88.34478404,-0.02888495,91.65521596,0,0,0,0,0,10,19,0% -2018-10-09 04:00:00,118.3134995,284.6696677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064960116,4.968422982,-1.526584909,1.526584909,1,0.791215084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.198051553,101.4230422,0.198051553,78.57695777,0,0.79754048,0,0,0,10,20,0% -2018-10-09 05:00:00,129.4025846,296.709121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258501162,5.178551081,-0.8347111,0.8347111,1,0.672897695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415266432,114.5360961,0.415266432,65.46390389,0,0.929595373,0,0,0,10,21,0% -2018-10-09 06:00:00,139.1806367,312.5176198,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429160366,5.454461436,-0.398607474,0.398607474,1,0.598319582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607962743,127.4423414,0.607962743,52.55765865,0,0.967758118,0,0,0,10,22,0% -2018-10-09 07:00:00,146.3067851,334.3053749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553535117,5.834729499,-0.06615881,0.06615881,1,0.541467512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763016237,139.7308291,0.763016237,40.26917087,0,0.984470595,0,0,0,10,23,0% -2018-10-10 08:00:00,148.8026349,1.895933344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597095914,0.033090279,0.225826108,-0.225826108,1,0.491535151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869869544,150.4434832,0.869869544,29.55651678,0,0.992520117,0,0,0,10,0,0% -2018-10-10 09:00:00,145.6190238,28.9819936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541531419,0.505831212,0.516251352,-0.516251352,1,0.441869509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921251347,157.1097113,0.921251347,22.89028868,0,0.995725995,0,0,0,10,1,0% -2018-10-10 10:00:00,138.0582128,49.92231664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409570373,0.871308796,0.843958394,-0.843958394,1,0.385828304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913671642,156.0177814,0.913671642,23.98221863,0,0.995275745,0,0,0,10,2,0% -2018-10-10 11:00:00,128.0628844,65.13582802,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235118983,1.13683466,1.272450829,-1.272450829,1,0.312551782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847659369,147.9579948,0.847659369,32.04200516,0,0.991014042,0,0,0,10,3,0% -2018-10-10 12:00:00,116.8783249,76.8497067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039911594,1.341280411,1.95887501,-1.95887501,1,0.195166334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727726268,136.6961163,0.727726268,43.30388374,0,0.981292847,0,0,0,10,4,0% -2018-10-10 13:00:00,105.1745276,86.75248675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835641796,1.514116528,3.530604978,-3.530604978,1,0,#DIV/0!,0,0,0.068567688,1,0.276008377,0,0.928043877,0.96680584,0.724496596,1,0,0,0.011359306,0.312029739,0.968292416,0.692789012,0.961238037,0.922476074,0,0,0,0,0,0,-0.562059368,124.1983367,0.562059368,55.80166328,0,0.961041426,0,0,0,10,5,0% -2018-10-10 14:00:00,93.35384043,95.95792555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629331885,1.674781744,15.34261561,-15.34261561,1,0,#DIV/0!,0,0,0.676750761,1,0.065085874,0,0.954991013,0.993752976,0.724496596,1,0,0,0.087585614,0.312029739,0.781819745,0.506316341,0.961238037,0.922476074,0,0,0,0,0,0,-0.361963025,111.2208011,0.361963025,68.77919888,0,0.911864344,0,0,0,10,6,0% -2018-10-10 15:00:00,81.62525487,105.3029036,78.43137639,326.3724668,30.89621802,30.55583189,0,30.55583189,29.96458305,0.591248845,65.40724274,45.45901252,19.94823022,0.931634968,19.01659525,1.42462945,1.837882379,-5.543581722,5.543581722,0.521838003,0.521838003,0.39392676,0.419904226,13.50556331,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.80309699,0.674966363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.304219182,12.98206116,29.10731617,13.65702752,0,45.45901252,-0.139285685,98.00651402,0.139285685,81.99348598,0,0.691025565,29.10731617,45.07036733,58.60497018,10,7,101% -2018-10-10 16:00:00,70.6010671,115.5730995,274.9319237,642.1465998,61.64706282,117.2721941,55.41146468,61.8607294,59.78817642,2.072552972,68.51931434,0,68.51931434,1.858886398,66.66042795,1.232221076,2.017131114,-1.987872243,1.987872243,0.870099864,0.870099864,0.224226645,1.863695459,59.94285237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.47066933,1.346756867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.350241016,57.61934974,58.82091035,58.96610661,55.41146468,0,0.086290988,85.04973416,-0.086290988,94.95026584,0,0,58.82091035,58.96610661,97.4130478,10,8,66% -2018-10-10 17:00:00,60.53908839,127.6463893,456.767979,769.6890522,78.21206614,312.3637099,233.0667161,79.29699374,75.85368378,3.443309966,113.1070672,0,113.1070672,2.358382366,110.7486848,1.056606419,2.227849772,-0.947369518,0.947369518,0.692163419,0.692163419,0.171229311,2.564832289,82.49382296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91344608,1.708639996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.858212262,79.29620043,74.77165834,81.00484043,233.0667161,0,0.302806329,72.37376404,-0.302806329,107.626236,0.884877956,0,281.0072577,81.00484043,334.0233056,10,9,19% -2018-10-10 18:00:00,52.17724101,142.4874386,597.3985301,829.8615658,88.51009869,501.0781974,410.7335623,90.34463511,85.84119265,4.503442462,147.5150961,0,147.5150961,2.668906043,144.8461901,0.91066465,2.486874947,-0.387619104,0.387619104,0.59644046,0.59644046,0.148159217,2.955300919,95.05263632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.5138195,1.933613343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.141105455,91.36820954,84.65492496,93.30182288,410.7335623,0,0.494942264,60.33405676,-0.494942264,119.6659432,0.948978116,0,474.4320871,93.30182288,535.4962641,10,10,13% -2018-10-10 19:00:00,46.53374136,160.7049342,684.4664504,857.8851109,94.30387524,653.8114755,557.1914128,96.62006268,91.46026546,5.159797223,168.8004252,0,168.8004252,2.843609783,165.9568154,0.812167,2.804830227,0.012980076,-0.012980076,0.527933966,0.527933966,0.137777206,3.059625109,98.4080609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.91508602,2.060185608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216687976,94.59357127,90.13177399,96.65375688,557.1914128,0,0.64949421,49.49652164,-0.64949421,130.5034784,0.97301702,0,632.2885019,96.65375688,695.5464527,10,11,10% -2018-10-10 20:00:00,44.69862156,181.4416391,711.1989051,865.4560418,96.01856049,752.6739866,654.1894222,98.48456438,93.12324662,5.361317759,175.3337224,0,175.3337224,2.89531387,172.4384085,0.780138117,3.166754002,0.361727756,-0.361727756,0.4682946,0.4682946,0.135009432,2.895539661,93.13050885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.51360677,2.097645043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.097808628,89.5205875,91.6114154,91.61823254,654.1894222,0,0.755889832,40.8968178,-0.755889832,139.1031822,0.983852795,0,735.2375066,91.61823254,795.1998074,10,12,8% -2018-10-10 21:00:00,47.13190822,201.9521884,675.5786791,855.2697521,93.72771269,786.0798712,690.0855974,95.99427378,90.90147633,5.092797449,166.6281087,0,166.6281087,2.826236356,163.8018723,0.822606981,3.524730619,0.720206614,-0.720206614,0.406991105,0.406991105,0.138736931,2.491719085,80.14225101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37795665,2.047598619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805241995,77.03578003,89.18319865,79.08337865,690.0855974,0,0.806863093,36.20943037,-0.806863093,143.7905696,0.988031618,0,771.0095883,79.08337865,822.768078,10,13,7% -2018-10-10 22:00:00,53.23761453,219.686536,580.2781399,823.6476091,87.32686498,747.1150603,658.0470407,89.06801953,84.6936378,4.374381729,143.3283804,0,143.3283804,2.633227181,140.6951533,0.929171659,3.834253375,1.155546938,-1.155546938,0.332543525,0.332543525,0.150491392,1.894063453,60.91959144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.41074613,1.907764129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372242524,58.55822848,82.78298865,60.46599261,658.0470407,0,0.798942452,36.97076766,-0.798942452,143.0292323,0.98741727,0,732.550001,60.46599261,772.1237838,10,14,5% -2018-10-10 23:00:00,61.90220773,234.0687302,432.7626344,756.8748837,76.29129819,631.813575,554.5603934,77.2531816,73.99083406,3.262347538,107.2287752,0,107.2287752,2.300464125,104.9283111,1.080397339,4.085270017,1.801068154,-1.801068154,0.222152896,0.222152896,0.176289014,1.172092292,37.69851714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12280408,1.666678428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849176875,36.2372486,71.97198095,37.90392703,554.5603934,0,0.732697577,42.88697926,-0.732697577,137.1130207,0.981759021,0,616.4166498,37.90392703,641.224012,10,15,4% -2018-10-10 00:00:00,72.14752487,245.8128316,246.4403619,613.2267422,58.44515813,434.302347,375.7617545,58.54059251,56.68282097,1.857771545,61.51465608,0,61.51465608,1.762337157,59.75231893,1.259211856,4.290243254,3.096575244,-3.096575244,0.000608135,0.000608135,0.237157411,0.441446131,14.19842503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.48568355,1.276807271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319826219,13.6480662,54.80550977,14.92487347,375.7617545,0,0.612761526,52.21055174,-0.612761526,127.7894483,0.968402188,0,418.6940149,14.92487347,428.4620461,10,16,2% -2018-10-10 01:00:00,83.26373495,255.882097,53.30253535,249.8262256,23.99808508,135.6224087,111.9461374,23.6762713,23.27445427,0.401817027,13.64744762,0,13.64744762,0.723630809,12.92381681,1.453226322,4.465985089,8.421768417,-8.421768417,0,0,0.450224083,0.180907702,5.818613568,0.476454464,1,0.118186536,0,0.949152786,0.987914749,0.724496596,1,22.56333681,0.524268058,0.066476908,0.312029739,0.828842431,0.553339027,0.961238037,0.922476074,0.12385011,5.593072683,22.68718692,6.117340741,58.60890054,0,0.44809602,63.37840796,-0.44809602,116.621592,0.938416773,0,77.68676222,6.117340741,81.69043939,10,17,5% -2018-10-10 02:00:00,95.07516979,265.1344938,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65937475,4.627469878,-10.86934724,10.86934724,1,0,#DIV/0!,0,0,1,0.280016926,0,0.091743577,0.961238037,1,0.497473935,0.772977339,0,0,0.115824807,0.055084453,0.724496596,0.448993192,0.994778616,0.956016653,0,0,0,0,0,0,0.245735319,75.77470704,-0.245735319,104.225293,0.846529045,0,0,0,0,10,18,0% -2018-10-10 03:00:00,106.9181726,274.3498333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866074141,4.788307894,-2.9951865,2.9951865,1,0.957639252,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024654434,88.58726184,-0.024654434,91.41273816,0,0,0,0,0,10,19,0% -2018-10-10 04:00:00,118.6049738,284.3858971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070047303,4.963470251,-1.513307633,1.513307633,1,0.788944536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202093236,101.6593925,0.202093236,78.34060749,0,0.802589443,0,0,0,10,20,0% -2018-10-10 05:00:00,129.7145676,296.4196613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263946293,5.173499057,-0.829921947,0.829921947,1,0.672078701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419059428,114.7752195,0.419059428,65.22478049,0,0.930685181,0,0,0,10,21,0% -2018-10-10 06:00:00,139.5246824,312.2575093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435165096,5.449921651,-0.397226619,0.397226619,1,0.598083442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611464333,127.6954592,0.611464333,52.30454077,0,0.968229082,0,0,0,10,22,0% -2018-10-10 07:00:00,146.6838183,334.1790588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560115589,5.832524868,-0.06666144,0.06666144,1,0.541553467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766203772,140.0142041,0.766203772,39.98579588,0,0.984743208,0,0,0,10,23,0% -2018-10-11 08:00:00,149.178558,2.041687497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603657011,0.035634169,0.223902826,-0.223902826,1,0.491864051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872742002,150.7788583,0.872742002,29.22114167,0,0.9927093,0,0,0,10,0,0% -2018-10-11 09:00:00,145.9421867,29.34842705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547171676,0.512226682,0.512854234,-0.512854234,1,0.44245045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923829393,157.4924942,0.923829393,22.50750582,0,0.995877453,0,0,0,10,1,0% -2018-10-11 10:00:00,138.3179229,50.34494922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414103169,0.878685126,0.838526731,-0.838526731,1,0.386757173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915996197,156.3475987,0.915996197,23.65240132,0,0.995414621,0,0,0,10,2,0% -2018-10-11 11:00:00,128.2771958,65.53977246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238859422,1.14388482,1.26341847,-1.26341847,1,0.314096407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849788782,148.1887036,0.849788782,31.81129642,0,0.99116185,0,0,0,10,3,0% -2018-10-11 12:00:00,117.0669167,77.22380241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043203141,1.347809613,1.94142367,-1.94142367,1,0.198150689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729732284,136.8639552,0.729732284,43.13604481,0,0.981481721,0,0,0,10,4,0% -2018-10-11 13:00:00,105.3527539,87.10385367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838752432,1.520249038,3.481122383,-3.481122383,1,0,#DIV/0!,0,0,0.061168002,1,0.279731524,0,0.927480839,0.966242802,0.724496596,1,0,0,0.010167767,0.312029739,0.971571081,0.696067677,0.961238037,0.922476074,0,0,0,0,0,0,-0.564022179,124.3344172,0.564022179,55.66558283,0,0.961351004,0,0,0,10,5,0% -2018-10-11 14:00:00,93.53396807,96.29641786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632475705,1.68068955,14.51663391,-14.51663391,1,0,#DIV/0!,0,0,0.66128527,1,0.068777839,0,0.954606433,0.993368396,0.724496596,1,0,0,0.086066124,0.312029739,0.785085677,0.509582273,0.961238037,0.922476074,0,0,0,0,0,0,-0.363965735,111.3439461,0.363965735,68.6560539,0,0.912624431,0,0,0,10,6,0% -2018-10-11 15:00:00,81.81611302,105.636858,75.54759545,319.4837762,30.06889523,29.73171678,0,29.73171678,29.1622071,0.569509686,64.39019084,45.16611353,19.22407731,0.906688134,18.31738918,1.427960553,1.843710983,-5.651185767,5.651185767,0.503436627,0.503436627,0.398012604,0.399269065,12.84186561,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.0318227,0.656892466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.289269078,12.34408969,28.32109178,13.00098215,0,45.16611353,-0.141372166,98.12725537,0.141372166,81.87274463,0,0.696323592,28.32109178,44.45121255,57.41352137,10,7,103% -2018-10-11 16:00:00,70.8177537,115.9068662,271.2000281,639.7206441,61.0044533,114.9364667,53.72710239,61.20936431,59.16494395,2.044420367,67.595096,0,67.595096,1.839509349,65.75558665,1.236002971,2.022956441,-2.000137526,2.000137526,0.872197351,0.872197351,0.224942651,1.841911571,59.24220764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.87159457,1.332718262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334458663,56.94586337,58.20605323,58.27858164,53.72710239,0,0.083985257,85.1823243,-0.083985257,94.8176757,0,0,58.20605323,58.27858164,96.34821934,10,8,66% -2018-10-11 17:00:00,60.79197819,127.9754273,452.6273501,768.5474905,77.59010891,309.4156626,230.7530856,78.662577,75.25048085,3.412096156,112.0843694,0,112.0843694,2.339628061,109.7447414,1.061020178,2.233592568,-0.948517709,0.948517709,0.692359771,0.692359771,0.17142161,2.542339041,81.77036279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.33362448,1.695052566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841915981,78.600783,74.17554046,80.29583557,230.7530856,0,0.300245708,72.52763848,-0.300245708,107.4723615,0.883469726,0,278.0389058,80.29583557,330.5909243,10,9,19% -2018-10-11 18:00:00,52.47646517,142.7881977,592.8985707,829.1442824,87.87735519,497.7093849,408.0123363,89.69704856,85.2275287,4.469519867,146.4049493,0,146.4049493,2.649826492,143.7551228,0.915887097,2.492124183,-0.385302866,0.385302866,0.59604436,0.59604436,0.148216507,2.931635199,94.29146543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.92394237,1.919790273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123959722,90.63654312,84.04790209,92.55633339,408.0123363,0,0.492088464,60.52205708,-0.492088464,119.4779429,0.948392253,0,471.0036411,92.55633339,531.5799102,10,10,13% -2018-10-11 19:00:00,46.8808525,160.9250438,679.6341561,857.3002462,93.65422399,650.0499167,554.0963438,95.95357294,90.83020359,5.123369347,167.6091901,0,167.6091901,2.824020401,164.7851697,0.818225232,2.808671864,0.017240686,-0.017240686,0.527205359,0.527205359,0.137800938,3.034863202,97.61163285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.30944659,2.045993167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198748059,93.82801433,89.50819465,95.8740075,554.0963438,0,0.646327055,49.7347534,-0.646327055,130.2652466,0.972639785,0,628.4443433,95.8740075,691.1919637,10,11,10% -2018-10-11 20:00:00,45.07671199,181.5209968,706.0748514,864.8519174,95.35152409,748.5225529,650.7235386,97.79901431,92.47632383,5.322690477,174.0712226,0,174.0712226,2.875200261,171.1960224,0.78673704,3.168139055,0.367825796,-0.367825796,0.467251774,0.467251774,0.135044498,2.869976027,92.3082945,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89175998,2.083072802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.079287862,88.73024379,90.97104784,90.81331659,650.7235386,0,0.752410355,41.20039608,-0.752410355,138.7996039,0.983546901,0,730.9881675,90.81331659,790.423667,10,12,8% -2018-10-11 21:00:00,47.51058838,201.8826483,670.2230337,854.5060438,93.04355475,781.5389415,686.2485689,95.29037261,90.23794828,5.052424331,165.3089406,0,165.3089406,2.80560647,162.5033341,0.829216197,3.523516916,0.728835683,-0.728835683,0.405515447,0.405515447,0.138824764,2.465808539,79.30887877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.74014826,2.032652337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786469892,76.23471093,88.52661815,78.26736327,686.2485689,0,0.803093874,36.57343046,-0.803093874,143.4265695,0.987740778,0,766.3623133,78.26736327,817.5867372,10,13,7% -2018-10-11 22:00:00,53.59445164,219.5167738,574.7727985,822.4982067,86.62272216,742.1690993,653.8254917,88.34360762,84.01072748,4.33288014,141.9723142,0,141.9723142,2.611994677,139.3603195,0.935399642,3.831290466,1.168649899,-1.168649899,0.330302787,0.330302787,0.150707762,1.868473773,60.09653939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75430676,1.892381252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353702888,57.76707954,82.10800965,59.65946079,653.8254917,0,0.794926343,37.35170088,-0.794926343,142.6482991,0.987101091,0,727.4998656,59.65946079,766.5457895,10,14,5% -2018-10-11 23:00:00,62.23116389,233.8493875,427.2215173,754.8112117,75.55087005,626.369826,549.8765172,76.49330882,73.27273257,3.220576257,105.8629406,0,105.8629406,2.278137485,103.5848031,1.086138707,4.081441765,1.824218833,-1.824218833,0.218193896,0.218193896,0.17684238,1.147975529,36.92283916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.43253761,1.650502853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831704363,35.49163743,71.26424197,37.14214028,549.8765172,0,0.728495429,43.23959162,-0.728495429,136.7604084,0.981365389,0,610.8940244,37.14214028,635.2028124,10,15,4% -2018-10-11 00:00:00,72.45207184,245.5719275,241.0828994,608.5853582,57.59229448,427.9677041,370.294645,57.67305904,55.85567431,1.817384729,60.18996028,0,60.18996028,1.736620172,58.45334011,1.264527203,4.286038685,3.152928835,-3.152928835,0,0,0.238890003,0.434155043,13.96391858,0.008948105,1,0.307129553,0,0.92324917,0.962011133,0.724496596,1,53.71440721,1.258175403,0.001523808,0.312029739,0.995688073,0.720184669,0.961238037,0.922476074,0.313742099,13.42264968,54.02814931,14.68082508,366.9812097,0,0.608451452,52.52238308,-0.608451452,127.4776169,0.967824175,0,409.2014359,14.68082508,418.8097423,10,16,2% -2018-10-11 01:00:00,83.54758299,255.6302532,49.35020838,237.2076892,22.69327477,127.6573161,105.2763046,22.38101152,22.00898881,0.372022716,12.64981534,0,12.64981534,0.684285964,11.96552938,1.458180405,4.461589587,8.799511712,-8.799511712,0,0,0.459841519,0.171071491,5.502247202,0.49358151,1,0.113157207,0,0.949733828,0.988495791,0.724496596,1,21.33471268,0.495762851,0.068410733,0.312029739,0.824386615,0.548883211,0.961238037,0.922476074,0.11716115,5.288969299,21.45187383,5.78473215,53.31386722,0,0.443814891,63.65245929,-0.443814891,116.3475407,0.937340418,0,71.42511642,5.78473215,75.21110792,10,17,5% -2018-10-11 02:00:00,95.35492498,264.8733785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664257399,4.622912555,-10.3110277,10.3110277,1,0,#DIV/0!,0,0,1,0.226869845,0,0.096681178,0.961238037,1,0.487153591,0.762656995,0,0,0.115824807,0.043398708,0.724496596,0.448993192,0.995946944,0.957184981,0,0,0,0,0,0,0.241421364,76.0295544,-0.241421364,103.9704456,0.842893225,0,0,0,0,10,18,0% -2018-10-11 03:00:00,107.1974322,274.0774055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870948142,4.783553131,-2.949878711,2.949878711,1,0.965387341,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02046752,88.82721557,-0.02046752,91.17278443,0,0,0,0,0,10,19,0% -2018-10-11 04:00:00,118.8932663,284.1004281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075078955,4.958487876,-1.500437877,1.500437877,1,0.786743678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.206082162,101.8928551,0.206082162,78.10714491,0,0.807378321,0,0,0,10,20,0% -2018-10-11 05:00:00,130.023251,296.1271481,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269333835,5.168393739,-0.825276775,0.825276775,1,0.67128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422793058,115.0110509,0.422793058,64.98894908,0,0.931738834,0,0,0,10,21,0% -2018-10-11 06:00:00,139.8656445,311.9925679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441116007,5.445297551,-0.395909682,0.395909682,1,0.597858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614902941,127.9448682,0.614902941,52.05513184,0,0.968686354,0,0,0,10,22,0% -2018-10-11 07:00:00,147.0585214,334.0476234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566655391,5.830230886,-0.067194244,0.067194244,1,0.541644582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769327953,140.2935779,0.769327953,39.7064221,0,0.985008211,0,0,0,10,23,0% -2018-10-12 08:00:00,149.5527979,2.186491487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610188728,0.038161476,0.22196818,-0.22196818,1,0.492194895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875553996,151.1106089,0.875553996,28.88939114,0,0.992893299,0,0,0,10,0,0% -2018-10-12 09:00:00,146.2636087,29.71644981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552781547,0.518649891,0.509460699,-0.509460699,1,0.443030779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.92635293,157.8732577,0.92635293,22.12674233,0,0.996024891,0,0,0,10,1,0% -2018-10-12 10:00:00,138.576102,50.76793503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418609245,0.886067621,0.833117553,-0.833117553,1,0.387682197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918274851,156.6751658,0.918274851,23.32483417,0,0.995550071,0,0,0,10,2,0% -2018-10-12 11:00:00,128.4905359,65.9427915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242582909,1.15091883,1.254446965,-1.254446965,1,0.315630624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851882957,148.4170646,0.851882957,31.58293536,0,0.991306491,0,0,0,10,3,0% -2018-10-12 12:00:00,117.2551343,77.59628088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046488159,1.354310589,1.924156952,-1.924156952,1,0.201103471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731715049,137.030366,0.731715049,42.969634,0,0.981667389,0,0,0,10,4,0% -2018-10-12 13:00:00,105.5311211,87.45318235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841865526,1.526345973,3.4326358,-3.4326358,1,0,#DIV/0!,0,0,0.053802318,1,0.28347581,0,0.926911689,0.965673652,0.724496596,1,0,0,0.008973648,0.312029739,0.97486798,0.699364576,0.961238037,0.922476074,0,0,0,0,0,0,-0.56597422,124.4699703,0.56597422,55.53002974,0,0.961656754,0,0,0,10,5,0% -2018-10-12 14:00:00,93.71464502,96.63248422,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635629113,1.686555014,13.76845719,-13.76845719,1,0,#DIV/0!,0,0,0.645941393,1,0.072502472,0,0.954215197,0.99297716,0.724496596,1,0,0,0.08454144,0.312029739,0.788381351,0.512877946,0.961238037,0.922476074,0,0,0,0,0,0,-0.365969791,111.4672775,0.365969791,68.53272249,0,0.913376702,0,0,0,10,6,0% -2018-10-12 15:00:00,82.0077112,105.967886,72.67386873,312.4275831,29.23399266,28.90032624,0,28.90032624,28.35247992,0.54784632,63.32590253,44.82376893,18.5021336,0.881512741,17.62062086,1.431304572,1.849488511,-5.76442739,5.76442739,0.484071169,0.484071169,0.402262783,0.378896068,12.1866,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.25348214,0.63865298,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.274508912,11.71422346,27.52799105,12.35287644,0,44.82376893,-0.143469307,98.2486502,0.143469307,81.7513498,0,0.701493403,27.52799105,43.79645466,56.19189469,10,7,104% -2018-10-12 16:00:00,71.03539452,116.2369816,267.44809,637.2301801,60.35847876,112.5898705,52.03528585,60.5545846,58.53844793,2.016136673,66.66591666,0,66.66591666,1.820030834,64.84588582,1.23980152,2.028718041,-2.012814793,2.012814793,0.874365292,0.874365292,0.225682968,1.820004691,58.53760707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.26938277,1.318606143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318587203,56.26857451,57.58796997,57.58718065,52.03528585,0,0.08165854,85.31609498,-0.08165854,94.68390502,0,0,57.58796997,57.58718065,95.27762796,10,8,65% -2018-10-12 17:00:00,61.04571042,128.2998113,448.4618042,767.3762706,76.96597575,306.4412269,228.4153647,78.02586212,74.64516761,3.380694511,111.0555647,0,111.0555647,2.320808143,108.7347565,1.065448641,2.239254137,-0.949767197,0.949767197,0.692573446,0.692573446,0.171622143,2.51974876,81.0437817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.75177437,1.681417599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.825549399,77.90236562,73.57732377,79.58378321,228.4153647,0,0.297657581,72.68303378,-0.297657581,107.3169662,0.882021749,0,275.0446432,79.58378321,327.1306377,10,9,19% -2018-10-12 18:00:00,52.77602111,143.083255,588.3743724,828.4090132,87.24290483,494.3084222,405.2607983,89.04762391,84.61220936,4.43541455,145.288874,0,145.288874,2.630695473,142.6581785,0.921115334,2.497273904,-0.38302142,0.38302142,0.59565421,0.59565421,0.14827788,2.907901009,93.5280923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.33247402,1.905929915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.106764382,89.90275984,83.4392384,91.80868975,405.2607983,0,0.489203753,60.71174,-0.489203753,119.28826,0.947793098,0,467.5426259,91.80868975,527.6295772,10,10,13% -2018-10-12 19:00:00,47.22734527,161.1393249,674.7821661,856.7023276,93.00328859,646.25568,550.9699907,95.28568929,90.19889629,5.086792997,166.4131408,0,166.4131408,2.804392297,163.6087485,0.824272672,2.812411774,0.021492967,-0.021492967,0.526478176,0.526478176,0.137827129,3.010070737,96.81422194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70261,2.031772672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.180786002,93.06151264,88.883396,95.09328531,550.9699907,0,0.643128859,49.97447169,-0.643128859,130.0255283,0.972255083,0,624.5667699,95.09328531,686.8034232,10,11,10% -2018-10-12 20:00:00,45.45317325,181.5964098,700.9389002,864.2368403,94.68370855,744.3421634,647.2295445,97.1126189,91.82864539,5.283973508,172.8058147,0,172.8058147,2.855063158,169.9507515,0.793307529,3.16945526,0.373935174,-0.373935174,0.466207009,0.466207009,0.135081258,2.844428659,91.48660333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.26918682,2.068483539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060778881,87.94040299,90.3299657,90.00888653,647.2295445,0,0.748902979,41.50456028,-0.748902979,138.4954397,0.983235678,0,726.7091454,90.00888653,785.6181614,10,12,8% -2018-10-12 21:00:00,47.88711675,201.8118809,664.8659512,853.7314812,92.35922106,776.9763846,682.3900945,94.58629016,89.57424978,5.01204038,163.9894187,0,163.9894187,2.784971284,161.2044474,0.835787857,3.522281791,0.737503727,-0.737503727,0.404033124,0.404033124,0.138914049,2.439967993,78.47775799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.10217601,2.017702215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.767748505,75.43580602,87.86992452,77.45350824,682.3900945,0,0.799302954,36.93640922,-0.799302954,143.0635908,0.987445496,0,761.6929497,77.45350824,812.3847217,10,13,7% -2018-10-12 22:00:00,53.94903667,219.3473347,569.2785004,821.334985,85.91906511,737.2114291,649.591679,87.61975009,83.32828829,4.2914618,140.6189401,0,140.6189401,2.590776821,138.0281633,0.941588318,3.828333196,1.181853159,-1.181853159,0.328044896,0.328044896,0.150926243,1.843013567,59.27765164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09832025,1.877008987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335257056,56.9799335,81.4335773,58.85694248,649.591679,0,0.790897369,37.7305487,-0.790897369,142.2694513,0.986780672,0,722.438091,58.85694248,760.9587827,10,14,5% -2018-10-12 23:00:00,62.55783471,233.6307296,421.7055667,752.7218062,74.81144608,620.9244647,545.189865,75.73459965,72.55560495,3.178994691,104.5032381,0,104.5032381,2.255841124,102.247397,1.091840189,4.077625465,1.847666838,-1.847666838,0.214184051,0.214184051,0.177402083,1.124058945,36.15359959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.74320727,1.634349215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814376879,34.7522151,70.55758415,36.38656431,545.189865,0,0.724291313,43.59007472,-0.724291313,136.4099253,0.980967003,0,605.3708521,36.38656431,629.1851307,10,15,4% -2018-10-12 00:00:00,72.75421098,245.3315545,235.768958,603.8675165,56.73951927,421.6335858,364.8276463,56.80593941,55.02861342,1.777325994,58.87581935,0,58.87581935,1.710905853,57.1649135,1.269800526,4.281843385,3.210674969,-3.210674969,0,0,0.240657293,0.427726463,13.75715335,0.018553333,1,0.301938016,0,0.924062881,0.962824845,0.724496596,1,52.94334158,1.239545466,0.003145377,0.312029739,0.991119393,0.715615989,0.961238037,0.922476074,0.308274222,13.22389908,53.2516158,14.46344455,358.0588774,0,0.604151799,52.83216937,-0.604151799,127.1678306,0.967239343,0,399.580249,14.46344455,409.0462842,10,16,2% -2018-10-12 01:00:00,83.82856383,255.3786162,45.5236443,224.4878651,21.39036252,119.7647193,98.67617866,21.08854063,20.74536417,0.34317646,11.68273297,0,11.68273297,0.644998352,11.03773461,1.463084446,4.457197692,9.207375967,-9.207375967,0,0,0.469873685,0.161249588,5.186341042,0.510859012,1,0.108184531,0,0.950302587,0.98906455,0.724496596,1,20.10770668,0.46729911,0.070335606,0.312029739,0.819981011,0.544477607,0.961238037,0.922476074,0.110491604,4.985308282,20.21819829,5.452607392,48.26656355,0,0.439561304,63.92410605,-0.439561304,116.0758939,0.936250224,0,65.40777921,5.452607392,68.97640169,10,17,5% -2018-10-12 02:00:00,95.63187138,264.6120488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669091025,4.618351493,-9.812713166,9.812713166,1,0,#DIV/0!,0,0,1,0.172340597,0,0.10155801,0.961238037,1,0.47715239,0.752655794,0,0,0.115824807,0.032057709,0.724496596,0.448993192,0.997049707,0.958287744,0,0,0,0,0,0,0.237142211,76.28206752,-0.237142211,103.7179325,0.839156052,0,0,0,0,10,18,0% -2018-10-12 03:00:00,107.473622,273.8041912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875768563,4.778784643,-2.906452763,2.906452763,1,0.972813615,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.016326332,89.06452853,-0.016326332,90.93547147,0,0,0,0,0,10,19,0% -2018-10-12 04:00:00,119.1782462,283.8133063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080052793,4.953476656,-1.487966736,1.487966736,1,0.784610988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.210016433,102.1233153,0.210016433,77.87668472,0,0.811923392,0,0,0,10,20,0% -2018-10-12 05:00:00,130.3284942,295.8316059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274661333,5.163235555,-0.820774596,0.820774596,1,0.670514412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426465709,115.2434733,0.426465709,64.75652667,0,0.932757279,0,0,0,10,21,0% -2018-10-12 06:00:00,140.2033727,311.7227417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447010475,5.440588195,-0.394656959,0.394656959,1,0.597644004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618277284,128.1904415,0.618277284,51.80955853,0,0.969130136,0,0,0,10,22,0% -2018-10-12 07:00:00,147.4307563,333.9108835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573152116,5.827844326,-0.067757713,0.067757713,1,0.541740941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772387841,140.5688018,0.772387841,39.43119816,0,0.985265682,0,0,0,10,23,0% -2018-10-13 08:00:00,149.925255,2.330167894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616689332,0.040669102,0.220021711,-0.220021711,1,0.492527761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878304933,151.4385597,0.878304933,28.56144034,0,0.993072163,0,0,0,10,0,0% -2018-10-13 09:00:00,146.5832243,30.085898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.558359892,0.525097978,0.506070374,-0.506070374,1,0.443610559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928821679,158.2518751,0.928821679,21.74812495,0,0.996168354,0,0,0,10,1,0% -2018-10-13 10:00:00,138.8327186,51.19109053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423088049,0.893453077,0.827730554,-0.827730554,1,0.388603428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920507586,157.0004008,0.920507586,22.99959925,0,0.995682142,0,0,0,10,2,0% -2018-10-13 11:00:00,128.7028928,66.34472012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246289237,1.157933807,1.245535911,-1.245535911,1,0.317154504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853942075,148.6430556,0.853942075,31.35694437,0,0.991448019,0,0,0,10,3,0% -2018-10-13 12:00:00,117.4429717,77.96699928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049766539,1.360780845,1.907073009,-1.907073009,1,0.204024998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733674858,137.1953616,0.733674858,42.80463838,0,0.98184992,0,0,0,10,4,0% -2018-10-13 13:00:00,105.7096197,87.80034427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844980915,1.532405092,3.385119847,-3.385119847,1,0,#DIV/0!,0,0,0.046471088,1,0.287240958,0,0.926336429,0.965098393,0.724496596,1,0,0,0.007777057,0.312029739,0.978182885,0.702679481,0.961238037,0.922476074,0,0,0,0,0,0,-0.567915813,124.6050165,0.567915813,55.39498345,0,0.961958782,0,0,0,10,5,0% -2018-10-13 14:00:00,93.8958526,96.96600352,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638791782,1.692376024,13.08766518,-13.08766518,1,0,#DIV/0!,0,0,0.630719536,1,0.076259648,0,0.953817236,0.992579199,0.724496596,1,0,0,0.083011729,0.312029739,0.791706587,0.516203182,0.961238037,0.922476074,0,0,0,0,0,0,-0.36797545,111.5908121,0.36797545,68.40918789,0,0.91412137,0,0,0,10,6,0% -2018-10-13 15:00:00,82.20000999,106.2958704,69.81232971,305.2027062,28.39162243,28.06178509,0,28.06178509,27.53551026,0.52627483,62.21344833,44.43052856,17.78291977,0.85611217,16.9268076,1.434660819,1.855212919,-5.883739049,5.883739049,0.463667674,0.463667674,0.40668493,0.358806784,11.54045957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.46817982,0.620250353,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.259954294,11.0931287,26.72813412,11.71337906,0,44.43052856,-0.145577112,98.37069989,0.145577112,81.62930011,0,0.706539415,26.72813412,43.10529873,54.93969003,10,7,106% -2018-10-13 16:00:00,71.25393544,116.563334,263.6772471,634.6742004,59.70919191,110.233078,50.33662804,59.89644993,57.90873947,1.987710466,65.73205374,0,65.73205374,1.800452439,63.9316013,1.243615778,2.034413966,-2.025921025,2.025921025,0.876606589,0.876606589,0.226448025,1.797981084,57.82925218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.66408304,1.304421663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302631175,55.58767683,56.96671422,56.8920985,50.33662804,0,0.079310972,85.45103848,-0.079310972,94.54896152,0,0,56.96671422,56.8920985,94.20145484,10,8,65% -2018-10-13 17:00:00,61.30020619,128.6194466,444.2727525,766.1753577,76.3397611,303.4411446,226.0541933,77.38695131,74.03783564,3.34911567,110.0209979,0,110.0209979,2.301925461,107.7190725,1.06989043,2.244832825,-0.951122484,0.951122484,0.692805214,0.692805214,0.171830842,2.497069673,80.31434429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.16798379,1.66773716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.809118478,77.20120264,72.97710226,78.8689398,226.0541933,0,0.29504237,72.83992193,-0.29504237,107.1600781,0.880532815,0,272.0252373,78.8689398,323.6433811,10,9,19% -2018-10-13 18:00:00,53.07580515,143.3725561,583.8277056,827.6559883,86.60686318,490.8763943,402.4799078,88.39648656,83.99534671,4.401139855,144.167303,0,144.167303,2.61151647,141.5557865,0.926347553,2.502323162,-0.380777505,0.380777505,0.595270478,0.595270478,0.148343188,2.884108078,92.76282986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.73952217,1.892034793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089526485,89.16716046,82.82904866,91.05919526,402.4799078,0,0.486288885,60.90304879,-0.486288885,119.0969512,0.947180459,0,464.0501524,91.05919526,523.6465745,10,10,13% -2018-10-13 19:00:00,47.57310224,161.3477746,669.9126035,856.0917063,92.35120335,642.4302636,547.8137056,94.61655801,89.56647383,5.050084178,165.2127962,0,165.2127962,2.784729521,162.4280667,0.83030727,2.816049907,0.025734437,-0.025734437,0.525752842,0.525752842,0.137855599,2.985258623,96.01617906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.09470148,2.017527058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16280971,92.29440347,88.25751118,94.31193052,547.8137056,0,0.639900727,50.2155826,-0.639900727,129.7844174,0.97186288,0,620.6573168,94.31193052,682.3825891,10,11,10% -2018-10-13 20:00:00,45.82788711,181.6678791,695.7934872,863.6112655,94.01526692,740.1347444,643.7091994,96.42554496,91.18035975,5.245185211,171.5380938,0,171.5380938,2.834907177,168.7031866,0.799847519,3.170702636,0.380053166,-0.380053166,0.46516077,0.46516077,0.135119498,2.818909287,90.66581259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.64603,2.053880599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.042290182,87.15142771,89.68832019,89.20530831,643.7091994,0,0.745369155,41.80918363,-0.745369155,138.1908164,0.982919145,0,722.4024163,89.20530831,780.7855065,10,12,8% -2018-10-13 21:00:00,48.26137186,201.7398538,659.5101147,852.9466573,91.67488451,772.3945427,678.5123283,93.88221432,88.9105485,4.971665822,162.6701989,0,162.6701989,2.764336012,159.9058628,0.84231984,3.521024681,0.746207413,-0.746207413,0.402544706,0.402544706,0.139004516,2.414209555,77.64927807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.46420109,2.002752031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749086604,74.63943961,87.2132877,76.64219164,678.5123283,0,0.795492101,37.29823946,-0.795492101,142.7017605,0.987145825,0,757.0038996,76.64219164,807.1646812,10,13,7% -2018-10-13 22:00:00,54.30124166,219.1781843,563.7980907,820.1587557,85.21609074,732.2447818,645.3481225,86.89665935,82.64651119,4.250148157,139.2689541,0,139.2689541,2.56957955,136.6993745,0.947735455,3.825380965,1.195152434,-1.195152434,0.325770586,0.325770586,0.151146469,1.817694785,58.46331258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44297017,1.861651637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316913684,56.19715981,80.75988385,58.05881145,645.3481225,0,0.786857566,38.10719169,-0.786857566,141.8928083,0.986456098,0,717.3674747,58.05881145,755.3658056,10,14,5% -2018-10-13 23:00:00,62.88208996,233.4127439,416.217692,750.6078339,74.07326034,615.4805923,540.5032892,74.97730301,71.83967824,3.137624773,103.1503803,0,103.1503803,2.2335821,100.9167982,1.09749951,4.073820898,1.871407909,-1.871407909,0.210124089,0.210124089,0.177967592,1.100353721,35.39115812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.05503128,1.618222628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797202525,34.01932735,69.8522338,35.63754998,540.5032892,0,0.720087461,43.93829816,-0.720087461,136.0617018,0.98056399,0,599.8502958,35.63754998,623.1743595,10,15,4% -2018-10-13 00:00:00,73.05381319,245.0917221,230.5014908,599.0747528,55.88713701,415.3034786,359.3639274,55.93955123,54.20193362,1.737617602,57.57295848,0,57.57295848,1.685203382,55.8877551,1.275029571,4.27765752,3.26983908,-3.26983908,0,0,0.242458896,0.421300846,13.55048341,0.02820322,1,0.296792636,0,0.924863905,0.963625869,0.724496596,1,52.17113115,1.220924114,0.004759924,0.312029739,0.986590875,0.711087471,0.961238037,0.922476074,0.302855295,13.02524007,52.47398645,14.24616418,349.2287076,0,0.599864918,53.13977629,-0.599864918,126.8602237,0.966647901,0,390.0551836,14.24616418,399.3790131,10,16,2% -2018-10-13 01:00:00,84.10652798,255.1272121,41.82894065,211.698494,20.09190762,111.9617887,92.16040198,19.80138669,19.48606247,0.315324223,10.74775608,0,10.74775608,0.605845146,10.14191094,1.467935836,4.452809862,9.64883207,-9.64883207,0,0,0.480335082,0.151461286,4.871515618,0.52827825,1,0.103270791,0,0.950858987,0.98962095,0.724496596,1,18.88479756,0.438932746,0.072250406,0.312029739,0.815627763,0.540124359,0.961238037,0.922476074,0.103851978,4.682686109,18.98864954,5.121618855,43.47406606,0,0.435338014,64.19319581,-0.435338014,115.8068042,0.935146717,0,59.6432797,5.121618855,62.99527681,10,17,6% -2018-10-13 02:00:00,95.90588393,264.3505432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673873447,4.613787359,-9.365452893,9.365452893,1,0,#DIV/0!,0,0,1,0.116405187,0,0.106372374,0.961238037,1,0.467466815,0.742970219,0,0,0.115824807,0.021055073,0.724496596,0.448993192,0.998090159,0.959328196,0,0,0,0,0,0,0.232900159,76.53212342,-0.232900159,103.4678766,0.835315733,0,0,0,0,10,18,0% -2018-10-13 03:00:00,107.7466155,273.5302373,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880533199,4.774003245,-2.864819878,2.864819878,1,0.979933258,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012233009,89.29908275,-0.012233009,90.70091725,0,0,0,0,0,10,19,0% -2018-10-13 04:00:00,119.4597819,283.5245798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084966518,4.948437428,-1.475885818,1.475885818,1,0.782545029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213894147,102.3506574,0.213894147,77.64934257,0,0.816239513,0,0,0,10,20,0% -2018-10-13 05:00:00,130.6301555,295.5330623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279926315,5.158024986,-0.81641453,0.81641453,1,0.669768797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430075776,115.4723692,0.430075776,64.52763085,0,0.933741418,0,0,0,10,21,0% -2018-10-13 06:00:00,140.5377152,311.4479791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452845853,5.435792683,-0.39346879,0.39346879,1,0.597440816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621586095,128.4320523,0.621586095,51.56794772,0,0.96956062,0,0,0,10,22,0% -2018-10-13 07:00:00,147.8003831,333.768648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.579603322,5.825361847,-0.068352372,0.068352372,1,0.541842634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77538253,140.8397269,0.77538253,39.16027307,0,0.9855157,0,0,0,10,23,0% -2018-10-14 08:00:00,150.2958305,2.472526591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623157093,0.04315373,0.218062935,-0.218062935,1,0.492862731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880994255,151.7625333,0.880994255,28.23746669,0,0.993245941,0,0,0,10,0,0% -2018-10-14 09:00:00,146.9009708,30.45659633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563905615,0.531567885,0.502682859,-0.502682859,1,0.444189858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931235404,158.628218,0.931235404,21.37178202,0,0.996307883,0,0,0,10,1,0% -2018-10-14 10:00:00,139.0877441,51.61422495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427539084,0.900838166,0.822365406,-0.822365406,1,0.389520923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922694438,157.3232244,0.922694438,22.67677559,0,0.99581088,0,0,0,10,2,0% -2018-10-14 11:00:00,128.9142576,66.7453893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249978249,1.164926804,1.236684875,-1.236684875,1,0.318668121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855966368,148.8666595,0.855966368,31.13334052,0,0.99158649,0,0,0,10,3,0% -2018-10-14 12:00:00,117.6304249,78.33581233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053038215,1.367217847,1.890169975,-1.890169975,1,0.206915587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735612056,137.3589594,0.735612056,42.64104065,0,0.98202939,0,0,0,10,4,0% -2018-10-14 13:00:00,105.8882422,88.14520919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848098465,1.53842412,3.338549916,-3.338549916,1,0,#DIV/0!,0,0,0.03917474,1,0.291026685,0,0.925755062,0.964517025,0.724496596,1,0,0,0.006578101,0.312029739,0.981515562,0.706012158,0.961238037,0.922476074,0,0,0,0,0,0,-0.569847322,124.7395798,0.569847322,55.26042024,0,0.962257199,0,0,0,10,5,0% -2018-10-14 14:00:00,94.07757334,97.29685343,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641963407,1.698150444,12.46561835,-12.46561835,1,0,#DIV/0!,0,0,0.615620062,1,0.080049228,0,0.953412485,0.992174448,0.724496596,1,0,0,0.081477158,0.312029739,0.795061195,0.51955779,0.961238037,0.922476074,0,0,0,0,0,0,-0.369983001,111.7145689,0.369983001,68.28543106,0,0.914858656,0,0,0,10,6,0% -2018-10-14 15:00:00,82.39297019,106.6206932,66.96518964,297.8082924,27.54192208,27.2162434,0,27.2162434,26.71143151,0.504811886,61.05195133,43.98497524,17.06697609,0.83049057,16.23648552,1.43802861,1.860882147,-6.009598297,6.009598297,0.442144475,0.442144475,0.411287151,0.339023224,10.90415228,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67604399,0.601687591,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.245621172,10.48148593,25.92166516,11.08317352,0,43.98497524,-0.147695603,98.49340689,0.147695603,81.50659311,0,0.711465886,25.92166516,42.3769829,53.65655293,10,7,107% -2018-10-14 16:00:00,71.47332267,116.8858117,259.8886413,632.0516697,59.05664513,107.8667666,48.63174686,59.23501974,57.27586938,1.959150356,64.79378573,0,64.79378573,1.780775746,63.01300998,1.247444808,2.040042263,-2.039474123,2.039474123,0.878924305,0.878924305,0.22723827,1.775847031,57.11734495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.05574424,1.290165966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286595129,54.90336453,56.34233937,56.19353049,48.63174686,0,0.076942676,85.58714793,-0.076942676,94.41285207,0,0,56.34233937,56.19353049,93.11988121,10,8,65% -2018-10-14 17:00:00,61.5553868,128.9342387,440.0616185,764.9447258,75.71156059,300.4161626,223.6702145,76.74594805,73.42857769,3.317370363,108.9810172,0,108.9810172,2.282982898,106.6980343,1.074344172,2.250326984,-0.952588292,0.952588292,0.693055882,0.693055882,0.172047635,2.474310085,79.58231773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58234187,1.654013338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792629234,76.49755086,72.3749711,78.1515642,223.6702145,0,0.292400492,72.99827521,-0.292400492,107.0017248,0.879001656,0,268.9814601,78.1515642,320.1300958,10,9,19% -2018-10-14 18:00:00,53.37571392,143.6560469,579.2603629,826.8854553,85.96934762,487.4144023,399.6706384,87.7437639,83.3770546,4.366709296,143.0406745,0,143.0406745,2.592293024,140.4483814,0.931581949,2.507271008,-0.378574004,0.378574004,0.594893657,0.594893657,0.148412274,2.860266249,91.99599468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14519628,1.878107471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072253161,88.43004932,82.21744944,90.30815679,399.6706384,0,0.483344623,61.09592659,-0.483344623,118.9040734,0.94655414,0,460.527347,90.30815679,519.6322294,10,10,13% -2018-10-14 19:00:00,47.91800644,161.5503882,665.0276222,855.4687557,91.69810492,638.5751942,544.6288664,93.94632785,88.93306873,5.013259125,164.0086826,0,164.0086826,2.765036193,161.2436464,0.836326983,2.819586182,0.029962478,-0.029962478,0.525029804,0.525029804,0.13788616,2.960437902,95.21785936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.48584839,2.00325931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144827182,91.52702821,87.63067558,93.53028752,544.6288664,0,0.636643785,50.4579922,-0.636643785,129.5420078,0.971463146,0,616.7175475,93.53028752,677.9312501,10,11,10% -2018-10-14 20:00:00,46.20073537,181.7354032,690.6410843,862.9756762,93.34635504,735.9022622,640.1643,95.73796225,90.53161803,5.206344221,170.2686639,0,170.2686639,2.814737016,167.4539268,0.806354949,3.171881154,0.386176881,-0.386176881,0.464113553,0.464113553,0.135158995,2.793429771,89.8463038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.02243479,2.039267386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02383036,86.36368468,89.04626515,88.40295207,640.1643,0,0.741810363,42.11414006,-0.741810363,137.8858599,0.982597329,0,718.0699963,88.40295207,775.9279604,10,12,8% -2018-10-14 21:00:00,48.63323178,201.6665331,654.1582453,852.1522024,90.99072123,767.7958073,674.6174709,93.17833644,88.24701526,4.931321171,161.3519461,0,161.3519461,2.743705965,158.6082402,0.84881002,3.519744994,0.754943167,-0.754943167,0.401050805,0.401050805,0.139095887,2.388545443,76.82383203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82638771,1.987805632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730493043,73.84598948,86.55688075,75.83379511,674.6174709,0,0.79166312,37.65879466,-0.79166312,142.3412053,0.986841822,0,752.297615,75.83379511,801.9293173,10,13,7% -2018-10-14 22:00:00,54.65093794,219.0092872,558.3344507,818.9703887,84.5140001,727.2719491,641.097397,86.1745521,81.96559117,4.208960931,137.9230607,0,137.9230607,2.548408926,135.3746517,0.953838806,3.822433153,1.208543027,-1.208543027,0.32348066,0.32348066,0.151368055,1.792529441,57.6539086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.78844395,1.846313592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298681478,55.41912992,80.08712543,57.26544351,641.097397,0,0.782809007,38.48151012,-0.782809007,141.5184899,0.98612746,0,712.2908729,57.26544351,749.7699603,10,14,5% -2018-10-14 23:00:00,63.20379845,233.1954168,410.7608316,748.4705688,73.33655337,610.0413841,535.8197098,74.22167436,71.1251857,3.096488655,101.8050869,0,101.8050869,2.211367667,99.59371925,1.103114383,4.070027824,1.895436935,-1.895436935,0.206014883,0.206014883,0.178538331,1.076871003,34.63587318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36823388,1.602128347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780189376,33.29331874,69.14842325,34.89544709,535.8197098,0,0.715886145,44.28413093,-0.715886145,135.7158691,0.980156492,0,594.3355901,34.89544709,617.1739623,10,15,4% -2018-10-14 00:00:00,73.35074832,244.8524389,225.2834631,594.2088685,55.03546823,408.9809878,353.9067601,55.07422771,53.3759458,1.698281905,56.2821063,0,56.2821063,1.659522426,54.62258387,1.280212067,4.273481241,3.33044522,-3.33044522,0,0,0.24429431,0.414880607,13.34398645,0.037893513,1,0.291695452,0,0.925652053,0.964414016,0.724496596,1,51.39811021,1.202318349,0.006366731,0.312029739,0.982104262,0.706600858,0.961238037,0.922476074,0.29748626,12.82674734,51.69559647,14.02906569,340.4959898,0,0.595593198,53.44506862,-0.595593198,126.5549314,0.966050082,0,380.6317754,14.02906569,389.8135183,10,16,2% -2018-10-14 01:00:00,84.38132288,254.8760665,38.27215635,198.8754847,18.80079142,104.2671257,85.74473586,18.52238987,18.23387819,0.288511681,9.846440635,0,9.846440635,0.566913229,9.279527407,1.472731911,4.448426546,10.12788273,-10.12788273,0,0,0.491239408,0.141728307,4.558469548,0.545829496,1,0.098418319,0,0.951402955,0.990164919,0.724496596,1,17.66876464,0.410726704,0.074153961,0.312029739,0.811329064,0.53582566,0.961238037,0.922476074,0.097254467,4.381774319,17.76601911,4.792501023,38.94272986,0,0.431147841,64.45957291,-0.431147841,115.5404271,0.934030499,0,54.13971651,4.792501023,57.27631258,10,17,6% -2018-10-14 02:00:00,96.17683667,264.0889001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678602464,4.609220824,-8.962001457,8.962001457,1,0,#DIV/0!,0,0,1,0.059041567,0,0.111122559,0.961238037,1,0.458093175,0.733596579,0,0,0.115824807,0.010384408,0.724496596,0.448993192,0.999071431,0.960309467,0,0,0,0,0,0,0.228697531,76.77959794,-0.228697531,103.2204021,0.831370617,0,0,0,0,10,18,0% -2018-10-14 03:00:00,108.0162857,273.2555912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885239831,4.769209766,-2.82489765,2.82489765,1,0.986760361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.008189705,89.53075924,-0.008189705,90.46924076,0,0,0,0,0,10,19,0% -2018-10-14 04:00:00,119.7377413,283.2342984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089817824,4.943371061,-1.464187212,1.464187212,1,0.78054445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217713397,102.5747652,0.217713397,77.42523482,0,0.820340269,0,0,0,10,20,0% -2018-10-14 05:00:00,130.9280925,295.231548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285126298,5.152762568,-0.812195801,0.812195801,1,0.669047352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433621663,115.6976205,0.433621663,64.30237949,0,0.934692108,0,0,0,10,21,0% -2018-10-14 06:00:00,140.8685191,311.1682308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45861947,5.430910156,-0.392345559,0.392345559,1,0.597248732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62482813,128.6695738,0.62482813,51.3304262,0,0.969977995,0,0,0,10,22,0% -2018-10-14 07:00:00,148.1672607,333.6207192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586006544,5.822780004,-0.068978773,0.068978773,1,0.541949754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778311142,141.1062042,0.778311142,38.89379578,0,0.98575834,0,0,0,10,23,0% -2018-10-15 08:00:00,150.6644257,2.613364418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629590293,0.045611814,0.216091346,-0.216091346,1,0.493199893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883621446,152.0823505,0.883621446,27.91764952,0,0.993414683,0,0,0,10,0,0% -2018-10-15 09:00:00,147.2167883,30.82835824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56941767,0.538056354,0.499297738,-0.499297738,1,0.444768748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933593916,159.0021567,0.933593916,20.99784327,0,0.996443524,0,0,0,10,1,0% -2018-10-15 10:00:00,139.3411539,52.03714068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.431961919,0.908219438,0.817021756,-0.817021756,1,0.39043474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924835489,157.6435612,0.924835489,22.35643879,0,0.995936331,0,0,0,10,2,0% -2018-10-15 11:00:00,129.1246246,67.1446265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253649844,1.171894808,1.2278934,-1.2278934,1,0.320171551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857956117,149.0878646,0.857956117,30.91213537,0,0.991721961,0,0,0,10,3,0% -2018-10-15 12:00:00,117.8174927,78.70257273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056303164,1.373619024,1.873445968,-1.873445968,1,0.20977556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737527036,137.5211808,0.737527036,42.47881915,0,0.982205875,0,0,0,10,4,0% -2018-10-15 13:00:00,106.0669827,88.48764557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851218075,1.544400762,3.292902156,-3.292902156,1,0,#DIV/0!,0,0,0.031913686,1,0.294832702,0,0.925167592,0.963929555,0.724496596,1,0,0,0.005376885,0.312029739,0.984865778,0.709362374,0.961238037,0.922476074,0,0,0,0,0,0,-0.571769156,124.8736868,0.571769156,55.12631324,0,0.962552121,0,0,0,10,5,0% -2018-10-15 14:00:00,94.25979099,97.62491074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645143705,1.703876124,11.89509323,-11.89509323,1,0,#DIV/0!,0,0,0.600643293,1,0.083871063,0,0.95300088,0.991762844,0.724496596,1,0,0,0.079937895,0.312029739,0.798444973,0.522941569,0.961238037,0.922476074,0,0,0,0,0,0,-0.371992772,111.8385693,0.371992772,68.16143071,0,0.915588786,0,0,0,10,6,0% -2018-10-15 15:00:00,82.58655282,106.942236,64.13474281,290.2438748,26.68505864,26.36388045,0,26.36388045,25.88040567,0.483474782,59.84059951,43.48573562,16.3548639,0.804652975,15.55021092,1.441407265,1.866494127,-6.142533692,6.142533692,0.419411184,0.419411184,0.416078049,0.31956786,10.27840089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.87723034,0.582968342,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.231525827,9.879989894,25.10875616,10.46295824,0,43.48573562,-0.149824818,98.61677463,0.149824818,81.38322537,0,0.716276917,25.10875616,41.61078689,52.34218397,10,7,108% -2018-10-15 16:00:00,71.69350279,117.2043027,256.0834184,629.3615237,58.40089043,105.4916194,46.92126627,58.57035309,56.63988811,1.930464978,63.85139196,0,63.85139196,1.761002323,62.09038963,1.251287676,2.04560098,-2.053492948,2.053492948,0.881321666,0.881321666,0.228054166,1.753608816,56.40208751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44441486,1.275840188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270483618,54.21583187,55.71489847,55.49167206,46.92126627,0,0.074553757,85.7244173,-0.074553757,94.2755827,0,0,55.71489847,55.49167206,92.033088,10,8,65% -2018-10-15 17:00:00,61.81117381,129.2440938,435.829836,763.6843581,75.08147092,297.3670325,221.2640756,76.10295695,72.81748755,3.285469399,107.935973,0,107.935973,2.263983369,105.6719896,1.078808497,2.255734975,-0.954169562,0.954169562,0.693326295,0.693326295,0.172272444,2.451478367,78.84797118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.99493878,1.640248244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776087732,75.79166903,71.77102651,77.43191727,221.2640756,0,0.289732365,73.15806618,-0.289732365,106.8419338,0.877426943,0,265.914088,77.43191727,316.5917292,10,9,19% -2018-10-15 18:00:00,53.67564453,143.9336732,574.6741562,826.0976795,85.33047721,483.9235623,396.8339773,87.08958502,82.75744849,4.332136533,141.9094312,0,141.9094312,2.573028724,139.3364025,0.936816725,2.512116502,-0.376413935,0.376413935,0.594524264,0.594524264,0.148484974,2.836385461,91.22790643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.54960732,1.864150552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054951611,87.69173369,81.60455893,89.55588424,396.8339773,0,0.480371737,61.29031644,-0.480371737,118.7096836,0.945913943,0,456.9753511,89.55588424,515.5878862,10,10,13% -2018-10-15 19:00:00,48.26194148,161.7471599,660.1294025,854.8338716,91.044132,634.6920248,541.416875,93.27514978,88.2988155,4.976334276,162.8013328,0,162.8013328,2.745316497,160.0560163,0.842329782,2.823020495,0.034174336,-0.034174336,0.524309534,0.524309534,0.137918614,2.935619726,94.41962152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.87618007,1.988972457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126846498,90.75973163,87.00302657,92.74870408,541.416875,0,0.633359174,50.70160655,-0.633359174,129.2983934,0.971055853,0,612.7490517,92.74870408,673.4512236,10,11,10% -2018-10-15 20:00:00,46.57160012,181.7989779,685.484194,862.3305831,92.67713117,731.6467197,636.5966766,95.05004313,89.88257373,5.167469404,168.9981365,0,168.9981365,2.794557447,166.2035791,0.81282776,3.172990741,0.392303263,-0.392303263,0.46306588,0.46306588,0.135199516,2.76800208,89.02846183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.39854872,2.024647357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005408084,85.57754388,88.4039568,87.60219123,636.5966766,0,0.73822811,42.41930432,-0.73822811,137.5806957,0.982270257,0,713.7139381,87.60219123,771.0478202,10,12,8% -2018-10-15 21:00:00,49.00257448,201.5918834,648.813096,851.3487844,90.30691025,763.1826155,670.7077646,92.47485089,87.58382371,4.891027178,160.0353334,0,160.0353334,2.723086541,157.3122468,0.855256267,3.51844211,0.763707171,-0.763707171,0.399552072,0.399552072,0.139187866,2.362987959,76.00181547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.18890276,1.972866929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.711976732,73.0558359,85.90087949,75.02870283,670.7077646,0,0.787817845,38.01794921,-0.787817845,141.9820508,0.986533552,0,747.5765931,75.02870283,796.6813785,10,13,7% -2018-10-15 22:00:00,54.99799645,218.8406064,552.8904903,817.7708119,83.81299791,722.2957762,636.8421274,85.45364884,81.28572679,4.167922058,136.5819716,0,136.5819716,2.527271124,134.0547005,0.95989612,3.81948912,1.222019827,-1.222019827,0.321175991,0.321175991,0.151590594,1.767529578,56.84982707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.13493244,1.830999326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.280569162,54.64621617,79.4155016,56.4772155,636.8421274,0,0.7787538,38.85338429,-0.7787538,141.1466157,0.985794856,0,707.2111947,56.4772155,744.1744027,10,14,5% -2018-10-15 23:00:00,63.52282845,232.9787334,405.3379446,746.3113934,72.60157172,604.610083,531.1421079,73.46797511,70.41236646,3.055608642,100.4680828,0,100.4680828,2.189205259,98.27887751,1.108682507,4.066245985,1.919747924,-1.919747924,0.20185746,0.20185746,0.179113682,1.05362186,33.8881008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68304491,1.586071758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763345451,32.57453149,68.44639036,34.16060325,531.1421079,0,0.711689668,44.62744181,-0.711689668,135.3725582,0.979744659,0,588.830034,34.16060325,611.1874656,10,15,4% -2018-10-15 00:00:00,73.64488559,244.6137128,220.1178425,589.2719414,54.18484941,402.6698314,348.4595138,54.21031756,52.55097628,1.659341275,55.00399249,0,55.00399249,1.633873131,53.37011936,1.285345731,4.269314683,3.392515843,-3.392515843,0,0,0.246162913,0.408468283,13.13774407,0.047619671,1,0.286648524,0,0.92642714,0.965189103,0.724496596,1,50.62462939,1.183735521,0.007965062,0.312029739,0.977661318,0.702157914,0.961238037,0.922476074,0.292168088,12.62849932,50.91679747,13.81223484,331.8659863,0,0.591339056,53.74791061,-0.591339056,126.2520894,0.96544614,0,371.3155328,13.81223484,380.3553643,10,16,2% -2018-10-15 01:00:00,84.65279314,254.6252048,34.85925102,186.0590412,17.52023245,96.7007484,79.44603184,17.25471656,16.9919328,0.262783759,8.980328648,0,8.980328648,0.528299651,8.452028997,1.477469961,4.444048183,10.64916649,-10.64916649,0,0,0.502599222,0.132074913,4.247983201,0.563501961,1,0.0936295,0,0.951934424,0.990696387,0.724496596,1,16.46270113,0.382751299,0.07604505,0.312029739,0.807087148,0.531583744,0.961238037,0.922476074,0.090713072,4.083323032,16.5534142,4.466074331,34.67803713,0,0.426993665,64.72307872,-0.426993665,115.2769213,0.932902244,0,48.90463286,4.466074331,51.82758918,10,17,6% -2018-10-15 02:00:00,96.44460312,263.827158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68327587,4.604652563,-8.596431085,8.596431085,1,0,#DIV/0!,0,0,1,0.000229933,0,0.115806848,0.961238037,1,0.449027607,0.724531011,0,0,0.115824807,3.9325E-05,0.724496596,0.448993192,0.999996533,0.96123457,0,0,0,0,0,0,0.224536665,77.02436612,-0.224536665,102.9756339,0.827319218,0,0,0,0,10,18,0% -2018-10-15 03:00:00,108.2825052,272.9803015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889886238,4.764405055,-2.786609472,2.786609472,1,0.993308025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004198579,89.75943842,-0.004198579,90.24056158,0,0,0,0,0,10,19,0% -2018-10-15 04:00:00,120.0119919,282.942514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094604401,4.938278463,-1.452863445,1.452863445,1,0.778607971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221472282,102.7955219,0.221472282,77.20447808,0,0.824238114,0,0,0,10,20,0% -2018-10-15 05:00:00,131.2221628,294.9270972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290258792,5.1474489,-0.808117719,0.808117719,1,0.668349959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437101791,115.9191097,0.437101791,64.08089033,0,0.935610169,0,0,0,10,21,0% -2018-10-15 06:00:00,141.1956306,310.8834507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464328643,5.425939805,-0.391287687,0.391287687,1,0.597067825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628002173,128.9028798,0.628002173,51.09712023,0,0.970382441,0,0,0,10,22,0% -2018-10-15 07:00:00,148.5312466,333.4668943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.592359296,5.820095251,-0.069637488,0.069637488,1,0.542062401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781172839,141.3680852,0.781172839,38.63191476,0,0.985993678,0,0,0,10,23,0% -2018-10-16 08:00:00,151.030943,2.752465319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635987228,0.048039582,0.214106419,-0.214106419,1,0.493539336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886186035,152.3978304,0.886186035,27.60216962,0,0.993578438,0,0,0,10,0,0% -2018-10-16 09:00:00,147.5306199,31.20098622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574895064,0.544559939,0.495914574,-0.495914574,1,0.445347303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935897075,159.3735603,0.935897075,20.62643969,0,0.996575322,0,0,0,10,1,0% -2018-10-16 10:00:00,139.5929266,52.45963385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436356182,0.915593335,0.811699239,-0.811699239,1,0.391344944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926930874,157.9613392,0.926930874,22.03866082,0,0.996058545,0,0,0,10,2,0% -2018-10-16 11:00:00,129.3339908,67.54225617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257303974,1.178834754,1.219161014,-1.219161014,1,0.321664877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859911655,149.306665,0.859911655,30.69333505,0,0.991854492,0,0,0,10,3,0% -2018-10-16 12:00:00,118.0041758,79.06713156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059561399,1.379981776,1.856899111,-1.856899111,1,0.21260524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739420235,137.6820519,0.739420235,42.31794813,0,0.982379454,0,0,0,10,4,0% -2018-10-16 13:00:00,106.245837,88.82752089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854339672,1.550332706,3.248153491,-3.248153491,1,0,#DIV/0!,0,0,0.024688329,1,0.298658713,0,0.924574026,0.96333599,0.724496596,1,0,0,0.004173517,0.312029739,0.988233291,0.712729887,0.961238037,0.922476074,0,0,0,0,0,0,-0.573681761,125.0073673,0.573681761,54.99263274,0,0.962843664,0,0,0,10,5,0% -2018-10-16 14:00:00,94.44249033,97.95005173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64833241,1.709550905,11.37000447,-11.37000447,1,0,#DIV/0!,0,0,0.585789531,1,0.087724984,0,0.952582359,0.991344322,0.724496596,1,0,0,0.078394116,0.312029739,0.801857702,0.526354298,0.961238037,0.922476074,0,0,0,0,0,0,-0.374005117,111.9628363,0.374005117,68.03716366,0,0.91631199,0,0,0,10,6,0% -2018-10-16 15:00:00,82.7807188,107.2603802,61.26489666,281.8833212,25.84143905,25.52406498,0,25.52406498,25.06222431,0.461840669,58.46994223,42.836344,15.63359823,0.779214732,14.85438349,1.4447961,1.872046791,-6.283131461,6.283131461,0.395367549,0.395367549,0.42179846,0.300381442,9.661299722,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.0907633,0.564538421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.217625332,9.286808778,24.30838863,9.851347199,0,42.836344,-0.151964805,98.7408071,0.151964805,81.2591929,0,0.720976448,24.30838863,40.73534234,50.96885549,10,7,110% -2018-10-16 16:00:00,71.91442256,117.5186959,252.1605515,626.0125846,57.82298582,103.1435511,45.16324886,57.9803022,56.07940945,1.90089275,62.88282149,0,62.88282149,1.743576366,61.13924513,1.255143453,2.051088176,-2.067997334,2.067997334,0.883802062,0.883802062,0.229310197,1.730662927,55.66406884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90566145,1.263215142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253859399,53.50642026,55.15952085,54.7696354,45.16324886,0,0.072144315,85.8628411,-0.072144315,94.1371589,0,0,55.15952085,54.7696354,91.00515182,10,8,65% -2018-10-16 17:00:00,62.06748891,129.5489189,431.4623555,761.9157495,74.55723895,294.2606917,218.6990831,75.5616086,72.30906311,3.252545486,106.8612192,0,106.8612192,2.248175841,104.6130434,1.08328204,2.261055177,-0.955871438,0.955871438,0.693617333,0.693617333,0.172801261,2.428222453,78.09998104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50622187,1.628795744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759238901,75.07267245,71.26546077,76.7014682,218.6990831,0,0.287038407,73.31926742,-0.287038407,106.6807326,0.875807283,0,262.8037105,76.7014682,313.0032875,10,9,19% -2018-10-16 18:00:00,53.97549445,144.2053819,569.9481735,824.8797572,84.81063792,480.3234779,393.7736836,86.54979435,82.25328427,4.296510079,140.747887,0,140.747887,2.557353651,138.1905333,0.942050093,2.516858714,-0.374300445,0.374300445,0.594162836,0.594162836,0.148804123,2.8122939,90.45303904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0649855,1.852794015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037497358,86.94690167,81.10248286,88.79969569,393.7736836,0,0.477371011,61.4861611,-0.477371011,118.5138389,0.945259664,0,453.3208628,88.79969569,511.4384876,10,10,13% -2018-10-16 19:00:00,48.60479163,161.9380825,655.0946066,853.8069024,90.51553401,630.6639181,537.9393816,92.72453655,87.7861567,4.938379858,161.5646491,0,161.5646491,2.729377317,158.8352718,0.848313646,2.826352724,0.038367128,-0.038367128,0.523592524,0.523592524,0.138171698,2.910772715,93.62045624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.38339293,1.977424575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.108844924,89.99154357,86.49223785,91.96896814,537.9393816,0,0.630048059,50.94633167,-0.630048059,129.0536683,0.970640974,0,608.6382434,91.96896814,668.8300937,10,11,10% -2018-10-16 20:00:00,46.94036382,181.8585973,680.1990848,861.3046669,92.13538366,727.2198072,632.7350173,94.48478992,89.3571619,5.127628019,167.7003649,0,167.7003649,2.778221761,164.9221432,0.819263901,3.174031296,0.398429094,-0.398429094,0.462018302,0.462018302,0.135453554,2.742716104,88.21517794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89350288,2.012812208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987088481,84.79578446,87.88059137,86.80859667,632.7350173,0,0.734623928,42.72455197,-0.734623928,137.275448,0.981937964,0,709.1871262,86.80859667,766.0016165,10,12,8% -2018-10-16 21:00:00,49.36927802,201.5158681,643.3522546,850.1523302,89.7490021,758.3764409,666.4838413,91.8925996,87.04273855,4.849861049,158.6944662,0,158.6944662,2.706263552,155.9882026,0.861656451,3.517115394,0.772495375,-0.772495375,0.3980492,0.3980492,0.139502118,2.337742689,75.18984081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.66879112,1.960678731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69368662,72.27533497,85.36247774,74.2360137,666.4838413,0,0.783958142,38.37557843,-0.783958142,141.6244216,0.986221085,0,742.6628946,74.2360137,791.2488808,10,13,7% -2018-10-16 22:00:00,55.34228814,218.6721048,547.3472522,816.1382822,83.23179716,717.1056843,632.2574981,84.84818617,80.72205138,4.126134788,135.2204241,0,135.2204241,2.509745777,132.7106783,0.965905144,3.816548211,1.235577303,-1.235577303,0.318857527,0.318857527,0.152063972,1.743022744,56.06160305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.5931062,1.818302272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262814045,53.88854526,78.85592025,55.70684753,632.2574981,0,0.774694083,39.22269469,-0.774694083,140.7773053,0.985458394,0,701.9193791,55.70684753,738.3783967,10,14,5% -2018-10-16 23:00:00,63.83904803,232.762678,399.8373636,743.6358683,71.97258243,598.9391344,526.1226479,72.81648646,69.80234352,3.014142939,99.11543688,0,99.11543688,2.170238911,96.94519797,1.114201579,4.062475107,1.944333965,-1.944333965,0.197652999,0.197652999,0.180004644,1.031075561,33.16293435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.09666765,1.572330703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747010734,31.87747391,67.84367839,33.44980462,526.1226479,0,0.707500365,44.96809966,-0.707500365,135.0319003,0.979328658,0,583.0906653,33.44980462,604.9828934,10,15,4% -2018-10-16 00:00:00,73.93609398,244.3755507,214.9101398,583.6506813,53.40854083,396.0823553,342.6641956,53.41815968,51.79807626,1.620083412,53.71791609,0,53.71791609,1.610464562,52.10745153,1.290428276,4.26515797,3.456071583,-3.456071583,0,0,0.248515686,0.402616141,12.94951907,0.057376866,1,0.281653921,0,0.92718899,0.965950953,0.724496596,1,49.91920013,1.166776093,0.009554159,0.312029739,0.973263826,0.697760422,0.961238037,0.922476074,0.287293972,12.44757029,50.2064941,13.61434638,323.0031979,0,0.587104935,54.04816634,-0.587104935,125.9518337,0.964836349,0,361.8517201,13.61434638,370.7620376,10,16,2% -2018-10-16 01:00:00,84.92078077,254.374652,31.55525419,172.7742612,16.25902465,89.06913871,73.06250681,16.00663191,15.76875507,0.237876835,8.141206295,0,8.141206295,0.490269583,7.650936713,1.482147228,4.439675212,11.21808699,-11.21808699,0,0,0.515255702,0.122567396,3.942188768,0.581283747,1,0.088906763,0,0.952453327,0.99121529,0.724496596,1,15.27493429,0.355198644,0.0779224,0.312029739,0.80290429,0.527400885,0.961238037,0.922476074,0.084270788,3.789381792,15.35920507,4.144580436,30.59245908,0,0.422878421,64.9835519,-0.422878421,115.0164481,0.931762707,0,43.86411754,4.144580436,46.57666255,10,17,6% -2018-10-16 02:00:00,96.70905673,263.565356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687891456,4.600083256,-8.263845107,8.263845107,1,0.056645566,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.220419906,77.2663027,-0.220419906,102.7336973,0.823160234,0,0,0,0,10,18,0% -2018-10-16 03:00:00,108.5451467,272.7044181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894470197,4.75958998,-2.749884006,2.749884006,1,0.999588449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000261789,89.98500061,-0.000261789,90.01499939,0,0,0,0,0,10,19,0% -2018-10-16 04:00:00,120.2824018,282.649281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099323944,4.933160582,-1.44190744,1.44190744,1,0.776734384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225168916,103.0128112,0.225168916,76.98718879,0,0.827944483,0,0,0,10,20,0% -2018-10-16 05:00:00,131.512224,294.6197482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295321315,5.142084648,-0.804179666,0.804179666,1,0.667676512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440514604,116.1367195,0.440514604,63.86328047,0,0.936496385,0,0,0,10,21,0% -2018-10-16 06:00:00,141.5188955,310.5935965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46997068,5.420880894,-0.390295615,0.390295615,1,0.596898171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631107037,129.131845,0.631107037,50.86815496,0,0.970774136,0,0,0,10,22,0% -2018-10-16 07:00:00,148.8921973,333.3069652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598659073,5.817303963,-0.070329105,0.070329105,1,0.542180675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783966821,141.6252226,0.783966821,38.37477742,0,0.986221791,0,0,0,10,23,0% -2018-10-17 08:00:00,151.3952856,2.889600716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642346206,0.050433047,0.212107622,-0.212107622,1,0.49388115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888687595,152.7087912,0.888687595,27.2912088,0,0.993737259,0,0,0,10,0,0% -2018-10-17 09:00:00,147.8424114,31.57427233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580336853,0.551075011,0.492532929,-0.492532929,1,0.445925598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938144791,159.7422965,0.938144791,20.2577035,0,0.996703323,0,0,0,10,1,0% -2018-10-17 10:00:00,139.8430444,52.88149491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44072156,0.9229562,0.806397485,-0.806397485,1,0.392251598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928980777,158.27649,0.928980777,21.72350995,0,0.996177573,0,0,0,10,2,0% -2018-10-17 11:00:00,129.5423562,67.93810019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260940636,1.185743536,1.210487246,-1.210487246,1,0.323148179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861833357,149.5230596,0.861833357,30.47694043,0,0.991984144,0,0,0,10,3,0% -2018-10-17 12:00:00,118.1904772,79.42933865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062812971,1.386303482,1.84052756,-1.84052756,1,0.21540494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741292131,137.841602,0.741292131,42.15839803,0,0.982550208,0,0,0,10,4,0% -2018-10-17 13:00:00,106.4248022,89.164702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857463204,1.556217627,3.204281673,-3.204281673,1,0,#DIV/0!,0,0,0.017499077,1,0.3025044,0,0.923974376,0.962736339,0.724496596,1,0,0,0.002968106,0.312029739,0.991617846,0.716114442,0.961238037,0.922476074,0,0,0,0,0,0,-0.575585614,125.1406534,0.575585614,54.85934659,0,0.96313195,0,0,0,10,5,0% -2018-10-17 14:00:00,94.62565679,98.27215243,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651529268,1.715172623,10.8851901,-10.8851901,1,0,#DIV/0!,0,0,0.571059091,1,0.091610795,0,0.952156862,0.990918825,0.724496596,1,0,0,0.076845999,0.312029739,0.80529914,0.529795736,0.961238037,0.922476074,0,0,0,0,0,0,-0.376020415,112.0873948,0.376020415,67.91260522,0,0.917028496,0,0,0,10,6,0% -2018-10-17 15:00:00,82.97542867,107.5750075,58.36217157,272.7391163,25.00754509,24.69343404,0,24.69343404,24.25347534,0.439958702,56.93801089,42.03335694,14.90465394,0.754069752,14.15058419,1.448194429,1.877538074,-6.432043159,6.432043159,0.369902149,0.369902149,0.428488941,0.281526102,9.054847172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.31336302,0.546320969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.203964702,8.70386352,23.51732772,9.250184488,0,42.03335694,-0.154115616,98.8655085,0.154115616,81.1344915,0,0.725568244,23.51732772,39.74825346,49.53176465,10,7,111% -2018-10-17 16:00:00,72.13602867,117.8288805,248.1224437,621.9927353,57.32108642,100.8249739,43.36187796,57.46309596,55.59264417,1.870451788,61.88860138,0,61.88860138,1.728442248,60.16015913,1.25901121,2.056501919,-2.083008092,2.083008092,0.886369053,0.886369053,0.231019353,1.707011712,54.90336446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.43776415,1.252250525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.236724174,52.77520227,54.67448832,54.0274528,43.36187796,0,0.069714444,86.00241398,-0.069714444,93.99758602,0,0,54.67448832,54.0274528,90.03437563,10,8,65% -2018-10-17 17:00:00,62.32425375,129.8486225,426.9612622,759.6301843,74.13794979,291.0983583,215.9773269,75.1210314,71.90241706,3.218614343,105.7572339,0,105.7572339,2.235532726,103.5217012,1.087763432,2.266285993,-0.95769926,0.95769926,0.693929909,0.693929909,0.173640928,2.404550184,77.33859949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11533822,1.61963585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742088423,74.34080355,70.85742664,75.9604394,215.9773269,0,0.284319043,73.48185119,-0.284319043,106.5181488,0.87414122,0,259.6521107,75.9604394,309.3666991,10,9,19% -2018-10-17 18:00:00,54.27516144,144.4711209,565.0846932,823.2249154,84.40925757,476.6150302,390.4911761,86.12385413,81.86400702,4.25984711,139.5565767,0,139.5565767,2.545250553,137.0113262,0.947280269,2.521496734,-0.372236802,0.372236802,0.593809932,0.593809932,0.149374525,2.788003396,89.6717729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.69079739,1.844025361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019898969,86.19591895,80.71069636,88.03994431,390.4911761,0,0.474343243,61.68340275,-0.474343243,118.3165973,0.944591099,0,449.5651855,88.03994431,507.1855682,10,10,13% -2018-10-17 19:00:00,48.94644173,162.1231489,649.9258216,852.3819255,90.11187052,626.4917419,534.1976614,92.29408052,87.39466515,4.899415373,160.2992454,0,160.2992454,2.717205374,157.58204,0.854276565,2.829582741,0.042537852,-0.042537852,0.522879288,0.522879288,0.13864947,2.885911564,92.82083616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.00707636,1.968606043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090833104,89.22291833,86.09790946,91.19152437,534.1976614,0,0.626711625,51.19207328,-0.626711625,128.8079267,0.97021849,0,604.3863576,91.19152437,664.0693865,10,11,10% -2018-10-17 20:00:00,47.30690942,181.9142543,674.788665,859.8921622,91.72069236,722.6224504,628.5806333,94.04181707,88.95497508,5.086841989,166.3760416,0,166.3760416,2.765717288,163.6103243,0.825661328,3.175002695,0.404551002,-0.404551002,0.460971394,0.460971394,0.135925064,2.717588825,87.40699827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50690561,2.00375276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.968883853,84.01893142,87.47578946,86.02268418,628.5806333,0,0.730999375,43.02975925,-0.730999375,136.9702408,0.981600489,0,704.4908463,86.02268418,760.7909727,10,12,8% -2018-10-17 21:00:00,49.7332208,201.4384508,637.7789292,848.5566358,89.31649756,753.3781935,661.9470709,91.43112258,86.62327562,4.807846967,157.3301073,0,157.3301073,2.693221944,154.6368853,0.868008451,3.515764206,0.781303491,-0.781303491,0.396542924,0.396542924,0.140043036,2.312828653,74.38851977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.2655874,1.951230131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675636486,71.50507471,84.94122389,73.45630484,661.9470709,0,0.780085905,38.73155857,-0.780085905,141.2684414,0.985904495,0,737.5578166,73.45630484,785.633499,10,13,7% -2018-10-17 22:00:00,55.68368417,218.5037447,541.7082336,814.065435,82.76967018,711.7023763,627.3448916,84.35748472,80.27385924,4.083625483,133.8392439,0,133.8392439,2.495810944,131.3434329,0.971863628,3.813609773,1.249209502,-1.249209502,0.316526283,0.316526283,0.15279382,1.719030091,55.28991686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16228686,1.808206533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245431449,53.14677114,78.40771831,54.95497768,627.3448916,0,0.770632021,39.58932222,-0.770632021,140.4106778,0.98511819,0,696.4165827,54.95497768,732.3835165,10,14,5% -2018-10-17 23:00:00,64.15232546,232.5472347,394.2629741,740.4344495,71.44830076,593.0287857,520.762794,72.26599171,69.29387088,2.972120836,97.74805257,0,97.74805257,2.154429884,95.59362269,1.119669302,4.058714912,1.969187201,-1.969187201,0.193402845,0.193402845,0.18121991,1.00925588,32.46113839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60790441,1.560877117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.731202449,31.20288094,67.33910686,32.76375806,520.762794,0,0.70332059,45.30597373,-0.70332059,134.6940263,0.978908665,0,577.1183181,32.76375806,598.5615424,10,15,4% -2018-10-17 00:00:00,74.22424263,244.1379595,209.6653548,577.3340675,52.70375494,389.2192441,336.5241558,52.69508828,51.11454227,1.580546007,52.42500536,0,52.42500536,1.589212667,50.83579269,1.295457419,4.261011223,3.521131007,-3.521131007,0,0,0.251370833,0.397303167,12.77863557,0.067159981,1,0.27671372,0,0.927937433,0.966699396,0.724496596,1,49.27933306,1.151379168,0.01113325,0.312029739,0.968913582,0.693410178,0.961238037,0.922476074,0.282845282,12.28331057,49.56217834,13.43468973,313.9231997,0,0.582893293,54.34570017,-0.582893293,125.6542998,0.964221006,0,352.2535219,13.43468973,361.0462577,10,16,2% -2018-10-17 01:00:00,85.18512545,254.1244334,28.37296039,159.1241073,15.01663342,81.41970141,66.64198754,14.77771387,14.56382651,0.21388736,7.33215964,0,7.33215964,0.452806903,6.879352737,1.486760913,4.435308072,11.84097469,-11.84097469,0,0,0.529258604,0.113201726,3.640956628,0.599161806,1,0.084252584,0,0.952959604,0.991721567,0.724496596,1,14.10502052,0.32805706,0.079784694,0.312029739,0.798782795,0.52327939,0.961238037,0.922476074,0.077922465,3.499826001,14.18294299,3.827883061,26.71265395,0,0.418805099,65.24082863,-0.418805099,114.7591714,0.930612724,0,39.04207864,3.827883061,41.54735154,10,17,6% -2018-10-17 02:00:00,96.97007125,263.3035339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692447019,4.595513598,-7.960163099,7.960163099,1,0.108578248,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.216349602,77.50528249,-0.216349602,102.4947175,0.818892572,0,0,0,0,10,18,0% -2018-10-17 03:00:00,108.8040835,272.4279921,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898989496,4.754765437,-2.71465472,2.71465472,1,0.994386988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.00361852,90.20732637,0.00361852,89.79267363,0,0,0,0,0,10,19,0% -2018-10-17 04:00:00,120.5488396,282.3546568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103974161,4.92801842,-1.431312477,1.431312477,1,0.774922539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.228801431,103.2265173,0.228801431,76.77348272,0,0.831469899,0,0,0,10,20,0% -2018-10-17 05:00:00,131.7981343,294.3095439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300311392,5.136670561,-0.800381086,0.800381086,1,0.667026916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443858578,116.350334,0.443858578,63.64966597,0,0.937351507,0,0,0,10,21,0% -2018-10-17 06:00:00,141.8381594,310.2986308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475542886,5.415732772,-0.389369801,0.389369801,1,0.596739847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634141578,129.3563459,0.634141578,50.64365408,0,0.971153254,0,0,0,10,22,0% -2018-10-17 07:00:00,149.2499683,333.1407207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903355,5.814402449,-0.071054214,0.071054214,1,0.542304676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786692333,141.8774704,0.786692333,38.1225296,0,0.986442752,0,0,0,10,23,0% -2018-10-18 08:00:00,151.7573575,3.024529851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648665552,0.052788004,0.210094422,-0.210094422,1,0.494225427,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891125748,153.0150504,0.891125748,26.98494956,0,0.993891196,0,0,0,10,0,0% -2018-10-18 09:00:00,148.1521116,31.94799868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585742142,0.557597766,0.489152364,-0.489152364,1,0.446503709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940337021,160.1082318,0.940337021,19.89176816,0,0.996827575,0,0,0,10,1,0% -2018-10-18 10:00:00,140.0914922,53.3025092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445057793,0.930304285,0.801116128,-0.801116128,1,0.393154763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930985424,158.5889493,0.930985424,21.41105075,0,0.996293466,0,0,0,10,2,0% -2018-10-18 11:00:00,129.749723,68.33197835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264559869,1.192618007,1.201871641,-1.201871641,1,0.324621534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.863721643,149.7370526,0.863721643,30.26294738,0,0.992110979,0,0,0,10,3,0% -2018-10-18 12:00:00,118.376401,79.789043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066057954,1.392581507,1.824329527,-1.824329527,1,0.218174966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743143238,137.9998641,0.743143238,42.00013594,0,0.98271822,0,0,0,10,4,0% -2018-10-18 13:00:00,106.6038762,89.49905546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860588634,1.562053195,3.161265302,-3.161265302,1,0,#DIV/0!,0,0,0.01034635,1,0.306369429,0,0.923368655,0.962130618,0.724496596,1,0,0,0.001760769,0.312029739,0.995019172,0.719515767,0.961238037,0.922476074,0,0,0,0,0,0,-0.577481221,125.2735794,0.577481221,54.72642055,0,0.963417098,0,0,0,10,5,0% -2018-10-18 14:00:00,94.80927619,98.59108898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654734031,1.720739116,10.43624346,-10.43624346,1,0,#DIV/0!,0,0,0.556452321,1,0.095528268,0,0.951724335,0.990486298,0.724496596,1,0,0,0.075293734,0.312029739,0.808769014,0.53326561,0.961238037,0.922476074,0,0,0,0,0,0,-0.378039063,112.2122705,0.378039063,67.78772953,0,0.917738536,0,0,0,10,6,0% -2018-10-18 15:00:00,83.17064218,107.8860002,55.48919022,263.4453813,24.16217836,23.85190048,0,23.85190048,23.43359953,0.418300955,55.35310727,41.17053185,14.18257543,0.728578826,13.4539966,1.451601547,1.88296592,-6.589994628,6.589994628,0.342890857,0.342890857,0.435439376,0.263120525,8.462860548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.52526721,0.52785288,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190629925,8.13482346,22.71589713,8.662676339,0,41.17053185,-0.156277296,98.99088275,0.156277296,81.00911725,0,0.730055893,22.71589713,38.71946572,48.05701305,10,7,112% -2018-10-18 16:00:00,72.35826755,118.1347472,244.0729182,617.8870755,56.81353725,98.50203251,41.56170827,56.94032424,55.10039948,1.839924754,60.89144257,0,60.89144257,1.713137768,59.1783048,1.26289001,2.0618403,-2.098547017,2.098547017,0.889026365,0.889026365,0.232772803,1.683269898,54.13974612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.96459983,1.241162481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219523311,52.04118328,54.18412314,53.28234576,41.56170827,0,0.067264246,86.14313047,-0.067264246,93.85686953,0,0,54.18412314,53.28234576,89.05635279,10,8,64% -2018-10-18 17:00:00,62.58138977,130.1431148,422.4447593,757.3030687,73.71568415,287.9148433,213.2373919,74.67745133,71.49288429,3.184567037,104.6494227,0,104.6494227,2.222799859,102.4266228,1.092251302,2.271425852,-0.959658539,0.959658539,0.694264965,0.694264965,0.174497807,2.380830271,76.57568557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72167974,1.610410931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.724903427,73.60746167,70.44658317,75.2178726,213.2373919,0,0.28157471,73.64578918,-0.28157471,106.3542108,0.872427234,0,256.4806913,75.2178726,305.7092845,10,9,19% -2018-10-18 18:00:00,54.57454344,144.7308396,560.2084877,821.544151,84.00594377,472.8808702,387.1849274,85.69594283,81.47285462,4.223088214,138.3621229,0,138.3621229,2.533089154,135.8290337,0.952505471,2.52602968,-0.370226376,0.370226376,0.593466129,0.593466129,0.149954786,2.763706448,88.89029956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31480683,1.835214469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.002295914,85.44473704,80.31710274,87.27995151,387.1849274,0,0.471289251,61.88198282,-0.471289251,118.1180172,0.943908041,0,445.784069,87.27995151,502.9070516,10,10,13% -2018-10-18 19:00:00,49.2867772,162.3023516,644.7509714,850.9377281,89.70696902,622.2953308,530.4329528,91.86237808,87.00197292,4.860405166,159.0323338,0,159.0323338,2.704996099,156.3273377,0.86021654,2.832710418,0.046683394,-0.046683394,0.522170359,0.522170359,0.139134291,2.861091339,92.02253241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.62960565,1.959760466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072850936,88.4555584,85.70245659,90.41531887,530.4329528,0,0.623351081,51.43873673,-0.623351081,128.5612633,0.96978838,0,600.1101706,90.41531887,659.2851885,10,11,10% -2018-10-18 20:00:00,47.67112045,181.9659413,669.3818983,858.4632992,91.3053886,718.0067426,624.4084649,93.59827775,88.55219425,5.046083498,165.0525854,0,165.0525854,2.753194347,162.2993911,0.83201801,3.175904802,0.410665467,-0.410665467,0.459925759,0.459925759,0.136402536,2.692556118,86.60186035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.11973736,1.994679932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950747742,83.24500223,87.0704851,85.23968216,624.4084649,0,0.727356039,43.334803,-0.727356039,136.665197,0.981257875,0,699.7762083,85.23968216,755.5638754,10,12,8% -2018-10-18 21:00:00,50.09428166,201.3595946,632.2212732,846.9448363,88.88397557,748.3709144,657.4011676,90.96974677,86.20379576,4.765951009,155.9695471,0,155.9695471,2.68017981,153.2893673,0.874310151,3.514387907,0.790127002,-0.790127002,0.395034014,0.395034014,0.140589979,2.288067165,73.59210519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86236741,1.941781149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657696872,70.73953072,84.52006428,72.68131187,657.4011676,0,0.776203053,39.08576682,-0.776203053,140.9142332,0.985583866,0,732.4440485,72.68131187,780.0125135,10,13,6% -2018-10-18 22:00:00,56.02205621,218.3354888,536.0984736,811.9731814,82.30800033,706.3015701,622.4341229,83.86744718,79.82611044,4.041336743,132.4651716,0,132.4651716,2.481889894,129.9832817,0.977769335,3.810673153,1.262910049,-1.262910049,0.314183352,0.314183352,0.153531495,1.695251075,54.52510196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73189369,1.79812078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228203633,52.41160197,77.96009732,54.20972275,622.4341229,0,0.766569805,39.95314833,-0.766569805,140.0468517,0.984774368,0,690.9172673,54.20972275,726.3964467,10,14,5% -2018-10-18 23:00:00,64.46252945,232.3323874,388.7327095,737.2009431,70.92443827,587.1322807,515.4160445,71.71623614,68.78580478,2.930431365,96.3913795,0,96.3913795,2.138633497,94.252746,1.125083383,4.054965119,1.994298788,-1.994298788,0.189108511,0.189108511,0.1824504,0.987719437,31.76845237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.11953195,1.549432689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71559937,30.53704479,66.83513132,32.08647747,515.4160445,0,0.69915272,45.64093393,-0.69915272,134.3590661,0.978484867,0,571.1619309,32.08647747,592.1618887,10,15,4% -2018-10-18 00:00:00,74.50920115,243.9009463,204.4845993,570.9363121,51.99686055,382.3750657,330.4046111,51.97045464,50.42896335,1.541491284,51.14755572,0,51.14755572,1.567897193,49.57965853,1.300430883,4.256874562,3.587710339,-3.587710339,0,0,0.254282527,0.391974298,12.60724084,0.076963616,1,0.271829997,0,0.928672308,0.967434271,0.724496596,1,48.63626463,1.135936179,0.012701544,0.312029739,0.964612388,0.689108984,0.961238037,0.922476074,0.278424331,12.11855943,48.91468896,13.25449561,304.9754774,0,0.578706598,54.64037701,-0.578706598,125.359623,0.963600432,0,342.7891908,13.25449561,351.4639931,10,16,3% -2018-10-18 01:00:00,85.44566464,253.8745744,25.3608711,145.7065152,13.7911228,74.00212317,60.43567265,13.56645053,13.37526957,0.191180959,6.564890053,0,6.564890053,0.415853236,6.149036816,1.49130818,4.430947211,12.52529093,-12.52529093,0,0,0.543795312,0.103963309,3.343817392,0.617121882,1,0.079669476,0,0.953453197,0.99221516,0.724496596,1,12.95119734,0.301284254,0.081630562,0.312029739,0.794725002,0.519221598,0.961238037,0.922476074,0.071655752,3.214204465,13.0228531,3.51548872,23.13949659,0,0.414776735,65.4947428,-0.414776735,114.5052572,0.92945322,0,34.5299327,3.51548872,36.83074976,10,17,7% -2018-10-18 02:00:00,97.22752115,263.0417323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696940368,4.590944299,-7.681957641,7.681957641,1,0.156154184,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.21232809,77.74118077,-0.21232809,102.2588192,0.814515378,0,0,0,0,10,18,0% -2018-10-18 03:00:00,109.0591897,272.1510768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903441939,4.749932354,-2.680859473,2.680859473,1,0.98860766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.007440218,90.426297,0.007440218,89.573703,0,0,0,0,0,10,19,0% -2018-10-18 04:00:00,120.8111749,282.0587017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108552776,4.922853028,-1.421072164,1.421072164,1,0.773171342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232367989,103.4365253,0.232367989,76.56347466,0,0.834824062,0,0,0,10,20,0% -2018-10-18 05:00:00,132.079753,293.9965321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305226565,5.131207475,-0.796721464,0.796721464,1,0.666401084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447132221,116.5598386,0.447132221,63.44016143,0,0.938176254,0,0,0,10,21,0% -2018-10-18 06:00:00,142.1532681,309.9985221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48104257,5.410494886,-0.388510712,0.388510712,1,0.596592934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637104689,129.5762607,0.637104689,50.4237393,0,0.971519962,0,0,0,10,22,0% -2018-10-18 07:00:00,149.6044145,332.9679464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611089609,5.811386968,-0.071813405,0.071813405,1,0.542434505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789348665,142.1246848,0.789348665,37.87531515,0,0.986656636,0,0,0,10,23,0% -2018-10-19 08:00:00,152.1170634,3.156999976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654943605,0.055100044,0.208066289,-0.208066289,1,0.494572259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893500161,153.3164254,0.893500161,26.6835746,0,0.994040301,0,0,0,10,0,0% -2018-10-19 09:00:00,148.4596721,32.3219377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591110085,0.564124234,0.485772448,-0.485772448,1,0.447081708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942473767,160.4712316,0.942473767,19.52876835,0,0.996948126,0,0,0,10,1,0% -2018-10-19 10:00:00,140.3382582,53.72245736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449364672,0.937633763,0.795854819,-0.795854819,1,0.3940545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93294509,158.8986561,0.93294509,21.10134394,0,0.996406278,0,0,0,10,2,0% -2018-10-19 11:00:00,129.9560956,68.72370872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268161751,1.199454991,1.193313768,-1.193313768,1,0.326085017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86557697,149.9486531,0.86557697,30.05134689,0,0.992235062,0,0,0,10,3,0% -2018-10-19 12:00:00,118.5619531,80.146093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06929645,1.398813206,1.808303293,-1.808303293,1,0.220915614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744974099,138.1568743,0.744974099,41.84312573,0,0.982883573,0,0,0,10,4,0% -2018-10-19 13:00:00,106.7830575,89.83044775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863715939,1.567837082,3.119083827,-3.119083827,1,0,#DIV/0!,0,0,0.003230589,1,0.310253433,0,0.922756885,0.961518848,0.724496596,1,0,0,0.000551626,0.312029739,0.998436973,0.722933569,0.961238037,0.922476074,0,0,0,0,0,0,-0.57936911,125.4061814,0.57936911,54.59381859,0,0.963699231,0,0,0,10,5,0% -2018-10-19 14:00:00,94.99333454,98.90673784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657946455,1.726248228,10.01938032,-10.01938032,1,0,#DIV/0!,0,0,0.541969612,1,0.099477136,0,0.951284727,0.99004669,0.724496596,1,0,0,0.073737522,0.312029739,0.812267017,0.536763613,0.961238037,0.922476074,0,0,0,0,0,0,-0.380061468,112.3374902,0.380061468,67.66250983,0,0.918442333,0,0,0,10,6,0% -2018-10-19 15:00:00,83.36631816,108.1932412,52.64891708,254.0077369,23.3056655,22.99980347,0,22.99980347,22.6029137,0.396889776,53.71558717,40.24749587,13.4680913,0.702751804,12.76533949,1.455016737,1.888328288,-6.75779663,6.75779663,0.314195024,0.314195024,0.442661821,0.245188464,7.886103823,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.72678039,0.509141289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177638207,7.580422957,21.9044186,8.089564247,0,40.24749587,-0.158449882,99.11693326,0.158449882,80.88306674,0,0.734442806,21.9044186,37.64904807,46.54496758,10,7,112% -2018-10-19 16:00:00,72.58108526,118.436188,240.0132349,613.6942419,56.30030783,96.1755644,39.76359743,56.41196697,54.60264583,1.809321147,59.8916496,0,59.8916496,1.697662007,58.19398759,1.266778912,2.067101434,-2.114636917,2.114636917,0.8917779,0.8917779,0.23457168,1.65944375,53.37341531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.48614008,1.229950345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.202261348,51.30455695,53.68840143,52.5345073,39.76359743,0,0.064793825,86.28498476,-0.064793825,93.71501524,0,0,53.68840143,52.5345073,88.07118576,10,8,64% -2018-10-19 17:00:00,62.83881819,130.4323076,417.9143696,754.9341942,73.29050494,284.7110178,210.4800769,74.23094085,71.0805258,3.150415046,103.5381565,0,103.5381565,2.209979137,101.3281774,1.096744275,2.276473219,-0.96175496,0.96175496,0.694623474,0.694623474,0.175372062,2.357071182,75.8115116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32530508,1.601122362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.707690048,72.87290859,70.03299513,74.47403095,210.4800769,0,0.27880586,73.81105239,-0.27880586,106.1889476,0.87066374,0,253.2903662,74.47403095,302.03213,10,9,19% -2018-10-19 18:00:00,54.87353862,144.9844891,555.3214669,819.8376247,83.60079926,469.1222437,383.8560692,85.2661745,81.07992671,4.186247786,137.1649915,0,137.1649915,2.520872552,134.6441189,0.957723921,2.5304567,-0.368272646,0.368272646,0.593132021,0.593132021,0.150544872,2.739413191,88.10894488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.93710958,1.826363583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984695531,84.69366921,79.92180511,86.52003279,383.8560692,0,0.468209872,62.08184194,-0.468209872,117.9181581,0.943210282,0,441.9787965,86.52003279,498.6044276,10,10,13% -2018-10-19 19:00:00,49.62568413,162.4756836,639.5723404,849.4746514,89.30095971,618.076386,526.6468133,91.42957275,86.60820629,4.821366459,157.7644721,0,157.7644721,2.692753421,155.0717187,0.866131582,2.835735634,0.050800528,-0.050800528,0.521466288,0.521466288,0.13962605,2.836323391,91.22591006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.25110219,1.950890687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054906642,87.68981469,85.30600883,89.64070538,526.6468133,0,0.619967662,51.686227,-0.619967662,128.313773,0.969350632,0,595.8114302,89.64070538,654.4794791,10,11,10% -2018-10-19 20:00:00,48.03288109,182.01365,663.9813885,857.018572,90.88962606,713.3748503,620.2205097,93.15434066,88.14896849,5.005372173,163.7306325,0,163.7306325,2.740657573,160.9899749,0.838331924,3.176737476,0.416768822,-0.416768822,0.458882023,0.458882023,0.136885804,2.667630081,85.80015333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73214142,1.985597082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932688913,82.47437094,86.66483034,84.45996803,620.2205097,0,0.72369553,43.63956079,-0.72369553,136.3604392,0.980910172,0,695.0454369,84.45996803,750.3227968,10,12,8% -2018-10-19 21:00:00,50.45234019,201.2792634,626.682127,845.3176255,88.45161249,743.3572144,652.8485498,90.50866461,85.78447002,4.724194585,154.6134796,0,154.6134796,2.667142468,151.9463372,0.880559452,3.512985863,0.798961162,-0.798961162,0.393523284,0.393523284,0.141142708,2.263470519,72.80099251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.45929556,1.932335639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639876686,69.97908312,84.09917224,71.91141876,652.8485498,0,0.772311531,39.43808145,-0.772311531,140.5619186,0.985259286,0,727.3242683,71.91141876,774.3888536,10,13,6% -2018-10-19 22:00:00,56.35727669,218.1672999,530.5209447,809.8625503,81.8469901,700.9062962,617.5280039,83.37829234,79.37900136,3.999290974,131.0989339,0,131.0989339,2.467988735,128.6309452,0.983620036,3.807737704,1.276672136,-1.276672136,0.311829896,0.311829896,0.154276642,1.671697505,53.76753819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30211544,1.788049437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211139152,51.68340285,77.51325459,53.47145229,617.5280039,0,0.762509643,40.31405522,-0.762509643,139.6859448,0.984427059,0,685.4245312,53.47145229,720.4205273,10,14,5% -2018-10-19 23:00:00,64.76952948,232.1181202,383.2495554,733.937041,70.40123796,581.2530927,510.0856147,71.16747791,68.27838088,2.889097034,95.04614889,0,95.04614889,2.122857077,92.92329181,1.130441544,4.051225451,2.019658863,-2.019658863,0.184771683,0.184771683,0.18369555,0.966476621,31.08521038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.6317768,1.538002726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700209022,29.8802866,66.33198582,31.41828933,510.0856147,0,0.694999143,45.97285106,-0.694999143,134.0271489,0.978057465,0,565.2250293,31.41828933,585.7876713,10,15,4% -2018-10-19 00:00:00,74.79083992,243.664518,199.3708259,564.460925,51.28819614,375.5541248,324.3095155,51.24460929,49.74166779,1.5029415,49.88629331,0,49.88629331,1.546528347,48.33976497,1.305346407,4.25274811,3.655823157,-3.655823157,0,0,0.257250257,0.386632087,12.43541695,0.086782085,1,0.267004826,0,0.929393461,0.968155424,0.724496596,1,47.99034227,1.120454523,0.014258236,0.312029739,0.960362049,0.684858645,0.961238037,0.922476074,0.274032221,11.95339578,48.26437449,13.0738503,296.1652595,0,0.574547327,54.93206263,-0.574547327,125.0679374,0.962974967,0,333.4641055,13.0738503,342.020679,10,16,3% -2018-10-19 01:00:00,85.70223374,253.6251012,22.52382014,132.5869427,12.5877745,66.84424088,54.46624016,12.37800072,12.20820665,0.16979407,5.84072881,0,5.84072881,0.379567845,5.461160965,1.495786155,4.426593081,13.27988783,-13.27988783,0,0,0.558864989,0.094891961,3.052051663,0.635148466,1,0.075159993,0,0.953934055,0.992696018,0.724496596,1,11.81847695,0.274995612,0.08345859,0.312029739,0.790733278,0.515229874,0.961238037,0.922476074,0.065495897,2.933748149,11.88397284,3.20874376,19.87209129,0,0.410796411,65.7451261,-0.410796411,114.2548739,0.928285207,0,30.33094123,3.20874376,32.43099984,10,17,7% -2018-10-19 02:00:00,97.4812818,262.7799928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701369327,4.586376083,-7.426328846,7.426328846,1,0.199869282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.208357697,77.97387356,-0.208357697,102.0261264,0.810028064,0,0,0,0,10,18,0% -2018-10-19 03:00:00,109.3103405,271.8737271,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907825349,4.745091688,-2.648440166,2.648440166,1,0.983063632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011201196,90.64179468,0.011201196,89.35820532,0,0,0,0,0,10,19,0% -2018-10-19 04:00:00,121.0692788,281.7614792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.113057538,4.917665517,-1.411180411,1.411180411,1,0.771479753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235866778,103.6427219,0.235866778,76.35727812,0,0.838015928,0,0,0,10,20,0% -2018-10-19 05:00:00,132.3569406,293.680766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310064401,5.125696317,-0.793200331,0.793200331,1,0.665798935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450334082,116.7651203,0.450334082,63.23487971,0,0.938971317,0,0,0,10,21,0% -2018-10-19 06:00:00,142.4640679,309.6932449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486467051,5.405166794,-0.387718815,0.387718815,1,0.596457512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639995311,129.7914699,0.639995311,50.20853012,0,0.971874428,0,0,0,10,22,0% -2018-10-19 07:00:00,149.9553903,332.7884257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617215291,5.80825374,-0.072607263,0.072607263,1,0.542570263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791935157,142.3667244,0.791935157,37.63327556,0,0.986863518,0,0,0,10,23,0% -2018-10-20 08:00:00,152.4743093,3.286746217,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661178721,0.057364543,0.206022704,-0.206022704,1,0.494921732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895810555,153.6127335,0.895810555,26.38726647,0,0.994184627,0,0,0,10,0,0% -2018-10-20 09:00:00,148.7650472,32.69585238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596439886,0.570650276,0.482392762,-0.482392762,1,0.447659669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944555083,160.8311601,0.944555083,19.16883994,0,0.997065025,0,0,0,10,1,0% -2018-10-20 10:00:00,140.5833334,54.14111575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453642041,0.944940731,0.790613221,-0.790613221,1,0.394950866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934860093,159.2055538,0.934860093,20.79444623,0,0.996516061,0,0,0,10,2,0% -2018-10-20 11:00:00,130.1614807,69.11310799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271746397,1.206251291,1.184813217,-1.184813217,1,0.327538696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867399834,150.157875,0.867399834,29.84212501,0,0.992356457,0,0,0,10,3,0% -2018-10-20 12:00:00,118.7471406,80.50033676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072528581,1.404995925,1.792447204,-1.792447204,1,0.223627165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746785289,138.3126718,0.746785289,41.68732821,0,0.983046351,0,0,0,10,4,0% -2018-10-20 13:00:00,106.9623457,90.15874554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866845108,1.573566959,3.077717499,-3.077717499,1,0.003833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58124983,125.5384971,0.58124983,54.46150289,0,0.963978469,0,0,0,10,5,0% -2018-10-20 14:00:00,95.17781813,99.21897603,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661166301,1.731697812,9.631332721,-9.631332721,1,0,#DIV/0!,0,0,0.527611399,1,0.103457091,0,0.950837993,0.989599956,0.724496596,1,0,0,0.072177575,0.312029739,0.815792808,0.540289404,0.961238037,0.922476074,0,0,0,0,0,0,-0.382088052,112.4630815,0.382088052,67.5369185,0,0.919140111,0,0,0,10,6,0% -2018-10-20 15:00:00,83.56241446,108.4966147,49.84444641,244.4330157,22.43841836,22.13756575,0,22.13756575,21.76181726,0.375748491,52.02607016,39.26410595,12.76196421,0.676601102,12.08536311,1.458439263,1.893623153,-6.936357528,6.936357528,0.283659312,0.283659312,0.450168875,0.227753783,7.325344574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.9182865,0.490195196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.165006841,7.041399838,21.08329334,7.531595033,0,39.26410595,-0.160633398,99.24366282,0.160633398,80.75633718,0,0.738732228,21.08329334,36.5372555,44.99619632,10,7,113% -2018-10-20 16:00:00,72.8044276,118.7330963,235.9446708,609.412868,55.78136752,93.84643278,37.96842871,55.87800407,54.09935348,1.778650592,58.88953116,0,58.88953116,1.682014042,57.20751711,1.270676972,2.072283461,-2.131301667,2.131301667,0.89462774,0.89462774,0.236417154,1.635539565,52.60457455,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.00235633,1.218613448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184942848,50.56551797,53.18729918,51.78413142,37.96842871,0,0.062303293,86.42797077,-0.062303293,93.57202923,0,0,53.18729918,51.78413142,87.07897751,10,8,64% -2018-10-20 17:00:00,63.09646014,130.7161152,413.3716309,752.5233713,72.86247685,281.4877742,207.7061999,73.7815743,70.66540434,3.116169962,102.4238103,0,102.4238103,2.197072511,100.2267378,1.101240976,2.281426596,-0.96399438,0.96399438,0.695006438,0.695006438,0.176263854,2.333281427,75.0463513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.92627454,1.591771555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.690454451,72.1374074,69.61672899,73.72917896,207.7061999,0,0.276012956,73.97761121,-0.276012956,106.0223888,0.868849083,0,250.0820703,73.72917896,298.3363433,10,9,19% -2018-10-20 18:00:00,55.17204556,145.2320225,550.4255574,818.1055221,83.19392897,465.3404213,380.5057559,84.83466541,80.68532505,4.149340352,135.9656529,0,135.9656529,2.508603911,133.457049,0.96293385,2.534776971,-0.366379189,0.366379189,0.592808221,0.592808221,0.151144742,2.715133795,87.32803606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55780346,1.817474994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967105192,83.94302994,79.52490865,85.76050494,380.5057559,0,0.465105962,62.28292005,-0.465105962,117.7170799,0.942497615,0,438.1506763,85.76050494,494.2792115,10,10,13% -2018-10-20 19:00:00,49.96304948,162.6431384,634.3922294,847.9930645,88.89397514,613.8366373,522.8408269,90.9958104,86.21349381,4.782316594,156.4962221,0,156.4962221,2.680481334,153.8157408,0.872019718,2.838658271,0.054885922,-0.054885922,0.520767644,0.520767644,0.140124628,2.811619093,90.4313349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.87168954,1.941999602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037008461,86.92603882,84.908698,88.86803843,522.8408269,0,0.616562622,51.9344489,-0.616562622,128.0655511,0.968905236,0,591.491913,88.86803843,649.6542668,10,11,10% -2018-10-20 20:00:00,48.39207649,182.057372,658.5897522,855.558508,90.47356093,708.7289706,616.0187936,92.710177,87.74544926,4.964727741,162.410822,0,162.410822,2.728111674,159.6827103,0.844601067,3.17750057,0.422857253,-0.422857253,0.45784084,0.45784084,0.137374687,2.642822805,85.00226604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.34426339,1.976507621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914716125,81.70741133,86.25897951,83.68391896,616.0187936,0,0.720019482,43.94391108,-0.720019482,136.0560889,0.980557435,0,690.3007874,83.68391896,745.0702387,10,12,8% -2018-10-20 21:00:00,50.80727684,201.1974212,621.1643377,843.6757415,88.01958745,738.3397358,648.2916646,90.04807129,85.36547213,4.682599158,153.2626006,0,153.2626006,2.654115319,150.6084853,0.886754265,3.511557446,0.807800993,-0.807800993,0.392011584,0.392011584,0.141700967,2.239050955,72.0155754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.05653885,1.922897514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.622184795,69.22411032,83.67872364,71.14700783,648.2916646,0,0.768413305,39.78838197,-0.768413305,140.211618,0.984930851,0,722.2011844,71.14700783,768.765478,10,13,6% -2018-10-20 22:00:00,56.68921895,217.9991415,524.9786174,807.7346387,81.38684573,695.5196181,612.6293755,82.89024261,78.93273204,3.95751057,129.7412575,0,129.7412575,2.454113684,127.2871438,0.989413521,3.804802785,1.290488517,-1.290488517,0.309467156,0.309467156,0.155028877,1.648381066,53.01760135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.87314439,1.77799701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194246471,50.96253504,77.06739086,52.74053205,612.6293755,0,0.758453762,40.67192606,-0.758453762,139.3280739,0.984076403,0,679.9415032,52.74053205,714.4591266,10,14,5% -2018-10-20 23:00:00,65.07319592,231.9044171,377.8164823,730.6445672,69.87894984,575.3947385,504.7747566,70.61998191,67.77184168,2.848140234,93.7130885,0,93.7130885,2.107108164,91.60598034,1.135741524,4.047495629,2.045256492,-2.045256492,0.18039423,0.18039423,0.184954742,0.945537567,30.41173843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.14487205,1.526592692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685038749,29.23291974,65.8299108,30.75951244,504.7747566,0,0.69086226,46.301597,-0.69086226,133.698403,0.977626673,0,559.3111769,30.75951244,579.4426626,10,15,4% -2018-10-20 00:00:00,75.06903031,243.4286817,194.3269446,557.9117969,50.57812248,368.7608304,318.2429064,50.51792406,49.05300547,1.464918592,48.64193456,0,48.64193456,1.525117006,47.11681755,1.310201745,4.248631989,3.725480037,-3.725480037,0,0,0.260273338,0.381279252,12.26325137,0.096609419,1,0.26224027,0,0.930100749,0.968862712,0.724496596,1,47.34193565,1.104942079,0.015802508,0.312029739,0.956164372,0.680660967,0.961238037,0.922476074,0.269670118,11.78790367,47.61160577,12.89284575,287.4976442,0,0.570417955,55.22062382,-0.570417955,124.7793762,0.962344975,0,324.2835191,12.89284575,332.7216288,10,16,3% -2018-10-20 01:00:00,85.95466611,253.3760399,19.86598638,119.8334937,11.41224268,59.97420411,48.75632446,11.21787965,11.06812146,0.149758197,5.160859623,0,5.160859623,0.344121223,4.816738399,1.500191931,4.422246142,14.11534229,-14.11534229,0,0,0.574461417,0.086030306,2.767030364,0.653224733,1,0.070726731,0,0.954402128,0.993164091,0.724496596,1,10.71221293,0.249314655,0.085267315,0.312029739,0.786810019,0.511306615,0.961238037,0.922476074,0.059470363,2.659774835,10.77168329,2.90908949,16.90748741,0,0.406867253,65.99180812,-0.406867253,114.0081919,0.927109795,0,26.44678049,2.90908949,28.35072138,10,17,7% -2018-10-20 02:00:00,97.73122976,262.518358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705731741,4.581809694,-7.190806831,7.190806831,1,0.240145919,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.204440736,78.20323779,-0.204440736,101.7967622,0.805430346,0,0,0,0,10,18,0% -2018-10-20 03:00:00,109.5574128,271.5959996,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912137573,4.740244429,-2.617342432,2.617342432,1,0.977745607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014899372,90.85370274,0.014899372,89.14629726,0,0,0,0,0,10,19,0% -2018-10-20 04:00:00,121.3230237,281.4630559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117486222,4.912457048,-1.401631418,1.401631418,1,0.769846779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239296023,103.8449948,0.239296023,76.15500517,0,0.841053778,0,0,0,10,20,0% -2018-10-20 05:00:00,132.629559,293.362304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314822489,5.120138107,-0.789817254,0.789817254,1,0.665220395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453462747,116.9660682,0.453462747,63.0339318,0,0.939737359,0,0,0,10,21,0% -2018-10-20 06:00:00,142.7704059,309.3827805,0,0,0,0,0,0,0,0,0,0,0,0,0,2.491813658,5.399748168,-0.386994584,0.386994584,1,0.596333661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642812429,130.0018564,0.642812429,49.99814365,0,0.972216812,0,0,0,10,22,0% -2018-10-20 07:00:00,150.3027495,332.6019399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623277854,5.804998949,-0.073436371,0.073436371,1,0.542712049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794451195,142.6034504,0.794451195,37.39654965,0,0.987063472,0,0,0,10,23,0% -2018-10-21 08:00:00,152.8290021,3.413491146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66736928,0.059576659,0.203963147,-0.203963147,1,0.495273937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898056696,153.9037927,0.898056696,26.09620729,0,0.994324228,0,0,0,10,0,0% -2018-10-21 09:00:00,149.0681945,33.06949609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601730804,0.577171589,0.479012892,-0.479012892,1,0.448237661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946581069,161.1878801,0.946581069,18.81211995,0,0.997178322,0,0,0,10,1,0% -2018-10-21 10:00:00,140.826712,54.55825662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4578898,0.952221212,0.785391007,-0.785391007,1,0.395843917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936730793,159.5095901,0.936730793,20.49040992,0,0.996622871,0,0,0,10,2,0% -2018-10-21 11:00:00,130.365887,69.49999167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275313961,1.213003685,1.176369601,-1.176369601,1,0.32898264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869190768,150.3647372,0.869190768,29.63526276,0,0.992475229,0,0,0,10,3,0% -2018-10-21 12:00:00,118.931972,80.85162226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075754498,1.411127014,1.776759665,-1.776759665,1,0.226309892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748577415,138.467299,0.748577415,41.53270104,0,0.983206641,0,0,0,10,4,0% -2018-10-21 13:00:00,107.1417409,90.48381583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869976145,1.579240506,3.037147312,-3.037147312,1,0.01077091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583123953,125.6705661,0.583123953,54.32943386,0,0.964254937,0,0,0,10,5,0% -2018-10-21 14:00:00,95.36271358,99.52768126,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664393336,1.737085735,9.269263578,-9.269263578,1,0,#DIV/0!,0,0,0.513378145,1,0.107467788,0,0.950384094,0.989146057,0.724496596,1,0,0,0.070614115,0.312029739,0.819346012,0.543842608,0.961238037,0.922476074,0,0,0,0,0,0,-0.384119249,112.589073,0.384119249,67.41092695,0,0.91983209,0,0,0,10,6,0% -2018-10-21 15:00:00,83.75888804,108.7960056,47.07900377,234.7293921,21.56094485,21.26570422,0,21.26570422,20.91080281,0.354901417,50.28547612,38.22048456,12.06499156,0.650142039,11.41484953,1.461868374,1.898848511,-7.126698475,7.126698475,0.251109094,0.251109094,0.457973685,0.210840338,6.781350035,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.10025904,0.471025694,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.152753107,6.518491595,20.25301215,6.989517288,0,38.22048456,-0.16282786,99.37107361,0.16282786,80.62892639,0,0.742927242,20.25301215,35.38455647,43.41149667,10,7,114% -2018-10-21 16:00:00,73.02824034,119.0253673,231.8685159,605.0415816,55.25668515,91.5155245,36.17710946,55.33841503,53.59049222,1.747922814,57.88539909,0,57.88539909,1.666192933,56.21920616,1.274583241,2.077384552,-2.148566285,2.148566285,0.897580164,0.897580164,0.238310428,1.611563648,51.83342664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.51321953,1.207151108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.167572377,49.82426127,52.68079191,51.03141238,36.17710946,0,0.059792766,86.57208225,-0.059792766,93.42791775,0,0,52.68079191,51.03141238,86.07983068,10,8,63% -2018-10-21 17:00:00,63.35423696,130.9944537,408.8180913,750.0704285,72.43166602,278.246022,204.9165944,73.3294275,70.24758405,3.081843457,101.3067613,0,101.3067613,2.184081975,99.12267936,1.10574003,2.286284519,-0.966382834,0.966382834,0.695414887,0.695414887,0.177173338,2.309469534,74.28047898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.52464978,1.582359956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673202816,71.40122179,69.1978526,72.98358174,204.9165944,0,0.273196472,74.14543557,-0.273196472,105.8545644,0.866981531,0,246.8567553,72.98358174,294.6230499,10,9,19% -2018-10-21 18:00:00,55.4699635,145.4733943,545.5226973,816.3480537,82.78543971,461.5366945,377.1351607,84.40153378,80.28915326,4.112380522,134.7645803,0,134.7645803,2.496286453,132.2682938,0.968133499,2.538989704,-0.364549691,0.364549691,0.592495358,0.592495358,0.151754345,2.69087845,86.54790079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.17698806,1.808551038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.949532277,83.19313425,79.12652033,85.00168529,377.1351607,0,0.461978391,62.48515665,-0.461978391,117.5148433,0.94176983,0,434.3010364,85.00168529,489.9329394,10,10,13% -2018-10-21 19:00:00,50.2987613,162.8047096,629.2129497,846.4933651,88.4861499,609.5778384,519.0165994,90.561239,85.81796601,4.743272995,155.2281483,0,155.2281483,2.668183899,152.5599644,0.877878994,2.84147822,0.058936129,-0.058936129,0.520075018,0.520075018,0.140629893,2.786989816,89.63917268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.49149317,1.933090152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019164634,86.16458237,84.5106578,88.09767253,519.0165994,0,0.613137233,52.18330735,-0.613137233,127.8166927,0.968452188,0,587.1534189,88.09767253,644.8115836,10,11,10% -2018-10-21 20:00:00,48.7485929,182.0970985,653.2096137,854.0836684,90.05735155,704.0713262,611.8053661,92.26596011,87.34179012,4.924169985,161.0937949,0,161.0937949,2.715561425,158.3782334,0.850823452,3.178193927,0.428926799,-0.428926799,0.456802887,0.456802887,0.137868993,2.618146347,84.20858632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95625087,1.967415009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896838116,80.9444962,85.85308899,82.91191121,611.8053661,0,0.716329546,44.24773354,-0.716329546,135.7522665,0.980199724,0,685.5445399,82.91191121,739.8087276,10,12,8% -2018-10-21 21:00:00,51.1589732,201.1140321,615.6707543,842.0199671,87.58808211,733.3211473,643.7329829,89.58816447,84.94697826,4.641186206,151.9176062,0,151.9176062,2.641103841,149.2765024,0.892892524,3.510102031,0.816641282,-0.816641282,0.390499805,0.390499805,0.142264484,2.214820637,71.23624507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.65426662,1.913470742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604630012,68.47498837,83.25889663,70.38845911,643.7329829,0,0.764510354,40.13654944,-0.764510354,139.8634506,0.984598662,0,717.0775303,70.38845911,763.145369,10,13,6% -2018-10-21 22:00:00,57.0177575,217.830977,519.4744555,805.5906127,80.92777702,690.1446274,607.7411036,82.40352382,78.48750595,3.916017873,128.3928671,0,128.3928671,2.440271069,125.952596,0.995147601,3.801867761,1.304351496,-1.304351496,0.307096447,0.307096447,0.155787789,1.625313298,52.27566263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44517614,1.767968082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.177533951,50.24935532,76.62271009,52.01732341,607.7411036,0,0.754404401,41.02664518,-0.754404401,138.9733548,0.98372255,0,674.4713382,52.01732341,708.515636,10,14,5% -2018-10-21 23:00:00,65.37340026,231.6912622,372.4364411,727.3254804,69.35783099,569.5607745,499.4867548,70.0740197,67.26643649,2.80758321,92.39292156,0,92.39292156,2.091394508,90.30152705,1.140981078,4.043775374,2.071079625,-2.071079625,0.175978215,0.175978215,0.186227295,0.92491214,29.74835378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.65905735,1.515208201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.670095697,28.59524919,65.32915305,30.11045739,499.4867548,0,0.686744474,46.62704492,-0.686744474,133.3729551,0.977192716,0,553.4239715,30.11045739,573.1306637,10,15,4% -2018-10-21 00:00:00,75.34364474,243.1934442,189.3558168,551.2932138,49.86702342,361.9996944,312.2089016,49.7907928,48.36334867,1.427444131,47.41518482,0,47.41518482,1.503674746,45.91151007,1.314994671,4.24452632,3.796688157,-3.796688157,0,0,0.263350893,0.375918686,12.09083717,0.106439357,1,0.257538388,0,0.930794035,0.969555998,0.724496596,1,46.69143737,1.089407235,0.017333527,0.312029739,0.95202116,0.676517756,0.961238037,0.922476074,0.265339258,11.62217258,46.95677663,12.71157982,278.9775868,0,0.566320959,55.50592857,-0.566320959,124.4940714,0.961710843,0,315.2525469,12.71157982,323.5720216,10,16,3% -2018-10-21 01:00:00,86.20279309,253.127417,17.39074946,107.5157842,10.27048881,53.41994198,43.32804749,10.0918945,9.96079568,0.131098815,4.526281682,0,4.526281682,0.309693132,4.216588551,1.504522564,4.417906854,15.04439033,-15.04439033,0,0,0.590571949,0.077423283,2.49019892,0.671332494,1,0.066372323,0,0.954857372,0.993619336,0.724496596,1,9.638037713,0.22437162,0.087055223,0.312029739,0.782957645,0.507454241,0.961238037,0.922476074,0.053608549,2.393673921,9.691646262,2.618045541,14.2405213,0,0.402992433,66.23461629,-0.402992433,113.7653837,0.925928191,0,22.8773464,2.618045541,24.59080484,10,17,7% -2018-10-21 02:00:00,97.97724277,262.2568708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710025478,4.577245882,-6.973275148,6.973275148,1,0.277346028,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.200579499,78.42915138,-0.200579499,101.5708486,0.800722282,0,0,0,0,10,18,0% -2018-10-21 03:00:00,109.8002844,271.3179523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916376483,4.735391588,-2.587515375,2.587515375,1,0.972644879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018532689,91.06190565,0.018532689,88.93809435,0,0,0,0,0,10,19,0% -2018-10-21 04:00:00,121.5722839,281.1635012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121836633,4.907228833,-1.392419674,1.392419674,1,0.768271478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242653981,104.0432336,0.242653981,75.95676642,0,0.843945272,0,0,0,10,20,0% -2018-10-21 05:00:00,132.8974718,293.0412096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.31949845,5.114533952,-0.786571847,0.786571847,1,0.664665398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456516845,117.1625732,0.456516845,62.83742677,0,0.940475016,0,0,0,10,21,0% -2018-10-21 06:00:00,143.07213,309.0671168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.497079737,5.394238797,-0.3863385,0.3863385,1,0.596221464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645555071,130.2073056,0.645555071,49.79269444,0,0.972547274,0,0,0,10,22,0% -2018-10-21 07:00:00,150.6463458,332.4082684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62927474,5.801618745,-0.074301314,0.074301314,1,0.542859963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796896215,142.8347266,0.796896215,37.16527342,0,0.987256572,0,0,0,10,23,0% -2018-10-22 08:00:00,153.1810504,3.536944128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673513681,0.06173132,0.201887106,-0.201887106,1,0.495628961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9002384,154.1894216,0.9002384,25.81057843,0,0.994459157,0,0,0,10,0,0% -2018-10-22 09:00:00,149.3690747,33.44261252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606982154,0.583683699,0.475632427,-0.475632427,1,0.448815754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948551871,161.5412534,0.948551871,18.45874657,0,0.99728807,0,0,0,10,1,0% -2018-10-22 10:00:00,141.0683916,54.97364832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462107904,0.959471165,0.780187857,-0.780187857,1,0.396733708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938557596,159.8107174,0.938557596,20.18928261,0,0.996726764,0,0,0,10,2,0% -2018-10-22 11:00:00,130.569326,69.88417426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278864641,1.219708936,1.167982538,-1.167982538,1,0.330416912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870950344,150.5692641,0.870950344,29.43073588,0,0.992591446,0,0,0,10,3,0% -2018-10-22 12:00:00,119.1164575,81.19979753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078974377,1.417203819,1.761239116,-1.761239116,1,0.228964062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750351112,138.6208014,0.750351112,41.37919856,0,0.983364529,0,0,0,10,4,0% -2018-10-22 13:00:00,107.3212443,90.80552613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87310907,1.58485541,2.997354925,-2.997354925,1,0.017575809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584992074,125.8024301,0.584992074,54.19756992,0,0.964528757,0,0,0,10,5,0% -2018-10-22 14:00:00,95.54800816,99.83273205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667627336,1.742409876,8.930697609,-8.930697609,1,0,#DIV/0!,0,0,0.499270324,1,0.11150885,0,0.949922994,0.988684958,0.724496596,1,0,0,0.069047372,0.312029739,0.822926225,0.54742282,0.961238037,0.922476074,0,0,0,0,0,0,-0.38615551,112.7154945,0.38615551,67.2845055,0,0.920518486,0,0,0,10,6,0% -2018-10-22 15:00:00,83.95569511,109.0913004,44.35594651,224.9065195,20.67386079,20.38484147,0,20.38484147,20.05046761,0.334373861,48.49506466,37.11705871,11.37800595,0.623393181,10.75461277,1.465303305,1.904002377,-7.329971583,7.329971583,0.216347345,0.216347345,0.466089948,0.194471827,6.254882461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.27327213,0.451646238,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.140894177,6.012430938,19.4141663,6.464077176,0,37.11705871,-0.165033272,99.49916729,0.165033272,80.50083271,0,0.747030789,19.4141663,34.19166285,41.7919258,10,7,115% -2018-10-22 16:00:00,73.25246949,119.3128978,227.7860681,600.5790014,54.72622852,89.18374713,34.39056872,54.79317841,53.07603081,1.717147599,56.87956715,0,56.87956715,1.650197708,55.22936944,1.278496778,2.082402907,-2.166457026,2.166457026,0.900639661,0.900639661,0.240252747,1.587522282,51.06017367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01869966,1.195562622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.150154489,49.0809811,52.16885415,50.27654372,34.39056872,0,0.057262356,86.71731302,-0.057262356,93.28268698,0,0,52.16885415,50.27654372,85.07384648,10,8,63% -2018-10-22 17:00:00,63.61207045,131.2672413,404.2553035,747.5752105,71.99813971,274.9866834,202.1121061,72.87457739,69.82713015,3.047447236,100.1873882,0,100.1873882,2.171009557,98.01637864,1.110240073,2.291045561,-0.968926558,0.968926558,0.69584989,0.69584989,0.178100668,2.285644022,73.51416859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.12049351,1.572889034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655941313,70.6646151,68.77643482,72.23750413,202.1121061,0,0.270356886,74.31449525,-0.270356886,105.6855048,0.86505927,0,243.6153857,72.23750413,290.8933874,10,9,19% -2018-10-22 18:00:00,55.76719269,145.7085609,540.6148304,814.5654533,82.3754399,457.7123698,373.7454704,83.96689941,79.89151646,4.075382948,133.5622481,0,133.5622481,2.483923446,131.0783246,0.973321127,2.543094136,-0.362787946,0.362787946,0.592194082,0.592194082,0.152373622,2.666657335,85.76886647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79476444,1.799594081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931984162,82.44429683,78.7267486,84.24389091,373.7454704,0,0.45882804,62.68849111,-0.45882804,117.3115089,0.941026712,0,430.4312198,84.24389091,485.5671615,10,10,13% -2018-10-22 19:00:00,50.63270906,162.9603909,624.0368175,844.9759781,88.07762032,605.3017612,515.1757529,90.12600822,85.42175509,4.704253125,153.9608165,0,153.9608165,2.655865224,151.3049512,0.883707482,2.844195372,0.062947593,-0.062947593,0.519389017,0.519389017,0.141141705,2.762446906,88.84978835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.11064017,1.924165314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.00138338,85.40579613,84.11202355,87.32996144,515.1757529,0,0.60969278,52.43270774,-0.60969278,127.5672923,0.967991484,0,582.7977652,87.32996144,639.9534784,10,11,10% -2018-10-22 20:00:00,49.10231801,182.1328199,647.8435993,852.5946477,89.64115817,699.4041597,607.5822945,91.82186521,86.93814651,4.883718702,159.7801928,0,159.7801928,2.703011659,157.0771811,0.85699712,3.178817383,0.434973346,-0.434973346,0.455768867,0.455768867,0.138368517,2.593612712,83.4195003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.56825328,1.958322746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879063581,80.1859967,85.44731686,82.14431945,607.5822945,0,0.712627385,44.55090931,-0.712627385,135.4490907,0.979837106,0,680.7789937,82.14431945,734.5408079,10,12,8% -2018-10-22 21:00:00,51.50731214,201.0290602,610.2042224,840.3511297,87.1572804,728.3041383,639.1749943,89.129144,84.52916682,4.59997718,150.579192,0,150.579192,2.62811358,147.9510784,0.898972186,3.508618992,0.825476575,-0.825476575,0.388988881,0.388988881,0.142832968,2.190791632,70.46338969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25265037,1.904059342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58722108,67.73209037,82.83987145,69.63614971,639.1749943,0,0.760604671,40.48246664,-0.760604671,139.5175334,0.984262828,0,711.956059,69.63614971,757.5315263,10,13,6% -2018-10-22 22:00:00,57.3427681,217.6627697,514.0114117,803.4317085,80.46999717,684.7844391,602.8660741,81.91836499,78.04352985,3.874835141,127.0544851,0,127.0544851,2.426467317,124.6280178,1.000820105,3.79893199,1.318252914,-1.318252914,0.304719164,0.304719164,0.156552939,1.602505582,51.54208809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01840942,1.757967311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161009839,49.54421557,76.17941926,51.30218288,602.8660741,0,0.750363805,41.37809833,-0.750363805,138.6219017,0.983365656,0,669.0172117,51.30218288,702.5934643,10,14,5% -2018-10-22 23:00:00,65.67001518,231.4786391,367.1123589,723.9818774,68.83814548,563.7547921,494.2249226,69.52986944,66.76242141,2.76744803,91.08636577,0,91.08636577,2.075724072,89.0106417,1.146157985,4.0400644,2.097115034,-2.097115034,0.171525897,0.171525897,0.187512471,0.904609916,29.09536448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17457889,1.503855024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.655386805,27.96757104,64.82996569,29.47142606,494.2249226,0,0.682648196,46.94906937,-0.682648196,133.0509306,0.976755831,0,547.5670406,29.47142606,566.8554995,10,15,4% -2018-10-22 00:00:00,75.61455686,242.9588121,184.4602502,544.6098699,49.15530679,355.2753292,306.211697,49.06363221,47.67309293,1.390539282,46.20673712,0,46.20673712,1.482213864,44.72452326,1.31972298,4.240431217,3.869450866,-3.869450866,0,0,0.26648184,0.370553466,11.91827323,0.11626535,1,0.252901224,0,0.931473193,0.970235156,0.724496596,1,46.03926371,1.073858898,0.01885045,0.312029739,0.947934217,0.672430813,0.961238037,0.922476074,0.261040951,11.45629756,46.30030466,12.53015646,270.6098868,0,0.562258809,55.78784616,-0.562258809,124.2121538,0.961072981,0,306.3761551,12.53015646,314.5768919,10,16,3% -2018-10-22 01:00:00,86.44644403,252.8792589,15.10053507,95.70350617,9.168688461,47.20851551,38.20246262,9.006052887,8.892218675,0.113834212,3.937769341,0,3.937769341,0.276469786,3.661299555,1.508775075,4.413575677,16.08249843,-16.08249843,0,0,0.607176396,0.069117446,2.223054669,0.689452135,1,0.062099445,0,0.955299746,0.994061709,0.724496596,1,8.601773834,0.200301419,0.088820756,0.312029739,0.779178604,0.5036752,0.961238037,0.922476074,0.047941355,2.136884706,8.649715189,2.337186125,11.86369321,0,0.399175162,66.47337598,-0.399175162,113.526624,0.924741706,0,19.62056708,2.337186125,21.15020866,10,17,8% -2018-10-22 02:00:00,98.2191999,261.9955749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714248427,4.572685407,-6.771910036,6.771910036,1,0.31178149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196776264,78.6514933,-0.196776264,101.3485067,0.795904313,0,0,0,0,10,18,0% -2018-10-22 03:00:00,110.0388351,271.0396445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920539977,4.730534201,-2.558911329,2.558911329,1,0.967753299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.022099115,91.26628908,0.022099115,88.73371092,0,0,0,0,0,10,19,0% -2018-10-22 04:00:00,121.8169353,280.8628874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126106606,4.901982131,-1.383539942,1.383539942,1,0.766752954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245938942,104.2373291,0.245938942,75.76267095,0,0.846697507,0,0,0,10,20,0% -2018-10-22 05:00:00,133.1605444,292.7175512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.324089934,5.108885047,-0.783463769,0.783463769,1,0.664133885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459495043,117.3545283,0.459495043,62.64547167,0,0.941184898,0,0,0,10,21,0% -2018-10-22 06:00:00,143.3690893,308.7462484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502262653,5.388638588,-0.385751056,0.385751056,1,0.596121005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648222312,130.4077055,0.648222312,49.5922945,0,0.972865969,0,0,0,10,22,0% -2018-10-22 07:00:00,150.9860326,332.2071891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635203394,5.798109249,-0.075202678,0.075202678,1,0.543014105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799269698,143.0604201,0.799269698,36.93957989,0,0.987442893,0,0,0,10,23,0% -2018-10-23 08:00:00,153.530364,3.656800655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.679610353,0.063823212,0.199794063,-0.199794063,1,0.495986893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902355531,154.4694397,0.902355531,25.53056027,0,0.994589468,0,0,0,10,0,0% -2018-10-23 09:00:00,149.6676523,33.8149354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612193316,0.590181959,0.472250957,-0.472250957,1,0.44939402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.950467683,161.8911408,0.950467683,18.10885917,0,0.997394319,0,0,0,10,1,0% -2018-10-23 10:00:00,141.308373,55.38705542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46629637,0.96668648,0.775003448,-0.775003448,1,0.397620294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940340948,160.1088932,0.940340948,19.89110677,0,0.996827797,0,0,0,10,2,0% -2018-10-23 11:00:00,130.7718115,70.2654695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28239868,1.226363793,1.159651653,-1.159651653,1,0.331841577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872679174,150.7714853,0.872679174,29.22851469,0,0.992705176,0,0,0,10,3,0% -2018-10-23 12:00:00,119.3006092,81.54471078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08218843,1.423223691,1.745884023,-1.745884023,1,0.231589938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75210705,138.7732282,0.75210705,41.22677178,0,0.983520102,0,0,0,10,4,0% -2018-10-23 13:00:00,107.5008584,91.12374452,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876243929,1.590409369,2.958322606,-2.958322606,1,0.024250729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586854815,125.9341325,0.586854815,54.06586747,0,0.964800051,0,0,0,10,5,0% -2018-10-23 14:00:00,95.7336899,100.1340078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670868094,1.74766813,8.613465204,-8.613465204,1,0,#DIV/0!,0,0,0.485288414,1,0.115579863,0,0.949454664,0.988216628,0.724496596,1,0,0,0.067477583,0.312029739,0.826533012,0.551029608,0.961238037,0.922476074,0,0,0,0,0,0,-0.388197303,112.8423768,0.388197303,67.15762325,0,0.921199517,0,0,0,10,6,0% -2018-10-23 15:00:00,84.15279119,109.3823867,41.67876441,214.9756807,19.77790327,19.49571865,0,19.49571865,19.18152652,0.314192131,46.65647853,35.9546028,10.70187573,0.596376756,10.10549897,1.468743281,1.909082791,-7.547481638,7.547481638,0.179150935,0.179150935,0.4745319,0.17867164,5.746694114,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.43801289,0.43207293,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129446995,5.523940968,18.56745989,5.956013898,0,35.9546028,-0.167249629,99.627945,0.167249629,80.372055,0,0.751045674,18.56745989,32.95956281,40.13883455,10,7,116% -2018-10-23 16:00:00,73.47706151,119.5955866,223.6986297,596.0237343,54.189964,86.85202716,32.60975575,54.24227141,52.55593665,1.686334762,55.87235003,0,55.87235003,1.634027354,54.23832267,1.282416648,2.087336756,-2.185001472,2.185001472,0.903810948,0.903810948,0.2422454,1.563421705,50.28501626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51876537,1.183847256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.132693703,48.33587031,51.65145907,49.51971757,32.60975575,0,0.054712177,86.86365714,-0.054712177,93.13634286,0,0,51.65145907,49.51971757,84.06112382,10,8,63% -2018-10-23 17:00:00,63.86988313,131.5343984,399.68482,745.0375775,71.56196597,271.7106902,199.2935885,72.41710166,69.40410866,3.012993001,99.06606931,0,99.06606931,2.15785731,96.908212,1.114739753,2.295708332,-0.971631989,0.971631989,0.696312546,0.696312546,0.179045994,2.261813375,72.74769306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.71386916,1.563360275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.63867609,69.92784967,68.35254525,71.49120994,199.2935885,0,0.26749468,74.48476004,-0.26749468,105.51524,0.863080395,0,240.3589343,71.49120994,287.1485014,10,9,19% -2018-10-23 18:00:00,56.06363457,145.9374802,535.7039008,812.7579783,81.96403927,453.8687649,370.3378816,83.53088336,79.49252107,4.038362286,132.3591311,0,132.3591311,2.471518199,129.8876129,0.978495014,2.547089532,-0.361097867,0.361097867,0.591905062,0.591905062,0.153002506,2.642480595,84.9912594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.4112349,1.790606522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914468196,81.69683134,78.32570309,83.48743786,370.3378816,0,0.455655794,62.89286292,-0.455655794,117.1071371,0.940268047,0,426.5425798,83.48743786,481.1834382,10,10,13% -2018-10-23 19:00:00,50.96478384,163.1101761,618.866149,843.4413561,87.6685242,601.0101912,511.3199221,89.69026918,85.02499474,4.665274442,152.6947923,0,152.6947923,2.643529467,150.0512628,0.889503281,2.846809616,0.066916637,-0.066916637,0.518710271,0.518710271,0.141659912,2.738001664,88.06354534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.72925902,1.9152281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983672885,84.65002944,83.71293191,86.56525754,511.3199221,0,0.606230556,52.68255618,-0.606230556,127.3174438,0.967523128,0,578.4267823,86.56525754,635.082012,10,11,10% -2018-10-23 20:00:00,49.45314102,182.1645259,642.4943323,851.0920738,89.22514272,694.7297292,603.3516601,91.37806913,86.53467546,4.843393668,158.4706567,0,158.4706567,2.690467259,155.7801894,0.863120136,3.179370757,0.440992627,-0.440992627,0.454739509,0.454739509,0.138873042,2.569233833,82.63539174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.18042156,1.94923437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861401166,79.43228173,85.04182272,81.3815161,603.3516601,0,0.708914674,44.8533213,-0.708914674,135.1466787,0.97946965,0,676.0064621,81.3815161,729.2690368,10,12,8% -2018-10-23 21:00:00,51.85217802,200.9424694,604.7675802,838.6701015,86.72736837,723.2914146,634.6202029,88.6712117,84.11221823,4.558993474,149.2480517,0,149.2480517,2.615150146,146.6329016,0.904991231,3.507107698,0.834301175,-0.834301175,0.387479786,0.387479786,0.143406114,2.166975897,69.69739378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.85186352,1.894667379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569966661,66.99578597,82.42183018,68.89045335,634.6202029,0,0.756698256,40.82601833,-0.756698256,139.1739817,0.983923463,0,706.8395382,68.89045335,751.9269621,10,13,6% -2018-10-23 22:00:00,57.66412791,217.4944829,508.5924235,801.2592322,80.01372259,679.4421872,598.0071891,81.43499815,77.60101363,3.833984519,125.7268303,0,125.7268303,2.412708955,123.3141214,1.006428892,3.795994832,1.332184138,-1.332184138,0.302336785,0.302336785,0.157323859,1.579969124,50.81723813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.593046,1.747999425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144682252,48.84746221,75.73772825,50.59546164,598.0071891,0,0.746334226,41.7261728,-0.746334226,138.2738272,0.983005886,0,663.5823152,50.59546164,696.6960329,10,14,5% -2018-10-23 23:00:00,65.9629147,231.2665308,361.8471356,720.6159955,68.32016437,557.9804147,488.9925988,68.9878159,66.26005934,2.727756553,89.79413238,0,89.79413238,2.06010503,87.73402735,1.151270046,4.036362413,2.12334827,-2.12334827,0.16703975,0.16703975,0.188809466,0.884640172,28.45306888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.69168937,1.492539082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.640918794,27.35017207,64.33260816,28.84271115,488.9925988,0,0.678575832,47.26754646,-0.678575832,132.7324535,0.976316268,0,541.7440371,28.84271115,560.6210147,10,15,3% -2018-10-23 00:00:00,75.88164161,242.7247914,179.6429928,537.86688,48.44340516,348.5924457,300.2555632,48.33688252,46.98265776,1.354224761,45.01727083,0,45.01727083,1.460747403,43.55652343,1.324384488,4.236346787,3.943767217,-3.943767217,0,0,0.269664875,0.365186851,11.74566444,0.126080555,1,0.248330815,0,0.932138104,0.970900067,0.724496596,1,45.38585522,1.058306521,0.020352421,0.312029739,0.94390534,0.668401936,0.961238037,0.922476074,0.25677659,11.29037943,45.64263181,12.34868595,262.3991752,0,0.558233969,56.06624729,-0.558233969,123.9337527,0.960431821,0,297.6591495,12.34868595,305.7411175,10,16,3% -2018-10-23 01:00:00,86.68544646,252.6315917,12.99665324,84.46468652,8.113106849,41.36535692,33.39891592,7.966441005,7.868466743,0.097974262,3.395829155,0,3.395829155,0.244640106,3.151189049,1.512946454,4.409253069,17.24862571,-17.24862571,0,0,0.62424585,0.061160026,1.967116686,0.70756258,1,0.057910809,0,0.955729211,0.994491174,0.724496596,1,7.609316108,0.177240924,0.090562305,0.312029739,0.775475366,0.499971962,0.961238037,0.922476074,0.042500583,1.890867381,7.651816692,2.068108305,9.767092789,0,0.395418693,66.70791059,-0.395418693,113.2920894,0.923551754,0,16.67223237,2.068108305,18.02576789,10,17,8% -2018-10-23 02:00:00,98.45698164,261.734514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718398501,4.568129035,-6.585131786,6.585131786,1,0.343722452,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193033284,78.87014365,-0.193033284,101.1298563,0.790977312,0,0,0,0,10,18,0% -2018-10-23 03:00:00,110.272946,270.7611367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924625983,4.725673321,-2.531485641,2.531485641,1,0.96306323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025596646,91.46674,0.025596646,88.53326,0,0,0,0,0,10,19,0% -2018-10-23 04:00:00,122.0568557,280.5612888,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130294007,4.896718244,-1.374987257,1.374987257,1,0.765290359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249149231,104.4271738,0.249149231,75.57282623,0,0.849317061,0,0,0,10,20,0% -2018-10-23 05:00:00,133.4186442,292.3914021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328594624,5.103192672,-0.780492723,0.780492723,1,0.663625806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462396048,117.5418285,0.462396048,62.45817152,0,0.941867588,0,0,0,10,21,0% -2018-10-23 06:00:00,143.6611338,308.4201774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507359792,5.382947574,-0.385232755,0.385232755,1,0.596032371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650813268,130.6029469,0.650813268,49.39705308,0,0.973173048,0,0,0,10,22,0% -2018-10-23 07:00:00,151.3216635,331.9984783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641061257,5.794466559,-0.076141053,0.076141053,1,0.543174577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801571171,143.2804012,0.801571171,36.71959882,0,0.987622507,0,0,0,10,23,0% -2018-10-24 08:00:00,153.8768543,3.772741999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685657751,0.06584677,0.1976835,-0.1976835,1,0.49634782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904407999,154.7436681,0.904407999,25.25633187,0,0.994715217,0,0,0,10,0,0% -2018-10-24 09:00:00,149.9638953,34.18618856,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617363732,0.596661549,0.468868072,-0.468868072,1,0.449972527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952328742,162.2374016,0.952328742,17.76259845,0,0.997497122,0,0,0,10,1,0% -2018-10-24 10:00:00,141.5466608,55.79823898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470455277,0.973862987,0.769837463,-0.769837463,1,0.39850373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942081339,160.4040803,0.942081339,19.5959197,0,0.996926027,0,0,0,10,2,0% -2018-10-24 11:00:00,130.97336,70.64369045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285916365,1.232964994,1.151376574,-1.151376574,1,0.333256699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874377902,150.9714358,0.874377902,29.02856419,0,0.992816487,0,0,0,10,3,0% -2018-10-24 12:00:00,119.4844407,81.88621053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085396895,1.429183986,1.730692883,-1.730692883,1,0.234187776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753845929,138.9246315,0.753845929,41.07536845,0,0.98367345,0,0,0,10,4,0% -2018-10-24 13:00:00,107.6805869,91.4383398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879380781,1.595900092,2.92003322,-2.92003322,1,0.030798599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588712818,126.065719,0.588712818,53.934281,0,0.965068946,0,0,0,10,5,0% -2018-10-24 14:00:00,95.91974753,100.4313891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674115412,1.752858412,8.315656769,-8.315656769,1,0,#DIV/0!,0,0,0.471432896,1,0.119680381,0,0.948979079,0.987741042,0.724496596,1,0,0,0.065904994,0.312029739,0.830165912,0.554662508,0.961238037,0.922476074,0,0,0,0,0,0,-0.390245112,112.9697518,0.390245112,67.03024817,0,0.921875397,0,0,0,10,6,0% -2018-10-24 15:00:00,84.35013093,109.6691535,39.0510827,204.9499577,18.87394624,18.59921068,0,18.59921068,18.30482712,0.294383557,44.77179262,34.73428639,10.03750623,0.569119117,9.468387118,1.472187509,1.914087817,-7.780711921,7.780711921,0.139266207,0.139266207,0.483314288,0.163462695,5.257522181,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.59529609,0.412324863,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118428166,5.0537303,17.71372425,5.466055163,0,34.73428639,-0.169476914,99.75740714,0.169476914,80.24259286,0,0.754974567,17.71372425,31.68955798,38.45390616,10,7,117% -2018-10-24 16:00:00,73.70196329,119.8733339,219.6075076,591.3743782,53.64785668,84.52131151,30.83564149,53.68567001,52.03017586,1.655494155,54.86406356,0,54.86406356,1.617680818,53.24638274,1.286341925,2.092184362,-2.204228601,2.204228601,0.907098981,0.907098981,0.244289721,1.539268109,49.5081536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.0133841,1.172004246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115194505,47.58912037,51.12857861,48.76112462,30.83564149,0,0.052142336,87.01110879,-0.052142336,92.98889121,0,0,51.12857861,48.76112462,83.04175945,10,8,62% -2018-10-24 17:00:00,64.12759823,131.7958473,395.108193,742.4574063,71.12321374,268.4189838,196.461905,71.95707888,68.97858643,2.978492453,97.9431831,0,97.9431831,2.144627311,95.79855579,1.11923773,2.300271477,-0.974505773,0.974505773,0.696803992,0.696803992,0.180009463,2.23798604,71.98132409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.304841,1.553775186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.621413268,69.19118665,67.92625427,70.74496184,196.461905,0,0.264610338,74.65619971,-0.264610338,105.3438003,0.861042908,0,237.0883842,70.74496184,283.3895468,10,9,20% -2018-10-24 18:00:00,56.3591918,146.1601118,530.7918526,810.9259103,81.55134887,450.0072092,366.9136012,83.093608,79.09227481,4.001333193,131.155704,0,131.155704,2.459074061,128.69663,0.983653461,2.550975185,-0.359483477,0.359483477,0.591628985,0.591628985,0.153640921,2.618358337,84.21540468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.02650297,1.781590786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896991702,80.95105026,77.92349467,82.73264105,366.9136012,0,0.452462545,63.09821161,-0.452462545,116.9017884,0.939493615,0,422.6364804,82.73264105,476.7833393,10,10,13% -2018-10-24 19:00:00,51.29487829,163.2540589,613.7032592,841.88998,87.25900086,596.7049276,507.4507531,89.25417443,84.62782003,4.626354397,151.4306412,0,151.4306412,2.631180827,148.7994604,0.895264516,2.849320846,0.070839471,-0.070839471,0.518039427,0.518039427,0.142184353,2.713665334,87.28080531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.34747959,1.906281553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966041297,83.89762996,83.31352089,85.80391151,507.4507531,0,0.602751862,52.93275947,-0.602751862,127.0672405,0.967047125,0,574.0423127,85.80391151,630.1992567,10,11,10% -2018-10-24 20:00:00,49.80095274,182.1922057,637.1644316,849.5766084,88.80946874,690.0503068,599.1155566,90.93475021,86.13153559,4.803214625,157.1658264,0,157.1658264,2.677933155,154.4878933,0.869190596,3.179853862,0.446980221,-0.446980221,0.45371557,0.45371557,0.139382339,2.545021558,81.85664176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.79290818,1.940153455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.843859455,78.68371763,84.63676763,80.62387109,599.1155566,0,0.705193093,45.15485411,-0.705193093,134.8451459,0.979097434,0,671.2292717,80.62387109,723.9959828,10,12,8% -2018-10-24 21:00:00,52.19345667,200.8542237,599.3636552,836.9778002,86.29853403,718.2856964,630.0711252,88.21457123,83.69631482,4.518256405,147.9248766,0,147.9248766,2.602219209,145.3226574,0.910947667,3.50556752,0.84310914,-0.84310914,0.385973535,0.385973535,0.143983595,2.143385263,68.93863789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45208135,1.885298958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552875326,66.26644095,82.00495668,68.1517399,630.0711252,0,0.752793115,41.16709115,-0.752793115,138.8329089,0.983580689,0,701.7307481,68.1517399,746.3346989,10,13,6% -2018-10-24 22:00:00,57.9817156,217.3260798,503.2204101,799.0745621,79.55917283,674.1210221,593.1673639,80.95365824,77.16017023,3.793488012,124.4106171,0,124.4106171,2.399002603,122.0116145,1.011971843,3.793055643,1.346136053,-1.346136053,0.299950867,0.299950867,0.158100052,1.557714941,50.1014671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.16929055,1.738069219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128559172,48.15943588,75.29784972,49.89750509,593.1673639,0,0.742317916,42.07075741,-0.742317916,137.9292426,0.982643415,0,658.1698537,49.89750509,690.8267728,10,14,5% -2018-10-24 23:00:00,66.25197423,231.0549205,356.64364,717.230215,67.80416575,552.2412945,483.7931441,68.44815039,65.75961998,2.688530405,88.51692535,0,88.51692535,2.044545768,86.47237958,1.156315086,4.032669115,2.149763608,-2.149763608,0.162522461,0.162522461,0.190117412,0.865011867,27.82175511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.21064801,1.481266449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626698153,26.74332926,63.83734617,28.22459571,483.7931441,0,0.674529787,47.5823539,-0.674529787,132.4176461,0.975874289,0,535.9586367,28.22459571,554.4310701,10,15,3% -2018-10-24 00:00:00,76.14477537,242.4913883,174.9067275,531.0697893,47.7317765,341.9558496,294.3448415,47.61100812,46.29248732,1.318520793,43.84745026,0,43.84745026,1.439289173,42.40816108,1.328977038,4.232273133,4.019631479,-4.019631479,0,0,0.27289846,0.359822293,11.57312183,0.135877834,1,0.24382918,0,0.932788657,0.97155062,0.724496596,1,44.73167726,1.042760106,0.021838572,0.312029739,0.93993632,0.664432916,0.961238037,0.922476074,0.252547653,11.12452491,44.98422491,12.16728502,254.349902,0,0.554248891,56.3410042,-0.554248891,123.6589958,0.959787821,0,289.1061632,12.16728502,297.0694079,10,16,3% -2018-10-24 01:00:00,86.91962634,252.3844416,11.07913578,73.86366164,7.109941419,35.91340918,28.93433952,6.979069658,6.895550452,0.083519205,2.900655707,0,2.900655707,0.214390967,2.68626474,1.517033664,4.404939487,18.56625566,-18.56625566,0,0,0.641741518,0.053597742,1.723887613,0.725641267,1,0.053809163,0,0.956145731,0.994907695,0.724496596,1,6.666483124,0.155325526,0.092278216,0.312029739,0.77185042,0.496347016,0.961238037,0.922476074,0.03731816,1.657066345,6.703801284,1.81239187,7.938388728,0,0.391726309,66.93804191,-0.391726309,113.0619581,0.922359862,0,14.02585242,1.81239187,15.21202665,10,17,8% -2018-10-24 02:00:00,98.69046999,261.4737325,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722473642,4.563577539,-6.411565456,6.411565456,1,0.373404042,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.189352789,79.08498386,-0.189352789,100.9150161,0.785942628,0,0,0,0,10,18,0% -2018-10-24 03:00:00,110.5025001,270.4824906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928632459,4.720810029,-2.505196444,2.505196444,1,0.958567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.029023312,91.66314686,0.029023312,88.33685314,0,0,0,0,0,10,19,0% -2018-10-24 04:00:00,122.291925,280.2587831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13439674,4.891438523,-1.366756909,1.366756909,1,0.763882887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25228321,104.612662,0.25228321,75.38733797,0,0.851810037,0,0,0,10,20,0% -2018-10-24 05:00:00,133.6716404,292.0628413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333010242,5.097458203,-0.777658456,0.777658456,1,0.663141118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465218609,117.724371,0.465218609,62.27562901,0,0.942523646,0,0,0,10,21,0% -2018-10-24 06:00:00,143.9481153,308.0889137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512368565,5.377165932,-0.384784106,0.384784106,1,0.595955647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653327103,130.7929235,0.653327103,49.20707654,0,0.973468658,0,0,0,10,22,0% -2018-10-24 07:00:00,151.6530915,331.7819126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646845767,5.790686774,-0.077117028,0.077117028,1,0.543341478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803800209,143.4945435,0.803800209,36.50545652,0,0.987795488,0,0,0,10,23,0% -2018-10-25 08:00:00,154.2204343,3.884435375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.691654352,0.067796187,0.195554907,-0.195554907,1,0.496711831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906395759,155.0119293,0.906395759,24.98807075,0,0.994836459,0,0,0,10,0,0% -2018-10-25 09:00:00,150.257775,34.55608611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6224929,0.603117479,0.465483368,-0.465483368,1,0.450551346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954135328,162.5798933,0.954135328,17.42010674,0,0.997596532,0,0,0,10,1,0% -2018-10-25 10:00:00,141.7832625,56.20695676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474584755,0.980996458,0.764689593,-0.764689593,1,0.399384067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943779296,160.6962464,0.943779296,19.30375364,0,0.997021512,0,0,0,10,2,0% -2018-10-25 11:00:00,131.17399,71.01864972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289418019,1.239509268,1.143156948,-1.143156948,1,0.334662338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876047207,151.1691555,0.876047207,28.83084446,0,0.99292545,0,0,0,10,3,0% -2018-10-25 12:00:00,119.667967,82.22414571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088600034,1.435082067,1.715664248,-1.715664248,1,0.236757824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755568472,139.0750664,0.755568472,40.9249336,0,0.983824661,0,0,0,10,4,0% -2018-10-25 13:00:00,107.8604338,91.74918151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882519703,1.601325303,2.882470278,-2.882470278,1,0.037222241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.590566745,126.1972364,0.590566745,53.80276356,0,0.965335565,0,0,0,10,5,0% -2018-10-25 14:00:00,96.10617007,100.7247573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677369099,1.757978654,8.035585508,-8.035585508,1,0,#DIV/0!,0,0,0.457704287,1,0.123809913,0,0.948496221,0.987258184,0.724496596,1,0,0,0.064329861,0.312029739,0.833824423,0.558321019,0.961238037,0.922476074,0,0,0,0,0,0,-0.392299428,113.0976524,0.392299428,66.90234762,0,0.922546335,0,0,0,10,6,0% -2018-10-25 15:00:00,84.54766754,109.9514913,36.47666837,194.8444313,17.96301928,17.69634451,0,17.69634451,17.42136798,0.274976534,42.84357015,33.45772829,9.385841866,0.541651308,8.844190558,1.475635173,1.919015541,-8.031354885,8.031354885,0.096403736,0.096403736,0.492452301,0.14886729,4.788083766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.74608155,0.392424529,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.107853845,4.60248824,16.8539354,4.994912768,0,33.45772829,-0.171715086,99.88755277,0.171715086,80.11244723,0,0.758819993,16.8539354,30.3833059,36.73920144,10,7,118% -2018-10-25 16:00:00,73.92712171,120.1460422,215.5140213,586.6295336,53.0998714,82.19257419,29.0692241,53.12335009,51.49871436,1.624635726,53.85502663,0,53.85502663,1.601157041,52.25386959,1.29027168,2.09694402,-2.224168795,2.224168795,0.910508955,0.910508955,0.246387085,1.515067681,48.72978462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.5025231,1.160032825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.097661377,46.84092251,50.60018447,48.00095533,29.0692241,0,0.04955295,87.15966187,-0.04955295,92.84033813,0,0,50.60018447,48.00095533,82.01584972,10,8,62% -2018-10-25 17:00:00,64.38513926,132.0515128,390.526981,739.8345965,70.68195351,265.1125234,193.6179343,71.49458916,68.55063182,2.943957342,96.8191096,0,96.8191096,2.131321687,94.68778791,1.123732669,2.30473368,-0.97755474,0.97755474,0.697325396,0.697325396,0.180991217,2.214170456,71.21533302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.89347476,1.544135307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604158958,68.4548869,67.49763372,69.99902221,193.6179343,0,0.261704353,74.82878353,-0.261704353,105.1712165,0.858944714,0,233.8047349,69.99902221,279.6176949,10,9,20% -2018-10-25 18:00:00,56.65376783,146.3764167,525.8806356,809.0695591,81.1374816,446.1290499,363.4738524,82.65519753,78.69088716,3.964310364,129.952443,0,129.952443,2.446594436,127.5058485,0.988794782,2.554750419,-0.357948903,0.357948903,0.591366557,0.591366557,0.15428878,2.594300649,83.44162671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64067389,1.77254934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879561989,80.20726545,77.52023588,81.97981479,363.4738524,0,0.4492492,63.30447638,-0.4492492,116.6955236,0.938703196,0,418.7143029,81.97981479,472.3684521,10,10,13% -2018-10-25 19:00:00,51.62288626,163.3920338,608.5504656,840.3223614,86.8491914,592.3877882,503.5699099,88.8178783,84.23036784,4.587510462,150.1689295,0,150.1689295,2.61882356,147.5501059,0.900989335,2.851728962,0.074712196,-0.074712196,0.517377152,0.517377152,0.142714855,2.689449118,86.50192854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.96543343,1.897328754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.94849673,83.14894398,82.91393016,85.04627273,503.5699099,0,0.599258015,53.18322468,-0.599258015,126.8167753,0.966563486,0,569.6462175,85.04627273,625.3073021,10,11,10% -2018-10-25 20:00:00,50.14564523,182.2158487,631.8565138,848.0489496,88.39430165,685.3681832,594.8760946,90.49208861,85.72888731,4.763201298,155.8663415,0,155.8663415,2.665414335,153.2009272,0.875206615,3.180266509,0.452931559,-0.452931559,0.452697831,0.452697831,0.139896163,2.520987659,81.08362896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40586734,1.931083612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.826446977,77.94066832,84.23231432,79.87175194,594.8760946,0,0.701464337,45.45539361,-0.701464337,134.5446064,0.978720539,0,666.4497662,79.87175194,718.7242304,10,12,8% -2018-10-25 21:00:00,52.53103523,200.7642876,593.9952661,835.2751908,85.87096755,713.2897208,625.5302925,87.75942827,83.28164105,4.477787221,146.6103558,0,146.6103558,2.589326502,144.0210293,0.916839524,3.503997839,0.851894283,-0.851894283,0.384471187,0.384471187,0.144565071,2.120031436,68.18749853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05348114,1.875958236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535955558,65.54441722,81.5894367,67.42037546,625.5302925,0,0.748891263,41.50557327,-0.748891263,138.4944267,0.983234633,0,696.6324843,67.42037546,740.7577716,10,13,6% -2018-10-25 22:00:00,58.29541121,217.1575245,497.8982718,796.8791493,79.10657066,668.824111,588.3495279,80.47458317,76.72121568,3.753367486,123.1065554,0,123.1065554,2.385354978,120.7212005,1.017446864,3.790113797,1.360099053,-1.360099053,0.297563053,0.297563053,0.158880991,1.535753856,49.39512311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.74735075,1.728181561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.11264844,47.48047117,74.85999919,49.20865273,588.3495279,0,0.738317132,42.41174235,-0.738317132,137.5882576,0.982278424,0,652.783046,49.20865273,684.989125,10,14,5% -2018-10-25 23:00:00,66.53707067,230.8437915,351.5047076,713.8270624,67.29043476,546.5411108,478.62994,67.91117084,65.26137987,2.649790962,87.25544082,0,87.25544082,2.029054883,85.22638594,1.161290958,4.02898422,2.176344001,-2.176344001,0.157976946,0.157976946,0.191435373,0.845733631,27.20170077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.73172067,1.470043356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.612731137,26.14730945,63.34445181,27.6173528,478.62994,0,0.670512461,47.89337092,-0.670512461,132.1066291,0.97543017,0,530.2145357,27.6173528,548.2895407,10,15,3% -2018-10-25 00:00:00,76.40383609,242.2586089,170.2540666,524.2245825,47.02090477,335.3704379,288.4839399,46.88649807,45.603051,1.28344707,42.69792335,0,42.69792335,1.417853767,41.28006958,1.333498501,4.228210366,4.097032615,-4.097032615,0,0,0.276180803,0.354463442,11.40076275,0.145649759,1,0.239398327,0,0.933424751,0.972186714,0.724496596,1,44.07722051,1.027230228,0.023308027,0.312029739,0.936028941,0.660525537,0.961238037,0.922476074,0.248355711,10.9588468,44.32557622,11.98607703,246.4663237,0,0.550306013,56.61199074,-0.550306013,123.3880093,0.959141462,0,280.7216462,11.98607703,288.5662938,10,16,3% -2018-10-25 01:00:00,87.14880853,252.1378357,9.346581216,63.95882336,6.165132262,30.87219305,24.8225038,6.049689254,5.979230777,0.070458477,2.452088311,0,2.452088311,0.185901485,2.266186827,1.521033648,4.400635401,20.06481562,-20.06481562,0,0,0.659613619,0.046475371,1.494807694,0.743664138,1,0.049797282,0,0.956549277,0.99531124,0.724496596,1,5.778839001,0.134684993,0.093966795,0.312029739,0.768306264,0.49280286,0.961238037,0.922476074,0.032425163,1.436866014,5.811264164,1.571551006,6.362897909,0,0.38810132,67.16359051,-0.38810132,112.8364095,0.921167663,0,11.67255996,1.571551006,12.70110866,10,17,9% -2018-10-25 02:00:00,98.91954871,261.2132761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72647182,4.559031717,-6.250008915,6.250008915,1,0.401031838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.185736983,79.29589688,-0.185736983,100.7041031,0.780802131,0,0,0,0,10,18,0% -2018-10-25 03:00:00,110.7273825,270.2037701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932557396,4.71594544,-2.480004454,2.480004454,1,0.954259429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032377176,91.85539982,0.032377176,88.14460018,0,0,0,0,0,10,19,0% -2018-10-25 04:00:00,122.5220251,279.9554514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138412745,4.886144385,-1.358844415,1.358844415,1,0.76252977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255339284,104.7936902,0.255339284,75.20630977,0,0.854182109,0,0,0,10,20,0% -2018-10-25 05:00:00,133.9194048,291.7319541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337334547,5.091683132,-0.774960737,0.774960737,1,0.662679781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467961522,117.9020557,0.467961522,62.0979443,0,0.943153609,0,0,0,10,21,0% -2018-10-25 06:00:00,144.2298868,307.7524773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517286405,5.371294011,-0.38440561,0.38440561,1,0.595890921,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655763027,130.977532,0.655763027,49.02246795,0,0.973752944,0,0,0,10,22,0% -2018-10-25 07:00:00,151.9801695,331.5572707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652554356,5.786766032,-0.078131174,0.078131174,1,0.543514907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805956433,143.7027246,0.805956433,36.29727544,0,0.987961907,0,0,0,10,23,0% -2018-10-26 08:00:00,154.5610174,3.991534808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697598649,0.069665425,0.193407791,-0.193407791,1,0.497079009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908318809,155.2740475,0.908318809,24.72595249,0,0.994953248,0,0,0,10,0,0% -2018-10-26 09:00:00,150.5492653,34.92433291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627580366,0.609544598,0.46209647,-0.46209647,1,0.451130539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95588776,162.9184714,0.95588776,17.08152865,0,0.997692604,0,0,0,10,1,0% -2018-10-26 10:00:00,142.0181878,56.61296346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478684975,0.988082612,0.759559568,-0.759559568,1,0.400261353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945435377,160.9853635,0.945435377,19.0146365,0,0.997114312,0,0,0,10,2,0% -2018-10-26 11:00:00,131.3737212,71.39015941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292903986,1.245993335,1.134992481,-1.134992481,1,0.336058544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877687789,151.3646884,0.877687789,28.63531161,0,0.993032134,0,0,0,10,3,0% -2018-10-26 12:00:00,119.8512035,82.55836551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091798113,1.440915303,1.700796789,-1.700796789,1,0.239300309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757275414,139.2245895,0.757275414,40.77541045,0,0.983973824,0,0,0,10,4,0% -2018-10-26 13:00:00,108.0404034,92.05613983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885660764,1.606682737,2.845618055,-2.845618055,1,0.043524342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592417256,126.3287323,0.592417256,53.6712677,0,0.965600028,0,0,0,10,5,0% -2018-10-26 14:00:00,96.29294593,101.013995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680628953,1.763026803,7.771756956,-7.771756956,1,0,#DIV/0!,0,0,0.444103193,1,0.127967903,0,0.948006082,0.986768045,0.724496596,1,0,0,0.06275246,0.312029739,0.837507988,0.562004583,0.961238037,0.922476074,0,0,0,0,0,0,-0.394360736,113.2261108,0.394360736,66.77388923,0,0.92321253,0,0,0,10,6,0% -2018-10-26 15:00:00,84.74535175,110.2292919,33.95943921,184.6764072,17.04632965,16.78832051,0,16.78832051,16.53231991,0.256000597,40.87492684,32.1270579,8.747868938,0.514009733,8.233859204,1.479085414,1.923864077,-8.301348689,8.301348689,0.050232076,0.050232076,0.501961459,0.134906931,4.339070633,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89149474,0.372398302,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.097739612,4.170879737,15.98923435,4.543278039,0,32.1270579,-0.173964062,100.0183785,0.173964062,79.98162145,0,0.762584315,15.98923435,29.04286848,34.99721091,10,7,119% -2018-10-26 16:00:00,74.1524828,120.4136158,211.419519,581.7878266,52.54597495,79.86682854,27.31153897,52.55528957,50.96151993,1.593769638,52.84556513,0,52.84556513,1.584455019,51.26111011,1.294204973,2.10161406,-2.244853787,2.244853787,0.914046297,0.914046297,0.248538901,1.49082668,47.9501107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.98615137,1.147932267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080098854,46.09147027,50.06625022,47.23940254,27.31153897,0,0.046944157,87.30930905,-0.046944157,92.69069095,0,0,50.06625022,47.23940254,80.9834944,10,8,62% -2018-10-26 17:00:00,64.64242919,132.3013216,385.9427643,737.1690819,70.23825872,261.7923002,190.7625845,71.02971565,68.12031607,2.90939958,95.69423414,0,95.69423414,2.117942652,93.57629149,1.128223226,2.309093666,-0.980785864,0.980785864,0.69787795,0.69787795,0.181991386,2.19037511,70.44999289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.47983889,1.534442242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586919311,67.71921286,67.0667582,69.25365511,190.7625845,0,0.258777246,75.00247941,-0.258777246,104.9975206,0.85678363,0,230.5090179,69.25365511,275.8341501,10,9,20% -2018-10-26 18:00:00,56.94726609,146.5863585,520.9722182,807.1892701,80.72255322,442.2356674,360.0198884,82.21577904,78.2884704,3.92730864,128.7498287,0,128.7498287,2.434082814,126.3157459,0.993917293,2.558414594,-0.356498351,0.356498351,0.591118498,0.591118498,0.154945984,2.570317645,82.67025086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.2538556,1.763484713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862186384,79.46578964,77.11604198,81.22927435,360.0198884,0,0.446016692,63.51159518,-0.446016692,116.4884048,0.937896572,0,414.7774613,81.22927435,467.9403968,10,10,13% -2018-10-26 19:00:00,51.94870208,163.5240961,603.4100997,838.7390486,86.43923958,588.0606232,499.6790854,88.3815378,83.83277758,4.548760213,148.9102267,0,148.9102267,2.606462,146.3037647,0.906675893,2.854033883,0.078530817,-0.078530817,0.516724129,0.516724129,0.143251231,2.665364207,85.72727504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.58325455,1.888372846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931047295,82.40431757,82.51430184,84.29269041,499.6790854,0,0.595750354,53.43385834,-0.595750354,126.5661417,0.966072228,0,565.2403891,84.29269041,620.4082691,10,11,10% -2018-10-26 20:00:00,50.48711118,182.2354448,626.5732016,846.5098358,87.9798093,680.6856779,590.635411,90.0502669,85.32689344,4.723373459,154.5728428,0,154.5728428,2.652915861,151.9199269,0.88116632,3.180608526,0.458841927,-0.458841927,0.451687099,0.451687099,0.140414255,2.497143852,80.31673017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.01945554,1.922028511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.80917222,77.20349603,83.82862776,79.12552455,590.635411,0,0.697730122,45.75482613,-0.697730122,134.2451739,0.978339055,0,661.6703175,79.12552455,713.4563908,10,12,8% -2018-10-26 21:00:00,52.86480173,200.6726275,588.6652273,833.5632891,85.44486166,708.306249,621.000258,87.30599096,82.86838382,4.437607137,145.3051775,0,145.3051775,2.576477837,142.7286997,0.922664849,3.502398068,0.860650174,-0.860650174,0.382973842,0.382973842,0.145150177,2.096926009,67.44434858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65624258,1.866649422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.519215755,64.83007322,81.17545833,66.69672265,621.000258,0,0.744994731,41.84135367,-0.744994731,138.1586463,0.982885431,0,691.5475648,66.69672265,735.1992358,10,13,6% -2018-10-26 22:00:00,58.60509594,216.9887827,492.6288926,794.6745219,78.65614234,663.5546424,583.5566283,79.99801412,76.28436944,3.71364468,121.8153514,0,121.8153514,2.371772902,119.4435785,1.022851883,3.787168698,1.374063035,-1.374063035,0.295175071,0.295175071,0.159666117,1.5140965,48.69854812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.32743752,1.718341394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.09695776,46.81089679,74.42439528,48.52923819,583.5566283,0,0.734334136,42.74901864,-0.734334136,137.2509814,0.981911105,0,647.4251289,48.52923819,679.1865447,10,14,5% -2018-10-26 23:00:00,66.81808227,230.6331291,346.4331408,710.4092145,66.77926387,540.8835718,473.5063898,67.37718202,64.76562267,2.611559349,86.01036704,0,86.01036704,2.013641195,83.99672585,1.166195535,4.025307466,2.203071027,-2.203071027,0.153406355,0.153406355,0.192762343,0.826813761,26.59317271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.25517999,1.458876191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.599023755,25.56236913,62.85420375,27.02124532,473.5063898,0,0.66652625,48.20047806,-0.66652625,131.7995219,0.9749842,0,524.5154523,27.02124532,542.2003169,10,15,3% -2018-10-26 00:00:00,76.65870329,242.0264613,165.6875469,517.337692,46.31130058,328.8411965,282.6773298,46.16386671,44.914844,1.249022715,41.56932059,0,41.56932059,1.396456583,40.17286401,1.337946773,4.224158626,4.175953717,-4.175953717,0,0,0.279509845,0.349114146,11.228711,0.155388609,1,0.235040244,0,0.934046292,0.972808255,0.724496596,1,43.42300138,1.011728041,0.024759897,0.312029739,0.932184977,0.656681573,0.961238037,0.922476074,0.244202435,10.79346412,43.66720382,11.80519216,238.7524926,0,0.546407761,56.87908234,-0.546407761,123.1209177,0.958493247,0,272.5098557,11.80519216,280.2361179,10,16,3% -2018-10-26 01:00:00,87.37281746,251.8918026,7.796018034,54.80022909,5.284144351,26.25684406,21.07326648,5.18357758,5.124807903,0.058769677,2.04957128,0,2.04957128,0.159336449,1.890234831,1.524943341,4.396341313,21.78166578,-21.78166578,0,0,0.677800427,0.039834112,1.281201976,0.761605664,1,0.045877956,0,0.956939821,0.995701784,0.724496596,1,4.951489224,0.115438715,0.095626311,0.312029739,0.764845397,0.489341993,0.961238037,0.922476074,0.027850695,1.231540072,4.979339919,1.346978786,5.023747365,0,0.384547051,67.3843765,-0.384547051,112.6156235,0.919976899,0,9.601071442,1.346978786,10.48264212,10,17,9% -2018-10-26 02:00:00,99.14410349,260.9531926,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73039104,4.554492405,-6.099406673,6.099406673,1,0.426786338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182188033,79.50276746,-0.182188033,100.4972325,0.775558264,0,0,0,0,10,18,0% -2018-10-26 03:00:00,110.9474802,269.9250425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936398827,4.711080725,-2.455872763,2.455872763,1,0.950132667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.035656344,92.04339116,0.035656344,87.95660884,0,0,0,0,0,10,19,0% -2018-10-26 04:00:00,122.7470406,279.6513797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142340006,4.880837334,-1.351245491,1.351245491,1,0.761230278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258315903,104.9701573,0.258315903,75.02984275,0,0.856438553,0,0,0,10,20,0% -2018-10-26 05:00:00,134.1618115,291.3988341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341565341,5.085869091,-0.772399344,0.772399344,1,0.662241757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470623633,118.0747855,0.470623633,61.92521449,0,0.943757992,0,0,0,10,21,0% -2018-10-26 06:00:00,144.5063028,307.4109007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.522110774,5.365332374,-0.384097745,0.384097745,1,0.595838272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6581203,131.1566733,0.6581203,48.84332671,0,0.974026048,0,0,0,10,22,0% -2018-10-26 07:00:00,152.3027496,331.3243366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.65818444,5.782700565,-0.079184031,0.079184031,1,0.543694956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808039511,143.9048262,0.808039511,36.09517377,0,0.988121838,0,0,0,10,23,0% -2018-10-27 08:00:00,154.8985169,4.093682645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.703489126,0.071448241,0.191241703,-0.191241703,1,0.497449432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910177191,155.5298495,0.910177191,24.47015048,0,0.995065642,0,0,0,10,0,0% -2018-10-27 09:00:00,150.8383415,35.29062513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.632625697,0.615937604,0.458707051,-0.458707051,1,0.451710164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95758639,163.2529881,0.95758639,16.74701189,0,0.99778539,0,0,0,10,1,0% -2018-10-27 10:00:00,142.2514474,57.01601087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.482756122,0.995117116,0.754447183,-0.754447183,1,0.401135623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947050161,161.2714071,0.947050161,18.72859288,0,0.997204486,0,0,0,10,2,0% -2018-10-27 11:00:00,131.5725733,71.75803105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296374609,1.252413907,1.126882975,-1.126882975,1,0.337445351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879300359,151.558081,0.879300359,28.44191903,0,0.993136609,0,0,0,10,3,0% -2018-10-27 12:00:00,120.0341646,82.88871929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094991387,1.446681064,1.686089366,-1.686089366,1,0.241815426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758967488,139.3732583,0.758967488,40.62674171,0,0.984121025,0,0,0,10,4,0% -2018-10-27 13:00:00,108.2204981,92.35908542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88880401,1.611970135,2.809461752,-2.809461752,1,0.049707434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594265,126.4602533,0.594265,53.53974668,0,0.965862452,0,0,0,10,5,0% -2018-10-27 14:00:00,96.48006167,101.2989853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683894739,1.768000823,7.522843757,-7.522843757,1,0,#DIV/0!,0,0,0.430630386,1,0.132153705,0,0.947508665,0.986270628,0.724496596,1,0,0,0.061173093,0.312029739,0.841215971,0.565712567,0.961238037,0.922476074,0,0,0,0,0,0,-0.396429495,113.3551579,0.396429495,66.6448421,0,0.923874168,0,0,0,10,6,0% -2018-10-27 15:00:00,84.94313043,110.5024485,31.50347278,174.4656623,16.12528701,15.8765366,0,15.8765366,15.63905011,0.237486485,38.86960208,30.74498347,8.12461861,0.486236899,7.63838171,1.482537303,1.928631558,-8.592921043,8.592921043,0.000370267,0.000370267,0.511857443,0.121602149,3.911143113,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.03284983,0.352276978,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.088100343,3.759539528,15.12095017,4.111816506,0,30.74498347,-0.176223694,100.1498774,0.176223694,79.85012261,0,0.766269709,15.12095017,27.67076603,33.23091312,10,7,120% -2018-10-27 16:00:00,74.37799048,120.6759607,207.3254,576.8479435,51.98613912,77.54514339,25.56367173,51.98147165,50.41856521,1.56290644,51.83601746,0,51.83601746,1.567573903,50.26844355,1.298140825,2.106192842,-2.266316537,2.266316537,0.917716643,0.917716643,0.2507466,1.466551562,47.16933947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.46424265,1.135701956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062511614,45.34096327,49.52675426,46.47666522,25.56367173,0,0.044316136,87.46004062,-0.044316136,92.53995938,0,0,49.52675426,46.47666522,79.94480212,10,8,61% -2018-10-27 17:00:00,64.89938919,132.5452032,381.3571657,734.4608474,69.79220775,258.4593579,187.8968113,70.56254658,67.68771518,2.874831401,94.5689526,0,94.5689526,2.104492569,92.46446003,1.132708024,2.313350203,-0.984206199,0.984206199,0.698462862,0.698462862,0.183010086,2.166608635,69.68558138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.06400646,1.524697703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569700581,66.98443144,66.63370704,68.50912914,187.8968113,0,0.255829582,75.17725269,-0.255829582,104.8227473,0.854557394,0,227.2023165,68.50912914,272.0401714,10,9,20% -2018-10-27 18:00:00,57.23958881,146.7899026,516.0686064,805.2854344,80.30668383,438.3284951,356.553011,81.77548416,77.88514102,3.890343143,127.5483513,0,127.5483513,2.421542818,125.1268085,0.999019287,2.56196711,-0.355136078,0.355136078,0.590885536,0.590885536,0.155612418,2.546419541,81.90160569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.86616005,1.754399528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844872289,78.72693867,76.71103234,80.48133819,356.553011,0,0.442766,63.71950354,-0.442766,116.2804965,0.937073533,0,410.8274221,80.48133819,463.5008483,10,10,13% -2018-10-27 19:00:00,52.27221945,163.6502429,598.2845221,837.1406329,86.02929293,583.7253329,495.7800191,87.94531377,83.43519233,4.510121444,147.6551097,0,147.6551097,2.594100596,145.0610091,0.912322337,2.85623556,0.082291256,-0.082291256,0.516081056,0.516081056,0.143793279,2.641421843,84.95720629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20108048,1.879417051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.913701133,81.66409819,82.11478161,83.54351524,495.7800191,0,0.592230265,53.68456516,-0.592230265,126.3154348,0.965573379,0,560.8267701,83.54351524,615.5043299,10,11,10% -2018-10-27 20:00:00,50.8252431,182.2509865,621.3171353,844.9600506,87.56616289,676.005154,586.395683,89.60947101,84.92572,4.683751011,153.2859757,0,153.2859757,2.640442896,150.6455328,0.887067835,3.180879779,0.464706477,-0.464706477,0.450684202,0.450684202,0.14093634,2.473501835,79.55632161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.63383237,1.91299189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792043659,76.4725624,83.42587603,78.38555429,586.395683,0,0.693992198,46.05303725,-0.693992198,133.9469628,0.977953081,0,656.8933407,78.38555429,708.1951182,10,12,8% -2018-10-27 21:00:00,53.19464444,200.5792128,583.3763571,831.8431662,85.02041227,703.3380777,616.4836071,86.85447055,82.45673315,4.397737399,144.010031,0,144.010031,2.563679122,141.4463519,0.92842169,3.500767675,0.869370141,-0.869370141,0.38148264,0.38148264,0.145738529,2.074080482,66.7095579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.2605483,1.857376797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502664249,64.12376448,80.76321255,65.98114127,616.4836071,0,0.741105574,42.17432115,-0.741105574,137.8256789,0.982533229,0,686.4788417,65.98114127,729.662179,10,13,6% -2018-10-27 22:00:00,58.91065185,216.8198238,487.4151438,792.4622882,78.20811803,658.3158323,578.7916364,79.52419595,75.84985472,3.674341239,120.537708,0,120.537708,2.358263316,118.1794447,1.028184839,3.784219809,1.388017395,-1.388017395,0.292788735,0.292788735,0.160454838,1.49275332,48.01207809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90976544,1.708553745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.081494699,46.15103569,73.99126014,47.85958944,578.7916364,0,0.730371205,43.08247749,-0.730371205,136.9175225,0.98154166,0,642.0993639,47.85958944,673.422508,10,14,5% -2018-10-27 23:00:00,67.09488855,230.4229213,341.4317085,706.979502,66.27095312,535.2724162,468.4259204,66.84649581,64.27263937,2.57385644,84.78238442,0,84.78238442,1.99831375,82.78407067,1.171026716,4.021638649,2.229924847,-2.229924847,0.148814082,0.148814082,0.194097243,0.808260214,25.99642685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.78130569,1.44777151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.585581773,24.98875431,62.36688746,26.43652582,468.4259204,0,0.662573553,48.50355685,-0.662573553,131.4964432,0.97453668,0,518.8651287,26.43652582,536.1673062,10,15,3% -2018-10-27 00:00:00,76.9092582,241.7949563,161.2096248,510.4160029,45.60350164,322.3731958,276.9295418,45.44365405,44.22838781,1.215266247,40.46225378,0,40.46225378,1.375113833,39.08713995,1.342319781,4.220118102,4.256371431,-4.256371431,0,0,0.282883244,0.343778458,11.05709695,0.16508638,1,0.230756902,0,0.934653194,0.973415157,0.724496596,1,42.76956241,0.996265291,0.026193289,0.312029739,0.928406189,0.652902784,0.961238037,0.922476074,0.240089596,10.62850217,43.00965201,11.62476746,231.2122463,0,0.542556542,57.14215606,-0.542556542,122.8578439,0.957843706,0,264.474847,11.62476746,272.0830248,10,16,3% -2018-10-27 01:00:00,87.59147815,251.6463742,6.422798631,46.42721017,4.47172961,22.07717751,17.69186928,4.385308232,4.336890463,0.048417769,1.692121035,0,1.692121035,0.134839147,1.557281889,1.52875969,4.39205778,23.76494459,-23.76494459,0,0,0.69622759,0.033709787,1.084222616,0.779438906,1,0.042053976,0,0.957317342,0.996079305,0.724496596,1,4.18885818,0.097690503,0.097255003,0.312029739,0.761470303,0.485966899,0.961238037,0.922476074,0.023620615,1.042196019,4.212478795,1.139886522,3.902138042,0,0.381066819,67.60022047,-0.381066819,112.3997795,0.918789416,0,7.797721926,1.139886522,8.543754857,10,17,10% -2018-10-27 02:00:00,99.36402221,260.6935337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734229346,4.549960502,-5.958828281,5.958828281,1,0.450826659,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178708069,79.7054825,-0.178708069,100.2945175,0.770214088,0,0,0,0,10,18,0% -2018-10-27 03:00:00,111.1626831,269.6463795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940154825,4.706217138,-2.432766639,2.432766639,1,0.946181287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.038858969,92.22701566,0.038858969,87.77298434,0,0,0,0,0,10,19,0% -2018-10-27 04:00:00,122.9668587,279.3466609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146176556,4.875518987,-1.343956017,1.343956017,1,0.759983704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.261211576,105.1419649,0.261211576,74.85803507,0,0.858584287,0,0,0,10,20,0% -2018-10-27 05:00:00,134.3987372,291.0635852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.345700475,5.080017894,-0.769974036,0.769974036,1,0.661827005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473203845,118.2424668,0.473203845,61.75753317,0,0.944337291,0,0,0,10,21,0% -2018-10-27 06:00:00,144.7772193,307.0642316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526839159,5.359281856,-0.383860937,0.383860937,1,0.595797776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660398242,131.330252,0.660398242,48.66974796,0,0.974288109,0,0,0,10,22,0% -2018-10-27 07:00:00,152.6206823,331.0829037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663733413,5.778486767,-0.080276076,0.080276076,1,0.543881707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810049164,144.1007352,0.810049164,35.89926484,0,0.988275351,0,0,0,10,23,0% -2018-10-28 08:00:00,155.2328447,4.190511653,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709324248,0.073138226,0.189056258,-0.189056258,1,0.497823165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911970989,155.7791646,0.911970989,24.22083542,0,0.995173695,0,0,0,10,0,0% -2018-10-28 09:00:00,151.1249787,35.65465105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.637628461,0.622291055,0.455314868,-0.455314868,1,0.452290261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9592316,163.5832919,0.9592316,16.41670813,0,0.997874945,0,0,0,10,1,0% -2018-10-28 10:00:00,142.4830512,57.41584807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486798372,1.002095592,0.749352338,-0.749352338,1,0.402006893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948624245,161.5543546,0.948624245,18.4456454,0,0.997292091,0,0,0,10,2,0% -2018-10-28 11:00:00,131.7705642,72.12207554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299830203,1.258767682,1.118828388,-1.118828388,1,0.338822767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880885625,151.7493811,0.880885625,28.25061892,0,0.993238942,0,0,0,10,3,0% -2018-10-28 12:00:00,120.2168624,83.21505639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098180066,1.452376721,1.671541123,-1.671541123,1,0.244303322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760645411,139.521129,0.760645411,40.47887103,0,0.984266349,0,0,0,10,4,0% -2018-10-28 13:00:00,108.4007177,92.65788929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891949436,1.617185246,2.773987665,-2.773987665,1,0.05577386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59611059,126.5918441,0.59611059,53.40815592,0,0.966122946,0,0,0,10,5,0% -2018-10-28 14:00:00,96.66750062,101.5796124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687166165,1.772898689,7.287664437,-7.287664437,1,0,#DIV/0!,0,0,0.417286882,1,0.136366554,0,0.947003992,0.985765955,0.724496596,1,0,0,0.059592099,0.312029739,0.844947632,0.569444227,0.961238037,0.922476074,0,0,0,0,0,0,-0.398506117,113.4848218,0.398506117,66.51517822,0,0.924531411,0,0,0,10,6,0% -2018-10-28 15:00:00,85.14094502,110.7708555,29.11301095,164.234693,15.2015297,14.96261367,0,14.96261367,14.7431475,0.219466174,36.83203396,29.31486519,7.517168771,0.458382208,7.058786563,1.485989819,1.933316144,-8.908642456,8.908642456,0,0,0.522155875,0.114595552,3.685786874,1,0.050892361,0,0.111782622,0.961238037,1,0.456805041,0.732308445,14.17167416,0.329250177,0.115824807,0.008916073,0.724496596,0.448993192,0.99920431,0.960442347,0.083024087,3.547256703,14.25469824,3.87650688,0,27.82296248,-0.178493744,100.2820369,0.178493744,79.71796308,0,0.769878137,14.25469824,25.2967974,30.81094621,10,7,116% -2018-10-28 16:00:00,74.60358526,120.9329851,203.2331389,571.8086714,51.42034445,75.22866042,23.82677182,51.40188859,49.86983135,1.532057247,50.82674059,0,50.82674059,1.550513106,49.27622748,1.302078196,2.110678765,-2.288591062,2.288591062,0.921525811,0.921525811,0.253011614,1.442249112,46.38768914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.93677878,1.123341467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.044904572,44.58961124,48.98168335,45.71295271,23.82677182,0,0.041669133,87.61184308,-0.041669133,92.38815692,0,0,48.98168335,45.71295271,78.89989664,10,8,61% -2018-10-28 17:00:00,65.15593739,132.7830897,376.7718744,731.7099478,69.34388613,255.1148153,185.0216377,70.09317765,67.25291211,2.840265538,93.44367707,0,93.44367707,2.090974019,91.35270306,1.137185635,2.317502107,-0.987822804,0.987822804,0.699081338,0.699081338,0.184047406,2.142879909,68.92238397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64605721,1.514903558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552509199,66.25081707,66.19856641,67.76572062,185.0216377,0,0.252861996,75.35306479,-0.252861996,104.6469352,0.852263682,0,223.8857886,67.76572062,268.2370974,10,9,20% -2018-10-28 18:00:00,57.53063585,146.9870181,511.1718642,803.3585003,79.88999953,434.4090417,353.074591,81.33445072,77.48102129,3.853429432,126.3485149,0,126.3485149,2.408978249,123.9395366,1.004099016,2.565407424,-0.353866356,0.353866356,0.590668401,0.590668401,0.156287944,2.522616729,81.13602544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.47770479,1.745296541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827627233,77.99103382,76.30533203,79.73633036,353.074591,0,0.43949817,63.92813319,-0.43949817,116.0718668,0.936233884,0,406.8657275,79.73633036,459.051561,10,10,13% -2018-10-28 19:00:00,52.59333039,163.7704743,593.1761389,835.5277567,85.61950392,579.3838876,491.8745153,87.50937227,83.03775997,4.471612294,146.4041664,0,146.4041664,2.581743946,143.8224224,0.91792678,2.858333995,0.085989376,-0.085989376,0.51544864,0.51544864,0.144340776,2.617633361,84.19208696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81905338,1.8704647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.89646646,80.92863638,81.71551984,82.79910108,491.8745153,0,0.588699192,53.93524684,-0.588699192,126.0647532,0.96506698,0,556.4073731,82.79910108,610.5977288,10,11,10% -2018-10-28 20:00:00,51.15993244,182.2624695,616.0909848,843.4004293,87.1535378,671.3290348,582.1591436,89.16989115,84.52553707,4.644354082,152.0063929,0,152.0063929,2.628000727,149.3783921,0.892909266,3.181080195,0.470520238,-0.470520238,0.44968999,0.44968999,0.141462122,2.450073317,78.80277994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.24916132,1.903977581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.775069778,75.74822949,83.0242311,77.65220707,582.1591436,0,0.690252368,46.34991069,-0.690252368,133.6500893,0.977562726,0,652.1213104,77.65220707,702.9431269,10,12,8% -2018-10-28 21:00:00,53.52045144,200.4840179,578.1314843,830.1159522,84.59781907,698.3880497,611.9829677,86.40508202,82.04688269,4.358199332,142.7256081,0,142.7256081,2.550936378,140.1746717,0.934108095,3.499106211,0.878047281,-0.878047281,0.379998761,0.379998761,0.146329721,2.051506276,65.98349383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.86658445,1.848144722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.486309313,63.42584407,80.35289376,65.2739888,611.9829677,0,0.737225885,42.50436335,-0.737225885,137.4956366,0.982178182,0,681.4292122,65.2739888,724.1497324,10,13,6% -2018-10-28 22:00:00,59.21196159,216.650622,482.2598867,790.2441401,77.76273207,653.1109303,574.0575528,79.05337751,75.41789878,3.635478733,119.2743262,0,119.2743262,2.344833286,116.9294929,1.033443686,3.78126668,1.401951025,-1.401951025,0.290405944,0.290405944,0.161246527,1.471734575,47.33604298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.49455297,1.698823733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06626669,45.50120503,73.56081966,47.20002876,574.0575528,0,0.726430635,43.4120097,-0.726430635,136.5879903,0.981170304,0,636.8090431,47.20002876,667.7005179,10,14,5% -2018-10-28 23:00:00,67.36737034,230.2131611,336.5031445,703.5409125,65.76581019,529.7114134,463.3919821,66.3194312,63.78272836,2.536702842,83.5721651,0,83.5721651,1.983081827,81.58908327,1.175782421,4.017977642,2.25688417,-2.25688417,0.144203766,0.144203766,0.195438917,0.790080593,25.41170775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.3103846,1.436736033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.5724107,24.42670007,61.8827953,25.86343611,463.3919821,0,0.658656766,48.80248958,-0.658656766,131.1975104,0.974087928,0,513.2673309,25.86343611,530.1944326,10,15,3% -2018-10-28 00:00:00,77.15538394,241.5641093,156.822669,503.466852,44.89807267,315.9715829,271.2451572,44.72642564,43.54423012,1.182195521,39.37731428,0,39.37731428,1.353842547,38.02347173,1.346615485,4.216089062,4.338255387,-4.338255387,0,0,0.286298358,0.338460637,10.88605753,0.174734786,1,0.226550248,0,0.935245379,0.974007342,0.724496596,1,42.11747202,0.980854317,0.027607299,0.312029739,0.924694322,0.649190918,0.961238037,0.922476074,0.236019076,10.46409257,42.35349109,11.44494689,223.8491927,0,0.538754748,57.40109065,-0.538754748,122.5989094,0.957193393,0,256.6204595,11.44494689,264.1109483,10,16,3% -2018-10-28 01:00:00,87.80461763,251.4015869,5.220537816,38.86615133,3.731681446,18.33685494,14.67834284,3.658512101,3.619157482,0.039354619,1.378303799,0,1.378303799,0.112523964,1.265779835,1.532479676,4.387785435,26.07773652,-26.07773652,0,0,0.714807857,0.028130991,0.904789371,0.797135632,1,0.038328107,0,0.957681825,0.996443788,0.724496596,1,3.494460302,0.081523229,0.098851096,0.312029739,0.758183427,0.482680023,0.961238037,0.922476074,0.019756215,0.869717958,3.514216517,0.951241187,2.977712739,0,0.377663914,67.81094501,-0.377663914,112.189055,0.917607155,0,6.246587032,0.951241187,6.869155365,10,17,10% -2018-10-28 02:00:00,99.5791954,260.434356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737984826,4.545436997,-5.827450342,5.827450342,1,0.47329361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175299171,79.90393154,-0.175299171,100.0960685,0.764773323,0,0,0,0,10,18,0% -2018-10-28 03:00:00,111.3728836,269.367859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943823517,4.701356039,-2.410653321,2.410653321,1,0.942399687,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041983267,92.40617123,0.041983267,87.59382877,0,0,0,0,0,10,19,0% -2018-10-28 04:00:00,123.18137,279.0413959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149920483,4.870191107,-1.336971987,1.336971987,1,0.758789365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264024875,105.3090188,0.264024875,74.6909812,0,0.860623905,0,0,0,10,20,0% -2018-10-28 05:00:00,134.6300619,290.7263235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349737853,5.074131567,-0.767684522,0.767684522,1,0.661435475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47570113,118.4050104,0.47570113,61.59498964,0,0.944891988,0,0,0,10,21,0% -2018-10-28 06:00:00,145.0424944,306.7125359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.531469082,5.353143609,-0.383695543,0.383695543,1,0.595769492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662596233,131.4981782,0.662596233,48.50182184,0,0.974539263,0,0,0,10,22,0% -2018-10-28 07:00:00,152.933817,330.8327791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669198644,5.77412127,-0.08140771,0.08140771,1,0.544075228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811985168,144.2903437,0.811985168,35.70965634,0,0.988422521,0,0,0,10,23,0% -2018-10-29 08:00:00,155.5639107,4.281647579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715102439,0.074728848,0.186851164,-0.186851164,1,0.498200259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913700328,156.0218255,0.913700328,23.97817454,0,0.995277463,0,0,0,10,0,0% -2018-10-29 09:00:00,151.409151,36.01609223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642588203,0.628599393,0.451919782,-0.451919782,1,0.452870855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960823797,163.9092263,0.960823797,16.09077371,0,0.997961322,0,0,0,10,1,0% -2018-10-29 10:00:00,142.7130076,57.81222185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490811868,1.009013619,0.744275072,-0.744275072,1,0.402875156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95015823,161.8341842,0.95015823,18.16581581,0,0.997377186,0,0,0,10,2,0% -2018-10-29 11:00:00,131.9677092,72.48210326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303271032,1.265051351,1.110828878,-1.110828878,1,0.340190764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882444283,151.9386363,0.882444283,28.0613637,0,0.993339199,0,0,0,10,3,0% -2018-10-29 12:00:00,120.3993055,83.53722618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101364298,1.457999645,1.657151554,-1.657151554,1,0.246764084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762309862,139.6682556,0.762309862,40.33174443,0,0.984409874,0,0,0,10,4,0% -2018-10-29 13:00:00,108.5810577,92.95242284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895096962,1.622325826,2.739183314,-2.739183314,1,0.061725755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597954585,126.7235456,0.597954585,53.27645439,0,0.966381609,0,0,0,10,5,0% -2018-10-29 14:00:00,96.85524151,101.8557611,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690442862,1.777718394,7.065165195,-7.065165195,1,0,#DIV/0!,0,0,0.404074006,1,0.140605534,0,0.946492104,0.985254067,0.724496596,1,0,0,0.058009867,0.312029739,0.848702099,0.573198695,0.961238037,0.922476074,0,0,0,0,0,0,-0.40059094,113.6151262,0.40059094,66.3848738,0,0.925184396,0,0,0,10,6,0% -2018-10-29 15:00:00,85.33873006,111.0344089,26.79245574,154.0089409,14.27695061,14.04842072,0,14.04842072,13.84644787,0.201972849,34.76743384,27.84079002,6.926643824,0.430502737,6.496141087,1.489441819,1.937916019,-9.251491717,9.251491717,0,0,0.532872042,0.107625684,3.461611967,1,0.100923133,0,0.107672641,0.961238037,1,0.464882911,0.740386315,13.30973237,0.30676835,0.115824807,0.018116016,0.724496596,0.448993192,0.998363169,0.959601206,0.077974442,3.33530877,13.38770681,3.64207712,0,25.03101028,-0.180773855,100.4148379,0.180773855,79.58516207,0,0.773411331,13.38770681,23.0013441,28.4416265,10,7,112% -2018-10-29 16:00:00,74.82920297,121.1845998,199.1443084,566.6689406,50.84858388,72.91860958,22.1020642,50.81654538,49.31531147,1.501233916,49.8181156,0,49.8181156,1.533272415,48.28484318,1.306015969,2.115070269,-2.311712243,2.311712243,0.925479766,0.925479766,0.255335361,1.417926568,45.6053925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.40375318,1.110850645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.027282971,43.83763796,48.43103615,44.94848861,22.1020642,0,0.039003486,87.76469786,-0.039003486,92.23530214,0,0,48.43103615,44.94848861,77.84892298,10,8,61% -2018-10-29 17:00:00,65.41198771,133.0149168,372.1886663,728.9165276,68.8933887,251.7598871,182.1381729,69.62171422,66.81599884,2.80571538,92.31884106,0,92.31884106,2.077389859,90.2414512,1.141654556,2.321548252,-0.991642658,0.991642658,0.699734572,0.699734572,0.185103403,2.119198139,68.16069683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.22607956,1.505061881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535351837,65.51865441,65.7614314,67.02371629,182.1381729,0,0.249875213,75.52987192,-0.249875213,104.4701281,0.849900121,0,220.5606866,67.02371629,264.4263684,10,9,20% -2018-10-29 18:00:00,57.8203036,147.1776775,506.2841309,801.4089843,79.47263381,430.4789114,349.5860871,80.89282432,77.07624068,3.816583634,125.1508422,0,125.1508422,2.396393132,122.7544491,1.009154672,2.568735058,-0.35269343,0.35269343,0.590467818,0.590467818,0.156972397,2.498919839,80.373852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.08861428,1.736178667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810458917,77.25840371,75.8990732,78.99458237,349.5860871,0,0.436214335,64.13741091,-0.436214335,115.8625891,0.935377449,0,402.8940154,78.99458237,454.5943897,10,10,13% -2018-10-29 19:00:00,52.91192444,163.8847945,588.0874148,833.9011207,85.21003104,575.0383445,487.9644589,87.07388556,82.64063422,4.433251342,145.1579992,0,145.1579992,2.569396827,142.5886024,0.923487295,2.860329258,0.089621003,-0.089621003,0.514827595,0.514827595,0.144893478,2.594010238,83.43228609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.437321,1.861519255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879351587,80.19828689,81.31667258,82.05980615,487.9644589,0,0.585158656,54.18580089,-0.585158656,125.8141991,0.964553088,0,551.9842984,82.05980615,605.6908004,10,11,10% -2018-10-29 20:00:00,51.49106908,182.2698944,610.8974576,841.8318628,86.74211423,666.6598151,577.9280926,88.73172252,84.12651944,4.60520308,150.7347561,0,150.7347561,2.615594788,148.1191613,0.898688691,3.181209784,0.476278136,-0.476278136,0.448705331,0.448705331,0.141991284,2.42687004,78.05648279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.8656104,1.89498952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758259082,75.03086028,82.62386948,76.9258498,577.9280926,0,0.686512495,46.64532728,-0.686512495,133.3546727,0.977168114,0,647.3567736,76.9258498,697.7032037,10,12,8% -2018-10-29 21:00:00,53.84211029,200.3870232,572.9334514,828.3828398,84.17728576,693.4590613,607.5010169,85.95804438,81.63903001,4.319014365,141.4526042,0,141.4526042,2.538255747,138.9143485,0.939722101,3.497413333,0.886674477,-0.886674477,0.378523424,0.378523424,0.146923322,2.029214728,65.26652102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.47454094,1.838957648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.470159162,62.73666254,79.9447001,64.57562019,607.5010169,0,0.7333578,42.83136611,-0.7333578,137.1686339,0.981820457,0,676.4016259,64.57562019,718.6650778,10,13,6% -2018-10-29 22:00:00,59.50890847,216.4811577,477.1659702,788.0218541,77.32022294,647.9432204,569.3574089,78.58581158,74.98873294,3.597078639,118.0259039,0,118.0259039,2.331490003,115.6944139,1.038626387,3.778308971,1.415852337,-1.415852337,0.28802868,0.28802868,0.162040522,1.451050316,46.67076612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.08202244,1.68915657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051281015,44.86171561,73.13330345,46.55087218,569.3574089,0,0.722514745,43.73750536,-0.722514745,136.2624946,0.98079726,0,631.5574901,46.55087218,662.0241049,10,14,5% -2018-10-29 23:00:00,67.63541003,230.003847,331.6501415,700.096588,65.26415,524.2043584,458.4080445,65.79631394,63.29619508,2.500118856,82.38037144,0,82.38037144,1.967954922,80.41241652,1.180460596,4.014324423,2.283926258,-2.283926258,0.139579296,0.139579296,0.196786136,0.772282121,24.8392477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8427103,1.425776642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559515767,23.8764297,61.40222607,25.30220634,458.4080445,0,0.654778287,49.09715938,-0.654778287,130.9028406,0.973638274,0,507.7258433,25.30220634,524.2856314,10,15,3% -2018-10-29 00:00:00,77.39696597,241.3339411,152.5289494,496.4980171,44.19560455,309.6415661,265.6287944,44.01277166,42.86294401,1.149827649,38.31507025,0,38.31507025,1.332660542,36.98240971,1.350831887,4.212071869,4.421567705,-4.421567705,0,0,0.289752239,0.333165135,10.715736,0.18432529,1,0.222422199,0,0.935822779,0.974584742,0.724496596,1,41.46732364,0.965508026,0.029001023,0.312029739,0.921051098,0.645547694,0.961238037,0.922476074,0.231992859,10.30037304,41.69931649,11.26588106,216.6666898,0,0.535004744,57.65576687,-0.535004744,122.3442331,0.956542885,0,248.950297,11.26588106,256.3235908,10,16,3% -2018-10-29 01:00:00,88.01206716,251.1574827,4.181110862,32.12865051,3.0665997,15.0327386,12.02708921,3.005649384,2.974130404,0.03151898,1.106228031,0,1.106228031,0.092469295,1.013758736,1.536100353,4.383525014,28.80434327,-28.80434327,0,0,0.733441375,0.023117324,0.743532601,0.814666518,1,0.034703049,0,0.958033266,0.996795229,0.724496596,1,2.87068169,0.06699369,0.100412817,0.312029739,0.754987143,0.479483738,0.961238037,0.922476074,0.016272912,0.714711818,2.886954602,0.781705508,2.229022325,0,0.374341562,68.01637681,-0.374341562,111.9836232,0.916432144,0,4.929702309,0.781705508,5.44131293,10,17,10% -2018-10-29 02:00:00,99.78951684,260.1757221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741655628,4.540922984,-5.704541415,5.704541415,1,0.494312274,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171963359,80.09800742,-0.171963359,99.90199258,0.759240386,0,0,0,0,10,18,0% -2018-10-29 03:00:00,111.5779784,269.0895663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947403095,4.696498915,-2.389501814,2.389501814,1,0.938782566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045027524,92.58075968,0.045027524,87.41924032,0,0,0,0,0,10,19,0% -2018-10-29 04:00:00,123.3904689,278.735695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153569948,4.864855621,-1.330289469,1.330289469,1,0.757646587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.266754454,105.4712289,0.266754454,74.52877114,0,0.862561705,0,0,0,10,20,0% -2018-10-29 05:00:00,134.8556695,290.3871792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353675448,5.068212382,-0.765530439,0.765530439,1,0.661067105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478114542,118.562332,0.478114542,61.437668,0,0.945422549,0,0,0,10,21,0% -2018-10-29 06:00:00,145.3019883,306.355901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535998106,5.346919156,-0.38360182,0.38360182,1,0.595753464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664713733,131.6603675,0.664713733,48.33963252,0,0.974779649,0,0,0,10,22,0% -2018-10-29 07:00:00,153.2420014,330.5737876,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674577477,5.769601014,-0.082579227,0.082579227,1,0.544275569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813847363,144.4735507,0.813847363,35.52644931,0,0.988563418,0,0,0,10,23,0% -2018-10-30 08:00:00,155.8916216,4.366711991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.720822073,0.076213502,0.184626243,-0.184626243,1,0.498580743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915365381,156.2576694,0.915365381,23.74233061,0,0.995377004,0,0,0,10,0,0% -2018-10-30 09:00:00,151.6908301,36.37462491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.64750443,0.634856969,0.448521789,-0.448521789,1,0.453451946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962363416,164.2306301,0.962363416,15.76936988,0,0.998044575,0,0,0,10,1,0% -2018-10-30 10:00:00,142.9413215,58.20487758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.494796697,1.015866754,0.739215592,-0.739215592,1,0.403740378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951652719,162.110874,0.951652719,17.889126,0,0.997459825,0,0,0,10,2,0% -2018-10-30 11:00:00,132.1640192,72.83792458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306697287,1.271261604,1.102884835,-1.102884835,1,0.341549275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883977004,152.1258927,0.883977004,27.87410727,0,0.993437443,0,0,0,10,3,0% -2018-10-30 12:00:00,120.5814972,83.85507846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104544144,1.463547214,1.642920559,-1.642920559,1,0.249197727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763961474,139.8146884,0.763961474,40.1853116,0,0.984551673,0,0,0,10,4,0% -2018-10-30 13:00:00,108.7615082,93.24255824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898246417,1.627389644,2.705037512,-2.705037512,1,0.067565031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599797475,126.8553942,0.599797475,53.14460579,0,0.966638529,0,0,0,10,5,0% -2018-10-30 14:00:00,97.04325739,102.1273177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693724358,1.78245795,6.854404053,-6.854404053,1,0,#DIV/0!,0,0,0.39099344,1,0.144869555,0,0.945973068,0.984735032,0.724496596,1,0,0,0.056426841,0.312029739,0.85247835,0.576974946,0.961238037,0.922476074,0,0,0,0,0,0,-0.402684218,113.7460895,0.402684218,66.25391051,0,0.925833227,0,0,0,10,6,0% -2018-10-30 15:00:00,85.53641199,111.2930067,24.5463532,143.8169745,13.35372095,13.13609777,0,13.13609777,12.95105699,0.185040779,32.68185504,26.32764357,6.354211478,0.402663957,5.951547521,1.49289202,1.942429402,-9.624937376,9.624937376,0,0,0.544020566,0.100665989,3.237764248,1,0.149742952,0,0.103525343,0.961238037,1,0.47317197,0.748675374,12.4490486,0.28485281,0.115824807,0.027538589,0.724496596,0.448993192,0.997480565,0.958718602,0.072932166,3.122897868,12.52198077,3.407750679,0,22.3852645,-0.183063534,100.5482531,0.183063534,79.45174691,0,0.776870781,12.52198077,20.79820859,26.13399233,10,7,109% -2018-10-30 16:00:00,75.05477387,121.4307183,195.0605954,561.4278645,50.27086598,70.61632023,20.39085717,50.22546306,48.75501389,1.470449162,48.81055177,0,48.81055177,1.515852089,47.29469968,1.309952923,2.119365847,-2.335715631,2.335715631,0.929584587,0.929584587,0.257719228,1.393591715,44.82269998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.86517384,1.098229678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.009652453,43.08528414,47.8748263,44.18351382,20.39085717,0,0.036319639,87.91858021,-0.036319639,92.08141979,0,0,47.8748263,44.18351382,76.79205242,10,8,60% -2018-10-30 17:00:00,65.66744901,133.2406238,367.6094194,726.0808378,68.44082129,248.3958993,179.2476262,69.14827309,66.377078,2.771195082,91.19490305,0,91.19490305,2.063743281,89.13115976,1.146113197,2.325487584,-0.995672579,0.995672579,0.700423729,0.700423729,0.186178095,2.095572922,67.40082864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.80417215,1.495174982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518235448,64.78824021,65.3224076,66.28341519,179.2476262,0,0.246870069,75.70762405,-0.246870069,104.2923759,0.847464309,0,217.2283733,66.28341519,260.6095428,10,9,20% -2018-10-30 18:00:00,58.10848441,147.3618583,501.4076323,799.4374803,79.05472864,426.5398187,346.0890592,80.45075942,76.67093689,3.779822528,123.9558773,0,123.9558773,2.383791749,121.5720856,1.014184376,2.57194962,-0.351621477,0.351621477,0.590284504,0.590284504,0.157665587,2.475339769,79.61543591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.69902086,1.727049008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.793375237,76.52938532,75.4923961,78.25643432,346.0890592,0,0.432915729,64.34725757,-0.432915729,115.6527424,0.934504081,0,398.9140343,78.25643432,450.1313054,10,10,13% -2018-10-30 19:00:00,53.22788818,163.9932125,583.0208795,832.2614887,84.80103936,570.6908593,484.0518265,86.6390328,82.24397514,4.395057659,143.9172264,0,143.9172264,2.557064219,141.3601622,0.929001903,2.862221508,0.093181956,-0.093181956,0.514218637,0.514218637,0.145451119,2.570564093,82.67817748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.05603721,1.852584322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862364935,79.47340901,80.91840214,81.32599333,484.0518265,0,0.581610267,54.43611989,-0.581610267,125.5638801,0.964031779,0,547.5597455,81.32599333,600.7859817,10,11,10% -2018-10-30 20:00:00,51.81854114,182.273268,605.7393003,840.2553009,86.33207747,662.0000691,573.7049036,88.29516551,83.7288468,4.566318711,149.471737,0,149.471737,2.603230667,146.8685064,0.904404156,3.181268665,0.481975017,-0.481975017,0.447731107,0.447731107,0.142523487,2.403903763,77.31780837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48335233,1.886031757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.741620093,74.32081833,82.22497242,76.20685009,573.7049036,0,0.682774513,46.93916445,-0.682774513,133.0608355,0.976769381,0,642.6023561,76.20685009,692.4782154,10,12,8% -2018-10-30 21:00:00,54.15950817,200.2882163,567.7851119,826.6450847,83.75902,688.5540631,603.0404826,85.51358052,81.23337651,4.280204007,140.1917175,0,140.1917175,2.525643491,137.666074,0.945261739,3.495688827,0.895244421,-0.895244421,0.377057877,0.377057877,0.147518873,2.007217066,64.55900059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.08461137,1.829820112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.454221931,62.05656699,79.5388333,63.8863871,603.0404826,0,0.7295035,43.15521315,-0.7295035,136.8447869,0.981460233,0,671.3990858,63.8863871,713.2114485,10,13,6% -2018-10-30 22:00:00,59.80137676,216.3114191,472.1362243,785.7972897,76.88083284,642.8160166,564.6942622,78.12175436,74.56259207,3.55916229,116.7931346,0,116.7931346,2.31824077,114.4748938,1.043730922,3.775346474,1.429709291,-1.429709291,0.285659001,0.285659001,0.162836124,1.430710352,46.01656295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.67239963,1.679557546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03654478,44.23287063,72.70894441,45.91242818,564.6942622,0,0.718625872,44.05885392,-0.718625872,135.9411461,0.980422767,0,626.3480552,45.91242818,656.3968212,10,14,5% -2018-10-30 23:00:00,67.89889207,229.7949848,326.8753401,696.6498193,64.76629385,518.7550607,453.4775852,65.27747552,62.81335113,2.464124386,81.20765336,0,81.20765336,1.952942722,79.25471064,1.185059225,4.01067909,2.311026963,-2.311026963,0.134944803,0.134944803,0.198137595,0.754871593,24.27926528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37858233,1.414900354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.546901899,23.33815329,60.92548423,24.75305365,453.4775852,0,0.650940505,49.38745049,-0.650940505,130.6125495,0.973188065,0,502.2444578,24.75305365,518.4448363,10,15,3% -2018-10-30 00:00:00,77.63389276,241.1044792,148.3306218,489.5176936,43.49671248,303.3883923,260.0850873,43.303305,42.18512612,1.118178882,37.27606294,0,37.27606294,1.311586367,35.96447657,1.35496704,4.208067004,4.506262592,-4.506262592,0,0,0.293241624,0.327896592,10.54628153,0.193849133,1,0.218374626,0,0.936385335,0.975147298,0.724496596,1,40.81973387,0.950239858,0.030373557,0.312029739,0.917478206,0.641974802,0.961238037,0.922476074,0.228013026,10.13748695,41.04774689,11.08772681,209.6678186,0,0.531308859,57.90606811,-0.531308859,122.0939319,0.955892779,0,241.4677008,11.08772681,248.7243963,10,16,3% -2018-10-30 01:00:00,88.21366509,250.9141101,3.294725392,26.21028527,2.477688549,12.15452632,9.726712191,2.427814129,2.402977098,0.024837032,0.873555768,0,0.873555768,0.074711451,0.798844316,1.539618901,4.379277362,32.06001522,-32.06001522,0,0,0.75201671,0.018677863,0.600744274,0.832001435,1,0.031181391,0,0.958371675,0.997133638,0.724496596,1,2.318593264,0.054128192,0.101938417,0.312029739,0.751883707,0.476380302,0.961238037,0.922476074,0.013179091,0.577458247,2.331772355,0.631586439,1.634073686,0,0.371102874,68.21634954,-0.371102874,111.7836505,0.915266471,0,3.82738521,0.631586439,4.240745903,10,17,11% -2018-10-30 02:00:00,99.99488443,259.9177017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745239969,4.536419679,-5.589449275,5.589449275,1,0.513994189,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16870258,80.28760712,-0.16870258,99.71239288,0.753620419,0,0,0,0,10,18,0% -2018-10-30 03:00:00,111.7778682,268.8115946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950891831,4.691647393,-2.369282678,2.369282678,1,0.93532489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047990116,92.75068763,0.047990116,87.24931237,0,0,0,0,0,10,19,0% -2018-10-30 04:00:00,123.5940549,278.4296792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157123193,4.859514637,-1.323904548,1.323904548,1,0.756554701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269399061,105.6285106,0.269399061,74.3714894,0,0.864401729,0,0,0,10,20,0% -2018-10-30 05:00:00,135.0754487,290.0462974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.357511319,5.062262873,-0.763511314,0.763511314,1,0.660721814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480443226,118.7143538,0.480443226,61.28564622,0,0.945929431,0,0,0,10,21,0% -2018-10-30 06:00:00,145.555565,305.9944375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540423854,5.340610427,-0.383579907,0.383579907,1,0.595749717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666750283,131.8167428,0.666750283,48.18325716,0,0.975009406,0,0,0,10,22,0% -2018-10-30 07:00:00,153.5450825,330.3057757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67986724,5.764923324,-0.083790797,0.083790797,1,0.54448276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81563566,144.650263,0.81563566,35.34973696,0,0.988698119,0,0,0,10,23,0% -2018-10-31 08:00:00,156.2158812,4.445325201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726481471,0.077585561,0.182381448,-0.182381448,1,0.498964625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916966371,156.4865395,0.916966371,23.51346045,0,0.995472373,0,0,0,10,0,0% -2018-10-31 09:00:00,151.9699846,36.72992173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652376596,0.641058068,0.445121036,-0.445121036,1,0.454033509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963850914,164.5473372,0.963850914,15.45266276,0,0.998124757,0,0,0,10,1,0% -2018-10-31 10:00:00,143.167994,58.59356022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498752879,1.022650546,0.734174291,-0.734174291,1,0.404602492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953108314,162.3844015,0.953108314,17.61559853,0,0.997540065,0,0,0,10,2,0% -2018-10-31 11:00:00,132.3595001,73.18935061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310109072,1.277395146,1.094996909,-1.094996909,1,0.34289819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885484427,152.3111941,0.885484427,27.68880593,0,0.993533733,0,0,0,10,3,0% -2018-10-31 12:00:00,120.7634355,84.16846408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107719565,1.469016825,1.628848464,-1.628848464,1,0.251604197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765600819,139.9604732,0.765600819,40.03952681,0,0.984691815,0,0,0,10,4,0% -2018-10-31 13:00:00,108.942053,93.52816908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901397519,1.632374494,2.671540365,-2.671540365,1,0.07329338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601639664,126.9874204,0.601639664,53.01257956,0,0.966893777,0,0,0,10,5,0% -2018-10-31 14:00:00,97.2315149,102.3941702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697010072,1.787115405,6.654536932,-6.654536932,1,0,#DIV/0!,0,0,0.378047237,1,0.149157337,0,0.945446979,0.984208943,0.724496596,1,0,0,0.054843523,0.312029739,0.856275196,0.580771792,0.961238037,0.922476074,0,0,0,0,0,0,-0.404786099,113.8777237,0.404786099,66.12227633,0,0.926477971,0,0,0,10,6,0% -2018-10-31 15:00:00,85.73390818,111.5465498,22.37936316,133.6906039,12.4343103,12.22807506,0,12.22807506,12.05936996,0.168705093,30.58225053,24.7811745,5.801076031,0.374940333,5.426135697,1.496338978,1.946854563,-10.0330402,10.0330402,0,0,0.555615019,0.093735083,3.014842491,1,0.197370337,0,0.099342588,0.961238037,1,0.481672001,0.757175405,11.59192511,0.263507768,0.115824807,0.037185067,0.724496596,0.448993192,0.996554942,0.957792979,0.067910749,2.910659907,11.65983586,3.174167675,0,19.89010573,-0.185362125,100.6822458,0.185362125,79.31775417,0,0.780257733,11.65983586,18.69357647,23.89440779,10,7,105% -2018-10-31 16:00:00,75.28022201,121.6712582,190.9838105,556.0847735,49.6872175,68.32322671,18.69454551,49.6286812,48.18896457,1.439716636,47.80448893,0,47.80448893,1.498252934,46.306236,1.313887736,2.12356406,-2.360637275,2.360637275,0.933846439,0.933846439,0.260164552,1.369252945,44.0398815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.3210657,1.08547915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.992019098,42.33280923,47.31308479,43.41828838,18.69454551,0,0.033618158,88.07345845,-0.033618158,91.92654155,0,0,47.31308479,43.41828838,75.72948618,10,8,60% -2018-10-31 17:00:00,65.92222474,133.4601556,363.0361206,723.2032489,67.9863018,245.0242989,176.3513154,68.67298358,65.93626396,2.736719624,90.07234837,0,90.07234837,2.050037842,88.02231053,1.150559872,2.329319136,-0.999919146,0.999919146,0.701149935,0.701149935,0.187271453,2.072014271,66.64310146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.38044492,1.485245438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.501167286,64.05988402,64.88161221,65.54512946,176.3513154,0,0.243847515,75.88626429,-0.243847515,104.1137357,0.844953826,0,213.8903309,65.54512946,256.7883072,10,9,20% -2018-10-31 18:00:00,58.39506628,147.5395439,496.544685,797.4446655,78.63643498,422.5935961,342.5851762,80.00841991,76.26525633,3.743163577,122.7641863,0,122.7641863,2.371178652,120.3930077,1.019186174,2.575050818,-0.350654563,0.350654563,0.590119152,0.590119152,0.158367288,2.451887694,78.86113654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.30906528,1.717910862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776384288,75.80432407,75.08544956,77.52223493,342.5851762,0,0.429603697,64.55758763,-0.429603697,115.4424124,0.933613664,0,394.9276513,77.52223493,445.6644036,10,10,13% -2018-10-31 19:00:00,53.54110524,164.0957437,577.9791283,830.609691,84.39270069,566.3436907,480.1386905,86.2050002,81.84794939,4.357050809,142.6824826,0,142.6824826,2.544751302,140.1377313,0.934468572,2.864011016,0.096668078,-0.096668078,0.513622475,0.513622475,0.146013405,2.547306679,81.93013909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.67536219,1.843663655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.845515017,78.75436606,80.52087721,80.59802972,480.1386905,0,0.578055729,54.68609114,-0.578055729,125.3139089,0.963503149,0,543.1360177,80.59802972,595.8858162,10,11,10% -2018-10-31 20:00:00,52.14223518,182.2726043,600.6192951,838.6717529,85.92361769,657.3524498,569.4920243,87.86042554,83.33270359,4.527721949,148.2180159,0,148.2180159,2.590914098,145.6271018,0.910053683,3.181257081,0.487605678,-0.487605678,0.446768208,0.446768208,0.143058371,2.381186232,76.5871345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1025644,1.877108444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725161319,73.61846681,81.82772572,75.49557526,569.4920243,0,0.679040426,47.23129603,-0.679040426,132.768704,0.976366681,0,637.8607636,75.49557526,687.2711076,10,12,8% -2018-10-31 21:00:00,54.47253229,200.1875933,562.6893219,824.9040041,83.34323293,683.6760562,598.6041395,85.07191674,80.83012695,4.241789789,138.9436467,0,138.9436467,2.513105977,136.4305407,0.95072504,3.493932625,0.903749653,-0.903749653,0.375603397,0.375603397,0.148115896,1.985524362,63.86128867,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69699255,1.820736725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.438505641,61.38589975,79.13549819,63.20663647,598.6041395,0,0.725665213,43.47578616,-0.725665213,136.5242138,0.981097703,0,666.4246445,63.20663647,707.7921239,10,13,6% -2018-10-31 22:00:00,60.08925226,216.1414024,467.173448,783.5723849,76.44480684,637.7326528,560.0711881,77.66146465,74.13971386,3.521750786,115.5767042,0,115.5767042,2.305092978,113.2716112,1.048755297,3.772379121,1.443509449,-1.443509449,0.283299035,0.283299035,0.163632602,1.41072419,45.3737393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26591301,1.670032015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022064874,43.61496409,72.28797788,45.2849961,560.0711881,0,0.714766369,44.3759445,-0.714766369,135.6240555,0.980047072,0,621.1841062,45.2849961,650.8222304,10,14,5% -2018-10-31 23:00:00,68.15770369,229.5865876,322.1813144,693.2040359,64.27256813,513.3673286,448.6040768,64.76325189,62.33451306,2.428738838,80.05464484,0,80.05464484,1.93805507,78.11658977,1.18957634,4.007041873,2.338160785,-2.338160785,0.130304646,0.130304646,0.199491917,0.737855327,23.73196369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.91830496,1.4041143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534573673,22.81206618,60.45287863,24.21618049,448.6040768,0,0.647145795,49.6732489,-0.647145795,130.3267511,0.972737658,0,496.8269574,24.21618049,512.6759632,10,15,3% -2018-10-31 00:00:00,77.86605653,240.875758,144.229711,482.5344629,42.80203351,297.2173189,254.6186601,42.59865876,41.51139428,1.087264485,36.26080251,0,36.26080251,1.290639233,34.97016327,1.359019062,4.204075065,4.592286015,-4.592286015,0,0,0.296762943,0.322659808,10.37784857,0.203297374,1,0.214409346,0,0.936933001,0.975694964,0.724496596,1,40.17534003,0.935063731,0.031724005,0.312029739,0.913977283,0.638473879,0.961238037,0.922476074,0.224081751,9.975582785,40.39942178,10.91064652,202.8553551,0,0.527669378,58.15188105,-0.527669378,121.8481189,0.955243696,0,234.1757209,10.91064652,241.3165208,10,16,3% -2018-10-31 01:00:00,88.40926053,250.6715246,2.550077855,21.09019796,1.964612384,9.684750627,7.760154991,1.924595636,1.905372072,0.019223564,0.677536212,0,0.677536212,0.059240312,0.6182959,1.543032685,4.375043445,36.00660195,-36.00660195,0,0,0.770412707,0.014810078,0.476343018,0.849109851,1,0.027765547,0,0.95869708,0.997459043,0.724496596,1,1.837818779,0.042919404,0.103426208,0.312029739,0.748875206,0.473371802,0.961238037,0.922476074,0.010475234,0.457879028,1.848294013,0.500798432,1.170930941,0,0.36795079,68.41070744,-0.36795079,111.5892926,0.914112263,0,2.918656346,0.500798432,3.246418904,10,17,11% -2018-10-31 02:00:00,100.1952011,259.6603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748736153,4.531928424,-5.481590186,5.481590186,1,0.53243918,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.165518687,80.47263264,-0.165518687,99.52736736,0.747919305,0,0,0,0,10,18,0% -2018-10-31 03:00:00,111.9724595,268.5340453,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954288091,4.686803245,-2.349967843,2.349967843,1,0.932021859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.050869522,92.91586741,0.050869522,87.08413259,0,0,0,0,0,10,19,0% -2018-10-31 04:00:00,123.7920332,278.1234798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160578567,4.85417045,-1.317813287,1.317813287,1,0.755513034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271957553,105.7807859,0.271957553,74.2192141,0,0.866147779,0,0,0,10,20,0% -2018-10-31 05:00:00,135.2892941,289.7038392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361243625,5.056285849,-0.761626546,0.761626546,1,0.6603995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482686437,118.8610049,0.482686437,61.13899508,0,0.946413083,0,0,0,10,21,0% -2018-10-31 06:00:00,145.8030928,305.6282806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544744028,5.334219783,-0.383629807,0.383629807,1,0.59575825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668705526,131.9672351,0.668705526,48.03276489,0,0.975228672,0,0,0,10,22,0% -2018-10-31 07:00:00,153.8429072,330.0286154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685065262,5.760085965,-0.085042458,0.085042458,1,0.544696806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817350048,144.8203965,0.817350048,35.1796035,0,0.9888267,0,0,0,10,23,0% -2018-11-01 08:00:00,156.5365903,4.517108935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7320789,0.078838424,0.180116873,-0.180116873,1,0.49935189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918503578,156.7082864,0.918503578,23.29171356,0,0.995563631,0,0,0,11,0,0% -2018-11-01 09:00:00,152.2465802,37.08165348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6572041,0.647196945,0.441717824,-0.441717824,1,0.454615493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965286778,164.8591771,0.965286778,15.14082291,0,0.998201922,0,0,0,11,1,0% -2018-11-01 10:00:00,143.393022,58.97801556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502680358,1.029360558,0.72915175,-0.72915175,1,0.405461397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954525611,162.6547431,0.954525611,17.3452569,0,0.997617959,0,0,0,11,2,0% -2018-11-01 11:00:00,132.5541523,73.5361941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313506395,1.283448706,1.087166009,-1.087166009,1,0.344237353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886967157,152.494581,0.886967157,27.505419,0,0.993628127,0,0,0,11,3,0% -2018-11-01 12:00:00,120.9451117,84.47723574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110890413,1.474405907,1.614936022,-1.614936022,1,0.253983365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767228407,140.1056505,0.767228407,39.89434954,0,0.984830359,0,0,0,11,4,0% -2018-11-01 13:00:00,109.1226695,93.80913104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904549871,1.637278205,2.638683204,-2.638683204,1,0.078912286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60348147,127.1196486,0.60348147,52.88035139,0,0.967147415,0,0,0,11,5,0% -2018-11-01 14:00:00,97.41997386,102.6562095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700299301,1.791688853,6.464805397,-6.464805397,1,0,#DIV/0!,0,0,0.365237812,1,0.153467403,0,0.944913961,0.983675924,0.724496596,1,0,0,0.053260476,0.312029739,0.860091277,0.584587873,0.961238037,0.922476074,0,0,0,0,0,0,-0.406896621,114.0100339,0.406896621,65.98996611,0,0.927118665,0,0,0,11,6,0% -2018-11-01 15:00:00,85.9311265,111.7949423,20.29621443,123.6649083,11.52150108,11.32708675,0,11.32708675,11.17408532,0.153001438,28.47651387,23.20804593,5.268467938,0.347415768,4.921052171,1.499781087,1.95118983,-10.48058323,10.48058323,0,0,0.567667489,0.086853942,2.793521329,1,0.243821443,0,0.095126559,0.961238037,1,0.490381883,0.765885288,10.74095583,0.242743444,0.115824807,0.047055788,0.724496596,0.448993192,0.995584802,0.956822839,0.062925385,2.699306573,10.80388122,2.942050018,0,17.54942669,-0.187668808,100.8167697,0.187668808,79.18323035,0,0.7835732,10.80388122,16.69331045,21.72931904,11,7,101% -2018-11-01 16:00:00,75.50546519,121.9061414,186.9158898,550.6392409,49.0976851,66.0408681,17.01460843,49.02625968,47.61720875,1.409050931,46.80039787,0,46.80039787,1.480476357,45.31992151,1.317818971,2.127663546,-2.38651359,2.38651359,0.93827155,0.93827155,0.262672613,1.344919278,43.25722711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77147225,1.072600081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974389439,41.58049207,46.74586169,42.65309215,17.01460843,0,0.030899738,88.22929356,-0.030899738,91.77070644,0,0,46.74586169,42.65309215,74.66145744,11,8,60% -2018-11-01 17:00:00,66.17621288,133.6734624,358.4708666,720.28426,67.52996082,241.6466563,173.4506682,68.19598815,65.49368334,2.702304811,88.95168932,0,88.95168932,2.036277478,86.91541184,1.154992801,2.333042042,-1.004388645,1.004388645,0.701914264,0.701914264,0.1883834,2.04853261,65.88785052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.9550196,1.475276101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484154902,63.33390809,64.4391745,64.80918419,173.4506682,0,0.240808633,76.06572855,-0.240808633,103.9342715,0.842366248,0,210.5481631,64.80918419,252.964478,11,9,20% -2018-11-01 18:00:00,58.67993308,147.710724,491.6976937,795.4313048,78.21791292,418.6421957,339.0762166,79.56597916,75.85935425,3.706624909,121.5763572,0,121.5763572,2.358558668,119.2177985,1.024158037,2.578038474,-0.349796614,0.349796614,0.589972434,0.589972434,0.159077242,2.428575036,78.11132132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91889675,1.708767726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759494346,75.08357316,74.6783911,76.79234089,339.0762166,0,0.426279698,64.76830895,-0.426279698,115.2316911,0.932706119,0,390.9368533,76.79234089,441.1959045,11,10,13% -2018-11-01 19:00:00,53.85145659,164.1924104,572.9648163,828.946625,83.98519339,561.9991988,476.2272181,85.77198075,81.45272994,4.319250807,141.4544167,0,141.4544167,2.532463453,138.9219533,0.939885224,2.865698169,0.10007526,-0.10007526,0.513039812,0.513039812,0.146580019,2.524249842,81.18855198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.29546222,1.834761151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828810418,78.04152432,80.12427264,79.87628547,476.2272181,0,0.574496842,54.93559667,-0.574496842,125.0644033,0.96296732,0,538.7155204,79.87628547,590.9929517,11,11,10% -2018-11-01 20:00:00,52.46203667,182.2679251,595.5402509,837.0822868,85.51692953,652.7196848,565.2919722,87.42771255,82.93827859,4.489433969,146.9742797,0,146.9742797,2.578650949,144.3956288,0.915635272,3.181175413,0.493164893,-0.493164893,0.445817526,0.445817526,0.143595549,2.358729135,75.86483707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72342809,1.868223835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708891229,72.92416705,81.43231932,74.79239088,565.2919722,0,0.675312309,47.52159248,-0.675312309,132.4784075,0.975960183,0,633.1347758,74.79239088,682.0848998,11,12,8% -2018-11-01 21:00:00,54.78107044,200.085159,557.6489291,823.1609744,82.93013845,678.828083,594.1948011,84.63328198,80.4294888,4.20379318,137.7090888,0,137.7090888,2.500649654,135.2084391,0.956110047,3.49214481,0.91218259,-0.91218259,0.37416128,0.37416128,0.148713885,1.96414748,63.17373467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.31188392,1.811712162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423018163,60.72499669,78.73490208,62.53670886,594.1948011,0,0.721845203,43.79296527,-0.721845203,136.2070347,0.980733072,0,661.4813945,62.53670886,702.4104197,11,13,6% -2018-11-01 22:00:00,60.372423,215.9711122,462.2803967,781.3491506,76.01239195,632.696471,555.4912682,77.20520277,73.72033787,3.484864898,114.3772883,0,114.3772883,2.292054073,112.0852343,1.053697559,3.769406997,1.457240016,-1.457240016,0.28095097,0.28095097,0.164429192,1.391100988,44.74258965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.86279285,1.660585373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.00784793,43.00827904,71.87064078,44.66886442,555.4912682,0,0.710938596,44.68866651,-0.710938596,135.3113335,0.979670438,0,616.0690149,44.66886442,645.3038933,11,14,5% -2018-11-01 23:00:00,68.41173558,229.3786763,317.5705582,689.7627933,63.78330292,508.044952,443.79097,64.25398201,61.860001,2.39398101,78.92196045,0,78.92196045,1.923301918,76.99865853,1.194010033,4.003413135,2.365300957,-2.365300957,0.125663403,0.125663403,0.200847658,0.721239115,23.19752917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.46218592,1.393425693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.522535283,22.2983474,59.9847212,23.6917731,443.79097,0,0.643396504,49.95444293,-0.643396504,130.0455571,0.972287424,0,491.4771,23.6917731,506.9828917,11,15,3% -2018-11-01 00:00:00,78.09335407,240.6478189,140.2280955,475.5572553,42.11222368,291.1335851,249.2341017,41.89948338,40.84238476,1.057098616,35.26976417,0,35.26976417,1.269838922,33.99992525,1.362986152,4.200096778,4.679575411,-4.679575411,0,0,0.300312313,0.31745973,10.21059619,0.212660939,1,0.210528103,0,0.937465741,0.976227704,0.724496596,1,39.53479738,0.919993976,0.033051482,0.312029739,0.910549909,0.635046505,0.961238037,0.922476074,0.220201281,9.814813437,39.75499866,10.73480741,196.2317436,0,0.524088528,58.39309638,-0.524088528,121.6069036,0.954596271,0,227.0770893,10.73480741,234.102806,11,16,3% -2018-11-01 01:00:00,88.5987177,250.4297883,1.934598789,16.7316572,1.525433611,7.599200948,6.105180966,1.494019982,1.479436159,0.014583823,0.515063326,0,0.515063326,0.045997452,0.469065874,1.546339337,4.370824351,40.87880345,-40.87880345,0,0,0.788501275,0.011499363,0.36985904,0.865961327,1,0.024457678,0,0.959009534,0.997771497,0.724496596,1,1.426479943,0.033324997,0.104874593,0.312029739,0.745963489,0.470460084,0.961238037,0.922476074,0.008153455,0.355522577,1.434633398,0.388847574,0.818330356,0,0.364888002,68.59930968,-0.364888002,111.4006903,0.912971652,0,2.181745815,0.388847574,2.436238775,11,17,12% -2018-11-01 02:00:00,100.3903754,259.4038162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752142588,4.527450686,-5.380439891,5.380439891,1,0.549736899,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162413432,80.65299172,-0.162413432,99.34700828,0.742143689,0,0,0,0,11,18,0% -2018-11-01 03:00:00,112.1616652,268.2570283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957590353,4.681968386,-2.331530452,2.331530452,1,0.928868879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.053664338,93.0762178,0.053664338,86.9237822,0,0,0,0,0,11,19,0% -2018-11-01 04:00:00,123.9843159,277.817239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163934534,4.848825539,-1.312011692,1.312011692,1,0.754520903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27442891,105.9279838,0.27442891,74.07201619,0,0.867803452,0,0,0,11,20,0% -2018-11-01 05:00:00,135.497107,289.359981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364870645,5.050284392,-0.75987539,0.75987539,1,0.660100035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484843547,119.0022226,0.484843547,60.99777745,0,0.94687395,0,0,0,11,21,0% -2018-11-01 06:00:00,146.0444453,305.2575912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548956426,5.327750033,-0.383751378,0.383751378,1,0.59577904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670579207,132.111784,0.670579207,47.88821596,0,0.975437593,0,0,0,11,22,0% -2018-11-01 07:00:00,154.1353233,329.7422066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690168885,5.755087188,-0.086334105,0.086334105,1,0.544917691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818990606,144.9838768,0.818990606,35.01612316,0,0.988949239,0,0,0,11,23,0% -2018-11-02 08:00:00,156.8536469,4.581688468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737612582,0.079965549,0.177832757,-0.177832757,1,0.499742497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91997734,156.9227694,0.91997734,23.07723062,0,0.995650835,0,0,0,11,0,0% -2018-11-02 09:00:00,152.5205793,37.42949039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661986286,0.653267845,0.438312616,-0.438312616,1,0.455197818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966671523,165.1659752,0.966671523,14.83402478,0,0.998276122,0,0,0,11,1,0% -2018-11-02 10:00:00,143.6163976,59.35799122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506578998,1.035992384,0.724148744,-0.724148744,1,0.406316961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955905205,162.9218746,0.955905205,17.07812543,0,0.997693558,0,0,0,11,2,0% -2018-11-02 11:00:00,132.7479707,73.87827025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316889164,1.289419061,1.079393293,-1.079393293,1,0.345566565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888425765,152.676091,0.888425765,27.32390899,0,0.993720678,0,0,0,11,3,0% -2018-11-02 12:00:00,121.1265112,84.78124867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114056432,1.479711933,1.601184379,-1.601184379,1,0.256335034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768844681,140.2502553,0.768844681,39.74974473,0,0.984967359,0,0,0,11,4,0% -2018-11-02 13:00:00,109.3033282,94.08532263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90770296,1.642098658,2.60645847,-2.60645847,1,0.08442304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605323114,127.2520965,0.605323114,52.74790347,0,0.967399487,0,0,0,11,5,0% -2018-11-02 14:00:00,97.60858731,102.9133296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703591227,1.796176446,6.284525874,-6.284525874,1,0,#DIV/0!,0,0,0.352567907,1,0.157798079,0,0.944374167,0.98313613,0.724496596,1,0,0,0.051678324,0.312029739,0.863925058,0.588421654,0.961238037,0.922476074,0,0,0,0,0,0,-0.409015711,114.1430183,0.409015711,65.85698171,0,0.927755307,0,0,0,11,6,0% -2018-11-02 15:00:00,86.12796505,112.0380927,18.30164493,113.7781563,10.61839597,10.43617768,0,10.43617768,10.29821215,0.13796553,26.37349756,21.61586805,4.757629518,0.320183816,4.437445702,1.503216568,1.955433605,-10.97323848,10.97323848,0,0,0.580188066,0.080045954,2.574553038,1,0.289110301,0,0.090879775,0.961238037,1,0.499299512,0.774802916,9.899033232,0.222576434,0.115824807,0.05715005,0.724496596,0.448993192,0.99456873,0.955806766,0.057993021,2.489626899,9.957026253,2.712203333,0,15.36649792,-0.189982583,100.9517678,0.189982583,79.04823223,0,0.78681798,9.957026253,14.80284019,19.6451891,11,7,97% -2018-11-02 16:00:00,75.73041507,122.1352955,182.8588893,545.0911029,48.50233637,63.77088239,15.35260287,48.41827952,47.03981197,1.378467548,45.79877918,0,45.79877918,1.462524396,44.33625478,1.321745087,2.131663039,-2.413381264,2.413381264,0.942866192,0.942866192,0.265244619,1.320600345,42.47504663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.21645652,1.059593946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956770454,40.82863043,46.17322697,41.88822438,15.35260287,0,0.028165205,88.38603917,-0.028165205,91.61396083,0,0,46.17322697,41.88822438,73.58823206,11,8,59% -2018-11-02 17:00:00,66.42930626,133.8805011,353.9158575,717.3245044,67.07194161,238.2646613,170.547219,67.71744233,65.0494751,2.667967228,87.83346365,0,87.83346365,2.022466509,85.81099714,1.159410114,2.336655548,-1.009087021,1.009087021,0.702717733,0.702717733,0.189513807,2.02513874,65.13542325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.52802974,1.465270101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467206123,62.61064638,63.99523587,64.07591648,170.547219,0,0.237754626,76.24594565,-0.237754626,103.7540543,0.839699149,0,207.2035906,64.07591648,249.1399964,11,9,20% -2018-11-02 18:00:00,58.96296489,147.8753956,486.8691439,793.3982514,77.79933133,414.6876837,335.564064,79.1236197,75.45339444,3.670225261,120.3929976,0,120.3929976,2.345936888,118.0470607,1.029097874,2.580912536,-0.349051389,0.349051389,0.589844993,0.589844993,0.159795157,2.405413433,77.36636454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52867274,1.69962329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742713844,74.36749237,74.27138659,76.06711566,335.564064,0,0.422945303,64.97932305,-0.422945303,115.0206769,0.931781404,0,386.9437413,76.06711566,436.7281471,11,10,13% -2018-11-02 19:00:00,54.15882106,164.2832424,567.9806495,827.2732553,83.57870191,557.6598384,472.3196646,85.34017373,81.05849568,4.281678052,140.2336906,0,140.2336906,2.520206235,137.7134843,0.945249746,2.867283486,0.103399462,-0.103399462,0.51247134,0.51247134,0.147150615,2.501405482,80.45379881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.91650926,1.825880838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.812259756,77.33525163,79.72876901,79.16113247,472.3196646,0,0.570935494,55.18451361,-0.570935494,124.8154864,0.962424432,0,534.3007541,79.16113247,586.1101321,11,11,10% -2018-11-02 20:00:00,52.77783056,182.25926,590.5049937,835.4880272,85.1122115,648.104567,561.1073266,86.99724037,82.5457643,4.451476073,145.7412196,0,145.7412196,2.566447207,143.1747724,0.921146915,3.181024178,0.498647433,-0.498647433,0.444879956,0.444879956,0.144134618,2.336544053,75.15128855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.34612842,1.859382265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.692818212,72.23827707,81.03894664,74.09765934,561.1073266,0,0.671592301,47.80992138,-0.671592301,132.1900786,0.97555007,0,628.4272382,74.09765934,676.9226743,11,12,8% -2018-11-02 21:00:00,55.08501161,199.9809268,552.6667622,821.4174274,82.51995255,674.013217,589.81531,84.19790701,80.03167151,4.166235501,136.4887361,0,136.4887361,2.488281036,134.0004551,0.961414821,3.490325614,0.920535557,-0.920535557,0.372732838,0.372732838,0.149312313,1.943097028,62.49667978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.92948681,1.80275114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407767182,60.07418578,78.33725399,61.87693692,589.81531,0,0.718045771,44.10662952,-0.718045771,135.8933705,0.980366556,0,656.5724581,61.87693692,697.0696758,11,13,6% -2018-11-02 22:00:00,60.65077977,215.8005616,457.4597702,779.1296646,75.58383619,627.7108084,550.9575788,76.75322964,73.30470466,3.44852498,113.1955491,0,113.1955491,2.279131536,110.9164176,1.058555801,3.766430327,1.470887891,-1.470887891,0.278617046,0.278617046,0.1652251,1.371849503,44.1233957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.4632704,1.651223039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993900295,42.41308627,71.45717069,44.06430931,550.9575788,0,0.707144913,44.99691016,-0.707144913,135.0030898,0.979293135,0,611.0061452,44.06430931,639.8453543,11,14,5% -2018-11-02 23:00:00,68.66088249,229.1712792,313.0454727,686.329762,63.29883078,502.7916871,439.0416806,63.75000649,61.39013749,2.359869004,77.81019247,0,77.81019247,1.908693296,75.90149918,1.198358467,3.999793373,2.392419508,-2.392419508,0.121025858,0.121025858,0.20220331,0.705028184,22.67612992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.01053524,1.382841795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510790519,21.79715861,59.52132576,23.1800004,439.0416806,0,0.639694947,50.23092379,-0.639694947,129.7690762,0.971837744,0,486.1986023,23.1800004,501.369449,11,15,3% -2018-11-02 00:00:00,78.31568723,240.4207103,136.327495,468.5953124,41.42795543,285.1423864,243.9359425,41.20644397,40.17874972,1.027694243,34.30338523,0,34.30338523,1.249205709,33.05417952,1.366866598,4.196132985,4.768059377,-4.768059377,0,0,0.303885547,0.312301427,10.04468743,0.221930654,1,0.206732561,0,0.937983536,0.976745499,0.724496596,1,38.89877654,0.905045284,0.034355123,0.312029739,0.907197595,0.631694191,0.961238037,0.922476074,0.216373935,9.655335627,39.11515047,10.56038091,189.7990792,0,0.520568465,58.62960927,-0.520568465,121.3703907,0.953951155,0,220.1742012,10.56038091,227.0857593,11,16,3% -2018-11-02 01:00:00,88.78192106,250.1889701,1.434781595,13.0836561,1.156650716,5.867785348,4.735195929,1.132589419,1.121773429,0.01081599,0.382756696,0,0.382756696,0.034877287,0.347879409,1.549536839,4.36662128,47.03047866,-47.03047866,0,0,0.806151068,0.008719322,0.280443357,0.882526137,1,0.021259604,0,0.959309119,0.998071083,0.724496596,1,1.081235496,0.025268475,0.106282114,0.312029739,0.743150089,0.467646685,0.961238037,0.922476074,0.006197569,0.269572822,1.087433064,0.294841298,0.556261759,0,0.361916875,68.78203536,-0.361916875,111.2179646,0.911846729,0,1.594658529,0.294841298,1.787626262,11,17,12% -2018-11-02 02:00:00,100.5803224,259.1481261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755457789,4.52298805,-5.285526091,5.285526091,1,0.565968115,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.159388454,80.82859828,-0.159388454,99.17140172,0.736300992,0,0,0,0,11,18,0% -2018-11-02 03:00:00,112.3454049,267.980661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960797215,4.677144866,-2.313944747,2.313944747,1,0.925861547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056373284,93.23166447,0.056373284,86.76833553,0,0,0,0,0,11,19,0% -2018-11-02 04:00:00,124.1708224,277.5111088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167189686,4.843482559,-1.306495705,1.306495705,1,0.753577614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276812239,106.0700409,0.276812239,73.92995907,0,0.869372149,0,0,0,11,20,0% -2018-11-02 05:00:00,135.6987964,289.0149147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368390788,5.044261849,-0.758256955,0.758256955,1,0.659823266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486914052,119.1379522,0.486914052,60.86204784,0,0.947312473,0,0,0,11,21,0% -2018-11-02 06:00:00,146.2795029,304.8825556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553058954,5.321204427,-0.383944337,0.383944337,1,0.595812038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672371184,132.2503387,0.672371184,47.74966125,0,0.975636313,0,0,0,11,22,0% -2018-11-02 07:00:00,154.42218,329.4464788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695175479,5.749925765,-0.087665496,0.087665496,1,0.545145372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820557498,145.1406405,0.820557498,34.85935953,0,0.989065818,0,0,0,11,23,0% -2018-11-03 08:00:00,157.166947,4.638693991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7430807,0.080960483,0.175529477,-0.175529477,1,0.500136381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921388058,157.1298576,0.921388058,22.87014239,0,0.995734048,0,0,0,11,0,0% -2018-11-03 09:00:00,152.7919414,37.77310301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666722447,0.659265016,0.434906025,-0.434906025,1,0.455780379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968005697,165.4675538,0.968005697,14.53244618,0,0.998347411,0,0,0,11,1,0% -2018-11-03 10:00:00,143.8381088,59.73323734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.510448588,1.042541665,0.719166222,-0.719166222,1,0.407169022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957247689,163.1857709,0.957247689,16.81422906,0,0.997766915,0,0,0,11,2,0% -2018-11-03 11:00:00,132.9409446,74.21539726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320257194,1.295303038,1.07168015,-1.07168015,1,0.34688559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889860785,152.8557584,0.889860785,27.14424157,0,0.993811436,0,0,0,11,3,0% -2018-11-03 12:00:00,121.3076131,85.08036114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117217257,1.484932431,1.58759503,-1.58759503,1,0.25865895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770450018,140.3943173,0.770450018,39.60568268,0,0.985102864,0,0,0,11,4,0% -2018-11-03 13:00:00,109.4839933,94.35662559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910856162,1.646833788,2.574859559,-2.574859559,1,0.089826772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607164731,127.3847757,0.607164731,52.61522433,0,0.967650026,0,0,0,11,5,0% -2018-11-03 14:00:00,97.79730187,103.1654285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706884917,1.800576402,6.113080207,-6.113080207,1,0,#DIV/0!,0,0,0.340040543,1,0.162147498,0,0.943827782,0.982589745,0.724496596,1,0,0,0.050097745,0.312029739,0.867774843,0.592271439,0.961238037,0.922476074,0,0,0,0,0,0,-0.411143186,114.2766682,0.411143186,65.72333182,0,0.928387866,0,0,0,11,6,0% -2018-11-03 15:00:00,86.32431234,112.275914,16.40032729,104.0715986,9.728416098,9.558701053,0,9.558701053,9.435068458,0.123632595,24.28300234,20.01320548,4.269796866,0.293347639,3.976449227,1.506643475,1.95958437,-11.51778275,11.51778275,0,0,0.593184266,0.07333691,2.358767115,1,0.333249119,0,0.086605089,0.961238037,1,0.508421726,0.78392513,9.069346682,0.203029968,0.115824807,0.067466015,0.724496596,0.448993192,0.993505413,0.95474345,0.053132342,2.282486566,9.122479024,2.485516534,0,13.34382238,-0.192302278,101.0871731,0.192302278,78.91282691,0,0.789992679,9.122479024,13.02703853,17.6484152,11,7,93% -2018-11-03 16:00:00,75.95497774,122.3586533,178.8149748,539.4404703,47.90126007,61.51499572,13.71015256,47.80484316,46.45686035,1.347982812,44.80016062,0,44.80016062,1.444399728,43.35576089,1.325664445,2.135561368,-2.441277229,2.441277229,0.947636683,0.947636683,0.267881704,1.296306351,41.69366828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.65610124,1.046462686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.939169539,40.07753985,45.59527078,41.12400253,13.71015256,0,0.025415506,88.54364195,-0.025415506,91.45635805,0,0,45.59527078,41.12400253,72.51010795,11,8,59% -2018-11-03 17:00:00,66.68139319,134.081235,349.3733862,714.3247517,66.61239971,234.8801136,167.6425994,67.23751425,64.60379009,2.633724161,86.71823201,0,86.71823201,2.008609625,84.70962239,1.163809861,2.340159016,-1.014019859,1.014019859,0.703561298,0.703561298,0.19066249,2.001843798,64.38617783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.09962036,1.455230836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450329017,61.89044317,63.54994937,63.34567401,167.6425994,0,0.234686813,76.4268378,-0.234686813,103.5731622,0.836950109,0,203.8584412,63.34567401,245.3169179,11,9,20% -2018-11-03 18:00:00,59.24403874,148.0335629,482.0615911,791.346447,77.38086737,410.7322307,332.0506981,78.68153261,75.04754871,3.633983897,119.2147325,0,119.2147325,2.333318656,116.8814139,1.034003538,2.583673075,-0.348422472,0.348422472,0.589737442,0.589737442,0.160520707,2.382414686,76.62664581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.13855839,1.690481423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.72605133,73.65644659,73.86460972,75.34692802,332.0506981,0,0.419602185,65.19052569,-0.419602185,114.8094743,0.930839515,0,382.9505204,75.34692802,432.2635778,11,10,13% -2018-11-03 19:00:00,54.46307596,164.3682764,563.029374,825.5906116,83.17341617,553.3281483,468.4183643,84.90978404,80.6654308,4.244353246,139.0209756,0,139.0209756,2.507985375,136.5129903,0.950559996,2.86876761,0.106636721,-0.106636721,0.511917736,0.511917736,0.147724826,2.478785501,79.72626247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.53868034,1.817026867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.795871657,76.63591602,79.334552,78.45294289,468.4183643,0,0.567373657,55.43271484,-0.567373657,124.5672852,0.961874654,0,529.8943039,78.45294289,581.240186,11,11,10% -2018-11-03 20:00:00,53.08950189,182.2466463,585.5163554,833.8901538,84.70966532,643.5099444,556.9407184,86.56922597,82.15535636,4.41386961,144.5195282,0,144.5195282,2.554308955,141.9652192,0.926586606,3.180804029,0.50404808,-0.50404808,0.443956391,0.443956391,0.144675148,2.314642416,74.44685664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97085347,1.850588143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676950551,71.56115032,80.64780402,73.41173847,556.9407184,0,0.667882593,48.09614806,-0.667882593,131.9038519,0.975136543,0,623.7410507,73.41173847,671.7875653,11,12,8% -2018-11-03 21:00:00,55.38424647,199.8749182,547.7456206,819.6748474,82.11289259,669.2345519,585.4685281,83.76602377,79.63688592,4.129137857,135.283274,0,135.283274,2.476006676,132.8072673,0.966637455,3.488475415,0.928800805,-0.928800805,0.371319397,0.371319397,0.149910633,1.922383323,61.83045581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55000388,1.793858408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392760173,59.43378596,77.94276405,61.22764437,585.4685281,0,0.714269237,44.41665752,-0.714269237,135.5833425,0.979998385,0,651.7009762,61.22764437,691.7732449,11,13,6% -2018-11-03 22:00:00,60.92421653,215.6297714,452.7142044,776.9160665,75.15938793,622.7789865,546.4731805,76.30580597,72.89305507,3.4127509,112.0321331,0,112.0321331,2.266332855,109.7658002,1.063328173,3.763449477,1.484439696,-1.484439696,0.276299551,0.276299551,0.166019505,1.352978067,43.51642546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.06757716,1.641950438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.980228004,41.82964338,71.04780516,43.47159382,546.4731805,0,0.703387668,45.30056702,-0.703387668,134.699433,0.978915444,0,605.9988414,43.47159382,634.4501301,11,14,5% -2018-11-03 23:00:00,68.90504351,228.9644316,308.6083603,682.9087177,62.81948583,497.6112455,434.3595787,63.25166673,60.92524655,2.326420177,76.71990918,0,76.71990918,1.894239277,74.8256699,1.20261988,3.996183201,2.419487319,-2.419487319,0.11639699,0.11639699,0.203557304,0.689227187,22.16791555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.56366439,1.372369908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.499342751,21.30864362,59.06300714,22.68101353,434.3595787,0,0.636043394,50.50258591,-0.636043394,129.4974141,0.971389011,0,480.9951289,22.68101353,495.8393987,11,15,3% -2018-11-03 00:00:00,78.53296323,240.1944867,132.5294652,461.6581547,40.74991543,279.2488556,238.7286374,40.52021822,39.52115513,0.999063089,33.3620635,0,33.3620635,1.228760301,32.1333032,1.37065878,4.192184639,4.857657303,-4.857657303,0,0,0.307478155,0.307190075,9.880288782,0.231097277,1,0.2030243,0,0.938486377,0.97724834,0.724496596,1,38.26796126,0.890232655,0.035634078,0.312029739,0.903921779,0.628418375,0.961238037,0.922476074,0.212602092,9.497309392,38.48056335,10.38754205,183.5590995,0,0.517111276,58.8613197,-0.517111276,121.1386803,0.953309012,0,213.4691072,10.38754205,220.2675457,11,16,3% -2018-11-03 01:00:00,88.9587811,249.9491448,1.036579048,10.08348341,0.853345034,4.455794981,3.620367278,0.835427703,0.827613533,0.007814171,0.277062093,0,0.277062093,0.025731501,0.251330591,1.552623629,4.362435538,55.02152271,-55.02152271,0,0,0.823231991,0.006432875,0.206903383,0.898776008,1,0.018172705,0,0.95959596,0.998357923,0.724496596,1,0.79742186,0.018642385,0.107647503,0.312029739,0.74043614,0.464932736,0.961238037,0.922476074,0.004583736,0.198883402,0.802005596,0.217525787,0.366468028,0,0.359039345,68.95878937,-0.359039345,111.0412106,0.910739496,0,1.135762504,0.217525787,1.278128781,11,17,13% -2018-11-03 02:00:00,100.7649636,258.8933983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758680386,4.518542212,-5.196422178,5.196422178,1,0.581205781,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.15644528,80.99937262,-0.15644528,99.00062738,0.730399434,0,0,0,0,11,18,0% -2018-11-03 03:00:00,112.5236053,267.7050679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963907398,4.67233486,-2.297186009,2.297186009,1,0.922995634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058995206,93.38214011,0.058995206,86.61785989,0,0,0,0,0,11,19,0% -2018-11-03 04:00:00,124.3514796,277.2052504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170342749,4.838144323,-1.301261204,1.301261204,1,0.752682461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279106776,106.2069016,0.279106776,73.79309843,0,0.87085709,0,0,0,11,20,0% -2018-11-03 05:00:00,135.8942789,288.6688461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371802602,5.038221812,-0.756770208,0.756770208,1,0.659569017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488897568,119.2681477,0.488897568,60.73185233,0,0.947729088,0,0,0,11,21,0% -2018-11-03 06:00:00,146.5081525,304.5033851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557049643,5.314586654,-0.38420826,0.38420826,1,0.595857172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67408142,132.3828578,0.67408142,47.61714221,0,0.975824984,0,0,0,11,22,0% -2018-11-03 07:00:00,154.7033289,329.1413927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.700082454,5.744601007,-0.089036258,0.089036258,1,0.545379787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822050978,145.2906347,0.822050978,34.70936529,0,0.989176522,0,0,0,11,23,0% -2018-11-04 08:00:00,157.4763847,4.687761084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748481407,0.081816865,0.173207541,-0.173207541,1,0.500533456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922736196,157.3294312,0.922736196,22.67056882,0,0.995813332,0,0,0,11,0,0% -2018-11-04 09:00:00,153.0606233,38.11216227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.671411832,0.665182717,0.431498801,-0.431498801,1,0.456363049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969289878,165.7637322,0.969289878,14.23626782,0,0.998415844,0,0,0,11,1,0% -2018-11-04 10:00:00,144.0581397,60.10350675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514288852,1.049004085,0.71420529,-0.71420529,1,0.408017392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958553655,163.4464071,0.958553655,16.5535929,0,0.997838079,0,0,0,11,2,0% -2018-11-04 11:00:00,133.1330584,74.54739654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323610212,1.301097518,1.064028161,-1.064028161,1,0.348194157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891272722,153.0336148,0.891272722,26.96638522,0,0.993900448,0,0,0,11,3,0% -2018-11-04 12:00:00,121.488391,85.37443465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120372426,1.490064982,1.574169758,-1.574169758,1,0.260954806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044739,140.5378614,0.772044739,39.46213865,0,0.985236914,0,0,0,11,4,0% -2018-11-04 13:00:00,109.6646233,94.6229251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91400875,1.651481591,2.543880649,-2.543880649,1,0.095124478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609006369,127.5176916,0.609006369,52.48230837,0,0.967899052,0,0,0,11,5,0% -2018-11-04 14:00:00,97.98605833,103.412408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710179339,1.804887007,5.949907426,-5.949907426,1,0,#DIV/0!,0,0,0.327658957,1,0.166513617,0,0.943275023,0.982036986,0.724496596,1,0,0,0.048519465,0.312029739,0.871638778,0.596135374,0.961238037,0.922476074,0,0,0,0,0,0,-0.413278762,114.4109686,0.413278762,65.5890314,0,0.929016285,0,0,0,11,6,0% -2018-11-04 15:00:00,86.52004758,112.5083239,14.5967806,94.58911413,8.855288321,8.698305403,0,8.698305403,8.588268705,0.110036698,22.21573087,18.40955281,3.806178067,0.267019615,3.539158452,1.510059699,1.963640688,-12.12238013,12.12238013,0,0,0.60666037,0.066754904,2.147067176,1,0.376248588,0,0.082305694,0.961238037,1,0.517744253,0.793247657,8.25537055,0.184134027,0.115824807,0.078000631,0.724496596,0.448993192,0.99239367,0.953631706,0.048363701,2.07882445,8.303734251,2.262958478,0,11.48298456,-0.194626548,101.2229084,0.194626548,78.77709157,0,0.793097741,8.303734251,11.37008759,15.74522917,11,7,90% -2018-11-04 16:00:00,76.17905438,122.5761533,174.7864067,533.6877353,47.29456595,59.27500809,12.08893404,47.18607405,45.86846029,1.317613764,43.80509358,0,43.80509358,1.426105662,42.37898792,1.32957532,2.13935746,-2.47023867,2.47023867,0.952589382,0.952589382,0.27058492,1.272048018,40.91343691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.09050872,1.033208697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921594459,39.32755177,45.01210318,40.36076047,12.08893404,0,0.022651699,88.70204222,-0.022651699,91.29795778,0,0,45.01210318,40.36076047,71.42741369,11,8,59% -2018-11-04 17:00:00,66.93235811,134.275634,344.8458249,711.2859069,66.15150229,231.4949094,164.7385255,66.75638392,64.15679043,2.599593491,85.60657459,0,85.60657459,1.994711867,83.61186272,1.168190025,2.343551919,-1.019192389,1.019192389,0.704445853,0.704445853,0.19182921,1.978659196,63.64048133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.66994728,1.445161958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433531852,61.17365134,63.10347913,62.6188133,164.7385255,0,0.231606621,76.60832129,-0.231606621,103.3916787,0.834116707,0,200.5146356,62.6188133,241.4973965,11,9,20% -2018-11-04 18:00:00,59.52302919,148.1852367,477.2776477,789.2769202,76.96270576,406.7780981,328.5381814,78.23991673,74.64199622,3.597920511,118.042201,0,118.042201,2.320709541,115.7214914,1.03887284,2.586320284,-0.347913277,0.347913277,0.589650364,0.589650364,0.161253531,2.359590718,75.89254854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.74872591,1.681346162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709515443,72.95080437,73.45824136,74.63215053,328.5381814,0,0.416252107,65.40180757,-0.416252107,114.5981924,0.929880488,0,378.9594858,74.63215053,427.8047357,11,10,13% -2018-11-04 19:00:00,54.76409772,164.4475559,558.113765,823.8997877,82.76953093,549.0067391,464.5257176,84.4810215,80.27372419,4.207297308,137.8169507,0,137.8169507,2.495806745,135.3211439,0.955813817,2.870151298,0.109783151,-0.109783151,0.511379665,0.511379665,0.148302257,2.456401771,79.00632477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16215705,1.80820349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779654721,75.94388452,78.94181177,77.75208801,464.5257176,0,0.563813372,55.68006973,-0.563813372,124.3199303,0.961318173,0,525.4988259,77.75208801,576.3860124,11,11,10% -2018-11-04 20:00:00,53.39693618,182.2301282,580.5771654,832.2898987,84.30949538,638.9387085,552.7948195,86.14388894,81.76725303,4.376635909,143.3098978,0,143.3098978,2.542242355,140.7676554,0.931952347,3.180515734,0.509361628,-0.509361628,0.443047721,0.443047721,0.145216692,2.293035484,73.75190341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.59779378,1.841845932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.661296402,70.89313485,80.25909018,72.73498078,552.7948195,0,0.664185424,48.38013632,-0.664185424,131.6198637,0.974719817,0,619.0791557,72.73498078,666.682746,11,12,8% -2018-11-04 21:00:00,55.67866765,199.7671621,542.8882678,817.9347686,81.70917691,664.4951921,581.1573273,83.33786484,79.24534376,4.09252108,134.093379,0,134.093379,2.463833159,131.6295459,0.971776074,3.486594715,0.936970519,-0.936970519,0.369922294,0.369922294,0.150508275,1.902016372,61.17538467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.17363866,1.785038736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378004387,58.80410667,77.55164305,60.5891454,581.1573273,0,0.710517941,44.72292796,-0.710517941,135.277072,0.9796288,0,646.8700983,60.5891454,686.5244822,11,13,6% -2018-11-04 22:00:00,61.19263056,215.4587696,448.0462672,774.7105546,74.73929544,617.9043044,542.0411125,75.86319194,72.48562992,3.377562018,110.8876703,0,110.8876703,2.253665516,108.6340048,1.068012881,3.760464931,1.497881788,-1.497881788,0.274000818,0.274000818,0.166811557,1.334494585,42.92193316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.67594461,1.632772995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.966836784,41.25819476,70.64278139,42.89096776,542.0411125,0,0.699669198,45.59953026,-0.699669198,134.4004697,0.978537657,0,601.0504218,42.89096776,629.1217023,11,14,5% -2018-11-04 23:00:00,69.1441221,228.758175,304.2614226,679.5035351,62.34560328,492.5072882,429.7479837,62.75930444,60.46565331,2.293651124,75.65165449,0,75.65165449,1.87994997,73.77170452,1.206792589,3.992583344,2.446474135,-2.446474135,0.111781972,0.111781972,0.204908012,0.67384021,21.67301747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.12188589,1.362017353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.488194938,20.83292877,58.61008083,22.19494612,429.7479837,0,0.632444074,50.76932708,-0.632444074,129.2306729,0.970941626,0,475.870287,22.19494612,490.3964353,11,15,3% -2018-11-04 00:00:00,78.74509456,239.9692084,128.8353968,454.7555554,40.07880313,273.4580513,233.6165564,39.84149498,38.87027934,0.971215641,32.44615734,0,32.44615734,1.208523789,31.23763355,1.37436117,4.18825279,4.948278888,-4.948278888,0,0,0.311085339,0.302130947,9.717569835,0.240151511,1,0.199404816,0,0.938974269,0.977736232,0.724496596,1,37.64304698,0.875571371,0.036887521,0.312029739,0.900723825,0.625220421,0.961238037,0.922476074,0.208888195,9.340897751,37.85193518,10.21646912,177.5131873,0,0.513718972,59.08813234,-0.513718972,120.9118677,0.952670521,0,206.9635158,10.21646912,213.6499905,11,16,3% -2018-11-04 01:00:00,89.12924095,249.7103924,0.725841563,7.660069006,0.609431285,3.325478148,2.728951765,0.596526383,0.591054683,0.0054717,0.194365292,0,0.194365292,0.018376602,0.175988691,1.555598714,4.358268524,65.79390296,-65.79390296,0,0,0.839620264,0.00459415,0.147763671,0.914684986,1,0.015197807,0,0.959870223,0.998632186,0.724496596,1,0.569290395,0.013313785,0.108969738,0.312029739,0.737822271,0.462318867,0.961238037,0.922476074,0.003281683,0.142036061,0.572572078,0.155349846,0.232820557,0,0.356256812,69.12950883,-0.356256812,110.8704912,0.909651807,0,0.784357718,0.155349846,0.886031086,11,17,13% -2018-11-04 02:00:00,100.9442269,258.6397354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76180912,4.514114959,-5.11274202,5.11274202,1,0.595515931,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153585323,81.16524113,-0.153585323,98.83475887,0.72444806,0,0,0,0,11,18,0% -2018-11-04 03:00:00,112.6961999,267.4303799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966919743,4.667540649,-2.281230539,2.281230539,1,0.920267088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061529068,93.52758411,0.061529068,86.47241589,0,0,0,0,0,11,19,0% -2018-11-04 04:00:00,124.5262219,276.8998332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173392577,4.832813788,-1.296304031,1.296304031,1,0.751834735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281311879,106.3385173,0.281311879,73.66148267,0,0.872261327,0,0,0,11,20,0% -2018-11-04 05:00:00,136.0834791,288.321994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375104767,5.032168102,-0.755414001,0.755414001,1,0.659337092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49079383,119.3927711,0.49079383,60.6072289,0,0.948124229,0,0,0,11,21,0% -2018-11-04 06:00:00,146.7302882,304.1203148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560926641,5.307900815,-0.384542608,0.384542608,1,0.595914349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675709985,132.5093089,0.675709985,47.49069112,0,0.976003757,0,0,0,11,22,0% -2018-11-04 07:00:00,154.9786243,328.8269398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704887264,5.739112769,-0.090445905,0.090445905,1,0.54562085,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823471383,145.4338176,0.823471383,34.56618237,0,0.989281436,0,0,0,11,23,0% -2018-11-05 08:00:00,157.7818526,4.728530335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753812828,0.082528423,0.170867571,-0.170867571,1,0.500933614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924022276,157.5213813,0.924022276,22.47861865,0,0.99588875,0,0,0,11,0,0% -2018-11-05 09:00:00,153.3265802,38.44633881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.676053656,0.671015198,0.428091813,-0.428091813,1,0.456945678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970524676,166.0543269,0.970524676,13.94567313,0,0.998481475,0,0,0,11,1,0% -2018-11-05 10:00:00,144.2764711,60.46855457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.518099454,1.055375371,0.709267186,-0.709267186,1,0.408861857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9598237,163.7037583,0.9598237,16.29624174,0,0.9979071,0,0,0,11,2,0% -2018-11-05 11:00:00,133.3242921,74.87409242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326947869,1.306799437,1.056439074,-1.056439074,1,0.349491968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892662054,153.2096893,0.892662054,26.79031068,0,0.993987761,0,0,0,11,3,0% -2018-11-05 12:00:00,121.6688136,85.66333374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123521394,1.495107222,1.560910572,-1.560910572,1,0.263222261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77362911,140.6809078,0.77362911,39.31909222,0,0.985369547,0,0,0,11,4,0% -2018-11-05 13:00:00,109.8451714,94.88410962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917159908,1.656040121,2.513516526,-2.513516526,1,0.100317048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610848009,127.6508448,0.610848009,52.34915515,0,0.968146578,0,0,0,11,5,0% -2018-11-05 14:00:00,98.17479245,103.6541735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.713473371,1.809106611,5.794496647,-5.794496647,1,0,#DIV/0!,0,0,0.315426533,1,0.170894231,0,0.942716131,0.981478094,0.724496596,1,0,0,0.046944252,0.312029739,0.875514873,0.600011469,0.961238037,0.922476074,0,0,0,0,0,0,-0.41542207,114.545899,0.41542207,65.45410097,0,0.929640482,0,0,0,11,6,0% -2018-11-05 15:00:00,86.71504113,112.7352444,12.89526938,85.37669078,8.003019109,7.858908542,0,7.858908542,7.761698555,0.097209988,20.18319919,16.81527128,3.367927912,0.241320554,3.126607358,1.513462979,1.967601198,-12.79695597,12.79695597,0,0,0.620616667,0.060330139,1.940424639,1,0.418118187,0,0.077985105,0.961238037,1,0.527261662,0.802765066,7.460839882,0.165925276,0.115824807,0.088749558,0.724496596,0.448993192,0.991232473,0.95247051,0.04370898,1.879645866,7.504548861,2.045571142,0,9.784500545,-0.196953889,101.358887,0.196953889,78.64111299,0,0.796133472,7.504548861,9.835339532,13.94158188,11,7,86% -2018-11-05 16:00:00,76.40254211,122.7877394,170.7755238,527.8335747,46.68238419,57.05277695,10.49066084,46.5621161,45.27473807,1.287378034,42.81414904,0,42.81414904,1.407646123,41.40650292,1.333475917,2.143050334,-2.500303076,2.500303076,0.957730698,0.957730698,0.273355239,1.247836518,40.13471183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,43.51980034,1.019834824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90405331,38.57901161,44.42385365,39.59884643,10.49066084,0,0.01987494,88.86117481,-0.01987494,91.13882519,0,0,44.42385365,39.59884643,70.34050666,11,8,58% -2018-11-05 17:00:00,67.18208243,134.4636739,340.3356101,708.2090097,65.68942737,228.1110253,161.836783,66.27424235,63.70864876,2.565593588,84.49908755,0,84.49908755,1.980778603,82.51830895,1.172548537,2.346833834,-1.024609498,1.024609498,0.705372233,0.705372233,0.193013677,1.955596572,62.89870809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23917647,1.435067355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41682306,60.46063068,62.65599953,61.89569804,161.836783,0,0.228515566,76.79030732,-0.228515566,103.2096927,0.831196525,0,197.1741712,61.89569804,237.6836676,11,9,21% -2018-11-05 18:00:00,59.79980909,148.3304341,472.5199718,787.1907849,76.54503815,402.8276237,325.0286457,77.79897797,74.23692283,3.56205514,116.8760531,0,116.8760531,2.308115321,114.5679378,1.043703561,2.588854455,-0.347527059,0.347527059,0.589584317,0.589584317,0.161993234,2.336953528,75.16445869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.35935396,1.672221693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693114876,72.25093672,73.05246884,73.92315841,325.0286457,0,0.412896914,65.61305522,-0.412896914,114.3869448,0.928904399,0,374.9730076,73.92315841,423.3542363,11,10,13% -2018-11-05 19:00:00,55.06176234,164.5211299,553.2366175,822.2019398,82.36724531,544.6982802,460.6441799,84.05410027,79.88356896,4.170531311,136.6222994,0,136.6222994,2.483676349,134.1386231,0.961009045,2.871435405,0.11283493,-0.11283493,0.51085778,0.51085778,0.14888249,2.434266108,78.29436578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.787125,1.79941506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763617509,75.25952246,78.55074251,77.05893752,460.6441799,0,0.560256742,55.92644499,-0.560256742,124.073555,0.960755202,0,521.1170344,77.05893752,571.5505679,11,11,10% -2018-11-05 20:00:00,53.70001974,182.2097556,575.6902446,830.688546,83.91190846,634.3937847,548.6723337,85.72145105,81.38165482,4.339796236,142.1130185,0,142.1130185,2.530253642,139.5827649,0.937242153,3.180160165,0.514582874,-0.514582874,0.442154835,0.442154835,0.145758781,2.27173433,73.0667851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22714211,1.83316015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645863789,70.23457307,79.8730059,72.06773322,548.6723337,0,0.660503069,48.66174905,-0.660503069,131.338251,0.974300125,0,614.444529,72.06773322,661.611419,11,12,8% -2018-11-05 21:00:00,55.96816972,199.6576935,538.0974305,816.1987748,81.30902466,659.7982476,576.8845843,82.9136633,78.85725757,4.056405724,132.919719,0,132.919719,2.451767092,130.4679519,0.976828838,3.484684128,0.945036805,-0.945036805,0.368542878,0.368542878,0.151104651,1.882005888,60.5317787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.80059546,1.776296912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363506859,58.18544812,77.16410232,59.96174503,576.8845843,0,0.70679423,45.02531998,-0.70679423,134.97468,0.979258053,0,642.0829771,59.96174503,681.32674,11,13,6% -2018-11-05 22:00:00,61.45592221,215.2875898,443.4584608,772.5153854,74.32380701,613.0900367,537.6643895,75.4256472,72.08267,3.342977195,109.762775,0,109.762775,2.241137007,107.521638,1.072608187,3.75747728,1.511200252,-1.511200252,0.271723226,0.271723226,0.167600381,1.316406556,42.34015996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.2886042,1.623696132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953732069,40.69897224,70.24233627,42.32266838,537.6643895,0,0.695991821,45.89369473,-0.695991821,134.1063053,0.978160075,0,596.164176,42.32266838,623.863516,11,14,5% -2018-11-05 23:00:00,69.37802575,228.5525562,300.0067663,676.118187,61.8775197,487.4834279,425.210166,62.2732619,60.01168418,2.261577728,74.60594937,0,74.60594937,1.865835523,72.74011384,1.210874978,3.98899462,2.473348548,-2.473348548,0.107186177,0.107186177,0.206253747,0.658870807,21.19155002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.68551348,1.351791485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.477349657,20.37012394,58.16286314,21.72191542,425.210166,0,0.628899169,51.03104816,-0.628899169,128.9689518,0.970495999,0,470.8276281,21.72191542,485.0441873,11,15,3% -2018-11-05 00:00:00,78.95199857,239.7449402,125.2465237,447.8975246,39.41533034,267.7749573,228.6039834,39.1709739,38.2268127,0.9441612,31.55598737,0,31.55598737,1.188517637,30.36746973,1.377972326,4.184338572,5.039823514,-5.039823514,0,0,0.314701991,0.297129409,9.556703175,0.249084009,1,0.195875528,0,0.939447228,0.978209191,0.724496596,1,37.02474023,0.861076982,0.038114643,0.312029739,0.897605033,0.622101628,0.961238037,0.922476074,0.205234747,9.186266598,37.22997498,10.04734358,171.6623868,0,0.510393496,59.30995614,-0.510393496,120.6900439,0.952036369,0,200.6588104,10.04734358,207.2345959,11,16,3% -2018-11-05 01:00:00,89.29328364,249.4727977,0.48876326,5.737787633,0.417992156,2.437782337,2.028709682,0.409072654,0.40538815,0.003684504,0.131110317,0,0.131110317,0.012604006,0.118506311,1.558461799,4.354121714,81.06568843,-81.06568843,0,0,0.855203715,0.003151001,0.101347038,0.930230427,1,0.01233505,0,0.960132136,0.998894099,0.724496596,1,0.390322525,0.009131559,0.110248108,0.312029739,0.735308504,0.4598051,0.961238037,0.922476074,0.00225639,0.097418627,0.392578915,0.106550187,0.141542208,0,0.353570019,69.29417042,-0.353570019,110.7058296,0.908585295,0,0.521182084,0.106550187,0.590917051,11,17,13% -2018-11-05 02:00:00,101.1180459,258.3872446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764842834,4.509708164,-5.034135631,5.034135631,1,0.608958415,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.150809899,81.32613568,-0.150809899,98.67386432,0.718456778,0,0,0,0,11,18,0% -2018-11-05 03:00:00,112.8631288,267.1567331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969833201,4.662764611,-2.266055678,2.266055678,1,0.917672034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063973945,93.66794189,0.063973945,86.33205811,0,0,0,0,0,11,19,0% -2018-11-05 04:00:00,124.6949904,276.5950339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176338143,4.827494037,-1.29162003,1.29162003,1,0.751033724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283427012,106.4648465,0.283427012,73.53515354,0,0.873587739,0,0,0,11,20,0% -2018-11-05 05:00:00,136.2663287,287.9745892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378296095,5.026104743,-0.754187091,0.754187091,1,0.659127278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492602674,119.5117918,0.492602674,60.48820818,0,0.948498318,0,0,0,11,21,0% -2018-11-05 06:00:00,146.9458109,303.7336022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564688222,5.301151408,-0.384946742,0.384946742,1,0.59598346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677257036,132.6296682,0.677257036,47.37033181,0,0.976172786,0,0,0,11,22,0% -2018-11-05 07:00:00,155.247923,328.5031431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709587413,5.73346145,-0.091893856,0.091893856,1,0.545868464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824819123,145.5701575,0.824819123,34.42984255,0,0.989380649,0,0,0,11,23,0% -2018-11-06 08:00:00,158.0832419,4.76064612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759073064,0.083088949,0.16851028,-0.16851028,1,0.501336735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925246872,157.7056106,0.925246872,22.29438941,0,0.995960368,0,0,0,11,0,0% -2018-11-06 09:00:00,153.5897653,38.77530142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680647102,0.676756678,0.424686027,-0.424686027,1,0.457528102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971710731,166.3391517,0.971710731,13.66084827,0,0.998544357,0,0,0,11,1,0% -2018-11-06 10:00:00,144.4930811,60.82813721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.521880011,1.061651272,0.704353259,-0.704353259,1,0.409702188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961058422,163.9578004,0.961058422,16.04219965,0,0.997974026,0,0,0,11,2,0% -2018-11-06 11:00:00,133.5146221,75.19531143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.330269756,1.312405766,1.048914758,-1.048914758,1,0.350778702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89402924,153.3840097,0.89402924,26.61599032,0,0.994073418,0,0,0,11,3,0% -2018-11-06 12:00:00,121.8488455,85.94692539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126663543,1.50005683,1.547819639,-1.547819639,1,0.265460942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775203359,140.8234735,0.775203359,39.17652652,0,0.985500796,0,0,0,11,4,0% -2018-11-06 13:00:00,110.0255866,95.14007034,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920308748,1.660507478,2.483762426,-2.483762426,1,0.105405299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612689569,127.7842314,0.612689569,52.21576858,0,0.968392604,0,0,0,11,5,0% -2018-11-06 14:00:00,98.36343577,103.8906338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716765818,1.813233622,5.646381001,-5.646381001,1,0,#DIV/0!,0,0,0.303346744,1,0.175286988,0,0.94215138,0.980913343,0.724496596,1,0,0,0.04537291,0.312029739,0.879401011,0.603897607,0.961238037,0.922476074,0,0,0,0,0,0,-0.417572666,114.6814343,0.417572666,65.31856568,0,0.930260362,0,0,0,11,6,0% -2018-11-06 15:00:00,86.90915497,112.9566014,11.29969092,76.48172394,7.175852834,7.044656239,0,7.044656239,6.959474395,0.085181843,18.19759929,15.24147996,2.956119326,0.216378439,2.739740887,1.516850904,1.971464607,-13.55369853,13.55369853,0,0,0.635048594,0.05409461,1.739868599,1,0.458866449,0,0.073647158,0.961238037,1,0.536967324,0.812470728,6.689711505,0.148446744,0.115824807,0.099707094,0.724496596,0.448993192,0.990020978,0.951259015,0.039191361,1.686011975,6.728902866,1.834458719,0,8.247676171,-0.199282641,101.495013,0.199282641,78.50498701,0,0.799100074,6.728902866,8.425177356,12.24301294,11,7,82% -2018-11-06 16:00:00,76.62533475,122.9933598,166.7847267,521.8789523,46.06486487,54.85019996,8.917067009,45.93313295,44.67583923,1.25729372,41.82791358,0,41.82791358,1.389025637,40.43888795,1.337364382,2.146639086,-2.531508321,2.531508321,0.963067109,0.963067109,0.276193545,1.223683411,39.35786488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.944116,1.006344346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886554466,37.83227677,43.83067046,38.83862112,8.917067009,0,0.017086466,89.02096997,-0.017086466,90.97903003,0,0,43.83067046,38.83862112,69.24977121,11,8,58% -2018-11-06 17:00:00,67.43044518,134.6453354,335.8452298,705.0952327,65.22636307,224.7305026,158.9392118,65.79129077,63.25954756,2.531743203,83.39637974,0,83.39637974,1.966815506,81.42956423,1.176883285,2.350004425,-1.030275761,1.030275761,0.706341221,0.706341221,0.194215541,1.932667746,62.16123822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.80748331,1.424951139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.400211203,59.75174659,62.20769451,61.17669773,158.9392118,0,0.225415241,76.97270298,-0.225415241,103.027297,0.828187137,0,193.8391053,61.17669773,233.8780304,11,9,21% -2018-11-06 18:00:00,60.07425003,148.4691765,467.7912561,785.0892396,76.12806254,398.8832073,321.5242786,77.35892866,73.83252058,3.526408085,115.7169479,0,115.7169479,2.295541968,113.4214059,1.048493459,2.591275968,-0.347266943,0.347266943,0.589539834,0.589539834,0.162739388,2.314515172,74.44276403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.97062713,1.663112342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676858363,71.55721636,72.6474855,73.2203287,321.5242786,0,0.409538512,65.82415189,-0.409538512,114.1758481,0.92791136,0,370.9935161,73.2203287,418.9147568,11,10,13% -2018-11-06 19:00:00,55.35594565,164.5890514,548.400741,820.4982862,81.96676243,540.405489,456.7762504,83.62923855,79.49516211,4.134076431,135.4377091,0,135.4377091,2.471600312,132.9661088,0.966143512,2.87262086,0.115788278,-0.115788278,0.510352728,0.510352728,0.149465083,2.412390272,77.59076369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41377357,1.790666013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.74776854,74.58319336,78.16154211,76.37385938,456.7762504,0,0.556705917,56.17170536,-0.556705917,123.8282946,0.960185973,0,516.7516907,76.37385938,566.7368542,11,11,10% -2018-11-06 20:00:00,53.99863961,182.1855825,570.8584047,829.0874321,83.51711363,629.8781262,544.5759899,85.30213629,80.99876451,4.303371786,140.9295785,0,140.9295785,2.518349121,138.4112294,0.942454053,3.179738265,0.519706594,-0.519706594,0.441278628,0.441278628,0.146300927,2.250749866,72.39185258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85909338,1.824535366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630660616,69.58580226,79.489754,71.41033763,544.5759899,0,0.65683783,48.9408487,-0.65683783,131.0591513,0.97387771,0,609.8401717,71.41033763,656.5768095,11,12,8% -2018-11-06 21:00:00,56.25264893,199.5465522,533.3758011,814.4685005,80.91265605,655.1468311,572.6531781,82.49365302,78.47284093,4.020812088,131.7629533,0,131.7629533,2.439815116,129.3231382,0.981793937,3.482744347,0.952991669,-0.952991669,0.367182516,0.367182516,0.151699151,1.862361315,59.89994171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43107956,1.767637746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349274433,57.57810237,76.780354,59.34574012,572.6531781,0,0.703100461,45.32371325,-0.703100461,134.6762868,0.978886407,0,637.342766,59.34574012,676.183366,11,13,6% -2018-11-06 22:00:00,61.71399441,215.1162707,438.9532297,770.3328756,73.91317141,608.3394371,533.3460057,74.99343144,71.68441658,3.30901486,108.6580474,0,108.6580474,2.228754829,106.4292926,1.077112397,3.754487198,1.524380867,-1.524380867,0.269469208,0.269469208,0.168385072,1.298721122,41.77133561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.90578787,1.614725286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940919032,40.15219663,69.8467069,41.76692192,533.3460057,0,0.69235784,46.18295666,-0.69235784,133.8170433,0.977783009,0,591.3433691,41.76692192,618.6789841,11,14,5% -2018-11-06 23:00:00,69.60666527,228.3476266,295.8464152,672.756748,61.41557373,482.5432377,420.7493548,61.79388283,59.56366758,2.230215244,73.5832947,0,73.5832947,1.851906147,71.73138855,1.21486549,3.985417924,2.500077926,-2.500077926,0.102615184,0.102615184,0.20759276,0.644322063,20.72361237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.25486289,1.3416997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466809141,19.92032448,57.72167204,21.26202417,420.7493548,0,0.625410828,51.2876525,-0.625410828,128.7123475,0.970052551,0,465.8706572,21.26202417,479.7862268,11,15,3% -2018-11-06 00:00:00,79.15359663,239.5217512,121.7639359,441.094304,38.76022165,262.2044898,223.6951239,38.50936594,37.59145796,0.917907982,30.69183969,0,30.69183969,1.168763693,29.523076,1.381490876,4.180443189,5.132179454,-5.132179454,0,0,0.318322674,0.292190923,9.39786449,0.25788535,1,0.192437798,0,0.939905278,0.978667241,0.724496596,1,36.4137589,0.846765317,0.039314651,0.312029739,0.894566648,0.619063244,0.961238037,0.922476074,0.201644327,9.033584813,36.61540322,9.88035013,166.0074285,0,0.507136732,59.52670359,-0.507136732,120.4732964,0.95140726,0,194.5560759,9.88035013,201.0225675,11,16,3% -2018-11-06 01:00:00,89.45093982,249.2364492,0.31229802,4.240331404,0.271663936,1.75409344,1.488266939,0.2658265,0.263472266,0.002354234,0.083911941,0,0.083911941,0.00819167,0.075720271,1.561213419,4.349996655,104.3399981,-104.3399981,0,0,0.869886836,0.002047918,0.065868067,0.945394092,1,0.009583759,0,0.960381988,0.999143951,0.724496596,1,0.253591693,0.005934837,0.111482281,0.312029739,0.732894134,0.45739073,0.961238037,0.922476074,0.001470098,0.063314891,0.25506179,0.069249728,0.081268167,0,0.350978921,69.45279804,-0.350978921,110.547202,0.907541302,0,0.328816008,0.069249728,0.37413857,11,17,14% -2018-11-06 02:00:00,101.2863592,258.1360371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767780456,4.505323766,-4.960285558,4.960285558,1,0.621587522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148120239,81.48199268,-0.148120239,98.51800732,0.712436407,0,0,0,0,11,18,0% -2018-11-06 03:00:00,113.0243373,266.8842683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97264682,4.658009203,-2.251639865,2.251639865,1,0.915206784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.066329,93.80316393,0.066329,86.19683607,0,0,0,0,0,11,19,0% -2018-11-06 04:00:00,124.8577325,276.2910355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179178528,4.822188263,-1.287205106,1.287205106,1,0.750278727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285451735,106.5858528,0.285451735,73.41414716,0,0.87483904,0,0,0,11,20,0% -2018-11-06 05:00:00,136.4427662,287.6268726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38137551,5.020035945,-0.753088181,0.753088181,1,0.658939353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494324023,119.6251855,0.494324023,60.37481445,0,0.94885177,0,0,0,11,21,0% -2018-11-06 06:00:00,147.1546278,303.3435262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568332765,5.294343297,-0.385419952,0.385419952,1,0.596064383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678722809,132.7439193,0.678722809,47.25608073,0,0.976332224,0,0,0,11,22,0% -2018-11-06 07:00:00,155.5110842,328.1700559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.714180442,5.727647982,-0.093379455,0.093379455,1,0.546122517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826094672,145.6996317,0.826094672,34.30036834,0,0.989474249,0,0,0,11,23,0% -2018-11-07 08:00:00,158.3804423,4.783754747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764260189,0.083492271,0.166136459,-0.166136459,1,0.501742682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926410603,157.8820323,0.926410603,22.11796775,0,0.996028252,0,0,0,11,0,0% -2018-11-07 09:00:00,153.8501305,39.09871493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685191332,0.682401309,0.42128249,-0.42128249,1,0.458110141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972848707,166.6180175,0.972848707,13.38198253,0,0.998604547,0,0,0,11,1,0% -2018-11-07 10:00:00,144.7079455,61.18201087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525630103,1.067827533,0.699464938,-0.699464938,1,0.41053814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962258426,164.2085105,0.962258426,15.79148952,0,0.998038907,0,0,0,11,2,0% -2018-11-07 11:00:00,133.7040221,75.51088119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333575409,1.317913498,1.041457176,-1.041457176,1,0.352054023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895374724,153.5566025,0.895374724,26.44339746,0,0.994157459,0,0,0,11,3,0% -2018-11-07 12:00:00,122.0284479,86.22507811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129798197,1.504911511,1.534899236,-1.534899236,1,0.267670461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776767681,140.9655726,0.776767681,39.03442739,0,0.98563069,0,0,0,11,4,0% -2018-11-07 13:00:00,110.2058146,95.39070031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92345432,1.664881796,2.454613894,-2.454613894,1,0.110389992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614530921,127.9178441,0.614530921,52.08215593,0,0.968637129,0,0,0,11,5,0% -2018-11-07 14:00:00,98.55191651,104.1216999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720055427,1.817266486,5.505132442,-5.505132442,1,0,#DIV/0!,0,0,0.291423089,1,0.17968941,0,0.941581066,0.980343029,0.724496596,1,0,0,0.043806269,0.312029739,0.88329497,0.607791566,0.961238037,0.922476074,0,0,0,0,0,0,-0.419730051,114.8175457,0.419730051,65.18245434,0,0.930875816,0,0,0,11,6,0% -2018-11-07 15:00:00,87.10224316,113.1723237,9.813451987,67.95211578,6.378211626,6.259862958,0,6.259862958,6.185885012,0.073977946,16.27160611,13.69989445,2.571711664,0.192326614,2.37938505,1.520220929,1.97522967,-14.40774205,14.40774205,0,0,0.649945772,0.048081653,1.546471253,1,0.498501193,0,0.069295996,0.961238037,1,0.546853374,0.822356779,5.946107965,0.131747193,0.115824807,0.110866109,0.724496596,0.448993192,0.988758549,0.949996586,0.034834994,1.499024697,5.98094296,1.630771889,0,6.870480722,-0.201611006,101.6311821,0.201611006,78.36881787,0,0.801997667,5.98094296,7.140881397,10.65450702,11,7,78% -2018-11-07 16:00:00,76.84732362,123.192966,162.8164617,515.8251207,45.4421774,52.6691979,7.369890555,45.29930735,44.07192808,1.227379262,40.84698548,0,40.84698548,1.370249312,39.47673617,1.341238819,2.150122873,-2.563892756,2.563892756,0.968605174,0.968605174,0.279100632,1.199600588,38.58327852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.36361363,0.992740962,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869106543,37.0877149,43.23272017,38.08045587,7.369890555,0,0.014287576,89.18135435,-0.014287576,90.81864565,0,0,43.23272017,38.08045587,68.15561693,11,8,58% -2018-11-07 17:00:00,67.67732369,134.8206028,331.37721,701.9458807,64.76250702,221.3554307,156.0476908,65.30773987,62.80967849,2.498061384,82.29906966,0,82.29906966,1.952828535,80.34624113,1.181192127,2.353063418,-1.036195484,1.036195484,0.707353554,0.707353554,0.195434402,1.90988468,61.42845648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37505204,1.414817626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383704949,59.04736891,61.75875699,60.46218654,156.0476908,0,0.222307296,77.15541216,-0.222307296,102.8445878,0.825086104,0,190.5115383,60.46218654,230.0828301,11,9,21% -2018-11-07 18:00:00,60.34622283,148.6014891,463.0942207,782.9735668,75.71198289,394.947297,318.0273099,76.91998711,73.42898726,3.490999848,114.565551,0,114.565551,2.282995632,112.2825553,1.05324028,2.593585259,-0.347135955,0.347135955,0.589517434,0.589517434,0.16349153,2.292287749,73.7278537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58273556,1.654022564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660754671,70.87001735,72.24349023,72.52403991,318.0273099,0,0.406178859,66.03497838,-0.406178859,113.9650216,0.92690152,0,367.0234873,72.52403991,414.4890209,11,10,13% -2018-11-07 19:00:00,55.64652349,164.6513764,543.6089557,818.790108,81.56828933,536.1311212,452.9244628,83.20665838,79.10870445,4.097953929,134.2638699,0,134.2638699,2.459584878,131.804285,0.971215052,2.873708636,0.118639426,-0.118639426,0.509865153,0.509865153,0.150049569,2.390785971,76.89589511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.04229576,1.781960871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732116298,73.91525926,77.77441206,75.69722013,452.9244628,0,0.553163086,56.41571433,-0.553163086,123.5842857,0.959610744,0,512.4055926,75.69722013,561.9479092,11,11,10% -2018-11-07 20:00:00,54.29268337,182.1576658,566.0844499,827.4879469,83.12532244,625.3947083,540.5085373,84.88617097,80.61878727,4.267383699,139.760264,0,139.760264,2.506535171,137.2537288,0.947586085,3.179251026,0.524727514,-0.524727514,0.44042,0.44042,0.146842618,2.230092866,71.72745245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49384481,1.815976199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.61569469,68.94715558,79.1095395,70.76313178,540.5085373,0,0.653192037,49.21729765,-0.653192037,130.7827023,0.973452833,0,605.2691064,70.76313178,651.5821609,11,12,8% -2018-11-07 21:00:00,56.53200269,199.4337816,528.7260457,812.745633,80.52029278,650.5440603,568.4659912,82.07806913,78.09230886,3.985760268,130.6237351,0,130.6237351,2.427983915,128.1957512,0.98666958,3.480776129,0.960826982,-0.960826982,0.365842599,0.365842599,0.152291141,1.843091886,59.28017065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06529766,1.759066082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335313797,56.98235486,76.40061146,58.74142094,568.4659912,0,0.699438998,45.61798795,-0.699438998,134.382012,0.978514138,0,632.6526206,58.74142094,671.0977057,11,13,6% -2018-11-07 22:00:00,61.96675192,214.9448545,434.5329725,768.1654068,73.50763871,603.6557459,529.0889406,74.56680528,71.29111219,3.275693094,107.5740766,0,107.5740766,2.216526521,105.35755,1.081523848,3.751495422,1.537409063,-1.537409063,0.267241256,0.267241256,0.169164697,1.281445133,41.21568042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52772872,1.605865919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.928402637,39.61807973,69.45613136,41.22394565,529.0889406,0,0.688769549,46.46721325,-0.688769549,133.5327867,0.977406779,0,586.5912487,41.22394565,613.5714966,11,14,5% -2018-11-07 23:00:00,69.82995392,228.1434408,291.7823257,669.4234024,60.96010732,477.6902645,416.3687509,61.32151359,59.12193516,2.199578421,72.58417517,0,72.58417517,1.838172155,70.74600301,1.218762612,3.981854209,2.526628316,-2.526628316,0.0980748,0.0980748,0.208923235,0.630196661,20.26929091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83025289,1.331749469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456575336,19.4836134,57.28682823,20.81536287,416.3687509,0,0.62198117,51.53904524,-0.62198117,128.4609548,0.969611714,0,461.0028465,20.81536287,474.6260852,11,15,3% -2018-11-07 00:00:00,79.34981326,239.2997136,118.388596,434.3563682,38.11421552,256.7515118,218.8941172,37.85739454,36.9649313,0.892463244,29.85396999,0,29.85396999,1.149284225,28.70468576,1.384915502,4.176567901,5.22522295,-5.22522295,0,0,0.321941613,0.287321056,9.241232825,0.266546022,1,0.189092942,0,0.940348448,0.979110411,0.724496596,1,35.81083307,0.832652508,0.04048676,0.312029739,0.891609879,0.616106475,0.961238037,0.922476074,0.198119594,8.883024499,36.00895266,9.715677007,160.548761,0,0.503950519,59.73828976,-0.503950519,120.2617102,0.95078391,0,188.6561314,9.715677007,195.0148477,11,16,3% -2018-11-07 01:00:00,89.60229573,249.0014387,0.184509426,3.094253037,0.163031618,1.237799717,1.078293194,0.159506523,0.158115613,0.00139091,0.049652451,0,0.049652451,0.004916005,0.044736447,1.563855078,4.345894947,144.0420981,-144.0420981,0,0,0.883595061,0.001229001,0.039528903,0.960163324,1,0.006942303,0,0.960620147,0.99938211,0.724496596,1,0.152133197,0.003561629,0.112672378,0.312029739,0.730577613,0.455074209,0.961238037,0.922476074,0.000884392,0.037996685,0.153017589,0.041558314,0.042955617,0,0.348482552,69.60547074,-0.348482552,110.3945293,0.906520794,0,0.191957749,0.041558314,0.219156835,11,17,14% -2018-11-07 02:00:00,101.4491093,257.8862275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770620981,4.500963766,-4.890903796,4.890903796,1,0.633452502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145517507,81.63275198,-0.145517507,98.36724802,0.706398732,0,0,0,0,11,18,0% -2018-11-07 03:00:00,113.1797751,266.6131302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975359722,4.653276951,-2.237962697,2.237962697,1,0.912867851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068593467,93.9332046,0.068593467,86.0667954,0,0,0,0,0,11,19,0% -2018-11-07 04:00:00,125.0144002,275.9880262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181912897,4.816899752,-1.283055276,1.283055276,1,0.749569064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287385675,106.7015048,0.287385675,73.29849524,0,0.876017772,0,0,0,11,20,0% -2018-11-07 05:00:00,136.6127355,287.2790949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384342034,5.013966078,-0.752115958,0.752115958,1,0.658773093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495957869,119.7329331,0.495957869,60.26706686,0,0.949184985,0,0,0,11,21,0% -2018-11-07 06:00:00,147.3566517,302.9503852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571858747,5.287481693,-0.385961483,0.385961483,1,0.59615699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680107601,132.8520519,0.680107601,47.14794807,0,0.976482221,0,0,0,11,22,0% -2018-11-07 07:00:00,155.7679692,327.8277618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.718663931,5.721673823,-0.094901996,0.094901996,1,0.546382887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827298552,145.8222259,0.827298552,34.17777412,0,0.989562326,0,0,0,11,23,0% -2018-11-08 08:00:00,158.6733418,4.79750227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769372249,0.08373221,0.16374695,-0.16374695,1,0.502151312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927514126,158.05057,0.927514126,21.94942999,0,0.996092465,0,0,0,11,0,0% -2018-11-08 09:00:00,154.1076268,39.41623763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689685491,0.687943125,0.417882299,-0.417882299,1,0.458691608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973939289,166.8907313,0.973939289,13.10926866,0,0.998662098,0,0,0,11,1,0% -2018-11-08 10:00:00,144.9210389,61.52992984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529349284,1.073899864,0.694603711,-0.694603711,1,0.411369459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963424324,164.4558673,0.963424324,15.54413268,0,0.998101788,0,0,0,11,2,0% -2018-11-08 11:00:00,133.8924635,75.82062915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336864331,1.32331962,1.034068348,-1.034068348,1,0.353317587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896698943,153.7274944,0.896698943,26.2725056,0,0.994239925,0,0,0,11,3,0% -2018-11-08 12:00:00,122.2075799,86.4976609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132924641,1.509668978,1.522151689,-1.522151689,1,0.26985042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778322247,141.1072176,0.778322247,38.89278243,0,0.985759256,0,0,0,11,4,0% -2018-11-08 13:00:00,110.3857984,95.63589358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92659563,1.669161226,2.426066667,-2.426066667,1,0.115271855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616371905,128.0516731,0.616371905,51.9483269,0,0.968880144,0,0,0,11,5,0% -2018-11-08 14:00:00,98.7401604,104.3472843,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723340903,1.821203676,5.370357311,-5.370357311,1,0,#DIV/0!,0,0,0.279659048,1,0.184098909,0,0.941005512,0.979767475,0.724496596,1,0,0,0.04224518,0.312029739,0.887194432,0.611691028,0.961238037,0.922476074,0,0,0,0,0,0,-0.421893684,114.9542015,0.421893684,65.04579845,0,0.93148673,0,0,0,11,6,0% -2018-11-08 15:00:00,87.29415229,113.3823418,8.439336539,59.83516537,5.614614179,5.508932129,0,5.508932129,5.445312846,0.063619284,14.41812363,12.20260744,2.215516184,0.169301333,2.046214851,1.523570375,1.978895178,-15.3781125,15.3781125,0,0,0.665290945,0.042325333,1.361328211,1,0.537029709,0,0.06493606,0.961238037,1,0.556910682,0.832414086,5.23424183,0.115880088,0.115824807,0.122217983,0.724496596,0.448993192,0.98744479,0.948682827,0.03066456,1.319806547,5.26490639,1.435686635,0,5.649444719,-0.203937056,101.7672824,0.203937056,78.23271763,0,0.804826312,5.26490639,5.982508394,9.180338483,11,7,74% -2018-11-08 16:00:00,77.06839825,123.3865123,158.8732056,509.6736216,44.8145099,50.51169781,5.850857397,44.66084041,43.46318708,1.197653332,39.87197089,0,39.87197089,1.351322821,38.52064807,1.345097299,2.153500892,-2.59749532,2.59749532,0.97435155,0.97435155,0.282077206,1.175600215,37.81134401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.77846862,0.979028784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.851718354,36.34570209,42.63018698,37.32473087,5.850857397,0,0.011479616,89.34225201,-0.011479616,90.65774799,0,0,42.63018698,37.32473087,67.05847684,11,8,57% -2018-11-08 17:00:00,67.92259415,134.989463,326.9341038,698.7623891,64.29806568,217.9879319,153.1641228,64.82380913,62.35924176,2.464567372,81.2077825,0,81.2077825,1.938823915,79.26895859,1.185472904,2.356010584,-1.042372746,1.042372746,0.708409928,0.708409928,0.196669803,1.887259445,60.70075117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.94207513,1.404671326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.367313043,58.34787089,61.30938817,59.75254221,153.1641228,0,0.219193427,77.33833648,-0.219193427,102.6616635,0.82189097,0,187.1935977,59.75254221,226.3004415,11,9,21% -2018-11-08 18:00:00,60.61559789,148.7273988,458.4316044,780.8451324,75.29700868,391.0223762,314.539999,76.48237713,73.02652605,3.455851076,113.4225326,0,113.4225326,2.270482628,111.15205,1.057941761,2.595782797,-0.34713706,0.34713706,0.589517623,0.589517623,0.164249166,2.270283389,73.02011783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.19587454,1.644956935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.644812587,70.18971471,71.84068713,71.83467165,314.539999,0,0.402819952,66.2454139,-0.402819952,113.7545861,0.925875066,0,363.0654295,71.83467165,410.0797854,11,10,13% -2018-11-08 19:00:00,55.93337178,164.7081617,538.8640892,817.0787495,81.17203678,531.8779613,449.0913758,82.7865855,78.72440038,4.062185122,133.1014736,0,133.1014736,2.447636402,130.6538372,0.976221499,2.874699726,0.121384589,-0.121384589,0.509395702,0.509395702,0.150635454,2.369464878,76.21013545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67288807,1.773304241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716669238,73.25608099,77.38955731,75.02938523,449.0913758,0,0.549630468,56.65833474,-0.549630468,123.3416653,0.959029788,0,508.0815645,75.02938523,557.1867965,11,11,10% -2018-11-08 20:00:00,54.58203898,182.1260635,561.3711785,825.891535,82.73674906,620.9465251,536.4727412,84.47378387,80.24193081,4.231853068,138.6057598,0,138.6057598,2.49481825,136.1109416,0.952636293,3.178699462,0.529640282,-0.529640282,0.439579867,0.439579867,0.147383322,2.209774003,71.07392797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.13159604,1.80748733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.600973743,68.31896299,78.73256978,70.12645032,536.4727412,0,0.649568035,49.49095855,-0.649568035,130.5090414,0.973025769,0,600.7343713,70.12645032,646.6307305,11,12,8% -2018-11-08 21:00:00,56.80612905,199.3194271,524.1508102,811.0319154,80.13215854,645.9930582,564.3259097,81.66714851,77.7158783,3.951270209,129.5027126,0,129.5027126,2.416280236,127.0864323,0.991453987,3.478780267,0.968534446,-0.968534446,0.364524545,0.364524545,0.152879967,1.82420667,58.67275717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70345829,1.750586806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321631522,56.39848592,76.02508981,58.14907272,564.3259097,0,0.69581221,45.90802474,-0.69581221,134.0919753,0.978141531,0,628.0156992,58.14907272,666.0731043,11,13,6% -2018-11-08 22:00:00,62.21410063,214.7733862,430.2000532,766.0154294,73.10746105,599.0421968,524.8961658,74.14603108,70.90300136,3.243029718,106.5114433,0,106.5114433,2.204459688,104.3069836,1.085840897,3.748502735,1.550269868,-1.550269868,0.265041928,0.265041928,0.169938289,1.264585211,40.67340736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15466183,1.59712354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91618768,39.09682625,69.07084951,40.69394979,524.8961658,0,0.685229234,46.74636225,-0.685229234,133.2536378,0.977031718,0,581.9110521,40.69394979,608.5444283,11,14,5% -2018-11-08 23:00:00,70.04780656,227.9400562,287.8164023,666.1224515,60.51146682,472.9280419,412.0715374,60.85650445,58.68682284,2.169681614,71.60906294,0,71.60906294,1.824643988,69.78441895,1.222564858,3.978304478,2.552964351,-2.552964351,0.093571073,0.093571073,0.210243288,0.61649696,19.82866143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41200637,1.321948358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.446649949,19.06006358,56.85865632,20.38201194,412.0715374,0,0.618612293,51.78513254,-0.618612293,128.2148675,0.969173931,0,456.2276481,20.38201194,469.5672672,11,15,3% -2018-11-08 00:00:00,79.54057511,239.0789022,115.1213556,427.6944252,37.47806514,251.4208447,214.2050481,37.2157966,36.34796319,0.867833406,29.04260744,0,29.04260744,1.130101943,27.9125055,1.388244925,4.172714015,5.318817277,-5.318817277,0,0,0.325552674,0.282525486,9.086990798,0.27505639,1,0.185842248,0,0.940776769,0.979538732,0.724496596,1,35.21670578,0.818755011,0.041630191,0.312029739,0.88873591,0.613232506,0.961238037,0.922476074,0.194663303,8.734761196,35.41136908,9.553516207,155.286581,0,0.500836662,59.94463145,-0.500836662,120.0553686,0.950167053,0,182.9595621,9.553516207,189.2121474,11,16,3% -2018-11-08 01:00:00,89.74750064,248.7678602,0.094826245,2.231845189,0.084990658,0.855537247,0.77239453,0.083142716,0.082427876,0.00071484,0.025554503,0,0.025554503,0.002562782,0.022991721,1.566389382,4.341818234,226.8606195,-226.8606195,0,0,0.896277793,0.000640695,0.020606969,0.974532219,1,0.004407964,0,0.960847063,0.999609026,0.724496596,1,0.079281954,0.001856727,0.11381904,0.312029739,0.728356436,0.452853032,0.961238037,0.922476074,0.000462159,0.019808202,0.079744113,0.021664929,0.019671175,0,0.346078901,69.75233019,-0.346078901,110.2476698,0.905524275,0,0.09755684,0.021664929,0.111736102,11,17,15% -2018-11-08 02:00:00,101.6062414,257.637933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773363454,4.496630209,-4.825729063,4.825729063,1,0.644598037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143002824,81.77835582,-0.143002824,98.22164418,0.700356554,0,0,0,0,11,18,0% -2018-11-08 03:00:00,113.3293954,266.3434667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977971089,4.648570435,-2.225004988,2.225004988,1,0.910651952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.07076663,94.05802111,0.07076663,85.94197889,0,0,0,0,0,11,19,0% -2018-11-08 04:00:00,125.1649499,275.6861987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184540484,4.81163187,-1.279166723,1.279166723,1,0.748904083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289228513,106.8117739,0.289228513,73.18822614,0,0.877126311,0,0,0,11,20,0% -2018-11-08 05:00:00,136.7761853,286.9315146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387194771,5.007899657,-0.75126912,0.75126912,1,0.658628276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497504251,119.8350195,0.497504251,60.16498049,0,0.949498346,0,0,0,11,21,0% -2018-11-08 06:00:00,147.5518003,302.554496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.575264733,5.280572122,-0.386570561,0.386570561,1,0.596261149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681411753,132.9540611,0.681411753,47.04593885,0,0.976622927,0,0,0,11,22,0% -2018-11-08 07:00:00,156.0184407,327.4763737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723035485,5.715540943,-0.096460744,0.096460744,1,0.546649448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828431327,145.9379329,0.828431327,34.06206708,0,0.989644967,0,0,0,11,23,0% -2018-11-09 08:00:00,158.9618264,4.801532429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774407255,0.08380255,0.161342631,-0.161342631,1,0.502562475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928558127,158.2111574,0.928558127,21.78884261,0,0.996153075,0,0,0,11,0,0% -2018-11-09 09:00:00,154.3622046,39.72751907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.69412871,0.693376011,0.414486593,-0.414486593,1,0.459272308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974983185,167.1570969,0.974983185,12.84290315,0,0.998717064,0,0,0,11,1,0% -2018-11-09 10:00:00,145.1323348,61.87164511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533037094,1.079863921,0.689771102,-0.689771102,1,0.412195884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964556735,164.6998516,0.964556735,15.30014835,0,0.998162717,0,0,0,11,2,0% -2018-11-09 11:00:00,134.0799163,76.12438163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340136001,1.3286211,1.026750322,-1.026750322,1,0.354569043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89800233,153.8967123,0.89800233,26.10328769,0,0.994320857,0,0,0,11,3,0% -2018-11-09 12:00:00,122.3861987,86.76454249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136042127,1.51432694,1.50957933,-1.50957933,1,0.27200042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77986722,141.2484198,0.77986722,38.7515802,0,0.985886522,0,0,0,11,4,0% -2018-11-09 13:00:00,110.5654795,95.87554448,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929731655,1.673343923,2.398116561,-2.398116561,1,0.120051605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618212341,128.1857073,0.618212341,51.81429268,0,0.96912164,0,0,0,11,5,0% -2018-11-09 14:00:00,98.92809155,104.5673002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72662092,1.825043679,5.241692503,-5.241692503,1,0,#DIV/0!,0,0,0.268058026,1,0.188512803,0,0.94042506,0.979187024,0.724496596,1,0,0,0.04069051,0.312029739,0.891097005,0.615593601,0.961238037,0.922476074,0,0,0,0,0,0,-0.424063,115.0913688,0.424063,64.90863124,0,0.932092991,0,0,0,11,6,0% -2018-11-09 15:00:00,87.48472199,113.5865877,7.179367049,52.17625035,4.889571417,4.7962539,0,4.7962539,4.742132798,0.054121101,12.64996706,10.76180778,1.88815928,0.147438619,1.740720661,1.526896444,1.982459942,-16.48906226,16.48906226,0,0,0.681058843,0.036859655,1.1855332,1,0.574458924,0,0.060572075,0.961238037,1,0.567128825,0.842632229,4.558318421,0.100902102,0.115824807,0.133752545,0.724496596,0.448993192,0.986079574,0.947317611,0.026704694,1.14947493,4.585023116,1.250377032,0,4.579591264,-0.206258742,101.9031946,0.206258742,78.09680544,0,0.807586033,4.585023116,4.948790972,7.823907831,11,7,71% -2018-11-09 16:00:00,77.28844718,123.573954,154.9574491,503.4262853,44.18206853,48.379617,4.361666149,44.01795085,42.84981615,1.168134705,38.90347994,0,38.90347994,1.332252381,37.57122756,1.348937877,2.156772367,-2.632355642,2.632355642,0.980313017,0.980313017,0.285123876,1.151694664,37.04245933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.18887315,0.965212315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.834398864,35.60662089,42.02327202,36.5718332,4.361666149,0,0.008663962,89.50358534,-0.008663962,90.49641466,0,0,42.02327202,36.5718332,65.95880541,11,8,57% -2018-11-09 17:00:00,68.16613229,135.1519042,322.5184776,695.5463214,63.83325355,214.6301458,150.2904198,64.33972596,61.90844544,2.431280517,80.123147,0,80.123147,1.924808114,78.19833889,1.189723447,2.358845719,-1.048811435,1.048811435,0.709511008,0.709511008,0.197921229,1.864804183,59.97851274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50875256,1.394516927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351044282,57.65362784,60.85979684,59.04814477,150.2904198,0,0.216075357,77.52137622,-0.216075357,102.4786238,0.818599249,0,183.8874216,59.04814477,222.5332514,11,9,21% -2018-11-09 18:00:00,60.88224568,148.8469332,453.8061555,778.7053846,74.8833544,387.1109497,311.0646222,76.04632746,72.62534497,3.420982489,112.2885658,0,112.2885658,2.258009425,110.0305564,1.062595643,2.597869066,-0.347273187,0.347273187,0.589540902,0.589540902,0.165011764,2.248514231,72.31994688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81024403,1.635920142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629040906,69.51668376,71.43928493,71.1526039,311.0646222,0,0.399463813,66.45533688,-0.399463813,113.5446631,0.924832217,0,359.121869,71.1526039,405.6898252,11,10,13% -2018-11-09 19:00:00,56.21636677,164.759464,534.1689715,815.365617,80.778219,527.6488125,445.2795635,82.369249,78.34245766,4.026791341,131.9512129,0,131.9512129,2.435761343,129.5154515,0.981160694,2.875595121,0.124019936,-0.124019936,0.508945031,0.508945031,0.151222222,2.348438623,75.53385883,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.3057502,1.764700801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701435788,72.60601817,77.00718599,74.37071898,445.2795635,0,0.546110302,56.8994295,-0.546110302,123.1005705,0.958443405,0,503.7824468,74.37071898,552.456595,11,11,10% -2018-11-09 20:00:00,54.86659469,182.0908335,556.7213818,824.2996963,82.35161019,616.536582,532.4713758,84.06520623,79.8684053,4.196800936,137.4667494,0,137.4667494,2.483204892,134.9835445,0.957602727,3.178084583,0.534439441,-0.534439441,0.438759162,0.438759162,0.147922485,2.189803862,70.43161961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.77254911,1.799073491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586505444,67.70155177,78.35905456,69.50062526,532.4713758,0,0.645968181,49.76169474,-0.645968181,130.2383053,0.972596807,0,596.2390143,69.50062526,641.7257836,11,12,8% -2018-11-09 21:00:00,57.0749265,199.203535,519.6527236,809.3291475,79.74847916,641.4969516,560.2358216,81.26113,77.34376827,3.917361733,128.4005301,0,128.4005301,2.404710887,125.9958192,0.996145388,3.476757568,0.976105567,-0.976105567,0.363229807,0.363229807,0.15346495,1.805714599,58.07798861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.34577197,1.742204852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30823408,55.82677175,75.65400605,57.5689766,560.2358216,0,0.69222247,46.19370486,-0.69222247,133.8062951,0.977768886,0,623.4351614,57.5689766,661.1129052,11,13,6% -2018-11-09 22:00:00,62.45594712,214.6019122,425.9568083,763.8854652,72.71289303,594.5020202,520.7706468,73.73137337,70.52033103,3.211042346,105.4707217,0,105.4707217,2.192562007,103.2781597,1.090061915,3.745509949,1.562947879,-1.562947879,0.262873861,0.262873861,0.17070485,1.248147791,40.14472342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78682455,1.58850371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904278825,38.58863513,68.69110338,40.17713884,520.7706468,0,0.681739175,47.02030175,-0.681739175,132.9796982,0.976658168,0,577.3060093,40.17713884,603.6011431,11,14,5% -2018-11-09 23:00:00,70.2601391,227.7375318,283.950507,662.8583162,60.07000366,468.2600976,407.8608874,60.39921028,58.25867142,2.140538863,70.65842014,0,70.65842014,1.811332245,68.8470879,1.22627076,3.974769759,2.579049183,-2.579049183,0.089110304,0.089110304,0.211550965,0.603225038,19.4017908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.00045094,1.312304046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437034487,18.6497393,56.43748543,19.96204335,407.8608874,0,0.615306284,52.0258212,-0.615306284,127.9741788,0.968739656,0,451.5485014,19.96204335,464.6132595,11,15,3% -2018-11-09 00:00:00,79.7258104,238.8593934,111.9629661,421.1194061,36.85253839,246.2172741,209.6319516,36.58532252,35.74129839,0.844024132,28.25795739,0,28.25795739,1.111240004,27.14671739,1.39147789,4.168882865,5.412811921,-5.412811921,0,0,0.329149358,0.277810001,8.935324596,0.283406684,1,0.182686991,0,0.941190274,0.979952237,0.724496596,1,34.63213287,0.8050896,0.042744167,0.312029739,0.885945911,0.610442507,0.961238037,0.922476074,0.191278301,8.588973874,34.82341118,9.394063474,150.2208554,0,0.49779694,60.14564657,-0.49779694,119.8543534,0.949557438,0,177.4667418,9.394063474,183.6149684,11,16,3% -2018-11-09 01:00:00,89.88677297,248.53581,0.03418755,1.593142132,0.031039209,0.578027181,0.547666198,0.030360982,0.030103262,0.00025772,0.009225114,0,0.009225114,0.000935947,0.008289167,1.568820142,4.337768194,505.8597669,-505.8597669,0,0,0.907909732,0.000233987,0.007525816,0.988502702,1,0.00197683,0,0.961063279,0.999825243,0.724496596,1,0.028944556,0.00067809,0.114923487,0.312029739,0.726227055,0.450723651,0.961238037,0.922476074,0.000169186,0.0072341,0.029113742,0.00791219,0.006296681,0,0.343764808,69.89358674,-0.343764808,110.1064133,0.90455172,0,0.034809416,0.00791219,0.039987786,11,17,15% -2018-11-09 02:00:00,101.757703,257.3912728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776006957,4.492325177,-4.764524297,4.764524297,1,0.655064669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.140577273,81.91874807,-0.140577273,98.08125193,0.694323732,0,0,0,0,11,18,0% -2018-11-09 03:00:00,113.4731539,266.0754282,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980480148,4.64389228,-2.212748781,2.212748781,1,0.908556017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072847813,94.17757271,0.072847813,85.82242729,0,0,0,0,0,11,19,0% -2018-11-09 04:00:00,125.309341,275.3857496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187060584,4.806388044,-1.275535831,1.275535831,1,0.748283163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290979967,106.9166343,0.290979967,73.08336566,0,0.878166865,0,0,0,11,20,0% -2018-11-09 05:00:00,136.9330684,286.584397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389932899,5.001841313,-0.750546413,0.750546413,1,0.658504685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498963249,119.9314328,0.498963249,60.06856722,0,0.949792219,0,0,0,11,21,0% -2018-11-09 06:00:00,147.7399959,302.1561917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.578549365,5.2736204,-0.387246414,0.387246414,1,0.596376727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682635641,133.0499462,0.682635641,46.9500538,0,0.976754484,0,0,0,11,22,0% -2018-11-09 07:00:00,156.2623635,327.1160332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72729274,5.709251816,-0.098054952,0.098054952,1,0.546922074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829493585,146.046752,0.829493585,33.95324799,0,0.989722258,0,0,0,11,23,0% -2018-11-10 08:00:00,159.2457806,4.795485242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779363191,0.083697007,0.158924396,-0.158924396,1,0.502976017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929543314,158.3637376,0.929543314,21.63626238,0,0.996210145,0,0,0,11,0,0% -2018-11-10 09:00:00,154.6138139,40.03219849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698520122,0.69869367,0.411096524,-0.411096524,1,0.459852044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975981116,167.4169138,0.975981116,12.58308615,0,0.998769501,0,0,0,11,1,0% -2018-11-10 10:00:00,145.3418067,62.20690352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536693067,1.085715284,0.684968646,-0.684968646,1,0.413017152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965656289,164.9404469,0.965656289,15.05955306,0,0.998221742,0,0,0,11,2,0% -2018-11-10 11:00:00,134.2663501,76.42196324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343389884,1.333814879,1.019505147,-1.019505147,1,0.355808041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899285323,154.0642846,0.899285323,25.93571544,0,0.994400294,0,0,0,11,3,0% -2018-11-10 12:00:00,122.5642608,87.02559095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139149897,1.518883096,1.497184447,-1.497184447,1,0.27412007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781402757,141.3891905,0.781402757,38.61080946,0,0.986012511,0,0,0,11,4,0% -2018-11-10 13:00:00,110.7447982,96.10954728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932861358,1.677428043,2.370759381,-2.370759381,1,0.124729958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62005204,128.3199348,0.62005204,51.68006519,0,0.969361607,0,0,0,11,5,0% -2018-11-10 14:00:00,99.1156332,104.7816614,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72989414,1.828784987,5.11880218,-5.11880218,1,0,#DIV/0!,0,0,0.256623322,1,0.192928336,0,0.939840078,0.978602041,0.724496596,1,0,0,0.039143132,0.312029739,0.895000233,0.619496828,0.961238037,0.922476074,0,0,0,0,0,0,-0.426237418,115.2290131,0.426237418,64.77098689,0,0.932694485,0,0,0,11,6,0% -2018-11-10 15:00:00,87.67378549,113.7849942,6.034664027,45.01732134,4.207458259,4.126079715,0,4.126079715,4.080587869,0.045491846,10.97948341,9.389438857,1.590044551,0.12687039,1.46317416,1.530196225,1.985922788,-17.77199361,17.77199361,0,0,0.697214997,0.031717598,1.020146967,1,0.610795534,0,0.056209036,0.961238037,1,0.577496069,0.852999473,3.922416272,0.086871103,0.115824807,0.145458028,0.724496596,0.448993192,0.984663076,0.945901113,0.022979291,0.989110777,3.945395564,1.07598188,0,3.654411535,-0.208573913,102.038793,0.208573913,77.96120702,0,0.810276828,3.945395564,4.037066867,6.587575087,11,7,67% -2018-11-10 16:00:00,77.50735864,123.7552478,151.0716818,497.0852272,43.54507667,46.27484876,2.903974658,43.3708741,42.23203195,1.138842151,37.94212304,0,37.94212304,1.313044726,36.62907831,1.352758603,2.15993654,-2.668514135,2.668514135,0.986496483,0.986496483,0.288241159,1.127896457,36.27702717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,40.59503548,0.951296434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817157143,34.87085838,41.41219262,35.82215481,2.903974658,0,0.005842006,89.66527583,-0.005842006,90.33472417,0,0,41.41219262,35.82215481,64.85707651,11,8,57% -2018-11-10 17:00:00,68.40781404,135.3079157,318.1328982,692.2993654,63.3682924,211.2842146,147.4284899,63.85572475,61.45750458,2.398220167,79.04579221,0,79.04579221,1.91078782,77.13500439,1.193941589,2.361568633,-1.055515281,1.055515281,0.710657433,0.710657433,0.199188115,1.842531052,59.26213228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.07529105,1.384359271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334907475,56.96501569,60.41019853,58.34937496,147.4284899,0,0.212954825,77.70443105,-0.212954825,102.295569,0.815208419,0,180.5951446,58.34937496,218.7836435,11,9,21% -2018-11-10 18:00:00,61.14603729,148.96012,449.2206213,776.5558507,74.47123882,383.2155304,307.6034594,75.612071,72.2256562,3.386414795,111.1643231,0,111.1643231,2.24558262,108.9187405,1.067199675,2.599844549,-0.347547252,0.347547252,0.58958777,0.58958777,0.165778763,2.22699239,71.6277305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.42604798,1.626916964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.613448406,68.85129905,71.03949638,70.47821601,307.6034594,0,0.396112474,66.66462569,-0.396112474,113.3353743,0.923773225,0,355.1953362,70.47821601,401.3219191,11,10,13% -2018-11-10 19:00:00,56.49538546,164.8053392,529.5264266,813.6521773,80.38705313,523.4464845,441.4916038,81.95488076,77.96308688,3.991793876,130.813779,0,130.813779,2.423966249,128.3898128,0.986030488,2.876395795,0.126541582,-0.126541582,0.508513805,0.508513805,0.151809332,2.327718778,74.86743739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94108458,1.756155296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.686424331,71.96542854,76.62750891,73.72158384,441.4916038,0,0.542604833,57.13886222,-0.542604833,122.8611378,0.957851908,0,499.511084,73.72158384,547.7603862,11,11,10% -2018-11-10 20:00:00,55.14623936,182.052033,552.1378391,822.7139837,81.97012476,612.1678878,528.5072165,83.66067131,79.49842306,4.162248255,136.3439132,0,136.3439132,2.471701699,133.8722115,0.962483447,3.177407386,0.539119422,-0.539119422,0.437958839,0.437958839,0.148459531,2.170192935,69.80086479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41690811,1.790739467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.572297394,67.09524624,77.98920551,68.88598571,528.5072165,0,0.642394838,50.02937076,-0.642394838,129.9706292,0.972166249,0,591.7860836,68.88598571,636.8705835,11,12,8% -2018-11-10 21:00:00,57.33829405,199.0861516,515.234396,807.6391838,79.36948241,637.0588652,556.1986111,80.86025419,76.97619968,3.884054513,127.3178272,0,127.3178272,2.393282737,124.9245445,1.000742019,3.474708841,0.983531651,-0.983531651,0.361959871,0.361959871,0.154045388,1.787624479,57.49614815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.99245106,1.733925196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295127849,55.26748457,75.28757891,57.00140977,556.1986111,0,0.688672147,46.47491047,-0.688672147,133.5250895,0.977396512,0,618.9141613,57.00140977,656.220444,11,13,6% -2018-11-10 22:00:00,62.69219863,214.4304795,421.8055474,761.778105,72.32419169,590.0384399,516.715341,73.32309885,70.14335047,3.179748388,104.4524797,0,104.4524797,2.180841227,102.2716385,1.094185281,3.742517884,1.575427259,-1.575427259,0.260739761,0.260739761,0.171463349,1.232139137,39.62983008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4244565,1.580012045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.89268061,38.09370007,68.31713711,39.67371212,516.715341,0,0.678301644,47.28893035,-0.678301644,132.7110696,0.976286483,0,572.7793399,39.67371212,598.744991,11,14,5% -2018-11-10 23:00:00,70.46686832,227.5359275,280.1864635,659.6355345,59.63607424,463.6899532,403.7399627,59.94999048,57.83782657,2.112163913,69.73269963,0,69.73269963,1.798247672,67.93445196,1.229878866,3.971251101,2.604844485,-2.604844485,0.084699048,0.084699048,0.212844238,0.590382723,18.98873781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.59591887,1.302824317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427730273,18.25269706,56.02364914,19.55552137,403.7399627,0,0.612065211,52.26101856,-0.612065211,127.7389814,0.968309358,0,446.9688332,19.55552137,459.7675309,11,15,3% -2018-11-10 00:00:00,79.90544863,238.6412649,108.9140835,414.6424406,36.23841653,241.1455433,205.1788084,35.96673493,35.14569457,0.821040367,27.50020248,0,27.50020248,1.092721964,26.40748051,1.394613169,4.165075804,5.507041976,-5.507041976,0,0,0.332724799,0.273180491,8.786423642,0.291587006,1,0.179628435,0,0.941588995,0.980350958,0.724496596,1,34.05788166,0.791673343,0.043827912,0.312029739,0.883241043,0.607737639,0.961238037,0.922476074,0.187967533,8.445844612,34.24584919,9.237517956,145.351334,0,0.49483311,60.34125398,-0.49483311,119.658746,0.948955832,0,172.1778452,9.237517956,178.223616,11,16,4% -2018-11-10 01:00:00,90.02040336,248.3053851,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571152433,4.333746521,-2806.926116,2806.926116,1,0,#DIV/0!,0,0,1,0.99791468,0,0.000356262,0.961238037,1,0.72348686,0.998990265,0,0,0.115824807,0.310882218,0.724496596,0.448993192,0.961419519,0.922657555,0,0,0,0,0,0,0.341535907,70.02952252,-0.341535907,109.9704775,0.903602509,0,0,0,0,11,17,0% -2018-11-10 02:00:00,101.9034433,257.1463675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778550605,4.488050772,-4.707074303,4.707074303,1,0.664889196,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.138241913,82.0538739,-0.138241913,97.9461261,0.688315191,0,0,0,0,11,18,0% -2018-11-10 03:00:00,113.6110086,265.8091665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982886166,4.639245137,-2.201177328,2.201177328,1,0.906577182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074836365,94.2918203,0.074836365,85.7081797,0,0,0,0,0,11,19,0% -2018-11-10 04:00:00,125.4475359,275.0868777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189472539,4.801171744,-1.2721592,1.2721592,1,0.747705725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292639787,107.0160625,0.292639787,72.98393749,0,0.879141483,0,0,0,11,20,0% -2018-11-10 05:00:00,137.0833415,286.2380133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392555659,4.995795776,-0.749946634,0.749946634,1,0.658402117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50033497,120.0221639,0.50033497,59.9778361,0,0.950066949,0,0,0,11,21,0% -2018-11-10 06:00:00,147.9211651,301.7558207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581711365,5.266632608,-0.387988283,0.387988283,1,0.596503594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683779667,133.1397103,0.683779667,46.86028968,0,0.97687703,0,0,0,11,22,0% -2018-11-10 07:00:00,156.499604,326.746911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731433368,5.702809417,-0.099683869,0.099683869,1,0.547200635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830485943,146.1486885,0.830485943,33.85131154,0,0.989794285,0,0,0,11,23,0% -2018-11-11 08:00:00,159.5250874,4.778996563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.784238015,0.083409225,0.156493144,-0.156493144,1,0.503391786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930470418,158.5082637,0.930470418,21.49173632,0,0.99626374,0,0,0,11,0,0% -2018-11-11 09:00:00,154.8624054,40.32990424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.702858861,0.703889616,0.407713251,-0.407713251,1,0.460430617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97693382,167.6699789,0.97693382,12.33002106,0,0.99881946,0,0,0,11,1,0% -2018-11-11 10:00:00,145.549428,62.53544767,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540316744,1.091449461,0.68019788,-0.68019788,1,0.413833001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966723625,165.1776399,0.966723625,14.82236012,0,0.99827891,0,0,0,11,2,0% -2018-11-11 11:00:00,134.4517342,76.71319699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346625447,1.338897867,1.012334848,-1.012334848,1,0.357034235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900548364,154.2302411,0.900548364,25.76975889,0,0.994478273,0,0,0,11,3,0% -2018-11-11 12:00:00,122.7417223,87.28067374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142247184,1.52333513,1.484969259,-1.484969259,1,0.27620899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782929018,141.5295414,0.782929018,38.47045865,0,0.98613725,0,0,0,11,4,0% -2018-11-11 13:00:00,110.9236947,96.33779626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935983691,1.681411739,2.343990858,-2.343990858,1,0.129307645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621890812,128.4543434,0.621890812,51.54565657,0,0.969600034,0,0,0,11,5,0% -2018-11-11 14:00:00,99.30270833,104.9902819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733159217,1.832426102,5.001374999,-5.001374999,1,0,#DIV/0!,0,0,0.245358089,1,0.197342689,0,0.939250947,0.978012911,0.724496596,1,0,0,0.037603923,0.312029739,0.89890161,0.623398206,0.961238037,0.922476074,0,0,0,0,0,0,-0.428416356,115.3671,0.428416356,64.63289997,0,0.933291104,0,0,0,11,6,0% -2018-11-11 15:00:00,87.86117014,113.9774946,5.005310148,38.39525389,3.572362643,3.502374871,0,3.502374871,3.464642729,0.037732142,9.418118518,8.096803209,1.321315309,0.107719914,1.213595395,1.533466704,1.989282555,-19.26829815,19.26829815,0,0,0.713714543,0.026929979,0.866160682,1,0.646046108,0,0.051852199,0.961238037,1,0.587999361,0.863502765,3.330346375,0.073843602,0.115824807,0.157321021,0.724496596,0.448993192,0.9831958,0.944433837,0.019510678,0.839721865,3.349857053,0.913565468,0,2.86589501,-0.210880314,102.1739459,0.210880314,77.82605411,0,0.812898684,3.349857053,3.24324775,5.472497841,11,7,63% -2018-11-11 16:00:00,77.72502119,123.9303512,147.2183797,490.6528488,42.90377451,44.19925083,1.479389092,42.71986174,41.61006741,1.109794332,36.9885077,0,36.9885077,1.2937071,35.6948006,1.356557531,2.162992672,-2.706012043,2.706012043,0.992909003,0.992909003,0.291429471,1.104218202,35.5154531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.99717951,0.93728639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800002328,34.13880441,40.79718184,35.0760908,1.479389092,0,0.003015144,89.8272447,-0.003015144,90.1727553,0,0,40.79718184,35.0760908,63.75378175,11,8,56% -2018-11-11 17:00:00,68.64751607,135.4574873,313.7799215,689.0233298,62.90341046,207.9522726,144.5802265,63.37204614,61.00664055,2.365405589,77.97634469,0,77.97634469,1.896769914,76.07957478,1.198125179,2.364179149,-1.062487858,1.062487858,0.711849814,0.711849814,0.200469839,1.82045218,58.55199988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64190339,1.374203346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318911408,56.28240942,59.9608148,57.65661276,144.5802265,0,0.209833572,77.88740068,-0.209833572,102.1125993,0.811715918,0,177.3188861,57.65661276,215.053986,11,9,21% -2018-11-11 18:00:00,61.40684493,149.0669868,444.6777369,774.398134,74.06088436,379.3386285,304.1587845,75.17984405,71.82767544,3.352168614,110.0504745,0,110.0504745,2.233208919,107.8172656,1.071751627,2.601709725,-0.347962162,0.347962162,0.589658724,0.589658724,0.166549567,2.205729916,70.94385626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04349373,1.61795226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598043816,68.19393312,70.64153755,69.81188538,304.1587845,0,0.392767972,66.8731593,-0.392767972,113.1268407,0.922698378,0,351.2883545,69.81188538,396.9788373,11,10,13% -2018-11-11 19:00:00,56.77030602,164.8458418,524.9392632,811.9399545,79.99875863,519.2737839,437.7300691,81.54371479,77.58650089,3.957213901,129.6898596,0,129.6898596,2.412257737,127.2776019,0.990828757,2.877102698,0.128945583,-0.128945583,0.508102696,0.508102696,0.152396218,2.307316822,74.21124034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.5790958,1.747672519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.671643183,71.33466697,76.25073898,73.08233949,437.7300691,0,0.539116306,57.37649778,-0.539116306,122.6235022,0.957255634,0,495.2703138,73.08233949,543.1012434,11,11,10% -2018-11-11 20:00:00,55.42086278,182.0097177,547.6233101,821.1360005,81.59251334,607.8434444,524.5830305,83.26041385,79.13219802,4.128215829,135.237927,0,135.237927,2.460315321,132.7776117,0.96727653,3.176668845,0.543674546,-0.543674546,0.437179866,0.437179866,0.148993865,2.150951594,69.18199712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.06487867,1.782490075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.558357108,66.50036709,77.62323578,68.28285717,524.5830305,0,0.638850361,50.29385285,-0.638850361,129.7061472,0.971734411,0,587.3786178,68.28285717,632.0683822,11,12,8% -2018-11-11 21:00:00,57.59613147,198.9673228,510.8984126,805.9639305,78.99539754,632.6819136,552.2171507,80.46476288,76.61339485,3.851368038,126.2552378,0,126.2552378,2.382002698,123.8732351,1.005242131,3.472634887,0.990803812,-0.990803812,0.360716259,0.360716259,0.154620558,1.769944969,56.92751434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.64370926,1.725752846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282319105,54.72089213,74.92602836,56.44664497,552.2171507,0,0.685163603,46.75152503,-0.685163603,133.248475,0.977024728,0,614.45584,56.44664497,651.3990403,11,13,6% -2018-11-11 22:00:00,62.92276317,214.2591355,417.7485491,759.696004,71.94161594,585.6546663,512.7331905,72.92147581,69.77231079,3.14916502,103.4572774,0,103.4572774,2.169305157,101.2879722,1.098209392,3.739527368,1.58769176,-1.58769176,0.258642408,0.258642408,0.172212725,1.216565336,39.12892312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.06779905,1.571654202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881397444,37.61220924,67.94919649,39.18386344,512.7331905,0,0.674918899,47.55214745,-0.674918899,132.4478526,0.975917025,0,568.3342463,39.18386344,593.9793013,11,14,5% -2018-11-11 23:00:00,70.66791198,227.3353039,276.5260537,656.4587516,59.21003922,459.2211168,399.7119085,59.50920827,57.42463807,2.084570198,68.83234438,0,68.83234438,1.785401144,67.04694323,1.23338774,3.967749558,2.630310497,-2.630310497,0.080344103,0.080344103,0.214121015,0.577971596,18.58955328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.19874637,1.293517051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.418738453,17.8689857,55.61748482,19.16250275,399.7119085,0,0.608891126,52.49063272,-0.608891126,127.5093673,0.967883513,0,442.4920512,19.16250275,455.0335259,11,15,3% -2018-11-11 00:00:00,80.07942068,238.4245948,105.9752683,408.2748172,35.63649153,236.2103383,200.8495321,35.36080617,34.56191983,0.798886336,26.76950243,0,26.76950243,1.074571704,25.69493073,1.397649554,4.161294197,5.601327795,-5.601327795,0,0,0.336271775,0.268642926,8.640479957,0.299587348,1,0.176667834,0,0.941972963,0.980734926,0.724496596,1,33.49472835,0.778523542,0.04488065,0.312029739,0.880622454,0.60511905,0.961238037,0.922476074,0.184734023,8.305557992,33.67946237,9.084081534,140.6775534,0,0.491946904,60.53137358,-0.491946904,119.4686264,0.948363015,0,167.0928511,9.084081534,173.0382008,11,16,4% -2018-11-11 01:00:00,90.14875295,248.0766834,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573392556,4.329754922,-384.9562061,384.9562061,1,0,#DIV/0!,0,0,1,0.984700483,0,0.002597692,0.961238037,1,0.717156768,0.992660172,0,0,0.115824807,0.303688798,0.724496596,0.448993192,0.962551047,0.923789084,0,0,0,0,0,0,0.339386657,70.1604897,-0.339386657,109.8395103,0.90267541,0,0,0,0,11,17,0% -2018-11-11 02:00:00,102.0434134,256.9033381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780993545,4.48380911,-4.653183566,4.653183566,1,0.674105055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135997773,82.18367979,-0.135997773,97.81632021,0.682346921,0,0,0,0,11,18,0% -2018-11-11 03:00:00,113.7429199,265.5448346,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985188453,4.634631675,-2.190275033,2.190275033,1,0.90471278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076731669,94.40072642,0.076731669,85.59927358,0,0,0,0,0,11,19,0% -2018-11-11 04:00:00,125.5795001,274.7897837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191775749,4.795986476,-1.269033644,1.269033644,1,0.747171224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294207751,107.1100368,0.294207751,72.88996324,0,0.880052064,0,0,0,11,20,0% -2018-11-11 05:00:00,137.2269653,285.8926389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395062368,4.989767856,-0.749468642,0.749468642,1,0.658320376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50161955,120.1072065,0.50161955,59.89279348,0,0.950322864,0,0,0,11,21,0% -2018-11-11 06:00:00,148.0952397,301.3537452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584749539,5.259615067,-0.388795427,0.388795427,1,0.596641623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684844263,133.2233605,0.684844263,46.77663949,0,0.9769907,0,0,0,11,22,0% -2018-11-11 07:00:00,156.7300312,326.3692066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735455081,5.696217232,-0.10134675,0.10134675,1,0.547485005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831409039,146.2437536,0.831409039,33.75624642,0,0.98986113,0,0,0,11,23,0% -2018-11-12 08:00:00,159.7996288,4.751698732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789029666,0.082932788,0.154049777,-0.154049777,1,0.503809626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931340187,158.6446987,0.931340187,21.35530128,0,0.996313924,0,0,0,11,0,0% -2018-11-12 09:00:00,155.10793,40.62025392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.707144074,0.708957174,0.404337932,-0.404337932,1,0.461007831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97784205,167.9160861,0.97784205,12.08391387,0,0.998866997,0,0,0,11,1,0% -2018-11-12 10:00:00,145.7551732,62.85701629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543907674,1.097061892,0.675460328,-0.675460328,1,0.41464317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967759396,165.4114207,0.967759396,14.58857925,0,0.998334266,0,0,0,11,2,0% -2018-11-12 11:00:00,134.6360382,76.99790457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349842158,1.343866952,1.005241418,-1.005241418,1,0.358247283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901791903,154.3946138,0.901791903,25.60538619,0,0.994554836,0,0,0,11,3,0% -2018-11-12 12:00:00,122.9185393,87.52965804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145333223,1.527680726,1.47293589,-1.47293589,1,0.278266818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784446165,141.6694843,0.784446165,38.33051574,0,0.986260763,0,0,0,11,4,0% -2018-11-12 13:00:00,111.102109,96.56018599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939097609,1.685293172,2.317806619,-2.317806619,1,0.133785414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623728467,128.588921,0.623728467,51.41107898,0,0.969836912,0,0,0,11,5,0% -2018-11-12 14:00:00,99.48923991,105.1930767,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736414807,1.835965539,4.889121808,-4.889121808,1,0,#DIV/0!,0,0,0.234265329,1,0.201752991,0,0.938658072,0.977420035,0.724496596,1,0,0,0.03607376,0.312029739,0.902798592,0.627295187,0.961238037,0.922476074,0,0,0,0,0,0,-0.430599229,115.5055947,0.430599229,64.49440527,0,0.933882746,0,0,0,11,6,0% -2018-11-12 15:00:00,88.04669791,114.1640237,4.090226735,32.34012744,2.987915128,2.92865232,0,2.92865232,2.897818463,0.030833857,7.975945677,6.894126185,1.081819492,0.090096665,0.991722827,1.536704774,1.992538102,-21.03366469,21.03366469,0,0,0.7305011,0.022524166,0.724454616,1,0.680217165,0,0.04750706,0.961238037,1,0.598624322,0.874127726,2.78549333,0.061871685,0.115824807,0.169326442,0.724496596,0.448993192,0.981678611,0.942916648,0.016318682,0.702201689,2.801812012,0.764073374,0,2.204623214,-0.213175604,102.3085159,0.213175604,77.69148405,0,0.815451585,2.801812012,2.561836867,4.478483005,11,7,60% -2018-11-12 16:00:00,77.941324,124.0992231,143.3999962,484.1318424,42.25841909,42.15463755,0.089455969,42.06518158,40.98417184,1.081009744,36.04323655,0,36.04323655,1.274247253,34.7689893,1.360332727,2.165940042,-2.744891423,2.744891423,0.999557769,0.999557769,0.294689123,1.080672565,34.75814448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.39554488,0.923187797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782943595,33.41085057,40.17848848,34.33403837,0.089455969,0,0.000184776,89.98941311,-0.000184776,90.01058689,0,0,40.17848848,34.33403837,62.64942991,11,8,56% -2018-11-12 17:00:00,68.88511619,135.6006096,309.4620842,685.7201435,62.43884207,204.6364389,141.7475024,62.88893651,60.5560806,2.332855908,76.91542661,0,76.91542661,1.882761463,75.03266515,1.202272083,2.366677105,-1.069732575,1.069732575,0.713088734,0.713088734,0.201765726,1.798579635,57.84850363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20880804,1.364054271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303064823,55.60618206,59.51187286,56.97023634,141.7475024,0,0.206713342,78.07018514,-0.206713342,101.9298149,0.808119144,0,174.0607432,56.97023634,211.3466234,11,9,21% -2018-11-12 18:00:00,61.66454231,149.1675607,440.1802186,772.2339121,73.65251656,375.482744,300.7328582,74.74988585,71.43162143,3.31826442,108.9476853,0,108.9476853,2.220895123,106.7267902,1.076249295,2.603465072,-0.348520808,0.348520808,0.589754258,0.589754258,0.167323549,2.184738763,70.2687086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.66279156,1.609030956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582835797,67.54495551,70.24562735,69.15398647,300.7328582,0,0.389432338,67.08081755,-0.389432338,112.9191825,0.921607992,0,347.4034328,69.15398647,392.6633339,11,10,13% -2018-11-12 19:00:00,57.04100817,164.881025,520.4102677,810.2305275,79.61355675,515.1335061,433.9975194,81.13598669,77.21291427,3.92307242,128.580137,0,128.580137,2.400642479,126.1794945,0.995553401,2.877716761,0.131227946,-0.131227946,0.507712389,0.507712389,0.152982294,2.287244109,73.56563288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.21999013,1.739257304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657100571,70.71408453,75.8770907,72.45334183,433.9975194,0,0.535646961,57.61220267,-0.535646961,122.3877973,0.956654936,0,491.0629597,72.45334183,538.4822229,11,11,10% -2018-11-12 20:00:00,55.69035604,181.9639421,543.1805274,819.5673973,81.21899765,603.5662397,520.7015702,82.86466946,78.7699452,4.094724256,134.14946,0,134.14946,2.449052445,131.7004076,0.971980075,3.175869909,0.548099039,-0.548099039,0.436423234,0.436423234,0.14952487,2.132090065,68.57534551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.71666749,1.77433016,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.544691994,65.91723049,77.26135948,67.69156065,520.7015702,0,0.635337096,50.55500926,-0.635337096,129.4449907,0.97130162,0,583.0196384,67.69156065,627.322411,11,12,8% -2018-11-12 21:00:00,57.84833965,198.8470939,506.6473265,804.3053414,78.62645466,628.3691928,548.2942942,80.07489851,76.25557695,3.819321556,125.2133878,0,125.2133878,2.370877709,122.8425101,1.009643994,3.470536497,0.997912994,-0.997912994,0.359500517,0.359500517,0.155189716,1.752684561,56.37236029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29976109,1.717692829,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269813998,54.18725694,74.56957508,55.90494977,548.2942942,0,0.681699183,47.02343367,-0.681699183,132.9765663,0.976653865,0,610.063317,55.90494977,646.6519885,11,13,6% -2018-11-12 22:00:00,63.14754995,214.0879276,413.7880545,757.6418753,71.56542592,581.3538882,508.8271148,72.52677342,69.40746428,3.11930914,102.4856661,0,102.4856661,2.15796164,100.3277045,1.102132661,3.736539225,1.59972476,-1.59972476,0.256584644,0.256584644,0.17295189,1.20143228,38.64219201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.7170947,1.563435862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870433597,37.14434479,67.5875283,38.70778065,508.8271148,0,0.671593178,47.80985357,-0.671593178,132.1901464,0.975550167,0,563.973905,38.70778065,589.3073733,11,14,4% -2018-11-12 23:00:00,70.86318915,227.1357216,272.9710134,653.3327067,58.79226247,454.8570735,395.7798438,59.07722964,57.01945884,2.057770803,67.95778618,0,67.95778618,1.772803634,66.18498255,1.236795969,3.96426619,2.655406125,-2.655406125,0.076052498,0.076052498,0.215379141,0.565992982,18.20427989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.80927268,1.284390198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410059989,17.49864626,55.21933266,18.78303646,395.7798438,0,0.605786056,52.71457287,-0.605786056,127.2854271,0.96746261,0,438.1215334,18.78303646,450.4146551,11,15,3% -2018-11-12 00:00:00,80.24765908,238.2094614,103.1469821,402.0279343,35.04756265,231.4162676,196.6479527,34.76831484,33.99074932,0.777565521,26.06599333,0,26.06599333,1.056813326,25.00918001,1.400585868,4.157539411,5.69547487,-5.69547487,0,0,0.339782725,0.264203331,8.49768733,0.307397626,1,0.173806421,0,0.94234221,0.981104173,0.724496596,1,32.94345481,0.765657657,0.045901612,0.312029739,0.878091279,0.602587875,0.961238037,0.922476074,0.181580864,8.168300287,33.12503568,8.933957944,136.1988389,0,0.489140022,60.71592661,-0.489140022,119.2840734,0.947779781,0,162.2115415,8.933957944,168.0586382,11,16,4% -2018-11-12 01:00:00,90.89938558,247.8498029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586493566,4.325795111,-63.65538507,63.65538507,1,0,#DIV/0!,0,0,1,0.903992617,0,0.015708298,0.961238037,1,0.680916516,0.95641992,0,0,0.115824807,0.262530305,0.724496596,0.448993192,0.968819794,0.930057831,0,0,0,0,0,0,0.326987248,70.91398465,-0.326987248,109.0860154,0.897088838,0,0,0,0,11,17,0% -2018-11-12 02:00:00,102.1775665,256.6623064,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783334957,4.479602313,-4.602674244,4.602674244,1,0.682742658,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13384585,82.30811371,-0.13384585,97.69188629,0.676435934,0,0,0,0,11,18,0% -2018-11-12 03:00:00,113.8688507,265.282586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987386361,4.630054574,-2.180027372,2.180027372,1,0.902960327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078533138,94.50425541,0.078533138,85.49574459,0,0,0,0,0,11,19,0% -2018-11-12 04:00:00,125.7052023,274.4946697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193969667,4.790835765,-1.266156177,1.266156177,1,0.746679148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.29568367,107.1985377,0.29568367,72.80146228,0,0.880900367,0,0,0,11,20,0% -2018-11-12 05:00:00,137.3639047,285.5485532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397452411,4.983762428,-0.749111348,0.749111348,1,0.658259275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502817155,120.1865572,0.502817155,59.81344284,0,0.950560274,0,0,0,11,21,0% -2018-11-12 06:00:00,148.2621564,300.9503405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587662785,5.252574326,-0.38966712,0.38966712,1,0.596790692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685829883,133.3009077,0.685829883,46.69909227,0,0.977095623,0,0,0,11,22,0% -2018-11-12 07:00:00,156.9535171,325.9831501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739355646,5.689479275,-0.103042854,0.103042854,1,0.547775056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832263535,146.3319648,0.832263535,33.66803524,0,0.989922876,0,0,0,11,23,0% -2018-11-13 08:00:00,160.0692857,4.713222107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793736066,0.082261244,0.151595194,-0.151595194,1,0.504229385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93215339,158.7730165,0.93215339,21.22698354,0,0.996360759,0,0,0,11,0,0% -2018-11-13 09:00:00,155.3503396,40.90285512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.711374919,0.713889495,0.400971721,-0.400971721,1,0.461583487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978706575,168.1550276,0.978706575,11.84497245,0,0.998912165,0,0,0,11,1,0% -2018-11-13 10:00:00,145.9590169,63.17134484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547465418,1.10254796,0.670757501,-0.670757501,1,0.415447401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968764263,165.6417834,0.968764263,14.35821657,0,0.998387857,0,0,0,11,2,0% -2018-11-13 11:00:00,134.8192317,77.27590683,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353039488,1.348719007,0.998226811,-0.998226811,1,0.359446851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903016397,154.5574362,0.903016397,25.44256377,0,0.99463002,0,0,0,11,3,0% -2018-11-13 12:00:00,123.0946679,87.77241112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148407246,1.531917566,1.461086374,-1.461086374,1,0.280293204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785954364,141.8090316,0.785954364,38.19096836,0,0.986383075,0,0,0,11,4,0% -2018-11-13 13:00:00,111.2799812,96.77661167,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942202063,1.689070513,2.292202196,-2.292202196,1,0.138164028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625564814,128.7236553,0.625564814,51.27634467,0,0.970072231,0,0,0,11,5,0% -2018-11-13 14:00:00,99.67515099,105.3899616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.739659567,1.839401829,4.781773725,-4.781773725,1,0,#DIV/0!,0,0,0.223347888,1,0.206156323,0,0.938061871,0.976823835,0.724496596,1,0,0,0.034553518,0.312029739,0.906688594,0.63118519,0.961238037,0.922476074,0,0,0,0,0,0,-0.432785451,115.6444622,0.432785451,64.35553783,0,0.934469314,0,0,0,11,6,0% -2018-11-13 15:00:00,88.23018614,114.3445174,3.287071869,26.87352863,2.457105317,2.407793862,0,2.407793862,2.383014526,0.024779336,6.661178862,5.79009944,0.871079422,0.074090791,0.796988631,1.539907248,1.99568831,-23.14482739,23.14482739,0,0,0.747505809,0.018522698,0.595753631,1,0.713315268,0,0.043179343,0.961238037,1,0.609355256,0.884858661,2.290644205,0.050999498,0.115824807,0.181457522,0.724496596,0.448993192,0.980112764,0.941350801,0.013419631,0.577285448,2.304063836,0.628284946,0,1.659933104,-0.215457357,102.4423608,0.215457357,77.55763922,0,0.817935517,2.304063836,1.986003188,3.603863202,11,7,56% -2018-11-13 16:00:00,78.156157,124.2618235,139.6189579,477.5252039,41.60928511,41.40711832,0,41.40711832,40.35461164,1.05250668,36.37124983,1.264343568,35.10690627,1.254673468,33.8522328,1.36408227,2.168777954,-2.785195057,2.785195057,0.993549904,0.993549904,0.29802031,1.047741102,33.69895543,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.79038767,0.909006656,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.759084862,32.39271776,39.54947253,33.30172442,0,1.264343568,-0.0026477,90.15170222,0.0026477,89.84829778,0,0,39.54947253,33.30172442,61.34478513,11,8,55% -2018-11-13 17:00:00,69.1204934,135.7372744,305.1819011,682.3918575,61.97482758,201.3388147,138.9321668,62.40664794,60.10605786,2.30059008,75.8636549,0,75.8636549,1.868769714,73.99488519,1.20638019,2.369062356,-1.077252641,1.077252641,0.714374741,0.714374741,0.203075043,1.7769254,57.15202902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.77622906,1.353917296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287376404,54.93670418,59.06360547,56.29062147,138.9321668,0,0.203595874,78.2526848,-0.203595874,101.7473152,0.804415456,0,170.8227877,56.29062147,207.6638736,11,9,22% -2018-11-13 18:00:00,61.91900477,149.2618694,435.7307586,770.0649357,73.24636386,371.6503639,297.3279257,74.32243825,71.03771574,3.284722512,107.8566153,0,107.8566153,2.208648121,105.6479671,1.080690503,2.605111069,-0.349226047,0.349226047,0.589874861,0.589874861,0.168100054,2.164030764,69.60266818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.28415442,1.600158045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567832922,66.90473212,69.85198734,68.50489017,297.3279257,0,0.386107602,67.28748123,-0.386107602,112.7125188,0.92050242,0,343.5430625,68.50489017,388.378143,11,10,13% -2018-11-13 19:00:00,57.30737336,164.9109412,515.9421989,808.5255282,79.23167023,511.0284318,430.2964985,80.73193327,76.84254304,3.889390231,127.4852867,0,127.4852867,2.389127191,125.0961595,1.000202351,2.878238896,0.133384646,-0.133384646,0.507343572,0.507343572,0.153566951,2.267511849,72.93097557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.86397522,1.730914517,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.642804615,70.10402779,75.50677983,71.8349423,430.2964985,0,0.532199026,57.8458451,-0.532199026,122.1541549,0.956050185,0,486.8918269,71.8349423,533.9063599,11,11,10% -2018-11-13 20:00:00,55.95461178,181.9147594,538.8121915,818.0098689,80.8498001,599.3392424,516.8655682,82.47367422,78.41188032,4.061793895,133.0791738,0,133.0791738,2.437919777,130.641254,0.976592207,3.175011509,0.552387048,-0.552387048,0.435689941,0.435689941,0.150051913,2.113618406,67.98123344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37248191,1.766264579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53130934,65.34614737,76.90379125,67.11241195,516.8655682,0,0.631857375,50.8127104,-0.631857375,129.1872896,0.970868218,0,578.7121444,67.11241195,622.6358758,11,12,8% -2018-11-13 21:00:00,58.0948209,198.7255098,502.4836536,802.665413,78.26288422,624.1237744,544.4328709,79.69090353,75.9029695,3.787934031,124.1928941,0,124.1928941,2.359914718,121.8329794,1.013945903,3.468414454,1.004849997,-1.004849997,0.35831422,0.35831422,0.1557521,1.735851556,55.83095299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96082139,1.70975018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257618543,53.66683565,74.21843994,55.37658583,544.4328709,0,0.678281214,47.29052338,-0.678281214,132.7094766,0.976284262,0,605.7396837,55.37658583,641.9825516,11,13,6% -2018-11-13 22:00:00,63.3664696,213.9169031,409.9262618,755.6184828,71.19588222,577.1392645,505.0000035,72.139261,69.04906368,3.090197315,101.5381867,0,101.5381867,2.146818534,99.39136814,1.10595353,3.733554285,1.611509318,-1.611509318,0.254569366,0.254569366,0.173679729,1.186745646,38.16981937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37258642,1.55536272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85979318,36.69028224,67.2323796,38.24564496,505.0000035,0,0.668326695,48.06195066,-0.668326695,131.9380493,0.975186289,0,559.7014591,38.24564496,584.7324688,11,14,4% -2018-11-13 23:00:00,71.05262048,226.9372416,269.5230261,650.2622184,58.38310987,450.6012748,391.9468527,58.65442211,56.62264369,2.031778418,67.10944429,0,67.10944429,1.760466173,65.34897812,1.24010217,3.960802061,2.680089062,-2.680089062,0.071831467,0.071831467,0.216616408,0.554447951,17.832952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.42783887,1.27545175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401695653,17.14171177,54.82953452,18.41716352,391.9468527,0,0.602752,52.93274957,-0.602752,127.0672504,0.967047144,0,433.8606189,18.41716352,445.9142841,11,15,3% -2018-11-13 00:00:00,80.41009829,237.9959436,100.4295855,395.9132463,34.47243256,226.7678401,192.5777979,34.19004217,33.43296153,0.757080637,25.38978678,0,25.38978678,1.039471031,24.35031574,1.403420967,4.153812822,5.789273904,-5.789273904,0,0,0.343249774,0.259867758,8.358240382,0.315007714,1,0.171045413,0,0.942696766,0.981458729,0.724496596,1,32.40484487,0.753093224,0.046890036,0.312029739,0.875648631,0.600145227,0.961238037,0.922476074,0.178511199,8.034258577,32.58335607,8.7873518,131.9143059,0,0.486414132,60.89483592,-0.486414132,119.1051641,0.947206934,0,157.5335013,8.7873518,163.2846473,11,16,4% -2018-11-13 01:00:00,91.04251644,247.6248421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588991671,4.321868805,-54.9058376,54.9058376,1,0,#DIV/0!,0,0,1,0.887887411,0,0.018210986,0.961238037,1,0.674151477,0.949654881,0,0,0.115824807,0.254853433,0.724496596,0.448993192,0.969949792,0.931187829,0,0,0,0,0,0,0.324572658,71.06031341,-0.324572658,108.9396866,0.895951288,0,0,0,0,11,17,0% -2018-11-13 02:00:00,102.305858,256.4233943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785574066,4.47543251,-4.555384393,4.555384393,1,0.690829699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131787105,82.42712548,-0.131787105,97.57287452,0.670600211,0,0,0,0,11,18,0% -2018-11-13 03:00:00,113.9887669,265.0225747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989479292,4.625516521,-2.17042081,2.17042081,1,0.901317508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08024022,94.60237374,0.08024022,85.39762626,0,0,0,0,0,11,19,0% -2018-11-13 04:00:00,125.8246148,274.2017387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196053808,4.785723155,-1.263523992,1.263523992,1,0.746229018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297067388,107.2815485,0.297067388,72.7184515,0,0.881688021,0,0,0,11,20,0% -2018-11-13 05:00:00,137.494129,285.2060389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399725254,4.977784425,-0.748873708,0.748873708,1,0.658218636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503927985,120.2602154,0.503927985,59.73978458,0,0.950779473,0,0,0,11,21,0% -2018-11-13 06:00:00,148.4218575,300.5459943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590450096,5.245517154,-0.390602645,0.390602645,1,0.596950676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686737014,133.372367,0.686737014,46.62763296,0,0.977191925,0,0,0,11,22,0% -2018-11-13 07:00:00,157.1699375,325.5890031,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743132894,5.682600113,-0.104771438,0.104771438,1,0.548070661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833050118,146.4133457,0.833050118,33.58665428,0,0.989979602,0,0,0,11,23,0% -2018-11-14 08:00:00,160.3339383,4.6631972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.798355126,0.081388145,0.149130297,-0.149130297,1,0.504650907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932910814,158.8932017,0.932910814,21.1067983,0,0.996404309,0,0,0,11,0,0% -2018-11-14 09:00:00,155.5895863,41.17730628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715550563,0.718679572,0.397615771,-0.397615771,1,0.462157388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979528176,168.3865942,0.979528176,11.61340578,0,0.998955016,0,0,0,11,1,0% -2018-11-14 10:00:00,146.1609343,63.47816617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550989542,1.107903003,0.666090901,-0.666090901,1,0.416245437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969738895,165.8687253,0.969738895,14.13127466,0,0.998439729,0,0,0,11,2,0% -2018-11-14 11:00:00,135.0012845,77.54702431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356216909,1.353450899,0.991292952,-0.991292952,1,0.360632611,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904222304,154.7187433,0.904222304,25.28125665,0,0.994703863,0,0,0,11,3,0% -2018-11-14 12:00:00,123.2700639,88.00880073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151468484,1.536043343,1.449422662,-1.449422662,1,0.282287816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78745378,141.9481959,0.78745378,38.05180406,0,0.98650421,0,0,0,11,4,0% -2018-11-14 13:00:00,111.4572509,96.98696945,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945296004,1.692741948,2.267173048,-2.267173048,1,0.142444264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627399661,128.8585337,0.627399661,51.14146628,0,0.970305982,0,0,0,11,5,0% -2018-11-14 14:00:00,99.86036457,105.5808539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742892154,1.842733527,4.679080489,-4.679080489,1,0,#DIV/0!,0,0,0.212608469,1,0.210549719,0,0.937462783,0.976224746,0.724496596,1,0,0,0.033044074,0.312029739,0.910568999,0.635065595,0.961238037,0.922476074,0,0,0,0,0,0,-0.43497443,115.7836669,0.43497443,64.21633315,0,0.935050714,0,0,0,11,6,0% -2018-11-14 15:00:00,88.41144863,114.518913,2.592170923,22.00700503,1.982094933,1.941868337,0,1.941868337,1.922327458,0.019540879,5.47970239,4.791433063,0.688269327,0.059767475,0.628501851,1.543070875,1.998732088,-25.7105399,25.7105399,0,0,0.764646697,0.014941869,0.480581864,1,0.745347172,0,0.038874959,0.961238037,1,0.62017521,0.895678614,1.847814272,0.041259456,0.115824807,0.193695849,0.724496596,0.448993192,0.978499919,0.939737956,0.010825333,0.465505567,1.858639605,0.506765023,0,1.22015198,-0.217723087,102.575334,0.217723087,77.42466597,0,0.820350491,1.858639605,1.507717299,2.845410423,11,7,53% -2018-11-14 16:00:00,78.36941085,124.4181141,135.877663,470.8362482,40.95666596,40.74597459,0,40.74597459,39.72167137,1.024303219,36.76070564,2.580598516,34.18010712,1.234994593,32.94511253,1.367804252,2.171505741,-2.826966316,2.826966316,0.986406598,0.986406598,0.301423097,1.014576398,32.63226453,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.18198141,0.894749378,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.735057146,31.3673739,38.91703855,32.26212328,0,2.580598516,-0.005480883,90.31403305,0.005480883,89.68596695,0,0,38.91703855,32.26212328,60.03195299,11,8,54% -2018-11-14 17:00:00,69.35352798,135.8674747,300.9418627,679.0406479,61.51161353,198.061483,136.1360447,61.9254383,59.65681143,2.268626879,74.82164089,0,74.82164089,1.854802102,72.96683879,1.210447411,2.371334781,-1.085051023,1.085051023,0.715708343,0.715708343,0.204396999,1.755501375,56.46295871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.3443963,1.343797809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27185477,54.27434359,58.61625107,55.6181414,136.1360447,0,0.200482909,78.43480033,-0.200482909,101.5651997,0.800602183,0,167.6070656,55.6181414,204.0080267,11,9,22% -2018-11-14 18:00:00,62.17010936,149.3499406,431.3320239,767.8930293,72.84265748,367.8439607,293.9462151,73.89774559,70.6461826,3.251562991,106.7779179,0,106.7779179,2.196474884,104.581443,1.085073105,2.606648201,-0.350080683,0.350080683,0.590021012,0.590021012,0.168878389,2.143617625,68.94611145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90779787,1.591338576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553043672,66.27362482,69.46084154,67.8649634,293.9462151,0,0.382795785,67.49303209,-0.382795785,112.5069679,0.919382052,0,339.7097159,67.8649634,384.1259772,11,10,13% -2018-11-14 19:00:00,57.56928488,164.9356419,511.5377852,806.8266399,78.853323,506.9613241,426.6295319,80.33179227,76.47560437,3.856187899,126.405977,0,126.405977,2.377718626,124.0282584,1.004773569,2.878670006,0.135411641,-0.135411641,0.506996935,0.506996935,0.154149557,2.248131089,72.30762372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.51125981,1.722649051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628763321,69.50483827,75.14002314,71.22748733,426.6295319,0,0.528774722,58.07729497,-0.528774722,121.922705,0.955441773,0,482.7596996,71.22748733,529.3766655,11,11,10% -2018-11-14 20:00:00,56.21352435,181.8622223,534.520966,816.4651518,80.48514344,595.1653981,513.0777339,82.08766423,78.0582194,4.029444824,132.0277207,0,132.0277207,2.426924033,129.6007967,0.981111084,3.174094564,0.556532664,-0.556532664,0.434980999,0.434980999,0.150574343,2.095546483,67.39997828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03252958,1.7582982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518216293,64.7874228,76.55074587,66.545721,513.0777339,0,0.628413512,51.06682889,-0.628413512,128.9331711,0.970434556,0,574.4591088,66.545721,618.0119523,11,12,8% -2018-11-14 21:00:00,58.33547917,198.6026154,498.4098668,801.0461808,77.90491652,619.9487002,540.6356803,79.31301995,75.55579584,3.757224105,123.1943633,0,123.1943633,2.349120671,120.8452426,1.018146182,3.466269542,1.011605512,-1.011605512,0.357158959,0.357158959,0.156306931,1.719454043,55.30355261,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.62710487,1.70192993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245738601,53.15987835,73.87284347,54.86180828,540.6356803,0,0.674912,47.55268309,-0.674912,132.4473169,0.975916268,0,601.4879987,54.86180828,637.393955,11,13,6% -2018-11-14 22:00:00,63.57943448,213.7461099,406.1653199,753.6286331,70.83324522,573.0139171,501.2547098,71.75920728,68.69736153,3.061845747,100.6153679,0,100.6153679,2.13588369,98.47948423,1.109670468,3.730573381,1.623028228,-1.623028228,0.252599516,0.252599516,0.174395109,1.17251088,37.71198037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.03451693,1.547440463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849480141,36.25018998,66.88399707,37.79763044,501.2547098,0,0.665121637,48.3083423,-0.665121637,131.6916577,0.97482578,0,555.5200107,37.79763044,580.2578039,11,14,4% -2018-11-14 23:00:00,71.23612853,226.7399253,266.1837182,647.2521682,57.98294799,446.4571279,388.2159744,58.24115348,56.23454817,2.006605304,66.28772405,0,66.28772405,1.748399816,64.53932424,1.243304989,3.957358242,2.70431593,-2.70431593,0.067688429,0.067688429,0.217830558,0.543337305,17.47559544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.05478669,1.266709715,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.393646028,16.79820705,54.44843272,18.06491677,388.2159744,0,0.599790922,53.14507503,-0.599790922,126.854925,0.966637618,0,429.7125974,18.06491677,441.5357241,11,15,3% -2018-11-14 00:00:00,80.56667504,237.7841203,97.8233355,389.9422075,33.91190332,222.2694437,188.6426758,33.62676793,32.88933431,0.737433624,24.74096926,0,24.74096926,1.022569007,23.71840025,1.406153747,4.150115808,5.882501077,-5.882501077,0,0,0.346664762,0.255642252,8.222333578,0.322407489,1,0.168385996,0,0.943036665,0.981798628,0.724496596,1,31.87968046,0.740847764,0.04784517,0.312029739,0.873295597,0.597792193,0.961238037,0.922476074,0.175528202,7.903619786,32.05520866,8.644467551,127.8228644,0,0.483770857,61.06802637,-0.483770857,118.9319736,0.946645283,0,153.0581203,8.644467551,158.7157514,11,16,4% -2018-11-14 01:00:00,91.17979281,247.4018997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591387596,4.317977726,-48.5074949,48.5074949,1,0,#DIV/0!,0,0,1,0.872211395,0,0.020612451,0.961238037,1,0.66770623,0.943209634,0,0,0.115824807,0.247541687,0.724496596,0.448993192,0.97101442,0.932252457,0,0,0,0,0,0,0.322248044,71.20106832,-0.322248044,108.7989317,0.89484002,0,0,0,0,11,17,0% -2018-11-14 02:00:00,102.4282461,256.1867239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787710141,4.471301831,-4.511166384,4.511166384,1,0.698391424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129822458,82.54066704,-0.129822458,97.45933296,0.664858625,0,0,0,0,11,18,0% -2018-11-14 03:00:00,114.1026371,264.764955,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991466703,4.621020208,-2.161442732,2.161442732,1,0.899782166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08185241,94.69505027,0.08185241,85.30494973,0,0,0,0,0,11,19,0% -2018-11-14 04:00:00,125.9377135,273.9111946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198027753,4.780652204,-1.261134443,1.261134443,1,0.745820381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298358792,107.359055,0.298358792,72.64094502,0,0.882416535,0,0,0,11,20,0% -2018-11-14 05:00:00,137.6176125,284.8653814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401880448,4.971838831,-0.748754714,0.748754714,1,0.658198287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504952273,120.3281842,0.504952273,59.67181579,0,0.950980741,0,0,0,11,21,0% -2018-11-14 06:00:00,148.5742916,300.1411062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593110572,5.238450524,-0.391601288,0.391601288,1,0.597121454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687566173,133.4377578,0.687566173,46.56224219,0,0.977279727,0,0,0,11,22,0% -2018-11-14 07:00:00,157.3791721,325.1870602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746784727,5.675584886,-0.106531751,0.106531751,1,0.548371692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833769499,146.4879266,0.833769499,33.51207343,0,0.990031387,0,0,0,11,23,0% -2018-11-15 08:00:00,160.5934661,4.601257089,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802884741,0.080307086,0.146655997,-0.146655997,1,0.505074037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933613264,159.0052507,0.933613264,20.99474933,0,0.996444634,0,0,0,11,0,0% -2018-11-15 09:00:00,155.8256229,41.44319771,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719670179,0.723320253,0.394271239,-0.394271239,1,0.462729337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980307646,168.6105769,0.980307646,11.38942306,0,0.998995603,0,0,0,11,1,0% -2018-11-15 10:00:00,146.3609007,63.7772112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554479613,1.113122323,0.661462023,-0.661462023,1,0.417037022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970683967,166.0922472,0.970683967,13.9077528,0,0.998489929,0,0,0,11,2,0% -2018-11-15 11:00:00,135.182166,77.81107766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.359373886,1.3580595,0.984441735,-0.984441735,1,0.361804238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905410084,154.8785712,0.905410084,25.12142879,0,0.994776405,0,0,0,11,3,0% -2018-11-15 12:00:00,123.4446829,88.23869551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15451616,1.540055764,1.437946624,-1.437946624,1,0.284250334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.788944574,142.0869894,0.788944574,37.91301061,0,0.986624192,0,0,0,11,4,0% -2018-11-15 13:00:00,111.6338577,97.1911568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948378374,1.69630569,2.242714583,-2.242714583,1,0.146626908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629232806,128.993543,0.629232806,51.006457,0,0.970538155,0,0,0,11,5,0% -2018-11-15 14:00:00,100.0448035,105.7656723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.74611122,1.845959218,4.580808952,-4.580808952,1,0,#DIV/0!,0,0,0.202049633,1,0.214930169,0,0.936861262,0.975623226,0.724496596,1,0,0,0.031546298,0.312029739,0.914437153,0.638933749,0.961238037,0.922476074,0,0,0,0,0,0,-0.437165569,115.9231726,0.437165569,64.07682737,0,0.935626857,0,0,0,11,6,0% -2018-11-15 15:00:00,88.59029769,114.68715,2.000492095,17.7408248,1.564041823,1.531960746,0,1.531960746,1.516880192,0.015080554,4.434658233,3.902454132,0.532204101,0.047161632,0.485042469,1.54619238,2.001668378,-28.89023251,28.89023251,0,0,0.781828545,0.011790408,0.379220048,1,0.776320102,0,0.034599961,0.961238037,1,0.631066083,0.906569487,1.458082938,0.032668422,0.115824807,0.206021484,0.724496596,0.448993192,0.976842154,0.938080191,0.00854211,0.367150188,1.466625048,0.399818609,0,0.872900543,-0.219970276,102.7072872,0.219970276,77.29271282,0,0.822696562,1.466625048,1.117950885,2.198301544,11,7,50% -2018-11-15 16:00:00,78.5809769,124.5680589,132.1784782,464.0686247,40.30087484,40.08207197,0,40.08207197,39.08565477,0.996417201,37.12139566,3.857973246,33.26342241,1.215220071,32.04820234,1.371496776,2.174122771,-2.870249006,2.870249006,0.979004822,0.979004822,0.304897404,0.981875685,31.5804972,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.57061806,0.880422805,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.711365591,30.35637513,38.28198365,31.23679794,0,3.857973246,-0.008313368,90.47632639,0.008313368,89.52367361,0,0,38.28198365,31.23679794,58.72584316,11,8,53% -2018-11-15 17:00:00,69.58410146,135.9912053,296.7444342,675.6688189,61.04945271,194.8065066,133.3609353,61.44557135,59.20858646,2.236984891,73.78998992,0,73.78998992,1.840866248,71.94912367,1.214471678,2.373494286,-1.093130404,1.093130404,0.717089998,0.717089998,0.205730742,1.73431936,55.78167229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.91354542,1.33370133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.256508472,53.61946517,58.17005389,54.9531665,133.3609353,0,0.197376187,78.61643262,-0.197376187,101.3835674,0.796676634,0,164.415595,54.9531665,200.3813434,11,9,22% -2018-11-15 18:00:00,62.41773487,149.4318029,426.9866525,765.7200899,72.44163126,364.0659909,290.5899363,73.47605455,70.2572488,3.218805747,105.7122398,0,105.7122398,2.184382464,103.5278574,1.089394985,2.608076968,-0.351087445,0.351087445,0.590193179,0.590193179,0.169657836,2.123510904,68.29941018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.53393991,1.582577659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538476421,65.65199096,69.07241633,67.23456862,290.5899363,0,0.379498906,67.6973528,-0.379498906,112.3026472,0.918247314,0,335.905845,67.23456862,379.9095255,11,10,13% -2018-11-15 19:00:00,57.82662797,164.9551787,507.19972,805.1355954,78.4787399,502.9349261,422.999124,79.93580207,76.11231633,3.823485731,125.3428678,0,125.3428678,2.366423564,122.9764443,1.009265053,2.879010987,0.137304892,-0.137304892,0.50667317,0.50667317,0.154729462,2.229112695,71.6959268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.16205353,1.714465816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614984559,68.91685193,74.77703809,70.63131774,422.999124,0,0.525376255,58.30642398,-0.525376255,121.693576,0.954830111,0,478.6693385,70.63131774,524.8961234,11,11,10% -2018-11-15 20:00:00,56.46698998,181.8063831,530.3094731,814.9350209,80.12525031,591.0476246,509.3407494,81.7068752,77.70917839,3.997696812,130.9957434,0,130.9957434,2.416071928,128.5796715,0.985534894,3.173119986,0.560529945,-0.560529945,0.434297424,0.434297424,0.151091493,2.077883954,66.83189065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.69701808,1.750435887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505419852,64.24135537,76.20243793,65.99179126,509.3407494,0,0.625007806,51.31723961,-0.625007806,128.6827604,0.970000999,0,570.2634738,65.99179126,613.4537813,11,12,8% -2018-11-15 21:00:00,58.57022031,198.4784557,494.4283907,799.4497138,77.55278114,615.8469759,536.9054872,78.9414887,75.21427864,3.727210057,122.2183901,0,122.2183901,2.338502491,119.8798876,1.022243188,3.464102546,1.01817015,-1.01817015,0.356036339,0.356036339,0.156853414,1.70349988,54.7904119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.29882555,1.694237094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234179864,52.66662797,73.53300541,54.36086506,536.9054872,0,0.67159382,47.80980391,-0.67159382,132.1901961,0.975550238,0,597.3112813,54.36086506,632.8893803,11,13,6% -2018-11-15 22:00:00,63.78635899,213.5755962,402.5073235,751.6751677,70.47777429,568.9809233,497.5940438,71.38687958,68.35260936,3.034270224,99.71772557,0,99.71772557,2.12516493,97.59256064,1.113281982,3.727597356,1.63426408,-1.63426408,0.250678072,0.250678072,0.175096874,1.158733181,37.26884222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.70312803,1.539674757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.839498245,35.82422873,66.54262628,37.36390349,497.5940438,0,0.661980155,48.54893395,-0.661980155,131.4510661,0.974469035,0,551.4326138,37.36390349,575.8865414,11,14,4% -2018-11-15 23:00:00,71.41363806,226.5438345,262.9546533,644.3074829,57.5921428,442.4279849,384.5901945,57.83779045,55.85552721,1.982263249,65.49301566,0,65.49301566,1.736615598,63.75640007,1.246403115,3.953935812,2.728042433,-2.728042433,0.063630958,0.063630958,0.219019295,0.53266158,17.13222743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.69045732,1.258172089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385911501,16.46814866,54.07636882,17.72632075,384.5901945,0,0.596904746,53.35146343,-0.596904746,126.6485366,0.966234541,0,425.6806989,17.72632075,437.2822213,11,15,3% -2018-11-15 00:00:00,80.7173286,237.574071,95.32838472,384.1262139,33.36677213,217.9253243,184.8460578,33.07926647,32.36064084,0.718625631,24.11960184,0,24.11960184,1.00613129,23.11347055,1.408783148,4.146449757,5.974918507,-5.974918507,0,0,0.350019275,0.251532823,8.090160211,0.329586865,1,0.165829324,0,0.943361938,0.982123901,0.724496596,1,31.36873761,0.728938695,0.048766276,0.312029739,0.871033234,0.59552983,0.961238037,0.922476074,0.172635059,7.776569719,31.54137267,8.505508413,123.9232252,0,0.481211777,61.23542501,-0.481211777,118.764575,0.946095643,0,148.7845961,8.505508413,154.3512813,11,16,4% -2018-11-15 01:00:00,91.31116327,247.1810747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593680443,4.314123602,-43.63793587,43.63793587,1,0,#DIV/0!,0,0,1,0.856993318,0,0.022911831,0.961238037,1,0.661577379,0.937080783,0,0,0.115824807,0.240590999,0.724496596,0.448993192,0.972015908,0.933253944,0,0,0,0,0,0,0.32001468,71.33618733,-0.32001468,108.6638127,0.893757168,0,0,0,0,11,17,0% -2018-11-15 02:00:00,102.5446919,255.9524174,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789742504,4.467212412,-4.46988553,4.46988553,1,0.705450866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127952779,82.64869276,-0.127952779,97.35130724,0.659230841,0,0,0,0,11,18,0% -2018-11-15 03:00:00,114.2104338,264.5098811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993348109,4.616568329,-2.153081363,2.153081363,1,0.898352288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.083369243,94.78225652,0.083369243,85.21774348,0,0,0,0,0,11,19,0% -2018-11-15 04:00:00,126.0444785,273.6232414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199891153,4.775626473,-1.258985026,1.258985026,1,0.745452809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299557809,107.4310461,0.299557809,72.56895393,0,0.883087309,0,0,0,11,20,0% -2018-11-15 05:00:00,137.7343345,284.5268688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403917629,4.96593067,-0.748753385,0.748753385,1,0.65819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505890295,120.39047,0.505890295,59.60953002,0,0.951164342,0,0,0,11,21,0% -2018-11-15 06:00:00,148.7194131,299.7360868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59564342,5.231381602,-0.392662336,0.392662336,1,0.597302904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688317909,133.4971039,0.688317909,46.50289614,0,0.977359147,0,0,0,11,22,0% -2018-11-15 07:00:00,157.5811055,324.77765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750309129,5.668439329,-0.108323038,0.108323038,1,0.54867802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834422415,146.5557439,0.834422415,33.44425605,0,0.990078312,0,0,0,11,23,0% -2018-11-16 08:00:00,160.847748,4.527039793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807322797,0.07901175,0.144173211,-0.144173211,1,0.505498619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934261565,159.1091713,0.934261565,20.89082867,0,0.996481797,0,0,0,11,0,0% -2018-11-16 09:00:00,156.0584024,41.70011256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723732947,0.727804263,0.390939286,-0.390939286,1,0.463299134,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981045791,168.8267674,0.981045791,11.17323261,0,0.999033979,0,0,0,11,1,0% -2018-11-16 10:00:00,146.5588913,64.06820957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557935201,1.118201203,0.656872355,-0.656872355,1,0.417821901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971600159,166.3123529,0.971600159,13.68764708,0,0.998538502,0,0,0,11,2,0% -2018-11-16 11:00:00,135.3618452,78.06788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36250988,1.362541688,0.977675023,-0.977675023,1,0.362961414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906580194,155.0369567,0.906580194,24.9630433,0,0.994847681,0,0,0,11,3,0% -2018-11-16 12:00:00,123.6184798,88.46196535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157549489,1.543952558,1.426660054,-1.426660054,1,0.286180451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790426899,142.2254238,0.790426899,37.7745762,0,0.986743043,0,0,0,11,4,0% -2018-11-16 13:00:00,111.8097406,97.38907283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951448109,1.699759976,2.218822161,-2.218822161,1,0.150712753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631064041,129.1286692,0.631064041,50.87133076,0,0.970768739,0,0,0,11,5,0% -2018-11-16 14:00:00,100.2283905,105.9443379,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749315418,1.849077519,4.486741665,-4.486741665,1,0,#DIV/0!,0,0,0.191673803,1,0.219294624,0,0.936257781,0.975019744,0.724496596,1,0,0,0.030061061,0.312029739,0.918290372,0.642786967,0.961238037,0.922476074,0,0,0,0,0,0,-0.439358257,116.0629426,0.439358257,63.93705739,0,0.936197655,0,0,0,11,6,0% -2018-11-16 15:00:00,88.76654751,114.8491701,1.508010974,14.11389284,1.20419328,1.179250433,0,1.179250433,1.167882409,0.011368024,3.538002193,3.136056603,0.40194559,0.03631087,0.36563472,1.54926852,2.004496161,-32.92747106,32.92747106,0,0,0.798530846,0.009077718,0.291970602,1,0.806242212,0,0.030360447,0.961238037,1,0.642008859,0.917512263,1.122612994,0.025250209,0.115824807,0.218413205,0.724496596,0.448993192,0.975141953,0.93637999,0.006576775,0.282519958,1.12918977,0.307770167,0,0.60763539,-0.22219643,102.8380727,0.22219643,77.16192727,0,0.824973882,1.12918977,0.809053493,1.6586991,11,7,47% -2018-11-16 16:00:00,78.79074736,124.7116238,128.5646815,457.5651704,39.61732418,39.39189056,0,39.39189056,38.42271568,0.969174875,37.46559395,5.098989952,32.366604,1.194608496,31.1719955,1.375157962,2.17662845,-2.915087225,2.915087225,0.971337035,0.971337035,0.308150915,0.949955705,30.55384093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.9333758,0.865489789,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.688239675,29.36951407,37.62161547,30.23500386,0,5.098989952,-0.011143746,90.63850282,0.011143746,89.36149718,0,0,37.62161547,30.23500386,57.4098208,11,8,53% -2018-11-16 17:00:00,69.81209683,136.1084625,292.6454734,672.5642947,60.54350319,191.5880518,130.6640735,60.92397838,58.71789319,2.206085192,72.78089316,0,72.78089316,1.825610003,70.95528316,1.218450947,2.375540811,-1.101493146,1.101493146,0.718520111,0.718520111,0.206883443,1.713584703,55.11477446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.44187238,1.322648233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.241486284,52.97841761,57.68335866,54.30106584,130.6640735,0,0.194277446,78.7974829,-0.194277446,101.2025171,0.792636106,0,161.2524211,54.30106584,196.7913826,11,9,22% -2018-11-16 18:00:00,62.66176207,149.5074856,422.7554422,763.7925668,71.98943771,360.3588552,287.3532555,73.00559965,69.81869055,3.186909096,104.6726986,0,104.6726986,2.17074716,102.5019515,1.093654063,2.609397881,-0.35224897,0.35224897,0.590391811,0.590391811,0.170286247,2.103813987,67.66588963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11238104,1.572698928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524206072,65.04302691,68.63658711,66.61572583,287.3532555,0,0.376218974,67.9003271,-0.376218974,112.0996729,0.917098675,0,332.1678771,66.61572583,375.7665373,11,10,13% -2018-11-16 19:00:00,58.07929007,164.9696028,502.9908564,803.6778449,78.05008049,499.0128517,419.5245116,79.48834013,75.69658259,3.79175754,124.3094545,0,124.3094545,2.353497901,121.9559566,1.013674839,2.879262735,0.139060382,-0.139060382,0.506372964,0.506372964,0.155171967,2.210481051,71.09666909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.76243445,1.705101218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601485997,68.34082263,74.36392045,70.04592384,419.5245116,0,0.522005819,58.53310571,-0.522005819,121.4668943,0.954215627,0,474.6807654,70.04592384,520.5244216,11,11,10% -2018-11-16 20:00:00,56.71490713,181.7472936,526.2409817,813.6395019,79.71127789,587.0676329,505.7929173,81.27471557,77.30768876,3.967026805,129.9968077,0,129.9968077,2.403589132,127.5932186,0.989861864,3.172088681,0.564372934,-0.564372934,0.433640234,0.433640234,0.151472958,2.060586476,66.27554427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31109098,1.741392144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.492887887,63.70657407,75.80397887,65.44796621,505.7929173,0,0.621642529,51.56381993,-0.621642529,128.4361801,0.969567923,0,566.204567,65.44796621,609.0389519,11,12,8% -2018-11-16 21:00:00,58.79895235,198.3530757,490.6015178,798.1047878,77.1491988,611.9177383,533.3965111,78.52122728,74.82286581,3.698361472,121.278351,0,121.278351,2.326332994,118.952018,1.026235315,3.461914252,1.024534478,-1.024534478,0.354947975,0.354947975,0.157254301,1.687877368,54.28793819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92258464,1.685420335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.222861407,52.18363114,73.14544605,53.86905147,533.3965111,0,0.66832892,48.06177928,-0.66832892,131.9382207,0.975186538,0,593.3065433,53.86905147,628.5627601,11,13,6% -2018-11-16 22:00:00,63.9871598,213.4054107,399.0117956,750.0122316,70.077012,565.1581836,494.1863326,70.97185099,67.96393153,3.007919458,98.8581099,0,98.8581099,2.113080468,96.74502944,1.116786618,3.724627059,1.645199323,-1.645199323,0.248808035,0.248808035,0.175626417,1.145226798,36.83443052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.32951612,1.530919606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.829712917,35.40665568,66.15922904,36.93757529,494.1863326,0,0.658904364,48.78363318,-0.658904364,131.2163668,0.974116453,0,547.5542667,36.93757529,571.729171,11,14,4% -2018-11-16 23:00:00,71.58507629,226.3490315,259.8890759,641.7302347,57.16894751,438.6531981,381.2489517,57.40424645,55.44509281,1.959153632,64.73697005,0,64.73697005,1.723854698,63.01311535,1.249395277,3.950535859,2.751223529,-2.751223529,0.059666757,0.059666757,0.219974415,0.522145813,16.79400421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.29593217,1.248926861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378292864,16.14303564,53.67422503,17.3919625,381.2489517,0,0.594095355,53.55183115,-0.594095355,126.4481688,0.965838426,0,421.8991125,17.3919625,433.2818042,11,15,3% -2018-11-16 00:00:00,80.86200103,237.3658754,92.98059409,378.8157671,32.81976647,213.8847181,181.3536617,32.53105641,31.83012942,0.700926993,23.53385858,0,23.53385858,0.989637051,22.54422153,1.411308158,4.142816058,6.066274902,-6.066274902,0,0,0.352974368,0.247409263,7.957532354,0.336535838,1,0.163376512,0,0.94367262,0.982434583,0.724496596,1,30.85580256,0.716988675,0.049652634,0.312029739,0.868862562,0.593359158,0.961238037,0.922476074,0.169741539,7.649082778,31.0255441,8.366071453,120.3216553,0,0.47873842,61.39696141,-0.47873842,118.6030386,0.945558831,0,144.7967478,8.366071453,150.2721743,11,16,4% -2018-11-16 01:00:00,91.43657924,246.9624659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595869365,4.310308158,-39.81909889,39.81909889,1,0,#DIV/0!,0,0,1,0.842261855,0,0.025108299,0.961238037,1,0.65576161,0.931265014,0,0,0.115824807,0.233997368,0.724496596,0.448993192,0.972956383,0.93419442,0,0,0,0,0,0,0.317873787,71.46561083,-0.317873787,108.5343892,0.892704866,0,0,0,0,11,17,0% -2018-11-16 02:00:00,102.6551596,255.720597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791670529,4.463166383,-4.431418899,4.431418899,1,0.712029047,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126178891,82.75115965,-0.126178891,97.24884035,0.653737206,0,0,0,0,11,18,0% -2018-11-16 03:00:00,114.3121325,264.257507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995123088,4.61216357,-2.145325723,2.145325723,1,0.897025995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.084790308,94.86396685,0.084790308,85.13603315,0,0,0,0,0,11,19,0% -2018-11-16 04:00:00,126.1448939,273.3380833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201643733,4.770649525,-1.25707337,1.25707337,1,0.745125897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300664415,107.4975138,0.300664415,72.50248623,0,0.883701637,0,0,0,11,20,0% -2018-11-16 05:00:00,137.8442792,284.1907901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405836528,4.960064992,-0.748868762,0.748868762,1,0.65821779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506742363,120.4470828,0.506742363,59.55291724,0,0.951330531,0,0,0,11,21,0% -2018-11-16 06:00:00,148.8571834,299.3313564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598047966,5.224317724,-0.393785073,0.393785073,1,0.597494903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688992805,133.5504335,0.688992805,46.44956654,0,0.977430302,0,0,0,11,22,0% -2018-11-16 07:00:00,157.7756274,324.361135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753704177,5.661169772,-0.110144534,0.110144534,1,0.548989514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83500963,146.616841,0.83500963,33.38315905,0,0.990120451,0,0,0,11,23,0% -2018-11-17 08:00:00,161.0966624,4.440190391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811667172,0.077495942,0.141682863,-0.141682863,1,0.505924493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93485656,159.2049835,0.93485656,20.79501649,0,0.996515859,0,0,0,11,0,0% -2018-11-17 09:00:00,156.2878778,41.94762762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727738049,0.732124215,0.387621075,-0.387621075,1,0.463866582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981743424,169.0349592,0.981743424,10.96504077,0,0.999070196,0,0,0,11,1,0% -2018-11-17 10:00:00,146.7548816,64.35089022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.561355877,1.123134911,0.652323375,-0.652323375,1,0.418599823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972488155,166.5290495,0.972488155,13.47095047,0,0.998585492,0,0,0,11,2,0% -2018-11-17 11:00:00,135.540291,78.31727808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365624348,1.366894364,0.970994647,-0.970994647,1,0.364103825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90773309,155.1939374,0.90773309,24.80606263,0,0.994917729,0,0,0,11,3,0% -2018-11-17 12:00:00,123.7914095,88.67848172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160567681,1.547731482,1.415564663,-1.415564663,1,0.288077875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791900905,142.3635106,0.791900905,37.63648943,0,0.986860787,0,0,0,11,4,0% -2018-11-17 13:00:00,111.9848385,97.58061854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954504144,1.70310308,2.195491086,-2.195491086,1,0.154702602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632893149,129.2638978,0.632893149,50.73610217,0,0.970997723,0,0,0,11,5,0% -2018-11-17 14:00:00,100.4110483,106.1167733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752503399,1.852087086,4.396675533,-4.396675533,1,0,#DIV/0!,0,0,0.181483258,1,0.223640003,0,0.935652826,0.974414789,0.724496596,1,0,0,0.028589227,0.312029739,0.92212595,0.646622545,0.961238037,0.922476074,0,0,0,0,0,0,-0.441551882,116.2029393,0.441551882,63.79706072,0,0.936763024,0,0,0,11,6,0% -2018-11-17 15:00:00,88.9400193,115.0049169,1.103768059,11.03392051,0.899650483,0.880843371,0,0.880843371,0.872522701,0.00832067,2.770751621,2.476002494,0.294749126,0.027127781,0.267621345,1.552296174,2.007214456,-38.21403119,38.21403119,0,0,0.815072039,0.006781945,0.218130675,1,0.835123287,0,0.026162428,0.961238037,1,0.652983971,0.928487375,0.838702009,0.018946261,0.115824807,0.23084892,0.724496596,0.448993192,0.97340216,0.934640197,0.004913496,0.210934809,0.843615505,0.229881071,0,0.408235152,-0.22439916,102.9675491,0.22439916,77.03245086,0,0.827182767,0.843615505,0.567566153,1.215076201,11,7,44% -2018-11-17 16:00:00,78.99861551,124.8487769,124.9967358,450.9932153,38.93247595,38.70079635,0,38.70079635,37.75851816,0.942278193,37.78151322,6.300649672,31.48086355,1.173957795,30.30690575,1.378785945,2.179022224,-2.96152524,2.96152524,0.963395667,0.963395667,0.311467941,0.918529714,29.54307302,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.29492387,0.850528427,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.665471651,28.39792551,36.96039552,29.24845394,0,6.300649672,-0.013970609,90.80048295,0.013970609,89.19951705,0,0,36.96039552,29.24845394,56.10292365,11,8,52% -2018-11-17 17:00:00,70.03739876,136.2192448,288.5935895,669.4474212,60.03975228,188.3954662,127.9905936,60.4048726,58.22933222,2.17554038,71.78327705,0,71.78327705,1.810420054,69.97285699,1.222383208,2.377474326,-1.110141266,1.110141266,0.719999027,0.719999027,0.208042571,1.693116801,54.45645637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.97224899,1.311643166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226657359,52.34561721,57.19890635,53.65726038,127.9905936,0,0.191188418,78.97785294,-0.191188418,101.0221471,0.788477883,0,158.1166586,53.65726038,193.2342624,11,9,22% -2018-11-17 18:00:00,62.90207396,149.5770192,418.5825444,761.8706632,71.54079404,356.6847746,284.1457474,72.53902717,69.38357514,3.155452029,103.647403,0,103.647403,2.157218898,101.4901841,1.097848297,2.610611471,-0.353567794,0.353567794,0.590617343,0.590617343,0.170912034,2.084446696,67.04297097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.69413156,1.562897748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.510174535,64.4442538,68.20430609,66.00715154,284.1457474,0,0.372957985,68.10184004,-0.372957985,111.89816,0.915936642,0,328.4638077,66.00715154,371.6641683,11,10,13% -2018-11-17 19:00:00,58.3271611,164.9789655,498.853436,802.2337793,77.62593776,495.1368492,416.091052,79.04579724,75.28522933,3.760567917,123.2934995,0,123.2934995,2.340708433,120.9527911,1.018001004,2.879426144,0.140674122,-0.140674122,0.506096998,0.506096998,0.155608706,2.192232864,70.50974464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36702604,1.695835291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.588265247,67.77664852,73.95529129,69.47248381,416.091052,0,0.518665584,58.75721597,-0.518665584,121.242784,0.953598771,0,470.7392069,69.47248381,516.2075581,11,11,10% -2018-11-17 20:00:00,56.95717665,181.6850056,522.2571715,812.3642863,79.30278032,583.1495286,502.3010245,80.84850406,76.9115089,3.936995161,129.0185691,0,129.0185691,2.391271423,126.6272977,0.994090265,3.171001549,0.56805568,-0.56805568,0.433010447,0.433010447,0.151846226,2.043716514,65.73294831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93026782,1.732468006,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.480665657,63.18501019,75.41093348,64.91747819,502.3010245,0,0.618319925,51.80644997,-0.618319925,128.19355,0.969135713,0,562.2087949,64.91747819,604.6959861,11,12,8% -2018-11-17 21:00:00,59.02158574,198.2265207,486.8714832,796.7889378,76.75217956,608.0679305,529.9598695,78.10806105,74.43781816,3.670242895,120.3619893,0,120.3619893,2.314361399,118.0476279,1.030121001,3.45970545,1.030689042,-1.030689042,0.353895483,0.353895483,0.157643613,1.672712219,53.80017489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55246219,1.676746955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211874309,51.71477449,72.7643365,53.39152145,529.9598695,0,0.665119512,48.30850532,-0.665119512,131.6914947,0.97482554,0,589.3827525,53.39152145,624.3264355,11,13,6% -2018-11-17 22:00:00,64.18175612,213.2356024,395.6230251,748.3937444,69.68426315,561.4341148,490.8687158,70.56539898,67.58302551,2.982373475,98.02462044,0,98.02462044,2.101237642,95.9233828,1.120182964,3.721663344,1.655816324,-1.655816324,0.246992421,0.246992421,0.176138037,1.132185613,36.41498118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.96337476,1.522339518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820264623,35.00346502,65.78363939,36.52580454,490.8687158,0,0.655896337,49.01235001,-0.655896337,130.98765,0.973768442,0,543.7761038,36.52580454,567.6815123,11,14,4% -2018-11-17 23:00:00,71.7503731,226.1555787,256.9363573,639.2308908,56.75633149,435.0003219,378.0185085,56.98181348,55.04491869,1.936894792,64.00860734,0,64.00860734,1.711412803,62.29719453,1.25228025,3.94715947,2.773813598,-2.773813598,0.055803627,0.055803627,0.220896459,0.512063195,16.46971257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.91126958,1.23991275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370988042,15.83131418,53.28225762,17.07122693,378.0185085,0,0.591364582,53.74609702,-0.591364582,126.253903,0.965449789,0,418.240147,17.07122693,429.4129236,11,15,3% -2018-11-17 00:00:00,81.00063728,237.1596131,90.74335443,373.6827388,32.29060029,210.005599,178.0046177,32.00098128,31.31691955,0.684061736,22.97545761,0,22.97545761,0.973680738,22.00177687,1.413727817,4.139216101,6.156306366,-6.156306366,0,0,0.355845345,0.243420185,7.829229887,0.343244519,1,0.161028636,0,0.943968743,0.982730706,0.724496596,1,30.35943213,0.70542838,0.05050354,0.312029739,0.866784567,0.591281163,0.961238037,0.922476074,0.166948808,7.525753567,30.52638094,8.231181947,116.9055083,0,0.476352262,61.55256779,-0.476352262,118.4474322,0.945035662,0,141.0062553,8.231181947,146.3933993,11,16,4% -2018-11-17 01:00:00,91.55599508,246.7461719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597953564,4.306533117,-36.75419605,36.75419605,1,0,#DIV/0!,0,0,1,0.828045485,0,0.027201067,0.961238037,1,0.650255692,0.925759096,0,0,0.115824807,0.22775687,0.724496596,0.448993192,0.973837873,0.935075909,0,0,0,0,0,0,0.315826536,71.5892818,-0.315826536,108.4107182,0.891685247,0,0,0,0,11,17,0% -2018-11-17 02:00:00,102.7596166,255.4913842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793493648,4.459165864,-4.395654309,4.395654309,1,0.718145152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124501563,82.8480274,-0.124501563,97.1519726,0.648398617,0,0,0,0,11,18,0% -2018-11-17 03:00:00,114.4077127,264.007986,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996791277,4.607808607,-2.138165586,2.138165586,1,0.89580154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086115238,94.94015845,0.086115238,85.05984155,0,0,0,0,0,11,19,0% -2018-11-17 04:00:00,126.2389481,273.0559235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203285288,4.765724907,-1.255397233,1.255397233,1,0.74483926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301678625,107.5584531,0.301678625,72.44154686,0,0.884260714,0,0,0,11,20,0% -2018-11-17 05:00:00,137.9474365,283.8574352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407636962,4.954246851,-0.749099914,0.749099914,1,0.65825732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507508828,120.498036,0.507508828,59.50196396,0,0.951479546,0,0,0,11,21,0% -2018-11-17 06:00:00,148.9875704,298.9273435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.600323649,5.217266369,-0.394968782,0.394968782,1,0.597697329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689591473,133.5977791,0.689591473,46.40222086,0,0.977493303,0,0,0,11,22,0% -2018-11-17 07:00:00,157.9626334,323.9379117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756968048,5.653783132,-0.111995468,0.111995468,1,0.549306043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835531928,146.6712669,0.835531928,33.32873314,0,0.990157882,0,0,0,11,23,0% -2018-11-18 08:00:00,161.3400875,4.340362759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815915742,0.075753621,0.139185882,-0.139185882,1,0.506351502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935399103,159.2927188,0.935399103,20.70728125,0,0.996546881,0,0,0,11,0,0% -2018-11-18 09:00:00,156.514003,42.18531381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731684678,0.736272622,0.384317761,-0.384317761,1,0.464431482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982401367,169.2349494,0.982401367,10.76505062,0,0.999104305,0,0,0,11,1,0% -2018-11-18 10:00:00,146.948847,64.62498174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564741212,1.12791871,0.647816541,-0.647816541,1,0.419370537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973348637,166.7423473,0.973348637,13.25765269,0,0.998630945,0,0,0,11,2,0% -2018-11-18 11:00:00,135.7174722,78.55907104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368716742,1.371114447,0.96440239,-0.96440239,1,0.365231168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908869225,155.3495516,0.908869225,24.65044844,0,0.994986585,0,0,0,11,3,0% -2018-11-18 12:00:00,123.9634265,88.88811788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163569944,1.551390323,1.40466206,-1.40466206,1,0.28994233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793366736,142.5012608,0.793366736,37.49873922,0,0.986977443,0,0,0,11,4,0% -2018-11-18 13:00:00,112.1590903,97.76569701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957545413,1.706333308,2.172716579,-2.172716579,1,0.158597272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634719908,129.3992137,0.634719908,50.60078633,0,0.971225096,0,0,0,11,5,0% -2018-11-18 14:00:00,100.5927002,106.282904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755673823,1.854986614,4.310420549,-4.310420549,1,0,#DIV/0!,0,0,0.171480117,1,0.227963204,0,0.935046898,0.973808862,0.724496596,1,0,0,0.027131653,0.312029739,0.925941167,0.650437763,0.961238037,0.922476074,0,0,0,0,0,0,-0.443745823,116.3431247,0.443745823,63.65687526,0,0.937322883,0,0,0,11,6,0% -2018-11-18 15:00:00,89.11054895,115.1543369,0.779366582,8.468329667,0.647910788,0.634249082,0,0.634249082,0.628373887,0.005875195,2.127226232,1.91872288,0.208503352,0.019536901,0.188966451,1.555272477,2.009822327,-45.42319529,45.42319529,0,0,0.831329958,0.004884225,0.157093472,1,0.862975737,0,0.022011628,0.961238037,1,0.663971868,0.939475272,0.604016882,0.013709483,0.115824807,0.24330632,0.724496596,0.448993192,0.971625901,0.932863938,0.003538605,0.151801711,0.607555486,0.165511194,0,0.262911589,-0.226576309,103.0955881,0.226576309,76.90441187,0,0.829323795,0.607555486,0.383550031,0.85858131,11,7,41% -2018-11-18 16:00:00,79.20447611,124.9794889,121.4768538,444.3572166,38.24671426,38.00917854,0,38.00917854,37.09343471,0.915743836,38.06864194,7.461892776,30.60674916,1.15327955,29.45346961,1.38237889,2.181303579,-3.009607401,3.009607401,0.955173133,0.955173133,0.314847751,0.887618386,28.54885847,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.65562036,0.835547108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.643076499,27.44224867,36.29869686,28.27779578,0,7.461892776,-0.016792554,90.96218772,0.016792554,89.03781228,0,0,36.29869686,28.27779578,54.80594863,11,8,51% -2018-11-18 17:00:00,70.25989402,136.3235521,284.5911347,666.320866,59.53847187,185.2307026,125.3421671,59.88853546,57.74316727,2.145368185,70.79772008,0,70.79772008,1.795304601,69.00241548,1.226266483,2.379294832,-1.119076425,1.119076425,0.721527029,0.721527029,0.20920705,1.672927084,53.80708568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.50492875,1.300692072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.212029978,51.72141741,56.71695873,53.02210948,125.3421671,0,0.188110824,79.15744547,-0.188110824,100.8425545,0.78419924,0,155.0101909,53.02210948,189.7121011,11,9,22% -2018-11-18 18:00:00,63.13855611,149.6404347,414.4704776,759.9564648,71.09593693,353.0461069,280.9695212,72.07658565,68.95213211,3.124453533,102.6369707,0,102.6369707,2.143804814,100.4931659,1.101975689,2.611718279,-0.355046342,0.355046342,0.59087019,0.59087019,0.171534381,2.065420067,66.43100919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.27941211,1.55317929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496389808,63.85601286,67.77580192,65.40919215,280.9695212,0,0.369717917,68.30177845,-0.369717917,111.6982216,0.914761761,0,324.795976,65.40919215,367.604984,11,10,13% -2018-11-18 19:00:00,58.57013373,164.9833174,494.7900152,800.8052361,77.2065317,491.3095471,412.7011411,78.60840604,74.87846991,3.729936135,122.2956295,0,122.2956295,2.328061792,119.9675677,1.022241677,2.8795021,0.142142165,-0.142142165,0.505845948,0.505845948,0.156038985,2.174378371,69.9354828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97603341,1.686672844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.575329728,67.22464619,73.55136314,68.91131904,412.7011411,0,0.515357696,58.97863315,-0.515357696,121.0213669,0.952980007,0,466.8472995,68.91131904,511.9483796,11,11,10% -2018-11-18 20:00:00,57.19370212,181.6195699,518.3605088,811.1112054,78.89997023,579.2960897,498.8676242,80.42846549,76.52084502,3.907620472,128.0616319,0,128.0616319,2.379125212,125.6825067,0.998218413,3.16985948,0.571572249,-0.571572249,0.432409078,0.432409078,0.152210612,2.027283035,65.20439114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55474684,1.723668117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468759658,62.67694093,75.0235065,64.40060905,498.8676242,0,0.615042205,52.04501297,-0.615042205,127.954987,0.968704766,0,558.2789516,64.40060905,600.4278622,11,12,8% -2018-11-18 21:00:00,59.23803357,198.0988354,483.240539,795.5042533,76.36193802,604.3003876,526.5981725,77.70221515,74.05934385,3.642871304,119.4698576,0,119.4698576,2.302594177,117.1672634,1.033898728,3.457476922,1.036624399,-1.036624399,0.352880477,0.352880477,0.158020555,1.658011574,53.32735161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18865829,1.668221643,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.201223741,51.26027877,72.38988203,52.92850041,526.5981725,0,0.661967765,48.54988105,-0.661967765,131.4501189,0.974467621,0,585.5427505,52.92850041,620.1833954,11,13,6% -2018-11-18 22:00:00,64.37006977,213.0662198,392.3429222,746.8225308,69.29976553,557.8115887,487.6438201,70.16776859,67.21012191,2.957646674,97.21772749,0,97.21772749,2.08964362,95.12808387,1.123469657,3.718707061,1.666097417,-1.666097417,0.245234251,0.245234251,0.176630599,1.119614125,36.0106389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.60492564,1.513939689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.811156622,34.61479584,65.41608227,36.12873553,487.6438201,0,0.652958099,49.23499705,-0.652958099,130.765003,0.973425408,0,540.1009669,36.12873553,563.7465017,11,14,4% -2018-11-18 23:00:00,71.90946104,225.9635381,254.0978679,636.8143061,56.35462696,431.4724548,374.9016307,56.57082409,54.65532703,1.91549706,63.30826985,0,63.30826985,1.699299929,61.60896992,1.255056859,3.943807729,2.795766598,-2.795766598,0.052049443,0.052049443,0.221783156,0.502413634,16.15934951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.53677926,1.231137014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363996968,15.5329814,52.90077623,16.76411841,374.9016307,0,0.588714209,53.93418241,-0.588714209,126.0658176,0.965069147,0,414.7067731,16.76411841,425.6785534,11,15,3% -2018-11-18 00:00:00,81.1331852,236.955363,88.61655454,368.7379007,31.77997929,206.2916682,174.8019435,31.48972468,30.82169566,0.66802902,22.44439325,0,22.44439325,0.958283631,21.48610962,1.416041214,4.135651265,6.244737351,-6.244737351,0,0,0.358623504,0.239570908,7.705423915,0.349703166,1,0.158786731,0,0.944250344,0.983012307,0.724496596,1,29.88031249,0.694273229,0.051318311,0.312029739,0.864800193,0.589296789,0.961238037,0.922476074,0.164259685,7.406746557,30.04457217,8.101019786,113.6731505,0,0.474054723,61.70217902,-0.474054723,118.297821,0.944526945,0,137.4119257,8.101019786,142.7138812,11,16,4% -2018-11-18 01:00:00,91.66936804,246.5322907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599932296,4.302800186,-34.24930157,34.24930157,1,0,#DIV/0!,0,0,1,0.814372375,0,0.029189383,0.961238037,1,0.645056489,0.920559894,0,0,0.115824807,0.221865688,0.724496596,0.448993192,0.9746623,0.935900337,0,0,0,0,0,0,0.313874044,71.70714579,-0.313874044,108.2928542,0.890700431,0,0,0,0,11,17,0% -2018-11-18 02:00:00,102.8580334,255.2648993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795211345,4.455212958,-4.362489494,4.362489494,1,0.723816669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122921516,82.93925827,-0.122921516,97.06074173,0.643236386,0,0,0,0,11,18,0% -2018-11-18 03:00:00,114.4971571,263.7614699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998352376,4.603506089,-2.131591465,2.131591465,1,0.894677299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087343714,95.01081119,0.087343714,84.98918881,0,0.47754896,0,0,0,11,19,0% -2018-11-18 04:00:00,126.3266334,272.7769636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204815685,4.760856138,-1.253954511,1.253954511,1,0.74459254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302600497,107.6138621,0.302600497,72.38613786,0,0.884765638,0,0,0,11,20,0% -2018-11-18 05:00:00,138.0438009,283.527093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409318837,4.948481291,-0.749445939,0.749445939,1,0.658316493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508190074,120.5433465,0.508190074,59.4566535,0,0.951611616,0,0,0,11,21,0% -2018-11-18 06:00:00,149.1105486,298.5244827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602470023,5.210235121,-0.396212754,0.396212754,1,0.597910061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690114552,133.6391774,0.690114552,46.36082265,0,0.97754826,0,0,0,11,22,0% -2018-11-18 07:00:00,158.1420249,323.5084092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760099021,5.646286899,-0.113875073,0.113875073,1,0.549627474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835990113,146.7190767,0.835990113,33.28092331,0,0.99019068,0,0,0,11,23,0% -2018-11-19 08:00:00,161.5779017,4.227220967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820066383,0.073778924,0.136683189,-0.136683189,1,0.506779488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935890064,159.37242,0.935890064,20.62757999,0,0.996574922,0,0,0,11,0,0% -2018-11-19 09:00:00,156.7367322,42.41273646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735572036,0.740241896,0.38103049,-0.38103049,1,0.464993638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98302045,169.4265393,0.98302045,10.57346073,0,0.999136358,0,0,0,11,1,0% -2018-11-19 10:00:00,147.1407637,64.89021257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56809079,1.132547862,0.643353285,-0.643353285,1,0.420133798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974182292,166.9522598,0.974182292,13.04774021,0,0.998674904,0,0,0,11,2,0% -2018-11-19 11:00:00,135.8933576,78.79309202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371786522,1.375198884,0.957899977,-0.957899977,1,0.366343146,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909989051,155.5038385,0.909989051,24.49616153,0,0.995054284,0,0,0,11,3,0% -2018-11-19 12:00:00,124.1344856,89.09074899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16655549,1.554926903,1.393953738,-1.393953738,1,0.291773561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794824533,142.6386855,0.794824533,37.36131453,0,0.987093034,0,0,0,11,4,0% -2018-11-19 13:00:00,112.3324355,97.94421342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960570857,1.709449008,2.15049375,-2.15049375,1,0.162397599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636544096,129.5346015,0.636544096,50.46539849,0,0.971450846,0,0,0,11,5,0% -2018-11-19 14:00:00,100.7732702,106.4426575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758825363,1.857774838,4.227798646,-4.227798646,1,0,#DIV/0!,0,0,0.161666328,1,0.232261121,0,0.934440513,0.973202476,0.724496596,1,0,0,0.025689181,0.312029739,0.929733304,0.6542299,0.961238037,0.922476074,0,0,0,0,0,0,-0.445939464,116.4834611,0.445939464,63.51653893,0,0.937877158,0,0,0,11,6,0% -2018-11-19 15:00:00,89.27799776,115.2973787,0.525631787,6.374766298,0.445303466,0.435838358,0,0.435838358,0.431875924,0.003962434,1.59894866,1.458075605,0.140873055,0.013427543,0.127445512,1.55819501,2.012318878,-55.81877057,55.81877057,0,0,0.847177582,0.003356886,0.107968981,1,0.889815973,0,0.017913204,0.961238037,1,0.674953841,0.950457245,0.415135565,0.009470579,0.115824807,0.255763821,0.724496596,0.448993192,0.96981644,0.931054476,0.002432052,0.104248963,0.417567617,0.113719542,0,0.160656642,-0.228726127,103.2220851,0.228726127,76.77791488,0,0.831397951,0.417567617,0.247289144,0.579413417,11,7,39% -2018-11-19 16:00:00,79.40822582,125.1037325,118.0071854,437.6619539,37.56044058,37.31744272,0,37.31744272,36.42785471,0.88958801,38.3265556,8.581761393,29.74479421,1.132585867,28.61220834,1.385934994,2.183472039,-3.059378066,3.059378066,0.946661848,0.946661848,0.318289437,0.857241539,27.57183464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.01583955,0.820554605,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.621068577,26.5030962,35.63690813,27.3236508,0,8.581761393,-0.019608196,91.12353888,0.019608196,88.87646112,0,0,35.63690813,27.3236508,53.5196911,11,8,50% -2018-11-19 17:00:00,70.47947187,136.4213863,280.6404088,663.187408,59.03993708,182.0956684,122.7204173,59.37525109,57.25966514,2.115585945,69.8247882,0,69.8247882,1.780271937,68.04451626,1.230098839,2.381002361,-1.128299928,1.128299928,0.723104341,0.723104341,0.210375752,1.653026773,53.16702327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.04016811,1.289800958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.19761227,51.10616507,56.23778038,52.39596603,122.7204173,0,0.185046362,79.33616458,-0.185046362,100.6638354,0.779797444,0,151.9348481,52.39596603,186.22696,11,9,23% -2018-11-19 18:00:00,63.37109707,149.6977635,410.4217061,758.052111,70.65510266,349.4451663,277.8266435,71.61852281,68.52459063,3.093932183,101.6420064,0,101.6420064,2.130512035,99.51149434,1.106034295,2.612718857,-0.356686934,0.356686934,0.591150748,0.591150748,0.172152451,2.046744887,65.8303512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.86844297,1.543548717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482859703,63.27863756,67.35130267,64.82218627,277.8266435,0,0.366500719,68.50003129,-0.366500719,111.4999687,0.913574619,0,321.1666728,64.82218627,363.5914972,11,10,13% -2018-11-19 19:00:00,58.80810377,164.9827089,490.8030909,799.3940824,76.79208032,487.5335251,409.3571284,78.17639678,74.47651577,3.699881015,121.3164563,0,121.3164563,2.315564554,119.0008917,1.026395038,2.879491479,0.143460605,-0.143460605,0.505620481,0.505620481,0.156462096,2.156927542,69.37420413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58965981,1.677618637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562686662,66.68512379,73.15234647,68.36274243,409.3571284,0,0.512084262,59.19723865,-0.512084262,120.8027613,0.952359819,0,463.0076271,68.36274243,507.7496748,11,11,10% -2018-11-19 20:00:00,57.42439007,181.5510364,514.5533955,809.8821071,78.50305728,575.5100378,495.4952165,80.0148213,76.13590046,3.878920844,127.1265849,0,127.1265849,2.367156822,124.759428,1.002244678,3.168663346,0.574916734,-0.574916734,0.431837138,0.431837138,0.152565425,2.011294724,64.69015209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.18472349,1.71499706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457176181,62.1826348,74.64189967,63.89763186,495.4952165,0,0.611811537,52.27939556,-0.611811537,127.7206044,0.968275487,0,554.4177716,63.89763186,596.2374937,11,12,8% -2018-11-19 21:00:00,59.4482117,197.9700641,479.7108705,794.2528303,75.978685,600.6178808,523.3139703,77.30391049,73.68764732,3.616263173,118.6024921,0,118.6024921,2.291037684,116.3114545,1.037567029,3.455229438,1.042331132,-1.042331132,0.351904568,0.351904568,0.15838433,1.643782294,52.86968904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83136945,1.659849003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190914676,50.8203561,72.02228412,52.4802051,523.3139703,0,0.658875802,48.7858087,-0.658875802,131.2141913,0.974113164,0,581.7893115,52.4802051,616.1365561,11,13,6% -2018-11-19 22:00:00,64.55202531,212.8973113,389.1733291,745.3014108,68.9237521,554.2934045,484.5142049,69.77919962,66.84544668,2.933752943,96.43788477,0,96.43788477,2.078305427,94.35957934,1.126645381,3.71575905,1.676024954,-1.676024954,0.243536542,0.243536542,0.177102969,1.107516574,35.6215401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25438594,1.505725207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.802391988,34.24077927,65.05677792,35.74650448,484.5142049,0,0.650091625,49.45148967,-0.650091625,130.5485103,0.973087765,0,536.5316225,35.74650448,559.9269948,11,14,4% -2018-11-19 23:00:00,72.06227538,225.772971,251.3749108,634.4853092,55.96415911,428.0726089,371.9010054,56.17160349,54.27663323,1.894970259,62.63628333,0,62.63628333,1.687525883,60.94875745,1.257723972,3.940481707,2.817036235,-2.817036235,0.048412121,0.048412121,0.222632239,0.493196824,15.8629052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.17276437,1.222606758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.35731942,15.24802786,52.53008379,16.47063461,371.9010054,0,0.586145968,54.11601132,-0.586145968,125.8839887,0.964697016,0,411.301874,16.47063461,422.081575,11,15,3% -2018-11-19 00:00:00,81.25959542,236.7532034,86.60000205,363.9917962,31.28858712,202.7464477,171.7484995,30.99794817,30.34512078,0.652827395,21.94063946,0,21.94063946,0.943466344,20.99717312,1.418247489,4.132122914,6.331281805,-6.331281805,0,0,0.361300074,0.235866586,7.586280194,0.355902205,1,0.156651795,0,0.944517456,0.983279419,0.724496596,1,29.41910759,0.683538155,0.052096284,0.312029739,0.862910352,0.587406948,0.961238037,0.922476074,0.161676925,7.292221081,29.58078452,7.975759236,110.6228299,0,0.471847171,61.84573261,-0.471847171,118.1542674,0.944033486,0,134.0124402,7.975759236,139.2324151,11,16,4% -2018-11-19 01:00:00,91.77665812,246.320919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601804861,4.299111053,-32.17240932,32.17240932,1,0,#DIV/0!,0,0,1,0.801270269,0,0.03107253,0.961238037,1,0.64016098,0.915664384,0,0,0.115824807,0.216320128,0.724496596,0.448993192,0.975431483,0.93666952,0,0,0,0,0,0,0.312017378,71.8191508,-0.312017378,108.1808492,0.889752515,0,0,0,0,11,17,0% -2018-11-19 02:00:00,102.9503834,255.0412615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796823157,4.451309741,-4.331831374,4.331831374,1,0.729059517,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121439422,83.024817,-0.121439422,96.975183,0.638272086,0,0,0,0,11,18,0% -2018-11-19 03:00:00,114.5804515,263.5181085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999806138,4.599258632,-2.125594604,2.125594604,1,0.893651775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088475459,95.07590743,0.088475459,84.92409257,0,0.484871539,0,0,0,11,19,0% -2018-11-19 04:00:00,126.4079458,272.5014028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206234854,4.756046696,-1.252743241,1.252743241,1,0.744385401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303430123,107.6637413,0.303430123,72.33625873,0,0.885217415,0,0,0,11,20,0% -2018-11-19 05:00:00,138.1333717,283.2000505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410882143,4.942773322,-0.749905977,0.749905977,1,0.658395164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508786513,120.5830337,0.508786513,59.41696628,0,0.951726955,0,0,0,11,21,0% -2018-11-19 06:00:00,149.226099,298.123213,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604486758,5.203231644,-0.397516297,0.397516297,1,0.59813298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690562701,133.6746681,0.690562701,46.32533192,0,0.977595279,0,0,0,11,22,0% -2018-11-19 07:00:00,158.31371,323.0730881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76309549,5.638689112,-0.115782592,0.115782592,1,0.549953679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836385002,146.7603307,0.836385002,33.23966926,0,0.990218918,0,0,0,11,23,0% -2018-11-20 08:00:00,161.8099836,4.100440704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824116977,0.071566191,0.134175694,-0.134175694,1,0.507208295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93633032,159.4441411,0.93633032,20.55585886,0,0.996600042,0,0,0,11,0,0% -2018-11-20 09:00:00,156.9560206,42.62945553,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739399341,0.744024357,0.377760385,-0.377760385,1,0.465552859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983601502,169.6095362,0.983601502,10.3904638,0,0.999166405,0,0,0,11,1,0% -2018-11-20 10:00:00,147.3306082,65.14631121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571404202,1.137017626,0.638935,-0.638935,1,0.42088937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974989807,167.1588038,0.974989807,12.84119615,0,0.998717413,0,0,0,11,2,0% -2018-11-20 11:00:00,136.0679168,79.01916765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374833155,1.379144648,0.951489065,-0.951489065,1,0.367439476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911093019,155.6568383,0.911093019,24.34316168,0,0.995120861,0,0,0,11,3,0% -2018-11-20 12:00:00,124.3045424,89.28625223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169523541,1.558339078,1.383441056,-1.383441056,1,0.293571336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796274439,142.7757958,0.796274439,37.22420417,0,0.987207579,0,0,0,11,4,0% -2018-11-20 13:00:00,112.5048143,98.11607521,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963579433,1.712448562,2.128817573,-2.128817573,1,0.166104444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638365494,129.6700462,0.638365494,50.3299538,0,0.971674964,0,0,0,11,5,0% -2018-11-20 14:00:00,100.9526833,106.5959635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761956712,1.860450533,4.148642653,-4.148642653,1,0,#DIV/0!,0,0,0.152043651,1,0.236530653,0,0.933834192,0.972596155,0.724496596,1,0,0,0.02426264,0.312029739,0.933499649,0.657996245,0.961238037,0.922476074,0,0,0,0,0,0,-0.448132197,116.6239106,0.448132197,63.37608936,0,0.938425781,0,0,0,11,6,0% -2018-11-20 15:00:00,89.44226727,115.4339933,0.332928103,4.703217889,0.287146422,0.280997651,0,0.280997651,0.278487898,0.002509753,1.175106944,1.085726147,0.089380797,0.008658524,0.080722273,1.561062054,2.014703251,-72.08636609,72.08636609,0,0,0.862487785,0.002164631,0.069621975,1,0.915666246,0,0.013871359,0.961238037,1,0.68591319,0.961416594,0.26769316,0.00614017,0.115824807,0.268201914,0.724496596,0.448993192,0.967976968,0.929215005,0.001568268,0.067164878,0.269261428,0.073305048,0,0.091563362,-0.230847512,103.3469734,0.230847512,76.65302657,0,0.833406806,0.269261428,0.149614577,0.367181176,11,7,36% -2018-11-20 16:00:00,79.60976363,125.2214826,114.5898073,430.9125207,36.87407285,36.62600988,0,36.62600988,35.76218351,0.86382637,38.55492185,9.659407058,28.89551479,1.111889347,27.78362545,1.389452492,2.185527166,-3.110881524,3.110881524,0.937854238,0.937854238,0.321791909,0.827418025,26.61260791,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.37597107,0.805560047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.599461542,25.58105098,34.97543261,26.38661103,0,9.659407058,-0.022416167,91.28445935,0.022416167,88.71554065,0,0,34.97543261,26.38661103,52.2449418,11,8,49% -2018-11-20 17:00:00,70.69602445,136.5127505,276.7436512,660.0499297,58.54442535,178.992217,120.1269115,58.86530546,56.77909492,2.08621054,68.86503269,0,68.86503269,1.76533043,67.09970226,1.233878395,2.382596967,-1.137812714,1.137812714,0.724731123,0.724731123,0.211547492,1.633426839,52.53662202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.57822573,1.278975887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.183412185,50.50019941,55.76163792,51.7791753,120.1269115,0,0.181996704,79.5139162,-0.181996704,100.4860838,0.77526975,0,148.8923985,51.7791753,182.7808332,11,9,23% -2018-11-20 18:00:00,63.59958873,149.7490376,406.4386313,756.1597889,70.21852637,345.8842149,274.7191301,71.1650848,68.10117872,3.063906083,100.6630994,0,100.6630994,2.117347649,98.54575173,1.110022226,2.613613758,-0.358491783,0.358491783,0.591459395,0.591459395,0.172765384,2.028431661,65.2413349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46144334,1.534011164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469591833,62.71245268,66.93103517,64.24646384,274.7191301,0,0.363308303,68.69649017,-0.363308303,111.3035098,0.91237584,0,317.5781323,64.24646384,359.626158,11,10,13% -2018-11-20 19:00:00,59.0409704,164.9771892,486.8950935,798.0022092,76.38279898,483.8113055,406.0613088,77.74999665,74.07957577,3.67042088,120.3565757,0,120.3565757,2.303223212,118.0533525,1.030459327,2.879395141,0.144625588,-0.144625588,0.505421257,0.505421257,0.156877323,2.139890047,68.82621972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.20810598,1.668677376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.550343054,66.15838033,72.75844904,67.8270577,406.0613088,0,0.508847349,59.41291729,-0.508847349,120.5870827,0.951738704,0,459.2227128,67.8270577,503.6141656,11,11,10% -2018-11-20 20:00:00,57.64915022,181.479454,510.8381645,808.6788497,78.11224756,571.7940305,492.1862415,79.60778895,75.75687509,3.850913863,126.2139997,0,126.2139997,2.355372467,123.8586273,1.006167482,3.167413996,0.57808327,-0.57808327,0.431295628,0.431295628,0.152909968,1.995759968,64.19050096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.82038989,1.706459335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445921303,61.70235112,74.26631119,63.40881046,492.1862415,0,0.608630041,52.5094882,-0.608630041,127.4905118,0.967848288,0,550.6279223,63.40881046,592.1277206,11,12,8% -2018-11-20 21:00:00,59.65203898,197.8402496,476.2845923,793.0367653,75.60262693,597.0231103,520.109747,76.91336323,73.32292879,3.59043444,117.7604118,0,117.7604118,2.279698146,115.4807136,1.041124486,3.452963749,1.047799879,-1.047799879,0.350969357,0.350969357,0.158734144,1.630030956,52.42739875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.48078812,1.651633546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.180951879,50.39520985,71.66174,52.04684339,520.109747,0,0.655845693,49.01619397,-0.655845693,130.983806,0.973762555,0,578.1251361,52.04684339,612.1887542,11,13,6% -2018-11-20 22:00:00,64.7275501,212.7289238,386.1160183,743.833191,68.55645033,550.8822827,481.4823567,69.39992605,66.48922041,2.910705642,95.68552887,0,95.68552887,2.067229924,93.61829894,1.129708866,3.712820135,1.685581366,-1.685581366,0.241902299,0.241902299,0.177554018,1.095896951,35.24781305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.91196769,1.497701043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.79397361,33.88153862,64.7059413,35.37923967,481.4823567,0,0.647298833,49.66174629,-0.647298833,130.3382537,0.972755924,0,533.0707562,35.37923967,556.225761,11,14,4% -2018-11-20 23:00:00,72.2087541,225.5839379,248.7687219,632.2486856,55.58524503,424.8037046,369.0192361,55.78446851,53.9091448,1.875323706,61.992957,0,61.992957,1.676100225,60.31685677,1.260280508,3.937182456,2.837576145,-2.837576145,0.04489959,0.04489959,0.223441454,0.484412268,15.5803637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.81952052,1.214328908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350955039,14.97643822,52.17047556,16.19076713,369.0192361,0,0.583661531,54.29151049,-0.583661531,125.7084895,0.964333912,0,408.0282391,16.19076713,418.6247724,11,15,3% -2018-11-20 00:00:00,81.3798214,236.5532111,84.69343151,359.4546995,30.81708241,199.3732744,168.8469859,30.52628853,29.88783367,0.638454861,21.46415175,0,21.46415175,0.929248737,20.53490302,1.420345828,4.12863239,6.415644589,-6.415644589,0,0,0.363866263,0.232312184,7.471958417,0.361832267,1,0.154624784,0,0.944770114,0.983532077,0.724496596,1,28.97645644,0.673237547,0.052836817,0.312029739,0.861115917,0.585612513,0.961238037,0.922476074,0.159203199,7.18233064,29.13565964,7.855568187,107.7526982,0,0.469730918,61.98316876,-0.469730918,118.0168312,0.94355608,0,130.8063732,7.855568187,135.9476855,11,16,4% -2018-11-20 01:00:00,91.87782804,246.1121517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603570609,4.295467376,-30.43061091,30.43061091,1,0,#DIV/0!,0,0,1,0.788766369,0,0.032849826,0.961238037,1,0.635566261,0.911069665,0,0,0.115824807,0.211116641,0.724496596,0.448993192,0.976147133,0.93738517,0,0,0,0,0,0,0.310257556,71.92524729,-0.310257556,108.0747527,0.88884357,0,0,0,0,11,17,0% -2018-11-20 02:00:00,103.0366429,254.8205874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798328668,4.447458252,-4.303595395,4.303595395,1,0.733888154,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.12005591,83.10467067,-0.12005591,96.89532933,0.633527376,0,0,0,0,11,18,0% -2018-11-20 03:00:00,114.657585,263.2780493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001152371,4.595068808,-2.120166956,2.120166956,1,0.892723593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089510234,95.13543187,0.089510234,84.86456813,0,0.491404658,0,0,0,11,19,0% -2018-11-20 04:00:00,126.4828849,272.2294375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207542789,4.751300005,-1.251761605,1.251761605,1,0.744217531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304167629,107.7080935,0.304167629,72.2919065,0,0.885616959,0,0,0,11,20,0% -2018-11-20 05:00:00,138.216153,282.8765917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412326949,4.937127902,-0.75047921,0.75047921,1,0.658493193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509298582,120.6171199,0.509298582,59.38288009,0,0.951825762,0,0,0,11,21,0% -2018-11-20 06:00:00,149.334209,297.7239758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606373633,5.196263639,-0.398878734,0.398878734,1,0.59836597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690936598,133.7042945,0.690936598,46.29570547,0,0.97763446,0,0,0,11,22,0% -2018-11-20 07:00:00,158.477603,322.6324388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.765955963,5.630998331,-0.11771728,0.11771728,1,0.55028453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836717426,146.7950941,0.836717426,33.20490588,0,0.990242669,0,0,0,11,23,0% -2018-11-21 08:00:00,162.0362124,3.959711174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.828065415,0.069109997,0.131664291,-0.131664291,1,0.50763777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936720751,159.5079465,0.936720751,20.4920535,0,0.996622299,0,0,0,11,0,0% -2018-11-21 09:00:00,157.1718242,42.83502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743165825,0.747612243,0.374508544,-0.374508544,1,0.466108957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984145359,169.7837548,0.984145359,10.21624518,0,0.999194497,0,0,0,11,1,0% -2018-11-21 10:00:00,147.5183581,65.39300657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574681057,1.141323273,0.634563035,-0.634563035,1,0.421637019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975771868,167.3619997,0.975771868,12.63800032,0,0.998758515,0,0,0,11,2,0% -2018-11-21 11:00:00,136.2411199,79.23712636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377856119,1.382948745,0.945171231,-0.945171231,1,0.36851989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91218158,155.8085924,0.91218158,24.19140764,0,0.995186352,0,0,0,11,3,0% -2018-11-21 12:00:00,124.4735531,89.47450698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172473333,1.561624743,1.373125231,-1.373125231,1,0.295335445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797716597,142.9126033,0.797716597,37.08739666,0,0.987321099,0,0,0,11,4,0% -2018-11-21 13:00:00,112.6761679,98.28119215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966570118,1.715330396,2.107682875,-2.107682875,1,0.16971869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640183887,129.8055329,0.640183887,50.19446714,0,0.971897441,0,0,0,11,5,0% -2018-11-21 14:00:00,101.1308662,106.7427545,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76506659,1.863012519,4.072795425,-4.072795425,1,0,#DIV/0!,0,0,0.142613656,1,0.240768714,0,0.933228467,0.97199043,0.724496596,1,0,0,0.022852837,0.312029739,0.937237509,0.661734105,0.961238037,0.922476074,0,0,0,0,0,0,-0.450323423,116.7644363,0.450323423,63.23556367,0,0.938968689,0,0,0,11,6,0% -2018-11-21 15:00:00,89.60331903,115.5641339,0.19152183,3.398733064,0.167991266,0.164369482,0,0.164369482,0.16292571,0.001443772,0.843204249,0.791702008,0.051502241,0.005065556,0.046436685,1.563872938,2.016974635,-101.1208899,101.1208899,0,0,0.877139001,0.001266389,0.040731427,1,0.94055702,0,0.009888831,0.961238037,1,0.696836806,0.97234021,0.156610389,0.003612824,0.115824807,0.280604985,0.724496596,0.448993192,0.966110293,0.927348329,0.000917495,0.039257201,0.157527884,0.042870024,0,0.047061127,-0.232940332,103.4702434,0.232940332,76.52975658,0,0.835352757,0.157527884,0.082182666,0.211314795,11,7,34% -2018-11-21 16:00:00,79.80899112,125.3327161,111.2267157,424.114318,36.18804487,35.93531576,0,35.93531576,35.09684179,0.838473965,38.75350452,10.69409649,28.05940803,1.091203072,26.96820496,1.392929668,2.187468557,-3.164161857,3.164161857,0.928742764,0.928742764,0.325353892,0.798165657,25.67175121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.73641931,0.790572911,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.578268301,24.67666373,34.31468761,25.46723664,0,10.69409649,-0.025215127,91.44487351,0.025215127,88.55512649,0,0,34.31468761,25.46723664,50.98248465,11,8,49% -2018-11-21 17:00:00,70.90944707,136.5976491,272.9030347,656.9114123,58.05221583,175.9221427,117.563157,58.35898568,56.30172733,2.05725835,67.91898881,0,67.91898881,1.750488497,66.16850031,1.237603322,2.384078728,-1.14761535,1.14761535,0.726407473,0.726407473,0.212721034,1.614137982,51.91622606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.11936185,1.268222957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.169437473,49.90385122,55.28879932,51.17207417,117.563157,0,0.178963487,79.69060832,-0.178963487,100.3093917,0.770613401,0,145.8845435,51.17207417,179.3756426,11,9,23% -2018-11-21 18:00:00,63.82392651,149.794289,402.5235869,754.2817282,69.78644147,342.3654569,271.6489413,70.7165156,67.68212277,3.034392825,99.70082259,0,99.70082259,2.104318695,97.5965039,1.113937659,2.614403543,-0.360462982,0.360462982,0.59179649,0.59179649,0.173372303,2.010490592,64.66428847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05863082,1.524571731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45659359,62.1577737,66.51522441,63.68234543,271.6489413,0,0.360142545,68.89104954,-0.360142545,111.1089505,0.911166084,0,314.0325264,63.68234543,355.7113478,11,10,13% -2018-11-21 19:00:00,59.26863642,164.9668065,483.0683824,796.6315265,75.97889986,480.1453472,402.815918,77.32942921,73.68785569,3.641573515,119.4165662,0,119.4165662,2.291044163,117.1255221,1.034432849,2.879213929,0.145633319,-0.145633319,0.505248925,0.505248925,0.157283943,2.123275245,68.2918306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83156975,1.659853697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538305687,65.64470518,72.36987543,67.30455888,402.815918,0,0.505648979,59.62555749,-0.505648979,120.3744425,0.951117174,0,455.495013,67.30455888,499.5445007,11,11,10% -2018-11-21 20:00:00,57.86789564,181.4048696,507.2170747,807.5032977,77.72774309,568.1506555,488.9430741,79.20758141,75.38396485,3.823616559,125.3244304,0,125.3244304,2.343778239,122.9806521,1.00998531,3.166112254,0.581066053,-0.581066053,0.430785542,0.430785542,0.153243546,1.980686847,63.70569757,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.46193439,1.698059356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.435000878,61.23633967,73.89693526,62.93439903,488.9430741,0,0.605499786,52.73518531,-0.605499786,127.2648147,0.967423588,0,546.9119982,62.93439903,588.1013036,11,12,8% -2018-11-21 21:00:00,59.84943734,197.7094338,472.9637448,791.8581486,75.23396537,593.5186997,516.9879155,76.53078422,72.96538373,3.565400489,116.9441174,0,116.9441174,2.26858164,114.6755357,1.044569737,3.450680582,1.053021362,-1.053021362,0.350076431,0.350076431,0.159069202,1.616763847,52.00068292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13710221,1.643579675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171339904,49.98503436,71.30844212,51.62861404,516.9879155,0,0.652879454,49.2409462,-0.652879454,130.7590538,0.973416184,0,574.5528459,51.62861404,608.3427413,11,13,6% -2018-11-21 22:00:00,64.89657447,212.5611035,383.1726897,742.4206552,68.19808151,547.5808596,478.5506843,69.03017532,66.14165773,2.888517588,94.96107863,0,94.96107863,2.056423782,92.90465485,1.132658898,3.709891118,1.694749224,-1.694749224,0.240334503,0.240334503,0.177982626,1.084758989,34.88957791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57787723,1.48987203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.785904195,33.53718937,64.36378143,35.0270614,478.5506843,0,0.644581587,49.86568844,-0.644581587,130.1343116,0.972430301,0,529.7209672,35.0270614,552.6454784,11,14,4% -2018-11-21 23:00:00,72.34883805,225.3964977,246.2804692,630.1091592,55.21819249,421.6685626,366.2588362,55.40972646,53.55316025,1.856566206,61.37858333,0,61.37858333,1.665032237,59.71355109,1.262725434,3.933911007,2.857340106,-2.857340106,0.041519753,0.041519753,0.224208573,0.476059298,15.31170348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.47733463,1.206310188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344903341,14.71819179,51.82223797,15.92450198,366.2588362,0,0.581262518,54.46060953,-0.581262518,125.5393905,0.963980347,0,404.888558,15.92450198,415.3108261,11,15,3% -2018-11-21 00:00:00,81.49381938,236.3554614,82.89651175,355.136574,30.3660956,196.1752931,166.0999384,30.0753547,29.45044578,0.624908921,21.01486884,0,21.01486884,0.915649821,20.09921902,1.422335468,4.125181007,6.497523219,-6.497523219,0,0,0.36631331,0.228912455,7.362611446,0.367484219,1,0.152706616,0,0.945008351,0.983770314,0.724496596,1,28.55297009,0.663385179,0.053539292,0.312029739,0.859417723,0.583914319,0.961238037,0.922476074,0.156841079,7.077222172,28.70981117,7.740607351,105.0608323,0,0.467707216,62.11443038,-0.467707216,117.8855696,0.943095513,0,127.7922107,7.740607351,132.8582834,11,16,4% -2018-11-21 01:00:00,91.97284331,245.906082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605228938,4.291870782,-28.95668094,28.95668094,1,0,#DIV/0!,0,0,1,0.776887199,0,0.034520626,0.961238037,1,0.631269558,0.906772962,0,0,0.115824807,0.206251834,0.724496596,0.448993192,0.976810855,0.938048892,0,0,0,0,0,0,0.308595543,72.02538825,-0.308595543,107.9746117,0.887975625,0,0,0,0,11,17,0% -2018-11-21 02:00:00,103.1167908,254.6029918,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799727513,4.443660493,-4.277704897,4.277704897,1,0.738315689,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.118771561,83.1787888,-0.118771561,96.8212112,0.629023805,0,0,0,0,11,18,0% -2018-11-21 03:00:00,114.7285496,263.0414366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002390937,4.590939138,-2.115301157,2.115301157,1,0.891891492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090447841,95.18937157,0.090447841,84.81062843,0,0.497195208,0,0,0,11,19,0% -2018-11-21 04:00:00,126.551454,271.9612602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208739546,4.746619428,-1.25100793,1.25100793,1,0.744088645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304813171,107.7469242,0.304813171,72.25307582,0,0.885965094,0,0,0,11,20,0% -2018-11-21 05:00:00,138.2921532,282.556997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413653403,4.931549922,-0.751164864,0.751164864,1,0.658610447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509726742,120.6456298,0.509726742,59.35437015,0,0.951908227,0,0,0,11,21,0% -2018-11-21 06:00:00,149.4348724,297.3272133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60813054,5.189338828,-0.400299406,0.400299406,1,0.59860892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691236936,133.728103,0.691236936,46.27189703,0,0.977665902,0,0,0,11,22,0% -2018-11-21 07:00:00,158.6336255,322.1869811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768679069,5.623223627,-0.119678404,0.119678404,1,0.550619902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836988221,146.8234365,0.836988221,33.17656348,0,0.990262003,0,0,0,11,23,0% -2018-11-22 08:00:00,162.2564678,3.804737922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.831909595,0.066405204,0.129149857,-0.129149857,1,0.508067763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937062245,159.5639105,0.937062245,20.43608947,0,0.996641752,0,0,0,11,0,0% -2018-11-22 09:00:00,157.3840998,43.02899996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746870731,0.750997723,0.371276039,-0.371276039,1,0.466661748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984652852,169.9490187,0.984652852,10.05098131,0,0.999220682,0,0,0,11,1,0% -2018-11-22 10:00:00,147.7039916,65.63002847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577920971,1.145460085,0.630238697,-0.630238697,1,0.422376525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976529158,167.5618703,0.976529158,12.43812969,0,0.998798252,0,0,0,11,2,0% -2018-11-22 11:00:00,136.4129376,79.44679871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380854904,1.386608218,0.938947976,-0.938947976,1,0.369584129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913255182,155.9591425,0.913255182,24.04085754,0,0.99525079,0,0,0,11,3,0% -2018-11-22 12:00:00,124.6414745,89.65539499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175404115,1.564781835,1.363007347,-1.363007347,1,0.297065706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.79915115,143.0491195,0.79915115,36.95088054,0,0.987433613,0,0,0,11,4,0% -2018-11-22 13:00:00,112.8464385,98.43947651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969541901,1.718092979,2.087084363,-2.087084363,1,0.173241243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641999064,129.9410467,0.641999064,50.05895332,0,0.972118266,0,0,0,11,5,0% -2018-11-22 14:00:00,101.3077467,106.8829652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768153738,1.865459657,4.000109184,-4.000109184,1,0,#DIV/0!,0,0,0.133377733,1,0.244972241,0,0.932623878,0.971385841,0.724496596,1,0,0,0.021460564,0.312029739,0.940944212,0.665440808,0.961238037,0.922476074,0,0,0,0,0,0,-0.452512553,116.9050014,0.452512553,63.09499863,0,0.939505828,0,0,0,11,6,0% -2018-11-22 15:00:00,89.7612,115.6877566,0.091957834,2.404471876,0.081936394,0.080158927,0,0.080158927,0.07946571,0.000693217,0.589831857,0.565064931,0.024766926,0.002470685,0.022296242,1.566628481,2.019132258,-167.6079492,167.6079492,0,0,0.891021357,0.000617671,0.019866427,1,0.964529952,0,0.005966233,0.961238037,1,0.707717262,0.983220666,0.076385463,0.00177269,0.115824807,0.292963727,0.724496596,0.448993192,0.964218411,0.925456448,0.000447501,0.019128261,0.076832964,0.020900951,0,0.02004288,-0.235005839,103.591967,0.235005839,76.40803304,0,0.837239329,0.076832964,0.037681638,0.101494842,11,7,32% -2018-11-22 16:00:00,80.00581234,125.4374123,107.9198259,417.2730598,35.50280674,35.24581136,0,35.24581136,34.43226612,0.813545233,38.92216631,11.68521446,27.23695184,1.070540615,26.16641123,1.396364846,2.18929585,-3.219262669,3.219262669,0.919319971,0.919319971,0.328973907,0.769501192,24.74980346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.09760389,0.775603031,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.557500994,23.79045249,33.65510489,24.56605552,0,11.68521446,-0.02800376,91.60470702,0.02800376,88.39529298,0,0,33.65510489,24.56605552,49.73309691,11,8,48% -2018-11-22 17:00:00,71.11963805,136.6760883,269.1206671,653.7749358,57.56358944,172.8871811,115.030601,57.8565801,55.82783483,2.028745265,66.98717611,0,66.98717611,1.735754609,65.2514215,1.241271847,2.38544775,-1.157707976,1.157707976,0.728133414,0.728133414,0.213895091,1.595170635,51.306171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.66383836,1.257548305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.155695695,49.31744309,54.81953405,50.5749914,115.030601,0,0.175948319,79.86615086,-0.175948319,100.1338491,0.765825646,0,142.9129184,50.5749914,176.0132387,11,9,23% -2018-11-22 18:00:00,64.04400925,149.8335499,398.6788401,752.4201993,69.35907959,338.8910398,268.6179829,70.27305693,67.26764743,3.005409499,98.75573269,0,98.75573269,2.091432157,96.66430053,1.117778828,2.615088775,-0.362602491,0.362602491,0.592162368,0.592162368,0.173972312,1.992931589,64.09953057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.66022136,1.515235479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.443872152,61.61490693,66.10409351,63.13014241,268.6179829,0,0.357005279,69.08360657,-0.357005279,110.9163934,0.909946048,0,310.5319656,63.13014241,351.8493812,11,10,13% -2018-11-22 19:00:00,59.49100814,164.9516083,479.3252465,795.2839611,75.58059182,476.5380469,399.6231326,76.91491429,73.30155812,3.613356176,118.4969891,0,118.4969891,2.279033706,116.2179554,1.038313967,2.878948672,0.146480086,-0.146480086,0.50510412,0.50510412,0.157681225,2.107092188,67.77132786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.46024582,1.651152162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526581118,65.14437814,71.98682694,66.79553031,399.6231326,0,0.502491125,59.83505116,-0.502491125,120.1649488,0.950495755,0,451.8269181,66.79553031,495.5432568,11,11,10% -2018-11-22 20:00:00,58.08054272,181.3273295,503.6923121,806.3573172,77.34974164,564.5824309,485.7680239,78.81440695,75.01736154,3.797045409,124.4584127,0,124.4584127,2.332380101,122.1260326,1.013696702,3.164758924,0.58385936,-0.58385936,0.430307859,0.430307859,0.15356546,1.966083132,63.2359919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10954133,1.689801443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424420537,60.78484071,73.53396187,62.47464216,485.7680239,0,0.602422789,52.9563851,-0.602422789,127.0436149,0.967001812,0,543.2725211,62.47464216,584.1609249,11,12,8% -2018-11-22 21:00:00,60.04033182,197.5776575,469.750294,790.7190593,74.87289665,590.1071954,513.9508167,76.1563787,72.61520256,3.54117614,116.1540915,0,116.1540915,2.257694086,113.8963974,1.047901474,3.448380651,1.057986427,-1.057986427,0.349227355,0.349227355,0.159388717,1.603986965,51.58973445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.80049476,1.635691679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.162083096,49.59001506,70.96257785,51.22570674,513.9508167,0,0.649979042,49.45997824,-0.649979042,130.5400218,0.973074443,0,571.0749825,51.22570674,604.601183,11,13,6% -2018-11-22 22:00:00,65.05903169,212.3938956,380.3449706,741.0665555,67.84886028,544.391685,475.7215171,68.67016785,65.80296681,2.867201047,94.26493507,0,94.26493507,2.045893473,92.2190416,1.135494311,3.706972789,1.70351131,-1.70351131,0.238836098,0.238836098,0.178387689,1.074106176,34.54694683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.25231463,1.482242857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.778186268,33.20783935,64.0305009,34.69008221,475.7215171,0,0.64194169,50.06324071,-0.64194169,129.9367593,0.972111306,0,526.4847661,34.69008221,549.1887311,11,14,4% -2018-11-22 23:00:00,72.48247095,225.2107084,243.9112531,628.0713737,54.86329885,418.6698998,363.6222257,55.04767402,53.20896797,1.838706055,60.79343812,0,60.79343812,1.654330884,59.13910723,1.265057768,3.930668373,2.876282264,-2.876282264,0.038280453,0.038280453,0.224931397,0.468137089,15.05689798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.14648391,1.198557094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339163727,14.47326305,51.48564764,15.67182015,363.6222257,0,0.578950484,54.62324092,-0.578950484,125.3767591,0.963636828,0,401.885416,15.67182015,412.1423088,11,15,3% -2018-11-22 00:00:00,81.60154852,236.1600284,81.20885375,351.0470322,29.93622601,193.1554511,163.5097261,29.64572499,29.03353834,0.612186642,20.59271446,0,20.59271446,0.902687667,19.6900268,1.424215696,4.121770058,6.576609872,-6.576609872,0,0,0.36863254,0.225671917,7.258384586,0.3728492,1,0.150898166,0,0.9452322,0.983994163,0.724496596,1,28.14922891,0.653994142,0.054203113,0.312029739,0.857816568,0.582313164,0.961238037,0.922476074,0.154593023,6.97703535,28.30382193,7.631029492,102.5452555,0,0.465777264,62.23946317,-0.465777264,117.7605368,0.942652553,0,124.9683688,7.631029492,129.962725,11,16,4% -2018-11-22 01:00:00,92.06167226,245.7028018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606779296,4.288322873,-27.70083763,27.70083763,1,0,#DIV/0!,0,0,1,0.765658462,0,0.036084322,0.961238037,1,0.627268225,0.902771629,0,0,0.115824807,0.201722474,0.724496596,0.448993192,0.977424152,0.938662189,0,0,0,0,0,0,0.307032248,72.1195293,-0.307032248,107.8804707,0.887150657,0,0,0,0,11,17,0% -2018-11-22 02:00:00,103.1908092,254.3885874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801019378,4.43991843,-4.254090529,4.254090529,1,0.742353984,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117586908,83.24714343,-0.117586908,96.75285657,0.624782595,0,0,0,0,11,18,0% -2018-11-22 03:00:00,114.7933405,262.8084126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003521752,4.586872101,-2.110990484,2.110990484,1,0.891154324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091288122,95.23771612,0.091288122,84.76228388,0,0.502283616,0,0,0,11,19,0% -2018-11-22 04:00:00,126.6136598,271.6970604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209825242,4.742008272,-1.250480666,1.250480666,1,0.743998478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305366939,107.7802412,0.305366939,72.2197588,0,0.886262563,0,0,0,11,20,0% -2018-11-22 05:00:00,138.3613854,282.2415429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414861733,4.92604421,-0.751962196,0.751962196,1,0.658746799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510071479,120.668591,0.510071479,59.33140899,0,0.951974523,0,0,0,11,21,0% -2018-11-22 06:00:00,149.5280892,296.9333687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609757482,5.182464942,-0.401777665,0.401777665,1,0.598861717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691464424,133.7461428,0.691464424,46.2538572,0,0.9776897,0,0,0,11,22,0% -2018-11-22 07:00:00,158.7817061,321.7372638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771263563,5.615374581,-0.12166524,0.12166524,1,0.550959671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837198235,146.8454321,0.837198235,33.15456789,0,0.990276988,0,0,0,11,23,0% -2018-11-23 08:00:00,162.4706296,3.635246842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.835647423,0.063447027,0.126633262,-0.126633262,1,0.508498126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937355688,159.6121174,0.937355688,20.38788255,0,0.996658456,0,0,0,11,0,0% -2018-11-23 09:00:00,157.5928039,43.21092544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750513305,0.754172922,0.368063926,-0.368063926,1,0.467211051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985124811,170.1051618,0.985124811,9.894838233,0,0.99924501,0,0,0,11,1,0% -2018-11-23 10:00:00,147.8874865,65.85710788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581123563,1.149423368,0.625963262,-0.625963262,1,0.423107667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977262353,167.7584407,0.977262353,12.24155934,0,0.998836666,0,0,0,11,2,0% -2018-11-23 11:00:00,136.5833405,79.64801742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383828995,1.390120147,0.932820748,-0.932820748,1,0.370631947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914314264,156.1085303,0.914314264,23.89146967,0,0.995314208,0,0,0,11,3,0% -2018-11-23 12:00:00,124.8082636,89.82880041,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178315134,1.56780833,1.353088389,-1.353088389,1,0.298761947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800578232,143.185355,0.800578232,36.814645,0,0.987545142,0,0,0,11,4,0% -2018-11-23 13:00:00,113.0155686,98.59084302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972493778,1.720734823,2.067016705,-2.067016705,1,0.176673015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643810806,130.0765723,0.643810806,49.92342774,0,0.972337433,0,0,0,11,5,0% -2018-11-23 14:00:00,101.4832536,107.016533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771216911,1.867790855,3.930445085,-3.930445085,1,0,#DIV/0!,0,0,0.124337128,1,0.249138179,0,0.93202097,0.970782934,0.724496596,1,0,0,0.020086596,0.312029739,0.944617099,0.669113695,0.961238037,0.922476074,0,0,0,0,0,0,-0.454698994,117.0455687,0.454698994,62.95443134,0,0.940037144,0,0,0,11,6,0% -2018-11-23 15:00:00,89.91607438,115.8048196,0.025412041,1.664740357,0.022973566,0.022472395,0,0.022472395,0.022280828,0.000191567,0.401476197,0.394622016,0.006854181,0.000692738,0.006161443,1.569331548,2.021175392,-475.9111048,475.9111048,0,0,0.904042542,0.000173184,0.005570207,1,0.987641466,0,0.00210123,0.961238037,1,0.718555466,0.994058871,0.021417179,0.000500129,0.115824807,0.305278183,0.724496596,0.448993192,0.962301946,0.923539983,0.000125472,0.005357553,0.021542651,0.005857682,0,0.00487695,-0.237047185,103.7123281,0.237047185,76.28767188,0,0.83907153,0.021542651,0.009949791,0.02805459,11,7,30% -2018-11-23 16:00:00,80.20013322,125.5355524,104.6709798,410.394798,34.81882701,34.55796496,0,34.55796496,33.76891091,0.789054059,39.06087085,12.63226387,26.42860699,1.049916102,25.37869088,1.399756385,2.191008717,-3.276226602,3.276226602,0.909578564,0.909578564,0.332650244,0.741440388,23.84727157,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.45996163,0.760660642,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537171037,22.92290451,32.99713266,23.68356515,0,12.63226387,-0.03078076,91.76388626,0.03078076,88.23611374,0,0,32.99713266,23.68356515,48.49755238,11,8,47% -2018-11-23 17:00:00,71.32649808,136.7480756,265.3986025,650.6436886,57.07882993,169.8890191,112.5306397,57.35837938,55.35769261,2.00068677,66.07010117,0,66.07010117,1.721137321,64.34896385,1.244882235,2.386704165,-1.168090232,1.168090232,0.729908884,0.729908884,0.215068314,1.576535023,50.70678563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.21191976,1.24695813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.142194257,48.74129107,54.35411402,49.9882492,112.5306397,0,0.172952788,80.04045504,-0.172952788,99.95954496,0.760903764,0,139.9791013,49.9882492,172.6954107,11,9,23% -2018-11-23 18:00:00,64.25973857,149.8668532,394.9066021,750.5775175,68.93667128,335.463065,265.628116,69.83494906,66.85797629,2.976972776,97.82837273,0,97.82837273,2.078694988,95.74967775,1.121544015,2.615670029,-0.364912094,0.364912094,0.592557333,0.592557333,0.174564494,1.975764306,63.54737172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26642988,1.506007443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431434514,61.08415084,65.69786439,62.59015828,265.628116,0,0.353898311,69.27406047,-0.353898311,110.7259395,0.908716478,0,307.0785103,62.59015828,348.0425171,11,10,13% -2018-11-23 19:00:00,59.7079947,164.931642,475.6679136,793.9614572,75.18808095,472.9917486,396.48508,76.50666855,72.9208829,3.585785656,117.5983908,0,117.5983908,2.267198055,115.3311928,1.042101097,2.878600193,0.147162278,-0.147162278,0.504987458,0.504987458,0.158068431,2.091349651,67.26499376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.09432632,1.642577273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515175703,64.65767055,71.60950202,66.30024782,396.48508,0,0.499375727,60.04129297,-0.499375727,119.958707,0.949874989,0,448.2207632,66.30024782,491.6129494,11,11,10% -2018-11-23 20:00:00,58.28701061,181.2468794,500.2659969,805.2427763,76.97843703,561.0918134,482.6633438,78.42846953,74.65725313,3.771216398,123.6164667,0,123.6164667,2.321183897,121.2952828,1.017300246,3.163354804,0.586457575,-0.586457575,0.429863538,0.429863538,0.153875014,1.951956316,62.78162492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.76339144,1.681689831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414185706,60.34808589,73.17757714,62.02977572,482.6633438,0,0.599401023,53.17298889,-0.599401023,126.8270111,0.966583392,0,539.7119494,62.02977572,580.309197,11,12,8% -2018-11-23 21:00:00,60.22465014,197.4449614,466.6461379,789.6215629,74.51961207,586.7910729,511.0007264,75.79034652,72.27257082,3.5177757,115.3908,0,115.3908,2.247041252,113.1437588,1.051118436,3.446064668,1.06268607,-1.06268607,0.348423669,0.348423669,0.159691908,1.591706038,51.19473765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.4711441,1.627973738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153185607,49.21032912,70.6243297,50.83830285,511.0007264,0,0.647146368,49.67320584,-0.647146368,130.3267942,0.972737726,0,567.6940142,50.83830285,600.9666667,11,13,6% -2018-11-23 22:00:00,65.21485775,212.2273453,377.63442,739.7736071,67.50899446,541.3172254,472.9971085,68.32011697,65.4733492,2.846767772,93.5974825,0,93.5974825,2.035645265,91.56183723,1.138213989,3.704065938,1.711850688,-1.711850688,0.237409981,0.237409981,0.178768118,1.063941772,34.22002468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93547365,1.474818065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.770822192,32.89358934,63.70629584,34.36840741,472.9971085,0,0.639380892,50.25433038,-0.639380892,129.7456696,0.971799352,0,523.3645794,34.36840741,545.8580146,11,14,4% -2018-11-23 23:00:00,72.60959927,225.0266282,241.6621105,626.1398783,54.52085027,415.8103278,361.1117313,54.69859654,52.87684547,1.821751067,60.23778135,0,60.23778135,1.644004796,58.59377655,1.267276576,3.927455567,2.894357351,-2.894357351,0.035189432,0.035189432,0.225607772,0.460644685,14.81591652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82723513,1.191075878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333735506,14.24162251,51.16097064,15.43269839,361.1117313,0,0.576726932,54.77933976,-0.576726932,125.2206602,0.963303858,0,399.0212946,15.43269839,409.121687,11,15,3% -2018-11-23 00:00:00,81.70297079,235.966986,79.63002076,347.1953037,29.52803935,190.3164978,161.078553,29.23794475,28.63766002,0.600284732,20.19759979,0,20.19759979,0.890379333,19.30722046,1.425985849,4.118400831,6.652593574,-6.652593574,0,0,0.370815417,0.222594833,7.159415005,0.377918656,1,0.149200265,0,0.945441691,0.984203654,0.724496596,1,27.76578032,0.645076796,0.054827714,0.312029739,0.856313207,0.580809803,0.961238037,0.922476074,0.152461363,6.881902025,27.91824168,7.526978821,100.2039628,0,0.4639422,62.35821549,-0.4639422,117.6417845,0.942227954,0,122.3332166,7.526978821,127.2594737,11,16,4% -2018-11-23 01:00:00,92.14428613,245.5024018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60822118,4.284825234,-26.62549243,26.62549243,1,0,#DIV/0!,0,0,1,0.755104903,0,0.037540346,0.961238037,1,0.623559754,0.899063158,0,0,0.115824807,0.197525498,0.724496596,0.448993192,0.977988421,0.939226457,0,0,0,0,0,0,0.30556853,72.20762871,-0.30556853,107.7923713,0.886370584,0,0,0,0,11,17,0% -2018-11-23 02:00:00,103.2586831,254.1774857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802204001,4.436234009,-4.232689729,4.232689729,1,0.746013736,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116502433,83.3097093,-0.116502433,96.6902907,0.620824415,0,0,0,0,11,18,0% -2018-11-23 03:00:00,114.8519562,262.5791172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004544788,4.582870142,-2.107228817,2.107228817,1,0.890511041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092030964,95.28045778,0.092030964,84.71954222,0,0.506704595,0,0,0,11,19,0% -2018-11-23 04:00:00,126.6695127,271.4370249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210800059,4.737469797,-1.250178373,1.250178373,1,0.743946783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305829161,107.8080552,0.305829161,72.19194483,0,0.886510031,0,0,0,11,20,0% -2018-11-23 05:00:00,138.4238671,281.9305033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415952245,4.920615544,-0.75287048,0.75287048,1,0.658902124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510333307,120.6860337,0.510333307,59.31396627,0,0.952024815,0,0,0,11,21,0% -2018-11-23 06:00:00,149.6138659,296.5428858,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611254567,5.17564973,-0.403312857,0.403312857,1,0.59912425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691619793,133.7584666,0.691619793,46.24153336,0,0.977705944,0,0,0,11,22,0% -2018-11-23 07:00:00,158.9217803,321.2838666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773708319,5.607461306,-0.123677049,0.123677049,1,0.551303711,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837348325,146.8611595,0.837348325,33.1388405,0,0.990287693,0,0,0,11,23,0% -2018-11-24 08:00:00,162.6785772,3.450989304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.839276794,0.060231126,0.124115382,-0.124115382,1,0.508928709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937601968,159.6526609,0.937601968,20.34733907,0,0.996672467,0,0,0,11,0,0% -2018-11-24 09:00:00,157.797892,43.38034984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754092767,0.757129935,0.364873266,-0.364873266,1,0.467756686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985562058,170.2520297,0.985562058,9.747970296,0,0.999267527,0,0,0,11,1,0% -2018-11-24 10:00:00,148.0688197,66.07397692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584288424,1.153208447,0.621738003,-0.621738003,1,0.423830229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977972116,167.951736,0.977972116,12.04826397,0,0.998873798,0,0,0,11,2,0% -2018-11-24 11:00:00,136.7522977,79.84061711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386777854,1.393481645,0.926790974,-0.926790974,1,0.371663099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915359245,156.2567963,0.915359245,23.74320373,0,0.995376637,0,0,0,11,3,0% -2018-11-24 12:00:00,124.9738762,89.99460946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181205619,1.570702244,1.343369303,-1.343369303,1,0.300424009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801997956,143.3213189,0.801997956,36.67868108,0,0.987655701,0,0,0,11,4,0% -2018-11-24 13:00:00,113.1835,98.73520859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975424734,1.723254477,2.047474651,-2.047474651,1,0.180014903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645618876,130.2120926,0.645618876,49.78790743,0,0.972554929,0,0,0,11,5,0% -2018-11-24 14:00:00,101.657315,107.1433975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774254855,1.870005058,3.86367297,-3.86367297,1,0,#DIV/0!,0,0,0.115493,1,0.253263468,0,0.931420303,0.970182266,0.724496596,1,0,0,0.0187317,0.312029739,0.948253507,0.672750103,0.961238037,0.922476074,0,0,0,0,0,0,-0.456882137,117.1860998,0.456882137,62.81390024,0,0.940562585,0,0,0,11,6,0% -2018-11-24 15:00:00,90.06826114,115.9152835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571987708,2.02310335,583.9614315,-583.9614315,1,0,#DIV/0!,0,0,0.990033203,1,0.00171244,0,0.961086707,0.99984867,0.724496596,1,0,0,0.115043864,0.312029739,0.725995563,0.450492159,0.961238037,0.922476074,0,0,0,0,0,0,-0.239070033,103.8316594,0.239070033,76.16834056,0,0.840856263,0,0,0,11,7,0% -2018-11-24 16:00:00,80.39186041,125.6271199,101.4819623,403.4859665,34.13659644,33.87226601,0,33.87226601,33.10725211,0.765013898,39.16968493,13.53486393,25.63482101,1.029344333,24.60547667,1.403102656,2.192606872,-3.33509461,3.33509461,0.899511542,0.899511542,0.336380926,0.713998137,22.96463444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.82395002,0.745756466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.51728922,22.07448013,32.34123924,22.82023659,0,13.53486393,-0.03354482,91.92233722,0.03354482,88.07766278,0,0,32.34123924,22.82023659,47.27662769,11,8,46% -2018-11-24 17:00:00,71.52992908,136.8136202,261.7388615,647.5209873,56.59822586,166.9293111,110.0646324,56.86467862,54.89158053,1.973098097,65.16826261,0,65.16826261,1.706645335,63.46161728,1.248432776,2.387848135,-1.178761131,1.178761131,0.731733715,0.731733715,0.216239291,1.558241252,50.11839507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.7638751,1.236458736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128940482,48.17570769,53.89281559,49.41216642,110.0646324,0,0.169978479,80.21343223,-0.169978479,99.78656777,0.755845114,0,137.0846303,49.41216642,169.423905,11,9,24% -2018-11-24 18:00:00,64.47101773,149.8942329,391.2090476,748.7560521,68.51944738,332.0836065,262.6811742,69.40243228,66.45333323,2.949099048,96.91927699,0,96.91927699,2.066114148,94.85316285,1.125231531,2.616147894,-0.367393362,0.367393362,0.592981655,0.592981655,0.175147911,1.958998224,63.0081169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87747158,1.496892667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.419287545,60.56579859,65.29675912,62.06269126,262.6811742,0,0.35082344,69.46231133,-0.35082344,110.5376887,0.907478166,0,303.6741894,62.06269126,344.2929796,11,10,13% -2018-11-24 19:00:00,59.91950709,164.9069549,472.0985683,792.6659821,74.8015716,469.5087622,393.4038555,76.10490665,72.54602822,3.558878423,116.721307,0,116.721307,2.255543372,114.4657636,1.045792685,2.878169322,0.147676416,-0.147676416,0.504899535,0.504899535,0.158444818,2.076056204,66.77310392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.73400175,1.634133495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.504095653,64.18484733,71.2380974,65.81898082,393.4038555,0,0.496304704,60.24417916,-0.496304704,119.7558208,0.949255438,0,444.6788466,65.81898082,487.7560532,11,11,10% -2018-11-24 20:00:00,58.48722032,181.1635653,496.9401987,804.1615474,76.61401999,557.6812149,479.6312451,78.04996974,74.30382461,3.746145126,122.7990999,0,122.7990999,2.310195378,120.4889045,1.020794565,3.161900699,0.58885521,-0.58885521,0.429453518,0.429453518,0.154171508,1.938313664,62.34283036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4236625,1.673728687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404301652,59.92629986,72.82796415,61.60002855,479.6312451,0,0.596436433,53.38489995,-0.596436433,126.6151001,0.96616877,0,536.2326942,61.60002855,576.5486809,11,12,8% -2018-11-24 21:00:00,60.40232204,197.3113873,463.6531181,788.5677121,74.17429848,583.5727497,508.139867,75.43288276,71.9376697,3.495213052,114.6546952,0,114.6546952,2.236628773,112.4180665,1.054219395,3.44373336,1.067111472,-1.067111472,0.34766688,0.34766688,0.159978,1.579926574,50.81586958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1492244,1.620429932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144651425,48.84614672,70.29387583,50.46657665,508.139867,0,0.644383303,49.88054662,-0.644383303,130.1194534,0.972406431,0,564.4123505,50.46657665,597.4417156,11,13,6% -2018-11-24 22:00:00,65.36399087,212.0614991,375.0425378,738.5444847,67.17868532,538.3598741,470.3796449,67.98022916,65.15300009,2.827229068,92.9590906,0,92.9590906,2.025685225,90.93340538,1.140816853,3.701171376,1.719750754,-1.719750754,0.23605899,0.23605899,0.179122842,1.054268842,33.90890999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62754191,1.46760205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763814187,32.59453407,63.39135609,34.06213612,470.3796449,0,0.636900897,50.43888653,-0.636900897,129.5611135,0.971494851,0,520.362759,34.06213612,542.6557458,11,14,4% -2018-11-24 23:00:00,72.73017196,224.8443161,239.5340207,624.3191158,54.19112128,413.092358,358.7295904,54.36276765,52.55705903,1.805708627,59.71185879,0,59.71185879,1.63406225,58.07779654,1.269380966,3.924273621,2.911520892,-2.911520892,0.032254293,0.032254293,0.226235593,0.453581037,14.58872533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51984424,1.183872538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.328617917,14.0232377,50.84846216,15.20711024,358.7295904,0,0.574593315,54.92884323,-0.574593315,125.0711568,0.962981932,0,396.2985762,15.20711024,406.2513258,11,15,3% -2018-11-24 00:00:00,81.79805086,235.7764086,78.15954017,343.5902092,29.14206593,187.6609887,158.8084639,28.85252475,28.26332512,0.589199629,19.82942622,0,19.82942622,0.878740811,18.95068541,1.427645309,4.115074628,6.72516255,-6.72516255,0,0,0.3728536,0.219685203,7.06583128,0.382684361,1,0.147613705,0,0.945636855,0.984398818,0.724496596,1,27.40313707,0.636644726,0.055412551,0.312029739,0.854908359,0.579404955,0.961238037,0.922476074,0.150448291,6.791945788,27.55358537,7.428590514,98.03494848,0,0.462203112,62.47063809,-0.462203112,117.5293619,0.941822451,0,119.8851008,7.428590514,124.7469647,11,16,4% -2018-11-24 01:00:00,92.22065903,245.3049736,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609554138,4.281379461,-25.7017969,25.7017969,1,0,#DIV/0!,0,0,1,0.745250178,0,0.03888817,0.961238037,1,0.620141778,0.895645182,0,0,0.115824807,0.193658024,0.724496596,0.448993192,0.978504955,0.939742992,0,0,0,0,0,0,0.304205189,72.2896474,-0.304205189,107.7103526,0.885637255,0,0,0,0,11,17,0% -2018-11-24 02:00:00,103.3204005,253.969798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803281174,4.432609175,-4.213446264,4.213446264,1,0.749304563,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115518567,83.36646392,-0.115518567,96.63353608,0.617169145,0,0,0,0,11,18,0% -2018-11-24 03:00:00,114.9043983,262.3536902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005460076,4.578935699,-2.104010586,2.104010586,1,0.889960691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092676304,95.31759172,0.092676304,84.68240828,0,0.510487763,0,0,0,11,19,0% -2018-11-24 04:00:00,126.7190268,271.1813395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211664242,4.733007244,-1.250099692,1.250099692,1,0.743933328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306200106,107.8303797,0.306200106,72.16962027,0,0.88670809,0,0,0,11,20,0% -2018-11-24 05:00:00,138.4796203,281.6241502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416925321,4.915268673,-0.753888986,0.753888986,1,0.659076299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510512776,120.6979915,0.510512776,59.30200847,0,0.952059258,0,0,0,11,21,0% -2018-11-24 06:00:00,149.6922149,296.1562112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612622014,5.168900985,-0.404904303,0.404904303,1,0.599396403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691703794,133.7651307,0.691703794,46.23486931,0,0.977714723,0,0,0,11,22,0% -2018-11-24 07:00:00,159.0537906,320.8274015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776012333,5.599494487,-0.125713066,0.125713066,1,0.55165189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837439359,146.8707019,0.837439359,33.12929813,0,0.990294184,0,0,0,11,23,0% -2018-11-25 08:00:00,162.8801885,3.251748251,0,0,0,0,0,0,0,0,0,0,0,0,0,2.842795576,0.056753713,0.121597129,-0.121597129,1,0.509359356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937801976,159.6856438,0.937801976,20.31435619,0,0.99668384,0,0,0,11,0,0% -2018-11-25 09:00:00,157.9993166,43.53682005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.757608291,0.759860856,0.361705149,-0.361705149,1,0.468298466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985965404,170.3894812,0.985965404,9.610518758,0,0.999288282,0,0,0,11,1,0% -2018-11-25 10:00:00,148.2479651,66.28036872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5874151,1.156810664,0.617564217,-0.617564217,1,0.424543989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978659089,168.1417802,0.978659089,11.8582198,0,0.998909686,0,0,0,11,2,0% -2018-11-25 11:00:00,136.9197758,80.0244339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389700899,1.396689854,0.920860105,-0.920860105,1,0.372677337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916390521,156.4039776,0.916390521,23.5960224,0,0.995438109,0,0,0,11,3,0% -2018-11-25 12:00:00,125.1382656,90.15271002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184074755,1.57346162,1.333851066,-1.333851066,1,0.302051723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803410402,143.4570171,0.803410402,36.54298293,0,0.987765307,0,0,0,11,4,0% -2018-11-25 13:00:00,113.3501722,98.87249197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978333713,1.725650524,2.02845317,-2.02845317,1,0.183267768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647422999,130.3475876,0.647422999,49.65241236,0,0.972770739,0,0,0,11,5,0% -2018-11-25 14:00:00,101.8298574,107.2635003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777266289,1.872101247,3.799671188,-3.799671188,1,0,#DIV/0!,0,0,0.106846484,1,0.257345013,0,0.930822448,0.969584411,0.724496596,1,0,0,0.017396645,0.312029739,0.951850745,0.676347341,0.961238037,0.922476074,0,0,0,0,0,0,-0.459061333,117.3265536,0.459061333,62.67344637,0,0.941082092,0,0,0,11,6,0% -2018-11-25 15:00:00,90.83432308,116.0191109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585358012,2.024915481,47.68468221,-47.68468221,1,0,#DIV/0!,0,0,0.884050002,1,0.020968022,0,0.959336312,0.998098275,0.724496596,1,0,0,0.106410799,0.312029739,0.742893665,0.467390261,0.961238037,0.922476074,0,0,0,0,0,0,-0.251162924,104.5463387,0.251162924,75.45366132,0,0.850926031,0,0,0,11,7,0% -2018-11-25 16:00:00,80.58090001,125.7121003,98.35451998,396.5534379,33.45663268,33.18922968,0,33.18922968,32.44779176,0.741437917,39.24878163,14.39274863,24.856033,1.008840917,23.84719208,1.406402019,2.19409006,-3.395905027,3.395905027,0.889112348,0.889112348,0.340163652,0.687188607,22.10234781,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.19005165,0.73090181,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.497865807,21.24561742,31.68791746,21.97651923,0,14.39274863,-0.036294601,92.07998426,0.036294601,87.92001574,0,0,31.68791746,21.97651923,46.07110976,11,8,45% -2018-11-25 17:00:00,71.72983286,136.8727332,258.1434553,644.4103002,56.12207316,164.0096992,107.6339192,56.37577999,54.42978559,1.945994406,64.282157,0,64.282157,1.692287574,62.58986942,1.251921755,2.38887985,-1.189718913,1.189718913,0.733607606,0.733607606,0.217406531,1.540299433,49.5413245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.31998024,1.226056587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115941696,47.6210055,53.43592194,48.84706209,107.6339192,0,0.167027,80.38499269,-0.167027,99.61500731,0.750647201,0,134.2310221,48.84706209,166.2004473,11,9,24% -2018-11-25 18:00:00,64.6777503,149.915724,387.5883376,746.9582381,68.10764077,328.7547332,259.7789845,68.97574872,66.05394411,2.921804607,96.02897645,0,96.02897645,2.05369666,93.97527979,1.128839696,2.616522984,-0.370047592,0.370047592,0.593435555,0.593435555,0.175721595,1.942642749,62.48206859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.49356356,1.487896239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407438058,60.06014095,64.90100162,61.54803719,259.7789845,0,0.347782475,69.6482588,-0.347782475,110.3517412,0.906231974,0,300.3210234,61.54803719,340.6029828,11,10,13% -2018-11-25 19:00:00,60.12545691,164.8775957,468.619371,791.3995326,74.42126767,466.0913846,390.381542,75.70984263,72.17719187,3.532650764,115.8662678,0,115.8662678,2.244075806,113.622192,1.049387187,2.877656909,0.148019186,-0.148019186,0.504840918,0.504840918,0.158809627,2.061220284,66.29592972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.37946221,1.625825282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493347079,63.72616933,70.87280929,65.35199462,390.381542,0,0.493279975,60.44360621,-0.493279975,119.5563938,0.948637686,0,441.2034517,65.35199462,483.9750252,11,11,10% -2018-11-25 20:00:00,58.68109376,181.077435,493.7169526,803.1155109,76.25667913,554.3530208,476.6739149,77.67910583,73.9572589,3.721846936,122.0068115,0,122.0068115,2.299420233,119.7073912,1.024178295,3.160397442,0.591046935,-0.591046935,0.429078711,0.429078711,0.154454245,1.925162276,61.91983651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.09053035,1.665922131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.394773516,59.51970209,72.48530387,61.18562422,476.6739149,0,0.593530953,53.59202219,-0.593530953,126.4079778,0.965758395,0,532.837139,61.18562422,572.8819063,11,12,8% -2018-11-25 21:00:00,60.5732785,197.1769794,460.773032,787.5595473,73.83713884,580.4546005,505.3704221,75.08417842,71.61067667,3.473501747,113.9462184,0,113.9462184,2.226462166,111.7197563,1.057203149,3.441387499,1.071254029,-1.071254029,0.346958461,0.346958461,0.160246225,1.568653891,50.45330136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.83490626,1.61306426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.136484404,48.49763235,69.97139066,50.11069661,505.3704221,0,0.641691697,50.08191897,-0.641691697,129.918081,0.972080962,0,561.2323565,50.11069661,594.0288052,11,13,6% -2018-11-25 22:00:00,65.50637105,211.8964063,372.5707728,737.38182,66.85812777,535.5219599,467.8712555,67.6507044,64.84210854,2.80859586,92.35011657,0,92.35011657,2.016019233,90.33409733,1.143301856,3.698289963,1.72719531,-1.72719531,0.234785896,0.234785896,0.179450812,1.045090283,33.61369597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.32870112,1.460599071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.757164352,32.31076313,63.08586547,33.7713622,467.8712555,0,0.634503378,50.61683935,-0.634503378,129.3831607,0.971198213,0,517.4815928,33.7713622,539.5842739,11,14,4% -2018-11-25 23:00:00,72.84414021,224.6638339,237.5279117,622.6134099,53.87437428,410.5184041,356.4779553,54.04044885,52.24986312,1.790585731,59.21590336,0,59.21590336,1.62451116,57.5913922,1.271370087,3.921123611,2.927729433,-2.927729433,0.02948247,0.02948247,0.226812815,0.446945029,14.3752885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.22455585,1.176952805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.323810152,13.81807409,50.548366,14.9950269,356.4779553,0,0.57255104,55.07169021,-0.57255104,124.9283098,0.962671541,0,393.7195485,14.9950269,403.5334937,11,15,2% -2018-11-25 00:00:00,81.88675595,235.5883731,76.79691423,340.2401351,28.77879866,185.1912884,156.7013491,28.48993927,27.9110117,0.578927579,19.48808794,0,19.48808794,0.867786962,18.62030098,1.429193505,4.111792789,6.794006843,-6.794006843,0,0,0.374738998,0.21694674,6.977752924,0.387138454,1,0.146139233,0,0.94581772,0.984579683,0.724496596,1,27.06177552,0.6287087,0.05595711,0.312029739,0.853602704,0.5780993,0.961238037,0.922476074,0.148555856,6.707281522,27.21033138,7.335990222,96.03623114,0,0.460561036,62.57668394,-0.460561036,117.4233161,0.941436756,0,117.6223693,7.335990222,122.4236282,11,16,4% -2018-11-25 01:00:00,92.29076805,245.1106102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610777772,4.277987179,-24.9073075,24.9073075,1,0,#DIV/0!,0,0,1,0.736116713,0,0.040127308,0.961238037,1,0.617012075,0.89251548,0,0,0.115824807,0.19011735,0.724496596,0.448993192,0.978974947,0.940212984,0,0,0,0,0,0,0.302942974,72.365549,-0.302942974,107.634451,0.884952436,0,0,0,0,11,17,0% -2018-11-25 02:00:00,103.3759529,253.7656371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804250746,4.429045896,-4.19630978,4.19630978,1,0.752235074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114635682,83.41738782,-0.114635682,96.58261218,0.613835629,0,0,0,0,11,18,0% -2018-11-25 03:00:00,114.9506722,262.132272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006267708,4.575071223,-2.101330725,2.101330725,1,0.889502407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093224131,95.34911636,0.093224131,84.65088364,0,0.513658179,0,0,0,11,19,0% -2018-11-25 04:00:00,126.7622201,270.93019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212418108,4.728623859,-1.250243317,1.250243317,1,0.743957889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306480092,107.847232,0.306480092,72.15276804,0,0.886857266,0,0,0,11,20,0% -2018-11-25 05:00:00,138.5286717,281.3227558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417781429,4.910008349,-0.755016956,0.755016956,1,0.659269193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510610472,120.7045016,0.510610472,59.29549844,0,0.952077997,0,0,0,11,21,0% -2018-11-25 06:00:00,149.7631546,295.7737949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613860145,5.162226562,-0.406551276,0.406551276,1,0.599678052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691717209,133.766195,0.691717209,46.23380496,0,0.977716125,0,0,0,11,22,0% -2018-11-25 07:00:00,159.1776861,320.3685152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778174717,5.59148541,-0.12777247,0.12777247,1,0.552004069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837472222,146.8741473,0.837472222,33.1258527,0,0.990296527,0,0,0,11,23,0% -2018-11-26 08:00:00,163.0753391,3.037345074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.846201597,0.053011672,0.119079462,-0.119079462,1,0.509789902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937956602,159.7111781,0.937956602,20.28882191,0,0.99669263,0,0,0,11,0,0% -2018-11-26 09:00:00,158.197026,43.67988439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76105897,0.7623578,0.35856072,-0.35856072,1,0.468836195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98633565,170.5173899,0.98633565,9.482610108,0,0.999307317,0,0,0,11,1,0% -2018-11-26 10:00:00,148.4248922,66.47601758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590503061,1.16022538,0.613443262,-0.613443262,1,0.425248713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97932389,168.3285936,0.97932389,11.6714064,0,0.998944368,0,0,0,11,2,0% -2018-11-26 11:00:00,137.0857373,80.19930531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392597474,1.399741936,0.915029655,-0.915029655,1,0.373674403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917408444,156.5501072,0.917408444,23.44989279,0,0.995498649,0,0,0,11,3,0% -2018-11-26 12:00:00,125.3013814,90.30299157,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186921663,1.576084527,1.324534744,-1.324534744,1,0.303644908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.804815602,143.5924508,0.804815602,36.40754921,0,0.987873968,0,0,0,11,4,0% -2018-11-26 13:00:00,113.5155214,99.00261368,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981219601,1.727921577,2.009947568,-2.009947568,1,0.186432412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649222845,130.4830333,0.649222845,49.5169667,0,0.972984842,0,0,0,11,5,0% -2018-11-26 14:00:00,102.0008044,107.376785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780249876,1.874078438,3.738326354,-3.738326354,1,0,#DIV/0!,0,0,0.098398748,1,0.261379664,0,0.930227993,0.968989956,0.724496596,1,0,0,0.016082209,0.312029739,0.955406078,0.679902674,0.961238037,0.922476074,0,0,0,0,0,0,-0.46123588,117.4668854,0.46123588,62.53311463,0,0.941595597,0,0,0,11,6,0% -2018-11-26 15:00:00,91.01317312,116.1162668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588479534,2.026611172,39.19679156,-39.19679156,1,0,#DIV/0!,0,0,0.860586227,1,0.025506759,0,0.958910724,0.997672687,0.724496596,1,0,0,0.104414424,0.312029739,0.746886746,0.471383342,0.961238037,0.922476074,0,0,0,0,0,0,-0.253666261,104.6945692,0.253666261,75.30543076,0,0.852890618,0,0,0,11,7,0% -2018-11-26 16:00:00,80.76715633,125.7904815,95.29037684,389.6045758,32.77948456,32.50940127,0,32.50940127,31.79106216,0.718339111,39.29844468,15.20576718,24.0926775,0.988422403,23.1042551,1.409652805,2.195458069,-3.458692495,3.458692495,0.878375059,0.878375059,0.343995749,0.661025363,21.26084795,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.55877818,0.716108666,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478910626,20.43673574,31.03768881,21.15284441,0,15.20576718,-0.039028718,92.23674893,0.039028718,87.76325107,0,0,31.03768881,21.15284441,44.88180242,11,8,45% -2018-11-26 17:00:00,71.92610998,136.9254277,254.6144063,641.3152704,55.65067729,161.131831,105.239836,55.89199498,53.97260404,1.919390944,63.41228387,0,63.41228387,1.678073249,61.73421062,1.255347437,2.389799542,-1.200960891,1.200960891,0.735530098,0.735530098,0.218568455,1.522719775,48.97590229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.88051995,1.215758357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.103205294,47.07750017,52.98372524,48.29325853,105.239836,0,0.1641,80.55504435,-0.1641,99.44495565,0.745307739,0,131.4197895,48.29325853,163.0267613,11,9,24% -2018-11-26 18:00:00,64.87983918,149.9313636,384.0466378,745.1865863,67.70148771,325.4785284,256.9233845,68.55514385,65.66003807,2.895105778,95.15800332,0,95.15800332,2.041449646,93.11655367,1.132366812,2.616795946,-0.372875748,0.372875748,0.593919198,0.593919198,0.176284547,1.926707279,61.96952911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.11492609,1.47902332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395892865,59.5674685,64.51081896,61.04649182,256.9233845,0,0.344777253,69.83180091,-0.344777253,110.1681991,0.904978832,0,297.0210434,61.04649182,336.9747513,11,10,13% -2018-11-26 19:00:00,60.32575555,164.8436153,465.2324736,790.1641392,74.04737358,462.7419169,387.4202259,75.32169096,71.81457206,3.507118901,115.033801,0,115.033801,2.232801519,112.8009995,1.052883058,2.877063838,0.148187474,-0.148187474,0.504812139,0.504812139,0.159162092,2.046850246,65.83373993,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.03089826,1.6176571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482936036,63.28189492,70.5138343,64.89955202,387.4202259,0,0.490303478,60.63946972,-0.490303478,119.3605303,0.948022343,0,437.7968646,64.89955202,480.2723234,11,11,10% -2018-11-26 20:00:00,58.86855306,180.9885393,490.5982701,802.1065562,75.90660143,551.1096034,473.7935291,77.31607432,73.61773733,3.69833699,121.2400946,0,121.2400946,2.288864099,118.9512305,1.027450077,3.158845918,0.59302761,-0.59302761,0.428739995,0.428739995,0.154722522,1.912509113,61.51286729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.76416931,1.658274248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385606342,59.12850779,72.14977565,60.78678204,473.7935291,0,0.590686518,53.79425922,-0.590686518,126.2057408,0.965352732,0,529.5276534,60.78678204,569.3113865,11,12,8% -2018-11-26 21:00:00,60.73745145,197.0417854,458.0076394,786.5990946,73.50831245,577.4389652,502.6945445,74.74442066,71.29176561,3.452655049,113.2658016,0,113.2658016,2.216546837,111.0492548,1.060068507,3.439027919,1.0751054,-1.0751054,0.346299838,0.346299838,0.160495822,1.557893141,50.10719864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52835682,1.605880638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128688278,48.16494526,69.6570451,49.77082589,502.6945445,0,0.639073383,50.27724134,-0.639073383,129.7227587,0.971761724,0,558.1563621,49.77082589,590.7303723,11,13,6% -2018-11-26 22:00:00,65.64193995,211.73212,370.2205251,736.288194,66.54751008,532.8057508,465.474015,67.33173581,64.54085712,2.7908787,91.77090553,0,91.77090553,2.006652963,89.76425257,1.145667979,3.695422626,1.734168647,-1.734168647,0.233593385,0.233593385,0.179751001,1.036408829,33.33447057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.03912679,1.453813241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.750874668,32.04236105,62.79000146,33.49617429,465.474015,0,0.632189975,50.78811963,-0.632189975,129.2118804,0.97090985,0,514.7233075,33.49617429,536.6458836,11,14,4% -2018-11-26 23:00:00,72.95145756,224.4852469,235.6446593,621.0269453,53.57085827,408.0907776,354.3588894,53.73188822,51.95549924,1.776388978,58.75013487,0,58.75013487,1.615359032,57.13477584,1.273243129,3.91800668,2.94294083,-2.94294083,0.026881167,0.026881167,0.22733746,0.440735483,14.17556816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.94160209,1.17032212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319311357,13.62609531,50.26091345,14.79641743,354.3588894,0,0.570601472,55.20782109,-0.570601472,124.7921789,0.962373167,0,391.2864001,14.79641743,400.9703593,11,15,2% -2018-11-26 00:00:00,81.9690562,235.4029595,75.54162561,337.1529946,28.43869014,182.9095647,154.7589413,28.15062338,27.5811587,0.569464683,19.17347315,0,19.17347315,0.857531435,18.31594172,1.430629915,4.108556712,6.858821401,-6.858821401,0,0,0.376463836,0.214382859,6.895289676,0.391273485,1,0.144777552,0,0.945984311,0.984746274,0.724496596,1,26.74213284,0.621278606,0.056460907,0.312029739,0.852396876,0.576893472,0.961238037,0.922476074,0.146785939,6.628014711,26.88891878,7.249293317,94.20587094,0,0.459016956,62.67630836,-0.459016956,117.3236916,0.941071562,0,115.5433849,7.249293317,120.2879024,11,16,4% -2018-11-26 01:00:00,92.35459367,244.9194075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611891739,4.274650063,-24.22436648,24.22436648,1,0,#DIV/0!,0,0,1,0.72772552,0,0.041257324,0.961238037,1,0.614168556,0.889671961,0,0,0.115824807,0.186900944,0.724496596,0.448993192,0.979399492,0.940637529,0,0,0,0,0,0,0.301782568,72.43530022,-0.301782568,107.5646998,0.884317799,0,0,0,0,11,17,0% -2018-11-26 02:00:00,103.4253353,253.5651181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805112631,4.425546179,-4.181235303,4.181235303,1,0.754812962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113854086,83.46246512,-0.113854086,96.53753488,0.610841407,0,0,0,0,11,18,0% -2018-11-26 03:00:00,114.9907873,261.9150047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006967847,4.571279192,-2.099184582,2.099184582,1,0.889135395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0936745,95.37503402,0.0936745,84.62496598,0,0.516236808,0,0,0,11,19,0% -2018-11-26 04:00:00,126.7991152,270.6837635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213062049,4.724322905,-1.250607953,1.250607953,1,0.744020245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306669497,107.8586331,0.306669497,72.14136692,0,0.886958027,0,0,0,11,20,0% -2018-11-26 05:00:00,138.5710531,281.0265931,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418521125,4.904839335,-0.756253577,0.756253577,1,0.659480668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510627036,120.7056053,0.510627036,59.29439469,0,0.952081174,0,0,0,11,21,0% -2018-11-26 06:00:00,149.8267102,295.3960916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614969401,5.155634395,-0.408252981,0.408252981,1,0.599969061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691660859,133.7617245,0.691660859,46.23827554,0,0.977710236,0,0,0,11,22,0% -2018-11-26 07:00:00,159.2934232,319.9078903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780194712,5.583445989,-0.129854373,0.129854373,1,0.552360095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837447823,146.8715893,0.837447823,33.12841073,0,0.990294788,0,0,0,11,23,0% -2018-11-27 08:00:00,163.2639019,2.807647142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.849492637,0.049002687,0.116563417,-0.116563417,1,0.510220171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938066743,159.7293851,0.938066743,20.27061487,0,0.996698889,0,0,0,11,0,0% -2018-11-27 09:00:00,158.3909628,43.80909541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764443806,0.764612957,0.355441196,-0.355441196,1,0.469369665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986673583,170.6356462,0.986673583,9.364353799,0,0.99932468,0,0,0,11,1,0% -2018-11-27 10:00:00,148.5995654,66.66065999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593551683,1.163447998,0.609376572,-0.609376572,1,0.425944158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979967105,168.5121918,0.979967105,11.48780824,0,0.998977879,0,0,0,11,2,0% -2018-11-27 11:00:00,137.2501395,80.36507085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395466833,1.40263509,0.909301233,-0.909301233,1,0.374654021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918413325,156.6952122,0.918413325,23.30478782,0,0.995558281,0,0,0,11,3,0% -2018-11-27 12:00:00,125.4631683,90.44534556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189745378,1.578569073,1.315421542,-1.315421542,1,0.305203357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80621353,143.7276157,0.80621353,36.27238427,0,0.987981691,0,0,0,11,4,0% -2018-11-27 13:00:00,113.6794794,99.12549646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984081208,1.730066286,1.991953559,-1.991953559,1,0.189509569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651018017,130.6184001,0.651018017,49.38159995,0,0.97319721,0,0,0,11,5,0% -2018-11-27 14:00:00,102.1700754,107.4831976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783204213,1.875935688,3.679532989,-3.679532989,1,0,#DIV/0!,0,0,0.09015103,1,0.265364204,0,0.929637548,0.968399511,0.724496596,1,0,0,0.014789183,0.312029739,0.95891671,0.683413305,0.961238037,0.922476074,0,0,0,0,0,0,-0.463405,117.6070451,0.463405,62.39295489,0,0.94210302,0,0,0,11,6,0% -2018-11-27 15:00:00,91.18986165,116.2067188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59156333,2.028189856,33.32011962,-33.32011962,1,0,#DIV/0!,0,0,0.837870851,1,0.030002891,0,0.958484259,0.997246222,0.724496596,1,0,0,0.102450822,0.312029739,0.750845551,0.475342146,0.961238037,0.922476074,0,0,0,0,0,0,-0.256160117,104.8423384,0.256160117,75.15766158,0,0.854809583,0,0,0,11,7,0% -2018-11-27 16:00:00,80.95053114,125.8622541,92.29124274,382.6472749,32.10573531,31.8333593,0,31.8333593,31.13762893,0.695730372,39.31907356,15.97388687,23.34518669,0.968106377,22.37708031,1.4128533,2.196710737,-3.52348684,3.52348684,0.867294573,0.867294573,0.347874125,0.635521418,20.44055341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.9306733,0.701389775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.460433104,19.64823743,30.39110641,20.3496272,0,15.97388687,-0.041745722,92.39254896,0.041745722,87.60745104,0,0,30.39110641,20.3496272,43.70953042,11,8,44% -2018-11-27 17:00:00,72.11865903,136.9717198,251.1537601,638.2397305,55.1843546,158.2973706,102.8837248,55.41364583,53.5203427,1.893303132,62.5591488,0,62.5591488,1.6640119,60.8951369,1.258708052,2.390607493,-1.212483289,1.212483289,0.737500544,0.737500544,0.219723386,1.505512644,48.42246179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.44578915,1.205570957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.090738786,46.54551211,52.53652794,47.75108307,102.8837248,0,0.161199186,80.72349191,-0.161199186,99.27650809,0.739824736,0,128.6524524,47.75108307,159.9045813,11,9,24% -2018-11-27 18:00:00,65.077186,149.9411918,380.5861281,743.4436873,67.30122849,322.2571011,254.116234,68.14086713,65.27184814,2.869018994,94.30689337,0,94.30689337,2.029380354,92.27751302,1.135811164,2.616967481,-0.375878392,0.375878392,0.59443268,0.59443268,0.176835737,1.911201238,61.47080153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.74178317,1.470279158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384658791,59.08807258,64.12644196,60.55835174,254.116234,0,0.34180966,70.01283326,-0.34180966,109.9871667,0.903719757,0,293.7763033,60.55835174,333.4105333,11,10,13% -2018-11-27 19:00:00,60.5203138,164.8050676,461.9400244,788.9618661,73.6800944,459.4626731,384.5220063,74.94066673,71.4583677,3.482299028,114.2244338,0,114.2244338,2.221726697,112.0027071,1.05627874,2.876391054,0.148178422,-0.148178422,0.504813687,0.504813687,0.15950143,2.032954375,65.38680092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68850109,1.609633429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472868524,62.85228015,70.16136961,64.46191358,384.5220063,0,0.487377176,60.83166374,-0.487377176,119.1683363,0.94741005,0,434.461383,64.46191358,476.6504162,11,11,10% -2018-11-27 20:00:00,59.04952058,180.8969325,487.5861393,801.1365782,75.56397212,547.9533263,470.9922565,76.96106983,73.28543956,3.675630275,120.4994371,0,120.4994371,2.278532561,118.2209045,1.030608556,3.157247079,0.594792346,-0.594792346,0.428438208,0.428438208,0.154975636,1.900360986,61.12214177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44475205,1.650789084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.376805066,58.75292756,71.82155712,60.40371665,470.9922565,0,0.58790507,53.99151384,-0.58790507,126.0084862,0.964952256,0,526.3065975,60.40371665,565.839622,11,12,8% -2018-11-27 21:00:00,60.89477391,196.905858,455.3586581,785.6883588,73.18799434,574.5281479,500.1143557,74.41379219,70.98110628,3.432685909,112.6138667,0,112.6138667,2.206888064,110.4069786,1.062814302,3.436655538,1.078657584,-1.078657584,0.345692379,0.345692379,0.160726041,1.547649278,49.77772078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22973925,1.59888289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.121266633,47.8482386,69.35100589,49.44712149,500.1143557,0,0.636530184,50.46643202,-0.636530184,129.533568,0.97144913,0,555.1866614,49.44712149,587.5488135,11,13,6% -2018-11-27 22:00:00,65.77064135,211.5686984,367.9931381,735.2661235,66.24701267,530.2134451,463.1899366,67.02350852,64.24942081,2.774087716,91.22178866,0,91.22178866,1.997591857,89.2241968,1.147914243,3.692570382,1.740655686,-1.740655686,0.232484036,0.232484036,0.180022413,1.028227019,33.07131542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75898713,1.447248501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744946975,31.78940631,62.5039341,33.23665481,463.1899366,0,0.629962298,50.95265901,-0.629962298,129.047341,0.970630171,0,512.0900613,33.23665481,533.8427872,11,14,4% -2018-11-27 23:00:00,73.05208056,224.3086252,233.8850765,619.5637378,53.28080662,405.8116712,352.374353,53.43731822,51.67419372,1.7631245,58.31475753,0,58.31475753,1.606612905,56.70814463,1.274999331,3.91492405,2.957114639,-2.957114639,0.024457303,0.024457303,0.227807637,0.434951142,13.98952387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.67120052,1.16398558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.315120622,13.44726246,49.98632114,14.61124804,352.374353,0,0.568745928,55.33717829,-0.568745928,124.6628217,0.962087283,0,389.0012049,14.61124804,398.5639745,11,15,2% -2018-11-27 00:00:00,82.0449253,235.2202518,74.39313572,334.3361712,28.12214817,180.8177696,152.9828011,27.83496852,27.27416164,0.560806881,18.88546358,0,18.88546358,0.847986527,18.03747705,1.431954081,4.105367862,6.919309713,-6.919309713,0,0,0.378020739,0.211996632,6.818540411,0.39508249,1,0.143529298,0,0.946136656,0.984898619,0.724496596,1,26.4446029,0.614363352,0.056923497,0.312029739,0.851291453,0.575788049,0.961238037,0.922476074,0.145140233,6.554240399,26.58974313,7.168603751,92.5419751,0,0.457571792,62.76946964,-0.457571792,117.2305304,0.94072753,0,113.6465268,7.168603751,118.3382346,11,16,4% -2018-11-27 01:00:00,92.41212063,244.7314648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612895774,4.271369844,-23.63895456,23.63895456,1,0,#DIV/0!,0,0,1,0.720095963,0,0.042277848,0.961238037,1,0.61160923,0.887112634,0,0,0.115824807,0.184006402,0.724496596,0.448993192,0.979779594,0.941017631,0,0,0,0,0,0,0.300724581,72.4988717,-0.300724581,107.5011283,0.883734908,0,0,0,0,11,17,0% -2018-11-27 02:00:00,103.4685474,253.3683587,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805866825,4.422112079,-4.168182659,4.168182659,1,0.757045095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113174005,83.50168439,-0.113174005,96.49831561,0.608202432,0,0,0,0,11,18,0% -2018-11-27 03:00:00,115.0247579,261.7020323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007560746,4.567562123,-2.097567819,2.097567819,1,0.888858913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094027548,95.39535188,0.094027548,84.60464812,0,0.518240946,0,0,0,11,19,0% -2018-11-27 04:00:00,126.8297402,270.4422483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213596555,4.720107669,-1.251192267,1.251192267,1,0.744120169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306768776,107.8646094,0.306768776,72.13539059,0,0.887010792,0,0,0,11,20,0% -2018-11-27 05:00:00,138.6068026,280.735936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41914507,4.899766412,-0.757597945,0.757597945,1,0.659710568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510563171,120.7013496,0.510563171,59.29865041,0,0.952068925,0,0,0,11,21,0% -2018-11-27 06:00:00,149.8829144,295.0235597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615950348,5.149132488,-0.41000853,0.41000853,1,0.600269278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691535614,133.7517893,0.691535614,46.24821075,0,0.977697144,0,0,0,11,22,0% -2018-11-27 07:00:00,159.4009669,319.4462453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782071703,5.575388763,-0.131957794,0.131957794,1,0.552719801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837367101,146.8631275,0.837367101,33.13687247,0,0.990289032,0,0,0,11,23,0% -2018-11-28 08:00:00,163.4457474,2.562575832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.852666441,0.044725386,0.114050116,-0.114050116,1,0.510649971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938133307,159.7403962,0.938133307,20.2596038,0,0.99670267,0,0,0,11,0,0% -2018-11-28 09:00:00,158.5810636,43.92401383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767761692,0.766618662,0.352347886,-0.352347886,1,0.469898652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986979979,170.7441606,0.986979979,9.255839411,0,0.999340411,0,0,0,11,1,0% -2018-11-28 10:00:00,148.7719425,66.83403657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596560231,1.166473991,0.605365679,-0.605365679,1,0.426630061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980589289,168.6925841,0.980589289,11.30741589,0,0.999010253,0,0,0,11,2,0% -2018-11-28 11:00:00,137.4129337,80.52157332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.398308127,1.405366573,0.903676556,-0.903676556,1,0.375615897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919405421,156.8393127,0.919405421,23.16068727,0,0.995617027,0,0,0,11,3,0% -2018-11-28 12:00:00,125.6235655,90.57966659,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192544837,1.580913417,1.306512818,-1.306512818,1,0.306726839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807604091,143.8625008,0.807604091,36.13749917,0,0.988088476,0,0,0,11,4,0% -2018-11-28 13:00:00,113.8419727,99.24106623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98691725,1.732083359,1.974467295,-1.974467295,1,0.192499896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652808039,130.7536521,0.652808039,49.2463479,0,0.973407806,0,0,0,11,5,0% -2018-11-28 14:00:00,102.3375855,107.5826876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786127815,1.877672117,3.623193048,-3.623193048,1,0,#DIV/0!,0,0,0.08210465,1,0.269295336,0,0.929051739,0.967813702,0.724496596,1,0,0,0.013518374,0.312029739,0.962379778,0.686876373,0.961238037,0.922476074,0,0,0,0,0,0,-0.46556783,117.7469772,0.46556783,62.2530228,0,0.942604263,0,0,0,11,6,0% -2018-11-28 15:00:00,91.3642937,116.2904381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594607744,2.029651034,29.01433599,-29.01433599,1,0,#DIV/0!,0,0,0.815891847,1,0.034452083,0,0.958057481,0.996819444,0.724496596,1,0,0,0.10052126,0.312029739,0.754765925,0.479262521,0.961238037,0.922476074,0,0,0,0,0,0,-0.258643266,104.9895736,0.258643266,75.01042643,0,0.856683542,0,0,0,11,7,0% -2018-11-28 16:00:00,81.13092329,125.9274128,89.35881454,375.6899826,31.43600417,31.16171715,0,31.16171715,30.48809266,0.673624489,39.31118884,16.69719818,22.61399066,0.947911512,21.66607915,1.416001737,2.197847972,-3.590311895,3.590311895,0.855866816,0.855866816,0.351795224,0.610689223,19.64186464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.30631434,0.686758664,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442442263,18.88050741,29.7487566,19.56726607,0,16.69719818,-0.044444087,92.54729767,0.044444087,87.45270233,0,0,29.7487566,19.56726607,42.5551409,11,8,43% -2018-11-28 17:00:00,72.30737641,137.01163,247.7635902,635.1877094,54.72343287,155.5080046,100.5669386,54.94106606,53.07331946,1.867746599,61.72326436,0,61.72326436,1.650113409,60.07315095,1.262001792,2.391304057,-1.224281098,1.224281098,0.739518088,0.739518088,0.220869551,1.488688567,47.88134166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01609341,1.195501548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078549799,46.02536686,52.09464321,47.22086841,100.5669386,0,0.15832633,80.89023626,-0.15832633,99.10976374,0.734196557,0,125.9305432,47.22086841,156.8356572,11,9,25% -2018-11-28 18:00:00,65.26969111,149.9452529,377.2090025,741.7322105,66.9071073,319.0925908,251.3594189,67.73317194,64.88961115,2.843560795,93.47618599,0,93.47618599,2.017496146,91.45868984,1.139171012,2.617038361,-0.379055614,0.379055614,0.594976017,0.594976017,0.1773741,1.896134058,60.98618922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37436243,1.46166909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37374267,58.6222448,63.7481051,60.08391389,251.3594189,0,0.338881628,70.19124856,-0.338881628,109.8087514,0.902455855,0,290.5888844,60.08391389,329.9126044,11,10,14% -2018-11-28 19:00:00,60.70904214,164.762011,458.7441634,787.7948062,73.31963539,456.2559806,381.6889954,74.56698514,71.10877786,3.458207278,113.4386911,0,113.4386911,2.210857528,111.2278336,1.059572671,2.875639574,0.147989483,-0.147989483,0.504845998,0.504845998,0.159826852,2.019540842,64.95537559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.35246203,1.601758753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463150465,62.43757771,69.8156125,64.03933647,381.6889954,0,0.484503062,61.02008052,-0.484503062,118.9799195,0.946801478,0,431.1993174,64.03933647,473.1117823,11,11,10% -2018-11-28 20:00:00,59.22391932,180.8026746,484.6825161,800.2074694,75.22897375,544.8865394,468.2722553,76.61428417,72.96054263,3.653741537,119.7853186,0,119.7853186,2.268431124,117.5168875,1.033652388,3.155601969,0.596336564,-0.596336564,0.428174131,0.428174131,0.155212889,1.888724508,60.74787262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13244876,1.643470627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368374476,58.39316582,71.50082324,60.03663644,468.2722553,0,0.585188558,54.1836881,-0.585188558,125.8163119,0.964557455,0,523.1763178,60.03663644,562.4690956,11,12,8% -2018-11-28 21:00:00,61.0451808,196.7692555,452.8277511,784.8293107,72.87635397,571.724406,497.6319362,74.09246987,70.67886301,3.413606863,111.9908219,0,111.9908219,2.197490957,109.7933309,1.065439397,3.434271375,1.08190301,-1.08190301,0.345137378,0.345137378,0.160936148,1.537926996,49.46501877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93921153,1.592074718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.114222873,47.54765753,69.0534344,49.13973225,497.6319362,0,0.634063903,50.64940955,-0.634063903,129.3505905,0.971143595,0,552.3255018,49.13973225,584.4864738,11,13,6% -2018-11-28 22:00:00,65.89242209,211.4062054,365.8898821,734.3180406,65.95680627,527.7471546,461.0209569,66.72619769,63.96796521,2.758232484,90.70307911,0,90.70307911,1.988841064,88.71423804,1.150039718,3.689734343,1.746642139,-1.746642139,0.231460292,0.231460292,0.180264089,1.020547129,32.82430378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.4884413,1.44090858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.739382921,31.55196933,62.22782422,32.99287791,461.0209569,0,0.627821913,51.11039059,-0.627821913,128.8896094,0.970359581,0,509.583927,32.99287791,531.1771057,11,14,4% -2018-11-28 23:00:00,73.14596977,224.1340439,232.2498968,618.2275953,53.00443392,403.6831325,350.52618,53.1569525,51.40615467,1.750797824,57.90995561,0,57.90995561,1.598279248,56.31167636,1.276638007,3.911877032,2.970212564,-2.970212564,0.022217426,0.022217426,0.228221561,0.429590621,13.81711107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.4135512,1.157947875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.311236942,13.28153272,49.72478814,14.43948059,350.52618,0,0.566985658,55.45970712,-0.566985658,124.5402929,0.961814348,0,386.8658974,14.43948059,396.3162486,11,15,2% -2018-11-28 00:00:00,82.11434159,235.0403385,73.35087777,331.7964476,27.82953018,178.9176115,151.3742945,27.54331706,26.99036716,0.5529499,18.62393256,0,18.62393256,0.839163015,17.78476954,1.433165624,4.102227782,6.975187915,-6.975187915,0,0,0.379402824,0.209790754,6.74759179,0.398559078,1,0.142395026,0,0.946274782,0.985036745,0.724496596,1,26.16953107,0.607970748,0.057344477,0.312029739,0.850286939,0.574783534,0.961238037,0.922476074,0.143620215,6.486041886,26.31315128,7.094012634,91.0426952,0,0.456226387,62.85613008,-0.456226387,117.1438699,0.940405287,0,111.9301832,7.094012634,116.5730726,11,16,4% -2018-11-28 01:00:00,92.46333904,244.5468849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613789704,4.268148316,-23.13986336,23.13986336,1,0,#DIV/0!,0,0,1,0.713245482,0,0.043188594,0.961238037,1,0.609332159,0.884835563,0,0,0.115824807,0.181431404,0.724496596,0.448993192,0.98011617,0.941354207,0,0,0,0,0,0,0.299769526,72.55623914,-0.299769526,107.4437609,0.883205194,0,0,0,0,11,17,0% -2018-11-28 02:00:00,103.5055949,253.1754792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806513425,4.418745697,-4.157115859,4.157115859,1,0.758937629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112595563,83.53503984,-0.112595563,96.46496016,0.605932769,0,0,0,0,11,18,0% -2018-11-28 03:00:00,115.0526046,261.493501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008046763,4.563922566,-2.096476281,2.096476281,1,0.888672249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094283514,95.41008309,0.094283514,84.58991691,0,0.519684594,0,0,0,11,19,0% -2018-11-28 04:00:00,126.8541294,270.2058339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214022228,4.71598146,-1.251994827,1.251994827,1,0.744257415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306778479,107.8651935,0.306778479,72.13480649,0,0.887015947,0,0,0,11,20,0% -2018-11-28 05:00:00,138.6359651,280.4510589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419654053,4.894794368,-0.759049036,0.759049036,1,0.65995872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510419667,120.6917876,0.510419667,59.30821241,0,0.952041392,0,0,0,11,21,0% -2018-11-28 06:00:00,149.9318081,294.656661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616803705,5.142728898,-0.411816918,0.411816918,1,0.60057853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691342409,133.7364663,0.691342409,46.26353368,0,0.977676938,0,0,0,11,22,0% -2018-11-28 07:00:00,159.5002915,318.9843333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783805244,5.567326879,-0.134081644,0.134081644,1,0.553083001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83723104,146.848869,0.83723104,33.15113097,0,0.990279328,0,0,0,11,23,0% -2018-11-29 08:00:00,163.6207452,2.302114705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.855720728,0.040179481,0.111540783,-0.111540783,1,0.511079092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938157219,159.7443531,0.938157219,20.25564686,0,0.996704029,0,0,0,11,0,0% -2018-11-29 09:00:00,158.7672586,44.02421337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771011407,0.768367474,0.349282196,-0.349282196,1,0.470422916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987255606,170.8428664,0.987255606,9.157133563,0,0.999354554,0,0,0,11,1,0% -2018-11-29 10:00:00,148.9419746,66.99589465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599527852,1.169298947,0.601412215,-0.601412215,1,0.427306144,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98119096,168.869773,0.98119096,11.13022703,0,0.99904152,0,0,0,11,2,0% -2018-11-29 11:00:00,137.5740644,80.6686606,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40112039,1.407933731,0.898157458,-0.898157458,1,0.376559718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920384931,156.9824212,0.920384931,23.01757878,0,0.995674904,0,0,0,11,3,0% -2018-11-29 12:00:00,125.7825059,90.70585382,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19531887,1.5831158,1.29781009,-1.29781009,1,0.308215093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808987115,143.9970875,0.808987115,36.00291249,0,0.988194318,0,0,0,11,4,0% -2018-11-29 13:00:00,114.0029222,99.34925342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989726349,1.733971582,1.957485359,-1.957485359,1,0.195403978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654592345,130.8887466,0.654592345,49.11125339,0,0.973616583,0,0,0,11,5,0% -2018-11-29 14:00:00,102.5032445,107.6752093,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78901911,1.879286924,3.5692154,-3.5692154,1,0,#DIV/0!,0,0,0.074261015,1,0.273169694,0,0.928471215,0.967233178,0.724496596,1,0,0,0.012270607,0.312029739,0.965792357,0.690288952,0.961238037,0.922476074,0,0,0,0,0,0,-0.467723412,117.8866195,0.467723412,62.11338053,0,0.943099215,0,0,0,11,6,0% -2018-11-29 15:00:00,91.53637006,116.367401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597611043,2.03099429,25.72714416,-25.72714416,1,0,#DIV/0!,0,0,0.794637875,1,0.038849895,0,0.957630981,0.996392944,0.724496596,1,0,0,0.098627021,0.312029739,0.758643635,0.483140231,0.961238037,0.922476074,0,0,0,0,0,0,-0.261114387,105.1361962,0.261114387,74.86380382,0,0.858513041,0,0,0,11,7,0% -2018-11-29 16:00:00,81.30822852,125.9859576,86.49477246,368.7417089,30.77094714,30.49512368,0,30.49512368,29.84308955,0.65203413,39.27543752,17.37592095,21.89951657,0.927857589,20.97165899,1.419096297,2.198869771,-3.659184285,3.659184285,0.844088944,0.844088944,0.355754993,0.586540615,18.86516238,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.68631281,0.672229665,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.424946679,18.13391165,29.11125949,18.80614132,0,17.37592095,-0.047122201,92.70090343,0.047122201,87.29909657,0,0,29.11125949,18.80614132,41.41950286,11,8,42% -2018-11-29 17:00:00,72.49215637,137.0451838,244.445996,632.1634335,54.26825114,152.7654432,98.29084289,54.47460032,52.63186314,1.842737172,60.90514983,0,60.90514983,1.636388001,59.26876183,1.265226811,2.391889682,-1.236347928,1.236347928,0.741581637,0.741581637,0.222005073,1.472258226,47.35288542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5917488,1.185557536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066646073,45.51739462,51.65839488,46.70295215,98.29084289,0,0.155483278,81.05517414,-0.155483278,98.94482586,0.72842201,0,123.2556082,46.70295215,153.8217564,11,9,25% -2018-11-29 18:00:00,65.45725384,149.9435967,373.9174652,740.0548984,66.51937164,315.9871669,248.6548519,67.33231495,64.51356715,2.818747796,92.66642299,0,92.66642299,2.005804485,90.66061851,1.142444599,2.617009455,-0.382406961,0.382406961,0.595549131,0.595549131,0.177898541,1.881515143,60.51599467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.01289464,1.453198522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363151316,58.17027591,63.37604596,59.62347443,248.6548519,0,0.335995144,70.36693652,-0.335995144,109.6330635,0.901188325,0,287.4608956,59.62347443,326.4832671,11,10,14% -2018-11-29 19:00:00,60.89185118,164.7145098,455.6470146,786.665073,72.96620109,453.124176,378.9233154,74.20086057,70.76600091,3.434859662,112.6770942,0,112.6770942,2.200200179,110.476894,1.062763291,2.874810521,0.147618488,-0.147618488,0.504909441,0.504909441,0.16013756,2.006617657,64.53972156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02297179,1.59403754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453787662,62.03803525,69.47675945,63.63207279,378.9233154,0,0.481683156,61.20461057,-0.481683156,118.7953894,0.946197325,0,428.012987,63.63207279,469.658906,11,11,10% -2018-11-29 20:00:00,59.39167374,180.7058317,481.889312,799.3211095,74.90178507,541.9115701,465.635665,76.27590508,72.64321989,3.632685185,119.098208,0,119.098208,2.258565178,116.8396428,1.036580255,3.15391174,0.597656071,-0.597656071,0.427948482,0.427948482,0.155433589,1.87760602,60.39026384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82742608,1.636322783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36031917,58.04941866,71.18774525,59.68574144,465.635665,0,0.582538931,54.37068359,-0.582538931,125.6293164,0.964168827,0,520.1391381,59.68574144,559.2022621,11,12,8% -2018-11-29 21:00:00,61.18860977,196.632043,450.4165106,784.0238738,72.57355367,569.029936,495.2493129,73.78062317,70.38519326,3.395429913,111.3970581,0,111.3970581,2.188360411,109.2086977,1.067942705,3.431876565,1.08483464,-1.08483464,0.34463604,0.34463604,0.161125429,1.528730656,49.16923288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.65692499,1.585459668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.107560156,47.26333688,68.76448515,48.84879655,495.2493129,0,0.631676317,50.82609328,-0.631676317,129.1739067,0.970845536,0,549.57507,48.84879655,581.5456303,11,13,6% -2018-11-29 22:00:00,66.00723307,211.2447111,363.9119357,733.4462714,65.67704983,525.4088837,458.9689174,66.43996634,63.69664445,2.743321889,90.21506742,0,90.21506742,1.980405375,88.23466205,1.152043547,3.686915736,1.752114693,-1.752114693,0.23052443,0.23052443,0.180475119,1.013371104,32.59349816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.22763747,1.434796952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.734183915,31.33011018,61.96182138,32.76490713,458.9689174,0,0.625770333,51.2612498,-0.625770333,128.7387502,0.970098481,0,507.2068711,32.76490713,528.6508475,11,14,4% -2018-11-29 23:00:00,73.23309088,223.9615837,230.7397541,617.0220762,52.74193272,401.7070354,348.8160528,52.89098258,51.15156885,1.739413731,57.53588865,0,57.53588865,1.590363868,55.94552478,1.278158557,3.908867033,2.982198947,-2.982198947,0.020167634,0.020167634,0.228577572,0.424652358,13.65827955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.16883362,1.152213209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307659187,13.12885782,49.47649281,14.28107103,348.8160528,0,0.565321836,55.57535685,-0.565321836,124.4246431,0.961554805,0,384.8822445,14.28107103,394.2289198,11,15,2% -2018-11-29 00:00:00,82.17728916,234.8633123,72.41424883,329.5399327,27.56113758,177.2105248,149.934568,27.27595679,26.73006759,0.545889196,18.388743,0,18.388743,0.831069988,17.55767301,1.434264266,4.099138091,7.026189058,-7.026189058,0,0,0.38060379,0.207767497,6.682516898,0.401697529,1,0.141375187,0,0.946398724,0.985160687,0.724496596,1,25.91720897,0.602107377,0.057723501,0.312029739,0.84938374,0.573880336,0.961238037,0.922476074,0.14222711,6.423489425,26.05943608,7.025596802,89.7062225,0,0.454981485,62.93625703,-0.454981485,117.063743,0.940105418,0,110.3927419,7.025596802,114.9908545,11,16,4% -2018-11-29 01:00:00,92.50824556,244.3657738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61457347,4.264987333,-22.71809086,22.71809086,1,0,#DIV/0!,0,0,1,0.707189325,0,0.043989387,0.961238037,1,0.607335414,0.882838818,0,0,0.115824807,0.179173652,0.724496596,0.448993192,0.980410067,0.941648104,0,0,0,0,0,0,0.298917805,72.60738443,-0.298917805,107.3926156,0.882729937,0,0,0,0,11,17,0% -2018-11-29 02:00:00,103.5364902,252.9866026,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80705265,4.415449179,-4.148002517,4.148002517,1,0.760496103,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112118765,83.56253246,-0.112118765,96.43746754,0.60404432,0,0,0,0,11,18,0% -2018-11-29 03:00:00,115.0743553,261.2895586,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008426384,4.560363099,-2.095905875,2.095905875,1,0.888574704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094442758,95.41924799,0.094442758,84.58075201,0,0.520578781,0,0,0,11,19,0% -2018-11-29 04:00:00,126.8723252,269.9747106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214339804,4.711947597,-1.253014052,1.253014052,1,0.744431712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30669927,107.8604253,0.30669927,72.13957472,0,0.886973854,0,0,0,11,20,0% -2018-11-29 05:00:00,138.6585942,280.1722356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420049004,4.889927985,-0.760605672,0.760605672,1,0.66022492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510197409,120.6769799,0.510197409,59.32302005,0,0.951998718,0,0,0,11,21,0% -2018-11-29 06:00:00,149.9734421,294.2958588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617530356,5.13643171,-0.413677005,0.413677005,1,0.600896624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691082257,133.7158401,0.691082257,46.2841599,0,0.977649713,0,0,0,11,22,0% -2018-11-29 07:00:00,159.5913824,318.5229407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785395081,5.559274059,-0.136224718,0.136224718,1,0.553449488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837040672,146.8289287,0.837040672,33.17107135,0,0.990265746,0,0,0,11,23,0% -2018-11-30 08:00:00,163.7887642,2.026317267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.858653212,0.035365908,0.10903675,-0.10903675,1,0.511507307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938139427,159.7414088,0.938139427,20.25859116,0,0.996703018,0,0,0,11,0,0% -2018-11-30 09:00:00,158.9494711,44.1092855,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774191616,0.769852263,0.34624564,-0.34624564,1,0.470942198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987501223,170.931723,0.987501223,9.068276998,0,0.999367151,0,0,0,11,1,0% -2018-11-30 10:00:00,149.1096057,67.14599077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602453567,1.171918618,0.59751792,-0.59751792,1,0.427972107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981772605,169.0437527,0.981772605,10.95624728,0,0.99907171,0,0,0,11,2,0% -2018-11-30 11:00:00,137.7334694,80.8061874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403902532,1.410334026,0.892745887,-0.892745887,1,0.377485151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921351994,157.1245414,0.921351994,22.87545858,0,0.995731924,0,0,0,11,3,0% -2018-11-30 12:00:00,125.9399158,90.82381231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198066191,1.585174564,1.289315037,-1.289315037,1,0.309667833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810362348,144.1313489,0.810362348,35.86865111,0,0.988299206,0,0,0,11,4,0% -2018-11-30 13:00:00,114.1622428,99.44999416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992507019,1.735729839,1.941004753,-1.941004753,1,0.198222328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656370272,131.0236331,0.656370272,48.97636693,0,0.973823485,0,0,0,11,5,0% -2018-11-30 14:00:00,102.6669571,107.7607224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791876435,1.88077941,3.517515317,-3.517515317,1,0,#DIV/0!,0,0,0.066621615,1,0.276983837,0,0.927896641,0.966658605,0.724496596,1,0,0,0.01104672,0.312029739,0.96915146,0.693648056,0.961238037,0.922476074,0,0,0,0,0,0,-0.469870685,118.0259027,0.469870685,61.97409727,0,0.943587743,0,0,0,11,6,0% -2018-11-30 15:00:00,91.70598716,116.4375898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60057142,2.032219315,23.13815188,-23.13815188,1,0,#DIV/0!,0,0,0.774098256,1,0.043191785,0,0.957205376,0.995967339,0.724496596,1,0,0,0.0967694,0.312029739,0.762474377,0.486970973,0.961238037,0.922476074,0,0,0,0,0,0,-0.263572057,105.2821214,0.263572057,74.71787857,0,0.860298555,0,0,0,11,7,0% -2018-11-30 16:00:00,81.48233958,126.0378945,83.7007742,361.8120268,30.11125685,29.83426315,0,29.83426315,29.20329136,0.630971791,39.21259857,18.01041132,21.20218725,0.907965493,20.29422176,1.422135108,2.199776241,-3.73011213,3.73011213,0.831959568,0.831959568,0.359748845,0.563086747,18.11080539,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.07131446,0.657817909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.407954432,17.40879502,28.47926889,18.06661292,0,18.01041132,-0.049778366,92.85326943,0.049778366,87.14673057,0,0,28.47926889,18.06661292,40.30350571,11,8,42% -2018-11-30 17:00:00,72.67289112,137.0724134,241.2031005,629.1713248,53.81915944,150.0714192,96.05681518,54.01460406,52.19631321,1.818290856,60.10533051,0,60.10533051,1.622846229,58.48248428,1.268381227,2.392364927,-1.248675883,1.248675883,0.743689842,0.743689842,0.223127975,1.456232433,46.8374408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.17308164,1.175746568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05503544,45.02192965,51.22811708,46.19767622,96.05681518,0,0.152671953,81.21819794,-0.152671953,98.78180206,0.722500424,0,120.6292068,46.19767622,150.8646619,11,9,25% -2018-11-30 18:00:00,65.63977277,149.9362793,370.7137241,738.4145606,66.13827169,312.9430266,246.0044712,66.93855542,64.14395877,2.794596642,91.8781473,0,91.8781473,1.994312916,89.88383438,1.145630155,2.616881742,-0.385931373,0.385931373,0.596151841,0.596151841,0.17840794,1.867353834,60.06051829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.65761301,1.444872919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352891496,57.73245469,63.0105045,59.17732761,246.0044712,0,0.333152249,70.53978376,-0.333152249,109.4602162,0.899918468,0,284.3944713,59.17732761,323.1248486,11,10,14% -2018-11-30 19:00:00,61.06865213,164.6626347,452.650676,785.5747927,72.61999446,450.0695999,376.2270942,73.84250568,70.43023369,3.412271996,111.9401578,0,111.9401578,2.189760772,109.750397,1.065849049,2.87390513,0.147063698,-0.147063698,0.505004316,0.505004316,0.160432754,1.994192618,64.14008959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.70021957,1.586474225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.444785763,61.6538938,69.14500533,63.24036803,376.2270942,0,0.478919509,61.38514278,-0.478919509,118.6148572,0.945598323,0,424.9047146,63.24036803,466.2942707,11,11,10% -2018-11-30 20:00:00,59.55271031,180.6064768,479.2083814,798.4793554,74.58257986,539.0307141,463.084599,75.94611509,72.33363989,3.612475198,118.4385601,0,118.4385601,2.248939963,116.1896202,1.039390873,3.15217767,0.598747124,-0.598747124,0.427761901,0.427761901,0.155637052,1.86701154,60.04950895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52984601,1.629349348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352643505,57.72187209,70.88248951,59.35122144,463.084599,0,0.579958136,54.55240176,-0.579958136,125.4475982,0.963786881,0,517.1973507,59.35122144,556.0415381,11,12,8% -2018-11-30 21:00:00,61.32500207,196.4942927,448.126443,783.2739101,72.27974728,566.44686,492.9684474,73.47841263,70.10024622,3.378166416,110.8329454,0,110.8329454,2.179501064,108.6534443,1.0703232,3.429472368,1.087446054,-1.087446054,0.344189462,0.344189462,0.161293198,1.520064223,48.8904906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38302306,1.579041102,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101281355,46.9953992,68.48430441,48.5744403,492.9684474,0,0.629369166,50.99640395,-0.629369166,129.0035961,0.970555371,0,546.9374786,48.5744403,578.7284783,11,13,6% -2018-11-30 22:00:00,66.11503015,211.0842923,362.0603698,732.6530155,65.40788861,523.2005117,457.0355483,66.16496344,63.43559943,2.729364003,89.75801762,0,89.75801762,1.972289171,87.78572845,1.153924961,3.6841159,1.757061163,-1.757061163,0.229678534,0.229678534,0.180654648,1.006700495,32.37894842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.97671107,1.42891679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729351082,31.12387682,61.70606215,32.55279361,457.0355483,0,0.623809005,51.40517515,-0.623809005,128.5948249,0.969847262,0,504.9607371,32.55279361,526.2658894,11,14,4% -2018-11-30 23:00:00,73.31341564,223.7913306,229.355168,615.9504523,52.49347066,399.8850562,347.2454812,52.63957498,50.91059884,1.728976136,57.19268768,0,57.19268768,1.582871821,55.60981586,1.279560489,3.905895556,2.993041197,-2.993041197,0.0183135,0.0183135,0.228874157,0.420134579,13.51297226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.93720409,1.146785246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.304386072,12.98918293,49.24159016,14.13596818,347.2454812,0,0.563755542,55.68408151,-0.563755542,124.3159185,0.961309076,0,383.0518228,14.13596818,392.3035313,11,15,2% -2018-11-30 00:00:00,82.23375872,234.6892704,71.58260543,327.5720022,27.31721133,175.6976482,148.6645317,27.03311654,26.49349662,0.539619916,18.17974615,0,18.17974615,0.823714711,17.35603144,1.435249846,4.096100487,7.072067189,-7.072067189,0,0,0.381618009,0.205928678,6.623374156,0.404492873,1,0.140470109,0,0.946508521,0.985270484,0.724496596,1,25.68787035,0.596778504,0.058060284,0.312029739,0.848582158,0.573078754,0.961238037,0.922476074,0.14096187,6.366639171,25.82883222,6.963417675,88.53078819,0,0.453837723,63.00982379,-0.453837723,116.9901762,0.939828462,0,109.0325867,6.963417675,113.5900043,11,16,4% -2018-11-30 01:00:00,92.54684431,244.1882413,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615247146,4.261888806,-22.36639619,22.36639619,1,0,#DIV/0!,0,0,1,0.701940312,0,0.044680174,0.961238037,1,0.60561704,0.881120444,0,0,0.115824807,0.177230836,0.724496596,0.448993192,0.980662059,0.941900096,0,0,0,0,0,0,0.298169687,72.65229657,-0.298169687,107.3477034,0.882310251,0,0,0,0,11,17,0% -2018-11-30 02:00:00,103.5612537,252.8018543,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807484855,4.412224713,-4.140813391,4.140813391,1,0.761725516,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111743476,83.58417093,-0.111743476,96.41582907,0.602546583,0,0,0,0,11,18,0% -2018-11-30 03:00:00,115.0900459,261.090354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008700236,4.556886322,-2.095852481,2.095852481,1,0.888565573,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094505775,95.42287482,0.094505775,84.57712518,0,0.520931802,0,0,0,11,19,0% -2018-11-30 04:00:00,126.8843779,269.7490685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214550164,4.708009399,-1.254248169,1.254248169,1,0.744642759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306531937,107.8503527,0.306531937,72.14964731,0,0.88688486,0,0,0,11,20,0% -2018-11-30 05:00:00,138.674752,279.8997392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420331011,4.885172025,-0.762266501,0.762266501,1,0.660508939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509897394,120.6569954,0.509897394,59.34300458,0,0.951941056,0,0,0,11,21,0% -2018-11-30 06:00:00,150.0078774,293.941616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618131365,5.130249008,-0.415587504,0.415587504,1,0.601223338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690756259,133.6900032,0.690756259,46.30999685,0,0.977615567,0,0,0,11,22,0% -2018-11-30 07:00:00,159.6742372,318.0628837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786841169,5.551244549,-0.138385678,0.138385678,1,0.553819034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836797089,146.8034298,0.836797089,33.19657025,0,0.990248358,0,0,0,11,23,0% -2018-12-01 08:00:00,163.9496742,1.735313583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.861461622,0.030286936,0.106539468,-0.106539468,1,0.511934368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938080906,159.7317274,0.938080906,20.26827261,0,0.996699693,0,0,0,12,0,0% -2018-12-01 09:00:00,159.127618,44.17884362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777300866,0.771066281,0.343239837,-0.343239837,1,0.47145622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987717586,171.0107178,0.987717586,8.98928219,0,0.999378243,0,0,0,12,1,0% -2018-12-01 10:00:00,149.2747723,67.2840927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.605336266,1.174328952,0.59368464,-0.59368464,1,0.428627637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98233467,169.2145089,0.98233467,10.78549106,0,0.99910085,0,0,0,12,2,0% -2018-12-01 11:00:00,137.8910791,80.93401655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406653339,1.412565066,0.88744391,-0.88744391,1,0.378391843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922306686,157.2656679,0.922306686,22.73433211,0,0.995788098,0,0,0,12,3,0% -2018-12-01 12:00:00,126.0957149,90.9334541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200785397,1.587088174,1.281029484,-1.281029484,1,0.311084746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811729453,144.2652495,0.811729453,35.73475054,0,0.988403122,0,0,0,12,4,0% -2018-12-01 13:00:00,114.3198435,99.54323111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99525767,1.737357131,1.925022872,-1.925022872,1,0.20095539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658141059,131.158253,0.658141059,48.841747,0,0.974028444,0,0,0,12,5,0% -2018-12-01 14:00:00,102.8286228,107.8391934,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794698033,1.882148988,3.468013979,-3.468013979,1,0,#DIV/0!,0,0,0.059188015,1,0.280734264,0,0.927328704,0.966090667,0.724496596,1,0,0,0.009847566,0.312029739,0.972454045,0.696950641,0.961238037,0.922476074,0,0,0,0,0,0,-0.47200848,118.1647505,0.47200848,61.83524952,0,0.9440697,0,0,0,12,6,0% -2018-12-01 15:00:00,91.87303712,116.5009933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603486992,2.033325915,21.04872394,-21.04872394,1,0,#DIV/0!,0,0,0.75426293,1,0.047473123,0,0.95678131,0.995543274,0.724496596,1,0,0,0.094949699,0.312029739,0.766253781,0.490750377,0.961238037,0.922476074,0,0,0,0,0,0,-0.266014748,105.427258,0.266014748,74.57274199,0,0.862040496,0,0,0,12,7,0% -2018-12-01 16:00:00,81.65314624,126.0832365,80.97844714,354.9110638,29.45766196,29.17985451,0,29.17985451,28.56940477,0.61044974,39.12358847,18.60116923,20.52241924,0.888257195,19.63416204,1.425116246,2.200567609,-3.803093716,3.803093716,0.819478981,0.819478981,0.363771633,0.540338005,17.37912763,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.46199855,0.643539314,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.391473045,16.70547852,27.8534716,17.34901784,0,18.60116923,-0.05241079,93.00429355,0.05241079,86.99570645,0,0,27.8534716,17.34901784,39.20805679,12,8,41% -2018-12-01 17:00:00,72.84947102,137.0933577,238.0370463,626.215997,53.37651818,147.4276855,93.86624245,53.56144302,51.76701922,1.794423802,59.32433674,0,59.32433674,1.609498961,57.71483778,1.271463128,2.392730474,-1.261255456,1.261255456,0.745841076,0.745841076,0.224236181,1.44062211,46.33535916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.76042793,1.166076519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.043725815,44.53930968,50.80415374,45.7053862,93.86624245,0,0.149894354,81.37919572,-0.149894354,98.62080428,0.716431733,0,118.0529085,45.7053862,147.9661696,12,9,25% -2018-12-01 18:00:00,65.81714601,149.923364,367.599986,736.814067,65.76405957,309.9623918,243.4102373,66.5521545,63.78103053,2.771123969,91.11190157,0,91.11190157,1.98302904,89.12887253,1.148725902,2.616656328,-0.389627142,0.389627142,0.596783855,0.596783855,0.178901148,1.853659377,59.62005746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.30875258,1.436697789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.342969908,57.30906699,62.65172248,58.74576478,243.4102373,0,0.330355036,70.70967389,-0.330355036,109.2903261,0.898647683,0,281.3917683,58.74576478,319.8396964,12,10,14% -2018-12-01 19:00:00,61.23935722,164.6064638,449.7572133,784.5260959,72.28121607,447.0945913,373.6024607,73.49213057,70.10167072,3.390459852,111.2283888,0,111.2283888,2.179545354,109.0488435,1.068828415,2.872924764,0.146323846,-0.146323846,0.505130838,0.505130838,0.160711633,1.982273273,63.75672247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38439234,1.579073189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436150238,61.28538674,68.82054258,62.86445993,373.6024607,0,0.476214192,61.56156459,-0.476214192,118.4384354,0.945005229,0,421.8768216,62.86445993,463.0203533,12,11,10% -2018-12-01 20:00:00,59.70695803,180.5046905,476.6415143,797.6840322,74.27152606,536.2462279,460.6211373,75.62509058,72.03196552,3.593125069,117.806814,0,117.806814,2.239560543,115.5672535,1.042083004,3.150401165,0.599606477,-0.599606477,0.427614943,0.427614943,0.155822613,1.856946719,59.72578968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23986512,1.62255399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.345351576,57.41070083,70.5852167,59.03325482,460.6211373,0,0.577448111,54.72874422,-0.577448111,125.2712558,0.963412133,0,514.3532092,59.03325482,552.9892939,12,12,8% -2018-12-01 21:00:00,61.45430301,196.3560841,445.9589605,782.5812093,71.9950791,563.9772163,490.7912274,73.18598885,69.82416183,3.361827018,110.2988304,0,110.2988304,2.170917268,108.1279131,1.072579927,3.427060174,1.089731524,-1.089731524,0.343798624,0.343798624,0.161438799,1.511931226,48.62890547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11764024,1.572822171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095389027,46.74395363,68.21302927,48.3167758,490.7912274,0,0.62714415,51.16026401,-0.62714415,128.839736,0.970273513,0,544.4147576,48.3167758,576.037121,12,13,6% -2018-12-01 22:00:00,66.21577467,210.9250325,360.3361384,731.9403297,65.14945298,521.123781,455.2224584,65.90132261,63.1849566,2.716366018,89.33216496,0,89.33216496,1.964496383,87.36766857,1.155683285,3.681336293,1.761470622,-1.761470622,0.228924472,0.228924472,0.180801885,1.000536429,32.18069087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.73578364,1.423270942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.724885237,30.93330411,61.46066887,32.35657506,455.2224584,0,0.621939303,51.54210864,-0.621939303,128.4578914,0.969606303,0,502.8472337,32.35657506,524.0239649,12,14,4% -2018-12-01 23:00:00,73.38692234,223.6233764,228.0965356,615.0156811,52.25918862,398.2186585,345.8157892,52.4028693,50.68338126,1.719488034,56.88045323,0,56.88045323,1.575807353,55.30464588,1.280843423,3.902964203,3.002710144,-3.002710144,0.016660013,0.016660013,0.229109962,0.416035288,13.38112498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.71879391,1.141667063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.30141615,12.8624463,49.02021006,14.00411337,345.8157892,0,0.562287759,55.78584035,-0.562287759,124.2141596,0.961077559,0,381.3760046,14.00411337,390.5414167,12,15,2% -2018-12-01 00:00:00,82.28374807,234.5183144,70.85526555,325.897261,27.09792934,174.3798161,147.5648524,26.81496371,26.28082679,0.534136921,17.99678202,0,17.99678202,0.81710255,17.17967947,1.436122325,4.093116743,7.11260096,-7.11260096,0,0,0.382440587,0.204275638,6.570206698,0.406940942,1,0.139679989,0,0.946604219,0.985366182,0.724496596,1,25.48168868,0.591988016,0.058354607,0.312029739,0.847882375,0.572378971,0.961238037,0.922476074,0.139825159,6.315532588,25.62151384,6.907520604,87.51467241,0,0.45279562,63.07681,-0.45279562,116.92319,0.939574904,0,107.8481037,6.907520604,112.3689378,12,16,4% -2018-12-01 01:00:00,92.57914729,244.0144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615810939,4.258854703,-22.07897037,22.07897037,1,0,#DIV/0!,0,0,1,0.697508681,0,0.045261035,0.961238037,1,0.604175033,0.879678437,0,0,0.115824807,0.175600611,0.724496596,0.448993192,0.980872858,0.942110895,0,0,0,0,0,0,0.297525308,72.69097216,-0.297525308,107.3090278,0.881947069,0,0,0,0,12,17,0% -2018-12-01 02:00:00,103.579914,252.6213616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807810538,4.40907452,-4.135522081,4.135522081,1,0.762630383,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111469419,83.59997196,-0.111469419,96.40002804,0.601446481,0,0,0,0,12,18,0% -2018-12-01 03:00:00,115.0997208,260.8960371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008869095,4.553494853,-2.096311896,2.096311896,1,0.888644137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094473203,95.42100018,0.094473203,84.57899982,0,0.520749391,0,0,0,12,19,0% -2018-12-01 04:00:00,126.890347,269.5290973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214654344,4.704170178,-1.255695196,1.255695196,1,0.744890215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306277404,107.8350321,0.306277404,72.16496791,0,0.886749302,0,0,0,12,20,0% -2018-12-01 05:00:00,138.68451,279.6338403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420501321,4.880531214,-0.764029986,0.764029986,1,0.660810512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50952073,120.6319111,0.50952073,59.36808893,0,0.951868566,0,0,0,12,21,0% -2018-12-01 06:00:00,150.0351855,293.5943939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61860798,5.124188839,-0.417546975,0.417546975,1,0.601558428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690365601,133.6590563,0.690365601,46.34094371,0,0.977574607,0,0,0,12,22,0% -2018-12-01 07:00:00,159.7488658,317.6050045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788143684,5.54325305,-0.14056306,0.14056306,1,0.554191389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836501444,146.772504,0.836501444,33.22749596,0,0.99022724,0,0,0,12,23,0% -2018-12-02 08:00:00,164.1033465,1.429315052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864143709,0.024946254,0.1040505,-0.1040505,1,0.512360006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937982656,159.7154836,0.937982656,20.28451637,0,0.99669411,0,0,0,12,0,0% -2018-12-02 09:00:00,159.3016093,44.23252599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780337587,0.772003215,0.340266514,-0.340266514,1,0.471964689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987905445,171.0798683,0.987905445,8.920131717,0,0.999387869,0,0,0,12,1,0% -2018-12-02 10:00:00,149.4374031,67.40998059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60817471,1.17652611,0.589914324,-0.589914324,1,0.429272399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982877568,169.3820177,0.982877568,10.61798227,0,0.999128964,0,0,0,12,2,0% -2018-12-02 11:00:00,138.0468164,81.0520197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409371469,1.414624609,0.882253698,-0.882253698,1,0.379279422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923249018,157.4057857,0.923249018,22.5942143,0,0.99584343,0,0,0,12,3,0% -2018-12-02 12:00:00,126.2498159,91.03469867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203474968,1.588855225,1.272955397,-1.272955397,1,0.312465496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813088009,144.3987449,0.813088009,35.6012551,0,0.988506042,0,0,0,12,4,0% -2018-12-02 13:00:00,114.4756271,99.62891385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997976606,1.738852577,1.909537468,-1.909537468,1,0.20360355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659903845,131.2925399,0.659903845,48.70746014,0,0.974231386,0,0,0,12,5,0% -2018-12-02 14:00:00,102.9881357,107.9105956,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797482059,1.883395192,3.420637982,-3.420637982,1,0,#DIV/0!,0,0,0.051961836,1,0.284417421,0,0.926768101,0.965530064,0.724496596,1,0,0,0.008674007,0.312029739,0.975697025,0.70019362,0.961238037,0.922476074,0,0,0,0,0,0,-0.474135525,118.303079,0.474135525,61.69692096,0,0.944544919,0,0,0,12,6,0% -2018-12-02 15:00:00,92.03740791,116.5576072,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606355803,2.034314015,19.32916711,-19.32916711,1,0,#DIV/0!,0,0,0.735122392,1,0.051689203,0,0.956359449,0.995121412,0.724496596,1,0,0,0.093169228,0.312029739,0.769977428,0.494474024,0.961238037,0.922476074,0,0,0,0,0,0,-0.268440831,105.5715083,0.268440831,74.42849174,0,0.863739215,0,0,0,12,7,0% -2018-12-02 16:00:00,81.82053565,126.1220036,78.32937811,348.049482,28.81092548,28.53264971,0,28.53264971,27.94216977,0.590479939,39.00946678,19.14884648,19.86062029,0.868755704,18.99186459,1.428037743,2.201244222,-3.878116174,3.878116174,0.806649386,0.806649386,0.367817621,0.518303892,16.67043482,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.85907642,0.62941055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.375509405,16.02425604,27.23458582,16.65366659,0,19.14884648,-0.055017598,93.15386862,0.055017598,86.84613138,0,0,27.23458582,16.65366659,38.13407754,12,8,40% -2018-12-02 17:00:00,73.02178488,137.1080628,234.9499899,623.3022484,52.94069743,144.8360081,91.72051575,53.11549234,51.34434007,1.771152267,58.56270256,0,58.56270256,1.596357358,56.9663452,1.274470572,2.392987127,-1.274075463,1.274075463,0.748033426,0.748033426,0.225327515,1.425438272,45.84699473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.35413265,1.156555472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.032725175,44.06987521,50.38685783,45.22643068,91.72051575,0,0.147152551,81.53805142,-0.147152551,98.46194858,0.710216559,0,115.528287,45.22643068,145.1280813,12,9,26% -2018-12-02 18:00:00,65.98927151,149.9049211,364.5784509,735.2563395,65.39698862,307.0475023,240.8741278,66.17337449,63.42502812,2.748346362,90.36822687,0,90.36822687,1.971960496,88.39626637,1.151730059,2.616334438,-0.393491884,0.393491884,0.597444765,0.597444765,0.179377,1.840440901,59.19490586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.96654952,1.428678667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333393168,56.9003951,62.29994269,58.32907377,240.8741278,0,0.327605646,70.8764878,-0.327605646,109.1235122,0.897377478,0,278.4549599,58.32907377,316.6301721,12,10,14% -2018-12-02 19:00:00,61.40387993,164.5460822,446.9686548,783.521111,71.95006346,444.2014817,371.0515396,73.1499421,69.78050357,3.369438521,110.5422851,0,110.5422851,2.169559881,108.3727252,1.071699878,2.871870906,0.145398158,-0.145398158,0.50528914,0.50528914,0.160973399,1.970866901,63.38985436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.07567427,1.571838748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427886361,60.93273916,68.50356063,62.50457791,371.0515396,0,0.473569294,61.73376227,-0.473569294,118.2662377,0.94441883,0,418.9316217,62.50457791,459.8396178,12,11,10% -2018-12-02 20:00:00,59.85434865,180.4005608,474.1904308,796.9369257,73.9687852,533.560323,458.2473218,75.31300117,71.73835341,3.574647766,117.2033917,0,117.2033917,2.230431789,114.9729599,1.044655455,3.148583758,0.600231408,-0.600231408,0.427508074,0.427508074,0.15598962,1.847416828,59.41927564,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.957634,1.615940239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338447203,57.11606787,70.2960812,58.73200811,458.2473218,0,0.575010778,54.899613,-0.575010778,125.100387,0.963045108,0,511.6089228,58.73200811,550.0478475,12,12,8% -2018-12-02 21:00:00,61.57646212,196.2175041,443.9153776,781.9474808,71.71968331,561.622954,488.7194621,72.90349186,69.55707024,3.346421627,109.7950358,0,109.7950358,2.162613069,107.6324228,1.074712006,3.424641496,1.091686052,-1.091686052,0.34346438,0.34346438,0.16156161,1.504334756,48.38457687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.86090164,1.566805807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.08988541,46.50909569,67.95078705,48.07590149,488.7194621,0,0.625002924,51.31759792,-0.625002924,128.6824021,0.970000374,0,542.0088482,48.07590149,573.4735642,12,13,6% -2018-12-02 22:00:00,66.30943357,210.7670217,358.7400767,731.310118,64.90185777,519.1802922,453.5311307,65.64916152,62.94482729,2.704334231,88.93771543,0,88.93771543,1.957030474,86.98068495,1.157317941,3.678578484,1.765333474,-1.765333474,0.228263886,0.228263886,0.180916106,0.994879613,31.99874823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50496222,1.417861916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.720786893,30.75841393,61.22574911,32.17627585,453.5311307,0,0.620162527,51.67199598,-0.620162527,128.328004,0.969375974,0,500.8679304,32.17627585,521.9266595,12,14,4% -2018-12-02 23:00:00,73.45359589,223.4578182,226.964132,614.2203879,52.03919976,396.7090887,344.5281113,52.18097738,50.47002588,1.710951497,56.59925539,0,56.59925539,1.569173877,55.03008151,1.282007096,3.900074668,3.011180279,-3.011180279,0.015211534,0.015211534,0.229283805,0.412352281,13.26266681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5137086,1.136861132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.298747824,12.74857981,48.81245642,13.88544094,344.5281113,0,0.560919367,55.88059802,-0.560919367,124.119402,0.960860628,0,379.8559539,13.88544094,388.9436973,12,15,2% -2018-12-02 00:00:00,82.32726202,234.3505499,70.2315171,324.5195307,26.90340601,173.257564,146.6359601,26.6216039,26.09216906,0.529434842,17.83968139,0,17.83968139,0.811236954,17.02844443,1.436881786,4.090188699,7.147596575,-7.147596575,0,0,0.383067419,0.202809239,6.523042265,0.409038396,1,0.139004894,0,0.946685874,0.985447837,0.724496596,1,25.29877679,0.587738412,0.058606316,0.312029739,0.847284454,0.57178105,0.961238037,0.922476074,0.138817351,6.270196341,25.43759414,6.857934753,86.65622217,0,0.451855578,63.13720164,-0.451855578,116.8627984,0.939345175,0,106.8376983,6.857934753,111.3260794,12,16,4% -2018-12-02 01:00:00,92.60517436,243.8443654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616265197,4.255887038,-21.85119244,21.85119244,1,0,#DIV/0!,0,0,1,0.693902008,0,0.045732184,0.961238037,1,0.603007351,0.878510755,0,0,0.115824807,0.174280601,0.724496596,0.448993192,0.981043109,0.942281146,0,0,0,0,0,0,0.296984664,72.72341526,-0.296984664,107.2765847,0.881641138,0,0,0,0,12,17,0% -2018-12-02 02:00:00,103.5925077,252.4452532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80803034,4.406000849,-4.132104905,4.132104905,1,0.763214754,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111296175,83.60996023,-0.111296175,96.39003977,0.600748263,0,0,0,0,12,18,0% -2018-12-02 03:00:00,115.1034326,260.7067581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00893388,4.550191311,-2.097279838,2.097279838,1,0.888809665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094345817,95.41366875,0.094345817,84.58633125,0,0.520034795,0,0,0,12,19,0% -2018-12-02 04:00:00,126.8903,269.3149857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214653525,4.700433226,-1.257352945,1.257352945,1,0.745173707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305936718,107.814528,0.305936718,72.18547204,0,0.886567509,0,0,0,12,20,0% -2018-12-02 05:00:00,138.6879486,279.3748064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420561336,4.876010218,-0.765894414,0.765894414,1,0.661129348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509068636,120.601812,0.509068636,59.39818804,0,0.951781417,0,0,0,12,21,0% -2018-12-02 06:00:00,150.0554478,293.2546494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618961625,5.118259178,-0.419553831,0.419553831,1,0.60190162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689911555,133.6231081,0.689911555,46.37689188,0,0.977526942,0,0,0,12,22,0% -2018-12-02 07:00:00,159.8152909,317.1501665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789303022,5.535314629,-0.142755274,0.142755274,1,0.554566279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836154944,146.736291,0.836154944,33.26370897,0,0.99020247,0,0,0,12,23,0% -2018-12-03 08:00:00,164.2496545,1.108616993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.866697267,0.019349017,0.101571515,-0.101571515,1,0.512783938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937845706,159.6928622,0.937845706,20.30713784,0,0.996686326,0,0,0,12,0,0% -2018-12-03 09:00:00,159.4713486,44.26999749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783300096,0.772657216,0.337327493,-0.337327493,1,0.472467291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988065543,171.1392225,0.988065543,8.860777472,0,0.99939607,0,0,0,12,1,0% -2018-12-03 10:00:00,149.5974199,67.52344737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61096753,1.178506479,0.58620901,-0.58620901,1,0.429906045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983401676,169.5462453,0.983401676,10.45375468,0,0.999156076,0,0,0,12,2,0% -2018-12-03 11:00:00,138.2005978,81.16007741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412055459,1.416510572,0.87717751,-0.87717751,1,0.380147501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924178944,157.5448706,0.924178944,22.45512936,0,0.995897923,0,0,0,12,3,0% -2018-12-03 12:00:00,126.4021257,91.12747294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206133274,1.590474442,1.265094848,-1.265094848,1,0.313809729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814437514,144.5317825,0.814437514,35.46821755,0,0.988607936,0,0,0,12,4,0% -2018-12-03 13:00:00,114.6294909,99.70699883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000662036,1.740215417,1.894546597,-1.894546597,1,0.20616714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661657678,131.4264196,0.661657678,48.57358043,0,0.974432223,0,0,0,12,5,0% -2018-12-03 14:00:00,103.1453856,107.9749089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800226587,1.88451767,3.375318842,-3.375318842,1,0,#DIV/0!,0,0,0.044944736,1,0.288029717,0,0.926215546,0.964977509,0.724496596,1,0,0,0.007526911,0.312029739,0.978877278,0.703373874,0.961238037,0.922476074,0,0,0,0,0,0,-0.47625045,118.440798,0.47625045,61.55920204,0,0.945013223,0,0,0,12,6,0% -2018-12-03 15:00:00,92.19898389,116.6074341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609175836,2.035183658,17.8912108,-17.8912108,1,0,#DIV/0!,0,0,0.716667613,1,0.05583527,0,0.955940479,0.994702442,0.724496596,1,0,0,0.091429289,0.312029739,0.773640871,0.498137466,0.961238037,0.922476074,0,0,0,0,0,0,-0.270848583,105.7147687,0.270848583,74.2852313,0,0.86539501,0,0,0,12,7,0% -2018-12-03 16:00:00,81.98439282,126.1542225,75.75510001,341.238442,28.171842,27.89343096,0,27.89343096,27.32235702,0.571073943,38.87144082,19.65425478,19.21718604,0.849484979,18.36770106,1.43089759,2.201806548,-3.955154216,3.955154216,0.793475104,0.793475104,0.371880467,0.496992906,15.98500025,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.26328882,0.615448976,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.360069668,15.36539026,26.62335849,15.98083923,0,19.65425478,-0.057596837,93.30188298,0.057596837,86.69811702,0,0,26.62335849,15.98083923,37.08249815,12,8,39% -2018-12-03 17:00:00,73.18972038,137.1165815,231.9440936,620.4350501,52.5120757,142.298157,89.62102155,52.67713542,50.92864287,1.748492551,57.82096367,0,57.82096367,1.583432831,56.23753084,1.277401599,2.393135807,-1.287123017,1.287123017,0.750264689,0.750264689,0.226399711,1.410691993,45.3727037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.95454869,1.147191696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022041546,43.61396863,49.97659024,44.76116033,89.62102155,0,0.144448676,81.69464545,-0.144448676,98.30535455,0.703856294,0,113.0569104,44.76116033,142.3521946,12,9,26% -2018-12-03 18:00:00,66.15604737,149.8810272,361.6513059,733.7443436,65.03731253,304.2006075,238.3981296,65.8024779,63.07619759,2.726280306,89.64766111,0,89.64766111,1.961114935,87.68654617,1.154640847,2.615917411,-0.397522543,0.397522543,0.598134048,0.598134048,0.179834309,1.827707406,58.78535287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63124035,1.420821094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324167794,56.50671719,61.95540814,57.92753829,238.3981296,0,0.324906259,71.04010419,-0.324906259,108.9598958,0.896109459,0,275.586227,57.92753829,313.4986423,12,10,14% -2018-12-03 19:00:00,61.5621352,164.4815813,444.2869869,782.5619563,71.62673049,441.3925875,368.5764442,72.81614326,69.46692029,3.349222975,109.882334,0,109.882334,2.159810199,107.7225238,1.074461954,2.870745153,0.144286354,-0.144286354,0.50547927,0.50547927,0.16121726,1.959980513,63.03971069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77424608,1.564775137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41999921,60.59616774,68.19424529,62.16094288,368.5764442,0,0.470986918,61.90162137,-0.470986918,118.0983786,0.943839939,0,416.0714139,62.16094288,456.7545078,12,11,10% -2018-12-03 20:00:00,59.99481669,180.2941818,471.8567806,796.2397766,73.67451196,530.9751608,455.9651514,75.01000932,71.4529536,3.557055725,116.6286978,0,116.6286978,2.221558366,114.4071394,1.047107085,3.146727095,0.600619724,-0.600619724,0.427441668,0.427441668,0.156137445,1.838426769,59.13012445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68329684,1.609511473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.331933936,56.83812475,70.01523078,58.44763622,455.9651514,0,0.572648045,55.06491081,-0.572648045,124.9350892,0.962686334,0,508.966651,58.44763622,547.2194599,12,12,8% -2018-12-03 21:00:00,61.69143311,196.0786459,441.9969122,781.3743476,71.45368378,559.3859307,486.7548797,72.63105101,69.29909158,3.331959424,109.3218608,0,109.3218608,2.154592202,107.1672686,1.076718628,3.422217963,1.093305383,-1.093305383,0.343187458,0.343187458,0.161661047,1.49727748,48.1575906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.61292275,1.560994716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.084772437,46.29090785,67.69769518,47.85190257,486.7548797,0,0.622947095,51.46833221,-0.622947095,128.5316678,0.969736362,0,539.7216015,47.85190257,571.0397147,12,13,6% -2018-12-03 22:00:00,66.39597912,210.6103556,357.272906,730.7641251,64.66520221,517.3715053,451.9629235,65.40858185,62.71530777,2.693274078,88.57484686,0,88.57484686,1.949894436,86.62495243,1.158828446,3.675844144,1.76864149,-1.76864149,0.227698182,0.227698182,0.180996659,0.989730365,31.83313071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.28433932,1.412691881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71705628,30.59921607,61.0013956,32.01190795,451.9629235,0,0.618479901,51.79478646,-0.618479901,128.2052135,0.969156629,0,499.024259,32.01190795,519.9754125,12,14,4% -2018-12-03 23:00:00,73.51342745,223.2947576,225.9581179,613.5668588,51.83358971,395.357381,343.3833976,51.97398347,50.27061573,1.703367737,56.3491357,0,56.3491357,1.562973975,54.78616173,1.283051353,3.897228723,3.018429885,-3.018429885,0.013971779,0.013971779,0.229394678,0.409083189,13.15752158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.32202798,1.132369325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296379378,12.64751021,48.61840736,13.77987954,343.3833976,0,0.559651149,55.96832419,-0.559651149,124.0316758,0.960658631,0,378.4926319,13.77987954,387.5112874,12,15,2% -2018-12-03 00:00:00,82.36431196,234.1860857,69.71063229,323.4418619,26.73369377,172.3311479,145.8780654,26.45308246,25.92757427,0.525508192,17.70826938,0,17.70826938,0.806119504,16.90214988,1.43752843,4.087318257,7.176890027,-7.176890027,0,0,0.383495213,0.201529876,6.481893567,0.410782719,1,0.138444763,0,0.946753544,0.985515507,0.724496596,1,25.13918836,0.584030837,0.058815325,0.312029739,0.846788348,0.571284944,0.961238037,0.922476074,0.137938531,6.230642647,25.27712689,6.814673484,85.95387703,0,0.451017888,63.19099065,-0.451017888,116.8090094,0.939139652,0,105.9998211,6.814673484,110.4598886,12,16,4% -2018-12-03 01:00:00,92.62495265,243.6782549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616610393,4.252987863,-21.67944975,21.67944975,1,0,#DIV/0!,0,0,1,0.691125219,0,0.04609396,0.961238037,1,0.602111929,0.877615333,0,0,0.115824807,0.173268418,0.724496596,0.448993192,0.981173394,0.942411431,0,0,0,0,0,0,0.296547625,72.74963701,-0.296547625,107.250363,0.881393018,0,0,0,0,12,17,0% -2018-12-03 02:00:00,103.5990791,252.273659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808145032,4.403005966,-4.130540923,4.130540923,1,0.763482211,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111223195,83.61416779,-0.111223195,96.38583221,0.600453483,0,0,0,0,12,18,0% -2018-12-03 03:00:00,115.1012417,260.5226668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008895641,4.546978311,-2.098751989,2.098751989,1,0.889061418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09412452,95.40093269,0.09412452,84.59906731,0,0.51878879,0,0,0,12,19,0% -2018-12-03 04:00:00,126.8843124,269.1069202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214549021,4.696801797,-1.259219051,1.259219051,1,0.74549283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305511043,107.7889121,0.305511043,72.21108788,0,0.886339795,0,0,0,12,20,0% -2018-12-03 05:00:00,138.6851561,279.1229005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420512598,4.871613631,-0.767857912,0.767857912,1,0.661465126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508542428,120.5667903,0.508542428,59.43320968,0,0.951679787,0,0,0,12,21,0% -2018-12-03 06:00:00,150.0687554,292.9228327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619193886,5.112467884,-0.421606356,0.421606356,1,0.602252623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68939547,133.5822741,0.68939547,46.41772589,0,0.977472688,0,0,0,12,22,0% -2018-12-03 07:00:00,159.8735474,316.6992478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79031979,5.527444612,-0.144960626,0.144960626,1,0.554943417,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835758842,146.6949369,0.835758842,33.30506309,0,0.99017413,0,0,0,12,23,0% -2018-12-04 08:00:00,164.3884748,0.77359902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.869120138,0.01350185,0.099104276,-0.099104276,1,0.51320586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937671102,159.6640559,0.937671102,20.33594412,0,0.996676399,0,0,0,12,0,0% -2018-12-04 09:00:00,159.6367332,44.29095012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786186601,0.773022908,0.334424676,-0.334424676,1,0.472963702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988198616,171.1888593,0.988198616,8.81114074,0,0.999402884,0,0,0,12,1,0% -2018-12-04 10:00:00,149.7547377,67.62429838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613713243,1.180266661,0.582570807,-0.582570807,1,0.430528214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983907336,169.7071478,0.983907336,10.29285217,0,0.999182206,0,0,0,12,2,0% -2018-12-04 11:00:00,138.3523331,81.25807874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41470374,1.418221018,0.872217675,-0.872217675,1,0.380995682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925096359,157.6828896,0.925096359,22.31711038,0,0.995951576,0,0,0,12,3,0% -2018-12-04 12:00:00,126.5525451,91.21171084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20875859,1.591944671,1.25744999,-1.25744999,1,0.315117077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815777394,144.6643016,0.815777394,35.33569843,0,0.98870877,0,0,0,12,4,0% -2018-12-04 13:00:00,114.7813276,99.77744891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003312086,1.741445003,1.880048557,-1.880048557,1,0.208646451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663401524,131.5598112,0.663401524,48.4401888,0,0.974630863,0,0,0,12,5,0% -2018-12-04 14:00:00,103.3002581,108.0321192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802929621,1.885516178,3.331992509,-3.331992509,1,0,#DIV/0!,0,0,0.038138379,1,0.291567546,0,0.925671761,0.964433724,0.724496596,1,0,0,0.006407147,0.312029739,0.981991669,0.706488265,0.961238037,0.922476074,0,0,0,0,0,0,-0.478351803,118.5778109,0.478351803,61.42218909,0,0.945474419,0,0,0,12,6,0% -2018-12-04 15:00:00,92.35764654,116.6504824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611945021,2.035934991,16.67269397,-16.67269397,1,0,#DIV/0!,0,0,0.698889949,1,0.059906542,0,0.955525104,0.994287067,0.724496596,1,0,0,0.089731173,0.312029739,0.777239656,0.501736252,0.961238037,0.922476074,0,0,0,0,0,0,-0.273236202,105.8569309,0.273236202,74.14306915,0,0.867008143,0,0,0,12,7,0% -2018-12-04 16:00:00,82.14460124,126.1799257,73.25707644,334.4895536,27.54123391,27.26300688,0,27.26300688,26.71076409,0.552242786,38.7108691,20.11837296,18.59249614,0.830469819,17.76202632,1.433693754,2.202255154,-4.034168949,4.034168949,0.779962789,0.779962789,0.375953222,0.476412389,15.3230601,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67540244,0.601672557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.345159154,14.72910821,26.02056159,15.33078077,0,20.11837296,-0.060146491,93.44822127,0.060146491,86.55177873,0,0,26.02056159,15.33078077,36.05425099,12,8,39% -2018-12-04 17:00:00,73.35316458,137.1189723,229.0215157,617.6195307,52.09103847,139.8158931,87.5691307,52.24676239,50.52030147,1.726460924,57.099655,0,57.099655,1.570737005,55.52891799,1.280254239,2.393177533,-1.300383546,1.300383546,0.752532373,0.752532373,0.227450414,1.396394376,44.9128432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5620354,1.137993613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011682972,43.17193323,49.57371837,44.30992684,87.5691307,0,0.141784912,81.84885541,-0.141784912,98.15114459,0.697353168,0,110.6403291,44.30992684,139.64029,12,9,26% -2018-12-04 18:00:00,66.31737223,149.8517646,358.8207179,732.281078,64.68528442,301.423955,235.9842284,65.43972657,62.73478443,2.704942138,88.95073733,0,88.95073733,1.950499988,87.00023734,1.157456497,2.615406682,-0.401715411,0.401715411,0.598851071,0.598851071,0.180271877,1.815467741,58.39168319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.30306103,1.413130602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.315300198,56.12830692,61.61836123,57.54143752,235.9842284,0,0.322259083,71.20040023,-0.322259083,108.7995998,0.894845335,0,272.7877471,57.54143752,310.4474672,12,10,14% -2018-12-04 19:00:00,61.7140396,164.4130578,441.7141512,781.6507335,71.31140687,438.6702018,366.1792691,72.49093269,69.16110484,3.329827852,109.249012,0,109.249012,2.150302028,107.0987099,1.077113186,2.869549193,0.142988633,-0.142988633,0.505701193,0.505701193,0.161442432,1.94962085,62.7065083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.48028464,1.5578865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412493669,60.27588094,67.89277831,61.83376744,366.1792691,0,0.468469168,62.06502725,-0.468469168,117.9349727,0.94326939,0,413.2984742,61.83376744,453.7674383,12,11,10% -2018-12-04 20:00:00,60.1282994,180.1856534,469.6421437,795.5942754,73.38885403,528.492848,453.7765778,74.71627016,71.1759093,3.540360857,116.0831198,0,116.0831198,2.212944725,113.8701751,1.049436798,3.144832916,0.600769749,-0.600769749,0.427416012,0.427416012,0.156265478,1.829981097,58.85848259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.41699133,1.60327092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325815075,56.57701226,69.7428064,58.18028318,453.7765778,0,0.570361794,55.22454143,-0.570361794,124.7754586,0.962336344,0,506.4284994,58.18028318,544.5063311,12,12,8% -2018-12-04 21:00:00,61.79917347,195.939608,440.2046918,780.8633434,71.19719422,557.2679134,484.8991284,72.36878503,69.05033612,3.31844891,108.8795821,0,108.8795821,2.146858095,106.7327241,1.078599052,3.419791294,1.094585992,-1.094585992,0.342968461,0.342968461,0.161736564,1.490761684,47.94802023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37380954,1.555391382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080051766,46.08946083,67.4538613,47.64485222,484.8991284,0,0.620978219,51.61239554,-0.620978219,128.3876045,0.969481878,0,537.554779,47.64485222,568.7373818,12,13,6% -2018-12-04 22:00:00,66.47538844,210.4551347,355.9352433,730.3039354,64.43957043,515.698746,450.5190762,65.17966984,62.49647963,2.683190212,88.24371142,0,88.24371142,1.943090805,86.30062061,1.1602144,3.673135027,1.771387798,-1.771387798,0.227228535,0.227228535,0.181042961,0.985088664,31.68383764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.07399339,1.407762674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.713693383,30.45570989,60.78768677,31.86347257,450.5190762,0,0.616892576,51.91043267,-0.616892576,128.0895673,0.968948611,0,497.31752,31.86347257,518.1715255,12,14,4% -2018-12-04 23:00:00,73.56641373,223.1343,225.0785535,613.0570428,51.64241743,394.1643701,342.3824249,51.78194521,50.085208,1.69673721,56.13011059,0,56.13011059,1.557209426,54.57290116,1.283976139,3.894428209,3.024441071,-3.024441071,0.012943805,0.012943805,0.229441751,0.406225539,13.06560972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.14380702,1.128192928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29430902,12.55916104,48.43811604,13.68735396,342.3824249,0,0.558483797,56.04899309,-0.558483797,123.9510069,0.960471888,0,377.2868101,13.68735396,386.2449095,12,15,2% -2018-12-04 00:00:00,82.39491502,234.0250334,69.29188627,322.6665654,26.58878622,171.6005738,145.2911861,26.30938773,25.78703622,0.522351508,17.60237007,0,17.60237007,0.801750007,16.80062006,1.438062554,4.084507364,7.200348586,-7.200348586,0,0,0.383721495,0.200437502,6.446759054,0.412172187,1,0.137999427,0,0.946807295,0.985569258,0.724496596,1,25.00292091,0.580865151,0.058981605,0.312029739,0.846393911,0.570890507,0.961238037,0.922476074,0.137188516,6.196870018,25.14010942,6.777735168,85.40620009,0,0.450282743,63.23817412,-0.450282743,116.7618259,0.938958658,0,105.3330005,6.777735168,109.7688926,12,16,4% -2018-12-04 01:00:00,92.63851571,243.5161877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616847113,4.250159256,-21.56100696,21.56100696,1,0,#DIV/0!,0,0,1,0.689180662,0,0.04634681,0.961238037,1,0.60148672,0.876990125,0,0,0.115824807,0.172561709,0.724496596,0.448993192,0.981264224,0.942502261,0,0,0,0,0,0,0.296213949,72.76965464,-0.296213949,107.2303454,0.881203088,0,0,0,0,12,17,0% -2018-12-04 02:00:00,103.5996787,252.1067091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808155497,4.40009214,-4.130812093,4.130812093,1,0.763435838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111249815,83.61263309,-0.111249815,96.38736691,0.600561049,0,0,0,0,12,18,0% -2018-12-04 03:00:00,115.0932148,260.3439118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008755545,4.543858449,-2.10072407,2.10072407,1,0.889398663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093810324,95.38285058,0.093810324,84.61714942,0,0.517009621,0,0,0,12,19,0% -2018-12-04 04:00:00,126.8724662,268.9050842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214342265,4.693279095,-1.261291014,1.261291014,1,0.745847156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305001642,107.7582627,0.305001642,72.24173732,0,0.886066456,0,0,0,12,20,0% -2018-12-04 05:00:00,138.6762278,278.8783799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42035677,4.867345942,-0.769918479,0.769918479,1,0.661817504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507943503,120.5269443,0.507943503,59.47305568,0,0.951563856,0,0,0,12,21,0% -2018-12-04 06:00:00,150.0752073,292.5993848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619306494,5.106822654,-0.423702726,0.423702726,1,0.602611123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688818751,133.5366753,0.688818751,46.46332466,0,0.977411964,0,0,0,12,22,0% -2018-12-04 07:00:00,159.9236815,316.2531347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791194794,5.51965847,-0.147177329,0.147177329,1,0.555322495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835314431,146.6485932,0.835314431,33.35140685,0,0.990142301,0,0,0,12,23,0% -2018-12-05 08:00:00,164.519687,0.424723528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.871410223,0.007412824,0.096650618,-0.096650618,1,0.51362546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937459902,159.6292641,0.937459902,20.37073588,0,0.996664385,0,0,0,12,0,0% -2018-12-05 09:00:00,159.7976548,44.29510257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788995214,0.773095382,0.331560025,-0.331560025,1,0.473453586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988305387,171.2288869,0.988305387,8.771113115,0,0.99940835,0,0,0,12,1,0% -2018-12-05 10:00:00,149.9092653,67.71235043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616410259,1.181803459,0.579001875,-0.579001875,1,0.431138537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984394861,169.8646712,0.984394861,10.13532884,0,0.999207374,0,0,0,12,2,0% -2018-12-05 11:00:00,138.501927,81.34592042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417314646,1.419754144,0.867376561,-0.867376561,1,0.381823562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926001111,157.8198014,0.926001111,22.18019856,0,0.996004384,0,0,0,12,3,0% -2018-12-05 12:00:00,126.7009708,91.28735259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211349106,1.593264868,1.250023016,-1.250023016,1,0.316387164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817107017,144.7962349,0.817107017,35.20376514,0,0.988808505,0,0,0,12,4,0% -2018-12-05 13:00:00,114.9310257,99.84023258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005924812,1.742540784,1.86604182,-1.86604182,1,0.211041744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665134283,131.692628,0.665134283,48.30737199,0,0.97482721,0,0,0,12,5,0% -2018-12-05 14:00:00,103.4526359,108.082218,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805589116,1.886390568,3.290598917,-3.290598917,1,0,#DIV/0!,0,0,0.031544407,1,0.295027305,0,0.925137474,0.963899438,0.724496596,1,0,0,0.005315578,0.312029739,0.985037067,0.709533663,0.961238037,0.922476074,0,0,0,0,0,0,-0.480438065,118.7140166,0.480438065,61.28598339,0,0.945928313,0,0,0,12,6,0% -2018-12-05 15:00:00,92.51327521,116.6867656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614661254,2.036568254,15.62857724,-15.62857724,1,0,#DIV/0!,0,0,0.681781051,1,0.063898244,0,0.955114041,0.993876004,0.724496596,1,0,0,0.088076151,0.312029739,0.780769352,0.505265948,0.961238037,0.922476074,0,0,0,0,0,0,-0.275601826,105.9978823,0.275601826,74.00211773,0,0.868578851,0,0,0,12,7,0% -2018-12-05 16:00:00,82.30104369,126.1991509,70.83668592,327.8148158,26.91994679,26.64220793,0,26.64220793,26.10821107,0.53399686,38.52926264,20.5423523,17.98691034,0.81173572,17.17517462,1.43642419,2.202590696,-4.115106739,4.115106739,0.766121612,0.766121612,0.380028321,0.456568396,14.68480905,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.09620555,0.588099766,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330782248,14.11559702,25.4269878,14.70369678,0,20.5423523,-0.062664502,93.5927655,0.062664502,86.4072345,0,0,25.4269878,14.70369678,35.05026327,12,8,38% -2018-12-05 17:00:00,73.51200452,137.1152981,226.1843999,614.8609578,51.6779765,137.3909548,85.56618646,51.82476839,50.11969484,1.705073547,56.39930809,0,56.39930809,1.558281663,54.84102643,1.283026519,2.393113407,-1.313840837,1.313840837,0.754833705,0.754833705,0.228477192,1.382556519,44.46777015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.17695707,1.12896976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001657491,42.74411208,49.17861457,43.87308184,85.56618646,0,0.139163473,82.00055705,-0.139163473,97.99944295,0.690710318,0,108.2800625,43.87308184,136.9941171,12,9,27% -2018-12-05 18:00:00,66.47314559,149.8172194,356.0888273,730.8695638,64.34115587,298.7197783,233.6343977,65.08538062,62.40103263,2.684347993,88.27798208,0,88.27798208,1.940123243,86.33785883,1.160175255,2.614803755,-0.40606617,0.40606617,0.599595094,0.599595094,0.180688499,1.803730604,58.01417651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.9822461,1.405612685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.306796683,55.76543314,61.28904279,57.17104583,233.6343977,0,0.319666339,71.35725232,-0.319666339,108.6427477,0.893586909,0,270.0616822,57.17104583,307.4789882,12,10,14% -2018-12-05 19:00:00,61.85951139,164.3406123,439.2520425,780.7895209,71.00427768,436.036586,363.8620818,72.17450416,68.86323673,3.311267437,108.6427841,0,108.6427841,2.14104095,106.5017432,1.079652147,2.86828478,0.141505645,-0.141505645,0.505954799,0.505954799,0.161648145,1.939794403,62.39045599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.19396248,1.55117688,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.405374441,59.97207943,67.59933692,61.52325631,363.8620818,0,0.466018142,62.22386563,-0.466018142,117.7761344,0.94270804,0,410.6150468,61.52325631,450.8807876,12,11,10% -2018-12-05 20:00:00,60.25473651,180.0750791,467.5480338,795.0020587,73.11195203,526.115434,451.6835025,74.43193149,70.90735692,3.524574572,115.567029,0,115.567029,2.204595108,113.3624339,1.051643542,3.142903031,0.6006803,-0.6006803,0.427431308,0.427431308,0.156373135,1.822084055,58.60448658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15884856,1.597221651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.320093695,56.33286163,69.47894226,57.93008328,451.6835025,0,0.568153878,55.37840989,-0.568153878,124.6215901,0.961995672,0,503.9965169,57.93008328,541.9105978,12,12,8% -2018-12-05 21:00:00,61.89964402,195.8004929,438.5397621,780.4159112,70.95031851,555.2705812,483.1537786,72.11680259,68.81090462,3.305897967,108.4684565,0,108.4684565,2.139413882,106.3290426,1.080352594,3.417363279,1.095525061,-1.095525061,0.34280787,0.34280787,0.161787652,1.484789333,47.75592888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14365887,1.549998074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075724817,45.90481532,67.21938369,47.4548134,483.1537786,0,0.619097806,51.7497186,-0.619097806,128.2502814,0.969237317,0,535.5100557,47.4548134,566.5682819,12,13,6% -2018-12-05 22:00:00,66.54764272,210.301463,354.7276151,729.9309747,64.2250323,514.1632153,449.2007181,64.96249721,62.28841061,2.6740866,87.94443886,0,87.94443886,1.936621689,86.00781717,1.161475475,3.67045295,1.773566847,-1.773566847,0.226855896,0.226855896,0.181054504,0.980954222,31.55085978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.87398954,1.403075821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710697994,30.32788652,60.58468753,31.73096234,449.2007181,0,0.615401639,52.01889012,-0.615401639,127.9811099,0.968752248,0,495.7488928,31.73096234,516.516173,12,14,4% -2018-12-05 23:00:00,73.61255612,222.9765537,224.3254167,612.6925605,51.46571677,393.1307091,341.5258139,51.60489527,49.91383552,1.691059747,55.94217568,0,55.94217568,1.551881249,54.39029443,1.284781475,3.891675016,3.029199722,-3.029199722,0.012130028,0.012130028,0.229424367,0.403776824,12.98685062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.97907727,1.124332682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292534934,12.48345479,48.2716122,13.60778748,341.5258139,0,0.557417922,56.12258274,-0.557417922,123.8774173,0.960300695,0,376.2390887,13.60778748,385.1451135,12,15,2% -2018-12-05 00:00:00,82.41909302,233.8675063,68.97457773,322.1952569,26.46862236,171.0656331,144.8751779,26.19045524,25.67049574,0.519959502,17.52181155,0,17.52181155,0.798126623,16.72368493,1.43848454,4.081757999,7.217871645,-7.217871645,0,0,0.383744609,0.199531656,6.417623935,0.413205823,1,0.137668623,0,0.946847193,0.985609156,0.724496596,1,24.88991981,0.578240021,0.059105183,0.312029739,0.846100914,0.57059751,0.961238037,0.922476074,0.136566872,6.168864232,25.02648668,6.747104254,85.01191073,0,0.44965025,63.27875343,-0.44965025,116.7212466,0.938802464,0,104.8358779,6.747104254,109.2517227,12,16,4% -2018-12-05 01:00:00,92.64590237,243.3582835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616976035,4.24740331,-21.4939131,21.4939131,1,0,#DIV/0!,0,0,1,0.688068233,0,0.046491275,0.961238037,1,0.601129737,0.876633142,0,0,0.115824807,0.172158201,0.724496596,0.448993192,0.981316035,0.942554072,0,0,0,0,0,0,0.295983297,72.7834905,-0.295983297,107.2165095,0.881071548,0,0,0,0,12,17,0% -2018-12-05 02:00:00,103.5943625,251.9445332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808062712,4.397261636,-4.132903492,4.132903492,1,0.763078188,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111375275,83.60539979,-0.111375275,96.39460021,0.601067326,0,0,0,0,12,18,0% -2018-12-05 03:00:00,115.079424,260.1706403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00851485,4.540834291,-2.103191941,2.103191941,1,0.889820694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093404328,95.35948614,0.093404328,84.64051386,0,0.514692898,0,0,0,12,19,0% -2018-12-05 04:00:00,126.8548485,268.7096579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214034779,4.689868261,-1.263566252,1.263566252,1,0.746236245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304409851,107.7226627,0.304409851,72.27733733,0,0.88574776,0,0,0,12,20,0% -2018-12-05 05:00:00,138.6612644,278.6414951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42009561,4.863211523,-0.772074021,0.772074021,1,0.662186123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507273316,120.4823767,0.507273316,59.51762325,0,0.951433806,0,0,0,12,21,0% -2018-12-05 06:00:00,150.0749093,292.2847353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619301292,5.101330985,-0.425841038,0.425841038,1,0.602976796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688182847,133.486437,0.688182847,46.51356298,0,0.977344891,0,0,0,12,22,0% -2018-12-05 07:00:00,159.9657497,315.8127147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791929022,5.511971691,-0.149403537,0.149403537,1,0.555703199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834823026,146.5974149,0.834823026,33.4025851,0,0.990107066,0,0,0,12,23,0% -2018-12-06 08:00:00,164.6431746,0.062532834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.873565488,0.001091404,0.094212427,-0.094212427,1,0.514042416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937213168,159.5886906,0.937213168,20.41130936,0,0.996650344,0,0,0,12,0,0% -2018-12-06 09:00:00,159.9540001,44.28219935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791723954,0.772870179,0.328735543,-0.328735543,1,0.473936601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988386566,171.2594419,0.988386566,8.740558099,0,0.999412505,0,0,0,12,1,0% -2018-12-06 10:00:00,150.0609065,67.78743064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619056897,1.183113856,0.575504403,-0.575504403,1,0.43173664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98486453,170.0187511,0.98486453,9.981248917,0,0.999231596,0,0,0,12,2,0% -2018-12-06 11:00:00,138.6492794,81.42350585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419886432,1.421108266,0.862656553,-0.862656553,1,0.382630731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926893006,157.9555576,0.926893006,22.04444237,0,0.996056341,0,0,0,12,3,0% -2018-12-06 12:00:00,126.8472953,91.35434374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213902951,1.594434084,1.242816128,-1.242816128,1,0.317619614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818425697,144.9275091,0.818425697,35.07249088,0,0.988907099,0,0,0,12,4,0% -2018-12-06 13:00:00,115.0784713,99.8953231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008498222,1.743502295,1.852524975,-1.852524975,1,0.213353261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666854802,131.8247785,0.666854802,48.17522148,0,0.975021159,0,0,0,12,5,0% -2018-12-06 14:00:00,103.6023997,108.1252012,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808202988,1.887140765,3.251081577,-3.251081577,1,0,#DIV/0!,0,0,0.02516441,1,0.298405418,0,0.924613416,0.963375379,0.724496596,1,0,0,0.004253056,0.312029739,0.988010359,0.712506955,0.961238037,0.922476074,0,0,0,0,0,0,-0.482507664,118.84931,0.482507664,61.15068999,0,0.946374703,0,0,0,12,6,0% -2018-12-06 15:00:00,92.66574806,116.7163018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617322408,2.037083756,14.72542859,-14.72542859,1,0,#DIV/0!,0,0,0.665332785,1,0.067805632,0,0.954708016,0.993469979,0.724496596,1,0,0,0.086465458,0.312029739,0.784225573,0.508722169,0.961238037,0.922476074,0,0,0,0,0,0,-0.27794355,106.1375076,0.27794355,73.86249241,0,0.870107356,0,0,0,12,7,0% -2018-12-06 16:00:00,82.45360292,126.2119393,68.49520658,321.2265477,26.30884423,26.03188131,0,26.03188131,25.51553551,0.5163458,38.32828396,20.92751939,17.40076457,0.793308723,16.60745584,1.439086851,2.202813896,-4.197898121,4.197898121,0.751963452,0.751963452,0.384097597,0.437465559,14.07039616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.52650326,0.574749469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316942308,13.52499998,24.84344557,14.09974945,0,20.92751939,-0.065148785,93.73539602,0.065148785,86.26460398,0,0,24.84344557,14.09974945,34.07144959,12,8,37% -2018-12-06 17:00:00,73.66612778,137.1056253,223.4348647,612.1647176,51.27328402,135.0250443,83.61349259,51.41155172,49.72720533,1.684346389,55.72044847,0,55.72044847,1.546078692,54.17436978,1.285716477,2.392944584,-1.327477112,1.327477112,0.757165646,0.757165646,0.229477544,1.369189476,44.03784012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.79968123,1.120128749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.991973115,42.33084698,48.79165434,43.45097573,83.61349259,0,0.136586592,82.14962516,-0.136586592,97.85037484,0.683931858,0,105.9775857,43.45097573,134.4153803,12,9,27% -2018-12-06 18:00:00,66.62326819,149.7774806,353.4577411,729.5128333,64.00517596,296.090285,231.3505875,64.73969751,62.07518375,2.664513754,87.62991374,0,87.62991374,1.929992209,85.69992153,1.162795388,2.614110182,-0.410569935,0.410569935,0.600365284,0.600365284,0.181082966,1.792504528,57.65310731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.66902777,1.398272786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298663429,55.41835969,60.9676912,56.81663248,231.3505875,0,0.31713025,71.51053693,-0.31713025,108.4894631,0.892336075,0,267.4101664,56.81663248,304.5955161,12,10,14% -2018-12-06 19:00:00,61.99847063,164.2643476,436.9025074,779.9803672,70.70552291,433.4939615,361.6269153,71.86704617,68.57349052,3.293555649,108.0641036,0,108.0641036,2.132032391,105.9320712,1.082077444,2.86695371,0.139838454,-0.139838454,0.506239906,0.506239906,0.16183364,1.930507429,62.091755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91544741,1.54465021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.398646061,59.68495668,67.31409347,61.22960689,361.6269153,0,0.46363592,62.37802318,-0.46363592,117.6219768,0.94215676,0,408.0233362,61.22960689,448.0968893,12,11,10% -2018-12-06 20:00:00,60.37407002,179.962565,465.5759023,794.4647059,72.84393955,523.8449074,449.6877736,74.15713382,70.64742601,3.509707812,115.0807813,0,115.0807813,2.196513543,112.8842678,1.053726305,3.14093929,0.600350656,-0.600350656,0.427487681,0.427487681,0.156459858,1.814739619,58.36826426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90899308,1.591366585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314772676,56.10579575,69.22376576,57.69716234,449.6877736,0,0.566026118,55.52642283,-0.566026118,124.4735772,0.961664854,0,501.6726927,57.69716234,539.4343315,12,12,8% -2018-12-06 21:00:00,61.9928084,195.6614061,437.003096,780.0334025,70.71315117,553.3955288,481.5203261,71.87520269,68.58088876,3.294313929,108.0887225,0,108.0887225,2.132262412,105.9564601,1.081978619,3.414935755,1.096120441,-1.096120441,0.342706054,0.342706054,0.161813845,1.479362122,47.58137112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.92255888,1.544816859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.071792822,45.73702377,66.9943517,47.28184062,481.5203261,0,0.617307316,51.88023405,-0.617307316,128.119766,0.969003066,0,533.589024,47.28184062,564.534043,12,13,6% -2018-12-06 22:00:00,66.6127265,210.1494471,353.6504715,729.6465131,64.02164431,512.7660004,448.0088783,64.75712215,62.09115552,2.665966637,87.67714004,0,87.67714004,1.930488791,85.74665124,1.162611401,3.667799774,1.775174356,-1.775174356,0.226580996,0.226580996,0.181030847,0.977326555,31.43418154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.68438043,1.398632557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.708069762,30.21573096,60.3924502,31.61436351,448.0088783,0,0.614008112,52.12011672,-0.614008112,127.8798833,0.968567851,0,494.3194467,31.61436351,515.0104153,12,14,4% -2018-12-06 23:00:00,73.65185972,222.8216287,223.6986207,612.4747149,51.30349812,392.2568887,340.8140456,51.44284306,49.75650837,1.686334694,55.78531024,0,55.78531024,1.546989758,54.23832049,1.285467452,3.888971066,3.032695426,-3.032695426,0.011532228,0.011532228,0.22934204,0.401734575,12.9211649,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.82784842,1.120788814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.291055332,12.42031518,48.11890375,13.541104,340.8140456,0,0.556454066,56.18907423,-0.556454066,123.8109258,0.960145324,0,375.3499159,13.541104,384.2122977,12,15,2% -2018-12-06 00:00:00,82.43687145,233.713619,68.75804855,322.0289052,26.37309105,170.7259385,144.6297662,26.09617226,25.57784505,0.518327213,17.46643093,0,17.46643093,0.795246002,16.67118492,1.438794832,4.079072158,7.229391071,-7.229391071,0,0,0.383563693,0.1988115,6.394461262,0.413883344,1,0.137452015,0,0.946873304,0.985635267,0.724496596,1,24.80008254,0.576153021,0.059186129,0.312029739,0.845909059,0.570405655,0.961238037,0.922476074,0.136072938,6.146599391,24.93615548,6.722752412,84.769915,0,0.449120448,63.31273318,-0.449120448,116.6872668,0.93867129,0,104.507241,6.722752412,108.907148,12,16,4% -2018-12-06 01:00:00,92.64715558,243.2046624,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616997907,4.244722114,-21.47693856,21.47693856,1,0,#DIV/0!,0,0,1,0.687785529,0,0.046527967,0.961238037,1,0.601039095,0.8765425,0,0,0.115824807,0.172055746,0.724496596,0.448993192,0.981329185,0.942567221,0,0,0,0,0,0,0.295855252,72.79117088,-0.295855252,107.2088291,0.880998437,0,0,0,0,12,17,0% -2018-12-06 02:00:00,103.5831907,251.7872599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807867727,4.394516699,-4.136803556,4.136803556,1,0.762411238,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111598745,83.5925156,-0.111598745,96.4074844,0.601966286,0,0,0,0,12,18,0% -2018-12-06 03:00:00,115.0599454,260.0029967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008174884,4.537908357,-2.106151695,2.106151695,1,0.890326842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092907696,95.33090699,0.092907696,84.66909301,0,0.511831453,0,0,0,12,19,0% -2018-12-06 04:00:00,126.8315506,268.5208164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213628153,4.686572356,-1.266042155,1.266042155,1,0.746659649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303737063,107.6821987,0.303737063,72.3178013,0,0.885383935,0,0,0,12,20,0% -2018-12-06 05:00:00,138.6403708,278.4124886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419730947,4.859214605,-0.774322386,0.774322386,1,0.662570616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506533365,120.4331936,0.506533365,59.56680643,0,0.951289819,0,0,0,12,21,0% -2018-12-06 06:00:00,150.0679723,291.9792997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619180218,5.096000128,-0.428019336,0.428019336,1,0.603349307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687489232,133.431687,0.687489232,46.56831301,0,0.977271588,0,0,0,12,22,0% -2018-12-06 07:00:00,159.9998177,315.3788696,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792523621,5.504399666,-0.151637356,0.151637356,1,0.556085205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834285948,146.5415593,0.834285948,33.45844068,0,0.99006851,0,0,0,12,23,0% -2018-12-07 08:00:00,164.7588252,359.6876455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.875583971,6.277733692,0.091791622,-0.091791622,1,0.514456398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936931957,159.5425416,0.936931957,20.45745836,0,0.996634332,0,0,0,12,0,0% -2018-12-07 09:00:00,160.105651,44.25201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79437076,0.772343275,0.325953255,-0.325953255,1,0.4744124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988442844,171.2806868,0.988442844,8.719313192,0,0.999415386,0,0,0,12,1,0% -2018-12-07 10:00:00,150.2095605,67.84937532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621651399,1.184194995,0.572080586,-0.572080586,1,0.432322148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985316595,170.1693132,0.985316595,9.830686808,0,0.999254889,0,0,0,12,2,0% -2018-12-07 11:00:00,138.7942871,81.49074418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.422417292,1.422281796,0.858060024,-0.858060024,1,0.383416783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927771814,158.0901033,0.927771814,21.90989674,0,0.996107438,0,0,0,12,3,0% -2018-12-07 12:00:00,126.9914088,91.41263443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216418205,1.595451449,1.235831501,-1.235831501,1,0.318814056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819732714,145.0580463,0.819732714,34.94195366,0,0.989004508,0,0,0,12,4,0% -2018-12-07 13:00:00,115.2235481,99.94269776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011030289,1.744329139,1.839496666,-1.839496666,1,0.215581233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66856189,131.9561676,0.66856189,48.0438324,0,0.975212608,0,0,0,12,5,0% -2018-12-07 14:00:00,103.7494291,108.1610682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810769135,1.887766762,3.213387213,-3.213387213,1,0,#DIV/0!,0,0,0.0189999,1,0.301698358,0,0.924100312,0.962862275,0.724496596,1,0,0,0.003220414,0.312029739,0.990908477,0.715405073,0.961238037,0.922476074,0,0,0,0,0,0,-0.484559,118.9835834,0.484559,61.01641665,0,0.946813391,0,0,0,12,6,0% -2018-12-07 15:00:00,92.81494294,116.7391118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619926349,2.037481866,13.93791146,-13.93791146,1,0,#DIV/0!,0,0,0.649537158,1,0.071624032,0,0.954307762,0.993069726,0.724496596,1,0,0,0.084900289,0.312029739,0.787604007,0.512100603,0.961238037,0.922476074,0,0,0,0,0,0,-0.280259443,106.2756897,0.280259443,73.72431034,0,0.871593879,0,0,0,12,7,0% -2018-12-07 16:00:00,82.60216252,126.2183352,66.23380186,314.7373127,25.70880216,25.4328853,0,25.4328853,24.93358692,0.499298376,38.10974318,21.27537585,16.83436733,0.775215241,16.05915209,1.441679705,2.202925525,-4.282456766,4.282456766,0.737503072,0.737503072,0.388152294,0.419106991,13.47992149,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.96711215,0.561640803,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.303641588,12.95741327,24.27075373,13.51905408,0,21.27537585,-0.067597247,93.87599261,0.067597247,86.12400739,0,0,24.27075373,13.51905408,33.11870424,12,8,36% -2018-12-07 17:00:00,73.81542312,137.0900222,220.7749919,609.5362907,50.87735673,132.719814,81.7123021,51.00751185,49.34321671,1.664295145,55.06359285,0,55.06359285,1.534140023,53.52945282,1.288322172,2.392672259,-1.3412731,1.3412731,0.759524899,0.759524899,0.230448912,1.35630422,43.62340599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.43057676,1.111479224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.98263779,41.93247713,48.41321455,43.04395635,81.7123021,0,0.134056501,82.29593456,-0.134056501,97.70406544,0.677022936,0,103.7343172,43.04395635,131.9057258,12,9,27% -2018-12-07 18:00:00,66.76764242,149.7326385,350.9295253,728.2139168,63.67759012,293.5376439,229.1347131,64.40293083,61.75747583,2.645454995,87.00704062,0,87.00704062,1.920114287,85.08692633,1.165315194,2.61332754,-0.415221304,0.415221304,0.601160715,0.601160715,0.181454068,1.781797868,57.30874432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.36363483,1.391116265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29090649,55.08734489,60.65454132,56.47846115,229.1347131,0,0.314653027,71.66013138,-0.314653027,108.3398686,0.891094807,0,264.8352942,56.47846115,301.7993175,12,10,14% -2018-12-07 19:00:00,62.1308393,164.1843676,434.6673408,779.2252833,70.41531693,431.0445003,359.475759,71.56874134,68.29203532,3.276706019,107.5134108,0,107.5134108,2.12328161,105.3901292,1.084387713,2.865557795,0.137988514,-0.137988514,0.506556264,0.506556264,0.161998177,1.921765962,61.81059936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.64490196,1.538310299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392312897,59.41469919,67.03721486,60.95300948,359.475759,0,0.461324558,62.52738815,-0.461324558,117.4726119,0.941616435,0,405.5254976,60.95300948,445.4180233,12,11,10% -2018-12-07 20:00:00,60.48624407,179.8482183,463.72714,793.9837342,72.58494303,521.6831921,447.7911818,73.89201025,70.39623919,3.49577106,114.6247178,0,114.6247178,2.188703842,112.4360139,1.055684111,3.138943563,0.599780529,-0.599780529,0.427585178,0.427585178,0.156525113,1.807951522,58.14993574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66754276,1.585708483,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309854723,55.89593008,68.97739748,57.48163856,447.7911818,0,0.563980297,55.66848879,-0.563980297,124.3315112,0.961344421,0,499.4589517,57.48163856,537.0795345,12,12,8% -2018-12-07 21:00:00,62.07863264,195.5224539,435.5956004,779.7170756,70.48577765,551.644268,480.0001929,71.64407502,68.36037139,3.283703632,107.7406027,0,107.7406027,2.125406261,105.6151965,1.083476535,3.412510582,1.09637062,-1.09637062,0.342663271,0.342663271,0.161814714,1.474481528,47.42439445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71058919,1.539849601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.068256848,45.58613182,66.77884604,47.12598142,480.0001929,0,0.615608158,52.00387654,-0.615608158,127.9961235,0.968779504,0,531.7931948,47.12598142,562.6362072,12,13,6% -2018-12-07 22:00:00,66.67062706,209.9991952,352.7041977,729.4516669,63.82945029,511.5080824,446.9444923,64.56359009,61.90475686,2.658833225,87.44190964,0,87.44190964,1.924693432,85.51721621,1.163621957,3.665177382,1.776207274,-1.776207274,0.226404356,0.226404356,0.180971621,0.974205039,31.33378285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50520696,1.39443384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.705808234,30.11922392,60.21101519,31.51365776,446.9444923,0,0.612712963,52.21407256,-0.612712963,127.7859274,0.96839572,0,493.0301488,31.51365776,513.6552075,12,14,4% -2018-12-07 23:00:00,73.6843326,222.6696362,223.198029,612.4045015,51.15574988,391.5432527,340.2474764,51.2957763,49.61321528,1.682561022,55.65948084,0,55.65948084,1.542534604,54.11694624,1.286034211,3.886318296,3.034921381,-3.034921381,0.011151567,0.011151567,0.229194452,0.400096423,12.86847628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.69010966,1.117561069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289868496,12.36966888,47.97997815,13.48722995,340.2474764,0,0.55559271,56.24845114,-0.55559271,123.7515489,0.960006019,0,374.6196033,13.48722995,383.4467256,12,15,2% -2018-12-07 00:00:00,82.44827856,233.5634858,68.64169938,322.1678726,26.30203496,170.5809534,144.5545717,26.02638169,25.50893157,0.517450124,17.43607812,0,17.43607812,0.793103398,16.64297472,1.438993924,4.076451839,7.234871254,-7.234871254,0,0,0.383178668,0.19827585,6.377232891,0.414205114,1,0.137349204,0,0.946885694,0.985647657,0.724496596,1,24.73326244,0.574600712,0.059224556,0.312029739,0.845817997,0.570314593,0.961238037,0.922476074,0.135705843,6.130038825,24.86896829,6.704639537,84.67932883,0,0.448693318,63.34012055,-0.448693318,116.6598795,0.938565312,0,104.346049,6.704639537,108.7341014,12,16,4% -2018-12-07 01:00:00,92.64232143,243.0554432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616913536,4.242117749,-21.50953647,21.50953647,1,0,#DIV/0!,0,0,1,0.688327982,0,0.046457554,0.961238037,1,0.601213048,0.876716452,0,0,0.115824807,0.172252368,0.724496596,0.448993192,0.981303947,0.942541984,0,0,0,0,0,0,0.295829339,72.79272515,-0.295829339,107.2072748,0.880983634,0,0,0,0,12,17,0% -2018-12-07 02:00:00,103.5662264,251.6350159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807571644,4.391859541,-4.142504282,4.142504282,1,0.761436356,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111919337,83.57403121,-0.111919337,96.42596879,0.603249677,0,0,0,0,12,18,0% -2018-12-07 03:00:00,115.0348578,259.8411221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007737024,4.535083114,-2.109599742,2.109599742,1,0.890916493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092321641,95.29718354,0.092321641,84.70281646,0,0.508415173,0,0,0,12,19,0% -2018-12-07 04:00:00,126.8026663,268.3387298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213124027,4.683394346,-1.268716129,1.268716129,1,0.747116926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302984704,107.6369599,0.302984704,72.36304011,0,0.884975168,0,0,0,12,20,0% -2018-12-07 05:00:00,138.6136547,278.1915936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419264664,4.855359259,-0.776661394,0.776661394,1,0.66297061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505725172,120.3795027,0.505725172,59.62049726,0,0.951132072,0,0,0,12,21,0% -2018-12-07 06:00:00,150.0545113,291.6834774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618945279,5.090837054,-0.430235634,0.430235634,1,0.603728316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686739393,133.3725545,0.686739393,46.62744548,0,0.977192177,0,0,0,12,22,0% -2018-12-07 07:00:00,160.0259594,314.9524688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79297988,5.496957568,-0.153876872,0.153876872,1,0.556468185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833704523,146.4811843,0.833704523,33.51881571,0,0.990026714,0,0,0,12,23,0% -2018-12-08 08:00:00,164.8665312,359.3007523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.877463796,6.270981132,0.089390134,-0.089390134,1,0.514867076,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936617314,159.491024,0.936617314,20.50897602,0,0.996616404,0,0,0,12,0,0% -2018-12-08 09:00:00,160.2524854,44.2043289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796933505,0.771511083,0.323215183,-0.323215183,1,0.474880638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988474892,171.2928078,0.988474892,8.707192244,0,0.999417026,0,0,0,12,1,0% -2018-12-08 10:00:00,150.355123,67.89802948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624191944,1.18504417,0.568732604,-0.568732604,1,0.432894686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985751283,170.316273,0.985751283,9.683726989,0,0.999277266,0,0,0,12,2,0% -2018-12-08 11:00:00,138.9368437,81.54754983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424905375,1.423273242,0.853589313,-0.853589313,1,0.38418132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928637275,158.2233777,0.928637275,21.77662226,0,0.996157664,0,0,0,12,3,0% -2018-12-08 12:00:00,127.1331993,91.46217886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218892916,1.596316162,1.229071251,-1.229071251,1,0.319970127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821027316,145.1877647,0.821027316,34.81223535,0,0.989100686,0,0,0,12,4,0% -2018-12-08 13:00:00,115.366139,99.98233731,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013518971,1.74502098,1.826955541,-1.826955541,1,0.217725892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670254334,132.0866974,0.670254334,47.91330257,0,0.975401452,0,0,0,12,5,0% -2018-12-08 14:00:00,103.8936033,108.1898215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813285449,1.888268602,3.177465444,-3.177465444,1,0,#DIV/0!,0,0,0.013052288,1,0.304902665,0,0.923598883,0.962360847,0.724496596,1,0,0,0.002218464,0.312029739,0.993728409,0.718225005,0.961238037,0.922476074,0,0,0,0,0,0,-0.486590452,119.1167272,0.486590452,60.88327284,0,0.947244182,0,0,0,12,6,0% -2018-12-08 15:00:00,92.9607382,116.7552195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622470957,2.037762998,13.24647537,-13.24647537,1,0,#DIV/0!,0,0,0.634386266,1,0.075348859,0,0.953914011,0.992675975,0.724496596,1,0,0,0.083381792,0.312029739,0.790900439,0.515397035,0.961238037,0.922476074,0,0,0,0,0,0,-0.282547567,106.4123105,0.282547567,73.58768954,0,0.873038646,0,0,0,12,7,0% -2018-12-08 16:00:00,82.74660764,126.2183847,64.05350764,308.359837,25.12070278,24.8460833,0,24.8460833,24.3632209,0.482862397,37.87559108,21.5875947,16.28799639,0.757481874,15.53051451,1.444200748,2.202926389,-4.368678476,4.368678476,0.722758291,0.722758291,0.392183094,0.401494193,12.91343338,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.41885463,0.548793039,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.290881176,12.41288335,23.70973581,12.96167639,0,21.5875947,-0.070007803,94.01443539,0.070007803,85.98556461,0,0,23.70973581,12.96167639,32.19289377,12,8,36% -2018-12-08 17:00:00,73.95978109,137.0685588,218.2068153,606.9812266,50.4905896,130.4768543,79.8638071,50.61304718,48.96811204,1.644935145,54.42924625,0,54.42924625,1.522477567,52.90676869,1.290841694,2.392297651,-1.355208129,1.355208129,0.761907929,0.761907929,0.231388692,1.343911589,43.22481636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.07001188,1.103029815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973659371,41.54933762,48.04367125,42.65236743,79.8638071,0,0.131575416,82.43936096,-0.131575416,97.56063904,0.6699898,0,101.5516074,42.65236743,129.4667288,12,9,27% -2018-12-08 18:00:00,66.90617282,149.682784,348.5061956,726.975828,63.35863887,291.0639724,226.9886434,64.07532906,61.44814214,2.627186912,86.40985872,0,86.40985872,1.910496731,84.49936199,1.167733006,2.612457414,-0.420014397,0.420014397,0.601980382,0.601980382,0.18180061,1.771618775,56.9813497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.06629152,1.384148378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283531772,54.77264072,60.34982329,56.1567891,226.9886434,0,0.312236851,71.80591465,-0.312236851,108.1940853,0.889865154,0,262.3391074,56.1567891,299.0926028,12,10,14% -2018-12-08 19:00:00,62.25654164,164.100776,432.5482803,778.5262334,70.13382769,428.6903152,357.4105495,71.27976567,68.01903402,3.260731646,106.9911321,0,106.9911321,2.114793671,104.8763384,1.086581633,2.864098847,0.135957636,-0.135957636,0.506903565,0.506903565,0.162141039,1.9135758,61.54717559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.38248273,1.532160816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.386379153,59.16148624,66.76886188,60.69364706,357.4105495,0,0.459086071,62.67185097,-0.459086071,117.328149,0.941087961,0,403.1236272,60.69364706,442.8464053,12,11,10% -2018-12-08 20:00:00,60.59120506,179.7321461,462.0030751,793.5605933,72.33508133,519.6321402,445.9954541,73.63668607,70.15391174,3.482774331,114.199164,0,114.199164,2.18116959,112.0179944,1.057516026,3.13691772,0.598970049,-0.598970049,0.427723779,0.427723779,0.156568398,1.80172327,57.94961374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4346084,1.580249943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305342376,55.70337295,68.73995078,57.28362289,445.9954541,0,0.562018147,55.80451873,-0.562018147,124.1954813,0.961034901,0,497.3571479,57.28362289,534.8481335,12,12,8% -2018-12-08 21:00:00,62.1570851,195.3837434,434.3181186,779.4680917,70.26827425,550.0182254,478.5947254,71.42349995,68.14942651,3.274073435,107.4243039,0,107.4243039,2.118847731,105.3054562,1.084845788,3.410089627,1.096274709,-1.096274709,0.342679673,0.342679673,0.161789875,1.470148835,47.28504013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50782096,1.535097968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065117826,45.45217915,66.57293878,46.98727712,478.5947254,0,0.61400169,52.12058294,-0.61400169,127.8794171,0.968566999,0,530.1239959,46.98727712,560.876229,12,13,6% -2018-12-08 22:00:00,66.7213341,209.8508153,351.8891197,729.3473974,63.64848179,510.3903393,446.0084053,64.38193405,61.72924523,2.652688823,87.23882767,0,87.23882767,1.919236564,85.31959111,1.164506961,3.662587665,1.776663754,-1.776663754,0.226326294,0.226326294,0.180876527,0.971588946,31.24964032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.3364985,1.390480357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703912884,30.03834292,60.04041139,31.42882327,446.0084053,0,0.6115171,52.30071981,-0.6115171,127.6992802,0.968236138,0,491.8818671,31.42882327,512.4514033,12,14,4% -2018-12-08 23:00:00,73.70998534,222.5206871,222.8234646,612.4826122,51.02243932,390.9900076,339.8263457,51.16366192,49.48392452,1.679737397,55.56464354,0,55.56464354,1.538514798,54.02612874,1.286481936,3.883718643,3.035874358,-3.035874358,0.010988598,0.010988598,0.228981447,0.398860129,12.82871281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.56583046,1.114648734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288972805,12.33144671,47.85480327,13.44609545,339.8263457,0,0.554834274,56.30069923,-0.554834274,123.6993008,0.959883001,0,374.0483356,13.44609545,382.8485361,12,15,2% -2018-12-08 00:00:00,82.45334479,233.4172206,68.62499914,322.6119428,26.25525341,170.6300113,144.6491265,25.98088487,25.46356064,0.517324231,17.43061832,0,17.43061832,0.791692762,16.63892555,1.439082346,4.07389903,7.234308996,-7.234308996,0,0,0.382590218,0.19792319,6.365890161,0.414172117,1,0.137359745,0,0.946884424,0.985646387,0.724496596,1,24.68927137,0.573578711,0.059220616,0.312029739,0.845827334,0.57032393,0.961238037,0.922476074,0.135464521,6.119135761,24.8247359,6.692714472,84.73949147,0,0.44836879,63.36092471,-0.44836879,116.6390753,0.938484656,0,104.3514484,6.692714472,108.7316961,12,16,4% -2018-12-08 01:00:00,92.63144852,242.9107436,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616723768,4.239592265,-21.591825,21.591825,1,0,#DIV/0!,0,0,1,0.689688976,0,0.046280753,0.961238037,1,0.601650006,0.87715341,0,0,0.115824807,0.172746278,0.724496596,0.448993192,0.981240513,0.94247855,0,0,0,0,0,0,0.29590503,72.78818514,-0.29590503,107.2118149,0.881026867,0,0,0,0,12,17,0% -2018-12-08 02:00:00,103.543535,251.4879256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807175604,4.389292331,-4.150001346,4.150001346,1,0.760154283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112336121,83.54999967,-0.112336121,96.45000033,0.60490719,0,0,0,0,12,18,0% -2018-12-08 03:00:00,115.0042425,259.685154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007202686,4.532360956,-2.11353286,2.11353286,1,0.891589095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091647406,95.25838827,0.091647406,84.74161173,0,0.504430824,0,0,0,12,19,0% -2018-12-08 04:00:00,126.7682916,268.1635619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212524076,4.680337089,-1.271585627,1.271585627,1,0.747607639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302154226,107.587037,0.302154226,72.41296304,0,0.884521593,0,0,0,12,20,0% -2018-12-08 05:00:00,138.5812259,277.9790329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418698674,4.851649376,-0.779088858,0.779088858,1,0.663385731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504850268,120.3214134,0.504850268,59.67858665,0,0.950960734,0,0,0,12,21,0% -2018-12-08 06:00:00,150.0346443,291.3976495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618598534,5.085848416,-0.432487934,0.432487934,1,0.604113482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685934813,133.3091693,0.685934813,46.69083071,0,0.977106776,0,0,0,12,22,0% -2018-12-08 07:00:00,160.0442561,314.534363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793299218,5.489660244,-0.156120165,0.156120165,1,0.55685181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833080062,146.4164473,0.833080062,33.58355274,0,0.989981759,0,0,0,12,23,0% -2018-12-09 08:00:00,164.9661905,358.9026125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.879203178,6.264032282,0.087009892,-0.087009892,1,0.515274122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936270266,159.4343438,0.936270266,20.56565625,0,0.996596617,0,0,0,12,0,0% -2018-12-09 09:00:00,160.3943783,44.13897608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799410004,0.770370461,0.320523338,-0.320523338,1,0.475340971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988483356,171.2960121,0.988483356,8.703987925,0,0.999417459,0,0,0,12,1,0% -2018-12-09 10:00:00,150.4974867,67.93324684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.626676658,1.185658829,0.565462608,-0.565462608,1,0.433453889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986168794,170.4595359,0.986168794,9.540464068,0,0.99929874,0,0,0,12,2,0% -2018-12-09 11:00:00,139.0768413,81.59384241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427348794,1.424081199,0.849246705,-0.849246705,1,0.38492395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929489105,158.3553154,0.929489105,21.64468461,0,0.996207008,0,0,0,12,3,0% -2018-12-09 12:00:00,127.2725541,91.50293523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221325117,1.597027495,1.222537409,-1.222537409,1,0.32108748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822308732,145.316579,0.822308732,34.68342099,0,0.989195587,0,0,0,12,4,0% -2018-12-09 13:00:00,115.5061268,100.0142259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015962219,1.74557754,1.814900212,-1.814900212,1,0.219787474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671930903,132.2162683,0.671930903,47.78373172,0,0.975587587,0,0,0,12,5,0% -2018-12-09 14:00:00,104.0348021,108.2114667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815749834,1.888646382,3.143268512,-3.143268512,1,0,#DIV/0!,0,0,0.007322864,1,0.308014967,0,0.923109842,0.961871805,0.724496596,1,0,0,0.001247989,0.312029739,0.996467219,0.720963815,0.961238037,0.922476074,0,0,0,0,0,0,-0.488600395,119.248631,0.488600395,60.75136899,0,0.947666886,0,0,0,12,6,0% -2018-12-09 15:00:00,93.10301344,116.7646509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624954128,2.037927608,12.63579501,-12.63579501,1,0,#DIV/0!,0,0,0.619872246,1,0.078975647,0,0.953527492,0.992289456,0.724496596,1,0,0,0.081911055,0.312029739,0.794110774,0.51860737,0.961238037,0.922476074,0,0,0,0,0,0,-0.284805988,106.5472519,0.284805988,73.45274808,0,0.874441894,0,0,0,12,7,0% -2018-12-09 16:00:00,82.88682566,126.2121358,61.95522222,302.1069268,24.54542847,24.27233787,0,24.27233787,23.80529323,0.467044635,37.62790938,21.86601322,15.76189615,0.740135231,15.02176092,1.446648014,2.202817325,-4.456440214,4.456440214,0.70775015,0.70775015,0.396180138,0.384627013,12.37092689,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88255334,0.536225456,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.278660962,11.89140548,23.1612143,12.42763093,0,21.86601322,-0.072378391,94.15060563,0.072378391,85.84939437,0,0,23.1612143,12.42763093,31.29485019,12,8,35% -2018-12-09 17:00:00,74.09909467,137.0413055,215.7323103,604.5051157,50.11337475,128.297684,78.0691311,50.22855288,48.6022716,1.62628128,53.81789943,0,53.81789943,1.511103147,52.30679628,1.293273175,2.391821992,-1.369260199,1.369260199,0.764310974,0.764310974,0.232294248,1.332022237,42.84241394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.71835214,1.094789086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965045576,41.18175787,47.68339772,42.27654696,78.0691311,0,0.129145526,82.57978167,-0.129145526,97.42021833,0.662839859,0,99.43072958,42.27654696,127.099884,12,9,28% -2018-12-09 18:00:00,67.03876656,149.6280077,346.1897081,725.8015489,63.04855655,288.6713256,224.9141914,63.7571342,61.14740994,2.609724251,85.83884937,0,85.83884937,1.901146604,83.93770277,1.170047203,2.611501388,-0.424942885,0.424942885,0.602823203,0.602823203,0.182121406,1.761975161,56.67117793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.77721629,1.377374243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.276545006,54.47449182,60.0537613,55.85186607,224.9141914,0,0.309883868,71.94776802,-0.309883868,108.052232,0.888649232,0,259.9235848,55.85186607,296.4775141,12,10,14% -2018-12-09 19:00:00,62.3755045,164.0136759,430.5469993,777.885125,69.8612159,426.4334489,355.4331613,71.00028762,67.75464248,3.245645144,106.4976781,0,106.4976781,2.10657342,104.3911047,1.088657926,2.862578663,0.133747982,-0.133747982,0.507281438,0.507281438,0.162261532,1.905942491,61.30166216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.12833952,1.526205272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.380848847,58.92548939,66.50918837,60.45169466,355.4331613,0,0.45692243,62.81130489,-0.45692243,117.1886951,0.940572236,0,400.8197515,60.45169466,440.3841766,12,11,10% -2018-12-09 20:00:00,60.68890182,179.6144547,460.4049694,793.1966576,72.09446524,517.6935247,444.3022465,73.39127825,69.92055112,3.470727135,113.8044293,0,113.8044293,2.173914127,111.6305152,1.059221156,3.134863619,0.597919754,-0.597919754,0.42790339,0.42790339,0.156589242,1.796058131,57.76740341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21029329,1.574993385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301238002,55.52822545,68.51153129,57.10321883,444.3022465,0,0.56014135,55.93442641,-0.56014135,124.0655736,0.960736817,0,495.3690572,57.10321883,532.7419719,12,12,8% -2018-12-09 21:00:00,62.2281365,195.245381,433.1714288,779.2875098,70.06070781,548.518738,477.3051898,71.21354818,67.94811898,3.265429203,107.1400168,0,107.1400168,2.112588837,105.027428,1.086085869,3.407674748,1.09583244,-1.09583244,0.342755305,0.342755305,0.161738986,1.466365135,47.16334334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.31431649,1.530563421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062376549,45.33519956,66.37669304,46.86576299,477.3051898,0,0.612489208,52.23029263,-0.612489208,127.7697074,0.968365909,0,528.5827669,46.86576299,559.2554714,12,13,6% -2018-12-09 22:00:00,66.76483971,209.7044156,351.2055058,729.3345076,63.47875797,509.4135451,445.2013704,64.21217465,61.5646392,2.647535453,87.06795976,0,87.06795976,1.914118764,85.153841,1.165266277,3.660032508,1.776543151,-1.776543151,0.226346918,0.226346918,0.180745338,0.969477461,31.18172769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.17827293,1.386772529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70238312,29.97306271,59.88065605,31.35983524,445.2013704,0,0.610421371,52.38002289,-0.610421371,127.6199771,0.968089369,0,490.8753696,31.35983524,511.3997546,12,14,4% -2018-12-09 23:00:00,73.72883085,222.3748916,222.5747133,612.7094358,50.90351299,390.5972253,339.5507789,51.04644646,49.36858426,1.677862205,55.50074484,0,55.50074484,1.534928731,53.96581611,1.286810852,3.881174033,3.035554678,-3.035554678,0.011043267,0.011043267,0.228703037,0.398023606,12.80180735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.45496102,1.11205064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288366747,12.30558417,47.74332776,13.41763481,339.5507789,0,0.554179125,56.34580647,-0.554179125,123.6541935,0.959776464,0,373.6361738,13.41763481,382.4177474,12,15,2% -2018-12-09 00:00:00,82.45210252,233.274936,68.70748864,323.3603323,26.23250404,170.8723247,144.9128813,25.95944332,25.44149725,0.517946072,17.44993287,0,17.44993287,0.791006784,16.65892609,1.439060664,4.071415696,7.227733262,-7.227733262,0,0,0.38179978,0.197751696,6.360374313,0.413785935,1,0.137483146,0,0.946869552,0.985631515,0.724496596,1,24.66788136,0.573081723,0.059174494,0.312029739,0.845936633,0.570433229,0.961238037,0.922476074,0.13534772,6.113833718,24.80322908,6.686915441,84.9499692,0,0.448146748,63.37515674,-0.448146748,116.6248433,0.938429403,0,104.522778,6.686915441,108.8992304,12,16,4% -2018-12-09 01:00:00,92.61458761,242.7706791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616429489,4.237147678,-21.72458962,21.72458962,1,0,#DIV/0!,0,0,1,0.691859924,0,0.04599832,0.961238037,1,0.602348544,0.877851949,0,0,0.115824807,0.173535884,0.724496596,0.448993192,0.981138989,0.942377026,0,0,0,0,0,0,0.296081749,72.77758486,-0.296081749,107.2224151,0.88112772,0,0,0,0,12,17,0% -2018-12-09 02:00:00,103.5151839,251.3461099,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806680784,4.386817181,-4.159294133,4.159294133,1,0.758565123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112848131,83.52047598,-0.112848131,96.47952402,0.606926643,0,0,0,0,12,18,0% -2018-12-09 03:00:00,114.9681822,259.5352248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006573314,4.529744198,-2.117948213,2.117948213,1,0.892344165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090886264,95.21459525,0.090886264,84.78540475,0,0.499861863,0,0,0,12,19,0% -2018-12-09 04:00:00,126.7285239,267.9954694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211829998,4.677403322,-1.274648164,1.274648164,1,0.748131363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301247093,107.5325218,0.301247093,72.46747821,0,0.884023294,0,0,0,12,20,0% -2018-12-09 05:00:00,138.5431956,277.7750183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418034919,4.84808865,-0.781602601,0.781602601,1,0.663815606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50391019,120.259035,0.50391019,59.74096496,0,0.95077597,0,0,0,12,21,0% -2018-12-09 06:00:00,150.0084917,291.1221775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618142086,5.081040522,-0.434774239,0.434774239,1,0.604504463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685076972,133.2416608,0.685076972,46.75833915,0,0.9770155,0,0,0,12,22,0% -2018-12-09 07:00:00,160.0547962,314.1253787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793483177,5.482522123,-0.158365319,0.158365319,1,0.557235754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832413864,146.3475046,0.832413864,33.6524954,0,0.989933725,0,0,0,12,23,0% -2018-12-10 08:00:00,165.0577071,358.4940502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880800444,6.256901524,0.08465281,-0.08465281,1,0.515677206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935891818,159.3727052,0.935891818,20.62729476,0,0.996575022,0,0,0,12,0,0% -2018-12-10 09:00:00,160.5312017,44.05579891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801798021,0.768918746,0.317879702,-0.317879702,1,0.475793059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988468861,171.2905257,0.988468861,8.709474283,0,0.999416717,0,0,0,12,1,0% -2018-12-10 10:00:00,150.6365418,67.95489047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629103628,1.186036582,0.562272702,-0.562272702,1,0.433999395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986569302,170.598997,0.986569302,9.401002989,0,0.999319323,0,0,0,12,2,0% -2018-12-10 11:00:00,139.2141704,81.62954703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429745638,1.424704363,0.845034414,-0.845034414,1,0.385644294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930327,158.4858457,0.930327,21.51415429,0,0.996255456,0,0,0,12,3,0% -2018-12-10 12:00:00,127.4093599,91.53486583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223712828,1.597584789,1.216231905,-1.216231905,1,0.322165784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823576175,145.4444016,0.823576175,34.55559835,0,0.989289162,0,0,0,12,4,0% -2018-12-10 13:00:00,115.6433945,100.038351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018357992,1.745998603,1.803329229,-1.803329229,1,0.221766229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67359036,132.344779,0.67359036,47.65522102,0,0.975770909,0,0,0,12,5,0% -2018-12-10 14:00:00,104.1729066,108.2260119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818160211,1.888900244,3.110751089,-3.110751089,1,0,#DIV/0!,0,0,0.001812785,1,0.311031997,0,0.922633883,0.961395846,0.724496596,1,0,0,0.000309741,0.312029739,0.99912206,0.723618656,0.961238037,0.922476074,0,0,0,0,0,0,-0.490587203,119.379184,0.490587203,60.62081596,0,0.94808132,0,0,0,12,6,0% -2018-12-10 15:00:00,93.24165002,116.7674345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627373793,2.037976191,12.09368956,-12.09368956,1,0,#DIV/0!,0,0,0.605987264,1,0.082500068,0,0.953148928,0.991910891,0.724496596,1,0,0,0.08048911,0.312029739,0.797231055,0.521727651,0.961238037,0.922476074,0,0,0,0,0,0,-0.287032787,106.6803964,0.287032787,73.31960358,0,0.875803872,0,0,0,12,7,0% -2018-12-10 16:00:00,83.02270675,126.1996381,59.93970071,295.9913918,23.98385621,23.71250523,0,23.71250523,23.26065445,0.451850783,37.36889889,22.11262274,15.25627615,0.723201756,14.53307439,1.449019587,2.202599199,-4.545599104,4.545599104,0.692503082,0.692503082,0.400133066,0.368503637,11.8523437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.35902582,0.52395721,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.266979631,11.39292359,22.62600545,11.9168808,0,22.11262274,-0.074706979,94.28438621,0.074706979,85.71561379,0,0,22.62600545,11.9168808,30.4253656,12,8,34% -2018-12-10 17:00:00,74.23325971,137.0083337,213.3533857,602.1135643,49.74609944,126.1837438,76.32932486,49.85441894,48.246071,1.608347942,53.23002693,0,53.23002693,1.500028442,51.72999849,1.295614796,2.391246526,-1.383406045,1.383406045,0.766730056,0.766730056,0.233162925,1.320646596,42.47653423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.37595857,1.0867655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956803963,40.83006037,47.33276253,41.91682587,76.32932486,0,0.126768984,82.71707612,-0.126768984,97.28292388,0.655581757,0,97.37287542,41.91682587,124.8065996,12,9,28% -2018-12-10 18:00:00,67.16533386,149.5684001,343.9819519,724.6940148,62.7475701,286.3616882,222.9131076,63.4485806,60.85549934,2.593081252,85.29447748,0,85.29447748,1.892070752,83.40240673,1.172256219,2.610461038,-0.430000017,0.430000017,0.603688023,0.603688023,0.182415297,1.75287467,56.37847487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.49662072,1.370798819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269951732,54.1931345,59.76657245,55.56393332,222.9131076,0,0.307596176,72.08557556,-0.307596176,107.9144244,0.887449214,0,257.5906347,55.56393332,293.9561177,12,10,14% -2018-12-10 19:00:00,62.48765768,163.9231693,428.6651002,777.3037992,69.59763418,424.2758674,353.5454001,70.73046732,67.49900873,3.231458594,106.0334419,0,106.0334419,2.098625459,103.9348165,1.090615368,2.860999024,0.131362059,-0.131362059,0.507689455,0.507689455,0.162358993,1.898871312,61.07422872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.88261464,1.520447001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375725802,58.70687172,66.25834044,60.22731872,353.5454001,0,0.454835549,62.94564635,-0.454835549,117.0543537,0.940070158,0,398.6158206,60.22731872,438.0333962,12,11,10% -2018-12-10 20:00:00,60.77928597,179.4952495,458.934013,792.893219,71.86319684,515.8690327,442.713138,73.15589475,69.6962563,3.459638444,113.4408053,0,113.4408053,2.166940532,111.2738648,1.060798657,3.132783095,0.596630601,-0.596630601,0.428123848,0.428123848,0.15658721,1.790959126,57.60340187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99469259,1.569941039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29754379,55.37058093,68.29223638,56.94052196,442.713138,0,0.558351525,56.0581288,-0.558351525,123.9418712,0.960450679,0,493.4963703,56.94052196,530.7628031,12,12,8% -2018-12-10 21:00:00,62.29176013,195.1074723,432.156241,779.1762805,69.86313535,547.1470478,476.1327675,71.01428034,67.75650405,3.257776288,106.8879153,0,106.8879153,2.106631298,104.781284,1.087196311,3.405267787,1.095044171,-1.095044171,0.342890107,0.342890107,0.161661753,1.463131328,47.05933299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.13012894,1.526247204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.060033667,45.23522086,66.19016261,46.76146807,476.1327675,0,0.611071948,52.3329478,-0.611071948,127.6670522,0.968176575,0,527.1707545,46.76146807,557.7752001,12,13,6% -2018-12-10 22:00:00,66.80113845,209.560103,350.6535649,729.4136365,63.32028534,508.578366,444.5240462,64.0543198,61.41094511,2.643374689,86.92935677,0,86.92935677,1.90934023,85.02001654,1.16589981,3.657513778,1.775846033,-1.775846033,0.226466132,0.226466132,0.180577903,0.967869675,31.13001579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.03053632,1.383310497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701218285,29.92335526,59.7317546,31.30666576,444.5240462,0,0.609426564,52.45194866,-0.609426564,127.5480513,0.96795566,0,490.0113212,31.30666576,510.5009078,12,14,4% -2018-12-10 23:00:00,73.74088444,222.232359,222.4515238,613.0850542,50.79889674,390.3648428,339.4207867,50.94405612,49.26712257,1.676933551,55.46772157,0,55.46772157,1.531774165,53.93594741,1.287021227,3.87868637,3.033966223,-3.033966223,0.011314908,0.011314908,0.228359401,0.397584919,12.7876977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.35743218,1.109765168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288048921,12.29202143,47.6454811,13.4017866,339.4207867,0,0.553627567,56.38376308,-0.553627567,123.6162369,0.959686578,0,373.3830544,13.4017866,382.1542557,12,15,2% -2018-12-10 00:00:00,82.44458603,233.1367427,68.88877938,324.4116925,26.23350375,171.3069857,145.3452061,25.96177953,25.44246682,0.519312718,17.49391906,0,17.49391906,0.791036929,16.70288213,1.438929477,4.069003768,7.215204732,-7.215204732,0,0,0.380809531,0.197759232,6.360616704,0.413048744,1,0.137718868,0,0.946841134,0.985603098,0.724496596,1,24.66882545,0.573103562,0.05908641,0.312029739,0.846145416,0.570642012,0.961238037,0.922476074,0.135354002,6.114066714,24.80417945,6.687170276,85.31055128,0,0.448027027,63.38282965,-0.448027027,116.6171703,0.93839959,0,104.8595658,6.687170276,109.236185,12,16,4% -2018-12-10 01:00:00,92.59179152,242.6353625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616031622,4.234785957,-21.9093058,21.9093058,1,0,#DIV/0!,0,0,1,0.694830332,0,0.04561105,0.961238037,1,0.603307398,0.878810802,0,0,0.115824807,0.174619783,0.724496596,0.448993192,0.980999399,0.942237436,0,0,0,0,0,0,0.296358878,72.76096048,-0.296358878,107.2390395,0.881285634,0,0,0,0,12,17,0% -2018-12-10 02:00:00,103.4812423,251.2096863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806088392,4.38443614,-4.170385717,4.170385717,1,0.75666835,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113454361,83.485517,-0.113454361,96.514483,0.609294156,0,0,0,0,12,18,0% -2018-12-10 03:00:00,114.9267611,259.3914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005850379,4.527235066,-2.12284335,2.12284335,1,0.893181283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090039509,95.16588001,0.090039509,84.83411999,0,0.494688219,0,0,0,12,19,0% -2018-12-10 04:00:00,126.6834616,267.8346016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211043512,4.674595649,-1.277901317,1.277901317,1,0.748687685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300264782,107.4735072,0.300264782,72.52649279,0,0.883480305,0,0,0,12,20,0% -2018-12-10 05:00:00,138.499676,277.5797496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417275359,4.844680567,-0.784200453,0.784200453,1,0.664259865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502906473,120.1924777,0.502906473,59.80752225,0,0.950577935,0,0,0,12,21,0% -2018-12-10 06:00:00,149.976176,290.8574016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617578071,5.076419311,-0.437092554,0.437092554,1,0.604900919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684167339,133.1701582,0.684167339,46.82984179,0,0.976918464,0,0,0,12,22,0% -2018-12-10 07:00:00,160.0576741,313.7263143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793533406,5.475557134,-0.160610425,0.160610425,1,0.55761969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831707209,146.2745111,0.831707209,33.7254889,0,0.98988269,0,0,0,12,23,0% -2018-12-11 08:00:00,165.140992,358.0759512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.882254041,6.249604321,0.082320786,-0.082320786,1,0.516076006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935482954,159.3063101,0.935482954,20.69368987,0,0.996551672,0,0,0,12,0,0% -2018-12-11 09:00:00,160.6628252,43.9546745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804095285,0.767153792,0.315286228,-0.315286228,1,0.476236569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988432004,171.2765906,0.988432004,8.723409383,0,0.999414831,0,0,0,12,1,0% -2018-12-11 10:00:00,150.7721766,67.96283378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631470901,1.186175218,0.559164945,-0.559164945,1,0.434530852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986952959,170.7345405,0.986952959,9.265459463,0,0.999339024,0,0,0,12,2,0% -2018-12-11 11:00:00,139.3487203,81.65459484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432093978,1.425141529,0.840954582,-0.840954582,1,0.386341986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93115063,158.6148934,0.93115063,21.38510656,0,0.996302995,0,0,0,12,3,0% -2018-12-11 12:00:00,127.5435032,91.55793749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22605407,1.597987466,1.210156564,-1.210156564,1,0.323204729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82482884,145.5711422,0.82482884,34.4288578,0,0.989381363,0,0,0,12,4,0% -2018-12-11 13:00:00,115.7778257,100.0547038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020704259,1.746284014,1.792241077,-1.792241077,1,0.223662415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675231461,132.4721271,0.675231461,47.52787291,0,0.975951318,0,0,0,12,5,0% -2018-12-11 14:00:00,104.3077988,108.2334686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820514525,1.889030388,3.07987014,-3.07987014,1,0.003464876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49254926,119.5082752,0.49254926,60.49172483,0,0.948487311,0,0,0,12,6,0% -2018-12-11 15:00:00,93.37653139,116.7636011,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629727917,2.037909285,11.61035849,-11.61035849,1,0,#DIV/0!,0,0,0.592723525,1,0.085917946,0,0.952779029,0.991540992,0.724496596,1,0,0,0.079116924,0.312029739,0.800257469,0.524754065,0.961238037,0.922476074,0,0,0,0,0,0,-0.289226059,106.811627,0.289226059,73.18837299,0,0.877124845,0,0,0,12,7,0% -2018-12-11 16:00:00,83.15414405,126.1809426,58.00755397,290.0259768,23.43685264,23.16743051,0,23.16743051,22.73014506,0.437285444,37.10086634,22.32955571,14.77131063,0.70670758,14.06460305,1.4513136,2.202272903,-4.635991413,4.635991413,0.677045087,0.677045087,0.404031045,0.353120633,11.3575734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.84908002,0.512007236,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.255834696,10.91733155,22.10491471,11.42933879,0,22.32955571,-0.076991571,94.41566191,0.076991571,85.58433809,0,0,22.10491471,11.42933879,29.58518837,12,8,34% -2018-12-11 17:00:00,74.36217517,136.9697153,211.0718806,599.8121707,49.38914452,124.1363943,74.6453657,49.49102858,47.89987959,1.591148993,52.6660861,0,52.6660861,1.489264934,51.17682117,1.297864796,2.390572508,-1.397621189,1.397621189,0.769160989,0.769160989,0.233992062,1.309794845,42.1275046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.04318622,1.078967375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.948941906,40.49455982,46.99212813,41.5735272,74.6453657,0,0.124447901,82.85112611,-0.124447901,97.14887389,0.648225446,0,95.37915357,41.5735272,122.5881957,12,9,29% -2018-12-11 18:00:00,67.28578823,149.5040511,341.8847446,723.6561012,62.45589814,284.1369704,220.9870764,63.14989399,60.57262237,2.577271618,84.77719031,0,84.77719031,1.883275767,82.89391454,1.174358544,2.609337937,-0.43517862,0.43517862,0.604573617,0.604573617,0.182681149,1.744324654,56.10347695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.22470862,1.364426882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263757274,53.92879605,59.48846589,55.29322293,220.9870764,0,0.305375821,72.21922435,-0.305375821,107.7807756,0.886267325,0,255.342091,55.29322293,291.5303996,12,10,14% -2018-12-11 19:00:00,62.59293422,163.829357,426.9041105,776.7840213,69.34322644,422.2194543,351.7489985,70.47045583,67.25227232,3.21818351,105.5987982,0,105.5987982,2.090954127,103.5078441,1.092452791,2.859361692,0.128802721,-0.128802721,0.508127127,0.508127127,0.162432792,1.892367245,60.86503556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64544222,1.514889147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371013627,58.50578729,66.01645584,60.02067644,351.7489985,0,0.452827284,63.07477524,-0.452827284,116.9252248,0.939582625,0,396.5137032,60.02067644,435.7960355,12,11,10% -2018-12-11 20:00:00,60.86231207,179.3746344,457.5913201,792.6514803,71.64136896,514.1602605,441.2296265,72.93063402,69.48111736,3.449516658,113.108565,0,113.108565,2.160251603,110.9483134,1.062247736,3.130677965,0.595103969,-0.595103969,0.428384917,0.428384917,0.156561905,1.786429008,57.4576977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.78789285,1.565094932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294261735,55.23052454,68.08215458,56.79561947,441.2296265,0,0.556650227,56.17554629,-0.556650227,123.8244537,0.960176988,0,491.7406884,56.79561947,528.9122854,12,12,8% -2018-12-11 21:00:00,62.34793209,194.9701219,431.2731931,779.1352398,69.67560357,545.9042975,475.0785509,70.82574654,67.57462704,3.2511195,106.6681553,0,106.6681553,2.100976523,104.5671788,1.088176697,3.40287057,1.093910902,-1.093910902,0.343083908,0.343083908,0.161557928,1.460448105,46.97303131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95530184,1.522150339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05808968,45.1522644,66.01339152,46.67441474,475.0785509,0,0.609751076,52.42849368,-0.609751076,127.5715063,0.967999325,0,525.889108,46.67441474,556.4365789,12,13,6% -2018-12-11 22:00:00,66.83022756,209.4179837,350.2334436,729.5852542,63.1730575,507.8853569,443.9769926,63.90836437,61.26815673,2.640207637,86.82305403,0,86.82305403,1.904900767,84.91815327,1.166407511,3.655033328,1.774574202,-1.774574202,0.226683628,0.226683628,0.180374144,0.966764584,31.09447225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.8932827,1.380094121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70041765,29.88918946,59.59370035,31.26928358,443.9769926,0,0.608533396,52.51646665,-0.608533396,127.4835333,0.967835241,0,489.2902798,31.26928358,509.7554006,12,14,4% -2018-12-11 23:00:00,73.74616387,222.0931971,222.4536053,613.6092389,50.70849561,390.2926591,339.4362624,50.85639662,49.17944738,1.676949241,55.46550032,0,55.46550032,1.529048237,53.93645208,1.28711337,3.876257535,3.031116449,-3.031116449,0.011802248,0.011802248,0.227950882,0.397542279,12.78632624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.27315545,1.107790243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288018028,12.29070313,47.56117348,13.39849337,339.4362624,0,0.553179843,56.41456182,-0.553179843,123.5854382,0.959613482,0,373.2887871,13.39849337,382.057833,12,15,2% -2018-12-11 00:00:00,82.43083161,233.0027496,69.16854932,325.7641043,26.25792907,171.9329624,145.945385,25.98757737,25.46615562,0.521421742,17.56248903,0,17.56248903,0.791773443,16.77071559,1.438689417,4.066665146,7.196815073,-7.196815073,0,0,0.379622376,0.197943361,6.366538906,0.411963314,1,0.138066325,0,0.946799223,0.985561187,0.724496596,1,24.69179807,0.573637164,0.058956621,0.312029739,0.846453163,0.570949759,0.961238037,0.922476074,0.13548175,6.11975936,24.82727983,6.693396524,85.82124051,0,0.448009413,63.38395852,-0.448009413,116.6160415,0.938395202,0,105.3615201,6.693396524,109.7422143,12,16,4% -2018-12-11 01:00:00,92.56311518,242.5049038,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615531126,4.232509024,-22.14818431,22.14818431,1,0,#DIV/0!,0,0,1,0.698587849,0,0.045119785,0.961238037,1,0.604525446,0.88002885,0,0,0.115824807,0.175996751,0.724496596,0.448993192,0.980821689,0.942059726,0,0,0,0,0,0,0.296735747,72.73835042,-0.296735747,107.2616496,0.88149991,0,0,0,0,12,17,0% -2018-12-11 02:00:00,103.4417811,251.0787683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805399665,4.382151189,-4.183282797,4.183282797,1,0.75446282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114153775,83.44518152,-0.114153775,96.55481848,0.611994335,0,0,0,0,12,18,0% -2018-12-11 03:00:00,114.8800648,259.253988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005035375,4.52483569,-2.128216184,2.128216184,1,0.894100092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08910846,95.11231954,0.08910846,84.88768046,0,0.488886051,0,0,0,12,19,0% -2018-12-11 04:00:00,126.6332044,267.6811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210166358,4.671916541,-1.281342722,1.281342722,1,0.7492762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299208782,107.4100869,0.299208782,72.58991306,0,0.882892605,0,0,0,12,20,0% -2018-12-11 05:00:00,138.4507805,277.3934142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416421973,4.841428401,-0.786880253,0.786880253,1,0.664718138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501840655,120.1218516,0.501840655,59.87814836,0,0.950366781,0,0,0,12,21,0% -2018-12-11 06:00:00,149.9378212,290.6036404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616908654,5.071990344,-0.439440889,0.439440889,1,0.605302508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683207373,133.0947898,0.683207373,46.90521024,0,0.976815778,0,0,0,12,22,0% -2018-12-11 07:00:00,160.0529906,313.3379354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793451664,5.468778644,-0.162853586,0.162853586,1,0.558003293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830961358,146.1976197,0.830961358,33.80238025,0,0.98982873,0,0,0,12,23,0% -2018-12-12 08:00:00,165.2159641,357.6492597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88356255,6.24215715,0.080015696,-0.080015696,1,0.5164702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935044633,159.2353569,0.935044633,20.76464307,0,0.996526617,0,0,0,12,0,0% -2018-12-12 09:00:00,160.7891164,43.83551245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806299483,0.765074022,0.312744835,-0.312744835,1,0.476671173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988373354,171.254462,0.988373354,8.745538022,0,0.999411829,0,0,0,12,1,0% -2018-12-12 10:00:00,150.9042771,67.95696168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63377649,1.186072731,0.556141342,-0.556141342,1,0.435047919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987319889,170.8660395,0.987319889,9.133960523,0,0.999357852,0,0,0,12,2,0% -2018-12-12 11:00:00,139.4803796,81.66892367,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434391865,1.425391615,0.837009272,-0.837009272,1,0.387016674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931959649,158.7423784,0.931959649,21.25762162,0,0.996349609,0,0,0,12,3,0% -2018-12-12 12:00:00,127.6748703,91.57212191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228346859,1.59823503,1.204313102,-1.204313102,1,0.32420402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826065912,145.6967077,0.826065912,34.30329233,0,0.989472142,0,0,0,12,4,0% -2018-12-12 13:00:00,115.9093047,100.0632795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022999,1.746433688,1.781634184,-1.781634184,1,0.2254763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676852959,132.598209,0.676852959,47.40179104,0,0.976128712,0,0,0,12,5,0% -2018-12-12 14:00:00,104.4393626,108.2338514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822810747,1.889037069,3.05058483,-3.05058483,1,0.008472959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494484951,119.6357932,0.494484951,60.36420684,0,0.948884688,0,0,0,12,6,0% -2018-12-12 15:00:00,93.50754315,116.7531841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632014503,2.037727474,11.17783054,-11.17783054,1,0,#DIV/0!,0,0,0.580073287,1,0.089225263,0,0.952418496,0.991180459,0.724496596,1,0,0,0.077795402,0.312029739,0.803186361,0.527682957,0.961238037,0.922476074,0,0,0,0,0,0,-0.291383921,106.9408275,0.291383921,73.05917245,0,0.878405082,0,0,0,12,7,0% -2018-12-12 16:00:00,83.28103389,126.1561026,56.15925084,284.2232986,22.90526956,22.63794332,0,22.63794332,22.21459117,0.423352155,36.82621007,22.51907113,14.30713894,0.690678389,13.61646056,1.453528246,2.201839361,-4.7274316,4.7274316,0.661407894,0.661407894,0.407862805,0.338473019,10.8864558,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.35351,0.500394141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.24522255,10.4644754,21.59873255,10.96486954,0,22.51907113,-0.079230208,94.54431946,0.079230208,85.45568054,0,0,21.59873255,10.96486954,28.77502037,12,8,33% -2018-12-12 17:00:00,74.48574329,136.9255232,208.8895619,597.606504,49.04288299,122.1569158,73.01815894,49.13875687,47.56405911,1.574697753,52.12651658,0,52.12651658,1.478823871,50.64769271,1.300021466,2.389801209,-1.411879984,1.411879984,0.771599387,0.771599387,0.234779003,1.29947689,41.79564371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.72038281,1.07140286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.941466583,40.17556251,46.66184939,41.24696537,73.01815894,0,0.122184344,82.98181588,-0.122184344,97.01818412,0.640782271,0,93.45059107,41.24696537,120.445905,12,9,29% -2018-12-12 18:00:00,67.40004664,149.4350506,339.8998287,722.6906114,62.17375015,281.9990055,219.1377148,62.86129067,60.29898219,2.562308483,84.28741665,0,84.28741665,1.874767964,82.41264869,1.17635273,2.608133651,-0.440471112,0.440471112,0.605478686,0.605478686,0.182917863,1.736332154,55.84641066,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.96167526,1.358263008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257966735,53.68169415,59.219642,55.03995716,219.1377148,0,0.303224798,72.34860465,-0.303224798,107.6513953,0.885105835,0,253.179712,55.03995716,289.2022632,12,10,14% -2018-12-12 19:00:00,62.69127051,163.7323392,425.2654783,776.327473,69.09812722,420.2660078,350.0456133,70.22039455,67.01456374,3.205830808,105.1941022,0,105.1941022,2.083563481,103.1105388,1.094169083,2.85766841,0.126073178,-0.126073178,0.508593906,0.508593906,0.162482333,1.886434962,60.67423295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41694769,1.509534649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.366715708,58.32238057,65.7836634,59.83191522,350.0456133,0,0.450899428,63.19859505,-0.450899428,116.801405,0.939110527,0,394.5151837,59.83191522,433.6739755,12,11,10% -2018-12-12 20:00:00,60.93793786,179.2527125,456.3779253,792.4725477,71.42906476,512.5687096,439.8531251,72.71558449,69.27521491,3.440369576,112.8079616,0,112.8079616,2.153849848,110.6541117,1.063567655,3.128550027,0.593341672,-0.593341672,0.428686288,0.428686288,0.156512971,1.78247025,57.33037044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58997159,1.560456883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291393628,55.10813274,67.88136522,56.66858962,439.8531251,0,0.555038943,56.2866029,-0.555038943,123.7133971,0.959916231,0,490.1035191,56.66858962,527.1919777,12,12,8% -2018-12-12 21:00:00,62.39663146,194.8334333,430.522847,779.1651038,69.49814844,544.7915258,474.1435398,70.64798592,67.40252285,3.245463074,106.4808743,0,106.4808743,2.095625596,104.3852487,1.089026661,3.400484905,1.092434292,-1.092434292,0.343336423,0.343336423,0.161427318,1.458315933,46.90445333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.78986874,1.518273611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056544929,45.08634464,65.84641367,46.60461825,474.1435398,0,0.608527689,52.51687875,-0.608527689,127.4831213,0.96783447,0,524.7388753,46.60461825,555.2406659,12,13,6% -2018-12-12 22:00:00,66.85210713,209.2781627,349.9452223,729.8496561,63.03705471,507.3349576,443.5606677,63.77428983,61.13625493,2.638034903,86.74907045,0,86.74907045,1.900799782,84.84827067,1.166789381,3.652592992,1.772730712,-1.772730712,0.226998884,0.226998884,0.180134063,0.966161066,31.07506104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.76649367,1.377122971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.699980403,29.87053067,59.46647407,31.24765364,443.5606677,0,0.607742518,52.5735493,-0.607742518,127.4264507,0.967728317,0,488.7126924,31.24765364,509.1636567,12,14,4% -2018-12-12 23:00:00,73.74468966,221.957512,222.5806234,614.2814463,50.63219375,390.3803317,339.5969786,50.78335306,49.1054463,1.677906758,55.49399655,0,55.49399655,1.526747455,53.96724909,1.28708764,3.873889383,3.027016378,-3.027016378,0.012503402,0.012503402,0.227477994,0.397894022,12.7976395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.2020228,1.106123334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288272864,12.30157787,47.49029566,13.4077012,339.5969786,0,0.552836132,56.43819812,-0.552836132,123.5618019,0.959557286,0,373.3530509,13.4077012,382.1281232,12,15,2% -2018-12-12 00:00:00,82.41087773,232.8730631,69.54653653,327.4150702,26.30541645,172.7490916,146.7126093,26.03648225,25.51221108,0.524271169,17.65556833,0,17.65556833,0.793205363,16.86236296,1.438341156,4.064401691,7.172685886,-7.172685886,0,0,0.378241934,0.198301341,6.378052771,0.41053301,1,0.138524876,0,0.94674387,0.985505833,0.724496596,1,24.73645535,0.574674585,0.058785422,0.312029739,0.846859304,0.5713559,0.961238037,0.922476074,0.135729165,6.130826925,24.87218452,6.70550151,86.48224017,0,0.448093636,63.37856074,-0.448093636,116.6214393,0.938416179,0,106.0285179,6.70550151,110.4171345,12,16,4% -2018-12-12 01:00:00,92.52861578,242.3794101,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614928998,4.230318744,-22.44424249,22.44424249,1,0,#DIV/0!,0,0,1,0.703118315,0,0.044525409,0.961238037,1,0.606001699,0.881505103,0,0,0.115824807,0.177665722,0.724496596,0.448993192,0.980605725,0.941843762,0,0,0,0,0,0,0.29721164,72.70979554,-0.29721164,107.2902045,0.881769711,0,0,0,0,12,17,0% -2018-12-12 02:00:00,103.3968733,250.9534652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804615875,4.379964237,-4.197995636,4.197995636,1,0.751946776,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114945293,83.39953037,-0.114945293,96.60046963,0.615010461,0,0,0,0,12,18,0% -2018-12-12 03:00:00,114.8281805,259.1229189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004129824,4.522548103,-2.134064963,2.134064963,1,0.895100292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088094463,95.05399241,0.088094463,84.94600759,0,0.482427441,0,0,0,12,19,0% -2018-12-12 04:00:00,126.577853,267.5350981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209200294,4.669368326,-1.284970061,1.284970061,1,0.749896512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298080595,107.3423557,0.298080595,72.65764435,0,0.882260131,0,0,0,12,20,0% -2018-12-12 05:00:00,138.3966234,277.2161871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415476752,4.838335205,-0.789639847,0.789639847,1,0.665190056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500714272,120.0472671,0.500714272,59.95273289,0,0.950142651,0,0,0,12,21,0% -2018-12-12 06:00:00,149.893553,290.3611902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616136028,5.067758789,-0.441817256,0.441817256,1,0.60570889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682198523,133.0156832,0.682198523,46.98431682,0,0.976707552,0,0,0,12,22,0% -2018-12-12 07:00:00,160.0408521,312.9609726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793239807,5.462199402,-0.165092916,0.165092916,1,0.558386241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830177556,146.1169816,0.830177556,33.88301841,0,0.98977192,0,0,0,12,23,0% -2018-12-13 08:00:00,165.2825502,357.2149743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884724697,6.23457744,0.077739397,-0.077739397,1,0.51685947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934577789,159.1600405,0.934577789,20.83995947,0,0.996499906,0,0,0,12,0,0% -2018-12-13 09:00:00,160.9099414,43.69825786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.808408276,0.762678477,0.310257407,-0.310257407,1,0.477096548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988293457,171.2244055,0.988293457,8.775594485,0,0.99940774,0,0,0,12,1,0% -2018-12-13 10:00:00,151.0327275,67.93717191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636018373,1.185727334,0.553203845,-0.553203845,1,0.43555026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987670191,170.9933549,0.987670191,9.006645053,0,0.999375813,0,0,0,12,2,0% -2018-12-13 11:00:00,139.6090356,81.67247875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436637337,1.425453662,0.833200471,-0.833200471,1,0.387668017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932753684,158.8682152,0.932753684,21.13178475,0,0.99639528,0,0,0,12,3,0% -2018-12-13 12:00:00,127.8033477,91.57739618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230589213,1.598327084,1.198703131,-1.198703131,1,0.325163381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827286557,145.8210025,0.827286557,34.17899755,0,0.98956145,0,0,0,12,4,0% -2018-12-13 13:00:00,116.0377168,100.0640775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025240214,1.746447616,1.771506925,-1.771506925,1,0.227208163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6784536,132.7229198,0.6784536,47.27708024,0,0.976302993,0,0,0,12,5,0% -2018-12-13 14:00:00,104.5674834,108.2271784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825046877,1.888920604,3.022856437,-3.022856437,1,0.013214794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496392672,119.7616267,0.496392672,60.23837331,0,0.949273291,0,0,0,12,6,0% -2018-12-13 15:00:00,93.63457328,116.7362197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634231597,2.03743139,10.78955914,-10.78955914,1,0,#DIV/0!,0,0,0.568028883,1,0.092418173,0,0.952068012,0.990829976,0.724496596,1,0,0,0.07652539,0.312029739,0.806014239,0.530510835,0.961238037,0.922476074,0,0,0,0,0,0,-0.293504507,107.0678827,0.293504507,72.93211726,0,0.879644865,0,0,0,12,7,0% -2018-12-13 16:00:00,83.40327595,126.1251727,54.39512134,278.5957837,22.38993931,22.12485343,0,22.12485343,21.71480003,0.410053401,36.54740484,22.68353863,13.86386621,0.67513928,13.18872693,1.455661772,2.201299534,-4.819711534,4.819711534,0.645627095,0.645627095,0.411616681,0.324554353,10.43878365,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.87309175,0.48913611,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.235138524,10.03415591,21.10823028,10.52329202,0,22.68353863,-0.081420969,94.67024774,0.081420969,85.32975226,0,0,21.10823028,10.52329202,27.99551444,12,8,33% -2018-12-13 17:00:00,74.6038698,136.8758309,206.8081219,595.5020806,48.70767842,120.2465087,71.44853949,48.79796918,47.2389622,1.559006979,51.61173972,0,51.61173972,1.468716216,50.14302351,1.302083163,2.388933916,-1.426155673,1.426155673,0.774040673,0.774040673,0.23552111,1.289702344,41.48126071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.40788729,1.064079899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.934384958,39.87336561,46.34227225,40.93744551,71.44853949,0,0.119980336,83.10903231,-0.119980336,96.89096769,0.633265043,0,91.58813469,40.93744551,118.380874,12,9,29% -2018-12-13 18:00:00,67.50802976,149.3614883,338.028868,721.8002634,61.90132558,279.9495473,217.3665707,62.58297661,60.03477222,2.548204391,83.82556597,0,83.82556597,1.866553358,81.95901262,1.178237391,2.606849747,-0.445869509,0.445869509,0.606401866,0.606401866,0.183124376,1.728903878,55.60749179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.70770659,1.352311554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.252584974,53.45203624,58.96029157,54.8043478,217.3665707,0,0.301145042,72.47361002,-0.301145042,107.52639,0.883967049,0,251.1051776,54.8043478,286.9735272,12,10,14% -2018-12-13 19:00:00,62.7826066,163.6322148,423.7505686,775.9357429,68.86246111,418.4172367,348.436822,69.98041461,66.78600383,3.194410779,104.8196886,0,104.8196886,2.076457278,102.7432314,1.095763198,2.855920911,0.123176998,-0.123176998,0.509089182,0.509089182,0.162507065,1.881078806,60.50196058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.19724721,1.504386229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.362835192,58.15678581,65.5600824,59.66117204,348.436822,0,0.449053707,63.31701301,-0.449053707,116.682987,0.938654744,0,392.6219584,59.66117204,431.6690023,12,11,10% -2018-12-13 20:00:00,61.00612454,179.1295857,455.294779,792.3574253,71.22635715,511.0957824,438.5849583,72.51082405,69.07861968,3.432204362,112.5392279,0,112.5392279,2.147737465,110.3914904,1.064757737,3.126401058,0.591345972,-0.591345972,0.429027573,0.429027573,0.156440092,1.779085024,57.22148994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.40099677,1.556028482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.288941044,55.00347266,67.68993782,56.55950114,438.5849583,0,0.553519087,56.39122639,-0.553519087,123.6087736,0.959668878,0,488.5862728,56.55950114,525.6033351,12,12,8% -2018-12-13 21:00:00,62.43784057,194.6975093,429.9056843,779.2664626,69.33079483,543.8096635,473.3286373,70.4810262,67.24021556,3.240810641,106.3261897,0,106.3261897,2.090579267,104.2356104,1.089745896,3.398112583,1.09061667,-1.09061667,0.343647255,0.343647255,0.161269779,1.45673504,46.85360638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.6338528,1.514617563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055399578,45.03746862,65.68925238,46.55208618,473.3286373,0,0.607402808,52.59805496,-0.607402808,127.401945,0.967682303,0,523.7209984,46.55208618,554.1884077,12,13,6% -2018-12-13 22:00:00,66.86678039,209.140744,349.7889111,730.2069588,62.91224364,506.9274874,443.2754235,63.65206394,61.01520738,2.636856563,86.70740747,0,86.70740747,1.897036267,84.81037121,1.167045478,3.650194583,1.770319881,-1.770319881,0.22741116,0.22741116,0.179857742,0.966057872,31.07174197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65013816,1.374396318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69990564,29.86734025,59.3500438,31.24173657,443.2754235,0,0.607054504,52.62317218,-0.607054504,127.3768278,0.967635073,0,488.2788905,31.24173657,508.7259822,12,14,4% -2018-12-13 23:00:00,73.73648519,221.8254085,222.8321967,615.1008158,50.56985432,390.6273735,339.9025837,50.72478985,49.04498663,1.679803224,55.55311364,0,55.55311364,1.524867691,54.02824595,1.286944445,3.871583743,3.021680575,-3.021680575,0.013415878,0.013415878,0.226941416,0.398638598,12.82158762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.14390666,1.104761451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288812307,12.32459772,47.43271897,13.42935917,339.9025837,0,0.552596542,56.45467041,-0.552596542,123.5453296,0.959518073,0,373.575391,13.42935917,382.364638,12,15,2% -2018-12-13 00:00:00,82.38476523,232.7477876,70.02253182,329.3615064,26.37556255,173.754071,147.6459696,26.10810144,25.58024202,0.527859422,17.77309406,0,17.77309406,0.795320526,16.97777353,1.437885407,4.062215221,7.142967271,-7.142967271,0,0,0.376672506,0.198830132,6.395060506,0.408761791,1,0.139093825,0,0.946675123,0.985437086,0.724496596,1,24.80241534,0.576207014,0.058573146,0.312029739,0.847363219,0.571859815,0.961238037,0.922476074,0.13609427,6.147175406,24.93850961,6.72338242,87.29393854,0,0.448279373,63.36665622,-0.448279373,116.6333438,0.938462412,0,106.8605897,6.72338242,111.260909,12,16,4% -2018-12-13 01:00:00,92.48835289,242.258985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614226278,4.228216931,-22.80140649,22.80140649,1,0,#DIV/0!,0,0,1,0.70840583,0,0.043828857,0.961238037,1,0.607735282,0.883238686,0,0,0.115824807,0.179625771,0.724496596,0.448993192,0.980351304,0.941589341,0,0,0,0,0,0,0.297785786,72.67533929,-0.297785786,107.3246607,0.882094068,0,0,0,0,12,17,0% -2018-12-13 02:00:00,103.3465935,250.8338822,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803738328,4.377877119,-4.214538017,4.214538017,1,0.749117862,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115827798,83.34862657,-0.115827798,96.65137343,0.618324694,0,0,0,0,12,18,0% -2018-12-13 03:00:00,114.7711969,258.9983655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003135273,4.520374236,-2.140388251,2.140388251,1,0.896181638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086998891,94.99097879,0.086998891,85.00902121,0,0,0,0,0,12,19,0% -2018-12-13 04:00:00,126.5175092,267.396721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208147098,4.666953191,-1.288781052,1.288781052,1,0.75054823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296881738,107.270409,0.296881738,72.72959102,0,0.88158277,0,0,0,12,20,0% -2018-12-13 05:00:00,138.3373195,277.0482304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414441704,4.835403808,-0.792477077,0.792477077,1,0.665675251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499528863,119.9688347,0.499528863,60.03116529,0,0.949905684,0,0,0,12,21,0% -2018-12-13 06:00:00,149.8434982,290.1303243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615262406,5.063729419,-0.44421967,0.44421967,1,0.606119727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681142228,132.9329654,0.681142228,47.06703465,0,0.976593892,0,0,0,12,22,0% -2018-12-13 07:00:00,160.0213703,312.5961175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792899785,5.45583148,-0.167326536,0.167326536,1,0.558768212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829357025,146.0327455,0.829357025,33.9672545,0,0.989712333,0,0,0,12,23,0% -2018-12-14 08:00:00,165.3406863,356.774143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885739364,6.226883481,0.075493722,-0.075493722,1,0.517243503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934083331,159.0805517,0.934083331,20.91944825,0,0.996471585,0,0,0,12,0,0% -2018-12-14 09:00:00,161.0251644,43.54289404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810419297,0.759966867,0.307825791,-0.307825791,1,0.477512379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988192828,171.1866946,0.988192828,8.813305365,0,0.999402588,0,0,0,12,1,0% -2018-12-14 10:00:00,151.1574104,67.90337625,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638194499,1.185137489,0.550354353,-0.550354353,1,0.436037552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988003936,171.1163358,0.988003936,8.883664161,0,0.999392914,0,0,0,12,2,0% -2018-12-14 11:00:00,139.7345752,81.66521336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438828415,1.425326857,0.829530086,-0.829530086,1,0.38829569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933532342,158.9923136,0.933532342,21.00768644,0,0.996439992,0,0,0,12,3,0% -2018-12-14 12:00:00,127.928822,91.57374322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232779153,1.598263328,1.193328157,-1.193328157,1,0.326082556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82848993,145.9439283,0.82848993,34.05607169,0,0.989649236,0,0,0,12,4,0% -2018-12-14 13:00:00,116.1629482,100.057102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027425915,1.746325869,1.761857628,-1.761857628,1,0.22885829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680032126,132.8461536,0.680032126,47.15384644,0,0.976474062,0,0,0,12,5,0% -2018-12-14 14:00:00,104.6920485,108.2134716,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827220947,1.888681374,2.996648244,-2.996648244,1,0.017696659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498270826,119.8856645,0.498270826,60.11433547,0,0.949652965,0,0,0,12,6,0% -2018-12-14 15:00:00,93.75751238,116.7127471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63637729,2.037021717,10.44012072,-10.44012072,1,0,#DIV/0!,0,0,0.556582727,1,0.095493006,0,0.951728244,0.990490207,0.724496596,1,0,0,0.075307668,0.312029739,0.808737779,0.533234375,0.961238037,0.922476074,0,0,0,0,0,0,-0.295585976,107.1926784,0.295585976,72.8073216,0,0.880844478,0,0,0,12,7,0% -2018-12-14 16:00:00,83.52077344,126.0882102,52.71536002,273.1556023,21.89167005,21.62894608,0,21.62894608,21.23155543,0.397390651,36.26698562,22.82542165,13.44156398,0.660114624,12.78144935,1.45771249,2.200654416,-4.912600035,4.912600035,0.629742226,0.629742226,0.41528067,0.311356816,10.01430548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.40857866,0.478250798,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225576953,9.626131343,20.63415561,10.10438214,0,22.82542165,-0.083561975,94.79333791,0.083561975,85.20666209,0,0,20.63415561,10.10438214,27.24727164,12,8,32% -2018-12-14 17:00:00,74.71646414,136.8207134,204.8291755,593.5043374,48.38388326,118.406292,69.93727251,48.46901951,46.92493066,1.544088845,51.12215763,0,51.12215763,1.458952598,49.66320503,1.304048305,2.387971935,-1.440420479,1.440420479,0.776480099,0.776480099,0.236215779,1.280480494,41.18465432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.10602823,1.057006191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927703759,39.58825626,46.03373199,40.64526245,69.93727251,0,0.117837846,83.23266512,-0.117837846,96.76733488,0.625688102,0,89.79265125,40.64526245,116.3941626,12,9,30% -2018-12-14 18:00:00,67.60966218,149.283454,336.2734429,720.9876759,61.63881285,277.990266,215.6751195,62.31514648,59.78017522,2.534971255,83.3920271,0,83.3920271,1.85863763,81.53338947,1.180011211,2.605487791,-0.451365442,0.451365442,0.607341726,0.607341726,0.183299675,1.722046179,55.38692461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.46297827,1.346576636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247616595,53.24001868,58.71059487,54.58659531,215.6751195,0,0.299138427,72.59413757,-0.299138427,107.4058624,0.882853303,0,249.1200865,54.58659531,284.8459214,12,10,14% -2018-12-14 19:00:00,62.86688643,163.5290824,422.3606575,775.6103183,68.63634202,416.6747552,346.9241191,69.75063611,66.56670307,3.183933042,104.4758703,0,104.4758703,2.069638953,102.4062313,1.097234159,2.854120911,0.12011811,-0.12011811,0.509612283,0.509612283,0.162506476,1.876302767,60.34834673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.98644697,1.499446376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359374967,58.00912634,65.34582194,59.50857271,346.9241191,0,0.447291779,63.42994038,-0.447291779,116.5700596,0.938216144,0,390.8356311,59.50857271,429.7828017,12,11,10% -2018-12-14 20:00:00,61.06683699,179.0053547,454.3427423,792.3070073,71.03330829,509.7427768,437.4263573,72.31641946,68.89139196,3.425027507,112.3025744,0,112.3025744,2.14191633,110.1606581,1.065817369,3.124232818,0.589119582,-0.589119582,0.429408308,0.429408308,0.156343002,1.776275181,57.13111574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22102636,1.55181109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286905322,54.91660154,67.50793168,56.46841263,437.4263573,0,0.552091996,56.48934864,-0.552091996,123.5106514,0.959435383,0,487.1902565,56.46841263,524.1477032,12,12,8% -2018-12-14 21:00:00,62.47154526,194.5624512,429.422102,779.4397753,69.17355602,542.959528,472.6346447,70.32488328,67.08771808,3.237165194,106.2041982,0,106.2041982,2.085837937,104.1183603,1.090334154,3.395755374,1.088461044,-1.088461044,0.344015889,0.344015889,0.161085225,1.455705397,46.82048952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48726643,1.511182485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054653605,45.00563543,65.54192003,46.51681792,472.6346447,0,0.606377375,52.67197802,-0.606377375,127.328022,0.967543098,0,522.8363082,46.51681792,553.2806352,12,13,6% -2018-12-14 22:00:00,66.87425386,209.0058301,349.7644462,730.6570959,62.79857709,506.663142,443.1215016,63.54164042,60.90496829,2.636672136,86.69804821,0,86.69804821,1.893608801,84.80443941,1.167175915,3.64783989,1.767347289,-1.767347289,0.227919503,0.227919503,0.179545342,0.966453609,31.08447023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54417215,1.37191313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70019235,29.87957515,59.2443645,31.25148828,443.1215016,0,0.606469853,52.66531427,-0.606469853,127.3346857,0.967555671,0,487.9890864,31.25148828,508.4425604,12,14,4% -2018-12-14 23:00:00,73.72157694,221.6969893,223.2078935,616.0661695,50.52131965,391.0331502,340.3525994,50.68055085,48.99791546,1.682635384,55.64274217,0,55.64274217,1.523404191,54.11933798,1.286684247,3.869342406,3.015127083,-3.015127083,0.014536591,0.014536591,0.226341994,0.399774554,12.85812389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.09866007,1.103701151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289635304,12.35971776,47.38829537,13.46341891,340.3525994,0,0.552461109,56.46398027,-0.552461109,123.5360197,0.959495892,0,373.9552162,13.46341891,382.7667547,12,15,2% -2018-12-14 00:00:00,82.35253741,232.6270247,70.59637152,331.5997398,26.46792494,174.9464525,148.7444479,26.20200462,25.66981935,0.532185269,17.91501321,0,17.91501321,0.798105593,17.11690761,1.437322925,4.060107511,7.107835986,-7.107835986,0,0,0.374919056,0.199526398,6.417454837,0.406654202,1,0.139772414,0,0.946593032,0.985354995,0.724496596,1,24.88925867,0.578224785,0.058320163,0.312029739,0.847964233,0.572460829,0.961238037,0.922476074,0.136574911,6.168701689,25.02583358,6.746926474,88.25689316,0,0.448566238,63.34826757,-0.448566238,116.6517324,0.938533742,0,107.8579058,6.746926474,112.2736342,12,16,4% -2018-12-14 01:00:00,92.44238845,242.1437288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613424047,4.226205331,-23.22465233,23.22465233,1,0,#DIV/0!,0,0,1,0.714432834,0,0.043031116,0.961238037,1,0.609725422,0.885228826,0,0,0.115824807,0.1818761,0.724496596,0.448993192,0.98005815,0.941296186,0,0,0,0,0,0,0.298457361,72.63502782,-0.298457361,107.3649722,0.882471882,0,0,0,0,12,17,0% -2018-12-14 02:00:00,103.2910186,250.7201195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802768363,4.375891586,-4.232927247,4.232927247,1,0.745973119,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11680013,83.29253532,-0.11680013,96.70746468,0.621918283,0,0,0,0,12,18,0% -2018-12-14 03:00:00,114.7092041,258.8804322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002053295,4.51831591,-2.147184908,2.147184908,1,0.897343935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085823143,94.92336044,0.085823143,85.07663956,0,0,0,0,0,12,19,0% -2018-12-14 04:00:00,126.4522759,267.2660852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207008561,4.664673166,-1.292773451,1.292773451,1,0.75123097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295613738,107.1943434,0.295613738,72.80565658,0,0.880860364,0,0,0,12,20,0% -2018-12-14 05:00:00,138.2729844,276.8896929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413318845,4.832636806,-0.795389793,0.795389793,1,0.666173355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498285965,119.886665,0.498285965,60.11333501,0,0.949656014,0,0,0,12,21,0% -2018-12-14 06:00:00,149.7877844,289.9112923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614290017,5.059906589,-0.446646151,0.446646151,1,0.60653468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680039913,132.8467621,0.680039913,47.15323792,0,0.976474904,0,0,0,12,22,0% -2018-12-14 07:00:00,159.9946614,312.2440201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792433627,5.449686221,-0.169552586,0.169552586,1,0.559148889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828500969,145.9450578,0.828500969,34.05494217,0,0.98965004,0,0,0,12,23,0% -2018-12-15 08:00:00,165.3903181,356.3278566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886605603,6.219094313,0.073280477,-0.073280477,1,0.51762199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933562141,158.9970767,0.933562141,21.0029233,0,0.996441701,0,0,0,12,0,0% -2018-12-15 09:00:00,161.1346491,43.36944489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.812330166,0.756939608,0.305451793,-0.305451793,1,0.477918357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988071954,171.1416076,0.988071954,8.858392445,0,0.999396398,0,0,0,12,1,0% -2018-12-15 10:00:00,151.2782067,67.85550165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.640302793,1.184301919,0.547594701,-0.547594701,1,0.436509481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988321168,171.2348186,0.988321168,8.76518135,0,0.999409158,0,0,0,12,2,0% -2018-12-15 11:00:00,139.8568846,81.64708945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.440963118,1.425010536,0.825999937,-0.825999937,1,0.388899381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934295209,159.1145778,0.934295209,20.88542222,0,0.996483724,0,0,0,12,3,0% -2018-12-15 12:00:00,128.0511805,91.5611521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234914711,1.598043571,1.188189571,-1.188189571,1,0.326961306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829675171,146.0653846,0.829675171,33.93461535,0,0.989735451,0,0,0,12,4,0% -2018-12-15 13:00:00,116.2848867,100.0423617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029554143,1.746068604,1.752684556,-1.752684556,1,0.230426978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681587281,132.9678037,0.681587281,47.03219633,0,0.976641824,0,0,0,12,5,0% -2018-12-15 14:00:00,104.8129473,108.1927567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829331029,1.88831983,2.971925419,-2.971925419,1,0.021924511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500117829,120.0077958,0.500117829,59.99220417,0,0.95002356,0,0,0,12,6,0% -2018-12-15 15:00:00,93.87625403,116.6828087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638449722,2.036499191,10.1249864,-10.1249864,1,0,#DIV/0!,0,0,0.545727307,1,0.098446291,0,0.951399835,0.990161799,0.724496596,1,0,0,0.074142952,0.312029739,0.811353842,0.535850438,0.961238037,0.922476074,0,0,0,0,0,0,-0.297626515,107.3151017,0.297626515,72.68489826,0,0.882004215,0,0,0,12,7,0% -2018-12-15 16:00:00,83.63343355,126.0452741,51.12002918,267.9146,21.41124059,21.15097706,0,21.15097706,20.76561269,0.385364373,35.98753061,22.94725978,13.04027082,0.645627903,12.39464292,1.45967878,2.19990504,-5.005842783,5.005842783,0.613796777,0.613796777,0.418842496,0.298871305,9.612728517,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.96069678,0.467755218,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216531243,9.240120289,20.17722802,9.707875507,0,22.94725978,-0.085651397,94.91348378,0.085651397,85.08651622,0,0,20.17722802,9.707875507,26.53083838,12,8,31% -2018-12-15 17:00:00,74.82343984,136.7602465,202.9542542,591.6186035,48.07183687,116.6373015,68.48505294,48.15224851,46.62229362,1.529954896,50.6581519,0,50.6581519,1.449543248,49.20860865,1.305915383,2.386916588,-1.454645718,1.454645718,0.778912758,0.778912758,0.236860454,1.271820268,40.90611166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.81512199,1.050189149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921429454,39.32051047,45.73655144,40.37069961,68.48505294,0,0.115758789,83.35260725,-0.115758789,96.64739275,0.618067353,0,88.06492686,40.37069961,114.4867423,12,9,30% -2018-12-15 18:00:00,67.70487279,149.2010372,334.6350439,720.2553532,61.38638834,276.1227423,214.0647598,62.05798255,59.53536224,2.522620311,82.98716676,0,82.98716676,1.8510261,81.13614066,1.18167295,2.604049346,-0.456950188,0.456950188,0.608296774,0.608296774,0.183442797,1.715765021,55.18490098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.22765472,1.341062108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243065917,53.04582588,58.47072064,54.38688799,214.0647598,0,0.29720676,72.71008836,-0.29720676,107.2899116,0.881766949,0,247.2259507,54.38688799,282.8210812,12,10,14% -2018-12-15 19:00:00,62.94405812,163.4230391,421.0969274,775.3525754,68.41987254,415.0400772,345.5089097,69.53116746,66.35676094,3.174406511,104.1629369,0,104.1629369,2.0631116,102.0998253,1.098581059,2.852270106,0.116900789,-0.116900789,0.510162477,0.510162477,0.162480104,1.872110458,60.21350767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.78464262,1.494717331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356337654,57.87951391,65.14098028,59.37423124,345.5089097,0,0.445615222,63.53729281,-0.445615222,116.4627072,0.937795574,0,389.1577067,59.37423124,428.0169536,12,11,10% -2018-12-15 20:00:00,61.12004404,178.8801189,453.5225828,792.3220729,70.84996913,508.5108807,436.3784548,72.13242595,68.71358115,3.418844798,112.0981889,0,112.0981889,2.136387978,109.9618009,1.066746007,3.122047041,0.586665659,-0.586665659,0.429827953,0.429827953,0.15622148,1.774042238,57.05929661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05010785,1.547805817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285287563,54.84756626,67.33539541,56.39537208,436.3784548,0,0.550758927,56.58090587,-0.550758927,123.4190941,0.959216179,0,485.9166693,56.39537208,522.8263124,12,12,8% -2018-12-15 21:00:00,62.49773505,194.428359,429.0724091,779.6853665,69.02643352,542.2418192,472.0622583,70.17956093,66.94503187,3.234529061,106.1149749,0,106.1149749,2.081401651,104.0335732,1.090791252,3.393415024,1.085971089,-1.085971089,0.344441696,0.344441696,0.160873624,1.455226709,46.80509328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.35011101,1.507968411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054306797,44.99083598,65.40441781,46.49880439,472.0622583,0,0.605452249,52.73860764,-0.605452249,127.2613924,0.967417104,0,522.0855207,46.49880439,552.5180582,12,13,6% -2018-12-15 22:00:00,66.87453748,208.8735217,349.8716882,731.1998169,62.69599397,506.5419909,443.0990319,63.442959,60.80547843,2.637480572,86.72095703,0,86.72095703,1.890515542,84.83044149,1.167180865,3.645530673,1.763819759,-1.763819759,0.228522746,0.228522746,0.179197106,0.967346738,31.11319633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.44853872,1.369672075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700839419,29.90718776,59.14937813,31.27685984,443.0990319,0,0.605988981,52.69995818,-0.605988981,127.3000418,0.967490249,0,487.8433708,31.27685984,508.3134501,12,14,4% -2018-12-15 23:00:00,73.69999442,221.572355,223.7072309,617.1760166,50.48641184,391.5968816,340.9464217,50.65045984,48.96406024,1.686399601,55.76275971,0,55.76275971,1.522351592,54.24040812,1.286307561,3.867167126,3.0073773,-3.0073773,0.015861882,0.015861882,0.225680733,0.401300529,12.90720448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.06611714,1.102938546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.290740867,12.4068959,47.35685801,13.50983444,340.9464217,0,0.552429797,56.46613257,-0.552429797,123.5338674,0.959490762,0,374.4918,13.50983444,383.3337164,12,15,2% -2018-12-15 00:00:00,82.31423999,232.5108729,71.26793199,334.1255129,26.5820235,176.3246399,150.0069147,26.31772519,25.78047741,0.537247775,18.08128131,0,18.08128131,0.801546086,17.27973522,1.436654509,4.058080279,7.06749316,-7.06749316,0,0,0.372987159,0.200386521,6.445119353,0.404215351,1,0.140559828,0,0.946497645,0.985259608,0.724496596,1,24.9965299,0.580717411,0.058026882,0.312029739,0.848661619,0.573158215,0.961238037,0.922476074,0.137168766,6.195293874,25.13369867,6.776011285,89.37181699,0,0.448953788,63.32342013,-0.448953788,116.6765799,0.938629963,0,109.0207639,6.776011285,113.4555278,12,16,4% -2018-12-15 01:00:00,92.39078669,242.0337378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612523426,4.224285625,-23.72019648,23.72019648,1,0,#DIV/0!,0,0,1,0.721180225,0,0.042133217,0.961238037,1,0.611971442,0.887474846,0,0,0.115824807,0.184416033,0.724496596,0.448993192,0.979725915,0.940963952,0,0,0,0,0,0,0.299225489,72.58890988,-0.299225489,107.4110901,0.882901936,0,0,0,0,12,17,0% -2018-12-15 02:00:00,103.230227,250.6122724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801707349,4.374009299,-4.253184237,4.253184237,1,0.742508969,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117861092,83.23132386,-0.117861092,96.76867614,0.62577179,0,0,0,0,12,18,0% -2018-12-15 03:00:00,114.6422933,258.7692165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00088548,4.516374831,-2.154454106,2.154454106,1,0.898587041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08456864,94.85122043,0.08456864,85.14877957,0,0,0,0,0,12,19,0% -2018-12-15 04:00:00,126.3822563,267.143298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205786488,4.662530125,-1.296945053,1.296945053,1,0.751944356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294278131,107.114256,0.294278131,72.885744,0,0.880092709,0,0,0,12,20,0% -2018-12-15 05:00:00,138.2037338,276.7407096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412110193,4.830036556,-0.798375851,0.798375851,1,0.666684001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49698711,119.8008682,0.49698711,60.19913184,0,0.949393769,0,0,0,12,21,0% -2018-12-15 06:00:00,149.7265397,289.7043196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613221096,5.056294235,-0.44909473,0.44909473,1,0.606953412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678892988,132.7571977,0.678892988,47.24280229,0,0.97635069,0,0,0,12,22,0% -2018-12-15 07:00:00,159.9608461,311.9052853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791843439,5.443774183,-0.171769227,0.171769227,1,0.559527957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827610565,145.854062,0.827610565,34.14593804,0,0.989585112,0,0,0,12,23,0% -2018-12-16 08:00:00,165.4314012,355.8772411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887322636,6.211229589,0.071101431,-0.071101431,1,0.517994629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933015072,158.9097961,0.933015072,21.09020386,0,0.996410298,0,0,0,12,0,0% -2018-12-16 09:00:00,161.2382589,43.17797646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814138498,0.753597854,0.303137165,-0.303137165,1,0.478314181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987931292,171.0894243,0.987931292,8.910575684,0,0.999389193,0,0,0,12,1,0% -2018-12-16 10:00:00,151.3949966,67.79349093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642341161,1.183219628,0.544926654,-0.544926654,1,0.436965743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988621907,171.3486275,0.988621907,8.651372484,0,0.999424548,0,0,0,12,2,0% -2018-12-16 11:00:00,139.9758503,81.6180779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.443039462,1.424504189,0.822611745,-0.822611745,1,0.389478796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935041852,159.2349075,0.935041852,20.7650925,0,0.996526458,0,0,0,12,3,0% -2018-12-16 12:00:00,128.1703114,91.53961818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236993937,1.597667733,1.183288638,-1.183288638,1,0.327799415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830841415,146.1852689,0.830841415,33.81473112,0,0.989820044,0,0,0,12,4,0% -2018-12-16 13:00:00,116.4034219,100.0198705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031622974,1.745676058,1.743985902,-1.743985902,1,0.231914535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683117814,133.087763,0.683117814,46.91223696,0,0.976806183,0,0,0,12,5,0% -2018-12-16 14:00:00,104.9300721,108.1650633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831375243,1.88783649,2.948654892,-2.948654892,1,0.025904005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501932121,120.1279106,0.501932121,59.87208936,0,0.950384937,0,0,0,12,6,0% -2018-12-16 15:00:00,93.99069523,116.6464493,0,0,0,0,0,0,0,0,0,0,0,0,0,1.640447098,2.035864602,9.840347268,-9.840347268,1,0,#DIV/0!,0,0,0.535455176,1,0.101274759,0,0.951083406,0.989845369,0.724496596,1,0,0,0.07303189,0.312029739,0.813859482,0.538356078,0.961238037,0.922476074,0,0,0,0,0,0,-0.299624346,107.4350419,0.299624346,72.56495812,0,0.883124375,0,0,0,12,7,0% -2018-12-16 16:00:00,83.74116776,125.9964255,49.50315063,261.5808657,20.98557612,20.72595923,0,20.72595923,20.35278357,0.37317566,35.57276639,22.93736184,12.63540455,0.632792549,12.002612,1.461559097,2.19905247,-5.099162675,5.099162675,0.597838136,0.597838136,0.42392405,0.286719898,9.221897528,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.56386973,0.458456047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.20772759,8.864438676,19.77159732,9.322894723,0,22.93736184,-0.087687461,95.03058227,0.087687461,84.96941773,0,0.479793044,19.77159732,20.32808137,33.07592001,12,8,67% -2018-12-16 17:00:00,74.92471489,136.6945067,200.9934911,588.5464766,47.91960226,114.9340505,66.94422724,47.98982329,46.47464945,1.515173836,50.17815175,0,50.17815175,1.444952813,48.73319894,1.307682966,2.385769211,-1.468801953,1.468801953,0.781333617,0.781333617,0.238413702,1.262846905,40.61749747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.6732008,1.046863394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914928284,39.04308353,45.58812908,40.08994692,66.94422724,0,0.113745014,83.46875532,-0.113745014,96.53124468,0.610420292,0,86.45224386,40.08994692,112.6903123,12,9,30% -2018-12-16 18:00:00,67.79359505,149.1143269,332.8954131,718.5026614,61.34143833,274.2123063,212.2110324,62.00127388,59.49176764,2.50950624,82.56401773,0,82.56401773,1.849670692,80.71434704,1.183221445,2.602535967,-0.462614711,0.462614711,0.609265465,0.609265465,0.184266397,1.709638039,54.98783619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18574994,1.34008012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23862694,52.85639971,58.42437688,54.19647983,212.2110324,0,0.295351769,72.8213678,-0.295351769,107.1786322,0.880710342,0,245.3208278,54.19647983,280.7913399,12,10,14% -2018-12-16 19:00:00,63.01407426,163.3141808,419.7293453,774.1720528,68.43204097,413.284816,343.7521564,69.53265954,66.36856245,3.1640971,103.8317178,0,103.8317178,2.063478523,101.7682392,1.099803071,2.850370171,0.113529639,-0.113529639,0.510738978,0.510738978,0.163038495,1.868422621,60.09489416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79598667,1.494983165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353665829,57.76549809,65.1496525,59.26048125,343.7521564,0,0.444025531,63.63899067,-0.444025531,116.3610093,0.937393862,0,387.3808141,59.26048125,426.1656139,12,11,10% -2018-12-16 20:00:00,61.1657186,178.7539758,452.6003713,791.4489109,70.90205062,507.0938191,434.9178341,72.17598497,68.76409219,3.411892778,111.8761585,0,111.8761585,2.137958427,109.7382,1.067543179,3.119845429,0.583987793,-0.583987793,0.430285895,0.430285895,0.156654866,1.772595606,57.01276795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09866098,1.548943602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284239483,54.80284114,67.38290047,56.35178474,434.9178341,0,0.549521047,56.66583901,-0.549521047,123.334161,0.959011674,0,484.4741807,56.35178474,521.3552968,12,12,8% -2018-12-16 21:00:00,62.51640315,194.2953306,428.6247285,779.0220585,69.11021404,541.276146,471.0187057,70.25744035,67.0262861,3.231154255,106.0089558,0,106.0089558,2.083927943,103.9250279,1.091117072,3.39109324,1.083151133,-1.083151133,0.344923937,0.344923937,0.161237114,1.455785274,46.82305864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.42821566,1.509798701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054711475,45.00810497,65.48292714,46.51790367,471.0187057,0,0.604628201,52.79790777,-0.604628201,127.2020922,0.967304552,0,521.1014652,46.51790367,551.5465028,12,13,6% -2018-12-16 22:00:00,66.86764454,208.7439173,349.8882154,730.754955,62.80639191,506.1042852,442.5541326,63.55015262,60.91254746,2.637605161,86.72829314,0,86.72829314,1.893844447,84.8344487,1.16706056,3.64326865,1.759745309,-1.759745309,0.229219518,0.229219518,0.179504165,0.969525168,31.18326212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.55145754,1.372083855,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.702417684,29.97453766,59.25387522,31.34662152,442.5541326,0,0.605612223,52.72709016,-0.605612223,127.2729098,0.967438919,0,487.3979667,31.34662152,507.9137035,12,14,4% -2018-12-16 23:00:00,73.67177008,221.4516031,224.1319187,617.1614466,50.62341143,391.7697692,340.9832393,50.78652988,49.0969288,1.689601077,55.86986123,0,55.86986123,1.526482635,54.34337859,1.285814954,3.865059607,2.998455799,-2.998455799,0.017387548,0.017387548,0.225864356,0.404363232,13.00571152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.19383545,1.105931473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292959785,12.50158461,47.48679524,13.60751608,340.9832393,0,0.552502495,56.46113542,-0.552502495,123.5388646,0.959502671,0,374.6611242,13.60751608,383.5669713,12,15,2% -2018-12-16 00:00:00,82.2699209,232.3994272,71.90951325,335.5475489,26.77621619,177.3198994,150.8090007,26.51089876,25.96881448,0.542084286,18.24269574,0,18.24269574,0.807401712,17.43529403,1.435880995,4.056135184,7.022161594,-7.022161594,0,0,0.372359859,0.201850428,6.49220362,0.401450883,1,0.141455194,0,0.946389009,0.985150972,0.724496596,1,25.17910148,0.584959792,0.057693749,0.312029739,0.849454598,0.573951193,0.961238037,0.922476074,0.13817717,6.240553062,25.31727865,6.825512854,90.26659412,0,0.449441521,63.29214185,-0.449441521,116.7078582,0.938750821,0,110.055118,6.825512854,114.5222797,12,16,4% -2018-12-16 01:00:00,92.33361374,241.9291036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61152557,4.222459414,-24.29575116,24.29575116,1,0,#DIV/0!,0,0,1,0.728627505,0,0.041136241,0.961238037,1,0.614472763,0.889976167,0,0,0.115824807,0.18724502,0.724496596,0.448993192,0.979354186,0.940592223,0,0,0,0,0,0,0.300089245,72.53703655,-0.300089245,107.4629634,0.883382899,0,0,0,0,12,17,0% -2018-12-16 02:00:00,103.1642985,250.5104306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800556679,4.372231824,-4.275333672,4.275333672,1,0.738721193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119009455,83.1650611,-0.119009455,96.8349389,0.629865316,0,0,0,0,12,18,0% -2018-12-16 03:00:00,114.5705564,258.6648092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999633435,4.514552579,-2.16219535,2.16219535,1,0.899910871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08323682,94.77464278,0.08323682,85.22535722,0,0,0,0,0,12,19,0% -2018-12-16 04:00:00,126.3075538,267.0284573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204482683,4.660525776,-1.301293717,1.301293717,1,0.752688021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292876454,107.0302438,0.292876454,72.96975618,0,0.87927955,0,0,0,12,20,0% -2018-12-16 05:00:00,138.1296828,276.6014012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41081776,4.827605166,-0.801433133,0.801433133,1,0.667206827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495633815,119.7115535,0.495633815,60.2884465,0,0.94911907,0,0,0,12,21,0% -2018-12-16 06:00:00,149.6598919,289.5096067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612057872,5.052895854,-0.451563464,0.451563464,1,0.60737559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677702838,132.6643945,0.677702838,47.33560552,0,0.976221351,0,0,0,12,22,0% -2018-12-16 07:00:00,159.9200481,311.58047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79113138,5.438105087,-0.173974654,0.173974654,1,0.559905108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826686958,145.7598976,0.826686958,34.24010244,0,0.989517614,0,0,0,12,23,0% -2018-12-17 08:00:00,165.4639014,355.4234484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887889872,6.203309414,0.068958311,-0.068958311,1,0.518361124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932442941,158.8188846,0.932442941,21.18111544,0,0.996377416,0,0,0,12,0,0% -2018-12-17 09:00:00,161.3358576,42.96859786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815841917,0.749943508,0.300883601,-0.300883601,1,0.478699563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987771267,171.0304238,0.987771267,8.969576212,0,0.999380994,0,0,0,12,1,0% -2018-12-17 10:00:00,151.5076599,67.71730316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644307507,1.181889901,0.542351896,-0.542351896,1,0.437406053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988906144,171.4575745,0.988906144,8.542425547,0,0.999439085,0,0,0,12,2,0% -2018-12-17 11:00:00,140.0913594,81.57815864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445055475,1.423807466,0.819367127,-0.819367127,1,0.390033659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935771821,159.3531979,0.935771821,20.64680211,0,0.996568171,0,0,0,12,3,0% -2018-12-17 12:00:00,128.2861044,91.50914305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239014907,1.597135842,1.178626486,-1.178626486,1,0.32859669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831987791,146.3034769,0.831987791,33.69652307,0,0.989902964,0,0,0,12,4,0% -2018-12-17 13:00:00,116.518446,99.98964689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033630523,1.745148556,1.735759765,-1.735759765,1,0.233321288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684622483,133.2059248,0.684622483,46.79407517,0,0.976967049,0,0,0,12,5,0% -2018-12-17 14:00:00,105.0433184,108.1304248,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833351764,1.887231934,2.926805218,-2.926805218,1,0.029640519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503712167,120.2459004,0.503712167,59.75409957,0,0.950736962,0,0,0,12,6,0% -2018-12-17 15:00:00,94.10073698,116.603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.642367689,2.035118781,9.582979022,-9.582979022,1,0,#DIV/0!,0,0,0.525758935,1,0.103975368,0,0.950779548,0.989541512,0.724496596,1,0,0,0.071975059,0.312029739,0.816251958,0.540748554,0.961238037,0.922476074,0,0,0,0,0,0,-0.301577739,107.5523905,0.301577739,72.44760955,0,0.884205269,0,0,0,12,7,0% -2018-12-17 16:00:00,83.84389233,125.9417268,47.86990269,254.2012263,20.60993789,20.34933577,0,20.34933577,19.98847222,0.360863547,35.02190947,22.79383168,12.2280778,0.62146567,11.60661213,1.463351979,2.198097799,-5.192260669,5.192260669,0.581917441,0.581917441,0.430540626,0.274948781,8.843297933,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.2136798,0.450249762,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.199199456,8.500514344,19.41287925,8.950764107,0,22.79383168,-0.089668457,95.14453395,0.089668457,84.85546605,0,0.492390314,19.41287925,20.17422605,32.61650672,12,8,68% -2018-12-17 17:00:00,75.02021218,136.6235706,198.9500842,584.2890461,47.92405641,113.3012588,65.32251972,47.97873906,46.47896928,1.499769772,49.6828384,0,49.6828384,1.445087122,48.23775128,1.309349708,2.384531143,-1.482859172,1.482859172,0.783737543,0.783737543,0.240884826,1.253555399,40.31865069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.67735319,1.0469607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908196619,38.75582063,45.58554981,39.80278134,65.32251972,0,0.111798296,83.58101015,-0.111798296,96.41898985,0.602765992,0,84.95974321,39.80278134,111.0098675,12,9,31% -2018-12-17 18:00:00,67.87576742,149.0234113,331.0567664,715.7280325,61.50207056,272.2631314,210.1199294,62.14320196,59.64755622,2.495645744,82.12306021,0,82.12306021,1.854514346,80.26854587,1.184655624,2.600949189,-0.468349719,0.468349719,0.610246209,0.610246209,0.185774999,1.703659353,54.79554108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.33549984,1.343589331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234295402,52.67155833,58.56979524,54.01514767,210.1199294,0,0.293575101,72.92788615,-0.293575101,107.0721138,0.879685829,0,243.4093195,54.01514767,278.7611534,12,10,15% -2018-12-17 19:00:00,63.07689214,163.2026014,418.2594588,772.0677974,68.67152865,411.4124598,341.6586146,69.75384517,66.60082869,3.153016474,103.4825482,0,103.4825482,2.07069996,101.4118482,1.10089945,2.848422742,0.110009567,-0.110009567,0.511340946,0.511340946,0.164184042,1.865232997,59.99230487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.01924983,1.500215072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351354957,57.66688536,65.37060478,59.16710043,341.6586146,0,0.44252411,63.7349595,-0.44252411,116.2650405,0.937011806,0,385.5087603,59.16710043,424.2324442,12,11,10% -2018-12-17 20:00:00,61.20383786,178.6270204,451.5770628,789.6875408,71.18854241,505.4945278,433.0484039,72.44612384,69.0419452,3.404178646,111.6366843,0,111.6366843,2.146597211,109.490087,1.068208485,3.117629638,0.581089982,-0.581089982,0.43078145,0.43078145,0.157644283,1.771927751,56.99128745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.36574386,1.555202372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283755624,54.78219326,67.64949949,56.33739564,433.0484039,0,0.548379431,56.74409398,-0.548379431,123.255906,0.958822255,0,482.8659466,56.33739564,519.7376453,12,12,8% -2018-12-17 21:00:00,62.52754653,194.1634612,428.0794429,777.4510418,69.42409181,540.0650241,469.5072812,70.55774295,67.33069929,3.227043662,105.8862096,0,105.8862096,2.093392516,103.7928171,1.09131156,3.388791685,1.080006126,-1.080006126,0.345461765,0.345461765,0.16217572,1.457371559,46.87407902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72082921,1.516655751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055860733,45.05714769,65.77668994,46.57380344,469.5072812,0,0.603905913,52.84984677,-0.603905913,127.1501532,0.967205646,0,519.8867831,46.57380344,550.3684059,12,13,6% -2018-12-17 22:00:00,66.85359155,208.6171125,349.8138386,729.3252945,63.12917491,505.3522917,441.4896498,63.86264184,61.22559736,2.637044478,86.71999273,0,86.71999273,1.903577545,84.81641518,1.166815289,3.64105549,1.755133093,-1.755133093,0.230008254,0.230008254,0.180465059,0.972976744,31.29427669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.85237301,1.379135452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704918339,30.08124909,59.55729135,31.46038454,441.4896498,0,0.60533983,52.74670024,-0.60533983,127.2532998,0.967401768,0,486.6551589,31.46038454,507.2453514,12,14,4% -2018-12-17 23:00:00,73.63693902,221.3348278,224.4811348,616.0272711,50.93213244,391.5539242,340.4653499,51.08857434,49.39634073,1.692233616,55.96384181,0,55.96384181,1.535791713,54.4280501,1.285207037,3.863021495,2.988390112,-2.988390112,0.019108882,0.019108882,0.226888253,0.408947805,13.15316717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.48164159,1.112675868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296281293,12.64332459,47.77792288,13.75600046,340.4653499,0,0.552679022,56.44900007,-0.552679022,123.5509999,0.959531576,0,374.4651767,13.75600046,383.4682039,12,15,2% -2018-12-17 00:00:00,82.21962994,232.2927784,72.51938973,335.8638412,27.05144361,177.9308533,151.1484287,26.78242456,26.23574277,0.546681792,18.39886647,0,18.39886647,0.815700834,17.58316564,1.435003252,4.054273811,6.972082813,-6.972082813,0,0,0.373023597,0.203925208,6.558935693,0.398366936,1,0.142457589,0,0.946267171,0.985029134,0.724496596,1,25.43785217,0.590972477,0.057321241,0.312029739,0.850342345,0.574838941,0.961238037,0.922476074,0.139605238,6.304698469,25.57745741,6.895670947,90.93589225,0,0.450028881,63.25446304,-0.450028881,116.745537,0.93889602,0,110.9568047,6.895670947,115.4698834,12,16,4% -2018-12-17 01:00:00,92.27093726,241.829913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610431659,4.220728212,-24.9608647,24.9608647,1,0,#DIV/0!,0,0,1,0.736752944,0,0.040041301,0.961238037,1,0.617228912,0.892732316,0,0,0.115824807,0.190362642,0.724496596,0.448993192,0.978942476,0.940180513,0,0,0,0,0,0,0.301047664,72.47946091,-0.301047664,107.5205391,0.883913343,0,0,0,0,12,17,0% -2018-12-17 02:00:00,103.0933136,250.4146778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799317759,4.370560622,-4.299404224,4.299404224,1,0.734604886,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.120243967,83.09381716,-0.120243967,96.90618284,0.634178724,0,0,0,0,12,18,0% -2018-12-17 03:00:00,114.4940855,258.5672933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998298765,4.512850606,-2.170408519,2.170408519,1,0.901315406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.081829129,94.69371186,0.081829129,85.30628814,0,0,0,0,0,12,19,0% -2018-12-17 04:00:00,126.2282712,266.9216507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203098941,4.65866165,-1.305817377,1.305817377,1,0.753461613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291410232,106.9424035,0.291410232,73.05759654,0,0.878420575,0,0,0,12,20,0% -2018-12-17 05:00:00,138.0509457,276.4718738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409443538,4.825344486,-0.804559559,0.804559559,1,0.667741477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494227577,119.6188288,0.494227577,60.38117124,0,0.948832031,0,0,0,12,21,0% -2018-12-17 06:00:00,149.5879676,289.3273285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610802557,5.049714499,-0.454050448,0.454050448,1,0.607800889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676470816,132.5684719,0.676470816,47.43152809,0,0.976086981,0,0,0,12,22,0% -2018-12-17 07:00:00,159.8723934,311.2700807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790299648,5.432687771,-0.176167106,0.176167106,1,0.560280039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825731259,145.6626999,0.825731259,34.33730011,0,0.989447611,0,0,0,12,23,0% -2018-12-18 08:00:00,165.4877952,354.9676465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888306899,6.19535417,0.066852785,-0.066852785,1,0.51872119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93184653,158.7245094,0.93184653,21.27549063,0,0.996343096,0,0,0,12,0,0% -2018-12-18 09:00:00,161.4273102,42.74146171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817438065,0.745979234,0.298692724,-0.298692724,1,0.479074226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987592269,170.9648808,0.987592269,9.035119187,0,0.999371819,0,0,0,12,1,0% -2018-12-18 10:00:00,151.6160766,67.62691401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646199736,1.180312312,0.539872019,-0.539872019,1,0.437830137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989173846,171.5614598,0.989173846,8.438540193,0,0.999452768,0,0,0,12,2,0% -2018-12-18 11:00:00,140.2033002,81.52732063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44700921,1.422920175,0.816267576,-0.816267576,1,0.390563713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936484654,159.4693401,0.936484654,20.53065986,0,0.996608842,0,0,0,12,3,0% -2018-12-18 12:00:00,128.3984518,91.46973448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240975739,1.596448033,1.174204091,-1.174204091,1,0.329352964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833113432,146.4199039,0.833113432,33.58009613,0,0.989984163,0,0,0,12,4,0% -2018-12-18 13:00:00,116.6298543,99.95171381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035574963,1.744486499,1.728004129,-1.728004129,1,0.23464758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686100071,133.322183,0.686100071,46.67781695,0,0.977124333,0,0,0,12,5,0% -2018-12-18 14:00:00,105.1525856,108.0888777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835258836,1.886506801,2.906346451,-2.906346451,1,0.033139175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505456474,120.3616588,0.505456474,59.6383412,0,0.951079514,0,0,0,12,6,0% -2018-12-18 15:00:00,94.20628485,116.5546615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644209847,2.034262602,9.350136036,-9.350136036,1,0,#DIV/0!,0,0,0.516631208,1,0.106545312,0,0.950488823,0.989250786,0.724496596,1,0,0,0.070972964,0.312029739,0.818528749,0.543025345,0.961238037,0.922476074,0,0,0,0,0,0,-0.303485019,107.6670422,0.303485019,72.33295778,0,0.885247222,0,0,0,12,7,0% -2018-12-18 16:00:00,83.94152881,125.8812418,46.32736193,247.1015235,20.24744357,19.98614367,0,19.98614367,19.63690845,0.349235223,34.47584904,22.63270865,11.84314039,0.610535129,11.23260526,1.465056057,2.197042137,-5.284817156,5.284817156,0.56608935,0.56608935,0.437051512,0.263927764,8.488824136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.87574332,0.442330623,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191214767,8.159780647,19.06695809,8.60211127,0,22.63270865,-0.091592752,95.2552436,0.091592752,84.7447564,0,0.504105279,19.06695809,20.01137918,32.16400554,12,8,69% -2018-12-18 17:00:00,75.10985997,136.5475151,197.0170714,580.1543775,47.93683929,111.7473217,63.77075711,47.97656462,46.49136672,1.485197905,49.21454252,0,49.21454252,1.445472573,47.76906995,1.310914357,2.383203724,-1.496786985,1.496786985,0.786119339,0.786119339,0.243313125,1.244832453,40.03809076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.68927008,1.047239958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901876874,38.48613576,45.59114695,39.53337572,63.77075711,0,0.109920324,83.68927738,-0.109920324,96.31072262,0.595125067,0,83.54272305,39.53337572,109.4165268,12,9,31% -2018-12-18 18:00:00,67.9513337,148.9283768,329.3401618,713.0361325,61.67067848,270.413563,208.1197778,62.29378524,59.81107999,2.482705253,81.71193368,0,81.71193368,1.859598497,79.85233519,1.185974504,2.599290524,-0.474145717,0.474145717,0.611237383,0.611237383,0.187255263,1.698257856,54.62181036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.49268511,1.347272781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230382035,52.50456176,58.72306714,53.85183454,208.1197778,0,0.291878305,73.02955908,-0.291878305,106.9704409,0.87869573,0,241.5970272,53.85183454,276.8419759,12,10,15% -2018-12-18 19:00:00,63.13247403,163.088392,416.9193741,770.0325902,68.9191734,409.6547393,339.6708189,69.98392038,66.84100603,3.142914349,103.1650965,0,103.1650965,2.078167363,101.0869292,1.101869537,2.846429412,0.106345748,-0.106345748,0.511967496,0.511967496,0.165305759,1.862623294,59.90836787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25011742,1.50562518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349464236,57.58620192,65.59958166,59.0918271,339.6708189,0,0.441112264,63.82513052,-0.441112264,116.1748695,0.93665017,0,383.752312,59.0918271,422.426731,12,11,10% -2018-12-18 20:00:00,61.23438336,178.4993444,450.6877884,787.9933027,71.4835733,504.021911,431.2963563,72.72555474,69.32807982,3.39747492,111.4299657,0,111.4299657,2.155493481,109.2744722,1.068741605,3.115401273,0.577976608,-0.577976608,0.431313868,0.431313868,0.158609963,1.771827863,56.9880747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.64078734,1.56164769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283683255,54.77910505,67.9244706,56.34075273,431.2963563,0,0.547335053,56.81562211,-0.547335053,123.1843779,0.958648277,0,481.3859796,56.34075273,518.2598754,12,12,8% -2018-12-18 21:00:00,62.53116589,194.0328428,427.6687029,775.9547429,69.74711765,538.9905431,468.1226111,70.86793204,67.64398471,3.22394733,105.7963613,0,105.7963613,2.103132936,103.6932284,1.09137473,3.386511964,1.076541602,-1.076541602,0.346054233,0.346054233,0.163086794,1.459494341,46.94235499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02197107,1.523712653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.057398682,45.12277716,66.07936975,46.64648981,468.1226111,0,0.603285972,52.89439768,-0.603285972,127.1056023,0.967120566,0,518.8103742,46.64648981,549.3395689,12,13,6% -2018-12-18 22:00:00,66.83239812,208.4931994,349.8703466,727.9917743,63.46228086,504.7463457,440.5602163,64.1861294,61.54865894,2.637470458,86.74373811,0,86.74373811,1.913621919,84.83011619,1.166445394,3.638892797,1.749993334,-1.749993334,0.230887204,0.230887204,0.181387996,0.976905956,31.42065365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.16291209,1.386412566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70776504,30.20272743,59.87067713,31.58913999,440.5602163,0,0.60517197,52.75878226,-0.60517197,127.2412177,0.967378857,0,486.0593156,31.58913999,506.7337759,12,14,4% -2018-12-18 23:00:00,73.59553881,221.2221194,224.951782,615.0414507,51.25414304,391.4972058,340.0927827,51.40442307,49.70864152,1.695781553,56.08766546,0,56.08766546,1.54550152,54.54216394,1.284484467,3.861054363,2.977210496,-2.977210496,0.021020709,0.021020709,0.227845019,0.413900027,13.31244763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.78183699,1.11971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29986916,12.79643102,48.08170615,13.91614161,340.0927827,0,0.552959126,56.42974085,-0.552959126,123.5702592,0.959577403,0,374.4270555,13.91614161,383.5348919,12,15,2% -2018-12-18 00:00:00,82.16341853,232.1910127,73.22422493,336.4552423,27.34919035,178.7220196,151.6455131,27.07650649,26.52451135,0.551995138,18.57874009,0,18.57874009,0.824678997,17.7540611,1.434022178,4.052497666,6.917514062,-6.917514062,0,0,0.373499213,0.206169749,6.631127839,0.394970103,1,0.143566045,0,0.946132176,0.984894139,0.724496596,1,25.71775036,0.597477126,0.056909868,0.312029739,0.851323997,0.575820593,0.961238037,0.922476074,0.141151274,6.374092306,25.85890164,6.971569432,91.75006916,0,0.450715263,63.21041624,-0.450715263,116.7895838,0.939065217,0,112.0182002,6.971569432,116.580953,12,16,4% -2018-12-18 01:00:00,92.20282602,241.7362475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609242894,4.219093441,-25.72737571,25.72737571,1,0,#DIV/0!,0,0,1,0.745533739,0,0.038849546,0.961238037,1,0.620239527,0.895742931,0,0,0.115824807,0.193768619,0.724496596,0.448993192,0.97849023,0.939728267,0,0,0,0,0,0,0.302099743,72.41623771,-0.302099743,107.5837623,0.884491749,0,0,0,0,12,17,0% -2018-12-18 02:00:00,103.0173534,250.3250911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797992004,4.36899704,-4.325428791,4.325428791,1,0.730154423,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121563358,83.01766302,-0.121563358,96.98233698,0.638691848,0,0,0,0,12,18,0% -2018-12-18 03:00:00,114.4129722,258.4767439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996883071,4.511270222,-2.179093903,2.179093903,1,0.902800694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080347008,94.60851203,0.080347008,85.39148797,0,0,0,0,0,12,19,0% -2018-12-18 04:00:00,126.1445103,266.8229558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201637038,4.656939098,-1.310514073,1.310514073,1,0.754264795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289880978,106.8508305,0.289880978,73.14916954,0,0.877515415,0,0,0,12,20,0% -2018-12-18 05:00:00,137.9676348,276.3522183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407989488,4.823256105,-0.807753102,0.807753102,1,0.668287605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49276986,119.5227996,0.49276986,60.47720039,0,0.948532755,0,0,0,12,21,0% -2018-12-18 06:00:00,149.5108917,289.1576337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609457328,5.046752765,-0.456553825,0.456553825,1,0.608228992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675198235,132.4695461,0.675198235,47.53045385,0,0.975947674,0,0,0,12,22,0% -2018-12-18 07:00:00,159.8180094,310.9745708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789350468,5.427530151,-0.178344878,0.178344878,1,0.56065246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82474453,145.5625992,0.82474453,34.43740082,0,0.989375166,0,0,0,12,23,0% -2018-12-19 08:00:00,165.5030701,354.5110091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888573495,6.187384343,0.064786456,-0.064786456,1,0.519074553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931226576,158.6268301,0.931226576,21.37316988,0,0.996307374,0,0,0,12,0,0% -2018-12-19 09:00:00,161.5124836,42.49676466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818924622,0.741708465,0.296566072,-0.296566072,1,0.479437904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987394653,170.8930637,0.987394653,9.106936338,0,0.999361686,0,0,0,12,1,0% -2018-12-19 10:00:00,151.7201279,67.52231612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648015773,1.178486735,0.537488513,-0.537488513,1,0.438237741,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989424953,171.6600729,0.989424953,8.339927143,0,0.999465596,0,0,0,12,2,0% -2018-12-19 11:00:00,140.3115628,81.46556211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448898749,1.421842286,0.813314455,-0.813314455,1,0.391068726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937179876,159.5832219,0.937179876,20.41677808,0,0.996648449,0,0,0,12,3,0% -2018-12-19 12:00:00,128.5072485,91.42140643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242874599,1.595604549,1.170022261,-1.170022261,1,0.330068099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834217478,146.5344444,0.834217478,33.4655556,0,0.990063591,0,0,0,12,4,0% -2018-12-19 13:00:00,116.7375456,99.90609886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037454531,1.743690368,1.720716847,-1.720716847,1,0.235893778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687549384,133.4364331,0.687549384,46.56356689,0,0.977277951,0,0,0,12,5,0% -2018-12-19 14:00:00,105.2577776,108.0404621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837094783,1.885661788,2.88725002,-2.88725002,1,0.036404857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507163591,120.475082,0.507163591,59.524918,0,0.951412481,0,0,0,12,6,0% -2018-12-19 15:00:00,94.30724951,116.4993353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645972013,2.033296978,9.139467909,-9.139467909,1,0,#DIV/0!,0,0,0.508064634,1,0.108982037,0,0.950211755,0.988973718,0.724496596,1,0,0,0.070026032,0.312029739,0.820687565,0.545184161,0.961238037,0.922476074,0,0,0,0,0,0,-0.305344576,107.7788956,0.305344576,72.22110436,0,0.886250571,0,0,0,12,7,0% -2018-12-19 16:00:00,84.03400448,125.8150352,44.87469819,240.2912609,19.89925563,19.63750408,0,19.63750408,19.29921965,0.33828443,33.93775836,22.45733227,11.48042609,0.600035978,10.88039012,1.466670062,2.195886613,-5.376493772,5.376493772,0.550411725,0.550411725,0.443440434,0.253638002,8.157870012,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.55114401,0.434724023,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.183759869,7.841654955,18.73490388,8.276378978,0,22.45733227,-0.093458797,95.36262073,0.093458797,84.63737927,0,0.515004885,18.73490388,19.84201481,31.72110573,12,8,69% -2018-12-19 17:00:00,75.19359233,136.4664163,195.1954199,576.1482017,47.95851094,110.2727842,62.28893381,47.98385041,46.51238488,1.471465526,48.7735155,0,48.7735155,1.446126053,47.32738945,1.312375763,2.381788282,-1.51055483,1.51055483,0.788473779,0.788473779,0.245694858,1.236685379,39.77605287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.70947353,1.047713402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.895974347,38.23425497,45.60544788,39.28196838,62.28893381,0,0.108112693,83.79346799,-0.108112693,96.20653201,0.587519615,0,82.2014183,39.28196838,107.910681,12,9,31% -2018-12-19 18:00:00,68.02024341,148.8293081,327.7465594,710.4298927,61.84758175,268.6647314,206.2113904,62.45334097,59.98264896,2.470692005,81.33088062,0,81.33088062,1.864932783,79.46594783,1.187177206,2.59756145,-0.479993069,0.479993069,0.612237339,0.612237339,0.18870551,1.693437723,54.46677832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.65760374,1.351137453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226889865,52.35553906,58.8844936,53.70667651,206.2113904,0,0.290262829,73.12630814,-0.290262829,106.8736919,0.877742325,0,239.8849589,53.70667651,275.0349045,12,10,15% -2018-12-19 19:00:00,63.18078752,162.9716409,415.709762,768.0682045,69.17519329,408.0127316,337.7896299,70.22310177,67.08930599,3.133795782,102.879532,0,102.879532,2.085887307,100.7936447,1.102712766,2.844391721,0.102543604,-0.102543604,0.5126177,0.5126177,0.166402619,1.860595326,59.84314143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48879278,1.511218253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.34799498,57.52350379,65.83678776,59.03472204,337.7896299,0,0.43979119,63.90944098,-0.43979119,116.090559,0.936309683,0,382.1124889,59.03472204,420.7495338,12,11,10% -2018-12-19 20:00:00,61.2573413,178.3710361,449.9328315,786.3673544,71.78730539,502.6767407,429.6623037,73.014437,69.62265327,3.391783737,111.2560763,0,111.2560763,2.164652124,109.0914241,1.069142297,3.113161871,0.574652415,-0.574652415,0.431882339,0.431882339,0.15955116,1.772295769,57.00312416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.92394255,1.568283095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284022252,54.79357116,68.2079648,56.36185426,429.6623037,0,0.546388785,56.88038045,-0.546388785,123.1196195,0.958490069,0,480.0350159,56.36185426,516.9227223,12,12,8% -2018-12-19 21:00:00,62.5272658,193.9035634,427.3923717,774.5338513,70.07941813,538.0530206,466.8648913,71.18812934,67.96626511,3.221864229,105.7393817,0,105.7393817,2.113153022,103.6262287,1.091306661,3.384255613,1.07276366,-1.07276366,0.346700299,0.346700299,0.163969745,1.462151852,47.02782966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.33175924,1.530972171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.059324039,45.20493866,66.39108328,46.73591083,466.8648913,0,0.602768866,52.93153848,-0.602768866,127.0684615,0.967049465,0,517.8725266,46.73591083,548.4602455,12,13,6% -2018-12-19 22:00:00,66.80408703,208.3722658,350.0571988,726.7544521,63.80581173,504.2861691,439.765459,64.52071012,61.88183109,2.638879029,86.79940132,0,86.79940132,1.923980642,84.87542068,1.165951272,3.636782108,1.744337266,-1.744337266,0.231854449,0.231854449,0.182272531,0.981310136,31.56230719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.48316984,1.393917426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710955853,30.3388902,60.19412569,31.73280763,439.765459,0,0.605108724,52.76333404,-0.605108724,127.236666,0.967370221,0,485.610135,31.73280763,506.378623,12,14,4% -2018-12-19 23:00:00,73.5476094,221.1135636,225.5430166,614.2024256,51.58951202,391.5984314,339.864295,51.73413641,50.03389788,1.700238529,56.24112976,0,56.24112976,1.555614132,54.68551563,1.283647941,3.859159706,2.964949722,-2.964949722,0.023117425,0.023117425,0.22873469,0.419218222,13.48349906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.09448578,1.127037143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.303722175,12.96085217,48.39820795,14.08788931,339.864295,0,0.553342483,56.40337518,-0.553342483,123.5966248,0.959640048,0,374.5455964,14.08788931,383.7658382,12,15,2% -2018-12-19 00:00:00,82.1013396,232.0942113,74.02359391,337.3145049,27.66936662,179.6905566,152.2975024,27.39305425,26.83503313,0.558021119,18.78221085,0,18.78221085,0.834333493,17.94787736,1.432938696,4.050808163,6.858725371,-6.858725371,0,0,0.373791181,0.208583373,6.708758282,0.3912674,1,0.144779551,0,0.945984067,0.98474603,0.724496596,1,26.01870437,0.604471775,0.056460167,0.312029739,0.852398646,0.576895242,0.961238037,0.922476074,0.142815105,6.44871364,26.16151948,7.053185416,92.70845458,0,0.45150001,63.16003616,-0.45150001,116.8399638,0.939258031,0,113.23868,7.053185416,117.8548488,12,16,4% -2018-12-19 01:00:00,92.12934971,241.6481826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60796049,4.217556417,-26.61002407,26.61002407,1,0,#DIV/0!,0,0,1,0.754946155,0,0.037562148,0.961238037,1,0.623504352,0.899007756,0,0,0.115824807,0.197462805,0.724496596,0.448993192,0.97799682,0.939234857,0,0,0,0,0,0,0.303244447,72.34742321,-0.303244447,107.6525768,0.885116519,0,0,0,0,12,17,0% -2018-12-19 02:00:00,102.936499,250.241741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796580827,4.367542306,-4.353444698,4.353444698,1,0.725363421,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122966342,82.93667026,-0.122966342,97.06332974,0.643384669,0,0,0,0,12,18,0% -2018-12-19 03:00:00,114.3273076,258.3932279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995387943,4.509812592,-2.188252219,2.188252219,1,0.904366858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078791896,94.51912724,0.078791896,85.48087276,0,0,0,0,0,12,19,0% -2018-12-19 04:00:00,126.0563715,266.732439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200098725,4.655359283,-1.315381952,1.315381952,1,0.755097251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288290177,106.755619,0.288290177,73.24438095,0,0.876563636,0,0,0,12,20,0% -2018-12-19 05:00:00,137.8798604,276.2425104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406457536,4.821341341,-0.811011799,0.811011799,1,0.668844875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491262096,119.4235693,0.491262096,60.57643073,0,0.948221336,0,0,0,12,21,0% -2018-12-19 06:00:00,149.4287868,289.0006446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.608024327,5.044012789,-0.459071795,0.459071795,1,0.60865959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673886365,132.3677296,0.673886365,47.63227038,0,0.975803514,0,0,0,12,22,0% -2018-12-19 07:00:00,159.7570244,310.6943399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788286079,5.422639198,-0.180506327,0.180506327,1,0.56102209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823727793,145.4597202,0.823727793,34.54027979,0,0.989300336,0,0,0,12,23,0% -2018-12-20 08:00:00,165.5097239,354.0547064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888689626,6.179420358,0.062760853,-0.062760853,1,0.519420952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930583773,158.525998,0.930583773,21.47400198,0,0.996270286,0,0,0,12,0,0% -2018-12-20 09:00:00,161.5912475,42.23474809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820299311,0.737135413,0.2945051,-0.2945051,1,0.479790351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987178734,170.8152319,0.987178734,9.184768088,0,0.999350611,0,0,0,12,1,0% -2018-12-20 10:00:00,151.8196959,67.40351981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.649753563,1.176413348,0.535202758,-0.535202758,1,0.438628628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98965938,171.7531924,0.98965938,8.246807627,0,0.999477567,0,0,0,12,2,0% -2018-12-20 11:00:00,140.4160396,81.3928908,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450722214,1.420573932,0.810508991,-0.810508991,1,0.391548489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937857005,159.6947275,0.937857005,20.30527247,0,0.996686969,0,0,0,12,3,0% -2018-12-20 12:00:00,128.6123926,91.36417917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244709709,1.594605745,1.166081636,-1.166081636,1,0.330741985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835299078,146.6469931,0.835299078,33.3530069,0,0.990141201,0,0,0,12,4,0% -2018-12-20 13:00:00,116.8414229,99.85283414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039267532,1.742760723,1.713895639,-1.713895639,1,0.237060274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688969259,133.5485721,0.688969259,46.45142791,0,0.977427822,0,0,0,12,5,0% -2018-12-20 14:00:00,105.3588029,107.985221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838858007,1.88469765,2.869488674,-2.869488674,1,0.039442226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508832121,120.5860692,0.508832121,59.41393079,0,0.951735763,0,0,0,12,6,0% -2018-12-20 15:00:00,94.40354695,116.4377927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64765272,2.032222856,8.948953562,-8.948953562,1,0,#DIV/0!,0,0,0.50005187,1,0.111283246,0,0.949948836,0.988710799,0.724496596,1,0,0,0.069134615,0.312029739,0.822726347,0.547222943,0.961238037,0.922476074,0,0,0,0,0,0,-0.30715487,107.8878531,0.30715487,72.11214688,0,0.887215669,0,0,0,12,7,0% -2018-12-20 16:00:00,84.12125244,125.7431724,43.51094934,233.7787958,19.56649058,19.30449261,0,19.30449261,18.97648869,0.328003915,33.41070223,22.27096693,11.1397353,0.590001884,10.54973342,1.468192826,2.19463237,-5.466935469,5.466935469,0.534945284,0.534945284,0.44969119,0.244059937,7.849806531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.24092274,0.427454356,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176820594,7.545532619,18.41774333,7.972986976,0,22.27096693,-0.095265128,95.46657974,0.095265128,84.53342026,0,0.525148976,18.41774333,19.66856246,31.29042409,12,8,70% -2018-12-20 17:00:00,75.27134925,136.3803498,193.4859783,572.2759746,47.98962168,108.878082,60.8769454,48.00113656,46.54255752,1.458579033,48.35997969,0,48.35997969,1.447064156,46.91291553,1.313732877,2.380286139,-1.524132141,1.524132141,0.790795636,0.790795636,0.248026354,1.229120968,39.53275542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.73847662,1.048393055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890493958,38.00038821,45.62897058,39.04878127,60.8769454,0,0.106376902,83.89349841,-0.106376902,96.10650159,0.579973153,0,80.93596453,39.04878127,106.4926109,12,9,32% -2018-12-20 18:00:00,68.08245192,148.726288,326.2767982,707.91207,62.03308986,267.017638,204.3954624,62.62217565,60.16256332,2.459612325,80.98011376,0,80.98011376,1.870526537,79.10958722,1.188262949,2.59576341,-0.48588203,0.48588203,0.61324441,0.61324441,0.190124122,1.689202658,54.33056409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.83054426,1.355190109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223821576,52.22460477,59.05436584,53.57979487,204.3954624,0,0.288730015,73.21806087,-0.288730015,106.7819391,0.876827841,0,238.2739978,53.57979487,273.340902,12,10,15% -2018-12-20 19:00:00,63.22180551,162.8524331,414.6311755,766.1762721,69.43979613,406.4873772,336.0157822,70.47159501,67.34593007,3.125664942,102.625995,0,102.625995,2.093866059,100.5321289,1.103428665,2.842311152,0.098608785,-0.098608785,0.513290594,0.513290594,0.167473649,1.859150492,59.79667061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.73546961,1.516998832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346948203,57.47883427,66.08241781,58.9958331,336.0157822,0,0.438561979,63.98783431,-0.438561979,116.0121657,0.935991029,0,380.5901756,58.9958331,419.2017684,12,11,10% -2018-12-20 20:00:00,61.27270246,178.24218,449.3123684,784.8107189,72.09989022,501.4596504,428.1467314,73.31291894,69.92581251,3.387106424,111.1150634,0,111.1150634,2.17407771,108.9409857,1.0694104,3.110912907,0.571122493,-0.571122493,0.432485991,0.432485991,0.160467183,1.773330968,57.03641971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21535074,1.5751119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28477225,54.82557612,68.50012299,56.40068802,428.1467314,0,0.545541391,56.93833182,-0.545541391,123.0616682,0.958347926,0,478.813655,56.40068802,515.7267773,12,12,8% -2018-12-20 21:00:00,62.51585469,193.7757072,427.2502217,773.1889092,70.42110843,537.2526395,465.7341947,71.51844482,68.29765218,3.220792642,105.715219,0,105.715219,2.123456245,103.5917628,1.091107499,3.3820241,1.068678934,-1.068678934,0.347398828,0.347398828,0.164824042,1.465342099,47.13043898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.65030111,1.538436821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.061635362,45.30357064,66.71193647,46.84200746,465.7341947,0,0.602354986,52.96125205,-0.602354986,127.0387479,0.966992469,0,517.0733954,46.84200746,547.7305525,12,13,6% -2018-12-20 22:00:00,66.76868413,208.2543955,350.3737861,725.6131983,64.15985555,503.9713533,439.1048885,64.86646478,62.22519918,2.641265598,86.88683729,0,86.88683729,1.93465637,84.95218092,1.165333375,3.634724884,1.73817708,-1.73817708,0.232907903,0.232907903,0.18311831,0.986186534,31.71914892,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.81322831,1.401651954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714488787,30.48965244,60.52771709,31.89130439,439.1048885,0,0.605150085,52.76035736,-0.605150085,127.2396426,0.967375869,0,485.3071901,31.89130439,506.179411,12,14,4% -2018-12-20 23:00:00,73.49319307,221.0092416,226.2539589,613.5083596,51.93828649,391.856291,339.7785375,52.07775343,50.37215552,1.705597912,56.42402278,0,56.42402278,1.56613097,54.85789181,1.282698197,3.857338943,2.951642858,-2.951642858,0.025393033,0.025393033,0.229557471,0.424900843,13.66627168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.41963189,1.134656556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307839214,13.13654016,48.7274711,14.27119672,339.7785375,0,0.553828701,56.36992358,-0.553828701,123.6300764,0.959719377,0,374.8195175,14.27119672,384.1597304,12,15,2% -2018-12-20 00:00:00,82.03344748,232.0024502,74.91710872,338.4340692,28.01184235,180.8335607,153.1016219,27.73193876,27.16718195,0.564756811,19.00918077,0,19.00918077,0.8446604,18.16452037,1.431753755,4.049206628,6.795996704,-6.795996704,0,0,0.373904477,0.2111651,6.791795488,0.387266238,1,0.14609705,0,0.945822887,0.98458485,0.724496596,1,26.34058377,0.611953584,0.055972704,0.312029739,0.85356535,0.578061946,0.961238037,0.922476074,0.144596382,6.528532161,26.48518015,7.140485746,93.81053273,0,0.452382416,63.10335966,-0.452382416,116.8966403,0.939474042,0,114.6177405,7.140485746,119.2910456,12,16,4% -2018-12-20 01:00:00,92.0505788,241.5657877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606585678,4.216118356,-27.62728309,27.62728309,1,0,#DIV/0!,0,0,1,0.764965656,0,0.036180308,0.961238037,1,0.627023233,0.902526637,0,0,0.115824807,0.201445184,0.724496596,0.448993192,0.977461552,0.938699589,0,0,0,0,0,0,0.304480709,72.27307513,-0.304480709,107.7269249,0.885785984,0,0,0,0,12,17,0% -2018-12-20 02:00:00,102.8508314,250.1646908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795085647,4.366197527,-4.383493889,4.383493889,1,0.720224706,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124451627,82.85091098,-0.124451627,97.14908902,0.648237473,0,0,0,0,12,18,0% -2018-12-20 03:00:00,114.237182,258.3168039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993814955,4.50847874,-2.197884616,2.197884616,1,0.906014095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.077165222,94.42564106,0.077165222,85.57435894,0,0,0,0,0,12,19,0% -2018-12-20 04:00:00,125.9639535,266.6501567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198485727,4.653923185,-1.320419273,1.320419273,1,0.755958684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286639293,106.656862,0.286639293,73.34313804,0,0.875564739,0,0,0,12,20,0% -2018-12-20 05:00:00,137.7877306,276.1428107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404849567,4.819601253,-0.814333747,0.814333747,1,0.669412962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489705677,119.3212384,0.489705677,60.67876156,0,0.947897855,0,0,0,12,21,0% -2018-12-20 06:00:00,149.3417729,288.8564584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606505648,5.041496265,-0.461602614,0.461602614,1,0.609092386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672536432,132.2631309,0.672536432,47.73686906,0,0.975654585,0,0,0,12,22,0% -2018-12-20 07:00:00,159.6895667,310.4297337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787108719,5.418020949,-0.182649873,0.182649873,1,0.561388657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822682017,145.3541822,0.822682017,34.64581781,0,0.989223176,0,0,0,12,23,0% -2018-12-21 08:00:00,165.5077654,353.5998974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888655443,6.171482444,0.060777436,-0.060777436,1,0.519760136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929918767,158.4221558,0.929918767,21.5778442,0,0.996231863,0,0,0,12,0,0% -2018-12-21 09:00:00,161.6634741,41.95569889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.821559904,0.732265086,0.292511176,-0.292511176,1,0.480131332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986944792,170.7316347,0.986944792,9.268365304,0,0.999338605,0,0,0,12,1,0% -2018-12-21 10:00:00,151.9146642,67.2705535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.651411072,1.174092648,0.533016036,-0.533016036,1,0.439002579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989877017,171.8405869,0.989877017,8.159413094,0,0.999488675,0,0,0,12,2,0% -2018-12-21 11:00:00,140.5166252,81.30932404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452477763,1.419115417,0.807852284,-0.807852284,1,0.392002813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938515546,159.8037377,0.938515546,20.19626235,0,0.996724377,0,0,0,12,3,0% -2018-12-21 12:00:00,128.7137851,91.29807922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246479342,1.593452083,1.16238271,-1.16238271,1,0.331374539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836357387,146.7574443,0.836357387,33.24255573,0,0.990216945,0,0,0,12,4,0% -2018-12-21 13:00:00,116.941393,99.79195619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041012339,1.741698202,1.707538137,-1.707538137,1,0.23814747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690358558,133.6584985,0.690358558,46.34150146,0,0.977573868,0,0,0,12,5,0% -2018-12-21 14:00:00,105.4555746,107.9232009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840546991,1.883615195,2.853036537,-2.853036537,1,0.042255707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51046071,120.6945223,0.51046071,59.3054777,0,0.952049268,0,0,0,12,6,0% -2018-12-21 15:00:00,94.49509815,116.3700899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64925059,2.031041219,8.776849362,-8.776849362,1,0,#DIV/0!,0,0,0.492585649,1,0.113446888,0,0.949700519,0.988462482,0.724496596,1,0,0,0.068298996,0.312029739,0.824643264,0.54913986,0.961238037,0.922476074,0,0,0,0,0,0,-0.308914422,107.9938207,0.308914422,72.00617927,0,0.888142876,0,0,0,12,7,0% -2018-12-21 16:00:00,84.20321121,125.6657197,42.23504404,227.571345,19.2502158,18.98813637,0,18.98813637,18.66975077,0.318385602,32.89761868,22.07677824,10.82084044,0.580465032,10.24037541,1.469623276,2.193280566,-5.555772557,5.555772557,0.519753247,0.519753247,0.455787753,0.235173562,7.563990166,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.94607458,0.42054494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.170382445,7.270795058,18.11645702,7.691339998,0,22.07677824,-0.097010361,95.56703954,0.097010361,84.43296046,0,0.534591133,18.11645702,19.4933899,30.87449085,12,8,70% -2018-12-21 17:00:00,75.34307624,136.2893908,191.8894865,568.5428624,48.03071102,107.563553,59.53460109,48.02895187,46.58240787,1.446544003,47.97413077,0,47.97413077,1.448303152,46.52582761,1.314984749,2.378698605,-1.53748847,1.53748847,0.793079703,0.793079703,0.250304026,1.222145518,39.30840096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.77678229,1.049290703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885440268,37.78473017,45.66222256,38.83402088,59.53460109,0,0.104714358,83.98929022,-0.104714358,96.01070978,0.572510564,0,79.74641058,38.83402088,105.1625006,12,9,32% -2018-12-21 18:00:00,68.13791994,148.6193973,324.9316046,705.4852422,62.22750184,265.4731652,202.6725805,62.80058475,60.35111307,2.449471687,80.65981823,0,80.65981823,1.876388776,78.78342945,1.189231048,2.593897815,-0.491802779,0.491802779,0.614256918,0.614256918,0.191509539,1.685555926,54.21327266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.01178545,1.35943728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221179531,52.11185978,59.23296498,53.47129706,202.6725805,0,0.287281106,73.3047504,-0.287281106,106.6952496,0.875954443,0,236.7649124,53.47129706,271.7608069,12,10,15% -2018-12-21 19:00:00,63.25550583,162.7308508,413.6840586,764.3582817,69.71317933,405.0794885,334.3498936,70.72959493,67.61106976,3.118525175,102.4045991,0,102.4045991,2.102109571,100.3024895,1.104016847,2.84018914,0.09454715,-0.09454715,0.513985175,0.513985175,0.168517925,1.858289811,59.76898815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.99033196,1.522971228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346324642,57.45222483,66.33665661,58.97519606,334.3498936,0,0.437425618,64.06025957,-0.437425618,115.9397404,0.935694852,0,379.1861308,58.97519606,417.7842171,12,11,10% -2018-12-21 20:00:00,61.28046187,178.1128571,448.8264756,783.3242849,72.42146883,500.3711442,426.7500063,73.6211379,70.23769434,3.383443558,111.0069498,0,111.0069498,2.183774492,108.8231753,1.069545827,3.108655797,0.567392266,-0.567392266,0.433123898,0.433123898,0.16135739,1.774932654,57.08793545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.51514342,1.582137186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285932666,54.875095,68.80107609,56.45723219,426.7500063,0,0.544793535,56.98944433,-0.544793535,123.0105557,0.958222112,0,477.7223685,56.45723219,514.6724978,12,12,8% -2018-12-21 21:00:00,62.49694447,193.6493547,427.2419407,771.9203135,70.77229241,536.5894559,464.730479,71.85897689,68.63824667,3.220730216,105.7238007,0,105.7238007,2.134045738,103.5897549,1.090777454,3.379818835,1.064294567,-1.064294567,0.348148599,0.348148599,0.165649216,1.46906289,47.2501124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.97769348,1.546108873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064331063,45.41860529,67.04202455,46.96471416,464.730479,0,0.602044629,52.98352579,-0.602044629,127.0164742,0.966949679,0,516.4130118,46.96471416,547.1504779,12,13,6% -2018-12-21 22:00:00,66.72621808,208.1396688,350.8194357,724.567702,64.52448656,503.8013679,438.5779076,65.22346031,62.57883522,2.644625093,87.00588518,0,87.00588518,1.94565134,85.06023384,1.164592203,3.632722525,1.731525859,-1.731525859,0.234045328,0.234045328,0.183925062,0.991532332,31.89108815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.15315671,1.409617772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.718361799,30.65492697,60.87151851,32.06454474,438.5779076,0,0.605295967,52.74985758,-0.605295967,127.2501424,0.967395782,0,485.1499364,32.06454474,506.1355396,12,14,4% -2018-12-21 23:00:00,73.43233418,220.9092305,227.0836957,612.9571561,52.30049242,392.2693566,339.8340642,52.43529243,50.72343961,1.711852819,56.63612392,0,56.63612392,1.577052815,55.0590711,1.281636009,3.85559342,2.937327033,-2.937327033,0.027841183,0.027841183,0.230313728,0.430946457,13.86071944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.75729951,1.142569396,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312219241,13.32345075,49.06951875,14.46602014,339.8340642,0,0.554417321,56.32940935,-0.554417321,123.6705907,0.959815227,0,375.2474283,14.46602014,384.7151492,12,15,3% -2018-12-21 00:00:00,81.95979783,231.9158007,75.90441318,339.8060955,28.37644872,182.1480725,154.0550789,28.09299363,27.5207941,0.572199529,19.25955839,0,19.25955839,0.855654627,18.40390377,1.430468326,4.047694309,6.729615123,-6.729615123,0,0,0.373844518,0.213913657,6.880198524,0.382974391,1,0.147517449,0,0.945648677,0.984410641,0.724496596,1,26.68322078,0.619918864,0.05544807,0.312029739,0.854823126,0.579319722,0.961238037,0.922476074,0.14649459,6.613508523,26.82971537,7.233427387,95.05592891,0,0.453361729,63.04042558,-0.453361729,116.9595744,0.93971279,0,116.1549876,7.233427387,120.8891211,12,16,4% -2018-12-21 01:00:00,91.96658447,241.4891274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605119701,4.214780382,-28.80251198,28.80251198,1,0,#DIV/0!,0,0,1,0.77556703,0,0.034705254,0.961238037,1,0.630796111,0.906299515,0,0,0.115824807,0.205715858,0.724496596,0.448993192,0.976883664,0.938121701,0,0,0,0,0,0,0.305807431,72.1932525,-0.305807431,107.8067475,0.886498414,0,0,0,0,12,17,0% -2018-12-21 02:00:00,102.7604318,250.093998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793507876,4.364963704,-4.415623127,4.415623127,1,0.714730283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126017904,82.76045775,-0.126017904,97.23954225,0.653230983,0,0,0,0,12,18,0% -2018-12-21 03:00:00,114.1426848,258.2475229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992165667,4.50726956,-2.207992669,2.207992669,1,0.907742674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.075468411,94.32813658,0.075468411,85.67186342,0,0,0,0,0,12,19,0% -2018-12-21 04:00:00,125.8673535,266.5761554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196799739,4.652631619,-1.325624397,1.325624397,1,0.756848813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284929769,106.5546506,0.284929769,73.44534942,0,0.87451816,0,0,0,12,20,0% -2018-12-21 05:00:00,137.691351,276.0531663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403167427,4.818036663,-0.817717099,0.817717099,1,0.669991549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488101964,119.2159054,0.488101964,60.78409463,0,0.947562387,0,0,0,12,21,0% -2018-12-21 06:00:00,149.2499673,288.7251486,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903337,5.039204477,-0.464144588,0.464144588,1,0.609527089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671149619,132.155855,0.671149619,47.84414496,0,0.975500963,0,0,0,12,22,0% -2018-12-21 07:00:00,159.6157639,310.181047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785820619,5.413680548,-0.184773983,0.184773983,1,0.561751902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821608127,145.2460989,0.821608127,34.75390107,0,0.989143737,0,0,0,12,23,0% -2018-12-22 08:00:00,165.4972127,353.1477239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888471265,6.163590527,0.058837606,-0.058837606,1,0.520091866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929232162,158.3154378,0.929232162,21.68456224,0,0.996192134,0,0,0,12,0,0% -2018-12-22 09:00:00,161.7290383,41.65995005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822704214,0.727103295,0.290585601,-0.290585601,1,0.480460625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986693066,170.6425092,0.986693066,9.357490753,0,0.99932568,0,0,0,12,1,0% -2018-12-22 10:00:00,152.0049168,67.12346385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652986277,1.171525449,0.530929542,-0.530929542,1,0.439359391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990077723,171.9220147,0.990077723,8.077985298,0,0.999498914,0,0,0,12,2,0% -2018-12-22 11:00:00,140.6132153,81.21488846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454163579,1.417467205,0.805345338,-0.805345338,1,0.392431526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939154989,159.9101286,0.939154989,20.0898714,0,0.996760651,0,0,0,12,3,0% -2018-12-22 12:00:00,128.8113293,91.22313901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248181811,1.59214413,1.158925871,-1.158925871,1,0.331965693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837391559,146.8656912,0.837391559,33.13430883,0,0.990290776,0,0,0,12,4,0% -2018-12-22 13:00:00,117.0373654,99.7235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042687374,1.740503514,1.701641966,-1.701641966,1,0.239155775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691716159,133.7661117,0.691716159,46.23388827,0,0.977716016,0,0,0,12,5,0% -2018-12-22 14:00:00,105.5480092,107.8544509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842160279,1.882415281,2.837869264,-2.837869264,1,0.044849463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.512048038,120.8003451,0.512048038,59.19965493,0,0.952352912,0,0,0,12,6,0% -2018-12-22 15:00:00,94.58182817,116.2962849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.650764314,2.029753079,8.621648217,-8.621648217,1,0,#DIV/0!,0,0,0.485658881,1,0.115471136,0,0.949467222,0.988229185,0.724496596,1,0,0,0.067519397,0.312029739,0.826436684,0.55093328,0.961238037,0.922476074,0,0,0,0,0,0,-0.310621806,108.0967074,0.310621806,71.90329258,0,0.88903255,0,0,0,12,7,0% -2018-12-22 16:00:00,84.27982374,125.5827439,41.04583292,221.6750381,18.9514498,18.68941449,0,18.68941449,18.37999367,0.309420826,32.40130677,21.87781323,10.52349354,0.571456135,9.952037403,1.470960417,2.191832365,-5.642622591,5.642622591,0.504901017,0.504901017,0.461714344,0.226958728,7.299772848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.66754903,0.414018024,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.164430826,7.016819322,17.83197985,7.430837346,0,21.87781323,-0.098693175,95.66392263,0.098693175,84.33607737,0,0.543379353,17.83197985,19.31878934,30.4757411,12,8,71% -2018-12-22 17:00:00,75.40872331,136.1936138,190.406597,564.9537445,48.0823079,106.3294574,58.26164312,48.06781427,46.63244892,1.435365357,47.61614289,0,47.61614289,1.449858988,46.1662839,1.316130507,2.377026981,-1.550593532,1.550593532,0.795320801,0.795320801,0.25252438,1.215764919,39.10317895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.82488365,1.050417901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880817545,37.58746297,45.70570119,38.63788087,58.26164312,0,0.103126395,84.08076912,-0.103126395,95.91923088,0.565158075,0,78.63273925,38.63788087,103.9204595,12,9,32% -2018-12-22 18:00:00,68.18661256,148.508715,323.7116119,703.1518123,62.43110697,264.0320954,201.0432418,62.98885361,60.54857875,2.440274866,80.37015632,0,80.37015632,1.882528221,78.4876281,1.190080895,2.591966045,-0.497745411,0.497745411,0.615273168,0.615273168,0.192860264,1.682500428,54.11499731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20159697,1.363885288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218965832,52.01739378,59.4205628,53.38127907,201.0432418,0,0.285917263,73.38631439,-0.285917263,106.6136856,0.875124235,0,235.3583761,53.38127907,270.2953556,12,10,15% -2018-12-22 19:00:00,63.2818702,162.6069736,412.868764,762.6155841,69.99553077,403.7897693,332.7924829,70.9972864,67.88490726,3.112379139,102.2154354,0,102.2154354,2.110623509,100.1048119,1.104476992,2.838027077,0.090364767,-0.090364767,0.514700404,0.514700404,0.169534576,1.858013985,59.76011665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.25355499,1.529139547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346124807,57.44369721,66.59967979,58.97283675,332.7924829,0,0.436383008,64.12667045,-0.436383008,115.8733295,0.935421753,0,377.9010076,58.97283675,416.4975498,12,11,10% -2018-12-22 20:00:00,61.28061785,177.9831459,448.4751461,781.9088126,72.75217254,499.4116155,425.4723943,73.9392212,70.55842612,3.380795088,110.9317379,0,110.9317379,2.193746429,108.7379914,1.069548549,3.106391909,0.563467468,-0.563467468,0.433795078,0.433795078,0.162221191,1.777099774,57.15763748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.823443,1.58936182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287502737,54.94209524,69.11094574,56.53145706,425.4723943,0,0.544145797,57.03369028,-0.544145797,122.9663097,0.958112862,0,476.7615191,56.53145706,513.7602271,12,12,8% -2018-12-22 21:00:00,62.47054979,193.5245842,427.3671461,770.7283232,71.13306339,536.0634167,463.8536036,72.20981314,68.98813907,3.221674068,105.7650368,0,105.7650368,2.144924314,103.6201125,1.090316779,3.377641179,1.059618176,-1.059618176,0.348948309,0.348948309,0.166444857,1.47331187,47.38677421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.31402337,1.553990364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.067409434,45.54996981,67.3814328,47.10396018,463.8536036,0,0.601838014,52.99835055,-0.601838014,127.0016495,0.966921167,0,515.8913004,47.10396018,546.7199003,12,13,6% -2018-12-22 22:00:00,66.67671975,208.0281632,351.3934228,723.6174823,64.89976594,503.7755765,438.1838259,65.59175059,62.94279854,2.64895205,87.15637105,0,87.15637105,1.956967398,85.19940366,1.163728294,3.630776385,1.724397498,-1.724397498,0.23526435,0.23526435,0.184692603,0.997344666,32.0780328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50301211,1.417816218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.722572815,30.83462528,61.22558492,32.2524415,438.1838259,0,0.605546213,52.73184282,-0.605546213,127.2681572,0.967429919,0,485.137728,32.2524415,506.2463059,12,14,4% -2018-12-22 23:00:00,73.36507879,220.8136045,228.0312883,612.5464807,52.67613567,392.8360983,340.0293463,52.80675199,51.08775582,1.718996172,56.87720575,0,56.87720575,1.588379845,55.2888259,1.280462181,3.853924432,2.922041177,-2.922041177,0.030455218,0.030455218,0.231003982,0.437353751,14.06680004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.10749411,1.15077579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316861304,13.52154325,49.42435542,14.67231904,340.0293463,0,0.555107828,56.28185799,-0.555107828,123.718142,0.95992741,0,375.827845,14.67231904,385.4305844,12,15,3% -2018-12-22 00:00:00,81.88044731,231.8343309,76.98517961,341.422502,28.76298024,183.6310873,155.1550702,28.47601706,27.89567026,0.580346803,19.53325808,0,19.53325808,0.867309978,18.6659481,1.429083399,4.046272393,6.659871955,-6.659871955,0,0,0.373617109,0.216827495,6.973917565,0.378399954,1,0.149039614,0,0.945461479,0.984223442,0.724496596,1,27.04641216,0.628363127,0.05488688,0.312029739,0.856170958,0.580667554,0.961238037,0.922476074,0.14850906,6.703594829,27.19492122,7.331957956,96.44439874,0,0.454437154,62.9712744,-0.454437154,117.0287256,0.939973785,0,117.8501278,7.331957956,122.6487476,12,16,4% -2018-12-22 01:00:00,91.87743838,241.418262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603563808,4.213543546,-30.16557981,30.16557981,1,0,#DIV/0!,0,0,1,0.786724525,0,0.03313823,0.961238037,1,0.634823017,0.910326421,0,0,0.115824807,0.210275045,0.724496596,0.448993192,0.976262325,0.937500362,0,0,0,0,0,0,0.30722349,72.10801549,-0.30722349,107.8919845,0.887252028,0,0,0,0,12,17,0% -2018-12-22 02:00:00,102.665381,250.0297151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791848926,4.363841756,-4.449884232,4.449884232,1,0.708871289,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127663859,82.66538357,-0.127663859,97.33461643,0.658346478,0,0,0,0,12,18,0% -2018-12-22 03:00:00,114.0439044,258.1854303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990441624,4.506185839,-2.218578367,2.218578367,1,0.909552935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.073702881,94.22669655,0.073702881,85.77330345,0,0,0,0,0,12,19,0% -2018-12-22 04:00:00,125.7666669,266.510474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195042426,4.651485263,-1.330995768,1.330995768,1,0.757767371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283163025,106.449075,0.283163025,73.55092499,0,0.873423274,0,0,0,12,20,0% -2018-12-22 05:00:00,137.5908248,275.973613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401412914,4.816648195,-0.821160043,0.821160043,1,0.670580327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486452285,119.1076661,0.486452285,60.89233395,0,0.947214996,0,0,0,12,21,0% -2018-12-22 06:00:00,149.1534841,288.6067687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603219388,5.037138357,-0.46669605,0.46669605,1,0.609963415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669727069,132.0460034,0.669727069,47.95399663,0,0.975342722,0,0,0,12,22,0% -2018-12-22 07:00:00,159.5357424,309.9485281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78442398,5.409622326,-0.186877162,0.186877162,1,0.562111567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820507004,145.1355791,0.820507004,34.86442093,0,0.989062068,0,0,0,12,23,0% -2018-12-23 08:00:00,165.4780928,352.699306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888137559,6.155764159,0.056942723,-0.056942723,1,0.52041591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928524517,158.20597,0.928524517,21.79402999,0,0.996151126,0,0,0,12,0,0% -2018-12-23 09:00:00,161.7878159,41.34788097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823730077,0.721656662,0.288729629,-0.288729629,1,0.480778015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986423754,170.5480797,0.986423754,9.451920259,0,0.999311845,0,0,0,12,1,0% -2018-12-23 10:00:00,152.0903373,66.9623155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654477146,1.16871288,0.528944422,-0.528944422,1,0.439698866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990261323,171.9972235,0.990261323,8.002776549,0,0.999508277,0,0,0,12,2,0% -2018-12-23 11:00:00,140.7057059,81.10961946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455777845,1.415629915,0.802989098,-0.802989098,1,0.392834466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939774799,160.0137712,0.939774799,19.98622882,0,0.996795764,0,0,0,12,3,0% -2018-12-23 12:00:00,128.9049297,91.13939624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249815445,1.590682543,1.155711466,-1.155711466,1,0.332515389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83840074,146.971625,0.83840074,33.02837497,0,0.990362648,0,0,0,12,4,0% -2018-12-23 13:00:00,117.1292517,99.64752647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044291092,1.739177428,1.696204858,-1.696204858,1,0.240085575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693040945,133.8713107,0.693040945,46.1286893,0,0.97785419,0,0,0,12,5,0% -2018-12-23 14:00:00,105.6360257,107.7790224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843696457,1.881098806,2.823964267,-2.823964267,1,0.047227358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513592802,120.9034422,0.513592802,59.09655776,0,0.952646611,0,0,0,12,6,0% -2018-12-23 15:00:00,94.66366493,116.216437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652192635,2.028359471,8.482046898,-8.482046898,1,0,#DIV/0!,0,0,0.479264781,1,0.11735435,0,0.949249332,0.988011295,0.724496596,1,0,0,0.066796,0.312029739,0.828105146,0.552601742,0.961238037,0.922476074,0,0,0,0,0,0,-0.312275625,108.1964239,0.312275625,71.80357613,0,0.889885038,0,0,0,12,7,0% -2018-12-23 16:00:00,84.35103602,125.4943122,39.94212403,216.0950028,18.67116505,18.40926114,0,18.40926114,18.10816054,0.301100603,31.92441997,21.67698505,10.24743492,0.563004516,9.684430405,1.472203306,2.190288941,-5.727092224,5.727092224,0.490455859,0.490455859,0.467455487,0.219395468,7.056512408,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.40625269,0.407894855,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15895127,6.782988134,17.56520396,7.190882989,0,21.67698505,-0.100312292,95.75715392,0.100312292,84.24284608,0,0.5515566,17.56520396,19.14696715,30.09651102,12,8,71% -2018-12-23 17:00:00,75.4682436,136.0930926,189.0379022,561.5132273,48.144932,105.176002,57.05776974,48.11823222,46.69318466,1.425047556,47.28617532,0,47.28617532,1.451747336,45.83442798,1.317169332,2.375272555,-1.563417221,1.563417221,0.797513781,0.797513781,0.254684015,1.209984772,38.91726955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.88326516,1.051786003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876629848,37.40875978,45.75989501,38.46054579,57.05776974,0,0.101614293,84.16786375,-0.101614293,95.83213625,0.557943239,0,77.59489187,38.46054579,102.7665499,12,9,32% -2018-12-23 18:00:00,68.22849784,148.3943188,322.6173859,700.9140186,62.64418611,262.6951366,199.5078777,63.1872589,60.75523277,2.432026129,80.11127368,0,80.11127368,1.888953344,78.22232034,1.190811931,2.589969454,-0.503699941,0.503699941,0.616291453,0.616291453,0.194174861,1.680038802,54.03582295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.40024067,1.368540267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.217182393,51.94128837,59.61742307,53.30982864,199.5078777,0,0.284639588,73.46269374,-0.284639588,106.5373063,0.874339263,0,234.0549937,53.30982864,268.9452104,12,10,15% -2018-12-23 19:00:00,63.30088296,162.4808794,412.1855764,760.9494006,70.28703003,402.6188398,331.3439941,71.27484573,68.16761675,3.107228983,102.0585784,0,102.0585784,2.119413287,99.93916513,1.104808827,2.835826317,0.086067906,-0.086067906,0.515435211,0.515435211,0.170522779,1.858323489,59.77007136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5253061,1.535507712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346349042,57.45326605,66.87165514,58.98877377,331.3439941,0,0.435434989,64.18702385,-0.435434989,115.8129762,0.935172296,0,376.7353789,58.98877377,415.3423516,12,11,10% -2018-12-23 20:00:00,61.27317087,177.8531229,448.2583102,780.5649415,73.09212409,498.5813697,424.3140823,74.26728736,70.88812687,3.379160487,110.8894143,0,110.8894143,2.203997223,108.6854171,1.069418575,3.104122579,0.559354131,-0.559354131,0.4344985,0.4344985,0.163058046,1.779831096,57.24548616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.14036391,1.596788485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28948157,55.02653874,69.42984548,56.62332722,424.3140823,0,0.543598693,57.07104483,-0.543598693,122.9289552,0.958020382,0,475.9313849,56.62332722,512.9902201,12,12,8% -2018-12-23 21:00:00,62.43668709,193.4014723,427.6254017,769.6130682,71.50350511,535.6743806,463.1033491,72.57103152,69.34741061,3.223620908,105.838824,0,105.838824,2.156094499,103.6827295,1.089725764,3.37549247,1.054657812,-1.054657812,0.349796582,0.349796582,0.167210612,1.478086577,47.54034521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.65936884,1.562083125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.070868694,45.6975881,67.73023753,47.25967123,463.1033491,0,0.601735298,53.00571942,-0.601735298,126.9942806,0.966906985,0,515.5081007,47.25967123,546.4386103,12,13,6% -2018-12-23 22:00:00,66.62022154,207.9199551,352.0949828,722.7619006,65.2857428,503.893255,437.9218775,65.97137748,63.31713678,2.654240706,87.33811101,0,87.33811101,1.968606024,85.36950498,1.162742214,3.628887797,1.71680662,-1.71680662,0.236562466,0.236562466,0.185420827,1.00362066,32.27989034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.86284025,1.426248363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.727119752,31.02865842,61.58996001,32.45490678,437.9218775,0,0.605900611,52.70632292,-0.605900611,127.2936771,0.967478215,0,485.2698364,32.45490678,506.5109237,12,14,4% -2018-12-23 23:00:00,73.29147415,220.7224365,229.0957801,612.2737835,53.0652032,393.5549005,340.3627882,53.19211229,51.46509153,1.727020761,57.14703592,0,57.14703592,1.600111666,55.54692426,1.279177538,3.85233325,2.905825749,-2.905825749,0.03322822,0.03322822,0.231628899,0.444121527,14.28447496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.47020355,1.159275455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321764534,13.73078067,49.79196808,14.89005612,340.3627882,0,0.55589966,56.22729648,-0.55589966,123.7727035,0.96005571,0,376.5592066,14.89005612,386.3044505,12,15,3% -2018-12-23 00:00:00,81.79545342,231.7581066,78.15910544,343.2750009,29.17119688,185.2795643,156.3987903,28.88077402,28.29157767,0.589196351,19.83019922,0,19.83019922,0.879619216,18.95058001,1.427599975,4.044942029,6.587060117,-6.587060117,0,0,0.373228387,0.219904804,7.072894417,0.373551311,1,0.150662378,0,0.945261331,0.984023294,0.724496596,1,27.42992123,0.637281128,0.054289773,0.312029739,0.8576078,0.582104396,0.961238037,0.922476074,0.150638981,6.798735144,27.58056021,7.436016272,97.97581711,0,0.455607865,62.89594784,-0.455607865,117.1040522,0.940256504,0,119.7029595,7.436016272,124.5696834,12,16,4% -2018-12-23 01:00:00,91.78321255,241.353249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601919257,4.212408856,-31.75519775,31.75519775,1,0,#DIV/0!,0,0,1,0.798411984,0,0.031480504,0.961238037,1,0.639104072,0.914607476,0,0,0.115824807,0.215123071,0.724496596,0.448993192,0.97559664,0.936834677,0,0,0,0,0,0,0.308727738,72.01742522,-0.308727738,107.9825748,0.888045002,0,0,0,0,12,17,0% -2018-12-23 02:00:00,102.5657595,249.9718911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790110204,4.362832537,-4.486334335,4.486334335,1,0.702637954,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129388165,82.56576185,-0.129388165,97.43423815,0.663565893,0,0,0,0,12,18,0% -2018-12-23 03:00:00,113.9409285,258.1305668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988644355,4.505228291,-2.229644094,2.229644094,1,0.911445286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071870044,94.12140345,0.071870044,85.87859655,0,0,0,0,0,12,19,0% -2018-12-23 04:00:00,125.6619875,266.4531455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193215427,4.650484691,-1.336531898,1.336531898,1,0.758714105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281340469,106.3402244,0.281340469,73.65977562,0,0.872279389,0,0,0,12,20,0% -2018-12-23 05:00:00,137.4862528,275.9041773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399587788,4.815436314,-0.824660788,0.824660788,1,0.67117899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484757941,118.9966146,0.484757941,61.00338539,0,0.946855738,0,0,0,12,21,0% -2018-12-23 06:00:00,149.0524343,288.5013549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601455737,5.03529854,-0.469255351,0.469255351,1,0.610401081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668269894,131.9336744,0.668269894,48.0663256,0,0.97517993,0,0,0,12,22,0% -2018-12-23 07:00:00,159.4496262,309.7323827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782920969,5.405849878,-0.18895793,0.18895793,1,0.562467399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819379491,145.0227266,0.819379491,34.97727341,0,0.988978214,0,0,0,12,23,0% -2018-12-24 08:00:00,165.4504397,352.2557386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887654921,6.148022447,0.055094131,-0.055094131,1,0.520732038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927796349,158.0938709,0.927796349,21.90612913,0,0.996108863,0,0,0,12,0,0% -2018-12-24 09:00:00,161.8396838,41.01991791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824635343,0.715932626,0.28694449,-0.28694449,1,0.481083292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986137015,170.4485566,0.986137015,9.551443431,0,0.999297107,0,0,0,12,1,0% -2018-12-24 10:00:00,152.1708075,66.7871911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.655881616,1.165656383,0.527061795,-0.527061795,1,0.440020814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990427608,172.0659503,0.990427608,7.934049735,0,0.999516755,0,0,0,12,2,0% -2018-12-24 11:00:00,140.7939922,80.99356079,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45731873,1.413604309,0.800784494,-0.800784494,1,0.393211476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940374413,160.1145296,0.940374413,19.8854704,0,0.996829689,0,0,0,12,3,0% -2018-12-24 12:00:00,128.9944903,91.04689347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378573,1.589068065,1.152739862,-1.152739862,1,0.333023563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839384051,147.075134,0.839384051,32.92486601,0,0.990432511,0,0,0,12,4,0% -2018-12-24 13:00:00,117.2169638,99.56406604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045821957,1.737720769,1.691224758,-1.691224758,1,0.240937223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694331786,133.9739931,0.694331786,46.02600689,0,0.977988318,0,0,0,12,5,0% -2018-12-24 14:00:00,105.7195442,107.6969689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84515413,1.879666702,2.811300921,-2.811300921,1,0.049392918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515093701,121.0037183,0.515093701,58.99628173,0,0.952930283,0,0,0,12,6,0% -2018-12-24 15:00:00,94.74053787,116.1306066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653534321,2.026861448,8.356919215,-8.356919215,1,0,#DIV/0!,0,0,0.47339698,1,0.119095042,0,0.949047205,0.987809168,0.724496596,1,0,0,0.066128955,0.312029739,0.829647329,0.554143925,0.961238037,0.922476074,0,0,0,0,0,0,-0.313874494,108.2928814,0.313874494,71.70711861,0,0.890700659,0,0,0,12,7,0% -2018-12-24 16:00:00,84.41679581,125.400492,38.92271648,210.8354598,18.41029164,18.1485693,0,18.1485693,17.85515342,0.293415878,31.46946266,21.4770612,9.992401462,0.55513822,9.437263242,1.473351031,2.18865147,-5.808779363,5.808779363,0.476486535,0.476486535,0.472996063,0.212464298,6.833582172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.16305262,0.40219575,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.153929661,6.568699112,17.31698228,6.970894862,0,21.4770612,-0.101866457,95.8466595,0.101866457,84.1533405,0,0.559161291,17.31698228,18.98003613,29.73903633,12,8,72% -2018-12-24 17:00:00,75.52159216,135.9879005,187.7839585,558.2256583,48.21909483,104.1033628,55.92265679,48.18070601,46.76511121,1.4155948,46.98437845,0,46.98437845,1.453983619,45.53039483,1.31810044,2.373436606,-1.575929612,1.575929612,0.799653526,0.799653526,0.256779627,1.204810495,38.75084703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.9524037,1.053406182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872881102,37.24878813,45.8252848,38.30219431,55.92265679,0,0.100179302,84.25050443,-0.100179302,95.74949557,0.550894905,0,76.63279152,38.30219431,101.7008116,12,9,33% -2018-12-24 18:00:00,68.26354565,148.276285,321.6494471,698.7739442,62.8670129,261.4629452,198.0668753,63.3960699,60.9713405,2.424729397,79.88330477,0,79.88330477,1.895672393,77.98763237,1.191423631,2.587909377,-0.509656281,0.509656281,0.617310047,0.617310047,0.195451954,1.678173513,53.97582885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.60797165,1.373408196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.215830997,51.88361976,59.82380265,53.25702796,198.0668753,0,0.283449142,73.53383135,-0.283449142,106.4661687,0.873601513,0,232.8553245,53.25702796,267.7109841,12,10,15% -2018-12-24 19:00:00,63.31252997,162.3526445,411.6347322,759.3608301,70.58784944,401.5672582,330.0048164,71.56244182,68.45936534,3.103076487,101.9340907,0,101.9340907,2.128484102,99.80560656,1.105012106,2.833588197,0.081663039,-0.081663039,0.516188487,0.516188487,0.171481763,1.859218636,59.79886236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.80574594,1.542079486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346997573,57.48094106,67.15274351,59.02302055,330.0048164,0,0.434582353,64.24127866,-0.434582353,115.7587213,0.934947008,0,375.6897592,59.02302055,414.3191457,12,11,10% -2018-12-24 20:00:00,61.25812273,177.7228638,448.1758504,779.2931975,73.44143847,497.8806439,423.2751969,74.605447,71.22690813,3.37853887,110.8799541,0,110.8799541,2.21453034,108.6654237,1.069155935,3.10184913,0.555058574,-0.555058574,0.435233083,0.435233083,0.163867461,1.783125257,57.35143771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.46601334,1.604419693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291868179,55.1283834,69.75788152,56.73280309,423.2751969,0,0.543152691,57.10148485,-0.543152691,122.8985151,0.957944854,0,475.2321784,56.73280309,512.3626634,12,12,8% -2018-12-24 21:00:00,62.39537398,193.2800954,428.0162288,768.574557,71.88369242,535.4221336,462.4794326,72.942701,69.71613387,3.226567127,105.9450486,0,105.9450486,2.167558549,103.7774901,1.089004714,3.373374043,1.049421942,-1.049421942,0.350691968,0.350691968,0.167946184,1.48338447,47.71074365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01379966,1.57038879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.074706999,45.86138156,68.08850666,47.43177035,462.4794326,0,0.601736589,53.00562679,-0.601736589,126.9943732,0.966907164,0,515.2631831,47.43177035,546.3063281,12,13,6% -2018-12-24 22:00:00,66.55675697,207.8151206,352.9233181,722.0001701,65.68245465,504.1536038,437.7912325,66.36237134,63.7018863,2.660485048,87.55091284,0,87.55091284,1.98056835,85.57034449,1.161634549,3.62705809,1.708768521,-1.708768521,0.237937062,0.237937062,0.186109705,1.010357431,32.49656805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23267613,1.434915028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732000519,31.23693728,61.96467665,32.6718523,437.7912325,0,0.606358905,52.67330883,-0.606358905,127.3266912,0.967540586,0,485.5454622,32.6718523,506.9285361,12,14,4% -2018-12-24 23:00:00,73.21156859,220.6357988,230.2761983,612.1363163,53.46766376,394.4240716,340.8327359,53.59133567,51.85541642,1.735919252,57.44537767,0,57.44537767,1.612247337,55.83313033,1.277782922,3.850821137,2.888722527,-2.888722527,0.036153043,0.036153043,0.232189276,0.451248686,14.51370891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.84539868,1.168067707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326928137,13.95112906,50.17232682,15.11919676,340.8327359,0,0.556792216,56.16575291,-0.556792216,123.8342471,0.960199894,0,377.4398837,15.11919676,387.3350956,12,15,3% -2018-12-24 00:00:00,81.70487443,231.687193,79.42590495,345.3551204,29.60082527,187.0904269,157.7834297,29.3069972,28.70825117,0.598746021,20.15030431,0,20.15030431,0.892574097,19.25773022,1.426019074,4.043704353,6.511471867,-6.511471867,0,0,0.372684772,0.223143524,7.177062794,0.368437107,1,0.152384539,0,0.945048272,0.983810235,0.724496596,1,27.83347888,0.646666895,0.053657407,0.312029739,0.859132572,0.583629167,0.961238037,0.922476074,0.152883404,6.89886575,27.98636228,7.545532645,99.65015936,0,0.456872999,62.8144888,-0.456872999,117.1855112,0.940560396,0,121.7133557,7.545532645,126.6517559,12,16,4% -2018-12-24 01:00:00,91.68397953,241.2941445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600187314,4.211377288,-33.62234032,33.62234032,1,0,#DIV/0!,0,0,1,0.810602923,0,0.029733364,0.961238037,1,0.643639465,0.919142869,0,0,0.115824807,0.220260352,0.724496596,0.448993192,0.974885651,0.936123688,0,0,0,0,0,0,0.310319003,71.92154386,-0.310319003,108.0784561,0.888875481,0,0,0,0,12,17,0% -2018-12-24 02:00:00,102.4616481,249.9205728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788293117,4.361936864,-4.525036053,4.525036053,1,0.696019571,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131189482,82.46166668,-0.131189482,97.53833332,0.668871884,0,0,0,0,12,18,0% -2018-12-24 03:00:00,113.833844,258.08297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986775378,4.50439757,-2.241192585,2.241192585,1,0.913420194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.06997132,94.01233993,0.06997132,85.98766007,0,0,0,0,0,12,19,0% -2018-12-24 04:00:00,125.553408,266.4041979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191320357,4.649630394,-1.342231329,1.342231329,1,0.759688765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279463499,106.2281873,0.279463499,73.77181272,0,0.871085758,0,0,0,12,20,0% -2018-12-24 05:00:00,137.3777336,275.8448784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39769377,4.814401353,-0.828217536,0.828217536,1,0.67178723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48302022,118.8828438,0.48302022,61.11715619,0,0.946484665,0,0,0,12,21,0% -2018-12-24 06:00:00,148.946926,288.4089291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59961427,5.033685406,-0.471820833,0.471820833,1,0.610839804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666779176,131.8189641,0.666779176,48.18103588,0,0.975012655,0,0,0,12,22,0% -2018-12-24 07:00:00,159.3575372,309.5327788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.781313713,5.402366133,-0.191014804,0.191014804,1,0.562819145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818226397,144.9076414,0.818226397,35.09235859,0,0.988892218,0,0,0,12,23,0% -2018-12-25 08:00:00,165.414294,351.8180884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88702406,6.14038401,0.053293168,-0.053293168,1,0.521040021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927048138,157.9792516,0.927048138,22.02074842,0,0.996065368,0,0,0,12,0,0% -2018-12-25 09:00:00,161.8845186,40.67653539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825417858,0.709939471,0.285231414,-0.285231414,1,0.481376245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985832968,170.3441362,0.985832968,9.655863763,0,0.999281469,0,0,0,12,1,0% -2018-12-25 10:00:00,152.2462067,66.59819222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.657197581,1.16235773,0.525282781,-0.525282781,1,0.440325044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990576327,172.1279223,0.990576327,7.872077672,0,0.999524334,0,0,0,12,2,0% -2018-12-25 11:00:00,140.8779673,80.86676497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458784373,1.411391304,0.798732465,-0.798732465,1,0.393562394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940953232,160.2122604,0.940953232,19.78773956,0,0.996862396,0,0,0,12,3,0% -2018-12-25 12:00:00,129.0799145,90.94567838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252869506,1.587301528,1.150011486,-1.150011486,1,0.333490143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840340586,147.1761021,0.840340586,32.82389787,0,0.990500315,0,0,0,12,4,0% -2018-12-25 13:00:00,117.3004135,99.47317491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047278429,1.73613442,1.686699892,-1.686699892,1,0.24171102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.695587531,134.0740544,0.695587531,45.92594565,0,0.97811832,0,0,0,12,5,0% -2018-12-25 14:00:00,105.7984851,107.6083461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846531909,1.878119942,2.799860676,-2.799860676,1,0.051349315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.516549417,121.1010765,0.516549417,58.89892348,0,0.95320384,0,0,0,12,6,0% -2018-12-25 15:00:00,94.81237717,116.0388555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654788153,2.02526009,8.245293321,-8.245293321,1,0,#DIV/0!,0,0,0.468049599,1,0.120691858,0,0.948861172,0.987623135,0.724496596,1,0,0,0.065518393,0.312029739,0.83106203,0.555558626,0.961238037,0.922476074,0,0,0,0,0,0,-0.315417024,108.385991,0.315417024,71.61400902,0,0.891479704,0,0,0,12,7,0% -2018-12-25 16:00:00,84.47705181,125.3013514,37.98642789,205.8998056,18.16972003,17.90819367,0,17.90819367,17.62183593,0.286357739,31.03878742,21.28065408,9.758133332,0.547884098,9.210249234,1.474402696,2.186921139,-5.887275941,5.887275941,0.46306283,0.46306283,0.478321365,0.206146459,6.630378753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.93877898,0.396940164,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.149352408,6.373372256,17.08813138,6.77031242,0,21.28065408,-0.103354416,95.93236567,0.103354416,84.06763433,0,0.566227733,17.08813138,18.82000893,29.40545083,12,8,72% -2018-12-25 17:00:00,75.5687252,135.8781108,186.6453028,555.0951287,48.30529995,103.1117021,54.85597407,48.25572806,46.84871693,1.407011132,46.71089759,0,46.71089759,1.456583021,45.25431457,1.318923066,2.371520414,-1.588100991,1.588100991,0.801734954,0.801734954,0.258808013,1.20024738,38.60408156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.03276869,1.05528944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869575141,37.10771158,45.90234383,38.16300102,54.85597407,0,0.098822654,84.32862228,-0.098822654,95.67137772,0.544043139,0,75.74636017,38.16300102,100.7232811,12,9,33% -2018-12-25 18:00:00,68.29172707,148.1546899,320.8082823,696.7335184,63.09985397,260.3361404,196.7205915,63.6155489,61.19716056,2.418388342,79.68637563,0,79.68637563,1.902693411,77.78368222,1.191915489,2.58578714,-0.515604233,0.515604233,0.618327206,0.618327206,0.196690227,1.676906885,53.93508974,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.82503847,1.378494899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214913329,51.84445978,60.0399518,53.22295468,196.7205915,0,0.282346961,73.59967126,-0.282346961,106.4003287,0.872912916,0,231.759897,53.22295468,266.5932564,12,10,15% -2018-12-25 19:00:00,63.31679828,162.2223452,411.2164263,757.8508512,70.89815417,400.635532,328.7752956,71.86023636,68.76031324,3.09992312,101.8420244,0,101.8420244,2.137840935,99.70418346,1.105086602,2.831314045,0.077156856,-0.077156856,0.51695909,0.51695909,0.172410803,1.860699593,59.84649503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09502851,1.54885848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348070521,57.5267274,67.44309903,59.07558587,328.7752956,0,0.433825858,64.2893951,-0.433825858,115.7106049,0.934746381,0,374.7646169,59.07558587,413.4284063,12,11,10% -2018-12-25 20:00:00,61.23547633,177.5924447,448.2276048,778.0939935,73.80022285,497.3096144,422.3558116,74.95380285,71.57487383,3.378929017,110.9033212,0,110.9033212,2.225349013,108.6779722,1.068760681,3.099572887,0.550587412,-0.550587412,0.435997697,0.435997697,0.164648991,1.786980761,57.47544399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80049121,1.612257784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294661478,55.24758295,70.09515269,56.85984073,422.3558116,0,0.542808215,57.12498841,-0.542808215,122.8750116,0.957886435,0,474.6640552,56.85984073,511.8776838,12,12,8% -2018-12-25 21:00:00,62.34662936,193.1605306,428.539105,767.6126768,72.27369094,535.3063924,461.9815111,73.32488129,70.0943725,3.230508789,106.0835859,0,106.0835859,2.179318443,103.9042675,1.08815396,3.371287244,1.043919448,-1.043919448,0.35163295,0.35163295,0.168651332,1.489202903,47.89788446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.37737702,1.578908794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078922434,46.04126843,68.45629945,47.62017722,461.9815111,0,0.601841951,52.99806811,-0.601841951,127.0019319,0.96692171,0,515.1562522,47.62017722,546.3227058,12,13,6% -2018-12-25 22:00:00,66.48636103,207.713737,353.8775933,721.3313567,66.08992687,504.5557464,437.7909959,66.76475051,64.09707173,2.667678777,87.79457468,0,87.79457468,1.992855141,85.80171954,1.160405908,3.625288612,1.700299152,-1.700299152,0.23938541,0.23938541,0.186759287,1.017552051,32.72797178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6125434,1.443816766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.737212997,31.45937134,62.3497564,32.90318811,437.7909959,0,0.606920789,52.63281259,-0.606920789,127.3671874,0.967616926,0,485.9637343,32.90318811,507.4982128,12,14,4% -2018-12-25 23:00:00,73.12541196,220.5537642,231.5715448,612.1311361,53.88346722,395.441838,341.437472,54.004366,52.25868188,1.745684121,57.77198741,0,57.77198741,1.624785346,56.14720207,1.276279206,3.849389362,2.870774502,-2.870774502,0.039222336,0.039222336,0.232686046,0.458734177,14.75446801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.23303277,1.177151452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33235135,14.18255587,50.56538412,15.35970732,341.437472,0,0.557784847,56.09725685,-0.557784847,123.9027431,0.960359702,0,378.4681729,15.35970732,388.5207942,12,15,3% -2018-12-25 00:00:00,81.60877014,231.6216549,80.78529169,347.6541999,30.05155769,189.060545,159.306159,29.754386,29.14539234,0.608993653,20.49349461,0,20.49349461,0.906165343,19.58732927,1.424341737,4.042560497,6.433397156,-6.433397156,0,0,0.371992934,0.226541336,7.286348086,0.363066258,1,0.154204848,0,0.944822342,0.983584305,0.724496596,1,28.25678267,0.656513706,0.052990465,0.312029739,0.860744148,0.585240743,0.961238037,0.922476074,0.155241241,7.00391493,28.41202391,7.660428636,101.467468,0,0.458231654,62.7269419,-0.458231654,117.2730581,0.940884884,0,123.8812308,7.660428636,128.8948281,12,16,4% -2018-12-25 01:00:00,91.57981309,241.2410036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598369267,4.210449804,-35.83539276,35.83539276,1,0,#DIV/0!,0,0,1,0.823270558,0,0.027898133,0.961238037,1,0.648429409,0.923932813,0,0,0.115824807,0.225687335,0.724496596,0.448993192,0.974128345,0.935366382,0,0,0,0,0,0,0.311996078,71.82043535,-0.311996078,108.1795647,0.889741575,0,0,0,0,12,17,0% -2018-12-25 02:00:00,102.3531283,249.8758052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786399088,4.361155521,-4.566057501,4.566057501,1,0.68900449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.133066441,82.35317365,-0.133066441,97.64682635,0.674247859,0,0,0,0,12,18,0% -2018-12-25 03:00:00,113.7227383,258.0426747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984836218,4.503694284,-2.253226832,2.253226832,1,0.915478172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068008145,93.89958965,0.068008145,86.10041035,0,0,0,0,0,12,19,0% -2018-12-25 04:00:00,125.4410205,266.3636554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189358825,4.648922795,-1.34809259,1.34809259,1,0.7606911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277533524,106.1130527,0.277533524,73.88694731,0,0.869841584,0,0,0,12,20,0% -2018-12-25 05:00:00,137.2653646,275.795729,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395732562,4.813543534,-0.831828459,0.831828459,1,0.672404734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481240402,118.766446,0.481240402,61.23355398,0,0.946101824,0,0,0,12,21,0% -2018-12-25 06:00:00,148.8370651,288.3295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597696836,5.032299106,-0.474390813,0.474390813,1,0.611279296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665255988,131.7019671,0.665255988,48.29803291,0,0.974840962,0,0,0,12,22,0% -2018-12-25 07:00:00,159.2595955,309.3498488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779604307,5.399173402,-0.193046283,0.193046283,1,0.563166548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81704851,144.7904204,0.81704851,35.2095796,0,0.988804123,0,0,0,12,23,0% -2018-12-26 08:00:00,165.3697032,351.3873911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886245804,6.132866925,0.051541189,-0.051541189,1,0.521339627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926280335,157.8622173,0.926280335,22.13778269,0,0.996020661,0,0,0,12,0,0% -2018-12-26 09:00:00,161.9221975,40.31825893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826075478,0.703686367,0.283591639,-0.283591639,1,0.481656663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985511696,170.235002,0.985511696,9.764997965,0,0.999264935,0,0,0,12,1,0% -2018-12-26 10:00:00,152.3164115,66.39544188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658422886,1.158819069,0.523608513,-0.523608513,1,0.44061136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990707193,172.1828584,0.990707193,7.817141613,0,0.999531001,0,0,0,12,2,0% -2018-12-26 11:00:00,140.9575221,80.72929491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460172866,1.408991999,0.79683398,-0.79683398,1,0.393887054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941510616,160.306812,0.941510616,19.69318801,0,0.996893854,0,0,0,12,3,0% -2018-12-26 12:00:00,129.1611039,90.83580498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254286528,1.585383876,1.147526847,-1.147526847,1,0.333915041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841269398,147.2744087,0.841269398,32.7255913,0,0.990566006,0,0,0,12,4,0% -2018-12-26 13:00:00,117.3795116,99.37490808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048658952,1.73441934,1.682628805,-1.682628805,1,0.242407217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696806995,134.1713868,0.696806995,45.82861321,0,0.978244119,0,0,0,12,5,0% -2018-12-26 14:00:00,105.8727685,107.5132129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847828398,1.876459555,2.789627076,-2.789627076,1,0.053099363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51795861,121.1954184,0.51795861,58.80458156,0,0.95346719,0,0,0,12,6,0% -2018-12-26 15:00:00,94.87911329,115.9412481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655952918,2.023556518,8.146332307,-8.146332307,1,0,#DIV/0!,0,0,0.463217281,1,0.12214356,0,0.948691536,0.987453499,0.724496596,1,0,0,0.064964431,0.312029739,0.832348153,0.556844749,0.961238037,0.922476074,0,0,0,0,0,0,-0.316901811,108.4756627,0.316901811,71.52433734,0,0.892222423,0,0,0,12,7,0% -2018-12-26 16:00:00,84.53175319,125.1969603,37.132115,201.2906796,17.95030255,17.68895227,0,17.68895227,17.4090347,0.279917568,30.63459192,21.09021289,9.544379033,0.541267852,9.003111182,1.475357416,2.185099171,-5.962171412,5.962171412,0.45025495,0.45025495,0.483417186,0.200424101,6.446328038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73422634,0.392146716,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.145206579,6.196455708,16.87943292,6.588602424,0,21.09021289,-0.10477491,96.01419834,0.10477491,83.98580166,0,0.572786516,16.87943292,18.66879197,29.09778389,12,8,72% -2018-12-26 17:00:00,75.6095999,135.7637981,185.622457,552.1254644,48.40404172,102.2011783,53.85739658,48.34378176,46.94448127,1.399300488,46.46587422,0,46.46587422,1.45956045,45.00631377,1.319636464,2.369525282,-1.599901908,1.599901908,0.80375303,0.80375303,0.260766087,1.196300586,38.4771391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.12482102,1.057446577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866715702,36.98568965,45.99153672,38.04313623,53.85739658,0,0.097545576,84.40214873,-0.097545576,95.59785127,0.537419092,0,74.93552991,38.04313623,99.83400171,12,9,33% -2018-12-26 18:00:00,68.31301443,148.0296103,320.0943442,694.7945108,63.3429682,259.3153101,195.4693597,63.84595037,61.432944,2.413006375,79.52060388,0,79.52060388,1.910024202,77.61057968,1.192287024,2.583604089,-0.521533462,0.521533462,0.619341164,0.619341164,0.197888433,1.676241075,53.91367501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.05168249,1.383806032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214430953,51.82387513,60.26611344,53.20768116,195.4693597,0,0.281334059,73.66015836,-0.281334059,106.3398416,0.87227534,0,230.7692156,53.20768116,265.5925788,12,10,15% -2018-12-26 19:00:00,63.31367633,162.0900586,410.9308077,756.4203158,71.21810145,399.8241191,327.6557361,72.16838293,69.07061293,3.097770006,101.7824204,0,101.7824204,2.147488526,99.63493191,1.105032114,2.829005208,0.07255629,-0.07255629,0.517745833,0.517745833,0.173309229,1.862766335,59.91296856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39330037,1.555848126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349567869,57.59062428,67.74286824,59.14647241,327.6557361,0,0.43316623,64.3313345,-0.43316623,115.6686655,0.934570872,0,373.9603754,59.14647241,412.6705587,12,11,10% -2018-12-26 20:00:00,61.20523626,177.461943,448.4133574,776.9676238,74.16857554,496.8683923,421.5559436,75.31244863,71.93211933,3.380329299,110.9594663,0,110.9594663,2.236456205,108.7230101,1.068232892,3.097295202,0.545947586,-0.545947586,0.436791154,0.436791154,0.165402244,1.791395914,57.61745049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14388918,1.620304908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297860242,55.38408499,70.44174942,57.0043899,421.5559436,0,0.54256565,57.14153488,-0.54256565,122.8584651,0.957845253,0,474.227109,57.0043899,511.5353421,12,12,8% -2018-12-26 21:00:00,62.29047416,193.042857,429.1934497,766.727187,72.67355578,535.3267943,461.6091729,73.71762145,70.48217994,3.235441516,106.2542967,0,106.2542967,2.191375844,104.0629209,1.087173867,3.369233452,1.038159663,-1.038159663,0.352617931,0.352617931,0.169325874,1.495539051,48.10167675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.75015227,1.587644339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.083512951,46.23716133,68.83366523,47.82480567,461.6091729,0,0.602051395,52.98304027,-0.602051395,127.0169597,0.966950612,0,515.1869374,47.82480567,546.4873162,12,13,6% -2018-12-26 22:00:00,66.4090712,207.6158829,354.9569153,720.7543714,66.50817111,505.0987138,437.9201943,67.17851952,64.50270436,2.675815162,88.0688804,0,88.0688804,2.005466748,86.06341365,1.159056946,3.623580736,1.691415164,-1.691415164,0.240904661,0.240904661,0.187369701,1.02520146,32.97400306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.00245291,1.452953832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742754968,31.69586597,62.74520788,33.1488198,437.9201943,0,0.607585901,52.58484814,-0.607585901,127.4151519,0.96770711,0,486.5236933,33.1488198,508.2189329,12,14,4% -2018-12-26 23:00:00,73.03305681,220.4764065,232.9807729,612.2550953,54.31254256,396.6063228,342.1751963,54.43112648,52.67481901,1.756307478,58.1266093,0,58.1266093,1.63772355,56.48888575,1.274667304,3.848039216,2.852025875,-2.852025875,0.04242854,0.04242854,0.233120278,0.466576895,15.0067168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.63303961,1.186525137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338033372,14.42502699,50.97107299,15.61155213,342.1751963,0,0.558876846,56.02184034,-0.558876846,123.9781597,0.960534851,0,379.6422743,15.61155213,389.859723,12,15,3% -2018-12-26 00:00:00,81.50720302,231.5615571,82.236951,350.1633605,30.52304901,191.1867003,160.9640969,30.22260334,29.60266646,0.619936874,20.85968342,0,20.85968342,0.920382546,19.93930088,1.422569057,4.041511592,6.353122549,-6.353122549,0,0,0.371159784,0.230095636,7.400666616,0.35744799,1,0.156121981,0,0.944583585,0.983345548,0.724496596,1,28.69949391,0.666814021,0.052289665,0.312029739,0.86244134,0.586937936,0.961238037,0.922476074,0.157711248,7.113802249,28.85720515,7.78061627,103.427804,0,0.459682865,62.63335472,-0.459682865,117.3666453,0.941229359,0,126.2064908,7.78061627,131.2987485,12,16,4% -2018-12-26 01:00:00,91.47078946,241.1938805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596466446,4.209627351,-38.48813375,38.48813375,1,0,#DIV/0!,0,0,1,0.836387761,0,0.02597619,0.961238037,1,0.653474075,0.928977479,0,0,0.115824807,0.231404418,0.724496596,0.448993192,0.973323665,0.934561701,0,0,0,0,0,0,0.313757697,71.71416663,-0.313757697,108.2858334,0.890641359,0,0,0,0,12,17,0% -2018-12-26 02:00:00,102.2402835,249.8376314,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784429575,4.360489264,-4.609472117,4.609472117,1,0.681580153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135017622,82.2403611,-0.135017622,97.7596389,0.67967797,0,0,0,0,12,18,0% -2018-12-26 03:00:00,113.6077004,258.009713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982828427,4.503118993,-2.265749938,2.265749938,1,0.917619749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065981998,93.78323856,0.065981998,86.21676144,0,0,0,0,0,12,19,0% -2018-12-26 04:00:00,125.3249182,266.3315381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187332457,4.648362242,-1.354114121,1.354114121,1,0.761720843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27555198,105.9949113,0.27555198,74.00508874,0,0.868546033,0,0,0,12,20,0% -2018-12-26 05:00:00,137.1492434,275.756735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.393705864,4.81286296,-0.835491651,0.835491651,1,0.673031177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47941979,118.6475144,0.47941979,61.35248558,0,0.945707267,0,0,0,12,21,0% -2018-12-26 06:00:00,148.7229567,288.2630636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.595705267,5.031139572,-0.476963553,0.476963553,1,0.611719261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663701404,131.5827776,0.663701404,48.41722236,0,0.974664918,0,0,0,12,22,0% -2018-12-26 07:00:00,159.1559204,309.1836915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777794835,5.396273411,-0.195050826,0.195050826,1,0.563509345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815846607,144.6711586,0.815846607,35.32884136,0,0.98871397,0,0,0,12,23,0% -2018-12-27 08:00:00,165.3167222,350.9646493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885321111,6.125488688,0.049839576,-0.049839576,1,0.52163062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925493368,157.7428686,0.925493368,22.25713142,0,0.995974761,0,0,0,12,0,0% -2018-12-27 09:00:00,161.9525984,39.94566893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826606074,0.697183445,0.282026426,-0.282026426,1,0.48192433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985173249,170.1213253,0.985173249,9.878674659,0,0.999247505,0,0,0,12,1,0% -2018-12-27 10:00:00,152.3812955,66.17908809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.659555325,1.155042983,0.522040145,-0.522040145,1,0.440879567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990819877,172.230471,0.990819877,7.769528984,0,0.999536741,0,0,0,12,2,0% -2018-12-27 11:00:00,141.0325449,80.58122634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461482261,1.406407715,0.795090043,-0.795090043,1,0.394185284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942045881,160.3980236,0.942045881,19.60197638,0,0.996924029,0,0,0,12,3,0% -2018-12-27 12:00:00,129.2379582,90.7173355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255627888,1.583316193,1.145286546,-1.145286546,1,0.334298155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842169499,147.3699274,0.842169499,32.63007256,0,0.990629529,0,0,0,12,4,0% -2018-12-27 13:00:00,117.4541677,99.26932656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049961947,1.732576595,1.679010363,-1.679010363,1,0.243026007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69798895,134.2658791,0.69798895,45.73412094,0,0.978365628,0,0,0,12,5,0% -2018-12-27 14:00:00,105.9423139,107.4116332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849042195,1.874686655,2.780585716,-2.780585716,1,0.054645527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.519319903,121.286643,0.519319903,58.71335699,0,0.953720232,0,0,0,12,6,0% -2018-12-27 15:00:00,94.94067674,115.8378524,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657027403,2.021751923,8.059317795,-8.059317795,1,0,#DIV/0!,0,0,0.458895197,1,0.123449027,0,0.948538575,0.987300538,0.724496596,1,0,0,0.064467174,0.312029739,0.833504706,0.558001302,0.961238037,0.922476074,0,0,0,0,0,0,-0.318327427,108.5618049,0.318327427,71.43819511,0,0.892929023,0,0,0,12,7,0% -2018-12-27 16:00:00,84.58084957,125.0873919,36.35869036,197.0100237,17.75285434,17.49162745,0,17.49162745,17.21754028,0.274087166,30.25891628,20.90801679,9.350899484,0.535314059,8.815585425,1.476214309,2.183186841,-6.033056817,6.033056817,0.438132832,0.438132832,0.488269906,0.195280435,6.280890057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.55015462,0.387833214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.14148001,6.037430428,16.69163463,6.425263642,0,20.90801679,-0.106126665,96.09208243,0.106126665,83.90791757,0,0.578864871,16.69163463,18.52818009,28.81795794,12,8,73% -2018-12-27 17:00:00,75.64417461,135.6450399,184.7159277,549.3202089,48.51580343,101.3719524,52.92661281,48.44533964,47.05287295,1.392466687,46.24944571,0,46.24944571,1.462930478,44.78651523,1.320239907,2.36745256,-1.611303247,1.611303247,0.805702773,0.805702773,0.262650893,1.192975105,38.37018021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.22901122,1.059888151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864306403,36.8828767,46.09331762,37.94276485,52.92661281,0,0.096349291,84.47101521,-0.096349291,95.52898479,0.531054823,0,74.20025063,37.94276485,99.03303137,12,9,33% -2018-12-27 18:00:00,68.32738172,147.9011257,319.5080448,692.9585194,63.59660529,258.4010106,194.313491,64.0875196,61.678933,2.408586602,79.38609688,0,79.38609688,1.917672296,77.46842459,1.19253778,2.581361612,-0.527433481,0.527433481,0.620350127,0.620350127,0.199045396,1.676178015,53.9116468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.28813647,1.389347051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214385266,51.82192553,60.50252174,53.21127258,194.313491,0,0.280411432,73.71523819,-0.280411432,106.2847618,0.87169058,0,229.8837613,53.21127258,264.709475,12,10,15% -2018-12-27 19:00:00,63.30315475,161.9558644,410.7779664,755.0699402,71.5478391,399.1334224,326.6463969,72.48702559,69.39040777,3.096617824,101.7553051,0,101.7553051,2.157431332,99.59787377,1.104848477,2.826663076,0.067868553,-0.067868553,0.518547484,0.518547484,0.174176429,1.865418566,59.99827342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.70069934,1.563051656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351489401,57.67262255,68.05218874,59.23567421,326.6463969,0,0.432604159,64.36705947,-0.432604159,115.6329405,0.934420899,0,373.2774084,59.23567421,412.0459725,12,11,10% -2018-12-27 20:00:00,61.16740984,177.3314387,448.7328201,775.914255,74.54658439,496.5570122,420.8755449,75.68146736,72.29872982,3.382737543,111.048322,0,111.048322,2.247854567,108.8004675,1.067572697,3.095017473,0.541146407,-0.541146407,0.437612204,0.437612204,0.166126882,1.796368725,57.77739318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.49628912,1.628562982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301463026,55.537828,70.79775214,57.16639098,420.8755449,0,0.542425329,57.1511054,-0.542425329,122.8488946,0.957821414,0,473.9213615,57.16639098,511.3356211,12,12,8% -2018-12-27 21:00:00,62.22693269,192.9271564,429.9786015,765.9177097,73.08332958,535.4828805,461.3619226,74.12095787,70.87959754,3.241360322,106.4570221,0,106.4570221,2.203732036,104.25329,1.086064859,3.367214095,1.032152421,-1.032152421,0.35364523,0.35364523,0.16996969,1.502389795,48.32202025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.1321652,1.596596358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088476292,46.44896388,69.22064149,48.04556024,461.3619226,0,0.602364871,52.96054251,-0.602364871,127.0394575,0.966993832,0,515.3547748,48.04556024,546.799633,12,13,6% -2018-12-27 22:00:00,66.32492884,207.5216395,356.1603079,720.2679576,66.93718293,505.781421,438.1777543,67.60366674,64.9187799,2.684886844,88.37359316,0,88.37359316,2.018403037,86.35519013,1.157588384,3.621935879,1.682133962,-1.682133962,0.24249184,0.24249184,0.187941164,1.033302344,33.23455534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.40240054,1.46232613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748624031,31.94631873,63.15102457,33.40864486,438.1777543,0,0.608353807,52.52943253,-0.608353807,127.4705675,0.967810985,0,487.2242687,33.40864486,509.0895586,12,14,4% -2018-12-27 23:00:00,72.93455993,220.4038009,234.5027593,612.5048251,54.75479508,397.9155163,343.0439994,54.87151684,53.10373599,1.767780854,58.50896807,0,58.50896807,1.651059095,56.85790897,1.272948209,3.846772009,2.832522106,-2.832522106,0.045763881,0.045763881,0.23349318,0.474775569,15.27041433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.04533093,1.196186694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343973283,14.67850309,51.38930421,15.87468978,343.0439994,0,0.560067424,55.93953933,-0.560067424,124.0604607,0.960725034,0,380.9602624,15.87468978,391.3499293,12,15,3% -2018-12-27 00:00:00,81.40023979,231.5069646,83.7805071,352.8734647,31.01491261,193.465542,162.7542706,30.71127141,30.07969856,0.631572852,21.24876797,0,21.24876797,0.935214048,20.31355392,1.420702196,4.040558773,6.270930449,-6.270930449,0,0,0.370192467,0.233803512,7.519924641,0.35159189,1,0.158134518,0,0.944332054,0.983094018,0.724496596,1,29.16123379,0.677559394,0.051555763,0.312029739,0.864222871,0.588719466,0.961238037,0.922476074,0.160292001,7.228437599,29.32152579,7.905996993,105.531189,0,0.461225586,62.53377935,-0.461225586,117.4662207,0.941593178,0,128.6889734,7.905996993,133.8632903,12,16,4% -2018-12-27 01:00:00,91.35698894,241.1528285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594480252,4.208910857,-41.71256826,41.71256826,1,0,#DIV/0!,0,0,1,0.849926981,0,0.023968999,0.961238037,1,0.658773498,0.934276902,0,0,0.115824807,0.237411852,0.724496596,0.448993192,0.972470527,0.933708564,0,0,0,0,0,0,0.315602512,71.60280928,-0.315602512,108.3971907,0.891572871,0,0,0,0,12,17,0% -2018-12-27 02:00:00,102.123201,249.8060928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782386099,4.359938811,-4.655358355,4.655358355,1,0.673733144,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13704153,82.12331173,-0.13704153,97.87668827,0.685147097,0,0,0,0,12,18,0% -2018-12-27 03:00:00,113.488822,257.9841138,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980753608,4.502672203,-2.278764942,2.278764942,1,0.919845446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063894425,93.66337642,0.063894425,86.33662358,0,0,0,0,0,12,19,0% -2018-12-27 04:00:00,125.2051963,266.3078614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185242916,4.647949006,-1.360294201,1.360294201,1,0.762777698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.273520361,105.8738567,0.273520361,74.12614326,0,0.867198252,0,0,0,12,20,0% -2018-12-27 05:00:00,137.0294689,275.7278954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391615404,4.812359615,-0.83920509,0.83920509,1,0.673666212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477559722,118.5261445,0.477559722,61.47385549,0,0.945301053,0,0,0,12,21,0% -2018-12-27 06:00:00,148.6047063,288.2096033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593641408,5.030206513,-0.479537236,0.479537236,1,0.612159387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662116523,131.4614913,0.662116523,48.5385087,0,0.974484591,0,0,0,12,22,0% -2018-12-27 07:00:00,159.046632,309.0343739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.775887393,5.393667326,-0.19702684,0.19702684,1,0.563847264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81462147,144.5499509,0.81462147,35.45004911,0,0.988621799,0,0,0,12,23,0% -2018-12-28 08:00:00,165.2554141,350.5508303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884251084,6.118266184,0.048189747,-0.048189747,1,0.521912758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924687653,157.6213027,0.924687653,22.37869729,0,0.995927687,0,0,0,12,0,0% -2018-12-28 09:00:00,161.9756014,39.55940459,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827007553,0.69044186,0.280537065,-0.280537065,1,0.482179026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984817653,170.0032672,0.984817653,9.996732798,0,0.99922918,0,0,0,12,1,0% -2018-12-28 10:00:00,152.4407295,65.94930785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660592643,1.151032561,0.520578863,-0.520578863,1,0.441129461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990914011,172.2704694,0.990914011,7.729530599,0,0.999541535,0,0,0,12,2,0% -2018-12-28 11:00:00,141.1029209,80.42265053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462710555,1.403640045,0.793501702,-0.793501702,1,0.394456907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942558297,160.4857253,0.942558297,19.5142747,0,0.996952883,0,0,0,12,3,0% -2018-12-28 12:00:00,129.3103747,90.59034248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256891796,1.581099747,1.143291279,-1.143291279,1,0.334639366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843039847,147.4625259,0.843039847,32.53747406,0,0.990690822,0,0,0,12,4,0% -2018-12-28 13:00:00,117.5242899,99.15649919,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05118581,1.730607386,1.675843759,-1.675843759,1,0.243567528,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699132123,134.3574155,0.699132123,45.64258453,0,0.97848276,0,0,0,12,5,0% -2018-12-28 14:00:00,106.0070401,107.3036771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85017188,1.872802464,2.772724203,-2.772724203,1,0.055989925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520631877,121.3746461,0.520631877,58.62535388,0,0.953962853,0,0,0,12,6,0% -2018-12-28 15:00:00,94.99699797,115.7287423,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658010394,2.019847592,7.983636383,-7.983636383,1,0,#DIV/0!,0,0,0.455079043,1,0.124607251,0,0.948402539,0.987164502,0.724496596,1,0,0,0.064026714,0.312029739,0.834530799,0.559027395,0.961238037,0.922476074,0,0,0,0,0,0,-0.319692409,108.6443241,0.319692409,71.35567589,0,0.893599665,0,0,0,12,7,0% -2018-12-28 16:00:00,84.62429088,124.9727242,35.66513842,193.0591464,17.57815473,17.31696738,0,17.31696738,17.0481085,0.268858878,29.91364212,20.73617017,9.177471948,0.530046221,8.647425727,1.476972503,2.181185512,-6.099529183,6.099529183,0.426765388,0.426765388,0.492866578,0.190699874,6.13356346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.38729035,0.384016683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.138161409,5.895814499,16.52545176,6.279831182,0,20.73617017,-0.10740838,96.16594147,0.10740838,83.83405853,0,0.584486974,16.52545176,18.39985254,28.56778725,12,8,73% -2018-12-28 17:00:00,75.67240896,135.5219178,183.9262043,546.6826068,48.64105528,100.624194,52.06333256,48.56086141,47.17434799,1.386513419,46.06174495,0,46.06174495,1.466707283,44.59503767,1.320732689,2.365303674,-1.622276303,1.622276303,0.807579276,0.807579276,0.264459626,1.190275723,38.28335879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.34577766,1.062624434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.862350709,36.79942065,46.20812837,37.86204508,52.06333256,0,0.095235027,84.53515283,-0.095235027,95.46484717,0.524983083,0,73.54049721,37.86204508,98.32044848,12,9,34% -2018-12-28 18:00:00,68.33480496,147.7693199,319.0497477,691.2269604,63.86100435,257.5937676,193.2532764,64.34049121,61.93535944,2.405131765,79.28295005,0,79.28295005,1.925644903,77.35730515,1.19266734,2.579061166,-0.533293626,0.533293626,0.621352271,0.621352271,0.200160021,1.676719351,53.92905802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.53462332,1.395123177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214777462,51.83866186,60.74940078,53.23378503,193.2532764,0,0.279580062,73.7648569,-0.279580062,106.2351431,0.871160351,0,229.103993,53.23378503,263.9444406,12,10,15% -2018-12-28 19:00:00,63.28522695,161.8198462,410.7579218,753.8002966,71.88750415,398.5637854,325.747488,72.81629738,69.71983066,3.096466719,101.7606872,0,101.7606872,2.167673487,99.59301372,1.104535578,2.824289111,0.063101165,-0.063101165,0.519362755,0.519362755,0.175011851,1.868655639,60.1023888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01735315,1.570472062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353834649,57.77270222,68.3711878,59.34317429,325.747488,0,0.432140302,64.39653403,-0.432140302,115.603466,0.934296837,0,372.7160354,59.34317429,411.5549561,12,11,10% -2018-12-28 20:00:00,61.12200802,177.2010163,449.1856159,774.9339176,74.93432519,496.3754226,420.3144929,76.06092971,72.6747788,3.386150909,111.1697994,0,111.1697994,2.259546383,108.9102531,1.066780285,3.092741172,0.536191587,-0.536191587,0.438459528,0.438459528,0.166822629,1.801896815,57.95519554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.85776171,1.637033662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305468108,55.70873839,71.16322981,57.34577205,420.3144929,0,0.542387529,57.15368332,-0.542387529,122.8463167,0.95781499,0,473.7467515,57.34577205,511.2784124,12,12,8% -2018-12-28 21:00:00,62.15603377,192.8135144,430.8937977,765.1837203,73.50304076,535.7740796,461.2391673,74.53491234,71.28665288,3.248259458,106.6915779,0,106.6915779,2.216387876,104.47519,1.084827439,3.365230669,1.025908099,-1.025908099,0.354713072,0.354713072,0.170582731,1.509751622,48.5588019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52344227,1.605765471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.093809911,46.67656741,69.61725218,48.28233288,461.2391673,0,0.602782254,52.93057716,-0.602782254,127.0694228,0.967051307,0,515.6591918,48.28233288,547.259013,12,13,6% -2018-12-28 22:00:00,66.23398055,207.431091,357.4866875,719.8706815,67.37693978,506.6026462,438.5624841,68.04016211,65.34527645,2.694885653,88.70844954,0,88.70844954,2.031663329,86.67678621,1.156001037,3.620355509,1.672473757,-1.672473757,0.244143833,0.244143833,0.188473983,1.041851026,33.50951033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.81236525,1.471933166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754817522,32.21061593,63.56718278,33.68254909,438.5624841,0,0.609223983,52.46658697,-0.609223983,127.533413,0.967928379,0,488.064257,33.68254909,510.1088117,12,14,5% -2018-12-28 23:00:00,72.82998369,220.3360242,236.1362766,612.876724,55.21010404,399.3672496,344.0418389,55.3254107,53.5453157,1.780094997,58.91876248,0,58.91876248,1.66478834,57.25397414,1.27112301,3.845589082,2.812309915,-2.812309915,0.04922037,0.04922037,0.233806109,0.483328644,15.54551063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46979415,1.206133486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350169958,14.94293612,51.81996411,16.14906961,344.0418389,0,0.561355694,55.85039502,-0.561355694,124.149605,0.960929914,0,382.4200587,16.14906961,392.9893018,12,15,3% -2018-12-28 00:00:00,81.28795291,231.4579429,85.4154921,355.7750853,31.526717,195.8935487,164.6735805,31.21996822,30.57607016,0.643898059,21.6606218,0,21.6606218,0.950646839,20.70997497,1.41874242,4.039703183,6.187098255,-6.187098255,0,0,0.369098348,0.23766171,7.64401754,0.345507944,1,0.160240911,0,0.944067816,0.98282978,0.724496596,1,29.64158025,0.688740399,0.050789568,0.312029739,0.866087348,0.590583944,0.961238037,0.922476074,0.162981879,7.347720414,29.80456213,8.036460813,107.7775502,0,0.462858663,62.42827377,-0.462858663,117.5717262,0.941975664,0,131.3283915,8.036460813,136.5880944,12,16,4% -2018-12-28 01:00:00,91.23849721,241.1178998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592412181,4.208301237,-45.70045023,45.70045023,1,0,#DIV/0!,0,0,1,0.863860208,0,0.021878131,0.961238037,1,0.664327504,0.939830909,0,0,0.115824807,0.243709635,0.724496596,0.448993192,0.971567837,0.932805874,0,0,0,0,0,0,0.31752907,71.48644084,-0.31752907,108.5135592,0.892534103,0,0,0,0,12,17,0% -2018-12-28 02:00:00,102.0019728,249.7812285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780270269,4.359504847,-4.70379942,4.70379942,1,0.665449234,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139136565,82.00211389,-0.139136565,97.99788611,0.690640835,0,0,0,0,12,18,0% -2018-12-28 03:00:00,113.3661995,257.965903,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978613442,4.502354365,-2.292274652,2.292274652,1,0.922155742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061747063,93.54009812,0.061747063,86.45990188,0,0,0,0,0,12,19,0% -2018-12-28 04:00:00,125.0819541,266.2926363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183091933,4.647683277,-1.366630866,1.366630866,1,0.763861332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271440236,105.7499873,0.271440236,74.25001271,0,0.86579739,0,0,0,12,20,0% -2018-12-28 05:00:00,136.906143,275.7092025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389462961,4.812033362,-0.842966596,0.842966596,1,0.674309468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475661597,118.4024353,0.475661597,61.59756473,0,0.944883252,0,0,0,12,21,0% -2018-12-28 06:00:00,148.4824214,288.16909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591507135,5.029499423,-0.482109944,0.482109944,1,0.612599346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66050248,131.338206,0.66050248,48.66179399,0,0.974300057,0,0,0,12,22,0% -2018-12-28 07:00:00,158.9318521,308.9019323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773884105,5.391355785,-0.198972661,0.198972661,1,0.564180019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813373901,144.4268927,0.813373901,35.57310727,0,0.988527656,0,0,0,12,23,0% -2018-12-29 08:00:00,165.1858514,350.1468643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.883036985,6.111215647,0.046593175,-0.046593175,1,0.522185787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923863603,157.4976152,0.923863603,22.50238482,0,0.995879457,0,0,0,12,0,0% -2018-12-29 09:00:00,161.9910893,39.16016634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827277867,0.683473838,0.27912489,-0.27912489,1,0.482420522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98444491,169.8809797,0.98444491,10.11902026,0,0.999209956,0,0,0,12,1,0% -2018-12-29 10:00:00,152.4945814,65.70631025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661532537,1.146791453,0.519225889,-0.519225889,1,0.441360833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990989191,172.3025625,0.990989191,7.697437536,0,0.999545363,0,0,0,12,2,0% -2018-12-29 11:00:00,141.1685325,80.25367645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463855692,1.400690891,0.792070053,-0.792070053,1,0.394701733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943047084,160.5697373,0.943047084,19.43026269,0,0.996980378,0,0,0,12,3,0% -2018-12-29 12:00:00,129.3782485,90.45491038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258076417,1.578736011,1.141541844,-1.141541844,1,0.334938537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843879346,147.5520651,0.843879346,32.44793485,0,0.990749824,0,0,0,12,4,0% -2018-12-29 13:00:00,117.5897845,99.03650391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052328906,1.728513073,1.673128525,-1.673128525,1,0.244031861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700235178,134.4458754,0.700235178,45.55412455,0,0.978595418,0,0,0,12,5,0% -2018-12-29 14:00:00,106.0668647,107.1894222,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851216017,1.87080834,2.76603214,-2.76603214,1,0.057134335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52189306,121.4593201,0.52189306,58.54067993,0,0.954194932,0,0,0,12,6,0% -2018-12-29 15:00:00,95.04800716,115.6139978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658900672,2.017844922,7.918768681,-7.918768681,1,0,#DIV/0!,0,0,0.451765059,1,0.125617327,0,0.948283652,0.987045615,0.724496596,1,0,0,0.063643138,0.312029739,0.835425635,0.559922231,0.961238037,0.922476074,0,0,0,0,0,0,-0.320995253,108.7231242,0.320995253,71.27687576,0,0.894234457,0,0,0,12,7,0% -2018-12-29 16:00:00,84.66202726,124.8530409,35.05053226,189.4387965,17.42694952,17.16568841,0,17.16568841,16.90146269,0.264225718,29.60049433,20.57660015,9.023894174,0.525486827,8.498407347,1.477631127,2.179096646,-6.161196125,6.161196125,0.416219719,0.416219719,0.497195004,0.186668166,6.00388988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.24632882,0.380713417,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135240451,5.771167322,16.38156927,6.151880739,0,20.57660015,-0.108618723,96.23569712,0.108618723,83.76430288,0,0.589674205,16.38156927,18.28537107,28.34897893,12,8,73% -2018-12-29 17:00:00,75.69426395,135.3945189,183.2537613,544.215593,48.78025285,99.9580877,51.26729519,48.6907925,47.30934825,1.381444259,45.90290067,0,45.90290067,1.470904603,44.43199606,1.321114131,2.363080144,-1.632792862,1.632792862,0.809377714,0.809377714,0.266189641,1.188206996,38.21682143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.47554503,1.065665378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860851924,36.7354624,46.33639696,37.80112778,51.26729519,0,0.094204017,84.59449209,-0.094204017,95.40550791,0.519237073,0,72.95627726,37.80112778,97.69635937,12,9,34% -2018-12-29 18:00:00,68.33526244,147.6342814,318.7197656,689.6010608,64.13639285,256.8940779,192.2889898,64.60508819,62.20244397,2.402644221,79.21124605,0,79.21124605,1.933948883,77.27729717,1.192675325,2.576704299,-0.539103053,0.539103053,0.622345741,0.622345741,0.2012313,1.677866407,53.96595127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.79135513,1.401139382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2156085,51.87412505,61.00696363,53.27526443,192.2889898,0,0.278840914,73.80896101,-0.278840914,106.191039,0.870686285,0,228.4303498,53.27526443,263.2979449,12,10,15% -2018-12-29 19:00:00,63.25988956,161.6820928,410.870616,752.6118077,72.23722192,398.1154901,324.9591707,73.1563194,70.05900315,3.097316256,101.7985565,0,101.7985565,2.178218768,99.62033774,1.104093357,2.821884862,0.058261972,-0.058261972,0.520190306,0.520190306,0.175815011,1.87247651,60.22528115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.34337865,1.578112082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356602857,57.89083102,68.69998151,59.46894311,324.9591707,0,0.431775276,64.41972355,-0.431775276,115.5802764,0.93419902,0,372.2765203,59.46894311,411.1977542,12,11,10% -2018-12-29 20:00:00,61.06904597,177.0707649,449.7712697,774.0265022,75.33186072,496.3234804,419.8725874,76.45089299,73.06032718,3.390565816,111.3237852,0,111.3237852,2.271533546,109.0522516,1.065855923,3.090467857,0.531091259,-0.531091259,0.439331735,0.439331735,0.167489268,1.807977356,58.15076666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.22836547,1.645718321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30987344,55.89672878,71.53823891,57.5424471,419.8725874,0,0.542452469,57.14925438,-0.542452469,122.8507456,0.957826026,0,473.7031306,57.5424471,511.3635113,12,12,8% -2018-12-29 21:00:00,62.07781145,192.7020215,431.9381619,764.5245441,73.93270239,536.1997001,461.2402091,74.95949094,71.70335863,3.256132316,106.9577519,0,106.9577519,2.22934376,104.7284082,1.083462202,3.363284751,1.019437629,-1.019437629,0.355819588,0.355819588,0.171165016,1.517620553,48.81189378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.92399568,1.615151965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.099510925,46.91984895,70.02350661,48.53500092,461.2402091,0,0.603303338,52.89315007,-0.603303338,127.1068499,0.967122951,0,516.099499,48.53500092,547.8646864,12,13,6% -2018-12-29 22:00:00,66.13627899,207.3443249,358.9348481,719.5609292,67.82739974,507.5610189,439.0730631,68.48795588,65.78215338,2.7058025,89.07315588,0,89.07315588,2.045246359,87.02790952,1.154295823,3.618841155,1.662453556,-1.662453556,0.245857388,0.245857388,0.188968555,1.050843392,33.79873575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.23230798,1.481774025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761332461,32.4886304,63.99364044,33.97040442,439.0730631,0,0.610195809,52.39633745,-0.610195809,127.6036626,0.96805909,0,489.0423102,33.97040442,511.2752605,12,14,5% -2018-12-29 23:00:00,72.71939697,220.2731552,237.8799767,613.3669571,55.67832143,400.959181,345.1665266,55.79265435,53.99941461,1.793239745,59.35566124,0,59.35566124,1.678906822,57.67675442,1.269192907,3.844491812,2.791437186,-2.791437186,0.052789816,0.052789816,0.234060564,0.492234207,15.83194413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.90629129,1.216362277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356622007,15.21826689,52.26291329,16.43462917,345.1665266,0,0.562740661,55.75445461,-0.562740661,124.2455454,0.961149125,0,384.0194184,16.43462917,394.7755545,12,15,3% -2018-12-29 00:00:00,81.17042133,231.4145577,87.14132395,358.858504,32.05798476,198.4670067,166.7187803,31.74822634,31.09131823,0.656908109,22.0950894,0,22.0950894,0.966666522,21.12842288,1.416691107,4.038945969,6.101897195,-6.101897195,0,0,0.367884986,0.24166663,7.772829559,0.339206548,1,0.162439472,0,0.943790951,0.982552914,0.724496596,1,30.140067,0.700346604,0.049991941,0.312029739,0.868033255,0.592529851,0.961238037,0.922476074,0.165779057,7.471539426,30.30584606,8.17188603,110.1666784,0,0.464580826,62.31690277,-0.464580826,117.6830972,0.942376101,0,134.1242909,8.17188603,139.4726269,12,16,4% -2018-12-29 01:00:00,91.11540623,241.0891461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590263838,4.20779939,-50.74124396,50.74124396,1,0,#DIV/0!,0,0,1,0.878158994,0,0.019705283,0.961238037,1,0.670135645,0.945639049,0,0,0.115824807,0.250297449,0.724496596,0.448993192,0.970614503,0.931852539,0,0,0,0,0,0,0.319535798,71.36514575,-0.319535798,108.6348542,0.89352301,0,0,0,0,12,17,0% -2018-12-29 02:00:00,101.8766969,249.7630756,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778083792,4.35918802,-4.754883171,4.754883171,1,0.656713399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141301017,81.87686251,-0.141301017,98.12313749,0.696145506,0,0,0,0,12,18,0% -2018-12-29 03:00:00,113.2399343,257.9551031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976409698,4.502165872,-2.306281524,2.306281524,1,0.924551058,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.059541655,93.41350447,0.059541655,86.58649553,0,0,0,0,0,12,19,0% -2018-12-29 04:00:00,124.9552949,266.2858689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180881313,4.647565165,-1.373121866,1.373121866,1,0.764971358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269313265,105.6234062,0.269313265,74.37659379,0,0.864342602,0,0,0,12,20,0% -2018-12-29 05:00:00,136.7793709,275.7006416,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387250372,4.811883946,-0.84677381,0.84677381,1,0.67496054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473726884,118.2764899,0.473726884,61.72351007,0,0.944453953,0,0,0,12,21,0% -2018-12-29 06:00:00,148.3562121,288.1414832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.589304367,5.029017594,-0.484679637,0.484679637,1,0.613038789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65886046,131.2130228,0.65886046,48.78697721,0,0.974111397,0,0,0,12,22,0% -2018-12-29 07:00:00,158.8117046,308.7863751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771787136,5.38933893,-0.200886541,0.200886541,1,0.564507311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812104724,144.3020813,0.812104724,35.69791869,0,0.988431586,0,0,0,12,23,0% -2018-12-30 08:00:00,165.1081154,349.753641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.881680235,6.104352606,0.04505139,-0.04505139,1,0.522449448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923021636,157.3719004,0.923021636,22.62809965,0,0.995830089,0,0,0,12,0,0% -2018-12-30 09:00:00,161.9989482,38.74871584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827415032,0.676292672,0.277791277,-0.277791277,1,0.482648583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984055002,169.754607,0.984055002,10.24539298,0,0.999189832,0,0,0,12,1,0% -2018-12-30 10:00:00,152.5427168,65.45033823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662372658,1.142323899,0.517982487,-0.517982487,1,0.441573467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991044976,172.3264623,0.991044976,7.673537743,0,0.999548203,0,0,0,12,2,0% -2018-12-30 11:00:00,141.2292587,80.07443185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464915564,1.397562482,0.790796248,-0.790796248,1,0.394919566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943511413,160.6498702,0.943511413,19.35012979,0,0.99700647,0,0,0,12,3,0% -2018-12-30 12:00:00,129.4414718,90.31113627,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259179871,1.576226679,1.140039155,-1.140039155,1,0.335195512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844686842,147.6383991,0.844686842,32.36160085,0,0.990806465,0,0,0,12,4,0% -2018-12-30 13:00:00,117.6505557,98.90942829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053389564,1.726295185,1.670864543,-1.670864543,1,0.244419024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701296726,134.5311333,0.701296726,45.46886668,0,0.978703503,0,0,0,12,5,0% -2018-12-30 14:00:00,106.1217043,107.0689541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852173148,1.868705776,2.760501127,-2.760501127,1,0.058080194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523101923,121.5405533,0.523101923,58.45944665,0,0.954416333,0,0,0,12,6,0% -2018-12-30 15:00:00,95.09363411,115.4937061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659697013,2.015745437,7.864280407,-7.864280407,1,0,#DIV/0!,0,0,0.448950033,1,0.126478455,0,0.948182112,0.986944075,0.724496596,1,0,0,0.063316523,0.312029739,0.836188508,0.560685104,0.961238037,0.922476074,0,0,0,0,0,0,-0.32223441,108.7981065,0.32223441,71.20189354,0,0.894833455,0,0,0,12,7,0% -2018-12-30 16:00:00,84.69400882,124.7284324,34.51405004,186.14924,17.29995385,17.0384779,0,17.0384779,16.77829641,0.260181488,29.32104481,20.43105635,8.889988461,0.521657439,8.368331023,1.478189311,2.176921816,-6.217680663,6.217680663,0.406560295,0.406560295,0.501243807,0.183172522,5.891457946,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.1279367,0.377939038,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.132707868,5.66309347,16.26064457,6.041032509,0,20.43105635,-0.109756324,96.30126893,0.109756324,83.69873107,0,0.594445385,16.26064457,18.18617967,28.16313544,12,8,73% -2018-12-30 17:00:00,75.70970177,135.2629362,182.6990607,541.9217857,48.93383582,99.37383961,50.53827679,48.83556282,47.45830013,1.377262692,45.77303817,0,45.77303817,1.475535697,44.29750247,1.321383572,2.360783593,-1.642825323,1.642825323,0.811093366,0.811093366,0.267838464,1.186773253,38.17070731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.61872324,1.069020589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859813182,36.69113576,46.47853643,37.76015635,50.53827679,0,0.093257511,84.64896273,-0.093257511,95.35103727,0.513850155,0,72.44763778,37.76015635,97.1609049,12,9,34% -2018-12-30 18:00:00,68.32873466,147.4961044,318.5183611,688.0818557,64.42298611,256.3024134,191.420892,64.88152134,62.48039539,2.401125949,79.17105506,0,79.17105506,1.942590727,77.22846434,1.192561394,2.574292656,-0.544850763,0.544850763,0.623328658,0.623328658,0.202258312,1.679620179,54.0223586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.0585326,1.407400369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216879102,51.92834593,61.2754117,53.3357463,191.420892,0,0.278194942,73.84749729,-0.278194942,106.1525027,0.870269917,0,227.8632555,53.3357463,262.7704348,12,10,15% -2018-12-30 19:00:00,63.22714238,161.5426985,411.1159138,751.5047463,72.59710564,397.7887598,324.2815594,73.50720047,70.40803505,3.099165414,101.8688836,0,101.8688836,2.18907059,99.67981303,1.103521811,2.819451972,0.053359129,-0.053359129,0.521028741,0.521028741,0.176585491,1.876879728,60.3669038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67888139,1.585974191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359792974,58.0269641,69.03867437,59.61293829,324.2815594,0,0.431509662,64.43659468,-0.431509662,115.5634053,0.93412774,0,371.9590744,59.61293829,410.9745502,12,11,10% -2018-12-30 20:00:00,61.00854314,176.9407794,450.4892072,773.19176,75.73924044,496.4009524,419.5495516,76.85140083,73.45542289,3.395977931,111.5101414,0,111.5101414,2.283817547,109.2263239,1.06479995,3.088199182,0.525853959,-0.525853959,0.440227366,0.440227366,0.168126648,1.814607062,58.36400078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.6081465,1.654618039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314676639,56.10169753,71.92282314,57.75631557,419.5495516,0,0.542620309,57.13780661,-0.542620309,122.8621934,0.957854536,0,473.7902643,57.75631557,511.5906177,12,12,8% -2018-12-30 21:00:00,61.99230515,192.5927729,433.1107017,763.9393592,74.37231195,536.7589303,461.3642465,75.39468376,72.12971234,3.264971416,107.2553036,0,107.2553036,2.24259961,105.012704,1.081969836,3.361378003,1.012752466,-1.012752466,0.356962818,0.356962818,0.171716634,1.52599213,49.08115247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.33382309,1.624755783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105576104,47.17867064,70.43939919,48.80342643,461.3642465,0,0.603927839,52.84827059,-0.603927839,127.1517294,0.967208652,0,516.6748901,48.80342643,548.6157566,12,13,6% -2018-12-30 22:00:00,66.03188303,207.2614327,360.503459,719.3369131,68.28850144,508.6550215,439.708043,68.94697851,66.22935116,2.717627351,89.46738767,0,89.46738767,2.059150276,87.40823739,1.15247377,3.617394413,1.652093094,-1.652093094,0.247629131,0.247629131,0.189425371,1.06027487,34.1020845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.66217149,1.491847365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768165534,32.78022076,64.43033703,34.27206812,439.708043,0,0.611268565,52.31871487,-0.611268565,127.6812851,0.968202893,0,490.1569365,34.27206812,512.5873196,12,14,5% -2018-12-30 23:00:00,72.60287526,220.2152751,239.732387,613.9714731,56.15927234,402.6887978,346.4157307,56.27306707,54.46586308,1.807203996,59.81930201,0,59.81930201,1.693409267,58.12589274,1.26715922,3.843481613,2.769952733,-2.769952733,0.056463874,0.056463874,0.234258179,0.501489944,16.12964045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3546593,1.226869249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363327757,15.50442393,52.71798705,16.73129317,346.4157307,0,0.564221215,55.65177142,-0.564221215,124.3482286,0.961382276,0,385.7559307,16.73129317,396.7062274,12,15,3% -2018-12-30 00:00:00,81.04773076,231.3768756,88.95729601,362.1137416,32.60819433,201.1820105,168.8864759,32.29553463,31.62493696,0.670597673,22.5519837,0,22.5519837,0.98325737,21.56872633,1.414549753,4.038288292,6.015590786,-6.015590786,0,0,0.366560089,0.245814343,7.906234239,0.332698472,1,0.164728367,0,0.943501556,0.982263519,0.724496596,1,30.65618523,0.712366618,0.049163798,0.312029739,0.870058943,0.594555539,0.961238037,0.922476074,0.168681514,7.599773079,30.82486675,8.312139697,112.6982034,0,0.466390685,62.19973804,-0.466390685,117.800262,0.942793742,0,137.0760276,8.312139697,142.5161568,12,16,4% -2018-12-30 01:00:00,90.9878143,241.0666179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588036939,4.207406199,-57.29330731,57.29330731,1,0,#DIV/0!,0,0,1,0.892794576,0,0.017452274,0.961238037,1,0.676197174,0.951700578,0,0,0.115824807,0.257174615,0.724496596,0.448993192,0.969609441,0.930847478,0,0,0,0,0,0,0.321621002,71.23901542,-0.321621002,108.7609846,0.894537516,0,0,0,0,12,17,0% -2018-12-30 02:00:00,101.747477,249.7516694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775828479,4.358988944,-4.808702304,4.808702304,1,0.647509785,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143533056,81.74765907,-0.143533056,98.25234093,0.701648189,0,0,0,0,12,18,0% -2018-12-30 03:00:00,113.110133,257.9517338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974144238,4.502107065,-2.320787621,2.320787621,1,0.927031747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.057280047,93.28370226,0.057280047,86.71629774,0,0,0,0,0,12,19,0% -2018-12-30 04:00:00,124.8253266,266.2875614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178612939,4.647594703,-1.379764644,1.379764644,1,0.76610734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267141197,105.494222,0.267141197,74.50577804,0,0.862833061,0,0,0,12,20,0% -2018-12-30 05:00:00,136.6492616,275.7021917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384979535,4.811911,-0.850624181,0.850624181,1,0.675618992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.471757125,118.1484159,0.471757125,61.85158408,0,0.94401326,0,0,0,12,21,0% -2018-12-30 06:00:00,148.2261907,288.1267315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587035066,5.028760128,-0.487244155,0.487244155,1,0.613477348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657191698,131.0860458,0.657191698,48.91395424,0,0.973918698,0,0,0,12,22,0% -2018-12-30 07:00:00,158.6863156,308.6876833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769598685,5.387616434,-0.202766653,0.202766653,1,0.564828829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810814792,144.1756153,0.810814792,35.82438468,0,0.988333636,0,0,0,12,23,0% -2018-12-31 08:00:00,165.0222962,349.3720055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880182408,6.097691811,0.043565982,-0.043565982,1,0.522703468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922162169,157.2442515,0.922162169,22.75574845,0,0.995779602,0,0,0,12,0,0% -2018-12-31 09:00:00,161.9990687,38.32587306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827417134,0.668912674,0.276537652,-0.276537652,1,0.482862966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983647897,169.6242853,0.983647897,10.3757147,0,0.999168803,0,0,0,12,1,0% -2018-12-31 10:00:00,152.584999,65.18166862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663110621,1.137634729,0.516849968,-0.516849968,1,0.441767139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991080889,172.3418876,0.991080889,7.658112357,0,0.999550031,0,0,0,12,2,0% -2018-12-31 11:00:00,141.2849757,79.88506326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46588801,1.394257377,0.7896815,-0.7896815,1,0.3951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943950407,160.7259253,0.943950407,19.27407469,0,0.997031116,0,0,0,12,3,0% -2018-12-31 12:00:00,129.4999343,90.1591298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260200234,1.573573666,1.138784241,-1.138784241,1,0.335410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845461126,147.7213755,0.845461126,32.27862455,0,0.990860675,0,0,0,12,4,0% -2018-12-31 13:00:00,117.706506,98.7753694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054366081,1.723955416,1.669052058,-1.669052058,1,0.244728978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702315316,134.6130586,0.702315316,45.38694145,0,0.978806906,0,0,0,12,5,0% -2018-12-31 14:00:00,106.1714743,106.9423663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853041798,1.866496402,2.756124754,-2.756124754,1,0.058828598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.524256889,121.6182309,0.524256889,58.38176915,0,0.954626909,0,0,0,12,6,0% -2018-12-31 15:00:00,95.13380826,115.367961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660398184,2.013550771,7.819815012,-7.819815012,1,0,#DIV/0!,0,0,0.446631307,1,0.127189933,0,0.948098089,0.986860053,0.724496596,1,0,0,0.063046946,0.312029739,0.836818799,0.561315395,0.961238037,0.922476074,0,0,0,0,0,0,-0.323408288,108.8691694,0.323408288,71.13083055,0,0.895396665,0,0,0,12,7,0% -2018-12-31 16:00:00,84.72018563,124.5989945,34.05498906,183.1903313,17.19785467,16.93599679,0,16.93599679,16.6792759,0.256720892,29.07671714,20.30111199,8.775605145,0.518578772,8.257026373,1.478646182,2.174662698,-6.26862634,6.26862634,0.397848071,0.397848071,0.505002502,0.180201714,5.795906553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.03275442,0.375708555,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.130555528,5.571245837,16.16330995,5.946954392,0,20.30111199,-0.110819779,96.36257437,0.110819779,83.63742563,0,0.598817002,16.16330995,18.10360542,28.01175762,12,8,73% -2018-12-31 17:00:00,75.71868586,135.127268,182.2625548,539.8034796,49.1022267,98.87168013,49.8760946,48.99558552,47.62161339,1.373972126,45.67227987,0,45.67227987,1.480613303,44.19166657,1.321540374,2.358415736,-1.652346858,1.652346858,0.812721644,0.812721644,0.26940381,1.185978592,38.14514828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77570617,1.072699298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859237452,36.66656745,46.63494362,37.73926674,49.8760946,0,0.092396764,84.69849376,-0.092396764,95.30150624,0.508855506,0,72.01466898,37.73926674,96.71426428,12,9,34% -2018-12-31 18:00:00,68.31520418,147.3548885,318.4457494,686.6701876,64.72098682,255.819222,190.6492332,65.16998885,62.76941027,2.400578571,79.16243533,0,79.16243533,1.951576548,77.21085878,1.192325242,2.571827973,-0.550525647,0.550525647,0.62429912,0.62429912,0.203240228,1.681981346,54.09830186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.33634471,1.413910565,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218589759,52.00134547,61.55493447,53.41525604,190.6492332,0,0.277643091,73.88041277,-0.277643091,106.1195872,0.86991268,0,227.4031199,53.41525604,262.3623367,12,10,15% -2018-12-31 19:00:00,63.18698824,161.4017627,411.4936061,750.4792373,72.96725641,397.5837616,323.7147246,73.86903702,70.76702441,3.102012618,101.9716209,0,101.9716209,2.200232001,99.7713889,1.102820989,2.816992177,0.048401061,-0.048401061,0.521876621,0.521876621,0.177322941,1.881863452,60.52719749,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02395561,1.594060595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363403665,58.18104449,69.38735928,59.77510509,323.7147246,0,0.431344011,64.44711525,-0.431344011,115.5528847,0.934083241,0,371.7638582,59.77510509,410.885469,12,11,11% -2018-12-31 20:00:00,60.94052299,176.8111597,451.3387591,772.4293076,76.15650067,496.6075196,419.3450362,77.2624834,73.86010119,3.402382212,111.728707,0,111.728707,2.296399483,109.4323076,1.063612774,3.08593689,0.520488575,-0.520488575,0.441144901,0.441144901,0.168734679,1.821782205,58.59477804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.99713867,1.663733608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.319875006,56.32352941,72.31701367,57.98726302,419.3450362,0,0.542891151,57.11933022,-0.542891151,122.8806698,0.957900507,0,474.0078363,57.98726302,511.9593402,12,12,8% -2018-12-31 21:00:00,61.89955929,192.4858686,434.4103153,763.427204,74.8218518,537.4508456,461.6103802,75.84046536,72.56569691,3.274768453,107.5839653,0,107.5839653,2.256154895,105.3278104,1.080351115,3.35951217,1.00586452,-1.00586452,0.358140726,0.358140726,0.172237742,1.534861437,49.36641986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.75290804,1.634576541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.112001886,47.45288051,70.86490992,49.08745705,461.6103802,0,0.604655398,52.79595131,-0.604655398,127.2040487,0.967308272,0,517.384449,49.08745705,549.5112079,12,13,6% -2018-12-31 22:00:00,65.92085731,207.1825095,362.1910718,719.196686,68.76016489,509.8829981,440.4658566,69.41714151,66.68679222,2.730349289,89.89079133,0,89.89079133,2.073372669,87.81741866,1.150536006,3.616016943,1.641412705,-1.641412705,0.249455585,0.249455585,0.189845002,1.070140449,34.41939543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.10188123,1.502151441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775313112,33.08523209,64.87719435,34.58738353,440.4658566,0,0.612441444,52.23375464,-0.612441444,127.7662454,0.968359542,0,491.4065095,34.58738353,514.0432602,12,14,5% -2018-12-31 23:00:00,72.48050025,220.1624669,241.6919175,614.6860319,56.65275678,404.5534316,347.7869887,56.7664429,54.94446714,1.821975765,60.30929325,0,60.30929325,1.708289643,58.60100361,1.265023373,3.842559936,2.747905957,-2.747905957,0.060234095,0.060234095,0.234400709,0.511093152,16.43851264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.81471173,1.237650031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370285249,15.80132362,53.18499697,17.03897365,347.7869887,0,0.565796147,55.54240452,-0.565796147,124.4575955,0.961628949,0,387.6270335,17.03897365,398.7787009,12,15,3% -2018-12-31 00:00:00,80.91997316,231.3449635,90.86257745,365.5306167,33.17678434,204.0344817,171.1731394,32.86134237,32.17638188,0.684960489,23.03108633,0,23.03108633,1.000402457,22.03068387,1.412319962,4.03773132,5.92843308,-5.92843308,0,0,0.365131447,0.250100614,8.04409547,0.325994799,1,0.167105627,0,0.943199743,0.981961707,0.724496596,1,31.18938772,0.724788175,0.048306102,0.312029739,0.872162645,0.596659241,0.961238037,0.922476074,0.171687048,7.732290538,31.36107477,8.457078712,115.3715862,0,0.468286736,62.07685778,-0.468286736,117.9231422,0.943227811,0,140.1827635,8.457078712,145.7177523,12,16,4% -2018-12-31 01:00:00,90.85582557,241.0503653,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585733301,4.207122537,-66.12798554,66.12798554,1,0,#DIV/0!,0,0,1,0.907738057,0,0.015121038,0.961238037,1,0.682511052,0.958014457,0,0,0.115824807,0.264340096,0.724496596,0.448993192,0.968551587,0.929789624,0,0,0,0,0,0,0.323782877,71.10814771,-0.323782877,108.8918523,0.895575528,0,0,0,0,12,17,0% -2018-12-31 02:00:00,101.6144221,249.7470431,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773506233,4.358908199,-4.865354812,4.865354812,1,0.637821635,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145830746,81.61461117,-0.145830746,98.38538883,0.707136775,0,0,0,0,12,18,0% -2018-12-31 03:00:00,112.9769068,257.9558115,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971819002,4.502178235,-2.335794634,2.335794634,1,0.929598097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054964185,93.15080366,0.054964185,86.84919634,0,0,0,0,0,12,19,0% -2018-12-31 04:00:00,124.6921609,266.2977113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176288759,4.647771854,-1.386556357,1.386556357,1,0.767268792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264925863,105.3625476,0.264925863,74.63745238,0,0.861267955,0,0,0,12,20,0% -2018-12-31 05:00:00,136.5159266,275.7138257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3826524,4.812114051,-0.854514985,0.854514985,1,0.676284358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469753923,118.0183243,0.469753923,61.98167568,0,0.943561293,0,0,0,12,21,0% -2018-12-31 06:00:00,148.0924716,288.124773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584701226,5.028725945,-0.489801229,0.489801229,1,0.613914633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65549747,130.9573815,0.65549747,49.04261845,0,0.973722055,0,0,0,12,22,0% -2018-12-31 07:00:00,158.5558122,308.6058127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767320971,5.386187523,-0.204611094,0.204611094,1,0.565144247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809504976,144.0475944,0.809504976,35.95240557,0,0.988233857,0,0,0,12,23,0% +timestamp UTC,apparent_zenith,azimuth,ghi,dni,dhi,poa_global_f,poa_direct_f,poa_diffuse_f,poa_sky_diffuse_f,poa_ground_diffuse_f,poa_global_b,poa_direct_b,poa_diffuse_b,poa_sky_diffuse_b,poa_ground_diffuse_b,solar_zenith,solar_azimuth,tan_phi_f,tan_phi_b,Fsky-gnd,df,POA_gnd-sky_f,POA_gnd-sky_b,Fx_f,Fx_b,psi_top_f,psi_top_b,Fnextrow-sky-front-shade,Fnextrow-sky-front-Noshade,Fnextrow-sky-back-shade,Fnextrow-sky-back-NOshade,POAsky-nextrow-f,POAsky-nextrow-b,psi_bot_f,psi_bot_b,Fnextrow-gnd-front-shade,Fnextrow-gnd-front-Noshade,Fnextrow-gnd-back-shade,Fnextrow-gnd-back-NOshade,POAgnd-nextrow-f,POAgnd-nextrow-b,poa_diffuse_sheds_f,poa_diffuse_sheds_b,poa_beam_sheds_f,poa_beam_sheds_b,cos_aoi_f,AOI_f,cos_aoi_b,AOI_b,iam_f,iam_b,poa_global_sheds_f,poa_global_sheds_b,poa_bifacial_sheds,month,hour,BG +1/1/2018 8:00,164.9034207,348.9030137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.87810764,6.089506359,0.041748175,-0.041748175,0.523014331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921048053,157.0797842,0.921048053,22.92021583,0,0.995714016,0,0,0,1,0,0% +1/1/2018 9:00,161.989496,37.77591193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827250058,0.659314041,0.275043485,-0.275043485,0.483118483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983108488,169.4540642,0.983108488,10.54593582,0,0.999140913,0,0,0,1,1,0% +1/1/2018 10:00,152.631317,64.82517022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663919024,1.131412658,0.515547605,-0.515547605,0.441989857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991100555,172.3503474,0.991100555,7.649652595,0,0.999551032,0,0,0,1,2,0% +1/1/2018 11:00,141.3494297,79.63235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467012944,1.389846708,0.788460715,-0.788460715,0.395318966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944474914,160.8171758,0.944474914,19.18282416,0,0.997060531,0,0,0,1,3,0% +1/1/2018 12:00,129.5681988,89.95619044,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261391675,1.570031706,1.137493917,-1.137493917,0.335630773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846401384,147.8223949,0.846401384,32.17760508,0,0.990926373,0,0,0,1,4,0% +1/1/2018 13:00,117.7715194,98.59677328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055500778,1.720838326,1.667302389,-1.667302389,0.245028189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703553512,134.7128026,0.703553512,45.28719739,0,0.9789322,0,0,0,1,5,0% +1/1/2018 14:00,106.2283483,106.7743418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854034437,1.863563821,2.751975557,-2.751975557,0.059538152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525654593,121.7123206,0.525654593,58.28767944,0,0.954880504,0,0,0,1,6,0% +1/1/2018 15:00,95.17804736,115.2018541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661170302,2.010651659,7.775378981,-7.775378981,0,#DIV/0!,0,0,0.444294536,1,0.127908939,0,0.94801306,0.986775023,0.724496596,1,0,0,0.062774769,0.312029739,0.837455753,0.561952349,0.961238037,0.922476074,0,0,0,0,0,0,-0.32481597,108.954426,0.32481597,71.04557404,0,0.896066682,0,0,0,1,7,0% +1/1/2018 16:00,84.74625363,124.4289979,33.60029708,180.2608368,17.0944016,16.83223555,0,16.83223555,16.57894232,0.253293232,28.8652617,20.20302138,8.662240318,0.51545928,8.146781038,1.479101155,2.171695698,-6.326179519,6.326179519,0.388005898,0.508757454,0.177143778,5.69755282,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93630997,0.373448494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128340064,5.476704488,16.06465003,5.850152981,0,20.20302138,-0.112076598,96.43503624,0.112076598,83.56496376,0,0.603876538,16.06465003,18.05028359,27.87819964,1,8,74% +1/1/2018 17:00,75.72216628,134.9503073,181.926759,537.8365704,49.28329531,98.3329472,49.16428432,49.16866288,47.79722212,1.371440756,45.59632219,0,45.59632219,1.48607319,44.110249,1.321601118,2.355327188,-1.66376966,1.66376966,0.814675058,0.270896352,1.186130185,38.15002403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.94450796,1.076654967,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859347281,36.67125421,46.80385524,37.74790917,49.16428432,0,0.091411196,84.75520262,-0.091411196,95.24479738,0.503021052,0,71.53452526,37.74790917,96.23977686,1,9,35% +1/1/2018 18:00,68.28948118,147.1721957,318.5970414,685.4430997,65.03976102,255.3886295,189.9083382,65.48029133,63.07857226,2.401719074,79.20873004,0,79.20873004,1.961188766,77.24754127,1.191876291,2.568639382,-0.557617858,0.557617858,0.625511959,0.204144272,1.685914438,54.22480363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63352296,1.420874585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221439272,52.12294379,61.85496224,53.54381838,189.9083382,0,0.277059231,73.91523144,-0.277059231,106.0847686,0.869533174,0,226.9865623,53.54381838,262.0299206,1,10,15% +1/1/2018 19:00,63.12703546,161.2212777,412.2249719,749.6649375,73.36603173,397.5592473,323.2979461,74.26130115,71.15377518,3.107525963,102.1609736,0,102.1609736,2.212256549,99.94871701,1.101774616,2.813842119,0.042060779,-0.042060779,0.522960873,0.177975709,1.888947723,60.75505198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39571517,1.602772339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368536195,58.40006689,69.76425137,60.00283923,323.2979461,0,0.431256592,64.4526669,-0.431256592,115.5473331,0.934059743,0,371.7438479,60.00283923,411.0145062,1,11,11% +1/1/2018 20:00,60.8451321,176.6473821,452.6684664,771.9194992,76.6109743,497.1436819,419.4304051,77.71327687,74.30087076,3.412406107,112.064814,0,112.064814,2.31010354,109.7547105,1.061947889,3.083078433,0.513546466,-0.513546466,0.442332072,0.169243011,1.831484327,58.90683163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42082315,1.673662151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32690416,56.6234872,72.74772731,58.29714935,419.4304051,0,0.543360293,57.08731715,-0.543360293,122.9126828,0.957980026,0,474.5536777,58.29714935,512.707996,1,12,8% +1/1/2018 21:00,61.77319689,192.3533458,436.3035114,763.2413046,75.31862258,538.6339794,462.2974511,76.33652838,73.04748822,3.289040164,108.0579721,0,108.0579721,2.271134367,105.7868377,1.078145675,3.357199212,0.996910125,-0.996910125,0.359672018,0.172628963,1.546543434,49.74215304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.21602417,1.645429118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.120465453,47.81404953,71.33648962,49.45947865,462.2974511,0,0.605702873,52.72056293,-0.605702873,127.2794371,0.967451275,0,518.586748,49.45947865,550.9569876,1,13,6% +1/1/2018 22:00,65.77211302,207.0874781,364.5618841,719.5252163,69.29252857,511.7750416,441.823717,69.95132465,67.20310317,2.748221474,90.48167496,0,90.48167496,2.089425399,88.39224956,1.147939928,3.614358332,1.627531715,-1.627531715,0.251829374,0.190070689,1.082894571,34.82961184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59817896,1.513781589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.784553431,33.47954771,65.38273239,34.9933293,441.823717,0,0.614048969,52.11715089,-0.614048969,127.8828491,0.968573269,0,493.3213744,34.9933293,516.2238085,1,14,5% +1/1/2018 23:00,72.31836992,220.1019037,244.3836152,616.186029,57.23090706,407.2827856,349.9353346,57.34745098,55.50518406,1.842266919,60.97935989,0,60.97935989,1.725723008,59.25363688,1.262193665,3.84150291,2.719408319,-2.719408319,0.065107478,0.234184714,0.523286737,16.83070024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.35369416,1.250280444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379119459,16.17830926,53.73281362,17.4285897,349.9353346,0,0.567905337,55.39571266,-0.567905337,124.6042873,0.961957158,0,390.3556135,17.4285897,401.7622769,1,15,3% +1/1/2018 0:00,80.75202477,231.3117387,93.44204989,370.5499601,33.89182317,208.0262619,174.4519966,33.5742653,32.86985966,0.704405642,23.67807035,0,23.67807035,1.021963516,22.65610683,1.40938871,4.037151438,5.817788295,-5.817788295,0,0.362704192,0.255490879,8.217464915,0.317288103,1,0.170223218,0,0.94280202,0.981563983,0.724496596,1,31.8596135,0.740409089,0.047185005,0.312029739,0.874921185,0.599417781,0.961238037,0.922476074,0.175479243,7.898939842,32.03509274,8.639348931,119.1004534,0,0.470792107,61.91427378,-0.470792107,118.0857262,0.943796011,0,144.4416255,8.639348931,150.0959066,1,16,4% +1/1/2018 1:00,90.09314715,241.0375941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572422051,4.206899639,-607.5998407,607.5998407,0,#DIV/0!,0,0,1,0.990332172,0,0.001645819,0.961238037,1,0.719840199,0.995343603,0,0,0.115824807,0.306738104,0.724496596,0.448993192,0.96207268,0.923310717,0,0,0,0,0,0,0.336316214,70.34740387,-0.336316214,109.6525961,0.901330391,0,0,0,0,1,17,0% +1/1/2018 2:00,101.4413707,249.7496077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770485917,4.35895296,-4.940984311,4.940984311,0.624888229,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148818167,81.44155619,-0.148818167,98.55844381,0.714019514,0,0,0,0,1,18,0% +1/1/2018 3:00,112.8041787,257.9702063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968804328,4.502429472,-2.355445598,2.355445598,0.93295861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.051968182,92.97889936,0.051968182,87.02110064,0,0,0,0,0,1,19,0% +1/1/2018 4:00,124.519822,266.3210234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173280878,4.648178725,-1.395341032,1.395341032,0.768771059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.262070866,105.1929755,0.262070866,74.80702446,0,0.85921191,0,0,0,1,20,0% +1/1/2018 5:00,136.3433689,275.7410052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3796407,4.812588423,-0.859487583,0.859487583,0.677134723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467179527,117.8513687,0.467179527,62.1486313,0,0.942974762,0,0,0,1,21,0% +1/1/2018 6:00,147.918875,288.1381007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581671394,5.028958557,-0.493024919,0.493024919,0.614465916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653323694,130.7926655,0.653323694,49.20733454,0,0.973468259,0,0,0,1,22,0% +1/1/2018 7:00,158.3845602,308.5232861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764332059,5.384747161,-0.206897381,0.206897381,0.565535226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807824035,143.8838753,0.807824035,36.11612471,0,0.988105333,0,0,0,1,23,0% +1/2/2018 8:00,164.7999617,348.5531096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876301938,6.083399381,0.040408095,-0.040408095,0.523243498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920155609,156.9488414,0.920155609,23.05115855,0,0.995661365,0,0,0,1,0,0% +1/2/2018 9:00,161.9714827,37.33285705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826935667,0.651581275,0.273987347,-0.273987347,0.483299094,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982664464,169.3159561,0.982664464,10.68404388,0,0.999117932,0,0,0,1,1,0% +1/2/2018 10:00,152.6593763,64.53023968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664408751,1.12626515,0.514682463,-0.514682463,0.442137805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991088848,172.3453105,0.991088848,7.654689473,0,0.999550436,0,0,0,1,2,0% +1/2/2018 11:00,141.392809,79.42156246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467770056,1.386167762,0.787723822,-0.787723822,0.395444982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944849564,160.8826119,0.944849564,19.11738814,0,0.997081523,0,0,0,1,3,0% +1/2/2018 12:00,129.6149205,89.78669813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262207123,1.567073507,1.136821617,-1.136821617,0.335745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847089735,147.8965298,0.847089735,32.10347024,0,0.990974376,0,0,0,1,4,0% +1/2/2018 13:00,117.81565,98.44791913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056271003,1.718240331,1.666543386,-1.666543386,0.245157986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704461203,134.7860318,0.704461203,45.21396816,0,0.97902377,0,0,0,1,5,0% +1/2/2018 14:00,106.2658112,106.6348717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854688288,1.861129609,2.750271181,-2.750271181,0.059829618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526672046,121.7808729,0.526672046,58.21912707,0,0.955064261,0,0,0,1,6,0% +1/2/2018 15:00,95.20514452,115.064749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661643237,2.008258722,7.753297076,-7.753297076,0,#DIV/0!,0,0,0.443125952,1,0.128269255,0,0.947970405,0.986732368,0.724496596,1,0,0,0.062638469,0.312029739,0.837774948,0.562271544,0.961238037,0.922476074,0,0,0,0,0,0,-0.325825919,109.0156205,0.325825919,70.98437946,0,0.896543823,0,0,0,1,7,0% +1/2/2018 16:00,84.75870568,124.2896642,33.31948709,178.0651046,17.05318418,16.79014413,0,16.79014413,16.53896776,0.251176368,28.70661784,20.11370601,8.592911827,0.514216423,8.078695404,1.479318484,2.169263867,-6.362837498,6.362837498,0.381737014,0.511808124,0.175363562,5.640294958,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.8978849,0.372548048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.127050304,5.421666053,16.02493521,5.794214101,0,20.11370601,-0.112957034,96.48580386,0.112957034,83.51419614,0,0.607353815,16.02493521,18.01035019,27.8123492,1,8,74% +1/2/2018 17:00,75.716093,134.8065037,181.7651625,536.1289453,49.48776739,98.02391348,48.65816229,49.36575119,47.99552861,1.370222573,45.56330682,0,45.56330682,1.492238777,44.07106805,1.32149512,2.352817343,-1.671957684,1.671957684,0.816075293,0.272262114,1.186819682,38.17220065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.1351277,1.081121914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85984682,36.69257121,46.99497452,37.77369313,48.65816229,0,0.09075832,84.79276583,-0.09075832,95.20723417,0.49908632,0,71.27959767,37.77369313,96.00172435,1,9,35% +1/2/2018 18:00,68.25984601,147.0252969,318.8201375,684.2786325,65.36482332,255.1585645,189.3613309,65.7972336,63.39383273,2.403400866,79.27262409,0,79.27262409,1.970990594,77.3016335,1.19135906,2.566075514,-0.563047023,0.563047023,0.626440401,0.205021,1.689658017,54.34520999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.93656332,1.427975976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.224151482,52.23868296,62.1607148,53.66665894,189.3613309,0,0.276731322,73.93478372,-0.276731322,106.0652163,0.869319333,0,226.7761806,53.66665894,261.8999355,1,10,15% +1/2/2018 19:00,63.07009543,161.0781124,412.9019959,748.8230515,73.75995617,397.6340556,322.9856046,74.648451,71.53582135,3.112629656,102.3370041,0,102.3370041,2.224134824,100.1128693,1.100780825,2.811343415,0.037039453,-0.037039453,0.52381957,0.178637926,1.895228697,60.9570697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.76295248,1.611378109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.373086739,58.59425401,70.13603922,60.20563212,322.9856046,0,0.431324335,64.44836485,-0.431324335,115.5516352,0.934077953,0,371.8297715,60.20563212,411.2331536,1,11,11% +1/2/2018 20:00,60.76033469,176.5198616,453.8106807,771.3161758,77.05060605,497.6416729,419.4934103,78.14826259,74.72724599,3.421016602,112.3550136,0,112.3550136,2.323360059,110.0316536,1.060467895,3.08085278,0.50795425,-0.50795425,0.443288397,0.169785792,1.839857341,59.17613655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83067123,1.683266454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.33297038,56.88235333,73.16364161,58.56561978,419.4934103,0,0.543866994,57.05272805,-0.543866994,122.947272,0.958065758,0,475.0659136,58.56561978,513.3959405,1,12,8% +1/2/2018 21:00,61.66455981,192.2529528,437.8807517,762.8858595,75.79014913,539.6193237,462.8135971,76.80572657,73.5047965,3.300930068,108.4546105,0,108.4546105,2.285352632,106.1692579,1.076249601,3.355447022,0.989643683,-0.989643683,0.360914653,0.173083993,1.556487874,50.06200041,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65560629,1.655730202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.127670166,48.12149899,71.78327645,49.7772292,462.8135971,0,0.606661654,52.65149175,-0.606661654,127.3485083,0.967581737,0,519.5932604,49.7772292,552.1714614,1,13,6% +1/2/2018 22:00,65.64680223,207.0186025,366.5047533,719.5592694,69.78700703,513.2922835,442.8467446,70.44553892,67.68267128,2.762867643,90.96765644,0,90.96765644,2.104335748,88.86332069,1.145752842,3.613156226,1.616256386,-1.616256386,0.253757569,0.190412284,1.093684733,35.17666053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05915807,1.524584086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792370866,33.81314411,65.85152893,35.3377282,442.8467446,0,0.615441651,52.01598157,-0.615441651,127.9840184,0.96875753,0,494.8626473,35.3377282,517.9904836,1,14,5% +1/2/2018 23:00,72.18364054,220.0614603,246.5689245,617.1195706,57.75060794,409.4302592,351.5623044,57.86795474,56.00921403,1.858740704,61.52488434,0,61.52488434,1.741393906,59.78349043,1.259842193,3.840797039,2.696376922,-2.696376922,0.069046079,0.234216895,0.533628129,17.16331495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.83818694,1.261633957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386611763,16.49803117,54.2247987,17.75966513,351.5623044,0,0.569682637,55.27190195,-0.569682637,124.728098,0.962231834,0,392.5092398,17.75966513,404.1325855,1,15,3% +1/2/2018 0:00,80.61380137,231.293595,95.53561455,374.2670527,34.49703247,211.1560583,176.9790509,34.17700747,33.45681966,0.720187817,24.20392863,0,24.20392863,1.040212809,23.16371582,1.406976257,4.036834772,5.72998241,-5.72998241,0,0.36109081,0.260053202,8.364204914,0.310216867,1,0.172780479,0,0.942474156,0.981236119,0.724496596,1,32.42673449,0.753630639,0.046268514,0.312029739,0.877183667,0.601680263,0.961238037,0.922476074,0.178694535,8.039991911,32.60542903,8.793622551,122.0771642,0,0.472868369,61.77934974,-0.472868369,118.2206503,0.944262329,0,147.8782964,8.793622551,153.6335465,1,16,4% +1/2/2018 1:00,89.97613348,241.0361034,0.005689293,1.032316604,0.005259282,0.354308523,0.349164939,0.005143583,0.005100695,4.29E-05,0.001538022,0,0.001538022,0.000158587,0.001379435,1.570379777,4.206873621,2371.35595,-2371.35595,0,0.924417538,3.96E-05,0.001275174,0.997536919,1,0.0004217,0,0.961200837,0.9999628,0.724496596,1,0.004903279,0.000114896,0.11563229,0.312029739,0.724865662,0.449362258,0.961238037,0.922476074,2.87E-05,0.001225746,0.004931991,0.001340641,0.000860021,0,0.338234354,70.23066218,-0.338234354,109.7693378,0.902173502,0,0.00570788,0.001340641,0.006585302,1,17,15% +1/2/2018 2:00,101.3007827,249.760765,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768032193,4.359147692,-5.004111721,5.004111721,0.614092806,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151244393,81.30095218,-0.151244393,98.69904782,0.719409232,0,0,0,0,1,18,0% +1/2/2018 3:00,112.6643712,257.9914856,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966364227,4.502800866,-2.371502606,2.371502606,0.93570452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04955025,92.84018321,0.04955025,87.15981679,0,0,0,0,0,1,19,0% +1/2/2018 4:00,124.3805974,266.3505953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17085095,4.648694852,-1.402416301,1.402416301,0.769981002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.259777731,105.0568739,0.259777731,74.94312608,0,0.857527767,0,0,0,1,20,0% +1/2/2018 5:00,136.2039063,275.7757088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.37720662,4.813194116,-0.863433685,0.863433685,0.677809546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465118918,117.7179185,0.465118918,62.28208152,0,0.94250061,0,0,0,1,21,0% +1/2/2018 6:00,147.7779449,288.1654077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5792117,5.029435155,-0.495538296,0.495538296,0.614895729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651587169,130.6613748,0.651587169,49.33862521,0,0.973264296,0,0,0,1,22,0% +1/2/2018 7:00,158.2436012,308.4804519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.761871862,5.383999564,-0.208639517,0.208639517,0.565833148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806480699,143.7534976,0.806480699,36.24650244,0,0.988002236,0,0,0,1,23,0% +1/3/2018 8:00,164.6887868,348.217291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.874361571,6.07753824,0.039130641,-0.039130641,0.523461956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919247375,156.8163002,0.919247375,23.18369985,0,0.995607677,0,0,0,1,0,0% +1/3/2018 9:00,161.9454058,36.88155813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826480539,0.643704623,0.273016763,-0.273016763,0.483465073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982203186,169.1743255,0.982203186,10.82567453,0,0.999094036,0,0,0,1,1,0% +1/3/2018 10:00,152.6811078,64.22381544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664788037,1.120917038,0.513933382,-0.513933382,0.442265905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991055509,172.330983,0.991055509,7.669016976,0,0.999548739,0,0,0,1,2,0% +1/3/2018 11:00,141.4307357,79.2012994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468432001,1.382323446,0.787151012,-0.787151012,0.395542939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945195592,160.9432406,0.945195592,19.05675937,0,0.997100896,0,0,0,1,3,0% +1/3/2018 12:00,129.6564834,89.60944613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262932531,1.563979876,1.136402133,-1.136402133,0.335817479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847740343,147.9667406,0.847740343,32.03325937,0,0.991019676,0,0,0,1,4,0% +1/3/2018 13:00,117.8546078,98.29248608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056950945,1.715527512,1.666240531,-1.666240531,0.245209777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705320532,134.8554452,0.705320532,45.1445548,0,0.979110245,0,0,0,1,5,0% +1/3/2018 14:00,106.2979008,106.4896593,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855248357,1.858595175,2.749717125,-2.749717125,0.059924367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.527629752,121.8454461,0.527629752,58.15455386,0,0.95523658,0,0,0,1,6,0% +1/3/2018 15:00,95.22653801,114.9225606,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662016623,2.005777068,7.740566681,-7.740566681,0,#DIV/0!,0,0,0.442450018,1,0.128477899,0,0.947945691,0.986707654,0.724496596,1,0,0,0.062559572,0.312029739,0.83795978,0.562456376,0.961238037,0.922476074,0,0,0,0,0,0,-0.326764748,109.0725261,0.326764748,70.92747393,0,0.896984718,0,0,0,1,7,0% +1/3/2018 16:00,84.76517326,124.1458739,33.11498782,176.1985456,17.03900199,16.77484798,0,16.77484798,16.52521322,0.249634766,28.58691977,20.0440188,8.542900967,0.513788777,8.02911219,1.479431364,2.166754252,-6.392963985,6.392963985,0.376585081,0.514540488,0.174084626,5.59915998,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.88466351,0.37223822,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126123719,5.382125547,16.01078723,5.754363767,0,20.0440188,-0.11375814,96.53200165,0.11375814,83.46799835,0,0.610471013,16.01078723,17.99065623,27.78531192,1,8,74% +1/3/2018 17:00,75.70344125,134.6589925,181.7234434,534.6023316,49.70830944,97.79815425,48.21882567,49.57932858,48.2094205,1.369908077,45.5598417,0,45.5598417,1.498888934,44.06095277,1.321274305,2.350242786,-1.679551262,1.679551262,0.817373871,0.273538232,1.188161139,38.2153465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.34072872,1.08593993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.8608187,36.73404465,47.20154742,37.81998458,48.21882567,0,0.090195689,84.82513497,-0.090195689,95.17486503,0.495649781,0,71.10119779,37.81998458,95.8536213,1,9,35% +1/3/2018 18:00,68.22315532,146.8757403,319.1725962,683.2232005,65.70186511,255.0385271,188.9117578,66.12676931,63.72071146,2.406057849,79.36824485,0,79.36824485,1.981153647,77.3870912,1.190718686,2.56346526,-0.568365748,0.568365748,0.627349957,0.205850583,1.694009536,54.48516979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.25077159,1.435339073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227304142,52.37321765,62.47807573,53.80855672,188.9117578,0,0.276500795,73.9485283,-0.276500795,106.0514717,0.869168693,0,226.6742614,53.80855672,261.8908856,1,10,16% +1/3/2018 19:00,63.00577216,160.9337883,413.7103397,748.0621341,74.1643875,397.8309514,322.7841705,75.04678087,71.92805758,3.118723293,102.5451916,0,102.5451916,2.236329921,100.3088616,1.099658172,2.808824484,0.031992552,-0.031992552,0.524682641,0.179266459,1.902081582,61.17748204,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.13998486,1.620213415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378051631,58.80612274,70.51803649,60.42633615,322.7841705,0,0.431493797,64.43760235,-0.431493797,115.5623977,0.934123479,0,372.0383088,60.42633615,411.5861373,1,11,11% +1/3/2018 20:00,60.6681226,176.3930915,455.0817144,770.7829737,77.50013574,498.2672565,419.6734377,78.59381889,75.1632207,3.430598191,112.6767455,0,112.6767455,2.336915038,110.3398304,1.05885849,3.078640225,0.502265452,-0.502265452,0.444261239,0.170299384,1.848760369,59.46248854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.24974671,1.69308699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339420594,57.15760575,73.5891673,58.85069274,419.6734377,0,0.544476788,57.0110836,-0.544476788,122.9889164,0.958168721,0,475.7071282,58.85069274,514.2237295,1,12,8% +1/3/2018 21:00,61.54886564,192.1552841,439.580686,762.5993652,76.27142918,540.7336174,463.4483084,77.28530907,73.97156418,3.313744891,108.8812916,0,108.8812916,2.299865001,106.5814266,1.074230356,3.353742383,0.982216162,-0.982216162,0.362184833,0.173509509,1.566910336,50.39722263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.10428114,1.666244365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.135221205,48.44372734,72.23950234,50.1099717,463.4483084,0,0.607721865,52.57503938,-0.607721865,127.4249606,0.967725521,0,520.7302579,50.1099717,553.5262321,1,13,6% +1/3/2018 22:00,65.51511894,206.9540478,368.5609988,719.6697298,70.29163963,514.9371562,443.9867004,70.95045583,68.17208734,2.77836849,91.48143349,0,91.48143349,2.119552283,89.3618812,1.143454535,3.612029535,1.604730504,-1.604730504,0.255728611,0.190719148,1.104888845,35.5370233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5296034,1.535608414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800488207,34.15953851,66.33009161,35.69514692,443.9867004,0,0.616931187,51.90762185,-0.616931187,128.0923782,0.968953684,0,496.5326405,35.69514692,519.8944003,1,14,5% +1/3/2018 23:00,72.04337504,220.0263865,248.8552109,618.1482791,58.28199999,411.7029638,353.3024055,58.40055835,56.52458265,1.875975697,62.09524438,0,62.09524438,1.757417337,60.33782704,1.257394099,3.840184886,2.672944069,-2.672944069,0.073053333,0.23420044,0.544304313,17.50669774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.33357886,1.273242878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394346622,16.82810376,54.72792548,18.10134664,353.3024055,0,0.571549606,55.14164465,-0.571549606,124.8583553,0.96251853,0,394.7880373,18.10134664,406.6350066,1,15,3% +1/3/2018 0:00,80.47086276,231.2814521,97.71462829,378.1119137,35.11852199,214.4088205,179.6126374,34.79618312,34.05956898,0.736614143,24.75099594,0,24.75099594,1.058953012,23.69204293,1.404481507,4.036622838,5.642057499,-5.642057499,0,0.359398819,0.264738253,8.514892245,0.302987727,1,0.175418572,0,0.942134397,0.98089636,0.724496596,1,33.00889805,0.767207852,0.045325966,0.312029739,0.879517409,0.604014005,0.961238037,0.922476074,0.182004413,8.184838306,33.19090247,8.952046158,125.1922126,0,0.475025068,61.63901781,-0.475025068,118.3609822,0.944742397,0,151.4652935,8.952046158,157.3242287,1,16,4% +1/3/2018 1:00,89.85522564,241.0410517,0.04180317,1.380137223,0.038315858,0.507027124,0.4695515,0.037475623,0.037160493,0.00031513,0.011291027,0,0.011291027,0.001155364,0.010135663,1.568269538,4.206959985,390.9301487,-390.9301487,0,0.916577807,0.000288841,0.009290123,0.9851462,1,0.002557996,0,0.961011723,0.999773686,0.724496596,1,0.035733065,0.000837058,0.114659066,0.312029739,0.726735965,0.45123256,0.961238037,0.922476074,0.000208729,0.00893002,0.035941794,0.009767078,0.006974624,0,0.34022088,70.10966816,-0.34022088,109.8903318,0.903036651,0,0.042240136,0.009767078,0.048632493,1,17,15% +1/3/2018 2:00,101.1567586,249.7788025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765518498,4.359462506,-5.070412186,5.070412186,0.602754759,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153729113,81.15690359,-0.153729113,98.84309641,0.724752563,0,0,0,0,1,18,0% +1/3/2018 3:00,112.5215388,258.0202501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963871332,4.503302901,-2.388060151,2.388060151,0.938536027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047085179,92.69877985,0.047085179,87.30122015,0,0,0,0,0,1,19,0% +1/3/2018 4:00,124.2385698,266.3885933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168372101,4.649358043,-1.409628218,1.409628218,0.771214312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.257447966,104.9186872,0.257447966,75.0813128,0,0.855785997,0,0,0,1,20,0% +1/3/2018 5:00,136.0616047,275.8203721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374722988,4.813973638,-0.867409729,0.867409729,0.67848949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463030618,117.5828413,0.463030618,62.41715869,0,0.94201578,0,0,0,1,21,0% +1/3/2018 6:00,147.6337028,288.2052425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576694201,5.030130404,-0.498035894,0.498035894,0.615322843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649829709,130.5287639,0.649829709,49.47123609,0,0.973056765,0,0,0,1,22,0% +1/3/2018 7:00,158.0979508,308.4541204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759329782,5.383539993,-0.210339209,0.210339209,0.566123813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805120536,143.6218977,0.805120536,36.37810226,0,0.987897498,0,0,0,1,23,0% +1/4/2018 8:00,164.5700037,347.8960104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.872288415,6.071930836,0.037916926,-0.037916926,0.523669513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918323494,156.6822059,0.918323494,23.3177941,0,0.995552956,0,0,0,1,0,0% +1/4/2018 9:00,161.9111996,36.42290178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82588353,0.635699559,0.272132661,-0.272132661,0.483616264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981724429,169.0292391,0.981724429,10.97076094,0,0.999069211,0,0,0,1,1,0% +1/4/2018 10:00,152.6964019,63.90624456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665054969,1.11537438,0.513301138,-0.513301138,0.442374025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990999977,172.3071778,0.990999977,7.692822192,0,0.999545912,0,0,0,1,2,0% +1/4/2018 11:00,141.4631114,78.97174068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468997064,1.378316891,0.786742918,-0.786742918,0.395612727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945512157,160.9988704,0.945512157,19.00112964,0,0.997118607,0,0,0,1,3,0% +1/4/2018 12:00,129.6928042,89.42455949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263566449,1.560752995,1.136235909,-1.136235909,0.335845905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848352162,148.0328913,0.848352162,31.96710873,0,0.991062212,0,0,0,1,4,0% +1/4/2018 13:00,117.8883239,98.13057701,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057539402,1.712701666,1.666393834,-1.666393834,0.245183561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706130334,134.9209345,0.706130334,45.0790655,0,0.979191542,0,0,0,1,5,0% +1/4/2018 14:00,106.3245622,106.338797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855713686,1.85596213,2.750310972,-2.750310972,0.059822813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.528526516,121.9059514,0.528526516,58.0940486,0,0.955397367,0,0,0,1,6,0% +1/4/2018 15:00,95.24218731,114.7753758,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662289755,2.003208208,7.73707592,-7.73707592,0,#DIV/0!,0,0,0.442264385,1,0.128535229,0,0.947938899,0.986700862,0.724496596,1,0,0,0.062537897,0.312029739,0.838010566,0.562507162,0.961238037,0.922476074,0,0,0,0,0,0,-0.327631337,109.1250702,0.327631337,70.87492978,0,0.897389446,0,0,0,1,7,0% +1/4/2018 16:00,84.76563236,123.9977095,32.98641981,174.658629,17.05232643,16.78680144,0,16.78680144,16.53813588,0.248665566,28.50687218,19.99474224,8.512129945,0.514190558,7.997939386,1.479439377,2.164168295,-6.41638496,6.41638496,0.372579859,0.5169499,0.17330116,5.573961013,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89708526,0.372529309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.1255561,5.357903342,16.02264136,5.730432651,0,19.99474224,-0.114478983,96.57357452,0.114478983,83.42642548,0,0.613238608,16.02264136,17.99198055,27.7980328,1,8,73% +1/4/2018 17:00,75.68420123,134.5078522,181.8016326,533.2570039,49.94519945,97.65562477,47.84595986,49.80966491,48.43916741,1.3704975,45.58594269,0,45.58594269,1.506032042,44.07991065,1.320938503,2.34760489,-1.686533902,1.686533902,0.818567973,0.274723603,1.190155972,38.27950719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.56157019,1.091115087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86226395,36.79571835,47.42383414,37.88683343,47.84595986,0,0.089724016,84.85226987,-0.089724016,95.14773013,0.492735598,0,70.9992418,37.88683343,95.79541655,1,9,35% +1/4/2018 18:00,68.17941492,146.7235996,319.6541678,682.2765992,66.05100367,255.0284635,188.5594531,66.46901035,64.05932221,2.409688139,79.49553527,0,79.49553527,1.991681463,77.50385381,1.189955272,2.560809903,-0.573565431,0.573565431,0.628239155,0.2066327,1.698967737,54.64464257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57625712,1.44296644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230896342,52.52650895,62.80715347,53.96947539,188.5594531,0,0.27636805,73.95644241,-0.27636805,106.0435576,0.869081837,0,226.6807493,53.96947539,262.0026915,1,10,16% +1/4/2018 19:00,62.93408622,160.7883747,414.6493912,747.3816437,74.57936508,398.1495797,322.6932554,75.45632432,72.33052206,3.125802259,102.7853886,0,102.7853886,2.248843026,100.5365455,1.098407016,2.806286537,0.026927519,-0.026927519,0.525548813,0.179861268,1.909503227,61.41618764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52684903,1.629279117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383428588,59.03557564,70.91027761,60.66485476,322.6932554,0,0.431765027,64.42037458,-0.431765027,115.5796254,0.934196271,0,372.3691135,60.66485476,412.0730477,1,11,11% +1/4/2018 20:00,60.56853062,176.2671409,456.4805993,770.3190243,77.95955105,499.0196543,419.9697278,79.04992652,75.60878294,3.441143575,113.0297743,0,113.0297743,2.350768104,110.6790062,1.057120282,3.076441971,0.496488389,-0.496488389,0.445249175,0.170783931,1.858188973,59.76574487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.67803809,1.703123489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346251586,57.44910727,74.02428967,59.15223076,419.9697278,0,0.54518935,56.96239594,-0.54518935,123.0376041,0.958288744,0,476.4765526,59.15223076,515.1905046,1,12,8% +1/4/2018 21:00,61.42616384,192.0604105,441.4020402,762.3804869,76.76240507,541.9755894,464.2003791,77.77521036,74.44773533,3.327475028,109.3377048,0,109.3377048,2.314669736,107.023035,1.072088806,3.352086526,0.97463883,-0.97463883,0.363480633,0.173905868,1.57780576,50.7476569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56199496,1.676970344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143114902,48.78057809,72.70510986,50.45754844,464.2003791,0,0.608882818,52.49123282,-0.608882818,127.5087672,0.967882393,0,521.9964836,50.45754844,555.0199399,1,13,6% +1/4/2018 22:00,65.37712713,206.8938814,370.7291354,719.8543974,70.80631247,516.7078158,445.2418621,71.46595372,68.6712409,2.794712819,92.02264259,0,92.02264259,2.135071569,89.88757102,1.141046124,3.610979432,1.59297291,-1.59297291,0.257739278,0.190992036,1.116502205,35.91054888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.0094088,1.546852083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.808902047,34.5185855,66.81831084,36.06543759,445.2418621,0,0.618516555,51.79211379,-0.618516555,128.2078862,0.96916142,0,498.3295462,36.06543759,521.9336537,1,14,5% +1/4/2018 23:00,71.89764921,219.9967383,251.2409695,619.2679711,58.82485673,414.0982777,355.1532469,58.94503081,57.05107026,1.893960553,62.69006829,0,62.69006829,1.773786471,60.91628182,1.254850703,3.839667426,2.649152889,-2.649152889,0.077121864,0.234137198,0.555312956,17.86077355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.83965877,1.28510226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.402322347,17.16845491,55.24198112,18.45355717,355.1532469,0,0.57350495,55.00499997,-0.57350495,124.995,0.962816794,0,397.1894918,18.45355717,409.2669759,1,15,3% +1/4/2018 0:00,80.32329068,231.2753494,99.97827746,382.0754033,35.75572798,217.7808275,182.3495882,35.43123935,34.67756086,0.753678486,25.319058,0,25.319058,1.078167123,24.24089088,1.401905888,4.036516326,5.554194386,-5.554194386,0,0.357634967,0.269541781,8.669390215,0.295610699,1,0.178135666,0,0.94178284,0.980544803,0.724496596,1,33.60555095,0.781128411,0.044358257,0.312029739,0.881920763,0.606417359,0.961238037,0.922476074,0.18540677,8.333347631,33.79095772,9.114476042,128.4450989,0,0.477260736,61.49335133,-0.477260736,118.5066487,0.945235463,0,155.2018203,9.114476042,161.1670626,1,16,4% +1/4/2018 1:00,89.73022431,241.0524608,0.093913342,1.833349125,0.085281097,0.710934259,0.627516744,0.083417516,0.082709557,0.000707958,0.025341917,0,0.025341917,0.00257154,0.022770377,1.566087853,4.207159111,209.7970269,-209.7970269,0,0.908082869,0.000642885,0.020677389,0.972487603,1,0.004766476,0,0.960815058,0.999577021,0.724496596,1,0.079556792,0.001863072,0.113656543,0.312029739,0.728670561,0.453167157,0.961238037,0.922476074,0.000463578,0.019875893,0.080020371,0.021738965,0.01726449,0,0.342278912,69.98422134,-0.342278912,110.0157787,0.903920302,0,0.095626094,0.021738965,0.109853811,1,17,15% +1/4/2018 2:00,101.0093871,249.803724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76294638,4.359897468,-5.140027668,5.140027668,0.590849811,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.156270675,81.00950136,-0.156270675,98.99049864,0.730042336,0,0,0,0,1,18,0% +1/4/2018 3:00,112.3757682,258.0564845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961327155,4.50393531,-2.405123004,2.405123004,0.941453947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.044574544,92.55477976,0.044574544,87.44522024,0,0,0,0,0,1,19,0% +1/4/2018 4:00,124.0938225,266.4349787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165845784,4.650167621,-1.416975028,1.416975028,0.772470691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255082977,104.778502,0.255082977,75.22149799,0,0.853985352,0,0,0,1,20,0% +1/4/2018 5:00,135.9165434,275.8749209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372191191,4.814925693,-0.871413711,0.871413711,0.679174211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.460915784,117.4462172,0.460915784,62.55378282,0,0.941520313,0,0,0,1,21,0% +1/4/2018 6:00,147.4862275,288.2574694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574120271,5.031041934,-0.50051604,0.50051604,0.615746973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648052157,130.3949033,0.648052157,49.60509667,0,0.972845716,0,0,0,1,22,0% +1/4/2018 7:00,157.9477024,308.4440799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756707452,5.383364752,-0.211995099,0.211995099,0.566406987,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803744033,143.4891333,0.803744033,36.51086666,0,0.98779114,0,0,0,1,23,0% +1/5/2018 8:00,164.4437219,347.5896562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.870084382,6.066583946,0.036768063,-0.036768063,0.523865981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917384077,156.5465991,0.917384077,23.45340087,0,0.995497201,0,0,0,1,0,0% +1/5/2018 9:00,161.8688051,35.95779358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825143606,0.62758189,0.271335969,-0.271335969,0.483752506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981227938,168.8807536,0.981227938,11.11924638,0,0.99904344,0,0,0,1,1,0% +1/5/2018 10:00,152.7051504,63.57789562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66520766,1.10964361,0.512786517,-0.512786517,0.442462031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990921664,172.2737305,0.990921664,7.726269483,0,0.999541925,0,0,0,1,2,0% +1/5/2018 11:00,141.4898383,78.73307702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469463537,1.374151424,0.786500203,-0.786500203,0.395654233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945798391,161.0493056,0.945798391,18.95069444,0,0.997134611,0,0,0,1,3,0% +1/5/2018 12:00,129.7238001,89.23216997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264107431,1.557395165,1.136323488,-1.136323488,0.335830929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848924122,148.0948431,0.848924122,31.90515689,0,0.991101921,0,0,0,1,4,0% +1/5/2018 13:00,117.9167301,97.96229917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058035184,1.709764663,1.667003659,-1.667003659,0.245079274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706889423,134.9823905,0.706889423,45.01760953,0,0.979267579,0,0,0,1,5,0% +1/5/2018 14:00,106.3457416,106.1823801,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856083336,1.85323214,2.752052243,-2.752052243,0.059525038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529361139,121.9622997,0.529361139,58.03770031,0,0.955546523,0,0,0,1,6,0% +1/5/2018 15:00,95.25205334,114.6232832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66246195,2.000553691,7.742772304,-7.742772304,0,#DIV/0!,0,0,0.442567245,1,0.128441702,0,0.947949979,0.986711943,0.724496596,1,0,0,0.062573258,0.312029739,0.837927714,0.56242431,0.961238037,0.922476074,0,0,0,0,0,0,-0.328424568,109.1731811,0.328424568,70.82681893,0,0.89775804,0,0,0,1,7,0% +1/5/2018 16:00,84.76005988,123.8452551,32.93356966,173.442703,17.09360682,16.82643866,0,16.82643866,16.5781715,0.248267159,28.46704718,19.96648661,8.500560571,0.515435314,7.985125257,1.479342119,2.161507465,-6.432972264,6.432972264,0.369743263,0.51903292,0.173009254,5.564572336,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93556903,0.373431131,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125344616,5.348878588,16.06091365,5.722309718,0,19.96648661,-0.115118631,96.61046757,0.115118631,83.38953243,0,0.615665441,16.06091365,18.01498551,27.85136136,1,8,73% +1/5/2018 17:00,75.65836489,134.3531621,181.9997472,532.0928822,50.19868975,97.59630501,47.5393,50.05700501,48.68501404,1.371990971,45.64162154,0,45.64162154,1.513675709,44.12794583,1.320487574,2.34490504,-1.69289093,1.69289093,0.819655089,0.27581736,1.192805309,38.36471899,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.79788732,1.096652899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864183386,36.87762717,47.6620707,37.97428006,47.5393,0,0.089343988,84.87413167,-0.089343988,95.12586833,0.490365253,0,70.97369159,37.97428006,95.82709841,1,9,35% +1/5/2018 18:00,68.12863247,146.5689486,320.2645589,681.4384348,66.41234133,255.1282905,188.3042368,66.82405373,64.4097642,2.414289525,79.65442733,0,79.65442733,2.002577126,77.6518502,1.189068951,2.558110734,-0.578637764,0.578637764,0.629106575,0.207367127,1.704531087,54.82357904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.9131153,1.450860311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23492697,52.69850949,63.14804227,54.1493698,188.3042368,0,0.276333455,73.95850488,-0.276333455,106.0414951,0.869059187,0,226.7955692,54.1493698,262.2352487,1,10,16% +1/5/2018 19:00,62.85506021,160.6419413,415.7184825,746.7809118,75.00491658,398.5895339,322.7124308,75.87710312,72.7432416,3.133861521,103.0574341,0,103.0574341,2.261674973,100.7957591,1.097027752,2.803730792,0.021851776,-0.021851776,0.526416816,0.180422377,1.917490212,61.67307655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.92357075,1.638575819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.389215131,59.28250703,71.31278588,60.92108285,322.7124308,0,0.432138028,64.3966785,-0.432138028,115.6033215,0.934296228,0,372.8217926,60.92108285,412.6934229,1,11,11% +1/5/2018 20:00,60.46159571,176.1420794,458.0063055,769.9233591,78.42882889,499.8980227,420.3814674,79.51655532,76.06391033,3.452644993,113.4138499,0,113.4138499,2.364918563,111.0489314,1.055253916,3.074259237,0.490631425,-0.490631425,0.446250774,0.171239627,1.868138458,60.08575448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.11552384,1.713375448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353459953,57.75671268,74.46898379,59.47008813,420.3814674,0,0.546004303,56.90667904,-0.546004303,123.093321,0.95842563,0,477.3733566,59.47008813,516.2953399,1,12,8% +1/5/2018 21:00,61.2965063,191.9684037,443.3434767,762.2278023,77.26300828,543.3438958,465.0685419,78.27535391,74.93324351,3.342110396,109.8235235,0,109.8235235,2.32976477,107.4937588,1.069825855,3.350480705,0.96692301,-0.96692301,0.364800116,0.174273475,1.589168839,51.1131326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.02868389,1.687906645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.151347414,49.13188724,73.1800313,50.81979389,465.0685419,0,0.610143766,52.40010109,-0.610143766,127.5998989,0.968052101,0,523.3906102,50.81979389,556.6511489,1,13,6% +1/5/2018 22:00,65.23289351,206.8381713,373.0076166,720.1109939,71.33089992,518.6023433,446.6104442,71.99189907,69.1800101,2.811888973,92.590905,0,92.590905,2.150889815,90.44001519,1.138528772,3.610007109,1.581002405,-1.581002405,0.259786355,0.191231752,1.128519885,36.29707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.4984571,1.558312349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817608815,34.89013272,67.31606591,36.44844507,446.6104442,0,0.620196675,51.66950183,-0.620196675,128.3304982,0.969380413,0,500.2514826,36.44844507,524.106261,1,14,5% +1/5/2018 23:00,71.74654157,219.9725714,253.7246369,620.474417,59.37893841,416.6135126,357.1123847,59.50112782,57.58844433,1.912683487,63.30896982,0,63.30896982,1.790494078,61.51847574,1.252213377,3.839245635,2.625045718,-2.625045718,0.081244433,0.234029061,0.566651486,18.22545965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.35620318,1.297206865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410537073,17.51900505,55.76674025,18.81621192,357.1123847,0,0.575547315,54.86202998,-0.575547315,125.13797,0.963126169,0,399.7110234,18.81621192,412.0258577,1,15,3% +1/5/2018 0:00,80.17116955,231.2753255,102.3256649,386.1484389,36.40807162,221.268301,185.186693,36.08160802,35.31023393,0.771374085,25.90787984,0,25.90787984,1.097837691,24.81004215,1.399250874,4.036515909,5.46656136,-5.46656136,0,0.355805864,0.274459423,8.827558483,0.288095789,1,0.180929871,0,0.941419591,0.980181554,0.724496596,1,34.21612499,0.79537967,0.043366299,0.312029739,0.884392027,0.608888623,0.961238037,0.922476074,0.18889944,8.485384986,34.40502443,9.280764656,131.8351866,0,0.479573849,61.3424269,-0.479573849,118.6575731,0.94574077,0,159.0869354,9.280764656,165.1610103,1,16,4% +1/5/2018 1:00,89.60098229,241.0703508,0.166578814,2.417409262,0.149743695,0.979065687,0.832581576,0.146484111,0.14522837,0.001255741,0.044904287,0,0.044904287,0.004515325,0.040388962,1.563832154,4.207471351,141.849397,-141.849397,0,0.89893601,0.001128831,0.036307092,0.959559231,1,0.007049614,0,0.960610504,0.999372468,0.724496596,1,0.139735552,0.003271338,0.11262393,0.312029739,0.730671694,0.45516829,0.961238037,0.922476074,0.000812228,0.034899758,0.14054778,0.038171096,0.033670239,0,0.344410683,69.85417415,-0.344410683,110.1458258,0.90482448,0,0.171013437,0.038171096,0.195995656,1,17,15% +1/5/2018 2:00,100.8587585,249.8355312,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760317416,4.360452608,-5.213110692,5.213110692,0.578351877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158867383,80.85883882,-0.158867383,99.14116118,0.735272085,0,0,0,0,1,18,0% +1/5/2018 3:00,112.2271471,258.1001708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958733228,4.504697781,-2.42269599,2.42269599,0.944459104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.042019956,92.40827522,0.042019956,87.59172478,0,0,0,0,0,1,19,0% +1/5/2018 4:00,123.946439,266.4897092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163273457,4.651122848,-1.424454869,1.424454869,0.773749819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.252684194,104.636406,0.252684194,75.36359399,0,0.852124545,0,0,0,1,20,0% +1/5/2018 5:00,135.7688013,275.9392764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369612604,4.816048909,-0.875443561,0.875443561,0.679863356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.458775583,117.3081263,0.458775583,62.69187368,0,0.941014252,0,0,0,1,21,0% +1/5/2018 6:00,147.3355959,288.3219452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571491254,5.032167249,-0.502977023,0.502977023,0.616167826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.646255354,130.259863,0.646255354,49.74013703,0,0.972631202,0,0,0,1,22,0% +1/5/2018 7:00,157.7929473,308.4501006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754006467,5.383469834,-0.213605809,0.213605809,0.566682434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802351663,143.3552601,0.802351663,36.6447399,0,0.987683185,0,0,0,1,23,0% +1/6/2018 8:00,164.3100537,347.2985568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86775143,6.061503303,0.035685176,-0.035685176,0.524051165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916429214,156.4095167,0.916429214,23.59048327,0,0.995440412,0,0,0,1,0,0% +1/6/2018 9:00,161.8181703,35.48715831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824259861,0.619367755,0.270627625,-0.270627625,0.48387364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980713431,168.728918,0.980713431,11.27108197,0,0.999016707,0,0,0,1,1,0% +1/6/2018 10:00,152.7072468,63.23916161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665244249,1.103731586,0.512390315,-0.512390315,0.442529785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.99081995,172.230502,0.99081995,7.769498012,0,0.999536745,0,0,0,1,2,0% +1/6/2018 11:00,141.5108189,78.48551289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469829717,1.369830615,0.786423564,-0.786423564,0.395667339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946053397,161.0943473,0.946053397,18.90565274,0,0.997148861,0,0,0,1,3,0% +1/6/2018 12:00,129.7493889,89.03241804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264554038,1.553908836,1.136665512,-1.136665512,0.335772439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849455123,148.152455,0.849455123,31.84754504,0,0.991138739,0,0,0,1,4,0% +1/6/2018 13:00,117.9397589,97.78776591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058437112,1.706718483,1.668070718,-1.668070718,0.244896797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707596591,135.0397023,0.707596591,44.96029766,0,0.979338269,0,0,0,1,5,0% +1/6/2018 14:00,106.3613862,106.0205085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856356386,1.850406947,2.754942387,-2.754942387,0.059030795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530132405,122.0144013,0.530132405,57.98559866,0,0.955683939,0,0,0,1,6,0% +1/6/2018 15:00,95.2560984,114.4663751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66253255,1.997815128,7.757661821,-7.757661821,0,#DIV/0!,0,0,0.443357326,1,0.128197875,0,0.947978857,0.98674082,0.724496596,1,0,0,0.062665466,0.312029739,0.837711714,0.56220831,0.961238037,0.922476074,0,0,0,0,0,0,-0.329143319,109.2167867,0.329143319,70.78321327,0,0.898090491,0,0,0,1,7,0% +1/6/2018 16:00,84.74843366,123.6885977,32.95639302,172.548032,17.16327151,16.89417476,0,16.89417476,16.64573555,0.248439211,28.46788691,19.9596919,8.508195006,0.517535962,7.990659044,1.479139203,2.158773278,-6.442645278,6.442645278,0.36808908,0.520787317,0.173206917,5.570929851,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.00051416,0.374953042,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125487822,5.354989673,16.12600198,5.729942716,0,19.9596919,-0.115676149,96.64262583,0.115676149,83.35737417,0,0.617758779,16.12600198,18.06021761,27.9460532,1,8,73% +1/6/2018 17:00,75.6259262,134.1950041,182.3177854,531.109529,50.46900553,97.62020171,47.29863443,50.32156728,48.94717881,1.374388477,45.72688459,0,45.72688459,1.521826728,44.20505786,1.319921412,2.342144661,-1.698609499,1.698609499,0.820633022,0.276818882,1.196109935,38.4710071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.04989006,1.102558284,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866577576,36.97979534,47.91646764,38.08235363,47.29863443,0,0.089056272,84.89068258,-0.089056272,95.10931742,0.488557228,0,71.02455735,38.08235363,95.94869615,1,9,35% +1/6/2018 18:00,68.07081807,146.4118636,321.0034229,680.7081191,66.78596418,255.3378939,188.1459135,67.19198034,64.77212095,2.419859394,79.84483956,0,79.84483956,2.013843234,77.83099633,1.1880599,2.555369083,-0.583574701,0.583574701,0.629950841,0.208053745,1.710697709,55.02191882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.26142638,1.459022568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239394667,52.88916123,63.50082105,54.3481838,188.1459135,0,0.27639734,73.95469617,-0.27639734,106.0453038,0.869101009,0,227.0186243,54.3481838,262.5884236,1,10,16% +1/6/2018 19:00,62.76871948,160.4945602,416.9168759,746.2591385,75.44105666,399.1503488,322.8412228,76.30912597,73.16623045,3.142895517,103.3611497,0,103.3611497,2.274826206,101.0863235,1.095520822,2.801158507,0.01677274,-0.01677274,0.527285382,0.180949875,1.926038764,61.94802736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33016372,1.648103843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395408528,59.5468002,71.72557225,61.19490405,322.8412228,0,0.432612756,64.36651314,-0.432612756,115.6334869,0.934423195,0,373.3958993,61.19490405,413.4467401,1,11,11% +1/6/2018 20:00,60.3473581,176.0179794,459.657723,769.5949041,78.907934,500.9014413,420.9077785,79.99366273,76.52856865,3.465094076,113.828702,0,113.828702,2.379365349,111.4493367,1.053260094,3.072093283,0.484703006,-0.484703006,0.447264594,0.171666721,1.878603763,60.42235467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.56217109,1.723842096,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361042031,58.08026558,74.92321312,59.80410768,420.9077785,0,0.546921213,56.84394936,-0.546921213,123.1560506,0.958579154,0,478.3966354,59.80410768,517.5372278,1,12,8% +1/6/2018 21:00,61.1599487,191.8793378,445.403572,762.1397942,77.77315779,544.8371022,466.0514518,78.7856504,75.42801013,3.357640265,110.3384004,0,110.3384004,2.34514766,107.9932527,1.067442475,3.348926211,0.959080125,-0.959080125,0.366141329,0.174612784,1.600993913,51.49346763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50427238,1.699051496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15991464,49.49747973,73.66418702,51.19653123,466.0514518,0,0.611503894,52.30167611,-0.611503894,127.6983239,0.968234372,0,524.9112217,51.19653123,558.4183274,1,13,6% +1/6/2018 22:00,65.08248889,206.7869873,375.3948084,720.4371532,71.86526259,520.6187215,448.0905771,72.5281444,69.69825977,2.829884633,93.18582029,0,93.18582029,2.167002822,91.01881747,1.135903717,3.609113779,1.568837809,-1.568837809,0.261866623,0.191439149,1.140936611,36.69644335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99661839,1.569986167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.826604691,35.27401717,67.82322308,36.84400334,448.0905771,0,0.62197039,51.53983401,-0.62197039,128.460166,0.969610321,0,502.2964714,36.84400334,526.4101347,1,14,5% +1/6/2018 23:00,71.59013487,219.9539423,256.3045631,621.7633251,59.9439897,419.2458845,359.1772952,60.0685893,58.13645724,1.93213206,63.95154117,0,63.95154117,1.807532459,62.14400871,1.249483565,3.838920496,2.600664206,-2.600664206,0.085413917,0.233877965,0.578316976,18.60066189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.88297403,1.309551114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.41898868,17.87966372,56.30196271,19.18921484,359.1772952,0,0.577675268,54.71280109,-0.577675268,125.2871989,0.963446182,0,402.3499564,19.18921484,414.9089138,1,15,3% +1/6/2018 0:00,80.01458792,231.2814184,104.7557819,390.3219609,37.07495586,224.8673673,188.1206648,36.74670249,35.95700915,0.789693333,26.51719885,0,26.51719885,1.117946711,25.39925214,1.396518009,4.03662225,5.379315057,-5.379315057,0,0.353917991,0.279486678,8.989252288,0.280453043,1,0.183799207,0,0.941044767,0.979806731,0.724496596,1,34.84003415,0.809948587,0.04235103,0.312029739,0.886929421,0.611426017,0.961238037,0.922476074,0.192480179,8.640811222,35.03251433,9.450759809,135.361652,0,0.481962799,61.18632583,-0.481962799,118.8136742,0.946257553,0,163.1195,9.450759809,169.3048333,1,16,4% +1/6/2018 1:00,89.46740452,241.0947402,0.265086942,3.161149751,0.235702757,1.326303757,1.095709971,0.230593786,0.228595449,0.001998337,0.071380706,0,0.071380706,0.007107308,0.064273398,1.561500782,4.207897026,106.278571,-106.278571,0,0.889152648,0.001776827,0.057148862,0.94636503,1,0.009408957,0,0.960397801,0.999159764,0.724496596,1,0.220017816,0.00514922,0.111560879,0.312029739,0.73274079,0.457237386,0.961238037,0.922476074,0.001275698,0.05493366,0.221293514,0.06008288,0.058768371,0,0.346617547,69.71943186,-0.346617547,110.2805681,0.905748791,0,0.274522895,0.06008288,0.313845938,1,17,14% +1/6/2018 2:00,100.7049662,249.8742233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757633233,4.361127913,-5.289824476,5.289824476,0.565233048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.161517474,80.70501319,-0.161517474,99.29498681,0.740435971,0,0,0,0,1,18,0% +1/6/2018 3:00,112.0757656,258.1512879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956091121,4.505589943,-2.440783806,2.440783806,0.947552303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039423081,92.25936164,0.039423081,87.74063836,0,0,0,0,0,1,19,0% +1/6/2018 4:00,123.7965045,266.5527384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160656605,4.652222915,-1.432065692,1.432065692,0.775051346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25025309,104.4924893,0.25025309,75.50751072,0,0.850202268,0,0,0,1,20,0% +1/6/2018 5:00,135.618458,276.0133549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366988618,4.817341822,-0.879497099,0.879497099,0.680556551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456611214,117.1686506,0.456611214,62.83134944,0,0.940497652,0,0,0,1,21,0% +1/6/2018 6:00,147.1818854,288.3985194,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568808499,5.033503722,-0.505417069,0.505417069,0.616585099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644440158,130.1237134,0.644440158,49.87628658,0,0.972413277,0,0,0,1,22,0% +1/6/2018 7:00,157.6337764,308.4719371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75122841,5.383850953,-0.215169925,0.215169925,0.566949914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800943904,143.2203334,0.800943904,36.77966664,0,0.987573656,0,0,0,1,23,0% +1/7/2018 8:00,164.1691149,347.0229849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.865291586,6.056693666,0.034669413,-0.034669413,0.524224871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915458987,156.2709935,0.915458987,23.72900646,0,0.995382589,0,0,0,1,0,0% +1/7/2018 9:00,161.7592512,35.01193932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823231529,0.611073619,0.270008582,-0.270008582,0.483979503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980180603,168.5737754,0.980180603,11.42622459,0,0.998988993,0,0,0,1,1,0% +1/7/2018 10:00,152.7025865,62.89046222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665162911,1.097645634,0.51211335,-0.51211335,0.442577149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990694185,172.1773804,0.990694185,7.822619616,0,0.999530339,0,0,0,1,2,0% +1/7/2018 11:00,141.525956,78.22926865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470093908,1.365358309,0.786513736,-0.786513736,0.395651919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946276242,161.1337933,0.946276242,18.86620671,0,0.997161307,0,0,0,1,3,0% +1/7/2018 12:00,129.7694881,88.82545444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264904836,1.55029664,1.137262725,-1.137262725,0.335670309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849944034,148.2055827,0.849944034,31.79441727,0,0.991172597,0,0,0,1,4,0% +1/7/2018 13:00,117.9573432,97.60709806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058744016,1.703565234,1.669596079,-1.669596079,0.244635944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708250605,135.0927574,0.708250605,44.90724258,0,0.97940352,0,0,0,1,5,0% +1/7/2018 14:00,106.3714441,105.8532879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856531929,1.847488398,2.758984798,-2.758984798,0.058339502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53083908,122.0621656,0.53083908,57.93783439,0,0.955809497,0,0,0,1,6,0% +1/7/2018 15:00,95.25428606,114.3047486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662500918,1.994994214,7.781809069,-7.781809069,0,#DIV/0!,0,0,0.444633897,1,0.127804396,0,0.948025431,0.986787394,0.724496596,1,0,0,0.062814328,0.312029739,0.837363141,0.561859737,0.961238037,0.922476074,0,0,0,0,0,0,-0.32978646,109.255815,0.32978646,70.74418501,0,0.898386741,0,0,0,1,7,0% +1/7/2018 16:00,84.73073254,123.5278284,33.05501679,171.971828,17.26172888,16.99040674,0,16.99040674,16.74122406,0.249182679,28.5097059,19.97462957,8.535076334,0.520504815,8.014571519,1.47883026,2.155967323,-6.445371749,6.445371749,0.367622826,0.522212074,0.173894082,5.59303142,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.09230135,0.377103966,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.12598567,5.376234543,16.21828702,5.753338509,0,19.97462957,-0.116150592,96.66999385,0.116150592,83.33000615,0,0.619524362,16.21828702,18.12810816,28.08277125,1,8,73% +1/7/2018 17:00,75.58688133,134.0334634,182.7557235,530.3061505,50.75634393,97.72735113,47.12380839,50.60354273,49.22585289,1.37768984,45.84173208,0,45.84173208,1.530491041,44.31124104,1.319239951,2.339325244,-1.703678587,1.703678587,0.821499887,0.277727794,1.200070254,38.59838458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.3177622,1.108835549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869446814,37.10223542,48.18720901,38.21107097,47.12380839,0,0.088861516,84.90188568,-0.088861516,95.09811432,0.487326727,0,71.1519003,38.21107097,96.16028203,1,9,35% +1/7/2018 18:00,68.00598458,146.2524239,321.8703534,680.0848694,67.17194138,255.6571275,188.0842733,67.5728542,65.14645951,2.426394683,80.06667554,0,80.06667554,2.025481871,78.04119367,1.186928342,2.552586336,-0.58836845,0.58836845,0.63077062,0.208692539,1.717465333,55.23958886,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62125485,1.46745472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244297787,53.09839395,63.86555264,54.56584867,188.0842733,0,0.276560003,73.94499827,-0.276560003,106.0550017,0.869207407,0,227.3497962,54.56584867,263.0620528,1,10,16% +1/7/2018 19:00,62.67509277,160.3463066,418.2437543,745.8153906,75.88778623,399.8314967,323.0791092,76.75238757,73.59948948,3.152898086,103.6963372,0,103.6963372,2.288296751,101.4080405,1.093886728,2.798570993,0.011697852,-0.011697852,0.528153239,0.18144392,1.935144689,62.24090523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.74662878,1.657863206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.40200574,59.82832555,72.14863452,61.48618876,323.0791092,0,0.433189115,64.32987967,-0.433189115,115.6701203,0.934576971,0,374.0909296,61.48618876,414.3324104,1,11,11% +1/7/2018 20:00,60.22586197,175.8949162,461.4336487,769.3324775,79.39681799,502.0289051,421.5477124,80.48119274,77.00271099,3.478481754,114.2740374,0,114.2740374,2.394107006,111.8799304,1.051139586,3.069945425,0.478711674,-0.478711674,0.448289172,0.172065514,1.889579395,60.77536873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01793474,1.734522376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368993839,58.41959612,75.38692858,60.1541185,421.5477124,0,0.547939577,56.77422614,-0.547939577,123.2257739,0.958749063,0,479.5454027,60.1541185,518.9150702,1,12,8% +1/7/2018 21:00,61.01655136,191.7932897,447.5808009,762.114849,78.29275898,546.453673,467.1476765,79.30599656,75.93194342,3.374053136,110.8819627,0,110.8819627,2.360815553,108.5211471,1.064939719,3.347424389,0.951121714,-0.951121714,0.367502297,0.174924302,1.613274882,51.88846579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.98867223,1.710402831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16881216,49.877167,74.15748439,51.58756983,467.1476765,0,0.612962308,52.19599332,-0.612962308,127.8040067,0.968428916,0,526.5568022,51.58756983,560.3198349,1,13,6% +1/7/2018 22:00,64.92598927,206.740401,377.8889709,720.830419,72.40924622,522.7548205,449.6802935,73.07452697,70.22584029,2.848686684,93.80696198,0,93.80696198,2.183405935,91.62355605,1.133172283,3.608300694,1.556497982,-1.556497982,0.263976858,0.191615135,1.153746685,37.10845936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.50374885,1.581870167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.835885546,35.67006262,68.3396344,37.25193279,449.6802935,0,0.623836455,51.40316276,-0.623836455,128.5968372,0.969850789,0,504.4624217,37.25193279,528.8430666,1,14,5% +1/7/2018 23:00,71.42851716,219.9409078,258.9789915,623.1303371,60.51973835,421.9924956,361.3453576,60.64713798,58.69484495,1.952293031,64.61734825,0,64.61734825,1.824893405,62.79245485,1.246662804,3.838693,2.576049349,-2.576049349,0.089623306,0.233685899,0.590306062,18.98627211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41971753,1.32212906,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427674732,18.25032693,56.84739226,19.57245599,361.3453576,0,0.579887282,54.55738494,-0.579887282,125.4426151,0.963776347,0,405.1035009,19.57245599,417.9132819,1,15,3% +1/7/2018 0:00,79.85363949,231.2936652,107.2674875,394.5869204,37.75576418,228.5740344,191.1481182,37.42591622,36.61728859,0.808627631,27.14671985,0,27.14671985,1.138475594,26.00824425,1.393708929,4.036835997,5.292601031,-5.292601031,0,0.351977706,0.284618898,9.154322147,0.272692569,1,0.186741592,0,0.940658503,0.979420466,0.724496596,1,35.47667348,0.824821692,0.041313418,0.312029739,0.889531072,0.614027668,0.961238037,0.922476074,0.196146651,8.799482649,35.67282013,9.624304341,139.0234467,0,0.484425885,61.02513519,-0.484425885,118.9748648,0.946785037,0,167.2981392,9.624304341,173.5970539,1,16,4% +1/7/2018 1:00,89.32944531,241.1256458,0.395408044,4.096264308,0.347468971,1.769158946,1.429186693,0.339972253,0.3369915,0.002980753,0.10634873,0,0.10634873,0.010477472,0.095871258,1.55909294,4.20843643,84.41862944,-84.41862944,0,0.878760502,0.002619368,0.084247875,0.932914191,1,0.011845173,0,0.960176756,0.99893872,0.724496596,1,0.324447711,0.007590892,0.110467455,0.312029739,0.734878506,0.459375102,0.961238037,0.922476074,0.001876505,0.080982262,0.326324216,0.088573154,0.095878146,0,0.348900019,69.57994991,-0.348900019,110.4200501,0.90669247,0,0.413256208,0.088573154,0.471225566,1,17,14% +1/7/2018 2:00,100.5481073,249.9197971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75489553,4.361923325,-5.370343274,5.370343274,0.551463522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164219102,80.54812648,-0.164219102,99.45187352,0.745528721,0,0,0,0,1,18,0% +1/7/2018 3:00,111.921717,258.2098116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953402466,4.506611373,-2.459390878,2.459390878,0.9507343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036785657,92.10813855,0.036785657,87.89186145,0,0,0,0,0,1,19,0% +1/7/2018 4:00,123.6441066,266.6240164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15799676,4.653466951,-1.439805205,1.439805205,0.776374881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.2477912,104.3468452,0.2477912,75.65315484,0,0.848217208,0,0,0,1,20,0% +1/7/2018 5:00,135.4655952,276.0970677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364320659,4.818802887,-0.88357201,0.88357201,0.681253402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454423918,117.0278742,0.454423918,62.9721258,0,0.93997058,0,0,0,1,21,0% +1/7/2018 6:00,147.0251741,288.4870349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566073372,5.035048608,-0.507834327,0.507834327,0.616998474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642607456,129.9865268,0.642607456,50.01347316,0,0.972192001,0,0,0,1,22,0% +1/7/2018 7:00,157.4702805,308.5093297,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748374869,5.384503576,-0.216685985,0.216685985,0.567209175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799521245,143.0844089,0.799521245,36.91559111,0,0.987462575,0,0,0,1,23,0% +1/8/2018 8:00,164.0210256,346.7631608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862706939,6.052158881,0.03372195,-0.03372195,0.524386897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914473471,156.1310633,0.914473471,23.86893666,0,0.995323728,0,0,0,1,0,0% +1/8/2018 9:00,161.6920126,34.5330959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822057994,0.602716224,0.269479818,-0.269479818,0.484069927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979629136,168.4153646,0.979629136,11.58463538,0,0.998960277,0,0,0,1,1,0% +1/8/2018 10:00,152.6910672,62.53224456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664961861,1.091393556,0.511956465,-0.511956465,0.442603978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990543695,172.1142826,0.990543695,7.885717355,0,0.999522671,0,0,0,1,2,0% +1/8/2018 11:00,141.5351526,77.96458139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470254421,1.360738645,0.786771498,-0.786771498,0.395607839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946465964,161.1674388,0.946465964,18.83256117,0,0.997171899,0,0,0,1,3,0% +1/8/2018 12:00,129.7840158,88.61144102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265158391,1.546561401,1.138115985,-1.138115985,0.335524394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850389689,148.2540794,0.850389689,31.74592056,0,0.991203426,0,0,0,1,4,0% +1/8/2018 13:00,117.9694163,97.42042454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058954731,1.700307167,1.671581179,-1.671581179,0.244296472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708850197,135.141441,0.708850197,44.85855898,0,0.979463235,0,0,0,1,5,0% +1/8/2018 14:00,106.3758639,105.6808306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856609071,1.844478451,2.764184862,-2.764184862,0.057450238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531479903,122.1055005,0.531479903,57.89449948,0,0.955923065,0,0,0,1,6,0% +1/8/2018 15:00,95.24658107,114.1385063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662366441,1.992092738,7.815338533,-7.815338533,0,#DIV/0!,0,0,0.446396792,1,0.127262001,0,0.948089572,0.986851535,0.724496596,1,0,0,0.063019653,0.312029739,0.836882643,0.561379239,0.961238037,0.922476074,0,0,0,0,0,0,-0.330352844,109.2901931,0.330352844,70.70980691,0,0.898646679,0,0,0,1,7,0% +1/8/2018 16:00,84.70693626,123.3630427,33.22974127,171.7112787,17.3893683,17.11551451,0,17.11551451,16.86501468,0.250499826,28.5926934,20.0114043,8.581289107,0.524353614,8.056935492,1.478414937,2.15309127,-6.441167715,6.441167715,0.368341758,0.523307364,0.175072617,5.630937165,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.21129361,0.379892408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126839515,5.412670986,16.33813312,5.792563394,0,20.0114043,-0.116541001,96.69251561,0.116541001,83.30748439,0,0.620966445,16.33813312,18.21897397,28.26208721,1,8,73% +1/8/2018 17:00,75.54122856,133.8686296,183.3135175,529.6816065,51.06087377,97.91782252,47.01472777,50.90309476,49.52120003,1.381894727,45.98615838,0,45.98615838,1.539673739,44.44648464,1.318443159,2.336448351,-1.708088988,1.708088988,0.82225411,0.278543964,1.204686288,38.74685211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.6016611,1.115488382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872791115,37.24494805,48.47445222,38.36043644,47.01472777,0,0.088760356,84.90770472,-0.088760356,95.09229528,0.486685448,0,71.35583605,38.36043644,96.46197449,1,9,35% +1/8/2018 18:00,67.93414759,146.0907128,322.8648846,679.5677134,67.57032504,256.0858169,188.1190945,67.96672232,65.53283044,2.433891879,80.31982389,0,80.31982389,2.037494608,78.28232928,1.18567455,2.549763946,-0.593011468,0.593011468,0.631564623,0.209283599,1.724831281,55.47650306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.99264928,1.476157908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.249634391,53.3261249,64.24228367,54.8022828,188.1190945,0,0.276821707,73.92939452,-0.276821707,106.0706055,0.869378327,0,227.7889473,54.8022828,263.6559453,1,10,16% +1/8/2018 19:00,62.57421218,160.1972594,419.6982195,745.448606,76.34509234,400.6323896,323.425521,77.20686858,74.04300612,3.16386246,104.0627786,0,104.0627786,2.302086217,101.7606924,1.092126029,2.79596963,0.006634562,-0.006634562,0.529019113,0.181904732,1.944803363,62.55156138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17295384,1.667853628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409003416,60.12694006,72.58195726,61.79479369,323.425521,0,0.433866961,64.28678128,-0.433866961,115.7132187,0.9347573,0,374.9063241,61.79479369,415.3497806,1,11,11% +1/8/2018 20:00,60.09715568,175.7729691,463.3327839,769.1347944,79.8954193,503.2793258,422.3002499,80.97907586,77.48627763,3.492798237,114.7495394,0,114.7495394,2.409141675,112.3403977,1.048893238,3.067817046,0.472666059,-0.472666059,0.449323033,0.172436361,1.901059405,61.14460532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48275739,1.745414942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.377311068,58.77452038,75.86006846,60.51993532,422.3002499,0,0.549058829,56.69753133,-0.549058829,123.3024687,0.958935077,0,480.8185912,60.51993532,520.4276784,1,12,8% +1/8/2018 21:00,60.86637949,191.71034,449.8735329,762.1512606,78.82170358,548.1919711,468.355696,79.83627512,76.4449384,3.391336718,111.4538117,0,111.4538117,2.376765184,109.0770465,1.062318726,3.345976643,0.943059418,-0.943059418,0.368881031,0.175208582,1.626005183,52.29791605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.48178251,1.721958285,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17803522,50.27074615,74.65981773,51.99270444,468.355696,0,0.614518036,52.08309171,-0.614518036,127.9169083,0.968635423,0,528.3257355,51.99270444,562.3539207,1,13,6% +1/8/2018 22:00,64.76347604,206.6984863,380.4882543,721.2882502,72.96268167,525.0083961,451.3775274,73.63086879,70.76258761,2.86828118,94.45387645,0,94.45387645,2.200094056,92.25378239,1.130335892,3.607569145,1.544001788,-1.544001788,0.266113833,0.191760668,1.166943948,37.5329287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0196908,1.593960654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.845446918,36.0780787,68.86513772,37.67203936,451.3775274,0,0.62579354,51.2595451,-0.62579354,128.7404549,0.970101444,0,506.7471289,37.67203936,531.4027252,1,14,5% +1/8/2018 23:00,71.26178205,219.9335256,261.7460534,624.5710369,61.10589557,424.8503319,363.6138522,61.23647967,59.26332736,1.973152313,65.30592925,0,65.30592925,1.842568208,63.46336104,1.243752728,3.838564157,2.551241403,-2.551241403,0.093865714,0.233454888,0.602614908,19.38216692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.96616445,1.334934394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.43659245,18.63087608,57.4027569,19.96581048,363.6138522,0,0.582181739,54.39585872,-0.582181739,125.6041413,0.964116166,0,407.9687499,19.96581048,421.0359735,1,15,3% +1/8/2018 0:00,79.68842342,231.3121026,109.859502,398.9342969,38.44986196,232.3841903,194.2655662,38.11862409,37.29045676,0.828167331,27.79611337,0,27.79611337,1.159405203,26.63670817,1.390825364,4.03715779,5.206553953,-5.206553953,0,0.349991228,0.289851301,9.32261419,0.264824524,1,0.189754836,0,0.940260948,0.979022911,0.724496596,1,36.12542059,0.839985123,0.040254462,0.312029739,0.892195013,0.616691609,0.961238037,0.922476074,0.199896433,8.961251363,36.32531702,9.801236486,142.8192801,0,0.486961306,60.85894806,-0.486961306,119.1410519,0.947322437,0,171.6212255,9.801236486,178.0359388,1,16,4% +1/8/2018 1:00,89.18710369,241.1630825,0.564104898,5.256501261,0.489529647,2.325408369,1.846387387,0.479020983,0.474768522,0.004252461,0.151534888,0,0.151534888,0.014761125,0.136773763,1.55660861,4.209089825,69.64216276,-69.64216276,0,0.867798966,0.003690281,0.11869213,0.919220364,1,0.014358131,0,0.95994725,0.998709213,0.724496596,1,0.457239321,0.010694385,0.109344087,0.312029739,0.737084795,0.461581391,0.961238037,0.922476074,0.002637923,0.11409139,0.459877244,0.124785775,0.149150501,0,0.35125786,69.43572921,-0.35125786,110.5642708,0.907654431,0,0.595254357,0.124785775,0.676924152,1,17,14% +1/8/2018 2:00,100.3882835,249.9722468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752106077,4.362838745,-5.454853098,5.454853098,0.537011491,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.166970332,80.38828576,-0.166970332,99.61171424,0.750545604,0,0,0,0,1,18,0% +1/8/2018 3:00,111.7650981,258.2757144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950668951,4.507761594,-2.478521297,2.478521297,0.954005794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.034109503,91.95470974,0.034109503,88.04529026,0,0,0,0,0,1,19,0% +1/8/2018 4:00,123.4893359,266.7034894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155295502,4.654854017,-1.447670851,1.447670851,0.777719986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245300119,104.1995705,0.245300119,75.80042947,0,0.846168057,0,0,0,1,20,0% +1/8/2018 5:00,135.3102964,276.1903219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361610185,4.820430479,-0.887665831,0.887665831,0.681953487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452214986,116.8858842,0.452214986,63.11411579,0,0.93943312,0,0,0,1,21,0% +1/8/2018 6:00,146.8655415,288.5873282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563287257,5.036799056,-0.510226861,0.510226861,0.617407622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640758164,129.8483771,0.640758164,50.15162286,0,0.97196744,0,0,0,1,22,0% +1/8/2018 7:00,157.3025512,308.5620065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.74544744,5.385422961,-0.218152477,0.218152477,0.56745996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798084188,142.9475432,0.798084188,37.05245678,0,0.987349968,0,0,0,1,23,0% +1/9/2018 8:00,163.8659091,346.5192554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.859999646,6.047901929,0.032844,-0.032844,0.524537035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913472745,155.9897592,0.913472745,24.01024076,0,0.995263829,0,0,0,1,0,0% +1/9/2018 9:00,161.6164279,34.05159827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820738793,0.594312505,0.269042336,-0.269042336,0.48414474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979058696,168.253721,0.979058696,11.746279,0,0.998930539,0,0,0,1,1,0% +1/9/2018 10:00,152.6725893,62.16498216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66463936,1.084983618,0.511920532,-0.511920532,0.442610123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990367781,172.0411553,0.990367781,7.958844748,0,0.999513705,0,0,0,1,2,0% +1/9/2018 11:00,141.5383126,77.69170466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470309573,1.355976048,0.787197681,-0.787197681,0.395534958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946621568,161.1950772,0.946621568,18.80492278,0,0.997180582,0,0,0,1,3,0% +1/9/2018 12:00,129.7928898,88.39055048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265313273,1.542706134,1.139226268,-1.139226268,0.335334524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85079089,148.2977954,0.85079089,31.70220455,0,0.991231153,0,0,0,1,4,0% +1/9/2018 13:00,117.9759117,97.22788223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059068097,1.69694667,1.674027844,-1.674027844,0.243878068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709394069,135.1856365,0.709394069,44.8143635,0,0.979517313,0,0,0,1,5,0% +1/9/2018 14:00,106.3745952,105.503255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856586928,1.841379171,2.770550027,-2.770550027,0.056361731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532053589,122.1443129,0.532053589,57.85568712,0,0.956024504,0,0,0,1,6,0% +1/9/2018 15:00,95.23294924,113.9677557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662128521,1.989112578,7.858436857,-7.858436857,0,#DIV/0!,0,0,0.44864642,1,0.126571504,0,0.94817113,0.986933093,0.724496596,1,0,0,0.063281253,0.312029739,0.836270939,0.560767535,0.961238037,0.922476074,0,0,0,0,0,0,-0.330841313,109.3198477,0.330841313,70.6801523,0,0.898870144,0,0,0,1,7,0% +1/9/2018 16:00,84.67702532,123.1943407,33.48104073,171.7635666,17.54656049,17.26986118,0,17.26986118,17.01746695,0.252394227,28.71691494,20.06995545,8.646959493,0.529093539,8.117865955,1.477892893,2.150146866,-6.430096694,6.430096694,0.370235014,0.524074524,0.176746327,5.684769424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.35783652,0.383326468,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128052112,5.464416601,16.48588864,5.847743069,0,20.06995545,-0.116846406,96.7101344,0.116846406,83.2898656,0,0.622087823,16.48588864,18.33301796,28.48448223,1,8,73% +1/9/2018 17:00,75.4889681,133.700596,183.9911047,529.2344227,51.3827357,98.19172066,46.97136136,51.2203593,49.83335664,1.387002666,46.16015258,0,46.16015258,1.549379064,44.61077352,1.317531042,2.333515612,-1.711833335,1.711833335,0.822894431,0.279267499,1.209957684,38.91639833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.90171791,1.122519857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876610223,37.40792233,48.77832813,38.53044219,46.97136136,0,0.088753413,84.90810408,-0.088753413,95.09189592,0.486641384,0,71.63653642,38.53044219,96.85394022,1,9,35% +1/9/2018 18:00,67.85532525,145.9268174,323.9864947,679.1554977,67.98115054,256.6237619,188.2501469,68.37361508,65.93126803,2.44234705,80.60415915,0,80.60415915,2.049882513,78.55427664,1.184298841,2.546903431,-0.59749649,0.59749649,0.632331607,0.209827112,1.732792488,55.73256284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.37564265,1.485132902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.255402259,53.57225929,64.63104491,55.05739219,188.2501469,0,0.277182689,73.90786952,-0.277182689,106.0921305,0.869613554,0,228.3359242,55.05739219,264.3698863,1,10,16% +1/9/2018 19:00,62.46611297,160.0475015,421.2792975,745.1576014,76.8129486,401.5523834,323.8798473,77.67253609,74.49675479,3.175781294,104.4602369,0,104.4602369,2.31619381,102.1440431,1.090239342,2.79335586,0.001590307,-0.001590307,0.529881731,0.182332598,1.955009746,62.87983372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60911433,1.678074531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416397906,60.44248793,73.02551224,62.12056246,323.8798473,0,0.434646103,64.23722302,-0.434646103,115.762777,0.934963883,0,375.8414718,62.12056246,416.4981375,1,11,11% +1/9/2018 20:00,59.96129141,175.652221,465.3537399,769.0004742,80.40366372,504.651537,423.1643073,81.48722966,77.9791966,3.508033057,115.254869,0,115.254869,2.424467119,112.8304019,1.046521959,3.065709594,0.466574844,-0.466574844,0.450364692,0.172779666,1.91303741,61.52985914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.95656985,1.756518175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385989092,59.14484101,76.34255895,60.90135918,423.1643073,0,0.550278344,56.61388939,-0.550278344,123.3861106,0.959136893,0,482.2150579,60.90135918,522.0737795,1,12,8% +1/9/2018 21:00,60.70950288,191.6305724,452.2800383,762.2472402,79.35987042,550.0502645,469.673909,80.3763555,76.96687752,3.409477973,112.0535245,0,112.0535245,2.3929929,109.6605316,1.059580713,3.344584435,0.934904924,-0.934904924,0.370275531,0.175466224,1.639177814,52.72159313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.98349025,1.73371521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.187578746,50.67800068,75.171069,52.41171589,469.673909,0,0.616170036,51.96301357,-0.616170036,128.0369864,0.968853568,0,530.2163115,52.41171589,564.5187313,1,13,6% +1/9/2018 22:00,64.59503569,206.6613197,383.1907049,721.8080344,73.52538591,527.3770993,453.1801217,74.19697764,71.30832424,2.888653394,95.12608449,0,95.12608449,2.217061665,92.90902282,1.127396053,3.606920466,1.531368007,-1.531368007,0.268274337,0.191876747,1.180521803,37.9696392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54427361,1.606253629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.855284028,36.49786145,69.39955763,38.10411508,453.1801217,0,0.627840229,51.1090423,-0.627840229,128.8909577,0.970361905,0,509.1482837,38.10411508,534.0866649,1,14,5% +1/9/2018 23:00,71.09002834,219.9318544,264.6037741,626.0809723,61.70215763,427.8162752,365.9799702,61.83630494,59.84160992,1.994695018,66.01679622,0,66.01679622,1.860547709,64.15624851,1.24075506,3.83853499,2.526279714,-2.526279714,0.098134415,0.23318699,0.615239215,19.78820803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.52203164,1.347960482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.445738717,19.02117824,57.96777036,20.36913872,365.9799702,0,0.584556929,54.22830478,-0.584556929,125.7716952,0.964465132,0,410.9426905,20.36913872,424.2738844,1,15,3% +1/9/2018 0:00,79.51904391,231.3367667,112.5304103,403.35514,39.15660023,236.2936198,197.4694337,38.82418603,37.97588426,0.848301766,28.46501677,0,28.46501677,1.180715969,27.2843008,1.387869134,4.03758826,5.121297542,-5.121297542,0,0.347964609,0.295178992,9.493971066,0.256859063,1,0.192836645,0,0.939852269,0.978614232,0.724496596,1,36.78563918,0.855424701,0.039175185,0.312029739,0.894919188,0.619415784,0.961238037,0.922476074,0.20372703,9.125966109,36.98936621,9.98139081,146.7476201,0,0.489567168,60.68786323,-0.489567168,119.3121368,0.947868968,0,176.0868814,9.98139081,182.6195021,1,16,4% +1/9/2018 1:00,89.04041755,241.2070643,0.778200675,6.676598171,0.666387083,3.013606645,2.361447186,0.652159459,0.646293053,0.005866405,0.208777793,0,0.208777793,0.020094029,0.188683763,1.554048454,4.20985745,59.00181009,-59.00181009,0,0.85631779,0.005023507,0.161573263,0.905300789,1,0.01694701,0,0.959709218,0.998471181,0.724496596,1,0.622625766,0.014558056,0.108191518,0.312029739,0.739358997,0.463855593,0.961238037,0.922476074,0.003583112,0.155310366,0.626208879,0.169868422,0.223627185,0,0.353690177,69.28681033,-0.353690177,110.7131897,0.908633337,0,0.829403994,0.169868422,0.940579479,1,17,13% +1/9/2018 2:00,100.2255998,250.0315646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749266711,4.363874037,-5.543552853,5.543552853,0.52184294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16976915,80.22560278,-0.16976915,99.77439722,0.755482415,0,0,0,0,1,18,0% +1/9/2018 3:00,111.6060091,258.3489664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947892323,4.509040082,-2.498178829,2.498178829,0.95736743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.031396506,91.79918294,0.031396506,88.20081706,0,0,0,0,0,1,19,0% +1/9/2018 4:00,123.3322854,266.7911005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152554454,4.65638312,-1.455659815,1.455659815,0.779086179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242781504,104.0507653,0.242781504,75.94923466,0,0.844053504,0,0,0,1,20,0% +1/9/2018 5:00,135.1526471,276.2930204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358858684,4.822222907,-0.891775964,0.891775964,0.682656361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449985752,116.7427698,0.449985752,63.25723018,0,0.938885371,0,0,0,1,21,0% +1/9/2018 6:00,146.7030677,288.6992308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560451555,5.038752125,-0.512592657,0.512592657,0.617812197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638893228,129.7093397,0.638893228,50.29066032,0,0.971739662,0,0,0,1,22,0% +1/9/2018 7:00,157.1306797,308.6296854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742447717,5.386604179,-0.219567842,0.219567842,0.567702002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796633247,142.8097933,0.796633247,37.19020673,0,0.987235861,0,0,0,1,23,0% +1/10/2018 8:00,163.7038918,346.2913909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85717191,6.043924942,0.032036805,-0.032036805,0.524675073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.912456881,155.8471134,0.912456881,24.15288656,0,0.99520289,0,0,0,1,0,0% +1/10/2018 9:00,161.5324797,33.56842073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.819273619,0.585879466,0.268697165,-0.268697165,0.484203768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978468934,168.0888765,0.978468934,11.91112347,0,0.998899757,0,0,0,1,1,0% +1/10/2018 10:00,152.6470562,61.78917268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664193724,1.078424505,0.512006452,-0.512006452,0.442595429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990165721,171.9579744,0.990165721,8.042025613,0,0.999503402,0,0,0,1,2,0% +1/10/2018 11:00,141.5353406,77.41090734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470257702,1.35107521,0.787793167,-0.787793167,0.395433124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946742033,161.2165011,0.946742033,18.78349888,0,0.997187303,0,0,0,1,3,0% +1/10/2018 12:00,129.7960289,88.16296554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26536806,1.538734027,1.14059468,-1.14059468,0.335100512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851146411,148.3365791,0.851146411,31.66342087,0,0.9912557,0,0,0,1,4,0% +1/10/2018 13:00,117.9767636,97.02961513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059082966,1.693486256,1.676938303,-1.676938303,0.24338035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709880899,135.2252258,0.709880899,44.77477422,0,0.97956565,0,0,0,1,5,0% +1/10/2018 14:00,106.3675882,105.3206849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856464632,1.838192721,2.778089857,-2.778089857,0.055072344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532558837,122.1785087,0.532558837,57.82149129,0,0.95611366,0,0,0,1,6,0% +1/10/2018 15:00,95.21335757,113.7926088,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661786581,1.986055688,7.911355927,-7.911355927,0,#DIV/0!,0,0,0.451383786,1,0.125733791,0,0.948269929,0.987031892,0.724496596,1,0,0,0.063598943,0.312029739,0.835528811,0.560025407,0.961238037,0.922476074,0,0,0,0,0,0,-0.331250697,109.3447053,0.331250697,70.6552947,0,0.899056921,0,0,0,1,7,0% +1/10/2018 16:00,84.64098107,123.0218263,33.80956019,172.1258697,17.73365648,17.45379205,0,17.45379205,17.1989213,0.254870746,28.88231177,20.1500573,8.732254474,0.534735173,8.197519301,1.477263802,2.147135921,-6.412268354,6.412268354,0.37328384,0.524516036,0.178920924,5.75471196,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.53225735,0.387413813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129627601,5.531648027,16.66188495,5.91906184,0,20.1500573,-0.117065827,96.72279318,0.117065827,83.27720682,0,0.622889875,16.66188495,18.47032851,28.75034555,1,8,73% +1/10/2018 17:00,75.43010208,133.5294593,184.7884052,528.9628026,51.72204221,98.54918507,46.99374021,51.55544486,50.16243181,1.393013053,46.36369865,0,46.36369865,1.559610407,44.80408824,1.316503636,2.330528713,-1.714906142,1.714906142,0.823419912,0.279898742,1.215883721,39.10700005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.21803747,1.129932431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880903617,37.59113595,49.09894109,38.72106838,46.99374021,0,0.088841295,84.90304887,-0.088841295,95.09695113,0.487198656,0,71.99422818,38.72106838,97.33639301,1,9,35% +1/10/2018 18:00,67.76953802,145.7608276,325.2346088,678.8468974,68.40443687,257.2707385,188.4771919,68.79354657,66.34179071,2.451755861,80.91954251,0,80.91954251,2.062646157,78.85689635,1.182801571,2.544006362,-0.601816578,0.601816578,0.633070386,0.210323364,1.741345518,56.0076577,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.77025266,1.494380119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2615989,53.83669094,65.03185156,55.33107106,188.4771919,0,0.277643151,73.88040915,-0.277643151,106.1195909,0.86991272,0,228.9905582,55.33107106,265.2036376,1,10,16% +1/10/2018 19:00,62.35083325,159.8971184,422.9859434,744.9410805,77.29131581,402.5907811,324.4414369,78.14934417,74.96069746,3.188646712,104.8884575,0,104.8884575,2.330618346,102.5578391,1.088227332,2.79073118,-0.003427541,0.003427541,0.530739834,0.182727859,1.965758413,63.22554783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.05507367,1.688525058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424185279,60.77480147,73.47925895,62.46332653,324.4414369,0,0.435526306,64.18121173,-0.435526306,115.8187883,0.935196372,0,376.8957137,62.46332653,417.7767116,1,11,11% +1/10/2018 20:00,59.81832477,175.532758,467.4950458,768.92805,80.92146519,506.1443006,424.1387411,82.00555957,78.48138445,3.524175126,115.7896671,0,115.7896671,2.440080744,113.3495863,1.04402672,3.063624573,0.460446711,-0.460446711,0.451412665,0.173095878,1.925506633,61.93091219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43929192,1.767830193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395023001,59.53034845,76.83431492,61.29817865,424.1387411,0,0.551597436,56.52332706,-0.551597436,123.4766729,0.959354183,0,483.7335905,61.29817865,523.8520225,1,12,8% +1/10/2018 21:00,60.54599534,191.5540737,454.7984985,762.4009278,79.90712647,552.0267367,471.1006417,80.92609497,77.49763178,3.428463189,112.6806561,0,112.6806561,2.409494689,110.2711614,1.056726968,3.343249282,0.926669899,-0.926669899,0.371683804,0.175697868,1.652785374,53.15925903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.49367143,1.7456707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197437377,51.09870179,75.69110881,52.84437249,471.1006417,0,0.617917194,51.83580406,-0.617917194,128.1641959,0.969083009,0,532.2267363,52.84437249,566.8123212,1,13,6% +1/10/2018 22:00,64.42075918,206.6289795,385.9942772,722.3871044,74.09716357,529.8584894,455.0858408,74.77264861,71.8628607,2.909787906,95.82308427,0,95.82308427,2.234302871,93.5887814,1.124354354,3.606356022,1.518615229,-1.518615229,0.27045519,0.19196441,1.194473258,38.41836595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.07731514,1.618744824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.865391809,36.92919467,69.94270695,38.54793949,455.0858408,0,0.629975034,50.95171938,-0.629975034,129.0482806,0.970631775,0,511.6634845,38.54793949,536.89234,1,14,5% +1/10/2018 23:00,70.91335936,219.9359536,267.5500854,627.6556814,62.3082083,430.8871215,368.4408301,62.44629148,60.42938592,2.016905557,66.74943817,0,66.74943817,1.878822373,64.8706158,1.237671605,3.838606534,2.501202505,-2.501202505,0.10242287,0.232884277,0.628174254,20.20424334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.08702429,1.361200413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455110109,19.4210872,58.5421344,20.78228762,368.4408301,0,0.587011065,54.05481004,-0.587011065,125.94519,0.96482273,0,414.0222219,20.78228762,427.6238135,1,15,3% +1/10/2018 0:00,79.34560952,231.3676932,115.2786732,407.8406216,39.87532043,240.2980308,200.7560791,39.54195173,38.6729324,0.869019332,29.153037,0,29.153037,1.202388035,27.95064897,1.384842133,4.038128028,5.036944437,-5.036944437,0,0.345903707,0.300597009,9.668233099,0.248806282,1,0.195984645,0,0.939432647,0.97819461,0.724496596,1,37.45668375,0.871126039,0.03807663,0.312029739,0.897701466,0.622198061,0.961238037,0.922476074,0.207635893,9.293473404,37.66431965,10.16459944,150.8067055,0,0.492241499,60.51198441,-0.492241499,119.4880156,0.948423843,0,180.6929948,10.16459944,187.3455218,1,16,4% +1/10/2018 1:00,88.88945727,241.2576031,1.045013542,8.391028373,0.882383551,3.852500903,2.988846717,0.863654185,0.855776432,0.007877753,0.279982752,0,0.279982752,0.02660712,0.253375632,1.5514137,4.21073952,50.98678846,-50.98678846,0,0.844375231,0.00665178,0.213944108,0.891175422,1,0.01961041,0,0.959462651,0.998224614,0.724496596,1,0.824695406,0.019276768,0.107010746,0.312029739,0.741699939,0.466196535,0.961238037,0.922476074,0.004734194,0.205651214,0.8294296,0.224927982,0.325259982,0,0.35619552,69.13326714,-0.35619552,110.8667329,0.909627656,0,1.125295075,0.224927982,1.272505941,1,17,13% +1/10/2018 2:00,100.0601646,250.0977407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746379323,4.365029026,-5.636655794,5.636655794,0.505921399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.172613474,80.06019315,-0.172613474,99.93980685,0.760335475,0,0,0,0,1,18,0% +1/10/2018 3:00,111.4445521,258.4295349,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945074368,4.510446269,-2.518366973,2.518366973,0.960819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028648608,91.64166896,0.028648608,88.35833104,0,0,0,0,0,1,19,0% +1/10/2018 4:00,123.1730496,266.8867898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149775266,4.658053213,-1.463769058,1.463769058,0.780472941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.240237054,103.9005319,0.240237054,76.09946812,0,0.841872239,0,0,0,1,20,0% +1/10/2018 5:00,134.9927333,276.4050628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356067662,4.824178414,-0.89589969,0.89589969,0.68336156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44773758,116.5986218,0.44773758,63.4013782,0,0.938327444,0,0,0,1,21,0% +1/10/2018 6:00,146.5378332,288.8225695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557567667,5.040904791,-0.51492964,0.51492964,0.618211844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637013608,129.5694905,0.637013608,50.43050951,0,0.971508741,0,0,0,1,22,0% +1/10/2018 7:00,156.9547569,308.7120744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739377284,5.38804214,-0.220930485,0.220930485,0.567935028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795168944,142.6712157,0.795168944,37.32878429,0,0.987120281,0,0,0,1,23,0% +1/11/2018 8:00,163.5351017,346.0796414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.854225968,6.040229217,0.031301628,-0.031301628,0.524800796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911425947,155.7031567,0.911425947,24.29684331,0,0.995140908,0,0,0,1,0,0% +1/11/2018 9:00,161.4401593,33.08453395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817662325,0.577434049,0.26844535,-0.26844535,0.484246831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977859488,167.9208597,0.977859488,12.0791403,0,0.998867909,0,0,0,1,1,0% +1/11/2018 10:00,152.6143752,61.40533487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663623334,1.071725272,0.51221515,-0.51221515,0.44255974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989936773,171.8647457,0.989936773,8.135254346,0,0.999491724,0,0,0,1,2,0% +1/11/2018 11:00,141.5261429,77.12247209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470097171,1.346041065,0.788558884,-0.788558884,0.395302178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946826314,161.231504,0.946826314,18.76849602,0,0.997192004,0,0,0,1,3,0% +1/11/2018 12:00,129.7933526,87.92887781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265321349,1.534648425,1.142222443,-1.142222443,0.334822148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851455002,148.3702778,0.851455002,31.62972218,0,0.991276991,0,0,0,1,4,0% +1/11/2018 13:00,117.9719073,96.8257735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058998207,1.689928548,1.680315182,-1.680315182,0.24280287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710309346,135.2600902,0.710309346,44.73990984,0,0.979608134,0,0,0,1,5,0% +1/11/2018 14:00,106.3547944,105.1332488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856241338,1.834921345,2.786816053,-2.786816053,0.053580077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532994331,122.2079939,0.532994331,57.79200611,0,0.956190372,0,0,0,1,6,0% +1/11/2018 15:00,95.18777462,113.6131813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661340075,1.982924087,7.974416756,-7.974416756,0,#DIV/0!,0,0,0.454610472,1,0.124749826,0,0.948385772,0.987147735,0.724496596,1,0,0,0.06397254,0.312029739,0.834657109,0.559153705,0.961238037,0.922476074,0,0,0,0,0,0,-0.331579829,109.3646927,0.331579829,70.63530725,0,0.89920675,0,0,0,1,7,0% +1/11/2018 16:00,84.59878601,122.8456061,34.21610787,172.7953416,17.95098478,17.66763183,0,17.66763183,17.40969635,0.257935474,29.0886976,20.25131768,8.837379917,0.541288423,8.296091494,1.476527359,2.144060298,-6.387836696,6.387836696,0.377461899,0.524635498,0.181603981,5.841008277,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73486235,0.39216162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.131571466,5.61459933,16.86643381,6.00676095,0,20.25131768,-0.117198285,96.73043506,0.117198285,83.26956494,0,0.623372597,16.86643381,18.63087744,29.05997048,1,8,72% +1/11/2018 17:00,75.36463463,133.3553185,185.7053173,528.864634,52.07887719,98.99038574,47.08195373,51.90843202,50.50850689,1.399925124,46.59677449,0,46.59677449,1.570370298,45.02640419,1.315361014,2.327489383,-1.717303874,1.717303874,0.823829948,0.280438266,1.222463296,39.3186218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.55069801,1.137727935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885670497,37.79455483,49.43636851,38.93228277,47.08195373,0,0.089024583,84.89250542,-0.089024583,95.10749458,0.488357383,0,72.42918822,38.93228277,97.90958864,1,9,35% +1/11/2018 18:00,67.67680875,145.5928353,326.6085988,678.6404221,68.84018669,258.0264948,188.7999801,69.22651464,66.76440107,2.462113578,81.26582173,0,81.26582173,2.075785622,79.19003611,1.18118314,2.541074344,-0.605965167,0.605965167,0.633779836,0.210772732,1.750486578,56.3016656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17648181,1.503899617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.268221567,54.11930251,65.44470338,55.62320213,188.7999801,0,0.278203263,73.84700091,-0.278203263,106.1529991,0.870275293,0,229.7526614,55.62320213,266.1569347,1,10,16% +1/11/2018 19:00,62.22841376,159.7461979,424.8170448,744.7976419,77.78014227,403.7468331,325.1095988,78.63723433,75.434784,3.202450327,105.3471691,0,105.3471691,2.345358268,103.0018109,1.086090708,2.788097121,-0.008411722,0.008411722,0.531592179,0.183090917,1.977043586,63.58851775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.51078368,1.699204081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.432361348,61.12370197,73.94314503,62.82290605,325.1095988,0,0.436507288,64.1187562,-0.436507288,115.8812438,0.935454375,0,378.0683417,62.82290605,419.1846772,1,11,11% +1/11/2018 20:00,59.66831442,175.4146687,469.7551552,768.915978,81.44872654,507.7563108,425.2223511,82.5339597,78.99274692,3.541212785,116.3535556,0,116.3535556,2.455979619,113.897576,1.041408546,3.061563524,0.454290281,-0.454290281,0.452465476,0.173385487,1.938459937,62.34753498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93083297,1.779348873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404407625,59.93082212,77.3352406,61.710171,425.2223511,0,0.553015366,56.42587337,-0.553015366,123.5741266,0.959586599,0,485.3729103,61.710171,525.760983,1,12,8% +1/11/2018 21:00,60.37593419,191.480933,457.4270155,762.6104042,80.46332789,554.1194942,472.6341545,81.48533974,78.03706168,3.448278061,113.334742,0,113.334742,2.426266214,110.9084758,1.053758841,3.341972736,0.918365912,-0.918365912,0.373103869,0.175904188,1.666820112,53.61066446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01219197,1.757821613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207605497,51.53260986,76.21979747,53.29043148,472.6341545,0,0.619758335,51.70151103,-0.619758335,128.298489,0.969323392,0,534.3551395,53.29043148,569.2326611,1,13,7% +1/11/2018 22:00,64.24074124,206.6015454,388.8968464,723.0227545,74.6778085,532.4500473,457.0923816,75.35766574,72.42599704,2.931668699,96.54435435,0,96.54435435,2.251811458,94.29254289,1.121212449,3.605877208,1.50576174,-1.50576174,0.272653266,0.192024721,1.208790974,38.87887292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.61862321,1.631429736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.875764946,37.37185148,70.49438816,39.00328121,457.0923816,0,0.632196399,50.78764461,-0.632196399,129.2123554,0.970910654,0,514.2902511,39.00328121,539.8171186,1,14,5% +1/11/2018 23:00,70.73188221,219.9458825,270.5828395,629.2907188,62.92372128,434.0596,370.9934933,63.06610666,61.02633892,2.039767739,67.50332449,0,67.50332449,1.89738236,65.60594213,1.234504231,3.838779826,2.476046679,-2.476046679,0.10672477,0.232548825,0.641414908,20.63010829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.66083822,1.374647061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.464702917,19.8304448,59.12554113,21.20509186,370.9934933,0,0.589542293,53.87546535,-0.589542293,126.1245347,0.965188443,0,417.2041732,21.20509186,431.0824817,1,15,3% +1/11/2018 0:00,79.16823231,231.4049167,118.1026407,412.382087,40.60535938,244.3930823,204.1218167,40.27126557,39.38095798,0.890307592,29.85975398,0,29.85975398,1.224401403,28.63535258,1.381746317,4.038777701,4.953596164,-4.953596164,0,0.343814153,0.306100351,9.845239495,0.240676156,1,0.199196391,0,0.939002276,0.977764239,0.724496596,1,38.1379043,0.887074649,0.036959854,0.312029739,0.900539657,0.625036253,0.961238037,0.922476074,0.211620443,9.463618685,38.34952474,10.35069333,154.9945626,0,0.494982258,60.33141956,-0.494982258,119.6685804,0.948986278,0,185.4372379,10.35069333,192.2115597,1,16,4% +1/11/2018 1:00,88.73431956,241.3147095,1.371969522,10.43265572,1.141527866,4.860393802,3.742944727,1.117449075,1.107106589,0.010342486,0.367071172,0,0.367071172,0.034421277,0.332649895,1.548706036,4.211736214,44.74236634,-44.74236634,0,0.832035878,0.008605319,0.276776647,0.876866118,1,0.022346461,0,0.959207582,0.997969545,0.724496596,1,1.067229155,0.024938098,0.105802971,0.312029739,0.744106026,0.468602622,0.961238037,0.922476074,0.006111345,0.266048241,1.0733405,0.290986339,0.460883313,0,0.358771997,68.97520069,-0.358771997,111.0247993,0.910635723,0,1.493037308,0.290986339,1.683482048,1,17,13% +1/11/2018 2:00,99.89208839,250.1707626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743445839,4.3663035,-5.734391238,5.734391238,0.489207654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175501172,79.89217548,-0.175501172,100.1078245,0.765101617,0,0,0,0,1,18,0% +1/11/2018 3:00,111.2808311,258.5173848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942216897,4.511979538,-2.539089041,2.539089041,0.964363489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025867795,91.48228085,0.025867795,88.51771915,0,0,0,0,0,1,19,0% +1/11/2018 4:00,123.011724,266.9904943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146959603,4.659863198,-1.471995355,1.471995355,0.781879721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.237668496,103.7489738,0.237668496,76.25102616,0,0.839622937,0,0,0,1,20,0% +1/11/2018 5:00,134.8306412,276.5263448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353238622,4.826295186,-0.900034203,0.900034203,0.684068603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445471851,116.4535316,0.445471851,63.54646842,0,0.937759462,0,0,0,1,21,0% +1/11/2018 6:00,146.3699173,288.9571664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554636984,5.043253951,-0.51723569,0.51723569,0.618606202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635120273,129.4289054,0.635120273,50.57109457,0,0.971274754,0,0,0,1,22,0% +1/11/2018 7:00,156.7748719,308.8088728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.736237699,5.38973159,-0.222238791,0.222238791,0.568158761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793691792,142.5318662,0.793691792,37.46813383,0,0.987003254,0,0,0,1,23,0% +1/12/2018 8:00,163.3596684,345.8840337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.851164079,6.036815219,0.030639744,-0.030639744,0.524913985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91038,155.5579176,0.91038,24.44208238,0,0.99507788,0,0,0,1,0,0% +1/12/2018 9:00,161.3394679,32.60089719,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815904928,0.568992995,0.268287944,-0.268287944,0.484273749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977229978,167.7496952,0.977229978,12.25030477,0,0.998834971,0,0,0,1,1,0% +1/12/2018 10:00,152.5744584,61.01400544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662926654,1.064895285,0.512547563,-0.512547563,0.442502894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989680176,171.7615033,0.989680176,8.238496656,0,0.999478628,0,0,0,1,2,0% +1/12/2018 11:00,141.510628,76.82669379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469826385,1.34087876,0.789495798,-0.789495798,0.395141957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946873349,161.2398817,0.946873349,18.76011832,0,0.997194627,0,0,0,1,3,0% +1/12/2018 12:00,129.7847823,87.68848672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26517177,1.530452809,1.144110891,-1.144110891,0.334499204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851715401,148.3987389,0.851715401,31.60126108,0,0.991294944,0,0,0,1,4,0% +1/12/2018 13:00,117.9612798,96.61651287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058812722,1.686276261,1.684161492,-1.684161492,0.242145112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710678063,135.2901112,0.710678063,44.70988879,0,0.979644655,0,0,0,1,5,0% +1/12/2018 14:00,106.3361674,104.9410791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855916234,1.83156735,2.796742462,-2.796742462,0.051882561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533358762,122.232675,0.533358762,57.76732495,0,0.95625447,0,0,0,1,6,0% +1/12/2018 15:00,95.156171,113.4295915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660788488,1.979719841,8.048014373,-8.048014373,0,#DIV/0!,0,0,0.458328633,1,0.123620652,0,0.948518437,0.9872804,0.724496596,1,0,0,0.064401865,0.312029739,0.833656752,0.558153348,0.961238037,0.922476074,0,0,0,0,0,0,-0.331827551,109.379738,0.331827551,70.62026198,0,0.899319323,0,0,0,1,7,0% +1/12/2018 16:00,84.55042421,122.6657886,34.70164419,173.7690768,18.19884733,17.91168059,0,17.91168059,17.65008494,0.261595652,29.33575321,20.37317542,8.962577789,0.548762394,8.413815396,1.475683287,2.140921891,-6.356997701,6.356997701,0.382735678,0.52443761,0.184804851,5.943959269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.965933,0.397576486,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.133890485,5.713559739,17.09982348,6.111136225,0,20.37317542,-0.117242813,96.73300406,0.117242813,83.26699594,0,0.623534628,17.09982348,18.81451658,29.41354829,1,8,72% +1/12/2018 17:00,75.29257223,133.1782739,186.741712,528.9374944,52.45329525,99.51551663,47.23614386,52.27937277,50.87163487,1.407737905,46.85935049,0,46.85935049,1.581660384,45.2776901,1.314103288,2.324399372,-1.719025014,1.719025014,0.82412428,0.280886871,1.229694903,39.55121512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.89975043,1.145907564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890909771,38.01813238,49.7906602,39.16403994,47.23614386,0,0.08930383,84.87644181,-0.08930383,95.12355819,0.490113596,0,72.94173653,39.16403994,98.57381739,1,9,35% +1/12/2018 18:00,67.57716273,145.4229338,328.1077803,678.5344217,69.28838627,258.8907466,189.2182457,69.67250082,67.19908578,2.473415041,81.64283053,0,81.64283053,2.089300493,79.55353003,1.179443989,2.538109002,-0.609936137,0.609936137,0.634458912,0.211175688,1.76021151,56.61445285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59431729,1.513691095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.275267247,54.41996551,65.86958454,55.93365661,189.2182457,0,0.278863149,73.80763437,-0.278863149,106.1923656,0.870700583,0,230.6220215,55.93365661,267.2294811,1,10,16% +1/12/2018 19:00,62.09889789,159.5948288,426.7714224,744.725785,78.27936412,405.0197346,325.8835989,79.13613572,75.91895247,3.217183251,105.836084,0,105.836084,2.360411648,103.4756723,1.08383023,2.785455232,-0.013355141,0.013355141,0.532437553,0.183422226,1.98885914,63.96854659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.97618483,1.710110204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440921676,61.48900014,74.41710651,63.19911035,325.8835989,0,0.437588714,64.04986744,-0.437588714,115.9501326,0.935737455,0,379.3585961,63.19911035,420.7211498,1,11,11% +1/12/2018 20:00,59.51132182,175.2980426,472.1324504,768.9626449,81.98534002,509.4861949,426.4138816,83.07231337,79.51317952,3.559133841,116.9461393,0,116.9461393,2.472160495,114.4739788,1.038668508,3.059528015,0.448114064,-0.448114064,0.453521671,0.173649026,1.951889862,62.77948754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.43109259,1.791071863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414137561,60.34603136,77.84523015,62.13710323,426.4138816,0,0.554531334,56.32155967,-0.554531334,123.6784403,0.95983377,0,487.1316736,62.13710323,527.7991649,1,12,8% +1/12/2018 21:00,60.19939982,191.4112406,460.1636203,762.8737006,81.02832105,556.3265731,474.2726471,82.05392595,78.5850182,3.468907743,114.0153002,0,114.0153002,2.443302842,111.5719973,1.050677735,3.340756373,0.91000437,-0.91000437,0.374533777,0.176085891,1.68127397,54.07555021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.53890862,1.770164592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218077268,51.97947572,76.75698589,53.74964031,474.2726471,0,0.621692223,51.56018483,-0.621692223,128.4398152,0.969574352,0,536.5995803,53.74964031,571.7776449,1,13,7% +1/12/2018 22:00,64.05507984,206.579098,391.8962187,723.7122551,75.26710516,535.149187,459.1973835,75.95180346,72.99752423,2.954279234,97.28935637,0,97.28935637,2.269580927,95.01977545,1.117972046,3.605485425,1.492825423,-1.492825423,0.274865507,0.192058769,1.223467313,39.35091443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16799689,1.644303655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886397904,37.82559574,71.05439479,39.46989939,459.1973835,0,0.634502705,50.61688922,-0.634502705,129.3831108,0.971198129,0,517.0260347,39.46989939,542.8582945,1,14,5% +1/12/2018 23:00,70.54570703,219.9617003,273.6998216,630.9816786,63.5483625,437.3303894,373.6349796,63.69540977,61.63214491,2.063264866,68.27790813,0,68.27790813,1.916217598,66.36169053,1.231254861,3.839055899,2.450847647,-2.450847647,0.111034058,0.232182696,0.654955716,21.06562723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24316198,1.388293127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474513187,20.24908216,59.71767516,21.63737529,373.6349796,0,0.592148698,53.69036493,-0.592148698,126.3096351,0.96556175,0,420.4853198,21.63737529,434.6465492,1,15,3% +1/12/2018 0:00,78.98702706,231.4484705,121.0005649,416.9711009,41.34605383,248.57441,207.5629389,41.01147113,40.09931776,0.912153369,30.58472392,0,30.58472392,1.246736074,29.33798785,1.378583689,4.039537859,4.871343236,-4.871343236,0,0.341701329,0.311684018,10.02482944,0.232478481,1,0.20246939,0,0.938561363,0.977323326,0.724496596,1,38.82865074,0.903256041,0.035825917,0.312029739,0.90343153,0.627928126,0.961238037,0.922476074,0.215678091,9.636247371,39.04432883,10.53950341,159.3090221,0,0.497787349,60.14628017,-0.497787349,119.8537198,0.949555503,0,190.3170874,10.53950341,197.2149816,1,16,4% +1/12/2018 1:00,88.57512179,241.3783918,1.76640703,12.83140655,1.447338029,6.054504442,4.637493072,1.41701137,1.403695447,0.013315922,0.471928417,0,0.471928417,0.043642582,0.428285835,1.545927511,4.21284768,39.74841724,-39.74841724,0,0.819368359,0.010910645,0.350923862,0.862395913,1,0.025152929,0,0.95894408,0.997706043,0.724496596,1,1.353552476,0.031618902,0.104569543,0.312029739,0.746575333,0.471071929,0.961238037,0.922476074,0.007731992,0.337321364,1.361284468,0.368940266,0.638138002,0,0.361417359,68.81273355,-0.361417359,111.1872664,0.911655787,0,1.94304667,0.368940266,2.184510696,1,17,12% +1/12/2018 2:00,99.72148274,250.2506157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740468209,4.367697199,-5.837006481,5.837006481,0.471659414,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178430075,79.72167053,-0.178430075,100.2783295,0.769778182,0,0,0,0,1,18,0% +1/12/2018 3:00,111.1149503,258.6124779,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939321732,4.513639225,-2.560348241,2.560348241,0.967999026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023056077,91.32113296,0.023056077,88.67886704,0,0,0,0,0,1,19,0% +1/12/2018 4:00,122.8484039,267.1021479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144109129,4.66181192,-1.480335339,1.480335339,0.783305942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235077573,103.5961955,0.235077573,76.40380451,0,0.837304253,0,0,0,1,20,0% +1/12/2018 5:00,134.6664564,276.656759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350373057,4.828571343,-0.904176631,0.904176631,0.684777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443189951,116.3075904,0.443189951,63.69240964,0,0.937181557,0,0,0,1,21,0% +1/12/2018 6:00,146.1993985,289.1028391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.551660868,5.04579642,-0.519508665,0.519508665,0.618994904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633214185,129.2876594,0.633214185,50.71234058,0,0.971037777,0,0,0,1,22,0% +1/12/2018 7:00,156.5911122,308.9197707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.733030487,5.391667123,-0.223491141,0.223491141,0.568372926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792202297,142.3917985,0.792202297,37.60820153,0,0.986884808,0,0,0,1,23,0% +1/13/2018 8:00,163.1777218,345.7045474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.847988512,6.033682592,0.030052421,-0.030052421,0.525014423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909319078,155.4114221,0.909319078,24.58857787,0,0.995013801,0,0,0,1,0,0% +1/13/2018 9:00,161.2304158,32.11845091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81400161,0.560572719,0.268225995,-0.268225995,0.484284343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976580006,167.575404,0.976580006,12.42459603,0,0.998800918,0,0,0,1,1,0% +1/13/2018 10:00,152.5272233,60.61573589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662102245,1.05794417,0.513004628,-0.513004628,0.442424731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989395152,171.6483092,0.989395152,8.351690771,0,0.999464074,0,0,0,1,2,0% +1/13/2018 11:00,141.4887078,76.52387804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469443805,1.335593628,0.790604898,-0.790604898,0.394952289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946882063,161.2414342,0.946882063,18.75856582,0,0.997195113,0,0,0,1,3,0% +1/13/2018 12:00,129.7702421,87.44199843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264917996,1.526150777,1.146261454,-1.146261454,0.334131436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85192634,148.421811,0.85192634,31.578189,0,0.99130948,0,0,0,1,4,0% +1/13/2018 13:00,117.9448205,96.40199324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058525453,1.682532188,1.688480612,-1.688480612,0.241406499,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710985705,135.3151717,0.710985705,44.6848283,0,0.979675098,0,0,0,1,5,0% +1/13/2018 14:00,106.3116629,104.7443109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85548855,1.828133099,2.807885085,-2.807885085,0.04997706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533650831,122.2524603,0.533650831,57.74753969,0,0.956305777,0,0,0,1,6,0% +1/13/2018 15:00,95.11851991,113.2419598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660131352,1.976445049,8.132624083,-8.132624083,0,#DIV/0!,0,0,0.46254097,1,0.122347397,0,0.948667678,0.987429642,0.724496596,1,0,0,0.064886733,0.312029739,0.832528739,0.557025335,0.961238037,0.922476074,0,0,0,0,0,0,-0.331992732,109.3897709,0.331992732,70.61022905,0,0.899394294,0,0,0,1,7,0% +1/13/2018 16:00,84.49588178,122.4824838,35.26726887,175.0440687,18.47751479,18.18620911,0,18.18620911,17.92034954,0.26585957,29.62301983,20.51489694,9.108122893,0.557165246,8.550957647,1.474731341,2.137722618,-6.319986323,6.319986323,0.389064996,0.523928146,0.18853459,6.063920509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.22572161,0.403664324,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.136592669,5.828871046,17.36231428,6.23253537,0,20.51489694,-0.117198469,96.73044571,0.117198469,83.26955429,0,0.623373268,17.36231428,19.02097372,29.81116116,1,8,72% +1/13/2018 17:00,75.21392392,132.9984267,187.8974264,529.1786559,52.84532117,100.1247888,47.45649891,52.66828993,51.25183976,1.416450169,47.15138785,0,47.15138785,1.593481412,45.55790644,1.312730616,2.321260446,-1.720070108,1.720070108,0.824303002,0.281245583,1.237576602,39.80471765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.26521784,1.154471858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896620035,38.26180865,50.16183787,39.41628051,47.45649891,0,0.089679541,84.85482841,-0.089679541,95.14517159,0.492459233,0,73.53222894,39.41628051,99.3293962,1,9,35% +1/13/2018 18:00,67.4706279,145.2512162,329.73141,678.5270921,69.74900535,259.8631715,189.7317014,70.13147014,67.6458155,2.485654648,82.05038772,0,82.05038772,2.103189858,79.94719786,1.177584605,2.535111965,-0.613723852,0.613723852,0.63510665,0.211532791,1.770515794,56.94587404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02373089,1.523753892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282732666,54.73854017,66.30646355,56.26229406,189.7317014,0,0.279622883,73.76230154,-0.279622883,106.2376985,0.871187738,0,231.5983954,56.26229406,268.4209416,1,10,16% +1/13/2018 19:00,61.96233158,159.4431002,428.8478307,744.7239168,78.78890551,406.4086228,326.7626574,79.6459654,76.41312931,3.232836094,106.3548978,0,106.3548978,2.375776201,103.9791216,1.081446698,2.782807068,-0.018250918,0.018250918,0.53327478,0.18372229,2.001198626,64.36542687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.4512064,1.72124177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449861592,61.87049657,74.90106799,63.59173834,326.7626574,0,0.438770194,63.97455902,-0.438770194,116.025441,0.936045131,0,380.7656625,63.59173834,422.3851834,1,11,11% +1/13/2018 20:00,59.34741104,175.18297,474.6252468,769.0663753,82.53118789,511.3325155,427.7120219,83.62049366,80.04256807,3.577925593,117.5670059,0,117.5670059,2.488619822,115.0783861,1.035807725,3.057519619,0.441926406,-0.441926406,0.454579823,0.173887058,1.965788649,63.22652032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.93996099,1.80299659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424207185,60.77573627,78.36416818,62.57873286,427.7120219,0,0.556144483,56.21041983,-0.556144483,123.7895802,0.960095305,0,489.0084724,62.57873286,529.9650014,1,12,8% +1/13/2018 21:00,60.01647532,191.3450873,463.0062793,763.1888087,81.60194331,558.6459439,476.0142634,82.63168055,79.14134364,3.490336908,114.7218326,0,114.7218326,2.46059967,112.2612329,1.0474851,3.33960178,0.901596454,-0.901596454,0.375971615,0.176243708,1.696138615,54.55364829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.0736698,1.782696085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228846653,52.43904179,77.30251645,54.22173787,476.0142634,0,0.623717562,51.41187828,-0.623717562,128.5881217,0.96983551,0,538.9580526,54.22173787,574.4450956,1,13,7% +1/13/2018 22:00,63.86387564,206.5617175,394.9901419,724.4528663,75.86483001,537.9532647,461.3984367,76.554828,73.57722547,2.977602534,98.05753748,0,98.05753748,2.287604536,95.76993294,1.114634903,3.605182078,1.479823672,-1.479823672,0.277088937,0.192067654,1.238494379,39.83423651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72522777,1.657361699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897284961,38.2901833,71.62251273,39.947545,461.3984367,0,0.636892278,50.43952706,-0.636892278,129.5604729,0.971493788,0,519.8682279,39.947545,546.0130972,1,14,5% +1/13/2018 23:00,70.35494643,219.983465,276.8987616,632.7242154,64.18179224,440.6961335,376.3622792,64.33385422,62.2464744,2.087379828,69.07262842,0,69.07262842,1.935317842,67.13731058,1.22792546,3.839435765,2.425639193,-2.425639193,0.115344957,0.231787935,0.668790909,21.51061459,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83367885,1.402131188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.484536737,20.67682094,60.31821559,22.07895213,376.3622792,0,0.594828316,53.49960593,-0.594828316,126.5003941,0.965942132,0,423.862398,22.07895213,438.3126306,1,15,3% +1/13/2018 0:00,78.8021106,231.498386,123.9706123,421.5994856,42.09674449,252.8376492,211.0757341,41.76191516,40.82737232,0.934542841,31.32748241,0,31.32748241,1.269372167,30.05811025,1.375356287,4.040409049,4.790265405,-4.790265405,0,0.339570352,0.317343042,10.20684308,0.22422283,1,0.205801111,0,0.938110124,0.976872087,0.724496596,1,39.52827677,0.919655814,0.034675879,0.312029739,0.906374823,0.630871419,0.961238037,0.922476074,0.219806252,9.811205805,39.74808302,10.73086162,163.7477357,0,0.500654629,59.95668063,-0.500654629,120.0433194,0.950130755,0,195.3298427,10.73086162,202.352977,1,16,4% +1/13/2018 1:00,88.4119969,241.4486559,2.235386435,15.61306487,1.80271196,7.45037592,5.685171089,1.765204831,1.748353543,0.016851287,0.596353738,0,0.596353738,0.054358417,0.541995322,1.543080444,4.214074021,35.67015345,-35.67015345,0,0.806443097,0.013589604,0.437088386,0.847788407,1,0.028027301,0,0.958672244,0.997434207,0.724496596,1,1.686413335,0.039382488,0.103311918,0.312029739,0.749105684,0.47360228,0.961238037,0.922476074,0.009610172,0.420145982,1.696023507,0.45952847,0.865348949,0,0.364129089,68.64600481,-0.364129089,111.3539952,0.91268606,0,2.48581543,0.45952847,2.786567623,1,17,12% +1/13/2018 2:00,99.54845993,250.3372824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737448391,4.369209819,-5.944768911,5.944768911,0.453230953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.181397994,79.54880042,-0.181397994,100.4511996,0.774362994,0,0,0,0,1,18,0% +1/13/2018 3:00,110.9470142,258.714773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936390693,4.515424612,-2.582147751,2.582147751,0.971726962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.020215474,91.15834023,0.020215474,88.84165977,0,0,0,0,0,1,19,0% +1/13/2018 4:00,122.6831837,267.2216812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141225493,4.66389817,-1.488785537,1.488785537,0.784751011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.23246603,103.4423009,0.23246603,76.55769915,0,0.834914811,0,0,0,1,20,0% +1/13/2018 5:00,134.500263,276.7961941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347472434,4.831004943,-0.908324064,0.908324064,0.685486253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440893258,116.1608884,0.440893258,63.83911162,0,0.936593866,0,0,0,1,21,0% +1/13/2018 6:00,146.0263527,289.2594007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548640649,5.048528935,-0.521746414,0.521746414,0.619377581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631296294,129.1458257,0.631296294,50.85417432,0,0.970797888,0,0,0,1,22,0% +1/13/2018 7:00,156.4035625,309.0444499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.729757127,5.393843185,-0.224685923,0.224685923,0.568577245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790700943,142.251064,0.790700943,37.74893599,0,0.986764967,0,0,0,1,23,0% +1/14/2018 8:00,162.9893918,345.5411162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.844701532,6.030830179,0.029540916,-0.029540916,0.525101895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908243202,155.2636929,0.908243202,24.73630709,0,0.994948666,0,0,0,1,0,0% +1/14/2018 9:00,161.1130232,31.63811009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811952723,0.55218919,0.268260536,-0.268260536,0.484278436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975909157,167.3980028,0.975909157,12.60199724,0,0.998765723,0,0,0,1,1,0% +1/14/2018 10:00,152.4725935,60.21108946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661148775,1.050881757,0.513587279,-0.513587279,0.442325092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989080908,171.5252509,0.989080908,8.474749147,0,0.999448018,0,0,0,1,2,0% +1/14/2018 11:00,141.4602981,76.21433971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468947962,1.330191165,0.791887189,-0.791887189,0.394733005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946851374,161.235967,0.946851374,18.76403299,0,0.997193402,0,0,0,1,3,0% +1/14/2018 12:00,129.7496592,87.18962496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264558756,1.521746029,1.148675648,-1.148675648,0.333718585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852086552,148.4393447,0.852086552,31.56065526,0,0.991320515,0,0,0,1,4,0% +1/14/2018 13:00,117.9224719,96.18237826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058135396,1.678699183,1.693276284,-1.693276284,0.240586391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71123094,135.3351564,0.71123094,44.66484359,0,0.979699346,0,0,0,1,5,0% +1/14/2018 14:00,106.2812398,104.543082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854957568,1.824620992,2.820262113,-2.820262113,0.047860464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533869262,122.26726,0.533869262,57.73273998,0,0.956344112,0,0,0,1,6,0% +1/14/2018 15:00,95.07479748,113.0504077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659368252,1.973101836,8.22880945,-8.22880945,0,#DIV/0!,0,0,0.467250732,1,0.120931279,0,0.948833228,0.987595191,0.724496596,1,0,0,0.065426958,0.312029739,0.831274144,0.555770739,0.961238037,0.922476074,0,0,0,0,0,0,-0.332074272,109.3947238,0.332074272,70.60527619,0,0.899431274,0,0,0,1,7,0% +1/14/2018 16:00,84.4351472,122.2958019,35.91420767,176.6171652,18.78722174,18.49145415,0,18.49145415,18.22071769,0.270736468,29.94989222,20.67557272,9.274319503,0.566504053,8.70781545,1.473671323,2.134464405,-6.277072803,6.277072803,0.39640364,0.523113914,0.192805867,6.201299461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.5144469,0.410430258,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.139687195,5.96092492,17.65413409,6.371355178,0,20.67557272,-0.117064345,96.72270766,0.117064345,83.27729234,0,0.622884467,17.65413409,19.24984827,30.25277479,1,8,71% +1/14/2018 17:00,75.12870161,132.8158777,189.1722581,529.5850944,53.25494961,100.818425,47.74324822,53.07517678,51.64911639,1.426060388,47.47283735,0,47.47283735,1.605833221,45.86700413,1.311243206,2.318074365,-1.720441784,1.720441784,0.824366562,0.281515642,1.246106002,40.07905249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.64709524,1.163420702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902799557,38.52550973,50.5498948,39.68893044,47.74324822,0,0.090152175,84.82763832,-0.090152175,95.17236168,0.495382212,0,74.20105071,39.68893044,100.1766619,1,9,35% +1/14/2018 18:00,67.3572349,145.0777755,331.4786833,678.6164822,70.22199723,260.9434054,190.3400341,70.60337126,68.10454493,2.498826332,82.4882968,0,82.4882968,2.117452308,80.37084449,1.175605524,2.532084854,-0.617323211,0.617323211,0.635722176,0.211844685,1.781394543,57.29577201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46467907,1.534086989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.290614282,55.07487541,66.75529335,56.6089624,190.3400341,0,0.28048248,73.71099726,-0.28048248,106.2890027,0.871735746,0,232.6815051,56.6089624,269.7309388,1,10,16% +1/14/2018 19:00,61.81876333,159.2911005,431.0449588,744.790358,79.30867895,407.9125759,327.7459473,80.16662863,76.91722966,3.249398974,106.90329,0,106.90329,2.391449288,104.5118407,1.07894096,2.780154173,-0.023092425,0.023092425,0.534102727,0.183991663,2.014055278,64.77894102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93576684,1.732596868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.459176193,62.2679821,75.39494303,64.00057896,327.7459473,0,0.440051276,63.89284722,-0.440051276,116.1071528,0.936376878,0,382.2886698,64.00057896,424.1757687,1,11,11% +1/14/2018 20:00,59.17664859,175.0695408,477.2317961,769.2254396,83.08614293,513.293771,429.115407,84.17836403,80.58078916,3.597574862,118.2157279,0,118.2157279,2.505353765,115.7103742,1.032827358,3.055539906,0.435735449,-0.435735449,0.455638539,0.174100183,1.980148264,63.68837488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45731958,1.815120274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.434610677,61.21968844,78.89193026,63.03480872,429.115407,0,0.557853894,56.09249022,-0.557853894,123.9075098,0.960370797,0,491.0018356,63.03480872,532.2568572,1,12,8% +1/14/2018 21:00,59.82724615,191.2825639,465.9529015,763.5536894,82.18402394,561.0755172,477.857095,83.21842218,79.70587239,3.512549791,115.4538271,0,115.4538271,2.478151548,112.9756756,1.044182428,3.338510542,0.893153072,-0.893153072,0.377415519,0.176378393,1.711405476,55.04468302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.6163163,1.795412361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239907441,52.91104304,77.85622374,54.7064554,477.857095,0,0.625832999,51.25664652,-0.625832999,128.7433535,0.970106482,0,541.428489,54.7064554,577.23277,1,13,7% +1/14/2018 22:00,63.66723157,206.5494838,398.1763131,725.2418498,76.47075266,540.8595884,463.6930898,77.16649856,74.16487732,3.001621238,98.84833237,0,98.84833237,2.30587534,96.54245703,1.111202817,3.604968561,1.466773321,-1.466773321,0.279320679,0.192052491,1.253864051,40.32857799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.29010108,1.670598834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908420236,38.76536314,72.19852131,40.43596197,463.6930898,0,0.639363393,50.25563432,-0.639363393,129.7443657,0.971797212,0,522.8141731,40.43596197,549.2787015,1,14,5% +1/14/2018 23:00,70.15971491,220.0112334,280.1773438,634.5140611,64.82366687,444.1534533,379.172364,64.98108931,62.86899414,2.112095165,69.88691352,0,69.88691352,1.95467273,67.93224078,1.224518027,3.839920414,2.40045338,-2.40045338,0.119651985,0.231366555,0.682914444,21.96487601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.43206851,1.416153739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.49476919,21.1134743,60.9268377,22.52962804,379.172364,0,0.597579135,53.30328798,-0.597579135,126.696712,0.966329073,0,427.3321168,22.52962804,442.0773077,1,15,3% +1/14/2018 0:00,78.61360119,231.5546926,127.0108751,426.2593506,42.8567794,257.1784537,214.6565027,42.521951,41.56448938,0.957461626,32.08754717,0,32.08754717,1.292290024,30.79525714,1.372066178,4.041391784,4.71043205,-4.71043205,0,0.337426062,0.323072506,10.39112234,0.215918506,1,0.209189004,0,0.937648783,0.976410746,0.724496596,1,40.23614321,0.936259723,0.033510796,0.312029739,0.909367255,0.63386385,0.961238037,0.922476074,0.224002365,9.988342043,40.46014557,10.92460177,168.3081913,0,0.503581921,59.76273771,-0.503581921,120.2372623,0.950711289,0,200.4726431,10.92460177,207.6225764,1,16,4% +1/14/2018 1:00,88.2450892,241.5255052,2.785516342,18.79827896,2.209834411,9.061370731,6.897172581,2.164198149,2.14319975,0.020998399,0.742015348,0,0.742015348,0.066634661,0.675380687,1.540167355,4.215415294,32.28225421,-32.28225421,0,0.793330263,0.016658665,0.535799938,0.833067268,1,0.030966869,0,0.958392194,0.997154157,0.724496596,1,2.067893785,0.048276585,0.10203162,0.312029739,0.751694716,0.476191312,0.961238037,0.922476074,0.01175609,0.51503128,2.079649875,0.563307865,1.151363862,0,0.36690447,68.47516586,-0.36690447,111.5248341,0.913724746,0,3.131679527,0.563307865,3.500353258,1,17,12% +1/14/2018 2:00,99.37313212,250.4307424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734388344,4.370841003,-6.057968316,6.057968316,0.433872715,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184402725,79.37368803,-0.184402725,100.626312,0.778854332,0,0,0,0,1,18,0% +1/14/2018 3:00,110.7771261,258.8242261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933425587,4.517334929,-2.604490783,2.604490783,0.975547845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017348008,90.99401752,0.017348008,89.00598248,0,0,0,0,0,1,19,0% +1/14/2018 4:00,122.5161567,267.3490218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138310321,4.666120682,-1.4973424,1.4973424,0.786214321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229835602,103.2873931,0.229835602,76.71260686,0,0.832453199,0,0,0,1,20,0% +1/14/2018 5:00,134.332143,276.9445352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344538186,4.833593984,-0.912473572,0.912473572,0.686195861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438583133,116.0135144,0.438583133,63.98648562,0,0.935996528,0,0,0,1,21,0% +1/14/2018 6:00,145.8508536,289.42666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.545577613,5.05144816,-0.523946796,0.523946796,0.619753869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629367527,129.0034752,0.629367527,50.99652476,0,0.970555164,0,0,0,1,22,0% +1/14/2018 7:00,156.2123047,309.1825844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726419049,5.396254088,-0.225821545,0.225821545,0.568771448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789188191,142.1097113,0.789188191,37.89028869,0,0.986643756,0,0,0,1,23,0% +1/15/2018 8:00,162.7948075,345.3936301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.841305396,6.028256061,0.029106463,-0.029106463,0.525176191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907152367,155.1147491,0.907152367,24.88525093,0,0.994882468,0,0,0,1,0,0% +1/15/2018 9:00,160.9873199,31.16075854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.809758787,0.543857834,0.26839258,-0.26839258,0.484255855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975216994,167.2175045,0.975216994,12.7824955,0,0.998729359,0,0,0,1,1,0% +1/15/2018 10:00,152.4104995,59.80063827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660065031,1.043718033,0.514296436,-0.514296436,0.442203819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98873664,171.3924394,0.98873664,8.607560591,0,0.999430417,0,0,0,1,2,0% +1/15/2018 11:00,141.425319,75.89840165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468337463,1.324677006,0.793343691,-0.793343691,0.394483928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946780193,161.2232926,0.946780193,18.77670742,0,0.997189432,0,0,0,1,3,0% +1/15/2018 12:00,129.7229643,86.93158325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264092842,1.517242352,1.151355074,-1.151355074,0.333260376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852194776,148.4511938,0.852194776,31.54880622,0,0.991327967,0,0,0,1,4,0% +1/15/2018 13:00,117.8941797,95.9578346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057641606,1.674780157,1.698552611,-1.698552611,0.239684086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71141245,135.3499527,0.71141245,44.65004733,0,0.979717283,0,0,0,1,5,0% +1/15/2018 14:00,106.2448605,104.3375317,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854322629,1.821033461,2.833893995,-2.833893995,0.045529274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534012807,122.2769872,0.534012807,57.72301281,0,0.956369287,0,0,0,1,6,0% +1/15/2018 15:00,95.02498308,112.8550579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658498826,1.969692337,8.337232337,-8.337232337,0,#DIV/0!,0,0,0.472461713,1,0.119373603,0,0.949014794,0.987776757,0.724496596,1,0,0,0.066022351,0.312029739,0.829894121,0.554390717,0.961238037,0.922476074,0,0,0,0,0,0,-0.33207111,109.3945317,0.33207111,70.60546827,0,0.89942984,0,0,0,1,7,0% +1/15/2018 16:00,84.36821161,122.1058535,36.64379893,178.4850259,19.12816221,18.82761398,0,18.82761398,18.55137754,0.276236435,30.31561181,20.85411385,9.461497965,0.576784666,8.884713299,1.472503077,2.131149179,-6.228558397,6.228558397,0.404700093,0.522002706,0.197632875,6.356552628,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.83228973,0.417878527,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143184345,6.110160169,17.97547407,6.528038696,0,20.85411385,-0.116839571,96.70974008,0.116839571,83.29025992,0,0.62206279,17.97547407,19.50060694,30.7382313,1,8,71% +1/15/2018 17:00,75.0369201,132.6307272,190.5659614,530.1535019,53.68214524,101.5966551,48.09665787,53.49999721,52.0634305,1.436566712,47.82363837,0,47.82363837,1.618714745,46.20492363,1.309641316,2.31484288,-1.720144723,1.720144723,0.824315762,0.281698499,1.255280251,40.37412786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.04534972,1.172753322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909446268,38.8091474,50.95479599,39.98190072,48.09665787,0,0.090722136,84.79484763,-0.090722136,95.20515237,0.498866589,0,74.94861166,39.98190072,101.115966,1,9,35% +1/15/2018 18:00,67.23701709,144.9027035,333.348733,678.8005017,70.70729899,262.1310395,191.0429029,71.0881366,68.57521304,2.512923556,82.95634564,0,82.95634564,2.132085947,80.82425969,1.173507328,2.52902927,-0.620729665,0.620729665,0.636304714,0.212112098,1.792842507,57.66397788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91710316,1.54468901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298908293,55.42880889,67.21601145,56.9734979,191.0429029,0,0.2814419,73.65371934,-0.2814419,106.3462807,0.872343439,0,233.8710344,56.9734979,271.1590493,1,10,16% +1/15/2018 19:00,61.66824409,159.138917,433.3614313,744.9233505,79.83858564,409.5306123,328.832593,80.69801924,77.43115771,3.266861522,107.4809242,0,107.4809242,2.40742793,105.0734963,1.076313903,2.777498071,-0.027873314,0.027873314,0.534920307,0.184230944,2.027422029,65.20886168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.42977403,1.74417334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468860359,62.68123818,75.89863439,64.42541152,328.832593,0,0.441431448,63.80475115,-0.441431448,116.1952488,0.93673213,0,383.9266895,64.42541152,426.0918329,1,11,11% +1/15/2018 20:00,58.99910318,174.9578442,479.9502897,769.4380604,83.65006897,515.3683983,430.6226195,84.74577877,81.12771076,3.618068015,118.8918626,0,118.8918626,2.522358215,116.3695044,1.029728606,3.053590433,0.429549097,-0.429549097,0.456696468,0.174289027,1.994960415,64.16478456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98304142,1.827439941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445342029,61.67763155,79.42838345,63.50507149,430.6226195,0,0.559658589,55.96780979,-0.559658589,124.0321902,0.960659818,0,493.1102309,63.50507149,534.6730301,1,12,8% +1/15/2018 21:00,59.63179991,191.2237608,469.0013425,763.966281,82.77438474,563.6131474,479.7991855,83.81396186,80.27843164,3.535530227,116.2107585,0,116.2107585,2.495953105,113.7148054,1.040771247,3.337484235,0.884684815,-0.884684815,0.378863676,0.17649072,1.727065763,55.54837168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16668203,1.808309528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.251253266,53.39520774,78.41793529,55.20351727,479.7991855,0,0.628037123,51.09454693,-0.628037123,128.9054531,0.970386872,0,544.008766,55.20351727,580.138364,1,13,7% +1/15/2018 22:00,63.4652525,206.5424762,401.4523851,726.0764784,77.08463687,543.8654239,466.0788556,77.78656831,74.76025066,3.026317653,99.66116484,0,99.66116484,2.324386214,97.33677862,1.107677617,3.604846254,1.453690595,-1.453690595,0.281557957,0.192014395,1.26956801,40.83367131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.86239658,1.684009899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.919797701,39.25087805,72.78219428,40.93488795,466.0788556,0,0.641914274,50.06528934,-0.641914274,129.9347107,0.972107979,0,525.8611688,40.93488795,552.6522342,1,14,5% +1/15/2018 23:00,69.96012854,220.0450604,283.5332136,636.347038,65.47364038,447.6989563,382.0621947,65.63676168,63.49936855,2.137393129,70.72018209,0,70.72018209,1.974271829,68.74591026,1.221034588,3.840510807,2.375320491,-2.375320491,0.123949962,0.230920532,0.697320025,22.42820903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.03800836,1.43035322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.505205984,21.55884762,61.54321435,22.98920084,382.0621947,0,0.600399109,53.10151292,-0.600399109,126.8984871,0.966722062,0,430.8911668,22.98920084,445.937139,1,15,3% +1/15/2018 0:00,78.42161818,231.6174172,130.1193784,430.9431138,43.62551651,261.5925087,218.3015676,43.29094106,42.31004623,0.980894837,32.86442004,0,32.86442004,1.315470284,31.54894976,1.368715442,4.042486535,4.63190269,-4.63190269,0,0.335273017,0.328867571,10.57751156,0.207574523,1,0.212630504,0,0.937177573,0.975939536,0.724496596,1,40.95162043,0.953053743,0.032331713,0.312029739,0.912406536,0.636903132,0.961238037,0.922476074,0.228263896,10.16750644,41.17988432,11.12056019,172.9877237,0,0.506567017,59.56457022,-0.506567017,120.4354298,0.951296377,0,205.7424791,11.12056019,213.0206634,1,16,4% +1/15/2018 1:00,88.07455087,241.6089403,3.422805322,22.40183972,2.670123624,10.89828276,8.282870665,2.615412097,2.589609545,0.025802552,0.910412857,0,0.910412857,0.080514079,0.829898778,1.5371909,4.21687151,29.4274695,-29.4274695,0,0.780098011,0.02012852,0.647402386,0.818255837,1,0.033968784,0,0.958104069,0.996866032,0.724496596,1,2.499358622,0.058332176,0.100730216,0.312029739,0.754339936,0.478836532,0.961238037,0.922476074,0.014175888,0.622307799,2.51353451,0.680639975,1.505363397,0,0.369740645,68.30037693,-0.369740645,111.6996231,0.914770074,0,3.890595897,0.680639975,4.336061147,1,17,11% +1/15/2018 2:00,99.19561099,250.5309722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731290015,4.372590344,-6.176919376,6.176919376,0.413530885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.187442062,79.19645663,-0.187442062,100.8035434,0.783250907,0,0,0,0,1,18,0% +1/15/2018 3:00,110.6053886,258.94079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930428202,4.519369354,-2.627380623,2.627380623,0.979462238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014455696,90.82827922,0.014455696,89.17172078,0,0,0,0,0,1,19,0% +1/15/2018 4:00,122.3474142,267.4840939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13536521,4.668478135,-1.506002323,1.506002323,0.787695255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227188008,103.1315744,0.227188008,76.86842564,0,0.829917961,0,0,0,1,20,0% +1/15/2018 5:00,134.1621762,277.1016643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341571707,4.836336404,-0.916622218,0.916622218,0.686905321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436260918,115.8655552,0.436260918,64.13444478,0,0.935389688,0,0,0,1,21,0% +1/15/2018 6:00,145.6729722,289.6044216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.542472995,5.054550684,-0.526107683,0.526107683,0.620123402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627428785,128.8606767,0.627428785,51.13932333,0,0.970309681,0,0,0,1,22,0% +1/15/2018 7:00,156.0174177,309.3338415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72301763,5.398894022,-0.226896436,0.226896436,0.568955265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787664477,141.9677858,0.787664477,38.03221423,0,0.986521195,0,0,0,1,23,0% +1/16/2018 8:00,162.5940972,345.2619385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.837802341,6.025957609,0.028750269,-0.028750269,0.525237104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906046546,154.9646061,0.906046546,25.03539392,0,0.994815197,0,0,0,1,0,0% +1/16/2018 9:00,160.853345,30.68724429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807420483,0.535593451,0.268623117,-0.268623117,0.484216431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974503063,167.0339185,0.974503063,12.96608155,0,0.998691798,0,0,0,1,1,0% +1/16/2018 10:00,152.3408791,59.38496081,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658849925,1.036463092,0.515133004,-0.515133004,0.442060758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98836153,171.2500073,0.98836153,8.749992654,0,0.999411224,0,0,0,1,2,0% +1/16/2018 11:00,141.3836957,75.57639365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467610998,1.319056906,0.794975431,-0.794975431,0.394204884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946667434,161.2032314,0.946667434,18.79676864,0,0.997183141,0,0,0,1,3,0% +1/16/2018 12:00,129.6900923,86.66809467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263519117,1.512643608,1.154301417,-1.154301417,0.332756522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852249759,148.4572153,0.852249759,31.54278472,0,0.991331752,0,0,0,1,4,0% +1/16/2018 13:00,117.8598935,95.72853151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057043198,1.670778063,1.704314064,-1.704314064,0.238698819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711528943,135.3594508,0.711528943,44.64054916,0,0.97972879,0,0,0,1,5,0% +1/16/2018 14:00,106.2024904,104.1278005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85358313,1.817372961,2.848803526,-2.848803526,0.042979594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534080253,122.2815579,0.534080253,57.71844211,0,0.956381111,0,0,0,1,6,0% +1/16/2018 15:00,94.96905946,112.6560331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657522775,1.966218699,8.458665305,-8.458665305,0,#DIV/0!,0,0,0.478178268,1,0.11767576,0,0.949212062,0.987974025,0.724496596,1,0,0,0.066672717,0.312029739,0.828389904,0.5528865,0.961238037,0.922476074,0,0,0,0,0,0,-0.331982229,109.3891329,0.331982229,70.61086706,0,0.899389528,0,0,0,1,7,0% +1/16/2018 16:00,84.29506898,121.9127485,37.53364287,181.4994346,19.49162145,19.1868216,0,19.1868216,18.90387714,0.282944454,30.83712812,21.14891755,9.688210565,0.587744303,9.100466262,1.471226497,2.127778862,-6.174770668,6.174770668,0.413898336,0.519310676,0.203229717,6.536566305,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.17112576,0.425818747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.147239238,6.283196163,18.31836499,6.70901491,0,21.14891755,-0.116523325,96.69149589,0.116523325,83.30850411,0,0.620901361,18.31836499,19.84040661,31.30351431,1,8,71% +1/16/2018 17:00,74.93859723,132.4430748,192.2388515,531.9131911,54.0190491,102.4507759,48.61142282,53.83935312,52.39017546,1.449177664,48.23940884,0,48.23940884,1.628873639,46.6105352,1.307925258,2.311567727,-1.719185601,1.719185601,0.824151742,0.280999645,1.265950945,40.71733407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.35942941,1.180113407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91717715,39.13905027,51.27660656,40.31916367,48.61142282,0,0.091389767,84.75643557,-0.091389767,95.24356443,0.502892797,0,75.72294097,40.31916367,102.1110272,1,9,35% +1/16/2018 18:00,67.11001063,144.7260906,335.5294061,679.9662852,71.04768249,263.525876,192.0911808,71.43469512,68.90533273,2.529362391,83.49533889,0,83.49533889,2.142349765,81.35298913,1.171290647,2.525946795,-0.623939233,0.623939233,0.636853582,0.211748005,1.805330161,58.06562376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.23442676,1.552125112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.307955556,55.81488619,67.54238232,57.3670113,192.0911808,0,0.282501037,73.59046871,-0.282501037,106.4095313,0.873009499,0,235.2398079,57.3670113,272.7853695,1,10,16% +1/16/2018 19:00,61.51082727,158.986636,435.9962596,745.9183505,80.19866627,411.441902,330.3747975,81.06710455,77.78038058,3.286723971,108.1306266,0,108.1306266,2.41828569,105.7123409,1.073566461,2.774840265,-0.032587537,0.032587537,0.535726487,0.183943473,2.041471584,65.66074364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.76546033,1.75203975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479039213,63.11560431,76.24449955,64.86764406,330.3747975,0,0.442910135,63.71029285,-0.442910135,116.2897072,0.937110283,0,385.8421194,64.86764406,428.2966951,1,11,11% +1/16/2018 20:00,58.81484574,174.8479685,482.9835368,770.4615136,84.03443454,517.7998857,432.6584655,85.14142019,81.50048628,3.640933914,119.6388985,0,119.6388985,2.533948255,117.1049503,1.026512707,3.051672741,0.423374998,-0.423374998,0.457752301,0.173990267,2.010152779,64.65342323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.34136743,1.835836885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.456348846,62.14732962,79.79771628,63.98316651,432.6584655,0,0.561557531,55.83642001,-0.561557531,124.16358,0.960961928,0,495.5660294,63.98316651,537.4417322,1,12,8% +1/16/2018 21:00,59.4302262,191.1687678,472.353182,765.1919728,83.18629065,566.5610037,482.3222888,84.23871487,80.67791706,3.560797809,117.0358713,0,117.0358713,2.508373588,114.5274977,1.037253122,3.336524425,0.876201937,-0.876201937,0.380314334,0.176110364,1.742823235,56.05518617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55068261,1.817308126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262669501,53.88237711,78.81335211,55.69968523,482.3222888,0,0.630328474,50.92563906,-0.630328474,129.0743609,0.970676279,0,546.9921567,55.69968523,583.4464867,1,13,7% +1/16/2018 22:00,63.2580451,206.5407725,405.0132568,727.7782189,77.53267171,547.3323674,469.0844308,78.2479366,75.1947756,3.053161008,100.5380493,0,100.5380493,2.337896117,98.2001532,1.104061165,3.604816519,1.44059108,-1.44059108,0.283798106,0.191432429,1.285082718,41.33267764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.28007848,1.693797778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.931038054,39.73054191,73.21111653,41.42433969,469.0844308,0,0.644543102,49.86857254,-0.644543102,130.1314275,0.972425669,0,529.3608579,41.42433969,556.4722597,1,14,5% +1/16/2018 23:00,69.75630476,220.0849996,287.1452836,639.1571895,65.98806451,451.7575851,385.5946817,66.16290333,63.99828089,2.164622439,71.61148209,0,71.61148209,1.989783615,69.62169847,1.217477192,3.841207877,2.350269024,-2.350269024,0.128234015,0.229807238,0.711234645,22.87575105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.51758189,1.441591456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.515287079,21.98904203,62.03286897,23.43063348,385.5946817,0,0.603286153,52.89438469,-0.603286153,127.1056153,0.967120591,0,434.9494253,23.43063348,450.2843063,1,15,4% +1/16/2018 0:00,78.22628174,231.6865843,133.4347931,436.7137269,44.32465807,266.546664,222.55267,43.99399392,42.98810609,1.005887833,33.68936242,0,33.68936242,1.336551981,32.35281044,1.365306178,4.043693729,4.554727608,-4.554727608,0,0.332182162,0.334137995,10.74702652,0.199199587,1,0.21612304,0,0.936696733,0.975458697,0.724496596,1,41.60119499,0.968327361,0.031139664,0.312029739,0.915490375,0.639986971,0.961238037,0.922476074,0.232181512,10.33045068,41.8333765,11.29877804,178.22027,0,0.509607682,59.36229883,-0.509607682,120.6377012,0.951885309,0,211.4786334,11.29877804,218.8734576,1,16,3% +1/16/2018 1:00,87.90053926,241.6989589,4.1698659,26.68937807,3.192119132,13.07268649,9.945387318,3.127299173,3.095864963,0.031434211,1.107286434,0,1.107286434,0.096254169,1.011032265,1.534153824,4.218442632,26.99270496,-26.99270496,0,0.765520813,0.024063542,0.773966241,0.803376835,1,0.037030112,0,0.957808023,0.996569987,0.724496596,1,2.988839435,0.069735818,0.099409284,0.312029739,0.757038766,0.481535361,0.961238037,0.922476074,0.016913504,0.74396579,3.005752939,0.813701608,1.955493536,0,0.37263466,68.12180438,-0.37263466,111.8781956,0.915820318,0,4.796633652,0.813701608,5.32918508,1,17,11% +1/16/2018 2:00,99.01600756,250.6379458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728155344,4.374457385,-6.301964342,6.301964342,0.392146937,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190513798,79.01722962,-0.190513798,100.9827704,0.787551818,0,0,0,0,1,18,0% +1/16/2018 3:00,110.4319027,259.0644147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927400302,4.521527011,-2.650820639,2.650820639,0.983470717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011540543,90.66123909,0.011540543,89.33876091,0,0,0,0,0,1,19,0% +1/16/2018 4:00,122.177046,267.626819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132391723,4.670969157,-1.514761649,1.514761649,0.789193188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224524951,102.9749452,0.224524951,77.02505483,0,0.827307601,0,0,0,1,20,0% +1/16/2018 5:00,133.9904403,277.26746,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33857435,4.839230086,-0.920767063,0.920767063,0.687614131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433927926,115.7170958,0.433927926,64.28290424,0,0.934773491,0,0,0,1,21,0% +1/16/2018 6:00,145.4927764,289.7924865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539327985,5.057833038,-0.528226967,0.528226967,0.620485821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548094,128.7174959,0.62548094,51.2825041,0,0.970061513,0,0,0,1,22,0% +1/16/2018 7:00,155.8189774,309.4978824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719554192,5.401757076,-0.227909054,0.227909054,0.569128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786130206,141.8253297,0.786130206,38.17467035,0,0.986397305,0,0,0,1,23,0% +1/17/2018 8:00,162.3873879,345.145853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.834194583,6.023931535,0.028473515,-0.028473515,0.525284432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904925685,154.8132759,0.904925685,25.18672412,0,0.994746844,0,0,0,1,0,0% +1/17/2018 9:00,160.7111467,30.21837601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804938655,0.527410156,0.268953113,-0.268953113,0.484159998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973766888,166.8472506,0.973766888,13.15274942,0,0.998653009,0,0,0,1,1,0% +1/17/2018 10:00,152.2636773,58.96463983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6575025,1.029127107,0.516097873,-0.516097873,0.441895755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987954751,171.0981059,0.987954751,8.901894142,0,0.999390395,0,0,0,1,2,0% +1/17/2018 11:00,141.3353581,75.2486516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.466767349,1.313336728,0.796783449,-0.796783449,0.393895695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946512006,161.1756128,0.946512006,18.8243872,0,0.997174468,0,0,0,1,3,0% +1/17/2018 12:00,129.650982,86.39938447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262836514,1.507953731,1.157516447,-1.157516447,0.332206719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852250263,148.4572704,0.852250263,31.54272956,0,0.991331787,0,0,0,1,4,0% +1/17/2018 13:00,117.8195664,95.49464054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056339358,1.666695895,1.710565495,-1.710565495,0.237629762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711579146,135.3635446,0.711579146,44.63645536,0,0.979733747,0,0,0,1,5,0% +1/17/2018 14:00,106.1540987,103.9140303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852738537,1.813641968,2.865015961,-2.865015961,0.040207105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534070418,122.2808914,0.534070418,57.7191086,0,0.956379387,0,0,0,1,6,0% +1/17/2018 15:00,94.90701281,112.4534566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656439857,1.962683072,8.594006788,-8.594006788,0,#DIV/0!,0,0,0.484405331,1,0.115839225,0,0.949424698,0.988186661,0.724496596,1,0,0,0.067377861,0.312029739,0.826762798,0.551259394,0.961238037,0.922476074,0,0,0,0,0,0,-0.331806657,109.378469,0.331806657,70.62153103,0,0.899309835,0,0,0,1,7,0% +1/17/2018 16:00,84.21571619,121.7165968,38.58847537,185.6728907,19.87573048,19.5673001,0,19.5673001,19.27640388,0.290896227,31.51492557,21.55937635,9.955549223,0.599326608,9.356222615,1.46984153,2.124355369,-6.116058555,6.116058555,0.423938699,0.515069079,0.209634384,6.742562415,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.52921262,0.434210087,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151879398,6.481207459,18.68109202,6.915417546,0,21.55937635,-0.116114831,96.66793097,0.116114831,83.33206903,0,0.619391786,18.68109202,20.26911818,31.94682448,1,8,71% +1/17/2018 17:00,74.83375383,132.2530189,194.1918901,534.8510544,54.26382188,103.3808578,49.28938992,54.09146793,52.62756743,1.463900494,48.72032646,0,48.72032646,1.636254442,47.08407202,1.306095396,2.308250626,-1.717573005,1.717573005,0.823875972,0.279434027,1.278118374,41.1086804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5876196,1.185460773,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.925992411,39.51522725,51.51361202,40.70068802,49.28938992,0,0.092155357,84.71238461,-0.092155357,95.28761539,0.507437944,0,76.52491871,40.70068802,103.162705,1,9,35% +1/17/2018 18:00,66.97625439,144.5480262,338.0204998,682.1018902,71.24186414,265.1266351,193.4848347,71.64180038,69.09365908,2.548141308,84.10518869,0,84.10518869,2.148205058,81.95698363,1.16895616,2.522838984,-0.626948503,0.626948503,0.637368198,0.210761963,1.818856101,58.5006645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.41545321,1.556367252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317755054,56.2330639,67.73320826,57.78943115,193.4848347,0,0.283659725,73.52124943,-0.283659725,106.4787506,0.873732467,0,236.7871902,57.78943115,274.6092171,1,10,16% +1/17/2018 19:00,61.34656868,158.8343421,438.9485847,747.7643616,80.38778548,413.6440915,332.3713146,81.27277699,77.96379715,3.308979844,108.8521547,0,108.8521547,2.423988331,106.4281663,1.070699608,2.772182234,-0.037229356,0.037229356,0.536520284,0.183137133,2.056202163,66.1345297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94176731,1.756171295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489711467,63.5710255,76.43147878,65.3271968,332.3713146,0,0.444486701,63.60949725,-0.444486701,116.3905028,0.937510695,0,388.033141,65.3271968,430.7884847,1,11,11% +1/17/2018 20:00,58.62394929,174.7400012,486.3302498,772.2847136,84.23804561,520.58488,435.2207594,85.36412058,81.69795773,3.666162849,120.4564875,0,120.4564875,2.54008788,117.9163996,1.023180936,3.049788355,0.417220524,-0.417220524,0.458804778,0.17321161,2.025723888,65.15424362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.5311845,1.840285023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467630061,62.62873723,79.99881456,64.46902226,435.2207594,0,0.563549623,55.69836494,-0.563549623,124.3016351,0.961276669,0,498.3663763,64.46902226,540.560062,1,12,8% +1/17/2018 21:00,59.22261658,191.1176738,476.0069169,767.2185299,83.41830696,569.9146896,485.4234112,84.49127843,80.90293722,3.588341206,117.9287578,0,117.9287578,2.515369736,115.413388,1.033629651,3.335632667,0.867714335,-0.867714335,0.381765799,0.175245997,1.758677847,56.56512499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76698055,1.822376811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.274156114,54.3725497,79.04113666,56.19492651,485.4234112,0,0.632705536,50.74998465,-0.632705536,129.2500153,0.970974297,0,550.3747919,56.19492651,587.1532474,1,13,7% +1/17/2018 22:00,63.04571779,206.5444498,408.8575134,730.3323699,77.81289642,551.2548656,472.7061745,78.54869113,75.46655049,3.082140638,101.4785836,0,101.4785836,2.346345926,99.13223772,1.100355355,3.6048807,1.427489705,-1.427489705,0.286038573,0.190317883,1.300411231,41.82569532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.54131884,1.699919636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.94214351,40.20444926,73.48346235,41.9043689,472.7061745,0,0.647248012,49.66556632,-0.647248012,130.3344337,0.972749859,0,533.308327,41.9043689,560.7338984,1,14,5% +1/17/2018 23:00,69.54836232,220.1311022,291.0128331,642.9259451,66.36381683,456.3227143,389.7662338,66.55648056,64.3627029,2.19377766,72.56054454,0,72.56054454,2.001113934,70.5594306,1.213847912,3.84201252,2.325325696,-2.325325696,0.132499576,0.228044297,0.724666406,23.30776264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.86787818,1.449800233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525018344,22.404308,62.39289652,23.85410823,389.7662338,0,0.606238147,52.68200926,-0.606238147,127.3179907,0.967524161,0,439.5011447,23.85410823,455.1131815,1,15,4% +1/17/2018 0:00,78.02771282,231.7622162,136.9589654,443.555929,44.94836396,272.0373196,227.4118602,44.62545947,43.59300494,1.032454533,34.56264584,0,34.56264584,1.355359015,33.20728683,1.361840496,4.045013754,4.478948521,-4.478948521,0,0.328188548,0.338839754,10.89825124,0.190802085,1,0.219664039,0,0.936206511,0.974968474,0.724496596,1,42.17939759,0.981952993,0.029935668,0.312029739,0.918616478,0.643113074,0.961238037,0.922476074,0.235723938,10.47581362,42.41512153,11.45776662,184.021203,0,0.512701658,59.15604603,-0.512701658,120.843954,0.952477397,0,217.691158,11.45776662,225.1900371,1,16,3% +1/17/2018 1:00,87.72321479,241.7955562,5.038915104,31.75974138,3.77719773,15.62972161,11.92843485,3.701286753,3.663301282,0.037985471,1.335639754,0,1.335639754,0.113896448,1.221743306,1.531058929,4.220128572,24.89453737,-24.89453737,0,0.749605352,0.028474112,0.915825321,0.78845215,1,0.04014787,0,0.95750422,0.996266184,0.724496596,1,3.537665545,0.082517589,0.098070403,0.312029739,0.759788573,0.484285168,0.961238037,0.922476074,0.019974772,0.880326133,3.557640318,0.962843722,2.523434748,0,0.375583501,67.93961866,-0.375583501,112.0603813,0.916873811,0,5.871311553,0.962843722,6.501473512,1,17,11% +1/17/2018 2:00,98.83443212,250.7516339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724986255,4.376441617,-6.433476012,6.433476012,0.369657117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193615727,78.83613044,-0.193615727,101.1638696,0.791756516,0,0,0,0,1,18,0% +1/17/2018 3:00,110.2567683,259.195047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92434363,4.523806975,-2.674814288,2.674814288,0.987573873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008604544,90.49301011,0.008604544,89.50698989,0,0,0,0,0,1,19,0% +1/17/2018 4:00,122.0051397,267.7771153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129391392,4.673592324,-1.523616674,1.523616674,0.790707486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221848112,102.8176047,0.221848112,77.18239527,0,0.824620575,0,0,0,1,20,0% +1/17/2018 5:00,133.8170104,277.441798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335547426,4.842272858,-0.924905166,0.924905166,0.688321788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431585448,115.5682188,0.431585448,64.4317812,0,0.934148086,0,0,0,1,21,0% +1/17/2018 6:00,145.3103316,289.9906526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536143724,5.061291688,-0.53030256,0.53030256,0.620840768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623524839,128.5739963,0.623524839,51.4260037,0,0.969810733,0,0,0,1,22,0% +1/17/2018 7:00,155.6170565,309.6743634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.716030009,5.404837251,-0.228857886,0.228857886,0.569290693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784585758,141.6823821,0.784585758,38.31761787,0,0.986272103,0,0,0,1,23,0% +1/18/2018 8:00,162.1748052,345.0451515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.830484315,6.022173961,0.028277351,-0.028277351,0.525317978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903789707,154.660767,0.903789707,25.33923298,0,0.994677396,0,0,0,1,0,0% +1/18/2018 9:00,160.5607822,29.75492013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802314299,0.519321325,0.269383507,-0.269383507,0.484086397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973007979,166.6575041,0.973007979,13.34249592,0,0.99861296,0,0,0,1,1,0% +1/18/2018 10:00,152.1788471,58.54026023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656021933,1.021720286,0.517191921,-0.517191921,0.441708662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987515466,170.9369024,0.987515466,9.063097642,0,0.999367882,0,0,0,1,2,0% +1/18/2018 11:00,141.2802419,74.91551677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465805389,1.307522428,0.798768793,-0.798768793,0.393556181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946312825,161.1402764,0.946312825,18.85972363,0,0.997163349,0,0,0,1,3,0% +1/18/2018 12:00,129.6055767,86.1256815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262044043,1.503176713,1.161002022,-1.161002022,0.331610651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852195061,148.451225,0.852195061,31.548775,0,0.991327987,0,0,0,1,4,0% +1/18/2018 13:00,117.7731557,95.25633529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055529337,1.662536684,1.717312151,-1.717312151,0.236476016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711561815,135.3621314,0.711561815,44.63786862,0,0.979732036,0,0,0,1,5,0% +1/18/2018 14:00,106.0996585,103.696364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851788377,1.809842974,2.882559131,-2.882559131,0.037207046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533982163,122.2749105,0.533982163,57.7250895,0,0.956363913,0,0,0,1,6,0% +1/18/2018 15:00,94.8388329,112.2474517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655249893,1.959087609,8.744299524,-8.744299524,0,#DIV/0!,0,0,0.491148425,1,0.11386555,0,0.949652345,0.988414308,0.724496596,1,0,0,0.068137584,0.312029739,0.825014185,0.549510781,0.961238037,0.922476074,0,0,0,0,0,0,-0.331543472,109.3624848,0.331543472,70.63751524,0,0.899190214,0,0,0,1,7,0% +1/18/2018 16:00,84.13015324,121.5175076,39.73519789,190.1534608,20.28838658,19.97615757,0,19.97615757,19.67661687,0.299540706,32.23031026,21.98428179,10.24602848,0.611769711,9.634258765,1.468348174,2.120880607,-6.052787416,6.052787416,0.434758701,0.510589796,0.216677305,6.969086943,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.91391257,0.443225073,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15698197,6.698951452,19.07089454,7.142176525,0,21.98428179,-0.115613367,96.63900435,0.115613367,83.36099565,0,0.617524055,19.07089454,20.71799936,32.63041076,1,8,71% +1/18/2018 17:00,74.72241387,132.0606569,196.2646497,537.92655,54.52331738,104.3962237,50.03745964,54.35876403,52.8792382,1.479525832,49.23071578,0,49.23071578,1.644079189,47.58663659,1.304152147,2.304893275,-1.715317341,1.715317341,0.823490231,0.277805083,1.290924079,41.52055589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82953511,1.191129776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.9352701,39.91113763,51.76480521,41.10226741,50.03745964,0,0.09301913,84.66268058,-0.09301913,95.33731942,0.512476159,0,77.40781034,41.10226741,104.3084223,1,9,35% +1/18/2018 18:00,66.83579007,144.3685978,340.6325115,684.3118277,71.44634816,266.8323838,194.9725749,71.85980891,69.29197716,2.567831755,84.74466712,0,84.74466712,2.154371006,82.59029612,1.166504595,2.519707368,-0.629754631,0.629754631,0.637848074,0.209746122,1.832938942,58.95361707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60608409,1.56083446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.327958024,56.66845914,67.93404212,58.2292936,194.9725749,0,0.284917733,73.44606882,-0.284917733,106.5539312,0.874510748,0,238.4396543,58.2292936,276.5495624,1,10,16% +1/18/2018 19:00,61.17552659,158.6821185,442.016649,749.6587373,80.58522839,415.9554716,334.4680769,81.48739463,78.15528642,3.332108209,109.601996,0,109.601996,2.429941964,107.172054,1.067714361,2.769525431,-0.041793355,0.041793355,0.537300774,0.182312654,2.071427387,66.62422524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.12583409,1.760484681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.50074209,64.04173948,76.62657618,65.80222416,334.4680769,0,0.446160446,63.50239228,-0.446160446,116.4976077,0.937932692,0,390.3351201,65.80222416,433.4013597,1,11,11% +1/18/2018 20:00,58.42648905,174.6340283,489.7840152,774.1433149,84.44870775,523.476021,437.8815546,85.59446642,81.90226763,3.692198792,121.3002451,0,121.3002451,2.546440121,118.753805,1.019734604,3.047938779,0.411092764,-0.411092764,0.459852687,0.172420302,2.041730732,65.66907873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72757495,1.844887199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479226965,63.12361632,80.20680191,64.96850352,437.8815546,0,0.565633709,55.55369122,-0.565633709,124.4463088,0.961603571,0,501.2752685,64.96850352,543.7958547,1,12,8% +1/18/2018 21:00,59.00906458,191.0705672,479.7567547,769.2727768,83.65631043,573.3668549,488.6164818,84.75037308,81.13376401,3.616609067,118.845126,0,118.845126,2.522546418,116.3225796,1.029902465,3.334810501,0.859231536,-0.859231536,0.383216443,0.174372345,1.774910351,57.08721809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98886004,1.827576293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285916507,54.87440545,79.27477655,56.70198174,488.6164818,0,0.63516674,50.56764764,-0.63516674,129.4323524,0.971280513,0,553.8584436,56.70198174,590.9687566,1,13,7% +1/18/2018 22:00,62.82838069,206.5535838,412.7857613,732.90791,78.09800615,555.2648168,476.4100002,78.85481655,75.74306312,3.11175343,102.4396299,0,102.4396299,2.354943036,100.0846869,1.096562107,3.605040119,1.41440073,-1.41440073,0.288276919,0.189197432,1.316063521,42.32912677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.8071133,1.706148213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953483541,40.68836671,73.76059684,42.39451493,476.4100002,0,0.650027096,49.45635519,-0.650027096,130.5436448,0.97308013,0,537.3457016,42.39451493,565.0920637,1,14,5% +1/18/2018 23:00,69.33642122,220.1834179,294.9526821,646.7062689,66.7428843,460.9615147,394.0076967,66.95381799,64.73034009,2.223477906,73.52723683,0,73.52723683,2.012544217,71.51469261,1.210148842,3.842925601,2.300515474,-2.300515474,0.136742374,0.226283361,0.738379682,23.74882875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.22126503,1.458081434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534953566,22.82827752,62.7562186,24.28635895,394.0076967,0,0.609252942,52.46449464,-0.609252942,127.5355054,0.96793228,0,444.1289867,24.28635895,460.0239229,1,15,4% +1/18/2018 0:00,77.82603301,231.8443323,140.5503089,450.3892131,45.57192799,277.5890669,232.3317731,45.25729381,44.19776621,1.059527597,35.4522114,0,35.4522114,1.374161771,34.07804963,1.35832052,4.04644695,4.404599231,-4.404599231,0,0.324239259,0.343540443,11.04944155,0.182390082,1,0.22325093,0,0.935707158,0.974469122,0.724496596,1,42.75688916,0.995575525,0.028720732,0.312029739,0.921782555,0.646279151,0.961238037,0.922476074,0.23928562,10.62114351,42.99617478,11.61671903,189.9567618,0,0.515846664,58.94593601,-0.515846664,121.054064,0.953071972,0,224.0386403,11.61671903,231.6415506,1,16,3% +1/18/2018 1:00,87.54273934,241.8987242,6.019584559,37.38935631,4.416547945,18.48376748,14.15501658,4.3287509,4.283372729,0.045378171,1.592693184,0,1.592693184,0.133175216,1.459517969,1.527909038,4.221929194,23.0700862,-23.0700862,0,0.733696471,0.033293804,1.070843182,0.773502687,1,0.043319058,0,0.957192833,0.995954796,0.724496596,1,4.137619464,0.096484991,0.096715134,0.312029739,0.7625867,0.487083296,0.961238037,0.922476074,0.023311853,1.029335198,4.160931317,1.125820189,3.206073227,0,0.378584121,67.75399263,-0.378584121,112.2460074,0.917928956,0,7.103878767,1.125820189,7.840705565,1,17,10% +1/18/2018 2:00,98.6509941,250.8720045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721784657,4.37854248,-6.571861101,6.571861101,0.345991873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196745647,78.6532825,-0.196745647,101.3467175,0.795864771,0,0,0,0,1,18,0% +1/18/2018 3:00,110.0800837,259.3326311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921259901,4.52620827,-2.699365115,2.699365115,0.991772311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.005649678,90.32370442,0.005649678,89.67629558,0,0,0,0,0,1,19,0% +1/18/2018 4:00,121.8317811,267.9348984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126365713,4.676346158,-1.532563652,1.532563652,0.792237509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219159151,102.6596507,0.219159151,77.34034931,0,0.821855294,0,0,0,1,20,0% +1/18/2018 5:00,133.6419592,277.6245509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.332492207,4.845462497,-0.929033596,0.929033596,0.689027791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429234746,115.419005,0.429234746,64.58099501,0,0.933513624,0,0,0,1,21,0% +1/18/2018 6:00,145.1257006,290.1987143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.532921304,5.064923049,-0.532332402,0.532332402,0.621187892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621561298,128.4302386,0.621561298,51.56976144,0,0.969557411,0,0,0,1,22,0% +1/18/2018 7:00,155.4117253,309.8629368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712446302,5.408128478,-0.229741448,0.229741448,0.569441791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783031483,141.5389793,0.783031483,38.46102071,0,0.986145607,0,0,0,1,23,0% +1/19/2018 8:00,161.9564732,344.9595807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826673703,6.02068047,0.028162897,-0.028162897,0.525337551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902638511,154.5070848,0.902638511,25.49291524,0,0.994606839,0,0,0,1,0,0% +1/19/2018 9:00,160.4023174,29.29759821,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799548566,0.511339552,0.26991521,-0.26991521,0.48399547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972225827,166.4646797,0.972225827,13.53532025,0,0.998571619,0,0,0,1,1,0% +1/19/2018 10:00,152.0863493,58.11240693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654407543,1.014252837,0.518416004,-0.518416004,0.441499332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987042835,170.766578,0.987042835,9.233421983,0,0.999343637,0,0,0,1,2,0% +1/19/2018 11:00,141.2182881,74.57733489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464724092,1.301620041,0.800932522,-0.800932522,0.393186162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946068807,161.0970724,0.946068807,18.90292755,0,0.997149721,0,0,0,1,3,0% +1/19/2018 12:00,129.5538245,85.84721772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261140797,1.498316603,1.16476009,-1.16476009,0.330967983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852082944,148.4389498,0.852082944,31.56105019,0,0.991320267,0,0,0,1,4,0% +1/19/2018 13:00,117.7206225,95.01379111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05461246,1.65830349,1.724559675,-1.724559675,0.235236616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711475736,135.3551124,0.711475736,44.64488757,0,0.979723534,0,0,0,1,5,0% +1/19/2018 14:00,106.0391467,103.4749451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850732245,1.805978485,2.901463566,-2.901463566,0.033974197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533814387,122.2635417,0.533814387,57.73645829,0,0.956334484,0,0,0,1,6,0% +1/19/2018 15:00,94.76451321,112.0381419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65395277,1.955434463,8.910752857,-8.910752857,0,#DIV/0!,0,0,0.498413682,1,0.111756367,0,0.949894629,0.988656592,0.724496596,1,0,0,0.068951684,0.312029739,0.823145517,0.547642112,0.961238037,0.922476074,0,0,0,0,0,0,-0.331191802,109.341129,0.331191802,70.65887104,0,0.899030079,0,0,0,1,7,0% +1/19/2018 16:00,84.03838343,121.3155894,40.97591598,194.9388344,20.72914124,20.41297491,0,20.41297491,20.10408115,0.308893763,32.98167171,22.42152638,10.56014532,0.625060091,9.935085232,1.466746489,2.117356469,-5.985334231,5.985334231,0.446293875,0.505885976,0.224382295,7.216905902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.3248075,0.452853908,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162564209,6.937164461,19.4873717,7.390018369,0,22.42152638,-0.115018264,96.60467851,0.115018264,83.39532149,0,0.615286433,19.4873717,21.18567935,33.35297513,1,8,71% +1/19/2018 17:00,74.60460451,131.8660849,198.4568394,541.1347932,54.79711143,105.4973503,50.85652246,54.64082782,53.14477634,1.496051484,49.77049345,0,49.77049345,1.652335089,48.11815836,1.302095986,2.301497354,-1.712430742,1.712430742,0.822996593,0.276116014,1.30436251,41.95278202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.08478048,1.197111148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.945006198,40.32660983,52.02978668,41.52372098,50.85652246,0,0.093981247,84.6073128,-0.093981247,95.3926872,0.517978966,0,78.3723956,41.52372098,105.5488405,1,9,35% +1/19/2018 18:00,66.6886623,144.1878916,343.3643944,686.5929844,71.66084961,268.6426811,196.5542447,72.08843644,69.5000106,2.588425842,85.41351177,0,85.41351177,2.160839016,83.25267275,1.163936731,2.51655345,-0.632355344,0.632355344,0.638292822,0.20870204,1.847571382,59.42424663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.80605375,1.565520511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338559177,57.12084617,68.14461292,58.68636668,196.5542447,0,0.286274764,73.36493756,-0.286274764,106.6350624,0.875342621,0,240.1969206,58.68636668,278.6059739,1,10,16% +1/19/2018 19:00,60.99776182,158.5300467,445.1988714,751.5990454,80.79074486,418.3749178,336.6642148,81.71070296,78.35460582,3.356097145,110.3797597,0,110.3797597,2.436139044,107.9436207,1.06461178,2.766871278,-0.046274452,0.046274452,0.538067087,0.181471136,2.087138616,67.12955237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.31742747,1.764974444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.512124822,64.52747914,76.8295523,66.29245358,336.6642148,0,0.447930605,63.38900899,-0.447930605,116.610991,0.938375566,0,392.7470256,66.29245358,436.1341106,1,11,11% +1/19/2018 20:00,58.2225424,174.5301348,493.3428301,776.0350817,84.66616939,526.4715704,440.6393718,85.83219864,82.113172,3.719026643,122.1696783,0,122.1696783,2.552997392,119.6166809,1.016175064,3.046125496,0.404998506,-0.404998506,0.460894866,0.17161731,2.058163787,66.19762228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93030425,1.84963792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491132657,63.63167248,80.42143691,65.4813104,440.6393718,0,0.567808572,55.40244822,-0.567808572,124.5975518,0.961942154,0,504.2910232,65.4813104,547.1472312,1,12,8% +1/19/2018 21:00,58.78966569,191.0275349,483.6003853,771.3523632,83.90002955,576.9151926,491.8994745,85.01571808,81.3701341,3.645583978,119.7844078,0,119.7844078,2.529895449,117.2545123,1.026073232,3.334059447,0.850762681,-0.850762681,0.384664703,0.173490411,1.791510969,57.62115103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.21606796,1.832900641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297943598,55.3876421,79.51401156,57.22054274,491.8994745,0,0.637710465,50.37869424,-0.637710465,129.6213058,0.971594512,0,557.4408417,57.22054274,594.8905425,1,13,7% +1/19/2018 22:00,62.60614558,206.568249,416.7955205,735.5020216,78.38769045,559.3593784,480.1933853,79.16599305,76.02401237,3.141980689,103.4205775,0,103.4205775,2.363678087,101.0568994,1.092683372,3.605296075,1.401337733,-1.401337733,0.290510823,0.188072296,1.332030402,42.84267655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.0771724,1.712476728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965051492,41.1820103,74.04222389,42.89448703,480.1933853,0,0.652878403,49.24102567,-0.652878403,130.7589743,0.973416061,0,541.4701774,42.89448703,569.5437613,1,14,5% +1/19/2018 23:00,69.12060255,220.2419939,298.9623541,650.4942182,67.12487935,465.6705747,398.3160537,67.35452108,65.10081658,2.253704507,74.51094678,0,74.51094678,2.024062777,72.48688401,1.206382096,3.843947946,2.275861589,-2.275861589,0.140958436,0.224526193,0.752367176,24.19871463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.57738112,1.466426592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.545087458,23.26072494,63.12246858,24.72715154,398.3160537,0,0.612328354,52.24195083,-0.612328354,127.7580492,0.968344464,0,448.829614,24.72715154,465.0130402,1,15,4% +1/19/2018 0:00,77.62136443,231.9329493,144.2065629,457.2062482,46.19474235,283.1974044,237.308514,45.88889041,44.80180043,1.087089984,36.35749266,0,36.35749266,1.392941922,34.96455074,1.354748379,4.047993609,4.33170623,-4.33170623,0,0.320337309,0.348235481,11.20045011,0.173971309,1,0.226881147,0,0.935198936,0.973960899,0.724496596,1,43.33308224,1.009181681,0.027495844,0.312029739,0.924986326,0.649482922,0.961238037,0.922476074,0.242863815,10.76629867,43.57594606,11.77548035,196.0236411,0,0.5190404,58.73209459,-0.5190404,121.2679054,0.953668385,0,230.5174953,11.77548035,238.2243116,1,16,3% +1/19/2018 1:00,87.3592748,242.0084522,7.115412542,43.57256374,5.107892345,21.63625787,16.62874834,5.00750953,4.953870545,0.053638985,1.87923595,0,1.87923595,0.1540218,1.72521415,1.524706977,4.223844308,21.47106228,-21.47106228,0,0.717863134,0.03850545,1.238467636,0.75854825,1,0.046540682,0,0.95687404,0.995636003,0.724496596,1,4.786594109,0.11158827,0.095345008,0.312029739,0.76543049,0.489927086,0.961238037,0.922476074,0.026911833,1.190462199,4.813505942,1.302050469,4.015040392,0,0.381633462,67.5651002,-0.381633462,112.4348998,0.918984235,0,8.503264765,1.302050469,9.355430756,1,17,10% +1/19/2018 2:00,98.46580188,250.9990224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718552443,4.380759359,-6.717564185,6.717564185,0.321075178,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.199901363,78.46880891,-0.199901363,101.5311911,0.799876643,0,0,0,0,1,18,0% +1/19/2018 3:00,109.9019456,259.4771078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918150805,4.528729864,-2.724476784,2.724476784,0.99606666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002677908,90.15343303,0.002677908,89.84656697,0,0,0,0,0,1,19,0% +1/19/2018 4:00,121.6570538,268.1000807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123316148,4.679229133,-1.541598805,1.541598805,0.793782612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216459701,102.5011789,0.216459701,77.49882113,0,0.819010122,0,0,0,1,20,0% +1/19/2018 5:00,133.4653569,277.8155883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329409916,4.84879673,-0.933149435,0.933149435,0.689731641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426877051,115.2695326,0.426877051,64.73046739,0,0.932870255,0,0,0,1,21,0% +1/19/2018 6:00,144.9389431,290.4164629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529661772,5.06872348,-0.534314465,0.534314465,0.621526845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619591099,128.2862805,0.619591099,51.71371949,0,0.969301617,0,0,0,1,22,0% +1/19/2018 7:00,155.2030509,310.0632509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.708804247,5.411624618,-0.230558297,0.230558297,0.569581481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781467702,141.3951539,0.781467702,38.60484605,0,0.986017829,0,0,0,1,23,0% +1/20/2018 8:00,161.7325144,344.8888593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822764884,6.019446148,0.028131233,-0.028131233,0.525342965,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901471972,154.3522311,0.901471972,25.64776892,0,0.994535159,0,0,0,1,0,0% +1/20/2018 9:00,160.2358264,28.84708434,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796642751,0.503476601,0.270549102,-0.270549102,0.483887068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971419909,166.2687762,0.971419909,13.73122375,0,0.998528953,0,0,0,1,1,0% +1/20/2018 10:00,151.9861536,57.6816624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652658798,1.006734927,0.519770958,-0.519770958,0.441267621,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986536008,170.5873255,0.986536008,9.412674549,0,0.999317613,0,0,0,1,2,0% +1/20/2018 11:00,141.1494443,74.23445516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463522541,1.295635661,0.8032757,-0.8032757,0.392785455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94577888,161.0458635,0.94577888,18.95413654,0,0.99713352,0,0,0,1,3,0% +1/20/2018 12:00,129.4956784,85.56422764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260125956,1.493377494,1.168792677,-1.168792677,0.33027837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851912726,148.4203215,0.851912726,31.5796785,0,0.991308542,0,0,0,1,4,0% +1/20/2018 13:00,117.6619329,94.76718476,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053588134,1.653999397,1.732314105,-1.732314105,0.23391053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711319728,135.3423937,0.711319728,44.65760628,0,0.979708121,0,0,0,1,5,0% +1/20/2018 14:00,105.9725443,103.2499176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849569815,1.802051015,2.921762592,-2.921762592,0.030502859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533566038,122.2467158,0.533566038,57.7532842,0,0.956290887,0,0,0,1,6,0% +1/20/2018 15:00,94.6840513,111.8256501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652548444,1.951725782,9.094769737,-9.094769737,0,#DIV/0!,0,0,0.50620784,1,0.109513391,0,0.950151155,0.988913118,0.724496596,1,0,0,0.069819957,0.312029739,0.821158322,0.545654917,0.961238037,0.922476074,0,0,0,0,0,0,-0.330750833,109.3143543,0.330750833,70.68564567,0,0.898828801,0,0,0,1,7,0% +1/20/2018 16:00,83.94041374,121.1109497,42.31274179,200.0258695,21.19747376,20.87726304,0,20.87726304,20.55829172,0.318971321,33.76713809,22.86874192,10.89839617,0.639182044,10.25921413,1.465036595,2.113784833,-5.914083126,5.914083126,0.458478531,0.500971406,0.232774202,7.486818506,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.76141197,0.463085215,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.168644117,7.196614723,19.93005609,7.659699939,0,22.86874192,-0.114328921,96.56491979,0.114328921,83.43508021,0,0.61266534,19.93005609,21.67058547,34.11302087,1,8,71% +1/20/2018 17:00,74.48035646,131.6693976,200.7680961,544.4706841,55.08476352,106.6847017,51.74747233,54.93722937,53.42375465,1.513474713,50.33955818,0,50.33955818,1.661008861,48.67854932,1.299927448,2.298064512,-1.708926992,1.708926992,0.822397417,0.274370105,1.318427561,42.40516243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.35294505,1.203395266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95519628,40.76145509,52.30814133,41.96485035,51.74747233,0,0.095041797,84.5462745,-0.095041797,95.4537255,0.523915672,0,79.41945306,41.96485035,106.8846083,1,9,35% +1/20/2018 18:00,66.53491881,144.0059915,346.2150251,688.942173,71.88507628,270.5570312,198.2296401,72.3273911,69.717476,2.609915101,86.11144146,0,86.11144146,2.167600277,83.94384118,1.161253401,2.513378694,-0.634748946,0.634748946,0.638702152,0.207631302,1.862745721,59.91230555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01508977,1.570419022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349552934,57.58998697,68.3646427,59.16040599,198.2296401,0,0.287730448,73.27787006,-0.287730448,106.7221299,0.876226246,0,242.0586561,59.16040599,280.7779586,1,10,16% +1/20/2018 19:00,60.81333784,158.3782062,448.4936001,753.5828296,81.00408085,420.9012425,338.9587994,81.94244314,78.56150894,3.380934202,111.1850377,0,111.1850377,2.442571911,108.7424658,1.061392974,2.764221161,-0.050667913,0.050667913,0.538818413,0.180613683,2.103326899,67.6502232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.51631062,1.769635035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.523853178,65.02796774,77.0401638,66.79760277,338.9587994,0,0.449796341,63.26938185,-0.449796341,116.7306182,0.93883858,0,395.2677617,66.79760277,438.9854568,1,11,11% +1/20/2018 20:00,58.01218899,174.4284038,497.0046307,777.9577826,84.89017731,529.5697309,443.4926748,86.07705609,82.33042525,3.746630842,123.0642789,0,123.0642789,2.559752057,120.5045268,1.012503704,3.044349956,0.39894422,-0.39894422,0.46193021,0.170803594,2.075013284,66.73956004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13913634,1.854531652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503340061,64.15260367,80.6424764,66.00713532,443.4926748,0,0.570072933,55.24468825,-0.570072933,124.7553117,0.962291924,0,507.4118958,66.00713532,550.6122458,1,12,9% +1/20/2018 21:00,58.5645173,190.9886629,487.5354497,773.4549693,84.1491935,580.5573499,495.2703169,85.28703299,81.61178484,3.675248156,120.7460229,0,120.7460229,2.537408661,118.2086143,1.022143652,3.333381001,0.842316505,-0.842316505,0.386109084,0.172601179,1.80846973,58.16660309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.44835184,1.838343938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310230163,55.91195136,79.758582,57.7502953,495.2703169,0,0.640335038,50.18319305,-0.640335038,129.8168069,0.971915877,0,561.1196663,57.7502953,598.9160795,1,13,7% +1/20/2018 22:00,62.37912574,206.5885177,420.8842744,738.1119565,78.68164309,563.5356826,484.0537779,79.48190469,76.30910124,3.172803443,104.420807,0,104.420807,2.372541843,102.0482652,1.088721129,3.605649832,1.388313589,-1.388313589,0.292738083,0.186943651,1.348302521,43.36604385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.35121067,1.718898489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976840587,41.68509085,74.32805126,43.40398934,484.0537779,0,0.655799942,49.01966638,-0.655799942,130.9803336,0.973757236,0,545.6789202,43.40398934,574.0859632,1,14,5% +1/20/2018 23:00,68.90102833,220.306875,303.0393426,654.2860024,67.50942587,470.4464909,402.6882848,67.75820617,65.4737676,2.284438569,75.51105536,0,75.51105536,2.035658273,73.47539709,1.202549802,3.845080333,2.251385549,-2.251385549,0.145144085,0.22277446,0.766621376,24.65717869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93587583,1.474827489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.555414577,23.70141803,63.49129041,25.17624552,402.6882848,0,0.615462173,52.01448973,-0.615462173,127.9855103,0.968760239,0,453.5996893,25.17624552,470.0770385,1,15,4% +1/20/2018 0:00,77.41382936,232.0280807,147.9254155,464.0000885,46.81623268,288.8578968,242.338222,46.5196748,45.40455053,1.115124266,37.27791177,0,37.27791177,1.411682149,35.86622962,1.351126209,4.049653966,4.260289233,-4.260289233,0,0.316485389,0.352920537,11.35113763,0.165553151,1,0.23055214,0,0.934682107,0.97344407,0.724496596,1,43.90742199,1.022758911,0.026261972,0.312029739,0.928225527,0.652722123,0.961238037,0.922476074,0.246455909,10.91114525,44.1538779,11.93390417,202.2183657,0,0.522280551,58.51464894,-0.522280551,121.4853511,0.954266012,0,237.1239913,11.93390417,244.9344929,1,16,3% +1/20/2018 1:00,87.17298196,242.1247256,8.328936296,50.29595203,5.848301963,25.08502615,19.35028503,5.734741121,5.671954081,0.06278704,2.195794916,0,2.195794916,0.176347882,2.019447034,1.521455554,4.225873663,20.05977303,-20.05977303,0,0.70216673,0.044086971,1.41798852,0.743607463,1,0.049809779,0,0.956548026,0.995309989,0.724496596,1,5.481865937,0.12776344,0.09396152,0.312029739,0.768317302,0.492813898,0.961238037,0.922476074,0.03075861,1.363024501,5.512624547,1.490787942,4.961268666,0,0.384728477,67.37311517,-0.384728477,112.6268848,0.920038214,0,10.07718131,1.490787942,11.0528722,1,17,10% +1/20/2018 2:00,98.27896244,251.1326488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.71529148,4.383091581,-6.871072334,6.871072334,0.294823738,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.203080697,78.28283211,-0.203080697,101.7171679,0.803792454,0,0,0,0,1,18,0% +1/20/2018 3:00,109.7224487,259.6284148,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915017993,4.53137067,-2.750153125,2.750153125,0.999542427,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000308829,89.98230542,-0.000308829,90.01769458,0,0,0,0,0,1,19,0% +1/20/2018 4:00,121.4810391,268.2725714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120244111,4.682239664,-1.550718355,1.550718355,0.795342147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213751363,102.3422829,0.213751363,77.65771715,0,0.816083363,0,0,0,1,20,0% +1/20/2018 5:00,133.2872711,278.0147766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326301731,4.85227322,-0.9372498,0.9372498,0.690432845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424513558,115.1198771,0.424513558,64.88012287,0,0.932218132,0,0,0,1,21,0% +1/20/2018 6:00,144.7501161,290.6436864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526366118,5.072689277,-0.53624677,0.53624677,0.621857288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617614989,128.1421767,0.617614989,51.85782326,0,0.969043416,0,0,0,1,22,0% +1/20/2018 7:00,154.9910976,310.2749501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.705104965,5.415319466,-0.231307038,0.231307038,0.569709523,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779894701,141.2509354,0.779894701,38.74906463,0,0.985888781,0,0,0,1,23,0% +1/21/2018 8:00,161.5030495,344.8326791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818759966,6.018465619,0.028183394,-0.028183394,0.525334045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900289938,154.1962045,0.900289938,25.80379555,0,0.994462336,0,0,0,1,0,0% +1/21/2018 9:00,160.061392,28.40400254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793598295,0.495743365,0.271286018,-0.271286018,0.483761048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970589684,166.0697902,0.970589684,13.93020977,0,0.998484925,0,0,0,1,1,0% +1/21/2018 10:00,151.8782382,57.24860402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650775319,0.999176632,0.521257587,-0.521257587,0.441013392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985994135,170.3993466,0.985994135,9.600653384,0,0.999289759,0,0,0,1,2,0% +1/21/2018 11:00,141.0736646,73.88722901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462199935,1.289575421,0.80579938,-0.80579938,0.39235388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945441982,160.986525,0.945441982,19.01347496,0,0.997114682,0,0,0,1,3,0% +1/21/2018 12:00,129.4310971,85.27694762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2589988,1.488363512,1.173101876,-1.173101876,0.329541454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851683249,148.3952235,0.851683249,31.60477652,0,0.991292728,0,0,0,1,4,0% +1/21/2018 13:00,117.597058,94.51669384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052455852,1.649627506,1.740581859,-1.740581859,0.232496661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711092656,135.3238865,0.711092656,44.67611347,0,0.979685675,0,0,0,1,5,0% +1/21/2018 14:00,105.8998374,103.0214257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84830084,1.798063078,2.943492421,-2.943492421,0.02678684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533236122,122.2243685,0.533236122,57.77563155,0,0.956232909,0,0,0,1,6,0% +1/21/2018 15:00,94.59744929,111.6100987,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651036954,1.9479637,9.297979486,-9.297979486,0,#DIV/0!,0,0,0.514538232,1,0.107138423,0,0.95042151,0.989183473,0.724496596,1,0,0,0.070742189,0.312029739,0.819054211,0.543550807,0.961238037,0.922476074,0,0,0,0,0,0,-0.330219823,109.2821184,0.330219823,70.71788163,0,0.89858571,0,0,0,1,7,0% +1/21/2018 16:00,83.83625537,120.9036947,43.74776824,205.4105205,21.69278732,21.3684589,0,21.3684589,21.03866975,0.329789156,34.58456913,23.32329865,11.26127048,0.654117576,10.6071529,1.463218689,2.110167551,-5.839421297,5.839421297,0.471246456,0.495860433,0.241878718,7.779651011,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.22316961,0.473905957,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.175240308,7.478096465,20.39840991,7.952002422,0,23.32329865,-0.113544811,96.51969907,0.113544811,83.48030093,0,0.609645221,20.39840991,22.17093998,34.90884671,1,8,71% +1/21/2018 17:00,74.3497043,131.4706873,203.1979749,547.9289188,55.38581747,107.9587183,52.71119537,55.24752288,53.71573072,1.531792166,50.93778832,0,50.93778832,1.670086749,49.26770157,1.297647138,2.294596364,-1.704821473,1.704821473,0.821695332,0.272570716,1.333112538,42.87748177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.63360354,1.209972164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965835496,41.21546641,52.59943904,42.42543857,52.71119537,0,0.096200791,84.47956336,-0.096200791,95.52043664,0.530253754,0,80.54974824,42.42543857,108.3163493,1,9,34% +1/21/2018 18:00,66.37461082,143.822979,349.1831973,691.356139,72.11872888,272.5748743,199.9985007,72.57637355,69.94408311,2.632290437,86.83815465,0,86.83815465,2.174645765,84.66350888,1.158455499,2.510184523,-0.63693434,0.63693434,0.639075877,0.206535508,1.878453848,60.41753288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.23291314,1.575523454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360933418,58.0756307,68.59384656,59.65115415,199.9985007,0,0.289284335,73.18488496,-0.289284335,106.815115,0.87715967,0,244.0244654,59.65115415,283.0649527,1,10,16% +1/21/2018 19:00,60.62232105,158.2266736,451.8991084,755.6076144,81.22497851,423.5331883,341.3508362,82.18235208,78.77574572,3.406606362,112.0174035,0,112.0174035,2.44923279,109.5681707,1.058059103,2.761576419,-0.054969375,0.054969375,0.539554006,0.1797414,2.119982967,68.18593962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.72224317,1.774460819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535920443,65.54291874,77.25816361,67.31737956,341.3508362,0,0.451756745,63.14354915,-0.451756745,116.8564508,0.939320966,0,397.8961609,67.31737956,441.9540395,1,11,11% +1/21/2018 20:00,57.79551084,174.3289161,500.7672906,779.9091945,85.1204768,532.7686425,446.4398668,86.32877572,82.55378036,3.774995362,123.9835237,0,123.9835237,2.566696437,121.4168273,1.008721957,3.042613568,0.392936036,-0.392936036,0.46295767,0.169980105,2.092269215,67.29457009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.35383377,1.859562831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515841924,64.68610044,80.86967569,66.54566328,446.4398668,0,0.572425444,55.0804669,-0.572425444,124.9195331,0.96265238,0,510.6360761,66.54566328,554.1888818,1,12,9% +1/21/2018 21:00,58.33371869,190.9540344,491.5595417,775.5783101,84.40353252,584.290927,498.7268889,85.56403806,81.85845459,3.705583461,121.7293799,0,121.7293799,2.545077921,119.184302,1.018115456,3.33277662,0.833901313,-0.833901313,0.387548166,0.171705613,1.825776486,58.72324784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.68546019,1.84390029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.322768849,56.44701947,80.00822904,58.29091976,498.7268889,0,0.643038727,49.98121529,-0.643038727,130.0187847,0.972244185,0,564.8925469,58.29091976,603.042788,1,13,7% +1/21/2018 22:00,62.14743577,206.6144598,425.0494739,740.7350409,78.97956257,567.7908391,487.9885992,79.80223983,76.59803735,3.204202476,105.4396912,0,105.4396912,2.381525215,103.058166,1.084677376,3.606102606,1.375340448,-1.375340448,0.294956621,0.185812635,1.364870382,43.89892319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62894705,1.725406911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988843945,42.19731474,74.617791,43.92272166,487.9885992,0,0.658789678,48.79236803,-0.658789678,131.207632,0.974103243,0,549.9690682,43.92272166,578.715611,1,14,5% +1/21/2018 23:00,68.67782114,220.3781023,307.1811186,658.0779895,67.89615983,475.2858741,407.121373,68.16450113,65.8488401,2.315661026,76.52693836,0,76.52693836,2.047319729,74.47961863,1.198654102,3.846323484,2.227107141,-2.227107141,0.149295938,0.22102973,0.781134587,25.12397345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.29640979,1.483276174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.565929349,24.15011892,63.86233914,25.63339509,407.121373,0,0.618652165,51.78222491,-0.618652165,128.2177751,0.96917914,0,458.4358813,25.63339509,475.2124257,1,15,4% +1/21/2018 0:00,77.20354986,232.1297364,151.7045146,470.7641865,47.43585868,294.5661881,247.4170829,47.14910523,46.00549252,1.143612711,38.21288209,0,38.21288209,1.430366159,36.78251593,1.347456139,4.051428192,4.19036166,-4.19036166,0,0.312685874,0.35759154,11.50137313,0.15714263,1,0.234261385,0,0.934156941,0.972918905,0.724496596,1,44.47938671,1.036295413,0.025020061,0.312029739,0.931497918,0.655994514,0.961238037,0.922476074,0.250059417,11.05555733,44.72944613,12.09185274,208.5373118,0,0.525564794,58.29372728,-0.525564794,121.7062727,0.954864252,0,243.8542703,12.09185274,251.7681461,1,16,3% +1/21/2018 1:00,86.98401932,242.2475265,9.66172333,57.53920222,6.634327699,28.8246211,22.31750871,6.507112393,6.434278241,0.072834152,2.542646139,0,2.542646139,0.200049458,2.342596681,1.518157534,4.228016942,18.8063722,-18.8063722,0,0.686660906,0.050012365,1.60856956,0.728697708,1,0.053123437,0,0.956214978,0.994976941,0.724496596,1,6.220217442,0.144935151,0.092566115,0.312029739,0.771244533,0.495741129,0.961238037,0.922476074,0.034833603,1.546218246,6.255051045,1.691153398,6.054791262,0,0.387866148,67.17821012,-0.387866148,112.8217899,0.921089549,0,11.832056,1.691153398,12.93888207,1,17,9% +1/21/2018 2:00,98.09058083,251.2728415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712003601,4.385538405,-7.032920587,7.032920587,0.267146057,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.206281492,78.09547334,-0.206281492,101.9045267,0.807612767,0,0,0,0,1,18,0% +1/21/2018 3:00,109.5416852,259.7864861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911863075,4.534129535,-2.776398224,2.776398224,0.995054251,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.003308633,89.81042897,-0.003308633,90.18957103,0,0,0,0,0,1,19,0% +1/21/2018 4:00,121.3038151,268.452276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117150969,4.685376101,-1.559918559,1.559918559,0.796915474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.211035694,102.1830534,0.211035694,77.81694657,0,0.813073255,0,0,0,1,20,0% +1/21/2018 5:00,133.1077656,278.2219782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32316877,4.85588957,-0.941331869,0.941331869,0.69113092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422145413,114.9701107,0.422145413,65.02988934,0,0.931557401,0,0,0,1,21,0% +1/21/2018 6:00,144.5592728,290.8801685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523035275,5.076816669,-0.538127398,0.538127398,0.622178895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615633666,127.997978,0.615633666,52.00202198,0,0.968782869,0,0,0,1,22,0% +1/21/2018 7:00,154.7759268,310.4976744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701349525,5.419206738,-0.231986338,0.231986338,0.56982569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778312726,141.1063487,0.778312726,38.89365129,0,0.98575847,0,0,0,1,23,0% +1/22/2018 8:00,161.2681976,344.7907066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814661027,6.017733061,0.028320355,-0.028320355,0.525310624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899092224,154.0389995,0.899092224,25.96100055,0,0.994388352,0,0,0,1,0,0% +1/22/2018 9:00,159.8791047,27.96892399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790416782,0.488149812,0.27212674,-0.27212674,0.483617276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969734595,165.8677163,0.969734595,14.1322837,0,0.998439501,0,0,0,1,1,0% +1/22/2018 10:00,151.7625912,56.81380108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648756898,0.991587889,0.522876649,-0.522876649,0.440736516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985416366,170.2028509,0.985416366,9.797149102,0,0.999260027,0,0,0,1,2,0% +1/22/2018 11:00,140.9909107,73.5360086,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460755607,1.283445469,0.808504593,-0.808504593,0.391891261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945057069,160.9189473,0.945057069,19.08105273,0,0.997093142,0,0,0,1,3,0% +1/22/2018 12:00,129.3600459,84.98561497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257758721,1.483278798,1.177689827,-1.177689827,0.328756868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851393388,148.3635469,0.851393388,31.63645305,0,0.991272741,0,0,0,1,4,0% +1/22/2018 13:00,117.5259746,94.26249617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051215214,1.645190919,1.749369709,-1.749369709,0.23099385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710793439,135.2995084,0.710793439,44.70049158,0,0.979656076,0,0,0,1,5,0% +1/22/2018 14:00,105.8210175,102.7896127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846925174,1.794017179,2.966692211,-2.966692211,0.022819442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532823715,122.1964411,0.532823715,57.80355887,0,0.956160333,0,0,0,1,6,0% +1/22/2018 15:00,94.50471454,111.3916087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649418427,1.944150331,9.522277887,-9.522277887,0,#DIV/0!,0,0,0.523412761,1,0.104633362,0,0.950705258,0.989467221,0.724496596,1,0,0,0.071718155,0.312029739,0.816834889,0.541331485,0.961238037,0.922476074,0,0,0,0,0,0,-0.329598108,109.2443841,0.329598108,70.7556159,0,0.8983001,0,0,0,1,7,0% +1/22/2018 16:00,83.7259244,120.6939287,45.28304072,211.087769,22.21440546,21.88592186,0,21.88592186,21.54455917,0.341362689,35.43155165,23.78230787,11.64924378,0.669846287,10.97939749,1.46129305,2.106506442,-5.761735333,5.761735333,0.484531538,0.490567884,0.251722147,8.09624955,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.70944976,0.485301355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.182371839,7.782423023,20.8918216,8.267724378,0,23.78230787,-0.112665494,96.46899258,0.112665494,83.53100742,0,0.6062084,20.8918216,22.68475919,35.7385428,1,8,71% +1/22/2018 17:00,74.2126871,131.2700441,205.7459363,551.5039973,55.6998018,109.3198033,53.74855621,55.57124704,54.02024727,1.550999775,51.56503883,0,51.56503883,1.679554535,49.8854843,1.295255737,2.291094478,-1.70013111,1.70013111,0.820893233,0.270721273,1.348410115,43.36950443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.92631643,1.216831543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976918538,41.6884173,52.90323497,42.90524884,53.74855621,0,0.097458144,84.40718219,-0.097458144,95.59281781,0.536959245,0,81.76401912,42.90524884,109.8446464,1,9,34% +1/22/2018 18:00,66.20779346,143.6389322,352.2676128,693.8315651,72.36150109,274.6955758,201.8604989,72.83507691,70.17953484,2.655542064,87.59332738,0,87.59332738,2.181966243,85.41136114,1.155543986,2.506972301,-0.638911046,0.638911046,0.639413913,0.205416276,1.89468721,60.93965363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4592383,1.580827116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372694434,58.57751302,68.83193273,60.15834014,201.8604989,0,0.290935883,73.08600574,-0.290935883,106.9139943,0.878140828,0,246.0938783,60.15834014,285.4663088,1,10,16% +1/22/2018 19:00,60.42478106,158.075522,455.41359,757.6709091,81.45317629,426.2694192,343.8392567,82.4301625,78.99706249,3.433100009,112.8764113,0,112.8764113,2.456113795,110.4202975,1.054611379,2.758938325,-0.059174875,0.059174875,0.540273189,0.178855392,2.137097231,68.73639317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93498126,1.779446084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.548319669,66.07203563,77.48330093,67.85148172,343.8392567,0,0.45381082,63.01155362,-0.45381082,116.9884464,0.939821931,0,400.6309751,67.85148172,445.0384128,1,11,11% +1/22/2018 20:00,57.5725924,174.2317489,504.6286203,781.887107,85.35681192,536.066378,449.4792851,86.58709281,82.78298911,3.804103696,124.9268742,0,124.9268742,2.573822813,122.3530514,1.004831296,3.04091768,0.386979716,-0.386979716,0.463976261,0.169147782,2.10992134,67.8623231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.57415794,1.864725866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.528630828,65.23184623,81.10278877,67.0965721,449.4792851,0,0.574864685,54.90984347,-0.574864685,125.0901565,0.96302301,0,513.9616828,67.0965721,557.8750473,1,12,9% +1/22/2018 21:00,58.09737091,190.9237297,495.6702103,777.7201395,84.6627783,588.1134767,502.2670221,85.84645458,82.10988317,3.736571417,122.7338763,0,122.7338763,2.552895138,120.1809811,1.013990409,3.332247704,0.825524953,-0.825524953,0.388980608,0.170804653,1.843420931,59.29075387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9271429,1.849563837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335552189,56.99252785,80.26269509,58.84209169,502.2670221,0,0.645819745,49.77283502,-0.645819745,130.227165,0.972579016,0,568.7570613,58.84209169,607.2680335,1,13,7% +1/22/2018 22:00,61.91119132,206.6461415,429.2885432,743.3686809,79.28115276,572.1219386,491.9952467,80.12669186,76.89053349,3.236158371,106.4765967,0,106.4765967,2.390619272,104.0859774,1.080554132,3.606655555,1.362429704,-1.362429704,0.297164488,0.184680337,1.381724376,44.44100558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91010547,1.731995525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001054607,42.71838496,74.91116007,44.45038049,491.9952467,0,0.661845541,48.55922342,-0.661845541,131.4407766,0.974453672,0,554.3377351,44.45038049,583.4296201,1,14,5% +1/22/2018 23:00,68.45110368,220.455713,311.3851393,661.866713,68.28473004,480.1853576,411.6123114,68.57304619,66.22569348,2.347352709,77.55796866,0,77.55796866,2.059036554,75.49893211,1.194697136,3.847678047,2.203044428,-2.203044428,0.153410904,0.219293478,0.795898975,25.59884692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.65865559,1.491764975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576626098,24.60658536,64.23528169,26.09835033,411.6123114,0,0.621896076,51.54527145,-0.621896076,128.4547285,0.969600715,0,463.334873,26.09835033,480.4157213,1,15,4% +1/22/2018 0:00,76.99064717,232.2379216,155.541481,477.4924071,48.05311496,300.3180174,252.5413438,47.77667363,46.60413625,1.172537384,39.16181157,0,39.16181157,1.448978713,37.71283286,1.343740286,4.05331638,4.121931054,-4.121931054,0,0.308940835,0.362244678,11.65103406,0.148746384,1,0.238006396,0,0.933623709,0.972385672,0.724496596,1,45.04848878,1.049780145,0.02377103,0.312029739,0.934801297,0.659297893,0.961238037,0.922476074,0.253671989,11.19941711,45.30216077,12.24919725,214.976732,0,0.528890805,58.06945838,-0.528890805,121.9305416,0.955462527,0,250.7043725,12.24919725,258.7212271,1,16,3% +1/22/2018 1:00,86.79254207,242.376832,11.11442757,65.27610144,7.462133931,32.84670351,25.5257952,7.320908311,7.237123061,0.08378525,2.919832512,0,2.919832512,0.22501087,2.694821642,1.514815625,4.230273749,17.68692347,-17.68692347,0,0.671391656,0.056252718,1.809280765,0.713835075,1,0.056478816,0,0.955875082,0.994637045,0.724496596,1,6.998062042,0.16301961,0.091160183,0.312029739,0.774209639,0.498706235,0.961238037,0.922476074,0.039116465,1.739149491,7.037178507,1.902169101,7.304587271,0,0.3910435,66.98055537,-0.3910435,113.0194446,0.922136987,0,13.77300861,1.902169101,15.01794024,1,17,9% +1/22/2018 2:00,97.90075949,251.4195537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.708690593,4.388099016,-7.203698461,7.203698461,0.23794132,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.20950163,77.90685191,-0.20950163,102.0931481,0.811338372,0,0,0,0,1,18,0% +1/22/2018 3:00,109.3597441,259.9512514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.908687604,4.537005232,-2.80321654,2.80321654,0.990468049,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006319652,89.6379082,-0.006319652,90.3620918,0,0,0,0,0,1,19,0% +1/22/2018 4:00,121.1254562,268.6390959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114038019,4.688636724,-1.569195761,1.569195761,0.798501969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208314191,102.0235778,0.208314191,77.97642222,0,0.809977945,0,0,0,1,20,0% +1/22/2018 5:00,132.9269006,278.4370514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320012081,4.859643306,-0.945392908,0.945392908,0.691825398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419773701,114.8203011,0.419773701,65.17969887,0,0.930888203,0,0,0,1,21,0% +1/22/2018 6:00,144.3664628,291.1256885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519670106,5.081101802,-0.539954524,0.539954524,0.622491351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613647772,127.8537306,0.613647772,52.14626945,0,0.968520033,0,0,0,1,22,0% +1/22/2018 7:00,154.5575959,310.7310585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697538932,5.423280059,-0.232594949,0.232594949,0.569929769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776721972,140.9614144,0.776721972,39.03858564,0,0.985626901,0,0,0,1,23,0% +1/23/2018 8:00,161.0280756,344.7625833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810470107,6.017242217,0.028543013,-0.028543013,0.525272547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897878611,153.8806062,0.897878611,26.11939379,0,0.994313185,0,0,0,1,0,0% +1/23/2018 9:00,159.6890636,27.54236435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787099939,0.480704942,0.27307198,-0.27307198,0.483455631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968854066,165.6625468,0.968854066,14.33745318,0,0.998392641,0,0,0,1,1,0% +1/23/2018 10:00,151.639211,56.37781149,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646603507,0.983978436,0.524628837,-0.524628837,0.440436875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984801853,169.9980534,0.984801853,10.00194663,0,0.999228365,0,0,0,1,2,0% +1/23/2018 11:00,140.901153,73.18114514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459189039,1.277251933,0.811392323,-0.811392323,0.39139743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944623122,160.843036,0.944623122,19.15696396,0,0.997068837,0,0,0,1,3,0% +1/23/2018 12:00,129.2824973,84.69046689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256405242,1.478127492,1.182558686,-1.182558686,0.327924244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85104207,148.3251921,0.85104207,31.67480786,0,0.991248498,0,0,0,1,4,0% +1/23/2018 13:00,117.4486666,94.00476896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049865935,1.640692731,1.758684739,-1.758684739,0.229400886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71042106,135.2691843,0.71042106,44.7308157,0,0.979619204,0,0,0,1,5,0% +1/23/2018 14:00,105.7360826,102.554621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845442779,1.789915799,2.991404122,-2.991404122,0.018593456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532327975,122.1628821,0.532327975,57.83711794,0,0.956072943,0,0,0,1,6,0% +1/23/2018 15:00,94.40586039,111.1702993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647693097,1.940287754,9.769876647,-9.769876647,0,#DIV/0!,0,0,0.532839866,1,0.102000221,0,0.951001947,0.989763911,0.724496596,1,0,0,0.072747612,0.312029739,0.814502161,0.538998757,0.961238037,0.922476074,0,0,0,0,0,0,-0.328885125,109.2011211,0.328885125,70.79887894,0,0.897971233,0,0,0,1,7,0% +1/23/2018 16:00,83.60944252,120.481753,46.92052726,217.0515641,22.76156935,22.4289308,0,22.4289308,22.07522405,0.353706754,36.30539869,24.24262833,12.06277036,0.686345297,11.37642506,1.459260058,2.102803278,-5.681407916,5.681407916,0.498268335,0.485108985,0.262331168,8.437472106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.21954503,0.497254831,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190058038,8.110419123,21.40960307,8.607673955,0,24.24262833,-0.111690641,96.4127828,0.111690641,83.5872172,0,0.602334918,21.40960307,23.2098555,36.59998929,1,8,71% +1/23/2018 17:00,74.06934898,131.0675541,208.411333,555.190233,56.02623006,110.7683078,54.86038267,55.90792517,54.33683251,1.571092661,52.22113814,0,52.22113814,1.689397551,50.53174059,1.292754014,2.287560361,-1.694874342,1.694874342,0.819994272,0.268825257,1.364312293,43.88097312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.23063021,1.223962775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988439612,42.18006046,53.21906982,43.40402323,54.86038267,0,0.098813667,84.32913976,-0.098813667,95.67086024,0.54399712,0,83.06295997,43.40402323,111.4700251,1,9,34% +1/23/2018 18:00,66.03452623,143.4539251,355.4668733,696.3650766,72.61307953,276.9184143,203.8152275,73.10318671,70.42352727,2.679659441,88.37661115,0,88.37661115,2.189552262,86.18705889,1.152519903,2.503743318,-0.640679235,0.640679235,0.639716292,0.204275236,1.911436802,61.47837808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.6937731,1.58632316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384829457,59.09535546,69.07860256,60.68167862,203.8152275,0,0.292684447,72.98126149,-0.292684447,107.0187385,0.879167554,0,248.2663376,60.68167862,287.9812827,1,10,16% +1/23/2018 19:00,60.22079099,157.9248196,459.0351538,759.7702117,81.68840896,429.1085127,346.4229098,82.68560292,79.22520203,3.460400887,113.7615945,0,113.7615945,2.463206928,111.2983876,1.051051081,2.756308073,-0.063280877,0.063280877,0.540975357,0.177956761,2.154659775,69.30126496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.15427767,1.784585035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.561043672,66.61501188,77.71532134,68.39959692,346.4229098,0,0.455957478,62.873443,-0.455957478,117.126557,0.940340652,0,403.4708661,68.39959692,448.2370342,1,11,11% +1/23/2018 20:00,57.3435207,174.1369748,508.5863665,783.8893257,85.59892575,539.4609377,452.6091965,86.85174117,83.01780231,3.833938858,125.8937762,0,125.8937762,2.581123438,123.3126528,1.000833241,3.039263559,0.381080625,-0.381080625,0.464985065,0.168307551,2.127959205,68.44248285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79986931,1.870015144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.5416992,65.78951786,81.34156851,67.659533,452.6091965,0,0.577389156,54.73288145,-0.577389156,125.2671186,0.963403292,0,517.3867585,67.659533,561.6685697,1,12,9% +1/23/2018 21:00,57.85557662,190.8978246,499.8649634,779.8782559,84.9266645,592.0225045,505.888499,86.13400546,82.36581222,3.768193238,123.7588999,0,123.7588999,2.560852281,121.1980476,1.009770303,3.331795575,0.817194782,-0.817194782,0.390405151,0.169899214,1.861392641,59.86878583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.17315164,1.85532876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348572632,57.54815416,80.52172427,59.40348292,505.888499,0,0.648676246,49.55812934,-0.648676246,130.4418707,0.972919946,0,572.7107355,59.40348292,611.589127,1,13,7% +1/23/2018 22:00,61.67050865,206.6836242,433.5988883,746.0103683,79.5861236,576.5260582,496.0710983,80.4549599,77.18630833,3.268651573,107.5308858,0,107.5308858,2.399815268,105.1310705,1.076353427,3.607309753,1.349591966,-1.349591966,0.299359871,0.183547804,1.398854833,44.99197995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.19441549,1.738657992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013465564,43.24800248,75.20788106,44.98666047,496.0710983,0,0.664965421,48.32032739,-0.664965421,131.6796726,0.97480812,0,558.7820159,44.98666047,588.2248854,1,14,5% +1/23/2018 23:00,68.22099821,220.5397393,315.6488601,665.6488799,68.67479909,485.1416079,416.1581129,68.98349495,66.60400051,2.379494438,78.60351916,0,78.60351916,2.070798575,76.53272058,1.190681038,3.849144581,2.179213735,-2.179213735,0.157486193,0.217567075,0.810906617,26.08154429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.0222987,1.500286519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587499084,25.07057243,64.60979778,26.57085895,416.1581129,0,0.625191637,51.30374551,-0.625191637,128.6962545,0.970024522,0,468.2933724,26.57085895,485.6834681,1,15,4% +1/23/2018 0:00,76.77524104,232.3526363,159.4339253,484.179042,48.66753209,306.1092376,257.7073309,48.40190671,47.20002643,1.201880274,40.12410672,0,40.12410672,1.467505657,38.65660106,1.33998074,4.055318529,4.054999451,-4.054999451,0,0.305252047,0.366876414,11.80000661,0.140370646,1,0.241784745,0,0.933082679,0.971844642,0.724496596,1,45.61427547,1.063202853,0.022515764,0.312029739,0.938133516,0.662630112,0.961238037,0.922476074,0.257291421,11.34261519,45.8715669,12.40581804,221.5327865,0,0.53225627,57.84197096,-0.53225627,122.158029,0.956060289,0,257.6702669,12.40581804,265.7896266,1,16,3% +1/23/2018 1:00,86.59870099,242.5126144,12.68686474,73.47564957,8.327627515,37.14049289,28.96833513,8.172157765,8.07651882,0.095638945,3.327185935,0,3.327185935,0.251108695,3.07607724,1.51143246,4.232643598,16.6820102,-16.6820102,0,0.656397596,0.062777174,2.019129705,0.699034328,1,0.059873167,0,0.955528525,0.994290488,0.724496596,1,7.811564946,0.181927395,0.089745053,0.312029739,0.777210149,0.501706745,0.961238037,0.922476074,0.043585757,1.940864274,7.855150704,2.122791669,8.718474453,0,0.394257625,66.7803179,-0.394257625,113.2196821,0.923179371,0,15.90386647,2.122791669,17.29319116,1,17,9% +1/23/2018 2:00,97.70959745,251.5727337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705354186,4.390772511,-7.384057679,7.384057679,0.207098078,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.212739043,77.71708435,-0.212739043,102.2829157,0.81497027,0,0,0,0,1,18,0% +1/23/2018 3:00,109.1767103,260.1226358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.905493061,4.539996453,-2.830613073,2.830613073,0.985782966,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009340101,89.46484386,-0.009340101,90.53515614,0,0,0,0,0,1,19,0% +1/23/2018 4:00,120.9460325,268.8329278,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110906485,4.692019729,-1.578546463,1.578546463,0.800101033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.20558828,101.8639386,0.20558828,78.13606144,0,0.806795475,0,0,0,1,20,0% +1/23/2018 5:00,132.7447316,278.6598495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316832631,4.863531867,-0.949430314,0.949430314,0.692515836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.417399434,114.6705114,0.417399434,65.32948856,0,0.930210667,0,0,0,1,21,0% +1/23/2018 6:00,144.1717309,291.3800201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516271392,5.085540725,-0.541726434,0.541726434,0.622794366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611657878,127.7094751,0.611657878,52.2905249,0,0.968254956,0,0,0,1,22,0% +1/23/2018 7:00,154.3361588,310.9747308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.693674126,5.427532942,-0.233131723,0.233131723,0.570021562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775122577,140.8161471,0.775122577,39.18385289,0,0.985494073,0,0,0,1,23,0% +1/24/2018 8:00,160.7827981,344.747926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806189208,6.016986398,0.028852174,-0.028852174,0.525219677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89664884,153.7210098,0.89664884,26.27899022,0,0.99423681,0,0,0,1,0,0% +1/24/2018 9:00,159.4913754,27.12478121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783649629,0.473416741,0.274122361,-0.274122361,0.483276005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967947501,165.4542716,0.967947501,14.54572839,0,0.998344306,0,0,0,1,1,0% +1/24/2018 10:00,151.5081068,55.94117834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315307,0.97635775,0.526514766,-0.526514766,0.440114362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98414975,169.7851732,0.98414975,10.21482681,0,0.999194724,0,0,0,1,2,0% +1/24/2018 11:00,140.8043708,72.82298695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.457499872,1.271000893,0.814463492,-0.814463492,0.390872229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944139153,160.7587142,0.944139153,19.24128582,0,0.997041705,0,0,0,1,3,0% +1/24/2018 12:00,129.198432,84.39173924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254938027,1.472913711,1.187710602,-1.187710602,0.327043214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850628272,148.2800695,0.850628272,31.71993045,0,0.991219917,0,0,0,1,4,0% +1/24/2018 13:00,117.3651253,93.74368789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048407863,1.636136007,1.768534314,-1.768534314,0.22771651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709974585,135.2328475,0.709974585,44.76715249,0,0.979574944,0,0,0,1,5,0% +1/24/2018 14:00,105.6450375,102.3165906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843853743,1.785761386,3.017673372,-3.017673372,0.01410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531748161,122.1236473,0.531748161,57.87635274,0,0.955970526,0,0,0,1,6,0% +1/24/2018 15:00,94.30090694,110.9462869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645861314,1.936378,10.04336501,-10.04336501,0,#DIV/0!,0,0,0.542828486,1,0.099241132,0,0.951311102,0.990073065,0.724496596,1,0,0,0.073830291,0.312029739,0.812057951,0.536554547,0.961238037,0.922476074,0,0,0,0,0,0,-0.32808042,109.1523062,0.32808042,70.84769383,0,0.897598342,0,0,0,1,7,0% +1/24/2018 16:00,83.4868378,120.2672657,48.66208809,223.2947753,23.33343621,22.9966824,0,22.9966824,22.62984702,0.366835375,37.20315304,24.7008772,12.50227584,0.703589193,11.79868665,1.457120202,2.099059768,-5.598814861,5.598814861,0.51239258,0.47949928,0.273732552,8.804179821,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.75266972,0.509747975,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.198318302,8.462912527,21.95098803,8.972660502,0,24.7008772,-0.110620041,96.35105944,0.110620041,83.64894056,0,0.598002337,21.95098803,23.7438428,37.49085826,1,8,71% +1/24/2018 17:00,73.91973972,130.8632994,211.1933966,558.9817622,56.36460119,112.3045152,56.0474497,56.25706553,54.6650005,1.592065032,52.90588482,0,52.90588482,1.699600689,51.20628413,1.29014284,2.283995445,-1.689071071,1.689071071,0.819001854,0.266886191,1.380810357,44.41160759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.54607776,1.231354914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.000392403,42.69012649,53.54647017,43.92148141,56.0474497,0,0.100267045,84.24545166,-0.100267045,95.75454834,0.551331671,0,84.44720424,43.92148141,113.1929354,1,9,34% +1/24/2018 18:00,65.85487348,143.2680262,358.7794714,698.9532466,72.87314382,279.2425685,205.8621876,73.38038087,70.67574966,2.704631204,89.1876308,0,89.1876308,2.19739416,86.99023664,1.149384371,2.50049877,-0.642239753,0.642239753,0.639983156,0.203114029,1.928693141,62.03340126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93621886,1.592004588,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397331615,59.62886484,69.33355047,61.22086943,205.8621876,0,0.294529267,72.87068767,-0.294529267,107.1293123,0.880237584,0,250.5411851,61.22086943,290.6090197,1,10,16% +1/24/2018 19:00,60.01042772,157.7746291,462.7618206,761.9030129,81.93040777,432.04895,349.1005523,82.94839776,79.45990369,3.488494075,114.6724652,0,114.6724652,2.470504085,112.2019611,1.047379549,2.753686753,-0.067284304,0.067284304,0.541659983,0.177046602,2.172660364,69.88022576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.37988183,1.7898718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574085037,67.17153103,77.95396687,68.96140283,349.1005523,0,0.458195527,62.7292707,-0.458195527,117.2707293,0.940876281,0,406.4143961,68.96140283,451.548255,1,11,11% +1/24/2018 20:00,57.10838533,174.0446605,512.6382125,785.9136773,85.84656062,542.9502455,455.827792,87.12245347,83.25797008,3.864483385,126.8836603,0,126.8836603,2.588590543,124.2950698,0.996729355,3.037652371,0.375243698,-0.375243698,0.465983238,0.167460323,2.146372166,69.03470696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.03072771,1.875425036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555039328,66.3587862,81.58576704,68.23421123,455.827792,0,0.579997276,54.54964895,-0.579997276,125.450351,0.963792699,0,520.9092648,68.23421123,565.5671914,1,12,9% +1/24/2018 21:00,57.60843985,190.8763894,504.1412735,782.0505061,85.19492721,596.0154688,509.5890531,86.42641569,82.62598582,3.80042987,124.8038299,0,124.8038299,2.568941391,122.2348885,1.005456952,3.331421459,0.808917639,-0.808917639,0.391820626,0.168990185,1.879681103,60.45700563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.4232404,1.861189293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36182256,58.1135734,80.78506296,59.9747627,509.5890531,0,0.651606321,49.33717864,-0.651606321,130.6628214,0.973266552,0,576.7510434,59.9747627,616.0033261,1,13,7% +1/24/2018 22:00,61.42550422,206.726964,437.9779059,748.6576869,79.89419183,581.0002673,500.2135177,80.78674963,77.48508717,3.301662457,108.6019187,0,108.6019187,2.409104662,106.192814,1.072077293,3.608066174,1.33683702,-1.33683702,0.301541095,0.182416032,1.416252064,45.5515347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48161308,1.745388127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.026069799,43.78586779,75.50768288,45.53125592,500.2135177,0,0.668147174,48.07577664,-0.668147174,131.9242234,0.975166188,0,563.2989921,45.53125592,593.0982885,1,14,5% +1/24/2018 23:00,67.98762586,220.6302071,319.9697476,669.4213779,69.06604427,490.1513358,420.7558205,69.39551533,66.98344821,2.412067113,79.66296585,0,79.66296585,2.082596061,77.58036979,1.186607922,3.850723543,2.155629641,-2.155629641,0.16151931,0.215851795,0.826149562,26.57180978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.38703826,1.508833757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.598542545,25.54183427,64.98558081,27.05066802,420.7558205,0,0.628536576,51.05776392,-0.628536576,128.9422361,0.970450135,0,473.3081235,27.05066802,491.0122447,1,15,4% +1/24/2018 0:00,76.55744891,232.4738745,163.3794653,490.8188217,49.27867742,311.9358339,262.911467,49.0243669,47.79274348,1.231623421,41.09917685,0,41.09917685,1.485933943,39.61324291,1.33617955,4.057434535,3.989563737,-3.989563737,0,0.301620998,0.371483486,11.94818587,0.132021215,1,0.245594072,0,0.932534119,0.971296083,0.724496596,1,46.17632986,1.076554084,0.02125511,0.312029739,0.941492489,0.665989085,0.961238037,0.922476074,0.260915653,11.48505073,46.43724552,12.56160481,228.2015758,0,0.535658894,57.61139301,-0.535658894,122.388607,0.956657015,0,264.7478838,12.56160481,272.969203,1,16,3% +1/24/2018 1:00,86.40264148,242.6548401,14.37810101,82.10318981,9.226576761,41.69323497,32.63648534,9.056749628,8.948361429,0.108388199,3.764352385,0,3.764352385,0.278215332,3.486137053,1.508010576,4.235125905,15.77571978,-15.77571978,0,0.641710387,0.069553833,2.237090357,0.684308884,1,0.063303853,0,0.955175489,0.993937452,0.724496596,1,8.656754881,0.201566061,0.088321978,0.312029739,0.780243684,0.50474028,0.961238037,0.922476074,0.048219565,2.150376343,8.704974446,2.351942404,10.30304849,0,0.397505693,66.57766039,-0.397505693,113.4223396,0.924215638,0,18.22721298,2.351942404,19.76651224,1,17,8% +1/24/2018 2:00,97.51718943,251.7323244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701996033,4.393557895,-7.574721288,7.574721288,0.17449268,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.215991731,77.52628349,-0.215991731,102.4737165,0.818509657,0,0,0,0,1,18,0% +1/24/2018 3:00,108.9926638,260.300559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902280843,4.543101799,-2.858593536,2.858593536,0.980998025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012368275,89.29133198,-0.012368275,90.70866802,0,0,0,0,0,1,19,0% +1/24/2018 4:00,120.7656087,269.0336632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107757494,4.695523222,-1.587967387,1.587967387,0.801712106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202859298,101.704213,0.202859298,78.295787,0,0.803523745,0,0,0,1,20,0% +1/24/2018 5:00,132.5613083,278.8902204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313631291,4.867552598,-0.953441657,0.953441657,0.693201816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415023533,114.5207985,0.415023533,65.47920151,0,0.929524904,0,0,0,1,21,0% +1/24/2018 6:00,143.9751166,291.6429307,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512839826,5.090129381,-0.543441557,0.543441557,0.623087669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609664473,127.5652461,0.609664473,52.43475386,0,0.967987676,0,0,0,1,22,0% +1/24/2018 7:00,154.1116647,311.2283126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689755965,5.431958781,-0.233595637,0.233595637,0.570100896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77351461,140.6705554,0.77351461,39.32944462,0,0.98535998,0,0,0,1,23,0% +1/25/2018 8:00,160.5324774,344.7463271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801820287,6.016958492,0.029248528,-0.029248528,0.525151897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895402601,153.5601895,0.895402601,26.43981052,0,0.994159197,0,0,0,1,0,0% +1/25/2018 9:00,159.2861546,26.71657215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780067851,0.466292149,0.275278402,-0.275278402,0.48307831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967014283,165.2428777,0.967014283,14.7571223,0,0.998294456,0,0,0,1,1,0% +1/25/2018 10:00,151.3692994,55.50442655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641892661,0.968734993,0.528534951,-0.528534951,0.43976889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983459219,169.5644321,0.983459219,10.43556792,0,0.999159051,0,0,0,1,2,0% +1/25/2018 11:00,140.700554,72.46187754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455687928,1.264698345,0.817718935,-0.817718935,0.390315516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943604206,160.6659225,0.943604206,19.3340775,0,0.997011682,0,0,0,1,3,0% +1/25/2018 12:00,129.10784,84.08966531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253356898,1.467641527,1.193147687,-1.193147687,0.326113418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850151039,148.228101,0.850151039,31.77189898,0,0.991186921,0,0,0,1,4,0% +1/25/2018 13:00,117.2753503,93.47942618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046840994,1.63152377,1.778926036,-1.778926036,0.225939421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709453167,135.1904409,0.709453167,44.80955909,0,0.979523184,0,0,0,1,5,0% +1/25/2018 14:00,105.5478953,102.075659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842158291,1.781556337,3.045548309,-3.045548309,0.009334255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531083643,122.0787015,0.531083643,57.92129852,0,0.955852871,0,0,0,1,6,0% +1/25/2018 15:00,94.18988174,110.7196844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643923558,1.93242304,10.34578721,-10.34578721,0,#DIV/0!,0,0,0.553388023,1,0.096358362,0,0.951632226,0.990394189,0.724496596,1,0,0,0.074965898,0.312029739,0.809504306,0.534000902,0.961238037,0.922476074,0,0,0,0,0,0,-0.327183672,109.0979247,0.327183672,70.9020753,0,0.897180638,0,0,0,1,7,0% +1/25/2018 16:00,83.35814536,120.0505606,50.50944607,229.8091638,23.92907934,23.58829085,0,23.58829085,23.20752931,0.38076154,38.12159551,25.1534455,12.96815001,0.721550031,12.24659998,1.454874095,2.095277551,-5.514322414,5.514322414,0.526841639,0.473754539,0.285952891,9.197227937,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.30795991,0.522760541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.207171896,8.840725327,22.51513181,9.363485868,0,25.1534455,-0.109453623,96.28382028,0.109453623,83.71617972,0,0.593185517,22.51513181,24.28414545,38.40861933,1,8,71% +1/25/2018 17:00,73.76391533,130.6573568,214.0912255,562.8725568,56.71440012,113.9286255,57.31046369,56.61816179,55.0042517,1.61391009,53.6190447,0,53.6190447,1.710148417,51.90889628,1.287423192,2.280401069,-1.682742599,1.682742599,0.817919622,0.264907635,1.397894849,44.96110356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.87217892,1.238996707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.012770059,43.21832292,53.88494898,44.45731963,57.31046369,0,0.101817832,84.15614101,-0.101817832,95.84385899,0.558926887,0,85.91730802,44.45731963,115.0137346,1,9,34% +1/25/2018 18:00,65.66890483,143.081298,362.203783,701.5926023,73.14136666,281.6671062,208.0007765,73.66632971,70.9358846,2.730445112,90.02598271,0,90.02598271,2.205482068,87.82050064,1.146138605,2.497239748,-0.643594136,0.643594136,0.640214769,0.201934298,1.946446255,62.60440243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.18627045,1.59786425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410193686,60.17773289,69.59646414,61.77559714,208.0007765,0,0.296469455,72.75432673,-0.296469455,107.2456733,0.881348562,0,252.9176493,61.77559714,293.3485422,1,10,16% +1/25/2018 19:00,59.79377216,157.6250058,466.5915189,764.0668011,82.17890053,435.0891085,351.8708411,83.21826742,79.70090347,3.517363958,115.6085128,0,115.6085128,2.477997059,113.1305158,1.043598196,2.751075334,-0.071182562,0.071182562,0.542326625,0.176126006,2.191088443,70.47293614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.61153998,1.795300434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587436118,67.74126679,78.1989761,69.53656722,351.8708411,0,0.460523662,62.5790964,-0.460523662,117.4209036,0.941427946,0,409.4600192,69.53656722,454.9703117,1,11,11% +1/25/2018 20:00,56.86727847,173.9548659,516.7817792,787.9580131,86.09945849,546.5321448,459.1331833,87.39896148,83.50324214,3.895719341,127.8959418,0,127.8959418,2.596216347,125.2997255,0.992521246,3.036085159,0.369473421,-0.369473421,0.466970013,0.166606993,2.165149404,69.63864748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.26649254,1.880949905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.568643373,66.93931679,81.83513592,68.8202667,459.1331833,0,0.582687371,54.36021914,-0.582687371,125.6397809,0.964190692,0,524.5270778,68.8202667,569.5685659,1,12,9% +1/25/2018 21:00,57.35606584,190.8594875,508.4965816,784.2347901,85.46730544,600.0897818,513.3663689,86.72341286,82.89015084,3.833262022,125.868038,0,125.868038,2.5771546,123.2908834,1.001052195,3.331126465,0.800699817,-0.800699817,0.393225956,0.168078427,1.898275754,61.05507354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.67716587,1.867139735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375294322,58.68845903,81.05246019,60.55559876,513.3663689,0,0.654608002,49.11006674,-0.654608002,130.8899333,0.97361841,0,580.8754081,60.55559876,620.5078363,1,13,7% +1/25/2018 22:00,61.17629423,206.7762099,442.4229915,751.3083163,80.20508165,585.5416321,504.4198582,81.12177391,77.78660252,3.335171391,109.6890556,0,109.6890556,2.418479137,107.2705765,1.067727759,3.608925677,1.324173817,-1.324173817,0.30370663,0.181285971,1.433906411,46.1193592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.7714411,1.752179902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038860314,44.3316823,75.81030141,46.0838622,504.4198582,0,0.671388626,47.82566971,-0.671388626,132.1743303,0.975527484,0,567.8857367,46.0838622,598.0467028,1,14,5% +1/25/2018 23:00,67.75110612,220.7271358,324.3452907,673.1812801,69.45815827,495.2113058,425.4025154,69.80879033,67.36373853,2.445051806,80.73569063,0,80.73569063,2.094419745,78.64127088,1.182479874,3.852415267,2.132304994,-2.132304994,0.16550806,0.214148811,0.84161988,27.06938838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.75258778,1.517399976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.609750738,26.02012574,65.36233852,27.53752572,425.4025154,0,0.631928617,50.80744382,-0.631928617,129.1925562,0.970877139,0,478.3759157,27.53752572,496.3986755,1,15,4% +1/25/2018 0:00,76.33738529,232.6016236,167.3757409,497.4069204,49.88615541,317.7939383,268.1502855,49.6436528,48.38190377,1.261749035,42.08643784,0,42.08643784,1.504251646,40.58218619,1.332338716,4.059664178,3.92561604,-3.92561604,0,0.2980489,0.376062912,12.09547594,0.123703446,1,0.249432106,0,0.931978293,0.970740256,0.724496596,1,46.73427097,1.089825197,0.019989874,0.312029739,0.944876214,0.66937281,0.961238037,0.922476074,0.264542783,11.62663155,46.99881376,12.71645675,234.979171,0,0.539096411,57.37785123,-0.539096411,122.6221488,0.957252211,0,271.9331448,12.71645675,280.2558114,1,16,3% +1/25/2018 1:00,86.20450273,242.8034691,16.18654825,91.12150108,10.15471625,46.49066267,36.52012754,9.970535131,9.848514093,0.122021038,4.230818188,0,4.230818188,0.306202162,3.924616026,1.504552403,4.237719972,14.95489055,-14.95489055,0,0.627355264,0.07655054,2.462128523,0.669670814,1,0.066768362,0,0.954816152,0.993578115,0.724496596,1,9.52962275,0.221842424,0.086892141,0.312029739,0.783307974,0.50780457,0.961238037,0.922476074,0.052996028,2.366691588,9.582618778,2.588534012,12.063664,0,0.400784964,66.37274045,-0.400784964,113.6272596,0.925244821,0,20.74446141,2.588534012,22.43860515,1,17,8% +1/25/2018 2:00,97.32362519,251.8982628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6986177,4.396454066,-7.776494252,7.776494252,0.139987471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.219257774,77.33455776,-0.219257774,102.6654422,0.821957915,0,0,0,0,1,18,0% +1/25/2018 3:00,108.8076789,260.4849353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899052249,4.546319772,-2.887164532,2.887164532,0.976112097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015402565,89.11746315,-0.015402565,90.88253685,0,0,0,0,0,1,19,0% +1/25/2018 4:00,120.5842434,269.241188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104592073,4.699145213,-1.597455544,1.597455544,0.803334677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200128477,101.5444721,0.200128477,78.45552788,0,0.800160493,0,0,0,1,20,0% +1/25/2018 5:00,132.3766747,279.128006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310408827,4.871702739,-0.957424706,0.957424706,0.693882957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412646817,114.3712125,0.412646817,65.62878748,0,0.928831005,0,0,0,1,21,0% +1/25/2018 6:00,143.7766538,291.9141812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509375996,5.094863595,-0.545098485,0.545098485,0.623371021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607667954,127.4210712,0.607667954,52.57892883,0,0.967718221,0,0,0,1,22,0% +1/25/2018 7:00,153.8841584,311.4914177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685785231,5.436550831,-0.233985808,0.233985808,0.570167619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771898064,140.5246407,0.771898064,39.47535934,0,0.985224608,0,0,0,1,23,0% +1/26/2018 8:00,160.2772231,344.7573559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.797365259,6.01715098,0.029732643,-0.029732643,0.525069108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.894139533,153.3981185,0.894139533,26.60188147,0,0.994080316,0,0,0,1,0,0% +1/26/2018 9:00,159.0735232,26.31807388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776356733,0.459337042,0.276540504,-0.276540504,0.482862478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966053769,165.0283493,0.966053769,14.97165071,0,0.998243046,0,0,0,1,1,0% +1/26/2018 10:00,151.2228213,55.06806004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.639336136,0.96111896,0.530689798,-0.530689798,0.439400389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982729432,169.3360531,0.982729432,10.66394695,0,0.999121296,0,0,0,1,2,0% +1/26/2018 11:00,140.5897029,72.09815399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45375321,1.258350172,0.821159386,-0.821159386,0.389727164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943017372,160.5646205,0.943017372,19.43537953,0,0.996978707,0,0,0,1,3,0% +1/26/2018 12:00,129.0107207,83.78447483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251661846,1.462314948,1.198871996,-1.198871996,0.325134504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849609489,148.1692207,0.849609489,31.83077933,0,0.991149433,0,0,0,1,4,0% +1/26/2018 13:00,117.1793503,93.21215388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045165479,1.626858988,1.789867719,-1.789867719,0.224068283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708856064,135.1419176,0.708856064,44.85808243,0,0.979463818,0,0,0,1,5,0% +1/26/2018 14:00,105.4446774,101.8319601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840356799,1.777302987,3.075080517,-3.075080517,0.00428395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530333915,122.0280189,0.530333915,57.97198111,0,0.955719777,0,0,0,1,6,0% +1/26/2018 15:00,94.07282031,110.4906009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641880451,1.928424778,10.68074096,-10.68074096,0,#DIV/0!,0,0,0.564528321,1,0.093354319,0,0.951964802,0.990726765,0.724496596,1,0,0,0.076154099,0.312029739,0.80684341,0.531340005,0.961238037,0.922476074,0,0,0,0,0,0,-0.326194693,109.0379708,0.326194693,70.96202917,0,0.89671731,0,0,0,1,7,0% +1/26/2018 16:00,83.22340787,119.8317266,52.46415993,236.5853794,24.54749019,24.20278979,0,24.20278979,23.80729279,0.395496999,39.05725865,25.59651826,13.46074038,0.7401974,12.72054298,1.452522482,2.091458178,-5.428284745,5.428284745,0.541554947,0.467890656,0.299018315,9.617456884,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88447539,0.536270497,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216637751,9.244665375,23.10111314,9.780935871,0,25.59651826,-0.108191463,96.2110718,0.108191463,83.7889282,0,0.587856327,23.10111314,24.82801108,39.35054983,1,8,70% +1/26/2018 17:00,73.60193839,130.4497974,217.1037753,566.8564421,57.07509888,115.6407431,58.65004904,56.99069402,55.35407406,1.636619963,54.36034867,0,54.36034867,1.721024816,52.63932386,1.284596161,2.276778473,-1.675911527,1.675911527,0.81675144,0.262893166,1.415555541,45.52913215,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.20844148,1.24687662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025565171,43.7643336,54.23400665,45.01121023,58.65004904,0,0.103465436,84.06123903,-0.103465436,95.93876097,0.56674683,0,87.47373604,45.01121023,116.9326729,1,9,34% +1/26/2018 18:00,65.47669541,142.893796,365.7380622,704.279633,73.4174142,284.1909758,210.2302796,73.96069629,71.20360828,2.757088001,90.89123347,0,90.89123347,2.21380592,88.67742755,1.142783918,2.493967221,-0.644744614,0.644744614,0.640411512,0.200737691,1.964685677,63.19104493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.44361664,1.603894853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423408085,60.74163598,69.86702473,62.34553083,210.2302796,0,0.298503989,72.63222865,-0.298503989,107.3677714,0.882498051,0,255.3948366,62.34553083,296.1987396,1,10,16% +1/26/2018 19:00,59.57090941,157.4759977,470.5220827,766.2590667,82.43361184,438.2272563,354.7323277,83.49492851,79.9479343,3.546994209,116.569204,0,116.569204,2.485677545,114.0835265,1.039708508,2.748474653,-0.074973548,0.074973548,0.542974921,0.175196053,2.209933146,71.07904657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84899541,1.80086492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601089041,68.32388318,78.45008445,70.1247481,354.7323277,0,0.462940464,62.42298637,-0.462940464,117.5770136,0.941994751,0,412.6060753,70.1247481,458.5013204,1,11,11% +1/26/2018 20:00,56.62029492,173.867643,521.014625,790.0202126,86.3573611,550.2043959,462.5233995,87.68099636,83.75336804,3.927628321,128.930021,0,128.930021,2.603993062,126.3260279,0.98821057,3.034562833,0.363773819,-0.363773819,0.467944703,0.16574844,2.184279943,70.25395138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.50692307,1.886584109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582503383,67.5307703,82.08942646,69.41735441,462.5233995,0,0.585457678,54.16467053,-0.585457678,125.8353295,0.96459673,0,528.2379853,69.41735441,573.6702554,1,12,9% +1/26/2018 21:00,57.09856084,190.847175,512.9283008,786.4290636,85.74354144,604.2428095,517.218082,87.0247275,83.1580573,3.866670193,126.9508891,0,126.9508891,2.585484134,124.365405,0.996557885,3.330911573,0.792547057,-0.792547057,0.394620161,0.16716477,1.917166005,61.66264894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93468775,1.873174454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.388980244,59.27248361,81.32366799,61.14565806,517.218082,0,0.657679257,48.87688103,-0.657679257,131.123119,0.9739751,0,585.0812009,61.14565806,625.0998112,1,13,7% +1/26/2018 22:00,60.92299442,206.8314036,446.9315452,753.9600351,80.51852504,590.1472192,508.687466,81.4597532,78.09059443,3.369158772,110.7916581,0,110.7916581,2.427930612,108.3637275,1.063306843,3.60988899,1.311610467,-1.311610467,0.30585509,0.180158518,1.451808277,46.69514476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06364969,1.759027463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051830155,44.88514928,76.11547984,46.64417675,508.687466,0,0.674687573,47.57010686,-0.674687573,132.4298931,0.975891624,0,572.5393174,46.64417675,603.0669982,1,14,5% +1/26/2018 23:00,67.51155649,220.8305371,328.7730082,676.9258457,69.85084936,500.3183409,430.0953225,70.22301834,67.74458853,2.47842981,81.82108307,0,81.82108307,2.10626083,79.71482224,1.178298944,3.854219961,2.109250959,-2.109250959,0.169450532,0.212459197,0.857309703,27.57402702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.11867529,1.525978802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.621117961,26.5052036,65.73979325,28.03118241,430.0953225,0,0.635365491,50.55290245,-0.635365491,129.4470975,0.971305137,0,483.4935896,28.03118241,501.8394379,1,15,4% +1/26/2018 0:00,76.11516132,232.7358638,171.4204257,503.9389509,50.48960704,323.6798376,273.420439,50.25939868,48.9671591,1.292239577,43.08531479,0,43.08531479,1.522447939,41.56286685,1.328460176,4.062007111,3.863144186,-3.863144186,0,0.294536703,0.380611985,12.24178978,0.115422248,1,0.253296671,0,0.931415454,0.970177417,0.724496596,1,47.28775322,1.103008349,0.018720818,0.312029739,0.948282772,0.672779368,0.961238037,0.922476074,0.268171056,11.76727397,47.55592428,12.87028232,241.8616373,0,0.542566592,57.14147063,-0.542566592,122.8585294,0.957845413,0,279.2219842,12.87028232,287.6453266,1,16,3% +1/26/2018 1:00,86.00441732,242.9584552,18.11006005,100.4918033,11.10783494,51.51742838,40.60801436,10.90941402,10.77289274,0.136521282,4.725935937,0,4.725935937,0.334942207,4.39099373,1.501060253,4.240424988,14.20854575,-14.20854575,0,0.613351635,0.083735552,2.693223184,0.655130879,1,0.070264317,0,0.954450685,0.993212648,0.724496596,1,10.42620477,0.242664489,0.085456644,0.312029739,0.786400864,0.51089746,0.961238037,0.922476074,0.057893776,2.588828566,10.48409854,2.831493055,14.00445021,0,0.404092802,66.16571007,-0.404092802,113.8342899,0.926266046,0,23.45594527,2.831493055,25.30910084,1,17,8% +1/26/2018 2:00,97.12898908,252.0704799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695220659,4.399459821,-7.990275646,7.990275646,0.103428699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.222535337,77.14201066,-0.222535337,102.8579893,0.825316583,0,0,0,0,1,18,0% +1/26/2018 3:00,108.6218243,260.6756731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895808474,4.549648775,-2.916333689,2.916333689,0.971123877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.018441464,88.94332204,-0.018441464,91.05667796,0,0,0,0,0,1,19,0% +1/26/2018 4:00,120.4019891,269.4553824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101411137,4.702883611,-1.60700827,1.60700827,0.804968289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.197396942,101.3847804,0.197396942,78.61521962,0,0.796703269,0,0,0,1,20,0% +1/26/2018 5:00,132.1908683,279.3730421,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307165894,4.875979425,-0.961377456,0.961377456,0.694558917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410269998,114.2217968,0.410269998,65.77820324,0,0.928129036,0,0,0,1,21,0% +1/26/2018 6:00,143.5763706,292.1935253,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505880394,5.099739069,-0.546695987,0.546695987,0.62364421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605668618,127.2769705,0.605668618,52.72302952,0,0.967446606,0,0,0,1,22,0% +1/26/2018 7:00,153.65368,311.7636522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.681762623,5.441302219,-0.234301502,0.234301502,0.570221606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770272855,140.3783973,0.770272855,39.62160267,0,0.985087937,0,0,0,1,23,0% +1/27/2018 8:00,160.0171421,344.7805604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79282599,6.017555977,0.030304952,-0.030304952,0.524971238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892859223,153.2347641,0.892859223,26.76523595,0,0.99400013,0,0,0,1,0,0% +1/27/2018 9:00,158.85361,25.92956302,0,0,0,0,0,0,0,0,0,0,0,0,0,2.772518523,0.452556248,0.277908946,-0.277908946,0.482628461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965065295,164.810668,0.965065295,15.18933205,0,0.998190034,0,0,0,1,1,0% +1/27/2018 10:00,151.0687168,54.63255973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636646505,0.953518046,0.532979593,-0.532979593,0.439008811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981959568,169.1002591,0.981959568,10.89974091,0,0.999081407,0,0,0,1,2,0% +1/27/2018 11:00,140.4718286,71.73214569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451695915,1.251962122,0.824785469,-0.824785469,0.389107068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942377782,160.4547864,0.942377782,19.54521359,0,0.996942722,0,0,0,1,3,0% +1/27/2018 12:00,128.9070835,83.4763932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249853036,1.456937909,1.204885518,-1.204885518,0.324106131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849002816,148.1033752,0.849002816,31.89662476,0,0.99110738,0,0,0,1,4,0% +1/27/2018 13:00,117.0771433,92.94203736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04338163,1.622144565,1.801367385,-1.801367385,0.222101724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708182634,135.0872411,0.708182634,44.91275887,0,0.979396744,0,0,0,1,5,0% +1/27/2018 14:00,105.3354138,101.5856238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838449789,1.773003608,3.106325016,-3.106325016,0,#DIV/0!,0,0,0.001058053,1,0.311447084,0,0.922568255,0.961330218,0.724496596,1,0,0,0.000180848,0.312029739,0.999487308,0.723983904,0.961238037,0.922476074,0,0,0,0,0,0,-0.529498598,121.9715833,0.529498598,58.02841666,0,0.955571044,0,0,0,1,6,0% +1/27/2018 15:00,93.94976623,110.2591409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639732752,1.924385039,11.05250431,-11.05250431,0,#DIV/0!,0,0,0.576259671,1,0.090231552,0,0.952308293,0.991070256,0.724496596,1,0,0,0.07739453,0.312029739,0.804077575,0.528574171,0.961238037,0.922476074,0,0,0,0,0,0,-0.32511344,108.9724479,0.32511344,71.02755212,0,0.896207527,0,0,0,1,7,0% +1/27/2018 16:00,83.08267565,119.610848,54.52760378,243.6129906,25.1875835,24.83913704,0,24.83913704,24.42808493,0.41105211,40.00644646,26.02609905,13.98034741,0.759498575,13.22084884,1.450066241,2.087603118,-5.341041507,5.341041507,0.55647442,0.461923535,0.312954246,10.06568432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.4812044,0.550254132,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.226734286,9.675518634,23.70793869,10.22577277,0,26.02609905,-0.10683379,96.13282935,0.10683379,83.86717065,0,0.581983279,23.70793869,25.37252724,40.31375031,1,8,70% +1/27/2018 17:00,73.4338781,130.2406862,220.2298568,570.9271228,57.4461585,117.4408701,60.06673952,57.37413055,55.71394486,1.660185686,55.12949215,0,55.12949215,1.732213632,53.39727852,1.281662955,2.273128795,-1.668601591,1.668601591,0.815501367,0.260846369,1.433781459,46.1153403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.55436299,1.25498288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038769786,44.32781918,54.59313277,45.58280206,60.06673952,0,0.105209119,83.96078508,-0.105209119,96.03921492,0.574756024,0,89.11685313,45.58280206,118.9498854,1,9,33% +1/27/2018 18:00,65.27832595,142.705569,369.3804418,707.0108019,73.7009469,286.8130045,212.5498673,74.26313722,71.47859142,2.784545797,91.78292012,0,91.78292012,2.222355476,89.56056464,1.139321718,2.490682039,-0.645694076,0.645694076,0.64057388,0.199525851,1.983400456,63.79297657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.70794089,1.610088978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436966879,61.32023557,70.14490777,62.93032454,212.5498673,0,0.300631711,72.50445089,-0.300631711,107.4955491,0.883683547,0,257.9717283,62.93032454,299.1583671,1,10,16% +1/27/2018 19:00,59.34192869,157.327645,474.5512542,768.4773094,82.69426371,441.4615526,357.6834582,83.77809435,80.20072655,3.577367805,117.5539829,0,117.5539829,2.49353716,115.0604457,1.03571204,2.745885409,-0.078655644,0.078655644,0.543604597,0.174257813,2.229183308,71.69819796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.09198894,1.806559184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615035718,68.91903505,78.70702466,70.72559424,357.6834582,0,0.465444397,62.26101352,-0.465444397,117.7389865,0.942575783,0,415.8507903,70.72559424,462.1392772,1,11,11% +1/27/2018 20:00,56.36753199,173.783036,525.3342498,792.0981884,86.62001051,553.964678,465.9963889,87.96828907,84.0080976,3.960191477,129.9852839,0,129.9852839,2.611912911,127.373371,0.983799024,3.033086162,0.358148454,-0.358148454,0.468906697,0.164885519,2.203752668,70.88026116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75177881,1.892322012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.596611306,68.13280309,82.34839012,70.0251251,465.9963889,0,0.588306343,53.96308691,-0.588306343,126.0369131,0.965010265,0,532.039689,70.0251251,577.8697329,1,12,9% +1/27/2018 21:00,56.83603203,190.8395006,517.4338197,788.6313415,86.02338105,608.4718753,521.1417819,87.33009342,83.42945872,3.900634698,128.0517426,0,128.0517426,2.593922331,125.4578202,0.991975893,3.330777628,0.784464551,-0.784464551,0.396002351,0.166250016,1.936341257,62.27939094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19556911,1.879287899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402872649,59.86531949,81.59844176,61.74460739,521.1417819,0,0.660817995,48.63771239,-0.660817995,131.3622876,0.974336201,0,589.3657457,61.74460739,629.7763563,1,13,7% +1/27/2018 22:00,60.66571981,206.8925796,451.5009755,756.6107213,80.834262,594.8140993,513.0136835,81.80041582,78.39681075,3.403605068,111.90909,0,111.90909,2.437451246,109.4716388,1.058816554,3.610956712,1.299154259,-1.299154259,0.307985227,0.179034523,1.469948146,47.27858529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.35799646,1.76592513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064972428,45.44597451,76.42296889,47.21189964,513.0136835,0,0.678041784,47.30918998,-0.678041784,132.69081,0.976258232,0,577.2568005,47.21189964,608.1560445,1,14,5% +1/27/2018 23:00,67.26909221,220.9404155,333.2504534,680.6525173,70.24384131,505.4693266,434.8314136,70.63791301,68.12573032,2.512182683,82.91854164,0,82.91854164,2.118110988,80.80043065,1.174067144,3.856137701,2.086477098,-2.086477098,0.173345092,0.210783933,0.873211248,28.0854754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48504328,1.5345642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632638577,26.99682723,66.11768185,28.53139143,434.8314136,0,0.638844936,50.29425692,-0.638844936,129.7057431,0.971733746,0,488.6580402,28.53139143,507.3312653,1,15,4% +1/27/2018 0:00,75.8908846,232.8765683,175.5112338,510.4109521,51.0887085,329.5899757,278.7187024,50.87127325,49.54819544,1.323077816,44.09524368,0,44.09524368,1.540513058,42.55473062,1.324545808,4.064462868,3.802132201,-3.802132201,0,0.29108512,0.385128265,12.38704886,0.107182086,1,0.257185691,0,0.930845851,0.969607814,0.724496596,1,47.83646514,1.116096467,0.017448657,0.312029739,0.95171034,0.676206936,0.961238037,0.922476074,0.271798868,11.90690253,48.10826401,13.02299899,248.8450505,0,0.546067245,56.90237437,-0.546067245,123.0976256,0.958436185,0,286.610365,13.02299899,295.1336574,1,16,3% +1/27/2018 1:00,85.80251099,243.1197452,20.14602408,110.1746471,12.08184701,56.75749373,44.88808974,11.86940399,11.71753475,0.151869239,5.248949046,0,5.248949046,0.364312265,4.884636782,1.497536323,4.24324003,13.52746212,-13.52746212,0,0.599713718,0.091078066,2.929383686,0.640698585,1,0.073789479,0,0.95407925,0.992841213,0.724496596,1,11.34264954,0.263942996,0.08401651,0.312029739,0.789520315,0.514016911,0.961238037,0.922476074,0.062892278,2.815835024,11.40554182,3.07977802,16.12835415,0,0.407426671,65.9567155,-0.407426671,114.0432845,0.92727853,0,26.36101835,3.07977802,28.37667147,1,17,8% +1/27/2018 2:00,96.93335998,252.2489005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691806287,4.402573847,-8.217072759,8.217072759,0.064644109,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.225822679,76.94874066,-0.225822679,103.0512593,0.82858734,0,0,0,0,1,18,0% +1/27/2018 3:00,108.4351623,260.8726752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892550608,4.553087111,-2.946109749,2.946109749,0.966031871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021483571,88.76898733,-0.021483571,91.23101267,0,0,0,0,0,1,19,0% +1/27/2018 4:00,120.2188922,269.6761212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098215492,4.706736229,-1.61662325,1.61662325,0.806612547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194665704,101.2251956,0.194665704,78.77480439,0,0.793149415,0,0,0,1,20,0% +1/27/2018 5:00,132.0039206,279.6251587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.30390304,4.88037969,-0.965298134,0.965298134,0.695229393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407893678,114.0725874,0.407893678,65.92741257,0,0.927419037,0,0,0,1,21,0% +1/27/2018 6:00,143.3742892,292.4807106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502353409,5.104751398,-0.54823301,0.54823301,0.623907056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603666668,127.1329573,0.603666668,52.86704274,0,0.967172833,0,0,0,1,22,0% +1/27/2018 7:00,153.4202649,312.0446161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.677688761,5.446205964,-0.234542132,0.234542132,0.570262756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768638819,140.2318128,0.768638819,39.76818716,0,0.984949942,0,0,0,1,23,0% +1/28/2018 8:00,159.7523387,344.8154714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788204298,6.018165288,0.030965761,-0.030965761,0.524858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891561204,153.0700874,0.891561204,26.92991265,0,0.993918601,0,0,0,1,0,0% +1/28/2018 9:00,158.6265497,25.55125817,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768555574,0.445953583,0.279383889,-0.279383889,0.482376231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964048174,164.5898131,0.964048174,15.41018693,0,0.998135372,0,0,0,1,1,0% +1/28/2018 10:00,150.9070413,54.19838199,0,0,0,0,0,0,0,0,0,0,0,0,0,2.633824735,0.945940215,0.535404512,-0.535404512,0.438594126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981148818,168.8572718,0.981148818,11.14272821,0,0.999039331,0,0,0,1,2,0% +1/28/2018 11:00,140.3469526,71.36417329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449516419,1.245539792,0.828597711,-0.828597711,0.388455136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941684611,160.336417,0.941684611,19.66358303,0,0.996903667,0,0,0,1,3,0% +1/28/2018 12:00,128.7969471,83.16564088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247930794,1.451514258,1.211190191,-1.211190191,0.323027968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848330286,148.0305239,0.848330286,31.9694761,0,0.991060692,0,0,0,1,4,0% +1/28/2018 13:00,116.9687558,92.6692389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041489912,1.617383334,1.813433301,-1.813433301,0.220038331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707432339,135.0263855,0.707432339,44.9736145,0,0.979321863,0,0,0,1,5,0% +1/28/2018 14:00,105.2201427,101.3367763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.836437929,1.768660399,3.139340577,-3.139340577,0,#DIV/0!,0,0,0.006660508,1,0.308376396,0,0.923052921,0.961814885,0.724496596,1,0,0,0.00113546,0.312029739,0.996785266,0.721281862,0.961238037,0.922476074,0,0,0,0,0,0,-0.528577433,121.909388,0.528577433,58.09061201,0,0.95540648,0,0,0,1,6,0% +1/28/2018 15:00,93.82077064,110.0254048,0,0,0,0,0,0,0,0,0,0,0,0,0,1.637481354,1.920305574,11.4662011,-11.4662011,0,#DIV/0!,0,0,0.588592862,1,0.086992731,0,0.952662146,0.991424109,0.724496596,1,0,0,0.078686793,0.312029739,0.801209238,0.525705834,0.961238037,0.922476074,0,0,0,0,0,0,-0.323940005,108.9013679,0.323940005,71.09863212,0,0.895650431,0,0,0,1,7,0% +1/28/2018 16:00,82.93600623,119.3880035,56.70095584,250.8805569,25.84820585,25.49622283,0,25.49622283,25.06878708,0.427435756,40.96526037,26.43803839,14.52722198,0.779418776,13.7478032,1.447506377,2.083713748,-5.252915445,5.252915445,0.571544864,0.455868962,0.327785205,10.54269895,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.09707168,0.56468625,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.237479265,10.13404325,24.33455094,10.6987295,0,26.43803839,-0.105380978,96.04911676,0.105380978,83.95088324,0,0.575531068,24.33455094,25.91464196,41.29516581,1,8,70% +1/28/2018 17:00,73.25980978,130.0300824,223.4681436,575.0782205,57.82703223,119.3289077,61.56097658,57.76793111,56.08333385,1.68459726,55.92613701,0,55.92613701,1.743698381,54.18243863,1.27862489,2.269453065,-1.660837438,1.660837438,0.814173619,0.258770809,1.452560937,46.71935288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90943373,1.263303541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.052375454,44.90841905,54.96180918,46.17172259,61.56097658,0,0.107048006,83.8548262,-0.107048006,96.1451738,0.582919836,0,90.84692356,46.17172259,121.0653926,1,9,33% +1/28/2018 18:00,65.07388212,142.5166584,373.1289429,709.7825642,73.99162118,289.5319059,214.9586015,74.57330439,71.76050081,2.812803582,92.70055252,0,92.70055252,2.231120379,90.46943215,1.1357535,2.487384927,-0.646446023,0.646446023,0.64070247,0.198300407,2.002579213,64.40983133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97892292,1.616439119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450861823,61.91317982,70.42978474,63.52961894,214.9586015,0,0.302851341,72.37105795,-0.302851341,107.628942,0.884902498,0,260.6471881,63.52961894,302.2260531,1,10,16% +1/28/2018 19:00,59.10692285,157.1799799,478.676693,770.7190484,82.96057663,444.7900576,360.7225813,84.06747626,80.45900915,3.608467106,118.5622736,0,118.5622736,2.501567477,116.0607062,1.031610414,2.743308167,-0.082227694,0.082227694,0.544215454,0.173312338,2.248827512,72.33002309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34026,1.812377122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629267877,69.5263694,78.96952788,71.33874652,360.7225813,0,0.468033821,62.09325687,-0.468033821,117.9067431,0.943170113,0,419.1922858,71.33874652,465.8820686,1,11,11% +1/28/2018 20:00,56.10908903,173.7010814,529.7381036,794.1898931,86.88714988,557.8105994,469.550028,88.26057132,84.26718173,3.993389587,131.0611045,0,131.0611045,2.619968148,128.4411363,0.979288344,3.031655784,0.352600443,-0.352600443,0.469855463,0.164019068,2.223556362,71.51721604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.00082034,1.898158005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610959015,68.74506834,82.61177935,70.64322635,469.550028,0,0.591231432,53.75555685,-0.591231432,126.2444432,0.965430748,0,535.9298141,70.64322635,582.1643929,1,12,9% +1/28/2018 21:00,56.56858703,190.8365055,522.0105115,790.8397022,86.30657435,612.7742687,525.1350202,87.63924843,83.7041127,3.935135734,129.1699538,0,129.1699538,2.602461654,126.5674921,0.987308097,3.330725354,0.776456959,-0.776456959,0.397371729,0.165334936,1.955790934,62.90495941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45957697,1.885474609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416963874,60.46663969,81.87654084,62.3521143,525.1350202,0,0.664022075,48.39265466,-0.664022075,131.6073453,0.974701299,0,593.726327,62.3521143,634.5345387,1,13,7% +1/28/2018 22:00,60.40458441,206.9597651,456.1287066,759.2583552,81.15204092,599.539354,517.3958557,82.14349832,78.70500747,3.43849086,113.0407192,0,113.0407192,2.447033453,110.5936858,1.054258881,3.61212932,1.286811692,-1.286811692,0.31009593,0.177914785,1.488316605,47.86937808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.65424687,1.772867407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078280314,46.01386701,76.73252718,47.78673442,517.3958557,0,0.681449012,47.04302205,-0.681449012,132.956978,0.976626939,0,582.0352579,47.78673442,613.3107198,1,14,5% +1/28/2018 23:00,67.02382608,221.0567688,337.7752197,684.3589184,70.6368733,510.661215,439.6080117,71.05320323,68.50691095,2.546292283,84.02747499,0,84.02747499,2.129962352,81.89751264,1.169786442,3.858168449,2.063991456,-2.063991456,0.177190363,0.209123906,0.889316841,28.60348661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.85144859,1.543150474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.644307024,27.49475932,66.49575562,29.03790979,439.6080117,0,0.642364701,50.03162387,-0.642364701,129.9683761,0.972162597,0,493.866222,29.03790979,512.8709532,1,15,4% +1/28/2018 0:00,75.66465903,233.023704,179.6459257,516.8193733,51.68316968,335.5209536,284.0419753,51.4789783,50.12473143,1.354246871,45.11567282,0,45.11567282,1.558438256,43.55723456,1.320597427,4.06703087,3.742560799,-3.742560799,0,0.287694639,0.389609564,12.53118286,0.098987001,1,0.261097197,0,0.930269723,0.969031686,0.724496596,1,48.38012792,1.129083212,0.016174064,0.312029739,0.955157187,0.679653782,0.961238037,0.922476074,0.275424756,12.04544961,48.65555267,13.17453282,255.9255121,0,0.549596223,56.66068344,-0.549596223,123.3393166,0.95902412,0,294.0942917,13.17453282,302.7167599,1,16,3% +1/28/2018 1:00,85.59890273,243.2872805,22.29144937,120.1306783,13.07284664,62.19447202,49.34777757,12.84669444,12.67865208,0.168042361,5.799014541,0,5.799014541,0.39419456,5.404819981,1.493982689,4.246164073,12.90383694,-12.90383694,0,0.586451173,0.09854864,3.16966302,0.626382253,1,0.077341747,0,0.953702005,0.992463968,0.724496596,1,12.27527014,0.285592617,0.082572689,0.312029739,0.792664414,0.51716101,0.961238037,0.922476074,0.067972097,3.046800659,12.34324224,3.332393276,18.43720546,0,0.410784142,65.74589713,-0.410784142,114.2541029,0.928281572,0,29.4581603,3.332393276,31.63914505,1,17,7% +1/28/2018 2:00,96.73681131,252.4334444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688375865,4.405794748,-8.458017615,8.458017615,0.023440112,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.229118145,76.7548412,-0.229118145,103.2451588,0.831771976,0,0,0,0,1,18,0% +1/28/2018 3:00,108.2477496,261.0758399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889279639,4.556633003,-2.976502639,2.976502639,0.960834381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024527587,88.59453184,-0.024527587,91.40546816,0,0,0,0,0,1,19,0% +1/28/2018 4:00,120.0349926,269.9032745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095005839,4.710700801,-1.626298515,1.626298515,0.808267115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.191935669,101.0657692,0.191935669,78.93423076,0,0.78949605,0,0,0,1,20,0% +1/28/2018 5:00,131.8158569,279.8841814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300620709,4.884900489,-0.969185189,0.969185189,0.695894118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.405518356,113.9236141,0.405518356,66.0763859,0,0.926701019,0,0,0,1,21,0% +1/28/2018 6:00,143.1704266,292.77548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498795336,5.109896094,-0.549708668,0.549708668,0.624159408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601662214,126.9890379,0.601662214,53.01096208,0,0.966896892,0,0,0,1,22,0% +1/28/2018 7:00,153.1839445,312.3339056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673564192,5.451255018,-0.234707244,0.234707244,0.570290992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766995719,140.0848682,0.766995719,39.91513177,0,0.984810588,0,0,0,1,23,0% +1/29/2018 8:00,159.4829138,344.8616066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783501947,6.018970498,0.03171526,-0.03171526,0.524730061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890244959,152.9040445,0.890244959,27.09595549,0,0.993835683,0,0,0,1,0,0% +1/29/2018 9:00,158.3924819,25.18332312,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764470319,0.439531905,0.280965391,-0.280965391,0.482105778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963001699,164.3657622,0.963001699,15.63423776,0,0.998079012,0,0,0,1,1,0% +1/29/2018 10:00,150.7378603,53.76595756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630871969,0.938392985,0.537964641,-0.537964641,0.438156318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980296383,168.6073096,0.980296383,11.39269036,0,0.998995017,0,0,0,1,2,0% +1/29/2018 11:00,140.2151062,70.99454764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447215264,1.239088607,0.832596567,-0.832596567,0.387771291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940937074,160.209526,0.940937074,19.79047404,0,0.996861484,0,0,0,1,3,0% +1/29/2018 12:00,128.6803389,82.85243261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245895597,1.446047742,1.217787944,-1.217787944,0.321899686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847591236,147.9506375,0.847591236,32.04936253,0,0.9910093,0,0,0,1,4,0% +1/29/2018 13:00,116.8542222,92.39391616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039490923,1.612578046,1.826074066,-1.826074066,0.217876633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706604731,134.9593341,0.706604731,45.04066593,0,0.979239081,0,0,0,1,5,0% +1/29/2018 14:00,105.0989093,101.085539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834322008,1.764275481,3.174190209,-3.174190209,0,#DIV/0!,0,0,0.012506414,1,0.305198107,0,0.923552545,0.962314508,0.724496596,1,0,0,0.002126226,0.312029739,0.993988403,0.718484999,0.961238037,0.922476074,0,0,0,0,0,0,-0.527570272,121.8414344,0.527570272,58.15856558,0,0.955225896,0,0,0,1,6,0% +1/29/2018 15:00,93.68589123,109.789488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635127265,1.91618805,11.92801912,-11.92801912,0,#DIV/0!,0,0,0.601539288,1,0.083640627,0,0.953025795,0.991787758,0.724496596,1,0,0,0.080030469,0.312029739,0.798240933,0.522737529,0.961238037,0.922476074,0,0,0,0,0,0,-0.322674598,108.8247506,0.322674598,71.17524939,0,0.895045131,0,0,0,1,7,0% +1/29/2018 16:00,82.78346332,119.1632668,58.98519752,258.3757406,26.52814755,26.17288136,0,26.17288136,25.72822602,0.444655334,41.92963053,26.82806496,15.10156557,0.799921527,14.30164404,1.444844001,2.079791354,-5.164210131,5.164210131,0.586714366,0.449742455,0.343534691,11.04925657,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.73094947,0.579540423,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.248889714,10.62096569,24.97983919,11.20050612,0,26.82806496,-0.103833529,95.95996535,0.103833529,84.04003465,0,0.568459977,24.97983919,26.45118729,42.29161225,1,8,69% +1/29/2018 17:00,73.07981377,129.8180392,226.81719,579.3033232,58.21716991,121.304666,63.13311483,58.17155122,56.46170744,1.709843786,56.74991618,0,56.74991618,1.755462471,54.99445371,1.275483367,2.265752213,-1.652644341,1.652644341,0.812772517,0.256670008,1.471881742,47.3407764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.27314082,1.271826585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066373312,45.50575497,55.33951413,46.77758155,63.13311483,0,0.108981102,83.74341607,-0.108981102,96.25658393,0.591204862,0,92.66411853,46.77758155,123.2791101,1,9,33% +1/29/2018 18:00,64.86345359,142.327099,376.9814951,712.59139,74.289092,292.3462976,217.45545,74.89084753,72.04900178,2.841845748,93.64361825,0,93.64361825,2.240090221,91.40352803,1.132080829,2.484076493,-0.64700448,0.64700448,0.640797972,0.197062967,2.02221023,65.0412323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.25624103,1.62293774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465084428,62.52010645,70.72132545,64.14304419,217.45545,0,0.30516149,72.23212023,-0.30516149,107.7678798,0.886152327,0,263.4199785,64.14304419,305.4003181,1,10,16% +1/29/2018 19:00,58.8659873,157.0330276,482.8959957,772.9818364,83.2322714,448.2107511,363.8479658,84.36278532,80.72251133,3.640273992,119.593485,0,119.593485,2.509760077,117.0837249,1.027405296,2.740743366,-0.085688974,0.085688974,0.544807367,0.172360658,2.268854163,72.97414903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.59354832,1.818312632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643777118,70.14552776,79.23732544,71.96384039,363.8479658,0,0.470707006,61.91980039,-0.470707006,118.0801996,0.943776809,0,422.6285977,71.96384039,469.727492,1,11,11% +1/29/2018 20:00,55.84506646,173.6218087,534.2236039,796.2933281,87.1585249,561.7397154,473.1821384,88.55757697,84.53037379,4.027203183,132.1568489,0,132.1568489,2.628151106,129.5286978,0.974680281,3.030272215,0.347132478,-0.347132478,0.47079054,0.163149895,2.243679767,72.16445391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25381056,1.90408653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.625538353,69.367218,82.87934891,71.27130453,473.1821384,0,0.594230947,53.54217255,-0.594230947,126.4578275,0.96585763,0,539.9059279,71.27130453,586.5515713,1,12,9% +1/29/2018 21:00,56.29633317,190.838225,526.6557469,793.0522943,86.59287668,617.1472614,529.195326,87.95193543,83.98178195,3.97015348,130.304878,0,130.304878,2.611094726,127.6937832,0.982556371,3.330755365,0.768528423,-0.768528423,0.398727589,0.164420264,1.97550453,63.53901644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.72648322,1.89172924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431246307,61.07611943,82.15772952,62.96784867,529.195326,0,0.66728932,48.14180364,-0.66728932,131.8581964,0.975069983,0,598.1602071,62.96784867,639.3714047,1,13,7% +1/29/2018 22:00,60.13970065,207.0329818,460.8121888,761.9010224,81.47161926,604.3200892,521.8313429,82.48874627,79.01494934,3.473796927,114.1859202,0,114.1859202,2.456669919,111.7292503,1.049635788,3.613407192,1.2745885,-1.2745885,0.312186219,0.176800053,1.506904384,48.46722495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95217478,1.779848993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.091747097,46.58854016,77.04392188,48.36838916,521.8313429,0,0.684906999,46.7717064,-0.684906999,133.2282936,0.976997388,0,586.8717809,48.36838916,618.5279242,1,14,5% +1/29/2018 23:00,66.77586806,221.179589,342.3449482,688.0428519,71.02970003,515.8910333,444.4223999,71.46863333,68.8878925,2.580740826,85.14730374,0,85.14730374,2.141807528,83.00549622,1.165458759,3.860312067,2.041800652,-2.041800652,0.180985214,0.207479913,0.905618939,29.12781811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.21766255,1.551732263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.656117838,27.9987667,66.87378039,29.55049896,444.4223999,0,0.645922559,49.7651189,-0.645922559,130.2348811,0.97259134,0,499.1151577,29.55049896,518.4553683,1,15,4% +1/29/2018 0:00,75.43658462,233.1772326,183.8223154,523.1610594,52.27273287,341.4695325,289.3872852,52.08224737,50.69651711,1.38573026,46.14606434,0,46.14606434,1.576215762,44.56984858,1.316616778,4.06971045,3.684407819,-3.684407819,0,0.284365545,0.39405394,12.67412928,0.090840619,1,0.265029323,0,0.929687301,0.968449264,0.724496596,1,48.91849408,1.141962954,0.014897662,0.312029739,0.958621678,0.683118274,0.961238037,0.922476074,0.279047396,12.18285514,49.19754148,13.3248181,263.099165,0,0.553151424,56.41651636,-0.553151424,123.5834836,0.959608838,0,301.6698255,13.3248181,310.3906524,1,16,3% +1/29/2018 1:00,85.39370473,243.460998,24.54304733,130.3212763,14.07714851,67.81192254,53.97423614,13.83768641,13.65267055,0.185015858,6.375223941,0,6.375223941,0.424477967,5.950745974,1.490401308,4.249196015,12.33102772,-12.33102772,0,0.573569709,0.106119492,3.413167637,0.61218909,1,0.08091916,0,0.953319096,0.992081059,0.724496596,1,13.22058275,0.307532842,0.081126053,0.312029739,0.795831364,0.52032796,0.961238037,0.922476074,0.073115071,3.280866559,13.29369782,3.588399401,20.93179763,0,0.414162888,65.5333894,-0.414162888,114.4666106,0.929274552,0,32.74508469,3.588399401,35.09362033,1,17,7% +1/29/2018 2:00,96.53941116,252.6240278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684930583,4.409121055,-8.714386598,8.714386598,0,#DIV/0!,0,0,1,0.019993664,0,0.114253017,0.961238037,1,0.452015149,0.727518553,0,0,0.115824807,0.003451528,0.724496596,0.448993192,0.999694259,0.960932296,0,0,0,0,0,0,0.232420171,76.56040071,-0.232420171,103.4395993,0.834872372,0,0,0,0,1,18,0% +1/29/2018 3:00,108.0596371,261.2850618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885996457,4.560284615,-3.007523517,3.007523517,0.955529498,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.027572311,88.4200227,-0.027572311,91.5799773,0,0,0,0,0,1,19,0% +1/29/2018 4:00,119.8503249,270.1367095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091782779,4.714775012,-1.636032438,1.636032438,0.809931714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189207641,100.9065466,0.189207641,79.09345336,0,0.785740059,0,0,0,1,20,0% +1/29/2018 5:00,131.6266969,280.1499328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297319245,4.889538727,-0.973037277,0.973037277,0.696552864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403144436,113.7749001,0.403144436,66.22509992,0,0.925974972,0,0,0,1,21,0% +1/29/2018 6:00,142.9647946,293.0775738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49520638,5.115168626,-0.551122225,0.551122225,0.624401141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599655278,126.8452127,0.599655278,53.15478729,0,0.966618761,0,0,0,1,22,0% +1/29/2018 7:00,152.9447457,312.6311165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669389386,5.456442328,-0.234796505,0.234796505,0.570306257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765343249,139.9375386,0.765343249,40.06246137,0,0.984669836,0,0,0,1,23,0% +1/30/2018 8:00,159.2089649,344.9184764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778720637,6.019963064,0.032553542,-0.032553542,0.524586706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888909928,152.7365869,0.888909928,27.26341306,0,0.993751331,0,0,0,1,0,0% +1/30/2018 9:00,158.1515487,24.82587067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760265242,0.433293183,0.282653431,-0.282653431,0.481817106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96192514,164.1384916,0.96192514,15.86150844,0,0.998020903,0,0,0,1,1,0% +1/30/2018 10:00,150.5612474,53.33569062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627789492,0.93088341,0.540660002,-0.540660002,0.437695384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979401469,168.3505863,0.979401469,11.64941371,0,0.998948412,0,0,0,1,2,0% +1/30/2018 11:00,140.0763282,70.6235687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444793131,1.232613803,0.836782455,-0.836782455,0.387055462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940134419,160.0741427,0.940134419,19.92585733,0,0.996816116,0,0,0,1,3,0% +1/30/2018 12:00,128.5572933,82.53697668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243748045,1.440541998,1.224680754,-1.224680754,0.320720946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846785056,147.8636972,0.846785056,32.13630277,0,0.990953138,0,0,0,1,4,0% +1/30/2018 13:00,116.7335833,92.1162216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037385376,1.607731361,1.839298727,-1.839298727,0.215615082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70569944,134.8860785,0.70569944,45.11392153,0,0.979148307,0,0,0,1,5,0% +1/30/2018 14:00,104.9717649,100.8320286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832102919,1.759850891,3.210941756,-3.210941756,0,#DIV/0!,0,0,0.018597277,1,0.301914426,0,0.924066566,0.962828529,0.724496596,1,0,0,0.003152763,0.312029739,0.991098632,0.715595228,0.961238037,0.922476074,0,0,0,0,0,0,-0.526477059,121.7677314,0.526477059,58.23226857,0,0.9550291,0,0,0,1,6,0% +1/30/2018 15:00,93.54519084,109.5514812,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632671579,1.912034048,12.44550052,-12.44550052,0,#DIV/0!,0,0,0.615111085,1,0.080178072,0,0.953398665,0.992160628,0.724496596,1,0,0,0.081425129,0.312029739,0.795175261,0.519671857,0.961238037,0.922476074,0,0,0,0,0,0,-0.321317532,108.7426224,0.321317532,71.25737764,0,0.894390688,0,0,0,1,7,0% +1/30/2018 16:00,82.62511545,118.9367064,61.38112005,266.0854434,27.22615632,26.86790406,0,26.86790406,26.40518725,0.46271681,42.89535009,27.19181782,15.70353227,0.820969067,14.8825632,1.442080309,2.075837129,-5.075208088,5.075208088,0.601934612,0.443559132,0.360225106,11.58607768,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38167035,0.594789294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.260981863,11.13697856,25.64265222,11.73176786,0,27.19181782,-0.102192053,95.86541269,0.102192053,84.13458731,0,0.560725165,25.64265222,26.9789044,43.29980557,1,8,69% +1/30/2018 17:00,72.89397406,129.6046038,230.2754553,583.5960369,58.61602284,123.3678789,64.7834318,58.58444713,56.84853348,1.735913651,57.60043954,0,57.60043954,1.767489359,55.83295018,1.272239852,2.262027062,-1.644047912,1.644047912,0.811302441,0.254547419,1.491731214,47.97920364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64497272,1.280540024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080754187,46.11943552,55.72572691,47.39997554,64.7834318,0,0.11100732,83.62661362,-0.11100732,96.37338638,0.599579251,0,94.56852846,47.39997554,125.5908644,1,9,33% +1/30/2018 18:00,64.64713258,142.1369194,380.9359607,715.4337899,74.59301559,295.2547232,220.0393061,75.21541713,72.34376095,2.87165618,94.61158864,0,94.61158864,2.249254639,92.362334,1.128305315,2.480757233,-0.64737392,0.64737392,0.64086115,0.195815106,2.042281563,65.68679536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.53957475,1.629577329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.47962604,63.14064622,71.01920079,64.77022355,220.0393061,0,0.307560684,72.08771266,-0.307560684,107.9122873,0.887430457,0,266.2887827,64.77022355,308.6795986,1,10,16% +1/30/2018 19:00,58.61921882,156.8868067,487.2067176,775.2632745,83.50907114,451.7215562,367.0578216,84.66373457,80.99096453,3.672770034,120.647016,0,120.647016,2.518106611,118.1289094,1.023098373,2.73819133,-0.089039147,0.089039147,0.54538028,0.171403776,2.289251581,73.63020011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85159575,1.824359667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658554978,70.77614901,79.51015073,72.60050868,367.0578216,0,0.473462156,61.74073168,-0.473462156,118.2592683,0.944394939,0,426.1576997,72.60050868,473.6732806,1,11,11% +1/30/2018 20:00,55.57556477,173.5452417,538.7881543,798.4065541,87.43388524,565.7495501,476.8905064,88.8590437,84.79743101,4.061612692,133.2718801,0,133.2718801,2.636454237,130.6354259,0.969976589,3.028935868,0.341746847,-0.341746847,0.471711537,0.162278782,2.264111654,72.82161363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51051611,1.91010212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640341186,69.99890492,83.1508573,71.90900704,476.8905064,0,0.597302845,53.3230286,-0.597302845,126.6769714,0.96629037,0,543.9655613,71.90900704,591.0285682,1,12,9% +1/30/2018 21:00,56.01937667,190.8446895,531.3669098,795.2673423,86.88204971,621.5881257,533.3202222,88.26790357,84.26223535,4.005668216,131.4558736,0,131.4558736,2.619814359,128.8360592,0.977722568,3.330868192,0.760682593,-0.760682593,0.400069305,0.1635067,1.995471661,64.18122801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.99606569,1.898046585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445712426,61.69343761,82.44177812,63.5914842,533.3202222,0,0.670617532,47.8852559,-0.670617532,132.1147441,0.975441854,0,602.6646443,63.5914842,644.2839989,1,13,7% +1/30/2018 22:00,59.8711788,207.1122469,465.5489094,764.5369172,81.79276418,609.1534482,526.3175333,82.83591489,79.32641056,3.509504328,115.3440767,0,115.3440767,2.466353623,112.877723,1.044949197,3.614790629,1.262489688,-1.262489688,0.314255238,0.175691023,1.525702386,49.07183331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25156315,1.786864804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105366185,47.16971272,77.35692934,48.95657752,526.3175333,0,0.688413498,46.4953457,-0.688413498,133.5046543,0.977369234,0,591.7634934,48.95657752,623.8045943,1,14,5% +1/30/2018 23:00,66.52532499,221.3088643,346.9573344,691.7022983,71.4220917,521.1558913,449.2719283,71.88396306,69.26845212,2.615510942,86.27746224,0,86.27746224,2.153639584,84.12382265,1.161085957,3.862568346,2.019909968,-2.019909968,0.184728741,0.205852664,0.922110158,29.6582324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58347093,1.560304548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.66806567,28.50862109,67.2515366,30.06892564,449.2719283,0,0.649516316,49.49485593,-0.649516316,130.5051441,0.97301964,0,504.4019464,30.06892564,524.0814568,1,15,4% +1/30/2018 0:00,75.20675738,233.3371123,188.0382748,529.4332334,52.85717112,347.4326336,294.7517893,52.68084433,51.26333239,1.417511943,47.18589548,0,47.18589548,1.593838731,45.59205675,1.312605536,4.072500876,3.627648654,-3.627648654,0,0.281097937,0.398459683,12.8158331,0.082746171,1,0.268980312,0,0.929098803,0.967860766,0.724496596,1,49.45134594,1.154730735,0.013620034,0.312029739,0.96210228,0.686598876,0.961238037,0.922476074,0.282665597,12.31906625,49.73401153,13.47379698,270.3622073,0,0.556730803,56.16998885,-0.556730803,123.8300111,0.960189988,0,309.3330962,13.47379698,318.1514268,1,16,3% +1/30/2018 1:00,85.18702256,243.6408313,26.89730479,140.7090662,15.0913152,73.59359415,58.75457454,14.83901961,14.63625637,0.202763245,6.976621786,0,6.976621786,0.455058834,6.521562951,1.486794024,4.252334699,11.80334717,-11.80334717,0,0.561071651,0.113764709,3.659064092,0.598125263,1,0.084519895,0,0.952930663,0.991692626,0.724496596,1,14.17533309,0.329688576,0.079677403,0.312029739,0.799019491,0.523516087,0.961238037,0.922476074,0.078304435,3.517231584,14.25363752,3.846920161,23.61197917,0,0.417560688,65.31932093,-0.417560688,114.6806791,0.930256927,0,36.2188447,3.846920161,38.73657701,1,17,7% +1/30/2018 2:00,96.34122248,252.820564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681471538,4.412551258,-8.987623738,8.987623738,0,#DIV/0!,0,0,1,0.062905179,0,0.110808356,0.961238037,1,0.458707584,0.734210988,0,0,0.115824807,0.011084592,0.724496596,0.448993192,0.999007883,0.96024592,0,0,0,0,0,0,0.235727278,76.36550282,-0.235727278,103.6344972,0.837890479,0,0,0,0,1,18,0% +1/30/2018 3:00,107.8708704,261.500234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882701856,4.564040078,-3.039184815,3.039184815,0.950115097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030616638,88.24552171,-0.030616638,91.75447829,0,0,0,0,0,1,19,0% +1/30/2018 4:00,119.6649179,270.3762922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088546817,4.718956518,-1.645823711,1.645823711,0.81160612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.186482328,100.7475676,0.186482328,79.2524324,0,0.781878078,0,0,0,1,20,0% +1/30/2018 5:00,131.4364552,280.4222348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293998901,4.894291293,-0.976853243,0.976853243,0.697205433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.400772228,113.626463,0.400772228,66.37353695,0,0.925240856,0,0,0,1,21,0% +1/30/2018 6:00,142.7573999,293.3867323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49158666,5.12056446,-0.552473072,0.552473072,0.624632149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597645806,126.7014763,0.597645806,53.29852369,0,0.966338407,0,0,0,1,22,0% +1/30/2018 7:00,152.7026914,312.9358478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665164742,5.461760891,-0.234809673,0.234809673,0.570308509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763681042,139.789794,0.763681042,40.21020598,0,0.98452764,0,0,0,1,23,0% +1/31/2018 8:00,158.9305852,344.9855893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773861994,6.021134405,0.033480632,-0.033480632,0.524428164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887555506,152.5676621,0.887555506,27.4323379,0,0.993665495,0,0,0,1,0,0% +1/31/2018 9:00,157.9038938,24.4789671,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755942848,0.427238573,0.284447937,-0.284447937,0.481510228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960817749,163.907976,0.960817749,16.092024,0,0.997960995,0,0,0,1,1,0% +1/31/2018 10:00,150.377283,52.90795863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624578709,0.923418079,0.543490587,-0.543490587,0.437211325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978463287,168.087309,0.978463287,11.912691,0,0.998899462,0,0,0,1,2,0% +1/31/2018 11:00,139.9306643,70.25152497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442250817,1.226120415,0.841155802,-0.841155802,0.386307576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93927592,159.9303101,0.93927592,20.06968991,0,0.996767506,0,0,0,1,3,0% +1/31/2018 12:00,128.4278503,82.21947444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241488839,1.435000538,1.231870706,-1.231870706,0.319491392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845911185,147.7696936,0.845911185,32.23030641,0,0.99089214,0,0,0,1,4,0% +1/31/2018 13:00,116.6068847,91.83630222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035174069,1.602845847,1.853116898,-1.853116898,0.213252036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704716157,134.8066173,0.704716157,45.19338267,0,0.979049448,0,0,0,1,5,0% +1/31/2018 14:00,104.8387648,100.5763569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82978163,1.755388578,3.249668547,-3.249668547,0,#DIV/0!,0,0,0.024934722,1,0.2985276,0,0.924594417,0.96335638,0.724496596,1,0,0,0.004214686,0.312029739,0.988117895,0.712614491,0.961238037,0.922476074,0,0,0,0,0,0,-0.525297808,121.6882937,0.525297808,58.31170628,0,0.954815898,0,0,0,1,6,0% +1/31/2018 15:00,93.39873612,109.31147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.630115462,1.907845062,13.02793227,-13.02793227,0,#DIV/0!,0,0,0.629321272,1,0.076607934,0,0.953780177,0.992542141,0.724496596,1,0,0,0.082870344,0.312029739,0.792014868,0.516511464,0.961238037,0.922476074,0,0,0,0,0,0,-0.319869196,108.6550146,0.319869196,71.34498538,0,0.893686105,0,0,0,1,7,0% +1/31/2018 16:00,82.46103476,118.7083855,63.88933283,273.9959466,27.94095074,27.58005276,0,27.58005276,27.09842798,0.481624778,43.85810933,27.52487815,16.33323119,0.842522756,15.49070843,1.439216561,2.071852177,-4.986169543,4.986169543,0.6171611,0.437333581,0.377877699,12.15384574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.04803971,0.610404869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.273771106,11.68273882,26.32181082,12.29314369,0,27.52487815,-0.100457246,95.76550132,0.100457246,84.23449868,0,0.552275823,26.32181082,27.49446841,44.31639051,1,8,68% +1/31/2018 17:00,72.70237706,129.389818,233.8413255,587.9500321,59.02304797,125.5182177,66.51213775,59.00607999,57.2432853,1.762794686,58.47729935,0,58.47729935,1.779762668,56.69753668,1.268895854,2.258278343,-1.635073821,1.635073821,0.809767781,0.252406404,1.512096392,48.63421776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02442319,1.289431995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095508689,46.74906,56.11993188,48.038492,66.51213775,0,0.113125494,83.50448181,-0.113125494,96.49551819,0.608012979,0,96.56017491,48.038492,128.0004072,1,9,33% +1/31/2018 18:00,64.4250128,141.9461421,384.9901558,718.3063355,74.90305185,298.2556724,222.7090055,75.54666689,72.64444847,2.902218415,95.60392391,0,95.60392391,2.258603376,93.34532053,1.124428594,2.47742754,-0.647559164,0.647559164,0.640892829,0.194558356,2.062781137,66.34613212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82860704,1.636350457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.494477912,63.77442579,71.32308495,65.41077625,222.7090055,0,0.310047391,71.93791347,-0.310047391,108.0620865,0.888734331,0,269.2522239,65.41077625,312.0622688,1,10,16% +1/31/2018 19:00,58.36671453,156.7413299,491.606391,777.5610234,83.7907028,455.3203582,370.3503176,84.97004059,81.26410396,3.705936631,121.72226,0,121.72226,2.526598844,119.1956611,1.018691342,2.735652281,-0.092278221,0.092278221,0.545934195,0.170442664,2.310008065,74.29779998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.11414776,1.830512262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67359298,71.41787139,79.78774074,73.24838365,370.3503176,0,0.476297431,61.55614073,-0.476297431,118.4438593,0.945023578,0,429.7775231,73.24838365,477.7171252,1,11,11% +1/31/2018 20:00,55.30068366,173.4713992,543.4291582,800.5276967,87.71298563,569.8376125,480.6728985,89.16471403,85.06811549,4.09659854,134.4055611,0,134.4055611,2.644870143,131.760691,0.965179008,3.027647074,0.33644547,-0.33644547,0.472618126,0.161406476,2.284840867,73.48833637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.77070833,1.916199415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65535943,70.63978418,83.42606776,72.55598359,480.6728985,0,0.600445057,53.09822084,-0.600445057,126.9017792,0.966728434,0,548.1062264,72.55598359,595.5926665,1,12,9% +1/31/2018 21:00,55.73782212,190.8559259,536.1414058,797.4831502,87.17386202,626.0941463,537.5072375,88.58690883,84.54524844,4.041660384,132.6223046,0,132.6223046,2.628613577,129.9936911,0.972808514,3.331064304,0.75292266,-0.75292266,0.401396332,0.162594907,2.015682084,64.83126468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.26810864,1.904421589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460354808,62.31827759,82.72846344,64.22269918,537.5072375,0,0.674004507,47.62310791,-0.674004507,132.3768921,0.97581652,0,607.2369053,64.22269918,649.2693774,1,13,7% +1/31/2018 22:00,59.59912678,207.1975747,470.3363965,767.1643414,82.11525259,614.036618,530.8518488,83.18476918,79.63917475,3.545594428,116.5145825,0,116.5145825,2.476077838,114.0385047,1.040200994,3.616279881,1.250519588,-1.250519588,0.316302245,0.174588344,1.544701693,49.68291633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55220399,1.793909965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.119131118,47.75710895,77.67133511,49.55101892,530.8518488,0,0.691966271,46.21404147,-0.691966271,133.7859585,0.977742143,0,596.7075593,49.55101892,629.1377101,1,14,5% +1/31/2018 23:00,66.27230057,221.4445797,351.6101279,695.3354064,71.81383333,526.4529812,454.1540143,72.29896695,69.64838129,2.650585665,87.41739835,0,87.41739835,2.16545204,85.25194631,1.156669848,3.864937026,1.998323476,-1.998323476,0.188420249,0.204242789,0.938783267,30.19449693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.9486733,1.568862631,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680145281,29.02409895,67.62881858,30.59296158,454.1540143,0,0.653143807,49.22094705,-0.653143807,130.779053,0.97344718,0,509.7237632,30.59296158,529.7462447,1,15,4% +1/31/2018 0:00,74.97526956,233.5032985,192.2917321,535.6334684,53.43628571,353.4073282,300.1327674,53.27456084,51.82498454,1.449576301,48.23465789,0,48.23465789,1.611301173,46.62335672,1.308565311,4.075401373,3.572256728,-3.572256728,0,0.277891749,0.402825293,12.95624613,0.07470652,1,0.272948509,0,0.928504441,0.967266404,0.724496596,1,49.97849314,1.167382215,0.012341717,0.312029739,0.965597547,0.690094142,0.961238037,0.922476074,0.286278285,12.4540366,50.26477142,13.62141881,277.7108927,0,0.560332364,55.92121398,-0.560332364,124.078786,0.960767246,0,317.080301,13.62141881,325.9952472,1,16,3% +1/31/2018 1:00,84.97895572,243.8267124,29.35054478,151.2582967,16.11217193,79.52361222,63.67602492,15.84758731,15.6263305,0.221256804,7.602220823,0,7.602220823,0.485841431,7.116379392,1.483162572,4.255578935,11.31590061,-11.31590061,0,0.548956486,0.121460358,3.906582626,0.584196003,1,0.088142253,0,0.952536837,0.9912988,0.724496596,1,15.13651093,0.351990463,0.078227471,0.312029739,0.802227232,0.526723828,0.961238037,0.922476074,0.083524865,3.755155814,15.22003579,4.107146277,26.4767457,0,0.42097542,65.10381487,-0.42097542,114.8961851,0.93122822,0,39.87592855,4.107146277,42.56397365,1,17,7% +1/31/2018 2:00,96.14230362,253.0229651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677999749,4.416083825,-9.279368127,9.279368127,0,#DIV/0!,0,0,1,0.104760159,0,0.107351661,0.961238037,1,0.465519499,0.741022903,0,0,0.115824807,0.018840262,0.724496596,0.448993192,0.998296086,0.959534123,0,0,0,0,0,0,0.239038064,76.17022691,-0.239038064,103.8297731,0.840828293,0,0,0,0,1,18,0% +1/31/2018 3:00,107.6814903,261.7212485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879396549,4.567897508,-3.071500201,3.071500201,0.944588841,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03365954,88.07108607,-0.03365954,91.92891393,0,0,0,0,0,1,19,0% +1/31/2018 4:00,119.4787959,270.6218878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085298375,4.723242971,-1.655671309,1.655671309,0.813290159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.183760358,100.5888671,0.183760358,79.41113287,0,0.777906494,0,0,0,1,20,0% +1/31/2018 5:00,131.2451417,280.7009093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290659851,4.89915508,-0.980632086,0.980632086,0.697851653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398401971,113.4783159,0.398401971,66.5216841,0,0.924498613,0,0,0,1,21,0% +1/31/2018 6:00,142.5482455,293.7026973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.487936226,5.126079089,-0.553760707,0.553760707,0.624852348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595633678,126.5578188,0.595633678,53.44218122,0,0.966055788,0,0,0,1,22,0% +1/31/2018 7:00,152.4578011,313.2477036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660890599,5.467203801,-0.23474658,0.23474658,0.570297719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762008681,139.6416002,0.762008681,40.35839978,0,0.98438395,0,0,0,1,23,0% +2/1/2018 8:00,158.6478637,345.0624562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768927573,6.022475986,0.0344965,-0.0344965,0.524254441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886181055,152.3972146,0.886181055,27.60278544,0,0.993578121,0,0,0,2,0,0% +2/1/2018 9:00,157.649661,24.14263751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.751505649,0.421368515,0.286348801,-0.286348801,0.481185161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.959678764,163.6741903,0.959678764,16.32580975,0,0.997899233,0,0,0,2,1,0% +2/1/2018 10:00,150.1860531,52.48311328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621241118,0.916003128,0.546456378,-0.546456378,0.436704145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97748105,167.817678,0.97748105,12.18232202,0,0.998848113,0,0,0,2,2,0% +2/1/2018 11:00,139.7781655,69.87869381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43958921,1.219613284,0.845717065,-0.845717065,0.385527554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938360872,159.7780834,0.938360872,20.22191657,0,0.996715596,0,0,0,2,3,0% +2/1/2018 12:00,128.2920548,81.90012069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23911876,1.429426764,1.239360031,-1.239360031,0.318210642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844969097,147.668625,0.844969097,32.33137498,0,0.990826238,0,0,0,2,4,0% +2/1/2018 13:00,116.4741764,91.55429998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.032857871,1.597923979,1.867538854,-1.867538854,0.210785736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703654621,134.7209552,0.703654621,45.27904483,0,0.978942412,0,0,0,2,5,0% +2/1/2018 14:00,104.6999681,100.318631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82735917,1.750890413,3.290450021,-3.290450021,0,#DIV/0!,0,0,0.031520524,1,0.295039894,0,0.925135526,0.963897489,0.724496596,1,0,0,0.005311613,0.312029739,0.985048147,0.709544743,0.961238037,0.922476074,0,0,0,0,0,0,-0.524032595,121.6031408,0.524032595,58.39685917,0,0.954586088,0,0,0,2,6,0% +2/1/2018 15:00,93.24659662,109.0695356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627460127,1.903622511,13.68687793,-13.68687793,0,#DIV/0!,0,0,0.644183865,1,0.072933089,0,0.954169754,0.992931717,0.724496596,1,0,0,0.084365696,0.312029739,0.788762425,0.513259021,0.961238037,0.922476074,0,0,0,0,0,0,-0.318330043,108.561963,0.318330043,71.43803701,0,0.892930314,0,0,0,2,7,0% +2/1/2018 16:00,82.29129608,118.4783628,66.51026786,282.0930354,28.67123163,28.30807071,0,28.30807071,27.80668821,0.501382493,44.81352724,27.82279935,16.99072789,0.864543419,16.12618447,1.436254062,2.067837524,-4.897331942,4.897331942,0.632353224,0.43107978,0.396512486,12.75320456,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.72884639,0.626358764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.287271946,12.25886531,27.01611833,12.88522408,0,27.82279935,-0.09862987,95.66027775,0.09862987,84.33972225,0,0.543054182,27.01611833,27.99451163,45.3379663,2,8,68% +2/1/2018 17:00,72.50511092,129.173719,237.5131252,592.3590757,59.43771066,127.7553,68.31938139,59.43591865,57.64544439,1.790474264,59.38007331,0,59.38007331,1.792266278,57.58780703,1.26545291,2.254506704,-1.62574757,1.62574757,0.808172898,0.250250215,1.532964086,49.30539454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.4109938,1.298490818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110627262,47.39422065,56.52162106,48.69271147,68.31938139,0,0.115334405,83.37708663,-0.115334405,96.62291337,0.616478016,0,98.63901774,48.69271147,130.5074235,2,9,32% +2/1/2018 18:00,64.1971889,141.7547847,389.1418598,721.2056717,75.21886556,301.3475925,225.4633375,75.88425495,72.95073924,2.933515714,96.62007557,0,96.62007557,2.268126325,94.35194925,1.120452317,2.474087723,-0.647565306,0.647565306,0.640893879,0.193294203,2.083696776,67.01885099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.12302537,1.643249801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.509631221,64.42106876,71.63265659,66.06431856,225.4633375,0,0.312620028,71.78280329,-0.312620028,108.2171967,0.890061431,0,272.3088774,66.06431856,315.5466526,2,10,16% +2/1/2018 19:00,58.10857163,156.5966056,496.0925304,779.8728081,84.07689772,459.0050147,373.7235906,85.28142409,81.54166904,3.739755044,122.8186062,0,122.8186062,2.535228677,120.2833775,1.014185899,2.733126365,-0.095406497,0.095406497,0.546469162,0.169478258,2.3311119,74.97657186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.38095387,1.836764546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.688882636,72.07033274,80.06983651,73.90709729,373.7235906,0,0.479210952,61.36611929,-0.479210952,118.6338807,0.945661817,0,433.4859663,73.90709729,481.8566833,2,11,11% +2/1/2018 20:00,55.02052215,173.4002967,548.1440191,802.6549473,87.99558579,574.0014024,484.527067,89.47433536,85.34219421,4.132141153,135.5572552,0,135.5572552,2.653391581,132.9038636,0.960289268,3.026406102,0.331229945,-0.331229945,0.473510033,0.160533697,2.305856305,74.1642651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.03416322,1.922373168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.670585044,71.28951259,83.70474826,73.21188576,484.527067,0,0.603655492,52.86784596,-0.603655492,127.132154,0.967171299,0,552.3254213,73.21188576,600.2411363,2,12,9% +2/1/2018 21:00,55.45177284,190.8719586,540.9766575,799.6980977,87.46808858,630.6626196,541.753906,88.90871354,84.83060299,4.078110553,133.8035394,0,133.8035394,2.637485594,131.1660538,0.967816012,3.331344128,0.745251413,-0.745251413,0.402708192,0.161685513,2.036125663,65.48880045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.54240228,1.910849334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475166111,62.95032598,83.01756839,64.86117531,541.753906,0,0.677448036,47.35545597,-0.677448036,132.644544,0.976193601,0,611.8742648,64.86117531,654.3246068,2,13,7% +2/1/2018 22:00,59.32365074,207.2889776,475.172209,769.7816958,82.43887005,618.9668223,535.4317395,83.53508277,79.95303395,3.582048825,117.6968395,0,117.6968395,2.485836099,115.2110034,1.03539303,3.617875162,1.238681943,-1.238681943,0.318326602,0.173492617,1.563893515,50.30019129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85389739,1.800979792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.133035528,48.35045713,77.98693292,50.15143692,535.4317395,0,0.695563096,45.92789432,-0.695563096,134.0721057,0.978115795,0,601.7011746,50.15143692,634.5242871,2,14,5% +2/1/2018 23:00,66.01689626,221.5867185,356.3011186,698.9404763,72.20472274,531.7795617,459.0661294,72.71343228,70.02748394,2.685948334,88.56657012,0,88.56657012,2.177238798,86.38933132,1.152212202,3.867417816,1.977044217,-1.977044217,0.192059216,0.202650845,0.955631137,30.73638234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.31308119,1.577402097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692351506,29.54497982,68.00543269,31.12238192,459.0661294,0,0.656802897,48.94350309,-0.656802897,131.0564969,0.973873661,0,515.0778448,31.12238192,535.4468213,2,15,4% +2/1/2018 0:00,74.74221063,233.675745,196.5806568,541.7596449,54.00990195,359.3908117,305.5275995,53.86321215,52.38130413,1.481908027,49.291854,0,49.291854,1.628597819,47.66325618,1.304497666,4.078411132,3.51820407,-3.51820407,0,0.274746777,0.407149455,13.09532603,0.066724217,1,0.276932343,0,0.927904419,0.966666382,0.724496596,1,50.49976876,1.179913576,0.011063214,0.312029739,0.969106112,0.693602708,0.961238037,0.922476074,0.28988449,12.58772549,50.78965325,13.76763906,285.1415097,0,0.563954149,55.67030297,-0.563954149,124.329697,0.96134031,0,324.9076806,13.76763906,333.918325,2,16,3% +2/1/2018 1:00,84.76959875,244.0185715,31.89897151,161.9350851,17.13680955,85.58660504,68.7260656,16.86053943,16.62007151,0.240467921,8.251012992,0,8.251012992,0.516738036,7.734274956,1.479508604,4.258927508,10.8644565,-10.8644565,0,0.537221382,0.129184509,4.155017878,0.570405731,1,0.091784645,0,0.952137743,0.990899707,0.724496596,1,16.10135344,0.374374948,0.076776933,0.312029739,0.805453118,0.529949714,0.961238037,0.922476074,0.088762474,3.993961228,16.19011591,4.368336176,29.52432392,0,0.424405036,64.88699007,-0.424405036,115.1130099,0.932188014,0,43.7123368,4.368336176,46.57132546,2,17,7% +2/1/2018 2:00,95.94270954,253.2311424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674516175,4.419717204,-9.591486005,9.591486005,0,#DIV/0!,0,0,1,0.145587162,0,0.103883812,0.961238037,1,0.472450048,0.747953452,0,0,0.115824807,0.026718594,0.724496596,0.448993192,0.99755822,0.958796257,0,0,0,0,0,0,0.242351184,75.97464918,-0.242351184,104.0253508,0.843687825,0,0,0,0,2,18,0% +2/1/2018 3:00,107.4915342,261.9479968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876081189,4.571855014,-3.10448446,3.10448446,0.9389482,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036700053,87.89676951,-0.036700053,92.10323049,0,0,0,0,0,2,19,0% +2/1/2018 4:00,119.2919798,270.873362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082037819,4.727632024,-1.665574413,1.665574413,0.814983689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1810423,100.4304767,0.1810423,79.56952331,0,0.773821449,0,0,0,2,20,0% +2/1/2018 5:00,131.0527633,280.9857789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.287302213,4.904126993,-0.984372921,0.984372921,0.698491373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.396033847,113.3304681,0.396033847,66.66953195,0,0.923748165,0,0,0,2,21,0% +2/1/2018 6:00,142.3373314,294.0252126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484255081,5.131708044,-0.554984699,0.554984699,0.625061663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593618729,126.414227,0.593618729,53.58577304,0,0.965770852,0,0,0,2,22,0% +2/1/2018 7:00,152.2100918,313.566295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656567257,5.472764271,-0.23460711,0.23460711,0.570273868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760325711,139.4929203,0.760325711,40.50707969,0,0.984238709,0,0,0,2,23,0% +2/2/2018 8:00,158.3608865,345.148595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.763918875,6.023979391,0.035601087,-0.035601087,0.524065545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884785915,152.2251875,0.884785915,27.77481255,0,0.993489155,0,0,0,2,0,0% +2/2/2018 9:00,157.3889941,23.81687197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746956154,0.415682833,0.288355904,-0.288355904,0.480841926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958507412,163.4371101,0.958507412,16.56288987,0,0.997835562,0,0,0,2,1,0% +2/2/2018 10:00,149.9876484,52.06148291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617778303,0.90864429,0.549557364,-0.549557364,0.436173845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976453977,167.5418867,0.976453977,12.45811333,0,0.99879431,0,0,0,2,2,0% +2/2/2018 11:00,139.6188876,69.50534298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436809286,1.213097083,0.850466751,-0.850466751,0.384715309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937388588,159.617529,0.937388588,20.38247096,0,0.996660328,0,0,0,2,3,0% +2/2/2018 12:00,128.1499556,81.57910501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236638661,1.423823983,1.247151133,-1.247151133,0.316878285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843958298,147.5604973,0.843958298,32.43950274,0,0.990755367,0,0,0,2,4,0% +2/2/2018 13:00,116.3355115,91.27035309,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030437712,1.592968171,1.88257558,-1.88257558,0.208214305,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702514614,134.6291017,0.702514614,45.37089834,0,0.978827103,0,0,0,2,5,0% +2/2/2018 14:00,104.5554366,100.0589549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824836619,1.746358209,3.333372273,-3.333372273,0,#DIV/0!,0,0,0.038356628,1,0.291453579,0,0.925689319,0.964451282,0.724496596,1,0,0,0.006443162,0.312029739,0.981891348,0.706387944,0.961238037,0.922476074,0,0,0,0,0,0,-0.522681539,121.5122964,0.522681539,58.48770364,0,0.954339457,0,0,0,2,6,0% +2/2/2018 15:00,93.08884432,108.8257563,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62470683,1.899367759,14.43691444,-14.43691444,0,#DIV/0!,0,0,0.659713952,1,0.069156418,0,0.954566816,0.993328779,0.724496596,1,0,0,0.085910775,0.312029739,0.785420619,0.509917214,0.961238037,0.922476074,0,0,0,0,0,0,-0.316700575,108.4635065,0.316700575,71.5364935,0,0.892122168,0,0,0,2,7,0% +2/2/2018 16:00,82.11597672,118.2466942,69.24417885,290.3621024,29.41569107,29.05069132,0,29.05069132,28.52869945,0.521991869,45.75717999,28.08113553,17.67604446,0.886991618,16.78905284,1.433194162,2.063794144,-4.808910132,4.808910132,0.647474244,0.424811032,0.416148138,13.38475463,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.42287105,0.642622408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.30149791,12.86593527,27.72436896,13.50855767,0,28.08113553,-0.096710746,95.54979179,0.096710746,84.45020821,0,0.532994372,27.72436896,28.47564486,46.36110901,2,8,67% +2/2/2018 17:00,72.30226534,128.9563408,241.2891197,596.8170474,59.85948588,130.0786918,70.20525102,59.87344083,58.05450152,1.818939305,60.30832498,0,60.30832498,1.804984357,58.50334063,1.261912587,2.250712739,-1.616094318,1.616094318,0.806522095,0.248081994,1.554320887,49.99230267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.80419507,1.307705022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.126100191,48.05450287,56.93029526,49.3622079,70.20525102,0,0.117632784,83.24449656,-0.117632784,96.75550344,0.624948427,0,100.8049565,49.3622079,133.1115343,2,9,32% +2/2/2018 18:00,63.96375661,141.5628619,393.3888139,724.1285202,75.54012646,304.5288913,228.3010473,76.22784398,73.26231293,2.965531047,97.65948594,0,97.65948594,2.277813526,95.38167242,1.116378155,2.470738038,-0.647397623,0.647397623,0.640865204,0.192024084,2.105016182,67.70455637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42252186,1.650268146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.525077058,65.08019485,71.94759891,66.730463,228.3010473,0,0.315276972,71.62246485,-0.315276972,108.3775352,0.891409286,0,275.4572725,66.730463,319.131026,2,10,16% +2/2/2018 19:00,57.84488789,156.452639,500.6626253,782.1964164,84.3673911,462.7733545,377.1757452,85.59760933,81.82340298,3.77420635,123.9354381,0,123.9354381,2.543988124,121.39145,1.009583749,2.730613673,-0.098424505,0.098424505,0.546985271,0.168511462,2.352551307,75.66613687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65176725,1.843110736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.704415413,72.73316886,80.35618266,74.5762796,377.1757452,0,0.48220081,61.17076073,-0.48220081,118.8292393,0.94630876,0,437.2808943,74.5762796,486.0895778,2,11,11% +2/2/2018 20:00,54.73517934,173.3319478,552.9301282,804.7865582,88.28144953,578.2384032,488.4507442,89.78765897,85.6194381,4.168220865,136.7263226,0,136.7263226,2.662011427,134.0643112,0.955309096,3.025213187,0.326101611,-0.326101611,0.47438703,0.159661131,2.327146849,74.84904217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.3006606,1.928618217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.68600997,71.94774636,83.98667057,73.87636458,488.4507442,0,0.606932036,52.63200175,-0.606932036,127.3679982,0.967618453,0,556.6206241,73.87636458,604.9712272,2,12,9% +2/2/2018 21:00,55.161332,190.8928114,545.8700861,801.9106322,87.76450934,635.290841,546.0577562,89.23308485,85.11808557,4.114999285,134.998946,0,134.998946,2.646423773,132.3525222,0.962746863,3.331708077,0.737671313,-0.737671313,0.404004465,0.160779115,2.056792274,66.15350972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.81874147,1.917325015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490139001,63.58926981,83.30888047,65.50659483,546.0577562,0,0.680945899,47.0823968,-0.680945899,132.9176032,0.976572728,0,616.5739929,65.50659483,659.446749,2,13,7% +2/2/2018 22:00,59.04485649,207.3864668,480.0539143,772.3874667,82.76340876,623.941301,540.0546652,83.8866358,80.26778662,3.618849182,118.8902515,0,118.8902515,2.495622138,116.3946294,1.030527152,3.619576669,1.226980023,-1.226980023,0.320327748,0.172404404,1.583269088,50.92337634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15644963,1.808069744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.147073065,48.9494863,78.3035227,50.75755604,540.0546652,0,0.699201746,45.63700501,-0.699201746,134.362995,0.978489881,0,606.7415478,50.75755604,639.9613531,2,14,5% +2/2/2018 23:00,65.75921269,221.7352624,361.0281106,702.515934,72.59456756,537.1329296,464.0057737,73.1271559,70.40557351,2.721582397,89.72443932,0,89.72443932,2.188994057,87.53544526,1.147714775,3.870010396,1.956074423,-1.956074423,0.195645262,0.201077327,0.972646637,31.28365931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67651526,1.585918743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704679178,30.07104326,68.38119444,31.656962,464.0057737,0,0.660491458,48.66263503,-0.660491458,131.337365,0.974298794,0,520.4614601,31.656962,541.1803086,2,15,4% +2/2/2018 0:00,74.5076688,233.854404,200.9030337,547.809895,54.57786371,365.3803623,310.9337306,54.44663168,52.93213975,1.51449193,50.35699047,0,50.35699047,1.645723962,48.71126651,1.300404139,4.08152932,3.46546195,-3.46546195,0,0.271662716,0.41143099,13.23303494,0.058801567,1,0.280930298,0,0.927298937,0.9660609,0.724496596,1,51.01502423,1.192321408,0.009785002,0.312029739,0.97262666,0.697123256,0.961238037,0.922476074,0.293483307,12.72009652,51.30850754,13.91241793,292.6503401,0,0.567594221,55.41736672,-0.567594221,124.5826333,0.961908899,0,332.8114739,13.91241793,341.9168732,2,16,3% +2/2/2018 1:00,84.55904292,244.2163376,34.53869883,172.707543,18.16257778,91.76777475,73.8924984,17.87527635,17.61490905,0.260367301,8.92197614,0,8.92197614,0.547668733,8.374307408,1.475833711,4.262379178,10.44534225,-10.44534225,0,0.525861668,0.136917183,4.403727261,0.556758225,1,0.09544556,0,0.951733504,0.990495467,0.724496596,1,17.06733947,0.396784133,0.075326419,0.312029739,0.808695752,0.533192347,0.961238037,0.922476074,0.094004755,4.233030148,17.16134422,4.62981428,32.75224211,0,0.427847546,64.66896265,-0.427847546,115.3310373,0.933135943,0,47.72363855,4.62981428,50.7537594,2,17,6% +2/2/2018 2:00,95.74249339,253.445006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671021744,4.423449827,-9.926108548,9.926108548,0,#DIV/0!,0,0,1,0.185414504,0,0.100405643,0.961238037,1,0.479498376,0.75500178,0,0,0.115824807,0.034719654,0.724496596,0.448993192,0.996793627,0.958031664,0,0,0,0,0,0,0.245665324,75.77884431,-0.245665324,104.2211557,0.846471072,0,0,0,0,2,18,0% +2/2/2018 3:00,107.3010376,262.18037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872756397,4.57591069,-3.138153256,3.138153256,0.933190497,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039737245,87.72262394,-0.039737245,92.27737606,0,0,0,0,0,2,19,0% +2/2/2018 4:00,119.1044888,271.13058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078765483,4.732121324,-1.675532315,1.675532315,0.816686591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17832869,100.2724258,0.17832869,79.72757417,0,0.769618868,0,0,0,2,20,0% +2/2/2018 5:00,130.8593252,281.2766667,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283926081,4.909203944,-0.988074922,0.988074922,0.699124453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39366801,113.1829271,0.39366801,66.8170729,0,0.922989426,0,0,0,2,21,0% +2/2/2018 6:00,142.1246569,294.3540241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480543211,5.137446887,-0.556144662,0.556144662,0.625260028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591600769,126.2706861,0.591600769,53.72931393,0,0.965483545,0,0,0,2,22,0% +2/2/2018 7:00,151.9595806,313.8912407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652195011,5.478435643,-0.234391173,0.234391173,0.570236941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758631662,139.3437163,0.758631662,40.65628369,0,0.984091862,0,0,0,2,23,0% +2/3/2018 8:00,158.069738,345.2435331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.758837377,6.025636374,0.036794313,-0.036794313,0.523861491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883369417,152.0515243,0.883369417,27.94847565,0,0.993398539,0,0,0,2,0,0% +2/3/2018 9:00,157.1220378,23.50163206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742296886,0.410180859,0.29046912,-0.29046912,0.480480545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957302922,163.1967145,0.957302922,16.80328551,0,0.997769929,0,0,0,2,1,0% +2/3/2018 10:00,149.7821645,51.64337581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614191932,0.901346945,0.552793547,-0.552793547,0.435620425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975381297,167.2601228,0.975381297,12.73987725,0,0.998737996,0,0,0,2,2,0% +2/3/2018 11:00,139.452891,69.1317329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433912099,1.206576357,0.855405425,-0.855405425,0.383870747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9363584,159.4487238,0.9363584,20.55127615,0,0.996601643,0,0,0,2,3,0% +2/3/2018 12:00,128.0016053,81.25661374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23404946,1.418195449,1.255246589,-1.255246589,0.31549388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842878319,147.4453229,0.842878319,32.5546771,0,0.990679457,0,0,0,2,4,0% +2/3/2018 13:00,116.1909462,90.98459781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027914572,1.5879808,1.898238796,-1.898238796,0.205535737,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701295951,134.531071,0.701295951,45.468929,0,0.978703424,0,0,0,2,5,0% +2/3/2018 14:00,104.4052347,99.79743107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822215101,1.741793757,3.37852861,-3.37852861,0,#DIV/0!,0,0,0.045445145,1,0.28777094,0,0.92625522,0.965017183,0.724496596,1,0,0,0.007608959,0.312029739,0.978649462,0.703146058,0.961238037,0.922476074,0,0,0,0,0,0,-0.521244801,121.4157874,0.521244801,58.58421262,0,0.954075782,0,0,0,2,6,0% +2/3/2018 15:00,92.92555345,108.5802091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621856867,1.895082152,15.29667385,-15.29667385,0,#DIV/0!,0,0,0.675927745,1,0.065280798,0,0.954970789,0.993732752,0.724496596,1,0,0,0.087505185,0.312029739,0.781992153,0.506488749,0.961238037,0.922476074,0,0,0,0,0,0,-0.314981335,108.359687,0.314981335,71.640313,0,0.891260435,0,0,0,2,7,0% +2/3/2018 16:00,81.93515638,118.0134343,72.0911374,298.7882408,30.17301991,29.80664548,0,29.80664548,29.26319203,0.543453445,46.68462758,28.2954688,18.38915878,0.909827877,17.4793309,1.430038252,2.059722989,-4.72109697,4.72109697,0.662491179,0.418539934,0.436801847,14.0490489,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.12889326,0.6591672,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316461451,13.50448019,28.44535471,14.16364739,0,28.2954688,-0.094700744,95.43409607,0.094700744,84.56590393,0,0.522021045,28.44535471,28.93447758,47.3823916,2,8,67% +2/3/2018 17:00,72.09393189,128.7377163,245.1675108,601.3179498,60.28785851,132.4879063,72.16977294,60.31813339,58.46995714,1.848176255,61.26160281,0,61.26160281,1.817901373,59.44370144,1.258276482,2.246897021,-1.606138732,1.606138732,0.804819589,0.245904762,1.576153139,50.69450294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.20354681,1.317063356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141917584,48.72948448,57.3454644,50.04654784,72.16977294,0,0.120019322,83.10678226,-0.120019322,96.89321774,0.633400415,0,103.0578285,50.04654784,135.8122931,2,9,32% +2/3/2018 18:00,63.72481323,141.3703869,397.7287118,727.071678,75.86650873,307.797935,231.2208344,76.5771006,73.57885357,2.998247031,98.72158607,0,98.72158607,2.287655156,96.43393092,1.112207806,2.467378716,-0.647061507,0.647061507,0.640807724,0.190749389,2.126726872,68.40284678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72679276,1.657398373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.540806379,65.75141816,72.26759914,67.40881653,231.2208344,0,0.318016561,71.45698279,-0.318016561,108.5430172,0.892775483,0,278.6958913,67.40881653,322.8136136,2,10,16% +2/3/2018 19:00,57.57576243,156.3094345,505.3141271,784.5296938,84.66192111,466.6231716,380.7048484,85.91832316,82.10905182,3.809271335,125.0721297,0,125.0721297,2.552869291,122.5192604,1.004886624,2.728114283,-0.101332944,0.101332944,0.547482644,0.167543151,2.374314357,76.36611136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.92634378,1.849545111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.720182669,73.40601097,80.64652645,75.25555608,380.7048484,0,0.485265059,60.97016017,-0.485265059,119.0298398,0.946963527,0,441.1601326,75.25555608,490.4133889,2,11,11% +2/3/2018 20:00,54.44475564,173.2663656,557.7848455,806.920835,88.57034337,582.5460711,492.4416326,90.1044385,85.89962072,4.204817775,137.9121162,0,137.9121162,2.670722642,135.2413936,0.950240246,3.024068562,0.321061608,-0.321061608,0.475248921,0.15878944,2.348701257,75.54230605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.56998279,1.934929463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701626066,72.61413796,84.27160886,74.54906742,492.4416326,0,0.610272546,52.39078756,-0.610272546,127.6092124,0.968069393,0,560.9892813,74.54906742,609.7801549,2,12,9% +2/3/2018 21:00,54.86660411,190.9185079,550.8190884,804.1192577,88.06290739,639.9760873,550.4162945,89.55979277,85.40748581,4.152306955,136.2078867,0,136.2078867,2.655421575,133.5524651,0.957602891,3.332156566,0.730184576,-0.730184576,0.405284773,0.159876281,2.077671693,66.8250636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.096924,1.923843892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505266069,64.23479294,83.60219007,66.15863684,550.4162945,0,0.68449585,46.80402853,-0.68449585,133.1959715,0.976953538,0,621.3333364,66.15863684,664.6328411,2,13,7% +2/3/2018 22:00,58.76285105,207.4900533,484.9790604,774.9802098,83.08866517,628.9572854,544.7180731,84.23921236,80.58323535,3.655977013,120.0942179,0,120.0942179,2.505429819,117.5887881,1.025605229,3.621384595,1.215416737,-1.215416737,0.322305186,0.171324232,1.602819551,51.55218641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45967095,1.815175375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161237308,49.55392246,78.62090826,51.36909784,544.7180731,0,0.702879978,45.34147581,-0.702879978,134.6585242,0.9788641,0,611.8258745,51.36909784,645.4459216,2,14,5% +2/3/2018 23:00,65.49935145,221.8901918,365.7888917,706.0603046,72.98318195,542.5103869,468.970446,73.53994091,70.78246973,2.757471176,90.89046397,0,90.89046397,2.200712215,88.68975175,1.143179341,3.872714426,1.935415734,-1.935415734,0.199178106,0.199522685,0.989822518,31.83609466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03880225,1.594408508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717123045,30.60206513,68.75592529,32.19647364,468.970446,0,0.664207353,48.37845562,-0.664207353,131.6215444,0.974722303,0,525.8718784,32.19647364,546.9438264,2,15,4% +2/3/2018 0:00,74.27173281,234.0392261,205.2568327,553.7825479,55.14002788,371.3732974,316.3486321,55.0246653,53.47735259,1.547312706,51.42957075,0,51.42957075,1.662675286,49.76689546,1.296286279,4.084755074,3.414001463,-3.414001463,0,0.268639183,0.415668821,13.36933815,0.050940706,1,0.284940885,0,0.926688197,0.96545016,0.724496596,1,51.52412428,1.204602584,0.008507541,0.312029739,0.976157901,0.700654497,0.961238037,0.922476074,0.297073866,12.85111636,51.82119815,14.05571894,300.2336096,0,0.571250635,55.16251755,-0.571250635,124.8374825,0.962472745,0,340.7878645,14.05571894,349.9870514,2,16,3% +2/3/2018 1:00,84.34737808,244.4199382,37.26576704,183.5458199,19.18707261,98.05292901,79.16349234,18.88943667,18.60851158,0.280925093,9.614077698,0,9.614077698,0.578561032,9.035516667,1.472139463,4.265932678,10.05535899,-10.05535899,0,0.514871265,0.144640258,4.652127894,0.543256774,1,0.099123532,0,0.95132424,0.990086203,0.724496596,1,18.03217813,0.419165498,0.073876529,0.312029739,0.811953775,0.536450371,0.961238037,0.922476074,0.099240496,4.471802284,18.13141863,4.890967782,36.15738886,0,0.431300982,64.44984791,-0.431300982,115.5501521,0.934071676,0,51.90501144,4.890967782,55.10605203,2,17,6% +2/3/2018 2:00,95.54170827,253.6644646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667517382,4.427280103,-10.28567726,10.28567726,0,#DIV/0!,0,0,1,0.224269862,0,0.096917974,0.961238037,1,0.486663567,0.762166971,0,0,0.115824807,0.042843452,0.724496596,0.448993192,0.99600165,0.957239687,0,0,0,0,0,0,0.248979169,75.58288711,-0.248979169,104.4171129,0.849179987,0,0,0,0,2,18,0% +2/3/2018 3:00,107.110036,262.4182578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869422791,4.580062617,-3.17252286,3.17252286,0.927312949,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042770186,87.54870111,-0.042770186,92.45129889,0,0,0,0,0,2,19,0% +2/3/2018 4:00,118.9163419,271.3934063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075481701,4.736708508,-1.685544308,1.685544308,0.818398743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.175620062,100.1147439,0.175620062,79.88525613,0,0.765294485,0,0,0,2,20,0% +2/3/2018 5:00,130.6648333,281.5733957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280531557,4.914382841,-0.991737276,0.991737276,0.699750752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39130461,113.0357004,0.39130461,66.96429956,0,0.922222308,0,0,0,2,21,0% +2/3/2018 6:00,141.9102223,294.6888794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.476800621,5.143291215,-0.557240222,0.557240222,0.62544738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589579606,126.1271814,0.589579606,53.87281857,0,0.96519381,0,0,0,2,22,0% +2/3/2018 7:00,151.7062859,314.2221672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.647774185,5.4842114,-0.234098692,0.234098692,0.570186924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756926066,139.193951,0.756926066,40.80604904,0,0.98394335,0,0,0,2,23,0% +2/4/2018 8:00,157.7745032,345.3468111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753684556,6.027438916,0.038076097,-0.038076097,0.523642293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.881930899,151.8761711,0.881930899,28.12382891,0,0.993306216,0,0,0,2,0,0% +2/4/2018 9:00,156.8489375,23.19685693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737530387,0.404861529,0.292688327,-0.292688327,0.480101038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956064534,162.952987,0.956064534,17.04701298,0,0.997702275,0,0,0,2,1,0% +2/4/2018 10:00,149.5697017,51.22908336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610483755,0.894116177,0.556164953,-0.556164953,0.435043881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974262257,166.9725693,0.974262257,13.02743066,0,0.998679116,0,0,0,2,2,0% +2/4/2018 11:00,139.2802406,68.75811886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430898781,1.200055562,0.860533705,-0.860533705,0.382993759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935269664,159.2717548,0.935269664,20.72824518,0,0.996539483,0,0,0,2,3,0% +2/4/2018 12:00,127.8470598,80.93283183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231352133,1.412544388,1.263649153,-1.263649153,0.314056957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84172872,147.3231209,0.84172872,32.67687912,0,0.990598439,0,0,0,2,4,0% +2/4/2018 13:00,116.0405396,90.69717014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025289483,1.582964241,1.914540985,-1.914540985,0.202747899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699998473,134.4268815,0.699998473,45.57311851,0,0.978571273,0,0,0,2,5,0% +2/4/2018 14:00,104.2494291,99.53416219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819495782,1.737198848,3.426020148,-3.426020148,0,#DIV/0!,0,0,0.052788353,1,0.283994267,0,0.926832651,0.965594614,0.724496596,1,0,0,0.008808631,0.312029739,0.97532446,0.699821056,0.961238037,0.922476074,0,0,0,0,0,0,-0.519722571,121.3136439,0.519722571,58.68635607,0,0.953794827,0,0,0,2,6,0% +2/4/2018 15:00,92.75680037,108.3329712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61891157,1.890767037,16.29035016,-16.29035016,0,#DIV/0!,0,0,0.692842643,1,0.061309103,0,0.955381098,0.994143061,0.724496596,1,0,0,0.089148539,0.312029739,0.778479748,0.502976344,0.961238037,0.922476074,0,0,0,0,0,0,-0.313172901,108.2505487,0.313172901,71.7494513,0,0.890343785,0,0,0,2,7,0% +2/4/2018 16:00,81.74891713,117.7786379,75.05103113,307.3563398,30.94191522,30.57466869,0,30.57466869,30.00890232,0.565766374,47.59144015,28.46143584,19.13000431,0.933012908,18.19699141,1.426787764,2.05562502,-4.634064118,4.634064118,0.677374674,0.412278349,0.458489212,14.74658909,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.84569835,0.675964675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.332173873,14.17498235,29.17787222,14.85094702,0,28.46143584,-0.092600777,95.31324565,0.092600777,84.68675435,0,0.510047726,29.17787222,29.36763766,48.39840372,2,8,66% +2/4/2018 17:00,71.88020404,128.5178787,249.1464336,605.8559176,60.72232382,134.9824033,74.21291057,60.76949277,58.89132171,1.878171057,62.23943946,0,62.23943946,1.831002105,60.40843735,1.254546227,2.243060131,-1.59590486,1.59590486,0.803069494,0.243721425,1.598446923,51.41154767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.60857847,1.326554792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158069354,49.41873515,57.76664782,50.74528994,74.21291057,0,0.122492673,82.96401627,-0.122492673,97.03598373,0.641812319,0,105.397408,50.74528994,138.6091854,2,9,32% +2/4/2018 18:00,63.48045803,141.1773736,402.1591945,730.0320184,76.19769071,311.1530476,234.2213526,76.93169507,73.90004919,3.031645881,99.80579426,0,99.80579426,2.297641514,97.50815274,1.107943003,2.464009998,-0.646562393,0.646562393,0.640722371,0.189471462,2.148816135,69.11331342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03553821,1.664633456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.556809975,66.43434571,72.59234819,68.09897916,234.2213526,0,0.320837096,71.28644357,-0.320837096,108.7135564,0.894157672,0,282.0231675,68.09897916,326.5925874,2,10,16% +2/4/2018 19:00,57.30129644,156.166997,510.0444384,786.870541,84.96022811,470.5522211,384.308927,86.24329418,82.39836376,3.84493042,126.2280435,0,126.2280435,2.561864347,123.6661792,1.000096289,2.725628281,-0.104132632,0.104132632,0.547961418,0.166574168,2.396388908,77.07610482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.20444142,1.856061999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736175606,74.08848369,80.94061703,75.94454569,384.308927,0,0.488401722,60.76441459,-0.488401722,119.2355854,0.947625259,0,445.1214633,75.94454569,494.8256496,2,11,11% +2/4/2018 20:00,54.14935367,173.2035645,562.7054856,809.0561314,88.86203547,586.9218263,496.4973974,90.42442888,86.18251724,4.241911638,139.113978,0,139.113978,2.679518236,136.4344598,0.945084509,3.022972477,0.316110934,-0.316110934,0.476095536,0.157919263,2.370508087,76.24368863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.84191368,1.94130184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717425039,73.28833358,84.55933872,75.22963542,496.4973974,0,0.613674847,52.14430473,-0.613674847,127.8556953,0.968523628,0,565.4287994,75.22963542,614.6650912,2,12,9% +2/4/2018 21:00,54.56769619,190.9490732,555.8210183,806.3225275,88.36306758,644.7156027,554.826994,89.88860868,85.69859506,4.190013616,137.4297135,0,137.4297135,2.664472512,134.765241,0.952385964,3.332690032,0.72279323,-0.72279323,0.406548768,0.158977557,2.098753496,67.50312684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.37674928,1.930401265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520539763,64.88657312,83.89728904,66.81697439,554.826994,0,0.688095613,46.52045143,-0.688095613,133.4795486,0.97733568,0,626.1495064,66.81697439,669.8798798,2,13,7% +2/4/2018 22:00,58.47774409,207.5997482,489.9451541,777.5585384,83.41443814,634.0119794,549.4193808,84.59259859,80.89918506,3.693413525,121.3081281,0,121.3081281,2.515253076,118.792875,1.020629174,3.623299133,1.203994733,-1.203994733,0.324258464,0.170252604,1.622535841,52.18633008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76337383,1.822292292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.175521694,50.16348548,78.93889553,51.98577777,549.4193808,0,0.706595521,45.04141164,-0.706595521,134.9585884,0.979238159,0,616.9513184,51.98577777,650.9749703,2,14,6% +2/4/2018 23:00,65.23741643,222.0514866,370.5812093,709.5721924,73.370384,547.9092154,473.9576215,73.95159391,71.15799622,2.79359769,92.06409243,0,92.06409243,2.212387786,89.85170464,1.138607712,3.87552955,1.91506937,-1.91506937,0.202657539,0.19798733,1.007151314,32.39344833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39977259,1.602867419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729677699,31.13781468,69.12945029,32.7406821,473.9576215,0,0.667948415,48.09108069,-0.667948415,131.9089193,0.97514392,0,531.3063433,32.7406821,552.7344649,2,15,4% +2/4/2018 0:00,74.03449329,234.2301603,209.6399844,559.6760875,55.69626009,377.3669389,321.7697718,55.59716711,54.01681235,1.580354755,52.50908908,0,52.50908908,1.679447739,50.82964134,1.292145668,4.088087504,3.363793948,-3.363793948,0,0.26567575,0.419861935,13.50420309,0.043143652,1,0.288962613,0,0.926072406,0.964834369,0.724496596,1,52.02694298,1.21675417,0.007231286,0.312029739,0.979698546,0.704195141,0.961238037,0.922476074,0.300655307,12.98075367,52.32759829,14.19750784,307.8874486,0,0.574921421,54.90587053,-0.574921421,125.0941295,0.963031593,0,348.8329385,14.19750784,358.1249234,2,16,3% +2/4/2018 1:00,84.13469419,244.6292991,40.07615506,194.4221045,20.20812176,104.4284943,84.52761104,19.90088331,19.59877233,0.302110985,10.32627721,0,10.32627721,0.609349431,9.716927779,1.468427429,4.269586715,9.691710565,-9.691710565,0,0.504243028,0.152337358,4.899693081,0.529904299,1,0.102817116,0,0.950910076,0.989672039,0.724496596,1,18.99379562,0.441471588,0.072427842,0.312029739,0.815225849,0.539722445,0.961238037,0.922476074,0.104459689,4.709771359,19.09825531,5.151242947,39.7360666,0,0.434763379,64.22976174,-0.434763379,115.7702383,0.934994913,0,56.25127546,5.151242947,59.62266094,2,17,6% +2/4/2018 2:00,95.34040868,253.8894257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664004042,4.431206414,-10.67299974,10.67299974,0,#DIV/0!,0,0,1,0.26218001,0,0.093421637,0.961238037,1,0.493944593,0.769447997,0,0,0.115824807,0.051089877,0.724496596,0.448993192,0.995181638,0.956419675,0,0,0,0,0,0,0.252291385,75.3868539,-0.252291385,104.6131461,0.851816459,0,0,0,0,2,18,0% +2/4/2018 3:00,106.9185663,262.6615491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866081013,4.584308851,-3.207609904,3.207609904,0.921312711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045797926,87.37505394,-0.045797926,92.62494606,0,0,0,0,0,2,19,0% +2/4/2018 4:00,118.7275599,271.6617046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072186834,4.741391197,-1.695609598,1.695609598,0.820120008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172916966,99.95746116,0.172916966,80.04253884,0,0.760843875,0,0,0,2,20,0% +2/4/2018 5:00,130.4692951,281.8757885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.277118771,4.919660591,-0.995359132,0.995359132,0.700370126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.388943817,112.8887966,0.388943817,67.11120341,0,0.921446729,0,0,0,2,21,0% +2/4/2018 6:00,141.6940302,295.029528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473027357,5.149236654,-0.55827099,0.55827099,0.625623652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587555069,125.9836997,0.587555069,54.01630027,0,0.964901594,0,0,0,2,22,0% +2/4/2018 7:00,151.4502291,314.5587096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.643305151,5.490085174,-0.233729579,0.233729579,0.570123802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755208474,139.0435891,0.755208474,40.95641093,0,0.983793116,0,0,0,2,23,0% +2/5/2018 8:00,157.4752679,345.4579848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748461915,6.029379262,0.039446364,-0.039446364,0.523407964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880469718,151.6990773,0.880469718,28.30092275,0,0.99321213,0,0,0,2,0,0% +2/5/2018 9:00,156.5698405,22.90246801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732659225,0.399723474,0.295013416,-0.295013416,0.479703424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954791508,162.7059176,0.954791508,17.29408238,0,0.997632546,0,0,0,2,1,0% +2/5/2018 10:00,149.3503649,50.81888221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606655607,0.886956817,0.559671632,-0.559671632,0.434444204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973096121,166.6794058,0.973096121,13.32059423,0,0.998617615,0,0,0,2,2,0% +2/5/2018 11:00,139.1010053,68.3847523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427770535,1.193539086,0.865852278,-0.865852278,0.382084229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934121755,159.0867184,0.934121755,20.91328161,0,0.996473787,0,0,0,2,3,0% +2/5/2018 12:00,127.6863786,80.60794393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228547716,1.406874025,1.272361771,-1.272361771,0.312567012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840509079,147.1939162,0.840509079,32.80608377,0,0.990512243,0,0,0,2,4,0% +2/5/2018 13:00,115.8843534,90.40820684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022563519,1.57792088,1.931495438,-1.931495438,0.199848516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698622049,134.3165551,0.698622049,45.68344492,0,0.978430544,0,0,0,2,5,0% +2/5/2018 14:00,104.0880889,99.26925201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816679864,1.732575294,3.475956543,-3.475956543,0,#DIV/0!,0,0,0.060388712,1,0.280125856,0,0.927421036,0.966182999,0.724496596,1,0,0,0.01004181,0.312029739,0.971918314,0.69641491,0.961238037,0.922476074,0,0,0,0,0,0,-0.518115066,121.2058986,0.518115066,58.79410145,0,0.95349634,0,0,0,2,6,0% +2/5/2018 15:00,92.58266323,108.0841213,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615872304,1.886423786,17.44993418,-17.44993418,0,#DIV/0!,0,0,0.710477317,1,0.057244197,0,0.955797176,0.994559139,0.724496596,1,0,0,0.090840467,0.312029739,0.774886132,0.499382728,0.961238037,0.922476074,0,0,0,0,0,0,-0.311275879,108.1361377,0.311275879,71.86386227,0,0.889370785,0,0,0,2,7,0% +2/5/2018 16:00,81.5573432,117.5423615,78.12356626,316.051187,31.72108811,31.3535087,0,31.3535087,30.76458026,0.588928442,48.47322466,28.57475369,19.89847097,0.956507845,18.94196312,1.423444168,2.051501218,-4.547962952,4.547962952,0.69209884,0.406037379,0.48122416,15.47782319,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.57208474,0.692986677,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.348645266,14.87787238,29.92073,15.57085906,0,28.57475369,-0.09041179,95.18729753,0.09041179,84.81270247,0,0.496974783,29.92073,29.77179109,49.40577183,2,8,65% +2/5/2018 17:00,71.66117714,128.2968626,253.2239594,610.4252311,61.16238832,137.5615911,76.33456527,61.22702582,59.31811665,1.908909168,63.24135235,0,63.24135235,1.844271673,61.39708067,1.250723487,2.239202673,-1.585416021,1.585416021,0.801275797,0.24153476,1.62118807,52.14298111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.01883,1.336168549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.174545238,50.1218168,58.19337523,51.45798535,76.33456527,0,0.125051458,82.81627256,-0.125051458,97.18372744,0.650164598,0,107.8234072,51.45798535,141.5016295,2,9,31% +2/5/2018 18:00,63.23079229,140.9838371,406.6778501,733.0064946,76.53335509,314.5925144,237.3012129,77.29130147,74.22559206,3.065709415,100.9115161,0,100.9115161,2.307763034,98.6037531,1.103585514,2.460632149,-0.645905711,0.645905711,0.640610071,0.1881916,2.171271025,69.83553987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.34846239,1.671966462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573078467,67.12857725,72.92154086,68.80054371,237.3012129,0,0.323736849,71.11093507,-0.323736849,108.8890649,0.895553572,0,285.4374897,68.80054371,330.4660695,2,10,16% +2/5/2018 19:00,57.02159336,156.0253332,514.8509116,789.2169144,85.2620546,474.5582219,387.9859692,86.57225271,82.69108907,3.881163646,127.4025298,0,127.4025298,2.57096553,124.8315643,0.995214549,2.723155782,-0.106824467,0.106824467,0.548421749,0.165605329,2.418762585,77.79571918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48582012,1.862655774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.752385259,74.78020438,81.23820538,76.64286015,387.9859692,0,0.491608786,60.55362264,-0.491608786,119.4463774,0.948293111,0,449.1626273,76.64286015,499.3238464,2,11,11% +2/5/2018 20:00,53.84907868,173.1435612,567.6893131,811.1908485,89.15629537,591.363053,500.615667,90.74738595,86.46790411,4.279481835,140.3312377,0,140.3312377,2.688391257,137.6428464,0.939843722,3.021925221,0.311250476,-0.311250476,0.476926723,0.157051213,2.392555656,76.95281424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.1162384,1.947730314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.733398428,73.96997209,84.84963683,75.91770241,500.615667,0,0.617136729,51.89265657,-0.617136729,128.1073434,0.968980677,0,569.9365448,75.91770241,619.6231626,2,12,9% +2/5/2018 21:00,54.26471836,190.9845346,560.8731796,808.5190412,88.66477595,649.5065959,559.2872911,90.21930475,85.99120581,4.228098941,138.6637661,0,138.6637661,2.673570133,135.9901959,0.947098003,3.333308949,0.715499161,-0.715499161,0.407796127,0.158083466,2.120027019,68.18735648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.65801786,1.93699246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535952359,65.54428068,84.19397022,67.48127314,559.2872911,0,0.691742881,46.23176815,-0.691742881,133.7682319,0.977718808,0,631.0196738,67.48127314,675.1848175,2,13,7% +2/5/2018 22:00,58.18964853,207.7155637,494.9496517,780.1211181,83.74052813,639.1025522,554.1559704,84.94658178,81.21544224,3.731139542,122.5313593,0,122.5313593,2.525085893,120.0062734,1.015600957,3.625320494,1.192716442,-1.192716442,0.326187165,0.169189993,1.642408651,52.82550797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06737226,1.829416134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.189919477,50.77788758,79.25729174,52.60730371,554.1559704,0,0.71034607,44.73692048,-0.71034607,135.2630795,0.979611774,0,622.1150048,52.60730371,656.5454329,2,14,6% +2/5/2018 23:00,64.97351457,222.2191256,375.4027595,713.0502712,73.75599458,553.3266661,478.9647424,74.36192378,71.53197921,2.829944572,93.24476066,0,93.24476066,2.224015367,91.0207453,1.134001756,3.878455402,1.895036223,-1.895036223,0.206083409,0.196471637,1.0246253,32.95547177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75925927,1.611291563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742337542,31.67805299,69.50159681,33.28934455,478.9647424,0,0.671712447,47.80062976,-0.671712447,132.1993702,0.975563386,0,536.7620627,33.28934455,558.549273,2,15,4% +2/5/2018 0:00,73.79604346,234.4271544,214.0503691,565.4891304,56.24643246,383.3585967,327.1945996,56.16399709,54.55039499,1.613602098,53.59502765,0,53.59502765,1.696037466,51.89899018,1.287983933,4.0915257,3.314811205,-3.314811205,0,0.262771948,0.424009366,13.63759875,0.03541234,1,0.29299398,0,0.925451778,0.964213741,0.724496596,1,52.52336173,1.22877337,0.005956686,0.312029739,0.983247296,0.707743892,0.961238037,0.922476074,0.304226768,13.10897865,52.8275885,14.33775202,315.6078733,0,0.578604578,54.64754417,-0.578604578,125.3524558,0.963585198,0,356.9426636,14.33775202,366.3264356,2,16,3% +2/5/2018 1:00,83.92108207,244.8443447,42.96579448,205.3106129,21.22377098,110.881527,89.97383672,20.90769029,20.58379598,0.323894308,11.05752932,0,11.05752932,0.639975002,10.41755431,1.464699194,4.27333997,9.351943762,-9.351943762,0,0.49396901,0.159993751,5.145948995,0.516703426,1,0.106524873,0,0.950491141,0.989253104,0.724496596,1,19.95032276,0.463659711,0.07098092,0.312029739,0.818510641,0.543007237,0.961238037,0.922476074,0.109653443,4.946481909,20.0599762,5.41014162,43.48404701,0,0.438232761,64.00882141,-0.438232761,115.9911786,0.935905381,0,60.75692977,5.41014162,64.29775926,2,17,6% +2/5/2018 2:00,95.13865114,254.1197953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660482708,4.435227122,-11.09131936,11.09131936,0,#DIV/0!,0,0,1,0.299170712,0,0.089917481,0.961238037,1,0.501340285,0.77684369,0,0,0.115824807,0.059458663,0.724496596,0.448993192,0.994332954,0.955570991,0,0,0,0,0,0,0.255600607,75.19082317,-0.255600607,104.8091768,0.854382311,0,0,0,0,2,18,0% +2/5/2018 3:00,106.7266672,262.9101315,0,0,0,0,0,0,0,0,0,0,0,0,0,1.862731742,4.588647431,-3.243431238,3.243431238,0.915186902,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.048819486,87.20173721,-0.048819486,92.79826279,0,0,0,0,0,2,19,0% +2/5/2018 4:00,118.5381657,271.935338,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06888128,4.746167,-1.705727246,1.705727246,0.821850228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.170219987,99.80060979,0.170219987,80.19939021,0,0.756262461,0,0,0,2,20,0% +2/5/2018 5:00,130.2727206,282.1836681,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2736879,4.925034103,-0.998939577,0.998939577,0.700982418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38658583,112.7422259,0.38658583,67.25777411,0,0.920662616,0,0,0,2,21,0% +2/5/2018 6:00,141.4760864,295.3757216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46922352,5.155278872,-0.559236548,0.559236548,0.625788772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585527013,125.8402298,0.585527013,54.1597702,0,0.964606843,0,0,0,2,22,0% +2/5/2018 7:00,151.1914353,314.9005128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638788347,5.496050765,-0.23328373,0.23328373,0.570047557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753478463,138.8925982,0.753478463,41.10740178,0,0.983641103,0,0,0,2,23,0% +2/6/2018 8:00,157.1721199,345.5766263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743170984,6.031449948,0.040905057,-0.040905057,0.523158513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878985257,151.5201968,0.878985257,28.47980318,0,0.993116225,0,0,0,2,0,0% +2/6/2018 9:00,156.2848951,22.61837215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727685991,0.394765065,0.297444302,-0.297444302,0.479287718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953483128,162.4555029,0.953483128,17.54449715,0,0.997560687,0,0,0,2,1,0% +2/6/2018 10:00,149.1242634,50.41303498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602709392,0.879873446,0.563313673,-0.563313673,0.433821378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971882182,166.3808079,0.971882182,13.61919209,0,0.998553435,0,0,0,2,2,0% +2/6/2018 11:00,138.915258,68.01188104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424528634,1.187031255,0.87136191,-0.87136191,0.381142027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93291407,158.8937198,0.93291407,21.1062802,0,0.996404496,0,0,0,2,3,0% +2/6/2018 12:00,127.5196236,80.2821346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225637293,1.401187579,1.281387596,-1.281387596,0.311023505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839219001,147.0577397,0.839219001,32.94226029,0,0.990420796,0,0,0,2,4,0% +2/6/2018 13:00,115.7224512,90.11784563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019737792,1.572853121,1.949116315,-1.949116315,0.196835169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697166568,134.2001171,0.697166568,45.7998829,0,0.978281128,0,0,0,2,5,0% +2/6/2018 14:00,103.9212846,99.00280561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813768579,1.727924927,3.528456849,-3.528456849,0,#DIV/0!,0,0,0.068248877,1,0.276167999,0,0.928019797,0.96678176,0.724496596,1,0,0,0.011308136,0.312029739,0.96843299,0.692929585,0.961238037,0.922476074,0,0,0,0,0,0,-0.516422524,121.0925859,0.516422524,58.90741406,0,0.953180056,0,0,0,2,6,0% +2/6/2018 15:00,92.4032217,107.8337393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612740458,1.882053796,18.81862167,-18.81862167,0,#DIV/0!,0,0,0.728851807,1,0.053088922,0,0.95621846,0.994980423,0.724496596,1,0,0,0.092580613,0.312029739,0.771214039,0.495710635,0.961238037,0.922476074,0,0,0,0,0,0,-0.309290895,108.0165017,0.309290895,71.98349828,0,0.88833989,0,0,0,2,7,0% +2/6/2018 16:00,81.36052062,117.304663,81.3082737,324.8575746,32.50927152,32.14193315,0,32.14193315,31.52899704,0.612936112,49.32565124,28.63124444,20.69440679,0.980274483,19.71413231,1.420008966,2.047352598,-4.462925579,4.462925579,0.706641087,0.399827349,0.505018905,16.24314396,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.30687122,0.710205526,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365884477,15.61352782,30.6727557,16.32373334,0,28.63124444,-0.08813476,95.05631027,0.08813476,84.94368973,0,0.482686946,30.6727557,30.14366128,50.40117913,2,8,64% +2/6/2018 17:00,71.43694806,128.0747046,257.398101,615.0203331,61.60757106,140.2248293,78.53457816,61.69025109,59.74987548,1.940375611,64.26684521,0,64.26684521,1.857695575,62.40914964,1.246809951,2.235325283,-1.574694725,1.574694725,0.799442347,0.239347419,1.644362199,52.88834078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.43385301,1.34589412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.191334816,50.83828486,58.62518783,52.18417898,78.53457816,0,0.127694279,82.66362623,-0.127694279,97.33637377,0.658439781,0,110.3354782,52.18417898,144.4889797,2,9,31% +2/6/2018 18:00,62.97591896,140.7897945,411.2822199,735.9921464,76.87318962,318.1145868,240.4589884,77.65559842,74.55517932,3.1004191,102.0381462,0,102.0381462,2.318010299,99.72013587,1.099137135,2.457245467,-0.645096847,0.645096847,0.640471748,0.186911045,2.194078387,70.56910303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.66527421,1.679390571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.589602323,67.83370606,73.25487653,69.51309663,240.4589884,0,0.326714068,70.93054631,-0.326714068,109.0694537,0.896960983,0,288.9372071,69.51309663,334.4321385,2,10,16% +2/6/2018 19:00,56.73675862,155.8844519,519.730854,791.5668296,85.56714569,478.6388617,391.7339305,86.90493125,82.98698054,3.917950713,128.5949279,0,128.5949279,2.580165152,126.0147628,0.990243245,2.720696939,-0.109409411,0.109409411,0.548863801,0.164637418,2.441422794,78.52454941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77024226,1.869320869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768802504,75.48078372,81.53904476,77.35010458,391.7339305,0,0.494884217,60.33788425,-0.494884217,119.6621157,0.948966267,0,453.2813303,77.35010458,503.9054267,2,11,11% +2/6/2018 20:00,53.54403839,173.0863747,572.7335473,813.3234363,89.45289424,595.8671046,504.7940378,91.07306684,86.75555943,4.317507403,141.5632142,0,141.5632142,2.697334807,138.8658794,0.934519765,3.020927129,0.30648102,-0.30648102,0.477742348,0.156185882,2.414832062,77.66930004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39274364,1.954209886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749537608,74.65868549,85.14228124,76.61289538,504.7940378,0,0.62065596,51.63594805,-0.62065596,128.364052,0.969440071,0,574.5098491,76.61289538,624.6514568,2,12,9% +2/6/2018 21:00,53.95778372,191.0249217,565.9728293,810.707446,88.96781998,654.3462446,563.7945904,90.5516542,86.28511195,4.266542255,139.9093731,0,139.9093731,2.682708029,137.2266651,0.941740983,3.334013837,0.708304117,-0.708304117,0.409026552,0.157194507,2.14148137,68.87740217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.94053162,1.943612834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551495963,66.20757884,84.49202758,68.15119168,563.7945904,0,0.695435318,45.93808343,-0.695435318,134.0619166,0.978102587,0,635.9409752,68.15119168,680.5445671,2,13,7% +2/6/2018 22:00,57.89868049,207.837513,499.9899616,782.6666676,84.06673731,644.2261428,558.9251923,85.30095053,81.53181501,3.769135528,123.7632772,0,123.7632772,2.534922303,121.2283549,1.010522607,3.627448911,1.181584102,-1.181584102,0.328090908,0.16813685,1.662428432,53.46941295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.3714818,1.836542579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.20442374,51.39683353,79.57590554,53.23337611,558.9251923,0,0.714129291,44.42811324,-0.714129291,135.5718868,0.979984667,0,627.314024,53.23337611,662.154204,2,14,6% +2/6/2018 23:00,64.7077558,222.3930876,380.2511884,716.4932835,74.13983722,558.7599617,483.9892201,74.77074166,71.90424758,2.866494077,94.43189266,0,94.43189266,2.235589639,92.19630302,1.12936339,3.881491613,1.875316887,-1.875316887,0.209455614,0.194975951,1.042236487,33.5219081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11709779,1.619677083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.755096787,32.22253313,69.87219458,33.84221021,483.9892201,0,0.675497219,47.50722601,-0.675497219,132.492774,0.97598045,0,542.2362115,33.84221021,564.3852612,2,15,4% +2/6/2018 0:00,73.55647918,234.6301553,218.4858177,571.2204207,56.79042315,389.3455701,332.6205493,56.72502074,55.07798236,1.647038382,54.68685682,0,54.68685682,1.712440792,52.97441603,1.283802748,4.095068734,3.267025522,-3.267025522,0,0.259927275,0.428110198,13.76949559,0.027748617,1,0.297033468,0,0.924826534,0.963588498,0.724496596,1,53.0132689,1.240657525,0.004684188,0.312029739,0.986802846,0.711299442,0.961238037,0.922476074,0.307787378,13.23576291,53.32105627,14.47642043,323.390789,0,0.582298071,54.3876604,-0.582298071,125.6123396,0.964133324,0,365.1128925,14.47642043,374.5874202,2,16,3% +2/6/2018 1:00,83.70663362,245.0649984,45.93058785,216.1875758,22.23227203,117.3997274,95.49159625,21.90813117,21.561887,0.346244172,11.80678782,0,11.80678782,0.67038503,11.13640279,1.460956362,4.277191103,9.033897739,-9.033897739,0,0.484040659,0.167596258,5.39047175,0.503656515,1,0.110245366,0,0.950067568,0.988829531,0.724496596,1,20.90008403,0.485691672,0.069536316,0.312029739,0.821806823,0.546303419,0.961238037,0.922476074,0.114813912,5.181526483,21.01489795,5.667218155,47.39663164,0,0.441707142,63.78714567,-0.441707142,116.2128543,0.936802826,0,65.41619643,5.667218155,69.12527737,2,17,6% +2/6/2018 2:00,94.93649429,254.3554785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656954406,4.439340571,-11.544403,11.544403,0,#DIV/0!,0,0,1,0.335266765,0,0.08640638,0.961238037,1,0.508849333,0.784352737,0,0,0.115824807,0.067949374,0.724496596,0.448993192,0.993454974,0.954693011,0,0,0,0,0,0,0.258905434,74.99487559,-0.258905434,105.0051244,0.856879295,0,0,0,0,2,18,0% +2/6/2018 3:00,106.5343797,263.1638919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859375692,4.593076386,-3.280003904,3.280003904,0.908932608,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051833852,87.02880758,-0.051833852,92.97119242,0,0,0,0,0,2,19,0% +2/6/2018 4:00,118.3481841,272.2141692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065565477,4.751033522,-1.715896158,1.715896158,0.823589215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167529737,99.64422366,0.167529737,80.35577634,0,0.751545522,0,0,0,2,20,0% +2/6/2018 5:00,130.0751226,282.4968579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270239164,4.930500296,-1.002477635,1.002477635,0.701587462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384230879,112.5960006,0.384230879,67.40399942,0,0.919869907,0,0,0,2,21,0% +2/6/2018 6:00,141.2563997,295.7272151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465389264,5.161413591,-0.560136442,0.560136442,0.625942663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583495326,125.6967626,0.583495326,54.30323736,0,0.964309511,0,0,0,2,22,0% +2/6/2018 7:00,150.929933,315.2472318,0,0,0,0,0,0,0,0,0,0,0,0,0,2.634224271,5.502102153,-0.232761016,0.232761016,0.569958168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75173564,138.7409489,0.75173564,41.25905112,0,0.983487256,0,0,0,2,23,0% +2/7/2018 8:00,156.8651485,345.7023252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737813323,6.033643806,0.04245214,-0.04245214,0.522893946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877476926,151.3394883,0.877476926,28.66051165,0,0.993018445,0,0,0,2,0,0% +2/7/2018 9:00,155.9942509,22.34446304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.722613292,0.38998445,0.299980926,-0.299980926,0.47885393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952138707,162.2017458,0.952138707,17.79825422,0,0.997486643,0,0,0,2,1,0% +2/7/2018 10:00,148.8915104,50.01178995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598647085,0.872870399,0.567091207,-0.567091207,0.433175382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970619752,166.0769481,0.970619752,13.92305187,0,0.998486521,0,0,0,2,2,0% +2/7/2018 11:00,138.7230753,67.63974853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421174412,1.180536317,0.877063447,-0.877063447,0.380167007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931646032,158.6928724,0.931646032,21.30712757,0,0.996331548,0,0,0,2,3,0% +2/7/2018 12:00,127.3468597,79.95558772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222621993,1.395488261,1.290730009,-1.290730009,0.309425858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83785811,146.9146277,0.83785811,33.08537234,0,0.990324025,0,0,0,2,4,0% +2/7/2018 13:00,115.5548987,89.8262247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01681345,1.567763376,1.96741871,-1.96741871,0.193705275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69563194,134.0775961,0.69563194,45.9224039,0,0.978122909,0,0,0,2,5,0% +2/7/2018 14:00,103.7490882,98.73492902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810763185,1.723249598,3.583650464,-3.583650464,0,#DIV/0!,0,0,0.076371713,1,0.272122979,0,0.928628362,0.967390325,0.724496596,1,0,0,0.012607254,0.312029739,0.964870443,0.689367039,0.961238037,0.922476074,0,0,0,0,0,0,-0.514645204,120.9737429,0.514645204,59.02625711,0,0.952845689,0,0,0,2,6,0% +2/7/2018 15:00,92.21855666,107.5819066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609517445,1.877658486,20.45618035,-20.45618035,0,#DIV/0!,0,0,0.747987629,1,0.048846097,0,0.956644394,0.995406357,0.724496596,1,0,0,0.094368642,0.312029739,0.767466199,0.491962795,0.961238037,0.922476074,0,0,0,0,0,0,-0.307218594,107.8916897,0.307218594,72.10831026,0,0.887249434,0,0,0,2,7,0% +2/7/2018 16:00,81.15853693,117.0656019,84.60451542,333.760397,33.30522718,32.93873627,0,32.93873627,32.30095169,0.637784574,50.14447829,28.62685853,21.51761976,1.004275483,20.51334428,1.416483686,2.043180193,-4.37906604,4.37906604,0.720981913,0.393657797,0.529883899,17.04288764,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.04890339,0.727594168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383899081,16.38227186,31.43280247,17.10986603,0,28.62685853,-0.085770687,94.92034383,0.085770687,85.07965617,0,0,31.43280247,17.10986603,42.63086759,2,8,36% +2/7/2018 17:00,71.20761488,127.8514424,261.6668195,619.6358424,62.05740462,142.9714304,80.81273044,62.15869992,60.18614491,1.972555014,65.31540957,0,65.31540957,1.871259717,63.44414985,1.242807332,2.231428624,-1.563762628,1.563762628,0.797572849,0.237161917,1.667954765,53.64715879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.85321177,1.355721295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.208427549,51.5676896,59.06163932,52.9234109,80.81273044,0,0.130419716,82.50615325,-0.130419716,97.49384675,0.666622382,0,112.9332142,52.9234109,147.5705281,2,9,31% +2/7/2018 18:00,62.71594236,140.5952645,415.9698058,738.9861075,77.21688779,321.7174878,243.6932179,78.02426983,74.88851373,3.135756102,103.1850694,0,103.1850694,2.328374067,100.8566953,1.094599688,2.453850278,-0.644141138,0.644141138,0.640308312,0.185630992,2.217224896,71.31357431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.98568792,1.686899085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606371889,68.54932017,73.59205981,70.23621925,243.6932179,0,0.329766981,70.74536718,-0.329766981,109.2546328,0.898377785,0,292.5206333,70.23621925,338.488834,2,10,16% +2/7/2018 19:00,56.44689928,155.7443637,524.6815357,793.9183665,85.87524971,482.7918039,395.5507388,87.24106513,83.28579409,3.955271043,129.8045685,0,129.8045685,2.589455625,127.2151129,0.985184245,2.718251938,-0.111888488,0.111888488,0.549287748,0.163671187,2.464356768,79.26218482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0574732,1.876051785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785418089,76.18982693,81.84289129,78.06587871,395.5507388,0,0.498225958,60.11730042,-0.498225958,119.8826996,0.949643928,0,457.4752487,78.06587871,508.567805,2,11,11% +2/7/2018 20:00,53.23434255,173.0320269,577.8353706,815.452398,89.75160555,600.4313117,509.0300811,91.4012306,87.04526349,4.355967102,142.8092176,0,142.8092176,2.706342055,140.1028755,0.929114553,3.019978581,0.301803252,-0.301803252,0.478542294,0.155323835,2.437325219,78.39275729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.6712182,1.960735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765833824,75.35410012,85.43705202,77.31483573,509.0300811,0,0.624230283,51.37428546,-0.624230283,128.6257145,0.969901355,0,579.1460172,77.31483573,629.7470309,2,12,9% +2/7/2018 21:00,53.64700791,191.0702667,571.1171877,812.8864399,89.27198918,659.2317044,568.3462725,90.88543193,86.58010933,4.305322602,141.1658542,0,141.1658542,2.691879852,138.4739743,0.936316922,3.334805257,0.701209705,-0.701209705,0.410239768,0.156311158,2.163105466,69.5729074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.22409432,1.95025779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567162546,66.87612492,84.79125687,68.82638271,568.3462725,0,0.699170566,45.63950376,-0.699170566,134.3604962,0.978486692,0,640.910521,68.82638271,685.956012,2,13,7% +2/7/2018 22:00,57.60495889,207.9656105,505.063454,785.1939618,84.39287019,649.3798692,563.7243737,85.65549543,81.84811377,3.807381656,125.0032383,0,125.0032383,2.544756413,122.4584818,1.005396198,3.629684634,1.170599736,-1.170599736,0.329969345,0.167093599,1.682585432,54.11773135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.6755202,1.843667358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219027418,52.02002184,79.89454762,53.8636892,563.7243737,0,0.717942828,44.11510332,-0.717942828,135.8848967,0.980356572,0,632.5454419,53.8636892,667.7981492,2,14,6% +2/7/2018 23:00,64.4402526,222.5733514,385.1241023,719.9000447,74.52173889,564.2063074,489.0284457,75.17786167,72.27463351,2.90322816,95.62490279,0,95.62490279,2.247105383,93.37779741,1.124694579,3.884637809,1.85591164,-1.85591164,0.212774107,0.193500584,1.059976665,34.09249319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.47312682,1.628020201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.767949485,32.77100122,70.24107631,34.39902142,489.0284457,0,0.67930048,47.21099579,-0.67930048,132.7890042,0.97639487,0,547.7259421,34.39902142,570.2394136,2,15,4% +2/7/2018 0:00,73.31589844,234.8391089,222.944121,576.8688357,57.32811709,395.3251585,338.0450487,57.2801098,55.59946284,1.680646956,55.78403753,0,55.78403753,1.728654249,54.05538328,1.279603822,4.098715662,3.220409607,-3.220409607,0,0.257141192,0.432163562,13.89986571,0.02015424,1,0.301079559,0,0.924196902,0.962958866,0.724496596,1,53.49656037,1.252404119,0.003414234,0.312029739,0.990363887,0.714860482,0.961238037,0.922476074,0.311336267,13.36107963,53.80789664,14.61348375,331.2320077,0,0.585999846,54.12634404,-0.585999846,125.873656,0.964675745,0,373.3393806,14.61348375,382.9036134,2,16,3% +2/7/2018 1:00,83.49144143,245.2911825,48.96642986,227.0312194,23.23207164,123.9714555,101.0707869,22.9006686,22.53153897,0.369129632,12.57301051,0,12.57301051,0.700532677,11.87247783,1.45720055,4.281138761,8.735661543,-8.735661543,0,0.474448958,0.175133169,5.632884742,0.49076565,1,0.11397717,0,0.949639495,0.988401458,0.724496596,1,21.8415876,0.50753354,0.068094565,0.312029739,0.825113077,0.549609673,0.961238037,0.922476074,0.119934221,5.414543071,21.96152182,5.922076611,51.46871644,0,0.445184531,63.56485439,-0.445184531,116.4351456,0.937687023,0,70.22306931,5.922076611,74.09895001,2,17,6% +2/7/2018 2:00,94.73399848,254.5963798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653420187,4.443545092,-12.03665212,12.03665212,0,#DIV/0!,0,0,1,0.370492106,0,0.082889223,0.961238037,1,0.516470291,0.791973695,0,0,0.115824807,0.076561418,0.724496596,0.448993192,0.992547092,0.953785128,0,0,0,0,0,0,0.262204446,74.79909355,-0.262204446,105.2009064,0.859309107,0,0,0,0,2,18,0% +2/7/2018 3:00,106.3417463,263.422717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856013606,4.597593736,-3.317345197,3.317345197,0.902546871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.054839986,86.85632316,-0.054839986,93.14367684,0,0,0,0,0,2,19,0% +2/7/2018 4:00,118.1576422,272.4980611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062239893,4.755988372,-1.726115106,1.726115106,0.825336758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164846855,99.48833808,0.164846855,80.51166192,0,0.746688178,0,0,0,2,20,0% +2/7/2018 5:00,129.8765158,282.8151824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266772822,4.936056108,-1.005972271,1.005972271,0.70218508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381879218,112.4501344,0.381879218,67.54986558,0,0.919068549,0,0,0,2,21,0% +2/7/2018 6:00,141.0349819,296.0837668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461524794,5.167636592,-0.560970192,0.560970192,0.626085242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581459918,125.5532912,0.581459918,54.44670885,0,0.96400955,0,0,0,2,22,0% +2/7/2018 7:00,150.6657538,315.5985321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629613475,5.508233499,-0.232161288,0.232161288,0.569855608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749979638,138.5886141,0.749979638,41.41138586,0,0.983331523,0,0,0,2,23,0% +2/8/2018 8:00,156.5544441,345.8346871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732390508,6.035953958,0.044087596,-0.044087596,0.522614267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875944162,151.1569146,0.875944162,28.84308537,0,0.992918736,0,0,0,2,0,0% +2/8/2018 9:00,155.6980576,22.08062182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.717443744,0.385379552,0.302623254,-0.302623254,0.478402065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95075758,161.9446555,0.95075758,18.05534451,0,0.997410359,0,0,0,2,1,0% +2/8/2018 10:00,148.6522224,49.61538005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.594470722,0.865951742,0.571004409,-0.571004409,0.432506185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969308173,165.7679952,0.969308173,14.23200477,0,0.998416818,0,0,0,2,2,0% +2/8/2018 11:00,138.5245369,67.26859276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417709264,1.174058427,0.882957828,-0.882957828,0.379159008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930317089,158.4842973,0.930317089,21.51570265,0,0.996254884,0,0,0,2,3,0% +2/8/2018 12:00,127.1681542,79.62848561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219502994,1.389779252,1.300392622,-1.300392622,0.307773454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836426056,146.7646222,0.836426056,33.23537784,0,0.990221853,0,0,0,2,4,0% +2/8/2018 13:00,115.3817636,89.53348204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013791672,1.562654052,1.986418697,-1.986418697,0.190456086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694018101,133.9490241,0.694018101,46.05097589,0,0.97795577,0,0,0,2,5,0% +2/8/2018 14:00,103.5715734,98.46572853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807664967,1.718551163,3.641678137,-3.641678137,0,#DIV/0!,0,0,0.084760302,1,0.267993066,0,0.92924616,0.968008123,0.724496596,1,0,0,0.013938823,0.312029739,0.961232618,0.685729214,0.961238037,0.922476074,0,0,0,0,0,0,-0.512783389,120.8494084,0.512783389,59.15059162,0,0.952492941,0,0,0,2,6,0% +2/8/2018 15:00,92.02875021,107.3287049,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606204698,1.873239282,22.44772694,-22.44772694,0,#DIV/0!,0,0,0.767907864,1,0.044518507,0,0.957074431,0.995836394,0.724496596,1,0,0,0.096204235,0.312029739,0.763645344,0.48814194,0.961238037,0.922476074,0,0,0,0,0,0,-0.305059646,107.7617524,0.305059646,72.2382476,0,0.886097627,0,0,0,2,7,0% +2/8/2018 16:00,80.9514811,116.8252381,88.01148877,342.7447349,34.10775092,33.74274417,0,33.74274417,33.07927639,0.663467779,50.92557554,28.55769659,22.36787895,1.028474535,21.33940441,1.41286988,2.038985054,-4.296481668,4.296481668,0.735104672,0.387537484,0.555827789,17.87733233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.7970587,0.745126299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.402695341,17.18437183,32.19975404,17.92949813,0,28.55769659,-0.083320599,94.77945967,0.083320599,85.22054033,0,0,32.19975404,17.92949813,43.93425198,2,8,36% +2/8/2018 17:00,70.97327679,127.627115,266.0280264,624.2665632,62.51143572,145.8006578,83.16874091,62.63191692,60.62648529,2.005431634,66.38652541,0,66.38652541,1.88495043,64.50157498,1.238717361,2.227513372,-1.552640528,1.552640528,0.795670858,0.234980639,1.691951084,54.41896291,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.2764837,1.36564017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.225812801,52.30957708,59.5022965,53.67521725,83.16874091,0,0.133226326,82.34393057,-0.133226326,97.65606943,0.674698801,0,115.6161463,53.67521725,150.7455025,2,9,30% +2/8/2018 18:00,62.45096798,140.4002668,420.7380744,741.9856093,77.56414927,325.3994118,247.0024065,78.39700531,75.22530399,3.171701326,104.3516626,0,104.3516626,2.338845282,102.0128173,1.089975012,2.450446926,-0.643043865,0.643043865,0.640120667,0.184352579,2.240697088,72.0685207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.30942352,1.694485445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623377413,69.27500336,73.93280094,70.96948881,247.0024065,0,0.332893797,70.5554884,-0.332893797,109.4445116,0.899801947,0,296.1860473,70.96948881,342.6341584,2,10,16% +2/8/2018 19:00,56.15212372,155.6050806,529.7001965,796.2696717,86.18611869,487.0146907,399.4342976,87.58039304,83.58728921,3.993103827,131.0307748,0,131.0307748,2.598829471,128.4319453,0.980039441,2.715820989,-0.114262792,0.114262792,0.549693778,0.162707356,2.487551599,80.00821031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.34728179,1.882843105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.802222665,76.90693501,82.14950446,78.78977812,399.4342976,0,0.501631937,59.89197307,-0.501631937,120.1080269,0.950325326,0,461.7420334,78.78977812,513.3083674,2,11,11% +2/8/2018 20:00,52.92010256,172.9805415,582.9919373,817.5762925,90.0522056,605.0529872,513.3213484,91.73163882,87.33679934,4.39483948,144.0685511,0,144.0685511,2.715406256,141.3531449,0.92363003,3.019079991,0.297217744,-0.297217744,0.479326462,0.154465611,2.460022904,79.12279288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95145354,1.967302589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.78227822,76.0558381,85.73373176,78.02314069,513.3213484,0,0.627857428,51.10777622,-0.627857428,128.8922238,0.970364086,0,583.8423329,78.02314069,634.9069181,2,12,9% +2/8/2018 21:00,53.33250864,191.1206041,576.3034477,815.0547754,89.57707579,664.160117,572.9397017,91.22041527,86.87599645,4.344418821,142.4325225,0,142.4325225,2.701079339,139.7314431,0.930827874,3.335683811,0.694217375,-0.694217375,0.411435527,0.155433871,2.18488808,70.27351114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.50851227,1.956922786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582943976,67.54957189,85.09145625,69.50649468,572.9397017,0,0.702946255,45.33613702,-0.702946255,134.663863,0.978870807,0,645.9254043,69.50649468,691.4160149,2,13,7% +2/8/2018 22:00,57.30860481,208.0998715,510.1674722,787.7018361,84.7187344,654.5608389,568.550829,86.01000988,82.16415198,3.845857901,126.2505926,0,126.2505926,2.554582421,123.6960101,1.000223844,3.632027931,1.159765141,-1.159765141,0.33182217,0.166060635,1.702869748,54.77014467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97930815,1.850786268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.233723336,52.64714634,80.21303148,54.49793261,568.550829,0,0.721784314,43.79800617,-0.721784314,136.2019938,0.980727228,0,637.8063102,54.49793261,673.4741171,2,14,6% +2/8/2018 23:00,64.17111935,222.7598949,390.0190801,723.2694491,74.9015308,569.6629035,494.0798017,75.58310186,72.64297329,2.940128571,96.82319897,0,96.82319897,2.258557511,94.56464145,1.119997317,3.887893608,1.836820413,-1.836820413,0.216038899,0.192045812,1.077837448,34.66695737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82718903,1.636317228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780889562,33.32319804,70.6080786,34.95951527,494.0798017,0,0.683119966,46.91206806,-0.683119966,133.0879319,0.976806414,0,553.2283979,34.95951527,576.1087015,2,15,4% +2/8/2018 0:00,73.07440073,235.0539602,227.4230432,582.4333936,57.85940695,401.2946771,343.4655338,57.82914332,56.11473235,1.714410964,56.88602444,0,56.88602444,1.744674598,55.14134985,1.275388892,4.102465525,3.174936496,-3.174936496,0,0.254413124,0.43616865,14.02868309,0.012630849,1,0.305130739,0,0.923563113,0.962325076,0.724496596,1,53.97314051,1.264010807,0.002147256,0.312029739,0.993929118,0.718425714,0.961238037,0.922476074,0.314872571,13.48490379,54.28801308,14.7489146,339.1272726,0,0.589707832,53.86372218,-0.589707832,126.1362778,0.96521225,0,381.617811,14.7489146,391.2706806,2,16,3% +2/8/2018 1:00,83.27559828,245.5228186,52.06922946,237.8217332,24.22180079,130.5857424,106.7017985,23.88394397,23.49142412,0.392519846,13.35516418,0,13.35516418,0.730376663,12.62478752,1.453433377,4.285181573,8.455538542,-8.455538542,0,0.465184544,0.182594166,5.872856031,0.478032628,1,0.117718875,0,0.949207061,0.987969024,0.724496596,1,22.77351542,0.529155406,0.066656184,0.312029739,0.828428101,0.552924697,0.961238037,0.922476074,0.125008405,5.645212602,22.89852383,6.174368008,55.69485734,0,0.448662942,63.342068,-0.448662942,116.657932,0.938557767,0,75.17136478,6.174368008,79.21236515,2,17,5% +2/8/2018 2:00,94.53122507,254.8424029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649881123,4.447839005,-12.57324383,12.57324383,0,#DIV/0!,0,0,1,0.404869956,0,0.079366902,0.961238037,1,0.524201605,0.799705009,0,0,0.115824807,0.085294062,0.724496596,0.448993192,0.991608716,0.952846753,0,0,0,0,0,0,0.265496206,74.60356049,-0.265496206,105.3964395,0.861673392,0,0,0,0,2,18,0% +2/8/2018 3:00,106.1488108,263.6864931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852646246,4.602197497,-3.355472792,3.355472792,0.896026668,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.05783684,86.68434288,-0.05783684,93.31565712,0,0,0,0,0,2,19,0% +2/8/2018 4:00,117.9665681,272.786877,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058905021,4.761029159,-1.736382765,1.736382765,0.827092631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162171996,99.33298915,0.162171996,80.66701085,0,0.741685363,0,0,0,2,20,0% +2/8/2018 5:00,129.6769167,283.1384674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26328916,4.941698495,-1.009422416,1.009422416,0.702775089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.379531119,112.3046421,0.379531119,67.69535787,0,0.918258497,0,0,0,2,21,0% +2/8/2018 6:00,140.8118467,296.4451384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45763035,5.173943717,-0.561737305,0.561737305,0.626216426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.579420721,125.4098095,0.579420721,54.59019046,0,0.963706918,0,0,0,2,22,0% +2/8/2018 7:00,150.3989319,315.9540891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624956554,5.51443914,-0.231484391,0.231484391,0.569739852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748210111,138.4355691,0.748210111,41.56443085,0,0.983173851,0,0,0,2,23,0% +2/9/2018 8:00,156.2400979,345.9733334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726904132,6.038373792,0.045811421,-0.045811421,0.522319475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874386425,150.9724422,0.874386425,29.02755782,0,0.992817045,0,0,0,2,0,0% +2/9/2018 9:00,155.3964654,21.82671708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712179967,0.380948078,0.305371273,-0.305371273,0.477932126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949339109,161.6842464,0.949339109,18.31575362,0,0.997331781,0,0,0,2,1,0% +2/9/2018 10:00,148.4065196,49.22402174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590182398,0.85912125,0.575053491,-0.575053491,0.431813751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967946812,165.4541144,0.967946812,14.54588559,0,0.998344269,0,0,0,2,2,0% +2/9/2018 11:00,138.3197266,66.89864497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414134649,1.16760162,0.889046073,-0.889046073,0.378117857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928926716,158.2681229,0.928926716,21.73187705,0,0.996174441,0,0,0,2,3,0% +2/9/2018 12:00,126.9835774,79.30100801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216281522,1.38406369,1.310379281,-1.310379281,0.306065635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834922519,146.6077712,0.834922519,33.3922288,0,0.990114204,0,0,0,2,4,0% +2/9/2018 13:00,115.2031157,89.23975458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010673677,1.557527541,2.006133374,-2.006133374,0.187084678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692325015,133.8144369,0.692325015,46.18556307,0,0.977779585,0,0,0,2,5,0% +2/9/2018 14:00,103.3888154,98.19531004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804475239,1.71383147,3.702693051,-3.702693051,0,#DIV/0!,0,0,0.093417945,1,0.263780522,0,0.929872625,0.968634588,0.724496596,1,0,0,0.015302504,0.312029739,0.957521449,0.682018045,0.961238037,0.922476074,0,0,0,0,0,0,-0.510837391,120.719624,0.510837391,59.28037596,0,0.952121495,0,0,0,2,6,0% +2/9/2018 15:00,91.83388588,107.0742158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602803673,1.86879761,24.91874235,-24.91874235,0,#DIV/0!,0,0,0.788637232,1,0.040108914,0,0.957508031,0.996269994,0.724496596,1,0,0,0.098087093,0.312029739,0.759754207,0.484250803,0.961238037,0.922476074,0,0,0,0,0,0,-0.302814749,107.6267422,0.302814749,72.37325782,0,0.884882547,0,0,0,2,7,0% +2/9/2018 16:00,80.73944364,116.5836318,91.5282287,351.7959254,34.91567685,34.55281882,0,34.55281882,33.86284037,0.68997845,51.66494502,28.42002982,23.24491521,1.052836482,22.19207873,1.409169128,2.034768229,-4.215254538,4.215254538,0.74899533,0.381474408,0.582857355,18.74669609,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.5502502,0.762776447,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.42227817,18.02003735,32.97252837,18.7828138,0,28.42002982,-0.080785557,94.633721,0.080785557,85.366279,0,0,32.97252837,18.7828138,45.26550434,2,8,37% +2/9/2018 17:00,70.73403411,127.4017613,270.4795843,628.9074889,62.96922525,148.7117217,85.60226153,63.10946013,61.07047077,2.038989357,67.47966119,0,67.47966119,1.898754473,65.58090672,1.234541788,2.223580208,-1.541348385,1.541348385,0.793739787,0.232805834,1.716336354,55.20327703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.70325944,1.375641152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243479846,53.06348964,59.94673928,54.43913079,85.60226153,0,0.136112645,82.17703635,-0.136112645,97.82296365,0.6826572,0,118.3837395,54.43913079,154.0130618,2,9,30% +2/9/2018 18:00,62.18110238,140.2048213,425.5844595,744.987983,77.91468006,329.1585238,250.3850234,78.7735004,75.56526498,3.208235424,105.5372945,0,105.5372945,2.349415078,103.1878795,1.085264969,2.447035759,-0.641810271,0.641810271,0.63990971,0.183076892,2.264481389,72.83350557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63620696,1.702143227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640609058,70.01033591,74.27681602,71.71247914,250.3850234,0,0.336092701,70.36100178,-0.336092701,109.6389982,0.901231521,0,299.9316914,71.71247914,346.8660748,2,10,16% +2/9/2018 19:00,55.85254148,155.4666151,534.7840499,798.618961,86.49950863,491.3051435,403.3824861,87.92265736,83.8912293,4.031428062,132.2728638,0,132.2728638,2.608279334,129.6645844,0.974810744,2.71340431,-0.1165335,0.1165335,0.550082092,0.161746613,2.510994277,80.76220743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.63944056,1.889689499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.819206806,77.63170572,82.45864737,79.52139522,403.3824861,0,0.505100061,59.66200512,-0.505100061,120.3379949,0.951009713,0,466.0793098,79.52139522,518.1244725,2,11,11% +2/9/2018 20:00,52.60143112,172.9319435,588.2003806,819.6937368,90.35447395,609.7294304,517.6653743,92.06405612,87.62995319,4.434102926,145.340513,0,145.340513,2.724520762,142.6159922,0.918068164,3.018231796,0.292724938,-0.292724938,0.480094777,0.153611723,2.482912799,79.85901057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.23324417,1.973906018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.798861871,76.76351854,86.03210604,78.73742456,517.6653743,0,0.63153511,50.8365288,-0.63153511,129.1634712,0.970827838,0,588.5960622,78.73742456,640.1281318,2,12,9% +2/9/2018 21:00,53.01440519,191.1759697,581.5287849,817.2112613,89.88287527,669.1286161,577.5722315,91.55638457,87.17257495,4.383809619,143.7086869,0,143.7086869,2.710300322,140.9983866,0.925275922,3.336650122,0.687328401,-0.687328401,0.412613611,0.154563072,2.206817895,70.97884939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.79359481,1.963603357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598832053,68.22756985,85.39242686,70.1911732,577.5722315,0,0.706760001,45.02809221,-0.706760001,134.9719078,0.979254627,0,650.9827069,70.1911732,696.9214259,2,13,7% +2/9/2018 22:00,57.00974098,208.2403119,515.2993445,790.1891898,85.0441414,659.766159,573.4018681,86.36429088,82.47974676,3.884544122,127.5046866,0,127.5046866,2.564394643,124.940292,0.995007686,3.634479078,1.149081862,-1.149081862,0.333649118,0.165038326,1.723271378,55.42633124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.28266985,1.857895189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.248504247,53.27789783,80.5311741,55.13579302,573.4018681,0,0.72565137,43.47693886,-0.72565137,136.5230611,0.981096389,0,643.0936761,55.13579302,679.1789499,2,14,6% +2/9/2018 23:00,63.90047173,222.9526957,394.9336864,726.600474,75.27904932,575.1269586,499.1406735,75.98628518,73.00910823,2.977176949,98.02618574,0,98.02618574,2.269941087,95.75624465,1.115273625,3.891258617,1.818042764,-1.818042764,0.219250066,0.190611872,1.095810332,35.24502709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17913187,1.64456459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.793910855,33.87886065,70.97304272,35.52342524,499.1406735,0,0.68695341,46.6105739,-0.68695341,133.3894261,0.97721486,0,558.7407262,35.52342524,581.9900975,2,15,4% +2/9/2018 0:00,72.83208639,235.274653,231.9203356,587.91326,58.38419416,407.2514721,348.8794634,58.37200874,56.62369529,1.748313453,57.99226932,0,57.99226932,1.760498869,56.23177045,1.271159709,4.106317342,3.13057946,-3.13057946,0,0.251742453,0.440124717,14.15592382,0.005179957,1,0.309185516,0,0.922925399,0.961687362,0.724496596,1,54.44292297,1.275475437,0.000883674,0.312029739,0.99749726,0.721993856,0.961238037,0.922476074,0.318395442,13.60721243,54.76131841,14.88268786,347.0722829,0,0.59341996,53.59992357,-0.59341996,126.4000764,0.965742639,0,389.9438207,14.88268786,399.6842423,2,16,2% +2/9/2018 1:00,83.05919654,245.7598269,55.23493077,248.5412229,25.20026365,137.2322957,112.3755287,24.85676696,24.44038272,0.416384239,14.15222938,0,14.15222938,0.759880928,13.39234845,1.449656454,4.289318149,8.192016734,-8.192016734,0,0.456237806,0.189970232,6.110095681,0.46545894,1,0.121469101,0,0.948770409,0.987532372,0.724496596,1,23.69471324,0.550531146,0.065221669,0.312029739,0.831750623,0.556247219,0.961238037,0.922476074,0.130031345,5.873256378,23.82474458,6.423787523,60.06933423,0,0.452140403,63.11890686,-0.452140403,116.8810931,0.939414882,0,80.25477109,6.423787523,84.45901155,2,17,5% +2/9/2018 2:00,94.32823585,255.0934508,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646338293,4.452220616,-13.16031157,13.16031157,0,#DIV/0!,0,0,1,0.438422939,0,0.075840303,0.961238037,1,0.532041636,0.80754504,0,0,0.115824807,0.094146452,0.724496596,0.448993192,0.990639272,0.951877309,0,0,0,0,0,0,0.26877928,74.4083602,-0.26877928,105.5916398,0.863973756,0,0,0,0,2,18,0% +2/9/2018 3:00,105.9556173,263.9551061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849274383,4.606885679,-3.394404887,3.394404887,0.889368887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.060823361,86.51292581,-0.060823361,93.48707419,0,0,0,0,0,2,19,0% +2/9/2018 4:00,117.7749906,273.0804799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055561362,4.766153498,-1.746697757,1.746697757,0.828856598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159505814,99.1782131,0.159505814,80.8217869,0,0.736531803,0,0,0,2,20,0% +2/9/2018 5:00,129.4763427,283.4665395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259788483,4.947424433,-1.012826991,1.012826991,0.703357306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377186859,112.1595387,0.377186859,67.84046126,0,0.917439709,0,0,0,2,21,0% +2/9/2018 6:00,140.5870097,296.8110951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453706204,5.180330867,-0.562437286,0.562437286,0.62633613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577377673,125.2663127,0.577377673,54.73368729,0,0.96340157,0,0,0,2,22,0% +2/9/2018 7:00,150.1295035,316.3135878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62025414,5.520713576,-0.230730165,0.230730165,0.569610872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746426724,138.2817905,0.746426724,41.71820946,0,0.983014188,0,0,0,2,23,0% +2/10/2018 8:00,155.9222015,346.1178991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.721355792,6.04089694,0.047623614,-0.047623614,0.522009572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872803191,150.7860407,0.872803191,29.2139593,0,0.992713317,0,0,0,2,0,0% +2/10/2018 9:00,155.0896245,21.58260489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.706824583,0.376687516,0.308224984,-0.308224984,0.477444113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94788268,161.4205376,0.94788268,18.57946242,0,0.997250856,0,0,0,2,1,0% +2/10/2018 10:00,148.1545253,48.83791403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585784268,0.8523824,0.579238698,-0.579238698,0.431098038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966535065,165.1354673,0.966535065,14.86453267,0,0.998268819,0,0,0,2,2,0% +2/10/2018 11:00,138.1087314,66.53012851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410452089,1.161169794,0.895329279,-0.895329279,0.377043365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927474421,158.0444846,0.927474421,21.95551537,0,0.996090157,0,0,0,2,3,0% +2/10/2018 12:00,126.7932027,78.97333117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212958857,1.37834465,1.320694065,-1.320694065,0.304301703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833347214,146.444129,0.833347214,33.55587097,0,0.990000999,0,0,0,2,4,0% +2/10/2018 13:00,115.0190272,88.94517743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007460727,1.5523862,2.026580889,-2.026580889,0.183587947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690552685,133.6738746,0.690552685,46.32612541,0,0.977594228,0,0,0,2,5,0% +2/10/2018 14:00,103.2008917,97.92377835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801195351,1.709092348,3.766862024,-3.766862024,0,#DIV/0!,0,0,0.102348158,1,0.259487602,0,0.930507193,0.969269157,0.724496596,1,0,0,0.016697969,0.312029739,0.953738864,0.67823546,0.961238037,0.922476074,0,0,0,0,0,0,-0.508807559,120.5844345,0.508807559,59.41556554,0,0.95173102,0,0,0,2,6,0% +2/10/2018 15:00,91.63404878,106.8185205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599315858,1.864334884,28.06219485,-28.06219485,0,#DIV/0!,0,0,0.810202175,1,0.035620059,0,0.957944661,0.996706624,0.724496596,1,0,0,0.10001693,0.312029739,0.755795527,0.480292123,0.961238037,0.922476074,0,0,0,0,0,0,-0.300484637,107.4867139,0.300484637,72.51328615,0,0.883602142,0,0,0,2,7,0% +2/10/2018 16:00,80.52251671,116.3408426,95.15360998,360.8996253,35.72788056,35.36786125,0,35.36786125,34.65055314,0.717308105,52.35874035,28.21031854,24.14842181,1.077327421,23.07109439,1.405383039,2.030530759,-4.135452869,4.135452869,0.762642219,0.375475829,0.610977456,19.65113522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.30742968,0.780520049,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442651087,18.88941864,33.75008077,19.66993869,0,28.21031854,-0.078166661,94.48319309,0.078166661,85.51680691,0,0,33.75008077,19.66993869,46.62366224,2,8,38% +2/10/2018 17:00,70.48998843,127.1754198,275.0193051,633.5538053,63.43034824,151.7037735,88.11287255,63.5909009,61.51768921,2.07321169,68.59427361,0,68.59427361,1.912659032,66.68161458,1.230282388,2.219629804,-1.529905348,1.529905348,0.791782913,0.230639621,1.741095664,55.99962154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.13314281,1.385714958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261417882,53.82896627,60.39456069,55.21468123,88.11287255,0,0.139077174,82.00555021,-0.139077174,97.99444979,0.690487373,0,121.2353866,55.21468123,157.3722912,2,9,30% +2/10/2018 18:00,61.90645324,140.0089476,430.506363,747.9906616,78.26819258,332.9929558,253.8394992,79.15345661,75.9081178,3.245338811,106.7413267,0,106.7413267,2.360074785,104.3812519,1.080471437,2.443617118,-0.640445567,0.640445567,0.639676332,0.181804961,2.288564127,73.60808922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96577013,1.709866148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65805692,70.75489517,74.62382705,72.46476132,253.8394992,0,0.339361856,70.16200033,-0.339361856,109.8379997,0.902664644,0,303.7557681,72.46476132,351.1825051,2,10,16% +2/10/2018 19:00,55.54826307,155.3289796,539.9302874,800.9645205,86.81517976,495.6607633,407.3931589,88.26760435,84.19738177,4.070222574,133.5301473,0,133.5301473,2.617797984,130.9123493,0.969500084,2.711002117,-0.118701882,0.118701882,0.550452907,0.160789609,2.534671716,81.52375528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.93372597,1.896585728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.83636103,78.36373448,82.770087,80.26032021,407.3931589,0,0.508628221,59.42750066,-0.508628221,120.5724993,0.951696371,0,470.4846778,80.26032021,523.0134522,2,11,11% +2/10/2018 20:00,52.27844194,172.8862586,593.4578185,821.8034071,90.65819379,614.4579293,522.0596788,92.39825047,87.92451476,4.473735713,146.6243979,0,146.6243979,2.733679036,143.8907189,0.91243094,3.017434444,0.288325137,-0.288325137,0.480847187,0.152762658,2.505982524,80.60101223,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.51638796,1.980541156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815575808,77.47675877,86.33196376,79.45729992,522.0596788,0,0.63526103,50.56065274,-0.63526103,129.4393473,0.971292197,0,593.4044562,79.45729992,645.4076698,2,12,9% +2/10/2018 21:00,52.69281804,191.2364003,586.7903655,819.3547651,90.18918687,674.1343339,582.2412101,91.89312376,87.46965013,4.423473637,144.9936545,0,144.9936545,2.719536747,142.2741178,0.919663167,3.337704835,0.680543869,-0.680543869,0.413773834,0.153699161,2.228883546,71.68855657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.07915477,1.970295115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614818542,68.90976739,85.69397331,70.8800625,582.2412101,0,0.710609415,44.71547936,-0.710609415,135.2845206,0.979637859,0,656.0795057,70.8800625,702.469089,2,13,7% +2/10/2018 22:00,56.7084912,208.3869471,520.4563944,792.654988,85.36890707,664.9929438,578.2748041,86.71813969,82.79471955,3.923420142,128.764866,0,128.764866,2.574187526,126.1906784,0.989749885,3.637038346,1.138551175,-1.138551175,0.335449972,0.164027012,1.743780273,56.0859678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.58543368,1.8649901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263362872,53.91196558,80.84879655,55.77695568,578.2748041,0,0.72954162,43.15201979,-0.72954162,136.8479802,0.981463814,0,648.4045915,55.77695568,684.9094935,2,14,6% +2/10/2018 23:00,63.62842607,223.15173,399.8654832,729.8921837,75.65413667,580.5957001,504.2084599,76.38724023,73.37288532,3.014354916,99.23326724,0,99.23326724,2.281251355,96.95201589,1.110525533,3.894732421,1.799577856,-1.799577856,0.222407751,0.189198968,1.113886742,35.82642658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.52880824,1.652758841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807007153,34.43772395,71.33581539,36.09048279,504.2084599,0,0.690798547,46.30664594,-0.690798547,133.6933541,0.977619998,0,564.2600891,36.09048279,587.8805883,2,15,4% +2/10/2018 0:00,72.58905593,235.5011299,236.4337488,593.3077531,58.90238964,413.192934,354.2843313,58.90860274,57.12626527,1.782337469,59.10222412,0,59.10222412,1.776124374,57.32609974,1.266918027,4.110270108,3.087311946,-3.087311946,0.002192252,0.249128519,0.446964999,14.3759308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.91193908,1.286796063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.32382462,13.8186915,55.2357637,15.10548757,354.2843313,0,0.597134168,53.33507793,-0.597134168,126.6649221,0.966266724,0,397.5689239,15.10548757,407.4551634,2,16,2% +2/10/2018 1:00,82.84232763,246.0021268,58.45953197,259.173645,26.16642629,143.9014965,118.0833919,25.81810464,25.37741199,0.440692645,14.96320464,0,14.96320464,0.789014296,14.17419035,1.445871377,4.29354708,7.943743921,-7.943743921,0,0.44759897,0.197253574,6.344352997,0.453045764,1,0.125226507,0,0.94832968,0.987091643,0.724496596,1,24.60418001,0.571638172,0.063791492,0.312029739,0.835079405,0.559576001,0.961238037,0.922476074,0.134998699,6.09843342,24.73917871,6.670071592,64.58621138,0,0.455614968,62.8954907,-0.455614968,117.1045093,0.940258215,0,85.4668945,6.670071592,89.83232296,2,17,5% +2/10/2018 2:00,94.12509235,255.3494256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64279277,4.45668822,-13.80517839,13.80517839,0,#DIV/0!,0,0,1,0.471173184,0,0.072310291,0.961238037,1,0.539988684,0.815492088,0,0,0.115824807,0.103117644,0.724496596,0.448993192,0.989638201,0.950876238,0,0,0,0,0,0,0.272052243,74.21357614,-0.272052243,105.7864239,0.866211771,0,0,0,0,2,18,0% +2/10/2018 3:00,105.7622097,264.2284417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845898783,4.611656284,-3.434160354,3.434160354,0.882570302,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063798508,86.34213049,-0.063798508,93.65786951,0,0,0,0,0,2,19,0% +2/10/2018 4:00,117.5829384,273.3787335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052209419,4.771359004,-1.757058696,1.757058696,0.830628423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.15684896,99.02404567,0.15684896,80.97595433,0,0.731221987,0,0,0,2,20,0% +2/10/2018 5:00,129.2748117,283.7992263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256271104,4.953230913,-1.016184927,1.016184927,0.703931547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374846712,112.014839,0.374846712,67.98516095,0,0.916612142,0,0,0,2,21,0% +2/10/2018 6:00,140.3604874,297.1814052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449752644,5.186793997,-0.563069654,0.563069654,0.626444272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575330716,125.1227958,0.575330716,54.87720424,0,0.963093463,0,0,0,2,22,0% +2/10/2018 7:00,149.8575062,316.6767222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615506892,5.527051467,-0.229898466,0.229898466,0.569468643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744629154,138.127256,0.744629154,41.87274402,0,0.982852481,0,0,0,2,23,0% +2/11/2018 8:00,155.6008465,346.2680322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.71574709,6.043517256,0.049524172,-0.049524172,0.521684557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.871193955,150.5976826,0.871193955,29.4023174,0,0.992607499,0,0,0,2,0,0% +2/11/2018 9:00,154.7776847,21.348129,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701380206,0.37259514,0.311184392,-0.311184392,0.476938024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9463877,161.1535524,0.9463877,18.84644764,0,0.99716753,0,0,0,2,1,0% +2/11/2018 10:00,147.8963662,48.45723773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581278542,0.845738345,0.583560297,-0.583560297,0.430359001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965072356,164.8122122,0.965072356,15.18778785,0,0.998190413,0,0,0,2,2,0% +2/11/2018 11:00,137.8916427,66.16325787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406663176,1.154766694,0.901808616,-0.901808616,0.375935334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925959747,157.8135244,0.925959747,22.18647556,0,0.996001972,0,0,0,2,3,0% +2/11/2018 12:00,126.5971068,78.64562703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209536337,1.372625134,1.331341277,-1.331341277,0.302480922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831699894,146.2737563,0.831699894,33.72624371,0,0.989882161,0,0,0,2,4,0% +2/11/2018 13:00,114.8295732,88.64988326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004154131,1.547232344,2.047780484,-2.047780484,0.179962602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688701153,133.5273816,0.688701153,46.47261842,0,0.97739957,0,0,0,2,5,0% +2/11/2018 14:00,103.0078815,97.65123661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797826688,1.704335597,3.834366872,-3.834366872,0,#DIV/0!,0,0,0.111554674,1,0.255116553,0,0.931149305,0.969911269,0.724496596,1,0,0,0.018124894,0.312029739,0.949886784,0.674383379,0.961238037,0.922476074,0,0,0,0,0,0,-0.506694285,120.4438875,0.506694285,59.55611247,0,0.951321169,0,0,0,2,6,0% +2/11/2018 15:00,91.42932581,106.5616985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595742768,1.859852495,32.19093342,-32.19093342,0,#DIV/0!,0,0,0.832630945,1,0.031054661,0,0.958383798,0.997145761,0.724496596,1,0,0,0.101993474,0.312029739,0.751772058,0.476268654,0.961238037,0.922476074,0,0,0,0,0,0,-0.298070084,107.3417247,0.298070084,72.65827529,0,0.882254216,0,0,0,2,7,0% +2/11/2018 16:00,80.30079427,116.0969292,98.88635056,370.0418691,36.54328205,36.18681434,0,36.18681434,35.44136726,0.74544708,53.00328403,27.92522868,25.07805534,1.101914784,23.97614056,1.401513252,2.026273666,-4.057132341,4.057132341,0.776035818,0.369548293,0.640190996,20.59074306,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.06759029,0.79833351,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.463816197,19.79260544,34.53140649,20.59093895,0,27.92522868,-0.075465051,94.32794352,0.075465051,85.67205648,0,0,34.53140649,20.59093895,48.00776421,2,8,39% +2/11/2018 17:00,70.24124259,126.9481281,279.6449506,638.200893,63.89439379,154.7759026,90.70007879,64.07582383,61.96774207,2.10808176,69.72980761,0,69.72980761,1.926651718,67.80315589,1.225940954,2.215662814,-1.518329772,1.518329772,0.789803373,0.228483989,1.766214007,56.8075138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.56575073,1.395852611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.279616036,54.60554304,60.84536677,56.00139565,90.70007879,0,0.142118383,81.82955348,-0.142118383,98.17044652,0.698180629,0,124.1704048,56.00139565,160.8221983,2,9,30% +2/11/2018 18:00,61.62712931,139.8126641,435.5011563,750.9911797,78.62440572,336.9008056,257.3642242,79.53658146,76.25358979,3.282991672,107.9631133,0,107.9631133,2.370815926,105.5922974,1.075596315,2.440191325,-0.63895494,0.63895494,0.63942142,0.180537766,2.312931556,74.39182949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29785095,1.717648067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675711039,71.50825614,74.97356199,73.2259042,257.3642242,0,0.342699397,69.95857851,-0.342699397,110.0414215,0.904099539,0,307.6564384,73.2259042,355.5813282,2,10,16% +2/11/2018 19:00,55.23939992,155.1921857,545.1360817,803.3047074,87.13289665,500.0791306,411.4641462,88.61498438,84.50551833,4.10946605,134.8019327,0,134.8019327,2.62737832,132.1745544,0.964109405,2.708614613,-0.120769308,0.120769308,0.550806458,0.159836965,2.558570781,82.29243136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.22991855,1.903526649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853675821,79.10261517,83.08359437,81.00614182,411.4641462,0,0.512214285,59.18856498,-0.512214285,120.811435,0.952384604,0,474.9557125,81.00614182,527.9726122,2,11,11% +2/11/2018 20:00,51.95124956,172.8435125,598.7613595,823.9040403,90.9631522,619.2357635,526.50177,92.73399359,88.22027754,4.513716046,147.9194985,0,147.9194985,2.742874657,145.1766238,0.906720355,3.016688383,0.284018497,-0.284018497,0.481583666,0.151918875,2.529219677,81.34839896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.8006864,1.987203352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.832411046,78.19517531,86.63309744,80.18237867,526.50177,0,0.639032878,50.28025862,-0.639032878,129.7197414,0.971756764,0,598.2647539,80.18237867,650.7425171,2,12,9% +2/11/2018 21:00,52.36786852,191.301933,592.0853543,821.4842141,90.49581395,679.1744055,586.9439848,92.23042077,87.76703127,4.463389498,146.2867318,0,146.2867318,2.728782685,143.5579491,0.913991728,3.338848597,0.673864669,-0.673864669,0.414916044,0.152842514,2.251073657,72.40226681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36500884,1.976993766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630895201,69.59581282,85.99590404,71.57280658,586.9439848,0,0.714492104,44.39840929,-0.714492104,135.6015907,0.98002022,0,661.2128773,71.57280658,708.0558478,2,13,7% +2/11/2018 22:00,56.40497998,208.5397924,525.6359492,795.0982635,85.69285218,670.238323,583.1669607,87.07136233,83.10889651,3.962465815,130.0304772,0,130.0304772,2.583955666,127.4465215,0.984452615,3.639705999,1.128174085,-1.128174085,0.337224559,0.163027001,1.764386374,56.74873084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88743253,1.872067084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278291922,54.54903863,81.16572445,56.42110571,583.1669607,0,0.733452691,42.82336831,-0.733452691,137.1766317,0.981829277,0,653.73612,56.42110571,690.6626053,2,14,6% +2/11/2018 23:00,63.3550989,223.3569726,404.81204,733.1437311,76.02664144,586.0663839,509.280582,76.78580184,73.73415769,3.051644151,100.4438496,0,100.4438496,2.292483748,98.15136585,1.105755074,3.898314579,1.781424451,-1.781424451,0.225512167,0.187807263,1.132058077,36.41087917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.87607699,1.660896671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820172223,34.99952202,71.69624921,36.66041869,509.280582,0,0.694653123,46.000418,-0.694653123,133.999582,0.978021629,0,569.7836738,36.66041869,593.7771846,2,15,4% +2/11/2018 0:00,72.34540958,235.7333314,240.9610439,598.6163438,59.41391426,419.1165081,359.6776765,59.43883166,57.62236553,1.816466132,60.21534358,0,60.21534358,1.791548729,58.42379485,1.262665596,4.114322789,3.045107542,-3.045107542,0.009409631,0.246570621,0.460765005,14.81978642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.38880952,1.297970955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333822677,14.24534241,55.7226322,15.54331336,359.6776765,0,0.600848407,53.0693155,-0.600848407,126.9306845,0.966784335,0,403.4533753,15.54331336,413.626163,2,16,3% +2/11/2018 1:00,82.62508159,246.249636,61.7391009,269.7047262,27.11940472,150.5843886,123.8173186,26.76707003,26.30165461,0.465415421,15.78710992,0,15.78710992,0.817750112,14.9693598,1.442079718,4.297866931,7.709506922,-7.709506922,0,0.439258174,0.204437528,6.575413651,0.44079396,1,0.128989795,0,0.947885016,0.986646979,0.724496596,1,25.50105696,0.592457173,0.062366094,0.312029739,0.838413251,0.562909847,0.961238037,0.922476074,0.139906839,6.32053771,25.6409638,6.912994882,69.23939237,0,0.45908472,62.67193812,-0.45908472,117.3280619,0.941087641,0,90.80130019,6.912994882,95.32571708,2,17,5% +2/11/2018 2:00,93.92185542,255.6102287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639245617,4.461240093,-14.51666178,14.51666178,0,#DIV/0!,0,0,1,0.503142391,0,0.068777707,0.961238037,1,0.548041012,0.823544416,0,0,0.115824807,0.112206609,0.724496596,0.448993192,0.988604959,0.949842996,0,0,0,0,0,0,0.275313692,74.01929096,-0.275313692,105.980709,0.868388982,0,0,0,0,2,18,0% +2/11/2018 3:00,105.5686312,264.5063849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842520202,4.61650731,-3.474758879,3.474758879,0.875627546,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.066761258,86.17201448,-0.066761258,93.82798552,0,0,0,0,0,2,19,0% +2/11/2018 4:00,117.39044,273.6815011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048849689,4.776643296,-1.767464221,1.767464221,0.832407873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.154202067,98.87052172,0.154202067,81.12947828,0,0.725750132,0,0,0,2,20,0% +2/11/2018 5:00,129.0723419,284.1363566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252737339,4.959114948,-1.019495186,1.019495186,0.704497634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.372510942,111.8705572,0.372510942,68.12944284,0,0.915775755,0,0,0,2,21,0% +2/11/2018 6:00,140.1322972,297.5558401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445769975,5.193329118,-0.563633956,0.563633956,0.626540773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.57327979,124.9792536,0.57327979,55.02074639,0,0.962782552,0,0,0,2,22,0% +2/11/2018 7:00,149.582979,317.0431947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610715489,5.533447618,-0.228989163,0.228989163,0.569313143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742817081,137.9719438,0.742817081,42.02805621,0,0.982688678,0,0,0,2,23,0% +2/12/2018 8:00,155.2761246,346.4233923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.710079623,6.046228802,0.051513083,-0.051513083,0.521344434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869558223,150.4073427,0.869558223,29.59265732,0,0.992499537,0,0,0,2,0,0% +2/12/2018 9:00,154.4607955,21.12312151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695849447,0.368668019,0.314249506,-0.314249506,0.476413859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944853599,160.8833177,0.944853599,19.11668232,0,0.997081749,0,0,0,2,1,0% +2/12/2018 10:00,147.632172,48.08215515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576667484,0.839191919,0.588018582,-0.588018582,0.42959659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96355814,164.4845036,0.96355814,15.51549639,0,0.998108995,0,0,0,2,2,0% +2/12/2018 11:00,137.6685552,65.7982379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402769565,1.148395893,0.908485322,-0.908485322,0.37479355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924382272,157.5753905,0.924382272,22.42460947,0,0.995909824,0,0,0,2,3,0% +2/12/2018 12:00,126.3953695,78.31806264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206015356,1.366908057,1.342325449,-1.342325449,0.300602518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829980355,146.0967201,0.829980355,33.90327993,0,0.98975761,0,0,0,2,4,0% +2/12/2018 13:00,114.6348313,88.35400175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000755244,1.542068238,2.069752542,-2.069752542,0.176205159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686770507,133.375007,0.686770507,46.62499296,0,0.977195476,0,0,0,2,5,0% +2/12/2018 14:00,102.8098667,97.37778589,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794370677,1.699562982,3.905405968,-3.905405968,0,#DIV/0!,0,0,0.12104144,1,0.250669624,0,0.931798405,0.970560368,0.724496596,1,0,0,0.019582959,0.312029739,0.945967128,0.670463724,0.961238037,0.922476074,0,0,0,0,0,0,-0.504498007,120.2980346,0.504498007,59.70196539,0,0.950891581,0,0,0,2,6,0% +2/12/2018 15:00,91.21980573,106.3038279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592085953,1.855351804,37.84786815,-37.84786815,0,#DIV/0!,0,0,0.855953713,1,0.026415422,0,0.958824927,0.99758689,0.724496596,1,0,0,0.104016463,0.312029739,0.747686566,0.472183162,0.961238037,0.922476074,0,0,0,0,0,0,-0.29557191,107.1918347,0.29557191,72.80816525,0,0.880836428,0,0,0,2,7,0% +2/12/2018 16:00,80.07437205,115.8519486,102.7250168,379.2091238,37.36084826,37.00866541,0,37.00866541,36.23428084,0.774384568,53.59508279,27.56164574,26.03343704,1.126567422,24.90686962,1.397561439,2.021997947,-3.980337302,3.980337302,0.789168543,0.36369766,0.670498904,21.56554957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.82976898,0.816194262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.485774173,20.72962653,35.31554315,21.54582079,0,27.56164574,-0.072681916,94.16804228,0.072681916,85.83195772,0,0,35.31554315,21.54582079,49.41685195,2,8,40% +2/12/2018 17:00,69.98790076,126.7199222,284.3542334,642.8443292,64.36096502,157.9271341,93.3633073,64.56382678,62.42024446,2.143582323,70.88569658,0,70.88569658,1.940720562,68.94497602,1.221519305,2.21167987,-1.50663923,1.50663923,0.787804172,0.226340801,1.791676299,57.62646863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.00071324,1.406045441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29806338,55.39275358,61.29877662,56.79879902,93.3633073,0,0.145234706,81.64912926,-0.145234706,98.35087074,0.705729672,0,127.1880328,56.79879902,164.3617108,2,9,29% +2/12/2018 18:00,61.34324036,139.615988,440.5661829,753.9871753,78.98304487,340.8801364,260.9575477,79.92258863,76.60141465,3.321173982,109.202002,0,109.202002,2.381630219,106.8203717,1.070641518,2.436758679,-0.637343549,0.637343549,0.639145856,0.179276231,2.337569871,75.18428238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.63219344,1.725482986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693561414,72.269992,75.32575485,73.99547498,260.9575477,0,0.34610343,69.7508322,-0.34610343,110.2491678,0.905534515,0,311.6318212,73.99547498,360.0603797,2,10,16% +2/12/2018 19:00,54.9260642,155.0562438,550.3985899,805.6379505,87.45242842,504.5578071,415.593255,88.9645521,84.81541504,4.14913706,136.0875238,0,136.0875238,2.637013382,133.4505104,0.958640665,2.706241981,-0.122737247,0.122737247,0.551142995,0.158889267,2.582678308,83.06781229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52780305,1.910507219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.871141643,79.84794081,83.39894469,81.75844803,415.593255,0,0.515856105,58.9453046,-0.515856105,121.0546954,0.953073746,0,479.4899649,81.75844803,532.999234,2,11,11% +2/12/2018 20:00,51.61996912,172.8037306,604.1081075,825.9944336,91.26914035,624.060207,530.9891458,93.07106111,88.51703902,4.554022091,149.2251061,0,149.2251061,2.752101329,146.4730048,0.900938421,3.015994059,0.279805023,-0.279805023,0.482304213,0.151080807,2.552611855,82.1007718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.08594482,1.993888044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849358599,78.91838471,86.93530342,80.91227275,530.9891458,0,0.642848334,49.99545799,-0.642848334,130.004542,0.972221156,0,603.1741849,80.91227275,656.1296491,2,12,9% +2/12/2018 21:00,52.03967854,191.3726053,597.4109195,823.5985952,90.80256424,684.2459733,591.6779055,92.56806776,88.0645319,4.503535858,147.5872263,0,147.5872263,2.738032338,144.849194,0.908263732,3.34008206,0.667291496,-0.667291496,0.416040123,0.151993479,2.27337687,73.11961481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.65097776,1.983695108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647053803,70.285355,86.29803156,72.26905011,591.6779055,0,0.718405676,44.07699351,-0.718405676,135.9230065,0.980401441,0,666.3799026,72.26905011,713.6785505,2,13,7% +2/12/2018 22:00,56.09933218,208.698862,530.8353469,797.5181167,86.01580262,675.4994461,588.0756762,87.42376987,83.4221088,4.001661071,131.3008695,0,131.3008695,2.593693813,128.7071757,0.979118055,3.642482286,1.117951319,-1.117951319,0.338972754,0.162038574,1.785079645,57.41429755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1885041,1.879122339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.293284126,55.18880667,81.48178822,57.06792901,588.0756762,0,0.737382216,42.4911046,-0.737382216,137.5088954,0.982192561,0,659.0853424,57.06792901,696.4351606,2,14,6% +2/12/2018 23:00,63.08060663,223.5683966,409.7709404,736.3543564,76.39641878,591.5362998,514.3544885,77.18181132,74.09278488,3.089026437,101.6573426,0,101.6573426,2.303633899,99.35370867,1.10096428,3.902004623,1.763580922,-1.763580922,0.22856359,0.186436888,1.150315738,36.99810831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.22080308,1.668974918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.833399836,35.563989,72.05420292,37.23296391,514.3544885,0,0.698514898,45.6920248,-0.698514898,134.3079752,0.978419565,0,575.308698,37.23296391,599.6769282,2,15,4% +2/12/2018 0:00,72.10124693,235.9711967,245.4999991,603.8386517,59.9186987,425.0197003,365.0570888,59.96261155,58.11192886,1.850682693,61.33108693,0,61.33108693,1.806769842,59.52431709,1.258404154,4.118474322,3.003939992,-3.003939992,0.016449696,0.24406802,0.474705425,15.26815826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.85939641,1.3089986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343922464,14.67633447,56.20331888,15.98533307,365.0570888,0,0.604560652,52.80276667,-0.604560652,127.1972333,0.967295312,0,409.3213295,15.98533307,419.7834103,2,16,3% +2/12/2018 1:00,82.40754684,246.5022712,65.06978635,280.1218663,28.05845257,157.2726574,129.5697472,27.70291023,27.2123867,0.490523535,16.62298892,0,16.62298892,0.84606587,15.77692305,1.438283021,4.302276245,7.488214144,-7.488214144,0,0.431205543,0.211516467,6.803096675,0.428704083,1,0.132757717,0,0.947436557,0.98619852,0.724496596,1,26.38461605,0.612971842,0.060945894,0.312029739,0.841751011,0.566247607,0.961238037,0.922476074,0.144752784,6.539395292,26.52936883,7.152367135,74.02266756,0,0.462547779,62.44836637,-0.462547779,117.5516336,0.941903059,0,96.25154584,7.152367135,100.9326271,2,17,5% +2/12/2018 2:00,93.71858491,255.8757605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635697877,4.465874497,-15.30547616,15.30547616,0,#DIV/0!,0,0,1,0.534351857,0,0.06524336,0.961238037,1,0.556196858,0.831700262,0,0,0.115824807,0.121412256,0.724496596,0.448993192,0.987539015,0.948777052,0,0,0,0,0,0,0.278562247,73.82558614,-0.278562247,106.1744139,0.870506905,0,0,0,0,2,18,0% +2/12/2018 3:00,105.3749245,264.7888207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839139381,4.621436744,-3.51622106,3.51622106,0.868537095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069710613,86.00263406,-0.069710613,93.99736594,0,0,0,0,0,2,19,0% +2/12/2018 4:00,117.1975235,273.9886466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04548266,4.782003996,-1.777913019,1.777913019,0.834194722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.151565749,98.71767491,0.151565749,81.28232509,0,0.720110164,0,0,0,2,20,0% +2/12/2018 5:00,128.8689511,284.4777601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249187501,4.965073563,-1.022756766,1.022756766,0.705055397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370179798,111.7267063,0.370179798,68.27329368,0,0.914930501,0,0,0,2,21,0% +2/12/2018 6:00,139.9024572,297.9341742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44175851,5.199932293,-0.564129764,0.564129764,0.626625561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571224826,124.8356808,0.571224826,55.1643192,0,0.96246879,0,0,0,2,22,0% +2/12/2018 7:00,149.305962,317.4127161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60588063,5.539896984,-0.228002147,0.228002147,0.569144353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740990188,137.8158328,0.740990188,42.18416717,0,0.982522723,0,0,0,2,23,0% +2/13/2018 8:00,154.948127,346.5836509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704354987,6.049025843,0.053590321,-0.053590321,0.520989205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867895514,150.214998,0.867895514,29.78500195,0,0.992389378,0,0,0,2,0,0% +2/13/2018 9:00,154.139106,20.9074039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690234906,0.364903036,0.317420337,-0.317420337,0.475871615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943279829,160.609864,0.943279829,19.39013598,0,0.99699346,0,0,0,2,1,0% +2/13/2018 10:00,147.3620753,47.71281025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571953406,0.832745634,0.592613864,-0.592613864,0.42881075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961991901,164.1524931,0.961991901,15.84750686,0,0.99802451,0,0,0,2,2,0% +2/13/2018 11:00,137.4395678,65.43526355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39877298,1.142060796,0.915360703,-0.915360703,0.37361779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922741615,157.3302367,0.922741615,22.6697633,0,0.99581365,0,0,0,2,3,0% +2/13/2018 12:00,126.1880741,77.99079976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20239737,1.361196242,1.35365135,-1.35365135,0.298665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828188436,145.9130938,0.828188436,34.08690619,0,0.989627266,0,0,0,2,4,0% +2/13/2018 13:00,114.434882,88.0576594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99726547,1.536896088,2.092518643,-2.092518643,0.172311926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684760882,133.2168048,0.684760882,46.78319519,0,0.97698181,0,0,0,2,5,0% +2/13/2018 14:00,102.6069311,97.10352499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790828783,1.694776226,3.98019603,-3.98019603,0,#DIV/0!,0,0,0.130812629,1,0.246149056,0,0.932453941,0.971215904,0.724496596,1,0,0,0.021071851,0.312029739,0.941981814,0.66647841,0.961238037,0.922476074,0,0,0,0,0,0,-0.502219209,120.1469306,0.502219209,59.85306941,0,0.95044188,0,0,0,2,6,0% +2/13/2018 15:00,91.00557915,106.044985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588346994,1.850834144,46.06504278,-46.06504278,0,#DIV/0!,0,0,0.880202686,1,0.021705026,0,0.959267541,0.998029504,0.724496596,1,0,0,0.106085649,0.312029739,0.743541833,0.468038429,0.961238037,0.922476074,0,0,0,0,0,0,-0.292990979,107.0371067,0.292990979,72.96289328,0,0.879346282,0,0,0,2,7,0% +2/13/2018 16:00,79.84334756,115.6059563,106.6680292,388.3883376,38.17959519,37.83244819,0,37.83244819,37.02833953,0.804108661,54.13084044,27.11668614,27.01415431,1.151255663,25.86289864,1.393529301,2.017704573,-3.905101876,3.905101876,0.802034559,0.357929133,0.701900144,22.57552139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.59304839,0.834080809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.508524265,21.70044987,36.10157266,22.53453068,0,27.11668614,-0.069818487,94.00356179,0.069818487,85.99643821,0,0,36.10157266,22.53453068,50.8499723,2,8,41% +2/13/2018 17:00,69.7300684,126.4908367,289.1448179,647.4798898,64.82967907,161.1564271,96.10190625,65.05452082,62.87482505,2.179695772,72.06136272,0,72.06136272,1.95485402,70.1065087,1.217019281,2.207681575,-1.494850522,1.494850522,0.785788185,0.224211797,1.817467391,58.4559988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.4376734,1.416285083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316748938,56.19012953,61.75442234,57.60641461,96.10190625,0,0.148424542,81.4643625,-0.148424542,98.5356375,0.713128488,0,130.2874294,57.60641461,167.9896756,2,9,29% +2/13/2018 18:00,61.05489716,139.4189348,445.6987596,756.9763893,79.343842,344.9289761,264.6177782,80.31119793,76.95133241,3.359865514,110.457334,0,110.457334,2.392509584,108.0648244,1.06560898,2.433319452,-0.635616524,0.635616524,0.638850517,0.178021231,2.36246522,75.9850024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.9685477,1.733365049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71159801,73.03967453,75.68014571,74.77303958,264.6177782,0,0.349572037,69.53885879,-0.349572037,110.4611412,0.906967964,0,315.6799934,74.77303958,364.6174523,2,10,16% +2/13/2018 19:00,54.60836883,154.9211633,555.7149561,807.9627497,87.77354872,509.0943359,419.7782695,89.31606645,85.12685238,4.189214074,137.3862213,0,137.3862213,2.646696344,134.739525,0.953095835,2.70388438,-0.124607265,0.124607265,0.551462787,0.157947069,2.606981119,83.84947423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.82716846,1.917522491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888748946,80.599304,83.71591741,82.51682649,419.7782695,0,0.519551514,58.69782728,-0.519551514,121.3021727,0.953763152,0,484.0849629,82.51682649,538.0905755,2,11,11% +2/13/2018 20:00,51.28471631,172.7669381,609.495164,828.0734446,91.57595357,628.9285292,535.5192965,93.40923269,88.81460069,4.594631998,150.5405119,0,150.5405119,2.761352879,147.779159,0.895087155,3.015351908,0.27568458,-0.27568458,0.48300885,0.15024886,2.576146667,82.85773226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.37197241,2.000590761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.866409491,79.6460039,87.2383819,81.64659466,535.5192965,0,0.646705072,49.7063634,-0.646705072,130.2936366,0.972685004,0,608.129971,81.64659466,661.5660343,2,12,9% +2/13/2018 21:00,51.70837055,191.4484544,602.7642363,825.6969541,91.10924987,689.3461886,596.4403273,92.90586125,88.36196982,4.543891422,148.8944477,0,148.8944477,2.747280041,146.1471677,0.902481317,3.341405877,0.660824854,-0.660824854,0.417145984,0.151152382,2.29578186,73.84023631,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.93688641,1.990395037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.663286142,70.97804379,86.60017255,72.96843882,596.4403273,0,0.722347738,43.75134421,-0.722347738,136.2486558,0.98078126,0,671.5776685,72.96843882,719.3340524,2,13,7% +2/13/2018 22:00,55.79167297,208.8641693,536.0519387,799.9137133,86.33758941,680.773485,592.9983065,87.77517848,83.73419254,4.040985943,132.5753956,0,132.5753956,2.603396873,129.9719987,0.973748389,3.645367443,1.107883346,-1.107883346,0.340694479,0.161061985,1.805850084,58.08234627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48849085,1.886152172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308332238,55.8309605,81.79682309,57.71711267,592.9983065,0,0.741327842,42.15534954,-0.741327842,137.8446505,0.982553457,0,664.4493593,57.71711267,702.2240552,2,14,6% +2/13/2018 23:00,62.8050654,223.7859734,414.7397854,739.5233849,76.76333028,597.0027744,519.427658,77.57511634,74.44863265,3.126483689,102.8731603,0,102.8731603,2.314697635,100.5584627,1.096155178,3.905802055,1.746045278,-1.746045278,0.231562361,0.185087935,1.168651142,37.58783794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56285749,1.676990557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.846683774,36.13085956,72.40954127,37.80785011,519.427658,0,0.702381654,45.38160189,-0.702381654,134.6183981,0.97881363,0,580.832413,37.80785011,605.5768947,2,15,4% +2/13/2018 0:00,71.85666682,236.214663,250.048413,608.9744369,60.41668299,430.9000779,370.4202102,60.47986765,58.59489709,1.884970558,62.4489186,0,62.4489186,1.821785906,60.62713269,1.254135426,4.122723611,2.963783247,-2.963783247,0.023316904,0.241619942,0.488778553,15.72079842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.32364385,1.319877687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.354118397,15.11142941,56.67776224,16.43130709,370.4202102,0,0.608268899,52.53556193,-0.608268899,127.4644381,0.967799513,0,415.1702612,16.43130709,425.924223,2,16,3% +2/13/2018 1:00,82.18981017,246.7599473,68.44782485,290.414028,28.98294828,163.9586002,135.3336062,28.62499407,28.10900546,0.515988616,17.46991042,0,17.46991042,0.873942826,16.5959676,1.434482799,4.306773543,7.278880892,-7.278880892,0,0.423431254,0.218485707,7.027251364,0.416776399,1,0.136529074,0,0.946984442,0.985746405,0.724496596,1,27.25424808,0.633168603,0.05953128,0.312029739,0.845091582,0.569588178,0.961238037,0.922476074,0.149534129,6.754861306,27.40378221,7.388029908,78.92975314,0,0.466002304,62.22489126,-0.466002304,117.7751087,0.942704393,0,101.8112072,7.388029908,106.6465251,2,17,5% +2/13/2018 2:00,93.51533964,256.1459206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632150578,4.47058968,-16.18477216,16.18477216,0,#DIV/0!,0,0,1,0.564822465,0,0.061708029,0.961238037,1,0.564454441,0.839957846,0,0,0.115824807,0.130733423,0.724496596,0.448993192,0.986439855,0.947677892,0,0,0,0,0,0,0.281796556,73.63254192,-0.281796556,106.3674581,0.872567029,0,0,0,0,2,18,0% +2/13/2018 3:00,105.181131,265.0756335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835757047,4.626442571,-3.558568472,3.558568472,0.861295261,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.072645597,85.83404417,-0.072645597,94.16595583,0,0,0,0,0,2,19,0% +2/13/2018 4:00,117.0042161,274.3000337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042108809,4.787438727,-1.788403828,1.788403828,0.835988756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148940599,98.56553772,0.148940599,81.43446228,0,0.714295697,0,0,0,2,20,0% +2/13/2018 5:00,128.6646574,284.8232676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245621902,4.971103806,-1.025968706,1.025968706,0.705604672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367853518,111.5832989,0.367853518,68.41670108,0,0.91407633,0,0,0,2,21,0% +2/13/2018 6:00,139.670986,298.3161851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437718575,5.206599643,-0.564556686,0.564556686,0.626698569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569165751,124.6920715,0.569165751,55.30792847,0,0.962152128,0,0,0,2,22,0% +2/13/2018 7:00,149.0264963,317.7850055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601003033,5.54639466,-0.22693733,0.22693733,0.568962259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739148163,137.6589026,0.739148163,42.34109742,0,0.982354564,0,0,0,2,23,0% +2/14/2018 8:00,154.6169452,346.7484906,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698574774,6.051902837,0.055755853,-0.055755853,0.520618877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866205362,150.0206282,0.866205362,29.97937183,0,0.992276968,0,0,0,2,0,0% +2/14/2018 9:00,153.8127645,20.70078849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.684539173,0.361296917,0.320696893,-0.320696893,0.475311291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941665865,160.3332253,0.941665865,19.66677471,0,0.99690261,0,0,0,2,1,0% +2/14/2018 10:00,147.0862112,47.34932923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567138669,0.826401694,0.597346475,-0.597346475,0.428001426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960373158,163.8163291,0.960373158,16.18367086,0,0.997936904,0,0,0,2,2,0% +2/14/2018 11:00,137.2047825,65.07451974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394675205,1.135764629,0.922436132,-0.922436132,0.372407821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921037432,157.0782217,0.921037432,22.92177825,0,0.99571339,0,0,0,2,3,0% +2/14/2018 12:00,125.9753072,77.66399488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198683887,1.355492421,1.365323982,-1.365323982,0.296669538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82632402,145.7229571,0.82632402,34.27704289,0,0.989491049,0,0,0,2,4,0% +2/14/2018 13:00,114.2298085,87.76097946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993686261,1.531718046,2.116101628,-2.116101628,0.168278999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682672463,133.0528333,0.682672463,46.94716667,0,0.976758434,0,0,0,2,5,0% +2/14/2018 14:00,102.399161,96.82855045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787202511,1.689977015,4.058974152,-4.058974152,0,#DIV/0!,0,0,0.140872635,1,0.241557088,0,0.933115364,0.971877327,0.724496596,1,0,0,0.02259126,0.312029739,0.937932755,0.662429351,0.961238037,0.922476074,0,0,0,0,0,0,-0.499858424,119.9906339,0.499858424,60.00936613,0,0.949971677,0,0,0,2,6,0% +2/14/2018 15:00,90.17882918,105.7852444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573917485,1.846300815,259.9073142,-259.9073142,0,#DIV/0!,0,0,0.977736523,1,0.003847506,0,0.960897035,0.999658998,0.724496596,1,0,0,0.114073262,0.312029739,0.727865424,0.45236202,0.961238037,0.922476074,0,0,0,0,0,0,-0.280383252,106.2830797,0.280383252,73.71692032,0,0.871672658,0,0,0,2,7,0% +2/14/2018 16:00,79.60782004,115.3590065,110.7136699,397.566982,38.99858944,38.65724449,0,38.65724449,37.82263808,0.834606409,54.60746842,26.58770599,28.01976243,1.175951361,26.84381107,1.38941857,2.013394485,-3.831450989,3.831450989,0.814629602,0.352247283,0.73439173,23.6205625,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.35655838,0.851972758,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.532064309,22.70498312,36.88862269,23.55695588,0,26.58770599,-0.066876042,93.83457686,0.066876042,86.16542314,0,0,36.88862269,23.55695588,52.30617917,2,8,42% +2/14/2018 17:00,69.4678522,126.260905,294.0143223,652.1035499,65.30016696,164.4626748,98.91514468,65.54753014,63.33112599,2.216404154,73.25621739,0,73.25621739,1.969040966,71.28717642,1.212442745,2.203668509,-1.482979668,1.482979668,0.783758149,0.222098592,1.843572082,59.29561541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.87628722,1.426563477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335661698,56.99720095,62.21194892,58.42376442,98.91514468,0,0.151686254,81.2753399,-0.151686254,98.7246601,0.720372241,0,133.4676733,58.42376442,171.7048587,2,9,29% +2/14/2018 18:00,60.76221148,139.2215187,450.8961781,759.9566651,79.70653556,349.0453189,268.3431836,80.70213527,77.30308942,3.39904585,111.7284448,0,111.7284448,2.403446133,109.3249987,1.060500651,2.429873891,-0.633778946,0.633778946,0.638536273,0.176773589,2.387603717,76.79354287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.30666992,1.741288542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729810765,73.81687439,76.03648068,75.55816293,268.3431836,0,0.35310327,69.32275711,-0.35310327,110.6772429,0.908398366,0,319.7989902,75.55816293,369.2502967,2,10,15% +2/14/2018 19:00,54.28642744,154.7869519,561.0823128,810.2776756,88.09603576,513.6862433,424.0169526,89.66929072,85.43961524,4.229675476,138.6973233,0,138.6973233,2.656420518,136.0409027,0.947476898,2.701541949,-0.126381012,0.126381012,0.551766115,0.157010894,2.631466029,84.6369931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12780802,1.924567622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.90648818,81.35629709,84.0342962,83.28086472,424.0169526,0,0.523298328,58.446242,-0.523298328,121.553758,0.954452208,0,488.7382127,83.28086472,543.243873,2,11,11% +2/14/2018 20:00,50.94560738,172.7331596,614.9196296,830.1399896,91.8833913,633.837997,540.089705,93.74829195,89.11276804,4.635523911,151.8650067,0,151.8650067,2.770623261,149.0943835,0.889168588,3.014762362,0.271656898,-0.271656898,0.483697624,0.149423415,2.599811745,83.61888252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.6585822,2.007307121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.883554759,80.37765048,87.54213696,82.3849576,540.089705,0,0.650600756,49.41308836,-0.650600756,130.5869116,0.973147953,0,613.1293278,82.3849576,667.0486348,2,12,9% +2/14/2018 21:00,51.37406753,191.5295178,608.1424881,827.7783938,91.4156873,694.4722135,601.2286115,93.243602,88.65916704,4.584434955,150.2077073,0,150.2077073,2.75652026,147.4511871,0.896646628,3.342820701,0.654465072,-0.654465072,0.418233571,0.150319521,2.318277339,74.56376824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22256368,1.997089545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67958404,71.67353021,86.90214772,73.67061975,601.2286115,0,0.726315903,43.42157421,-0.726315903,136.5784258,0.981159431,0,676.8032701,73.67061975,725.0192173,2,13,7% +2/14/2018 22:00,55.48212779,209.0357268,541.2830902,802.2842828,86.65804857,686.0576351,597.9322259,88.12540925,84.04498867,4.080420573,133.8534119,0,133.8534119,2.613059899,131.240352,0.968345806,3.648361686,1.097970395,-1.097970395,0.342389694,0.160097461,1.82668773,58.7525566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.78723992,1.893153001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.323429042,56.47519216,82.11066896,58.36834516,597.9322259,0,0.745287224,41.81622479,-0.745287224,138.1837752,0.982911771,0,669.825292,58.36834516,708.0262065,2,14,6% +2/14/2018 23:00,62.52859114,224.0096726,419.7161939,742.6502214,77.12724368,602.4631706,524.4976,77.96557067,74.80157271,3.163997959,104.0907215,0,104.0907215,2.325670966,101.7650505,1.091329792,3.909706344,1.728815203,-1.728815203,0.234508878,0.183760467,1.18705573,38.17979276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.90211691,1.684940698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860017836,36.69986904,72.76213474,38.38480973,524.4976,0,0.706251186,45.06928566,-0.706251186,134.9307143,0.979203659,0,586.3521036,38.38480973,611.4741939,2,15,4% +2/14/2018 0:00,71.61176739,236.4636659,254.6041054,614.0235894,60.90781571,436.7552678,375.7647342,60.99053363,59.07122034,1.919313292,63.56830844,0,63.56830844,1.836595369,61.73171307,1.249861124,4.127069532,2.924611523,-2.924611523,0.030015663,0.239225584,0.502976647,16.17745794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78150387,1.330607093,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364404869,15.55038791,57.14590874,16.88099501,375.7647342,0,0.61197117,52.26783177,-0.61197117,127.7321682,0.968296805,0,420.9977001,16.88099501,432.0459738,2,16,3% +2/14/2018 1:00,81.97195677,247.0225784,71.86954426,300.5716215,29.89238256,170.6350919,141.102292,29.53279992,28.99101694,0.541782982,18.32696871,0,18.32696871,0.901365625,17.42560308,1.43068054,4.311357319,7.080616848,-7.080616848,0,0.41592559,0.225341406,7.247754235,0.405010917,1,0.140302713,0,0.946528807,0.985290771,0.724496596,1,28.10945091,0.653036327,0.058122615,0.312029739,0.848433903,0.572930499,0.961238037,0.922476074,0.154248983,6.966817052,28.2636999,7.619853379,83.95432338,0,0.469446488,62.00162716,-0.469446488,117.9983728,0.943491588,0,107.4738978,7.619853379,112.4609394,2,17,5% +2/14/2018 2:00,93.31217745,256.4206077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.628604729,4.475383874,-17.1708702,17.1708702,0,#DIV/0!,0,0,1,0.594574668,0,0.058172458,0.961238037,1,0.572811966,0.848315371,0,0,0.115824807,0.140168879,0.724496596,0.448993192,0.985306985,0.946545022,0,0,0,0,0,0,0.285015293,73.44023728,-0.285015293,106.5597627,0.874570817,0,0,0,0,2,18,0% +2/14/2018 3:00,104.9872916,265.3667073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832373911,4.631522767,-3.601823706,3.601823706,0.85389818,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075565262,85.66629842,-0.075565262,94.33370158,0,0,0,0,0,2,19,0% +2/14/2018 4:00,116.8105447,274.6155267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038728605,4.792945117,-1.798935436,1.798935436,0.837789767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146327192,98.41414148,0.146327192,81.58585852,0,0.70830001,0,0,0,2,20,0% +2/14/2018 5:00,128.4594786,285.1727108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242040857,4.977202741,-1.029130084,1.029130084,0.706145299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365532325,111.4403465,0.365532325,68.55965347,0,0.913213192,0,0,0,2,21,0% +2/14/2018 6:00,139.437903,298.7016537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433650509,5.213327339,-0.564914355,0.564914355,0.626759734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567102491,124.5484198,0.567102491,55.45158021,0,0.961832516,0,0,0,2,22,0% +2/14/2018 7:00,148.7446243,318.1597901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596083438,5.552935885,-0.225794644,0.225794644,0.568766848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737290699,137.5011332,0.737290699,42.49886675,0,0.982184144,0,0,0,2,23,0% +2/15/2018 8:00,154.2826704,346.9176052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.692740576,6.054854443,0.058009633,-0.058009633,0.520233458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864487317,149.824215,0.864487317,30.17578497,0,0.992162252,0,0,0,2,0,0% +2/15/2018 9:00,153.4819188,20.50307992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.678764825,0.357846251,0.324079186,-0.324079186,0.474732885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940011209,160.0534388,0.940011209,19.94656117,0,0.996809145,0,0,0,2,1,0% +2/15/2018 10:00,146.8047173,46.99182125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.562225674,0.820162002,0.602216765,-0.602216765,0.427168557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958701463,163.4761572,0.958701463,16.52384281,0,0.997846121,0,0,0,2,2,0% +2/15/2018 11:00,136.9643052,64.71618152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390478084,1.129510447,0.929713052,-0.929713052,0.371163394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919269422,156.819509,0.919269422,23.18049099,0,0.995608982,0,0,0,2,3,0% +2/15/2018 12:00,125.7571585,77.3377991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194876474,1.349799231,1.377348597,-1.377348597,0.294613207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824387038,145.5263956,0.824387038,34.47360445,0,0.989348877,0,0,0,2,4,0% +2/15/2018 13:00,114.0196964,87.46408189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990019115,1.526536206,2.140525667,-2.140525667,0.164102242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680505479,132.8831556,0.680505479,47.1168444,0,0.976525206,0,0,0,2,5,0% +2/15/2018 14:00,102.1866447,96.55295654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783493402,1.685166994,4.142000138,-4.142000138,0,#DIV/0!,0,0,0.151226091,1,0.236895954,0,0.933782133,0.972544096,0.724496596,1,0,0,0.024140878,0.312029739,0.933821863,0.658318459,0.961238037,0.922476074,0,0,0,0,0,0,-0.497416235,119.8292062,0.497416235,60.17079377,0,0.949480563,0,0,0,2,6,0% +2/15/2018 15:00,89.99346212,105.5246787,0.00134681,0.752284014,0.001260969,0.001233099,0,0.001233099,0.001222946,1.02E-05,0.209688431,0.209323858,0.000364573,3.80E-05,0.00032655,1.570682219,1.841753085,-7132.440047,7132.440047,0,0.936263261,9.51E-06,0.000305737,1,0.999179823,0,0.000140204,0.961238037,1,0.724099103,0.999602507,0.001175542,2.75E-05,0.115824807,0.311578003,0.724496596,0.448993192,0.961309511,0.922547548,6.89E-06,0.000293898,0.001182429,0.000321439,0,0.000171683,-0.278251105,106.1558529,0.278251105,73.84414709,0,0.870306195,0.001182429,0.000470855,0.001490594,2,7,26% +2/15/2018 16:00,79.36789038,115.1111517,114.8600895,406.7330876,39.81694937,39.48218531,0,39.48218531,38.61632143,0.865863872,55.02209403,25.9723076,29.04978643,1.200627932,27.8491585,1.385231007,2.009068603,-3.759401323,3.759401323,0.826950821,0.346656089,0.767968759,24.70051516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.11947701,0.86985085,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556390752,23.7430747,37.67586776,24.61292555,0,25.9723076,-0.063855901,93.66116459,0.063855901,86.33883541,0,0,37.67586776,24.61292555,53.78453527,2,8,43% +2/15/2018 17:00,69.20136012,126.0301589,298.9603205,656.7114844,65.77207349,167.8447049,101.8022129,66.04249198,63.7888028,2.253689177,74.46966163,0,74.46966163,1.983270689,72.48639094,1.207791581,2.199641229,-1.471041913,1.471041913,0.781716673,0.220002686,1.869975136,60.14482837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.31622358,1.436872863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35479062,57.81349675,62.6710142,59.25036961,101.8022129,0,0.155018171,81.08214991,-0.155018171,98.91785009,0.727457166,0,136.7277635,59.25036961,175.5059454,2,9,28% +2/15/2018 18:00,60.46529605,139.0237524,456.1557071,762.9259487,80.0708705,353.2271255,272.1319927,81.09513272,77.65643832,3.438694401,113.0146646,0,113.0146646,2.414432176,110.6002324,1.055318499,2.426422218,-0.63183584,0.63183584,0.638203982,0.175534076,2.412971446,77.60945624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64632232,1.749247892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.748189599,74.60116136,76.39451192,76.35040925,272.1319927,0,0.356695159,69.10262741,-0.356695159,110.8973726,0.909824282,0,323.9868069,76.35040925,373.9566227,2,10,15% +2/15/2018 19:00,53.96035441,154.6536164,566.4977825,812.5813685,88.41967225,518.3310397,428.3070472,90.02399248,85.7534929,4.270499574,140.0201254,0,140.0201254,2.666179352,137.3539461,0.94178585,2.699214807,-0.12806021,0.12806021,0.552053275,0.156081233,2.656119855,85.42994487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.42951917,1.931637865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924349793,82.1185125,84.35386896,84.05015036,428.3070472,0,0.527094349,58.19065892,-0.527094349,121.8093411,0.955140322,0,493.4472001,84.05015036,548.4563425,2,11,11% +2/15/2018 20:00,50.60275917,172.7024194,620.378606,832.193043,92.19125706,638.7858757,544.6978492,94.08802649,89.41135051,4.676675981,153.1978821,0,153.1978821,2.77990655,150.4179755,0.883184758,3.014225845,0.267721584,-0.267721584,0.484370602,0.14860483,2.623594747,84.38382561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.94559104,2.014032832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.900785463,81.11294287,87.8463765,83.1269757,544.6978492,0,0.654533048,49.11574732,-0.654533048,130.8842527,0.973609663,0,618.169466,83.1269757,672.574409,2,12,9% +2/15/2018 21:00,51.03689301,191.6158331,613.5428675,829.842073,91.72169729,699.6212217,606.0401267,93.581095,88.9559497,4.625145297,151.5263192,0,151.5263192,2.76574759,148.7605716,0.890761823,3.344327186,0.648212312,-0.648212312,0.419302856,0.149495173,2.340852063,75.28984897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50784246,2.003774714,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.695939351,72.37146662,87.20378181,74.37524134,606.0401267,0,0.730307786,43.08779699,-0.730307786,136.912203,0.981535716,0,682.0538112,74.37524134,730.7309191,2,13,7% +2/15/2018 22:00,55.1708224,209.213546,546.5261831,804.6291152,86.97702096,691.3491161,602.874828,88.47428809,84.35434286,4.119945222,135.1342787,0,135.1342787,2.622678093,132.5116006,0.962912502,3.651465217,1.088212469,-1.088212469,0.344058397,0.159145204,1.847582668,59.42460962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.08460293,1.90012135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338567353,57.12119509,82.42317029,59.02131644,602.874828,0,0.749258033,41.47385278,-0.749258033,138.5261472,0.983267315,0,675.2102839,59.02131644,713.8385551,2,14,6% +2/15/2018 23:00,62.2512995,224.2394621,424.6978044,745.7343471,77.48803255,607.9148886,529.5618547,78.35303392,75.15148247,3.201551442,105.3094497,0,105.3094497,2.336550082,102.9728996,1.08649014,3.913716927,1.71188809,-1.71188809,0.237403585,0.182454517,1.205520968,38.77369828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23846348,1.69282258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.873395838,37.27075362,73.11185932,38.9635762,529.5618547,0,0.710121314,44.75521335,-0.710121314,135.2447867,0.979589495,0,591.8650894,38.9635762,617.3659708,2,15,4% +2/15/2018 0:00,71.36664602,236.7181391,259.1649185,618.986119,61.39205325,442.5829552,381.0884042,61.49455095,59.54085633,1.953694627,64.68873191,0,64.68873191,1.851196918,62.83753499,1.245582949,4.131510926,2.88639936,-2.88639936,0.036550328,0.236884118,0.517291946,16.63788715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23293585,1.341185865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374776254,15.99296998,57.6077121,17.33415585,381.0884042,0,0.615665509,51.99970669,-0.615665509,128.0002933,0.96878707,0,426.8012306,17.33415585,438.1460889,2,16,3% +2/15/2018 1:00,81.75407035,247.2900767,75.33136607,310.5863906,30.78634666,177.2955496,146.8696452,30.42590438,29.85802472,0.567879658,19.1932838,0,19.1932838,0.928321941,18.26496186,1.426877704,4.316026045,6.892615247,-6.892615247,0,0.408678991,0.232080485,7.464506179,0.393407408,1,0.144077527,0,0.94606979,0.984831753,0.724496596,1,28.94981854,0.672566086,0.05672024,0.312029739,0.851776956,0.576273552,0.961238037,0.922476074,0.158895908,7.175167266,29.10871444,7.847733352,89.09003883,0,0.47287856,61.77868706,-0.47287856,118.2213129,0.944264608,0,113.233285,7.847733352,118.3694695,2,17,5% +2/15/2018 2:00,93.10915521,256.6997196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625061322,4.480255297,-18.28427629,18.28427629,0,#DIV/0!,0,0,1,0.623628467,0,0.054637367,0.961238037,1,0.581267622,0.856771027,0,0,0.115824807,0.149717319,0.724496596,0.448993192,0.984139928,0.945377965,0,0,0,0,0,0,0.28821716,73.24874996,-0.28821716,106.75125,0.876519698,0,0,0,0,2,18,0% +2/15/2018 3:00,104.7934462,265.6619258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82899067,4.636675302,-3.646010419,3.646010419,0.846341807,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.07846868,85.49944916,-0.07846868,94.50055084,0,0,0,0,0,2,19,0% +2/15/2018 4:00,116.6165357,274.9349896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03534251,4.798520797,-1.80950668,1.80950668,0.839597557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143726083,98.26351642,0.143726083,81.73648358,0,0.702116032,0,0,0,2,20,0% +2/15/2018 5:00,128.2534329,285.5259226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238444682,4.983367449,-1.032240018,1.032240018,0.706677129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.363216432,111.29786,0.363216432,68.70213997,0,0.91234103,0,0,0,2,21,0% +2/15/2018 6:00,139.2032286,299.0903639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429554668,5.22011161,-0.565202437,0.565202437,0.626808999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565034966,124.4047194,0.565034966,55.59528055,0,0.961509901,0,0,0,2,22,0% +2/15/2018 7:00,148.4603897,318.5368052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591122608,5.559516039,-0.22457404,0.22457404,0.568558112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735417498,137.3425059,0.735417498,42.65749408,0,0.982011408,0,0,0,2,23,0% +2/16/2018 8:00,153.9453938,347.0906996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68685399,6.057875512,0.060351604,-0.060351604,0.519832957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862740945,149.6257432,0.862740945,30.37425678,0,0.992045176,0,0,0,2,0,0% +2/16/2018 9:00,153.1467158,20.31407644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.672914429,0.354547518,0.327567226,-0.327567226,0.474136395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938315388,159.7705454,0.938315388,20.22945459,0,0.996713013,0,0,0,2,1,0% +2/16/2018 10:00,146.5177334,46.64037918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.55721686,0.814028181,0.607225108,-0.607225108,0.42631208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956976403,163.1321203,0.956976403,16.86787973,0,0.997752108,0,0,0,2,2,0% +2/16/2018 11:00,136.7182449,64.36041403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386183522,1.123301133,0.937192977,-0.937192977,0.369884251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917437325,156.5542658,0.917437325,23.44573422,0,0.995500364,0,0,0,2,3,0% +2/16/2018 12:00,125.5337208,77.01235814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19097675,1.344119214,1.389730697,-1.389730697,0.292495743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822377468,145.3235005,0.822377468,34.67649951,0,0.989200669,0,0,0,2,4,0% +2/16/2018 13:00,113.8046344,87.16708338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986265574,1.521352604,2.165816337,-2.165816337,0.159777283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678260213,132.7078391,0.678260213,47.29216093,0,0.97628198,0,0,0,2,5,0% +2/16/2018 14:00,101.9694728,96.27683525,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779703036,1.680347769,4.229559151,-4.229559151,0,#DIV/0!,0,0,0.161877863,1,0.232167883,0,0.93445371,0.973215673,0.724496596,1,0,0,0.025720405,0.312029739,0.929651046,0.654147642,0.961238037,0.922476074,0,0,0,0,0,0,-0.494893273,119.6627129,0.494893273,60.33728712,0,0.948968115,0,0,0,2,6,0% +2/16/2018 15:00,89.80314844,105.263359,0.056440208,1.27341709,0.052065128,0.050920642,0,0.050920642,0.050495172,0.00042547,0.366757994,0.351503457,0.015254538,0.001569956,0.013684582,1.567360619,1.837192197,-237.6522626,237.6522626,0,0.922482913,0.000392489,0.012623793,1,0.975106472,0,0.004207804,0.961238037,1,0.712633781,0.988137185,0.04853788,0.001129571,0.115824807,0.298549518,0.724496596,0.448993192,0.963352972,0.924591009,0.000284357,0.012148988,0.048822237,0.013278558,0,0.008750161,-0.276031678,106.0235049,0.276031678,73.97649511,0,0.86886137,0.048822237,0.020881235,0.062488588,2,7,28% +2/16/2018 16:00,79.12366108,114.8624431,119.1053146,415.875272,40.63384553,40.30645134,0,40.30645134,39.40858517,0.897866172,55.37206681,25.26834397,30.10372285,1.225260366,28.87846248,1.380968402,2.004727819,-3.688962218,3.688962218,0.838996617,0.341158962,0.802624447,25.81516121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.88103104,0.887696964,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.581498679,24.81451488,38.46252972,25.70221185,0,25.26834397,-0.060759429,93.48340437,0.060759429,86.51659563,0,0,38.46252972,25.70221185,55.28411333,2,8,44% +2/16/2018 17:00,68.9307013,125.7986287,303.980344,661.3000668,66.2450571,171.3012793,104.7622228,66.53905645,64.24752421,2.291532235,75.70108664,0,75.70108664,1.99753289,73.70355375,1.203067693,2.195600266,-1.459051742,1.459051742,0.779666233,0.217925463,1.896661291,61.00314685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75716405,1.447205779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.374124649,58.63854512,63.1312887,60.08575089,104.7622228,0,0.158418588,80.88488268,-0.158418588,99.11511732,0.734380472,0,140.0666193,60.08575089,179.3915416,2,9,28% +2/16/2018 18:00,60.16426456,138.8256472,461.4745937,765.882287,80.43659821,357.4723242,275.9823958,81.48992841,78.011138,3.478790415,114.3153182,0,114.3153182,2.425460216,111.889858,1.050064509,2.42296463,-0.629792168,0.629792168,0.637854493,0.174303416,2.438554477,78.43229446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98727314,1.75723767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.766724418,75.39210476,76.75399756,77.14934243,275.9823958,0,0.360345709,68.87857128,-0.360345709,111.1214287,0.911244359,0,328.2413988,77.14934243,378.7341004,2,10,15% +2/16/2018 19:00,53.63026478,154.5211624,571.95848,814.8725376,88.74424546,523.026221,432.6462773,90.37994364,86.06827902,4.311664618,141.3539218,0,141.3539218,2.675966432,138.6779554,0.936024699,2.696903048,-0.129646654,0.129646654,0.552324573,0.155158545,2.680929424,86.2279059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.73210356,1.938728571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942324241,82.88554299,84.6744278,84.82427156,432.6462773,0,0.530937364,57.93118935,-0.530937364,122.0688107,0.955826933,0,498.2093921,84.82427156,553.7251814,2,11,11% +2/16/2018 20:00,50.25628902,172.6747418,625.8691981,834.2316359,92.49935849,643.7694308,549.3412029,94.42822793,89.71016155,4.718066384,154.5384301,0,154.5384301,2.789196945,151.7492331,0.877137713,3.013742779,0.26387813,-0.26387813,0.485027872,0.147793435,2.647483369,85.1521658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.23281957,2.020763692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918092688,81.85150068,88.15091226,83.87226438,549.3412029,0,0.658499605,48.8144557,-0.658499605,131.1855443,0.97406981,0,623.2475935,83.87226438,678.1403131,2,12,9% +2/16/2018 21:00,50.69697106,191.7074376,618.9625794,831.8872046,92.02710485,704.7904008,610.8722513,93.91814947,89.25214809,4.666001375,152.8496002,0,152.8496002,2.774956755,150.0746435,0.884829066,3.345925987,0.642066581,-0.642066581,0.420353838,0.148679594,2.363494843,76.0181186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.79255962,2.010446723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712343968,73.07150709,87.50490358,75.08195381,610.8722513,0,0.734321009,42.75012666,-0.734321009,137.2498733,0.981909888,0,687.3264073,75.08195381,736.4660444,2,13,7% +2/16/2018 22:00,54.85788276,209.3976373,551.7786172,806.9475594,87.29435223,696.6451739,607.8235282,88.82164571,84.66210542,4.159540289,136.4173608,0,136.4173608,2.632246801,133.785114,0.957450675,3.654678216,1.078609362,-1.078609362,0.345700625,0.158205392,1.868525038,60.09818824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.38043601,1.907053847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35374003,57.76866448,82.73417604,59.67571833,607.8235282,0,0.753237953,41.12835669,-0.753237953,138.8716433,0.983619914,0,680.6015027,59.67571833,719.6580668,2,14,6% +2/16/2018 23:00,61.97330582,224.4753077,429.6822767,748.7753155,77.84557623,613.3553672,534.6179958,78.73737139,75.49824489,3.2391265,106.528774,0,106.528774,2.347331343,104.1814427,1.081638235,3.917833209,1.695261062,-1.695261062,0.240246974,0.181170089,1.224038362,39.36928134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.5717847,1.700633567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886811627,37.84325071,73.45859633,39.54388427,534.6179958,0,0.713989878,44.43952299,-0.713989878,135.560477,0.979970996,0,597.3687262,39.54388427,623.2494075,2,15,4% +2/16/2018 0:00,71.12139927,236.9780142,263.7287192,623.8621481,61.86935943,448.3808841,386.3890157,61.99186845,60.00376997,1.988098485,65.80967077,0,65.80967077,1.86558946,63.94408131,1.241302586,4.136046602,2.849121647,-2.849121647,0.042925193,0.234594699,0.531716679,17.10183615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.67790605,1.351613213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385226924,16.43893541,58.06313297,17.79054862,386.3890157,0,0.619349991,51.73131712,-0.619349991,128.2686829,0.969270201,0,432.578492,17.79054862,444.2220503,2,16,3% +2/16/2018 1:00,81.53623303,247.5623532,78.82980868,320.4513078,31.66452193,183.9339014,152.6299292,31.30397216,30.70971976,0.594252396,20.06800194,0,20.06800194,0.954802166,19.11319977,1.423075726,4.320778168,6.714143393,-6.714143393,0,0.401682085,0.238700541,7.677429941,0.381965425,1,0.147852454,0,0.945607523,0.984369486,0.724496596,1,29.77503125,0.691750919,0.055324469,0.312029739,0.855119768,0.579616364,0.961238037,0.922476074,0.16347386,7.379837685,29.93850512,8.071588604,94.33057349,0,0.47629679,61.55618247,-0.47629679,118.4438175,0.945023437,0,119.0831079,8.071588604,124.3658012,2,17,4% +2/16/2018 2:00,92.90632877,256.9831535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621521333,4.48520215,-19.55111607,19.55111607,0,#DIV/0!,0,0,1,0.652003419,0,0.051103442,0.961238037,1,0.589819592,0.865322996,0,0,0.115824807,0.159377366,0.724496596,0.448993192,0.982938229,0.944176265,0,0,0,0,0,0,0.291400887,73.05815632,-0.291400887,106.9418437,0.878415073,0,0,0,0,2,18,0% +2/16/2018 3:00,104.599634,265.9611723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825608009,4.64189814,-3.691153409,3.691153409,0.838621901,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081354952,85.33354732,-0.081354952,94.66645268,0,0,0,0,0,2,19,0% +2/16/2018 4:00,116.4222153,275.2582869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031950979,4.804163401,-1.820116459,1.820116459,0.841411936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141137808,98.11369161,0.141137808,81.88630839,0,0.695736314,0,0,0,2,20,0% +2/16/2018 5:00,128.0465386,285.8827369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234833695,4.989595033,-1.035297669,1.035297669,0.707200018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36090604,111.1558495,0.36090604,68.84415053,0,0.911459786,0,0,0,2,21,0% +2/16/2018 6:00,138.966984,299.4821026,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425431422,5.226948741,-0.565420629,0.565420629,0.626846312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562963094,124.2609642,0.562963094,55.73903583,0,0.961184231,0,0,0,2,22,0% +2/16/2018 7:00,148.1738375,318.9157939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586121329,5.56613064,-0.223275494,0.223275494,0.568336048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733528267,137.1830025,0.733528267,42.81699752,0,0.981836301,0,0,0,2,23,0% +2/17/2018 8:00,153.6052069,347.2674896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680916608,6.060961079,0.062781698,-0.062781698,0.519417387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860965831,149.4251999,0.860965831,30.5748001,0,0.991925686,0,0,0,2,0,0% +2/17/2018 9:00,152.8073019,20.1335708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66699054,0.351397101,0.331161023,-0.331161023,0.473521819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936577959,159.484589,0.936577959,20.51541101,0,0.996614161,0,0,0,2,1,0% +2/17/2018 10:00,146.2254013,46.29507994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552114703,0.808001573,0.612371894,-0.612371894,0.425431928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955197602,162.7843589,0.955197602,17.21564106,0,0.99765481,0,0,0,2,2,0% +2/17/2018 11:00,136.4667139,64.00737243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381793477,1.117139394,0.944877487,-0.944877487,0.368570123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915540926,156.2826629,0.915540926,23.71733709,0,0.995387477,0,0,0,2,3,0% +2/17/2018 12:00,125.3050898,76.68781209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186986386,1.338454817,1.40247604,-1.40247604,0.290316161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820295336,145.1143689,0.820295336,34.88563108,0,0.989046344,0,0,0,2,4,0% +2/17/2018 13:00,113.5847133,86.87009712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982427227,1.516169216,2.192000689,-2.192000689,0.155299495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675936996,132.5269557,0.675936996,47.47304433,0,0.976028609,0,0,0,2,5,0% +2/17/2018 14:00,101.7477378,96.00027616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775833032,1.675520902,4.321964721,-4.321964721,0,#DIV/0!,0,0,0.172833063,1,0.227375101,0,0.935129563,0.973891526,0.724496596,1,0,0,0.027329541,0.312029739,0.925422213,0.649918809,0.961238037,0.922476074,0,0,0,0,0,0,-0.492290219,119.4912225,0.492290219,60.50877751,0,0.948433895,0,0,0,2,6,0% +2/17/2018 15:00,89.60706012,105.0013545,0.153322184,2.079611245,0.139060125,0.136022756,0,0.136022756,0.134866949,0.001155807,0.61058002,0.569212105,0.041367914,0.004193176,0.037174739,1.563938232,1.832619355,-119.4392436,119.4392436,0,0.906979808,0.001048294,0.033716737,1,0.94988842,0,0.008372262,0.961238037,1,0.701029192,0.976532597,0.129639241,0.002997429,0.115824807,0.285366471,0.724496596,0.448993192,0.965385155,0.926623192,0.000759485,0.032484145,0.130398726,0.035481575,0,0.028524118,-0.273710823,105.8852024,0.273710823,74.11479765,0,0.867325455,0.130398726,0.060221268,0.169812342,2,7,30% +2/17/2018 16:00,78.87523633,114.6129302,123.4472534,424.9827566,41.44850041,41.12927273,0,41.12927273,40.19867519,0.93059754,55.65496323,24.47392221,31.18104101,1.249825216,29.9312158,1.376632572,2.000372997,-3.620136562,3.620136562,0.850766497,0.33575879,0.838350158,26.9642229,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.64049562,0.905494114,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607381836,25.91903669,39.24787746,26.8245308,0,24.47392221,-0.057588036,93.30137789,0.057588036,86.69862211,0,0,39.24787746,26.8245308,56.80399638,2,8,45% +2/17/2018 17:00,68.65598616,125.5663435,309.0718819,665.8658665,66.71878939,174.8310925,107.7942064,67.03688613,64.70697173,2.329914398,76.94987375,0,76.94987375,2.011817666,74.93805608,1.19827301,2.191546124,-1.447022898,1.447022898,0.777609179,0.215868195,1.923615268,61.87007941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19880247,1.457555051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393652714,59.47187367,63.59245519,60.92942872,107.7942064,0,0.161885767,80.68363015,-0.161885767,99.31636985,0.741140234,0,143.4830786,60.92942872,183.3601711,2,9,28% +2/17/2018 18:00,59.85923168,138.6272128,466.8500639,768.8238266,80.80347636,361.7788098,279.8925434,81.88626639,78.36695341,3.51931298,115.6297259,0,115.6297259,2.436522945,113.193203,1.04474068,2.419501296,-0.627652827,0.627652827,0.637488644,0.173082286,2.46433887,79.26160916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32929645,1.76525258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785405122,76.18927359,77.11470157,77.95452617,279.8925434,0,0.3640529,68.65069184,-0.3640529,111.3493082,0.912657322,0,332.5606809,77.95452617,383.5803591,2,10,15% +2/17/2018 19:00,53.29627433,154.389594,577.4615132,817.1499593,89.06954705,527.7692681,437.0323477,90.73692039,86.38377158,4.353148807,142.698005,0,142.698005,2.685775475,140.0122295,0.930195466,2.694606746,-0.131142201,0.131142201,0.552580327,0.154243261,2.705881587,87.03045324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03536701,1.945835189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960401999,83.65698202,84.99576901,85.60281721,437.0323477,0,0.534825148,57.66794586,-0.534825148,122.3320541,0.956511502,0,503.0222361,85.60281721,559.0475679,2,11,11% +2/17/2018 20:00,49.9063148,172.6501501,631.3885159,836.2548548,92.80750729,648.7859288,554.0172369,94.76869185,90.00901852,4.759673333,155.8859444,0,155.8859444,2.798488768,153.0874556,0.871029511,3.013313573,0.260125911,-0.260125911,0.485669539,0.14698954,2.671465358,85.92350901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.52009226,2.027495586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.935467558,82.59294512,88.45555982,84.6204407,554.0172369,0,0.662498081,48.50932989,-0.662498081,131.4906701,0.974528083,0,628.3609158,84.6204407,683.7433019,2,12,9% +2/17/2018 21:00,50.35442613,191.8043687,624.3988437,833.9130546,92.33173927,709.9769537,615.7223748,94.2545789,89.54759666,4.706982231,154.1768713,0,154.1768713,2.784142607,151.3927287,0.878850529,3.347617754,0.636027732,-0.636027732,0.421386542,0.147873015,2.386194559,76.74821952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07655602,2.017101841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728789835,73.77330786,87.80534586,75.7904097,615.7223748,0,0.738353203,42.40867798,-0.738353203,137.591322,0.982281732,0,692.6181866,75.7904097,742.221494,2,13,7% +2/17/2018 22:00,54.54343494,209.5880097,557.0378144,809.2390221,87.60989291,701.9430838,612.7757661,89.16731773,84.96813139,4.199186339,137.7020288,0,137.7020288,2.641761517,135.0602673,0.951962525,3.658000841,1.069160661,-1.069160661,0.347316448,0.157278179,1.889505058,60.77297778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67459981,1.913947226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368939982,58.41729786,83.04353979,60.33124508,612.7757661,0,0.757224688,40.77986037,-0.757224688,139.2201396,0.983969401,0,685.9961431,60.33124508,725.4817364,2,14,6% +2/17/2018 23:00,61.69472484,224.717173,434.6672974,751.7727508,78.19975977,618.7820876,539.6636334,79.11845418,75.84174849,3.276705692,107.7481299,0,107.7481299,2.358011283,105.3901187,1.07677608,3.922054555,1.678930989,-1.678930989,0.243039581,0.179907162,1.24259948,39.96627069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90197343,1.708371148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900259093,38.41709958,73.80223252,40.12547073,539.6636334,0,0.717854741,44.12235325,-0.717854741,135.8776467,0.980348026,0,602.8604101,40.12547073,629.1217282,2,15,4% +2/17/2018 0:00,70.87612263,237.243221,268.2934045,628.6519065,62.33970532,454.1468615,391.6644193,62.48244221,60.4599332,2.022509011,66.93061425,0,66.93061425,1.879772124,65.05084212,1.237021701,4.140675334,2.812753627,-2.812753627,0.04914449,0.232356459,0.546243095,17.56905563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.1163875,1.361888505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.395751263,16.88804454,58.51213876,18.24993305,391.6644193,0,0.623022718,51.4627931,-0.623022718,128.5372069,0.969746105,0,438.3271837,18.24993305,450.2713999,2,16,3% +2/17/2018 1:00,81.3185252,247.8393175,82.36149185,330.1604786,32.52667076,190.5445593,158.3778119,32.16674734,31.54587163,0.620875715,20.95029638,0,20.95029638,0.980799134,19.96949725,1.419276008,4.325612106,6.544534337,-6.544534337,0,0.394925711,0.245199784,7.886467907,0.370684309,1,0.151626479,0,0.945142139,0.983904102,0.724496596,1,30.58484717,0.710585634,0.053935595,0.312029739,0.858461409,0.582958005,0.961238037,0.922476074,0.167982153,7.580772929,30.75282932,8.291358563,99.66964218,0,0.479699486,61.33422317,-0.479699486,118.6657768,0.945768077,0,125.0171951,8.291358563,130.4437235,2,17,4% +2/17/2018 2:00,92.70375269,257.2708051,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617985713,4.490222619,-21.00520288,21.00520288,0,#DIV/0!,0,0,1,0.679718659,0,0.047571335,0.961238037,1,0.598466065,0.873969469,0,0,0.115824807,0.169147582,0.724496596,0.448993192,0.981701452,0.942939489,0,0,0,0,0,0,0.294565237,72.86853106,-0.294565237,107.1314689,0.880258314,0,0,0,0,2,18,0% +2/17/2018 3:00,104.4058931,266.2643298,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822226594,4.647189236,-3.737278753,3.737278753,0.830734003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084223209,85.16864218,-0.084223209,94.83135782,0,0,0,0,0,2,19,0% +2/17/2018 4:00,116.2276087,275.5852832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028554454,4.809870561,-1.830763752,1.830763752,0.84323273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.138562877,97.96469465,0.138562877,82.03530535,0,0.689152988,0,0,0,2,20,0% +2/17/2018 5:00,127.8388139,286.2429884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231208214,4.995882608,-1.038302252,1.038302252,0.707713832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358601333,111.0143239,0.358601333,68.98567611,0,0.910569397,0,0,0,2,21,0% +2/17/2018 6:00,138.729191,299.8766598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421281152,5.233835064,-0.565568668,0.565568668,0.626871628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560886787,124.1171472,0.560886787,55.88285279,0,0.96085545,0,0,0,2,22,0% +2/17/2018 7:00,147.8850137,319.2965066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581080404,5.572775331,-0.221899007,0.221899007,0.568100655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73162272,137.0226055,0.73162272,42.97739455,0,0.981658765,0,0,0,2,23,0% +2/18/2018 8:00,153.2622012,347.4477004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674930029,6.064106351,0.065299825,-0.065299825,0.518986762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859161576,149.2225746,0.859161576,30.7774254,0,0.991803729,0,0,0,2,0,0% +2/18/2018 9:00,152.4638229,19.96135058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660995699,0.348391291,0.334860577,-0.334860577,0.472889158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934798506,159.1956166,0.934798506,20.80438345,0,0.996512538,0,0,0,2,1,0% +2/18/2018 10:00,145.9278651,45.95598483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546921716,0.802083246,0.617657522,-0.617657522,0.424528032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953364723,162.4330116,0.953364723,17.56698839,0,0.997554174,0,0,0,2,2,0% +2/18/2018 11:00,136.2098278,63.65720162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377309968,1.111027761,0.952768219,-0.952768219,0.367220728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913580058,156.0048746,0.913580058,23.99512544,0,0.995270259,0,0,0,2,3,0% +2/18/2018 12:00,125.0713648,76.36429514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182907115,1.332808381,1.41559063,-1.41559063,0.288073434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818140721,144.8991036,0.818140721,35.1008964,0,0.988885819,0,0,0,2,4,0% +2/18/2018 13:00,113.3600271,86.57323255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978505713,1.510987952,2.219107301,-2.219107301,0.150663991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673536219,132.3405821,0.673536219,47.65941789,0,0.975764942,0,0,0,2,5,0% +2/18/2018 14:00,101.5215351,95.72336615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771885049,1.67068791,4.419562111,-4.419562111,0,#DIV/0!,0,0,0.184097035,1,0.222519835,0,0.935809165,0.974571128,0.724496596,1,0,0,0.028967988,0.312029739,0.921137276,0.645633872,0.961238037,0.922476074,0,0,0,0,0,0,-0.489607813,119.3148075,0.489607813,60.6851925,0,0.947877447,0,0,0,2,6,0% +2/18/2018 15:00,89.40473756,104.7387322,0.309134119,3.277611903,0.275082673,0.269118299,0,0.269118299,0.266787915,0.002330384,0.972399791,0.889151887,0.083247904,0.008294758,0.074953146,1.560407037,1.828035731,-79.09390202,79.09390202,0,0.889848954,0.002073689,0.066696979,1,0.923406907,0,0.012642526,0.961238037,1,0.689270498,0.964773902,0.256446692,0.005892365,0.115824807,0.272013372,0.724496596,0.448993192,0.967406768,0.928644805,0.001502381,0.064325092,0.257949073,0.070217457,0,0.068102893,-0.271280406,105.7404727,0.271280406,74.25952734,0,0.865688863,0.257949073,0.129173373,0.342490462,2,7,33% +2/18/2018 16:00,78.62272225,114.3626607,127.8836967,434.0453701,42.26018688,41.94992765,0,41.94992765,40.98588632,0.964041324,55.86859024,23.58740682,32.28118342,1.274300558,31.00688286,1.37222537,1.99600497,-3.552921672,3.552921672,0.862260921,0.330457971,0.875135406,28.14736292,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.39719291,0.923226416,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.634032623,27.05631588,40.03122553,27.97954229,0,23.58740682,-0.054343183,93.11516957,0.054343183,86.88483043,0,0,40.03122553,27.97954229,58.34327637,2,8,46% +2/18/2018 17:00,68.37732667,125.3333304,314.2323778,670.4056419,67.19295435,178.4327669,110.8971116,67.53565525,65.16683886,2.368816396,78.21539355,0,78.21539355,2.026115489,76.18927806,1.193409484,2.187479277,-1.434968435,1.434968435,0.775547744,0.213832053,1.950821761,62.74513375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.64084425,1.467913775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.413363725,60.31300918,64.05420798,61.78092296,110.8971116,0,0.165417927,80.47848644,-0.165417927,99.52151356,0.747735301,0,146.9758931,61.78092296,187.4102716,2,9,28% +2/18/2018 18:00,59.55031335,138.4284569,472.2793202,771.7488098,81.17126842,366.1444385,283.8605423,82.28389619,78.72365518,3.560241007,116.9572023,0,116.9572023,2.447613233,114.509589,1.039349039,2.416032351,-0.62542266,0.62542266,0.637107264,0.171871316,2.490310672,80.09695158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67217176,1.773287455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804221604,76.9922365,77.47639337,78.76552395,283.8605423,0,0.367814681,68.41909401,-0.367814681,111.580906,0.914061979,0,336.9425223,78.76552395,388.4929824,2,10,15% +2/18/2018 19:00,52.95849973,154.2589132,583.0039825,819.4124752,89.39537295,532.5576436,441.4629407,91.09470291,86.69977263,4.394930282,144.0516657,0,144.0516657,2.695600328,141.3560653,0.924300187,2.692325936,-0.132548783,0.132548783,0.552820866,0.153335784,2.730963221,87.83716482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.33911923,1.952953262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978573557,84.43242387,85.31769279,86.38537713,441.4629407,0,0.538755455,57.40104262,-0.538755455,122.5989574,0.957193515,0,507.8831567,86.38537713,564.4206584,2,11,11% +2/18/2018 20:00,49.55295497,172.6286666,636.9336755,838.2618405,93.11551914,653.8326349,558.7234171,95.10921776,90.30774268,4.801475088,157.2397202,0,157.2397202,2.807776462,154.4319438,0.864862218,3.012938615,0.256464186,-0.256464186,0.486295731,0.146193431,2.695528526,86.69746321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80723728,2.034224488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.952901241,83.33689933,88.76013852,85.37112382,558.7234171,0,0.666526126,48.20048761,-0.666526126,131.7995124,0.974984186,0,633.5066345,85.37112382,689.3803276,2,12,9% +2/18/2018 21:00,50.00938307,191.9066626,629.8488975,835.9189408,92.63543419,715.1780987,620.5878976,94.5902011,89.84213406,4.748067039,155.5074575,0,155.5074575,2.793300129,152.7141573,0.872828391,3.349403119,0.630095463,-0.630095463,0.422401019,0.147075647,2.408940184,77.47979699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.35967657,2.023736435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745268963,74.47652795,88.10494553,76.50026439,620.5878976,0,0.742402005,42.0635665,-0.742402005,137.9364335,0.982651044,0,697.926291,76.50026439,747.994184,2,13,7% +2/18/2018 22:00,54.22760486,209.78467,562.3012231,811.5029661,87.92349848,707.2401522,617.7290075,89.51114474,85.2722806,4.238864137,138.9876595,0,138.9876595,2.651217882,136.3364416,0.94645025,3.661433212,1.059865751,-1.059865751,0.348905972,0.156363698,1.910513043,61.4486668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.9669596,1.920798331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384160196,59.06679584,83.3511198,60.98759417,617.7290075,0,0.761215958,40.42848839,-0.761215958,139.5715116,0.984315618,0,691.3914293,60.98759417,731.30659,2,14,6% +2/18/2018 23:00,61.41567051,224.9650188,439.6505851,754.7263463,78.55047415,624.1925779,544.6964185,79.49615936,76.18188754,3.31427182,108.9669611,0,108.9669611,2.368586616,106.5983745,1.071905663,3.92638028,1.662894488,-1.662894488,0.245781984,0.178665688,1.261195978,40.56439798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.22892802,1.71603294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913732193,38.99204228,74.14266021,40.70807522,544.6964185,0,0.721713799,43.80384329,-0.721713799,136.1961567,0.98072046,0,608.3375824,40.70807522,634.9802034,2,15,4% +2/18/2018 0:00,70.63091018,237.5136866,272.856909,633.3557289,62.80306934,459.8787626,396.9125268,62.96623572,60.90932508,2.056910635,68.05106086,0,68.05106086,1.893744259,66.1573166,1.232741936,4.145395849,2.777270877,-2.777270877,0.055212398,0.230168514,0.560863493,18.03929789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54836007,1.372011269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.406343691,17.34005929,58.95470376,18.71207056,396.9125268,0,0.626681829,51.194264,-0.626681829,128.805736,0.970214696,0,444.0450705,18.71207056,456.2917464,2,16,3% +2/18/2018 1:00,81.10102513,248.1208769,85.92314318,339.7090562,33.37262876,197.1223971,164.1083512,33.01404582,32.36632087,0.647724947,21.83936874,0,21.83936874,1.006307889,20.83306085,1.415479915,4.330526246,6.383179525,-6.383179525,0,0.38840093,0.251576972,8.091580217,0.359563191,1,0.155398642,0,0.944673766,0.983435729,0.724496596,1,31.37909479,0.72906664,0.052553884,0.312029739,0.861800999,0.586297595,0.961238037,0.922476074,0.172420411,7.777934683,31.55151521,8.507001323,105.1010288,0,0.483085005,61.11291682,-0.483085005,118.8870832,0.946498547,0,131.0294863,8.507001323,136.5971485,2,17,4% +2/18/2018 2:00,92.5014799,257.5625693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614455387,4.495314863,-22.69109313,22.69109313,0,#DIV/0!,0,0,1,0.706792946,0,0.044041658,0.961238037,1,0.607205256,0.88270866,0,0,0.115824807,0.179026487,0.724496596,0.448993192,0.980429184,0.941667221,0,0,0,0,0,0,0.297709017,72.67994677,-0.297709017,107.3200532,0.882050771,0,0,0,0,2,18,0% +2/18/2018 3:00,104.2122603,266.5712802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818847063,4.65254653,-3.784414003,3.784414003,0.822673401,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087072618,85.00478087,-0.087072618,94.99521913,0,0,0,0,0,2,19,0% +2/18/2018 4:00,116.0327404,275.9158423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02515336,4.815639906,-1.841447671,1.841447671,0.845059788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.136001768,97.81655126,0.136001768,82.18344874,0,0.682357721,0,0,0,2,20,0% +2/18/2018 5:00,127.6302764,286.6065122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227568549,5.002227295,-1.041253066,1.041253066,0.708218451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356302469,110.8732909,0.356302469,69.12670915,0,0.909669791,0,0,0,2,21,0% +2/18/2018 6:00,138.489872,300.2738275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417104246,5.240766948,-0.565646349,0.565646349,0.626884912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558805944,123.973261,0.558805944,56.02673901,0,0.9605235,0,0,0,2,22,0% +2/18/2018 7:00,147.5939655,319.6786999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576000655,5.579445863,-0.220444625,0.220444625,0.567851941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729700569,136.8612976,0.729700569,43.13870242,0,0.981478743,0,0,0,2,23,0% +2/19/2018 8:00,152.9164682,347.6310655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66889585,6.067306675,0.067905866,-0.067905866,0.518541103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857327795,149.0178589,0.857327795,30.98214112,0,0.99167925,0,0,0,2,0,0% +2/19/2018 9:00,152.1164238,19.7971981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654932442,0.345526289,0.338665869,-0.338665869,0.472238415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932976641,158.9036777,0.932976641,21.09632226,0,0.99640809,0,0,0,2,1,0% +2/19/2018 10:00,145.6252709,45.62313934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541640452,0.796273997,0.623082388,-0.623082388,0.423600326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951477471,162.0782148,0.951477471,17.92178519,0,0.997450148,0,0,0,2,2,0% +2/19/2018 11:00,135.9477059,63.3100358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372735079,1.104968574,0.960866853,-0.960866853,0.36583578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911554605,155.7210782,0.911554605,24.27892177,0,0.995148651,0,0,0,2,3,0% +2/19/2018 12:00,124.8326486,76.04193513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178740732,1.327182138,1.429080696,-1.429080696,0.285766497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815913765,144.6778133,0.815913765,35.32218665,0,0.988719014,0,0,0,2,4,0% +2/19/2018 13:00,113.1306731,86.276595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97450273,1.50581065,2.247166311,-2.247166311,0.145865618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671058336,132.1488003,0.671058336,47.85119967,0,0.975490829,0,0,0,2,5,0% +2/19/2018 14:00,101.2909627,95.4461891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767860801,1.665850258,4.522732093,-4.522732093,0,#DIV/0!,0,0,0.195675339,1,0.217604326,0,0.936491993,0.975253956,0.724496596,1,0,0,0.030635444,0.312029739,0.916798164,0.64129476,0.961238037,0.922476074,0,0,0,0,0,0,-0.486846861,119.1335447,0.486846861,60.8664553,0,0.9472983,0,0,0,2,6,0% +2/19/2018 15:00,89.19599459,104.4755567,0.543708202,4.98874576,0.473705716,0.463520443,0,0.463520443,0.459421741,0.004098702,1.486771766,1.340659443,0.146112323,0.014283975,0.131828348,1.556763785,1.823442452,-58.74300328,58.74300328,0,0.8712499,0.003570994,0.114855435,1,0.895570071,0,0.01702166,0.961238037,1,0.677360234,0.952863638,0.441613653,0.010086358,0.115824807,0.258494395,0.724496596,0.448993192,0.969415415,0.930653452,0.002587173,0.110877705,0.444200825,0.120964063,0,0.140004971,-0.268736774,105.5891114,0.268736774,74.41088862,0,0.863944332,0.444200825,0.241920564,0.602532996,2,7,36% +2/19/2018 16:00,78.36622737,114.11168,132.4123165,443.0535409,43.06822596,42.76774002,0,42.76774002,41.76956004,0.998179973,56.01098835,22.60742328,33.40356507,1.298665918,32.10489915,1.36774869,1.991624532,-3.487310164,3.487310164,0.873481149,0.325258459,0.91296782,29.36418339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1504899,0.940879036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.661442078,28.22597,40.81193197,29.16684903,0,22.60742328,-0.051026391,92.92486704,0.051026391,87.07513296,0,0,40.81193197,29.16684903,59.90105133,2,8,47% +2/19/2018 17:00,68.09483682,125.0996141,319.4592225,674.9163306,67.66724715,182.1048433,114.0697947,68.03504854,65.62682999,2.408218559,79.49700423,0,79.49700423,2.040417167,77.45658706,1.188479106,2.183400158,-1.422900783,1.422900783,0.773484054,0.211818105,1.978265411,63.62781587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.08300522,1.478275292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433246556,61.16147681,64.51625178,62.63975211,114.0697947,0,0.169013238,80.26954838,-0.169013238,99.73045162,0.754165186,0,150.5437197,62.63975211,191.5401847,2,9,27% +2/19/2018 18:00,59.23762716,138.2293845,477.7595361,774.6555698,81.53974308,370.5670198,287.8844476,82.68257217,79.08101898,3.601553189,118.2970549,0,118.2970549,2.458724104,115.8383308,1.033891635,2.412557882,-0.623106478,0.623106478,0.636711173,0.170671095,2.516455905,80.93787217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01568344,1.781337243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823163737,77.80056135,77.83884717,79.58189859,287.8844476,0,0.371628965,68.1838851,-0.371628965,111.8161149,0.915457204,0,341.3847387,79.58189859,393.4694997,2,10,15% +2/19/2018 19:00,52.61705886,154.1291193,588.5829776,821.6589892,89.7215229,537.3887852,445.9357102,91.45307505,87.01608794,4.436987104,145.4141922,0,145.4141922,2.705434952,142.7087573,0.91834092,2.690060605,-0.133868412,0.133868412,0.553046536,0.15243649,2.75616123,88.64761939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.64317355,1.960078413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996829429,85.21146364,85.64000298,87.17154205,445.9357102,0,0.542726017,57.13059588,-0.542726017,122.8694041,0.957872484,0,512.7895492,87.17154205,569.8415801,2,11,11% +2/19/2018 20:00,49.19632868,172.6103115,642.5017986,840.2517854,93.42321355,658.9068096,563.4572007,95.44960891,90.60615896,4.843449952,158.5990543,0,158.5990543,2.817054583,155.7819997,0.858637915,3.012618258,0.252892086,-0.252892086,0.486906596,0.145405373,2.71966076,87.4736388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.09408637,2.040946456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970384962,84.08298884,89.06447133,86.12393529,563.4572007,0,0.670581379,47.88804824,-0.670581379,132.1119518,0.975437834,0,638.6819428,86.12393529,695.048336,2,12,9% +2/19/2018 21:00,49.661967,192.0143536,635.3099985,837.9042312,92.93802753,720.3910692,625.466231,94.92483822,90.13560309,4.789235124,156.8406889,0,156.8406889,2.802424435,154.0382645,0.866764837,3.351282682,0.624269308,-0.624269308,0.42339735,0.146287683,2.431720801,78.21249994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.64177017,2.030346963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761773442,75.1808299,88.40354361,77.21117687,625.466231,0,0.746465059,41.71490884,-0.746465059,138.2850912,0.983017628,0,703.2478746,77.21117687,753.7810456,2,13,7% +2/19/2018 22:00,53.91051806,209.9876223,567.5663237,813.7389094,88.23502956,712.5337195,622.680747,89.85297256,85.57441787,4.278554689,140.2736379,0,140.2736379,2.660611694,137.6130262,0.940916042,3.664975397,1.050723805,-1.050723805,0.350469336,0.155462059,1.931539443,62.1249481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.25738544,1.927604115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.399393751,59.71686315,83.65677919,61.64446726,622.680747,0,0.765209504,40.07436601,-0.765209504,139.925634,0.984658417,0,696.7846181,61.64446726,737.129689,2,14,6% +2/19/2018 23:00,61.13625547,225.2188022,444.6298989,757.6358644,78.89761657,629.5844189,549.7140486,79.87037032,76.51856233,3.35180799,110.184721,0,110.184721,2.379054241,107.8056667,1.06702895,3.930809636,1.647147917,-1.647147917,0.248474806,0.177445594,1.279819641,41.16339901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55255263,1.723616699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927224973,39.56782485,74.47977761,41.29144155,549.7140486,0,0.725564977,43.48413243,-0.725564977,136.5158676,0.981088184,0,613.7977354,41.29144155,640.8221581,2,15,4% +2/19/2018 0:00,70.38585406,237.7893348,277.4172139,637.9740542,63.25943765,465.5745401,402.1313197,63.44322034,61.3519322,2.09128814,69.17052078,0,69.17052078,1.907505448,67.26301533,1.2284649,4.150206818,2.742649265,-2.742649265,0.061133042,0.228029965,0.575570265,18.51231824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.97381087,1.381981203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.416998698,17.79474444,59.39080956,19.17672565,402.1313197,0,0.630325508,50.925858,-0.630325508,129.074142,0.970675906,0,449.7299926,19.17672565,462.280776,2,16,3% +2/19/2018 1:00,80.88380852,248.4069365,89.51160676,349.0931667,34.2022982,203.6627341,169.8169851,33.84574901,33.17097271,0.674776302,22.73445087,0,22.73445087,1.031325484,21.70312539,1.41168877,4.335518927,6.229522315,-6.229522315,0,0.382099031,0.257831371,8.292743178,0.348600983,1,0.159168044,0,0.944202528,0.982964491,0.724496596,1,32.15766692,0.747191802,0.051179574,0.312029739,0.865137715,0.589634311,0.961238037,0.922476074,0.176788543,7.971300172,32.33445546,8.718491975,110.6186171,0,0.486451759,60.89236842,-0.486451759,119.1076316,0.947214885,0,137.1140562,8.718491975,142.8201348,2,17,4% +2/19/2018 2:00,92.2995611,257.8583386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610931239,4.500477012,-24.66872668,24.66872668,0,#DIV/0!,0,0,1,0.733244728,0,0.040514973,0.961238037,1,0.616035439,0.891538843,0,0,0.115824807,0.189012588,0.724496596,0.448993192,0.979121027,0.940359064,0,0,0,0,0,0,0.300831082,72.49247333,-0.300831082,107.5075267,0.88379377,0,0,0,0,2,18,0% +2/19/2018 3:00,104.0187702,266.881904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815470024,4.657967938,-3.832588456,3.832588456,0.814435084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089902399,84.84200779,-0.089902399,95.15799221,0.493841316,0,0,0,0,2,19,0% +2/19/2018 4:00,115.837633,276.2498273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021748093,4.821469045,-1.852167513,1.852167513,0.846892989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.133454916,97.66928463,0.133454916,82.33071537,0,0.675341639,0,0,0,2,20,0% +2/19/2018 5:00,127.4209431,286.973143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223914993,5.00862621,-1.044149517,1.044149517,0.708713773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.354009576,110.7327558,0.354009576,69.2672442,0,0.908760883,0,0,0,2,21,0% +2/19/2018 6:00,138.249049,300.6733989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412901093,5.247740784,-0.565653545,0.565653545,0.626886143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556720442,123.8292965,0.556720442,56.17070349,0,0.960188317,0,0,0,2,22,0% +2/19/2018 7:00,147.3007405,320.0621351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570882912,5.586138068,-0.218912452,0.218912452,0.567589924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727761521,136.6990613,0.727761521,43.30093873,0,0.981296175,0,0,0,2,23,0% +2/20/2018 8:00,152.5680995,347.8173247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662815671,6.070557511,0.070599657,-0.070599657,0.518080437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855464113,148.8110458,0.855464113,31.18895418,0,0.991552195,0,0,0,2,0,0% +2/20/2018 9:00,151.7652499,19.64088971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648803301,0.342798194,0.342576844,-0.342576844,0.471569599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931112002,158.6088245,0.931112002,21.39117554,0,0.996300767,0,0,0,2,1,0% +2/20/2018 10:00,145.3177677,45.29657288,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536273509,0.790574337,0.628646865,-0.628646865,0.422648744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949535591,161.7201036,0.949535591,18.27989641,0,0.997342679,0,0,0,2,2,0% +2/20/2018 11:00,135.680472,62.96599784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368070967,1.098963979,0.969175083,-0.969175083,0.364414989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909464506,155.4314548,0.909464506,24.56854518,0,0.995022593,0,0,0,2,3,0% +2/20/2018 12:00,124.5890485,75.72085293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174489107,1.321578196,1.442952662,-1.442952662,0.283394251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813614675,144.4506135,0.813614675,35.54938649,0,0.988545848,0,0,0,2,4,0% +2/20/2018 13:00,112.8967526,85.98028511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970420048,1.500639067,2.276209433,-2.276209433,0.140898951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668503878,131.9516982,0.668503878,48.04830184,0,0.975206118,0,0,0,2,5,0% +2/20/2018 14:00,101.0561224,95.16882538,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763762064,1.661009348,4.631895234,-4.631895234,0,#DIV/0!,0,0,0.207573723,1,0.212630836,0,0.937177527,0.975939491,0.724496596,1,0,0,0.032331599,0.312029739,0.91240683,0.636903426,0.961238037,0.922476074,0,0,0,0,0,0,-0.484008248,118.9475159,0.484008248,61.05248408,0,0.946695975,0,0,0,2,6,0% +2/20/2018 15:00,88.98083659,104.2118896,0.878666358,7.341151821,0.748090618,0.732156684,0,0.732156684,0.725532926,0.006623758,2.188930018,1.953329494,0.235600524,0.022557692,0.213042831,1.55300857,1.818840593,-46.48572003,46.48572003,0,0.851393264,0.005639423,0.181383232,1,0.866304441,0,0.021508665,0.961238037,1,0.665312492,0.940815896,0.697409846,0.015838795,0.115824807,0.244826714,0.724496596,0.448993192,0.971406835,0.932644872,0.004085743,0.175256928,0.701495588,0.191095723,0,0.261151479,-0.26607943,105.4311026,0.26607943,74.56889741,0,0.862086188,0.701495588,0.416230806,0.973910326,2,7,39% +2/20/2018 16:00,78.10586328,113.8600309,137.0306601,451.9982812,43.8719838,43.58207661,0,43.58207661,42.54908161,1.032994998,56.08043459,21.53286237,34.54757221,1.322902182,33.22467003,1.363204479,1.987232426,-3.423290776,3.423290776,0.884429109,0.320161807,0.951833092,30.61422414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.89979568,0.958438127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.689599835,29.42755671,41.58939552,30.38599484,0,21.53286237,-0.047639257,92.73056188,0.047639257,87.26943812,0,0,41.58939552,30.38599484,61.47642142,2,8,48% +2/20/2018 17:00,67.80863319,124.8652164,324.7497451,679.395039,68.1413729,185.8457708,117.3110109,68.53475985,66.08665909,2.448100753,80.79404932,0,80.79404932,2.054713808,78.73933552,1.18348391,2.179309148,-1.410831826,1.410831826,0.771420141,0.209827333,2.005930777,64.51762912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52501045,1.488633159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453290019,62.01679916,64.97830047,63.50543232,117.3110109,0,0.172669808,80.05691624,-0.172669808,99.94308376,0.760429979,0,154.18511,63.50543232,195.7481454,2,9,27% +2/20/2018 18:00,58.92129282,138.0299973,483.2878493,777.5425249,81.90867352,375.044306,291.9622533,83.08205275,79.4388248,3.64322795,119.6485831,0,119.6485831,2.469848717,117.1787344,1.028370559,2.409077919,-0.620709086,0.620709086,0.636301195,0.16948217,2.542760554,81.78392011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35962,1.789396988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842221366,78.61381481,78.20184136,80.4032118,291.9622533,0,0.375493615,67.94517548,-0.375493615,112.0548245,0.916841943,0,345.8850811,80.4032118,398.5073751,2,10,15% +2/20/2018 19:00,52.27207106,154.0002078,594.1955741,823.888464,90.04780007,542.2600982,450.4482743,91.81182388,87.33252666,4.479297227,146.7848697,0,146.7848697,2.715273413,144.0695963,0.912319747,2.687810674,-0.135103203,0.135103203,0.553257698,0.151545727,2.781462546,89.4613967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.94734648,1.967206345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.015160146,85.99369734,85.96250662,87.96090368,450.4482743,0,0.546734533,56.8567246,-0.546734533,123.1432754,0.958547939,0,517.7387714,87.96090368,575.3074236,2,11,11% +2/20/2018 20:00,48.83655586,172.5951014,648.0900134,842.2239321,93.7304137,664.0057046,568.2160325,95.78967218,90.9040959,4.885576275,159.9632449,0,159.9632449,2.826317802,157.1369271,0.852358695,3.012352793,0.249408603,-0.249408603,0.487502306,0.14462561,2.743850041,88.25164925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.38047469,2.047657626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987910014,84.83084207,89.3683847,86.8784997,568.2160325,0,0.674661466,47.57213341,-0.674661466,132.4278666,0.975888757,0,643.8840222,86.8784997,700.7442627,2,12,9% +2/20/2018 21:00,49.31230319,192.127473,640.7794288,839.8683433,93.23936168,725.6131133,630.3547964,95.25831691,90.42785091,4.830466,158.175902,0,158.175902,2.811510771,155.3643912,0.860662052,3.353256987,0.618548627,-0.618548627,0.424375645,0.145509293,2.454525641,78.945982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.92268988,2.036929983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.778295472,75.88588076,88.70098535,77.92281074,630.3547964,0,0.750540012,41.36282294,-0.750540012,138.6371771,0.9833813,0,708.5801044,77.92281074,759.5790255,2,13,7% +2/20/2018 22:00,53.59229928,210.196866,572.8306365,815.9464258,88.54435223,717.8211647,627.6285121,90.19265262,85.87441332,4.318239302,141.5593587,0,141.5593587,2.669938914,138.8894198,0.935362076,3.668627389,1.041733766,-1.041733766,0.352006724,0.154573353,1.952574885,62.80152022,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.54575247,1.934361654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414633857,60.36721001,83.96038633,62.30157166,627.6285121,0,0.76920309,39.71761912,-0.76920309,140.2823809,0.984997661,0,702.1730027,62.30157166,742.9481353,2,14,6% +2/20/2018 23:00,60.85659052,225.478476,449.6030491,760.5011373,79.24109097,634.9552531,554.7142756,80.24097741,76.85167971,3.389297697,111.4008758,0,111.4008758,2.389411261,109.0114646,1.062147876,3.935341798,1.631687353,-1.631687353,0.251118718,0.176246783,1.298462436,41.76301538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.87275774,1.731120325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940731615,40.14419891,74.81348935,41.87531924,554.7142756,0,0.729406241,43.16335981,-0.729406241,136.8366402,0.981451094,0,619.2384219,41.87531924,646.6449808,2,15,4% +2/20/2018 0:00,70.14104382,238.0700856,281.9723612,642.5074284,63.70880488,471.2322367,407.3188606,63.91337611,61.78774935,2.125626764,70.28851907,0,70.28851907,1.921055528,68.36746354,1.224192155,4.155106844,2.70886489,-2.70886489,0.066910511,0.225939892,0.590355953,18.98787677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.39273489,1.39179819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427710878,18.25186939,59.82044576,19.64366758,407.3188606,0,0.633951987,50.65770146,-0.633951987,129.3422985,0.971129674,0,455.379878,19.64366758,468.2362656,2,16,3% +2/20/2018 1:00,80.66694772,248.697398,93.12385499,358.3098454,35.0156428,210.1613257,175.4995268,34.66179893,33.95979197,0.702006955,23.63480762,0,23.63480762,1.055850824,22.57895679,1.407903835,4.340588437,6.083052194,-6.083052194,0,0.376011526,0.263962706,8.489947993,0.337796366,1,0.162933856,0,0.943728544,0.982490507,0.724496596,1,32.92051559,0.764960328,0.049812874,0.312029739,0.868470803,0.592967399,0.961238037,0.922476074,0.181086717,8.160860942,33.10160231,8.92582127,116.2164244,0,0.489798226,60.67267956,-0.489798226,119.3273204,0.947917148,0,143.2651438,8.92582127,149.1069153,2,17,4% +2/20/2018 2:00,92.09804405,258.1580033,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607414103,4.505707148,-27.02070235,27.02070235,0,#DIV/0!,0,0,1,0.759092217,0,0.036991778,0.961238037,1,0.624954983,0.900458387,0,0,0.115824807,0.199104418,0.724496596,0.448993192,0.977776595,0.939014632,0,0,0,0,0,0,0.303930353,72.30617701,-0.303930353,107.693823,0.885488626,0,0,0,0,2,18,0% +2/20/2018 3:00,103.8254548,267.1960798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812096034,4.66345134,-3.881833518,3.881833518,0.806013682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092711834,84.68036372,-0.092711834,95.31963628,0.510694524,0,0,0,0,2,19,0% +2/20/2018 4:00,115.6423071,276.5870999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018339013,4.827355561,-1.862922855,1.862922855,0.84873226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130922695,97.52291457,0.130922695,82.47708543,0,0.668095243,0,0,0,2,20,0% +2/20/2018 5:00,127.2108291,287.3427145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.220247812,5.015076449,-1.046991168,1.046991168,0.709199724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35172273,110.5927212,0.35172273,69.40727875,0,0.907842568,0,0,0,2,21,0% +2/20/2018 6:00,138.0067438,301.0751675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40867207,5.254752969,-0.565590235,0.565590235,0.626875316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554630125,123.6852425,0.554630125,56.31475749,0,0.95984983,0,0,0,2,22,0% +2/20/2018 7:00,147.0053864,320.4465764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.565728011,5.592847835,-0.217302671,0.217302671,0.567314635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725805267,136.5358778,0.725805267,43.46412215,0,0.981110999,0,0,0,2,23,0% +2/21/2018 8:00,152.2171868,348.006222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656691088,6.073854391,0.073380965,-0.073380965,0.517604806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853570159,148.6021293,0.853570159,31.39787069,0,0.991422507,0,0,0,2,0,0% +2/21/2018 9:00,151.4104461,19.49219491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642610806,0.34020298,0.346593388,-0.346593388,0.470882729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929204253,158.3111104,0.929204253,21.68888963,0,0.996190517,0,0,0,2,1,0% +2/21/2018 10:00,145.0055073,44.97629803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530823536,0.784984486,0.634351282,-0.634351282,0.421673231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947538874,161.3588117,0.947538874,18.64118834,0,0.997231716,0,0,0,2,2,0% +2/21/2018 11:00,135.4082541,62.6251984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363319869,1.093015907,0.977694593,-0.977694593,0.362958067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907309766,155.1361888,0.907309766,24.86381117,0,0.994892029,0,0,0,2,3,0% +2/21/2018 12:00,124.3406765,75.40116165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170154199,1.315998531,1.457213111,-1.457213111,0.280955571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811243737,144.2176265,0.811243737,35.78237354,0,0.988366242,0,0,0,2,4,0% +2/21/2018 13:00,112.6583717,85.68439815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966259517,1.495474865,2.306269964,-2.306269964,0.135758298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873463,131.74937,0.665873463,48.25063,0,0.974910658,0,0,0,2,5,0% +2/21/2018 14:00,100.8171203,94.89135116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759590692,1.656166509,4.747516814,-4.747516814,0,#DIV/0!,0,0,0.219798092,1,0.207601666,0,0.937865249,0.976627212,0.724496596,1,0,0,0.034056133,0.312029739,0.907965264,0.63246186,0.961238037,0.922476074,0,0,0,0,0,0,-0.481092952,118.7568088,0.481092952,61.2431912,0,0.94606998,0,0,0,2,6,0% +2/21/2018 15:00,88.7593964,103.9477889,1.336285321,10.46004439,1.109815677,1.086424123,0,1.086424123,1.076350639,0.010073483,3.11169709,2.754234205,0.357462884,0.033465037,0.323997847,1.549143709,1.814231167,-38.30562968,38.30562968,0,0.830522987,0.008366259,0.26908766,1,0.835548013,0,0.026099895,0.961238037,1,0.653148501,0.928651905,1.034629176,0.023373842,0.115824807,0.231035402,0.724496596,0.448993192,0.973375817,0.934613853,0.006061326,0.260208126,1.040690502,0.283581968,0,0.452939288,-0.263309992,105.2665564,0.263309992,74.7334436,0,0.860109751,1.040690502,0.673159467,1.48125991,2,7,42% +2/21/2018 16:00,77.84174525,113.6077524,141.7361453,460.8711696,44.6708687,44.39234412,0,44.39234412,43.32387719,1.068466933,56.07544567,20.36288476,35.71256091,1.346991509,34.3655694,1.35859475,1.982829336,-3.360849102,3.360849102,0.895107265,0.315169208,0.99171492,31.89696082,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.64455866,0.975890763,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.718494083,30.660572,42.36305274,31.63646276,0,20.36288476,-0.044183464,92.53235041,0.044183464,87.46764959,0,0,42.36305274,31.63646276,63.06848489,2,8,49% +2/21/2018 17:00,67.51883554,124.6301555,330.1012047,683.8390317,68.61504531,189.653895,120.6194042,69.03449085,66.54604854,2.488442316,82.10585563,0,82.10585563,2.068996779,80.03685885,1.178425987,2.17520656,-1.398772977,1.398772977,0.769357957,0.207860633,2.033802307,65.41407334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.96659305,1.498981123,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473482848,62.87849544,65.4400759,64.37747656,120.6194042,0,0.176385668,79.84069451,-0.176385668,100.1593055,0.766530256,0,157.8984987,64.37747656,200.0322696,2,9,27% +2/21/2018 18:00,58.60143265,137.8302922,488.8613563,780.4081744,82.2778367,379.5739827,296.0918829,83.48209976,79.79685636,3.6852434,121.011076,0,121.011076,2.48098035,118.5300957,1.022787946,2.405592407,-0.618235312,0.618235312,0.635878155,0.168305053,2.569210558,82.63464315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.70377355,1.797461818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861384303,79.43156216,78.56515785,81.22902398,296.0918829,0,0.379406435,67.7030793,-0.379406435,112.2969207,0.918215203,0,350.4412262,81.22902398,403.6039978,2,10,15% +2/21/2018 19:00,51.92365749,153.8721688,599.8388319,826.0999185,90.37401084,547.1689477,454.9982083,92.17073945,87.64890097,4.521838488,148.1629794,0,148.1629794,2.725109871,145.4378695,0.906238783,2.685575973,-0.136255391,0.136255391,0.553454734,0.150663822,2.806854145,90.2780778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.2514575,1.974332825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033556273,86.77872228,86.28501377,88.7530551,454.9982083,0,0.550778663,56.57955111,-0.550778663,123.4204489,0.959219432,0,522.7281365,88.7530551,580.815236,2,11,11% +2/21/2018 20:00,48.47375726,172.5830484,653.6954565,844.1775718,94.03694651,669.1265593,572.9973412,96.12921809,91.20138561,4.927832473,161.3315926,0,161.3315926,2.835560897,158.4960317,0.846026665,3.012142427,0.24601257,-0.24601257,0.488083062,0.143854368,2.768084477,89.031112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.66624086,2.054354217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005467781,85.58009132,89.67170864,87.63444554,572.9973412,0,0.678763995,47.2528674,-0.678763995,132.7471326,0.976336694,0,649.1100383,87.63444554,706.4650302,2,12,9% +2/21/2018 21:00,48.96051666,192.2460471,646.2545017,841.8107438,93.53928371,730.8414953,635.2510267,95.5904686,90.71872919,4.871739413,159.5124405,0,159.5124405,2.820554527,156.691886,0.854522219,3.355326496,0.612932583,-0.612932583,0.425336045,0.14474063,2.477344127,79.67990295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.20229315,2.043482153,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794827387,76.59135349,88.99712054,78.63483564,635.2510267,0,0.754624518,41.00742821,-0.754624518,138.9925718,0.983741882,0,713.9201614,78.63483564,765.3850887,2,13,7% +2/21/2018 22:00,53.27307186,210.4123954,578.0917322,818.1251448,88.85133854,723.0999112,632.5698687,90.53004252,86.17214286,4.357899665,142.8442291,0,142.8442291,2.679195684,140.1650334,0.929790507,3.672389087,1.032894335,-1.032894335,0.353518355,0.153697646,1.97361023,63.47808925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.83194143,1.941068152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.429873893,61.01755389,84.26181533,62.95862204,632.5698687,0,0.773194508,39.35837403,-0.773194508,140.641626,0.985333219,0,707.5539202,62.95862204,748.7590791,2,14,6% +2/21/2018 23:00,60.57678382,225.7439871,454.5679112,763.3220696,79.58080885,640.3027955,559.6949167,80.60787877,77.18115384,3.426724925,112.6149079,0,112.6149079,2.399655009,110.2152529,1.057264328,3.939975842,1.616508569,-1.616508569,0.253714443,0.17506913,1.317116576,42.36299663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.1894608,1.738541885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.954246475,40.72092371,75.14370728,42.4594656,559.6949167,0,0.733235601,42.84166376,-0.733235601,137.1583362,0.981809094,0,624.6572664,42.4594656,652.4461374,2,15,4% +2/21/2018 0:00,69.89656552,238.3558542,286.5204694,646.9565084,64.15117516,476.8500012,412.4733083,64.37669286,62.21678053,2.159912325,71.40459965,0,71.40459965,1.934394624,69.47020502,1.219925204,4.160094447,2.675893995,-2.675893995,0.072548866,0.223897355,0.605213311,19.4657405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.80513598,1.40146232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.438474984,18.71121018,60.24361096,20.1126725,412.4733083,0,0.637559562,50.38991802,-0.637559562,129.610082,0.971575955,0,460.9927593,20.1126725,474.1561012,2,16,3% +2/21/2018 1:00,80.45051097,248.9921595,96.75700309,367.3569827,35.81268353,216.6143587,181.1521645,35.46219415,34.73279899,0.72939516,24.53974016,0,24.53974016,1.079884543,23.45985561,1.404126301,4.345732996,5.943299663,-5.943299663,0,0.370130144,0.269971136,8.683199747,0.327147763,1,0.166695339,0,0.943251923,0.982013887,0.724496596,1,33.66764814,0.782372676,0.048453956,0.312029739,0.871799584,0.59629618,0.961238037,0.922476074,0.185315342,8.346621879,33.85296348,9.128994554,121.8886391,0,0.493122965,60.45394749,-0.493122965,119.5460525,0.948605412,0,149.4771862,9.128994554,155.4519305,2,17,4% +2/21/2018 2:00,91.89697262,258.4614507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603904745,4.511003305,-29.86411641,29.86411641,0,#DIV/0!,0,0,1,0.784353481,0,0.033472496,0.961238037,1,0.633962404,0.909465808,0,0,0.115824807,0.209300591,0.724496596,0.448993192,0.976395508,0.937633545,0,0,0,0,0,0,0.307005833,72.12111959,-0.307005833,107.8788804,0.887136645,0,0,0,0,2,18,0% +2/21/2018 3:00,103.6323425,267.5136837,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808725588,4.668994575,-3.932183161,3.932183161,0.797403386,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095500288,84.51988487,-0.095500288,95.48011513,0.52644137,0,0,0,0,2,19,0% +2/21/2018 4:00,115.4467799,276.9275192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01492642,4.833297,-1.873713643,1.873713643,0.850577594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.128405407,97.37745657,0.128405407,82.62254343,0,0.660608297,0,0,0,2,20,0% +2/21/2018 5:00,126.9999472,287.7150585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216567229,5.021575079,-1.049777781,1.049777781,0.709676263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.349441946,110.4531858,0.349441946,69.54681416,0,0.906914716,0,0,0,2,21,0% +2/21/2018 6:00,137.7629765,301.478926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404417527,5.261799884,-0.565456531,0.565456531,0.626852451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55253479,123.5410846,0.55253479,56.45891542,0,0.959507961,0,0,0,2,22,0% +2/21/2018 7:00,146.7079507,320.8317901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560536778,5.599571083,-0.215615569,0.215615569,0.567026124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723831472,136.3717267,0.723831472,43.62827331,0,0.980923147,0,0,0,2,23,0% +2/22/2018 8:00,151.8638212,348.1975036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650523695,6.077192885,0.076249474,-0.076249474,0.517114262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851645561,148.3911033,0.851645561,31.60889669,0,0.99129013,0,0,0,2,0,0% +2/22/2018 9:00,151.0521575,19.3508752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636357491,0.337736485,0.350715315,-0.350715315,0.470177838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927253079,158.0105902,0.927253079,21.98940981,0,0.996077289,0,0,0,2,1,0% +2/22/2018 10:00,144.6886445,44.66230979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525293238,0.779504357,0.640195902,-0.640195902,0.420673742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945487157,160.9944716,0.945487157,19.00552843,0,0.997117209,0,0,0,2,2,0% +2/22/2018 11:00,135.1311857,62.28773491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358484113,1.087126058,0.98642703,-0.98642703,0.361464733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905090453,154.8354684,0.905090453,25.16453163,0,0.994756903,0,0,0,2,3,0% +2/22/2018 12:00,124.0876503,75.0829657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165738059,1.310444964,1.471868748,-1.471868748,0.278449309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80880132,143.978982,0.80880132,36.02101804,0,0.988180121,0,0,0,2,4,0% +2/22/2018 13:00,112.4156417,85.38902318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962023078,1.4903196,2.337382803,-2.337382803,0.130437689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663167805,131.5419175,0.663167805,48.45808254,0,0.974604301,0,0,0,2,5,0% +2/22/2018 14:00,100.5740677,94.61383766,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755348623,1.651322985,4.870112536,-4.870112536,0,#DIV/0!,0,0,0.23235448,1,0.202519167,0,0.938554639,0.977316602,0.724496596,1,0,0,0.035808703,0.312029739,0.903475508,0.627972104,0.961238037,0.922476074,0,0,0,0,0,0,-0.478102056,118.5615175,0.478102056,61.43848251,0,0.945419818,0,0,0,2,6,0% +2/22/2018 15:00,88.53188727,103.6833082,1.938302494,14.45765255,1.567888802,1.535222912,0,1.535222912,1.520611169,0.014611743,4.282468654,3.765227142,0.517241513,0.047277632,0.469963881,1.545172926,1.809615108,-32.46772782,32.46772782,0,0.808897892,0.011819408,0.380152792,1,0.803244969,0,0.030790081,0.961238037,1,0.640893466,0.91639687,1.461669295,0.032862689,0.115824807,0.217149783,0.724496596,0.448993192,0.975316833,0.93655487,0.008563121,0.36787014,1.470232416,0.400732829,0,0.740827384,-0.260431431,105.0956633,0.260431431,74.90433673,0,0.858010885,1.470232416,1.036370789,2.14851637,2,7,46% +2/22/2018 16:00,77.57399274,113.3548794,146.5260554,469.6643332,45.46432831,45.19798637,0,45.19798637,44.09341107,1.104575299,55.99478104,19.09692524,36.8978558,1.370917244,35.52693856,1.353921587,1.978415868,-3.299968215,3.299968215,0.905518509,0.310281528,1.032594954,33.21180325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.38426389,0.993224877,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.748111529,31.92444855,43.13237542,32.91767343,0,19.09692524,-0.040660795,92.33033438,0.040660795,87.66966562,0,0,43.13237542,32.91767343,64.67633433,2,8,50% +2/22/2018 17:00,67.22556726,124.3944444,335.5107834,688.2457227,69.08798571,193.527448,123.993498,69.53395004,67.00472803,2.529222006,83.43173153,0,83.43173153,2.083257677,81.34847385,1.17330749,2.171092626,-1.386735253,1.386735253,0.767299385,0.205918823,2.061864325,66.31664429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40749323,1.509313095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493813684,63.74608097,65.90130692,65.25539406,123.993498,0,0.180158763,79.62099257,-0.180158763,100.3790074,0.772467011,0,161.6821936,65.25539406,204.3905439,2,9,26% +2/22/2018 18:00,58.27817188,137.6302606,494.4771081,783.2510936,82.64701299,384.1536589,300.271181,83.88247792,80.15490061,3.727577309,122.3838121,0,122.3838121,2.492112377,119.8916997,1.017145981,2.402101198,-0.615690038,0.615690038,0.635442887,0.167140221,2.59579181,83.4895876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.04793931,1.805526933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88064233,80.25336728,78.92858164,82.05889421,300.271181,0,0.38336516,67.45771515,-0.38336516,112.5422848,0.919576046,0,355.050767,82.05889421,408.7566721,2,10,15% +2/22/2018 19:00,51.57194118,153.7449862,605.5097948,828.2924266,90.69996456,552.1126539,459.5830393,92.52961459,87.96502599,4.564588602,149.5477987,0,149.5477987,2.734938579,146.8128601,0.900100175,2.683356218,-0.137327353,0.137327353,0.55363805,0.149791077,2.832323063,91.09724574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55532889,1.98145369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052008417,87.56613766,86.60733731,89.54759135,459.5830393,0,0.55485602,56.29920162,-0.55485602,123.7007984,0.959886532,0,527.7549072,89.54759135,586.3620148,2,11,11% +2/22/2018 20:00,48.1080542,172.574158,659.3152773,846.1120441,94.34264267,674.2665993,577.7985384,96.46806096,91.49786391,4.970197056,162.703401,0,162.703401,2.844778764,159.8586223,0.839643943,3.01198726,0.242702645,-0.242702645,0.488649093,0.14309185,2.792352334,89.8116497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.95122708,2.06103253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02304976,86.33037384,89.97427684,88.39140637,577.7985384,0,0.682886554,46.93037754,-0.682886554,133.0696225,0.976781396,0,654.3571399,88.39140637,712.2075476,2,12,9% +2/22/2018 21:00,48.60673179,192.3700966,651.7325698,843.7309488,93.83764579,736.0734991,640.1523692,95.92112995,91.00809455,4.913035404,160.8496583,0,160.8496583,2.829551245,158.020107,0.848347508,3.357491568,0.607420131,-0.607420131,0.42627873,0.143981827,2.500165924,80.41393038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.48044214,2.050000245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.811361701,77.29692857,89.29180384,79.34692882,640.1523692,0,0.758716235,40.64884562,-0.758716235,139.3511544,0.984099209,0,719.2652441,79.34692882,771.196222,2,13,7% +2/22/2018 22:00,52.95295703,210.6341982,583.347244,820.2747537,89.15586714,728.3674352,637.5024284,90.86500673,86.4674888,4.397517932,144.1276714,0,144.1276714,2.688378344,141.4392931,0.924203449,3.676260276,1.024203943,-1.024203943,0.3550045,0.152834985,1.994636638,64.15437081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.11583918,1.947720959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445107455,61.66762145,84.56094664,63.61534241,637.5024284,0,0.777181579,38.99675711,-0.777181579,141.0032429,0.98566497,0,712.9247588,63.61534241,754.5597281,2,14,6% +2/22/2018 23:00,60.29694009,226.0152764,459.5224408,766.0986403,79.91669001,645.6248466,564.6538654,80.9709812,77.50690694,3.464074262,113.826319,0,113.826319,2.409783065,111.4165359,1.052380133,3.944710732,1.601607,-1.601607,0.256262762,0.173912486,1.335774588,42.96310244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50258707,1.745879627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.967764142,41.29776824,75.47035121,43.04364787,564.6538654,0,0.737051126,42.5191811,-0.737051126,137.4808189,0.982162101,0,630.0519779,43.04364787,658.2231846,2,15,4% +2/22/2018 0:00,69.65250086,238.6465504,291.0597504,651.3220669,64.58656314,482.4261041,417.5929328,64.8331713,62.63903996,2.194131343,72.51832944,0,72.51832944,1.947523178,70.57080626,1.215665472,4.165168053,2.643712898,-2.643712898,0.078052157,0.22190139,0.620135383,19.94568562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.2110278,1.410973913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.449285974,19.17255169,60.66031378,20.5835256,417.5929328,0,0.641146606,50.12262772,-0.641146606,129.8773723,0.972014716,0,466.5667899,20.5835256,480.0382957,2,16,3% +2/22/2018 1:00,80.23456142,249.2911149,100.4083239,376.2332727,36.59349485,223.0184486,186.7714623,36.24698633,35.49006597,0.756920358,25.44858951,0,25.44858951,1.103428885,24.34516062,1.400357271,4.350950751,5.80983177,-5.80983177,0,0.364446825,0.275857221,8.872516492,0.316653323,1,0.170451851,0,0.942772766,0.98153473,0.724496596,1,34.39912353,0.799430471,0.047102952,0.312029739,0.875123473,0.599620069,0.961238037,0.922476074,0.189475053,8.528600335,34.58859858,9.328030806,127.6296581,0,0.496424628,60.23626416,-0.496424628,119.7637358,0.949279775,0,155.7448518,9.328030806,161.8498614,2,17,4% +2/22/2018 2:00,91.69638594,258.7685649,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600403847,4.516363458,-33.37068974,33.37068974,0,#DIV/0!,0,0,1,0.809046525,0,0.029957452,0.961238037,1,0.643056413,0.918559817,0,0,0.115824807,0.219599853,0.724496596,0.448993192,0.974977384,0.936215421,0,0,0,0,0,0,0.31005662,71.93735727,-0.31005662,108.0626427,0.888739131,0,0,0,0,2,18,0% +2/22/2018 3:00,103.439457,267.8345892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805359102,4.674595432,-3.983674425,3.983674425,0.788597861,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098267221,84.36060191,-0.098267221,95.63939809,0.541183333,0,0,0,0,2,19,0% +2/22/2018 4:00,115.2510649,277.2709422,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011510548,4.839290862,-1.884540302,1.884540302,0.852429062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12590326,97.23292086,0.12590326,82.76707914,0,0.652869694,0,0,0,2,20,0% +2/22/2018 5:00,126.7883072,288.0900048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212873414,5.028119126,-1.052509364,1.052509364,0.710143391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347167159,110.3141435,0.347167159,69.68585655,0,0.90597716,0,0,0,2,21,0% +2/22/2018 6:00,137.5177652,301.8844658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400137782,5.268877889,-0.565252708,0.565252708,0.626817596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550434176,123.3968043,0.550434176,56.60319567,0,0.959162617,0,0,0,2,22,0% +2/22/2018 7:00,146.4084796,321.2175428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.555310022,5.606303737,-0.213851554,0.213851554,0.566724459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721839765,136.2065845,0.721839765,43.79341553,0,0.98073255,0,0,0,2,23,0% +2/23/2018 8:00,151.5080933,348.3909162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315072,6.080568571,0.079204766,-0.079204766,0.516608877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849689936,148.1779611,0.849689936,31.82203889,0,0.991155005,0,0,0,2,0,0% +2/23/2018 9:00,150.6905292,19.21668324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630045887,0.335394394,0.354942348,-0.354942348,0.469454973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925258184,157.7073191,0.925258184,22.29268085,0,0.995961029,0,0,0,2,1,0% +2/23/2018 10:00,144.3673377,44.35458493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519685375,0.774133545,0.646180905,-0.646180905,0.419650247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943380323,160.6272146,0.943380323,19.37278537,0,0.996999107,0,0,0,2,2,0% +2/23/2018 11:00,134.8494054,61.9536907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353566118,1.081295887,0.99537398,-0.99537398,0.359934714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902806711,154.5294851,0.902806711,25.47051491,0,0.99461716,0,0,0,2,3,0% +2/23/2018 12:00,123.8300934,74.7663599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161242842,1.30491915,1.486926374,-1.486926374,0.275874304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806287887,143.7348174,0.806287887,36.26518256,0,0.98798741,0,0,0,2,4,0% +2/23/2018 13:00,112.1686796,85.09424223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957712777,1.485174701,2.369584467,-2.369584467,0.12493088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660387728,131.3294498,0.660387728,48.67055017,0,0.974286903,0,0,0,2,5,0% +2/23/2018 14:00,100.3270809,94.33635039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75103789,1.646479919,5.000255203,-5.000255203,0,#DIV/0!,0,0,0.245249019,1,0.197385745,0,0.93924518,0.978007143,0.724496596,1,0,0,0.037588948,0.312029739,0.898939658,0.623436254,0.961238037,0.922476074,0,0,0,0,0,0,-0.475036756,118.3617432,0.475036756,61.63825677,0,0.944744987,0,0,0,2,6,0% +2/23/2018 15:00,88.29857003,103.418496,2.704825784,19.42447624,2.128089955,2.08431031,0,2.08431031,2.063920191,0.020390119,5.720769713,5.000783623,0.719986091,0.064169764,0.655816327,1.541100772,1.804993262,-28.09931517,28.09931517,0,0.78677524,0.016042441,0.515980048,1,0.769341818,0,0.035573043,0.961238037,1,0.628574411,0.904077815,1.983918592,0.044413275,0.115824807,0.20320092,0.724496596,0.448993192,0.977224458,0.938462495,0.011622694,0.499615067,1.995541286,0.544028342,0,1.153471658,-0.25744754,104.9186619,0.25744754,75.08133807,0,0.855785676,1.995541286,1.531152864,2.997650213,2,7,50% +2/23/2018 16:00,77.30272987,113.1014415,151.3975368,478.3704335,46.25184721,45.99848195,0,45.99848195,44.85718336,1.141298583,55.83744532,17.73469587,38.10274945,1.394663844,36.70808561,1.349187157,1.973992542,-3.240629179,3.240629179,0.915666082,0.305499338,1.074452768,34.55809444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.11843087,1.010429208,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.778437373,33.21855485,43.89686825,34.22898406,0,17.73469587,-0.037073144,92.12462155,0.037073144,87.87537845,0,0,43.89686825,34.22898406,66.29905374,2,8,51% +2/23/2018 17:00,66.92895575,124.1580908,340.975582,692.6126694,69.5599222,197.4645401,127.4316882,70.03285186,67.46243389,2.570417966,84.77096584,0,84.77096584,2.097488303,82.67347753,1.168130643,2.166967477,-1.374729321,1.374729321,0.765246249,0.20400265,2.090101019,67.22483345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84745752,1.519623135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514271073,64.61906693,66.36172859,66.13869007,127.4316882,0,0.183986944,79.39792525,-0.183986944,100.6020747,0.778241586,0,165.5343678,66.13869007,208.8208176,2,9,26% +2/23/2018 18:00,57.95163893,137.4298872,500.1321087,786.0699319,83.0159857,388.7808616,304.4979071,84.28295453,80.51274744,3.770207092,123.7660583,0,123.7660583,2.503238265,121.2628201,1.011446906,2.398604022,-0.613078216,0.613078216,0.634996239,0.165988114,2.62249017,84.34829861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.39191529,1.813587602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899985201,81.07879297,79.29190049,82.89238057,304.4979071,0,0.387367453,67.20920653,-0.387367453,112.7907935,0.92092359,0,359.7112064,82.89238057,413.9626116,2,10,15% +2/23/2018 19:00,51.21704714,153.6186359,611.2054922,830.4651147,91.02547357,557.0884877,464.2002428,92.88824487,88.28071969,4.607525174,150.9386018,0,150.9386018,2.744753876,148.1938479,0.893906106,2.68115099,-0.13832162,0.13832162,0.55380808,0.148927774,2.85785642,91.91848628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85878569,1.98856484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.070507248,88.3555453,86.92929294,90.34411014,464.2002428,0,0.558964169,56.01580664,-0.558964169,123.9841934,0.960548828,0,532.8162922,90.34411014,591.9447054,2,11,11% +2/23/2018 20:00,47.7395685,172.5684282,664.9466425,848.0267358,94.64733687,679.4230369,582.6170177,96.80601912,91.79337045,5.012648666,164.0779784,0,164.0779784,2.853966418,161.224012,0.833212654,3.011887257,0.239477296,-0.239477296,0.48920066,0.142338243,2.816642077,90.59289134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.23527921,2.067688955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.040647597,87.08133302,90.2759268,89.14902198,582.6170177,0,0.687026709,46.60479445,-0.687026709,133.3952055,0.977222626,0,659.6224586,89.14902198,717.9687105,2,12,9% +2/23/2018 21:00,48.25107188,192.4996348,657.211033,845.6285236,94.13430549,741.3064314,645.0562882,96.25014324,91.29580886,4.954334374,162.1869205,0,162.1869205,2.838496629,159.3484239,0.842140072,3.359752436,0.602009998,-0.602009998,0.427203917,0.143232996,2.522980987,81.14774123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.75700409,2.056481145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827891137,78.00229548,89.58489522,80.05877662,645.0562882,0,0.762812831,40.28719768,-0.762812831,139.7128023,0.984453121,0,724.6125716,80.05877662,777.0094398,2,13,7% +2/23/2018 22:00,52.63207327,210.8622545,588.5948778,822.3949972,89.45782376,733.6212725,642.4238554,91.19741712,86.76034031,4.437076813,145.4091261,0,145.4091261,2.69748345,142.7116426,0.918602971,3.680240609,1.015660741,-1.015660741,0.356465474,0.151985393,2.015645621,64.83009191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39733919,1.954317577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460328391,62.31715027,84.85766758,64.27146785,642.4238554,0,0.781162164,38.63289449,-0.781162164,141.3671055,0.985992804,0,718.2829659,64.27146785,760.3473562,2,14,6% +2/23/2018 23:00,60.01715978,226.2922774,464.4646867,768.8309048,80.24866325,650.9193028,569.5891019,81.33020097,77.82886997,3.501330999,115.034634,0,115.034634,2.419793283,112.6148407,1.047497046,3.949545312,1.586977732,-1.586977732,0.258764514,0.172776673,1.354429377,43.56310458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.81207018,1.753131996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.981279473,41.87451312,75.79334965,43.62764512,569.5891019,0,0.740850944,42.1960465,-0.740850944,137.8039535,0.982510041,0,635.4203614,43.62764512,663.9737825,2,15,4% +2/23/2018 0:00,69.40892641,238.9420784,295.5885245,655.6049939,65.01499474,487.9589523,422.6761284,65.28282392,63.05455277,2.228271154,73.62930193,0,73.62930193,1.960441971,71.66885996,1.211414296,4.170325989,2.612297944,-2.612297944,0.083424431,0.219951011,0.635115557,20.4274995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.61043452,1.420333534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.460139059,19.63568952,61.07057357,21.05602306,422.6761284,0,0.644711575,49.85594617,-0.644711575,130.1440538,0.97244594,0,472.1002587,21.05602306,485.8810047,2,16,3% +2/23/2018 1:00,80.01915645,249.5941536,104.0752609,384.9381596,37.35820084,229.370634,192.3543575,37.01627653,36.23171325,0.784563278,26.36073954,0,26.36073954,1.126487592,25.23425194,1.396597745,4.356239774,5.682248298,-5.682248298,0,0.358953708,0.281621898,9.057928312,0.306310905,1,0.174202864,0,0.94229116,0.981053123,0.724496596,1,35.11504863,0.816136426,0.045759953,0.312029739,0.878441987,0.602938583,0.961238037,0.922476074,0.193566695,8.706825228,35.30861533,9.522961654,133.4341201,0,0.499701972,60.01971541,-0.499701972,119.9802846,0.949940359,0,162.0630712,9.522961654,168.2956592,2,17,4% +2/23/2018 2:00,91.49631763,259.079226,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596911996,4.521785518,-37.80284422,37.80284422,0,#DIV/0!,0,0,1,0.833189342,0,0.026446868,0.961238037,1,0.652235964,0.927739368,0,0,0.115824807,0.230001135,0.724496596,0.448993192,0.97352183,0.934759867,0,0,0,0,0,0,0.313081924,71.75493993,-0.313081924,108.2450601,0.890297391,0,0,0,0,2,18,0% +2/23/2018 3:00,103.2468172,268.1586664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801996901,4.680251646,-4.036347942,4.036347942,0.779590159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101012207,84.20253918,-0.101012207,95.79746082,0.55501032,0,0,0,0,2,19,0% +2/23/2018 4:00,115.0551706,277.6172229,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008091549,4.8453346,-1.895403825,1.895403825,0.854286834,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123416358,97.08931167,0.123416358,82.91068833,0,0.64486732,0,0,0,2,20,0% +2/23/2018 5:00,126.5759148,288.4673803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209166468,5.034705571,-1.05518621,1.05518621,0.710601159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344898214,110.1755825,0.344898214,69.82441748,0,0.905029693,0,0,0,2,21,0% +2/23/2018 6:00,137.2711253,302.2915763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395833104,5.275983308,-0.564979229,0.564979229,0.626770828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548327949,123.2523788,0.548327949,56.74762125,0,0.958813694,0,0,0,2,22,0% +2/23/2018 7:00,146.1070182,321.6036007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550048527,5.613041718,-0.212011173,0.212011173,0.566409735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719829731,136.0404245,0.719829731,43.95957546,0,0.980539129,0,0,0,2,23,0% +2/24/2018 8:00,151.1500927,348.5862058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638066782,6.083977019,0.082246311,-0.082246311,0.516088742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847702887,147.9626948,0.847702887,32.03730521,0,0.99101707,0,0,0,2,0,0% +2/24/2018 9:00,150.3257063,19.08936257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623678526,0.333172229,0.359274105,-0.359274105,0.468714199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923219288,157.4013525,0.923219288,22.5986475,0,0.995841686,0,0,0,2,1,0% +2/24/2018 10:00,144.041748,44.05308178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514002763,0.768871323,0.652306372,-0.652306372,0.41860273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9412183,160.2571709,0.9412183,19.74282909,0,0.996877361,0,0,0,2,2,0% +2/24/2018 11:00,134.5630571,61.6231344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348568399,1.075526591,1.004536952,-1.004536952,0.358367753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900458753,154.2184339,0.900458753,25.78156611,0,0.994472748,0,0,0,2,3,0% +2/24/2018 12:00,123.5681351,74.45142882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156670808,1.299422566,1.502392857,-1.502392857,0.273229379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803703996,143.485278,0.803703996,36.51472203,0,0.987788041,0,0,0,2,4,0% +2/24/2018 13:00,111.9176084,84.80012975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953330758,1.48004147,2.40291314,-2.40291314,0.119231341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657534165,131.1120842,0.657534165,48.88791576,0,0.973958324,0,0,0,2,5,0% +2/24/2018 14:00,100.0762822,94.05894863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746660627,1.641638345,5.1385826,-5.1385826,0,#DIV/0!,0,0,0.258487916,1,0.192203869,0,0.939936353,0.978698316,0.724496596,1,0,0,0.039396479,0.312029739,0.894359875,0.618856471,0.961238037,0.922476074,0,0,0,0,0,0,-0.47189837,118.1575946,0.47189837,61.84240541,0,0.944044983,0,0,0,2,6,0% +2/24/2018 15:00,88.05973092,103.153395,3.653464878,25.42306588,2.792700581,2.736031716,0,2.736031716,2.708490355,0.027541361,7.436711504,6.46667642,0.970035085,0.084210226,0.885824858,1.536932243,1.800366377,-24.71318515,24.71318515,0,0.764397818,0.021052557,0.677122589,1,0.73378464,0,0.040442167,0.961238037,1,0.616218767,0.891722171,2.603503952,0.058068173,0.115824807,0.189219963,0.724496596,0.448993192,0.979093627,0.940331664,0.015252506,0.655979163,2.618756457,0.714047336,0,1.721528593,-0.254362572,104.7358178,0.254362572,75.26418217,0,0.853430199,2.618756457,2.183251827,4.047651113,2,7,55% +2/24/2018 16:00,77.02808556,112.8474627,156.3476,486.9826555,47.03294503,46.79334245,0,46.79334245,45.6147282,1.17861425,55.60268943,16.27618685,39.32650258,1.418216826,37.90828575,1.34439371,1.969559776,-3.182811426,3.182811426,0.9255535,0.300822942,1.117265865,35.93511078,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.84661179,1.027493262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.809455316,34.54219534,44.6560671,35.5696886,0,16.27618685,-0.033422519,91.91532596,0.033422519,88.08467404,0,0,44.6560671,35.5696886,67.9357169,2,8,52% +2/24/2018 17:00,66.62913258,123.921096,346.492619,696.9375683,70.03058927,201.463156,130.9322397,70.53091633,67.91890861,2.612007721,86.12282767,0,86.12282767,2.111680652,84.01114702,1.162897741,2.162831138,-1.362765533,1.362765533,0.763200321,0.202112788,2.118496456,68.13812832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28623838,1.529905444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.534843471,65.49696071,66.82108185,67.02686615,130.9322397,0,0.187867961,79.1716131,-0.187867961,100.8283869,0.78385563,0,169.4530551,67.02686615,213.3207985,2,9,26% +2/24/2018 18:00,57.62196549,137.2291492,505.8233158,788.8634108,83.38454112,393.4530328,308.7697334,84.68329936,80.87018954,3.813109816,125.1570707,0,125.1570707,2.514351571,122.6427191,1.005693019,2.395100483,-0.61040488,0.61040488,0.634539072,0.164849145,2.649291478,85.2103208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.73550224,1.821639154,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919402657,81.90740149,79.65490489,83.72904064,308.7697334,0,0.391410895,66.95768208,-0.391410895,113.0423179,0.922257005,0,364.4199545,83.72904064,419.218937,2,10,15% +2/24/2018 19:00,50.85910226,153.4930853,616.922942,832.617162,91.3503532,562.093671,468.8472423,93.24642873,88.59580301,4.650625726,152.33466,0,152.33466,2.754550196,149.5801098,0.887658789,2.678959717,-0.13924088,0.13924088,0.553965283,0.148074171,2.883441449,92.74138877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.16165576,1.99566224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089043514,89.14655047,87.25069927,91.14221271,468.8472423,0,0.563100623,55.72950116,-0.563100623,124.2704988,0.961205923,0,537.9094456,91.14221271,597.560201,2,11,11% +2/24/2018 20:00,47.36842211,172.5658485,670.5867418,849.9210808,94.95086797,684.5930722,587.4501571,97.14291509,92.08774897,5.055166117,165.4546383,0,165.4546383,2.863119001,162.5915193,0.826734927,3.011842233,0.2363348,-0.2363348,0.489738059,0.141593715,2.840942405,91.37447341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51824704,2.07431997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058253101,87.83261943,90.57650014,89.9069394,587.4501571,0,0.691182006,46.27625217,-0.691182006,133.7237478,0.977660154,0,664.9031111,89.9069394,723.7454048,2,12,9% +2/24/2018 21:00,47.89365866,192.634667,662.6873458,847.5030827,94.42912612,746.5376265,649.9602698,96.5773567,91.58173957,4.995617133,163.5236059,0,163.5236059,2.847386559,160.6762193,0.835902034,3.362109193,0.596700686,-0.596700686,0.428111862,0.142494235,2.545779604,81.88102312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.03185155,2.062921869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844408657,78.70715392,89.87626021,80.77007579,649.9602698,0,0.766911983,39.9226083,-0.766911983,140.0773917,0.98480347,0,729.9593893,80.77007579,782.8217885,2,13,7% +2/24/2018 22:00,52.31053578,211.0965363,593.8324221,824.4856779,89.75710161,738.8590259,647.3318725,91.52715346,87.05059383,4.476559633,146.6880537,0,146.6880537,2.706507782,143.9815459,0.912991083,3.684329597,1.007262597,-1.007262597,0.357901641,0.151148873,2.036629089,65.50499237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.67634192,1.960855675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475530842,62.96589027,85.15187276,64.92674594,647.3318725,0,0.785134163,38.26691161,-0.785134163,141.7330884,0.986316616,0,723.626055,64.92674594,766.1193117,2,14,6% +2/24/2018 23:00,59.73753853,226.5749165,469.3928014,771.5189936,80.57666679,656.184165,574.4987008,81.6854642,78.14698299,3.538481209,116.2394029,0,116.2394029,2.4296838,113.8097191,1.042616734,3.954478296,1.572615498,-1.572615498,0.261220601,0.171661488,1.373074271,44.16278847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.11785251,1.760297642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994787635,42.45095209,76.11264015,44.21124973,574.4987008,0,0.744633257,41.87239188,-0.744633257,138.1276081,0.982852851,0,640.7603263,44.21124973,669.695705,2,15,5% +2/24/2018 0:00,69.16591295,239.2423364,300.1052308,659.8062941,65.43650747,493.4470976,427.7214223,65.72567533,63.46335534,2.262319995,74.73713984,0,74.73713984,1.973152135,72.76398771,1.207172911,4.175566481,2.58162549,-2.58162549,0.088669729,0.218045208,0.650147619,20.9109823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.0033911,1.429542005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.471029737,20.10043158,61.47442083,21.52997358,427.7214223,0,0.648253019,49.58998386,-0.648253019,130.4100161,0.972869623,0,477.5915995,21.52997358,491.6825366,2,16,3% +2/24/2018 1:00,79.80434712,249.9011604,107.7554369,393.4717782,38.10697089,235.6683649,197.8981538,37.77021112,36.95790512,0.812305999,27.27561899,0,27.27561899,1.149065772,26.12655322,1.392848615,4.361598053,5.560178529,-5.560178529,0,0.353643139,0.287266443,9.239476279,0.296118082,1,0.177947971,0,0.941807178,0.980569141,0.724496596,1,35.81557408,0.83249424,0.044425006,0.312029739,0.88175475,0.606251346,0.961238037,0.922476074,0.197591306,8.88133604,36.01316538,9.71383028,139.296932,0,0.50295387,59.80438032,-0.50295387,120.1956197,0.950587304,0,168.4270605,9.71383028,174.7845681,2,17,4% +2/24/2018 2:00,91.29679532,259.3933109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593429675,4.527267333,-43.58271473,43.58271473,0,#DIV/0!,0,0,1,0.856799931,0,0.022940851,0.961238037,1,0.661500293,0.937003697,0,0,0.115824807,0.24050359,0.724496596,0.448993192,0.972028436,0.933266473,0,0,0,0,0,0,0.316081072,71.57391052,-0.316081072,108.4260895,0.891812736,0,0,0,0,2,18,0% +2/24/2018 3:00,103.0544358,268.4857824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798639213,4.685960898,-4.090248432,4.090248432,0.770372633,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103734937,84.04571421,-0.103734937,95.95428579,0.568002312,0,0,0,0,2,19,0% +2/24/2018 4:00,114.8591008,277.9662123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004669485,4.851425615,-1.906305847,1.906305847,0.856151189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120944695,96.94662676,0.120944695,83.05337324,0,0.636587904,0,0,0,2,20,0% +2/24/2018 5:00,126.3627717,288.8470093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205446419,5.041331347,-1.057808925,1.057808925,0.71104967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.342634861,110.0374856,0.342634861,69.96251441,0,0.904072058,0,0,0,2,21,0% +2/24/2018 6:00,137.0230695,302.7000448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391503713,5.283112428,-0.564636749,0.564636749,0.626712261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546215704,123.1077798,0.546215704,56.89222018,0,0.958461072,0,0,0,2,22,0% +2/24/2018 7:00,145.8036095,321.9897294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544753047,5.619780936,-0.210095116,0.210095116,0.56608207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717800909,135.8732166,0.717800909,44.12678339,0,0.980342802,0,0,0,2,23,0% +2/25/2018 8:00,150.7899079,348.7831178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631780371,6.087413781,0.085373454,-0.085373454,0.515553969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845683999,147.745295,0.845683999,32.25470502,0,0.990876261,0,0,0,2,0,0% +2/25/2018 9:00,149.9578334,18.96864794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617257931,0.331065361,0.363710097,-0.363710097,0.4679556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921136127,157.0927452,0.921136127,22.90725482,0,0.995719206,0,0,0,2,1,0% +2/25/2018 10:00,143.7120396,43.75774049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.508248266,0.763716645,0.658572283,-0.658572283,0.417531196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939001063,159.884469,0.939001063,20.11553097,0,0.996751924,0,0,0,2,2,0% +2/25/2018 11:00,134.2722901,61.29611961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343493557,1.069819106,1.013917369,-1.013917369,0.356763608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898046866,153.9025124,0.898046866,26.09748758,0,0.994323618,0,0,0,2,3,0% +2/25/2018 12:00,123.3019108,74.1382464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152024317,1.293956501,1.518275131,-1.518275131,0.270513351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801050299,143.2305159,0.801050299,36.76948414,0,0.987581947,0,0,0,2,4,0% +2/25/2018 13:00,111.6625571,84.50675214,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948879272,1.474921065,2.437408757,-2.437408757,0.113332243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654608163,130.8899455,0.654608163,49.11005454,0,0.973618429,0,0,0,2,5,0% +2/25/2018 14:00,99.82179929,93.781685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742219063,1.636799181,5.285806923,-5.285806923,0,#DIV/0!,0,0,0.272077453,1,0.186976069,0,0.940627639,0.979389603,0.724496596,1,0,0,0.041230883,0.312029739,0.889738381,0.614234977,0.961238037,0.922476074,0,0,0,0,0,0,-0.468688338,117.9491873,0.468688338,62.05081266,0,0.9433193,0,0,0,2,6,0% +2/25/2018 15:00,87.81566694,102.8880419,4.798743149,32.48488824,3.560595621,3.489405478,0,3.489405478,3.453230525,0.036174953,9.430462738,8.159586809,1.27087593,0.107365095,1.163510834,1.532672523,1.795735092,-22.01580794,22.01580794,0,0.741985039,0.026841274,0.863307631,1,0.696517101,0,0.045390709,0.961238037,1,0.603853478,0.879356882,3.319376531,0.073809643,0.115824807,0.175237101,0.724496596,0.448993192,0.980919781,0.942157818,0.019446411,0.836679933,3.338822943,0.910489576,0,2.476295057,-0.251181003,104.5474089,0.251181003,75.45259114,0,0.85094036,3.338822943,3.017668984,5.313826939,2,7,59% +2/25/2018 16:00,76.75019342,112.592961,161.3731278,495.4947063,47.80717563,47.5821117,0,47.5821117,46.36561289,1.216498802,55.29000967,14.72166379,40.56834589,1.441562735,39.12678315,1.339543577,1.965117884,-3.126493001,3.126493001,0.935184518,0.296252395,1.161009742,37.34206424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.56839072,1.044407294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841147606,35.89461252,45.40953832,36.93901981,0,14.72166379,-0.029711042,91.70256784,0.029711042,88.29743216,0,0,45.40953832,36.93901981,69.58538801,2,8,53% +2/25/2018 17:00,66.32623329,123.6834547,352.0588368,701.2182562,70.49972797,205.5211574,134.4932881,71.02786928,68.37390106,2.653968222,87.4865679,0,87.4865679,2.125826915,85.36074098,1.157611151,2.158683514,-1.350853921,1.350853921,0.761163315,0.200249846,2.147034614,69.05601357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.72359442,1.540154363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555519269,66.37926692,67.27911369,67.91942128,134.4932881,0,0.191799468,78.94218228,-0.191799468,101.0578177,0.789311059,0,173.4361534,67.91942128,217.8880563,2,9,26% +2/25/2018 18:00,57.28928623,137.0280159,511.5476482,791.6303246,83.75246873,398.1675336,313.0842486,85.08328503,81.22702278,3.856262251,126.5560957,0,126.5560957,2.525445946,124.0306498,0.999886671,2.391590046,-0.607675132,0.607675132,0.634072257,0.16372369,2.676181594,86.07519938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.07850392,1.829676991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938884455,82.73875567,80.01738837,84.56843266,313.0842486,0,0.395492996,66.70327551,-0.395492996,113.2967245,0.923575511,0,369.1743332,84.56843266,424.522681,2,10,15% +2/25/2018 19:00,50.49823502,153.3682924,622.6591588,834.7478002,91.67442219,567.125382,473.5214142,93.60396787,88.91010012,4.693867751,153.735244,0,153.735244,2.764322072,150.9709219,0.881360468,2.67678167,-0.140087981,0.140087981,0.554110145,0.147230505,2.909065533,93.56554739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.4637701,2.002741931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107608076,89.93876309,87.57137817,91.94150502,473.5214142,0,0.567262848,55.4404245,-0.567262848,124.5595755,0.961857439,0,543.031473,91.94150502,603.2053492,2,11,11% +2/25/2018 20:00,46.99473676,172.5663995,676.232796,851.7945602,95.25307941,689.7739009,592.2953248,97.47857608,92.38084762,5.097728458,166.8327023,0,166.8327023,2.872231791,163.9604705,0.820212888,3.011851849,0.233273246,-0.233273246,0.490261615,0.140858414,2.865242286,92.15604112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79998461,2.080922155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.075858282,88.58389205,90.87584289,90.6648142,592.2953248,0,0.695349973,45.94488787,-0.695349973,134.0551121,0.978093763,0,670.1962059,90.6648142,729.5345135,2,12,9% +2/25/2018 21:00,47.53461181,192.7751904,668.1590262,849.3542896,94.7219771,751.7644533,654.8618283,96.90262498,91.86576,5.036864971,164.8591087,0,164.8591087,2.856217096,162.0028916,0.829635485,3.364561789,0.591490473,-0.591490473,0.429002861,0.141765618,2.568552433,82.61347558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.3048628,2.069319563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.860907494,79.41121508,90.16577029,81.48053465,654.8618283,0,0.771011386,39.55520247,-0.771011386,140.4447975,0.985150115,0,735.3029756,81.48053465,788.6303559,2,13,7% +2/25/2018 22:00,51.98845589,211.3370073,599.0577559,826.5466553,90.05360172,744.078372,652.2242682,91.85410377,87.33815337,4.515950407,147.9639369,0,147.9639369,2.715448354,145.2484886,0.907369728,3.688526609,0.999007102,-0.999007102,0.359313413,0.150325408,2.05757939,66.17882606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95275508,1.967333089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490709264,63.61360485,85.44346435,65.58093794,652.2242682,0,0.789095527,37.89893278,-0.789095527,142.1010672,0.986636315,0,728.9516132,65.58093794,771.8730255,2,14,6% +2/25/2018 23:00,59.45816664,226.8631129,474.3050488,774.1631114,80.90064849,661.4175459,579.3808386,82.03670725,78.46119544,3.575511805,117.4402034,0,117.4402034,2.439453043,115.0007504,1.037740775,3.959508271,1.558514694,-1.558514694,0.26363198,0.170566703,1.391703059,44.76195431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.41988548,1.767375426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.008284128,43.02689309,76.4281696,44.79426852,579.3808386,0,0.748396339,41.54834584,-0.748396339,138.4516542,0.98319048,0,646.0698946,44.79426852,675.3868474,2,15,5% +2/25/2018 0:00,68.92352511,239.5472172,304.6084357,663.9270827,65.85115045,498.8892427,432.7274804,66.16176236,63.8654953,2.296267056,75.84149703,0,75.84149703,1.985655151,73.85584188,1.202942445,4.180887655,2.551671923,-2.551671923,0.093792091,0.216182951,0.66522579,21.3959481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.38994333,1.438600398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48195382,20.56659914,61.87189715,22.00519954,432.7274804,0,0.651769587,49.32484562,-0.651769587,130.6751544,0.973285773,0,483.0393974,22.00519954,497.4413604,2,16,3% +2/25/2018 1:00,79.59017782,250.212016,111.4466597,401.8348907,38.84001517,241.9094867,203.4005093,38.5089774,37.6688454,0.840131996,28.1927027,0,28.1927027,1.171169762,27.02153294,1.389110655,4.367023508,5.443278503,-5.443278503,0,0.348507665,0.29279244,9.417211351,0.286072146,1,0.181686888,0,0.941320879,0.980082842,0.724496596,1,36.50088985,0.848508505,0.04309811,0.312029739,0.8850615,0.609558096,0.961238037,0.922476074,0.201550102,9.052181752,36.70243995,9.900690257,145.2132891,0,0.506179314,59.59033082,-0.506179314,120.4096692,0.951220776,0,174.8323375,9.900690257,181.3121412,2,17,4% +2/25/2018 2:00,91.09784032,259.7106931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589957255,4.532806697,-51.43547157,51.43547157,0,#DIV/0!,0,0,1,0.879896289,0,0.019439387,0.961238037,1,0.670848943,0.946352347,0,0,0.115824807,0.251106627,0.724496596,0.448993192,0.970496767,0.931734804,0,0,0,0,0,0,0.319053517,71.39430476,-0.319053517,108.6056952,0.893286479,0,0,0,0,2,18,0% +2/25/2018 3:00,102.8623201,268.8158018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795286162,4.691720823,-4.145425176,4.145425176,0.760936854,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106435229,83.89013748,-0.106435229,96.10986252,0.580230727,0,0,0,0,2,19,0% +2/25/2018 4:00,114.6628538,278.3177594,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001244329,4.857561268,-1.917248687,1.917248687,0.858022525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118488148,96.80485732,0.118488148,83.19514268,0,0.628016865,0,0,0,2,20,0% +2/25/2018 5:00,126.1488753,289.228714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201713221,5.04799335,-1.060378437,1.060378437,0.711489082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340376748,109.8998293,0.340376748,70.10017072,0,0.90310395,0,0,0,2,21,0% +2/25/2018 6:00,136.773607,303.1096572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387149772,5.290261513,-0.564226127,0.564226127,0.62664204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544096957,122.9629744,0.544096957,57.03702555,0,0.958104614,0,0,0,2,22,0% +2/25/2018 7:00,145.4982947,322.3756948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539424298,5.626517302,-0.20810422,0.20810422,0.565741607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715752786,135.7049268,0.715752786,44.29507324,0,0.980143478,0,0,0,2,23,0% +2/26/2018 8:00,150.4276257,348.981397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.625457355,6.090874406,0.088585429,-0.088585429,0.515004689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843632841,147.5257507,0.843632841,32.47424934,0,0.990732511,0,0,0,2,0,0% +2/26/2018 9:00,149.5870541,18.85426639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610786612,0.329069027,0.368249731,-0.368249731,0.467179277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919008448,156.7815515,0.919008448,23.21844847,0,0.995593536,0,0,0,2,1,0% +2/26/2018 10:00,143.3783786,43.46848372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502424783,0.758668162,0.664978522,-0.664978522,0.416435665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936728629,159.5092358,0.936728629,20.49076424,0,0.996622748,0,0,0,2,2,0% +2/26/2018 11:00,133.9772578,60.97268498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338344272,1.064174107,1.023516578,-1.023516578,0.355122046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895571409,153.5819201,0.895571409,26.41807992,0,0.994169723,0,0,0,2,3,0% +2/26/2018 12:00,123.0315608,73.82687563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14730582,1.288522056,1.534580212,-1.534580212,0.267725018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798327541,142.9706898,0.798327541,37.02931023,0,0.987369065,0,0,0,2,4,0% +2/26/2018 13:00,111.4036594,84.21416746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944360655,1.469814499,2.473113153,-2.473113153,0.107226432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651610873,130.6631652,0.651610873,49.33683479,0,0.973267088,0,0,0,2,5,0% +2/26/2018 14:00,99.56376482,93.50460518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737715512,1.631963226,5.442726138,-5.442726138,0,#DIV/0!,0,0,0.286023997,1,0.181704924,0,0.941318525,0.980080489,0.724496596,1,0,0,0.043091724,0.312029739,0.885077449,0.609574045,0.961238037,0.922476074,0,0,0,0,0,0,-0.465408209,117.7366439,0.465408209,62.26335614,0,0.94256743,0,0,0,2,6,0% +2/26/2018 15:00,87.56667645,102.6224673,6.151796397,40.61021795,4.427618847,4.340484643,0,4.340484643,4.294109803,0.04637484,11.69265594,10.06757263,1.625083304,0.133509044,1.49157426,1.528326819,1.791099941,-19.81974075,19.81974075,0,0.719727794,0.033377261,1.073527451,1,0.657478995,0,0.050411998,0.961238037,1,0.591504442,0.867007846,4.127661677,0.091569868,0.115824807,0.161280904,0.724496596,0.448993192,0.982698949,0.943936986,0.024181712,1.040701302,4.151843389,1.13227117,0,3.4483551,-0.247907378,104.353716,0.247907378,75.64628395,0,0.848311771,4.151843389,4.057551391,6.807429623,2,7,64% +2/26/2018 16:00,76.4691911,112.3379481,166.4708905,503.9008224,48.5741273,48.36436603,0,48.36436603,47.10943814,1.25492789,54.89914378,13.07165988,41.8274839,1.464689158,40.36279474,1.334639161,1.960667069,-3.071650668,3.071650668,0.94456311,0.291787514,1.205658044,38.7781071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.28338384,1.061162309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.873495148,37.27499154,46.15687899,38.33615385,0,13.07165988,-0.025940938,91.486473,0.025940938,88.513527,0,0,46.15687899,38.33615385,71.24712496,2,8,54% +2/26/2018 17:00,66.02039672,123.4451547,357.6711157,705.4527158,70.9670868,209.6362929,138.1128496,71.52344324,68.82716729,2.696275951,88.86142247,0,88.86142247,2.139919508,86.72150297,1.152273296,2.154524395,-1.339004162,1.339004162,0.759136887,0.198414364,2.175699451,69.97797326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.15929117,1.550364399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576286846,67.26548964,67.73557801,68.81585404,138.1128496,0,0.195779032,78.70976396,-0.195779032,101.290236,0.794610035,0,177.4814343,68.81585404,222.5200345,2,9,25% +2/26/2018 18:00,56.95373817,136.8264486,517.3019986,794.3695441,84.11956208,402.9216563,317.4389684,85.48268789,81.58304691,3.899640975,127.9623738,0,127.9623738,2.536515165,125.4258587,0.994030252,2.388072032,-0.604894123,0.604894123,0.633596677,0.162612096,2.703146459,86.94248213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.42072785,1.837696602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958420408,83.57242084,80.37914826,85.41011745,317.4389684,0,0.399611202,66.4461249,-0.399611202,113.5538751,0.924878382,0,373.9715879,85.41011745,429.8708016,2,10,15% +2/26/2018 19:00,50.13457478,153.2442061,628.4111661,836.856316,91.99750338,572.1807673,478.2200993,93.96066803,89.22343921,4.737228812,155.1396269,0,155.1396269,2.774064161,152.3655627,0.875013399,2.674615957,-0.140865904,0.140865904,0.554243178,0.14639699,2.934716257,94.39056286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.76496355,2.009800042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126191938,90.73179934,87.89115549,92.74159938,478.2200993,0,0.571448276,55.14871967,-0.571448276,124.8512803,0.962503017,0,548.1794439,92.74159938,608.8769659,2,11,11% +2/26/2018 20:00,46.61863325,172.5700526,681.8820689,853.6467036,95.55381977,694.9627247,597.1498901,97.81283461,92.67251955,5.140315063,168.2115024,0,168.2115024,2.881300222,165.3302022,0.813648643,3.011915608,0.230290544,-0.230290544,0.490771687,0.140132472,2.889531009,92.93724995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.08035076,2.087492203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.09345538,89.33481969,91.17380614,91.42231189,597.1498901,0,0.699528139,45.61084121,-0.699528139,134.3891588,0.978523247,0,675.4988556,91.42231189,735.3329303,2,12,9% +2/26/2018 21:00,47.17404831,192.9211941,673.6236658,851.181857,95.01273443,756.9843263,659.7585166,97.22580966,92.14774992,5.078059732,166.1928412,0,166.1928412,2.864984503,163.3278567,0.823342464,3.367110034,0.586377421,-0.586377421,0.429877245,0.141047204,2.591290542,83.34481132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57592224,2.075671519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877381176,80.11420282,90.45330341,82.18987434,659.7585166,0,0.775108763,39.18510552,-0.775108763,140.8148945,0.985492924,0,740.640653,82.18987434,794.432282,2,13,7% +2/26/2018 22:00,51.66594049,211.5836239,604.2688579,828.5778455,90.34723328,749.2770704,657.0989056,92.17816475,87.62293085,4.555233895,149.236283,0,149.236283,2.724302429,146.5119806,0.901740773,3.692830881,0.990891584,-0.990891584,0.360701249,0.149514959,2.07848934,66.85136194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22649403,1.973747836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505858451,64.26007191,85.73235249,66.23381974,657.0989056,0,0.793044262,37.52908045,-0.793044262,142.4709196,0.986951817,0,734.2573111,66.23381974,777.6060215,2,14,6% +2/26/2018 23:00,59.17912863,227.1567793,479.1998118,776.7635342,81.22056601,666.6176763,584.2337995,82.38387686,78.77146627,3.612410596,118.6366421,0,118.6366421,2.449099737,116.1875424,1.032870643,3.964633717,1.544669399,-1.544669399,0.265999665,0.169492066,1.410310015,45.360418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.7181296,1.774364422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.021764805,43.60215915,76.7398944,45.37652358,584.2337995,0,0.752138552,41.22403305,-0.752138552,138.7759669,0.983522886,0,651.3472071,45.37652358,681.0452343,2,15,5% +2/26/2018 0:00,68.68182106,239.8566088,309.0968375,667.968578,66.25898415,504.2842448,437.693111,66.59113383,64.26103131,2.330102524,76.94205968,0,76.94205968,1.997952842,74.94410684,1.198723914,4.186287556,2.522413688,-2.522413688,0.098795544,0.21436319,0.680344747,21.88222575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.77014758,1.447510033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.492907454,21.03402772,62.26305504,22.48153775,437.693111,0,0.655260031,49.06063019,-0.655260031,130.9393698,0.973694415,0,488.4423927,22.48153775,503.1561095,2,16,3% +2/26/2018 1:00,79.37668614,250.5265979,115.1469244,410.0288225,39.55757991,248.0922206,208.8594216,39.23279908,38.36477292,0.868026155,29.11151194,0,29.11151194,1.192806986,27.91870495,1.385384523,4.372513997,5.331228642,-5.331228642,0,0.343540048,0.298201747,9.591193231,0.276170125,1,0.185419457,0,0.940832305,0.979594268,0.724496596,1,37.17122075,0.864184601,0.041779223,0.312029739,0.888362086,0.612858682,0.961238037,0.922476074,0.205444451,9.219419752,37.3766652,10.08360435,151.1786891,0,0.509377415,59.37763146,-0.509377415,120.6223685,0.951840956,0,181.2747331,10.08360435,187.8742505,2,17,4% +2/26/2018 2:00,90.89946759,260.0312437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586494998,4.53840136,-62.72072451,62.72072451,0,#DIV/0!,0,0,1,0.902496378,0,0.015942343,0.961238037,1,0.680281787,0.955785191,0,0,0.115824807,0.261809925,0.724496596,0.448993192,0.96892636,0.930164397,0,0,0,0,0,0,0.321998833,71.21615101,-0.321998833,108.783849,0.894719934,0,0,0,0,2,18,0% +2/26/2018 3:00,102.6704712,269.1485873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791937767,4.697529025,-4.201932464,4.201932464,0.751273539,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.10911302,83.7358124,-0.10911302,96.2641876,0.591759544,0,0,0,0,2,19,0% +2/26/2018 4:00,114.4664228,278.6717113,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997815961,4.863738894,-1.928235381,1.928235381,0.85990136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.116046479,96.663988,0.116046479,83.336012,0,0.619138154,0,0,0,2,20,0% +2/26/2018 5:00,125.9342184,289.6123153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197966752,5.054688456,-1.062895991,1.062895991,0.711919609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338123428,109.7625843,0.338123428,70.23741566,0,0.902125006,0,0,0,2,21,0% +2/26/2018 6:00,136.5227441,303.5201991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382771389,5.297426821,-0.56374841,0.56374841,0.626560346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.54197115,122.8179247,0.54197115,57.18207534,0,0.957744167,0,0,0,2,22,0% +2/26/2018 7:00,145.1911126,322.7612638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53406296,5.633246751,-0.206039452,0.206039452,0.565388511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713684804,135.5355175,0.713684804,44.46448251,0,0.979941061,0,0,0,2,23,0% +2/27/2018 8:00,150.063331,349.1807895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619099212,6.094354462,0.091881363,-0.091881363,0.514441051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84154896,147.3040493,0.84154896,32.69595073,0,0.99058575,0,0,0,2,0,0% +2/27/2018 9:00,149.2135104,18.74593886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604267045,0.327178354,0.372892325,-0.372892325,0.466385346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916836008,156.4678249,0.916836008,23.53217507,0,0.99546462,0,0,0,2,1,0% +2/27/2018 10:00,143.040932,43.18521778,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496535228,0.753724238,0.671524894,-0.671524894,0.415316169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934401052,159.1315953,0.934401052,20.86840474,0,0.996489786,0,0,0,2,2,0% +2/27/2018 11:00,133.6781168,60.65285439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333123275,1.05859201,1.033335877,-1.033335877,0.353442847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893032801,153.2568567,0.893032801,26.74314329,0,0.994011015,0,0,0,2,3,0% +2/27/2018 12:00,122.7572295,73.51736854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142517835,1.283120138,1.551315246,-1.551315246,0.264863158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795536549,142.7059635,0.795536549,37.29403654,0,0.987149336,0,0,0,2,4,0% +2/27/2018 13:00,111.1410535,83.92242526,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939777318,1.464722637,2.510070272,-2.510070272,0.100906393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648543543,130.431881,0.648543543,49.56811898,0,0.972904174,0,0,0,2,5,0% +2/27/2018 14:00,99.30231529,93.22774773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733152357,1.627131152,5.610237735,-5.610237735,0,#DIV/0!,0,0,0.30033404,1,0.176393046,0,0.942008502,0.980770465,0.724496596,1,0,0,0.044978546,0.312029739,0.880379393,0.604875989,0.961238037,0.922476074,0,0,0,0,0,0,-0.462059635,117.5200921,0.462059635,62.47990793,0,0.94178886,0,0,0,2,6,0% +2/27/2018 15:00,87.31305292,102.356695,7.720326106,49.77053679,5.387138787,5.282895755,0,5.282895755,5.224696676,0.058199079,14.20552051,12.17119596,2.034324558,0.162442111,1.871882447,1.523900253,1.786461339,-17.99965884,17.99965884,0,0.697786429,0.040610528,1.306174169,1,0.616605085,0,0.055499555,0.961238037,1,0.579196192,0.854699596,5.022177176,0.111244061,0.115824807,0.147377945,0.724496596,0.448993192,0.984427771,0.945665808,0.029422189,1.266422889,5.051599365,1.377666949,0,4.666374638,-0.244546206,104.1550175,0.244546206,75.84498248,0,0.845539662,5.051599365,5.323271783,8.535574282,2,7,69% +2/27/2018 16:00,76.18521925,112.0824293,171.637569,512.1957822,49.33342371,49.13971546,0,49.13971546,47.84583896,1.293876495,54.43006361,11.32696312,43.10310049,1.487584746,41.61551575,1.329682917,1.956207426,-3.018259939,3.018259939,0.953693462,0.287427887,1.251182779,40.24233907,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.99124031,1.077750084,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.906477664,38.68246701,46.89771798,39.76021709,0,11.32696312,-0.022114519,91.26717188,0.022114519,88.73282812,0,0,46.89771798,39.76021709,72.91998486,2,8,55% +2/27/2018 17:00,65.7117641,123.206177,363.3262936,709.6390839,71.43242303,213.8062149,141.7888359,72.01737899,69.27847192,2.738907071,90.24661744,0,90.24661744,2.153951112,88.09266633,1.146886641,2.150353448,-1.327225526,1.327225526,0.757122622,0.196606809,2.204475002,70.9034939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.59310235,1.560530248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597134635,68.15513529,68.19023698,69.71566553,141.7888359,0,0.199804153,78.47449334,-0.199804153,101.5255067,0.799754951,0,181.5865605,69.71566553,227.2140693,2,9,25% +2/27/2018 18:00,56.61545973,136.6244006,523.0832528,797.0800215,84.48561987,407.7126419,321.8313527,85.88128923,81.93806672,3.943222511,129.3751439,0,129.3751439,2.547553158,126.8275907,0.98812618,2.384545628,-0.602067015,0.602067015,0.633113213,0.161514672,2.730172172,87.81172195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.76198639,1.845693591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978000445,84.40796722,80.73998684,86.25366081,321.8313527,0,0.403762915,66.18637179,-0.403762915,113.8136282,0.926164952,0,378.8089061,86.25366081,435.260202,2,10,15% +2/27/2018 19:00,49.76825088,153.1207664,634.1760134,838.942054,92.31942459,577.2569589,482.940619,94.31633998,89.53565331,4.780686666,156.547088,0,156.547088,2.783771274,153.7633167,0.868619841,2.672461527,-0.141577748,0.141577748,0.55436491,0.14557382,2.960381476,95.21604451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06507562,2.016832811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144786302,91.5252837,88.20986192,93.54211651,482.940619,0,0.575654322,54.85453238,-0.575654322,125.1454676,0.963142318,0,553.3504091,93.54211651,614.5718535,2,11,11% +2/27/2018 20:00,46.24023056,172.5767711,687.5318806,855.4770905,95.8529435,700.1567676,602.0112383,98.14552932,92.96262359,5.182905731,169.5903843,0,169.5903843,2.890319906,166.7000644,0.80704427,3.012032869,0.227384448,-0.227384448,0.491268659,0.139415998,2.913798228,93.71776713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.3592098,2.094026933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.111036897,90.0850825,91.4702467,92.17910943,602.0112383,0,0.703714039,45.27425341,-0.703714039,134.7257466,0.978948412,0,680.8081924,92.17910943,741.1375759,2,12,9% +2/27/2018 21:00,46.81208171,193.0726604,679.0789399,852.9855475,95.30128117,762.1947172,664.6479374,97.54677981,92.42759591,5.119183893,167.5242363,0,167.5242363,2.873685251,164.6505511,0.817024956,3.369753619,0.581359399,-0.581359399,0.430735377,0.140339032,2.613985443,84.07475735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84492085,2.081975182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893823555,80.8158547,90.7387444,82.89782988,664.6479374,0,0.779201874,38.81244225,-0.779201874,141.1875578,0.985831777,0,745.9698013,82.89782988,800.224773,2,13,7% +2/27/2018 22:00,51.34309161,211.836336,609.4638127,830.5792199,90.63791385,754.452972,661.95373,92.49924198,87.90484632,4.594395659,150.504625,0,150.504625,2.733067521,147.7715575,0.896105997,3.697241539,0.982913127,-0.982913127,0.362065645,0.148717466,2.099352245,67.52238468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.49748191,1.980098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520973555,64.9050845,86.01845547,66.88518261,661.95373,0,0.796978439,37.15747443,-0.796978439,142.8425256,0.987263046,0,739.540911,66.88518261,783.3159253,2,14,6% +2/27/2018 23:00,58.900503,227.4558232,484.0755953,779.3206061,81.5363867,671.7829097,589.0559796,82.72693012,79.0777638,3.649166312,119.8283554,0,119.8283554,2.458622896,117.3697325,1.028007708,3.969853017,1.531073411,-1.531073411,0.268324716,0.168437301,1.428889916,45.95801146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01255444,1.781263919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03522588,44.17658871,77.04778032,45.95785263,589.0559796,0,0.75585834,40.89957377,-0.75585834,139.1004262,0.983850039,0,656.5905286,45.95785263,686.669024,2,15,5% +2/27/2018 0:00,68.44085244,240.1703954,313.5692672,671.9320916,66.66007977,509.6311137,442.6172637,67.01385,64.65003241,2.363817588,78.03854657,0,78.03854657,2.010047355,76.02849921,1.194518218,4.191764165,2.493827356,-2.493827356,0.103684095,0.212584863,0.69549964,22.36965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14407024,1.456272466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.503887122,21.50256729,62.64795736,22.95883975,442.6172637,0,0.658723209,48.79742998,-0.658723209,131.20257,0.974095585,0,493.7994797,22.95883975,508.8255811,2,16,3% +2/27/2018 1:00,79.16390298,250.8447811,118.8544107,418.0553933,40.2599424,254.2151386,214.2732072,39.94193135,39.04595659,0.895974752,30.03161373,0,30.03161373,1.213985807,28.81762792,1.381670756,4.378067341,5.223731748,-5.223731748,0,0.338733263,0.303496452,9.761489149,0.266408812,1,0.189145643,0,0.940341485,0.979103448,0.724496596,1,37.82682154,0.879528584,0.040468257,0.312029739,0.89165647,0.616153066,0.961238037,0.922476074,0.209275857,9.383114666,38.03609739,10.26264325,157.1889366,0,0.512547405,59.16633939,-0.512547405,120.8336606,0.952448048,0,187.7503932,10.26264325,194.4670879,2,17,4% +2/27/2018 2:00,90.10831854,260.3548324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572686842,4.54404905,-520.3408909,520.3408909,0,#DIV/0!,0,0,1,0.988702312,0,0.001921815,0.961238037,1,0.71906141,0.994564814,0,0,0.115824807,0.305853113,0.724496596,0.448993192,0.962211711,0.923449748,0,0,0,0,0,0,0.33467272,70.44736257,-0.33467272,109.5526374,0.900600312,0,0,0,0,2,18,0% +2/27/2018 3:00,102.4788847,269.4840006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788593952,4.703383092,-4.259829986,4.259829986,0.741372479,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111768368,83.58273573,-0.111768368,96.41726427,0.602646236,0,0,0,0,2,19,0% +2/27/2018 4:00,114.2697959,279.0279149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994384174,4.869955819,-1.93926967,1.93926967,0.861788335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113619344,96.52399736,0.113619344,83.47600264,0,0.609934092,0,0,0,2,20,0% +2/27/2018 5:00,125.71879,289.9976342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194206817,5.06141354,-1.065363135,1.065363135,0.712341516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335874362,109.6257162,0.335874362,70.37428381,0,0.901134812,0,0,0,2,21,0% +2/27/2018 6:00,136.2704838,303.9314573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378368616,5.304604631,-0.563204817,0.563204817,0.626467386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539837656,122.672588,0.539837656,57.32741195,0,0.957379562,0,0,0,2,22,0% +2/27/2018 7:00,144.8820998,323.1462068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.528669668,5.639965274,-0.203901895,0.203901895,0.565022967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711596358,135.3649482,0.711596358,44.63505175,0,0.979735447,0,0,0,2,23,0% +2/28/2018 8:00,149.6971059,349.3810446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612707378,6.097849573,0.095260299,-0.095260299,0.513863219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839431888,147.0801769,0.839431888,32.91982306,0,0.990435906,0,0,0,2,0,0% +2/28/2018 9:00,148.8373415,18.64338241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59770166,0.325388407,0.377637133,-0.377637133,0.465573936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914618576,156.1516177,0.914618576,23.84838232,0,0.995332403,0,0,0,2,1,0% +2/28/2018 10:00,142.6998663,42.90783431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490582509,0.748882984,0.678211152,-0.678211152,0.414172752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932018424,158.7516686,0.932018424,21.24833144,0,0.996352992,0,0,0,2,2,0% +2/28/2018 11:00,133.3750255,60.3366378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.327833335,1.053072989,1.043376547,-1.043376547,0.351725791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890431517,152.9275213,0.890431517,27.07247875,0,0.99384745,0,0,0,2,3,0% +2/28/2018 12:00,122.479064,73.20976645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137662932,1.277751469,1.56848757,-1.56848757,0.261926518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792678218,142.4365043,0.792678218,37.56349572,0,0.986922702,0,0,0,2,4,0% +2/28/2018 13:00,110.8748805,83.63156675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935131723,1.459646198,2.548326422,-2.548326422,0.094364206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645407495,130.1962349,0.645407495,49.8037651,0,0.972529564,0,0,0,2,5,0% +2/28/2018 14:00,99.03758994,92.95114425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728532028,1.622303511,5.789355277,-5.789355277,0,#DIV/0!,0,0,0.315014244,1,0.171043056,0,0.942697068,0.981459031,0.724496596,1,0,0,0.046890881,0.312029739,0.875646545,0.600143141,0.961238037,0.922476074,0,0,0,0,0,0,-0.458644346,117.2996642,0.458644346,62.70033581,0,0.940983067,0,0,0,2,6,0% +2/28/2018 15:00,87.05508114,102.0907428,9.508752828,59.91268536,6.430684549,6.308456679,0,6.308456679,6.236775683,0.071680995,16.94447846,14.44506238,2.499416078,0.193908866,2.305507212,1.519397796,1.781819598,-16.46859506,16.46859506,0,0.676291062,0.048477216,1.559193921,1,0.573824163,0,0.060647169,0.961238037,1,0.566951712,0.842455116,5.995026014,0.132704365,0.115824807,0.133552597,0.724496596,0.448993192,0.986103499,0.947341536,0.035121578,1.511769614,6.030147593,1.644473978,0,6.156136557,-0.241101902,103.9515846,0.241101902,76.04841538,0,0.842618807,6.030147593,6.831750421,10.50139161,2,7,74% +2/28/2018 16:00,75.8984205,111.826404,176.8697793,520.3749162,50.08472477,49.90780463,0,49.90780463,48.57448553,1.333319107,53.88296454,9.488599569,44.39436497,1.510239245,42.88412572,1.324677335,1.95173894,-2.966295081,2.966295081,0.962579976,0.28317288,1.297554571,41.73381531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.69164311,1.094163192,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.94007387,40.1161307,47.63171698,41.21029389,0,9.488599569,-0.01823416,91.04479832,0.01823416,88.95520168,0,0,47.63171698,41.21029389,74.60303013,2,8,57% +2/28/2018 17:00,65.40047792,122.9664961,369.0211878,713.7756596,71.8955041,218.0284993,145.5190724,72.50942698,69.72758939,2.781837589,91.64137407,0,91.64137407,2.167914715,89.47345935,1.141453672,2.146170227,-1.315526809,1.315526809,0.755122024,0.194827578,2.233345471,71.83206743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02481114,1.570646831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.618051191,69.04771548,68.64286233,70.61836231,145.5190724,0,0.203872282,78.23650854,-0.203872282,101.7634915,0.804748416,0,185.7491053,70.61836231,231.9674111,2,9,25% +2/28/2018 18:00,56.27458974,136.4218176,528.8883079,799.7607948,84.85044707,412.5376997,326.2588232,86.27887649,82.29189302,3.986983468,130.7936475,0,130.7936475,2.558554044,128.2350935,0.982176876,2.381009888,-0.599198935,0.599198935,0.632622742,0.160431694,2.757245057,88.68247902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.1020977,1.853663695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997614658,85.24497203,81.09971236,87.09863573,326.2588232,0,0.407945507,65.92416003,-0.407945507,114.07584,0.927434611,0,383.683437,87.09863573,440.6877521,2,10,15% +2/28/2018 19:00,49.39939177,152.9979048,639.9507901,841.0044183,92.64001944,582.351092,487.6802916,94.67080043,89.84658105,4.824219372,157.9569165,0,157.9569165,2.793438392,155.1634781,0.862182035,2.670317188,-0.142226694,0.142226694,0.554475887,0.144761161,2.986049354,96.04161171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36395119,2.023836605,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163382592,92.3188503,88.52733378,94.3426869,487.6802916,0,0.579878394,54.55801001,-0.579878394,125.44199,0.963775025,0,558.541419,94.3426869,620.2868208,2,11,11% +2/28/2018 20:00,45.85964528,172.5865111,693.1796178,857.2853506,96.15031136,705.3532887,606.8767833,98.47650548,93.25102472,5.225480759,170.9687103,0,170.9687103,2.899286644,168.0694237,0.800401804,3.012202864,0.22455258,-0.22455258,0.491752937,0.138709086,2.93803399,94.49727255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63643194,2.100523304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.128595624,90.83437275,91.76502756,92.93489606,606.8767833,0,0.70790523,44.93526634,-0.70790523,135.0647337,0.979369077,0,686.1213824,92.93489606,746.9454132,2,12,9% +2/28/2018 21:00,46.44882184,193.2295657,684.522613,854.7651716,95.58750758,767.3931643,669.5277522,97.86541215,92.70519155,5.1602206,168.8527487,0,168.8527487,2.882316034,165.9704326,0.810684875,3.372492134,0.576434112,-0.576434112,0.431577651,0.139641125,2.636629097,84.80305513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.11175633,2.088228155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.910228806,81.51592223,91.02198514,83.60415038,669.5277522,0,0.783288527,38.43733616,-0.783288527,141.5626638,0.986166562,0,751.2878663,83.60415038,806.0051107,2,13,7% +2/28/2018 22:00,51.02000629,212.0950883,614.6408117,832.5508015,90.92556913,759.6040224,666.7867726,92.81724981,88.18382774,4.633422064,151.7685223,0,151.7685223,2.741741389,149.0267809,0.890467094,3.701757617,0.975068615,-0.975068615,0.363407136,0.147932853,2.120161892,68.19169447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.76564946,1.986382303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.536050074,65.54845052,86.30169954,67.53483282,666.7867726,0,0.800896199,36.78423149,-0.800896199,143.2157685,0.987569937,0,744.8002707,67.53483282,789.0004681,2,14,6% +2/28/2018 23:00,58.62236239,227.7601481,488.9310226,781.8347321,81.84808697,676.9117187,593.845885,83.06583373,79.38006516,3.685768573,121.0150089,0,121.0150089,2.468021809,118.5469871,1.023153239,3.975164489,1.517720308,-1.517720308,0.270608231,0.167402114,1.447438012,46.554582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.303138,1.788073399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048663912,44.75003501,77.35180191,46.53810841,593.845885,0,0.759554239,40.57508367,-0.759554239,139.4249163,0.984171916,0,661.7982446,46.53810841,692.2565058,2,15,5% +2/28/2018 0:00,68.20066474,240.4884591,318.0246818,675.8190129,67.05451786,514.929002,447.4990208,67.42998112,65.03257674,2.397404386,79.13070719,0,79.13070719,2.021941118,77.10876607,1.190326152,4.197315424,2.465889721,-2.465889721,0.108461712,0.210846899,0.710686064,22.85810679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.5117864,1.464889457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.514889634,21.9720817,63.02667603,23.43697116,447.4990208,0,0.662158081,48.53533125,-0.662158081,131.4646687,0.974489331,0,499.1096973,23.43697116,514.4487262,2,16,3% +2/28/2018 1:00,78.95185303,251.1664396,122.5674726,425.9168396,40.94740501,260.2771266,219.6404716,40.63665505,39.71268967,0.923965381,30.9526181,0,30.9526181,1.234715341,29.71790276,1.377969786,4.383681341,5.120511381,-5.120511381,0,0.33408052,0.308678835,9.928172418,0.256784809,1,0.192865523,0,0.939848429,0.978610393,0.724496596,1,38.46797124,0.894547061,0.039165089,0.312029739,0.894944713,0.619441309,0.961238037,0.922476074,0.213045933,9.543336965,38.68101717,10.43788403,163.2401351,0,0.51568863,58.9565049,-0.51568863,121.0434951,0.953042268,0,194.2557657,10.43788403,201.0871521,2,17,4% +2/28/2018 2:00,89.94443293,260.6813289,0.012896529,0.93048872,0.011994115,0.325309231,0.313579563,0.011729668,0.011632448,9.72E-05,0.00348858,0,0.00348858,0.000361667,0.003126913,1.569826498,4.549747488,1013.244234,-1013.244234,0,0.930026589,9.04E-05,0.002908112,0.994244433,1,0.000986929,0,0.961150908,0.999912871,0.724496596,1,0.011183134,0.000262026,0.115374458,0.312029739,0.72536041,0.449857006,0.961238037,0.922476074,6.54E-05,0.002795388,0.011248575,0.003057414,0.001804828,0,0.337005227,70.30547899,-0.337005227,109.694521,0.901634349,0,0.01287587,0.003057414,0.014876887,2,18,16% +2/28/2018 3:00,102.2875512,269.8219039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785254551,4.709280617,-4.319183101,4.319183101,0.731222499,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114401432,83.43089824,-0.114401432,96.56910176,0.612942533,0,0,0,0,2,19,0% +2/28/2018 4:00,114.072957,279.3862176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990948687,4.876209381,-1.950355964,1.950355964,0.863684203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111206309,96.38485868,0.111206309,83.61514132,0,0.600385223,0,0,0,2,20,0% +2/28/2018 5:00,125.5025755,290.3844929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.190433163,5.068165498,-1.067781681,1.067781681,0.712755111,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.333628935,109.4891858,0.333628935,70.51081425,0,0.900132903,0,0,0,2,21,0% +2/28/2018 6:00,136.0168267,304.3432211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373941464,5.311791264,-0.56259671,0.56259671,0.626363393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537695791,122.5269187,0.537695791,57.47308131,0,0.957010617,0,0,0,2,22,0% +2/28/2018 7:00,144.5712905,323.5302988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523245023,5.646668943,-0.20169272,0.20169272,0.564645176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709486812,135.1931762,0.709486812,44.80682377,0,0.979526527,0,0,0,2,23,0% +3/1/2018 8:00,149.3290301,349.5819168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606283243,6.101355453,0.09872122,-0.09872122,0.513271367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837281145,146.8541192,0.837281145,33.14588081,0,0.990282902,0,0,0,3,0,0% +3/1/2018 9:00,148.4586836,18.54631295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591092832,0.323694225,0.382483362,-0.382483362,0.464745182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91235593,155.8329813,0.91235593,24.16701869,0,0.995196827,0,0,0,3,1,0% +3/1/2018 10:00,142.355347,42.63621265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484569513,0.744142291,0.685037023,-0.685037023,0.413005459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929580863,158.3695732,0.929580863,21.63042676,0,0.996212318,0,0,0,3,2,0% +3/1/2018 11:00,133.0681433,60.02403266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32247723,1.047617,1.053639885,-1.053639885,0.349970657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887768077,152.5941106,0.887768077,27.4058894,0,0.993678984,0,0,0,3,3,0% +3/1/2018 12:00,122.1972131,72.90410101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132743706,1.272416601,1.586104759,-1.586104759,0.258913801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789753502,142.1624818,0.789753502,37.83751818,0,0.986689106,0,0,0,3,4,0% +3/1/2018 13:00,110.605283,83.34162561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930426359,1.454585771,2.587930534,-2.587930534,0.087591503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642204117,129.956372,0.642204117,50.04362798,0,0.972143134,0,0,0,3,5,0% +3/1/2018 14:00,98.76972962,92.67482009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723856983,1.617480744,5.98122823,-5.98122823,0,#DIV/0!,0,0,0.330071486,1,0.165657572,0,0.943383737,0.9821457,0.724496596,1,0,0,0.048828256,0.312029739,0.870881245,0.595377841,0.961238037,0.922476074,0,0,0,0,0,0,-0.455164135,117.0754955,0.455164135,62.92450451,0,0.940149517,0,0,0,3,6,0% +3/1/2018 15:00,86.79303509,101.8246229,11.51850761,70.96397096,7.548579015,7.407792882,0,7.407792882,7.320961506,0.086831376,19.87994384,16.85953081,3.020413036,0.227617509,2.792795527,1.51482423,1.77717493,-15.16431796,15.16431796,0,0.655343493,0.056904377,1.830240377,1,0.529058235,0,0.065848937,0.961238037,1,0.55479237,0.830295774,7.037186666,0.155812932,0.115824807,0.11982696,0.724496596,0.448993192,0.98772397,0.948962007,0.041227028,1.774361935,7.078413694,1.930174867,0,7.939857194,-0.23757874,103.7436796,0.23757874,76.25632042,0,0.839543458,7.078413694,8.596030035,12.70434343,3,7,79% +3/1/2018 16:00,75.60893845,111.5698659,182.1640943,528.4341046,50.82772667,50.66831307,0,50.66831307,49.29508318,1.373229889,53.2582523,7.557815118,45.70043718,1.532643494,44.16779369,1.31962492,1.947261507,-2.915729165,2.915729165,0.971227257,0.279021653,1.344742888,43.2515538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.38430898,1.110394994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.974261645,41.57503867,48.35857063,42.68543366,0,7.557815118,-0.014302285,90.8194885,0.014302285,89.1805115,0,0,48.35857063,42.68543366,76.29533325,3,8,58% +3/1/2018 17:00,65.08668121,122.726081,374.7526108,717.8609065,72.35610835,222.3006626,149.3013144,72.9993482,70.17430472,2.825043476,93.04491285,0,93.04491285,2.181803632,90.86310922,1.135976886,2.141974192,-1.303916278,1.303916278,0.753136506,0.193076996,2.26229529,72.7631931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.45421091,1.580709305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639025236,69.94274889,69.09323614,71.5234582,149.3013144,0,0.20798084,77.99594949,-0.20798084,102.0040505,0.80959324,0,189.966571,71.5234582,236.7772439,3,9,25% +3/1/2018 18:00,55.93126689,136.2186393,534.7140837,802.4109879,85.21385539,417.3940229,330.718779,86.67524387,82.64434325,4.030900627,132.2171324,0,132.2171324,2.569512146,129.6476203,0.976184762,2.377463758,-0.596294927,0.596294927,0.632126128,0.159363402,2.784351701,89.55432184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44088626,1.861602803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.017253329,86.08302052,81.45813959,87.94462332,330.718779,0,0.412156344,65.65963489,-0.412156344,114.3403651,0.928686812,0,388.5923081,87.94462332,446.1503052,3,10,15% +3/1/2018 19:00,49.02812473,152.875546,645.7326322,843.0428719,92.95912756,587.4603164,492.4364442,95.02387223,90.15606689,4.86780534,159.3684134,0,159.3684134,2.803060679,156.5653527,0.855702203,2.668181623,-0.142815962,0.142815962,0.554576657,0.14395916,3.011708379,96.86689415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.66144074,2.03080792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181972468,93.11214317,88.84341321,95.14295109,492.4364442,0,0.584117914,54.25930087,-0.584117914,125.7406991,0.964400845,0,563.749536,95.14295109,626.0186946,3,11,11% +3/1/2018 20:00,45.47699154,172.5992227,698.8227345,859.0711611,96.44579034,710.5495894,611.7439745,98.80561487,93.53759391,5.268020956,172.3458591,0,172.3458591,2.908196426,169.4376627,0.793723236,3.012424723,0.221792473,-0.221792473,0.492224943,0.13801181,2.962228716,95.27545809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.91189315,2.106978411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.146124621,91.5823943,92.05801777,93.68937271,611.7439745,0,0.712099302,44.59402195,-0.712099302,135.405978,0.979785074,0,691.4356329,93.68937271,752.7534536,3,12,9% +3/1/2018 21:00,46.084375,193.3918825,689.9525338,856.5205843,95.87131064,772.5772725,674.395682,98.18159053,92.9804369,5.201153637,170.1778536,0,170.1778536,2.890873743,167.2869798,0.804324078,3.375325097,0.57159914,-0.57159914,0.43240448,0.138953487,2.659213878,85.52945932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37633263,2.094428186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.926591403,82.21416957,91.30292403,84.30859775,674.395682,0,0.787366579,38.05990928,-0.787366579,141.9400907,0.986497178,0,756.5923609,84.30859775,811.7706519,3,13,7% +3/1/2018 22:00,50.69677719,212.3598215,619.7981428,834.4926584,91.21013209,764.7282557,671.5961454,93.13211028,88.45981007,4.672300204,153.0275575,0,153.0275575,2.750322012,150.2772355,0.884825682,3.706378084,0.967354785,-0.967354785,0.364726279,0.147161028,2.140912491,68.85910504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03093418,1.992598935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551083812,66.18999094,86.58201799,68.18258988,671.5961454,0,0.804795751,36.40946555,-0.804795751,143.5905345,0.987872435,0,750.0333377,68.18258988,794.6574791,3,14,6% +3/1/2018 23:00,58.34477439,228.0696546,493.7648202,784.3063661,82.15565078,682.0026818,598.6021192,83.40056257,79.67835479,3.722207782,122.1962933,0,122.1962933,2.477295993,119.7189973,1.018308414,3.980566397,1.504603536,-1.504603536,0.272851331,0.166386197,1.465949969,47.14999017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.58986534,1.794792514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062075762,45.32236399,77.6519411,47.1171565,598.6021192,0,0.763224864,40.25067449,-0.763224864,139.7493255,0.984488507,0,666.968848,47.1171565,697.8060846,3,15,5% +3/1/2018 0:00,67.96129827,240.8106802,322.4621454,679.6307859,67.44238595,520.1771816,452.3375766,67.83960503,65.40874917,2.430855861,80.21831727,0,80.21831727,2.033636772,78.18468049,1.186148419,4.202939243,2.438577965,-2.438577965,0.113132297,0.209148227,0.725900001,23.34743928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.87337765,1.473362919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525912079,22.4424467,63.39928973,23.91580962,452.3375766,0,0.665563694,48.27441498,-0.665563694,131.725585,0.97487571,0,504.3722058,23.91580962,520.0246249,3,16,3% +3/1/2018 1:00,78.74055594,251.4914468,126.2846175,433.6157236,41.62028801,266.2773356,224.960066,41.31726956,40.36528277,0.95198679,31.87417284,0,31.87417284,1.255005246,30.61916759,1.374281956,4.389353788,5.021310624,-5.021310624,0,0.329575279,0.313751312,10.09132069,0.247294589,1,0.196579266,0,0.939353139,0.978115103,0.724496596,1,39.09496628,0.909247029,0.037869566,0.312029739,0.898226959,0.622723555,0.961238037,0.922476074,0.216756366,9.700161291,39.31172265,10.60940832,169.3286591,0,0.518800527,58.74817242,-0.518800527,121.2518276,0.953623845,0,200.7875696,10.60940832,207.7312151,3,17,3% +3/1/2018 2:00,89.77988219,261.0106027,0.067528919,1.449170305,0.061961538,0.55235179,0.49174956,0.060602231,0.060093169,0.000509062,0.018241537,0,0.018241537,0.001868369,0.016373168,1.566954546,4.555494399,255.5031448,-255.5031448,0,0.917555607,0.000467092,0.015023292,0.977356845,1,0.003913826,0,0.960891126,0.999653089,0.724496596,1,0.057795736,0.001353627,0.114043167,0.312029739,0.727923522,0.452420118,0.961238037,0.922476074,0.000337094,0.01444096,0.05813283,0.015794587,0.011134761,0,0.339331794,70.1638314,-0.339331794,109.8361686,0.902651591,0,0.06818364,0.015794587,0.078520881,3,18,15% +3/1/2018 3:00,102.0964574,270.1621598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781919336,4.715219204,-4.380062934,4.380062934,0.720811434,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117012454,83.28028604,-0.117012454,96.71971396,0.622695057,0,0,0,0,3,19,0% +3/1/2018 4:00,113.875887,279.7464679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987509167,4.882496935,-1.961499249,1.961499249,0.865589817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108806868,96.2465413,0.108806868,83.7534587,0,0.590470183,0,0,0,3,20,0% +3/1/2018 5:00,125.2855583,290.7727153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186645497,5.074941257,-1.070153657,1.070153657,0.713160743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.33138648,109.3529508,0.33138648,70.64704922,0,0.899118769,0,0,0,3,21,0% +3/1/2018 6:00,135.761772,304.7552831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36948992,5.318983104,-0.56192556,0.56192556,0.62624862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535544837,122.3808685,0.535544837,57.61913153,0,0.956637136,0,0,0,3,22,0% +3/1/2018 7:00,144.2587183,323.913321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517789609,5.653353942,-0.199413163,0.199413163,0.564255349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707355511,135.0201578,0.707355511,44.97984222,0,0.979314186,0,0,0,3,23,0% +3/2/2018 8:00,148.9591814,349.7831678,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599828166,6.104867946,0.102263066,-0.102263066,0.512665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835096255,146.6258622,0.835096255,33.37413777,0,0.990126662,0,0,0,3,0,0% +3/2/2018 9:00,148.0776698,18.45444845,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584442887,0.322090887,0.387430191,-0.387430191,0.463899225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910047869,155.5119676,0.910047869,24.48803243,0,0.995057835,0,0,0,3,1,0% +3/2/2018 10:00,142.0075379,42.37022304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478499099,0.739499897,0.692002222,-0.692002222,0.41181434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927088525,157.985424,0.927088525,22.01457599,0,0.996067718,0,0,0,3,2,0% +3/2/2018 11:00,132.7576295,59.71502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317057742,1.042223821,1.064127219,-1.064127219,0.348177218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885043047,152.2568191,0.885043047,27.74318088,0,0.993505573,0,0,0,3,3,0% +3/2/2018 12:00,121.9118264,72.60039595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127762768,1.267115948,1.604174671,-1.604174671,0.255823664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786763404,141.884067,0.786763404,38.11593299,0,0.986448493,0,0,0,3,4,0% +3/2/2018 13:00,110.3324049,83.05262949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.925663738,1.449541837,2.628934396,-2.628934396,0.08057943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63893485,129.7124398,0.63893485,50.28756024,0,0.97174476,0,0,0,3,5,0% +3/2/2018 14:00,98.49887614,92.39879584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719129698,1.612663212,6.187165732,-6.187165732,0,#DIV/0!,0,0,0.345512887,1,0.160239193,0,0.944068032,0.982829995,0.724496596,1,0,0,0.050790192,0.312029739,0.866085828,0.590582423,0.961238037,0.922476074,0,0,0,0,0,0,-0.451620845,116.8477233,0.451620845,63.15227667,0,0.939287661,0,0,0,3,6,0% +3/2/2018 15:00,86.52717714,101.5583434,13.74840313,82.83753773,8.730512096,8.570896214,0,8.570896214,8.467254944,0.10364127,22.97911343,19.38239676,3.596716665,0.263257152,3.333459513,1.510184134,1.772527476,-14.04113376,14.04113376,0,0.635020083,0.065814288,2.116813736,1,0.482221822,0,0.071099273,0.961238037,1,0.542737927,0.818241331,8.13904752,0.180433182,0.115824807,0.106220891,0.724496596,0.448993192,0.98928757,0.950525607,0.047682228,2.051652857,8.186729747,2.232086039,0,10.03578207,-0.233980841,103.5315545,0.233980841,76.46844552,0,0.83630729,8.186729747,10.62508375,15.14063456,3,7,85% +3/2/2018 16:00,75.31691723,111.3128055,187.5170577,536.3697626,51.56216059,51.420954,0,51.420954,50.00737121,1.413582788,52.55652851,5.536057492,47.02047102,1.554789386,45.46568163,1.314528188,1.942774956,-2.866534177,2.866534177,0.979640095,0.274973174,1.392716218,44.79454102,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.06898733,1.126439617,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.009018159,43.05821667,49.07800549,44.18465629,0,5.536057492,-0.010321345,90.59138002,0.010321345,89.40861998,0,0,49.07800549,44.18465629,77.99597933,3,8,59% +3/2/2018 17:00,64.77051716,122.484897,380.5173786,721.8934488,72.81402504,226.6201746,153.1332603,73.48691426,70.61841353,2.868500731,94.45645543,0,94.45645543,2.19561151,92.26084392,1.130458783,2.137764736,-1.292401629,1.292401629,0.751167385,0.191355321,2.291309131,73.69637797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.88110519,1.590713065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660045665,70.83976169,69.54115085,72.43047475,153.1332603,0,0.212127234,77.75295723,-0.212127234,102.2470428,0.814292405,0,194.2364018,72.43047475,241.6406989,3,9,24% +3/2/2018 18:00,55.58562961,136.0148007,540.5575259,805.0298079,85.57566324,422.278798,335.2086058,87.07019221,82.99524125,4.074950963,133.6448525,0,133.6448525,2.580421987,131.0644305,0.970152253,2.373906104,-0.593359911,0.593359911,0.63162421,0.158310002,2.811478931,90.42682683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77818277,1.869506946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036906915,86.9217055,81.81508968,88.79121244,335.2086058,0,0.416392788,65.39294238,-0.416392788,114.6070576,0.929921071,0,393.5326354,88.79121244,451.6447081,3,10,15% +3/2/2018 19:00,48.65457607,152.7536096,651.5187198,845.0569325,93.27659415,592.5818014,497.2064174,95.37538399,90.46396068,4.911423312,160.7808901,0,160.7808901,2.812633467,157.9682566,0.849182549,2.666053432,-0.143348773,0.143348773,0.554667774,0.143167942,3.037347315,97.69153045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95739997,2.037743373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.20054779,93.90481495,89.15794776,95.94255832,497.2064174,0,0.58837032,53.95855378,-0.58837032,126.0414462,0.965019507,0,568.9718394,95.94255832,631.764325,3,11,11% +3/2/2018 20:00,45.09238166,172.6148521,704.458743,860.8342419,96.73925282,715.7430117,616.6102968,99.13271499,93.82220742,5.31050757,173.7212236,0,173.7212236,2.917045402,170.8041782,0.787010528,3.012697507,0.219101616,-0.219101616,0.492685107,0.137324228,2.986373132,96.05202553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.18547447,2.113389464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163617168,92.32886046,92.34909164,94.44224992,616.6102968,0,0.716293877,44.25066231,-0.716293877,135.7493377,0.980196248,0,696.7481911,94.44224992,758.5587549,3,12,9% +3/2/2018 21:00,45.7188451,193.5595803,695.36662,858.2516773,96.15259281,777.7447054,679.2495008,98.49520468,93.25323738,5.241967306,171.4990431,0,171.4990431,2.899355439,168.5996877,0.797944377,3.378251976,0.566852,-0.566852,0.433216288,0.138276112,2.681732479,86.25373493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63855883,2.100573146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942906052,82.91037084,91.58146488,85.01094398,679.2495008,0,0.791433933,37.68028257,-0.791433933,142.3197174,0.986823533,0,761.8808568,85.01094398,817.5188194,3,13,7% +3/2/2018 22:00,50.37349384,212.6304738,624.934169,836.4048937,91.49154124,769.8237779,676.3800264,93.44375144,88.7327337,4.711017739,154.281332,0,154.281332,2.758807536,151.5225245,0.879183323,3.711101857,0.959768299,-0.959768299,0.366023644,0.146401886,2.161598567,69.52444037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.29327875,1.998746669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.566070804,66.82953658,86.85934955,68.82828325,676.3800264,0,0.808675358,36.03328856,-0.808675358,143.9667114,0.988170491,0,755.2381326,68.82828325,800.2848675,3,14,6% +3/2/2018 23:00,58.06780304,228.384241,498.5757921,786.7359954,82.45906744,687.0544585,603.3233613,83.73109724,79.97262232,3.75847492,123.3719182,0,123.3719182,2.486445125,120.8854731,1.013474352,3.986056966,1.491716523,-1.491716523,0.27505514,0.165389232,1.484421749,47.74410611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.87272648,1.801421029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075458504,45.89345083,77.94818498,47.69487186,603.3233613,0,0.766868892,39.92645529,-0.766868892,140.0735447,0.984799807,0,672.1009146,47.69487186,703.3162543,3,15,5% +3/2/2018 0:00,67.72278978,241.1369379,326.8807999,683.3688794,67.82377526,525.3750102,457.1322065,68.24280374,65.77863819,2.464165544,81.30117149,0,81.30117149,2.045137067,79.25603442,1.18198566,4.208633515,2.411869866,-2.411869866,0.117699651,0.207487792,0.741137711,23.83753644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.22892904,1.481694843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.536951749,22.91354674,63.76588079,24.39524158,457.1322065,0,0.668939163,48.01475837,-0.668939163,131.9852416,0.975254787,0,509.5862536,24.39524158,525.5524513,3,16,3% +3/2/2018 1:00,78.53002793,251.8196761,130.0044756,441.1548339,42.27892137,272.2151184,230.2310338,41.98408455,41.0040559,0.980028651,32.79595572,0,32.79595572,1.274865472,31.52109025,1.370607549,4.395082469,4.925891139,-4.925891139,0,0.325211276,0.318716368,10.25101397,0.237934584,1,0.200287102,0,0.938855606,0.977617569,0.724496596,1,39.70811275,0.923635695,0.036581513,0.312029739,0.90150341,0.626000006,0.961238037,0.922476074,0.220408876,9.853664548,39.92852163,10.77730024,175.4511085,0,0.521882605,58.54138217,-0.521882605,121.4586178,0.954193013,0,207.3427434,10.77730024,214.3962709,3,17,3% +3/2/2018 2:00,89.61421392,261.3425237,0.153153769,2.181909373,0.138462567,0.880912359,0.745470412,0.135441947,0.134287409,0.001154538,0.041309062,0,0.041309062,0.004175157,0.037133905,1.564063089,4.561287515,145.6140765,-145.6140765,0,0.904075474,0.001043789,0.033571852,0.960585417,1,0.00686736,0,0.960626879,0.999388843,0.724496596,1,0.129205258,0.003024887,0.112706218,0.312029739,0.73051191,0.455008506,0.961238037,0.922476074,0.000751166,0.032270541,0.129956424,0.035295429,0.029382406,0,0.341659659,70.02197825,-0.341659659,109.9780217,0.903655535,0,0.156507997,0.035295429,0.179608149,3,18,15% +3/2/2018 3:00,101.9055881,270.5046319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778588039,4.721196469,-4.442546269,4.442546269,0.710126155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119601728,83.13088226,-0.119601728,96.86911774,0.63194584,0,0,0,0,3,19,0% +3/2/2018 4:00,113.6785655,280.1085154,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984065257,4.888815857,-1.972704952,1.972704952,0.867506105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.106420474,96.1090123,0.106420474,83.8909877,0,0.580165595,0,0,0,3,20,0% +3/2/2018 5:00,125.0677211,291.1621272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18284352,5.081737777,-1.072481236,1.072481236,0.713558783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.329146301,109.2169676,0.329146301,70.78303236,0,0.898091867,0,0,0,3,21,0% +3/2/2018 6:00,135.5053195,305.16744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365013978,5.326176598,-0.561192908,0.561192908,0.626123329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533384064,122.2343888,0.533384064,57.76561116,0,0.956258917,0,0,0,3,22,0% +3/2/2018 7:00,143.9444172,324.2950618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512304021,5.660016577,-0.1970645,0.1970645,0.563853704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705201808,134.8458501,0.705201808,45.1541499,0,0.97909831,0,0,0,3,23,0% +3/3/2018 8:00,148.5876371,349.9845688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593343496,6.108383057,0.105884755,-0.105884755,0.51204633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832876757,146.3953947,0.832876757,33.60460534,0,0.989967109,0,0,0,3,0,0% +3/3/2018 9:00,147.6944311,18.36751221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57775411,0.320573563,0.392476789,-0.392476789,0.463036206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907694222,155.1886299,0.907694222,24.81137011,0,0.99491537,0,0,0,3,1,0% +3/3/2018 10:00,141.6566012,42.10973021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472374097,0.734953439,0.699106463,-0.699106463,0.410599443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924541602,157.5993337,0.924541602,22.4006663,0,0.995919145,0,0,0,3,2,0% +3/3/2018 11:00,132.4436434,59.40959851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.311577651,1.036893101,1.074839927,-1.074839927,0.346345237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882257037,151.9158386,0.882257037,28.08416139,0,0.993327173,0,0,0,3,3,0% +3/3/2018 12:00,121.6230541,72.2986694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12272274,1.261849826,1.622705458,-1.622705458,0.252654713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783708976,141.6014314,0.783708976,38.39856855,0,0.986200807,0,0,0,3,4,0% +3/3/2018 13:00,110.0563906,82.76460199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920846379,1.444514809,2.671392862,-2.671392862,0.073318605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635601177,129.4645869,0.635601177,50.53541307,0,0.971334318,0,0,0,3,5,0% +3/3/2018 14:00,98.22517179,92.12308909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714352656,1.607851222,6.408665273,-6.408665273,0,#DIV/0!,0,0,0.36134582,1,0.154790502,0,0.944749493,0.983511456,0.724496596,1,0,0,0.052776206,0.312029739,0.861262625,0.585759221,0.961238037,0.922476074,0,0,0,0,0,0,-0.448016355,116.6164864,0.448016355,63.38351357,0,0.938396932,0,0,0,3,6,0% +3/3/2018 15:00,86.25775809,101.2919103,16.19503721,95.43748329,9.966022184,9.787594876,0,9.787594876,9.665509844,0.122085031,26.20759993,21.98041332,4.227186612,0.30051234,3.926674272,1.505481884,1.76787734,-13.0647473,13.0647473,0,0.615375072,0.075128085,2.416377461,1,0.433221301,0,0.076392901,0.961238037,1,0.530806584,0.806309988,9.290855708,0.206438768,0.115824807,0.092752081,0.724496596,0.448993192,0.990793185,0.952031222,0.054430042,2.341043826,9.34528575,2.547482594,0,12.45803006,-0.230312164,103.3154508,0.230312164,76.68454915,0,0.832903347,9.34528575,12.92381753,17.80366584,3,7,91% +3/3/2018 16:00,75.02250122,111.0552112,192.9251925,544.1788137,52.2877906,52.16547239,0,52.16547239,50.71112079,1.454351593,51.77857571,3.424959359,48.35361635,1.576669808,46.77694654,1.309389659,1.938279087,-2.818681175,2.818681175,0.987823441,0.271026246,1.441442198,46.36173602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.7454582,1.142291909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.044319966,44.56466411,49.78977816,45.70695602,0,3.424959359,-0.006293812,90.36061127,0.006293812,89.63938873,0,0,49.78977816,45.70695602,79.70406674,3,8,60% +3/3/2018 17:00,64.45212917,122.2429072,386.3123126,725.8720636,73.26905378,230.9844669,157.01256,73.97190687,71.05972148,2.912185391,95.87522506,0,95.87522506,2.209332306,93.66589276,1.124901864,2.133541219,-1.280989958,1.280989958,0.749215874,0.189662745,2.320371892,74.63113626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.30530717,1.600653735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101537,71.73828691,69.98640871,73.33894064,157.01256,0,0.216308862,77.50767331,-0.216308862,102.4923267,0.818849045,0,198.5559935,73.33894064,246.5548634,3,9,24% +3/3/2018 18:00,55.23781637,135.8102348,546.415603,807.616539,85.93569508,427.1892098,339.7256814,87.46352843,83.3444168,4.119111622,135.0760674,0,135.0760674,2.591278276,132.4847891,0.964081767,2.370335754,-0.590398631,0.590398631,0.631117802,0.157271671,2.838613779,91.29957681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.11382359,1.87737229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05656602,87.76062597,82.17038961,89.63799826,339.7256814,0,0.420652209,65.12422897,-0.420652209,114.875771,0.931136961,0,398.5015281,89.63799826,457.1678052,3,10,15% +3/3/2018 19:00,48.27887185,152.6320122,657.3062675,847.0461667,93.59226916,597.7127359,501.9875667,95.72516922,90.77011693,4.955052292,162.1936668,0,162.1936668,2.822152234,159.3715146,0.842625273,2.663931158,-0.143828299,0.143828299,0.554749777,0.142387611,3.062955133,98.51516592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.251689,2.044639687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.219100567,94.69652469,89.47078957,96.74116438,501.9875667,0,0.592633066,53.65591797,-0.592633066,126.344082,0.965630762,0,574.2054262,96.74116438,637.5205835,3,11,11% +3/3/2018 20:00,44.70592725,172.6333433,710.0851991,862.5743486,97.03057548,720.9309327,621.4732649,99.45766779,94.10474562,5.352922172,175.0942075,0,175.0942075,2.925829855,172.1683776,0.780265626,3.01302024,0.216477498,-0.216477498,0.493133857,0.136646385,3.010458181,96.82668348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.45706094,2.11975377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181066704,93.07349114,92.63812764,95.19324491,621.4732649,0,0.720486606,43.90532985,-0.720486606,136.0946702,0.980602457,0,702.0563383,95.19324491,764.3584133,3,12,9% +3/3/2018 21:00,45.35233499,193.7326274,700.7628374,859.9583712,96.4312606,782.8931721,684.0870235,98.80614857,93.5235023,5.282646272,172.8158214,0,172.8158214,2.9077583,169.9080631,0.791547569,3.381272217,0.562190197,-0.562190197,0.434013504,0.137608982,2.7041778,86.97565361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.89834775,2.10666099,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.959167611,83.60430653,91.85751536,85.71096752,684.0870235,0,0.795488533,37.29857677,-0.795488533,142.7014232,0.987145543,0,767.1509715,85.71096752,823.2470855,3,13,7% +3/3/2018 22:00,50.05024436,212.9069811,630.0473023,838.2876341,91.76973877,774.8887469,681.1366416,93.75210524,89.00254255,4.749562698,155.5294591,0,155.5294591,2.767196218,152.7622629,0.873541555,3.71592782,0.952305824,-0.952305824,0.367299802,0.145655316,2.182214838,70.18753052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55262927,2.00482424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581007222,67.46692405,87.13363649,69.47174829,681.1366416,0,0.812533329,35.6558119,-0.812533329,144.3441881,0.988464063,0,760.4127285,69.47174829,805.8805983,3,14,6% +3/3/2018 23:00,57.79151055,228.7038038,503.3627888,789.1241236,82.75832908,692.0657611,608.0083396,84.05742143,80.26286011,3.794561323,124.5416048,0,124.5416048,2.495468967,122.0461359,1.008652139,3.991634388,1.479052799,-1.479052799,0.277220764,0.1644109,1.502849479,48.33680526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15171409,1.807958772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088809332,46.46317579,78.24052342,48.27113456,608.0083396,0,0.77048505,39.60253411,-0.77048505,140.3974659,0.985105814,0,677.1930738,48.27113456,708.785566,3,15,5% +3/3/2018 0:00,67.48517421,241.4671103,331.2798312,687.0347568,68.19877723,530.5218924,461.8822326,68.63965977,66.14233247,2.497327301,82.37907526,0,82.37907526,2.05644476,80.3226305,1.177838486,4.214396111,2.385744011,-2.385744011,0.122167435,0.205864562,0.756395616,24.32828311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57852582,1.489887228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.548006049,23.38527109,64.12653187,24.87515832,461.8822326,0,0.672283648,47.75643653,-0.672283648,132.2435635,0.975626631,0,514.7511383,24.87515832,531.0314319,3,16,3% +3/3/2018 1:00,78.32028365,252.1510002,133.725764,448.5370891,42.92363681,278.0899656,235.4525535,42.63741208,41.62933078,1.008081295,33.71766572,0,33.71766572,1.294306021,32.4233597,1.366946821,4.400865165,4.834032326,-4.834032326,0,0.320982551,0.323576505,10.4073327,0.228701275,1,0.203989291,0,0.938355814,0.977117777,0.724496596,1,40.30771887,0.937720306,0.035300752,0.312029739,0.904774292,0.629270888,0.961238037,0.922476074,0.224005177,10.00392405,40.53172405,10.94164436,181.6042543,0,0.524934413,58.33617193,-0.524934413,121.6638281,0.954750005,0,213.9183869,10.94164436,221.0794743,3,17,3% +3/3/2018 2:00,89.4472017,261.6769622,0.278371665,3.182470962,0.247667183,1.33704326,1.094745673,0.242297587,0.240199103,0.002098483,0.074962512,0,0.074962512,0.007468079,0.067494433,1.561148176,4.567124567,101.4986117,-101.4986117,0,0.889699685,0.00186702,0.060049776,0.943905725,1,0.009852033,0,0.960357706,0.999119669,0.724496596,1,0.231199331,0.005410598,0.111361697,0.312029739,0.733129488,0.457626084,0.961238037,0.922476074,0.001339914,0.057722129,0.232539245,0.063132727,0.061408965,0,0.343992353,69.87970264,-0.343992353,110.1202974,0.904647931,0,0.288092738,0.063132727,0.329411845,3,18,14% +3/3/2018 3:00,101.7149281,270.849184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775260393,4.727210037,-4.506715341,4.506715341,0.699152597,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122169569,82.98266884,-0.122169569,97.01733116,0.640732779,0,0,0,0,3,19,0% +3/3/2018 4:00,113.4809727,280.4722106,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980616612,4.895163536,-1.983978797,1.983978797,0.869434046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104046573,95.97223834,0.104046573,84.02776166,0,0.56944597,0,0,0,3,20,0% +3/3/2018 5:00,124.8490482,291.5525561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17902696,5.088552047,-1.074766671,1.074766671,0.713949615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.326907709,109.0811931,0.326907709,70.91880693,0,0.897051634,0,0,0,3,21,0% +3/3/2018 6:00,135.2474709,305.5794922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360513672,5.333368265,-0.560400327,0.560400327,0.62598779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531212758,122.0874327,0.531212758,57.91256732,0,0.955875755,0,0,0,3,22,0% +3/3/2018 7:00,143.6284237,324.6753175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506788893,5.66665329,-0.19464802,0.19464802,0.563440462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703025078,134.6702132,0.703025078,45.32978684,0,0.978878782,0,0,0,3,23,0% +3/4/2018 8:00,148.2144756,350.1859022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586830598,6.111896987,0.109585194,-0.109585194,0.511413518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830622231,146.1627093,0.830622231,33.83729073,0,0.989804163,0,0,0,3,0,0% +3/4/2018 9:00,147.3090975,18.28523597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57102877,0.319137572,0.39762232,-0.39762232,0.462156268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90529486,154.8630251,0.90529486,25.13697492,0,0.994769376,0,0,0,3,1,0% +3/4/2018 10:00,141.3026979,41.85459688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46619732,0.730500523,0.706349469,-0.706349469,0.409360816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921940335,157.2114145,0.921940335,22.78858548,0,0.995766555,0,0,0,3,2,0% +3/4/2018 11:00,132.1263441,59.10772498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306039733,1.031624414,1.085779429,-1.085779429,0.344474472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879410704,151.5713585,0.879410704,28.42864147,0,0.993143744,0,0,0,3,3,0% +3/4/2018 12:00,121.3310464,71.99893613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117626245,1.256618493,1.64170558,-1.64170558,0.249405501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78059131,141.3147471,0.78059131,38.68525286,0,0.985945995,0,0,0,3,4,0% +3/4/2018 13:00,109.7773847,82.47756471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915976808,1.439505063,2.715364063,-2.715364063,0.065799087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63220462,129.2129633,0.63220462,50.78703667,0,0.970911682,0,0,0,3,5,0% +3/4/2018 14:00,97.94875911,91.8477164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709528345,1.603045062,6.647447707,-6.647447707,0,#DIV/0!,0,0,0.377577924,1,0.149314054,0,0.945427672,0.984189635,0.724496596,1,0,0,0.054785813,0.312029739,0.856413961,0.580910557,0.961238037,0.922476074,0,0,0,0,0,0,-0.444352577,116.3819243,0.444352577,63.61807572,0,0.937476741,0,0,0,3,6,0% +3/4/2018 15:00,85.98501769,101.0253289,18.85319495,108.6633965,11.2448746,11.04792349,0,11.04792349,10.90580014,0.142123347,29.53082278,24.62057293,4.910249849,0.339074458,4.571175391,1.500721666,1.763224617,-12.20892701,12.20892701,0,0.596443978,0.084768615,2.726450036,1,0.38195424,0,0.081724847,0.961238037,1,0.519015061,0.794518465,10.48306992,0.233720217,0.115824807,0.079436176,0.724496596,0.448993192,0.992240155,0.953478191,0.061414573,2.63997655,10.54448449,2.873696767,0,15.2166407,-0.226576508,103.0955998,0.226576508,76.90440016,0,0.829323989,10.54448449,15.49322193,20.68448838,3,7,96% +3/4/2018 16:00,74.72583499,110.7970714,198.3850078,551.858661,53.0044113,52.90164272,0,52.90164272,51.40613273,1.495509987,50.92534253,1.226322012,49.69902052,1.598278566,48.10074196,1.304211857,1.933773697,-2.772140447,2.772140447,0.995782374,0.267179521,1.49088772,47.95207397,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.41353011,1.15794738,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.080143078,46.09335745,50.49367319,47.25130483,0,1.226322012,-0.002222167,90.12732089,0.002222167,89.87267911,0,0,50.49367319,47.25130483,81.41870717,3,8,61% +3/4/2018 17:00,64.13166088,122.0000754,392.1342403,729.7956717,73.72100389,235.3909403,160.9368231,74.45411717,71.49804363,2.956073541,97.3004468,0,97.3004468,2.222960269,95.07748653,1.119308637,2.129303004,-1.269687749,1.269687749,0.747283083,0.187999405,2.349468665,75.56698851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72663909,1.610527148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.70218205,72.63786369,70.42882114,74.24839084,160.9368231,0,0.220523126,77.26023943,-0.220523126,102.7397606,0.823266411,0,202.9227018,74.24839084,251.5167887,3,9,24% +3/4/2018 18:00,54.88796606,135.6048738,552.2853019,810.1705367,86.29378089,432.1224448,344.2673799,87.8550649,83.69170501,4.163359892,136.5100415,0,136.5100415,2.602075884,133.9079656,0.957975728,2.36675153,-0.587415627,0.587415627,0.630607678,0.156248556,2.865743428,92.17215957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.44765022,1.88519512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076221358,88.59938571,82.52387158,90.48458083,344.2673799,0,0.424931992,64.8536412,-0.424931992,115.1463588,0.932334112,0,403.4960937,90.48458083,462.7164421,3,10,15% +3/4/2018 19:00,47.90113855,152.5106698,663.0925162,849.0101847,93.90600659,602.8503274,506.7772619,96.07306549,91.07439401,4.998671479,163.6060701,0,163.6060701,2.831612575,160.7744576,0.836032583,2.661813332,-0.144257626,0.144257626,0.554823197,0.141618257,3.088520947,99.33745037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.54417171,2.051493671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237622912,95.48693578,89.78179462,97.53842945,506.7772619,0,0.596903631,53.35154307,-0.596903631,126.6484569,0.966234385,0,579.4474103,97.53842945,643.2843616,3,11,11% +3/4/2018 20:00,44.31774026,172.6546402,715.6996874,864.2912671,97.31963825,726.1107575,626.3304189,99.78033864,94.38509208,5.395246557,176.4642215,0,176.4642215,2.934546164,173.5296753,0.773490485,3.013391941,0.21391766,-0.21391766,0.493571615,0.135978316,3.034474926,97.59914457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.72654062,2.126068707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198466754,93.81601012,92.92500738,95.94207883,626.3304189,0,0.724675168,43.55816768,-0.724675168,136.4418323,0.981003569,0,707.3573839,95.94207883,770.1495556,3,12,9% +3/4/2018 21:00,44.98494791,193.910992,706.1391803,861.6406085,96.70722314,788.0204147,688.9060957,99.11431896,93.79114355,5.323175415,174.1276992,0,174.1276992,2.916079589,171.2116197,0.785135455,3.384385267,0.557611279,-0.557611279,0.434796545,0.136952071,2.726542843,87.69499026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.1556147,2.112689736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975371008,84.29576028,92.13098571,86.40845002,688.9060957,0,0.799528352,36.91491314,-0.799528352,143.0850869,0.987463131,0,772.4003558,86.40845002,828.9529581,3,13,7% +3/4/2018 22:00,49.72711696,213.189278,635.1359797,840.1410207,92.04466878,779.9213537,685.864248,94.05710571,89.26918241,4.787923298,156.771558,0,156.771558,2.775486372,153.9960716,0.867901918,3.720854831,0.944964102,-0.944964102,0.368555311,0.144921201,2.202756092,70.84820783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.80893365,2.010830429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59588929,68.10199221,87.40482294,70.11282264,685.864248,0,0.816368004,35.27714756,-0.816368004,144.7228524,0.988753112,0,765.5552323,70.11282264,811.4426725,3,14,6% +3/4/2018 23:00,57.51595896,229.0282376,508.1246795,791.4712565,83.05342846,697.0353289,612.6558093,84.37951962,80.54906116,3.830458467,125.7050787,0,125.7050787,2.504367303,123.2007114,1.003842856,3.997296826,1.466606094,-1.466606094,0.279349276,0.163450885,1.521229328,48.92796439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.42682142,1.814405586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.10212547,47.03142044,78.52894689,48.84582602,612.6558093,0,0.774072089,39.27901942,-0.774072089,140.7209806,0.985406533,0,682.2439838,48.84582602,714.2126,3,15,5% +3/4/2018 0:00,67.2484864,241.8010746,335.6584397,690.6298517,68.56748056,535.6172471,466.586994,69.03025313,66.49991803,2.530335101,83.45183736,0,83.45183736,2.067562526,81.38427483,1.173707505,4.220224886,2.36017995,-2.36017995,0.126539147,0.204277541,0.771670178,24.81956551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.92225066,1.497942012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559072417,23.85751042,64.48132307,25.35545244,466.586994,0,0.675596331,47.49952413,-0.675596331,132.5004759,0.975991309,0,519.8661742,25.35545244,536.4608107,3,16,3% +3/4/2018 1:00,78.11133783,252.4852914,137.447255,455.7654593,43.55476132,283.90145,240.6238899,43.27756004,42.24142457,1.036135466,34.63901504,0,34.63901504,1.313336754,33.32567829,1.363300028,4.406699648,4.745530386,-4.745530386,0,0.316883457,0.328334188,10.56035614,0.219591257,1,0.207686089,0,0.93785375,0.976615713,0.724496596,1,40.89408892,0.951508007,0.034027105,0.312029739,0.908039832,0.632536428,0.961238037,0.922476074,0.227546942,10.15101601,41.12163586,11.10252401,187.7849874,0,0.52795552,58.13257867,-0.52795552,121.8674213,0.955295052,0,220.5117052,11.10252401,227.7780851,3,17,3% +3/4/2018 2:00,89.27877098,262.013788,0.452160512,4.505959375,0.3954418,1.947479437,1.560553089,0.386926347,0.383517771,0.003408577,0.12155558,0,0.12155558,0.011924029,0.109631551,1.558208506,4.573003287,77.69778998,-77.69778998,0,0.874560668,0.002981007,0.095879443,0.927309474,1,0.012869668,0,0.960083374,0.998845337,0.724496596,1,0.369289645,0.008638919,0.110008925,0.312029739,0.735777829,0.460274425,0.961238037,0.922476074,0.00213366,0.092162967,0.371423305,0.100801886,0.113437425,0,0.346330927,69.73693829,-0.346330927,110.2630617,0.905629411,0,0.474155573,0.100801886,0.540128392,3,18,14% +3/4/2018 3:00,101.5244632,271.1956802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771936155,4.733257536,-4.57265765,4.57265765,0.687875798,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124716284,82.83562814,-0.124716284,97.16437186,0.649090045,0,0,0,0,3,19,0% +3/4/2018 4:00,113.283091,280.8374047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977162924,4.901537375,-1.99532666,1.99532666,0.871374645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101684629,95.83618718,0.101684629,84.16381282,0,0.558283598,0,0,0,3,20,0% +3/4/2018 5:00,124.6295271,291.9438314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175195594,5.095381088,-1.07701223,1.07701223,0.714333628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.324670041,108.9455857,0.324670041,71.05441427,0,0.895997494,0,0,0,3,21,0% +3/4/2018 6:00,134.9882321,305.9912443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355989102,5.340554695,-0.55954939,0.55954939,0.625842271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529030245,121.9399558,0.529030245,58.06004422,0,0.955487445,0,0,0,3,22,0% +3/4/2018 7:00,143.3107779,325.0538927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501244928,5.673260674,-0.19216501,0.19216501,0.563015842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700824749,134.4932112,0.700824749,45.50678879,0,0.978655488,0,0,0,3,23,0% +3/5/2018 8:00,147.8397772,350.3869624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580290877,6.115406149,0.113363299,-0.113363299,0.510767424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828332304,145.9278045,0.828332304,34.07219545,0,0.989637752,0,0,0,3,0,0% +3/5/2018 9:00,146.9217985,18.20736216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564269126,0.317778418,0.402865953,-0.402865953,0.461259554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90284971,154.5352145,0.90284971,25.46478554,0,0.994619797,0,0,0,3,1,0% +3/5/2018 10:00,140.9459884,41.60468647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459971565,0.726138763,0.713730973,-0.713730973,0.408098505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919285016,156.821779,0.919285016,23.17822103,0,0.995609904,0,0,0,3,2,0% +3/5/2018 11:00,131.8058904,58.80937891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300446761,1.026417293,1.0969472,-1.0969472,0.34256467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876504755,151.2235662,0.876504755,28.77643376,0,0.992955244,0,0,0,3,3,0% +3/5/2018 12:00,121.0359539,71.70120942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112475909,1.251422182,1.661183816,-1.661183816,0.246074526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777411546,141.0241861,0.777411546,38.97581389,0,0.985684001,0,0,0,3,4,0% +3/5/2018 13:00,109.495532,82.19153873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911057549,1.434512968,2.760909647,-2.760909647,0.058010333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628746734,128.9577192,0.628746734,51.04228076,0,0.970476724,0,0,0,3,5,0% +3/5/2018 14:00,97.66978056,91.57269464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70465925,1.598245026,6.905500451,-6.905500451,0,#DIV/0!,0,0,0.394217113,1,0.143812383,0,0.946102137,0.9848641,0.724496596,1,0,0,0.056818525,0.312029739,0.85154215,0.576038746,0.961238037,0.922476074,0,0,0,0,0,0,-0.440631443,116.1441766,0.440631443,63.85582336,0,0.936526482,0,0,0,3,6,0% +3/5/2018 15:00,85.7091853,100.7586059,21.71622771,122.4141525,12.55733996,12.34239592,0,12.34239592,12.17868983,0.163706097,32.91512204,27.27112108,5.644000961,0.378650131,5.265350829,1.495907483,1.758569422,-11.45327511,11.45327511,0,0.578246836,0.094662533,3.044672456,1,0.328308673,0,0.087090414,0.961238037,1,0.507378673,0.782882077,11.7066199,0.262189437,0.115824807,0.066286894,0.724496596,0.448993192,0.993628222,0.954866259,0.068582683,2.946001162,11.77520258,3.208190599,0,18.3177755,-0.222777518,102.8722226,0.222777518,77.12777743,0,0.825560836,11.77520258,18.33062865,23.77223242,3,7,102% +3/5/2018 16:00,74.42706304,110.5383761,203.8930057,559.4071601,53.71184575,54.68716789,1.057900863,53.62926703,52.09223543,1.537031602,51.05583016,0,51.05583016,1.619610325,49.43621983,1.298997303,1.929258613,-2.726881659,2.726881659,0.996477918,0.263431527,1.53304415,49.30796968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.07303812,1.173402167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110685268,47.39669597,51.18372338,48.57009814,1.057900863,0,0.001891111,89.89164727,-0.001891111,90.10835273,0,0,51.18372338,48.57009814,82.97188121,3,8,62% +3/5/2018 17:00,63.80925611,121.7563668,397.9799982,733.6633303,74.16969397,239.8369729,164.9036275,74.93334537,71.93320404,3.000141334,98.73134815,0,98.73134815,2.23648993,96.49485822,1.113681612,2.125049486,-1.258500863,1.258500863,0.745370012,0.186365381,2.378584734,76.50346139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14493183,1.620329341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723276543,73.53803704,70.86820837,75.15836638,164.9036275,0,0.224767439,77.01079691,-0.224767439,102.9892031,0.82754785,0,207.3338507,75.15836638,256.5234984,3,9,24% +3/5/2018 18:00,54.53621808,135.3986519,558.163628,812.6912236,86.64975584,437.075697,348.8310778,88.2446192,84.036946,4.207673197,137.9460436,0,137.9460436,2.612809842,135.3332338,0.951836567,2.363152279,-0.584415206,0.584415206,0.630094576,0.155240778,2.892855192,93.04416709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77950899,1.892971836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.095863739,89.43759251,82.87537273,91.33056435,348.8310778,0,0.429229537,64.58132543,-0.429229537,115.4186746,0.93351221,0,408.5134432,91.33056435,468.287471,3,10,15% +3/5/2018 19:00,47.52150344,152.3894987,668.8747284,850.9486368,94.21766396,607.9918044,511.5728904,96.418914,91.37665377,5.042260237,165.0174321,0,165.0174321,2.841010195,162.1764219,0.829406701,2.659698498,-0.144639726,0.144639726,0.55488854,0.140859955,3.114033968,100.1580368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.83471528,2.058302215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.256107009,96.2757147,90.09082229,98.33401692,511.5728904,0,0.601179517,53.04557889,-0.601179517,126.9544211,0.966830167,0,584.6949253,98.33401692,649.0525727,3,11,11% +3/5/2018 20:00,43.92793365,172.6786878,721.2998143,865.9848093,97.60632369,731.2799189,631.1793233,100.1005956,94.66313291,5.437462679,177.8306817,0,177.8306817,2.943190788,174.8874909,0.766687076,3.01381165,0.211419716,-0.211419716,0.493998789,0.135320046,3.058414503,98.36912366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.99380404,2.132331707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.215810896,94.55614331,93.20961493,96.68847502,631.1793233,0,0.728857269,43.20931974,-0.728857269,136.7906803,0.981399463,0,712.648664,96.68847502,775.9293371,3,12,9% +3/5/2018 21:00,44.61678834,194.0946433,711.4936605,863.2983486,96.98039141,793.1242031,693.7045886,99.41961454,94.05607479,5.363539749,175.434192,0,175.434192,2.924316621,172.5098754,0.778709858,3.387590587,0.55311287,-0.55311287,0.435565818,0.136305349,2.748820644,88.41152091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.41027669,2.118657437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.991511199,84.98451679,92.40178789,87.10317423,693.7045886,0,0.803551391,36.52941392,-0.803551391,143.4705861,0.987776226,0,777.6266885,87.10317423,834.6339739,3,13,7% +3/5/2018 22:00,49.40420093,213.4772982,640.1986485,841.9652028,92.31627625,784.919812,690.5611242,94.35868774,89.53259991,4.826087834,158.0072506,0,158.0072506,2.78367634,155.2235743,0.862265971,3.725881733,0.937739984,-0.937739984,0.369790708,0.144199424,2.223217109,71.5063045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06214057,2.016764032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610713228,68.73457976,87.6728538,70.75134379,690.5611242,0,0.820177748,34.897409,-0.820177748,145.102591,0.989037605,0,770.6637741,70.75134379,816.9691136,3,14,6% +3/5/2018 23:00,57.24121113,229.3574359,512.860335,793.7778935,83.34435764,701.9619135,617.2645379,84.69737558,80.83121775,3.866157838,126.8620658,0,126.8620658,2.513139891,124.3489259,0.999047602,4.00304242,1.454370398,-1.454370398,0.281441704,0.162508878,1.539557428,49.51745907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69804106,1.820761296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115404116,47.59806515,78.81344518,49.41882645,617.2645379,0,0.777628784,38.95602113,-0.777628784,141.0439789,0.985701969,0,687.2523153,49.41882645,719.5959489,3,15,5% +3/5/2018 0:00,67.0127621,242.1387067,340.0158201,694.1555535,68.92996941,540.6604865,471.2458271,69.41465938,66.85147651,2.563182875,84.51926504,0,84.51926504,2.078492902,82.44077214,1.169593339,4.226117678,2.335158283,-2.335158283,0.130818104,0.202725771,0.786957825,25.3112688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26018204,1.505861032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.570148265,24.33015433,64.83033031,25.83601536,471.2458271,0,0.678876406,47.24409631,-0.678876406,132.7559037,0.976348891,0,524.9306711,25.83601536,541.8398265,3,16,3% +3/5/2018 1:00,77.90320634,252.8224218,141.1677535,462.8429134,44.17261308,289.6491881,245.7443602,43.90482797,42.84064582,1.064182155,35.55972349,0,35.55972349,1.331967264,34.22775622,1.359667448,4.412583683,4.660197217,-4.660197217,0,0.312908664,0.332991816,10.71016145,0.21060129,1,0.211377735,0,0.937349401,0.976111365,0.724496596,1,41.46751937,0.965005749,0.032760406,0.312029739,0.911300241,0.635796837,0.961238037,0.922476074,0.231035785,10.29501457,41.69855516,11.26002032,193.9902809,0,0.530945496,57.93063954,-0.530945496,122.0693605,0.955828375,0,227.1199701,11.26002032,234.4894282,3,17,3% +3/5/2018 2:00,89.108945,262.3528713,0.683471252,6.205628546,0.586966178,2.738165894,2.163746618,0.574419277,0.569266982,0.005152295,0.183414714,0,0.183414714,0.017699196,0.165715518,1.555244483,4.578921406,62.80733315,-62.80733315,0,0.85880156,0.004424799,0.142316745,0.910798174,1,0.015920363,0,0.959803805,0.998565768,0.724496596,1,0.548352934,0.012823007,0.108648008,0.312029739,0.738456989,0.462953585,0.961238037,0.922476074,0.003158782,0.136800269,0.551511717,0.149623276,0.193010149,0,0.348674852,69.59371542,-0.348674852,110.4062846,0.906599925,0,0.726494703,0.149623276,0.824420145,3,18,13% +3/5/2018 3:00,101.3341822,271.543985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768615124,4.739336601,-4.640465928,4.640465928,0.6762799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127242158,82.68974392,-0.127242158,97.31025608,0.657048475,0,0,0,0,3,19,0% +3/5/2018 4:00,113.0849059,281.2039496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973703943,4.907934791,-2.006754477,2.006754477,0.873328917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099334142,95.70082872,0.099334142,84.29917128,0,0.546648394,0,0,0,3,20,0% +3/5/2018 5:00,124.4091492,292.3357841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171349273,5.102221954,-1.079220156,1.079220156,0.714711206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322432684,108.8101073,0.322432684,71.18989275,0,0.894928872,0,0,0,3,21,0% +3/5/2018 6:00,134.7276136,306.4025056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35144045,5.347732559,-0.558641642,0.558641642,0.625687037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526835905,121.7919179,0.526835905,58.20808209,0,0.955093788,0,0,0,3,22,0% +3/5/2018 7:00,142.9915245,325.4306012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495672905,5.679835478,-0.189616735,0.189616735,0.562580061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698600303,134.3148137,0.698600303,45.68518627,0,0.978428316,0,0,0,3,23,0% +3/6/2018 8:00,147.4636249,350.5875571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573725782,6.118907187,0.117217998,-0.117217998,0.510108231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826006671,145.6906854,0.826006671,34.30931455,0,0.989467801,0,0,0,3,0,0% +3/6/2018 9:00,146.5326634,18.13364519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557477437,0.316491814,0.408206872,-0.408206872,0.460346203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900358758,154.2052645,0.900358758,25.7947355,0,0.994466581,0,0,0,3,1,0% +3/6/2018 10:00,140.586632,41.35986475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453699613,0.721865818,0.721250729,-0.721250729,0.406812551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916575997,156.4305403,0.916575997,23.5694597,0,0.99544915,0,0,0,3,2,0% +3/6/2018 11:00,131.4824407,58.51453266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294801499,1.021271255,1.108344773,-1.108344773,0.340615571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873539946,150.8726469,0.873539946,29.12735307,0,0.992761633,0,0,0,3,3,0% +3/6/2018 12:00,120.7379266,71.40550204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107274351,1.246261115,1.681149282,-1.681149282,0.24266023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774170858,140.7299201,0.774170858,39.27007991,0,0.985414774,0,0,0,3,4,0% +3/6/2018 13:00,109.2109768,81.90654551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906091125,1.429538898,2.808095059,-2.808095059,0.049941152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625229103,128.699005,0.625229103,51.30099502,0,0.970029314,0,0,0,3,5,0% +3/6/2018 14:00,97.38837819,91.29804177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699747853,1.59345143,7.185131203,-7.185131203,0,#DIV/0!,0,0,0.411271598,1,0.138287988,0,0.946772472,0.985534435,0.724496596,1,0,0,0.058873851,0.312029739,0.846649492,0.571146088,0.961238037,0.922476074,0,0,0,0,0,0,-0.436854903,115.9033831,0.436854903,64.09661691,0,0.935545522,0,0,0,3,6,0% +3/6/2018 15:00,85.4304805,100.4917493,24.77639593,136.5909177,13.89438307,13.66219109,0,13.66219109,13.47541616,0.186774938,36.3285962,29.90230525,6.426290958,0.418966914,6.007324043,1.491043166,1.753911897,-10.781698,10.781698,0,0.56079113,0.104741729,3.368854039,1,0.272162279,0,0.092485173,0.961238037,1,0.495911405,0.771414809,12.95308257,0.291782458,0.115824807,0.053316155,0.724496596,0.448993192,0.994957491,0.956195528,0.075885026,3.25682304,13.0289676,3.548605499,0,21.76402571,-0.218918693,102.6455306,0.218918693,77.35446939,0,0.821604703,13.0289676,21.43003138,27.05449453,3,7,108% +3/6/2018 16:00,74.12632958,110.2791175,209.4456914,566.822594,54.40994373,57.77379232,3.425619051,54.34817327,52.76928317,1.578890092,52.42319332,0,52.42319332,1.640660555,50.78253276,1.293748514,1.924733697,-2.682873996,2.682873996,0.988952164,0.259780678,1.56597821,50.36724226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.72384216,1.188652987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.134545883,48.41490907,51.85838805,49.60356206,3.425619051,0,0.006043547,89.65372815,-0.006043547,90.34627185,0,0,51.85838805,49.60356206,84.32292734,3,8,63% +3/6/2018 17:00,63.48505864,121.5117491,403.8464383,737.4742285,74.61495172,244.3199283,168.9105277,75.40940067,72.36503563,3.044365037,100.1671606,0,100.1671606,2.249916094,97.91724454,1.108023299,2.120780101,-1.247434549,1.247434549,0.743477561,0.184760703,2.407705585,77.44008803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56002478,1.630056551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.7443745,74.43835819,71.30439928,76.06841475,168.9105277,0,0.229039228,76.75948633,-0.229039228,103.2405137,0.831696784,0,211.7867419,76.06841475,261.571998,3,9,24% +3/6/2018 18:00,54.1827122,135.1915051,564.0476089,815.1780875,87.00346026,442.0461743,353.4141602,88.63201406,84.37998493,4.252029131,139.3833484,0,139.3833484,2.623475336,136.7598731,0.945666726,2.359536884,-0.581401429,0.581401429,0.62957919,0.154248434,2.91993652,93.91519568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10925106,1.90069895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115484069,90.27485833,83.22473513,92.17555728,353.4141602,0,0.433542272,64.3074274,-0.433542272,115.6925726,0.934670992,0,413.550699,92.17555728,473.8777577,3,10,15% +3/6/2018 19:00,47.14009461,152.2684172,674.6501906,852.8612114,94.52710236,613.1344216,516.3718621,96.76255957,91.67676146,5.08579811,166.4270905,0,166.4270905,2.850340904,163.5767495,0.822749861,2.657585226,-0.144977445,0.144977445,0.554946293,0.140112763,3.139483504,100.9765814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12319021,2.065062282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274545111,97.06253087,90.39773532,99.12759315,516.3718621,0,0.605458256,52.73817512,-0.605458256,127.2618249,0.967417924,0,589.9451299,99.12759315,654.8221571,3,11,11% +3/6/2018 20:00,43.53662152,172.705433,726.883207,867.6548116,97.89051689,736.4358793,636.01757,100.4183093,94.93875663,5.479552651,179.1930094,0,179.1930094,2.951760262,176.2412491,0.759857391,3.014278442,0.208981374,-0.208981374,0.49441577,0.13467159,3.082268102,99.13633739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.25874404,2.138540262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.233092747,95.29361833,93.49183679,97.43215859,636.01757,0,0.733030649,42.85893054,-0.733030649,137.1410695,0.981790028,0,717.9275447,97.43215859,781.6949439,3,12,9% +3/6/2018 21:00,44.24796228,194.283552,716.8243044,864.9315664,97.25067798,798.2023352,698.4803996,99.72193562,94.31821123,5.403724394,176.7348185,0,176.7348185,2.932466758,173.8023517,0.772272629,3.390887665,0.548692686,-0.548692686,0.436321714,0.135668779,2.771004249,89.1250219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.6622522,2.124562184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.007583145,85.67036109,92.66983534,87.79492327,698.4803996,0,0.80755568,36.14220235,-0.80755568,143.8577976,0.988084765,0,782.8276766,87.79492327,840.287698,3,13,7% +3/6/2018 22:00,49.08158705,213.7709752,645.2337614,843.7603358,92.58450663,789.8823559,695.2255691,94.6567868,89.79274215,4.864044641,159.2361602,0,159.2361602,2.791764475,156.4443957,0.856635296,3.731007362,0.930630459,-0.930630459,0.371006508,0.143489867,2.243592639,72.16165157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.31219919,2.022623859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62547523,69.3645243,87.93767442,71.38714815,695.2255691,0,0.823960952,34.51671129,-0.823960952,145.4832887,0.989317513,0,775.7365052,71.38714815,822.4579659,3,14,6% +3/6/2018 23:00,56.96733119,229.691291,517.5686205,796.0445245,83.63110746,706.8442739,621.833302,85.01097188,81.109321,3.901650883,128.0122907,0,128.0122907,2.521786456,125.4905042,0.994267495,4.008869291,1.442339985,-1.442339985,0.283499025,0.161584579,1.557829836,50.10516254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.96536449,1.827025703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128642413,48.16298808,79.0940069,49.99001378,621.833302,0,0.781153921,38.63365089,-0.781153921,141.3663491,0.985992128,0,692.2167477,49.99001378,724.934212,3,15,5% +3/6/2018 0:00,66.77803842,242.4798822,344.3511533,697.6132025,69.28632288,545.6510091,475.8580601,69.79294905,67.1970846,2.595864448,85.58116216,0,85.58116216,2.089238274,83.49192389,1.165496638,4.232072314,2.310660648,-2.310660648,0.135007447,0.201208337,0.802254918,25.80327591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59239369,1.513646018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.581230957,24.80309028,65.17362464,26.31673629,475.8580601,0,0.682123071,46.9902291,-0.682123071,133.0097709,0.976699445,0,529.9439276,26.31673629,547.1677052,3,16,3% +3/6/2018 1:00,77.69590667,253.1622631,144.8860849,469.772393,44.77749965,295.332822,250.8133166,44.51950533,43.42729282,1.092212508,36.47951555,0,36.47951555,1.350206826,35.12930872,1.356049387,4.418515032,4.577859133,-4.577859133,0,0.309053141,0.337551706,10.85682321,0.201728308,1,0.215064433,0,0.936842759,0.975604722,0.724496596,1,42.02829723,0.978220249,0.031500503,0.312029739,0.914555702,0.639052297,0.961238037,0.922476074,0.234473249,10.43599143,42.26277048,11.41421167,200.2171705,0,0.533903908,57.73039233,-0.533903908,122.2696077,0.956350189,0,233.7404994,11.41421167,241.2108726,3,17,3% +3/6/2018 2:00,88.93780672,262.6940821,0.980842013,8.329807774,0.826426468,3.732851786,2.923951124,0.808900662,0.801506661,0.007394001,0.262736309,0,0.262736309,0.024919807,0.237816502,1.552257557,4.584876658,52.61651569,-52.61651569,0,0.842568382,0.006229952,0.200376665,0.894378847,1,0.019003152,0,0.959519018,0.998280981,0.724496596,1,0.772342319,0.018054315,0.107279522,0.312029739,0.74116609,0.465662686,0.961238037,0.922476074,0.004436144,0.192609672,0.776778463,0.210663988,0.30883109,0,0.351022641,69.45012284,-0.351022641,110.5498772,0.907559046,0,1.057060912,0.210663988,1.194936279,3,18,13% +3/6/2018 3:00,101.1440764,271.8939633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765297153,4.745444876,-4.710238322,4.710238322,0.664348117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129747442,82.54500182,-0.129747442,97.45499818,0.664635947,0,0,0,0,3,19,0% +3/6/2018 4:00,112.8864068,281.5716985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97023948,4.914353219,-2.018268192,2.018268192,0.875297878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096994656,95.56613544,0.096994656,84.43386456,0,0.53450768,0,0,0,3,20,0% +3/6/2018 5:00,124.1879101,292.7282478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167487923,5.109071738,-1.081392646,1.081392646,0.715082723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320195075,108.6747226,0.320195075,71.32527737,0,0.893845194,0,0,0,3,21,0% +3/6/2018 6:00,134.4656306,306.8130904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346867985,5.354898615,-0.557678593,0.557678593,0.625522346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52462918,121.6432832,0.52462918,58.35671683,0,0.954694588,0,0,0,3,22,0% +3/6/2018 7:00,142.6707128,325.8052664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490073685,5.686374619,-0.187004431,0.187004431,0.562133331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696351292,134.1349958,0.696351292,45.8650042,0,0.978197161,0,0,0,3,23,0% +3/7/2018 8:00,147.0861047,350.7875071,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567136811,6.122396973,0.121148245,-0.121148245,0.50943612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823645089,145.4513636,0.823645089,34.54863637,0,0.989294241,0,0,0,3,0,0% +3/7/2018 9:00,146.1418217,18.06385171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550655963,0.315273688,0.413644279,-0.413644279,0.459416352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897822056,153.8732468,0.897822056,26.12675324,0,0.994309677,0,0,0,3,1,0% +3/7/2018 10:00,140.2247872,41.12000056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447384229,0.717679398,0.728908512,-0.728908512,0.405502993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913813685,156.0378125,0.913813685,23.96218752,0,0.995284251,0,0,0,3,2,0% +3/7/2018 11:00,131.1561529,58.22315819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289106703,1.016185811,1.119973747,-1.119973747,0.338626899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870517083,150.5187835,0.870517083,29.48121645,0,0.992562873,0,0,0,3,3,0% +3/7/2018 12:00,120.4371142,71.11182652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102024184,1.24113551,1.701611461,-1.701611461,0.239160992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770870463,140.4321202,0.770870463,39.56787982,0,0.985138259,0,0,0,3,4,0% +3/7/2018 13:00,108.9238631,81.62260705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901080044,1.424583237,2.856989845,-2.856989845,0.041579651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621653337,128.4369706,0.621653337,51.56302935,0,0.969569321,0,0,0,3,5,0% +3/7/2018 14:00,97.10469335,91.02377704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694796618,1.588664607,7.489035195,-7.489035195,0,#DIV/0!,0,0,0.428749905,1,0.132743333,0,0.947438275,0.986200238,0.724496596,1,0,0,0.060951302,0.312029739,0.84173827,0.566234865,0.961238037,0.922476074,0,0,0,0,0,0,-0.433024918,115.6596828,0.433024918,64.34031724,0,0.934533204,0,0,0,3,6,0% +3/7/2018 15:00,85.14911374,100.2247694,28.02516852,151.0993928,15.24777653,14.99926537,0,14.99926537,14.78799981,0.211265558,39.74168598,32.48688269,7.254803293,0.459776721,6.795026572,1.48613239,1.749252217,-10.1813333,10.1813333,0,0.544074392,0.11494418,3.696999953,1,0.213381468,0,0.09790494,0.961238037,1,0.484625997,0.760129401,14.21478791,0.322460762,0.115824807,0.040534211,0.724496596,0.448993192,0.996228376,0.957466413,0.083276667,3.570331482,14.29806457,3.892792243,0,25.55478398,-0.215003397,102.4157266,0.215003397,77.58427342,0,0.817445534,14.29806457,24.78243629,30.51767348,3,7,113% +3/7/2018 16:00,73.82377816,110.0192902,215.0395812,574.1036483,55.09857998,60.9328341,5.874620402,55.05821369,53.4371545,1.621059196,53.80026158,0,53.80026158,1.661425478,52.1388361,1.288467995,1.920198856,-2.640086314,2.640086314,0.981635039,0.256225294,1.598916511,51.42665124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.36582548,1.203697103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158409569,49.43325328,52.52423505,50.63695038,5.874620402,0,0.010232683,89.41370024,-0.010232683,90.58629976,0,0,52.52423505,50.63695038,85.66510634,3,8,63% +3/7/2018 17:00,63.15921191,121.2661927,409.7304342,741.2276818,75.05661393,248.8371635,172.9550623,75.88210118,72.79338009,3.088721084,101.6071213,0,101.6071213,2.26323384,99.34388746,1.102336201,2.116494334,-1.236493466,1.236493466,0.741606526,0.183185352,2.436816926,78.37640884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.97176578,1.639705212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765465567,75.33838536,71.73723134,76.97809058,172.9550623,0,0.233335946,76.50644724,-0.233335946,103.4935528,0.835716685,0,216.2786626,76.97809058,266.6592834,3,9,23% +3/7/2018 18:00,53.82758834,134.9833719,569.9343006,817.6306791,87.35473984,447.0311053,358.0140276,89.01707763,84.72067213,4.296405499,140.8212374,0,140.8212374,2.634067711,138.1871697,0.939468645,2.355904274,-0.578378116,0.578378116,0.629062173,0.153271596,2.946975016,94.78484668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.43673256,1.90837309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.135073367,91.11079995,83.57180593,93.01917304,358.0140276,0,0.437867654,64.03209195,-0.437867654,115.9679081,0.935810245,0,418.605001,93.01917304,479.4841894,3,10,15% +3/7/2018 19:00,46.7570407,152.1473451,680.4162184,854.7476346,94.83418658,618.2754659,521.1716151,97.10385082,91.97458596,5.129264864,167.8343904,0,167.8343904,2.859600626,164.9747897,0.816064309,2.655472121,-0.145273495,0.145273495,0.55499692,0.139376729,3.164858975,101.7927438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40947044,2.071770919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292929553,97.84705717,90.7024,99.91882809,521.1716151,0,0.609737417,52.42948106,-0.609737417,127.5705189,0.967997488,0,595.1952141,99.91882809,660.5900887,3,11,11% +3/7/2018 20:00,43.14391896,172.734825,732.4475181,869.3011348,98.17210559,741.5761365,640.8427833,100.7333532,95.21185439,5.521498779,180.550632,0,180.550632,2.9602512,177.5903808,0.753003438,3.014791429,0.206600435,-0.206600435,0.494822934,0.134032955,3.106026982,99.90050464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.521256,2.144691917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.250305975,96.02816496,93.77156198,98.17285687,640.8427833,0,0.737193083,42.50714498,-0.737193083,137.492855,0.982175164,0,723.1914277,98.17285687,787.4435991,3,12,9% +3/7/2018 21:00,43.87857714,194.4776907,722.1291566,866.5402517,97.51799716,803.2526413,703.2314569,100.0211844,94.57746974,5.443714611,178.029102,0,178.029102,2.940527417,175.0885745,0.765825642,3.394276025,0.544348538,-0.544348538,0.437064607,0.135042321,2.793086727,89.83527031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.91146134,2.130402104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.023581826,86.35307888,92.93504317,88.48348098,703.2314569,0,0.811539286,35.75340243,-0.811539286,144.2465976,0.988388688,0,788.0010603,88.48348098,845.911729,3,13,7% +3/7/2018 22:00,48.75936741,214.0702419,650.2397794,845.5265811,92.84930602,794.8072443,699.8559053,94.95133899,90.04955687,4.901782119,160.4579119,0,160.4579119,2.799749154,157.6581627,0.851011502,3.736230551,0.923632643,-0.923632643,0.372203205,0.142792411,2.263877402,72.81407928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.55905926,2.028408731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640171471,69.99166262,88.19923073,72.02007135,699.8559053,0,0.82771603,34.13517101,-0.82771603,145.864829,0.989592809,0,780.7716022,72.02007135,827.9072985,3,14,6% +3/7/2018 23:00,56.69438444,230.0296943,522.2483983,798.2716308,83.91366773,711.6811794,626.3608894,85.32029006,81.38336104,3.936929025,129.1554772,0,129.1554772,2.53030669,126.6251706,0.989503676,4.014775543,1.430509394,-1.430509394,0.285522176,0.160677693,1.576042545,50.69094586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22878219,1.833198584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141837459,48.72606529,79.37061965,50.55926387,626.3608894,0,0.78464631,38.31202193,-0.78464631,141.6879781,0.986277021,0,697.135972,50.55926387,730.225999,3,15,5% +3/7/2018 0:00,66.54435377,242.8244761,348.6636085,701.0040934,69.63661525,550.5882027,480.4230148,70.16518792,67.53681437,2.628373557,86.63732945,0,86.63732945,2.099800881,84.53752857,1.161418072,4.238086612,2.286669665,-2.286669665,0.139110146,0.199724358,0.817557748,26.29546753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.91895486,1.521298591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.592317806,25.27620358,65.51127266,26.79750217,480.4230148,0,0.685335534,46.73799927,-0.685335534,133.2620007,0.977043036,0,534.9052335,26.79750217,552.4436628,3,16,3% +3/7/2018 1:00,77.48945786,253.5046871,148.6010928,476.5568051,45.36971801,300.9520141,255.8301427,45.12187142,44.00165361,1.120217807,37.39811979,0,37.39811979,1.368064394,36.0300554,1.352446175,4.424491459,4.498355528,-4.498355528,0,0.305312142,0.342016099,11.0004134,0.192969415,1,0.21874636,0,0.936333818,0.975095781,0.724496596,1,42.57669999,0.991157997,0.030247253,0.312029739,0.917806373,0.642302969,0.961238037,0.922476074,0.237860807,10.57401578,42.8145608,11.56517378,206.4627496,0,0.536830321,57.53187538,-0.536830321,122.4681246,0.956860701,0,240.3706521,11.56517378,247.939827,3,17,3% +3/7/2018 2:00,88.76547291,263.0372911,1.352069018,10.91930806,1.11681367,4.951910869,3.858580784,1.093330085,1.083137617,0.010192467,0.36150084,0,0.36150084,0.033676053,0.327824787,1.549249764,4.590866786,45.20779994,-45.20779994,0,0.826003447,0.008419013,0.270784404,0.878061204,1,0.02211647,0,0.959229092,0.997991055,0.724496596,1,1.044096657,0.024398186,0.105904294,0.312029739,0.743903722,0.468400318,0.961238037,0.922476074,0.005980102,0.260288269,1.050076759,0.284686455,0.470510697,0,0.35337228,69.3062819,-0.35337228,110.6937181,0.908506162,0,1.477538627,0.284686455,1.663860218,3,18,13% +3/7/2018 3:00,100.9541403,272.2454809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761982142,4.751580015,-4.7820788,4.7820788,0.652062672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132232355,82.40138931,-0.132232355,97.59861069,0.671877717,0,0,0,0,3,19,0% +3/7/2018 4:00,112.6875865,281.9405056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966769411,4.920790118,-2.029873753,2.029873753,0.877282546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094665756,95.43208235,0.094665756,84.56791765,0,0.521825906,0,0,0,3,20,0% +3/7/2018 5:00,123.96581,293.1210587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163611545,5.115927581,-1.083531842,1.083531842,0.715448548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.317956708,108.5394002,0.317956708,71.46059982,0,0.892745887,0,0,0,3,21,0% +3/7/2018 6:00,134.2023035,307.2228183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34227206,5.362049717,-0.556661713,0.556661713,0.625348449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52240957,121.4940199,0.52240957,58.50598006,0,0.954289655,0,0,0,3,22,0% +3/7/2018 7:00,142.3483964,326.177721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484448203,5.692875177,-0.184329309,0.184329309,0.561675858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694077331,133.953738,0.694077331,46.04626202,0,0.977961918,0,0,0,3,23,0% +3/8/2018 8:00,146.7073046,350.9866458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560525502,6.1258726,0.125153014,-0.125153014,0.508751264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821247383,145.2098572,0.821247383,34.79014284,0,0.989117005,0,0,0,3,0,0% +3/8/2018 9:00,145.7494026,17.9977601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543806957,0.314120172,0.419177398,-0.419177398,0.458470133,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895239718,153.5392375,0.895239718,26.46076255,0,0.994149037,0,0,0,3,1,0% +3/8/2018 10:00,139.8606111,40.88496573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441028158,0.713577267,0.736704127,-0.736704127,0.404169864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910998546,155.64371,0.910998546,24.35628998,0,0.99511517,0,0,0,3,2,0% +3/8/2018 11:00,130.8271838,57.93522698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283365109,1.011160464,1.131835793,-1.131835793,0.33659837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867437017,150.1621566,0.867437017,29.83784335,0,0.992358927,0,0,0,3,3,0% +3/8/2018 12:00,120.1336656,70.82019508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096728007,1.236045581,1.722580214,-1.722580214,0.235575124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767511612,140.1309566,0.767511612,39.86904335,0,0.984854406,0,0,0,3,4,0% +3/8/2018 13:00,108.6343338,81.33974573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896026805,1.419646376,2.907667975,-2.907667975,0.032913181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618021067,128.1717659,0.618021067,51.82823409,0,0.969096609,0,0,0,3,5,0% +3/8/2018 14:00,96.81886657,90.74992071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689808,1.583884912,7.820380011,-7.820380011,0,#DIV/0!,0,0,0.446660892,1,0.127180843,0,0.948099164,0.986861127,0.724496596,1,0,0,0.063050388,0.312029739,0.836810746,0.561307342,0.961238037,0.922476074,0,0,0,0,0,0,-0.429143459,115.4132142,0.429143459,64.58678585,0,0.933488845,0,0,0,3,6,0% +3/8/2018 15:00,84.8652871,99.95767771,31.45347604,165.8513699,16.61015386,16.34640602,0,16.34640602,16.10929643,0.237109588,43.12753851,35.00042167,8.127116844,0.500857424,7.626259421,1.481178681,1.744590589,-9.641782188,9.641782188,0,0.52808643,0.125214356,4.027324108,1,0.15182038,0,0.103345764,0.961238037,1,0.473534014,0.749037418,15.48486848,0.354211572,0.115824807,0.027949773,0.724496596,0.448993192,0.997441565,0.958679602,0.090717375,3.884613694,15.57558585,4.238825266,0,29.68664436,-0.211034866,102.1830049,0.211034866,77.81699506,0,0.813072326,15.57558585,28.37621425,34.14725055,3,7,119% +3/8/2018 16:00,73.51955156,109.758891,220.6712094,581.2493828,55.77765226,64.16184634,8.402583303,55.75926304,54.09575025,1.663512788,55.18619156,0,55.18619156,1.681902013,53.50428955,1.283158239,1.915654032,-2.598487304,2.598487304,0.97452119,0.252763613,1.631841677,52.48563775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.99889277,1.218532283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.18226374,50.45119139,53.18115651,51.66972368,8.402583303,0,0.014456073,89.1716992,-0.014456073,90.8283008,0,0,53.18115651,51.66972368,86.99795726,3,8,64% +3/8/2018 17:00,62.83185886,121.0196705,415.6288867,744.9231265,75.49452619,253.3860327,177.0347589,76.35127379,73.21808768,3.13318611,103.0504741,0,103.0504741,2.27643851,100.7740356,1.096622812,2.112191711,-1.225681719,1.225681719,0.739757608,0.181639267,2.465904714,79.31197208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.38001086,1.649271951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786539571,76.23768434,72.16655043,77.88695629,177.0347589,0,0.237655072,76.25181799,-0.237655072,103.748182,0.839611054,0,220.806891,77.88695629,271.7823462,3,9,23% +3/8/2018 18:00,53.4709863,134.7741931,575.8207926,820.0486108,87.70344568,452.0277434,362.6280998,89.39964357,85.05886321,4.340780363,142.2590003,0,142.2590003,2.644582479,139.6144178,0.933244765,2.352253416,-0.575348851,0.575348851,0.628544138,0.152310314,2.973958467,95.65272721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.76181468,1.915991003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.154622786,91.94503972,83.91643747,93.86103073,362.6280998,0,0.442203176,63.75546289,-0.442203176,116.2445371,0.936929803,0,423.6735118,93.86103073,485.1036791,3,10,14% +3/8/2018 19:00,46.37247071,152.0262042,686.170162,856.6076694,95.13878535,623.4122602,525.9696198,97.44264047,92.26999995,5.172640521,169.2386854,0,169.2386854,2.868785403,166.3699,0.809352296,2.653357813,-0.145530468,0.145530468,0.555040865,0.138651883,3.190149939,102.6061881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.69343361,2.078425259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311252771,98.62897082,91.00468638,100.7073961,525.9696198,0,0.614014605,52.11964542,-0.614014605,127.8803546,0.968568712,0,600.4424037,100.7073961,666.3533802,3,11,11% +3/8/2018 20:00,42.74994174,172.7668151,737.9904321,870.9236639,98.45098052,746.6982287,645.6526248,101.0456038,95.48232021,5.563283605,181.9029847,0,181.9029847,2.968660308,178.9343244,0.746127238,3.015349761,0.204274784,-0.204274784,0.495220644,0.133404142,3.1296825,100.6613474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78123803,2.150784288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267444317,96.75951597,94.04868235,98.91030026,645.6526248,0,0.741342384,42.15410807,-0.741342384,137.8458919,0.98255478,0,728.4377552,98.91030026,793.1725686,3,12,9% +3/8/2018 21:00,43.50874135,194.6770336,727.4062867,868.1244106,97.78226532,808.27299,707.9557249,100.3172651,94.83376924,5.483495847,179.3165719,0,179.3165719,2.948496078,176.3680758,0.75937079,3.397755214,0.540078318,-0.540078318,0.437794858,0.134425928,2.815061199,90.54204486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.15782618,2.136175371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.039502256,87.03245745,93.19732843,89.16863282,707.9557249,0,0.815500309,35.36313864,-0.815500309,144.6368614,0.988687945,0,793.144619,89.16863282,851.5037058,3,13,7% +3/8/2018 22:00,48.43763503,214.3750308,655.2151786,847.264108,93.11062157,799.6927667,704.4504851,95.24228157,90.30299279,4.939288781,161.6721347,0,161.6721347,2.807628782,158.8645059,0.845396213,3.741550122,0.916743769,-0.916743769,0.373381272,0.142106936,2.284066122,73.46341789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80267151,2.034117495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65479813,70.6158316,88.45746964,72.64994909,704.4504851,0,0.831441434,33.75290588,-0.831441434,146.2470941,0.989863473,0,785.7672736,72.64994909,833.3152123,3,14,6% +3/8/2018 23:00,56.4224369,230.3725364,526.8985348,800.4596882,84.19202775,716.4714179,630.8461067,85.6253112,81.65332748,3.971983718,130.2913502,0,130.2913502,2.538700272,127.75265,0.984757296,4.020759266,1.41887341,-1.41887341,0.287512046,0.159787933,1.594191506,51.27467884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.48828421,1.839279705,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15498632,49.28717163,79.64327053,51.12645133,630.8461067,0,0.78810478,37.99124866,-0.78810478,142.0087513,0.986556659,0,702.0086982,51.12645133,735.4699381,3,15,5% +3/8/2018 0:00,66.31174746,243.172363,352.9523492,704.3294815,69.98091685,555.4714532,484.9400153,70.5314379,67.870734,2.660703896,87.68756625,0,87.68756625,2.110182845,85.5773834,1.157358326,4.244158385,2.263168845,-2.263168845,0.143129023,0.198272988,0.832862559,26.78772283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.23993111,1.528820288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.603406089,25.74937811,65.8433372,27.2781984,484.9400153,0,0.688513016,46.48748387,-0.688513016,133.5125161,0.977379732,0,539.8138791,27.2781984,557.6669144,3,16,3% +3/8/2018 1:00,77.28388017,253.8495659,152.3116421,483.1990252,45.94955545,306.5064527,260.7942564,45.71219631,44.56400682,1.148189495,38.31526966,0,38.31526966,1.385548633,36.92972102,1.348858168,4.43051073,4.421537579,-4.421537579,0,0.301681177,0.346387158,11.1410017,0.184321863,1,0.222423665,0,0.935822575,0.974584538,0.724496596,1,43.11299654,1.003825268,0.029000527,0.312029739,0.921052392,0.645548988,0.961238037,0.922476074,0.24119987,10.70915461,43.35419641,11.71297987,212.7241733,0,0.539724302,57.33512717,-0.539724302,122.6648728,0.95736011,0,247.0078343,11.71297987,254.6737454,3,17,3% +3/8/2018 2:00,88.5920768,263.3823695,1.803957425,14.00555052,1.459835132,6.411490322,4.982075612,1.42941471,1.415815716,0.013598993,0.481409779,0,0.481409779,0.044019415,0.437390363,1.546223431,4.596889539,39.58228407,-39.58228407,0,0.809240347,0.011004854,0.353953929,0.861855853,1,0.025258455,0,0.958934135,0.997696098,0.724496596,1,1.365255342,0.031891917,0.104523272,0.312029739,0.746668206,0.471164802,0.961238037,0.922476074,0.007798139,0.34023398,1.373053481,0.372125897,0.688244587,0,0.355721512,69.16232931,-0.355721512,110.8376707,0.909440607,0,1.998971055,0.372125897,2.242520012,3,18,12% +3/8/2018 3:00,100.7643708,272.5984045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758670039,4.757739694,-4.856097728,4.856097728,0.63940469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.134697094,82.25889534,-0.134697094,97.74110466,0.678796742,0,0,0,0,3,19,0% +3/8/2018 4:00,112.488441,282.310227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963293665,4.927242973,-2.041577143,2.041577143,0.879283943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092347068,95.29864668,0.092347068,84.70135332,0,0.508564296,0,0,0,3,20,0% +3/8/2018 5:00,123.7428528,293.5140554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159720207,5.122786668,-1.085639853,1.085639853,0.715809039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.315717122,108.4041112,0.315717122,71.59588876,0,0.891630382,0,0,0,3,21,0% +3/8/2018 6:00,133.9376567,307.6315145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337653101,5.369182811,-0.555592442,0.555592442,0.625165593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520176635,121.3441005,0.520176635,58.65589945,0,0.953878804,0,0,0,3,22,0% +3/8/2018 7:00,142.0246329,326.5478068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478797462,5.699334394,-0.181592551,0.181592551,0.561207845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691778096,133.7710259,0.691778096,46.22897411,0,0.977722487,0,0,0,3,23,0% +3/9/2018 8:00,146.3273148,351.1848185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553893429,6.129331366,0.129231297,-0.129231297,0.508053836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818813437,144.96619,0.818813437,35.03380997,0,0.988936029,0,0,0,3,0,0% +3/9/2018 9:00,145.3555347,17.93515954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536932667,0.313027586,0.424805467,-0.424805467,0.457507676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892611918,153.2033169,0.892611918,26.79668314,0,0.993984615,0,0,0,3,1,0% +3/9/2018 10:00,139.4942597,40.65463467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434634119,0.709557231,0.744637397,-0.744637397,0.402813195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9081311,155.2483477,0.9081311,24.75165228,0,0.99494187,0,0,0,3,2,0% +3/9/2018 11:00,130.4956894,57.65070969,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27757944,1.0061947,1.143932648,-1.143932648,0.334529686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86430065,149.8029443,0.86430065,30.19705566,0,0.99214976,0,0,0,3,3,0% +3/9/2018 12:00,119.827729,70.53061918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091388407,1.230991528,1.744065793,-1.744065793,0.231900873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764095593,139.8265989,0.764095593,40.17340109,0,0.984563161,0,0,0,3,4,0% +3/9/2018 13:00,108.3425312,81.05798389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890933889,1.414728704,2.960208173,-2.960208173,0.023928278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614333953,127.90354,0.614333953,52.09645995,0,0.968611042,0,0,0,3,5,0% +3/9/2018 14:00,96.5310375,90.47649371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684784435,1.579112711,8.182913511,-8.182913511,0,#DIV/0!,0,0,0.465013755,1,0.121602904,0,0.94875477,0.987516733,0.724496596,1,0,0,0.065170619,0.312029739,0.831869165,0.556365761,0.961238037,0.922476074,0,0,0,0,0,0,-0.425212508,115.1641152,0.425212508,64.83588477,0,0.932411738,0,0,0,3,6,0% +3/9/2018 15:00,84.57919509,99.69048732,35.05191886,180.7657075,17.97501686,17.69723995,0,17.69723995,17.43300378,0.26423617,46.46219212,37.4214355,9.040756625,0.542013079,8.498743546,1.476185433,1.739927237,-9.154550418,9.154550418,0,0.512811208,0.13550327,4.358250944,1,0.087319779,0,0.1088039,0.961238037,1,0.462645934,0.738149338,16.75726633,0.387047443,0.115824807,0.01557015,0.724496596,0.448993192,0.998597976,0.959836013,0.098171658,4.19795752,16.85543798,4.585004962,0,34.15380402,-0.207016231,101.9475528,0.207016231,78.05244717,0,0.808473045,16.85543798,32.19743489,37.92801517,3,7,125% +3/9/2018 16:00,73.21379173,109.4979184,226.3371318,588.2592027,56.44707925,67.45830358,11.00708713,56.45121645,54.74499155,1.706224905,56.58014575,0,56.58014575,1.702087707,54.87805805,1.277821724,1.9110992,-2.55804567,2.55804567,0.967605263,0.249393808,1.664736869,53.54366019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.6229682,1.23315675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.206096194,51.46820281,53.8290644,52.70135956,11.00708713,0,0.018711288,88.92785962,-0.018711288,91.07214038,0,0,53.8290644,52.70135956,88.3210502,3,8,64% +3/9/2018 17:00,62.50314183,120.7721576,421.5387265,748.560113,75.92854252,257.9638906,181.1471368,76.8167538,73.63901682,3.177736979,104.4964703,0,104.4964703,2.289525704,102.2069446,1.090885618,2.107871795,-1.215002914,1.215002914,0.737931425,0.180122342,2.494955162,80.24633435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.78462396,1.658753578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.807586521,77.1358289,72.59221049,78.79458247,181.1471368,0,0.241994108,75.99573583,-0.241994108,104.0042642,0.843383399,0,225.3686985,78.79458247,276.9381769,3,9,23% +3/9/2018 18:00,53.11304569,134.5639113,581.7042116,822.4315537,88.04943429,457.0333686,367.2538175,89.77955104,85.39441898,4.38513206,143.6959362,0,143.6959362,2.655015312,141.0409208,0.926997523,2.348583306,-0.57231701,0.57231701,0.628025662,0.151364615,3.000874857,96.51845086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.08436366,1.923549555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.174123619,92.77720622,84.25848728,94.70075578,367.2538175,0,0.446546361,63.47768298,-0.446546361,116.522317,0.938029543,0,428.753418,94.70075578,490.7331686,3,10,14% +3/9/2018 19:00,45.98651371,151.904917,691.909411,858.4411153,95.44077147,628.542167,530.7633816,97.77878548,92.56288008,5.215905404,170.6393388,0,170.6393388,2.877891399,167.7614474,0.802616076,2.651240952,-0.145750845,0.145750845,0.555078552,0.137938247,3.215346121,103.4165839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97496113,2.085022522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.32950732,99.40795413,91.30446845,101.4929767,530.7633816,0,0.618287466,51.80881629,-0.618287466,128.1911837,0.969131468,0,605.6839633,101.4929767,672.1090867,3,11,11% +3/9/2018 20:00,42.35480595,172.8013559,743.5096704,872.5223084,98.72703562,751.7997381,650.4447969,101.3549412,95.75005123,5.604889956,183.249512,0,183.249512,2.976984388,180.2725277,0.739230818,3.015952613,0.202002384,-0.202002384,0.495609247,0.13278514,3.153226142,101.4185919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.03859128,2.156815055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284501606,97.48740813,94.32309288,99.64422319,650.4447969,0,0.745476409,41.79996485,-0.745476409,138.2000351,0.982928796,0,733.6640142,99.64422319,798.8791654,3,12,9% +3/9/2018 21:00,43.13856398,194.881556,732.6537957,869.6840655,98.04340133,813.2612935,712.6512086,100.6100848,95.08703103,5.523053787,180.5967654,0,180.5967654,2.956370292,177.6403951,0.752909976,3.401324803,0.535879988,-0.535879988,0.438512814,0.13381955,2.836920869,91.24512699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.40127104,2.141880212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055339512,87.70828674,93.45661055,89.85016695,712.6512086,0,0.819436893,34.97153574,-0.819436893,145.0284643,0.988982489,0,798.2561764,89.85016695,857.0613136,3,13,7% +3/9/2018 22:00,48.11648342,214.685274,660.1584586,848.973095,93.36840197,804.5372506,709.0076971,95.52955347,90.55300016,4.976553313,162.8784632,0,162.8784632,2.815401812,160.0630613,0.83979106,3.746964887,0.909961169,-0.909961169,0.374541165,0.141433319,2.30415356,74.10949895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.0429881,2.039749029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66935141,71.23686929,88.71233951,73.27661832,709.0076971,0,0.83513565,33.37003441,-0.83513565,146.6299656,0.990129487,0,790.7217668,73.27661832,838.6798479,3,14,6% +3/9/2018 23:00,56.15155485,230.7197067,531.5179088,802.6091698,84.46617695,721.2138036,635.287787,85.92601658,81.91921007,4.00680651,131.4196376,0,131.4196376,2.546966882,128.8726707,0.980029512,4.026818531,1.407427024,-1.407427024,0.289469493,0.158915016,1.612272668,51.85623114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.74386067,1.845268836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.168086059,49.84618182,79.91194673,51.69145066,635.287787,0,0.791528194,37.67144616,-0.791528194,142.3285538,0.986831056,0,706.8336646,51.69145066,740.6646852,3,15,5% +3/9/2018 0:00,66.08025921,243.5234172,357.2165427,707.5905904,70.31929499,560.300155,489.4083971,70.89175798,68.19890879,2.692849188,88.73167267,0,88.73167267,2.120386194,86.61128648,1.153318094,4.250285436,2.240142491,-2.240142491,0.147066762,0.196853411,0.848165576,27.27992046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.55538521,1.53621258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614493072,26.22249719,66.16987828,27.75870977,489.4083971,0,0.691654756,46.23875971,-0.691654756,133.7612403,0.977709599,0,544.6691657,27.75870977,562.836686,3,16,3% +3/9/2018 1:00,77.07919462,254.1967715,156.0166243,489.7019039,46.51729087,311.9958591,265.7051169,46.29074214,45.11462292,1.176119215,39.2307048,0,39.2307048,1.40266795,37.82803685,1.345285731,4.436570611,4.347267051,-4.347267051,0,0.298155989,0.350666988,11.27865573,0.175783029,1,0.226096479,0,0.935309029,0.974070992,0.724496596,1,43.63744823,1.016228155,0.027760203,0.312029739,0.924293881,0.648790477,0.961238037,0.922476074,0.244491791,10.84147289,43.88194002,11.85770105,218.9986668,0,0.542585428,57.14018585,-0.542585428,122.8598142,0.957848612,0,253.6495091,11.85770105,261.4101373,3,17,3% +3/9/2018 2:00,88.41775692,263.7291889,2.342160178,17.60951479,1.855929046,8.123026295,6.305404165,1.81762213,1.799965937,0.017656193,0.62384696,0,0.62384696,0.055963108,0.567883852,1.543180975,4.60294268,35.16817053,-35.16817053,0,0.792400564,0.013990777,0.449991484,0.845773207,1,0.028427143,0,0.958634273,0.997396236,0.724496596,1,1.736269473,0.040545082,0.103137424,0.312029739,0.749457771,0.473954367,0.961238037,0.922476074,0.009891028,0.432548931,1.746160502,0.473094013,0.972462265,0,0.358068024,69.01840593,-0.358068024,110.9815941,0.910361728,0,2.63145293,0.473094013,2.941083499,3,18,12% +3/9/2018 3:00,100.5747667,272.9526016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755360824,4.763921601,-4.932412566,4.932412566,0.626354084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137141834,82.11750991,-0.137141834,97.88249009,0.685413948,0,0,0,0,3,19,0% +3/9/2018 4:00,112.2889689,282.6807201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959812221,4.933709297,-2.053384414,2.053384414,0.881303105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090038247,95.16580741,0.090038247,84.83419259,0,0.494680436,0,0,0,3,20,0% +3/9/2018 5:00,123.5190457,293.9070797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155814037,5.129646236,-1.08771876,1.08771876,0.716164553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313475899,108.2688297,0.313475899,71.7311703,0,0.890498105,0,0,0,3,21,0% +3/9/2018 6:00,133.6717185,308.0390092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333011604,5.376294935,-0.554472195,0.554472195,0.624974019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51792998,121.1935008,0.51792998,58.80649919,0,0.953461854,0,0,0,3,22,0% +3/9/2018 7:00,141.6994829,326.9153745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473122524,5.70574966,-0.178795325,0.178795325,0.560729491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689453317,133.5868497,0.689453317,46.41315025,0,0.977478774,0,0,0,3,23,0% +3/10/2018 8:00,145.9462272,351.3818809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547242196,6.132770753,0.133382104,-0.133382104,0.507344006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816343197,144.7203915,0.816343197,35.27960849,0,0.988751251,0,0,0,3,0,0% +3/10/2018 9:00,144.9603462,17.87584893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530035327,0.31199242,0.430527738,-0.430527738,0.45652911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889938889,152.8655687,0.889938889,27.1344313,0,0.993816367,0,0,0,3,1,0% +3/10/2018 10:00,139.1258876,40.42888387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428204813,0.705617136,0.752708167,-0.752708167,0.401433012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905211921,154.8518404,0.905211921,25.14815956,0,0.994764316,0,0,0,3,2,0% +3/10/2018 11:00,130.1618247,57.36957573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271752401,1.001287987,1.15626611,-1.15626611,0.332420539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861108929,149.4413223,0.861108929,30.55867769,0,0.991935337,0,0,0,3,3,0% +3/10/2018 12:00,119.519452,70.24310911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086007957,1.225973531,1.766078844,-1.766078844,0.22813642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760623731,139.5192155,0.760623731,40.48078448,0,0.984264475,0,0,0,3,4,0% +3/10/2018 13:00,108.048597,80.77734345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88580377,1.409830604,3.014694259,-3.014694259,0.014610608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610593676,127.632442,0.610593676,52.367558,0,0.968112483,0,0,0,3,5,0% +3/10/2018 14:00,96.24134506,90.20351724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679728348,1.574348373,8.581102677,-8.581102677,0,#DIV/0!,0,0,0.483818029,1,0.116011864,0,0.949404743,0.988166706,0.724496596,1,0,0,0.067311502,0.312029739,0.826915751,0.551412347,0.961238037,0.922476074,0,0,0,0,0,0,-0.421234062,114.9125235,0.421234062,65.08747645,0,0.931301147,0,0,0,3,6,0% +3/10/2018 15:00,84.29102546,99.42321205,38.81093472,195.7688372,19.33671035,19.04621041,0,19.04621041,18.75363719,0.29257322,49.72462189,39.73138827,9.993233623,0.583073162,9.410160461,1.471155924,1.735262403,-8.712634523,8.712634523,0,0.498228411,0.14576829,4.688409297,1,0.019705818,0,0.114275793,0.961238037,1,0.451971217,0.727474621,18.02670939,0.421005411,0.115824807,0.003401373,0.724496596,0.448993192,0.999698722,0.960936759,0.10560863,4.508846013,18.13231803,4.929851425,0,38.94844875,-0.202950525,101.709551,0.202950525,78.29044903,0,0.803634537,18.13231803,36.23017001,41.84423969,3,7,131% +3/10/2018 16:00,72.90663981,109.2363722,232.0339282,595.1328275,57.10679833,70.8196087,13.68562128,57.13398742,55.38481766,1.749169763,57.98129297,0,57.98129297,1.721980671,56.25931229,1.272460911,1.906534357,-2.518730285,2.518730285,0.960881936,0.246114001,1.697585766,54.60019363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.2379934,1.247569135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.229895108,52.48378294,54.46788851,53.73135207,13.68562128,0,0.022995911,88.68231523,-0.022995911,91.31768477,0,0,54.46788851,53.73135207,89.63398381,3,8,65% +3/10/2018 17:00,62.17320257,120.5236304,427.456916,752.1382974,76.35852493,262.5680924,185.2897079,77.27838446,74.05603367,3.222350791,105.9443695,0,105.9443695,2.30249126,103.6418782,1.085127091,2.103534177,-1.204460199,1.204460199,0.736128515,0.178634436,2.523954749,81.17906076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18547642,1.66814708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828596624,78.032401,73.01407305,79.70054808,185.2897079,0,0.246350583,75.73833697,-0.246350583,104.261663,0.847037217,0,229.9613515,79.70054808,282.1237662,3,9,23% +3/10/2018 18:00,52.75390579,134.3524703,587.581724,824.7792347,88.39256749,462.0452881,371.8886434,90.15664468,85.72720545,4.429439231,145.1313538,0,145.1313538,2.665362044,142.4659918,0.920729349,2.344892965,-0.569285771,0.569285771,0.62750729,0.150434508,3.027712391,97.38163819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40425067,1.931045727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193567321,93.60693471,84.59781799,95.53798044,371.8886434,0,0.45089477,63.19889403,-0.45089477,116.801106,0.939109381,0,433.8419318,95.53798044,496.3696292,3,10,14% +3/10/2018 19:00,45.59929874,151.7834067,697.6313983,860.2478063,95.74002193,633.6625894,535.5504422,98.11214718,92.85310702,5.259040161,172.0357243,0,172.0357243,2.886914904,169.1488094,0.7958579,2.649120196,-0.145937007,0.145937007,0.555110388,0.137235827,3.240437435,104.2236069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.25393831,2.091560021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.347685891,100.1836952,91.6016242,102.2752553,535.5504422,0,0.622553685,51.49714113,-0.622553685,128.5028589,0.969685641,0,610.9171982,102.2752553,677.8543073,3,11,11% +3/10/2018 20:00,41.95862779,172.8384013,749.0029974,874.0970019,99.00016831,756.8782943,655.2170453,101.6612489,96.01494796,5.646300975,184.5896687,0,184.5896687,2.985220346,181.6044484,0.732316205,3.016599177,0.199781261,-0.199781261,0.495989082,0.132175931,3.176649548,102.1719691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.29322009,2.162781979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301471784,98.21158303,94.59469187,100.374365,655.2170453,0,0.749593059,41.44486033,-0.749593059,138.5551397,0.983297141,0,738.8677394,100.374365,804.5607538,3,12,9% +3/10/2018 21:00,42.76815433,195.091234,737.8698233,871.2192561,98.30132679,818.215512,717.3159585,100.8995535,95.3371791,5.562374406,181.8692291,0,181.8692291,2.964147696,178.9050814,0.746445108,3.404984374,0.531751572,-0.531751572,0.439218815,0.133223129,2.85865906,91.94430195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.64172288,2.147514916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.071088758,88.38036031,93.71281163,90.52787522,717.3159585,0,0.823347227,34.57871853,-0.823347227,145.4212815,0.98927228,0,803.3336053,90.52787522,862.5822891,3,13,7% +3/10/2018 22:00,47.79600607,215.0009021,665.0681495,850.6537314,93.62259786,809.3390674,713.5259717,95.81309574,90.7995311,5.013564637,164.0765395,0,164.0765395,2.823066756,161.2534727,0.834197675,3.752473636,0.903282254,-0.903282254,0.375683327,0.140771435,2.324134552,74.75215636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.27996302,2.045302255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.683827572,71.85461603,88.9637906,73.89991829,713.5259717,0,0.838797204,32.98667553,-0.838797204,147.0133245,0.990390836,0,795.6333743,73.89991829,843.9993928,3,14,6% +3/10/2018 23:00,55.88180436,231.0710935,536.1054204,804.72055,84.73610545,725.9071854,639.6847971,86.22238834,82.18099923,4.041389111,132.5400722,0,132.5400722,2.555106222,129.984966,0.975321478,4.032951387,1.396165408,-1.396165408,0.291395343,0.158058662,1.630282009,52.43547346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.99550237,1.85116576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181133766,50.40297157,80.17663613,52.25413733,639.6847971,0,0.794915449,37.35272971,-0.794915449,142.6472703,0.987100229,0,711.6096456,52.25413733,745.8089334,3,15,5% +3/10/2018 0:00,65.84992868,243.8775123,361.4553683,710.7886185,70.65181485,565.0737218,493.8275165,71.2462052,68.52140196,2.724803245,89.76945172,0,89.76945172,2.130412895,87.63903882,1.149298068,4.256465562,2.217575616,-2.217575616,0.150925925,0.195464838,0.863463039,27.77193946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.8653779,1.54347689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625576032,26.69544457,66.49095393,28.23892146,493.8275165,0,0.694760022,45.99190281,-0.694760022,134.0080972,0.978032704,0,549.4704154,28.23892146,567.9522247,3,16,3% +3/10/2018 1:00,76.87542248,254.5461763,159.7149634,496.0682737,47.07319592,317.4199957,270.5622314,46.85776424,45.65376538,1.203998858,40.14417253,0,40.14417253,1.419430539,38.724742,1.341729236,4.442668875,4.275415246,-4.275415246,0,0.294732534,0.354857635,11.41344135,0.167350395,1,0.229764921,0,0.934793182,0.973555146,0.724496596,1,44.15031,1.028372593,0.026526165,0.312029739,0.92753095,0.652027546,0.961238037,0.922476074,0.247737878,10.97103395,44.39804788,11.99940655,225.283535,0,0.545413294,56.94708875,-0.545413294,123.0529112,0.9583264,0,260.293207,11.99940655,268.1465786,3,17,3% +3/10/2018 2:00,88.24265005,264.0776216,2.971100867,21.74147892,2.304360716,10.09310988,7.835836733,2.257273152,2.234875738,0.022397413,0.789862781,0,0.789862781,0.069484978,0.720377803,1.540124784,4.609023978,31.61441587,-31.61441587,0,0.775591546,0.017371244,0.558718935,0.829822858,1,0.031620597,0,0.958329632,0.997091596,0.724496596,1,2.156489779,0.05034163,0.101747695,0.312029739,0.752270659,0.476767255,0.961238037,0.922476074,0.012253437,0.537061892,2.168743217,0.587403522,1.333480302,0,0.360409555,68.8746497,-0.360409555,111.1253503,0.911268939,0,3.383902396,0.587403522,3.768346253,3,18,11% +3/10/2018 3:00,100.3853287,273.307941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752054506,4.770123442,-5.011148651,5.011148651,0.61288942,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139566745,81.97722359,-0.139566745,98.02277641,0.691748469,0,0,0,0,3,19,0% +3/10/2018 4:00,112.0891713,283.0518438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956325094,4.940186629,-2.065301739,2.065301739,0.883341088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087738968,95.03354486,0.087738968,84.96645514,0,0.480127787,0,0,0,3,20,0% +3/10/2018 5:00,123.294399,294.299976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151893212,5.13650357,-1.089770644,1.089770644,0.716515446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311232652,108.1335315,0.311232652,71.86646845,0,0.889348476,0,0,0,3,21,0% +3/10/2018 6:00,133.4045205,308.445138,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32834812,5.38338322,-0.553302378,0.553302378,0.624773969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515669257,121.0421996,0.515669257,58.95780042,0,0.953038625,0,0,0,3,22,0% +3/10/2018 7:00,141.3730101,327.2802826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467424499,5.712118509,-0.175938786,0.175938786,0.560240994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687102777,133.4012039,0.687102777,46.5987961,0,0.977230683,0,0,0,3,23,0% +3/11/2018 8:00,145.5641348,351.5776982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540573425,6.13618841,0.137604449,-0.137604449,0.506621943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813836663,144.4724957,0.813836663,35.52750433,0,0.988562611,0,0,0,3,0,0% +3/11/2018 9:00,144.5639645,17.8196359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523117161,0.311011318,0.436343469,-0.436343469,0.455534562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887220918,152.5260796,0.887220918,27.47392038,0,0.99364425,0,0,0,3,1,0% +3/11/2018 10:00,138.755648,40.2075914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421742913,0.701754854,0.76091629,-0.76091629,0.40002934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902241637,154.4543029,0.902241637,25.54569708,0,0.994582473,0,0,0,3,2,0% +3/11/2018 11:00,129.8257438,57.09179295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265886684,0.996439763,1.168838033,-1.168838033,0.330270614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857862848,149.0774639,0.857862848,30.92253614,0,0.991715625,0,0,0,3,3,0% +3/11/2018 12:00,119.2089813,69.9576737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080589222,1.220991743,1.788630408,-1.788630408,0.224279875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757097391,139.2089742,0.757097391,40.79102585,0,0.983958298,0,0,0,3,4,0% +3/11/2018 13:00,107.7526723,80.49784555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880638909,1.404952446,3.071215522,-3.071215522,0.004944903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606801948,127.3586205,0.606801948,52.64137952,0,0.967600792,0,0,0,3,5,0% +3/11/2018 14:00,95.94992744,89.9310124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674642151,1.569592266,9.020314329,-9.020314329,0,#DIV/0!,0,0,0.503083592,1,0.110410037,0,0.950048747,0.98881071,0.724496596,1,0,0,0.069472545,0.312029739,0.821952715,0.546449311,0.961238037,0.922476074,0,0,0,0,0,0,-0.417210132,114.6585763,0.417210132,65.34142369,0,0.930156314,0,0,0,3,6,0% +3/11/2018 15:00,84.00095996,99.15586623,42.72093092,210.7949108,20.69037524,20.38853251,0,20.38853251,20.06648408,0.322048423,52.89668267,41.91460721,10.98207546,0.623891153,10.35818431,1.466093326,1.730596338,-8.310211048,8.310211048,0.048716524,0.484314709,0.164063416,5.276843414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.28866777,0.452007016,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118863386,5.072302604,19.40753115,5.524309621,0,41.91460721,-0.198840698,101.4691744,0.198840698,78.5308256,0,0.798542424,19.40753115,38.99490165,44.92891438,3,7,132% +3/11/2018 16:00,72.5982362,108.9742533,237.7582039,601.8702627,57.75676358,74.24309954,16.43559371,57.80750583,56.01518406,1.792321771,59.38880874,0,59.38880874,1.741579522,57.64722922,1.267078253,1.90195952,-2.480510327,2.480510327,0.954345938,0.242922274,1.730372547,55.65472923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.84392556,1.261768435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.25364902,53.49744266,55.09757458,54.7592111,16.43559371,0,0.027307536,88.43519893,-0.027307536,91.56480107,0,0,55.09757458,54.7592111,90.93638306,3,8,65% +3/11/2018 17:00,61.8421822,120.2740668,433.3804507,755.6574352,76.78434292,267.1959951,189.4599785,77.73601657,74.46901168,3.267004898,107.393439,0,107.393439,2.315331243,105.0781078,1.079349696,2.09917847,-1.194056317,1.194056317,0.734349346,0.177175373,2.552890225,82.10972513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58244659,1.677449604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849560277,78.92699099,73.43200687,80.60444059,189.4599785,0,0.250722046,75.47975673,-0.250722046,104.5202433,0.850575974,0,234.5821126,80.60444059,287.3361068,3,9,22% +3/11/2018 18:00,52.39370555,134.1398148,593.450538,827.0914342,88.73271232,467.060837,376.5300625,90.53077449,86.05709366,4.47368083,146.5645723,0,146.5645723,2.675618665,143.8889537,0.914442669,2.341181426,-0.566258137,0.566258137,0.626989534,0.14951998,3.054459501,98.24191719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72135176,1.938476615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.212945511,94.43386761,84.93429728,96.37234423,376.5300625,0,0.455245995,62.91923694,-0.455245995,117.0807631,0.94016927,0,438.9362912,96.37234423,502.010063,3,10,14% +3/11/2018 19:00,45.21095468,151.6615964,703.3336027,862.0276104,96.0364179,638.7709724,540.3283811,98.44259135,93.14056556,5.302025787,173.4272272,0,173.4272272,2.895852336,170.5313749,0.789080017,2.646994206,-0.146091249,0.146091249,0.555136765,0.136544618,3.265414001,105.0269391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.53025439,2.09803516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365781328,100.9558887,91.89603572,103.0539239,540.3283811,0,0.626810991,51.18476681,-0.626810991,128.8152332,0.970231137,0,616.1394553,103.0539239,683.5861874,3,11,11% +3/11/2018 20:00,41.56152334,172.8779055,754.4682239,875.6477017,99.27027957,761.9315762,659.9671617,101.9644145,96.27691437,5.68750016,185.922921,0,185.922921,2.993365197,182.9295558,0.725385424,3.017288655,0.197609494,-0.197609494,0.496360476,0.131576488,3.199944542,102.9212162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54503217,2.168682896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318348928,98.93178783,94.8633811,101.1004707,659.9671617,0,0.75369028,41.08893943,-0.75369028,138.9110606,0.983659752,0,744.0465157,101.1004707,810.2147518,3,12,9% +3/11/2018 21:00,42.39762167,195.3060439,743.0525522,872.7300394,98.55596638,823.1336577,721.9480733,101.1855844,95.58414036,5.601444005,183.1335201,0,183.1335201,2.971826019,180.161694,0.739978093,3.408733516,0.527691139,-0.527691139,0.43991319,0.132636603,2.88026924,92.63935963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87911143,2.153077834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08674526,89.04847619,93.96585669,91.20155402,721.9480733,0,0.827229545,34.18481176,-0.827229545,145.8151882,0.989557285,0,808.3748317,91.20155402,868.0644248,3,13,7% +3/11/2018 22:00,47.4762961,215.3218444,669.9428181,852.3062182,93.87316219,814.0966374,718.0037855,96.09285194,91.04253999,5.050311948,165.2660148,0,165.2660148,2.830622195,162.4353926,0.828617684,3.758075136,0.896704505,-0.896704505,0.376808188,0.140121156,2.344004037,75.3912273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.51355241,2.050776145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.698222946,72.46891533,89.21177536,74.51969147,718.0037855,0,0.842424671,32.60294841,-0.842424671,147.3970516,0.990647512,0,800.5004392,74.51969147,849.2720869,3,14,6% +3/11/2018 23:00,55.61325083,231.4265835,540.6599974,806.7943056,85.00180453,730.5504531,644.0360432,86.51440994,82.4386865,4.075723436,133.6523939,0,133.6523939,2.56311803,131.0892759,0.970634335,4.039155858,1.385083888,-1.385083888,0.293290395,0.157218594,1.648215568,53.01227838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24320118,1.856970288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194126568,50.9574184,80.43732774,52.81438868,644.0360432,0,0.79826548,37.03521439,-0.79826548,142.9647856,0.987364196,0,716.3354578,52.81438868,750.9014189,3,15,5% +3/11/2018 0:00,65.62079509,244.2345215,365.6680242,713.924744,70.97854015,569.7915932,498.1967578,71.59483531,68.83827528,2.756560026,90.8007109,0,90.8007109,2.140264869,88.66044603,1.145298932,4.262696547,2.195453874,-2.195453874,0.154708965,0.194106499,0.878751226,28.2636601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.16996859,1.550614612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.636652272,27.16810515,66.80662087,28.71871976,498.1967578,0,0.697828114,45.746988,-0.697828114,134.253012,0.978349118,0,554.2169794,28.71871976,573.0128071,3,16,3% +3/11/2018 1:00,76.67258502,254.8976526,163.4056201,502.300952,47.61753582,322.7786709,275.3651588,47.41351201,46.18169142,1.231820587,41.05542884,0,41.05542884,1.435844395,39.61958444,1.338189055,4.448803294,4.205862106,-4.205862106,0,0.291406965,0.358961099,11.54542286,0.159021535,1,0.233429105,0,0.934275036,0.973036999,0.724496596,1,44.65183109,1.040264376,0.025298302,0.312029739,0.930763708,0.655260304,0.961238037,0.922476074,0.250939394,11.0978996,44.90277048,12.13816398,231.5761686,0,0.548207519,56.75587199,-0.548207519,123.244128,0.958793663,0,266.9365333,12.13816398,274.8807189,3,17,3% +3/11/2018 2:00,88.06688716,264.4275406,3.6939685,26.40143138,2.803374742,12.32364929,9.576959946,2.746689345,2.71884265,0.027846695,0.980177522,0,0.980177522,0.084532092,0.89564543,1.537057143,4.615131216,28.69352177,-28.69352177,0,0.758905968,0.021133023,0.679710663,0.814013265,1,0.034836973,0,0.958020339,0.996782302,0.724496596,1,2.624307266,0.061243213,0.100354965,0.312029739,0.755105195,0.479601791,0.961238037,0.922476074,0.0148748,0.653363743,2.639182066,0.714606956,1.781187516,0,0.362743967,68.73119165,-0.362743967,111.2688083,0.912161732,0,4.263913156,0.714606956,4.731609117,3,18,11% +3/11/2018 3:00,100.1960584,273.6642922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748751117,4.776342943,-5.092440017,5.092440017,0.598987778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141971988,81.8380272,-0.141971988,98.1619728,0.69781785,0,0,0,0,3,19,0% +3/11/2018 4:00,111.889051,283.423459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952832337,4.946672537,-2.077335439,2.077335439,0.885398972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085448926,94.90184038,0.085448926,85.09815962,0,0,0,0,0,3,20,0% +3/11/2018 5:00,123.0689255,294.6925914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147957958,5.143356002,-1.091797593,1.091797593,0.716862074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.308987027,107.9981946,0.308987027,72.00180536,0,0.888180908,0,0,0,3,21,0% +3/11/2018 6:00,133.1360974,308.8497413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323663252,5.39044488,-0.552084392,0.552084392,0.624565681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513394157,120.8901785,0.513394157,59.10982151,0,0.952608942,0,0,0,3,22,0% +3/11/2018 7:00,141.0452806,327.6423975,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46170454,5.718438605,-0.173024086,0.173024086,0.559742551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684726306,133.2140865,0.684726306,46.78591351,0,0.976978123,0,0,0,3,23,0% +3/12/2018 8:00,145.1811316,351.7721445,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533888758,6.139582137,0.141897349,-0.141897349,0.505887814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811293886,144.2225409,0.811293886,35.7774591,0,0.988370052,0,0,0,3,0,0% +3/12/2018 9:00,144.1665162,17.76633612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516180379,0.310081061,0.442251919,-0.442251919,0.454524157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884458346,152.1849388,0.884458346,27.81506124,0,0.993468225,0,0,0,3,1,0% +3/12/2018 10:00,138.3836927,39.99063676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415251069,0.697968281,0.769261626,-0.769261626,0.398602204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899220926,154.0558497,0.899220926,25.94415033,0,0.994396312,0,0,0,3,2,0% +3/12/2018 11:00,129.4876,56.8173275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25998496,0.991649437,1.18165032,-1.18165032,0.328079584,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854563449,148.7115399,0.854563449,31.28846008,0,0.991490594,0,0,0,3,3,0% +3/12/2018 12:00,118.8964632,69.67432008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075134752,1.216046289,1.811731927,-1.811731927,0.220329283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753517975,138.8960416,0.753517975,41.10395836,0,0.983644582,0,0,0,3,4,0% +3/12/2018 13:00,107.4548973,80.21951037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875441755,1.40009458,3.129867137,-3.129867137,0,#DIV/0!,0,0,0.005059386,1,0.309251483,0,0.922914997,0.96167696,0.724496596,1,0,0,0.000863154,0.312029739,0.997555308,0.722051904,0.961238037,0.922476074,0,0,0,0,0,0,-0.602960507,127.0822239,0.602960507,52.91777608,0,0.967075829,0,0,0,3,5,0% +3/12/2018 14:00,95.65692218,89.65900003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669528244,1.564844755,9.507053289,-9.507053289,0,#DIV/0!,0,0,0.522820666,1,0.104799699,0,0.950686462,0.989448425,0.724496596,1,0,0,0.071653248,0.312029739,0.816982251,0.541478847,0.961238037,0.922476074,0,0,0,0,0,0,-0.413142743,114.4024105,0.413142743,65.59758951,0,0.928976453,0,0,0,3,6,0% +3/12/2018 15:00,83.70917495,98.88846455,46.77238697,225.7856823,22.03188841,21.7201357,0,21.7201357,21.36754569,0.35259001,55.96298018,43.95813072,12.00484946,0.664342725,11.34050673,1.461000717,1.725929299,-7.942400058,7.942400058,0.111615907,0.471044773,0.186902531,6.011427871,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.53929767,0.481314043,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135410247,5.778413125,20.67470792,6.259727168,0,43.95813072,-0.194689629,101.2265932,0.194689629,78.77340684,0,0.793180979,20.67470792,41.12648031,47.59116675,3,7,130% +3/12/2018 16:00,72.28872051,108.7115635,243.5065921,608.4717738,58.39694396,77.72605584,19.25433965,58.47171618,56.63606064,1.835655549,60.80187579,0,60.80187579,1.760883322,59.04099247,1.261676185,1.897374718,-2.443355384,2.443355384,0.947992069,0.239816686,1.763081876,56.70677368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44073574,1.275753973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.277346817,54.50870781,55.71808256,55.78446178,19.25433965,0,0.031643768,88.18664293,-0.031643768,91.81335707,0,0,55.71808256,55.78446178,92.22789711,3,8,66% +3/12/2018 17:00,61.51022127,120.0234456,439.3063605,759.1173737,77.20587308,271.8449592,193.6554512,78.18950805,74.87783115,3.311676909,108.8429552,0,108.8429552,2.328041933,106.5149132,1.073555885,2.094804305,-1.183793636,1.183793636,0.732594324,0.175744947,2.581748614,83.03791012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97541941,1.686658455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870468082,79.81919771,73.8458875,81.50585616,193.6554512,0,0.255106072,75.22012951,-0.255106072,104.7798705,0.854003097,0,239.2282426,81.50585616,292.5721953,3,9,22% +3/12/2018 18:00,52.03258357,133.9258901,599.3079055,829.367982,89.06974089,472.0773795,381.1755838,90.90179571,86.38395957,4.51783614,147.9949216,0,147.9949216,2.68578132,145.3091402,0.908139902,2.337447736,-0.563236948,0.563236948,0.626472881,0.148621001,3.081104861,99.09892354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03554771,1.945839424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.232249983,95.25765472,85.2677977,97.20349415,381.1755838,0,0.45959766,62.63885172,-0.45959766,117.3611483,0.941209194,0,444.0337616,97.20349415,507.6515044,3,10,14% +3/12/2018 19:00,44.82161017,151.5394091,709.0135521,863.7804277,96.32984481,643.8648046,545.0948164,98.76998821,93.42514457,5.344843644,174.8132446,0,174.8132446,2.90470024,171.9085444,0.782284674,2.644861635,-0.146215784,0.146215784,0.555158061,0.135864603,3.290266157,105.8262698,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.80380256,2.104445436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.38378663,101.7242359,92.18758919,103.8286813,545.0948164,0,0.631057152,50.87183959,-0.631057152,129.1281604,0.970767874,0,621.348125,103.8286813,689.3019203,3,11,11% +3/12/2018 20:00,41.16360841,172.9198228,759.9032101,877.1743876,99.53727409,766.9573143,664.6929849,102.2643294,96.53585803,5.728471382,187.2487472,0,187.2487472,3.001416067,184.2473311,0.718440499,3.018020249,0.195485214,-0.195485214,0.496723749,0.130986779,3.223103139,103.6660763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79393866,2.174515724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335127252,99.64777565,95.12906591,101.8222914,664.6929849,0,0.757766066,40.73234697,-0.757766066,139.267653,0.984016576,0,749.1979806,101.8222914,815.8386339,3,12,9% +3/12/2018 21:00,42.02707502,195.5259622,748.2002115,874.2164892,98.80724787,828.0137965,726.5457025,101.468094,95.82784479,5.640249235,184.3892067,0,184.3892067,2.979403083,181.4098036,0.733510834,3.412571813,0.523696801,-0.523696801,0.440596262,0.132059904,2.901745035,93.33009502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.1133694,2.158567392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1023044,89.71243732,94.2156738,91.87100471,726.5457025,0,0.831082131,33.78994003,-0.831082131,146.21006,0.989837474,0,813.3778369,91.87100471,873.5055721,3,13,7% +3/12/2018 22:00,47.15744603,215.6480285,674.7810713,853.9307678,94.12005035,818.8084327,722.4396644,96.36876831,91.28198357,5.086784744,166.4465499,0,166.4465499,2.838066784,163.6084831,0.8230527,3.763768123,0.890225463,-0.890225463,0.377916169,0.139482351,2.363757069,76.0265527,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.74371468,2.056169724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71253395,73.07961427,89.45624863,75.13578399,722.4396644,0,0.84601667,32.21897221,-0.84601667,147.7810278,0.99089951,0,805.3213578,75.13578399,854.4962257,3,14,6% +3/12/2018 23:00,55.34595887,231.786062,545.1805983,808.8309167,85.26326681,735.1425406,648.3404742,86.80206636,82.69226473,4.109801635,134.75635,0,134.75635,2.571002082,132.1853479,0.96596921,4.045429942,1.374177934,-1.374177934,0.295155423,0.156394536,1.666069458,53.58652084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48695021,1.862682257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207061651,51.5094021,80.69401186,53.37208435,648.3404742,0,0.801577265,36.71901485,-0.801577265,143.2809851,0.987622981,0,721.0099639,53.37208435,755.9409257,3,15,5% +3/12/2018 0:00,65.39289705,244.5943172,369.8537307,717.0001269,71.29953346,574.4532394,502.5155363,71.93770311,69.14958946,2.788113649,91.82526304,0,91.82526304,2.149944001,89.67531903,1.141321361,4.268976168,2.173763513,-2.173763513,0.158418236,0.192777651,0.894026461,28.75496419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.46921562,1.55762711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.647719128,27.64036533,67.11693475,29.19799244,502.5155363,0,0.700858364,45.50408867,-0.700858364,134.4959113,0.97865891,0,558.9082415,29.19799244,578.0177436,3,16,3% +3/12/2018 1:00,76.47070327,255.251073,167.0875922,508.4027378,48.15056962,328.0717392,280.1135101,47.95822914,46.69865229,1.259576848,41.96423854,0,41.96423854,1.451917331,40.51232121,1.334665553,4.454971643,4.138495471,-4.138495471,0,0.288175615,0.362979333,11.67466307,0.150794101,1,0.237089137,0,0.933754591,0.972516554,0.724496596,1,45.14225527,1.051909164,0.024076505,0.312029739,0.933992258,0.658488854,0.961238037,0.922476074,0.254097563,11.22213021,45.39635283,12.27403938,237.8740452,0,0.550967745,56.56657031,-0.550967745,123.4334297,0.959250586,0,273.5771701,12.27403938,281.6102834,3,17,3% +3/12/2018 2:00,87.89059127,264.7788192,4.512768053,31.57998856,3.350377797,14.81225436,11.52888366,3.283370697,3.249351545,0.034019152,1.195199114,0,1.195199114,0.101026252,1.094172862,1.533980199,4.621262185,26.25156193,-26.25156193,0,0.742421892,0.025256563,0.812337886,0.798351637,1,0.038074562,0,0.957706508,0.996468471,0.724496596,1,3.137322983,0.073193176,0.098960042,0.312029739,0.757959818,0.482456413,0.961238037,0.922476074,0.017740336,0.780850075,3.155063319,0.854043251,2.324780512,0,0.365069279,68.58815367,-0.365069279,111.4118463,0.913039695,0,5.277680208,0.854043251,5.836634435,3,18,11% +3/12/2018 3:00,100.006959,274.0215257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745450709,4.782577844,-5.176430208,5.176430208,0.58462461,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.144357726,81.69991171,-0.144357726,98.30008829,0.703638212,0,0,0,0,3,19,0% +3/12/2018 4:00,111.6886129,283.7954277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949334032,4.953164616,-2.089491999,2.089491999,0.887477866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08316783,94.77067619,0.08316783,85.22932381,0,0,0,0,0,3,20,0% +3/12/2018 5:00,122.8426405,295.0847759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144008539,5.150200911,-1.093801705,1.093801705,0.717204798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306738694,107.8627985,0.306738694,72.13720147,0,0.886994807,0,0,0,3,21,0% +3/12/2018 6:00,132.8664864,309.2526647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.318957654,5.397477219,-0.550819635,0.550819635,0.624349395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511104407,120.7374218,0.511104407,59.26257821,0,0.95217263,0,0,0,3,22,0% +3/12/2018 7:00,140.7163627,328.0015926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455963841,5.724707743,-0.170052375,0.170052375,0.559234359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682323779,133.0254993,0.682323779,46.97450071,0,0.976721006,0,0,0,3,23,0% +3/13/2018 8:00,144.7973126,351.9651018,0,0,0,0,0,0,0,0,0,0,0,0,0,2.527189852,6.142949879,0.146259825,-0.146259825,0.505141786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808714969,143.9705698,0.808714969,36.02943024,0,0.98817352,0,0,0,3,0,0% +3/13/2018 9:00,143.7681269,17.71577289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509227174,0.309198566,0.448252345,-0.448252345,0.453498024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88165157,151.8422375,0.88165157,28.15776246,0,0.993288254,0,0,0,3,1,0% +3/13/2018 10:00,138.0101723,39.7779009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408731909,0.69425534,0.777744038,-0.777744038,0.397151626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89615052,153.656595,0.89615052,26.34340505,0,0.994205801,0,0,0,3,2,0% +3/13/2018 11:00,129.1475454,56.54614395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254049887,0.986916391,1.194704914,-1.194704914,0.325847117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851211819,148.3437191,0.851211819,31.6562809,0,0.991260214,0,0,0,3,3,0% +3/13/2018 12:00,118.5820433,69.39305383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06964709,1.211137267,1.835395247,-1.835395247,0.216282617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749886924,138.5805839,0.749886924,41.41941611,0,0.983323281,0,0,0,3,4,0% +3/13/2018 13:00,107.1554118,79.94235719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870214748,1.395257345,3.190750617,-3.190750617,0,#DIV/0!,0,0,0.015260316,1,0.30370994,0,0.923785774,0.962547737,0.724496596,1,0,0,0.002591084,0.312029739,0.992678778,0.717175374,0.961238037,0.922476074,0,0,0,0,0,0,-0.599071121,126.8034005,0.599071121,53.19659948,0,0.966537456,0,0,0,3,5,0% +3/13/2018 14:00,95.36246613,89.38750075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664389017,1.560106198,10.04928049,-10.04928049,0,#DIV/0!,0,0,0.54303982,1,0.099183096,0,0.951317586,0.990079549,0.724496596,1,0,0,0.073853109,0.312029739,0.81200654,0.536503136,0.961238037,0.922476074,0,0,0,0,0,0,-0.409033938,114.1441627,0.409033938,65.85583728,0,0.927760754,0,0,0,3,6,0% +3/13/2018 15:00,83.41584196,98.62102207,50.95593264,240.6902032,23.35779601,23.03759962,0,23.03759962,22.65347228,0.384127344,58.91069504,45.8515155,13.05917955,0.704323731,12.35485582,1.45588109,1.721261547,-7.60508301,7.60508301,0.16930052,0.458392081,0.211303298,6.796240424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.77537922,0.510280145,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15308852,6.532804803,21.92846774,7.043084948,0,45.8515155,-0.190500132,100.9819728,0.190500132,79.01802724,0,0.78753299,21.92846774,43.15266606,50.17102462,3,7,129% +3/13/2018 16:00,71.97823163,108.4483054,249.2757559,614.9378613,59.02732169,81.26570655,22.13913045,59.1265761,57.24743016,1.879145943,62.21968458,0,62.21968458,1.779891537,60.43979304,1.256257132,1.892779997,-2.407235529,2.407235529,0.94181521,0.236795277,1.795698884,57.7558488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02840738,1.289525359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.300977729,55.51711871,56.32938511,56.80664407,22.13913045,0,0.036002224,87.93677865,-0.036002224,92.06322135,0,0,56.32938511,56.80664407,93.50819752,3,8,66% +3/13/2018 17:00,61.17745968,119.7717468,445.2317119,762.5180456,77.62299871,276.5123513,197.8736277,78.63872361,75.2823789,3.356344711,110.2922031,0,110.2922031,2.34061981,107.9515833,1.067748099,2.090411332,-1.173674181,1.173674181,0.730863795,0.174342924,2.610517217,83.96320731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36428611,1.695771084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.891310838,80.70862856,74.25559694,82.40439964,197.8736277,0,0.259500256,74.95958885,-0.259500256,105.0404111,0.857321962,0,243.8970037,82.40439964,297.8290352,3,9,22% +3/13/2018 18:00,51.67067804,133.7106423,605.1511236,831.6087555,89.40353026,477.0923103,385.8227416,91.26956874,86.70768396,4.561884786,149.4217424,0,149.4217424,2.695846301,146.7258961,0.901823458,2.333690953,-0.560224887,0.560224887,0.625957788,0.147737527,3.107637387,99.9523008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.34672391,1.953131468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.251472708,96.0779534,85.59819661,98.03108487,385.8227416,0,0.463947426,62.35787748,-0.463947426,117.6421225,0.942229168,0,449.1316375,98.03108487,513.2910219,3,10,14% +3/13/2018 19:00,44.43139362,151.4167674,714.6688239,865.5061884,96.62019222,648.9416194,549.847407,99.0942124,93.70673693,5.387475472,176.1931858,0,176.1931858,2.913455286,173.2797305,0.77547411,2.642721133,-0.146312745,0.146312745,0.555174643,0.135195756,3.314984467,106.6212956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.07447985,2.110788437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401694961,102.4884449,92.47617481,104.5992333,549.847407,0,0.635289977,50.55850513,-0.635289977,129.4414949,0.971295783,0,626.5406427,104.5992333,694.9987489,3,11,11% +3/13/2018 20:00,40.76499858,172.9641077,765.3058669,878.6770613,99.80106018,771.9532915,669.3924026,102.5608889,96.79168999,5.769198891,188.566638,0,188.566638,3.009370191,185.5572678,0.711483445,3.018793166,0.193406602,-0.193406602,0.497079213,0.130406762,3.246117549,104.4062988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.03985407,2.180278459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351801114,100.3593057,95.39165519,102.5395842,669.3924026,0,0.761818456,40.37522768,-0.761818456,139.6247723,0.984367565,0,754.3198248,102.5395842,821.4299319,3,12,9% +3/13/2018 21:00,41.65662317,195.7509649,753.3110777,875.6786952,99.05510216,832.8540495,731.107047,101.7470025,96.06822536,5.678777104,185.6358691,0,185.6358691,2.986876805,182.6489923,0.72704523,3.416498852,0.519766719,-0.519766719,0.441268346,0.131492958,2.923080233,94.01630831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.34443235,2.163982077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.117761678,90.37205164,94.46219403,92.53603371,731.107047,0,0.834903317,33.39422779,-0.834903317,146.6057722,0.990112826,0,818.3406586,92.53603371,878.903642,3,13,7% +3/13/2018 22:00,46.83954777,215.9793802,679.5815564,855.5276036,94.36322016,823.4729776,726.8321839,96.64079374,91.51782091,5.122972828,167.6178155,0,167.6178155,2.845399251,164.7724163,0.817504329,3.769551302,0.883842732,-0.883842732,0.379007681,0.138854887,2.38338882,76.65797729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.97041051,2.061482071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726757087,73.6865636,89.6971676,75.74804567,726.8321839,0,0.849571867,31.83486617,-0.849571867,148.1651338,0.991146827,0,810.0945805,75.74804567,859.6701614,3,14,6% +3/13/2018 23:00,55.07999221,232.1494127,549.666213,810.8308664,85.52048621,739.6824261,652.597082,87.08534411,82.94172802,4.143616093,135.8516954,0,135.8516954,2.578758196,133.2729372,0.961327216,4.051771608,1.363443159,-1.363443159,0.296991177,0.155586216,1.683839862,54.15807814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72674381,1.868301535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219936248,52.05880471,80.94668006,53.92710624,652.597082,0,0.804849826,36.40424528,-0.804849826,143.5957547,0.98787661,0,725.6320728,53.92710624,760.9262853,3,15,5% +3/13/2018 0:00,65.16627255,244.9567715,374.0117295,720.0159089,71.6148562,579.0581607,506.7832982,72.27486245,69.45540405,2.819458401,92.84292613,0,92.84292613,2.159452145,90.68347399,1.137366017,4.275302187,2.152491356,-2.152491356,0.162055988,0.191477568,0.909285116,29.24573499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.76317624,1.564515728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.658773972,28.11211289,67.42195021,29.67662862,506.7832982,0,0.70385014,45.2632767,-0.70385014,134.7367233,0.978962151,0,563.5436179,29.67662862,582.9663778,3,16,3% +3/13/2018 1:00,76.26979811,255.60631,170.7599125,514.3764053,48.67254999,333.2990972,284.8069438,48.49215337,47.20489302,1.28726035,42.87037473,0,42.87037473,1.467656965,41.40271777,1.331159097,4.461171698,4.073210475,-4.073210475,0,0.28503499,0.366914241,11.80122326,0.142665829,1,0.240745117,0,0.93323185,0.971993814,0.724496596,1,45.62182057,1.063312475,0.02286067,0.312029739,0.937216699,0.661713295,0.961238037,0.922476074,0.257213567,11.34378468,45.87903414,12.40709715,244.174725,0,0.553693639,56.37921704,-0.553693639,123.620783,0.959697355,0,280.2128719,12.40709715,288.3330689,3,17,3% +3/13/2018 2:00,87.71387663,265.1313316,5.428409904,37.25963976,3.942130563,17.55276599,13.68858356,3.864182428,3.823260782,0.040921647,1.43505061,0,1.43505061,0.118869781,1.316180829,1.530895947,4.627414686,24.18066439,-24.18066439,0,0.726203554,0.029717445,0.955815195,0.782843954,1,0.041331805,0,0.957388247,0.99615021,0.724496596,1,3.692526832,0.086120752,0.097563656,0.312029739,0.760833091,0.485329687,0.961238037,0.922476074,0.020832103,0.918765922,3.713358936,1.004886674,2.972558681,0,0.36738368,68.44564775,-0.36738368,111.5543523,0.913902501,0,6.429987749,1.004886674,7.087665979,3,18,10% +3/13/2018 3:00,99.81803445,274.3795132,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742153354,4.788825905,-5.263273086,5.263273086,0.569773603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146724116,81.56286827,-0.146724116,98.43713173,0.709224392,0,0,0,0,3,19,0% +3/13/2018 4:00,111.4878635,284.1676139,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945830294,4.959660489,-2.101778067,2.101778067,0.889578907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080895406,94.64003552,0.080895406,85.35996448,0,0,0,0,0,3,20,0% +3/13/2018 5:00,122.6155617,295.4763819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140045265,5.157035727,-1.095785091,1.095785091,0.717543977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304487354,107.7273246,0.304487354,72.27267542,0,0.885789568,0,0,0,3,21,0% +3/13/2018 6:00,132.5957279,309.6537583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314232026,5.404477624,-0.549509505,0.549509505,0.624125349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508799776,120.5839164,0.508799776,59.41608356,0,0.951729516,0,0,0,3,22,0% +3/13/2018 7:00,140.3863271,328.3577487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450203633,5.730923839,-0.167024799,0.167024799,0.558716612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679895119,132.8354478,0.679895119,47.16455219,0,0.976459246,0,0,0,3,23,0% +3/14/2018 8:00,144.4127736,352.1564602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52047838,6.146289714,0.150690895,-0.150690895,0.504384029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806100068,143.7166289,0.806100068,36.28337112,0,0.987972961,0,0,0,3,0,0% +3/14/2018 9:00,143.3689218,17.66777709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50225973,0.308360882,0.454344003,-0.454344003,0.452456289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878801036,151.4980696,0.878801036,28.50193039,0,0.9931043,0,0,0,3,1,0% +3/14/2018 10:00,137.6352359,39.56926661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402188034,0.690613985,0.786363388,-0.786363388,0.39567763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.8930312,153.2566529,0.8930312,26.74334715,0,0.994010915,0,0,0,3,2,0% +3/14/2018 11:00,128.8057312,56.27820564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248084106,0.982239986,1.208003804,-1.208003804,0.323572872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847809092,147.9741678,0.847809092,32.02583223,0,0.991024459,0,0,0,3,3,0% +3/14/2018 12:00,118.2658665,69.11387917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064128763,1.20626475,1.859632632,-1.859632632,0.21213778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746205718,138.2627658,0.746205718,41.73723422,0,0.982994349,0,0,0,3,4,0% +3/14/2018 13:00,106.8543551,79.66640457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864960317,1.390441063,3.253974324,-3.253974324,0,#DIV/0!,0,0,0.025634288,1,0.29815559,0,0.924652253,0.963414216,0.724496596,1,0,0,0.004331524,0.312029739,0.987790477,0.712287073,0.961238037,0.922476074,0,0,0,0,0,0,-0.595135582,126.522298,0.595135582,53.47770196,0,0.965985531,0,0,0,3,5,0% +3/14/2018 14:00,95.06669541,89.11653511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659226844,1.555376956,10.65684426,-10.65684426,0,#DIV/0!,0,0,0.56375198,1,0.093562437,0,0.951941829,0.990703792,0.724496596,1,0,0,0.076071622,0.312029739,0.807027748,0.531524344,0.961238037,0.922476074,0,0,0,0,0,0,-0.404885772,113.8839692,0.404885772,66.11603076,0,0.92650838,0,0,0,3,6,0% +3/14/2018 15:00,83.12112802,98.35355438,55.26240618,255.4643954,24.66524447,24.3380877,0,24.3380877,23.92149634,0.416591361,61.72937904,47.58662073,14.14275831,0.743748126,13.39901018,1.450737362,1.716593355,-7.294761001,7.294761001,0.222368709,0.446329543,0.237227337,7.630046616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.99425218,0.538842985,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.171870398,7.33429103,23.16612258,7.873134015,0,47.58662073,-0.186274963,100.7354746,0.186274963,79.26452542,0,0.7815796,23.16612258,45.06586602,52.66083057,3,7,127% +3/14/2018 16:00,71.66690757,108.1844826,255.0623925,621.2692388,59.6478909,84.85923786,25.08718289,59.77205497,57.84928691,1.922768054,63.64143407,0,63.64143407,1.798603988,61.84283008,1.250823502,1.88817542,-2.372121368,2.372121368,0.935810335,0.233856079,1.828209163,58.80149111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.60693499,1.303082467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324531315,56.52222988,56.9314663,57.82531235,25.08718289,0,0.040380533,87.68573667,-0.040380533,92.31426333,0,0,56.9314663,57.82531235,94.77697673,3,8,66% +3/14/2018 17:00,60.84403666,119.5189518,451.1536098,765.8594636,78.03560953,281.1955472,202.1120128,79.08353446,75.68254798,3.400986479,111.7404775,0,111.7404775,2.353061548,109.387416,1.06192877,2.085999228,-1.163699655,1.163699655,0.729158051,0.172969046,2.639183616,84.88521724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.74894384,1.704785081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912079546,81.59489958,74.66102339,83.29968466,202.1120128,0,0.26390222,74.69826725,-0.26390222,105.3017327,0.860535887,0,248.5856636,83.29968466,303.1036412,3,9,22% +3/14/2018 18:00,51.30812674,133.4940184,610.9775359,833.8136762,89.73396231,482.1030575,390.4690985,91.633959,87.02815226,4.605806744,150.8443873,0,150.8443873,2.705810047,148.1385772,0.895495745,2.329910153,-0.557224482,0.557224482,0.625444688,0.146869495,3.134046244,100.8017004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65477023,1.960350168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270605835,96.89442862,85.92537606,98.85477878,390.4690985,0,0.468292989,62.07645231,-0.468292989,117.9235477,0.943229236,0,454.2272457,98.85477878,518.9257213,3,10,14% +3/14/2018 19:00,44.0404332,151.2935939,720.2970463,867.2048516,96.90735378,653.9989968,554.5838539,99.4151429,93.98523951,5.42990339,177.5664724,0,177.5664724,2.922114266,174.6443582,0.768650563,2.64057135,-0.146384184,0.146384184,0.555186859,0.134538041,3.339559716,107.4117201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.34218712,2.117061839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419499646,103.248231,92.76168677,105.3652928,554.5838539,0,0.639507324,50.24490832,-0.639507324,129.7550917,0.971814813,0,631.7144907,105.3652928,700.6739676,3,11,11% +3/14/2018 20:00,40.36580921,173.010715,770.6741556,880.1557444,100.0615497,776.9173446,674.0633525,102.8539921,97.0443248,5.809667319,189.8760965,0,189.8760965,3.017224912,186.8588716,0.704516276,3.019606619,0.191371893,-0.191371893,0.497427168,0.129836389,3.268980181,105.1416397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.28269626,2.185969177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368365013,101.0661433,95.65106127,103.2521125,674.0633525,0,0.765845541,40.01772613,-0.765845541,139.9822739,0.984712684,0,759.4097942,103.2521125,826.9862368,3,12,9% +3/14/2018 21:00,41.28637474,195.9810283,758.383474,877.1167618,99.29946316,837.6525932,735.6303603,102.0222329,96.30521797,5.717014969,186.8730987,0,186.8730987,2.99424519,183.8788535,0.720583175,3.420514215,0.515899099,-0.515899099,0.441929748,0.13093569,2.944268775,94.69780468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.57223866,2.169320448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133112705,91.02713186,94.70535136,93.19645231,735.6303603,0,0.838691486,32.99779938,-0.838691486,147.0022006,0.990383322,0,823.2613916,93.19645231,884.2566057,3,13,7% +3/14/2018 22:00,46.52269271,216.3158236,684.3429599,857.0969581,94.60263171,828.0888485,731.1799688,96.90887962,91.75001332,5.158866299,168.7794921,0,168.7794921,2.852618393,165.9268737,0.811974165,3.775423346,0.877553985,-0.877553985,0.38008312,0.138238628,2.402894571,77.28534929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19360268,2.066712315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740888937,74.28961743,89.93449162,76.35632975,731.1799688,0,0.853088979,31.45074966,-0.853088979,148.5492503,0.991389467,0,814.818611,76.35632975,864.7923017,3,14,6% +3/14/2018 23:00,54.81541384,232.5165177,554.1158601,812.7946385,85.77345779,744.1691308,656.8048999,87.36423098,83.18707157,4.177159413,136.9381918,0,136.9381918,2.586386223,134.3518056,0.956709452,4.0581788,1.352875328,-1.352875328,0.298798383,0.154793364,1.701523028,54.72682953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.96257737,1.873828014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.232747642,52.60551018,81.19532501,54.47933819,656.8048999,0,0.808082225,36.09101943,-0.808082225,143.9089806,0.988125108,0,730.2007379,54.47933819,765.8563752,3,15,5% +3/14/2018 0:00,64.94095911,245.3217555,378.1412811,722.9732108,71.92456843,583.6058849,510.9995189,72.60636602,69.75577732,2.850588705,93.85352269,0,93.85352269,2.168791112,91.68473158,1.133433556,4.281672361,2.131624797,-2.131624797,0.16562438,0.190205545,0.924523594,29.73585683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.05190645,1.571281777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.669814197,28.58323664,67.72172065,30.15451842,510.9995189,0,0.70680284,45.02462258,-0.70680284,134.9753774,0.979258915,0,568.1225549,30.15451842,587.8580841,3,16,3% +3/14/2018 1:00,76.06989041,255.9632365,174.4216435,520.2246934,49.18372261,338.460675,289.4451591,49.01551593,47.7006519,1.314864025,43.77361755,0,43.77361755,1.483070705,42.29054685,1.327670049,4.46740124,4.009909032,-4.009909032,0,0.281981763,0.370767676,11.92516298,0.134634545,1,0.244397135,0,0.932706818,0.971468781,0.724496596,1,46.0907588,1.074479677,0.021650696,0.312029739,0.940437119,0.664933715,0.961238037,0.922476074,0.260288545,11.46292025,46.35104734,12.53739993,250.4758418,0,0.556384891,56.19384433,-0.556384891,123.8061557,0.960134152,0,286.8414573,12.53739993,295.0469348,3,17,3% +3/14/2018 2:00,87.53684879,265.4849524,6.440823024,43.41615964,4.574932904,20.53586111,16.05032567,4.485535441,4.436981797,0.048553645,1.699603218,0,1.699603218,0.137951107,1.561652112,1.527806228,4.633586533,22.40299221,-22.40299221,0,0.710302532,0.034487777,1.109245449,0.767495045,1,0.044607284,0,0.957065654,0.995827617,0.724496596,1,4.286470511,0.099945107,0.096166457,0.312029739,0.763723706,0.488220302,0.961238037,0.922476074,0.024129987,1.066248918,4.310600498,1.166194025,3.731780241,0,0.369685523,68.30377604,-0.369685523,111.696224,0.914749911,0,7.72424614,1.166194025,8.487496806,3,18,10% +3/14/2018 3:00,99.62929038,274.7381272,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738859149,4.795084901,-5.353133641,5.353133641,0.554406543,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.149071312,81.42688841,-0.149071312,98.57311159,0.714590059,0,0,0,0,3,19,0% +3/14/2018 4:00,111.2868114,284.5398828,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942321273,4.966157807,-2.114200431,2.114200431,0.891703257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078631398,94.50990277,0.078631398,85.49009723,0,0,0,0,0,3,20,0% +3/14/2018 5:00,122.3877094,295.8672651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136068493,5.163857925,-1.097749858,1.097749858,0.717879971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30223274,107.5917561,0.30223274,72.40824385,0,0.884564581,0,0,0,3,21,0% +3/14/2018 6:00,132.3238648,310.0528776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309487121,5.411443569,-0.548155388,0.548155388,0.623893782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506480074,120.4296523,0.506480074,59.57034767,0,0.951279433,0,0,0,3,22,0% +3/14/2018 7:00,140.0552469,328.7107533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444425193,5.737084932,-0.163942498,0.163942498,0.558189508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6774403,132.6439414,0.6774403,47.35605859,0,0.976192758,0,0,0,3,23,0% +3/15/2018 8:00,144.0276114,352.3461175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513756033,6.149599857,0.155189581,-0.155189581,0.503614708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803449392,143.4607691,0.803449392,36.53923092,0,0.987768327,0,0,0,3,0,0% +3/15/2018 9:00,142.9690252,17.62218726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495280218,0.307565189,0.460526148,-0.460526148,0.45139908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87590725,151.1525308,0.87590725,28.84746917,0,0.99291633,0,0,0,3,1,0% +3/15/2018 10:00,137.2590313,39.36461893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395622024,0.687042209,0.795119539,-0.795119539,0.39418024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889863803,152.8561374,0.889863803,27.14386264,0,0.993811626,0,0,0,3,2,0% +3/15/2018 11:00,128.4623078,56.01347515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242090236,0.977619567,1.221549016,-1.221549016,0.321256505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844356448,147.60305,0.844356448,32.39694997,0,0.990783303,0,0,0,3,3,0% +3/15/2018 12:00,117.9480767,68.83679936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058582284,1.201428795,1.884456771,-1.884456771,0.207892602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742475871,137.9427511,0.742475871,42.05724891,0,0.982657744,0,0,0,3,4,0% +3/15/2018 13:00,106.5518654,79.39167062,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859680875,1.385646051,3.319654039,-3.319654039,0,#DIV/0!,0,0,0.036182281,1,0.292590546,0,0.925514038,0.964276001,0.724496596,1,0,0,0.006084029,0.312029739,0.982892175,0.707388771,0.961238037,0.922476074,0,0,0,0,0,0,-0.591155708,126.2390637,0.591155708,53.76093628,0,0.965419915,0,0,0,3,5,0% +3/15/2018 14:00,94.76974523,88.84612387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654044086,1.550657389,11.34207465,-11.34207465,0,#DIV/0!,0,0,0.584968438,1,0.087939896,0,0.952558918,0.991320881,0.724496596,1,0,0,0.078308274,0.312029739,0.802048025,0.526544621,0.961238037,0.922476074,0,0,0,0,0,0,-0.400700313,113.6219657,0.400700313,66.37803428,0,0.925218465,0,0,0,3,6,0% +3/15/2018 15:00,82.82519604,98.08607791,59.68289672,270.0705493,25.95191281,25.61928177,0,25.61928177,25.16936688,0.449914886,64.41073829,49.15738307,15.25335522,0.782545924,14.47080929,1.445572374,1.71192501,-7.00844334,7.00844334,0.271331913,0.43482998,0.264630327,8.51142097,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.19375281,0.566951858,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191723771,8.181501584,24.38547658,8.748453442,0,49.15738307,-0.182016822,100.4872561,0.182016822,79.51274393,0,0.775300115,24.38547658,46.8601782,55.05452601,3,7,126% +3/15/2018 16:00,71.3548854,107.9201001,260.8632363,627.4668138,60.25865641,88.50380171,28.09566886,60.40813286,58.44163559,1.966497264,65.06633263,0,65.06633263,1.817020822,63.24931181,1.245377688,1.883561076,-2.337984075,2.337984075,0.929972514,0.23099712,1.860598755,59.84325171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.17632307,1.3164254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.347997464,57.52360979,57.52432053,58.84003519,28.09566886,0,0.044776342,87.43364652,-0.044776342,92.56635348,0,0,57.52432053,58.84003519,96.03394676,3,8,67% +3/15/2018 17:00,60.51009065,119.2650437,457.0692007,769.1417146,78.44360141,285.891937,206.3681189,79.5238181,76.0782374,3.445580702,113.1870835,0,113.1870835,2.365364009,110.8217195,1.056100312,2.081567696,-1.153871453,1.153871453,0.72747733,0.171623031,2.667735677,85.80354964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.12929557,1.713698172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932765416,82.47763561,75.06206098,84.19133379,206.3681189,0,0.268309617,74.43629605,-0.268309617,105.5637039,0.863648126,0,253.2915001,84.19133379,308.3930442,3,9,22% +3/15/2018 18:00,50.94506696,133.2759669,616.7845353,835.9827072,90.06092369,487.1070857,395.1122488,91.9948369,87.34525455,4.649582358,152.2622206,0,152.2622206,2.715669139,149.5465515,0.889159156,2.326104435,-0.554238107,0.554238107,0.624933988,0.146016832,3.160320844,101.6467819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95958101,1.967493046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289641693,97.70675306,86.2492227,99.67424611,395.1122488,0,0.472632084,61.79471313,-0.472632084,118.2052869,0.944209467,0,459.3179486,99.67424611,524.5527492,3,10,14% +3/15/2018 19:00,43.64885687,151.1698115,725.8958998,868.876403,97.19122718,659.0345662,559.3019032,99.732663,94.26055308,5.472109913,178.9325391,0,178.9325391,2.930674097,176.001865,0.761816267,2.638410941,-0.146432069,0.146432069,0.555195048,0.133891412,3.363982914,108.1972541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.606829,2.123263407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.43719417,104.0033162,93.04402317,106.1265796,559.3019032,0,0.643707093,49.93119321,-0.643707093,130.0688068,0.97232492,0,636.8672014,106.1265796,706.3249252,3,11,11% +3/15/2018 20:00,39.96615551,173.0596004,776.0060891,881.6104776,100.318658,781.847366,678.7038239,103.143542,97.29368035,5.849861686,191.1766383,0,191.1766383,3.024977676,188.1516606,0.697541003,3.020459829,0.189379381,-0.189379381,0.497767908,0.129275607,3.29168363,105.8718606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.5223863,2.191586029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384813585,101.7680595,95.90719988,103.9596455,678.7038239,0,0.76984546,39.65998665,-0.76984546,140.3400133,0.9850519,0,764.4656911,103.9596455,832.5051999,3,12,9% +3/15/2018 21:00,40.91643828,196.2161285,763.4157694,878.5308067,99.54026765,842.4076603,740.1139484,102.2937119,96.53876132,5.754950538,188.1004982,0,188.1004982,3.001506334,185.0989918,0.714126566,3.424617488,0.512092203,-0.512092203,0.442580765,0.130388016,2.965304754,95.37439405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79672941,2.174581122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1483532,91.67749531,94.94508261,93.85207643,740.1139484,0,0.842445072,32.60077901,-0.842445072,147.399221,0.990648949,0,828.1381881,93.85207643,889.5624951,3,13,7% +3/15/2018 22:00,46.20697181,216.6572809,689.0640058,858.6390722,94.83824719,832.6546728,735.4816931,97.17297966,91.97852412,5.194455538,169.931269,0,169.931269,2.859723069,167.0715459,0.806463795,3.781382899,0.87135697,-0.87135697,0.381142872,0.137633437,2.422269702,77.90852011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.41325596,2.071859628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.754926153,74.88863293,90.16818211,76.96049256,735.4816931,0,0.856566766,31.06674224,-0.856566766,148.9332578,0.991627434,0,819.4920063,76.96049256,869.8611095,3,14,6% +3/15/2018 23:00,54.55228617,232.8872578,558.528585,814.7227167,86.02217752,748.6017172,660.9630013,87.63871587,83.42829148,4.210424398,138.0156079,0,138.0156079,2.59388604,135.4217219,0.952117008,4.064649435,1.342470358,-1.342470358,0.300577737,0.154015712,1.71911525,55.29265585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19444712,1.879261606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245493146,53.14940396,81.43994026,55.02866557,660.9630013,0,0.811273563,35.77945075,-0.811273563,144.2205492,0.988368508,0,734.7149558,55.02866557,770.7301168,3,15,5% +3/15/2018 0:00,64.71699397,245.6891402,382.2416615,725.8731313,72.22872861,588.0959644,515.1636993,72.93226505,70.05076595,2.881499104,94.85687893,0,94.85687893,2.177962663,92.67891626,1.129524627,4.288084434,2.11115179,-2.11115179,0.169125471,0.188960901,0.939738318,30.22521464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.33546074,1.577926535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680837212,29.05362598,68.01629795,30.63155252,515.1636993,0,0.709715895,44.7881955,-0.709715895,135.2118045,0.979549274,0,572.6445257,30.63155252,592.6922641,3,16,4% +3/15/2018 1:00,75.87100126,256.3217254,178.0718729,525.9502966,49.68432571,343.5564301,294.0278891,49.52854097,48.18615998,1.342380996,44.67375296,0,44.67375296,1.498165736,43.17558722,1.324198779,4.473658052,3.948499371,-3.948499371,0,0.279012766,0.374541434,12.04653999,0.126698168,1,0.248045263,0,0.932179499,0.970941462,0.724496596,1,46.54929502,1.085415976,0.020446491,0.312029739,0.943653596,0.668150192,0.961238037,0.922476074,0.263323591,11.57959246,46.81261861,12.66500843,256.7750943,0,0.559041208,56.01048321,-0.559041208,123.9895168,0.960561155,0,293.4607998,12.66500843,301.7497945,3,17,3% +3/15/2018 2:00,87.35960511,265.8395568,7.549079877,50.0200598,5.244792031,23.74967809,18.60612774,5.143550353,5.0866422,0.056908153,1.988511647,0,1.988511647,0.158149831,1.830361816,1.524712742,4.639775549,20.86097854,-20.86097854,0,0.694759112,0.039537458,1.27166055,0.752308715,1,0.047899723,0,0.956738817,0.99550078,0.724496596,1,4.915424894,0.114579014,0.094769028,0.312029739,0.766630474,0.491127069,0.961238037,0.922476074,0.027612592,1.222368491,4.943037486,1.336947505,4.608575693,0,0.371973321,68.16263135,-0.371973321,111.8373687,0.915581758,0,9.162565319,1.336947505,10.03757072,3,18,10% +3/15/2018 3:00,99.44073386,275.0972415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735568217,4.801352628,-5.446188881,5.446188881,0.53849316,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151399455,81.29196425,-0.151399455,98.70803575,0.719747821,0,0,0,0,3,19,0% +3/15/2018 4:00,111.0854676,284.9121016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938807161,4.972654252,-2.126765997,2.126765997,0.893852095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076375575,94.38026369,0.076375575,85.61973631,0,0,0,0,0,3,20,0% +3/15/2018 5:00,122.1591069,296.2572839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132078627,5.170665036,-1.099698103,1.099698103,0.718213141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299974621,107.4560788,0.299974621,72.54392121,0,0.883319233,0,0,0,3,21,0% +3/15/2018 6:00,132.0509435,310.4498828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304723744,5.418372617,-0.546758659,0.546758659,0.623654927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504145157,120.2746224,0.504145157,59.72537758,0,0.950822215,0,0,0,3,22,0% +3/15/2018 7:00,139.7231974,329.0605014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438629836,5.743189187,-0.160806602,0.160806602,0.557653238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674959348,132.4509934,0.674959348,47.54900657,0,0.975921465,0,0,0,3,23,0% +3/16/2018 8:00,143.6419239,352.533979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507024517,6.152878658,0.159754907,-0.159754907,0.502833991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800763209,143.2030453,0.800763209,36.79695466,0,0.987559569,0,0,0,3,0,0% +3/16/2018 9:00,142.5685608,17.57884963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.488290795,0.306808805,0.466798033,-0.466798033,0.450326525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872970771,150.8057193,0.872970771,29.19428074,0,0.992724314,0,0,0,3,1,0% +3/16/2018 10:00,136.8817048,39.16384554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389036435,0.683538052,0.804012353,-0.804012353,0.392659479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886649214,152.4551624,0.886649214,27.54483761,0,0.993607913,0,0,0,3,2,0% +3/16/2018 11:00,128.1174241,55.75191465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23607088,0.973054475,1.235342615,-1.235342615,0.31889766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840855112,147.2305278,0.840855112,32.76947224,0,0.990536724,0,0,0,3,3,0% +3/16/2018 12:00,117.628817,68.56181695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053010152,1.196629447,1.9098808,-1.9098808,0.203544837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738698933,137.6207023,0.738698933,42.37929771,0,0.982313426,0,0,0,3,4,0% +3/16/2018 13:00,106.2480801,79.11817327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854378821,1.380872622,3.387913601,-3.387913601,0,#DIV/0!,0,0,0.046905278,1,0.287016893,0,0.926370746,0.965132709,0.724496596,1,0,0,0.007848151,0.312029739,0.977985623,0.702482219,0.961238037,0.922476074,0,0,0,0,0,0,-0.587133339,125.953844,0.587133339,54.04615598,0,0.964840469,0,0,0,3,5,0% +3/16/2018 14:00,94.4717498,88.57628816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648843084,1.545947868,12.1206176,-12.1206176,0,#DIV/0!,0,0,0.606700872,1,0.082317608,0,0.953168597,0.991930561,0.724496596,1,0,0,0.08056255,0.312029739,0.797069504,0.5215661,0.961238037,0.922476074,0,0,0,0,0,0,-0.396479634,113.3582871,0.396479634,66.64171293,0,0.923890118,0,0,0,3,6,0% +3/16/2018 15:00,82.52820496,97.81861001,64.17857432,284.1657218,27.22619852,26.88903338,0,26.88903338,26.40522818,0.483805202,66.8861158,50.50430708,16.38180872,0.820970339,15.56083838,1.440388902,1.707256814,-6.743559188,6.743559188,0.31662977,0.424225667,0.293443802,9.438161393,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38170969,0.594790216,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.212599036,9.072319728,25.59430873,9.667109945,0,50.50430708,-0.177728358,100.2374709,0.177728358,79.76252906,0,0.768671794,25.59430873,48.48834629,57.32896161,3,7,124% +3/16/2018 16:00,71.04230106,107.6551645,266.622529,633.2414625,60.90137743,92.22233977,31.14745032,61.07488945,59.0649762,2.009913245,66.48212023,0,66.48212023,1.836401232,64.645719,1.239922062,1.878937077,-2.304795412,2.304795412,0.924296918,0.228417972,1.892511927,60.86968903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.77550177,1.330466441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371118448,58.51026038,58.14662022,59.84072683,31.14745032,0,0.04918732,87.18063653,-0.04918732,92.81936347,0,0,58.14662022,59.84072683,97.31117911,3,8,67% +3/16/2018 17:00,60.17575914,119.0100074,462.9157942,772.1326509,78.90252841,290.589098,210.5761171,80.01298085,76.52332606,3.489654793,114.6184961,0,114.6184961,2.379202351,112.2392938,1.050265127,2.077116473,-1.144190678,1.144190678,0.725821819,0.170446827,2.695948934,86.71098498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55713172,1.723724004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.953205825,83.34989698,75.51033754,85.07362098,210.5761171,0,0.27272013,74.17380523,-0.27272013,105.8261948,0.866661865,0,258.008628,85.07362098,313.6876114,3,9,22% +3/16/2018 18:00,50.58163542,133.0564376,622.5064097,837.9181379,90.44669316,492.067628,399.6555201,92.41210791,87.71939165,4.692716264,153.6611877,0,153.6611877,2.727301511,150.9338862,0.882816079,2.322272927,-0.551267987,0.551267987,0.624426068,0.145294397,3.186330201,102.4833322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.31921582,1.975920661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308485384,98.51087707,86.6277012,100.4867977,399.6555201,0,0.476962488,61.51279546,-0.476962488,118.4872045,0.945169953,0,464.3700904,100.4867977,530.1366898,3,10,14% +3/16/2018 19:00,43.25679227,151.0453439,731.3983912,870.3417175,97.53744974,663.9932143,563.8832886,100.1099258,94.59633575,5.513590017,180.2771218,0,180.2771218,2.941113984,177.3360078,0.754973449,2.63623857,-0.14645828,0.14645828,0.555199531,0.133357485,3.38819481,108.9759919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92959607,2.13082707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454735606,104.7518685,93.38433168,106.8826956,563.8832886,0,0.647887235,49.61750283,-0.647887235,130.3824972,0.972826076,0,641.9446988,106.8826956,711.8972854,3,11,11% +3/16/2018 20:00,39.56615253,173.11072,781.2344038,882.8696187,100.639338,786.6729607,683.1789952,103.4939655,97.6046906,5.889274931,192.4539734,0,192.4539734,3.034647359,189.419326,0.690559634,3.021352035,0.18742742,-0.18742742,0.498101713,0.128820924,3.31422901,106.5969975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82134118,2.198591681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401147636,102.4650887,96.22248881,104.6636803,683.1789952,0,0.773816406,39.30215325,-0.773816406,140.6978467,0.98538519,0,769.4169528,104.6636803,837.9172383,3,12,9% +3/16/2018 21:00,40.54692227,196.4562421,768.3412009,879.747393,99.84416545,847.0348816,744.4093056,102.625576,96.83349548,5.792080521,189.3038897,0,189.3038897,3.010669974,186.2932197,0.707677295,3.428808261,0.508344354,-0.508344354,0.443221685,0.129947692,2.986244628,96.04789238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.08003909,2.181220148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163524067,92.32488752,95.24356316,94.50610767,744.4093056,0,0.846162559,32.20329075,-0.846162559,147.7967093,0.990909699,0,832.8859644,94.50610767,894.7383217,3,13,7% +3/16/2018 22:00,45.89247562,217.0036725,693.6792274,859.9690078,95.13469335,837.0720978,739.5768194,97.49527837,92.26603134,5.229247028,171.0592218,0,171.0592218,2.868662014,168.1905598,0.800974802,3.787428575,0.865249514,-0.865249514,0.382187308,0.13714508,2.441625796,78.53107863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68961883,2.078335864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768949578,75.48705986,90.45856841,77.56539572,739.5768194,0,0.860004038,30.68296371,-0.860004038,149.3170363,0.991860738,0,824.0157784,77.56539572,874.7807786,3,14,6% +3/16/2018 23:00,54.29067105,233.2615122,562.8413597,816.4060909,86.32681821,752.8665663,664.8998843,87.96668204,83.72374613,4.242935915,139.0704761,0,139.0704761,2.603072081,136.467404,0.947550963,4.071181406,1.332224327,-1.332224327,0.302329912,0.153376821,1.736787823,55.86106657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47844936,1.885916862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.258296866,53.69578197,81.73674623,55.58169883,664.8998843,0,0.814422983,35.4696523,-0.814422983,144.5303477,0.988606841,0,739.0613202,55.58169883,775.4384304,3,15,5% +3/16/2018 0:00,64.49441413,246.0587961,386.2545208,728.4639137,72.57862283,592.3970599,519.0952006,73.3018593,70.39010957,2.911749732,95.84039373,0,95.84039373,2.188513265,93.65188047,1.125639876,4.294536145,2.091060835,-2.091060835,0.172561226,0.18790362,0.955170288,30.72155983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66165074,1.585570411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692017622,29.53073186,68.35366836,31.11630227,519.0952006,0,0.712588765,44.55406338,-0.712588765,135.4459366,0.979833303,0,576.9804333,31.11630227,597.3454308,3,16,4% +3/16/2018 1:00,75.67315202,256.68165,181.6630252,531.238316,50.2064823,348.4385681,298.3765439,50.06202423,48.69257161,1.369452619,45.56021436,0,45.56021436,1.513910683,44.04630368,1.320745658,4.479939921,3.888895581,-3.888895581,0,0.276371497,0.378477671,12.1731429,0.118854712,1,0.251689557,0,0.931649901,0.970411864,0.724496596,1,47.02752049,1.096823137,0.01924797,0.312029739,0.946866191,0.671362787,0.961238037,0.922476074,0.266489029,11.70128799,47.29400952,12.79811112,262.9130858,0,0.561662318,55.82916377,-0.561662318,124.1708362,0.960978539,0,299.9478426,12.79811112,308.3239504,3,17,3% +3/16/2018 2:00,87.18223536,266.1950212,8.742609045,56.90295171,5.945291311,27.12761121,21.29568689,5.831924322,5.766018842,0.06590548,2.29901925,0,2.29901925,0.179272469,2.119746781,1.521617056,4.645979572,19.51113921,-19.51113921,0,0.680036278,0.044818117,1.44150471,0.73728786,1,0.051207966,0,0.956407815,0.995169778,0.724496596,1,5.573382227,0.129882293,0.093371885,0.312029739,0.769552311,0.494048907,0.961238037,0.922476074,0.031246036,1.385629158,5.604628263,1.515511451,5.594635468,0,0.374245733,68.02229777,-0.374245733,111.9777022,0.916397942,0,10.73154069,1.515511451,11.72341263,3,18,9% +3/16/2018 3:00,99.25237365,275.4567311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.732280711,4.807626904,-5.542628864,5.542628864,0.522000951,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153708677,81.15808857,-0.153708677,98.84191143,0.72470932,0,0,0,0,3,19,0% +3/16/2018 4:00,110.8838452,285.2841395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935288185,4.979147539,-2.13948178,2.13948178,0.896026622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074127733,94.25110556,0.074127733,85.74889444,0,0,0,0,0,3,20,0% +3/16/2018 5:00,121.9297802,296.6462996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128076121,5.177454642,-1.101631904,1.101631904,0.71854384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297712801,107.3202803,0.297712801,72.67971966,0,0.882052905,0,0,0,3,21,0% +3/16/2018 6:00,131.7770129,310.8446395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299942753,5.425262421,-0.545320673,0.545320673,0.623409017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50179493,120.1188228,0.50179493,59.88117717,0,0.950357702,0,0,0,3,22,0% +3/16/2018 7:00,139.3902563,329.4068946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432818918,5.74923489,-0.157618233,0.157618233,0.557107995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672452344,132.2566212,0.672452344,47.7433788,0,0.975645289,0,0,0,3,23,0% +3/17/2018 8:00,143.25581,352.7199575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.500285556,6.156124596,0.164385905,-0.164385905,0.502042044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798041841,142.9435167,0.798041841,37.05648329,0,0.987346643,0,0,0,3,0,0% +3/17/2018 9:00,142.1676517,17.53761803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.481293612,0.306089178,0.473158909,-0.473158909,0.449238751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869992216,150.457735,0.869992216,29.542265,0,0.992528221,0,0,0,3,1,0% +3/17/2018 10:00,136.5034015,38.96683697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382433797,0.680099604,0.813041692,-0.813041692,0.391115372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883388373,152.0538417,0.883388373,27.94615826,0,0.993399753,0,0,0,3,2,0% +3/17/2018 11:00,127.771228,55.49348614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230028617,0.968544047,1.249386709,-1.249386709,0.316495979,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837306351,146.8567606,0.837306351,33.14323941,0,0.9902847,0,0,0,3,3,0% +3/17/2018 12:00,117.3082295,68.28893395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047414845,1.19186674,1.935918313,-1.935918313,0.19909216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734876487,137.2967804,0.734876487,42.70321957,0,0.981961356,0,0,0,3,4,0% +3/17/2018 13:00,105.9431354,78.84593031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849056532,1.376121086,3.458885599,-3.458885599,0,#DIV/0!,0,0,0.057804259,1,0.281436692,0,0.927222007,0.96598397,0.724496596,1,0,0,0.009623441,0.312029739,0.973072553,0.697569149,0.961238037,0.922476074,0,0,0,0,0,0,-0.583070333,125.6667846,0.583070333,54.33321543,0,0.964247052,0,0,0,3,5,0% +3/17/2018 14:00,94.17284219,88.30704957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643626162,1.541248768,13.01262958,-13.01262958,0,#DIV/0!,0,0,0.628961352,1,0.076697671,0,0.953770625,0.992532588,0.724496596,1,0,0,0.082833928,0.312029739,0.792094299,0.516590895,0.961238037,0.922476074,0,0,0,0,0,0,-0.392225817,113.0930673,0.392225817,66.90693267,0,0.922522415,0,0,0,3,6,0% +3/17/2018 15:00,82.23031002,97.55116913,68.73797992,297.7116063,28.48991967,28.1490194,0,28.1490194,27.63084347,0.518175928,69.15221085,51.6268156,17.52539525,0.859076195,16.66631905,1.435189655,1.702589091,-6.497886996,6.497886996,0.35864219,0.414471297,0.323583556,10.40755947,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.55981773,0.622397779,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234435185,10.00414204,26.79425292,10.62653982,0,51.6268156,-0.17341217,99.98626943,0.17341217,80.01373057,0,0.761669601,26.79425292,49.94911588,59.48495028,3,7,122% +3/17/2018 16:00,70.7292893,107.389684,272.3361573,638.6001591,61.57774404,96.01002507,34.23609222,61.77393285,59.72094786,2.052984989,67.88785053,0,67.88785053,1.85679618,66.03105435,1.234458976,1.874303569,-2.272527758,2.272527758,0.918778824,0.226109323,1.923941927,61.88058588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.40604668,1.345242512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393889377,59.48197289,58.79993605,60.8272154,34.23609222,0,0.053611155,86.92683375,-0.053611155,93.07316625,0,0,58.79993605,60.8272154,98.61013199,3,8,68% +3/17/2018 17:00,59.84117864,118.7538299,468.6901839,774.8368385,79.41319453,295.2834564,214.7316781,80.55177829,77.01859371,3.533184582,116.0339622,0,116.0339622,2.394600819,113.6393614,1.044425596,2.072645332,-1.134658161,1.134658161,0.724191663,0.169436436,2.723815535,87.60727067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.03320182,1.734880142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973395083,84.21144087,76.0065969,85.94632102,214.7316781,0,0.277131478,73.91092331,-0.277131478,106.0890767,0.869580221,0,262.733017,85.94632102,318.9831652,3,9,21% +3/17/2018 18:00,50.21796816,132.8353824,628.1403789,839.6231881,90.89175457,496.981768,404.0955477,92.88622032,88.15103282,4.735187504,155.040629,0,155.040629,2.740721755,152.2999072,0.876468888,2.318414785,-0.548316199,0.548316199,0.623921282,0.144699748,3.212066039,103.3110852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73412573,1.985643582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.327130911,99.30654476,87.06125664,101.2921883,404.0955477,0,0.481282024,61.23083343,-0.481282024,118.7691666,0.946110809,0,469.3804223,101.2921883,535.6741337,3,10,14% +3/17/2018 19:00,42.86436669,150.920115,736.8021036,871.6033663,97.94637464,668.8725276,568.325272,100.5472555,94.99293007,5.554325483,181.599645,0,181.599645,2.953444579,178.6462004,0.74812433,2.634052913,-0.146464615,0.146464615,0.555200614,0.132934439,3.412187502,109.7476794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.31081761,2.139760544,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.47211823,105.4936439,93.78293584,107.6334044,568.325272,0,0.652045752,49.30397906,-0.652045752,130.6960209,0.973318264,0,646.9443032,107.6334044,717.3882137,3,11,11% +3/17/2018 20:00,39.16591506,173.164031,786.3570417,883.9354618,101.0238969,791.392206,687.4866608,103.9055452,97.97765368,5.927891539,193.7076121,0,193.7076121,3.04624323,190.6613689,0.683574172,3.022282488,0.185514424,-0.185514424,0.498428855,0.128470773,3.336609116,107.3168187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.17984748,2.206992851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.417361947,103.1570081,96.59720942,105.364001,687.4866608,0,0.777756624,38.94436953,-0.777756624,141.0556305,0.985712537,0,774.2614302,105.364001,843.2200615,3,12,9% +3/17/2018 21:00,40.17793506,196.7013457,773.1580605,880.7687945,100.2114707,851.5328605,748.5147433,103.0181172,97.18972516,5.828392044,190.4828687,0,190.4828687,3.021745584,187.4611231,0.701237253,3.433086126,0.504653928,-0.504653928,0.443852785,0.129613175,3.007081889,96.71809034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.42246061,2.189244389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178620592,92.96910728,95.60108121,95.15835167,748.5147433,0,0.849842488,31.80545841,-0.849842488,148.1945416,0.991165568,0,837.5031219,95.15835167,899.7823599,3,13,7% +3/17/2018 22:00,45.57929423,217.3549174,698.1872355,861.0892788,95.49234128,841.3403105,743.4641853,97.87612516,92.61289486,5.263230297,172.163025,0,172.163025,2.879446419,169.2835786,0.795508755,3.793558954,0.859229518,-0.859229518,0.383216788,0.136771823,2.460956762,79.15282895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.02303725,2.086149129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782954797,76.08470991,90.80599204,78.17085904,743.4641853,0,0.863399654,30.29953401,-0.863399654,149.700466,0.992089391,0,828.3889227,78.17085904,879.5501865,3,14,6% +3/17/2018 23:00,54.0306297,233.6391588,567.0530372,817.8478972,86.68788576,756.9635326,668.6149211,88.34861148,84.07392616,4.274685319,140.1025336,0,140.1025336,2.6139596,137.488574,0.943012385,4.077772582,1.322133464,-1.322133464,0.304055551,0.152874388,1.754534469,56.4318597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.81505573,1.893804832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27115425,54.24445004,82.08620998,56.13825487,668.6149211,0,0.81752967,35.16173669,-0.81752967,144.8382633,0.98884014,0,743.2394823,56.13825487,779.9808473,3,15,5% +3/17/2018 0:00,64.27325632,246.4305931,390.1787686,730.7500131,72.97507417,596.5097995,522.7938607,73.7159388,70.77460643,2.94133237,96.80382751,0,96.80382751,2.200467735,94.60335978,1.121779944,4.301025228,2.071340952,-2.071340952,0.175933525,0.187029844,0.970811894,31.22464767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03124374,1.594231384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703349913,30.01431903,68.73459366,31.60855041,522.7938607,0,0.715420939,44.32229272,-0.715420939,135.6777073,0.980111076,0,581.1306467,31.60855041,601.8178108,3,16,4% +3/17/2018 1:00,75.4763643,257.0428839,185.1933091,536.0944391,50.7518867,353.1077923,302.4901969,50.61759545,49.22153006,1.39606539,46.43261852,0,46.43261852,1.530356639,44.90226188,1.317311064,4.486244643,3.831017161,-3.831017161,0,0.274048166,0.38258916,12.30538252,0.111102285,1,0.255330053,0,0.931118036,0.969879999,0.724496596,1,47.52700292,1.108738175,0.018055053,0.312029739,0.950074951,0.674571546,0.961238037,0.922476074,0.269794455,11.82840173,47.79679738,12.93713991,268.8828448,0,0.564247966,55.64991499,-0.564247966,124.350085,0.961386477,0,306.2971283,12.93713991,314.7642276,3,17,3% +3/17/2018 2:00,87.00482238,266.5512222,10.01645306,63.9956901,6.672556344,30.6413394,24.09447699,6.546862406,6.471354152,0.075508254,2.629807203,0,2.629807203,0.201202193,2.42860501,1.518520616,4.652196453,18.32002073,-18.32002073,0,0.666159598,0.050300548,1.617838538,0.722434588,1,0.054530975,0,0.956072721,0.994834684,0.724496596,1,6.256710341,0.145770304,0.091975486,0.312029739,0.772488237,0.496984833,0.961238037,0.922476074,0.035010088,1.55512794,6.291720429,1.700898244,6.687793428,0,0.376501557,67.8828513,-0.376501557,112.1171487,0.917198425,0,12.42575402,1.700898244,13.53895791,3,18,9% +3/17/2018 3:00,99.06422006,275.8164718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728996811,4.813905565,-5.642657938,5.642657938,0.504894972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155999097,81.02525483,-0.155999097,98.97474517,0.729485324,0,0,0,0,3,19,0% +3/17/2018 4:00,110.6819594,285.6558673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931764615,4.985635412,-2.152354905,2.152354905,0.898228056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071887688,94.12241702,0.071887688,85.87758298,0,0,0,0,0,3,20,0% +3/17/2018 5:00,121.6997581,297.0341769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124061477,5.184224378,-1.103553323,1.103553323,0.718872423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295447125,107.1843509,0.295447125,72.81564914,0,0.88076498,0,0,0,3,21,0% +3/17/2018 6:00,131.5021251,311.2370181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295145056,5.43211072,-0.543842774,0.543842774,0.623156281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499429342,119.9622527,0.499429342,60.03774727,0,0.949885738,0,0,0,3,22,0% +3/17/2018 7:00,139.0565036,329.7498414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426993834,5.75522044,-0.154378503,0.154378503,0.556553968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66991942,132.0608459,0.66991942,47.9391541,0,0.975364158,0,0,0,3,23,0% +3/18/2018 8:00,142.8693691,352.9039728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.493540891,6.159336268,0.169081604,-0.169081604,0.501239032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795285669,142.6822461,0.795285669,37.31775391,0,0.98712951,0,0,0,3,0,0% +3/18/2018 9:00,141.7664203,17.49835339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474290804,0.30540388,0.479608025,-0.479608025,0.448135887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866972257,150.10868,0.866972257,29.89132001,0,0.992328028,0,0,0,3,1,0% +3/18/2018 10:00,136.124265,38.77348649,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375816617,0.676725002,0.82220741,-0.82220741,0.389547941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880082269,151.6522891,0.880082269,28.3477109,0,0.993187129,0,0,0,3,2,0% +3/18/2018 11:00,127.4238659,55.23815148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223966006,0.964087616,1.263683432,-1.263683432,0.314051095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833711479,146.481906,0.833711479,33.51809397,0,0.990027214,0,0,0,3,3,0% +3/18/2018 12:00,116.9864552,68.01815179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041798824,1.1871407,1.962583364,-1.962583364,0.194532168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731010147,136.9711453,0.731010147,43.02885475,0,0.981601497,0,0,0,3,4,0% +3/18/2018 13:00,105.6371668,78.57495937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843716372,1.371391751,3.5327121,-3.5327121,0,#DIV/0!,0,0,0.068880201,1,0.275851976,0,0.928067466,0.966829429,0.724496596,1,0,0,0.011409452,0.312029739,0.968154678,0.692651274,0.961238037,0.922476074,0,0,0,0,0,0,-0.578968573,125.3780302,0.578968573,54.6219698,0,0.963639527,0,0,0,3,5,0% +3/18/2018 14:00,93.87315444,88.03843009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638395624,1.536560473,14.04452823,-14.04452823,0,#DIV/0!,0,0,0.651762337,1,0.071082146,0,0.954364773,0.993126736,0.724496596,1,0,0,0.085121881,0.312029739,0.787124507,0.511621103,0.961238037,0.922476074,0,0,0,0,0,0,-0.387940949,112.8264398,0.387940949,67.17356022,0,0.921114405,0,0,0,3,6,0% +3/18/2018 15:00,81.93166314,97.28377466,73.38242654,310.9963347,29.73281663,29.38945023,0,29.38945023,28.8362625,0.553187728,71.26937645,52.58040342,18.68897303,0.896554124,17.79241891,1.429977283,1.697922177,-6.269497781,6.269497781,0.397699046,0.405176253,0.355001083,11.41805512,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.71851236,0.649550411,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.257197076,10.97546889,27.97570944,11.6250193,0,52.58040342,-0.169070814,99.73379862,0.169070814,80.26620138,0,0.754265929,27.97570944,51.28462616,61.54047156,3,7,120% +3/18/2018 16:00,70.41598377,107.1236683,278.053251,643.8363754,62.24654009,99.83750249,37.37184239,62.4656601,60.36957724,2.096082856,69.29419274,0,69.29419274,1.876962849,67.41722989,1.228990763,1.869660719,-2.24115416,2.24115416,0.913413623,0.223865536,1.955220489,62.88661196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.02953392,1.359853195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416550589,60.44900342,59.4460845,61.80885662,37.37184239,0,0.058045559,86.67236403,-0.058045559,93.32763597,0,0,59.4460845,61.80885662,99.89874498,3,8,68% +3/18/2018 17:00,59.50648473,118.4965001,474.449405,777.4882145,79.92013191,299.9819737,218.8951286,81.08684508,77.51024506,3.576600023,117.4456381,0,117.4456381,2.409886851,115.0357512,1.038584085,2.068154079,-1.125274496,1.125274496,0.722586962,0.168448166,2.751538053,88.49892213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50579579,1.74595482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993479953,85.06853017,76.49927575,86.81448499,218.8951286,0,0.281541411,73.64777753,-0.281541411,106.3522225,0.872406232,0,267.4647501,86.81448499,324.2830942,3,9,21% +3/18/2018 18:00,49.85420063,132.6127544,633.7470669,841.2966283,91.33379993,501.8812169,408.5240149,93.35720197,88.57974888,4.777453086,156.4133647,0,156.4133647,2.754051054,153.6593136,0.870119947,2.314529195,-0.545384688,0.545384688,0.623419964,0.144117117,3.237639793,104.1336251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14622392,1.995300613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345659009,100.0972013,87.49188293,102.0925019,408.5240149,0,0.485588556,60.94895981,-0.485588556,119.0510402,0.94703217,0,474.3772671,102.0925019,541.1947678,3,10,14% +3/18/2018 19:00,42.47170713,150.7940493,742.1695485,872.8413244,98.35231217,673.7230409,572.7416263,100.9814146,95.38662708,5.594787551,182.9132847,0,182.9132847,2.965685093,179.9475996,0.741271128,2.631852652,-0.146452793,0.146452793,0.555198592,0.132520005,3.436003398,110.5136805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68925415,2.148628755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.489372765,106.2299532,94.17862692,108.378582,572.7416263,0,0.656180694,48.99076281,-0.656180694,131.0092372,0.973801477,0,651.9152683,108.378582,722.8468826,3,11,11% +3/18/2018 20:00,38.76555772,173.219491,791.4374505,884.9804783,101.4053436,796.0715355,691.7577473,104.3137881,98.34759834,5.966189806,194.9509181,0,194.9509181,3.057745255,191.8931728,0.676586619,3.023250447,0.183638865,-0.183638865,0.498749594,0.128128058,3.358808757,108.0308355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.53545235,2.215326028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433445511,103.8433482,96.96889787,106.0586742,691.7577473,0,0.781664414,38.58677877,-0.781664414,141.4132212,0.986033931,0,779.0655086,106.0586742,848.4787897,3,12,9% +3/18/2018 21:00,39.80958482,196.9514155,777.9299886,881.7693826,100.5755313,855.9827454,752.5755727,103.4071728,97.54280792,5.864364853,191.6508556,0,191.6508556,3.032723352,188.6181323,0.694808329,3.437450667,0.501019357,-0.501019357,0.444474334,0.129286096,3.027748575,97.38280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.7618572,2.197197745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193593536,93.6080534,95.95545073,95.80525115,752.5755727,0,0.853483448,31.4074057,-0.853483448,148.5925943,0.991416556,0,842.0713329,95.80525115,904.7739537,3,13,7% +3/18/2018 22:00,45.26751707,217.7109319,702.651042,862.1860206,95.84661908,845.5552773,747.301907,98.25337023,92.95648987,5.296880355,173.2560093,0,173.2560093,2.890129201,170.3658801,0.790067217,3.799772579,0.853294957,-0.853294957,0.384231658,0.13640714,2.480141637,79.76988047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.35331384,2.093888768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796854173,76.6778433,91.15016801,78.77173207,747.301907,0,0.866752521,29.91657326,-0.866752521,150.0834267,0.992313407,0,832.7078694,78.77173207,884.2623926,3,14,6% +3/18/2018 23:00,53.77222252,234.0200737,571.2247707,819.258918,87.04535582,761.004759,672.2780082,88.72675078,84.42061718,4.306133608,141.1247977,0,141.1247977,2.624738641,138.5000591,0.938502329,4.084420801,1.312194137,-1.312194137,0.305755276,0.152383721,1.772175809,56.99926583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.14830832,1.901614211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283935341,54.78986239,82.43224367,56.6914766,672.2780082,0,0.820592847,34.85581586,-0.820592847,145.1441841,0.989068443,0,747.3612064,56.6914766,784.464644,3,15,5% +3/18/2018 0:00,64.05355677,246.8044008,394.0712509,732.9863457,73.36713777,600.5650697,526.4395463,74.12552341,71.15484787,2.970675545,97.75942707,0,97.75942707,2.2122899,95.54713717,1.117945463,4.307549402,2.051981642,-2.051981642,0.179244162,0.186177341,0.986413711,31.72645572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39674627,1.602796501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714653376,30.49667601,69.11139965,32.09947251,526.4395463,0,0.718211941,44.09294836,-0.718211941,135.9070516,0.980382667,0,585.2236059,32.09947251,606.2320687,3,16,4% +3/18/2018 1:00,75.28065973,257.405301,188.7082958,540.8398668,51.28930507,357.7122175,306.5469114,51.16530613,49.74274328,1.422562844,47.30107289,0,47.30107289,1.546561785,45.7545111,1.313895375,4.492570014,3.774788562,-3.774788562,0,0.27179147,0.386640446,12.43568582,0.103439078,1,0.258966774,0,0.930583916,0.969345879,0.724496596,1,48.0184796,1.120478749,0.01686767,0.312029739,0.953279908,0.677776504,0.961238037,0.922476074,0.273074219,11.95365423,48.29155382,13.07413297,274.8379815,0,0.56679792,55.47276457,-0.56679792,124.5272354,0.961785138,0,312.6266399,13.07413297,321.1833984,3,17,3% +3/18/2018 2:00,86.82744253,266.9080375,11.3758336,71.3858868,7.425104265,34.3236364,27.03667058,7.286965815,7.201209976,0.085755839,2.98209685,0,2.98209685,0.223894289,2.758202561,1.515424753,4.658424054,17.26147024,-17.26147024,0,0.652708586,0.055973572,1.800302494,0.707750307,1,0.057867812,0,0.955733597,0.994495561,0.724496596,1,6.96401486,0.16221065,0.090580238,0.312029739,0.77543736,0.499933956,0.961238037,0.922476074,0.038897243,1.730519235,7.002912103,1.892729885,7.901458665,0,0.378739717,67.74436033,-0.378739717,112.2556397,0.917983215,0,14.25631853,1.892729885,15.49507238,3,18,9% +3/18/2018 3:00,98.87628478,276.176341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725716721,4.820186467,-5.746496243,5.746496243,0.487137576,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158270829,80.89345681,-0.158270829,99.10654319,0.734085815,0,0,0,0,3,19,0% +3/18/2018 4:00,110.4798278,286.0271573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928236752,4.992115645,-2.165392641,2.165392641,0.90045764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.069655281,93.99418792,0.069655281,86.00581208,0,0,0,0,0,3,20,0% +3/18/2018 5:00,121.4690716,297.4207829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120035239,5.190971926,-1.105464421,1.105464421,0.719199239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.293177465,107.0482823,0.293177465,72.95171767,0,0.879454832,0,0,0,3,21,0% +3/18/2018 6:00,131.2263346,311.6268937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290331604,5.438915333,-0.542326299,0.542326299,0.622896949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497048384,119.804914,0.497048384,60.19508596,0,0.949406171,0,0,0,3,22,0% +3/18/2018 7:00,138.7220211,330.0892559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421156013,5.761144341,-0.151088525,0.151088525,0.555991349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667360759,131.8636922,0.667360759,48.13630776,0,0.975078004,0,0,0,3,23,0% +3/19/2018 8:00,142.4827018,353.0859505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486792274,6.162512378,0.173841028,-0.173841028,0.500425123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792495124,142.4192999,0.792495124,37.5807001,0,0.986908129,0,0,0,3,0,0% +3/19/2018 9:00,141.3649887,17.46092295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4672845,0.304750596,0.486144613,-0.486144613,0.447018065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86391162,149.7586578,0.86391162,30.24134216,0,0.992123709,0,0,0,3,1,0% +3/19/2018 10:00,135.7444378,38.58368973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369187382,0.673412423,0.83150934,-0.83150934,0.387957218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876731945,151.2506182,0.876731945,28.74938184,0,0.992970026,0,0,0,3,2,0% +3/19/2018 11:00,127.0754837,54.98587216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217885589,0.959684511,1.27823493,-1.27823493,0.311562643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830071853,146.1061197,0.830071853,33.89388026,0,0.989764251,0,0,0,3,3,0% +3/19/2018 12:00,116.6636344,67.74947119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036164538,1.182451339,1.989890442,-1.989890442,0.189862382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727101568,136.6439555,0.727101568,43.35604453,0,0.981233816,0,0,0,3,4,0% +3/19/2018 13:00,105.3303089,78.30527778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838360692,1.366684919,3.609545382,-3.609545382,0,#DIV/0!,0,0,0.080134053,1,0.270264763,0,0.928906778,0.967668741,0.724496596,1,0,0,0.013205729,0.312029739,0.963233703,0.687730299,0.961238037,0.922476074,0,0,0,0,0,0,-0.574829963,125.0877253,0.574829963,54.91227471,0,0.963017756,0,0,0,3,5,0% +3/19/2018 14:00,93.57281793,87.77045196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.633153763,1.531883373,15.25162583,-15.25162583,0,#DIV/0!,0,0,0.675116659,1,0.065473065,0,0.954950831,0.993712794,0.724496596,1,0,0,0.087425874,0.312029739,0.782162214,0.50665881,0.961238037,0.922476074,0,0,0,0,0,0,-0.383627131,112.5585373,0.383627131,67.44146269,0,0.91966511,0,0,0,3,6,0% +3/19/2018 15:00,81.63241352,97.01644682,78.10440436,324.0053106,30.95406567,30.60947037,0,30.60947037,30.02068638,0.588783991,73.23657877,53.36588239,19.87069639,0.933379288,18.9373171,1.424754392,1.693256426,-6.056709253,6.056709253,0.434088027,0.396316519,0.38763671,12.46772908,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.85702564,0.676230117,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.280841477,11.98445543,29.13786712,12.66068554,0,53.36588239,-0.164706814,99.48020312,0.164706814,80.51979688,0,0.746430288,29.13786712,52.49459652,63.49453065,3,7,118% +3/19/2018 16:00,70.10251738,106.8571285,283.7707622,648.9515582,62.90773309,103.7018681,40.55185137,63.1500167,61.01083283,2.139183871,70.70040695,0,70.70040695,1.896900257,68.80350669,1.223519742,1.865008722,-2.210648409,2.210648409,0.908196832,0.221685041,1.986335379,63.88737376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64593318,1.374297779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43909322,61.41097373,60.0850264,62.78527151,40.55185137,0,0.062488256,86.41735248,-0.062488256,93.58264752,0,0,60.0850264,62.78527151,101.1767309,3,8,68% +3/19/2018 17:00,59.17181244,118.2380085,480.1908037,780.0869926,80.42322526,304.6821348,223.0640854,81.6180494,77.99816829,3.619881112,118.8528768,0,118.8528768,2.425056972,116.4278198,1.032742951,2.06364255,-1.116040081,1.116040081,0.721007784,0.167481811,2.779105463,89.38558479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.97480616,1.756945521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013452447,85.92082405,76.98825861,87.67776957,223.0640854,0,0.285947705,73.3844942,-0.285947705,106.6155058,0.875142853,0,272.2011986,87.67776957,329.5845453,3,9,21% +3/19/2018 18:00,49.49046807,132.3885084,639.3240844,842.9384693,91.77271329,506.7636059,412.9386836,93.82492238,89.00542738,4.819495,157.778812,0,157.778812,2.767285911,155.0115261,0.863771616,2.310615363,-0.542475289,0.542475289,0.622922428,0.143546467,3.263041888,104.9506438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55540228,2.004889222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.36406274,100.8825508,87.91946502,102.88744,412.9386836,0,0.489879984,60.66730645,-0.489879984,119.3326936,0.947934185,0,479.3581593,102.88744,546.695931,3,10,14% +3/19/2018 19:00,42.07894058,150.6670711,747.4986332,874.0555916,98.75516006,678.542593,577.1303049,101.4122881,95.77732762,5.634960442,184.2175303,0,184.2175303,2.977832444,181.2396979,0.734416059,2.629636465,-0.146424469,0.146424469,0.555193749,0.132114168,3.459634432,111.2737358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.06481038,2.157429469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506493369,106.9605473,94.57130374,109.1179768,577.1303049,0,0.660290158,48.67799433,-0.660290158,131.3220057,0.974275715,0,656.8553443,109.1179768,728.2708778,3,11,11% +3/19/2018 20:00,38.36519502,173.2770571,796.4738635,886.0047018,101.7835934,800.7090711,695.9904722,104.7185989,98.71444251,6.004156415,196.1834603,0,196.1834603,3.069150882,193.1143095,0.669598971,3.024255165,0.181799256,-0.181799256,0.499064186,0.12779276,3.380821331,108.7388355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.88807693,2.223589366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449393546,104.5239048,97.33747047,106.7474941,695.9904722,0,0.785538125,38.22952433,-0.785538125,141.7704757,0.986349366,0,783.8272312,106.7474941,853.6913312,3,12,9% +3/19/2018 21:00,39.44197945,197.2064265,782.6555544,882.7492491,100.9362818,860.382999,756.5903303,103.7926686,97.89268047,5.899988164,192.8075017,0,192.8075017,3.043601311,189.7639004,0.688392405,3.441901448,0.497439111,-0.497439111,0.445086592,0.128966416,3.048239416,98.04185788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.098168,2.205078789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208439081,94.241563,96.30660708,96.44664179,756.5903303,0,0.857084083,31.00925641,-0.857084083,148.9907436,0.991662666,0,846.5889915,96.44664179,909.7113896,3,13,7% +3/19/2018 22:00,44.95723271,218.0716294,707.0695382,863.2594241,96.19748235,849.7158357,751.0888735,98.62696217,93.29677332,5.330188846,174.3379047,0,174.3379047,2.900709024,171.4371957,0.784651733,3.806067937,0.847443861,-0.847443861,0.385232254,0.13605095,2.499176251,80.3820991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.68040723,2.101553813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810644687,77.26633114,91.49105192,79.36788495,751.0888735,0,0.870061597,29.5342017,-0.870061597,150.4657983,0.992532804,0,836.9713979,79.36788495,888.9160912,3,14,6% +3/19/2018 23:00,53.51550877,234.4041306,575.3557316,820.6395451,87.39920904,764.9894777,675.8884028,89.10107495,84.76380042,4.337274536,142.137067,0,142.137067,2.635408621,139.5016584,0.934021829,4.091123859,1.302402835,-1.302402835,0.307429687,0.151904647,1.789708398,57.56317416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.47818911,1.909344575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.296637642,55.33191253,82.77482675,57.2412571,675.8884028,0,0.823611788,34.55200077,-0.823611788,145.4479992,0.989291787,0,751.4256724,57.2412571,788.8889304,3,15,5% +3/19/2018 0:00,63.83535089,247.1800873,397.9313326,735.1738299,73.75483705,604.5625343,530.0319032,74.53063106,71.53085659,2.999774472,98.70703914,0,98.70703914,2.223980464,96.48305867,1.114137052,4.31410637,2.032972836,-2.032972836,0.182494859,0.185345639,1.001972286,32.22687296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75818016,1.611266275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.72592551,30.9776961,69.48410567,32.58896237,530.0319032,0,0.720961331,43.86609313,-0.720961331,136.1339069,0.980648153,0,589.2589125,32.58896237,610.5877366,3,16,4% +3/19/2018 1:00,75.08605962,257.7687744,192.2072144,545.4771851,51.81889125,362.2519925,310.5466928,51.70529966,50.25636049,1.448939171,48.16539519,0,48.16539519,1.562530763,46.60286443,1.310498963,4.498913822,3.720138737,-3.720138737,0,0.269599096,0.390632691,12.56409012,0.095863351,1,0.262599728,0,0.930047555,0.968809518,0.724496596,1,48.5020952,1.132048218,0.015685751,0.312029739,0.956481088,0.680977684,0.961238037,0.922476074,0.27632902,12.07708132,48.77842422,13.20912954,280.7766463,0,0.569311974,55.29773849,-0.569311974,124.7022615,0.962174691,0,318.9346071,13.20912954,327.5797182,3,17,3% +3/19/2018 2:00,86.650166,267.2653444,12.81759888,79.03733206,8.199263395,38.15865341,30.11000359,8.048649826,7.952025351,0.096624475,3.355013288,0,3.355013288,0.247238043,3.107775245,1.512330694,4.664660236,16.31474993,-16.31474993,0,0.639687938,0.061809511,1.988006338,0.693235806,1,0.06121764,0,0.955390503,0.994152466,0.724496596,1,7.691845302,0.179123121,0.089186497,0.312029739,0.778398875,0.502895471,0.961238037,0.922476074,0.042888649,1.910947309,7.734733951,2.09007043,9.236670967,0,0.380959261,67.60688587,-0.380959261,112.3931141,0.91875237,0,16.2209473,2.09007043,17.58885659,3,18,8% +3/19/2018 3:00,98.68858044,276.5362161,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722440663,4.826467472,-5.854381534,5.854381534,0.468688105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160523989,80.76268826,-0.160523989,99.23731174,0.738520076,0,0,0,0,3,19,0% +3/19/2018 4:00,110.277469,286.3978832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924704925,4.998586033,-2.178602459,2.178602459,0.902716652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067430359,93.86640875,0.067430359,86.13359125,0,0,0,0,0,3,20,0% +3/19/2018 5:00,121.2377542,297.8059871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115997988,5.197695007,-1.107367282,1.107367282,0.719524648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290903721,106.9120682,0.290903721,73.0879318,0,0.878121827,0,0,0,3,21,0% +3/19/2018 6:00,130.9496983,312.0141451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28550339,5.445674145,-0.540772601,0.540772601,0.622631251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494652084,119.646811,0.494652084,60.35318903,0,0.948918853,0,0,0,3,22,0% +3/19/2018 7:00,138.3868923,330.425057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415306913,5.767005177,-0.14774943,0.14774943,0.55542033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664776586,131.665188,0.664776586,48.33481201,0,0.974786761,0,0,0,3,23,0% +3/20/2018 8:00,142.0959094,353.2658207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480041473,6.165651706,0.178663176,-0.178663176,0.499600487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78967069,142.1547476,0.78967069,37.84525238,0,0.986682467,0,0,0,3,0,0% +3/20/2018 9:00,140.9634786,17.42519904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460276826,0.304127096,0.492767868,-0.492767868,0.445885421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860811083,149.4077736,0.860811083,30.59222642,0,0.991915246,0,0,0,3,1,0% +3/20/2018 10:00,135.3640619,38.39734404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362548568,0.670160078,0.840947269,-0.840947269,0.386343237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873338495,150.8489428,0.873338495,29.15105719,0,0.99274843,0,0,0,3,2,0% +3/20/2018 11:00,126.7262267,54.73660893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211789904,0.955334047,1.293043319,-1.293043319,0.309030259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82638888,145.7295561,0.82638888,34.27044389,0,0.989495798,0,0,0,3,3,0% +3/20/2018 12:00,116.3399075,67.48289185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030514437,1.177798652,2.017854427,-2.017854427,0.185080259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723152446,136.3153693,0.723152446,43.68463069,0,0.980858285,0,0,0,3,4,0% +3/20/2018 13:00,105.0226965,78.03690227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832991844,1.362000883,3.689548678,-3.689548678,0,#DIV/0!,0,0,0.091566709,1,0.26467706,0,0.92973961,0.968501574,0.724496596,1,0,0,0.015011811,0.312029739,0.95831133,0.682807926,0.961238037,0.922476074,0,0,0,0,0,0,-0.570656445,124.7960144,0.570656445,55.20398563,0,0.962381608,0,0,0,3,5,0% +3/20/2018 14:00,93.27196401,87.50313738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627902872,1.527217853,16.68221282,-16.68221282,0,#DIV/0!,0,0,0.699037466,1,0.059872442,0,0.955528599,0.994290562,0.724496596,1,0,0,0.089745354,0.312029739,0.777209507,0.501706103,0.961238037,0.922476074,0,0,0,0,0,0,-0.379286487,112.289493,0.379286487,67.71050696,0,0.918173527,0,0,0,3,6,0% +3/20/2018 15:00,81.33270847,96.74920634,82.89668714,336.7272572,32.15307016,31.80844671,0,31.80844671,31.18353647,0.624910243,75.05380978,53.98501454,21.06879524,0.969533698,20.09926154,1.419523552,1.688592199,-5.858048413,5.858048413,0.468061032,0.387869181,0.421429322,13.55461564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.97480137,0.702423864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.305324109,13.02921213,30.28012548,13.731636,0,53.98501454,-0.160322675,99.22562591,0.160322675,80.77437409,0,0.738128956,30.28012548,53.5795384,65.34686178,3,7,116% +3/20/2018 16:00,69.7890229,106.5900767,289.4856712,653.9472255,63.56129476,107.6002015,43.77324905,63.82695247,61.6446872,2.182265269,72.10576008,0,72.10576008,1.916607553,70.18915253,1.218048231,1.860347788,-2.180985126,2.180985126,0.903124112,0.21956629,2.017274648,64.88248702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.25521811,1.388575648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.461508615,62.36751445,60.71672673,63.75609009,43.77324905,0,0.066936975,86.16192407,-0.066936975,93.83807593,0,0,60.71672673,63.75609009,102.4438126,3,8,69% +3/20/2018 17:00,58.8372968,117.9783471,485.9117586,782.6334249,80.92236305,309.3814334,227.2361701,82.14526331,78.48225523,3.663008086,120.2550394,0,120.2550394,2.440107818,117.8149316,1.026904552,2.059110603,-1.106955171,1.106955171,0.719454173,0.166537157,2.806506969,90.26691142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44012894,1.767849807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033304745,86.76798873,77.47343369,88.53583854,227.2361701,0,0.290348154,73.12119937,-0.290348154,106.8788006,0.877792947,0,276.939741,88.53583854,334.8846766,3,9,21% +3/20/2018 18:00,49.12690596,132.1625994,644.8690844,844.5487462,92.2083821,511.6265944,417.3373397,94.28925472,89.42795916,4.861295552,159.1363985,0,159.1363985,2.780422933,156.3559756,0.85742626,2.306672508,-0.53958975,0.53958975,0.622428971,0.142987754,3.288262977,105.7618407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96155591,2.01440695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.382335333,101.6623041,88.34389124,103.676711,417.3373397,0,0.494154235,60.3860049,-0.494154235,119.6139951,0.948817016,0,484.3206606,103.676711,552.1749945,3,10,14% +3/20/2018 19:00,41.6861944,150.5391035,752.7873134,875.2461845,99.15481939,683.3290642,581.4892997,101.8397645,96.16493574,5.674828747,185.5118832,0,185.5118832,2.989883647,182.5219996,0.727561345,2.627403008,-0.146381255,0.146381255,0.555186359,0.131716911,3.483072765,112.0275931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.43739405,2.166160524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523474362,107.6851837,94.96086841,109.8513442,581.4892997,0,0.664372276,48.36581387,-0.664372276,131.6341861,0.97474099,0,661.7623238,109.8513442,733.6578316,3,11,11% +3/20/2018 20:00,37.96494155,173.3366848,801.464566,887.0081787,102.1585649,805.3029862,700.1831005,105.1198857,99.07810727,6.041778438,197.4048207,0,197.4048207,3.080457658,194.3243631,0.66261323,3.025295865,0.179994141,-0.179994141,0.499372879,0.127464855,3.402640453,109.4406135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.23764533,2.231781087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465201425,105.1984804,97.70284676,107.4302615,700.1831005,0,0.789376149,37.87275015,-0.789376149,142.1272498,0.986658841,0,788.5446934,107.4302615,858.8556509,3,12,9% +3/20/2018 21:00,39.07522648,197.4663508,787.3333792,883.7084966,101.2936601,864.73214,760.5576059,104.1745341,98.23928247,5.935251584,193.9524708,0,193.9524708,3.054377585,190.8980932,0.681991358,3.446437983,0.493911691,-0.493911691,0.445689816,0.128654091,3.068549336,98.69509473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.43133503,2.212886163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223153549,94.8694791,96.65448857,97.08236527,760.5576059,0,0.860643084,30.61113481,-0.860643084,149.3888652,0.991903908,0,851.05455,97.08236527,914.5930164,3,13,7% +3/20/2018 22:00,44.64852852,218.4369188,711.4416639,864.3096883,96.54488948,853.8208808,754.8240282,98.99685263,93.63370485,5.363147777,175.4084528,0,175.4084528,2.911184631,172.4972682,0.779263829,3.81244344,0.8416743,-0.8416743,0.386218907,0.135703171,2.518056595,80.98935586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.00427863,2.109143355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824323431,77.85004943,91.82860206,79.95919279,754.8240282,0,0.873325891,29.15253972,-0.873325891,150.8474603,0.992747604,0,841.1783473,79.95919279,893.5100398,3,14,6% +3/20/2018 23:00,53.2605461,234.7912001,579.4451334,821.9901737,87.74942829,768.916975,679.4454135,89.47156144,85.10345926,4.368102175,143.1391502,0,143.1391502,2.645969024,140.4931812,0.929571891,4.097879496,1.292756142,-1.292756142,0.309079369,0.151436992,1.807128911,58.12347776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.80468211,1.916995551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309258745,55.87049765,83.11394086,57.7874932,679.4454135,0,0.82658581,34.25040102,-0.82658581,145.749599,0.989510212,0,755.4321164,57.7874932,793.2528749,3,15,5% +3/20/2018 0:00,63.61867268,247.5575193,401.7584123,737.313374,74.13819637,608.5019014,533.5706206,74.93128082,71.90265621,3.028624616,99.64651863,0,99.64651863,2.235540161,97.41097847,1.110355304,4.320693799,2.014304828,-2.014304828,0.185687277,0.184534273,1.017484256,32.72579125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1155681,1.619641237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.73716388,31.45727534,69.85273198,33.07691658,533.5706206,0,0.723668713,43.64178716,-0.723668713,136.3582128,0.980907611,0,593.2362149,33.07691658,614.8843952,3,16,4% +3/20/2018 1:00,74.89258436,258.1331767,195.6893308,550.0089356,52.34079611,366.7273038,314.4895869,52.23771682,50.76252799,1.475188835,49.02541198,0,49.02541198,1.57826812,47.44714386,1.307122182,4.505273842,3.667000693,-3.667000693,0,0.267468829,0.39456703,12.690632,0.088373411,1,0.266228926,0,0.929508968,0.968270931,0.724496596,1,48.97799181,1.14344988,0.014509232,0.312029739,0.959678515,0.684175111,0.961238037,0.922476074,0.279559534,12.19871819,49.25755135,13.34216807,286.6970693,0,0.571789959,55.12486038,-0.571789959,124.8751396,0.962555303,0,325.2193357,13.34216807,333.9515178,3,17,3% +3/20/2018 2:00,86.47305695,267.6230202,14.3383484,86.91452546,8.991549262,42.13062317,33.30211377,8.828509403,8.720420877,0.108088527,3.747626959,0,3.747626959,0.271128386,3.476498574,1.509239558,4.670902856,15.46320606,-15.46320606,0,0.627097976,0.067782096,2.180105219,0.678891305,1,0.064579715,0,0.955043487,0.99380545,0.724496596,1,8.436922526,0.196431592,0.087794573,0.312029739,0.781372063,0.505868659,0.961238037,0.922476074,0.046966589,2.095600061,8.483889115,2.292031653,10.69359828,0,0.383159358,67.47048161,-0.383159358,112.5295184,0.919505993,0,18.31671682,2.292031653,19.8168057,3,18,8% +3/20/2018 3:00,98.50112004,276.8959747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719168862,4.832746444,-5.966571404,5.966571404,0.449502507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162758707,80.63294214,-0.162758707,99.36705786,0.742796773,0,0,0,0,3,19,0% +3/20/2018 4:00,110.074903,286.7679189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921169481,5.005044374,-2.191992122,2.191992122,0.90500642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065212773,93.73907004,0.065212773,86.26092996,0,0,0,0,0,3,20,0% +3/20/2018 5:00,121.0058404,298.18966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11195033,5.204391362,-1.109264057,1.109264057,0.719849016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288625803,106.7757027,0.288625803,73.2242973,0,0.876765315,0,0,0,3,21,0% +3/20/2018 6:00,130.6722748,312.3986537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280661437,5.452385086,-0.539183073,0.539183073,0.622359425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492240493,119.4879494,0.492240493,60.51205063,0,0.948423635,0,0,0,3,22,0% +3/20/2018 7:00,138.0512024,330.757167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409448018,5.772801589,-0.144362392,0.144362392,0.554841113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662167166,131.4653633,0.662167166,48.53463666,0,0.974490366,0,0,0,3,23,0% +3/21/2018 8:00,141.709094,353.4435166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473290271,6.168753085,0.183546999,-0.183546999,0.498765304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786812896,141.8886612,0.786812896,38.11133879,0,0.98645249,0,0,0,3,0,0% +3/21/2018 9:00,140.5620118,17.39105761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45326991,0.303531216,0.499476928,-0.499476928,0.444738104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857671478,149.0561334,0.857671478,30.94386661,0,0.99170262,0,0,0,3,1,0% +3/21/2018 10:00,134.9832788,38.21434747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355902651,0.666966185,0.850520908,-0.850520908,0.384706048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869903068,150.4473774,0.869903068,29.55262264,0,0.992522332,0,0,0,3,2,0% +3/21/2018 11:00,126.3762404,54.49032113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205681492,0.951035514,1.308110645,-1.308110645,0.306453595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822664023,145.3523688,0.822664023,34.64763124,0,0.989221847,0,0,0,3,3,0% +3/21/2018 12:00,116.0154152,67.21841187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024850978,1.173182605,2.046490515,-2.046490515,0.1801832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719164526,135.9855452,0.719164526,44.01445481,0,0.98047488,0,0,0,3,4,0% +3/21/2018 13:00,104.7144651,77.7698485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82761219,1.357339915,3.772896932,-3.772896932,0,#DIV/0!,0,0,0.103178976,1,0.259090881,0,0.930565639,0.969327602,0.724496596,1,0,0,0.016827224,0.312029739,0.953389273,0.677885869,0.961238037,0.922476074,0,0,0,0,0,0,-0.566450003,124.5030428,0.566450003,55.49695717,0,0.961730956,0,0,0,3,5,0% +3/21/2018 14:00,92.97072467,87.23650804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622645253,1.522564293,18.40411745,-18.40411745,0,#DIV/0!,0,0,0.723538162,1,0.054282289,0,0.956097889,0.994859852,0.724496596,1,0,0,0.092079749,0.312029739,0.772268484,0.49676508,0.961238037,0.922476074,0,0,0,0,0,0,-0.374921175,112.0194411,0.374921175,67.98055891,0,0.916638634,0,0,0,3,6,0% +3/21/2018 15:00,81.03269435,96.48207397,87.75231223,349.1537566,33.32942259,32.98593153,0,32.98593153,32.32441753,0.661513996,76.72193703,54.44036791,22.28156912,1.005005064,21.27656406,1.414287318,1.68392986,-5.672220819,5.672220819,0.499839422,0.379812472,0.456316752,14.67671532,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07145965,0.728122747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330599933,14.10781702,31.40205958,14.83593977,0,54.44036791,-0.1559209,98.97020932,0.1559209,81.02979068,0,0.72932458,31.40205958,54.54063824,67.0978165,3,7,114% +3/21/2018 16:00,69.47563372,106.3225253,295.1949732,658.8249442,64.20719912,111.529558,47.03313841,64.49641957,62.27111517,2.225304399,73.50952286,0,73.50952286,1.936083953,71.57343891,1.212578558,1.855678136,-2.152139863,2.152139863,0.898191282,0.217507766,2.048026567,65.87157444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.8573645,1.402686233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.483788276,63.3182629,61.34115277,64.72094913,47.03313841,0,0.071389432,85.90620452,-0.071389432,94.09379548,0,0,61.34115277,64.72094913,103.6997196,3,8,69% +3/21/2018 17:00,58.50307353,117.7175082,491.6096702,785.1277927,81.41743643,314.07736,231.4089983,82.66836167,78.96240032,3.705961351,121.6514923,0,121.6514923,2.455036107,119.1964562,1.021071256,2.054558106,-1.098019942,1.098019942,0.717926159,0.165613985,2.833731963,91.14256081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.90166267,1.778665302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053029161,87.60969623,77.95469183,89.38836153,231.4089983,0,0.294740551,72.85801966,-0.294740551,107.1419803,0.880359278,0,281.6777504,89.38836153,340.1806453,3,9,21% +3/21/2018 18:00,48.76365062,131.9349825,650.3797541,846.1275141,92.64069661,516.467858,421.7177829,94.7500751,89.8472378,4.902837308,160.48556,0,160.48556,2.79345881,157.6921012,0.851086259,2.302699843,-0.536729772,0.536729772,0.621939886,0.142440929,3.313293917,106.5669217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36458248,2.023851399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.400470164,102.4361786,88.76505264,104.46003,421.7177829,0,0.498409254,60.10518724,-0.498409254,119.8948128,0.949680835,0,489.262349,104.46003,557.6293495,3,10,14% +3/21/2018 19:00,41.29359671,150.410067,758.0335892,876.4131348,99.55119416,688.0803676,585.8166319,102.2637357,96.54935835,5.71437739,186.7958557,0,186.7958557,3.001835809,183.7940199,0.720709223,2.625150897,-0.146324741,0.146324741,0.555176694,0.13132821,3.50631078,112.7750075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80691568,2.174819825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540310224,108.4036269,95.34722591,110.5784467,585.8166319,0,0.668425208,48.05436235,-0.668425208,131.9456376,0.975197315,0,666.6340326,110.5784467,739.0054144,3,11,11% +3/21/2018 20:00,37.56491213,173.3983263,806.4078949,887.9909676,102.53018,809.8514999,704.3339398,105.5175601,99.43851675,6.07904334,198.6145936,0,198.6145936,3.091663222,195.5229304,0.6556314,3.026371711,0.178222072,-0.178222072,0.49967592,0.127144316,3.424259965,110.1359713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58408463,2.23989948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.480864688,105.8668848,98.06494932,108.1067843,704.3339398,0,0.793176919,37.51660139,-0.793176919,142.4833986,0.986962361,0,793.2160377,108.1067843,863.9697659,3,12,9% +3/21/2018 21:00,38.7094328,197.731156,791.9621401,884.6472379,101.6476072,869.0287431,764.4760412,104.5527019,98.58255677,5.970145138,195.0854403,0,195.0854403,3.065050396,192.0203899,0.675607054,3.451059706,0.490435599,-0.490435599,0.446284263,0.128349074,3.088673481,99.34235639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.76130334,2.220618578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237733423,95.49165164,96.99903676,97.71227021,764.4760412,0,0.864159191,30.21316593,-0.864159191,149.7868341,0.99214029,0,855.4665181,97.71227021,919.4172447,3,13,7% +3/21/2018 22:00,44.34149005,218.8067033,715.7664149,865.3370215,96.88880209,857.8693693,758.5063725,99.3629968,93.96724722,5.395749576,176.467409,0,176.467409,2.921554865,173.5458541,0.773904997,3.818897398,0.835984357,-0.835984357,0.387191945,0.135363717,2.536778861,81.5915283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32489225,2.116656554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.837887649,78.42888048,92.1627799,80.54553704,758.5063725,0,0.87654446,28.77170768,-0.87654446,151.2282923,0.992957828,0,845.3276199,80.54553704,898.043063,3,14,6% +3/21/2018 23:00,53.00738984,235.1811482,583.4922422,823.3112062,88.09599938,772.7865996,682.9484086,89.83819095,85.43957996,4.39861099,144.130869,0,144.130869,2.656419421,141.4744495,0.925153481,4.104685375,1.283250692,-1.283250692,0.310704897,0.150980584,1.824434198,58.68007526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12777411,1.924566828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321796366,56.40552035,83.44957048,58.33008717,682.9484086,0,0.829514288,33.95112413,-0.829514288,146.0488759,0.989723763,0,759.3798392,58.33008717,797.5557147,3,15,5% +3/21/2018 0:00,63.40355401,247.9365603,405.5519358,739.4058846,74.51724211,612.3829377,537.0554435,75.32749412,72.27027232,3.057221798,100.5777319,0,100.5777319,2.246969789,98.33076215,1.106600775,4.327309313,1.995968204,-1.995968204,0.188823024,0.183742785,1.032946405,33.2231071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.46893469,1.627921963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748366154,31.93531425,70.21730084,33.56323621,537.0554435,0,0.726333743,43.42008713,-0.726333743,136.5799129,0.981161122,0,597.1552223,33.56323621,619.1216892,3,16,4% +3/21/2018 1:00,74.7002526,258.4983786,199.1539613,554.437634,52.85516949,371.1383941,318.3756963,52.7626978,51.26139112,1.501306683,49.88096202,0,49.88096202,1.593778375,48.28718364,1.30376536,4.511647818,3.615311024,-3.615311024,0,0.265398535,0.398444594,12.81534778,0.08096759,1,0.269854386,0,0.928968167,0.96773013,0.724496596,1,49.44631071,1.154687007,0.013338042,0.312029739,0.962872223,0.687368819,0.961238037,0.922476074,0.282766432,12.31859974,49.72907715,13.47328675,292.5975836,0,0.574231756,54.95415065,-0.574231756,125.0458494,0.962927142,0,331.4792322,13.47328675,340.2972289,3,17,3% +3/21/2018 2:00,86.29617325,267.9809408,15.93451841,94.9832365,9.79870027,46.22412878,36.60077435,9.623354434,9.503233303,0.120121131,4.158975437,0,4.158975437,0.295466966,3.863508471,1.506152355,4.677149749,14.69331087,-14.69331087,0,0.614935451,0.073866742,2.375808326,0.664716485,1,0.067953391,0,0.954692592,0.993454555,0.724496596,1,9.196172801,0.214064811,0.086404729,0.312029739,0.784356291,0.508852887,0.961238037,0.922476074,0.051114643,2.283717331,9.247287445,2.497782142,12.27163627,0,0.385339305,67.33519365,-0.385339305,112.6648063,0.920244225,0,20.54018986,2.497782142,22.17493832,3,18,8% +3/21/2018 3:00,98.31391607,277.2554936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715901536,4.839021233,-6.083346011,6.083346011,0.429532873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164975139,80.50420978,-0.164975139,99.49579022,0.746924031,0,0,0,0,3,19,0% +3/21/2018 4:00,109.8721497,287.1371381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917630769,5.011488464,-2.205569815,2.205569815,0.907328342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063002355,93.61216138,0.063002355,86.38783862,0,0,0,0,0,3,20,0% +3/21/2018 5:00,120.773366,298.5716728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107892886,5.211058743,-1.111157015,1.111157015,0.72017273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286343619,106.6391799,0.286343619,73.36082008,0,0.87538462,0,0,0,3,21,0% +3/21/2018 6:00,130.3941238,312.7803024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275806786,5.459046112,-0.537559185,0.537559185,0.622081724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489813676,119.3283358,0.489813676,60.67166424,0,0.947920368,0,0,0,3,22,0% +3/21/2018 7:00,137.7150373,331.0855096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40358083,5.778532248,-0.140928646,0.140928646,0.554253907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659532784,131.26425,0.659532784,48.73575,0,0.974188757,0,0,0,3,23,0% +3/22/2018 8:00,141.3223584,353.6189723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46654046,6.171815364,0.188491378,-0.188491378,0.497919765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783922306,141.6211143,0.783922306,38.37888568,0,0.986218169,0,0,0,3,0,0% +3/22/2018 9:00,140.1607107,17.35837642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446265884,0.302960821,0.506270846,-0.506270846,0.443576276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854493684,148.7038441,0.854493684,31.29615589,0,0.991485817,0,0,0,3,1,0% +3/22/2018 10:00,134.6022308,38.03459754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349252108,0.663828957,0.860229858,-0.860229858,0.38304572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866426869,150.0460366,0.866426869,29.95396343,0,0.992291725,0,0,0,3,2,0% +3/22/2018 11:00,126.0256714,54.24696572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199562908,0.946788161,1.323438828,-1.323438828,0.303832321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818898802,144.9747111,0.818898802,35.02528895,0,0.988942394,0,0,0,3,3,0% +3/22/2018 12:00,115.6902996,66.95602697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019176641,1.168603125,2.075814143,-2.075814143,0.175168564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715139616,135.6546423,0.715139616,44.34535765,0,0.980083582,0,0,0,3,4,0% +3/22/2018 13:00,104.4057514,77.50413031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822224119,1.352702258,3.85977761,-3.85977761,0,#DIV/0!,0,0,0.114971531,1,0.25350826,0,0.931384546,0.970146509,0.724496596,1,0,0,0.018651477,0.312029739,0.948469269,0.672965865,0.961238037,0.922476074,0,0,0,0,0,0,-0.562212678,124.2089577,0.562212678,55.7910423,0,0.961065684,0,0,0,3,5,0% +3/22/2018 14:00,92.66923337,86.97058443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617383238,1.517923051,20.51569146,-20.51569146,0,#DIV/0!,0,0,0.74863232,1,0.04870463,0,0.956658522,0.995420486,0.724496596,1,0,0,0.094428456,0.312029739,0.767341267,0.491837863,0.961238037,0.922476074,0,0,0,0,0,0,-0.370533404,111.7485174,0.370533404,68.25148258,0,0.915059399,0,0,0,3,6,0% +3/22/2018 15:00,80.73251747,96.21506976,92.66455784,361.2788338,34.48287121,34.14163,0,34.14163,33.44308542,0.698544579,78.24257191,54.73519124,23.50738068,1.039785795,22.46759488,1.409048243,1.679269757,-5.498085081,5.498085081,0.529618387,0.372125784,0.492236083,15.83200447,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.14676577,0.753321269,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.356623366,15.2183249,32.50338914,15.97164617,0,54.73519124,-0.151504008,98.71409607,0.151504008,81.28590393,0,0.719975727,32.50338914,55.37965528,68.74826593,3,7,112% +3/22/2018 16:00,69.16248447,106.0544867,300.8956671,663.5863101,64.84542069,115.4869587,50.32858801,65.15837064,62.890092,2.268278637,74.91096682,0,74.91096682,1.955328688,72.95563813,1.207113073,1.85099998,-2.124089182,2.124089182,0.893394333,0.215507991,2.07857956,66.85426371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.45234858,1.416628978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505923815,64.2628612,61.95827239,65.67949018,50.32858801,0,0.075843319,85.65032107,-0.075843319,94.34967893,0,0,61.95827239,65.67949018,104.9441851,3,8,69% +3/22/2018 17:00,58.16927966,117.4554841,497.2819512,787.5703992,81.90833833,318.7673898,235.5801687,83.18722112,79.43849972,3.748721401,123.041605,0,123.041605,2.46983861,120.5717664,1.015245454,2.049984922,-1.089234545,1.089234545,0.716423767,0.164712068,2.86076999,92.01219672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35930752,1.789389665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072618119,88.44562334,78.43192564,90.235013,235.5801687,0,0.29912268,72.59508311,-0.29912268,107.4049169,0.882844504,0,286.4125828,90.235013,345.4695941,3,9,21% +3/22/2018 18:00,48.40083974,131.7056111,655.8538079,847.6748445,93.06954929,521.285078,426.0778159,95.20726203,90.26315899,4.944103037,161.8257392,0,161.8257392,2.806390301,159.0193489,0.844754014,2.298696557,-0.533897039,0.533897039,0.621455461,0.141905937,3.338125761,107.3655992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76438175,2.03322022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418460751,103.2038978,89.1828425,105.237118,426.0778159,0,0.502642987,59.82498679,-0.502642987,120.1750132,0.950525818,0,494.180807,105.237118,563.056396,3,10,14% +3/22/2018 19:00,40.90127673,150.279878,763.2355028,877.5564869,99.94419114,692.7944412,590.1103445,102.6840966,96.93050502,5.753591612,188.0689702,0,188.0689702,3.013686118,185.0552841,0.713861947,2.622878671,-0.146256521,0.146256521,0.555165028,0.130948037,3.529341092,113.5157415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.17328835,2.183405333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556995607,109.1156485,95.73028396,111.2990539,590.1103445,0,0.672447134,47.74378211,-0.672447134,132.2562179,0.975644712,0,671.4683214,111.2990539,744.3113262,3,11,11% +3/22/2018 20:00,37.16522162,173.4619281,811.3022407,888.9531388,102.8983635,814.3528731,708.4413359,105.9115372,99.79559819,6.115938986,199.8123865,0,199.8123865,3.102765314,196.7096212,0.648655485,3.027481773,0.176481585,-0.176481585,0.499973561,0.12683111,3.445673967,110.8247192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.92732489,2.247942908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49637906,106.5289355,98.42370395,108.7768784,708.4413359,0,0.796938899,37.16122496,-0.796938899,142.838775,0.987259933,0,797.8394498,108.7768784,869.0317411,3,12,9% +3/22/2018 21:00,38.34470416,198.0008034,796.5405758,885.5655973,101.9980678,873.2714394,768.3443304,104.927109,98.9224497,6.004659321,196.2061027,0,196.2061027,3.075618076,193.1304846,0.669241338,3.455765941,0.487009322,-0.487009322,0.44687019,0.128051314,3.108607265,99.9834954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.08802135,2.228274826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252175381,96.10793883,97.34019673,98.33621366,768.3443304,0,0.867631187,29.81547583,-0.867631187,150.1845242,0.992371827,0,859.8234637,98.33621366,924.1825489,3,13,7% +3/22/2018 22:00,44.03620028,219.180879,720.0428532,866.3416435,97.22918564,861.8603252,762.134971,99.72535413,94.29736696,5.427987175,177.5145448,0,177.5145448,2.931818685,174.5827261,0.768576685,3.825427996,0.830372101,-0.830372101,0.388151697,0.135032499,2.555339506,82.18850242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.64221589,2.124092657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851334773,79.00271472,92.49355067,81.12680738,762.134971,0,0.879716422,28.39182549,-0.879716422,151.6081745,0.993163503,0,849.4181881,81.12680738,902.514061,3,14,6% +3/22/2018 23:00,52.75609205,235.573836,587.4963909,824.6030569,88.43891205,776.5977748,686.3968263,90.2009485,85.77215255,4.428795954,145.1120613,0,145.1120613,2.666759503,142.4453018,0.920767507,4.111539069,1.273883137,-1.273883137,0.312306843,0.150535243,1.841621348,59.2328731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.44745553,1.932058182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334248398,56.93689065,83.78170393,58.86894884,686.3968263,0,0.832396655,33.65427465,-0.832396655,146.3457253,0.989932483,0,763.2682187,58.86894884,801.7967683,3,15,5% +3/22/2018 0:00,63.19002358,248.317071,409.3114129,741.4522757,74.89200417,616.2054852,540.486189,75.71929624,72.63373392,3.085562325,101.5005612,0,101.5005612,2.258270248,99.24229091,1.102873966,4.333950477,1.977953749,-1.977953749,0.191903677,0.182970721,1.048355727,33.71872389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8183078,1.636109107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.759530156,32.41171995,70.57783796,34.04782906,540.486189,0,0.72895614,43.20104516,-0.72895614,136.7989548,0.981408768,0,601.0157226,34.04782906,623.2993458,3,16,4% +3/22/2018 1:00,74.5090803,258.8642487,202.6004903,558.7657915,53.36216263,375.4855857,322.2052011,53.28038462,51.75309655,1.527288075,50.73190059,0,50.73190059,1.609066089,49.1228345,1.300428774,4.518033455,3.565009457,-3.565009457,0,0.263386148,0.402266522,12.93827414,0.073644205,1,0.273476154,0,0.928425161,0.967187124,0.724496596,1,49.90719454,1.165762904,0.012172106,0.312029739,0.966062271,0.690558866,0.961238037,0.922476074,0.285950391,12.43676123,50.19314494,13.60252414,298.4766553,0,0.576637307,54.7856254,-0.576637307,125.2143746,0.963290383,0,337.7128366,13.60252414,346.6154165,3,17,3% +3/22/2018 2:00,86.1195661,268.3389806,17.60245909,103.2109406,10.61770155,50.42432139,39.99408794,10.43023345,10.29753868,0.132694772,4.588082878,0,4.588082878,0.320162877,4.267920001,1.503069979,4.683398723,13.9939613,-13.9939613,0,0.603194218,0.080040719,2.574384669,0.650710497,1,0.071338131,0,0.95433785,0.993099813,0.724496596,1,9.96675081,0.231956914,0.08501718,0.312029739,0.787351019,0.511847615,0.961238037,0.922476074,0.055317788,2.474596465,10.0220686,2.70655338,13.96951508,0,0.387498532,67.20105998,-0.387498532,112.79894,0.920967253,0,22.88753453,2.70655338,24.65891958,3,18,8% +3/22/2018 3:00,98.12697956,277.6146484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712638878,4.845289666,-6.205011361,6.205011361,0.408726873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16717349,80.37647972,-0.16717349,99.62352028,0.750909517,0,0,0,0,3,19,0% +3/22/2018 4:00,109.6692284,287.5054135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.914089123,5.017916083,-2.219344296,2.219344296,0.909683917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.060798905,93.48567036,0.060798905,86.51432964,0,0,0,0,0,3,20,0% +3/22/2018 5:00,120.5403662,298.9518963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103826273,5.217694896,-1.113048604,1.113048604,0.720496211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28405706,106.5024928,0.28405706,73.49750725,0,0.873979027,0,0,0,3,21,0% +3/22/2018 6:00,130.1153052,313.1589745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270940483,5.465655188,-0.535902519,0.535902519,0.621798418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487371691,119.1679763,0.487371691,60.83202367,0,0.947408896,0,0,0,3,22,0% +3/22/2018 7:00,137.3784831,331.4100087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397706851,5.784195827,-0.137449526,0.137449526,0.553658943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656873743,131.0618802,0.656873743,48.9381198,0,0.973881871,0,0,0,3,23,0% +3/23/2018 8:00,140.9358055,353.7921209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459793839,6.174837377,0.1934951,-0.1934951,0.497064079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780999515,141.3521814,0.780999515,38.64781863,0,0.985979474,0,0,0,3,0,0% +3/23/2018 9:00,139.7596978,17.32703328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.439266888,0.30241378,0.513148563,-0.513148563,0.442400117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85127862,148.3510127,0.85127862,31.64898735,0,0.991264823,0,0,0,3,1,0% +3/23/2018 10:00,134.2210604,37.85798979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34259943,0.66074657,0.870073577,-0.870073577,0.381362345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862911155,149.6450356,0.862911155,30.35496445,0,0.992056607,0,0,0,3,2,0% +3/23/2018 11:00,125.6746673,54.00649618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193436731,0.942591176,1.339029618,-1.339029618,0.301166139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815094799,144.5967364,0.815094799,35.40326357,0,0.988657442,0,0,0,3,3,0% +3/23/2018 12:00,115.3647048,66.69572956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013493939,1.164060078,2.105840905,-2.105840905,0.170033685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711079585,135.3228214,0.711079585,44.67717863,0,0.979684383,0,0,0,3,4,0% +3/23/2018 13:00,104.0966943,77.23975883,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816830057,1.348088105,3.950391596,-3.950391596,0,#DIV/0!,0,0,0.126944885,1,0.24793126,0,0.93219602,0.970957983,0.724496596,1,0,0,0.020484055,0.312029739,0.94355309,0.668049686,0.961238037,0.922476074,0,0,0,0,0,0,-0.557946574,123.9139082,0.557946574,56.08609175,0,0.960385685,0,0,0,3,5,0% +3/23/2018 14:00,92.36762567,86.70538494,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61211919,1.513294446,23.16514815,-23.16514815,0,#DIV/0!,0,0,0.774333605,1,0.043141512,0,0.95721033,0.995972293,0.724496596,1,0,0,0.096790838,0.312029739,0.76243001,0.486926606,0.961238037,0.922476074,0,0,0,0,0,0,-0.366125439,111.4768606,0.366125439,68.52313945,0,0.913434783,0,0,0,3,6,0% +3/23/2018 15:00,80.43232491,95.9482122,97.62692045,373.0985907,35.61329151,35.27537233,0,35.27537233,34.53941937,0.735952964,79.61795559,54.8733063,24.74464929,1.073872138,23.67077715,1.403808895,1.674612214,-5.33463152,5.33463152,0.557570592,0.364789664,0.529123883,17.01844294,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.20060367,0.778016708,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383348452,16.35877468,33.58395212,17.13679139,0,54.8733063,-0.147074547,98.45743014,0.147074547,81.54256986,0,0.710036349,33.58395212,56.09883347,70.29951665,3,7,109% +3/23/2018 16:00,68.84971174,105.7859718,306.5847448,668.2329312,65.47593307,119.4693825,53.65662512,65.81275741,63.50159211,2.311165308,76.30936185,0,76.30936185,1.974340962,74.33502089,1.201654159,1.846313511,-2.096810712,2.096810712,0.88872944,0.213565529,2.108922156,67.8301859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.04014573,1.430403306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.527906923,65.20095473,62.56805266,66.63135804,53.65662512,0,0.08029629,85.39440332,-0.08029629,94.60559668,0,0,62.56805266,66.63135804,106.1769439,3,8,70% +3/23/2018 17:00,57.83605407,117.1922653,502.9260185,789.9615628,82.3949627,323.4489725,239.7472532,83.70171933,79.91045057,3.791268765,124.424748,0,124.424748,2.48451213,121.9402359,1.00942957,2.045390887,-1.080599162,1.080599162,0.71494703,0.163831179,2.887610733,92.87548725,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.81296463,1.800020581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092064146,89.27545104,78.90502877,91.07547162,239.7472532,0,0.303492302,72.33251984,-0.303492302,107.6674802,0.885251175,0,291.1415665,91.07547162,350.7486411,3,9,20% +3/23/2018 18:00,48.03861274,131.4744358,661.2889837,849.1908221,93.49483452,526.0759321,430.4152361,95.66069598,90.6756203,4.985075689,163.1563844,0,163.1563844,2.81921422,160.3371702,0.83843196,2.294661788,-0.531093254,0.531093254,0.620975985,0.141382719,3.36274976,108.1575916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16085524,2.042511105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436300754,103.9651911,89.597156,106.0077022,430.4152361,0,0.506853377,59.54553886,-0.506853377,120.4544611,0.951352142,0,499.0736128,106.0077022,568.4535337,3,10,14% +3/23/2018 19:00,40.50936481,150.148447,768.3911376,878.6762975,100.3337197,697.4692416,594.3684967,103.1007449,97.30828789,5.792456965,189.3307593,0,189.3307593,3.025431842,186.3053274,0.707021794,2.620584767,-0.14617822,0.14617822,0.555151638,0.130576363,3.55215657,114.2495657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.53642762,2.191915071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.573525343,109.8210283,96.10995296,112.0129433,594.3684967,0,0.676436247,47.43421744,-0.676436247,132.5657826,0.976083204,0,676.2630597,112.0129433,749.5732908,3,11,11% +3/23/2018 20:00,36.76598475,173.5274294,816.1460517,889.8947742,103.2630439,818.8054073,712.5036715,106.3017358,100.1492822,6.152453679,200.997821,0,200.997821,3.113761774,197.8840592,0.641687487,3.028624985,0.174771178,-0.174771178,0.500266058,0.126525202,3.46687686,111.5066771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.26729937,2.255909806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511740483,107.1844594,98.77903985,109.4403692,712.5036715,0,0.800660586,36.80676993,-0.800660586,143.1932301,0.987551566,0,802.4131562,109.4403692,874.039689,3,12,9% +3/23/2018 21:00,37.98114443,198.2752458,801.067496,886.4637117,102.3449907,877.4589196,772.1612228,105.2976967,99.25891157,6.038785157,197.3141679,0,197.3141679,3.086079081,194.2280888,0.662896024,3.460555864,0.483631302,-0.483631302,0.447447866,0.127760758,3.128346427,100.6183747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4114413,2.235853789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266476337,96.71820898,97.67791763,98.95406277,772.1612228,0,0.871057904,29.41819154,-0.871057904,150.5818085,0.992598535,0,864.124016,98.95406277,928.887471,3,13,7% +3/23/2018 22:00,43.7327386,219.5593333,724.2701206,867.3237888,97.56601025,865.7928485,765.7089593,100.0838892,94.62403506,5.459854102,178.5496512,0,178.5496512,2.941975189,175.6076761,0.763280279,3.83203327,0.824835555,-0.824835555,0.389098502,0.134709423,2.573735316,82.78017493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.9562217,2.13145101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864662475,79.57145284,92.82088417,81.70290385,765.7089593,0,0.882840952,28.01301202,-0.882840952,151.986988,0.993364657,0,853.449102,81.70290385,906.9220185,3,14,6% +3/23/2018 23:00,52.50670046,235.9691183,591.4569965,825.8661567,88.77816104,780.3500118,689.7901872,90.5598246,86.10117192,4.458652672,146.0825856,0,146.0825856,2.676989112,143.4055964,0.916414802,4.118438048,1.264650091,-1.264650091,0.313885787,0.150100788,1.858687772,59.78178794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.76372147,1.939469499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346612964,57.46452848,84.11033443,59.40399798,689.7901872,0,0.835232418,33.35995307,-0.835232418,146.6400469,0.990136423,0,767.0967231,59.40399798,805.9754517,3,15,5% +3/23/2018 0:00,62.97810589,248.698908,413.0364369,743.4534792,75.26251743,619.9694808,543.8627629,76.10671796,72.99307484,3.113643128,102.4149087,0,102.4149087,2.26944259,100.1454661,1.099175304,4.340614791,1.960252359,-1.960252359,0.194930793,0.182217622,1.063709511,34.21255435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16371996,1.644203431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.77065392,32.88640858,70.93437388,34.53061201,543.8627629,0,0.731535702,42.98470766,-0.731535702,137.0152923,0.981650636,0,604.8176009,34.53061201,627.4171959,3,16,4% +3/23/2018 1:00,74.31907964,259.2306529,206.0283891,562.9959366,53.86193058,379.7693044,325.9783807,53.79092367,52.23779465,1.553129024,51.57810419,0,51.57810419,1.624135936,49.95396826,1.297112637,4.524428416,3.516038424,-3.516038424,0,0.261429654,0.406033984,13.05944866,0.066401531,1,0.277094319,0,0.927879953,0.966641916,0.724496596,1,50.36078946,1.176680957,0.011011334,0.312029739,0.969248755,0.693745351,0.961238037,0.922476074,0.289112113,12.55323879,50.64990157,13.72991975,304.3329171,0,0.579006631,54.61929533,-0.579006631,125.3807047,0.963645203,0,343.9188573,13.72991975,352.9048152,3,17,3% +3/23/2018 2:00,85.94327945,268.6970122,19.33850372,111.5671434,11.44579904,54.71709126,43.47064348,11.24644778,11.10066597,0.14578181,5.033977192,0,5.033977192,0.345133072,4.688844121,1.499993196,4.689647553,13.35595782,-13.35595782,0,0.591865803,0.086283268,2.775166492,0.636871965,1,0.07473351,0,0.953979285,0.992741248,0.724496596,1,10.74605342,0.250047735,0.083632089,0.312029739,0.790355812,0.514852408,0.961238037,0.922476074,0.059562444,2.667595591,10.80561586,2.917643326,15.78540937,0,0.38963661,67.06810992,-0.38963661,112.9318901,0.921675303,0,25.35463782,2.917643326,27.26417702,3,18,8% +3/23/2018 3:00,97.94031899,277.973313,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709381037,4.851549545,-6.331903172,6.331903172,0.387027095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.169354033,80.24973669,-0.169354033,99.75026331,0.7547605,0,0,0,0,3,19,0% +3/23/2018 4:00,109.4661562,287.8726169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910544845,5.024324991,-2.233325074,2.233325074,0.912074771,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058602165,93.35958151,0.058602165,86.64041849,0,0,0,0,0,3,20,0% +3/23/2018 5:00,120.3068752,299.3302006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099751085,5.224297551,-1.114941515,1.114941515,0.720819918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281765973,106.3656318,0.281765973,73.63436822,0,0.872547771,0,0,0,3,21,0% +3/23/2018 6:00,129.8358782,313.5345532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266063561,5.472210272,-0.534214805,0.534214805,0.621509802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484914577,119.0068759,0.484914577,60.99312411,0,0.946889056,0,0,0,3,22,0% +3/23/2018 7:00,137.0416255,331.7305874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391827577,5.789790979,-0.133926484,0.133926484,0.553056467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654190339,130.8582856,0.654190339,49.14171438,0,0.973569645,0,0,0,3,23,0% +3/24/2018 8:00,140.549538,353.9628934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4530522,6.17781792,0.198556832,-0.198556832,0.496198471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778045134,141.0819365,0.778045134,38.91806346,0,0.985736376,0,0,0,3,0,0% +3/24/2018 9:00,139.3590956,17.29690438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432275061,0.301887932,0.520108888,-0.520108888,0.441209831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848027242,147.9977452,0.848027242,32.00225476,0,0.99103963,0,0,0,3,1,0% +3/24/2018 10:00,133.8399111,37.68441648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335947119,0.657717144,0.880051355,-0.880051355,0.379656044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859357233,149.2444894,0.859357233,30.75551055,0,0.991816979,0,0,0,3,2,0% +3/24/2018 11:00,125.3233774,53.7688614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187305566,0.938443666,1.354884551,-1.354884551,0.298454785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811253656,144.2185985,0.811253656,35.78140153,0,0.988366996,0,0,0,3,3,0% +3/24/2018 12:00,115.0387767,66.43750766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007805421,1.159553256,2.136586482,-2.136586482,0.164775882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706986374,134.9902444,0.706986374,45.00975555,0,0.979277279,0,0,0,3,4,0% +3/24/2018 13:00,103.7874353,76.97674158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811432468,1.343497588,4.044954208,-4.044954208,0,#DIV/0!,0,0,0.13909935,1,0.242361982,0,0.932999754,0.971761717,0.724496596,1,0,0,0.022324419,0.312029739,0.938642546,0.663139142,0.961238037,0.922476074,0,0,0,0,0,0,-0.553653866,123.6180464,0.553653866,56.38195361,0,0.959690868,0,0,0,3,5,0% +3/24/2018 14:00,92.06603958,86.440925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60685552,1.50867875,26.58673811,-26.58673811,0,#DIV/0!,0,0,0.800655695,1,0.037595015,0,0.95775315,0.996515113,0.724496596,1,0,0,0.099166216,0.312029739,0.75753691,0.482033506,0.961238037,0.922476074,0,0,0,0,0,0,-0.361699616,111.204612,0.361699616,68.79538801,0,0.911763746,0,0,0,3,6,0% +3/24/2018 15:00,80.13226498,95.68151723,102.633095,384.6108889,36.72066225,36.38709042,0,36.38709042,35.61339879,0.773691622,80.85086126,54.85901569,25.99184557,1.107263452,24.88458212,1.398571861,1.669957509,-5.180964166,5.180964166,0.583849257,0.357785783,0.566916406,18.23398037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.23295354,0.802208601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.410729006,17.5271955,34.64368255,18.3294041,0,54.85901569,-0.142635108,98.20035742,0.142635108,81.79964258,0,0.699455168,34.64368255,56.70082613,71.75323924,3,7,107% +3/24/2018 16:00,68.53745431,105.5169893,312.2591862,672.7664176,66.09870803,123.4737607,57.01423092,66.45952975,64.10558811,2.353941644,77.70397483,0,77.70397483,1.993119925,75.71085491,1.196204239,1.841618879,-2.070283174,2.070283174,0.884192964,0.211678986,2.139042967,68.79897472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.62072966,1.444008601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549729348,66.13219139,63.17045901,67.5762,57.01423092,0,0.084745953,85.13858369,-0.084745953,94.86141631,0,0,63.17045901,67.5762,107.3977304,3,8,70% +3/24/2018 17:00,57.50353774,116.9278399,508.5392906,792.3016138,82.87720414,328.1195255,243.9077909,84.21173463,80.37815065,3.833583981,125.8002922,0,125.8002922,2.499053489,123.3012387,1.003626065,2.040775793,-1.072114039,1.072114039,0.713495988,0.162971093,2.914244003,93.7321048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.26253574,1.810555746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.11135986,90.09886441,79.3738956,91.90942015,243.9077909,0,0.307847146,72.07046267,-0.307847146,107.9295373,0.887581733,0,295.8619953,91.90942015,356.0148726,3,9,20% +3/24/2018 18:00,47.67711088,131.2414032,666.6830423,850.6755435,93.91644839,530.8380896,434.7278302,96.11025934,91.08452096,5.025738381,164.4769496,0,164.4769496,2.831927434,161.6450222,0.832122563,2.2905946,-0.528320163,0.528320163,0.620501759,0.140871212,3.387157374,108.9426244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55390611,2.051721786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.453983987,104.7197944,90.0078901,106.7715162,434.7278302,0,0.511038355,59.26698119,-0.511038355,120.7330188,0.952159986,0,503.9383347,106.7715162,573.8181566,3,10,14% +3/24/2018 19:00,40.11799241,150.0156765,773.4986217,879.7726346,100.7196922,702.102742,598.5891609,103.5135812,97.68262182,5.830959338,190.5807664,0,190.5807664,3.037070335,187.5436961,0.700191057,2.618267484,-0.146091518,0.146091518,0.555136811,0.13021315,3.574750368,114.97626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.89625163,2.200347119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.589894473,110.5195544,96.48614611,112.7199015,598.5891609,0,0.680390748,47.12581499,-0.680390748,132.874185,0.976512816,0,681.0161333,112.7199015,754.7890544,3,11,11% +3/24/2018 20:00,36.36731551,173.5947595,820.9378403,890.815968,103.6241534,823.2074449,716.5193658,106.6880791,100.4995029,6.188576206,202.1705344,0,202.1705344,3.124650558,199.0458839,0.634729396,3.029800117,0.173089291,-0.173089291,0.500553678,0.126226553,3.487863386,112.1816759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.60394485,2.263798693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.52694515,107.833294,99.13089,110.0970927,716.5193658,0,0.804340505,36.45338772,-0.804340505,143.5466123,0.987837272,0,806.9354257,110.0970927,878.9917709,3,12,9% +3/24/2018 21:00,37.61885473,198.554426,805.5417907,887.3417319,102.6883292,881.5899387,775.9255272,105.6644115,99.59189722,6.072514281,198.4093654,0,198.4093654,3.096432006,195.3129334,0.656572876,3.465428477,0.480299913,-0.480299913,0.448017567,0.127477346,3.147887092,101.2468697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.73151977,2.243354447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280633483,97.32234225,98.01215325,99.56569669,775.9255272,0,0.874438223,29.02144093,-0.874438223,150.9785591,0.992820432,0,868.3668702,99.56569669,933.5306274,3,13,8% +3/24/2018 22:00,43.43117978,219.9419445,728.4474514,868.2837086,97.89925145,869.6661239,769.2275515,100.4385724,94.94722781,5.491344586,179.5725419,0,179.5725419,2.952023641,176.6205183,0.758017085,3.838711094,0.819372664,-0.819372664,0.390032712,0.134394391,2.591963483,83.36645543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26688686,2.138731079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87786872,80.13500795,93.14475558,82.27373903,769.2275515,0,0.885917292,27.63538425,-0.885917292,152.3646157,0.993561323,0,857.4194993,82.27373903,911.266016,3,14,6% +3/24/2018 23:00,52.25925737,236.3668439,595.3735749,827.1009583,89.11374712,784.0429226,693.1281063,90.91481634,86.42663885,4.488177494,147.0423245,0,147.0423245,2.68710827,144.3552162,0.912096106,4.125379669,1.255548094,-1.255548094,0.31544232,0.149677028,1.875631272,60.32674916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.07657266,1.946800795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.358888472,57.98836593,84.43546113,59.93516672,693.1281063,0,0.838021162,33.0682546,-0.838021162,146.9317454,0.990335636,0,770.8649248,59.93516672,810.0912928,3,15,5% +3/24/2018 0:00,62.76782013,249.0819242,416.7267018,745.4104533,75.62882321,623.6749733,547.1851763,76.48979705,73.34833515,3.141461904,103.3207016,0,103.3207016,2.28048806,101.0402135,1.095505126,4.347299685,1.942854964,-1.942854964,0.197905923,0.181483027,1.079005409,34.70452301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.50520968,1.652205837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781735746,33.35930757,71.28694543,35.0115134,547.1851763,0,0.734072314,42.77111414,-0.734072314,137.2288859,0.98188682,0,608.5608578,35.0115134,631.4751931,3,16,4% +3/24/2018 1:00,74.13025794,259.5974549,209.4372343,567.130633,54.35463437,383.9901015,329.6956335,54.29446794,52.7156416,1.578826339,52.419475,0,52.419475,1.638992774,50.78048223,1.293817076,4.530830317,3.468342696,-3.468342696,0,0.259527082,0.409748193,13.1789104,0.059237769,1,0.280709033,0,0.927332534,0.966094497,0.724496596,1,50.80724708,1.187444685,0.009855619,0.312029739,0.972431828,0.696928424,0.961238037,0.922476074,0.292252338,12.66806996,51.09949942,13.85551465,310.1651998,0,0.581339844,54.45516461,-0.581339844,125.5448354,0.963991789,0,350.0962052,13.85551465,359.1643624,3,17,3% +3/24/2018 2:00,85.76734947,269.0549061,21.13902897,120.0236034,12.28050518,59.0891956,47.01963803,12.06955757,11.91020264,0.15935493,5.495704853,0,5.495704853,0.370302542,5.125402312,1.496922639,4.69589398,12.77161221,-12.77161221,0,0.580939891,0.092575635,2.977550661,0.62319898,1,0.078139228,0,0.953616906,0.992378869,0.724496596,1,11.53172562,0.268282931,0.082249563,0.312029739,0.793370345,0.517866941,0.961238037,0.922476074,0.06383649,2.862134952,11.59556211,3.130417883,17.71704756,0,0.391753261,66.9363635,-0.391753261,113.0636365,0.922368644,0,27.93721125,3.130417883,29.98600714,3,18,7% +3/24/2018 3:00,97.75393932,278.33136,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706128098,4.857798643,-6.46439132,6.46439132,0.364370288,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171517122,80.12396057,-0.171517122,99.87603943,0.758483914,0,0,0,0,3,19,0% +3/24/2018 4:00,109.2629477,288.2386183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906998188,5.030712921,-2.247522574,2.247522574,0.914502686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056411809,93.23387529,0.056411809,86.76612471,0,0,0,0,0,3,20,0% +3/24/2018 5:00,120.0729248,299.7064546,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09566788,5.230864421,-1.116838739,1.116838739,0.721144362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279470153,106.2285844,0.279470153,73.77141564,0,0.871090018,0,0,0,3,21,0% +3/24/2018 6:00,129.5559002,313.9069205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261177024,5.478709307,-0.532497947,0.532497947,0.621216202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482442338,118.8450368,0.482442338,61.15496316,0,0.946360671,0,0,0,3,22,0% +3/24/2018 7:00,136.7045487,332.0471666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385944477,5.795316328,-0.130361108,0.130361108,0.552446752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651482857,130.6534964,0.651482857,49.34650356,0,0.97325201,0,0,0,3,23,0% +3/25/2018 8:00,140.1636579,354.1312174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446317321,6.180755728,0.203675112,-0.203675112,0.495323194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77505978,140.8104528,0.77505978,39.18954721,0,0.985488847,0,0,0,3,0,0% +3/25/2018 9:00,138.9590265,17.26786313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425292539,0.301381066,0.527150479,-0.527150479,0.440005648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844740532,147.6441466,0.844740532,32.35585336,0,0.990810227,0,0,0,3,1,0% +3/25/2018 10:00,133.4589264,37.51376547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329297682,0.654738722,0.890162291,-0.890162291,0.377926972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855766456,148.8445129,0.855766456,31.15548708,0,0.991572844,0,0,0,3,2,0% +3/25/2018 11:00,124.9719524,53.53400471,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181172041,0.934344644,1.371004916,-1.371004916,0.295698041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807377077,143.8404507,0.807377077,36.15954933,0,0.988071068,0,0,0,3,3,0% +3/25/2018 12:00,114.7126636,66.18134407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002113674,1.155082357,2.168066585,-2.168066585,0.159392468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702861991,134.6570753,0.702861991,45.34292469,0,0.978862279,0,0,0,3,4,0% +3/25/2018 13:00,103.4781181,76.71508155,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806033865,1.338930759,4.143696396,-4.143696396,0,#DIV/0!,0,0,0.151435016,1,0.236802564,0,0.933795445,0.972557408,0.724496596,1,0,0,0.024172002,0.312029739,0.933739489,0.658236085,0.961238037,0.922476074,0,0,0,0,0,0,-0.549336803,123.3215268,0.549336803,56.67847322,0,0.958981157,0,0,0,3,5,0% +3/25/2018 14:00,91.76461575,86.17721622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601594682,1.504076163,31.17377137,-31.17377137,0,#DIV/0!,0,0,0.827612219,1,0.032067253,0,0.958286829,0.997048792,0.724496596,1,0,0,0.10155387,0.312029739,0.752664204,0.4771608,0.961238037,0.922476074,0,0,0,0,0,0,-0.357258339,110.9319164,0.357258339,69.06808358,0,0.910045254,0,0,0,3,6,0% +3/25/2018 15:00,79.83248755,95.41499748,107.6769595,395.8150807,37.80504593,37.47679871,0,37.47679871,36.66508431,0.811714404,81.94451068,54.69702359,27.24748709,1.13996162,26.10752547,1.393339758,1.665305862,-5.036285469,5.036285469,0.608590771,0.351096893,0.60554977,19.47656216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.24387366,0.825898313,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.438718747,18.72161237,35.68259241,19.54751069,0,54.69702359,-0.138188326,97.94302604,0.138188326,82.05697396,0,0.688174936,35.68259241,57.18863142,73.1114079,3,7,105% +3/25/2018 16:00,68.22585332,105.2475445,317.9159586,677.1883759,66.71371527,127.4969749,60.39833953,67.09863539,64.70205061,2.396584784,79.09406952,0,79.09406952,2.011664663,77.08240486,1.190765775,1.836916181,-2.044486361,2.044486361,0.879781449,0.209847016,2.168930686,69.76026652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19407211,1.4574442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.571382899,67.05622164,63.76545501,68.51366584,60.39833953,0,0.089189865,84.88299768,-0.089189865,95.11700232,0.489398185,0,93.32429272,68.51366584,138.1651167,3,8,48% +3/25/2018 17:00,57.17187377,116.6621925,514.1191883,794.5908923,83.35495788,332.7764324,248.0592864,84.71714596,80.84149835,3.875647607,127.167609,0,127.167609,2.513459527,124.6541495,0.997837437,2.036139371,-1.063779513,1.063779513,0.7120707,0.162131583,2.940659766,94.58172652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.70792317,1.820992871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.13049799,90.91555312,79.83842116,92.73654599,248.0592864,0,0.31218491,71.80904723,-0.31218491,108.1909528,0.889838511,0,300.5711273,92.73654599,361.2653419,3,9,20% +3/25/2018 18:00,47.31647717,131.0064542,672.0337704,852.129117,94.33428894,535.5692105,439.013374,96.5558365,91.48976207,5.06607443,165.786895,0,165.786895,2.844526868,162.9423682,0.825828317,2.286493967,-0.525579571,0.525579571,0.62003309,0.140371352,3.411340303,109.7204305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.94343928,2.060850033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.471504437,105.4674513,90.41494372,107.5283013,439.013374,0,0.515195837,58.98945407,-0.515195837,121.0105459,0.952949526,0,508.7725306,107.5283013,579.1476532,3,10,14% +3/25/2018 19:00,39.72729171,149.8814599,778.5561331,880.8455786,101.1020237,706.6929332,602.7704236,103.9225096,98.05342464,5.869084995,191.8185473,0,191.8185473,3.048599041,188.7699483,0.693372043,2.615924962,-0.145998157,0.145998157,0.555120845,0.129858361,3.597115962,115.6956144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.25268141,2.208699627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60609827,111.2110252,96.85877968,113.4197248,602.7704236,0,0.684308849,46.81872378,-0.684308849,133.1812762,0.976933577,0,685.7254455,113.4197248,759.956387,3,11,11% +3/25/2018 20:00,35.96932664,173.6638369,825.6761907,891.7168278,103.9816284,827.5573731,720.4868786,107.0704945,100.8461986,6.224295893,203.3301815,0,203.3301815,3.135429747,200.1947518,0.62778318,3.031005746,0.171434286,-0.171434286,0.5008367,0.125935118,3.50862868,112.8495592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.93720201,2.271608179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541989535,108.4752887,99.47919154,110.7468969,720.4868786,0,0.807977214,36.10123201,-0.807977214,143.898768,0.988117067,0,811.4045727,110.7468969,883.8862018,3,12,9% +3/25/2018 21:00,37.25793259,198.8382759,809.9624406,888.1998244,103.0280421,885.6633225,779.6361169,106.0272055,99.92136654,6.105839007,199.4914467,0,199.4914467,3.106675604,196.3847711,0.650273596,3.470382593,0.477013444,-0.477013444,0.448579586,0.127201012,3.167225822,101.8688697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.04821821,2.250775899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294644327,97.92023234,98.34286254,100.1710082,779.6361169,0,0.877771078,28.62535228,-0.877771078,151.3746477,0.99303754,0,872.5507941,100.1710082,938.1107156,3,13,8% +3/25/2018 22:00,43.13159296,220.3285809,732.5741843,869.2216736,98.22889091,873.4794298,772.6900487,100.7893811,95.26692742,5.522453642,180.5830559,0,180.5830559,2.961963487,177.6210924,0.752788309,3.845459173,0.813981281,-0.813981281,0.390954692,0.134087295,2.610021656,83.94726834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.57419429,2.145932463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890951805,80.69330742,93.4651461,82.83923988,772.6900487,0,0.888944756,27.2590565,-0.888944756,152.7409435,0.993753535,0,861.3286136,82.83923988,915.5452393,3,14,6% +3/25/2018 23:00,52.01379876,236.7668552,599.2457553,828.3079394,89.44567801,787.6762319,696.4103035,91.26592842,86.74856079,4.517367626,147.9911884,0,147.9911884,2.697117211,145.2940712,0.907812045,4.132361182,1.246573583,-1.246573583,0.316977052,0.149263766,1.892450109,60.86770078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38601628,1.954052238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371073662,58.5083492,84.75708994,60.46240144,696.4103035,0,0.84076256,32.77926812,-0.84076256,147.2207319,0.990530178,0,774.5725116,60.46240144,814.1439441,3,15,5% +3/25/2018 0:00,62.55917937,249.4659688,420.3820176,747.3241895,75.99097036,627.3221377,550.4535582,76.86857945,73.69956223,3.169017219,104.2178953,0,104.2178953,2.291408133,101.9264872,1.091863657,4.354002528,1.92575247,-1.92575247,0.200830622,0.180766463,1.094241502,35.19456813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.84282251,1.660117392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792774243,33.83035758,71.63559676,35.49047497,550.4535582,0,0.736565959,42.56029627,-0.736565959,137.4397037,0.982117417,0,612.2456234,35.49047497,635.4734295,3,16,4% +3/25/2018 1:00,73.94261695,259.9645156,212.8267216,571.1724923,54.8404426,388.1486701,333.3574915,54.79117864,53.18680092,1.604377726,53.25594435,0,53.25594435,1.653641684,51.60230267,1.290542123,4.537236735,3.421869101,-3.421869101,0,0.25767649,0.413410421,13.29670023,0.052151021,1,0.28432052,0,0.926782886,0.965544849,0.724496596,1,51.24672583,1.198057771,0.00870483,0.312029739,0.975611709,0.700108305,0.961238037,0.922476074,0.295371861,12.78129403,51.54209769,13.9793518,315.9725579,0,0.58363716,54.29323012,-0.58363716,125.7067699,0.964330335,0,356.2440203,13.9793518,365.3932265,3,17,3% +3/25/2018 2:00,85.59180415,269.4125312,23.00050569,128.5544624,13.11959755,63.52834555,50.63096474,12.89738081,12.72399328,0.173387527,5.972343169,0,5.972343169,0.395604272,5.576738896,1.493858795,4.702135715,12.23444888,-12.23444888,0,0.570404744,0.098901068,3.18099832,0.609689122,1,0.081555119,0,0.953250712,0.992012675,0.724496596,1,12.3216597,0.286613949,0.080869655,0.312029739,0.796394412,0.520891008,0.961238037,0.922476074,0.068129231,3.057696581,12.38978893,3.344310529,19.76181628,0,0.393848364,66.80583117,-0.393848364,113.1941688,0.923047588,0,30.63088577,3.344310529,32.81967012,3,18,7% +3/25/2018 3:00,97.5678412,278.6886602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.702880073,4.864034708,-6.60288483,6.60288483,0.340686502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173663206,79.99912568,-0.173663206,100.0008743,0.762086392,0,0,0,0,3,19,0% +3/25/2018 4:00,109.0596137,288.6032868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903449339,5.037077586,-2.261948285,2.261948285,0.916969628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054227426,93.10852742,0.054227426,86.89147258,0,0,0,0,0,3,20,0% +3/25/2018 5:00,119.8385441,300.0805263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091577165,5.237393204,-1.118743605,1.118743605,0.721470114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277169331,106.0913339,0.277169331,73.90866607,0,0.869604861,0,0,0,3,21,0% +3/25/2018 6:00,129.2754263,314.2759578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256281832,5.485150224,-0.530754046,0.530754046,0.620917977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.479954931,118.6824585,0.479954931,61.31754146,0,0.945823552,0,0,0,3,22,0% +3/25/2018 7:00,136.3673348,332.3596654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380058985,5.800770461,-0.126755138,0.126755138,0.551830095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648751557,130.4475406,0.648751557,49.55245941,0,0.972928894,0,0,0,3,23,0% +3/26/2018 8:00,139.7782652,354.2970165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43959095,6.183649468,0.208848337,-0.208848337,0.49443852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044071,140.5378012,0.772044071,39.46219883,0,0.985236858,0,0,0,3,0,0% +3/26/2018 9:00,138.559612,17.2397795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418321439,0.300890915,0.534271843,-0.534271843,0.438787823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841419492,147.2903194,0.841419492,32.70968057,0,0.990576608,0,0,0,3,1,0% +3/26/2018 10:00,133.0782502,37.34591965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322653628,0.65180926,0.900405291,-0.900405291,0.376175316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852140214,148.4452195,0.852140214,31.55478046,0,0.99132421,0,0,0,3,2,0% +3/26/2018 11:00,124.6205439,53.30186326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175038806,0.930293011,1.387391746,-1.387391746,0.292895728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803466817,143.462446,0.803466817,36.53755397,0,0.987769676,0,0,0,3,3,0% +3/26/2018 12:00,114.3865156,65.92721569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996421316,1.150646981,2.200296935,-2.200296935,0.153880753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698708506,134.3234789,0.698708506,45.67652114,0,0.9784394,0,0,0,3,4,0% +3/26/2018 13:00,103.1688888,76.45477664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800636796,1.334387581,4.246866153,-4.246866153,0,#DIV/0!,0,0,0.163951736,1,0.231255181,0,0.934582796,0.973344759,0.724496596,1,0,0,0.026026213,0.312029739,0.928845811,0.653342407,0.961238037,0.922476074,0,0,0,0,0,0,-0.5449977,123.0245065,0.5449977,56.97549352,0,0.958256494,0,0,0,3,5,0% +3/26/2018 14:00,91.46349716,85.91426574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596339171,1.499486812,37.64122394,-37.64122394,0,#DIV/0!,0,0,0.855216716,1,0.02656037,0,0.958811222,0.997573185,0.724496596,1,0,0,0.103953034,0.312029739,0.747814164,0.47231076,0.961238037,0.922476074,0,0,0,0,0,0,-0.352804082,110.6589215,0.352804082,69.3410785,0,0.908278284,0,0,0,3,6,0% +3/26/2018 15:00,79.53314383,95.14866155,112.7525663,406.711786,38.86657318,38.54457907,0,38.54457907,37.6946026,0.849976472,82.90250241,54.39236671,28.5101357,1.171970584,27.33816511,1.388115224,1.660657423,-4.899883232,4.899883232,0.631916928,0.344706772,0.644960154,20.74413559,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.2334858,0.849088698,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467271436,19.94005217,36.70075724,20.78914087,0,54.39236671,-0.133736883,97.68558633,0.133736883,82.31441367,0,0.67613156,36.70075724,57.56553662,74.37624964,3,7,103% +3/26/2018 16:00,67.91505198,104.9776392,323.5520223,681.500409,67.32092272,131.535862,63.80584167,67.73002033,65.29094851,2.439071813,80.47890798,0,80.47890798,2.029974208,78.44893377,1.185341269,1.832205446,-2.019401082,2.019401082,0.875491613,0.208068311,2.19857412,70.71370125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.76014317,1.470709403,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592859466,67.97269937,64.35300264,69.44340877,63.80584167,0,0.093625537,84.62778373,-0.093625537,95.37221627,0.515957668,0,97.27411594,69.44340877,142.7234381,3,8,47% +3/26/2018 17:00,56.84120706,116.3953034,519.6631415,796.8297496,83.82812012,337.4170474,252.1992141,85.21783327,81.300393,3.917440267,128.5260722,0,128.5260722,2.527727114,125.9983451,0.992066214,2.031481277,-1.055596006,1.055596006,0.710671238,0.161312422,2.966848165,95.42403545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.14903017,1.83132969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.149471396,91.72521251,80.29850156,93.5565422,252.1992141,0,0.316503261,71.54841185,-0.316503261,108.4515882,0.892023745,0,305.2661889,93.5565422,366.4970746,3,9,20% +3/26/2018 18:00,46.95685598,130.7695238,677.338988,853.5516631,94.74825646,540.266951,443.2696366,96.99731435,91.89124695,5.106067401,167.0856891,0,167.0856891,2.857009516,164.2286796,0.819551743,2.282358752,-0.522873347,0.522873347,0.619570298,0.139883069,3.435290521,110.4907519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32936182,2.069893669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488856288,106.2079134,90.81821811,108.2778071,443.2696366,0,0.519323734,58.71310018,-0.519323734,121.2868998,0.953720942,0,513.5737534,108.2778071,584.4394126,3,10,14% +3/26/2018 19:00,39.33739515,149.7456803,783.5619069,881.8952224,101.4806331,711.2378291,606.9103909,104.3274382,98.42061755,5.906820632,193.0436716,0,193.0436716,3.060015511,189.9836561,0.686567065,2.613555162,-0.145899954,0.145899954,0.555104051,0.129511953,3.619247189,116.4074307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.6056412,2.216970821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.622132268,111.8952501,97.22777347,114.112221,606.9103909,0,0.688188773,46.51309499,-0.688188773,133.486905,0.977345516,0,690.3889228,114.112221,765.0730892,3,11,11% +3/26/2018 20:00,35.57212885,173.734568,830.3597671,892.5974753,104.3354098,831.8536298,724.4047149,107.4489149,101.1893122,6.25960267,204.4764367,0,204.4764367,3.146097562,201.3303391,0.62085077,3.032240236,0.169804448,-0.169804448,0.501115419,0.125650849,3.529168304,113.5101841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26701584,2.279336974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556870423,109.1103065,99.82388627,111.3896435,724.4047149,0,0.811569308,35.75045841,-0.811569308,144.2495416,0.988390967,0,815.8189631,111.3896435,888.721257,3,12,9% +3/26/2018 21:00,36.89847106,199.126716,814.3285252,889.0381724,103.3640938,889.6779734,783.291936,106.3860374,100.247285,6.138752396,200.5601877,0,200.5601877,3.1168088,197.4433789,0.643999809,3.475416823,0.473770097,-0.473770097,0.449134231,0.126931687,3.186359658,102.4842796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.36150339,2.258117365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308506725,98.51178776,98.67001012,100.7699051,783.291936,0,0.88105546,28.2300538,-0.88105546,151.7699462,0.993249884,0,876.6746343,100.7699051,942.6265218,3,13,8% +3/26/2018 22:00,42.83404088,220.7191016,736.6497713,870.1379751,98.55491693,877.2321446,776.0958449,101.1362997,95.58312256,5.553177138,181.5810601,0,181.5810601,2.971794374,178.6092657,0.747595045,3.852275045,0.80865915,-0.80865915,0.39186483,0.133788024,2.627907987,84.52255423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87813308,2.153054908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.903910391,81.2462941,93.78204347,83.39934901,776.0958449,0,0.891922738,26.88413947,-0.891922738,153.1158605,0.993941333,0,865.1757819,83.39934901,919.7589878,3,14,6% +3/26/2018 23:00,51.77035356,237.1689888,603.0732885,829.4876046,89.77396884,791.2497836,699.63661,91.61317363,87.06695245,4.546221188,148.9291173,0,148.9291173,2.707016391,146.2221009,0.903563125,4.139379738,1.237722873,-1.237722873,0.318490612,0.148860794,1.909143041,61.40460284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.69206644,1.96122416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383167634,59.02443989,85.07523408,60.98566405,699.63661,0,0.843456377,32.49307528,-0.843456377,147.5069247,0.990720111,0,778.2192943,60.98566405,818.1331917,3,15,5% +3/26/2018 0:00,62.35218999,249.8508878,424.0023185,749.1957148,76.34901584,630.9112825,553.6681626,77.24311989,74.04681132,3.196308576,105.1064756,0,105.1064756,2.302204526,102.8042711,1.088251011,4.360720631,1.90893573,-1.90893573,0.203706454,0.180067449,1.109416336,35.68264297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17661155,1.667939342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.803768359,34.29951368,71.9803799,35.96745302,553.6681626,0,0.739016724,42.35227725,-0.739016724,137.6477228,0.982342532,0,615.8721649,35.96745302,639.4121435,3,16,4% +3/26/2018 1:00,73.75615229,260.3316944,216.1966743,575.1241772,55.31953212,392.2458527,336.9646267,55.28122597,53.65144412,1.629781852,54.08747472,0,54.08747472,1.668088001,52.41938671,1.287287701,4.543645214,3.376566339,-3.376566339,0,0.255875962,0.417022,13.41286103,0.045139285,1,0.287929088,0,0.926230975,0.964992938,0.724496596,1,51.67939146,1.208524078,0.007558814,0.312029739,0.978788689,0.703285284,0.961238037,0.922476074,0.298471533,12.8929522,51.97786299,14.10147628,321.7542843,0,0.585898907,54.13348093,-0.585898907,125.8665191,0.964661046,0,362.3616874,14.10147628,371.5908216,3,17,3% +3/26/2018 2:00,85.41666324,269.7697551,24.91953917,137.136292,13.9611112,68.0232546,54.2952684,13.7279862,13.54013219,0.187854012,6.463009795,0,6.463009795,0.420979014,6.042030781,1.49080201,4.708370448,11.73897493,-11.73897493,0,0.560247567,0.105244753,3.385033047,0.596339486,1,0.084981149,0,0.952880685,0.991642649,0.724496596,1,13.11398848,0.304997862,0.079492364,0.312029739,0.799427925,0.523924521,0.961238037,0.922476074,0.072431342,3.253822521,13.18641982,3.558820384,21.91685594,0,0.395921952,66.67651375,-0.395921952,113.3234863,0.923712484,0,33.43129325,3.558820384,35.76047001,3,18,7% +3/26/2018 3:00,97.38202058,279.0450838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699636891,4.870255474,-6.747837389,6.747837389,0.315898155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175792835,79.87520049,-0.175792835,100.1247995,0.765574301,0,0,0,0,3,19,0% +3/26/2018 4:00,108.8561609,288.9664906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89989842,5.043416689,-2.276614863,2.276614863,0.91947776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.052048519,92.98350859,0.052048519,87.01649141,0,0,0,0,0,3,20,0% +3/26/2018 5:00,119.6037587,300.4522832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087479387,5.243881587,-1.120659805,1.120659805,0.721797803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274863162,105.9538597,0.274863162,74.04614035,0,0.868091301,0,0,0,3,21,0% +3/26/2018 6:00,128.9945088,314.6415462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378896,5.491530944,-0.528985402,0.528985402,0.620615521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477452261,118.5191369,0.477452261,61.48086305,0,0.945277488,0,0,0,3,22,0% +3/26/2018 7:00,136.0300633,332.668001,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374172486,5.806151934,-0.123110459,0.123110459,0.551206818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645996668,130.2404434,0.645996668,49.75955662,0,0.97260022,0,0,0,3,23,0% +3/27/2018 8:00,139.3934581,354.4602108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432874799,6.186497747,0.214074769,-0.214074769,0.493544748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768998614,140.2640502,0.768998614,39.73594976,0,0.984980377,0,0,0,3,0,0% +3/27/2018 9:00,138.1609718,17.21252008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.411363856,0.300415148,0.541471338,-0.541471338,0.437556637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838065138,146.9363635,0.838065138,33.06363654,0,0.990338766,0,0,0,3,1,0% +3/27/2018 10:00,132.6980254,37.18075686,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316017454,0.648926626,0.910779069,-0.910779069,0.374401296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848479931,148.0467212,0.848479931,31.95327883,0,0.991071087,0,0,0,3,2,0% +3/27/2018 11:00,124.269304,53.07236793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168908514,0.926287562,1.404045813,-1.404045813,0.290047714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799524678,143.0847364,0.799524678,36.91526365,0,0.987462843,0,0,0,3,3,0% +3/27/2018 12:00,114.0604838,65.67509336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990730989,1.146246616,2.233293262,-2.233293262,0.148238049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694528046,133.9896205,0.694528046,46.01037948,0,0.978008667,0,0,0,3,4,0% +3/27/2018 13:00,102.8598952,76.19581933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79524384,1.329867924,4.354730187,-4.354730187,0,#DIV/0!,0,0,0.176649132,1,0.225722033,0,0.935361519,0.974123482,0.724496596,1,0,0,0.027886433,0.312029739,0.923963435,0.648460031,0.961238037,0.922476074,0,0,0,0,0,0,-0.540638933,122.7271444,0.540638933,57.27285562,0,0.957516834,0,0,0,3,5,0% +3/27/2018 14:00,91.16282862,85.65207597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591091515,1.494910737,47.43910411,-47.43910411,0,#DIV/0!,0,0,0.883482624,1,0.021076535,0,0.959326194,0.998088158,0.724496596,1,0,0,0.106362902,0.312029739,0.742989092,0.467485688,0.961238037,0.922476074,0,0,0,0,0,0,-0.348339372,110.3857773,0.348339372,69.61422273,0,0.906461818,0,0,0,3,6,0% +3/27/2018 15:00,79.23438594,94.88251376,117.8541391,417.3027075,39.90543057,39.59056889,0,39.59056889,38.7021346,0.888434283,83.72874957,53.95035311,29.77839647,1.203295967,28.5751005,1.382900915,1.656012268,-4.771119411,4.771119411,0.653936838,0.338600162,0.685084007,22.03465664,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.20196389,0.871783832,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.496341031,21.18055009,37.69830492,22.05233392,0,53.95035311,-0.129283496,97.42819029,0.129283496,82.57180971,0,0.663253034,37.69830492,57.8350693,75.55020108,3,7,100% +3/27/2018 16:00,67.60519499,104.707271,329.1643423,685.7041207,67.92029742,135.587223,67.23359334,68.3536297,65.87224985,2.481379852,81.85775328,0,81.85775328,2.048047566,79.80970571,1.179933244,1.82748663,-1.995009067,1.995009067,0.871320333,0.206341601,2.227962238,71.65892416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.31891213,1.48380349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614151058,68.88128358,64.93306319,70.36508707,67.23359334,0,0.098050444,84.37308262,-0.098050444,95.62691738,0.540058402,0,101.2431302,70.36508707,147.2956723,3,8,45% +3/27/2018 17:00,56.51168372,116.1271484,525.1686001,799.0185506,84.29658875,342.0387056,256.3250273,85.71367832,81.75473558,3.95894274,129.8750605,0,129.8750605,2.541853172,127.3332073,0.986314947,2.02680109,-1.047564013,1.047564013,0.709297687,0.160513383,2.992799576,96.25872205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58576153,1.84156397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.168273105,92.52754501,80.75403464,94.36910898,256.3250273,0,0.320799845,71.28869699,-0.320799845,108.711303,0.894139576,0,309.9443857,94.36910898,371.7070802,3,9,20% +3/27/2018 18:00,46.59839244,130.5305407,682.5965578,854.9433167,95.15825413,544.9289724,447.4943895,97.43458286,92.28888167,5.145701183,168.3728107,0,168.3728107,2.869372459,165.5034383,0.813295374,2.278187709,-0.520203411,0.520203411,0.619113712,0.139406291,3.459000317,111.2533404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71158344,2.078850579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506033955,106.9409426,91.2176174,109.0197931,447.4943895,0,0.523419952,58.43806404,-0.523419952,121.561936,0.954474409,0,518.3395606,109.0197931,589.6908348,3,10,14% +3/27/2018 19:00,38.9484348,149.6082105,788.5142444,882.9216731,101.855443,715.7354754,611.0071964,104.728279,98.78412558,5.944153444,194.2557251,0,194.2557251,3.071317413,191.1844077,0.679778426,2.611155861,-0.14579879,0.14579879,0.555086751,0.129173878,3.641138276,117.1115233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.95505894,2.22515901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.637992286,112.5720507,97.59305123,114.7972097,611.0071964,0,0.692028767,46.20908135,-0.692028767,133.7909186,0.977748668,0,695.0045238,114.7972097,770.1370016,3,11,11% +3/27/2018 20:00,35.1758302,173.8068469,834.9873203,893.4580471,104.6854437,836.0947109,728.2714325,107.8232784,101.5287913,6.29448712,205.6089953,0,205.6089953,3.156652374,202.452343,0.613934054,3.033501741,0.168197984,-0.168197984,0.50139014,0.125373693,3.54947828,114.1634227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.59333601,2.2869839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.571584931,109.7382243,100.1649209,112.0252082,728.2714325,0,0.815115421,35.40122391,-0.815115421,144.5987761,0.988658994,0,820.1770227,112.0252082,893.495281,3,12,9% +3/27/2018 21:00,36.54055812,199.4196558,818.6392279,889.8569757,103.6964544,893.6328765,786.8920045,106.740872,100.5696237,6.171248295,201.6153894,0,201.6153894,3.126830698,198.4885587,0.63775305,3.480529587,0.470567983,-0.470567983,0.449681825,0.126669296,3.205286137,103.0930203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.67134761,2.265378197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322218895,99.09693243,98.9935665,101.3623106,786.8920045,0,0.884290426,27.83567297,-0.884290426,152.164327,0.99345749,0,880.7373225,101.3623106,947.0769275,3,13,8% +3/27/2018 22:00,42.53857941,221.1133569,740.673781,871.0329249,98.8773246,880.923751,779.4444307,101.4793203,95.89580844,5.583511823,182.5664496,0,182.5664496,2.981516155,179.5849334,0.74243827,3.859156098,0.803403913,-0.803403913,0.392763529,0.133496456,2.645621144,85.09227026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.17869865,2.160098305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.916743513,81.79392682,94.09544216,83.95402512,779.4444307,0,0.894850709,26.51073968,-0.894850709,153.4892603,0.994124758,0,868.9604482,83.95402512,923.9066785,3,14,6% +3/27/2018 23:00,51.52894349,237.5730766,606.8560491,830.6404849,90.09864227,794.7635431,702.8069701,91.95657302,87.38183578,4.574737235,149.8560815,0,149.8560815,2.716806493,147.139275,0.899349724,4.146432402,1.228992166,-1.228992166,0.319983651,0.148467898,1.925709332,61.93743169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.99474428,1.968317056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395169855,59.53661524,85.38991414,61.5049323,702.8069701,0,0.846102475,32.20974995,-0.846102475,147.79025,0.990905503,0,781.8052085,61.5049323,822.0589566,3,15,5% +3/27/2018 0:00,62.14685155,250.236525,427.5876639,751.0260898,76.70302467,634.4428497,556.8293678,77.6134819,74.39014548,3.223336424,105.9864587,0,105.9864587,2.312879198,103.6735795,1.084667179,4.36745127,1.892395558,-1.892395558,0.20653499,0.179385495,1.124528934,36.16871606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5066374,1.675673106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814717385,34.76674562,72.32135478,36.44241873,556.8293678,0,0.741424799,42.14707156,-0.741424799,137.8529284,0.982562277,0,619.4408865,36.44241873,643.2917207,3,16,4% +3/27/2018 1:00,73.57085347,260.6988495,219.547043,578.9883946,55.79208765,396.2826371,340.5178484,55.7647887,54.10975035,1.655038347,54.91405969,0,54.91405969,1.682337293,53.23172239,1.284053627,4.550053281,3.332384906,-3.332384906,0,0.254123612,0.420584323,13.52743759,0.038200458,1,0.291535125,0,0.925676756,0.964438719,0.724496596,1,52.10541668,1.218847642,0.006417392,0.312029739,0.981963131,0.706459727,0.961238037,0.922476074,0.301552265,13.00308755,52.40696895,14.22193519,327.5099106,0,0.588125516,53.97589833,-0.588125516,126.0241017,0.964984134,0,368.4488365,14.22193519,377.7568086,3,17,3% +3/27/2018 2:00,85.24193856,270.126445,26.89289747,145.7480629,14.80332563,72.5636502,58.00396944,14.55968077,14.35695075,0.202730021,6.966869234,0,6.966869234,0.446374886,6.520494348,1.487752489,4.714595861,11.28050168,-11.28050168,0,0.550454842,0.111593722,3.589237686,0.583146741,1,0.088417412,0,0.952506796,0.991268759,0.724496596,1,13.9070735,0.323397086,0.078117634,0.312029739,0.802470913,0.526967509,0.961238037,0.922476074,0.076734791,3.450111788,13.98380829,3.773508873,24.17914368,0,0.397974205,66.54840281,-0.397974205,113.4515972,0.924363717,0,36.33413141,3.773508873,38.80381749,3,18,7% +3/27/2018 3:00,97.19646873,279.4005008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696398401,4.87645867,-6.899753346,6.899753346,0.289918996,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177906659,79.75214773,-0.177906659,100.2478523,0.768953746,0,0,0,0,3,19,0% +3/27/2018 4:00,108.6525923,289.3280981,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896345477,5.04972793,-2.291536185,2.291536185,0.922029457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.049874504,92.85878459,0.049874504,87.14121541,0,0,0,0,0,3,20,0% +3/27/2018 5:00,119.3685908,300.8215933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083374932,5.250327265,-1.122591387,1.122591387,0.722128123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.272551233,105.8161367,0.272551233,74.18386334,0,0.866548253,0,0,0,3,21,0% +3/27/2018 6:00,128.7131966,315.0035668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246469072,5.497849396,-0.527194505,0.527194505,0.62030926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.474934182,118.3550647,0.474934182,61.64493527,0,0.944722254,0,0,0,3,22,0% +3/27/2018 7:00,135.6928104,332.9720899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368286313,5.811459286,-0.119429094,0.119429094,0.550577268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64321839,130.0322275,0.64321839,49.9677725,0,0.972265904,0,0,0,3,23,0% +3/28/2018 8:00,139.0093318,354.6207178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426170532,6.189299122,0.219352547,-0.219352547,0.492642195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765924008,139.989266,0.765924008,40.01073398,0,0.984719372,0,0,0,3,0,0% +3/28/2018 9:00,137.7632238,17.18594892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404421844,0.299951394,0.548747182,-0.548747182,0.436312395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834678494,146.5823756,0.834678494,33.41762443,0,0.990096695,0,0,0,3,1,0% +3/28/2018 10:00,132.3183936,37.01815061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309391629,0.646088611,0.921282161,-0.921282161,0.372605161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844787052,147.6491274,0.844787052,32.35087257,0,0.990813487,0,0,0,3,2,0% +3/28/2018 11:00,123.9183844,52.84544375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162783812,0.922326988,1.420967648,-1.420967648,0.28715391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795552497,142.7074716,0.795552497,37.29252845,0,0.987150596,0,0,0,3,3,0% +3/28/2018 12:00,113.7347201,65.42494209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98504534,1.141880652,2.26707133,-2.26707133,0.142461659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690322783,133.6556653,0.690322783,46.34433465,0,0.977570115,0,0,0,3,4,0% +3/28/2018 13:00,102.5512859,75.93819688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789857591,1.325371564,4.467575881,-4.467575881,0,#DIV/0!,0,0,0.189526597,1,0.220205335,0,0.936131333,0.974893296,0.724496596,1,0,0,0.029752024,0.312029739,0.919094303,0.643590899,0.961238037,0.922476074,0,0,0,0,0,0,-0.536262922,122.4296003,0.536262922,57.57039973,0,0.956762154,0,0,0,3,5,0% +3/28/2018 14:00,90.86275588,85.39064471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585854258,1.490347901,64.02379548,-64.02379548,0,#DIV/0!,0,0,0.912423284,1,0.015617923,0,0.959831621,0.998593584,0.724496596,1,0,0,0.108782629,0.312029739,0.738191304,0.462687899,0.961238037,0.922476074,0,0,0,0,0,0,-0.343866782,110.1126353,0.343866782,69.88736473,0,0.904594853,0,0,0,3,6,0% +3/28/2018 15:00,78.93636624,94.61655432,122.9760747,427.5904763,40.92185099,40.6149518,0,40.6149518,39.6879062,0.927045596,84.42742447,53.3765066,31.05091787,1.233944793,29.81697308,1.37769949,1.6513704,-4.649420522,4.649420522,0.674748574,0.332762703,0.72585827,23.34609708,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.14952504,0.893988802,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525881846,22.44115653,38.67540689,23.33514533,0,53.3765066,-0.124830906,97.17099093,0.124830906,82.82900907,0,0.649458167,38.67540689,58.00095344,76.6358709,3,7,98% +3/28/2018 16:00,67.29642779,104.4364335,334.7499023,689.8011213,68.51180666,139.6478375,70.67842841,68.96940907,66.44592291,2.523486163,83.22987318,0,83.22987318,2.065883752,81.16398942,1.17454424,1.822759623,-1.971292856,1.971292856,0.867264622,0.204665651,2.257084239,72.5955878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87034849,1.496725746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.635249848,69.7816403,65.50559834,71.27836604,70.67842841,0,0.102462038,84.11903673,-0.102462038,95.88096327,0.562014389,0,105.2278921,71.27836604,151.8781571,3,8,44% +3/28/2018 17:00,56.18345038,115.8576992,530.6330473,801.1576771,84.76026417,346.6387371,260.4341716,86.20456552,82.20442947,4.000136051,131.2139605,0,131.2139605,2.555834697,128.6581258,0.980586194,2.022098314,-1.039684063,1.039684063,0.707950136,0.159734236,3.018504654,97.08548572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0180244,1.851693537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.186896346,93.3222617,81.20492075,95.17395523,260.4341716,0,0.325072304,71.03004447,-0.325072304,108.9699555,0.896188065,0,314.6029171,95.17395523,376.8923673,3,9,20% +3/28/2018 18:00,46.24123179,130.2894274,687.8043963,856.3042279,95.56418856,549.5529549,451.6854191,97.86753575,92.68257568,5.184960069,169.6477519,0,169.6477519,2.881612879,166.766139,0.807061745,2.273979489,-0.517571718,0.517571718,0.618663666,0.138940939,3.482462328,112.0079593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.0900171,2.087718722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523032102,107.666311,91.6130492,109.7540297,451.6854191,0,0.527482411,58.1644912,-0.527482411,121.8355088,0.95521011,0,523.0675279,109.7540297,594.8993452,3,10,14% +3/28/2018 19:00,38.56054181,149.4689132,793.41152,883.9250524,102.2263805,720.1839603,615.0590111,105.1249491,99.14387796,5.981071176,195.4543114,0,195.4543114,3.082502547,192.3718088,0.673008416,2.608724664,-0.145696594,0.145696594,0.555069275,0.128844084,3.662783862,117.8077197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.30086661,2.233262602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.65367444,113.2412613,97.95454105,115.4745239,615.0590111,0,0.695827106,45.90683644,-0.695827106,134.0931636,0.978143069,0,699.5702501,115.4745239,775.1460165,3,11,11% +3/28/2018 20:00,34.78053569,173.8805563,839.5576916,894.2986944,105.0316811,840.2791773,732.0856484,108.1935289,101.8645884,6.32894051,206.7275751,0,206.7275751,3.167092711,203.5604824,0.607034863,3.034788213,0.166613041,-0.166613041,0.501661182,0.12510359,3.569555084,114.8091618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.91611699,2.294547888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.586130507,110.3589333,100.5022475,112.6534812,732.0856484,0,0.818614243,35.05368625,-0.818614243,144.9463138,0.98892117,0,824.4772436,112.6534812,898.206694,3,12,9% +3/28/2018 21:00,36.18427647,199.7169947,822.8938366,890.6564506,104.0251002,897.5271027,790.4354218,107.0916809,100.8883596,6.203321332,202.6568784,0,202.6568784,3.136740581,199.5201378,0.631534762,3.485719131,0.467405141,-0.467405141,0.450222703,0.126413755,3.224003287,103.6950281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97772869,2.272557873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335779406,99.67560529,99.3135081,101.9481632,790.4354218,0,0.887475099,27.44233611,-0.887475099,152.5576639,0.993660391,0,884.7378784,101.9481632,951.4609122,3,13,8% +3/28/2018 22:00,42.24525763,221.5111895,744.6458951,871.9068538,99.19611553,884.5538344,782.7353925,101.818442,96.20498666,5.613455297,183.5391474,0,183.5391474,2.991128878,180.5480185,0.737318839,3.866099587,0.798213132,-0.798213132,0.393651205,0.133212465,2.663160288,85.65638943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.47589251,2.16706269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929450563,82.33617962,94.40534307,84.50324231,782.7353925,0,0.897728225,26.13895908,-0.897728225,153.8610409,0.994303857,0,872.6821625,84.50324231,927.9878445,3,14,6% +3/28/2018 23:00,51.28958327,237.978947,610.5940288,831.767134,90.41972797,798.2175914,705.9214361,92.29615526,87.69323956,4.602915705,150.7720799,0,150.7720799,2.726488412,148.0455915,0.8951721,4.153516176,1.220377582,-1.220377582,0.321456832,0.148084855,1.942148721,62.46617896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.29407744,1.975331573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407080137,60.04486723,85.70115757,62.02019881,705.9214361,0,0.848700805,31.9293583,-0.848700805,148.0706417,0.991086423,0,785.3303088,62.02019881,825.9212885,3,15,5% +3/28/2018 0:00,61.94315728,250.6227229,431.1382293,752.8164022,77.05306909,637.9174044,559.9376676,77.97973684,74.72963476,3.250102086,106.8578896,0,106.8578896,2.323434328,104.5344552,1.081112044,4.374191695,1.876122777,-1.876122777,0.209317799,0.178720104,1.139578757,36.65277012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83296741,1.683320262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825620931,35.23203679,72.65858834,36.91535705,559.9376676,0,0.743790473,41.94468538,-0.743790473,138.0553146,0.982776767,0,622.9523192,36.91535705,647.1126821,3,16,4% +3/28/2018 1:00,73.38670444,261.0658391,222.8778952,582.7678777,56.25830019,400.2601405,344.0180879,56.24205259,54.56190487,1.680147718,55.73572139,0,55.73572139,1.696395322,54.03932607,1.28083962,4.556458458,3.289277137,-3.289277137,0,0.252417586,0.42409883,13.64047622,0.031332358,1,0.295139096,0,0.92512017,0.963882133,0.724496596,1,52.52497959,1.229032636,0.005280365,0.312029739,0.985135465,0.70963206,0.961238037,0.922476074,0.304615021,13.11174458,52.82959461,14.34077722,333.2391899,0,0.590317519,53.82045643,-0.590317519,126.1795436,0.96529982,0,374.5053248,14.34077722,383.8910766,3,17,3% +3/28/2018 2:00,85.06763479,270.4824683,28.91752705,154.3710464,15.64474701,77.14025053,61.74925783,15.3909927,15.17300017,0.217992534,7.483136075,0,7.483136075,0.471746845,7.011389229,1.484710314,4.720809641,10.8550046,-10.8550046,0,0.541012618,0.117936711,3.793250042,0.570107221,1,0.091864117,0,0.952129001,0.990890964,0.724496596,1,14.6994886,0.341778984,0.076745366,0.312029739,0.805523507,0.530020102,0.961238037,0.922476074,0.081032732,3.646216224,14.78052133,3.987995207,26.54556008,0,0.400005437,66.42148165,-0.400005437,113.5785184,0.925001699,0,39.3352095,3.987995207,41.94527261,3,18,7% +3/28/2018 3:00,97.01117283,279.7547813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693164377,4.882642033,-7.059194149,7.059194149,0.262653013,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.180005409,79.62992516,-0.180005409,100.3700748,0.772230569,0,0,0,0,3,19,0% +3/28/2018 4:00,108.4489072,289.6879783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892790501,5.056009024,-2.306727323,2.306727323,0.924627294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047704723,92.73431707,0.047704723,87.26568293,0,0,0,0,0,3,20,0% +3/28/2018 5:00,119.1330595,301.1883255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079264137,5.256727948,-1.124542723,1.124542723,0.722461821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.270233076,105.6781367,0.270233076,74.32186328,0,0.864974537,0,0,0,3,21,0% +3/28/2018 6:00,128.4315363,315.3619023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241553171,5.504103531,-0.525384009,0.525384009,0.619999647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47240051,118.190232,0.47240051,61.80976802,0,0.944157608,0,0,0,3,22,0% +3/28/2018 7:00,135.35565,333.2718488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362401754,5.816691065,-0.115713183,0.115713183,0.549941809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640416899,129.8229137,0.640416899,50.17708633,0,0.971925858,0,0,0,3,23,0% +3/29/2018 8:00,138.6259793,354.7784537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419479767,6.192052132,0.224679701,-0.224679701,0.491731198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762820845,139.7135124,0.762820845,40.2864876,0,0.98445381,0,0,0,3,0,0% +3/29/2018 9:00,137.3664834,17.15992895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397497418,0.29949726,0.556097478,-0.556097478,0.43505542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831260591,146.2284498,0.831260591,33.77155019,0,0.98985039,0,0,0,3,1,0% +3/29/2018 10:00,131.9394945,36.85797137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.302778592,0.643292956,0.931912945,-0.931912945,0.37078719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841063046,147.2525455,0.841063046,32.74745453,0,0.990551424,0,0,0,3,2,0% +3/29/2018 11:00,123.5679358,52.62101102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156667329,0.918409898,1.438157559,-1.438157559,0.284214262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791552142,142.3307991,0.791552142,37.66920092,0,0.986832967,0,0,0,3,3,0% +3/29/2018 12:00,113.4093756,65.17672199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979367007,1.137548394,2.301646979,-2.301646979,0.136548875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686094918,133.3217772,0.686094918,46.67822277,0,0.977123786,0,0,0,3,4,0% +3/29/2018 13:00,102.2432094,75.68189215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784480642,1.320898202,4.585713516,-4.585713516,0,#DIV/0!,0,0,0.202583316,1,0.214707298,0,0.936891968,0.975653931,0.724496596,1,0,0,0.03162233,0.312029739,0.914240366,0.638736962,0.961238037,0.922476074,0,0,0,0,0,0,-0.53187212,122.1320339,0.53187212,57.86796605,0,0.955992441,0,0,0,3,5,0% +3/29/2018 14:00,89.99350105,85.1299659,0.001390979,0.822295724,0.001297707,0.001269063,0,0.001269063,0.001258577,1.05E-05,0.271781552,0.271405162,0.00037639,3.91E-05,0.000337259,1.570682899,1.485798197,-8510.562092,8510.562092,0,0.932945506,9.78E-06,0.000314644,1,0.999312678,0,0.000117501,0.961238037,1,0.724163459,0.999666863,0.001209792,2.83E-05,0.115824807,0.311651141,0.724496596,0.448993192,0.961297942,0.922535979,7.09E-06,0.000302458,0.001216879,0.000330803,0,0.000186543,-0.330057854,109.2722871,0.330057854,70.72771295,0,0.898511407,0.001216879,0.000498414,0.001543081,3,6,27% +3/29/2018 15:00,78.6392365,94.35078005,128.1129472,437.5785187,41.91610579,41.61795006,0,41.61795006,40.65218054,0.965769511,85.00290848,52.67651594,32.32639253,1.263925243,31.06246729,1.372513598,1.646731764,-4.534269448,4.534269448,0.694440567,0.327180872,0.767220597,24.67645171,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.07642222,0.915709536,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.555848711,23.719944,39.63227093,24.63565353,0,52.67651594,-0.12038186,96.91414131,0.12038186,83.08585869,0,0.63465503,39.63227093,58.06706934,77.63600647,3,7,96% +3/29/2018 16:00,66.98889577,104.1651172,340.305721,693.7930339,69.09541916,143.7144791,74.13717348,69.5773056,67.01193733,2.56536827,84.59454379,0,84.59454379,2.083481823,82.51106197,1.169176793,1.818024262,-1.948235678,1.948235678,0.863321612,0.203039252,2.285929606,73.52335395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41442309,1.509475488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.656148218,70.67344442,66.07057131,72.1829199,74.13717348,0,0.106857766,83.86578903,-0.106857766,96.13421097,0.582088289,0,109.2249518,72.1829199,156.4672292,3,8,43% +3/29/2018 17:00,55.85665346,115.5869242,536.0540119,803.2475303,85.21905004,351.214483,264.5241002,86.69038283,82.64938126,4.041001572,132.5421702,0,132.5421702,2.569668784,129.9725014,0.974882512,2.0173724,-1.031956678,1.031956678,0.706628675,0.158974745,3.04395437,97.90403607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44572899,1.861716286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.205334579,94.10908343,81.65106357,95.97079972,264.5241002,0,0.329318286,70.77259652,-0.329318286,109.2274035,0.898171201,0,319.2389923,95.97079972,382.0499613,3,9,20% +3/29/2018 18:00,45.88551882,130.0461023,692.9604818,857.6345641,95.9659703,554.1366105,455.8405394,98.29607104,93.07224222,5.223828819,170.9100197,0,170.9100197,2.893728081,168.0162916,0.800853382,2.269732664,-0.51498022,0.51498022,0.618220494,0.138486931,3.505669552,112.7543835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.4645794,2.096496144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539845657,108.3838022,92.00442506,110.4802984,455.8405394,0,0.531509058,57.89252738,-0.531509058,122.1074726,0.955928226,0,527.7552633,110.4802984,600.0624089,3,10,14% +3/29/2018 19:00,38.17384611,149.3276426,798.252185,884.9054962,102.5933771,724.5814237,619.0640533,105.5173704,99.49980829,6.017562153,196.6390529,0,196.6390529,3.09356885,193.5454841,0.666259303,2.606259028,-0.145595315,0.145595315,0.555051955,0.128522513,3.68417899,118.4958606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.64300039,2.241280101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669175137,113.9027284,98.31217552,116.1440085,619.0640533,0,0.699582109,45.60651385,-0.699582109,134.3934861,0.978528761,0,704.0841566,116.1440085,780.0980873,3,11,11% +3/29/2018 20:00,34.38634725,173.955569,844.0698114,895.1195823,105.3740784,844.4056601,735.8460441,108.5596159,102.1966612,6.362954775,207.8319153,0,207.8319153,3.177417253,204.6544981,0.600154977,3.036097431,0.165047732,-0.165047732,0.501928865,0.124840478,3.589395624,115.4473017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.23531795,2.302027984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600504911,110.9723377,100.8358229,113.2743657,735.8460441,0,0.822064514,34.70800331,-0.822064514,145.2919967,0.989177523,0,828.7181901,113.2743657,902.8539969,3,12,9% +3/29/2018 21:00,35.82970386,200.0186237,827.0917362,891.4368272,104.3500128,901.3598073,793.9213655,107.4384418,101.2034749,6.234966873,203.6845051,0,203.6845051,3.146537897,200.5379672,0.625346302,3.49098355,0.46427957,-0.46427957,0.450757207,0.126164981,3.242509569,104.2902538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.28062957,2.279655995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.349187145,100.2477588,99.62981671,102.5274148,793.9213655,0,0.890608668,27.05016822,-0.890608668,152.9498318,0.99385862,0,888.6754092,102.5274148,955.7775516,3,13,8% +3/29/2018 22:00,41.95411846,221.9124363,748.565897,872.7601073,99.51129711,888.122076,785.9684058,102.1536703,96.51066434,5.643005927,184.4991011,0,184.4991011,3.000632765,181.4984683,0.732237502,3.873102665,0.79308432,-0.79308432,0.394528283,0.132935921,2.680525008,86.21489852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.76972153,2.173948224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942031244,82.8730398,94.71175277,85.04698802,785.9684058,0,0.900554917,25.7688953,-0.900554917,154.2311047,0.994478677,0,876.3405735,85.04698802,932.0021262,3,14,6% +3/29/2018 23:00,51.05228154,238.3864257,614.2873203,832.8681219,90.73726142,801.6121113,708.9801558,92.6319555,88.0011982,4.630757297,151.677136,0,151.677136,2.736063217,148.9410728,0.891030404,4.16062802,1.211875204,-1.211875204,0.322910824,0.147711435,1.958461352,62.99084925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.590099,1.982268486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.418898583,60.54920027,86.00899758,62.53146876,708.9801558,0,0.851251401,31.65195935,-0.851251401,148.3480407,0.991262945,0,788.7947551,62.53146876,829.7203508,3,15,5% +3/29/2018 0:00,61.74109507,251.0093236,434.6542872,754.5677538,77.39922684,641.3356141,562.9936519,78.34196219,75.06535458,3.276607616,107.7208364,0,107.7208364,2.333872262,105.3869642,1.077585393,4.38093915,1.860108307,-1.860108307,0.212056435,0.178070777,1.154565637,37.13479968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.15567407,1.690882509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836478874,35.69538194,72.99215294,37.38626445,562.9936519,0,0.746114115,41.74511757,-0.746114115,138.2548824,0.982986122,0,626.4070997,37.38626445,650.8756621,3,16,4% +3/29/2018 1:00,73.20368463,261.4325217,226.1893945,586.4653569,56.71836419,404.1795798,347.4663723,56.71320744,55.00809624,1.705111199,56.55250538,0,56.55250538,1.710267949,54.84223743,1.277645321,4.562858275,3.247197342,-3.247197342,0,0.250756072,0.427566987,13.75202406,0.024532767,1,0.298741515,0,0.924561147,0.96332311,0.724496596,1,52.93826107,1.239083307,0.004147519,0.312029739,0.988306167,0.712802763,0.961238037,0.922476074,0.307660796,13.21896861,53.24592187,14.45805192,338.9420607,0,0.592475529,53.66712328,-0.592475529,126.3328767,0.965608329,0,380.5311986,14.45805192,389.9937045,3,17,2% +3/29/2018 2:00,84.89375085,270.8376933,30.99055512,162.9886576,16.48408659,81.7447099,65.52405945,16.22065045,15.98703056,0.233619895,8.011074914,0,8.011074914,0.49705603,7.514018884,1.481675467,4.727009487,10.45901271,-10.45901271,0,0.531906787,0.124264008,3.99675764,0.557217039,1,0.095321562,0,0.951747247,0.99050921,0.724496596,1,15.48999991,0.360115402,0.075375429,0.312029739,0.808585917,0.533082513,0.961238037,0.922476074,0.085319382,3.841835467,15.57531929,4.201950869,29.01293705,0,0.402016069,66.29572666,-0.402016069,113.7042733,0.925626862,0,42.43047318,4.201950869,45.18056598,3,18,6% +3/29/2018 3:00,96.82611709,280.107797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689934545,4.888803319,-7.226785208,7.226785208,0.233993254,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182089882,79.50848674,-0.182089882,100.4915133,0.775410334,0,0,0,0,3,19,0% +3/29/2018 4:00,108.2451026,290.0460015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889233439,5.062257709,-2.322204448,2.322204448,0.927274039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04553847,92.61006479,0.04553847,87.38993521,0,0,0,0,0,3,20,0% +3/29/2018 5:00,118.8971824,301.5523504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075147305,5.263081381,-1.126518451,1.126518451,0.722799691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267908184,105.5398295,0.267908184,74.46017054,0,0.863368897,0,0,0,3,21,0% +3/29/2018 6:00,128.1495724,315.7164377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236631973,5.51029134,-0.523556698,0.523556698,0.619687158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469851036,118.0246274,0.469851036,61.9753726,0,0.943583293,0,0,0,3,22,0% +3/29/2018 7:00,135.0186538,333.567196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356520061,5.821845846,-0.111964955,0.111964955,0.549300825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637592366,129.6125217,0.637592366,50.38747831,0,0.97157999,0,0,0,3,23,0% +3/30/2018 8:00,138.2434909,354.9333353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412804085,6.194755327,0.230054182,-0.230054182,0.490812107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759689722,139.4368521,0.759689722,40.56314789,0,0.984183656,0,0,0,3,0,0% +3/30/2018 9:00,136.9708635,17.13432409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390592548,0.299050371,0.563520227,-0.563520227,0.433786055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827812479,145.8746781,0.827812479,34.12532187,0,0.989599847,0,0,0,3,1,0% +3/30/2018 10:00,131.5614654,36.70008863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296180739,0.640537382,0.942669662,-0.942669662,0.368947683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837309402,146.8570803,0.837309402,33.14291974,0,0.990284917,0,0,0,3,2,0% +3/30/2018 11:00,123.2181069,52.39898715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150561664,0.914534851,1.455615651,-1.455615651,0.281228753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787525505,141.9548636,0.787525505,38.04513635,0,0.986509993,0,0,0,3,3,0% +3/30/2018 12:00,113.0846006,64.93038983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973698613,1.133249087,2.337036151,-2.337036151,0.13049697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68184668,132.9881182,0.68184668,47.01188177,0,0.976669732,0,0,0,3,4,0% +3/30/2018 13:00,101.9358136,75.42688492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779115573,1.316447486,4.709478762,-4.709478762,0,#DIV/0!,0,0,0.21581827,1,0.209230123,0,0.937643168,0.976405131,0.724496596,1,0,0,0.033496682,0.312029739,0.909403571,0.633900167,0.961238037,0.922476074,0,0,0,0,0,0,-0.527469,121.8346043,0.527469,58.16539567,0,0.955207699,0,0,0,3,5,0% +3/30/2018 14:00,89.74375083,84.87003092,0.083368873,1.591475725,0.076251194,0.074580409,0,0.074580409,0.073951939,0.00062847,0.54190714,0.519394136,0.022513003,0.002299255,0.020213748,1.566323935,1.481261476,-216.1045065,216.1045065,0,0.914624262,0.000574814,0.018487985,1,0.972592378,0,0.004627358,0.961238037,1,0.711458528,0.986961932,0.071085417,0.001653186,0.115824807,0.297214216,0.724496596,0.448993192,0.963560442,0.924798479,0.000416451,0.01779465,0.071501867,0.019447835,0,0.014235358,-0.326360075,109.0479951,0.326360075,70.95200492,0,0.896794985,0.071501867,0.032214033,0.092585308,3,6,29% +3/30/2018 15:00,78.34314727,94.08518571,133.2595112,447.2709368,42.88849785,42.59981789,0,42.59981789,41.5952514,1.004566485,85.45974604,51.85618827,33.60355778,1.293246452,32.31031133,1.367345866,1.642096268,-4.425198469,4.425198469,0.713092803,0.321841927,0.809109559,26.02374472,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.9829378,0.936952652,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.586197121,25.01501329,40.56913492,25.95196594,0,51.85618827,-0.115939096,96.65779364,0.115939096,83.34220636,0,0.618739092,40.56913492,58.03741678,78.55346345,3,7,94% +3/30/2018 16:00,66.68274358,103.8933113,345.8288638,697.6814975,69.6711059,147.7839316,77.60666256,70.17726905,67.570265,2.607004054,85.9510528,0,85.9510528,2.100840902,83.8502119,1.16383343,1.813280354,-1.925821337,1.925821337,0.859488534,0.201461223,2.314488152,74.44189498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95110888,1.522052082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676838788,71.55638099,66.62794766,73.07843308,77.60666256,0,0.111235088,83.61348215,-0.111235088,96.38651785,0.600501546,0,113.2308685,73.07843308,161.0592414,3,8,42% +3/30/2018 17:00,55.53143859,115.3147906,541.4290782,805.2885327,85.67285387,355.7633104,268.5922881,87.17102232,83.08950123,4.081521092,133.8591011,0,133.8591011,2.583352643,131.2757485,0.969206442,2.012622773,-1.024382327,1.024382327,0.705333385,0.158234674,3.069140032,98.71409352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86878904,1.871630196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223581505,94.88774146,82.09237055,96.75937166,268.5922881,0,0.333535469,70.51649487,-0.333535469,109.4835051,0.900090906,0,323.8498464,96.75937166,387.1769199,3,9,20% +3/30/2018 18:00,45.53139756,129.8004807,698.0628597,858.9345087,96.36351406,558.6776954,459.9576041,98.72009127,93.45779857,5.2622927,172.1591377,0,172.1591377,2.905715493,169.2534222,0.7946728,2.265445759,-0.512430836,0.512430836,0.617784524,0.138044179,3.528615346,113.4923991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.83519083,2.105180983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556469806,109.0932109,92.39166063,111.1983919,459.9576041,0,0.535497875,57.62231763,-0.535497875,122.3776824,0.956628948,0,532.4004195,111.1983919,605.177543,3,10,14% +3/30/2018 19:00,37.78847646,149.1842468,803.0347668,885.8631542,102.9563688,728.926065,623.0205953,105.9054697,99.85185446,6.053615275,197.8095908,0,197.8095908,3.104514389,194.7050764,0.659533333,2.603756298,-0.145496894,0.145496894,0.555035124,0.128209105,3.705319069,119.1757982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98140056,2.249210107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684491052,114.5563103,98.66589161,116.8055204,623.0205953,0,0.703292142,45.30826657,-0.703292142,134.6917334,0.978905789,0,708.544359,116.8055204,784.991236,3,11,11% +3/30/2018 20:00,33.9933642,174.0317497,848.5226921,895.9208872,105.7125963,848.4728608,739.5513669,108.921494,102.5249715,6.39652247,208.9217754,0,208.9217754,3.187624817,205.7341505,0.593296129,3.037427036,0.163500168,-0.163500168,0.502193514,0.124584289,3.608997175,116.077755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.55090234,2.309423329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614706168,111.5783533,101.1656085,113.8877767,739.5513669,0,0.825465035,34.36433286,-0.825465035,145.6356671,0.989428083,0,832.8984993,113.8877767,907.4357714,3,12,9% +3/30/2018 21:00,35.47691398,200.324427,831.2323959,892.1983458,104.6711787,905.1302248,797.3490874,107.7811374,101.5149565,6.266180914,204.6981403,0,204.6981403,3.156222233,201.5419181,0.619188957,3.496320823,0.461189263,-0.461189263,0.451285681,0.125922882,3.260803803,104.8786592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.58003746,2.286672264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.362441255,100.8133565,99.94247872,103.1000288,797.3490874,0,0.89369039,26.65929316,-0.89369039,153.3407068,0.994052213,0,892.5491032,103.1000288,960.0260101,3,13,8% +3/30/2018 22:00,41.66519987,222.3169291,752.4336521,873.5930405,99.82288119,891.6282393,789.1432235,102.4850157,96.81285302,5.672162699,185.4462785,0,185.4462785,3.010028175,182.4362503,0.727194921,3.880162396,0.788014994,-0.788014994,0.395395189,0.132666689,2.697715221,86.76779485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.06019678,2.180755166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954485495,83.40450479,95.01468227,85.58525995,789.1432235,0,0.903330483,25.40064243,-0.903330483,154.5993576,0.994649272,0,879.935415,85.58525995,935.9492559,3,14,6% +3/30/2018 23:00,50.81704233,238.7953366,617.9360934,833.9440259,91.05128226,804.9473669,711.9833534,92.96401345,88.30575016,4.658263289,152.5712922,0,152.5712922,2.745532104,149.8257601,0.886924705,4.167764863,1.203481154,-1.203481154,0.324346291,0.147347409,1.974647658,63.5114565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.88284593,1.989128663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430625507,61.04962777,86.31347143,63.03875643,711.9833534,0,0.853754366,31.3776062,-0.853754366,148.6223938,0.991435146,0,792.1987912,63.03875643,833.4563966,3,15,5% +3/30/2018 0:00,61.54064905,251.3961693,438.136179,756.2812449,77.74157891,644.69822,565.997981,78.70023905,75.39738347,3.302855587,108.5753846,0,108.5753846,2.34419544,106.2311892,1.07408695,4.387690881,1.844343287,-1.844343287,0.214752412,0.177437022,1.169489658,37.61480748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.47483287,1.698361616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847291276,36.1567837,73.32212414,37.85514532,565.997981,0,0.748396162,41.54836117,-0.748396162,138.4516388,0.983190464,0,629.8059419,37.85514532,654.5813774,3,16,4% +3/30/2018 1:00,73.02177057,261.7987566,229.4817712,590.0835238,57.17247381,408.0422326,350.8637893,57.17844331,55.44851278,1.729930525,57.36447331,0,57.36447331,1.723961029,55.64051228,1.274470322,4.56925028,3.206102025,-3.206102025,0,0.249137322,0.430990257,13.8621282,0.017799484,1,0.302342925,0,0.923999615,0.962761578,0.724496596,1,53.34544137,1.249003897,0.003018637,0.312029739,0.991475738,0.715972334,0.961238037,0.922476074,0.310690599,13.32480489,53.65613197,14.57380879,344.6185948,0,0.594600214,53.51586252,-0.594600214,126.4841375,0.965909886,0,386.5266394,14.57380879,396.0649058,3,17,2% +3/30/2018 2:00,84.72028167,271.1919894,33.10927993,171.5862549,17.32023652,86.36953931,69.32198009,17.04755922,16.79796749,0.249591738,8.54999728,0,8.54999728,0.522269036,8.027728244,1.478647858,4.733193119,10.08952006,-10.08952006,0,0.523123323,0.130567259,4.199491871,0.544472233,1,0.098790102,0,0.951361471,0.990123435,0.724496596,1,16.2775433,0.378382139,0.074007668,0.312029739,0.811658406,0.536155002,0.961238037,0.922476074,0.089589894,4.036711322,16.3671332,4.415093461,31.57808681,0,0.404006604,66.17110921,-0.404006604,113.8288908,0.926239647,0,45.61600917,4.415093461,48.50559954,3,18,6% +3/30/2018 3:00,96.64128436,280.4594206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686708605,4.894940308,-7.40322331,7.40322331,0.203820562,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184160911,79.38778436,-0.184160911,100.6122156,0.778498303,0,0,0,0,3,19,0% +3/30/2018 4:00,108.0411746,290.4020399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885674225,5.068471751,-2.337984665,2.337984665,0.929972615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.043375015,92.48598523,0.043375015,87.51401477,0,0,0,0,0,3,20,0% +3/30/2018 5:00,118.6609765,301.9135412,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071024734,5.269385351,-1.128523398,1.128523398,0.723142557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265576041,105.401184,0.265576041,74.59881597,0,0.861730004,0,0,0,3,21,0% +3/30/2018 6:00,127.8673493,316.067061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231706251,5.516410871,-0.521715441,0.521715441,0.619372285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467285556,117.8582399,0.467285556,62.14176013,0,0.942999047,0,0,0,3,22,0% +3/30/2018 7:00,134.6818927,333.8580529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350642471,5.826922257,-0.108186702,0.108186702,0.548654705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634744971,129.401072,0.634744971,50.59892797,0,0.971228206,0,0,0,3,23,0% +3/31/2018 8:00,137.861956,355.0852822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406145045,6.197407299,0.235473873,-0.235473873,0.489885286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756531257,139.1593481,0.756531257,40.84065188,0,0.983908877,0,0,0,3,0,0% +3/31/2018 9:00,136.5764754,17.10900144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383709177,0.298608407,0.571013349,-0.571013349,0.432504656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824335229,145.5211515,0.824335229,34.47884847,0,0.989345065,0,0,0,3,1,0% +3/31/2018 10:00,131.1844415,36.54437317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289600432,0.637819635,0.953550421,-0.953550421,0.367086964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833527634,146.4628352,0.833527634,33.53716482,0,0.990013986,0,0,0,3,2,0% +3/31/2018 11:00,122.8690448,52.17928873,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144469381,0.91070039,1.473341832,-1.473341832,0.278197397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783474499,141.5798073,0.783474499,38.42019266,0,0.986181714,0,0,0,3,3,0% +3/31/2018 12:00,112.7605436,64.68590089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968042752,1.12898195,2.373254908,-2.373254908,0.124303198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677580311,132.6548482,0.677580311,47.34515182,0,0.976208009,0,0,0,3,4,0% +3/31/2018 13:00,101.6292448,75.17315363,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773764939,1.31201904,4.839235415,-4.839235415,0,#DIV/0!,0,0,0.229230244,1,0.203775988,0,0.938384691,0.977146654,0.724496596,1,0,0,0.035374399,0.312029739,0.904585855,0.629082451,0.961238037,0.922476074,0,0,0,0,0,0,-0.523056041,121.5374689,0.523056041,58.46253114,0,0.954407949,0,0,0,3,5,0% +3/31/2018 14:00,89.49104778,84.61083024,0.240174788,2.861066754,0.214760575,0.21009529,0,0.21009529,0.208284751,0.001810539,0.987687948,0.922978966,0.064708982,0.006475824,0.058233158,1.561913435,1.476737571,-108.9325476,108.9325476,0,0.89418451,0.001618956,0.052071188,1,0.944930028,0,0.009179735,0.961238037,1,0.698794786,0.97429819,0.200211225,0.004623523,0.115824807,0.282828669,0.724496596,0.448993192,0.965772229,0.927010266,0.001172928,0.050177755,0.201384153,0.054801278,0,0.050828425,-0.322599592,108.8202102,0.322599592,71.17978977,0,0.895009103,0.201384153,0.100293181,0.267024035,3,6,33% +3/31/2018 15:00,78.04824736,93.81976573,138.410703,456.6723982,43.83935535,43.56083538,0,43.56083538,42.51743703,1.043398344,85.80260275,50.92140703,34.88119572,1.321918314,33.55927741,1.362198892,1.637463815,-4.321783355,4.321783355,0.730777829,0.316733854,0.851464806,27.38603507,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.86937771,0.957725318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.616883354,26.32449858,41.48626106,27.2822239,0,50.92140703,-0.111505331,96.40209859,0.111505331,83.59790141,0,0.601590947,41.48626106,57.91608137,79.391178,3,7,91% +3/31/2018 16:00,66.37811464,103.621005,351.3164533,701.468167,70.23884069,151.8530028,81.08375047,70.76925231,68.12088049,2.648371822,87.2987017,0,87.2987017,2.117960201,85.1807415,1.158516652,1.808527712,-1.904034129,1.904034129,0.855762702,0.199930405,2.342750041,75.35089447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48038143,1.534454955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69731443,72.43014588,67.17769586,73.96460083,81.08375047,0,0.11559149,83.36225756,-0.11559149,96.63774244,0.617442205,0,117.2422255,73.96460083,165.6505775,3,8,41% +3/31/2018 17:00,55.20795031,115.0412661,546.7558919,807.2811273,86.12158723,360.2826247,272.6362442,87.64638048,83.52470362,4.121676864,135.1641797,0,135.1641797,2.59688361,132.5672961,0.963560506,2.00784887,-1.016961385,1.016961385,0.704064329,0.15751378,3.094053279,99.51538918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.28712214,1.881433335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.241631068,95.65797733,82.5287532,97.53941067,272.6362442,0,0.337721563,70.26187996,-0.337721563,109.73812,0.901949045,0,328.4327532,97.53941067,392.2703467,3,9,19% +3/31/2018 18:00,45.17901118,129.5524781,703.1096431,860.204261,96.75673867,563.174019,464.0345155,99.13950349,93.83916601,5.300337485,173.394646,0,173.394646,2.917572665,170.4770733,0.788522498,2.261117296,-0.509925412,0.509925412,0.617356071,0.137612589,3.551293391,114.221803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.20177571,2.113771464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.572899973,109.7943416,92.77467569,111.9081131,464.0345155,0,0.539446893,57.35400564,-0.539446893,122.6459944,0.95731247,0,537.0007039,111.9081131,610.2423258,3,10,14% +3/31/2018 19:00,37.40456079,149.0385699,807.7578639,886.7981868,103.3152956,733.2161471,626.9269689,106.2891782,100.1999583,6.089219976,198.9655834,0,198.9655834,3.115337356,195.850246,0.652832741,2.601213757,-0.145403222,0.145403222,0.555019105,0.127903794,3.726199823,119.847395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.31601117,2.257051309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.699619087,115.2018747,99.01563026,117.458926,626.9269689,0,0.706955628,45.01224642,-0.706955628,134.9877536,0.979274203,0,712.9490383,117.458926,789.8235562,3,11,11% +3/31/2018 20:00,33.60168417,174.1089577,852.9154165,896.7027938,106.0471995,852.4795507,743.2004288,109.2791218,102.8494852,6.429636682,209.9969318,0,209.9969318,3.197714338,206.7992174,0.586460023,3.038774569,0.161968497,-0.161968497,0.502455445,0.124334955,3.628357301,116.7004432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86283721,2.316733152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.628732514,112.1769049,101.4915697,114.4936381,743.2004288,0,0.828814669,34.02283234,-0.828814669,145.9771677,0.989672882,0,837.0168803,114.4936381,911.9506766,3,12,9% +3/31/2018 21:00,35.12597776,200.6342835,835.3153512,892.9412529,104.9885876,908.8376595,800.7179052,108.1197543,101.8227943,6.296959956,205.6976711,0,205.6976711,3.165793283,202.5318778,0.613063965,3.50172884,0.458132249,-0.458132249,0.451808461,0.125687368,3.278885059,105.4602146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.87594293,2.293606457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375541064,101.3723696,100.251484,103.6659761,800.7179052,0,0.89671958,26.26983419,-0.89671958,153.7301658,0.994241209,0,896.3582218,103.6659761,964.2055299,3,13,8% +3/31/2018 22:00,41.3785365,222.724496,756.2490847,874.4060116,100.1308827,895.0721537,792.2596615,102.8124922,97.11156714,5.700925041,186.3806617,0,186.3806617,3.019315557,183.3613461,0.722191702,3.88727578,0.783002725,-0.783002725,0.396252338,0.132404633,2.714731051,87.31508244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34733215,2.187483843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966813405,83.93057843,95.31414556,86.11806227,792.2596615,0,0.906054683,25.03429219,-0.906054683,154.9657078,0.994815693,0,883.4664895,86.11806227,939.8290389,3,14,6% +3/31/2018 23:00,50.58386673,239.2055028,621.5405659,834.9954206,91.36183237,808.223679,714.9313076,93.29237136,88.60693603,4.685435326,153.4546025,0,153.4546025,2.754896335,150.6997062,0.882855023,4.174923612,1.195191667,-1.195191667,0.325763877,0.146992549,1.990708233,64.0280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.17235724,1.995913017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442261338,61.54616805,86.61461858,63.54208107,714.9313076,0,0.856209855,31.10634758,-0.856209855,148.8936524,0.991603101,0,795.5427206,63.54208107,837.1297418,3,15,5% +3/31/2018 0:00,61.34180131,251.7831024,441.5842831,757.9579562,78.08020686,648.0060049,568.9513555,79.05464939,75.72580054,3.328848852,109.4216282,0,109.4216282,2.354406322,107.0672219,1.070616402,4.394444138,1.828819204,-1.828819204,0.217407186,0.176818356,1.18435103,38.0928003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.79051985,1.705759366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.858058289,36.61624858,73.64857814,38.32200794,568.9513555,0,0.750637091,41.35440513,-0.750637091,138.6455949,0.983389916,0,633.1496036,38.32200794,658.2305914,3,16,4% +3/31/2018 1:00,72.84093768,262.164404,232.7552882,593.6249927,57.6208189,411.8493943,354.211448,57.63794629,55.88333861,1.754607678,58.17169465,0,58.17169465,1.737480288,56.43421436,1.271314193,4.575632031,3.165950101,-3.165950101,0,0.247559655,0.434370072,13.97083465,0.011130384,1,0.305943863,0,0.923435498,0.962197462,0.724496596,1,53.7466965,1.258798554,0.001893503,0.312029739,0.994644674,0.71914127,0.961238037,0.922476074,0.313705423,13.42929768,54.06040192,14.68809623,350.2689385,0,0.596692276,53.36663513,-0.596692276,126.6333649,0.966204714,0,392.4919014,14.68809623,402.1049666,3,17,2% +3/31/2018 2:00,84.54722012,271.545227,35.27115258,180.1509201,18.15224517,91.00801304,73.1372362,17.87077685,17.604888,0.265888847,9.099256464,0,9.099256464,0.547357166,8.551899298,1.475627365,4.739358279,9.743913992,-9.743913992,0,0.514648483,0.136839292,4.401222,0.5318689,1,0.102270112,0,0.950971611,0.989733575,0.724496596,1,17.06120138,0.396558404,0.072641924,0.312029739,0.814741257,0.539237853,0.961238037,0.922476074,0.093840219,4.230621995,17.1550416,4.627180399,34.23781482,0,0.405977589,66.04759758,-0.405977589,113.9524024,0.926840492,0,48.88803475,4.627180399,51.91643177,3,18,6% +3/31/2018 3:00,96.45665787,280.8095262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683486265,4.901050803,-7.589284879,7.589284879,0.172002159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186219333,79.26776954,-0.186219333,100.7322305,0.781499414,0,0,0,0,3,19,0% +3/31/2018 4:00,107.8371206,290.7559673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882112811,5.07464895,-2.354085816,2.354085816,0.932726074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041213636,92.36203639,0.041213636,87.63796361,0,0,0,0,0,3,20,0% +3/31/2018 5:00,118.4244601,302.2717738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066896744,5.275637688,-1.130562492,1.130562492,0.723491262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.26323615,105.2621709,0.26323615,74.73782915,0,0.860056484,0,0,0,3,21,0% +3/31/2018 6:00,127.5849128,316.4136639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.226776805,5.522460233,-0.519863146,0.519863146,0.619055524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464703894,117.6910603,0.464703894,62.30893975,0,0.942404603,0,0,0,3,22,0% +3/31/2018 7:00,134.3454385,334.1443448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344770237,5.831918995,-0.104380749,0.104380749,0.548003849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631874932,129.1885875,0.631874932,50.81141251,0,0.970870417,0,0,0,3,23,0% +4/1/2018 8:00,137.4814638,355.2342179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399504203,6.200006719,0.240936613,-0.240936613,0.488951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753346106,138.8810652,0.753346106,41.11893476,0,0.983629444,0,0,0,4,0,0% +4/1/2018 9:00,136.1834291,17.08383349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376849225,0.298169143,0.578574689,-0.578574689,0.431211591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82082995,145.1679615,0.82082995,34.83203853,0,0.989086043,0,0,0,4,1,0% +4/1/2018 10:00,130.8085564,36.39069943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283039999,0.635137522,0.964553214,-0.964553214,0.365205375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829719289,146.069913,0.829719289,33.93008701,0,0.989738655,0,0,0,4,2,0% +4/1/2018 11:00,122.5208946,51.96183379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138393013,0.906905085,1.491335812,-1.491335812,0.275120245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779401063,141.20577,0.779401063,38.79423005,0,0.985848176,0,0,0,4,3,0% +4/1/2018 12:00,112.4373515,64.443211,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962401986,1.124746212,2.410319417,-2.410319417,0.117964793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67329807,132.3221246,0.67329807,47.67787537,0,0.975738685,0,0,0,4,4,0% +4/1/2018 13:00,101.3236481,74.92067727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768431269,1.307612496,4.975378433,-4.975378433,0,#DIV/0!,0,0,0.242817824,1,0.198347048,0,0.939116308,0.977878271,0.724496596,1,0,0,0.037254791,0.312029739,0.899789142,0.624285738,0.961238037,0.922476074,0,0,0,0,0,0,-0.518635725,121.240783,0.518635725,58.75921696,0,0.95359322,0,0,0,4,5,0% +4/1/2018 14:00,89.23496753,84.35235526,0.501686497,4.807879523,0.437491984,0.428081911,0,0.428081911,0.424299987,0.003781925,1.667436145,1.532604448,0.134831697,0.013191997,0.121639699,1.557443991,1.472226331,-72.55150665,72.55150665,0,0.872042575,0.003297999,0.106074997,1,0.916228205,0,0.013782439,0.961238037,1,0.686155734,0.961659138,0.407853286,0.009356228,0.115824807,0.26847725,0.724496596,0.448993192,0.967935879,0.929173916,0.002389389,0.102329353,0.410242676,0.111685581,0,0.128389025,-0.318769312,108.5885144,0.318769312,71.41148558,0,0.893146758,0.410242676,0.226355823,0.558388034,4,6,36% +4/1/2018 15:00,77.75468349,93.55451599,143.5616388,465.7880342,44.76902594,44.5013029,0,44.5013029,43.41907463,1.082228274,86.03622757,49.87809484,36.15813273,1.349951312,34.80818142,1.357075236,1.632834334,-4.223638328,4.223638328,0.747561617,0.311845325,0.8942272,28.76142064,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.73606606,0.97803513,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.647864562,27.64657151,42.38393062,28.62460664,0,49.87809484,-0.107083246,96.14720462,0.107083246,83.85279538,0,0.583073551,42.38393062,57.70720451,80.15214183,4,7,89% +4/1/2018 16:00,66.07515081,103.3481898,356.7656748,705.1547118,70.79860036,155.9185358,84.56532409,71.35321169,68.66376134,2.689450355,88.63680736,0,88.63680736,2.13483902,86.50196834,1.153228935,1.803766188,-1.882858767,1.882858767,0.852141502,0.198445662,2.370705788,76.2500474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.00221915,1.546683603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717568273,73.29444587,67.71978743,74.84112947,84.56532409,0,0.119924497,83.11225489,-0.119924497,96.88774511,0.633071005,0,121.2556421,74.84112947,170.2376645,4,8,40% +4/1/2018 17:00,54.88633186,114.7663214,552.032163,809.2257761,86.56516586,364.7698799,276.6535216,88.11635835,83.95490672,4.161451624,136.4568483,0,136.4568483,2.610259142,133.8465891,0.957947205,2.003050178,-1.009694099,1.009694099,0.70282155,0.156811816,3.118686072,100.3076645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.70064972,1.891123863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259477443,96.41954249,82.96012716,98.31066635,276.6535216,0,0.341874332,70.00889029,-0.341874332,109.9911097,0.903747429,0,332.985036,98.31066635,397.3274009,4,9,19% +4/1/2018 18:00,44.82850211,129.3020123,708.0990117,861.4440337,97.14556693,567.6234511,468.0692319,99.55421911,94.21626966,5.337949453,174.6161007,0,174.6161007,2.929297272,171.6868035,0.782404961,2.256745843,-0.507465694,0.507465694,0.616935434,0.137192067,3.573697661,114.9424013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56426209,2.122265902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.58913179,110.4870082,93.15339388,112.6092741,468.0692319,0,0.543354198,57.08773313,-0.543354198,122.9122669,0.957978994,0,541.5538857,112.6092741,615.2544034,4,10,14% +4/1/2018 19:00,37.02222674,148.8904553,812.4201397,887.7107639,103.6701011,737.449999,630.7815678,106.6684312,100.544065,6.124366181,200.1067048,0,200.1067048,3.126036049,196.9806687,0.646159753,2.59862867,-0.145316117,0.145316117,0.555004209,0.127606513,3.74681723,120.5105217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64677967,2.264802476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.714556329,115.8392973,99.361336,118.1040998,630.7815678,0,0.710571048,44.71860363,-0.710571048,135.2813964,0.97963406,0,717.296444,118.1040998,794.5932152,4,11,11% +4/1/2018 20:00,33.21140402,174.1870489,857.2471265,897.4654923,106.3778557,856.4245669,746.792105,109.6324618,103.1701709,6.462290942,211.0571755,0,211.0571755,3.207684843,207.8494907,0.579648349,3.040137518,0.160450935,-0.160450935,0.502714964,0.124092403,3.647473775,117.3152947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.17109254,2.323956749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642582334,112.7679236,101.8136749,115.0918803,746.792105,0,0.832112333,33.68365888,-0.832112333,146.3163411,0.989911959,0,841.0721105,115.0918803,916.3974444,4,12,9% +4/1/2018 21:00,34.77696476,200.9480687,839.3401867,893.665797,105.3022319,912.4814766,804.0271946,108.4542819,102.1269811,6.327300866,206.6829966,0,206.6829966,3.175250815,203.5077458,0.606972539,3.507205424,0.455106635,-0.455106635,0.452325871,0.125458346,3.296752559,106.0348948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1683388,2.300458407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388486006,101.9247741,100.5568248,104.2252325,804.0271946,0,0.89969561,25.88191464,-0.89969561,154.1180854,0.994425649,0,900.1020893,104.2252325,968.3154195,4,13,8% +4/1/2018 22:00,41.09416123,223.1349619,760.0121554,875.1993761,100.4353181,898.453699,795.3175836,103.1361154,97.40682271,5.729292658,187.3022416,0,187.3022416,3.028495408,184.2737462,0.717228417,3.894439762,0.778045187,-0.778045187,0.397100126,0.132149621,2.731572713,87.85676818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63114304,2.194134614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979015132,84.45126737,95.61015817,86.64540198,795.3175836,0,0.90872732,24.66993515,-0.90872732,155.3300649,0.994977994,0,886.9336521,86.64540198,943.6413348,4,14,6% +4/1/2018 23:00,50.3527546,239.6167462,625.1009774,836.0228689,91.66895396,811.4414027,717.8243307,93.61707198,88.90479677,4.712275211,154.3271263,0,154.3271263,2.764157184,151.5629691,0.878821355,4.182101164,1.18700316,-1.18700316,0.327164194,0.146646634,2.006643704,64.54055931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.45867232,2.00262247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453806533,62.03884053,86.91247885,64.041463,717.8243307,0,0.858618056,30.83822937,-0.858618056,149.1617706,0.99176689,0,798.8268826,64.041463,840.7407393,4,15,5% +4/1/2018 0:00,61.14453365,252.169966,444.9989842,759.5989342,78.4151905,651.2597629,571.8544894,79.4052735,76.05068319,3.354590311,110.2596631,0,110.2596631,2.364507315,107.8951557,1.067173432,4.401196181,1.813528007,-1.813528007,0.220022135,0.176214313,1.199149965,38.56878491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.10280941,1.713077501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.868780067,37.07378309,73.97158948,38.78686059,571.8544894,0,0.752837404,41.16323602,-0.752837404,138.836764,0.983584596,0,636.4388567,38.78686059,661.8240812,4,16,4% +4/1/2018 1:00,72.6611619,262.5293251,236.0102096,597.0922694,58.06358145,415.602339,357.5104441,58.09189489,56.31275024,1.779144651,58.97423895,0,58.97423895,1.750831213,57.22340774,1.268176513,4.582001106,3.126703062,-3.126703062,0,0.246021482,0.437707803,14.07818756,0.00452347,1,0.309544828,0,0.922868727,0.96163069,0.724496596,1,54.14219506,1.268471253,0.000771918,0.312029739,0.997813438,0.722310034,0.961238037,0.922476074,0.316706224,13.53248937,54.45890128,14.80096063,355.8932562,0,0.598752425,53.2194012,-0.598752425,126.7805988,0.966493031,0,398.4272533,14.80096063,408.114186,4,17,2% +4/1/2018 2:00,84.37455884,271.8972778,37.47375514,188.6712421,18.97929383,95.65407388,76.96458279,18.68949109,18.4069981,0.282492995,9.658241525,0,9.658241525,0.572295735,9.08594579,1.472613857,4.745502724,9.419915946,-9.419915946,0,0.506468961,0.143073934,4.601749524,0.519403325,1,0.105761951,0,0.950577603,0.989339566,0.724496596,1,17.84018171,0.414626312,0.071278049,0.312029739,0.817834739,0.542331335,0.961238037,0.922476074,0.098066983,4.423376678,17.93824869,4.83800299,36.98892262,0,0.407929592,65.9251588,-0.407929592,114.0748412,0.927429829,0,52.24287885,4.83800299,55.40925505,4,18,6% +4/1/2018 3:00,96.27222289,281.1579892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680267268,4.907132631,-7.78583559,7.78583559,0.138390008,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.18826596,79.14839511,-0.18826596,100.8516049,0.784418267,0,0,0,0,4,19,0% +4/1/2018 4:00,107.6329404,291.1076596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878549193,5.080787137,-2.370526284,2.370526284,0.935537559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039053648,92.23817836,0.039053648,87.76182164,0,0,0,0,0,4,20,0% +4/1/2018 5:00,118.1876545,302.6269266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062763707,5.281836275,-1.13264069,1.13264069,0.723846655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260888063,105.1227632,0.260888063,74.87723682,0,0.858346923,0,0,0,4,21,0% +4/1/2018 6:00,127.3023113,316.7561425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221844478,5.528437612,-0.518002726,0.518002726,0.618737373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462105928,117.5230829,0.462105928,62.47691712,0,0.9417997,0,0,0,4,22,0% +4/1/2018 7:00,134.0093649,334.4260024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338904646,5.836834845,-0.100549437,0.100549437,0.547348656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628982522,128.9750947,0.628982522,51.02490528,0,0.970506535,0,0,0,4,23,0% +4/2/2018 8:00,137.1021045,355.380072,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392883134,6.202552353,0.246440206,-0.246440206,0.488009932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750134978,138.6020715,0.750134978,41.39792852,0,0.983345329,0,0,0,4,0,0% +4/2/2018 9:00,135.7918344,17.05869986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370014608,0.297730479,0.586202029,-0.586202029,0.429907239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817297802,144.815201,0.817297802,35.18479897,0,0.988822789,0,0,0,4,1,0% +4/2/2018 10:00,130.433942,36.23894743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276501744,0.63248895,0.975675911,-0.975675911,0.363303282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825885955,145.6784166,0.825885955,34.32158342,0,0.989458953,0,0,0,4,2,0% +4/2/2018 11:00,122.1737995,51.74654361,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132335061,0.903147563,1.509597096,-1.509597096,0.271997382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775307163,140.8328894,0.775307163,39.16711063,0,0.985509431,0,0,0,4,3,0% +4/2/2018 12:00,112.1151694,64.20227823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956778847,1.120541142,2.448245933,-2.448245933,0.111478977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669002225,131.9901027,0.669002225,48.00989728,0,0.975261833,0,0,0,4,4,0% +4/2/2018 13:00,101.0191662,74.6694369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763117059,1.303227524,5.118337319,-5.118337319,0,#DIV/0!,0,0,0.256579389,1,0.192945427,0,0.939837805,0.978599768,0.724496596,1,0,0,0.039137158,0.312029739,0.895015339,0.619511935,0.961238037,0.922476074,0,0,0,0,0,0,-0.514210529,120.9447002,0.514210529,59.05529979,0,0.952763562,0,0,0,4,5,0% +4/2/2018 14:00,88.97569254,84.0945997,0.89795958,7.600972365,0.762080148,0.745869819,0,0.745869819,0.73910062,0.006769199,2.634034454,2.393334229,0.240700225,0.022979528,0.217720696,1.552918789,1.467727648,-54.24637655,54.24637655,0,0.84867979,0.005744882,0.184775155,1,0.886451771,0,0.018432323,0.961238037,1,0.673555542,0.949058947,0.710451629,0.016196855,0.115824807,0.254177287,0.724496596,0.448993192,0.970048719,0.931286756,0.004162147,0.178427642,0.714613776,0.194624497,0,0.271758864,-0.314872113,108.3530935,0.314872113,71.64690645,0,0.891205372,0.714613776,0.436817456,1.000502065,4,6,40% +4/2/2018 15:00,77.4626,93.28943536,148.7076126,474.6233497,45.67787174,45.42153617,0,45.42153617,44.30051538,1.121020798,86.16541974,48.73218104,37.43323871,1.377356366,36.05588234,1.351977417,1.628207804,-4.130411747,4.130411747,0.763504302,0.307165659,0.937338915,30.14804159,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.58334043,0.997889999,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.679098853,28.97944432,43.26243928,29.97733431,0,48.73218104,-0.102675482,95.89325756,0.102675482,84.10674244,0,0.563028824,43.26243928,57.41495692,80.83938029,4,7,87% +4/2/2018 16:00,65.77399211,103.0748609,362.1737817,708.7428129,71.35036488,159.9774189,88.04831179,71.92910707,69.19888812,2.730218949,89.96470322,0,89.96470322,2.151476756,87.81322647,1.147972724,1.798995699,-1.862280332,1.862280332,0.848622383,0.197005881,2.398346266,77.13906018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.51660337,1.558737586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.737593705,74.14899877,68.25419708,75.70773636,88.04831179,0,0.124231682,82.86361144,-0.124231682,97.13638856,0.647526177,0,125.2677838,75.70773636,174.8169831,4,8,40% +4/2/2018 17:00,54.566725,114.4899316,557.2556684,811.1229591,87.00350969,369.2225867,280.6417252,88.58086148,84.38003287,4.200828614,137.7365653,0,137.7365653,2.623476826,135.1130885,0.952369013,1.998226267,-1.002580568,1.002580568,0.701605064,0.156128532,3.14303068,101.0906708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10929714,1.90070003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.277115028,97.1721979,83.38641217,99.07289793,280.6417252,0,0.345991594,69.75766192,-0.345991594,110.2423381,0.905487818,0,337.5040757,99.07289793,402.345306,4,9,19% +4/2/2018 18:00,44.48001204,129.0490058,713.0292107,862.6540517,97.52992548,572.023927,472.0597733,99.96415375,94.58903838,5.375115375,175.8230744,0,175.8230744,2.9408871,172.8821873,0.776322661,2.252330048,-0.505053301,0.505053301,0.616522891,0.13678251,3.59582239,115.6540086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92258156,2.130662693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605161081,111.1710322,93.52774264,113.3016949,472.0597733,0,0.54721794,56.8236394,-0.54721794,123.1763606,0.958628727,0,546.057802,113.3016949,620.2114953,4,10,14% +4/2/2018 19:00,36.64160202,148.7397476,817.0203173,888.6010623,104.0207321,741.6260178,634.5828503,107.0431674,100.8841232,6.159044262,201.2326439,0,201.2326439,3.136608867,198.0960351,0.639516598,2.595998325,-0.145237294,0.145237294,0.55499073,0.127317191,3.767167475,121.1650556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97365652,2.272462447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.729300012,116.4684601,99.70295653,118.7409226,634.5828503,0,0.714136948,44.42748653,-0.714136948,135.5725135,0.979985418,0,721.5848963,118.7409226,799.2984553,4,11,11% +4/2/2018 20:00,32.82262072,174.2658777,861.5170133,898.2091762,106.7045354,860.3068106,750.3253315,109.9814791,103.4869999,6.494479153,212.1023096,0,212.1023096,3.217535439,208.8847742,0.572862801,3.041513339,0.158945791,-0.158945791,0.502972358,0.123856562,3.666344509,117.9222424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47564065,2.331093473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.656254116,113.3513448,102.1318948,115.6824382,750.3253315,0,0.83535701,33.34696921,-0.83535701,146.6530308,0.990145352,0,845.063034,115.6824382,920.7748762,4,12,9% +4/2/2018 21:00,34.42994425,201.2656552,843.3065225,894.3722255,105.6121055,916.061095,807.2763833,108.7847116,102.4275109,6.357200781,207.6540245,0,207.6540245,3.184594648,204.4694299,0.600915888,3.512748355,0.452110631,-0.452110631,0.452838218,0.125235727,3.314405595,106.6026771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45721947,2.307227982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401275571,102.4705481,100.858495,104.7777761,807.2763833,0,0.902617904,25.49565842,-0.902617904,154.5043416,0.994605575,0,903.7800862,104.7777761,972.3550451,4,13,8% +4/2/2018 22:00,40.81210639,223.5481494,763.7228432,875.9734825,100.7362045,901.7727929,798.3168912,103.4559016,97.69863626,5.75726539,188.2110137,0,188.2110137,3.037568243,185.1734454,0.712305631,3.901651243,0.773140196,-0.773140196,0.397938929,0.131901521,2.748240422,88.39285898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.91164532,2.200707852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.99109083,84.96657824,95.90273615,87.16728609,798.3168912,0,0.91134824,24.30766176,-0.91134824,155.6923382,0.99513623,0,890.3367978,87.16728609,947.3860432,4,14,6% +4/2/2018 23:00,50.12370585,240.0288884,628.6175678,837.026916,91.97268828,814.60091,720.6627529,93.93815714,89.19937238,4.738784756,155.1889231,0,155.1889231,2.773315895,152.4156072,0.8748237,4.189294402,1.178912281,-1.178912281,0.328547816,0.146309446,2.022454635,65.04909322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.7418296,2.009257925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465261499,62.52766266,87.2070911,64.53692059,720.6627529,0,0.860979186,30.57329575,-0.860979186,149.4267043,0.991926587,0,802.0516358,64.53692059,844.2897596,4,15,5% +4/2/2018 0:00,60.94882885,252.5566034,448.3806511,761.2051796,78.74660609,654.4602774,574.7080893,79.75218811,76.37210537,3.380082744,111.0895807,0,111.0895807,2.374500718,108.71508,1.063757739,4.407944277,1.798462174,-1.798462174,0.222598544,0.175624452,1.213886577,39.04276503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.41177263,1.720317687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.879456693,37.52939081,74.29122933,39.24970849,574.7080893,0,0.754997607,40.9748393,-0.754997607,139.0251607,0.983774625,0,639.6744641,39.24970849,665.3626133,4,16,4% +4/2/2018 1:00,72.48242101,262.8933818,239.2467767,600.4877292,58.50093312,419.3022915,360.7618341,58.54045741,56.73691414,1.803543261,59.77216988,0,59.77216988,1.764018979,58.0081509,1.265056897,4.588355094,3.088325039,-3.088325039,0.002019003,0.244521301,0.443755715,14.27270919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.53767997,1.278025745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321499505,13.71947096,54.85917947,14.9974967,360.7618341,0,0.600781359,53.07412111,-0.600781359,126.9258789,0.966775048,0,403.6347188,14.9974967,413.4502805,4,17,2% +4/2/2018 2:00,84.20229163,272.2480142,39.71477995,197.1371241,19.8006766,100.3022476,80.79924767,19.50299993,19.20361314,0.299386787,10.22637166,0,10.22637166,0.597063456,9.6293082,1.469607227,4.751624231,9.115532013,-9.115532013,0,0.498571983,0.149265864,4.800903286,0.50707206,1,0.109265937,0,0.950179385,0.988941348,0.724496596,1,18.61379797,0.432570442,0.069915909,0.312029739,0.820939088,0.545435684,0.961238037,0.922476074,0.102267382,4.61481085,18.71606535,5.047381291,39.8282067,0,0.409863175,65.80376001,-0.409863175,114.19624,0.92800807,0,55.67696256,5.047381291,58.98037267,4,18,6% +4/2/2018 3:00,96.08796793,281.5046866,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677051412,4.913183641,-7.993841939,7.993841939,0.102818827,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190301563,79.02961641,-0.190301563,100.9703836,0.787259121,0,0,0,0,4,19,0% +4/2/2018 4:00,107.4286374,291.4569943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874983433,5.086884179,-2.387324834,2.387324834,0.938410281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036894422,92.11437454,0.036894422,87.88562546,0,0,0,0,0,4,20,0% +4/2/2018 5:00,117.950585,302.9788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058626064,5.287979046,-1.13476291,1.13476291,0.724209576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258531397,104.9829383,0.258531397,75.01706175,0,0.856599892,0,0,0,4,21,0% +4/2/2018 6:00,127.0195971,317.0943973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216910183,5.534341272,-0.516137064,0.516137064,0.618418326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459491607,117.3543067,0.459491607,62.64569332,0,0.941184084,0,0,0,4,22,0% +4/2/2018 7:00,133.6737485,334.7029614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333047035,5.841668692,-0.096695103,0.096695103,0.546689526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626068087,128.7606252,0.626068087,51.2393748,0,0.970136482,0,0,0,4,23,0% +4/3/2018 8:00,136.7239699,355.5227806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38628344,6.205043087,0.251982434,-0.251982434,0.487062156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746898652,138.322439,0.746898652,41.67756102,0,0.983056513,0,0,0,4,0,0% +4/3/2018 9:00,135.4018012,17.03348841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363207244,0.297290456,0.593893092,-0.593893092,0.428591989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813739999,144.4629657,0.813739999,35.53703434,0,0.988555312,0,0,0,4,1,0% +4/3/2018 10:00,130.0607291,36.08900393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269987949,0.629871942,0.986916263,-0.986916263,0.361381069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822029261,145.2884495,0.822029261,34.71155047,0,0.989174915,0,0,0,4,2,0% +4/3/2018 11:00,121.8279011,51.53334401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126297995,0.899426527,1.52812497,-1.52812497,0.268828929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771194794,140.4613018,0.771194794,39.53869816,0,0.985165537,0,0,0,4,3,0% +4/3/2018 12:00,111.7941402,63.96306401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951175831,1.116366067,2.487050778,-2.487050778,0.104842958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664695057,131.6589352,0.664695057,48.34106476,0,0.974777536,0,0,0,4,4,0% +4/3/2018 13:00,100.7159402,74.41941669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757824765,1.298863849,5.268579969,-5.268579969,0,#DIV/0!,0,0,0.270513107,1,0.187573217,0,0.940548983,0.979310946,0.724496596,1,0,0,0.04102079,0.312029739,0.89026633,0.614762926,0.961238037,0.922476074,0,0,0,0,0,0,-0.509782921,120.6493713,0.509782921,59.35062871,0,0.951919037,0,0,0,4,5,0% +4/3/2018 14:00,88.71369196,83.83756069,1.456187572,11.37900161,1.200746912,1.17551732,0,1.17551732,1.164539963,0.010977357,3.927185893,3.537909407,0.389276486,0.03620695,0.353069536,1.548346016,1.463241471,-43.24281244,43.24281244,0,0.824582585,0.009051737,0.291134991,1,0.855597965,0,0.023121109,0.961238037,1,0.661021622,0.936525026,1.119400108,0.025374007,0.115824807,0.239960824,0.724496596,0.448993192,0.972106195,0.933344232,0.006557953,0.281384556,1.125958061,0.306758563,0,0.510881319,-0.310915626,108.114419,0.310915626,71.88558099,0,0.889184667,1.125958061,0.761026399,1.624034618,4,6,44% +4/3/2018 15:00,77.17213867,93.02452665,153.8440934,483.1841433,46.566265,46.32186206,0,46.32186206,45.1621203,1.15974176,86.19500005,47.48957376,38.70542629,1.404144701,37.30128159,1.346907911,1.623584275,-4.041782373,4.041782373,0.778660817,0.302684776,0.980743527,31.5440831,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.41154786,1.017298056,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.710545346,30.32137251,44.1220932,31.33867057,0,47.48957376,-0.098284628,95.64040027,0.098284628,84.35959973,0,0.541273447,44.1220932,57.04351586,81.45593346,4,7,85% +4/3/2018 16:00,65.47477649,102.8010185,367.5380998,712.2341599,71.89411746,164.0265934,91.52969142,72.496902,69.72624456,2.770657445,91.2817404,0,91.2817404,2.167872902,89.1138675,1.142750427,1.794216248,-1.842284246,1.842284246,0.845202851,0.195609972,2.425662707,78.01765081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02351843,1.570616538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757384374,74.9935335,68.78090281,76.56415004,91.52969142,0,0.128510673,82.6164617,-0.128510673,97.3835383,0.660927258,0,129.2753708,76.56415004,179.3850757,4,8,39% +4/3/2018 17:00,54.24926986,114.2120782,562.424255,812.9731725,87.4365429,373.6383192,284.5985191,89.03980012,84.80000852,4.239791603,139.0028065,0,139.0028065,2.636534375,136.3662721,0.946828376,1.993376811,-0.995620727,0.995620727,0.700414861,0.155463677,3.167079677,101.8641692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51299372,1.910160179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294538445,97.91571401,83.80753216,99.82587419,284.5985191,0,0.350071231,69.50832803,-0.350071231,110.491672,0.907171925,0,341.9873186,99.82587419,407.3213568,4,9,19% +4/3/2018 18:00,44.13368188,128.7933873,717.8985517,863.8345511,97.90974476,576.3734534,476.0042262,100.3692272,94.95740471,5.411822524,177.0151555,0,177.0151555,2.952340053,174.0628154,0.77027806,2.247868664,-0.502689714,0.502689714,0.616118694,0.136383817,3.617662063,116.3564476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.27666929,2.138960318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62098385,111.8462432,93.89765314,113.9852036,476.0042262,0,0.551036336,56.56186094,-0.551036336,123.4381391,0.959261882,0,550.5103631,113.9852036,625.1113991,4,10,14% +4/3/2018 19:00,36.2628146,148.5862945,821.5571774,889.4692652,104.3671386,745.7426717,638.3293424,107.4133293,101.2200843,6.19324503,202.3431036,0,202.3431036,3.147054302,199.1960493,0.632905511,2.593320062,-0.145168354,0.145168354,0.55497894,0.127035758,3.787246923,121.8108796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.2965951,2.280030129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743847504,117.0892508,100.0404426,119.3692809,638.3293424,0,0.717651938,44.13904115,-0.717651938,135.8609589,0.980328343,0,725.8127888,119.3692809,803.9375958,4,11,11% +4/3/2018 20:00,32.43543173,174.3452982,865.724313,898.9340408,107.027211,864.1252469,753.7991057,110.3261412,103.7999457,6.526195555,213.132148,0,213.132148,3.227265299,209.9048827,0.566105078,3.042899488,0.157451486,-0.157451486,0.5032279,0.12362736,3.684967522,118.5212225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.77645601,2.338142723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669746426,113.9271072,102.4462024,116.26525,753.7991057,0,0.838547737,33.01291951,-0.838547737,146.9870805,0.990373102,0,848.9885614,116.26525,925.0818422,4,12,9% +4/3/2018 21:00,34.0849858,201.5869139,847.2140065,895.060783,105.9182037,919.5759841,810.4649481,109.1110361,102.724379,6.386657046,208.6106692,0,208.6106692,3.193824637,205.4168446,0.594895228,3.518355376,0.44914257,-0.44914257,0.453345787,0.12501942,3.331843485,107.1635396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.74258042,2.313915077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.413909263,103.0096705,101.1564897,105.3235855,810.4649481,0,0.905485933,25.11119023,-0.905485933,154.8888098,0.994781031,0,907.391646,105.3235855,976.3238263,4,13,8% +4/3/2018 22:00,40.5324045,223.9638786,767.3811361,876.7286702,101.0335588,905.0293845,801.2575172,103.7718673,97.9870242,5.784843147,189.1069755,0,189.1069755,3.046534571,186.0604409,0.707423912,3.908907086,0.768285726,-0.768285726,0.398769093,0.131660206,2.764734339,88.92336005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.18885478,2.207203926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003040617,85.47651604,96.19189539,87.68371997,801.2575172,0,0.913917321,23.94756287,-0.913917321,156.0524371,0.995290456,0,893.6758549,87.68371997,951.063096,4,14,6% +4/3/2018 23:00,49.89672121,240.4417504,632.090566,838.0080855,92.27307481,817.7025803,723.4469134,94.25566684,89.49070116,4.764965683,156.0400495,0,156.0400495,2.782373657,153.2576758,0.870862071,4.196500204,1.170915933,-1.170915933,0.329915272,0.145980782,2.038141473,65.55363585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0218659,2.015820243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476626559,63.01264823,87.49849246,65.02846847,723.4469134,0,0.863293476,30.31158986,-0.863293476,149.6884101,0.992082268,0,805.2173473,65.02846847,847.7771793,4,15,5% +4/3/2018 0:00,60.7546714,252.9428586,451.7296225,762.7776434,79.0745254,657.6083084,577.512843,80.09546541,76.6901367,3.405328706,111.9114656,0,111.9114656,2.384388695,109.5270769,1.060369052,4.414685702,1.783614748,-1.783614748,0.225137604,0.175048351,1.228560829,39.51473942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.71747645,1.727481493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890088139,37.98307055,74.60756459,39.71055204,577.512843,0,0.757118209,40.78920004,-0.757118209,139.2108,0.983960114,0,642.8571676,39.71055204,668.8469297,4,16,4% +4/3/2018 1:00,72.30469537,263.2564369,242.4651935,603.8136093,58.93303409,422.950412,363.9666213,58.98379072,57.15598567,1.827805046,60.56554174,0,60.56554174,1.777048418,58.78849332,1.261954999,4.594691601,3.050782746,-3.050782746,0.008439114,0.243057708,0.45593798,14.66453273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.94050746,1.287465529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330325515,14.09610665,55.27083298,15.38357218,363.9666213,0,0.602779758,52.93075636,-0.602779758,127.0692436,0.967050964,0,407.2451049,15.38357218,417.3133452,4,17,2% +4/3/2018 2:00,84.03041428,272.5973101,41.99201343,205.5396251,20.61578405,104.9475732,84.63687754,20.31069564,19.9941421,0.316553535,10.80309178,0,10.80309178,0.621641953,10.18144982,1.466607401,4.757720594,8.829011148,-8.829011148,0,0.490945358,0.155410488,4.998535525,0.494871976,1,0.11278233,0,0.949776904,0.988538867,0.724496596,1,19.38145477,0.450377479,0.068555397,0.312029739,0.824054486,0.548551082,0.961238037,0.922476074,0.106439089,4.804782475,19.48789385,5.255159955,42.75245875,0,0.411778885,65.68336937,-0.411778885,114.3166306,0.92857561,0,59.1867843,5.255159955,62.62618139,4,18,6% +4/3/2018 3:00,95.90388539,281.8494964,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673838566,4.919201707,-8.214385428,8.214385428,0.06510367,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.192326855,78.91139197,-0.192326855,101.088608,0.790025905,0,0,0,0,4,19,0% +4/3/2018 4:00,107.2242195,291.8038514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871415668,5.092937977,-2.404500526,2.404500526,0.941347497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0347354,91.99059225,0.0347354,88.00940775,0,0,0,0,0,4,20,0% +4/3/2018 5:00,117.7132815,303.3275234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054484335,5.294063996,-1.136933998,1.136933998,0.724580854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256165845,104.8426779,0.256165845,75.15732207,0,0.854813948,0,0,0,4,21,0% +4/3/2018 6:00,126.7368265,317.4283336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211974906,5.540169561,-0.514269001,0.514269001,0.618098868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45686096,117.1847358,0.45686096,62.81526424,0,0.940557512,0,0,0,4,22,0% +4/3/2018 7:00,133.3386693,334.9751637,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3271988,5.84641952,-0.09282007,0.09282007,0.546026856,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623132049,128.5452158,0.623132049,51.45478421,0,0.969760186,0,0,0,4,23,0% +4/4/2018 8:00,136.3471537,355.6622865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379706758,6.207477925,0.25756106,-0.25756106,0.486108154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743637975,138.0422443,0.743637975,41.95775565,0,0.982762982,0,0,0,4,0,0% +4/4/2018 9:00,135.0134397,17.0080956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356429058,0.296847268,0.601645541,-0.601645541,0.427266243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810157817,144.1113535,0.810157817,35.88864653,0,0.98828363,0,0,0,4,1,0% +4/4/2018 10:00,129.6890473,35.94076305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26350088,0.627284651,0.998271902,-0.998271902,0.35943914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818150885,144.9001163,0.818150885,35.09988371,0,0.988886578,0,0,0,4,2,0% +4/4/2018 11:00,121.4833391,51.32216584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284254,0.895740773,1.546918499,-1.546918499,0.265615046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767065974,140.091142,0.767065974,39.90885797,0,0.984816559,0,0,0,4,3,0% +4/4/2018 12:00,111.4744049,63.72553366,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945595397,1.11222038,2.526750317,-2.526750317,0.098053937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660378851,131.3287725,0.660378851,48.6712275,0,0.974285885,0,0,0,4,4,0% +4/4/2018 13:00,100.4141085,74.17060443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752556808,1.294521255,5.426617032,-5.426617032,0,#DIV/0!,0,0,0.284616928,1,0.182232476,0,0.941249657,0.98001162,0.724496596,1,0,0,0.042904972,0.312029739,0.885543979,0.610040575,0.961238037,0.922476074,0,0,0,0,0,0,-0.505355357,120.3549446,0.505355357,59.64505543,0,0.951059721,0,0,0,4,5,0% +4/4/2018 14:00,88.44954255,83.58123916,2.198414126,16.23402859,1.75916539,1.722692637,0,1.722692637,1.706120063,0.016572574,5.568450768,4.982374483,0.586076284,0.053045327,0.533030957,1.543735739,1.458767816,-35.91203145,35.91203145,0,0.800197456,0.013261332,0.426530016,1,0.823678956,0,0.027838627,0.961238037,1,0.648585162,0.924088566,1.6399875,0.036981198,0.115824807,0.225863825,0.724496596,0.448993192,0.974103609,0.935341646,0.00960779,0.412569287,1.64959529,0.449550485,0,0.878497472,-0.306909308,107.8730694,0.306909308,72.1269306,0,0.887085423,1.64959529,1.228852787,2.453854861,4,6,49% +4/4/2018 15:00,76.88343849,92.75979709,158.9667228,491.4764382,47.43458449,47.20261506,0,47.20261506,46.00425675,1.198358304,86.12978637,46.15613624,39.97365014,1.430327737,38.5433224,1.341869142,1.618963873,-3.957456142,3.957456142,0.793081452,0.298393171,1.024386079,32.94777759,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22104145,1.036267577,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.742164227,31.67065705,44.96320567,32.70692463,0,46.15613624,-0.093913223,95.38877241,0.093913223,84.61122759,0,0.517593609,44.96320567,56.59704577,82.00484019,4,7,82% +4/4/2018 16:00,65.17763956,102.5266682,372.8560319,715.6304489,72.42984465,168.0630607,95.00649688,73.05656386,70.2458176,2.810746263,92.58728876,0,92.58728876,2.184027054,90.40326171,1.137564409,1.789427931,-1.822856247,1.822856247,0.841880467,0.194256867,2.452646711,78.88554915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.5229518,1.582320166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776934193,75.8277904,69.299886,77.41011057,95.00649688,0,0.132759159,82.37093717,-0.132759159,97.62906283,0.673378152,0,133.2751853,77.41011057,183.9385544,4,8,38% +4/4/2018 17:00,53.93410461,113.9327491,567.5358432,814.7769278,87.86419403,378.0147206,288.5216313,89.49308931,85.2147644,4.278324914,140.2550655,0,140.2550655,2.649429634,137.6056359,0.941327705,1.988501598,-0.988814349,0.988814349,0.699250902,0.154816995,3.19082595,102.6279309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.91167284,1.919502751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311742538,98.64987085,84.22341538,100.5693736,288.5216313,0,0.354111195,69.26101861,-0.354111195,110.7389814,0.908801414,0,346.4322818,100.5693736,412.2529255,4,9,19% +4/4/2018 18:00,43.78965155,128.5350925,722.7054147,864.9857787,98.28495913,580.6701121,479.9007484,100.7693637,95.32130498,5.448058688,178.1919491,0,178.1919491,2.963654151,175.228295,0.764273598,2.243360569,-0.500376276,0.500376276,0.615723072,0.13599588,3.639211412,117.0495487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.62646406,2.147157343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.636596279,112.5124784,94.26306034,114.6596358,479.9007484,0,0.554807675,56.30253109,-0.554807675,123.6974689,0.95987868,0,554.9095573,114.6596358,629.9519957,4,10,14% +4/4/2018 19:00,35.88599265,148.4299472,826.0295595,890.3155613,104.7092738,749.7985027,642.0196401,107.7788626,101.5519029,6.226959736,203.4378011,0,203.4378011,3.157370941,200.2804301,0.626328727,2.590591288,-0.145110779,0.145110779,0.554969094,0.126762139,3.807052117,122.4478827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.61555174,2.287504499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758196299,117.7015624,100.373748,119.9890669,642.0196401,0,0.721114701,43.85341091,-0.721114701,136.1465891,0.980662903,0,729.9785921,119.9890669,808.5090366,4,11,11% +4/4/2018 20:00,32.0499351,174.4251649,869.8683054,899.6402827,107.3458574,867.8789063,757.2124879,110.6664184,104.1089837,6.55743472,214.1465153,0,214.1465153,3.236873663,210.9096416,0.559376893,3.044293426,0.155966551,-0.155966551,0.503481839,0.123404723,3.703340929,119.1121744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0735151,2.34510395,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683057897,114.4951527,102.756573,116.8402567,757.2124879,0,0.841683618,32.68166513,-0.841683618,147.3183349,0.990595256,0,852.8476712,116.8402567,929.3172823,4,12,9% +4/4/2018 21:00,33.74215952,201.9117138,851.0623126,895.7317111,106.2205226,923.0256639,813.5924148,109.4332491,103.0175819,6.415667202,209.5528516,0,209.5528516,3.202940667,206.3499109,0.58891178,3.524024204,0.446200908,-0.446200908,0.45384884,0.124809337,3.34906556,107.7174607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02441817,2.32051961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.426386597,103.5421205,101.4508048,105.8626401,813.5924148,0,0.90829922,24.72863559,-0.90829922,155.2713644,0.994952061,0,910.9362547,105.8626401,980.2212354,4,13,8% +4/4/2018 22:00,40.2550885,224.3819678,770.9870278,877.4652689,101.3273976,908.2234532,804.1394246,104.0840286,98.2720027,5.812025882,189.990126,0,189.990126,3.055394896,186.9347311,0.702583835,3.91620412,0.763479912,-0.763479912,0.399590935,0.131425554,2.781054555,89.44827431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46278696,2.213623201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014864558,85.9810836,96.47765151,88.1947068,804.1394246,0,0.916434477,23.58972983,-0.916434477,156.4102702,0.995440726,0,896.9507839,88.1947068,954.6724556,4,14,6% +4/4/2018 23:00,49.67180249,240.8551531,635.5201856,838.9668796,92.57015108,820.7467974,726.1771583,94.56963908,89.77881948,4.790819604,156.8805584,0,156.8805584,2.791331603,154.0892268,0.866936499,4.203715442,1.163011274,-1.163011274,0.331267048,0.145660442,2.053704525,66.05419707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.29881618,2.022310244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487901937,63.49380672,87.78671812,65.51611696,726.1771583,0,0.865561175,30.05315397,-0.865561175,149.946846,0.992234008,0,808.3243904,65.51611696,851.2033786,4,15,5% +4/4/2018 0:00,60.56204783,253.3285762,455.0462035,764.3172262,79.39901553,660.7045892,580.2694164,80.43517276,77.00484226,3.430330494,112.7253936,0,112.7253936,2.39417327,110.3312204,1.057007136,4.421417743,1.768979318,-1.768979318,0.22764041,0.174485613,1.24317251,39.9847013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01998341,1.734570384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900674252,38.43481578,74.92065766,40.16938617,580.2694164,0,0.75919971,40.60630321,-0.75919971,139.3936968,0.984141176,0,645.9876836,40.16938617,672.2777435,4,16,4% +4/4/2018 1:00,72.12796808,263.6183542,245.6656217,607.0720106,59.360033,426.547792,367.1257518,59.42204021,57.57010899,1.851931226,61.35439821,0,61.35439821,1.78992401,59.5644742,1.258870526,4.60100825,3.014045334,-3.014045334,0.014721581,0.241629385,0.46815673,15.05752973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.33857855,1.296793852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339177958,14.47387032,55.6777565,15.77066417,367.1257518,0,0.604748276,52.78926982,-0.604748276,127.2107302,0.967320971,0,410.8061953,15.77066417,421.1277796,4,17,3% +4/4/2018 2:00,83.85892492,272.9450402,44.30332515,213.8708341,21.42409056,109.5855488,88.47349644,21.11205236,20.77807518,0.333977179,11.38786948,0,11.38786948,0.646015377,10.74185411,1.463614347,4.763789628,8.558809824,-8.558809824,0,0.483577485,0.161503844,5.194518795,0.482800262,1,0.116311322,0,0.949370112,0.988132075,0.724496596,1,20.14263571,0.468035941,0.067196434,0.312029739,0.827181061,0.551677657,0.961238037,0.922476074,0.110580192,4.993169049,20.2532159,5.46120499,45.75846918,0,0.41367724,65.5639564,-0.41367724,114.4360436,0.929132824,0,62.76891157,5.46120499,66.34316101,4,18,6% +4/4/2018 3:00,95.71997174,282.1922984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670628667,4.925184731,-8.448679911,8.448679911,0.025036953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.19434249,78.79368375,-0.19434249,101.2063163,0.792722243,0,0,0,0,4,19,0% +4/4/2018 4:00,107.0196991,292.1481128,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867846113,5.098946473,-2.422072672,2.422072672,0.944352511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032576093,91.86680294,0.032576093,88.13319706,0,0,0,0,0,4,20,0% +4/4/2018 5:00,117.4757783,303.6727408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050339122,5.300089175,-1.139158709,1.139158709,0.724961302,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.253791182,104.7019688,0.253791182,75.29803117,0,0.852987639,0,0,0,4,21,0% +4/4/2018 6:00,126.4540602,317.757862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207039704,5.545920916,-0.512401323,0.512401323,0.617779477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.4542141,117.0143795,0.4542141,62.98562053,0,0.939919754,0,0,0,4,22,0% +4/4/2018 7:00,133.0042103,335.2425575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321361388,5.851086421,-0.088926647,0.088926647,0.545361042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620174913,128.3289086,0.620174913,51.67109136,0,0.969377584,0,0,0,4,23,0% +4/5/2018 8:00,135.9717516,355.79854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373154755,6.209855997,0.26317383,-0.26317383,0.485148314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740353869,137.7615685,0.740353869,42.23843146,0,0.982464728,0,0,0,4,0,0% +4/5/2018 9:00,134.6268603,16.98242644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349681974,0.296399256,0.609456984,-0.609456984,0.425930407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806552593,143.7604651,0.806552593,36.23953494,0,0.988007762,0,0,0,4,1,0% +4/5/2018 10:00,129.3190252,35.79412617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257042776,0.624725355,1.009740336,-1.009740336,0.357477922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814252543,144.513522,0.814252543,35.48647801,0,0.98859399,0,0,0,4,2,0% +4/5/2018 11:00,121.1402513,51.1129451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114296241,0.892089182,1.56597651,-1.56597651,0.262355934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762922749,139.722543,0.762922749,40.27745705,0,0.984462565,0,0,0,4,3,0% +4/5/2018 12:00,111.1561021,63.48965644,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940039966,1.108103546,2.567360931,-2.567360931,0.091109113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656055898,130.9997623,0.656055898,49.00023773,0,0.973786982,0,0,0,4,4,0% +4/5/2018 13:00,100.1138073,73.92299149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747315563,1.290199594,5.593006888,-5.593006888,0,#DIV/0!,0,0,0.29888858,1,0.176925221,0,0.941939659,0.980701622,0.724496596,1,0,0,0.044788982,0.312029739,0.880850122,0.605346718,0.961238037,0.922476074,0,0,0,0,0,0,-0.500930276,120.0615657,0.500930276,59.93843433,0,0.95018571,0,0,0,4,5,0% +4/5/2018 14:00,88.1838356,83.32563987,3.140286268,22.20453631,2.436563659,2.386765079,0,2.386765079,2.363092275,0.023672804,7.559800737,6.72493059,0.834870147,0.073471384,0.761398763,1.539098278,1.454306767,-30.68800596,30.68800596,0,0.77590495,0.018367846,0.590773069,1,0.790712306,0,0.032574494,0.961238037,1,0.636276428,0.911779832,2.271494179,0.050984431,0.115824807,0.211920814,0.724496596,0.448993192,0.976036918,0.937274955,0.013307442,0.571823737,2.284801621,0.622808168,0,1.407445219,-0.302862915,107.6296378,0.302862915,72.37036216,0,0.884908807,2.284801621,1.868268837,3.507546209,4,6,54% +4/5/2018 15:00,76.59663548,92.49525835,164.0713118,499.5064219,48.28321241,48.06413426,0,48.06413426,46.82729541,1.236838852,85.97457287,44.73766678,41.23690609,1.455917,39.78098909,1.336863485,1.614346801,-3.877163352,3.877163352,0.806812328,0.29428187,1.068213137,34.35740645,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.01217751,1.05480691,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.773916782,33.02564593,45.78609429,34.08045284,0,44.73766678,-0.089563747,95.13851028,0.089563747,84.86148972,0,0.491738408,45.78609429,56.07968187,82.48912448,4,7,80% +4/5/2018 16:00,64.88271437,102.2518209,378.1250614,718.9333799,72.95753639,172.0838869,98.47582294,73.60806392,70.75759748,2.850466433,93.88073781,0,93.88073781,2.199938907,91.68079891,1.132416993,1.784630941,-1.803982385,1.803982385,0.838652847,0.192945519,2.479290258,79.74249721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0148941,1.593848249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796237352,76.65152147,69.81113145,78.24536972,98.47582294,0,0.136974893,82.12716606,-0.136974893,97.87283394,0.6849696,0,137.2640765,78.24536972,188.4741061,4,8,37% +4/5/2018 17:00,53.62136533,113.651939,572.5884299,816.5347516,88.28639614,382.3495067,292.4088577,89.940649,85.62423556,4.316413447,141.4928546,0,141.4928546,2.662160586,138.830694,0.935869374,1.983600537,-0.982161057,0.982161057,0.698113122,0.154188229,3.214262705,103.3817376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.30527209,1.928726282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.328722388,99.37445846,84.63399448,101.3031847,292.4088577,0,0.358109507,69.01586029,-0.358109507,110.9841397,0.910377904,0,350.8365574,101.3031847,417.1374658,4,9,19% +4/5/2018 18:00,43.44805975,128.2740643,727.4482511,866.1079918,98.65550693,584.9120632,483.7475716,101.1644916,95.68067939,5.483812192,179.3530781,0,179.3530781,2.974827534,176.3782506,0.758311696,2.238804767,-0.498114189,0.498114189,0.615336233,0.135618591,3.660465427,117.7331509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.97190842,2.155252422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651994741,113.1695828,94.62390316,115.3248353,483.7475716,0,0.558530317,56.04577978,-0.558530317,123.9542202,0.960479345,0,559.2534537,115.3248353,634.7312519,4,10,13% +4/5/2018 19:00,35.51126431,148.2705615,830.436364,891.1401456,105.0470941,753.7921293,645.6524126,108.1397167,101.8795366,6.260180089,204.5164684,0,204.5164684,3.167557469,201.3489109,0.619788484,2.587809482,-0.145065937,0.145065937,0.554961426,0.12649626,3.826579784,123.0759596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.93048576,2.294884603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.772344027,118.3052938,100.7028298,120.6001784,645.6524126,0,0.724523989,43.57073632,-0.724523989,136.4292637,0.980989172,0,734.0808558,120.6001784,813.0112605,4,11,11% +4/5/2018 20:00,31.6662293,174.5053329,873.9483167,900.3281007,107.6604516,871.5668865,760.5646032,111.0022833,104.4140918,6.588191569,215.1452475,0,215.1452475,3.24635984,211.8988876,0.552679963,3.045692621,0.154489628,-0.154489628,0.503734407,0.123188579,3.721462948,119.6950408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3667966,2.351976653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696187237,115.0554261,103.0629838,117.4074027,760.5646032,0,0.844763817,32.35336032,-0.844763817,147.6466397,0.990811859,0,856.6394121,117.4074027,933.4802091,4,12,9% +4/5/2018 21:00,33.4015358,202.2399225,854.8511425,896.385249,106.5190597,926.4097061,816.6583601,109.751346,103.307117,6.444229003,210.4804993,0,210.4804993,3.211942662,207.2685566,0.582966775,3.529752527,0.443284224,-0.443284224,0.454347623,0.12460539,3.366071165,108.2644195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30273034,2.327041525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.4387071,104.067878,101.7414374,106.3949195,816.6583601,0,0.911057339,24.34812061,-0.911057339,155.6518794,0.995118712,0,914.4134531,106.3949195,984.0468,4,13,8% +4/5/2018 22:00,39.98019157,224.8022335,774.5405191,878.1835996,101.6177375,911.3550095,806.9626081,104.3924014,98.55358782,5.8388136,190.8604659,0,190.8604659,3.064149716,187.7963162,0.697785978,3.92353914,0.758721046,-0.758721046,0.400404749,0.131197445,2.797201099,89.96760267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.73345728,2.219966039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.026562674,86.48028177,96.76001996,88.70024781,806.9626081,0,0.918899657,23.23425432,-0.918899657,156.7657457,0.995587095,0,900.1615784,88.70024781,958.2141166,4,14,6% +4/5/2018 23:00,49.44895245,241.2689173,638.9066267,839.9037802,92.86395279,823.7339515,728.8538415,94.88011001,90.06376198,4.816348028,157.7104995,0,157.7104995,2.800190808,154.9103087,0.863047032,4.21093699,1.155195706,-1.155195706,0.332603589,0.145348239,2.069143964,66.55078253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.57271376,2.028728708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499087759,63.97114355,88.07180152,65.99987226,728.8538415,0,0.867782547,29.79802924,-0.867782547,150.2019708,0.992381879,0,811.3731461,65.99987226,854.5687425,4,15,5% +4/5/2018 0:00,60.37094652,253.7136015,458.3306667,765.8247815,79.72013919,663.7498285,582.9784554,80.77137303,77.31628286,3.455090165,113.5314328,0,113.5314328,2.403856333,111.1275765,1.053671789,4.428137704,1.754549993,-1.754549993,0.23010797,0.173935861,1.257721241,40.4526385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31935195,1.74158573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911214758,38.88461482,75.23056671,40.62620055,582.9784554,0,0.76124261,40.42613357,-0.76124261,139.5738664,0.984317917,0,649.0667058,40.62620055,675.6557416,4,16,4% +4/5/2018 1:00,71.95222499,263.9789987,248.8481821,610.2649072,59.78206769,430.0954587,370.2401182,59.85534049,57.97941778,1.87592271,62.13877272,0,62.13877272,1.802649913,60.33612281,1.25580323,4.607302683,2.978084192,-2.978084192,0.020871298,0.240235099,0.48040951,15.45162124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.73202172,1.306013726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.348055055,14.85268606,56.08007678,16.15869979,370.2401182,0,0.606687545,52.64962566,-0.606687545,127.3503743,0.967585254,0,414.3189555,16.15869979,424.8945014,4,17,3% +4/5/2018 2:00,83.68782406,273.2910807,46.64666119,222.1237701,22.22514432,114.2120904,92.30547396,21.90661645,21.55497422,0.351642236,11.98019316,0,11.98019316,0.670170103,11.31002306,1.460628074,4.769829174,8.303562219,-8.303562219,0,0.476457345,0.167542526,5.388743555,0.470854418,1,0.119853038,0,0.948958969,0.987720933,0.724496596,1,20.89689419,0.485535959,0.065838965,0.312029739,0.830318878,0.554815474,0.961238037,0.922476074,0.114689137,5.179865276,21.01158333,5.665401234,48.84303373,0,0.41555874,65.4454921,-0.41555874,114.5545079,0.929680066,0,66.41997817,5.665401234,70.12786997,4,18,6% +4/5/2018 3:00,95.53622734,282.5329741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667421722,4.931130644,-8.698092739,8.698092739,0,#DIV/0!,0,0,1,0.01731023,0,0.11446518,0.961238037,1,0.451606075,0.72710948,0,0,0.115824807,0.002984488,0.724496596,0.448993192,0.999735799,0.960973836,0,0,0,0,0,0,0.196349065,78.676457,-0.196349065,101.323543,0.795351474,0,0,0,0,4,19,0% +4/5/2018 4:00,106.8150928,292.4896631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864275059,5.104907649,-2.440060859,2.440060859,0.947428672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.030416084,91.74298207,0.030416084,88.25701793,0,0,0,0,0,4,20,0% +4/5/2018 5:00,117.2381141,304.0144257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0461911,5.306052702,-1.141441711,1.141441711,0.725351718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251407258,104.5608021,0.251407258,75.43919788,0,0.851119505,0,0,0,4,21,0% +4/5/2018 6:00,126.1713629,318.0828978,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202105704,5.551593862,-0.51053677,0.51053677,0.617460619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451551218,116.8432521,0.451551218,63.15674786,0,0.93927059,0,0,0,4,22,0% +4/5/2018 7:00,132.6704573,335.5050963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3155363,5.855668588,-0.085017127,0.085017127,0.544692475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617197257,128.1117509,0.617197257,51.88824907,0,0.968988622,0,0,0,4,23,0% +4/6/2018 8:00,135.5978606,355.9314977,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366629126,6.212176546,0.268818473,-0.268818473,0.484183023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737047323,137.4804965,0.737047323,42.51950349,0,0.982161751,0,0,0,4,0,0% +4/6/2018 9:00,134.2421733,16.9563939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34296792,0.295944903,0.617324971,-0.617324971,0.424584902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802925718,143.4104031,0.802925718,36.58959686,0,0.987727739,0,0,0,4,1,0% +4/6/2018 10:00,128.9507899,35.64900153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.250615856,0.622192452,1.021318945,-1.021318945,0.355497864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810335997,144.1287722,0.810335997,35.87122778,0,0.9882972,0,0,0,4,2,0% +4/6/2018 11:00,120.7987732,50.90562259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108336324,0.888470722,1.585297582,-1.585297582,0.259051836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758767185,139.3556359,0.758767185,40.64436411,0,0.984103634,0,0,0,4,3,0% +4/6/2018 12:00,110.8393682,63.2554053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.934511915,1.104015092,2.608898981,-2.608898981,0.084005688,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651728489,130.6720497,0.651728489,49.32795033,0,0.973280935,0,0,0,4,4,0% +4/6/2018 13:00,99.81517012,73.67657268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742103362,1.285898775,5.768361274,-5.768361274,0,#DIV/0!,0,0,0.313325556,1,0.171653434,0,0.942618833,0.981380796,0.724496596,1,0,0,0.04667209,0.312029739,0.876186567,0.600683163,0.961238037,0.922476074,0,0,0,0,0,0,-0.496510099,119.7693774,0.496510099,60.23062262,0,0.949297114,0,0,0,4,5,0% +4/6/2018 14:00,87.91713276,83.07077117,4.29078647,29.27708465,3.2267142,3.161762622,0,3.161762622,3.129416861,0.032345761,9.885224364,8.747576169,1.137648195,0.097297338,1.040350857,1.534443436,1.449858469,-26.78362836,26.78362836,0,0.752009969,0.024324335,0.782354215,1,0.756716089,0,0.037318907,0.961238037,1,0.624122678,0.899626082,3.00811452,0.067246883,0.115824807,0.19816252,0.724496596,0.448993192,0.977903025,0.939141062,0.017622898,0.757688827,3.025737418,0.824935709,0,2.12814454,-0.298785766,107.384688,0.298785766,72.61531198,0,0.882656018,3.025737418,2.703355294,4.795029391,4,6,58% +4/6/2018 15:00,76.31186264,92.23092628,169.1538361,507.280391,49.11253158,48.90676061,0,48.90676061,47.63160755,1.275153067,85.73411253,43.23988254,42.49422999,1.480924033,41.01330595,1.331893261,1.609733336,-3.800656234,3.800656234,0.819895815,0.290342405,1.112172818,35.77130089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.78531293,1.072924421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.80576542,34.38473504,46.59107835,35.45765946,0,43.23988254,-0.085238624,94.88974682,0.085238624,85.11025318,0,0,46.59107835,35.45765946,69.79740731,4,7,50% +4/6/2018 16:00,64.59013131,101.9764929,383.3427538,722.1446528,73.4771859,176.0862054,101.9348281,74.15137724,71.26157764,2.889799603,95.16149711,0,95.16149711,2.215608257,92.94588886,1.127310456,1.77982556,-1.785649034,1.785649034,0.835517659,0.191674905,2.505585707,80.58824924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.499339,1.60520064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815288315,77.46449049,70.31462731,79.06969113,101.9348281,0,0.141155692,81.88527333,-0.141155692,98.11472667,0.695781199,0,141.2389642,79.06969113,192.9884957,4,8,37% +4/6/2018 17:00,53.31118576,113.369649,577.5800907,818.2471831,88.70308674,386.640468,296.2580639,90.38240409,86.0283614,4.354042695,142.7157053,0,142.7157053,2.674725345,140.04098,0.93045572,1.978673646,-0.975660329,0.975660329,0.697001432,0.15357712,3.237383482,104.1253812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.69373322,1.937829407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345473312,100.089277,85.03920654,102.0271064,296.2580639,0,0.362064264,68.77297624,-0.362064264,111.2270238,0.911902969,0,355.1978144,102.0271064,421.9725151,4,9,19% +4/6/2018 18:00,43.10904377,128.0102527,732.1255853,867.2014576,99.02133059,589.0975465,487.5430024,101.554544,96.03547212,5.519071913,180.4981829,0,180.4981829,2.985858467,177.5123244,0.752394751,2.234200386,-0.49590453,0.49590453,0.614958359,0.135251837,3.681419367,118.4071016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.31294869,2.163244295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6671758,113.8174099,94.98012449,115.9806542,487.5430024,0,0.562202702,55.79173346,-0.562202702,124.2082665,0.961064106,0,563.5402042,115.9806542,639.4472228,4,10,13% +4/6/2018 19:00,35.13875753,148.1079969,834.7765541,891.9432188,105.3805592,757.7222476,649.2264029,108.4958448,102.2029465,6.292898276,205.5788529,0,205.5788529,3.177612671,202.4012403,0.613287014,2.584972194,-0.145035088,0.145035088,0.55495615,0.126238044,3.845826847,123.6950113,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.24135964,2.302169563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786288459,118.9003499,101.0276481,121.2025194,649.2264029,0,0.727878624,43.2911548,-0.727878624,136.7088452,0.981307229,0,738.1182102,121.2025194,817.4428351,4,11,11% +4/6/2018 20:00,31.28441301,174.5856573,877.9637217,900.9976955,107.9709733,875.1883541,763.8546427,111.3337114,104.7152501,6.618461387,216.1281922,0,216.1281922,3.255723215,212.872469,0.546016012,3.047094546,0.153019462,-0.153019462,0.50398582,0.122978855,3.739331912,120.2697682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6562814,2.358760386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.709133241,115.6078758,103.3654146,117.9666362,763.8546427,0,0.847787565,32.02815796,-0.847787565,147.971842,0.991022961,0,860.3629047,117.9666362,937.5697088,4,12,9% +4/6/2018 21:00,33.0631851,202.5714056,858.5802289,897.0216336,106.8138138,929.7277369,819.6624132,110.0653236,103.5929832,6.472340431,211.3935474,0,211.3935474,3.220830587,208.1727168,0.577061441,3.535537998,0.440391209,-0.440391209,0.454842357,0.124407493,3.382859683,108.8043959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.57751582,2.333480796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.450870324,104.5869239,102.0283861,106.9204047,819.6624132,0,0.913759917,23.96977187,-0.913759917,156.0302281,0.995281032,0,917.8228383,106.9204047,987.8001048,4,13,8% +4/6/2018 22:00,39.70774687,225.2244902,778.0416223,878.8839753,101.9045952,914.4240985,809.7270963,104.6970021,98.83179571,5.865206395,191.7179987,0,191.7179987,3.072799535,188.6451992,0.693030921,3.93090891,0.754007564,-0.754007564,0.401210802,0.130975763,2.813173954,90.48134458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00088129,2.226232803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038134953,86.97411004,97.03901624,89.20034284,809.7270963,0,0.921312846,22.88122806,-0.921312846,157.1187719,0.995729618,0,903.3082686,89.20034284,961.688109,4,14,6% +4/6/2018 23:00,49.22817455,241.6828638,642.2500808,840.819251,93.15451419,826.6644429,731.4773286,95.18711428,90.34556189,4.841552397,158.5299201,0,158.5299201,2.808952306,155.7209678,0.859193731,4.218161719,1.147466852,-1.147466852,0.333925301,0.14504399,2.084459857,67.04339428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.84359055,2.035076384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51018407,64.4446607,88.35377462,66.47973708,731.4773286,0,0.869957875,29.54625536,-0.869957875,150.4537446,0.992525953,0,814.3640071,66.47973708,857.8736654,4,15,5% +4/6/2018 0:00,60.18135751,254.0977811,461.5832575,767.3011204,80.03795519,666.7447158,585.6405907,81.1041251,77.62451553,3.479609569,114.3296445,0,114.3296445,2.413439658,111.9162048,1.050362837,4.434842902,1.740321344,-1.740321344,0.232541212,0.17339874,1.272206494,40.91853404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.61563692,1.748528816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921709274,39.33245133,75.5373462,41.08098015,585.6405907,0,0.763247407,40.24867539,-0.763247407,139.7513246,0.984490442,0,652.0949104,41.08098015,678.9815903,4,16,4% +4/6/2018 1:00,71.77745432,264.3382364,252.012959,613.3941581,60.19926627,433.5943829,373.3105665,60.28381641,58.38403628,1.899780136,62.9186896,0,62.9186896,1.81522999,61.10345961,1.252752907,4.613572564,2.94287274,-2.94287274,0.026892811,0.238873693,0.492693767,15.84672516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.12095641,1.315127948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356954957,15.23247499,56.47791137,16.54760294,373.3105665,0,0.608598177,52.51178907,-0.608598177,127.4882109,0.967843987,0,417.7842983,16.54760294,428.6143735,4,17,3% +4/6/2018 2:00,83.51711431,273.6353092,49.02004021,230.2922993,23.01855937,118.8234984,96.12949972,22.69399864,22.32446488,0.369533769,12.57957078,0,12.57957078,0.694094494,11.88547628,1.457648627,4.775837095,8.06205516,-8.06205516,0,0.469574469,0.173523624,5.581116219,0.459032224,1,0.123407536,0,0.948543443,0.987305406,0.724496596,1,21.64384587,0.502869098,0.064482965,0.312029739,0.833467948,0.557964544,0.961238037,0.922476074,0.118764684,5.364781198,21.76261055,5.867650296,52.00296168,0,0.417423857,65.32794871,-0.417423857,114.6720513,0.930217675,0,70.13668467,5.867650296,73.97694443,4,18,5% +4/6/2018 3:00,95.35265615,282.8714068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6642178,4.937037408,-8.964170354,8.964170354,0,#DIV/0!,0,0,1,0.059369851,0,0.111095893,0.961238037,1,0.458145287,0.733648691,0,0,0.115824807,0.0104438,0.724496596,0.448993192,0.999066045,0.960304082,0,0,0,0,0,0,0.198347124,78.55968003,-0.198347124,101.44032,0.797916688,0,0,0,0,4,19,0% +4/6/2018 4:00,106.610421,292.8283892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860702864,5.110819535,-2.45848498,2.45848498,0.950579382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028255019,91.61910881,0.028255019,88.38089119,0,0,0,0,0,4,20,0% +4/6/2018 5:00,117.0003317,304.3524739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042041014,5.311952757,-1.14378759,1.14378759,0.725752887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249013997,104.4191733,0.249013997,75.58082674,0,0.849208074,0,0,0,4,21,0% +4/6/2018 6:00,125.8888024,318.4033616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197174093,5.55718701,-0.508678032,0.508678032,0.617142756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448872579,116.6713728,0.448872579,63.32862723,0,0.938609814,0,0,0,4,22,0% +4/6/2018 7:00,132.3374987,335.7627396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309725077,5.860165312,-0.081093795,0.081093795,0.544021545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614199732,127.8937944,0.614199732,52.10620561,0,0.968593257,0,0,0,4,23,0% +4/7/2018 8:00,135.2255789,356.0611222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360131585,6.21443892,0.274492695,-0.274492695,0.483212674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73371939,137.1991167,0.73371939,42.80088332,0,0.981854057,0,0,0,4,0,0% +4/7/2018 9:00,133.8594889,16.92991829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336288816,0.295482816,0.625246984,-0.625246984,0.423230158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799278635,143.0612722,0.799278635,36.93872784,0,0.987443592,0,0,0,4,1,0% +4/7/2018 10:00,128.5844668,35.50530368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244222313,0.619684451,1.033004975,-1.033004975,0.353499435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80640304,143.7459728,0.80640304,36.2540272,0,0.987996266,0,0,0,4,2,0% +4/7/2018 11:00,120.4590385,50.70014351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102406835,0.884884436,1.604880023,-1.604880023,0.255703042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754601367,138.9905503,0.754601367,41.00944968,0,0.98373985,0,0,0,4,3,0% +4/7/2018 12:00,110.5243369,63.02275656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929013583,1.099954606,2.651380755,-2.651380755,0.076740877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647398917,130.3457772,0.647398917,49.65422276,0,0.972767866,0,0,0,4,4,0% +4/7/2018 13:00,99.51832813,73.43134586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736922492,1.281618759,5.953351679,-5.953351679,0,#DIV/0!,0,0,0.327925105,1,0.166419052,0,0.94328704,0.982049003,0.724496596,1,0,0,0.048553561,0.312029739,0.871555096,0.596051692,0.961238037,0.922476074,0,0,0,0,0,0,-0.492097229,119.4785198,0.492097229,60.52148022,0,0.948394063,0,0,0,4,5,0% +4/7/2018 14:00,87.64994819,82.81664473,5.652689605,37.39405252,4.119359862,4.037758326,0,4.037758326,3.995145964,0.042612362,12.51429447,11.01952053,1.494773938,0.124213899,1.370560039,1.529780185,1.445423126,-23.75986746,23.75986746,0,0.728743333,0.031053475,0.998786491,1,0.721706632,0,0.042062952,0.961238037,1,0.612147473,0.887650878,3.840286263,0.0855608,0.115824807,0.184615112,0.724496596,0.448993192,0.979699814,0.940937851,0.022498137,0.967736833,3.8627844,1.053297632,0,3.066659485,-0.294686448,107.1387364,0.294686448,72.8612636,0,0.880328133,3.8627844,3.75296425,6.319024442,4,6,64% +4/7/2018 15:00,76.02924997,91.96682063,174.2104308,514.8047025,49.92292295,49.73083444,0,49.73083444,48.41756263,1.313271815,85.41310266,41.66840644,43.74469622,1.505360323,42.2393359,1.32696074,1.605123823,-3.727706826,3.727706826,0.832370899,0.286566784,1.15621479,37.18784212,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.54080285,1.09062843,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.83767368,35.74636835,47.37847653,36.83699678,0,41.66840644,-0.080940221,94.64261171,0.080940221,85.35738829,0,0,47.37847653,36.83699678,71.48755418,4,7,51% +4/7/2018 16:00,64.30001806,101.7007051,388.5067575,725.2659639,73.98878948,180.0672186,105.3807361,74.68648253,71.75775449,2.928728044,96.42899632,0,96.42899632,2.231034992,94.19796133,1.122247024,1.775012155,-1.767842895,1.767842895,0.83247263,0.190444022,2.531525793,81.42257156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97628305,1.616377257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.834081819,78.26647284,70.81036487,79.8828501,105.3807361,0,0.145299437,81.64538071,-0.145299437,98.35461929,0.705883043,0,145.1968396,79.8828501,197.4785673,4,8,36% +4/7/2018 17:00,53.00369728,113.0858865,582.5089801,819.9147732,89.11420776,390.8854695,300.0671852,90.81828435,86.4270856,4.391198745,143.9231684,0,143.9231684,2.68712216,141.2360463,0.925089033,1.973721057,-0.969311526,0.969311526,0.695915723,0.152983406,3.260182149,104.8586647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0770021,1.946810858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361990869,100.794137,85.43899296,102.7409479,300.0671852,0,0.365973629,68.53248621,-0.365973629,111.4675138,0.913378134,0,359.5137987,102.7409479,426.7556943,4,9,19% +4/7/2018 18:00,42.77273934,127.7436149,736.7360157,868.2664525,99.38237661,593.2248813,491.2854227,101.9394586,96.38563127,5.553827285,181.626922,0,181.626922,2.996745337,178.6301766,0.746525132,2.229546679,-0.493748261,0.493748261,0.614589615,0.134895505,3.702068767,119.0712573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.64953498,2.171131795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682136219,114.4558216,95.3316712,116.6269534,491.2854227,0,0.565823338,55.54051506,-0.565823338,124.4594849,0.961633196,0,567.7680424,116.6269534,644.0980509,4,10,13% +4/7/2018 19:00,34.7685999,147.9421169,839.0491578,892.7249871,105.7096322,761.5876314,652.7404277,108.8472037,102.5220968,6.325106968,206.6247179,0,206.6247179,3.187535438,203.4371825,0.606826544,2.582077042,-0.145019393,0.145019393,0.554953466,0.125987412,3.864790436,124.3049456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.54813902,2.309358574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.800027515,119.4866418,101.3481665,121.7960004,652.7404277,0,0.731177504,43.01480061,-0.731177504,136.9851994,0.981617152,0,742.0893662,121.7960004,821.8024126,4,11,11% +4/7/2018 20:00,30.90458485,174.6659929,881.9139456,901.6492701,108.2774045,878.7425453,767.0818642,111.6606811,105.0124412,6.648239844,217.0952098,0,217.0952098,3.264963246,213.8302466,0.53938676,3.048496667,0.151554892,-0.151554892,0.504236277,0.122775476,3.75694629,120.8363071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9419529,2.365454758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721894798,116.1524546,103.6638477,118.5179094,767.0818642,0,0.850754156,31.70620943,-0.850754156,148.2937906,0.991228615,0,864.0173416,118.5179094,941.5849429,4,12,9% +4/7/2018 21:00,32.7271776,202.9060262,862.2493383,897.6411006,107.1047854,932.9794377,822.6042571,110.3751806,103.8751809,6.499999727,212.2919393,0,212.2919393,3.229604453,209.0623348,0.571197004,3.54137823,0.437520654,-0.437520654,0.455333251,0.124215561,3.399430548,109.3373719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.84877498,2.339837433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.46287586,105.0992407,102.3116508,107.4390781,822.6042571,0,0.916406631,23.59371624,-0.916406631,156.4062838,0.995439068,0,921.1640657,107.4390781,991.4807936,4,13,8% +4/7/2018 22:00,39.43778719,225.6485503,781.4903646,879.566703,102.1879878,917.4308019,812.4329546,104.9978474,99.10664289,5.891204471,192.5627315,0,192.5627315,3.081344864,189.4813867,0.688319236,3.938310155,0.749338032,-0.749338032,0.402009339,0.130760394,2.828973079,90.98949875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.26507485,2.232423865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.049581366,87.46256715,97.31465622,89.69499102,812.4329546,0,0.923674068,22.53074247,-0.923674068,157.4692575,0.995868351,0,906.3909234,89.69499102,965.0945011,4,14,6% +4/7/2018 23:00,49.00947264,242.0968134,645.5507349,841.71374,93.44186844,829.5386857,734.0480002,95.49068546,90.62425134,4.866434121,159.3388667,0,159.3388667,2.817617097,156.5212496,0.855376662,4.225386502,1.139822538,-1.139822538,0.335232556,0.144747521,2.099652177,67.53203151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.11147745,2.041353995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.521190855,64.91435739,88.6326683,66.95571139,734.0480002,0,0.872087463,29.2978702,-0.872087463,150.7021298,0.992666301,0,817.2973816,66.95571139,861.1185556,4,15,5% +4/7/2018 0:00,59.99327215,254.4809621,464.8041995,768.7470163,80.35251899,669.6899273,588.2564428,81.43348446,77.92959407,3.50389039,115.1200844,0,115.1200844,2.422924917,112.6971595,1.047080128,4.441530672,1.726288371,-1.726288371,0.234940992,0.172873909,1.286627616,41.38236689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.90889002,1.755400854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.932157328,39.77830511,75.84104734,41.53370597,588.2564428,0,0.765214603,40.07391218,-0.765214603,139.9260878,0.984658853,0,655.0729615,41.53370597,682.2559414,4,16,4% +4/7/2018 1:00,71.6036464,264.6959348,255.1600056,616.461519,60.61174813,437.0454874,376.3379032,60.70758419,58.78408029,1.923503902,63.69416534,0,63.69416534,1.82766784,61.8664975,1.249719386,4.619815579,2.908386229,-2.908386229,0.032790352,0.237544077,0.505006862,16.24275664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.50549394,1.324139128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.365875753,15.6131555,56.87136969,16.93729463,376.3379032,0,0.610480771,52.37572607,-0.610480771,127.6242739,0.968097338,0,421.2030921,16.93729463,432.2882127,4,17,3% +4/7/2018 2:00,83.34680026,273.9776048,51.42155033,238.3710604,23.80400849,123.4164279,99.94256068,23.47386718,23.08622981,0.387637367,13.1855289,0,13.1855289,0.717778684,12.46775022,1.454676086,4.781811281,7.833207146,-7.833207146,0,0.462918919,0.179444671,5.771557453,0.447331714,1,0.126974813,0,0.948123506,0.98688547,0.724496596,1,22.38316209,0.520028213,0.063128428,0.312029739,0.836628227,0.561124823,0.961238037,0.922476074,0.122805873,5.547840555,22.50596797,6.067868768,55.23508368,0,0.419273046,65.21129962,-0.419273046,114.7887004,0.930745971,0,73.91579956,6.067868768,77.88709831,4,18,5% +4/7/2018 3:00,95.16926533,283.2074815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661017027,4.942903019,-9.24866922,9.24866922,0,#DIV/0!,0,0,1,0.100532798,0,0.107705247,0.961238037,1,0.464818291,0.740321695,0,0,0.115824807,0.018042492,0.724496596,0.448993192,0.998369972,0.959608009,0,0,0,0,0,0,0.200337163,78.44332391,-0.200337163,101.5566761,0.800420744,0,0,0,0,4,19,0% +4/7/2018 4:00,106.4057079,293.1641807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857129945,5.116680202,-2.477365288,2.477365288,0.953808105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.026092603,91.4951657,0.026092603,88.5048343,0,0,0,0,0,4,20,0% +4/7/2018 5:00,116.7624772,304.6867848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03788967,5.317787582,-1.146200863,1.146200863,0.726165581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.246611385,104.2770816,0.246611385,75.72291842,0,0.847251858,0,0,0,4,21,0% +4/7/2018 6:00,125.6064498,318.7191785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19224611,5.562699055,-0.506827768,0.506827768,0.616826342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446178517,116.4987646,0.446178517,63.50123541,0,0.937937231,0,0,0,4,22,0% +4/7/2018 7:00,132.0054248,336.0154519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303929294,5.864575973,-0.07715893,0.07715893,0.543348644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611183057,127.6750949,0.611183057,52.3249051,0,0.968191449,0,0,0,4,23,0% +4/8/2018 8:00,134.8550056,356.1873818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353663861,6.216642566,0.280194172,-0.280194172,0.482237664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.730371181,136.9175205,0.730371181,43.08247951,0,0.981541658,0,0,0,4,0,0% +4/8/2018 9:00,133.4789167,16.90292658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329646578,0.295011722,0.633220437,-0.633220437,0.421866617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795612835,142.7131779,0.795612835,37.28682213,0,0.987155363,0,0,0,4,1,0% +4/8/2018 10:00,128.2201802,35.36295294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.237864311,0.617199962,1.044795523,-1.044795523,0.351483132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802455503,143.3652296,0.802455503,36.63477044,0,0.987691249,0,0,0,4,2,0% +4/8/2018 11:00,120.1211787,50.49645711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096510069,0.881329437,1.624721847,-1.624721847,0.25230989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750427397,138.6274139,0.750427397,41.37258611,0,0.983371303,0,0,0,4,3,0% +4/8/2018 12:00,110.21114,62.79168959,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923547265,1.095921726,2.694822405,-2.694822405,0.069311917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643069472,130.021085,0.643069472,49.97891504,0,0.972247903,0,0,0,4,4,0% +4/8/2018 13:00,99.22340987,73.18731175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731775197,1.277359561,6.148716649,-6.148716649,0,#DIV/0!,0,0,0.342684214,1,0.161223978,0,0.943944153,0.982706116,0.724496596,1,0,0,0.050432653,0.312029739,0.866957462,0.591454058,0.961238037,0.922476074,0,0,0,0,0,0,-0.487694046,119.1891303,0.487694046,60.81086972,0,0.947476706,0,0,0,4,5,0% +4/8/2018 14:00,87.38274423,82.56327525,7.223447791,46.46444686,5.101702439,5.002320688,0,5.002320688,4.947867288,0.054453401,15.40654504,13.50130134,1.905243699,0.153835152,1.751408547,1.525116596,1.441000994,-21.35252078,21.35252078,0,0.706269719,0.038458788,1.236966822,1,0.685697653,0,0.046798683,0.961238037,1,0.600370659,0.875874063,4.756078238,0.105678907,0.115824807,0.171300213,0.724496596,0.448993192,0.981426081,0.942664117,0.027863261,1.198921563,4.783941499,1.30460047,0,4.243490703,-0.290572734,106.8922479,0.290572734,73.10775214,0,0.877926043,4.783941499,5.030071472,8.076022676,4,6,69% +4/8/2018 15:00,75.74892448,91.7029648,179.2373842,522.0857317,50.71476343,50.53669331,0,50.53669331,49.1855262,1.351167112,85.01617287,40.0287567,44.98741617,1.529237235,43.45817894,1.322068137,1.60051867,-3.658105092,3.658105092,0.844273497,0.282947465,1.200290274,38.60546119,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.27899864,1.107927171,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.869606218,37.10903773,48.14860486,38.2169649,0,40.0287567,-0.07667085,94.39723143,0.07667085,85.60276857,0,0,48.14860486,38.2169649,73.16084405,4,7,52% +4/8/2018 16:00,64.01249957,101.4244834,393.6148023,728.2990011,74.49234627,184.0241982,108.8108364,75.21336183,72.24612718,2.967234644,97.68268503,0,97.68268503,2.246219088,95.43646594,1.11722888,1.770191177,-1.750551016,1.750551016,0.829515544,0.189251893,2.55710362,82.24524241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44572547,1.627378083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.852612868,79.05725536,71.29833833,80.68463344,108.8108364,0,0.149404072,81.40760675,-0.149404072,98.59239325,0.7153371,0,149.1347665,80.68463344,201.9412454,4,8,35% +4/8/2018 17:00,52.69902882,112.8006652,587.3733309,821.5380825,89.5197054,395.0824504,303.8342262,91.24822427,86.82035599,4.427868276,145.1148139,0,145.1148139,2.69934941,142.4154644,0.919771566,1.968743007,-0.9631139,0.9631139,0.694855867,0.152406827,3.282652907,105.5814015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.45502855,1.955669459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378270857,101.4888591,85.83329941,103.4445286,303.8342262,0,0.369835839,68.29450658,-0.369835839,111.7054934,0.914804882,0,363.7823328,103.4445286,431.4847079,4,9,19% +4/8/2018 18:00,42.43928059,127.4741151,741.2782146,869.3032614,99.7385955,597.2924654,494.9732883,102.3191771,96.73110885,5.588068299,182.738972,0,182.738972,3.00748665,179.7314853,0.740705178,2.224843019,-0.491646236,0.491646236,0.614230148,0.134549476,3.722409436,119.7254832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.98162117,2.17891384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696872965,115.0846884,95.67849413,117.2636022,494.9732883,0,0.56939081,55.29224398,-0.56939081,124.707756,0.962186851,0,571.9352838,117.2636022,648.6819662,4,10,13% +4/8/2018 19:00,34.40091853,147.772789,843.2532677,893.4856624,106.0342798,765.3871314,656.1933771,109.1937543,102.836955,6.356799324,207.6538424,0,207.6538424,3.19732476,204.4565176,0.600409294,2.579121712,-0.145019921,0.145019921,0.554953557,0.125744286,3.883467897,124.9056769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.85079275,2.316450905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.813559272,120.0640877,101.664352,122.3805386,656.1933771,0,0.734419594,42.74180475,-0.734419594,137.2581953,0.981919028,0,745.9931148,122.3805386,826.0887297,4,11,11% +4/8/2018 20:00,30.52684333,174.7461939,885.798466,902.2830302,108.57973,882.2287654,770.2455919,111.9831735,105.3056505,6.677523,218.046173,0,218.046173,3.274079477,214.7720935,0.532793926,3.049896439,0.150094842,-0.150094842,0.50448596,0.122578368,3.774304688,121.3946128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2237968,2.372059436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.734470898,116.6891193,103.9582677,119.0611788,770.2455919,0,0.853662948,31.38766449,-0.853662948,148.6123355,0.991428874,0,867.6019876,119.0611788,945.5251479,4,12,9% +4/8/2018 21:00,32.39358298,203.2436447,865.8582729,898.2438851,107.3919764,936.1645465,825.483629,110.6809175,104.1537121,6.527205401,213.1756271,0,213.1756271,3.238264323,209.9373628,0.565374679,3.547270785,0.434671449,-0.434671449,0.455820494,0.124029509,3.41578326,109.8633313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1165097,2.346111479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.474723344,105.6048129,102.5912331,107.9509244,825.483629,0,0.918997215,23.22008085,-0.918997215,156.7799192,0.995592871,0,924.4368493,107.9509244,995.0885703,4,13,8% +4/8/2018 22:00,39.17034474,226.0742241,784.886791,880.2320838,102.4679326,920.3752402,815.0802857,105.2949546,99.37814641,5.916808168,193.3946758,0,193.3946758,3.089786236,190.3048896,0.683651485,3.945739564,0.744711134,-0.744711134,0.402800585,0.130551226,2.844598425,91.49206361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.52605436,2.23853961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060901876,87.94565161,97.58695623,90.18419122,815.0802857,0,0.925983386,22.18288852,-0.925983386,157.8171115,0.996003351,0,909.409652,90.18419122,968.4334015,4,14,6% +4/8/2018 23:00,48.7928507,242.5105868,648.808775,842.587681,93.72604782,832.3571109,736.5662546,95.79085627,90.89986167,4.890994604,160.1373853,0,160.1373853,2.826186154,157.3111991,0.851595896,4.232608211,1.132260772,-1.132260772,0.336525694,0.144458662,2.114720827,68.0166911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37640458,2.047562248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53210804,65.38023063,88.90851262,67.42779288,736.5662546,0,0.87417164,29.05290947,-0.87417164,150.9470905,0.992802995,0,820.1736959,67.42779288,864.3038378,4,15,5% +4/8/2018 0:00,59.80668289,254.8629928,467.993698,770.1632083,80.66388311,672.5861296,590.826626,81.7595036,78.23156942,3.527934177,115.902804,0,115.902804,2.432313694,113.4704903,1.043823531,4.448198367,1.712446455,-1.712446455,0.237308099,0.172361046,1.300983841,41.84411242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.19916021,1.762202991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.942558364,40.22215247,76.14171857,41.98435546,590.826626,0,0.767144703,39.90182646,-0.767144703,140.0981735,0.984823248,0,658.0015155,41.98435546,685.4794365,4,16,4% +4/8/2018 1:00,71.43079343,265.0519625,258.2893477,619.4686517,61.01962483,440.4496528,379.3229006,61.12675221,59.17965801,1.947094205,64.46520955,0,64.46520955,1.839966827,62.62524272,1.246702533,4.626029435,2.874601578,-2.874601578,0.038567868,0.236245224,0.517346079,16.63962828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.88573828,1.333049703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374815473,15.99464362,57.26055376,17.32769332,379.3229006,0,0.61233591,52.24140321,-0.61233591,127.7585968,0.968345472,0,424.5761668,17.32769332,435.9167955,4,17,3% +4/8/2018 2:00,83.17688825,274.3178482,53.84934552,246.3553942,24.58121677,127.9878602,103.7419187,24.2459415,23.84000239,0.405939113,13.79761165,0,13.79761165,0.741214381,13.05639727,1.451710562,4.787749649,7.616050806,-7.616050806,0,0.456481254,0.185303595,5.960000596,0.435751158,1,0.130554803,0,0.947699142,0.986461105,0.724496596,1,23.11456387,0.537007295,0.061775374,0.312029739,0.839799617,0.564296213,0.961238037,0.922476074,0.126811985,5.728979273,23.24137586,6.265986568,58.53625751,0,0.421106747,65.09551919,-0.421106747,114.9044808,0.93126526,0,77.75415895,6.265986568,81.85512184,4,18,5% +4/8/2018 3:00,94.98606503,283.5410853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657819578,4.948725504,-9.553593221,9.553593221,0,#DIV/0!,0,0,1,0.140830252,0,0.104292875,0.961238037,1,0.471627496,0.7471309,0,0,0.115824807,0.025784155,0.724496596,0.448993192,0.997646516,0.958884553,0,0,0,0,0,0,0.202319634,78.3273622,-0.202319634,101.6726378,0.802866299,0,0,0,0,4,19,0% +4/8/2018 4:00,106.2009806,293.4969297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853556781,5.122487767,-2.496722428,2.496722428,0.957118371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023928596,91.37113842,0.023928596,88.62886158,0,0,0,0,0,4,20,0% +4/8/2018 5:00,116.5246,305.0172612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03373793,5.323555484,-1.148685988,1.148685988,0.726590563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.244199474,104.1345301,0.244199474,75.86546992,0,0.845249354,0,0,0,4,21,0% +4/8/2018 6:00,125.3243788,319.0302784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187323043,5.568128772,-0.504988599,0.504988599,0.616511826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443469429,116.3254548,0.443469429,63.6745452,0,0.937252657,0,0,0,4,22,0% +4/8/2018 7:00,131.6743277,336.2632024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298150559,5.868900035,-0.073214813,0.073214813,0.54267416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60814801,127.4557121,0.60814801,52.54428786,0,0.967783173,0,0,0,4,23,0% +4/9/2018 8:00,134.4862405,356.3102497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347227696,6.218787015,0.285920551,-0.285920551,0.481258396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727003866,136.6358021,0.727003866,43.3641979,0,0.981224575,0,0,0,4,0,0% +4/9/2018 9:00,133.100566,16.87535191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323043112,0.294530453,0.641242664,-0.641242664,0.420494736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791929857,142.3662271,0.791929857,37.63377288,0,0.986863095,0,0,0,4,1,0% +4/9/2018 10:00,127.8580525,35.22187505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231543991,0.614737688,1.05668753,-1.05668753,0.349449479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798495246,142.9866482,0.798495246,37.0133518,0,0.98738222,0,0,0,4,2,0% +4/9/2018 11:00,119.7853232,50.29451642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090648285,0.877804907,1.64482075,-1.64482075,0.248872775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.74624739,138.2663525,0.74624739,41.73364753,0,0.982998091,0,0,0,4,3,0% +4/9/2018 12:00,109.8999067,62.56218664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918115219,1.091916144,2.739239878,-2.739239878,0.061716082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638742441,129.6981103,0.638742441,50.30188969,0,0.971721187,0,0,0,4,4,0% +4/9/2018 13:00,98.93054145,72.94447371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726663679,1.273121237,6.355270185,-6.355270185,0,#DIV/0!,0,0,0.357599589,1,0.156070075,0,0.94459006,0.983352023,0.724496596,1,0,0,0.052308617,0.312029739,0.862395391,0.586891987,0.961238037,0.922476074,0,0,0,0,0,0,-0.483302914,118.9013437,0.483302914,61.09865634,0,0.946545213,0,0,0,4,5,0% +4/9/2018 14:00,87.11593331,82.31068035,8.996251336,56.37526895,6.159718097,6.041797412,0,6.041797412,5.973979869,0.067817543,18.5157699,16.14878638,2.366983519,0.185738228,2.181245291,1.520459867,1.436592382,-19.39311091,19.39311091,0,0.684698311,0.046434557,1.493494967,1,0.648700135,0,0.051519073,0.961238037,1,0.588808641,0.864312046,5.742416682,0.127340819,0.115824807,0.15823526,0.724496596,0.448993192,0.983081403,0.94431944,0.033641678,1.447890098,5.77605836,1.575230918,0,5.673066479,-0.286451607,106.6456377,0.286451607,73.35436234,0,0.875450447,5.77605836,6.541719501,10.05748294,4,6,74% +4/9/2018 15:00,75.47101027,91.43938571,184.2311322,529.1298365,51.48842427,51.3246704,0,51.3246704,49.93585831,1.388812094,84.54787507,38.32633815,46.22153692,1.552565964,44.66897095,1.317217619,1.595918347,-3.591657246,3.591657246,0.855636747,0.279477326,1.244352031,40.02263875,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.00024641,1.124828756,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.90152881,38.4712827,48.90177522,39.59611145,0,38.32633815,-0.072432767,94.15372935,0.072432767,85.84627065,0,0,48.90177522,39.59611145,74.81663824,4,7,53% +4/9/2018 16:00,63.72769808,101.147858,398.6647002,731.2454414,74.98785805,187.954486,112.2224857,75.73200036,72.72669746,3.005302907,98.92203275,0,98.92203275,2.261160596,96.66087215,1.112258156,1.765363153,-1.73376079,1.73376079,0.826644247,0.188097562,2.582312657,83.05605169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.90766789,1.638203155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87087673,79.83663608,71.77854462,81.47483923,112.2224857,0,0.153467604,81.17206689,-0.153467604,98.82793311,0.72419834,0,153.0498825,81.47483923,206.3735353,4,8,35% +4/9/2018 17:00,52.39730685,112.5140047,592.1714545,823.1176791,89.91953005,399.2294242,307.5572611,91.67216301,87.20812445,4.464038558,146.2902307,0,146.2902307,2.711405599,143.5788251,0.914505524,1.963739837,-0.957066612,0.957066612,0.69382172,0.15184712,3.304790284,106.2934157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.82776634,1.964404126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.394309311,102.1732742,86.22207565,104.1376784,307.5572611,0,0.373649199,68.05915036,-0.373649199,111.9408496,0.916184645,0,368.0013159,104.1376784,436.1573436,4,9,19% +4/9/2018 18:00,42.1087999,127.2017243,745.7509281,870.3121765,100.0899417,601.2987754,498.6051292,102.6936462,97.07186071,5.621785503,183.8340276,0,183.8340276,3.018081036,180.8159465,0.734937202,2.220088903,-0.489599212,0.489599212,0.613880086,0.134213634,3.742437465,120.3696534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.30916482,2.186589437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711383203,115.7038893,96.02054803,117.8904788,498.6051292,0,0.572903773,55.04703611,-0.572903773,124.9529639,0.962725309,0,576.0403249,117.8904788,653.1972854,4,10,13% +4/9/2018 19:00,34.03584003,147.5998843,847.3880417,894.2254616,106.3544719,769.1196754,659.5842143,109.5354611,103.1474921,6.387968997,208.6660212,0,208.6660212,3.206979733,205.4590414,0.594037472,2.576103956,-0.145037656,0.145037656,0.55495659,0.125508582,3.901856788,125.4971269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.14929284,2.323445899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826881961,120.6326118,101.9761748,122.9560577,659.5842143,0,0.737603929,42.47229486,-0.737603929,137.5277051,0.982212942,0,749.8283267,122.9560577,830.3006074,4,11,11% +4/9/2018 20:00,30.15128666,174.8261136,889.6168126,902.8991836,108.8779373,885.6463892,773.3452161,112.3011731,105.5948657,6.706307309,218.9809674,0,218.9809674,3.283071526,215.6978958,0.526239226,3.0512913,0.148638321,-0.148638321,0.50473504,0.122387455,3.791405858,121.9446453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5018015,2.378574144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.746860638,117.2178314,104.2486621,119.5964056,773.3452161,0,0.856513363,31.07267109,-0.856513363,148.9273289,0.991623795,0,871.1161798,119.5964056,949.3896354,4,12,9% +4/9/2018 21:00,32.06247032,203.5841184,869.4068715,898.8302212,107.6753907,939.2828574,828.3003207,110.9825367,104.4285804,6.553956236,214.0445719,0,214.0445719,3.246810311,210.7977616,0.559595673,3.553213171,0.431842569,-0.431842569,0.456304261,0.123849252,3.43191739,110.3822604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3807236,2.352303018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.486412466,106.1036273,102.8671361,108.4559303,828.3003207,0,0.921531454,22.84899301,-0.921531454,157.151007,0.995742492,0,927.6409618,108.4559303,998.6231991,4,13,8% +4/9/2018 22:00,38.90545101,226.5013194,788.230965,880.8804137,102.7444481,923.2575725,817.6692306,105.5883419,99.64632391,5.942017964,194.2138475,0,194.2138475,3.098124197,191.1157233,0.679028217,3.953193783,0.740125671,-0.740125671,0.403584746,0.13034815,2.860049941,91.98903748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.78383678,2.244580434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072096447,88.4233618,97.85593322,90.66794223,817.6692306,0,0.928240903,21.83775651,-0.928240903,158.1622435,0.996134673,0,912.3646047,90.66794223,971.7049595,4,14,7% +4/9/2018 23:00,48.57831281,242.9240048,652.0243877,843.4414947,94.00708392,835.1201666,739.0325078,96.08765874,91.17242349,4.915235251,160.9255221,0,160.9255221,2.834660429,158.0908617,0.847851504,4.239823715,1.124779738,-1.124779738,0.337805026,0.144177251,2.129665644,68.4973678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.63840137,2.053701832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.54293551,65.84227535,89.18133688,67.89597718,739.0325078,0,0.876210754,28.8114066,-0.876210754,151.1885934,0.992936103,0,822.9933954,67.89597718,867.4299545,4,15,5% +4/9/2018 0:00,59.62158321,255.2437225,471.1519421,771.5504031,80.97209735,675.4339814,593.3517492,82.08223222,78.53048986,3.551742355,116.6778507,0,116.6778507,2.44160749,114.2362432,1.040592932,4.454843352,1.698791342,-1.698791342,0.23964326,0.17185984,1.315274296,42.30374258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.48649391,1.768936315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95291175,40.66396646,76.43940566,42.43290278,593.3517492,0,0.769038221,39.73239971,-0.769038221,140.2676003,0.984983726,0,660.8812221,42.43290278,688.6527083,4,16,4% +4/9/2018 1:00,71.25888942,265.4061895,261.4009847,622.41713,61.42300053,443.8077205,382.2662991,61.54142148,59.57087044,1.970551039,65.23182522,0,65.23182522,1.852130093,63.37969513,1.243702242,4.632211862,2.841497247,-2.841497247,0.044229042,0.234976164,0.529708622,17.03725016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.26178656,1.341861947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.383772094,16.3768529,57.64555865,17.71871484,382.2662991,0,0.614164168,52.10878765,-0.614164168,127.8912124,0.968588543,0,427.9043162,17.71871484,439.5008606,4,17,3% +4/9/2018 2:00,83.00738638,274.6559215,56.3016401,254.241272,25.34995508,132.5350724,107.5250865,25.00998595,24.5855604,0.424425545,14.41537916,0,14.41537916,0.764394677,13.65098448,1.448752196,4.79365014,7.409718249,-7.409718249,0,0.450252515,0.191098669,6.146390101,0.424289047,1,0.134147379,0,0.94727034,0.986032303,0.724496596,1,23.83781583,0.553801341,0.060423843,0.312029739,0.842981967,0.567478563,0.961238037,0.922476074,0.13078251,5.908143954,23.96859834,6.461945296,61.90337004,0,0.42292538,64.98058281,-0.42292538,115.0194172,0.931775835,0,81.64866263,6.461945296,85.87787658,4,18,5% +4/9/2018 3:00,94.80306827,283.8721071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654625682,4.954502923,-9.881239006,9.881239006,0,#DIV/0!,0,0,1,0.180290969,0,0.100858494,0.961238037,1,0.47857519,0.754078594,0,0,0.115824807,0.033672263,0.724496596,0.448993192,0.996894588,0.958132625,0,0,0,0,0,0,0.204294948,78.21177093,-0.204294948,101.7882291,0.805255817,0,0,0,0,4,19,0% +4/9/2018 4:00,105.9962696,293.8265306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8499839,5.128240389,-2.516577452,2.516577452,0.96051378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.021762812,91.24701573,0.021762812,88.75298427,0,0,0,0,0,4,20,0% +4/9/2018 5:00,116.2867528,305.3438096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029586712,5.329254829,-1.151247359,1.151247359,0.727028583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.241778375,103.9915253,0.241778375,76.00847471,0,0.84319904,0,0,0,4,21,0% +4/9/2018 6:00,125.0426658,319.3365957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182406223,5.573475016,-0.50316312,0.50316312,0.616199651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440745779,116.1514744,0.440745779,63.84852557,0,0.936555919,0,0,0,4,22,0% +4/9/2018 7:00,131.344301,336.5059651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292390506,5.873137044,-0.069263726,0.069263726,0.541998484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605095432,127.2357094,0.605095432,52.76429058,0,0.967368406,0,0,0,4,23,0% +4/10/2018 8:00,134.119384,356.4297039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340824842,6.220871885,0.291669441,-0.291669441,0.480275278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723618666,136.3540581,0.723618666,43.64594188,0,0.980902833,0,0,0,4,0,0% +4/10/2018 9:00,132.7245455,16.84713332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316480317,0.294037946,0.649310922,-0.649310922,0.419114982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78823128,142.0205277,0.78823128,37.97947228,0,0.986566841,0,0,0,4,1,0% +4/10/2018 10:00,127.4982049,35.08200099,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225263465,0.612296425,1.068677773,-1.068677773,0.347399027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794524158,142.6103343,0.794524158,37.38966573,0,0.987069251,0,0,0,4,2,0% +4/10/2018 11:00,119.4515994,50.09427824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084823706,0.874310092,1.665174087,-1.665174087,0.24539215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742063478,137.9074901,0.742063478,42.09250987,0,0.98262032,0,0,0,4,3,0% +4/10/2018 12:00,109.5907639,62.33423288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912719659,1.0879376,2.784648849,-2.784648849,0.05395069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634420108,129.3769883,0.634420108,50.62301174,0,0.97118787,0,0,0,4,4,0% +4/10/2018 13:00,98.63984647,72.70283783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721590095,1.268903896,6.573911496,-6.573911496,0,#DIV/0!,0,0,0.372667651,1,0.150959168,0,0.945224661,0.983986624,0.724496596,1,0,0,0.054180697,0.312029739,0.857870579,0.582367175,0.961238037,0.922476074,0,0,0,0,0,0,-0.478926171,118.615292,0.478926171,61.38470796,0,0.945599775,0,0,0,4,5,0% +4/10/2018 14:00,86.8498827,82.0588806,10.96109032,67.00179962,7.279192413,7.142327233,0,7.142327233,7.059697904,0.082629329,21.79371136,18.9165736,2.877137759,0.219494509,2.657643251,1.515816408,1.432197647,-17.76917616,17.76917616,0,0.664093827,0.054873627,1.764924476,1,0.610722535,0,0.05621793,0.961238037,1,0.577474782,0.852978186,6.786050154,0.15029273,0.115824807,0.14543399,0.724496596,0.448993192,0.984666016,0.945904053,0.039755756,1.711229928,6.82580591,1.861522657,0,7.36379581,-0.282329336,106.3992761,0.282329336,73.60072393,0,0.872901861,6.82580591,8.289393723,12.25104831,4,6,79% +4/10/2018 15:00,75.19562839,91.17611384,189.1882551,535.9433307,52.24426993,52.09509341,0,52.09509341,50.66891243,1.42618098,84.01267483,36.56643453,47.4462403,1.575357499,45.8708828,1.312411299,1.591323386,-3.528184232,3.528184232,0.866491272,0.276149647,1.288354366,41.43790509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.70488592,1.141341146,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.933408352,39.83169054,49.63829427,40.97303169,0,36.56643453,-0.068228173,93.91222569,0.068228173,86.08777431,0,0,49.63829427,40.97303169,76.45432405,4,7,54% +4/10/2018 16:00,63.44573295,100.8708639,403.6543459,734.1069482,75.47532922,191.8554967,115.6131102,76.24238654,73.19946957,3.042916964,100.1465292,0,100.1465292,2.27585965,97.87066951,1.107336936,1.760528695,-1.71745995,1.71745995,0.823856639,0.186980098,2.607146734,83.85480097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.36211443,1.648852569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888868934,80.60442426,72.25098336,82.25327683,115.6131102,0,0.157488102,80.93887335,-0.157488102,99.06112665,0.732515699,0,156.9394016,82.25327683,210.7725262,4,8,34% +4/10/2018 17:00,52.09865521,112.2259309,596.9017416,824.6541385,90.31363624,403.32448,311.2344357,92.09004435,87.59034689,4.499697461,147.4490273,0,147.4490273,2.723289355,144.7257379,0.909293069,1.958712,-0.951168736,0.951168736,0.692813123,0.151304025,3.32658914,106.9945418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.19517309,1.973013867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410102508,102.8472233,86.6052756,104.8202372,311.2344357,0,0.377412082,67.82652707,-0.377412082,112.1734729,0.917518815,0,372.1687261,104.8202372,440.771475,4,9,18% +4/10/2018 18:00,41.78142783,126.9264212,750.1529768,871.2934975,100.4363738,605.2423672,502.1795506,103.0628166,97.40784657,5.654970005,184.9118014,0,184.9118014,3.028527241,181.8832742,0.729223482,2.215283957,-0.48760785,0.48760785,0.613539543,0.133887856,3.762149218,121.0036512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63212721,2.194157677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.725664302,116.3133121,96.35779152,118.5074698,502.1795506,0,0.576360953,54.80500362,-0.576360953,125.1949964,0.963248807,0,580.0816447,118.5074698,657.6424136,4,10,13% +4/10/2018 19:00,33.67349036,147.4232785,851.4527026,894.9446061,106.6701818,772.7842684,662.911976,109.8722924,103.4536823,6.418610127,209.6610651,0,209.6610651,3.216499553,206.4445655,0.587713277,2.573021605,-0.145073499,0.145073499,0.554962719,0.12528022,3.919954882,126.0792238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.44361446,2.330342977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839993968,121.1921455,102.2836084,123.5224885,662.911976,0,0.740729618,42.20639505,-0.740729618,137.7936049,0.982498986,0,753.5939529,123.5224885,834.4369512,4,11,11% +4/10/2018 20:00,29.77801286,174.9056044,893.3685669,903.4979403,109.1720163,888.9948605,776.3801937,112.6146668,105.8800772,6.734589618,219.8994912,0,219.8994912,3.291939092,216.6075521,0.519724369,3.052678676,0.147184416,-0.147184416,0.504983672,0.122202661,3.808248695,122.4863688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7759575,2.384998666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.759063216,117.7385567,104.5350207,120.1235554,776.3801937,0,0.859304885,30.76137521,-0.859304885,149.2386248,0.991813434,0,874.5593272,120.1235554,953.1777917,4,12,9% +4/10/2018 21:00,31.73390813,203.9273014,872.8950084,899.4003421,107.9550338,942.3342202,831.0541777,111.2800425,104.6997912,6.580251286,214.8987434,0,214.8987434,3.25524258,211.6435008,0.553861181,3.559202844,0.429033081,-0.429033081,0.456784712,0.123674706,3.447832571,110.8941473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6414218,2.358412168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49794296,106.5956725,103.1393647,108.9540846,831.0541777,0,0.924009186,22.48058023,-0.924009186,157.5194198,0.995887984,0,930.7762342,108.9540846,1002.084504,4,13,8% +4/10/2018 22:00,38.64313685,226.9296419,791.5229675,881.5119834,103.0175529,926.0779955,820.1999674,105.8780281,99.91119358,5.96683447,195.0202667,0,195.0202667,3.106359314,191.9139074,0.674449971,3.960669422,0.735580553,-0.735580553,0.404362006,0.13015106,2.875327566,92.48041839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.03843958,2.250546749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083165033,88.89569582,98.12160461,91.14624257,820.1999674,0,0.930446758,21.49543616,-0.930446758,158.5045638,0.996262374,0,915.2559712,91.14624257,974.9093641,4,14,7% +4/10/2018 23:00,48.36586323,243.3368881,655.1977579,844.2755881,94.28500746,837.828317,741.4471929,96.38112406,91.44196661,4.939157456,161.7033229,0,161.7033229,2.843040849,158.860282,0.844143559,4.247029888,1.117377789,-1.117377789,0.339070834,0.143903129,2.144486391,68.97405397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89749647,2.059773417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553673091,66.30048423,89.45116956,68.36025765,741.4471929,0,0.878205178,28.57339274,-0.878205178,151.4266073,0.993065697,0,825.7569427,68.36025765,870.4973641,4,15,5% +4/10/2018 0:00,59.43796773,255.6230012,474.2791016,772.9092758,81.27720866,678.2341313,595.8324141,82.40171714,78.82640093,3.575316204,117.4452669,0,117.4452669,2.450807722,114.9944592,1.037388238,4.461463014,1.685319128,-1.685319128,0.241947145,0.171369998,1.329497995,42.76122563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77093489,1.775601852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.963216772,41.10371658,76.73415166,42.87931843,595.8324141,0,0.77089567,39.56561249,-0.77089567,140.4343875,0.98514038,0,663.7127227,42.87931843,691.776379,4,16,4% +4/10/2018 1:00,71.08793027,265.758487,264.4948868,625.3084414,61.82197204,447.1204909,385.1688053,61.95168566,59.95781148,1.99387418,65.99400808,0,65.99400808,1.864160556,64.12984753,1.240718442,4.638360614,2.809053155,-2.809053155,0.049777308,0.233735982,0.542091605,17.43552944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.633729,1.350577977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.392743522,16.75969409,58.02647253,18.11027207,385.1688053,0,0.615966105,51.97784719,-0.615966105,128.0221528,0.968826702,0,431.188296,18.11027207,443.0411069,4,17,3% +4/10/2018 2:00,82.83830468,274.9917082,58.77670087,262.025222,26.11003363,137.0556039,111.2898005,25.76580338,25.32271978,0.443083599,15.03840547,0,15.03840547,0.78731385,14.25109162,1.445801163,4.799510723,7.213428782,-7.213428782,0,0.444224212,0.196828462,6.330679945,0.412944095,1,0.137752347,0,0.946837097,0.98559906,0.724496596,1,24.5527201,0.570406204,0.059073901,0.312029739,0.846175069,0.570671665,0.961238037,0.922476074,0.134717109,6.085290362,24.68743721,6.655696566,65.33333449,0,0.424729343,64.86646706,-0.424729343,115.1335329,0.932277971,0,85.59626574,6.655696566,89.95228603,4,18,5% +4/10/2018 3:00,94.62029102,284.2004375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651435618,4.960233371,-10.23425126,10.23425126,0,#DIV/0!,0,0,1,0.218941439,0,0.09740191,0.961238037,1,0.485663515,0.761166919,0,0,0.115824807,0.04171015,0.724496596,0.448993192,0.996113079,0.957351115,0,0,0,0,0,0,0.206263468,78.09652874,-0.206263468,101.9034713,0.807591587,0,0,0,0,4,19,0% +4/10/2018 4:00,105.7916085,294.1528809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84641189,5.133936276,-2.536951792,2.536951792,0.963997997,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.019595121,91.12278959,0.019595121,88.87721041,0,0,0,0,0,4,20,0% +4/10/2018 5:00,116.048991,305.6663401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025436987,5.334884048,-1.153889293,1.153889293,0.72748038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239348261,103.8480774,0.239348261,76.15192258,0,0.841099381,0,0,0,4,21,0% +4/10/2018 6:00,124.7613896,319.6380691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177497028,5.57873672,-0.501353885,0.501353885,0.615890253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438008091,115.9768584,0.438008091,64.02314161,0,0.935846857,0,0,0,4,22,0% +4/10/2018 7:00,131.01544,336.7437187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2866508,5.877286627,-0.06530795,0.06530795,0.541322007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602026227,127.0151537,0.602026227,52.98484631,0,0.96694714,0,0,0,4,23,0% +4/11/2018 8:00,133.7545371,356.5457274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334457061,6.222896877,0.297438418,-0.297438418,0.479288724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720216859,136.0723877,0.720216859,43.92761235,0,0.980576465,0,0,0,4,0,0% +4/11/2018 9:00,132.3509635,16.8182158,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309960081,0.29353324,0.657422384,-0.657422384,0.417727841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784518728,141.6761884,0.784518728,38.32381163,0,0.986266659,0,0,0,4,1,0% +4/11/2018 10:00,127.1407567,34.94326713,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219024818,0.609875063,1.080762859,-1.080762859,0.345332356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790544159,142.2363931,0.790544159,37.76360687,0,0.986752426,0,0,0,4,2,0% +4/11/2018 11:00,119.1201324,49.89570332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079038516,0.870844306,1.68577886,-1.68577886,0.241868526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7378778,137.5509491,0.7378778,42.44905086,0,0.982238102,0,0,0,4,3,0% +4/11/2018 12:00,109.2838361,62.10781657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907362759,1.08398589,2.831064661,-2.831064661,0.046013119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63010475,129.0578512,0.63010475,50.94214881,0,0.970648114,0,0,0,4,4,0% +4/11/2018 13:00,98.35144589,72.46241306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716556555,1.264707692,6.805636336,-6.805636336,0,#DIV/0!,0,0,0.387884521,1,0.145893042,0,0.945847871,0.984609834,0.724496596,1,0,0,0.056048133,0.312029739,0.853384694,0.57788129,0.961238037,0.922476074,0,0,0,0,0,0,-0.474566134,118.3311048,0.474566134,61.66889522,0,0.944640607,0,0,0,4,5,0% +4/11/2018 14:00,86.58491975,81.80789967,13.1057144,78.215987,8.446457803,8.290562348,0,8.290562348,8.191765936,0.098796411,25.19291536,21.7605913,3.432324057,0.254691867,3.17763219,1.511191932,1.427817203,-16.40281304,16.40281304,0,0.644486637,0.063672967,2.047941484,1,0.57177114,0,0.06088979,0.961238037,1,0.566379792,0.841883196,7.874237007,0.174300493,0.115824807,0.132906943,0.724496596,0.448993192,0.986180692,0.947418729,0.046130848,1.985646588,7.920367855,2.159947081,0,9.3185132,-0.278211554,106.1534936,0.278211554,73.84650637,0,0.870280649,7.920367855,10.26966879,14.64166069,4,6,85% +4/11/2018 15:00,74.92289676,90.91318345,194.1054758,542.5324631,52.98265747,52.84828393,0,52.84828393,51.38503487,1.463249067,83.41494384,34.75420134,48.6607425,1.597622608,47.06311989,1.307651234,1.586734385,-3.467520344,3.467520344,0.876865408,0.272958077,1.332253142,42.84984065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.39325004,1.157472141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.965212867,41.18889671,50.3584629,42.34636885,0,34.75420134,-0.064059211,93.6728373,0.064059211,86.3271627,0,0,50.3584629,42.34636885,78.07331439,4,7,55% +4/11/2018 16:00,63.16672055,100.5935411,408.5817194,736.8851705,75.95476688,195.7247216,118.9802096,76.744512,73.66445041,3.080061586,101.3556847,0,101.3556847,2.290316465,99.06536825,1.102467251,1.755688498,-1.701636553,1.701636553,0.821150678,0.185898593,2.631600048,84.6413036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.8090717,1.659326482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906585276,81.36044051,72.71565698,83.01976699,118.9802096,0,0.161463705,80.70813491,-0.161463705,99.29186509,0.740332883,0,160.8006185,83.01976699,215.1353956,4,8,34% +4/11/2018 17:00,51.80319493,111.9364761,601.5626642,826.1480418,90.70198274,407.3657866,314.8639699,92.50181677,87.9669833,4.534833464,148.590832,0,148.590832,2.734999434,145.8558326,0.904136315,1.953660061,-0.945419258,0.945419258,0.691829905,0.150777281,3.348044662,107.6846252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55721034,1.98149778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.425646961,103.5105577,86.9828573,105.4920555,314.8639699,0,0.381122939,67.59674255,-0.381122939,112.4032574,0.918808736,0,376.2826235,105.4920555,445.325064,4,9,18% +4/11/2018 18:00,41.45729289,126.6481923,754.4832564,872.2475301,100.7778541,609.1218786,505.6952351,103.4266435,97.73903,5.687613482,185.9720248,0,185.9720248,3.038824133,182.9332006,0.72356626,2.210427948,-0.485672716,0.485672716,0.613208616,0.133572022,3.781541337,121.6273684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.95047332,2.20161774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.739713826,116.9128528,96.69018714,119.1144705,505.6952351,0,0.579761155,54.56625473,-0.579761155,125.4337453,0.963757589,0,584.0578075,119.1144705,662.0158462,4,10,13% +4/11/2018 19:00,33.31399482,147.2428527,855.4465382,895.643322,106.9813864,776.3799942,666.1757739,110.2042202,103.7555029,6.448717347,210.6388007,0,210.6388007,3.22588352,207.4129172,0.581438897,2.56987258,-0.14512826,0.14512826,0.554972084,0.125059114,3.937760159,126.6519027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.73373591,2.337141629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85289383,121.7426263,102.5866297,124.0797679,666.1757739,0,0.743795837,41.94422559,-0.743795837,138.0557744,0.982777252,0,757.2890263,124.0797679,838.4967528,4,11,11% +4/11/2018 20:00,29.40711973,174.9845187,897.053361,904.0795122,109.4619595,892.2736927,779.350048,112.9236447,106.1612776,6.762367152,220.8016551,0,220.8016551,3.300681951,217.5009731,0.513251063,3.054055991,0.145732302,-0.145732302,0.505231998,0.122023911,3.824832222,123.019752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.046258,2.391332838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771077925,118.2512649,104.817336,120.6425978,779.350048,0,0.862037064,30.45392053,-0.862037064,149.5460795,0.991997854,0,877.9309108,120.6425978,956.8890782,4,12,9% +4/11/2018 21:00,31.40796446,204.273045,876.322591,899.9544798,108.2309125,945.3185394,833.7450984,111.573441,104.9673512,6.606089851,215.7381192,0,215.7381192,3.263561342,212.4745579,0.548172391,3.565237209,0.426242145,-0.426242145,0.45726199,0.123505788,3.463528488,111.398982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8986106,2.364439083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509314599,107.0809387,103.4079252,109.4453778,833.7450984,0,0.9264303,22.1149702,-0.9264303,157.8850298,0.996029399,0,933.8425545,109.4453778,1005.472365,4,13,8% +4/11/2018 22:00,38.38343268,227.3589954,794.7628934,882.127078,103.2872661,928.8367412,822.6727089,106.1640323,100.1727739,5.9912584,195.8139571,0,195.8139571,3.114492162,192.6994649,0.669917279,3.968163054,0.731074812,-0.731074812,0.405132534,0.12995985,2.890431211,92.96620352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.28988057,2.25643897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.094107573,89.36265097,98.38398814,91.61908994,822.6727089,0,0.932601129,21.15601666,-0.932601129,158.8439833,0.996386511,0,918.0839786,91.61908994,978.0468406,4,14,7% +4/11/2018 23:00,48.15550669,243.7490577,658.329065,845.0903544,94.55984811,840.4820383,743.810756,96.67128237,91.7085198,4.962762571,162.470832,0,162.470832,2.851328309,159.6195037,0.840472145,4.254223606,1.110053457,-1.110053457,0.340323368,0.143636144,2.159182738,69.44673901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.15371753,2.065777654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.564320544,66.75484707,89.71803808,68.82062472,743.810756,0,0.880155302,28.33889693,-0.880155302,151.6611031,0.993191844,0,828.4648141,68.82062472,873.5065366,4,15,5% +4/11/2018 0:00,59.25583252,256.0006802,477.375323,774.2404684,81.57926085,680.9872134,598.2692115,82.71800197,79.11934514,3.598656829,118.2050896,0,118.2050896,2.45991571,115.7451739,1.034209379,4.468054757,1.67202626,-1.67202626,0.244220359,0.17089124,1.343653816,43.21652551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.052524,1.782200558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973472616,41.54136814,77.02599662,43.3235687,598.2692115,0,0.772717568,39.4014448,-0.772717568,140.5985552,0.985293305,0,666.4966452,43.3235687,694.8510545,4,16,4% +4/11/2018 1:00,70.9179141,266.1087278,267.5709902,628.1439865,62.21662852,450.3887178,388.0310871,62.35763076,60.34056762,2.017063147,66.75174532,0,66.75174532,1.876060905,64.87568441,1.2377511,4.644473468,2.777250618,-2.777250618,0.055215862,0.232523819,0.554492027,17.83436965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.00164876,1.359199739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401727586,17.14307447,58.40337634,18.50227421,388.0310871,0,0.617742262,51.84855071,-0.617742262,128.1514493,0.969060095,0,434.4288184,18.50227421,446.5381869,4,17,3% +4/11/2018 2:00,82.66965545,275.3250937,61.27283712,269.7042553,26.86129541,141.5472212,115.0339924,26.51322877,26.05132824,0.461900528,15.66627592,0,15.66627592,0.809967164,14.85630875,1.442857679,4.805329398,7.026478539,-7.026478539,0,0.438388308,0.202491791,6.51283206,0.40171525,1,0.14136944,0,0.946399422,0.985161385,0.724496596,1,25.2591103,0.586818453,0.057725638,0.312029739,0.849378651,0.573875246,0.961238037,0.922476074,0.138615586,6.260381904,25.39772588,6.847200357,68.82308343,0,0.426519012,64.75315016,-0.426519012,115.2468498,0.932771931,0,89.59396633,6.847200357,94.07532202,4,18,5% +4/11/2018 3:00,94.43775247,284.5259696,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648249719,4.965914978,-10.6156906,10.6156906,0,#DIV/0!,0,0,1,0.256806004,0,0.093923023,0.961238037,1,0.492894444,0.768397848,0,0,0.115824807,0.049900974,0.724496596,0.448993192,0.995300858,0.956538895,0,0,0,0,0,0,0.20822551,77.98161717,-0.20822551,102.0183828,0.809875723,0,0,0,0,4,19,0% +4/11/2018 4:00,105.5870343,294.4758805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842841396,5.139573682,-2.557867209,2.557867209,0.967574744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017425453,90.99845544,0.017425453,89.00154456,0,0,0,0,0,4,20,0% +4/11/2018 5:00,115.8113737,305.9847665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021289782,5.340441637,-1.156616005,1.156616005,0.727946675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.236909373,103.7042006,0.236909373,76.29579943,0,0.838948832,0,0,0,4,21,0% +4/11/2018 6:00,124.4806319,319.9346424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172596882,5.583912901,-0.499563401,0.499563401,0.615584063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435256959,115.8016457,0.435256959,64.19835428,0,0.935125329,0,0,0,4,22,0% +4/11/2018 7:00,130.6878418,336.9764466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280933131,5.881348495,-0.06134976,0.06134976,0.540645116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59894136,126.7941157,0.59894136,53.20588431,0,0.966519373,0,0,0,4,23,0% +4/12/2018 8:00,133.3918012,356.658308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328126125,6.22486178,0.303225028,-0.303225028,0.478299156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716799779,135.7908924,0.716799779,44.20910763,0,0.980245514,0,0,0,4,0,0% +4/12/2018 9:00,131.9799276,16.78855047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303484283,0.293015482,0.665574143,-0.665574143,0.416333808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780793868,141.3333188,0.780793868,38.6666812,0,0.985962612,0,0,0,4,1,0% +4/12/2018 10:00,126.7858259,34.80561548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212830107,0.607472588,1.092939226,-1.092939226,0.343250074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786557194,141.86493,0.786557194,38.13507004,0,0.986431832,0,0,0,4,2,0% +4/12/2018 11:00,118.7910453,49.69875665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073294862,0.867406938,1.706631702,-1.706631702,0.23830248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733692508,137.1968499,0.733692508,42.80315006,0,0.98185156,0,0,0,4,3,0% +4/12/2018 12:00,108.9792453,61.88292936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902046647,1.080060868,2.878502266,-2.878502266,0.037900811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625798631,128.7408289,0.625798631,51.25917113,0,0.970102094,0,0,0,4,4,0% +4/12/2018 13:00,98.06545783,72.22321156,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711565122,1.260532838,7.051550279,-7.051550279,0,#DIV/0!,0,0,0.403246018,1,0.140873437,0,0.946459615,0.985221578,0.724496596,1,0,0,0.057910157,0.312029739,0.848939368,0.573435964,0.961238037,0.922476074,0,0,0,0,0,0,-0.470225086,118.0489083,0.470225086,61.95109166,0,0.943667944,0,0,0,4,5,0% +4/12/2018 14:00,86.32133711,81.5577647,15.41644412,89.89272151,9.648866234,9.474132984,0,9.474132984,9.357917317,0.116215668,28.6687396,24.63989532,4.028844279,0.290948917,3.737895362,1.506591547,1.423451525,-15.23837669,15.23837669,0,0.625881439,0.072737229,2.339479329,1,0.531850456,0,0.065529828,0.961238037,1,0.555532102,0.831035507,8.99518607,0.199157122,0.115824807,0.12066192,0.724496596,0.448993192,0.987626628,0.948864665,0.052697875,2.268078964,9.047883946,2.467236086,0,11.53515577,-0.274103341,105.9085863,0.274103341,74.09141371,0,0.867587047,9.047883946,12.47498781,17.21251397,4,6,90% +4/12/2018 15:00,74.6529299,90.65063285,198.9796595,548.9034024,53.70393633,53.58455722,0,53.58455722,52.0845645,1.499992723,82.7589531,32.89465912,49.86429398,1.619371827,48.24492215,1.302939423,1.582152012,-3.409511977,3.409511977,0.886785423,0.269896614,1.376005805,44.25707668,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.06566453,1.173229376,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.996911522,42.54158551,51.06257605,43.71481488,0,32.89465912,-0.059927956,93.43567753,0.059927956,86.56432247,0,0,51.06257605,43.71481488,79.6730481,4,7,56% +4/12/2018 16:00,62.89077394,100.3159344,413.4448896,739.5817427,76.426181,199.5597337,122.3213618,77.23837188,74.12164966,3.116722218,102.5490315,0,102.5490315,2.30453134,100.2445002,1.097651074,1.750843348,-1.686278955,1.686278955,0.818524375,0.18485216,2.65566717,85.415385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.24854901,1.669625111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924021825,82.10451699,73.17257083,83.7741421,122.3213618,0,0.16539262,80.47995671,-0.16539262,99.52004329,0.74768905,0,164.6309136,83.7741421,219.4594141,4,8,33% +4/12/2018 17:00,51.51104395,111.64568,606.1527781,827.5999766,91.08453263,411.3515963,318.4441627,92.90743358,88.3379979,4.569435681,149.7152936,0,149.7152936,2.746534725,146.9687588,0.899037318,1.948584711,-0.939817071,0.939817071,0.690871874,0.150266626,3.369152377,108.3635218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.91384368,1.989855059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440939428,104.163139,87.35478311,106.152994,318.4441627,0,0.384780294,67.36989865,-0.384780294,112.6301014,0.920055716,0,380.3411551,106.152994,449.8161666,4,9,18% +4/12/2018 18:00,41.13652134,126.3670333,758.7407395,873.1745869,101.1143492,612.936033,509.1509463,103.7850867,98.06537847,5.719708187,187.0144474,0,187.0144474,3.0489707,183.9654767,0.71796774,2.205520797,-0.483794272,0.483794272,0.612887383,0.133266008,3.800610738,122.2407058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.26417189,2.208968893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753529542,117.5024161,97.01770143,119.711385,509.1509463,0,0.583103258,54.33089341,-0.583103258,125.6691066,0.964251894,0,587.9674657,119.711385,666.316173,4,10,13% +4/12/2018 19:00,32.95747793,147.058494,859.3689014,896.3218392,107.2880657,779.9060172,669.3747968,110.5312204,104.0529347,6.478285778,211.5990706,0,211.5990706,3.235131031,208.3639396,0.575216503,2.566654914,-0.145202659,0.145202659,0.554984807,0.124845181,3.955270796,127.215105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0196386,2.343841419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865580228,122.2839977,102.8852189,124.6278392,669.3747968,0,0.746801838,41.68590253,-0.746801838,138.3140975,0.983047835,0,760.9126636,124.6278392,842.4790917,4,11,11% +4/12/2018 20:00,29.03870501,175.0627093,900.6708762,904.6441124,109.7477621,895.482469,782.2543694,113.2280996,106.4384621,6.78963751,221.6873815,0,221.6873815,3.309299952,218.3780815,0.506821013,3.055420674,0.144281244,-0.144281244,0.505480144,0.121851128,3.841155579,123.5447673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3126984,2.39757655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.782904141,118.7559296,105.0956025,121.1535061,782.2543694,0,0.864709512,30.15044809,-0.864709512,149.8495519,0.992177113,0,881.2304848,121.1535061,960.5230315,4,12,9% +4/12/2018 21:00,31.08470712,204.621198,879.6895571,900.4928644,108.5030353,948.235773,836.3730331,111.8627399,105.2312685,6.631471464,216.5626847,0,216.5626847,3.271766848,213.2909178,0.542530486,3.571313625,0.423469019,-0.423469019,0.457736222,0.123342416,3.479004859,111.8967553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1522979,2.370383944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520527178,107.5594174,103.6728251,109.9298013,836.3730331,0,0.928794737,21.75229073,-0.928794737,158.2477093,0.996166792,0,936.8398666,109.9298013,1008.786723,4,13,8% +4/12/2018 22:00,38.12636881,227.7891819,797.9508471,882.7259754,103.5536069,931.5340745,825.0877003,106.4463741,100.4310836,6.015290541,196.5949446,0,196.5949446,3.122523321,193.4724212,0.665430668,3.975671225,0.726607599,-0.726607599,0.405896472,0.129774418,2.90536074,93.4463885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.53817764,2.262257516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.104923966,89.82422303,98.6431016,92.08648055,825.0877003,0,0.934704227,20.81958683,-0.934704227,159.1804132,0.996507143,0,920.8488882,92.08648055,981.117648,4,14,7% +4/12/2018 23:00,47.94724871,244.1603353,661.4184774,845.8861714,94.83163414,843.081815,746.1236526,96.95816235,91.97211048,4.986051867,163.2280911,0,163.2280911,2.859523661,160.3685675,0.836837357,4.261401754,1.102805454,-1.102805454,0.34156285,0.143376149,2.173754238,69.91540853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40709092,2.071715158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574877546,67.20535004,89.98196847,69.2770652,746.1236526,0,0.882061532,28.10794641,-0.882061532,151.8920536,0.993314612,0,831.1174952,69.2770652,876.4579488,4,15,5% +4/12/2018 0:00,59.07517542,256.3766123,480.4407235,775.5445884,81.87829427,683.693842,600.6627153,83.03112671,79.4093616,3.621765113,118.9573484,0,118.9573484,2.468932671,116.4884158,1.031056317,4.474616009,1.658909539,-1.658909539,0.246463451,0.170423302,1.357740478,43.66960098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33129885,1.788733316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.983678354,41.97688151,77.31497721,43.76561483,600.6627153,0,0.774504425,39.23987641,-0.774504425,140.7601236,0.98544259,0,669.2335989,43.76561483,697.8773185,4,16,4% +4/12/2018 1:00,70.74884155,266.456786,270.6291901,630.9250769,62.60705109,453.613102,390.8537674,62.75933466,60.71921751,2.040117149,67.50501396,0,67.50501396,1.887833586,65.61718037,1.234800227,4.65054823,2.746072307,-2.746072307,0.060547668,0.23133887,0.566906751,18.23366985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.36562144,1.367729007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410722011,17.52689701,58.77634345,18.89462602,390.8537674,0,0.619493157,51.72086848,-0.619493157,128.2791315,0.969288858,0,437.6265454,18.89462602,449.9927002,4,17,3% +4/12/2018 2:00,82.50145359,275.6559651,63.78838974,277.2757964,27.60361014,146.0078842,118.7557609,27.25212328,26.77125945,0.480863826,16.2985843,0,16.2985843,0.832350692,15.46623361,1.439922003,4.811104193,6.848231611,-6.848231611,0,0.432737215,0.208087673,6.692814863,0.390601697,1,0.144998307,0,0.945957332,0.984719295,0.724496596,1,25.95684579,0.603035243,0.056379174,0.312029739,0.852592367,0.577088963,0.961238037,0.922476074,0.14247785,6.43338822,26.09932364,7.036423463,72.36955919,0,0.428294725,64.64061231,-0.428294725,115.3593877,0.93325796,0,93.6387908,7.036423463,98.24398923,4,18,5% +4/12/2018 3:00,94.25547529,284.8485985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645068382,4.971545914,-11.02911795,11.02911795,0,#DIV/0!,0,0,1,0.293906952,0,0.09042184,0.961238037,1,0.500269745,0.775773149,0,0,0.115824807,0.05824768,0.724496596,0.448993192,0.994456787,0.955694824,0,0,0,0,0,0,0.210181333,77.86702098,-0.210181333,102.132979,0.812110177,0,0,0,0,4,19,0% +4/12/2018 4:00,105.3825877,294.7954323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839273129,5.145150914,-2.579345719,2.579345719,0.971247786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.015253804,90.87401247,0.015253804,89.12598753,0,0,0,0,0,4,20,0% +4/12/2018 5:00,115.5739632,306.2990067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017146187,5.345926163,-1.159431579,1.159431579,0.728428167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234462023,103.559913,0.234462023,76.44008698,0,0.836745848,0,0,0,4,21,0% +4/12/2018 6:00,124.2004771,320.226264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167707258,5.589002659,-0.497794115,0.497794115,0.615281497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432493051,115.6258798,0.432493051,64.37412023,0,0.934391206,0,0,0,4,22,0% +4/12/2018 7:00,130.3616049,337.2041373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275239224,5.885322447,-0.057391417,0.057391417,0.5399682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595841866,126.5726701,0.595841866,53.42732988,0,0.966085118,0,0,0,4,23,0% +4/13/2018 8:00,133.0312786,356.767439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321833819,6.226766474,0.309026791,-0.309026791,0.477306996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713368814,135.5096766,0.713368814,44.49032343,0,0.979910028,0,0,0,4,0,0% +4/13/2018 9:00,131.6115449,16.75809483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297054792,0.292483931,0.673763218,-0.673763218,0.414933393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777058411,140.9920298,0.777058411,39.00797025,0,0.985654773,0,0,0,4,1,0% +4/13/2018 10:00,126.4335287,34.66899396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20668136,0.605088093,1.105203145,-1.105203145,0.341152821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782565236,141.4960498,0.782565236,38.50395024,0,0.986107563,0,0,0,4,2,0% +4/13/2018 11:00,118.4644585,49.50340781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067594848,0.863997457,1.727728868,-1.727728868,0.234694652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729509758,136.8453111,0.729509758,43.15468889,0,0.981460821,0,0,0,4,3,0% +4/13/2018 12:00,108.6771106,61.65956665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896773401,1.076162453,2.926976178,-2.926976178,0.029611284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621504005,128.4260482,0.621504005,51.57395177,0,0.969549995,0,0,0,4,4,0% +4/13/2018 13:00,97.78199737,71.98524896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706617803,1.256379607,7.312884281,-7.312884281,0,#DIV/0!,0,0,0.418747658,1,0.135902048,0,0.947059835,0.985821798,0.724496596,1,0,0,0.059766,0.312029739,0.844536196,0.569032792,0.961238037,0.922476074,0,0,0,0,0,0,-0.46590528,117.768826,0.46590528,62.23117402,0,0.942682049,0,0,0,4,5,0% +4/13/2018 14:00,86.05939739,81.30850648,17.87882304,101.914144,10.87505052,10.68190575,0,10.68190575,10.54712763,0.13477812,32.18061679,27.51776625,4.662850538,0.327922898,4.33492764,1.502019837,1.419101148,-14.23508154,14.23508154,0,0.608264342,0.081980724,2.636781907,1,0.490963587,0,0.070133766,0.961238037,1,0.544938188,0.820441592,10.13830025,0.224686032,0.115824807,0.108704402,0.724496596,0.448993192,0.989005356,0.950243393,0.059394756,2.555764424,10.19769501,2.780450455,0,14.00754503,-0.270009296,105.66482,0.270009296,74.33517999,0,0.86482119,10.19769501,14.89447222,19.94582919,4,6,96% +4/13/2018 15:00,74.38583869,90.38850472,203.8078143,555.0622262,54.40844832,54.30422225,0,54.30422225,52.76783286,1.536389393,82.04886694,30.99268728,51.05617966,1.640615463,49.41556419,1.298277802,1.577577013,-3.354016509,3.354016509,0.896275707,0.266959579,1.419571409,45.65829627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.72244807,1.188620318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.028474654,43.88849107,51.75092272,45.07711139,0,30.99268728,-0.055836419,93.20085587,0.055836419,86.79914413,0,0,51.75092272,45.07711139,81.25299058,4,7,57% +4/13/2018 16:00,62.6180026,100.0380947,418.2420187,742.1982856,76.88958475,203.3581936,125.6342285,77.72396508,74.57108008,3.152885003,103.7261243,0,103.7261243,2.318504673,101.4076197,1.092890316,1.745994131,-1.671375791,1.671375791,0.815975783,0.183839933,2.679343062,86.17688305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.68055862,1.679748743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.941174927,82.83649788,73.62173355,84.51624662,125.6342285,0,0.169273132,80.25443987,-0.169273132,99.74556013,0.754619396,0,168.4277592,84.51624662,223.7419523,4,8,33% +4/13/2018 17:00,51.22231684,111.3535896,610.6707262,829.0105362,91.4612535,415.2802498,321.9733967,93.30685313,88.70335925,4.603493883,150.8220819,0,150.8220819,2.757894249,148.0641877,0.893998079,1.943486772,-0.934360973,0.934360973,0.689938827,0.149771799,3.38990815,109.0310988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.2650429,1.998084995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.455976915,104.8048394,87.72101982,106.8029244,321.9733967,0,0.388382756,67.14609288,-0.388382756,112.8539071,0.92126102,0,384.3425596,106.8029244,454.2429375,4,9,18% +4/13/2018 18:00,40.81923688,126.0829493,762.9244772,874.0749864,101.4458296,616.6836429,512.5455324,104.1381105,98.38686351,5.75124697,188.0388384,0,188.0388384,3.058966057,184.9798723,0.712430082,2.200562596,-0.481972874,0.481972874,0.612575905,0.132969688,3.819354608,122.8435732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57319553,2.216210495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.767109412,118.0819151,97.34030494,120.2981256,512.5455324,0,0.586386226,54.09901901,-0.586386226,125.900981,0.964731967,0,591.8093646,120.2981256,670.5420819,4,10,13% +4/13/2018 19:00,32.60406324,146.8700972,863.2192106,896.9803918,107.5902031,783.3615856,672.508313,110.8532726,104.3459615,6.507311035,212.5417332,0,212.5417332,3.24424159,209.2974916,0.569048253,2.56336677,-0.145297322,0.145297322,0.555000995,0.124638333,3.972485169,127.7687784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3013072,2.350441988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.878051982,122.8162097,103.1793592,125.1666517,672.508313,0,0.74974695,41.43153733,-0.74974695,138.5684627,0.983310832,0,764.4640683,125.1666517,846.3831384,4,11,11% +4/13/2018 20:00,28.67286634,175.1400304,904.2208423,905.1919554,110.0294212,898.6208436,785.0928167,113.5280269,106.7116282,6.816398654,222.5566049,0,222.5566049,3.317793016,219.2388119,0.500435924,3.056770183,0.142830598,-0.142830598,0.505728219,0.121684235,3.857218015,124.0613905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.575276,2.403729746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794541322,119.2525274,105.3698174,121.6562572,785.0928167,0,0.867321911,29.8510959,-0.867321911,150.1489041,0.992351278,0,884.4576771,121.6562572,964.0792643,4,12,9% +4/13/2018 21:00,30.76420384,204.9716071,882.9958726,901.0157236,108.7714117,951.085932,838.9379838,112.1479482,105.4915523,6.656395867,217.3724317,0,217.3724317,3.279859386,214.0925723,0.536936649,3.577429417,0.420713063,-0.420713063,0.458207518,0.123184507,3.494261421,112.3874587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4024926,2.37624696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531580505,108.0311002,103.9340731,110.4073472,838.9379838,0,0.93110249,21.39266966,-0.93110249,158.6073303,0.996300219,0,939.76817,110.4073472,1012.027571,4,13,8% +4/13/2018 22:00,37.87197565,228.2200021,801.0869398,883.3089468,103.8165945,934.1702902,827.4452174,106.7250728,100.6861411,6.038931733,197.3632566,0,197.3632566,3.130453366,194.2328032,0.660990669,3.983190455,0.722178194,-0.722178194,0.406653945,0.129594666,2.920115951,93.92096683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.78334862,2.268002807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115614066,90.28040577,98.89896268,92.54840858,827.4452174,0,0.936756296,20.48623524,-0.936756296,159.5137648,0.996624325,0,923.5509936,92.54840858,984.1220761,4,14,7% +4/13/2018 23:00,47.74109589,244.5705431,664.4661486,846.663401,95.1003922,845.6281356,748.3863446,97.24179099,92.23276449,5.0090265,163.9751384,0,163.9751384,2.867627708,161.1075106,0.833239312,4.26856123,1.095632678,-1.095632678,0.342789467,0.143123005,2.188200307,70.38004377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65764147,2.077586513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.585343674,67.65197511,90.24298515,69.72956162,748.3863446,0,0.883924289,27.88056678,-0.883924289,152.1194332,0.993434069,0,833.7154769,69.72956162,879.3520804,4,15,5% +4/13/2018 0:00,58.89599633,256.7506514,483.4753856,776.8222081,82.17434543,686.3546064,603.013479,83.34112741,79.69648573,3.644641678,119.7020644,0,119.7020644,2.477859706,117.2242047,1.027929052,4.481144223,1.645966122,-1.645966122,0.248676905,0.169965934,1.371756518,44.12040501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.60729349,1.795200922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993832928,42.4102115,77.60112641,44.20541242,603.013479,0,0.776256745,39.08088721,-0.776256745,140.9191128,0.985588321,0,671.924169,44.20541242,700.8557273,4,16,4% +4/13/2018 1:00,70.58071604,266.8025376,273.6693355,633.6529348,62.99331255,456.7942862,393.6374194,63.15686681,61.09383176,2.06303505,68.25377963,0,68.25377963,1.899480794,66.35429883,1.231865883,4.656582734,2.715502195,-2.715502195,0.065775465,0.230180383,0.57933248,18.63332398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.72571491,1.376167369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.419724409,17.91105977,59.14543931,19.28722713,393.6374194,0,0.621219279,51.59477253,-0.621219279,128.4052275,0.969513123,0,440.7820829,19.28722713,453.4051873,4,17,3% +4/13/2018 2:00,82.33371689,275.9842115,66.3217216,284.7376226,28.3368692,150.4357158,122.4533466,27.98236919,27.48240804,0.499961152,16.93493041,0,16.93493041,0.854461158,16.08046925,1.436994445,4.816833175,6.678112282,-6.678112282,0,0.427263776,0.21361529,6.87060201,0.37960287,1,0.14863851,0,0.945510858,0.984272822,0.724496596,1,26.64580696,0.6190542,0.055034655,0.312029739,0.855815799,0.580312395,0.961238037,0.922476074,0.146303889,6.604283988,26.79211085,7.223338188,75.96970481,0,0.430056785,64.52883607,-0.430056785,115.4711639,0.933736284,0,97.7277807,7.223338188,102.4553111,4,18,5% +4/13/2018 3:00,94.07348585,285.1682217,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641892067,4.97712439,-11.47870037,11.47870037,0,#DIV/0!,0,0,1,0.330264634,0,0.08689848,0.961238037,1,0.507790949,0.783294353,0,0,0.115824807,0.066752964,0.724496596,0.448993192,0.993579719,0.954817755,0,0,0,0,0,0,0.212131135,77.75272847,-0.212131135,102.2472715,0.814296741,0,0,0,0,4,19,0% +4/13/2018 4:00,105.1783131,295.1114426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835707865,5.150666333,-2.601409523,2.601409523,0.975020919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.013080241,90.74946396,0.013080241,89.25053604,0,0,0,0,0,4,20,0% +4/13/2018 5:00,115.3368256,306.6089827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013007355,5.351336264,-1.162339944,1.162339944,0.728925527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232006599,103.4152374,0.232006599,76.58476256,0,0.834488888,0,0,0,4,21,0% +4/13/2018 6:00,123.9210125,320.5128878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162829681,5.594005186,-0.496048397,0.496048397,0.614982961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429717107,115.4496084,0.429717107,64.55039161,0,0.933644381,0,0,0,4,22,0% +4/13/2018 7:00,130.0368299,337.4267846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269570831,5.889208375,-0.053435158,0.053435158,0.53929164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592728849,126.3508957,0.592728849,53.64910431,0,0.965644396,0,0,0,4,23,0% +4/14/2018 8:00,132.6730721,356.8731189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315581937,6.228610936,0.31484121,-0.31484121,0.476312672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709925415,135.2288472,0.709925415,44.7711528,0,0.979570066,0,0,0,4,0,0% +4/14/2018 9:00,131.245922,16.72681292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290673468,0.291937959,0.681986557,-0.681986557,0.41352712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77331411,140.652433,0.77331411,39.34756702,0,0.98534322,0,0,0,4,1,0% +4/14/2018 10:00,126.0839794,34.53335658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200580574,0.602720774,1.117550719,-1.117550719,0.339041261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778570279,141.1298573,0.778570279,38.87014272,0,0.985779722,0,0,0,4,2,0% +4/14/2018 11:00,118.1404902,49.30963115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061940534,0.860615416,1.749066232,-1.749066232,0.231045748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72533171,136.4964492,0.72533171,43.50355078,0,0.981066022,0,0,0,4,3,0% +4/14/2018 12:00,108.3775481,61.43772771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89154505,1.072290634,2.97650042,-2.97650042,0.021142139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617223105,128.1136332,0.617223105,51.88636677,0,0.968992015,0,0,0,4,4,0% +4/14/2018 13:00,97.50117629,71.74854451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701716551,1.252248335,7.591012997,-7.591012997,0,#DIV/0!,0,0,0.434384657,1,0.130980518,0,0.947648484,0.986410447,0.724496596,1,0,0,0.061614892,0.312029739,0.840176732,0.564673327,0.961238037,0.922476074,0,0,0,0,0,0,-0.46160893,117.4909777,0.46160893,62.50902234,0,0.941683205,0,0,0,4,5,0% +4/14/2018 14:00,85.7993371,81.06015964,20.47812084,114.1723036,12.11502976,11.90408964,0,11.90408964,11.74971691,0.154372725,35.69272192,30.36225159,5.330470332,0.365312847,4.965157485,1.497480928,1.414766678,-13.36236658,13.36236658,0,0.591608471,0.091328212,2.937429228,1,0.44911259,0,0.0746978,0.961238037,1,0.534602847,0.810106251,11.29427482,0.250741314,0.115824807,0.097037903,0.724496596,0.448993192,0.990318666,0.951556703,0.066166979,2.846266666,11.3604418,3.09700798,0,16.72618216,-0.265933599,105.4224348,0.265933599,74.57756523,0,0.861983141,11.3604418,17.51469501,22.82345939,4,6,101% +4/14/2018 15:00,74.12173009,90.12684619,208.5870928,561.0149124,55.09652784,55.00758186,0,55.00758186,53.43516424,1.572417613,81.2887378,29.05301862,52.23571918,1.661363599,50.57435558,1.293668237,1.57301021,-3.300901298,3.300901298,0.905358943,0.264141597,1.46291065,47.05223521,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.36391238,1.203652272,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.059873786,45.2283982,52.42378616,46.43205048,0,29.05301862,-0.051786535,92.96847776,0.051786535,87.03152224,0,0,52.42378616,46.43205048,82.81263456,4,7,58% +4/14/2018 16:00,62.34851215,99.76007839,422.9713661,744.7364059,77.34499469,207.1178543,128.9165598,78.20129455,75.01275772,3.188536822,104.8865417,0,104.8865417,2.332236962,102.5543047,1.088186821,1.74114183,-1.656915946,1.656915946,0.813503004,0.182861066,2.70262308,86.92564847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10511597,1.68969774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958041222,83.55623969,74.06315719,85.24593743,128.9165598,0,0.173103609,80.03168126,-0.173103609,99.96831874,0.761155647,0,172.1887247,85.24593743,227.9804858,4,8,32% +4/14/2018 17:00,50.93712447,111.0602599,615.1152423,830.38032,91.83211761,419.1501815,325.4501425,93.70003896,89.06304044,4.636998522,151.9108892,0,151.9108892,2.76907717,149.1418121,0.889020534,1.938367203,-0.929049662,0.929049662,0.689030539,0.149292541,3.4103082,109.6872346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.61078215,2.006186984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.470756682,105.435542,88.08153883,107.441729,325.4501425,0,0.391929017,66.92541816,-0.391929017,113.0745818,0.922425879,0,388.2851725,107.441729,458.6036353,4,9,18% +4/14/2018 18:00,40.50556033,125.7959558,767.0336022,874.9490537,101.7722702,620.3636135,515.8779295,104.485684,98.70346073,5.78222329,189.0449867,0,189.0449867,3.068809445,185.9761773,0.706955393,2.195553614,-0.480208772,0.480208772,0.612274226,0.132682936,3.83777042,123.4358889,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.87752082,2.223341997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780451605,118.6512716,97.65797243,120.8746136,515.8779295,0,0.589609106,53.87072591,-0.589609106,126.1292741,0.965198053,0,595.5823457,120.8746136,674.6923628,4,10,13% +4/14/2018 19:00,32.2538731,146.6775654,866.9969512,897.6192178,107.8877856,786.7460327,675.5756726,111.1703601,104.6345708,6.535789239,213.4666634,0,213.4666634,3.2532148,210.2134486,0.562936282,2.560006454,-0.145412771,0.145412771,0.555020738,0.124438483,3.989401847,128.3128769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5787294,2.356943048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890308058,123.3392179,103.4690375,125.6961609,675.5756726,0,0.75263058,41.18123643,-0.75263058,138.8187636,0.983566345,0,767.9425329,125.6961609,850.2081563,4,11,11% +4/14/2018 20:00,28.30970123,175.2163384,907.7030374,905.7232567,110.3069369,901.6885427,787.8651181,113.8234246,106.9807757,6.842648911,223.4092716,0,223.4092716,3.326161136,220.0831104,0.494097497,3.058102008,0.141379822,-0.141379822,0.505976316,0.121523155,3.873018883,124.5696007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8339909,2.40979242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805988997,119.7410384,105.6399798,122.1508309,787.8651181,0,0.869874006,29.55599846,-0.869874006,150.4440015,0.992520411,0,887.612191,122.1508309,967.5574668,4,12,9% +4/14/2018 21:00,30.44652227,205.3241173,886.2415307,901.5232831,109.0360524,953.8690801,841.440004,112.4290762,105.7482131,6.680863008,218.1673589,0,218.1673589,3.287839281,214.8795197,0.531392059,3.583581881,0.417973745,-0.417973745,0.45867597,0.123031982,3.509297921,112.8710843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6492048,2.382028367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542474397,108.4959794,104.1916792,110.8780078,841.440004,0,0.933353602,21.03623473,-0.933353602,158.9637653,0.996429735,0,942.6275192,110.8780078,1015.194958,4,13,8% +4/14/2018 22:00,37.62028382,228.6512557,804.1712873,883.876256,104.0762477,936.7457129,829.7455652,107.0001477,100.9379648,6.062182847,198.1189218,0,198.1189218,3.138282869,194.980639,0.656597818,3.990717251,0.717786005,-0.717786005,0.407405053,0.129420497,2.934696569,94.3899296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.02541116,2.273675255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126177674,90.73119063,99.15158883,93.00486589,829.7455652,0,0.938757614,20.1560502,-0.938757614,159.8439498,0.996738115,0,926.1906195,93.00486589,987.0604441,4,14,7% +4/14/2018 23:00,47.53705609,244.9795043,667.4722148,847.422389,95.36614716,848.1214912,750.5992978,97.52219345,92.49050596,5.031687497,164.7120074,0,164.7120074,2.8756412,161.8363662,0.829678145,4.27569895,1.088534211,-1.088534211,0.344003376,0.14287658,2.202520216,70.84062127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90539237,2.083392261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.595718399,68.09469971,90.50111077,70.17809198,750.5992978,0,0.885744002,27.65678213,-0.885744002,152.3432179,0.993550281,0,836.259254,70.17809198,882.1894116,4,15,5% +4/14/2018 0:00,58.71829738,257.1226535,486.4793554,778.0738641,82.46744696,688.9700689,605.3220328,83.64803603,79.98074916,3.667286871,120.4392498,0,120.4392498,2.486697798,117.952552,1.024827621,4.487636885,1.633193512,-1.633193512,0.25086115,0.169518904,1.385700284,44.56888445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.88053831,1.80160409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.003935139,42.841307,77.88447345,44.64291109,605.3220328,0,0.777975024,38.92445743,-0.777975024,141.0755426,0.985730585,0,674.5689147,44.64291109,703.7868072,4,16,4% +4/14/2018 1:00,70.41354397,267.1458606,276.6912269,636.3286948,63.37547741,459.9328526,396.3825643,63.55028827,61.46447293,2.085815343,68.99799586,0,68.99799586,1.911004474,67.08699139,1.22894818,4.662574851,2.68552548,-2.68552548,0.070901785,0.229047658,0.591765742,19.03322045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.0819893,1.384516236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.428732266,18.29545546,59.51072156,19.6799717,396.3825643,0,0.62292109,51.47023684,-0.62292109,128.5297632,0.969733011,0,443.8959794,19.6799717,456.7761273,4,17,3% +4/14/2018 2:00,82.16646619,276.3097243,68.87121016,292.0878168,29.06098157,154.8289782,126.1251121,28.70386602,28.18468575,0.519180274,17.57491808,0,17.57491808,0.876295818,16.69862227,1.43407537,4.822514444,6.515598199,-6.515598199,0,0.421961245,0.219073954,7.046171437,0.368718443,1,0.15228952,0,0.945060045,0.983822008,0.724496596,1,27.32589153,0.634873337,0.053692262,0.312029739,0.859048445,0.583545041,0.961238037,0.922476074,0.15009375,6.773048,27.47598528,7.407921337,79.62045719,0,0.431805453,64.41780658,-0.431805453,115.5821934,0.934207113,0,101.8579827,7.407921337,106.7063191,4,18,5% +4/14/2018 3:00,93.89181429,285.4847393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6387213,4.982648665,-11.96934562,11.96934562,0,#DIV/0!,0,0,1,0.365897595,0,0.083353179,0.961238037,1,0.515459326,0.79096273,0,0,0.115824807,0.075419237,0.724496596,0.448993192,0.992668503,0.95390654,0,0,0,0,0,0,0.214075054,77.63873159,-0.214075054,102.3612684,0.816437055,0,0,0,0,4,19,0% +4/14/2018 4:00,104.9742588,295.4238208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832146447,5.156118361,-2.624080955,2.624080955,0.978897962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010904903,90.62481729,0.010904903,89.37518271,0,0,0,0,0,4,20,0% +4/14/2018 5:00,115.1000304,306.914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008874499,5.356670658,-1.16534485,1.16534485,0.729439396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229543564,103.270201,0.229543564,76.72979905,0,0.832176424,0,0,0,4,21,0% +4/14/2018 6:00,123.6423282,320.7944725,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157965722,5.598919768,-0.494328536,0.494328536,0.614688848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426929944,115.2728839,0.426929944,64.72711612,0,0.932884767,0,0,0,4,22,0% +4/14/2018 7:00,129.7136189,337.6443875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263929735,5.893006263,-0.049483195,0.049483195,0.538615814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58960348,126.128875,0.58960348,53.87112499,0,0.965197244,0,0,0,4,23,0% +4/15/2018 8:00,132.3172851,356.9753519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309372282,6.230395239,0.320665769,-0.320665769,0.475316613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706471086,134.9485137,0.706471086,45.0514863,0,0.979225695,0,0,0,4,0,0% +4/15/2018 9:00,130.8831644,16.69467524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284342155,0.29137705,0.690241038,-0.690241038,0.41211552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769562757,140.3146411,0.769562757,39.68535893,0,0.985028041,0,0,0,4,1,0% +4/15/2018 10:00,125.7372904,34.39866342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194529711,0.600369935,1.129977888,-1.129977888,0.33691609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774574341,140.7664568,0.774574341,39.23354318,0,0.985448417,0,0,0,4,2,0% +4/15/2018 11:00,117.8192556,49.11740578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056333933,0.857260451,1.770639276,-1.770639276,0.22735654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721160524,136.1503788,0.721160524,43.84962125,0,0.980667309,0,0,0,4,3,0% +4/15/2018 12:00,108.0806708,61.21741575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886363564,1.068445464,3.027088467,-3.027088467,0.012491074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612958144,127.8037047,0.612958144,52.19629525,0,0.968428362,0,0,0,4,4,0% +4/15/2018 13:00,97.2231029,71.51312111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696863255,1.248139422,7.887476326,-7.887476326,0,#DIV/0!,0,0,0.450151929,1,0.126110437,0,0.948225528,0.986987491,0.724496596,1,0,0,0.063456063,0.312029739,0.835862482,0.560359078,0.961238037,0.922476074,0,0,0,0,0,0,-0.457338207,117.2154798,0.457338207,62.78452019,0,0.940671719,0,0,0,4,5,0% +4/15/2018 14:00,85.54137017,80.81276263,23.19970612,126.5705293,13.36020741,13.13223705,0,13.13223705,12.95734786,0.174889184,39.17419563,33.14629874,6.027896892,0.402859547,5.625037345,1.492978556,1.410448786,-12.5968912,12.5968912,0,0.575878304,0.100714887,3.239336966,1,0.406298798,0,0.079218535,0.961238037,1,0.524529441,0.800032845,12.45509562,0.277206101,0.115824807,0.085664283,0.724496596,0.448993192,0.991568539,0.952806575,0.072967593,3.137477682,12.52806322,3.414683782,0,19.67899741,-0.261880067,105.181648,0.261880067,74.81835202,0,0.859072907,12.52806322,20.32037729,25.82734375,4,6,106% +4/15/2018 15:00,73.860707,89.86570888,213.3147906,566.7673304,55.76850184,55.69493274,0,55.69493274,54.08687575,1.608056996,80.48250236,27.0802356,53.40226676,1.681626094,51.72064066,1.289112525,1.568452505,-3.250042809,3.250042809,0.914056257,0.261437576,1.505985869,48.43768234,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.99036226,1.218332381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091081636,46.56014268,53.0814439,47.77847506,0,27.0802356,-0.047780163,92.73864441,0.047780163,87.26135559,0,0,53.0814439,47.77847506,84.35150026,4,7,59% +4/15/2018 16:00,62.08240412,99.48194751,427.6312906,747.1976968,77.7924309,210.8365644,132.1661971,78.67036738,75.44670208,3.223665301,106.0298862,0,106.0298862,2.345728815,103.6841574,1.08354236,1.73628753,-1.642888556,1.642888556,0.811104179,0.18191473,2.72550299,87.66154503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52223979,1.699472541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.974617639,84.26361145,74.49685743,85.96308399,132.1661971,0,0.176882501,79.81177334,-0.176882501,100.1882267,0.767326475,0,175.9114795,85.96308399,232.1725987,4,8,32% +4/15/2018 17:00,50.65557377,110.7657538,619.4851521,831.7099331,92.19710194,422.9599207,328.8729608,94.08695989,89.41701914,4.669940748,152.9814301,0,152.9814301,2.780082795,150.2013473,0.884106547,1.933227102,-0.92388174,0.92388174,0.688146772,0.14882859,3.4303491,110.3318188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95103994,2.014160521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485276246,106.0551409,88.43631619,108.0693014,328.8729608,0,0.395417859,66.70796261,-0.395417859,113.2920374,0.923551488,0,392.1674284,108.0693014,462.8966248,4,9,18% +4/15/2018 18:00,40.19560941,125.5060785,771.0673287,875.7971201,102.0936502,623.9749444,519.1471632,104.8277812,99.01514993,5.812631224,190.0327012,0,190.0327012,3.078500238,186.9542009,0.701545729,2.190494302,-0.478502109,0.478502109,0.611982369,0.132405623,3.855855921,124.0175808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17712834,2.230362943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793554489,119.2104159,97.97068283,121.4407789,519.1471632,0,0.592771033,53.64610334,-0.592771033,126.3538967,0.965650399,0,599.2853482,121.4407789,678.7659092,4,10,13% +4/15/2018 19:00,31.90702853,146.4808104,870.7016756,898.2385589,108.1808035,790.0587786,678.5763084,111.4824702,104.9187531,6.563717016,214.3737522,0,214.3737522,3.262050371,211.1117019,0.556882702,2.556572433,-0.145549434,0.145549434,0.555044109,0.124245544,4.006019594,128.8473607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8518963,2.363344389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902347559,123.8529841,103.7542439,126.2163285,678.5763084,0,0.755452214,40.93510102,-0.755452214,139.064899,0.983814477,0,771.3474398,126.2163285,853.9535024,4,11,11% +4/15/2018 20:00,27.94930697,175.2914916,911.1172881,906.2382328,110.5803111,904.6853648,790.5710711,114.1142937,107.2459067,6.868386975,224.2453394,0,224.2453394,3.334404378,220.910935,0.48780743,3.059413679,0.139928463,-0.139928463,0.506224513,0.121367811,3.888557639,125.0693805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0888448,2.415764621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.817246772,120.2214458,105.9060916,122.6372104,790.5710711,0,0.872365613,29.26528644,-0.872365613,150.7347136,0.992684582,0,890.6938046,122.6372104,970.9574061,4,12,9% +4/15/2018 21:00,30.13172997,205.678572,889.4265518,902.0157661,109.2969695,956.5853339,843.8791983,112.7061356,106.0012626,6.704873043,218.9474718,0,218.9474718,3.295706893,215.6517649,0.525897897,3.589768283,0.415250631,-0.415250631,0.459141649,0.122884761,3.524114116,113.347624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8924456,2.387728425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.553208681,108.9540476,104.4456542,111.341776,843.8791983,0,0.935548169,20.68311337,-0.935548169,159.3168866,0.996555398,0,945.4180241,111.341776,1018.28899,4,13,8% +4/15/2018 22:00,37.37132417,229.0827417,807.2040101,884.4281594,104.3325854,939.2606957,831.9890779,107.2716178,101.186573,6.085044793,198.8619701,0,198.8619701,3.146012396,195.7159577,0.652252653,3.998248103,0.713430566,-0.713430566,0.408149877,0.129251817,2.949102241,94.85326556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26438277,2.279275271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136614535,91.17656677,99.40099731,93.45584204,831.9890779,0,0.940708489,19.82911964,-0.940708489,160.1708804,0.996848572,0,928.7681211,93.45584204,989.9331006,4,14,7% +4/15/2018 23:00,47.33513838,245.3870436,670.4367951,848.1634655,95.62892218,850.5623754,752.7629823,97.7993931,92.74535734,5.054035755,165.4387279,0,165.4387279,2.883564837,162.555163,0.826154017,4.282811852,1.081509314,-1.081509314,0.345204704,0.142636745,2.216713091,71.29711289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.15036522,2.089132908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606001088,68.53349683,90.75636631,70.62262974,752.7629823,0,0.887521112,27.43661497,-0.887521112,152.563385,0.993663312,0,838.7493245,70.62262974,884.9704232,4,15,6% +4/15/2018 0:00,58.54208293,257.4924761,489.4526424,779.3000599,82.75762767,691.5407651,607.5888845,83.95188062,80.26217986,3.689700764,121.1689076,0,121.1689076,2.495447817,118.6734598,1.021752098,4.494091507,1.620589534,-1.620589534,0.253016557,0.169081992,1.399569935,45.0149801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.1510602,1.807943449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013983654,43.2701111,78.16504385,45.07805455,607.5888845,0,0.779659743,38.77056765,-0.779659743,141.2294324,0.98586946,0,677.1683696,45.07805455,706.6710547,4,16,4% +4/15/2018 1:00,70.2473346,267.4866349,279.6946164,638.9534089,63.75360221,463.0293252,399.0896732,63.93965204,61.83119588,2.108456162,69.73760428,0,69.73760428,1.922406332,67.81519795,1.22604728,4.668522485,2.656128499,-2.656128499,0.075928965,0.227940041,0.604202896,19.43324207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.43449734,1.392776844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437742941,18.67997146,59.87224029,20.0727483,399.0896732,0,0.62459902,51.34723735,-0.62459902,128.6527627,0.969948642,0,446.9687267,20.0727483,460.105939,4,17,3% +4/15/2018 2:00,81.99972536,276.6323968,71.43524309,299.3247321,29.7758711,159.1860559,129.7695282,29.41652776,28.87801873,0.538509037,18.21815411,0,18.21815411,0.897852375,17.32030173,1.431165193,4.828146143,6.360214306,-6.360214306,0,0.416823263,0.224463094,7.219504682,0.357948317,1,0.155950712,0,0.944604948,0.983366911,0.724496596,1,27.99701193,0.650490989,0.052352204,0.312029739,0.862289724,0.58678632,0.961238037,0.922476074,0.153847521,6.939662507,28.15085945,7.590153496,83.31874397,0,0.433540948,64.30751157,-0.433540948,115.6924884,0.93467064,0,106.0264432,7.590153496,110.9940469,4,18,5% +4/15/2018 3:00,93.7104944,285.7980542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635556671,4.988117042,-12.50687453,12.50687453,0,#DIV/0!,0,0,1,0.400822742,0,0.079786292,0.961238037,1,0.523275864,0.798779268,0,0,0.115824807,0.084248601,0.724496596,0.448993192,0.991721998,0.952960035,0,0,0,0,0,0,0.216013162,77.52502591,-0.216013162,102.4749741,0.818532623,0,0,0,0,4,19,0% +4/15/2018 4:00,104.770477,295.7324798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828589782,5.161505478,-2.647382457,2.647382457,0.982882753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008728,90.50008392,0.008728,89.49991608,0,0,0,0,0,4,20,0% +4/15/2018 5:00,114.8636506,307.2158523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004748893,5.361928137,-1.168449862,1.168449862,0.729970384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227073458,103.124835,0.227073458,76.87516503,0,0.829806938,0,0,0,4,21,0% +4/15/2018 6:00,123.3645168,321.0709825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153116999,5.603745778,-0.49263674,0.49263674,0.614399534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424132452,115.0957628,0.424132452,64.90423717,0,0.932112298,0,0,0,4,22,0% +4/15/2018 7:00,129.3920755,337.8569503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258317744,5.896716183,-0.045537713,0.045537713,0.537941097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586466998,125.9066944,0.586466998,54.09330557,0,0.964743711,0,0,0,4,23,0% +4/16/2018 8:00,131.964021,357.0741473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303206661,6.232119544,0.326497936,-0.326497936,0.474319254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703007386,134.6687878,0.703007386,45.33121223,0,0.978876992,0,0,0,4,0,0% +4/16/2018 9:00,130.5233772,16.66165841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278062683,0.290800798,0.698523468,-0.698523468,0.410699141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765806186,139.9787673,0.765806186,40.02123271,0,0.984709329,0,0,0,4,1,0% +4/16/2018 10:00,125.3935724,34.26488035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188530699,0.59803498,1.142480419,-1.142480419,0.334778031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770579458,140.4059522,0.770579458,39.59404777,0,0.985113765,0,0,0,4,2,0% +4/16/2018 11:00,117.5008674,48.92671543,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05077701,0.853932276,1.792443066,-1.792443066,0.223627872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716998358,135.8072121,0.716998358,44.1927879,0,0.980264833,0,0,0,4,3,0% +4/16/2018 12:00,107.7865887,60.99863775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881230863,1.064627068,3.078753137,-3.078753137,0.003655895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608711312,127.4963807,0.608711312,52.50361935,0,0.967859256,0,0,0,4,4,0% +4/16/2018 13:00,96.94788214,71.27900518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692059746,1.244053328,8.204004687,-8.204004687,0,#DIV/0!,0,0,0.466044071,1,0.121293343,0,0.948790945,0.987552908,0.724496596,1,0,0,0.065288741,0.312029739,0.831594912,0.556091508,0.961238037,0.922476074,0,0,0,0,0,0,-0.453095241,116.9424455,0.453095241,63.05755452,0,0.939647925,0,0,0,4,5,0% +4/16/2018 14:00,85.28569104,80.56635764,25.97580475,138.3601655,14.60434184,14.35978364,0,14.35978364,14.16396705,0.195816588,42.41498313,35.67647374,6.738509391,0.440374791,6.2981346,1.488516114,1.406148207,-11.92053032,11.92053032,0,0.562228658,0.110093698,3.540991762,1,0.362523157,0,0.083692927,0.961238037,1,0.514720104,0.790223508,13.61494388,0.304011479,0.115824807,0.074584023,0.724496596,0.448993192,0.992757091,0.953995128,0.079762509,3.427847293,13.69470639,3.731858772,0,22.74292583,-0.257852205,104.9426577,0.257852205,75.05734234,0,0.856090469,13.69470639,23.20186082,28.87986026,4,6,111% +4/16/2018 15:00,73.60286831,89.60514875,217.8430171,571.4382974,56.52973911,56.46735158,0,56.46735158,54.8251589,1.64219268,79.56304679,25.03990498,54.52314181,1.704580207,52.8185616,1.284612391,1.563904872,-3.201325889,3.201325889,0.922387341,0.259497595,1.54781199,49.78295417,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.70002811,1.234962557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.121384518,47.85326914,53.82141263,49.08823169,0,25.03990498,-0.043819088,92.51145295,0.043819088,87.48854705,0,0,53.82141263,49.08823169,85.94867851,4,7,60% +4/16/2018 16:00,61.81977605,99.20376986,432.0466592,748.8838074,78.38886594,214.5367624,135.2546597,79.28210262,76.02515241,3.256950215,107.1184281,0,107.1184281,2.363713532,104.7547146,1.078958635,1.731432414,-1.629283004,1.629283004,0.808777493,0.181436112,2.747146836,88.3576855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.07826825,1.712502408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990298531,84.93276815,75.06856678,86.64527056,135.2546597,0,0.180608338,79.59480424,-0.180608338,100.4051958,0.773157853,0,179.6417691,86.64527056,236.3493658,4,8,32% +4/16/2018 17:00,50.37776778,110.4701419,623.5935154,832.4229058,92.73834886,426.6531903,332.0103335,94.6428568,89.94194548,4.700911326,153.9938709,0,153.9938709,2.796403386,151.1974675,0.879257918,1.928067701,-0.918855725,0.918855725,0.687287273,0.148716025,3.449494258,110.9475929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.4556191,2.025984734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.499146848,106.6470464,88.95476595,108.6730311,332.0103335,0,0.398848147,66.49380969,-0.398848147,113.5061903,0.924639006,0,395.9444708,108.6730311,467.0687962,4,9,18% +4/16/2018 18:00,39.88949871,125.2133543,774.8328997,876.1144274,102.6054518,627.4039113,522.0513748,105.3525366,99.51151888,5.841017688,190.9611402,0,190.9611402,3.093932946,187.8672072,0.69620309,2.185385299,-0.476852928,0.476852928,0.611700343,0.132422683,3.873295799,124.5785073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.65425705,2.241543887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806189621,119.7495998,98.46044667,121.9911436,522.0513748,0,0.595871222,53.42523549,-0.595871222,126.5747645,0.966089252,0,602.8086688,121.9911436,682.6494325,4,10,13% +4/16/2018 19:00,31.56364916,146.2797536,874.1378466,898.3721605,108.6715811,793.1403797,681.1560274,111.9843523,105.394732,6.589620325,215.2216905,0,215.2216905,3.276849126,211.9448413,0.550889602,2.55306333,-0.145707649,0.145707649,0.555071165,0.124318586,4.022199397,129.3677588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3094253,2.374066037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.914069771,124.3532105,104.223495,126.7272766,681.1560274,0,0.758211415,40.69322706,-0.758211415,139.3067729,0.984055332,0,774.5187158,126.7272766,857.4591838,4,11,11% +4/16/2018 20:00,27.59178066,175.3653508,914.267218,906.2846256,111.0543138,907.4124653,792.8147164,114.5977489,107.7056164,6.892132477,225.0233693,0,225.0233693,3.348697306,221.674672,0.481567419,3.060702765,0.13847616,-0.13847616,0.506472871,0.121468113,3.903846368,125.5611186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5307353,2.426119799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.828323404,120.6941231,106.3590587,123.1202429,792.8147164,0,0.874796608,28.97908661,-0.874796608,151.0209134,0.992843857,0,893.5002797,123.1202429,974.0800163,4,12,9% +4/16/2018 21:00,29.81989436,206.0348123,892.3553208,902.0333633,109.7576327,958.9993435,845.824357,113.1749865,106.4480352,6.726951341,219.6714765,0,219.6714765,3.30959759,216.3618789,0.520455339,3.595985849,0.412543386,-0.412543386,0.459604616,0.122997678,3.5388607,113.8219249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3219003,2.397792188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563892531,109.4099636,104.8857929,111.8077558,845.824357,0,0.937686333,20.33343285,-0.937686333,159.6665672,0.996677265,0,947.8996995,111.8077558,1021.07564,4,13,8% +4/16/2018 22:00,37.12512767,229.5142579,809.9920136,884.4741593,104.7836882,941.4436701,833.7135347,107.7301353,101.6240734,6.106061941,199.5515563,0,199.5515563,3.159614809,196.3919415,0.647955713,4.005779481,0.709111525,-0.709111525,0.408888477,0.129363853,2.963619547,95.32019202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68492479,2.289130174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147132274,91.62539425,99.83205706,93.91452442,833.7135347,0,0.942609262,19.50553112,-0.942609262,160.4944689,0.996955751,0,931.0075606,93.91452442,992.4727385,4,14,7% +4/16/2018 23:00,47.13535299,245.7929861,673.1718649,848.335494,96.07574625,852.6408529,754.387491,98.25336189,93.17870802,5.074653867,166.1153506,0,166.1153506,2.897038231,163.2183124,0.822667104,4.289896886,1.07455741,-1.07455741,0.34639355,0.142720977,2.231208086,71.76332177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.56691837,2.098894337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.616502663,68.98163454,91.18342104,71.08052888,754.387491,0,0.889256074,27.22008613,-0.889256074,152.7799139,0.993773226,0,840.8735119,71.08052888,887.3942964,4,15,6% +4/16/2018 0:00,58.36735938,257.8599785,492.2170197,779.8445137,83.21115807,693.7139667,609.3013923,84.41257444,80.70203464,3.710539807,121.8528385,0,121.8528385,2.509123432,119.3437151,1.018702597,4.500505634,1.608152314,-1.608152314,0.255143447,0.169053801,1.413954175,45.4776267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.57386534,1.817851385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.024404986,43.71482461,78.59827033,45.532676,609.3013923,0,0.781311379,38.61919868,-0.781311379,141.3808013,0.986005028,0,679.3725066,45.532676,709.1727323,4,16,4% +4/16/2018 1:00,70.08209993,267.8247422,282.5224532,640.7010185,64.25272686,465.6862809,401.2412372,64.44504366,62.31527007,2.12977359,70.43829649,0,70.43829649,1.937456782,68.50083971,1.223163391,4.67442357,2.627298619,-2.627298619,0.080859165,0.227425205,0.617410625,19.85804802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.89980787,1.403680843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.447311896,19.08831109,60.34711977,20.49199194,401.2412372,0,0.626253472,51.2257518,-0.626253472,128.7742482,0.970160123,0,449.6153679,20.49199194,463.0269668,4,17,3% +4/16/2018 2:00,81.83352108,276.9521247,73.91747953,305.5355122,30.51620963,163.1416958,132.9884413,30.1532545,29.59603332,0.557221184,18.84232501,0,18.84232501,0.920176313,17.9221487,1.428264381,4.833726447,6.211527481,-6.211527481,0,0.412841588,0.230044078,7.399008329,0.347292599,1,0.159621373,0,0.944145639,0.982907602,0.724496596,1,28.69175194,0.666664607,0.051014719,0.312029739,0.865538977,0.590035573,0.961238037,0.922476074,0.157744875,7.112208241,28.84949681,7.778872848,86.8025398,0,0.43526345,64.19794119,-0.43526345,115.8020588,0.935127042,0,110.0208991,7.778872848,115.1120158,4,18,5% +4/16/2018 3:00,93.52956339,286.1080717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632398829,4.993527868,-13.09824463,13.09824463,0,#DIV/0!,0,0,1,0.43505552,0,0.076198291,0.961238037,1,0.531241258,0.806744662,0,0,0.115824807,0.093242833,0.724496596,0.448993192,0.990739067,0.951977104,0,0,0,0,0,0,0.217945479,77.41161034,-0.217945479,102.5883897,0.820584825,0,0,0,0,4,19,0% +4/16/2018 4:00,104.5670229,296.0373357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825038839,5.166826218,-2.671336594,2.671336594,0.986979152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006549808,90.37527904,0.006549808,89.62472096,0,0,0,0,0,4,20,0% +4/16/2018 5:00,114.6277622,307.5126116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000631864,5.367107564,-1.171658368,1.171658368,0.730519071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224596889,102.9791749,0.224596889,77.02082507,0,0.827378929,0,0,0,4,21,0% +4/16/2018 6:00,123.0876735,321.3423864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148285171,5.608482669,-0.490975141,0.490975141,0.614115384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.421325589,114.9183058,0.421325589,65.08169421,0,0.931326933,0,0,0,4,22,0% +4/16/2018 7:00,129.0723045,338.0644816,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252736687,5.900338287,-0.041600884,0.041600884,0.53726786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583320701,125.6844436,0.583320701,54.31555637,0,0.964283858,0,0,0,4,23,0% +4/17/2018 8:00,131.6133839,357.1695188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297086888,6.233784091,0.332335146,-0.332335146,0.473321033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699535926,134.3897831,0.699535926,45.61021689,0,0.978524043,0,0,0,4,0,0% +4/17/2018 9:00,130.1666645,16.62774452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271836872,0.290208889,0.706830563,-0.706830563,0.409278544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762046263,139.6449255,0.762046263,40.3550745,0,0.984387186,0,0,0,4,1,0% +4/17/2018 10:00,125.052934,34.13197849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182585438,0.595715405,1.155053878,-1.155053878,0.332627843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766587685,140.048447,0.766587685,39.95155299,0,0.984775889,0,0,0,4,2,0% +4/17/2018 11:00,117.185436,48.73754809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045271693,0.850630683,1.814472197,-1.814472197,0.219860669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71284737,135.4670599,0.71284737,44.53294005,0,0.979858758,0,0,0,4,3,0% +4/17/2018 12:00,107.4954091,60.78140425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876148819,1.060835628,3.131506411,-3.131506411,0,#DIV/0!,0,0,0.005336812,1,0.309099715,0,0.922938928,0.961700892,0.724496596,1,0,0,0.000910366,0.312029739,0.997421759,0.721918355,0.961238037,0.922476074,0,0,0,0,0,0,-0.604484781,127.1917762,0.604484781,52.80822376,0,0.967284932,0,0,0,4,4,0% +4/17/2018 13:00,96.67561599,71.04622647,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687307805,1.239990573,8.542548608,-8.542548608,0,#DIV/0!,0,0,0.48205533,1,0.11653073,0,0.949344726,0.988106689,0.724496596,1,0,0,0.067112154,0.312029739,0.827375449,0.551872045,0.961238037,0.922476074,0,0,0,0,0,0,-0.448882124,116.6719848,0.448882124,63.32801523,0,0.938612183,0,0,0,4,5,0% +4/17/2018 14:00,85.03247764,80.32099035,28.83923423,150.0759239,15.8440033,15.58365048,0,15.58365048,15.36624815,0.217402329,45.56742224,38.09726086,7.470161386,0.477755158,6.992406228,1.484096706,1.40186574,-11.31900182,11.31900182,0,0.549390569,0.119438789,3.841562036,1,0.3177866,0,0.088118228,0.961238037,1,0.505175937,0.780679341,14.7706222,0.331145502,0.115824807,0.063796467,0.724496596,0.448993192,0.993886531,0.955124568,0.086532996,3.716490767,14.8571552,4.047636269,0,25.99046185,-0.253853249,104.7056454,0.253853249,75.29435461,0,0.853035808,14.8571552,26.2184309,32.01659385,4,6,115% +4/17/2018 15:00,73.34830939,89.34522593,222.3129045,575.931026,57.27824359,57.22698179,0,57.22698179,55.55109322,1.675888579,78.6120316,22.98254368,55.62948792,1.727150379,53.90233754,1.2801695,1.559368363,-3.154643175,3.154643175,0.930370555,0.257646958,1.589262518,51.11614564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.39782379,1.25131457,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.151415284,49.13478349,54.54923907,50.38609806,0,22.98254368,-0.039905028,92.28699693,0.039905028,87.71300307,0,0,54.54923907,50.38609806,87.52593253,4,7,60% +4/17/2018 16:00,61.5607219,98.92561861,436.388954,750.5041816,78.97850548,218.1894005,138.3027041,79.88669641,76.59701214,3.289684267,108.1890476,0,108.1890476,2.38149334,105.8075542,1.074437287,1.726577759,-1.616088965,1.616088965,0.806521179,0.180981908,2.768392165,89.04100832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62796158,1.725383818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.0056907,85.58960403,75.63365228,87.31498785,138.3027041,0,0.184279725,79.38085831,-0.184279725,100.6191417,0.778673352,0,183.3262825,87.31498785,240.4721958,4,8,31% +4/17/2018 17:00,50.10380608,110.1735026,627.6248619,833.1021837,93.27423063,430.2823501,335.0893803,95.19296975,90.46166843,4.731301319,154.9874764,0,154.9874764,2.812562199,152.1749142,0.874476384,1.922890369,-0.913970079,0.913970079,0.686451778,0.14861462,3.468278673,111.5517643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95519658,2.037691739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.512756092,107.2277989,89.46795267,109.2654906,335.0893803,0,0.402218824,66.28303866,-0.402218824,113.7169613,0.925689557,0,399.6566928,109.2654906,471.1687711,4,9,18% +4/17/2018 18:00,39.58734009,124.91783,778.5215408,876.4101897,103.1124635,630.7619881,524.8899216,105.8720665,100.0032422,5.868824224,191.8707822,0,191.8707822,3.109221218,188.761561,0.690929427,2.180227428,-0.475261197,0.475261197,0.611428141,0.132446513,3.890403252,125.1287418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.12692026,2.252620188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818583913,120.2785061,98.94550417,122.5311263,524.8899216,0,0.598908967,53.20820192,-0.598908967,126.7917981,0.966514858,0,606.2594124,122.5311263,686.4535839,4,10,13% +4/17/2018 19:00,31.22385363,146.0743252,877.5001649,898.4897717,109.1579675,796.1493078,683.6678889,112.4814189,105.866452,6.614966901,216.0515898,0,216.0515898,3.29151547,212.7600743,0.544959051,2.549477928,-0.145887674,0.145887674,0.555101951,0.124396521,4.038078236,129.8784769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7628605,2.384691754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925573936,124.8441321,104.6884345,127.2288239,683.6678889,0,0.760907815,40.45570567,-0.760907815,139.5442943,0.984289018,0,777.6152292,127.2288239,860.8839498,4,11,11% +4/17/2018 20:00,27.23721944,175.4377777,917.3488902,906.3177659,111.5243143,910.0687815,794.9919734,115.0768082,108.1614447,6.915363424,225.7847287,0,225.7847287,3.362869557,222.4218591,0.475379158,3.061966853,0.137022631,-0.137022631,0.50672144,0.121572409,3.918870774,126.0443551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9688948,2.436387546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839208535,121.1586285,106.8081033,123.595016,794.9919734,0,0.877166931,28.69752212,-0.877166931,151.3024779,0.992998307,0,896.2337871,123.595016,977.1242532,4,12,9% +4/17/2018 21:00,29.51108268,206.3926757,895.223474,902.0389,110.2147125,961.3474559,847.707551,113.639905,106.8913323,6.748572691,220.380676,0,220.380676,3.323380231,217.0572958,0.515065559,3.602231744,0.409851758,-0.409851758,0.460064911,0.12311419,3.553383895,114.2890407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7480144,2.407777664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574414536,109.8589732,105.3224289,112.2667508,847.707551,0,0.939768286,19.98732059,-0.939768286,160.0126794,0.996795395,0,950.3134124,112.2667508,1023.789756,4,13,8% +4/17/2018 22:00,36.88172522,229.9455998,812.728537,884.5080698,105.2316497,943.5679773,835.382759,108.1852183,102.0585272,6.12669101,200.2285657,0,200.2285657,3.173122503,197.0554432,0.643707539,4.013307817,0.704828634,-0.704828634,0.409620894,0.129479457,2.977956958,95.78133242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.10253837,2.298916452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.157519679,92.06865994,100.2600581,94.3675764,835.382759,0,0.944460302,19.18537183,-0.944460302,160.8146282,0.997059712,0,933.1865515,94.3675764,994.9482429,4,14,7% +4/17/2018 23:00,46.937711,246.1971574,675.8654794,848.4937334,96.51985812,854.6693303,755.9649425,98.70438775,93.60942828,5.09495947,166.7818402,0,166.7818402,2.910429843,163.8714104,0.8192176,4.296951006,1.067678067,-1.067678067,0.347569987,0.142809274,2.245567942,72.22518409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.98094307,2.108596514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62690633,69.42559417,91.6078494,71.53419068,755.9649425,0,0.890949353,27.00721442,-0.890949353,152.9927856,0.993880087,0,842.9463524,71.53419068,889.7640495,4,15,6% +4/17/2018 0:00,58.19413485,258.2250207,494.9503338,780.3693678,83.66228254,695.8456028,610.9749021,84.87070072,81.13955604,3.731144684,122.5291653,0,122.5291653,2.5227265,120.0064388,1.015679258,4.506876821,1.595880239,-1.595880239,0.257242096,0.169031672,1.428251239,45.93746944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.99442756,1.827706761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.034763161,44.15684294,79.02919072,45.98454971,610.9749021,0,0.782930401,38.47033123,-0.782930401,141.5296688,0.986137363,0,681.5343695,45.98454971,711.6303376,4,16,4% +4/17/2018 1:00,69.91785426,268.1600653,285.3304067,642.40682,64.7490775,468.3050896,403.3574946,64.94759505,62.79665392,2.150941129,71.13408412,0,71.13408412,1.952423585,69.18166053,1.220296763,4.680276061,2.599024127,-2.599024127,0.085694387,0.226926665,0.630601543,20.2823133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.36253233,1.414524241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456868671,19.49613102,60.819401,20.91065526,403.3574946,0,0.627884826,51.10575932,-0.627884826,128.8942407,0.970367561,0,452.2244293,20.91065526,465.9100349,4,17,3% +4/17/2018 2:00,81.66788249,277.2688049,76.40810461,311.6251308,31.2502379,167.0557266,136.1718021,30.8839245,30.30792793,0.575996567,19.46833956,0,19.46833956,0.942309974,18.52602958,1.425373443,4.839253558,6.069141769,-6.069141769,0,0.408991141,0.235577493,7.576981983,0.336751574,1,0.163300703,0,0.9436822,0.982444163,0.724496596,1,29.38023291,0.682700368,0.049680071,0.312029739,0.868795471,0.593292066,0.961238037,0.922476074,0.161622244,7.283283286,29.54185515,7.965983655,90.3157334,0,0.436973108,64.08908756,-0.436973108,115.9109124,0.935576483,0,114.0391313,7.965983655,119.2527083,4,18,5% +4/17/2018 3:00,93.34906148,286.4146988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629248476,4.998879521,-13.75184354,13.75184354,0,#DIV/0!,0,0,1,0.468610119,0,0.072589755,0.961238037,1,0.539355907,0.814859312,0,0,0.115824807,0.102403372,0.724496596,0.448993192,0.98971859,0.950956627,0,0,0,0,0,0,0.219871971,77.29848665,-0.219871971,102.7015133,0.822594934,0,0,0,0,4,19,0% +4/17/2018 4:00,104.3639552,296.338307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821494638,5.172079158,-2.695966106,2.695966106,0.991191047,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.004370659,90.25042112,0.004370659,89.74957888,0,0,0,0,0,4,20,0% +4/17/2018 5:00,114.392444,307.8048369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996524786,5.372207857,-1.174973605,1.174973605,0.73108601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.222114526,102.8332597,0.222114526,77.16674027,0,0.824890905,0,0,0,4,21,0% +4/17/2018 6:00,122.8118953,321.6086567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143471933,5.613129962,-0.489345823,0.489345823,0.613836754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.418510373,114.7405768,0.418510373,65.25942324,0,0.930528648,0,0,0,4,22,0% +4/17/2018 7:00,128.7544121,338.2669932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247188418,5.903872783,-0.037674885,0.037674885,0.536596474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580165946,125.4622152,0.580165946,54.53778477,0,0.963817761,0,0,0,4,23,0% +4/18/2018 8:00,131.2654781,357.2614835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291014788,6.235389178,0.338174782,-0.338174782,0.472322396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696058363,134.1116152,0.696058363,45.88838483,0,0.978166943,0,0,0,4,0,0% +4/18/2018 9:00,129.8131304,16.59291999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265666537,0.289601086,0.715158926,-0.715158926,0.40785431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758284892,139.3132302,0.758284892,40.68676979,0,0.984061722,0,0,0,4,1,0% +4/18/2018 10:00,124.7154833,33.9999334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176695811,0.593410783,1.167693595,-1.167693595,0.330466324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762601098,139.6940447,0.762601098,40.30595533,0,0.984434923,0,0,0,4,2,0% +4/18/2018 11:00,116.8730702,48.54989538,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039819881,0.847355526,1.836720711,-1.836720711,0.216055949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708709727,135.1300319,0.708709727,44.86996812,0,0.979449254,0,0,0,4,3,0% +4/18/2018 12:00,107.2072371,60.5657289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87111927,1.057071383,3.185359163,-3.185359163,0,#DIV/0!,0,0,0.014365436,1,0.304192885,0,0.923710135,0.962472098,0.724496596,1,0,0,0.002440159,0.312029739,0.993103786,0.717600382,0.961238037,0.922476074,0,0,0,0,0,0,-0.600280715,126.890005,0.600280715,53.10999501,0,0.966705637,0,0,0,4,4,0% +4/18/2018 13:00,96.40640427,70.81481772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682609175,1.235951728,8.905313414,-8.905313414,0,#DIV/0!,0,0,0.498179545,1,0.111824061,0,0.949886869,0.988648832,0.724496596,1,0,0,0.06892552,0.312029739,0.823205491,0.547702087,0.961238037,0.922476074,0,0,0,0,0,0,-0.444700926,116.4042057,0.444700926,63.59579432,0,0.937564884,0,0,0,4,5,0% +4/18/2018 14:00,84.78189429,80.07670968,31.7772563,161.6626767,17.07447568,16.79916762,0,16.79916762,16.55961724,0.239550381,48.61689704,40.39727491,8.219622134,0.51485844,7.704763694,1.479723201,1.397602238,-10.78090546,10.78090546,0,0.537317493,0.12871461,4.139904311,1,0.272090474,0,0.092491933,0.961238037,1,0.495897182,0.771400586,15.91773397,0.35856736,0.115824807,0.053300058,0.724496596,0.448993192,0.994959116,0.956197153,0.093253297,4.002227295,16.01098727,4.360794655,0,29.40556123,-0.249886218,104.4707793,0.249886218,75.52922073,0,0.849908933,16.01098727,29.35284383,35.2218365,4,6,120% +4/18/2018 15:00,73.09712287,89.08600439,226.7222241,580.2507801,58.01417056,57.97395716,0,57.97395716,56.26482926,1.709127893,77.63280511,20.91203569,56.72076942,1.749341292,54.97142813,1.275785468,1.554844094,-3.109894629,3.109894629,0.938023007,0.255882152,1.630306014,52.43624555,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.08389402,1.267391811,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.181151157,50.40371373,55.26504518,51.67110554,0,20.91203569,-0.036039651,92.06536717,0.036039651,87.93463283,0,0,55.26504518,51.67110554,89.08275034,4,7,61% +4/18/2018 16:00,61.30533284,98.64757197,440.6568241,752.0600513,79.56131651,221.7926725,141.3085659,80.48410654,77.16224927,3.321857275,109.241416,0,109.241416,2.399067243,106.8423488,1.069979907,1.72172493,-1.603296453,1.603296453,0.804333531,0.18055165,2.789235445,89.71139985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.17128901,1.738116051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020791585,86.23400987,76.19208059,87.97212592,141.3085659,0,0.187895323,79.17001696,-0.187895323,100.829983,0.783894387,0,186.9630723,87.97212592,244.5390692,4,8,31% +4/18/2018 17:00,49.8337855,109.8759214,631.5782722,833.7481778,93.80470346,433.8462241,338.1089748,95.73724934,90.97614555,4.761103796,155.9620222,0,155.9620222,2.828557912,153.1334643,0.869763636,1.917696597,-0.909223244,0.909223244,0.685640022,0.148524273,3.486699661,112.1442465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.44973155,2.049280578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.526102035,107.7973154,89.97583358,109.846596,338.1089748,0,0.405528892,66.07572552,-0.405528892,113.9242745,0.926704223,0,403.3028482,109.846596,475.1952483,4,9,18% +4/18/2018 18:00,39.28924329,124.6195627,782.1326907,876.6846084,103.6146541,634.0484431,527.6621065,106.3863365,100.4902899,5.896046597,192.7614902,0,192.7614902,3.124364117,189.6371261,0.685726656,2.175021682,-0.473726825,0.473726825,0.611165748,0.132477079,3.907176674,125.6682327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.59508903,2.263591167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.8307362,120.7970853,99.42582523,123.0606764,527.6621065,0,0.601883621,52.99507849,-0.601883621,127.0049215,0.966927462,0,609.6368067,123.0606764,690.1775582,4,10,13% +4/18/2018 19:00,30.88776008,145.8644639,880.7883682,898.5915323,109.6399463,799.0852216,686.1115695,112.9736521,106.3338974,6.639754766,216.8633862,0,216.8633862,3.306048909,213.5573373,0.539093112,2.545815157,-0.146089711,0.146089711,0.555136502,0.12447933,4.053655353,130.3794905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2121868,2.39522118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.936859504,125.3257255,105.1490463,127.7209467,686.1115695,0,0.763541103,40.22262389,-0.763541103,139.7773761,0.984515641,0,780.6366176,127.7209467,864.2274228,4,11,11% +4/18/2018 20:00,26.88572083,175.5086332,920.3622699,906.3377793,111.9903082,912.6543095,797.1028427,115.5514668,108.6133872,6.938079553,226.5294089,0,226.5294089,3.376920993,223.1524879,0.46924435,3.063203516,0.135567651,-0.135567651,0.506970256,0.121680681,3.93363059,126.5190815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4033191,2.446567764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.849901972,121.6149536,107.2532211,124.0615213,797.1028427,0,0.879476571,28.42071313,-0.879476571,151.5792869,0.993148002,0,898.8943169,124.0615213,980.0901014,4,12,9% +4/18/2018 21:00,29.20536194,206.751994,898.0311173,902.0325087,110.6682123,963.6299326,849.5290374,114.1008952,107.3311574,6.769737892,221.0750964,0,221.0750964,3.337054922,217.7380414,0.509729725,3.60850303,0.407175564,-0.407175564,0.460522567,0.123234273,3.567683529,114.7489661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.170791,2.417684931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.584774572,110.3010709,105.7555656,112.7187559,849.5290374,0,0.941794258,19.64490475,-0.941794258,160.3550953,0.996909848,0,952.6594294,112.7187559,1026.431601,4,13,8% +4/18/2018 22:00,36.64114734,230.3765592,815.4137313,884.5300455,105.6764771,945.6340525,836.9971779,108.6368745,102.4899414,6.146933139,200.8930354,0,200.8930354,3.186535689,197.7064997,0.639508663,4.020829477,0.700581728,-0.700581728,0.410347158,0.129598599,2.992114,96.23667158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.51723006,2.308634259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167776408,92.50634926,100.6850065,94.81498352,836.9971779,0,0.946262009,18.86872848,-0.946262009,161.1312715,0.997160512,0,935.305541,94.81498352,997.3600514,4,14,7% +4/18/2018 23:00,46.74222383,246.5993819,678.517735,848.6383831,96.96126374,856.6483109,757.4958337,99.15247718,94.03752389,5.114953293,167.4382203,0,167.4382203,2.923739851,164.5144804,0.815805706,4.303971148,1.060870972,-1.060870972,0.348734069,0.142901591,2.259791512,72.68266302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.39244485,2.118239569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.637211258,69.86534031,92.02965611,71.98357988,757.4958337,0,0.892601429,26.79801617,-0.892601429,153.2019838,0.993983957,0,844.9683623,71.98357988,892.0801757,4,15,6% +4/18/2018 0:00,58.02241856,258.5874626,497.6525271,780.8749298,84.11100229,697.9361372,612.609877,85.32626019,81.57474523,3.751514959,123.1978739,0,123.1978739,2.536257055,120.6616168,1.012682244,4.513202627,1.583771914,-1.583771914,0.259312741,0.169015523,1.442458949,46.39443821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.41274796,1.837509603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.045056598,44.59609871,79.45780456,46.43360831,612.609877,0,0.784517281,38.32394529,-0.784517281,141.6760547,0.986266541,0,683.6544289,46.43360831,714.0442969,4,16,4% +4/18/2018 1:00,69.75461359,268.4924873,288.1181449,644.0715432,65.24265516,470.8861244,405.4388198,65.44730466,63.27534839,2.171956278,71.82488672,0,71.82488672,1.967306773,69.85757995,1.217447676,4.68607792,2.571294091,-2.571294091,0.090436503,0.226444104,0.643771737,20.70591202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.82267166,1.42530706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466410432,19.90331022,61.2890821,21.32861728,405.4388198,0,0.629493453,50.98723969,-0.629493453,129.0127603,0.970571056,0,454.7962657,21.32861728,468.7554191,4,17,3% +4/18/2018 2:00,81.50284054,277.5823347,78.90565545,317.593832,31.97787055,170.9273466,139.3189027,31.60844393,31.01361976,0.594824161,20.09584048,0,20.09584048,0.964250783,19.1315897,1.422492917,4.844725686,5.932694075,-5.932694075,0,0.405267156,0.241062696,7.753404941,0.32632566,1,0.166987828,0,0.943214729,0.981976692,0.724496596,1,30.06235975,0.69859641,0.048348545,0.312029739,0.872058406,0.596555002,0.961238037,0.922476074,0.165479617,7.452867745,30.22783937,8.151464154,93.8555698,0,0.438670052,63.98094404,-0.438670052,116.019056,0.936019117,0,118.0784469,8.151464154,123.4134172,4,18,5% +4/18/2018 3:00,93.16903118,286.7178437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626106355,5.004170396,-14.47787929,14.47787929,0,#DIV/0!,0,0,1,0.501499704,0,0.068961362,0.961238037,1,0.54761993,0.823123334,0,0,0.115824807,0.11173133,0.724496596,0.448993192,0.988659462,0.949897499,0,0,0,0,0,0,0.221792574,77.18565867,-0.221792574,102.8143413,0.824564138,0,0,0,0,4,19,0% +4/18/2018 4:00,104.1613345,296.6353137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817958241,5.177262902,-2.721294037,2.721294037,0.995522378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002190928,90.12553105,0.002190928,89.87446895,0,0,0,0,0,4,20,0% +4/18/2018 5:00,114.157777,308.0924682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992429075,5.377227971,-1.178398713,1.178398713,0.731671738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219627087,102.687131,0.219627087,77.31286905,0,0.822341378,0,0,0,4,21,0% +4/18/2018 6:00,122.5372811,321.8697679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138679011,5.617687213,-0.487750856,0.487750856,0.613563998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41568787,114.5626424,0.41568787,65.4373576,0,0.929717443,0,0,0,4,22,0% +4/18/2018 7:00,128.4385055,338.4644989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241674807,5.907319907,-0.033761934,0.033761934,0.53592732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577004134,125.2401041,0.577004134,54.7598959,0,0.963345508,0,0,0,4,23,0% +4/19/2018 8:00,130.920409,357.3500602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284992195,6.236935132,0.344014141,-0.344014141,0.471323807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692576397,133.8344006,0.692576397,46.16559935,0,0.977805798,0,0,0,4,0,0% +4/19/2018 9:00,129.4628789,16.55717415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259553496,0.288977204,0.723505001,-0.723505001,0.406427048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754524013,138.9837965,0.754524013,41.01620354,0,0.983733057,0,0,0,4,1,0% +4/19/2018 10:00,124.3813276,33.86872385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170863694,0.591120745,1.180394599,-1.180394599,0.328294325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758621801,139.3428491,0.758621801,40.65715092,0,0.984091006,0,0,0,4,2,0% +4/19/2018 11:00,116.563878,48.36375171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03442346,0.844106706,1.85918198,-1.85918198,0.212214846,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704587607,134.7962371,0.704587607,45.20376293,0,0.979036504,0,0,0,4,3,0% +4/19/2018 12:00,106.9221773,60.35162772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866144037,1.053334613,3.240320804,-3.240320804,0,#DIV/0!,0,0,0.023412516,1,0.299338335,0,0.924468275,0.963230238,0.724496596,1,0,0,0.003960192,0.312029739,0.98883144,0.713328035,0.961238037,0.922476074,0,0,0,0,0,0,-0.596101276,126.5911795,0.596101276,53.40882054,0,0.966121636,0,0,0,4,4,0% +4/19/2018 13:00,96.14034564,70.584814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677965575,1.231937406,9.294800242,-9.294800242,0,#DIV/0!,0,0,0.514410067,1,0.107174789,0,0.95041738,0.989179343,0.724496596,1,0,0,0.070728045,0.312029739,0.81908643,0.543583026,0.961238037,0.922476074,0,0,0,0,0,0,-0.440553706,116.1392151,0.440553706,63.86078491,0,0.936506459,0,0,0,4,5,0% +4/19/2018 14:00,84.53409447,79.83356717,34.77783799,173.0746391,18.29188767,18.0024898,0,18.0024898,17.74031977,0.262170033,51.55224992,42.56839256,8.983857367,0.551567903,8.432289464,1.475398279,1.393358601,-10.29703635,10.29703635,0,0.525963911,0.137891976,4.435079942,1,0.225437028,0,0.096811727,0.961238037,1,0.486883378,0.762386782,17.05267015,0.386250931,0.115824807,0.043092529,0.724496596,0.448993192,0.995977119,0.957215156,0.099902267,4.284081159,17.15257241,4.67033209,0,32.97190063,-0.245953958,104.2382167,0.245953958,75.7617833,0,0.846709919,17.15257241,32.58796742,38.48074533,4,6,124% +4/19/2018 15:00,72.84939971,88.8275513,231.068829,584.4026142,58.7376667,58.70840376,0,58.70840376,56.96650933,1.741894437,76.6286067,18.83213652,57.79647018,1.77115737,56.02531281,1.271461883,1.550333237,-3.066987152,3.066987152,0.945360618,0.254199872,1.670912137,53.74227804,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.75837559,1.283197485,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.210570155,51.65912184,55.96894575,52.94231933,0,18.83213652,-0.032224593,91.84665288,0.032224593,88.15334712,0,0,55.96894575,52.94231933,90.6186349,4,7,62% +4/19/2018 16:00,61.05369829,98.36971251,444.8489719,753.5526112,80.13726715,225.3448259,144.2705335,81.07429233,77.72083287,3.353459455,110.2752178,0,110.2752178,2.41643428,107.8587835,1.065588056,1.716875368,-1.590895891,1.590895891,0.80221291,0.180144886,2.809673344,90.36875294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70822081,1.75069841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035598773,86.86588267,76.74381959,88.61658108,144.2705335,0,0.19145383,78.96235978,-0.19145383,101.0376402,0.78884043,0,190.5502492,88.61658108,248.5480292,4,8,30% +4/19/2018 17:00,49.56780107,109.5774901,635.4528784,834.3612927,94.32972596,437.3436872,341.0680383,96.2756489,91.48533668,4.790312214,156.9172967,0,156.9172967,2.844389277,154.0729074,0.865121332,1.912487989,-0.904613689,0.904613689,0.684851741,0.148444879,3.504754744,112.7249601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.93918543,2.060750349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539182881,108.3555193,90.47836832,110.4162697,341.0680383,0,0.408777398,65.87194403,-0.408777398,114.128056,0.92768404,0,406.8817439,110.4162697,479.1469841,4,9,18% +4/19/2018 18:00,38.99531679,124.3186186,785.665837,876.9378845,104.1119951,637.2625971,530.3672819,106.8953152,100.9726343,5.922680946,193.6331391,0,193.6331391,3.139360784,190.4937783,0.680596671,2.169769217,-0.472249702,0.472249702,0.610913145,0.132514347,3.923614647,126.1969344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.05873677,2.274456201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842645455,121.3052935,99.90138223,123.5797497,530.3672819,0,0.604794583,52.78593836,-0.604794583,127.2140616,0.967327302,0,612.940134,123.5797497,693.8206085,4,10,13% +4/19/2018 19:00,30.5554868,145.6501151,884.0022392,898.6775833,110.1175032,801.9478314,688.4867949,113.4610365,106.7970542,6.663982283,217.6570265,0,217.6570265,3.320449013,214.3365775,0.533293849,2.542074064,-0.14631393,0.14631393,0.555174845,0.124566996,4.068930144,130.8707803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6573907,2.405654007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.947926038,125.7979719,105.6053168,128.2036259,688.4867949,0,0.766111014,39.99406571,-0.766111014,140.0059343,0.984735307,0,783.5825723,128.2036259,867.4892814,4,11,11% +4/19/2018 20:00,26.53738294,175.5777752,923.3073599,906.3447926,112.452293,915.1690928,799.1473705,116.0217224,109.0614415,6.960280886,227.2574106,0,227.2574106,3.390851539,223.8665591,0.463164707,3.064410271,0.134111034,-0.134111034,0.507219352,0.121792913,3.948125666,126.985293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8340059,2.456660397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860403605,122.0630938,107.6944095,124.5197541,799.1473705,0,0.881725561,28.14877751,-0.881725561,151.8512225,0.993293013,0,901.4819089,124.5197541,982.9775976,4,12,9% +4/19/2018 21:00,28.9027985,207.1125903,900.778386,902.0143221,111.1181371,965.8470759,851.2891127,114.5579632,107.7675153,6.790447964,221.7547703,0,221.7547703,3.350621816,218.4041485,0.504448997,3.614796624,0.404514664,-0.404514664,0.460977608,0.123357908,3.581759505,115.2016979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5902348,2.4275141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.594972569,110.7362539,106.1852074,113.163768,851.2891127,0,0.943764519,19.30631476,-0.943764519,160.6936852,0.997020683,0,954.9380596,113.163768,1029.001482,4,13,8% +4/19/2018 22:00,36.40342337,230.8069223,818.047767,884.5402398,106.1181782,947.6423627,838.5572495,109.0851132,102.9183236,6.166789612,201.5450067,0,201.5450067,3.199854607,198.3451521,0.635359597,4.028340731,0.6963707,-0.6963707,0.411067286,0.129721249,3.006090235,96.68619532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92900733,2.31828377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.177902142,92.93844858,101.1069095,95.25673235,838.5572495,0,0.948014812,18.55568695,-0.948014812,161.4443131,0.997258208,0,937.3650094,95.25673235,999.7086356,4,14,7% +4/19/2018 23:00,46.54890237,246.9994816,681.1287374,848.7696387,97.39996944,858.5783185,758.9806814,99.59763713,94.46300099,5.134636132,168.0845167,0,168.0845167,2.936968446,165.1475482,0.81243161,4.310954205,1.054135895,-1.054135895,0.349885835,0.142997886,2.273877647,73.13572152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80142963,2.127823642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647416614,70.30083738,92.44884625,72.42866102,758.9806814,0,0.894212807,26.59250427,-0.894212807,153.4074957,0.994084898,0,846.9400798,72.42866102,894.3431898,4,15,6% +4/19/2018 0:00,57.85221993,258.9471632,500.3235414,781.3614965,84.5573181,699.9860416,614.2067884,85.77925317,82.00760298,3.771650193,123.8589503,0,123.8589503,2.549715124,121.3092352,1.009711717,4.519480587,1.571826097,-1.571826097,0.261355596,0.169005276,1.456575086,46.84846172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.82882729,1.847259928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055283692,45.03252337,79.88411099,46.8797833,614.2067884,0,0.786072504,38.18001911,-0.786072504,141.8199809,0.986392636,0,685.733164,46.8797833,716.4150446,4,16,4% +4/19/2018 1:00,69.59239456,268.8218908,290.8853276,645.695885,65.73345892,473.4297506,407.4855815,65.94416908,63.75135261,2.19281647,72.51062175,0,72.51062175,1.982106317,70.52851543,1.214616419,4.691827096,2.544098188,-2.544098188,0.095087276,0.225977224,0.656917252,21.12871695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.28022502,1.436029279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.475934313,20.30972641,61.75615934,21.74575569,407.4855815,0,0.631079725,50.87017231,-0.631079725,129.1298277,0.970770708,0,457.3312257,21.74575569,471.5633879,4,17,3% +4/19/2018 2:00,81.33842699,277.8926117,81.40869639,323.4420109,32.69903283,174.7558443,142.4291148,32.32672948,31.71303634,0.613693141,20.72447744,0,20.72447744,0.985996486,19.73848096,1.419623359,4.85014104,5.80185021,-5.80185021,0,0.401665108,0.246499122,7.928259086,0.316015358,1,0.170681815,0,0.942743331,0.981505294,0.724496596,1,30.73804817,0.714351098,0.047020444,0.312029739,0.875326937,0.599823533,0.961238037,0.922476074,0.169317003,7.620944199,30.90736517,8.335295297,97.41932712,0,0.440354407,63.87350414,-0.440354407,116.1264959,0.936455093,0,122.1361902,8.335295297,127.5914743,4,18,4% +4/19/2018 3:00,92.98951632,287.0174144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62297323,5.009398892,-15.28890766,15.28890766,0,#DIV/0!,0,0,1,0.533736688,0,0.065313864,0.961238037,1,0.556033193,0.831536597,0,0,0.115824807,0.121227521,0.724496596,0.448993192,0.987560597,0.948798634,0,0,0,0,0,0,0.223707206,77.07313112,-0.223707206,102.9268689,0.826493566,0,0,0,0,4,19,0% +4/19/2018 4:00,103.9592232,296.9282763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814430734,5.182376063,-2.74734394,2.74734394,0.999977174,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-1.10E-05,90.00063099,1.10E-05,89.99936901,0,0,0,0,0,4,20,0% +4/19/2018 5:00,113.9238435,308.3754467,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988346165,5.382166877,-1.181936805,1.181936805,0.732276787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217135314,102.5408317,0.217135314,77.45916831,0,0.819728843,0,0,0,4,21,0% +4/19/2018 6:00,122.2639306,322.1256958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133908146,5.622153997,-0.486192344,0.486192344,0.613297477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412859179,114.384571,0.412859179,65.61542901,0,0.928893331,0,0,0,4,22,0% +4/19/2018 7:00,128.1246924,338.6570123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236197736,5.9106799,-0.029864322,0.029864322,0.53526079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573836702,125.0182064,0.573836702,54.98179364,0,0.962867198,0,0,0,4,23,0% +4/20/2018 8:00,130.578282,357.4352672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279020952,6.238422276,0.349850395,-0.349850395,0.470325748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68909176,133.5582568,0.68909176,46.44174324,0,0.977440723,0,0,0,4,0,0% +4/20/2018 9:00,129.1160148,16.52049738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253499576,0.288337073,0.731865035,-0.731865035,0.404997398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750765593,138.6567395,0.750765593,41.34326052,0,0.983401317,0,0,0,4,1,0% +4/20/2018 10:00,124.0505746,33.7383303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165090966,0.588844948,1.193151564,-1.193151564,0.326112755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754651919,138.9949645,0.754651919,41.00503545,0,0.983744288,0,0,0,4,2,0% +4/20/2018 11:00,116.2579676,48.17911287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029084316,0.84088415,1.8818486,-1.8818486,0.208338626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700483209,134.4657848,0.700483209,45.53421522,0,0.978620702,0,0,0,4,3,0% +4/20/2018 12:00,106.6403339,60.139118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861224941,1.049625618,3.296398897,-3.296398897,0,#DIV/0!,0,0,0.032473781,1,0.294537736,0,0.925213228,0.963975191,0.724496596,1,0,0,0.005469831,0.312029739,0.984606147,0.709102743,0.961238037,0.922476074,0,0,0,0,0,0,-0.591948643,126.2954121,0.591948643,53.70458794,0,0.965533213,0,0,0,4,4,0% +4/20/2018 13:00,95.8775385,70.35625176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673378726,1.227948243,9.713855104,-9.713855104,0,#DIV/0!,0,0,0.530739687,1,0.102584368,0,0.950936267,0.989698231,0.724496596,1,0,0,0.072518913,0.312029739,0.815019656,0.539516252,0.961238037,0.922476074,0,0,0,0,0,0,-0.436442527,115.8771197,0.436442527,64.1228803,0,0.935437379,0,0,0,4,5,0% +4/20/2018 14:00,84.28922321,79.591616,37.82965531,184.274272,19.49309219,19.19047946,0,19.19047946,18.90530354,0.285175921,54.36530595,44.60527939,9.760026557,0.587788651,9.172237906,1.471124469,1.389135756,-9.85988509,9.85988509,0,0.515286011,0.146947163,4.726325884,1,0.177829918,0,0.101075444,0.961238037,1,0.478133498,0.753636902,18.17249686,0.414181837,0.115824807,0.033171087,0.724496596,0.448993192,0.996942806,0.958180843,0.106462719,4.561253657,18.27895958,4.975435494,0,36.67312623,-0.242059181,104.0081068,0.242059181,75.99189317,0,0.843438944,18.27895958,35.90697837,41.77935878,4,6,129% +4/20/2018 15:00,72.60523011,88.56993611,235.3506332,588.3913581,59.44886818,59.43043795,0,59.43043795,57.65626547,1.774172485,75.60257538,16.74648686,58.85608852,1.792602719,57.0634858,1.26720032,1.545837003,-3.025834217,3.025834217,0.952398184,0.252597018,1.711051439,55.03329599,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.42139543,1.298734567,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.239650943,52.9000974,56.66104637,54.19883197,0,16.74648686,-0.028461477,91.63094273,0.028461477,88.36905727,0,0,56.66104637,54.19883197,92.13309792,4,7,63% +4/20/2018 16:00,60.80590679,98.09212606,448.964135,754.9830105,80.70632527,228.8441445,147.1869314,81.65721308,78.27273179,3.384481293,111.2901459,0,111.2901459,2.433593481,108.8565525,1.061263278,1.71203057,-1.578878176,1.578878176,0.80015776,0.179761186,2.829702662,91.01296466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.23872704,1.763130193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050109946,87.48512348,77.28883699,89.24825367,147.1869314,0,0.194953965,78.75796563,-0.194953965,101.2420344,0.793529197,0,194.0859644,89.24825367,252.4971615,4,8,30% +4/20/2018 17:00,49.30594684,109.2783057,639.2478496,834.9419216,94.84925817,440.773647,343.9655236,96.80812339,91.98920308,4.81892031,157.8530972,0,157.8530972,2.86005509,154.9930421,0.860551113,1.907266236,-0.900139959,0.900139959,0.684086688,0.148376343,3.522441605,113.2938303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.42352098,2.072100177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.551996952,108.9023391,90.97551793,110.9744392,343.9655236,0,0.411963413,65.67176686,-0.411963413,114.3282331,0.928629999,0,410.3922217,110.9744392,483.0227727,4,9,18% +4/20/2018 18:00,38.70566842,124.0150712,789.1205068,877.1702165,104.6044599,640.4038071,533.0048339,107.3989732,101.4502494,5.948723706,194.4856134,0,194.4856134,3.154210414,191.331403,0.675541353,2.164471314,-0.470829727,0.470829727,0.610670315,0.132558284,3.939715916,126.7148065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.51783861,2.285214708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85431077,121.8030919,100.3721494,124.0883066,533.0048339,0,0.607641281,52.58085307,-0.607641281,127.4191469,0.96771461,0,616.1687142,124.0883066,697.3820291,4,10,13% +4/20/2018 19:00,30.22715255,145.4312291,887.1416003,898.7480657,110.5906263,804.7368868,690.7933278,113.943559,107.2559109,6.687648114,218.4324674,0,218.4324674,3.334715419,215.097752,0.527563335,2.538253783,-0.146560494,0.146560494,0.55521701,0.124659498,4.083902165,131.3523319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0984612,2.415989969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.958773216,126.2608577,106.0572344,128.6768477,690.7933278,0,0.768617318,39.77011293,-0.768617318,140.2298871,0.984948122,0,786.4528254,128.6768477,870.6692486,4,11,11% +4/20/2018 20:00,26.19230422,175.6450546,926.1842023,906.3389337,112.9102683,917.6132163,801.1256415,116.4875748,109.5056071,6.981967739,227.968744,0,227.968744,3.404661183,224.5640828,0.457141947,3.065584517,0.132652605,-0.132652605,0.507468758,0.121909085,3.962355998,127.4429894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2609548,2.466665437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870713432,122.5030489,108.1316682,124.9697144,801.1256415,0,0.883913966,27.88183152,-0.883913966,152.1181685,0.993433409,0,903.9966451,124.9697144,985.7868238,4,12,9% +4/20/2018 21:00,28.60345731,207.4742768,903.4654518,901.9844748,111.564494,967.9992287,852.9881116,115.0111171,108.2004129,6.810704201,222.4197399,0,222.4197399,3.364081124,219.0556587,0.499224507,3.621109243,0.401868934,-0.401868934,0.461430054,0.123485069,3.595611856,115.6472371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0063525,2.437265322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60500855,111.1645232,106.611361,113.6017885,852.9881116,0,0.945679372,18.97168161,-0.945679372,161.0283184,0.997127957,0,957.1496545,113.6017885,1031.499753,4,13,8% +4/20/2018 22:00,36.16858042,231.2364684,820.6308472,884.5388084,106.556763,949.5934133,840.0634679,109.5299454,103.3436834,6.186261962,202.1845294,0,202.1845294,3.213079556,198.9714498,0.631260814,4.035837724,0.692195463,-0.692195463,0.411781294,0.129847377,3.019885329,97.12989298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33787937,2.327865201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.187896641,93.36494765,101.525776,95.69281285,840.0634679,0,0.949719176,18.24633145,-0.949719176,161.7536685,0.997352858,0,939.3654769,95.69281285,1001.994509,4,14,7% +4/20/2018 23:00,46.35775576,247.3972755,683.6986196,848.8876976,97.83598319,860.4599114,760.4200351,100.0398763,94.88586732,5.15400899,168.7207618,0,168.7207618,2.950115869,165.7706459,0.809095472,4.317897018,1.047472636,-1.047472636,0.351025319,0.143098114,2.287825276,73.58432523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.20790482,2.137348905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657521625,70.73205233,92.86542645,72.86940124,760.4200351,0,0.895784021,26.39068694,-0.895784021,153.6093131,0.994182974,0,848.8620784,72.86940124,896.5536441,4,15,6% +4/20/2018 0:00,57.6835472,259.3039798,502.9633396,781.8293647,85.0012321,701.9958161,615.7661347,86.22968144,82.43813133,3.791550107,124.5123856,0,124.5123856,2.563100769,121.9492848,1.006767823,4.525708211,1.560041616,-1.560041616,0.263370861,0.16900085,1.470597495,47.29947057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24266752,1.856957782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065442879,45.46605024,80.3081104,47.32300802,615.7661347,0,0.787596581,38.03852788,-0.787596581,141.9614721,0.986515722,0,687.7710836,47.32300802,718.7430459,4,16,5% +4/20/2018 1:00,69.43121319,269.1481573,293.6316305,647.280533,66.22148868,475.9363545,409.4981688,66.43818572,64.22466646,2.213519261,73.19121058,0,73.19121058,1.996822215,71.19438836,1.211803274,4.69752152,2.517426503,-2.517426503,0.099648403,0.225525733,0.670034177,21.55060235,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.73519231,1.446690897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48543748,20.7152587,62.22062979,22.16194959,409.4981688,0,0.632644036,50.75453477,-0.632644036,129.2454652,0.970966614,0,459.8296803,22.16194959,474.3342331,4,17,3% +4/20/2018 2:00,81.1746731,278.1995322,83.91583812,329.170248,33.41366451,178.5406252,145.5019129,33.03871227,32.40611924,0.632593034,21.35391176,0,21.35391176,1.007545268,20.3463665,1.416765315,4.855497814,5.676301257,-5.676301257,0,0.398180668,0.251886317,8.101529809,0.305821173,1,0.1743817,0,0.94226812,0.981030083,0.724496596,1,31.4072283,0.729963117,0.045696073,0.312029739,0.87860019,0.603096786,0.961238037,0.922476074,0.173134453,7.787498609,31.58036275,8.517461726,101.0043472,0,0.442026319,63.76676013,-0.442026319,116.2332399,0.936884563,0,126.2097765,8.517461726,131.7842849,4,18,4% +4/20/2018 3:00,92.81056066,287.3133188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619849864,5.014563399,-16.20055576,16.20055576,0,#DIV/0!,0,0,1,0.56533303,0,0.061648061,0.961238037,1,0.564595367,0.840098771,0,0,0.115824807,0.13089251,0.724496596,0.448993192,0.986420923,0.94765896,0,0,0,0,0,0,0.225615796,76.96090818,-0.225615796,103.0390918,0.828384311,0,0,0,0,4,19,0% +4/20/2018 4:00,103.7576837,297.2171152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810913204,5.187417253,-2.774140176,2.774140176,0.9954404,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.002168693,89.87574295,-0.002168693,90.12425705,0,0,0,0,0,4,20,0% +4/20/2018 5:00,113.6907258,308.6537133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984277494,5.387023546,-1.185591063,1.185591063,0.732901702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.214639955,102.3944051,0.214639955,77.60559486,0,0.817051759,0,0,0,4,21,0% +4/20/2018 6:00,121.9919436,322.3764155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129161077,5.626529882,-0.484672475,0.484672475,0.613037564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410025408,114.2064309,0.410025408,65.79356909,0,0.928056337,0,0,0,4,22,0% +4/20/2018 7:00,127.8130805,338.8445457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230759082,5.913952976,-0.025984457,0.025984457,0.534597293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570665097,124.796618,0.570665097,55.20338198,0,0.962382937,0,0,0,4,23,0% +4/21/2018 8:00,130.2392028,357.5171214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.273102904,6.239850901,0.355680565,-0.355680565,0.469328731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685606201,133.2833001,0.685606201,46.71669991,0,0.977071838,0,0,0,4,0,0% +4/21/2018 9:00,128.7726429,16.48287925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247506605,0.287680513,0.740235045,-0.740235045,0.403566042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.747011618,138.3321739,0.747011618,41.66782613,0,0.983066637,0,0,0,4,1,0% +4/21/2018 10:00,123.7233324,33.60873303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159379512,0.586583049,1.205958761,-1.205958761,0.323922595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750693601,138.6504955,0.750693601,41.34950451,0,0.98339493,0,0,0,4,2,0% +4/21/2018 11:00,115.9554473,47.99597453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023804341,0.837687783,1.904712283,-1.904712283,0.204428706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69639875,134.1387845,0.69639875,45.86121545,0,0.978202054,0,0,0,4,3,0% +4/21/2018 12:00,106.3618114,59.92821687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856363808,1.045944699,3.353598779,-3.353598779,0,#DIV/0!,0,0,0.041544703,1,0.289792784,0,0.925944876,0.964706839,0.724496596,1,0,0,0.006968427,0.312029739,0.980429362,0.704925958,0.961238037,0.922476074,0,0,0,0,0,0,-0.587825007,126.0028155,0.587825007,53.99718445,0,0.964940672,0,0,0,4,4,0% +4/21/2018 13:00,95.61808164,70.12916745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668850349,1.223984874,10.16572828,-10.16572828,0,#DIV/0!,0,0,0.547160563,1,0.09805427,0,0.951443545,0.990205509,0.724496596,1,0,0,0.074297284,0.312029739,0.811006575,0.535503171,0.961238037,0.922476074,0,0,0,0,0,0,-0.432369466,115.6180267,0.432369466,64.38197332,0,0.934358162,0,0,0,4,5,0% +4/21/2018 14:00,84.04741901,79.35090973,40.92207666,195.2312167,20.67555628,20.36059988,0,20.36059988,20.05211198,0.308487899,57.05042954,46.50495397,10.54547557,0.623444307,9.922031264,1.46690419,1.384934639,-9.463267914,9.463267914,0,0.505242108,0.155861077,5.013027994,1,0.129274684,0,0.105281027,0.961238037,1,0.469646053,0.745149457,19.27485275,0.442354834,0.115824807,0.02353254,0.724496596,0.448993192,0.997858413,0.95909645,0.112920819,4.833097339,19.38777357,5.275452173,0,40.49304074,-0.238204498,103.7805926,0.238204498,76.21940742,0,0.840096323,19.38777357,39.29350681,45.10458791,4,6,133% +4/21/2018 15:00,72.36470427,88.31322909,239.5655961,592.2216102,60.14789939,60.14016496,0,60.14016496,58.3342183,1.805946656,74.55775839,14.65862493,59.89913346,1.813681089,58.08545237,1.263002352,1.541356621,-2.986355484,2.986355484,0.959149445,0.251070689,1.750695203,56.30837571,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.07306948,1.314005775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.268372715,54.12575253,57.34144219,55.4397583,0,14.65862493,-0.024751925,91.41832569,0.024751925,88.58167431,0,0,57.34144219,55.4397583,93.62565521,4,7,63% +4/21/2018 16:00,60.56204667,97.81490018,453.0010743,756.3523474,81.26845748,232.2889343,150.0561072,82.23282708,78.81791364,3.414913447,112.285899,0,112.285899,2.450543842,109.8353551,1.057007116,1.707192066,-1.567234722,1.567234722,0.798166612,0.179400143,2.849320287,91.64393489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.76277657,1.775410671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064322848,88.09163606,77.82709942,89.86704673,150.0561072,0,0.198394449,78.55691354,-0.198394449,101.4430865,0.79797682,0,197.5683946,89.86704673,256.3845794,4,8,30% +4/21/2018 17:00,49.04831643,108.9784684,642.9623823,835.4904436,95.36326089,444.13503,346.8004012,97.33462875,92.48770672,4.846922026,158.7692277,0,158.7692277,2.875554169,155.8936736,0.856054614,1.902033088,-0.89580071,0.89580071,0.683344633,0.14831857,3.53975807,113.8507874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90270164,2.083329207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564542672,109.4377073,91.46724432,111.5210365,346.8004012,0,0.415086018,65.47526645,-0.415086018,114.5247336,0.92954304,0,413.8331434,111.5210365,486.8214314,4,9,18% +4/21/2018 18:00,38.42040567,123.7089991,792.4962606,877.3817982,105.0920233,643.4714541,535.5741715,107.8972826,101.923111,5.974171564,195.3188058,0,195.3188058,3.168912249,192.1498936,0.670562579,2.159129348,-0.469466848,0.469466848,0.610437249,0.132608857,3.955479398,127.2218143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97237113,2.295866137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865731359,122.290447,100.8381025,124.5863132,535.5741715,0,0.610423162,52.37989338,-0.610423162,127.6201066,0.968089609,0,619.3218927,124.5863132,700.8611429,4,10,13% +4/21/2018 19:00,29.90287649,145.2077586,890.2063136,898.8031203,111.0593053,807.4521684,693.0309597,114.4212087,107.7104575,6.710751216,219.189675,0,219.189675,3.34884782,215.8408272,0.521903651,2.534353487,-0.146829598,0.146829598,0.55526303,0.124756816,4.09857116,131.8241373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5353887,2.426228846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.969400854,126.7143749,106.5047895,129.1406038,693.0309597,0,0.771059806,39.55084586,-0.771059806,140.4491541,0.985154187,0,789.2471412,129.1406038,873.7670836,4,11,11% +4/21/2018 20:00,25.85058292,175.7103126,928.992883,906.3203328,113.3642358,919.9868021,803.0377755,116.9490266,109.9458858,7.00314076,228.66343,0,228.66343,3.41834998,225.24508,0.451177785,3.066723484,0.131192168,-0.131192168,0.507718508,0.122029176,3.976321782,127.892177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6841675,2.476582924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.880831595,122.9348252,108.5649991,125.4114081,803.0377755,0,0.886041884,27.61999013,-0.886041884,152.3800099,0.993569259,0,906.4386467,125.4114081,988.517905,4,12,9% +4/21/2018 21:00,28.30740059,207.8368516,906.0925335,901.9431053,112.0072927,970.086777,854.6264093,115.4603678,108.6298595,6.830508253,223.0700583,0,223.0700583,3.377433137,219.6926251,0.494057343,3.627437368,0.399238232,-0.399238232,0.461879931,0.123615733,3.609240818,116.0855914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4191529,2.44693881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614882687,111.585886,107.0340356,114.0328248,854.6264093,0,0.947539157,18.64113772,-0.947539157,161.3588623,0.997231732,0,959.2946101,114.0328248,1033.926813,4,13,8% +4/21/2018 22:00,35.93664192,231.6649686,823.1632235,884.5259128,106.9922441,951.487757,841.5163718,109.9713852,103.7660331,6.205352084,202.8116647,0,202.8116647,3.226210918,199.5854538,0.627212724,4.043316463,0.688055912,-0.688055912,0.412489199,0.129976949,3.03349915,97.56776024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74385799,2.337378827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.197759808,93.78584231,101.9416178,96.12322114,841.5163718,0,0.951375601,17.94074323,-0.951375601,162.0592568,0.997444521,0,941.3075126,96.12322114,1004.218238,4,14,7% +4/21/2018 23:00,46.1687899,247.7925788,686.2275629,848.9927652,98.26931593,862.2936978,761.8144911,100.4792067,95.30613348,5.173073233,169.3469999,0,169.3469999,2.96318245,166.3838175,0.805797395,4.324796362,1.040880976,-1.040880976,0.352152559,0.143202228,2.30163352,74.02844581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.61188065,2.146815598,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66752565,71.15895792,93.2794063,73.30577352,761.8144911,0,0.897315646,26.19256613,-0.897315646,153.8074339,0.994278248,0,850.7349837,73.30577352,898.7121464,4,15,6% +4/21/2018 0:00,57.51640602,259.6577675,505.5719309,782.2788425,85.44274963,703.9660126,617.2884624,86.67755025,82.86633548,3.81121477,125.1581821,0,125.1581821,2.576414151,122.581768,1.003850659,4.531882971,1.548417278,-1.548417278,0.26535874,0.169002163,1.484524183,47.74740076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65427363,1.866603282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075532717,45.89661777,80.72980635,47.76322105,617.2884624,0,0.789090065,37.89944225,-0.789090065,142.1005577,0.986635877,0,689.7687497,47.76322105,721.0288226,4,16,5% +4/21/2018 1:00,69.2710833,269.471167,296.3567724,648.8261892,66.70674799,478.4063743,411.4770183,66.92935595,64.69529342,2.234062532,73.86658514,0,73.86658514,2.011454574,71.85513057,1.20900848,4.703159103,2.49126932,-2.49126932,0.104121545,0.225089332,0.683118746,21.97144707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.18757684,1.457291991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.494917206,21.11979065,62.68249405,22.57708264,411.4770183,0,0.634186821,50.64030144,-0.634186821,129.3596986,0.971158879,0,462.2920538,22.57708264,477.0683029,4,17,3% +4/21/2018 2:00,81.01160815,278.5029919,86.42576003,334.779349,34.12172411,182.2812437,148.5369016,33.74434212,33.09282823,0.651513885,21.983822,0,21.983822,1.028895878,20.95492612,1.413919295,4.860794186,5.555760349,-5.555760349,0,0.39480965,0.257223969,8.273207058,0.295743544,1,0.178086511,0,0.941789214,0.980551178,0.724496596,1,32.06984874,0.745431561,0.044375736,0.312029739,0.881877287,0.606373882,0.961238037,0.922476074,0.176932082,7.952521311,32.24678082,8.697952872,104.6080718,0,0.443685974,63.66070162,-0.443685974,116.3392984,0.937307684,0,130.2967304,8.697952872,135.9893666,4,18,4% +4/21/2018 3:00,92.63220642,287.605464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616736995,5.019662294,-17.23253168,17.23253168,0,#DIV/0!,0,0,1,0.596300525,0,0.057964772,0.961238037,1,0.573305992,0.848809396,0,0,0.115824807,0.140726684,0.724496596,0.448993192,0.985239377,0.946477414,0,0,0,0,0,0,0.227518306,76.84899205,-0.227518306,103.151008,0.830237464,0,0,0,0,4,19,0% +4/21/2018 4:00,103.5567766,297.5017503,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807406715,5.192385073,-2.80170826,2.80170826,0.99072598,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004347824,89.75088726,-0.004347824,90.24911274,0,0,0,0,0,4,20,0% +4/21/2018 5:00,113.4585047,308.9272089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980224471,5.391796944,-1.189364831,1.189364831,0.733547055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212141736,102.2478931,0.212141736,77.75210695,0,0.814308519,0,0,0,4,21,0% +4/21/2018 6:00,121.721418,322.6219012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124439515,5.630814415,-0.483193572,0.483193572,0.612784657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407187648,114.0282892,0.407187648,65.97171077,0,0.927206491,0,0,0,4,22,0% +4/21/2018 7:00,127.5037757,339.0271087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225360695,5.917139301,-0.022124888,0.022124888,0.533937268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56749076,124.5754335,0.56749076,55.42456646,0,0.961892839,0,0,0,4,23,0% +4/22/2018 8:00,129.903276,357.5956358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.267239875,6.241221235,0.361501492,-0.361501492,0.468333294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682121467,133.0096452,0.682121467,46.99035478,0,0.976699272,0,0,0,4,0,0% +4/22/2018 9:00,128.4328676,16.44430676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241576408,0.287007296,0.748610791,-0.748610791,0.402133705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743264081,138.0102126,0.743264081,41.98978744,0,0.982729159,0,0,0,4,1,0% +4/22/2018 10:00,123.3997088,33.47991047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153731215,0.584334671,1.218810022,-1.218810022,0.3217249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746749002,138.3095457,0.746749002,41.69045426,0,0.983043098,0,0,0,4,2,0% +4/22/2018 11:00,115.656426,47.81433058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018585434,0.834517498,1.927763787,-1.927763787,0.200486666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692336462,133.8153458,0.692336462,46.18465419,0,0.977780779,0,0,0,4,3,0% +4/22/2018 12:00,106.0867153,59.71893982,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851562474,1.042292126,3.411923221,-3.411923221,0,#DIV/0!,0,0,0.050620484,1,0.285105195,0,0.926663104,0.965425067,0.724496596,1,0,0,0.008455307,0.312029739,0.976302564,0.70079916,0.961238037,0.922476074,0,0,0,0,0,0,-0.583732581,125.713503,0.583732581,54.28649699,0,0.964344339,0,0,0,4,4,0% +4/22/2018 13:00,95.3620745,69.90359612,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664382182,1.220047911,10.6541469,-10.6541469,0,#DIV/0!,0,0,0.563664175,1,0.093585987,0,0.951939229,0.990701192,0.724496596,1,0,0,0.07606229,0.312029739,0.807048607,0.531545203,0.961238037,0.922476074,0,0,0,0,0,0,-0.428336617,115.3620439,0.428336617,64.63795606,0,0.933269377,0,0,0,4,5,0% +4/22/2018 14:00,83.8088152,79.11150083,44.04513536,205.9213056,21.83726385,21.51082061,0,21.51082061,21.17878977,0.332030835,59.60412473,48.26639765,11.33772708,0.658474076,10.679253,1.462739767,1.380756166,-9.10204885,9.10204885,0,0.495792865,0.164618519,5.294697443,1,0.079779201,0,0.109426508,0.961238037,1,0.46141917,0.736922574,20.3578583,0.470771519,0.115824807,0.014173409,0.724496596,0.448993192,0.998726135,0.959964172,0.119265557,5.099093161,20.47712386,5.569864679,0,44.41574302,-0.234392442,103.555812,0.234392442,76.44418798,0,0.836682541,20.47712386,42.73174143,48.44419399,4,6,137% +4/22/2018 15:00,72.1279127,88.05749995,243.7117138,595.8977385,60.83487249,60.83767847,0,60.83767847,59.00047663,1.837201843,73.49711835,12.57199588,60.92512248,1.834395862,59.09072661,1.258869559,1.536893305,-2.94847639,2.94847639,0.965627152,0.249618172,1.789815335,57.56661364,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.71350233,1.329013558,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.296715118,55.33521868,58.01021745,56.66423224,0,12.57199588,-0.021097573,91.20889157,0.021097573,88.79110843,0,0,58.01021745,56.66423224,95.09582416,4,7,64% +4/22/2018 16:00,60.32220638,97.53812257,456.9585676,757.6616676,81.82362871,235.6775146,152.8764235,82.80109111,79.3563444,3.444746703,113.2621795,0,113.2621795,2.467284303,110.7948952,1.052821113,1.702361385,-1.55595748,1.55595748,0.79623809,0.179061373,2.868523175,92.26156578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.28033671,1.787539078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.078235275,88.68532637,78.35857198,90.47286545,152.8764235,0,0.201773998,78.35928321,-0.201773998,101.6407168,0.802198001,0,200.9957333,90.47286545,260.2084143,4,8,29% +4/22/2018 17:00,48.79500325,108.6780799,646.5956964,836.0072224,95.87169541,447.4267726,349.571651,97.85512154,92.98081006,4.874311482,159.665498,0,159.665498,2.890885345,156.7746126,0.851633465,1.89679032,-0.891594746,0.891594746,0.682625371,0.148271472,3.5567021,114.3957656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37669133,2.094436592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.576818564,109.9615612,91.95350989,112.0559978,349.571651,0,0.418144295,65.28251557,-0.418144295,114.7174844,0.930424053,0,417.2033824,112.0559978,490.5417918,4,9,18% +4/22/2018 18:00,38.13963571,123.4004845,795.7926912,877.5728195,105.5746616,646.4649363,538.0747188,108.3902174,102.391196,5.99902145,196.1326169,0,196.1326169,3.183465575,192.9491513,0.665662219,2.153744754,-0.468161083,0.468161083,0.61021395,0.132666036,3.970904193,127.7179287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.42231222,2.306409972,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87690657,122.7673311,101.2992188,125.0737411,538.0747188,0,0.613139681,52.18312976,-0.613139681,127.8168702,0.968452513,0,622.3990326,125.0737411,704.2572947,4,10,13% +4/22/2018 19:00,29.58277789,144.9796561,893.1962823,898.8428884,111.5235323,810.0934833,695.1995061,114.8939772,108.1606863,6.733290864,219.9286257,0,219.9286257,3.362845976,216.5657797,0.516316876,2.530372348,-0.147121484,0.147121484,0.555312945,0.12485893,4.112937098,132.2861952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9681658,2.436370462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.979808927,127.1585226,106.9479747,129.594893,695.1995061,0,0.773438289,39.33634372,-0.773438289,140.6636563,0.985353601,0,791.9653117,129.594893,876.7825773,4,11,11% +4/22/2018 20:00,25.51231615,175.7733775,931.7335383,906.2891235,113.8142003,922.2900091,804.8839259,117.4060832,110.3822823,7.023800978,229.3415017,0,229.3415017,3.43191807,225.9095836,0.445273917,3.067824174,0.129729482,-0.129729482,0.507968642,0.122153165,3.990023469,128.3328704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1036483,2.486412959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890758421,123.3584364,108.9944067,125.8448493,804.8839259,0,0.88810944,27.36336701,-0.88810944,152.636633,0.993700632,0,908.8080727,125.8448493,991.1710097,4,12,9% +4/22/2018 21:00,28.01468657,208.2000977,908.659908,901.8903583,112.446546,972.1101541,856.2044241,115.9057299,109.0558677,6.849862206,223.705793,0,223.705793,3.390678245,220.3151148,0.48894852,3.633777208,0.396622369,-0.396622369,0.46232727,0.123749871,3.6226469,116.5167771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8286482,2.456534846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.624595347,112.0003581,107.4532436,114.4568929,856.2044241,0,0.949344248,18.31481656,-0.949344248,161.6851834,0.997332066,0,961.373371,114.4568929,1036.283118,4,13,8% +4/22/2018 22:00,35.70762616,232.0921858,825.6452113,884.5017236,107.4246379,953.3260032,842.9165521,110.4094511,104.1853887,6.224062356,203.4264896,0,203.4264896,3.239249188,200.1872405,0.623215645,4.050772811,0.683951887,-0.683951887,0.413191028,0.130109927,3.046931847,97.99980196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1469585,2.34682501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.207491751,94.20113724,102.3544503,96.54796225,842.9165521,0,0.952984635,17.63899914,-0.952984635,162.3610009,0.997533257,0,943.1917438,96.54796225,1006.380454,4,14,7% +4/22/2018 23:00,45.98200607,248.1852033,688.7158161,849.0850607,98.69998292,864.0803509,763.1647059,100.915645,95.72381427,5.191830737,169.9632919,0,169.9632919,2.976168649,166.9871233,0.802537403,4.331648952,1.034360626,-1.034360626,0.353267605,0.143310173,2.315301779,74.46806401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.01337131,2.156224055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.677428257,71.58153566,93.69079957,73.73775971,763.1647059,0,0.898808307,25.99813604,-0.898808307,154.001864,0.994370786,0,852.5594877,73.73775971,900.8193767,4,15,6% +4/22/2018 0:00,57.35079807,260.0083801,508.1493934,782.7102594,85.88188099,705.8972545,618.7743844,87.12287017,83.2922254,3.83064477,125.7963592,0,125.7963592,2.589655582,123.2067036,1.000960255,4.538002315,1.536951798,-1.536951798,0.267319452,0.169009118,1.49835343,48.19219686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.06365523,1.876196654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085551959,46.32417271,81.14920719,48.20036936,618.7743844,0,0.790553563,37.76272706,-0.790553563,142.2372729,0.986753179,0,691.7267978,48.20036936,723.2729755,4,16,5% +4/22/2018 1:00,69.11201529,269.7907992,299.0605396,650.3335907,67.18924668,480.8403267,413.422639,67.41768766,65.16324299,2.254444671,74.53669392,0,74.53669392,2.026003689,72.51069023,1.20623222,4.708737738,2.465616948,-2.465616948,0.108508359,0.22466771,0.696167429,22.39113759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.63738777,1.467832776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.504370933,21.52321314,63.1417587,22.99104592,413.422639,0,0.635708573,50.52744215,-0.635708573,129.4725579,0.971347608,0,464.7188502,22.99104592,479.7660299,4,17,3% +4/22/2018 2:00,80.84925814,278.8028859,88.93723101,340.2703743,34.82319254,185.977429,151.5338378,34.44359121,33.7731448,0.670446415,22.61390908,0,22.61390908,1.050047739,21.56386134,1.411085752,4.866028323,5.439959968,-5.439959968,0,0.391547973,0.262511935,8.4432862,0.285782776,1,0.181795297,0,0.941306732,0.980068695,0.724496596,1,32.7258799,0.760756012,0.043059724,0.312029739,0.88515737,0.609653966,0.961238037,0.922476074,0.18071009,8.116007851,32.90658999,8.876763864,108.2280769,0,0.445333621,63.5553143,-0.445333621,116.4446857,0.937724623,0,134.3947227,8.876763864,140.2043871,4,18,4% +4/22/2018 3:00,92.45449292,287.8937567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363531,5.02469395,-18.41005926,18.41005926,0,#DIV/0!,0,0,1,0.62665103,0,0.054264804,0.961238037,1,0.582164542,0.857667947,0,0,0.115824807,0.150730309,0.724496596,0.448993192,0.984014903,0.94525294,0,0,0,0,0,0,0.229414755,76.73738163,-0.229414755,103.2626184,0.832054123,0,0,0,0,4,19,0% +4/22/2018 4:00,103.3565602,297.7821013,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80391228,5.197278121,-2.830075203,2.830075203,0.985874947,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006526066,89.62608133,-0.006526066,90.37391867,0,0,0,0,0,4,20,0% +4/22/2018 5:00,113.2272584,309.1958732,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976188461,5.396486021,-1.1932617,1.1932617,0.734213458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.209641336,102.1013345,0.209641336,77.89866552,0,0.811497418,0,0,0,4,21,0% +4/22/2018 6:00,121.4524492,322.8621254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119745122,5.635007118,-0.481758125,0.481758125,0.612539181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.404346953,113.8502103,0.404346953,66.14978969,0,0.926343819,0,0,0,4,22,0% +4/22/2018 7:00,127.1968815,339.2047075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22000438,5.920238983,-0.018288328,0.018288328,0.533281178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564315104,124.3547444,0.564315104,55.64525557,0,0.96139702,0,0,0,4,23,0% +4/23/2018 8:00,129.5706044,357.6708191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26143366,6.242533432,0.367309824,-0.367309824,0.46734001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678639288,132.7374035,0.678639288,47.2625965,0,0.976323157,0,0,0,4,0,0% +4/23/2018 9:00,128.0967924,16.40476313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235710789,0.28631713,0.756987766,-0.756987766,0.400701157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739524966,137.6909657,0.739524966,42.30903429,0,0.98238903,0,0,0,4,1,0% +4/23/2018 10:00,123.0798115,33.35183782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148147953,0.582099381,1.231698727,-1.231698727,0.319520802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742820282,137.9722177,0.742820282,42.0277823,0,0.982688968,0,0,0,4,2,0% +4/23/2018 11:00,115.3610123,47.63417185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013429494,0.831373135,1.950992867,-1.950992867,0.19651426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688298583,133.4955774,0.688298583,46.50442255,0,0.977357107,0,0,0,4,3,0% +4/23/2018 12:00,105.815151,59.51129944,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846822783,1.038668117,3.471372133,-3.471372133,0,#DIV/0!,0,0,0.05969605,1,0.280476712,0,0.927367799,0.966129762,0.724496596,1,0,0,0.00992978,0.312029739,0.97222726,0.696723856,0.961238037,0.922476074,0,0,0,0,0,0,-0.579673585,125.4275876,0.579673585,54.57241237,0,0.96374456,0,0,0,4,4,0% +4/23/2018 13:00,95.10961712,69.67957021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659975969,1.216137922,11.18340428,-11.18340428,0,#DIV/0!,0,0,0.580241299,1,0.08918103,0,0.952423335,0.991185298,0.724496596,1,0,0,0.077813037,0.312029739,0.803147186,0.527643782,0.961238037,0.922476074,0,0,0,0,0,0,-0.42434609,115.10928,0.42434609,64.89071997,0,0.932171649,0,0,0,4,5,0% +4/23/2018 14:00,83.57354073,78.87343954,47.18949737,216.3256714,22.97663144,22.63953559,0,22.63953559,22.28380123,0.355734364,62.02468236,49.89021217,12.13447019,0.692830213,11.44163998,1.458633453,1.376601212,-8.771928316,8.771928316,0,0.486901381,0.173207553,5.570950307,1,0.029354061,0,0.113509987,0.961238037,1,0.453450649,0.728954053,21.42003735,0.499438374,0.115824807,0.005089997,0.724496596,0.448993192,0.999548112,0.960786149,0.125488283,5.358830636,21.54552563,5.858269011,0,48.42573186,-0.230625482,103.3338993,0.230625482,76.66610075,0,0.833198285,21.54552563,46.20650574,51.7867595,4,6,140% +4/23/2018 15:00,71.89494629,87.80281653,247.787016,599.423889,61.50988788,61.52306101,0,61.52306101,59.65513782,1.867923192,72.42353839,10.48995751,61.93358088,1.854750067,60.07883081,1.254803528,1.532448241,-2.912127714,2.912127714,0.971843141,0.248236929,1.828384327,58.80712499,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.34278756,1.34376011,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.324658221,56.52764538,58.66744578,57.87140549,0,10.48995751,-0.017500066,91.0027311,0.017500066,88.9972689,0,0,58.66744578,57.87140549,96.54312325,4,7,65% +4/23/2018 16:00,60.08647449,97.26187972,460.8354088,758.9119659,82.37180217,239.0082154,155.646255,83.36196039,79.88798842,3.473971969,114.218694,0,114.218694,2.483813755,111.7348802,1.048706816,1.697540038,-1.545038936,1.545038936,0.794370909,0.178744516,2.887308361,92.86576196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79137315,1.79951461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.091845079,89.26610272,78.88321823,91.06561733,155.646255,0,0.205091318,78.16515526,-0.205091318,101.8348447,0.806206159,0,204.3661877,91.06561733,263.9668129,4,8,29% +4/23/2018 17:00,48.54610037,108.3772419,650.1470349,836.4926068,96.37452349,450.6478186,352.2782597,98.36955899,93.46847602,4.901082972,160.5417232,0,160.5417232,2.906047467,157.6356757,0.847289291,1.891539705,-0.887521021,0.887521021,0.681928723,0.148234966,3.57327181,114.9287044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.8454544,2.105421497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588823262,110.4738422,92.43427766,112.5792637,352.2782597,0,0.421137326,65.09358752,-0.421137326,114.9064125,0.931273882,0,420.50182,112.5792637,494.1826965,4,9,18% +4/23/2018 18:00,37.86346508,123.0896112,799.0094253,877.7434662,106.0523526,649.3836666,540.5059131,108.8777535,102.8544829,6.023270551,196.9269555,0,196.9269555,3.197869724,193.7290858,0.660842132,2.14831899,-0.466912534,0.466912534,0.610000435,0.132729789,3.985989609,128.2031276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86764124,2.316845729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887835903,123.2337227,101.7554771,125.5505684,540.5059131,0,0.615790301,51.99063258,-0.615790301,128.0093674,0.968803528,0,625.3995126,125.5505684,707.5698486,4,10,13% +4/23/2018 19:00,29.26697555,144.7468724,896.1114552,898.8675126,111.9833016,812.6606642,697.2988057,115.3618585,108.6065919,6.755266668,220.6493069,0,220.6493069,3.376709717,217.2725971,0.510805085,2.526309505,-0.147436461,0.147436461,0.555366809,0.124965819,4.1270002,132.7385129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3967871,2.446414695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989997596,127.5933076,107.3867847,130.0397222,697.2988057,0,0.775752595,39.12668464,-0.775752595,140.8733154,0.985546461,0,794.607155,130.0397222,879.7155525,4,11,11% +4/23/2018 20:00,25.17759907,175.8340627,934.4063609,906.2454442,114.2601695,924.5230344,806.6642807,117.8587537,110.8148038,7.043949843,230.0030061,0,230.0030061,3.445365686,226.5576404,0.439432001,3.068883331,0.128264245,-0.128264245,0.508219212,0.122281027,4.003461801,128.7650933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5194045,2.496155711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900494446,123.7739055,109.4198989,126.2700612,806.6642807,0,0.890116784,27.11207437,-0.890116784,152.8879256,0.993827596,0,911.1051215,126.2700612,993.7463512,4,12,9% +4/23/2018 21:00,27.72536829,208.5637819,911.1679184,901.8263865,112.8822706,974.0698435,857.7226211,116.3472223,109.4784537,6.868768648,224.3270279,0,224.3270279,3.403816951,220.923211,0.483898963,3.640124694,0.394021091,-0.394021091,0.462772115,0.123887451,3.635830937,116.940821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2348539,2.466053794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634147137,112.4079652,107.869001,114.874019,857.7226211,0,0.95109506,17.99285213,-0.95109506,162.0071479,0.997429019,0,963.3864339,114.874019,1038.569182,4,13,8% +4/23/2018 22:00,35.48154529,232.5178751,828.0772008,884.4664231,107.8539654,955.1088236,844.2646575,110.8441662,104.6017704,6.242395721,204.0290995,0,204.0290995,3.252194997,200.7769045,0.619269789,4.058202491,0.679883153,-0.679883153,0.413886823,0.130246269,3.060183917,98.4260341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5472005,2.356204204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.217092831,94.61084779,102.7642933,96.96705199,844.2646575,0,0.954546872,17.34117035,-0.954546872,162.6588297,0.997619125,0,945.0188625,96.96705199,1008.481859,4,14,7% +4/23/2018 23:00,45.79740001,248.5749581,691.1637089,849.1648207,99.12800458,865.8206177,764.4714042,101.3492135,96.1389295,5.210283986,170.5697183,0,170.5697183,2.989075081,167.5806432,0.799315419,4.338451456,1.027911192,-1.027911192,0.354370523,0.143421889,2.328829807,74.90317188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.41239586,2.165574721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687229267,71.99977789,94.09962512,74.16535262,764.4714042,0,0.900262688,25.80738207,-0.900262688,154.1926179,0.994460655,0,854.3363585,74.16535262,902.8760985,4,15,6% +4/23/2018 0:00,57.18672012,260.3556699,510.6958886,783.1239726,86.3186426,707.7902499,620.2245915,87.56565837,83.71581704,3.849841327,126.4269564,0,126.4269564,2.602825556,123.8241308,0.998096554,4.544063667,1.525643741,-1.525643741,0.269253244,0.169021613,1.51208385,48.63381436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47082763,1.885738255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095499602,46.74867224,81.56632723,48.63441049,620.2245915,0,0.791987748,37.62834042,-0.791987748,142.3716596,0.98686771,0,693.6459497,48.63441049,725.4761987,4,16,5% +4/23/2018 1:00,68.95401514,270.1069326,301.742802,651.803522,67.66900245,483.2388237,415.3356266,67.90319705,65.62853235,2.274664698,75.20150589,0,75.20150589,2.040470096,73.1610358,1.203474597,4.714255306,2.440459612,-2.440459612,0.112810516,0.224260536,0.709177002,22.80957017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.0846416,1.478313638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.513796324,21.92542645,63.59843792,23.40374009,415.3356266,0,0.637209853,50.41592147,-0.637209853,129.5840785,0.971532915,0,467.1106698,23.40374009,482.4279496,4,17,3% +4/23/2018 2:00,80.68764492,279.0991089,91.4491236,345.6446495,35.51807476,189.6290988,154.492643,35.13645588,34.44707376,0.689382122,23.24389978,0,23.24389978,1.071001002,22.17289878,1.40826507,4.871198389,5.32864986,-5.32864986,0,0.388391636,0.26775025,8.61176844,0.275938999,1,0.185507146,0,0.94082079,0.979582753,0.724496596,1,33.37531561,0.77593658,0.041748307,0.312029739,0.88843962,0.612936216,0.961238037,0.922476074,0.184468771,8.277959389,33.55978438,9.053895969,111.8620977,0,0.446969577,63.45057922,-0.446969577,116.5494208,0.938135563,0,138.5015964,9.053895969,144.4271902,4,18,4% +4/23/2018 3:00,92.27745568,288.1781032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610545427,5.029656733,-19.76596002,19.76596002,0,#DIV/0!,0,0,1,0.656396581,0,0.05054893,0.961238037,1,0.591170479,0.866673883,0,0,0.115824807,0.160903582,0.724496596,0.448993192,0.982746444,0.943984481,0,0,0,0,0,0,0.231305229,76.62607178,-0.231305229,103.3739282,0.83383541,0,0,0,0,4,19,0% +4/23/2018 4:00,103.157089,298.0580874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80043085,5.202094988,-2.859269794,2.859269794,0.980882378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00870317,89.50133882,-0.00870317,90.49866118,0,0,0,0,0,4,20,0% +4/23/2018 5:00,112.9970612,309.4596459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972170762,5.401089722,-1.19728556,1.19728556,0.734901579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.207139377,101.9547649,0.207139377,78.04523511,0,0.808616634,0,0,0,4,21,0% +4/23/2018 6:00,121.1851285,323.097059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115079496,5.639107483,-0.480368813,0.480368813,0.612301595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.401504327,113.6722549,0.401504327,66.32774505,0,0.925468341,0,0,0,4,22,0% +4/23/2018 7:00,126.8924976,339.3773446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21469188,5.92325207,-0.014477663,0.014477663,0.532629516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.5611395,124.1346384,0.5611395,55.86536155,0,0.960895597,0,0,0,4,23,0% +4/24/2018 8:00,129.2412878,357.7426753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255686001,6.243787558,0.373102017,-0.373102017,0.466349487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675161362,132.4666821,0.675161362,47.53331786,0,0.975943629,0,0,0,4,0,0% +4/24/2018 9:00,127.7645188,16.36422718,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22991152,0.285609644,0.7653612,-0.7653612,0.399269216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735796236,137.3745399,0.735796236,42.62546012,0,0.982046404,0,0,0,4,1,0% +4/24/2018 10:00,122.7637468,33.22448641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142631584,0.57987668,1.244617801,-1.244617801,0.31731151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738909585,137.6386116,0.738909585,42.36138838,0,0.982332722,0,0,0,4,2,0% +4/24/2018 11:00,115.0693148,47.45548539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008338411,0.828254468,1.974388252,-1.974388252,0.192513413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684287352,133.1795872,0.684287352,46.82041283,0,0.976931281,0,0,0,4,3,0% +4/24/2018 12:00,105.5472242,59.30530474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842146578,1.035072832,3.531942302,-3.531942302,0,#DIV/0!,0,0,0.068766055,1,0.275909094,0,0.928058852,0.966820815,0.724496596,1,0,0,0.011391138,0.312029739,0.96820498,0.692701576,0.961238037,0.922476074,0,0,0,0,0,0,-0.575650249,125.1451822,0.575650249,54.85481777,0,0.963141703,0,0,0,4,4,0% +4/24/2018 13:00,94.86080981,69.45711889,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655633462,1.212255414,11.7584705,-11.7584705,0,#DIV/0!,0,0,0.596881994,1,0.084840926,0,0.952895884,0.991657847,0.724496596,1,0,0,0.079548603,0.312029739,0.799303759,0.523800354,0.961238037,0.922476074,0,0,0,0,0,0,-0.420400001,114.8598438,0.420400001,65.14015618,0,0.931065652,0,0,0,4,5,0% +4/24/2018 14:00,83.3417207,78.63677312,50.34642764,226.4299589,24.09243645,23.74549324,0,23.74549324,23.3659606,0.379532638,64.31187306,51.37832294,12.93355012,0.726475851,12.20707427,1.45458743,1.372470604,-8.469280462,8.469280462,0.021514052,0.478533187,0.185876888,5.978439656,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.4602501,0.526329281,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.134667172,5.746703598,22.59491727,6.273032879,0,51.37832294,-0.22690603,103.1149849,0.22690603,76.88501509,0,0.829644463,22.59491727,48.89877402,54.59818689,4,6,142% +4/24/2018 15:00,71.66589602,87.54924411,251.7895684,602.8039991,62.1730351,62.19638482,0,62.19638482,60.2982887,1.898096123,71.33982496,8.415782585,62.92404238,1.874746402,61.04929597,1.250805847,1.528022567,-2.877245123,2.877245123,0.977808416,0.246924587,1.866375261,60.02904401,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.96100865,1.358247387,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.352182523,57.70220042,59.31319118,59.06044781,0,8.415782585,-0.01396106,90.79993578,0.01396106,89.20006422,0,0,59.31319118,59.06044781,97.96707306,4,7,65% +4/24/2018 16:00,59.85493941,96.98625611,464.6304115,760.1041893,82.91293975,242.2793792,158.3639902,83.915389,80.4128087,3.502580302,115.1551536,0,115.1551536,2.50013105,112.6550226,1.044665766,1.692729498,-1.53447208,1.53447208,0.79256387,0.178449231,2.905672977,93.45643112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.29585037,1.811336435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.10515018,89.83387638,79.40100055,91.64521281,158.3639902,0,0.208345109,77.97461098,-0.208345109,102.025389,0.810013565,0,207.6779808,91.64521281,267.6579397,4,8,29% +4/24/2018 17:00,48.30170029,108.0760551,653.6156677,836.9469321,96.87170763,453.7971216,354.9192224,98.87789922,93.95066822,4.927230991,161.3977253,0,161.3977253,2.921039403,158.4766859,0.843023704,1.886283004,-0.883578646,0.883578646,0.681254537,0.148208974,3.589465483,115.4495486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30895588,2.116283104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600555523,110.9744975,92.90951141,113.0907806,354.9192224,0,0.424064189,64.90855598,-0.424064189,115.091444,0.932093322,0,423.7273483,113.0907806,497.7430024,4,9,17% +4/24/2018 18:00,37.59199939,122.7764635,802.1461267,877.8939214,106.5250761,652.2270745,542.8672061,109.3598683,103.312952,6.046916331,197.7017394,0,197.7017394,3.21212408,194.4896153,0.656104162,2.142853532,-0.465721391,0.465721391,0.609796738,0.132800088,4.000735177,128.6773957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30833917,2.327172961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.898519017,123.6896073,102.2068582,126.0167802,542.8672061,0,0.61837449,51.80247193,-0.61837449,128.1975281,0.969142848,0,628.3227286,126.0167802,710.7981909,4,10,13% +4/24/2018 19:00,28.95558735,144.5093557,898.9518294,898.8771374,112.4386101,815.153571,699.3287212,115.8248498,109.0481712,6.776678609,221.3517177,0,221.3517177,3.39043895,217.9612787,0.505370336,2.522164057,-0.147774907,0.147774907,0.555424687,0.125077459,4.14076096,133.1811062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.82125,2.456361478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99996722,128.0187451,107.8212172,130.4751066,699.3287212,0,0.778002568,38.92194552,-0.778002568,141.0780545,0.98573286,0,797.1725177,130.4751066,882.5658654,4,11,11% +4/24/2018 20:00,24.8465242,175.8921658,937.0116029,906.1894384,114.7021544,926.6861142,808.3790637,118.3070505,111.2434612,7.063589258,230.6480046,0,230.6480046,3.45869316,227.1893115,0.433653655,3.069897421,0.126796089,-0.126796089,0.508470281,0.122412736,4.016637836,129.1888799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9314463,2.505811421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.910040439,124.1812653,109.8414867,126.6870767,808.3790637,0,0.892064098,26.86622252,-0.892064098,153.1337775,0.993950216,0,913.3300317,126.6870767,996.2441896,4,12,9% +4/24/2018 21:00,27.43949293,208.9276546,913.6169779,901.7513507,113.3144874,975.9663808,859.1815126,116.7848682,109.8976375,6.887230693,224.9338637,0,224.9338637,3.416849881,221.5170138,0.478909497,3.646475472,0.391434076,-0.391434076,0.46321452,0.124028439,3.648794112,117.3577613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6377893,2.475496107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.643538913,112.8087441,108.2813282,115.2842402,859.1815126,0,0.952792044,17.67537855,-0.952792044,162.3246214,0.997522652,0,965.334349,115.2842402,1040.785578,4,13,8% +4/24/2018 22:00,35.25840473,232.9417844,830.4596607,884.4202062,108.2802522,956.8369549,845.5613961,111.2755588,105.0152031,6.26035571,204.6196086,0,204.6196086,3.265049117,201.3545595,0.615375251,4.065601103,0.67584939,-0.67584939,0.414576637,0.130385926,3.073256225,98.84648445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9446077,2.36551697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.226563673,95.01500066,103.1711714,97.38051763,845.5613961,0,0.956062955,17.04732151,-0.956062955,162.9526785,0.997702189,0,946.7896269,97.38051763,1010.523228,4,14,7% +4/24/2018 23:00,45.61496145,248.96165,693.5716554,849.2323006,99.55340677,867.5153213,765.735381,101.7799403,96.55150424,5.228436104,171.1663803,0,171.1663803,3.001902527,168.1644777,0.796131265,4.345200503,1.021532171,-1.021532171,0.3554614,0.143537306,2.342217729,75.3337735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80897839,2.174868162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696928772,72.41368854,94.50590716,74.58855671,765.735381,0,0.901679529,25.62028036,-0.901679529,154.3797196,0.994547926,0,856.0664422,74.58855671,904.8831608,4,15,6% +4/24/2018 0:00,57.02416376,260.6994892,513.2116665,783.5203681,86.75305733,709.6457936,621.6398547,88.00593889,84.13713256,3.868806324,127.0500351,0,127.0500351,2.615924763,124.4341103,0.995259411,4.550064445,1.514491511,-1.514491511,0.271160388,0.169039527,1.525714421,49.07222037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.87581213,1.895228586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105374904,47.17008477,81.98118704,49.06531336,621.6398547,0,0.793393356,37.49623357,-0.793393356,142.5037664,0.986979558,0,695.5270161,49.06531336,727.6392824,4,16,5% +4/24/2018 1:00,68.79708417,270.419446,304.4035179,653.2368165,68.1460413,485.6025752,417.2166662,68.38590902,66.09118672,2.294722298,75.86101175,0,75.86101175,2.054854577,73.80615717,1.200735635,4.719709694,2.415787431,-2.415787431,0.117029708,0.223867457,0.722144567,23.22665163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52936258,1.488735146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.52319128,22.32634101,64.05255386,23.81507616,417.2166662,0,0.638691292,50.3056985,-0.638691292,129.6943015,0.971714918,0,469.4682125,23.81507616,485.0547036,4,17,3% +4/24/2018 2:00,80.52678589,279.3915557,93.96041838,350.9037505,36.20639915,193.2363564,157.4134004,35.82295595,35.11464263,0.708313323,23.87354779,0,23.87354779,1.091756522,22.78179127,1.40545755,4.87630255,5.221595537,-5.221595537,0,0.385336717,0.27293913,8.778660657,0.266212164,1,0.189221191,0,0.940331502,0.979093465,0.724496596,1,34.01817241,0.790973884,0.040441735,0.312029739,0.891723257,0.616219853,0.961238037,0.922476074,0.18820851,8.438382536,34.20638092,9.22935642,115.5080385,0,0.448594238,63.3464726,-0.448594238,116.6535274,0.938540699,0,142.6153761,9.22935642,148.6558053,4,18,4% +4/24/2018 3:00,92.10112614,288.4584104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607467896,5.034549016,-21.34374903,21.34374903,0,#DIV/0!,0,0,1,0.685549398,0,0.046817888,0.961238037,1,0.600323261,0.875826665,0,0,0.115824807,0.17124664,0.724496596,0.448993192,0.981432946,0.942670983,0,0,0,0,0,0,0.233189888,76.51505316,-0.233189888,103.4849468,0.835582469,0,0,0,0,4,19,0% +4/24/2018 4:00,102.9584133,298.3296284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796963304,5.206834272,-2.889322768,2.889322768,0.975743017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.010878955,89.37666951,-0.010878955,90.62333049,0,0,0,0,0,4,20,0% +4/24/2018 5:00,112.7679835,309.7184662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968172603,5.40560699,-1.201440617,1.201440617,0.735612136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204636416,101.808216,0.204636416,78.19178399,0,0.805664212,0,0,0,4,21,0% +4/24/2018 6:00,120.9195434,323.3266717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110444162,5.643114981,-0.479028507,0.479028507,0.612072389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398660718,113.4944802,0.398660718,66.50551982,0,0.924580068,0,0,0,4,22,0% +4/24/2018 7:00,126.5907202,339.5450197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209424871,5.926178553,-0.010695943,0.010695943,0.531982804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557965272,123.9151993,0.557965272,56.08480075,0,0.960388688,0,0,0,4,23,0% +4/25/2018 8:00,128.915423,357.8112037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249998588,6.244983605,0.378874343,-0.378874343,0.465362361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671689351,132.197584,0.671689351,47.80241604,0,0.975560827,0,0,0,4,0,0% +4/25/2018 9:00,127.436146,16.32267365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224180333,0.284884398,0.773726062,-0.773726062,0.39783874,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732079826,137.0610377,0.732079826,42.93896227,0,0.981701437,0,0,0,4,1,0% +4/25/2018 10:00,122.4516197,33.09782384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137183938,0.577666001,1.257559725,-1.257559725,0.315098311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735019042,137.3088252,0.735019042,42.69117485,0,0.981974551,0,0,0,4,2,0% +4/25/2018 11:00,114.7814407,47.27825454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00331406,0.825161206,1.997937633,-1.997937633,0.188486232,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680304995,132.867481,0.680304995,47.13251897,0,0.976503553,0,0,0,4,3,0% +4/25/2018 12:00,105.28304,59.10096111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837535695,1.031506362,3.59362716,-3.59362716,0,#DIV/0!,0,0,0.077824892,1,0.271404109,0,0.928736156,0.967498119,0.724496596,1,0,0,0.012838654,0.312029739,0.964237266,0.688733862,0.961238037,0.922476074,0,0,0,0,0,0,-0.571664795,124.8663988,0.571664795,55.13360125,0,0.962536157,0,0,0,4,4,0% +4/25/2018 13:00,94.61575266,69.23626796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651356408,1.208400838,12.38513035,-12.38513035,0,#DIV/0!,0,0,0.613575605,1,0.080567208,0,0.9533569,0.992118863,0.724496596,1,0,0,0.081268049,0.312029739,0.795519769,0.520016365,0.961238037,0.922476074,0,0,0,0,0,0,-0.416500472,114.613844,0.416500472,65.38615605,0,0.929952117,0,0,0,4,5,0% +4/25/2018 14:00,83.1134764,78.40154579,53.50775748,236.2236371,25.18375644,24.82773734,0,24.82773734,24.42437326,0.403364078,66.46668259,52.73372413,13.73295847,0.759383175,12.97357529,1.450603816,1.368365113,-8.19102667,8.19102667,0.069098253,0.470656174,0.204599534,6.58062432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.47763661,0.550170525,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.148231666,6.325546402,23.62586827,6.875716927,0,52.73372413,-0.223236441,102.8991962,0.223236441,77.10080378,0,0.826022232,23.62586827,50.43494541,56.63453134,4,6,140% +4/25/2018 15:00,71.44085252,87.29684529,255.717479,606.0418139,62.8243942,62.85771329,0,62.85771329,60.93000692,1.927706372,70.24870832,6.352657656,63.89605066,1.894387282,62.00166338,1.246878097,1.523617377,-2.843768732,2.843768732,0.983533216,0.245678921,1.903761864,61.23152568,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56824023,1.372477137,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.37926899,58.85807154,59.94750922,60.23054868,0,6.352657656,-0.01048221,90.6005974,0.01048221,89.3994026,0,0,59.94750922,60.23054868,99.36719872,4,7,66% +4/25/2018 16:00,59.62768895,96.71133415,468.3424162,761.2392424,83.44700257,245.4893685,161.028038,84.46133051,80.93076755,3.530562962,116.0712761,0,116.0712761,2.516235014,113.5550411,1.040699498,1.687931205,-1.524250357,1.524250357,0.790815852,0.178175198,2.923614277,94.03348502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.79373212,1.823003702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.118148592,90.38856254,79.91188071,92.21156624,161.028038,0,0.211534074,77.78773196,-0.211534074,102.212268,0.813631461,0,210.9293585,92.21156624,271.2799843,4,8,29% +4/25/2018 17:00,48.06189439,107.7746193,657.0008971,837.3705225,97.36321145,456.8736511,357.4935494,99.38010167,94.42735139,4.952750281,162.2333341,0,162.2333341,2.935860057,159.297474,0.838838302,1.881021957,-0.879766864,0.879766864,0.680602684,0.148193422,3.60528159,115.958249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.76716188,2.127020617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.612014239,111.4634796,93.37917611,113.5905003,357.4935494,0,0.426923972,64.72749454,-0.426923972,115.2725055,0.932883128,0,426.8788769,113.5905003,501.2215875,4,9,17% +4/25/2018 18:00,37.32534277,122.4611269,805.2025001,878.0243658,106.9928135,654.9946117,545.1580697,109.8365419,103.7665854,6.069956565,198.4568966,0,198.4568966,3.226228088,195.2306685,0.651450126,2.13734987,-0.464587919,0.464587919,0.609602903,0.132876902,4.015140662,129.1407257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74438882,2.337391267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.908955742,124.1349776,102.6533446,126.4723689,545.1580697,0,0.620891733,51.61871721,-0.620891733,128.3812828,0.969470662,0,631.1680995,126.4723689,713.9417355,4,10,13% +4/25/2018 19:00,28.64872983,144.2670526,901.7174522,898.8719096,112.8894576,817.5720948,701.2891438,116.282951,109.4854239,6.797527042,222.0358697,0,222.0358697,3.404033664,218.631836,0.500014662,2.51793507,-0.148137261,0.148137261,0.555486653,0.125193826,4.154220146,133.6139999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2415539,2.466210802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.009718354,128.434859,108.2512723,130.9010698,701.2891438,0,0.780188074,38.7222015,-0.780188074,141.2777985,0.985912889,0,799.6612778,130.9010698,885.33341,4,11,11% +4/25/2018 20:00,24.51918119,175.9474689,939.549576,906.1212551,115.1401692,928.7795257,810.0285358,118.7509899,111.6682683,7.082721571,231.2765733,0,231.2765733,3.471900924,227.8046724,0.427940442,3.070862642,0.125324586,-0.125324586,0.508721923,0.122548264,4.029552941,129.6042741,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.339787,2.5153804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919397389,124.580558,110.2591844,127.0959384,810.0285358,0,0.893951589,26.62591934,-0.893951589,153.3740807,0.99406856,0,915.4830842,127.0959384,998.664834,4,12,9% +4/25/2018 21:00,27.15710169,209.2914515,916.0075671,901.6654202,113.7432208,977.8003533,860.5816583,117.218695,110.313443,6.905251964,225.5264176,0,225.5264176,3.429777774,222.0966398,0.47398084,3.652824925,0.388860934,-0.388860934,0.463654553,0.124172796,3.661537938,117.7676466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0374774,2.484862322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652771772,113.2027414,108.6902492,115.6876037,860.5816583,0,0.954435691,17.36252976,-0.954435691,162.6374702,0.997613024,0,967.2177194,115.6876037,1042.932942,4,13,8% +4/25/2018 22:00,35.03820339,233.3636557,832.793134,884.3632793,108.7035284,958.5111947,846.8075324,111.7036623,105.4257159,6.277946417,205.1981495,0,205.1981495,3.277812454,201.9203371,0.611532013,4.072964146,0.671850202,-0.671850202,0.415260538,0.130528848,3.086149981,99.26119197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3392082,2.374763965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235905156,95.41363331,103.5751134,97.78839727,846.8075324,0,0.957533575,16.75751051,-0.957533575,163.2424895,0.99778251,0,948.5048584,97.78839727,1012.505409,4,14,7% +4/25/2018 23:00,45.43467452,249.3450847,695.940149,849.2877719,99.97622042,869.1653555,766.9574962,102.2078593,96.9615685,5.24629081,171.7533984,0,171.7533984,3.014651919,168.7387464,0.792984665,4.351892702,1.015222963,-1.015222963,0.356540338,0.143656348,2.355466024,75.75988421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.20314776,2.184105053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706527116,72.82328237,94.90967487,75.00738742,766.9574962,0,0.903059624,25.43679804,-0.903059624,154.563202,0.99463267,0,857.7506573,75.00738742,906.8414922,4,15,6% +4/25/2018 0:00,56.86311575,261.0396901,515.6970583,783.8998575,87.18515396,711.4647595,623.0210174,88.44374215,84.55619989,3.887542257,127.6656764,0,127.6656764,2.628954071,125.0367223,0.992448593,4.556002071,1.503493379,-1.503493379,0.273041179,0.169062733,1.53924446,49.50739294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.27863558,1.904668275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115177371,47.5883892,82.39381296,49.49305747,623.0210174,0,0.794771183,37.36635132,-0.794771183,142.6336487,0.987088811,0,697.3708884,49.49305747,729.7631046,4,16,5% +4/25/2018 1:00,68.64121943,270.7282187,307.0427267,654.6343484,68.62039668,487.9323788,419.0665225,68.86585631,66.55123854,2.31461777,76.51522206,0,76.51522206,2.069158142,74.44606392,1.198015282,4.725098795,2.391590478,-2.391590478,0.121167631,0.223488103,0.735067539,23.64229884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.97158188,1.49909803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53255393,22.72587692,64.50413581,24.22497495,419.0665225,0,0.640153581,50.19672739,-0.640153581,129.8032726,0.971893743,0,471.792267,24.22497495,487.6470286,4,17,3% +4/25/2018 2:00,80.3666944,279.6801222,96.47019763,356.0494638,36.88821439,196.79947,160.2963382,36.50313172,35.77589862,0.727233099,24.50263207,0,24.50263207,1.112315767,23.39031631,1.402663426,4.881338985,5.118577277,-5.118577277,0,0.38237938,0.278078942,8.943974656,0.256602067,1,0.192936605,0,0.939838978,0.978600941,0.724496596,1,34.65448667,0.805868987,0.039140242,0.312029739,0.895007541,0.619504137,0.961238037,0.922476074,0.191929774,8.59728864,34.84641645,9.403157626,119.1639665,0,0.45020806,63.24296638,-0.45020806,116.7570336,0.938940238,0,146.7342595,9.403157626,152.8884381,4,18,4% +4/25/2018 3:00,91.92553202,288.7345859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6044032,5.039369188,-23.20237115,23.20237115,0,#DIV/0!,0,0,1,0.714121771,0,0.043072387,0.961238037,1,0.609622338,0.885125742,0,0,0.115824807,0.181759533,0.724496596,0.448993192,0.980073363,0.9413114,0,0,0,0,0,0,0.235068952,76.40431271,-0.235068952,103.5956873,0.837296452,0,0,0,0,4,19,0% +4/25/2018 4:00,102.7605799,298.5966446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79351046,5.211494584,-2.92026683,2.92026683,0.970451271,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013053301,89.25207971,-0.013053301,90.74792029,0,0,0,0,0,4,20,0% +4/25/2018 5:00,112.540092,309.9722741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964195146,5.410036772,-1.205731361,1.205731361,0.736345896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202132956,101.6617163,0.202132956,78.33828372,0,0.802638061,0,0,0,4,21,0% +4/25/2018 6:00,120.6557774,323.5509328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.105840577,5.647029075,-0.477740241,0.477740241,0.611852082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395817027,113.3169397,0.395817027,66.68306034,0,0.923679007,0,0,0,4,22,0% +4/25/2018 7:00,126.2916415,339.7077298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204204961,5.92901838,-0.006946368,0.006946368,0.531341589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554793704,123.6965068,0.554793704,56.30349322,0,0.959876411,0,0,0,4,23,0% +4/26/2018 8:00,128.5931037,357.8764004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244373055,6.246121502,0.384622901,-0.384622901,0.4643793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66822488,131.9302076,0.66822488,48.0697924,0,0.97517489,0,0,0,4,0,0% +4/26/2018 9:00,127.1117707,16.28007408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218518917,0.284140895,0.782077088,-0.782077088,0.396410631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728377643,136.7505581,0.728377643,43.24944194,0,0.981354291,0,0,0,4,1,0% +4/26/2018 10:00,122.143533,32.97181473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13180681,0.575466727,1.270516554,-1.270516554,0.312882563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731150759,136.9829532,0.731150759,43.01704681,0,0.981614651,0,0,0,4,2,0% +4/26/2018 11:00,114.4974959,47.10245962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998358289,0.822093006,2.021627676,-2.021627676,0.184434996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676353723,132.559363,0.676353723,47.44063701,0,0.976074185,0,0,0,4,3,0% +4/26/2018 12:00,105.0227026,58.89827097,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83299195,1.027968752,3.656416578,-3.656416578,0,#DIV/0!,0,0,0.086866709,1,0.266963522,0,0.929399613,0.968161576,0.724496596,1,0,0,0.014271593,0.312029739,0.960325663,0.684822259,0.961238037,0.922476074,0,0,0,0,0,0,-0.567719436,124.5913477,0.567719436,55.40865229,0,0.961928328,0,0,0,4,4,0% +4/26/2018 13:00,94.37454494,69.01704041,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647146539,1.204574595,13.07015687,-13.07015687,0,#DIV/0!,0,0,0.630310785,1,0.076361406,0,0.953806412,0.992568375,0.724496596,1,0,0,0.082970413,0.312029739,0.791796656,0.516293252,0.961238037,0.922476074,0,0,0,0,0,0,-0.412649611,114.3713882,0.412649611,65.62861176,0,0.928831826,0,0,0,4,5,0% +4/26/2018 14:00,82.88892528,78.16779925,56.66585426,245.6994056,26.2499183,25.88555755,0,25.88555755,25.45838641,0.427171145,68.49108542,53.96026111,14.53082431,0.791531889,13.73929242,1.44668466,1.364285466,-7.934536238,7.934536238,0.1129607,0.463240494,0.223783525,7.197647402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.47156937,0.573462159,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162130402,6.918652458,24.63369977,7.492114617,0,53.96026111,-0.219619014,102.6866568,0.219619014,77.31334317,0,0.822333009,24.63369977,51.86541851,58.57857888,4,6,138% +4/26/2018 15:00,71.21990546,87.04568053,259.568908,609.1409051,63.46403745,63.50710263,0,63.50710263,61.55036256,1.956740071,69.1528407,4.303678874,64.84916182,1.913674886,62.93548694,1.243021843,1.519233725,-2.811642655,2.811642655,0.989027098,0.24449784,1.940518596,62.41374855,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.16454967,1.386450941,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.405899117,59.99446913,60.57044879,61.38092007,0,4.303678874,-0.007065162,90.4048073,0.007065162,89.5951927,0,0,60.57044879,61.38092007,100.7430334,4,7,66% +4/26/2018 16:00,59.40480969,96.43719471,471.9703001,762.3179937,83.97395188,248.6365764,163.6368375,84.99973888,81.4418274,3.557911483,116.966788,0,116.966788,2.53212448,114.4346635,1.036809521,1.683146569,-1.514367604,1.514367604,0.789125802,0.17792211,2.941129682,94.59684065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28498229,1.834515566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.130838443,90.9300814,80.41582073,92.76459697,163.6368375,0,0.214656926,77.60459928,-0.214656926,102.3954007,0.817070176,0,214.1186004,92.76459697,274.8311738,4,8,28% +4/26/2018 17:00,47.82677243,107.4730342,660.3020656,837.7636932,97.8490002,459.8764042,360.0002765,99.8761277,94.89849182,4.977635883,163.0483889,0,163.0483889,2.95050838,160.0978805,0.834734649,1.875758303,-0.876085019,0.876085019,0.679973051,0.148188239,3.620718809,116.454763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22003997,2.137633278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.623198452,111.9407478,93.84323843,114.0783811,360.0002765,0,0.429715777,64.550476,-0.429715777,115.449524,0.933644021,0,429.9553441,114.0783811,504.6173629,4,9,17% +4/26/2018 18:00,37.06359736,122.1436889,808.1782959,878.1349796,107.4555487,657.6857609,547.3780042,110.3077568,104.2153674,6.09238937,199.1923659,0,199.1923659,3.240181261,195.9521846,0.646881807,2.131809531,-0.463512437,0.463512437,0.609418985,0.132960201,4.029206066,129.5931174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1757752,2.347500294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919146079,124.5698337,103.0949213,126.917334,547.3780042,0,0.623341533,51.43943637,-0.623341533,128.5605636,0.969787151,0,633.9350766,126.917334,716.9999334,4,10,13% +4/26/2018 19:00,28.34651787,144.0199096,904.4084219,898.8519786,113.3358462,819.9161629,703.1799979,116.736165,109.9183523,6.817812708,222.7017867,0,222.7017867,3.417493928,219.2842928,0.494740068,2.513621612,-0.148524005,0.148524005,0.55555279,0.125314895,4.167378784,134.037227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6577011,2.475962717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.019251743,128.8416809,108.6769529,131.3176436,703.1799979,0,0.782309006,38.52752531,-0.782309006,141.4724747,0.986086636,0,802.0733517,131.3176436,888.0181231,4,11,11% +4/26/2018 20:00,24.1956569,175.9997404,942.0206479,906.0410477,115.5742314,930.8035889,811.6129974,119.1905915,112.0892419,7.101349555,231.8888019,0,231.8888019,3.484989502,228.4038124,0.422293878,3.071774953,0.12384927,-0.12384927,0.508974217,0.122687578,4.042208755,130.0113285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7444429,2.524863031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928566482,124.9718342,110.6730094,127.4966973,811.6129974,0,0.895779501,26.3912696,-0.895779501,153.6087304,0.994182692,0,917.5646042,127.4966973,1001.008643,4,12,9% +4/26/2018 21:00,26.87823025,209.6548942,918.340227,901.5687708,114.1684989,979.5723962,861.9236623,117.6487339,110.7258974,6.922836539,226.1048217,0,226.1048217,3.442601478,222.6622202,0.469113615,3.659168197,0.386301235,-0.386301235,0.464092288,0.124320481,3.674064217,118.1705347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4339442,2.494153052,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.661847018,113.5900128,109.0957913,116.0841659,861.9236623,0,0.956026529,17.05443934,-0.956026529,162.9455607,0.997700196,0,969.0371981,116.0841659,1045.011963,4,13,8% +4/26/2018 22:00,34.82093437,233.7832264,835.0782268,884.2958578,109.1238277,960.1323945,848.0038804,112.1285141,105.8333417,6.295172412,205.7648703,0,205.7648703,3.290486029,202.4743843,0.607739953,4.080287036,0.667885143,-0.667885143,0.415938603,0.130674977,3.098866688,99.67020496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7310336,2.383945927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245118366,95.80679215,103.9761519,98.19073807,848.0038804,0,0.958959462,16.47178864,-0.958959462,163.5282114,0.997860153,0,950.1654335,98.19073807,1014.429308,4,14,7% +4/26/2018 23:00,45.25651855,249.7250679,698.2697478,849.3315189,100.3964806,870.771672,768.1386634,102.6330086,97.36915633,5.263852309,172.3309089,0,172.3309089,3.027324315,169.3035846,0.789875257,4.35852466,1.0089829,-1.0089829,0.357607452,0.143778935,2.368575455,76.18152856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.59493668,2.193286161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716024854,73.22858296,95.31096153,75.42186912,768.1386634,0,0.904403812,25.25689411,-0.904403812,154.7431059,0.994714961,0,859.3899822,75.42186912,908.7520871,4,15,6% +4/26/2018 0:00,56.70355894,261.3761258,518.1524597,784.2628696,87.61496592,713.2480836,624.36898,88.87910354,84.97305143,3.90605211,128.2739773,0,128.2739773,2.641914487,125.6320628,0.989663801,4.561873981,1.492647535,-1.492647535,0.274895928,0.169091093,1.552673557,49.93931887,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67932914,1.914058053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.124906706,48.00357283,82.80423585,49.91763088,624.36898,0,0.796122071,37.23863309,-0.796122071,142.7613669,0.987195561,0,699.1785214,49.91763088,731.8486125,4,16,5% +4/26/2018 1:00,68.48641463,271.0331314,309.6605317,655.9970154,69.09210754,490.2290974,420.8860199,69.34307746,67.00872557,2.334351889,77.164163,0,77.164163,2.083381965,75.08078104,1.195313428,4.730420525,2.367858898,-2.367858898,0.12522597,0.223122098,0.747943589,24.05643685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41133582,1.509403142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.541882584,23.12396213,64.9532184,24.63336527,420.8860199,0,0.641597462,50.08895841,-0.641597462,129.9110416,0.972069517,0,474.0836886,24.63336527,490.2057335,4,17,3% +4/26/2018 2:00,80.20738072,279.9647052,98.97762927,361.0837287,37.56358445,200.3188386,163.1417996,37.17703896,36.43090378,0.746135178,25.13095281,0,25.13095281,1.132680666,23.99827214,1.399882878,4.886305896,5.019389476,-5.019389476,0,0.379515904,0.283170166,9.107725946,0.247108406,1,0.196652581,0,0.939343331,0.978105294,0.724496596,1,35.28430984,0.820623287,0.037844045,0.312029739,0.89829175,0.622788346,0.961238037,0.922476074,0.19563308,8.754692608,35.47994292,9.575315895,122.8280896,0,0.451811551,63.14002926,-0.451811551,116.8599707,0.939334392,0,150.8565918,9.575315895,157.1234446,4,18,4% +4/26/2018 3:00,91.75069824,289.0065385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601351775,5.044115656,-25.42369128,25.42369128,0,#DIV/0!,0,0,1,0.742125875,0,0.039313126,0.961238037,1,0.619067098,0.894570502,0,0,0.115824807,0.192442158,0.724496596,0.448993192,0.978666662,0.939904699,0,0,0,0,0,0,0.236942688,76.29383471,-0.236942688,103.7061653,0.838978506,0,0,0,0,4,19,0% +4/26/2018 4:00,102.5636329,298.8590577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790073086,5.216074557,-2.952136552,2.952136552,0.965001227,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015226129,89.12757335,-0.015226129,90.87242665,0,0,0,0,0,4,20,0% +4/26/2018 5:00,112.3134503,310.2210103,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960239503,5.414378039,-1.2101625,1.2101625,0.737103665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.199629461,101.5152918,0.199629461,78.48470822,0,0.799535967,0,0,0,4,21,0% +4/26/2018 6:00,120.3939109,323.7698115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101270145,5.65084923,-0.47650718,0.47650718,0.611641217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.392974115,113.1396846,0.392974115,66.86031543,0,0.922765157,0,0,0,4,22,0% +4/26/2018 7:00,125.9953503,339.8654709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199033704,5.931771482,-0.003232259,0.003232259,0.530706439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551626045,123.4786381,0.551626045,56.5213619,0,0.959358885,0,0,0,4,23,0% +4/27/2018 8:00,128.2744203,357.9382592,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238810981,6.247201142,0.390343648,-0.390343648,0.463400994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664769549,131.6646483,0.664769549,48.33535173,0,0.974785965,0,0,0,4,0,0% +4/27/2018 9:00,126.7914873,16.23639833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212928916,0.28337861,0.790408794,-0.790408794,0.394985825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724691572,136.4431963,0.724691572,43.55680366,0,0.981005131,0,0,0,4,1,0% +4/27/2018 10:00,121.8395874,32.84642223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12650196,0.573278215,1.283479941,-1.283479941,0.310665693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727306821,136.661088,0.727306821,43.33891203,0,0.981253223,0,0,0,4,2,0% +4/27/2018 11:00,114.2175846,46.9280792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993472916,0.819049494,2.045444031,-2.045444031,0.180362159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672435725,132.2553347,0.672435725,47.74466525,0,0.975643451,0,0,0,4,3,0% +4/27/2018 12:00,104.7663144,58.69723484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828517131,1.02446001,3.720296676,-3.720296676,0,#DIV/0!,0,0,0.095885429,1,0.262589086,0,0.93004913,0.968811093,0.724496596,1,0,0,0.015689208,0.312029739,0.956471711,0.680968307,0.961238037,0.922476074,0,0,0,0,0,0,-0.563816362,124.3201377,0.563816362,55.67986233,0,0.961318643,0,0,0,4,4,0% +4/27/2018 13:00,94.13728441,68.79945744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643005562,1.200777056,13.82153132,-13.82153132,0,#DIV/0!,0,0,0.64707552,1,0.072225035,0,0.954244451,0.993006414,0.724496596,1,0,0,0.084654726,0.312029739,0.788135838,0.512632434,0.961238037,0.922476074,0,0,0,0,0,0,-0.408849505,114.132583,0.408849505,65.86741704,0,0.927705612,0,0,0,4,5,0% +4/27/2018 14:00,82.66818055,77.93557363,59.81359382,254.8526847,27.29045587,26.91844807,0,26.91844807,26.46754794,0.450900136,70.38785167,55.06244541,15.32540625,0.822907936,14.50249832,1.442831937,1.360232364,-7.697547749,7.697547749,0.153488118,0.456258421,0.24335815,7.827234629,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.44161382,0.596193998,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176312151,7.523835649,25.61792597,8.120029647,0,55.06244541,-0.216055976,102.4774864,0.216055976,77.52251357,0,0.81857849,25.61792597,53.19296309,60.43165646,4,6,136% +4/27/2018 15:00,71.00314278,86.79580913,263.3420791,612.1046897,64.09203113,64.14460374,0,64.14460374,62.15941991,1.985183828,68.0547929,2.271845743,65.78294716,1.932611213,63.85033595,1.239238621,1.514872646,-2.780814589,2.780814589,0.994299008,0.243379377,1.976620762,63.57491829,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.74999877,1.400170245,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.432055013,61.11062965,61.18205378,62.5107999,0,2.271845743,-0.003711531,90.21265557,0.003711531,89.78734443,0,0,61.18205378,62.5107999,102.0941221,4,7,67% +4/27/2018 16:00,59.18638624,96.16391829,475.5129886,763.3412822,84.49374997,251.7194401,166.1888707,85.53056942,81.94595166,3.584617765,117.8414277,0,117.8414277,2.54779831,115.2936294,1.032997312,1.678376996,-1.504817971,1.504817971,0.787492719,0.177689678,2.958216813,95.14642149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.7695657,1.845871203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.143218011,91.45835941,80.91278371,93.30423061,166.1888707,0,0.217712411,77.4252927,-0.217712411,102.5747073,0.820339229,0,217.2440338,93.30423061,278.3097867,4,8,28% +4/27/2018 17:00,47.59642178,107.1714005,663.5185639,838.1267538,98.32904133,462.8044178,362.4384766,100.3659411,95.36405794,5.001883206,163.8427412,0,163.8427412,2.964983392,160.8777578,0.830714272,1.870493803,-0.87253252,0.87253252,0.679365538,0.148193354,3.63577604,116.9390554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66755984,2.148120374,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634107365,112.406268,94.3016672,114.5543884,362.4384766,0,0.432438739,64.3775715,-0.432438739,115.6224285,0.934376686,0,432.95573,114.5543884,507.9292861,4,9,17% +4/27/2018 18:00,36.80686279,121.8242411,811.0733138,878.2259433,107.9132681,660.3000463,549.5265482,110.7734981,104.6592849,6.114213238,199.9080984,0,199.9080984,3.25398319,196.6541152,0.642400943,2.126234115,-0.462495289,0.462495289,0.609245042,0.133049955,4.042931618,130.0345783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6024855,2.357499744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.929090194,124.9941828,103.5315757,127.3516825,549.5265482,0,0.625723429,51.2646951,-0.625723429,128.7353049,0.970092492,0,636.6231542,127.3516825,719.9722834,4,10,13% +4/27/2018 19:00,28.04906446,143.7678766,907.0248874,898.8174964,113.777781,822.1857458,705.001248,117.1844979,110.3469611,6.83753673,223.349505,0,223.349505,3.430819893,219.9186851,0.489548527,2.509222805,-0.148935635,0.148935635,0.555623183,0.125440639,4.180238129,134.4508277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0696963,2.485617333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.028568295,129.2392497,109.0982646,131.724867,705.001248,0,0.784365292,38.33798642,-0.784365292,141.6620136,0.986254191,0,804.4087001,131.724867,890.6199911,4,11,11% +4/27/2018 20:00,23.87603575,176.0487379,944.4252366,905.9489737,116.0043613,932.7586677,813.1327895,119.6258781,112.5064018,7.119476361,232.4847923,0,232.4847923,3.497959503,228.9868328,0.416715436,3.072630121,0.122369658,-0.122369658,0.509227246,0.122830645,4.054607142,130.4101033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1454328,2.534259752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937549072,125.3551517,111.0829818,127.8894115,813.1327895,0,0.89754811,26.1623742,-0.89754811,153.8376258,0.99429268,0,919.5749622,127.8894115,1003.276024,4,12,9% +4/27/2018 21:00,26.60290961,210.0176931,920.6155476,901.461583,114.5903525,981.2831892,863.2081698,118.0750194,111.1350306,6.939988868,226.66922,0,226.66922,3.455321921,223.213898,0.464308363,3.665500231,0.383754532,-0.383754532,0.4645278,0.12447145,3.686374965,118.5664907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8272186,2.503368969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.670766114,113.9706208,109.4979847,116.4739897,863.2081698,0,0.957565121,16.75124048,-0.957565121,163.2487595,0.99778423,0,970.7934839,116.4739897,1047.023381,4,13,8% +4/27/2018 22:00,34.60658624,234.2002309,837.3155925,884.2181626,109.5411868,961.7014488,849.1512943,112.5501545,106.2381159,6.31203862,206.3199304,0,206.3199304,3.303070947,203.0168595,0.603998873,4.087565139,0.663953748,-0.663953748,0.416610912,0.130824253,3.11140805,100.0735783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.120118,2.393063657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.254204541,96.19452993,104.3743225,98.58759359,849.1512943,0,0.960341384,16.19020136,-0.960341384,163.8097986,0.997935181,0,951.7722733,98.58759359,1016.295882,4,14,7% +4/27/2018 23:00,45.0804695,250.1014055,700.561054,849.3638321,100.8142253,872.3352639,769.2798343,103.0554296,97.77430447,5.281125143,172.8990592,0,172.8990592,3.039920859,169.8591384,0.786802621,4.36509299,1.002811297,-1.002811297,0.358662858,0.143904981,2.381546975,76.59873724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.98438048,2.202412314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725422676,73.62961981,95.70980316,75.83203212,769.2798343,0,0.905712965,25.08052077,-0.905712965,154.9194792,0.994794872,0,860.9854376,75.83203212,910.615986,4,15,6% +4/27/2018 0:00,56.54547364,261.7086508,520.5783077,784.6098398,88.04252946,714.9967402,625.6846787,89.31206153,85.38772236,3.924339177,128.8750449,0,128.8750449,2.654807106,126.2202378,0.986904692,4.567677637,1.481952164,-1.481952164,0.276724944,0.169124468,1.566001478,50.36799062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07792661,1.923398711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.13456274,48.41562842,83.21248935,50.33902713,625.6846787,0,0.797446893,37.11301445,-0.797446893,142.8869856,0.9872999,0,700.95091,50.33902713,733.8967964,4,16,5% +4/27/2018 1:00,68.33266148,271.334066,312.2570742,657.3257165,69.56121559,492.4936291,422.6760151,69.81761401,67.46368828,2.353925723,77.80787012,0,77.80787012,2.097527304,75.71034282,1.192629929,4.735672824,2.344583072,-2.344583072,0.12920637,0.222769062,0.760770552,24.4689961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84866329,1.519651391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.551175676,23.52052977,65.39983896,25.04018117,422.6760151,0,0.643023701,49.98233942,-0.643023701,130.0176606,0.972242368,0,476.343369,25.04018117,492.7316667,4,17,3% +4/27/2018 2:00,80.04885331,280.2452033,101.4819437,366.0085681,38.23258232,203.7949478,165.9502052,37.84474265,37.0797289,0.765013758,25.75832558,0,25.75832558,1.15285342,24.60547216,1.397116053,4.891201511,4.9238402,-4.9238402,0,0.376742708,0.288213355,9.269932224,0.237730845,1,0.200368314,0,0.938844674,0.977606638,0.724496596,1,35.90770256,0.835238378,0.036553361,0.312029739,0.901575167,0.626071762,0.961238037,0.922476074,0.199318966,8.910611453,36.10702153,9.745849831,126.4987227,0,0.453405247,63.03762813,-0.453405247,116.9623719,0.939723376,0,154.9808283,9.745849831,161.3592921,4,18,4% +4/27/2018 3:00,91.57664824,289.2741788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59831403,5.048786861,-28.12481014,28.12481014,0,#DIV/0!,0,0,1,0.769573546,0,0.035540824,0.961238037,1,0.628656793,0.904160197,0,0,0.115824807,0.20329417,0.724496596,0.448993192,0.977211847,0.938449884,0,0,0,0,0,0,0.238811383,76.18360214,-0.238811383,103.8163979,0.840629746,0,0,0,0,4,19,0% +4/27/2018 4:00,102.3676146,299.1167912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786651923,5.220572855,-2.984968143,2.984968143,0.959386694,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017397379,89.0031533,-0.017397379,90.9968467,0,0,0,0,0,4,20,0% +4/27/2018 5:00,112.0881206,310.4646176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956306757,5.418629789,-1.214738869,1.214738869,0.737886271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.19712638,101.3689676,0.19712638,78.63103235,0,0.796355612,0,0,0,4,21,0% +4/27/2018 6:00,120.1340222,323.9832787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096734231,5.654574934,-0.475332572,0.475332572,0.611440347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.390132834,112.962765,0.390132834,67.03723502,0,0.921838524,0,0,0,4,22,0% +4/27/2018 7:00,125.7019333,340.018239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193912612,5.934437788,0.000442973,-0.000442973,0.530077937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548463533,123.2616686,0.548463533,56.73833138,0,0.958836236,0,0,0,4,23,0% +4/28/2018 8:00,127.9594613,357.9967737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.233313909,6.248222412,0.39603242,-0.39603242,0.462428157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661324942,131.4009989,0.661324942,48.59900115,0,0.974394202,0,0,0,4,0,0% +4/28/2018 9:00,126.4753875,16.19161638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207411934,0.282597017,0.798715506,-0.798715506,0.393565294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721023479,136.1390455,0.721023479,43.86095449,0,0.980654131,0,0,0,4,1,0% +4/28/2018 10:00,121.5398815,32.72160968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121271105,0.571099826,1.296441163,-1.296441163,0.308449193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723489293,136.3433195,0.723489293,43.65668053,0,0.980890477,0,0,0,4,2,0% +4/28/2018 11:00,113.9418086,46.75509171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988659715,0.816030292,2.069371359,-2.069371359,0.176270345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668553168,131.9554956,0.668553168,48.04450438,0,0.975211633,0,0,0,4,3,0% +4/28/2018 12:00,104.5139756,58.49785288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824112989,1.020980138,3.785249634,-3.785249634,0,#DIV/0!,0,0,0.104874771,1,0.25828253,0,0.930684624,0.969446587,0.724496596,1,0,0,0.017090749,0.312029739,0.952676936,0.677173531,0.961238037,0.922476074,0,0,0,0,0,0,-0.559957735,124.0528749,0.559957735,55.94712512,0,0.960707547,0,0,0,4,4,0% +4/28/2018 13:00,93.90406673,68.58353984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638935146,1.197008583,14.64872461,-14.64872461,0,#DIV/0!,0,0,0.663857157,1,0.068159582,0,0.954671059,0.993433022,0.724496596,1,0,0,0.086320007,0.312029739,0.784538703,0.509035299,0.961238037,0.922476074,0,0,0,0,0,0,-0.405102209,113.8975322,0.405102209,66.10246777,0,0.926574358,0,0,0,4,5,0% +4/28/2018 14:00,82.45135094,77.70490887,62.94433434,263.6811755,28.30507428,27.92607284,0,27.92607284,27.45157186,0.47450098,72.1603823,56.04529727,16.11508503,0.853502424,15.2615826,1.439047547,1.356206505,-7.47810638,7.47810638,0.191014803,0.449684226,0.263254418,8.467167008,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.38749504,0.618359601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19072693,8.138962992,26.57822197,8.757322593,0,56.04529727,-0.212549482,102.2718004,0.212549482,77.72819961,0,0.814760659,26.57822197,54.42082595,62.19556414,4,6,134% +4/28/2018 15:00,70.79065001,86.54729063,267.0352906,614.9364479,64.70843725,64.77026393,0,64.77026393,62.75723911,2.013024817,66.95705011,0.26005415,66.69699597,1.951198132,64.74579783,1.235529922,1.51053518,-2.751235435,2.751235435,0.999357341,0.242321669,2.012044618,64.71427126,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.32464532,1.413636404,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.457719476,62.20581907,61.7823648,63.61945547,0,0.26005415,-0.000422896,90.02423016,0.000422896,89.97576984,0,0,61.7823648,63.61945547,103.420026,4,7,67% +4/28/2018 16:00,58.97250059,95.89158646,478.9694657,764.309923,85.00636105,254.7364545,168.6826747,86.05377977,82.44310563,3.61067415,118.6949477,0,118.6949477,2.563255426,116.1316923,1.029264303,1.673623909,-1.495595858,1.495595858,0.785915645,0.17747762,2.974873523,95.68215856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.247449,1.85706983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.155285741,91.97333026,81.40273474,93.83040009,168.6826747,0,0.220699313,77.2498897,-0.220699313,102.7501103,0.823447414,0,220.304047,93.83040009,281.7141673,4,8,28% +4/28/2018 17:00,47.3709269,106.8698221,666.6498388,838.4600103,98.80330501,465.6567821,364.8072732,100.8495089,95.82402082,5.025488079,164.6162558,0,164.6162558,2.979284192,161.6369716,0.826778644,1.865230267,-0.869108798,0.869108798,0.678780047,0.148208699,3.650452418,117.4110981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.10969366,2.158481255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.644740351,112.8600135,94.75443401,115.0184947,364.8072732,0,0.435092036,64.20884957,-0.435092036,115.7911504,0.935081785,0,435.8790704,115.0184947,511.1563748,4,9,17% +4/28/2018 18:00,36.55523572,121.5028816,813.8874067,878.2974381,108.3659608,662.8370437,551.6032894,111.2337543,105.0983273,6.135427059,200.6040582,0,200.6040582,3.267633546,197.3364246,0.638009222,2.120625335,-0.461536809,0.461536809,0.609081132,0.133146133,4.056317762,130.4651227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0245098,2.367389381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93878841,125.4080384,103.9632982,127.7754278,551.6032894,0,0.628037001,51.0945559,-0.628037001,128.9054441,0.970386856,0,639.2318802,127.7754278,722.8583422,4,10,13% +4/28/2018 19:00,27.75648068,143.5109098,909.5670457,898.7686171,114.2152696,824.3808633,706.7529049,117.6279584,110.7712579,6.856700593,223.9790726,0,223.9790726,3.444011789,220.5350608,0.484441977,2.504737888,-0.149372637,0.149372637,0.555697915,0.125571029,4.192799628,134.8548487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4775464,2.495174817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.037669058,129.62761,109.5152155,132.1227848,706.7529049,0,0.786356901,38.15365021,-0.786356901,141.8463498,0.98641564,0,806.6673348,132.1227848,893.139055,4,11,11% +4/28/2018 20:00,23.56040037,176.094211,946.7638027,905.8451929,116.4305812,934.6451706,814.5882955,120.056875,112.9197696,7.137105459,233.0646568,0,233.0646568,3.510811606,229.5538452,0.41120656,3.073423775,0.120885283,-0.120885283,0.509481089,0.122977432,4.066750132,130.8006636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5427776,2.543571057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946346627,125.7305731,111.4891243,128.2741442,814.5882955,0,0.899257734,25.93932943,-0.899257734,154.0606706,0.994398588,0,921.5145749,128.2741442,1005.467437,4,12,9% +4/28/2018 21:00,26.33116732,210.3795489,922.8341549,901.3440394,115.0088145,982.9334502,864.4358621,118.4975881,111.5408744,6.956713666,227.2197651,0,227.2197651,3.467940095,223.751825,0.459565566,3.671815807,0.381220396,-0.381220396,0.464961162,0.124625659,3.698472332,118.9555836,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2173312,2.512510794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679530615,114.3446317,109.8968618,116.8571425,864.4358621,0,0.959052065,16.45306606,-0.959052065,163.5469339,0.997865187,0,972.487315,116.8571425,1048.967978,4,13,8% +4/28/2018 22:00,34.39514448,234.6144018,839.5059125,884.1304161,109.9556441,963.2192827,850.2506567,112.968626,106.6400758,6.328550177,206.8634963,0,206.8634963,3.315568364,203.5479279,0.600308518,4.094793784,0.660055576,-0.660055576,0.417277538,0.130976617,3.123775878,100.4713702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5064971,2.402117993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.26316499,96.57690261,104.7696621,98.9790206,850.2506567,0,0.961680134,15.9127893,-0.961680134,164.0872107,0.998007661,0,953.3263308,98.9790206,1018.10612,4,14,7% +4/28/2018 23:00,44.90650149,250.4739048,702.8146907,849.3850014,101.2294936,873.857146,770.3819811,103.4751649,98.17705091,5.298114009,173.4580014,0,173.4580014,3.05244273,170.4055587,0.783766306,4.371594329,0.996707506,-0.996707506,0.359706668,0.144034402,2.394381617,77.01154343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.37151568,2.211484367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.734721331,74.02642482,96.10623701,76.23790919,770.3819811,0,0.906987973,24.90762511,-0.906987973,155.0923749,0.994872477,0,862.5380671,76.23790919,912.4342539,4,15,6% +4/28/2018 0:00,56.38883925,262.0371213,522.975053,784.9411984,88.4678816,716.7117163,626.9690609,89.74265542,85.80024856,3.942406855,129.4689894,0,129.4689894,2.667633042,126.8013564,0.984170906,4.573410529,1.471405535,-1.471405535,0.278528524,0.169162718,1.579228048,50.79340259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.47446249,1.932691058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144145345,48.82455059,83.61860783,50.75724164,626.9690609,0,0.798746533,36.98942876,-0.798746533,143.0105712,0.987401919,0,702.6890618,50.75724164,735.9086613,4,16,5% +4/28/2018 1:00,68.17995132,271.6309064,314.8325049,658.6213281,70.02776231,494.7268737,424.4373664,70.28950731,67.9161669,2.373340408,78.44638122,0,78.44638122,2.111595409,76.33478581,1.189964634,4.740853668,2.321753782,-2.321753782,0.133110409,0.222428629,0.773546332,24.87990909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28360294,1.529843685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.560431684,23.91551497,65.84403463,25.44535866,424.4373664,0,0.644433073,49.87681748,-0.644433073,130.1231825,0.972412424,0,478.5722029,25.44535866,495.2256812,4,17,3% +4/28/2018 2:00,79.89112043,280.5215168,103.9824064,370.8260177,38.89528334,207.228322,168.7220117,38.50631034,37.72244704,0.783863302,26.3845746,0,26.3845746,1.172836301,25.2117383,1.394363095,4.896024091,4.831750805,-4.831750805,0,0.374056388,0.293209075,9.43061176,0.228469096,1,0.204082961,0,0.938343129,0.977105093,0.724496596,1,36.52472849,0.849715908,0.035268415,0.312029739,0.904857042,0.629353638,0.961238037,0.922476074,0.202987954,9.065062735,36.72771644,9.914778643,130.1742461,0,0.454989681,62.93572968,-0.454989681,117.0642703,0.940107398,0,159.1054882,9.914778643,165.5945125,4,18,4% +4/28/2018 3:00,91.40340547,289.5374194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595290373,5.053381277,-31.47927297,31.47927297,0,#DIV/0!,0,0,1,0.79647604,0,0.031756255,0.961238037,1,0.638390448,0.913893852,0,0,0.115824807,0.214314858,0.724496596,0.448993192,0.975707972,0.936946009,0,0,0,0,0,0,0.240675319,76.07359835,-0.240675319,103.9264016,0.842251236,0,0,0,0,4,19,0% +4/28/2018 4:00,102.1725677,299.3697709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783247712,5.224988183,-3.018799126,3.018799126,0.953601256,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.019566982,88.87882298,-0.019566982,91.12117702,0,0,0,0,0,4,20,0% +4/28/2018 5:00,111.8641644,310.7030411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952397983,5.422791063,-1.219465311,1.219465311,0.73869454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194624171,101.2227696,0.194624171,78.77723043,0,0.793094603,0,0,0,4,21,0% +4/28/2018 6:00,119.8761887,324.1913069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092234188,5.658205711,-0.474219689,0.474219689,0.611250033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387294042,112.7862313,0.387294042,67.21376874,0,0.920899124,0,0,0,4,22,0% +4/28/2018 7:00,125.4114759,340.1660316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188843174,5.937017255,0.004075863,-0.004075863,0.529456676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545307411,123.0456735,0.545307411,56.95432647,0,0.9583086,0,0,0,4,23,0% +4/29/2018 8:00,127.6483134,358.0519386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227883354,6.249185221,0.401684956,-0.401684956,0.461461517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657892643,131.1393511,0.657892643,48.86064886,0,0.973999758,0,0,0,4,0,0% +4/29/2018 9:00,126.1635616,16.14570012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201969546,0.281795627,0.80699138,-0.80699138,0.392150036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717375223,135.838197,0.717375223,44.16180302,0,0.980301468,0,0,0,4,1,0% +4/29/2018 10:00,121.2445116,32.59734245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116115927,0.568930953,1.309391144,-1.309391144,0.306234616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719700225,136.029736,0.719700225,43.97026401,0,0.98052663,0,0,0,4,2,0% +4/29/2018 11:00,113.6702672,46.58347712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983920424,0.813035053,2.093393339,-2.093393339,0.172162345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664708194,131.6599427,0.664708194,48.34005727,0,0.974779023,0,0,0,4,3,0% +4/29/2018 12:00,104.2657842,58.30012638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819781231,1.01752916,3.851253471,-3.851253471,0,#DIV/0!,0,0,0.113828265,1,0.254045553,0,0.931306019,0.970067982,0.724496596,1,0,0,0.018475464,0.312029739,0.948942838,0.673439434,0.961238037,0.922476074,0,0,0,0,0,0,-0.556145685,123.789663,0.556145685,56.21033695,0,0.9600955,0,0,0,4,4,0% +4/29/2018 13:00,93.67498494,68.3693095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634936914,1.193269558,15.56306077,-15.56306077,0,#DIV/0!,0,0,0.68064244,1,0.064166502,0,0.955086281,0.993848244,0.724496596,1,0,0,0.087965275,0.312029739,0.781006604,0.5055032,0.961238037,0.922476074,0,0,0,0,0,0,-0.401409736,113.6663375,0.401409736,66.33366246,0,0.925438995,0,0,0,4,5,0% +4/29/2018 14:00,82.23854041,77.47584613,66.05189072,272.184478,29.29361967,28.90823601,0,28.90823601,28.41030895,0.497927053,73.81256825,56.91421191,16.89835634,0.883310715,16.01504563,1.435333302,1.352208606,-7.274513607,7.274513607,0.225831217,0.443494037,0.283405368,9.115290822,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.3090696,0.639955606,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205326224,8.761964255,27.51439583,9.401919861,0,56.91421191,-0.209101608,102.0697094,0.209101608,77.93029064,0,0.8108818,27.51439583,55.55261847,63.87247356,4,6,132% +4/29/2018 15:00,70.58250967,86.30018624,270.6469245,617.6393368,65.31331487,67.11303804,1.728909759,65.38412829,63.34387745,2.040250839,67.59091772,0,67.59091772,1.969437424,65.62148029,1.231897188,1.506222395,-2.722858975,2.722858975,0.995789998,0.241322952,2.033734213,65.4118832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8885444,1.426850709,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473433514,62.87639019,62.36197792,64.3032409,1.728909759,0,0.002799222,89.83961617,-0.002799222,90.16038383,0,0,62.36197792,64.3032409,104.447163,4,7,67% +4/29/2018 16:00,58.76323146,95.62028348,482.3387828,765.2247127,85.51175195,257.6861834,171.1168528,86.56933061,82.93325713,3.636073485,119.527117,0,119.527117,2.578494826,116.9486222,1.025611868,1.668888778,-1.486695849,1.486695849,0.784393653,0.177285665,2.991097927,96.20399117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.71860127,1.868110724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167040266,92.47493561,81.88564154,94.34304634,171.1168528,0,0.223616475,77.07846475,-0.223616475,102.9215352,0.826402879,0,223.2971013,94.34304634,285.0427383,4,8,28% +4/29/2018 17:00,47.15036872,106.5684075,669.6953987,838.7637673,99.27176452,468.4326519,367.1058505,101.3268013,96.27835454,5.048446796,165.3688129,0,165.3688129,2.993409974,162.3754029,0.822929178,1.859969589,-0.865813272,0.865813272,0.678216479,0.148234204,3.664747312,117.870871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54641651,2.168715336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.655096952,113.3019647,95.20151347,115.47068,367.1058505,0,0.437674903,64.04437535,-0.437674903,115.9556247,0.935759956,0,438.7244681,115.47068,514.2977188,4,9,17% +4/29/2018 18:00,36.30880945,121.1797177,816.6204817,878.3496471,108.8136189,665.2963896,553.6078726,111.688517,105.5324868,6.156030133,201.2802224,0,201.2802224,3.28113209,197.9990903,0.633708272,2.114985061,-0.460637295,0.460637295,0.608927306,0.133248702,4.069365138,130.8847712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4418405,2.37716903,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.94824119,125.8114205,104.3900817,128.1885895,553.6078726,0,0.630281887,50.92907732,-0.630281887,129.0709227,0.970670416,0,641.7608656,128.1885895,725.6577336,4,10,13% +4/29/2018 19:00,27.46887577,143.2489763,912.0351391,898.7054965,114.6483221,826.5015888,708.4350305,118.0665583,111.1912521,6.875306124,224.5905486,0,224.5905486,3.457069917,221.1334787,0.479422324,2.500166287,-0.149835453,0.149835453,0.555777061,0.125706036,4.205064872,135.2493411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8812609,2.504635387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046555185,130.0068111,109.9278161,132.5114465,708.4350305,0,0.788283852,37.97457723,-0.788283852,142.0254228,0.986571072,0,808.8493233,132.5114465,895.5754148,4,11,11% +4/29/2018 20:00,23.24883246,176.1359048,949.0368405,905.7298659,116.8529156,936.4635502,815.9799406,120.4836096,113.329369,7.154240579,233.6285161,0,233.6285161,3.523546545,230.1049696,0.405768674,3.074151469,0.119395719,-0.119395719,0.509735819,0.123127902,4.078639847,131.1830777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9365002,2.552797477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.954960685,126.0981641,111.8914609,128.6509616,815.9799406,0,0.900908727,25.72222635,-0.900908727,154.2777736,0.994500482,0,923.3839052,128.6509616,1007.583387,4,12,9% +4/29/2018 21:00,26.06302883,210.7401549,924.996696,901.2163223,115.423919,984.5239289,865.6074511,118.9164778,111.943462,6.973015815,227.7566152,0,227.7566152,3.480457027,224.2761582,0.454885666,3.678109569,0.378698443,-0.378698443,0.465392442,0.124783061,3.710358515,119.3378841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6043136,2.521579268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.688142113,114.7121134,110.2924558,117.2336927,865.6074511,0,0.960487987,16.16004886,-0.960487987,163.8399511,0.997943128,0,974.1194633,117.2336927,1050.84657,4,13,8% +4/29/2018 22:00,34.18659312,235.0254705,841.6498774,884.0328379,110.3672384,964.6868393,851.302868,113.3839713,107.039259,6.34471229,207.3957365,0,207.3957365,3.32797945,204.0677571,0.59666861,4.101968286,0.656190244,-0.656190244,0.417938549,0.131132008,3.135971985,100.8636389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8902072,2.411109783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.272001028,96.95396621,105.1622082,99.365076,851.302868,0,0.962976523,15.63958942,-0.962976523,164.3604106,0.998077654,0,954.8285777,99.365076,1019.861033,4,14,7% +4/29/2018 23:00,44.73458841,250.8423745,705.0312782,849.39531,101.6423245,875.3383361,771.4460791,103.8922569,98.57743336,5.314823581,174.0078871,0,174.0078871,3.064891103,170.942996,0.780765857,4.378025339,0.990670962,-0.990670962,0.360738977,0.144167114,2.407080379,77.41997927,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.75637852,2.220503171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743921541,74.41902889,96.50030006,76.63953206,771.4460791,0,0.908229737,24.7381507,-0.908229737,155.2618493,0.99494785,0,864.0489177,76.63953206,914.2079586,4,15,6% +4/29/2018 0:00,56.2336358,262.3613955,525.3431333,785.2573587,88.89105807,718.3939858,628.2230627,90.17092314,86.2106647,3.960258444,130.0559182,0,130.0559182,2.680393374,127.3755249,0.981462095,4.579070181,1.461006076,-1.461006076,0.280306936,0.16920571,1.59235304,51.21554744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86897009,1.941935875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153654357,49.23033228,84.02262445,51.17226815,628.2230627,0,0.800021873,36.8678089,-0.800021873,143.1321911,0.987501709,0,704.3939723,51.17226815,737.8851984,4,16,5% +4/29/2018 1:00,68.02827662,271.9235384,317.3869558,659.8846812,70.49178599,496.9297004,426.1709049,70.75879549,68.36619856,2.392596937,79.07972944,0,79.07972944,2.125587435,76.954142,1.187317411,4.745961059,2.299362372,-2.299362372,0.136939566,0.222100451,0.786268789,25.28910703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71619049,1.539980861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.569649061,24.3088516,66.28583955,25.84883246,426.1709049,0,0.645826335,49.77234049,-0.645826335,130.2276595,0.972579806,0,480.7710557,25.84883246,497.6885995,4,17,4% +4/29/2018 2:00,79.73419163,280.7935481,106.478291,375.5380614,39.55175904,210.6194791,171.4576732,39.16180591,38.35912757,0.802678334,27.00952588,0,27.00952588,1.192631465,25.81689441,1.39162417,4.900771932,4.742955518,-4.742955518,0,0.371453736,0.298157866,9.589781893,0.219322989,1,0.207795622,0,0.937838829,0.976600792,0.724496596,1,37.13544847,0.864057437,0.033989447,0.312029739,0.908136578,0.632633174,0.961238037,0.922476074,0.206640517,9.21806312,37.34208899,10.08212056,133.8530639,0,0.456565368,62.83430193,-0.456565368,117.1656981,0.940486656,0,163.2291095,10.08212056,169.8276558,4,18,4% +4/29/2018 3:00,91.23099491,289.796175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592281241,5.057897414,-35.75569464,35.75569464,0,#DIV/0!,0,0,1,0.822843846,0,0.027960284,0.961238037,1,0.64826676,0.923770165,0,0,0.115824807,0.225503031,0.724496596,0.448993192,0.974154168,0.935392205,0,0,0,0,0,0,0.242534745,75.96380849,-0.242534745,104.0361915,0.843843971,0,0,0,0,4,19,0% +4/29/2018 4:00,101.978536,299.6179249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77986122,5.229319288,-3.053667992,3.053667992,0.947638328,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021734832,88.75458779,-0.021734832,91.24541221,0,0,0,0,0,4,20,0% +4/29/2018 5:00,111.6416444,310.9362286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948514278,5.426860952,-1.224346572,1.224346572,0.739529285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192123328,101.0767252,0.192123328,78.92327478,0,0.789750501,0,0,0,4,21,0% +4/29/2018 6:00,119.6204886,324.3938717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087771378,5.661741135,-0.473171784,0.473171784,0.61107083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384458631,112.6101355,0.384458631,67.38986447,0,0.919946996,0,0,0,4,22,0% +4/29/2018 7:00,125.1240634,340.3088485,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183826879,5.93950988,0.007662916,-0.007662916,0.528843254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542158949,122.8307291,0.542158949,57.16927089,0,0.957776123,0,0,0,4,23,0% +4/30/2018 8:00,127.3410628,358.1037512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222520819,6.250089523,0.407296921,-0.407296921,0.460501814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654474254,130.8797971,0.654474254,49.12020288,0,0.973602801,0,0,0,4,0,0% +4/30/2018 9:00,125.8560986,16.09862498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196603303,0.280974011,0.815230419,-0.815230419,0.390741077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713748669,135.5407417,0.713748669,44.45925832,0,0.97994733,0,0,0,4,1,0% +4/30/2018 10:00,120.953572,32.47358956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111038073,0.566771058,1.322320466,-1.322320466,0.304023572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715941659,135.7204248,0.715941659,44.27957522,0,0.980161907,0,0,0,4,2,0% +4/30/2018 11:00,113.4030576,46.41321853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979256737,0.81006348,2.117492673,-2.117492673,0.168041116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660902923,131.3687712,0.660902923,48.63122876,0,0.974345924,0,0,0,4,3,0% +4/30/2018 12:00,104.0218352,58.10405929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815523518,1.014107143,3.918281789,-3.918281789,0,#DIV/0!,0,0,0.122739268,1,0.249879817,0,0.93191325,0.970675214,0.724496596,1,0,0,0.019842601,0.312029739,0.945270893,0.669767489,0.961238037,0.922476074,0,0,0,0,0,0,-0.552382308,123.5306033,0.552382308,56.46939675,0,0.959482981,0,0,0,4,4,0% +4/30/2018 13:00,93.45012916,68.15679073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63101244,1.189560406,16.57819149,-16.57819149,0,#DIV/0!,0,0,0.697417521,1,0.060247211,0,0.955490169,0.994252132,0.724496596,1,0,0,0.089589546,0.312029739,0.777540849,0.502037445,0.961238037,0.922476074,0,0,0,0,0,0,-0.397774055,113.4390975,0.397774055,66.56090255,0,0.9243005,0,0,0,4,5,0% +4/30/2018 14:00,82.02984801,77.24842915,69.13050896,280.3637601,30.25605336,29.8648567,0,29.8648567,29.34372172,0.521134977,75.34867033,57.67484643,17.6738239,0.912331642,16.76149226,1.431690933,1.348239431,-7.085286584,7.085286584,0.258190944,0.437665711,0.3037463,9.769525136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.20630146,0.660981169,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.220063161,9.390839163,28.42636462,10.05182033,0,57.67484643,-0.205714342,101.8713191,0.205714342,78.12868086,0,0.806944511,28.42636462,56.59222108,65.46484147,4,6,130% +4/30/2018 15:00,70.37880084,86.05456024,274.1754527,620.2164008,65.90672112,69.67861493,3.692374241,65.98624069,63.91939031,2.066850374,68.46434361,0,68.46434361,1.987330812,66.4770128,1.228341798,1.501935413,-2.695641602,2.695641602,0.991135553,0.240381553,2.052933036,66.02938335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.44174926,1.439814408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487342996,63.46995483,62.92909226,64.90976924,3.692374241,0,0.005953364,89.65889533,-0.005953364,90.34110467,0,0,62.92909226,64.90976924,105.411238,4,7,68% +4/30/2018 16:00,58.55865395,95.35009778,485.6200646,766.0864323,86.00989261,260.567269,173.4900828,87.07718618,83.41637701,3.660809174,120.3377226,0,120.3377226,2.593515605,117.744207,1.022041317,1.664173148,-1.478112666,1.478112666,0.782925843,0.177113548,3.00688841,96.71186738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.18299447,1.878993227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178480417,92.96312554,82.36147489,94.84211877,173.4900828,0,0.226462806,76.91108869,-0.226462806,103.0889113,0.829213192,0,226.2217402,94.84211877,288.2940101,4,8,27% +4/30/2018 17:00,46.93482433,106.2672719,672.6548173,839.0383289,99.73439646,471.1312545,369.3334619,101.7977926,96.72703643,5.070756143,166.1003082,0,166.1003082,3.007360034,163.0929482,0.819167218,1.854713782,-0.862645317,0.862645317,0.677674727,0.148269802,3.678660322,118.3183613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.97770661,2.178822107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66517688,113.7321093,95.64288349,115.9109314,369.3334619,0,0.440186639,63.88420996,-0.440186639,116.11579,0.936411818,0,441.4911021,115.9109314,517.3524885,4,9,17% +4/30/2018 18:00,36.06767367,120.8548682,819.2725008,878.3827547,109.2562372,667.6777872,555.5400064,112.1377808,105.9617586,6.176022173,201.9365817,0,201.9365817,3.294478666,198.642103,0.629499659,2.109315367,-0.459796984,0.459796984,0.608783605,0.133357628,4.082074558,131.2935498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8544728,2.386838578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957449122,126.2043541,104.8119219,128.5911927,555.5400064,0,0.632457779,50.76831329,-0.632457779,129.2316867,0.970943339,0,644.2097909,128.5911927,728.3701547,4,10,13% +4/30/2018 19:00,27.18635714,142.9820574,914.4294513,898.6282915,115.0769505,828.5480526,710.0477413,118.5003113,111.6069558,6.89335546,225.184002,0,225.184002,3.469994645,221.7140074,0.474491444,2.495507672,-0.150324463,0.150324463,0.555860687,0.12584563,4.217035561,135.6343596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2808511,2.513999308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.055227908,130.3769055,110.336079,132.8909049,710.0477413,0,0.790146213,37.80082259,-0.790146213,142.1991774,0.986720572,0,810.9547928,132.8909049,897.9292322,4,11,11% +4/30/2018 20:00,22.94141351,176.1735632,951.2448705,905.6031531,117.2713901,938.2143025,817.3081918,120.9061106,113.735225,7.170885641,234.1764971,0,234.1764971,3.536165096,230.640332,0.400403201,3.074808732,0.11790061,-0.11790061,0.509991498,0.123282021,4.09027845,131.5574152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3266244,2.561939575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.963392813,126.4579915,112.2900172,129.0199311,817.3081918,0,0.902501486,25.51115021,-0.902501486,154.4888498,0.994598429,0,925.183461,129.0199311,1009.624425,4,12,9% +4/30/2018 21:00,25.79851868,211.0991981,927.1038279,901.0786114,115.8357005,986.0554015,866.7236745,119.331727,112.3428267,6.988900265,228.2799305,0,228.2799305,3.492873758,224.7870567,0.450269093,3.684376056,0.376188367,-0.376188367,0.46582169,0.124943611,3.722035683,119.713462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9881982,2.530575147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696602182,115.0731332,110.6848004,117.6037083,866.7236745,0,0.961873541,15.87232171,-0.961873541,164.1276783,0.998018115,0,975.690728,117.6037083,1052.660003,4,13,8% +4/30/2018 22:00,33.98091607,235.4331681,843.7481707,883.9256416,110.7760079,966.1050689,852.3088362,113.7962327,107.4357026,6.360530111,207.9168179,0,207.9168179,3.340305359,204.5765126,0.593078868,4.109083952,0.652357462,-0.652357462,0.418593993,0.131290368,3.147998099,101.25044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2712838,2.420039862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280713907,97.32577421,105.5519977,99.74581408,852.3088362,0,0.964231374,15.37063609,-0.964231374,164.6293639,0.998145226,0,956.2799937,99.74581408,1021.561634,4,14,7% +4/30/2018 23:00,44.56470536,251.2066252,707.2114141,849.3950284,102.0527551,876.7798388,772.4730925,104.3067463,98.97548797,5.331258367,174.5488623,0,174.5488623,3.0772671,171.4715952,0.777800839,4.384382712,0.98470123,-0.98470123,0.361759862,0.144303037,2.419644134,77.82407283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.13900375,2.229469538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753023938,74.80745898,96.89202769,77.03692852,772.4730925,0,0.90943915,24.5720391,-0.90943915,155.4279609,0.99502106,0,865.5190234,77.03692852,915.9381524,4,15,6% +4/30/2018 0:00,56.0798453,262.6813333,527.6829514,785.5587081,89.31209164,720.0444891,629.4475896,90.59689954,86.61900255,3.977896982,130.63593,0,130.63593,2.69308909,127.9428409,0.978777944,4.584654149,1.450752438,-1.450752438,0.282060411,0.16925332,1.605376077,51.63441308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.26147997,1.951133878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.163089503,49.63296186,84.42456947,51.58409574,629.4475896,0,0.801273773,36.7480886,-0.801273773,143.2519114,0.987599355,0,706.0666031,51.58409574,739.8273621,4,16,5% +4/30/2018 1:00,67.87763226,272.2118494,319.9205164,661.1165443,70.95331937,499.1029224,427.8774114,71.22551099,68.813815,2.411695988,79.70793748,0,79.70793748,2.139504369,77.56843311,1.184688171,4.750993034,2.27740085,-2.27740085,0.140695207,0.221784211,0.798935656,25.69651702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14645644,1.550063632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.578826163,24.70046957,66.7252826,26.2505332,427.8774114,0,0.647204211,49.66885848,-0.647204211,130.3311415,0.972744631,0,482.9407374,26.2505332,500.1211864,4,17,4% +4/30/2018 2:00,79.57807898,281.0612012,108.9688559,380.1465832,40.20207224,213.9688945,174.1576098,39.8112847,38.98983143,0.821453264,27.63300152,0,27.63300152,1.212240808,26.42076071,1.388899491,4.905443361,4.65730086,-4.65730086,0,0.368931764,0.303060202,9.747457858,0.210292519,1,0.211505305,0,0.93733192,0.976093883,0.724496596,1,37.73991616,0.878264339,0.032716725,0.312029739,0.911412899,0.635909495,0.961238037,0.922476074,0.210277048,9.369627256,37.95019321,10.24789159,137.5335673,0,0.458132777,62.7333155,-0.458132777,117.2666845,0.940861334,0,167.3502089,10.24789159,174.057249,4,18,4% +4/30/2018 3:00,91.05944423,290.0503625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589287117,5.062333822,-41.39314194,41.39314194,0,#DIV/0!,0,0,1,0.848686551,0,0.024153893,0.961238037,1,0.658284013,0.933787417,0,0,0.115824807,0.236856901,0.724496596,0.448993192,0.972549663,0.9337877,0,0,0,0,0,0,0.244389861,75.85422072,-0.244389861,104.1457793,0.845408861,0,0,0,0,4,19,0% +4/30/2018 4:00,101.7855658,299.8611841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776493255,5.233564962,-3.089613857,3.089613857,0.941491223,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02390077,88.63045632,-0.02390077,91.36954368,0,0,0,0,0,4,20,0% +4/30/2018 5:00,111.4206256,311.1641308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944656772,5.430838597,-1.229387199,1.229387199,0.740391283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1896244,100.9308654,0.1896244,79.06913457,0,0.786320853,0,0,0,4,21,0% +4/30/2018 6:00,119.3670011,324.590952,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083347187,5.665180835,-0.472192047,0.472192047,0.610903285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381627541,112.4345328,0.381627541,67.56546723,0,0.918982202,0,0,0,4,22,0% +4/30/2018 7:00,124.8397818,340.4466928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178865229,5.941915716,0.011200631,-0.011200631,0.528238269,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539019454,122.6169138,0.539019454,57.38308622,0,0.95723897,0,0,0,4,23,0% +5/1/2018 8:00,127.0377956,358.1522128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217227808,6.250935337,0.412863919,-0.412863919,0.459549801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651071403,130.6224299,0.651071403,49.37757013,0,0.973203508,0,0,0,5,0,0% +5/1/2018 9:00,125.5530864,16.05037104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191314744,0.280131821,0.823426482,-0.823426482,0.389339468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710145696,135.2467708,0.710145696,44.75322924,0,0.979591913,0,0,0,5,1,0% +5/1/2018 10:00,120.6671554,32.35032484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106039161,0.564619683,1.33521938,-1.33521938,0.301817728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712215634,135.4154726,0.712215634,44.58452744,0,0.979796543,0,0,0,5,2,0% +5/1/2018 11:00,113.1402745,46.24430329,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974670306,0.807115353,2.141651082,-2.141651082,0.163909785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657139456,131.0820746,0.657139456,48.91792539,0,0.97391265,0,0,0,5,3,0% +5/1/2018 12:00,103.7822209,57.90965927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81134146,1.010714223,3.986303505,-3.986303505,0,#DIV/0!,0,0,0.131600973,1,0.245786944,0,0.932506263,0.971268226,0.724496596,1,0,0,0.021191411,0.312029739,0.941662544,0.66615914,0.961238037,0.922476074,0,0,0,0,0,0,-0.548669661,123.275794,0.548669661,56.72420603,0,0.958870485,0,0,0,5,4,0% +5/1/2018 13:00,93.22958637,67.94601129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627163242,1.185881611,17.71072386,-17.71072386,0,#DIV/0!,0,0,0.71416799,1,0.056403078,0,0.955882783,0.994644747,0.724496596,1,0,0,0.09119184,0.312029739,0.7741427,0.498639296,0.961238037,0.922476074,0,0,0,0,0,0,-0.39419708,113.2159074,0.39419708,66.78409258,0,0.923159893,0,0,0,5,5,0% +5/1/2018 14:00,81.82536781,77.02270518,72.1748412,288.2214712,31.19243003,30.79594761,0,30.79594761,30.25186317,0.54408444,76.77321752,58.33302481,18.44019271,0.940566853,17.49962586,1.42812208,1.344299804,-6.909125056,6.909125056,0.288316339,0.432178714,0.324214949,10.42786725,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.07924157,0.681437483,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234892627,10.02366264,29.31413419,10.70510013,0,58.33302481,-0.202389588,101.6767305,0.202389588,78.32326947,0,0.802951718,29.31413419,57.54370262,66.97533668,5,6,128% +5/1/2018 15:00,70.17959884,85.81048094,277.6194409,622.6705797,66.48871192,72.20442975,5.627785206,66.57664455,64.48383194,2.092812613,69.3169276,0,69.3169276,2.004879982,67.31204762,1.224865067,1.497675425,-2.669542089,2.669542089,0.986672274,0.239495879,2.071600302,66.62978678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.98431202,1.452528722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500867367,64.04708544,63.48517938,65.49961417,5.627785206,0,0.009038142,89.48214555,-0.009038142,90.51785445,0,0,63.48517938,65.49961417,106.3533669,5,7,68% +5/1/2018 16:00,58.35883911,95.08112301,488.8125133,766.8958494,86.5007564,263.378438,175.8011234,87.57731465,83.89243945,3.6848752,121.1265701,0,121.1265701,2.608316959,118.5182531,1.01855389,1.659478653,-1.469841135,1.469841135,0.781511328,0.176961011,3.022243637,97.20574426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.6406038,1.889716758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189605227,93.43785878,82.83020903,95.32757554,175.8011234,0,0.229237286,76.74782823,-0.229237286,103.2521718,0.831885396,0,229.0765961,95.32757554,291.4665877,5,8,27% +5/1/2018 17:00,46.72436664,105.9665384,675.5277361,839.2839998,100.191181,473.7518966,371.489436,102.2624606,97.17004722,5.092413419,166.8106544,0,166.8106544,3.021133773,163.7895206,0.815494039,1.849464991,-0.859604247,0.859604247,0.677154673,0.148315422,3.692191276,118.7535632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.40354543,2.188801134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67498001,114.150442,96.07852544,116.3392431,371.489436,0,0.442626615,63.72841001,-0.442626615,116.27159,0.937037972,0,444.1782333,116.3392431,520.3199411,5,9,17% +5/1/2018 18:00,35.83191422,120.5284649,821.843481,878.3969474,109.6938136,669.9810113,557.3994676,112.5815437,106.3861404,6.195403308,202.5731402,0,202.5731402,3.307673206,199.265467,0.62538488,2.103618554,-0.459016032,0.459016032,0.608650054,0.133472877,4.094446991,131.6914898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2624047,2.396397978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.966412907,126.5868691,105.2288176,128.9832671,557.3994676,0,0.634564441,50.61231267,-0.634564441,129.3876873,0.971205796,0,646.5784113,128.9832671,730.9953799,5,10,13% +5/1/2018 19:00,26.90903046,142.7101511,916.7503046,898.5371595,115.5011691,830.5204443,711.5912106,118.9292337,112.0183827,6.910851033,225.7595115,0,225.7595115,3.482786402,222.2767251,0.46965118,2.490762013,-0.150839969,0.150839969,0.555948843,0.12598978,4.228713472,136.0099614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6763303,2.523266892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063688515,130.7379482,110.7400188,133.2612151,711.5912106,0,0.791944109,37.63243549,-0.791944109,142.3675645,0.986864231,0,812.983932,133.2612151,900.200732,5,11,11% +5/1/2018 20:00,22.63822538,176.206931,953.3884335,905.4652137,117.6860315,939.8979655,818.5735573,121.3244082,114.1373635,7.187044724,234.7087317,0,234.7087317,3.548668066,231.1600636,0.39511157,3.075391111,0.116399677,-0.116399677,0.510248172,0.123439752,4.101668103,131.9237456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7131752,2.570997934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971644578,126.8101222,112.6848198,129.3811202,818.5735573,0,0.90403645,25.30617988,-0.90403645,154.6938201,0.994692496,0,926.9137942,129.3811202,1011.59115,5,12,9% +5/1/2018 21:00,25.53766137,211.4563607,929.1562082,900.9310824,116.2441934,987.5286662,867.7852921,119.7433741,112.7390021,7.004371975,228.7898714,0,228.7898714,3.505191327,225.2846801,0.445716274,3.690609719,0.373689951,-0.373689951,0.466248944,0.125107267,3.733505932,120.0823846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.369017,2.539499184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.704912338,115.4277556,111.0739294,117.9672548,867.7852921,0,0.963209405,15.59001751,-0.963209405,164.4099825,0.998090208,0,977.201932,117.9672548,1054.409141,5,13,8% +5/1/2018 22:00,33.77809815,235.8372259,845.8014574,883.8090325,111.1819899,967.4749217,853.2694704,114.2054513,107.8294426,6.376008654,208.4269029,0,208.4269029,3.352547212,205.0743557,0.589539028,4.11613609,0.648557048,-0.648557048,0.419243902,0.131451641,3.159855808,101.6318247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6497618,2.428909043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289304777,97.69237568,105.9390665,100.1212847,853.2694704,0,0.965445519,15.10596181,-0.965445519,164.8940382,0.998210439,0,957.6815588,100.1212847,1023.208937,5,14,7% +5/1/2018 23:00,44.39682952,251.5664689,709.3556606,849.3844114,102.4608203,878.1826355,773.4639643,104.7186711,99.37124854,5.347422603,175.0810643,0,175.0810643,3.089571772,171.9914926,0.774870853,4.390663169,0.978798027,-0.978798027,0.362769369,0.144442099,2.432073565,78.22384605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.51942386,2.238384232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762029019,75.19173621,97.28145288,77.43012044,773.4639643,0,0.910617094,24.40923089,-0.910617094,155.5907691,0.995092179,0,866.9493949,77.43012044,917.6258601,5,15,6% +5/1/2018 0:00,55.92745262,262.9967964,529.9948604,785.8456028,89.73101102,721.6641191,630.643504,91.02061509,87.02528996,3.995325129,131.209111,0,131.209111,2.705721054,128.50339,0.97611819,4.59016002,1.440643532,-1.440643532,0.283789136,0.169305436,1.618296569,52.04998053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65201888,1.960285693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.172450356,50.0324211,84.82446924,51.9927068,630.643504,0,0.802503064,36.63020345,-0.802503064,143.3697966,0.987694942,0,707.7078683,51.9927068,741.7360551,5,16,5% +5/1/2018 1:00,67.72801639,272.4957286,322.4332187,662.3176136,71.41238812,501.2472798,429.5576009,71.68967894,69.25904114,2.430637799,80.33101386,0,80.33101386,2.153346986,78.17766687,1.182076882,4.755947662,2.255861948,-2.255861948,0.144378576,0.221479624,0.811544478,26.10206009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.57442474,1.560092561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587961212,25.090293,67.16238595,26.65038556,429.5576009,0,0.648567382,49.56632448,-0.648567382,130.4336755,0.972907008,0,485.0819862,26.65038556,502.5241305,5,17,4% +5/1/2018 2:00,79.42279788,281.3243824,111.4533285,384.6533379,40.84627414,217.2769777,176.8221872,40.45479053,39.61460827,0.840182269,28.25481574,0,28.25481574,1.231665872,27.02314987,1.386189324,4.910036738,4.574644901,-4.574644901,0,0.366487701,0.307916468,9.903652066,0.201377887,1,0.21521092,0,0.936822567,0.97558453,0.724496596,1,38.3381752,0.892337731,0.031450546,0.312029739,0.914685042,0.639181638,0.961238037,0.922476074,0.213897848,9.51976707,38.55207305,10.4121048,141.2141088,0,0.459692325,62.63274442,-0.459692325,117.3672556,0.941231597,0,171.4672542,10.4121048,178.2817686,5,18,4% +5/1/2018 3:00,90.88878459,290.2999009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586308544,5.066689089,-49.16178332,49.16178332,0,#DIV/0!,0,0,1,0.874012792,0,0.020338199,0.961238037,1,0.668440003,0.943943407,0,0,0.115824807,0.248373994,0.724496596,0.448993192,0.970893806,0.932131843,0,0,0,0,0,0,0.246240799,75.74482705,-0.246240799,104.255173,0.846946728,0,0,0,0,5,19,0% +5/1/2018 4:00,101.5937069,300.099482,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773144685,5.237724045,-3.126676189,3.126676189,0.935153191,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.026064569,88.50644107,-0.026064569,91.49355893,0,0,0,0,0,5,20,0% +5/1/2018 5:00,111.2011757,311.3867021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940826647,5.434723199,-1.234591472,1.234591472,0.741281266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.187128001,100.7852248,0.187128001,79.21477516,0,0.782803216,0,0,0,5,21,0% +5/1/2018 6:00,119.1158079,324.7825301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078963039,5.668524503,-0.471283573,0.471283573,0.610747927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378801772,112.2594814,0.378801772,67.74051858,0,0.918004841,0,0,0,5,22,0% +5/1/2018 7:00,124.5587183,340.5795712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173959746,5.944234882,0.014685519,-0.014685519,0.527642318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535890288,122.4043087,0.535890288,57.5956913,0,0.95669732,0,0,0,5,23,0% +5/2/2018 8:00,126.7385986,358.1973287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212005834,6.251722757,0.418381504,-0.418381504,0.458606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647685755,130.3673442,0.647685755,49.63265585,0,0.972802069,0,0,0,5,0,0% +5/2/2018 9:00,125.2546128,16.00092372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186105396,0.279268802,0.831573299,-0.831573299,0.38794628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706568199,134.9563761,0.706568199,45.04362391,0,0.979235423,0,0,0,5,1,0% +5/2/2018 10:00,120.3853531,32.22752761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101120783,0.562476467,1.348077822,-1.348077822,0.299618805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708524188,135.1149658,0.708524188,44.88503425,0,0.979430779,0,0,0,5,2,0% +5/2/2018 11:00,112.8820101,46.07672361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970162743,0.804190536,2.165849307,-2.165849307,0.159771644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653419873,130.7999446,0.653419873,49.20005535,0,0.973479524,0,0,0,5,3,0% +5/2/2018 12:00,103.5470308,57.71693825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807236618,1.007350607,4.055282568,-4.055282568,0,#DIV/0!,0,0,0.140406422,1,0.241768515,0,0.933085009,0.971846973,0.724496596,1,0,0,0.022521145,0.312029739,0.938119204,0.662615799,0.961238037,0.922476074,0,0,0,0,0,0,-0.545009765,123.025331,0.545009765,56.97466903,0,0.958258525,0,0,0,5,4,0% +5/2/2018 13:00,93.01344018,67.73700295,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62339078,1.182233727,18.98106241,-18.98106241,0,#DIV/0!,0,0,0.730878888,1,0.052635427,0,0.95626419,0.995026153,0.724496596,1,0,0,0.092771183,0.312029739,0.770813369,0.495309965,0.961238037,0.922476074,0,0,0,0,0,0,-0.390680675,112.9968596,0.390680675,67.00314041,0,0.922018241,0,0,0,5,5,0% +5/2/2018 14:00,81.62518884,76.79872553,75.17992212,295.7610987,32.10287929,31.70159704,0,31.70159704,31.13485903,0.566738009,78.0909218,58.89465902,19.19626278,0.968020258,18.22824252,1.424628298,1.340390622,-6.744884202,6.744884202,0.31640318,0.427014,0.344751601,11.08839655,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.92801077,0.701327381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.249771361,10.65858853,30.17778214,11.35991591,0,58.89465902,-0.19912916,101.4860393,0.19912916,78.51396072,0,0.798906689,30.17778214,58.41125295,68.40677896,5,6,127% +5/2/2018 15:00,69.98497496,85.56802114,280.9775524,625.0047159,67.05934253,74.68809173,7.532708326,67.15538341,65.03725593,2.118127475,70.14834722,0,70.14834722,2.0220866,68.12626062,1.22146824,1.493443703,-2.644521408,2.644521408,0.982393485,0.238664413,2.089735107,67.21306445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.51628421,1.464994858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514005971,64.60775412,64.03029018,66.07274898,7.532708326,0,0.012052242,89.30944066,-0.012052242,90.69055934,0,0,64.03029018,66.07274898,107.2735829,5,7,68% +5/2/2018 16:00,58.16385376,94.81345847,491.9154117,767.6537204,86.98432042,266.1185064,178.048818,88.06968838,84.36142222,3.708266159,121.893485,0,121.893485,2.622898199,119.2705868,1.015150754,1.654807025,-1.461876169,1.461876169,0.780149238,0.176827801,3.03716256,97.68558811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.09140788,1.900280816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.200413936,93.89910295,83.29182182,95.79938376,178.048818,0,0.231938976,76.5887457,-0.231938976,103.4112543,0.834426055,0,231.8603947,95.79938376,294.5591754,5,8,27% +5/2/2018 17:00,46.51906406,105.6663382,678.3138664,839.5010857,100.6421019,476.2939678,373.5731802,102.7207877,97.60737122,5.113416446,167.4997809,0,167.4997809,3.034730703,164.4650502,0.811910833,1.84422551,-0.856689302,0.856689302,0.676656189,0.148370993,3.705340231,119.1764789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82391789,2.198652064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684506384,114.5569646,96.50842427,116.7556166,373.5731802,0,0.444994279,63.57702728,-0.444994279,116.4229727,0.937639005,0,446.7852092,116.7556166,523.1994251,5,9,17% +5/2/2018 18:00,35.60161281,120.2006539,824.3334948,878.3924134,110.1263486,672.2059112,559.1861042,113.019807,106.8056329,6.214174084,203.1899153,0,203.1899153,3.320715734,199.8691996,0.621365363,2.097897173,-0.458294511,0.458294511,0.608526667,0.133594412,4.106483556,132.0786271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6656369,2.405847245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.975133358,126.9590002,105.6407702,129.3648475,559.1861042,0,0.636601701,50.4611189,-0.636601701,129.5388811,0.971457954,0,648.866559,129.3648475,733.5332644,5,10,13% +5/2/2018 19:00,26.63699944,142.4332749,918.9980594,898.4322588,115.9209941,832.4190142,713.0656702,119.353344,112.4255484,6.927795559,226.317165,0,226.317165,3.495445675,222.8217193,0.464903343,2.485929612,-0.151382183,0.151382183,0.556041568,0.126138454,4.240100448,136.3762056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0677135,2.532438493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.07193834,131.0899962,111.1396518,133.6224347,713.0656702,0,0.793677724,37.46945887,-0.793677724,142.5305411,0.987002138,0,814.9369925,133.6224347,902.3902036,5,11,11% +5/2/2018 20:00,22.33935048,176.235756,955.4680878,905.316205,118.0968676,941.5151196,819.7765863,121.7385333,114.5358113,7.202722037,235.2253562,0,235.2253562,3.561056289,231.6642999,0.389895219,3.075894202,0.114892736,-0.114892736,0.510505875,0.123601059,4.112810946,132.2821377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0961784,2.579973159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97971753,127.1546224,113.0758959,129.7345955,819.7765863,0,0.905514097,25.10738742,-0.905514097,154.8926126,0.994782748,0,928.5755012,129.7345955,1013.484199,5,12,9% +5/2/2018 21:00,25.28048183,211.8113203,931.1544912,900.7739062,116.649432,988.9445414,868.7930843,120.1514571,113.1320212,7.019435876,229.2865977,0,229.2865977,3.517410766,225.7691869,0.441227644,3.696804933,0.371203077,-0.371203077,0.466674225,0.125273983,3.744771251,120.444716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.746802,2.548352126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.713074024,115.7760424,111.459876,118.3243945,868.7930843,0,0.964496283,15.31326899,-0.964496283,164.686731,0.998159468,0,978.6539192,118.3243945,1056.094869,5,13,8% +5/2/2018 22:00,33.57812553,236.2373754,847.8103788,883.6832066,111.5852197,968.7973437,854.1856772,114.6116664,108.2205137,6.391152752,208.926148,0,208.926148,3.364706081,205.5614419,0.586048847,4.123120016,0.644788942,-0.644788942,0.419888286,0.131615775,3.17154653,102.0078385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0256741,2.437718101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297774664,98.05381443,106.3234488,100.4915325,854.1856772,0,0.966619792,14.84559752,-0.966619792,165.1544025,0.998273354,0,959.0342495,100.4915325,1024.803948,5,14,7% +5/2/2018 23:00,44.2309407,251.9217197,711.4645376,849.3636962,102.8665521,879.547678,774.4196117,105.1280663,99.76474605,5.363320208,175.6046203,0,175.6046203,3.101806084,172.5028142,0.771975546,4.396863467,0.972961232,-0.972961232,0.36376752,0.14458423,2.444369134,78.6193138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.89766864,2.247247949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770937116,75.57187486,97.66860576,77.81912281,774.4196117,0,0.911764436,24.24966621,-0.911764436,155.7503338,0.995161274,0,868.3410132,77.81912281,919.2720727,5,15,6% +5/2/2018 0:00,55.77644595,263.3076486,532.2791564,786.1183649,90.1478403,723.2537144,631.811619,91.44209542,87.4295503,4.012545116,131.775534,0,131.775534,2.718289995,129.057244,0.973482627,4.595585415,1.430678537,-1.430678537,0.285493251,0.169361958,1.631113685,52.46222303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.0406093,1.969391848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181736312,50.42868428,85.22234561,52.39807613,631.811619,0,0.803710544,36.51409144,-0.803710544,143.4859086,0.987788548,0,709.3186273,52.39807613,743.6121202,5,16,5% +5/2/2018 1:00,67.57943085,272.7750674,324.9250296,663.48851,71.86901025,503.3634324,431.2121158,72.15131655,69.70189442,2.449422122,80.9489511,0,80.9489511,2.167115827,78.78183528,1.179483575,4.760823044,2.234739107,-2.234739107,0.147990795,0.221186439,0.824092585,26.50565034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.00011216,1.57006804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.597052273,25.4782393,67.59716443,27.04830734,431.2121158,0,0.649916478,49.46469501,-0.649916478,130.535305,0.973067038,0,487.1954605,27.04830734,504.8980367,5,17,4% +5/2/2018 2:00,79.26836744,281.5829997,113.9308967,389.0599408,41.48440303,220.5440606,179.4517062,41.09235445,40.23349522,0.858859224,28.87477277,0,28.87477277,1.250907813,27.62386495,1.383494004,4.914550462,4.494856357,-4.494856357,0,0.36411899,0.312726953,10.05837381,0.192579494,1,0.218911264,0,0.936310955,0.975072918,0.724496596,1,38.93025822,0.906278452,0.030191239,0.312029739,0.917951949,0.642448545,0.961238037,0.922476074,0.217503113,9.66849149,39.14776134,10.57476994,144.8929874,0,0.461244367,62.53256657,-0.461244367,117.4674334,0.941597592,0,175.5786494,10.57476994,182.4996248,5,18,4% +5/2/2018 3:00,90.1227182,290.5447119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572938163,5.070961847,-354.7879087,354.7879087,0,#DIV/0!,0,0,1,0.983389383,0,0.002818578,0.961238037,1,0.716535078,0.992038483,0,0,0.115824807,0.302982367,0.724496596,0.448993192,0.962661598,0.923899635,0,0,0,0,0,0,0.257887476,75.05525069,-0.257887476,104.9447493,0.856116991,0,0,0,0,5,19,0% +5/2/2018 4:00,101.4030124,300.3327551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769816438,5.241795428,-3.164894612,3.164894612,0.928617456,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.028225926,88.38255877,-0.028225926,91.61744123,0,0,0,0,0,5,20,0% +5/2/2018 5:00,110.9833651,311.6039001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.937025137,5.438514018,-1.239963349,1.239963349,0.742199911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184634818,100.6398422,0.184634818,79.36015776,0,0.779195173,0,0,0,5,21,0% +5/2/2018 6:00,118.8669928,324.9685922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074620396,5.671771899,-0.47044935,0.47044935,0.610605267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.375982391,112.0850436,0.375982391,67.91495638,0,0.917015049,0,0,0,5,22,0% +5/2/2018 7:00,124.2809615,340.7074944,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169111976,5.946467563,0.018114113,-0.018114113,0.527055994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532772859,122.1929979,0.532772859,57.80700207,0,0.956151376,0,0,0,5,23,0% +5/3/2018 8:00,126.4435585,358.2391087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206856414,6.252451957,0.423845189,-0.423845189,0.457671894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644319011,130.1146364,0.644319011,49.88536358,0,0.972398689,0,0,0,5,0,0% +5/3/2018 9:00,124.9607645,15.95027396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180976776,0.278384797,0.839664475,-0.839664475,0.386562608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703018091,134.6696502,0.703018091,45.33034978,0,0.978878075,0,0,0,5,1,0% +5/3/2018 10:00,120.1082545,32.10518285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0962845,0.560341148,1.360885417,-1.360885417,0.297428577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704869356,134.8189905,0.704869356,45.18100952,0,0.979064869,0,0,0,5,2,0% +5/3/2018 11:00,112.6283544,45.91047679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965735616,0.801288981,2.190067119,-2.190067119,0.155630155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64974623,130.5224714,0.64974623,49.47752856,0,0.973046879,0,0,0,5,3,0% +5/3/2018 12:00,103.316351,57.52591261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803210497,1.00401658,4.125177696,-4.125177696,0,#DIV/0!,0,0,0.149148517,1,0.237826064,0,0.933649454,0.972411417,0.724496596,1,0,0,0.023831063,0.312029739,0.934642244,0.65913884,0.961238037,0.922476074,0,0,0,0,0,0,-0.541404599,122.7793072,0.541404599,57.22069275,0,0.957647626,0,0,0,5,4,0% +5/3/2018 13:00,92.8017707,67.52980157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61969645,1.178617381,20.41455603,-20.41455603,0,#DIV/0!,0,0,0.74753474,1,0.048945533,0,0.956634461,0.995396424,0.724496596,1,0,0,0.094326606,0.312029739,0.767554015,0.49205061,0.961238037,0.922476074,0,0,0,0,0,0,-0.387226642,112.7820427,0.387226642,67.21795733,0,0.920876653,0,0,0,5,5,0% +5/3/2018 14:00,81.42939505,76.57654561,78.14114664,302.9869594,32.98759038,32.58195379,0,32.58195379,31.99289282,0.58906097,79.30660694,59.36568369,19.94092325,0.994697561,18.94622569,1.421211052,1.336512851,-6.591552207,6.591552207,0.342624495,0.422153907,0.36529917,11.74927703,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.75278549,0.720654997,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264658005,11.29385199,31.01744349,12.01450698,0,59.36568369,-0.195934781,101.2993361,0.195934781,78.70066391,0,0.794813046,31.01744349,59.19912689,69.76208806,5,6,125% +5/3/2018 15:00,69.79499626,85.32725821,284.2485491,627.2215587,67.61866804,77.12733138,9.404830041,67.72250134,65.57971571,2.14278563,70.95830397,0,70.95830397,2.038952328,68.91935164,1.218152486,1.489241597,-2.62054256,2.62054256,0.978292861,0.23788571,2.107336839,67.77919667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.03771719,1.477214021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526758366,65.15194195,64.56447555,66.62915597,9.404830041,0,0.01499443,89.14085022,-0.01499443,90.85914978,0,0,64.56447555,66.62915597,108.1719256,5,7,68% +5/3/2018 16:00,57.97376018,94.54720919,494.9281254,768.3607914,87.46056562,268.7863816,180.2320975,88.55428414,84.82330687,3.730977268,122.6383128,0,122.6383128,2.637258749,120.0010541,1.011832995,1.650160099,-1.454212748,1.454212748,0.778838716,0.17671367,3.051644427,98.15137474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.53538897,1.910684986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.210905999,94.34683476,83.74629497,96.25751975,180.2320975,0,0.234567015,76.43389881,-0.234567015,103.5661012,0.8368413,0,234.5719578,96.25751975,297.5705793,5,8,27% +5/3/2018 17:00,46.3189803,105.3668112,681.0129908,839.689894,101.0871468,478.7569428,375.5841829,103.17276,98.03899637,5.133763585,168.1676346,0,168.1676346,3.048150448,165.1194841,0.808418712,1.838997778,-0.853899649,0.853899649,0.67617913,0.148436444,3.718107477,119.5871174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.2388124,2.208374624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69375621,114.9516859,96.93256861,117.1600605,375.5841829,0,0.447289155,63.43010851,-0.447289155,116.5698915,0.938215488,0,449.3114659,117.1600605,525.9903823,5,9,17% +5/3/2018 18:00,35.37684668,119.8715956,826.7426705,878.3693434,110.5538461,674.3524117,560.8998365,113.4525752,107.2202397,6.232335468,203.7869385,0,203.7869385,3.33360636,200.4533322,0.617442454,2.092154023,-0.457632404,0.457632404,0.60841344,0.133722197,4.118185522,132.4550025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0641727,2.41518646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.983611392,127.3207866,106.0477841,129.7359731,560.8998365,0,0.638569459,50.31476981,-0.638569459,129.6852302,0.971699982,0,651.0741453,129.7359731,735.9837449,5,10,13% +5/3/2018 19:00,26.37036552,142.1514664,921.1731135,898.3137482,116.3364437,834.2440732,714.4714105,119.7726627,112.8284707,6.944192034,226.8570593,0,226.8570593,3.507973014,223.3490863,0.460249703,2.481011126,-0.151951231,0.151951231,0.556138881,0.126291619,4.251198391,136.7331537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4550177,2.541514507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.079978763,131.4331082,111.5349965,133.9746227,714.4714105,0,0.795347296,37.31192908,-0.795347296,142.6880709,0.987134381,0,816.81429,133.9746227,904.4980011,5,11,11% +5/3/2018 20:00,22.04487178,176.2597898,957.4844089,905.1562832,118.5039267,943.0663868,820.9178688,122.148518,114.9305961,7.217921918,235.7265109,0,235.7265109,3.573330623,232.1531803,0.384755596,3.076313672,0.11337969,-0.11337969,0.510764621,0.123765907,4.123709092,132.6326595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4756606,2.588865873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.987613199,127.4915573,113.4632738,130.0804232,820.9178688,0,0.90693495,24.91483759,-0.90693495,155.0851624,0.994869254,0,930.1692218,130.0804232,1015.304257,5,12,9% +5/3/2018 21:00,25.02700547,212.1637509,933.0993266,900.6072494,117.0514501,990.3038645,869.7478506,120.5560139,113.5219171,7.034096867,229.7702679,0,229.7702679,3.529533096,226.2407348,0.436803647,3.702956006,0.368727727,-0.368727727,0.467097535,0.125443719,3.755833527,120.8005168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1215847,2.557134713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721088605,116.1180516,111.8426733,118.6751863,869.7478506,0,0.965734899,15.04220839,-0.965734899,164.9577916,0.998225957,0,980.047554,118.6751863,1057.71809,5,13,8% +5/3/2018 22:00,33.38098596,236.6333491,849.775551,883.5483504,111.9857316,970.0732753,855.0583596,115.0149156,108.6089486,6.40596705,209.4147037,0,209.4147037,3.37678299,206.0379207,0.582608113,4.130031062,0.6410532,-0.6410532,0.420527136,0.131782718,3.183071504,102.3785213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3990525,2.446467781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306124469,98.41012883,106.705177,100.8565966,855.0583596,0,0.967755029,14.58957258,-0.967755029,165.4104274,0.998334032,0,960.3390371,100.8565966,1026.347662,5,14,7% +5/3/2018 23:00,44.06702143,252.272194,713.5385214,849.333103,103.2699796,880.8758877,775.3409243,105.5349634,100.1560086,5.378954774,176.1196465,0,176.1196465,3.113970909,173.0056756,0.769114616,4.402980397,0.967190879,-0.967190879,0.364754308,0.144729368,2.456531078,79.01048373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.27376513,2.256061323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779748403,75.94788227,98.05351353,78.20394359,775.3409243,0,0.912882027,24.09328504,-0.912882027,155.906715,0.99522841,0,869.6948288,78.20394359,920.8777459,5,15,6% +5/3/2018 0:00,55.62681691,263.6137557,534.5360776,786.3772836,90.56259893,724.8140584,632.9526973,91.86136118,87.83180244,4.029558742,132.3352572,0,132.3352572,2.730796498,129.6044607,0.970871107,4.600927991,1.420856885,-1.420856885,0.287172852,0.1694228,1.643826346,52.8711059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.42726935,1.978452767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190946592,50.82171804,85.61821594,52.8001708,632.9526973,0,0.804896976,36.39969313,-0.804896976,143.6003069,0.987880249,0,710.8996839,52.8001708,745.4563397,5,16,5% +5/3/2018 1:00,67.43188117,273.0497589,327.3958505,664.6297816,72.32319611,505.4519593,432.8415262,72.61043312,70.14238491,2.468048214,81.56172562,0,81.56172562,2.180811207,79.38091442,1.176908347,4.765617315,2.214026439,-2.214026439,0.15153287,0.220904437,0.836577085,26.90719477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.42352837,1.579990296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.60609725,25.86421908,68.02962562,27.44420937,432.8415262,0,0.651252078,49.36393018,-0.651252078,130.6360698,0.973224813,0,489.2817391,27.44420937,507.2434252,5,17,4% +5/3/2018 2:00,79.11481047,281.8369635,116.4007063,393.367872,42.11648453,223.7703964,182.0464016,41.72399482,40.84651713,0.877477692,29.49266629,0,29.49266629,1.269967402,28.22269889,1.38081393,4.918982968,4.417813637,-4.417813637,0,0.361823273,0.31749185,10.21162928,0.183897939,1,0.222605024,0,0.935797285,0.974559248,0.724496596,1,39.51618703,0.92008706,0.028939167,0.312029739,0.921212466,0.645709062,0.961238037,0.922476074,0.221092933,9.815806484,39.73727996,10.73589354,148.5684436,0,0.462789197,62.43276375,-0.462789197,117.5672362,0.941959449,0,179.6827291,10.73589354,186.7091568,5,18,4% +5/3/2018 3:00,89.98256512,290.7847194,0.003076372,0.517228902,0.002918981,0.136947342,0.134093187,0.002854154,0.002830963,2.32E-05,0.00083392,0,0.00083392,8.80E-05,0.000745902,1.570492031,5.075150769,2488.265213,-2488.265213,0,0.948838857,2.20E-05,0.000707741,0.997652517,1,0.000401886,0,0.961202586,0.999964549,0.724496596,1,0.002721387,6.38E-05,0.115641332,0.312029739,0.724848321,0.449344917,0.961238037,0.922476074,1.59E-05,0.000680307,0.002737322,0.000744076,0.000314781,0,0.259253083,74.97425264,-0.259253083,105.0257474,0.857138263,0,0.003007134,0.000744076,0.003494117,5,19,16% +5/3/2018 4:00,101.2135389,300.5609428,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766509501,5.245778055,-3.204308782,3.204308782,0.921877236,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030384465,88.25883039,-0.030384465,91.74116961,0,0,0,0,0,5,20,0% +5/3/2018 5:00,110.7672676,311.8156858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933253523,5.442210377,-1.24550644,1.24550644,0.743147835,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.182145608,100.4947604,0.182145608,79.50523959,0,0.775494342,0,0,0,5,21,0% +5/3/2018 6:00,118.6206415,325.1491282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070320755,5.674922848,-0.469692243,0.469692243,0.610475794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.373170524,111.9112851,0.373170524,68.08871491,0,0.916012997,0,0,0,5,22,0% +5/3/2018 7:00,124.0066012,340.8304769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164323485,5.948614013,0.021482972,-0.021482972,0.526479885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52966863,121.9830682,0.52966863,58.01693179,0,0.955601357,0,0,0,5,23,0% +5/4/2018 8:00,126.1527628,358.2775673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201781072,6.253123186,0.429250455,-0.429250455,0.456747539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640972903,129.8644047,0.640972903,50.13559529,0,0.971993582,0,0,0,5,0,0% +5/4/2018 9:00,124.6716278,15.89841806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175930388,0.277479741,0.847693504,-0.847693504,0.385189563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6994973,134.3866862,0.6994973,45.61331375,0,0.978520096,0,0,0,5,1,0% +5/4/2018 10:00,119.8359473,31.98328103,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091531842,0.55821356,1.373631498,-1.373631498,0.295248869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701253166,134.5276324,0.701253166,45.47236763,0,0.978699074,0,0,0,5,2,0% +5/4/2018 11:00,112.3793945,45.74556501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961390446,0.798410728,2.214283321,-2.214283321,0.15148894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64612056,130.2497433,0.64612056,49.75025672,0,0.972615061,0,0,0,5,3,0% +5/4/2018 12:00,103.0902647,57.33660304,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799264547,1.000712505,4.195942095,-4.195942095,0,#DIV/0!,0,0,0.157820036,1,0.233961079,0,0.93419957,0.972961533,0.724496596,1,0,0,0.025120429,0.312029739,0.931233001,0.655729597,0.961238037,0.922476074,0,0,0,0,0,0,-0.537856096,122.5378129,0.537856096,57.4621871,0,0.957038332,0,0,0,5,4,0% +5/4/2018 13:00,92.5946544,67.32444697,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616081589,1.175033267,22.04308641,-22.04308641,0,#DIV/0!,0,0,0.764119572,1,0.045334615,0,0.956993675,0.995755638,0.724496596,1,0,0,0.095857151,0.312029739,0.764365739,0.488862335,0.961238037,0.922476074,0,0,0,0,0,0,-0.383836728,112.5715419,0.383836728,67.42845815,0,0.91973628,0,0,0,5,5,0% +5/4/2018 14:00,81.23806541,76.35622479,81.05424811,309.9040208,33.84679902,33.43721431,0,33.43721431,32.82619315,0.61102116,80.42514911,59.75200237,20.67314674,1.020605872,19.65254087,1.417871719,1.332667527,-6.448231661,6.448231661,0.367133752,0.417582049,0.385803243,12.40875849,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.55378546,0.73942548,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.279513136,11.92777065,31.8332986,12.66719613,0,59.75200237,-0.19280809,101.1167067,0.19280809,78.88329332,0,0.790674782,31.8332986,59.91159758,71.04424098,5,6,123% +5/4/2018 15:00,69.60972547,85.08827385,287.4312923,629.323769,68.16674353,79.52000038,11.24195718,68.2780432,66.11126471,2.166778493,71.7465234,0,71.7465234,2.055478826,69.69104457,1.214918901,1.485070533,-2.597570451,2.597570451,0.974364399,0.237158394,2.124405182,68.32817324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.5486623,1.489187412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.539124322,65.6796391,65.08778662,67.16882651,11.24195718,0,0.017863551,88.97643948,-0.017863551,91.02356052,0,0,65.08778662,67.16882651,109.0484402,5,7,68% +5/4/2018 16:00,57.78861606,94.28248563,497.8501028,769.0177987,87.92947687,271.3810636,182.3499805,89.03108308,85.27807872,3.753004368,123.3609195,0,123.3609195,2.651398153,120.7095213,1.00860162,1.645539801,-1.446845927,1.446845927,0.777578915,0.176618376,3.065688779,98.60308936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97253297,1.920928936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221081084,94.78104005,84.19361405,96.70196898,182.3499805,0,0.237120624,76.28334064,-0.237120624,103.7166594,0.839136857,0,237.2102037,96.70196898,300.4997083,5,8,27% +5/4/2018 17:00,46.12417421,105.0681052,683.6249626,839.8507339,101.526307,481.1403813,377.5220133,103.618368,98.46491427,5.153453732,168.8141797,0,168.8141797,3.061392749,165.7527869,0.805018705,1.833784375,-0.85123438,0.85123438,0.675723342,0.148511702,3.730493531,119.9854954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.64822089,2.217968625,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.702729864,115.3346221,97.35095075,117.5525907,377.5220133,0,0.449510845,63.28769537,-0.449510845,116.7123046,0.938767979,0,451.7565281,117.5525907,528.6923476,5,9,17% +5/4/2018 18:00,35.15768842,119.5414647,829.0711923,878.3279304,110.9763126,676.4205128,562.5406566,113.8798562,107.6299673,6.249888849,204.3642545,0,204.3642545,3.346345285,201.0179092,0.61361742,2.086392152,-0.457029606,0.457029606,0.608310355,0.133856192,4.129554305,132.8206617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4580185,2.424415768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.991848036,127.6722721,106.4498666,130.0966879,562.5406566,0,0.640467685,50.17329753,-0.640467685,129.8267025,0.971932049,0,653.2011595,130.0966879,738.3468397,5,10,13% +5/4/2018 19:00,26.10922764,141.8647842,923.2759016,898.1817875,116.7475381,835.9959928,715.80878,120.1872128,113.2271691,6.96004374,227.3793007,0,227.3793007,3.520369027,223.8589317,0.455691987,2.476007577,-0.152547154,0.152547154,0.556240789,0.126449242,4.262009269,137.0808686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8382617,2.550495376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.087811207,131.7673451,111.9260729,134.3178404,715.80878,0,0.796953122,37.15987587,-0.796953122,142.8401241,0.987261053,0,818.6162026,134.3178404,906.5245428,5,11,11% +5/4/2018 20:00,21.75487263,176.2787887,959.4379889,904.9856026,118.9072383,944.55243,821.9980348,122.5543952,115.3217464,7.232648829,236.2123404,0,236.2123404,3.585491957,232.6268484,0.379694156,3.076645264,0.111860528,-0.111860528,0.511024413,0.123934261,4.134364629,132.9753782,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8516491,2.597676717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9953331,127.8209915,113.8469822,130.4186683,821.9980348,0,0.908299571,24.72858751,-0.908299571,155.2714125,0.994952082,0,931.6956386,130.4186683,1017.052049,5,12,9% +5/4/2018 21:00,24.77725814,212.5133226,934.9913601,900.4312736,117.4502814,991.6074916,870.6504097,120.9570818,113.908722,7.048359814,230.2410395,0,230.2410395,3.541559328,226.6994802,0.432444734,3.709057184,0.366263976,-0.366263976,0.467518861,0.125616435,3.766694538,121.1498443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4933963,2.565847677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728957371,116.4538385,112.2223537,119.0196861,870.6504097,0,0.966926,14.77696701,-0.966926,165.223033,0.998289735,0,981.3837203,119.0196861,1059.279724,5,13,8% +5/4/2018 22:00,33.18666867,237.0248805,851.6975659,883.4046414,112.3835578,971.3036515,855.8884166,115.4152349,108.9947789,6.42045601,209.8927144,0,209.8927144,3.388778919,206.5039355,0.579216636,4.136864573,0.63734999,-0.63734999,0.421160422,0.131952423,3.194431804,102.7439076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7699273,2.455158791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.314354968,98.76135204,107.0842823,101.2165108,855.8884166,0,0.968852071,14.33791465,-0.968852071,165.6620854,0.998392534,0,961.5968876,101.2165108,1027.84107,5,14,7% +5/4/2018 23:00,43.90505692,252.6177102,715.5780463,849.292835,103.6711287,882.1681561,776.2287648,105.9393912,100.5450616,5.394329575,176.626249,0,176.626249,3.126067035,173.500182,0.766287802,4.409010792,0.961487151,-0.961487151,0.365729703,0.144877458,2.46855942,79.39735656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64773767,2.264824926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.788462896,76.31975915,98.43620057,78.58458408,776.2287648,0,0.913970698,23.94002721,-0.913970698,156.0599728,0.995293651,0,871.0117619,78.58458408,922.4438005,5,15,6% +5/4/2018 0:00,55.47856036,263.9149856,536.7658068,786.6226165,90.97530191,726.345881,634.0674527,92.27842828,88.2320609,4.046367382,132.8883253,0,132.8883253,2.743241016,130.1450843,0.968283543,4.606185445,1.411178245,-1.411178245,0.288827997,0.169487886,1.656433237,53.27658687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.812013,1.987468778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.200080242,51.21148177,86.01209324,53.19895055,634.0674527,0,0.806063085,36.28695163,-0.806063085,143.7130484,0.987970116,0,712.4517878,53.19895055,747.2694369,5,16,5% +5/4/2018 1:00,67.28537645,273.3196985,329.8455202,665.7419085,72.77494884,507.5133632,434.4463327,73.06703048,70.58051562,2.486514859,82.16929841,0,82.16929841,2.194433218,79.97486519,1.174351358,4.770328649,2.19371866,-2.19371866,0.155005704,0.220633431,0.848994875,27.30659358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.84467627,1.589859397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.615093897,26.24813641,68.45977017,27.83799581,434.4463327,0,0.65257471,49.26399359,-0.65257471,130.7360064,0.97338042,0,491.3413241,27.83799581,509.5607356,5,17,4% +5/4/2018 2:00,78.96215332,282.0861865,118.8618623,397.5784856,42.74253233,226.9561629,184.6064447,42.3497182,41.45368728,0.896030925,30.1082797,0,30.1082797,1.288845053,28.81943464,1.37814956,4.92333273,4.343403908,-4.343403908,0,0.359598373,0.322211263,10.36342182,0.175333992,1,0.226290783,0,0.93528178,0.974043743,0.724496596,1,40.09597344,0.933763853,0.02769472,0.312029739,0.924465351,0.648961946,0.961238037,0.922476074,0.2246673,9.961715245,40.32064074,10.8954791,152.2386599,0,0.464327048,62.33332154,-0.464327048,117.6666785,0.942317279,0,183.7777605,10.8954791,190.9086336,5,18,4% +5/4/2018 3:00,89.84250683,291.0198502,0.035452415,0.761353658,0.033359628,0.231052685,0.198431718,0.032620967,0.032353712,0.000267255,0.009601764,0,0.009601764,0.001005916,0.008595848,1.568047552,5.079254575,274.4788135,-274.4788135,0,0.940969132,0.000251479,0.008088428,0.978906731,1,0.003643252,0,0.960915228,0.999677191,0.724496596,1,0.031115628,0.000728783,0.114165968,0.312029739,0.727686496,0.452183092,0.961238037,0.922476074,0.000181536,0.007774905,0.031297164,0.008503687,0.004185574,0,0.260630149,74.89254374,-0.260630149,105.1074563,0.858157268,0,0.034889045,0.008503687,0.040454538,5,19,16% +5/4/2018 4:00,101.0253462,300.7839878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763224919,5.249670925,-3.244958288,3.244958288,0.914925761,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032539743,88.13528087,-0.032539743,91.86471913,0,0,0,0,0,5,20,0% +5/4/2018 5:00,110.5529591,312.0220241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929513134,5.445811659,-1.251223997,1.251223997,0.744125595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.179661194,100.3500259,0.179661194,79.64997406,0,0.771698387,0,0,0,5,21,0% +5/4/2018 6:00,118.3768417,325.3241321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066065645,5.677977242,-0.469014996,0.469014996,0.610359978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370367356,111.7382748,0.370367356,68.26172515,0,0.914998901,0,0,0,5,22,0% +5/4/2018 7:00,123.7357279,340.9485372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159595855,5.950674554,0.024788687,-0.024788687,0.525914575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526579104,121.7746087,0.526579104,58.22539127,0,0.955047505,0,0,0,5,23,0% +5/5/2018 8:00,125.8662988,358.312723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196781331,6.253736769,0.43459275,-0.43459275,0.455833952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637649194,129.6167483,0.637649194,50.38325169,0,0.971586978,0,0,0,5,0,0% +5/5/2018 9:00,124.3872878,15.84535741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17096772,0.276553658,0.855653772,-0.855653772,0.383828277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696007765,134.1075775,0.696007765,45.89242245,0,0.978161721,0,0,0,5,1,0% +5/5/2018 10:00,119.5685171,31.86181779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086864306,0.556093626,1.386305108,-1.386305108,0.293081554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69767764,134.2409764,0.69767764,45.75902359,0,0.978333664,0,0,0,5,2,0% +5/5/2018 11:00,112.135215,45.58199509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957128708,0.795555894,2.238475756,-2.238475756,0.14735179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642544866,129.9818466,0.642544866,50.01815344,0,0.972184422,0,0,0,5,3,0% +5/5/2018 12:00,102.8688518,57.14903424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795400162,0.997438812,4.267523158,-4.267523158,0,#DIV/0!,0,0,0.166413639,1,0.230174997,0,0.934735338,0.973497301,0.724496596,1,0,0,0.026388515,0.312029739,0.927892771,0.652389367,0.961238037,0.922476074,0,0,0,0,0,0,-0.534366145,122.3009351,0.534366145,57.69906486,0,0.956431198,0,0,0,5,4,0% +5/5/2018 13:00,92.39216415,67.12098268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612547468,1.171482145,23.9073092,-23.9073092,0,#DIV/0!,0,0,0.780616934,1,0.041803843,0,0.957341915,0.996103878,0.724496596,1,0,0,0.09736187,0.312029739,0.76124959,0.485746186,0.961238037,0.922476074,0,0,0,0,0,0,-0.380512615,112.3654388,0.380512615,67.63456116,0,0.918598312,0,0,0,5,5,0% +5/5/2018 14:00,81.05127395,76.13782609,83.91527674,316.5177472,34.68077627,34.26761171,0,34.26761171,33.63502291,0.632588802,81.45142738,60.05944364,21.39198375,1.045753363,20.34623038,1.414611593,1.328855751,-6.314124057,6.314124057,0.390067503,0.413283226,0.406212074,13.06517666,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.33126339,0.757644752,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.294299265,12.55874476,32.62556265,13.31638951,0,60.05944364,-0.189750635,100.9382319,0.189750635,79.06176807,0,0.786496271,32.62556265,60.55291797,72.25623641,5,6,121% +5/5/2018 15:00,69.42922104,84.85115376,290.5247403,631.31392,68.70362411,81.86406983,13.04201527,68.82205457,66.63195635,2.190098211,72.51275462,0,72.51275462,2.071667756,70.44108687,1.211768504,1.480932007,-2.575571776,2.575571776,0.970602404,0.236481148,2.140940101,68.85999307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.04917092,1.500916237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551103815,66.19084456,65.60027473,67.69176079,13.04201527,0,0.020658526,88.81626942,-0.020658526,91.18373058,0,0,65.60027473,67.69176079,109.9031783,5,7,68% +5/5/2018 16:00,57.6084745,94.01940325,500.6808736,769.6254686,88.39104282,273.9016426,184.4015719,89.50007066,85.72572675,3.774343913,124.0611905,0,124.0611905,2.665316069,121.3958745,1.005457557,1.640948148,-1.439770832,1.439770832,0.776369003,0.176541681,3.079295443,99.04072645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40282929,1.931012419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.230939066,95.20171347,84.63376835,97.13272588,184.4015719,0,0.239599103,76.13711969,-0.239599103,103.8628803,0.841318084,0,239.7741455,97.13272588,303.3455719,5,8,27% +5/5/2018 17:00,45.93469973,104.7703757,686.1497046,839.9839156,101.9595775,483.443926,379.3863197,104.0576064,98.88512006,5.172486304,169.4393973,0,169.4393973,3.074457453,166.3649399,0.801711751,1.828588014,-0.848692522,0.848692522,0.675288659,0.148596694,3.742499139,120.3716371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05213868,2.227433959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711427886,115.7057961,97.76356657,117.9332301,379.3863197,0,0.451659029,63.14982455,-0.451659029,116.8501754,0.939297021,0,454.1200065,117.9332301,531.3049469,5,9,17% +5/5/2018 18:00,34.94420581,119.2104495,831.3192985,878.2683692,111.3937578,678.4102873,564.1086262,114.3016611,108.034825,6.266836023,204.9219214,0,204.9219214,3.358932798,201.5629886,0.609891446,2.080614847,-0.456485935,0.456485935,0.608217382,0.133996357,4.140591471,133.1756549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.8471831,2.433535378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999844425,128.0135051,106.8470276,130.4470404,564.1086262,0,0.642296416,50.03672859,-0.642296416,129.9632714,0.972154322,0,655.2476666,130.4470404,740.6226457,5,10,13% +5/5/2018 19:00,25.85368195,141.5733082,925.3068952,898.036537,117.1542994,837.6752024,717.0781831,120.5970192,113.621665,6.975354227,227.8840039,0,227.8840039,3.532634379,224.3513696,0.451231874,2.470920361,-0.153169911,0.153169911,0.556347287,0.12661129,4.272535107,137.4194158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2174662,2.559381582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.095437141,132.0927695,112.3129033,134.652151,717.0781831,0,0.798495555,37.01332235,-0.798495555,142.9866777,0.987382244,0,820.3431688,134.652151,908.4703086,5,11,11% +5/5/2018 20:00,21.4694367,176.2925138,961.3294363,904.8043164,119.3068326,945.9739513,823.0177525,122.9561988,115.7092914,7.246907358,236.6829929,0,236.6829929,3.597541199,233.0854517,0.374712359,3.076884812,0.110335323,-0.110335323,0.511285238,0.124106085,4.144779626,133.3103604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2241721,2.606406352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.00287873,128.1429891,114.2270509,130.7493955,823.0177525,0,0.909608561,24.54868647,-0.909608561,155.4513135,0.9950313,0,933.1554752,130.7493955,1018.72834,5,12,9% +5/5/2018 21:00,24.53126603,212.8597021,936.8312334,900.2461367,117.8459589,992.8562961,871.5015981,121.354698,114.2924684,7.062229557,230.6990693,0,230.6990693,3.553490466,227.1455788,0.428151362,3.715102647,0.363811985,-0.363811985,0.467938176,0.12579209,3.777355972,121.4927526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.862268,2.574491746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681543,116.783455,112.5989495,119.3579468,871.5015981,0,0.968070356,14.51767486,-0.968070356,165.4823251,0.998350861,0,982.6633207,119.3579468,1060.78071,5,13,8% +5/5/2018 22:00,32.99516432,237.411704,853.5769925,883.2522491,112.7787295,972.4894019,856.6767433,115.8126586,109.3780347,6.434623922,210.360319,0,210.360319,3.400694803,206.9596242,0.575874255,4.143615918,0.633679579,-0.633679579,0.421788099,0.132124847,3.205628345,103.1040269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1383273,2.463791808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322466824,99.10751236,107.4607941,101.5713042,856.6767433,0,0.96991176,14.09064944,-0.96991176,165.9093506,0.998448919,0,962.8087622,101.5713042,1029.285149,5,14,7% +5/5/2018 23:00,43.7450349,252.958089,717.5835076,849.2430804,104.070023,883.4253461,777.0839707,106.3413754,100.9319278,5.409447589,177.1245245,0,177.1245245,3.13809517,173.9864293,0.76349489,4.414951523,0.955850364,-0.955850364,0.36669365,0.145028449,2.480453982,79.77992658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.01960815,2.273539269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.797080466,76.6875,98.81668861,78.96103927,777.0839707,0,0.915031266,23.78983242,-0.915031266,156.2101676,0.995357058,0,872.2927039,78.96103927,923.9711248,5,15,6% +5/5/2018 0:00,55.33167432,264.2112085,538.9684746,786.8545924,91.38596003,727.8498615,635.1565533,92.69330818,88.63033616,4.062972023,133.4347705,0,133.4347705,2.755623873,130.6791466,0.965719898,4.611355509,1.401642497,-1.401642497,0.290458706,0.169557153,1.668932828,53.67861666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.19485033,1.996440116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.209136152,51.5979281,86.40398649,53.59436821,635.1565533,0,0.807209565,36.17581253,-0.807209565,143.8241875,0.988058217,0,713.9756378,53.59436821,749.0520799,5,16,5% +5/5/2018 1:00,67.13992915,273.5847836,332.2738187,666.8253093,73.22426483,509.5480745,436.0269711,73.52110348,71.01628308,2.504820398,82.77161603,0,82.77161603,2.207981754,80.56363427,1.171812823,4.774955257,2.173811027,-2.173811027,0.15841011,0.220373261,0.861342655,27.70374064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.26355253,1.599675264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.624039822,26.62988926,68.88759235,28.22956453,436.0269711,0,0.653884856,49.16485221,-0.653884856,130.8351478,0.973533938,0,493.3746465,28.22956453,511.8503319,5,17,4% +5/5/2018 2:00,78.81042564,282.3305836,121.3134308,401.6930221,43.36254926,230.1014679,187.1319476,42.9695203,42.05500841,0.914511885,30.72138667,0,30.72138667,1.307540851,29.41384582,1.375501412,4.927598263,4.271522251,-4.271522251,0,0.35744228,0.326885213,10.5137521,0.166888577,1,0.229967023,0,0.934764679,0.973526642,0.724496596,1,40.66962027,0.947308896,0.026458318,0.312029739,0.927709271,0.652205867,0.961238037,0.922476074,0.228226103,10.10621843,40.89784637,11.05352733,155.9017631,0,0.465858099,62.23422912,-0.465858099,117.7657709,0.94267118,0,187.8619454,11.05352733,195.0962579,5,18,4% +5/5/2018 3:00,89.70226016,291.2500336,0.08412785,1.092477178,0.078450774,0.362974497,0.286255113,0.076719385,0.076085193,0.000634191,0.022763351,0,0.022763351,0.00236558,0.020397771,1.565599786,5.083272032,144.6794567,-144.6794567,0,0.932518466,0.000591395,0.019021298,0.960335546,1,0.006911721,0,0.960622894,0.999384858,0.724496596,1,0.073206157,0.001713855,0.112686186,0.312029739,0.730550801,0.455047397,0.961238037,0.922476074,0.000425582,0.018283995,0.073631739,0.01999785,0.011354153,0,0.262023883,74.80981382,-0.262023883,105.1901862,0.8591777,0,0.083386974,0.01999785,0.096475167,5,19,16% +5/5/2018 4:00,100.8384969,301.0018357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759963784,5.253473087,-3.286882565,3.286882565,0.907756287,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03469125,88.01193891,-0.03469125,91.98806109,0,0,0,0,0,5,20,0% +5/5/2018 5:00,110.3405181,312.2228831,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92580534,5.449317311,-1.257118897,1.257118897,0.745133682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177182461,100.2056889,0.177182461,79.79431108,0,0.767805025,0,0,0,5,21,0% +5/5/2018 6:00,118.1356824,325.4936012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061856622,5.680935035,-0.46842023,0.46842023,0.610258267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367574125,111.5660849,0.367574125,68.43391512,0,0.913973015,0,0,0,5,22,0% +5/5/2018 7:00,123.4684329,341.061697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154930677,5.952649565,0.028027876,-0.028027876,0.52536064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523505829,121.5677108,0.523505829,58.43228923,0,0.95449008,0,0,0,5,23,0% +5/6/2018 8:00,125.5842534,358.3445983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191858711,6.254293097,0.439867495,-0.439867495,0.454931918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634349672,129.3717675,0.634349672,50.62823251,0,0.971179119,0,0,0,5,0,0% +5/6/2018 9:00,124.1078289,15.79109807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166090242,0.275606654,0.863538557,-0.863538557,0.382479899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69255143,133.8324176,0.69255143,46.16758241,0,0.977803196,0,0,0,5,1,0% +5/6/2018 10:00,119.306048,31.74079363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082283354,0.553981356,1.398895011,-1.398895011,0.290928554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694144786,133.9591068,0.694144786,46.04089316,0,0.977968918,0,0,0,5,2,0% +5/6/2018 11:00,111.8958976,45.41977816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952951832,0.792724674,2.262621304,-2.262621304,0.143222658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639021123,129.7188657,0.639021123,50.28113426,0,0.971755325,0,0,0,5,3,0% +5/6/2018 12:00,102.6521889,56.96323471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79161868,0.994195998,4.339862153,-4.339862153,0,#DIV/0!,0,0,0.174921881,1,0.226469211,0,0.935256749,0.974018712,0.724496596,1,0,0,0.0276346,0.312029739,0.924622809,0.649119405,0.961238037,0.922476074,0,0,0,0,0,0,-0.53093659,122.0687583,0.53093659,57.93124167,0,0.955826796,0,0,0,5,4,0% +5/6/2018 13:00,92.19436924,66.91945566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609095295,1.167964835,26.05988469,-26.05988469,0,#DIV/0!,0,0,0.797009918,1,0.038354337,0,0.957679271,0.996441234,0.724496596,1,0,0,0.098839828,0.312029739,0.758206561,0.482703157,0.961238037,0.922476074,0,0,0,0,0,0,-0.37725593,112.1638119,0.37725593,67.83618812,0,0.917463979,0,0,0,5,5,0% +5/6/2018 14:00,80.86909,75.92141592,86.72057895,322.8339684,35.48981906,35.07340643,0,35.07340643,34.41967007,0.653736355,82.39028313,60.29372576,22.09655737,1.070148988,21.02640838,1.411431884,1.325078681,-6.188516769,6.188516769,0.411547614,0.409243336,0.426476569,13.71695245,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.08549609,0.775319299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.308980822,13.18525644,33.39447691,13.96057574,0,60.29372576,-0.186763884,100.7639881,0.186763884,79.23601193,0,0.782282286,33.39447691,61.12728937,73.40106526,5,6,120% +5/6/2018 15:00,69.25353715,84.61598738,293.5279461,633.1944993,69.22936479,84.15762793,14.80304627,69.35458166,67.14184401,2.212737645,73.25676967,0,73.25676967,2.087520778,71.16924889,1.208702242,1.47682758,-2.554514934,2.554514934,0.967001471,0.235852721,2.156941837,69.37466391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.53929433,1.512401697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562697018,66.68556575,66.10199135,68.19796744,14.80304627,0,0.023378356,88.66039684,-0.023378356,91.33960316,0,0,66.10199135,68.19796744,110.7361971,5,7,68% +5/6/2018 16:00,57.433384,93.75808222,503.4200461,770.1845165,88.84525575,276.3472975,186.3860611,89.96123644,86.16624349,3.794992953,124.7390308,0,124.7390308,2.679012265,122.0600186,1.002401651,1.636387235,-1.432982669,1.432982669,0.775208159,0.176483349,3.092464524,99.46428936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.82627073,1.940935266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24048002,95.60885824,85.06675075,97.54979351,186.3860611,0,0.242001828,75.99527994,-0.242001828,104.0047201,0.843389991,0,242.2628891,97.54979351,306.1072779,5,8,26% +5/6/2018 17:00,45.75060589,104.473785,688.5872067,840.0897506,102.3869568,485.6673,381.1768265,104.4904735,99.29961232,5.190861225,170.043285,0,170.043285,3.087344516,166.9559405,0.798498708,1.82341153,-0.84627304,0.84627304,0.674874903,0.148691343,3.754125261,120.7455731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.45056441,2.236770592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.719850972,116.0652377,98.17041538,118.3020082,381.1768265,0,0.453733457,63.01652783,-0.453733457,116.9834722,0.939803145,0,456.4015956,118.3020082,533.827894,5,9,17% +5/6/2018 18:00,34.73646173,118.8787516,833.4872798,878.1908569,111.8061941,680.3218781,565.6038741,114.718004,108.4348248,6.283179182,205.46001,0,205.46001,3.371369272,202.0886408,0.606265628,2.074825626,-0.456001131,0.456001131,0.608134476,0.134142652,4.151298724,133.520037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2316781,2.442545561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007601794,128.3445382,107.2392799,130.7870838,565.6038741,0,0.644055754,49.90508402,-0.644055754,130.094916,0.972366969,0,657.2138049,130.7870838,742.8113355,5,10,13% +5/6/2018 19:00,25.60382164,141.2771401,927.2666001,897.8781579,117.5567514,839.2821868,718.2800778,121.0021089,114.0119816,6.990127311,228.3712925,0,228.3712925,3.544769793,224.8265227,0.446870989,2.465751253,-0.153819388,0.153819388,0.556458354,0.126777726,4.282777996,137.7488623,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5926534,2.568173648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102858079,132.409446,112.6955115,134.9776196,718.2800778,0,0.799974998,36.87228507,-0.799974998,143.1277149,0.987498047,0,821.9956853,134.9776196,910.3358378,5,11,11% +5/6/2018 20:00,21.18864783,176.3007318,963.1593755,904.6125767,119.7027407,947.3316903,823.9777266,123.3539636,116.0932614,7.260702213,237.1386209,0,237.1386209,3.609479288,233.5291417,0.369811669,3.077028244,0.108804224,-0.108804224,0.511547072,0.124281343,4.154956136,133.6376719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5932587,2.615055457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.010251577,128.4576134,114.6035103,131.0726689,823.9777266,0,0.910862559,24.37517573,-0.910862559,155.6248243,0.995106976,0,934.5494944,131.0726689,1020.333935,5,12,9% +5/6/2018 21:00,24.28905561,213.2025523,938.6195851,900.0519925,118.2385158,994.0511679,872.3022687,121.7488992,114.6731883,7.075710907,231.1445129,0,231.1445129,3.565327505,227.5791854,0.423923993,3.721086512,0.361372001,-0.361372001,0.468355438,0.125970646,3.787819425,121.8292933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2282304,2.583067641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.744262279,117.1069507,112.9724927,119.6900183,872.3022687,0,0.969168755,14.26446029,-0.969168755,165.7355397,0.998409397,0,983.8872752,119.6900183,1062.221998,5,13,8% +5/6/2018 22:00,32.80646487,237.7935555,855.4143782,883.0913346,113.1712761,973.6314504,857.4242309,116.2072195,109.7587446,6.448474911,210.8176512,0,210.8176512,3.412531533,207.4051196,0.572580828,4.150280483,0.630042334,-0.630042334,0.422410105,0.132299946,3.216661896,103.4589038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5042802,2.472367479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.330460594,99.44863356,107.8347408,101.921001,857.4242309,0,0.970934939,13.8478006,-0.970934939,166.1521994,0.998503244,0,963.9756165,101.921001,1030.680873,5,14,7% +5/6/2018 23:00,43.58694551,253.2931535,719.5552629,849.1840125,104.4666834,884.6482934,777.9073544,106.7409389,101.3166274,5.424311513,177.6145602,0,177.6145602,3.150055944,174.4645042,0.76073571,4.420799502,0.950280955,-0.950280955,0.367646075,0.145182293,2.4922144,80.15818202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.38939603,2.282204808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805600849,77.05109353,99.19499688,79.33329834,777.9073544,0,0.916064531,23.6426402,-0.916064531,156.3573598,0.995418692,0,873.5385184,79.33329834,925.4605755,5,15,6% +5/6/2018 0:00,55.18615975,264.5022967,541.1441624,787.0734126,91.79458013,729.326631,636.2206228,93.10600813,89.02663486,4.079373276,133.9746126,0,133.9746126,2.767945277,131.2066673,0.963180189,4.616435957,1.39224971,-1.39224971,0.292064967,0.169630547,1.681323379,54.07713937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.57578772,2.005366931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218113064,51.98100328,86.79390078,53.98637021,636.2206228,0,0.808337078,36.06622379,-0.808337078,143.9337762,0.988144616,0,715.4718841,53.98637021,750.8048837,5,16,5% +5/6/2018 1:00,66.99555489,273.844914,334.6804707,667.880345,73.67113423,511.556456,437.5838156,73.97264047,71.44967772,2.522962757,83.36861142,0,83.36861142,2.221456515,81.14715491,1.169293017,4.779495389,2.154299287,-2.154299287,0.161746814,0.220123792,0.873616938,28.09852378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68014794,1.609437683,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632932498,27.00936984,69.31308044,28.61880752,437.5838156,0,0.655182951,49.06647625,-0.655182951,130.9335237,0.973685438,0,495.3820695,28.61880752,514.1125067,5,17,4% +5/6/2018 2:00,78.65966019,282.5700719,123.7544413,405.7126181,43.97652809,233.2063532,189.6229664,43.58338677,42.65047352,0.932913252,31.33175164,0,31.33175164,1.326054578,30.00569706,1.372870059,4.931778122,4.202070916,-4.202070916,0,0.35535313,0.331513645,10.66261838,0.158562756,1,0.233632132,0,0.934246242,0.973008205,0.724496596,1,41.23712217,0.960722028,0.025230406,0.312029739,0.930942815,0.655439411,0.961238037,0.922476074,0.231769142,10.24931436,41.46889131,11.21003639,159.5558263,0,0.467382472,62.13547915,-0.467382472,117.8645208,0.943021234,0,191.9334236,11.21003639,199.2701682,5,18,4% +5/6/2018 3:00,89.56168815,291.4752013,0.153080726,1.5300769,0.141375775,0.541345743,0.403078982,0.138266761,0.137112774,0.001153987,0.041379196,0,0.041379196,0.004263001,0.037116194,1.563146342,5.08720195,97.93847081,-97.93847081,0,0.923537395,0.00106575,0.034278193,0.941922295,1,0.010210137,0,0.960325266,0.999087229,0.724496596,1,0.13198153,0.00308853,0.111200817,0.312029739,0.733443673,0.457940268,0.961238037,0.922476074,0.000764615,0.032949503,0.132746145,0.036038033,0.023409902,0,0.263437075,74.72589582,-0.263437075,105.2741042,0.860201354,0,0.152883375,0.036038033,0.176469547,5,19,15% +5/6/2018 4:00,100.6530565,301.214435,0,0,0,0,0,0,0,0,0,0,0,0,0,1.756727238,5.257183646,-3.330120774,3.330120774,0.900362118,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036838413,87.88883675,-0.036838413,92.11116325,0,0,0,0,0,5,20,0% +5/6/2018 5:00,110.1300251,312.4182345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.922131543,5.452726835,-1.263193628,1.263193628,0.746172522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17471035,100.0618027,0.17471035,79.93819729,0,0.763812032,0,0,0,5,21,0% +5/6/2018 6:00,117.897254,325.6575363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057695262,5.683796243,-0.467910436,0.467910436,0.610171087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.364792119,111.3947899,0.364792119,68.60521009,0,0.912935635,0,0,0,5,22,0% +5/6/2018 7:00,123.204808,341.1699815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150329554,5.954539485,0.031197192,-0.031197192,0.524818656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520450388,121.3624675,0.520450388,58.63753254,0,0.953929364,0,0,0,5,23,0% +5/7/2018 8:00,125.3067137,358.3732192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187014729,6.254792626,0.445070081,-0.445070081,0.454042223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631076145,129.1295633,0.631076145,50.87043671,0,0.970770258,0,0,0,5,0,0% +5/7/2018 9:00,123.8333341,15.73565053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161299403,0.274638912,0.871341039,-0.871341039,0.381145596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689130247,133.5612997,0.689130247,46.43870028,0,0.977444775,0,0,0,5,1,0% +5/7/2018 10:00,119.0486216,31.62021357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077790417,0.551876837,1.411389698,-1.411389698,0.288791836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690656601,133.682107,0.690656601,46.31789301,0,0.977605122,0,0,0,5,2,0% +5/7/2018 11:00,111.6615216,45.25892946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9488612,0.789917335,2.286695894,-2.286695894,0.139105661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635551272,129.4608833,0.635551272,50.53911668,0,0.971328141,0,0,0,5,3,0% +5/7/2018 12:00,102.4403494,56.7792365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787921385,0.990984624,4.412893949,-4.412893949,0,#DIV/0!,0,0,0.183337218,1,0.222845063,0,0.935763802,0.974525765,0.724496596,1,0,0,0.028857972,0.312029739,0.921424332,0.645920927,0.961238037,0.922476074,0,0,0,0,0,0,-0.527569227,121.8413639,0.527569227,58.15863606,0,0.955225708,0,0,0,5,4,0% +5/7/2018 13:00,92.00133539,66.71991613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605726219,1.164482213,28.57024864,-28.57024864,0,#DIV/0!,0,0,0.813281182,1,0.034987163,0,0.958005836,0.996767799,0.724496596,1,0,0,0.1002901,0.312029739,0.755237589,0.479734185,0.961238037,0.922476074,0,0,0,0,0,0,-0.374068236,111.9667358,0.374068236,68.03326417,0,0.916334548,0,0,0,5,5,0% +5/7/2018 14:00,80.69157824,75.7070639,89.46677914,328.8587728,36.27424267,35.85487879,0,35.85487879,35.18044042,0.674438372,83.2464875,60.46042883,22.78605867,1.093802254,21.69225641,1.408333719,1.321337532,-6.070771994,6.070771994,0.431683157,0.405449297,0.446550247,14.36259093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.81677749,0.79245601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.323524133,13.80586871,34.14030162,14.59832472,0,60.46042883,-0.18384922,100.5940468,0.18384922,79.40595319,0,0.778038008,34.14030162,61.63883636,74.48168724,5,6,118% +5/7/2018 15:00,69.08272373,84.3828676,296.4400556,634.9679108,69.74402058,86.39887849,16.5232071,69.87567139,67.64098103,2.234690356,73.9783631,0,73.9783631,2.103039548,71.87532355,1.205720985,1.472758872,-2.534369918,2.534369918,0.963556471,0.235271918,2.172410899,69.87220212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.01908381,1.523644994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573904301,67.1638184,66.59298812,68.68746339,16.5232071,0,0.026022114,88.5088744,-0.026022114,91.4911256,0,0,66.59298812,68.68746339,111.5475592,5,7,68% +5/7/2018 16:00,57.26338852,93.49864706,506.0673065,770.695647,89.2921115,278.7172947,188.3027207,90.414574,86.59962488,3.81494912,125.3943641,0,125.3943641,2.692486614,122.7018775,0.999434671,1.631859237,-1.426476722,1.426476722,0.774095576,0.176443154,3.105196396,99.87379013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.24285341,1.950697387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249704218,96.00248596,85.49255763,97.95318335,188.3027207,0,0.244328253,75.85786097,-0.244328253,104.142139,0.845357273,0,244.675632,97.95318335,308.7840314,5,8,26% +5/7/2018 17:00,45.57193678,104.1785025,690.9375244,840.1685507,102.808447,487.8103052,382.8933334,104.9169719,99.70839296,5.208578912,170.6258562,0,170.6258562,3.100053999,167.5258022,0.795380343,1.818257879,-0.843974845,0.843974845,0.674481888,0.148795576,3.765373072,121.1073414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.84349991,2.245978569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.727999973,116.4129831,98.57149988,118.6589616,382.8933334,0,0.455733951,62.8878321,-0.455733951,117.1121679,0.940286866,0,458.6010724,118.6589616,536.2609896,5,9,17% +5/7/2018 18:00,34.53451404,118.5465855,835.5754779,878.0955921,112.2136364,682.1554968,567.0265946,115.1289021,108.8299812,6.298920901,205.9786037,0,205.9786037,3.383655162,202.5949486,0.602740976,2.069028234,-0.455574865,0.455574865,0.60806158,0.134295033,4.161677909,133.8538672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6115175,2.451446646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015121478,128.6654286,107.626639,131.1168752,567.0265946,0,0.645745862,49.77837934,-0.645745862,130.2216207,0.972570158,0,659.0997838,131.1168752,744.9131563,5,10,13% +5/7/2018 19:00,25.3597367,140.976404,929.1555564,897.706812,117.95492,840.817485,719.414974,121.402511,114.398144,7.004367061,228.8412981,0,228.8412981,3.556776045,225.284522,0.442610903,2.460502418,-0.154495397,0.154495397,0.556573959,0.126948517,4.292740083,138.0692773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9638473,2.576872137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110075577,132.717441,113.0739229,135.2943132,719.414974,0,0.801391907,36.736774,-0.801391907,143.263226,0.987608554,0,823.574305,135.2943132,912.1217271,5,11,11% +5/7/2018 20:00,20.91259,176.3032159,964.9284461,904.4105341,120.0949943,948.6264221,824.8786967,123.7477254,116.4736872,7.274038214,237.5793805,0,237.5793805,3.621307183,233.9580733,0.364993551,3.077071599,0.107267451,-0.107267451,0.511809875,0.12446,4.164896191,133.9573783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9589384,2.623624726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.017453113,128.7649273,114.9763915,131.388552,824.8786967,0,0.912062239,24.20808834,-0.912062239,155.7919117,0.99517918,0,935.8784963,131.388552,1021.869676,5,12,9% +5/7/2018 21:00,24.0506536,213.5415327,940.3570498,899.8489907,118.6279848,995.1930126,873.0532906,122.139722,115.0509133,7.08880865,231.5775252,0,231.5775252,3.577071431,228.0004538,0.419763093,3.727002836,0.358944346,-0.358944346,0.468770591,0.126152066,3.798086408,122.1595147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5913141,2.591576075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.751700673,117.4243721,113.3430147,120.0159482,873.0532906,0,0.970222004,14.01744953,-0.970222004,165.9825505,0.998465403,0,985.0565203,120.0159482,1063.604558,5,13,8% +5/7/2018 22:00,32.62056366,238.1701717,857.2102489,882.9220514,113.5612261,974.7307146,858.1317655,116.5989491,110.1369361,6.462012944,211.2648393,0,211.2648393,3.424289963,207.8405493,0.56933624,4.156853677,0.626438709,-0.626438709,0.423026361,0.132477681,3.227533081,103.8085585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8678123,2.480886421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33833673,99.78473494,108.206149,102.2656214,858.1317655,0,0.971922452,13.60938962,-0.971922452,166.3906104,0.998555566,0,965.0984002,102.2656214,1032.029204,5,14,7% +5/7/2018 23:00,43.43078132,253.6227291,721.4936332,849.1157907,104.8611282,885.8378056,778.6997035,107.138102,101.6991783,5.438923767,178.0964344,0,178.0964344,3.161949911,174.9344845,0.758010131,4.426551681,0.944779477,-0.944779477,0.368586883,0.145338952,2.503840123,80.53210524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.75711847,2.290821947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.814023646,77.41052274,99.57114212,79.70134469,778.6997035,0,0.917071278,23.49839008,-0.917071278,156.5016099,0.995478611,0,874.7500413,79.70134469,926.9129774,5,15,6% +5/7/2018 0:00,55.04202054,264.788125,543.2929033,787.2792526,92.20116518,730.7767729,637.2602417,93.51653126,89.42095987,4.095571393,134.5078597,0,134.5078597,2.780205316,131.7276544,0.960664485,4.621424601,1.383000134,-1.383000134,0.293646738,0.169708024,1.693602952,54.47209266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95482791,2.014249287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227009573,52.36064741,87.18183749,54.3748967,637.2602417,0,0.809446254,35.95813585,-0.809446254,144.0418641,0.988229376,0,716.9411286,54.3748967,752.528411,5,16,5% +5/7/2018 1:00,66.85227242,274.0999915,337.0651468,668.9073228,74.11554106,513.5388043,439.1171808,74.4216235,71.88068404,2.540939453,83.96020426,0,83.96020426,2.23485702,81.72534723,1.166792266,4.783947331,2.135179628,-2.135179628,0.165016468,0.219884915,0.885814057,28.49082503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.09444762,1.619146303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.641769269,27.38646472,69.73621689,29.00561103,439.1171808,0,0.656469388,48.96883915,-0.656469388,131.0311609,0.973834986,0,497.3638906,29.00561103,516.3474829,5,17,4% +5/7/2018 2:00,78.50989276,282.804571,126.1838859,409.6383114,44.58445194,236.2707955,192.0795019,44.19129365,43.24006621,0.951227433,31.93912978,0,31.93912978,1.344385725,30.59474405,1.370256124,4.935870903,4.134958709,-4.134958709,0,0.353329204,0.336096431,10.81001655,0.150357709,1,0.237284403,0,0.933726744,0.972488707,0.724496596,1,41.79846606,0.974002881,0.024011452,0.312029739,0.93416449,0.658661085,0.961238037,0.922476074,0.235296119,10.39099909,42.03376218,11.36500197,163.198868,0,0.468900238,62.03706772,-0.468900238,117.9629323,0.94336751,0,195.9902719,11.36500197,203.4284384,5,18,4% +5/7/2018 3:00,89.42075828,291.695288,0.246433862,2.094261994,0.225261914,0.775035974,0.554708815,0.220327159,0.218469437,0.001857723,0.066543221,0,0.066543221,0.006792478,0.059750743,1.560686652,5.091043188,73.85671988,-73.85671988,0,0.914086694,0.001698119,0.054617359,0.923664642,1,0.013538902,0,0.960022236,0.9987842,0.724496596,1,0.210381948,0.004921127,0.109709807,0.312029739,0.736365406,0.460862002,0.961238037,0.922476074,0.001214724,0.052500283,0.211596672,0.05742141,0.042343896,0,0.264870783,74.64072513,-0.264870783,105.3592749,0.861228708,0,0.248064451,0.05742141,0.285645615,5,19,15% +5/7/2018 4:00,100.4690927,301.4217377,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753516464,5.260801759,-3.374711623,3.374711623,0.892736634,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.038980601,87.7660101,-0.038980601,92.2339899,0,0,0,0,0,5,20,0% +5/7/2018 5:00,109.9215624,312.6080531,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918493183,5.456039795,-1.269450263,1.269450263,0.74724247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17224586,99.91842382,0.17224586,80.08157618,0,0.75971726,0,0,0,5,21,0% +5/7/2018 6:00,117.6616481,325.8159418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053583163,5.686560941,-0.467487974,0.467487974,0.610098841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.362022671,111.2244673,0.362022671,68.77553274,0,0.911887103,0,0,0,5,22,0% +5/7/2018 7:00,122.9449452,341.273419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145794092,5.956344811,0.034293323,-0.034293323,0.524289186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.517414397,121.1589736,0.517414397,58.84102636,0,0.953365658,0,0,0,5,23,0% +5/8/2018 8:00,125.033766,358.3986155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182250893,6.255235875,0.450195883,-0.450195883,0.453165659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627830443,128.8902374,0.627830443,51.10976265,0,0.970360663,0,0,0,5,0,0% +5/8/2018 9:00,123.5638852,15.67902958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156596634,0.27365069,0.879054311,-0.879054311,0.379826549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685746165,133.2943171,0.685746165,46.70568289,0,0.977086723,0,0,0,5,1,0% +5/8/2018 10:00,118.7963179,31.50008715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073386886,0.549780235,1.423777408,-1.423777408,0.286673413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687215063,133.4100592,0.687215063,46.58994075,0,0.977242573,0,0,0,5,2,0% +5/8/2018 11:00,111.4321635,45.09946826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944858145,0.787134212,2.310674533,-2.310674533,0.135005072,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632137225,129.2079797,0.632137225,50.79202026,0,0.97090325,0,0,0,5,3,0% +5/8/2018 12:00,102.2334037,56.59707519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784309501,0.987805309,4.48654678,-4.48654678,0,#DIV/0!,0,0,0.191652027,1,0.219303847,0,0.936256501,0.975018464,0.724496596,1,0,0,0.03005793,0.312029739,0.918298514,0.642795109,0.961238037,0.922476074,0,0,0,0,0,0,-0.524265802,121.6188305,0.524265802,58.38116948,0,0.95462853,0,0,0,5,4,0% +5/8/2018 13:00,91.81312464,66.52241747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602441322,1.161035211,31.53185541,-31.53185541,0,#DIV/0!,0,0,0.829412993,1,0.031703334,0,0.958321707,0.99708367,0.724496596,1,0,0,0.101711781,0.312029739,0.752343556,0.476840152,0.961238037,0.922476074,0,0,0,0,0,0,-0.370951034,111.774282,0.370951034,68.225718,0,0.915211321,0,0,0,5,5,0% +5/8/2018 14:00,80.51879866,75.49484272,92.15076495,334.5984226,37.03437504,36.61232338,0,36.61232338,35.91765199,0.694671391,84.02471602,60.56497312,23.4597429,1.11672305,22.34301985,1.405318146,1.317633574,-5.960317288,5.960317288,0.450572024,0.401888959,0.466389216,15.00068038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.52541329,0.809062048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337897399,14.41922456,34.86331069,15.22828661,0,60.56497312,-0.181007946,100.4284753,0.181007946,79.57152471,0,0.773769032,34.86331069,62.09158726,75.50101272,5,6,117% +5/8/2018 15:00,68.91682634,84.15189064,299.2603084,636.6364793,70.24764676,88.58614113,18.2007695,70.38537163,68.12942102,2.255950613,74.67735222,0,74.67735222,2.118225736,72.55912648,1.20282553,1.468727563,-2.515108215,2.515108215,0.960262526,0.234737601,2.187348068,70.35263284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48859091,1.534647335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58472623,67.62562668,67.07331714,69.16027401,18.2007695,0,0.028588952,88.36175052,-0.028588952,91.63824948,0,0,67.07331714,69.16027401,112.3373333,5,7,67% +5/8/2018 16:00,57.09852727,93.24122645,508.6224192,771.1595548,89.73160954,281.0109889,190.1509079,90.86008108,87.02587044,3.834210639,126.0271333,0,126.0271333,2.705739102,123.3213942,0.996557299,1.6273664,-1.420248346,1.420248346,0.773030461,0.17642087,3.117491707,100.2692496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65257685,1.960298769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.258612129,96.38261665,85.91118898,98.34291542,190.1509079,0,0.246577906,75.72489777,-0.246577906,104.2751022,0.84722433,0,247.0116645,98.34291542,311.3751358,5,8,26% +5/8/2018 17:00,45.39873136,103.884704,693.2007795,840.2206288,103.2240533,489.8728237,384.5357161,105.3371076,100.1114673,5.225640285,171.1871407,0,171.1871407,3.112586065,168.0745546,0.792357339,1.813130127,-0.84179679,0.84179679,0.674109419,0.148909315,3.776243957,121.4569864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.23095028,2.255058008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.735875892,116.7490752,98.96682617,119.0041332,384.5357161,0,0.457660408,62.76375933,-0.457660408,117.2362407,0.940748688,0,460.7182966,119.0041332,538.6041217,5,9,17% +5/8/2018 18:00,34.3384153,118.2141785,837.5842854,877.9827754,112.6161027,683.9114238,568.3770479,115.5343758,109.2203117,6.314064141,206.4777982,0,206.4777982,3.395791005,203.0820072,0.599318407,2.063226637,-0.455206733,0.455206733,0.607998626,0.134453457,4.171731005,134.1772094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.986718,2.460239024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.022404912,128.9762373,108.0091229,131.4364763,568.3770479,0,0.647366969,49.65662449,-0.647366969,130.3433755,0.972764054,0,660.9058845,131.4364763,746.9284295,5,10,13% +5/8/2018 19:00,25.1215136,140.6712471,930.9743372,897.5226618,118.3488327,842.2816899,720.4834334,121.7982565,114.7801787,7.018077799,229.2941605,0,229.2941605,3.568653967,225.7255065,0.438453125,2.455176425,-0.155197678,0.155197678,0.556694056,0.127123625,4.302423572,138.3807316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3310737,2.585477651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.117091232,133.0168227,113.4481649,135.6023004,720.4834334,0,0.802746787,36.60679239,-0.802746787,143.3932076,0.987713858,0,825.0796369,135.6023004,913.8286304,5,11,11% +5/8/2018 20:00,20.64134722,176.2997466,966.6373019,904.198338,120.4836261,949.8589573,825.7214367,124.1375206,116.8506003,7.286920291,238.0054311,0,238.0054311,3.633025866,234.3724052,0.360259471,3.077011049,0.105725301,-0.105725301,0.512073598,0.12464202,4.174601803,134.2695441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3212416,2.632114872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024484796,129.064993,115.3457264,131.6971078,825.7214367,0,0.913208311,24.04744878,-0.913208311,155.9525512,0.99524798,0,937.143318,131.6971078,1023.336441,5,12,9% +5/8/2018 21:00,23.81608709,213.8763,942.0442571,899.6372772,119.0143982,996.2827494,873.7555469,122.5272025,115.4256749,7.101527531,231.99826,0,231.99826,3.588723221,228.4095367,0.415669135,3.732845628,0.356529422,-0.356529422,0.469183568,0.126336313,3.808158337,122.4834626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9515492,2.600017757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758997751,117.7357631,113.7105469,120.3357809,873.7555469,0,0.971230927,13.77676611,-0.971230927,166.2232339,0.998518938,0,986.1720073,120.3357809,1064.929369,5,13,8% +5/8/2018 22:00,32.43745556,238.5412916,858.9651076,882.7445451,113.9486061,975.7881041,858.8002271,116.987877,110.5126352,6.47524181,211.702006,0,211.702006,3.435970899,208.2660351,0.5661404,4.163330941,0.622869248,-0.622869248,0.423636775,0.132658015,3.238242374,104.1530061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2289485,2.48934922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346095577,100.1158312,108.5750441,102.6051804,858.8002271,0,0.972875145,13.37543589,-0.972875145,166.6245641,0.998605944,0,966.1780553,102.6051804,1033.331094,5,14,7% +5/8/2018 23:00,43.27653745,253.9466439,723.3989009,849.0385598,105.2533732,886.9946609,779.4617787,107.5328822,102.0795957,5.45328648,178.5702163,0,178.5702163,3.173777546,175.3964387,0.755318067,4.43220506,0.939346599,-0.939346599,0.36951596,0.145498387,2.515330413,80.90167246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.12279014,2.299391028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.822348321,77.76576481,99.94513847,80.06515584,779.4617787,0,0.918052272,23.35702189,-0.918052272,156.6429781,0.99553687,0,875.9280781,80.06515584,928.3291213,5,15,6% +5/8/2018 0:00,54.89926364,265.0685704,545.4146801,787.4722611,92.60571413,732.200821,638.2759446,93.92487641,89.81331017,4.111566243,135.0345077,0,135.0345077,2.79240396,132.2421038,0.958172907,4.626319296,1.373894186,-1.373894186,0.295203946,0.169789552,1.705769403,54.86340755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.33196995,2.023087163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235824126,52.73679417,87.56779407,54.75988134,638.2759446,0,0.810537686,35.85150186,-0.810537686,144.1484981,0.988312554,0,718.3839228,54.75988134,754.22317,5,16,5% +5/8/2018 1:00,66.71010371,274.3499204,339.4274616,669.9064963,74.55746316,515.4953475,440.6273194,74.86802814,72.30928056,2.558747581,84.54630043,0,84.54630043,2.248182602,82.29811783,1.164310954,4.788309414,2.116448668,-2.116448668,0.168219651,0.219656544,0.897930153,28.88052033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50643089,1.628800642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.650547339,27.76105467,70.15697823,29.38985531,440.6273194,0,0.657744509,48.87191777,-0.657744509,131.1280822,0.973982642,0,499.3203388,29.38985531,518.5554113,5,17,4% +5/8/2018 2:00,78.36116229,283.0340031,128.6007175,413.4710408,45.18629404,239.2947033,194.5014962,44.79320709,43.82376056,0.969446529,32.54326632,0,32.54326632,1.362533485,31.18073284,1.367660288,4.939875249,4.07010049,-4.07010049,0,0.351368911,0.340633371,10.95594014,0.142274738,1,0.240922038,0,0.933206481,0.971968444,0.724496596,1,42.35363099,0.987150872,0.022801948,0.312029739,0.937372723,0.661869319,0.961238037,0.922476074,0.238806643,10.53126639,42.59243763,11.51841726,166.8288469,0,0.470411412,61.93899449,-0.470411412,118.0610055,0.943710062,0,200.030499,11.51841726,207.5690727,5,18,4% +5/8/2018 3:00,89.27951054,291.9102311,0.368291823,2.804837932,0.333022158,1.072754745,0.746998095,0.325756651,0.322980312,0.002776339,0.099338463,0,0.099338463,0.010041847,0.089296616,1.558221414,5.094794653,59.17758955,-59.17758955,0,0.904234463,0.002510462,0.080745078,0.905569601,1,0.016896681,0,0.959713861,0.998475824,0.724496596,1,0.311150889,0.007275284,0.108213879,0.312029739,0.739314773,0.463811369,0.961238037,0.922476074,0.00179071,0.07761524,0.312941599,0.084890524,0.070539328,0,0.266324869,74.55430841,-0.266324869,105.4456916,0.862259365,0,0.373764795,0.084890524,0.429323945,5,19,15% +5/8/2018 4:00,100.2866759,301.6236985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750332691,5.26432664,-3.4206931,3.4206931,0.884873338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041117121,87.6434982,-0.041117121,92.3565018,0,0,0,0,0,5,20,0% +5/8/2018 5:00,109.7152144,312.7923176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91489173,5.459255817,-1.275890415,1.275890415,0.748343801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169790044,99.77561202,0.169790044,80.22438798,0,0.755518659,0,0,0,5,21,0% +5/8/2018 6:00,117.4289573,325.9688256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049521942,5.689229266,-0.467155049,0.467155049,0.610041908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.359267164,111.0551969,0.359267164,68.94480309,0,0.910827805,0,0,0,5,22,0% +5/8/2018 7:00,122.6889367,341.3720415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141325902,5.958066098,0.037313009,-0.037313009,0.523772789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51439951,120.9573259,0.51439951,59.04267415,0,0.952799285,0,0,0,5,23,0% +5/9/2018 8:00,124.7654963,358.4208205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177568704,6.255623426,0.455240268,-0.455240268,0.452303019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624614413,128.653892,0.624614413,51.34610805,0,0.969950614,0,0,0,5,0,0% +5/9/2018 9:00,123.2995629,15.62125456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151983339,0.272642325,0.886671393,-0.886671393,0.378523951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682401139,133.0315626,0.682401139,46.96843738,0,0.976729313,0,0,0,5,1,0% +5/9/2018 10:00,118.5492143,31.38042852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069074114,0.547691798,1.436046154,-1.436046154,0.284575334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683822133,133.1430449,0.683822133,46.85695512,0,0.976881571,0,0,0,5,2,0% +5/9/2018 11:00,111.2078965,44.94141799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940943949,0.784375715,2.334531353,-2.334531353,0.130925316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628780853,128.9602333,0.628780853,51.03976674,0,0.970481039,0,0,0,5,3,0% +5/9/2018 12:00,102.0314185,56.41678999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780784193,0.984658739,4.560742089,-4.560742089,0,#DIV/0!,0,0,0.199858626,1,0.215846804,0,0.936734861,0.975496825,0.724496596,1,0,0,0.031233782,0.312029739,0.915246483,0.639743079,0.961238037,0.922476074,0,0,0,0,0,0,-0.521028007,121.4012335,0.521028007,58.59876653,0,0.954035869,0,0,0,5,4,0% +5/9/2018 13:00,91.62979514,66.32701636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599241618,1.157624819,35.07352946,-35.07352946,0,#DIV/0!,0,0,0.845387279,1,0.028503808,0,0.958626988,0.997388951,0.724496596,1,0,0,0.10310398,0.312029739,0.749525282,0.474021878,0.961238037,0.922476074,0,0,0,0,0,0,-0.367905761,111.586518,0.367905761,68.413482,0,0.914095632,0,0,0,5,5,0% +5/9/2018 14:00,80.35080645,75.28482824,94.76967566,340.0592891,37.7705526,37.34604493,0,37.34604493,36.63163108,0.714413846,84.72952886,60.61260227,24.11692659,1.138921519,22.97800507,1.402386129,1.31396813,-5.856637416,5.856637416,0.468302326,0.398551038,0.485952147,15.62989148,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.21171715,0.825144764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.352070676,15.02404621,35.56378782,15.84919097,0,60.61260227,-0.178241278,100.267336,0.178241278,79.73266405,0,0.769481365,35.56378782,62.4894589,76.46188888,5,6,115% +5/9/2018 15:00,68.75588593,83.92315612,301.9880405,638.2024565,70.74029944,90.71785328,19.83412147,70.88373181,68.6072184,2.276513409,75.35357774,0,75.35357774,2.133081032,73.22049671,1.20001659,1.464735393,-2.496702682,2.496702682,0.957114994,0.234248679,2.201754417,70.81599052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94786793,1.545409946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59516358,68.07102371,67.54303151,69.61643365,19.83412147,0,0.031078103,88.21906912,-0.031078103,91.78093088,0,0,67.54303151,69.61643365,113.105595,5,7,67% +5/9/2018 16:00,56.93883451,92.9859533,511.0852299,771.5769269,90.16375327,283.2278271,191.9300673,91.29775978,87.44498344,3.852776347,126.637301,0,126.637301,2.71876983,123.9185311,0.993770134,1.622911043,-1.41429295,1.41429295,0.772012028,0.176416277,3.129351387,100.6506977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.05544421,1.969739487,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267204427,96.74927905,86.32264864,98.71901853,191.9300673,0,0.248750398,75.59642052,-0.248750398,104.4035795,0.848995296,0,249.270373,98.71901853,313.8799963,5,8,26% +5/9/2018 17:00,45.23102319,103.5925716,695.3771618,840.2462999,103.6337851,491.85482,386.1039291,105.7508909,100.5088441,5.242046774,171.7271847,0,171.7271847,3.124940989,168.6022437,0.789430279,1.808031455,-0.839737661,0.839737661,0.673757287,0.149032483,3.78673952,121.7945598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.61292402,2.264009109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743479892,117.0735636,99.35640391,119.3375727,386.1039291,0,0.459512799,62.64432622,-0.459512799,117.3556738,0.941189103,0,462.7532144,119.3375727,540.857269,5,9,17% +5/9/2018 18:00,34.14821249,117.8817707,839.5141471,877.8526097,113.0136136,685.5900106,569.6555622,115.9344484,109.6058361,6.328612253,206.9577019,0,206.9577019,3.407777425,203.5499245,0.595998742,2.057425027,-0.454896255,0.454896255,0.607945531,0.134617879,4.181460127,134.4901314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3572988,2.468923144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.029453628,129.2770299,108.3867524,131.745953,569.6555622,0,0.64891937,49.53982356,-0.64891937,130.4601764,0.972948825,0,662.6324622,131.745953,748.8575535,5,10,13% +5/9/2018 19:00,24.88923493,140.3618409,932.7235487,897.3258706,118.7385188,843.6754492,721.4860707,122.1893785,115.1581144,7.031264094,229.7300275,0,229.7300275,3.580404441,226.1496231,0.434399098,2.449776268,-0.155925891,0.155925891,0.556818587,0.127303014,4.311830715,138.6832976,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6943598,2.59399083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123906675,133.3076608,113.8182665,135.9016516,721.4860707,0,0.804040198,36.48233651,-0.804040198,143.5176635,0.987814054,0,826.5123472,135.9016516,915.4572601,5,11,11% +5/9/2018 20:00,20.37500357,176.2901143,968.2866093,903.9761364,120.8686694,951.0301413,826.5067548,124.5233865,117.224033,7.299353467,238.4169352,0,238.4169352,3.644636339,234.7722989,0.355610897,3.076842934,0.104178148,-0.104178148,0.512338177,0.124827368,4.184074949,134.574233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6801994,2.640526621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031348057,129.3578716,115.7115474,131.9983982,826.5067548,0,0.914301519,23.89327253,-0.914301519,156.1067275,0.995313445,0,938.3448332,131.9983982,1024.735145,5,12,9% +5/9/2018 21:00,23.58538385,214.2065092,943.6818288,899.4169936,119.3977879,997.3213103,874.4099341,122.9113763,115.797504,7.113872239,232.4068688,0,232.4068688,3.600283835,228.806585,0.411642604,3.738608864,0.354127714,-0.354127714,0.469594284,0.126523352,3.818036521,122.8011789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3089654,2.608393383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766154462,118.0411642,114.0751199,120.6495575,874.4099341,0,0.972196368,13.54253028,-0.972196368,166.4574697,0.998570061,0,987.234701,120.6495575,1066.197423,5,13,8% +5/9/2018 22:00,32.25713732,238.9066561,860.6794303,882.5589526,114.3334412,976.8045179,859.4304866,117.3740312,110.8858661,6.488165098,212.1292676,0,212.1292676,3.447575099,208.6816925,0.562993254,4.169707754,0.619334589,-0.619334589,0.424241237,0.132840913,3.248790081,104.4922567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5877123,2.497756423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353737355,100.4419317,108.9414496,102.9396881,859.4304866,0,0.973793857,13.14595689,-0.973793857,166.8540431,0.998654431,0,967.215513,102.9396881,1034.58748,5,14,7% +5/9/2018 23:00,43.12421197,254.2647287,725.2713051,848.9524492,105.6434313,888.1196037,780.1943102,107.9252935,102.457892,5.467401454,179.0359641,0,179.0359641,3.185539235,175.8504248,0.752659486,4.437756688,0.933983105,-0.933983105,0.370433172,0.145660569,2.526684321,81.26685318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.486423,2.307912332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830574189,78.11679041,100.3169972,80.42470274,780.1943102,0,0.919008256,23.21847625,-0.919008256,156.7815237,0.995593525,0,877.0734004,80.42470274,929.7097599,5,15,6% +5/9/2018 0:00,54.75789942,265.3435127,547.5094206,787.6525594,93.00822152,733.5992539,639.2682161,94.33103776,90.20368048,4.127357282,135.5545389,0,135.5545389,2.804541043,132.7499979,0.955705636,4.631117945,1.364932464,-1.364932464,0.296736491,0.169875107,1.717820361,55.25100778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70720874,2.031880438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244555004,53.10937025,87.95176374,55.14125069,639.2682161,0,0.811611933,35.74627809,-0.811611933,144.2537219,0.988394203,0,719.8007627,55.14125069,755.8896084,5,16,5% +5/9/2018 1:00,66.56907427,274.5946078,341.7669687,670.8780627,74.99687165,517.42624,442.114417,75.31182304,72.73543926,2.576383773,85.12679079,0,85.12679079,2.261432389,82.8653584,1.161849526,4.792580013,2.098103446,-2.098103446,0.171356869,0.219438619,0.909961161,29.2674789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.91607085,1.638400068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.659263763,28.13301396,70.57533461,29.77141403,442.114417,0,0.659008606,48.77569278,-0.659008606,131.2243072,0.974128457,0,501.2515693,29.77141403,520.7363643,5,17,4% +5/9/2018 2:00,78.2135111,283.258293,131.0038427,417.2116393,45.78201693,242.2779088,196.8888262,45.38908251,44.40152021,0.987562303,33.1438951,0,33.1438951,1.380496728,31.76339838,1.365083288,4.943789847,4.007416779,-4.007416779,0,0.349470794,0.345124182,11.10038005,0.134315264,1,0.244543142,0,0.932685768,0.971447731,0.724496596,1,42.90258738,1.00016518,0.021602415,0.312029739,0.940565861,0.665062456,0.961238037,0.922476074,0.242300219,10.67010753,43.1448876,11.67027271,170.4436516,0,0.471915948,61.8412631,-0.471915948,118.1587369,0.944048929,0,204.0520343,11.67027271,211.6899944,5,18,4% +5/9/2018 3:00,89.13803387,292.119971,0.522578501,3.680346093,0.467212922,1.442654853,0.985590707,0.457064146,0.453124729,0.003939417,0.140793401,0,0.140793401,0.014088193,0.126705208,1.55575218,5.098455305,49.30064508,-49.30064508,0,0.894053087,0.003522048,0.113281182,0.887649957,1,0.020280929,0,0.959400308,0.998162271,0.724496596,1,0.436701321,0.010206848,0.106714272,0.312029739,0.742289476,0.466786072,0.961238037,0.922476074,0.002505362,0.108890181,0.439206683,0.119097029,0.110731158,0,0.267798376,74.46670069,-0.267798376,105.5332993,0.86329237,0,0.534800047,0.119097029,0.612746671,5,19,15% +5/9/2018 4:00,100.1058795,301.8202759,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747177198,5.267757563,-3.468102098,3.468102098,0.876765922,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.043247213,87.52134416,-0.043247213,92.47865584,0,0,0,0,0,5,20,0% +5/9/2018 5:00,109.5110674,312.9710102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911328694,5.462374592,-1.282515171,1.282515171,0.749476701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167344021,99.63343056,0.167344021,80.36656944,0,0.751214302,0,0,0,5,21,0% +5/9/2018 6:00,117.1992755,326.1161995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045513238,5.691801425,-0.466913689,0.466913689,0.610000633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356527032,110.8870617,0.356527032,69.11293832,0,0.909758179,0,0,0,5,22,0% +5/9/2018 7:00,122.4368755,341.4658847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136926603,5.959703971,0.040253058,-0.040253058,0.523270011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511407416,120.7576226,0.511407416,59.24237745,0,0.952230593,0,0,0,5,23,0% +5/10/2018 8:00,124.5019901,358.439872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172969653,6.255955937,0.460198616,-0.460198616,0.451455091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621429919,128.4206301,0.621429919,51.5793699,0,0.969540404,0,0,0,5,0,0% +5/10/2018 9:00,123.0404463,15.56234962,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147460901,0.27161424,0.894185255,-0.894185255,0.377239005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679097119,132.7731289,0.679097119,47.22687106,0,0.976372829,0,0,0,5,1,0% +5/10/2018 10:00,118.307386,31.26125682,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064853416,0.54561186,1.448183761,-1.448183761,0.282499681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680479753,132.8811441,0.680479753,47.11885594,0,0.976522428,0,0,0,5,2,0% +5/10/2018 11:00,110.9887912,44.7848066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93711984,0.78164233,2.358239674,-2.358239674,0.126870954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548399,128.7177198,0.62548399,51.28228017,0,0.970061903,0,0,0,5,3,0% +5/10/2018 12:00,101.8344567,56.23842405,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777346561,0.981545666,4.635394441,-4.635394441,0,#DIV/0!,0,0,0.207949303,1,0.212475112,0,0.937198905,0.975960868,0.724496596,1,0,0,0.032384856,0.312029739,0.912269317,0.636765913,0.961238037,0.922476074,0,0,0,0,0,0,-0.51785748,121.1886449,0.51785748,58.81135508,0,0.953448339,0,0,0,5,4,0% +5/10/2018 13:00,91.45140087,66.133773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596128051,1.154252086,39.3779269,-39.3779269,0,#DIV/0!,0,0,0.861185693,1,0.025389481,0,0.958921783,0.997683746,0.724496596,1,0,0,0.104465829,0.312029739,0.746783525,0.471280121,0.961238037,0.922476074,0,0,0,0,0,0,-0.36493378,111.4035075,0.36493378,68.59649251,0,0.912988842,0,0,0,5,5,0% +5/10/2018 14:00,80.18765169,75.07709974,97.32089326,345.247803,38.48311742,38.05635544,0,38.05635544,37.32270944,0.733646002,85.36535571,60.60837042,24.75698529,1.160407978,23.59657731,1.399538541,1.310342583,-5.759267338,5.759267338,0.48495359,0.395425033,0.505200253,16.24897676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.87600795,0.84071163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.366015864,15.61913452,36.24202382,16.45984615,0,60.60837042,-0.175550344,100.1106863,0.175550344,79.88931372,0,0.765181418,36.24202382,62.83624494,77.36708941,5,6,113% +5/10/2018 15:00,68.59993851,83.69676725,304.6226889,639.668029,71.22203626,92.7925734,21.42176981,71.37080359,69.07442909,2.296374502,76.00690489,0,76.00690489,2.147607175,73.85929771,1.197294794,1.460784162,-2.479127421,2.479127421,0.954109447,0.233804109,2.215631327,71.26231966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39696861,1.555934087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.605217354,68.50005225,68.00218597,70.05598634,21.42176981,0,0.033488886,88.08086933,-0.033488886,91.91913067,0,0,68.00218597,70.05598634,113.8524279,5,7,67% +5/10/2018 16:00,56.78433918,92.73296483,513.4556696,771.9484447,90.58855034,285.3673528,193.6397358,91.72761703,87.85697131,3.870645722,127.2248507,0,127.2248507,2.731579029,124.4932717,0.991073682,1.618495561,-1.408605973,1.408605973,0.771039498,0.176429156,3.140776661,101.0181738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.45146262,1.979019708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275481999,97.10251104,86.72694462,99.08153075,193.6397358,0,0.250845425,75.47245428,-0.250845425,104.5275457,0.850674061,0,251.4512449,99.08153075,316.2981252,5,8,26% +5/10/2018 17:00,45.06884009,103.3022941,697.4669321,840.2458818,104.0376553,493.7563462,387.5980097,106.1583365,100.9005361,5.257800346,172.2460519,0,172.2460519,3.137119165,169.1089327,0.78659965,1.802965157,-0.837796164,0.837796164,0.673425272,0.149165001,3.796861586,122.1201202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.98943326,2.272832156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.750813294,117.3865046,99.74024655,119.6593368,387.5980097,0,0.461291175,62.52954393,-0.461291175,117.4704561,0.941608592,0,464.7058627,119.6593368,543.0205054,5,9,17% +5/10/2018 18:00,33.9639466,117.5496154,841.3655609,877.7053009,113.4061926,687.1916833,570.8625369,116.3291465,109.9865775,6.342568992,207.4184364,0,207.4184364,3.419615132,203.9988212,0.592782695,2.051627823,-0.45464286,0.45464286,0.607902198,0.134788251,4.190867524,134.7927056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7232818,2.477499522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036269255,129.5678757,108.7595511,132.0453752,570.8625369,0,0.650403428,49.42797444,-0.650403428,130.5720256,0.973124636,0,664.2799497,132.0453752,750.7010069,5,10,13% +5/10/2018 19:00,24.66297905,140.0483831,934.4038302,897.1166027,119.1240095,844.9994676,722.4235557,122.5759119,115.5319811,7.043930766,230.1490552,0,230.1490552,3.592028407,226.5570268,0.430450188,2.444305397,-0.156679613,0.156679613,0.556947482,0.127486645,4.320963808,138.9770493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0537347,2.602412353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13052357,133.590026,114.1842583,136.1924384,722.4235557,0,0.805272752,36.36339529,-0.805272752,143.6366047,0.987909237,0,827.8731616,136.1924384,917.0083887,5,11,11% +5/10/2018 20:00,20.11364319,176.2741218,969.8770456,903.7440757,121.2501578,952.140855,827.235494,124.905361,117.5940182,7.311342848,238.8140582,0,238.8140582,3.656139623,235.1579186,0.351049298,3.076563812,0.102626451,-0.102626451,0.512603533,0.125016009,4.193317558,134.8715071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0358432,2.648860711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.038044296,129.6436227,116.0738875,132.2924834,827.235494,0,0.915342647,23.74556566,-0.915342647,156.2544343,0.995375647,0,939.4839524,132.2924834,1026.066737,5,12,9% +5/10/2018 21:00,23.35857269,214.5318146,945.2703758,899.1882765,119.778185,998.3096387,875.0173605,123.2922782,116.1664308,7.125847377,232.8035008,0,232.8035008,3.611754213,229.1917466,0.407684002,3.744286515,0.351739796,-0.351739796,0.470002642,0.126713148,3.827722141,123.1127018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6635919,2.616703633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.773171661,118.3406117,114.4367636,120.9573154,875.0173605,0,0.973119182,13.31485822,-0.973119182,166.6851418,0.998618832,0,988.2455782,120.9573154,1067.409722,5,13,8% +5/10/2018 22:00,32.07960812,239.2660092,862.3536612,882.3654014,114.7157546,977.7808405,860.0234029,117.7574375,111.2566514,6.500786158,212.5467324,0,212.5467324,3.459103258,209.0876291,0.559894784,4.175979648,0.615835473,-0.615835473,0.424839621,0.133026344,3.259176314,104.8263136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9441251,2.506108535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361262145,100.7630399,109.3053873,103.2691484,860.0234029,0,0.974679426,12.92096855,-0.974679426,167.0790315,0.998701082,0,968.2116903,103.2691484,1035.799283,5,14,7% +5/10/2018 23:00,42.97380637,254.5768179,727.1110359,848.8575717,106.0313118,889.2133394,780.8979928,108.3153467,102.8340765,5.481270122,179.4937241,0,179.4937241,3.197235264,176.2964889,0.750034413,4.443203672,0.928689904,-0.928689904,0.371338363,0.145825474,2.537900661,81.62760923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.84802584,2.316386065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.838700389,78.46356284,100.6867262,80.77994891,780.8979928,0,0.919939951,23.08269527,-0.919939951,156.9173047,0.995648626,0,878.18674,80.77994891,931.055601,5,15,6% +5/10/2018 0:00,54.61794206,265.6128347,549.5769901,787.8202381,93.40867698,734.9724884,640.2374841,94.73500422,90.59206073,4.142943494,136.0679203,0,136.0679203,2.816616252,133.251304,0.95326292,4.635818501,1.356115748,-1.356115748,0.298244238,0.169964679,1.729753198,55.63480882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.08053461,2.040628887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253200303,53.47829441,88.33373491,55.5189233,640.2374841,0,0.812669507,35.64242453,-0.812669507,144.3575755,0.988474374,0,721.1920814,55.5189233,757.5281063,5,16,5% +5/10/2018 1:00,66.42921356,274.8339632,344.0831526,671.8221599,75.43373026,519.3315535,443.5785844,75.75296912,73.15912497,2.593844146,85.7015493,0,85.7015493,2.274605288,83.42694401,1.159408496,4.796757554,2.080141436,-2.080141436,0.174428554,0.219231106,0.921902777,29.65156233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.32333367,1.647943788,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.667915424,28.50220956,70.99124909,30.15015335,443.5785844,0,0.660261913,48.68014918,-0.660261913,131.3198508,0.974272476,0,503.1576547,30.15015335,522.8903271,5,17,4% +5/10/2018 2:00,78.06698532,283.4773687,133.3921149,420.8608246,46.37157121,245.2201569,199.2412936,45.97886336,44.97329725,1.005566107,33.74073658,0,33.74073658,1.398273965,32.34246261,1.362525931,4.947613438,3.946833444,-3.946833444,0,0.347633526,0.349568491,11.24332431,0.12648084,1,0.248145716,0,0.932164939,0.970926902,0.724496596,1,43.44529601,1.013044728,0.020413395,0.312029739,0.943742157,0.668238752,0.961238037,0.922476074,0.245776242,10.80751099,43.69107226,11.82055572,174.0410873,0,0.473413732,61.74388158,-0.473413732,118.2561184,0.944384137,0,208.0527143,11.82055572,215.7890316,5,18,4% +5/10/2018 3:00,88.99644932,292.3244516,0.712888563,4.737169902,0.629920026,1.891971258,1.27567159,0.616299668,0.610925613,0.005374055,0.191842499,0,0.191842499,0.018994413,0.172848086,1.553281063,5.102024165,42.20708433,-42.20708433,0,0.883616401,0.004748603,0.152731403,0.869921793,1,0.023688273,0,0.959081833,0.997843797,0.724496596,1,0.589007997,0.013761388,0.105212569,0.312029739,0.745286477,0.469783073,0.961238037,0.922476074,0.003368894,0.146811234,0.592376891,0.160572622,0.165937073,0,0.269289811,74.37798912,-0.269289811,105.6220109,0.864326432,0,0.73580069,0.160572622,0.840892259,5,19,14% +5/10/2018 4:00,99.92677966,302.0114321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744051316,5.271093868,-3.516973951,3.516973951,0.868408343,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045370044,87.39959532,-0.045370044,92.60040468,0,0,0,0,0,5,20,0% +5/10/2018 5:00,109.3092105,313.1441176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907805625,5.465395885,-1.289325018,1.289325018,0.750641253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164908972,99.49194651,0.164908972,80.50805349,0,0.746802428,0,0,0,5,21,0% +5/10/2018 6:00,116.9726979,326.2580796,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041558714,5.694277701,-0.466765713,0.466765713,0.609975328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.353803763,110.7201476,0.353803763,69.27985244,0,0.908678722,0,0,0,5,22,0% +5/10/2018 7:00,122.1888546,341.5549885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132597821,5.961259126,0.043110368,-0.043110368,0.522781383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508439844,120.5599643,0.508439844,59.44003567,0,0.951659949,0,0,0,5,23,0% +5/11/2018 8:00,124.2433325,358.4558122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168455225,6.256234146,0.465066336,-0.465066336,0.450622662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618278852,128.1905557,0.618278852,51.80944425,0,0.969130341,0,0,0,5,0,0% +5/11/2018 9:00,122.7866131,15.50234428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143030675,0.27056695,0.901588846,-0.901588846,0.375972916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675836059,132.5191087,0.675836059,47.48089133,0,0.976017561,0,0,0,5,1,0% +5/11/2018 10:00,118.0709059,31.14259658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060726059,0.543540848,1.460177899,-1.460177899,0.280448563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677189843,132.6244358,0.677189843,47.37556418,0,0.976165461,0,0,0,5,2,0% +5/11/2018 11:00,110.7749145,44.62966689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933386986,0.778934631,2.381772088,-2.381772088,0.122846674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622248426,128.480513,0.622248426,51.51948703,0,0.969646241,0,0,0,5,3,0% +5/11/2018 12:00,101.6425773,56.06202475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773997635,0.978466917,4.710411506,-4.710411506,0,#DIV/0!,0,0,0.215916346,1,0.20918989,0,0.937648662,0.976410625,0.724496596,1,0,0,0.033510492,0.312029739,0.909368037,0.633864633,0.961238037,0.922476074,0,0,0,0,0,0,-0.514755796,120.9811334,0.514755796,59.01886658,0,0.952866562,0,0,0,5,4,0% +5/11/2018 13:00,91.27799131,65.94275142,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593101483,1.15091813,44.71290923,-44.71290923,0,#DIV/0!,0,0,0.876789693,1,0.022361178,0,0.959206205,0.997968168,0.724496596,1,0,0,0.105796489,0.312029739,0.744118971,0.468615567,0.961238037,0.922476074,0,0,0,0,0,0,-0.362036379,111.2253098,0.362036379,68.77469018,0,0.911892332,0,0,0,5,5,0% +5/11/2018 14:00,80.0293791,74.8717401,99.80203593,350.1704177,39.17241528,38.74357233,0,38.74357233,37.99122243,0.752349903,85.93648432,60.55713238,25.37935193,1.181192852,24.19815908,1.396776164,1.306758381,-5.667786143,5.667786143,0.500597796,0.392501164,0.524097282,16.85677015,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.51860807,0.8557702,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.379706697,16.20336865,36.89831476,17.05913885,0,60.55713238,-0.172936174,99.95857852,0.172936174,80.04142148,0,0.760875991,36.89831476,63.13560697,78.21930681,5,6,112% +5/11/2018 15:00,68.4490148,83.47283097,307.1637967,641.0353256,71.69291723,94.80898517,22.96234347,71.8466417,69.53111126,2.315530446,76.63722471,0,76.63722471,2.161805973,74.47541874,1.194660678,1.456875736,-2.462357659,2.462357659,0.951241649,0.233402888,2.228980524,71.69167573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.83594888,1.566221068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614888802,68.91276564,68.45083768,70.4789867,22.96234347,0,0.035820715,87.94718507,-0.035820715,92.05281493,0,0,68.45083768,70.4789867,114.5779249,5,7,67% +5/11/2018 16:00,56.63506454,92.48240281,515.7337595,772.2747875,91.00601313,287.4292121,195.2795471,92.14966499,88.26184606,3.887818926,127.789788,0,127.789788,2.744167072,125.045621,0.988468348,1.614122429,-1.403182859,1.403182859,0.770112091,0.17645929,3.15176907,101.3717274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.84064364,1.988139702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.283445962,97.44236026,87.1240896,99.43049996,195.2795471,0,0.252862777,75.35301854,-0.252862777,104.6469815,0.852264293,0,253.5538747,99.43049996,318.6291483,5,8,26% +5/11/2018 17:00,44.91220374,103.0140671,699.4704265,840.219697,104.435681,495.5775472,389.0180838,106.5594634,101.2865599,5.272903532,172.7438242,0,172.7438242,3.149121109,169.5947031,0.78386583,1.797934647,-0.835970917,0.835970917,0.673113136,0.149306786,3.806612214,122.4337339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.36049399,2.281527523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757877591,117.6879621,100.1183716,119.9694896,389.0180838,0,0.462995673,62.41941764,-0.462995673,117.5805824,0.94200763,0,466.5763747,119.9694896,545.0940062,5,9,17% +5/11/2018 18:00,33.7856522,117.2179793,843.1390807,877.5410585,113.7938665,688.7169472,571.9984471,116.7185001,110.3625616,6.355938534,207.8601366,0,207.8601366,3.43130493,204.4288316,0.589670871,2.045839681,-0.454445884,0.454445884,0.607868513,0.134964526,4.19995558,135.0850087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.084692,2.485968741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.042853521,129.8488486,109.1275455,132.3348173,571.9984471,0,0.651819583,49.32106845,-0.651819583,130.6789316,0.973291657,0,665.8488621,132.3348173,752.4593533,5,10,13% +5/11/2018 19:00,24.44281956,139.7310987,936.0158544,896.8950238,119.5053377,846.2545096,723.2966159,122.9578937,115.9018108,7.056082886,230.5514076,0,230.5514076,3.603526859,226.9478807,0.42660768,2.438767739,-0.157458326,0.157458326,0.557080649,0.12767448,4.329825179,139.2620614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4092291,2.610742942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136943603,133.8639906,114.5461727,136.4747335,723.2966159,0,0.806445121,36.24994994,-0.806445121,143.7500501,0.987999501,0,829.1628682,136.4747335,918.4828517,5,11,11% +5/11/2018 20:00,19.85735027,176.2515868,971.4092979,903.5023008,121.6281257,953.1920156,827.908533,125.2834826,117.960589,7.322893613,239.1969676,0,239.1969676,3.66753675,235.5294309,0.346576143,3.076170502,0.101070761,-0.101070761,0.512869572,0.125207908,4.202331497,135.1614264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.388205,2.657117891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044574864,129.9223041,116.4327798,132.579422,827.908533,0,0.916332512,23.60432419,-0.916332512,156.3956758,0.995434655,0,940.5616244,132.579422,1027.332205,5,12,9% +5/11/2018 21:00,23.13568384,214.8518719,946.8104944,898.9512573,120.1556199,999.2486873,875.5787452,123.6699421,116.5324847,7.137457441,233.1883014,0,233.1883014,3.623135268,229.5651662,0.403793858,3.749872569,0.349366338,-0.349366338,0.470408527,0.12690567,3.837216228,123.4180642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0154568,2.624949168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780050095,118.6341378,114.7955069,121.2590869,875.5787452,0,0.974000245,13.09386127,-0.974000245,166.9061387,0.998665311,0,989.2056265,121.2590869,1068.567274,5,13,8% +5/11/2018 22:00,31.90487001,239.6190986,863.9882081,882.1640085,115.095567,978.717939,860.5798199,118.1381191,111.625011,6.513108063,212.9545,0,212.9545,3.470556003,209.483944,0.556845029,4.182142222,0.612372746,-0.612372746,0.425431782,0.13321428,3.269400966,105.1551736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2982065,2.51440601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368669871,101.0791526,109.6668763,103.5935586,860.5798199,0,0.975532681,12.70048562,-0.975532681,167.2995144,0.998745951,0,969.1674868,103.5935586,1036.967399,5,14,7% +5/11/2018 23:00,42.82532601,254.8827495,728.918228,848.7540214,106.4170205,890.2765292,781.573481,108.7030482,103.2081547,5.494893499,179.9435293,0,179.9435293,3.208865805,176.7346635,0.747442942,4.448543185,0.923468043,-0.923468043,0.372231353,0.145993085,2.54897798,81.98389389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.207604,2.324812352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.84672587,78.80603722,101.0543299,81.13084957,781.573481,0,0.920848045,22.94962317,-0.920848045,157.0503768,0.995702225,0,879.2687838,81.13084957,932.3673023,5,15,6% +5/11/2018 0:00,54.47941007,265.8764225,551.6171849,787.9753555,93.80706466,736.3208728,641.1841139,95.13675889,90.97843555,4.158323344,136.574602,0,136.574602,2.828629111,133.7459729,0.95084508,4.640418977,1.347445017,-1.347445017,0.299727021,0.170058271,1.741565,56.014717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.45193278,2.049332162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261757914,53.84347661,88.7136907,55.89280877,641.1841139,0,0.813710872,35.53990543,-0.813710872,144.4600946,0.988553113,0,722.5582425,55.89280877,759.138968,5,16,5% +5/11/2018 1:00,66.29055539,275.0678997,346.3754222,672.738862,75.86799465,521.2112699,445.019851,76.19141893,73.58029469,2.611124242,86.27043128,0,86.27043128,2.287699962,83.98273132,1.156988455,4.800840516,2.062560552,-2.062560552,0.177435062,0.219034001,0.933750436,30.03262375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72817801,1.657430835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.676499012,28.8685003,71.40467703,30.52593113,445.019851,0,0.661504599,48.58527677,-0.661504599,131.4147232,0.974414736,0,505.0385774,30.52593113,525.0171888,5,17,4% +5/11/2018 2:00,77.92163525,283.6911612,135.7643262,424.4191909,46.95489449,248.1210959,201.5586159,46.56248001,45.53903118,1.023448838,34.33349602,0,34.33349602,1.415863314,32.91763271,1.359989094,4.951344821,3.888281384,-3.888281384,0,0.345855909,0.353965828,11.38475779,0.118773154,1,0.251727656,0,0.93164435,0.970406313,0.724496596,1,43.98170707,1.025788151,0.019235463,0.312029739,0.946899774,0.67139637,0.961238037,0.922476074,0.249233987,10.94346223,44.23094106,11.96925038,177.6188634,0,0.474904576,61.64686283,-0.474904576,118.3531372,0.944715691,0,212.0302684,11.96925038,219.8639034,5,18,4% +5/11/2018 3:00,88.85489834,292.5236203,0.942362412,5.988782386,0.822679807,2.426723209,1.621746307,0.804976902,0.797872976,0.007103926,0.253293509,0,0.253293509,0.024806832,0.228486677,1.550810533,5.105500314,36.8712208,-36.8712208,0,0.872997264,0.006201708,0.199468244,0.852402803,1,0.027114777,0,0.958758758,0.997520721,0.724496596,1,0.76953246,0.017972465,0.103710559,0.312029739,0.748302238,0.472798833,0.961238037,0.922476074,0.004388569,0.191736463,0.773921028,0.209708928,0.239365209,0,0.270797335,74.2882816,-0.270797335,105.7117184,0.865360073,0,0.981058123,0.209708928,1.118308423,5,19,14% +5/11/2018 4:00,99.74945611,302.1971333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740956436,5.274334967,-3.567341906,3.567341906,0.859794915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0474847,87.27830365,-0.0474847,92.72169635,0,0,0,0,0,5,20,0% +5/11/2018 5:00,109.1097348,313.3116307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904324118,5.46831954,-1.296319764,1.296319764,0.751837425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162486156,99.35123115,0.162486156,80.64876885,0,0.742281476,0,0,0,5,21,0% +5/11/2018 6:00,116.7493217,326.3944868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037660063,5.696658455,-0.4667127,0.4667127,0.609966262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351098908,110.554544,0.351098908,69.44545603,0,0.907589987,0,0,0,5,22,0% +5/11/2018 7:00,121.9449678,341.6393976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128341194,5.962732343,0.045881947,-0.045881947,0.522307415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50549857,120.3644541,0.50549857,59.63554588,0,0.951087752,0,0,0,5,23,0% +5/12/2018 8:00,123.9896078,358.4686886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164026895,6.256458881,0.469838895,-0.469838895,0.449806506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61516312,127.9637739,0.61516312,52.03622613,0,0.968720745,0,0,0,5,0,0% +5/12/2018 9:00,122.5381392,15.44127384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138693988,0.269501069,0.90887512,-0.90887512,0.37472689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672619911,132.2695943,0.672619911,47.73040574,0,0.975663812,0,0,0,5,1,0% +5/12/2018 10:00,117.8398438,31.02447814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056693264,0.541479292,1.472016141,-1.472016141,0.278424104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673954296,132.3729979,0.673954296,47.62700212,0,0.975810993,0,0,0,5,2,0% +5/12/2018 11:00,110.5663295,44.47603686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929746491,0.776253281,2.405100556,-2.405100556,0.118857271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619075904,128.2486834,0.619075904,51.75131655,0,0.969234459,0,0,0,5,3,0% +5/12/2018 12:00,101.455835,55.88764398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770738366,0.975423399,4.785694153,-4.785694153,0,#DIV/0!,0,0,0.223752075,1,0.205992179,0,0.938084172,0.976846136,0.724496596,1,0,0,0.034610055,0.312029739,0.906543601,0.631040197,0.961238037,0.922476074,0,0,0,0,0,0,-0.511724461,120.7787636,0.511724461,59.22123637,0,0.952291167,0,0,0,5,4,0% +5/12/2018 13:00,91.109611,65.75401962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590162692,1.147624139,51.48775639,-51.48775639,0,#DIV/0!,0,0,0.892180629,1,0.019419652,0,0.959480367,0.99824233,0.724496596,1,0,0,0.107095148,0.312029739,0.741532234,0.46602883,0.961238037,0.922476074,0,0,0,0,0,0,-0.359214761,111.0519797,0.359214761,68.94802033,0,0.910807502,0,0,0,5,5,0% +5/12/2018 14:00,79.87602763,74.66883594,102.2109537,354.8335836,39.83879468,39.40801737,0,39.40801737,38.63750803,0.770509343,86.44705201,60.46353629,25.98351572,1.201286649,24.78222907,1.394099675,1.303217036,-5.581811781,5.581811781,0.515300278,0.389770306,0.542609505,17.45218688,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.13984237,0.870328088,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.393118739,16.77570585,37.53296111,17.64603394,0,60.46353629,-0.1703997,99.81105928,0.1703997,80.18894072,0,0.756572254,37.53296111,63.39106786,79.0211472,5,6,111% +5/12/2018 15:00,68.30313976,83.25145809,309.6110204,642.3064271,72.15300562,96.76590249,24.45459755,72.31130494,69.97732629,2.333978652,77.24445578,0,77.24445578,2.175679336,75.06877645,1.192114678,1.453012051,-2.446369622,2.446369622,0.948507534,0.233044048,2.241804109,72.1041263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.26486775,1.576272273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.624179446,69.30922881,68.88904719,70.88550108,24.45459755,0,0.038073101,87.81804463,-0.038073101,92.18195537,0,0,68.88904719,70.88550108,115.2821899,5,7,67% +5/12/2018 16:00,56.4910277,92.23441348,517.9196176,772.5566356,91.41615931,289.4131604,196.8492387,92.56392166,88.65962482,3.904296847,128.332142,0,128.332142,2.756534493,125.5756075,0.985954431,1.609794199,-1.398019029,1.398019029,0.769229024,0.176506462,3.162330492,101.7114191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22300371,1.997099857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.291097676,97.76888478,87.51410138,99.76598464,196.8492387,0,0.25480234,75.2381268,-0.25480234,104.7618732,0.853769463,0,255.5779702,99.76598464,320.8728119,5,8,26% +5/12/2018 17:00,44.76112918,102.7280928,701.3880606,840.1680744,104.827884,497.3186666,390.3643707,106.954296,101.6669365,5.287359468,173.2206031,0,173.2206031,3.160947475,170.0596557,0.781229081,1.792943454,-0.834260431,0.834260431,0.672820626,0.149457754,3.81599371,122.7354751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.72612644,2.290095685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764674453,117.9780071,100.4908009,120.2681028,390.3643707,0,0.464626522,62.3139461,-0.464626522,117.6860539,0.942386686,0,468.3649864,120.2681028,547.0780543,5,9,17% +5/12/2018 18:00,33.6133569,116.8871424,844.8353194,877.3600966,114.1766652,690.1663911,573.0638481,117.102543,110.7338175,6.368725497,208.2829521,0,208.2829521,3.442847723,204.8401043,0.586663751,2.040065487,-0.454304553,0.454304553,0.607844344,0.135146652,4.208726822,135.367122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4415573,2.494331455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.049208256,130.1200266,109.4907656,132.6143581,573.0638481,0,0.653168352,49.21908984,-0.653168352,130.7809102,0.973450057,0,667.3398013,132.6143581,754.1332463,5,10,13% +5/12/2018 19:00,24.2288248,139.4102417,937.5603289,896.6613011,119.8825383,847.4414027,724.1060395,123.3353632,116.2676374,7.067725787,230.9372573,0,230.9372573,3.614900848,227.3223564,0.422872767,2.433167728,-0.158261412,0.158261412,0.557217985,0.127866479,4.338417192,139.5384101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7608755,2.618983359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.143168487,134.1296274,114.904044,136.7486108,724.1060395,0,0.807558036,36.14197349,-0.807558036,143.8580265,0.988084945,0,830.3823204,136.7486108,919.8815512,5,11,11% +5/12/2018 20:00,19.6062089,176.2223453,972.8840623,903.250955,122.0026079,954.1845776,828.5267874,125.6577902,118.3237791,7.334011009,239.5658333,0,239.5658333,3.67882877,235.8870046,0.342192899,3.075660141,0.099511728,-0.099511728,0.513136182,0.125403029,4.211118562,135.4440486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7373172,2.665298921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.050941063,130.1939714,116.7882582,132.8592703,828.5267874,0,0.917271975,23.46953362,-0.917271975,156.5304664,0.99549054,0,941.5788373,132.8592703,1028.532572,5,12,9% +5/12/2018 21:00,22.91674921,215.1663394,948.3027648,898.7060618,120.5301218,1000.139419,876.0950177,124.0444008,116.895694,7.148706805,233.5614123,0,233.5614123,3.634427882,229.9269844,0.399972728,3.755361062,0.347008113,-0.347008113,0.470811807,0.127100886,3.846519652,123.7172943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3645874,2.633130629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786790394,118.9217691,115.1513778,121.5548997,876.0950177,0,0.974840446,12.87964483,-0.974840446,167.1203552,0.998709555,0,990.1158433,121.5548997,1069.671094,5,13,8% +5/12/2018 22:00,31.7329283,239.9656769,865.5834391,881.95488,115.4728967,979.6166607,861.1005642,118.5160964,111.9909629,6.525133588,213.3526601,0,213.3526601,3.481933887,209.8707262,0.55384408,4.188191153,0.608947369,-0.608947369,0.426017556,0.133404697,3.279463696,105.4788256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6499733,2.522649248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375960284,101.3902592,110.0259336,103.9129085,861.1005642,0,0.976354441,12.48452188,-0.976354441,167.5154781,0.998789089,0,970.083782,103.9129085,1038.092702,5,14,7% +5/12/2018 23:00,42.67878053,255.1823657,730.6929566,848.6418733,106.800559,891.3097863,782.221386,109.0884003,103.5801281,5.508272153,180.3853979,0,180.3853979,3.220430907,177.164967,0.744885241,4.453772475,0.9183187,-0.9183187,0.373111943,0.146163389,2.559914544,82.33565137,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.56515901,2.333191229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.854649373,79.14415989,101.4198084,81.47735111,782.221386,0,0.921733196,22.81920684,-0.921733196,157.1807932,0.995754368,0,880.32017,81.47735111,933.6454668,5,15,6% +5/12/2018 0:00,54.34232653,266.134166,553.6297277,788.1179361,94.20336292,737.6446819,642.1084032,95.5362787,91.36278396,4.173494742,137.0745162,0,137.0745162,2.840578966,134.2339372,0.948452521,4.644917449,1.338921443,-1.338921443,0.301184638,0.170155897,1.753252556,56.39062898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.82138309,2.057989791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270225509,54.20481749,89.0916086,56.26280728,642.1084032,0,0.814736442,35.43868979,-0.814736442,144.5613102,0.988630461,0,723.8995351,56.26280728,760.7224172,5,16,5% +5/12/2018 1:00,66.15313821,275.2963338,348.6431061,673.6281788,76.299612,523.0652753,446.4381592,76.62711619,73.99889719,2.628219001,86.83327234,0,86.83327234,2.300714817,84.53255753,1.154590072,4.804827443,2.045359136,-2.045359136,0.180376677,0.218847327,0.945499291,30.41050734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.13055466,1.666860053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685011018,29.23173638,71.81556568,30.89859643,446.4381592,0,0.662736764,48.49107055,-0.662736764,131.5089295,0.974555264,0,506.8942239,30.89859643,527.1167372,5,17,4% +5/12/2018 2:00,77.77751557,283.8996055,138.1192031,427.8872063,47.53191086,250.9802711,203.8404219,47.13984926,46.09864837,1.041200895,34.92186237,0,34.92186237,1.433262486,33.48859988,1.357473731,4.954982861,3.831696189,-3.831696189,0,0.344136874,0.358315622,11.52466209,0.111194027,1,0.255286746,0,0.93112438,0.969886343,0.724496596,1,44.51175975,1.038393792,0.018069219,0.312029739,0.950036782,0.674533378,0.961238037,0.922476074,0.252672607,11.07794357,44.76443236,12.11633736,181.1745845,0,0.476388214,61.55022498,-0.476388214,118.449775,0.945043583,0,215.9823108,12.11633736,223.9122113,5,18,4% +5/12/2018 3:00,88.71353461,292.7174285,1.213590404,7.445185379,1.04643728,3.051496509,2.027464617,1.024031892,1.014883335,0.009148557,0.325802989,0,0.325802989,0.031553945,0.294249044,1.54834327,5.108882906,32.71647218,-32.71647218,0,0.862265618,0.007888486,0.253720834,0.83511118,1,0.030556129,0,0.958431449,0.997193412,0.724496596,1,0.979182645,0.022860726,0.10221016,0.312029739,0.75133288,0.475829476,0.961238037,0.922476074,0.005568525,0.243886116,0.984751171,0.266746842,0.334306248,0,0.27231889,74.19769898,-0.27231889,105.802301,0.866391731,0,1.27439134,0.266746842,1.448971813,5,19,14% +5/12/2018 4:00,99.57399196,302.3773505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737894009,5.27748035,-3.619236589,3.619236589,0.850920402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049590184,87.15752594,-0.049590184,92.84247406,0,0,0,0,0,5,20,0% +5/12/2018 5:00,108.9127344,313.4735456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.900885813,5.471145488,-1.303498463,1.303498463,0.753065055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.160076904,99.21136002,0.160076904,80.78863998,0,0.737650131,0,0,0,5,21,0% +5/12/2018 6:00,116.5292451,326.525447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033819002,5.698944142,-0.466755956,0.466755956,0.609973659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34841408,110.3903438,0.34841408,69.6096562,0,0.906492596,0,0,0,5,22,0% +5/12/2018 7:00,121.7053092,341.7191621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124158363,5.964124495,0.048564941,-0.048564941,0.521848596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502585408,120.1711971,0.502585408,59.82880287,0,0.950514422,0,0,0,5,23,0% +5/13/2018 8:00,123.7409001,358.4785541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159686126,6.256631067,0.474511839,-0.474511839,0.449007386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612084657,127.7403904,0.612084657,52.25960963,0,0.968311953,0,0,0,5,0,0% +5/13/2018 9:00,122.2950988,15.37917965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134452134,0.268417321,0.916037073,-0.916037073,0.373502124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669450624,132.0246778,0.669450624,47.97532218,0,0.975311893,0,0,0,5,1,0% +5/13/2018 10:00,117.6142665,30.90693776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052756197,0.539427826,1.483686017,-1.483686017,0.276428437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67077498,132.1269064,0.67077498,47.87309363,0,0.975459355,0,0,0,5,2,0% +5/13/2018 11:00,110.3630954,44.32395978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926199387,0.773599036,2.428196534,-2.428196534,0.114907626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615968115,128.022299,0.615968115,51.977701,0,0.968826967,0,0,0,5,3,0% +5/13/2018 12:00,101.2742795,55.7153382,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767569624,0.972416095,4.861136634,-4.861136634,0,#DIV/0!,0,0,0.231448887,1,0.202882943,0,0.938505485,0.977267448,0.724496596,1,0,0,0.035682935,0.312029739,0.903796895,0.628293491,0.961238037,0.922476074,0,0,0,0,0,0,-0.508764909,120.5815959,0.508764909,59.41840407,0,0.951722782,0,0,0,5,4,0% +5/13/2018 13:00,90.94629915,65.5676496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587312363,1.144371368,60.36064782,-60.36064782,0,#DIV/0!,0,0,0.907339843,1,0.01656557,0,0.95974439,0.998506353,0.724496596,1,0,0,0.108361034,0.312029739,0.739023843,0.463520439,0.961238037,0.922476074,0,0,0,0,0,0,-0.356470039,110.8835666,0.356470039,69.11643337,0,0.909735758,0,0,0,5,5,0% +5/13/2018 14:00,79.72763006,74.46847757,104.545725,359.2437293,40.48260628,40.05001617,0,40.05001617,39.26190633,0.788109836,86.90103951,60.33201814,26.56902137,1.220699944,25.34832142,1.391509649,1.299720123,-5.500996504,5.500996504,0.529120504,0.387223928,0.560705717,18.03422328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.74003777,0.884392954,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.406229383,17.33518138,38.14626715,18.21957433,0,60.33201814,-0.167941743,99.66816917,0.167941743,80.33183083,0,0.752277712,38.14626715,63.60600691,79.77512655,5,6,109% +5/13/2018 15:00,68.16233217,83.03276307,311.9641354,643.4833744,72.60236895,98.66227414,25.89741706,72.76485708,70.41313965,2.351717427,77.82854572,0,77.82854572,2.189229298,75.63931642,1.189657122,1.449195103,-2.431140424,2.431140424,0.945903188,0.232726653,2.254104592,72.49975213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68378813,1.586089174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.633091104,69.68951941,69.31687923,71.27560858,25.89741706,0,0.040245666,87.69347025,-0.040245666,92.30652975,0,0,69.31687923,71.27560858,115.9653395,5,7,67% +5/13/2018 16:00,56.3522392,91.98914734,520.0134639,772.7946738,91.81901228,291.3190679,198.3486565,92.97041143,89.05033028,3.920081145,128.8519668,0,128.8519668,2.768681996,126.0832848,0.983532115,1.605513497,-1.393109859,1.393109859,0.768389506,0.176570452,3.172463168,102.0373207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.59856466,2.005900681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298438765,98.08215387,87.89700343,100.0880546,198.3486565,0,0.256664109,75.12778616,-0.256664109,104.8722138,0.855192864,0,257.5233591,100.0880546,323.028989,5,8,25% +5/13/2018 17:00,44.61562442,102.4445796,703.2203344,840.0913508,105.2142907,498.9800524,391.6371888,107.3428636,102.0416917,5.301171922,173.6765107,0,173.6765107,3.172599065,170.5039117,0.778689544,1.787995215,-0.832663099,0.832663099,0.672547466,0.149617816,3.825008643,123.0254263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.08635536,2.298537222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771205741,118.2567193,100.8575611,120.5552565,391.6371888,0,0.466184051,62.21312128,-0.466184051,117.7868787,0.942746223,0,470.0720418,120.5552565,548.9730461,5,9,17% +5/13/2018 18:00,33.44708087,116.5573976,846.4549516,877.1626348,114.5546222,691.5406918,574.0593791,117.4813127,111.1003777,6.38093497,208.6870475,0,208.6870475,3.454244522,205.2328029,0.583761686,2.034310355,-0.454217981,0.454217981,0.607829539,0.135334576,4.217183928,135.6391316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.793909,2.502588398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.0553354,130.3814926,109.8492444,132.884081,574.0593791,0,0.654450334,49.12201552,-0.654450334,130.8779845,0.973600008,0,668.7534607,132.884081,755.723434,5,10,13% +5/13/2018 19:00,24.02105715,139.0860954,939.0379979,896.4156042,120.2556482,848.56104,724.8526782,123.7083618,116.6294967,7.078865079,231.3067859,0,231.3067859,3.62615149,227.6806344,0.419246537,2.427510308,-0.159088147,0.159088147,0.557359365,0.128062601,4.346742245,139.8061724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1087085,2.62713441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14919996,134.3870107,115.2579084,137.0141451,724.8526782,0,0.808612294,36.03943046,-0.808612294,143.9605695,0.988165669,0,831.5324403,137.0141451,921.2054581,5,11,11% +5/13/2018 20:00,19.36030272,176.1862537,974.3020446,902.99018,122.3736397,955.1195343,829.091211,126.0283233,118.6836229,7.344700359,239.9208275,0,239.9208275,3.690016747,236.2308108,0.337901027,3.075030225,0.097950103,-0.097950103,0.513403235,0.125601337,4.21968048,135.7194293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0832127,2.673404572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057144143,130.4586778,117.1403569,133.1320823,829.091211,0,0.918161935,23.34116844,-0.918161935,156.6588316,0.995543375,0,942.5366194,133.1320823,1029.668905,5,12,9% +5/13/2018 21:00,22.70180247,215.4748797,949.7477502,898.4528103,120.9017189,1000.982804,876.567118,124.4156858,117.256086,7.159599716,233.9229707,0,233.9229707,3.645632906,230.2773378,0.396221199,3.760746106,0.344665994,-0.344665994,0.471212333,0.127298768,3.855633117,124.0104147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.71101,2.64124863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793393068,119.2035276,115.504403,121.8447762,876.567118,0,0.975640688,12.67230728,-0.975640688,167.3276927,0.998751625,0,990.9772365,121.8447762,1070.722206,5,13,8% +5/13/2018 22:00,31.56379174,240.305502,867.1396815,881.738111,115.8477595,980.4778317,861.5864444,118.8913873,112.3545221,6.536865201,213.7412926,0,213.7412926,3.493237381,210.2480552,0.55089209,4.194122221,0.605560412,-0.605560412,0.42659676,0.133597576,3.289363924,105.7972509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9994402,2.530838591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383132965,101.6963418,110.3825732,104.2271804,861.5864444,0,0.977145519,12.27309023,-0.977145519,167.7269098,0.998830549,0,970.9614343,104.2271804,1039.176039,5,14,7% +5/13/2018 23:00,42.53418394,255.475514,732.4352363,848.5211829,107.1819249,892.313674,782.8422734,109.4714006,103.9499944,5.521406193,180.8193334,0,180.8193334,3.231930495,177.5874029,0.742361554,4.458888878,0.913243191,-0.913243191,0.373979906,0.146336385,2.570708328,82.68281657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.92068855,2.341522642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862469432,79.47786828,101.783158,81.81939092,782.8422734,0,0.922596028,22.69139621,-0.922596028,157.3086038,0.995805099,0,881.3414859,81.81939092,934.8906409,5,15,6% +5/13/2018 0:00,54.20671926,266.3859593,555.614266,788.2479703,94.5975442,738.9441151,643.0105808,95.93353424,91.74507921,4.18845503,137.5675765,0,137.5675765,2.852464985,134.7151115,0.946085728,4.64931207,1.330546385,-1.330546385,0.302616857,0.170257587,1.764812346,56.76243155,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.18885984,2.066601172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278600537,54.56220827,89.46746037,56.62880944,643.0105808,0,0.815746574,35.3387516,-0.815746574,144.6612484,0.988706454,0,725.2161717,56.62880944,762.2785949,5,16,5% +5/13/2018 1:00,66.01700514,275.519186,350.8854514,674.4900562,76.72852099,524.8933593,447.8333635,77.05999573,74.41487298,2.645122747,87.3898881,0,87.3898881,2.313648006,85.07624009,1.152214102,4.808716948,2.028535929,-2.028535929,0.183253615,0.218671138,0.957144217,30.78504818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53040642,1.676230104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.693447727,29.59175927,72.22385415,31.26798938,447.8333635,0,0.663958437,48.39753094,-0.663958437,131.6024691,0.974694081,0,508.7243831,31.26798938,529.1886567,5,17,4% +5/13/2018 2:00,77.63468538,284.1026406,140.4554048,431.265216,48.10253097,253.7971234,206.086249,47.71087435,46.65206218,1.05881217,35.50550782,0,35.50550782,1.450468788,34.05503904,1.354980874,4.958526492,3.777017776,-3.777017776,0,0.342475471,0.362617197,11.66301555,0.103745405,1,0.258820667,0,0.930605428,0.969367392,0.724496596,1,45.03538237,1.0508597,0.016915291,0.312029739,0.953151157,0.677647753,0.961238037,0.922476074,0.25609113,11.21093417,45.2914735,12.26179387,184.7057477,0,0.477864296,61.45399149,-0.477864296,118.5460085,0.945367785,0,219.906337,12.26179387,227.9314359,5,18,4% +5/13/2018 3:00,88.57251853,292.9058323,1.528548268,9.112563415,1.301539056,3.769312104,2.49549641,1.273815694,1.262292852,0.011522843,0.409860429,0,0.409860429,0.039246205,0.370614225,1.545882075,5.112171171,29.39370012,-29.39370012,0,0.85148705,0.009811551,0.315573213,0.818064886,1,0.034007779,0,0.958100312,0.996862275,0.724496596,1,1.218305069,0.028433742,0.10071335,0.312029739,0.754374306,0.478870902,0.961238037,0.922476074,0.00690979,0.303340976,1.22521486,0.331774717,0.454018424,0,0.273852296,74.10636985,-0.273852296,105.8936302,0.867419825,0,1.619039442,0.331774717,1.836179359,5,19,13% +5/13/2018 4:00,99.4004737,302.5520592,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734865544,5.280529592,-3.672685467,3.672685467,0.841780105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051685414,87.03732384,-0.051685414,92.96267616,0,0,0,0,0,5,20,0% +5/13/2018 5:00,108.7183057,313.6298634,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897492392,5.47387375,-1.310859357,1.310859357,0.754323842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.157682625,99.07241299,0.157682625,80.92758701,0,0.732907359,0,0,0,5,21,0% +5/13/2018 6:00,116.3125681,326.6509918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030037274,5.701135311,-0.466896495,0.466896495,0.609997693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.345750952,110.2276434,0.345750952,69.77235663,0,0.905387238,0,0,0,5,22,0% +5/13/2018 7:00,121.4699732,341.794337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120050974,5.965436546,0.05115665,-0.05115665,0.521405387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499702217,119.9803008,0.499702217,60.01969922,0,0.949940408,0,0,0,5,23,0% +5/14/2018 8:00,123.4972919,358.4854673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15543436,6.256751726,0.479080815,-0.479080815,0.448226045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60904541,127.5205119,0.60904541,52.47948814,0,0.967904315,0,0,0,5,0,0% +5/14/2018 9:00,122.0575638,15.31610916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130306365,0.267316533,0.923067772,-0.923067772,0.372299804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666330136,131.7844509,0.666330136,48.2155491,0,0.974962121,0,0,0,5,1,0% +5/14/2018 10:00,117.3942373,30.79001769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048915964,0.537387185,1.495175065,-1.495175065,0.274463695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667653727,131.8862356,0.667653727,48.11376445,0,0.97511088,0,0,0,5,2,0% +5/14/2018 11:00,110.165267,44.17348418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92274663,0.770972741,2.451031082,-2.451031082,0.111002689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612926692,127.801424,0.612926692,52.19857599,0,0.968424176,0,0,0,5,3,0% +5/14/2018 12:00,101.0979554,55.54516829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764492188,0.96944607,4.93662679,-4.93662679,0,#DIV/0!,0,0,0.238999285,1,0.199863058,0,0.938912659,0.977674622,0.724496596,1,0,0,0.036728548,0.312029739,0.90112873,0.625625326,0.961238037,0.922476074,0,0,0,0,0,0,-0.505878495,120.3896862,0.505878495,59.61031382,0,0.951162037,0,0,0,5,4,0% +5/14/2018 13:00,90.17994887,65.3837172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573937027,1.141161142,317.3664179,-317.3664179,0,#DIV/0!,0,0,0.981732724,1,0.003150922,0,0.960959039,0.999721002,0.724496596,1,0,0,0.114389556,0.312029739,0.727255251,0.451751847,0.961238037,0.922476074,0,0,0,0,0,0,-0.343860252,110.1122369,0.343860252,69.88776313,0,0.904592092,0,0,0,5,5,0% +5/14/2018 14:00,79.58421287,74.27075877,106.8046516,363.4072421,41.10420208,40.66989731,0,40.66989731,39.86475873,0.805138578,87.3022657,60.16679802,27.13546767,1.239443351,25.89602432,1.389006547,1.296269278,-5.425023008,5.425023008,0.542112737,0.384854044,0.578357209,18.60195594,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.31952242,0.897972489,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419017829,17.88090761,38.73854025,18.7788801,0,60.16679802,-0.165563013,99.5299426,0.165563013,80.4700574,0,0.748000181,38.73854025,63.78365591,80.48366737,5,6,108% +5/14/2018 15:00,68.02660442,82.8168638,314.2230392,644.5681734,73.04107938,100.4971854,27.28981801,73.20736734,70.83862135,2.368745997,78.38947183,0,78.38947183,2.202458036,76.18701379,1.187288226,1.44542695,-2.416647991,2.416647991,0.943424836,0.23244979,2.26588491,72.87864763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.09277732,1.59567335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641625904,70.05372817,69.73440322,71.64940152,27.28981801,0,0.042338141,87.57347793,-0.042338141,92.42652207,0,0,69.73440322,71.64940152,116.6275035,5,7,67% +5/14/2018 16:00,56.21870281,91.74675879,522.0156229,772.9895928,92.21460144,293.1469222,199.7777569,93.36916524,89.43399097,3.935174266,129.3493419,0,129.3493419,2.780610469,126.5687315,0.981201465,1.601283019,-1.388450671,1.388450671,0.767592738,0.176651038,3.182169707,102.3495164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96735391,2.014542819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.30547112,98.38224822,88.27282503,100.396791,199.7777569,0,0.258448185,75.02199719,-0.258448185,104.9780028,0.856537623,0,259.3899901,100.396791,325.0976819,5,8,25% +5/14/2018 17:00,44.4756902,102.1637418,704.9678333,839.9898716,105.5949328,500.5621576,392.8369564,107.7252013,102.410856,5.314345307,174.1116899,0,174.1116899,3.184076828,170.927613,0.776247231,1.78309367,-0.831177199,0.831177199,0.672293362,0.149786881,3.833659851,123.3036789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.44121015,2.306852823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.777473512,118.5241863,101.2186837,120.8310391,392.8369564,0,0.467668682,62.11692823,-0.467668682,117.8830718,0.943086705,0,471.6979943,120.8310391,550.7794927,5,9,17% +5/14/2018 18:00,33.28683657,116.2290501,847.9987148,876.9488987,114.9277747,692.8406143,574.9857635,117.8548508,111.4622783,6.392572508,209.0726026,0,209.0726026,3.465496446,205.6071062,0.580964896,2.02857961,-0.45418517,0.45418517,0.607823928,0.135528242,4.225329728,135.9011285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1417815,2.510740378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061237004,130.633334,110.2030186,133.1440744,574.9857635,0,0.655666213,49.02981492,-0.655666213,130.9701851,0.973741686,0,670.0906253,133.1440744,757.2307591,5,10,13% +5/14/2018 19:00,23.81957266,138.7589727,940.4496418,896.158105,120.6247065,849.6143799,725.5374467,124.0769332,116.9874266,7.089506647,231.6601838,0,231.6601838,3.63727996,228.0229038,0.415729969,2.42180094,-0.159937705,0.159937705,0.557504648,0.128262802,4.354802777,140.0654268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4527643,2.635196949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155039787,134.6362159,115.607804,137.2714129,725.5374467,0,0.809608754,35.94227679,-0.809608754,144.0577232,0.988241774,0,832.6142178,137.2714129,922.4556121,5,11,11% +5/14/2018 20:00,19.11971473,176.1431915,975.6639599,902.7201165,122.7412568,955.9979172,829.602795,126.3951221,119.0401551,7.354967052,240.2621247,0,240.2621247,3.70110176,236.5610229,0.333701974,3.074278647,0.096386736,-0.096386736,0.513670587,0.125802799,4.228018905,135.9876217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.425925,2.681435626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063185304,130.7164745,117.4891103,133.3979101,829.602795,0,0.919003332,23.21919191,-0.919003332,156.7808081,0.995593233,0,943.4360392,133.3979101,1030.742303,5,12,9% +5/14/2018 21:00,22.49087909,215.7771609,951.1459969,898.1916176,121.2704384,1001.779823,876.9959952,124.7838275,117.6136872,7.17014029,234.2731101,0,234.2731101,3.656751158,230.6163589,0.392539892,3.766021908,0.342340956,-0.342340956,0.471609938,0.127499289,3.864557162,124.2974427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0547498,2.649303766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.799858508,119.4794298,115.8546083,122.1287335,876.9959952,0,0.976401893,12.47193908,-0.976401893,167.5280609,0.998791578,0,991.7908225,122.1287335,1071.721636,5,13,8% +5/14/2018 22:00,31.39747261,240.6383381,868.6572212,881.5137854,116.2201683,981.3022564,862.0382499,119.2640065,112.7157014,6.548305056,214.1204671,0,214.1204671,3.50446688,210.6160002,0.547989274,4.199931307,0.602213054,-0.602213054,0.427169192,0.133792899,3.299100829,106.1104232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3466195,2.538974325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39018732,101.9973749,110.7368069,104.5363492,862.0382499,0,0.977906715,12.06620283,-0.977906715,167.9337972,0.998870379,0,971.80128,104.5363492,1040.21823,5,14,7% +5/14/2018 23:00,42.39155472,255.7620468,734.1450205,848.3919866,107.5611115,893.2887053,783.4366629,109.8520424,104.3177471,5.534295269,181.2453242,0,181.2453242,3.243364369,178.0019599,0.739872205,4.463889818,0.908242955,-0.908242955,0.374834997,0.146512077,2.581357023,83.02531523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2741864,2.349806444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870184376,79.80709102,102.1443708,82.15689747,783.4366629,0,0.923437132,22.56614452,-0.923437132,157.4338555,0.995854462,0,882.3332675,82.15689747,936.1033138,5,15,6% +5/14/2018 0:00,54.0726208,266.6317008,557.5703729,788.3654157,94.98957505,740.2192965,643.8908066,96.32848988,92.12528889,4.203200989,138.0536784,0,138.0536784,2.864286162,135.1893922,0.943745268,4.653601069,1.322321375,-1.322321375,0.304023416,0.170363383,1.776240549,57.13000185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.55433183,2.075165574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286880231,54.91553082,89.84121207,56.99069639,643.8908066,0,0.816741569,35.24006996,-0.816741569,144.75993,0.988781125,0,726.5082882,56.99069639,763.8075592,5,16,5% +5/14/2018 1:00,65.88220399,275.736381,353.1016247,675.3243789,77.1546519,526.6952153,449.2052316,77.48998367,74.82815448,2.661829198,87.9400744,0,87.9400744,2.326497425,85.61357698,1.149861378,4.812507716,2.012090042,-2.012090042,0.186066027,0.218505514,0.968679807,31.15607242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92766831,1.685539465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701805223,29.94840188,72.62947353,31.63394135,449.2052316,0,0.665169577,48.30466379,-0.665169577,131.6953362,0.974831198,0,510.5287478,31.63394135,531.2325297,5,17,4% +5/14/2018 2:00,77.49320811,284.3002097,142.7715239,434.5534488,48.66665255,256.5709913,208.2955458,48.27544547,47.19917341,1.076272054,36.08408806,0,36.08408806,1.467479135,34.61660892,1.352511629,4.961974723,3.724190036,-3.724190036,0,0.340870863,0.366869784,11.79979335,0.096429345,1,0.262326996,0,0.930087917,0.96884988,0.724496596,1,45.55249288,1.063183638,0.015774334,0.312029739,0.956240786,0.680737382,0.961238037,0.922476074,0.259488464,11.3424102,45.81198134,12.40559384,188.2097427,0,0.479332396,61.35819118,-0.479332396,118.6418088,0.945688252,0,223.799724,12.40559384,231.918937,5,18,4% +5/14/2018 3:00,88.43201347,293.0887919,1.888562583,10.99315009,1.587755788,4.58157779,3.027461915,1.554115876,1.539879093,0.014236782,0.505780559,0,0.505780559,0.047876695,0.457903863,1.543429799,5.11536442,26.6790735,-26.6790735,0,0.840721829,0.011969174,0.384969773,0.801281203,1,0.037465022,0,0.957765784,0.996527747,0.724496596,1,1.48670478,0.034686503,0.099222131,0.312029739,0.757422276,0.481918872,0.961238037,0.922476074,0.008410434,0.370047589,1.495115215,0.404734092,0.60161359,0,0.275395304,74.0144269,-0.275395304,105.9855731,0.868442801,0,2.017582206,0.404734092,2.282472574,5,19,13% +5/14/2018 4:00,99.22899103,302.7212401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731872607,5.283482356,-3.727712306,3.727712306,0.832369962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.053769228,86.91776376,-0.053769228,93.08223624,0,0,0,0,0,5,20,0% +5/14/2018 5:00,108.5265475,313.7805909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894145579,5.47650444,-1.318399834,1.318399834,0.75561334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155304799,98.93447404,0.155304799,81.06552596,0,0.728052448,0,0,0,5,21,0% +5/14/2018 6:00,116.0993915,326.7711577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026316641,5.703232602,-0.467135022,0.467135022,0.610038483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343111253,110.0665422,0.343111253,69.93345779,0,0.904274672,0,0,0,5,22,0% +5/14/2018 7:00,121.2390539,341.8649831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116020673,5.966669552,0.053654534,-0.053654534,0.520978224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496850892,119.7918745,0.496850892,60.20812554,0,0.949366186,0,0,0,5,23,0% +5/15/2018 8:00,123.2588649,358.4894925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151273024,6.256821978,0.483541583,-0.483541583,0.447463209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606047343,127.3042456,0.606047343,52.69575441,0,0.967498195,0,0,0,5,0,0% +5/15/2018 9:00,121.8256036,15.25211574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126257896,0.266199638,0.92996037,-0.92996037,0.3711211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663260379,131.5490044,0.663260379,48.45099558,0,0.974614825,0,0,0,5,1,0% +5/15/2018 10:00,117.1798163,30.67376589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045173611,0.535358209,1.506470855,-1.506470855,0.272532001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664592332,131.6510578,0.664592332,48.34894217,0,0.974765909,0,0,0,5,2,0% +5/15/2018 11:00,109.9728947,44.02466364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9193891,0.768375333,2.473574938,-2.473574938,0.107147462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609953207,127.5861196,0.609953207,52.41388038,0,0.968026499,0,0,0,5,3,0% +5/15/2018 12:00,100.9269024,55.37719942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761506751,0.96651446,5.012046149,-5.012046149,0,#DIV/0!,0,0,0.246395897,1,0.196933317,0,0.939305762,0.978067725,0.724496596,1,0,0,0.03774634,0.312029739,0.898539844,0.62303644,0.961238037,0.922476074,0,0,0,0,0,0,-0.503066494,120.2030858,0.503066494,59.79691419,0,0.95060956,0,0,0,5,4,0% +5/15/2018 13:00,90.05299245,65.20230193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571721219,1.137994849,1077.417909,-1077.417909,0,#DIV/0!,0,0,0.994586376,1,0.000928145,0,0.961156104,0.999918067,0.724496596,1,0,0,0.115401261,0.312029739,0.725308953,0.449805548,0.961238037,0.922476074,0,0,0,0,0,0,-0.341690749,109.9799172,0.341690749,70.02008284,0,0.903668851,0,0,0,5,5,0% +5/15/2018 14:00,79.44579639,74.07577662,108.9862457,367.3304373,41.70393325,41.26799015,0,41.26799015,40.44640579,0.821584356,87.65438253,59.97187801,27.68250452,1.257527459,26.42497706,1.386590724,1.292866198,-5.353601295,5.353601295,0.554326569,0.382653178,0.595537681,19.15453898,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.8786237,0.911074363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.431465023,18.41207145,39.31008872,19.32314581,0,59.97187801,-0.163264113,99.39640808,0.163264113,80.60359192,0,0.743747762,39.31008872,63.92709586,81.14909442,5,6,106% +5/15/2018 15:00,67.89596278,82.6038814,316.3877453,645.5627937,73.46921339,102.2698533,28.63094335,73.63891,71.25384553,2.385064467,78.92723971,0,78.92723971,2.215367856,76.71187185,1.185008099,1.441709705,-2.40287103,2.40287103,0.941068837,0.232212576,2.277148394,73.24092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.4919066,1.60502647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.64978626,70.40195816,70.14169286,72.00698463,28.63094335,0,0.044350362,87.45807769,-0.044350362,92.54192231,0,0,70.14169286,72.00698463,117.2688242,5,7,67% +5/15/2018 16:00,56.09041579,91.50740583,523.9265176,773.1420876,92.60296179,294.8968221,201.1366018,93.76022022,89.81064082,3.949579397,129.824371,0,129.824371,2.792320967,127.03205,0.978962434,1.597105522,-1.384036741,1.384036741,0.766837912,0.176747996,3.191453065,102.6481011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.32940407,2.023027035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.312196881,98.66925919,88.64160096,100.6922862,201.1366018,0,0.26015477,74.92075417,-0.26015477,105.0792458,0.857806714,0,261.1779285,100.6922862,327.079016,5,8,25% +5/15/2018 17:00,44.34132025,101.8857988,706.6312227,839.8639896,105.9698464,502.0655351,393.9641859,108.1013492,102.7744645,5.326884639,174.5263029,0,174.5263029,3.195381855,171.330921,0.773902033,1.778242649,-0.829800895,0.829800895,0.672058,0.149964852,3.841950416,123.570332,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.79072451,2.315043277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.783479998,118.7805034,101.5742045,121.0955466,393.9641859,0,0.469080935,62.02534541,-0.469080935,117.9746546,0.943408586,0,473.2434002,121.0955466,552.4980136,5,9,17% +5/15/2018 18:00,33.13262894,115.9024164,849.4674033,876.7191188,115.296163,694.0670061,575.8438037,118.2232024,111.8195583,6.403644103,209.4398114,0,209.4398114,3.476604712,205.9632067,0.578273465,2.022878778,-0.454205013,0.454205013,0.607827321,0.135727589,4.233167188,136.1532082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.4852127,2.518788279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066915218,130.8756425,110.5521279,133.3944308,575.8438037,0,0.656816752,48.94245035,-0.656816752,131.0575497,0.973875267,0,671.3521658,133.3944308,758.6561529,5,10,13% +5/15/2018 19:00,23.62442106,138.4292158,941.7960736,895.8889773,120.9897541,850.6024407,726.1613175,124.4411232,117.3414666,7.099656619,231.9976493,0,231.9976493,3.648287489,228.3493618,0.412323931,2.416045597,-0.160809158,0.160809158,0.557653675,0.12846704,4.362601248,140.3162525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.793081,2.643171867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160689753,134.8773191,115.9537707,137.5204909,726.1613175,0,0.810548333,35.85046028,-0.810548333,144.1495397,0.988313364,0,833.6287052,137.5204909,923.6331161,5,11,11% +5/15/2018 20:00,18.88452739,176.0930618,976.9705297,902.4409035,123.1054954,956.8207911,830.062564,126.758227,119.3934105,7.364816527,240.5899008,0,240.5899008,3.712084898,236.8778159,0.329597181,3.073403718,0.094822569,-0.094822569,0.513938075,0.126007379,4.236135413,136.2486765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7654875,2.689392872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069065687,130.9674103,117.8345532,133.6568032,830.062564,0,0.919797142,23.10355649,-0.919797142,156.8964435,0.995640188,0,944.2782003,133.6568032,1031.753905,5,12,9% +5/15/2018 21:00,22.28401654,216.072856,952.4980322,897.9225927,121.6363062,1002.53146,877.3826051,125.1488553,117.9685228,7.180332504,234.611959,0,234.611959,3.667783422,230.9441756,0.388929459,3.771182762,0.340034065,-0.340034065,0.47200444,0.127702423,3.873292161,124.5783903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3958312,2.657296604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806186986,119.7494873,116.2020182,122.4067839,877.3826051,0,0.977124991,12.27862222,-0.977124991,167.7213778,0.998829474,0,992.5576239,122.4067839,1072.670416,5,13,8% +5/15/2018 22:00,31.23398676,240.9639549,870.1363033,881.2819764,116.5901337,982.0907158,862.4567498,119.633966,113.074511,6.559455001,214.4902435,0,214.4902435,3.515622702,210.9746208,0.545135907,4.205614392,0.598906574,-0.598906574,0.427734634,0.133990656,3.30867336,106.4183087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6915209,2.54705668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397122586,102.2933262,111.0886435,104.8403829,862.4567498,0,0.978638816,11.86387127,-0.978638816,168.1361287,0.998908628,0,972.604132,104.8403829,1041.220066,5,14,7% +5/15/2018 23:00,42.25091572,256.0418211,735.8222038,848.2543022,107.938108,894.2353436,784.0050292,110.2303144,104.6833758,5.546938585,181.6633446,0,181.6633446,3.254732206,178.4086124,0.737417591,4.468772801,0.90331955,-0.90331955,0.375676949,0.146690474,2.591858047,83.36306426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6256427,2.358042404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877792332,80.13174824,102.503435,82.48979064,784.0050292,0,0.924257062,22.44340839,-0.924257062,157.5565916,0.995902496,0,883.2960005,82.48979064,937.2839187,5,15,6% +5/15/2018 0:00,53.94006824,266.8712931,559.49755,788.4701985,95.37941637,741.4702777,644.7491737,96.72110392,92.50337506,4.217728865,138.5326999,0,138.5326999,2.876041316,135.6566586,0.94143179,4.657782744,1.314248108,-1.314248108,0.305404026,0.170473341,1.787533057,57.49320772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91776264,2.083682143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295061615,55.26465812,90.21282426,57.34834027,644.7491737,0,0.817721678,35.14262897,-0.817721678,144.857371,0.988854501,0,727.7759468,57.34834027,765.3092885,5,16,5% +5/15/2018 1:00,65.74878701,275.9478473,355.2907164,676.1309751,77.57792708,528.4704464,450.5534486,77.91699785,75.23866635,2.678331496,88.48360835,0,88.48360835,2.339260734,86.14434761,1.147532812,4.816198499,1.996020921,-1.996020921,0.188814009,0.218350561,0.980100391,31.52339765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32226794,1.694786438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710079397,30.30148887,73.03234733,31.99627531,450.5534486,0,0.666370075,48.21248016,-0.666370075,131.7875198,0.974966619,0,512.3069196,31.99627531,533.2478418,5,17,4% +5/15/2018 2:00,77.35315131,284.4922597,145.0660892,437.7520273,49.22416119,259.3011167,210.4676761,48.83344056,47.73987111,1.093569457,36.65724292,0,36.65724292,1.484290078,35.17295284,1.350067177,4.965326628,3.673160503,-3.673160503,0,0.339322315,0.371072519,11.93496778,0.089248004,1,0.265803216,0,0.929572288,0.968334251,0.724496596,1,46.06299971,1.075363108,0.014647025,0.312029739,0.959303475,0.683800071,0.961238037,0.922476074,0.262863394,11.472345,46.32586311,12.5477081,191.683856,0,0.480792008,61.26285792,-0.480792008,118.7371421,0.946004927,0,227.6597353,12.5477081,235.8719593,5,18,4% +5/15/2018 3:00,88.29218336,293.266272,2.294303096,13.08528606,1.90432742,5.488113325,3.623912977,1.864200348,1.846904922,0.017295426,0.613702846,0,0.613702846,0.057422498,0.556280348,1.540989303,5.118462031,24.42245487,-24.42245487,0,0.830024343,0.014355624,0.46172623,0.784776468,1,0.040923065,0,0.957428323,0.996190286,0.724496596,1,1.783686862,0.041602404,0.097738501,0.312029739,0.760472464,0.48496906,0.961238037,0.922476074,0.010065843,0.443828815,1.793752705,0.48543122,0.779951352,0,0.276945644,73.92200453,-0.276945644,106.0779955,0.869459157,0,2.47188855,0.48543122,2.789593575,5,19,13% +5/15/2018 4:00,99.0596367,302.8848781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728916816,5.286338377,-3.784336634,3.784336634,0.822686631,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055840385,86.79891657,-0.055840385,93.20108343,0,0,0,0,0,5,20,0% +5/15/2018 5:00,108.3375605,313.9257389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890847135,5.479037751,-1.326116408,1.326116408,0.756932952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152944976,98.79763101,0.152944976,81.20236899,0,0.723085045,0,0,0,5,21,0% +5/15/2018 6:00,115.8898175,326.8859862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022658885,5.705236737,-0.467471946,0.467471946,0.610096101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340496769,109.9071428,0.340496769,70.09285717,0,0.903155729,0,0,0,5,22,0% +5/15/2018 7:00,121.0126459,341.9311652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112069107,5.967824648,0.056056209,-0.056056209,0.520567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494033363,119.6060294,0.494033363,60.3939706,0,0.94879226,0,0,0,5,23,0% +5/16/2018 8:00,123.0257,358.4906984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147203529,6.256843025,0.487890002,-0.487890002,0.446719585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603092433,127.0916994,0.603092433,52.9083006,0,0.967093969,0,0,0,5,0,0% +5/16/2018 9:00,121.5992862,15.18725799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122307912,0.265067656,0.936708093,-0.936708093,0.369967171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660243274,131.3184289,0.660243274,48.68157112,0,0.974270338,0,0,0,5,1,0% +5/16/2018 10:00,116.9710606,30.5582356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041530138,0.533341825,1.517560988,-1.517560988,0.270635476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661592564,131.4214442,0.661592564,48.57855581,0,0.974424785,0,0,0,5,2,0% +5/16/2018 11:00,109.7860253,43.87755648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916127615,0.765807828,2.495798509,-2.495798509,0.103347008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607049186,127.3764443,0.607049186,52.62355565,0,0.967634351,0,0,0,5,3,0% +5/16/2018 12:00,100.7611562,55.21150086,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758613933,0.963622475,5.087269801,-5.087269801,0,#DIV/0!,0,0,0.253631466,1,0.194094443,0,0.939684869,0.978446832,0.724496596,1,0,0,0.038735781,0.312029739,0.896030909,0.620527505,0.961238037,0.922476074,0,0,0,0,0,0,-0.500330115,120.0218426,0.500330115,59.97815739,0,0.950065979,0,0,0,5,4,0% +5/16/2018 13:00,89.92991213,65.02348684,0.012122212,0.460790512,0.011558544,0.011301394,0,0.011301394,0.011210011,9.14E-05,0.159763451,0.156475748,0.003287703,0.000348533,0.002939171,1.569573063,1.134873936,-814.4029336,814.4029336,0,0.953501199,8.71E-05,0.002802503,1,0.992795454,0,0.001227893,0.961238037,1,0.721020607,0.996524011,0.010775489,0.000251991,0.115824807,0.308079505,0.724496596,0.448993192,0.961861643,0.92309968,6.31E-05,0.002694837,0.010838617,0.002946828,0,0.001127337,-0.339581097,109.8513543,0.339581097,70.14864568,0,0.902759767,0.010838617,0.003964543,0.013433331,5,5,24% +5/16/2018 14:00,79.31239568,73.88363136,111.1632386,371.5947592,42.24949407,41.81351139,0,41.81351139,40.97551594,0.837995448,88.07047544,59.8436831,28.22679234,1.27397813,26.95281421,1.384262442,1.28951263,-5.286466195,5.286466195,0.565807348,0.380067139,0.612431968,19.69791731,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.3872245,0.922992819,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.443704876,18.93438736,39.83092938,19.85738018,0,59.8436831,-0.161045552,99.26758899,0.161045552,80.73241101,0,0.739528836,39.83092938,64.11350947,81.79193905,5,6,105% +5/16/2018 15:00,67.77040815,82.39394,318.5645962,646.9707664,73.80331095,103.9226106,29.94326729,73.97934331,71.57786882,2.401474488,79.46511668,0,79.46511668,2.22544213,77.23967455,1.182816758,1.438045537,-2.389789084,2.389789084,0.938831692,0.231674555,2.28861199,73.60962864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80337011,1.612325248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658091596,70.75637493,70.4614617,72.36870018,29.94326729,0,0.046282257,87.34727439,-0.046282257,92.65272561,0,0,70.4614617,72.36870018,117.8253286,5,7,67% +5/16/2018 16:00,55.96736975,91.27124981,525.8656072,773.6597792,92.87534251,296.5708778,202.5318725,94.03900534,90.07480826,3.964197074,130.302739,0,130.302739,2.80053425,127.5022047,0.976814876,1.592983822,-1.379863346,1.379863346,0.766124219,0.176614217,3.200811672,102.9491061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58333186,2.028977531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.31897716,98.95859663,88.90230902,100.9875742,202.5318725,0,0.261784156,74.82404597,-0.261784156,105.175954,0.859002956,0,262.8777861,100.9875742,328.9721337,5,8,25% +5/16/2018 17:00,44.21250221,101.6109749,708.3364789,840.0594533,106.216754,503.5356166,395.1819501,108.3536665,103.0139269,5.33973958,174.9472072,0,174.9472072,3.20282703,171.7443801,0.771653734,1.773446068,-0.828532272,0.828532272,0.671841053,0.149952399,3.850215348,123.8361606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02090489,2.32043728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789467913,119.0360279,101.8103728,121.3564652,395.1819501,0,0.470421407,61.93834554,-0.470421407,118.0616545,0.94371232,0,474.7484477,121.3564652,554.173827,5,9,17% +5/16/2018 18:00,32.98445627,115.5778238,850.9904868,876.7817004,115.5299586,695.2985446,576.8371148,118.4614299,112.0463041,6.41512575,209.8161505,0,209.8161505,3.483654512,206.332496,0.575687364,2.017213567,-0.454276317,0.454276317,0.607839515,0.135759401,4.240904835,136.4020775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7031694,2.523895835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.072521117,131.1148652,110.7756905,133.6387611,576.8371148,0,0.657902776,48.85987796,-0.657902776,131.140122,0.974000929,0,672.615576,133.6387611,760.0794723,5,10,13% +5/16/2018 19:00,23.43564642,138.0971952,943.2084963,895.8963376,121.2170095,851.6311295,726.958956,124.6721735,117.5618695,7.110304058,232.3469601,0,232.3469601,3.655140081,228.69182,0.409029192,2.410250743,-0.161701498,0.161701498,0.557806274,0.128515604,4.370242218,140.5620124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0049406,2.648136546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16622561,135.1135528,116.1711662,137.7616894,726.958956,0,0.811431999,35.76392155,-0.811431999,144.2360785,0.988380542,0,834.6832531,137.7616894,924.8455236,5,11,11% +5/16/2018 20:00,18.65482312,176.0357909,978.3534338,902.4335699,123.3312131,957.7177052,830.7301418,126.9875634,119.612322,7.375241442,240.9320081,0,240.9320081,3.718891119,237.213117,0.325588085,3.072404152,0.093258628,-0.093258628,0.514205525,0.126059979,4.244044087,136.5030466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9759136,2.694323956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074795494,131.2119206,118.0507091,133.9062445,830.7301418,0,0.92054437,22.99420476,-0.92054437,157.0057952,0.995684313,0,945.1956794,133.9062445,1032.834638,5,12,9% +5/16/2018 21:00,22.08125447,216.3616417,953.9349138,897.9315937,121.865102,1003.388903,878.0073195,125.3815839,118.1904196,7.191164324,234.9672466,0,234.9672466,3.67468246,231.2925641,0.385390593,3.776223024,0.337746474,-0.337746474,0.472395641,0.127749913,3.881769301,124.8510442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6091269,2.662294933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.812328645,120.0115726,116.4214555,122.6738676,878.0073195,0,0.977810922,12.09243037,-0.977810922,167.9075696,0.99886537,0,993.4325613,122.6738676,1073.720154,5,13,8% +5/16/2018 22:00,31.0733535,241.2821261,871.7061789,881.3461407,116.8268498,983.0151975,863.1398189,119.8753786,113.3040892,6.571289386,214.8780159,0,214.8780159,3.522760565,211.3552553,0.542332328,4.211167526,0.595642339,-0.595642339,0.428292851,0.134020904,3.317933113,106.7161342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9122003,2.552228038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403831246,102.5796074,111.3160315,105.1318354,863.1398189,0,0.979342598,11.66610681,-0.979342598,168.3338932,0.998945343,0,973.5455343,105.1318354,1042.352218,5,14,7% +5/16/2018 23:00,42.11229386,256.3146975,737.5926504,848.4452172,108.1888622,895.3464828,784.859629,110.4868537,104.9265688,5.560284959,182.100171,0,182.100171,3.262293368,178.8378776,0.734998183,4.473535392,0.898474638,-0.898474638,0.376505477,0.146678335,2.601983254,83.68872572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.859409,2.36352044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88512801,80.44478641,102.744537,82.80830685,784.859629,0,0.925056342,22.32314758,-0.925056342,157.6768524,0.995949238,0,884.4248866,82.80830685,938.6212673,5,15,6% +5/16/2018 0:00,53.80910285,267.1046415,561.5156584,788.9556515,95.65513349,742.9115363,645.9078158,97.00372051,92.77077829,4.232942218,139.0303276,0,139.0303276,2.884355205,136.1459724,0.939146012,4.661855442,1.306328415,-1.306328415,0.306758374,0.170351676,1.798379244,57.84205838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.1748008,2.089705527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302919641,55.59998665,90.47772044,57.68969217,645.9078158,0,0.818687102,35.04641725,-0.818687102,144.9535828,0.988926606,0,729.2331445,57.68969217,766.9898942,5,16,5% +5/16/2018 1:00,65.61681045,276.1535158,357.5611281,677.3914251,77.90873558,530.4542047,452.1992581,78.25494657,75.55949975,2.695446818,89.04407103,0,89.04407103,2.34923583,86.6948352,1.145229387,4.819788092,1.9803283,-1.9803283,0.191497605,0.217889277,0.991012309,31.87436244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63066521,1.702013362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717985044,30.63884957,73.34865025,32.34086294,452.1992581,0,0.667559761,48.12099575,-0.667559761,131.8790042,0.975100339,0,514.2883,32.34086294,535.454748,5,17,4% +5/16/2018 2:00,77.21458622,284.6787405,147.4205253,441.4384262,49.73009596,262.2222656,212.8803973,49.34186827,48.23055008,1.11131819,37.24335901,0,37.24335901,1.499545878,35.74381313,1.34764876,4.968581332,3.623880008,-3.623880008,0,0.337334953,0.374886469,12.05763752,0.082203617,1,0.269246719,0,0.929059004,0.967820967,0.724496596,1,46.52485705,1.086415884,0.013534061,0.312029739,0.962336952,0.686833548,0.961238037,0.922476074,0.265974799,11.59025982,46.79083185,12.6766757,195.3808586,0,0.482242561,61.16803005,-0.482242561,118.8319699,0.946317737,0,231.6832039,12.6766757,239.9798346,5,18,4% +5/16/2018 3:00,88.15319094,293.4382398,2.752872179,15.47596808,2.25412324,6.51697879,4.31007337,2.206905421,2.186153107,0.020752313,0.735435864,0,0.735435864,0.067970133,0.667465731,1.538563428,5.121463436,22.51936627,-22.51936627,0,0.818825973,0.016992533,0.546538277,0.768565917,1,0.044377069,0,0.957088411,0.995850374,0.724496596,1,2.111953432,0.04924413,0.096264431,0.312029739,0.763520502,0.488017098,0.961238037,0.922476074,0.011890689,0.52535338,2.12384412,0.57459751,0.997497878,0,0.278501051,73.82923691,-0.278501051,106.1707631,0.870467464,0,2.992133568,0.57459751,3.368196147,5,19,13% +5/16/2018 4:00,98.89250616,303.0429613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725999838,5.28909745,-3.842573276,3.842573276,0.812727579,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.057897579,86.68085695,-0.057897579,93.31914305,0,0,0,0,0,5,20,0% +5/16/2018 5:00,108.1514477,314.065322,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887598854,5.481473936,-1.334004738,1.334004738,0.758281935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150604762,98.66197503,0.150604762,81.33802497,0,0.718005186,0,0,0,5,21,0% +5/16/2018 6:00,115.6839494,326.9955218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019065808,5.707148494,-0.467907405,0.467907405,0.610170568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.337909331,109.7495503,0.337909331,70.25044971,0,0.902031313,0,0,0,5,22,0% +5/16/2018 7:00,120.790844,341.9929515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108197934,5.968903023,0.058359411,-0.058359411,0.520173643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491251593,119.4228784,0.491251593,60.57712157,0,0.94821916,0,0,0,5,23,0% +5/17/2018 8:00,122.7978778,358.4891573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143227281,6.256816128,0.492122001,-0.492122001,0.445995871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600182673,126.8829817,0.600182673,53.11701826,0,0.96669203,0,0,0,5,0,0% +5/17/2018 9:00,121.3786782,15.12159862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118457576,0.263921684,0.943304208,-0.943304208,0.368839169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657280739,131.0928147,0.657280739,48.90718527,0,0.973929005,0,0,0,5,1,0% +5/17/2018 10:00,116.7680257,30.44348439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03798651,0.531339038,1.528433038,-1.528433038,0.268776246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658656168,131.1974649,0.658656168,48.80253509,0,0.974087859,0,0,0,5,2,0% +5/17/2018 11:00,109.6047033,43.73222502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912962948,0.763271316,2.517671804,-2.517671804,0.099606454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604216113,127.172455,0.604216113,52.82754497,0,0.967248152,0,0,0,5,3,0% +5/17/2018 12:00,100.600749,55.04814537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755814301,0.960771384,5.16216606,-5.16216606,0,#DIV/0!,0,0,0.260698815,1,0.191347106,0,0.940050059,0.978812022,0.724496596,1,0,0,0.03969636,0.312029739,0.893602554,0.61809915,0.961238037,0.922476074,0,0,0,0,0,0,-0.497670515,119.8460018,0.497670515,60.15399819,0,0.949531922,0,0,0,5,4,0% +5/17/2018 13:00,89.81048423,64.84735804,0.04068495,0.655554009,0.038516595,0.037661878,0,0.037661878,0.037355177,0.0003067,0.232293772,0.221267817,0.011025955,0.001161417,0.009864537,1.567488653,1.131799909,-301.1044255,301.1044255,0,0.946703753,0.000290354,0.009338794,1,0.980400628,0,0.003321095,0.961238037,1,0.715122146,0.99062555,0.035907217,0.000836827,0.115824807,0.301376877,0.724496596,0.448993192,0.962912466,0.924150503,0.000210361,0.008985347,0.036117578,0.009822173,0,0.00433671,-0.337527975,109.7263363,0.337527975,70.27366366,0,0.901864131,0.036117578,0.013733297,0.045105746,5,5,25% +5/17/2018 14:00,79.18402181,73.694426,113.3361728,376.2056143,42.73921808,42.3048489,0,42.3048489,41.45047296,0.854375944,88.55040703,59.78199467,28.76841237,1.288745116,27.47966725,1.382021896,1.286210374,-5.223375421,5.223375421,0.576596505,0.3771013,0.62904498,20.23224888,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.84377125,0.933691449,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.455740947,19.4480072,40.2995122,20.38169865,0,59.78199467,-0.158907769,99.1435049,0.158907769,80.8564951,0,0.735352073,40.2995122,64.34251233,82.41039967,5,6,104% +5/17/2018 15:00,67.64993745,82.18716637,320.7542456,648.7894062,74.04271673,105.4567511,31.22871446,74.22803662,71.81005563,2.41798099,80.0032415,0,80.0032415,2.232661098,77.77058041,1.180714147,1.434436656,-2.377382624,2.377382624,0.936710063,0.230839397,2.30027337,73.98469872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.0265569,1.617555365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666540226,71.11690655,70.69309713,72.73446192,31.22871446,0,0.048133823,87.24106904,-0.048133823,92.75893096,0,0,70.69309713,72.73446192,118.2963478,5,7,67% +5/17/2018 16:00,55.84955197,91.03845488,527.8336326,774.5404141,93.03152917,298.1702342,203.964916,94.2053182,90.22628532,3.979032881,130.7846191,0,130.7846191,2.805243854,127.9793753,0.974758568,1.588920784,-1.375925823,1.375925823,0.765450863,0.176251613,3.210246035,103.2525476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.72893737,2.032389623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.325812324,99.25027618,89.0547497,101.2826658,203.964916,0,0.263336699,74.73185741,-0.263336699,105.2681426,0.860129009,0,264.4908908,101.2826658,330.7783699,5,8,25% +5/17/2018 17:00,44.0892189,101.3394984,710.084457,840.5746724,106.3356195,504.9734234,396.4912986,108.4821248,103.1292082,5.352916578,175.3746089,0,175.3746089,3.206411265,172.1681977,0.769502034,1.76870791,-0.827369369,0.827369369,0.671642185,0.149750665,3.858457134,124.1012448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.13171768,2.323034046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.795439059,119.2908369,101.9271567,121.613871,396.4912986,0,0.471690751,61.85589707,-0.471690751,118.1441029,0.943998346,0,476.2142866,121.613871,555.8081329,5,9,17% +5/17/2018 18:00,32.8423114,115.2556083,852.568875,877.1354447,115.6292011,696.5361917,577.9666133,118.5695784,112.1425541,6.427024306,210.2018415,0,210.2018415,3.48664704,206.7151944,0.573206468,2.011589846,-0.454397827,0.454397827,0.607860295,0.135624469,4.248546074,136.647846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7956885,2.526063912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.078057168,131.3511072,110.8737457,133.8771712,577.9666133,0,0.65892516,48.78204918,-0.65892516,131.2179508,0.974118848,0,673.8819175,133.8771712,761.5018484,5,10,13% +5/17/2018 19:00,23.25328798,137.7633073,944.6877831,896.1791707,121.3065406,852.7013207,727.9311643,124.7701564,117.6487008,7.121455546,232.70833,0,232.70833,3.657839772,229.0504902,0.405846437,2.404423301,-0.162613651,0.162613651,0.557962262,0.128409134,4.377729248,140.802821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0884062,2.650092463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171649938,135.3450272,116.2600562,137.9951197,727.9311643,0,0.812260749,35.68259554,-0.812260749,144.3174045,0.988443412,0,835.7788202,137.9951197,926.0938661,5,11,11% +5/17/2018 20:00,18.43068477,175.9713265,979.8134106,902.6971308,123.4184776,958.6893563,831.6061538,127.0832025,119.6969551,7.386247364,241.2886278,0,241.2886278,3.721522464,237.5671053,0.321676133,3.071279037,0.091696001,-0.091696001,0.51447275,0.125961205,4.251748135,136.7508353,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0572661,2.696230357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.08037705,131.4501045,118.1376432,134.1463348,831.6061538,0,0.921246036,22.89107089,-0.921246036,157.1089291,0.995725682,0,946.1892481,134.1463348,1033.985341,5,12,9% +5/17/2018 21:00,21.8826346,216.6431949,955.457154,898.2175227,121.9568706,1004.352542,878.8704809,125.4820606,118.279421,7.202639614,235.3390985,0,235.3390985,3.677449622,231.6616489,0.381924023,3.781137053,0.335479396,-0.335479396,0.472783334,0.127642428,3.889991153,125.1154872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6946785,2.664299733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818285349,120.2657653,116.5129638,122.9300651,878.8704809,0,0.978460627,11.91342915,-0.978460627,168.0865709,0.998899323,0,994.4160926,122.9300651,1074.871362,5,13,8% +5/17/2018 22:00,30.91559505,241.5926269,873.3670622,881.704889,116.9303109,984.0756277,864.0873873,119.9882404,113.4044306,6.583809827,215.283836,0,215.283836,3.525880301,211.7579557,0.539578924,4.216586788,0.592421787,-0.592421787,0.428843597,0.133884498,3.326881968,107.0039602,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0086522,2.554488275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.41031466,102.8562766,111.4189669,105.4107649,864.0873873,0,0.980018823,11.47292021,-0.980018823,168.5270798,0.998980572,0,974.6254791,105.4107649,1043.614717,5,14,7% +5/17/2018 23:00,41.97571935,256.580538,739.4562369,848.9627693,108.3132707,896.6214032,785.9998438,110.6215594,105.0472259,5.574333461,182.5557705,0,182.5557705,3.266044744,179.2897258,0.732614509,4.478175185,0.893709958,-0.893709958,0.377320286,0.146476918,2.611734046,84.00234469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9753892,2.366238299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.892192426,80.7462489,102.8675816,83.1124872,785.9998438,0,0.925835469,22.20532432,-0.925835469,157.7946757,0.995994724,0,885.7192792,83.1124872,940.1147398,5,15,6% +5/17/2018 0:00,53.67976916,267.3316528,563.6242563,789.8187444,95.81642204,744.5415011,647.36546,97.17604111,92.92720339,4.24883772,139.546445,0,139.546445,2.889218649,136.6572264,0.936888714,4.665817536,1.298564227,-1.298564227,0.308086128,0.17000053,1.808780577,58.17660101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.32516255,2.093229076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310455371,55.92156175,90.63561792,58.01479082,647.36546,0,0.819638005,34.95142693,-0.819638005,145.0485731,0.98899746,0,730.8784137,58.01479082,768.847934,5,16,5% +5/17/2018 1:00,65.48633369,276.3533192,359.9122557,679.1009402,78.1462966,532.6439596,454.1408915,78.50306804,75.78989743,2.713170611,89.62129248,0,89.62129248,2.356399172,87.26489331,1.142952138,4.823275319,1.965012128,-1.965012128,0.194116825,0.217125967,1.001417676,32.2090348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.85213222,1.707203178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725523697,30.96054938,73.57765592,32.66775256,454.1408915,0,0.668738423,48.03022982,-0.668738423,131.9697702,0.97523235,0,516.470545,32.66775256,537.8509357,5,17,4% +5/17/2018 2:00,77.07758685,284.8596033,149.8346652,445.6092282,50.18244557,265.3325798,215.5338031,49.79877668,48.66925968,1.129516997,37.8423352,0,37.8423352,1.513185888,36.32914931,1.34525767,4.971737984,3.576302263,-3.576302263,0,0.334918795,0.378296472,12.16731492,0.075298462,1,0.272654832,0,0.928548542,0.967310505,0.724496596,1,46.93623439,1.096298024,0.012436156,0.312029739,0.965338887,0.689835483,0.961238037,0.922476074,0.268810083,11.69568591,47.20504448,12.79198393,199.3044393,0,0.483683437,61.07374925,-0.483683437,118.9262508,0.946626603,0,235.8719288,12.79198393,244.2440265,5,18,4% +5/17/2018 3:00,88.01519626,293.6046646,3.266643914,18.19110234,2.636605414,7.676314681,5.094587307,2.581727374,2.557102033,0.024625342,0.871539018,0,0.871539018,0.079503381,0.792035637,1.536154967,5.124368097,20.89485043,-20.89485043,0,0.807129728,0.019875845,0.639275508,0.752663577,1,0.047822193,0,0.956746543,0.995508506,0.724496596,1,2.471014094,0.057599929,0.094801855,0.312029739,0.766562012,0.491058608,0.961238037,0.922476074,0.013881688,0.614495934,2.484895782,0.672095864,1.260077001,0,0.280059296,73.73625631,-0.280059296,106.2637437,0.871466379,0,3.583010523,0.672095864,4.022883824,5,19,12% +5/17/2018 4:00,98.72769675,303.1954798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723123371,5.291759399,-3.902432066,3.902432066,0.802491123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059939457,86.56366236,-0.059939457,93.43633764,0,0,0,0,0,5,20,0% +5/17/2018 5:00,107.9683133,314.1993566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884402555,5.48381328,-1.342059696,1.342059696,0.759659414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148285804,98.52759946,0.148285804,81.47240054,0,0.712813307,0,0,0,5,21,0% +5/17/2018 6:00,115.4818912,327.0998106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015539228,5.708968678,-0.46844132,0.46844132,0.610261873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335350799,109.5938713,0.335350799,70.40612874,0,0.900902398,0,0,0,5,22,0% +5/17/2018 7:00,120.5737434,342.0504114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104408813,5.969905887,0.060561959,-0.060561959,0.519796985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488507564,119.2425352,0.488507564,60.75746477,0,0.94764744,0,0,0,5,23,0% +5/18/2018 8:00,122.5754788,358.4849432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139345688,6.256742577,0.49623354,-0.49623354,0.445292756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597320061,126.6782013,0.597320061,53.32179867,0,0.966292783,0,0,0,5,0,0% +5/18/2018 9:00,121.1638461,15.05520274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114708048,0.262762857,0.949741974,-0.949741974,0.367738247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654374687,130.8722524,0.654374687,49.1277476,0,0.973591176,0,0,0,5,1,0% +5/18/2018 10:00,116.570766,30.32957271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034543678,0.529350905,1.5390745,-1.5390745,0.266956449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655784873,130.97919,0.655784873,49.02080999,0,0.973755484,0,0,0,5,2,0% +5/18/2018 11:00,109.4289715,43.5887344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909895849,0.760766932,2.539164334,-2.539164334,0.095931015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601455448,126.9742077,0.601455448,53.02579229,0,0.966868323,0,0,0,5,3,0% +5/18/2018 12:00,100.4457117,54.88720824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753108389,0.957962501,5.236596043,-5.236596043,0,#DIV/0!,0,0,0.267590807,1,0.188691949,0,0.940401411,0.979163374,0.724496596,1,0,0,0.040627577,0.312029739,0.891255382,0.615751977,0.961238037,0.922476074,0,0,0,0,0,0,-0.495088817,119.6756072,0.495088817,60.32439277,0,0.94900802,0,0,0,5,4,0% +5/18/2018 13:00,89.69462252,64.67400384,0.079856995,0.904480653,0.075036278,0.073375653,0,0.073375653,0.072773658,0.000601996,0.325105545,0.303480672,0.021624874,0.002262621,0.019362253,1.565466484,1.128774307,-186.8110074,186.8110074,0,0.939633132,0.000565655,0.018193414,1,0.968230487,0,0.005352952,0.961238037,1,0.709429237,0.984932641,0.069952808,0.001624973,0.115824807,0.294908666,0.724496596,0.448993192,0.9639178,0.925155837,0.000409815,0.017514552,0.070362623,0.019139525,0,0.009641433,-0.335530308,109.6047889,0.335530308,70.39521109,0,0.900982165,0.070362623,0.027826284,0.08857437,5,5,26% +5/18/2018 14:00,79.06068326,73.50826546,115.43041,380.5929105,43.20558833,42.77294361,0,42.77294361,41.90278043,0.870163188,88.98668477,59.69643756,29.29024721,1.3028079,27.98743931,1.379869232,1.28296126,-5.164107918,5.164107918,0.586731845,0.374299878,0.645154707,20.75039309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.2785464,0.943879888,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467412389,19.94606712,40.74595878,20.88994701,0,59.69643756,-0.156851155,99.02417298,0.156851155,80.97582702,0,0.731226447,40.74595878,64.54156092,82.98711958,5,6,104% +5/18/2018 15:00,67.53454497,81.98368899,322.8508095,650.5176437,74.27088707,106.929278,32.46414645,74.46513157,72.03134579,2.433785775,80.51845789,0,80.51845789,2.239541275,78.27891661,1.178700169,1.430885306,-2.365633169,2.365633169,0.934700787,0.230047083,2.311421551,74.34326253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23926942,1.62254003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674617045,71.46157173,70.91388647,73.08411176,32.46414645,0,0.049905098,87.13946033,-0.049905098,92.86053967,0,0,70.91388647,73.08411176,118.7459759,5,7,67% +5/18/2018 16:00,55.73694683,90.80918691,529.7122791,775.3769421,93.18031194,299.69351,205.3297333,94.36377665,90.37058174,3.993194911,131.2446051,0,131.2446051,2.809730204,128.4348749,0.972793237,1.584919303,-1.372219654,1.372219654,0.764817071,0.175907404,3.21926378,103.5425893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.86764058,2.035639968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33234565,99.52907529,89.19998623,101.5647153,205.3297333,0,0.264812793,74.6441708,-0.264812793,105.3558292,0.861187369,0,266.0273591,101.5647153,332.4994339,5,8,25% +5/18/2018 17:00,43.97144976,101.0716002,711.7507284,841.0640844,106.4488027,506.3349597,397.7305035,108.6044562,103.2389786,5.365477635,175.7820286,0,175.7820286,3.209824156,172.5722045,0.767446575,1.764032203,-0.826310235,0.826310235,0.671461062,0.149559106,3.866347367,124.3550218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.23723307,2.325506674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801155506,119.534777,102.0383886,121.8602837,397.7305035,0,0.472889654,61.77796571,-0.472889654,118.2220343,0.944267088,0,477.6022131,121.8602837,557.3573315,5,9,17% +5/18/2018 18:00,32.70618308,114.9361127,854.07483,877.4720235,115.7238223,697.7031507,579.0304518,118.6726989,112.2343221,6.438376831,210.5698309,0,210.5698309,3.489500219,207.0803307,0.57083058,2.006013596,-0.454568267,0.454568267,0.607889442,0.135496116,4.255888766,136.8840123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8838995,2.52813103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.083376924,131.5781192,110.9672764,134.1062502,579.0304518,0,0.659884801,48.70891233,-0.659884801,131.2910877,0.974229199,0,675.0756496,134.1062502,762.8455082,5,10,13% +5/18/2018 19:00,23.07738109,137.4279712,946.104425,896.4493776,121.3922342,853.709201,728.8452558,124.8639452,117.7318105,7.132134791,233.0543952,0,233.0543952,3.660423751,229.3939714,0.402776283,2.398570581,-0.163544516,0.163544516,0.558121449,0.128307437,4.38496309,141.0354862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1682944,2.651964547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176890831,135.5686739,116.3451852,138.2206384,728.8452558,0,0.813035598,35.60641321,-0.813035598,144.3935868,0.988502078,0,836.8102349,138.2206384,927.2728783,5,11,11% +5/18/2018 20:00,18.21219568,175.8996339,981.2202197,902.9505074,123.5025231,959.6082549,832.432936,127.1753189,119.7784664,7.396852485,241.6322592,0,241.6322592,3.724056749,237.9082024,0.317862779,3.070027765,0.090135808,-0.090135808,0.514739559,0.125866264,4.259236939,136.991701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1356179,2.698066437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085802663,131.6816337,118.2214206,134.3797002,832.432936,0,0.921903171,22.79408224,-0.921903171,157.2059178,0.995764369,0,947.128478,134.3797002,1035.077304,5,12,9% +5/18/2018 21:00,21.68820007,216.9171894,956.9346816,898.4943703,122.0458955,1005.272956,879.693417,125.5795393,118.3657614,7.213777841,235.7000266,0,235.7000266,3.680134051,232.0198926,0.3785305,3.78591916,0.333234079,-0.333234079,0.473167306,0.127538376,3.89802756,125.3739657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7776722,2.666244592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824107698,120.5142247,116.6017799,123.1804693,879.693417,0,0.979075046,11.7416764,-0.979075046,168.2583236,0.998931392,0,995.3551492,123.1804693,1075.974303,5,13,8% +5/18/2018 22:00,30.76073546,241.8952324,874.9900708,882.0544448,117.0313402,985.1012404,865.0027821,120.0984582,113.5024135,6.596044751,215.6803996,0,215.6803996,3.528926706,212.1514729,0.536876114,4.221868251,0.589246387,-0.589246387,0.429386623,0.133751621,3.335666576,107.2865034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1028371,2.556695386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.416679079,103.1278679,111.5195162,105.6845632,865.0027821,0,0.980668242,11.28432102,-0.980668242,168.715679,0.999014358,0,975.6697152,105.6845632,1044.838148,5,14,7% +5/18/2018 23:00,41.8412244,256.8392053,741.2867339,849.4692589,108.4353337,897.8676437,787.1139029,110.7537408,105.1656083,5.588132521,183.0032763,0,183.0032763,3.269725394,179.733551,0.730267129,4.48268978,0.889027283,-0.889027283,0.37812107,0.146279879,2.621333982,84.31111163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0891829,2.368904918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899147546,81.04304743,102.9883304,83.41195235,787.1139029,0,0.926594923,22.08990201,-0.926594923,157.910098,0.996038988,0,886.9844655,83.41195235,941.5759201,5,15,6% +5/18/2018 0:00,53.55211362,267.5522342,565.7023308,790.6650181,95.97505158,746.1451281,648.7995753,97.34555279,93.08104966,4.264503123,140.0550815,0,140.0550815,2.894001915,137.1610796,0.934660704,4.669667408,1.290957513,-1.290957513,0.309386953,0.169656454,1.819040496,58.50659528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.47304545,2.096694536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317888647,56.23876479,90.79093409,58.33545932,648.7995753,0,0.82057453,34.85765221,-0.82057453,145.1423478,0.989067083,0,732.4972373,58.33545932,770.6766287,5,16,5% +5/18/2018 1:00,65.35741771,276.5471905,362.2337899,680.7760494,78.37984378,534.8029114,456.0558377,78.74707362,76.0164023,2.730671316,90.19121764,0,90.19121764,2.363441481,87.82777616,1.14070213,4.826659012,1.950072441,-1.950072441,0.196671662,0.216379162,1.011700545,32.53976721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.06985732,1.712305307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732973601,31.27846195,73.80283092,32.99076726,456.0558377,0,0.66990582,47.94020362,-0.66990582,132.0597964,0.975362643,0,518.6226581,32.99076726,540.2144554,5,17,4% +5/18/2018 2:00,76.94222852,285.0348002,152.2243747,449.685683,50.62535959,268.3951664,218.1488165,50.24634984,49.09881821,1.147531637,38.43510343,0,38.43510343,1.526541379,36.90856205,1.342895221,4.974795747,3.530383332,-3.530383332,0,0.332570652,0.381635345,12.27470455,0.068534803,1,0.276024838,0,0.928041394,0.966803357,0.724496596,1,47.33846913,1.105974033,0.011354029,0.312029739,0.968306913,0.692803509,0.961238037,0.922476074,0.271604181,11.79891291,47.61007331,12.90488694,203.1980303,0,0.485113991,60.98005892,-0.485113991,119.0199411,0.946931441,0,240.024677,12.90488694,248.4706674,5,18,4% +5/18/2018 3:00,87.87835509,293.7655164,3.828581657,21.13991978,3.045955883,8.93635707,5.95338653,2.98297054,2.954109075,0.028861466,1.020130757,0,1.020130757,0.091846808,0.928283949,1.533766638,5.12717549,19.49372432,-19.49372432,0,0.795583366,0.022961702,0.738527269,0.737082156,1,0.051253633,0,0.956403228,0.995165191,0.724496596,1,2.855425405,0.0665427,0.093352647,0.312029739,0.769592652,0.494089248,0.961238037,0.922476074,0.016007932,0.709900502,2.871433337,0.776443202,1.565251549,0,0.281618218,73.64319124,-0.281618218,106.3568088,0.872454668,0,4.237044357,0.776443202,4.745210904,5,19,12% +5/18/2018 4:00,98.56530641,303.3424244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720289125,5.294324066,-3.963917824,3.963917824,0.791976439,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061964647,86.44741136,-0.061964647,93.55258864,0,0,0,0,0,5,20,0% +5/18/2018 5:00,107.7882615,314.3278594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881260058,5.486056077,-1.350275485,1.350275485,0.761064397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.145989764,98.3945984,0.145989764,81.6054016,0,0.707510234,0,0,0,5,21,0% +5/18/2018 6:00,115.2837467,327.1988989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012080954,5.710698095,-0.469073466,0.469073466,0.610369977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.332823043,109.4402126,0.332823043,70.55978743,0,0.899770017,0,0,0,5,22,0% +5/18/2018 7:00,120.3614389,342.1036137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100703401,5.970834442,0.062661704,-0.062661704,0.519437907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.485803258,119.0651131,0.485803258,60.93488688,0,0.947077677,0,0,0,5,23,0% +5/19/2018 8:00,122.3585834,358.4781293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135560149,6.256623652,0.500220566,-0.500220566,0.444610935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594506592,126.4774661,0.594506592,53.52253386,0,0.965896643,0,0,0,5,0,0% +5/19/2018 9:00,120.9548558,14.98813576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11106048,0.261592318,0.956014604,-0.956014604,0.366665564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651527019,130.6568318,0.651527019,49.34316824,0,0.973257212,0,0,0,5,1,0% +5/19/2018 10:00,116.3793354,30.21656193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031202583,0.527378494,1.549472739,-1.549472739,0.265178245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65298039,130.7666893,0.65298039,49.23331074,0,0.973428022,0,0,0,5,2,0% +5/19/2018 11:00,109.2588721,43.44715084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906927055,0.758295833,2.560245042,-2.560245042,0.092326001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59876863,126.7817581,0.59876863,53.21824193,0,0.966495291,0,0,0,5,3,0% +5/19/2018 12:00,100.296074,54.72876567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750496718,0.955197157,5.310413355,-5.310413355,0,#DIV/0!,0,0,0.274300315,1,0.186129609,0,0.940739,0.979500963,0.724496596,1,0,0,0.041528939,0.312029739,0.888989987,0.613486583,0.961238037,0.922476074,0,0,0,0,0,0,-0.492586123,119.5107021,0.492586123,60.48929789,0,0.948494907,0,0,0,5,4,0% +5/19/2018 13:00,89.58232988,64.50351322,0.130773049,1.2133622,0.121928058,0.1192373,0,0.1192373,0.118251477,0.000985822,0.440147673,0.404763652,0.035384021,0.003676581,0.03170744,1.563506608,1.125798685,-136.5463419,136.5463419,0,0.932363809,0.000919145,0.029562869,1,0.956295527,0,0.00732339,0.961238037,1,0.703939196,0.9794426,0.113667818,0.002632358,0.115824807,0.288671877,0.724496596,0.448993192,0.964878998,0.926117035,0.000665918,0.02847451,0.114333736,0.031106868,0,0.017689982,-0.33358848,109.486727,0.33358848,70.51327302,0,0.900114728,0.114333736,0.047029881,0.145113852,5,5,27% +5/19/2018 14:00,78.94238713,73.32525507,117.4448595,384.7617263,43.64911538,43.21828246,0,43.21828246,42.33293351,0.88534896,89.38243524,59.59038745,29.79204779,1.316181877,28.47586591,1.377804575,1.279767126,-5.108462313,5.108462313,0.596247804,0.371656244,0.660740204,21.25167624,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.6920259,0.953569289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478704028,20.42791955,41.17072993,21.38148884,0,59.59038745,-0.154876079,98.9096093,0.154876079,81.0903907,0,0.727161248,41.17072993,64.71330934,83.52429662,5,6,103% +5/19/2018 15:00,67.42422374,81.7836365,324.8544944,652.1574871,74.48799396,108.3396031,33.64880661,74.69079651,72.24190611,2.448890398,81.01082104,0,81.01082104,2.246087849,78.7647332,1.1767747,1.427393731,-2.354523375,2.354523375,0.932800901,0.229296486,2.322060939,74.68546183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44166801,1.627283001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.682325246,71.79050671,71.12399325,73.41778971,33.64880661,0,0.051596136,87.04244591,-0.051596136,92.95755409,0,0,71.12399325,73.41778971,119.1744683,5,7,68% +5/19/2018 16:00,55.62953715,90.58361172,531.5021363,776.1702244,93.32178284,301.140957,206.6264826,94.51447437,90.50778676,4.006687611,131.6828425,0,131.6828425,2.813996073,128.8688465,0.970918585,1.580982273,-1.368740527,1.368740527,0.764222105,0.1755812,3.227868758,103.819355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.99952727,2.038730576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.338579927,99.79511298,89.3381072,101.8338436,206.6264826,0,0.266212844,74.56096738,-0.266212844,105.4390326,0.862180362,0,267.4874027,101.8338436,334.1356166,5,8,25% +5/19/2018 17:00,43.85917217,100.8075109,713.3360885,841.5281772,106.5563762,507.6209222,398.9001851,108.7207371,103.3433083,5.377428749,176.1696613,0,176.1696613,3.213067894,172.9565934,0.765486962,1.759422977,-0.825352976,0.825352976,0.671297361,0.149377521,3.873889703,124.5976093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33751881,2.327856752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806619903,119.7679613,102.1441387,122.0958181,398.9001851,0,0.47401881,61.70451594,-0.47401881,118.2954841,0.944518954,0,478.9129243,122.0958181,558.8221953,5,9,17% +5/19/2018 18:00,32.57605697,114.6196829,855.5092304,877.7917671,115.8138871,698.8003886,580.0295276,118.770861,112.3216711,6.449189947,210.9203337,0,210.9203337,3.492216003,207.4281177,0.568559451,2.000490854,-0.454786381,0.454786381,0.607926741,0.135374211,4.262936155,137.1106805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9678626,2.530098607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.088482733,131.7960013,111.0563453,134.3261,580.0295276,0,0.660782602,48.64041421,-0.660782602,131.3595858,0.974332148,0,676.197761,134.3261,764.1115069,5,10,13% +5/19/2018 19:00,22.90795762,137.0916232,947.4592686,896.7072054,121.4741477,854.6558703,729.7022682,124.9536021,117.8112539,7.142348175,233.3853627,0,233.3853627,3.662893744,229.722469,0.399819285,2.392700203,-0.164492994,0.164492994,0.558283648,0.128210417,4.391946212,141.2600874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.2446584,2.653754049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18195008,135.7845691,116.4266085,138.4383231,729.7022682,0,0.813757561,35.53530308,-0.813757561,144.4646969,0.988556638,0,837.7786299,138.4383231,928.3837436,5,11,11% +5/19/2018 20:00,17.99943923,175.8206916,982.574566,903.1938933,123.5833967,960.4755021,833.2115387,127.2639634,119.8569013,7.40706212,241.9630748,0,241.9630748,3.726495384,238.2365794,0.314149478,3.068649962,0.088579167,-0.088579167,0.51500576,0.125775082,4.266511855,137.2256873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2110125,2.69983322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.091073315,131.9065503,118.3020858,134.6063835,833.2115387,0,0.922516798,22.70316091,-0.922516798,157.2968391,0.995800445,0,948.0145068,134.6063835,1036.111693,5,12,9% +5/19/2018 21:00,21.49799412,217.1832934,958.3679617,898.7622869,122.1322091,1006.151122,880.4770675,125.6740549,118.4494724,7.224582512,236.0501446,0,236.0501446,3.682736725,232.3674079,0.37521078,3.790563551,0.33101177,-0.33101177,0.473547343,0.1274377,3.905878487,125.6264785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8581383,2.668130221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.829795668,120.7569496,116.687934,123.4250798,880.4770675,0,0.979655111,11.57722212,-0.979655111,168.4227779,0.99896163,0,996.2507405,123.4250798,1077.029987,5,13,8% +5/19/2018 22:00,30.60879891,242.1897162,876.5753494,882.3949133,117.1299519,986.0927647,865.8867178,120.206047,113.5980517,6.607995251,216.0677423,0,216.0677423,3.531900214,212.5358421,0.534224321,4.227007962,0.586117601,-0.586117601,0.429921677,0.133622229,3.344285335,107.5637123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1947682,2.558849682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.422923341,103.3943316,111.6176916,105.9531813,865.8867178,0,0.981291602,11.10031614,-0.981291602,168.8996839,0.999046746,0,976.6789996,105.9531813,1046.023238,5,14,7% +5/19/2018 23:00,41.70884142,257.0905613,743.0839075,849.9647323,108.5550437,899.0855855,788.2021965,110.883389,105.2817086,5.601680375,183.4426316,0,183.4426316,3.273335094,180.1692965,0.72795661,4.48707677,0.884428364,-0.884428364,0.378907532,0.146087195,2.630779827,84.61492248,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2007829,2.371520133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.905991029,81.33508198,103.106774,83.70660211,788.2021965,0,0.927335178,21.97684358,-0.927335178,158.0231564,0.996082063,0,888.2208437,83.70660211,943.0051406,5,15,6% +5/19/2018 0:00,53.4261827,267.7662929,567.7492369,791.4944333,96.13098976,747.7223744,650.2101551,97.5122193,93.23228574,4.279933566,140.5560797,0,140.5560797,2.898704027,137.6573757,0.932462795,4.673403437,1.283510194,-1.283510194,0.310660519,0.169319452,1.829154166,58.83188567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.61841931,2.1001012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325215967,56.55144628,90.94363528,58.65154748,650.2101551,0,0.821496814,34.76508753,-0.821496814,145.2349125,0.989135491,0,734.0895765,58.65154748,772.4758413,5,16,5% +5/19/2018 1:00,65.23012335,276.735063,364.524663,682.4166258,78.60932174,536.9305728,457.9436713,78.98690154,76.23896065,2.747940886,90.75358596,0,90.75358596,2.370361088,88.38322487,1.138480424,4.829938005,1.935509212,-1.935509212,0.19916212,0.215648843,1.021854471,32.86635238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.28378887,1.717318539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.740330085,31.59238804,74.02411895,33.30970658,457.9436713,0,0.671061715,47.85093855,-0.671061715,132.1490615,0.975491205,0,520.7441425,33.30970658,542.5446793,5,17,4% +5/19/2018 2:00,76.80858605,285.2042835,154.5880087,453.6676436,51.05879682,271.4090801,220.7245447,50.68453541,49.51918571,1.165349708,39.02126358,0,39.02126358,1.539611111,37.48165247,1.34056272,4.977753788,3.486081045,-3.486081045,0,0.330289505,0.384902778,12.37979643,0.061914822,1,0.279354022,0,0.927538059,0.966300022,0.724496596,1,47.73154715,1.115443009,0.010288391,0.312029739,0.971238665,0.69573526,0.961238037,0.922476074,0.274356007,11.89993121,48.00590316,13.01537422,207.0584238,0,0.486533584,60.88700237,-0.486533584,119.1129976,0.947232171,0,244.1383035,13.01537422,252.6566056,5,18,3% +5/19/2018 3:00,87.74281712,293.9207654,4.43723351,24.3097136,3.479793404,10.29223598,6.883921441,3.408314534,3.374864794,0.03344974,1.180787247,0,1.180787247,0.10492861,1.075858637,1.531401054,5.129885096,18.27445353,-18.27445353,0,0.784225891,0.026232153,0.843716198,0.721832937,1,0.054666677,0,0.956058981,0.994820944,0.724496596,1,3.262958604,0.076020421,0.091918609,0.312029739,0.772608153,0.497104749,0.961238037,0.922476074,0.018256848,0.811012102,3.281215453,0.887032523,1.914880213,0,0.283175752,73.55016466,-0.283175752,106.4498353,0.87343121,0,4.953731593,0.887032523,5.534276639,5,19,12% +5/19/2018 4:00,98.40543185,303.483786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717498788,5.296791291,-4.027030567,4.027030567,0.781183525,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063971791,86.33218179,-0.063971791,93.66781821,0,0,0,0,0,5,20,0% +5/19/2018 5:00,107.6113951,314.4508468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878173158,5.488202612,-1.358645795,1.358645795,0.762495804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143718281,98.26306474,0.143718281,81.73693526,0,0.702097148,0,0,0,5,21,0% +5/19/2018 6:00,115.0896181,327.2928313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00869277,5.712337524,-0.469803536,0.469803536,0.610494826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.330327908,109.2886794,0.330327908,70.7113206,0,0.898635254,0,0,0,5,22,0% +5/19/2018 7:00,120.1540237,342.1526248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097083322,5.971689847,0.064656492,-0.064656492,0.519096778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.483140631,118.8907233,0.483140631,61.10927673,0,0.946510463,0,0,0,5,23,0% +5/20/2018 8:00,122.1472707,358.4687866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.131872045,6.256460592,0.504078992,-0.504078992,0.443951105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591744229,126.280882,0.591744229,53.71911805,0,0.965504034,0,0,0,5,0,0% +5/20/2018 9:00,120.7517728,14.92046131,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107516012,0.260411176,0.962115247,-0.962115247,0.365622292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648739608,130.446641,0.648739608,49.553359,0,0.972927474,0,0,0,5,1,0% +5/20/2018 10:00,116.1937874,30.10451223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02796416,0.525422858,1.559614981,-1.559614981,0.26344382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650244405,130.5600315,0.650244405,49.4399685,0,0.973105836,0,0,0,5,2,0% +5/20/2018 11:00,109.0944469,43.30753958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904057295,0.755859157,2.580882306,-2.580882306,0.088796821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596157074,126.5951613,0.596157074,53.4048387,0,0.966129486,0,0,0,5,3,0% +5/20/2018 12:00,100.1518653,54.57289289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747979802,0.952476663,5.383464039,-5.383464039,0,#DIV/0!,0,0,0.280820206,1,0.18366072,0,0.9410629,0.979824863,0.724496596,1,0,0,0.042399953,0.312029739,0.886806962,0.611303558,0.961238037,0.922476074,0,0,0,0,0,0,-0.490163513,119.3513293,0.490163513,60.64867065,0,0.947993223,0,0,0,5,4,0% +5/20/2018 13:00,89.47366439,64.33597401,0.194224646,1.586368132,0.179652014,0.175698991,0,0.175698991,0.174234843,0.001464147,0.578713494,0.526204309,0.052509185,0.005417171,0.047092014,1.561610037,1.122874574,-108.3233615,108.3233615,0,0.924970224,0.001354293,0.043558711,1,0.944612268,0,0.009231357,0.961238037,1,0.698652113,0.974155517,0.167481159,0.003867381,0.115824807,0.28266663,0.724496596,0.448993192,0.965796899,0.927034935,0.000981181,0.04197535,0.168462339,0.045842731,0,0.029145263,-0.331703782,109.3722208,0.331703782,70.6277792,0,0.8992631,0.168462339,0.072051991,0.215618926,5,5,28% +5/20/2018 14:00,78.82913998,73.14549871,119.3785212,388.7169241,44.07028323,43.6413273,0,43.6413273,42.74140158,0.899925718,89.74062744,59.46704122,30.27358621,1.328881641,28.94470457,1.375828039,1.276629786,-5.056255338,5.056255338,0.605175723,0.369164258,0.67578188,21.73546826,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.08466095,0.962770225,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.489601672,20.89295884,41.57426262,21.85572906,0,59.46704122,-0.152982897,98.79982959,0.152982897,81.20017041,0,0.72316608,41.57426262,64.86027614,84.02401615,5,6,102% +5/20/2018 15:00,67.31896627,81.58713568,326.7655164,653.710835,74.69420067,109.6871817,34.7819903,74.90519142,72.44189493,2.463296489,81.48038836,0,81.48038836,2.252305742,79.22808262,1.17493761,1.423964145,-2.344037084,2.344037084,0.931007639,0.228586546,2.332195822,75.0114345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.63390487,1.631787843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.689667934,72.10384404,71.3235728,73.73563188,34.7819903,0,0.053206997,86.95002341,-0.053206997,93.04997659,0,0,71.3235728,73.73563188,119.5820692,5,7,68% +5/20/2018 16:00,55.52730505,90.36189275,533.2037928,776.9210816,93.45603075,302.5128362,207.8553342,94.65750203,90.63798661,4.019515416,132.0994769,0,132.0994769,2.818044143,129.2814328,0.969134298,1.577112547,-1.365484392,1.365484392,0.763665273,0.175272629,3.236064762,104.0829667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.12468031,2.041663389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.344517904,100.0485065,89.46919822,102.0901699,207.8553342,0,0.267537256,74.48222837,-0.267537256,105.5177716,0.863110141,0,268.871245,102.0901699,335.6872195,5,8,25% +5/20/2018 17:00,43.75236219,100.547459,714.8413278,841.9674201,106.6584111,508.8320041,400.0009618,108.8310424,103.4422665,5.388775879,176.5377007,0,176.5377007,3.216144622,173.3215561,0.763622776,1.754884213,-0.824495797,0.824495797,0.671150775,0.149205715,3.881087774,124.829124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.43264116,2.330085831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81183488,119.9905021,102.244476,122.3205879,400.0009618,0,0.475078907,61.63551221,-0.475078907,118.3644878,0.944754326,0,480.1471149,122.3205879,560.2034932,5,9,17% +5/20/2018 18:00,32.45191632,114.3066639,856.8729496,878.0949954,115.8994592,699.8288634,580.9647302,118.8641332,112.4046629,6.459470238,211.2535635,0,211.2535635,3.494796319,207.7587671,0.566392788,1.995027641,-0.455050961,0.455050961,0.607971987,0.135258628,4.26969147,137.3279546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0476375,2.531968037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093376935,132.0048535,111.1410144,134.5368216,580.9647302,0,0.661619453,48.57650129,-0.661619453,131.4234987,0.974427857,0,677.2492314,134.5368216,765.3008904,5,10,13% +5/20/2018 19:00,22.74504596,136.7547119,948.753157,896.9528949,121.5523377,855.5424177,730.5032294,125.0391883,117.8870862,7.152102052,233.7014387,0,233.7014387,3.665251462,230.0361872,0.396975941,2.386819991,-0.165458027,0.165458027,0.558448679,0.12811798,4.398681098,141.4767045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3175513,2.655462207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.186829482,135.9927897,116.5043808,138.6482519,730.5032294,0,0.81442764,35.46919252,-0.81442764,144.5308075,0.988607192,0,838.685127,138.6482519,929.4276348,5,11,11% +5/20/2018 20:00,17.79249781,175.7344874,983.8771553,903.4274784,123.6611448,961.2921898,833.9430032,127.3491866,119.932305,7.416881588,242.281247,0,242.281247,3.728839775,238.5524072,0.310537669,3.067145414,0.087027161,-0.087027161,0.515271169,0.125687586,4.27357428,137.4528392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2834934,2.701531724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.096190018,132.1248973,118.3796834,134.826429,833.9430032,0,0.923087933,22.61822482,-0.923087933,157.3817752,0.995833979,0,948.8484629,134.826429,1037.089664,5,12,9% +5/20/2018 21:00,21.31205849,217.4411677,959.7574667,899.0214208,122.2158442,1006.988009,881.2223667,125.7656428,118.5305856,7.235057187,236.3895681,0,236.3895681,3.685258632,232.7043095,0.371965591,3.795064305,0.328813674,-0.328813674,0.47392324,0.127340342,3.913543972,125.8730269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9361074,2.669957334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.835349286,120.9939412,116.7714567,123.6638986,881.2223667,0,0.980201746,11.42010797,-0.980201746,168.579892,0.998990093,0,997.1038707,123.6638986,1078.039419,5,13,8% +5/20/2018 22:00,30.45980805,242.4758499,878.1230573,882.7264002,117.2261612,987.0509324,866.7399099,120.3110224,113.6913599,6.619662527,216.4459031,0,216.4459031,3.534801279,212.9111018,0.53162394,4.232001938,0.58303684,-0.58303684,0.430448518,0.13349628,3.35273675,107.8355388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2844596,2.560951493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.429046362,103.6556217,111.713506,106.2165731,866.7399099,0,0.981889643,10.92090826,-0.981889643,169.0790917,0.99907778,0,977.6540914,106.2165731,1047.170714,5,14,7% +5/20/2018 23:00,41.57860128,257.3344679,744.847547,850.4492399,108.6723947,900.275622,789.2651255,111.0104965,105.395521,5.614975434,183.873785,0,183.873785,3.276873659,180.5969113,0.725683491,4.491333744,0.879914877,-0.879914877,0.379679383,0.145898842,2.640068483,84.91367758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3101837,2.374083811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912720629,81.62225674,103.2229044,83.99634055,789.2651255,0,0.928056712,21.8661098,-0.928056712,158.1338902,0.996123982,0,889.4288241,83.99634055,944.4027491,5,15,6% +5/20/2018 0:00,53.30202116,267.9737361,569.7643622,792.3069626,96.2842066,749.2732214,651.5972144,97.67600695,93.38088252,4.295124431,141.0492902,0,141.0492902,2.90332408,138.1459661,0.930295767,4.677024004,1.276224061,-1.276224061,0.311906522,0.168989521,1.839116912,59.15232182,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.76125619,2.103448413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.332433942,56.85946171,91.09369014,58.96291012,651.5972144,0,0.822405009,34.67372591,-0.822405009,145.3262741,0.989202705,0,735.6554172,58.96291012,774.2454626,5,16,5% +5/20/2018 1:00,65.10450944,276.9168701,366.7838476,684.0225737,78.83467922,539.026497,459.8040027,79.22249435,76.45752277,2.764971573,91.30814678,0,91.30814678,2.377156448,88.93099033,1.136288048,4.833111137,1.921322194,-1.921322194,0.201588243,0.214934981,1.031873176,33.18858839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49387909,1.722241754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747588604,31.90213355,74.2414677,33.62437531,459.8040027,0,0.67220589,47.76245444,-0.67220589,132.2375456,0.975618027,0,522.8345418,33.62437531,544.841023,5,17,4% +5/20/2018 2:00,76.67673198,285.3680056,156.9239721,457.5550727,51.48272555,274.373448,223.2601574,51.11329061,49.93033143,1.182959187,39.60042796,0,39.60042796,1.552394126,38.04803384,1.338261433,4.980611278,3.443354461,-3.443354461,0,0.328074321,0.388098532,12.48258286,0.055440543,1,0.282639707,0,0.927039034,0.965800997,0.724496596,1,48.11546437,1.12470426,0.009239935,0.312029739,0.974131812,0.698628407,0.961238037,0.922476074,0.277064499,11.99873344,48.39252887,13.1234377,210.8824931,0,0.487941607,60.79462108,-0.487941607,119.2053789,0.947528722,0,248.2097481,13.1234377,256.7987756,5,18,3% +5/20/2018 3:00,87.60872437,294.0703819,5.090670196,27.68519572,3.935546438,11.73805543,7.882804618,3.855250814,3.816875192,0.038375622,1.352963172,0,1.352963172,0.118671246,1.234291927,1.529060694,5.132496397,17.20517153,-17.20517153,0,0.773090042,0.029667811,0.954218798,0.706925691,1,0.058056743,0,0.955714318,0.994476281,0.724496596,1,3.691202489,0.085976914,0.090501446,0.312029739,0.775604366,0.500100962,0.961238037,0.922476074,0.020615017,0.917231404,3.711817506,1.003208318,2.310247516,0,0.284729958,73.45729244,-0.284729958,106.5427076,0.874395015,0,5.731886417,1.003208318,6.388466197,5,19,11% +5/20/2018 4:00,98.24816682,303.6195552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714753995,5.299160911,-4.091765818,4.091765818,0.770113145,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.065959577,86.2180489,-0.065959577,93.7819511,0,0,0,0,0,5,20,0% +5/20/2018 5:00,107.4378136,314.5683342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875143589,5.490253154,-1.367163943,1.367163943,0.763952493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141472948,98.13308839,0.141472948,81.86691161,0,0.696575543,0,0,0,5,21,0% +5/20/2018 6:00,114.899604,327.3816504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005376399,5.71388771,-0.470631205,0.470631205,0.610636366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.327867187,109.1393734,0.327867187,70.86062655,0,0.897499225,0,0,0,5,22,0% +5/20/2018 7:00,119.951588,342.1975078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093550153,5.972473203,0.066544138,-0.066544138,0.518773972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480521584,118.719473,0.480521584,61.28052696,0,0.945946401,0,0,0,5,23,0% +5/21/2018 8:00,121.9416173,358.4569823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128282717,6.256254567,0.507804686,-0.507804686,0.443313974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589034888,126.0885508,0.589034888,53.91144924,0,0.965115384,0,0,0,5,0,0% +5/21/2018 9:00,120.5546605,14.85223945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104075755,0.25922048,0.968036991,-0.968036991,0.364609614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64601428,130.2417653,0.64601428,49.75823466,0,0.97260233,0,0,0,5,1,0% +5/21/2018 10:00,116.0141743,29.99348076,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024829321,0.523484993,1.569488328,-1.569488328,0.261755378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647578563,130.3592837,0.647578563,49.64071631,0,0.972789291,0,0,0,5,2,0% +5/21/2018 11:00,108.9357372,43.16996311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901287288,0.753457994,2.601044004,-2.601044004,0.085348968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593622164,126.4144715,0.593622164,53.58552847,0,0.965771339,0,0,0,5,3,0% +5/21/2018 12:00,100.0131148,54.41966239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745558149,0.949802286,5.455586816,-5.455586816,0,#DIV/0!,0,0,0.287143361,1,0.181285918,0,0.94137318,0.980135143,0.724496596,1,0,0,0.043240133,0.312029739,0.884706902,0.609203498,0.961238037,0.922476074,0,0,0,0,0,0,-0.487822048,119.1975313,0.487822048,60.80246867,0,0.947503608,0,0,0,5,4,0% +5/21/2018 13:00,89.36871612,64.17147117,0.270611574,2.025716025,0.248292722,0.242845765,0,0.242845765,0.24080578,0.002039984,0.741339065,0.668239214,0.073099851,0.007486942,0.065612909,1.559778345,1.120003458,-90.28785819,90.28785819,0,0.917524402,0.001871735,0.060201445,1,0.933201013,0,0.011075234,0.961238037,1,0.693569664,0.969073068,0.231471676,0.0053305,0.115824807,0.276894821,0.724496596,0.448993192,0.966672049,0.927910086,0.001356066,0.058039177,0.232827742,0.063369678,0,0.044637703,-0.329878031,109.2613727,0.329878031,70.73862735,0,0.898428827,0.232827742,0.103473477,0.300549063,5,5,29% +5/21/2018 14:00,78.7209481,72.96909715,121.2304733,392.4631349,44.46954859,44.04251414,0,44.04251414,43.12862762,0.913886516,90.06407494,59.32942216,30.73465278,1.340920965,29.39373182,1.373939735,1.273550997,-5.007320252,5.007320252,0.613544115,0.366818238,0.690261393,22.20117917,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.45687735,0.971492675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.50009203,21.34061788,41.95696938,22.31211055,0,59.32942216,-0.151171962,98.69484958,0.151171962,81.30515042,0,0.719250837,41.95696938,64.98484708,84.48825209,5,6,101% +5/21/2018 15:00,67.21876503,81.39430968,328.584094,655.1794751,74.88966135,110.9715041,35.86303668,75.10846744,72.63146175,2.477005695,81.9272174,0,81.9272174,2.258199603,79.66901779,1.173188769,1.420598696,-2.334159305,2.334159305,0.92931844,0.227916271,2.341830335,75.32131357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8161237,1.636057925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696648106,72.40171159,71.51277181,74.03776951,35.86303668,0,0.054737729,86.86219088,-0.054737729,93.13780912,0,0,71.51277181,74.03776951,119.9690112,5,7,68% +5/21/2018 16:00,55.43023235,90.14418907,534.8178282,777.630293,93.58314099,303.8094078,209.0164611,94.79294671,90.76126401,4.031682697,132.4946513,0,132.4946513,2.821876986,129.6727744,0.96744006,1.573312901,-1.362447488,1.362447488,0.763145932,0.174981341,3.243855511,104.3335439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.24317924,2.04444027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.350162275,100.2893709,89.59334151,102.3338112,209.0164611,0,0.268786418,74.40793558,-0.268786418,105.5920644,0.863978696,0,270.179111,102.3338112,337.1545438,5,8,25% +5/21/2018 17:00,43.65099504,100.2916671,716.2672261,842.3822625,106.7549765,509.9688849,401.03344,108.935445,103.5359201,5.399524903,176.8863381,0,176.8863381,3.219056425,173.6672816,0.761853585,1.750419804,-0.823737024,0.823737024,0.671021017,0.149043503,3.887945169,125.0496814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.52266453,2.332195422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81680304,120.2025102,102.3394676,122.5347056,401.03344,0,0.476070613,61.57091956,-0.476070613,118.4290804,0.944973563,0,481.3054664,122.5347056,561.5019806,5,9,17% +5/21/2018 18:00,32.33374221,113.997396,858.166852,878.3820177,115.9806014,700.7895145,581.8369319,118.9525826,112.4833584,6.469224222,211.5697318,0,211.5697318,3.497243056,208.0724888,0.564330261,1.989629899,-0.455360878,0.455360878,0.608024986,0.135149244,4.276157941,137.5359386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1232826,2.533740689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.098061871,132.2047756,111.2213445,134.7385163,581.8369319,0,0.662396224,48.51712047,-0.662396224,131.4828795,0.974516478,0,678.2310221,134.7385163,766.4146862,5,10,13% +5/21/2018 19:00,22.58867074,136.4176925,949.9869302,897.1866812,121.6268604,856.3699145,731.24915,125.1207645,117.9593618,7.161402756,234.0028284,0,234.0028284,3.667498595,230.3353298,0.394246678,2.380937892,-0.166438617,0.166438617,0.558616369,0.128030035,4.405170269,141.6854185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3870253,2.657090248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.191530864,136.1934136,116.5785562,138.8505038,731.24915,0,0.815046818,35.40800856,-0.815046818,144.5919914,0.988653831,0,839.5308296,138.8505038,930.4057074,5,11,11% +5/21/2018 20:00,17.5914517,175.641015,985.1286988,903.6514495,123.735814,962.0593971,834.6283582,127.4310389,120.0047226,7.426316252,242.5869498,0,242.5869498,3.731091328,238.8558585,0.307028752,3.065514014,0.085480815,-0.085480815,0.515535609,0.125603704,4.280425696,137.6732042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.353104,2.703162966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.101153845,132.3367206,118.4542579,135.0398835,834.6283582,0,0.923617573,22.53918858,-0.923617573,157.4608114,0.99586504,0,949.6314615,135.0398835,1038.012364,5,12,9% +5/21/2018 21:00,21.13043201,217.6904652,961.1036848,899.2719206,122.2968343,1007.784583,881.9302445,125.854339,118.6091335,7.245205548,236.7184164,0,236.7184164,3.687700781,233.0307157,0.368795611,3.799415368,0.326640928,-0.326640928,0.474294801,0.127246244,3.921024192,126.1136164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0116106,2.671726662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840768679,121.2252051,116.8523793,123.8969318,881.9302445,0,0.980715871,11.27036667,-0.980715871,168.7296333,0.999016834,0,997.91554,123.8969318,1079.003604,5,13,8% +5/21/2018 22:00,30.3137825,242.7534043,879.6333824,883.0490147,117.3199846,987.9764836,867.5630814,120.4134022,113.7823542,6.631047995,216.814928,0,216.814928,3.537630401,213.2772976,0.529075313,4.236846176,0.580005427,-0.580005427,0.43096692,0.133373729,3.361019511,108.1019409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3719268,2.563001183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.435047195,103.9116975,111.806974,106.4746986,867.5630814,0,0.98246311,10.74609436,-0.98246311,169.2539056,0.999107504,0,978.5957587,106.4746986,1048.281319,5,14,7% +5/21/2018 23:00,41.45053191,257.5707875,746.5774831,850.9228415,108.7873831,901.4381704,790.3031118,111.1350586,105.5070421,5.628016424,184.2966953,0,184.2966953,3.280340984,181.0163544,0.723448258,4.495458299,0.875488374,-0.875488374,0.38043636,0.145714793,2.649197082,85.20728473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4173821,2.376595876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919334268,81.9044831,103.3367163,84.28107897,790.3031118,0,0.928760016,21.75765815,-0.928760016,158.2423419,0.99616478,0,890.6088416,84.28107897,945.7691222,5,15,6% +5/21/2018 0:00,53.17967065,268.1744721,571.7471481,793.1025992,96.43467609,750.7976929,652.9608066,97.83688631,93.5268148,4.31007151,141.5345768,0,141.5345768,2.90786129,138.6267155,0.928160348,4.680527507,1.269100709,-1.269100709,0.313124686,0.16866665,1.848924324,59.46776189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90153185,2.106735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339539379,57.1626747,91.24107123,59.2694103,652.9608066,0,0.82329929,34.58355773,-0.82329929,145.4164423,0.989268744,0,737.1947882,59.2694103,775.9854318,5,16,5% +5/21/2018 1:00,64.98063144,277.0925461,369.010381,685.5938442,79.0558714,541.0903013,461.6365,79.45380131,76.67204519,2.781756123,91.85466534,0,91.85466534,2.383826208,89.47083913,1.134125969,4.836177262,1.907510812,-1.907510812,0.203950129,0.214237527,1.041750656,33.50628209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7000862,1.727073973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754744804,32.20751282,74.454831,33.93458679,461.6365,0,0.673338164,47.67476835,-0.673338164,132.3252316,0.975743107,0,524.8934638,33.93458679,547.1029722,5,17,4% +5/21/2018 2:00,76.54673511,285.5259198,159.2307447,461.3480735,51.89712717,277.2874983,225.7549124,51.53258592,50.33223731,1.200348613,40.17222743,0,40.17222743,1.564889864,38.60733757,1.335992559,4.983367401,3.402163497,-3.402163497,0,0.325924037,0.391222466,12.58305933,0.049113781,1,0.28587929,0,0.926544812,0.965306775,0.724496596,1,48.49022987,1.13375738,0.008209325,0.312029739,0.976984088,0.701480684,0.961238037,0.922476074,0.27972864,12.09531525,48.76995851,13.22907263,214.6672351,0,0.489337499,60.7029534,-0.489337499,119.2970466,0.947821033,0,252.2360791,13.22907263,260.8942425,5,18,3% +5/21/2018 3:00,87.47621011,294.2143367,5.786561469,31.24908984,4.410532785,13.26711968,8.945959188,4.321160493,4.277538948,0.043621545,1.536012659,0,1.536012659,0.132993837,1.403018823,1.526747884,5.135008882,16.26101793,-16.26101793,0,0.762202702,0.033248459,1.069384737,0.692368665,1,0.061419417,0,0.955369752,0.994131715,0.724496596,1,4.137638386,0.096353582,0.089102765,0.312029739,0.77857729,0.503073886,0.961238037,0.922476074,0.023068573,1.027933285,4.160706958,1.124286867,2.752057367,0,0.286279032,73.36468235,-0.286279032,106.6353176,0.875345225,0,6.569707233,1.124286867,7.305530502,5,19,11% +5/21/2018 4:00,98.09360065,303.7497225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712056306,5.30143276,-4.158114808,4.158114808,0.758766799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.067926761,86.10508413,-0.067926761,93.89491587,0,0,0,0,0,5,20,0% +5/21/2018 5:00,107.2676119,314.6803359,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872173009,5.492207953,-1.375822991,1.375822991,0.765433278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.139255283,98.00475496,0.139255283,81.99524504,0,0.690947194,0,0,0,5,21,0% +5/21/2018 6:00,114.7137986,327.4653963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002133483,5.715349352,-0.471556162,0.471556162,0.610794543,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325442595,108.9923916,0.325442595,71.00760836,0,0.896363074,0,0,0,5,22,0% +5/21/2018 7:00,119.7542177,342.2383219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090105393,5.973185543,0.068322416,-0.068322416,0.518469868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477947946,118.5514647,0.477947946,61.44853533,0,0.945386097,0,0,0,5,23,0% +5/22/2018 8:00,121.7416967,358.4427785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124793444,6.256006665,0.511393477,-0.511393477,0.442700254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586380409,125.9005696,0.586380409,54.09943042,0,0.964731121,0,0,0,5,0,0% +5/22/2018 9:00,120.3635803,14.7835257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100740776,0.258021198,0.973772886,-0.973772886,0.363628719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643352797,130.0422859,0.643352797,49.95771408,0,0.972282144,0,0,0,5,1,0% +5/22/2018 10:00,115.840547,29.88352052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021798952,0.521565825,1.579079809,-1.579079809,0.260115138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644984456,130.1645101,0.644984456,49.83548993,0,0.972478752,0,0,0,5,2,0% +5/22/2018 11:00,108.782783,43.03447998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898617733,0.751093368,2.620697631,-2.620697631,0.081988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591165245,126.2397412,0.591165245,53.76025879,0,0.96542128,0,0,0,5,3,0% +5/22/2018 12:00,99.87985098,54.26914275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743232256,0.947175223,5.526613569,-5.526613569,0,#DIV/0!,0,0,0.293262691,1,0.179005836,0,0.941669903,0.980431866,0.724496596,1,0,0,0.044048993,0.312029739,0.882690395,0.607186991,0.961238037,0.922476074,0,0,0,0,0,0,-0.485562761,119.0493495,0.485562761,60.95065046,0,0.9470267,0,0,0,5,4,0% +5/22/2018 13:00,89.26759153,64.01008567,0.359920486,2.531486949,0.327561523,0.320397567,0,0.320397567,0.317684335,0.002713233,0.927758644,0.830614567,0.097144077,0.009877188,0.087266889,1.558013388,1.117186749,-77.79792192,77.79792192,0,0.910094135,0.002469297,0.079421084,1,0.922084288,0,0.012853106,0.961238037,1,0.688694332,0.964197736,0.305370266,0.007014388,0.115824807,0.271359229,0.724496596,0.448993192,0.967504845,0.928742882,0.001788997,0.076600418,0.307159264,0.083614806,0,0.064717925,-0.328113312,109.1543011,0.328113312,70.84569886,0,0.897613619,0.307159264,0.141706497,0.399903332,5,5,30% +5/22/2018 14:00,78.61781756,72.79614678,122.9998667,396.0047567,44.84734159,44.42225372,0,44.42225372,43.49502877,0.927224951,90.35543942,59.18038487,31.17505455,1.352312818,29.82274173,1.372139767,1.270532444,-4.961505301,4.961505301,0.621378933,0.364612928,0.704161581,22.64825699,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.80907607,0.979746033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.510162669,21.77036609,42.31923874,22.75011212,0,59.18038487,-0.149443621,98.59468498,0.149443621,81.40531502,0,0.715425666,42.31923874,65.0892784,84.91886966,5,6,101% +5/22/2018 15:00,67.12361246,81.20527674,330.3104453,656.5650879,75.07452128,112.1920924,36.89132531,75.30076713,72.81074747,2.490019661,82.35136548,0,82.35136548,2.263773812,80.08759167,1.171528043,1.417299449,-2.324876175,2.324876175,0.927730931,0.227284733,2.350968464,75.61522721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.98845996,1.640096421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703268649,72.68423256,71.69172861,74.32432898,36.89132531,0,0.056188375,86.77894686,-0.056188375,93.22105314,0,0,71.69172861,74.32432898,120.3355154,5,7,68% +5/22/2018 16:00,55.33830072,89.93065386,536.3448117,778.2985964,93.70319526,305.0309274,210.1100355,94.92089193,90.87769819,4.043193744,132.8685063,0,132.8685063,2.825497065,130.0430092,0.96583555,1.569586008,-1.359626338,1.359626338,0.762663487,0.174707004,3.251244645,104.5712038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.3551002,2.047063005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355515677,100.5178187,89.71061588,102.5648817,210.1100355,0,0.269960702,74.33807159,-0.269960702,105.6619284,0.864787858,0,271.4112233,102.5648817,338.5378871,5,8,25% +5/22/2018 17:00,43.55504517,100.0403512,717.6145506,842.7731343,106.8461394,511.0322264,401.9982107,109.0340157,103.6243341,5.409681604,177.2157614,0,177.2157614,3.221805324,173.993956,0.760178944,1.746033514,-0.823075116,0.823075116,0.670907824,0.148890709,3.894465445,125.2593959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.60765147,2.33418699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.821526958,120.4040958,102.4291784,122.7382828,401.9982107,0,0.476994572,61.51070394,-0.476994572,118.4892961,0.945177004,0,482.3886429,122.7382828,562.7183942,5,9,17% +5/22/2018 18:00,32.22151359,113.6922127,859.3917928,878.6531326,116.0573752,701.6832596,582.6469842,119.0362754,112.5578171,6.478458342,211.8690479,0,211.8690479,3.499558067,208.3694898,0.562371502,1.984303446,-0.455715091,0.455715091,0.60808556,0.135045943,4.282338804,137.7347364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1948551,2.535417907,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102539886,132.3958676,111.297395,134.9312855,582.6469842,0,0.663113762,48.46221944,-0.663113762,131.5377806,0.974598157,0,679.1440718,134.9312855,767.4538995,5,10,13% +5/22/2018 19:00,22.43885254,136.0810237,951.1614256,897.4087935,121.6977713,857.1394117,731.9410206,125.1983911,118.0281345,7.170256599,234.2897366,0,234.2897366,3.669636821,230.6200998,0.391631857,2.375061912,-0.167433839,0.167433839,0.558786562,0.127946496,4.411416305,141.8863125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4531323,2.658639385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196056096,136.3865205,116.6491884,139.0451599,731.9410206,0,0.815616056,35.35167829,-0.815616056,144.6483217,0.988696646,0,840.3168203,139.0451599,931.3190966,5,11,11% +5/22/2018 20:00,17.39637828,175.5402737,986.3299153,903.8659913,123.8074512,962.7781891,835.2686178,127.5095712,120.0741997,7.435371529,242.8803588,0,242.8803588,3.733251454,239.1471073,0.303624079,3.063755746,0.083941079,-0.083941079,0.51579892,0.125523366,4.287067699,137.8868339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.419888,2.70472797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.105965954,132.5420695,118.525854,135.2467975,835.2686178,0,0.924106699,22.46596393,-0.924106699,157.5340361,0.995893694,0,950.3646031,135.2467975,1038.880927,5,12,9% +5/22/2018 21:00,20.95314976,217.9308323,962.407125,899.5139356,122.3752137,1008.541807,882.6016263,125.940181,118.6851495,7.25503143,237.036814,0,237.036814,3.690064211,233.3467498,0.365701452,3.803610565,0.32449459,-0.32449459,0.474661846,0.127155349,3.928319495,126.3482585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0846801,2.673438959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846054102,121.4507519,116.9307342,124.1241909,882.6016263,0,0.981198391,11.12802133,-0.981198391,168.8719787,0.999041906,0,998.686745,124.1241909,1079.923545,5,13,8% +5/22/2018 22:00,30.17073819,243.02215,881.1065475,883.3628711,117.4114408,988.8701699,868.3569639,120.513206,113.8710527,6.642153336,217.1748717,0,217.1748717,3.540388143,213.6344835,0.526578719,4.241536673,0.577024584,-0.577024584,0.431476674,0.133254532,3.369132541,108.3628838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4571871,2.564999157,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440925057,104.1625257,111.8981122,106.7275249,868.3569639,0,0.983012748,10.57586508,-0.983012748,169.4241349,0.99913596,0,979.5047807,106.7275249,1049.355811,5,14,7% +5/22/2018 23:00,41.32465757,257.7993838,748.2735968,851.3856081,108.9000086,902.5736772,791.3166032,111.257074,105.6162716,5.640802445,184.7113338,0,184.7113338,3.283737059,181.4275968,0.721251337,4.499448056,0.871150264,-0.871150264,0.381178221,0.145535014,2.658163041,85.49566076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5223776,2.379056321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.925830074,82.18168111,103.4482076,84.56073743,791.3166032,0,0.929445595,21.65144231,-0.929445595,158.3485577,0.99620449,0,891.7613605,84.56073743,947.104672,5,15,6% +5/22/2018 0:00,53.05916903,268.3684101,573.6971006,793.8813601,96.58237697,752.2958625,654.3010295,97.99483302,93.67006195,4.324771075,142.0118191,0,142.0118191,2.912315017,139.0995041,0.926057198,4.683912365,1.262141513,-1.262141513,0.314314779,0.168350819,1.858572306,59.77807417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.03922646,2.109962316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346529309,57.46095866,91.38575577,59.57092098,654.3010295,0,0.824179862,34.49457024,-0.824179862,145.5054298,0.989333631,0,738.7077687,59.57092098,777.6957451,5,16,5% +5/22/2018 1:00,64.85854076,277.2620266,371.2033768,687.1304412,79.27286082,543.1216772,463.4408978,79.68077943,76.88249158,2.798287852,92.3929256,0,92.3929256,2.39036924,90.00255636,1.131995084,4.839135255,1.89407412,-1.89407412,0.206247939,0.213556411,1.051481229,33.81925076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.90237528,1.731814377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761794571,32.50835021,74.66416985,34.24016458,463.4408978,0,0.6744584,47.58789406,-0.6744584,132.4121059,0.975866443,0,526.9205905,34.24016458,549.3300934,5,17,4% +5/22/2018 2:00,76.41865992,285.6779804,161.5068934,465.0468979,52.30199741,280.1505723,228.2081659,51.94240639,50.72489921,1.217507183,40.73631436,0,40.73631436,1.577098196,39.15921617,1.333757226,4.986021359,3.362468784,-3.362468784,0,0.323837555,0.394274549,12.6812248,0.042936123,1,0.289070257,0,0.926055878,0.964817841,0.724496596,1,48.85586687,1.142602274,0.007197191,0.312029739,0.979793307,0.704289903,0.961238037,0.922476074,0.282347477,12.18967563,49.13821435,13.33227791,218.409792,0,0.490720757,60.61203412,-0.490720757,119.3879659,0.948109058,0,256.2145166,13.33227791,264.9402258,5,18,3% +5/22/2018 3:00,87.34539843,294.3526013,6.522250653,34.98269552,4.902028387,14.87214703,10.06876541,4.803381625,4.754214144,0.04916748,1.729209425,0,1.729209425,0.147814242,1.581395183,1.524464789,5.137422055,15.42231399,-15.42231399,0,0.751585403,0.036953561,1.188553536,0.678168633,1,0.064750469,0,0.955025791,0.993787755,0.724496596,1,4.59970507,0.107090915,0.087724062,0.312029739,0.781523088,0.506019684,0.961238037,0.922476074,0.02560355,1.142482868,4.62530862,1.249573783,3.240444533,0,0.287821314,73.27243383,-0.287821314,106.7275662,0.876281107,0,7.464848943,1.249573783,8.282669993,5,19,11% +5/22/2018 4:00,97.94181765,303.8742787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709407193,5.303606676,-4.226064407,4.226064407,0.747146733,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069872176,85.99335452,-0.069872176,94.00664548,0,0,0,0,0,5,20,0% +5/22/2018 5:00,107.1008795,314.7868655,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869262979,5.494067245,-1.384615792,1.384615792,0.766936935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137066718,97.87814518,0.137066718,82.12185482,0,0.685214143,0,0,0,5,21,0% +5/22/2018 6:00,114.5322906,327.5441068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998965571,5.716723109,-0.472578121,0.472578121,0.610969308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.323055763,108.8478255,0.323055763,71.15217446,0,0.895227959,0,0,0,5,22,0% +5/22/2018 7:00,119.5619942,342.2751222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086750459,5.97382783,0.069989067,-0.069989067,0.518184854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475421458,118.3867946,0.475421458,61.61320535,0,0.944830157,0,0,0,5,23,0% +5/23/2018 8:00,121.5475782,358.4262328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121405438,6.255717888,0.514841176,-0.514841176,0.442110663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583782559,125.7170298,0.583782559,54.28297015,0,0.964351672,0,0,0,5,0,0% +5/23/2018 9:00,120.1785904,14.71437074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097512093,0.256814217,0.979315968,-0.979315968,0.362680796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640756852,129.8482793,0.640756852,50.15172074,0,0.97196728,0,0,0,5,1,0% +5/23/2018 10:00,115.6729538,29.77468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0188739,0.5196662,1.588376434,-1.588376434,0.258525322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642463618,129.9757716,0.642463618,50.02422842,0,0.972174581,0,0,0,5,2,0% +5/23/2018 11:00,108.6356229,42.90114441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896049305,0.748766223,2.639810449,-2.639810449,0.078719516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588787612,126.0710206,0.588787612,53.92897937,0,0.965079735,0,0,0,5,3,0% +5/23/2018 12:00,99.75210136,54.12139827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741002605,0.944596596,5.596370021,-5.596370021,0,#DIV/0!,0,0,0.299171175,1,0.176821101,0,0.941953133,0.980715096,0.724496596,1,0,0,0.04482606,0.312029739,0.880758025,0.605254621,0.961238037,0.922476074,0,0,0,0,0,0,-0.483386652,118.9068242,0.483386652,61.0931758,0,0.946563135,0,0,0,5,4,0% +5/23/2018 13:00,89.17040323,63.85189397,0.461728446,3.101586056,0.416821546,0.407733542,0,0.407733542,0.404252838,0.003480704,1.13691443,1.012394315,0.124520115,0.012568708,0.111951408,1.556317132,1.114425783,-68.66257964,68.66257964,0,0.90274175,0.003142177,0.10106321,1,0.911285751,0,0.014562944,0.961238037,1,0.684028901,0.959532305,0.388583204,0.008904552,0.115824807,0.266062962,0.724496596,0.448993192,0.968295621,0.929533658,0.002276496,0.097511533,0.390859701,0.106416085,0,0.089813801,-0.326411809,109.051131,0.326411809,70.94886905,0,0.896819267,0.390859701,0.186962833,0.513223136,5,5,31% +5/23/2018 14:00,78.51975399,72.62673919,124.6859226,399.3459618,45.20406714,44.78093288,0,44.78093288,43.84099773,0.939935152,90.61723458,59.02261967,31.59461491,1.36306941,30.2315455,1.370428235,1.267575724,-4.918672268,4.918672268,0.628703813,0.362543471,0.717466433,23.07618676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.14163459,0.987539147,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.519801988,22.18170846,42.66143658,23.1692476,0,59.02261967,-0.147798213,98.49935129,0.147798213,81.50064871,0,0.711700917,42.66143658,65.17570017,85.31762883,5,6,100% +5/23/2018 15:00,67.03350085,81.02014964,331.9447916,657.8692535,75.24891757,113.3485015,37.86627642,75.48222512,72.97988507,2.502340053,82.75289034,0,82.75289034,2.269032504,80.48385784,1.169955299,1.414068372,-2.316174867,2.316174867,0.92624292,0.226691063,2.35961406,75.89329928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15104145,1.643906325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709532354,72.95152601,71.86057381,74.59543234,37.86627642,0,0.05755897,86.70029024,-0.05755897,93.29970976,0,0,71.86057381,74.59543234,120.6817924,5,7,68% +5/23/2018 16:00,55.25149153,89.72143387,537.7853036,778.9266914,93.81627191,306.1776483,211.1362304,95.04141795,90.98736517,4.05405278,133.2211799,0,133.2211799,2.828906743,130.3922731,0.964320444,1.565934431,-1.357017736,1.357017736,0.76221739,0.174449304,3.258235735,104.7960614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.46051627,2.049533306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.360580699,100.7339603,89.82109697,102.7834936,211.1362304,0,0.271060464,74.27261962,-0.271060464,105.7273804,0.865539311,0,272.5678043,102.7834936,339.8375452,5,8,25% +5/23/2018 17:00,43.4644862,99.79371919,718.8840572,843.1404469,106.9319651,512.022674,402.8958505,109.1268235,103.7075718,5.419251681,177.5261559,0,177.5261559,3.224393286,174.3017626,0.758598392,1.741728973,-0.822508659,0.822508659,0.670810954,0.148747165,3.900652129,125.4583809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.68766277,2.336061959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826009189,120.5953677,102.513672,122.9314297,402.8958505,0,0.477851409,61.45483208,-0.477851409,118.5451679,0.945364963,0,483.3972926,122.9314297,563.8534547,5,9,17% +5/23/2018 18:00,32.1152072,113.3914389,860.5486181,878.9086288,116.1298407,702.5109947,583.3957182,119.1152765,112.6280975,6.487178981,212.1517187,0,212.1517187,3.501743171,208.6499756,0.560516106,1.979053953,-0.45611264,0.45611264,0.608153545,0.134948611,4.288237305,137.9244525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2624114,2.537001007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10681333,132.5782299,111.3692247,135.1152309,583.3957182,0,0.663772887,48.41174662,-0.663772887,131.5882534,0.974673031,0,679.9892974,135.1152309,768.4195137,5,10,13% +5/23/2018 19:00,22.2956076,135.7451658,952.2774783,897.6194555,121.7651255,857.8519393,732.5798117,125.2721276,118.0934577,7.178669875,234.5623675,0,234.5623675,3.6716678,230.8906997,0.389131761,2.369200086,-0.168442839,0.168442839,0.558959112,0.127867274,4.417421843,142.0794713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5159235,2.660110822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.200407088,136.572192,116.7163306,139.2323029,732.5798117,0,0.816136289,35.30012896,-0.816136289,144.699871,0.988735723,0,841.0441601,139.2323029,932.1689177,5,11,11% +5/23/2018 20:00,17.20735166,175.4322684,987.4815311,904.0712863,123.8761033,963.4496159,835.8647812,127.5848347,120.1407818,7.444052895,243.1616514,0,243.1616514,3.73532157,239.4263299,0.300324942,3.061870697,0.08240883,-0.08240883,0.51606095,0.125446501,4.293501999,138.0937831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4838892,2.706227762,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110627583,132.740997,118.5945168,135.4472247,835.8647812,0,0.924556276,22.39846003,-0.924556276,157.60154,0.995920004,0,951.0489728,135.4472247,1039.696472,5,12,9% +5/23/2018 21:00,20.78024298,218.1619099,963.6683157,899.747616,122.4510181,1009.260639,883.2374317,126.0232069,118.7586681,7.264538819,237.3448901,0,237.3448901,3.692349992,233.6525401,0.362683659,3.807643631,0.322375633,-0.322375633,0.475024209,0.127067598,3.935430399,126.5769696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.155349,2.675095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851205927,121.6705977,117.0065549,124.3456927,883.2374317,0,0.981650205,10.993085,-0.981650205,169.006915,0.99906536,0,999.4184774,124.3456927,1080.800246,5,13,8% +5/23/2018 22:00,30.03068737,243.2818586,882.5428091,883.6680882,117.5005503,989.732752,869.1222964,120.6104557,113.9574752,6.652980482,217.5257969,0,217.5257969,3.543075123,213.9827218,0.524134371,4.246069442,0.574095429,-0.574095429,0.431977589,0.133138641,3.377074988,108.6183402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5402597,2.566945866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446679333,104.4080801,111.9869391,106.975026,869.1222964,0,0.983539304,10.41020465,-0.983539304,169.5897953,0.999163191,0,980.3819458,106.975026,1050.394961,5,14,7% +5/23/2018 23:00,41.20099898,258.0201223,749.9358172,851.8376216,109.0102739,903.6826153,792.3060704,111.3765449,105.723212,5.653332964,185.1176833,0,185.1176833,3.287061964,181.8306213,0.719093087,4.503300671,0.866901816,-0.866901816,0.381904748,0.145359471,2.666964049,85.77873146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6251727,2.381465203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932206375,82.45377943,103.5573791,84.83524463,792.3060704,0,0.930113968,21.5474125,-0.930113968,158.4525875,0.996243147,0,892.8868719,84.83524463,948.4098428,5,15,6% +5/23/2018 0:00,52.94055045,268.5554617,575.6137881,794.6432848,96.72729249,753.7678507,655.6180231,98.14982761,93.81060774,4.339219875,142.4809119,0,142.4809119,2.916684754,139.5642272,0.923986913,4.687177031,1.25534763,-1.25534763,0.315476601,0.168042001,1.868057079,60.08313708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.17432442,2.113128176,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353400995,57.75419673,91.52772541,59.86732491,655.6180231,0,0.825046956,34.40674779,-0.825046956,145.5932522,0.989397389,0,740.1944854,59.86732491,779.3764522,5,16,5% +5/23/2018 1:00,64.73828487,277.4252489,373.3620235,688.6324176,79.4856171,545.1203864,465.2169933,79.90339311,77.08883247,2.814560642,92.92272987,0,92.92272987,2.396784626,90.52594524,1.129896223,4.841984022,1.881010824,-1.881010824,0.208481894,0.212891542,1.06105954,34.12732218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.10071799,1.736462303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768734025,32.80448017,74.86945201,34.54094248,465.2169933,0,0.675566502,47.50184222,-0.675566502,132.4981578,0.975988041,0,528.9156741,34.54094248,551.5220301,5,17,4% +5/23/2018 2:00,76.29256661,285.8241432,163.7510713,468.6519343,52.69734521,282.9621182,230.6193676,52.34275057,51.10832582,1.234424744,41.29236247,0,41.29236247,1.589019391,39.70334308,1.331556482,4.98857238,3.324231705,-3.324231705,0,0.321813743,0.397254848,12.77708146,0.036908936,1,0.292210192,0,0.925572705,0.964334668,0.724496596,1,49.21241163,1.151239139,0.00620413,0.312029739,0.982557368,0.707053964,0.961238037,0.922476074,0.284920116,12.2818167,49.49733175,13.43305583,222.1074521,0,0.492090933,60.52189457,-0.492090933,119.4781054,0.948392763,0,260.142432,13.43305583,268.9340984,5,18,3% +5/23/2018 3:00,87.21640464,294.4851484,7.294823115,38.86639473,5.4073235,16.5454608,11.2461966,5.299264203,5.244272745,0.054991458,1.931765075,0,1.931765075,0.163050754,1.768714321,1.522213423,5.139735438,14.67328327,-14.67328327,0,0.741254917,0.040762689,1.311068186,0.66433103,1,0.068045855,0,0.954682937,0.9934449,0.724496596,1,5.074851926,0.118129717,0.086366733,0.312029739,0.784438091,0.508934687,0.961238037,0.922476074,0.028206156,1.26024861,5.103058082,1.378378326,3.77499923,0,0.289355282,73.18063838,-0.289355282,106.8193616,0.877202048,0,8.414495138,1.378378326,9.316616185,5,19,11% +5/23/2018 4:00,97.79289714,303.9932149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70680804,5.305682504,-4.295596703,4.295596703,0.73525601,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.071794731,85.88292283,-0.071794731,94.11707717,0,0,0,0,0,5,20,0% +5/23/2018 5:00,106.9377007,314.8879358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866414972,5.495831255,-1.393534977,1.393534977,0.768462206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134908606,97.75333503,0.134908606,82.24666497,0,0.679378721,0,0,0,5,21,0% +5/23/2018 6:00,114.3551637,327.6178177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995874123,5.718009606,-0.473696803,0.473696803,0.611160614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320708237,108.7057615,0.320708237,71.29423855,0,0.894095055,0,0,0,5,22,0% +5/23/2018 7:00,119.3749936,342.3079605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083486683,5.974400966,0.07154182,-0.07154182,0.517919318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472943779,118.2255539,0.472943779,61.77444611,0,0.944279189,0,0,0,5,23,0% +5/24/2018 8:00,121.3593273,358.4073983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11811984,6.255389165,0.518143594,-0.518143594,0.441545916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581243018,125.5380175,0.581243018,54.46198251,0,0.963977461,0,0,0,5,0,0% +5/24/2018 9:00,119.9997458,14.64482096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094390665,0.255600344,0.984659304,-0.984659304,0.361767031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638228063,129.6598172,0.638228063,50.34018281,0,0.971658099,0,0,0,5,1,0% +5/24/2018 10:00,115.5114411,29.6670036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016054971,0.517786892,1.597365259,-1.597365259,0.256988142,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640017517,129.7931257,0.640017517,50.20687431,0,0.971877138,0,0,0,5,2,0% +5/24/2018 11:00,108.4942938,42.77000664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.893582646,0.746477437,2.658349645,-2.658349645,0.075549126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58649051,125.9083577,0.58649051,54.09164232,0,0.964747129,0,0,0,5,3,0% +5/24/2018 12:00,99.62989228,53.97648917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738869654,0.942067455,5.66467658,-5.66467658,0,#DIV/0!,0,0,0.304861894,1,0.174732323,0,0.942222928,0.980984891,0.724496596,1,0,0,0.045570869,0.312029739,0.878910356,0.603406952,0.961238037,0.922476074,0,0,0,0,0,0,-0.481294681,118.7699939,0.481294681,61.23000612,0,0.946113541,0,0,0,5,4,0% +5/24/2018 13:00,89.07726335,63.69696833,0.575227223,3.73183264,0.51512943,0.503932683,0,0.503932683,0.499596377,0.004336306,1.367012098,1.212008545,0.155003553,0.015533053,0.1394705,1.554691534,1.111721821,-61.71263644,61.71263644,0,0.895523385,0.003883263,0.124899094,1,0.900829424,0,0.016202719,0.961238037,1,0.679576151,0.955079556,0.480231041,0.010980284,0.115824807,0.261009094,0.724496596,0.448993192,0.969044699,0.930282736,0.002813411,0.120552687,0.483044452,0.131532971,0,0.120195586,-0.324775697,108.9519862,0.324775697,71.04801381,0,0.896047594,0.483044452,0.239233937,0.639618279,5,5,32% +5/24/2018 14:00,78.42676223,72.46096138,126.2879338,402.4907084,45.54010689,45.11891643,0,45.11891643,44.16690464,0.95201179,90.85183021,58.85865629,31.99317392,1.373202248,30.61997167,1.368805223,1.264682355,-4.878695122,4.878695122,0.635540308,0.360605368,0.730161083,23.48449034,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.45490871,0.994880354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528999219,22.57418539,42.98390793,23.56906575,0,58.85865629,-0.146236062,98.40886337,0.146236062,81.59113663,0,0.708087074,42.98390793,65.24611943,85.68618818,5,6,99% +5/24/2018 15:00,66.94842191,80.83903595,333.4873619,659.0934603,75.41298014,114.4403231,38.78735395,75.65296914,73.13900054,2.5139686,83.13185148,0,83.13185148,2.273979595,80.85787189,1.168470391,1.410907341,-2.308043504,2.308043504,0.924852375,0.226134447,2.367770871,76.15565037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.3039893,1.647490476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715441936,73.20370786,72.01943123,74.85119833,38.78735395,0,0.058849551,86.62621982,-0.058849551,93.37378018,0,0,72.01943123,74.85119833,121.0080435,5,7,68% +5/24/2018 16:00,55.16978551,89.5166696,539.1398608,779.5152427,93.92244652,307.2498271,212.0952249,95.15460223,91.09033822,4.064264004,133.5528095,0,133.5528095,2.8321083,130.7207012,0.962894405,1.56236062,-1.354618713,1.354618713,0.761807133,0.174207944,3.264832307,105.0082298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55949789,2.051852822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365359893,100.9379046,89.92485778,102.9897575,212.0952249,0,0.272086052,74.21156312,-0.272086052,105.7884369,0.866234608,0,273.6490818,102.9897575,341.0538182,5,8,25% +5/24/2018 17:00,43.37929065,99.55197118,720.0764947,843.484595,107.0125173,512.9408627,403.7269269,109.2139358,103.785695,5.428240779,177.8177051,0,177.8177051,3.22682223,174.5908829,0.757111449,1.737509674,-0.822036342,0.822036342,0.670730183,0.148612707,3.906508724,125.6467491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76275775,2.337821721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830252272,120.7764344,102.59301,123.1142562,403.7269269,0,0.478641731,61.40327113,-0.478641731,118.5967289,0.945537734,0,484.3320535,123.1142562,564.9078719,5,9,17% +5/24/2018 18:00,32.01479738,113.0953911,861.6381675,879.1487857,116.1980575,703.273599,584.0839492,119.1896498,112.6942573,6.495392464,212.4179496,0,212.4179496,3.503800158,208.9141494,0.558763624,1.973886944,-0.456552638,0.456552638,0.608228789,0.134857138,4.2938567,138.1051915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3260067,2.538491287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110884563,132.7519632,111.4368912,135.2904545,584.0839492,0,0.664374403,48.36565085,-0.664374403,131.6343491,0.974741231,0,680.7675987,135.2904545,769.3124953,5,10,13% +5/24/2018 19:00,22.15894773,135.4105805,953.3359205,897.8188859,121.8289777,858.5085098,733.1664764,125.3420334,118.1553845,7.186648859,234.8209244,0,234.8209244,3.673593178,231.1473313,0.386746597,2.363360472,-0.169464826,0.169464826,0.559133882,0.127792287,4.423189564,142.264981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5754498,2.661505752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204585782,136.7505111,116.7800356,139.4120168,733.1664764,0,0.816608436,35.25328774,-0.816608436,144.7467123,0.988771144,0,841.7138915,139.4120168,932.9562683,5,11,11% +5/24/2018 20:00,17.02444266,175.3170126,988.5842768,904.2675144,123.9418175,964.0747133,836.417833,127.6568803,120.2045144,7.452365858,243.4310064,0,243.4310064,3.737303096,239.6937033,0.297132578,3.059859105,0.080884887,-0.080884887,0.516321559,0.125373041,4.299730394,138.2941097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5451515,2.70766337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115140033,132.9335585,118.6602915,135.6412219,836.417833,0,0.924967247,22.33658342,-0.924967247,157.6634166,0.995944032,0,951.6856404,135.6412219,1040.460107,5,12,9% +5/24/2018 21:00,20.61173954,218.3833363,964.8878001,899.973112,122.5242835,1009.942029,883.8385724,126.1034561,118.8297243,7.273731807,237.6427774,0,237.6427774,3.694559214,233.9482182,0.35974272,3.811508249,0.320284961,-0.320284961,0.475381735,0.126982934,3.94235756,126.7997709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2236509,2.676695574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.856224632,121.8847629,117.0798755,124.5614584,883.8385724,0,0.982072198,10.86556023,-0.982072198,169.1344398,0.999087246,0,1000.111721,124.5614584,1081.634704,5,13,8% +5/24/2018 22:00,29.89363923,243.5323039,883.9424499,883.9647877,117.5873351,990.5649947,869.8598201,120.7051747,114.0416431,6.663531566,217.8677729,0,217.8677729,3.545692004,214.3220809,0.52174243,4.250440539,0.571218992,-0.571218992,0.432469489,0.133026008,3.384846189,108.8682888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6211651,2.568841787,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.452309541,104.6483402,112.0734747,107.217182,869.8598201,0,0.984043519,10.24909161,-0.984043519,169.7509084,0.999189239,0,981.2280464,107.217182,1051.399548,5,14,7% +5/24/2018 23:00,41.07957395,258.2328715,751.5641124,852.2789714,109.1181841,904.7654758,793.2719998,111.493476,105.8278682,5.665607741,185.5157362,0,185.5157362,3.290315853,182.2254204,0.716973821,4.507013845,0.862744175,-0.862744175,0.382615746,0.145188125,2.675598034,86.05643009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7257723,2.383822635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938461668,82.72071392,103.664234,85.10453655,793.2719998,0,0.930765661,21.44551631,-0.930765661,158.5544837,0.996280786,0,893.9858852,85.10453655,949.6851023,5,15,6% +5/24/2018 0:00,52.82384603,268.7355407,577.4968305,795.3884305,96.86940959,755.2138129,656.9119584,98.30185453,93.94843948,4.353415044,142.9417627,0,142.9417627,2.920970109,140.0207926,0.921950037,4.690320002,1.248720032,-1.248720032,0.316609987,0.167740158,1.877375132,60.38283769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30681353,2.116232901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360151893,58.04228036,91.66696543,60.15851326,656.9119584,0,0.825900822,34.32007263,-0.825900822,145.6799274,0.989460043,0,741.6551002,60.15851326,781.0276439,5,16,5% +5/24/2018 1:00,64.61990794,277.5821524,375.4855722,690.0998649,79.69411552,547.0862461,466.9646333,80.12161275,77.2910439,2.830568849,93.44389581,0,93.44389581,2.403071623,91.04082419,1.127830156,4.844722505,1.868319349,-1.868319349,0.210652264,0.212242817,1.070480522,34.43033335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.29509131,1.741017211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775559494,33.09574604,75.0706508,34.83676325,466.9646333,0,0.676662404,47.41662118,-0.676662404,132.5833788,0.976107909,0,530.8785225,34.83676325,553.6784874,5,17,4% +5/24/2018 2:00,76.16851171,285.9643657,165.9620067,472.1636795,53.08319004,285.7216714,232.9880437,52.73362771,51.482536,1.251091709,41.84006401,0,41.84006401,1.600654036,40.23940997,1.329391316,4.991019725,3.287414576,-3.287414576,0,0.319851459,0.400163509,12.870634,0.031033396,1,0.295296763,0,0.925095759,0.963857722,0.724496596,1,49.55991073,1.1596684,0.005230706,0.312029739,0.985274242,0.709770838,0.961238037,0.922476074,0.28744571,12.37174296,49.84735644,13.53141136,225.7576334,0,0.49344762,60.43256339,-0.49344762,119.5674366,0.948672122,0,264.0173296,13.53141136,272.8733677,5,18,3% +5/24/2018 3:00,87.08933609,294.611952,8.101166279,42.88008545,5.923766089,18.27915174,12.47293904,5.806212698,5.745142685,0.061070013,2.14284496,0,2.14284496,0.178623404,1.964221556,1.519995658,5.141948578,14.001136,-14.001136,0,0.731223861,0.044655851,1.436285671,0.650860125,1,0.071301699,0,0.954341683,0.993103646,0.724496596,1,5.560580147,0.129412048,0.085032079,0.312029739,0.787318781,0.511815377,0.961238037,0.922476074,0.030862979,1.380612419,5.591443126,1.510024467,4.35480038,0,0.290879529,73.08938055,-0.290879529,106.9106194,0.878107532,0,9.415426141,1.510024467,10.40370695,5,19,10% +5/24/2018 4:00,97.64691408,304.1065232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.704260155,5.307660106,-4.366688258,4.366688258,0.723098638,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073693398,85.77384827,-0.073693398,94.22615173,0,0,0,0,0,5,20,0% +5/24/2018 5:00,106.7781552,314.9835599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863630377,5.49750021,-1.402572894,1.402572894,0.770007781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132782229,97.63039642,0.132782229,82.36960358,0,0.673443586,0,0,0,5,21,0% +5/24/2018 6:00,114.1824966,327.6865633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992860514,5.719209445,-0.474911904,0.474911904,0.611368408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.318401487,108.5662811,0.318401487,71.4337189,0,0.892965557,0,0,0,5,22,0% +5/24/2018 7:00,119.1932878,342.3368857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080315318,5.974905807,0.072978422,-0.072978422,0.517673644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470516491,118.0678283,0.470516491,61.93217169,0,0.943733799,0,0,0,5,23,0% +5/25/2018 8:00,121.1770054,358.3863249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114937722,6.255021364,0.521296583,-0.521296583,0.441006724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578763397,125.3636135,0.578763397,54.63638653,0,0.963608911,0,0,0,5,0,0% +5/25/2018 9:00,119.8270983,14.57491942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091377399,0.254380332,0.989796031,-0.989796031,0.360888599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635767978,129.4769673,0.635767978,50.5230327,0,0.971354957,0,0,0,5,1,0% +5/25/2018 10:00,115.3560524,29.56053257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013342926,0.515928622,1.60603346,-1.60603346,0.255505792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637647557,129.6166266,0.637647557,50.3833734,0,0.971586777,0,0,0,5,2,0% +5/25/2018 11:00,108.3588305,42.64111376,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891218366,0.744227832,2.676282516,-2.676282516,0.072482425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584275129,125.7517977,0.584275129,54.24820231,0,0.964423878,0,0,0,5,3,0% +5/25/2018 12:00,99.5132484,53.83447242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736833834,0.939588795,5.731349354,-5.731349354,0,#DIV/0!,0,0,0.310328073,1,0.172740086,0,0.942479346,0.981241309,0.724496596,1,0,0,0.046282969,0.312029739,0.877147932,0.601644527,0.961238037,0.922476074,0,0,0,0,0,0,-0.479287766,118.6388952,0.479287766,61.36110479,0,0.945678539,0,0,0,5,4,0% +5/25/2018 13:00,88.98827939,63.54537748,0.699263309,4.416154275,0.621287546,0.607824777,0,0.607824777,0.602553435,0.005271342,1.61561088,1.427332283,0.188278597,0.018734112,0.169544485,1.553138471,1.109076061,-56.26718981,56.26718981,0,0.888488697,0.004683528,0.150638359,1,0.890739159,0,0.017770476,0.961238037,1,0.675338664,0.950842069,0.579197281,0.013215799,0.115824807,0.256200467,0.724496596,0.448993192,0.969752418,0.930990455,0.0033932,0.145443934,0.582590481,0.158659734,0,0.155951526,-0.32320707,108.8569862,0.32320707,71.14301381,0,0.895300414,0.582590481,0.298283199,0.777810869,5,5,34% +5/25/2018 14:00,78.33884588,72.29889642,127.8052687,405.4427578,45.85582153,45.43654942,0,45.43654942,44.47309932,0.963450101,91.06145618,58.69086688,32.37058929,1.382722209,30.98786708,1.367270793,1.261853788,-4.841458778,4.841458778,0.641908098,0.358794453,0.742231828,23.872727,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.74923468,1.001777533,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537744433,22.94737323,43.28697911,23.94915077,0,58.69086688,-0.144757468,98.32323493,0.144757468,81.67676507,0,0.704594676,43.28697911,65.3024231,86.02610899,5,6,99% +5/25/2018 15:00,66.86836639,80.66203866,334.9384023,660.2391158,75.56683293,115.4671922,39.65407089,75.81312126,73.2882141,2.524907155,83.48831225,0,83.48831225,2.278618825,81.20969343,1.167073159,1.407818156,-2.300471037,2.300471037,0.923557406,0.22561412,2.375442587,76.40239913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44741905,1.650851582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.721000068,73.44089215,72.16841912,75.09174373,39.65407089,0,0.060060166,86.55673375,-0.060060166,93.44326625,0,0,72.16841912,75.09174373,121.3144636,5,7,68% +5/25/2018 16:00,55.09316235,89.31649599,540.4090443,780.0648848,94.02179255,308.2477325,212.9872122,95.26052025,91.18668861,4.073831645,133.8635334,0,133.8635334,2.835103949,131.0284294,0.961557078,1.558866931,-1.352426495,1.352426495,0.761432241,0.173982641,3.271037859,105.2078217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.65211354,2.05402316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.369855794,101.12976,90.02196934,103.1837831,212.9872122,0,0.273037816,74.15488514,-0.273037816,105.8451149,0.866875183,0,274.6552979,103.1837831,342.1870203,5,8,25% +5/25/2018 17:00,43.2994295,99.31530042,721.19261,843.8059587,107.0878583,513.7874257,404.4920069,109.2954188,103.8587643,5.436654527,178.090592,0,178.090592,3.22909404,174.861498,0.755717609,1.73337899,-0.821656936,0.821656936,0.670665301,0.148487182,3.912038724,125.8246129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.83299468,2.33946764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.834258738,120.9474039,102.6672534,123.2868715,404.4920069,0,0.479366142,61.35598808,-0.479366142,118.6440119,0.945695595,0,485.1935627,123.2868715,565.8823544,5,9,17% +5/25/2018 18:00,31.92025576,112.8043782,862.6612763,879.3738746,116.262084,703.9719422,584.7124839,119.2594583,112.7563532,6.50310509,212.6679448,0,212.6679448,3.505730793,209.162214,0.557113561,1.968807811,-0.457034248,0.457034248,0.608311149,0.134771419,4.299200247,138.2770583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3856956,2.539890026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114755944,132.9171681,111.5004515,135.4570581,584.7124839,0,0.664919098,48.32388086,-0.664919098,131.6761191,0.974802882,0,681.4798659,135.4570581,770.1338013,5,10,13% +5/25/2018 19:00,22.02888006,135.077732,954.3375813,898.0072981,121.8893818,859.1101218,733.7019548,125.4081671,118.2139673,7.194199802,235.0656101,0,235.0656101,3.675414586,231.3901955,0.384476488,2.35755117,-0.17049905,0.17049905,0.559310744,0.127721452,4.428722175,142.4429288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6317618,2.662825356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.20859414,136.9215612,116.8403559,139.5843866,733.7019548,0,0.817033399,35.21108124,-0.817033399,144.7889188,0.988802991,0,842.3270436,139.5843866,933.6822329,5,11,11% +5/25/2018 20:00,16.84771901,175.1945322,989.6388836,904.4548524,124.0046406,964.6545034,836.9287443,127.7257591,120.2654432,7.46031593,243.6886024,0,243.6886024,3.739197442,239.949405,0.294048168,3.057721419,0.079370022,-0.079370022,0.516580616,0.125302919,4.305754733,138.4878731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6037185,2.709035818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119504647,133.1198113,118.7232231,135.8288471,836.9287443,0,0.925340543,22.28023788,-0.925340543,157.7197621,0.995965839,0,952.275662,135.8288471,1041.172926,5,12,9% +5/25/2018 21:00,20.44766486,218.5947491,966.0661275,900.1905723,122.5950463,1010.586918,884.40595,126.1809678,118.8983533,7.282614537,237.9306103,0,237.9306103,3.696692973,234.2339173,0.356879076,3.8151981,0.318223428,-0.318223428,0.475734278,0.126901299,3.949101724,127.0166864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2896197,2.678241475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861110756,122.0932703,117.1507305,124.7715118,884.40595,0,0.982465244,10.74543872,-0.982465244,169.2545613,0.999107614,0,1000.767449,124.7715118,1082.427908,5,13,8% +5/25/2018 22:00,29.759601,243.7732633,885.305767,884.2530918,117.6718178,991.3676591,870.5702719,120.7973872,114.1235784,6.673808826,218.2008724,0,218.2008724,3.548239471,214.6526329,0.519403022,4.254646074,0.568396239,-0.568396239,0.432952208,0.132916583,3.392445606,109.1127122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6999244,2.570687418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.457815293,104.8832892,112.1577397,107.4539766,870.5702719,0,0.984526127,10.09249995,-0.984526127,169.9075001,0.999214146,0,982.0438707,107.4539766,1052.370349,5,14,7% +5/25/2018 23:00,40.96039844,258.437503,753.1584742,852.7097513,109.2237455,905.8227555,794.2148822,111.6078733,105.9302466,5.677626714,185.9054908,0,185.9054908,3.29349892,182.6119918,0.714893816,4.510585338,0.858678397,-0.858678397,0.383311035,0.145020934,2.684063084,86.32869519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8241823,2.386128756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.944594568,82.98242549,103.7687768,85.36855425,794.2148822,0,0.931401196,21.34570006,-0.931401196,158.6542999,0.996317441,0,895.0589156,85.36855425,950.930927,5,15,6% +5/25/2018 0:00,52.70908487,268.9085636,579.3458813,796.1168641,97.00871749,756.6339233,658.1830226,98.4509007,94.08354673,4.36735397,143.3942871,0,143.3942871,2.925170756,140.4691164,0.919947077,4.693339822,1.242259557,-1.242259557,0.317714794,0.167445253,1.886523149,60.67706936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.43668376,2.119276255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3667796,58.32510703,91.80346336,60.44438329,658.1830226,0,0.826741716,34.23452607,-0.826741716,145.7654739,0.98952162,0,743.0897939,60.44438329,782.6494339,5,16,5% +5/25/2018 1:00,64.50345185,277.732679,377.5733176,691.5328987,79.89833513,549.0191073,468.6836946,80.33541268,77.48910553,2.846307156,93.95625185,0,93.95625185,2.409229598,91.54702225,1.125797614,4.847349688,1.855997945,-1.855997945,0.212759348,0.21161012,1.079739325,34.72812826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48547568,1.745478642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782267465,33.38199783,75.26774314,35.12747648,468.6836946,0,0.677746056,47.33223802,-0.677746056,132.667762,0.976226055,0,532.8089775,35.12747648,555.7992083,5,17,4% +5/25/2018 2:00,76.04654915,286.0986077,168.1384855,475.5827018,53.459558,288.4288267,235.3137727,53.11505401,51.84755508,1.267498925,42.37912536,0,42.37912536,1.612002918,40.76712244,1.327262668,4.99336269,3.251980887,-3.251980887,0,0.317949563,0.40300073,12.96188877,0.025310536,1,0.298327707,0,0.924625498,0.963387461,0.724496596,1,49.89841752,1.167890627,0.004277462,0.312029739,0.987941963,0.712438559,0.961238037,0.922476074,0.289923439,12.45946052,50.18834096,13.62735114,229.3578549,0,0.494790437,60.34406756,-0.494790437,119.6559324,0.948947117,0,267.8368162,13.62735114,276.755645,5,18,3% +5/25/2018 3:00,86.96429353,294.7329879,8.938020154,47.00353715,6.44879332,20.0652103,13.74349332,6.321716979,6.254338408,0.067378571,2.361581379,0,2.361581379,0.194454912,2.167126467,1.517813254,5.144061054,13.39540104,-13.39540104,0,0.721501318,0.048613728,1.563584602,0.637759225,1,0.074514269,0,0.954002519,0.992764482,0.724496596,1,6.054472786,0.140881922,0.08372132,0.312029739,0.790161773,0.514658369,0.961238037,0.922476074,0.033561129,1.502976993,6.088033915,1.643858915,4.978453669,0,0.292392746,72.99873931,-0.292392746,107.0012607,0.878997126,0,10.46408038,1.643858915,11.53995316,5,19,10% +5/25/2018 4:00,97.50393997,304.2141968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701764786,5.309539365,-4.439309063,4.439309063,0.710679749,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075567191,85.66618755,-0.075567191,94.33381245,0,0,0,0,0,5,20,0% +5/25/2018 5:00,106.6223188,315.073751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860910519,5.499074341,-1.411721497,1.411721497,0.771572284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130688817,97.50939824,0.130688817,82.49060176,0,0.667411795,0,0,0,5,21,0% +5/25/2018 6:00,114.0143642,327.7503777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98992605,5.720323215,-0.476223039,0.476223039,0.611592626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316136926,108.4294626,0.316136926,71.57053737,0,0.891840684,0,0,0,5,22,0% +5/25/2018 7:00,119.0169448,342.3619453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077237552,5.975343179,0.074296673,-0.074296673,0.51744821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468141115,117.9136998,0.468141115,62.08630021,0,0.943194598,0,0,0,5,23,0% +5/26/2018 8:00,121.0006707,358.3630603,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1118601,6.254615319,0.524296067,-0.524296067,0.440493782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576345239,125.1938946,0.576345239,54.80610539,0,0.963246442,0,0,0,5,0,0% +5/26/2018 9:00,119.6606971,14.50470716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088473149,0.253154897,0.994719398,-0.994719398,0.360046654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633378082,129.2997934,0.633378082,50.70020659,0,0.971058209,0,0,0,5,1,0% +5/26/2018 10:00,115.2068287,29.45530628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010738481,0.514092077,1.614368405,-1.614368405,0.254080433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635355085,129.4463254,0.635355085,50.55367458,0,0.971303849,0,0,0,5,2,0% +5/26/2018 11:00,108.2292655,42.5145109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88895703,0.742018195,2.693576657,-2.693576657,0.069524952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582142602,125.6013834,0.582142602,54.39861659,0,0.964110392,0,0,0,5,3,0% +5/26/2018 12:00,99.40219234,53.69540279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73489554,0.937161572,5.796201322,-5.796201322,0,#DIV/0!,0,0,0.315563123,1,0.170844943,0,0.942722444,0.981484407,0.724496596,1,0,0,0.04696193,0.312029739,0.875471265,0.599967861,0.961238037,0.922476074,0,0,0,0,0,0,-0.477366773,118.5135626,0.477366773,61.48643742,0,0.945258734,0,0,0,5,4,0% +5/26/2018 13:00,88.90355154,63.39718763,0.8323886,5.146855478,0.733901113,0.718046184,0,0.718046184,0.711771287,0.006274897,1.879736144,1.655784065,0.223952079,0.022129826,0.201822253,1.551659691,1.106489661,-51.90284631,51.90284631,0,0.88168088,0.005532457,0.177942822,1,0.881038248,0,0.019264383,0.961238037,1,0.671318716,0.946822121,0.684181634,0.015581458,0.115824807,0.25163956,0.724496596,0.448993192,0.970419149,0.931657186,0.004008246,0.171858593,0.68818988,0.187440051,0,0.196974973,-0.321707899,108.7662429,0.321707899,71.23375711,0,0.894579508,0.68818988,0.363649826,0.926191418,5,5,35% +5/26/2018 14:00,78.25600676,72.14062442,129.2373764,408.2056933,46.15155328,45.7341596,0,45.7341596,44.75991367,0.974245934,91.24820621,58.52146842,32.72673779,1.391639612,31.33509818,1.365824977,1.259091421,-4.806857954,4.806857954,0.647825187,0.357106857,0.753666159,24.2404944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.02493154,1.008238162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.546028567,23.30088525,43.57096011,24.30912341,0,58.52146842,-0.143362695,98.24247798,0.143362695,81.75752202,0,0.701234236,43.57096011,65.34638058,86.33885928,5,6,98% +5/26/2018 15:00,66.79332342,80.48925719,336.298185,661.3075575,75.71059528,116.4287953,40.465996,75.96279926,73.42764149,2.535157772,83.82234227,0,83.82234227,2.28295379,81.53938848,1.165763412,1.40480255,-2.293447136,2.293447136,0.922356249,0.22512936,2.382632886,76.63366387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58144195,1.653992249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726209415,73.66319261,72.30765137,75.31718486,40.465996,0,0.061190887,86.49182882,-0.061190887,93.50817118,0,0,72.30765137,75.31718486,121.6012425,5,7,68% +5/26/2018 16:00,55.02160006,89.12104344,541.5934283,780.5762272,94.11438217,309.1716565,213.8124101,95.35924633,91.2764863,4.082760032,134.1534929,0,134.1534929,2.837895867,131.315597,0.960308081,1.555455641,-1.35043845,1.35043845,0.761092266,0.173773124,3.276855901,105.3949499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.7384305,2.056045895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.374070946,101.3096347,90.11250145,103.3656806,213.8124101,0,0.273916118,74.10256769,-0.273916118,105.8974323,0.867462367,0,275.5867207,103.3656806,343.2374914,5,8,25% +5/26/2018 17:00,43.22487173,99.08389427,722.2331551,844.1049063,107.1580501,514.5630049,405.1916668,109.3713382,103.9268396,5.444498595,178.3450008,0,178.3450008,3.231210583,175.1137902,0.75441633,1.729340191,-0.82136926,0.82136926,0.670616106,0.148370439,3.917245627,125.9920848,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89843124,2.341001068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838031122,121.1083842,102.7364624,123.4493853,405.1916668,0,0.480025248,61.312949,-0.480025248,118.687051,0.945838812,0,485.9824671,123.4493853,566.7776208,5,9,17% +5/26/2018 18:00,31.83155094,112.5187027,863.6187795,879.5841596,116.3219783,704.6068931,585.2821285,119.3247646,112.8144414,6.510323154,212.9019086,0,212.9019086,3.507536827,209.3943717,0.55556537,1.963821832,-0.457556655,0.457556655,0.608400486,0.134691349,4.3042712,138.4401576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4415322,2.541198491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118429832,133.0739453,111.5599621,135.6151438,585.2821285,0,0.665407763,48.2863845,-0.665407763,131.7136155,0.974858105,0,682.126989,135.6151438,770.8843883,5,10,13% +5/26/2018 19:00,21.90540697,134.7470882,955.2832864,898.1849005,121.9463915,859.6577671,734.1871803,125.4705868,118.2692579,7.201328926,235.2966263,0,235.2966263,3.677133639,231.6194927,0.382321476,2.351780347,-0.171544779,0.171544779,0.559489574,0.12765469,4.434022383,142.6134017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6849093,2.664070804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212434122,137.0854263,116.8973434,139.7494971,734.1871803,0,0.817412072,35.17343498,-0.817412072,144.826565,0.988831341,0,842.8846377,139.7494971,934.3478885,5,11,11% +5/26/2018 20:00,16.67724579,175.0648699,990.6460785,904.6334731,124.0646189,965.1899968,837.3984753,127.7915214,120.3236129,7.46790859,243.934617,0,243.934617,3.741006008,240.193611,0.291072849,3.055458385,0.077864987,-0.077864987,0.516837993,0.125236067,4.311576878,138.6751333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6596334,2.710346118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123722771,133.2998129,118.7833562,136.010159,837.3984753,0,0.925677084,22.2293241,-0.925677084,157.7706759,0.995985484,0,952.8200816,136.010159,1041.836011,5,12,9% +5/26/2018 21:00,20.28804303,218.7957891,967.2038444,900.4001422,122.6633424,1011.196234,884.9404528,126.2557812,118.9645901,7.291191128,238.2085223,0,238.2085223,3.698752353,234.50977,0.35409315,3.81870691,0.316191858,-0.316191858,0.476081697,0.126822637,3.955663661,127.2277409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.353289,2.679733489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865864857,122.2961439,117.2191539,124.9758773,884.9404528,0,0.982830201,10.63270089,-0.982830201,169.3672991,0.999126512,0,1001.386622,124.9758773,1083.180834,5,13,8% +5/26/2018 22:00,29.62857924,244.0045184,886.6330583,884.5331207,117.7540211,992.1414944,871.254377,120.8871174,114.2033029,6.683814509,218.5251683,0,218.5251683,3.550718202,214.9744501,0.51711626,4.258682237,0.565628099,-0.565628099,0.433425588,0.132810321,3.399872752,109.3515947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7765587,2.57248325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.463196236,105.1129122,112.2397549,107.6853955,871.254377,0,0.98498785,9.94040052,-0.98498785,170.0595995,0.999237953,0,982.8301947,107.6853955,1053.308132,5,14,7% +5/26/2018 23:00,40.84348788,258.633892,754.7189008,853.1300534,109.3269649,906.8549439,795.1352005,111.7197434,106.0303535,5.689389869,186.2869467,0,186.2869467,3.296611365,182.9903353,0.712853341,4.514012973,0.854705485,-0.854705485,0.383990443,0.14485786,2.692357365,86.59546777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9204089,2.388383712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950603746,83.23885744,103.8710126,85.62724115,795.1352005,0,0.932021088,21.24791024,-0.932021088,158.7520898,0.996353145,0,896.1064705,85.62724115,952.1477873,5,15,6% +5/26/2018 0:00,52.59629536,269.0744502,581.1606077,796.8286545,97.14520612,758.0283553,659.4314014,98.59695387,94.21591973,4.381034144,143.8384042,0,143.8384042,2.929286392,140.9091178,0.917978528,4.696235088,1.235966964,-1.235966964,0.31879089,0.167157245,1.89549792,60.96572882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56392572,2.122258019,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37328179,58.60257749,91.93720751,60.72483551,659.4314014,0,0.827569889,34.15008984,-0.827569889,145.8499102,0.989582142,0,744.4987463,60.72483551,784.2419366,5,16,5% +5/26/2018 1:00,64.38895745,277.876773,379.6245762,692.9316423,80.09825637,550.9188299,470.3740611,80.54476882,77.68299841,2.86177041,94.45963161,0,94.45963161,2.415257961,92.04437365,1.123799309,4.849864603,1.844044789,-1.844044789,0.214803458,0.210993338,1.08883123,35.02055519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.67185289,1.749846171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.78885452,33.66308972,75.46070741,35.41293589,470.3740611,0,0.678817408,47.24869992,-0.678817408,132.7513001,0.97634249,0,534.7068895,35.41293589,557.8839477,5,17,4% +5/26/2018 2:00,75.92673144,286.2268313,170.2793288,478.9096013,53.82647771,291.0832058,237.5961575,53.48704831,52.20341081,1.283637507,42.90926159,0,42.90926159,1.623066901,41.28619468,1.325171454,4.995600613,3.217895557,-3.217895557,0,0.316106941,0.405766725,13.0508527,0.019741293,1,0.301300809,0,0.924162376,0.962924339,0.724496596,1,50.2279882,1.175906445,0.003344922,0.312029739,0.990558604,0.7150552,0.961238037,0.922476074,0.292352488,12.54497603,50.52034069,13.72088248,232.9057021,0,0.49611901,60.25643375,-0.49611901,119.7435663,0.94921773,0,271.5985626,13.72088248,280.5786057,5,18,3% +5/26/2018 3:00,86.84137248,294.8482342,9.802018468,51.21667088,6.979952734,21.89562994,15.05225678,6.843373162,6.769481406,0.073891756,2.58708419,0,2.58708419,0.210471328,2.376612862,1.515667877,5.14607248,12.84743026,-12.84743026,0,0.712093408,0.052617832,1.692370351,0.625030881,1,0.077679955,0,0.953665933,0.992427896,0.724496596,1,6.554215094,0.152485761,0.082435608,0.312029739,0.792963792,0.517460388,0.961238037,0.922476074,0.036288336,1.626770754,6.590503431,1.779256515,5.644131469,0,0.293893697,72.90878951,-0.293893697,107.0912105,0.879870458,0,11.55660797,1.779256515,12.72109578,5,19,10% +5/26/2018 4:00,97.36404413,304.3162308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699323143,5.311320195,-4.513421252,4.513421252,0.698005819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077415151,85.55999611,-0.077415151,94.44000389,0,0,0,0,0,5,20,0% +5/26/2018 5:00,106.4702647,315.1585237,0,0,0,0,0,0,0,0,0,0,0,0,0,1.858256675,5.500553904,-1.420972221,1.420972221,0.773154251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12862957,97.39040758,0.12862957,82.60959242,0,0.661286891,0,0,0,5,21,0% +5/26/2018 6:00,113.8508385,327.8092948,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987071987,5.721351513,-0.477629689,0.477629689,0.611833177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313915928,108.2953818,0.313915928,71.70461821,0,0.890721685,0,0,0,5,22,0% +5/26/2018 7:00,118.8460296,342.3831861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07425452,5.975713901,0.075494471,-0.075494471,0.517243375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465819124,117.7632473,0.465819124,62.23675273,0,0.9426622,0,0,0,5,23,0% +5/27/2018 8:00,120.8303783,358.3376513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108887938,6.254171849,0.527138083,-0.527138083,0.440007768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573990038,125.0289346,0.573990038,54.97106542,0,0.962890474,0,0,0,5,0,0% +5/27/2018 9:00,119.5005883,14.43422466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085678723,0.251924745,0.999422818,-0.999422818,0.359242322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631059806,129.1283564,0.631059806,50.87164358,0,0.970768207,0,0,0,5,1,0% +5/27/2018 10:00,115.0638084,29.35136364,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008242307,0.512277936,1.622357734,-1.622357734,0.252714177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633141388,129.2822706,0.633141388,50.71772941,0,0.971028698,0,0,0,5,2,0% +5/27/2018 11:00,108.1056288,42.39024256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886799163,0.739849303,2.710200169,-2.710200169,0.066682164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580094009,125.457155,0.580094009,54.54284496,0,0.963807074,0,0,0,5,3,0% +5/27/2018 12:00,99.29674428,53.55933408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733055124,0.934786725,5.859043648,-5.859043648,0,#DIV/0!,0,0,0.320560683,1,0.169047406,0,0.942952279,0.981714242,0.724496596,1,0,0,0.04760734,0.312029739,0.873880831,0.598377427,0.961238037,0.922476074,0,0,0,0,0,0,-0.475532518,118.3940279,0.475532518,61.60597211,0,0.94485472,0,0,0,5,4,0% +5/27/2018 13:00,88.82317119,63.2524636,0.972917079,5.91493151,0.851435664,0.833095997,0,0.833095997,0.825761737,0.00733426,2.156003244,1.894434307,0.261568937,0.025673927,0.23589501,1.550256789,1.10396375,-48.34256183,48.34256183,0,0.875136928,0.006418482,0.206440434,1,0.87174914,0,0.020682756,0.961238037,1,0.667518222,0.943021626,0.793753591,0.018044965,0.115824807,0.247328437,0.724496596,0.448993192,0.9710453,0.932283337,0.004650168,0.199436745,0.798403759,0.21748171,0,0.24296283,-0.320280007,108.6798594,0.320280007,71.32014062,0,0.893886603,0.798403759,0.434662929,1.082881953,5,5,36% +5/27/2018 14:00,78.17824436,71.98622363,130.5837928,410.7829396,46.42762841,46.0120599,0,46.0120599,45.02766411,0.984395789,91.41404135,58.35252463,33.06151671,1.399964296,31.66155242,1.364467768,1.256396618,-4.774796148,4.774796148,0.653308079,0.355538979,0.7644528,24.58742983,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.28230345,1.014269367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.553843451,23.63437278,43.8361469,24.64864215,0,58.35252463,-0.142051967,98.16660219,0.142051967,81.83339781,0,0.698016138,43.8361469,65.37964603,86.62581764,5,6,98% +5/27/2018 15:00,66.72327997,80.32078847,337.5670188,662.3000639,75.84438322,117.3248788,41.22276084,76.102118,73.55739523,2.544722777,84.13401991,0,84.13401991,2.28698799,81.84703192,1.164540923,1.401862217,-2.286962076,2.286962076,0.921247238,0.224679483,2.389345485,76.84956411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.70616619,1.656915014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.73107267,73.87072414,72.43723886,75.52763915,41.22276084,0,0.062241819,86.43149983,-0.062241819,93.56850017,0,0,72.43723886,75.52763915,121.8685681,5,7,68% +5/27/2018 16:00,54.95507443,88.93043902,542.6936095,781.0498591,94.20028702,310.0219252,214.5710707,95.45085447,91.35980081,4.091053663,134.4228349,0,134.4228349,2.840486216,131.5823487,0.95914699,1.552128966,-1.348652043,1.348652043,0.760786772,0.173579134,3.28228998,105.5697286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.81851557,2.057922594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378007917,101.4776386,90.19652349,103.5355612,214.5710707,0,0.274721349,74.05459094,-0.274721349,105.9454091,0.867997399,0,276.4436548,103.5355612,344.2056089,5,8,25% +5/27/2018 17:00,43.15558382,98.85793562,723.1988944,844.3817968,107.2231545,515.2682628,405.8265032,109.4417595,103.9899808,5.451778746,178.5811186,0,178.5811186,3.23317372,175.3479448,0.753207028,1.725396468,-0.821172146,0.821172146,0.670582397,0.148262332,3.922132945,126.1492777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.95912498,2.342423354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.841571967,121.2594841,102.8006969,123.6019074,405.8265032,0,0.480619673,61.27411833,-0.480619673,118.7258817,0.945967638,0,486.6994355,123.6019074,567.5944119,5,9,17% +5/27/2018 18:00,31.74864811,112.2386621,864.5115158,879.7798989,116.3777981,705.1793295,585.7936984,119.3856311,112.8685781,6.517052977,213.120046,0,213.120046,3.509220002,209.610826,0.554118443,1.958934202,-0.458119044,0.458119044,0.60849666,0.134616828,4.309072808,138.5945939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4935705,2.542417946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121908581,133.2223953,111.615479,135.7648133,585.7936984,0,0.665841194,48.2531081,-0.665841194,131.7468919,0.974907019,0,682.7098674,135.7648133,771.5652224,5,10,13% +5/27/2018 19:00,21.78852592,134.4191227,956.1738576,898.3518969,122.0000598,860.1524357,734.6230855,125.5293503,118.3213079,7.208042428,235.5141739,0,235.5141739,3.678751935,231.835422,0.380281516,2.346056268,-0.172601278,0.172601278,0.559670247,0.127591922,4.439092866,142.7764858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7349417,2.665243254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.21610767,137.242189,116.9510494,139.9074322,734.6230855,0,0.817745349,35.14027272,-0.817745349,144.8597273,0.988856271,0,843.3876942,139.9074322,934.9543105,5,11,11% +5/27/2018 20:00,16.5130858,174.9280904,991.6065791,904.8035449,124.1217979,965.6821944,837.8279774,127.854217,120.3790678,7.475149249,244.1692257,0,244.1692257,3.742730169,240.4264955,0.288207717,3.053071132,0.076370537,-0.076370537,0.517093559,0.125172423,4.317198653,138.8559489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7129388,2.711595266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127795728,133.4736198,118.8407345,136.185215,837.8279774,0,0.925977779,22.18373935,-0.925977779,157.8162606,0.996003024,0,953.3199335,136.185215,1042.450433,5,12,9% +5/27/2018 21:00,20.13289807,218.9861027,968.3014852,900.6019627,122.729207,1011.770888,885.4429542,126.3279342,119.0284686,7.299465608,238.4766441,0,238.4766441,3.700738413,234.7759057,0.351385359,3.822028509,0.314191077,-0.314191077,0.476423851,0.126746895,3.962044107,127.4329579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4146914,2.681172382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870487468,122.4934063,117.2851789,125.1745787,885.4429542,0,0.983167915,10.52731565,-0.983167915,169.4726844,0.999143987,0,1001.970183,125.1745787,1083.894441,5,13,8% +5/27/2018 22:00,29.50058123,244.2258564,887.9246084,884.8049889,117.8339664,992.8872294,871.9128411,120.9743883,114.2808375,6.693550759,218.8407302,0,218.8407302,3.553128848,215.2876013,0.514882274,4.262545313,0.562915491,-0.562915491,0.433889471,0.132707175,3.407127112,109.5849198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8510879,2.574229755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.468451994,105.3371932,112.3195399,107.911423,871.9128411,0,0.985429391,9.792762653,-0.985429391,170.2072373,0.999260697,0,983.5877737,107.911423,1054.213642,5,14,7% +5/27/2018 23:00,40.72885849,258.8219181,756.2453783,853.5399645,109.4278479,907.8625083,796.0334167,111.8290916,106.1281945,5.700897101,186.6601008,0,186.6601008,3.29965336,183.3604475,0.710852681,4.517294648,0.850826425,-0.850826425,0.384653802,0.144698865,2.700479031,86.85668846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.0144574,2.390587627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956487865,83.4899527,103.9709452,85.88054033,796.0334167,0,0.932625829,21.15209515,-0.932625829,158.8479049,0.996387931,0,897.1290345,85.88054033,953.3361305,5,15,6% +5/27/2018 0:00,52.48550646,269.2331232,582.9406683,797.5238637,97.27886454,759.3972618,660.657261,98.74000085,94.34554786,4.394452993,144.2740308,0,144.2740308,2.933316687,141.3407141,0.916044897,4.699004456,1.229842995,-1.229842995,0.319838151,0.166876099,1.904296245,61.24871321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68852921,2.125177954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379656147,58.87459284,92.06818535,60.9997708,660.657261,0,0.828385571,34.06674751,-0.828385571,145.9332525,0.989641633,0,745.8821162,60.9997708,785.8052462,5,16,5% +5/27/2018 1:00,64.27646585,278.0143818,381.6386624,694.2962099,80.29385886,552.7852577,472.0356015,80.7496562,77.87270276,2.876953442,94.95386825,0,94.95386825,2.421156097,92.53271216,1.121835961,4.85226633,1.832458098,-1.832458098,0.216784899,0.21039236,1.097751565,35.30746384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.85420393,1.754119351,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.795317272,33.93887723,75.6495212,35.69299658,472.0356015,0,0.679876391,47.16601544,-0.679876391,132.8339846,0.97645722,0,536.5720923,35.69299658,559.9324447,5,17,4% +5/27/2018 2:00,75.80911093,286.349001,172.3833709,482.1449706,54.18397615,293.6844255,239.8347974,53.84962802,52.55012935,1.299498665,43.43019086,0,43.43019086,1.633846799,41.79634407,1.323118589,4.997732878,3.185125175,-3.185125175,0,0.314322523,0.4084617,13.13753234,0.014326561,1,0.304213879,0,0.923706846,0.962468809,0.724496596,1,50.54867799,1.183716444,0.0024336,0.312029739,0.993122261,0.717618857,0.961238037,0.922476074,0.294732023,12.62829579,50.84341001,13.81201224,236.3987895,0,0.497432955,60.1696895,-0.497432955,119.8303105,0.949483941,0,275.3002645,13.81201224,284.3399502,5,18,3% +5/27/2018 3:00,86.72066478,294.957671,10.68972127,55.49977137,7.51491497,23.76248466,16.39358847,7.368896191,7.288312557,0.080583634,2.818449098,0,2.818449098,0.226602413,2.591846684,1.51356113,5.147982512,12.35002507,-12.35002507,0,0.703003827,0.056650603,1.822078139,0.612677077,1,0.080795228,0,0.953332411,0.992094374,0.724496596,1,7.057606912,0.164172677,0.081176046,0.312029739,0.795721643,0.520218238,0.961238037,0.922476074,0.039032994,1.751450813,7.096639906,1.915623491,6.349612609,0,0.295381189,72.81960345,-0.295381189,107.1803965,0.880727203,0,12.68891646,1.915623491,13.94265372,5,19,10% +5/27/2018 4:00,97.22729476,304.4126223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696936416,5.313002544,-4.588977648,4.588977648,0.685084914,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.079236318,85.45532938,-0.079236318,94.54467062,0,0,0,0,0,5,20,0% +5/27/2018 5:00,106.3220647,315.2378942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855670096,5.50193918,-1.430315846,1.430315846,0.774752105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126605675,97.27349092,0.126605675,82.72650908,0,0.655072994,0,0,0,5,21,0% +5/27/2018 6:00,113.6919893,327.8633499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984299547,5.722294953,-0.479131139,0.479131139,0.61208994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311739848,108.1641131,0.311739848,71.83588687,0,0.889609853,0,0,0,5,22,0% +5/27/2018 7:00,118.6806053,342.4006555,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071367321,5.9760188,0.076569847,-0.076569847,0.517059475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463551965,117.6165479,0.463551965,62.38345207,0,0.942137228,0,0,0,5,23,0% +5/28/2018 8:00,120.6661814,358.3101454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106022162,6.25369178,0.529818812,-0.529818812,0.439549337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571699251,124.8688049,0.571699251,55.13119513,0,0.962541428,0,0,0,5,0,0% +5/28/2018 9:00,119.3468158,14.36351319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082994888,0.250690597,1.003899909,-1.003899909,0.358476694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628814533,128.962715,0.628814533,51.037285,0,0.970485298,0,0,0,5,1,0% +5/28/2018 10:00,114.9270276,29.24874446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005855031,0.510486893,1.629989432,-1.629989432,0.25140908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631007704,129.1245083,0.631007704,50.87549166,0,0.970761665,0,0,0,5,2,0% +5/28/2018 11:00,107.9879478,42.26835384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884745241,0.737721944,2.726121851,-2.726121851,0.063959397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578130375,125.3191503,0.578130375,54.6808497,0,0.963514318,0,0,0,5,3,0% +5/28/2018 12:00,99.19692173,53.42632025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731312892,0.932465196,5.919687066,-5.919687066,0,#DIV/0!,0,0,0.325314662,1,0.167347936,0,0.943168909,0.981930872,0.724496596,1,0,0,0.048218817,0.312029739,0.87237706,0.596873656,0.961238037,0.922476074,0,0,0,0,0,0,-0.47378576,118.2803204,0.47378576,61.71967963,0,0.944467069,0,0,0,5,4,0% +5/28/2018 13:00,88.74722008,63.11126991,1.118983594,6.710400967,0.972271466,0.951389265,0,0.951389265,0.942953894,0.008435371,2.440743076,2.140114977,0.300628099,0.029317572,0.271310527,1.548931192,1.101499455,-45.39751379,45.39751379,0,0.868888044,0.007329393,0.235738474,1,0.862893228,0,0.022024076,0.961238037,1,0.663938713,0.939442117,0.90640315,0.020572495,0.115824807,0.243268721,0.724496596,0.448993192,0.971631312,0.932869349,0.00531012,0.227798044,0.91171327,0.248370539,0,0.293424256,-0.318925052,108.597929,0.318925052,71.40207096,0,0.893223354,0.91171327,0.510463936,1.245801707,5,5,37% +5/28/2018 14:00,78.10555538,71.83577145,131.8441457,413.1777792,46.68435933,46.27055051,0,46.27055051,45.27665365,0.993896861,91.560793,58.18594776,33.37484524,1.407705681,31.96713955,1.363199106,1.253770733,-4.745184758,4.745184758,0.658371925,0.354087465,0.774581735,24.91321121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52164167,1.019877974,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56118183,23.94752624,44.0828235,24.96740421,0,58.18594776,-0.140825453,98.09561444,0.140825453,81.90438556,0,0.694950546,44.0828235,65.4037604,86.8882766,5,6,97% +5/28/2018 15:00,66.65822033,80.15672799,338.7452576,663.2178643,75.96831068,118.1552567,41.92406602,76.23119066,73.67758582,2.553604839,84.42343443,0,84.42343443,2.29072486,82.13270957,1.163405418,1.398998821,-2.281006635,2.281006635,0.920228798,0.224263835,2.395584179,77.05022198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.82169795,1.659622363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.735592583,74.06360411,72.55729053,75.72322648,41.92406602,0,0.063213113,86.37573896,-0.063213113,93.62426104,0,0,72.55729053,75.72322648,122.1166278,5,7,68% +5/28/2018 16:00,54.89355858,88.74480756,543.7102154,781.4863547,94.27957901,310.798909,215.2634899,95.53541912,91.43670185,4.098717268,134.6717137,0,134.6717137,2.842877162,131.8288366,0.958073335,1.548889086,-1.347064791,1.347064791,0.760515336,0.173400419,3.287343711,105.7322739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89243578,2.059654826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381669328,101.6338834,90.27410511,103.6935382,215.2634899,0,0.275453933,74.01093258,-0.275453933,105.9890674,0.868481444,0,277.2264517,103.6935382,345.0917986,5,8,24% +5/28/2018 17:00,43.09152928,98.63760405,724.0906106,844.6369818,107.2832335,515.9038914,406.3971424,109.506749,104.0482481,5.45850088,178.7991371,0,178.7991371,3.234985322,175.5641518,0.752089066,1.721550957,-0.821064414,0.821064414,0.670563974,0.148162719,3.926704219,126.2963056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0151338,2.343735853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.844883839,121.4008129,102.8600176,123.7445487,406.3971424,0,0.481150069,61.23945817,-0.481150069,118.7605418,0.946082318,0,487.3451681,123.7445487,568.3335003,5,9,17% +5/28/2018 18:00,31.67150879,111.9645505,865.3403304,879.9613456,116.4296013,705.6901461,586.248026,119.4421201,112.9188192,6.523300932,213.3225637,0,213.3225637,3.510782058,209.8117817,0.552772107,1.954150053,-0.458720574,0.458720574,0.608599528,0.134547758,4.313608306,138.740471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5418641,2.54354965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.125194533,133.362618,111.6670586,135.9061677,586.248026,0,0.666220203,48.22399577,-0.666220203,131.7760042,0.974949739,0,683.2294186,135.9061677,772.1772873,5,10,13% +5/28/2018 19:00,21.67822938,134.0943163,957.0101125,898.508486,122.0504391,860.5951223,735.0106077,125.5845146,118.3701681,7.214346471,235.7184527,0,235.7184527,3.680271058,232.0381817,0.378356479,2.340387328,-0.173667788,0.173667788,0.559852631,0.127533072,4.443936256,142.9322659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.781908,2.666343854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219616689,137.3919307,117.0015247,140.0582745,735.0106077,0,0.81803413,35.11151593,-0.81803413,144.8884841,0.988877856,0,843.8372385,140.0582745,935.502578,5,11,11% +5/28/2018 20:00,16.35529999,174.7842851,992.5210893,904.9652309,124.1762224,966.1320891,838.2181947,127.9138944,120.4318512,7.482043214,244.3926004,0,244.3926004,3.744371268,240.6482291,0.285453835,3.050561256,0.074887449,-0.074887449,0.517347182,0.125111923,4.322621806,139.0303762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7636762,2.712784237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131724783,133.6412859,118.895401,136.3540701,838.2181947,0,0.926243535,22.14337722,-0.926243535,157.8566228,0.996018517,0,953.7762439,136.3540701,1043.017256,5,12,9% +5/28/2018 21:00,19.98225509,219.1653449,969.3595627,900.7961681,122.7926736,1012.311774,885.9143104,126.3974632,119.0900214,7.307441843,238.735101,0,238.735101,3.702652165,235.0324488,0.348756143,3.825156875,0.312221929,-0.312221929,0.476760595,0.126674021,3.968243701,127.6323582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4738584,2.682558889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.874979053,122.6850774,117.3488374,125.3676363,885.9143104,0,0.983479217,10.42924007,-0.983479217,169.5707599,0.999160085,0,1002.519055,125.3676363,1084.569666,5,13,8% +5/28/2018 22:00,29.37561621,244.4370708,889.1806755,885.0688035,117.9116735,993.6055652,872.5463442,121.059221,114.3562015,6.703019524,219.1476214,0,219.1476214,3.555472004,215.5921494,0.512701223,4.266231699,0.560259354,-0.560259354,0.434343697,0.132607103,3.41420807,109.8126678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9235306,2.575927364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.473582124,105.5561132,112.3971128,108.1320406,872.5463442,0,0.985851428,9.649555665,-0.985851428,170.3504443,0.999282419,0,984.317334,108.1320406,1055.087592,5,14,7% +5/28/2018 23:00,40.61652852,259.0014651,757.7378649,853.9395608,109.5263981,908.845882,796.9099608,111.9359212,106.2237731,5.712148095,187.0249431,0,187.0249431,3.302625013,183.7223181,0.708892153,4.520428334,0.847042223,-0.847042223,0.385300938,0.144543916,2.708426145,87.11229497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1063311,2.39274058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962245522,83.7356514,104.0685767,86.12839198,796.9099608,0,0.933215882,21.05820621,-0.933215882,158.9417938,0.996421829,0,898.1270575,86.12839198,954.4963675,5,15,6% +5/28/2018 0:00,52.37674891,269.3845093,584.6856951,798.20254,97.40967953,760.7407585,661.8607325,98.88002603,94.47241829,4.407607742,144.7010773,0,144.7010773,2.937261241,141.763816,0.91414672,4.701646641,1.223888418,-1.223888418,0.320856443,0.166601783,1.912914856,61.52591737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.81048189,2.128035771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385900301,59.14105203,92.19638219,61.2690878,661.8607325,0,0.829188958,33.98448568,-0.829188958,146.0155143,0.989700114,0,747.2400243,61.2690878,787.3394169,5,16,5% +5/28/2018 1:00,64.16601954,278.1454557,383.6148685,695.6266933,80.4851194,554.6181961,473.6681491,80.95004701,78.05819609,2.891850918,95.43878951,0,95.43878951,2.426923308,93.0118662,1.119908309,4.854554002,1.821236219,-1.821236219,0.218703953,0.20980709,1.106495625,35.58870285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03250717,1.758297675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.801652314,34.20921486,75.83415948,35.96751254,473.6681491,0,0.680922905,47.08419571,-0.680922905,132.9158043,0.976570248,0,538.4043814,35.96751254,561.944399,5,17,4% +5/28/2018 2:00,75.69374091,286.4650844,174.4494393,485.2893631,54.53207524,296.2320693,242.0292637,54.20280554,52.88773197,1.315073562,43.94162955,0,43.94162955,1.644343271,42.29728627,1.321105002,4.999758915,3.153638166,-3.153638166,0,0.312595302,0.411085818,13.22193299,0.009067232,1,0.307064733,0,0.923259364,0.962021327,0.724496596,1,50.86053796,1.191321102,0.001544009,0.312029739,0.995631033,0.720127629,0.961238037,0.922476074,0.29706117,12.70942491,51.15759913,13.90074602,239.8347282,0,0.498731854,60.08386446,-0.498731854,119.9161355,0.949745726,0,278.9396072,13.90074602,288.0373674,5,18,3% +5/28/2018 3:00,86.60225988,295.0612813,11.59764089,59.83364423,8.051480268,25.65798608,17.76185974,7.896126347,7.808698431,0.087427916,3.054764145,0,3.054764145,0.242781837,2.811982308,1.511494575,5.149790854,11.89715071,-11.89715071,0,0.694234314,0.060695459,1.952174608,0.6006994,1,0.083856626,0,0.953002442,0.991764405,0.724496596,1,7.562569169,0.175894614,0.079943694,0.312029739,0.79843219,0.522928786,0.961238037,0.922476074,0.041784181,1.876504487,7.60435335,2.052399102,7.092321254,0,0.296854052,72.7312522,-0.296854052,107.2687478,0.881567062,0,13.85671016,2.052399102,15.19996433,5,19,10% +5/28/2018 4:00,97.09376006,304.5033709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694605796,5.314586405,-4.665920244,4.665920244,0.671926955,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081029714,85.35224384,-0.081029714,94.64775616,0,0,0,0,0,5,20,0% +5/28/2018 5:00,106.1777897,315.3118806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853152023,5.503230488,-1.439742367,1.439742367,0.776364135,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124618328,97.15871525,0.124618328,82.84128475,0,0.648774909,0,0,0,5,21,0% +5/28/2018 6:00,113.5378858,327.9125798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981609933,5.723154177,-0.480726424,0.480726424,0.61236275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309610036,108.035731,0.309610036,71.96426898,0,0.888506527,0,0,0,5,22,0% +5/28/2018 7:00,118.5207334,342.4144024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068577029,5.976258727,0.077521005,-0.077521005,0.516896817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461341068,117.4736781,0.461341068,62.52632191,0,0.941620314,0,0,0,5,23,0% +5/29/2018 8:00,120.5081314,358.2805915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103263669,6.253175967,0.532334621,-0.532334621,0.439119108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569474306,124.7135756,0.569474306,55.28642435,0,0.962199726,0,0,0,5,0,0% +5/29/2018 9:00,119.1994216,14.29261598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080422374,0.249453208,1.008144534,-1.008144534,0.357750821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626643613,128.8029262,0.626643613,51.19707379,0,0.970209831,0,0,0,5,1,0% +5/29/2018 10:00,114.7965196,29.14749052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003577237,0.508719678,1.637251899,-1.637251899,0.250167125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628955226,128.973083,0.628955226,51.02691701,0,0.970503085,0,0,0,5,2,0% +5/29/2018 11:00,107.876247,42.1488915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882795694,0.735636933,2.741311392,-2.741311392,0.061361832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576252668,125.1874046,0.576252668,54.81259542,0,0.963232506,0,0,0,5,3,0% +5/29/2018 12:00,99.10273922,53.29641639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729669097,0.930197946,5.977943344,-5.977943344,0,#DIV/0!,0,0,0.329819276,1,0.165746943,0,0.943372395,0.982134358,0.724496596,1,0,0,0.048796003,0.312029739,0.870960333,0.595456928,0.961238037,0.922476074,0,0,0,0,0,0,-0.472127199,118.1724664,0.472127199,61.82753356,0,0.944096336,0,0,0,5,4,0% +5/29/2018 13:00,88.67576999,62.97367164,1.268601631,7.522635783,1.094752645,1.071305068,0,1.071305068,1.061741813,0.009563255,2.730122042,2.389524057,0.340597984,0.033010831,0.307587153,1.547684153,1.099097912,-42.93465995,42.93465995,0,0.862960143,0.008252708,0.265435453,1,0.8544907,0,0.023286995,0.961238037,1,0.660581341,0.936084745,1.020586616,0.023129688,0.115824807,0.239461601,0.724496596,0.448993192,0.97217766,0.933415697,0.005979059,0.256553302,1.026565675,0.27968299,0,0.347697973,-0.317644523,108.5205353,0.317644523,71.4794647,0,0.892591336,1.026565675,0.590035188,1.412731905,5,5,38% +5/29/2018 14:00,78.03793337,71.68934533,133.0181582,415.3933666,46.92204643,46.50992067,0,46.50992067,45.50717361,1.002747064,91.69016569,58.02350036,33.66666532,1.414872824,32.2517925,1.362018879,1.251215115,-4.717942312,4.717942312,0.663030658,0.352749181,0.784044236,25.21755778,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.74322622,1.025070544,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56803738,24.24007573,44.3112636,25.26514628,0,58.02350036,-0.139683262,98.02951839,0.139683262,81.97048161,0,0.692047305,44.3112636,65.42015333,87.12744555,5,6,97% +5/29/2018 15:00,66.5981257,79.99717064,339.8333076,664.0621466,76.08249038,118.9198155,42.56968593,76.3501296,73.78832258,2.561807019,84.69068768,0,84.69068768,2.2941678,82.39651988,1.162356569,1.39621402,-2.275572019,2.275572019,0.919299424,0.223881793,2.401352882,77.23576327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.92814234,1.662116761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.739771988,74.24195346,72.66791433,75.90407023,42.56968593,0,0.064104973,86.32453531,-0.064104973,93.67546469,0,0,72.66791433,75.90407023,122.3456102,5,7,68% +5/29/2018 16:00,54.83702248,88.5642725,544.6439102,781.8862759,94.3523308,311.5030299,215.8900142,95.61301576,91.5072599,4.105755854,134.9002926,0,134.9002926,2.845070897,132.0552217,0.957086594,1.545738155,-1.345674227,1.345674227,0.760277536,0.173236731,3.292020794,105.882705,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96025887,2.06124418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.385057859,101.7784835,90.34531673,103.8397277,215.8900142,0,0.276114341,73.97156736,-0.276114341,106.0284326,0.868915599,0,277.9355178,103.8397277,345.8965428,5,8,24% +5/29/2018 17:00,43.03266836,98.42307677,724.9091095,844.8708078,107.3383498,516.4706209,406.9042473,109.5663735,104.1017025,5.46467107,178.9992536,0,178.9992536,3.236647282,175.7626063,0.751061749,1.71780675,-0.821044845,0.821044845,0.670560627,0.148071459,3.930963024,126.4332834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0665161,2.344939938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.847969329,121.5324812,102.9144854,123.8774211,406.9042473,0,0.481617122,61.20892781,-0.481617122,118.7910722,0.946183093,0,487.9204048,123.8774211,568.9956993,5,9,17% +5/29/2018 18:00,31.60009055,111.6966593,866.1060774,880.1287486,116.4774455,706.1402611,586.6459669,119.4942942,112.9652208,6.529073456,213.5096706,0,213.5096706,3.512224738,209.9974459,0.551525624,1.949474469,-0.459360362,0.459360362,0.608708938,0.134484041,4.317880907,138.8778926,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5864671,2.544594867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128290018,133.4947128,111.7147571,136.0393077,586.6459669,0,0.666545625,48.19898894,-0.666545625,131.8010111,0.97498638,0,683.6865849,136.0393077,772.721591,5,10,13% +5/29/2018 19:00,21.57450474,133.7731582,957.7928641,898.6548621,122.0975815,860.9868295,735.3506934,125.6361361,118.4158889,7.220247183,235.9096614,0,235.9096614,3.681692574,232.2279688,0.376546142,2.334782061,-0.174743508,0.174743508,0.560036589,0.127478066,4.448555113,143.0808242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8258566,2.667373737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222963036,137.5347306,117.0488196,140.2021043,735.3506934,0,0.818279324,35.08708338,-0.818279324,144.9129166,0.988896171,0,844.2343046,140.2021043,935.9937779,5,11,11% +5/29/2018 20:00,16.20394768,174.6335761,993.3902961,905.1186882,124.2279357,966.5406671,838.5700664,127.9706007,120.4820051,7.488595662,244.604909,0,244.604909,3.745930613,240.8589784,0.282812239,3.047930888,0.073416537,-0.073416537,0.517598722,0.125054509,4.327847975,139.1984677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.811886,2.713913977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.135511125,133.8028619,118.9473971,136.5167758,838.5700664,0,0.926475254,22.10812746,-0.926475254,157.8918725,0.996032018,0,954.1900324,136.5167758,1043.537532,5,12,9% +5/29/2018 21:00,19.83614122,219.3331818,970.3785624,900.9828856,122.853774,1012.819761,886.3553583,126.4644029,119.1492794,7.315123493,238.9840117,0,238.9840117,3.704494568,235.2795171,0.346205975,3.828086182,0.310285294,-0.310285294,0.477091779,0.126603965,3.974262948,127.8259579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5308195,2.683893704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.879339977,122.8711728,117.4101594,125.5550665,886.3553583,0,0.983764922,10.3384193,-0.983764922,169.6615807,0.99917485,0,1003.034141,125.5550665,1085.207421,5,13,8% +5/29/2018 22:00,29.25369635,244.6379619,890.4014829,885.3246618,117.9871599,994.2971694,873.1555353,121.1416342,114.4294117,6.712222485,219.4458964,0,219.4458964,3.557748196,215.8881482,0.51057332,4.269737911,0.557660665,-0.557660665,0.434788099,0.132510067,3.421114862,110.034814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.993903,2.577576457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478586071,105.7696486,112.4724891,108.347225,873.1555353,0,0.986254617,9.510750176,-0.986254617,170.4892498,0.999303152,0,985.019568,108.347225,1055.93066,5,14,7% +5/29/2018 23:00,40.50651914,259.1724216,759.1962788,854.328906,109.6226165,909.8054552,797.7652229,112.0402323,106.3170901,5.723142235,187.3814538,0,187.3814538,3.305526351,184.0759275,0.706972127,4.523412087,0.843353928,-0.843353928,0.385931674,0.144392984,2.716196621,87.36222021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.196031,2.394842589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967875206,83.97588905,104.1639062,86.37073164,797.7652229,0,0.933791678,20.96619915,-0.933791678,159.0338008,0.996454867,0,899.1009449,86.37073164,955.6288614,5,15,6% +5/29/2018 0:00,52.27005601,269.5285382,586.3952796,798.8647124,97.53763456,762.0589111,663.0419008,99.01701032,94.596515,4.420495312,145.1194441,0,145.1194441,2.941119558,142.1783246,0.912284578,4.70416042,1.218104068,-1.218104068,0.321845626,0.166334276,1.921350353,61.79723195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92976838,2.130831108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39201179,59.40184992,92.32178017,61.53268103,663.0419008,0,0.829980209,33.90329497,-0.829980209,146.096705,0.9897576,0,748.5725404,61.53268103,788.8444495,5,16,5% +5/29/2018 1:00,64.05766322,278.2699483,385.55245,696.9231523,80.67201058,556.4173967,475.2714877,81.14590904,78.23945181,2.906457226,95.91421405,0,95.91421405,2.432558767,93.48165528,1.118017134,4.856726807,1.810377684,-1.810377684,0.220560872,0.209237448,1.115058611,35.86411793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.20673706,1.762380546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807856168,34.47395432,76.01459323,36.23633486,475.2714877,0,0.681956807,47.00325526,-0.681956807,132.9967447,0.976681574,0,540.2034977,36.23633486,563.9194541,5,17,4% +5/29/2018 2:00,75.58067638,286.5750518,176.4763402,488.3432705,54.8707895,298.7256681,244.1790822,54.54658594,53.21623274,1.330353196,44.4432886,0,44.4432886,1.654556755,42.78873185,1.319131654,5.001678208,3.123404879,-3.123404879,0,0.310924339,0.413639189,13.30405819,0.003964225,1,0.309851181,0,0.922820386,0.961582349,0.724496596,1,51.16361284,1.198720737,0.000676662,0.312029739,0.998083013,0.722579609,0.961238037,0.922476074,0.299339003,12.78836677,51.46295185,13.98708751,243.2111014,0,0.500015249,59.99899111,-0.500015249,120.0010089,0.95000305,0,282.5142399,13.98708751,291.6685089,5,18,3% +5/29/2018 3:00,86.48624585,295.1590508,12.52226344,64.19973269,8.587580901,27.57452603,19.15149427,8.423031763,8.328633652,0.094398111,3.295114998,0,3.295114998,0.258947249,3.036167749,1.509469748,5.151497253,11.48371471,-11.48371471,0,0.685785037,0.064736812,2.082158413,0.58909916,1,0.086860727,0,0.952676516,0.991438479,0.724496596,1,8.067146532,0.1876064,0.078739586,0.312029739,0.801092341,0.525588937,0.961238037,0.922476074,0.044531661,2.001449865,8.111678193,2.189056266,7.869365082,0,0.298311122,72.64380662,-0.298311122,107.3561934,0.882389756,0,15.05552532,2.189056266,16.48821887,5,19,10% +5/29/2018 4:00,96.96350887,304.5884787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692332484,5.316071817,-4.744178758,4.744178758,0.658543961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082794332,85.25079778,-0.082794332,94.74920222,0,0,0,0,0,5,20,0% +5/29/2018 5:00,106.0375111,315.3805039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850703699,5.504428189,-1.449240907,1.449240907,0.777988481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.122668747,97.04614871,0.122668747,82.95385129,0,0.642398217,0,0,0,5,21,0% +5/29/2018 6:00,113.3885964,327.9570236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979004341,5.723929867,-0.482414295,0.482414295,0.612651393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307527851,107.9103103,0.307527851,72.0896897,0,0.8874131,0,0,0,5,22,0% +5/29/2018 7:00,118.3664743,342.4244774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065884701,5.976434569,0.078346348,-0.078346348,0.516755675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459187858,117.3347139,0.459187858,62.66528613,0,0.941112103,0,0,0,5,23,0% +5/30/2018 8:00,120.3562783,358.2490409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100613332,6.252625305,0.534682082,-0.534682082,0.438717668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567316614,124.5633163,0.567316614,55.43668372,0,0.961865793,0,0,0,5,0,0% +5/30/2018 9:00,119.0584458,14.22157892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077961881,0.248213377,1.01215084,-1.01215084,0.357065702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62454836,128.649046,0.62454836,51.35095404,0,0.969942148,0,0,0,5,1,0% +5/30/2018 10:00,114.6723156,29.04764632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001409468,0.506977068,1.644134014,-1.644134014,0.248990214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626985099,128.8280372,0.626985099,51.1719628,0,0.970253288,0,0,0,5,2,0% +5/30/2018 11:00,107.7705481,42.0319046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880950902,0.733595126,2.755739558,-2.755739558,0.05889447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574461807,125.0619509,0.574461807,54.93804911,0,0.962962012,0,0,0,5,3,0% +5/30/2018 12:00,99.01420815,53.16967932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728123939,0.927985966,6.033626791,-6.033626791,0,#DIV/0!,0,0,0.334069081,1,0.164244774,0,0.943562797,0.98232476,0.724496596,1,0,0,0.049338575,0.312029739,0.869630975,0.594127571,0.961238037,0.922476074,0,0,0,0,0,0,-0.470557476,118.0704896,0.470557476,61.92951042,0,0.943743055,0,0,0,5,4,0% +5/30/2018 13:00,88.60888273,62.83973499,1.419717906,8.340672922,1.217229794,1.191228258,0,1.191228258,1.180525825,0.010702433,3.020251404,2.639320392,0.380931013,0.036703969,0.344227043,1.54651675,1.096760277,-40.85764853,40.85764853,0,0.857374405,0.009175992,0.295131456,1,0.846560416,0,0.024470336,0.961238037,1,0.657446891,0.932950295,1.134766326,0.025682502,0.115824807,0.235907853,0.724496596,0.448993192,0.972684844,0.933922881,0.006647975,0.285314565,1.141414302,0.310997067,0,0.404976223,-0.316439743,108.4477516,0.316439743,71.55224837,0,0.891992034,1.141414302,0.672232632,1.581377115,5,5,39% +5/30/2018 14:00,77.97536844,71.54702318,134.1056514,417.4327383,47.14097942,46.73045001,0,46.73045001,45.71950496,1.010945047,91.80373955,57.86679729,33.93694227,1.421474461,32.5154678,1.360926915,1.248731125,-4.692993831,4.692993831,0.667297099,0.351521199,0.792832866,25.50023032,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.94732719,1.029853408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574404713,24.51179134,44.52173191,25.54164474,0,57.86679729,-0.138625441,97.96831423,0.138625441,82.03168577,0,0.689315844,44.52173191,65.43014498,87.34445319,5,6,96% +5/30/2018 15:00,66.54297397,79.84221114,340.8316313,664.8340628,76.18703457,119.6185189,43.15947172,76.45904718,73.88971437,2.569332804,84.93589521,0,84.93589521,2.297320192,82.63857501,1.16139399,1.393509466,-2.270649799,2.270649799,0.918457674,0.223532758,2.40665564,77.40631821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.02560399,1.664400659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743613819,74.40589736,72.76921781,76.07029802,43.15947172,0,0.06491766,86.27787457,-0.06491766,93.72212543,0,0,72.76921781,76.07029802,122.5557065,5,7,68% +5/30/2018 16:00,54.78543276,88.38895632,545.4953993,782.2501754,94.41861623,312.1347668,216.4510455,95.68372132,91.57154658,4.112174738,135.1087447,0,135.1087447,2.847069647,132.2616751,0.956186184,1.54267831,-1.344477879,1.344477879,0.760072948,0.173087832,3.296325033,106.0211441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.02205367,2.062692267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388176265,101.9115564,90.41022993,103.9742487,216.4510455,0,0.276703096,73.93646668,-0.276703096,106.0635333,0.869300902,0,278.5713189,103.9742487,346.6203852,5,8,24% +5/30/2018 17:00,42.9789578,98.21452901,725.655223,845.083617,107.3885671,516.9692234,407.3485222,109.6207011,104.1504056,5.470295589,179.1816717,0,179.1816717,3.238161519,175.9435102,0.750124323,1.714166904,-0.821112169,0.821112169,0.67057214,0.147988416,3.934912977,126.5603275,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1133314,2.346036997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.850831057,121.6546008,102.9641624,124.0006378,407.3485222,0,0.482021559,61.18248337,-0.482021559,118.8175166,0.9462702,0,488.4259299,124.0006378,569.5818673,5,9,17% +5/30/2018 18:00,31.53434695,111.4352775,866.8096216,880.2823532,116.521389,706.5306199,586.9884036,119.5422162,113.0078392,6.53437707,213.6815781,0,213.6815781,3.513549795,210.1680283,0.550378182,1.944912496,-0.46003747,0.46003747,0.60882473,0.134425583,4.321893804,139.0069612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6274335,2.545554866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131197349,133.6187784,111.7586308,136.1643333,586.9884036,0,0.666818324,48.17802607,-0.666818324,131.8219739,0.975017058,0,684.082337,136.1643333,773.1991698,5,10,13% +5/30/2018 19:00,21.47733423,133.456145,958.5229204,898.7912149,122.1415382,861.3285711,735.6443002,125.6842709,118.4585202,7.225750656,236.0879975,0,236.0879975,3.683018032,232.4049794,0.374850197,2.329249137,-0.175827586,0.175827586,0.560221978,0.127426831,4.452951919,143.2222407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8668354,2.668334027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.226148507,137.6706654,117.0929839,140.3389995,735.6443002,0,0.818481854,35.06689096,-0.818481854,144.933109,0.988911291,0,844.5799384,140.3389995,936.4290068,5,11,11% +5/30/2018 20:00,16.05908664,174.4761191,994.2148669,905.2640684,124.2769797,966.9089084,838.8845265,128.0243819,120.5295703,7.494811624,244.8063146,0,244.8063146,3.747409472,241.0589051,0.280283937,3.045182745,0.071958665,-0.071958665,0.517848033,0.125000122,4.332878671,139.3602722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8576075,2.714985406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139155847,133.9583945,118.9967634,136.6733799,838.8845265,0,0.926673836,22.07787602,-0.926673836,157.922124,0.996043583,0,954.5623128,136.6733799,1044.012306,5,12,9% +5/30/2018 21:00,19.69458615,219.4892928,971.358938,901.1622345,122.912538,1013.2957,886.7669148,126.5287855,119.2062715,7.322513978,239.223487,0,239.223487,3.70626652,235.5172205,0.343735373,3.830810832,0.308382099,-0.308382099,0.477417245,0.126536683,3.98010219,128.0137679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5856024,2.685177477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.883570488,123.051703,117.4691729,125.7368805,886.7669148,0,0.984025829,10.25478647,-0.984025829,169.7452135,0.999188326,0,1003.516322,125.7368805,1085.808595,5,13,8% +5/30/2018 22:00,29.13483737,244.828338,891.5872126,885.5726506,118.0604402,994.9626728,873.7410295,121.2216434,114.5004823,6.721161017,219.7356,0,219.7356,3.559957869,216.1756421,0.508498839,4.273060601,0.555120445,-0.555120445,0.435222503,0.132416031,3.427846542,110.2513279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0622189,2.579177358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.483463151,105.97777,112.545682,108.5569474,873.7410295,0,0.986639582,9.376319093,-0.986639582,170.6236809,0.999322933,0,985.6951304,108.5569474,1056.743481,5,14,7% +5/30/2018 23:00,40.39885496,259.3346811,760.6204917,854.7080486,109.7165004,910.7415695,798.5995478,112.1420217,106.4081431,5.733878554,187.7296017,0,187.7296017,3.308357299,184.4212444,0.705093033,4.52624405,0.83976264,-0.83976264,0.38654582,0.144246049,2.723788193,87.60639124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2835546,2.396893601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973375274,84.21059554,104.2569299,86.60748914,798.5995478,0,0.934353607,20.8760347,-0.934353607,159.1239653,0.996487069,0,900.0510527,86.60748914,956.7339222,5,15,6% +5/30/2018 0:00,52.16546419,269.6651439,588.0689649,799.5103885,97.66270928,763.3517285,664.200798,99.15093052,94.71781826,4.433112259,145.52902,0,145.52902,2.944891022,142.584129,0.910459106,4.706544639,1.212490859,-1.212490859,0.322805541,0.166073565,1.929599171,62.0625423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.04636968,2.13356352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397988031,59.65687633,92.44435771,61.79043985,664.200798,0,0.830759434,33.82317053,-0.830759434,146.1768295,0.989814105,0,749.8796762,61.79043985,790.3202833,5,16,5% +5/30/2018 1:00,63.9514442,278.3878161,387.4506179,698.1856097,80.85450007,558.1825485,476.8453435,81.33720499,78.41643857,2.920766418,96.37994957,0,96.37994957,2.438061499,93.94188807,1.116163263,4.858783988,1.799881246,-1.799881246,0.222355869,0.208683368,1.123435608,36.13355094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37686347,1.766367256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813925274,34.73294357,76.19078875,36.49931083,476.8453435,0,0.682977903,46.92321256,-0.682977903,133.0767874,0.976791189,0,541.9691189,36.49931083,565.8571879,5,17,4% +5/30/2018 2:00,75.46997446,286.6788764,178.4628506,491.3071122,55.20012485,301.1646894,246.2837236,54.88096577,53.53563742,1.345328351,44.93487173,0,44.93487173,1.664487431,43.2703843,1.317199541,5.00349029,3.094397571,-3.094397571,0.000980539,0.30930877,0.417032981,13.41321422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46049102,1.205915478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.302138975,12.8932917,51.76262999,14.09920718,246.2837236,0,0.501282635,59.91510523,-0.501282635,120.0848948,0.950255871,0,285.7951842,14.09920718,295.0228333,5,18,3% +5/30/2018 3:00,86.37270998,295.250968,13.46006763,68.58020481,9.121281084,29.50470913,20.55700065,8.947708481,8.846240806,0.101467675,3.538589511,0,3.538589511,0.275040279,3.263549233,1.507488173,5.153101512,11.10539326,-11.10539326,0,0.677654922,0.06876007,2.211560201,0.577877471,1,0.08980414,0,0.952355129,0.991117093,0.724496596,1,8.569507635,0.199265746,0.077564728,0.312029739,0.803699037,0.528195633,0.961238037,0.922476074,0.047265867,2.125835786,8.616773503,2.325101532,8.677573097,0,0.299751229,72.55733805,-0.299751229,107.442662,0.883195012,0,16.28076278,2.325101532,17.80249523,5,19,9% +5/30/2018 4:00,96.83661105,304.6679507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690117699,5.317458866,-4.823669332,4.823669332,0.644950272,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084529126,85.15105167,-0.084529126,94.84894833,0,0,0,0,0,5,20,0% +5/30/2018 5:00,105.9013003,315.4437871,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848326372,5.50553269,-1.458799652,1.458799652,0.779623123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120758174,96.93586097,0.120758174,83.06413903,0,0.635949354,0,0,0,5,21,0% +5/30/2018 6:00,113.2441893,327.9967225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976483961,5.724622744,-0.484193186,0.484193186,0.612955601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305494666,107.7879267,0.305494666,72.21207335,0,0.886331021,0,0,0,5,22,0% +5/30/2018 7:00,118.217888,342.4309337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063291381,5.976547253,0.079044502,-0.079044502,0.516636284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457093758,117.1997314,0.457093758,62.80026856,0,0.940613251,0,0,0,5,23,0% +5/31/2018 8:00,120.2106707,358.2155474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098072,6.252040734,0.536858001,-0.536858001,0.438345564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565227569,124.4180956,0.565227569,55.58190441,0,0.961540054,0,0,0,5,0,0% +5/31/2018 9:00,118.9239264,14.15045095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075614075,0.24697196,1.015913289,-1.015913289,0.356422285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622530059,128.5011291,0.622530059,51.49887092,0,0.969682593,0,0,0,5,1,0% +5/31/2018 10:00,114.5544442,28.94925937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999352223,0.505259892,1.650625195,-1.650625195,0.247880157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625098426,128.689412,0.625098426,51.31058799,0,0.970012597,0,0,0,5,2,0% +5/31/2018 11:00,107.67087,41.91744476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879211191,0.731597425,2.769378367,-2.769378367,0.056562097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572758652,124.9428199,0.572758652,55.05718014,0,0.962703196,0,0,0,5,3,0% +5/31/2018 12:00,98.93133665,53.04616776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726677558,0.925830283,6.086555794,-6.086555794,0,#DIV/0!,0,0,0.338058998,1,0.162841716,0,0.943740179,0.982502142,0.724496596,1,0,0,0.049846239,0.312029739,0.868389256,0.592885852,0.961238037,0.922476074,0,0,0,0,0,0,-0.469077169,117.9744103,0.469077169,62.02558975,0,0.943407731,0,0,0,5,4,0% +5/31/2018 13:00,88.5466104,62.7095274,1.570262243,9.153496891,1.338095569,1.309584351,0,1.309584351,1.297747051,0.0118373,3.307282952,2.886206173,0.421076779,0.040348518,0.380728261,1.545429893,1.094487725,-39.09508138,39.09508138,0,0.852147834,0.01008713,0.324436763,1,0.839119827,0,0.025573089,0.961238037,1,0.654535808,0.930039212,1.247443828,0.028197919,0.115824807,0.232607867,0.724496596,0.448993192,0.973153381,0.934391417,0.007308091,0.313703535,1.254751919,0.341901454,0,0.464333347,-0.315311865,108.3796418,0.315311865,71.6203582,0,0.891426836,1.254751919,0.75582066,1.749421424,5,5,39% +5/31/2018 14:00,77.91784714,71.40888353,135.1065437,419.2988194,47.34143828,46.93240944,0,46.93240944,45.91391925,1.018490195,91.90297272,57.71730797,34.18566476,1.427519035,32.75814572,1.359922979,1.246320133,-4.670270291,4.670270291,0.671183053,0.35040078,0.800941472,25.76103095,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.1342056,1.034232682,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.58027937,24.76248282,44.71448497,25.7967155,0,57.71730797,-0.137651969,97.91199849,0.137651969,82.08800151,0,0.686765093,44.71448497,65.43494789,87.54034967,5,6,96% +5/31/2018 15:00,66.49273951,79.69194411,341.7407499,665.5347335,76.28205536,120.2514084,43.69335231,76.55805607,73.98186994,2.576186125,85.15918677,0,85.15918677,2.30018542,82.85900135,1.160517233,1.390886812,-2.266231868,2.266231868,0.917702164,0.223216153,2.411496652,77.56202179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.11418743,1.666476507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121115,74.55556555,72.86130854,76.22204206,43.69335231,0,0.065651498,86.23573886,-0.065651498,93.76426114,0,0,72.86130854,76.22204206,122.7471106,5,7,68% +5/31/2018 16:00,54.73875261,88.21898058,546.2654308,782.5785984,94.47851049,312.6946572,216.9470428,95.74761437,91.62963481,4.117979561,135.2972538,0,135.2972538,2.84887568,132.4483781,0.955371462,1.539711674,-1.343473253,1.343473253,0.759901147,0.172953486,3.300260337,106.147717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.07789028,2.064000732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39102738,102.0332231,90.46891766,104.0972239,216.9470428,0,0.277220771,73.90559854,-0.277220771,106.0944015,0.869638335,0,279.1343827,104.0972239,347.2639337,5,8,24% +5/31/2018 17:00,42.9303508,98.01213396,726.3298102,845.2757484,107.4339501,517.4005155,407.7307145,109.669801,104.1944201,5.475380912,179.3466016,0,179.3466016,3.239529984,176.1070716,0.749275971,1.710634445,-0.821265056,0.821265056,0.670598286,0.147913453,3.938557736,126.6775555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1556398,2.347028445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853471673,121.7672848,103.0091115,124.1143132,407.7307145,0,0.482364146,61.16007771,-0.482364146,118.8399223,0.946343871,0,488.8625743,124.1143132,570.09291,5,9,17% +5/31/2018 18:00,31.47422748,111.1806914,867.4518387,880.4224013,116.5614899,706.8621961,587.2762468,119.5859493,113.0467309,6.539218373,213.8385003,0,213.8385003,3.514758987,210.3237413,0.549328899,1.940469129,-0.460750899,0.460750899,0.608946734,0.13437229,4.325650166,139.1277787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6648177,2.546430921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13391882,133.7349128,111.7987365,136.2813437,587.2762468,0,0.667039192,48.16104258,-0.667039192,131.8389574,0.975041886,0,684.4176756,136.2813437,773.6110895,5,10,13% +5/31/2018 19:00,21.3866949,133.1437803,959.201084,898.9177297,122.1823602,861.6213719,735.8923977,125.7289742,118.4981113,7.230862939,236.253657,0,236.253657,3.684248966,232.5694081,0.373268242,2.323797345,-0.176919116,0.176919116,0.56040864,0.127379297,4.457129071,143.3565922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9048918,2.669225834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.229174839,137.7998093,117.1340667,140.4690351,735.8923977,0,0.818642656,35.05085167,-0.818642656,144.9491483,0.98892329,0,844.8751978,140.4690351,936.8093719,5,11,11% +5/31/2018 20:00,15.92077293,174.312105,994.9954488,905.4015166,124.3233953,967.2377867,839.1625046,128.0752822,120.5745862,7.500695981,244.9969753,0,244.9969753,3.748809072,241.2481662,0.277869907,3.042320158,0.070514744,-0.070514744,0.518094958,0.124948707,4.337715269,139.5158339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9008785,2.715999411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142659946,134.1079262,119.0435385,136.8239257,839.1625046,0,0.92684018,22.05250522,-0.92684018,157.9474948,0.996053267,0,954.8940924,136.8239257,1044.442615,5,12,9% +5/31/2018 21:00,19.5576224,219.6333721,972.3011099,901.334326,122.9689933,1013.740417,887.1497757,126.5906409,119.2610244,7.329616468,239.4536299,0,239.4536299,3.707968854,235.745661,0.341344905,3.83332549,0.306513319,-0.306513319,0.477736825,0.126472131,3.985761597,128.1957939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.638233,2.686410812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887670709,123.2266733,117.5259037,125.9130841,887.1497757,0,0.98426272,10.17826284,-0.98426272,169.8217372,0.999200555,0,1003.966452,125.9130841,1086.374047,5,13,8% +5/31/2018 22:00,29.01905876,245.0080155,892.7380036,885.8128457,118.1315265,995.6026678,874.3034065,121.2992613,114.5694251,6.729836165,220.0167661,0,220.0167661,3.562101382,216.4546647,0.506478121,4.276196564,0.552639766,-0.552639766,0.435646724,0.132324967,3.434401973,110.4621731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1284893,2.580730325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488212538,106.1804424,112.6167018,108.7611728,874.3034065,0,0.987006918,9.246238315,-0.987006918,170.7537617,0.999341794,0,986.3446364,108.7611728,1057.526649,5,14,7% +5/31/2018 23:00,40.29356427,259.4881424,762.0103261,855.0770222,109.8080443,911.6545158,799.4132335,112.2412823,106.4969266,5.744355713,188.0693435,0,188.0693435,3.311117683,184.7582258,0.703255364,4.528922455,0.836269517,-0.836269517,0.38714318,0.144103092,2.731198399,87.84472895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3688966,2.39889349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978743943,84.4396948,104.3476406,86.83858829,799.4132335,0,0.934902018,20.78767897,-0.934902018,159.212321,0.99651846,0,900.9776847,86.83858829,957.8118039,5,15,6% +5/31/2018 0:00,52.06301312,269.7942641,589.7062438,800.1395534,97.78487933,764.6191602,665.337401,99.28175919,94.83630443,4.445454758,145.9296811,0,145.9296811,2.9485749,142.9811062,0.908670997,4.708798211,1.20704979,-1.20704979,0.323736018,0.165819644,1.937657574,62.32172824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.16026309,2.136232477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.403826316,59.90601571,92.56408941,62.04224818,665.337401,0,0.831526698,33.74411229,-0.831526698,146.2558877,0.98986964,0,751.1613828,62.04224818,791.7667934,5,16,5% +5/31/2018 1:00,63.84741259,278.4990193,389.3085363,699.414051,81.03255048,559.9132755,478.3893832,81.5238923,78.58912011,2.934772191,96.83579226,0,96.83579226,2.443430375,94.39236189,1.114347569,4.86072485,1.789745874,-1.789745874,0.224089119,0.208144808,1.13162157,36.3968396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54285153,1.770256989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.819855975,34.98602665,76.36270751,36.75628364,478.3893832,0,0.683985949,46.84409014,-0.683985949,133.1559099,0.976899083,0,543.7008574,36.75628364,567.7571099,5,17,4% +5/31/2018 2:00,75.36169449,286.7765349,180.4077167,494.1812324,55.52007848,303.5485341,248.3426012,55.20593284,53.84594327,1.359989573,45.41607481,0,45.41607481,1.674135214,43.7419396,1.315309699,5.005194752,3.066590335,-3.066590335,0.005735857,0.307747803,0.423933859,13.63517016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.7587688,1.212905263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307138637,13.10664419,52.06590744,14.31954946,248.3426012,0,0.502533453,59.83224606,-0.502533453,120.1677539,0.950504136,0,288.1165771,14.31954946,297.4884359,5,18,3% +5/31/2018 3:00,86.26173909,295.3370247,14.40754179,72.95801842,9.650775238,31.44137822,21.97299933,9.468378893,9.359768757,0.108610136,3.784281794,0,3.784281794,0.291006481,3.493275313,1.505551366,5.154603483,10.75849378,-10.75849378,0,0.669841905,0.07275162,2.339942189,0.567035298,1,0.092683508,0,0.95203878,0.990800743,0.724496596,1,9.067943724,0.210833205,0.076420105,0.312029739,0.806249252,0.530745848,0.961238037,0.922476074,0.04997789,2.249241436,9.117921614,2.460074641,9.51353311,0,0.301173193,72.47191859,-0.301173193,107.5280814,0.883982568,0,17.52771904,2.460074641,19.13778869,5,19,9% +5/31/2018 4:00,96.7131375,304.7417949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687962679,5.318747689,-4.904293395,4.904293395,0.631162745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086233015,85.05306823,-0.086233015,94.94693177,0,0,0,0,0,5,20,0% +5/31/2018 5:00,105.7692293,315.5017566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846021299,5.506544448,-1.468405836,1.468405836,0.781265877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118887879,96.8279233,0.118887879,83.1720767,0,0.629435681,0,0,0,5,21,0% +5/31/2018 6:00,113.1047326,328.0317206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974049983,5.725233576,-0.486061207,0.486061207,0.613275051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303511865,107.6686565,0.303511865,72.33134345,0,0.885261795,0,0,0,5,22,0% +5/31/2018 7:00,118.0750336,342.4338268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060798101,5.976597748,0.079614324,-0.079614324,0.516538838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.455060191,117.0688071,0.455060191,62.93119293,0,0.940124425,0,0,0,5,23,0% +6/1/2018 8:00,120.0713562,358.1801677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095640503,6.251423242,0.538859433,-0.538859433,0.438003299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563208546,124.2779818,0.563208546,55.72201819,0,0.961222938,0,0,0,6,0,0% +6/1/2018 9:00,118.7958997,14.07928407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073379587,0.245729863,1.019426685,-1.019426685,0.355821459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620589961,128.3592293,0.620589961,51.64077066,0,0.969431504,0,0,0,6,1,0% +6/1/2018 10:00,114.4429314,28.85238025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997405958,0.503569032,1.656715456,-1.656715456,0.246838661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623296265,128.5572468,0.623296265,51.44275321,0,0.969781326,0,0,0,6,2,0% +6/1/2018 11:00,107.5772285,41.80556617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877576837,0.729644775,2.78220125,-2.78220125,0.054369254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571144011,124.8300397,0.571144011,55.1699603,0,0.962456405,0,0,0,6,3,0% +6/1/2018 12:00,98.85412954,52.92594234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72533004,0.923731954,6.136554333,-6.136554333,0,#DIV/0!,0,0,0.341784343,1,0.161537991,0,0.943904607,0.98266657,0.724496596,1,0,0,0.050318736,0.312029739,0.867235389,0.591731985,0.961238037,0.922476074,0,0,0,0,0,0,-0.467686795,117.8842458,0.467686795,62.11575415,0,0.943090845,0,0,0,6,4,0% +6/1/2018 13:00,88.48899574,62.58311751,1.718191845,9.950286669,1.455813308,1.424867621,0,1.424867621,1.411915166,0.012952456,3.587489497,3.126995849,0.460493648,0.043898143,0.416595505,1.544424328,1.092281457,-37.5930266,37.5930266,0,0.847293806,0.010974536,0.352978791,1,0.832184915,0,0.026594407,0.961238037,1,0.651848226,0.927351631,1.357186562,0.030644497,0.115824807,0.229561689,0.724496596,0.448993192,0.9735838,0.934821837,0.007951014,0.341358362,1.365137576,0.372002858,0,0.524757074,-0.314261885,108.3162602,0.314261885,71.68373975,0,0.890897028,1.365137576,0.839507376,1.914578363,6,5,40% +6/1/2018 14:00,77.86535249,71.27500542,136.0208492,420.9944266,47.52369374,47.11606165,0,47.11606165,46.09067903,1.025382617,91.98920352,57.57635912,34.41284439,1.43301471,32.97982968,1.359006774,1.243983519,-4.649708189,4.649708189,0.67469938,0.349385363,0.808365159,25.99980225,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.30411383,1.038214279,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585657806,24.99199887,44.88977164,26.03021315,0,57.57635912,-0.136762759,97.86056405,0.136762759,82.13943595,0,0.684403397,44.88977164,65.4356689,87.71610822,6,6,95% +6/1/2018 15:00,66.44739325,79.546464,342.5612427,666.1652492,76.36766495,120.8186029,44.17133346,76.64726943,74.06489809,2.582371346,85.36070621,0,85.36070621,2.302766865,83.05793934,1.159725792,1.388347705,-2.262310421,2.262310421,0.917031557,0.222931422,2.415880261,77.70301374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19399724,1.668346755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750297025,74.69109239,72.94429426,76.35943914,44.17133346,0,0.066306871,86.19810674,-0.066306871,93.80189326,0,0,72.94429426,76.35943914,122.92002,6,7,69% +6/1/2018 16:00,54.69694178,88.05446574,546.954795,782.8720826,94.53209018,313.1832966,217.3785214,95.80477516,91.68159888,4.123176279,135.4660138,0,135.4660138,2.850491305,132.6155225,0.954641725,1.536840348,-1.342657832,1.342657832,0.759761702,0.172833461,3.303830721,106.2625528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12784012,2.065171247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393614111,102.1436077,90.52145423,104.2087789,217.3785214,0,0.277667995,73.87892746,-0.277667995,106.1210725,0.869928833,0,279.6252976,104.2087789,347.8278592,6,8,24% +6/1/2018 17:00,42.88679707,97.81606249,726.9337564,845.4475378,107.4745644,517.7653572,408.0516137,109.7137435,104.2338098,5.479933714,179.49426,0,179.49426,3.240754657,176.2535054,0.748515815,1.707212352,-0.821502118,0.821502118,0.670638826,0.147846435,3.941901,126.7850864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1935027,2.347915717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855893856,121.8706475,103.0493965,124.2185632,408.0516137,0,0.482645694,61.14166049,-0.482645694,118.8583395,0.946404338,0,489.2312141,124.2185632,570.5297793,6,9,17% +6/1/2018 18:00,31.41967771,110.9331836,868.033614,880.5491316,116.5978069,707.1359912,587.5104343,119.6255569,113.0819529,6.543604041,213.9806535,0,213.9806535,3.515854079,210.4647995,0.548376826,1.936149304,-0.461499593,0.461499593,0.609074768,0.134324069,4.329153132,139.2404461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6986744,2.547224312,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136456707,133.843213,111.8351311,136.3904374,587.5104343,0,0.667209146,48.14797093,-0.667209146,131.8520291,0.975060979,0,684.6936305,136.3904374,773.9584439,6,10,13% +6/1/2018 19:00,21.30255867,132.8365727,959.8281511,899.0345873,122.2200977,861.866267,736.0959662,125.7703008,118.5347108,7.235590036,236.4068346,0,236.4068346,3.685386889,232.7214477,0.371799788,2.31843556,-0.178017138,0.178017138,0.560596413,0.127335396,4.461088876,143.4839531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9400727,2.670050255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.232043704,137.9222334,117.1721164,140.5922837,736.0959662,0,0.818762678,35.03887581,-0.818762678,144.9611242,0.988932243,0,845.1211515,140.5922837,937.1359894,6,11,11% +6/1/2018 20:00,15.78906073,174.1417608,995.7326677,905.5311722,124.3672215,967.5282682,839.4049239,128.1233444,120.6170909,7.506253448,245.1770441,0,245.1770441,3.750130594,241.4269135,0.275571096,3.039347091,0.069085735,-0.069085735,0.518339333,0.124900212,4.342359007,139.6651924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9417357,2.71695685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146024319,134.2514954,119.08776,136.9684522,839.4049239,0,0.926975183,22.03189421,-0.926975183,157.9681058,0.996061123,0,955.1863714,136.9684522,1044.829484,6,12,9% +6/1/2018 21:00,19.42528543,219.7651304,973.205465,901.499263,123.0231652,1014.154712,887.504715,126.6499967,119.3135628,7.336433879,239.6745347,0,239.6745347,3.709602337,235.9649324,0.339035189,3.835625107,0.304679972,-0.304679972,0.478050346,0.12641027,3.991241166,128.3720357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6887349,2.687594265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891640638,123.3960836,117.5803755,126.0836778,887.504715,0,0.984476362,10.10875813,-0.984476362,169.8912419,0.999211579,0,1004.385363,126.0836778,1086.904609,6,13,8% +6/1/2018 22:00,28.90638386,245.1768192,893.853952,886.0453119,118.2004278,996.2177077,874.8432103,121.3744974,114.6362488,6.738248655,220.2894183,0,220.2894183,3.564179011,216.7252393,0.504511573,4.279142744,0.550219746,-0.550219746,0.436060571,0.132236846,3.440779828,110.6673069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1927227,2.582235561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492833273,106.3776248,112.685556,108.9598604,874.8432103,0,0.987357191,9.120487272,-0.987357191,170.8795127,0.999359765,0,986.9686612,108.9598604,1058.280711,6,14,7% +6/1/2018 23:00,40.190679,259.6327096,763.3655563,855.4358457,109.8972388,912.5445345,800.2065309,112.3380036,106.5834316,5.754572011,188.4006243,0,188.4006243,3.313807227,185.0868171,0.701459677,4.531445629,0.832875772,-0.832875772,0.387723544,0.143964105,2.738424591,88.07714813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.4520485,2.400842055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983979294,84.66310496,104.4360278,87.06394701,800.2065309,0,0.935437222,20.70110366,-0.935437222,159.2988963,0.996549059,0,901.881093,87.06394701,958.862705,6,15,6% +6/1/2018 0:00,51.96274564,269.9158405,591.3065593,800.7521709,97.90411648,765.861097,666.4516322,99.40946475,94.95194614,4.457518613,146.3212915,0,146.3212915,2.95217034,143.3691212,0.906921,4.71092012,1.201781939,-1.201781939,0.324636874,0.165572519,1.945521656,62.57466413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.2714223,2.138837361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409523817,60.14914731,92.68094612,62.28798467,666.4516322,0,0.832282017,33.66612502,-0.832282017,146.333875,0.98992421,0,752.4175514,62.28798467,793.1837916,6,16,5% +6/1/2018 1:00,63.74562117,278.6035213,391.1253236,700.6084253,81.20611951,561.6091381,479.9032148,81.70592329,78.75745539,2.948467901,97.28152712,0,97.28152712,2.448664122,94.832863,1.112570973,4.862548755,1.779970743,-1.779970743,0.225760765,0.207621738,1.139611329,36.65381772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.70466181,1.774048821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825644528,35.23304379,76.53030633,37.00709261,479.9032148,0,0.68498065,46.76591457,-0.68498065,133.2340854,0.977005237,0,545.3982606,37.00709261,569.6186626,6,17,4% +6/1/2018 2:00,75.25589793,286.8680069,182.3096547,496.9659035,55.83063915,305.8765381,250.3550715,55.52146657,54.14713939,1.374327185,45.88658624,0,45.88658624,1.683499763,44.20308648,1.313463201,5.006791238,3.039958992,-3.039958992,0.010290084,0.306240716,0.430686045,13.85234368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.04828996,1.219689848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312030574,13.31539965,52.36032054,14.53508949,250.3550715,0,0.503767099,59.7504562,-0.503767099,120.2495438,0.950747786,0,290.3848504,14.53508949,299.8977758,6,18,3% +6/1/2018 3:00,86.15341965,295.4172153,15.361199,77.31696533,10.17438485,33.37763303,23.39424422,9.983388813,9.867589606,0.115799207,4.031295785,0,4.031295785,0.306795243,3.724500542,1.503660835,5.156003075,10.43984571,-10.43984571,0,0.662343145,0.076698811,2.466897402,0.55657348,1,0.095495506,0,0.951727967,0.99048993,0.724496596,1,9.560865938,0.222272109,0.07530668,0.312029739,0.808739994,0.53323659,0.961238037,0.922476074,0.052659446,2.371275615,9.613525384,2.593547724,10.37362829,0,0.30257582,72.38762126,-0.30257582,107.6123787,0.884752162,0,18.79161545,2.593547724,20.48904056,6,19,9% +6/1/2018 4:00,96.59316006,304.810022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685868678,5.319938477,-4.985936652,4.985936652,0.617200926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087904878,84.95691234,-0.087904878,95.04308766,0.481203351,0,0,0,0,6,20,0% +6/1/2018 5:00,105.6413704,315.5544408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84378974,5.507463962,-1.478045738,1.478045738,0.782914397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117059157,96.72240838,0.117059157,83.27759162,0,0.622865539,0,0,0,6,21,0% +6/1/2018 6:00,112.970294,328.0620641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971703587,5.72576317,-0.488016139,0.488016139,0.613609364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301580846,107.5525772,0.301580846,72.44742282,0,0.884206978,0,0,0,6,22,0% +6/1/2018 7:00,117.9379692,342.4332147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058405876,5.976587064,0.080054916,-0.080054916,0.516463493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453088573,116.9420169,0.453088573,63.05798305,0,0.939646301,0,0,0,6,23,0% +6/2/2018 8:00,119.9383808,358.1429609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093319644,6.25077386,0.540683696,-0.540683696,0.437691332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561260903,124.1430425,0.561260903,55.85695748,0,0.960914871,0,0,0,6,0,0% +6/2/2018 9:00,118.6744001,14.00813321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071259019,0.244488047,1.022686196,-1.022686196,0.35526405,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618729285,128.2233994,0.618729285,51.77660062,0,0.969189214,0,0,0,6,1,0% +6/2/2018 10:00,114.3378008,28.75706238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995571083,0.501905422,1.662395443,-1.662395443,0.245867326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621579627,128.4315792,0.621579627,51.56842081,0,0.969559783,0,0,0,6,2,0% +6/2/2018 11:00,107.4896363,41.69632541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876048064,0.727738164,2.79418319,-2.79418319,0.052320222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569618633,124.7236362,0.569618633,55.27636381,0,0.962221973,0,0,0,6,3,0% +6/2/2018 12:00,98.78258841,52.80906541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724081411,0.921692066,6.183453441,-6.183453441,0,#DIV/0!,0,0,0.345240839,1,0.160333755,0,0.944056147,0.98281811,0.724496596,1,0,0,0.050755842,0.312029739,0.866169525,0.590666121,0.961238037,0.922476074,0,0,0,0,0,0,-0.466386806,117.8000107,0.466386806,62.19998929,0,0.94279285,0,0,0,6,4,0% +6/2/2018 13:00,88.43607272,62.46057503,1.861529544,10.72062437,1.568939145,1.535662837,0,1.535662837,1.521629841,0.014032996,3.857330053,3.358671359,0.498658694,0.047309304,0.45134939,1.543500647,1.090142687,-36.3100896,36.3100896,0,0.842822586,0.011827326,0.38040746,1,0.825770153,0,0.027533595,0.961238037,1,0.649384007,0.924887411,1.462648481,0.032992795,0.115824807,0.226769056,0.724496596,0.448993192,0.973976634,0.935214671,0.008568857,0.367938899,1.471217339,0.400931695,0,0.585180799,-0.313290648,108.2576526,0.313290648,71.74234742,0,0.89040379,1.471217339,0.921978896,2.074634086,6,5,41% +6/2/2018 14:00,77.81786401,71.14546826,136.848674,422.5222679,47.68800741,47.28166115,0,47.28166115,46.25003804,1.03162311,92.06365266,57.44513789,34.61851477,1.437969374,33.1805454,1.358177944,1.241722669,-4.631249191,4.631249191,0.677856054,0.348472557,0.815100253,26.21642602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.45729577,1.041803916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.590537358,25.20022588,45.04783313,26.24202979,0,57.44513789,-0.135957658,97.81400023,0.135957658,82.18599977,0,0.682238442,45.04783313,65.43331118,87.87262663,6,6,95% +6/2/2018 15:00,66.40690278,79.40586483,343.2937446,666.7266708,76.44397548,121.3202962,44.59349535,76.72680083,74.13890757,2.587893254,85.54061079,0,85.54061079,2.305067909,83.23554288,1.1590191,1.385893787,-2.258877941,2.258877941,0.916444568,0.222678032,2.419810952,77.82943827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26513797,1.670013853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753144798,74.81261645,73.01828277,76.4826303,44.59349535,0,0.066884223,86.16495333,-0.066884223,93.83504667,0,0,73.01828277,76.4826303,123.0746346,6,7,69% +6/2/2018 16:00,54.65995677,87.89553087,547.5643215,783.1311586,94.57943312,313.6013361,217.7460507,95.8552854,91.72751425,4.127771148,135.6152281,0,135.6152281,2.85191887,132.7633092,0.953996215,1.534066411,-1.342029076,1.342029076,0.759654178,0.172727531,3.307040294,106.3657837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.17197573,2.066205513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395939436,102.2428372,90.56791516,104.3090427,217.7460507,0,0.278045444,73.85641472,-0.278045444,106.1435853,0.870173281,0,280.0447105,104.3090427,348.3128927,6,8,24% +6/2/2018 17:00,42.84824305,97.62648265,727.4679707,845.5993173,107.5104767,518.064649,408.312049,109.7526,104.2686391,5.483960847,179.6248694,0,179.6248694,3.241837543,176.3830318,0.74784292,1.703903559,-0.821821907,0.821821907,0.670693513,0.147787231,3.944946498,126.88304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.226982,2.348700264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858100309,121.9648043,103.0850823,124.3135046,408.312049,0,0.482867051,61.12717831,-0.482867051,118.8728217,0.946451829,0,489.5327679,124.3135046,570.8934703,6,9,17% +6/2/2018 18:00,31.37063952,110.6930327,868.5558408,880.6627793,116.6303987,707.353031,587.6919283,119.6611027,113.1135619,6.547540808,214.1082562,0,214.1082562,3.516836842,210.5914194,0.547520948,1.93195788,-0.462282439,0.462282439,0.609208643,0.134280829,4.332405809,139.3450634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7290582,2.54793632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.138813261,133.9437752,111.8678714,136.4917115,587.6919283,0,0.667329132,48.13874088,-0.667329132,131.8612591,0.975074453,0,684.9112572,136.4917115,774.2423525,6,10,13% +6/2/2018 19:00,21.22489248,132.5350331,960.4049104,899.1419638,122.2548001,862.0642992,736.2559945,125.8083046,118.5683668,7.239937891,236.547723,0,236.547723,3.686433294,232.8612897,0.370444257,2.313172702,-0.179120642,0.179120642,0.560785123,0.127295059,4.46483355,143.6043947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9724241,2.670808372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234756708,138.0380065,117.2071808,140.7088148,736.2559945,0,0.818842879,35.03087128,-0.818842879,144.9691287,0.988938225,0,845.3188769,140.7088148,937.409982,6,11,11% +6/2/2018 20:00,15.66400212,173.9653496,996.4271274,905.6531683,124.4084962,967.7813097,839.6127001,128.1686096,120.657121,7.511488579,245.3466685,0,245.3466685,3.751375179,241.5952933,0.273388411,3.036268135,0.067672646,-0.067672646,0.518580986,0.124854586,4.346810986,139.8083834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9802141,2.717858547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149249762,134.389136,119.1294639,137.1069945,839.6127001,0,0.927079736,22.01591939,-0.927079736,157.9840806,0.996067206,0,955.4401406,137.1069945,1045.173926,6,12,9% +6/2/2018 21:00,19.29761358,219.8842959,974.072356,901.6571406,123.075077,1014.539362,887.8324836,126.7068782,119.3639094,7.34296887,239.8862878,0,239.8862878,3.711167671,236.1751201,0.336806895,3.837704937,0.302883124,-0.302883124,0.478357625,0.126351062,3.996540728,128.5424878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7371299,2.688728344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.895480153,123.5599287,117.6326101,126.248657,887.8324836,0,0.984667501,10.04617105,-0.984667501,169.953829,0.999221438,0,1004.773861,126.248657,1087.401082,6,13,8% +6/2/2018 22:00,28.79683982,245.334583,894.9351112,886.2701039,118.2671506,996.8083069,875.3609483,121.4473586,114.7009597,6.746398891,220.5535699,0,220.5535699,3.56619095,216.9873789,0.502599669,4.281896242,0.547861544,-0.547861544,0.436463848,0.132151649,3.446978599,110.8666807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2549253,2.583693204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497324261,106.5692705,112.7522496,109.1529637,875.3609483,0,0.987690936,8.999049404,-0.987690936,171.0009506,0.999376877,0,987.5677401,109.1529637,1059.006172,6,14,7% +6/2/2018 23:00,40.09023463,259.7682924,764.6859094,855.7845235,109.9840716,913.4118161,800.9796446,112.4321715,106.6676461,5.76452539,188.7233775,0,188.7233775,3.316425558,185.406952,0.699706592,4.533811994,0.829582662,-0.829582662,0.388286699,0.143829081,2.745463942,88.30355783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5329987,2.402739027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.98907928,84.88073858,104.522078,87.2834776,800.9796446,0,0.935959488,20.61628612,-0.935959488,159.3837139,0.996578884,0,902.7614786,87.2834776,959.8867691,6,15,6% +6/2/2018 0:00,51.8647077,270.029819,592.8693073,801.3481843,98.02038877,767.0773729,667.5433612,99.53401166,95.06471239,4.469299267,146.7037039,0,146.7037039,2.955676378,143.7480276,0.905209915,4.71290942,1.196688454,-1.196688454,0.325507911,0.165332203,1.953187353,62.82121932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37981751,2.141377474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.415077589,60.38614553,92.7948951,62.52752301,667.5433612,0,0.833025362,33.58921821,-0.833025362,146.4107818,0.989977818,0,753.6480152,62.52752301,794.5710284,6,16,5% +6/2/2018 1:00,63.64612523,278.7012894,392.9000557,701.7686482,81.37516027,563.2696356,481.38639,81.88324553,78.92139895,2.961846581,97.71692867,0,97.71692867,2.453761325,95.26316734,1.110834441,4.864255129,1.77055522,-1.77055522,0.227370915,0.207114148,1.147399608,36.90431556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.86225059,1.777741727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83128711,35.47383184,76.6935377,37.25157357,481.38639,0,0.685961665,46.68871638,-0.685961665,133.3112836,0.977109629,0,547.0608148,37.25157357,571.4412247,6,17,4% +6/2/2018 2:00,75.15264821,286.9532751,184.1673536,499.6613297,56.13178775,308.1479756,252.320437,55.82753855,54.43920724,1.388331304,46.34608761,0,46.34608761,1.692580505,44.6535071,1.311661153,5.00827945,3.014480979,-3.014480979,0.014647081,0.304786851,0.437282287,14.06450149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3290367,1.226268814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316809528,13.5193338,52.64584623,14.74560262,252.320437,0,0.504982919,59.66978147,-0.504982919,120.3302185,0.95098675,0,292.5992386,14.74560262,302.2499406,6,18,3% +6/2/2018 3:00,86.04783779,295.4915377,16.31759022,81.64169706,10.69055411,35.30684264,24.81563929,10.49120334,10.36819446,0.123008888,4.278748318,0,4.278748318,0.32235965,3.956388668,1.501818084,5.157300244,10.14671303,-10.14671303,0,0.655155201,0.080589913,2.592048614,0.546492754,1,0.098236848,0,0.951423193,0.990185156,0.724496596,1,10.04680141,0.233548469,0.074225396,0.312029739,0.811168309,0.535664905,0.961238037,0.922476074,0.055302855,2.491575721,10.10210426,2.72512419,11.25407223,0,0.303957906,72.30451996,-0.303957906,107.69548,0.885503539,0,20.06762505,2.72512419,21.85116433,6,19,9% +6/2/2018 4:00,96.47675133,304.8726455,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683836962,5.321031464,-5.068468172,5.068468172,0.603087205,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089543564,84.8626508,-0.089543564,95.1373492,0.491612575,0,0,0,0,6,20,0% +6/2/2018 5:00,105.5177959,315.6018713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841632959,5.508291779,-1.487704702,1.487704702,0.784566177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115273324,96.61939018,0.115273324,83.38060982,0,0.616248301,0,0,0,6,21,0% +6/2/2018 6:00,112.8409408,328.0878016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969445948,5.726212374,-0.490055437,0.490055437,0.613958105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299703013,107.4397663,0.299703013,72.56023374,0,0.883168177,0,0,0,6,22,0% +6/2/2018 7:00,117.8067521,342.4291572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056115705,5.976516248,0.080365624,-0.080365624,0.516410358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451180317,116.8194371,0.451180317,63.18056291,0,0.939179563,0,0,0,6,23,0% +6/3/2018 8:00,119.8117891,358.1039885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091110202,6.250093664,0.542328378,-0.542328378,0.437410075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559385976,124.0133445,0.559385976,55.98665551,0,0.960616279,0,0,0,6,0,0% +6/3/2018 9:00,118.5594599,13.93705601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069252934,0.243247515,1.025687368,-1.025687368,0.354750819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616949214,128.0936906,0.616949214,51.90630941,0,0.968956052,0,0,0,6,1,0% +6/3/2018 10:00,114.2390735,28.66336184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993847967,0.500270039,1.667656477,-1.667656477,0.244967636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619949477,128.3124451,0.619949477,51.68755486,0,0.969348267,0,0,0,6,2,0% +6/3/2018 11:00,107.4081033,41.58978124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874625045,0.725878618,2.805300854,-2.805300854,0.05041899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568183214,124.6236327,0.568183214,55.3763673,0,0.962000216,0,0,0,6,3,0% +6/3/2018 12:00,98.71671165,52.69560084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722931645,0.919711736,6.227092646,-6.227092646,0,#DIV/0!,0,0,0.348424631,1,0.159229103,0,0.944194868,0.982956831,0.724496596,1,0,0,0.051157364,0.312029739,0.865191762,0.589688358,0.961238037,0.922476074,0,0,0,0,0,0,-0.465177593,117.7217162,0.465177593,62.2782838,0,0.942514169,0,0,0,6,4,0% +6/3/2018 13:00,88.38786703,62.34197046,1.998396158,11.4546666,1.676138405,1.640661402,0,1.640661402,1.625596648,0.015064754,4.113500755,3.578424712,0.535076042,0.050541757,0.484534285,1.542659298,1.088072647,-35.21407849,35.21407849,0,0.838741807,0.012635439,0.406399162,1,0.819888482,0,0.028390103,0.961238037,1,0.647142769,0.922646174,1.56258533,0.035215682,0.115824807,0.224229441,0.724496596,0.448993192,0.974332413,0.93557045,0.009154333,0.39313061,1.571739663,0.428346292,0,0.644515507,-0.312398853,108.2038562,0.312398853,71.79614385,0,0.889948196,1.571739663,1.001931705,2.227483925,6,5,42% +6/3/2018 14:00,77.77535796,71.02035156,137.5902117,423.8849416,47.83463179,47.42945429,0,47.42945429,46.39224115,1.037213134,92.12742556,57.32469513,34.80273043,1.44239064,33.3603398,1.357436073,1.239538971,-4.614839827,4.614839827,0.680662221,0.347660137,0.821144251,26.41082179,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.59398681,1.045007108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.594916215,25.38708649,45.18890303,26.43209359,0,57.32469513,-0.135236451,97.77229292,0.135236451,82.22770708,0,0.680277195,45.18890303,65.4287764,88.0107286,6,6,95% +6/3/2018 15:00,66.37123253,79.27023994,343.9389423,667.2200293,76.51109892,121.7567537,44.95998971,76.79676402,74.20400699,2.592757028,85.69907048,0,85.69907048,2.307091928,83.39197856,1.158396536,1.383526686,-2.255927198,2.255927198,0.915939961,0.22245547,2.423293331,77.94144354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32771401,1.671480248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755667769,74.92028018,73.08338178,76.59176042,44.95998971,0,0.067384053,86.13625043,-0.067384053,93.86374957,0,0,73.08338178,76.59176042,123.2111571,6,7,69% +6/3/2018 16:00,54.62775102,87.74229333,548.0948766,783.356349,94.62061821,313.949479,218.0502508,95.89922815,91.76745746,4.131770696,135.7451092,0,135.7451092,2.853160752,132.8919485,0.953434118,1.531391912,-1.341584425,1.341584425,0.759578138,0.172635473,3.309893248,106.4575445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21037065,2.067105252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.398006391,102.3310411,90.60837704,104.3981464,218.0502508,0,0.278353844,73.83801849,-0.278353844,106.1619815,0.870372518,0,280.393323,104.3981464,348.7198218,6,8,24% +6/3/2018 17:00,42.81463214,97.44355926,727.9333836,845.7314155,107.541754,518.2993287,408.512886,109.7864427,104.2989734,5.487469326,179.7386572,0,179.7386572,3.242780671,176.4958766,0.747256299,1.700710944,-0.822222924,0.822222924,0.670762091,0.147735708,3.94769798,126.9715372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2561404,2.349383557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860093748,122.0498711,103.1162341,124.3992547,408.512886,0,0.483029102,61.11657497,-0.483029102,118.883425,0.946486568,0,489.7681937,124.3992547,571.1850179,6,9,17% +6/3/2018 18:00,31.32705133,110.4605119,869.0194182,880.7635757,116.6593239,707.5143633,587.821713,119.6926503,113.1416149,6.551035449,214.2215281,0,214.2215281,3.517709044,210.7038191,0.546760191,1.927899626,-0.463098272,0.463098272,0.609348158,0.134242482,4.335411265,139.4417292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7560238,2.548568227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140990703,134.036694,111.8970145,136.5852622,587.821713,0,0.667400116,48.13327972,-0.667400116,131.8667203,0.975082422,0,685.0716343,136.5852622,774.4639567,6,10,13% +6/3/2018 19:00,21.15365852,132.2396733,960.9321409,899.2400309,122.2865162,862.2165166,736.3734777,125.8430389,118.5991265,7.243912378,236.6765125,0,236.6765125,3.687389651,232.9891229,0.36920099,2.308017701,-0.180228571,0.180228571,0.56097459,0.127258222,4.468365218,143.7179853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0019915,2.67150125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.237315389,138.1471941,117.2393069,140.8186953,736.3734777,0,0.818884227,35.02674392,-0.818884227,144.9732561,0.988941308,0,845.469457,140.8186953,937.6324767,6,11,11% +6/3/2018 20:00,15.54564689,173.7831705,997.0794093,905.7676321,124.4472556,967.9978571,839.7867397,128.2111175,120.6947117,7.516405756,245.5059905,0,245.5059905,3.752543919,241.7534466,0.271322723,3.03308851,0.066276525,-0.066276525,0.518819736,0.12481178,4.35107217,139.9454377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0163477,2.718705295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152336976,134.5208778,119.1686847,137.2395831,839.7867397,0,0.927154725,22.00445494,-0.927154725,157.9955451,0.996071569,0,955.6563798,137.2395831,1045.476942,6,12,9% +6/3/2018 21:00,19.17464809,219.9906152,974.9021025,901.8080461,123.12475,1014.895117,888.1338087,126.7613084,119.4120845,7.349223849,240.0889673,0,240.0889673,3.712665496,236.3763018,0.334660742,3.839560559,0.301123873,-0.301123873,0.478658475,0.126294476,4.00165995,128.7071396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7834377,2.689813513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.899189011,123.7181982,117.6826267,126.4080117,888.1338087,0,0.984836865,9.99038995,-0.984836865,170.0096101,0.99923017,0,1005.132724,126.4080117,1087.864239,6,13,8% +6/3/2018 22:00,28.69045749,245.4811498,895.9814939,886.4872658,118.3316987,997.3749405,875.8570922,121.5178483,114.7635614,6.754286965,220.8092238,0,220.8092238,3.568137312,217.2410865,0.500742947,4.284454315,0.545566359,-0.545566359,0.436856347,0.132069356,3.452996603,111.0602403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3151004,2.585103336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.501684284,106.7553274,112.8167847,109.3404307,875.8570922,0,0.988008656,8.881912623,-0.988008656,171.1180874,0.999393156,0,988.1423682,109.3404307,1059.703493,6,14,7% +6/3/2018 23:00,39.99227004,259.8948058,765.9710674,856.1230466,110.0685274,914.2565023,801.7327337,112.5237686,106.7495552,5.774213453,189.0375256,0,189.0375256,3.318972211,185.7185534,0.697996788,4.53602007,0.826391489,-0.826391489,0.388832422,0.143698022,2.752313454,88.52386168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6117329,2.404584068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.994041728,85.09250302,104.6057746,87.49708709,801.7327337,0,0.936469047,20.53320938,-0.936469047,159.4667906,0.996607952,0,903.6189926,87.49708709,960.8840862,6,15,6% +6/3/2018 0:00,51.76894811,270.1361496,594.3938391,801.9275175,98.13366077,768.2677671,668.6124064,99.65536065,95.17456882,4.480791832,147.0767599,0,147.0767599,2.959091947,144.1176679,0.903538595,4.714765239,1.191770542,-1.191770542,0.326348924,0.165098718,1.96065046,63.0612585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48541569,2.143852042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.420484584,60.61688032,92.90590027,62.76073236,668.6124064,0,0.833756657,33.51340603,-0.833756657,146.486594,0.990030464,0,754.8525511,62.76073236,795.9281953,6,16,5% +6/3/2018 1:00,63.54898244,278.7922938,394.6317688,702.8946036,81.53962162,564.8942095,482.8384073,82.05580215,79.08090118,2.974900967,98.14176168,0,98.14176168,2.458720441,95.68304124,1.10913898,4.865843456,1.761498844,-1.761498844,0.228919646,0.206622041,1.154981034,37.14816026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01557021,1.78133459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836779827,35.70822464,76.85235003,37.48955923,482.8384073,0,0.686928602,46.61252985,-0.686928602,133.3874702,0.977212232,0,548.6879475,37.48955923,573.2241143,6,17,4% +6/3/2018 2:00,75.05201048,287.0323257,185.9794786,502.2676521,56.42349787,310.3620628,254.2379497,56.12411309,54.72212122,1.401991868,46.79425442,0,46.79425442,1.701376641,45.09287778,1.309904693,5.009659143,2.990135247,-2.990135247,0.018810447,0.303385612,0.44371534,14.2714106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.60098438,1.232641585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321470253,13.7182227,52.92245463,14.95086429,254.2379497,0,0.506180218,59.59027075,-0.506180218,120.4097293,0.951220952,0,294.7589192,14.95086429,304.5439608,6,18,3% +6/3/2018 3:00,85.94507925,295.5599922,17.2733155,85.91773344,11.1978445,37.22265212,26.2322504,10.99040172,10.86018817,0.130213549,4.525771654,0,4.525771654,0.337656327,4.188115326,1.500024609,5.158495001,9.87672392,-9.87672392,0,0.648274183,0.084414082,2.715047043,0.536793763,1,0.100904289,0,0.951124958,0.989886921,0.724496596,1,10.52438834,0.24463086,0.073177171,0.312029739,0.813531289,0.538027884,0.961238037,0.922476074,0.057901003,2.60980649,10.58228934,2.854437349,12.150942,0,0.305318231,72.22268953,-0.305318231,107.7773105,0.886236442,0,21.35089694,2.854437349,23.2190691,6,19,9% +6/3/2018 4:00,96.36398447,304.9296819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681868809,5.322026936,-5.151739548,5.151739548,0.588846961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091147891,84.77035217,-0.091147891,95.22964783,0.501440953,0,0,0,0,6,20,0% +6/3/2018 5:00,105.3985782,315.6440816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839552217,5.509028489,-1.497367158,1.497367158,0.786218555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113531712,96.51894371,0.113531712,83.48105629,0,0.609594417,0,0,0,6,21,0% +6/3/2018 6:00,112.7167397,328.1089838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96727823,5.726582073,-0.492176231,0.492176231,0.614320782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297879774,107.3303018,0.297879774,72.66969815,0,0.882147046,0,0,0,6,22,0% +6/3/2018 7:00,117.6814385,342.4217164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053928571,5.976386382,0.080546049,-0.080546049,0.516379504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449336823,116.7011432,0.449336823,63.29885685,0,0.9387249,0,0,0,6,23,0% +6/4/2018 8:00,119.6916242,358.0633142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08901293,6.249383764,0.543791351,-0.543791351,0.437159892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557585076,123.8889536,0.557585076,56.1110464,0,0.960327586,0,0,0,6,0,0% +6/4/2018 9:00,118.4511094,13.86611261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067361862,0.242009319,1.02842615,-1.02842615,0.35428246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615250896,127.9701531,0.615250896,52.02984692,0,0.968732341,0,0,0,6,1,0% +6/4/2018 10:00,114.1467681,28.57133718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992236934,0.498663906,1.672490592,-1.672490592,0.244140954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618406732,128.1998788,0.618406732,51.80012124,0,0.969147064,0,0,0,6,2,0% +6/4/2018 11:00,107.3326365,41.48599442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873307901,0.724067196,2.815532718,-2.815532718,0.048669238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566838392,124.5300502,0.566838392,55.46994984,0,0.961791437,0,0,0,6,3,0% +6/4/2018 12:00,98.65649454,52.58561384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721880658,0.917792101,6.267321414,-6.267321414,0,#DIV/0!,0,0,0.351332303,1,0.158224068,0,0.944320841,0.983082804,0.724496596,1,0,0,0.051523149,0.312029739,0.864302139,0.588798734,0.961238037,0.922476074,0,0,0,0,0,0,-0.464059488,117.6493707,0.464059488,62.35062927,0,0.942255193,0,0,0,6,4,0% +6/4/2018 13:00,88.34439658,62.22737493,2.127037505,12.14328218,1.77619732,1.738672924,0,1.738672924,1.722638417,0.016034507,4.352973428,3.783689656,0.569283772,0.053558903,0.515724869,1.541900596,1.086072577,-34.27969326,34.27969326,0,0.835056888,0.013389726,0.430659604,1,0.814551288,0,0.029163519,0.961238037,1,0.645123921,0.920627325,1.65586557,0.037288547,0.115824807,0.221942084,0.724496596,0.448993192,0.974651657,0.935889694,0.009700811,0.416647362,1.665566381,0.45393591,0,0.701680372,-0.311587065,108.1549005,0.311587065,71.84509954,0,0.889531208,1.665566381,1.078102498,2.371162904,6,5,42% +6/4/2018 14:00,77.73780733,70.89973473,138.2457404,425.0849377,47.96381053,47.55967946,0,47.55967946,46.51752468,1.042154786,92.18151481,57.21594864,34.96556617,1.446285855,33.51928032,1.356780691,1.23743381,-4.60043119,4.60043119,0.683126243,0.346946028,0.826495792,26.58294573,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7144141,1.047829179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.598793388,25.55253857,45.31320749,26.60036775,0,57.21594864,-0.134598861,97.73542464,0.134598861,82.26457536,0,0.678525833,45.31320749,65.42286694,88.13116544,6,6,94% +6/4/2018 15:00,66.34034384,79.13968176,344.4975735,667.6463269,76.56914706,122.1283108,45.27103784,76.85727299,74.26030477,2.596968226,85.83626745,0,85.83626745,2.308842294,83.52742516,1.157857427,1.381248016,-2.25345123,2.25345123,0.915516546,0.222263241,2.426332123,78.03918153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38182957,1.672748382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757869363,75.01422965,73.13969893,76.68697804,45.27103784,0,0.067806915,86.11196666,-0.067806915,93.88803334,0,0,73.13969893,76.68697804,123.3297923,6,7,69% +6/4/2018 16:00,54.60027502,87.5948685,548.5473613,783.5481686,94.65572535,314.2284789,218.2917912,95.93668771,91.80150599,4.135181717,135.855878,0,135.855878,2.854219362,133.0016586,0.952954572,1.528818863,-1.341321304,1.341321304,0.759533142,0.17255707,3.312393853,106.5379726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2430994,2.067872211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39981807,102.4083516,90.64291747,104.4762238,218.2917912,0,0.278593965,73.82369393,-0.278593965,106.1763061,0.87052734,0,280.6718898,104.4762238,349.0494887,6,8,24% +6/4/2018 17:00,42.78590482,97.2674535,728.330945,845.844157,107.5684643,518.4703697,408.6550251,109.8153446,104.3248783,5.490466312,179.835856,0,179.835856,3.243586085,176.5922699,0.746754913,1.697637319,-0.822703617,0.822703617,0.670844294,0.14769174,3.950159214,127.0506989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2810412,2.349967077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861876904,122.1259644,103.1429181,124.4759315,408.6550251,0,0.483132764,61.10979157,-0.483132764,118.8902084,0.946508778,0,489.9384866,124.4759315,571.4054942,6,9,17% +6/4/2018 18:00,31.28884835,110.2358883,869.4252492,880.8517485,116.6846412,707.6210559,587.9007924,119.7202635,113.1661687,6.554094776,214.32069,0,214.32069,3.518472452,210.8022175,0.546093423,1.923979205,-0.463945874,0.463945874,0.609493107,0.13420894,4.338172524,139.5305407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7796259,2.549121314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142991226,134.1220631,111.9226171,136.6711844,587.9007924,0,0.667423086,48.13151244,-0.667423086,131.8684876,0.975085001,0,685.1758617,136.6711844,774.6244185,6,10,13% +6/4/2018 19:00,21.08881429,131.9510031,961.4106118,899.3289553,122.3152939,862.3239711,736.4494153,125.8745558,118.6270365,7.247519293,236.7933911,0,236.7933911,3.688257407,233.1051337,0.368069245,2.302979455,-0.181339824,0.181339824,0.561164626,0.127224822,4.471685908,143.8247901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0288197,2.672129936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239721218,138.2498589,117.2685409,140.9219888,736.4494153,0,0.818887695,35.02639773,-0.818887695,144.9736023,0.988941566,0,845.5739792,140.9219888,937.8046025,6,11,11% +6/4/2018 20:00,15.43404231,173.5955581,997.6900714,905.8746845,124.4835346,968.178844,839.9279381,128.2509059,120.7298967,7.521009184,245.6551465,0,245.6551465,3.753637863,241.9015087,0.269374855,3.029814055,0.064898459,-0.064898459,0.519055399,0.124771748,4.355143392,140.0763822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0501689,2.719497854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155286562,134.6467466,119.2054555,137.3662445,839.9279381,0,0.927201027,21.99737329,-0.927201027,158.0026267,0.996074262,0,955.8360563,137.3662445,1045.739516,6,12,9% +6/4/2018 21:00,19.05643307,220.0838551,975.6949904,901.952059,123.1722032,1015.222701,888.4093927,126.8133078,119.4581069,7.355200973,240.282643,0,240.282643,3.714096385,236.5685466,0.332597501,3.841187903,0.299403357,-0.299403357,0.4789527,0.126240479,4.006598338,128.8659752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8276761,2.690850187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902766857,123.870877,117.730443,126.5617272,888.4093927,0,0.98498516,9.941293564,-0.98498516,170.0587064,0.999237814,0,1005.462702,126.5617272,1088.294822,6,13,8% +6/4/2018 22:00,28.58727143,245.6163722,896.9930717,886.6968321,118.3940731,997.9180447,876.3320771,121.5859676,114.824055,6.761912666,221.0563734,0,221.0563734,3.570018131,217.4863553,0.498942011,4.286814391,0.543335422,-0.543335422,0.43723786,0.131989953,3.458831985,111.2479263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3732492,2.586465983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505911999,106.9357383,112.8791612,109.5222043,876.3320771,0,0.988310824,8.769069808,-0.988310824,171.2309302,0.999408629,0,988.6930005,109.5222043,1060.373093,6,14,7% +6/4/2018 23:00,39.89682748,260.0121708,767.2206686,856.4513929,110.1505876,915.0786868,802.4659123,112.6127744,106.829141,5.783633475,189.3429803,0,189.3429803,3.321446628,186.0215337,0.696331001,4.538068476,0.823303588,-0.823303588,0.389360484,0.143570934,2.75896997,88.73795813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6882337,2.406376775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.998864351,85.29830066,104.6870981,87.70467744,802.4659123,0,0.936966089,20.4518623,-0.936966089,159.5481377,0.996636276,0,904.4537364,87.70467744,961.8546937,6,15,6% +6/4/2018 0:00,51.67551852,270.2347865,595.8794626,802.4900761,98.24389366,769.432005,669.6585362,99.77346888,95.28147779,4.49199109,147.4402904,0,147.4402904,2.962415875,144.4778746,0.901907941,4.716486777,1.18702947,-1.18702947,0.327159695,0.164872092,1.967906634,63.294642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.58818066,2.146260217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.425741658,60.84121742,93.01392231,62.98747763,669.6585362,0,0.834475785,33.43870727,-0.834475785,146.5612927,0.990082144,0,756.0308815,62.98747763,797.2549258,6,16,5% +6/4/2018 1:00,63.4542527,278.8765087,396.3194616,703.9861453,81.69944834,566.482245,484.258713,82.22353204,79.23590854,2.987623508,98.5557817,0,98.5557817,2.463539806,96.0922419,1.107485634,4.867313284,1.752801317,-1.752801317,0.230407011,0.206145436,1.162350143,37.38517614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.16456917,1.784826204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842118721,35.93605332,77.00668789,37.72087952,484.258713,0,0.687881027,46.53739299,-0.687881027,133.462607,0.977313012,0,550.2790293,37.72087952,574.9665905,6,17,4% +6/4/2018 2:00,74.95405157,287.1051477,187.7446722,504.7849503,56.7057361,312.5179594,256.1068118,56.41114757,54.99584893,1.415298643,47.23075657,0,47.23075657,1.709887165,45.52086941,1.308194988,5.010930127,2.966902181,-2.966902181,0.022783535,0.30203646,0.449977979,14.47283859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.86410186,1.23880743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326007514,13.91184296,53.19010937,15.15065039,256.1068118,0,0.507358256,59.51197587,-0.507358256,120.4880241,0.951450308,0,296.8630143,15.15065039,306.778812,6,18,3% +6/4/2018 3:00,85.84522946,295.6225825,18.22503262,90.13145489,11.69492836,39.11898315,27.63931204,11.47967112,11.34228312,0.137387994,4.771515399,0,4.771515399,0.35264524,4.41887016,1.498281901,5.159587408,9.62781385,-9.62781385,0,0.641695881,0.08816131,2.835570781,0.527477077,1,0.103494634,0,0.950833762,0.989595725,0.724496596,1,10.99237003,0.255490276,0.0721629,0.312029739,0.815826068,0.540322664,0.961238037,0.922476074,0.060447308,2.725658491,11.05281734,2.981148766,13.06020851,0,0.306655563,72.1422057,-0.306655563,107.8577943,0.886950618,0,22.63657735,2.981148766,24.58767959,6,19,9% +6/4/2018 4:00,96.25493309,304.9811501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679965504,5.322925226,-5.23558409,5.23558409,0.5745087,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092716649,84.68008669,-0.092716649,95.31991331,0.510722528,0,0,0,0,6,20,0% +6/4/2018 5:00,105.2837894,315.6811081,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837548775,5.509674723,-1.507016641,1.507016641,0.787868713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111835674,96.42114494,0.111835674,83.57885506,0,0.602915466,0,0,0,6,21,0% +6/4/2018 6:00,112.5977566,328.1256636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965201583,5.72687319,-0.494375328,0.494375328,0.61469685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296112541,107.2242622,0.296112541,72.77573781,0,0.881145281,0,0,0,6,22,0% +6/4/2018 7:00,117.5620834,342.4109562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051845431,5.976198581,0.080596051,-0.080596051,0.516370953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447559481,116.5872103,0.447559481,63.41278972,0,0.938283006,0,0,0,6,23,0% +6/5/2018 8:00,119.5779278,358.021004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087028552,6.248645311,0.545070786,-0.545070786,0.436941095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.555859489,123.7699347,0.555859489,56.23006534,0,0.96004921,0,0,0,6,0,0% +6/5/2018 9:00,118.349377,13.79536563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065586297,0.240774552,1.030898913,-1.030898913,0.353859593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613635437,127.8528355,0.613635437,52.14716453,0,0.968518395,0,0,0,6,1,0% +6/5/2018 10:00,114.0609006,28.48104933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990738263,0.497088085,1.676890587,-1.676890587,0.24338851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616952259,128.0939123,0.616952259,51.90608773,0,0.968956452,0,0,0,6,2,0% +6/5/2018 11:00,107.2632398,41.38502761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872096701,0.722304993,2.824859219,-2.824859219,0.047074312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565584746,124.442907,0.565584746,55.55709305,0,0.961595918,0,0,0,6,3,0% +6/5/2018 12:00,98.60192913,52.47917083,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720928312,0.91593432,6.304000644,-6.304000644,0,#DIV/0!,0,0,0.353960894,1,0.157318614,0,0.944434138,0.983196101,0.724496596,1,0,0,0.051853076,0.312029739,0.863500634,0.58799723,0.961238037,0.922476074,0,0,0,0,0,0,-0.463032757,117.5829796,0.463032757,62.41702038,0,0.942016279,0,0,0,6,4,0% +6/5/2018 13:00,88.30567182,62.1168601,2.245846721,12.77816085,1.868031062,1.828633175,0,1.828633175,1.811703033,0.016930141,4.573023916,3.972164348,0.600859568,0.056328029,0.544531539,1.541224721,1.08414373,-33.48689046,33.48689046,0,0.831771396,0.014082007,0.452925758,1,0.809768365,0,0.02985356,0.961238037,1,0.643326679,0.918830083,1.741477867,0.039189445,0.115824807,0.219906016,0.724496596,0.448993192,0.974934875,0.936172912,0.010202366,0.438233355,1.751680233,0.477422801,0,0.755631318,-0.310855717,108.1108075,0.310855717,71.8891925,0,0.889153674,1.751680233,1.149295163,2.503870932,6,5,43% +6/5/2018 14:00,77.70518184,70.78369696,138.8156224,426.1246447,48.07577917,47.67256785,0,47.67256785,46.62611705,1.046450797,92.22680293,57.11968601,35.10711691,1.449662123,33.65745479,1.356211269,1.235408569,-4.587978609,4.587978609,0.68525576,0.346328305,0.831154637,26.7327902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.81879722,1.050275273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.602168705,25.69657477,45.42096592,26.74685004,0,57.11968601,-0.134044549,97.70337445,0.134044549,82.29662555,0,0.676989682,45.42096592,65.41628812,88.23461817,6,6,94% +6/5/2018 15:00,66.31419496,79.01428166,344.9704269,668.0065397,76.6182318,122.4353727,45.5269305,76.90844221,74.30790942,2.600532794,85.9523963,0,85.9523963,2.31032238,83.64207392,1.157401043,1.379059371,-2.251443319,2.251443319,0.915173173,0.22210087,2.428932177,78.12280823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42758897,1.6738207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759753094,75.09461481,73.18734206,76.76843551,45.5269305,0,0.06815342,86.09206734,-0.06815342,93.90793266,0,0,73.18734206,76.76843551,123.4307477,6,7,69% +6/5/2018 16:00,54.57747629,87.45336955,548.922712,783.7071257,94.68483557,314.4391402,218.4713905,95.9677497,91.82973843,4.138011269,135.9477639,0,135.9477639,2.855097142,133.0926667,0.952556659,1.526349241,-1.341237108,1.341237108,0.759518744,0.172492108,3.314546457,106.6072077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2702375,2.068508161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401377625,102.4749031,90.67161512,104.5434112,218.4713905,0,0.278766625,73.81339316,-0.278766625,106.1866068,0.8706385,0,280.8812189,104.5434112,349.3027907,6,8,24% +6/5/2018 17:00,42.76199869,97.09832256,728.6616251,845.9378632,107.5906762,518.5787813,408.7394019,109.8393794,104.3464203,5.492959118,179.916703,0,179.916703,3.244255854,176.6724472,0.746337672,1.694685427,-0.823262378,0.823262378,0.670939848,0.147655197,3.952333986,127.1206471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3017482,2.350452322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.863452519,122.1932012,103.1652007,124.5436535,408.7394019,0,0.483178989,61.1067665,-0.483178989,118.8932335,0.946518679,0,490.0446796,124.5436535,571.5560099,6,9,17% +6/5/2018 18:00,31.25596256,110.0194225,869.774242,880.9275218,116.706409,707.6741968,587.930191,119.7440058,113.1872802,6.556725631,214.4059637,0,214.4059637,3.519128832,210.8868349,0.545519458,1.920201164,-0.46482398,0.46482398,0.609643272,0.134180116,4.340692569,139.6115941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.799919,2.549596859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14481699,134.1999746,111.944736,136.7495715,587.930191,0,0.66739905,48.13336178,-0.66739905,131.8666382,0.975082303,0,685.2250605,136.7495715,774.72492,6,10,13% +6/5/2018 19:00,21.03031269,131.6695289,961.8410818,899.4088993,122.3411805,862.3877186,736.4848118,125.9029068,118.6521425,7.250764358,236.8985441,0,236.8985441,3.689037982,233.2095061,0.367048199,2.298066804,-0.182453255,0.182453255,0.561355034,0.127194796,4.474797556,143.9248714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0529525,2.67269546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241975597,138.3460609,117.2949281,141.0187563,736.4848118,0,0.818854263,35.02973496,-0.818854263,144.970265,0.988939073,0,845.6335355,141.0187563,937.9274911,6,11,11% +6/5/2018 20:00,15.32923282,173.4028828,998.2596485,905.9744407,124.5173662,968.3251916,840.0371805,128.2880111,120.7627082,7.525302897,245.7942672,0,245.7942672,3.754658012,242.0396092,0.267545585,3.026451237,0.063539575,-0.063539575,0.519287782,0.124734448,4.359025347,140.2012392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0817086,2.720236949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158099025,134.766764,119.2398076,137.4870009,840.0371805,0,0.927219514,21.9945453,-0.927219514,158.0054547,0.996075337,0,955.9801251,137.4870009,1045.962617,6,12,9% +6/5/2018 21:00,18.94301547,220.1638042,976.4512715,902.0892511,123.2174535,1015.522808,888.6599133,126.8628948,119.5019927,7.360902139,240.4673766,0,240.4673766,3.715460848,236.7519157,0.33061799,3.842583277,0.297722747,-0.297722747,0.479240101,0.126189045,4.01135524,129.0189735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8698608,2.691838736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.906213216,124.0179448,117.7760741,126.7097835,888.6599133,0,0.985113072,9.898751618,-0.985113072,170.1012484,0.999244405,0,1005.76452,126.7097835,1088.69354,6,13,8% +6/5/2018 22:00,28.48731999,245.7401131,897.9697754,886.8988271,118.4542724,998.4380155,876.786301,121.6517145,114.882439,6.769275471,221.2950017,0,221.2950017,3.571833362,217.7231684,0.497197529,4.288974078,0.541169997,-0.541169997,0.43760817,0.131913429,3.464482725,111.4296735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4293702,2.587781112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51000594,107.1104406,112.9393761,109.6982217,876.786301,0,0.988597881,8.660519404,-0.988597881,171.3394806,0.999423319,0,989.2200508,109.6982217,1061.015343,6,14,7% +6/5/2018 23:00,39.80395262,260.1203146,768.4343064,856.769527,110.2302307,915.8784136,803.1792487,112.6991649,106.9063826,5.792782389,189.6396424,0,189.6396424,3.323848162,186.3157942,0.694710029,4.539955941,0.820320332,-0.820320332,0.389870651,0.143447826,2.765430169,88.94574034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7624813,2.408116679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003544744,85.49802883,104.766026,87.90614551,803.1792487,0,0.937450765,20.37223978,-0.937450765,159.6277602,0.996663866,0,905.2657608,87.90614551,962.7985749,6,15,6% +6/5/2018 0:00,51.5844734,270.3256885,597.3254421,803.0357472,98.35104523,770.5697572,670.6814674,99.88828984,95.38539834,4.502891494,147.7941159,0,147.7941159,2.965646891,144.828469,0.900318904,4.718073318,1.182466557,-1.182466557,0.327939999,0.164652363,1.974951395,63.5212257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68807305,2.148601077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430845562,61.05901829,93.11891861,63.20761937,670.6814674,0,0.83518258,33.36514551,-0.83518258,146.6348545,0.990132851,0,757.182672,63.20761937,798.5507947,6,16,5% +6/5/2018 1:00,63.36199819,278.9539121,397.9620941,705.0430968,81.85458108,568.0330698,485.6467,82.38636982,79.38636345,3.000006365,98.95873478,0,98.95873478,2.468217631,96.49051715,1.105875489,4.868664228,1.744462506,-1.744462506,0.231833031,0.205684366,1.169501384,37.61518464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30919216,1.788215271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847299771,36.15714624,77.15649193,37.94536151,485.6467,0,0.68881846,46.46334766,-0.68881846,133.5366523,0.977411934,0,551.8333721,37.94536151,576.6678523,6,17,5% +6/5/2018 2:00,74.85883998,287.171734,189.461554,507.2132411,56.97846191,314.614767,257.9261747,56.68859228,55.26035106,1.428241223,47.65525812,0,47.65525812,1.718110855,45.93714727,1.306533232,5.012092277,2.944763551,-2.944763551,0.026569464,0.300738914,0.456062996,14.66855366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.11835137,1.244765466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330416088,14.09997172,53.44876746,15.34473719,257.9261747,0,0.508516249,59.43495173,-0.508516249,120.5650483,0.951674725,0,298.9105888,15.34473719,308.9534124,6,18,3% +6/5/2018 3:00,85.74837363,295.6793153,19.16946292,94.27007761,12.18058126,40.99002805,29.03222874,11.95779931,11.8132918,0.144507509,5.015147688,0,5.015147688,0.367289467,4.647858222,1.496591448,5.160577583,9.398179394,-9.398179394,0,0.635415886,0.091822367,2.953322949,0.518543222,1,0.106004736,0,0.950550102,0.989312066,0.724496596,1,11.44958786,0.266099968,0.07118346,0.312029739,0.818049831,0.542546427,0.961238037,0.922476074,0.062935679,2.838846354,11.51252354,3.104946322,13.97776332,0,0.307968652,72.0631454,-0.307968652,107.9368546,0.887645813,0,23.91982663,3.104946322,25.9519519,6,19,8% +6/5/2018 4:00,96.14967125,305.0270723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678128338,5.323726719,-5.319816013,5.319816013,0.560104193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0942486,84.59192627,-0.0942486,95.40807373,0.519488142,0,0,0,0,6,20,0% +6/5/2018 5:00,105.1735016,315.7129896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835623888,5.510231161,-1.516635795,1.516635795,0.789513686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.110186574,96.32607083,0.110186574,83.67392917,0,0.596224205,0,0,0,6,21,0% +6/5/2018 6:00,112.4840567,328.1378963,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963217146,5.72708669,-0.496649194,0.496649194,0.615085704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294402728,107.1217258,0.294402728,72.8782742,0,0.880164617,0,0,0,6,22,0% +6/5/2018 7:00,117.4487405,342.3969429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049867225,5.975954003,0.080515767,-0.080515767,0.516384683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445849669,116.4777132,0.445849669,63.52228682,0,0.937854576,0,0,0,6,23,0% +6/6/2018 8:00,119.4707394,357.9771262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085157763,6.2478795,0.546165171,-0.546165171,0.436753945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554210475,123.6563515,0.554210475,56.34364855,0,0.959781568,0,0,0,6,0,0% +6/6/2018 9:00,118.2542886,13.72488037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063926691,0.239544352,1.033102485,-1.033102485,0.35348276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612103904,127.7417849,0.612103904,52.25821509,0,0.968314522,0,0,0,6,1,0% +6/6/2018 10:00,113.9814839,28.39256178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989352181,0.495543686,1.680850075,-1.680850075,0.242711398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615586872,127.9945758,0.615586872,52.00542419,0,0.968776695,0,0,0,6,2,0% +6/6/2018 11:00,107.1999141,41.28694546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870991459,0.720593136,2.833262912,-2.833262912,0.045637196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564422795,124.3622187,0.564422795,55.63778125,0,0.961413925,0,0,0,6,3,0% +6/6/2018 12:00,98.55300404,52.37633954,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720074408,0.914139575,6.337004194,-6.337004194,0,#DIV/0!,0,0,0.356307927,1,0.156512636,0,0.944534831,0.983296794,0.724496596,1,0,0,0.052147065,0.312029739,0.862787164,0.58728376,0.961238037,0.922476074,0,0,0,0,0,0,-0.462097601,117.5225449,0.462097601,62.47745509,0,0.94179775,0,0,0,6,4,0% +6/6/2018 13:00,88.27169591,62.01049816,2.353382493,13.35189745,1.950688964,1.909609286,0,1.909609286,1.891868495,0.017740791,4.77125214,4.141826839,0.629425301,0.05882047,0.570604832,1.54063173,1.082287364,-32.81970525,32.81970525,0,0.828887344,0.014705117,0.472967124,1,0.805547869,0,0.030460076,0.961238037,1,0.641750078,0.917253482,1.818535958,0.040899184,0.115824807,0.218120073,0.724496596,0.448993192,0.975182559,0.936420596,0.010653807,0.457664373,1.829189765,0.498563557,0,0.805387057,-0.310205112,108.0715919,0.310205112,71.9284081,0,0.888816325,1.829189765,1.214404721,2.623993367,6,5,43% +6/6/2018 14:00,77.67744768,70.67231721,139.3003063,427.0063611,48.17076644,47.76834465,0,47.76834465,46.7182401,1.050104549,92.26406527,57.03656691,35.22749836,1.452526339,33.77497202,1.355727217,1.233464625,-4.577441288,4.577441288,0.687057748,0.345805172,0.835121683,26.86038402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9073494,1.052350388,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.605042816,25.81922281,45.51239222,26.8715732,0,57.03656691,-0.133573108,97.67611775,0.133573108,82.32388225,0,0.675673157,45.51239222,65.4096504,88.32170021,6,6,94% +6/6/2018 15:00,66.29274078,78.8941299,345.358346,668.3016228,76.65846568,122.6784171,45.72802985,76.9503872,74.3469301,2.603457092,86.04766498,0,86.04766498,2.31153558,83.7361294,1.157026597,1.376962327,-2.249896941,2.249896941,0.914908727,0.221967897,2.43109849,78.19248427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.46509714,1.674699659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.76132258,75.16159008,73.22641972,76.83628974,45.72802985,0,0.068424239,86.07651428,-0.068424239,93.92348572,0,0,73.22641972,76.83628974,123.5142346,6,7,69% +6/6/2018 16:00,54.5592992,87.31790741,549.2219041,783.8337246,94.70803137,314.5823221,218.5898206,95.9925015,91.85223479,4.140266706,136.0210059,0,136.0210059,2.855796581,133.1652093,0.952239409,1.52398498,-1.341329186,1.341329186,0.75953449,0.172440375,3.316355505,106.6653929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29186185,2.069014902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402688274,102.5308329,90.69455012,104.5998478,218.5898206,0,0.278872692,73.80706505,-0.278872692,106.192935,0.870706719,0,281.0221756,104.5998478,349.480684,6,8,24% +6/6/2018 17:00,42.74284828,96.93631958,728.926417,846.0128532,107.608459,518.6256127,408.7669905,109.8586221,104.3636669,5.494955231,179.9814411,0,179.9814411,3.244792071,176.736649,0.746003434,1.691857941,-0.823897536,0.823897536,0.671048466,0.147625956,3.954226112,127.1815043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3183263,2.35084081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864823358,122.2516995,103.1831497,124.6025404,408.7669905,0,0.483168771,61.10743522,-0.483168771,118.8925648,0.946516491,0,490.087847,124.6025404,571.6377176,6,9,17% +6/6/2018 18:00,31.22832264,109.8113681,870.067311,880.9911169,116.7246861,707.6748975,587.9109564,119.763941,113.2050061,6.558934908,214.4775728,0,214.4775728,3.519679954,210.9578928,0.54503705,1.91656993,-0.46573126,0.46573126,0.609798426,0.134155926,4.342974346,139.6849839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8169579,2.549996145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14647013,134.2705197,111.963428,136.8205158,587.9109564,0,0.66732904,48.13874796,-0.66732904,131.861252,0.975074443,0,685.2203764,136.8205158,774.7666676,6,10,13% +6/6/2018 19:00,20.97810192,131.3957522,962.2243005,899.4800209,122.3642222,862.4088207,736.4806781,125.9281426,118.6744894,7.253653222,236.9921547,0,236.9921547,3.689732775,233.3024219,0.366136949,2.2932885,-0.183567665,0.183567665,0.561545609,0.127168086,4.477702001,144.0182884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0744332,2.673198835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.244079857,138.4358568,117.3185131,141.1090556,736.4806781,0,0.818784921,35.03665596,-0.818784921,144.963344,0.988933902,0,845.649224,141.1090556,938.0022788,6,11,11% +6/6/2018 20:00,15.23125978,173.2055515,998.7886518,906.0670097,124.5487824,968.4378097,840.1153419,128.3224678,120.793177,7.529290747,245.9234775,0,245.9234775,3.755605324,242.1678722,0.265835632,3.023007157,0.062201044,-0.062201044,0.519516685,0.124699837,4.36271859,140.3200266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1109964,2.720923273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160774768,134.8809469,119.2717711,137.6018702,840.1153419,0,0.927211048,21.99584037,-0.927211048,158.0041596,0.996074844,0,956.0895296,137.6018702,1046.147202,6,12,9% +6/6/2018 21:00,18.83444535,220.2302754,977.1711625,902.2196862,123.2605156,1015.796108,888.8860227,126.9100853,119.5437563,7.366328982,240.643221,0,240.643221,3.716759329,236.9264616,0.328723084,3.843743419,0.296083255,-0.296083255,0.479520471,0.126140149,4.015929829,129.166108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9100056,2.692779481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90952749,124.159376,117.8195331,126.8521555,888.8860227,0,0.985221267,9.862625466,-0.985221267,170.1373745,0.999249979,0,1006.038873,126.8521555,1089.061071,6,13,8% +6/6/2018 22:00,28.39064557,245.8522468,898.9114917,887.0932647,118.5122923,998.9352074,877.2201235,121.7150839,114.9387094,6.776374526,221.5250813,0,221.5250813,3.573582875,217.9514984,0.495510242,4.29093118,0.539071386,-0.539071386,0.437967053,0.131839779,3.469946611,111.6054109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4834594,2.589048628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513964508,107.2793661,112.9974239,109.8684147,877.2201235,0,0.988870233,8.556266204,-0.988870233,171.4437338,0.999437248,0,989.7238903,109.8684147,1061.63057,6,14,7% +6/6/2018 23:00,39.71369482,260.2191711,769.611526,857.0773995,110.307432,916.6556746,803.8727619,112.7829127,106.9812559,5.801656769,189.9274008,0,189.9274008,3.326176066,186.6012247,0.693134733,4.541681313,0.817443138,-0.817443138,0.39036268,0.143328716,2.77169055,89.14709572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8344524,2.409803237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008080368,85.69157928,104.8425328,88.10138252,803.8727619,0,0.937923182,20.29434331,-0.937923182,159.7056567,0.99669073,0,906.0550629,88.10138252,963.7156557,6,15,6% +6/6/2018 0:00,51.49587041,270.4088196,598.7309932,803.5643974,98.45506953,771.6806346,671.6808616,99.99977305,95.48628592,4.513487132,148.1380448,0,148.1380448,2.968783607,145.1692612,0.89877249,4.719524229,1.178083187,-1.178083187,0.328689599,0.164439574,1.981780105,63.74086051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78505002,2.150873617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43579294,61.27013962,93.22084296,63.42101324,671.6808616,0,0.83587683,33.29274953,-0.83587683,146.7072505,0.990182575,0,758.3075277,63.42101324,799.8153125,6,16,5% +6/6/2018 1:00,63.27228364,279.024486,399.5585829,706.0652481,82.00495592,569.5459478,487.0017025,82.5442453,79.53220393,3.012041372,99.35035635,0,99.35035635,2.472751987,96.87760436,1.104309675,4.869895974,1.736482452,-1.736482452,0.233197701,0.20523888,1.1764291,37.83800382,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.44937957,1.791500397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.852318879,36.37132851,77.30169845,38.16282891,487.0017025,0,0.689740366,46.39043991,-0.689740366,133.6095601,0.977508955,0,553.3502237,38.16282891,578.327032,6,17,5% +6/6/2018 2:00,74.76644613,287.2320808,191.1287155,509.5524711,57.24162693,316.6515215,259.6951318,56.95638967,55.51558068,1.44080899,48.06741613,0,48.06741613,1.726046251,46.34136988,1.304920655,5.013145528,2.923702509,-2.923702509,0.030171114,0.299492553,0.461963191,14.8583242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.36368779,1.250514633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334690759,14.28238638,53.69837855,15.53290101,259.6951318,0,0.509653366,59.35925664,-0.509653366,120.6407434,0.951894104,0,300.9006434,15.53290101,311.0666165,6,18,3% +6/6/2018 3:00,85.65459717,295.7302009,20.10339359,98.32161121,12.65367311,42.83023642,30.40657038,12.42366605,12.27211818,0.151547873,5.255855456,0,5.255855456,0.381554931,4.874300525,1.49495474,5.161465703,9.186240696,-9.186240696,0,0.629429706,0.095388733,3.068029544,0.509992716,1,0.108431493,0,0.950274475,0.989036438,0.724496596,1,11.8949729,0.276435249,0.070239706,0.312029739,0.820199807,0.544696403,0.961238037,0.922476074,0.065360468,2.949106696,11.96033337,3.225541945,14.89944096,0,0.309256226,71.98558708,-0.309256226,108.0144129,0.888321767,0,25.1958311,3.225541945,27.30688379,6,19,8% +6/6/2018 4:00,96.0482737,305.0674737,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676358617,5.324431856,-5.404229545,5.404229545,0.545668629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095742473,84.50594484,-0.095742473,95.49405516,0.527765733,0,0,0,0,6,20,0% +6/6/2018 5:00,105.0677866,315.7397681,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833778814,5.510698533,-1.526206351,1.526206351,0.791150347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108585801,96.2337996,0.108585801,83.7662004,0,0.589534639,0,0,0,6,21,0% +6/6/2018 6:00,112.3757046,328.1457398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961326044,5.727223585,-0.49899394,0.49899394,0.615486679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292751756,107.0227717,0.292751756,72.97722831,0,0.879206832,0,0,0,6,22,0% +6/6/2018 7:00,117.3414624,342.3797454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047994869,5.975653849,0.080305635,-0.080305635,0.516420617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.444208755,116.3727263,0.444208755,63.62727372,0,0.93744031,0,0,0,6,23,0% +6/7/2018 8:00,119.3700972,357.9317521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083401225,6.247087572,0.547073339,-0.547073339,0.436598639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.552639267,123.5482668,0.552639267,56.45173317,0,0.959525068,0,0,0,6,0,0% +6/7/2018 9:00,118.1658677,13.65472522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062383455,0.238319914,1.035034184,-1.035034184,0.35315242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610657326,127.6370471,0.610657326,52.36295292,0,0.968121018,0,0,0,6,1,0% +6/7/2018 10:00,113.9085284,28.30594092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988078867,0.494031867,1.684363553,-1.684363553,0.242110558,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614311331,127.9018974,0.614311331,52.09810259,0,0.968608045,0,0,0,6,2,0% +6/7/2018 11:00,107.1426566,41.19181501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869992127,0.718932797,2.840728637,-2.840728637,0.044360482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563352994,124.2879983,0.563352994,55.71200173,0,0.961245701,0,0,0,6,3,0% +6/7/2018 12:00,98.50970411,52.27718927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719318682,0.912409076,6.366220401,-6.366220401,0,#DIV/0!,0,0,0.358371441,1,0.155805954,0,0.944622999,0.983384962,0.724496596,1,0,0,0.052405073,0.312029739,0.862161577,0.586658172,0.961238037,0.922476074,0,0,0,0,0,0,-0.461254149,117.4680651,0.461254149,62.53193493,0,0.941599891,0,0,0,6,4,0% +6/7/2018 13:00,88.24246471,61.90836209,2.448383666,13.85805519,2.023357569,1.980802823,0,1.980802823,1.962345872,0.01845695,4.94559547,4.290944808,0.654650662,0.061011696,0.593638966,1.540121549,1.080504753,-32.26539025,32.26539025,0,0.826405435,0.015252924,0.490586468,1,0.801896264,0,0.030983044,0.961238037,1,0.64039298,0.915896384,1.886281494,0.042401374,0.115824807,0.2165829,0.724496596,0.448993192,0.975395187,0.936633224,0.011050692,0.47474852,1.897332186,0.517149894,0,0.850052196,-0.309635425,108.0372609,0.309635425,71.96273911,0,0.888519769,1.897332186,1.272438075,2.730117457,6,5,44% +6/7/2018 14:00,77.65456723,70.56567443,139.7003321,427.7323106,48.24899593,47.8472308,0,47.8472308,46.79411069,1.053120113,92.29397319,56.96712503,35.32684816,1.454885247,33.87196291,1.355327877,1.231603358,-4.568781928,4.568781928,0.688538586,0.345374955,0.838398987,26.96579341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.98027909,1.054059409,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607417212,25.92054632,45.5876963,26.97460573,0,56.96712503,-0.133184058,97.65362587,0.133184058,82.34637413,0,0.674579694,45.5876963,65.40347148,88.39296032,6,6,94% +6/7/2018 15:00,66.27593253,78.77931586,345.6622358,668.5325173,76.68996279,122.8579988,45.87477338,76.9832254,74.37747746,2.605747942,86.12229633,0,86.12229633,2.312485334,83.809811,1.156733238,1.374958444,-2.248805706,2.248805706,0.914722115,0.221863874,2.432836232,78.24837604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49446042,1.675387753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762581568,75.21531537,73.25704199,76.89070312,45.87477338,0,0.068620108,86.06526538,-0.068620108,93.93473462,0,0,73.25704199,76.89070312,123.5804694,6,7,69% +6/7/2018 16:00,54.54568459,87.18859095,549.4459578,783.9284681,94.72539721,314.658944,218.6479113,96.0110327,91.86907698,4.141955717,136.075854,0,136.075854,2.856320225,133.2195337,0.952001789,1.521727982,-1.341594817,1.341594817,0.759579915,0.172401664,3.317825561,106.712675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30805121,2.06939428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403753324,102.5762822,90.71180453,104.6456765,218.6479113,0,0.27891309,73.80465476,-0.27891309,106.1953452,0.870732688,0,281.095688,104.6456765,349.5841904,6,8,24% +6/7/2018 17:00,42.72838476,96.78159382,729.1263415,846.069446,107.6218835,518.6119581,408.7388091,109.873149,104.3766866,5.496462346,180.0303199,0,180.0303199,3.24519687,176.785123,0.745750998,1.689157467,-0.824607337,0.824607337,0.671169849,0.147603889,3.955839449,127.2333948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3308414,2.351134086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865992215,122.3015786,103.1968336,124.6527127,408.7388091,0,0.483103144,61.11172988,-0.483103144,118.8882701,0.946502433,0,490.0691109,124.6527127,571.6518183,6,9,17% +6/7/2018 18:00,31.20585375,109.6119717,870.3053806,881.042753,116.7395314,707.6242978,587.8441644,119.7801334,113.2194038,6.560729577,214.5357432,0,214.5357432,3.520127596,211.0156156,0.544644894,1.913089806,-0.466666318,0.466666318,0.60995833,0.134136286,4.345020769,139.7508038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8307975,2.55032046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147952756,134.3337883,111.9787502,136.8841088,587.8441644,0,0.667214119,48.1475884,-0.667214119,131.8524116,0.975061538,0,685.1629852,136.8841088,774.7508967,6,10,13% +6/7/2018 19:00,20.93212538,131.1301691,962.5610096,899.542474,122.3844648,862.3883492,736.438036,125.9503132,118.6941217,7.256191478,237.0744041,0,237.0744041,3.690343166,233.3840609,0.365334507,2.2886532,-0.184681798,0.184681798,0.561736137,0.127144631,4.480400984,144.1050969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0933045,2.673641061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.246035261,138.5193005,117.3393398,141.1929415,736.438036,0,0.818680671,35.04705891,-0.818680671,144.9529411,0.988926126,0,845.6221539,141.1929415,938.0301103,6,11,11% +6/7/2018 20:00,15.14016121,173.0040088,999.2775684,906.1524948,124.5778131,968.5175986,840.1632899,128.3543088,120.8213324,7.532976407,246.0428964,0,246.0428964,3.756480708,242.2864157,0.264245662,3.019489573,0.060884089,-0.060884089,0.519741897,0.124667877,4.366223524,140.4327573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1380603,2.721557485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16331408,134.989308,119.3013744,137.7108655,840.1632899,0,0.92717649,22.00112632,-0.92717649,157.9988737,0.996072835,0,956.165204,137.7108655,1046.294211,6,12,9% +6/7/2018 21:00,18.73077615,220.2831088,977.8548422,902.3434199,123.3014018,1016.04324,889.0883479,126.9548925,119.5834096,7.371482848,240.8102199,0,240.8102199,3.717992198,237.0922277,0.326913715,3.844665536,0.294486138,-0.294486138,0.479793594,0.126093768,4.020321088,129.307346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9481219,2.693672691,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912708943,124.2951394,117.8608308,126.9888121,889.0883479,0,0.985310391,9.832768645,-0.985310391,170.1672314,0.999254569,0,1006.286425,126.9888121,1089.398063,6,13,8% +6/7/2018 22:00,28.29729509,245.9526601,899.8180593,887.2801476,118.5681253,999.4099308,877.6338633,121.7760675,114.9928589,6.783208616,221.7465727,0,221.7465727,3.575266448,218.1713062,0.493880969,4.292683722,0.53704094,-0.53704094,0.43831428,0.131768999,3.475221228,111.7750607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5355099,2.590268371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51778595,107.4424399,113.0532959,110.0327083,877.6338633,0,0.989128254,8.456322279,-0.989128254,171.5436777,0.999450438,0,990.2048449,110.0327083,1062.219052,6,14,7% +6/7/2018 23:00,39.62610759,260.3086817,770.7518186,857.3749453,110.3821631,917.4104046,804.5464183,112.8639863,107.0537336,5.810252776,190.2061314,0,190.2061314,3.328429483,186.8777019,0.691606047,4.543243567,0.814673473,-0.814673473,0.390836321,0.143213626,2.777747404,89.34190497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9041207,2.41143583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012468539,85.87883734,104.9165892,88.29027317,804.5464183,0,0.938383402,20.21818161,-0.938383402,159.7818184,0.996716875,0,906.8215812,88.29027317,964.6057991,6,15,6% +6/7/2018 0:00,51.40977075,270.4841489,600.0952766,804.0758708,98.55591635,772.7641821,672.6563186,100.1078635,95.58409184,4.523771676,148.471872,0,148.471872,2.97182451,145.5000475,0.897269767,4.720838973,1.173880823,-1.173880823,0.329408246,0.164233781,1.988387946,63.95339138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87906479,2.153076741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440580298,61.47443238,93.31964509,63.62750912,672.6563186,0,0.836558269,33.22155384,-0.836558269,146.7784462,0.9902313,0,759.4049861,63.62750912,801.0479183,6,16,5% +6/7/2018 1:00,63.18517674,279.088217,401.1077941,707.0523507,82.15050364,571.0200712,488.3229884,82.69708284,79.67336286,3.02371998,99.73036933,0,99.73036933,2.477140788,97.25322854,1.102789373,4.87100829,1.728861403,-1.728861403,0.234500977,0.204809043,1.183127503,38.05344747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.5850669,1.794680068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.857171848,36.57842115,77.44223875,38.37310121,488.3229884,0,0.690646156,46.31872047,-0.690646156,133.6812795,0.977604028,0,554.828759,38.37310121,579.9431863,6,17,5% +6/7/2018 2:00,74.67694278,287.2861888,192.7447127,511.8025052,57.49517371,318.6271827,261.4127096,57.21447315,55.76148209,1.45299106,48.46687875,0,48.46687875,1.733691622,46.73318713,1.303358527,5.01408989,2.903703619,-2.903703619,0.033591126,0.298297021,0.467671347,15.04191814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.60005758,1.256053678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338826299,14.45886387,53.93888388,15.71491755,261.4127096,0,0.510768718,59.28495275,-0.510768718,120.7150473,0.952108336,0,302.8321037,15.71491755,313.1172029,6,18,3% +6/7/2018 3:00,85.56398606,295.7752533,21.02367691,102.2748029,13.11315841,44.63429625,31.75806259,12.87623366,12.7177483,0.158485357,5.492843979,0,5.492843979,0.395410108,5.09743387,1.493373278,5.162252016,8.990610688,-8.990610688,0,0.623732873,0.098852527,3.179437075,0.501826128,1,0.110771843,0,0.950007371,0.988769334,0.724496596,1,12.32753686,0.286473278,0.069332478,0.312029739,0.822273262,0.546769858,0.961238037,0.922476074,0.067716419,3.056195852,12.39525327,3.34266913,15.821037,0,0.310516977,71.90961133,-0.310516977,108.0903887,0.888978208,0,26.4598104,3.34266913,28.64752049,6,19,8% +6/7/2018 4:00,95.95081617,305.1023833,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674657662,5.325041144,-5.488598027,5.488598027,0.531240768,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097196953,84.42221877,-0.097196953,95.57778123,0.535580579,0,0,0,0,6,20,0% +6/7/2018 5:00,104.9667168,315.761489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832014814,5.511077634,-1.535709097,1.535709097,0.792775412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107034771,96.14441115,0.107034771,83.85558885,0,0.582862085,0,0,0,6,21,0% +6/7/2018 6:00,112.2727644,328.1492554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959529398,5.727284946,-0.501405288,0.501405288,0.615899044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291161059,106.9274797,0.291161059,73.07252026,0,0.878273739,0,0,0,6,22,0% +6/7/2018 7:00,117.2403006,342.3594358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046229261,5.97529938,0.079966419,-0.079966419,0.516478627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.442638104,116.2723241,0.442638104,63.72767594,0,0.937040904,0,0,0,6,23,0% +6/8/2018 8:00,119.2760374,357.8849564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081759572,6.246270833,0.547794499,-0.547794499,0.436475313,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551147078,123.445743,0.551147078,56.55425705,0,0.959280114,0,0,0,6,0,0% +6/8/2018 9:00,118.0841354,13.58497233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060956958,0.237102496,1.036691859,-1.036691859,0.35286894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609296687,127.5386662,0.609296687,52.46133376,0,0.967938172,0,0,0,6,1,0% +6/8/2018 10:00,113.8420408,28.22125666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986918439,0.492553848,1.687426466,-1.687426466,0.241586769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613126343,127.8159029,0.613126343,52.18409713,0,0.968450739,0,0,0,6,2,0% +6/8/2018 11:00,107.0914608,41.09970605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869098591,0.717325192,2.847243696,-2.847243696,0.043246341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56237573,124.2202551,0.56237573,55.77974492,0,0.961091469,0,0,0,6,3,0% +6/8/2018 12:00,98.47201007,52.18179127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718660797,0.910744067,6.391553563,-6.391553563,0,#DIV/0!,0,0,0.360150019,1,0.155198299,0,0.944698722,0.983460685,0.724496596,1,0,0,0.052627106,0.312029739,0.86162364,0.586120236,0.961238037,0.922476074,0,0,0,0,0,0,-0.460502453,117.4195347,0.460502453,62.58046534,0,0.941422945,0,0,0,6,4,0% +6/8/2018 13:00,88.21796667,61.81052594,2.529780668,14.29121153,2.08536208,2.041551275,0,2.041551275,2.02248072,0.019070555,5.094336871,4.418080898,0.676255973,0.062881361,0.613374612,1.539693978,1.07879719,-31.81377828,31.81377828,0,0.82432525,0.01572034,0.50562018,1,0.798818266,0,0.031422576,0.961238037,1,0.639254064,0.914757468,1.944085396,0.043682444,0.115824807,0.215292948,0.724496596,0.448993192,0.975573221,0.936811258,0.011389333,0.489326581,1.955474729,0.533009025,0,0.888837175,-0.309146701,108.0078143,0.309146701,71.99218573,0,0.888264488,1.955474729,1.322531522,2.82104516,6,5,44% +6/8/2018 14:00,77.63649853,70.4638478,140.0163377,428.3046623,48.31068821,47.90944501,0,47.90944501,46.85394272,1.055502296,92.31709726,56.91176965,35.40532761,1.456745497,33.94858212,1.355012519,1.229826148,-4.561966315,4.561966315,0.689704124,0.34503608,0.840989817,27.04912339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.03779191,1.055407154,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.609294259,26.00064627,45.64708617,27.05605342,0,56.91176965,-0.132876839,97.63586564,0.132876839,82.36413436,0,0.673711699,45.64708617,65.39817844,88.448886,6,6,94% +6/8/2018 15:00,66.26371731,78.66992823,345.8830708,668.7001591,76.71283974,122.9747563,45.96767908,77.00707727,74.39966458,2.607412689,86.17653016,0,86.17653016,2.313175158,83.863355,1.156520042,1.37304927,-2.24816328,2.24816328,0.914612253,0.221788362,2.434150798,78.29065701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51578752,1.675887528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763533967,75.25595745,73.27932149,76.93184498,45.96767908,0,0.06874184,86.05827415,-0.06874184,93.94172585,0,0,73.27932149,76.93184498,123.6296754,6,7,69% +6/8/2018 16:00,54.5365694,87.06552721,549.595946,783.9918629,94.7370202,314.6699941,218.6465582,96.02343589,91.8803495,4.143086391,136.1125708,0,136.1125708,2.856670701,133.2559001,0.951842699,1.519580115,-1.342031175,1.342031175,0.759654537,0.172375762,3.318961335,106.7492054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31888678,2.069648199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404576189,102.6113966,90.72346296,104.6810448,218.6465582,0,0.278888811,73.80610334,-0.278888811,106.1938967,0.870717081,0,281.1027559,104.6810448,349.6144062,6,8,24% +6/8/2018 17:00,42.71853555,96.63429088,729.2624535,846.1079622,107.6310222,518.5389658,408.6559276,109.8830382,104.3855498,5.497488416,180.0635974,0,180.0635974,3.245472436,176.8181249,0.745579097,1.686586546,-0.825389926,0.825389926,0.67130368,0.147588871,3.957177916,127.2764445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3393609,2.351333732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866961929,122.3429596,103.2063229,124.6942934,408.6559276,0,0.482983196,61.11957882,-0.482983196,118.8804212,0.94647673,0,489.9896488,124.6942934,571.5995699,6,9,17% +6/8/2018 18:00,31.18847718,109.4214733,870.4893895,881.0826488,116.7510046,707.5235732,587.7309254,119.7926478,113.2305311,6.562116715,214.5807042,0,214.5807042,3.520473555,211.0602307,0.544341615,1.909764981,-0.467627673,0.467627673,0.610122731,0.134121112,4.346834727,139.809147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8414934,2.550571107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149266963,134.38987,111.9907604,136.9404411,587.7309254,0,0.667055385,48.15979723,-0.667055385,131.8402028,0.975043705,0,685.0540996,136.9404411,774.6788795,6,10,13% +6/8/2018 19:00,20.89232139,130.8732694,962.8519456,899.5964093,122.4019537,862.3273903,736.3579224,125.9694679,118.7110832,7.258384676,237.1454722,0,237.1454722,3.69087052,233.4546017,0.364639797,2.284169455,-0.185794328,0.185794328,0.561926391,0.127124377,4.482896147,144.18535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1096086,2.674023127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247842998,138.5964427,117.3574516,141.2704659,736.3579224,0,0.818542532,35.0608394,-0.818542532,144.9391606,0.988915819,0,845.5534497,141.2704659,938.0121442,6,11,11% +6/8/2018 20:00,15.05597156,172.7987381,999.7268614,906.2309932,124.6044871,968.5654522,840.1818868,128.3835654,120.847202,7.536363368,246.152637,0,246.152637,3.757285026,242.395352,0.262776276,3.015906923,0.059589992,-0.059589992,0.519963201,0.124638531,4.369540389,140.5394391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1629272,2.722140211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.165717137,135.0918545,119.3286444,137.8139948,840.1818868,0,0.927116699,22.01026913,-0.927116699,157.9897309,0.996069357,0,956.2080759,137.8139948,1046.404579,6,12,9% +6/8/2018 21:00,18.632065,220.3221749,978.5024492,902.4604992,123.3401219,1016.264818,889.267491,126.997327,119.6209622,7.376364783,240.9684073,0,240.9684073,3.719159753,237.2492475,0.325190881,3.845347368,0.292932711,-0.292932711,0.480059246,0.126049886,4.024527795,129.4426481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9842188,2.69451858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.915756688,124.425197,117.8999755,127.1197155,889.267491,0,0.985381068,9.809027375,-0.985381068,170.1909726,0.999258209,0,1006.507816,127.1197155,1089.705128,6,13,8% +6/8/2018 22:00,28.2073205,246.0412535,900.6892643,887.4594664,118.6217609,999.8624496,878.0277963,121.8346533,115.0448772,6.789776127,221.9594237,0,221.9594237,3.576883759,218.38254,0.492310616,4.29422997,0.535080062,-0.535080062,0.43864961,0.131701093,3.480303923,111.9385376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5855119,2.591440107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.521468345,107.5995802,113.1069802,110.1910203,878.0277963,0,0.989372281,8.360707903,-0.989372281,171.6392921,0.999462906,0,990.663193,110.1910203,1062.781012,6,14,7% +6/8/2018 23:00,39.54124909,260.3887958,771.8546149,857.6620824,110.4543914,918.1424763,805.2001262,112.9423501,107.1237839,5.81856612,190.475695,0,190.475695,3.330607433,187.1450876,0.690124987,4.544641822,0.812012868,-0.812012868,0.391291311,0.143102586,2.783596785,89.53004117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9714558,2.413013748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016706395,86.05968101,104.9881622,88.47269476,805.2001262,0,0.938831438,20.14377131,-0.938831438,159.8562287,0.996742303,0,907.5651906,88.47269476,965.4687999,6,15,6% +6/8/2018 0:00,51.32623967,270.5516517,601.4173899,804.5699863,98.65353072,773.8198711,673.60737,100.2125011,95.67876277,4.533738325,148.7953771,0,148.7953771,2.974767944,145.8206092,0.895811875,4.72201712,1.169861022,-1.169861022,0.330095672,0.164035048,1.994769881,64.15865635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.9700661,2.155209249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445203988,61.67174087,93.41527009,63.82695012,673.60737,0,0.83722657,33.15159927,-0.83722657,146.8484007,0.99027901,0,760.4745093,63.82695012,802.2479716,6,16,5% +6/8/2018 1:00,63.10074862,279.1450969,402.6085344,708.0041132,82.29114902,572.4545505,489.60975,82.84480045,79.80976726,3.035033195,100.0984822,0,100.0984822,2.481381765,97.6171004,1.101315824,4.872001031,1.721599836,-1.721599836,0.235742778,0.204394944,1.189590641,38.2613242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.716184,1.797752642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86185437,36.77824016,77.57803837,38.5759928,489.60975,0,0.691535177,46.24824535,-0.691535177,133.7517546,0.977697098,0,556.2680703,38.5759928,581.515286,6,17,5% +6/8/2018 2:00,74.59040544,287.334063,194.3080587,513.963116,57.73903456,320.5406228,263.077857,57.46276586,55.99798963,1.464776222,48.85328337,0,48.85328337,1.741044926,47.11223844,1.301848165,5.014925452,2.884752882,-2.884752882,0.036831892,0.297152032,0.473180217,15.21910233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.82739762,1.261381122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.342817456,14.62918004,54.17021508,15.89056116,263.077857,0,0.511861355,59.21210661,-0.511861355,120.7878934,0.952317298,0,304.7038091,15.89056116,315.1038636,6,18,3% +6/8/2018 3:00,85.47662738,295.8144909,21.92722839,106.1190768,13.55806666,46.39711283,33.08257519,13.31453764,13.14924093,0.16529671,5.725336121,0,5.725336121,0.408825734,5.316510388,1.491848581,5.162936842,8.810069451,-8.810069451,0,0.61832104,0.102206433,3.287310232,0.49404412,1,0.113022755,0,0.949749281,0.988511244,0.724496596,1,12.74636297,0.296192852,0.068462609,0.312029739,0.824267495,0.548764091,0.961238037,0.922476074,0.069998624,3.159887634,12.81636159,3.456080486,16.73832345,0,0.311749557,71.83530141,-0.311749557,108.1646986,0.889614848,0,27.70702267,3.456080486,29.96895823,6,19,8% +6/8/2018 4:00,95.85737572,305.1318342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673026819,5.32555516,-5.572673162,5.572673162,0.516863074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098610677,84.3408273,-0.098610677,95.6591727,0.542955514,0,0,0,0,6,20,0% +6/8/2018 5:00,104.8703651,315.7782016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830333159,5.511369325,-1.545123839,1.545123839,0.794385428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105534937,96.05798746,0.105534937,83.94201254,0,0.576223247,0,0,0,6,21,0% +6/8/2018 6:00,112.1753,328.1485085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957828324,5.727271909,-0.503878544,0.503878544,0.616321995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289632089,106.835931,0.289632089,73.16406899,0,0.877367195,0,0,0,6,22,0% +6/8/2018 7:00,117.1453054,342.3360903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044571283,5.974891924,0.079499239,-0.079499239,0.516558519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441139077,116.1765813,0.441139077,63.82341869,0,0.93665706,0,0,0,6,23,0% +6/9/2018 8:00,119.1885943,357.8368182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080233401,6.245430662,0.548328268,-0.548328268,0.436384033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549735097,123.3488414,0.549735097,56.65115859,0,0.959047102,0,0,0,6,0,0% +6/9/2018 9:00,118.00911,13.51569819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059647517,0.235893434,1.038073937,-1.038073937,0.352632591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608022936,127.4466852,0.608022936,52.55331477,0,0.96776626,0,0,0,6,1,0% +6/9/2018 10:00,113.7820243,28.13858289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985870953,0.491110918,1.690035282,-1.690035282,0.241140635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612032556,127.7366155,0.612032556,52.26338448,0,0.968304999,0,0,0,6,2,0% +6/9/2018 11:00,107.0463157,41.0106916,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868310662,0.715771597,2.852798038,-2.852798038,0.042296493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561491318,124.1589952,0.561491318,55.84100481,0,0.960951428,0,0,0,6,3,0% +6/9/2018 12:00,98.43989794,52.090219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718100334,0.90914583,6.412925389,-6.412925389,0,#DIV/0!,0,0,0.361642831,1,0.154689307,0,0.944762086,0.983524049,0.724496596,1,0,0,0.052813217,0.312029739,0.861173039,0.585669635,0.961238037,0.922476074,0,0,0,0,0,0,-0.459842485,117.3769438,0.459842485,62.62305621,0,0.941267115,0,0,0,6,4,0% +6/9/2018 13:00,88.19818257,61.71706506,2.596704188,14.6469902,2.136166733,2.091328478,0,2.091328478,2.071753424,0.019575053,5.216109189,4.522094886,0.694014303,0.064413309,0.629600994,1.53934868,1.07716599,-31.45680557,31.45680557,0,0.822645391,0.016103327,0.517938356,1,0.796316766,0,0.031778921,0.961238037,1,0.638331817,0.913835221,1.991448195,0.044731644,0.115824807,0.214248457,0.724496596,0.448993192,0.975717113,0.93695515,0.011666806,0.50127211,2.003115,0.546003755,0,0.92107491,-0.308738848,107.9832441,0.308738848,72.01675594,0,0.888050831,2.003115,1.363965094,2.895802875,6,5,45% +6/9/2018 14:00,77.62319478,70.36691689,140.2490674,428.7255531,48.35606326,47.95520625,0,47.95520625,46.89794953,1.057256712,92.33391075,56.87078688,35.46312387,1.458113722,34.00501015,1.354780325,1.228134384,-4.556962901,4.556962901,0.690559758,0.344787057,0.842898705,27.11051979,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.08009294,1.056398428,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610677242,26.05966282,45.69077018,27.11606125,0,56.87078688,-0.132650798,97.62279879,0.132650798,82.37720121,0,0.673070493,45.69077018,65.39410983,88.48990718,6,6,94% +6/9/2018 15:00,66.25603752,78.56605514,346.0219053,668.8054884,76.72721692,123.0294195,46.00735195,77.02206752,74.41360824,2.608459282,86.21062573,0,86.21062573,2.313608684,83.89701704,1.156386004,1.371236342,-2.247963304,2.247963304,0.914578055,0.221740924,2.435047856,78.31950948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5291907,1.676201615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764183883,75.28369154,73.29337458,76.95989315,46.00735195,0,0.068790333,86.05548912,-0.068790333,93.94451088,0,0,73.29337458,76.95989315,123.6620855,6,7,69% +6/9/2018 16:00,54.53188606,86.94882143,549.6730032,784.0244231,94.74299089,314.6165383,218.5867309,96.02980743,91.88614015,4.143667281,136.1314343,0,136.1314343,2.85685074,133.2745835,0.951760959,1.517543215,-1.342635294,1.342635294,0.759757847,0.17236246,3.319767727,106.7751417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32445297,2.069778636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405160417,102.6363276,90.72961338,104.7061062,218.5867309,0,0.278800921,73.81134706,-0.278800921,106.1886529,0.870660563,0,281.0444596,104.7061062,349.5725121,6,8,24% +6/9/2018 17:00,42.71322376,96.49455272,729.3358498,846.1287271,107.6359498,518.4078465,408.519476,109.8883705,104.3903288,5.498041708,180.0815418,0,180.0815418,3.24562102,176.8359207,0.745486389,1.684147655,-0.82624333,0.82624333,0.671449621,0.147580775,3.958245524,127.3107824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3439547,2.351441381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867735407,122.3759666,103.2116901,124.7274079,408.519476,0,0.482810077,61.13090602,-0.482810077,118.869094,0.94643961,0,489.8507035,124.7274079,571.4822975,6,9,17% +6/9/2018 18:00,31.17610992,109.240106,870.6202968,881.1110235,116.7591663,707.3739421,587.5723919,119.8015502,113.2384467,6.563103549,214.6126903,0,214.6126903,3.52071966,211.0919706,0.544125766,1.906599524,-0.468613746,0.468613746,0.61029136,0.13411032,4.348419108,139.8601061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8491022,2.550749409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150414841,134.4388538,111.999517,136.9896032,587.5723919,0,0.666853979,48.17528473,-0.666853979,131.8247153,0.975021067,0,684.8949773,136.9896032,774.5519328,6,10,13% +6/9/2018 19:00,20.8586229,130.6255362,963.0978428,899.6419752,122.4167338,862.2270514,736.2413954,125.985656,118.7254176,7.260238353,237.2055385,0,237.2055385,3.691316194,233.5142223,0.364051647,2.279845694,-0.186903846,0.186903846,0.56211613,0.127107266,4.485189039,144.2590972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1233873,2.674346017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.249504191,138.6673314,117.3728915,141.3416774,736.2413954,0,0.818371547,35.07788991,-0.818371547,144.9221101,0.988903057,0,845.4442579,141.3416774,937.949559,6,11,11% +6/9/2018 20:00,14.97872114,172.5902627,1000.136971,906.3025967,124.6288314,968.5822609,840.1719936,128.4102673,120.8708123,7.539454947,246.2528069,0,246.2528069,3.758019098,242.4947878,0.261428002,3.012268341,0.058320106,-0.058320106,0.520180364,0.124611763,4.372669258,140.6400743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1856223,2.722672044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.167983992,135.1885889,119.3536063,137.911261,840.1719936,0,0.927032535,22.02313265,-0.927032535,157.9768673,0.99606446,0,956.2190698,137.911261,1046.479232,6,12,9% +6/9/2018 21:00,18.53837282,220.347378,979.1140809,902.5709624,123.3766833,1016.461427,889.4240303,127.0373966,119.656421,7.380975522,241.1178069,0,241.1178069,3.720262212,237.3975447,0.323555644,3.845787245,0.291424352,-0.291424352,0.48031719,0.126008486,4.028548504,129.5719679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0183033,2.695317308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.918669677,124.5495041,117.9369729,127.2448214,889.4240303,0,0.985433908,9.791240973,-0.985433908,170.208759,0.99926093,0,1006.703657,127.2448214,1089.982847,6,13,8% +6/9/2018 22:00,28.12077905,246.1179434,901.5248374,887.6311991,118.6731848,1000.29298,878.4021541,121.8908255,115.0947504,6.79607503,222.1635687,0,222.1635687,3.578434379,218.5851343,0.490800183,4.295568461,0.53319022,-0.53319022,0.438972792,0.131636068,3.485191792,112.0957483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.633452,2.592563527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525009589,107.750697,113.1584615,110.3432605,878.4021541,0,0.989602613,8.269452295,-0.989602613,171.7305477,0.999474669,0,991.0991634,110.3432605,1063.316621,6,14,7% +6/9/2018 23:00,39.45918247,260.4594724,772.9192808,857.9387109,110.5240802,918.8516965,805.8337331,113.0179634,107.1913714,5.826592021,190.735937,0,190.735937,3.332708808,187.4032282,0.688692654,4.545875361,0.809462927,-0.809462927,0.391727376,0.142995631,2.789234489,89.71136908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0364234,2.414536186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020790892,86.2339803,105.0572143,88.64851649,805.8337331,0,0.939267249,20.07113762,-0.939267249,159.9288624,0.996767014,0,908.2856985,88.64851649,966.3043795,6,15,6% +6/9/2018 0:00,51.24534682,270.6113102,602.6963627,805.0465353,98.7478525,774.8470937,674.5334736,100.3136202,95.7702404,4.543379762,149.108323,0,149.108323,2.977612094,146.1307109,0.894400028,4.723058357,1.166025445,-1.166025445,0.330751595,0.163843452,2.000920638,64.35648584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.05799787,2.157269826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449660191,61.86190211,93.50765806,64.01917193,674.5334736,0,0.837881345,33.08293353,-0.837881345,146.9170665,0.990325679,0,761.5154785,64.01917193,803.4147462,6,16,6% +6/9/2018 1:00,63.01907412,279.195123,404.0595461,708.9201973,82.42681028,573.8484078,490.8610985,82.98730937,79.94133783,3.045971534,100.4543874,0,100.4543874,2.485472453,97.96891498,1.099890335,4.872874153,1.714698472,-1.714698472,0.236922981,0.203996691,1.195812383,38.46143683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84265464,1.800716331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866362001,36.97059603,77.70901664,38.77131236,490.8610985,0,0.692406706,46.17907628,-0.692406706,133.8209237,0.977788105,0,557.6671602,38.77131236,583.0422087,6,17,5% +6/9/2018 2:00,74.5069126,287.3757137,195.8172176,516.0339763,57.97313077,322.3906186,264.6894387,57.70117988,56.22502698,1.4761529,49.2262553,0,49.2262553,1.748103791,47.47815151,1.30039094,5.015652394,2.866837733,-2.866837733,0.039895563,0.296057372,0.478482503,15.38964207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.04563456,1.266495246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346658945,14.79310933,54.3922935,16.05960458,264.6894387,0,0.512930254,59.14078962,-0.512930254,120.8592104,0.95252086,0,306.5145053,16.05960458,317.0251953,6,18,3% +6/9/2018 3:00,85.39260961,295.8479372,22.81102537,109.8444775,13.98749367,48.11378948,34.3761112,13.73767827,13.56571913,0.171959145,5.95257174,0,5.95257174,0.421774543,5.530797197,1.490382195,5.16352059,8.643542487,-8.643542487,0,0.613190045,0.105443636,3.391429782,0.486647478,1,0.115181229,0,0.949500692,0.988262655,0.724496596,1,13.15059786,0.30557422,0.06763092,0.312029739,0.826179835,0.550676431,0.961238037,0.922476074,0.072202473,3.259971306,13.22280034,3.565545526,17.64706339,0,0.312952567,71.7627437,-0.312952567,108.2372563,0.890231379,0,28.93276992,3.565545526,31.26634816,6,19,8% +6/9/2018 4:00,95.7680309,305.1558645,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671467457,5.325974566,-5.656184593,5.656184593,0.502581778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099982228,84.26185289,-0.099982228,95.73814711,0.549911126,0,0,0,0,6,20,0% +6/9/2018 5:00,104.7788048,315.7899602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82873513,5.51157455,-1.554429394,1.554429394,0.795976772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.10408779,95.97461281,0.10408779,84.02538719,0,0.569636262,0,0,0,6,21,0% +6/9/2018 6:00,112.083375,328.1435689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956223931,5.727185696,-0.506408568,0.506408568,0.616754655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288166318,106.748208,0.288166318,73.25179205,0,0.87648909,0,0,0,6,22,0% +6/9/2018 7:00,117.0565261,342.3097898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043021791,5.974432893,0.078905603,-0.078905603,0.516660037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.439713036,116.0855732,0.439713036,63.91442684,0,0.936289475,0,0,0,6,23,0% +6/10/2018 8:00,119.1078,357.7874212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078823274,6.244568522,0.548674707,-0.548674707,0.436324789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548404491,123.2576231,0.548404491,56.74237688,0,0.958826421,0,0,0,6,0,0% +6/10/2018 9:00,117.9408063,13.44698419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058455393,0.234694149,1.039179467,-1.039179467,0.352443534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606836972,127.3611452,0.606836972,52.63885483,0,0.967605548,0,0,0,6,1,0% +6/10/2018 10:00,113.7284779,28.05799785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984936393,0.489704444,1.692187573,-1.692187573,0.240772571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61103055,127.6640558,0.61103055,52.33594419,0,0.968171031,0,0,0,6,2,0% +6/10/2018 11:00,107.0072058,40.92484807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867628064,0.714273345,2.857384447,-2.857384447,0.041512171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560699989,124.1042205,0.560699989,55.89577951,0,0.960825752,0,0,0,6,3,0% +6/10/2018 12:00,98.41333843,52.00254829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717636784,0.907615687,6.430276348,-6.430276348,0,#DIV/0!,0,0,0.362849674,1,0.154278506,0,0.944813184,0.983575147,0.724496596,1,0,0,0.052963509,0.312029739,0.860809358,0.585305954,0.961238037,0.922476074,0,0,0,0,0,0,-0.459274118,117.3402776,0.459274118,62.65972245,0,0.941132554,0,0,0,6,4,0% +6/10/2018 13:00,88.18308515,61.62805609,2.64849126,14.92208081,2.175374275,2.12974416,0,2.12974416,2.109778714,0.019965446,5.309896248,4.602143318,0.70775293,0.065595561,0.642157369,1.53908518,1.07561249,-31.18815339,31.18815339,0,0.821363584,0.01639889,0.527444678,1,0.794392763,0,0.032052476,0.961238037,1,0.637624518,0.913127922,2.027999549,0.045541031,0.115824807,0.213447441,0.724496596,0.448993192,0.975827302,0.937065338,0.01188094,0.51049132,2.039880489,0.556032351,0,0.946233971,-0.308411633,107.9635342,0.308411633,72.0364658,0,0.887879008,2.039880489,1.39617363,2.953648207,6,5,45% +6/10/2018 14:00,77.61460371,70.27496158,140.3993821,428.9971124,48.38534307,47.98473631,0,47.98473631,46.92634646,1.058389847,92.34479322,56.84434092,35.50045229,1.458996617,34.04145568,1.354630382,1.226529461,-4.553742375,4.553742375,0.6911105,0.344626467,0.844131521,27.15017139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10738915,1.057038082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611570413,26.09777745,45.71895956,27.15481553,0,56.84434092,-0.132505183,97.61438135,0.132505183,82.38561865,0,0.67265627,45.71895956,65.39151788,88.51640018,6,6,94% +6/10/2018 15:00,66.25283028,78.467784,346.0798842,668.8494605,76.73321983,123.022817,45.99449054,77.02832649,74.41943014,2.608896352,86.22486438,0,86.22486438,2.313789693,83.91107469,1.156330027,1.369521187,-2.248199308,2.248199308,0.914618414,0.221721121,2.435533403,78.33512632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53478693,1.676332756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764535659,75.29870304,73.29932259,76.9750358,45.99449054,0,0.068766581,86.05685322,-0.068766581,93.94314678,0,0,73.29932259,76.9750358,123.677944,6,7,69% +6/10/2018 16:00,54.53156194,86.83857689,549.6783359,784.0266762,94.74340406,314.4997299,218.4694815,96.03024835,91.88654086,4.143707481,136.1327397,0,136.1327397,2.856863198,133.2758765,0.951755302,1.515619084,-1.343404031,1.343404031,0.759889309,0.172361539,3.320249864,106.7906489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32483815,2.069787662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405509724,102.6512337,90.73034788,104.7210214,218.4694815,0,0.278650572,73.82031688,-0.278650572,106.1796831,0.870563799,0,280.9219697,104.7210214,349.4597838,6,8,24% +6/10/2018 17:00,42.71236775,96.36251738,729.3476772,846.132073,107.6367438,518.2198822,408.3306525,109.8892297,104.3910989,5.498130868,180.0844334,0,180.0844334,3.245644963,176.8387884,0.745471449,1.681843204,-0.827165432,0.827165432,0.671607309,0.14757947,3.9590464,127.3365413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3446949,2.351458727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868315639,122.400727,103.2130106,124.7521857,408.3306525,0,0.482585007,61.14563056,-0.482585007,118.8543694,0.946391311,0,489.653592,124.7521857,571.3014025,6,9,17% +6/10/2018 18:00,31.16866418,109.0680956,870.6990874,881.1280986,116.7640785,707.1766738,587.3697657,119.8069082,113.2432107,6.563697506,214.6319421,0,214.6319421,3.520867779,211.1110743,0.543995813,1.903597377,-0.46962285,0.46962285,0.610463927,0.134103825,4.349776806,139.9037743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8536815,2.55085672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151398489,134.4808294,112.00508,137.0316861,587.3697657,0,0.666611094,48.19395686,-0.666611094,131.8060431,0.974993748,0,684.686929,137.0316861,774.3714269,6,10,13% +6/10/2018 19:00,20.83095699,130.3874441,963.2994374,899.679318,122.42885,862.0884656,736.0895391,125.9989265,118.7371685,7.261758059,237.2547828,0,237.2547828,3.691681543,233.5631013,0.363568786,2.275690203,-0.188008857,0.188008857,0.562305098,0.127093244,4.487281123,144.3263859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1346827,2.674610711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251019899,138.7320118,117.3857026,141.4066225,736.0895391,0,0.81816879,35.09809948,-0.81816879,144.9019005,0.988887916,0,845.2957528,141.4066225,937.8435591,6,11,11% +6/10/2018 20:00,14.90843555,172.3791457,1000.508316,906.3673918,124.6508719,968.5689154,840.1344729,128.4344425,120.8921882,7.542254306,246.3435085,0,246.3435085,3.758683701,242.5848248,0.260201287,3.008583654,0.05707586,-0.05707586,0.520393143,0.124587542,4.37561004,140.73466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2061697,2.723153547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.170114579,135.2795083,119.3762843,138.0026618,840.1344729,0,0.926924866,22.03957831,-0.926924866,157.9604217,0.996058195,0,956.1991112,138.0026618,1046.519093,6,12,9% +6/10/2018 21:00,18.44976428,220.3586599,979.6897938,902.674839,123.4110905,1016.633628,889.5585214,127.0751063,119.6897908,7.385315488,241.2584327,0,241.2584327,3.721299718,237.537133,0.322009133,3.84598415,0.289962504,-0.289962504,0.480567181,0.125969558,4.032381545,129.6952517,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0503795,2.696068978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.921446703,124.6680091,117.9718262,127.3640781,889.5585214,0,0.985469499,9.779242276,-0.985469499,170.2207577,0.999262763,0,1006.874532,127.3640781,1090.231774,6,13,8% +6/10/2018 22:00,28.03773347,246.1826634,902.3244522,887.7953109,118.7223793,1000.701688,878.7571235,121.9445643,115.1424615,6.802102864,222.358928,0,222.358928,3.579917773,218.7790102,0.489350764,4.296698037,0.531372948,-0.531372948,0.439283564,0.131573935,3.489881671,112.2465909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6793136,2.59363824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.528407391,107.8956927,113.207721,110.4893309,878.7571235,0,0.989819514,8.182594127,-0.989819514,171.8174059,0.99948574,0,991.5129352,110.4893309,1063.825993,6,14,7% +6/10/2018 23:00,39.37997609,260.5206806,773.9451151,858.204712,110.5911882,919.5378037,806.4470227,113.090781,107.2564558,5.834325193,190.9866859,0,190.9866859,3.334732362,187.6519536,0.687310242,4.546943646,0.807025324,-0.807025324,0.392144231,0.142892805,2.794656043,89.8857449,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.098985,2.416002244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02471879,86.40159697,105.1237038,88.81759921,806.4470227,0,0.939690742,20.00031472,-0.939690742,159.9996853,0.996791005,0,908.982842,88.81759921,967.1121843,6,15,6% +6/10/2018 0:00,51.16716641,270.6631142,603.9311536,805.5052813,98.83881617,775.8451593,675.43401,100.4111493,95.85846119,4.552688138,149.4104553,0,149.4104553,2.980354984,146.4301003,0.893035523,4.723962507,1.162375857,-1.162375857,0.331375711,0.163659079,2.006834702,64.54670246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.14279905,2.15925704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45394491,62.04474555,93.59674396,64.20400259,675.43401,0,0.838522137,33.01561156,-0.838522137,146.9843884,0.990371282,0,762.5271904,64.20400259,804.547426,6,16,6% +6/10/2018 1:00,62.94023194,279.2382994,405.4595044,709.8002165,82.55739888,575.2005728,492.076059,83.12451371,80.0679887,3.056525011,100.7977613,0,100.7977613,2.489410181,98.30835108,1.098514279,4.873627723,1.708158274,-1.708158274,0.238041421,0.203614413,1.201786417,38.65358229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.96439627,1.803569202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870690168,37.15529356,77.83508644,38.95886276,492.076059,0,0.693259945,46.11128101,-0.693259945,133.888719,0.977876981,0,559.0249376,38.95886276,584.5227341,6,17,5% +6/10/2018 2:00,74.42654589,287.4111571,197.2706038,518.0146558,58.19737234,324.1758471,266.2462311,57.92961597,56.44250683,1.487109139,49.58540732,0,49.58540732,1.754865501,47.83054182,1.298988277,5.016270998,2.849947001,-2.849947001,0.042784049,0.295012897,0.483570862,15.5533012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.25468446,1.271394082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350345444,14.95042471,54.60502991,16.2218188,266.2462311,0,0.513974321,59.07107819,-0.513974321,120.9289218,0.952718875,0,308.2628398,16.2218188,318.8796958,6,18,3% +6/10/2018 3:00,85.31202266,295.8756211,23.67210691,113.4416184,14.40059407,49.77961111,35.63479775,14.14481336,13.96636302,0.178450341,6.173807429,0,6.173807429,0.434231044,5.739576385,1.488975687,5.164003764,8.490082218,-8.490082218,0,0.608335968,0.108557761,3.491590756,0.479637129,1,0.117244297,0,0.949262087,0.98802405,0.724496596,1,13.53944446,0.314598913,0.066838225,0.312029739,0.828007643,0.552504239,0.961238037,0.922476074,0.074323626,3.356249843,13.61376808,3.670848756,18.54302568,0,0.314124554,71.69202801,-0.314124554,108.307972,0.89082747,0,30.13240473,3.670848756,32.53490182,6,19,8% +6/10/2018 4:00,95.68286169,305.1745173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669980974,5.32630012,-5.738839919,5.738839919,0.488446885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101310132,84.18538132,-0.101310132,95.81461868,0.556465947,0,0,0,0,6,20,0% +6/10/2018 5:00,104.6921099,315.796824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827222018,5.511694346,-1.563603604,1.563603604,0.797545654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102694862,95.89437388,0.102694862,84.10562612,0,0.563120725,0,0,0,6,21,0% +6/10/2018 6:00,111.9970526,328.1345114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95471732,5.727027614,-0.508989759,0.508989759,0.617196065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286765239,106.6643944,0.286765239,73.33560564,0,0.87564135,0,0,0,6,22,0% +6/10/2018 7:00,116.9740102,342.2806202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041581617,5.973923788,0.078187429,-0.078187429,0.516782852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438361342,115.999375,0.438361342,64.000625,0,0.935938847,0,0,0,6,23,0% +6/11/2018 8:00,119.0336839,357.7368547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077529705,6.243685971,0.548834355,-0.548834355,0.436297487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547156402,123.1721481,0.547156402,56.82785186,0,0.95861845,0,0,0,6,0,0% +6/11/2018 9:00,117.8792357,13.37891689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057380782,0.23350615,1.040008166,-1.040008166,0.352301819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605739648,127.2820852,0.605739648,52.71791484,0,0.967456286,0,0,0,6,1,0% +6/11/2018 10:00,113.681396,27.97958433,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984114658,0.48833587,1.693882083,-1.693882083,0.240482793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610120838,127.5982409,0.610120838,52.40175914,0,0.968049021,0,0,0,6,2,0% +6/11/2018 11:00,106.9741096,40.84225534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867050428,0.71283183,2.860998705,-2.860998705,0.040894096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560001887,124.0559283,0.560001887,55.94407173,0,0.960714587,0,0,0,6,3,0% +6/11/2018 12:00,98.39229646,51.91885723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717269532,0.906155003,6.443566756,-6.443566756,0,#DIV/0!,0,0,0.363771005,1,0.153965304,0,0.944852116,0.983614079,0.724496596,1,0,0,0.053078146,0.312029739,0.860532077,0.585028673,0.961238037,0.922476074,0,0,0,0,0,0,-0.458797127,117.3095155,0.458797127,62.69048452,0,0.94101937,0,0,0,6,4,0% +6/11/2018 13:00,88.17263884,61.54357686,2.68468838,15.1142449,2.2027244,2.156542447,0,2.156542447,2.136304132,0.020238315,5.375030451,4.657676403,0.717354048,0.066420268,0.65093378,1.538902858,1.07413805,-31.00298057,31.00298057,0,0.820476751,0.016605067,0.534076033,1,0.793045313,0,0.032243784,0.961238037,1,0.637130222,0.912633626,2.05349679,0.046105426,0.115824807,0.212887669,0.724496596,0.448993192,0.975904221,0.937142258,0.012030314,0.516922713,2.065527104,0.563028139,0,0.96392796,-0.308164677,107.9486602,0.308164677,72.05133981,0,0.887749088,2.065527104,1.418754307,2.994073423,6,5,45% +6/11/2018 14:00,77.61066715,70.1880619,140.4682656,429.1214834,48.39875388,47.998262,0,47.998262,46.93935288,1.05890912,92.35003418,56.83247589,35.51755829,1.459401002,34.05815729,1.354561676,1.225012776,-4.552277292,4.552277292,0.691361044,0.34455294,0.844695516,27.16831141,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11989141,1.057331058,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611979026,26.11521432,45.73187044,27.17254538,0,56.83247589,-0.13243913,97.61056313,0.13243913,82.38943687,0,0.672468072,45.73187044,65.39057089,88.52869128,6,6,94% +6/11/2018 15:00,66.254027,78.37520129,346.0582505,668.8330542,76.73098005,122.9558827,45.92989151,77.02599116,74.4172579,2.608733268,86.21955152,0,86.21955152,2.313722156,83.90582937,1.156350914,1.367905314,-2.24886464,2.24886464,0.914732193,0.221728509,2.435613807,78.33771239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53269889,1.676283826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764593912,75.30118887,73.2972928,76.97747269,45.92989151,0,0.068671683,86.06230335,-0.068671683,93.93769665,0,0,73.2972928,76.97747269,123.6775091,6,7,69% +6/11/2018 16:00,54.53551901,86.73489461,549.6132288,783.9991662,94.73835938,314.3208158,218.2959509,96.02486498,91.8816483,4.143216677,136.1168016,0,136.1168016,2.856711083,133.2600905,0.951824366,1.513809487,-1.34433404,1.34433404,0.76004835,0.172372779,3.320413134,106.7959002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32013523,2.069677455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405628012,102.6562815,90.72576325,104.7259589,218.2959509,0,0.278439009,73.83293804,-0.278439009,106.167062,0.87042746,0,280.7365533,104.7259589,349.2775989,6,8,24% +6/11/2018 17:00,42.7158807,96.23831867,729.2991381,846.1183412,107.6334851,517.9764327,408.0907293,109.8857034,104.3879384,5.49776496,180.0725663,0,180.0725663,3.245546702,176.8270196,0.745532761,1.679675527,-0.828153963,0.828153963,0.671776358,0.147584824,3.959584812,127.3538585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.341657,2.351387537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868705718,122.417373,103.2103627,124.7687605,408.0907293,0,0.482309282,61.16366624,-0.482309282,118.8363338,0.94633208,0,489.3997114,124.7687605,571.0583698,6,9,17% +6/11/2018 18:00,31.16604714,108.9056602,870.7267768,881.1340987,116.7658047,706.9330931,587.124302,119.8087911,113.2448849,6.56390624,214.6387078,0,214.6387078,3.520919831,211.117788,0.543950138,1.900762345,-0.470653179,0.470653179,0.610640124,0.134101543,4.350910745,139.9402457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8552908,2.550894432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152220024,134.5158871,112.0075108,137.0667815,587.124302,0,0.666327978,48.21571497,-0.666327978,131.784285,0.974961878,0,684.431323,137.0667815,774.1387901,6,10,13% +6/11/2018 19:00,20.80924475,130.159458,963.4574706,899.7085829,122.4383475,861.9127962,735.9034672,126.009329,118.7463796,7.26294938,237.2933862,0,237.2933862,3.691967927,233.6014183,0.363189836,2.271711094,-0.189107774,0.189107774,0.562493024,0.127082255,4.489173788,144.3872605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1435368,2.674818195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.252391128,138.7905268,117.3959279,141.465345,735.9034672,0,0.817935364,35.12135336,-0.817935364,144.8786466,0.988870475,0,845.1091394,141.465345,937.6953784,6,11,11% +6/11/2018 20:00,14.84513509,172.1659893,1000.841297,906.4254602,124.6706332,968.5263087,840.0701907,128.4561181,120.9113536,7.544764455,246.4248394,0,246.4248394,3.759279576,242.6655598,0.259096485,3.004863374,0.055858758,-0.055858758,0.520601279,0.124565836,4.378362483,140.823188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2245922,2.723585256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.172108715,135.3646048,119.3967009,138.08819,840.0701907,0,0.926794566,22.05946506,-0.926794566,157.9405349,0.996050612,0,956.1491281,138.08819,1046.525087,6,12,9% +6/11/2018 21:00,18.36630756,220.3560025,980.2296034,902.77215,123.4433459,1016.781956,889.6714981,127.1104584,119.7210736,7.389384801,241.3902884,0,241.3902884,3.722272337,237.668016,0.320552538,3.84593777,0.288548682,-0.288548682,0.480808959,0.125933093,4.036025026,129.8124386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0804497,2.696773637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.924086392,124.7806536,118.0045361,127.4774272,889.6714981,0,0.985488418,9.772858305,-0.985488418,170.2271417,0.999263737,0,1007.021002,127.4774272,1090.452428,6,13,8% +6/11/2018 22:00,27.95825198,246.2353659,903.0877254,887.951754,118.7693229,1001.088692,879.0928462,121.9958463,115.1879896,6.80785674,222.5454079,0,222.5454079,3.581333297,218.9640746,0.48796355,4.297617869,0.529629841,-0.529629841,0.439581652,0.131514713,3.494370137,112.3909554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.723077,2.594663782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531659269,108.0344614,113.2547362,110.6291251,879.0928462,0,0.99002321,8.100181892,-0.99002321,171.8998181,0.999496134,0,991.904637,110.6291251,1064.309187,6,14,7% +6/11/2018 23:00,39.30370348,260.572401,774.931349,858.4599483,110.6556696,920.2004673,807.0397146,113.1607527,107.3189929,5.841759841,191.2277541,0,191.2277541,3.336676714,187.8910774,0.685979034,4.547846337,0.804701806,-0.804701806,0.392541576,0.142794158,2.799856709,90.05301621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.159098,2.417410921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.028486655,86.56238451,105.1875847,88.97979543,807.0397146,0,0.940101767,19.93134607,-0.940101767,160.0686539,0.996814269,0,909.6562876,88.97979543,967.8917841,6,15,6% +6/11/2018 0:00,51.09177722,270.7070619,605.1206499,805.9459592,98.92635085,776.8132933,676.3082819,100.5050114,95.94335637,4.561655063,149.7015019,0,149.7015019,2.982994477,146.7185074,0.891719733,4.724729539,1.158914126,-1.158914126,0.331967702,0.163482028,2.012506312,64.72912093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22440353,2.161169344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458053972,62.22009313,93.6824575,64.38126248,676.3082819,0,0.839148425,32.94969569,-0.839148425,147.0503043,0.990415785,0,763.5088555,64.38126248,805.6451042,6,16,6% +6/11/2018 1:00,62.86430466,279.2746369,406.8070169,710.6437358,82.68281946,576.5098808,493.2535703,83.25631052,80.18962739,3.066683129,101.1282632,0,101.1282632,2.493192074,98.63507109,1.097189098,4.874261931,1.701980445,-1.701980445,0.239097892,0.203248263,1.207506247,38.83755168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.08132001,1.80630917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.874834165,37.33213193,77.95615417,39.1384411,493.2535703,0,0.694094024,46.04493346,-0.694094024,133.9550665,0.97796365,0,560.3402162,39.1384411,585.9555432,6,17,5% +6/11/2018 2:00,74.34939001,287.4404156,198.6665809,519.9046206,58.41165789,325.8948845,267.746921,58.14796349,56.65033089,1.497632604,49.93033962,0,49.93033962,1.761327001,48.16901262,1.297641653,5.016781656,2.834070872,-2.834070872,0.045499027,0.294018539,0.48843791,15.70984218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.45445285,1.276075417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.353871603,15.10089786,54.80832445,16.37697327,267.746921,0,0.514992386,59.00305395,-0.514992386,120.9969461,0.952911186,0,309.9473605,16.37697327,320.665762,6,18,3% +6/11/2018 3:00,85.234958,295.8975773,24.5075741,116.901635,14.79657453,51.39002948,36.85487782,14.53515166,14.35040321,0.184748446,6.388316394,0,6.388316394,0.446171315,5.942145078,1.487630655,5.164386972,8.348852383,-8.348852383,0,0.603755168,0.111542829,3.587600802,0.473014149,1,0.119209028,0,0.949033945,0.987795908,0.724496596,1,13.91215554,0.323249599,0.066085328,0.312029739,0.829748315,0.554244911,0.961238037,0.922476074,0.076357973,3.448538352,13.98851351,3.771787952,19.42199914,0,0.315264007,71.62324764,-0.315264007,108.3767524,0.891402764,0,31.30133723,3.771787952,33.76989701,6,19,8% +6/11/2018 4:00,95.60194945,305.1878418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668568789,5.326532676,-5.820325112,5.820325112,0.474512096,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102592855,84.11150174,-0.102592855,95.88849826,0.562636625,0,0,0,0,6,20,0% +6/11/2018 5:00,104.6103547,315.798858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82579512,5.511729846,-1.572623379,1.572623379,0.799088126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101357726,95.81735975,0.101357726,84.18264025,0,0.556697695,0,0,0,6,21,0% +6/11/2018 6:00,111.9163952,328.1214168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953309582,5.726799069,-0.511616052,0.511616052,0.617645187,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285430366,106.5845753,0.285430366,73.41542466,0,0.874825926,0,0,0,6,22,0% +6/11/2018 7:00,116.8978037,342.248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040251563,5.973366205,0.077347057,-0.077347057,0.516926564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437085351,115.9180624,0.437085351,64.08193758,0,0.935605867,0,0,0,6,23,0% +6/12/2018 8:00,118.9662728,357.6852135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076353159,6.24278466,0.548808239,-0.548808239,0.436301953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545991942,123.0924756,0.545991942,56.90752444,0,0.958423557,0,0,0,6,0,0% +6/12/2018 9:00,117.8244053,13.31158818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056423812,0.232331042,1.04056044,-1.04056044,0.352207374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604731762,127.2095421,0.604731762,52.79045788,0,0.967318714,0,0,0,6,1,0% +6/12/2018 10:00,113.6407678,27.90342971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983405562,0.487006721,1.69511876,-1.69511876,0.240271309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609303857,127.5391843,0.609303857,52.46081568,0,0.967939138,0,0,0,6,2,0% +6/12/2018 11:00,106.9470006,40.76299678,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866577286,0.711448507,2.86363966,-2.86363966,0.040442466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559397065,124.014111,0.559397065,55.98588896,0,0.960618051,0,0,0,6,3,0% +6/12/2018 12:00,98.37673096,51.83922618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716997863,0.904765179,6.452777337,-6.452777337,0,#DIV/0!,0,0,0.364407948,1,0.153748986,0,0.944878992,0.983640955,0.724496596,1,0,0,0.053157347,0.312029739,0.860340568,0.584837164,0.961238037,0.922476074,0,0,0,0,0,0,-0.458411182,117.2846314,0.458411182,62.7153686,0,0.940927617,0,0,0,6,4,0% +6/12/2018 13:00,88.16679987,61.46370632,2.705050814,15.22230454,2.218090519,2.171598721,0,2.171598721,2.151206906,0.020391816,5.411185568,4.688431067,0.722754501,0.066883613,0.655870888,1.538800949,1.072744046,-30.89773017,30.89773017,0,0.819981091,0.016720903,0.537801726,1,0.792271535,0,0.032353544,0.961238037,1,0.636846761,0.912350165,2.067821903,0.046422355,0.115824807,0.212566667,0.724496596,0.448993192,0.9759483,0.937186337,0.012114237,0.520536321,2.07993614,0.566958676,0,0.97392059,-0.307997456,107.9385892,0.307997456,72.06141076,0,0.887660997,2.07993614,1.431469997,3.016804624,6,5,45% +6/12/2018 14:00,77.61132093,70.10629794,140.4568252,429.1008306,48.39652686,47.99601589,0,47.99601589,46.93719301,1.058822877,92.34983657,56.83511931,35.51471726,1.459333849,34.05538342,1.354573087,1.223585725,-4.552541871,4.552541871,0.691315799,0.344565149,0.844599309,27.16521707,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11781527,1.057282406,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611909324,26.11223993,45.72972459,27.16952233,0,56.83511931,-0.132451665,97.6112877,0.132451665,82.3887123,0,0.672503801,45.72972459,65.39135607,88.52705932,6,6,94% +6/12/2018 15:00,66.2595534,78.28839251,345.9583463,668.7572743,76.72063547,122.8296542,45.81444876,77.01520539,74.40722525,2.607980148,86.19501665,0,86.19501665,2.313410229,83.88160642,1.156447368,1.366390215,-2.249952439,2.249952439,0.914918217,0.221762638,2.435295814,78.32748466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52305512,1.676057835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764363527,75.29135758,73.28741865,76.96741542,45.81444876,0,0.068506842,86.07177035,-0.068506842,93.92822965,0,0,73.28741865,76.96741542,123.6610527,6,7,69% +6/12/2018 16:00,54.54367385,86.63787329,549.4790454,783.9424551,94.72796141,314.0811364,218.0673674,96.01376901,91.87156386,4.142205145,136.0839538,0,136.0839538,2.856397545,133.2275562,0.951966695,1.512116146,-1.345421766,1.345421766,0.760234362,0.172395949,3.320263182,106.7910772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31044169,2.069450298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405519372,102.6516454,90.71596106,104.7210957,218.0673674,0,0.27816757,73.84913007,-0.27816757,106.1508699,0.870252231,0,280.4895741,104.7210957,349.0274369,6,8,24% +6/12/2018 17:00,42.72367079,96.12208597,729.1914897,846.0878826,107.6262577,517.6789344,407.801052,109.8778824,104.380929,5.496953461,180.0462477,0,180.0462477,3.245328769,176.800919,0.745668724,1.677646884,-0.829206498,0.829206498,0.671956352,0.1475967,3.959865169,127.3628758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3349192,2.351229646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868908835,122.4260407,103.2038281,124.7772703,407.801052,0,0.481984272,61.18492168,-0.481984272,118.8150783,0.946262175,0,489.0905385,124.7772703,570.7547664,6,9,17% +6/12/2018 18:00,31.16816113,108.7530097,870.7044101,881.129252,116.7644103,706.6445791,586.837309,119.8072701,113.2435325,6.563737631,214.6332427,0,214.6332427,3.520877785,211.1123649,0.543987033,1.898098091,-0.471702813,0.471702813,0.610819622,0.134103387,4.351823873,139.969615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8539909,2.55086397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152881582,134.544118,112.0068725,137.0949819,586.837309,0,0.666005932,48.24045588,-0.666005932,131.7595441,0.974925594,0,684.1295843,137.0949819,773.855508,6,10,13% +6/12/2018 19:00,20.79340146,129.9420313,963.5726873,899.7299143,122.4452715,861.701235,735.6843223,126.0169127,118.7530948,7.263817931,237.3215306,0,237.3215306,3.692176711,233.6293539,0.362913318,2.267916284,-0.190198916,0.190198916,0.56267962,0.127074245,4.490868344,144.4417632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1499917,2.674969458,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253618827,138.8429169,117.4036105,141.5178863,735.6843223,0,0.817672404,35.1475333,-0.817672404,144.8524667,0.988850816,0,844.8856532,141.5178863,937.5062795,6,11,11% +6/12/2018 20:00,14.78883469,171.9514321,1001.136293,906.4768787,124.6881384,968.4553353,839.9800161,128.4753192,120.928331,7.546988258,246.4968924,0,246.4968924,3.759807423,242.737085,0.258113858,3.001118644,0.05467038,-0.05467038,0.520804504,0.124546617,4.380926172,140.905645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2409115,2.723967679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173966099,135.4438656,119.4148776,138.1678333,839.9800161,0,0.926642517,22.0826497,-0.926642517,157.9173503,0.996041759,0,956.0700505,138.1678333,1046.498134,6,12,9% +6/12/2018 21:00,18.28807435,220.3394292,980.7334846,902.8629078,123.4734492,1016.906924,889.7634714,127.1434524,119.7502691,7.393183271,241.5133679,0,241.5133679,3.72318006,237.7901879,0.319187111,3.845648512,0.287184463,-0.287184463,0.481042254,0.125899086,4.039476828,129.9234604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1085136,2.69743128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.926587211,124.887372,118.0351008,127.5848033,889.7634714,0,0.985491223,9.771911441,-0.985491223,170.2280886,0.999263881,0,1007.1436,127.5848033,1090.645302,6,13,8% +6/12/2018 22:00,27.88240832,246.2760226,903.8142166,888.100468,118.8139907,1001.454062,879.4094183,122.0446438,115.2313105,6.813333337,222.722901,0,222.722901,3.582680196,219.1402208,0.486639829,4.298327462,0.527962564,-0.527962564,0.439866774,0.131458422,3.498653508,112.5287233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7647187,2.595639606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534762556,108.1668891,113.2994812,110.7625287,879.4094183,0,0.990213889,8.022274281,-0.990213889,171.9777257,0.999505859,0,992.2743471,110.7625287,1064.766207,6,14,7% +6/12/2018 23:00,39.2304434,260.6146254,775.8771462,858.704264,110.7174741,920.8392877,807.6114643,113.2278234,107.3789338,5.84888966,191.4589372,0,191.4589372,3.338540348,188.1203969,0.684700404,4.548583292,0.802494192,-0.802494192,0.3929191,0.142699749,2.804831483,90.21302203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2167155,2.418761117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.032090861,86.71618819,105.2488063,89.13494931,807.6114643,0,0.940500121,19.86428447,-0.940500121,160.1357155,0.996836796,0,910.3056307,89.13494931,968.6426723,6,15,6% +6/12/2018 0:00,51.01926261,270.7431596,606.2636679,806.3682762,99.01038026,777.7506377,677.1555141,100.5951236,96.02485199,4.570271616,149.9811736,0,149.9811736,2.985528274,146.9956454,0.890454115,4.725359562,1.155642225,-1.155642225,0.33252723,0.163312409,2.017929467,64.90354825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.30274021,2.163005072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.46198303,62.3877593,93.76472324,64.55076437,677.1555141,0,0.839759616,32.88525561,-0.839759616,147.1147444,0.990459152,0,764.4595993,64.55076437,806.7067835,6,16,6% +6/12/2018 1:00,62.79137872,279.3041531,408.1006244,711.4502721,82.80296994,577.7750747,494.3924849,83.38258978,80.30615489,3.076434889,101.4455363,0,101.4455363,2.496815054,98.94872122,1.0959163,4.874777087,1.696166433,-1.696166433,0.240092146,0.202898415,1.212965198,39.0131303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.19333067,1.808934007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.878789157,37.50090478,78.07211983,39.30983879,494.3924849,0,0.694907999,45.98011364,-0.694907999,134.0198864,0.978048029,0,561.6117153,39.30983879,587.3392186,6,17,5% +6/12/2018 2:00,74.27553275,287.4635179,200.0034627,521.7032327,58.61587478,327.5462066,269.1901062,58.35610047,56.84838989,1.507710584,50.26063998,0,50.26063998,1.767484894,48.49315509,1.2963526,5.017184866,2.819200876,-2.819200876,0.048041946,0.2930743,0.49307622,15.85902618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64483469,1.280536789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.357232043,15.24429919,55.00206674,16.52483598,269.1901062,0,0.515983205,58.93680354,-0.515983205,121.0631965,0.953097621,0,311.5665166,16.52483598,322.3816912,6,18,3% +6/12/2018 3:00,85.16150863,295.9138463,25.31459024,120.2161367,15.17468736,52.94064885,38.03270222,14.90794663,14.71711455,0.190832074,6.5953883,0,6.5953883,0.457572813,6.137815487,1.486348721,5.16467092,8.219115005,-8.219115005,0,0.599444321,0.114393203,3.679278638,0.466779782,1,0.121072528,0,0.948816736,0.987578699,0.724496596,1,14.26802767,0.331509945,0.065373029,0.312029739,0.831399283,0.555895879,0.961238037,0.922476074,0.07830161,3.536662575,14.34632928,3.86817252,20.27980576,0,0.31636936,71.55649939,-0.31636936,108.4435006,0.891956882,0,32.4350416,3.86817252,34.96668315,6,19,8% +6/12/2018 4:00,95.52537694,305.1958922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667232347,5.326673183,-5.900305334,5.900305334,0.460834672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103828809,84.04030657,-0.103828809,95.95969343,0.568438085,0,0,0,0,6,20,0% +6/12/2018 5:00,104.5336139,315.7961323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824455742,5.511682273,-1.581464763,1.581464763,0.800600092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100077995,95.74366181,0.100077995,84.25633819,0,0.550389673,0,0,0,6,21,0% +6/12/2018 6:00,111.8414647,328.1043704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952001799,5.726501553,-0.514280934,0.514280934,0.618100909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284163231,106.5088374,0.284163231,73.49116265,0,0.874044793,0,0,0,6,22,0% +6/12/2018 7:00,116.8279511,342.2140449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039032404,5.97276183,0.076387241,-0.076387241,0.517090702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435886415,115.8417113,0.435886415,64.15828873,0,0.935291217,0,0,0,6,23,0% +6/13/2018 8:00,118.9055907,357.6325972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075294057,6.241866334,0.548597867,-0.548597867,0.436337929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544912197,123.0186637,0.544912197,56.98133632,0,0.958242098,0,0,0,6,0,0% +6/13/2018 9:00,117.7763191,13.24509502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055584549,0.231170518,1.040837364,-1.040837364,0.352160017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603814066,127.1435511,0.603814066,52.85644886,0,0.967193052,0,0,0,6,1,0% +6/13/2018 10:00,113.6065783,27.82962578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982808842,0.4857186,1.695898728,-1.695898728,0.240137927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608579977,127.4868968,0.608579977,52.51310324,0,0.96784153,0,0,0,6,2,0% +6/13/2018 11:00,106.9258469,40.68715911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866208084,0.71012489,2.865309155,-2.865309155,0.040156966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558885492,123.9787571,0.558885492,56.02124295,0,0.960536236,0,0,0,6,3,0% +6/13/2018 12:00,98.3665955,51.76373774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716820965,0.903447657,6.457909014,-6.457909014,0,#DIV/0!,0,0,0.364762268,1,0.153628726,0,0.944893929,0.983655892,0.724496596,1,0,0,0.053201388,0.312029739,0.860234099,0.584730695,0.961238037,0.922476074,0,0,0,0,0,0,-0.458115859,117.265594,0.458115859,62.734406,0,0.940857304,0,0,0,6,4,0% +6/13/2018 13:00,88.16551693,61.38852457,2.709537381,15.24610996,2.221474342,2.174914331,0,2.174914331,2.154488694,0.020425637,5.418363549,4.694419193,0.723944356,0.066985648,0.656958708,1.538778557,1.071431877,-30.8699993,30.8699993,0,0.819872188,0.016746412,0.538622173,1,0.792066699,0,0.032382587,0.961238037,1,0.636771771,0.912275175,2.070976483,0.046491932,0.115824807,0.212481746,0.724496596,0.448993192,0.975959958,0.937197994,0.012132718,0.521332431,2.083109201,0.567824363,0,0.976126078,-0.30790931,107.9332809,0.30790931,72.06671914,0,0.887614523,2.083109201,1.434248046,3.021795862,6,5,45% +6/13/2018 14:00,77.61649558,70.02974995,140.366279,428.9373274,48.37889673,47.9782348,0,47.9782348,46.9200945,1.058140302,92.34431976,56.85208807,35.4922317,1.458802236,34.03342946,1.354663402,1.222249711,-4.554512048,4.554512048,0.690978879,0.344661817,0.843852775,27.14120598,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10137952,1.056897254,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611368463,26.08915955,45.71274799,27.14605681,0,56.85208807,-0.132541713,97.61649298,0.132541713,82.38350702,0,0.67276027,45.71274799,65.39388291,88.51173647,6,6,94% +6/13/2018 15:00,66.26933013,78.20744223,345.7816,668.6231454,76.70232932,122.6452631,45.64914425,76.99611885,74.38947109,2.606647759,86.15161046,0,86.15161046,2.31285823,83.83875223,1.156618004,1.364977367,-2.251455677,2.251455677,0.915175286,0.221823051,2.434586494,78.30467047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.50598915,1.675657915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763849627,75.26942772,73.26983878,76.94508563,45.64914425,0,0.068273353,86.08517965,-0.068273353,93.91482035,0,0,73.26983878,76.94508563,123.6288584,6,7,69% +6/13/2018 16:00,54.55593836,86.54760945,549.2772162,783.8571188,94.71231884,313.7821141,217.7850375,95.99707665,91.85639298,4.140683671,136.0345462,0,136.0345462,2.855925864,133.1786204,0.952180751,1.510540745,-1.346663466,1.346663466,0.760446705,0.172430816,3.319805869,106.7763685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29585886,2.069108567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405188051,102.6375068,90.70104691,104.7066154,217.7850375,0,0.277837673,73.86880745,-0.277837673,106.1311925,0.870038803,0,280.1824803,104.7066154,348.710866,6,8,24% +6/13/2018 17:00,42.73564194,96.01394453,729.0260346,846.0410549,107.6151483,517.3288897,407.4630289,109.8658607,104.3701545,5.495706191,180.0057962,0,180.0057962,3.244993779,176.7608025,0.74587766,1.67575946,-0.830320474,0.830320474,0.672146853,0.147614959,3.959891978,127.3637381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3245625,2.350986947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868928258,122.4268695,103.1934907,124.7778565,407.4630289,0,0.481611414,61.209301,-0.481611414,118.790699,0.946181863,0,488.7276183,124.7778565,570.3922298,6,9,17% +6/13/2018 18:00,31.17490448,108.6103459,870.6330538,881.1137883,116.7599617,706.3125562,586.5101385,119.8024177,113.239218,6.563199716,214.6158074,0,214.6158074,3.520743642,211.0950637,0.544104727,1.895608138,-0.472769725,0.472769725,0.611002074,0.134109268,4.352519133,139.991977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8498436,2.550766784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153385295,134.5656131,112.0032289,137.1163799,586.5101385,0,0.665646306,48.26807264,-0.665646306,131.7319274,0.974885033,0,683.7831849,137.1163799,773.5231132,6,10,13% +6/13/2018 19:00,20.78333768,129.735605,963.6458304,899.743454,122.4496669,861.4549948,735.4332678,126.021727,118.7573577,7.264369315,237.3393975,0,237.3393975,3.692309248,233.6470883,0.362737672,2.264313465,-0.19128052,0.19128052,0.562864585,0.127069161,4.492366004,144.4899331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1540893,2.675065481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254703878,138.8892196,117.4087932,141.5642851,735.4332678,0,0.817381071,35.17651829,-0.817381071,144.8234817,0.988829021,0,844.6265517,141.5642851,937.2775451,6,11,11% +6/13/2018 20:00,14.73954437,171.7361447,1001.393659,906.5217187,124.7034093,968.3568856,839.8648158,128.4920698,120.9431414,7.548928394,246.5597543,0,246.5597543,3.760267897,242.7994864,0.25725358,2.99736117,0.053512376,-0.053512376,0.521002534,0.124529857,4.383300523,140.9820123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2551478,2.724301291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.175686308,135.5172728,119.4308341,138.241574,839.8648158,0,0.926469602,22.10898788,-0.926469602,157.8910121,0.996031689,0,955.9628048,138.241574,1046.43915,6,12,9% +6/13/2018 21:00,18.2151399,220.3090035,981.2013699,902.9471162,123.5013973,1017.009012,889.8349275,127.1740849,119.7773745,7.396710388,241.6276549,0,241.6276549,3.7240228,237.9036321,0.317914165,3.845117483,0.28587149,-0.28587149,0.481266786,0.125867535,4.042734612,130.0282419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1345683,2.698041841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928947464,124.988092,118.0635158,127.6861338,889.8349275,0,0.985478453,9.776221304,-0.985478453,170.2237787,0.999263224,0,1007.242834,127.6861338,1090.810855,6,13,8% +6/13/2018 22:00,27.81028159,246.3046229,904.5034291,888.24138,118.8563543,1001.797816,879.7068908,122.0909256,115.2723966,6.818528913,222.891286,0,222.891286,3.583957614,219.3073284,0.48538098,4.298826632,0.526372838,-0.526372838,0.440138633,0.13140509,3.502727846,112.6597681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8042123,2.596565091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.537714401,108.2928543,113.3419267,110.8894194,879.7068908,0,0.990391701,7.948940477,-0.990391701,172.0510595,0.999514924,0,992.622093,110.8894194,1065.197,6,14,7% +6/13/2018 23:00,39.16027958,260.6473557,776.7816059,858.9374854,110.7765472,921.453799,808.1618656,113.2919334,107.4362256,5.855707859,191.6800152,0,191.6800152,3.340321619,188.3396936,0.683475815,4.549154544,0.800404369,-0.800404369,0.393276481,0.142609643,2.809575103,90.36559317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2717865,2.420051642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035527598,86.86284538,105.3073141,89.28289702,808.1618656,0,0.940885547,19.79919183,-0.940885547,160.2008082,0.996858574,0,910.9303988,89.28289702,969.3642692,6,15,6% +6/13/2018 0:00,50.94971022,270.7714209,607.3589568,806.7719126,99.09082308,778.6562556,677.9748581,100.6813975,96.10286915,4.578528366,150.2491648,0,150.2491648,2.987953922,147.2612108,0.889240196,4.725852814,1.152562229,-1.152562229,0.33305394,0.163150345,2.023097937,65.069784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37773328,2.164762445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465727568,62.54755143,93.84346085,64.71231387,677.9748581,0,0.840355059,32.82236802,-0.840355059,147.177632,0.99050134,0,765.3784662,64.71231387,807.7313814,6,16,6% +6/13/2018 1:00,62.7215441,279.3268716,409.3388053,712.2192965,82.91774184,578.9948096,495.4915748,83.50323481,80.41746599,3.08576882,101.7492083,0,101.7492083,2.50027585,99.2489325,1.094697456,4.875173598,1.690717933,-1.690717933,0.241023895,0.202565065,1.218156426,39.18009805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.30032714,1.811441342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.882550184,37.66140053,78.18287732,39.47284187,495.4915748,0,0.695700857,45.91690723,-0.695700857,134.0830928,0.97813003,0,562.838066,39.47284187,588.6722515,6,17,5% +6/13/2018 2:00,74.2050647,287.4804973,201.2795168,523.4097534,58.80989951,329.1281943,270.5743002,58.55389407,57.03656405,1.517330019,50.57588464,0,50.57588464,1.773335456,48.80254919,1.295122701,5.017481212,2.80532987,-2.80532987,0.050414027,0.29218025,0.497478336,16.00061334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.82571486,1.284775501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.360421361,15.38039816,55.18613622,16.66517366,270.5743002,0,0.516945469,58.87241831,-0.516945469,121.1275817,0.953277999,0,313.1186638,16.66517366,324.0256866,6,18,3% +6/13/2018 3:00,85.09176898,295.9244732,26.09038231,123.3771664,15.53422509,54.42721524,39.16472403,15.26249121,15.06581089,0.196680322,6.794329456,0,6.794329456,0.468414202,6.325915254,1.485131535,5.164856395,8.100219344,-8.100219344,0,0.59540044,0.11710355,3.766452723,0.460935448,1,0.122831946,0,0.948610927,0.98737289,0.724496596,1,14.60639597,0.339364495,0.064702116,0.312029739,0.832958017,0.557454613,0.961238037,0.922476074,0.08015081,3.620457621,14.68654678,3.959822116,21.11231443,0,0.317438998,71.49188319,-0.317438998,108.5081168,0.892489422,0,33.52906408,3.959822116,36.12068846,6,19,8% +6/13/2018 4:00,95.45322827,305.1987274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665973115,5.326722667,-5.97842633,5.97842633,0.447475195,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105016354,83.9718912,-0.105016354,96.0281088,0.573883681,0,0,0,0,6,20,0% +6/13/2018 5:00,104.4619631,315.788721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823205199,5.511552923,-1.590103062,1.590103062,0.802077328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098857318,95.67337355,0.098857318,84.32662645,0,0.544220547,0,0,0,6,21,0% +6/13/2018 6:00,111.772323,328.0834617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950795048,5.726136628,-0.516977493,0.516977493,0.618562048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.282965383,106.437268,0.282965383,73.56273196,0,0.87329994,0,0,0,6,22,0% +6/13/2018 7:00,116.7644958,342.1768363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037924902,5.972112417,0.075311107,-0.075311107,0.517274732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434765886,115.7703978,0.434765886,64.22960224,0,0.934995577,0,0,0,6,23,0% +6/14/2018 8:00,118.8516602,357.5791102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074352792,6.240932809,0.548205183,-0.548205183,0.436405082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543918232,122.9507704,0.543918232,57.04922962,0,0.958074418,0,0,0,6,0,0% +6/14/2018 9:00,117.7349781,13.17953865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054863012,0.230026343,1.040840627,-1.040840627,0.352159459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60298727,127.0841461,0.60298727,52.91585394,0,0.96707951,0,0,0,6,1,0% +6/14/2018 10:00,113.578809,27.75826823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982324177,0.484473175,1.696224186,-1.696224186,0.24008227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607949512,127.4413866,0.607949512,52.55861342,0,0.967756328,0,0,0,6,2,0% +6/14/2018 11:00,106.9106127,40.6148321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865942197,0.708862545,2.86601181,-2.86601181,0.040036805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558467067,123.9498513,0.558467067,56.05014866,0,0.960469206,0,0,0,6,3,0% +6/14/2018 12:00,98.36183947,51.69247654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716737957,0.902203914,6.458981913,-6.458981913,0,#DIV/0!,0,0,0.364836297,1,0.153603606,0,0.944897048,0.983659011,0.724496596,1,0,0,0.053210588,0.312029739,0.86021186,0.584708456,0.961238037,0.922476074,0,0,0,0,0,0,-0.457910657,117.252368,0.457910657,62.74763202,0,0.940808394,0,0,0,6,4,0% +6/14/2018 13:00,88.16873247,61.31811281,2.698300855,15.18648703,2.212998342,2.166609208,0,2.166609208,2.146268277,0.020340932,5.396875637,4.67591129,0.720964347,0.066730065,0.654234282,1.538834679,1.07020296,-30.91846279,30.91846279,0,0.820145143,0.016682516,0.536567069,1,0.792424414,0,0.032331864,0.961238037,1,0.636902743,0.912406147,2.063074705,0.046316706,0.115824807,0.212630063,0.724496596,0.448993192,0.975939597,0.937177634,0.012086426,0.519339811,2.075161131,0.565656516,0,0.970605027,-0.307899469,107.9326882,0.307899469,72.06731176,0,0.887609333,2.075161131,1.427174597,3.009218361,6,5,45% +6/14/2018 14:00,77.62611759,69.95849837,140.1979328,428.6331221,48.34609793,47.94515594,0,47.94515594,46.8882847,1.056871237,92.33352207,56.88309688,35.45042519,1.457813231,33.99261196,1.354831337,1.221006136,-4.558165787,4.558165787,0.690354052,0.344841732,0.842466831,27.09662926,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.07080274,1.056180723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610364351,26.04631071,45.68116709,27.10249144,0,56.88309688,-0.132708122,97.62611252,0.132708122,82.37388748,0,0.67323331,45.68116709,65.39808705,88.4829071,6,6,94% +6/14/2018 15:00,66.28327419,78.1324343,345.5295027,668.4316962,76.6762078,122.4039145,45.43502991,76.96888457,74.36413723,2.604747343,86.08969889,0,86.08969889,2.31207057,83.77762832,1.156861374,1.363668231,-2.253367275,2.253367275,0.915502189,0.221909293,2.43349312,78.26950381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.48163728,1.675087257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763057481,75.23562419,73.24469476,76.91071144,45.43502991,0,0.067972584,86.10245256,-0.067972584,93.89754744,0,0,73.24469476,76.91071144,123.5812172,6,7,69% +6/14/2018 16:00,54.57222119,86.46419762,549.0092165,783.7437385,94.69154283,313.425231,217.4503242,95.97490681,91.83624344,4.138663376,135.9689401,0,135.9689401,2.855299391,133.1136407,0.95246494,1.509084934,-1.348055271,1.348055271,0.760684718,0.172477146,3.319047178,106.7519664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.27649035,2.068654689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404638382,102.6140506,90.68112873,104.6827053,217.4503242,0,0.277450796,73.891881,-0.277450796,106.108119,0.869787866,0,279.8167822,104.6827053,348.3295192,6,8,24% +6/14/2018 17:00,42.75169532,95.91401556,728.8041011,845.9782179,107.6002449,516.9278453,407.0781116,109.8497337,104.3557005,5.494033162,179.9515365,0,179.9515365,3.244544386,176.7069921,0.746157844,1.67401537,-0.831493219,0.831493219,0.672347405,0.147639461,3.959669784,127.3565915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3106687,2.350661363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868767279,122.42,103.179436,124.7706614,407.0781116,0,0.48119219,61.23670517,-0.48119219,118.7632948,0.946091414,0,488.3125423,124.7706614,569.9724447,6,9,17% +6/14/2018 18:00,31.18617318,108.4778625,870.5137808,881.0879362,116.7525254,705.9384749,586.1441683,119.7943066,113.232006,6.562300586,214.586664,0,214.586664,3.520519412,211.0661446,0.544301403,1.893295866,-0.473851804,0.473851804,0.611187121,0.134119101,4.352999422,140.0074247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8429111,2.55060433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153733263,134.5804621,111.9966444,137.1310664,586.1441683,0,0.665250475,48.29845596,-0.665250475,131.701544,0.974840339,0,683.3936243,137.1310664,773.1431647,6,10,13% +6/14/2018 19:00,20.77896082,129.5406051,963.6776306,899.7493401,122.4515778,861.1752947,735.1514747,126.02382,118.759211,7.264609039,237.3471655,0,237.3471655,3.69236687,233.6547986,0.362661282,2.260910075,-0.192350757,0.192350757,0.563047606,0.127066951,4.493667866,144.5318054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1558708,2.675107228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255647072,138.9294689,117.4115179,141.6045762,735.1514747,0,0.817062533,35.20818608,-0.817062533,144.7918139,0.988805173,0,844.3330993,141.6045762,937.0104623,6,11,11% +6/14/2018 20:00,14.69727012,171.5208227,1001.613723,906.560045,124.7164659,968.2318363,839.7254446,128.5063916,120.9558043,7.550587327,246.613505,0,246.613505,3.760661601,242.8528434,0.256515755,2.993603092,0.052386453,-0.052386453,0.521195079,0.124515532,4.385484776,141.0522654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2673198,2.724586528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.177268791,135.5848027,119.4445886,138.3093892,839.7254446,0,0.926276698,22.13833572,-0.926276698,157.8616643,0.996020449,0,955.8283033,138.3093892,1046.349032,6,12,9% +6/14/2018 21:00,18.14758292,220.2648257,981.6331492,903.0247701,123.5271848,1017.088673,889.8863233,127.2023497,119.8023844,7.399965323,241.7331224,0,241.7331224,3.724800388,238.008322,0.316735073,3.844346434,0.284611455,-0.284611455,0.481482264,0.125838441,4.045795825,130.1267011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1586088,2.698605201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931165303,125.0827347,118.0897741,127.7813399,889.8863233,0,0.985450624,9.78560725,-0.985450624,170.2143927,0.999261791,0,1007.319175,127.7813399,1090.949506,6,13,8% +6/14/2018 22:00,27.74195579,246.3211717,905.1548143,888.3744052,118.8963818,1002.119927,879.9852705,122.1346565,115.3112172,6.823439329,223.0504288,0,223.0504288,3.585164592,219.4652643,0.484188469,4.299115463,0.524862437,-0.524862437,0.440396927,0.131354747,3.506588991,112.7839558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8415281,2.597439543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540511787,108.4122282,113.3820398,111.0096678,879.9852705,0,0.990556758,7.880260097,-0.990556758,172.1197399,0.999523337,0,992.9478536,111.0096678,1065.601461,6,14,7% +6/14/2018 23:00,39.09330012,260.6706022,777.6437703,859.1594228,110.8328304,922.0434754,808.6904566,113.3530188,107.4908116,5.862207219,191.8907541,0,191.8907541,3.342018766,188.5487354,0.682306803,4.549560272,0.798434283,-0.798434283,0.393613386,0.14252391,2.814082092,90.51055341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3242567,2.421281219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038792896,87.00218667,105.3630496,89.42346789,808.6904566,0,0.94125774,19.73613842,-0.94125774,160.2638616,0.996879587,0,911.5300579,89.42346789,970.0559292,6,15,6% +6/14/2018 0:00,50.88321131,270.7918649,608.4052092,807.1565258,99.16759364,779.5291428,678.7654025,100.7637403,96.1773248,4.586415458,150.5051557,0,150.5051557,2.990268838,147.5148868,0.888079571,4.726209629,1.149676306,-1.149676306,0.333547462,0.162995964,2.0280053,65.22762168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.44930288,2.166439594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469282937,62.69927101,93.91858582,64.86571061,678.7654025,0,0.840934045,32.76111567,-0.840934045,147.2388843,0.990542305,0,766.2644322,64.86571061,808.7177424,6,16,6% +6/14/2018 1:00,62.6548937,279.34282,410.5199869,712.950241,83.02702138,580.1676684,496.549545,83.61812342,80.52345035,3.094673065,102.0388947,0,102.0388947,2.503571032,99.53532365,1.093534188,4.875451952,1.685636869,-1.685636869,0.241892808,0.202248426,1.223072959,39.33823063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.40220334,1.81382869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886112195,37.81340359,78.28831553,39.62723228,496.549545,0,0.69647153,45.8554046,-0.69647153,134.1445954,0.978209557,0,564.0178257,39.62723228,589.9530567,6,17,5% +6/14/2018 2:00,74.13807868,287.4913911,202.4929759,525.0233562,58.99359929,330.6391498,271.8979476,58.7412022,57.21472461,1.526477586,50.87564108,0,50.87564108,1.778874682,49.0967664,1.293953574,5.017671345,2.79245198,-2.79245198,0.052616276,0.291336522,0.501636797,16.13436374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.99696956,1.288788652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363434151,15.50896413,55.36040372,16.79775278,271.8979476,0,0.517877813,58.80999324,-0.517877813,121.1900068,0.95345213,0,314.6020808,16.79775278,325.5958741,6,18,3% +6/14/2018 3:00,85.02583451,295.9295063,26.83224681,126.3771787,15.87451734,55.84561501,40.24750013,15.59811488,15.39584207,0.20227281,6.984464161,0,6.984464161,0.478675269,6.505788893,1.483980761,5.164944239,7.991592048,-7.991592048,0,0.591620875,0.119668817,3.848960519,0.455482729,1,0.124484482,0,0.948416973,0.987178936,0.724496596,1,14.92663118,0.346798603,0.06407337,0.312029739,0.834422036,0.558918632,0.961238037,0.922476074,0.081902018,3.699767253,15.0085332,4.046565855,21.91545894,0,0.318471266,71.42950129,-0.318471266,108.5704987,0.892999965,0,34.57903726,4.046565855,37.22743368,6,19,8% +6/14/2018 4:00,95.38558851,305.1964089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664792578,5.3266822,-6.054316787,6.054316787,0.434497163,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106153816,83.9063531,-0.106153816,96.0936469,0.578985373,0,0,0,0,6,20,0% +6/14/2018 5:00,104.3954778,315.7767009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822044812,5.511343132,-1.598513041,1.598513041,0.803515519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.097697365,95.60658986,0.097697365,84.39341014,0,0.53821547,0,0,0,6,21,0% +6/14/2018 6:00,111.7090317,328.0587824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949690407,5.725705893,-0.519698507,0.519698507,0.619027368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281838382,106.3699558,0.281838382,73.6300442,0,0.872593362,0,0,0,6,22,0% +6/14/2018 7:00,116.707481,342.1371498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036929805,5.971419758,0.074122085,-0.074122085,0.517478066,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433725108,115.7041982,0.433725108,64.29580176,0,0.934719609,0,0,0,6,23,0% +6/15/2018 8:00,118.8045027,357.5248588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073529738,6.239985944,0.547632498,-0.547632498,0.436503017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543011093,122.8888532,0.543011093,57.11114677,0,0.95792085,0,0,0,6,0,0% +6/15/2018 9:00,117.700382,13.11502314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054259197,0.228900335,1.04057244,-1.04057244,0.352205322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602252055,127.03136,0.602252055,52.96863998,0,0.966978282,0,0,0,6,1,0% +6/15/2018 10:00,113.5574395,27.6894554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981951209,0.483272165,1.69609827,-1.69609827,0.240103803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607412733,127.4026609,0.607412733,52.59733905,0,0.967683649,0,0,0,6,2,0% +6/15/2018 11:00,106.9012598,40.54610763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865778959,0.707663077,2.865754707,-2.865754707,0.040080772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558141642,123.9273771,0.558141642,56.07262294,0,0.960417005,0,0,0,6,3,0% +6/15/2018 12:00,98.36240977,51.62552858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716747911,0.901035452,6.456033817,-6.456033817,0,#DIV/0!,0,0,0.36463284,1,0.153672649,0,0.944888474,0.983650437,0.724496596,1,0,0,0.053185302,0.312029739,0.860272985,0.584769581,0.961238037,0.922476074,0,0,0,0,0,0,-0.457795023,117.2449157,0.457795023,62.75508435,0,0.940780814,0,0,0,6,4,0% +6/15/2018 13:00,88.17638445,61.2525528,2.671675297,15.04517147,2.192896987,2.146913269,0,2.146913269,2.126773052,0.020140217,5.347320035,4.633417492,0.713902542,0.066123935,0.647778607,1.538968231,1.069058722,-31.04284118,31.04284118,0,0.820794724,0.016530984,0.531693263,1,0.793336857,0,0.03220241,0.961238037,1,0.637237098,0.912740502,2.044335153,0.045901483,0.115824807,0.213008701,0.724496596,0.448993192,0.975887596,0.937125633,0.011976641,0.514613641,2.056311795,0.560515124,0,0.957556621,-0.307967078,107.9367598,0.307967078,72.06324022,0,0.887644983,2.056311795,1.410485455,2.979446315,6,5,45% +6/15/2018 14:00,77.64011122,69.89262339,139.9531475,428.1902909,48.29835937,47.89701158,0,47.89701158,46.84198564,1.055025942,92.31740288,56.92776821,35.38963467,1.456373737,33.93326093,1.355075572,1.219856401,-4.563483572,4.563483572,0.689444658,0.345103774,0.840453161,27.03186269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.02629831,1.055137815,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.608905454,25.98405462,45.63520377,27.03919244,0,56.92776821,-0.132949694,97.6400773,0.132949694,82.3599227,0,0.673917901,45.63520377,65.40383452,88.44070538,6,6,94% +6/15/2018 15:00,66.30130073,78.06345142,345.2035753,668.1839377,76.642417,122.1068595,45.17320377,76.93365571,74.33136534,2.602290365,86.00965511,0,86.00965511,2.311051653,83.69860346,1.157175996,1.362464253,-2.255680271,2.255680271,0.915897734,0.222020925,2.43202302,78.22222033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4501357,1.674349055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761992399,75.19017351,73.2121281,76.86452257,45.17320377,0,0.067605941,86.12350813,-0.067605941,93.87649187,0,0,73.2121281,76.86452257,123.5184208,6,7,69% +6/15/2018 16:00,54.59242961,86.38773,548.6765365,783.6028896,94.66574476,313.0119986,217.0646198,95.94737877,91.81122327,4.136155494,135.8875001,0,135.8875001,2.854521484,133.0329786,0.952817643,1.507750322,-1.349593268,1.349593268,0.760947731,0.172534706,3.317993098,106.7180636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.25244002,2.068091098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403874705,102.5814619,90.65631472,104.649553,217.0646198,0,0.277008447,73.91825966,-0.277008447,106.0817403,0.869500089,0,279.394021,104.649553,347.8850605,6,8,25% +6/15/2018 17:00,42.77173121,95.82241582,728.5270183,845.8997267,107.5816352,516.4773632,406.6477669,109.8295963,104.3376519,5.491944395,179.8837934,0,179.8837934,3.243983234,176.6398102,0.746507536,1.672416653,-0.832722012,0.832722012,0.672557541,0.147670069,3.959203077,127.3415806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2933197,2.35025481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868429152,122.405571,103.1617489,124.7558258,406.6477669,0,0.480728098,61.26703394,-0.480728098,118.7329661,0.945991101,0,487.8469177,124.7558258,569.4971106,6,9,17% +6/15/2018 18:00,31.20186273,108.355744,870.3476515,881.0519191,116.7421672,705.5237862,585.7407779,119.7830083,113.2219601,6.561048234,214.5460717,0,214.5460717,3.520207073,211.0258646,0.544575237,1.891164496,-0.474946899,0.474946899,0.611374393,0.1341328,4.353267533,140.0160481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8332546,2.550378041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153927508,134.5887512,111.9871822,137.1391293,585.7407779,0,0.66481982,48.33149607,-0.66481982,131.6685039,0.974791653,0,682.962403,137.1391293,772.7172203,6,10,13% +6/15/2018 19:00,20.78017711,129.3574396,963.6687943,899.7477046,122.4510469,860.8633404,734.840102,126.0232384,118.758696,7.264542427,237.345007,0,237.345007,3.692350859,233.6526561,0.36268251,2.257713232,-0.193407762,0.193407762,0.563228365,0.127067565,4.494774883,144.5674109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1553758,2.675095628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256449102,138.9636943,117.4118249,141.6387899,734.840102,0,0.816717951,35.2424151,-0.816717951,144.7575849,0.988779355,0,844.0065468,141.6387899,936.706302,6,11,11% +6/15/2018 20:00,14.66201467,171.3061768,1001.796777,906.5919155,124.7273259,968.081038,839.5627339,128.5183041,120.9663369,7.551967268,246.6582161,0,246.6582161,3.760989072,242.8972271,0.255900431,2.989856815,0.051294345,-0.051294345,0.52138184,0.124503621,4.387478007,141.1163746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2774442,2.72482378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178712881,135.6464269,119.4561571,138.3712506,839.5627339,0,0.92606466,22.1705519,-0.92606466,157.8294481,0.99600809,0,955.6674319,138.3712506,1046.228648,6,12,9% +6/15/2018 21:00,18.08548496,220.2070277,982.028673,903.0958562,123.5508036,1017.14632,889.9180818,127.228238,119.8252911,7.402946948,241.8297339,0,241.8297339,3.725512584,238.1042213,0.315651259,3.84333767,0.283406074,-0.283406074,0.481688397,0.125811809,4.048657746,130.2187503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1806275,2.699121185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933238755,125.1712159,118.1138663,127.8703371,889.9180818,0,0.985408222,9.799891145,-0.985408222,170.2001089,0.999259607,0,1007.373059,127.8703371,1091.061638,6,13,8% +6/15/2018 22:00,27.67751875,246.3256864,905.7677815,888.4994493,118.9340389,1002.420322,880.2445232,122.1757989,115.3477388,6.828060135,223.2001853,0,223.2001853,3.586300092,219.6138852,0.483063831,4.299194259,0.523433156,-0.523433156,0.440641348,0.131307429,3.510232619,112.9011474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.876634,2.598262209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543151583,108.5248772,113.4197856,111.1231395,880.2445232,0,0.990709138,7.81632245,-0.990709138,172.1836776,0.9995311,0,993.2515624,111.1231395,1065.979435,6,14,7% +6/15/2018 23:00,39.02959617,260.6843812,778.4626409,859.369875,110.8862626,922.6077441,809.1967312,113.4110129,107.5426327,5.868380211,192.09091,0,192.09091,3.343629945,188.74728,0.681194959,4.549800761,0.796585912,-0.796585912,0.393929476,0.142442626,2.818346828,90.647722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3740691,2.422448513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041882683,87.13403834,105.4159518,89.55648686,809.1967312,0,0.941616357,19.67520141,-0.941616357,160.3247986,0.996899818,0,912.1040258,89.55648686,970.7169553,6,15,6% +6/15/2018 0:00,50.81985941,270.8045146,609.4010819,807.5217579,99.24060349,780.3682473,679.5261914,100.8420559,96.24813314,4.593922767,150.7488181,0,150.7488181,2.992470354,147.7563477,0.886973872,4.726430409,1.146986681,-1.146986681,0.334007415,0.162849405,2.032645035,65.37685151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.51736655,2.168034585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472644409,62.8427164,93.99001096,65.01075099,679.5261914,0,0.841495829,32.70158578,-0.841495829,147.2984142,0.990581999,0,767.116424,65.01075099,809.6646603,6,16,6% +6/15/2018 1:00,62.591522,279.3520291,411.6425691,713.6425124,83.13069155,581.2921877,497.5650576,83.72713005,80.62399448,3.103135565,102.3142038,0,102.3142038,2.50669707,99.80750672,1.092428143,4.87561268,1.680925339,-1.680925339,0.242698527,0.201948724,1.227707776,39.48730231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49885018,1.816093494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889470105,37.95669695,78.38832029,39.77279044,497.5650576,0,0.697218914,45.79569922,-0.697218914,134.2043008,0.978286512,0,565.1495052,39.77279044,591.1800011,6,17,5% +6/15/2018 2:00,74.07466846,287.4962386,203.6420606,526.5431544,59.16683531,332.077327,273.1594502,58.9178768,57.38273693,1.535139872,51.15947367,0,51.15947367,1.784098387,49.37537528,1.292846857,5.01775595,2.780562429,-2.780562429,0.054649509,0.290543295,0.505544212,16.26003966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.15846939,1.292573208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366265061,15.6297686,55.52473445,16.92234181,273.1594502,0,0.518778846,58.74962548,-0.518778846,121.2503745,0.953619817,0,316.0149995,16.92234181,327.0903337,6,18,4% +6/15/2018 3:00,84.9638005,295.9289954,27.53756353,129.209049,16.19493145,57.19188871,41.27770441,15.9141843,15.70659452,0.207589786,7.165138034,0,7.165138034,0.488336936,6.676801098,1.482898064,5.164935321,7.892727865,-7.892727865,0,0.588103281,0.122084234,3.92664863,0.45042331,1,0.126027414,0,0.948235318,0.986997281,0.724496596,1,15.22814007,0.353798448,0.063487551,0.312029739,0.835788932,0.560285528,0.961238037,0.922476074,0.083551847,3.77444402,15.31169191,4.128242468,22.68526416,0,0.319464501,71.36945671,-0.319464501,108.6305433,0.893488088,0,35.58070521,4.128242468,38.28255734,6,19,8% +6/15/2018 4:00,95.32254264,305.1889991,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66369222,5.326552875,-6.127592001,6.127592001,0.421966363,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107239507,83.84379044,-0.107239507,96.15620956,0.583753919,0,0,0,0,6,20,0% +6/15/2018 5:00,104.3342335,315.7601491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820975897,5.511054248,-1.606669224,1.606669224,0.804910309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096599809,95.54340566,0.096599809,84.45659434,0,0.532400633,0,0,0,6,21,0% +6/15/2018 6:00,111.6516518,328.0304242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94868894,5.725210949,-0.522436554,0.522436554,0.619495602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280783777,106.3069886,0.280783777,73.69301145,0,0.871927034,0,0,0,6,22,0% +6/15/2018 7:00,116.6569487,342.0950883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03604785,5.970685645,0.072823838,-0.072823838,0.51770008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432765408,115.6431883,0.432765408,64.35681169,0,0.934463963,0,0,0,6,23,0% +6/16/2018 8:00,118.7641387,357.4699501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072825254,6.239027607,0.546882417,-0.546882417,0.436631288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542191797,122.832969,0.542191797,57.16703105,0,0.957781711,0,0,0,6,0,0% +6/16/2018 9:00,117.6725296,13.05165327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053773081,0.227794322,1.040035452,-1.040035452,0.352297152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601609064,126.9852255,0.601609064,53.01477452,0,0.96688955,0,0,0,6,1,0% +6/16/2018 10:00,113.5424482,27.62328652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981689562,0.4821173,1.695524913,-1.695524913,0.240201853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606969876,127.3707263,0.606969876,52.62927369,0,0.967623589,0,0,0,6,2,0% +6/16/2018 11:00,106.8977492,40.48107813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865717686,0.706528098,2.864547076,-2.864547076,0.040287289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557909033,123.9113164,0.557909033,56.08868359,0,0.960379655,0,0,0,6,3,0% +6/16/2018 12:00,98.36825225,51.56297985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716849881,0.899943771,6.449118483,-6.449118483,0,#DIV/0!,0,0,0.364155078,1,0.153834845,0,0.944868326,0.983630289,0.724496596,1,0,0,0.053125909,0.312029739,0.86041658,0.584913176,0.961238037,0.922476074,0,0,0,0,0,0,-0.457768373,117.2431982,0.457768373,62.75680182,0,0.940774455,0,0,0,6,4,0% +6/16/2018 13:00,88.18840787,61.19192566,2.623335802,14.73541198,2.157505525,2.112224587,0,2.112224587,2.092448774,0.019775813,5.24126067,4.540145781,0.701114889,0.065056752,0.636058137,1.539178079,1.068000578,-31.24390387,31.24390387,0,0.82242827,0.016264188,0.523112193,1,0.794795014,0,0.031995321,0.961238037,1,0.637772246,0.91327565,2.011341351,0.045169353,0.115824807,0.213614741,0.724496596,0.448993192,0.975804299,0.937042336,0.011783349,0.506294215,2.0231247,0.551463568,0,0.931660553,-0.308111221,107.9454407,0.308111221,72.05455928,0,0.887720938,2.0231247,1.378518148,2.925337258,6,5,45% +6/16/2018 14:00,77.65840022,69.83220387,139.5520738,427.0324744,48.27827353,47.87450794,0,47.87450794,46.82250546,1.052002479,92.20035681,56.90857277,35.29178405,1.455768075,33.83601597,1.355394776,1.218801881,-4.570448907,4.570448907,0.688253515,0.345951674,0.837502049,26.9369448,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.00757323,1.054699015,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.606767384,25.89281594,45.61434061,26.94751496,0,56.90857277,-0.133265211,97.65831739,0.133265211,82.34168261,0,0.674808308,45.61434061,65.34989264,88.38453835,6,6,94% +6/16/2018 15:00,66.32332484,78.00057408,344.6969348,667.3926383,76.6887485,121.8067615,44.83199067,76.97477088,74.37629978,2.598471095,85.88821133,0,85.88821133,2.312448719,83.57576261,1.157560389,1.361366836,-2.258387988,2.258387988,0.916360781,0.222481667,2.429489854,78.14074502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49332839,1.675361225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.760157129,75.11185634,73.25348552,76.78721757,44.83199067,0,0.067174835,86.14826493,-0.067174835,93.85173507,0,0,73.25348552,76.78721757,123.5091837,6,7,69% +6/16/2018 16:00,54.61647134,86.31829528,548.1607571,783.036777,94.74580438,312.5403031,216.519167,96.02113614,91.8888688,4.132267331,135.7648575,0,135.7648575,2.856935577,132.9079219,0.953237251,1.506538457,-1.35127359,1.35127359,0.761235083,0.1728431,3.316160862,106.6591325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32707586,2.0698401,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402547256,102.5248152,90.72962311,104.5946553,216.519167,0,0.27651213,73.94785248,-0.27651213,106.0521475,0.869176106,0,278.9229096,104.5946553,347.3780196,6,8,25% +6/16/2018 17:00,42.79565092,95.73925618,728.070312,845.4662119,107.682901,515.9346765,406.0103107,109.9243658,104.4358643,5.48850155,179.7761132,0,179.7761132,3.247036774,176.5290764,0.746925014,1.670965244,-0.834004141,0.834004141,0.672776798,0.147901788,3.958162939,127.3081262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3877251,2.352467089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867675575,122.3734133,103.2554007,124.7258804,406.0103107,0,0.480220623,61.30018778,-0.480220623,118.6998122,0.94588119,0,487.2929164,124.7258804,568.9235106,6,9,17% +6/16/2018 18:00,31.22187004,108.2441637,870.0066812,880.7022003,116.8596941,704.9939453,585.0995243,119.894421,113.3359432,6.558477856,214.4669434,0,214.4669434,3.523750944,210.9431925,0.544924431,1.889217053,-0.47605286,0.47605286,0.611563523,0.134320456,4.353114175,140.0111156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9428195,2.552945564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153816401,134.5840099,112.0966359,137.1369555,585.0995243,0,0.664355697,48.36708479,-0.664355697,131.6329152,0.974739112,0,682.4160264,137.1369555,772.169421,6,10,13% +6/16/2018 19:00,20.78689318,129.1864929,963.4892797,899.4548646,122.5827339,860.4181937,734.2685924,126.1496014,118.8864122,7.26318917,237.3054525,0,237.3054525,3.69632171,233.6091308,0.362799727,2.254729651,-0.194449676,0.194449676,0.563406543,0.127227917,4.495575767,144.5931701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2781415,2.677972496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25702934,138.988455,117.5351708,141.6664275,734.2685924,0,0.816348459,35.27908655,-0.816348459,144.7209135,0.988751645,0,843.5444496,141.6664275,936.262293,6,11,11% +6/16/2018 20:00,14.63377768,171.0929217,1001.811746,906.3410349,124.8720522,967.7804076,839.1216283,128.6587792,121.1066991,7.552080108,246.6662095,0,246.6662095,3.765353104,242.9008564,0.255407603,2.98613481,0.050237779,-0.050237779,0.521562523,0.124646225,4.389253468,141.1734795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4123657,2.727985506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179999196,135.7013183,119.5923649,138.4293038,839.1216283,0,0.925834312,22.20549979,-0.925834312,157.7945002,0.995994657,0,955.3530229,138.4293038,1045.952234,6,12,9% +6/16/2018 21:00,18.02892899,220.1357691,982.2567372,902.8802497,123.7075732,1017.036587,889.6545876,127.3819996,119.9773335,7.404666192,241.8897579,0,241.8897579,3.730239765,238.1595181,0.314664172,3.842093972,0.282257052,-0.282257052,0.481884891,0.125942199,4.051370155,130.3059907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3267765,2.702546011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.935203886,125.2550747,118.2619804,127.9576207,889.6545876,0,0.985351698,9.818899948,-0.985351698,170.1811001,0.999256697,0,1007.255285,127.9576207,1091.000988,6,13,8% +6/16/2018 22:00,27.61706033,246.3181947,906.2120079,888.3206968,119.101606,1002.533234,880.1915718,122.3416621,115.5102532,6.831408901,223.3129459,0,223.3129459,3.59135286,219.7215931,0.482008633,4.299063505,0.52208678,-0.52208678,0.440871592,0.131427972,3.51378097,113.0152745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.032849,2.601922922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.545722351,108.6345806,113.5785714,111.2365035,880.1915718,0,0.990848885,7.757225016,-0.990848885,172.242775,0.999538218,0,993.3636869,111.2365035,1066.165754,6,14,7% +6/16/2018 23:00,38.96926008,260.688714,779.1101512,859.2427435,111.0631059,922.9605824,809.3731775,113.5874049,107.7141435,5.873261417,192.2532388,0,192.2532388,3.348962423,188.9042764,0.680141895,4.549876382,0.794861215,-0.794861215,0.394224416,0.142551224,2.822562971,90.78332763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5389318,2.426311875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.044937264,87.26438763,105.5838691,89.69069951,809.3731775,0,0.941961028,19.61646298,-0.941961028,160.383537,0.996919248,0,912.4635683,89.69069951,971.1643373,6,15,6% +6/16/2018 0:00,50.75974843,270.8093959,610.2230011,807.4910664,99.42550047,780.9670642,679.9394907,101.0275735,96.42745479,4.600118742,150.9536772,0,150.9536772,2.99804568,147.9556315,0.885924738,4.726515604,1.144495568,-1.144495568,0.33443342,0.162933059,2.037283198,65.52603075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.68973734,2.17207389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476004741,62.98611316,94.16574208,65.15818705,679.9394907,0,0.842039645,32.64386804,-0.842039645,147.356132,0.990620373,0,767.727654,65.15818705,810.3723842,6,16,6% +6/16/2018 1:00,62.53152316,279.3545312,412.5918401,713.8402915,83.32549237,582.1422596,498.2190467,83.9232129,80.81292133,3.11029157,102.5502395,0,102.5502395,2.512571033,100.0376685,1.091380965,4.875656349,1.676585504,-1.676585504,0.243440682,0.20195623,1.232398759,39.63818043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.68045385,1.82034916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.892868706,38.10172674,78.57332256,39.92207591,498.2190467,0,0.697941896,45.73788561,-0.697941896,134.2621144,0.978360799,0,566.011307,39.92207591,592.1395072,6,17,5% +6/16/2018 2:00,74.01492686,287.4950802,204.6317899,527.4093068,59.39016755,333.2086932,274.0667574,59.14193575,57.59933488,1.542600869,51.40617928,0,51.40617928,1.790832678,49.61534661,1.291804169,5.017735733,2.769657258,-2.769657258,0.056514403,0.290229429,0.509585377,16.39001742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.36667158,1.297452179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369192871,15.75470817,55.73586445,17.05216035,274.0667574,0,0.519647177,58.69141219,-0.519647177,121.3085878,0.953780869,0,317.1354944,17.05216035,328.2957923,6,18,4% +6/16/2018 3:00,84.90576037,295.9229908,28.16752176,131.4718064,16.49359355,58.33439897,42.12580945,16.20858952,15.99625085,0.212338677,7.326884463,0,7.326884463,0.4973427,6.829541763,1.481885072,5.164830521,7.803180831,-7.803180831,0,0.585553592,0.124335675,3.999062711,0.445758865,1,0.127458142,0,0.948066385,0.986828348,0.724496596,1,15.50916276,0.360323093,0.062945387,0.312029739,0.837056401,0.561552997,0.961238037,0.922476074,0.085090497,3.84405119,15.59425325,4.204374283,23.34785643,0,0.320417058,71.31185134,-0.320417058,108.6881487,0.893953377,0,36.46614835,4.204374283,39.21782723,6,19,8% +6/16/2018 4:00,95.26417392,305.1765605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662673494,5.326335781,-6.197858931,6.197858931,0.40995001,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108271765,83.78430001,-0.108271765,96.21569999,0.588199088,0,0,0,0,6,20,0% +6/16/2018 5:00,104.2783035,315.7391418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819999734,5.510687602,-1.61454627,1.61454627,0.806257363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095566288,95.48391405,0.095566288,84.51608595,0,0.526802952,0,0,0,6,21,0% +6/16/2018 6:00,111.6002426,327.9984773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947791679,5.72465337,-0.525184149,0.525184149,0.619965469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279803076,106.248452,0.279803076,73.75154798,0,0.871302894,0,0,0,6,22,0% +6/16/2018 7:00,116.6129397,342.0507522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035279749,5.969911835,0.071420176,-0.071420176,0.51794012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431888064,115.5874412,0.431888064,64.41255876,0,0.934229262,0,0,0,6,23,0% +6/17/2018 8:00,118.7305879,357.4144889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072239682,6.238059626,0.545957776,-0.545957776,0.436789411,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541461313,122.7831722,0.541461313,57.21682775,0,0.957657299,0,0,0,6,0,0% +6/17/2018 9:00,117.6514188,12.98953222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053404628,0.226710106,1.039232675,-1.039232675,0.352434435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601058898,126.9457734,0.601058898,53.05422664,0,0.966813477,0,0,0,6,1,0% +6/17/2018 10:00,113.5338131,27.55985937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981538851,0.481010287,1.694508738,-1.694508738,0.240375629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606621138,127.3455882,0.606621138,52.65441184,0,0.967576232,0,0,0,6,2,0% +6/17/2018 11:00,106.900041,40.41983447,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865757687,0.705459195,2.862400051,-2.862400051,0.040654452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557769026,123.901651,0.557769026,56.09834902,0,0.960357159,0,0,0,6,3,0% +6/17/2018 12:00,98.37931278,51.50491443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717042924,0.898930338,6.438304179,-6.438304179,0,#DIV/0!,0,0,0.363406506,1,0.154089171,0,0.944836721,0.983598684,0.724496596,1,0,0,0.053032803,0.312029739,0.860641738,0.585138334,0.961238037,0.922476074,0,0,0,0,0,0,-0.457830103,117.2471764,0.457830103,62.75282361,0,0.940789182,0,0,0,6,4,0% +6/17/2018 13:00,88.20473597,61.13631009,2.561009757,14.35318087,2.111351275,2.066992217,0,2.066992217,2.047686244,0.019305973,5.110141281,4.425529784,0.684611497,0.063665031,0.620946466,1.539463058,1.067029904,-31.52350184,31.52350184,0,0.82442141,0.015916258,0.511921561,1,0.796788857,0,0.03171173,0.961238037,1,0.638505636,0.914009041,1.968313905,0.044214791,0.115824807,0.214445313,0.724496596,0.448993192,0.975690012,0.936928049,0.011531275,0.495444418,1.97984518,0.539659209,0,0.899316964,-0.308330942,107.9586741,0.308330942,72.04132592,0,0.88783658,1.97984518,1.338105706,2.855608603,6,5,44% +6/17/2018 14:00,77.68090918,69.77731561,139.0775577,425.7405164,48.24329653,47.83700852,0,47.83700852,46.78858314,1.048425376,92.07737095,56.90169352,35.17567743,1.454713389,33.72096404,1.355787631,1.217843901,-4.579048677,4.579048677,0.686782868,0.346880527,0.833950876,26.82272685,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9749658,1.053934898,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.604194571,25.7830253,45.57916037,26.8369602,0,56.90169352,-0.133653461,97.68076328,0.133653461,82.31923672,0,0.675898203,45.57916037,65.29671258,88.31455282,6,6,94% +6/17/2018 15:00,66.34926303,77.94387881,344.1195803,666.5467983,76.72744028,121.4537258,44.44578218,77.00794361,74.41382486,2.594118753,85.74939173,0,85.74939173,2.313615419,83.43577631,1.158013096,1.360377317,-2.261484175,2.261484175,0.916890261,0.222967377,2.426593213,78.04757908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52939892,1.676206495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758058522,75.0223017,73.28745745,76.69850819,44.44578218,0,0.066680663,86.17664257,-0.066680663,93.82335743,0,0,73.28745745,76.69850819,123.4850971,6,7,68% +6/17/2018 16:00,54.64425607,86.2559767,547.5832725,782.4441426,94.820887,312.015483,215.9258815,96.08960141,91.96168741,4.127914008,135.6271037,0,135.6271037,2.859199595,132.7679041,0.953722186,1.505450793,-1.3530925,1.3530925,0.761546135,0.173162497,3.314043757,106.5910392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.39707187,2.071480373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401013421,102.4593612,90.79808529,104.5308416,215.9258815,0,0.275963318,73.98057017,-0.275963318,106.0194298,0.868816499,0,278.3980538,104.5308416,346.811399,6,8,25% +6/17/2018 17:00,42.82335826,95.66463927,727.5610638,845.0176341,107.7805057,515.3458195,405.3306311,110.0151884,104.5305258,5.484662622,179.6555833,0,179.6555833,3.249979916,176.4056033,0.747408598,1.669662933,-0.835336958,0.835336958,0.673004723,0.148139464,3.956885868,127.2670512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4787174,2.354599385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866750341,122.3339305,103.3454678,124.6885298,405.3306311,0,0.47967121,61.33606957,-0.47967121,118.6639304,0.945761932,0,486.6917487,124.6885298,568.2978977,6,9,17% +6/17/2018 18:00,31.24609487,108.1432803,869.6208979,880.3427211,116.9743298,704.4265017,584.4238099,120.0026918,113.4471222,6.555569658,214.3768625,0,214.3768625,3.527207633,210.8496548,0.545347234,1.887456305,-0.477167583,0.477167583,0.611754152,0.134511866,4.352752888,139.9994954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.049689,2.555449923,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.15355465,134.5728401,112.2032437,137.12829,584.4238099,0,0.663859422,48.40511726,-0.663859422,131.5948827,0.974682849,0,681.831108,137.12829,771.5788312,6,10,13% +6/17/2018 19:00,20.79901723,129.0281206,963.2704516,899.1547962,122.7119844,859.9432832,733.6699784,126.2733049,119.0117653,7.261539551,237.2562924,0,237.2562924,3.70021909,233.5560733,0.363011332,2.251965533,-0.19547468,0.19547468,0.563581829,0.127390998,4.496182451,144.6126832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3986357,2.680796134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25746888,139.0072117,117.6561046,141.6880078,733.6699784,0,0.815955141,35.31808619,-0.815955141,144.6819138,0.988722121,0,843.051842,141.6880078,935.7838094,6,11,11% +6/17/2018 20:00,14.61255538,170.8817637,1001.790202,906.0839186,125.014555,967.4558042,838.6589815,128.7968227,121.244905,7.551917702,246.6652829,0,246.6652829,3.769650089,242.8956328,0.255037204,2.982449409,0.049218438,-0.049218438,0.521736841,0.124791154,4.390834875,141.224343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5452144,2.731098657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18114492,135.7502102,119.7263593,138.4813089,838.6589815,0,0.925586432,22.24304927,-0.925586432,157.7569507,0.995980193,0,955.014094,138.4813089,1045.647341,6,12,9% +6/17/2018 21:00,17.9779976,220.0512327,982.4481677,902.6582426,123.8621118,1016.90576,889.3724384,127.5333214,120.1272121,7.406109276,241.9408323,0,241.9408323,3.734899672,238.2059327,0.313775251,3.840618534,0.281166047,-0.281166047,0.482071464,0.126074958,4.05387672,130.3866104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4708455,2.705922098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937019884,125.3325694,118.4078654,128.0384915,889.3724384,0,0.985281468,9.842467786,-0.985281468,170.1575322,0.99925308,0,1007.116014,128.0384915,1090.914646,6,13,8% +6/17/2018 22:00,27.56067036,246.298734,906.6165744,888.1340885,119.2667064,1002.624414,880.1195805,122.5048339,115.6703752,6.834458694,223.4160161,0,223.4160161,3.596331246,219.8196849,0.481024442,4.298723852,0.52082503,-0.52082503,0.441087364,0.13155143,3.517102113,113.1220939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1867644,2.605529745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548128508,108.7372595,113.7348929,111.3427892,880.1195805,0,0.990976016,7.703071425,-0.990976016,172.2969286,0.999544692,0,993.4537479,111.3427892,1066.325377,6,14,7% +6/17/2018 23:00,38.9123833,260.6836262,779.7123314,859.1042162,111.2369755,923.2870554,809.5264842,113.7605712,107.8827703,5.877800906,192.4044872,0,192.4044872,3.354205234,189.050282,0.679149208,4.549787583,0.793262079,-0.793262079,0.394497885,0.142664122,2.826524614,90.91074772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7010223,2.430110274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.047807461,87.38686866,105.7488298,89.81697894,809.5264842,0,0.942291365,19.56000822,-0.942291365,160.4399918,0.996937856,0,912.7964274,89.81697894,971.5798438,6,15,6% +6/17/2018 0:00,50.70297053,270.8065371,610.9918298,807.441053,99.60650644,781.5302658,680.3213486,101.2089173,96.60300276,4.605914497,151.1455466,0,151.1455466,3.003503678,148.142043,0.884933776,4.726465708,1.142205099,-1.142205099,0.334825114,0.163024285,2.04163965,65.66614923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.85848073,2.17602819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479160976,63.12080038,94.33764171,65.29682857,680.3213486,0,0.842564725,32.58805252,-0.842564725,147.4119475,0.990657378,0,768.3030051,65.29682857,811.0384734,6,16,6% +6/17/2018 1:00,62.4749889,279.3503601,413.4792734,713.9994317,83.51459437,582.9414212,498.8281186,84.11330263,80.99632121,3.116981417,102.7711101,0,102.7711101,2.518273156,100.2528369,1.090394256,4.87558355,1.67261946,-1.67261946,0.244118916,0.201980123,1.236792885,39.77951064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85674479,1.824480329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896052235,38.23757871,78.75279703,40.06205904,498.8281186,0,0.698639378,45.68205724,-0.698639378,134.3179428,0.978432319,0,566.82235,40.06205904,593.0421664,6,17,5% +6/17/2018 2:00,73.95894376,287.4879571,205.5534263,528.1813491,59.60313767,334.2640238,274.9085921,59.35543171,57.80588316,1.549548553,51.63606253,0,51.63606253,1.797254513,49.83880801,1.29082708,5.017611412,2.759733007,-2.759733007,0.05821155,0.289964214,0.513360009,16.51142255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.56521365,1.302104777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.371927579,15.8714074,55.93714122,17.17351218,274.9085921,0,0.520481446,58.63544855,-0.520481446,121.3645515,0.953935096,0,318.1820954,17.17351218,329.4218157,6,18,4% +6/17/2018 3:00,84.85180375,295.9115428,28.75511213,133.5469318,16.77166305,59.39498474,42.91228104,16.48270371,16.26593553,0.216768181,7.477737372,0,7.477737372,0.505727522,6.972009851,1.480943352,5.164630716,7.722556315,-7.722556315,0,0.583258482,0.12643188,4.066483882,0.44149093,1,0.128774235,0,0.947910574,0.986672537,0.724496596,1,15.77079202,0.366397868,0.062447553,0.312029739,0.838222294,0.56271889,0.961238037,0.922476074,0.086523802,3.908858984,15.85731582,4.275256852,23.96689816,0,0.321327345,71.2567839,-0.321327345,108.7432161,0.89439544,0,37.29320025,4.275256852,40.09127036,6,19,8% +6/17/2018 4:00,95.21056189,305.1591547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661737788,5.326031991,-6.264722238,6.264722238,0.398515711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109248986,83.72797525,-0.109248986,96.27202475,0.59232985,0,0,0,0,6,20,0% +6/17/2018 5:00,104.2277574,315.7137535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819117539,5.510244492,-1.622119366,1.622119366,0.807552439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094598374,95.42820421,0.094598374,84.57179579,0,0.521449687,0,0,0,6,21,0% +6/17/2018 6:00,111.5548595,327.9630287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946999595,5.724034676,-0.527933858,0.527933858,0.620435696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278897712,106.1944277,0.278897712,73.80557225,0,0.870722803,0,0,0,6,22,0% +6/17/2018 7:00,116.5754916,342.0042386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034626156,5.969100019,0.069915005,-0.069915005,0.51819752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431094283,115.5370262,0.431094283,64.46297384,0,0.934016091,0,0,0,6,23,0% +6/18/2018 8:00,118.7038673,357.3585762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071773319,6.237083765,0.544861602,-0.544861602,0.436976868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540820541,122.7395141,0.540820541,57.26048586,0,0.95754789,0,0,0,6,0,0% +6/18/2018 9:00,117.637046,12.92875942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053153776,0.22564942,1.038167447,-1.038167447,0.3526166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600602097,126.9130319,0.600602097,53.08696814,0,0.966750207,0,0,0,6,1,0% +6/18/2018 10:00,113.5315111,27.49926818,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981498674,0.479952772,1.693055001,-1.693055001,0.240624233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606366664,127.3272502,0.606366664,52.67274976,0,0.967541641,0,0,0,6,2,0% +6/18/2018 11:00,106.9080957,40.36246391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865898267,0.704457889,2.859326531,-2.859326531,0.041180055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557721371,123.8983614,0.557721371,56.1016386,0,0.9603495,0,0,0,6,3,0% +6/18/2018 12:00,98.3955376,51.45141249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7173261,0.897996553,6.42367257,-6.42367257,0,#DIV/0!,0,0,0.362390888,1,0.154434602,0,0.944793772,0.983555735,0.724496596,1,0,0,0.052906392,0.312029739,0.860947549,0.585444145,0.961238037,0.922476074,0,0,0,0,0,0,-0.457979591,117.2568108,0.457979591,62.74318915,0,0.940824829,0,0,0,6,4,0% +6/18/2018 13:00,88.22530082,61.08578048,2.485580343,13.9035685,2.054995291,2.011766955,0,2.011766955,1.9930296,0.018737355,4.955615724,4.290992302,0.664623421,0.06196569,0.602657731,1.539821983,1.066147996,-31.88462952,31.88462952,0,0.826766794,0.015491423,0.4982574,1,0.799307469,0,0.031352797,0.961238037,1,0.639434773,0.914938177,1.91577586,0.043049191,0.115824807,0.215497616,0.724496596,0.448993192,0.975544998,0.936783035,0.011223483,0.482196452,1.926999343,0.525245644,0,0.861170105,-0.30862525,107.9764012,0.30862525,72.02359881,0,0.887991221,1.926999343,1.289957137,2.77125049,6,5,44% +6/18/2018 14:00,77.70756429,69.72802947,138.5310213,424.3160414,48.19354494,47.7846371,0,47.7846371,46.74033175,1.044305354,91.94806679,56.90640362,35.04166317,1.453213195,33.58844997,1.35625285,1.216983695,-4.589273316,4.589273316,0.685034352,0.347889913,0.8298131,26.68964178,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.92858473,1.052848013,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.601196767,25.65509886,45.5297815,26.70794688,0,56.90640362,-0.134113251,97.70734661,0.134113251,82.29265339,0,0.677180761,45.5297815,65.24386861,88.23058863,6,6,94% +6/18/2018 15:00,66.37903404,77.89343625,343.4729747,665.6471618,76.75859045,121.0490539,44.01577376,77.03328011,74.44403574,2.589244367,85.59355402,0,85.59355402,2.314554711,83.2789993,1.158532698,1.359496928,-2.264963087,2.264963087,0.917485189,0.223477817,2.423339619,77.94293233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55843877,1.676887009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755701305,74.92171126,73.31414007,76.59859827,44.01577376,0,0.066124782,86.20856261,-0.066124782,93.79143739,0,0,73.31414007,76.59859827,123.4463907,6,7,68% +6/18/2018 16:00,54.67569636,86.20085002,546.9454732,781.8254164,94.89107747,311.4390018,215.2861344,96.15286738,92.02976137,4.123106008,135.4745784,0,135.4745784,2.861316096,132.6132623,0.954270922,1.504488651,-1.355046436,1.355046436,0.761880278,0.173492756,3.311647099,106.5139544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.46250715,2.073013772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39927705,102.3852644,90.8617842,104.4582782,215.2861344,0,0.275363438,74.01632616,-0.275363438,105.9836738,0.86842179,0,277.8209545,104.4582782,346.1868084,6,8,25% +6/18/2018 17:00,42.85476049,95.59865709,727.0004829,844.5542575,107.8745186,514.7122507,404.61011,110.1021406,104.6217039,5.480436726,179.5224987,0,179.5224987,3.252814752,176.269684,0.747956671,1.668511327,-0.836717916,0.836717916,0.67324088,0.148383008,3.955375767,127.2184812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5663613,2.356653215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865656279,122.2872431,103.4320175,124.6438963,404.61011,0,0.479081251,61.37458577,-0.479081251,118.6254142,0.94563357,0,486.0449202,124.6438963,567.6218575,6,9,17% +6/18/2018 18:00,31.27444062,108.0532345,869.1912365,879.9736407,117.0861255,703.8227705,583.714893,120.1078775,113.5555468,6.552330689,214.2760571,0,214.2760571,3.530578684,210.7454784,0.545841961,1.88588471,-0.478289047,0.478289047,0.611945934,0.134706979,4.352185976,139.9812615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1539109,2.557892238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153143924,134.555313,112.3070548,137.1132053,583.714893,0,0.663332248,48.44549316,-0.663332248,131.5545068,0.974622992,0,681.2090104,137.1132053,770.946861,6,10,13% +6/18/2018 19:00,20.81645952,128.8826431,963.0128993,898.8475819,122.838829,859.4396641,733.045281,126.3943831,119.1347851,7.259598013,237.1976707,0,237.1976707,3.704043922,233.4936268,0.363315757,2.24942647,-0.196481032,0.196481032,0.563753925,0.127556785,4.496595529,144.6259692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5168869,2.683567212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257768154,139.0199827,117.7746551,141.7035499,733.045281,0,0.815539025,35.35930558,-0.815539025,144.6406944,0.988690855,0,842.529821,141.7035499,935.2719603,6,11,11% +6/18/2018 20:00,14.59833975,170.6733914,1001.732343,905.8205832,125.1548423,967.1079294,838.1754859,128.9324436,121.380962,7.551481537,246.6554846,0,246.6554846,3.773880267,242.8816043,0.254789094,2.978812625,0.048237929,-0.048237929,0.521904518,0.124938406,4.392221108,141.268929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6759976,2.734163407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.182149241,135.793068,119.8581469,138.5272314,838.1754859,0,0.925321749,22.28307798,-0.925321749,157.716922,0.995964741,0,954.6513779,138.5272314,1045.31468,6,12,9% +6/18/2018 21:00,17.932771,219.9536238,982.602752,902.4297848,124.0144031,1016.754119,889.0719329,127.6821859,120.2749113,7.407274598,241.9829052,0,241.9829052,3.739491818,238.2434134,0.312985898,3.838914937,0.280134629,-0.280134629,0.482247847,0.126210112,4.05617471,130.4605217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6128196,2.709249092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93868477,125.4036157,118.5515044,128.1128648,889.0719329,0,0.985197904,9.870437405,-0.985197904,170.1295626,0.999248776,0,1006.955545,128.1128648,1090.802852,6,13,8% +6/18/2018 22:00,27.50843673,246.2673515,906.9808689,887.939495,119.4292989,1002.693688,880.0284179,122.6652698,115.8280649,6.8372049,223.5092463,0,223.5092463,3.601234008,219.9080123,0.480112793,4.298176124,0.519649532,-0.519649532,0.441288386,0.131677859,3.52019193,113.2214731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3383417,2.60908178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55036707,108.8327865,113.8887087,111.4418683,880.0284179,0,0.991090522,7.65396946,-0.991090522,172.3460305,0.999550521,0,993.5215728,111.4418683,1066.458047,6,14,7% +6/18/2018 23:00,38.8590545,260.6691484,780.2682099,858.9540561,111.4078043,923.5865247,809.6560854,113.9304393,108.0484479,5.881991353,192.5444175,0,192.5444175,3.35935635,189.1850611,0.678218445,4.549534899,0.791790274,-0.791790274,0.394749578,0.142781422,2.830226567,91.02981524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.860278,2.43384224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050489513,87.5013209,105.9107675,89.93516314,809.6560854,0,0.942606976,19.50592341,-0.942606976,160.4940766,0.996955623,0,913.1019543,89.93516314,971.9627199,6,15,6% +6/18/2018 0:00,50.64961435,270.7959695,611.7063034,807.3713188,99.78352529,782.0567786,680.6707942,101.3859843,96.77468384,4.611300501,151.3241168,0,151.3241168,3.008841449,148.3152753,0.884002535,4.726281269,1.14011725,-1.14011725,0.335182157,0.163123258,2.045708519,65.79701805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.02350711,2.179895388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482108858,63.24659646,94.50561597,65.42649185,680.6707942,0,0.843070318,32.53422795,-0.843070318,147.4657721,0.990692966,0,768.841384,65.42649185,811.6617144,6,16,6% +6/18/2018 1:00,62.42200675,279.3395515,414.3034021,714.1192881,83.69786522,583.6882306,499.3909708,84.29725982,81.17406577,3.123194048,102.9764559,0,102.9764559,2.523799449,100.4526565,1.089469544,4.875394906,1.669029126,-1.669029126,0.244732899,0.202020705,1.240884007,39.91109518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02759962,1.828484109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899016239,38.36406278,78.92661586,40.19254688,499.3909708,0,0.699310296,45.62830488,-0.699310296,134.3716951,0.978500981,0,567.5811708,40.19254688,593.8863889,6,17,5% +6/18/2018 2:00,73.90680426,287.4749114,206.4053948,528.8583647,59.80556399,335.2416493,275.6834727,59.55817663,58.00220558,1.555971052,51.84873607,0,51.84873607,1.803358413,50.04537766,1.289917074,5.01738372,2.750786431,-2.750786431,0.059741505,0.289748066,0.516861819,16.62405281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.75392622,1.306527032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374464629,15.97967189,56.12839085,17.28619892,275.6834727,0,0.521280348,58.58182601,-0.521280348,121.418174,0.954082323,0,319.1531189,17.28619892,330.4665904,6,18,4% +6/18/2018 3:00,84.80201475,295.8947017,29.29821926,135.4298875,17.02860179,60.37066595,43.63467698,16.73598897,16.51512662,0.220862352,7.617167636,0,7.617167636,0.513475173,7.103692463,1.48007437,5.164336783,7.650504494,-7.650504494,0,0.581216272,0.128368793,4.128781654,0.437620795,1,0.12997347,0,0.947768252,0.986530215,0.724496596,1,16.01252464,0.372011015,0.061994661,0.312029739,0.839284645,0.563781241,0.961238037,0.922476074,0.087848832,3.968741972,16.10037347,4.340752987,24.53923494,0,0.322193851,71.20434832,-0.322193851,108.7956517,0.894813922,0,38.05842254,4.340752987,40.89935855,6,19,7% +6/18/2018 4:00,95.16178068,305.136842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660886395,5.325642561,-6.327790633,6.327790633,0.387730381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110169655,83.67490446,-0.110169655,96.32509554,0.596154521,0,0,0,0,6,20,0% +6/18/2018 5:00,104.1826595,315.6840561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818330432,5.509726175,-1.629364576,1.629364576,0.808791443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093697537,95.37635978,0.093697537,84.62364022,0,0.516368042,0,0,0,6,21,0% +6/18/2018 6:00,111.5155532,327.9241622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94631357,5.723356327,-0.530678395,0.530678395,0.62090504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278069018,106.1449914,0.278069018,73.85500856,0,0.870188526,0,0,0,6,22,0% +6/18/2018 7:00,116.5446377,341.9556395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034087654,5.968251806,0.068312279,-0.068312279,0.518471602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430385169,115.4920064,0.430385169,64.50799356,0,0.933824993,0,0,0,6,23,0% +6/19/2018 8:00,118.6839907,357.3023077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071426408,6.236101694,0.54359709,-0.54359709,0.437193112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540270289,122.7020405,0.540270289,57.29795948,0,0.95745373,0,0,0,6,0,0% +6/19/2018 9:00,117.6294052,12.86942907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053020418,0.22461391,1.03684342,-1.03684342,0.352843022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600239118,126.8870252,0.600239118,53.11297484,0,0.966699864,0,0,0,6,1,0% +6/19/2018 10:00,113.535518,27.44160202,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981568607,0.478946307,1.691169576,-1.691169576,0.240946659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606206539,127.3157136,0.606206539,52.68428642,0,0.96751986,0,0,0,6,2,0% +6/19/2018 11:00,106.9218728,40.30904848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866138723,0.703525614,2.855341111,-2.855341111,0.041861602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557765778,123.9014268,0.557765778,56.09857321,0,0.960356637,0,0,0,6,3,0% +6/19/2018 12:00,98.41687331,51.40254879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717698479,0.89714372,6.405317853,-6.405317853,0,#DIV/0!,0,0,0.361112248,1,0.154870108,0,0.944739585,0.983501548,0.724496596,1,0,0,0.052747094,0.312029739,0.8613331,0.585829696,0.961238037,0.922476074,0,0,0,0,0,0,-0.458216196,117.2720617,0.458216196,62.72793835,0,0.940881203,0,0,0,6,4,0% +6/19/2018 13:00,88.25003347,61.04040541,2.39805746,13.39227541,1.989085099,1.947184414,0,1.947184414,1.929106844,0.01807757,4.779536003,4.138120954,0.641415049,0.059978255,0.581436795,1.540253649,1.065356051,-32.33152128,32.33152128,0,0.829456814,0.014994564,0.482276711,1,0.802339098,0,0.030919711,0.961238037,1,0.640557213,0.916060617,1.854330876,0.041685695,0.115824807,0.216768919,0.724496596,0.448993192,0.975369483,0.93660752,0.01086351,0.466702915,1.865194386,0.50838861,0,0.817944721,-0.308993119,107.9985617,0.308993119,72.00143833,0,0.888184099,1.865194386,1.234874105,2.67339479,6,5,43% +6/19/2018 14:00,77.73829356,69.6844099,137.9138679,422.7605064,48.1291196,47.71750206,0,47.71750206,46.67784907,1.039652991,91.81199979,56.92191527,34.89008452,1.451270533,33.43881398,1.356789177,1.21622239,-4.601116813,4.601116813,0.683008995,0.34897955,0.825102271,26.53812529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.868524,1.051440561,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.597783786,25.50945546,45.46630779,26.56089602,0,56.92191527,-0.134643408,97.7380004,0.134643408,82.2619996,0,0.678648734,45.46630779,65.19088174,88.13243606,6,6,94% +6/19/2018 15:00,66.41255924,77.84930965,342.7585313,664.6944068,76.78229007,120.5940223,43.54314293,77.05087932,74.46702073,2.583858591,85.42104358,0,85.42104358,2.315269342,83.10577424,1.159117823,1.358726774,-2.268819505,2.268819505,0.918144676,0.224012776,2.419735289,77.82700467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58053281,1.677404757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75308998,74.81027719,73.33362279,76.48768194,43.54314293,0,0.065508514,86.24394891,-0.065508514,93.75605109,0,0,73.33362279,76.48768194,123.3932809,6,7,68% +6/19/2018 16:00,54.71070805,86.15298186,546.2486901,781.1809963,94.95645569,310.8122696,214.601248,96.21102156,92.0931682,4.117853363,135.3076067,0,135.3076067,2.863287491,132.4443192,0.954881992,1.503653194,-1.357132039,1.357132039,0.762236937,0.173833745,3.308975935,106.4280406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.52345621,2.07444204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397341801,102.3026808,90.92079801,104.3771228,214.601248,0,0.274713862,74.05503709,-0.274713862,105.9449629,0.867992439,0,277.1930586,104.3771228,345.505798,6,8,25% +6/19/2018 17:00,42.88976869,95.54138911,726.3897171,844.0763266,107.965005,514.0353608,403.8500665,110.1852943,104.7094618,5.475832516,179.37714,0,179.37714,3.25554325,176.1215968,0.748567679,1.667511812,-0.838144596,0.838144596,0.673484857,0.148632342,3.953636322,127.1625346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6507175,2.358630002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864396056,122.2334652,103.5151135,124.5920952,403.8500665,0,0.478452071,61.41564695,-0.478452071,118.584353,0.945496324,0,485.353867,124.5920952,566.8969015,6,9,17% +6/19/2018 18:00,31.30681476,107.9741472,868.7185766,879.5951053,117.1951289,703.1839946,582.9739637,120.2100309,113.6612634,6.548767579,214.1647421,0,214.1647421,3.533865541,210.6308766,0.546406996,1.884504375,-0.479415331,0.479415331,0.61213854,0.134905747,4.351415585,139.9564831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2555297,2.560273554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152585779,134.5314951,112.4081154,137.0917686,582.9739637,0,0.662775361,48.48811732,-0.662775361,131.5118827,0.974559658,0,680.551022,137.0917686,770.2748428,6,10,13% +6/19/2018 19:00,20.83913265,128.7503418,962.7171687,898.5332951,122.9632957,858.9083227,732.3954554,126.5128673,119.2554986,7.257368671,237.1297206,0,237.1297206,3.70779705,233.4219235,0.363711478,2.247117378,-0.197467084,0.197467084,0.56392255,0.127725255,4.496815517,144.6330447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6329214,2.686286341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257927534,139.026784,117.8908489,141.7130703,732.3954554,0,0.815101076,35.40264275,-0.815101076,144.5973572,0.988657914,0,841.9794123,141.7130703,934.7277826,6,11,11% +6/19/2018 20:00,14.5911179,170.4684673,1001.638341,905.5510399,125.2929203,966.7374274,837.671778,129.0656494,121.5148765,7.550772908,246.6368562,0,246.6368562,3.778043829,242.8588123,0.254663049,2.975236024,0.04729776,-0.04729776,0.522065296,0.125087984,4.39341106,141.3072019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8047213,2.737179893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183011357,135.8298574,119.9877327,138.5670373,837.671778,0,0.925040932,22.32547199,-0.925040932,157.674528,0.995948338,0,954.2655476,138.5670373,1044.954902,6,12,10% +6/19/2018 21:00,17.89332569,219.843169,982.7202729,902.1948246,124.1644307,1016.581906,888.7533304,127.8285755,120.420415,7.40816052,242.0159234,0,242.0159234,3.744015703,238.2719077,0.312297447,3.836987137,0.279164262,-0.279164262,0.482413789,0.126347684,4.058261513,130.5276404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7526833,2.712526632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940196651,125.4681328,118.69288,128.1806595,888.7533304,0,0.98510134,9.902661134,-0.98510134,170.0973389,0.999243801,0,1006.774136,128.1806595,1090.665814,6,13,8% +6/19/2018 22:00,27.4604441,246.2241052,907.3042997,887.7367895,119.5893432,1002.740862,879.9179357,122.8229264,115.9832833,6.839643058,223.5924918,0,223.5924918,3.606059937,219.9864319,0.479275164,4.297421334,0.518561788,-0.518561788,0.441474401,0.131807315,3.523046519,113.3132864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4875436,2.612578149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55243521,108.921041,114.0399788,111.5336192,879.9179357,0,0.991192374,7.610029531,-0.991192374,172.3899705,0.999555706,0,993.5669718,111.5336192,1066.563495,6,14,7% +6/19/2018 23:00,38.80935842,260.6453172,780.7768608,858.7920346,111.5755275,923.8583638,809.7614243,114.0969394,108.2111137,5.885825778,192.6728032,0,192.6728032,3.364413823,189.3083894,0.677351085,4.549118965,0.790447414,-0.790447414,0.394979221,0.14290322,2.833663948,91.14037321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0166385,2.437506362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052979884,87.60759342,106.0696183,90.04509979,809.7614243,0,0.94290747,19.45429502,-0.94290747,160.545705,0.996972527,0,913.3795121,90.04509979,972.3122291,6,15,6% +6/19/2018 0:00,50.59976383,270.7777279,612.3652278,807.2814847,99.9564654,782.5455713,680.9868943,101.5586769,96.94240917,4.616267751,151.4890954,0,151.4890954,3.014056232,148.4750392,0.88313248,4.725962894,1.138233802,-1.138233802,0.335504245,0.163230146,2.049484321,65.91846083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.18473108,2.18367348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484844414,63.36333188,94.66957549,65.54700536,680.9868943,0,0.843555696,32.48248077,-0.843555696,147.5175192,0.990727091,0,769.3417403,65.54700536,812.2409444,6,16,6% +6/19/2018 1:00,62.37265895,279.3221435,415.0628519,714.1992556,83.87517943,584.381319,499.9063666,84.4749524,81.3460333,3.128919101,103.16594,0,103.16594,2.529146126,100.6367939,1.088608262,4.875091077,1.665816178,-1.665816178,0.245282346,0.202078261,1.244666425,40.03275073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.19290136,1.832357759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901756588,38.48100272,79.09465795,40.31336048,499.9063666,0,0.699953637,45.57671558,-0.699953637,134.4232844,0.978566697,0,568.2863801,40.31336048,594.6706683,6,17,5% +6/19/2018 2:00,73.85858766,287.4559861,207.1862314,529.4395114,59.99727464,336.1399999,276.3900072,59.74999277,58.18813544,1.561857328,52.04383972,0,52.04383972,1.809139197,50.23470053,1.289075535,5.017053413,2.742814358,-2.742814358,0.06110481,0.289581379,0.520085017,16.72772194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.93264908,1.31071519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.376799825,16.0793226,56.30944891,17.39003779,276.3900072,0,0.522042653,58.53063137,-0.522042653,121.4693686,0.954222385,0,320.0469808,17.39003779,331.4284128,6,18,4% +6/19/2018 3:00,84.75647095,295.8725179,29.79489687,137.1166802,17.26391968,61.25872152,44.29076619,16.96795532,16.74334881,0.224606518,7.744688575,0,7.744688575,0.520570875,7.2241177,1.47927948,5.163949604,7.586715606,-7.586715606,0,0.579425388,0.130142719,4.185837201,0.434149451,1,0.131053864,0,0.947639752,0.986401715,0.724496596,1,16.23390278,0.377151827,0.061587252,0.312029739,0.840241704,0.5647383,0.961238037,0.922476074,0.089062903,4.023585934,16.32296569,4.400737761,25.06195438,0,0.323015159,71.15463274,-0.323015159,108.8453673,0.895208503,0,38.75864035,4.400737761,41.6388352,6,19,7% +6/19/2018 4:00,95.11789797,305.109682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660120497,5.32516853,-6.386682919,6.386682919,0.377659207,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111032361,83.62516991,-0.111032361,96.37483009,0.599680838,0,0,0,0,6,20,0% +6/19/2018 5:00,104.1430675,315.6501195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817639421,5.50913387,-1.636259101,1.636259101,0.809970476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092865135,95.32845782,0.092865135,84.67154218,0,0.511584804,0,0,0,6,21,0% +6/19/2018 6:00,111.482368,327.8819574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94573438,5.722619715,-0.533410684,0.533410684,0.621372289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277318208,106.100212,0.277318208,73.899788,0,0.869701705,0,0,0,6,22,0% +6/19/2018 7:00,116.520406,341.9050423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03366473,5.967368718,0.066615988,-0.066615988,0.518761685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429761713,115.4524388,0.429761713,64.54756121,0,0.933656458,0,0,0,6,23,0% +6/20/2018 8:00,118.6709679,357.2457733,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071199116,6.235114984,0.542167595,-0.542167595,0.43743757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539811258,122.6707913,0.539811258,57.32920874,0,0.957375033,0,0,0,6,0,0% +6/20/2018 9:00,117.6284873,12.81162942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053004398,0.223605116,1.035264553,-1.035264553,0.353113024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599970329,126.8677726,0.599970329,53.13222736,0,0.966662545,0,0,0,6,1,0% +6/20/2018 10:00,113.5458074,27.38694402,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98174819,0.477992345,1.688858945,-1.688858945,0.2413418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606140774,127.3109758,0.606140774,52.68902415,0,0.967510911,0,0,0,6,2,0% +6/20/2018 11:00,106.9413312,40.25966421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866478336,0.702663696,2.850460037,-2.850460037,0.042696314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557901904,123.9108243,0.557901904,56.08917574,0,0.96037851,0,0,0,6,3,0% +6/20/2018 12:00,98.44326665,51.35839187,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718159129,0.896373037,6.383345922,-6.383345922,0,#DIV/0!,0,0,0.359574862,1,0.155394656,0,0.944674262,0.983436225,0.724496596,1,0,0,0.052555341,0.312029739,0.86179747,0.586294066,0.961238037,0.922476074,0,0,0,0,0,0,-0.45853925,117.2928881,0.45853925,62.7071119,0,0.940958081,0,0,0,6,4,0% +6/20/2018 13:00,88.27886381,61.00024689,2.299566205,12.82555653,1.914350924,1.873961282,0,1.873961282,1.856626181,0.017335101,4.583937911,3.968656717,0.615281193,0.057724744,0.55755645,1.540756833,1.064655153,-32.86979229,32.86979229,0,0.832483501,0.014431186,0.464156545,1,0.805871201,0,0.030413689,0.961238037,1,0.641870555,0.917373959,1.784659705,0.040139114,0.115824807,0.218256541,0.724496596,0.448993192,0.975163657,0.936401694,0.010455345,0.449135903,1.79511505,0.489275017,0,0.770430561,-0.30943349,108.0250933,0.30943349,71.97490671,0,0.888414387,1.79511505,1.173736612,2.563302188,6,5,43% +6/20/2018 14:00,77.77302687,69.64651423,137.2274814,421.0752081,48.05010595,47.63569669,0,47.63569669,46.60121797,1.03447872,91.66866208,56.94738247,34.72127961,1.44888798,33.27239163,1.357395388,1.215560986,-4.614576631,4.614576631,0.68070723,0.350149296,0.819832008,26.36861553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.79486327,1.04971441,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.593965499,25.34651623,45.38882877,26.39623064,0,56.94738247,-0.135242782,97.77265901,0.135242782,82.22734099,0,0.680294502,45.38882877,65.13722183,88.01983772,6,6,94% +6/20/2018 15:00,66.44976265,77.81155413,341.9776129,663.6891464,76.79862313,120.0898811,43.02904814,77.06083298,74.48286128,2.577971698,85.23219338,0,85.23219338,2.315761844,82.91643153,1.159767145,1.358067816,-2.273048731,2.273048731,0.918867916,0.224572078,2.415786128,77.69998608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.59575936,1.677761573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750228826,74.68818209,73.34598818,76.36594366,43.02904814,0,0.064833135,86.28272772,-0.064833135,93.71727228,0,0,73.34598818,76.36594366,123.325971,6,7,68% +6/20/2018 16:00,54.74921033,86.11242897,545.4941938,780.5112476,95.01709658,310.1366412,213.872495,96.26414619,92.15198054,4.11216565,135.1264988,0,135.1264988,2.865116038,132.2613828,0.955553983,1.502945413,-1.359346156,1.359346156,0.762615573,0.174185349,3.306035047,106.3334515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57998887,2.075766816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395211137,102.2117582,90.9752,104.287525,213.872495,0,0.274015904,74.09662295,-0.274015904,105.9033771,0.867528839,0,276.5157574,104.287525,344.7698567,6,8,25% +6/20/2018 17:00,42.92829789,95.49290153,725.729853,843.5840662,108.0520259,513.3164711,403.0517543,110.2647168,104.7938586,5.470858182,179.2197723,0,179.2197723,3.25816725,175.9616051,0.74924014,1.666665544,-0.83961471,0.83961471,0.673736261,0.148887393,3.951670995,127.099323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.731843,2.360531082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.862972184,122.1727037,103.5948151,124.5332348,403.0517543,0,0.47778493,61.45916801,-0.47778493,118.540832,0.945350404,0,484.6199539,124.5332348,566.1244654,6,9,17% +6/20/2018 18:00,31.3431289,107.9061177,868.2037424,879.207248,117.3013845,702.511343,582.2021415,120.3092015,113.764315,6.544886541,214.0431186,0,214.0431186,3.537069539,210.5060491,0.547040797,1.883317037,-0.480544622,0.480544622,0.61233166,0.13510813,4.350443708,139.9252242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3545868,2.56259484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151881657,134.5014478,112.5064684,137.0640427,582.2021415,0,0.662189879,48.53289994,-0.662189879,131.4671001,0.974492957,0,679.8583546,137.0640427,769.5640292,6,10,13% +6/20/2018 19:00,20.86695162,128.631458,962.3837632,898.2120009,123.0854098,858.3501756,731.7213897,126.6287859,119.3739305,7.254855319,237.0525647,0,237.0525647,3.711479242,233.3410855,0.364197011,2.245042464,-0.19843129,0.19843129,0.564087439,0.127896391,4.496842861,144.6339242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7467626,2.688954076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257947345,139.0276294,118.00471,141.7165835,731.7213897,0,0.814642188,35.4480024,-0.814642188,144.5519976,0.98862336,0,841.4015691,141.7165835,934.1522387,6,11,11% +6/20/2018 20:00,14.59087179,170.2676232,1001.508342,905.2752947,125.4287939,966.3448841,837.1484381,129.1964459,121.646653,7.549792923,246.6094336,0,246.6094336,3.78214092,242.8272926,0.254658753,2.971730635,0.046399337,-0.046399337,0.522218936,0.125239889,4.394403653,141.3391271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9313899,2.740148221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183730487,135.8605451,120.1151204,138.6006933,837.1484381,0,0.924744598,22.37012604,-0.924744598,157.629874,0.995931017,0,953.8572157,138.6006933,1044.568597,6,12,10% +6/20/2018 21:00,17.8597337,219.7201167,982.800512,901.9533082,124.3121778,1016.389324,888.4168515,127.9724724,120.563707,7.408765396,242.0398334,0,242.0398334,3.748470825,238.2913626,0.311711157,3.834839469,0.278256299,-0.278256299,0.48256906,0.126487702,4.060134648,130.5878869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.890421,2.715754352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941553731,125.5260441,118.8319748,128.2417984,888.4168515,0,0.984992065,9.939001542,-0.984992065,170.0609985,0.99923817,0,1006.572003,128.2417984,1090.503696,6,13,8% +6/20/2018 22:00,27.41677341,246.1690644,907.5862986,887.5258482,119.7468007,1002.765731,879.7879696,122.9777618,116.1359929,6.841768885,223.6656136,0,223.6656136,3.610807861,220.0548058,0.478512966,4.296460691,0.517563168,-0.517563168,0.441645175,0.131939851,3.525662215,113.3974162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6343338,2.616018003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554330273,109.0019098,114.1886641,111.6179278,879.7879696,0,0.991281518,7.571363852,-0.991281518,172.4286361,0.999560242,0,993.5897398,111.6179278,1066.641441,6,14,7% +6/20/2018 23:00,38.76337542,260.612175,781.2374083,858.6179334,111.7400835,924.1019608,809.8419555,114.2600053,108.3707077,5.88929758,192.7894303,0,192.7894303,3.369375794,189.4200545,0.67654853,4.548540524,0.789234955,-0.789234955,0.395186563,0.143029612,2.83683221,91.24227542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1700463,2.441101293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055275279,87.7055457,106.2253216,90.14664699,809.8419555,0,0.943192454,19.40520936,-0.943192454,160.5947906,0.99698855,0,913.6284782,90.14664699,972.6276557,6,15,6% +6/20/2018 0:00,50.55349787,270.7518512,612.9674843,807.1711931,100.12524,782.9956586,681.2687562,101.7269024,97.10609462,4.620807815,151.6402087,0,151.6402087,3.01914541,148.6210633,0.882324986,4.725511259,1.136556334,-1.136556334,0.335791109,0.163345108,2.052961989,66.03031456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34207176,2.187360572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487363972,63.47084994,94.82943573,65.65821052,681.2687562,0,0.844020156,32.43289483,-0.844020156,147.5671052,0.990759709,0,769.8030701,65.65821052,812.7750557,6,16,6% +6/20/2018 1:00,62.32702209,279.2981762,415.756346,714.2387704,84.04641873,585.019395,500.3731389,84.64625606,81.51210911,3.134146953,103.3392492,0,103.3392492,2.534309623,100.8049396,1.087811748,4.87467277,1.662982036,-1.662982036,0.245767012,0.202153063,1.248134913,40.14430923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.35253974,1.836098695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904269495,38.58823699,79.25680923,40.42433569,500.3731389,0,0.700568437,45.52737243,-0.700568437,134.4726276,0.978629385,0,568.9366666,40.42433569,595.3935858,6,17,5% +6/20/2018 2:00,73.81436712,287.4312261,207.8945881,529.924022,60.1781079,336.9576102,277.0268971,59.93071313,58.36351591,1.56719722,52.2210418,0,52.2210418,1.814591987,50.40644981,1.288303742,5.016621269,2.735813676,-2.735813676,0.062301997,0.289464524,0.523024337,16.82226056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.10123146,1.314665717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378929352,16.17019671,56.48016081,17.48486243,277.0268971,0,0.5227672,58.4819465,-0.5227672,121.5180535,0.954355132,0,320.8622017,17.48486243,332.3056944,6,18,4% +6/20/2018 3:00,84.71524314,295.8450424,30.24337413,138.6038432,17.47717308,62.0566907,44.87853154,17.17815916,16.95017183,0.227987329,7.859857456,0,7.859857456,0.527001252,7.332856204,1.478559919,5.163470066,7.530916873,-7.530916873,0,0.577884366,0.131750313,4.237542958,0.431077595,1,0.132013678,0,0.94752537,0.986287333,0.724496596,1,16.43451233,0.381810613,0.061225789,0.312029739,0.841091932,0.565588528,0.961238037,0.922476074,0.090163574,4.073287474,16.5246759,4.455098087,25.53240209,0,0.32378995,71.10771938,-0.32378995,108.8922806,0.895578901,0,39.39095651,4.455098087,42.30672911,6,19,7% +6/20/2018 4:00,95.07897475,305.0777333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659441159,5.324610921,-6.441033356,6.441033356,0.368364735,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111835804,83.57884755,-0.111835804,96.42115245,0.602915986,0,0,0,0,6,20,0% +6/20/2018 5:00,104.1090325,315.6120114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817045398,5.508468758,-1.642781438,1.642781438,0.811085861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092102408,95.28456868,0.092102408,84.71543132,0,0.50712603,0,0,0,6,21,0% +6/20/2018 6:00,111.4553423,327.8364907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945262692,5.72182617,-0.536123883,0.536123883,0.621836273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276646374,106.0601514,0.276646374,73.93984862,0,0.869263852,0,0,0,6,22,0% +6/20/2018 7:00,116.502819,341.8525292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033357779,5.966452191,0.064830145,-0.064830145,0.519067082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429224785,115.4183731,0.429224785,64.58162692,0,0.933510921,0,0,0,6,23,0% +6/21/2018 8:00,118.6648039,357.1890576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071091534,6.234125107,0.540576636,-0.540576636,0.43770964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539444037,122.6458001,0.539444037,57.35419994,0,0.957311979,0,0,0,6,0,0% +6/21/2018 9:00,117.6342804,12.75544285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053105506,0.222624475,1.033435111,-1.033435111,0.353425877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599796001,126.8552887,0.599796001,53.1447113,0,0.966638324,0,0,0,6,1,0% +6/21/2018 10:00,113.5623511,27.33537137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982036932,0.477092233,1.686130188,-1.686130188,0.241808445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606169305,127.3130312,0.606169305,52.68696879,0,0.967514794,0,0,0,6,2,0% +6/21/2018 11:00,106.9664289,40.21438108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866916374,0.701873356,2.844701145,-2.844701145,0.043681143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558129357,123.9265288,0.558129357,56.07347124,0,0.960415033,0,0,0,6,3,0% +6/21/2018 12:00,98.47466442,51.31900404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718707124,0.895685589,6.35787346,-6.35787346,0,#DIV/0!,0,0,0.357783255,1,0.156007203,0,0.944597902,0.983359865,0.724496596,1,0,0,0.052331575,0.312029739,0.862339733,0.586836329,0.961238037,0.922476074,0,0,0,0,0,0,-0.45894806,117.3192485,0.45894806,62.68075146,0,0.94105521,0,0,0,6,4,0% +6/21/2018 13:00,88.31172048,60.96536037,2.19133473,12.21016203,1.831601714,1.792891371,0,1.792891371,1.776372164,0.016519207,4.371025899,3.784481874,0.586544025,0.05522955,0.531314476,1.541330291,1.064046268,-33.50663566,33.50663566,0,0.8358384,0.013807387,0.444093041,1,0.80989048,0,0.029835978,0.961238037,1,0.643372425,0.918875829,1.707516492,0.038425862,0.115824807,0.219957839,0.724496596,0.448993192,0.974927677,0.936165714,0.010003405,0.429686067,1.717519897,0.46811193,0,0.719466031,-0.309945262,108.0559318,0.309945262,71.94406821,0,0.888681193,1.717519897,1.107487861,2.442348552,6,5,42% +6/21/2018 14:00,77.81169586,69.61439265,136.4732284,419.261291,47.95657473,47.53929991,0,47.53929991,46.51050706,1.028792842,91.51748506,56.98190314,34.53558192,1.446067669,33.08951425,1.358070289,1.215000359,-4.629653624,4.629653624,0.678128912,0.351399137,0.814016014,26.18155318,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7076685,1.047671104,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.589751831,25.16670478,45.29742033,26.21437589,0,56.98190314,-0.135910241,97.811258,0.135910241,82.188742,0,0.682110137,45.29742033,65.08230963,87.89249034,6,6,94% +6/21/2018 15:00,66.49057083,77.7802168,341.1315338,662.6319316,76.8076668,119.5378556,42.4746297,77.06322586,74.49163226,2.571593596,85.0273244,0,85.0273244,2.316034544,82.71128986,1.160479383,1.357520876,-2.277646562,2.277646562,0.919654191,0.225155575,2.411497746,77.56205699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60419036,1.677959143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121908,74.5555994,73.35131226,76.23355854,42.4746297,0,0.064099884,86.32482751,-0.064099884,93.67517249,0,0,73.35131226,76.23355854,123.2446517,6,7,68% +6/21/2018 16:00,54.79112566,86.0792384,544.683196,779.8165047,95.07307017,309.4134177,213.1010994,96.31231833,92.20626632,4.106052006,134.9315508,0,134.9315508,2.866803848,132.064747,0.956285544,1.502366128,-1.361685827,1.361685827,0.763015681,0.174547463,3.302828956,106.2303326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.63217042,2.076989629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392888335,102.1126364,91.02505876,104.189626,213.1010994,0,0.273270825,74.14100692,-0.273270825,105.8589931,0.867031328,0,275.7903879,104.189626,343.9804143,6,8,25% +6/21/2018 17:00,42.97026702,95.4532475,725.0219168,843.0776822,108.1356383,512.5568353,402.2163641,110.3404712,104.8749498,5.46552146,179.0506462,0,179.0506462,3.260688471,175.7899577,0.74997264,1.665973451,-0.841126093,0.841126093,0.673994723,0.149148096,3.949483035,127.0289507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8097908,2.362357698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861387014,122.1050592,103.6711779,124.4674169,402.2163641,0,0.477081024,61.505068,-0.477081024,118.494932,0.945195999,0,483.844476,124.4674169,565.305911,6,9,17% +6/21/2018 18:00,31.38329882,107.8492251,867.6475032,878.8101891,117.4049332,701.8059121,581.4004775,120.4054346,113.8647412,6.540693375,213.9113743,0,213.9113743,3.540191913,210.3711824,0.547741894,1.882324073,-0.481675208,0.481675208,0.612525001,0.135314091,4.349272183,139.8875439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4511203,2.56485699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151032891,134.4652281,112.6021532,137.0300851,581.4004775,0,0.661576851,48.57975643,-0.661576851,131.4202436,0.97442299,0,679.1321451,137.0300851,768.8155952,6,10,13% +6/21/2018 19:00,20.89983408,128.5261932,962.0131432,897.8837551,123.2051942,857.7660703,731.0239058,126.7421644,119.490103,7.252061429,236.9663155,0,236.9663155,3.715091184,233.2512244,0.364770918,2.243205246,-0.199372201,0.199372201,0.564248344,0.128070178,4.496677935,144.6286196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.858432,2.691570916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257827857,139.0225304,118.1162599,141.7141013,731.0239058,0,0.814163194,35.49529576,-0.814163194,144.5047042,0.988587251,0,840.7971733,141.7141013,933.5462183,6,11,11% +6/21/2018 20:00,14.59757848,170.0714582,1001.342469,904.9933482,125.5624664,965.9308277,836.6059904,129.3248372,121.7762947,7.548542501,246.5732464,0,246.5732464,3.786171638,242.7870748,0.254775807,2.968306909,0.045543965,-0.045543965,0.522365213,0.125394129,4.395197831,141.3646706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0560065,2.743068463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184305867,135.8850985,120.2403124,138.6281669,836.6059904,0,0.924433303,22.41694346,-0.924433303,157.5830565,0.99591281,0,953.4269349,138.6281669,1044.156298,6,12,10% +6/21/2018 21:00,17.8320627,219.584737,982.8432469,901.7051804,124.4576274,1016.176536,888.0626772,128.1138583,120.7047707,7.40908755,242.0545808,0,242.0545808,3.752856666,238.3017242,0.311228206,3.832476647,0.277411983,-0.277411983,0.482713447,0.12663019,4.06179176,130.6411853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0260169,2.718931879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942754303,125.5772765,118.9687712,128.2962084,888.0626772,0,0.984870328,9.979331896,-0.984870328,170.0206681,0.999231895,0,1006.349323,128.2962084,1090.316626,6,13,8% +6/21/2018 22:00,27.37750202,246.1023106,907.8263184,887.3065495,119.9016335,1002.768073,879.6383378,123.1297351,116.2861569,6.843578256,223.728478,0,223.728478,3.615476641,220.1130014,0.477827551,4.295295616,0.516654917,-0.516654917,0.441800495,0.13207552,3.52803558,113.4737518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7786772,2.619400519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556049768,109.0752864,114.3347269,111.6946869,879.6383378,0,0.991357878,7.538086181,-0.991357878,172.4619138,0.999564127,0,993.5896542,111.6946869,1066.691593,6,14,7% +6/21/2018 23:00,38.72118172,260.5697709,781.6490226,858.4315426,111.9014133,924.316715,809.8971417,114.4195733,108.5271728,5.892400502,192.8940956,0,192.8940956,3.374240483,189.5198551,0.675812111,4.547800434,0.788154203,-0.788154203,0.395371383,0.14316069,2.839727124,91.33538581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3204465,2.444625744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.057372635,87.79504695,106.3778192,90.23967269,809.8971417,0,0.943461536,19.35875283,-0.943461536,160.6412472,0.997003669,0,913.8482408,90.23967269,972.9083018,6,15,6% +6/21/2018 0:00,50.51089055,270.718382,613.5120247,807.0401047,100.2897669,783.4060963,681.5155231,101.8905732,97.26566037,4.624912791,151.7771999,0,151.7771999,3.024106501,148.7530934,0.881581348,4.724927111,1.135086236,-1.135086236,0.336042511,0.163468299,2.056136847,66.13242893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49545242,2.190954865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489664147,63.56900616,94.98511657,65.75996103,681.5155231,0,0.844463019,32.38555165,-0.844463019,147.6144484,0.990790776,0,770.2244106,65.75996103,813.2629899,6,16,6% +6/21/2018 1:00,62.28516739,279.2676929,416.3826995,714.2373045,84.21147142,585.6012374,500.7901839,84.81105352,81.67218485,3.13886867,103.4960928,0,103.4960928,2.539286571,100.9568062,1.087081246,4.874140735,1.660527908,-1.660527908,0.246186693,0.202245366,1.251284699,40.2456172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.50641063,1.839704476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.906551505,38.68561806,79.41296214,40.52532254,500.7901839,0,0.701153777,45.48035484,-0.701153777,134.5196452,0.978688967,0,569.53079,40.52532254,596.0538031,6,17,5% +6/21/2018 2:00,73.77421001,287.4006775,208.5292275,530.3111914,60.34791091,337.6931099,277.5929298,60.10018013,58.52819873,1.5719814,52.38003765,0,52.38003765,1.819712174,50.56032547,1.287602868,5.016088095,2.729781443,-2.729781443,0.063333569,0.289397854,0.52567502,16.90751563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.25953085,1.318375275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.380849762,16.25214713,56.64038061,17.57052241,277.5929298,0,0.523452898,58.43584864,-0.523452898,121.5641514,0.954480422,0,321.5973973,17.57052241,333.0969528,6,18,4% +6/21/2018 3:00,84.67839565,295.8123265,30.64205425,139.8883945,17.66796019,62.76236093,45.39616217,17.36619876,17.13520601,0.230992748,7.962275001,0,7.962275001,0.532754188,7.429520813,1.477916809,5.162899065,7.482870703,-7.482870703,0,0.576591897,0.133188547,4.283801502,0.428405688,1,0.132851407,0,0.947425365,0.986187328,0.724496596,1,16.61397844,0.385978595,0.060910668,0.312029739,0.841834002,0.566330598,0.961238037,0.922476074,0.091148624,4.117752946,16.70512706,4.503731541,25.9481881,0,0.324517,71.06368482,-0.324517,108.9363152,0.895924867,0,39.95275403,4.503731541,42.90035625,6,19,7% +6/21/2018 4:00,95.04506567,305.0410541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658849334,5.323970748,-6.490496328,6.490496328,0.359906068,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112578782,83.53600747,-0.112578782,96.46399253,0.605866576,0,0,0,0,6,20,0% +6/21/2018 5:00,104.0805995,315.5697973,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816549148,5.507731983,-1.648911454,1.648911454,0.812134156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091410484,95.24475637,0.091410484,84.75524363,0,0.503016788,0,0,0,6,21,0% +6/21/2018 6:00,111.4345083,327.7878347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944899071,5.720976964,-0.538811391,0.538811391,0.622295864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276054494,106.024865,0.276054494,73.97513505,0,0.868876341,0,0,0,6,22,0% +6/21/2018 7:00,116.4918942,341.7981779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033167106,5.965503581,0.062958786,-0.062958786,0.519387103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428775143,115.3898528,0.428775143,64.61014724,0,0.933388763,0,0,0,6,23,0% +6/22/2018 8:00,118.6655,357.1322395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071103683,6.233133445,0.538827885,-0.538827885,0.438008694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539169116,122.6270949,0.539169116,57.37290513,0,0.957264718,0,0,0,6,0,0% +6/22/2018 9:00,117.6467691,12.7009464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053323475,0.221673333,1.03135966,-1.03135966,0.3537808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599716318,126.8495831,0.599716318,53.15041688,0,0.966627248,0,0,0,6,1,0% +6/22/2018 10:00,113.5851189,27.2869559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982434305,0.476247223,1.682990965,-1.682990965,0.242345284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606291998,127.3218705,0.606291998,52.67812953,0,0.967531486,0,0,0,6,2,0% +6/22/2018 11:00,106.9971228,40.17326361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867452083,0.701155721,2.838083784,-2.838083784,0.044812778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558447692,123.9485131,0.558447692,56.05148689,0,0.9604661,0,0,0,6,3,0% +6/22/2018 12:00,98.51101337,51.2844419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719341533,0.895082366,6.329026932,-6.329026932,0,#DIV/0!,0,0,0.355742192,1,0.156706697,0,0.9445106,0.983272563,0.724496596,1,0,0,0.052076252,0.312029739,0.862958953,0.587455549,0.961238037,0.922476074,0,0,0,0,0,0,-0.459441902,117.3511004,0.459441902,62.64889965,0,0.941172312,0,0,0,6,4,0% +6/22/2018 13:00,88.34853068,60.93579529,2.074681232,11.55327317,1.741720681,1.704841199,0,1.704841199,1.689201376,0.015639823,4.143156476,3.587606686,0.555549789,0.052519305,0.503030485,1.54197275,1.06353026,-34.25108997,34.25108997,0,0.839512429,0.013129826,0.422300344,1,0.814382913,0,0.02918786,0.961238037,1,0.645060461,0.920563865,1.623724614,0.036563866,0.115824807,0.221870187,0.724496596,0.448993192,0.974661673,0.93589971,0.009512514,0.408561559,1.633237129,0.445125425,0,0.665921103,-0.310527297,108.0910107,0.310527297,71.90898929,0,0.88898356,1.633237129,1.037118338,2.312010339,6,5,42% +6/22/2018 14:00,77.85423373,69.58808883,135.6524608,417.3197594,47.84858289,47.42837712,0,47.42837712,46.40577157,1.022605549,91.35784187,57.02452091,34.33332096,1.442811317,32.89050964,1.358812715,1.21454127,-4.646351925,4.646351925,0.675273335,0.352729192,0.807668086,25.97738199,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.60699277,1.045311887,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585152779,24.97044767,45.19214555,26.01575956,0,57.02452091,-0.13664467,97.85373397,0.13664467,82.14626603,0,0.684087448,45.19214555,65.02551854,87.75004692,6,6,94% +6/22/2018 15:00,66.53491274,77.75533731,340.2215636,661.5232554,76.80949192,118.9391486,41.88101237,77.0581362,74.49340234,2.564733857,84.80674663,0,84.80674663,2.316089578,82.49065705,1.161253295,1.357086647,-2.282609248,2.282609248,0.920502861,0.22576315,2.406875476,77.41338888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60589183,1.677999015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743773089,74.41269396,73.34966491,76.09069297,41.88101237,0,0.063309962,86.37017879,-0.063309962,93.62982121,0,0,73.34966491,76.09069297,123.1495016,6,7,68% +6/22/2018 16:00,54.83637962,86.05344821,543.8168537,779.0970726,95.12444193,308.6438514,212.2882412,96.35561018,92.25608903,4.099521152,134.7230452,0,134.7230452,2.868352896,131.8546923,0.957075374,1.501916004,-1.364148267,1.364148267,0.763436782,0.174919996,3.299361936,106.1188213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68006191,2.078111909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390376491,102.0054475,91.0704384,104.0835594,212.2882412,0,0.272479834,74.18811512,-0.272479834,105.8118849,0.866500182,0,275.0182381,104.0835594,343.138846,6,8,25% +6/22/2018 17:00,43.01559872,95.42246816,724.2668775,842.5573622,108.2158952,511.7576442,401.3450279,110.4126163,104.9527866,5.459829654,178.8699982,0,178.8699982,3.263108513,175.6068897,0.750763827,1.66543625,-0.842676693,0.842676693,0.674259891,0.149414392,3.947075479,126.9515154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8846106,2.36411101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.859642748,122.0306254,103.7442533,124.3947364,401.3450279,0,0.476341488,61.55326981,-0.476341488,118.4467302,0.945033288,0,483.0286646,124.3947364,564.4425317,6,9,17% +6/22/2018 18:00,31.42724436,107.8035291,867.0505757,878.4040363,117.5058125,701.0687304,580.5699582,120.4987722,113.9625787,6.536193483,213.7696842,0,213.7696842,3.543233797,210.2264504,0.548508889,1.881526528,-0.482805472,0.482805472,0.612718288,0.135523597,4.347902694,139.8434964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5451654,2.567060824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150040701,134.422888,112.6952061,136.9899488,580.5699582,0,0.660937261,48.6286071,-0.660937261,131.3713929,0.974349854,0,678.3734604,136.9899488,768.0306421,6,10,13% +6/22/2018 19:00,20.93770044,128.434711,961.6057266,897.5486052,123.3226691,857.1567888,730.3037631,126.8530257,119.6040356,7.248990151,236.871075,0,236.871075,3.718633485,233.1524415,0.365431811,2.24160858,-0.200288452,0.200288452,0.564405032,0.128246604,4.496321028,144.6171403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9679484,2.694137301,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257569278,139.011496,118.2255177,141.7056333,730.3037631,0,0.813664863,35.54444029,-0.813664863,144.4555597,0.988549638,0,840.1670386,141.7056333,932.9105415,6,11,11% +6/22/2018 20:00,14.61121064,169.8805371,1001.140816,904.7051954,125.6939393,965.4957303,836.0449047,129.4508256,121.9038032,7.547022356,246.5283177,0,246.5283177,3.79013603,242.7381817,0.255013733,2.964974708,0.044732863,-0.044732863,0.52250392,0.125550709,4.395792537,141.3837984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1785725,2.745940652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184736729,135.9034848,120.3633092,138.6494255,836.0449047,0,0.924107553,22.46583587,-0.924107553,157.5341641,0.995893744,0,952.9751994,138.6494255,1043.718475,6,12,10% +6/22/2018 21:00,17.81037635,219.4373223,982.8482475,901.450383,124.6007618,1015.943663,887.6909485,128.2527143,120.8435891,7.409125246,242.0601093,0,242.0601093,3.757172695,238.3029366,0.310849708,3.829903775,0.276632461,-0.276632461,0.482846753,0.126775178,4.06323058,130.6874627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1594543,2.722058828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943796724,125.6217601,119.103251,128.3438189,887.6909485,0,0.984736337,10.02353639,-0.984736337,169.9764636,0.999224987,0,1006.106228,128.3438189,1090.10469,6,13,8% +6/22/2018 22:00,27.34270433,246.0239371,908.0238257,887.0787729,120.0538045,1002.747644,879.4688378,123.2788065,116.4337394,6.845067149,223.7809544,0,223.7809544,3.620065158,220.1608893,0.477220217,4.293927741,0.515838174,-0.515838174,0.441940166,0.132214377,3.530163355,113.5421884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9205391,2.622724884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557591334,109.1410702,114.4781304,111.7637951,879.4688378,0,0.991421354,7.510311921,-0.991421354,172.4896881,0.999567356,0,993.5664714,111.7637951,1066.71364,6,14,7% +6/22/2018 23:00,38.68285007,260.5181606,782.0109106,858.2326582,112.0594599,924.50203,809.9264477,114.5755823,108.6804537,5.895128567,192.9866053,0,192.9866053,3.379006171,189.6075991,0.675143098,4.546899664,0.787206339,-0.787206339,0.395533477,0.143296543,2.842344728,91.41957696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.467786,2.448078468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05926908,87.87597469,106.5270551,90.32405316,809.9264477,0,0.943714318,19.31501261,-0.943714318,160.6849874,0.997017864,0,914.0381922,90.32405316,973.1534785,6,15,6% +6/22/2018 0:00,50.4720119,270.6773671,613.9978594,806.8878946,100.4499672,783.7759707,681.7263654,102.0496053,97.42103004,4.628575218,151.8998268,0,151.8998268,3.028937131,148.8708896,0.880902788,4.724211266,1.133824748,-1.133824748,0.336258238,0.163599865,2.059004565,66.22466461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.64479966,2.194454641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491741799,63.6576666,95.13654146,65.85212124,681.7263654,0,0.84488362,32.34053111,-0.84488362,147.6594689,0.990820252,0,770.6048305,65.85212124,813.7037268,6,16,6% +6/22/2018 1:00,62.24716148,279.230739,416.9408063,714.1943565,84.3702311,586.1256821,501.1564489,84.96923326,81.82615734,3.143075915,103.6361994,0,103.6361994,2.544073761,101.0921257,1.086417918,4.873495768,1.658454853,-1.658454853,0.246541206,0.202355418,1.254111414,40.33653406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65441485,1.843172779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90859945,38.77301081,79.5630143,40.61618359,501.1564489,0,0.701708778,45.43573926,-0.701708778,134.5642607,0.978745369,0,570.0675678,40.61618359,596.6500476,6,17,5% +6/22/2018 2:00,73.7381786,287.3643879,209.0890092,530.6003541,60.50653729,338.3452057,278.0869625,60.25824321,58.68204194,1.576201271,52.52054637,0,52.52054637,1.824495345,50.69605103,1.286974001,5.015454722,2.724715055,-2.724715055,0.064199973,0.289381721,0.528032777,16.98334921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.4074108,1.321840666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382557949,16.32504125,56.78996875,17.64688192,278.0869625,0,0.524098713,58.39241117,-0.524098713,121.6075888,0.954598125,0,322.2512617,17.64688192,333.8007929,6,18,4% +6/22/2018 3:00,84.64598712,295.7744218,30.98950792,140.9677778,17.83591473,63.37374748,45.84203938,17.5317081,17.2980961,0.233612001,8.051583617,0,8.051583617,0.537818637,7.51376498,1.477351174,5.162237504,7.442373713,-7.442373713,0,0.575546884,0.134454659,4.324524024,0.42613403,1,0.133565761,0,0.947339961,0.986101924,0.724496596,1,16.77195949,0.389647771,0.060642225,0.312029739,0.842466777,0.566963373,0.961238037,0.922476074,0.092016029,4.156896983,16.86397552,4.546544755,26.30718638,0,0.325195162,71.02260075,-0.325195162,108.9773993,0.896246175,0,40.4416907,4.546544755,43.41731331,6,19,7% +6/22/2018 4:00,95.01621981,304.9997017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658345878,5.323249013,-6.534750396,6.534750396,0.352338177,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113260187,83.49671457,-0.113260187,96.50328543,0.608538604,0,0,0,0,6,20,0% +6/22/2018 5:00,104.0578077,315.5235411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816151356,5.50692466,-1.654630402,1.654630402,0.813112153,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090790391,95.20907935,0.090790391,84.79092065,0,0.499280929,0,0,0,6,21,0% +6/22/2018 6:00,111.4198933,327.7360594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944643991,5.720073315,-0.541466835,0.541466835,0.622749972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275543442,105.9944024,0.275543442,74.00559763,0,0.86854041,0,0,0,6,22,0% +6/22/2018 7:00,116.4876446,341.7420622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033092936,5.964524178,0.061005982,-0.061005982,0.519721052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428413448,115.3669156,0.428413448,64.63308435,0,0.933290312,0,0,0,6,23,0% +6/23/2018 8:00,118.6730537,357.075394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071235521,6.232141302,0.536925177,-0.536925177,0.438334077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538986888,122.6146985,0.538986888,57.38530146,0,0.957233365,0,0,0,6,0,0% +6/23/2018 9:00,117.6659357,12.64821265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053657995,0.220752955,1.029043061,-1.029043061,0.354176962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59973138,126.8506616,0.59973138,53.14933844,0,0.966629342,0,0,0,6,1,0% +6/23/2018 10:00,113.6140787,27.24176498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98293975,0.475458493,1.679449499,-1.679449499,0.24295091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60650865,127.3374815,0.60650865,52.66251851,0,0.967560945,0,0,0,6,2,0% +6/23/2018 11:00,107.0333689,40.13637171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868084696,0.700511836,2.830628745,-2.830628745,0.046087665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558856417,123.9767482,0.558856417,56.0232518,0,0.960531581,0,0,0,6,3,0% +6/23/2018 12:00,98.55226005,51.25475722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720061423,0.894564271,6.296941586,-6.296941586,0,#DIV/0!,0,0,0.353456668,1,0.157492072,0,0.944412448,0.983174411,0.724496596,1,0,0,0.051789844,0.312029739,0.863654181,0.588150777,0.961238037,0.922476074,0,0,0,0,0,0,-0.460020027,117.3883998,0.460020027,62.61160015,0,0.94130908,0,0,0,6,4,0% +6/23/2018 13:00,88.38921987,60.91159588,1.951000161,10.86243297,1.64566028,1.610745014,0,1.610745014,1.596037551,0.014707463,3.902819898,3.380154592,0.522665306,0.049622729,0.473042577,1.54268291,1.063107901,-35.11439537,35.11439537,0,0.843495717,0.012405682,0.399009388,1,0.819333777,0,0.028470654,0.961238037,1,0.646932288,0.922435692,1.534172002,0.034572475,0.115824807,0.223990954,0.724496596,0.448993192,0.974365751,0.935603788,0.008987875,0.385986828,1.543159877,0.420559304,0,0.610679762,-0.311178407,108.1302611,0.311178407,71.86973886,0,0.889320471,1.543159877,0.963649317,2.173849082,6,5,41% +6/23/2018 14:00,77.90057497,69.56764073,134.7665212,415.2514916,47.72617482,47.30298152,0,47.30298152,46.28705456,1.015926963,91.18905004,57.07422644,34.11482361,1.439120262,32.67570334,1.359621522,1.214184384,-4.664678824,4.664678824,0.67213925,0.354139696,0.800802149,25.75654985,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.49287745,1.042637731,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.580178431,24.75817542,45.07305588,25.80081315,0,57.07422644,-0.137444964,97.90002419,0.137444964,82.09997581,0,0.686218029,45.07305588,64.96617633,87.59211897,6,6,94% +6/23/2018 15:00,66.58271937,77.73694886,339.2489336,660.3635586,76.80416362,118.2949462,41.24930975,77.04563647,74.48823471,2.557401761,84.57076056,0,84.57076056,2.31592891,82.25483165,1.162087678,1.356765708,-2.287933442,2.287933442,0.921413352,0.226394709,2.401924401,77.25414529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.6009245,1.677882612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740186052,74.25962295,73.34111055,75.93750557,41.24930975,0,0.062464546,86.41871365,-0.062464546,93.58128635,0,0,73.34111055,75.93750557,123.0406892,6,7,68% +6/23/2018 16:00,54.88490046,86.03508857,542.8962754,778.3532297,95.17127325,307.8291528,211.4350632,96.39408967,92.30150822,4.092581444,134.5012524,0,134.5012524,2.869765033,131.6314874,0.957922223,1.501595568,-1.366730834,1.366730834,0.763878427,0.175302866,3.295638036,105.9990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.72372056,2.079134998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.387678538,101.8903167,91.1113991,103.9694517,211.4350632,0,0.271644101,74.23787613,-0.271644101,105.7621239,0.865935631,0,274.2005539,103.9694517,342.2464807,6,8,25% +6/23/2018 17:00,43.06421901,95.40059393,723.4656522,842.0232772,108.2928461,510.9200337,400.4388268,110.481207,105.0274173,5.453789679,178.6780522,0,178.6780522,3.265428869,175.4126234,0.751612411,1.665054472,-0.844264546,0.844264546,0.67453143,0.14968623,3.944451168,126.8671085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9563484,2.3657921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.857741444,121.9494903,103.8140898,124.3152824,400.4388268,0,0.475567407,61.60369971,-0.475567407,118.3963003,0.944862433,0,482.1736941,124.3152824,563.5355602,6,9,17% +6/23/2018 18:00,31.47488917,107.7690724,866.4136269,877.9888858,117.604057,700.3007656,579.7115129,120.5892527,114.0578608,6.531391894,213.6182111,0,213.6182111,3.546196231,210.0720148,0.549340448,1.880925145,-0.483933869,0.483933869,0.612911255,0.13573662,4.346336766,139.7931308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6367542,2.569207098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148906192,134.3744747,112.7856604,136.9436818,579.7115129,0,0.66027204,48.67937658,-0.66027204,131.3206234,0.974273637,0,677.5833047,136.9436818,767.2102055,6,10,13% +6/23/2018 19:00,20.98047395,128.3571404,961.1618898,897.2065899,123.4378521,856.523053,729.5616633,126.9613898,119.7157454,7.245644322,236.7669348,0,236.7669348,3.722106678,233.0448281,0.366178349,2.240254719,-0.201178751,0.201178751,0.564557282,0.128425662,4.495772329,144.5994922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0753281,2.696653618,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257171748,138.994532,118.3324999,141.6911856,729.5616633,0,0.81314791,35.59535909,-0.81314791,144.4046409,0.988510572,0,839.5119168,141.6911856,932.245964,6,11,11% +6/23/2018 20:00,14.63173707,169.695392,1000.903449,904.410825,125.8232123,965.0400106,835.4655994,129.5744112,122.0291782,7.545232979,246.4746633,0,246.4746633,3.79403409,242.6806292,0.255371987,2.961743316,0.043967175,-0.043967175,0.52263486,0.12570964,4.396186684,141.3964756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2990877,2.748764783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185022287,135.9156706,120.48411,138.6644354,835.4655994,0,0.923767801,22.51672261,-0.923767801,157.4832774,0.995873844,0,952.5024481,138.6644354,1043.255548,6,12,10% +6/23/2018 21:00,17.79473502,219.278188,982.8152701,901.1888541,124.7415623,1015.690787,887.3017663,128.3890206,120.9801439,7.408876649,242.0563592,0,242.0563592,3.761418349,238.2949409,0.310576716,3.827126358,0.275918805,-0.275918805,0.482968795,0.126922694,4.064448893,130.7266478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.290716,2.72513479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944679387,125.6594263,119.2353954,128.3845611,887.3017663,0,0.984590258,10.07151013,-0.984590258,169.9284899,0.999217454,0,1005.842807,128.3845611,1089.867935,6,13,8% +6/23/2018 22:00,27.31245259,245.9340503,908.1782919,886.8423967,120.2032767,1002.704178,879.2792423,123.424936,116.5787044,6.846231581,223.8229137,0,223.8229137,3.624572295,220.1983414,0.476692225,4.29235892,0.515113993,-0.515113993,0.442064009,0.132356474,3.532042412,113.6026253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.059885,2.625990289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558952704,109.1991645,114.6188377,111.8251548,879.2792423,0,0.991471817,7.488158328,-0.991471817,172.5118417,0.999569923,0,993.5199223,111.8251548,1066.70725,6,14,7% +6/23/2018 23:00,38.64845058,260.4574064,782.3223037,858.0210789,112.2141675,924.6573051,809.9293327,114.7279723,108.8304964,5.89747598,193.0667711,0,193.0667711,3.383671178,189.6831,0.674542713,4.545839304,0.786392443,-0.786392443,0.395672662,0.14343726,2.844681267,91.49472808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6120127,2.45145825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060961894,87.9482128,106.6729746,90.39967105,809.9293327,0,0.943950391,19.27407747,-0.943950391,160.7259225,0.997031115,0,914.19772,90.39967105,973.3624967,6,15,6% +6/23/2018 0:00,50.4369287,270.6288574,614.4240429,806.7142455,100.6057647,784.1043861,681.9004684,102.2039176,97.57212967,4.631787969,152.0078578,0,152.0078578,3.033635,148.9742228,0.88029047,4.723364613,1.132773001,-1.132773001,0.336438098,0.163739954,2.061561086,66.30689109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.79004237,2.197858231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493593989,63.73670582,95.28363636,65.93456405,681.9004684,0,0.845281303,32.29791232,-0.845281303,147.7020877,0.990848094,0,770.9434159,65.93456405,814.0962694,6,16,6% +6/23/2018 1:00,62.21306722,279.1873627,417.4296224,714.10944,84.522595,586.5916039,501.4709162,85.12068772,81.9739269,3.146760816,103.7593129,0,103.7593129,2.548668094,101.2106448,1.085822861,4.87273871,1.656763858,-1.656763858,0.246830384,0.202483462,1.256611022,40.41693004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.79645657,1.846501358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.910410408,38.85029049,79.70686698,40.69679185,501.4709162,0,0.702232582,45.39360002,-0.702232582,134.6064,0.978798519,0,570.545857,40.69679185,597.1810933,6,17,5% +6/23/2018 2:00,73.70633103,287.3224066,209.5728734,530.7908588,60.65384432,338.9126592,278.5079032,60.40475597,58.82490712,1.579848843,52.64230669,0,52.64230669,1.828937195,50.8133695,1.286418156,5.014722009,2.720612442,-2.720612442,0.064901561,0.289416485,0.530093735,17.0496367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.54473824,1.325058772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.384051107,16.38875931,56.92878935,17.71381809,278.5079032,0,0.524703654,58.35170445,-0.524703654,121.6482955,0.954708116,0,322.8225448,17.71381809,334.4158845,6,18,4% +6/23/2018 3:00,84.61807138,295.731381,31.28446416,141.8397995,17.98069897,63.88906936,46.2147193,17.67435006,17.43851455,0.235835505,8.12746495,0,8.12746495,0.542184416,7.585280534,1.476863952,5.1614863,7.409256236,-7.409256236,0,0.574748504,0.135546104,4.359628638,0.424262859,1,0.134155644,0,0.94726935,0.986031313,0.724496596,1,16.90814048,0.392810763,0.060420741,0.312029739,0.842989288,0.567485884,0.961238037,0.922476074,0.092763924,4.190640874,17.0009044,4.583451637,26.60753038,0,0.325823355,70.98453487,-0.325823355,109.0154651,0.896542615,0,40.85568926,4.583451637,43.85546669,6,19,7% +6/23/2018 4:00,94.99248159,304.9537334,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657931568,5.322446713,-6.573501865,6.573501865,0.345711285,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113878977,83.46102959,-0.113878977,96.53897041,0.610937399,0,0,0,0,6,20,0% +6/23/2018 5:00,104.0406918,315.4733055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815852628,5.506047883,-1.659920896,1.659920896,0.814016881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09024308,95.17759148,0.09024308,84.82240852,0,0.495940899,0,0,0,6,21,0% +6/23/2018 6:00,111.4115201,327.6812324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94449785,5.719116402,-0.544084046,0.544084046,0.623197541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275114009,105.9688085,0.275114009,74.03119153,0,0.868257165,0,0,0,6,22,0% +6/23/2018 7:00,116.4900792,341.6842529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033135428,5.963515216,0.058975851,-0.058975851,0.520068225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428140271,115.3495948,0.428140271,64.65040515,0,0.933215844,0,0,0,6,23,0% +6/24/2018 8:00,118.6874594,357.0185923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071486948,6.231149926,0.534872516,-0.534872516,0.438685102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538897666,122.6086297,0.538897666,57.39137033,0,0.957218006,0,0,0,6,0,0% +6/24/2018 9:00,117.6917598,12.59731082,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054108712,0.219864551,1.026490477,-1.026490477,0.35461348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599841214,126.8585263,0.599841214,53.14147374,0,0.966644607,0,0,0,6,1,0% +6/24/2018 10:00,113.6491968,27.19986259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983552676,0.474727158,1.675514568,-1.675514568,0.243623823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606818998,127.3598495,0.606818998,52.64015049,0,0.967603107,0,0,0,6,2,0% +6/24/2018 11:00,107.0751219,40.10376172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868813425,0.699942684,2.822358206,-2.822358206,0.04750201,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559354994,124.011203,0.559354994,55.98879701,0,0.960611328,0,0,0,6,3,0% +6/24/2018 12:00,98.59835058,51.22999787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720865855,0.894132139,6.261760512,-6.261760512,0,#DIV/0!,0,0,0.350931916,1,0.158362246,0,0.944303535,0.983065498,0.724496596,1,0,0,0.051472832,0.312029739,0.864424451,0.588921047,0.961238037,0.922476074,0,0,0,0,0,0,-0.460681654,117.4311021,0.460681654,62.56889785,0,0.941465181,0,0,0,6,4,0% +6/24/2018 13:00,88.43371135,60.89280208,1.821747514,10.14547055,1.544436403,1.511599049,0,1.511599049,1.497865947,0.013733102,3.652619686,3.164345454,0.488274232,0.046570456,0.441703776,1.543459433,1.062779887,-36.11046509,36.11046509,0,0.847777418,0.011642614,0.374466487,1,0.824727664,0,0.027685727,0.961238037,1,0.648985498,0.924488902,1.439805723,0.032472351,0.115824807,0.226317471,0.724496596,0.448993192,0.974039999,0.935278036,0.008435034,0.362201249,1.448240757,0.394673599,0,0.554622221,-0.311897357,108.1736113,0.311897357,71.82638868,0,0.889690851,1.448240757,0.888115915,2.029494861,6,5,40% +6/24/2018 14:00,77.95065492,69.55308152,133.8167507,413.057259,47.58938418,47.16315585,0,47.16315585,46.15438866,1.008767191,91.01037428,57.12995829,33.880416,1.434995519,32.44542048,1.360495582,1.213930278,-4.684644588,4.684644588,0.668724904,0.355630995,0.793432312,25.51951057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.36535395,1.039649369,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574839009,24.53032424,44.94019296,25.56997361,0,57.12995829,-0.138310021,97.95006625,0.138310021,82.04993375,0,0.688493295,44.94019296,64.90356686,87.4182794,6,6,95% +6/24/2018 15:00,66.63392323,77.72507907,338.214846,659.1532379,76.79174238,117.606425,40.58063066,77.02579438,74.47618801,2.549606371,84.31965948,0,84.31965948,2.315554364,82.00410512,1.162981354,1.356558541,-2.293616132,2.293616132,0.922385149,0.227050182,2.396649404,77.08448325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58934476,1.677611254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736364335,74.09653736,73.32570909,75.77414861,40.58063066,0,0.06156479,86.47036528,-0.06156479,93.52963472,0,0,73.32570909,75.77414861,122.9183739,6,7,68% +6/24/2018 16:00,54.93661866,86.02418282,541.9225298,777.5852325,95.21362217,306.9705006,210.5426795,96.4278211,92.34258016,4.085240938,134.2664335,0,134.2664335,2.871042009,131.3953915,0.958824876,1.501405226,-1.369430996,1.369430996,0.764340182,0.175696003,3.291661113,105.8711364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.76320047,2.080060162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384797271,101.7673633,91.14799774,103.8474235,210.5426795,0,0.270764761,74.29022037,-0.270764761,105.7097796,0.865337861,0,273.3385496,103.8474235,341.3046113,6,8,25% +6/24/2018 17:00,43.11605673,95.38764591,722.6191136,841.4755837,108.3665377,510.0450951,399.4988003,110.5462949,105.0988868,5.447408114,178.4750212,0,178.4750212,3.267650942,175.2073703,0.75251715,1.664828487,-0.845887754,0.845887754,0.674809015,0.149963564,3.941612761,126.7758156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0250476,2.367401984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855685028,121.8617361,103.8807326,124.2291381,399.4988003,0,0.474759824,61.65628664,-0.474759824,118.3437134,0.944683591,0,481.2806937,124.2291381,562.58618,6,9,17% +6/24/2018 18:00,31.52616031,107.7458823,865.7372798,877.5648231,117.6996984,699.502934,578.8260224,120.6769115,114.1506182,6.526293304,213.4571068,0,213.4571068,3.549080173,209.9080266,0.550235298,1.880520401,-0.485058908,0.485058908,0.613103648,0.135953136,4.344575777,139.7364914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7259162,2.571296503,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147630361,134.3200306,112.8735465,136.8913271,578.8260224,0,0.65958207,48.73199315,-0.65958207,131.2680068,0.974194422,0,676.7626289,136.8913271,766.3552647,6,10,13% +6/24/2018 19:00,21.02808053,128.2935789,960.6819692,896.8577397,123.5507585,855.8655317,728.798258,127.0672738,119.8252473,7.242026477,236.653977,0,236.653977,3.725511223,232.9284658,0.367009241,2.239145362,-0.202041858,0.202041858,0.564704882,0.128607346,4.49503192,144.5756781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1805855,2.699120199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256635325,138.971641,118.4372208,141.6707612,728.798258,0,0.812613,35.64798015,-0.812613,144.3520199,0.988470096,0,838.8325047,141.6707612,931.5531845,6,11,11% +6/24/2018 20:00,14.65912321,169.5165229,1000.630401,904.1102193,125.9502834,964.5640376,834.8684453,129.6955923,122.1524176,7.543174629,246.4122913,0,246.4122913,3.797865751,242.6144256,0.255849965,2.958621461,0.043247996,-0.043247996,0.522757847,0.125870934,4.396379133,141.4026654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4175501,2.751540808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185161716,135.9216205,120.6027118,138.6731613,834.8684453,0,0.923414455,22.56953009,-0.923414455,157.4304699,0.995853133,0,952.0090684,138.6731613,1042.767879,6,12,10% +6/24/2018 21:00,17.78519639,219.1076736,982.744052,900.9205269,124.880009,1015.417947,886.8951914,128.5227558,121.114416,7.408339776,242.0432662,0,242.0432662,3.76559303,238.2776732,0.310410235,3.82415032,0.27527203,-0.27527203,0.4830794,0.12707277,4.065444487,130.7586696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4197835,2.728159332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945400692,125.6902068,119.3651842,128.4183662,886.8951914,0,0.984432217,10.12315881,-0.984432217,169.8768412,0.999209301,0,1005.559109,128.4183662,1089.606361,6,13,8% +6/24/2018 22:00,27.28681776,245.8327695,908.2891841,886.5972963,120.3500125,1002.637379,879.0692959,123.5680831,116.7210156,6.847067532,223.8542254,0,223.8542254,3.628996921,220.2252285,0.476244812,4.290591237,0.514483361,-0.514483361,0.442171853,0.132501867,3.533669696,113.6549643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1966799,2.629195916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560131666,109.2494748,114.7568115,111.8786707,879.0692959,0,0.99150911,7.471744639,-0.99150911,172.5282554,0.99957182,0,993.4497074,111.8786707,1066.67206,6,14,7% +6/24/2018 23:00,38.61805168,260.3875776,782.5824451,857.7966029,112.3654809,924.7819262,809.9052422,114.8766841,108.977247,5.899437035,193.1344081,0,193.1344081,3.388233832,189.7461742,0.674012153,4.544620561,0.785713528,-0.785713528,0.395788763,0.143582931,2.846733125,91.56072288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.753075,2.454763877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.062448458,88.01164951,106.8155234,90.46641339,809.9052422,0,0.944169328,19.23603874,-0.944169328,160.7639613,0.997043397,0,914.3261976,90.46641339,973.5346558,6,15,6% +6/24/2018 0:00,50.40570551,270.5729082,614.7896579,806.5188426,100.7570843,784.3904506,682.0370199,102.3534306,97.7188865,4.634544129,152.1010682,0,152.1010682,3.038197847,149.0628703,0.879745523,4.722388114,1.131932063,-1.131932063,0.336581906,0.163888711,2.063802554,66.37898442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.93111062,2.201163998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495217925,63.80600468,95.42632855,66.00716867,682.0370199,0,0.845655407,32.25777456,-0.845655407,147.7422254,0.990874262,0,771.2392574,66.00716867,814.4396291,6,16,6% +6/24/2018 1:00,62.18294476,279.1376152,417.8481481,713.9820716,84.66846228,586.9978984,501.7325868,85.26531159,82.11539575,3.14991584,103.8651877,0,103.8651877,2.553066531,101.3121212,1.085297125,4.871870451,1.655455914,-1.655455914,0.247054055,0.202629742,1.258779754,40.48668393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93244181,1.849688011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911981647,38.91734058,79.84442345,40.76702859,501.7325868,0,0.702724349,45.35401034,-0.702724349,134.6459897,0.978848346,0,570.964536,40.76702859,597.6457408,6,17,5% +6/24/2018 2:00,73.67872223,287.2747845,209.9798228,530.8820414,60.78968996,339.3942631,278.8546899,60.53957312,58.95665652,1.5829166,52.74507254,0,52.74507254,1.833033442,50.91203909,1.285936292,5.013890848,2.717472266,-2.717472266,0.065438563,0.28950253,0.531854379,17.10626507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.67138077,1.328026489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385326687,16.44319266,57.05670746,17.77121915,278.8546899,0,0.52526676,58.31379685,-0.52526676,121.6862032,0.954810272,0,323.3100298,17.77121915,334.9409373,6,18,4% +6/24/2018 3:00,84.59469843,295.6832574,31.52580028,142.5025669,18.1019969,64.30672499,46.51291529,17.7938097,17.5561549,0.237654799,8.189637267,0,8.189637267,0.545841996,7.643795271,1.476456017,5.160646384,7.383382105,-7.383382105,0,0.574196269,0.136460499,4.389038725,0.422792431,1,0.134620126,0,0.947213694,0.985975658,0.724496596,1,17.02222646,0.395460668,0.06024646,0.312029739,0.843400717,0.567897312,0.961238037,0.922476074,0.093390572,4.218910968,17.11561703,4.614371636,26.84760677,0,0.326400543,70.9495519,-0.326400543,109.0504481,0.896813981,0,41.19292613,4.614371636,44.21294008,6,19,7% +6/24/2018 4:00,94.97389173,304.9032063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657607114,5.32156485,-6.606487967,6.606487967,0.34007033,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11443417,83.42901005,-0.11443417,96.57098995,0.613067572,0,0,0,0,6,20,0% +6/24/2018 5:00,104.0292829,315.4191522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815653504,5.505102729,-1.664766875,1.664766875,0.814845592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089769435,95.15034303,0.089769435,84.84965697,0,0.493017551,0,0,0,6,21,0% +6/24/2018 6:00,111.4094078,327.6234195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944460984,5.718107377,-0.546657024,0.546657024,0.623637547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274766914,105.9481243,0.274766914,74.05187575,0,0.868027581,0,0,0,6,22,0% +6/24/2018 7:00,116.4992039,341.6248186,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033294684,5.962477891,0.056872575,-0.056872575,0.520427907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427956112,115.3379196,0.427956112,64.66208037,0,0.93316559,0,0,0,6,23,0% +6/25/2018 8:00,118.7087088,356.9619036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071857819,6.230160522,0.532674086,-0.532674086,0.439061056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53890169,122.6089034,0.53890169,57.39109663,0,0.957218699,0,0,0,6,0,0% +6/25/2018 9:00,117.724219,12.54830795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054675231,0.219009289,1.023707376,-1.023707376,0.355089418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60004578,126.8731765,0.60004578,53.12682351,0,0.966673025,0,0,0,6,1,0% +6/25/2018 10:00,113.6904375,27.16131046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984272462,0.474054297,1.671195506,-1.671195506,0.244362426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607222721,127.3889574,0.607222721,52.61104261,0,0.96765789,0,0,0,6,2,0% +6/25/2018 11:00,107.1223355,40.07548744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869637458,0.699449205,2.813295685,-2.813295685,0.049051793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559942836,124.0518446,0.559942836,55.94815545,0,0.960705171,0,0,0,6,3,0% +6/25/2018 12:00,98.64923027,51.21020879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721753873,0.893786754,6.223633733,-6.223633733,0,#DIV/0!,0,0,0.348173409,1,0.159316109,0,0.944183952,0.982945915,0.724496596,1,0,0,0.05112572,0.312029739,0.865268775,0.589765371,0.961238037,0.922476074,0,0,0,0,0,0,-0.461425967,117.4791609,0.461425967,62.52083909,0,0.941640255,0,0,0,6,4,0% +6/25/2018 13:00,88.48192577,60.87945047,1.688424884,9.410416984,1.439121353,1.408454595,0,1.408454595,1.395726535,0.01272806,3.39524899,2.94247601,0.45277298,0.043394819,0.409378161,1.544300933,1.062546858,-37.25651261,37.25651261,0,0.852345501,0.010848705,0.348931634,1,0.83054847,0,0.026834502,0.961238037,1,0.65121761,0.926721014,1.341625434,0.030285334,0.115824807,0.228846994,0.724496596,0.448993192,0.973684495,0.934922532,0.00785985,0.337457443,1.349485284,0.367742777,0,0.498607061,-0.312682851,108.2209861,0.312682851,71.77901385,0,0.890093565,1.349485284,0.811549714,1.88062834,6,5,39% +6/25/2018 14:00,78.00440926,69.5444405,132.8044976,410.7377488,47.43823606,47.00893461,0,47.00893461,46.00779821,1.0011364,90.82102952,57.19060368,33.63042584,1.430437846,32.19998799,1.361433773,1.213779463,-4.706262257,4.706262257,0.665028065,0.357203535,0.785572936,25.266726,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22444563,1.03634735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.569144918,24.2873381,44.79359055,25.32368545,0,57.19060368,-0.139238733,98.0037974,0.139238733,81.9962026,0,0.690904517,44.79359055,64.83693187,87.22806572,6,6,95% +6/25/2018 15:00,66.68845782,77.71975098,337.1204841,657.892655,76.77228516,116.8747603,39.87608623,76.99867411,74.4573175,2.541356609,84.05373207,0,84.05373207,2.314967657,81.73876441,1.163933162,1.356465548,-2.299654554,2.299654554,0.92341778,0.227729517,2.391055218,76.90455502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5712057,1.677186187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732311366,73.9235835,73.30351707,75.60076968,39.87608623,0,0.060611843,86.5250673,-0.060611843,93.4749327,0,0,73.30351707,75.60076968,122.7827088,6,7,67% +6/25/2018 16:00,54.99146633,86.02074852,540.8966559,776.7933196,95.25154411,306.0690522,209.6121861,96.45686608,92.37935861,4.077507468,134.018842,0,134.018842,2.872185496,131.1466565,0.959782148,1.501345287,-1.372246286,1.372246286,0.764821625,0.17609934,3.287434868,105.7352059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79855332,2.080888614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381735371,101.6367017,91.18028869,103.7175903,209.6121861,0,0.269842931,74.34507946,-0.269842931,105.6549205,0.864707023,0,272.4334181,103.7175903,340.3145066,6,8,25% +6/25/2018 17:00,43.17104305,95.38363717,721.7280987,840.9144265,108.4370138,509.1338862,398.5259572,110.607929,105.1672378,5.440691267,178.2611095,0,178.2611095,3.269776057,174.9913334,0.753476843,1.664758521,-0.847544458,0.847544458,0.675092328,0.150246352,3.938562765,126.6777173,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0907492,2.368941623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853475316,121.7674403,103.9442245,124.1363819,398.5259572,0,0.473919753,61.71096148,-0.473919753,118.2890385,0.944496906,0,480.3507582,124.1363819,561.5955374,6,9,17% +6/25/2018 18:00,31.58098771,107.7339726,865.0221189,877.1319243,117.792766,698.6761101,577.9143285,120.7617816,114.2408795,6.520902119,213.2865141,0,213.2865141,3.551886503,209.7346276,0.551192217,1.880312539,-0.486179131,0.486179131,0.613295218,0.136173126,4.342620959,139.6736177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8126787,2.57332968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146214102,134.2595941,112.9588928,136.8329238,577.9143285,0,0.658868196,48.786388,-0.658868196,131.213612,0.974112288,0,675.9123415,136.8329238,765.4667535,6,10,13% +6/25/2018 19:00,21.08044862,128.2440953,960.1662643,896.5020774,123.6614012,855.1848483,728.0141557,127.1706926,119.9325537,7.238138876,236.5322747,0,236.5322747,3.728847508,232.8034272,0.367923236,2.23828171,-0.202876562,0.202876562,0.564847625,0.128791654,4.494099766,144.5456968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2837325,2.701537326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255959982,138.9428219,118.5396924,141.6443592,728.0141557,0,0.812060757,35.70223562,-0.812060757,144.2977644,0.988428252,0,838.1294521,141.6443592,930.8328523,6,11,11% +6/25/2018 20:00,14.69333149,169.3443996,1000.321675,903.8033539,126.0751483,964.0681351,834.2537704,129.8143647,122.2735174,7.540847321,246.3412022,0,246.3412022,3.801630887,242.5395713,0.256447013,2.955617343,0.042576383,-0.042576383,0.522872699,0.126034606,4.396368665,141.4023287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5339558,2.754268637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185154132,135.9212968,120.7191099,138.6755655,834.2537704,0,0.923047881,22.62419097,-0.923047881,157.375809,0.995831629,0,951.4954012,138.6755655,1042.255785,6,12,10% +6/25/2018 21:00,17.78181606,218.9261435,982.6343067,900.6453289,125.0160806,1015.125142,886.4712454,128.653897,121.2463845,7.40751247,242.0207603,0,242.0207603,3.769696091,238.2510642,0.310351237,3.820982022,0.27469311,-0.27469311,0.483178401,0.127225439,4.066215123,130.7834559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5466366,2.731131985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945959014,125.7140324,119.4925957,128.4451644,886.4712454,0,0.984262303,10.17839826,-0.984262303,169.8216017,0.999200533,0,1005.255137,128.4451644,1089.319928,6,13,8% +6/25/2018 22:00,27.26587029,245.7202284,908.3559563,886.3433422,120.4939734,1002.546917,878.838711,123.7082064,116.8606355,6.847570889,223.874756,0,223.874756,3.633337873,220.2414182,0.47587921,4.288627025,0.513947229,-0.513947229,0.442263537,0.132650612,3.535042176,113.699108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3308879,2.632340921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561126023,109.2919074,114.8920139,111.9242483,878.838711,0,0.991533043,7.46119203,-0.991533043,172.538808,0.999573037,0,993.3554934,111.9242483,1066.607675,6,14,7% +6/25/2018 23:00,38.59172102,260.3087508,782.7905775,857.5590239,112.513344,924.8752574,809.8535998,115.0216576,109.1206516,5.901006026,193.1893308,0,193.1893308,3.392692453,189.7966384,0.673552596,4.543244774,0.785170566,-0.785170566,0.395881615,0.143733646,2.848496766,91.61744764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8909209,2.457994133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06372621,88.06617551,106.9546471,90.52416965,809.8535998,0,0.944370681,19.20099109,-0.944370681,160.7990089,0.997054688,0,914.4229757,90.52416965,973.6692343,6,15,6% +6/25/2018 0:00,50.37840553,270.509579,615.0938007,806.3013668,100.9038514,784.6332634,682.1351985,102.4980648,97.86122796,4.636836887,152.1792367,0,152.1792367,3.042623414,149.1366133,0.879269048,4.721282812,1.131302976,-1.131302976,0.336689487,0.164046282,2.065725256,66.44082512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.06793464,2.204370306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496610916,63.8654483,95.56454556,66.06981861,682.1351985,0,0.846005261,32.2201982,-0.846005261,147.7798018,0.990898713,0,771.4914357,66.06981861,814.7328105,6,16,6% +6/25/2018 1:00,62.15685237,279.0815504,418.1954123,713.8117602,84.80773247,587.3434643,501.9404642,85.40300009,82.25046643,3.152533664,103.9535854,0,103.9535854,2.557266041,101.3963194,1.084841727,4.870891937,1.654532094,-1.654532094,0.247212038,0.202794507,1.260614044,40.54568099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.06227688,1.852730542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913310584,38.9740508,79.97558746,40.82678134,501.9404642,0,0.703183237,45.31704322,-0.703183237,134.6829568,0.978894778,0,571.3224869,40.82678134,598.0427987,6,17,5% +6/25/2018 2:00,73.65540485,287.2215749,210.3089069,530.873202,60.91393019,339.7888198,279.126272,60.66254782,59.07715044,1.585397375,52.8286091,0,52.8286091,1.836779744,50.99182935,1.285529326,5.012962165,2.715294089,-2.715294089,0.065811053,0.289640278,0.533311504,17.15313122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78720411,1.330740672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386382369,16.48824218,57.17358648,17.81898285,279.126272,0,0.525787082,58.27875562,-0.525787082,121.7212444,0.954904472,0,323.712512,17.81898285,335.3746799,6,18,4% +6/25/2018 3:00,84.57591528,295.6301056,31.71253298,142.954434,18.1995082,64.62527075,46.7354824,17.88978835,17.65072588,0.239062469,8.237853097,0,8.237853097,0.548782321,7.689070776,1.47612819,5.159718711,7.364648571,-7.364648571,0,0.573890084,0.13719558,4.41268147,0.421723107,1,0.134958423,0,0.947173128,0.985935091,0.724496596,1,17.11393686,0.397590924,0.060119591,0.312029739,0.84370037,0.568196966,0.961238037,0.922476074,0.093894339,4.241637273,17.2078312,4.639228197,27.02604956,0,0.326925728,70.91771447,-0.326925728,109.0822855,0.897060064,0,41.45182094,4.639228197,44.48810301,6,19,7% +6/25/2018 4:00,94.96048805,304.8481783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657373176,5.320604429,-6.633479732,6.633479732,0.335454466,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11492482,83.40071119,-0.11492482,96.59928881,0.614932971,0,0,0,0,6,20,0% +6/25/2018 5:00,104.0236088,315.3611427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815554473,5.504090273,-1.669153559,1.669153559,0.815595759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089370293,95.12738155,0.089370293,84.87261845,0,0.490529975,0,0,0,6,21,0% +6/25/2018 6:00,111.4135729,327.5626858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944533678,5.717047373,-0.549179916,0.549179916,0.624068986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274502821,105.9323877,0.274502821,74.06761227,0,0.867852509,0,0,0,6,22,0% +6/25/2018 7:00,116.5150219,341.5638265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033570761,5.961413378,0.05470042,-0.05470042,0.520799367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.42786141,115.3319162,0.42786141,64.66808381,0,0.93313973,0,0,0,6,23,0% +6/26/2018 8:00,118.7367911,356.9053957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072347948,6.229174273,0.530334262,-0.530334262,0.43946119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538999139,122.6155319,0.538999139,57.38446814,0,0.957235473,0,0,0,6,0,0% +6/26/2018 9:00,117.7632886,12.50126987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055357123,0.21818832,1.020699537,-1.020699537,0.355603789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60034498,126.894609,0.60034498,53.10539098,0,0.966714553,0,0,0,6,1,0% +6/26/2018 10:00,113.7377633,27.12616905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985098453,0.473440963,1.666502198,-1.666502198,0.245165029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607719442,127.4247858,0.607719442,52.57521419,0,0.967725193,0,0,0,6,2,0% +6/26/2018 11:00,107.1749616,40.05160102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870555956,0.699032308,2.803465992,-2.803465992,0.050732769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56061931,124.0986379,0.56061931,55.90136205,0,0.960812919,0,0,0,6,3,0% +6/26/2018 12:00,98.7048433,51.1954328,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722724503,0.893528864,6.182717273,-6.182717273,0,#DIV/0!,0,0,0.345186863,1,0.16035252,0,0.944053788,0.982815751,0.724496596,1,0,0,0.050749025,0.312029739,0.866186135,0.59068273,0.961238037,0.922476074,0,0,0,0,0,0,-0.462252114,117.5325281,0.462252114,62.46747193,0,0.941833918,0,0,0,6,4,0% +6/26/2018 13:00,88.5337806,60.87157501,1.552561769,8.665409857,1.330835048,1.302409327,0,1.302409327,1.290705461,0.011703866,3.133462664,2.716896501,0.416566163,0.040129587,0.376436576,1.545205971,1.062409405,-38.57389426,38.57389426,0,0.857186538,0.010032397,0.322676365,1,0.836779413,0,0.025918463,0.961238037,1,0.653626043,0.929129447,1.240675184,0.028034283,0.115824807,0.231576666,0.724496596,0.448993192,0.973299311,0.934537348,0.007268437,0.312019191,1.247943621,0.340053475,0,0.443453443,-0.313533525,108.2723067,0.313533525,71.72769326,0,0.890527421,1.247943621,0.734960925,1.728960847,6,5,39% +6/26/2018 14:00,78.06177352,69.54174376,131.7311265,408.2935847,47.27274896,46.84034603,0,46.84034603,45.84730116,0.993044875,90.62018408,57.25499953,33.36518454,1.425447799,31.93973675,1.362434968,1.213732396,-4.729547458,4.729547458,0.661046061,0.358857851,0.777238689,24.99866799,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.07016976,1.032732078,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.563106785,24.02967054,44.63327654,25.06240262,0,57.25499953,-0.140229976,98.06115417,0.140229976,81.93884583,0,0.693442854,44.63327654,64.76547289,87.02098324,6,6,95% +6/26/2018 15:00,66.74625712,77.72098373,335.9670225,656.5821454,76.74584649,116.1011337,39.13679634,76.96433739,74.43167606,2.532661329,83.77326473,0,83.77326473,2.314170434,81.4590943,1.16494195,1.356487064,-2.306046132,2.306046132,0.924510804,0.228432677,2.385146477,76.7145096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54655817,1.676608602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728030504,73.74090461,73.27458868,75.41751321,39.13679634,0,0.059606854,86.58275321,-0.059606854,93.41724679,0,0,73.27458868,75.41751321,122.6338427,6,7,67% +6/26/2018 16:00,55.04937663,86.02479832,539.8196726,775.9777164,95.28509267,305.1259539,208.6446696,96.48128427,92.41189556,4.069388713,133.7587265,0,133.7587265,2.873197109,130.8855294,0.960792873,1.501415969,-1.375174272,1.375174272,0.76532234,0.17651282,3.282962887,105.5913716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.82982907,2.081621524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378495436,101.4984427,91.20832451,103.5800642,208.6446696,0,0.268879718,74.40238557,-0.268879718,105.5976144,0.864043244,0,271.4863418,103.5800642,339.2774222,6,8,25% +6/26/2018 17:00,43.22911089,95.38857381,720.793416,840.3399407,108.5043166,508.1874411,397.5212848,110.6661563,105.2325111,5.433645234,178.0365142,0,178.0365142,3.271805484,174.7647088,0.754490318,1.664844682,-0.849232811,0.849232811,0.675381053,0.150534556,3.935303555,126.5728898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1534924,2.370411935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851114029,121.6666761,104.0046064,124.0370881,397.5212848,0,0.473048186,61.76765647,-0.473048186,118.2323435,0.944302523,0,479.3849584,124.0370881,560.5647518,6,9,17% +6/26/2018 18:00,31.63930374,107.7333456,864.2686957,876.6902576,117.8832869,697.8211361,576.9772427,120.8438933,114.3286708,6.515222497,213.1065675,0,213.1065675,3.554616042,209.5519514,0.552210023,1.880301596,-0.487293095,0.487293095,0.613485717,0.136396571,4.340473411,139.6045452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8970671,2.575307222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.144658211,134.1931989,113.0417253,136.7685062,576.9772427,0,0.658131236,48.84249452,-0.658131236,131.1575055,0.974027311,0,675.0333173,136.7685062,764.5455692,6,10,13% +6/26/2018 19:00,21.13750887,128.2087325,959.6150405,896.1396184,123.769791,854.4815873,727.2099287,127.2716586,120.0376751,7.233983519,236.4018925,0,236.4018925,3.73211586,232.6697766,0.368919125,2.237664512,-0.203681674,0.203681674,0.564985307,0.128978586,4.49297571,144.5095433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3847792,2.703905236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255145607,138.9080697,118.6399248,141.611975,727.2099287,0,0.811491774,35.75806113,-0.811491774,144.2419389,0.988385081,0,837.403369,141.611975,930.0855744,6,11,11% +6/26/2018 20:00,14.73432161,169.1794632,999.9772401,903.4901978,126.1978007,963.5525857,833.6218635,129.9307222,122.3924714,7.538250828,246.2613885,0,246.2613885,3.805329312,242.4560592,0.257162425,2.952738659,0.041953372,-0.041953372,0.522979241,0.126200673,4.396153963,141.3954231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.648299,2.756948133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184998581,135.9146589,120.8332975,138.6716071,833.6218635,0,0.922668409,22.68064352,-0.922668409,157.3193565,0.995809351,0,950.9617443,138.6716071,1041.719538,6,12,10% +6/26/2018 21:00,17.7846479,218.7339879,982.4857203,900.3631813,125.1497538,1014.812331,886.0299115,128.7824193,121.3760269,7.406392363,241.9887645,0,241.9887645,3.77372683,238.2150377,0.310400662,3.817628275,0.274182997,-0.274182997,0.483265636,0.127380736,4.066758496,130.8009326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6712539,2.734052242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946352687,125.7308317,119.6176065,128.4648839,886.0299115,0,0.984080569,10.23715399,-0.984080569,169.762846,0.999191152,0,1004.930855,128.4648839,1089.008552,6,13,8% +6/26/2018 22:00,27.24968075,245.5965752,908.378043,886.0803985,120.6351194,1002.432429,878.5871659,123.8452628,116.9975254,6.847737389,223.8843673,0,223.8843673,3.637593945,220.2467734,0.475596649,4.286468869,0.513506519,-0.513506519,0.442338903,0.132802769,3.536156802,113.7349582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4624716,2.63542443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561933565,109.3263679,115.0244052,111.9617924,878.5871659,0,0.991543394,7.456623296,-0.991543394,172.5433767,0.999573564,0,993.2369095,111.9617924,1066.513663,6,14,7% +6/26/2018 23:00,38.56952608,260.2210106,782.9459345,857.3081296,112.6577003,924.9366341,809.773802,115.1628321,109.2606549,5.902177172,193.2313518,0,193.2313518,3.397045325,189.8343064,0.673165221,4.541713418,0.78476451,-0.78476451,0.395951055,0.143889502,2.849968687,91.66478968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.0254974,2.461147774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064792612,88.11168248,107.0902901,90.57283026,809.773802,0,0.944553975,19.16903324,-0.944553975,160.8309668,0.997064963,0,914.4873757,90.57283026,973.7654816,6,15,6% +6/26/2018 0:00,50.35509129,270.4389344,615.3355702,806.061491,101.0459902,784.8319045,682.1941643,102.6377402,97.99908077,4.638659447,152.2421425,0,152.2421425,3.046909424,149.1952331,0.878862138,4.720049831,1.130886788,-1.130886788,0.336760659,0.164212822,2.067325562,66.49229646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20044401,2.207475506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497770332,63.91492451,95.69821435,66.12240002,682.1941643,0,0.846330177,32.18526536,-0.846330177,147.8147346,0.990921402,0,771.6990123,66.12240002,814.9748006,6,16,6% +6/26/2018 1:00,62.13484716,279.0192258,418.4704592,713.597998,84.94030418,587.6271906,502.0935429,85.53364769,82.37904061,3.154607084,104.0242713,0,104.0242713,2.561263567,101.4630077,1.084457663,4.869804167,1.653993596,-1.653993596,0.247304126,0.202978017,1.262110478,40.59381145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.18586727,1.855626736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914394745,39.02031563,80.10026202,40.87594237,502.0935429,0,0.703608396,45.28277215,-0.703608396,134.7172279,0.978937744,0,571.6185822,40.87594237,598.3710689,6,17,5% +6/26/2018 2:00,73.63642992,287.1628331,210.5592095,530.7635849,61.02641679,340.0951252,279.3215957,60.77352942,59.18624516,1.587284262,52.89268974,0,52.89268974,1.84017163,51.05251811,1.285198152,5.011936928,2.714078511,-2.714078511,0.066018929,0.289830195,0.534462174,17.19014073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.89207011,1.333198082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387216026,16.52381713,57.27928613,17.85701521,279.3215957,0,0.526263677,58.24664762,-0.526263677,121.7533524,0.954990593,0,324.0287824,17.85701521,335.7158417,6,18,4% +6/26/2018 3:00,84.56176661,295.5719819,31.84381164,143.1939601,18.27294354,64.84340483,46.88140586,17.96199898,17.72194687,0.240052103,8.271897475,0,8.271897475,0.550996668,7.720900807,1.475881249,5.158704261,7.35298629,-7.35298629,0,0.573830286,0.137749167,4.430486718,0.421055412,1,0.135169879,0,0.947147758,0.985909721,0.724496596,1,17.18300096,0.39919521,0.060040318,0.312029739,0.843887672,0.568384268,0.961238037,0.922476074,0.094273666,4.258752356,17.27727463,4.657947566,27.1417362,0,0.327397928,70.88908379,-0.327397928,109.1109162,0.897280646,0,41.63102923,4.657947566,44.67956275,6,19,7% +6/26/2018 4:00,94.95230614,304.7887079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657230375,5.319566475,-6.654284641,6.654284641,0.331896617,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115350007,83.37618667,-0.115350007,96.62381333,0.616536654,0,0,0,0,6,20,0% +6/26/2018 5:00,104.0236951,315.2993388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815555979,5.503011592,-1.673067432,1.673067432,0.816265071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089046452,95.10875258,0.089046452,84.89124742,0,0.488495317,0,0,0,6,21,0% +6/26/2018 6:00,111.4240291,327.4990958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944716173,5.715937519,-0.551646991,0.551646991,0.624490881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274322347,105.9216346,0.274322347,74.07836542,0,0.867732677,0,0,0,6,22,0% +6/26/2018 7:00,116.5375342,341.5013432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033963674,5.96032284,0.052463744,-0.052463744,0.521181861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427856552,115.3316083,0.427856552,64.66839173,0,0.933138403,0,0,0,6,23,0% +6/27/2018 8:00,118.7716935,356.8491358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072957109,6.228192353,0.527857614,-0.527857614,0.439884721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539190137,122.628525,0.539190137,57.37147504,0,0.957268333,0,0,0,6,0,0% +6/27/2018 9:00,117.8089417,12.45626204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056153921,0.217402785,1.017473053,-1.017473053,0.35615555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600738658,126.9228184,0.600738658,53.07718156,0,0.966769132,0,0,0,6,1,0% +6/27/2018 10:00,113.7911348,27.09449826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986029961,0.472888204,1.66144507,-1.66144507,0.246029849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608308731,127.4673134,0.608308731,52.53268662,0,0.967804895,0,0,0,6,2,0% +6/27/2018 11:00,107.2329503,40.03215362,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87156805,0.698692887,2.792895156,-2.792895156,0.052540489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561383733,124.1515462,0.561383733,55.84845381,0,0.960934363,0,0,0,6,3,0% +6/27/2018 12:00,98.76513239,51.18571117,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723776746,0.89335919,6.139172134,-6.139172134,0,#DIV/0!,0,0,0.341978238,1,0.161470301,0,0.943913133,0.982675096,0.724496596,1,0,0,0.050343289,0.312029739,0.867175478,0.591672074,0.961238037,0.922476074,0,0,0,0,0,0,-0.463159202,117.5911537,0.463159202,62.40884635,0,0.942045759,0,0,0,6,4,0% +6/27/2018 13:00,88.58918975,60.86920754,1.41569588,7.918585091,1.220734013,1.194596492,0,1.194596492,1.183924378,0.010672114,2.870044307,2.489982816,0.380061491,0.036809635,0.343251857,1.546173043,1.062368085,-40.0892551,40.0892551,0,0.862285488,0.009202409,0.295981095,1,0.843403042,0,0.024939168,0.961238037,1,0.656208085,0.931711489,1.138033145,0.025742858,0.115824807,0.234503489,0.724496596,0.448993192,0.972884524,0.934122561,0.006667114,0.286158819,1.144700259,0.311901677,0,0.389923735,-0.314447946,108.32749,0.314447946,71.67250998,0,0.89099117,1.144700259,0.659320282,1.576212197,6,5,38% +6/27/2018 14:00,78.1226827,69.54501477,130.5980241,405.725344,47.09293641,46.6574137,0,46.6574137,45.67291063,0.984503071,90.40696282,57.32193408,33.08502875,1.420025787,31.66500296,1.363498034,1.213789486,-4.75451828,4.75451828,0.656775799,0.360594555,0.768444595,24.71581967,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.90253895,1.028803849,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556735493,23.75778598,44.45927444,24.78658983,0,57.32193408,-0.141282606,98.12207194,0.141282606,81.87792806,0,0.696099394,44.45927444,64.68835341,86.79650798,6,6,95% +6/27/2018 15:00,66.80725516,77.7287932,334.7556335,655.2220244,76.71247928,115.2867382,38.36389385,76.92284435,74.39931499,2.523529366,83.47854329,0,83.47854329,2.313164289,81.165379,1.166006567,1.356623365,-2.312788416,2.312788416,0.925663802,0.229159636,2.378927748,76.51449389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51545148,1.675879653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723525055,73.5486419,73.23897654,75.22452155,38.36389385,0,0.058550983,86.64335602,-0.058550983,93.35664398,0,0,73.23897654,75.22452155,122.4719214,6,7,67% +6/27/2018 16:00,55.11028347,86.03634053,538.6925846,775.1386378,95.31432011,304.1423472,207.6412133,96.50113393,92.44024168,4.060892247,133.4863323,0,133.4863323,2.874078424,130.6122539,0.961855898,1.501617419,-1.378212524,1.378212524,0.765841912,0.176936388,3.27824866,105.4397458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.85707644,2.082260034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375079995,101.3526943,91.23215644,103.4349543,207.6412133,0,0.267876226,74.46207105,-0.267876226,105.537929,0.863346632,0,270.4984985,103.4349543,338.1946074,6,8,25% +6/27/2018 17:00,43.29019458,95.40245575,719.8158512,839.7522531,108.5684864,507.2067775,396.4857555,110.7210219,105.294746,5.426275938,177.8014273,0,177.8014273,3.273740441,174.5276869,0.755556429,1.665086967,-0.850950966,0.850950966,0.675674875,0.150828141,3.931837387,126.461406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2133149,2.371813805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.848602803,121.5595136,104.0619177,123.9313274,396.4857555,0,0.472146105,61.82630473,-0.472146105,118.1736953,0.944100577,0,478.3843484,123.9313274,559.4949236,6,9,17% +6/27/2018 18:00,31.70104291,107.7439927,863.4775329,876.2398837,117.9712864,696.9388272,576.0155519,120.9232753,114.4140169,6.509258377,212.9173944,0,212.9173944,3.557269554,209.3601248,0.553287575,1.880487422,-0.488399359,0.488399359,0.613674899,0.136623458,4.338134107,139.5293051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.979105,2.577229682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142963393,134.1208753,113.1220684,136.698105,576.0155519,0,0.657371985,48.90024791,-0.657371985,131.0997521,0.973939564,0,674.1264037,136.698105,763.5925795,6,10,13% +6/27/2018 19:00,21.19919408,128.1875096,959.0285306,895.7703713,123.8759367,853.7562993,726.3861171,127.3701823,120.1406201,7.229562159,236.262887,0,236.262887,3.735316545,232.5275705,0.369995735,2.237294102,-0.204456012,0.204456012,0.565117727,0.129168145,4.491659471,144.4672086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4837338,2.706224121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254191996,138.8673759,118.7379258,141.5736001,726.3861171,0,0.810906612,35.81539532,-0.810906612,144.1846047,0.988340619,0,836.6548302,141.5736001,929.3119199,6,11,11% +6/27/2018 20:00,14.78205085,169.0221259,999.5970342,903.170713,126.3182326,963.0176334,832.9729769,130.0446565,122.5092718,7.535384675,246.1728347,0,246.1728347,3.808960777,242.3638739,0.257995458,2.949992605,0.041379989,-0.041379989,0.523077295,0.126369155,4.395733601,141.3819028,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7605719,2.759579117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18469403,135.9016627,120.945266,138.6612418,832.9729769,0,0.922276337,22.73883113,-0.922276337,157.2611689,0.995786314,0,950.4083561,138.6612418,1041.159366,6,12,10% +6/27/2018 21:00,17.79374424,218.5316227,982.2979492,900.0739981,125.2810033,1014.479431,885.5711352,128.9082957,121.5033188,7.404976865,241.9471949,0,241.9471949,3.777684488,238.1695104,0.310559423,3.814096335,0.273742632,-0.273742632,0.483340942,0.1275387,4.067072224,130.8110232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7936117,2.736919552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946579981,125.7405311,119.7401916,128.4774507,885.5711352,0,0.983887033,10.2993608,-0.983887033,169.7006392,0.999181158,0,1004.586184,128.4774507,1088.672106,6,13,8% +6/27/2018 22:00,27.23832016,245.4619734,908.3548549,885.8083224,120.7734087,1002.29351,878.3143026,123.9792074,117.1316448,6.847562587,223.882915,0,223.882915,3.641763878,220.2411511,0.47539837,4.284119624,0.513162144,-0.513162144,0.442397795,0.132958401,3.537010479,113.7624154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5913923,2.638445533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562552052,109.3527609,115.1539444,111.9912064,878.3143026,0,0.991539908,7.458162216,-0.991539908,172.5418378,0.999573386,0,993.093546,111.9912064,1066.389551,6,14,7% +6/27/2018 23:00,38.55153459,260.1244494,783.0477338,857.0436989,112.7984912,924.9653589,809.6652138,115.3001451,109.3972005,5.902944578,193.2602796,0,193.2602796,3.401290692,189.8589889,0.67285121,4.540028106,0.784496307,-0.784496307,0.39599692,0.144050594,2.851145385,91.70263633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1567503,2.464223528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065645126,88.14806212,107.2223954,90.61228565,809.6652138,0,0.944718706,19.14026826,-0.944718706,160.8597317,0.997074193,0,914.518685,90.61228565,973.8226137,6,15,6% +6/27/2018 0:00,50.3358251,270.3610439,615.5140601,805.7988767,101.183424,784.9854283,682.2130529,102.7723754,98.13237044,4.640004979,152.2895636,0,152.2895636,3.051053561,149.23851,0.87852588,4.718690386,1.130684576,-1.130684576,0.336795239,0.164388485,2.068599899,66.5332835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.32856711,2.210477919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498693585,63.95432282,95.8272607,66.16480074,682.2130529,0,0.846629442,32.15306038,-0.846629442,147.8469396,0.990942285,0,771.8610224,66.16480074,815.1645612,6,16,6% +6/27/2018 1:00,62.11698552,278.9507021,418.6723409,713.3402548,85.06607426,587.8479473,502.1908001,85.65714722,82.50101826,3.156128953,104.0770123,0,104.0770123,2.565055999,101.5119563,1.084145919,4.868608202,1.653841794,-1.653841794,0.247330086,0.203180545,1.263265765,40.63096944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.30311683,1.85837434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915231746,39.0560333,80.21834858,40.91440764,502.1908001,0,0.703998964,45.25127153,-0.703998964,134.7487285,0.978977168,0,571.8516759,40.91440764,598.6293374,6,17,5% +6/27/2018 2:00,73.6218473,287.098617,210.7298406,530.5523664,61.12699595,340.3119569,279.4395948,60.87236204,59.28379149,1.588570551,52.93709406,0,52.93709406,1.843204462,51.09388959,1.284943637,5.010816145,2.71382727,-2.71382727,0.066061894,0.290072805,0.5353037,17.21720709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.98583534,1.335395359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387825709,16.54983434,57.37366105,17.8852297,279.4395948,0,0.526695596,58.21753977,-0.526695596,121.7824602,0.955068506,0,324.2576173,17.8852297,335.9631424,6,18,4% +6/27/2018 3:00,84.5522952,295.5089441,31.91891487,143.219883,18.32202143,64.95995786,46.94979472,18.01016315,17.76954488,0.240618263,8.291587002,0,8.291587002,0.552476547,7.739110455,1.475715941,5.157604044,7.348359323,-7.348359323,0,0.574017679,0.138119137,4.442386221,0.420790079,1,0.135253957,0,0.947137668,0.985899631,0.724496596,1,17.22915492,0.400267378,0.060008804,0.312029739,0.843962144,0.56845874,0.961238037,0.922476074,0.094527058,4.27019061,17.32368198,4.670457987,27.19378688,0,0.327816178,70.86372011,-0.327816178,109.1362799,0.897475496,0,41.72943935,4.670457987,44.78616069,6,19,7% +6/27/2018 4:00,94.94937977,304.7248547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6571793,5.318452028,-6.668749062,6.668749062,0.329423055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115708831,83.35548898,-0.115708831,96.64451102,0.617880865,0,0,0,0,6,20,0% +6/27/2018 5:00,104.0295653,315.2338027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815658434,5.50186777,-1.676496252,1.676496252,0.816851434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088798684,95.09450003,0.088798684,84.90549997,0,0.486928592,0,0,0,6,21,0% +6/27/2018 6:00,111.4407883,327.4327143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945008677,5.714778943,-0.554052642,0.554052642,0.624902272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274226073,105.9158985,0.274226073,74.08410149,0,0.867668687,0,0,0,6,22,0% +6/27/2018 7:00,116.5667395,341.4374353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034473403,5.959207436,0.050166999,-0.050166999,0.521574628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427941881,115.3370175,0.427941881,64.66298251,0,0.933161704,0,0,0,6,23,0% +6/28/2018 8:00,118.813401,356.7931912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073685043,6.227215936,0.525248908,-0.525248908,0.440330836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539474757,122.6478904,0.539474757,57.35210956,0,0.957317257,0,0,0,6,0,0% +6/28/2018 9:00,117.8611497,12.41334998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057065123,0.216653828,1.014034316,-1.014034316,0.356743609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601226605,126.9577974,0.601226605,53.04220261,0,0.966836681,0,0,0,6,1,0% +6/28/2018 10:00,113.8505105,27.06635788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987066263,0.472397062,1.656035054,-1.656035054,0.246955016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608990105,127.5165167,0.608990105,52.48348325,0,0.96789686,0,0,0,6,2,0% +6/28/2018 11:00,107.29625,40.01719578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872672838,0.698431824,2.78161032,-2.78161032,0.054470309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562235375,124.2105302,0.562235375,55.78946977,0,0.961069274,0,0,0,6,3,0% +6/28/2018 12:00,98.83003877,51.18108395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724909576,0.89327843,6.093163162,-6.093163162,0,#DIV/0!,0,0,0.338553723,1,0.162668233,0,0.943762081,0.982524044,0.724496596,1,0,0,0.04990907,0.312029739,0.868235717,0.592732313,0.961238037,0.922476074,0,0,0,0,0,0,-0.464146294,117.6549856,0.464146294,62.34501437,0,0.942275344,0,0,0,6,4,0% +6/28/2018 13:00,88.6480633,60.87237816,1.279351471,7.177956285,1.109997948,1.086171707,0,1.086171707,1.076527415,0.009644292,2.60776811,2.264104,0.343664109,0.033470534,0.310193576,1.54720058,1.062423422,-41.83610783,41.83610783,0,0.867625491,0.008367633,0.269131854,1,0.850401287,0,0.023898246,0.961238037,1,0.658960877,0.934464281,1.034799099,0.023435259,0.115824807,0.237624295,0.724496596,0.448993192,0.972440215,0.933678252,0.006062322,0.260154012,1.040861421,0.283589271,0,0.338707044,-0.315424601,108.3864485,0.315424601,71.61355151,0,0.891483512,1.040861421,0.585541016,1.424086305,6,5,37% +6/28/2018 14:00,78.18707119,69.55427467,129.4066022,403.033569,46.89880795,46.46015748,0,46.46015748,45.48463585,0.975521629,90.18045015,57.39014913,32.79030102,1.414172098,31.37612892,1.364621825,1.213951102,-4.781195228,4.781195228,0.652213772,0.362414337,0.759206036,24.41867588,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.72156207,1.024562871,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.550042189,23.47216006,44.27160426,24.49672293,0,57.39014913,-0.142395457,98.1864848,0.142395457,81.8135152,0,0.698865201,44.27160426,64.60470107,86.55408901,6,6,96% +6/28/2018 15:00,66.87138594,77.74319224,333.4874905,653.8125915,76.67223519,114.4327803,37.55852631,76.87425398,74.36028441,2.513969569,83.16985383,0,83.16985383,2.311950781,80.85790305,1.16712586,1.356874676,-2.31987905,2.31987905,0.926876372,0.229910379,2.372403551,76.30465328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4779338,1.675000471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.718798297,73.34693512,73.1967321,75.02193559,37.55852631,0,0.057445401,86.70680805,-0.057445401,93.29319195,0,0,73.1967321,75.02193559,122.2970885,6,7,67% +6/28/2018 16:00,55.1741213,86.05537956,537.5163857,774.2762903,95.33927764,303.1193722,206.6029,96.51647222,92.46444665,4.052025563,133.2019019,0,133.2019019,2.874830985,130.3270709,0.962970079,1.501949712,-1.381358602,1.381358602,0.766379923,0.177369993,3.273295599,105.2804383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88034318,2.082805263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371491519,101.1995619,91.2518347,103.2823671,206.6029,0,0.266833561,74.52406818,-0.266833561,105.4759318,0.862617274,0,269.4710652,103.2823671,337.0673088,6,8,25% +6/28/2018 17:00,43.35422971,95.42527727,718.79617,839.1514838,108.6295624,506.1928992,395.4203298,110.7725695,105.3539803,5.41858915,177.5560355,0,177.5560355,3.275582107,174.2804533,0.756674053,1.665485278,-0.852697066,0.852697066,0.675973476,0.151127075,3.928166414,126.3433349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2702532,2.373148086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845943195,121.4460192,104.1161964,123.8191673,395.4203298,0,0.47121448,61.88684005,-0.47121448,118.11316,0.943891206,0,477.3499685,123.8191673,558.3871371,6,9,17% +6/28/2018 18:00,31.76614173,107.7658955,862.6491256,875.7808565,118.0567882,696.0299751,575.0300211,120.999954,114.4969405,6.503013494,212.7191157,0,212.7191157,3.559847749,209.1592679,0.554423764,1.880869698,-0.489496479,0.489496479,0.613862518,0.136853774,4.335603897,139.4479249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0588143,2.579097576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141130265,134.0426496,113.1999446,136.6217471,575.0300211,0,0.65659122,48.95958491,-0.65659122,131.0404151,0.973849119,0,673.1924239,136.6217471,762.608625,6,10,13% +6/28/2018 19:00,21.26543913,128.1804232,958.4069359,895.3943377,123.9798451,853.0095031,725.5432315,127.4662716,120.2413953,7.224876316,236.1153074,0,236.1153074,3.738449766,232.3768577,0.37115193,2.237170422,-0.205198392,0.205198392,0.565244681,0.129360338,4.490150641,144.4186794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5806028,2.70849413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253098854,138.8207279,118.8337016,141.529222,725.5432315,0,0.810305807,35.87417963,-0.810305807,144.1258204,0.988294901,0,835.8843778,141.529222,928.512423,6,11,11% +6/28/2018 20:00,14.83647424,168.8727712,999.1809615,902.8448544,126.4364335,962.4634847,832.3073281,130.1561567,122.6239085,7.532248143,246.0755172,0,246.0755172,3.812524971,242.2629922,0.258945325,2.947385874,0.040857254,-0.040857254,0.523166688,0.126540075,4.39510604,141.3617183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8707651,2.762161363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184239365,135.8822606,121.0550045,138.644422,832.3073281,0,0.92187193,22.79870211,-0.92187193,157.2012979,0.995762531,0,949.8354562,138.644422,1040.575458,6,12,10% +6/28/2018 21:00,17.80915589,218.3194884,982.0706191,899.7776865,125.409802,1014.126321,885.0948244,129.031497,121.6282338,7.403263155,241.8959599,0,241.8959599,3.781568245,238.1143916,0.310828407,3.810393894,0.273372946,-0.273372946,0.483404163,0.127699373,4.067153829,130.8136479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9136847,2.73973332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946639104,125.7430541,119.8603238,128.4827874,885.0948244,0,0.983681678,10.36496251,-0.983681678,169.6350375,0.999170549,0,1004.221005,128.4827874,1088.31042,6,13,8% +6/28/2018 22:00,27.23186008,245.3166015,908.2857766,885.5269628,120.9087978,1002.12972,878.0197267,124.1099933,117.2629514,6.847041846,223.8702487,0,223.8702487,3.645846359,220.2244023,0.47528562,4.281582406,0.512915009,-0.512915009,0.442440057,0.133117573,3.537600057,113.7813783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7176092,2.641403276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562979199,109.3709887,115.2805884,112.0123919,878.0197267,0,0.991522295,7.465932649,-0.991522295,172.5340674,0.99957249,0,992.9249534,112.0123919,1066.234824,6,14,7% +6/28/2018 23:00,38.53781474,260.0191676,783.0951751,856.7655017,112.935657,924.9606998,809.5271674,115.4335324,109.5302302,5.903302211,193.2759183,0,193.2759183,3.405426745,189.8704916,0.672611754,4.538190593,0.78436691,-0.78436691,0.396019048,0.144217026,2.852023344,91.73087451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2846235,2.467220084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066281204,88.17520573,107.3509047,90.64242581,809.5271674,0,0.944864337,19.11480364,-0.944864337,160.8851964,0.99708235,0,914.5161554,90.64242581,973.8398102,6,15,6% +6/28/2018 0:00,50.32066919,270.275982,615.6283557,805.513172,101.3160744,785.0928608,682.1909733,102.9018875,98.26102094,4.640866588,152.3212758,0,152.3212758,3.05505346,149.2662223,0.878261359,4.717205775,1.13069746,-1.13069746,0.336793036,0.164573437,2.06954473,66.56367254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.45223087,2.213375832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499378112,63.98353392,95.95160898,66.19690975,682.1909733,0,0.846902319,32.1236699,-0.846902319,147.8763301,0.990961314,0,771.9764723,66.19690975,815.3010258,6,16,6% +6/28/2018 1:00,62.10332328,278.8760434,418.8001132,713.0379745,85.18493739,588.0045817,502.2311923,85.77338939,82.61629723,3.157092156,104.1115763,0,104.1115763,2.568640161,101.5429362,1.083907468,4.867305162,1.654078254,-1.654078254,0.247289649,0.203402374,1.26407672,40.65705255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41392736,1.860971053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915819281,39.08110538,80.32974664,40.94207643,502.2311923,0,0.70435406,45.22261686,-0.70435406,134.7773831,0.979012974,0,572.0205998,40.94207643,598.81637,6,17,5% +6/28/2018 2:00,73.61170584,287.0289867,210.8199333,530.2386476,61.21550735,340.4380701,279.4791864,60.95888365,59.36963395,1.589249708,52.96160703,0,52.96160703,1.845873408,51.11573362,1.284766635,5.009600867,2.714543304,-2.714543304,0.065939445,0.290368688,0.535833628,17.2342514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.06835038,1.337329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38820964,16.56621798,57.45656002,17.90354698,279.4791864,0,0.527081886,58.19149917,-0.527081886,121.8085008,0.955138079,0,324.3977734,17.90354698,336.1152868,6,18,4% +6/28/2018 3:00,84.54754208,295.4410518,31.93725004,143.0311069,18.34646661,64.97388989,46.93988046,18.03400943,17.79325295,0.240756481,8.29676969,0,8.29676969,0.55321366,7.74355603,1.475632984,5.1564191,7.350765238,-7.350765238,0,0.574453548,0.138303415,4.448313238,0.420928076,1,0.135210225,0,0.947142916,0.985904879,0.724496596,1,17.25214021,0.400801413,0.060025195,0.312029739,0.843923409,0.568420005,0.961238037,0.922476074,0.094653076,4.275887884,17.34679329,4.676689297,27.18156687,0,0.328179523,70.84168286,-0.328179523,109.1583171,0.897644364,0,41.74617359,4.676689297,44.8069732,6,19,7% +6/28/2018 4:00,94.95174104,304.6566795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657220512,5.317262146,-6.676760396,6.676760396,0.328053037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116000407,83.33866963,-0.116000407,96.66133037,0.618967031,0,0,0,0,6,20,0% +6/28/2018 5:00,104.0412412,315.1645968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815862216,5.5006599,-1.67942908,1.67942908,0.817352977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088627731,95.0846664,0.088627731,84.9153336,0,0.485842493,0,0,0,6,21,0% +6/28/2018 6:00,111.4638605,327.3636058,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945411362,5.713572773,-0.556391392,0.556391392,0.625302221,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274214543,105.9152115,0.274214543,74.08478849,0,0.86766102,0,0,0,6,22,0% +6/28/2018 7:00,116.6026349,341.372169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035099896,5.958068324,0.04781472,-0.04781472,0.521976891,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428117695,115.3481635,0.428117695,64.65183645,0,0.933209686,0,0,0,6,23,0% +6/29/2018 8:00,118.8618969,356.7376291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074531456,6.226246194,0.522513085,-0.522513085,0.44079869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539853024,122.6736341,0.539853024,57.32636588,0,0.957382199,0,0,0,6,0,0% +6/29/2018 9:00,117.9198819,12.37259947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058090193,0.215942598,1.010390001,-1.010390001,0.357366823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601808564,126.9995366,0.601808564,53.00046337,0,0.966917101,0,0,0,6,1,0% +6/29/2018 10:00,113.915847,27.04180776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9882066,0.471968581,1.650283558,-1.650283558,0.24793858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609763033,127.5723707,0.609763033,52.42762933,0,0.968000933,0,0,0,6,2,0% +6/29/2018 11:00,107.3648073,40.00677761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873869389,0.698249992,2.769639617,-2.769639617,0.05651742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56317346,124.275549,0.56317346,55.72445099,0,0.961217407,0,0,0,6,3,0% +6/29/2018 12:00,98.89950211,51.18159015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72612194,0.893287265,6.044857862,-6.044857862,0,#DIV/0!,0,0,0.334919721,1,0.163945059,0,0.943600726,0.982362689,0.724496596,1,0,0,0.049446948,0.312029739,0.869365729,0.593862325,0.961238037,0.922476074,0,0,0,0,0,0,-0.465212414,117.72397,0.465212414,62.27602999,0,0.942522215,0,0,0,6,4,0% +6/29/2018 13:00,88.71030747,60.88111531,1.145015984,6.45128353,0.999813848,0.978297386,0,0.978297386,0.969665772,0.008631614,2.349355926,2.041585468,0.307770458,0.030148076,0.277622382,1.548286946,1.062575914,-43.85704194,43.85704194,0,0.873187678,0.007537019,0.242416443,1,0.857755516,0,0.022797405,0.961238037,1,0.661881392,0.937384796,0.932079623,0.021135919,0.115824807,0.240935728,0.724496596,0.448993192,0.971966481,0.933204518,0.005460545,0.234284051,0.937540167,0.25541997,0,0.290404272,-0.316461904,108.4490902,0.316461904,71.55090983,0,0.892003099,0.937540167,0.514461481,1.274244917,6,5,36% +6/29/2018 14:00,78.25487269,69.5695424,128.1582977,400.2187727,46.69036948,46.24859395,0,46.24859395,45.28248257,0.966111383,89.93969278,57.45834282,32.48134996,1.407886909,31.07346305,1.365805184,1.214217574,-4.809601241,4.809601241,0.647356057,0.364317959,0.749538753,24.10774283,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52724465,1.020009273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.543038275,23.17327939,44.07028293,24.19328866,0,57.45834282,-0.143567336,98.25432556,0.143567336,81.74567444,0,0.701731365,44.07028293,64.51360999,86.29315039,6,6,96% +6/29/2018 15:00,66.93858336,77.76419094,332.1637683,652.3541312,76.6251648,113.5404797,36.7218555,76.81862415,74.31463336,2.503990792,82.84748273,0,82.84748273,2.310531435,80.53695129,1.168298676,1.357241172,-2.327315764,2.327315764,0.928148125,0.230684897,2.365578363,76.08513179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.43405228,1.67397216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.713853471,73.13592271,73.14790575,74.80989487,36.7218555,0,0.05629129,86.77304092,-0.05629129,93.22695908,0,0,73.14790575,74.80989487,122.1094857,6,7,67% +6/29/2018 16:00,55.24082512,86.08191613,536.2920595,773.390872,95.36001545,302.0581674,205.5308122,96.52735522,92.48455914,4.042796075,132.9056751,0,132.9056751,2.875456307,130.0302188,0.96413428,1.502412863,-1.384610055,1.384610055,0.766935954,0.177813588,3.268107036,105.1135563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89967607,2.083258306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367732423,101.0391485,91.26740849,103.1224068,205.5308122,0,0.265752829,74.58830919,-0.265752829,105.4116908,0.861855248,0,268.4052177,103.1224068,335.8967705,6,8,25% +6/29/2018 17:00,43.42115313,95.45702727,717.7351179,838.5377456,108.6875822,505.1467975,394.3259564,110.8208411,105.4102506,5.410590491,177.3005206,0,177.3005206,3.277331617,174.023189,0.757842087,1.66603942,-0.85446924,0.85446924,0.676276536,0.151431328,3.924292679,126.2187422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3243423,2.3744156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.843136687,121.326256,104.167479,123.7006716,394.3259564,0,0.470254271,61.94919691,-0.470254271,118.0508031,0.943674544,0,476.282846,123.7006716,557.2424615,6,9,17% +6/29/2018 18:00,31.83453874,107.7990263,861.7839423,875.3132232,118.1398141,695.0953483,574.0213941,121.0739542,114.5774628,6.496491376,212.5118455,0,212.5118455,3.562351285,208.9494942,0.555617517,1.881447939,-0.490583007,0.490583007,0.614048325,0.137087509,4.332883508,139.3604278,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1362154,2.58091138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139159352,133.958544,113.2753748,136.5394554,574.0213941,0,0.655789698,49.02044382,-0.655789698,130.9795562,0.973756045,0,672.2321775,136.5394554,761.5945202,6,10,13% +6/29/2018 19:00,21.33618113,128.1874488,957.7504266,895.0115124,124.0815211,852.241686,724.6817534,127.5599327,120.3400054,7.219927271,235.959195,0,235.959195,3.741515672,232.2176794,0.37238661,2.237293042,-0.205907637,0.205907637,0.565365969,0.129555172,4.488448689,144.3639388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6753905,2.710715368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251865796,138.7681091,118.9272563,141.4788245,724.6817534,0,0.809689868,35.93435825,-0.809689868,144.0656417,0.988247961,0,835.0925218,141.4788245,927.6875828,6,11,11% +6/29/2018 20:00,14.89754485,168.7317527,998.7288938,902.5125704,126.5523912,961.8903096,831.6250997,130.2652099,122.7363696,7.528840266,245.9694047,0,245.9694047,3.816021522,242.1533832,0.260011208,2.944924636,0.040386182,-0.040386182,0.523247246,0.126713457,4.394269625,141.3348164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.978867,2.764694602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183633385,135.8564014,121.1625004,138.621096,831.6250997,0,0.92145542,22.86020954,-0.92145542,157.1397905,0.995738015,0,949.2432265,138.621096,1039.967961,6,12,10% +6/29/2018 21:00,17.83093195,218.098049,981.8033247,899.4741461,125.5361208,1013.752842,884.6008502,129.1519917,121.7507435,7.401248177,241.8349602,0,241.8349602,3.78537722,238.049583,0.311208471,3.806529047,0.273074864,-0.273074864,0.483455138,0.127862799,4.067000744,130.8087241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0314457,2.74249291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946528194,125.7383212,119.9779739,128.4808141,884.6008502,0,0.983464454,10.4339118,-0.983464454,169.5660882,0.999159322,0,1003.835159,128.4808141,1087.923283,6,13,8% +6/29/2018 22:00,27.23037248,245.1606533,908.170167,885.236161,121.0412412,1001.940579,877.7030073,124.2375715,117.3914012,6.846170331,223.8462114,0,223.8462114,3.649840016,220.1963714,0.475259656,4.278860596,0.512766018,-0.512766018,0.442465536,0.133280354,3.537922325,113.7917435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.84108,2.644296667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563212681,109.3809521,115.4042927,112.0252488,877.7030073,0,0.991490233,7.480057424,-0.991490233,172.5199426,0.99957086,0,992.7306423,112.0252488,1066.048927,6,14,7% +6/29/2018 23:00,38.52843507,259.905274,783.0874396,856.4732984,113.0691358,924.9218901,809.358962,115.5629281,109.6596842,5.903243897,193.2780676,0,193.2780676,3.409451626,189.868616,0.672448048,4.536202774,0.784377279,-0.784377279,0.396017275,0.144388902,2.852599032,91.74939061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4090596,2.470136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066698288,88.19300411,107.4757579,90.66314021,809.358962,0,0.944990303,19.0927511,-0.944990303,160.9072489,0.997089404,0,914.4790031,90.66314021,973.8162151,6,15,6% +6/29/2018 0:00,50.30968574,270.183828,615.6775339,805.2040116,101.4438614,785.1531989,682.1270069,103.026192,98.38495465,4.641237314,152.3370529,0,152.3370529,3.058906708,149.2781462,0.878069662,4.715597385,1.130926603,-1.130926603,0.33675385,0.164767846,2.070156559,66.58335106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57136066,2.216167497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49982138,64.00244966,96.07118204,66.21861715,682.1270069,0,0.847148048,32.09718286,-0.847148048,147.9028171,0.990978439,0,772.0443387,66.21861715,815.3830993,6,16,6% +6/29/2018 1:00,62.09391576,278.7953172,418.8528358,712.6905739,85.2967859,588.0959179,502.2136552,85.8822627,82.7247731,3.157489601,104.1277322,0,104.1277322,2.572012807,101.5557194,1.083743275,4.865896224,1.654704748,-1.654704748,0.247182512,0.203643807,1.264540266,40.67196179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.51819849,1.863414523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916155118,39.0954367,80.43435361,40.95885123,502.2136552,0,0.70467279,45.19688468,-0.70467279,134.8031153,0.979045082,0,572.1241629,40.95885123,598.9309119,6,17,5% +6/29/2018 2:00,73.60605345,286.9540049,210.8286436,529.8214503,61.29178385,340.4721961,279.4392703,61.0329258,59.44361043,1.58931537,52.96601896,0,52.96601896,1.848173426,51.11784554,1.284667982,5.008292187,2.716230789,-2.716230789,0.065650868,0.290718485,0.536049742,17.24120237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.13945939,1.338995356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388366214,16.57289952,57.5278256,17.91189488,279.4392703,0,0.527421587,58.16859316,-0.527421587,121.8314068,0.955199178,0,324.4479869,17.91189488,336.1709639,6,18,4% +6/29/2018 3:00,84.54754662,295.3683662,31.89835524,142.6267007,18.34600964,64.88429257,46.85101954,18.03327304,17.79280976,0.240463276,8.287325415,0,8.287325415,0.55319988,7.734125535,1.475633063,5.155150496,7.360235377,-7.360235377,0,0.575139674,0.13829997,4.44820244,0.421470622,1,0.135038364,0,0.947163538,0.985925501,0.724496596,1,17.25170323,0.40079143,0.060089619,0.312029739,0.84377118,0.568267776,0.961238037,0.922476074,0.094650337,4.275781381,17.34635357,4.676572811,27.10469121,0,0.328487018,70.82303067,-0.328487018,109.1769693,0.897786983,0,41.68059251,4.676572811,44.74131589,6,19,7% +6/29/2018 4:00,94.95942048,304.5842439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657354543,5.315997905,-6.678248788,6.678248788,0.327798507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116223866,83.32577918,-0.116223866,96.67422082,0.619795761,0,0,0,0,6,20,0% +6/29/2018 5:00,104.0587426,315.0917844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816167674,5.499389083,-1.681856339,1.681856339,0.817768063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088534313,95.0792928,0.088534313,84.9207072,0,0.485247213,0,0,0,6,21,0% +6/29/2018 6:00,111.4932536,327.2918351,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945924368,5.712320137,-0.558657913,0.558657913,0.625689819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274288264,105.9196039,0.274288264,74.08039614,0,0.867710028,0,0,0,6,22,0% +6/29/2018 7:00,116.6452155,341.3056107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035843067,5.956906662,0.045411512,-0.045411512,0.522387864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428384251,115.3650643,0.428384251,64.63493573,0,0.933282357,0,0,0,6,23,0% +6/30/2018 8:00,118.9171626,356.6825169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075496024,6.225284305,0.519655253,-0.519655253,0.441287408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540324915,122.70576,0.540324915,57.29424003,0,0.957463086,0,0,0,6,0,0% +6/30/2018 9:00,117.9851059,12.33407654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059228566,0.215270246,1.006547036,-1.006547036,0.358024009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602484226,127.0480252,0.602484226,52.9519748,0,0.967010275,0,0,0,6,1,0% +6/30/2018 10:00,113.9870991,27.02090781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989450185,0.471603808,1.644202407,-1.644202407,0.248978518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610626933,127.6348481,0.610626933,52.36515189,0,0.968116943,0,0,0,6,2,0% +6/30/2018 11:00,107.438567,40.00094875,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875156738,0.69814826,2.757012021,-2.757012021,0.058676866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564197164,124.3465595,0.564197164,55.6534405,0,0.961378498,0,0,0,6,3,0% +6/30/2018 12:00,98.97346068,51.18726774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727412761,0.893386357,5.994425171,-5.994425171,0,#DIV/0!,0,0,0.331082823,1,0.165299485,0,0.943429164,0.982191127,0.724496596,1,0,0,0.048957519,0.312029739,0.870564358,0.595060954,0.961238037,0.922476074,0,0,0,0,0,0,-0.466356548,117.7980509,0.466356548,62.20194915,0,0.942785895,0,0,0,6,4,0% +6/30/2018 13:00,88.7758246,60.89544584,1.014115472,5.74593478,0.891357793,0.872124898,0,0.872124898,0.864480067,0.007644831,2.097430402,1.824668638,0.272761763,0.026877726,0.245884037,1.549430435,1.062826029,-46.20687046,46.20687046,0,0.878950986,0.006719432,0.216120017,1,0.865446607,0,0.021638425,0.961238037,1,0.664966432,0.940469836,0.830971123,0.018869141,0.115824807,0.24443424,0.724496596,0.448993192,0.971463432,0.932701469,0.004868205,0.208825508,0.835839328,0.227694648,0,0.245515357,-0.317558188,108.5153186,0.317558188,71.48468144,0,0.892548541,0.835839328,0.446829022,1.128279986,6,5,35% +6/30/2018 14:00,78.32602035,69.5908348,126.8545711,397.2814419,46.46762338,46.02273643,0,46.02273643,45.06645309,0.956283341,89.68370238,57.52517265,32.15852973,1.401170292,30.75735944,1.367046945,1.214589196,-4.839761772,4.839761772,0.642198303,0.366306259,0.739458816,23.78353738,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.31958889,1.015143107,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.535735395,22.86164078,43.85532429,23.87678389,0,57.52517265,-0.144797029,98.32552579,0.144797029,81.67447421,0,0.704689049,43.85532429,64.41414307,86.01309264,6,6,96% +6/30/2018 15:00,67.00878138,77.79179663,330.7856415,650.8469129,76.57131743,112.611067,35.85505545,76.75601158,74.26240969,2.49360189,82.51171622,0,82.51171622,2.308907739,80.20280848,1.169523863,1.357722982,-2.335096373,2.335096373,0.929478688,0.231483196,2.358456613,75.85607183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38385291,1.672795797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708693788,72.91574157,73.09254669,74.58853737,35.85505545,0,0.055089845,86.84198565,-0.055089845,93.15801435,0,0,73.09254669,74.58853737,121.9092526,6,7,67% +6/30/2018 16:00,55.3103306,86.11594736,535.0205774,772.4825729,95.37658262,300.9598683,204.4260305,96.53383786,92.50062675,4.033211106,132.5978891,0,132.5978891,2.875955868,129.7219332,0.965347379,1.50300682,-1.387964417,1.387964417,0.767509584,0.17826713,3.262686222,104.9392043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91512087,2.083620236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363805062,100.8715548,91.27892593,102.955175,204.4260305,0,0.264635136,74.65472637,-0.264635136,105.3452736,0.861060614,0,267.3021293,102.955175,334.6842322,6,8,25% +6/30/2018 17:00,43.49090308,95.49768952,716.6334194,837.911144,108.7425819,504.0694486,393.2035713,110.8658773,105.4635919,5.402285422,177.0350595,0,177.0350595,3.278990062,173.7560694,0.759059453,1.66674911,-0.856265608,0.856265608,0.676583733,0.151740875,3.920218117,126.0876903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.375616,2.375617138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840184681,121.2002839,104.2158007,123.575901,393.2035713,0,0.46926643,62.01331054,-0.46926643,117.9866895,0.943450721,0,475.1839934,123.575901,556.0619491,6,9,17% +6/30/2018 18:00,31.90617466,107.8433484,860.8824234,874.8370239,118.2203841,694.1356908,572.9903922,121.1452987,114.6556033,6.489695346,212.2956913,0,212.2956913,3.564780767,208.7309105,0.5568678,1.882221505,-0.491657489,0.491657489,0.614232072,0.137324658,4.329973542,139.2668333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2113271,2.582671531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137051091,133.8685774,113.3483782,136.451249,572.9903922,0,0.654968156,49.08276459,-0.654968156,130.9172354,0.973660411,0,671.2464387,136.451249,760.5510521,6,10,13% +6/30/2018 19:00,21.41135951,128.208541,957.0591409,894.6218833,124.1809674,851.4533032,723.802134,127.6511692,120.4364531,7.214716067,235.7945835,0,235.7945835,3.744514347,232.0500692,0.373698721,2.23766117,-0.206582566,0.206582566,0.565481389,0.129752658,4.486552957,144.3029655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7680997,2.712887898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.250492344,138.7094993,119.0185921,141.4223872,723.802134,0,0.809059277,35.99587821,-0.809059277,144.0041218,0.988199831,0,834.2797386,141.4223872,926.8378626,6,11,11% +6/30/2018 20:00,14.96521398,168.5993928,998.2406703,902.1738018,126.6660911,961.2982404,830.9264395,130.3718009,122.8466411,7.525159831,245.8544577,0,245.8544577,3.819449994,242.0350077,0.261192257,2.942614521,0.039967784,-0.039967784,0.523318796,0.126889331,4.393222588,141.3011401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0848641,2.767178519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18287481,135.8240305,121.2677389,138.591209,830.9264395,0,0.92102701,22.92331136,-0.92102701,157.0766886,0.995712776,0,948.6318103,138.591209,1039.336985,6,12,10% +6/30/2018 21:00,17.85911961,217.8677894,981.4956305,899.1632693,125.6599282,1013.358793,884.0890464,129.2697464,121.8708177,7.398928648,241.7640894,0,241.7640894,3.789110471,237.974979,0.311700439,3.802510259,0.272849306,-0.272849306,0.48349371,0.128029025,4.066610312,130.7961665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1468656,2.745197637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946245328,125.7262503,120.0931109,128.471448,884.0890464,0,0.983235277,10.50617006,-0.983235277,169.4938299,0.999147471,0,1003.428446,128.471448,1087.510439,6,13,8% +6/30/2018 22:00,27.23392961,244.994337,908.0073595,884.9357502,121.1706915,1001.725568,877.3636774,124.3618911,117.5169481,6.84494302,223.8106403,0,223.8106403,3.653743422,220.1568969,0.47532174,4.275957829,0.512716068,-0.512716068,0.442474078,0.133446817,3.53797402,113.7934062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9617605,2.647124672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563250134,109.3825504,115.5250106,112.029675,877.3636774,0,0.991443364,7.500657119,-0.991443364,172.4993429,0.999568476,0,992.5100844,112.029675,1065.831266,6,14,7% +6/30/2018 23:00,38.52346435,259.7828847,783.023691,856.1668399,113.1988646,924.8481294,809.1598649,115.6882645,109.7855011,5.902763333,193.2665228,0,193.2665228,3.413363426,189.8531594,0.672361292,4.534066678,0.784528383,-0.784528383,0.395991435,0.144566334,2.852868907,91.75807073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5299996,2.472970182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066893812,88.20134777,107.5968934,90.67431795,809.1598649,0,0.945096011,19.07422632,-0.945096011,160.9257737,0.997095322,0,914.4064096,90.67431795,973.7509372,6,15,6% +6/30/2018 0:00,50.30293673,270.0846662,615.6606642,804.8710165,101.5667033,785.1654122,682.0202097,103.1452026,98.50409242,4.641110143,152.3366668,0,152.3366668,3.062610845,149.2740559,0.877951869,4.713866684,1.131373221,-1.131373221,0.336677474,0.16497189,2.07043193,66.59220792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.68588042,2.218851131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500020885,64.01096322,96.1859013,66.22981435,682.0202097,0,0.847365846,32.07369026,-0.847365846,147.9263097,0.990993609,0,772.0635706,66.22981435,815.4096595,6,16,6% +6/30/2018 1:00,62.08881762,278.7085942,418.8295733,712.2974425,85.40150981,588.1207583,502.1371048,85.98365343,82.82633919,3.157314238,104.1252497,0,104.1252497,2.575170619,101.5500791,1.083654296,4.864382623,1.655723263,-1.655723263,0.247008336,0.203905157,1.264653438,40.67560178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.61582768,1.865702347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916237111,39.0989356,80.53206479,40.96463795,502.1371048,0,0.704954244,45.17415242,-0.704954244,134.8258476,0.979073411,0,572.1611527,40.96463795,598.971689,6,17,5% +6/30/2018 2:00,73.60493694,286.8737362,210.7551519,529.2997167,61.35565132,340.4130443,279.3187308,61.09431341,59.50555205,1.588761359,52.95012589,0,52.95012589,1.850099266,51.10002663,1.284648495,5.006891234,2.718895165,-2.718895165,0.065195233,0.291122901,0.53595007,17.23799656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.19900004,1.34039062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388294001,16.56981797,57.58729404,17.91020859,279.3187308,0,0.527713736,58.14888908,-0.527713736,121.8511109,0.955251661,0,324.4069756,17.91020859,336.1288489,6,18,4% +6/30/2018 3:00,84.55234638,295.2909497,31.80190282,142.0059048,18.32038733,64.69039503,46.6826988,18.00769624,17.76796006,0.239736177,8.263166801,0,8.263166801,0.552427273,7.710739528,1.475716835,5.153799323,7.37683541,-7.37683541,0,0.576078338,0.138106818,4.441990015,0.42241919,1,0.134738157,0,0.947199544,0.985961507,0.724496596,1,17.22759571,0.400231679,0.060202189,0.312029739,0.843505265,0.568001861,0.961238037,0.922476074,0.094517515,4.269809762,17.32211322,4.670041441,26.96303096,0,0.32873773,70.80782126,-0.32873773,109.1921787,0.897903068,0,41.53230146,4.670041441,44.58875018,6,19,7% +6/30/2018 4:00,94.97244695,304.5076102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657581898,5.314660396,-6.673188268,6.673188268,0.328663907,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116378356,83.31686712,-0.116378356,96.68313288,0.620366846,0,0,0,0,6,20,0% +6/30/2018 5:00,104.0820878,315.0154286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816575124,5.498056423,-1.683769862,1.683769862,0.818095294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08851912,95.07841885,0.08851912,84.92158115,0,0.485150279,0,0,0,6,21,0% +6/30/2018 6:00,111.5289738,327.2174666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946547805,5.711022162,-0.560847046,0.560847046,0.626064183,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274447711,105.929104,0.274447711,74.07089595,0,0.867815933,0,0,0,6,22,0% +6/30/2018 7:00,116.6944745,341.2378262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0367028,5.955723599,0.042962035,-0.042962035,0.522806749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428741761,115.3877356,0.428741761,64.6122644,0,0.933379683,0,0,0,6,23,0% +7/1/2018 8:00,118.9791777,356.6279219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076578392,6.224331442,0.516680662,-0.516680662,0.441796092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540890361,122.7442701,0.540890361,57.25572986,0,0.957559824,0,0,0,7,0,0% +7/1/2018 9:00,118.0567873,12.29784735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060479642,0.214637927,1.002512581,-1.002512581,0.358713941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603253234,127.1032504,0.603253234,52.89674962,0,0.967116068,0,0,0,7,1,0% +7/1/2018 10:00,114.0642199,27.0037179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990796196,0.471303788,1.637803794,-1.637803794,0.250072745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611581176,127.7039203,0.611581176,52.29607972,0,0.968244704,0,0,0,7,2,0% +7/1/2018 11:00,107.5174723,39.99975829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876533895,0.698127482,2.743757195,-2.743757195,0.060943575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565305621,124.4235168,0.565305621,55.57648316,0,0.961552268,0,0,0,7,3,0% +7/1/2018 12:00,99.05185144,51.19815354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728780938,0.89357635,5.942034285,-5.942034285,0,#DIV/0!,0,0,0.327049781,1,0.166730183,0,0.943247493,0.982009457,0.724496596,1,0,0,0.048441396,0.312029739,0.871830418,0.596327013,0.961238037,0.922476074,0,0,0,0,0,0,-0.46757764,117.8771704,0.46757764,62.12282958,0,0.943065887,0,0,0,7,4,0% +7/1/2018 13:00,88.84451321,60.91539494,0.887989325,5.068743652,0.785774653,0.768774687,0,0.768774687,0.762080648,0.006694039,1.854465279,1.615467981,0.238997298,0.023694005,0.215303293,1.550629278,1.063174207,-48.95720723,48.95720723,0,0.884892003,0.005923501,0.190520162,1,0.873455032,0,0.020423162,0.961238037,1,0.668212618,0.943716022,0.732540906,0.016658691,0.115824807,0.248116072,0.724496596,0.448993192,0.970931199,0.932169236,0.004291556,0.184047443,0.736832463,0.200706134,0,0.204429345,-0.318711715,108.5850327,0.318711715,71.41496726,0,0.893118412,0.736832463,0.383285745,0.987685317,7,5,34% +7/1/2018 14:00,78.40044695,69.61816649,125.4969038,394.2220385,46.2305683,45.78259477,0,45.78259477,44.8365461,0.946048671,89.41145812,57.58925862,31.8221995,1.394022207,30.42817729,1.368345934,1.215066224,-4.871704894,4.871704894,0.636735707,0.36838015,0.728982593,23.44658604,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.09859355,1.009964344,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528145407,22.53775034,43.62673896,23.54771468,0,57.58925862,-0.146083306,98.40001606,0.146083306,81.59998394,0,0.707729542,43.62673896,64.30533431,85.71329415,7,6,96% +7/1/2018 15:00,67.08191414,77.82601392,329.3542815,649.2911899,76.510741,111.6457816,34.95931007,76.68647155,74.20365986,2.482811693,82.16283981,0,82.16283981,2.307081136,79.85575867,1.17080027,1.358320187,-2.343218784,2.343218784,0.930867702,0.232305287,2.35104267,75.61761394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32738033,1.671472429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703322411,72.68652677,73.03070274,74.3579992,34.95931007,0,0.053842268,86.91357282,-0.053842268,93.08642718,0,0,73.03070274,74.3579992,121.6965261,7,7,67% +7/1/2018 16:00,55.38257423,86.15746681,533.7028966,771.5515733,95.38902693,299.8256048,203.2896311,96.53597369,92.51269582,4.023277872,132.2787774,0,132.2787774,2.87633111,129.4024463,0.966608269,1.503731471,-1.391419218,1.391419218,0.76810039,0.178730578,3.257036317,104.757484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92672211,2.083892098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.359711724,100.6968782,91.28643384,102.7807703,203.2896311,0,0.263481585,74.72325219,-0.263481585,105.2767478,0.860233417,0,266.1629678,102.7807703,333.4309263,7,8,25% +7/1/2018 17:00,43.56341931,95.54724267,715.4917761,837.2717767,108.7945962,502.9618121,392.0540952,110.907717,105.5140377,5.393679233,176.7598233,0,176.7598233,3.280558485,173.4792648,0.7603251,1.667613976,-0.858084282,0.858084282,0.676894744,0.152055691,3.915944547,125.9502376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4241065,2.376753455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.837088494,121.0681591,104.261195,123.4449126,392.0540952,0,0.468251894,62.07911711,-0.468251894,117.9208829,0.943219866,0,474.0544061,123.4449126,554.8466325,7,9,17% +7/1/2018 18:00,31.98099246,107.8988163,859.9449805,874.3522911,118.2985163,693.1517203,571.9377122,121.2140081,114.7313796,6.482628505,212.0707534,0,212.0707534,3.567136743,208.5036166,0.558173616,1.883189603,-0.492718474,0.492718474,0.614413511,0.137565215,4.326874474,139.1671566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2841661,2.584378427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134805827,133.7727644,113.4189719,136.3571428,571.9377122,0,0.65412731,49.14648894,-0.65412731,130.8535111,0.97356228,0,670.2359552,136.3571428,759.478978,7,10,13% +7/1/2018 19:00,21.49091625,128.2436343,956.333185,894.2254312,124.2781851,850.6447762,722.9047935,127.7399827,120.5307392,7.209243506,235.6214986,0,235.6214986,3.747445817,231.8740528,0.375087248,2.238273662,-0.207222008,0.207222008,0.56559074,0.12995281,4.484462661,144.2357344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8587312,2.715011738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.248977932,138.6448742,119.1077091,141.3598859,722.9047935,0,0.808414487,36.05868946,-0.808414487,143.9413105,0.988150539,0,833.4464707,141.3598859,925.9636889,7,11,11% +7/1/2018 20:00,15.03943143,168.4759818,997.716098,901.8284829,126.7775168,960.687372,830.2114597,130.4759123,122.9547069,7.521205384,245.730629,0,245.730629,3.82280989,241.9078191,0.262487596,2.940460593,0.039603061,-0.039603061,0.523381167,0.127067727,4.391963051,141.260629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1887411,2.769612752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.181962279,135.7850897,121.3707034,138.5547024,830.2114597,0,0.920586869,22.98797043,-0.920586869,157.0120296,0.99568682,0,948.0013119,138.5547024,1038.682594,7,12,10% +7/1/2018 21:00,17.89376382,217.6292136,981.1470715,898.8449413,125.7811912,1012.943935,883.5592102,129.3847252,121.9884242,7.396301063,241.6832338,0,241.6832338,3.792766996,237.8904668,0.312305094,3.798346326,0.272697182,-0.272697182,0.483519725,0.128198101,4.065979791,130.7758868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2599134,2.747846778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945788518,125.7067567,120.2057019,128.4546035,883.5592102,0,0.982994029,10.58170728,-0.982994029,169.4182927,0.999134991,0,1003.000625,128.4546035,1087.071594,7,13,8% +7/1/2018 22:00,27.24260364,244.8178752,907.796664,884.6255559,121.2970998,1001.484134,877.001235,124.4828994,117.6395447,6.843354708,223.7633664,0,223.7633664,3.657555097,220.1058113,0.47547313,4.272877991,0.512766052,-0.512766052,0.44246553,0.133617036,3.53775183,113.7862598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.079605,2.649886217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563089158,109.375681,115.6426942,112.0255672,877.001235,0,0.991381302,7.527848792,-0.991381302,172.4721512,0.999565319,0,992.2627131,112.0255672,1065.581206,7,14,7% +7/1/2018 23:00,38.52297135,259.6521239,782.9030777,855.8458677,113.3247783,924.7385851,808.9291129,115.8094722,109.9076181,5.9018541,193.2410755,0,193.2410755,3.417160189,189.8239153,0.672352688,4.531784471,0.784821195,-0.784821195,0.395941361,0.144749435,2.852829427,91.75680089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6473831,2.475720925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066865208,88.20012716,107.7142483,90.67584808,808.9291129,0,0.945180836,19.0593485,-0.945180836,160.9406515,0.99710007,0,914.2975234,90.67584808,973.6430525,7,15,6% +7/1/2018 0:00,50.30048376,269.9785852,615.5768112,804.5137942,101.684517,785.128445,681.8696133,103.2588317,98.61835367,4.640478024,152.3198881,0,152.3198881,3.066163364,149.2537248,0.877909057,4.712015221,1.132038577,-1.132038577,0.336563691,0.16518575,2.07036744,66.5901337,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.79571267,2.22142492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499974162,64.00896939,96.29568684,66.23039431,681.8696133,0,0.847554906,32.0532849,-0.847554906,147.9467151,0.991006772,0,772.0330911,66.23039431,815.3795596,7,16,6% +7/1/2018 1:00,62.08808274,278.6159481,418.7293978,711.8579427,85.49899693,588.0778856,502.0004399,86.07744579,82.92088671,3.156559073,104.1039006,0,104.1039006,2.578110215,101.5257904,1.08364147,4.862765644,1.657135998,-1.657135998,0.246766744,0.204186755,1.264413392,40.66788108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.70671036,1.867832075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916063198,39.09151418,80.62277356,40.95934625,502.0004399,0,0.705197498,45.15449821,-0.705197498,134.8455018,0.979097877,0,572.1303383,40.95934625,598.9374112,7,17,5% +7/1/2018 2:00,73.60840195,286.7882476,210.5986658,528.6723091,61.40692867,340.2593039,279.116439,61.1428649,59.5552832,1.5875817,52.91373021,0,52.91373021,1.851645467,51.06208475,1.284708971,5.005399176,2.722543161,-2.722543161,0.064571388,0.291582705,0.535532892,17.22457868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.24680351,1.341510837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387991757,16.55692019,57.63479526,17.89843103,279.116439,0,0.527957365,58.13245421,-0.527957365,121.8675458,0.955295383,0,324.2734408,17.89843103,335.9876059,7,18,4% +7/1/2018 3:00,84.56197705,295.2088664,31.647704,141.1681454,18.26934384,64.39157238,46.4345429,17.95702948,17.71845572,0.238573761,8.224240363,0,8.224240363,0.550888123,7.673352239,1.475884922,5.1523667,7.400666241,-7.400666241,0,0.57727233,0.137722031,4.429613929,0.42377552,1,0.134309495,0,0.947250921,0.986012884,0.724496596,1,17.17957569,0.39911657,0.060363002,0.312029739,0.843125566,0.567622162,0.961238037,0.922476074,0.094253344,4.257913397,17.27382903,4.657029968,26.75672032,0,0.328930743,70.79611123,-0.328930743,109.2038888,0.897992317,0,41.30115831,4.657029968,44.34909129,7,19,7% +7/1/2018 4:00,94.9908476,304.4268417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65790305,5.31325072,-6.661597219,6.661597219,0.330646093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116463042,83.31198175,-0.116463042,96.68801825,0.620679253,0,0,0,0,7,20,0% +7/1/2018 5:00,104.1112928,314.9355929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817084849,5.496663028,-1.685162946,1.685162946,0.818333526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088582813,95.08208262,0.088582813,84.91791738,0,0.485556422,0,0,0,7,21,0% +7/1/2018 6:00,111.5710256,327.1405646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947281746,5.70967997,-0.56295383,0.56295383,0.626424464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274693318,105.9437387,0.274693318,74.05626126,0,0.867978827,0,0,0,7,22,0% +7/1/2018 7:00,116.7504036,341.1688811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037678946,5.954520281,0.040470977,-0.040470977,0.523232745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429190395,115.4161915,0.429190395,64.58380848,0,0.933501587,0,0,0,7,23,0% +7/2/2018 8:00,119.0479202,356.5739112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077778176,6.223388778,0.513594685,-0.513594685,0.442323826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541549242,122.7891649,0.541549242,57.21083514,0,0.957672293,0,0,0,7,0,0% +7/2/2018 9:00,118.1348901,12.26397809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061842794,0.214046797,0.998293989,-0.998293989,0.359435363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60411518,127.1651977,0.60411518,52.83480227,0,0.967234326,0,0,0,7,1,0% +7/2/2018 10:00,114.1471607,26.99029773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992243785,0.471069562,1.63110023,-1.63110023,0.251219122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612625085,127.7795567,0.612625085,52.22044334,0,0.968384015,0,0,0,7,2,0% +7/2/2018 11:00,107.6014648,40.0032547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877999842,0.698188506,2.729905351,-2.729905351,0.06331238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56649792,124.5063743,0.56649792,55.49362566,0,0.961738423,0,0,0,7,3,0% +7/2/2018 12:00,99.13461012,51.21428319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.730225349,0.893857866,5.887853581,-5.887853581,0,#DIV/0!,0,0,0.322827486,1,0.168235794,0,0.943055815,0.981817778,0.724496596,1,0,0,0.047899206,0.312029739,0.873162692,0.597659288,0.961238037,0.922476074,0,0,0,0,0,0,-0.468874601,117.9612692,0.468874601,62.03873078,0,0.943361679,0,0,0,7,4,0% +7/2/2018 13:00,88.9162682,60.94098607,0.767864995,4.42586851,0.684156064,0.669314725,0,0.669314725,0.663526235,0.005788491,1.622734411,1.415926823,0.206807588,0.02062983,0.186177758,1.551881639,1.063620856,-52.20328843,52.20328843,0,0.890984833,0.005157457,0.165881559,1,0.881760936,0,0.019153539,0.961238037,1,0.671616384,0.947119789,0.637806655,0.014527354,0.115824807,0.251977256,0.724496596,0.448993192,0.970369935,0.931607972,0.00373656,0.160206213,0.641543215,0.174733566,0,0.167417862,-0.319920671,108.6581275,0.319920671,71.34187254,0,0.893711255,0.641543215,0.324356794,0.85382825,7,5,33% +7/2/2018 14:00,78.47808495,69.65154993,124.086797,391.041002,45.97919929,45.52817547,0,45.52817547,44.59275678,0.93541869,89.12190929,57.64918623,31.47272305,1.386442504,30.08628055,1.369700973,1.215648875,-4.905461398,4.905461398,0.630963005,0.370540625,0.718126731,23.09742423,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.86425399,1.004472874,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.520280372,22.20212272,43.38453436,23.2065956,0,57.64918623,-0.147424914,98.47772594,0.147424914,81.52227406,0,0.7108443,43.38453436,64.18619104,85.39311267,7,6,97% +7/2/2018 15:00,67.15791609,77.86684466,327.8708551,647.6871993,76.44348182,110.6458691,34.03581127,76.61005779,74.13842879,2.471628999,81.8011378,0,81.8011378,2.305053023,79.49608478,1.172126755,1.359032817,-2.351680997,2.351680997,0.932314826,0.233151195,2.343340838,75.36989653,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26467775,1.670003069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69774246,72.44841138,72.96242021,74.11841445,34.03581127,0,0.052549767,86.98773268,-0.052549767,93.01226732,0,0,72.96242021,74.11841445,121.4714401,7,7,66% +7/2/2018 16:00,55.45749341,86.20646454,532.3399587,770.5980442,95.3973948,298.656499,202.1226842,96.53381483,92.52081136,4.01300347,131.9485696,0,131.9485696,2.876583432,129.0719862,0.967915855,1.504586643,-1.394971983,1.394971983,0.768707948,0.179203896,3.251160385,104.5684938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93452308,2.084074904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355454632,100.5152137,91.28997771,102.5992886,202.1226842,0,0.262293274,74.79381946,-0.262293274,105.2061805,0.859373686,0,264.9888939,102.5992886,332.1380763,7,8,25% +7/2/2018 17:00,43.63864319,95.6056604,714.3108661,836.6197336,108.843658,501.8248293,390.8784322,110.9463972,105.5616201,5.384777035,176.4749774,0,176.4749774,3.282037879,173.1929395,0.761638005,1.668633558,-0.859923371,0.859923371,0.677209247,0.152375756,3.91147367,125.8064388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4698445,2.377825271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833849359,120.9299343,104.3036938,123.3077596,390.8784322,0,0.467211585,62.14655378,-0.467211585,117.8534462,0.942982106,0,472.895061,123.3077596,553.5975234,7,9,17% +7/2/2018 18:00,32.05893749,107.965376,858.9719957,873.8590504,118.3742271,692.1441271,570.864026,121.2801011,114.8048074,6.475293735,211.8371249,0,211.8371249,3.569419701,208.2677052,0.559534014,1.884351289,-0.493764511,0.493764511,0.614592394,0.137809181,4.323586654,139.061409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3547477,2.586032423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.132423813,133.6711158,113.4871715,136.2571482,570.864026,0,0.653267853,49.21156045,-0.653267853,130.7884395,0.973461717,0,669.2014463,136.2571482,758.3790246,7,10,13% +7/2/2018 19:00,21.57479585,128.2926436,955.5726331,893.8221296,124.3731726,849.8164929,721.9901201,127.8263728,120.6228626,7.203510144,235.4399582,0,235.4399582,3.750310044,231.6896481,0.376551223,2.239129038,-0.207824796,0.207824796,0.565693823,0.130155645,4.482176896,144.1622164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9472837,2.71708686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247321903,138.5742058,119.1946056,141.2912927,721.9901201,0,0.807755924,36.122745,-0.807755924,143.877255,0.988100114,0,832.5931252,141.2912927,925.0654505,7,11,11% +7/2/2018 20:00,15.12014564,168.3617769,997.154952,901.4765404,126.8866497,960.0577612,829.4802368,130.5775243,123.0605491,7.516975228,245.5978634,0,245.5978634,3.826100651,241.7717628,0.263896325,2.938467341,0.039293005,-0.039293005,0.52343419,0.127248678,4.390489028,141.2132194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2904806,2.771996897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.180894355,135.7395178,121.471375,138.5115147,829.4802368,0,0.920135133,23.05415448,-0.920135133,156.9458455,0.995660156,0,947.3517966,138.5115147,1038.004813,7,12,10% +7/2/2018 21:00,17.93490704,217.3828424,980.7571542,898.5190401,125.8998745,1012.507992,883.0111019,129.4968905,122.1035288,7.393361702,241.5922726,0,241.5922726,3.796345738,237.7959268,0.313023179,3.794046337,0.272619393,-0.272619393,0.483533028,0.12837008,4.065106366,130.7477944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3705563,2.750439564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945155724,125.6797532,120.315712,128.4301928,883.0111019,0,0.982740557,10.66050171,-0.982740557,169.3394983,0.999121872,0,1002.551417,128.4301928,1086.60641,7,13,8% +7/2/2018 22:00,27.25646643,244.6315045,907.5373682,884.305396,121.4204151,1001.215686,876.615144,124.6005416,117.7591416,6.841400027,223.7042155,0,223.7042155,3.66127351,220.042942,0.475715082,4.269625208,0.512916858,-0.512916858,0.442439741,0.133791092,3.537252407,113.7701966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1945661,2.652580194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562727328,109.3602405,115.7572934,112.0128207,876.615144,0,0.991303624,7.561744739,-0.991303624,172.4382553,0.999561367,0,991.9879248,112.0128207,1065.298076,7,14,7% +7/2/2018 23:00,38.52702465,259.513123,782.7247344,855.5101145,113.4468107,924.5923938,808.6659134,115.9264805,110.0259708,5.900509673,193.2015139,0,193.2015139,3.420839917,189.7806739,0.672423431,4.529358449,0.785256699,-0.785256699,0.395866885,0.144938323,2.852477054,91.74546739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7611482,2.478386875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066609916,88.18923296,107.8277581,90.66761984,808.6659134,0,0.945244129,19.04824,-0.945244129,160.95176,0.997103612,0,914.1514614,90.66761984,973.4916052,7,15,6% +7/2/2018 0:00,50.3023879,269.8656784,615.4250362,804.1319391,101.7972182,785.0412177,681.6742273,103.3669904,98.72765648,4.639333879,152.2864869,0,152.2864869,3.06956172,149.2169252,0.87794229,4.710044626,1.132923983,-1.132923983,0.336412278,0.165409615,2.069959747,66.57702089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.9007787,2.223887017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49967879,63.99636486,96.40045749,66.22025188,681.6742273,0,0.847714404,32.03606124,-0.847714404,147.9639388,0.991017871,0,771.9517992,66.22025188,815.2916296,7,16,6% +7/2/2018 1:00,62.09176404,278.5174558,418.5513912,711.3714095,85.58913292,587.9660653,501.8025433,86.16352196,83.00830478,3.155217183,104.0634588,0,104.0634588,2.580828148,101.4826306,1.083705721,4.861046627,1.658945374,-1.658945374,0.246457322,0.204488946,1.263817416,40.64871246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79073993,1.869801208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915631416,39.07308856,80.70637134,40.94288977,501.8025433,0,0.705401618,45.1380007,-0.705401618,134.8619993,0.979118393,0,572.0304713,40.94288977,598.8267738,7,17,5% +7/2/2018 2:00,73.61649283,286.6976078,210.3584219,527.9380087,61.44542774,340.0096466,278.8312546,61.17839202,59.59262138,1.58577064,52.8566412,0,52.8566412,1.852806356,51.00383484,1.284850184,5.003817214,2.727182824,-2.727182824,0.063777959,0.292098729,0.534796752,17.20090191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.28269439,1.342351898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387458427,16.53416118,57.67015282,17.87651308,278.8312546,0,0.528151506,58.11935556,-0.528151506,121.8806444,0.955330195,0,324.0460697,17.87651308,335.74589,7,18,4% +7/2/2018 3:00,84.57647233,295.1221815,31.4357137,140.1130499,18.192632,63.98735515,46.10632244,17.88103271,17.64405702,0.236975688,8.170527715,0,8.170527715,0.548574978,7.621952737,1.476137912,5.150853762,7.431865385,-7.431865385,0,0.578724955,0.137143745,4.411014255,0.425541618,1,0.133752375,0,0.947317631,0.986079594,0.724496596,1,17.10740889,0.397440704,0.060572139,0.312029739,0.842632077,0.567128673,0.961238037,0.922476074,0.093856631,4.240034683,17.20126552,4.637475387,26.48616341,0,0.329065155,70.78795599,-0.329065155,109.212044,0.898054407,0,40.9872813,4.637475387,44.02241619,7,19,7% +7/2/2018 4:00,95.01464776,304.3420023,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658318441,5.311769992,-6.643538042,6.643538042,0.333734394,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116477111,83.31117011,-0.116477111,96.68882989,0.620731112,0,0,0,0,7,20,0% +7/2/2018 5:00,104.1463722,314.8523409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817697098,5.495210007,-1.686030386,1.686030386,0.818481867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088726025,95.09032051,0.088726025,84.90967949,0,0.486467488,0,0,0,7,21,0% +7/2/2018 6:00,111.6194112,327.0611931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948126234,5.708294675,-0.564973511,0.564973511,0.62676985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275025482,105.9635327,0.275025482,74.03646729,0,0.868198664,0,0,0,7,22,0% +7/2/2018 7:00,116.8129923,341.0988408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038771325,5.953297846,0.037943049,-0.037943049,0.523665046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429730276,115.450444,0.429730276,64.54955598,0,0.933647947,0,0,0,7,23,0% +7/3/2018 8:00,119.1233663,356.5205519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079094957,6.222457481,0.510402802,-0.510402802,0.44286967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542301393,122.8404425,0.542301393,57.15955752,0,0.957800347,0,0,0,7,0,0% +7/3/2018 9:00,118.2193766,12.23253499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063317361,0.213498011,0.993898795,-0.993898795,0.360186985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605069608,127.233851,0.605069608,52.76614899,0,0.96736488,0,0,0,7,1,0% +7/3/2018 10:00,114.2358709,26.98070685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993792072,0.470902169,1.624104498,-1.624104498,0.252415463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613757935,127.861725,0.613757935,52.13827504,0,0.968534658,0,0,0,7,2,0% +7/3/2018 11:00,107.6904848,40.01148575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879553533,0.698332165,2.715487125,-2.715487125,0.065778042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567773109,124.5950834,0.567773109,55.40491657,0,0.961936654,0,0,0,7,3,0% +7/3/2018 12:00,99.22167125,51.23569104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731744853,0.894231503,5.832049702,-5.832049702,0,#DIV/0!,0,0,0.318422948,1,0.169814928,0,0.942854231,0.981616194,0.724496596,1,0,0,0.04733159,0.312029739,0.874559938,0.599056534,0.961238037,0.922476074,0,0,0,0,0,0,-0.470246306,118.050286,0.470246306,61.94971403,0,0.943672743,0,0,0,7,4,0% +7/3/2018 13:00,88.99098085,60.97224091,0.654833396,3.822658095,0.587517167,0.574737767,0,0.574737767,0.569801356,0.004936411,1.404261203,1.227773455,0.176487749,0.01771581,0.158771938,1.55318562,1.064166356,-56.07443072,56.07443072,0,0.897200983,0.004428953,0.142450339,1,0.890344217,0,0.01783155,0.961238037,1,0.675173977,0.950677381,0.547714737,0.012496458,0.115824807,0.256013601,0.724496596,0.448993192,0.969779821,0.931017858,0.003208761,0.137539983,0.550923498,0.150036441,0,0.134632459,-0.321183173,108.7344932,0.321183173,71.26550676,0,0.894325593,0.550923498,0.270441695,0.727922179,7,5,32% +7/3/2018 14:00,78.55886649,69.69099532,122.6257717,387.7387573,45.71350826,45.25948219,0,45.25948219,44.33507732,0.924404865,88.81397833,57.70350931,31.11046901,1.378430939,29.73203807,1.371110877,1.216337327,-4.94106485,4.94106485,0.624874456,0.372788751,0.706908151,22.73659612,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.61656269,0.998668523,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.512152549,21.85528102,43.12871524,22.85394954,0,57.70350931,-0.148820587,98.55858402,0.148820587,81.44141598,0,0.714024977,43.12871524,64.05569646,85.05188746,7,6,97% +7/3/2018 15:00,67.23672193,77.91428796,326.3365257,646.0351633,76.36958483,109.6125815,33.08575886,76.52682265,74.06676007,2.460062576,81.4268936,0,81.4268936,2.302824756,79.12406884,1.173502176,1.359860859,-2.360481095,2.360481095,0.933819731,0.234020953,2.335355363,75.1130562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19578705,1.668388697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69195701,72.20152668,72.88774406,73.86991538,33.08575886,0,0.051213557,87.06439509,-0.051213557,92.93560491,0,0,72.88774406,73.86991538,121.2341263,7,7,66% +7/3/2018 16:00,55.53502644,86.26292705,530.9326909,769.6221478,95.40173135,297.4536666,200.9262546,96.52741204,92.52501715,4.002394891,131.607492,0,131.607492,2.876714195,128.7307778,0.969269061,1.505572099,-1.398620227,1.398620227,0.769331835,0.179687054,3.245061402,104.3723295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93856585,2.084169642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351035939,100.3266531,91.28960178,102.4108228,200.9262546,0,0.2610713,74.86636122,-0.2610713,105.1336388,0.858481438,0,263.7810617,102.4108228,330.806897,7,8,25% +7/3/2018 17:00,43.71651763,95.67291147,713.0913447,835.9550968,108.8897986,500.6594242,389.677471,110.9819532,105.6063694,5.375583767,176.1806816,0,176.1806816,3.283429188,172.8972524,0.76299717,1.66980731,-0.86178098,0.86178098,0.677526917,0.152701052,3.906807079,125.6563452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5128592,2.37883327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830468429,120.7856586,104.3433276,123.1644919,389.677471,0,0.466146414,62.21555872,-0.466146414,117.7844413,0.942737564,0,471.7069174,123.1644919,552.315614,7,9,17% +7/3/2018 18:00,32.13995737,108.0429651,857.9638233,873.3573197,118.4475308,691.1135755,569.7699811,121.3435944,114.8759007,6.467693706,211.5948922,0,211.5948922,3.571630077,208.0232621,0.560948078,1.885705474,-0.494794153,0.494794153,0.614768473,0.138056556,4.320110311,138.9495979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4230853,2.587633833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.129905214,133.5636387,113.5529905,136.1512725,569.7699811,0,0.652390457,49.27792449,-0.652390457,130.7220755,0.973358781,0,668.1436047,136.1512725,757.2518895,7,10,13% +7/3/2018 19:00,21.66294534,128.3554656,954.7775283,893.411945,124.465927,848.9688079,721.0584715,127.9103364,120.7128201,7.197516308,235.2499727,0,235.2499727,3.75310693,231.4968658,0.378089722,2.240225488,-0.20838977,0.20838977,0.565790439,0.130361182,4.47969464,144.0823785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0337542,2.719113195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.245523518,138.4974626,119.2792777,141.2165758,721.0584715,0,0.807083984,36.18800069,-0.807083984,143.8119993,0.988048579,0,831.7200756,141.2165758,924.1435001,7,11,11% +7/3/2018 20:00,15.20730373,168.2570023,996.5569765,901.1178946,126.9934694,959.4094279,828.7328128,130.6766152,123.1641477,7.512467437,245.4560984,0,245.4560984,3.829321658,241.6267767,0.265417521,2.936638679,0.039038602,-0.039038602,0.523477695,0.127432222,4.388798436,141.1588441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3900636,2.774330506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179669527,135.6872502,121.5697331,138.4615807,828.7328128,0,0.919671907,23.12183594,-0.919671907,156.8781641,0.995632785,0,946.6832918,138.4615807,1037.303627,7,12,10% +7/3/2018 21:00,17.98258898,217.1292115,980.3253574,898.1854367,126.0159413,1012.050649,882.4444466,129.6062024,122.2160957,7.390106635,241.4910783,0,241.4910783,3.799845579,237.6912327,0.313855386,3.789619643,0.272616831,-0.272616831,0.483533466,0.128545019,4.063987143,130.7117964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4787599,2.752975187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944344851,125.6451505,120.4231048,128.3981257,882.4444466,0,0.982474677,10.74253946,-0.982474677,169.2574605,0.999108103,0,1002.080502,128.3981257,1086.114507,7,13,8% +7/3/2018 22:00,27.27558934,244.4354752,907.2287376,883.9750805,121.540585,1000.919596,876.2048342,124.7147614,117.875688,6.839073439,223.633008,0,223.633008,3.664897076,219.968111,0.476048839,4.26620385,0.513169367,-0.513169367,0.442396559,0.133969064,3.536472363,113.7451078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3065949,2.655205456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562162189,109.3361241,115.8687571,111.9913295,876.2048342,0,0.991209881,7.602451365,-0.991209881,172.3975486,0.999556596,0,991.685079,111.9913295,1064.981164,7,14,7% +7/3/2018 23:00,38.53569256,259.3660214,782.4877822,855.1593035,113.5648941,924.4086615,808.3694446,116.0392169,110.1404935,5.898723426,193.1476227,0,193.1476227,3.424400566,189.7232221,0.672574715,4.526791041,0.785835883,-0.785835883,0.395767839,0.145133121,2.851808261,91.72395671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8712317,2.480966553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066125377,88.16855608,107.9373571,90.64952263,808.3694446,0,0.945285213,19.04102609,-0.945285213,160.9589739,0.997105911,0,913.9673088,90.64952263,973.2956083,7,15,6% +7/3/2018 0:00,50.30870965,269.7460439,615.2043972,803.7250318,101.9047209,784.9026263,681.4330382,103.4695881,98.83191753,4.63767061,152.236232,0,152.236232,3.072803322,149.1634287,0.878052626,4.70795661,1.134030805,-1.134030805,0.336223,0.165643681,2.06920557,66.55276397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00099839,2.226235547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499132391,63.97304818,96.50013078,66.19928373,681.4330382,0,0.847843493,32.02211524,-0.847843493,147.9778848,0.991026852,0,771.8185693,66.19928373,815.1446765,7,16,6% +7/3/2018 1:00,62.09991357,278.4131969,418.2946441,710.8371494,85.67180115,587.7840437,501.5422818,86.24176196,83.08848025,3.153281716,104.0037002,0,104.0037002,2.5833209,101.4203793,1.083847957,4.859226967,1.661154043,-1.661154043,0.246079618,0.204812092,1.262862929,40.61801287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86780764,1.871607198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914939893,39.04357895,80.78274753,40.91518615,501.5422818,0,0.705565659,45.12473908,-0.705565659,134.8752609,0.979134873,0,571.8602859,40.91518615,598.638457,7,17,5% +7/3/2018 2:00,73.62925263,286.601888,210.0336862,527.0955122,61.47095286,339.6627246,278.4620251,61.20069947,59.61737683,1.583322645,52.77867494,0,52.77867494,1.853576032,50.92509891,1.285072884,5.002146588,2.732823569,-2.732823569,0.062813335,0.292671876,0.533740461,17.16692795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30649027,1.342909526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386693147,16.50150412,57.69318341,17.84441365,278.4620251,0,0.528295193,58.10965993,-0.528295193,121.8903401,0.955355944,0,323.7235342,17.84441365,335.402346,7,18,4% +7/3/2018 3:00,84.59586394,295.0309616,31.16603443,138.8404633,18.09001453,63.47743796,45.69796138,17.77947658,17.54453385,0.234942732,8.102046557,0,8.102046557,0.545480683,7.556565874,1.476476359,5.149261676,7.470608941,-7.470608941,0,0.580440048,0.136370171,4.386133461,0.427719771,1,0.133066898,0,0.947399614,0.986161577,0.724496596,1,17.01086981,0.395198898,0.060829664,0.312029739,0.842024885,0.566521481,0.961238037,0.922476074,0.093326254,4.216118318,17.10419607,4.611317216,26.15203979,0,0.329140081,70.78340976,-0.329140081,109.2165902,0.898088997,0,40.59105525,4.611317216,43.60907014,7,19,7% +7/3/2018 4:00,95.043871,304.2531564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658828483,5.310219339,-6.619115922,6.619115922,0.337910822,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11641977,83.31447799,-0.11641977,96.68552201,0.620519682,0,0,0,0,7,20,0% +7/3/2018 5:00,104.1873382,314.7657365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81841209,5.493698474,-1.686368468,1.686368468,0.818539682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088949359,95.10316736,0.088949359,84.89683264,0,0.487882401,0,0,0,7,21,0% +7/3/2018 6:00,111.6741312,326.9794159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949081278,5.706867393,-0.566901553,0.566901553,0.627099565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275444562,105.9885089,0.275444562,74.01149111,0,0.868475269,0,0,0,7,22,0% +7/3/2018 7:00,116.8822285,341.0277702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039979724,5.95205743,0.035382977,-0.035382977,0.524102844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430361486,115.4905032,0.430361486,64.50949684,0,0.9338186,0,0,0,7,23,0% +7/4/2018 8:00,119.2054901,356.4679108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080528288,6.221538722,0.507110591,-0.507110591,0.443432671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543146598,122.8980994,0.543146598,57.10190058,0,0.957943822,0,0,0,7,0,0% +7/4/2018 9:00,118.310207,12.20358447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064902651,0.21299273,0.989334694,-0.989334694,0.360967493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606116013,127.3091922,0.606116013,52.69080782,0,0.967507542,0,0,0,7,1,0% +7/4/2018 10:00,114.3302984,26.97500481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995440142,0.47080265,1.61682963,-1.61682963,0.253659539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614978953,127.950391,0.614978953,52.049609,0,0.968696405,0,0,0,7,2,0% +7/4/2018 11:00,107.7844706,40.02449867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881193894,0.698559283,2.700533493,-2.700533493,0.068335263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56913019,124.6895935,0.56913019,55.31040648,0,0.962146639,0,0,0,7,3,0% +7/4/2018 12:00,99.31296789,51.26241035,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73333828,0.894697843,5.774786843,-5.774786843,0,#DIV/0!,0,0,0.313843291,1,0.17146616,0,0.942642846,0.981404809,0.724496596,1,0,0,0.046739202,0.312029739,0.876020881,0.600517477,0.961238037,0.922476074,0,0,0,0,0,0,-0.471691589,118.1441574,0.471691589,61.85584261,0,0.943998534,0,0,0,7,4,0% +7/4/2018 13:00,89.06853892,61.00917951,0.549825762,3.263529508,0.496772695,0.485937985,0,0.485937985,0.481793166,0.004144819,1.200770496,1.052479345,0.148291151,0.01497953,0.133311622,1.554539264,1.064811056,-60.75060389,60.75060389,0,0.903509311,0.003744882,0.120448291,1,0.899184593,0,0.016459255,0.961238037,1,0.678881441,0.954384845,0.463117917,0.010585381,0.115824807,0.260220687,0.724496596,0.448993192,0.969161069,0.930399106,0.002713155,0.116263107,0.465831071,0.126848488,0,0.106106133,-0.322497266,108.8140164,0.322497266,71.18598362,0,0.894959926,0.465831071,0.221809225,0.611000773,7,5,31% +7/4/2018 14:00,78.64272315,69.73651075,121.1153743,384.3157297,45.43348544,44.97651707,0,44.97651707,44.06349822,0.913018851,88.48656454,57.75075261,30.73581193,1.369987218,29.36582471,1.372574452,1.217131721,-4.978551554,4.978551554,0.618463852,0.375125666,0.695344067,22.36465542,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.35551053,0.992551076,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.503774409,21.49775747,42.85928494,22.49030855,0,57.75075261,-0.150269032,98.64251766,0.150269032,81.35748234,0,0.717263445,42.85928494,63.9128123,84.68894233,7,6,98% +7/4/2018 15:00,67.31826638,77.96834027,324.7524576,644.3352946,76.28909417,108.5471808,32.11036314,76.4368177,73.9886965,2.448121202,81.04039087,0,81.04039087,2.300397666,78.7399932,1.174925395,1.36080425,-2.3696172,2.3696172,0.935382097,0.234914601,2.327090461,74.84722855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12074937,1.666630278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.685969117,71.94600304,72.80671849,73.61263332,32.11036314,0,0.049834866,87.1434893,-0.049834866,92.8565107,0,0,72.80671849,73.61263332,120.9847147,7,7,66% +7/4/2018 16:00,55.61511217,86.32683755,529.4820109,768.6240397,95.40208083,296.2182211,199.701406,96.51681515,92.5253561,3.991459052,131.2557684,0,131.2557684,2.876724733,128.3790437,0.970666821,1.506687548,-1.402361442,1.402361442,0.76997162,0.180180023,3.238742276,104.1690847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93889165,2.084177276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346457754,100.1312865,91.28534941,102.2154638,199.701406,0,0.259816758,74.94081052,-0.259816758,105.0591895,0.857556678,0,262.5406237,102.2154638,329.4386004,7,8,25% +7/4/2018 17:00,43.79698682,95.74895997,711.8338492,835.2779421,108.9330481,499.4665082,388.4520892,111.014419,105.6483148,5.366104235,175.8770914,0,175.8770914,3.28473332,172.5923581,0.764401623,1.671134607,-0.863655196,0.863655196,0.677847427,0.153031565,3.901946269,125.5000049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5531787,2.379778108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826946789,120.6353783,104.3801255,123.0151564,388.4520892,0,0.465057282,62.28607071,-0.465057282,117.7139293,0.942486363,0,470.4909221,123.0151564,551.0018816,7,9,17% +7/4/2018 18:00,32.22400169,108.1315135,856.9207929,872.8471107,118.5184401,690.0607081,568.6562053,121.4045028,114.9446719,6.459830902,211.3441356,0,211.3441356,3.573768257,207.7703673,0.562414928,1.887250935,-0.495805944,0.495805944,0.6149415,0.138307345,4.316445564,138.831727,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4891907,2.589182936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127250117,133.4503367,113.6164409,136.0395197,568.6562053,0,0.651495776,49.3455279,-0.651495776,130.6544721,0.973253532,0,667.0631009,136.0395197,756.0982457,7,10,13% +7/4/2018 19:00,21.75531391,128.4319793,953.9478854,892.9948376,124.5564431,848.1020473,720.1101784,127.9918689,120.8006068,7.19126211,235.0515456,0,235.0515456,3.755836324,231.2957093,0.379701858,2.241560905,-0.20891577,0.20891577,0.56588039,0.130569442,4.47701476,143.9961843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1181381,2.721090632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.243581953,138.4146095,119.3617201,141.1357001,720.1101784,0,0.806399038,36.25441494,-0.806399038,143.7455851,0.987995958,0,830.8276655,141.1357001,923.1981585,7,11,11% +7/4/2018 20:00,15.30085154,168.1618507,995.9218867,900.7524585,127.0979533,958.7423584,827.9691975,130.7731609,123.2654811,7.507679861,245.3052641,0,245.3052641,3.832472233,241.4727918,0.267050238,2.934977971,0.038840832,-0.038840832,0.523511516,0.127618396,4.386889088,141.0974329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.487469,2.776613087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178286211,135.6282194,121.6657552,138.4048325,827.9691975,0,0.919197266,23.19099154,-0.919197266,156.8090085,0.995604712,0,945.9957897,138.4048325,1036.578984,7,12,10% +7/4/2018 21:00,18.03684647,216.8688708,979.8511325,897.8439948,126.1293526,1011.571554,881.858935,129.7126189,122.3260872,7.386531728,241.3795167,0,241.3795167,3.803265348,237.5762514,0.314802358,3.78507584,0.272690386,-0.272690386,0.483520887,0.128722975,4.062619152,130.6677971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5844879,2.755452798,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943353746,125.6028568,120.5278417,128.3583096,881.858935,0,0.982196172,10.82781375,-0.982196172,169.1721862,0.999093673,0,1001.587524,128.3583096,1085.59547,7,13,8% +7/4/2018 22:00,27.30004325,244.2300516,906.870015,883.6344117,121.6575553,1000.595202,875.7697021,124.8255004,117.9891311,6.836369237,223.5495587,0,223.5495587,3.668424161,219.8811345,0.476475641,4.262618533,0.513524462,-0.513524462,0.442335835,0.13415104,3.535408266,113.7108827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4156408,2.657760817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561391254,109.3032257,115.977032,111.9609865,875.7697021,0,0.991099589,7.650068241,-0.991099589,172.3499318,0.999550983,0,991.3534987,111.9609865,1064.629725,7,14,7% +7/4/2018 23:00,38.54904324,259.2109662,782.1913261,854.7931478,113.6789589,924.1864617,808.0388543,116.1476074,110.2511188,5.896488615,193.0791829,0,193.0791829,3.427840041,189.6513429,0.672807728,4.524084818,0.786559756,-0.786559756,0.395644049,0.145333955,2.850819515,91.69215522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.977569,2.483458441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065409034,88.13798728,108.0429781,90.62144572,808.0388543,0,0.945303383,19.03783485,-0.945303383,160.9621651,0.997106928,0,913.7441177,90.62144572,973.0540415,7,15,6% +7/4/2018 0:00,50.31950916,269.6197848,614.9139458,803.2926371,102.0069373,784.7115398,681.1450069,103.5665329,98.93105182,4.635481064,152.1688909,0,152.1688909,3.075885526,149.0930054,0.878241113,4.705752973,1.135360474,-1.135360474,0.335995614,0.165888151,2.068101675,66.51725891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.09629003,2.228468593,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498332623,63.93891937,96.59462266,66.16738796,681.1450069,0,0.847941305,32.0115446,-0.847941305,147.9884554,0.991033654,0,771.632248,66.16738796,814.9374801,7,16,6% +7/4/2018 1:00,62.11258263,278.3032549,417.9582527,710.2544362,85.74688212,587.5305442,501.2185011,86.31204311,83.16129725,3.150745855,103.9244022,0,103.9244022,2.585584868,101.3388173,1.084069074,4.857308116,1.663764907,-1.663764907,0.245633134,0.205156571,1.261547466,40.57570306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93780211,1.873247435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913986845,39.00290915,80.85178896,40.87615659,501.2185011,0,0.70568866,45.11479329,-0.70568866,134.8852067,0.979147225,0,571.6184933,40.87615659,598.3711203,7,17,5% +7/4/2018 2:00,73.64672338,286.5011616,209.6237498,526.1434225,61.48329982,339.2171645,278.0075806,61.20958385,59.62935148,1.580232371,52.67965341,0,52.67965341,1.853948339,50.82570507,1.285377806,5.00038858,2.739476263,-2.739476263,0.061675657,0.29330312,0.532363084,17.12262678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31800076,1.34317926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385695242,16.45892015,57.703696,17.80209942,278.0075806,0,0.528387449,58.10343416,-0.528387449,121.8965658,0.955372468,0,323.3044845,17.80209942,334.9556025,7,18,4% +7/4/2018 3:00,84.62018183,294.9352752,30.83891868,137.3504608,17.9612648,62.86168589,45.20954269,17.6521432,17.4196664,0.232476795,8.018851279,0,8.018851279,0.541598404,7.477252875,1.476900786,5.147591632,7.51711434,-7.51711434,0,0.582422004,0.135399601,4.3549166,0.43031258,1,0.132253261,0,0.947496786,0.986258749,0.724496596,1,16.88974253,0.3923862,0.061135633,0.312029739,0.841304158,0.565800754,0.961238037,0.922476074,0.092661168,4.186111483,16.98240369,4.578497683,25.75530775,0,0.329154649,70.78252584,-0.329154649,109.2174742,0.89809572,0,40.11313535,4.578497683,43.10967051,7,19,7% +7/4/2018 4:00,95.07853933,304.16037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659433559,5.30859991,-6.588476649,6.588476649,0.343150446,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11629024,83.3219503,-0.11629024,96.6780497,0.620041303,0,0,0,0,7,20,0% +7/4/2018 5:00,104.2342016,314.675844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81923001,5.492129554,-1.686174933,1.686174933,0.818506586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089253391,95.1206567,0.089253391,84.8793433,0,0.489797197,0,0,0,7,21,0% +7/4/2018 6:00,111.7351841,326.8952972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950146853,5.705399245,-0.568733623,0.568733623,0.627412867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275950884,106.0186886,0.275950884,73.98131138,0,0.868808335,0,0,0,7,22,0% +7/4/2018 7:00,116.958098,340.9557347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041303897,5.950800174,0.032795504,-0.032795504,0.524545328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431084064,115.5363772,0.431084064,64.46362277,0,0.934013342,0,0,0,7,23,0% +7/5/2018 8:00,119.2942639,356.4160558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082077685,6.22063368,0.503723736,-0.503723736,0.444011857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544084596,122.9621303,0.544084596,57.03786968,0,0.958102526,0,0,0,7,0,0% +7/5/2018 9:00,118.4073397,12.17719372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066597936,0.212532124,0.984609546,-0.984609546,0.361775541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607253838,127.3912014,0.607253838,52.60879863,0,0.96766211,0,0,0,7,1,0% +7/5/2018 10:00,114.4303885,26.97325157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997187044,0.47077205,1.609288891,-1.609288891,0.254949081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616287315,128.0455186,0.616287315,51.95448143,0,0.96886901,0,0,0,7,2,0% +7/5/2018 11:00,107.8833583,40.04234053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88291981,0.698870682,2.685075712,-2.685075712,0.0709787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570568116,124.7898517,0.570568116,55.21014831,0,0.962368044,0,0,0,7,3,0% +7/5/2018 12:00,99.40843125,51.2944735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735004429,0.895257451,5.716226221,-5.716226221,0,#DIV/0!,0,0,0.309095752,1,0.173188023,0,0.94242177,0.981183733,0.724496596,1,0,0,0.046122713,0.312029739,0.877544211,0.602040806,0.961238037,0.922476074,0,0,0,0,0,0,-0.473209241,118.2428178,0.473209241,61.75718219,0,0.944338496,0,0,0,7,4,0% +7/5/2018 13:00,89.14882669,61.0518205,0.453592755,2.751864578,0.412713173,0.403687722,0,0.403687722,0.400268348,0.003419374,1.013645059,0.891221419,0.12242364,0.012444825,0.109978815,1.55594055,1.065555282,-66.48974078,66.48974078,0,0.909876024,0.003111206,0.100067087,1,0.90826167,0,0.01503878,0.961238037,1,0.682734615,0.958238019,0.384753161,0.008811046,0.115824807,0.264593849,0.724496596,0.448993192,0.968513926,0.929751963,0.002254058,0.096560533,0.387007219,0.105371579,0,0.081759165,-0.323860929,108.896579,0.323860929,71.10342099,0,0.895612745,0.387007219,0.178596129,0.503894814,7,5,30% +7/5/2018 14:00,78.72958548,69.7881024,119.5571832,380.7723679,45.13912156,44.67928305,0,44.67928305,43.7780105,0.901272548,88.13854877,57.78941444,30.34913432,1.361111061,28.98802326,1.374090485,1.218032166,-5.017960423,5.017960423,0.611724539,0.377552568,0.68345204,21.98216697,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.08108887,0.98612033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.495158677,21.13009502,42.57624755,22.11621535,0,57.78941444,-0.151768929,98.72945251,0.151768929,81.27054749,0,0.720551803,42.57624755,63.75648212,84.30358997,7,6,98% +7/5/2018 15:00,67.40248366,78.0289957,323.1198256,642.5878043,76.20205424,107.450945,31.11085008,76.34009488,73.90428115,2.435813732,80.64191576,0,80.64191576,2.297773091,78.34414267,1.176395264,1.361862887,-2.379087409,2.379087409,0.937001598,0.235832184,2.318550367,74.57254978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03960612,1.664728782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.679781849,71.68197135,72.71938797,73.34670013,31.11085008,0,0.04841494,87.22494342,-0.04841494,92.77505658,0,0,72.71938797,73.34670013,120.7233363,7,7,66% +7/5/2018 16:00,55.69768956,86.39817618,527.9888354,767.6038732,95.39848734,294.9512819,198.4492081,96.50207383,92.52187096,3.980202864,130.8936224,0,130.8936224,2.876616376,128.017006,0.972108069,1.507932642,-1.40619306,1.40619306,0.770626866,0.180682774,3.232205887,103.9588519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93554161,2.084098772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.341722162,99.92920276,91.27726377,102.0133015,198.4492081,0,0.258530754,75.01709987,-0.258530754,104.9829001,0.856599411,0,261.2687386,102.0133015,328.0344042,7,8,26% +7/5/2018 17:00,43.87999565,95.83376577,710.5390064,834.5883413,108.9734358,498.2469891,387.2031614,111.0438278,105.6874846,5.356343163,175.5643596,0,175.5643596,3.285951157,172.2784084,0.7658504,1.672614747,-0.865544074,0.865544074,0.678170444,0.153367281,3.89689267,125.3374638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5908302,2.380660427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.823285474,120.4791376,104.4141157,122.859798,387.2031614,0,0.463945088,62.35802871,-0.463945088,117.6419713,0.942228625,0,469.2480181,122.859798,549.6572987,7,9,17% +7/5/2018 18:00,32.31102143,108.2309439,855.8432159,872.3284299,118.5869668,688.9861539,567.523314,121.4628399,115.0111322,6.451707671,211.0849309,0,211.0849309,3.575834588,207.5090963,0.563933709,1.888986324,-0.496798412,0.496798412,0.615111222,0.138561555,4.312592439,138.7077973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5530749,2.590679987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124458542,133.3312108,113.6775335,135.9218907,567.523314,0,0.650584453,49.4143184,-0.650584453,130.5856816,0.973146027,0,665.9605917,135.9218907,754.9187507,7,10,13% +7/5/2018 19:00,21.85185249,128.5220484,953.0836955,892.5707615,124.6447143,847.2165142,719.1455504,128.0709638,120.8862163,7.184747481,234.8446744,0,234.8446744,3.758498027,231.0861764,0.381386774,2.243132907,-0.209401626,0.209401626,0.565963477,0.13078045,4.474136017,143.903594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2004292,2.723019026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241496314,138.3256082,119.4419256,141.0486273,719.1455504,0,0.805701443,36.32194808,-0.805701443,143.6780519,0.987942273,0,829.9162154,141.0486273,922.229721,7,11,11% +7/5/2018 20:00,15.40073352,168.0764855,995.2493702,900.3801391,127.2000772,958.0565091,827.1893734,130.8671357,123.3645255,7.502610148,245.1452841,0,245.1452841,3.835551646,241.3097324,0.268793507,2.933488067,0.03870068,-0.03870068,0.523535483,0.127807242,4.384758696,141.0289122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5826744,2.778844111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176742749,135.5623547,121.7594171,138.3411988,827.1893734,0,0.918711262,23.26160155,-0.918711262,156.7383985,0.995575937,0,945.2892523,138.3411988,1035.8308,7,12,10% +7/5/2018 21:00,18.09771344,216.6023835,979.333903,897.4945708,126.2400675,1011.070322,881.2542256,129.8160963,122.4334637,7.382632633,241.2574469,0,241.2574469,3.806603812,237.4508431,0.315864687,3.780424759,0.27284095,-0.27284095,0.483495139,0.12890401,4.060999335,130.6156982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6877023,2.757871504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942180194,125.5527773,120.6298825,128.3106488,881.2542256,0,0.981904798,10.91632393,-0.981904798,169.0836761,0.999078566,0,1001.072091,128.3106488,1085.048844,7,13,8% +7/5/2018 22:00,27.32989869,244.015513,906.4604176,883.2831827,121.7712697,1000.241808,875.3091098,124.9326981,118.0994166,6.833281519,223.453676,0,223.453676,3.671853068,219.7818229,0.476996716,4.258874128,0.513983037,-0.513983037,0.442257414,0.134337106,3.534056618,113.6674091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5216514,2.660245049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560411989,109.2614371,116.0820633,111.9216822,875.3091098,0,0.990972235,7.704687353,-0.990972235,172.2953126,0.9995445,0,990.9924694,111.9216822,1064.242972,7,14,7% +7/5/2018 23:00,38.56714497,259.0481135,781.8344508,854.4113488,113.7889337,923.9248323,807.6732565,116.2515759,110.3577775,5.893798338,192.9959705,0,192.9959705,3.431156188,189.5648144,0.673123663,4.521242501,0.787429351,-0.787429351,0.39549534,0.145540956,2.849507253,91.64994839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0800934,2.485860978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064458305,88.09741647,108.1445517,90.58327744,807.6732565,0,0.945297903,19.03879735,-0.945297903,160.9612027,0.997106621,0,913.4809036,90.58327744,972.765847,7,15,6% +7/5/2018 0:00,50.33484651,269.4870096,614.5527205,802.8343014,102.1037777,784.4667935,680.8090634,103.6577301,99.02497212,4.632757995,152.0842278,0,152.0842278,3.078805622,149.0054221,0.8785088,4.703435609,1.136914505,-1.136914505,0.335729859,0.166143236,2.066644848,66.47040236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.1865698,2.230584192,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497277157,63.89387907,96.68384695,66.12446327,680.8090634,0,0.848006945,32.00444905,-0.848006945,147.995551,0.991038219,0,771.3916484,66.12446327,814.6687871,7,16,6% +7/5/2018 1:00,62.12982222,278.1877168,417.5413111,709.6225053,85.81425276,587.2042582,500.830019,86.37423919,83.22663642,3.147602773,103.8253413,0,103.8253413,2.587616342,101.237725,1.084369961,4.855291596,1.66678116,-1.66678116,0.245117324,0.205522784,1.259868656,40.52170675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0006086,1.874719231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.912770553,38.95100584,80.91337916,40.82572508,500.830019,0,0.705769638,45.10824444,-0.705769638,134.8917556,0.979155354,0,571.3037738,40.82572508,598.0233944,7,17,5% +7/5/2018 2:00,73.66894641,286.3955047,209.1279226,525.0802365,61.48225435,338.671557,277.4667249,61.20483215,59.62833754,1.576494616,52.55940284,0,52.55940284,1.853916814,50.70548602,1.285765671,4.998544521,2.747153347,-2.747153347,0.060362799,0.293993521,0.530663929,17.0679761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31702612,1.343156421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38446421,16.40638784,57.70149033,17.74954426,277.4667249,0,0.528427287,58.10074559,-0.528427287,121.8992544,0.955379602,0,322.7875396,17.74954426,334.4042613,7,18,4% +7/5/2018 3:00,84.64945449,294.8351926,30.45477018,135.6433588,17.80616731,62.14013955,44.64131296,17.49882659,17.26924567,0.229580922,7.921033264,0,7.921033264,0.536921642,7.384111622,1.477411691,5.145844862,7.571643881,-7.571643881,0,0.584675806,0.134230411,4.317311417,0.43332299,1,0.131311748,0,0.94760904,0.986371003,0.724496596,1,16.74382116,0.388997902,0.06149009,0.312029739,0.840470145,0.564966741,0.961238037,0.922476074,0.091860407,4.149963951,16.83568157,4.538961853,25.29720573,0,0.329107988,70.78535703,-0.329107988,109.214643,0.898074183,0,39.55444894,4.538961853,42.52510869,7,19,8% +7/5/2018 4:00,95.11867356,304.0637104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660134034,5.306912881,-6.551803624,6.551803624,0.349421903,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116087746,83.33363144,-0.116087746,96.66636856,0.61929132,0,0,0,0,7,20,0% +7/5/2018 5:00,104.2869716,314.5827293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820151021,5.490504395,-1.685448895,1.685448895,0.818382426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089638684,95.14282121,0.089638684,84.85717879,0,0.492205111,0,0,0,7,21,0% +7/5/2018 6:00,111.8025671,326.8089022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951322909,5.703891369,-0.570465571,0.570465571,0.627709048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276544745,106.0540921,0.276544745,73.94590793,0,0.869197432,0,0,0,7,22,0% +7/5/2018 7:00,117.040585,340.8828009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042743567,5.949527239,0.030185402,-0.030185402,0.524991682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431898011,115.5880731,0.431898011,64.4119269,0,0.934231928,0,0,0,7,23,0% +7/6/2018 8:00,119.3896582,356.3650557,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083742629,6.219743561,0.500248024,-0.500248024,0.444606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545115081,123.0325282,0.545115081,56.9674718,0,0.958276249,0,0,0,7,0,0% +7/6/2018 9:00,118.5107304,12.15343144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068402445,0.212117394,0.979731376,-0.979731376,0.362609757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608482477,127.4798569,0.608482477,52.52014314,0,0.967828365,0,0,0,7,1,0% +7/6/2018 10:00,114.5360843,26.97550821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999031783,0.470811436,1.601495786,-1.601495786,0.25628178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617682144,128.1470692,0.617682144,51.85293081,0,0.969052217,0,0,0,7,2,0% +7/6/2018 11:00,107.9870817,40.06505869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884730125,0.699267189,2.669145295,-2.669145295,0.073702961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572085784,124.8958023,0.572085784,55.10419773,0,0.96260052,0,0,0,7,3,0% +7/6/2018 12:00,99.50799013,51.33191246,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73674206,0.895910884,5.656525712,-5.656525712,0,#DIV/0!,0,0,0.304187694,1,0.174979002,0,0.942191117,0.98095308,0.724496596,1,0,0,0.045482814,0.312029739,0.879128569,0.603625165,0.961238037,0.922476074,0,0,0,0,0,0,-0.474798,118.3461987,0.474798,61.65380134,0,0.944692059,0,0,0,7,4,0% +7/6/2018 13:00,89.23172513,61.10018144,0.366686761,2.28993114,0.335982164,0.328615301,0,0.328615301,0.325851062,0.00276424,0.843889204,0.744850652,0.099038552,0.010131102,0.08890745,1.557387401,1.06639934,-73.67488962,73.67488962,0,0.916264779,0.002532775,0.081462765,1,0.917555024,0,0.013572312,0.961238037,1,0.686729131,0.962232535,0.313220435,0.007187439,0.115824807,0.269128181,0.724496596,0.448993192,0.967838677,0.929076714,0.001834987,0.078582482,0.315055422,0.085769922,0,0.061409194,-0.325272074,108.9820593,0.325272074,71.01794066,0,0.896282531,0.315055422,0.14080991,0.407212692,7,5,29% +7/6/2018 14:00,78.81938237,69.8457749,117.9528212,377.1091737,44.83041098,44.36778687,0,44.36778687,43.47860868,0.88917819,87.76879913,57.81796971,29.95082941,1.351802298,28.59902712,1.375657737,1.219038741,-5.059332755,5.059332755,0.604649453,0.380070697,0.671250051,21.58970904,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.79329245,0.979376163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.486318377,20.75284953,42.27961083,21.7322257,0,57.81796971,-0.153318916,98.81931189,0.153318916,81.18068811,0,0.72388238,42.27961083,63.58563521,83.89513736,7,6,98% +7/6/2018 15:00,67.48930687,78.09624627,321.4398268,640.7929142,76.10851119,106.3251766,30.0884686,76.23670796,73.81355877,2.423149191,80.23175994,0,80.23175994,2.294952423,77.93680752,1.177910615,1.363036631,-2.3888897,2.3888897,0.938677888,0.236773744,2.309739399,74.28915874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.95240032,1.662685218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673398332,71.4095651,72.62579865,73.07225032,30.0884686,0,0.046955058,87.30868376,-0.046955058,92.69131624,0,0,72.62579865,73.07225032,120.450125,7,7,66% +7/6/2018 16:00,55.78269699,86.47692038,526.4540919,766.5618051,95.39099578,293.6539859,197.1707472,96.48323862,92.5146053,3.96863332,130.5212801,0,130.5212801,2.876390478,127.6448897,0.973591728,1.509306988,-1.410112418,1.410112418,0.771297115,0.181195278,3.225455131,103.7417244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92855758,2.08393511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.336831263,99.72049154,91.26538884,101.8044267,197.1707472,0,0.257214416,75.09516057,-0.257214416,104.9048394,0.855609652,0,259.9665832,101.8044267,326.5955443,7,8,26% +7/6/2018 17:00,43.96548903,95.92728498,709.2074431,833.8863654,109.0109909,497.0017823,385.9315697,111.0702126,105.7239073,5.346305276,175.2426391,0,175.2426391,3.287083583,171.9555555,0.767342541,1.674246965,-0.867445611,0.867445611,0.678495626,0.153708188,3.891647681,125.1687669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6258411,2.381480866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.819485497,120.3169797,104.4453266,122.6984606,385.9315697,0,0.462810745,62.43137103,-0.462810745,117.568629,0.941964479,0,467.9791565,122.6984606,548.282845,7,9,17% +7/6/2018 18:00,32.40096832,108.341173,854.7313933,871.8012805,118.6531216,687.8905385,566.37192,121.5186184,115.0752922,6.443326283,210.8173514,0,210.8173514,3.577829398,207.239522,0.565503578,1.890910184,-0.497770051,0.497770051,0.615277382,0.138819192,4.308550898,138.5778074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6147479,2.59212522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121530459,133.2062596,113.7362784,135.7983848,566.37192,0,0.649657132,49.48424388,-0.649657132,130.5157561,0.973036326,0,664.8367304,135.7983848,753.7140572,7,10,13% +7/6/2018 19:00,21.95251302,128.625523,952.1849305,892.1396661,124.7307327,846.3124979,718.1648847,128.1476132,120.9696409,7.177972211,234.6293522,0,234.6293522,3.7610918,230.8682604,0.383143631,2.244938878,-0.209846146,0.209846146,0.566039494,0.130994231,4.471057083,143.804565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2806202,2.724898206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239265637,138.2304177,119.5198858,140.9553159,718.1648847,0,0.804991541,36.39056159,-0.804991541,143.6094384,0.987887546,0,828.9860314,140.9553159,921.2384666,7,11,11% +7/6/2018 20:00,15.50689252,168.0010435,994.53909,900.0008369,127.2998152,957.3518127,826.3933009,130.9585118,123.4612561,7.497255756,244.9760759,0,244.9760759,3.838559114,241.1375167,0.270646331,2.932171356,0.038619151,-0.038619151,0.523549426,0.127998805,4.38240487,140.953205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6756554,2.781023011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.17503741,135.4895821,121.8506928,138.2706051,826.3933009,0,0.918213925,23.33364897,-0.918213925,156.666351,0.995546459,0,944.5636169,138.2706051,1035.058963,7,12,10% +7/6/2018 21:00,18.16522092,216.3303263,978.7730641,897.1370136,126.3480434,1010.546536,880.6299474,129.9165885,122.5381837,7.378404793,241.1247209,0,241.1247209,3.809859682,237.3148612,0.317042914,3.775676466,0.273069435,-0.273069435,0.483456066,0.12908819,4.059124531,130.5553981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7883631,2.760230371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940821905,125.4948145,120.729185,128.2550449,880.6299474,0,0.981600284,11.00807438,-0.981600284,168.9919256,0.999062769,0,1000.533779,128.2550449,1084.474141,7,13,8% +7/6/2018 22:00,27.36522606,243.7921541,905.999134,882.9211772,121.8816697,999.8586765,874.8223847,125.0362918,118.2064877,6.829804168,223.3451614,0,223.3451614,3.675182037,219.6699793,0.477613295,4.25497578,0.514546007,-0.514546007,0.44216114,0.134527358,3.532413837,113.6145716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6245722,2.662656875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5592218,109.2106477,116.183794,111.8733046,874.8223847,0,0.990827276,7.766392434,-0.990827276,172.2336076,0.999537118,0,990.601239,111.8733046,1063.820079,7,14,7% +7/6/2018 23:00,38.59006656,258.8776284,781.4162151,854.0135945,113.8947448,923.6227715,807.271728,116.3510435,110.460398,5.890645501,192.897755,0,192.897755,3.434346782,189.4634083,0.67352372,4.518266976,0.788445747,-0.788445747,0.395321526,0.145754263,2.847867861,91.5972199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1787361,2.488172553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.063270571,88.04673184,108.2420067,90.53490439,807.271728,0,0.945268007,19.04404774,-0.945268007,160.9559523,0.997104948,0,913.1766414,90.53490439,972.4299256,7,15,6% +7/6/2018 0:00,50.35478223,269.3478331,614.1197402,802.3495493,102.1951492,784.1671824,680.4241,103.7430824,99.11358844,4.629494007,151.9820018,0,151.9820018,3.08156081,148.900441,0.878856744,4.701006521,1.138694515,-1.138694515,0.335425459,0.166409159,2.064831868,66.41209067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.27175117,2.232580317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495963659,63.83782766,96.76771483,66.07040798,680.4241,0,0.848039487,32.00093085,-0.848039487,147.9990692,0.991040481,0,771.0955424,66.07040798,814.337303,7,16,6% +7/6/2018 1:00,62.15168344,278.0666742,417.0429037,708.9405475,85.87378542,586.8038356,500.3756161,86.42821951,83.28437395,3.143845568,103.7062918,0,103.7062918,2.589411471,101.1168804,1.084751512,4.853179006,1.670206318,-1.670206318,0.244531588,0.205911154,1.257824191,40.45594972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05610811,1.876019796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911289344,38.88779769,80.96739746,40.76381748,500.3756161,0,0.705807586,45.10517536,-0.705807586,134.8948246,0.979159163,0,570.914767,40.76381748,597.5938702,7,17,5% +7/6/2018 2:00,73.69596286,286.2849973,208.5455256,523.9043308,61.46759045,338.0244455,276.8382255,61.18622007,59.61411581,1.572104262,52.41775178,0,52.41775178,1.853474643,50.56427714,1.286237197,4.996615802,2.755868959,-2.755868959,0.058872341,0.29474423,0.528642522,17.00296069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30335565,1.34283607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382999707,16.34389256,57.68635535,17.68672863,276.8382255,0,0.528413699,58.1016626,-0.528413699,121.8983374,0.955377169,0,322.1712756,17.68672863,333.7468857,7,18,4% +7/6/2018 3:00,84.68370938,294.7307874,30.01414559,133.7197318,17.6245186,61.31302194,43.9936883,17.31933364,17.09307433,0.226259308,7.808721354,0,7.808721354,0.531444263,7.277277091,1.478009551,5.144022647,7.634509018,-7.634509018,0,0.587207074,0.132861066,4.273268584,0.43675434,1,0.130242718,0,0.947736253,0.986498216,0.724496596,1,16.57291089,0.38502956,0.061893076,0.312029739,0.839523159,0.564019754,0.961238037,0.922476074,0.09092308,4.107628304,16.66383397,4.492657864,24.77925399,0,0.328999226,70.79195614,-0.328999226,109.2080439,0.898023959,0,38.91619774,4.492657864,41.85655246,7,19,8% +7/6/2018 4:00,95.16429364,303.9632473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660930254,5.30515947,-6.509314315,6.509314315,0.356688003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115811514,83.34956587,-0.115811514,96.65043413,0.618263998,0,0,0,0,7,20,0% +7/6/2018 5:00,104.3456564,314.48646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821175264,5.488824181,-1.684190749,1.684190749,0.81816727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090105791,95.16969317,0.090105791,84.83030683,0,0.495096706,0,0,0,7,21,0% +7/6/2018 6:00,111.8762758,326.7202983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952609367,5.702344938,-0.572093401,0.572093401,0.627987423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277226425,106.0947386,0.277226425,73.9052614,0,0.869642013,0,0,0,7,22,0% +7/6/2018 7:00,117.1296719,340.8090373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044298426,5.948239821,0.027557493,-0.027557493,0.525441081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432803298,115.6455965,0.432803298,64.35440352,0,0.934474078,0,0,0,7,23,0% +7/7/2018 8:00,119.4916409,356.314982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085522562,6.218869609,0.496689371,-0.496689371,0.445214805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546237703,123.1092846,0.546237703,56.8907154,0,0.958464759,0,0,0,7,0,0% +7/7/2018 9:00,118.6203324,12.13236859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07031536,0.211749778,0.974708391,-0.974708391,0.363468738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609801272,127.575135,0.609801272,52.424865,0,0.968006075,0,0,0,7,1,0% +7/7/2018 10:00,114.6473254,26.98183751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000973306,0.470921903,1.593464065,-1.593464065,0.257655286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619162503,128.2550018,0.619162503,51.74499821,0,0.969245756,0,0,0,7,2,0% +7/7/2018 11:00,108.0955711,40.09270135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886623623,0.699749645,2.652774007,-2.652774007,0.076502617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573682034,125.0073864,0.573682034,54.99261364,0,0.962843706,0,0,0,7,3,0% +7/7/2018 12:00,99.61157021,51.37475911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738549873,0.896658699,5.595839602,-5.595839602,0,#DIV/0!,0,0,0.29912662,1,0.176837515,0,0.941951009,0.980712972,0.724496596,1,0,0,0.044820215,0.312029739,0.880772543,0.605269139,0.961238037,0.922476074,0,0,0,0,0,0,-0.476456543,118.4542278,0.476456543,61.5457722,0,0.945058635,0,0,0,7,4,0% +7/7/2018 13:00,89.31711244,61.15427913,0.289448507,1.878836293,0.267055871,0.261185136,0,0.261185136,0.259003151,0.002181985,0.692102335,0.613869474,0.078232862,0.00805272,0.070180142,1.55887769,1.067343523,-82.90035641,82.90035641,0,0.922636891,0.00201318,0.064750788,1,0.927044307,0,0.012062089,0.961238037,1,0.690860426,0.96636383,0.24896368,0.005725161,0.115824807,0.273818548,0.724496596,0.448993192,0.967135647,0.928373684,0.001458542,0.062439686,0.250422222,0.068164847,0,0.044785273,-0.326728559,109.0703321,0.326728559,70.92966788,0,0.89696777,0.250422222,0.108335793,0.321325833,7,5,28% +7/7/2018 14:00,78.91204027,69.90953152,116.3039674,373.3267381,44.5073553,44.04204276,0,44.04204276,43.16529433,0.876748433,87.37617795,57.83487356,29.54130439,1.342060977,28.19924341,1.377274922,1.220151504,-5.10271192,5.10271192,0.597231179,0.382681316,0.65875658,21.18787607,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.49212278,0.972318609,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4772669,20.3665924,41.96938968,21.33891101,0,57.83487356,-0.154917577,98.912016,0.154917577,81.087984,0,0.727247727,41.96938968,63.39919134,83.46289243,7,6,99% +7/7/2018 15:00,67.57866714,78.17008214,319.7136954,638.9508696,76.00851468,105.1712133,29.04449893,76.12671441,73.71657752,2.410136883,79.81022412,0,79.81022412,2.291937159,77.51828696,1.179470246,1.36432531,-2.399021824,2.399021824,0.940410584,0.237739314,2.300662033,73.99719944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85917826,1.66050067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666821811,71.12892273,72.52600007,72.7894234,29.04449893,0,0.045456545,87.39463405,-0.045456545,92.60536595,0,0,72.52600007,72.7894234,120.1652219,7,7,66% +7/7/2018 16:00,55.8700714,86.56304516,524.8787328,765.4980021,95.37965302,292.3275002,195.8671381,96.46036217,92.50360457,3.956757598,130.1389741,0,130.1389741,2.876048452,127.2629256,0.975116699,1.510810149,-1.414116704,1.414116704,0.771981889,0.181717504,3.218492987,103.517798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91798326,2.083687313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331787213,99.50524488,91.24977047,101.5889322,195.8671381,0,0.255868908,75.17492186,-0.255868908,104.8250781,0.854587434,0,258.6353653,101.5889322,325.1232897,7,8,26% +7/7/2018 17:00,44.05341109,96.02947028,707.8397978,833.1720881,109.0457435,495.7318239,384.6382165,111.0936074,105.757612,5.335995388,174.9120856,0,174.9120856,3.288131503,171.6239541,0.76887707,1.676030435,-0.869357719,0.869357719,0.678822615,0.15405427,3.886212714,124.9939597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6582394,2.382240081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.815547883,120.1489484,104.4737872,122.5311885,384.6382165,0,0.461655187,62.50603461,-0.461655187,117.4939654,0.941694058,0,466.6853101,122.5311885,546.8795224,7,9,17% +7/7/2018 18:00,32.49379394,108.4621116,853.5856256,871.2656648,118.7169151,686.774496,565.2026449,121.5718511,115.1371621,6.434689002,210.5414704,0,210.5414704,3.57975301,206.9617174,0.567123691,1.893020961,-0.498719299,0.498719299,0.615439713,0.139080265,4.304320862,138.4417549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6742197,2.59351887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118465812,133.0754807,113.7926855,135.6689996,565.2026449,0,0.648714471,49.55525152,-0.648714471,130.4447485,0.972924488,0,663.6921794,135.6689996,752.4848263,7,10,13% +7/7/2018 19:00,22.05724775,128.7422414,951.2515509,891.701497,124.8144896,845.3902828,717.1684745,128.2218083,121.0508723,7.170936001,234.4055691,0,234.4055691,3.763617379,230.6419517,0.384971597,2.246975999,-0.210248101,0.210248101,0.566108232,0.131210813,4.467776554,143.6990518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3587028,2.726727979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.236888904,138.1289945,119.5955917,140.8557225,717.1684745,0,0.804269677,36.4602172,-0.804269677,143.5397828,0.987831798,0,828.0374151,140.8557225,920.2246684,7,11,11% +7/7/2018 20:00,15.61926948,167.9356384,993.7906878,899.614447,127.3971398,956.6281844,825.5809244,131.04726,123.555646,7.491613984,244.7975518,0,244.7975518,3.841493812,240.956058,0.272607679,2.931029822,0.038597275,-0.038597275,0.523553167,0.128193131,4.379825116,140.8702313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7663866,2.78314919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173168387,135.4098246,121.939555,138.1929738,825.5809244,0,0.917705276,23.40711856,-0.917705276,156.5928814,0.995516277,0,943.8188033,138.1929738,1034.263341,7,12,10% +7/7/2018 21:00,18.23939685,216.0532898,978.1679835,896.7711643,126.4532354,1009.99975,879.985703,130.0140472,122.6402038,7.37384344,240.981184,0,240.981184,3.81303161,237.1681524,0.318337529,3.770841267,0.273376777,-0.273376777,0.483403507,0.129275582,4.056991471,130.4867915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8864287,2.762528422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93927651,125.4288673,120.8257052,128.1913957,879.985703,0,0.981282336,11.10307324,-0.981282336,168.8969268,0.999046265,0,999.9721352,128.1913957,1083.87084,7,13,8% +7/7/2018 22:00,27.40609572,243.5602864,905.485322,882.5481684,121.9886947,999.4450361,874.3088198,125.1362163,118.3102855,6.825930836,223.2238089,0,223.2238089,3.678409237,219.5453997,0.478326605,4.250928926,0.515214321,-0.515214321,0.442046852,0.134721891,3.530476239,113.5522518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7243466,2.66499497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557818017,109.1507436,116.2821646,111.8157386,874.3088198,0,0.990664137,7.835258252,-0.990664137,172.1647417,0.999528808,0,990.1790169,111.8157386,1063.360182,7,14,7% +7/7/2018 23:00,38.61787756,258.6996868,780.9356473,853.5995578,113.9963155,923.2792346,806.8333058,116.4459288,110.558906,5.887022778,192.7842986,0,192.7842986,3.437409514,189.3468891,0.674009113,4.515161309,0.789610074,-0.789610074,0.395122414,0.14597402,2.845897645,91.53385096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2734258,2.490391492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061843156,87.9858192,108.3352689,90.4762107,806.8333058,0,0.945212891,19.05372338,-0.945212891,160.9462766,0.997101864,0,912.8302621,90.4762107,972.0451325,7,15,6% +7/7/2018 0:00,50.37937755,269.2023771,613.6139976,801.8378805,102.2809557,783.8114553,679.9889663,103.822489,99.1968075,4.625681506,151.8619661,0,151.8619661,3.084148191,148.7778179,0.879286013,4.698467834,1.140702238,-1.140702238,0.335082118,0.166686151,2.062659478,66.34221915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.35174451,2.234454865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49438977,63.77066449,96.84613428,66.00511936,679.9889663,0,0.848037967,32.00109513,-0.848037967,147.9989049,0.991040376,0,770.7426548,66.00511936,813.9416853,7,16,6% +7/7/2018 1:00,62.17821788,277.9402241,416.4620982,708.2077027,85.92534711,586.3278767,499.8540287,86.47384807,83.33438086,3.139467211,103.5670236,0,103.5670236,2.590966246,100.9760573,1.085214625,4.850972034,1.674044253,-1.674044253,0.243875262,0.20632213,1.255411807,40.37835916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.10417666,1.877146225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909541581,38.81321469,81.01371824,40.69036091,499.8540287,0,0.705801457,45.10567101,-0.705801457,134.894329,0.979158548,0,570.4500632,40.69036091,597.0810906,7,17,5% +7/7/2018 2:00,73.72781397,286.1697232,207.8758856,522.6139489,61.4390689,337.2743161,276.1208056,61.15351052,59.58645428,1.567056233,52.25452978,0,52.25452978,1.852614613,50.40191517,1.286793104,4.99460389,2.765639053,-2.765639053,0.057201557,0.295556499,0.5262986,16.9275721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.27676634,1.342212981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.381301544,16.27142618,57.65806788,17.61363916,276.1208056,0,0.528345648,58.10625506,-0.528345648,121.8937449,0.955364982,0,321.4542163,17.61363916,332.9819909,7,18,4% +7/7/2018 3:00,84.72297313,294.6221362,29.5177585,131.5804396,17.41612947,60.38075033,43.26726409,17.11348624,16.89096891,0.222517332,7.682082854,0,7.682082854,0.525160562,7.156922292,1.478694833,5.142126327,7.706075309,-7.706075309,0,0.590022087,0.131290141,4.222742227,0.440610388,1,0.1290466,0,0.947878279,0.986640242,0.724496596,1,16.37683008,0.38047704,0.062344632,0.312029739,0.838463573,0.562960169,0.961238037,0.922476074,0.089848385,4.059060448,16.46667847,4.439537487,24.20325806,0,0.328827478,70.80237638,-0.328827478,109.1976236,0.897944581,0,38.19986288,4.439537487,41.10545137,7,19,8% +7/7/2018 4:00,95.21541888,303.8590536,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661822558,5.303340948,-6.461256456,6.461256456,0.364906381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115460756,83.36979853,-0.115460756,96.63020147,0.616952429,0,0,0,0,7,20,0% +7/7/2018 5:00,104.410263,314.3871069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822302862,5.487090142,-1.682402081,1.682402081,0.81786139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09065526,95.20130482,0.09065526,84.79869518,0,0.498460022,0,0,0,7,21,0% +7/7/2018 6:00,111.9563041,326.6295552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954006125,5.700761172,-0.573613241,0.573613241,0.628247331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277996184,106.1406471,0.277996184,73.85935294,0,0.870141416,0,0,0,7,22,0% +7/7/2018 7:00,117.2253388,340.7345153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045968128,5.946939167,0.024916664,-0.024916664,0.525892689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433799866,115.7089521,0.433799866,64.29104793,0,0.934739476,0,0,0,7,23,0% +7/8/2018 8:00,119.6001774,356.2659091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087416882,6.218013127,0.493053827,-0.493053827,0.445836519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547452073,123.1923895,0.547452073,56.80761051,0,0.958667804,0,0,0,7,0,0% +7/8/2018 9:00,118.7360955,12.11407922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072335807,0.211430568,0.969548996,-0.969548996,0.364351046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611209511,127.6770099,0.611209511,52.32299007,0,0.96819499,0,0,0,7,1,0% +7/8/2018 10:00,114.7640478,26.99230455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003010497,0.471104587,1.585207743,-1.585207743,0.2590672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620727395,128.3692722,0.620727395,51.63072781,0,0.969449342,0,0,0,7,2,0% +7/8/2018 11:00,108.208753,40.12531789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888599019,0.700318911,2.635993865,-2.635993865,0.07937219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575355632,125.1245411,0.575355632,54.8754589,0,0.963097227,0,0,0,7,3,0% +7/8/2018 12:00,99.71909327,51.42304551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740426505,0.897501456,5.534318424,-5.534318424,0,#DIV/0!,0,0,0.293920194,1,0.178761904,0,0.94170158,0.980463543,0.724496596,1,0,0,0.044135657,0.312029739,0.88247465,0.606971245,0.961238037,0.922476074,0,0,0,0,0,0,-0.478183472,118.5668288,0.478183472,61.43317124,0,0.945437624,0,0,0,7,4,0% +7/8/2018 13:00,89.40486495,61.21412973,0.221999245,1.518518354,0.206226578,0.20168161,0,0.20168161,0.200008086,0.001673524,0.558465323,0.498420544,0.060044779,0.006218492,0.053826287,1.560409261,1.068388113,-95.14048796,95.14048796,0,0.928951709,0.001554623,0.050002022,1,0.936709403,0,0.010510385,0.961238037,1,0.695123783,0.970627188,0.19225538,0.004431052,0.115824807,0.278659624,0.724496596,0.448993192,0.966405198,0.927643235,0.001126319,0.048199545,0.193381699,0.052630597,0,0.031545334,-0.328228198,109.1612696,0.328228198,70.83873042,0,0.897666958,0.193381699,0.080947801,0.246360416,7,5,27% +7/8/2018 14:00,79.00748239,69.97937429,114.6123711,369.4257804,44.16996752,43.70207649,0,43.70207649,42.83808003,0.863996466,86.95954983,57.83856603,29.12098381,1.331887491,27.78909632,1.378940701,1.22137049,-5.148143001,5.148143001,0.589462007,0.385385688,0.645990695,20.77728134,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.17759195,0.964947953,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.46801806,19.97191312,41.64561001,20.93686107,0,57.83856603,-0.156563427,99.00748113,0.156563427,80.99251887,0,0.730640612,41.64561001,63.19606638,83.00617153,7,6,99% +7/8/2018 15:00,67.67049289,78.25049168,317.9427174,637.0619548,75.90211978,103.9904384,27.9802611,76.01017732,73.61339082,2.396786504,79.37762182,0,79.37762182,2.28872896,77.08889286,1.181072907,1.365728721,-2.409481185,2.409481185,0.94219924,0.238728914,2.29132299,73.69682373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.75999127,1.658176341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660055706,70.84019017,72.42004698,72.49836651,27.9802611,0,0.043920785,87.48271463,-0.043920785,92.51728537,0,0,72.42004698,72.49836651,119.8687779,7,7,66% +7/8/2018 16:00,55.95974752,86.65652311,523.263749,764.4126481,95.36450912,290.9730358,194.5395353,96.43350048,92.48891731,3.944583168,129.7469459,0,129.7469459,2.875591808,126.8713541,0.976681843,1.512441647,-1.418202917,1.418202917,0.772680672,0.182249409,3.211322572,103.2871728,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90386531,2.083356476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.326592272,99.28355918,91.23045758,101.3669157,194.5395353,0,0.254495443,75.25631017,-0.254495443,104.7436898,0.853532828,0,257.2763373,101.3669157,323.6189562,7,8,26% +7/8/2018 17:00,44.1437043,96.14027101,706.4367331,832.44559,109.0777254,494.438084,383.3240359,111.114048,105.7886295,5.325418494,174.5728607,0,174.5728607,3.289095875,171.2837648,0.770452984,1.677964273,-0.871278202,0.871278202,0.679151037,0.154405512,3.880589244,124.8130895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6880546,2.382938765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.811473697,119.9750892,104.4995283,122.3580279,383.3240359,0,0.460479388,62.58195413,-0.460479388,117.4180459,0.941417507,0,465.3674865,122.3580279,545.4483686,7,9,17% +7/8/2018 18:00,32.58944889,108.5936655,852.4062225,870.7215858,118.7783588,685.638681,564.0161298,121.6225512,115.196753,6.425798163,210.2573632,0,210.2573632,3.581605763,206.6757575,0.568793185,1.895317009,-0.499644528,0.499644528,0.615597936,0.139344781,4.299902249,138.2996372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7315007,2.594861183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115264542,132.9388717,113.8467653,135.5337329,564.0161298,0,0.647757146,49.627287,-0.647757146,130.372713,0.972810578,0,662.5276223,135.5337329,751.2317398,7,10,13% +7/8/2018 19:00,22.16600829,128.8720316,950.283512,891.2561976,124.8959758,844.4501583,716.1566184,128.2935399,121.1299013,7.163638515,234.173314,0,234.173314,3.766074488,230.4072395,0.386869827,2.249241265,-0.210606216,0.210606216,0.566169474,0.131430225,4.464292967,143.5870077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4346686,2.728508147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234365058,138.0212934,119.6690336,140.7498016,716.1566184,0,0.8035362,36.5308761,-0.8035362,143.4691239,0.98777505,0,827.0706731,140.7498016,919.1886032,7,11,11% +7/8/2018 20:00,15.73780291,167.8803632,993.0037887,899.2208596,127.4920226,955.885529,824.7521793,131.1333497,123.6476677,7.485682006,244.6096201,0,244.6096201,3.844354877,240.7652652,0.274676478,2.930065088,0.038636121,-0.038636121,0.523546524,0.128390268,4.377016854,140.7799079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8548414,2.785222022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171133811,135.3230023,122.0259752,138.1082243,824.7521793,0,0.917185328,23.48199592,-0.917185328,156.5180041,0.995485391,0,943.0547205,138.1082243,1033.443791,7,12,10% +7/8/2018 21:00,18.32026585,215.7718782,977.5180032,896.3968569,126.5555971,1009.429495,879.3210727,130.1084225,122.7394789,7.368943614,240.8266754,0,240.8266754,3.816118192,237.0105572,0.319748959,3.765929707,0.273763945,-0.273763945,0.483337298,0.129466257,4.054596777,130.4097699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9818557,2.764764639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937541563,125.3548312,120.9193973,128.1195959,879.3210727,0,0.980950642,11.20133116,-0.980950642,168.7986688,0.999029036,0,999.3866807,128.1195959,1083.238394,7,13,8% +7/8/2018 22:00,27.45257794,243.3202393,904.9181081,882.1639189,122.0922816,999.0000781,873.7676743,125.2324038,118.4107489,6.821654938,223.0894049,0,223.0894049,3.681532764,219.4078721,0.479137873,4.246739313,0.515988967,-0.515988967,0.441914379,0.134920807,3.528240033,113.4803277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8209158,2.667257955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556197893,109.0816074,116.3771137,111.7488654,873.7676743,0,0.990482217,7.911349811,-0.990482217,172.0886502,0.999519538,0,989.7249758,111.7488654,1062.862373,7,14,7% +7/8/2018 23:00,38.6506484,258.5144758,780.3917435,853.1688957,114.0935665,922.8931319,806.3569848,116.5361471,110.6532245,5.882922602,192.6553553,0,192.6553553,3.440341989,189.2150133,0.674581073,4.511928767,0.790923527,-0.790923527,0.394897801,0.146200376,2.843592823,91.45971996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3640883,2.49251606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06017332,87.91456167,108.4242616,90.40707773,806.3569848,0,0.945131719,19.06796474,-0.945131719,160.9320353,0.997097321,0,912.4406508,90.40707773,971.6102751,7,15,6% +7/8/2018 0:00,50.40869465,269.0507711,613.0344566,801.298768,102.3610972,783.3983102,679.502465,103.8958451,99.27453245,4.621312681,151.7238662,0,151.7238662,3.086564753,148.6373015,0.879797693,4.69582181,1.142939538,-1.142939538,0.334699517,0.16697446,2.060124379,66.26068165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.42645669,2.236205657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.4925531,63.69228755,96.91900979,65.92849321,679.502465,0,0.848001385,32.00505014,-0.848001385,147.9949499,0.991037832,0,770.3316597,65.92849321,813.4805399,7,16,6% +7/8/2018 1:00,62.20947781,277.8084691,415.7979423,707.4230565,85.96879896,585.7749265,499.2639435,86.51098301,83.37652248,3.134460523,103.4073015,0,103.4073015,2.59227648,100.8150251,1.085760214,4.848672476,1.678299212,-1.678299212,0.243147621,0.206756191,1.252629275,40.28886336,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14468479,1.878095485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.907525646,38.72718793,81.05221044,40.60528341,499.2639435,0,0.705750172,45.10981882,-0.705750172,134.8901812,0.9791534,0,569.9081983,40.60528341,596.4835442,7,17,5% +7/8/2018 2:00,73.76454128,286.0497713,207.118332,521.2071927,61.39643616,336.4195912,275.3131387,61.10645256,59.54510708,1.561345474,52.06956662,0,52.06956662,1.851329079,50.21823754,1.287434117,4.992510333,2.776481498,-2.776481498,0.05534739,0.296431685,0.523632108,16.84180857,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23702183,1.341281616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.37936968,16.18898701,57.61639151,17.53026862,275.3131387,0,0.528222063,58.11459467,-0.528222063,121.8854053,0.955342841,0,320.6348275,17.53026862,332.1080377,7,18,4% +7/8/2018 3:00,84.76727165,294.5093203,28.96648607,129.2266697,17.18082876,59.34395453,42.46282954,16.88112499,16.66276338,0.218361607,7.541325287,0,7.541325287,0.518065378,7.023259909,1.479467988,5.140157318,7.786768111,-7.786768111,0,0.593127821,0.129516344,4.165690845,0.444895338,1,0.127723886,0,0.948034956,0.986796919,0.724496596,1,16.15541393,0.375336602,0.062844796,0.312029739,0.837291818,0.561788414,0.961238037,0.922476074,0.088635623,4.00422049,16.24404955,4.379557092,23.57131462,0,0.328591843,70.81667164,-0.328591843,109.1833284,0.897835541,0,37.40721357,4.379557092,40.27354609,7,19,8% +7/8/2018 4:00,95.27206807,303.7512061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662811273,5.301458653,-6.407904129,6.407904129,0.374030166,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115034673,83.39437509,-0.115034673,96.60562491,0.615348439,0,0,0,0,7,20,0% +7/8/2018 5:00,104.4807974,314.2847442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823533921,5.485303575,-1.6800856,1.6800856,0.817465248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091287644,95.2376886,0.091287644,84.7623114,0,0.502280746,0,0,0,7,21,0% +7/8/2018 6:00,112.0426445,326.5367464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95551305,5.699141354,-0.575021327,0.575021327,0.628488128,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278854271,106.1918359,0.278854271,73.80816409,0,0.870694874,0,0,0,7,22,0% +7/8/2018 7:00,117.3275638,340.6593102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047752292,5.94562659,0.02226788,-0.02226788,0.526345658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434887626,115.7781436,0.434887626,64.22185644,0,0.93502777,0,0,0,7,23,0% +7/9/2018 8:00,119.7152302,356.2179156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089424931,6.217175482,0.489347596,-0.489347596,0.446470322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548757751,123.2818312,0.548757751,56.71816883,0,0.958885114,0,0,0,7,0,0% +7/9/2018 9:00,118.8579655,12.09864101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074462841,0.211161121,0.9642618,-0.9642618,0.36525521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612706422,127.7854532,0.612706422,52.21454678,0,0.968394849,0,0,0,7,1,0% +7/9/2018 10:00,114.886183,27.00697707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005142159,0.471360671,1.57674111,-1.57674111,0.260515079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622375749,128.4898326,0.622375749,51.51016743,0,0.96966268,0,0,0,7,2,0% +7/9/2018 11:00,108.3265489,40.16295909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890654946,0.700975873,2.618837133,-2.618837133,0.082306164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577105266,125.247199,0.577105266,54.75280102,0,0.963360694,0,0,0,7,3,0% +7/9/2018 12:00,99.83047642,51.47680396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742370507,0.898439718,5.472108777,-5.472108777,0,#DIV/0!,0,0,0.288576254,1,0.180750422,0,0.941442972,0.980204935,0.724496596,1,0,0,0.043429907,0.312029739,0.884233327,0.608729923,0.961238037,0.922476074,0,0,0,0,0,0,-0.479977308,118.68392,0.479977308,61.31608003,0,0.945828409,0,0,0,7,4,0% +7/9/2018 13:00,89.49485892,61.27974875,0.164239757,1.207783142,0.153591625,0.15019838,0,0.15019838,0.148960271,0.001238109,0.442742383,0.398289198,0.044453185,0.004631354,0.03982183,1.561979952,1.06953338,-112.1112411,112.1112411,0,0.935167152,0.001157839,0.037240068,1,0.946530655,0,0.008919476,0.961238037,1,0.699514408,0.975017812,0.143186279,0.003307923,0.115824807,0.283645984,0.724496596,0.448993192,0.965647716,0.926885753,0.00083885,0.035883603,0.144025129,0.039191527,0,0.021296262,-0.3297688,109.2547432,0.3297688,70.74525678,0,0.898378622,0.144025129,0.058323634,0.182196781,7,5,27% +7/9/2018 14:00,79.105628,70.05530393,112.8798638,365.4071853,43.81827592,43.34792933,0,43.34792933,42.49699323,0.850936094,86.51779044,57.8274779,28.69031255,1.321282691,27.36902986,1.380653666,1.222695712,-5.195672422,5.195672422,0.581333997,0.388185053,0.632972117,20.3585591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.84972635,0.957264812,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.458586144,19.56942138,41.30831249,20.52668619,0,57.8274779,-0.158254901,99.10561892,0.158254901,80.89438108,0,0.734054018,41.30831249,62.97517872,82.52430746,7,6,100% +7/9/2018 15:00,67.76470904,78.3374614,316.1282445,635.1265065,75.78938867,102.7842889,26.89712169,75.88716721,73.50405897,2.38310824,78.93428259,0,78.93428259,2.285329701,76.64895289,1.182717289,1.367246629,-2.420264733,2.420264733,0.944043335,0.239742541,2.281727308,73.38819361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65489734,1.655713589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.653103667,70.54352315,72.30800101,72.19923674,26.89712169,0,0.042349235,87.5728417,-0.042349235,92.4271583,0,0,72.30800101,72.19923674,119.5609575,7,7,65% +7/9/2018 16:00,56.05165714,86.75732436,521.6101829,763.3059506,95.3456184,289.591858,193.1891439,96.40271411,92.47059622,3.932117888,129.34545,0,129.34545,2.875022183,126.4704278,0.978285968,1.51420096,-1.422367814,1.422367814,0.773392911,0.182790945,3.203947203,103.0499555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88625438,2.082943784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.321248842,99.05553697,91.20750322,101.1384807,193.1891439,0,0.253095294,75.33924837,-0.253095294,104.6607516,0.852445951,0,255.8908067,101.1384807,322.0839196,7,8,26% +7/9/2018 17:00,44.23630881,96.25963323,704.9989467,831.7069616,109.1069707,493.1215777,381.9900049,111.1315728,105.816993,5.314579853,174.2251345,0,174.2251345,3.289977728,170.9351568,0.772069238,1.680047537,-0.873204729,0.873204729,0.679480493,0.154761892,3.874778848,124.6262072,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7153186,2.383577665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.807264085,119.7954508,104.5225827,122.1790284,381.9900049,0,0.459284366,62.65906139,-0.459284366,117.3409386,0.941134984,0,464.0267397,122.1790284,543.9904702,7,9,17% +7/9/2018 18:00,32.68788204,108.7357353,851.1935117,870.1690502,118.8374648,684.4837778,562.8130448,121.670733,115.2540768,6.416656236,209.9651097,0,209.9651097,3.583388027,206.3817217,0.570511167,1.897796596,-0.500544027,0.500544027,0.61575176,0.139612747,4.295295004,138.1514523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7866025,2.596152427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.111926609,132.7964308,113.8985291,135.3925832,562.8130448,0,0.646785868,49.70029382,-0.646785868,130.2997062,0.972694662,0,661.3437737,135.3925832,749.9555115,7,10,13% +7/9/2018 19:00,22.27874496,129.0147124,949.2807713,890.8037104,124.9751821,843.4924264,715.1296276,128.3627987,121.2067193,7.156079432,233.9325762,0,233.9325762,3.768462851,230.1641134,0.388837453,2.251731514,-0.210919158,0.210919158,0.56622299,0.131652495,4.460604829,143.4683845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5085089,2.730238507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.231693014,137.9072683,119.7402019,140.6375068,715.1296276,0,0.802791478,36.60249816,-0.802791478,143.3975018,0.987717326,0,826.0861254,140.6375068,918.1305609,7,11,11% +7/9/2018 20:00,15.86242843,167.8352925,992.1780055,898.8199608,127.584434,955.1237463,823.9069969,131.2167495,123.7372926,7.479456903,244.4121859,0,244.4121859,3.847141421,240.5650445,0.276851604,2.929278455,0.0387368,-0.0387368,0.523529307,0.128590266,4.373977422,140.6821494,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9409922,2.787240863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168931753,135.2290331,122.1099239,138.0162739,823.9069969,0,0.916654094,23.55826671,-0.916654094,156.4417333,0.995453797,0,942.2712726,138.0162739,1032.600164,7,12,10% +7/9/2018 21:00,18.40784876,215.4867087,976.8224417,896.0139181,126.6550801,1008.835279,878.6356171,130.1996623,122.8359621,7.363700177,240.6610282,0,240.6610282,3.819117971,236.8419102,0.321277569,3.760952562,0.274231951,-0.274231951,0.483257264,0.129660289,4.051936968,130.3242213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0745991,2.766937969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93561454,125.2725987,121.0102136,128.0395366,878.6356171,0,0.980604876,11.30286012,-0.980604876,168.6971399,0.999011063,0,998.7769156,128.0395366,1082.576232,7,13,8% +7/9/2018 22:00,27.50474268,243.0723606,904.2965885,881.7681808,122.1923649,998.5229592,873.1981752,125.3247839,118.5078143,6.81696966,222.9417281,0,222.9417281,3.684550644,219.2571775,0.48004832,4.242413014,0.516870976,-0.516870976,0.441763547,0.135124213,3.525701318,113.3986739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9142187,2.669444399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554358603,109.0031187,116.4685773,111.6725631,873.1981752,0,0.990280886,7.994721593,-0.990280886,172.0052784,0.999509275,0,989.2382523,111.6725631,1062.325711,7,14,7% +7/9/2018 23:00,38.68845039,258.322195,779.7834664,852.7212487,114.1864152,922.4633285,805.8417179,116.6216106,110.7432735,5.878337152,192.5106712,0,192.5106712,3.44314172,189.0675294,0.675240842,4.508572834,0.792387363,-0.792387363,0.39464747,0.146433491,2.840949522,91.37470234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4506468,2.494544456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058258258,87.83283949,108.508905,90.32738395,805.8417179,0,0.945023616,19.08691506,-0.945023616,160.9130849,0.997091269,0,912.0066464,90.32738395,971.1241126,7,15,6% +7/9/2018 0:00,50.4427967,268.8931535,612.38005,800.7316566,102.43547,782.9263925,678.9633504,103.9630421,99.34666261,4.616379487,151.5674404,0,151.5674404,3.088807366,148.478633,0.880392886,4.693070865,1.145408414,-1.145408414,0.334277315,0.167274342,2.057223222,66.16737048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.49579093,2.237830422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490451221,63.60259331,96.98624215,65.84042373,678.9633504,0,0.847928697,32.01290729,-0.847928697,147.9870927,0.991032778,0,769.8611772,65.84042373,812.9524178,7,16,6% +7/9/2018 1:00,62.24551629,277.6715188,415.0494615,706.5856359,86.00399582,585.1434708,498.6039946,86.53947618,83.41065802,3.128818158,103.226885,0,103.226885,2.593337795,100.6335472,1.086389204,4.846282242,1.682975833,-1.682975833,0.242347872,0.207213848,1.249474397,40.18739165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.17749717,1.878864404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.905239947,38.62964945,81.08273712,40.50851386,498.6039946,0,0.705652605,45.11770884,-0.705652605,134.8822912,0.979143605,0,569.2876497,40.50851386,595.7996618,7,17,5% +7/9/2018 2:00,73.80618673,285.9252359,206.2721962,519.6820147,61.33942348,335.458626,274.4138455,61.04478049,59.48981354,1.554966945,51.86269204,0,51.86269204,1.849609936,50.0130821,1.288160967,4.99033678,2.78841618,-2.78841618,0.053306439,0.297371263,0.520643205,16.74567516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18387158,1.340036103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.377204229,16.09657992,57.56107581,17.43661602,274.4138455,0,0.528041837,58.12675516,-0.528041837,121.8732448,0.955310533,0,319.7115128,17.43661602,331.1234293,7,18,4% +7/9/2018 3:00,84.8166302,294.3924256,28.36137757,126.65999,16.91846833,58.20349995,41.58138581,16.62211414,16.40831409,0.213800044,7.386698592,0,7.386698592,0.510154243,6.876544349,1.480329457,5.13811712,7.877079349,-7.877079349,0,0.596531966,0.127538561,4.102078523,0.449613859,1,0.126275128,0,0.948206103,0.986968066,0.724496596,1,15.9085193,0.369605012,0.063393609,0.312029739,0.836008381,0.560504977,0.961238037,0.922476074,0.087284219,3.943073906,15.99580352,4.312678918,22.88581848,0,0.328291403,70.83489662,-0.328291403,109.1651034,0.897696286,0,36.54031777,4.312678918,39.36287987,7,19,8% +7/9/2018 4:00,95.33425949,303.6397857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.663896718,5.299514001,-6.349553703,6.349553703,0.384008677,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114532444,83.42334213,-0.114532444,96.57665787,0.613442477,0,0,0,0,7,20,0% +7/9/2018 5:00,104.5572646,314.1794502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824868525,5.483465848,-1.677245063,1.677245063,0.816979488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092003496,95.27887728,0.092003496,84.72112272,0,0.506542392,0,0,0,7,21,0% +7/9/2018 6:00,112.1352879,326.4419498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957129981,5.697486841,-0.576313987,0.576313987,0.628709186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279800919,106.2483233,0.279800919,73.75167671,0,0.871301516,0,0,0,7,22,0% +7/9/2018 7:00,117.4363225,340.5835017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04965049,5.944303482,0.01961619,-0.01961619,0.526799124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436066457,115.8531736,0.436066457,64.14682635,0,0.935338578,0,0,0,7,23,0% +7/10/2018 8:00,119.836758,356.1710844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091545992,6.216358124,0.485577031,-0.485577031,0.447115127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550154255,123.3775961,0.550154255,56.62240388,0,0.959116399,0,0,0,7,0,0% +7/10/2018 9:00,118.9858843,12.08613575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076695444,0.210942863,0.958855622,-0.958855622,0.366179721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614291173,127.9004337,0.614291173,52.09956633,0,0.968605374,0,0,0,7,1,0% +7/10/2018 10:00,115.0136576,27.02592579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00736701,0.471691388,1.568078718,-1.568078718,0.261996436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624106421,128.6166311,0.624106421,51.38336888,0,0.969885458,0,0,0,7,2,0% +7/10/2018 11:00,108.4488754,40.20567731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892789945,0.701721447,2.60133627,-2.60133627,0.085298988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578929542,125.3752875,0.578929542,54.62471252,0,0.963633704,0,0,0,7,3,0% +7/10/2018 12:00,99.94563168,51.53606712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744380346,0.899474055,5.409353002,-5.409353002,0,#DIV/0!,0,0,0.283102811,1,0.182801223,0,0.941175342,0.979937305,0.724496596,1,0,0,0.042703766,0.312029739,0.886046927,0.610543522,0.961238037,0.922476074,0,0,0,0,0,0,-0.481836481,118.8054143,0.481836481,61.19458567,0,0.946230356,0,0,0,7,4,0% +7/10/2018 13:00,89.58697355,61.35115113,0.115857313,0.94438787,0.10904959,0.106634724,0,0.106634724,0.105761342,0.000873381,0.344300424,0.31292123,0.031379194,0.003288247,0.028090947,1.563587655,1.070779587,-137.1419696,137.1419696,0,0.941240455,0.000822062,0.026440336,1,0.956489223,0,0.007291585,0.961238037,1,0.704027572,0.979530976,0.101661825,0.002354434,0.115824807,0.288772265,0.724496596,0.448993192,0.96486359,0.926101627,0.000595581,0.025466724,0.102257406,0.027821158,0,0.013615446,-0.33134821,109.3506268,0.33134821,70.64937321,0,0.899101343,0.102257406,0.040062824,0.128477723,7,5,26% +7/10/2018 14:00,79.20639201,70.13731989,111.1083643,361.2720303,43.45232696,42.97966076,0,42.97966076,42.14207898,0.837581782,86.04979523,57.80003796,28.24975727,1.31024798,26.93950929,1.382412329,1.224127161,-5.245347706,5.245347706,0.572839023,0.391080611,0.619721232,19.93236509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.50856926,0.949270201,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.448985923,19.15974749,40.95755519,20.10901769,0,57.80003796,-0.159990348,99.206336,0.159990348,80.793664,0,0.737481148,40.95755519,62.73545604,82.01665646,7,6,100% +7/10/2018 15:00,67.86123668,78.430976,314.2717003,633.144923,75.6703918,101.5542595,25.79649643,75.75776312,73.38865029,2.369112826,78.48055376,0,78.48055376,2.281741507,76.19881226,1.184402015,1.368878767,-2.431368886,2.431368886,0.945942257,0.240780165,2.271880383,73.07148265,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.54396213,1.653113954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645969604,70.23908853,72.18993173,71.89220248,25.79649643,0,0.040743431,87.66492701,-0.040743431,92.33507299,0,0,72.18993173,71.89220248,119.2419404,7,7,65% +7/10/2018 16:00,56.14572874,86.86541669,519.9191345,762.1781447,95.32304008,288.1852922,191.8172234,96.36806877,92.44869872,3.919370051,128.9347549,0,128.9347549,2.874341363,126.0604136,0.979927827,1.516087527,-1.426607894,1.426607894,0.774118008,0.18334205,3.196370424,102.8062603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86520567,2.082450533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.315759491,98.82128781,91.18096516,100.9037383,191.8172234,0,0.251669803,75.42365546,-0.251669803,104.5763445,0.851326979,0,254.4801425,100.9037383,320.5196211,7,8,26% +7/10/2018 17:00,44.33116199,96.38749986,703.5271768,830.9563059,109.1335164,491.7833707,380.6371475,111.1462232,105.8427382,5.30348503,173.8690873,0,173.8690873,3.290778179,170.5783092,0.773724738,1.68227923,-0.875134828,0.875134828,0.679810559,0.155123384,3.86878323,124.4333675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7400659,2.384157589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.80292028,119.6100859,104.5429862,121.9942435,380.6371475,0,0.458071194,62.73728493,-0.458071194,117.2627151,0.940846662,0,462.6641757,121.9942435,542.5069682,7,9,17% +7/10/2018 18:00,32.78904018,108.8882173,849.9478434,869.6080686,118.8942468,683.3105062,561.5940937,121.7164125,115.3091466,6.407265863,209.6647952,0,209.6647952,3.585100215,206.079695,0.57227671,1.900457908,-0.501415995,0.501415995,0.615900875,0.139884168,4.290499115,137.9972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8395377,2.597392902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.108452003,132.6481576,113.9479897,135.2455505,561.5940937,0,0.645801383,49.77421294,-0.645801383,130.2257871,0.972576815,0,660.1413847,135.2455505,748.6568926,7,10,13% +7/10/2018 19:00,22.39540637,129.1700944,948.2432915,890.3439774,125.0520996,842.5174063,714.0878305,128.4295758,121.2813174,7.148258471,233.6833466,0,233.6833466,3.770782195,229.9125644,0.390873578,2.254443443,-0.211185534,0.211185534,0.566268543,0.131877653,4.456710622,143.3431335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5802154,2.731918864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.228871675,137.7868722,119.8090871,140.5187911,714.0878305,0,0.802035897,36.67504165,-0.802035897,143.3249583,0.987658651,0,825.0841102,140.5187911,917.0508486,7,11,11% +7/10/2018 20:00,15.99307873,167.8004839,991.3129411,898.4116327,127.6743436,954.3427347,823.045308,131.2974267,123.824491,7.472935683,244.2051521,0,244.2051521,3.849852527,240.3552996,0.279131881,2.92867093,0.038900471,-0.038900471,0.523501317,0.128793177,4.370704089,140.5768677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0248107,2.78920505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.166560234,135.1278323,122.1913709,137.9170374,823.045308,0,0.916111589,23.63591617,-0.916111589,156.3640838,0.995421496,0,941.4683627,137.9170374,1031.732305,7,12,10% +7/10/2018 21:00,18.50216254,215.1984103,976.0805954,895.6221676,126.7516345,1008.216593,877.9288798,130.2877129,122.929605,7.358107827,240.4840705,0,240.4840705,3.822029443,236.662041,0.322923655,3.755920805,0.274781846,-0.274781846,0.483163226,0.129857755,4.049008459,130.2300304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1646122,2.769047321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933492845,125.1820588,121.0981051,127.9511061,877.9288798,0,0.980244696,11.40767279,-0.980244696,168.5923272,0.998992328,0,998.1423205,127.9511061,1081.88376,7,13,8% +7/10/2018 22:00,27.56265945,242.8170168,903.6198288,881.3606949,122.2888767,998.012802,872.5995181,125.4132839,118.6014159,6.81186796,222.7805501,0,222.7805501,3.687460831,219.0930892,0.481059158,4.237956423,0.517861428,-0.517861428,0.44159417,0.135332219,3.522856083,113.3071614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0041922,2.67155282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55229724,108.9151533,116.5564894,111.5867062,872.5995181,0,0.990059488,8.085417082,-0.990059488,171.9145829,0.999497984,0,988.7179487,111.5867062,1061.749216,7,14,7% +7/10/2018 23:00,38.73135564,258.1230563,779.1097449,852.2562402,114.2747761,921.9886442,805.2864159,116.7022284,110.82897,5.873258355,192.349984,0,192.349984,3.44580613,188.9041779,0.67598968,4.505097208,0.794002913,-0.794002913,0.394371195,0.146673529,2.837963776,91.27867047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5330216,2.496474811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.056095095,87.74053001,108.5891167,90.23700482,805.2864159,0,0.944887673,19.11072,-0.944887673,160.88928,0.997083657,0,911.5270413,90.23700482,970.5853562,7,15,6% +7/10/2018 0:00,50.48174787,268.7296714,611.6496788,800.1359614,102.5039661,782.3942941,678.3703271,104.023967,99.41309332,4.610873641,151.3924188,0,151.3924188,3.090872777,148.3015461,0.881072713,4.690217564,1.14811101,-1.14811101,0.333815143,0.16758607,2.053952605,66.0621762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.55964666,2.239326805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488081671,63.50147656,97.04772833,65.74080337,678.3703271,0,0.847818821,32.02478108,-0.847818821,147.9752189,0.991025136,0,769.3297738,65.74080337,812.3558148,7,16,6% +7/10/2018 1:00,62.28638719,277.5294893,414.2156578,705.6944072,86.03078586,584.4319348,497.872762,86.55917284,83.43664024,3.122532594,103.0255275,0,103.0255275,2.594145613,100.4313819,1.087102536,4.84380336,1.688079173,-1.688079173,0.241475149,0.207695639,1.245945003,40.0738742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20247227,1.879449666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902682913,38.52053217,81.10515518,40.39998183,497.872762,0,0.705507592,45.12943375,-0.705507592,134.8705662,0.97912904,0,568.5868349,40.39998183,595.027815,7,17,5% +7/10/2018 2:00,73.85279276,285.7962169,205.3368102,518.0362104,61.26774592,334.389705,273.421492,60.96821294,59.42029733,1.54791561,51.63373554,0,51.63373554,1.847448594,49.78628694,1.288974395,4.988084974,2.801465134,-2.801465134,0.051074936,0.298376827,0.51733226,16.63918379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.11704996,1.338470217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374805461,15.99421636,57.49185542,17.33268658,273.421492,0,0.527803822,58.14281229,-0.527803822,121.8571877,0.955267833,0,318.6826115,17.33268658,330.0265082,7,18,4% +7/10/2018 3:00,84.87107336,294.2715429,27.70366357,123.8824095,16.62892899,56.96051385,40.62416651,16.33634734,16.12750543,0.208841918,7.218497537,0,7.218497537,0.501423563,6.717073973,1.48127967,5.136007318,7.977575716,-7.977575716,0,0.600242959,0.125355891,4.031876357,0.454771111,1,0.124700938,0,0.948391522,0.987153485,0.724496596,1,15.63603041,0.363279665,0.063991115,0.312029739,0.834613798,0.559110394,0.961238037,0.922476074,0.085793745,3.875592914,15.72182415,4.238872578,22.14946915,0,0.327925221,70.85710687,-0.327925221,109.1428931,0.897526214,0,35.60155334,4.238872578,38.37581067,7,19,8% +7/10/2018 4:00,95.40201105,303.5248781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665079206,5.297508485,-6.286519627,6.286519627,0.394788138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113953232,83.45674726,-0.113953232,96.54325274,0.611223501,0,0,0,0,7,20,0% +7/10/2018 5:00,104.6396686,314.0713077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826306745,5.481578406,-1.673885229,1.673885229,0.816404923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092803379,95.32490408,0.092803379,84.67509592,0,0.511226512,0,0,0,7,21,0% +7/10/2018 6:00,112.2342232,326.3452474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958856729,5.695799065,-0.577487646,0.577487646,0.628909893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280836354,106.3101272,0.280836354,73.68987277,0,0.871960372,0,0,0,7,22,0% +7/10/2018 7:00,117.5515881,340.5071738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051662254,5.942971309,0.016966712,-0.016966712,0.527252211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437336214,115.9340442,0.437336214,64.06595577,0,0.935671485,0,0,0,7,23,0% +7/11/2018 8:00,119.9647168,356.1255032,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093779294,6.215562581,0.48174862,-0.48174862,0.447769824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551641056,123.4796693,0.551641056,56.52033071,0,0.959361351,0,0,0,7,0,0% +7/11/2018 9:00,119.1197894,12.07664942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079032529,0.210777295,0.953339451,-0.953339451,0.367123042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61596287,128.0219175,0.61596287,51.9780825,0,0.968826276,0,0,0,7,1,0% +7/11/2018 10:00,115.1463933,27.04922455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009683685,0.472098029,1.559235319,-1.559235319,0.263508746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625918194,128.7496123,0.625918194,51.25038775,0,0.970117356,0,0,0,7,2,0% +7/11/2018 11:00,108.5756438,40.25352662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895002472,0.702556575,2.583523773,-2.583523773,0.088345104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580826983,125.5087292,0.580826983,54.49127076,0,0.963915845,0,0,0,7,3,0% +7/11/2018 12:00,100.0644662,51.60086814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7464544,0.900605046,5.346188551,-5.346188551,0,#DIV/0!,0,0,0.277508014,1,0.184912372,0,0.940898862,0.979660825,0.724496596,1,0,0,0.041958064,0.312029739,0.88791372,0.612410316,0.961238037,0.922476074,0,0,0,0,0,0,-0.483759337,118.9312195,0.483759337,61.06878051,0,0.946642822,0,0,0,7,4,0% +7/11/2018 13:00,89.68109583,61.42835146,0.076341471,0.725173027,0.072305231,0.070700455,0,0.070700455,0.070124961,0.000575494,0.262146939,0.241456796,0.020690143,0.002180269,0.018509873,1.565230399,1.072126987,-177.6559253,177.6559253,0,0.947129132,0.000545067,0.01753124,1,0.966567602,0,0.005628799,0.961238037,1,0.708658848,0.984162252,0.06740678,0.001565149,0.115824807,0.294033432,0.724496596,0.448993192,0.964053173,0.92529121,0.000394899,0.016878329,0.067801679,0.018443478,0,0.00807248,-0.332964392,109.4488011,0.332964392,70.55119886,0,0.899833793,0.067801679,0.025707368,0.084626638,7,5,25% +7/11/2018 14:00,79.30968524,70.22542067,109.2998739,357.0215916,43.07218567,42.59734897,0,42.59734897,41.77340036,0.823948618,85.55448652,57.75468134,27.79980518,1.298785318,26.50101986,1.384215136,1.225664809,-5.297217504,5.297217504,0.563968765,0.394073517,0.606259026,19.49937429,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.15418135,0.940965541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.439232601,18.74354026,40.59341395,19.6845058,0,57.75468134,-0.161768035,99.30953421,0.161768035,80.69046579,0,0.740915452,40.59341395,62.47584163,81.48260278,7,6,101% +7/11/2018 15:00,67.95999333,78.53101873,312.3745763,631.1176637,75.54520764,100.3018976,24.67984523,75.6220524,73.2672409,2.354811504,78.01679932,0,78.01679932,2.277966743,75.73883257,1.186125643,1.370624842,-2.442789532,2.442789532,0.947895302,0.241841729,2.261787955,72.74687547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42725881,1.650379151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.638657674,69.92706376,72.06591648,71.57744291,24.67984523,0,0.039104983,87.75887811,-0.039104983,92.24112189,0,0,72.06591648,71.57744291,118.9119213,7,7,65% +7/11/2018 16:00,56.24188775,86.98076599,518.1917576,761.0294923,95.29683805,286.7547194,190.4250843,96.32963513,92.42328678,3.906348354,128.5151423,0,128.5151423,2.873551275,125.641591,0.981606119,1.518100752,-1.430919396,1.430919396,0.774855318,0.183902651,3.188595993,102.5562079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84077874,2.081878117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.310126943,98.58092792,91.15090568,100.662806,190.4250843,0,0.250220374,75.50944683,-0.250220374,104.4905532,0.850176144,0,253.0457696,100.662806,318.9275629,7,8,26% +7/11/2018 17:00,44.42819885,96.52381132,702.0221987,830.1937374,109.1574022,490.4245753,379.2665316,111.1580437,105.8659038,5.29213987,173.5049082,0,173.5049082,3.291498425,170.2134098,0.775418351,1.684658314,-0.877065885,0.877065885,0.680140789,0.155489958,3.86260421,124.234629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7623335,2.384679404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.798443602,119.4190509,104.5607771,121.8037303,379.2665316,0,0.456840993,62.81655032,-0.456840993,117.1834497,0.940552729,0,461.2809485,121.8037303,540.9990539,7,9,17% +7/11/2018 18:00,32.89286833,109.0510039,848.6695878,869.0386557,118.9487199,682.1196174,560.3600105,121.7596069,115.3619771,6.397629833,209.3565099,0,209.3565099,3.586742778,205.7697671,0.574088853,1.90329907,-0.502258547,0.502258547,0.61604496,0.140159046,4.285514604,137.836881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8903204,2.598582933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104840742,132.4940529,113.9951611,135.0926359,560.3600105,0,0.644804471,49.84898305,-0.644804471,130.1510169,0.972457113,0,658.9212394,135.0926359,747.3366677,7,10,13% +7/11/2018 19:00,22.51593987,129.3379819,947.1710388,889.8769398,125.1267192,841.5254318,713.0315695,128.4938623,121.3536869,7.140175377,233.4256166,0,233.4256166,3.773032251,229.6525843,0.392977285,2.257373631,-0.211403889,0.211403889,0.566305884,0.132105728,4.452608799,143.2112047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6497798,2.733549022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.225899918,137.6600573,119.8756797,140.3936063,713.0315695,0,0.801269858,36.74846344,-0.801269858,143.2515366,0.98759905,0,824.0649806,140.3936063,915.9497881,7,11,11% +7/11/2018 20:00,16.12968414,167.7759785,990.4081873,897.9957535,127.7617202,953.5423897,822.1670415,131.3753482,123.9092329,7.466115266,243.9884188,0,243.9884188,3.852487254,240.1359316,0.281516096,2.92824323,0.03912834,-0.03912834,0.523462349,0.128999055,4.367194044,140.4639726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1062678,2.791113901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.164017219,135.0193133,122.270285,137.8104272,822.1670415,0,0.915557828,23.7149294,-0.915557828,156.2850706,0.995388485,0,940.6458909,137.8104272,1030.840059,7,12,10% +7/11/2018 21:00,18.60322032,214.9076188,975.2917385,895.2214179,126.8452087,1007.572906,877.2003872,130.3725187,123.0203576,7.352161089,240.2956246,0,240.2956246,3.824851051,236.4707735,0.324687446,3.750845536,0.275414727,-0.275414727,0.483054997,0.130058734,4.045807565,130.1270787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2518471,2.771091566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931173808,125.0830976,121.1830209,127.8541892,877.2003872,0,0.97986975,11.51578251,-0.97986975,168.4842175,0.99897281,0,997.4823565,127.8541892,1081.160366,7,13,8% +7/11/2018 22:00,27.62639717,242.5545903,902.8868649,880.941191,122.3817469,997.4686962,871.970868,125.4978282,118.6914857,6.806342569,222.6056349,0,222.6056349,3.690261209,218.9153737,0.482171591,4.233376217,0.518961457,-0.518961457,0.441406054,0.135544941,3.519700206,113.2056575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0907707,2.673581684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550010818,108.817584,116.6407815,111.4911657,871.970868,0,0.989817342,8.183468696,-0.989817342,171.8165313,0.999485629,0,988.1631333,111.4911657,1061.131871,7,14,7% +7/11/2018 23:00,38.77943697,257.9172828,778.369475,851.7734758,114.3585607,921.4678548,804.6899487,116.7779061,110.9102282,5.867677887,192.1730234,0,192.1730234,3.448332545,188.7246909,0.676828857,4.501505782,0.795771588,-0.795771588,0.394068733,0.146920665,2.834631519,91.17149364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.61113,2.49830519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053680886,87.63750757,108.6648109,90.13581276,804.6899487,0,0.944722948,19.13952698,-0.944722948,160.860473,0.997074431,0,911.0005832,90.13581276,969.99267,7,15,6% +7/11/2018 0:00,50.52561329,268.5604795,610.8422127,799.5110671,102.5664735,781.8005548,677.7220523,104.0785025,99.47371591,4.60478662,151.1985242,0,151.1985242,3.092757606,148.1057665,0.881838309,4.687264608,1.151049632,-1.151049632,0.33331261,0.167909931,2.050309069,65.94498756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.6179194,2.240692358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.485441941,63.38883038,97.10336134,65.62952274,677.7220523,0,0.847670633,32.04078874,-0.847670633,147.9592113,0.991014826,0,768.7359629,65.62952274,811.6891729,7,16,6% +7/11/2018 1:00,62.33214524,277.3825027,413.2955102,704.7482731,86.04901038,583.6386842,497.0687728,86.56991136,83.45431523,3.115596132,102.8029766,0,102.8029766,2.59469515,100.2082814,1.087901164,4.841237959,1.693614742,-1.693614742,0.240528511,0.208202142,1.242038946,39.94824199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.21946214,1.879847803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899852989,38.39976971,81.11931513,40.27961751,497.0687728,0,0.705313928,45.14508859,-0.705313928,134.8549114,0.979109581,0,567.8041129,40.27961751,594.166317,7,17,5% +7/11/2018 2:00,73.90440233,285.6628189,204.3115075,516.2674112,61.18110154,333.2110424,272.3345904,60.87645204,59.33626559,1.540186445,51.38252638,0,51.38252638,1.844835946,49.53769044,1.289875152,4.98575674,2.815652707,-2.815652707,0.048648718,0.299450101,0.513699857,16.52235323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.03627545,1.336577363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372173798,15.88191438,57.40844925,17.21849175,272.3345904,0,0.527506839,58.16284373,-0.527506839,121.8371563,0.955214499,0,317.5463986,17.21849175,328.815557,7,18,4% +7/11/2018 3:00,84.93062514,294.1467669,26.99476633,120.8964488,16.31212752,55.61641606,39.59266142,16.02375464,15.82025669,0.203497951,7.037064461,0,7.037064461,0.49187083,6.545193631,1.482319044,5.133829566,8.08890858,-8.08890858,0,0.604270002,0.122967707,3.955064172,0.460372785,1,0.123001977,0,0.948591,0.987352963,0.724496596,1,15.33786558,0.356358742,0.064637361,0.312029739,0.833108652,0.557605248,0.961238037,0.922476074,0.084163958,3.80175812,15.42202954,4.158116862,21.36527763,0,0.327492344,70.88335853,-0.327492344,109.1166415,0.897324675,0,34.59362035,4.158116862,37.31502467,7,19,8% +7/11/2018 4:00,95.4753405,303.4065725,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666359046,5.295443662,-6.219130242,6.219130242,0.406312402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113296178,83.49463908,-0.113296178,96.50536092,0.608678844,0,0,0,0,7,20,0% +7/11/2018 5:00,104.7280128,313.9604029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827848642,5.479642751,-1.670011816,1.670011816,0.81574253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093687858,95.37580275,0.093687858,84.62419725,0,0.516312911,0,0,0,7,21,0% +7/11/2018 6:00,112.3394387,326.2467245,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960693086,5.694079517,-0.578538854,0.578538854,0.629089661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281960791,106.3772658,0.281960791,73.62273422,0,0.87267038,0,0,0,7,22,0% +7/11/2018 7:00,117.6733321,340.4304144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053787087,5.941631605,0.014324595,-0.014324595,0.52770404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438696727,116.0207567,0.438696727,63.97924327,0,0.936026047,0,0,0,7,23,0% +7/12/2018 8:00,120.0990598,356.0812635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096124021,6.214790452,0.477868926,-0.477868926,0.44843329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553217593,123.5880345,0.553217593,56.41196547,0,0.959619649,0,0,0,7,0,0% +7/12/2018 9:00,119.2596151,12.07027187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081472949,0.210665986,0.947722377,-0.947722377,0.368083618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617720574,128.1498691,0.617720574,51.8501309,0,0.969057253,0,0,0,7,1,0% +7/12/2018 10:00,115.2843082,27.07695008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012090754,0.47258193,1.550225743,-1.550225743,0.265049474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627809796,128.8887175,0.627809796,51.11128252,0,0.970358044,0,0,0,7,2,0% +7/12/2018 11:00,108.7067618,40.30656276,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897290913,0.70348223,2.565431913,-2.565431913,0.091438994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582796048,125.647443,0.582796048,54.35255698,0,0.964206693,0,0,0,7,3,0% +7/12/2018 12:00,100.1868834,51.67124079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748590983,0.90183328,5.282747029,-5.282747029,0,#DIV/0!,0,0,0.27180008,1,0.187081861,0,0.94061371,0.979375673,0.724496596,1,0,0,0.041193652,0.312029739,0.889831915,0.614328511,0.961238037,0.922476074,0,0,0,0,0,0,-0.485744153,119.0612388,0.485744153,60.93876121,0,0.947065153,0,0,0,7,4,0% +7/12/2018 13:00,89.77712768,61.51136416,0.045009074,0.546238513,0.04288429,0.041930468,0,0.041930468,0.04159117,0.000339297,0.19498599,0.1827799,0.012206091,0.00129312,0.010912971,1.566906471,1.073575832,-254.2613973,254.2613973,0,0.952792104,0.00032328,0.010397793,1,0.976750357,0,0.00393294,0.961238037,1,0.713404473,0.988907877,0.039979015,0.0009308,0.115824807,0.299425185,0.724496596,0.448993192,0.963216717,0.924454754,0.000234215,0.010005957,0.04021323,0.010936757,0,0.004249567,-0.334615549,109.5491614,0.334615549,70.45083863,0,0.900574786,0.04021323,0.014763811,0.049875849,7,5,24% +7/12/2018 14:00,79.41541546,70.31960411,107.4564576,352.6573206,42.67793303,42.20108806,0,42.20108806,41.39103589,0.810052167,85.03081751,57.68985813,27.34095938,1.286897146,26.05406223,1.386060477,1.22730862,-5.351332048,5.351332048,0.554714633,0.397164898,0.592606908,19.06027523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.78663808,0.932352601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.429341687,18.32146154,40.21597977,19.25381414,0,57.68985813,-0.163586164,99.41511168,0.163586164,80.58488832,0,0.744350678,40.21597977,62.19529915,80.92155916,7,6,101% +7/12/2018 15:00,68.060894,78.63757186,310.4384123,629.0452361,75.41392086,99.02878684,23.54865806,75.48012878,73.1399129,2.340215882,77.54339516,0,77.54339516,2.274007962,75.2693872,1.187886692,1.372484545,-2.454522121,2.454522121,0.949901693,0.242927157,2.251456016,72.41456481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.30486629,1.647511027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.631172219,69.60763411,71.93603851,71.25514514,23.54865806,0,0.037435556,87.85459935,-0.037435556,92.14540065,0,0,71.93603851,71.25514514,118.5711059,7,7,65% +7/12/2018 16:00,56.34005768,87.10333682,516.429242,759.8602747,95.2670795,285.3015589,189.0140716,96.28748732,92.39442556,3.893061767,128.0869027,0,128.0869027,2.872653945,125.2142487,0.983319507,1.520240017,-1.435298351,1.435298351,0.775604163,0.184472667,3.180627811,102.2999237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.81303624,2.081228004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.304354022,98.33457786,91.11739026,100.4158059,189.0140716,0,0.248748458,75.59653526,-0.248748458,104.4034647,0.848993729,0,251.5891517,100.4158059,317.3092883,7,8,26% +7/12/2018 17:00,44.52735304,96.6685063,700.48481,829.4193778,109.1786695,489.0463338,377.8792537,111.1670801,105.8865297,5.280550384,173.1327918,0,173.1327918,3.29213971,169.8406521,0.777148918,1.687183718,-0.878995175,0.878995175,0.680470717,0.15586158,3.856243668,124.0300521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.78216,2.385144013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79383541,119.2224038,104.5759954,121.6075478,377.8792537,0,0.455594918,62.89678115,-0.455594918,117.1032189,0.940253385,0,459.8782429,121.6075478,539.4679508,7,9,17% +7/12/2018 18:00,32.9993109,109.2239848,847.3591231,868.4608271,119.0008992,680.9118807,559.1115466,121.8003341,115.4125831,6.387750996,209.040346,0,209.040346,3.588316179,205.4520298,0.575946626,1.906318156,-0.503069727,0.503069727,0.61618368,0.140437385,4.280341492,137.670496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9389648,2.599722856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10109284,132.3341173,114.0400576,134.9338401,559.1115466,0,0.643795931,49.92454158,-0.643795931,130.0754584,0.972335638,0,657.6841402,134.9338401,745.9956399,7,10,13% +7/12/2018 19:00,22.64029275,129.5181731,946.0639741,889.4025364,125.1990315,840.51684,711.9611913,128.5556487,121.4238188,7.131829856,233.1593764,0,233.1593764,3.775212736,229.3841637,0.395147652,2.260518563,-0.211572722,0.211572722,0.566334756,0.13233675,4.448297759,143.0725469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7171932,2.735128776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222776584,137.5267741,119.9399698,140.2619029,711.9611913,0,0.800493772,36.82271997,-0.800493772,143.17728,0.987538552,0,823.0290939,140.2619029,914.827704,7,11,11% +7/12/2018 20:00,16.27217387,167.7617996,989.4633198,897.5721962,127.8465314,952.722596,821.2721168,131.4504792,123.9914867,7.458992456,243.7618821,0,243.7618821,3.855044624,239.9068375,0.28400301,2.927995762,0.039421653,-0.039421653,0.52341219,0.129207954,4.363444394,140.343371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1853333,2.792966707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16130061,134.9033864,122.3466339,137.6963531,821.2721168,0,0.914992822,23.79529229,-0.914992822,156.2047077,0.995354763,0,939.8037468,137.6963531,1029.923256,7,12,10% +7/12/2018 21:00,18.71103174,214.614971,974.4551207,894.8114738,126.9357493,1006.903667,876.4496443,130.4540224,123.1081681,7.345854311,240.095507,0,240.095507,3.827581184,236.2679259,0.32656911,3.745737868,0.276131731,-0.276131731,0.482932383,0.13026331,4.042330495,130.0152441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3362538,2.773069538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928654683,124.975598,121.2649085,127.7486676,876.4496443,0,0.979479667,11.62720419,-0.979479667,168.3727958,0.998952488,0,996.7964613,127.7486676,1080.405409,7,13,8% +7/12/2018 22:00,27.69602389,242.2854765,902.0967039,880.5093878,122.4709028,996.8896986,871.3113594,125.5783392,118.7779532,6.800386001,222.4167396,0,222.4167396,3.692949588,218.72379,0.483386807,4.228679294,0.520172244,-0.520172244,0.441198997,0.135762499,3.516229466,113.0940266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1738865,2.675529405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.547496278,108.7102801,116.7213828,111.3858095,871.3113594,0,0.989553742,8.288898014,-0.989553742,171.711102,0.999472173,0,987.5728408,111.3858095,1060.472625,7,14,7% +7/12/2018 23:00,38.83276753,257.7051062,777.5615231,851.2725443,114.4376775,920.8996957,804.0511492,116.8485465,110.9869593,5.861587204,191.9795118,0,191.9795118,3.450718206,188.5287936,0.677759651,4.497802602,0.797694879,-0.797694879,0.393739831,0.147175078,2.830948607,91.05303851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6848869,2.500033594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.051012629,87.52364399,108.7358995,90.02367758,804.0511492,0,0.944528465,19.17348421,-0.944528465,160.8265158,0.997063533,0,910.425979,90.02367758,969.3446755,7,15,6% +7/12/2018 0:00,50.57445866,268.3857383,609.9564951,798.8563289,102.6228763,781.143669,677.0171413,104.1265276,99.52841793,4.598109707,150.9854724,0,150.9854724,3.094458358,147.8910141,0.882690821,4.6842148,1.154226752,-1.154226752,0.33276929,0.168246223,2.046289115,65.815692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.67050106,2.241924547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482529498,63.26454657,97.15303056,65.50647112,677.0171413,0,0.847482979,32.0610494,-0.847482979,147.9389506,0.991001765,0,768.0782125,65.50647112,810.9508877,7,16,6% +7/12/2018 1:00,62.38284563,277.2306851,412.2879797,703.7460736,86.05850405,582.7620325,496.1905089,86.57152358,83.46352263,3.108000942,102.5589754,0,102.5589754,2.594981419,99.96399398,1.088786053,4.838588242,1.699588531,-1.699588531,0.239506933,0.208733963,1.237754118,39.8104272,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22831265,1.880055205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896748645,38.26729688,81.12506129,40.14735209,496.1905089,0,0.705070376,45.16477008,-0.705070376,134.8352299,0.979085093,0,566.9377919,40.14735209,593.2134309,7,17,5% +7/12/2018 2:00,73.96105869,285.5251498,203.1956282,514.3730839,61.07917122,331.9207893,271.151606,60.76918332,59.23740885,1.531774476,51.10889494,0,51.10889494,1.84176237,49.26713257,1.290863992,4.983353961,2.831005717,-2.831005717,0.046023199,0.30059294,0.509746805,16.3952095,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.94125059,1.334350568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369309825,15.75969899,57.31056041,17.09404956,271.151606,0,0.527149679,58.18692837,-0.527149679,121.8130716,0.955150279,0,316.3010925,17.09404956,327.488806,7,18,4% +7/12/2018 3:00,84.9953087,294.018195,26.23631409,117.7052316,15.96802637,54.17295907,38.4886472,15.68431188,15.48653146,0.197780418,6.842793015,0,6.842793015,0.481494911,6.361298104,1.483447986,5.131585564,8.211825547,-8.211825547,0,0.608623083,0.120373728,3.871632865,0.466425117,1,0.121178953,0,0.948804307,0.98756627,0.724496596,1,15.01398654,0.348841424,0.065332402,0.312029739,0.831493569,0.555990165,0.961238037,0.922476074,0.082394838,3.721560774,15.09638138,4.070402198,20.53657543,0,0.326991814,70.91370781,-0.326991814,109.0862922,0.897090973,0,33.51955783,4.070402198,36.18355466,7,19,8% +7/12/2018 4:00,95.55426545,303.2849601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667736546,5.293321126,-6.147723983,6.147723983,0.418523591,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112560412,83.53706674,-0.112560412,96.46293326,0.605794093,0,0,0,0,7,20,0% +7/12/2018 5:00,104.8223002,313.8468236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829494268,5.477660419,-1.66563153,1.66563153,0.814993457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094657502,95.43160726,0.094657502,84.56839274,0,0.521779847,0,0,0,7,21,0% +7/12/2018 6:00,112.4509218,326.1464687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962638833,5.692329722,-0.579464349,0.579464349,0.629247929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28317444,106.4497569,0.28317444,73.55024308,0,0.873430391,0,0,0,7,22,0% +7/12/2018 7:00,117.8015251,340.3533136,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056024477,5.940285942,0.011694951,-0.011694951,0.528153735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440147808,116.1133123,0.440147808,63.88668774,0,0.936401797,0,0,0,7,23,0% +7/13/2018 8:00,120.2397389,356.0384597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098579336,6.214043386,0.473944518,-0.473944518,0.449104404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554883271,123.7026752,0.554883271,56.29732485,0,0.959890958,0,0,0,7,0,0% +7/13/2018 9:00,119.405294,12.06709577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084015525,0.210610552,0.942013484,-0.942013484,0.369059896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619563307,128.2842519,0.619563307,51.71574813,0,0.969297997,0,0,0,7,1,0% +7/13/2018 10:00,115.4273181,27.10918134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.014586748,0.473144472,1.541064734,-1.541064734,0.266616099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629779911,129.0338866,0.629779911,50.96611337,0,0.970607185,0,0,0,7,2,0% +7/13/2018 11:00,108.8421346,40.36484275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899653614,0.704499408,2.547092392,-2.547092392,0.094575237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584835153,125.7913452,0.584835153,54.20865479,0,0.964505823,0,0,0,7,3,0% +7/13/2018 12:00,100.3127845,51.7472193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750788372,0.903159356,5.219153037,-5.219153037,0,#DIV/0!,0,0,0.265987191,1,0.189307644,0,0.940320076,0.979082039,0.724496596,1,0,0,0.040411388,0.312029739,0.891799685,0.616296281,0.961238037,0.922476074,0,0,0,0,0,0,-0.487789163,119.195373,0.487789163,60.80462704,0,0.947496698,0,0,0,7,4,0% +7/13/2018 13:00,89.87499563,61.60020357,0.021037983,0.403155108,0.020158405,0.019709148,0,0.019709148,0.019550555,0.000158593,0.141289927,0.135581174,0.005708753,0.00060785,0.005100903,1.568614589,1.075126372,-453.4327179,453.4327179,0,0.958190953,0.000151963,0.004887639,1,0.987025071,0,0.002205395,0.961238037,1,0.718261838,0.993765242,0.018792737,0.000438769,0.115824807,0.30494452,0.724496596,0.448993192,0.962354283,0.92359232,0.000110096,0.004701182,0.018902833,0.00513995,0,0.001759156,-0.336300276,109.6516265,0.336300276,70.34837353,0,0.901323345,0.018902833,0.006725519,0.023304551,7,5,23% +7/13/2018 14:00,79.52348917,70.41986759,105.5802139,348.180795,42.26966029,41.79098233,0,41.79098233,40.99507408,0.79590825,84.47777285,57.60404139,26.87373145,1.274586216,25.59914524,1.387946719,1.229058548,-5.407743994,5.407743994,0.545067622,0.400355888,0.578786452,18.61576186,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.40602453,0.923433375,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419328814,17.89417839,39.82535334,18.81761176,0,57.60404139,-0.165442903,99.52296455,0.165442903,80.47703545,0,0.747780931,39.82535334,61.89281548,80.33296321,7,6,102% +7/13/2018 15:00,68.16385293,78.75061693,308.4647651,626.9281714,75.27661888,97.7365219,22.40443313,75.33208877,73.00675108,2.325337695,77.06072138,0,77.06072138,2.2698678,74.79085358,1.189683665,1.374457553,-2.466561853,2.466561853,0.951960609,0.244036361,2.240890655,72.07474648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17686608,1.644511494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623517651,69.28098781,71.80038373,70.92549931,22.40443313,0,0.035736842,87.95199369,-0.035736842,92.04800631,0,0,71.80038373,70.92549931,118.2197045,7,7,65% +7/13/2018 16:00,56.44016184,87.23309285,514.6327846,758.6707803,95.23383262,283.8272395,187.585539,96.2417005,92.36218119,3.879519312,127.6503283,0,127.6503283,2.871651429,124.7786768,0.985066654,1.522504687,-1.439740665,1.439740665,0.776363844,0.185052013,3.172469797,102.037534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.78204172,2.080501685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298443569,98.08235885,91.08048529,100.1628605,187.585539,0,0.247255521,75.68483272,-0.247255521,104.3151673,0.847780046,0,250.1117623,100.1628605,315.6663512,7,8,26% +7/13/2018 17:00,44.62855867,96.82152221,698.9158053,828.6333487,109.1973594,487.6497913,376.4764126,111.1733787,105.9046561,5.268722564,172.752932,0,172.752932,3.29270328,169.4602288,0.778915289,1.689854349,-0.880919913,0.880919913,0.680799867,0.156238217,3.849703452,123.8196963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7995837,2.385552318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789097046,119.0202018,104.5886808,121.4057541,376.4764126,0,0.454334131,62.97790076,-0.454334131,117.0220992,0.939948836,0,458.4572466,121.4057541,537.9148845,7,9,17% +7/13/2018 18:00,33.10831341,109.4070474,846.0168161,867.8745955,119.0507996,679.6880588,557.8494479,121.8386108,115.4609787,6.377632119,208.7163928,0,208.7163928,3.589820858,205.1265719,0.577849079,1.909513202,-0.503847548,0.503847548,0.616316695,0.140719188,4.274979731,137.4980433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9854845,2.600812991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.097208263,132.1683492,114.0826928,134.7691622,557.8494479,0,0.642776561,50.00082637,-0.642776561,129.9991736,0.972212472,0,656.4308833,134.7691622,744.6346046,7,10,13% +7/13/2018 19:00,22.76841392,129.7104611,944.9220405,888.9207009,125.2690261,839.4919532,710.8770289,128.6149242,121.4917027,7.123221478,232.884612,0,232.884612,3.77732333,229.1072887,0.397383788,2.263874621,-0.211690509,0.211690509,0.566354899,0.132570753,4.443775818,142.9271057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7824458,2.736657894,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219500453,137.3869705,120.0019463,140.1236284,710.8770289,0,0.799708037,36.89776901,-0.799708037,143.102231,0.987477182,0,821.9767916,140.1236284,913.6849039,7,11,11% +7/13/2018 20:00,16.42047741,167.7579494,988.4778921,897.1408275,127.9287431,951.8832164,820.360433,131.5227834,124.0712195,7.451563886,243.5254328,0,243.5254328,3.857523612,239.6679092,0.286591396,2.927928563,0.039781677,-0.039781677,0.523350622,0.129419934,4.359452153,140.2149668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2619755,2.794762725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158408245,134.7799594,122.4203837,137.5747221,820.360433,0,0.914416564,23.87699317,-0.914416564,156.1230068,0.995320326,0,938.941797,137.5747221,1028.981701,7,12,10% +7/13/2018 21:00,18.82560305,214.3210961,973.5699681,894.3921322,127.023201,1006.208295,875.6761307,130.5321645,123.1929828,7.339181657,239.8835285,0,239.8835285,3.830218176,236.0533104,0.328568757,3.740608784,0.276934017,-0.276934017,0.482795183,0.130471569,4.038573377,129.8944023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.417781,2.77498003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925932664,124.8594403,121.3437136,127.6344203,875.6761307,0,0.979074054,11.74195571,-0.979074054,168.2580443,0.99893134,0,996.0840443,127.6344203,1079.61822,7,13,8% +7/13/2018 22:00,27.77160612,242.0100783,901.2483301,880.0649935,122.5562698,996.2748353,870.6200986,125.6547367,118.8607461,6.793990601,222.2136156,0,222.2136156,3.695523719,218.5180919,0.484705965,4.223872689,0.521495009,-0.521495009,0.440972791,0.135985017,3.512439574,112.9721306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2534702,2.677394355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.544750514,108.5931091,116.7982207,111.2705034,870.6200986,0,0.989267957,8.401715964,-0.989267957,171.598284,0.999457577,0,986.9460746,111.2705034,1059.770394,7,14,7% +7/13/2018 23:00,38.89141993,257.4867642,776.6847365,850.7530194,114.5120326,920.2828712,803.3688213,116.9140499,111.0590723,5.854977617,191.7691668,0,191.7691668,3.452960287,188.3162065,0.678783329,4.493991815,0.799774349,-0.799774349,0.393384221,0.147436955,2.826910857,90.9231706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7542046,2.501657974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.048087293,87.39881002,108.8022919,89.90046799,803.3688213,0,0.944303227,19.21273916,-0.944303227,160.7872608,0.997050906,0,909.8019033,89.90046799,968.6399616,7,15,6% +7/13/2018 0:00,50.62834936,268.2056121,608.9913571,798.1710762,102.6730555,780.4220997,676.2541815,104.1679182,99.57708408,4.590834089,150.7529766,0,150.7529766,3.095971447,147.6570052,0.883631391,4.681071004,1.157645001,-1.157645001,0.332184735,0.168595259,2.041889253,65.67417734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.71728081,2.243020774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479341813,63.12851729,97.19662263,65.37153807,676.2541815,0,0.847254682,32.08568278,-0.847254682,147.9143172,0.990985868,0,767.3549594,65.37153807,810.1393236,7,16,6% +7/13/2018 1:00,62.43854321,277.0741648,411.1920252,702.686593,86.05909608,581.80026,495.236424,86.56383598,83.46409681,3.099739174,102.2932664,0,102.2932664,2.594999271,99.69826712,1.089758159,4.835856449,1.706007005,-1.706007005,0.238409309,0.209291744,1.233088498,39.6603648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22886457,1.880068138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.893368419,38.1230512,81.12223298,40.00311934,495.236424,0,0.704775684,45.18857528,-0.704775684,134.8114247,0.979055441,0,565.9861485,40.00311934,592.16739,7,17,5% +7/13/2018 2:00,74.02280457,285.3833185,201.9885344,512.3505429,60.96162012,330.517054,269.8709768,60.64607724,59.12340235,1.522674893,50.81267648,0,50.81267648,1.838217771,48.97445871,1.291941661,4.980878539,2.847553525,-2.847553525,0.043193357,0.301807329,0.505474184,16.25778732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83166321,1.331782518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366214326,15.62760356,57.19787753,16.95938608,269.8709768,0,0.526731123,58.21514513,-0.526731123,121.7848549,0.955074909,0,314.944876,16.95938608,326.044455,7,18,4% +7/13/2018 3:00,85.06514568,293.8859253,25.43016213,114.3126106,15.59664765,52.63228395,37.31422947,15.31805448,15.12635118,0.191703304,6.636133701,0,6.636133701,0.470296472,6.165837229,1.484666871,5.129277022,8.347183448,-8.347183448,0,0.613312946,0.117574118,3.781587795,0.472934877,1,0.119232637,0,0.949031198,0.987793161,0.724496596,1,14.66441172,0.340728193,0.066076293,0.312029739,0.829769232,0.554265828,0.961238037,0.922476074,0.080486655,3.635006028,14.74489838,3.975734221,19.66702896,0,0.326422686,70.94820968,-0.326422686,109.0517903,0.896824372,0,32.38276928,3.975734221,34.98480781,7,19,8% +7/13/2018 4:00,95.63880289,303.1601324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669212003,5.291142471,-6.072646298,6.072646298,0.431362632,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111745071,83.58407893,-0.111745071,96.41592107,0.602552972,0,0,0,0,7,20,0% +7/13/2018 5:00,104.9225333,313.7306578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831243665,5.475632944,-1.660752152,1.660752152,0.814159034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095712866,95.49235099,0.095712866,84.50764901,0,0.527604191,0,0,0,7,21,0% +7/13/2018 6:00,112.5686595,326.0445669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964693742,5.690551201,-0.580261141,0.580261141,0.629384189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284477487,106.527618,0.284477487,73.47238201,0,0.874239167,0,0,0,7,22,0% +7/13/2018 7:00,117.9361372,340.2759615,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058373901,5.938935894,0.009082774,-0.009082774,0.528600444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441689244,116.2117113,0.441689244,63.78828867,0,0.93679824,0,0,0,7,23,0% +7/14/2018 8:00,120.3867057,355.997187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10114439,6.213323041,0.469981874,-0.469981874,0.449782056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556637471,123.823574,0.556637471,56.17642605,0,0.96017493,0,0,0,7,0,0% +7/14/2018 9:00,119.5567578,12.06721482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086659067,0.21061263,0.936221737,-0.936221737,0.370050343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621490066,128.4250288,0.621490066,51.5749712,0,0.969548191,0,0,0,7,1,0% +7/14/2018 10:00,115.5753379,27.14599804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01717018,0.473787044,1.531766769,-1.531766769,0.268206145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631827198,129.1850589,0.631827198,50.81494111,0,0.970864439,0,0,0,7,2,0% +7/14/2018 11:00,108.9816666,40.42842375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902088907,0.705609106,2.528535988,-2.528535988,0.097748569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586942693,125.9403513,0.586942693,54.05964873,0,0.964812808,0,0,0,7,3,0% +7/14/2018 12:00,100.4420704,51.8288375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753044837,0.904583862,5.155523115,-5.155523115,0,#DIV/0!,0,0,0.260077388,1,0.191587673,0,0.940018148,0.978780111,0.724496596,1,0,0,0.039612128,0.312029739,0.893815202,0.618311798,0.961238037,0.922476074,0,0,0,0,0,0,-0.489892586,119.3335218,0.489892586,60.66647817,0,0.94793681,0,0,0,7,4,0% +7/14/2018 13:00,89.97466325,61.69488325,0.003507877,0.291196788,0.003379107,0.003303658,0,0.003303658,0.003277214,2.64E-05,0.099382106,0.098429688,0.000952418,0.000101893,0.000850525,1.570354117,1.076778844,-2237.655074,2237.655074,0,0.963291174,2.55E-05,0.000819304,1,0.997383512,0,0.000446896,0.961238037,1,0.723230136,0.99873354,0.003150183,7.38E-05,0.115824807,0.310590465,0.724496596,0.448993192,0.961465617,0.922703654,1.85E-05,0.000787649,0.003168638,0.000861414,0,0.00025754,-0.338017767,109.7561517,0.338017767,70.24384832,0,0.902078782,0.003168638,0.001093736,0.003884467,7,5,23% +7/14/2018 14:00,79.63381352,70.52620753,103.6732418,343.5936583,41.84746211,41.36713941,0,41.36713941,40.58560672,0.781532688,83.89436647,57.49573333,26.39863315,1.261855383,25.13677776,1.389872242,1.23091453,-5.466509495,5.466509495,0.53501813,0.403647666,0.564819126,18.16652466,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.01242893,0.91420993,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.409209534,17.4623545,39.42163847,18.37656443,0,57.49573333,-0.167336422,99.63298895,0.167336422,80.36701105,0,0.751200734,39.42163847,61.56740151,79.7162714,7,6,102% +7/14/2018 15:00,68.26878563,78.87013442,306.4551719,624.7669948,75.13338788,96.42667993,21.24865237,75.17802755,72.86783902,2.310188533,76.5691533,0,76.5691533,2.265548857,74.30360444,1.191515086,1.376543527,-2.47890391,2.47890391,0.954071225,0.245169261,2.230097874,71.72761355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.04333853,1.641382435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615698319,68.94731044,71.65903685,70.58869288,21.24865237,0,0.034010523,88.05096469,-0.034010523,91.94903531,0,0,71.65903685,70.58869288,117.8579246,7,7,64% +7/14/2018 16:00,56.54212533,87.36999647,512.803556,757.461289,95.19716384,282.3331665,186.1408185,96.19234793,92.32661811,3.865729814,127.2057049,0,127.2057049,2.87054573,124.3351592,0.986846253,1.524894106,-1.444242233,1.444242233,0.777133657,0.185640608,3.164125756,101.7691609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.74785714,2.07970061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292398339,97.82438846,91.04025548,99.90408907,186.1408185,0,0.245743012,75.77425234,-0.245743012,104.2257477,0.846535415,0,248.6150505,99.90408907,314.0002787,7,8,26% +7/14/2018 17:00,44.73175225,96.98279475,697.3159487,827.8357633,109.2135112,486.2360628,375.0590798,111.176983,105.9203209,5.256662169,172.3655153,0,172.3655153,3.293190317,169.072325,0.780716357,1.692669086,-0.88283732,0.88283732,0.681127763,0.156619838,3.842985284,123.6036169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8146413,2.385905174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784229757,118.8124981,104.5988711,121.1984033,375.0590798,0,0.453059769,63.05983431,-0.453059769,116.9401657,0.939639285,0,457.0191167,121.1984033,536.3410476,7,9,17% +7/14/2018 18:00,33.21982449,109.6000762,844.6430012,867.2799652,119.0984333,678.4488799,556.574428,121.8744519,115.5071761,6.367275722,208.3847318,0,208.3847318,3.591257192,204.7934746,0.579795314,1.91288219,-0.50459003,0.50459003,0.616443667,0.141004464,4.269429154,137.3195176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0298912,2.60185361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093186888,131.9967436,114.1230781,134.5985972,556.574428,0,0.641747129,50.07777776,-0.641747129,129.9222222,0.972087692,0,655.1622293,134.5985972,743.2543191,7,10,13% +7/14/2018 19:00,22.90025566,129.914631,943.7451497,888.4313596,125.33669,838.4510567,709.7793808,128.671676,121.5573264,7.114349578,232.6013015,0,232.6013015,3.779363647,228.8219379,0.399684861,2.267438057,-0.211755737,0.211755737,0.566366053,0.132807771,4.439041186,142.7748236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8455258,2.738136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.216070228,137.2405912,120.061596,139.9787273,709.7793808,0,0.79891302,36.97357156,-0.79891302,143.0264284,0.987414964,0,820.9083778,139.9787273,912.5216553,7,11,11% +7/14/2018 20:00,16.5745256,167.7644035,987.4514305,896.7015067,128.0083195,951.0240773,819.4318549,131.5922224,124.1483964,7.443825984,243.2789548,0,243.2789548,3.859923134,239.4190316,0.289280044,2.928041209,0.040209668,-0.040209668,0.523277431,0.129635054,4.355214259,140.0786615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.3361608,2.796501171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155337905,134.6489376,122.4914987,137.4454388,819.4318549,0,0.913829015,23.96002475,-0.913829015,156.0399752,0.995285169,0,938.059871,137.4454388,1028.015162,7,12,10% +7/14/2018 21:00,18.94693659,214.0266075,972.6354861,893.9631824,127.107507,1005.486179,874.8792954,130.6068838,123.2747467,7.332137137,239.6594947,0,239.6594947,3.832760312,235.8267344,0.330686427,3.735468988,0.277822744,-0.277822744,0.482643202,0.1306836,4.034532297,129.7644273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4963755,2.776821799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.923004915,124.7345033,121.4193804,127.5113251,874.8792954,0,0.978652491,11.86005944,-0.978652491,168.1399406,0.998909342,0,995.3444815,127.5113251,1078.798094,7,13,8% +7/14/2018 22:00,27.85320748,241.7288019,900.3407161,879.6077084,122.6377722,995.6231066,869.8961672,125.7269395,118.9397908,6.787148624,221.9960117,0,221.9960117,3.697981316,218.2980304,0.486130178,4.218963491,0.522930981,-0.522930981,0.440727225,0.136212625,3.508326247,112.8398319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3294511,2.679174875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541770423,108.4659385,116.8712215,111.1451134,869.8961672,0,0.988959236,8.521922608,-0.988959236,171.4780774,0.999441799,0,986.2818116,111.1451134,1059.024065,7,14,7% +7/14/2018 23:00,38.95546475,257.2624971,775.7379618,850.2144643,114.5815312,919.616068,802.6417524,116.9743157,111.1264753,5.847840429,191.5417059,0,191.5417059,3.455055926,188.08665,0.679901121,4.490077616,0.802011595,-0.802011595,0.393001629,0.14770649,2.822514146,90.78175726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8189949,2.503176257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.04490189,87.26287813,108.8638968,89.76605439,802.6417524,0,0.944046221,19.25743651,-0.944046221,160.7425635,0.997036492,0,909.1270136,89.76605439,967.8771009,7,15,6% +7/14/2018 0:00,50.6873489,268.0202664,607.9456404,797.4546205,102.716891,779.6343011,675.4317523,104.2025488,99.61959774,4.582951035,150.5007523,0,150.5007523,3.097293248,147.4034591,0.884661127,4.67783611,1.16130713,-1.16130713,0.331558474,0.168957361,2.037106108,65.52033495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.75814657,2.243978415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475876441,62.98063814,97.23402301,65.22461655,675.4317523,0,0.846984562,32.11480716,-0.846984562,147.8851928,0.990967047,0,766.5646319,65.22461655,809.252839,7,16,6% +7/14/2018 1:00,62.49929094,276.9130707,410.0066294,701.5685733,86.05061246,580.7516426,494.2049704,86.54667216,83.455869,3.09080316,102.0055977,0,102.0055977,2.594743459,99.4108542,1.090818407,4.833044825,1.712877046,-1.712877046,0.237234463,0.209876149,1.22804025,39.49799581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22095568,1.879882803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889710981,37.96697595,81.11066666,39.84685875,494.2049704,0,0.704428604,45.21659973,-0.704428604,134.7834003,0.979020486,0,564.9474569,39.84685875,591.0264291,7,17,5% +7/14/2018 2:00,74.08968074,285.2374339,200.6896375,510.1969778,60.82810089,328.9979373,268.4911449,60.50679248,58.99390922,1.512883259,50.4937178,0,50.4937178,1.834191674,48.65952612,1.293108871,4.978332371,2.865327999,-2.865327999,0.040153743,0.303095375,0.500883429,16.11013285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.70718948,1.328865624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.362888339,15.48567247,57.07007782,16.8145381,268.4911449,0,0.526249971,58.24757113,-0.526249971,121.7524289,0.954988118,0,313.475931,16.8145381,324.4807099,7,18,4% +7/14/2018 3:00,85.14015469,293.7500547,24.57842151,110.723333,15.19809221,50.9969933,36.07189713,14.92509618,14.73981365,0.185282523,6.417601409,0,6.417601409,0.458278555,5.959322854,1.485976025,5.126905632,8.495962783,-8.495962783,0,0.618351028,0.114569639,3.684953414,0.47990929,1,0.117163886,0,0.949271406,0.988033369,0.724496596,1,14.28923439,0.332021253,0.06686908,0.312029739,0.827936402,0.552432998,0.961238037,0.922476074,0.078440062,3.542117385,14.36767445,3.874138638,18.7606586,0,0.325784061,70.98691613,-0.325784061,109.0130839,0.896524106,0,31.18705713,3.874138638,33.72260339,7,19,8% +7/14/2018 4:00,95.72896799,303.0321793,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670785681,5.288909268,-5.99424736,5.99424736,0.44476964,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110849325,83.63572226,-0.110849325,96.36427774,0.598937263,0,0,0,0,7,20,0% +7/14/2018 5:00,105.0287129,313.6119913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833096849,5.473561822,-1.655382707,1.655382707,0.813240805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096854466,95.55806515,0.096854466,84.44193485,0,0.533761542,0,0,0,7,21,0% +7/14/2018 6:00,112.6926372,325.941104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966857562,5.688745433,-0.580926627,0.580926627,0.629497994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285870077,106.6108643,0.285870077,73.38913571,0,0.87509537,0,0,0,7,22,0% +7/14/2018 7:00,118.0771376,340.1984462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060834823,5.937582996,0.006492853,-0.006492853,0.529043346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44332078,116.3159527,0.44332078,63.6840473,0,0.937214851,0,0,0,7,23,0% +7/15/2018 8:00,120.539911,355.9575387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103818327,6.212631047,0.465987299,-0.465987299,0.450465168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558479536,123.9507126,0.558479536,56.04928742,0,0.960471205,0,0,0,7,0,0% +7/15/2018 9:00,119.7139382,12.0707215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089402382,0.210673833,0.93035588,-0.93035588,0.371053464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623499813,128.5721623,0.623499813,51.42783775,0,0.969807514,0,0,0,7,1,0% +7/15/2018 10:00,115.7282828,27.1874786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019839573,0.474511017,1.522345922,-1.522345922,0.269817204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633950294,129.3421732,0.633950294,50.65782683,0,0.971129463,0,0,0,7,2,0% +7/15/2018 11:00,109.1252632,40.49736133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904595139,0.706812294,2.509792281,-2.509792281,0.100953932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589117053,126.0943766,0.589117053,53.90562341,0,0.965127223,0,0,0,7,3,0% +7/15/2018 12:00,100.5746434,51.91612731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75535867,0.906107356,5.091965051,-5.091965051,0,#DIV/0!,0,0,0.254078486,1,0.193919925,0,0.939708117,0.97847008,0.724496596,1,0,0,0.03879671,0.312029739,0.895876663,0.620373259,0.961238037,0.922476074,0,0,0,0,0,0,-0.492052647,119.4755856,0.492052647,60.5244144,0,0.948384857,0,0,0,7,4,0% +7/15/2018 13:00,90.07614619,61.79541474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572125329,1.07853345,744.7425883,-744.7425883,0,#DIV/0!,0,0,0.992177008,1,0.001342745,0,0.961119437,0.999881401,0.724496596,1,0,0,0.115212273,0.312029739,0.725671896,0.450168492,0.961238037,0.922476074,0,0,0,0,0,0,-0.339768057,109.8627435,0.339768057,70.1372565,0,0.902840787,0,0,0,7,5,0% +7/15/2018 14:00,79.74629804,70.63861821,101.7376121,338.8975673,41.41143041,40.92966409,0,40.92966409,40.16272299,0.766941094,83.2796389,57.36346954,25.91616936,1.248707419,24.66746194,1.391835467,1.232876467,-5.527689259,5.527689259,0.524555774,0.407041502,0.550726062,17.71324328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.605937,0.904684274,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.398999157,17.02664319,39.00493616,17.93132747,0,57.36346954,-0.16926492,99.7450827,0.16926492,80.2549173,0,0.754605065,39.00493616,61.21809213,79.07095309,7,6,103% +7/15/2018 15:00,68.37561058,78.99610255,304.4111189,622.5621984,74.98430914,95.10079532,20.08276017,75.01803515,72.72325556,2.294779598,76.0690537,0,76.0690537,2.261053583,73.80800012,1.193379533,1.378742086,-2.491543675,2.491543675,0.956232752,0.246325789,2.219083433,71.37335126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.9043594,1.638125624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.607718393,68.60678005,71.5120778,70.24490567,20.08276017,0,0.032258239,88.15141835,-0.032258239,91.84858165,0,0,71.5120778,70.24490567,117.4859637,7,7,64% +7/15/2018 16:00,56.64587685,87.51400756,510.9426709,756.2320583,95.15713544,280.8206912,184.6811928,96.13949839,92.28779672,3.851701677,126.7533048,0,126.7533048,2.869338726,123.8839661,0.988657059,1.527407573,-1.448799043,1.448799043,0.777912918,0.18623838,3.155599256,101.4949194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71054054,2.078826139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286220919,97.56077705,90.99676146,99.63960319,184.6811928,0,0.24421233,75.86471034,-0.24421233,104.1352897,0.845260133,0,247.100411,99.63960319,312.3125385,7,8,26% +7/15/2018 17:00,44.83687445,97.15225636,695.6859491,827.0267184,109.2271604,484.8062042,373.6282712,111.177933,105.9335585,5.244374543,171.9707146,0,171.9707146,3.29360189,168.6771127,0.782551085,1.695626749,-0.884744685,0.884744685,0.681453942,0.15700642,3.836090679,123.3818627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8273658,2.386203357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779234638,118.5993395,104.6066004,120.9855428,373.6282712,0,0.451772915,63.14251066,-0.451772915,116.8574893,0.939324928,0,455.5649493,120.9855428,534.7475673,7,9,17% +7/15/2018 18:00,33.33379734,109.8029502,843.2379627,866.6769281,119.1438097,677.1950118,555.2871436,121.9078682,115.5511843,6.356683948,208.0454322,0,208.0454322,3.592625457,204.4528067,0.581784516,1.91642301,-0.505295257,0.505295257,0.616564268,0.141293223,4.263689427,137.1349083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0721935,2.602844914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.089028476,131.81929,114.161222,134.422135,555.2871436,0,0.640708349,50.15534041,-0.640708349,129.8446596,0.971961373,0,653.8788764,134.422135,741.8554752,7,10,13% +7/15/2018 19:00,23.03577475,130.1304568,942.5331728,887.9344288,125.402008,837.3943797,708.6684917,128.7258879,121.6206748,7.105213184,232.3094132,0,232.3094132,3.781333225,228.52808,0.402050115,2.271204928,-0.211766944,0.211766944,0.56636797,0.133047846,4.434091967,142.6156398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9064186,2.739563049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212484536,137.0875776,120.1189032,139.8271406,708.6684917,0,0.798109037,37.05009381,-0.798109037,142.9499062,0.987351918,0,819.8240981,139.8271406,911.3381651,7,11,11% +7/15/2018 20:00,16.73425095,167.781106,986.3834335,896.2540856,128.0852227,950.1449576,818.4862021,131.6587556,124.2229806,7.435774972,243.0223254,0,243.0223254,3.862242048,239.1600834,0.292067777,2.928332722,0.040706837,-0.040706837,0.52319241,0.12985338,4.350727611,139.9343555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.407854,2.798181216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152087344,134.5102252,122.5599414,137.3084064,818.4862021,0,0.913230093,24.04438585,-0.913230093,155.9556141,0.995249286,0,937.1577492,137.3084064,1027.023355,7,12,10% +7/15/2018 21:00,19.07502974,213.7320956,971.6508683,893.5244081,127.1886092,1004.736672,874.0585542,130.678118,123.3534034,7.324714672,239.4232082,0,239.4232082,3.835205843,235.5880024,0.332922074,3.730328785,0.27879903,-0.27879903,0.482476248,0.130899496,4.030203379,129.6251944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5719833,2.778593578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919868629,124.6006674,121.4918519,127.379261,874.0585542,0,0.978214525,11.98154327,-0.978214525,168.0184567,0.998886467,0,994.5771135,127.379261,1077.944292,7,13,8% +7/15/2018 22:00,27.94088688,241.4420533,899.3728405,879.1372276,122.7153336,994.9334951,869.1386292,125.7948659,119.0150136,6.779852368,221.7636778,0,221.7636778,3.700320081,218.0633578,0.487660472,4.213958784,0.52448136,-0.52448136,0.440462095,0.136445452,3.503885312,112.6969962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.401758,2.680869302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.538552981,108.3286394,116.940311,111.0095087,869.1386292,0,0.988626806,8.649506466,-0.988626806,171.3504935,0.999424798,0,985.5790103,111.0095087,1058.232513,7,14,7% +7/15/2018 23:00,39.02496853,257.0325464,774.7200691,849.6564372,114.6460789,918.8979733,801.8687296,117.0292437,111.1890766,5.840167124,191.2968524,0,191.2968524,3.457002277,187.8398501,0.681114191,4.48606422,0.80440821,-0.80440821,0.392591784,0.147983876,2.817754526,90.62867154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8791697,2.504586382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041453562,87.11572631,108.9206233,89.62031269,801.8687296,0,0.943756434,19.30771572,-0.943756434,160.6922843,0.997020229,0,908.3999675,89.62031269,967.0546697,7,15,6% +7/15/2018 0:00,50.75151698,267.8298667,606.8182278,796.7062656,102.7542633,778.7787457,674.5484504,104.2302953,99.65584318,4.574452122,150.228525,0,150.228525,3.098420163,147.1301048,0.885781072,4.67451301,1.165215942,-1.165215942,0.330890028,0.169332856,2.031936547,65.3540641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.79298706,2.24479486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472131112,62.82081227,97.26511817,65.06560713,674.5484504,0,0.846671452,32.14853721,-0.846671452,147.8514628,0.990945216,0,765.7056778,65.06560713,808.2898164,7,16,6% +7/15/2018 1:00,62.56513798,276.7475307,408.7308333,700.3907334,86.03287896,579.6144876,493.0946317,86.5198559,83.43867023,3.08118567,101.6957314,0,101.6957314,2.594208728,99.10152266,1.091967655,4.830155607,1.720205857,-1.720205857,0.235981163,0.210487861,1.222607861,39.3232715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20442357,1.879495393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885775234,37.7990243,81.09019881,39.67851969,493.0946317,0,0.704027921,45.24893535,-0.704027921,134.7510647,0.978980089,0,563.8200255,39.67851969,589.788823,7,17,5% +7/15/2018 2:00,74.16172419,285.0876031,199.2984333,507.9094929,60.67825827,327.3615763,267.0105956,60.35098068,58.8485849,1.502395775,50.15188593,0,50.15188593,1.829673366,48.32221256,1.294366266,4.97571733,2.884363357,-2.884363357,0.036898505,0.304459284,0.495976447,15.95230744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.56749822,1.325592125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.359333247,15.33396468,56.92683147,16.65955681,267.0105956,0,0.52570507,58.28427963,-0.52570507,121.7157204,0.954889637,0,311.8924822,16.65955681,322.795829,7,18,3% +7/15/2018 3:00,85.22034953,293.6106781,23.68349236,106.9432354,14.77256304,49.27023671,34.76458478,14.50565193,14.32711576,0.178536169,6.187784201,0,6.187784201,0.445447281,5.74233692,1.487375689,5.124473053,8.659284137,-8.659284137,0,0.623749353,0.11136182,3.581778941,0.487355919,1,0.114973684,0,0.949524642,0.988286605,0.724496596,1,13.88864488,0.322725039,0.067710786,0.312029739,0.825995957,0.550492553,0.961238037,0.922476074,0.076256205,3.442942157,13.96490109,3.765667196,17.82185863,0,0.325075117,71.029874,-0.325075117,108.970126,0.896189396,0,29.93666181,3.765667196,32.40121568,7,19,8% +7/15/2018 4:00,95.82477239,302.9011878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.672457783,5.286623035,-5.912880219,5.912880219,0.45868424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109872412,83.69203924,-0.109872412,96.30796076,0.594926712,0,0,0,0,7,20,0% +7/15/2018 5:00,105.1408366,313.4909063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835053778,5.471448491,-1.649533632,1.649533632,0.812240554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098082743,95.62877697,0.098082743,84.37122303,0,0.54022633,0,0,0,7,21,0% +7/15/2018 6:00,112.8228382,325.8361608,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969129998,5.686913828,-0.581458685,0.581458685,0.629588981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287352284,106.6995073,0.287352284,73.30049268,0,0.875997555,0,0,0,7,22,0% +7/15/2018 7:00,118.2244939,340.1208513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063406674,5.936228709,0.003929702,-0.003929702,0.529481671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445042093,116.4260319,0.445042093,63.57396812,0,0.937651077,0,0,0,7,23,0% +7/16/2018 8:00,120.6993048,355.9196042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106600274,6.211968966,0.461966866,-0.461966866,0.451152703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560408749,124.0840702,0.560408749,55.91592984,0,0.960779409,0,0,0,7,0,0% +7/16/2018 9:00,119.8767665,12.07770478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092244271,0.210795714,0.924424372,-0.924424372,0.372067812,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625591472,128.7256131,0.625591472,51.27438693,0,0.970075637,0,0,0,7,1,0% +7/16/2018 10:00,115.8860684,27.23369804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022593451,0.475317698,1.512815766,-1.512815766,0.271446957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636147813,129.5051677,0.636147813,50.49483229,0,0.971401915,0,0,0,7,2,0% +7/16/2018 11:00,109.2728306,40.57170745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907170678,0.708109878,2.490889503,-2.490889503,0.104186497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591356611,126.2533366,0.591356611,53.74666337,0,0.96544865,0,0,0,7,3,0% +7/16/2018 12:00,100.7104075,52.00911695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757728202,0.907730332,5.02857767,-5.02857767,0,#DIV/0!,0,0,0.247998023,1,0.196302427,0,0.939390166,0.978152129,0.724496596,1,0,0,0.037965952,0.312029739,0.897982306,0.622478901,0.961238037,0.922476074,0,0,0,0,0,0,-0.494267581,119.6214654,0.494267581,60.3785346,0,0.94884022,0,0,0,7,4,0% +7/16/2018 13:00,90.17953027,61.90180579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573929721,1.080390324,315.9592218,-315.9592218,0,#DIV/0!,0,0,0.981652068,1,0.003164955,0,0.960957791,0.999719754,0.724496596,1,0,0,0.11438318,0.312029739,0.727267542,0.451764138,0.961238037,0.922476074,0,0,0,0,0,0,-0.341552312,109.9714776,0.341552312,70.02852242,0,0.90360954,0,0,0,7,5,0% +7/16/2018 14:00,79.86085571,70.75709015,99.81026462,334.3661025,40.94869183,40.46634962,0,40.46634962,39.71393768,0.752411935,82.68729418,57.25238582,25.43490836,1.234754143,24.20015422,1.393834876,1.234944192,-5.5913494,5.5913494,0.513669249,0.410265337,0.536615601,17.25940233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17454749,0.894575173,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.388776176,16.59039401,38.56332367,17.48496918,0,57.25238582,-0.171226645,99.85914642,0.171226645,80.14085358,0,0.757989372,38.56332367,60.88166917,78.40915851,7,6,103% +7/16/2018 15:00,68.48425041,79.12849563,302.3860088,620.5623155,74.79045548,93.73047223,18.91571146,74.81476077,72.5352473,2.279513463,75.57219692,0,75.57219692,2.25520818,73.31698874,1.195275655,1.381052781,-2.504476888,2.504476888,0.958444462,0.247334378,2.208216151,71.02382212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.72363872,1.63389065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.599845085,68.27079935,71.32348381,69.90469,18.91571146,0,0.030481566,88.25326433,-0.030481566,91.74673567,0,0,71.32348381,69.90469,117.0747053,7,7,64% +7/16/2018 16:00,56.75134979,87.66508164,509.1099435,755.1860492,95.06142408,279.28993,183.2570728,96.03285721,92.19497141,3.837885803,126.3060527,0,126.3060527,2.866452675,123.4396001,0.990497909,1.530044314,-1.453407255,1.453407255,0.778700968,0.186720816,3.147151192,101.2232006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.62131332,2.076735206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280100325,97.29959061,90.90141365,99.37632582,183.2570728,0,0.242664802,75.95612735,-0.242664802,104.0438727,0.84395446,0,245.5620376,99.37632582,310.6018553,7,8,26% +7/16/2018 17:00,44.94387114,97.32983412,694.0885845,826.3783339,109.1787045,483.3813258,372.2624291,111.1188966,105.8865637,5.232332934,171.581954,0,171.581954,3.292140767,168.2898132,0.78441853,1.698726066,-0.886639424,0.886639424,0.681777961,0.15729794,3.829197216,123.1601453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7821926,2.385144779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.774240348,118.3862162,104.556433,120.771361,372.2624291,0,0.450474575,63.2258637,-0.450474575,116.7741363,0.939005945,0,454.1130669,120.771361,533.1555072,7,9,17% +7/16/2018 18:00,33.4501907,110.0155405,841.8658907,866.2185148,119.1231973,675.9636134,554.0860793,121.8775341,115.5311934,6.34634069,207.7121359,0,207.7121359,3.592003918,204.120132,0.583815963,1.92013341,-0.505961411,0.505961411,0.616678187,0.141499019,4.257873233,136.9478395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0529776,2.602394611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.084814663,131.6394724,114.1377922,134.241867,554.0860793,0,0.639660859,50.23346474,-0.639660859,129.7665353,0.971833579,0,652.6172498,134.241867,740.4758669,7,10,13% +7/16/2018 19:00,23.17493295,130.3576979,941.3508659,887.5721808,125.3990129,836.3721186,707.6580481,128.7140705,121.61777,7.096300456,232.0226589,0,232.0226589,3.781242913,228.241416,0.404478884,2.275171033,-0.211722758,0.211722758,0.566360414,0.133211768,4.428987814,142.4514726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9036265,2.739497619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.208786595,136.9297739,120.1124131,139.6692715,707.6580481,0,0.797296337,37.12730838,-0.797296337,142.8726916,0.98728806,0,818.7747546,139.6692715,910.1854994,7,11,11% +7/16/2018 20:00,16.89958718,167.8079644,985.33868,895.9364945,128.0925951,949.307291,817.6492611,131.6580299,124.2301308,7.427899179,242.7692352,0,242.7692352,3.862464354,238.9067708,0.294953438,2.92880149,0.041274316,-0.041274316,0.523095366,0.129998545,4.346006426,139.782506,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.414727,2.798342276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148666861,134.3642616,122.5633939,137.1626039,817.6492611,0,0.912619662,24.13008247,-0.912619662,155.8699175,0.995212664,0,936.2982933,137.1626039,1026.068474,7,12,10% +7/16/2018 21:00,19.20987344,213.4381223,970.6804901,893.2150727,127.1999143,1004.031439,873.3496718,130.6817672,123.3643676,7.317399552,239.1882697,0,239.1882697,3.835546735,235.352723,0.33527554,3.725197984,0.279863917,-0.279863917,0.482294141,0.131042002,4.025560186,129.4758534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5825225,2.778840553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916504652,124.4571151,121.4990272,127.2359557,873.3496718,0,0.977759667,12.10644081,-0.977759667,167.8935592,0.998862689,0,993.8554289,127.2359557,1077.128817,7,13,8% +7/16/2018 22:00,28.03469659,241.1502359,898.4082402,878.8000438,122.7238401,994.28746,868.4916157,125.7958443,119.0232635,6.772580804,221.5300558,0,221.5300558,3.700576581,217.8294792,0.48929776,4.208865609,0.526147275,-0.526147275,0.440177206,0.136601419,3.499052478,112.5415556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4096881,2.681055136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.535051609,108.179224,116.9447398,110.8602791,868.4916157,0,0.988269882,8.784443664,-0.988269882,171.2155563,0.999406533,0,984.920934,110.8602791,1057.476769,7,14,7% +7/16/2018 23:00,39.0999919,256.797154,773.6931691,849.2397981,114.6435994,918.2198295,801.2007317,117.0190978,111.1866719,5.832425918,191.0477939,0,191.0477939,3.456927511,187.5908664,0.682423596,4.481955846,0.806965725,-0.806965725,0.392154423,0.148177086,2.812531146,90.46066967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8768582,2.504532214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037669241,86.95423653,108.9145274,89.45876874,801.2007317,0,0.94343286,19.36370874,-0.94343286,160.6362913,0.997002058,0,907.7133058,89.45876874,966.2622808,7,15,6% +7/16/2018 0:00,50.82090756,267.6345787,605.668799,796.1109333,102.7285201,777.9566656,673.7600021,104.1966634,99.6308762,4.565787243,149.9490564,0,149.9490564,3.097643909,146.8514125,0.886992166,4.67110459,1.169374226,-1.169374226,0.330178919,0.169611709,2.026243496,65.17095599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.76898785,2.244232468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468006515,62.6448018,97.23699437,64.88903427,673.7600021,0,0.846314218,32.18698192,-0.846314218,147.8130181,0.990920288,0,764.8794499,64.88903427,807.3480251,7,16,6% +7/16/2018 1:00,62.63612781,276.5776718,407.4198028,699.3754576,85.95894998,578.4995949,492.0613218,86.43827306,83.36697049,3.071302569,101.3756276,0,101.3756276,2.591979497,98.78364814,1.093206661,4.82719101,1.728000839,-1.728000839,0.234648142,0.210983731,1.216619523,39.13066596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.13550305,1.877880322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881436703,37.61388453,81.01693975,39.49176485,492.0613218,0,0.703572475,45.28566844,-0.703572475,134.7143316,0.978934116,0,562.7125548,39.49176485,588.559125,7,17,5% +7/16/2018 2:00,74.23896619,284.9339318,197.8601979,505.7565384,60.48367814,325.7218284,265.5704026,60.15142583,58.65987208,1.491553748,49.79730177,0,49.79730177,1.823806057,47.97349572,1.295714393,4.97303526,2.904695989,-2.904695989,0.03342142,0.30568896,0.490562812,15.77818633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.38610028,1.32134128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.355411087,15.16659285,56.74151137,16.48793413,265.5704026,0,0.525095342,58.32533813,-0.525095342,121.6746619,0.954779197,0,310.3026072,16.48793413,321.0936303,7,18,3% +7/16/2018 3:00,85.30573718,293.4678881,22.76375807,103.1444092,14.32255244,47.51150838,33.44923092,14.06227747,13.89067464,0.171602824,5.951214494,0,5.951214494,0.431877801,5.519336693,1.488865985,5.121980897,8.838427829,-8.838427829,0,0.629182247,0.10796945,3.472668661,0.495282529,1,0.112663184,0,0.949790588,0.988552551,0.724496596,1,13.46498697,0.312893996,0.06860139,0.312029739,0.823948926,0.548445522,0.961238037,0.922476074,0.073948011,3.338061206,13.53893499,3.650955202,16.88241125,0,0.324295143,71.0771231,-0.324295143,108.9228769,0.895819461,0,28.66252753,3.650955202,31.05200469,7,19,8% +7/16/2018 4:00,95.92622246,302.7672419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674228421,5.284285238,-5.82889887,5.82889887,0.473045897,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108813672,83.75306651,-0.108813672,96.24693349,0.590498918,0,0,0,0,7,20,0% +7/16/2018 5:00,105.2588974,313.3674811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837114327,5.469294313,-1.643216921,1.643216921,0.811160333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099398037,95.70450783,0.099398037,84.29549217,0,0.546971957,0,0,0,7,21,0% +7/16/2018 6:00,112.9592414,325.729813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971510683,5.685057708,-0.581855755,0.581855755,0.629656884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288924077,106.793553,0.288924077,73.20644695,0,0.876944156,0,0,0,7,22,0% +7/16/2018 7:00,118.3781701,340.043255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066088832,5.9348744,0.00139751,-0.00139751,0.529914701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446852767,116.5419394,0.446852767,63.45806064,0,0.938106321,0,0,0,7,23,0% +7/17/2018 8:00,120.8648349,355.8834677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.109489319,6.211338264,0.457926376,-0.457926376,0.451843667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562424317,124.2236218,0.562424317,55.77637821,0,0.96109915,0,0,0,7,0,0% +7/17/2018 9:00,120.0451729,12.08824831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095183519,0.210979734,0.918435355,-0.918435355,0.373091994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627763903,128.8853393,0.627763903,51.11466065,0,0.970352222,0,0,0,7,1,0% +7/17/2018 10:00,116.0486104,27.28472597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025430344,0.476208304,1.503189343,-1.503189343,0.273093172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638418331,129.6739793,0.638418331,50.32602072,0,0.971681447,0,0,0,7,2,0% +7/17/2018 11:00,109.4242767,40.65150861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90981391,0.709502671,2.47185448,-2.47185448,0.107441678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593659736,126.4171466,0.593659736,53.58285344,0,0.96577667,0,0,0,7,3,0% +7/17/2018 12:00,100.8492693,52.10782917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760151798,0.909453185,4.965451005,-4.965451005,0,#DIV/0!,0,0,0.241843243,1,0.198733254,0,0.939064476,0.977826439,0.724496596,1,0,0,0.037120645,0.312029739,0.900130414,0.62462701,0.961238037,0.922476074,0,0,0,0,0,0,-0.496535642,119.7710634,0.496535642,60.22893665,0,0.949302294,0,0,0,7,4,0% +7/17/2018 13:00,90.91474094,62.01405879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586761568,1.082349508,62.02336921,-62.02336921,0,#DIV/0!,0,0,0.909718506,1,0.016121558,0,0.959785288,0.998547251,0.724496596,1,0,0,0.108558489,0.312029739,0.738633743,0.463130339,0.961238037,0.922476074,0,0,0,0,0,0,-0.353661913,110.7114584,0.353661913,69.28854159,0,0.90862204,0,0,0,7,5,0% +7/17/2018 14:00,79.97740343,70.8816085,97.8922333,329.9982453,40.46047487,39.97839527,0,39.97839527,39.24044227,0.737953004,82.11740156,57.16226364,24.95513792,1.220032601,23.73510532,1.395869017,1.237117448,-5.657562058,5.657562058,0.502346217,0.413316496,0.52249636,16.80527901,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.71940569,0.883909466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.378546834,16.1538734,38.09795253,17.03778287,0,57.16226364,-0.173219902,99.97508401,0.173219902,80.02491599,0,0.761349565,38.09795253,60.55824743,77.73211431,7,6,104% +7/17/2018 15:00,68.59463244,79.26728244,300.3808634,618.7688687,74.5524986,92.31639724,17.74753371,74.56886353,72.3044657,2.26439783,75.07885092,0,75.07885092,2.248032902,72.83081802,1.197202185,1.383475068,-2.517699742,2.517699742,0.960705703,0.248193236,2.197503627,70.67927051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50180266,1.628692185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592083897,67.93960323,71.09388656,69.56829541,17.74753371,0,0.028682008,88.35641658,-0.028682008,91.64358342,0,0,71.09388656,69.56829541,116.6249445,7,7,64% +7/17/2018 16:00,56.8584828,87.82316824,507.3061837,754.3243212,94.91041012,277.7416526,181.8688532,95.87279937,92.04851107,3.824288299,125.8641567,0,125.8641567,2.861899047,123.0022576,0.992367732,1.532803445,-1.458063251,1.458063251,0.779497191,0.187087036,3.138786181,100.9541531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.48053007,2.073436117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274039903,97.04097192,90.75456998,99.11440804,181.8688532,0,0.24110167,76.0484291,-0.24110167,103.9515709,0.842618607,0,244.0006498,99.11440804,308.8690476,7,8,27% +7/17/2018 17:00,45.05269386,97.51544774,692.5243303,825.8912267,109.0683781,481.9620913,370.9619863,111.000105,105.779564,5.220540926,171.1993557,0,171.1993557,3.288814018,167.9105417,0.786317845,1.701965635,-0.888519115,0.888519115,0.682099407,0.15749393,3.822306852,122.9385274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6793405,2.382734561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.769248302,118.1731888,104.4485888,120.5559233,370.9619863,0,0.44916567,63.3098332,-0.44916567,116.6901668,0.938682499,0,452.6641131,120.5559233,531.5655538,7,9,17% +7/17/2018 18:00,33.56896909,110.2377075,840.5268875,865.9050679,119.0367475,674.7550891,552.971492,121.7835971,115.4473504,6.336246718,207.3848723,0,207.3848723,3.589397137,203.7954752,0.585889037,1.924010956,-0.506586807,0.506586807,0.616785136,0.141621582,4.251980377,136.758305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9723845,2.600506007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080545309,131.4572846,114.0529298,134.0577906,552.971492,0,0.638605215,50.31210765,-0.638605215,129.6878923,0.971704366,0,651.377743,134.0577906,739.1158858,7,10,13% +7/17/2018 19:00,23.31769683,130.5960954,940.1979675,887.344789,125.327804,835.384343,706.7480253,128.6363177,121.5487083,7.08760942,231.7409782,0,231.7409782,3.779095701,227.9618825,0.406970584,2.279331854,-0.211621919,0.211621919,0.566343169,0.133299378,4.423726847,142.2822619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8372418,2.737941971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204975042,136.7671221,120.0422168,139.505064,706.7480253,0,0.796475095,37.20519506,-0.796475095,142.7948049,0.987223398,0,817.7604039,139.505064,909.0636782,7,11,11% +7/17/2018 20:00,17.07046857,167.8448483,984.3165872,895.7487976,128.0305025,948.5107963,816.9206916,131.5901047,124.1699105,7.420194212,242.5195446,0,242.5195446,3.860592033,238.6589526,0.297935881,2.929445235,0.04191313,-0.04191313,0.522986122,0.130070451,4.341047591,139.6230128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.356841,2.796985786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.145074202,134.2109507,122.5019152,137.0079365,816.9206916,0,0.911997531,24.21712831,-0.911997531,155.7828717,0.99517529,0,935.4812015,137.0079365,1025.150156,7,12,10% +7/17/2018 21:00,19.35145092,213.1452186,969.723516,893.0351645,127.1414688,1003.369878,872.7520082,130.6178699,123.3076844,7.310185477,238.9544779,0,238.9544779,3.833784385,235.1206935,0.337746534,3.72008585,0.281018346,-0.281018346,0.482096722,0.13111105,4.020598832,129.3162791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5280365,2.777563736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912910167,124.3037263,121.4409466,127.08129,872.7520082,0,0.977287393,12.23479114,-0.977287393,167.7652089,0.998837977,0,993.178797,127.08129,1076.35096,7,13,8% +7/17/2018 22:00,28.13468069,240.8537496,897.4459147,878.596086,122.6633324,993.684147,867.9542403,125.7299067,118.9645803,6.765326387,221.2949043,0,221.2949043,3.698752051,217.5961523,0.491042812,4.203690946,0.527929753,-0.527929753,0.439872385,0.136680473,3.493823543,112.3733751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3532797,2.67973327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531263264,108.0175625,116.8845429,110.6972957,867.9542403,0,0.98788767,8.926697404,-0.98788767,171.0733026,0.999386958,0,984.3066909,110.6972957,1056.755857,7,14,7% +7/17/2018 23:00,39.18058797,256.5565615,772.6561948,848.9644165,114.5741448,917.580623,800.6367026,116.9439204,111.1193116,5.824608768,190.7942731,0,190.7942731,3.4548332,187.3394399,0.683830263,4.477756716,0.809685573,-0.809685573,0.391689302,0.148286063,2.806839941,90.27762094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8121089,2.503014892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033545982,86.77828312,108.8456549,89.28129802,800.6367026,0,0.943074512,19.42553815,-0.943074512,160.5744619,0.99698192,0,907.0659719,89.28129802,965.4987958,7,15,6% +7/17/2018 0:00,50.8955674,267.4345675,604.4963212,795.668389,102.639749,777.166989,673.0652585,104.1017305,99.54478185,4.55694861,149.6620988,0,149.6620988,3.094967132,146.5671317,0.888295226,4.667613736,1.173784697,-1.173784697,0.329424685,0.169793836,2.020023498,64.97089949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.68623068,2.242293152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463500148,62.45249988,97.14973083,64.69479303,673.0652585,0,0.845911774,32.23024309,-0.845911774,147.7697569,0.990892181,0,764.0848328,64.69479303,806.426281,7,16,6% +7/17/2018 1:00,62.71229679,276.4036203,406.0726361,698.5221475,85.82899008,577.4058809,491.1038044,86.30207641,83.24092935,3.061147057,101.0450727,0,101.0450727,2.588060726,98.45701197,1.09453606,4.824153239,1.736269509,-1.736269509,0.233234116,0.211363639,1.210073096,38.92011038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.01434751,1.875041186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876693839,37.41149049,80.89104135,39.28653168,491.1038044,0,0.703061179,45.3268783,-0.703061179,134.6731217,0.978882434,0,561.6239286,39.28653168,587.3361779,7,17,5% +7/17/2018 2:00,74.32143102,284.776524,196.374309,503.7355123,60.24465281,324.0772853,264.1688786,59.90840673,58.42805424,1.48035249,49.42982331,0,49.42982331,1.816598561,47.61322475,1.297153676,4.970287976,2.926364353,-2.926364353,0.029715912,0.306784799,0.484644194,15.58782322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.16326816,1.316119474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.351123069,14.98360859,56.51439123,16.29972807,264.1688786,0,0.524419804,58.37080705,-0.524419804,121.6291929,0.954656537,0,308.7049381,16.29972807,319.3727841,7,18,3% +7/17/2018 3:00,85.39631643,293.3217748,21.82101946,99.32386747,13.84898715,45.7215506,32.12566545,13.59588515,13.43138909,0.164496062,5.708356864,0,5.708356864,0.41759806,5.290758804,1.490446891,5.119430738,9.034858417,-9.034858417,0,0.634662701,0.104399515,3.357847273,0.503696985,1,0.110233739,0,0.950068897,0.98883086,0.724496596,1,13.01913377,0.302548373,0.069540819,0.312029739,0.821796522,0.546293118,0.961238037,0.922476074,0.071520282,3.227690521,13.09065405,3.530238894,15.94406462,0,0.323443562,71.12869472,-0.323443562,108.8713053,0.895413525,0,27.36718516,3.530238894,29.67765591,7,19,8% +7/17/2018 4:00,96.03331799,302.6304221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676097591,5.281897282,-5.742655804,5.742655804,0.48779433,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107672566,83.81883351,-0.107672566,96.18116649,0.585629158,0,0,0,0,7,20,0% +7/17/2018 5:00,105.382882,313.2417893,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839278266,5.467100578,-1.636446156,1.636446156,0.810002464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100800558,95.78527202,0.100800558,84.21472798,0,0.553971,0,0,0,7,21,0% +7/17/2018 6:00,113.1018204,325.6221308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973999156,5.6831783,-0.582116875,0.582116875,0.629701538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290585305,106.8930006,0.290585305,73.10699938,0,0.877933488,0,0,0,7,22,0% +7/17/2018 7:00,118.5381266,339.9657295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068880598,5.933521323,-0.001099879,0.001099879,0.53034178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448752276,116.6636594,0.448752276,63.33634056,0,0.938579952,0,0,0,7,23,0% +7/18/2018 8:00,121.0364463,355.8492065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112484503,6.210740294,0.453871347,-0.453871347,0.452537118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564525353,124.3693374,0.564525353,55.63066256,0,0.961430019,0,0,0,7,0,0% +7/18/2018 9:00,120.2190864,12.10242924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098218881,0.211227238,0.912396636,-0.912396636,0.374124675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.630015898,129.0512955,0.630015898,50.94870453,0,0.970636923,0,0,0,7,1,0% +7/18/2018 10:00,116.2158241,27.3406255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028348774,0.477183934,1.493479144,-1.493479144,0.274753714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640760379,129.8485424,0.640760379,50.15145756,0,0.97196771,0,0,0,7,2,0% +7/18/2018 11:00,109.5795099,40.73680471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912523241,0.710991369,2.452712631,-2.452712631,0.110715127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596024779,126.5857208,0.596024779,53.41427919,0,0.96611087,0,0,0,7,3,0% +7/18/2018 12:00,100.9911376,52.21228022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.762627866,0.9112762,4.902666636,-4.902666636,0,#DIV/0!,0,0,0.235621087,1,0.201210541,0,0.938731224,0.977493187,0.724496596,1,0,0,0.036261556,0.312029739,0.902319322,0.626815918,0.961238037,0.922476074,0,0,0,0,0,0,-0.498855092,119.9242824,0.498855092,60.07571764,0,0.949770493,0,0,0,7,4,0% +7/18/2018 13:00,91.04428724,62.13216978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589022578,1.084410934,54.34341936,-54.34341936,0,#DIV/0!,0,0,0.897573709,1,0.018399415,0,0.959574971,0.998336934,0.724496596,1,0,0,0.107546996,0.312029739,0.740635403,0.465131999,0.961238037,0.922476074,0,0,0,0,0,0,-0.355870382,110.8467975,0.355870382,69.15320251,0,0.909499406,0,0,0,7,5,0% +7/18/2018 14:00,80.09586224,71.01215212,95.95016382,325.5224494,39.96022376,39.47858844,0,39.47858844,38.75527558,0.723312864,81.51472561,57.04554934,24.46917628,1.204948184,23.26422809,1.397936513,1.239395863,-5.726405919,5.726405919,0.490573224,0.416468531,0.508296141,16.34855115,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.25304501,0.872980857,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.368258824,15.71484921,37.62130384,16.58783007,0,57.04554934,-0.175243058,100.0928029,0.175243058,79.90719714,0,0.764681993,37.62130384,60.2095344,77.02723991,7,6,105% +7/18/2018 15:00,68.70668886,79.41242533,298.3448258,616.9344906,74.3097173,90.88952378,16.57146931,74.31805447,72.06900515,2.249049318,74.57786927,0,74.57786927,2.24071215,72.33715712,1.199157939,1.386008289,-2.531208928,2.531208928,0.96301591,0.249073256,2.18658795,70.32818483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.27546903,1.623388325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.584175527,67.60212632,70.85964456,69.22551465,16.57146931,0,0.026860987,88.46079368,-0.026860987,91.53920632,0,0,70.85964456,69.22551465,116.1663594,7,7,64% +7/18/2018 16:00,56.96721996,87.98820979,505.4734316,753.4446104,94.75663547,276.1779771,180.4681316,95.70984553,91.89937329,3.81047224,125.4151478,0,125.4151478,2.857262174,122.5578856,0.994265554,1.535683964,-1.462763665,1.462763665,0.780301009,0.187461159,3.130249737,100.6795917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.33717317,2.070076719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267855279,96.77705308,90.60502845,98.8471298,180.4681316,0,0.239524086,76.14154676,-0.239524086,103.8584532,0.841252726,0,242.4243361,98.8471298,307.1178056,7,8,27% +7/18/2018 17:00,45.16329999,97.70900846,690.9314955,825.3935896,108.9559089,480.5290827,369.650063,110.8790197,105.6704862,5.208533464,170.8097631,0,170.8097631,3.285422657,167.5243404,0.788248286,1.705343906,-0.890381511,0.890381511,0.682417896,0.157694228,3.815244306,122.7113717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5744907,2.380277531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764131512,117.954838,104.3386222,120.3351156,369.650063,0,0.447847024,63.39436505,-0.447847024,116.6056349,0.938354734,0,451.2015089,120.3351156,529.9584353,7,9,17% +7/18/2018 18:00,33.69010283,110.4693001,839.157061,865.5836237,118.948248,673.5332529,551.8458131,121.6874398,115.3615194,6.325920387,207.0500734,0,207.0500734,3.586728548,203.4633449,0.58800322,1.928053009,-0.507169904,0.507169904,0.616884851,0.1417473,4.245896967,136.5626416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8898805,2.598572624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.076137899,131.2692056,113.9660183,133.8677782,551.8458131,0,0.637541883,50.39123286,-0.637541883,129.6087671,0.97157378,0,650.1249409,133.8677782,737.7387244,7,10,13% +7/18/2018 19:00,23.46403756,130.8453714,939.0092711,887.1098833,125.2543499,834.3810258,705.8249082,128.5561176,121.4774691,7.078648525,231.45055,0,231.45055,3.776880789,227.6736693,0.409524711,2.283682543,-0.211463297,0.211463297,0.566316043,0.133389897,4.418245375,142.1059589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7687639,2.736337275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.201003734,136.5976529,119.9697677,139.3339902,705.8249082,0,0.795645412,37.28374105,-0.795645412,142.716259,0.987157936,0,816.7304271,139.3339902,907.921737,7,11,11% +7/18/2018 20:00,17.24682953,167.8915889,983.2512757,895.5528379,127.9657603,947.6934059,816.174122,131.5192839,124.1071205,7.412163443,242.2592953,0,242.2592953,3.858639816,238.4006555,0.301013961,2.930261013,0.042624185,-0.042624185,0.522864525,0.130145532,4.335830801,139.4552229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2964848,2.795571411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141294656,134.0496647,122.4377795,136.8452361,816.174122,0,0.911363448,24.30554484,-0.911363448,155.6944552,0.995137146,0,934.6429657,136.8452361,1024.205436,7,12,10% +7/18/2018 21:00,19.49973722,212.8538817,968.7139657,892.845071,127.0797898,1002.678959,872.1285185,130.5504403,123.2478652,7.30257506,238.7078409,0,238.7078409,3.831924536,234.8759164,0.340334618,3.715001061,0.282263141,-0.282263141,0.48188385,0.131184017,4.01533848,129.1470881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.470536,2.776216282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90909906,124.1410935,121.3796351,126.9173098,872.1285185,0,0.976797147,12.36663819,-0.976797147,167.6333618,0.998812299,0,992.4723259,126.9173098,1075.537167,7,13,8% +7/18/2018 22:00,28.24087423,240.5529893,896.4204001,878.3783661,122.5988236,993.0401266,867.3805143,125.6596123,118.9020167,6.757595626,221.0443113,0,221.0443113,3.696806872,217.3475044,0.492896239,4.198441689,0.529829703,-0.529829703,0.439547474,0.136764875,3.488255276,112.1942805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2931411,2.678323995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527229073,107.8454099,116.8203702,110.5237339,867.3805143,0,0.987479369,9.076218166,-0.987479369,170.9237818,0.999366031,0,983.6509919,110.5237339,1055.986565,7,14,7% +7/18/2018 23:00,39.26680159,256.3110107,771.5449952,848.6687155,114.4996719,916.8867022,800.0233857,116.8633164,111.0470844,5.816232076,190.5226043,0,190.5226043,3.452587567,187.0700167,0.685334974,4.473471045,0.812569068,-0.812569068,0.391196195,0.148403104,2.80077497,90.08255062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7426814,2.501387939,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029151931,86.59077411,108.7718333,89.09216205,800.0233857,0,0.942680425,19.49331608,-0.942680425,160.5066839,0.996959756,0,906.3629525,89.09216205,964.6719908,7,15,6% +7/18/2018 0:00,50.97553534,267.2299981,603.239187,795.1925682,102.5444637,776.3058033,672.3059617,103.9998416,99.45236977,4.547471801,149.3544189,0,149.3544189,3.092093929,146.2623249,0.88969093,4.664043326,1.178449973,-1.178449973,0.328626875,0.169989725,2.013408639,64.75814289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.59740068,2.240211526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458707705,62.24799014,97.05610838,64.48820166,672.3059617,0,0.845463085,32.27841442,-0.845463085,147.7215856,0.990860812,0,763.2177398,64.48820166,805.423978,7,16,6% +7/18/2018 1:00,62.79367354,276.2255015,404.6326115,697.6062016,85.68975489,576.2196743,490.0634902,86.15618417,83.10589262,3.050291543,100.6917236,0,100.6917236,2.583862272,98.10786134,1.095956353,4.82104448,1.745019462,-1.745019462,0.231737786,0.211771747,1.203138747,38.69707786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88454507,1.87199942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.871669927,37.19710316,80.756215,39.06910258,490.0634902,0,0.702493024,45.37263654,-0.702493024,134.6273635,0.978824916,0,560.4425696,39.06910258,586.0125159,7,17,5% +7/18/2018 2:00,74.40913525,284.6154821,194.7948529,501.5722381,59.98916322,322.3108485,262.662134,59.6487145,58.18026861,1.468445883,49.03916195,0,49.03916195,1.808894608,47.23026734,1.298684404,4.967477265,2.949409003,-2.949409003,0.025775045,0.30796072,0.478416825,15.38752965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.92508718,1.310537985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346611361,14.79107879,56.27169855,16.10161678,262.662134,0,0.523677576,58.42073906,-0.523677576,121.5792609,0.954521404,0,306.9883274,16.10161678,317.5265135,7,18,3% +7/18/2018 3:00,85.49207711,293.1724258,20.84249663,95.32168936,13.35050265,43.84820117,30.74314589,13.10505528,12.94793574,0.157119543,5.456071527,0,5.456071527,0.402566913,5.053504614,1.49211823,5.116824106,9.250255822,-9.250255822,0,0.640542392,0.100641728,3.236983934,0.5126072,1,0.107686916,0,0.950359188,0.989121151,0.724496596,1,12.549806,0.291658358,0.070528939,0.312029739,0.819540147,0.544036743,0.961238037,0.922476074,0.068965929,3.111512082,12.61877193,3.40317044,14.98398796,0,0.322519944,71.18461095,-0.322519944,108.815389,0.894970827,0,26.02900403,3.40317044,28.25631102,7,19,9% +7/18/2018 4:00,96.14605164,302.4908055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678065164,5.279460512,-5.654498951,5.654498951,0.50287004,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106448687,83.88936194,-0.106448687,96.11063806,0.580290122,0,0,0,0,7,20,0% +7/18/2018 5:00,105.5127705,313.1139002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841545248,5.464868493,-1.629236443,1.629236443,0.808769531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102290383,95.87107624,0.102290383,84.12892376,0,0.561195495,0,0,0,7,21,0% +7/18/2018 6:00,113.2505431,325.5131789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976594857,5.68127673,-0.582241688,0.582241688,0.629722882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292335685,106.9978419,0.292335685,73.00215808,0,0.878963747,0,0,0,7,22,0% +7/18/2018 7:00,118.7043186,339.8883401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071781197,5.932170624,-0.003558977,0.003558977,0.530762311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450739974,116.7911698,0.450739974,63.20883016,0,0.939071299,0,0,0,7,23,0% +7/19/2018 8:00,121.2140806,355.8168913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115584807,6.210176288,0.449806993,-0.449806993,0.453232164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566710868,124.5211816,0.566710868,55.47881842,0,0.961771588,0,0,0,7,0,0% +7/19/2018 9:00,120.3984337,12.12031787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101349083,0.211539453,0.906315679,-0.906315679,0.37516458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632346173,129.2234318,0.632346173,50.77656816,0,0.970929386,0,0,0,7,1,0% +7/19/2018 10:00,116.3876247,27.40145276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03134726,0.478245571,1.483697099,-1.483697099,0.276426542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643172442,130.0287894,0.643172442,49.97121063,0,0.972260351,0,0,0,7,2,0% +7/19/2018 11:00,109.7384401,40.82762869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915297096,0.712576546,2.43348796,-2.43348796,0.114002739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.598450077,126.758973,0.598450077,53.24102697,0,0.966450842,0,0,0,7,3,0% +7/19/2018 12:00,101.1359233,52.3224795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765154853,0.91319954,4.840298063,-4.840298063,0,#DIV/0!,0,0,0.229338188,1,0.203732479,0,0.93839058,0.977152543,0.724496596,1,0,0,0.035389424,0.312029739,0.904547417,0.629044013,0.961238037,0.922476074,0,0,0,0,0,0,-0.50122421,120.0810262,0.50122421,59.91897382,0,0.950244244,0,0,0,7,4,0% +7/19/2018 13:00,91.17614039,62.25612813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591323849,1.086574415,48.26403872,-48.26403872,0,#DIV/0!,0,0,0.885366889,1,0.020716396,0,0.959359761,0.998121725,0.724496596,1,0,0,0.106521898,0.312029739,0.74267239,0.467168986,0.961238037,0.922476074,0,0,0,0,0,0,-0.358117833,110.9846506,0.358117833,69.01534936,0,0.91038115,0,0,0,7,5,0% +7/19/2018 14:00,80.21615733,71.14869336,93.98586485,320.9398723,39.44803605,38.96703737,0,38.96703737,38.25853222,0.708505149,80.87835227,56.90088737,23.9774649,1.189503835,22.78796106,1.400036059,1.241778958,-5.797966751,5.797966751,0.478335601,0.419723073,0.494033687,15.8898216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.7755564,0.861791479,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.357925724,15.27390092,37.13348213,16.1356924,0,56.90088737,-0.177294541,100.212214,0.177294541,79.78778604,0,0.767983421,37.13348213,59.83463053,76.29405111,7,6,105% +7/19/2018 15:00,68.82035683,79.56388004,296.2790423,615.0594598,74.06218124,89.45110189,15.38869211,74.06240978,71.82893321,2.233476569,74.06953202,0,74.06953202,2.233248025,71.836284,1.201141819,1.388651672,-2.545001669,2.545001669,0.965374607,0.249974418,2.175473339,69.97070071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04470275,1.617980592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576123028,67.25849899,70.62082578,68.87647958,15.38869211,0,0.025019845,88.56631889,-0.025019845,91.43368111,0,0,70.62082578,68.87647958,115.6991041,7,7,64% +7/19/2018 16:00,57.07751086,88.16014164,503.6124601,752.547062,94.60014661,274.5999099,179.0558633,95.5440466,91.74760315,3.796443451,124.959215,0,124.959215,2.852543458,122.1066716,0.996190493,1.538684741,-1.46750539,1.46750539,0.781111892,0.187843142,3.121544085,100.399588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19128594,2.066658025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261548064,96.50790289,90.452834,98.57456092,179.0558633,0,0.23793311,76.23541708,-0.23793311,103.7645829,0.839856906,0,240.8341373,98.57456092,305.349216,7,8,27% +7/19/2018 17:00,45.27565269,97.91041901,689.3104754,824.8854497,108.8413173,479.0829939,368.3273304,110.7556635,105.55935,5.196313529,170.4132726,0,170.4132726,3.281967298,167.1313053,0.79020921,1.708859184,-0.892224553,0.892224553,0.682733074,0.15789883,3.80801003,122.4786925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4676624,2.377774135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758890304,117.7311779,104.2265527,120.1089521,368.3273304,0,0.446519369,63.47941141,-0.446519369,116.5205886,0.938022775,0,449.7259771,120.1089521,528.3348841,7,9,17% +7/19/2018 18:00,33.81356797,110.7101552,837.7564386,865.2541325,118.8576961,672.2984293,550.7093694,121.5890599,115.273698,6.315361904,206.7077458,0,206.7077458,3.583998075,203.1237477,0.590158093,1.932256723,-0.50770931,0.50770931,0.616977095,0.141876195,4.239621981,136.3608165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8054632,2.596594405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.071591693,131.0752036,113.8770549,133.671798,550.7093694,0,0.636471239,50.47081091,-0.636471239,129.5291891,0.971441855,0,648.8591861,133.671798,736.3447044,7,10,13% +7/19/2018 19:00,23.6139307,131.10523,937.7844724,886.8673604,125.1786286,833.362105,704.8886584,128.4734465,121.4040311,7.069415475,231.1513001,0,231.1513001,3.774597511,227.3767026,0.41214084,2.28821793,-0.211245891,0.211245891,0.566278865,0.133483367,4.412541248,141.9224946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6981725,2.734683048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196871113,136.4213,119.8950436,139.1559831,704.8886584,0,0.794807307,37.36294089,-0.794807307,142.6370591,0.98709167,0,815.6847669,139.1559831,906.7595748,7,11,11% +7/19/2018 20:00,17.42860465,167.947982,982.1421691,895.3484677,127.8983303,946.8546905,815.4091642,131.4455263,124.0417238,7.403802529,241.9883463,0,241.9883463,3.856606554,238.1317397,0.304186535,2.931245257,0.043408267,-0.043408267,0.522730439,0.130223846,4.330353174,139.2790436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2336231,2.79409832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137326134,133.8803144,122.3709492,136.6744127,815.4091642,0,0.910717105,24.39536107,-0.910717105,155.6046389,0.995098209,0,933.7831482,136.6744127,1023.233818,7,12,10% +7/19/2018 21:00,19.65469928,212.5645742,967.6510705,892.644598,127.0148267,1001.957934,871.4785105,130.4794235,123.184861,7.294562507,238.4481708,0,238.4481708,3.829965659,234.6182051,0.343039216,3.709951694,0.283599009,-0.283599009,0.481655403,0.131260979,4.009775944,128.9681779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.409974,2.774797082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905069022,123.9691181,121.315043,126.7439152,871.4785105,0,0.976288337,12.50203017,-0.976288337,167.4979698,0.998785622,0,991.7352491,126.7439152,1074.686607,7,13,8% +7/19/2018 22:00,28.35330322,240.2483442,895.3308295,878.1466279,122.5302536,992.3544069,866.7695106,125.5848963,118.8355144,6.749381982,220.7780646,0,220.7780646,3.694739234,217.0833254,0.494858495,4.193124629,0.531847918,-0.531847918,0.439202339,0.136854724,3.482344634,112.0041739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2292165,2.676825998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522946833,107.6626723,116.7521634,110.3394983,866.7695106,0,0.987044171,9.232944683,-0.987044171,170.7670553,0.999343706,0,982.9528181,110.3394983,1055.167813,7,14,7% +7/19/2018 23:00,39.35866931,256.060742,770.3587074,848.3523364,114.4201129,916.1369156,799.3597019,116.7772137,110.9699244,5.807289337,190.2325761,0,190.2325761,3.45018857,186.7823875,0.686938369,4.469103034,0.815617409,-0.815617409,0.390674898,0.148528357,2.794333795,89.87538032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6685122,2.499649874,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.024485323,86.39163414,108.6929976,88.89128401,799.3597019,0,0.942249662,19.56714391,-0.942249662,160.4328561,0.996935508,0,905.6030677,88.89128401,963.7806353,7,15,6% +7/19/2018 0:00,51.06084229,267.0210348,601.8966458,794.6829024,102.4425849,775.371877,671.4809629,103.8909141,99.35356295,4.537351158,149.0258322,0,149.0258322,3.089021906,145.9368103,0.891179817,4.660396229,1.183372577,-1.183372577,0.32778506,0.170199627,2.006397592,64.5326435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.50242381,2.237985856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453628225,62.03123155,96.95605203,64.26921741,671.4809629,0,0.84496717,32.33158144,-0.84496717,147.6684186,0.990826103,0,762.2769179,64.26921741,804.3398353,7,16,6% +7/19/2018 1:00,62.88027897,276.0434396,403.0992163,696.6264996,85.54112867,574.9396903,488.9392101,86.00048019,82.96174803,3.038732162,100.3154526,0,100.3154526,2.579380643,97.73607191,1.097467903,4.817866899,1.754258387,-1.754258387,0.230157837,0.212208621,1.195817015,38.4615858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.74598781,1.868752495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866365357,36.97073923,80.61235316,38.83949172,488.9392101,0,0.701867084,45.42300696,-0.701867084,134.576993,0.978761441,0,559.1671988,38.83949172,584.5868693,7,17,5% +7/19/2018 2:00,74.50208793,284.4509067,193.1218516,499.2638115,59.71693359,320.4210949,261.0490131,59.37208181,57.91624771,1.455834092,48.62531469,0,48.62531469,1.80068588,46.82462881,1.300306734,4.964604882,2.973872773,-2.973872773,0.021591494,0.309218937,0.471885228,15.17745103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.67130025,1.30459079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.341879241,14.58914323,56.01317949,15.89373402,261.0490131,0,0.522867885,58.47517909,-0.522867885,121.5248209,0.954373549,0,305.1514527,15.89373402,315.5535838,7,18,3% +7/19/2018 3:00,85.59300001,293.0199261,19.83183898,91.14825204,12.8279307,41.89697334,29.3063513,12.59062204,12.44112126,0.149500779,5.195268407,0,5.195268407,0.386809441,4.808458966,1.493879667,5.114162484,9.486554706,-9.486554706,0,0.646835158,0.09670236,3.110280315,0.522021134,1,0.105024491,0,0.950661051,0.989423014,0.724496596,1,12.05779103,0.280242123,0.071565553,0.312029739,0.8171814,0.541677996,0.961238037,0.922476074,0.066289139,2.989719744,12.12408017,3.269961867,14.00781656,0,0.321524008,71.24488452,-0.321524008,108.7551155,0.894490617,0,24.65394065,3.269961867,26.79406529,7,19,9% +7/19/2018 4:00,96.26440915,302.3484657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680130892,5.276976214,-5.564768288,5.564768288,0.518214887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105141761,83.96466592,-0.105141761,96.03533408,0.574451564,0,0,0,0,7,20,0% +7/19/2018 5:00,105.6485368,312.9838785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843914816,5.462599186,-1.62160426,1.62160426,0.80746435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.103867455,95.96191973,0.103867455,84.03808027,0,0.568617261,0,0,0,7,21,0% +7/19/2018 6:00,113.4053721,325.4030162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979297132,5.679354029,-0.582230415,0.582230415,0.629720955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294174807,107.1080618,0.294174807,72.89193823,0,0.880033032,0,0,0,7,22,0% +7/19/2018 7:00,118.8766975,339.8111458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074789775,5.93082333,-0.005976657,0.005976657,0.531175758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452815101,116.9244419,0.452815101,63.07555813,0,0.939579654,0,0,0,7,23,0% +7/20/2018 8:00,121.3976767,355.7865861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118789164,6.209647362,0.445738227,-0.445738227,0.453927964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568979782,124.6791134,0.568979782,55.32088657,0,0.962123415,0,0,0,7,0,0% +7/20/2018 9:00,120.5831404,12.14197777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104572822,0.21191749,0.90019959,-0.90019959,0.376210493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634753375,129.4016952,0.634753375,50.59830485,0,0.971229249,0,0,0,7,1,0% +7/20/2018 10:00,116.5639271,27.46725721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034424317,0.479394075,1.473854561,-1.473854561,0.278109715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645652965,130.2146502,0.645652965,49.78534981,0,0.972559017,0,0,0,7,2,0% +7/20/2018 11:00,109.9009781,40.92400682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918133919,0.714258662,2.414203053,-2.414203053,0.117300653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600933952,126.9368164,0.600933952,53.06318364,0,0.966796181,0,0,0,7,3,0% +7/20/2018 12:00,101.2835399,52.43842995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767731249,0.915223257,4.778411049,-4.778411049,0,#DIV/0!,0,0,0.223000869,1,0.20629732,0,0.938042711,0.976804674,0.724496596,1,0,0,0.034504962,0.312029739,0.906813141,0.631309737,0.961238037,0.922476074,0,0,0,0,0,0,-0.50364129,120.2411996,0.50364129,59.75880037,0,0.950722993,0,0,0,7,4,0% +7/20/2018 13:00,91.31022103,62.38591705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593663998,1.088839659,43.33673632,-43.33673632,0,#DIV/0!,0,0,0.873110371,1,0.023071017,0,0.959139733,0.997901697,0.724496596,1,0,0,0.105484008,0.312029739,0.744743412,0.469240008,0.961238037,0.922476074,0,0,0,0,0,0,-0.360402627,111.1249248,0.360402627,68.8750752,0,0.911266272,0,0,0,7,5,0% +7/20/2018 14:00,80.33821815,71.29119855,92.00109047,316.2516151,38.92399818,38.4438391,0,38.4438391,37.75029602,0.693543081,80.20738383,56.72695214,23.4804317,1.173702159,22.30672954,1.402166422,1.244266142,-5.872337978,5.872337978,0.465617372,0.423081922,0.479727218,15.42967638,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.28702043,0.850343219,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.347560736,14.83159184,36.63458117,15.68193505,0,56.72695214,-0.179372846,100.333232,0.179372846,79.66676802,0,0.771251008,36.63458117,59.43265405,75.53206459,7,6,106% +7/20/2018 15:00,68.93557844,79.72159623,294.1845723,613.1439812,73.80994988,88.00231208,14.20031695,73.80199513,71.58430756,2.21768757,73.55409782,0,73.55409782,2.225642319,71.3284555,1.203152815,1.391404339,-2.559075739,2.559075739,0.967781415,0.250896739,2.164163576,69.60693987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80955927,1.612470283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567929144,66.90883823,70.37748841,68.52130852,14.20031695,0,0.023159841,88.67292022,-0.023159841,91.32707978,0,0,70.37748841,68.52130852,115.2233144,7,7,64% +7/20/2018 16:00,57.18931052,88.33889259,501.7239535,751.631779,94.44098261,273.0083676,177.6329219,95.37544563,91.59323854,3.78220709,124.4965254,0,124.4965254,2.847744076,121.6487813,0.998141766,1.541804533,-1.472285585,1.472285585,0.781929353,0.188232956,3.112671091,100.114202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.0429048,2.063180889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.25511961,96.23357903,90.29802441,98.29675992,177.6329219,0,0.236329712,76.32998229,-0.236329712,103.6700177,0.838431173,0,239.2310035,98.29675992,303.5642669,7,8,27% +7/20/2018 17:00,45.38972086,98.11957437,687.6615849,824.366808,108.7246179,477.6244228,366.9943698,110.630053,105.4461695,5.183883497,170.0099611,0,170.0099611,3.278448381,166.7315127,0.792200076,1.712509633,-0.894046365,0.894046365,0.683044623,0.158107738,3.800604208,122.2404958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.358869,2.375224692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753524811,117.5022142,104.1123938,119.8774389,366.9943698,0,0.445183341,63.56493054,-0.445183341,116.4350695,0.937686723,0,448.2381417,119.8774389,526.6955279,7,9,18% +7/20/2018 18:00,33.93934614,110.9600993,836.3249837,864.9165276,118.765085,671.0508514,549.5624009,121.4884505,115.1838795,6.304570992,206.3578804,0,206.3578804,3.58120551,202.7766749,0.592353336,1.93661907,-0.50820378,0.50820378,0.617061654,0.142008295,4.233154235,136.1527916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7191262,2.594571201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066905833,130.8752421,113.7860321,133.4698133,549.5624009,0,0.635393571,50.55081901,-0.635393571,129.449181,0.971308615,0,647.5807266,133.4698133,734.93405,7,10,13% +7/20/2018 19:00,23.76735615,131.3753588,936.5232251,886.6171065,125.1006152,832.3274413,703.9391635,128.3882777,121.3283701,7.05990766,230.8431437,0,230.8431437,3.77224512,227.0708986,0.414818619,2.292932567,-0.210968825,0.210968825,0.566231484,0.133579832,4.40661228,141.7317986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6254443,2.732978748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.192575596,136.2379958,119.8180198,138.9709746,703.9391635,0,0.793960728,37.44279627,-0.793960728,142.5572037,0.987024593,0,814.6232862,138.9709746,905.5770097,7,11,11% +7/20/2018 20:00,17.61572899,168.0137916,980.9886759,895.1355341,127.8281735,945.9941655,814.6253761,131.3687894,123.9736824,7.395107011,241.706553,0,241.706553,3.854491065,237.852062,0.307452471,2.932393852,0.044266047,-0.044266047,0.52258375,0.130305453,4.324611919,139.0943851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1682191,2.792565656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.133166614,133.7028136,122.3013857,136.4953793,814.6253761,0,0.910058137,24.4866132,-0.910058137,155.5133868,0.995058455,0,932.9012539,136.4953793,1022.23475,7,12,10% +7/20/2018 21:00,19.81629678,212.2777237,966.5340762,892.4335502,126.9465294,1001.206029,870.8012641,130.4047653,123.1186232,7.286142132,238.1752832,0,238.1752832,3.827906245,234.3473769,0.345859624,3.704945207,0.285026549,-0.285026549,0.481411279,0.131342011,4.003908254,128.7794528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3463036,2.773305044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9008179,123.7877084,121.2471215,126.5610134,870.8012641,0,0.97576034,12.64101895,-0.97576034,167.3589811,0.998757909,0,990.9667714,126.5610134,1073.798423,7,13,8% +7/20/2018 22:00,28.47198511,239.9401957,894.1763803,877.9006185,122.4575648,991.6260006,866.1203039,125.5056966,118.7650174,6.740679256,220.4959632,0,220.4959632,3.692547398,216.8034158,0.496929885,4.187746423,0.533985083,-0.533985083,0.438836862,0.136950122,3.476088905,111.8029682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1614522,2.67523802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.518414579,107.4692656,116.6798667,110.1445037,866.1203039,0,0.986581266,9.396805443,-0.986581266,170.6031946,0.999319938,0,982.2111549,110.1445037,1054.29853,7,14,7% +7/20/2018 23:00,39.45621984,255.8059945,769.0965418,848.0149287,114.3354041,915.3301498,798.6446054,116.6855444,110.8877698,5.7977746,189.9239951,0,189.9239951,3.447634286,186.4763608,0.688640947,4.46465685,0.818831692,-0.818831692,0.390125223,0.148661966,2.787514408,89.65604537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5895421,2.497799304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019544699,86.18080104,108.6090868,88.67860034,798.6446054,0,0.941781304,19.64711236,-0.941781304,160.3528876,0.996909118,0,904.785176,88.67860034,962.8235464,7,15,6% +7/20/2018 0:00,51.15151177,266.8078406,600.4680456,794.1388352,102.3340385,774.3640478,670.5891763,103.7748715,99.2482897,4.526581766,148.6761785,0,148.6761785,3.085748834,145.5904296,0.892762298,4.656675289,1.188554967,-1.188554967,0.32689882,0.170423787,1.998989532,64.29437482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.40123116,2.235614526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.448261111,61.80219863,96.84949227,64.03781316,670.5891763,0,0.844423099,32.3898217,-0.844423099,147.6101783,0.990787977,0,761.2611856,64.03781316,803.1726536,7,16,6% +7/20/2018 1:00,62.97212679,275.8575569,401.4720569,695.5819308,85.38300159,573.5647381,487.7298831,85.83485501,82.80838906,3.026465947,99.91616081,0,99.91616081,2.574612528,97.34154828,1.099070949,4.814622635,1.763994124,-1.763994124,0.228492928,0.21267483,1.188109009,38.21366983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.59857333,1.865298012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860780933,36.73243297,80.45935427,38.59773098,487.7298831,0,0.701182508,45.47804602,-0.701182508,134.521954,0.978691889,0,557.796635,38.59773098,583.0580779,7,17,5% +7/20/2018 2:00,74.60029109,284.2828962,191.3554736,496.8073002,59.42768921,318.4067119,259.3284684,59.0782435,57.63572511,1.442518389,48.18831411,0,48.18831411,1.791964094,46.39635002,1.302020702,4.961672545,2.999801066,-2.999801066,0.017157494,0.310561742,0.465054621,14.95775523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.40165126,1.298271886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33693049,14.37796328,55.73858175,15.67623516,259.3284684,0,0.521990052,58.53416485,-0.521990052,121.4658352,0.954212734,0,303.1931086,15.67623516,313.452891,7,18,3% +7/20/2018 3:00,85.6990573,292.864358,18.79306873,86.81580596,12.28230575,39.87423168,27.82061268,12.053619,11.91194891,0.14167009,4.926953927,0,4.926953927,0.370356835,4.556597091,1.495730716,5.111447309,9.745993778,-9.745993778,0,0.653555091,0.092589209,2.977987228,0.53194683,1,0.102248439,0,0.950974048,0.989736011,0.724496596,1,11.54406871,0.268322266,0.07265041,0.312029739,0.814722057,0.539218653,0.961238037,0.922476074,0.06349507,2.862554597,11.60756378,3.130876863,13.02152596,0,0.320455617,71.30951909,-0.320455617,108.6904809,0.893972153,0,23.24844538,3.130876863,25.29754167,7,19,9% +7/20/2018 4:00,96.38836993,302.2034726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682294416,5.274445607,-5.473792495,5.473792495,0.533772664,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103751632,84.04475251,-0.103751632,95.95524749,0.568079868,0,0,0,0,7,20,0% +7/20/2018 5:00,105.790149,312.8517842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846386416,5.460293704,-1.613567247,1.613567247,0.80608994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105531597,96.05779497,0.105531597,83.94220503,0,0.576208248,0,0,0,7,21,0% +7/20/2018 6:00,113.5662648,325.2916961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98210524,5.677411126,-0.582083815,0.582083815,0.629695885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296102146,107.2236386,0.296102146,72.77636139,0,0.881139353,0,0,0,7,22,0% +7/20/2018 7:00,119.0552107,339.7341994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077905418,5.929480361,-0.008350133,0.008350133,0.531581647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454976795,117.0634412,0.454976795,62.93655883,0,0.940104285,0,0,0,7,23,0% +7/21/2018 8:00,121.587171,355.7583483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122096463,6.20915452,0.441669656,-0.441669656,0.45462373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571330928,124.8430877,0.571330928,55.15691235,0,0.962485046,0,0,0,7,0,0% +7/21/2018 9:00,120.7731307,12.1674664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10788878,0.21236235,0.894055114,-0.894055114,0.37726126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637236089,129.586029,0.637236089,50.41397098,0,0.971536145,0,0,0,7,1,0% +7/21/2018 10:00,116.7446464,27.53808224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037578464,0.480630205,1.463962301,-1.463962301,0.279801392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648200355,130.4060534,0.648200355,49.59394662,0,0.972863356,0,0,0,7,2,0% +7/21/2018 11:00,110.0670364,41.02595942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921032183,0.716038071,2.394879084,-2.394879084,0.120605246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603474722,127.1191637,0.603474722,52.8808363,0,0.967146488,0,0,0,7,3,0% +7/21/2018 12:00,101.4339035,52.56012878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77035559,0.917347302,4.717064036,-4.717064036,0,#DIV/0!,0,0,0.216615135,1,0.208903381,0,0.937687774,0.976449737,0.724496596,1,0,0,0.033608853,0.312029739,0.909114991,0.633611587,0.961238037,0.922476074,0,0,0,0,0,0,-0.506104647,120.4047088,0.506104647,59.59529124,0,0.951206202,0,0,0,7,4,0% +7/21/2018 13:00,91.44645329,62.52151425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596041699,1.091206277,39.26593527,-39.26593527,0,#DIV/0!,0,0,0.860815668,1,0.025461864,0,0.958914958,0.997676921,0.724496596,1,0,0,0.104434102,0.312029739,0.746847231,0.471343827,0.961238037,0.922476074,0,0,0,0,0,0,-0.362723166,111.2675295,0.362723166,68.73247053,0,0.912153828,0,0,0,7,5,0% +7/21/2018 14:00,80.46197828,71.43962877,89.9975431,311.4587298,38.38818601,37.90908006,0,37.90908006,37.23064056,0.678439495,79.50094057,56.52244885,22.97849173,1.157545446,21.82094628,1.404326444,1.246856738,-5.949621255,5.949621255,0.452401153,0.426547044,0.465394448,14.96868522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.78750785,0.838637735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337176693,14.3884696,36.12468454,15.22710733,0,56.52244885,-0.181476528,100.4557752,0.181476528,79.5442248,0,0.774482276,36.12468454,59.00274213,74.74079921,7,6,107% +7/21/2018 15:00,69.0523006,79.88551833,292.0623911,611.1881865,73.55307274,86.54426815,13.00740226,73.53686589,71.33517622,2.201689672,73.03180463,0,73.03180463,2.217896525,70.8139081,1.205190002,1.394265319,-2.573429465,2.573429465,0.970236047,0.251840275,2.152662025,69.23701046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.57008475,1.606858482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559596309,66.55324802,70.12968106,68.1601065,13.00740226,0,0.021282156,88.78053022,-0.021282156,91.21946978,0,0,70.12968106,68.1601065,114.7391076,7,7,64% +7/21/2018 16:00,57.30257918,88.52438585,499.8085108,750.6988233,94.27917532,271.4041809,176.2001029,95.20407801,91.43631034,3.767767674,124.027225,0,124.027225,2.842864989,121.18436,1.000118677,1.545042001,-1.477101663,1.477101663,0.782752951,0.188630592,3.103632273,99.82348255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89205944,2.059646007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248571016,95.9541284,90.14063046,98.01377441,176.2001029,0,0.234714772,76.42518986,-0.234714772,103.5748101,0.836975487,0,237.6157974,98.01377441,301.7638524,7,8,27% +7/21/2018 17:00,45.50547888,98.33636293,685.985062,823.8376398,108.6058198,476.1538759,365.6516771,110.5021988,105.3309536,5.171245159,169.5998865,0,169.5998865,3.27486618,166.3250203,0.794220434,1.716293308,-0.895845244,0.895845244,0.683352249,0.158320969,3.793026762,121.9967791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2481191,2.372629399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748034977,117.2679445,103.9961541,119.6405739,365.6516771,0,0.443839489,63.65088651,-0.443839489,116.3491135,0.937346662,0,446.738533,119.6405739,525.0408958,7,9,18% +7/21/2018 18:00,34.06742429,111.2189498,834.8625975,864.570726,118.6704039,669.7906659,548.4050657,121.3856003,115.0920534,6.293546907,206.000453,0,206.000453,3.578350524,202.4221025,0.594588722,1.941136864,-0.508652201,0.508652201,0.617138339,0.142143634,4.226492391,135.9385238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6308594,2.592502774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.06207935,130.6692797,113.6929388,133.2617825,548.4050657,0,0.634309085,50.63124063,-0.634309085,129.3687594,0.971174076,0,646.2897214,133.2617825,733.5068929,7,10,13% +7/21/2018 19:00,23.92429791,131.6554322,935.2251419,886.3589978,125.0202822,831.2768222,702.9762406,128.3005816,121.2504594,7.05012216,230.5259861,0,230.5259861,3.769822785,226.7561633,0.41755777,2.29782077,-0.210631336,0.210631336,0.566173769,0.133679343,4.40045624,141.5337992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5505536,2.731223775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.188115566,136.0476713,119.7386692,138.778895,702.9762406,0,0.79310555,37.52331548,-0.79310555,142.4766845,0.986956689,0,813.5457719,138.778895,904.3737831,7,11,11% +7/21/2018 20:00,17.8081385,168.0887549,979.7901889,894.9138781,127.7552492,945.1112934,813.8222641,131.2890294,123.9029571,7.386072309,241.413767,0,241.413767,3.85229213,237.5614749,0.31081065,2.933702208,0.045198099,-0.045198099,0.52242436,0.130390415,4.318604316,138.9011599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1002352,2.790972534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128814126,133.5170783,122.2290493,136.3080508,813.8222641,0,0.909386125,24.57934403,-0.909386125,155.420656,0.995017855,0,931.9967327,136.3080508,1021.207626,7,12,10% +7/21/2018 21:00,19.98448297,211.9937225,965.3622399,892.2117305,126.8748484,1000.422444,870.0960319,130.3264119,123.0491036,7.277308335,237.8889964,0,237.8889964,3.825744797,234.0632516,0.348795027,3.699988452,0.286546267,-0.286546267,0.481151392,0.131427192,3.997732625,128.5808233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2794788,2.771739082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.896343678,123.5967782,121.1758224,126.3685173,870.0960319,0,0.9752125,12.7836594,-0.9752125,167.2163406,0.998729123,0,990.1660695,126.3685173,1072.871737,7,13,8% +7/21/2018 22:00,28.59692958,239.628917,892.9562689,877.6400869,122.3807014,990.8539225,865.4319693,125.4219533,118.6904717,6.731481541,220.1978154,0,220.1978154,3.690229684,216.5075857,0.499110577,4.182313584,0.536241798,-0.536241798,0.438450941,0.13705117,3.469485669,111.5905854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.089796,2.673558844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513630557,107.2651152,116.6034266,109.9386741,865.4319693,0,0.986089836,9.567720314,-0.986089836,170.4322797,0.999294681,0,981.42499,109.9386741,1053.377653,7,14,7% +7/21/2018 23:00,39.55947476,255.5470044,767.7577735,847.6561472,114.245485,914.4653235,797.8770789,116.5882445,110.8005621,5.787682399,189.5966839,0,189.5966839,3.444922895,186.151761,0.690443085,4.460136621,0.822212937,-0.822212937,0.389546996,0.148804075,2.780315176,89.42449334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5057148,2.49583491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014328881,85.95822442,108.5200437,88.45405933,797.8770789,0,0.941274456,19.73330199,-0.941274456,160.266698,0.99688053,0,903.9081692,88.45405933,961.799582,7,15,6% +7/21/2018 0:00,51.24756056,266.5905769,598.9528216,793.5598183,102.2187554,773.2812139,669.6295718,103.6516422,99.13648281,4.515159368,148.3053187,0,148.3053187,3.082272623,145.223046,0.894438665,4.652883322,1.193999563,-1.193999563,0.325967739,0.170662449,1.991184086,64.04332485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.29375812,2.233096023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442606092,61.56087985,96.73636421,63.79397587,669.6295718,0,0.843829988,32.4532054,-0.843829988,147.5467946,0.990746358,0,760.1694237,63.79397587,801.921305,7,16,5% +7/21/2018 1:00,63.06922429,275.6679743,399.7508466,694.4713852,85.21526847,572.0937093,486.4345049,85.65920446,82.64571372,3.013490737,99.49377567,0,99.49377567,2.569554755,96.92422091,1.100765621,4.811313794,1.774234732,-1.774234732,0.226741681,0.213170952,1.180016353,37.95338219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44220361,1.861633673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.854917831,36.48223458,80.29712144,38.34386826,486.4345049,0,0.700438514,45.53780339,-0.700438514,134.4621966,0.978616147,0,556.3297823,38.34386826,581.4250772,7,17,5% +7/21/2018 2:00,74.70374051,284.1115467,189.4960221,494.1997238,59.12115391,316.2664813,257.4995472,58.76693404,57.33843298,1.428501058,47.72822539,0,47.72822539,1.782720924,45.94550446,1.303826235,4.958681932,3.0272422,-3.0272422,0.012464784,0.31199153,0.45793088,14.72863124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.11588276,1.291575241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.331769364,14.15772058,55.44765212,15.44929582,257.4995472,0,0.521043487,58.59772741,-0.521043487,121.4022726,0.95403872,0,301.1121905,15.44929582,311.2234456,7,18,3% +7/21/2018 3:00,85.81021296,292.7058008,17.73058073,82.33861596,11.71488645,37.78723642,26.2919364,11.49530001,11.3616394,0.133660607,4.652231625,0,4.652231625,0.35324705,4.298984575,1.497670748,5.108679964,10.03117719,-10.03117719,0,0.660716456,0.088311762,2.840409851,0.542392452,1,0.099360917,0,0.951297717,0.99005968,0.724496596,1,11.00983174,0.255926285,0.073783202,0.312029739,0.812164064,0.53666066,0.961238037,0.922476074,0.060589961,2.730309989,11.0704217,2.986236274,12.03138855,0,0.319314772,71.37850972,-0.319314772,108.6214903,0.893414698,0,21.81944106,2.986236274,23.77387298,7,19,9% +7/21/2018 4:00,96.51790788,302.0558925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68455528,5.27186985,-5.38188602,5.38188602,0.549489596,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102278251,84.12962252,-0.102278251,95.87037748,0.561137516,0,0,0,0,7,20,0% +7/21/2018 5:00,105.9375702,312.7176727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848959402,5.457953018,-1.60514398,1.60514398,0.804649477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107282521,96.15868836,0.107282521,83.84131164,0,0.583940855,0,0,0,7,21,0% +7/21/2018 6:00,113.7331748,325.1792665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985018369,5.67544886,-0.58180313,0.58180313,0.629647885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298117073,107.3445452,0.298117073,72.65545476,0,0.882280656,0,0,0,7,22,0% +7/21/2018 7:00,119.2398027,339.6575479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081127156,5.92814254,-0.010676946,0.010676946,0.531979555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457224102,117.2081285,0.457224102,62.79187155,0,0.940644435,0,0,0,7,23,0% +7/22/2018 8:00,121.782498,355.73223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125505562,6.20869867,0.437605595,-0.437605595,0.455318725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573763068,125.013055,0.573763068,54.98694498,0,0.962856015,0,0,0,7,0,0% +7/22/2018 9:00,120.9683284,12.1968359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111295622,0.212874945,0.887888643,-0.887888643,0.378315789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639792849,129.7763745,0.639792849,50.22362549,0,0.971849705,0,0,0,7,1,0% +7/22/2018 10:00,116.9296982,27.61396605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040808226,0.481954627,1.454030516,-1.454030516,0.281499827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650812994,130.6029262,0.650812994,49.39707377,0,0.973173015,0,0,0,7,2,0% +7/22/2018 11:00,110.2365288,41.13350166,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923990384,0.717915037,2.375535866,-2.375535866,0.123913131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606070698,127.3059279,0.606070698,52.69407205,0,0.967501374,0,0,0,7,3,0% +7/22/2018 12:00,101.5869327,52.68756821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773026453,0.91957154,4.656308648,-4.656308648,0,#DIV/0!,0,0,0.210186687,1,0.211549043,0,0.937325925,0.976087888,0.724496596,1,0,0,0.032701751,0.312029739,0.911451523,0.635948119,0.961238037,0.922476074,0,0,0,0,0,0,-0.508612615,120.5714608,0.508612615,59.42853917,0,0.951693355,0,0,0,7,4,0% +7/22/2018 13:00,91.58476458,62.66289275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598455687,1.093673797,35.8489499,-35.8489499,0,#DIV/0!,0,0,0.848493521,1,0.027887588,0,0.958685502,0.997447466,0.724496596,1,0,0,0.103372915,0.312029739,0.748982663,0.473479259,0.961238037,0.922476074,0,0,0,0,0,0,-0.365077895,111.4123766,0.365077895,68.58762344,0,0.913042927,0,0,0,7,5,0% +7/22/2018 14:00,80.58737513,71.59394058,87.97688034,306.5622371,37.84066661,37.36283778,0,37.36283778,36.69963089,0.663206886,78.75816384,56.28611492,22.47204891,1.141035715,21.3310132,1.406515032,1.249549988,-6.029926935,6.029926935,0.438668073,0.430120578,0.451052631,14.50740309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.27708115,0.826676492,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.326786096,13.94506767,35.60386725,14.77174416,0,56.28611492,-0.183604202,100.5797652,0.183604202,79.42023479,0,0.777675078,35.60386725,58.54405297,73.91977903,7,6,108% +7/22/2018 15:00,69.17047462,80.05558629,289.9133971,609.1921385,73.29159004,85.07802312,11.81095529,73.26706783,71.08157819,2.185489647,72.50287148,0,72.50287148,2.210011857,70.29285962,1.207252527,1.397233565,-2.588061692,2.588061692,0.972738305,0.252805116,2.140971662,68.8610082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32631667,1.601146067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551126681,66.19182033,69.87744335,67.7929664,11.81095529,0,0.019387898,88.88908564,-0.019387898,91.11091436,0,0,69.87744335,67.7929664,114.246584,7,7,63% +7/22/2018 16:00,57.41728186,88.71653992,497.8666529,749.7482183,94.11474995,269.7881028,174.7581307,95.02997213,91.276843,3.753129129,123.551441,0,123.551441,2.837906958,120.7135341,1.002120616,1.548395723,-1.481951269,1.481951269,0.783582282,0.189036059,3.094428826,99.52746806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73877337,2.05605393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24190315,95.66958801,89.98067652,97.72564194,174.7581307,0,0.233089091,76.52099204,-0.233089091,103.479008,0.835489747,0,235.9893028,97.72564194,299.948781,7,8,27% +7/22/2018 17:00,45.62290605,98.56066751,684.2810738,823.2978967,108.4849269,474.6717769,364.2996711,110.3721059,105.2137061,5.158399776,169.1830895,0,169.1830895,3.271220812,165.9118687,0.796269925,1.720208161,-0.897619641,0.897619641,0.683655689,0.158538547,3.785277375,121.7475322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1354163,2.369988343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.742420573,117.0283588,103.8778369,119.3983472,364.2996711,0,0.442488281,63.73724865,-0.442488281,116.2627513,0.937002657,0,445.2275966,119.3983472,523.3714269,7,9,18% +7/22/2018 18:00,34.19779417,111.4865167,833.3691245,864.216629,118.5736378,668.5179411,547.2374475,121.2804936,114.9982052,6.282288477,205.6354253,0,205.6354253,3.575432671,202.0599926,0.596864105,1.945806789,-0.509053581,0.509053581,0.617206979,0.142282254,4.21963496,135.7179652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.540649,2.590388799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057111164,130.4572705,113.5977601,133.0476592,547.2374475,0,0.63321791,50.71206486,-0.63321791,129.2879351,0.971038241,0,644.9862485,133.0476592,732.0632806,7,10,14% +7/22/2018 19:00,24.08474367,131.9451142,933.8897972,886.0929004,124.9375996,830.2099688,701.9996431,128.2103258,121.17027,7.040055768,230.1997231,0,230.1997231,3.767329599,226.4323935,0.420358076,2.302876674,-0.210232757,0.210232757,0.566105609,0.133781952,4.394070851,141.3284231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4734725,2.72941747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183489373,135.850256,119.6569619,138.5796734,701.9996431,0,0.792241584,37.60451278,-0.792241584,142.3954872,0.986887938,0,812.451942,138.5796734,903.1495667,7,11,11% +7/22/2018 20:00,18.00577011,168.1725871,978.5460847,894.6833351,127.6795159,944.2054886,812.9992875,131.2062012,123.8295075,7.376693726,241.1098359,0,241.1098359,3.850008493,237.2598274,0.314259973,2.935165357,0.046204906,-0.046204906,0.522252185,0.130478797,4.312327705,138.6992825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0296327,2.789318047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124266743,133.323026,122.1538994,136.1123441,812.9992875,0,0.908700605,24.67360218,-0.908700605,155.3263978,0.994976376,0,931.0689845,136.1123441,1020.151791,7,12,10% +7/22/2018 21:00,20.15920558,211.7129297,964.1348269,891.9789393,126.799734,999.6063506,869.3620408,130.2443098,122.9762542,7.268055578,237.589131,0,237.589131,3.823479822,233.7656512,0.351844512,3.695087692,0.28815859,-0.28815859,0.480875668,0.1315166,3.991246436,128.3722052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2094532,2.770098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891644456,123.3962465,121.1010976,126.1663446,869.3620408,0,0.974644134,12.93000848,-0.974644134,167.0699915,0.998699224,0,989.3322935,126.1663446,1071.905643,7,13,8% +7/22/2018 22:00,28.72813924,239.3148721,891.6697445,877.3647825,122.2996093,990.0371879,864.7035798,125.333608,118.6118248,6.721783177,219.8834374,0,219.8834374,3.687784458,216.195653,0.501400618,4.176832468,0.538618591,-0.538618591,0.438044486,0.137157967,3.462532759,111.3669559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0141977,2.671787286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.508593197,107.0501541,116.5227909,109.7219413,864.7035798,0,0.985569055,9.745602031,-0.985569055,170.254398,0.999267888,0,980.5933106,109.7219413,1052.404127,7,14,7% +7/22/2018 23:00,39.66844927,255.2840057,766.3417336,847.2756497,114.1502983,913.5413821,797.0561288,116.4852533,110.7082456,5.777007692,189.2504784,0,189.2504784,3.442052664,185.8084257,0.692345049,4.455546428,0.825762109,-0.825762109,0.388940052,0.148954824,2.772734803,89.18068249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4169767,2.493755438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008836926,85.72386416,108.4258136,88.2176196,797.0561288,0,0.940728238,19.82578376,-0.940728238,160.1742162,0.996849687,0,902.9709664,88.2176196,960.7076341,7,15,6% +7/22/2018 0:00,51.34899955,266.3694035,597.3504854,792.9453064,102.09667,772.1223247,668.6011658,103.5211589,99.01807866,4.503080281,147.9131324,0,147.9131324,3.078591296,144.8345411,0.89620911,4.649023117,1.19970879,-1.19970879,0.324991404,0.170915857,1.982981278,63.77949436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17994355,2.230428914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436663186,61.30727595,96.61660673,63.53770486,668.6011658,0,0.84318699,32.52179601,-0.84318699,147.478204,0.990701172,0,759.0005655,63.53770486,800.5847225,7,16,5% +7/22/2018 1:00,63.17157312,275.4748106,397.9353921,693.2937436,85.03782739,570.5255637,485.0521355,85.47342821,82.47362313,2.999805074,99.0482472,0,99.0482472,2.564204252,96.48404295,1.102551945,4.807942451,1.784988563,-1.784988563,0.224902668,0.213697573,1.171541132,37.68078996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.27678359,1.857757252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.848777562,36.22020856,80.12556116,38.07796582,485.0521355,0,0.699634376,45.60232273,-0.699634376,134.3976773,0.9785341,0,554.7656162,38.07796582,579.6868833,7,17,4% +7/22/2018 2:00,74.81242654,283.9369521,187.5439221,491.4380322,58.79704749,313.9992623,255.5613774,58.43788487,57.02409957,1.413785304,47.24514315,0,47.24514315,1.77294792,45.47219523,1.305723164,4.955634683,3.056247773,-3.056247773,0.007504539,0.313510813,0.450520498,14.49028786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.81373352,1.284494732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326400567,13.92861585,55.14013409,15.21311059,255.5613774,0,0.520027675,58.66589208,-0.520027675,121.3341079,0.953851271,0,298.9076788,15.21311059,308.8643554,7,18,3% +7/22/2018 3:00,85.92642326,292.5443312,16.64914091,77.73310663,11.1271797,35.6441883,24.72702586,10.91716243,10.79165417,0.125508257,4.372302494,0,4.372302494,0.335525523,4.036776971,1.499699,5.105861788,10.34515113,-10.34515113,0,0.668333565,0.083881381,2.697913544,0.553366325,1,0.09636425,0,0.951631572,0.990393535,0.724496596,1,10.45650824,0.243087099,0.074963574,0.312029739,0.809509522,0.534006118,0.961238037,0.922476074,0.057581248,2.593337118,10.51408949,2.836424217,11.04392243,0,0.318101604,71.4518433,-0.318101604,108.5481567,0.892817517,0,20.37429688,2.836424217,22.2306798,7,19,9% +7/22/2018 4:00,96.65299214,301.9057886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686912945,5.269250042,-5.289346707,5.289346707,0.565314751,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100721666,84.21927129,-0.100721666,95.78072871,0.553582476,0,0,0,0,7,20,0% +7/22/2018 5:00,106.0907595,312.5815957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851633059,5.455578027,-1.596353745,1.596353745,0.803146258,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109119847,96.26458112,0.109119847,83.73541888,0,0.591788215,0,0,0,7,21,0% +7/22/2018 6:00,113.906052,325.065771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988035646,5.673467989,-0.581390022,0.581390022,0.629577239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300218873,107.4707496,0.300218873,72.52925041,0,0.883454841,0,0,0,7,22,0% +7/22/2018 7:00,119.4304153,339.5812333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084453974,5.926810599,-0.012954932,0.012954932,0.532369113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459555991,117.3584601,0.459555991,62.64153986,0,0.941199329,0,0,0,7,23,0% +7/23/2018 8:00,121.9835907,355.7082784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12901529,6.208280635,0.43355008,-0.43355008,0.456012259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576274897,125.188963,0.576274897,54.81103701,0,0.963235853,0,0,0,7,0,0% +7/23/2018 9:00,121.1686564,12.23013405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114792005,0.213456107,0.881706233,-0.881706233,0.379373043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642422142,129.9726705,0.642422142,50.02732945,0,0.972169557,0,0,0,7,1,0% +7/23/2018 10:00,117.1189982,27.69494255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044112135,0.483367934,1.444068863,-1.444068863,0.28320337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653489237,130.8051949,0.653489237,49.19480507,0,0.973487646,0,0,0,7,2,0% +7/23/2018 11:00,110.4093704,41.24664438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927007038,0.71988975,2.356191922,-2.356191922,0.12722114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608720191,127.4970219,0.608720191,52.50297814,0,0.967860454,0,0,0,7,3,0% +7/23/2018 12:00,101.742548,52.82073628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775742452,0.921895761,4.596190288,-4.596190288,0,#DIV/0!,0,0,0.203720943,1,0.214232738,0,0.936957313,0.975719276,0.724496596,1,0,0,0.031784287,0.312029739,0.913821341,0.638317937,0.961238037,0.922476074,0,0,0,0,0,0,-0.511163546,120.7413641,0.511163546,59.25863594,0,0.952183948,0,0,0,7,4,0% +7/23/2018 13:00,91.7250851,62.81002159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600904742,1.09624168,32.942179,-32.942179,0,#DIV/0!,0,0,0.836153962,1,0.0303469,0,0.95845143,0.997213393,0.724496596,1,0,0,0.102301151,0.312029739,0.751148571,0.475645167,0.961238037,0.922476074,0,0,0,0,0,0,-0.367465293,111.55938,0.367465293,68.44061998,0,0.913932728,0,0,0,7,5,0% +7/23/2018 14:00,80.71434937,71.75408677,85.94072523,301.5631527,37.28150087,36.80518355,0,36.80518355,36.15732607,0.647857488,77.97822085,56.01672223,21.96149862,1.124174805,20.83732382,1.40873115,1.252345066,-6.113374453,6.113374453,0.424397707,0.43380482,0.436718631,14.0463724,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.75579713,0.81446082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316401162,13.50190743,35.07219829,14.31636825,0,56.01672223,-0.185754532,100.7051264,0.185754532,79.29487359,0,0.780827563,35.07219829,58.05576895,73.06853795,7,6,108% +7/23/2018 15:00,69.29005563,80.23173635,287.7384226,607.1558398,73.02553385,83.60457781,10.61193948,72.99263834,70.82354457,2.169093771,71.96750115,0,71.96750115,2.201989281,69.76551187,1.20933961,1.400307964,-2.602971724,2.602971724,0.975288071,0.253791389,2.129095129,68.47901808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.07828494,1.595333738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.542522174,65.8246369,69.62080711,67.41997064,10.61193948,0,0.017478115,88.99852679,-0.017478115,91.00147321,0,0,69.62080711,67.41997064,113.7458295,7,7,63% +7/23/2018 16:00,57.53338771,88.91526935,495.8988334,748.779953,93.94772589,268.1608188,173.3076686,94.8531502,91.11485532,3.738294875,123.069284,0,123.069284,2.832870566,120.2364135,1.004147045,1.551864205,-1.486832245,1.486832245,0.784416978,0.189449379,3.085061669,99.22618811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.58306466,2.052405081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235116677,95.37998627,89.81818133,97.43239135,173.3076686,0,0.231453404,76.61734521,-0.231453404,103.3826548,0.833973797,0,234.3522357,97.43239135,298.1197872,7,8,27% +7/23/2018 17:00,45.741986,98.79236627,682.5497263,822.7475089,108.3619386,473.1784782,362.9387038,110.2397744,105.0944263,5.145348147,168.7595957,0,168.7595957,3.267512261,165.4920834,0.798348262,1.724252067,-0.899368139,0.899368139,0.6839547,0.158760504,3.777355519,121.4927381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.02076,2.36730151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681215,116.783441,103.7574412,119.1507425,362.9387038,0,0.441130116,63.82399079,-0.441130116,116.1760092,0.936654757,0,443.7057048,119.1507425,521.6874828,7,9,18% +7/23/2018 18:00,34.33045162,111.7626038,831.8443594,863.8541243,118.4747687,667.2326771,546.0595656,121.1731114,114.9023173,6.270794154,205.2627471,0,205.2627471,3.572451401,201.6902957,0.599179414,1.950625417,-0.509407026,0.509407026,0.617267422,0.142424202,4.212580322,135.4910638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4484779,2.588228879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.052000103,130.2391642,113.500478,132.8273931,546.0595656,0,0.632120112,50.79328567,-0.632120112,129.2067143,0.970901109,0,643.6703157,132.8273931,730.6031879,7,10,14% +7/23/2018 19:00,24.24868416,132.2440604,932.5167321,885.8186711,124.8525351,829.1265442,701.0090687,128.1174755,121.0877705,7.029705023,229.8642426,0,229.8642426,3.76476459,226.099478,0.423219378,2.308094271,-0.209772508,0.209772508,0.566026901,0.133887716,4.38745379,141.1155956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3941708,2.727559129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178695335,135.6456781,119.5728661,138.3732373,701.0090687,0,0.791368585,37.68640752,-0.791368585,142.3135925,0.986818316,0,811.3414547,138.3732373,901.903971,7,11,11% +7/23/2018 20:00,18.20856171,168.2649864,977.2557255,894.4437347,127.600931,943.2761228,812.1558642,131.1202586,123.7532921,7.366966453,240.7946038,0,240.7946038,3.847638867,236.9469649,0.317799354,2.936778029,0.047286883,-0.047286883,0.522067156,0.130570666,4.305779473,138.4886689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9563716,2.787601261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119522571,133.1205762,122.0758942,135.9081775,812.1558642,0,0.908001066,24.76944111,-0.908001066,155.2305589,0.994933985,0,930.1173648,135.9081775,1019.066549,7,12,10% +7/23/2018 21:00,20.34040747,211.4356723,962.8511091,891.7349738,126.721137,998.7568997,868.5984941,130.1584055,122.9000272,7.258378371,237.2755087,0,237.2755087,3.821109831,233.4543989,0.355007082,3.690248638,0.289863884,-0.289863884,0.480584046,0.131610314,3.984447198,128.1535183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1361808,2.768381065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.886718431,123.1860364,121.0228993,125.9544174,868.5984941,0,0.974054534,13.08012416,-0.974054534,166.9198758,0.998668172,0,988.4645694,125.9544174,1070.899217,7,13,8% +7/23/2018 22:00,28.86561039,238.9984166,890.3160837,877.0744538,122.2142355,989.1748103,863.9342062,125.2406041,118.5290254,6.71157871,219.5526523,0,219.5526523,3.685210124,215.8674422,0.503799942,4.171309276,0.541115935,-0.541115935,0.437617415,0.137270614,3.455228223,111.1320169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9346077,2.66992219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.503301086,106.8243218,116.4379088,109.494244,863.9342062,0,0.985018093,9.930357481,-0.985018093,170.0696425,0.999239511,0,979.7151026,109.494244,1051.376895,7,14,7% +7/23/2018 23:00,39.78315291,255.0172298,764.8478004,846.8730942,114.0497886,912.5572922,796.1807797,116.3765125,110.6107667,5.765745793,188.8852262,0,188.8852262,3.439021925,185.4462043,0.694347005,4.450890309,0.829480138,-0.829480138,0.388304232,0.149114358,2.76477228,88.92458036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3232762,2.491559678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003068105,85.47768905,108.3263443,87.96924873,796.1807797,0,0.940141782,19.92461956,-0.940141782,160.0753804,0.996816532,0,901.9725083,87.96924873,959.5466222,7,15,6% +7/23/2018 0:00,51.45583442,266.1444784,595.6606137,792.2947524,101.9677194,770.8863707,667.5030129,103.3833577,98.89301639,4.490341314,147.4995151,0,147.4995151,3.074702959,144.4248121,0.89807373,4.645097433,1.205685101,-1.205685101,0.323969394,0.171184257,1.974381481,63.50289532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05972894,2.227611827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430432662,61.04139843,96.4901616,63.26901026,667.5030129,0,0.84249329,32.59565091,-0.84249329,147.4043491,0.990652346,0,757.7535876,63.26901026,799.1618894,7,16,5% +7/23/2018 1:00,63.27916998,275.2781831,396.0255814,692.0478686,84.8505783,568.8593161,483.5818877,85.27742841,82.2920203,2.985408115,98.57954524,0,98.57954524,2.558558001,96.02098724,1.104429864,4.804510654,1.796264324,-1.796264324,0.222974399,0.214255296,1.162685847,37.39597354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.10222004,1.853666562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842361938,35.9464322,79.94458198,37.80009876,483.5818877,0,0.69876942,45.67164242,-0.69876942,134.3283576,0.978445638,0,553.1031707,37.80009876,577.8425793,7,17,4% +7/23/2018 2:00,74.92633478,283.7592047,185.4997098,488.5190868,58.45508322,311.603976,253.5131541,58.09082196,56.69244679,1.398375168,46.73918872,0,46.73918872,1.762636436,44.97655228,1.307711238,4.952532405,3.086873039,-3.086873039,0.00226731,0.315122235,0.442830548,14.24295264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.49493626,1.277024097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.320829225,13.69086784,54.81576548,14.96789194,253.5131541,0,0.518942168,58.73867906,-0.518942168,121.2613209,0.95365015,0,296.5786229,14.96789194,306.3748088,7,18,3% +7/23/2018 3:00,86.04763711,292.3800237,15.55388315,73.01800976,10.52096709,33.45427331,23.13330045,10.32097286,10.20372112,0.117251741,4.088465022,0,4.088465022,0.317245976,3.771219046,1.501814581,5.10299408,10.69150008,-10.69150008,0,0.676420608,0.079311494,2.550930279,0.564876956,1,0.093260918,0,0.951975108,0.990737071,0.724496596,1,9.885786755,0.22984363,0.076191122,0.312029739,0.806760681,0.531257277,0.961238037,0.922476074,0.054477701,2.452051214,9.940264457,2.681894844,10.06583211,0,0.316816365,71.52949902,-0.316816365,108.470501,0.89217987,0,18.92079724,2.681894844,20.67604378,7,19,9% +7/23/2018 4:00,96.7935877,301.753221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6893668,5.266587235,-5.196454013,5.196454013,0.581200337,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099082002,84.31368945,-0.099082002,95.68631055,0.545367485,0,0,0,0,7,20,0% +7/23/2018 5:00,106.249672,312.4436014,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854406605,5.453169571,-1.587216325,1.587216325,0.801583667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111043112,96.37544991,0.111043112,83.62455009,0,0.599724437,0,0,0,7,21,0% +7/23/2018 6:00,114.0848434,324.9512489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991156144,5.671469202,-0.580846513,0.580846513,0.629484293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302406747,107.6022155,0.302406747,72.39778455,0,0.884659774,0,0,0,7,22,0% +7/23/2018 7:00,119.6269881,339.5052936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087884817,5.925485202,-0.015182193,0.015182193,0.532749998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461971359,117.514389,0.461971359,62.48561096,0,0.941768182,0,0,0,7,23,0% +7/24/2018 8:00,122.1903805,355.6865369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132624453,6.207901174,0.429506895,-0.429506895,0.456703685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578865055,125.3707562,0.578865055,54.62924384,0,0.963624083,0,0,0,7,0,0% +7/24/2018 9:00,121.3740371,12.26740517,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118376573,0.214106611,0.875513628,-0.875513628,0.380432041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645122413,130.1748542,0.645122413,49.82514583,0,0.97249533,0,0,0,7,1,0% +7/24/2018 10:00,117.3124623,27.78104216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047488721,0.484870655,1.434086489,-1.434086489,0.284910456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656227414,131.0127846,0.656227414,48.9872154,0,0.973806901,0,0,0,7,2,0% +7/24/2018 11:00,110.5854771,41.36539486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93008068,0.721962337,2.336864583,-2.336864583,0.13052631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611421501,127.6923579,0.611421501,52.30764211,0,0.968223353,0,0,0,7,3,0% +7/24/2018 12:00,101.9006717,52.95961746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778502231,0.924319695,4.536748724,-4.536748724,0,#DIV/0!,0,0,0.197223056,1,0.21695295,0,0.936582084,0.975344047,0.724496596,1,0,0,0.030857068,0.312029739,0.916223093,0.640719689,0.961238037,0.922476074,0,0,0,0,0,0,-0.513755802,120.9143273,0.513755802,59.08567274,0,0.952677498,0,0,0,7,4,0% +7/24/2018 13:00,91.86734735,62.96286639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603387686,1.098909325,30.44106017,-30.44106017,0,#DIV/0!,0,0,0.823806373,1,0.032838558,0,0.958212802,0.996974765,0.724496596,1,0,0,0.101219483,0.312029739,0.75334386,0.477840456,0.961238037,0.922476074,0,0,0,0,0,0,-0.369883868,111.7084553,0.369883868,68.29154469,0,0.914822437,0,0,0,7,5,0% +7/24/2018 14:00,80.84284439,71.92001687,83.89067701,296.4625171,36.71074662,36.23618552,0,36.23618552,35.60378216,0.632403359,77.16031059,55.71308024,21.44723035,1.106964459,20.34026589,1.410973811,1.255241093,-6.200092712,6.200092712,0.409568011,0.437602222,0.422408993,13.58612523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.22370967,0.801991982,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.306033877,13.05950034,34.52974355,13.86149233,0,55.71308024,-0.18792622,100.8317854,0.18792622,79.16821455,0,0.783938138,34.52974355,57.53710072,72.18662523,7,6,109% +7/24/2018 15:00,69.41100191,80.41390152,285.5382451,605.0792415,72.7549293,82.12488946,9.411281818,72.71360764,70.56109974,2.152507903,71.42588292,0,71.42588292,2.193829555,69.23205337,1.21145052,1.403487346,-2.618159258,2.618159258,0.977885292,0.254799245,2.117034794,68.09111625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.82601299,1.589422045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533784502,65.45177091,69.35979749,67.04119296,9.411281818,0,0.015553801,89.10879694,-0.015553801,90.89120306,0,0,69.35979749,67.04119296,113.2369175,7,7,63% +7/24/2018 16:00,57.65086932,89.12048533,493.9054496,747.7939872,93.77811757,266.5229582,171.849329,94.67362922,90.95036132,3.723267906,122.5808507,0,122.5808507,2.827756249,119.7530945,1.006197486,1.5554459,-1.491742597,1.491742597,0.785256698,0.189870587,3.07553149,98.91966479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.42494676,2.048699776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.228212095,95.08534439,89.65315886,97.13404416,171.849329,0,0.229808386,76.71420913,-0.229808386,103.2857909,0.832427435,0,232.7052549,97.13404416,296.2775441,7,8,27% +7/24/2018 17:00,45.86270591,99.03133352,680.7910737,822.186388,108.2368504,471.6742718,361.5690711,110.1052007,104.97311,5.132090681,168.3294181,0,168.3294181,3.263740391,165.0656777,0.800455222,1.728422833,-0.90108943,0.90108943,0.684249058,0.158986882,3.769260488,121.232374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9041462,2.364568803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730816393,116.5331692,103.6349626,118.897738,361.5690711,0,0.439765334,63.91109054,-0.439765334,116.0889095,0.936302998,0,442.1731679,118.897738,519.9893595,7,9,18% +7/24/2018 18:00,34.46539587,112.0470098,830.2880551,863.483087,118.3737753,665.9348161,544.8713848,121.0634313,114.8043693,6.259062074,204.8823578,0,204.8823578,3.569406079,201.3129517,0.601534636,1.955589238,-0.509711725,0.509711725,0.617319528,0.142569527,4.205326748,135.2577639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3543265,2.586022553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046744913,130.0149075,113.4010714,132.60093,544.8713848,0,0.6310157,50.87490112,-0.6310157,129.1250989,0.970762669,0,642.3418711,132.60093,729.1265278,7,10,14% +7/24/2018 19:00,24.41611255,132.551921,931.1054586,885.5361586,124.7650543,828.0261615,700.0041677,128.0219938,121.0029276,7.019066247,229.5194251,0,229.5194251,3.762126721,225.7572984,0.426141554,2.313467452,-0.209250072,0.209250072,0.565937559,0.133996695,4.380602698,140.895241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3126165,2.725648002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173731742,135.4338648,119.4863483,138.1595128,700.0041677,0,0.790486262,37.76902334,-0.790486262,142.2309767,0.986747794,0,810.2139164,138.1595128,900.6365544,7,11,11% +7/24/2018 20:00,18.41645197,168.3656384,975.9184609,894.194901,127.5194506,942.3225305,811.2913762,131.0311543,123.6742687,7.356885588,240.4679116,0,240.4679116,3.845181933,236.6227296,0.321427723,2.938534738,0.04844439,-0.04844439,0.521869211,0.130666091,4.298957046,138.2692362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8804113,2.785821221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114579745,132.9096491,121.994991,135.6954703,811.2913762,0,0.907286963,24.86691824,-0.907286963,155.1330818,0.994890644,0,929.1411909,135.6954703,1017.951162,7,12,10% +7/24/2018 21:00,20.52802723,211.1622478,961.5103633,891.4796279,126.6390078,997.8732204,867.8045746,130.0686457,122.8203745,7.248271262,236.9479529,0,236.9479529,3.818633334,233.1293196,0.358281664,3.68547648,0.291662464,-0.291662464,0.480276471,0.131708417,3.977332539,127.9246864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0596157,2.766586851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.881563885,122.9660745,120.9411795,125.7326613,867.8045746,0,0.973442968,13.23406448,-0.973442968,166.7659355,0.998635923,0,987.5620015,125.7326613,1069.851514,7,13,8% +7/24/2018 22:00,29.00933359,238.6798969,888.8945862,876.7688472,122.1245281,988.2658013,863.1229154,125.1428858,118.442023,6.700862861,219.2052888,0,219.2052888,3.682505113,215.5227837,0.506308385,4.165750059,0.54373427,-0.54373427,0.437169653,0.137389214,3.447570301,110.8857118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8509776,2.667962419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497752947,106.5875639,116.3487306,109.2555264,863.1229154,0,0.984436112,10.12188881,-0.984436112,169.8781112,0.999209502,0,978.7893494,109.2555264,1050.294906,7,14,7% +7/24/2018 23:00,39.90359018,254.7469054,763.2753928,846.4481369,113.9439023,911.5120364,795.2500708,116.2619656,110.5080733,5.753892319,188.5007849,0,188.5007849,3.435829064,185.0649559,0.696449032,4.446172259,0.833367943,-0.833367943,0.387639378,0.149282819,2.756426845,88.6561625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2245634,2.489246461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997021866,85.2196756,108.2215853,87.70892206,795.2500708,0,0.939514231,20.02986271,-0.939514231,159.9701373,0.996781008,0,900.9117527,87.70892206,958.315488,7,15,6% +7/24/2018 0:00,51.56806628,265.9159584,593.882839,791.6076035,101.831843,769.5723758,666.3341989,103.2381769,98.76123718,4.476939698,147.0643758,0,147.0643758,3.070605785,143.9937701,0.900032545,4.641109008,1.211931013,-1.211931013,0.32290128,0.1714679,1.965385371,63.21354951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.93305775,2.224643438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423915011,60.76326824,96.35697276,62.98791168,666.3341989,0,0.841748103,32.67482199,-0.841748103,147.325178,0.990599807,0,756.4275015,62.98791168,797.6518299,7,16,5% +7/24/2018 1:00,63.39200734,275.0782079,394.0213732,690.7325961,84.65342193,567.0940253,482.0229168,85.07110847,82.10080893,2.970299546,98.08765676,0,98.08765676,2.552613009,95.53504375,1.106399248,4.801020428,1.808071141,-1.808071141,0.220955314,0.214844746,1.153453369,37.09902533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9184204,1.849359436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83567304,35.66099427,79.75409344,37.51035371,482.0229168,0,0.697843014,45.74579613,-0.697843014,134.2542039,0.978350648,0,551.3415262,37.51035371,575.8913025,7,17,4% +7/24/2018 2:00,75.04544675,283.578395,183.3640226,485.4396424,58.09496562,309.0795915,251.354128,57.72546352,56.34318806,1.382275455,46.21050775,0,46.21050775,1.751777561,44.45873019,1.309790134,4.94937668,3.11917731,-3.11917731,0,0.316828595,0.43794439,14.08579702,0.003246472,1,0.31024472,0,0.922758261,0.961520224,0.724496596,1,54.16802459,1.26915688,0.000554334,0.312029739,0.998429306,0.722925901,0.961238037,0.922476074,0.316993047,13.53980387,54.48501763,14.80896075,250.5381139,0,0.517786571,58.81610416,-0.517786571,121.1838958,0.953435116,0,293.3568534,14.80896075,303.049022,7,18,3% +7/24/2018 3:00,86.17379617,292.2129506,14.45030373,68.21450769,9.89833387,31.22770493,21.51890986,9.708795076,9.599862583,0.108932493,3.802114727,0,3.802114727,0.298471287,3.50364344,1.504016472,5.100078106,11.07446895,-11.07446895,0,0.684991406,0.074617822,2.399965646,0.576933042,1,0.090053557,0,0.952327803,0.991089766,0.724496596,1,9.299643286,0.216241432,0.077465396,0.312029739,0.803919933,0.528416529,0.961238037,0.922476074,0.051289571,2.306938266,9.350932857,2.523179697,9.103939726,0,0.315459432,71.61144849,-0.315459432,108.3885515,0.891501014,0,17.46710436,2.523179697,19.11847501,7,19,9% +7/24/2018 4:00,96.93965606,301.5982476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691916174,5.263882439,-5.103467804,5.103467804,0.597101915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097359457,84.4128636,-0.097359457,95.5871364,0.536439205,0,0,0,0,7,20,0% +7/24/2018 5:00,106.4142598,312.303735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857279205,5.450728442,-1.57775181,1.57775181,0.79996514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113051783,96.49126759,0.113051783,83.50873241,0,0.607724799,0,0,0,7,21,0% +7/24/2018 6:00,114.2694932,324.8357365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994378892,5.66945313,-0.580174931,0.580174931,0.629369446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304679834,107.738903,0.304679834,72.26109701,0,0.885893307,0,0,0,7,22,0% +7/24/2018 7:00,119.8294589,339.4297633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091418598,5.924166949,-0.017357071,0.017357071,0.533121924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464469042,117.6758648,0.464469042,62.32413521,0,0.942350199,0,0,0,7,23,0% +7/25/2018 8:00,122.4027976,355.667046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136331833,6.207560993,0.425479591,-0.425479591,0.457392394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581532128,125.5583767,0.581532128,54.44162333,0,0.964020228,0,0,0,7,0,0% +7/25/2018 9:00,121.5843919,12.30869091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122047958,0.214827183,0.869316278,-0.869316278,0.381491851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647892068,130.3828608,0.647892068,49.61713925,0,0.972826652,0,0,0,7,1,0% +7/25/2018 10:00,117.5100065,27.87229257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050936517,0.486463275,1.424092067,-1.424092067,0.286619603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659025831,131.2256194,0.659025831,48.77438063,0,0.97413044,0,0,0,7,2,0% +7/25/2018 11:00,110.7647655,41.4897574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933209854,0.724132873,2.317570055,-2.317570055,0.133825868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614172924,127.891848,0.614172924,52.10815198,0,0.968589703,0,0,0,7,3,0% +7/25/2018 12:00,102.0612272,53.10419326,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781304453,0.926843019,4.478018599,-4.478018599,0,#DIV/0!,0,0,0.190697942,1,0.219708202,0,0.93620038,0.974962343,0.724496596,1,0,0,0.029920681,0.312029739,0.918655463,0.643152059,0.961238037,0.922476074,0,0,0,0,0,0,-0.516387754,121.0902596,0.516387754,58.90974044,0,0.953173536,0,0,0,7,4,0% +7/25/2018 13:00,92.01148568,63.12138992,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605903375,1.101676083,28.26766332,-28.26766332,0,#DIV/0!,0,0,0.811459543,1,0.035361365,0,0.957969677,0.99673164,0.724496596,1,0,0,0.100128555,0.312029739,0.755567466,0.480064062,0.961238037,0.922476074,0,0,0,0,0,0,-0.37233215,111.8595191,0.37233215,68.14048091,0,0.915711301,0,0,0,7,5,0% +7/25/2018 14:00,80.97280579,72.09167769,81.82831988,291.2614221,36.12846128,35.65591131,0,35.65591131,35.03905487,0.61685644,76.30366965,55.37403971,20.92962994,1.089406407,19.84022353,1.413242066,1.258237139,-6.290220568,6.290220568,0.39415524,0.441515374,0.408139989,13.12718502,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.68087232,0.789271234,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.295696033,12.61834955,33.97656835,13.40762079,0,55.37403971,-0.190118002,100.9596708,0.190118002,79.04032925,0,0.787005442,33.97656835,56.98729138,71.27361081,7,6,110% +7/25/2018 15:00,69.53327445,80.60201219,283.3135965,602.9622499,72.4797956,80.63987861,8.209878714,72.4299999,70.29426234,2.135737562,70.87819482,0,70.87819482,2.185533259,68.69266156,1.213584579,1.406770496,-2.63362433,2.63362433,0.980529975,0.255828864,2.104792796,67.69737148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.56951873,1.583411406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524915215,65.07328847,69.09443395,66.65669987,8.209878714,0,0.013615908,89.21984181,-0.013615908,90.78015819,0,0,69.09443395,66.65669987,112.7199109,7,7,63% +7/25/2018 16:00,57.76970223,89.3320963,491.8868509,746.7902548,93.60593518,264.8751026,170.3836809,94.49142172,90.78337086,3.708050856,122.0862262,0,122.0862262,2.822564315,119.2636619,1.008271512,1.559139208,-1.496680466,1.496680466,0.786101123,0.190299731,3.065838777,98.60791383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.26442919,2.044938238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221189758,94.7856775,89.48561894,96.83061574,170.3836809,0,0.228154666,76.81154649,-0.228154666,103.1884535,0.830850416,0,231.0489712,96.83061574,294.4226726,7,8,27% +7/25/2018 17:00,45.98505601,99.27744032,679.0051265,821.614429,108.1096547,470.1593982,360.1910211,109.9683772,104.8497497,5.118627457,167.8925591,0,167.8925591,3.25990497,164.6326542,0.802590634,1.732718206,-0.902782297,0.902782297,0.684538555,0.15921773,3.760991426,120.9664126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7855676,2.361790054,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724825485,116.2775169,103.510393,118.639307,360.1910211,0,0.438394225,63.9985288,-0.438394225,116.0014712,0.935947403,0,440.6302437,118.639307,518.2772974,7,9,18% +7/25/2018 18:00,34.60262896,112.3395292,828.6999281,863.1033812,118.2706341,664.6242509,543.6728227,120.9514283,114.7043382,6.247090102,204.4941879,0,204.4941879,3.566295992,200.9278919,0.603929805,1.960694664,-0.509966939,0.509966939,0.617363172,0.142718287,4.19787241,135.0180068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2581728,2.583769306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.041344271,129.7844438,113.2995171,132.3682131,543.6728227,0,0.629904638,50.95691277,-0.629904638,129.0430872,0.970622905,0,641.0008119,132.3682131,727.63316,7,10,14% +7/25/2018 19:00,24.58702388,132.8683422,929.655464,885.2452038,124.6751212,826.9083909,698.984549,127.9238418,120.9157063,7.008135576,229.1651453,0,229.1651453,3.759414906,225.4057304,0.42912452,2.318990043,-0.20866499,0.20866499,0.565837504,0.134108953,4.373515184,140.6672822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2287761,2.723683302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168596863,135.2147422,119.397373,137.9384255,698.984549,0,0.78959428,37.85238755,-0.78959428,142.1476125,0.98667634,0,809.0688893,137.9384255,899.34683,7,11,11% +7/25/2018 20:00,18.62938029,168.4742199,974.5336293,893.9366527,127.4350302,941.3440138,810.4051739,130.93884,123.5923938,7.346446142,240.1295975,0,240.1295975,3.842636345,236.2869612,0.325144024,2.940429842,0.049677736,-0.049677736,0.521658296,0.130765144,4.291857884,138.0409027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.80171,2.783976951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.109436427,132.6901663,121.9111464,135.4741433,810.4051739,0,0.90655772,24.9660942,-0.90655772,155.0339058,0.994846314,0,928.1397463,135.4741433,1016.804864,7,12,10% +7/25/2018 21:00,20.72199972,210.8929253,960.11187,891.2126915,126.553297,996.9544232,866.9794462,129.974977,122.7372481,7.237728829,236.6062875,0,236.6062875,3.816048836,232.7902387,0.361667123,3.680775915,0.293554611,-0.293554611,0.479952895,0.131810991,3.969900189,127.6856365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9797114,2.764714391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.876179173,122.7362906,120.8558906,125.501005,866.9794462,0,0.972808685,13.39188672,-0.972808685,166.6081133,0.998602433,0,986.6236746,125.501005,1068.761572,7,13,8% +7/25/2018 22:00,29.1592942,238.3596509,887.4045713,876.4477058,122.0304356,987.3091688,862.2687706,125.0403982,118.3507677,6.689630499,218.8411802,0,218.8411802,3.679667877,215.1615123,0.508925691,4.160160712,0.546474007,-0.546474007,0.436701131,0.137513869,3.439557391,110.6279891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7632596,2.665906851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491947621,106.3398311,116.2552072,109.0057379,862.2687706,0,0.983822269,10.32009442,-0.983822269,169.6799056,0.999177812,0,977.8150311,109.0057379,1049.157106,7,14,7% +7/25/2018 23:00,40.02976102,254.4732593,761.6239642,846.0004301,113.8325873,910.4046105,794.2630526,116.1415579,110.4001148,5.741443153,188.0970204,0,188.0970204,3.432472505,184.6645479,0.698651129,4.441396232,0.837426441,-0.837426441,0.386945334,0.149460354,2.747697959,88.37541152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1207896,2.486814645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990697818,84.94980707,108.1114874,87.43662172,794.2630526,0,0.938844738,20.14155834,-0.938844738,159.8584417,0.996743058,0,899.7876711,87.43662172,957.0131913,7,15,6% +7/25/2018 0:00,51.68569219,265.6839993,592.0168428,790.8832978,101.6889816,768.1793913,665.0938346,103.0855567,98.62268363,4.46287303,146.6076356,0,146.6076356,3.066297988,143.5413377,0.902085505,4.637060557,1.218449126,-1.218449126,0.321786617,0.171767042,1.955993899,62.91148746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.7998748,2.221522454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.417110921,60.4729147,96.21698573,62.69443716,665.0938346,0,0.840950664,32.75935601,-0.840950664,147.240644,0.99054348,0,755.0213472,62.69443716,796.0536024,7,16,5% +7/25/2018 1:00,63.5100739,274.8749997,391.9227882,689.3467285,84.44625877,565.2287844,480.3744124,84.85437202,81.8998925,2.954479527,97.57258381,0,97.57258381,2.546366276,95.02621753,1.108459898,4.797473776,1.820418618,-1.820418618,0.218843771,0.21546657,1.143846911,36.7900486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72529188,1.844833698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.828713193,35.36399409,79.55400508,37.20882779,480.3744124,0,0.696854562,45.82481335,-0.696854562,134.1751867,0.978249017,0,549.4798016,37.20882779,573.8322352,7,17,4% +7/25/2018 2:00,75.16974036,283.3946121,181.1375924,482.1963321,57.71638846,306.4251153,249.0835972,57.34151808,55.9760264,1.365491685,45.65926849,0,45.65926849,1.740362063,43.91890643,1.311959467,4.946169063,3.153224356,-3.153224356,0,0.318632856,0.435090516,13.9940066,0.008997739,1,0.307102544,0,0.923253417,0.962015381,0.724496596,1,53.83027557,1.26088639,0.001532225,0.312029739,0.995664306,0.720160902,0.961238037,0.922476074,0.314413728,13.45157143,54.1446893,14.71245782,246.842408,0,0.516560539,58.89817926,-0.516560539,121.1018207,0.953205924,0,289.4363349,14.71245782,299.0653443,7,18,3% +7/25/2018 3:00,86.30483488,292.0431828,13.34425221,63.34636296,9.26169951,28.97576039,19.89274068,9.083019707,8.982425098,0.10059461,3.514742854,0,3.514742854,0.279274412,3.235468442,1.506303529,5.097115099,11.49911952,-11.49911952,0,0.694059088,0.069818603,2.245606274,0.589543466,1,0.086744947,0,0.952689117,0.99145108,0.724496596,1,8.700369922,0.202333361,0.078785899,0.312029739,0.800989811,0.525486407,0.961238037,0.922476074,0.04802875,2.158562167,8.748398673,2.360895528,8.165105392,0,0.3140313,71.69765586,-0.3140313,108.3023441,0.890780202,0,16.02171291,2.360895528,17.56687181,7,19,10% +7/25/2018 4:00,97.09115563,301.4409242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69456034,5.261136627,-5.01062768,5.01062768,0.612978512,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095554286,84.51677679,-0.095554286,95.48322321,0.526737235,0,0,0,0,7,20,0% +7/25/2018 5:00,106.5844725,312.1620391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860249976,5.448255383,-1.567980439,1.567980439,0.798294137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115145262,96.61200363,0.115145262,83.38799637,0,0.615765895,0,0,0,7,21,0% +7/25/2018 6:00,114.4599436,324.7192669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997702878,5.667420352,-0.579377861,0.579377861,0.629233139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307037208,107.8807693,0.307037208,72.1192307,0,0.887153287,0,0,0,7,22,0% +7/25/2018 7:00,120.0377635,339.3546741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0950542,5.922856394,-0.019478125,0.019478125,0.533484645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467047823,117.8428343,0.467047823,62.15716566,0,0.942944582,0,0,0,7,23,0% +7/26/2018 8:00,122.6207713,355.6498435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140136191,6.207260753,0.421471497,-0.421471497,0.458077819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584274659,125.7517645,0.584274659,54.24823546,0,0.964423809,0,0,0,7,0,0% +7/26/2018 9:00,121.799642,12.35403085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125804781,0.215618514,0.863119355,-0.863119355,0.382551587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650729482,130.5966243,0.650729482,49.40337573,0,0.973163155,0,0,0,7,1,0% +7/26/2018 10:00,117.7115462,27.96871927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054454049,0.488146239,1.41409381,-1.41409381,0.288329406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661882775,131.4436225,0.661882775,48.55637754,0,0.974457922,0,0,0,7,2,0% +7/26/2018 11:00,110.9471527,41.61973387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93639311,0.72640139,2.298323478,-2.298323478,0.137117227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616972746,128.0954038,0.616972746,51.90459622,0,0.968959143,0,0,0,7,3,0% +7/26/2018 12:00,102.2241392,53.25444264,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784147804,0.929465365,4.420029861,-4.420029861,0,#DIV/0!,0,0,0.184150281,1,0.222497057,0,0.935812341,0.974574304,0.724496596,1,0,0,0.028975694,0.312029739,0.921117171,0.645613767,0.961238037,0.922476074,0,0,0,0,0,0,-0.519057778,121.2690703,0.519057778,58.73092972,0,0.95367161,0,0,0,7,4,0% +7/26/2018 13:00,92.15743609,63.28555251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60845069,1.10454126,26.36272913,-26.36272913,0,#DIV/0!,0,0,0.7991217,1,0.037914162,0,0.957722115,0.996484078,0.724496596,1,0,0,0.099028987,0.312029739,0.757818359,0.482314955,0.961238037,0.922476074,0,0,0,0,0,0,-0.374808686,112.012489,0.374808686,67.98751103,0,0.916598609,0,0,0,7,5,0% +7/26/2018 14:00,81.10418115,72.26901371,79.75522874,285.9610316,35.5347039,35.06443007,0,35.06443007,34.46320147,0.601228603,75.40757772,54.9984967,20.40908101,1.071502432,19.33757858,1.415534998,1.261332236,-6.383907499,6.383907499,0.378133832,0.445547012,0.393927653,12.67006744,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.12734012,0.776299864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.285399244,12.17895076,33.41273936,12.95525062,0,54.9984967,-0.192328641,101.0887123,0.192328641,78.91128766,0,0.79002832,33.41273936,56.40562058,70.32908992,7,6,110% +7/26/2018 15:00,69.65683659,80.79599648,281.0651684,600.8047311,72.20014657,79.15043327,7.008599542,72.14183373,70.02304576,2.118787962,70.32460494,0,70.32460494,2.177100809,68.14750413,1.215741145,1.410156161,-2.649367291,2.649367291,0.98322218,0.256880449,2.09237107,67.29784608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.30881504,1.577302125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515915717,64.68924945,68.82473076,66.26655158,7.008599542,0,0.011665353,89.33160932,-0.011665353,90.66839068,0,0,68.82473076,66.26655158,112.1948634,7,7,63% +7/26/2018 16:00,57.88986456,89.55000838,489.8433444,745.768666,93.43118506,263.2177914,168.9112553,94.30653614,90.6138901,3.692646041,121.585485,0,121.585485,2.817294954,118.7681901,1.01036874,1.562942491,-1.501644112,1.501644112,0.786949957,0.190736867,3.055983845,98.29094535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.10151783,2.041120604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.214049893,94.48099534,89.31556773,96.52211595,168.9112553,0,0.226492829,76.90932256,-0.226492829,103.0906774,0.829242459,0,229.3839525,96.52211595,292.5557469,7,8,28% +7/26/2018 17:00,46.1090292,99.53055509,677.1918558,821.0315118,107.9803406,468.6340522,358.804759,109.8292932,104.7243349,5.104958256,167.4490114,0,167.4490114,3.256005674,164.1930057,0.804754374,1.737135893,-0.904445603,0.904445603,0.684822997,0.1594531,3.75254734,120.6948217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6650141,2.358965027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718707774,116.0164535,103.3837219,118.3754185,358.804759,0,0.437017038,64.08628928,-0.437017038,115.9137107,0.935587985,0,439.0771432,118.3754185,516.5514872,7,9,18% +7/26/2018 18:00,34.74215539,112.6399534,827.0796628,862.7148605,118.1653192,663.3008297,542.4637551,120.8370747,114.6021988,6.234875858,204.0981602,0,204.0981602,3.563120357,200.5350398,0.606365001,1.965938056,-0.510171984,0.510171984,0.617398237,0.142870541,4.190215397,134.7717309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1599926,2.581468569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.035796791,129.5477141,113.1957894,132.1291826,542.4637551,0,0.628786845,51.03932525,-0.628786845,128.9606747,0.970481797,0,639.6469892,132.1291826,726.1228966,7,10,14% +7/26/2018 19:00,24.76141477,133.1929678,928.1662132,884.9456401,124.5826981,825.7727638,697.9497847,127.8229791,120.8260701,6.996908974,228.8012723,0,228.8012723,3.756628009,225.0446443,0.432168215,2.324655828,-0.208016849,0.208016849,0.565726666,0.134224556,4.366188828,140.4316414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1426144,2.721664204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.163288943,134.9882353,119.3059034,137.7098995,697.9497847,0,0.788692269,37.93653061,-0.788692269,142.0634694,0.986603918,0,807.9058953,137.7098995,898.0342703,7,11,11% +7/26/2018 20:00,18.84728676,168.5904015,973.1005588,893.6688029,127.347624,940.3398456,809.4965792,130.8432664,123.5076233,7.335643051,239.7794974,0,239.7794974,3.840000728,235.9394966,0.328947209,2.942457593,0.050987195,-0.050987195,0.521434366,0.130867897,4.284479478,137.8035878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7202254,2.782067455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104090797,132.4620502,121.8243162,135.2441177,809.4965792,0,0.905812731,25.06703229,-0.905812731,154.9329677,0.994800952,0,927.1122842,135.2441177,1015.626854,7,12,10% +7/26/2018 21:00,20.92225654,210.6279469,958.6549136,890.9339503,126.4639548,995.9996014,866.1222558,129.8773456,122.6505999,7.226745677,236.2503376,0,236.2503376,3.813354838,232.4369827,0.365162264,3.67615117,0.295540575,-0.295540575,0.479613275,0.131918121,3.962147969,127.4362985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8964219,2.762762599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870562716,122.4966174,120.7669846,125.25938,866.1222558,0,0.972150916,13.55364687,-0.972150916,166.4463531,0.998567656,0,985.6486557,125.25938,1067.628415,7,13,8% +7/26/2018 22:00,29.31547272,238.0380071,885.8453758,876.1107693,121.9319072,986.3039179,861.3708309,124.933087,118.2552104,6.677876626,218.4601642,0,218.4601642,3.676696884,214.7834673,0.511651521,4.154546968,0.549335543,-0.549335543,0.436211779,0.137644684,3.431188042,110.358802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6714062,2.663754376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485884056,106.0810782,116.1572903,108.7448326,861.3708309,0,0.983175714,10.52486983,-0.983175714,169.4751302,0.999144391,0,976.7911243,108.7448326,1047.962442,7,14,7% +7/26/2018 23:00,40.16166115,254.1965151,759.8929995,845.5296212,113.7157923,909.2340214,793.2187854,116.015236,110.2868416,5.728394411,187.6738062,0,187.6738062,3.428950704,184.2448555,0.70095322,4.436566135,0.841656566,-0.841656566,0.38622194,0.149647111,2.73858528,88.08231643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0119071,2.484263112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984095713,84.66807292,107.9960028,87.15233604,793.2187854,0,0.938132462,20.25974364,-0.938132462,159.7402564,0.996702622,0,898.5992464,87.15233604,955.6387073,7,15,6% +7/26/2018 0:00,51.80870552,265.448755,590.0623503,790.1212617,101.5390772,766.7064917,663.7810531,102.9254386,98.47729939,4.44813924,146.1292261,0,146.1292261,3.061777817,143.0674483,0.904232492,4.632954769,1.225242143,-1.225242143,0.320624943,0.172081946,1.94620826,62.59674767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.66012594,2.218247606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410021259,60.17037485,96.0701472,62.38862245,663.7810531,0,0.840100229,32.84929491,-0.840100229,147.1507051,0.990483292,0,753.5341898,62.38862245,794.3662955,7,16,5% +7/26/2018 1:00,63.63335494,274.668672,389.7299044,687.8890293,84.22898838,563.2627159,478.6355936,84.62712225,81.68917361,2.937948642,97.03434222,0,97.03434222,2.539814772,94.49452745,1.110611558,4.793872679,1.833316881,-1.833316881,0.216638038,0.216121441,1.133870001,36.46915689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.52274087,1.840087156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.821484956,35.05554077,79.34422583,36.89562793,478.6355936,0,0.695803499,45.90871967,-0.695803499,134.0912803,0.978140632,0,547.5171477,36.89562793,571.6645982,7,17,4% +7/26/2018 2:00,75.2991903,283.2079436,178.8212422,478.785657,57.31903331,303.6395856,246.7009025,56.93868303,55.59065297,1.348030058,45.08566083,0,45.08566083,1.728380339,43.35728049,1.314218795,4.942911084,3.189082837,-3.189082837,0,0.320538168,0.432095085,13.89766324,0.014983669,1,0.303859174,0,0.923762406,0.962524369,0.724496596,1,53.47507131,1.252205672,0.00254444,0.312029739,0.99281011,0.717306705,0.961238037,0.922476074,0.311728413,13.35896253,53.78679973,14.6111682,243.0044178,0,0.51526377,58.98491265,-0.51526377,121.0150874,0.952962322,0,285.3608538,14.6111682,294.9235712,7,18,3% +7/26/2018 3:00,86.44068018,291.8707893,12.24191704,58.44002221,8.613849322,26.71080615,18.26441143,8.446394725,8.354109984,0.092284742,3.227933856,0,3.227933856,0.259739339,2.968194517,1.508674477,5.094106264,11.97153301,-11.97153301,0,0.703635656,0.064934835,2.088527496,0.602717259,1,0.08333802,0,0.953058494,0.991820457,0.724496596,1,8.090604249,0.188180267,0.080152081,0.312029739,0.797972992,0.522469588,0.961238037,0.922476074,0.044708948,2.00757207,8.135313198,2.195752337,7.256135427,0,0.312532589,71.78807748,-0.312532589,108.2119225,0.890016684,0,14.59339479,2.195752337,16.03047078,7,19,10% +7/26/2018 4:00,97.24804212,301.2813043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697298526,5.258350735,-4.918152779,4.918152779,0.628792651,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.093666803,84.62540892,-0.093666803,95.37459108,0.516192947,0,0,0,0,7,20,0% +7/26/2018 5:00,106.7602568,312.0185541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863317992,5.445751096,-1.557922465,1.557922465,0.796574122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117322899,96.73762449,0.117322899,83.26237551,0,0.623825735,0,0,0,7,21,0% +7/26/2018 6:00,114.6561346,324.6018705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001127057,5.665371399,-0.578458118,0.578458118,0.629075854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309477892,108.0277687,0.309477892,71.97223134,0,0.888437571,0,0,0,7,22,0% +7/26/2018 7:00,120.2518365,339.2800547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098790479,5.921554041,-0.02154412,0.02154412,0.533837951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469706434,118.0152422,0.469706434,61.9847578,0,0.943550532,0,0,0,7,23,0% +7/27/2018 8:00,122.8442297,355.6349652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144036275,6.207001079,0.417485728,-0.417485728,0.458759425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58709115,125.9508579,0.58709115,54.04914207,0,0.964834349,0,0,0,7,0,0% +7/27/2018 9:00,122.0197077,12.40346281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129645652,0.216481265,0.856927757,-0.856927757,0.383610412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653632995,130.8160775,0.653632995,49.18392253,0,0.973504474,0,0,0,7,1,0% +7/27/2018 10:00,117.9169973,28.07034584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058039846,0.489919957,1.404099483,-1.404099483,0.290038536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664796512,131.6667163,0.664796512,48.33328374,0,0.974789016,0,0,0,7,2,0% +7/27/2018 11:00,111.1325561,41.75532393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93962901,0.728767883,2.279138963,-2.279138963,0.140397972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619819248,128.3029362,0.619819248,51.69706378,0,0.969331321,0,0,0,7,3,0% +7/27/2018 12:00,102.3893334,53.41034229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787030986,0.932186328,4.362808098,-4.362808098,0,#DIV/0!,0,0,0.177584531,1,0.225318115,0,0.935418107,0.97418007,0.724496596,1,0,0,0.028022655,0.312029739,0.923606973,0.648103569,0.961238037,0.922476074,0,0,0,0,0,0,-0.521764257,121.4506689,0.521764257,58.54933105,0,0.954171282,0,0,0,7,4,0% +7/27/2018 13:00,92.30513616,63.45531228,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611028542,1.107504127,24.68040003,-24.68040003,0,#DIV/0!,0,0,0.786800535,1,0.040495831,0,0.95747017,0.996232133,0.724496596,1,0,0,0.097921374,0.312029739,0.760095541,0.484592137,0.961238037,0.922476074,0,0,0,0,0,0,-0.377312044,112.1672835,0.377312044,67.83271646,0,0.917483689,0,0,0,7,5,0% +7/27/2018 14:00,81.23691987,72.45196739,77.67297233,280.562597,34.92953658,34.46181385,0,34.46181385,33.87628218,0.585531675,74.47136247,54.58539666,19.88596581,1.053254404,18.83271141,1.417851726,1.26452538,-6.481314444,6.481314444,0.361476263,0.449700012,0.379787786,12.21528071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.56317097,0.76307923,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.275154958,11.74179245,32.83832593,12.50487168,0,54.58539666,-0.194556927,101.2188417,0.194556927,78.78115834,0,0.793005809,32.83832593,55.79140832,69.35268685,7,6,111% +7/27/2018 15:00,69.78165394,80.99578055,278.7936148,598.6065119,71.91599087,77.65741076,5.808288323,71.84912244,69.74745841,2.101664031,69.76527212,0,69.76527212,2.168532467,67.59673966,1.217919619,1.413643051,-2.665388798,2.665388798,0.985962019,0.257954225,2.079771366,66.89259628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.04390999,1.57109439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.506787275,64.29970793,68.55069727,65.87080232,5.808288323,0,0.009703016,89.44404943,-0.009703016,90.55595057,0,0,68.55069727,65.87080232,111.66182,7,7,63% +7/27/2018 16:00,58.0113369,89.77412565,487.7751976,744.7291082,93.25386988,261.551524,167.4325469,94.11897711,90.44192163,3.677055477,121.0786922,0,121.0786922,2.811948247,118.2667439,1.012488832,1.566854076,-1.506631911,1.506631911,0.787802921,0.191182066,3.045966846,97.9687642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9362152,2.037246933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.206792611,94.17130257,89.14300781,96.2085495,167.4325469,0,0.224823422,77.00750501,-0.224823422,102.992495,0.827603243,0,227.7107267,96.2085495,290.6772982,7,8,28% +7/27/2018 17:00,46.23462087,99.79054396,675.351196,820.4375014,107.8488946,467.0983853,357.4104502,109.6879351,104.5968525,5.091082585,166.9987585,0,166.9987585,3.252042091,163.7467164,0.806946363,1.741673554,-0.906078284,0.906078284,0.685102202,0.159693053,3.743927113,120.4175656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5424731,2.356093425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712462448,115.7499444,103.2549356,118.1060378,357.4104502,0,0.435633975,64.17435843,-0.435633975,115.8256416,0.935224746,0,437.5140332,118.1060378,514.8120729,7,9,18% +7/27/2018 18:00,34.88398188,112.9480711,825.4269132,862.3173683,118.0578023,661.964359,541.2440183,120.7203407,114.497924,6.222416733,203.6941899,0,203.6941899,3.559878326,200.1343116,0.60884034,1.971315724,-0.510326238,0.510326238,0.617424616,0.143026355,4.182353717,134.5188723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0597597,2.579119729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.030101031,129.3046567,113.0898607,131.8837765,541.2440183,0,0.627662202,51.12214612,-0.627662202,128.8778539,0.970339317,0,638.2802115,131.8837765,724.5955055,7,10,14% +7/27/2018 19:00,24.93928322,133.5254406,926.6371502,884.6372939,124.4877458,824.6187753,696.899412,127.7193632,120.733981,6.985382252,228.4276702,0,228.4276702,3.753764848,224.6739053,0.435272605,2.330458573,-0.207305282,0.207305282,0.565604981,0.134343573,4.358621182,140.1882399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0540949,2.719589854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.157806209,134.7542685,119.2119011,137.4738583,696.899412,0,0.787779824,38.02148599,-0.787779824,141.978514,0.986530489,0,806.724419,137.4738583,896.6983098,7,11,11% +7/27/2018 20:00,19.07011221,168.7138498,971.6185683,893.3911595,127.2571859,939.3092711,808.5648877,130.7443834,123.4199122,7.324471181,239.4174446,0,239.4174446,3.837273683,235.5801709,0.332836247,2.944612173,0.052373007,-0.052373007,0.521197378,0.130974428,4.27681935,137.5572118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6359141,2.780091721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.09854106,132.2252242,121.7344552,135.0053159,808.5648877,0,0.905051364,25.16979816,-0.905051364,154.8302018,0.994754517,0,926.0580293,135.0053159,1014.416308,7,12,10% +7/27/2018 21:00,21.12872638,210.3675284,957.1387819,890.643186,126.3709313,995.0078325,865.2321345,129.7756979,122.5603815,7.215316435,235.8799289,0,235.8799289,3.810549839,232.0693791,0.368765842,3.671606011,0.297620583,-0.297620583,0.479257572,0.132029893,3.954073783,127.1766049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8097005,2.760730387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864712995,122.24699,120.6744135,125.0077204,865.2321345,0,0.971468876,13.71939919,-0.971468876,166.2806008,0.998531547,0,984.6359955,125.0077204,1066.451048,7,13,8% +7/27/2018 22:00,29.47784506,237.7152841,884.2163538,875.7577732,121.8288927,985.2490507,860.4281522,124.8208984,118.1553021,6.665596369,218.0620827,0,218.0620827,3.673590615,214.3884921,0.514485453,4.148914389,0.552319267,-0.552319267,0.435701532,0.137781768,3.42246094,110.0781085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5753706,2.661503895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479561301,105.8112649,116.0549319,108.4727688,860.4281522,0,0.982495592,10.73610837,-0.982495592,169.2638916,0.999109186,0,975.7166031,108.4727688,1046.709861,7,14,7% +7/27/2018 23:00,40.2992823,253.9168937,758.0820136,845.0353518,113.593467,907.9992865,792.1163392,115.8829473,110.1682049,5.714742434,187.2310231,0,187.2310231,3.425262147,183.805761,0.703355162,4.431685821,0.84605927,-0.84605927,0.385469033,0.149843243,2.729088656,87.77687236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.897869,2.481590765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.977215441,84.37446846,107.8750844,86.85605923,792.1163392,0,0.937376569,20.38444794,-0.937376569,159.6155521,0.996659644,0,897.345473,86.85605923,954.1910266,7,15,6% +7/27/2018 0:00,51.93709609,265.210378,588.0191289,789.3209086,101.3820725,765.1527736,662.3950081,102.7577655,98.32502895,4.432736574,145.6290892,0,145.6290892,3.057043546,142.5720456,0.906473331,4.628794307,1.232312886,-1.232312886,0.319415775,0.172412882,1.93602989,62.26937632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.5137578,2.214817642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402647065,59.85569305,95.91640487,62.07051069,662.3950081,0,0.839196075,32.94467581,-0.839196075,147.0553242,0.990419168,0,751.9651179,62.07051069,792.5890257,7,16,5% +7/27/2018 1:00,63.76183253,274.4593371,387.4428539,686.3582198,84.00150898,561.1949687,476.8057072,84.38926144,81.46855355,2.920707889,96.47296101,0,96.47296101,2.532955428,93.94000559,1.112853915,4.790219094,1.846776621,-1.846776621,0.214336287,0.216810061,1.123526477,36.13647359,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31067248,1.835117585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813991108,34.73575294,79.12466359,36.57087052,476.8057072,0,0.694689294,45.99753686,-0.694689294,134.0024631,0.978025377,0,545.4527452,36.57087052,569.3876485,7,17,4% +7/27/2018 2:00,75.43376818,283.0184758,176.4158846,475.2039796,56.90256851,300.7220696,244.205426,56.51664358,55.18674613,1.329897456,44.48989607,0,44.48989607,1.715822389,42.77407368,1.316567622,4.939604247,3.226826723,-3.226826723,0,0.322547874,0.428955597,13.79668653,0.021206711,1,0.300516244,0,0.924284764,0.963046727,0.724496596,1,53.10205098,1.24310748,0.003590768,0.312029739,0.989868121,0.714364716,0.961238037,0.922476074,0.308936926,13.26189988,53.4109879,14.50500736,239.0266321,0,0.513896004,59.07630915,-0.513896004,120.9236908,0.95270405,0,281.1326283,14.50500736,290.6258655,7,18,3% +7/27/2018 3:00,86.58125103,291.6958374,11.14980367,53.52467585,7.957965306,24.44630549,16.64425027,7.80205522,7.71800329,0.08405193,2.943361005,0,2.943361005,0.239962016,2.703398989,1.511127901,5.091052777,12.49907537,-12.49907537,0,0.713731429,0.059990504,1.929500822,0.616463545,1,0.079835866,0,0.953435363,0.992197326,0.724496596,1,7.473357937,0.173851664,0.081563337,0.312029739,0.794872305,0.519368901,0.961238037,0.922476074,0.041345858,1.854709583,7.514703795,2.028561246,6.383676738,0,0.310964056,71.88266145,-0.310964056,108.1173386,0.889209712,0,13.19113115,2.028561246,14.51878391,7,19,10% +7/27/2018 4:00,97.41026867,301.1194396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700129914,5.255525663,-4.826242001,4.826242001,0.64451032,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091697371,84.73873685,-0.091697371,95.26126315,0.504728099,0,0,0,0,7,20,0% +7/27/2018 5:00,106.9415578,311.8733177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.86648229,5.443216243,-1.547598059,1.547598059,0.794808545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.119583985,96.86809379,0.119583985,83.13190621,0,0.631883812,0,0,0,7,21,0% +7/27/2018 6:00,114.8580046,324.4835752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004650352,5.663306756,-0.577418719,0.577418719,0.628898106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.312000855,108.1798528,0.312000855,71.82014724,0,0.889744029,0,0,0,7,22,0% +7/27/2018 7:00,120.4716113,339.2059317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102626272,5.92026035,-0.02355402,0.02355402,0.534181664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472443561,118.1930307,0.472443561,61.80696935,0,0.944167253,0,0,0,7,23,0% +7/28/2018 8:00,123.0731,355.6224451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148030816,6.206782561,0.413525187,-0.413525187,0.459436718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589980061,126.1555933,0.589980061,53.8444067,0,0.965251373,0,0,0,7,0,0% +7/28/2018 9:00,122.2445091,12.45702299,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133569177,0.217416066,0.850746107,-0.850746107,0.384667537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656600921,131.041152,0.656600921,48.95884796,0,0.973850244,0,0,0,7,1,0% +7/28/2018 10:00,118.1262751,28.17719411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061692434,0.491784811,1.394116406,-1.394116406,0.291745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667765294,131.8948225,0.667765294,48.10517749,0,0.975123392,0,0,0,7,2,0% +7/28/2018 11:00,111.3208939,41.89652522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942916125,0.73123231,2.260029611,-2.260029611,0.143665864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622710708,128.5143561,0.622710708,51.48564393,0,0.969705893,0,0,0,7,3,0% +7/28/2018 12:00,102.5567365,53.57186679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789952722,0.935005462,4.306374839,-4.306374839,0,#DIV/0!,0,0,0.171004922,1,0.228170016,0,0.935017811,0.973779774,0.724496596,1,0,0,0.027062093,0.312029739,0.926123659,0.650620255,0.961238037,0.922476074,0,0,0,0,0,0,-0.524505583,121.6349653,0.524505583,58.36503466,0,0.95467213,0,0,0,7,4,0% +7/28/2018 13:00,92.45452501,63.63062534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363587,1.110563917,23.18463847,-23.18463847,0,#DIV/0!,0,0,0.774503213,1,0.04310529,0,0.957213899,0.995975862,0.724496596,1,0,0,0.096806285,0.312029739,0.762398044,0.486894639,0.961238037,0.922476074,0,0,0,0,0,0,-0.379840809,112.3238223,0.379840809,67.67617765,0,0.918365908,0,0,0,7,5,0% +7/28/2018 14:00,81.37097321,72.64047926,75.58311456,275.0674686,34.31302549,33.84813862,0,33.84813862,33.27836117,0.569777444,73.49440402,54.1337385,19.36066552,1.03466432,18.3260012,1.420191398,1.267815533,-6.582614838,6.582614838,0.344152875,0.453977396,0.36573595,11.76332538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.98842656,0.749610778,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264974451,11.30735579,32.25340102,12.05696657,0,54.1337385,-0.196801675,101.3499917,0.196801675,78.65000832,0,0.795937121,32.25340102,55.14401857,68.34405829,7,6,112% +7/28/2018 15:00,69.90769433,81.20128877,276.499552,596.3673787,71.62733188,76.16163794,4.609763974,71.55187396,69.46750354,2.084370417,69.20034592,0,69.20034592,2.159828333,67.04051759,1.220119439,1.417229846,-2.681689836,2.681689836,0.988749661,0.259050445,2.066995243,66.48167227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77480673,1.564788275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497531017,63.90471214,68.27233775,65.46950041,4.609763974,0,0.007729739,89.55711419,-0.007729739,90.44288581,0,0,68.27233775,65.46950041,111.1208164,7,7,63% +7/28/2018 16:00,58.13410221,90.00435039,485.6826387,743.6714453,93.07398863,259.8767604,165.948015,93.92874535,90.26746447,3.661280884,120.565903,0,120.565903,2.806524164,117.7593788,1.014631491,1.570872256,-1.511642354,1.511642354,0.788659757,0.191635404,3.035787767,97.64137003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76852034,2.033317203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.199417903,93.85659884,88.96793824,95.88991604,165.948015,0,0.22314695,77.10606394,-0.22314695,102.8939361,0.825932407,0,226.0297818,95.88991604,288.787814,7,8,28% +7/28/2018 17:00,46.36182885,100.057271,673.4830453,819.832248,107.7153001,465.5525067,356.0082206,109.5442861,104.4672864,5.076999676,166.5417754,0,166.5417754,3.248013726,163.2937616,0.809166561,1.746328819,-0.907679356,0.907679356,0.685376001,0.159937657,3.735129503,120.1346042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4179293,2.353174888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.70608861,115.4779511,103.1240179,117.831126,356.0082206,0,0.434245203,64.26272533,-0.434245203,115.7372747,0.93485768,0,435.9410371,117.831126,513.0591525,7,9,18% +7/28/2018 18:00,35.02811728,113.2636684,823.7413038,861.9107381,117.9480532,660.6146042,540.0134101,120.6011941,114.3914842,6.209709898,203.282185,0,203.282185,3.556568986,199.7256161,0.611355977,1.976823936,-0.510429129,0.510429129,0.617442212,0.143185795,4.174285304,134.2593644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9574457,2.576722124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024255493,129.0552079,112.9817012,131.63193,540.0134101,0,0.626530552,51.20538575,-0.626530552,128.7946142,0.970195432,0,636.9002449,131.63193,723.0507104,7,10,14% +7/28/2018 19:00,25.12062842,133.8654028,925.067699,884.3199841,124.3902237,823.445885,695.8329344,127.6129506,120.6393995,6.973551066,228.0441979,0,228.0441979,3.750824197,224.2933737,0.438437676,2.336392034,-0.206529962,0.206529962,0.565472393,0.134466076,4.350809775,139.9369982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9631796,2.717459362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152146871,134.5127654,119.1153265,137.2302248,695.8329344,0,0.786856508,38.10728996,-0.786856508,141.89271,0.986456013,0,805.5239084,137.2302248,895.3383459,7,11,11% +7/28/2018 20:00,19.29779818,168.8442292,970.0869683,893.1035251,127.1636684,938.2515092,807.6093692,130.64214,123.3292146,7.312925333,239.0432705,0,239.0432705,3.834453787,235.2088167,0.336810117,2.946887723,0.053835378,-0.053835378,0.520947298,0.131084813,4.268875053,137.3016959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5487322,2.778048716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092785444,131.9796126,121.6415176,134.7576613,807.6093692,0,0.904272961,25.27445954,-0.904272961,154.7255405,0.994706961,0,924.9761791,134.7576613,1013.172373,7,12,10% +7/28/2018 21:00,21.34133525,210.11186,955.5627671,890.3401755,126.2741767,993.9781788,864.3081987,129.6699801,122.4665444,7.20343577,235.4948883,0,235.4948883,3.80763233,231.687256,0.372476567,3.667143755,0.299794837,-0.299794837,0.478885753,0.132146397,3.945675626,126.9064913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7195007,2.758616661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85862856,121.9873466,120.5781293,124.7459632,864.3081987,0,0.970761763,13.88919595,-0.970761763,166.1108041,0.998494057,0,983.5847291,124.7459632,1065.228467,7,13,8% +7/28/2018 22:00,29.64638268,237.39179,882.5168765,875.3884486,121.7213421,984.1435675,859.439788,124.7037795,118.0509945,6.652784991,217.6467817,0,217.6467817,3.670347569,213.9764341,0.517426989,4.143268352,0.555425556,-0.555425556,0.435170326,0.137925229,3.413374916,109.7858707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4751062,2.659154319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.472978507,105.5303548,115.9480847,108.1895091,859.439788,0,0.981781047,10.95370175,-0.981781047,169.0462983,0.999072148,0,974.5904397,108.1895091,1045.39831,7,14,7% +7/28/2018 23:00,40.4426122,253.6346122,756.1905515,844.5172572,113.4655623,906.6994346,790.9547938,115.7446407,110.0441569,5.700483793,186.7685594,0,186.7685594,3.421405346,183.3471541,0.705856741,4.42675908,0.85063553,-0.85063553,0.384686447,0.150048902,2.719208125,87.45908051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7786294,2.478796526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.97005703,84.06899485,107.7486864,86.54779138,790.9547938,0,0.936576236,20.51569275,-0.936576236,159.4843073,0.996614063,0,896.0253571,86.54779138,952.6691556,7,15,6% +7/28/2018 0:00,52.07085027,264.969019,585.886988,788.4816383,101.217911,763.5173561,660.9348749,102.5824812,98.16581757,4.416663595,145.1071769,0,145.1071769,3.052093472,142.0550834,0.908807781,4.624581798,1.239664297,-1.239664297,0.318158609,0.172760128,1.925460461,61.92942717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36071776,2.211231331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39498955,59.52892099,95.75570731,61.74015232,660.9348749,0,0.838237497,33.04553101,-0.838237497,146.954469,0.990351034,0,750.3132441,61.74015232,790.720939,7,16,5% +7/28/2018 1:00,63.89548558,274.2471052,385.0618236,684.752977,83.76371726,559.0247182,474.8840274,84.14069081,81.23793213,2.902758677,95.88848236,0,95.88848236,2.525785131,93.36269723,1.115186601,4.78651495,1.860809123,-1.860809123,0.211936588,0.217533165,1.112820482,35.792132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.0889904,1.829922729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.806234651,34.40475869,78.89522505,36.23468142,474.8840274,0,0.693511446,46.09128291,-0.693511446,133.9087171,0.977903137,0,543.285805,36.23468142,567.0006793,7,17,4% +7/28/2018 2:00,75.57344259,282.8262932,173.9225239,471.4475205,56.46664851,297.6716652,241.596593,56.07507216,54.76397071,1.31110145,43.87220732,0,43.87220732,1.702677792,42.16952953,1.3190054,4.936250028,3.266535753,-3.266535753,0,0.324665531,0.425669448,13.69099268,0.027669439,1,0.29707543,0,0.924820022,0.963581985,0.724496596,1,52.71084006,1.233584264,0.004670994,0.312029739,0.986839778,0.711336374,0.961238037,0.922476074,0.306039051,13.16030292,53.01687911,14.39388719,234.9117508,0,0.512457023,59.17237013,-0.512457023,120.8276299,0.952430843,0,276.7540758,14.39388719,286.1745871,7,18,3% +7/28/2018 3:00,86.72645763,291.5183925,10.07470184,48.63224894,7.297653858,22.19679844,15.04324841,7.153550027,7.077602669,0.075947358,2.662779292,0,2.662779292,0.220051189,2.442728103,1.513662234,5.087955779,13.09074941,-13.09074941,0,0.724354325,0.055012797,1.769400667,0.630791448,1,0.07624175,0,0.953819139,0.992581103,0.724496596,1,6.852042216,0.159426338,0.083018996,0.312029739,0.791690745,0.516187341,0.961238037,0.922476074,0.037957319,1.700815224,6.889999535,1.860241561,5.55409597,0,0.309326604,71.98134678,-0.309326604,108.0186532,0.888358553,0,11.82402819,1.860241561,13.04151909,7,19,10% +7/28/2018 4:00,97.57778599,300.9553796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703053642,5.252662275,-4.735074529,4.735074529,0.660100876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089646408,84.85673447,-0.089646408,95.14326553,0.492253168,0,0,0,0,7,20,0% +7/28/2018 5:00,107.1283179,311.7263651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869741869,5.440651437,-1.537027227,1.537027227,0.793000826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.121927763,97.00337236,0.121927763,82.99662764,0,0.639921125,0,0,0,7,21,0% +7/28/2018 6:00,115.06549,324.3644059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008271656,5.661226859,-0.576262866,0.576262866,0.628700444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.314605018,108.3369707,0.314605018,71.66302926,0,0.891070558,0,0,0,7,22,0% +7/28/2018 7:00,120.6970197,339.1323286,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106560392,5.918975734,-0.025506983,0.025506983,0.534515641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475257848,118.3761398,0.475257848,61.62386022,0,0.944793952,0,0,0,7,23,0% +7/29/2018 8:00,123.3073091,355.6123147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152118535,6.206605752,0.409592565,-0.409592565,0.460109236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592939821,126.3659055,0.592939821,53.63409448,0,0.96567441,0,0,0,7,0,0% +7/29/2018 9:00,122.4739659,12.51474598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137573953,0.218423522,0.844578754,-0.844578754,0.385722216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659631549,131.2717787,0.659631549,48.72822131,0,0.974200108,0,0,0,7,1,0% +7/29/2018 10:00,118.3392957,28.28928417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065410344,0.493741152,1.384151457,-1.384151457,0.29344985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670787355,132.1278624,0.670787355,47.87213762,0,0.97546073,0,0,0,7,2,0% +7/29/2018 11:00,111.5120848,42.04333336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946253036,0.733794596,2.24100754,-2.24100754,0.14691883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6256454,128.7295738,0.6256454,51.27042621,0,0.970082526,0,0,0,7,3,0% +7/29/2018 12:00,102.7262766,53.73898863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792911755,0.937922288,4.250747811,-4.250747811,0,#DIV/0!,0,0,0.164415461,1,0.231051444,0,0.934611587,0.97337355,0.724496596,1,0,0,0.026094516,0.312029739,0.928666059,0.653162655,0.961238037,0.922476074,0,0,0,0,0,0,-0.527280158,121.8218696,0.527280158,58.17813039,0,0.95517375,0,0,0,7,4,0% +7/29/2018 13:00,92.60554352,63.81144583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61627164,1.11371983,21.84673481,-21.84673481,0,#DIV/0!,0,0,0.762236385,1,0.045741502,0,0.956953352,0.995715316,0.724496596,1,0,0,0.095684266,0.312029739,0.764724934,0.48922153,0.961238037,0.922476074,0,0,0,0,0,0,-0.382393588,112.4820261,0.382393588,67.51797394,0,0.91924467,0,0,0,7,5,0% +7/29/2018 14:00,81.50629432,72.83448808,73.48721486,269.4771049,33.6852416,33.22348495,0,33.22348495,32.66950728,0.553977667,72.47613912,53.64257875,18.83356037,1.01573432,17.81782605,1.422553197,1.271201626,-6.687995814,6.687995814,0.326131667,0.458382341,0.351787458,11.31469391,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.40317304,0.735896057,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.254868816,10.87611417,31.65804186,11.61201022,0,53.64257875,-0.19906173,101.4820969,0.19906173,78.51790306,0,0.798821635,31.65804186,54.46286266,67.30289621,7,6,113% +7/29/2018 15:00,70.03492787,81.41244379,274.1835581,594.0870756,71.33416743,74.66391039,3.413819821,71.25009057,69.18317909,2.066911477,68.62996639,0,68.62996639,2.150988343,66.47897805,1.222340083,1.420915196,-2.698271743,2.698271743,0.991585334,0.260169384,2.054044069,66.06511798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.50150325,1.558383732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488147936,63.50430431,67.98965119,65.06268804,3.413819821,0,0.005746329,89.67075779,-0.005746329,90.32924221,0,0,67.98965119,65.06268804,110.5718793,7,7,63% +7/29/2018 16:00,58.25814592,90.24058314,483.5658555,742.5955171,92.89153651,258.1939199,164.4580822,93.73583763,90.09051395,3.645323678,120.0471628,0,120.0471628,2.801022559,117.2461402,1.016796462,1.574995295,-1.51667406,1.51667406,0.789520229,0.192096972,3.025446432,97.30875717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.59842877,2.029331309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.191925641,93.53687871,88.79035441,95.56621002,164.4580822,0,0.221463877,77.20497191,-0.221463877,102.7950281,0.824229546,0,224.3415649,95.56621002,286.887738,7,8,28% +7/29/2018 17:00,46.49065338,100.3305983,671.5872653,819.2155864,107.5795379,463.9964821,354.5981557,109.3983264,104.3356179,5.062708486,166.0780278,0,166.0780278,3.243919994,162.8341078,0.811414973,1.75109928,-0.90924791,0.90924791,0.68564424,0.160186983,3.726153145,119.8458937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2913645,2.350208993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69958527,115.2004316,102.9909498,117.5506406,354.5981557,0,0.432850841,64.35138179,-0.432850841,115.6486182,0.934486767,0,434.358234,117.5506406,511.2927772,7,9,18% +7/29/2018 18:00,35.17457251,113.5865294,822.0224298,861.4947926,117.8360395,659.2512896,538.7716892,120.4796004,114.2828481,6.196752299,202.8620465,0,202.8620465,3.553191358,199.3088551,0.613912103,1.982458924,-0.510480145,0.510480145,0.617450936,0.143348935,4.166008014,133.9931383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8530206,2.574275044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018258624,128.7993012,112.8712792,131.3735762,538.7716892,0,0.625391696,51.28905734,-0.625391696,128.7109427,0.970050106,0,635.5068132,131.3735762,721.4881914,7,10,14% +7/29/2018 19:00,25.30545073,134.2124969,923.457264,883.9935224,124.2900896,822.2535176,694.7498218,127.5036958,120.5422848,6.961410926,227.6507099,0,227.6507099,3.747804784,223.9029051,0.441663434,2.342449968,-0.205690606,0.205690606,0.565328855,0.13459214,4.342752116,139.6778362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8698292,2.715271808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146309125,134.263649,119.0161384,136.9789208,694.7498218,0,0.785921847,38.1939816,-0.785921847,141.8060184,0.986380443,0,804.3037751,136.9789208,893.9537393,7,11,11% +7/29/2018 20:00,19.53028695,168.9812023,968.5050614,892.8056967,127.0670238,937.1657531,806.6292687,130.5364844,123.2354842,7.301000251,238.6568047,0,238.6568047,3.831539594,234.8252651,0.340867811,2.949278354,0.055374483,-0.055374483,0.520684095,0.131199132,4.260644177,137.0369626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4586349,2.775937393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.086822202,131.7251409,121.5454571,134.5010783,806.6292687,0,0.903476839,25.38108615,-0.903476839,154.6189139,0.994658238,0,923.8659043,134.5010783,1011.89417,7,12,10% +7/29/2018 21:00,21.56000678,209.8611064,953.9261665,890.0246918,126.1736408,992.9096892,863.3495508,129.5601384,122.36904,7.191098383,235.095044,0,235.095044,3.804600802,231.2904432,0.376293105,3.662767279,0.302063521,-0.302063521,0.478497785,0.132267722,3.936951586,126.6258962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6257758,2.756420329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.852308022,121.7176279,120.4780838,124.4740482,863.3495508,0,0.970028763,14.0630872,-0.970028763,165.9369128,0.998455137,0,982.4938775,124.4740482,1063.959653,7,13,8% +7/29/2018 22:00,29.82105263,237.0678215,880.746334,875.0025225,121.6092062,982.9864683,858.4047905,124.5816778,117.9422399,6.639437894,217.2141119,0,217.2141119,3.666966257,213.5471456,0.520475555,4.137614035,0.558654782,-0.558654782,0.434618095,0.138075177,3.403928943,109.4820557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3705672,2.656704571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.466134932,105.2383163,115.8367021,107.8950209,858.4047905,0,0.981031218,11.17754055,-0.981031218,168.8224594,0.999033222,0,973.411606,107.8950209,1044.026739,7,14,7% +7/29/2018 23:00,40.59163466,253.3498837,754.2181895,843.974967,113.3320296,905.3335074,789.7332413,115.6002661,109.9146508,5.685615295,186.2863109,0,186.2863109,3.417378844,182.8689321,0.708457674,4.42178963,0.85538635,-0.85538635,0.383874009,0.150264249,2.708943917,87.12894829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6541431,2.475879339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962620646,83.75165921,107.6167638,86.22753855,789.7332413,0,0.935730646,20.6534917,-0.935730646,159.3465083,0.99656582,0,894.6379188,86.22753855,951.0721182,7,15,6% +7/29/2018 0:00,52.20995092,264.7248262,583.6657801,787.6028363,101.0465372,761.7993824,659.3998519,102.3995305,97.99961132,4.399919192,144.5634518,0,144.5634518,3.04692592,141.5165258,0.911235546,4.62031983,1.24729945,-1.24729945,0.316852921,0.17312397,1.914501884,61.57696166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20095399,2.207487457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.387050098,59.19011774,95.58800409,61.3976052,659.3998519,0,0.837223816,33.15188784,-0.837223816,146.8481122,0.990278813,0,748.5777068,61.3976052,788.7612114,7,16,5% +7/29/2018 1:00,64.03428982,274.032085,382.5870557,683.0719326,83.51550831,556.7511676,472.8698572,83.88131042,80.99720759,2.884102831,95.2809618,0,95.2809618,2.518300715,92.76266109,1.117609192,4.78276214,1.875426301,-1.875426301,0.209436903,0.218291516,1.101756469,35.4362753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85759682,1.824500295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.798218811,34.0626957,78.65581563,35.887196,472.8698572,0,0.692269488,46.1899719,-0.692269488,133.8100281,0.977773792,0,541.015569,35.887196,564.5030211,7,17,4% +7/29/2018 2:00,75.71817916,282.6314785,171.3422591,467.5123577,56.01091334,294.4875034,238.8738754,55.61362797,54.32197764,1.291650325,43.23285016,0,43.23285016,1.688935695,41.54391446,1.32153153,4.93284987,3.308295911,-3.308295911,0,0.326894916,0.422233924,13.58049441,0.034374558,1,0.293538446,0,0.9253677,0.964129663,0.724496596,1,52.30105003,1.223628162,0.005784899,0.312029739,0.983726554,0.70822315,0.961238037,0.922476074,0.303034525,13.05408779,52.60408455,14.27771595,230.6626916,0,0.510946655,59.27309344,-0.510946655,120.7269066,0.952142426,0,272.2278194,14.27771595,281.5722989,7,18,3% +7/29/2018 3:00,86.8762005,291.338518,9.023638125,43.79729249,6.63696686,19.97784202,13.4729802,6.504861817,6.436837821,0.068023996,2.388014574,0,2.388014574,0.200129039,2.187885536,1.51627574,5.084816376,13.75766904,-13.75766904,0,0.735508978,0.05003226,1.609209455,0.645709972,1,0.072559126,0,0.95420922,0.992971184,0.724496596,1,6.230486945,0.144992807,0.084518312,0.312029739,0.788431486,0.512928082,0.961238037,0.922476074,0.034563455,1.546833338,6.2650504,1.691826145,4.773342531,0,0.307621303,72.08406249,-0.307621303,107.9159375,0.887462492,0,10.50121286,1.691826145,11.60847923,7,19,11% +7/29/2018 4:00,97.75054234,300.7891713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706068809,5.249761393,-4.644810556,4.644810556,0.675536924,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087514382,84.97937269,-0.087514382,95.02062731,0.478665333,0,0,0,0,7,20,0% +7/29/2018 5:00,107.3204777,311.5777291,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87309569,5.438057249,-1.526229747,1.526229747,0.791154348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124353422,97.14341823,0.124353422,82.85658177,0,0.647920191,0,0,0,7,21,0% +7/29/2018 6:00,115.278526,324.2443846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011989835,5.659132093,-0.574993929,0.574993929,0.628483443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31728925,108.4990692,0.31728925,71.5009308,0,0.892415084,0,0,0,7,22,0% +7/29/2018 7:00,120.9279929,339.0592663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110591635,5.917700557,-0.027402359,0.027402359,0.534839769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478147891,118.5645075,0.478147891,61.43549246,0,0.945429843,0,0,0,7,23,0% +7/30/2018 8:00,123.5467828,355.6046035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156298141,6.206471167,0.40569034,-0.40569034,0.460776556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595968819,126.5817279,0.595968819,53.41827214,0,0.966102993,0,0,0,7,0,0% +7/30/2018 9:00,122.7079976,12.57666468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141658577,0.219504208,0.83842977,-0.83842977,0.386773754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662723142,131.5078873,0.662723142,48.49211274,0,0.974553714,0,0,0,7,1,0% +7/30/2018 10:00,118.5559747,28.40663429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069192107,0.495789298,1.374211071,-1.374211071,0.295149756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673860921,132.3657566,0.673860921,47.63424345,0,0.975800713,0,0,0,7,2,0% +7/30/2018 11:00,111.7060483,42.19574192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949638338,0.736454627,2.2220839,-2.2220839,0.150154963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6286216,128.9484997,0.6286216,51.05150026,0,0.970460894,0,0,0,7,3,0% +7/30/2018 12:00,102.897883,53.91167825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795906852,0.940936291,4.195941199,-4.195941199,0,#DIV/0!,0,0,0.157819927,1,0.233961127,0,0.934199563,0.972961526,0.724496596,1,0,0,0.025120413,0.312029739,0.931233044,0.65572964,0.961238037,0.922476074,0,0,0,0,0,0,-0.530086396,122.0112924,0.530086396,57.98870755,0,0.955675753,0,0,0,7,4,0% +7/30/2018 13:00,92.75813429,63.99772598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618934851,1.116971032,20.64353718,-20.64353718,0,#DIV/0!,0,0,0.750006193,1,0.048403474,0,0.956688583,0.995450546,0.724496596,1,0,0,0.094555833,0.312029739,0.767075316,0.491571912,0.961238037,0.922476074,0,0,0,0,0,0,-0.384969014,112.6418166,0.384969014,67.3581834,0,0.920119417,0,0,0,7,5,0% +7/30/2018 14:00,81.64283838,73.03393083,71.38682883,263.7930835,33.04626156,32.58793892,0,32.58793892,32.04979485,0.53814407,71.41606568,53.11103583,18.30502985,0.996466714,17.30856314,1.42493634,1.274682559,-6.797659546,6.797659546,0.307378064,0.46291819,0.337957358,10.86987037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.80748188,0.721936742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.244848956,10.44853285,31.05233084,11.1704696,0,53.11103583,-0.201335968,101.6150937,0.201335968,78.38490632,0,0.801658879,31.05233084,53.74740304,66.22893118,7,6,113% +7/30/2018 15:00,70.16332702,81.62916665,271.8461714,591.7653016,71.03648961,73.16499188,2.221223263,70.94376862,68.89447735,2.049291268,68.05426383,0,68.05426383,2.142012259,65.91225157,1.224581071,1.424697724,-2.715136238,2.715136238,0.994469332,0.261311348,2.040919008,65.64297093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22399216,1.55188059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.478638874,63.09852051,67.70263104,64.6504011,2.221223263,0,0.003753554,89.78493667,-0.003753554,90.21506333,0,0,67.70263104,64.6504011,110.0150255,7,7,62% +7/30/2018 16:00,58.3834559,90.48272279,481.4249955,741.501138,92.7065048,256.5033807,162.9631341,93.5402466,89.91106163,3.629184971,119.5225071,0,119.5225071,2.79544317,116.7270639,1.018983534,1.579221429,-1.521725777,1.521725777,0.790384124,0.192566871,3.0149425,96.97091461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.42593237,2.025289061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.184315578,93.21213159,88.61024795,95.23742065,162.9631341,0,0.219774624,77.30420405,-0.219774624,102.6957959,0.822494208,0,222.6464818,95.23742065,284.9774689,7,8,28% +7/30/2018 17:00,46.62109714,100.610386,669.6636813,818.5873357,107.4415857,462.4303338,353.1803007,109.2500331,104.2018254,5.048207697,165.6074729,0,165.6074729,3.239760225,162.3677126,0.813691646,1.755982498,-0.910783122,0.910783122,0.685906777,0.160441112,3.716996552,119.5513862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1627581,2.347195254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.692951349,114.9173398,102.8557095,117.264535,353.1803007,0,0.431450971,64.44032231,-0.431450971,115.5596777,0.934111977,0,432.7656584,117.264535,509.5129513,7,9,18% +7/30/2018 18:00,35.32336053,113.9164362,820.2698572,861.0693445,117.7217264,657.8740982,537.5185755,120.3555227,114.171982,6.183540667,202.433668,0,202.433668,3.549744399,198.8839236,0.616508944,1.988216884,-0.510478832,0.510478832,0.617450711,0.143515851,4.157519631,133.7201227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7464519,2.571777733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.01210882,128.5368683,112.7585607,131.108646,537.5185755,0,0.624245398,51.37317693,-0.624245398,128.6268231,0.969903294,0,634.0995977,131.108646,719.9075844,7,10,14% +7/30/2018 19:00,25.49375156,134.5663655,921.8052309,883.657713,124.1872999,821.0410626,693.6495108,127.3915518,120.4425946,6.948957202,227.2470558,0,227.2470558,3.744705295,223.5023505,0.444949903,2.348626141,-0.204786974,0.204786974,0.565174325,0.134721843,4.334445697,139.4106732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7740032,2.713026239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140291152,134.0068418,118.9142944,136.719868,693.6495108,0,0.784975337,38.28160273,-0.784975337,141.7183973,0.986303731,0,803.0633951,136.719868,892.5438143,7,11,11% +7/30/2018 20:00,19.76752151,169.1244313,966.8721437,892.4974658,126.9672031,936.0511709,805.6238067,130.4273641,123.1386735,7.288690628,238.2578749,0,238.2578749,3.828529634,234.4293453,0.345008335,2.951778171,0.056990464,-0.056990464,0.520407746,0.131317469,4.252124352,136.7629357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3655768,2.773756687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080649618,131.4617359,121.4462264,134.2354926,805.6238067,0,0.902662291,25.48974949,-0.902662291,154.5102505,0.994608299,0,922.7263502,134.2354926,1010.580795,7,12,10% +7/30/2018 21:00,21.78466235,209.6154077,952.2282842,889.6965032,126.0692736,991.8013994,862.3552806,129.4461188,122.2678198,7.178299029,234.6802258,0,234.6802258,3.801453744,230.878772,0.380214084,3.658479027,0.304426792,-0.304426792,0.478093642,0.13239396,3.927899847,126.3347611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5284791,2.754140297,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845750068,121.4377778,120.3742292,124.1919181,862.3552806,0,0.969269046,14.24112058,-0.969269046,165.7588794,0.998414736,0,981.3624486,124.1919181,1062.643575,7,13,8% +7/30/2018 22:00,30.00181771,236.7436634,878.904136,874.5997175,121.4924363,981.7767537,857.322212,124.4545417,117.828991,6.625550628,216.7639286,0,216.7639286,3.663445213,213.1004834,0.523630501,4.131956409,0.562007312,-0.562007312,0.434044779,0.138231727,3.394122144,109.1666354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.261708,2.654153586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.459029939,104.9351223,115.720738,107.5892759,857.322212,0,0.980245242,11.40751465,-0.980245242,168.5924854,0.998992356,0,972.1790747,107.5892759,1042.594104,7,14,7% +7/30/2018 23:00,40.74632953,253.0629167,752.1645365,843.4081042,113.1928218,903.9005607,788.4507862,115.4497745,109.7796406,5.670133992,185.7841813,0,185.7841813,3.413181213,182.3710001,0.711157608,4.41678111,0.860312761,-0.860312761,0.383031543,0.150489443,2.698296457,86.78648939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5243662,2.47283817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954906598,83.42247469,107.4792728,85.89531286,788.4507862,0,0.934838997,20.79785064,-0.934838997,159.2021494,0.996514854,0,893.1821931,85.89531286,949.3989574,7,15,6% +7/30/2018 0:00,52.35437746,264.4779453,581.3554017,786.683874,100.8678963,759.9980207,657.789161,102.2088597,97.82635707,4.382502583,143.9978871,0,143.9978871,3.041539237,140.9563478,0.913756264,4.616010945,1.255221552,-1.255221552,0.315498162,0.173504703,1.90315631,61.21204898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.03441542,2.203584823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378830268,58.8393498,95.41324569,61.04293462,657.789161,0,0.836154373,33.26376863,-0.836154373,146.7362314,0.99020243,0,746.757671,61.04293462,786.7090509,7,16,5% +7/30/2018 1:00,64.17821786,273.8143832,380.0188482,681.3136711,83.25677541,554.3735481,470.762529,83.61101905,80.74627645,2.864742598,94.65046841,0,94.65046841,2.510498963,92.13996944,1.12012121,4.778962527,1.890640723,-1.890640723,0.206835084,0.219085911,1.090339201,35.06905671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.61639226,1.818847953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.789947039,33.70971123,78.4063393,35.52855918,470.762529,0,0.690962987,46.29361397,-0.690962987,133.706386,0.977637224,0,538.6413112,35.52855918,561.8940426,7,17,4% +7/30/2018 2:00,75.86794052,282.4341123,168.6762863,463.3944253,55.53498811,291.168751,236.0367946,55.13195641,53.86040331,1.271553095,42.57210327,0,42.57210327,1.674584794,40.89751847,1.324145359,4.92940518,3.352199973,-3.352199973,0,0.329240045,0.418646198,13.46510083,0.041324906,1,0.289907047,0,0.925927312,0.964689275,0.724496596,1,51.87227798,1.213230983,0.006932263,0.312029739,0.980529949,0.705026545,0.961238037,0.922476074,0.299923034,12.94316709,52.17220101,14.15639807,226.2825963,0,0.509364769,59.37847339,-0.509364769,120.6215266,0.951838519,0,267.5566924,14.15639807,276.8217718,7,18,3% +7/30/2018 3:00,87.03036944,291.1562752,8.003809691,39.05673949,5.980411693,17.80589689,11.94548058,5.860416314,5.800080216,0.060336098,2.120947802,0,2.120947802,0.180331478,1.940616325,1.518966496,5.08163564,14.51370833,-14.51370833,0,0.747195639,0.045082869,1.450020054,0.661227862,1,0.068791659,0,0.954604987,0.993366951,0.724496596,1,5.612949099,0.130649542,0.086060451,0.312029739,0.785097904,0.5095945,0.961238037,0.922476074,0.031186752,1.39381443,5.644135851,1.524463972,4.046795996,0,0.305849406,72.1907265,-0.305849406,107.8092735,0.886520853,0,9.23170489,1.524463972,10.22943607,7,19,11% +7/30/2018 4:00,97.9284836,300.6208595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70917447,5.246823798,-4.555592119,4.555592119,0.690794176,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.085301813,85.1066195,-0.085301813,94.8933805,0,0,0,0,0,7,20,0% +7/30/2018 5:00,107.5179757,311.4274395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876542681,5.435434201,-1.515225098,1.515225098,0.789272442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126860097,97.28818673,0.126860097,82.71181327,0,0.655865033,0,0,0,7,21,0% +7/30/2018 6:00,115.4970458,324.1235305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015803726,5.65702279,-0.573615435,0.573615435,0.628247706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320052374,108.6660923,0.320052374,71.33390773,0,0.893775569,0,0,0,7,22,0% +7/30/2018 7:00,121.1644608,338.986763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114718777,5.916435135,-0.02923968,0.02923968,0.535153969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481112246,118.7580698,0.481112246,61.24193021,0,0.946074148,0,0,0,7,23,0% +7/31/2018 8:00,123.7914469,355.5993391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160568334,6.206379286,0.401820782,-0.401820782,0.461438289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599065414,126.8029921,0.599065414,53.19700787,0,0.966536661,0,0,0,7,0,0% +7/31/2018 9:00,122.9465236,12.64281037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145821641,0.220658668,0.832302958,-0.832302958,0.387821501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873941,131.7494067,0.665873941,48.25059329,0,0.974910712,0,0,0,7,1,0% +7/31/2018 10:00,118.7762287,28.52926104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073036264,0.497929538,1.36430125,-1.36430125,0.296844435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676984205,132.6084253,0.676984205,47.3915747,0,0.976143033,0,0,0,7,2,0% +7/31/2018 11:00,111.9027049,42.3537425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953070642,0.739212257,2.203268914,-2.203268914,0.153372515,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631637585,129.1710442,0.631637585,50.82895583,0,0.970840683,0,0,0,7,3,0% +7/31/2018 12:00,103.0714865,54.08990407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798936804,0.944046918,4.141965927,-4.141965927,0,#DIV/0!,0,0,0.151221876,1,0.236897838,0,0.933781864,0.972543828,0.724496596,1,0,0,0.02414025,0.312029739,0.933823525,0.658320121,0.961238037,0.922476074,0,0,0,0,0,0,-0.532922724,122.2031451,0.532922724,57.79685494,0,0.956177767,0,0,0,7,4,0% +7/31/2018 13:00,92.91224174,64.18941613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621624534,1.120316656,19.55617147,-19.55617147,0,#DIV/0!,0,0,0.73781829,1,0.051090254,0,0.956419637,0.9951816,0.724496596,1,0,0,0.093421478,0.312029739,0.76944833,0.493944926,0.961238037,0.922476074,0,0,0,0,0,0,-0.387565739,112.8031171,0.387565739,67.19688288,0,0.920989628,0,0,0,7,5,0% +7/31/2018 14:00,81.78056243,73.23874283,69.28351087,258.0171177,32.39616931,31.94159364,0,31.94159364,31.41930527,0.52228837,70.31374858,52.5382952,17.77545338,0.976864034,16.79858935,1.427340078,1.278257202,-6.91182465,6.91182465,0.287854682,0.467588448,0.32426044,10.42933038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.20143132,0.707734667,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234925585,10.02506906,30.43635691,10.73280373,0,52.5382952,-0.203623293,101.7489198,0.203623293,78.2510802,0,0.804448525,30.43635691,52.9971578,65.12193674,7,6,114% +7/31/2018 15:00,70.29286652,81.8513768,269.4878922,589.4017105,70.73428474,71.66561552,1.032716886,70.63289864,68.60138507,2.031513564,67.47335916,0,67.47335916,2.132899667,65.3404595,1.226841961,1.428576022,-2.732285433,2.732285433,0.997402017,0.262476671,2.027621036,65.21526242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94226071,1.545278548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469004538,62.68739082,67.41126525,64.23266936,1.032716886,0,0.001752144,89.89960947,-0.001752144,90.10039053,0,0,67.41126525,64.23266936,109.4502627,7,7,62% +7/31/2018 16:00,58.51002238,90.73066668,479.260167,740.3880978,92.51888101,254.8054814,161.4635204,93.34196097,89.72909539,3.612865579,118.9919618,0,118.9919618,2.789785621,116.2021762,1.021192536,1.583548866,-1.526796389,1.526796389,0.79125125,0.193045213,3.004275469,96.62782622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.2510195,2.021190185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.176587351,92.88234198,88.42760685,94.90353217,161.4635204,0,0.218079573,77.40373791,-0.218079573,102.5962621,0.82072589,0,220.9448984,94.90353217,283.0573621,7,8,28% +7/31/2018 17:00,46.75316504,100.8964929,667.7120836,817.9472996,107.3014183,460.8540421,351.7546617,109.0993804,104.0658846,5.033495729,165.1300588,0,165.1300588,3.235533662,161.8945252,0.815996666,1.760976004,-0.912284245,0.912284245,0.686163484,0.160700129,3.707658118,119.2510301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0320867,2.344133124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.686185685,114.628626,102.7182723,116.9727592,351.7546617,0,0.43004563,64.52954403,-0.43004563,115.470456,0.933733268,0,431.1633021,116.9727592,507.7196336,7,9,18% +7/31/2018 18:00,35.47449609,114.253169,818.483125,860.6341959,117.6050774,656.4826738,536.2537519,120.228922,114.0588504,6.170071525,201.9969367,0,201.9969367,3.546227001,198.4507097,0.619146757,1.994093979,-0.51042479,0.51042479,0.61744147,0.143686624,4.148817877,133.4402444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6377055,2.569229391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.005804429,128.2678386,112.6435099,130.8370679,536.2537519,0,0.623091384,51.45776321,-0.623091384,128.5422368,0.969754949,0,632.6782396,130.8370679,718.3084838,7,10,14% +7/31/2018 19:00,25.68553311,134.9266527,920.1109682,883.3123532,124.0818097,819.8078774,692.531407,127.2764704,120.3402853,6.936185135,226.8330813,0,226.8330813,3.741524375,223.0915569,0.448297123,2.354914339,-0.20381887,0.20381887,0.565008769,0.134855266,4.325887998,139.1354282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6756596,2.710721673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134091129,133.7422658,118.8097507,136.4529875,692.531407,0,0.78401644,38.37019768,-0.78401644,141.6298023,0.986225827,0,801.8021104,136.4529875,891.1078617,7,11,11% +7/31/2018 20:00,20.00944545,169.2735794,965.1875062,892.1786187,126.8641572,934.9069079,804.592182,130.3147259,123.0387348,7.275991119,237.8463078,0,237.8463078,3.82542242,234.0208854,0.349230705,2.954381297,0.058683431,-0.058683431,0.520118232,0.131439908,4.243313254,136.4795405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2695119,2.771505521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074266008,131.1893256,121.3437779,133.9608311,804.592182,0,0.901828586,25.60052254,-0.901828586,154.3994775,0.994557091,0,921.5566381,133.9608311,1009.231323,7,12,10% +7/31/2018 21:00,22.01522132,209.3748805,950.4684318,889.3553737,125.9610249,990.6523345,861.3244668,129.3278678,122.1628352,7.165032518,234.2502651,0,234.2502651,3.798189647,230.4520754,0.384238098,3.654281036,0.306884791,-0.306884791,0.477673299,0.132525206,3.91851869,126.0330309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4275639,2.75177547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838953452,121.1477432,120.2665174,123.8995187,861.3244668,0,0.96848177,14.42334097,-0.96848177,165.576659,0.998372802,0,980.1894388,123.8995187,1061.279196,7,13,8% +7/31/2018 22:00,30.18863653,236.4195884,876.9897129,874.1797519,121.3709842,980.5134263,856.1911062,124.3223201,117.7112012,6.611118898,216.2960923,0,216.2960923,3.659782984,212.6363093,0.526891104,4.126300234,0.565483507,-0.565483507,0.433450314,0.138394992,3.38395379,108.8395862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.148484,2.651500314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.451663002,104.6207501,115.600147,107.2722504,856.1911062,0,0.979422258,11.64351352,-0.979422258,168.3564865,0.998949496,0,970.8918209,107.2722504,1041.099363,7,14,7% +7/31/2018 23:00,40.90667286,252.773915,750.0292337,842.8162854,113.0478924,902.3996653,787.1065468,115.2931185,109.6390813,5.654037177,185.2620823,0,185.2620823,3.408811057,181.8532712,0.713956128,4.41173708,0.865415825,-0.865415825,0.382158867,0.150724648,2.687266365,86.43172371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3892553,2.469672007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946915333,83.08146042,107.3361706,85.55113243,787.1065468,0,0.933900496,20.94876773,-0.933900496,159.0512323,0.996461106,0,891.6572305,85.55113243,947.6487356,7,15,6% +7/31/2018 0:00,52.50410594,264.2285195,578.9557922,785.7241073,100.6819342,758.1124638,656.1020481,102.0104157,97.64600241,4.364413314,143.4104665,0,143.4104665,3.035931793,140.3745347,0.91636952,4.611657642,1.263433951,-1.263433951,0.314093759,0.173902629,1.891426125,60.83476591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.86105166,2.199522249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.370331789,58.47669096,95.23138345,60.67621321,656.1020481,0,0.835028532,33.38119072,-0.835028532,146.6188093,0.990121807,0,744.8523286,60.67621321,784.5636966,7,16,5% +7/31/2018 1:00,64.32723926,273.5941043,377.3575542,679.4767273,82.98740982,551.8911177,468.5614039,83.32971386,80.48503322,2.84468064,93.99708451,0,93.99708451,2.502376597,91.49470791,1.122722124,4.775117934,1.906465653,-1.906465653,0.204128862,0.219917182,1.078573748,34.69063932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.36527533,1.812963326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781423009,33.34596204,78.14669834,35.15892536,468.5614039,0,0.689591542,46.40221546,-0.689591542,133.5977845,0.97749331,0,536.162336,35.15892536,559.1731495,7,17,4% +7/31/2018 2:00,76.02268644,282.2342735,165.9258999,459.0895107,55.0384822,287.7146113,233.0849229,54.62968841,53.37886889,1.250819521,41.89026876,0,41.89026876,1.659613309,40.23065545,1.326846185,4.925917335,3.398348115,-3.398348115,0,0.33170519,0.414903327,13.34471722,0.048523462,1,0.28618302,0,0.926498364,0.965260327,0.724496596,1,51.42410603,1.202384193,0.008112857,0.312029739,0.977251492,0.701748088,0.961238037,0.922476074,0.296704202,12.82744978,51.72081023,14.02983398,221.7748354,0,0.507711279,59.48850089,-0.507711279,120.5114991,0.951518832,0,262.7437425,14.02983398,271.9259882,7,18,3% +7/31/2018 3:00,87.18884229,290.9717234,7.022494759,34.44948629,5.332944672,15.69814518,10.47306993,5.225075245,5.172136714,0.052938532,1.863493116,0,1.863493116,0.160807958,1.702685158,1.521732369,5.078414604,15.37640549,-15.37640549,0,0.75940885,0.04020199,1.293034178,0.677353422,1,0.064943249,0,0.955005805,0.993767768,0.724496596,1,5.004105472,0.116504818,0.087644478,0.312029739,0.781693596,0.506190192,0.961238037,0.922476074,0.027852074,1.242913635,5.031957546,1.359418454,3.379100174,0,0.304012369,72.30124448,-0.304012369,107.6987555,0.885533007,0,8.024262285,1.359418454,8.913974475,7,19,11% +7/31/2018 4:00,98.1115534,300.4504868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712369641,5.243850234,-4.467543982,4.467543982,0.705851294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.083009272,85.23844005,-0.083009272,94.76155995,0,0,0,0,0,7,20,0% +7/31/2018 5:00,107.7207485,311.2755238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880081734,5.432782771,-1.504032393,1.504032393,0.787358377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.129446876,97.43763056,0.129446876,82.56236944,0,0.66374116,0,0,0,7,21,0% +7/31/2018 6:00,115.7209813,324.0018598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019712137,5.654899236,-0.572131033,0.572131033,0.627993859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322893164,108.8379817,0.322893164,71.16201827,0,0.89515002,0,0,0,7,22,0% +7/31/2018 7:00,121.4063522,338.9148341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118940578,5.915179739,-0.03101865,0.03101865,0.535458191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48414943,118.9567604,0.48414943,61.04323962,0,0.9467261,0,0,0,7,23,0% +8/1/2018 8:00,124.0412261,355.5965469,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164927803,6.206330553,0.397985965,-0.397985965,0.462094081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602227931,127.0296286,0.602227931,52.97037138,0,0.966974957,0,0,0,8,0,0% +8/1/2018 9:00,123.1894629,12.71321295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150061732,0.221887424,0.826201862,-0.826201862,0.38886485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669082163,131.9962652,0.669082163,48.0037348,0,0.975270762,0,0,0,8,1,0% +8/1/2018 10:00,118.9999739,28.65717943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076941354,0.500162135,1.354427589,-1.354427589,0.298532931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680155408,132.8557883,0.680155408,47.14421166,0,0.976487389,0,0,0,8,2,0% +8/1/2018 11:00,112.1019754,42.51732488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956548569,0.742067308,2.184571938,-2.184571938,0.156569886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634691631,129.3971171,0.634691631,50.60288293,0,0.971221586,0,0,0,8,3,0% +8/1/2018 12:00,103.2470187,54.27363265,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802000419,0.947253587,4.088830008,-4.088830008,0,#DIV/0!,0,0,0.144624659,1,0.239860392,0,0.933358613,0.972120577,0.724496596,1,0,0,0.023154475,0.312029739,0.936436452,0.660933048,0.961238037,0.922476074,0,0,0,0,0,0,-0.535787581,122.397339,0.535787581,57.60266103,0,0.956679435,0,0,0,8,4,0% +8/1/2018 13:00,93.06781177,64.38646492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624339743,1.123755807,18.56910074,-18.56910074,0,#DIV/0!,0,0,0.725677885,1,0.053800934,0,0.956146563,0.994908526,0.724496596,1,0,0,0.092281669,0.312029739,0.771843149,0.496339745,0.961238037,0.922476074,0,0,0,0,0,0,-0.390182439,112.9658518,0.390182439,67.03414823,0,0.921854817,0,0,0,8,5,0% +8/1/2018 14:00,81.91942515,73.44885784,67.17882083,252.1510852,31.73505899,31.2845522,0,31.2845522,30.77812987,0.506422328,69.16882793,51.92361593,17.245212,0.956929119,16.28828288,1.42976369,1.281924401,-7.030727528,7.030727528,0.267521092,0.472396785,0.310711253,9.993541963,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.58510914,0.693291889,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225109245,9.606172657,29.81021838,10.29946455,0,51.92361593,-0.205922635,101.8835146,0.205922635,78.11648544,0,0.807190364,29.81021838,52.21170702,63.98173639,8,6,115% +8/1/2018 15:00,70.42352299,82.07899227,267.1091895,586.9959161,70.42753405,70.31746595,0,70.31746595,68.30388405,2.013581898,67.03834321,0.150977736,66.88736547,2.123650002,64.76371547,1.229122347,1.432548662,-2.749721805,2.749721805,0.999616188,0.26366571,2.013012831,64.74541232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.65629142,1.538577197,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.458420943,62.23575303,67.11471236,63.77433023,0,0.150977736,-0.000257204,90.01473671,0.000257204,89.98526329,0,0,67.11471236,63.77433023,108.853736,8,7,62% +8/1/2018 16:00,58.63783754,90.98431068,477.0714459,739.2561634,92.32864932,253.1005266,159.9595606,93.14096596,89.54459989,3.596366075,118.4555448,0,118.4555448,2.784049433,115.6714954,1.023423331,1.587975789,-1.531884895,1.531884895,0.792121435,0.193532122,2.993444707,96.27947169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07367541,2.017034337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1687405,92.54749035,88.24241591,94.56452469,159.9595606,0,0.216379069,77.50355315,-0.216379069,102.4964468,0.818924045,0,219.2371464,94.56452469,281.1277365,8,8,28% +8/1/2018 17:00,46.88686383,101.1887756,665.7322342,817.2952682,107.1590084,459.2675517,350.321212,108.9463397,103.9277689,5.018570788,164.6457272,0,164.6457272,3.231239477,161.4144878,0.81833015,1.7660773,-0.913750606,0.913750606,0.686414246,0.160964128,3.698136152,118.9447709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89932454,2.341022001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679287053,114.3342381,102.5786116,116.6752601,350.321212,0,0.428634822,64.61904631,-0.428634822,115.3809537,0.933350588,0,429.5511208,116.6752601,505.912745,8,9,18% +8/1/2018 18:00,35.62799527,114.5965065,816.6617506,860.1891399,117.4860541,655.0766273,534.97687,120.0997573,113.9434161,6.156341235,201.5517344,0,201.5517344,3.542638009,198.0090964,0.621825823,2.000086349,-0.510317669,0.510317669,0.617423151,0.14386134,4.139900425,133.1534285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5267456,2.566629178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999343765,127.9921402,112.5260894,130.5587694,534.97687,0,0.621929347,51.54283711,-0.621929347,128.4571629,0.969605016,0,631.2423459,130.5587694,716.6904492,8,10,14% +8/1/2018 19:00,25.88079791,135.2930045,918.3738319,882.9572335,123.9735729,818.5532919,691.3948898,127.1584021,120.2353123,6.923089868,226.4086288,0,226.4086288,3.738260637,222.6703681,0.451705137,2.361308383,-0.202786128,0.202786128,0.56483216,0.134992493,4.317076505,138.8520203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5747555,2.708357106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127707232,133.4698434,118.7024627,136.1782005,691.3948898,0,0.783044596,38.45981279,-0.783044596,141.5401872,0.986146676,0,800.5192354,136.1782005,889.645144,8,11,11% +8/1/2018 20:00,20.25600267,169.4283124,963.4504375,891.8489369,126.7578362,933.7320909,803.5335748,130.1985162,122.9356198,7.262896361,237.4219295,0,237.4219295,3.822216449,233.599713,0.35353394,2.957081898,0.060453472,-0.060453472,0.519815537,0.131566536,4.234208611,136.1867039,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1703938,2.769182806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.067669725,130.9078399,121.2380636,133.6770227,803.5335748,0,0.900974976,25.71347907,-0.900974976,154.2865209,0.994504563,0,920.3558702,133.6770227,1007.844808,8,12,10% +8/1/2018 21:00,22.25160116,209.1396202,948.6459298,889.0010634,125.8488449,989.4615114,860.2561798,129.2053316,122.0540378,7.151293729,233.8049957,0,233.8049957,3.794807005,230.0101887,0.388363704,3.650174969,0.309437645,-0.309437645,0.477236736,0.132661556,3.9088065,125.7206535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3229837,2.749324757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.831917003,120.8474741,120.1549007,123.5967989,860.2561798,0,0.967666086,14.60978987,-0.967666086,165.3902101,0.998329284,0,978.9738363,123.5967989,1059.865469,8,13,8% +8/1/2018 22:00,30.38146384,236.0958576,875.002515,873.7423394,121.2448025,979.195492,855.0105291,124.1849629,117.5888243,6.59613856,215.8104683,0,215.8104683,3.655978141,212.1544902,0.530256576,4.120650066,0.569083732,-0.569083732,0.43283464,0.13856509,3.373423297,108.5008893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0308507,2.648743718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444033695,104.2951818,115.4748844,106.9439256,855.0105291,0,0.978561403,11.88542653,-0.978561403,168.1145735,0.998904586,0,969.5488229,106.9439256,1039.541483,8,14,7% +8/1/2018 23:00,41.0726371,252.483078,747.8119531,842.1991199,112.897196,900.8299057,785.6996544,115.1302513,109.492929,5.63732238,184.7199329,0,184.7199329,3.404267004,181.3156659,0.71685275,4.406661018,0.870696644,-0.870696644,0.381255794,0.150970034,2.675854442,86.06467704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2487681,2.466379856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938647434,82.7286412,107.1874155,85.19502106,785.6996544,0,0.932914362,21.10623377,-0.932914362,158.8937662,0.996404513,0,890.0620966,85.19502106,945.820534,8,15,6% +8/1/2018 0:00,52.65910932,263.9766895,576.466932,784.7228753,100.4885973,756.1419273,654.3377807,101.8041466,97.45849534,4.345651234,142.8011837,0,142.8011837,3.030101972,139.7710818,0.919074839,4.60726238,1.271940153,-1.271940153,0.312639113,0.17431806,1.879313942,60.44519646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.68081273,2.195298564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361556553,58.10222198,95.04236929,60.29752055,654.3377807,0,0.833845681,33.50416672,-0.833845681,146.4958333,0.990036866,0,742.8608952,60.29752055,782.3244165,8,16,5% +8/1/2018 1:00,64.48132082,273.3713512,374.6035787,677.5595822,82.70730016,549.3031575,466.2658676,83.03728991,80.2133699,2.82392001,93.32090492,0,93.32090492,2.493930257,90.82697467,1.125411354,4.771230159,1.922915099,-1.922915099,0.201315841,0.220786199,1.066465479,34.30119575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.10414221,1.806843982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.772650609,32.97161406,77.87679282,34.77845804,466.2658676,0,0.688154783,46.5157791,-0.688154783,133.4842209,0.977341928,0,533.5779747,34.77845804,556.3397799,8,17,4% +8/1/2018 2:00,76.18237407,282.0320394,163.0924925,454.5932496,54.52098804,284.1243218,230.0178827,54.10643919,52.87697909,1.229460099,41.18767199,0,41.18767199,1.644008951,39.54366303,1.329633259,4.922387683,3.44684862,-3.44684862,0,0.334294897,0.411002238,13.21924477,0.05597336,1,0.282368184,0,0.927080358,0.965842321,0.724496596,1,50.95610034,1.191078888,0.009326455,0.312029739,0.973892738,0.698389334,0.961238037,0.922476074,0.293377583,12.70684089,51.24947792,13.89791978,217.143009,0,0.505986138,59.60316371,-0.505986138,120.3968363,0.951183064,0,257.7922304,13.89791978,266.888141,8,18,4% +8/1/2018 3:00,87.35148365,290.7849205,6.086935501,30.01575836,4.699941222,13.67222351,9.068116962,4.604106544,4.558220654,0.045885891,1.617568553,0,1.617568553,0.141720569,1.475847984,1.524570996,5.075154278,16.36824691,-16.36824691,0,0.772135867,0.035430142,1.139555163,0.694094312,1,0.061018057,0,0.955411019,0.994172982,0.724496596,1,4.409023363,0.10267607,0.089269342,0.312029739,0.778222404,0.502719,0.961238037,0.922476074,0.024586547,1.095383768,4.43360991,1.198059838,2.773988558,0,0.302111873,72.41550867,-0.302111873,107.5844913,0.884498394,0,6.887198335,1.198059838,7.671304538,8,19,11% +8/1/2018 4:00,98.29969327,300.278094,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715653301,5.240841412,-4.380774522,4.380774522,0.720689745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.080637375,85.37479698,-0.080637375,94.62520302,0,0,0,0,0,8,20,0% +8/1/2018 5:00,107.9287308,311.1220074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.883711709,5.430103404,-1.49267029,1.49267029,0.785415343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132112801,97.59170009,0.132112801,82.40829991,0,0.671535538,0,0,0,8,21,0% +8/1/2018 6:00,115.9502628,323.8793868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023713855,5.65276168,-0.570544463,0.570544463,0.627722539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325810353,109.0146772,0.325810353,70.98532278,0,0.896536491,0,0,0,8,22,0% +8/1/2018 7:00,121.6535949,338.8434932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123255777,5.913934606,-0.032739119,0.032739119,0.535752409,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487257919,119.1605113,0.487257919,60.83948868,0,0.947384941,0,0,0,8,23,0% +8/2/2018 8:00,124.2960446,355.5962513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169375226,6.206325393,0.394187786,-0.394187786,0.462743608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605454664,127.2615662,0.605454664,52.73843377,0,0.967417434,0,0,0,8,0,0% +8/2/2018 9:00,123.4367342,12.78790147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154377429,0.223190985,0.820129794,-0.820129794,0.389903235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672346006,132.2483899,0.672346006,47.75161013,0,0.975633529,0,0,0,8,1,0% +8/2/2018 10:00,119.2271264,28.79040333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080905913,0.502487331,1.344595314,-1.344595314,0.300214349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683372718,133.1077646,0.683372718,46.89223538,0,0.976833485,0,0,0,8,2,0% +8/2/2018 11:00,112.303781,42.68647731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96007074,0.745019575,2.166001552,-2.166001552,0.159745609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637782011,129.6266277,0.637782011,50.37337226,0,0.971603308,0,0,0,8,3,0% +8/2/2018 12:00,103.4244121,54.46282891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805096519,0.950555684,4.036538958,-4.036538958,0,#DIV/0!,0,0,0.138031444,1,0.242847637,0,0.93292993,0.971691893,0.724496596,1,0,0,0.022163519,0.312029739,0.939070805,0.663567401,0.961238037,0.922476074,0,0,0,0,0,0,-0.538679407,122.5937855,0.538679407,57.40621446,0,0.957180413,0,0,0,8,4,0% +8/2/2018 13:00,93.22479119,64.58881942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627079551,1.127287559,17.66942369,-17.66942369,0,#DIV/0!,0,0,0.713589797,1,0.056534633,0,0.955869405,0.994631368,0.724496596,1,0,0,0.091136855,0.312029739,0.774258973,0.498755568,0.961238037,0.922476074,0,0,0,0,0,0,-0.3928178,113.1299452,0.3928178,66.87005483,0,0.922714526,0,0,0,8,5,0% +8/2/2018 14:00,82.05938623,73.66420818,65.07433485,246.1970714,31.06303957,30.61693214,0,30.61693214,30.12637431,0.490557824,67.98103085,51.2663397,16.71469114,0.936665253,15.77802589,1.432206472,1.285682974,-7.154623585,7.154623585,0.246333618,0.477347016,0.297324162,9.562967089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.9586169,0.678610788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.215410343,9.192287711,29.17402725,9.870898498,0,51.2663397,-0.208232939,102.018818,0.208232939,77.98118198,0,0.80988429,29.17402725,51.39070162,62.80821364,8,6,115% +8/2/2018 15:00,70.55527435,82.31192975,264.7105118,584.5475025,70.11621509,69.99745216,0,69.99745216,68.00195251,1.995499652,67.62554418,1.329153308,66.29639087,2.114262586,64.18212829,1.231421842,1.436614188,-2.767448119,2.767448119,0.996584809,0.264878847,1.990489792,64.02099398,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.36606333,1.531776047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.442103079,61.53941457,66.80816641,63.07119062,0,1.329153308,-0.002273816,90.13028016,0.002273816,89.86971984,0,0,66.80816641,63.07119062,108.0869992,8,7,62% +8/2/2018 16:00,58.76689485,91.24354938,474.858887,738.1050853,92.13579157,251.3887976,158.4515532,92.93724438,89.35755751,3.579686872,117.9132689,0,117.9132689,2.778234061,115.1350349,1.025675806,1.592500358,-1.536990375,1.536990375,0.792994524,0.194027729,2.982449502,95.9258281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89388316,2.012821119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.160774512,92.20755469,88.05465767,94.22037581,158.4515532,0,0.214673434,77.6036309,-0.214673434,102.3963691,0.817088088,0,217.5235343,94.22037581,279.1888858,8,8,28% +8/2/2018 17:00,47.02220136,101.4870899,663.7238767,816.6310208,107.0143267,457.670783,348.8799022,108.7908808,103.7874499,5.003430941,164.154415,0,164.154415,3.22687679,160.9275382,0.820692235,1.771283867,-0.915181579,0.915181579,0.686658957,0.161233203,3.688428906,118.6325525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76444457,2.337861249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.672254186,114.0341219,102.4366988,116.3719831,348.8799022,0,0.427218528,64.70883002,-0.427218528,115.29117,0.932963877,0,427.929045,116.3719831,504.0921806,8,9,18% +8/2/2018 18:00,35.78387472,114.9462265,814.8052383,859.7339625,117.3646169,653.6555468,533.68756,119.9679868,113.8256407,6.142346061,201.0979397,0,201.0979397,3.53897623,197.5589635,0.624546433,2.006190116,-0.510157154,0.510157154,0.617395701,0.144040086,4.130764932,132.8595996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4135354,2.563976231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.992725132,127.7097007,112.4062605,130.273677,533.68756,0,0.62075896,51.62842108,-0.62075896,128.3715789,0.969453438,0,629.7915004,130.273677,715.0530165,8,10,14% +8/2/2018 19:00,26.07954805,135.6650697,916.5931722,882.5921394,123.8625428,817.2766179,690.2393213,127.0372967,120.1276302,6.909666502,225.9735392,0,225.9735392,3.734912671,222.2386265,0.455173981,2.367802147,-0.20168861,0.20168861,0.564644473,0.135133608,4.308008721,138.5603692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4712474,2.705931516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121137654,133.1894972,118.5923851,135.8954288,690.2393213,0,0.782059221,38.55049564,-0.782059221,141.4495044,0.986066223,0,799.2140654,135.8954288,888.1549056,8,11,11% +8/2/2018 20:00,20.5071369,169.5883014,961.6602286,891.5081974,126.6481901,932.5258348,802.4471539,130.0786809,122.8292799,7.24940101,236.9845664,0,236.9845664,3.818910213,233.1656561,0.357917059,2.959874232,0.062300657,-0.062300657,0.51949965,0.13169744,4.22480821,135.8843547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0681758,2.766787449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.060859166,130.6172104,121.129035,133.3839978,802.4471539,0,0.900100702,25.82869283,-0.900100702,154.1713072,0.99445066,0,919.1231368,133.3839978,1006.420296,8,12,9% +8/2/2018 21:00,22.49371759,208.9097032,946.7601098,888.6333277,125.7326837,988.2279427,859.1494857,129.078457,121.9413793,7.137077621,233.3442542,0,233.3442542,3.791304316,229.5529498,0.392589433,3.646162161,0.312085473,-0.312085473,0.476783931,0.132803106,3.898761756,125.39758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2146921,2.746787071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824639621,120.5369236,120.0393317,123.2837107,859.1494857,0,0.966821139,14.80050466,-0.966821139,165.1994953,0.998284126,0,977.7146253,123.2837107,1058.401348,8,13,8% +8/2/2018 22:00,30.58025074,235.7727213,872.9420123,873.2871884,121.1138442,977.821961,853.7795405,124.0424205,117.4618149,6.580605621,215.3069267,0,215.3069267,3.652029264,211.6548975,0.533726062,4.115010273,0.572808363,-0.572808363,0.43219769,0.138742141,3.362530214,108.1505303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9087644,2.64588277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436141694,103.9584034,115.3449061,106.6042862,853.7795405,0,0.977661818,12.13314304,-0.977661818,167.866857,0.998857571,0,968.1490641,106.6042862,1037.919437,8,14,7% +8/2/2018 23:00,41.2441914,252.1906015,745.5123947,841.5562081,112.7406876,899.190379,784.2292517,114.9611273,109.3411399,5.619987337,184.1576591,0,184.1576591,3.399547701,180.7581113,0.719846937,4.401556339,0.876156367,-0.876156367,0.380322127,0.151225772,2.664061658,85.68538056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1028627,2.462960737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.930103602,82.364047,107.0329663,84.82700774,784.2292517,0,0.931879825,21.27023264,-0.931879825,158.7297674,0.996345013,0,888.3958702,84.82700774,943.9134502,8,15,6% +8/2/2018 0:00,52.81935777,263.7225945,573.8888369,783.6794971,100.287832,754.0856442,652.4956438,101.5900004,97.26378389,4.326216465,142.1700409,0,142.1700409,3.024048159,139.1459928,0.921871702,4.602827586,1.280743836,-1.280743836,0.311133594,0.17475132,1.866822575,60.04343118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49364868,2.190912597,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352506601,57.71602992,94.84615528,59.90694251,652.4956438,0,0.832605225,33.63270489,-0.832605225,146.3672951,0.98994753,0,740.7826064,59.90694251,779.9905022,8,16,5% +8/2/2018 1:00,64.64042691,273.1462257,371.7573725,675.5606564,82.41633165,546.6089638,463.8753245,82.73363927,79.93117516,2.802464105,92.62203551,0,92.62203551,2.485156483,90.13687903,1.128188279,4.767300977,1.940003868,-1.940003868,0.198393489,0.221693873,1.054020036,33.90090753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.8328859,1.800487412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763633928,32.5868418,77.59651982,34.38732922,463.8753245,0,0.686652368,46.63430451,-0.686652368,133.3656955,0.97718295,0,530.8875777,34.38732922,553.393397,8,17,4% +8/2/2018 2:00,76.34695829,281.8274862,160.1775524,449.9011168,53.98207955,280.3971494,226.8353426,53.56180672,52.35432068,1.207486049,40.46466091,0,40.46466091,1.627758871,38.83690204,1.332505796,4.918817557,3.497818687,-3.497818687,0,0.337014012,0.406939718,13.08858017,0.063677895,1,0.278464381,0,0.927672789,0.966434752,0.724496596,1,50.46780979,1.179305761,0.010572829,0.312029739,0.970455258,0.694951854,0.961238037,0.922476074,0.289942649,12.58124111,50.75775244,13.76054687,212.3909456,0,0.50418933,59.72244694,-0.50418933,120.2775531,0.950830904,0,252.7056273,13.76054687,261.71163,8,18,4% +8/2/2018 3:00,87.51814349,290.5959232,5.204189367,25.79622088,4.087135024,11.74585589,7.742731689,4.003124201,3.963892823,0.039231378,1.385058165,0,1.385058165,0.123242201,1.261815964,1.527479759,5.071855652,17.51853123,-17.51853123,0,0.785354785,0.03081055,0.990973206,0.711457303,1,0.057020533,0,0.955819956,0.99458192,0.724496596,1,3.833101951,0.089288555,0.090933859,0.312029739,0.774688439,0.499185035,0.961238037,0.922476074,0.021419308,0.952561139,3.854521259,1.041849694,2.234108687,0,0.300149845,72.53339664,-0.300149845,107.4666034,0.883416539,0,5.828169822,1.041849694,6.51003961,8,19,12% +8/2/2018 4:00,98.49284296,300.1037208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719024399,5.237798026,-4.295376614,4.295376614,0.735293648,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.078186775,85.51565092,-0.078186775,94.48434908,0,0,0,0,0,8,20,0% +8/2/2018 5:00,108.1418557,310.9669144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88743144,5.427396521,-1.481156903,1.481156903,0.783446438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134856876,97.75034379,0.134856876,82.24965621,0,0.679236554,0,0,0,8,21,0% +8/2/2018 6:00,116.1848193,323.7561244,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027807638,5.650610345,-0.56885951,0.56885951,0.627434395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.328802638,109.1961166,0.328802638,70.8038834,0,0.897933093,0,0,0,8,22,0% +8/2/2018 7:00,121.9061155,338.7727529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127663094,5.912699955,-0.034401052,0.034401052,0.536036616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.490436158,119.369253,0.490436158,60.63074702,0,0.948049931,0,0,0,8,23,0% +8/3/2018 8:00,124.5558256,355.5984761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173909259,6.206364223,0.390427999,-0.390427999,0.46338657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608743878,127.4987325,0.608743878,52.50126752,0,0.96786365,0,0,0,8,0,0% +8/3/2018 9:00,123.6882548,12.86690495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.158767292,0.224569856,0.814089874,-0.814089874,0.390936122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675663639,132.5057068,0.675663639,47.49429323,0,0.975998682,0,0,0,8,1,0% +8/3/2018 10:00,119.4576014,28.92894614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084928462,0.504905359,1.334809342,-1.334809342,0.301887848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686634304,133.3642718,0.686634304,46.63572816,0,0.977181034,0,0,0,8,2,0% +8/3/2018 11:00,112.5080422,42.86118699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963635771,0.748068834,2.147565678,-2.147565678,0.162898329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640906983,129.8594842,0.640906983,50.14051578,0,0.971985559,0,0,0,8,3,0% +8/3/2018 12:00,103.603599,54.65745648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808223919,0.953952576,3.985096244,-3.985096244,0,#DIV/0!,0,0,0.131445255,1,0.24585844,0,0.932495934,0.971257898,0.724496596,1,0,0,0.021167801,0.312029739,0.941725582,0.666222177,0.961238037,0.922476074,0,0,0,0,0,0,-0.541596639,122.7923953,0.541596639,57.20760472,0,0.957680372,0,0,0,8,4,0% +8/3/2018 13:00,93.38312697,64.7964254,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629843031,1.130910967,16.8463439,-16.8463439,0,#DIV/0!,0,0,0.701558532,1,0.059290487,0,0.955588209,0.994350172,0.724496596,1,0,0,0.08998747,0.312029739,0.776695011,0.501191607,0.961238037,0.922476074,0,0,0,0,0,0,-0.395470507,113.2953216,0.395470507,66.70467838,0,0.923568322,0,0,0,8,5,0% +8/3/2018 14:00,82.20040546,73.88472499,62.97165958,240.1574254,30.38024088,29.93887149,0,29.93887149,29.46416452,0.474706969,66.75018658,50.5659023,16.18428428,0.916076354,15.26820793,1.434667722,1.289531718,-7.283788311,7.283788311,0.224245149,0.482443072,0.284113404,9.138063705,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.32207567,0.6636942,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205839194,8.783854416,28.52791486,9.447548616,0,50.5659023,-0.210553149,102.1547702,0.210553149,77.84522982,0,0.812530268,28.52791486,50.53387476,61.60132521,8,6,116% +8/3/2018 15:00,70.68809893,82.55010484,262.292304,582.0560395,69.80030371,69.6728372,0,69.6728372,67.69556702,1.97727018,68.20165034,2.501107819,65.70054252,2.104736692,63.59580583,1.233740068,1.440771127,-2.78546731,2.78546731,0.993503346,0.266116476,1.967842977,63.29259455,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.07155394,1.524874569,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.425695538,60.83924933,66.49724948,62.3641239,0,2.501107819,-0.004297022,90.246202,0.004297022,89.753798,0,0,66.49724948,62.3641239,107.3133213,8,7,61% +8/3/2018 16:00,58.89718816,91.50827625,472.6225399,736.9346043,91.94028857,249.670567,156.939789,92.73077799,89.16794964,3.562828342,117.3651456,0,117.3651456,2.772338924,114.5928066,1.027949854,1.597120713,-1.542111937,1.542111937,0.793870362,0.194532171,2.971289132,95.56687222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.71162487,2.008550113,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152688861,91.86251264,87.86431373,93.87106276,156.939789,0,0.212962979,77.70395283,-0.212962979,102.2960472,0.815217409,0,215.8043619,93.87106276,277.2410951,8,8,28% +8/3/2018 17:00,47.15918565,101.7912901,661.6867509,815.9543304,106.8673434,456.0636468,347.4306739,108.6329729,103.6448987,4.988074226,163.6560582,0,163.6560582,3.222444701,160.4336135,0.823083062,1.776593162,-0.916576554,0.916576554,0.686897512,0.161507455,3.678534638,118.3143189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.62741893,2.334650217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.665085823,113.7282236,102.2925048,116.0628738,347.4306739,0,0.425796716,64.79889667,-0.425796716,115.2011033,0.932573073,0,426.2969959,116.0628738,502.2578255,8,9,18% +8/3/2018 18:00,35.94215065,115.3021064,812.9130911,859.2684448,117.2407259,652.2190115,532.3854438,119.8335677,113.7054854,6.128082257,200.635431,0,200.635431,3.535240458,197.1001905,0.627308869,2.01240139,-0.50994294,0.50994294,0.617359068,0.144222952,4.121409079,132.5586832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2980376,2.561269677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.985946848,127.4204484,112.2839844,129.9817181,532.3854438,0,0.619579885,51.7145381,-0.619579885,128.2854619,0.969300156,0,628.3252782,129.9817181,713.3957131,8,10,14% +8/3/2018 19:00,26.28178426,136.042502,914.7683414,882.2168523,123.7486727,815.9771605,689.0640567,126.9131038,120.0171936,6.895910157,225.5276543,0,225.5276543,3.731479065,221.7961752,0.458703669,2.374389583,-0.200526186,0.200526186,0.564445687,0.135278701,4.298682196,138.2603961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3650916,2.70344388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114380618,132.9011517,118.4794722,135.6045956,689.0640567,0,0.78105973,38.64229403,-0.78105973,141.357706,0.985984409,0,797.8858892,135.6045956,886.6363849,8,11,11% +8/3/2018 20:00,20.76279115,169.753225,959.8161777,891.1561737,126.5351688,931.2872511,801.3320848,129.9551663,122.7196666,7.235499775,236.5340468,0,236.5340468,3.815502204,232.7185446,0.362379068,2.962752692,0.064225056,-0.064225056,0.519170558,0.131832711,4.215109906,135.5724239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9628114,2.764318358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053832778,130.3173706,121.0166442,133.081689,801.3320848,0,0.899204997,25.94623635,-0.899204997,154.0537636,0.994395327,0,917.8575245,133.081689,1004.956828,8,12,9% +8/3/2018 21:00,22.74148466,208.6851907,944.8103159,888.2519185,125.6124918,986.9506422,858.0034512,128.947191,121.8248117,7.12237925,232.8678798,0,232.8678798,3.787680089,229.0801997,0.396913784,3.642243679,0.314828403,-0.314828403,0.476314862,0.132949958,3.888383032,125.0637645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1026429,2.74416133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81712027,120.2160475,119.9197631,122.9602088,858.0034512,0,0.965946071,14.99551759,-0.965946071,165.0044824,0.998237276,0,976.410791,122.9602088,1056.885788,8,13,8% +8/3/2018 22:00,30.78494509,235.4504207,870.807693,872.8140017,120.9780627,976.3918491,852.4972052,123.8946439,117.3301277,6.56451622,214.785342,0,214.785342,3.647934951,211.137407,0.537298652,4.109385066,0.576657796,-0.576657796,0.431539399,0.138926268,3.351274206,107.7884984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7821816,2.642916454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.427986754,103.6104046,115.2101684,106.253321,852.4972052,0,0.976722651,12.38655248,-0.976722651,167.6134475,0.998808395,0,966.6915338,106.253321,1036.232207,8,14,7% +8/3/2018 23:00,41.42130213,251.8966782,743.1302821,840.8871404,112.5783228,897.480192,782.694491,114.785701,109.183671,5.602029966,183.5751924,0,183.5751924,3.394651803,180.1805406,0.722938103,4.39642641,0.881796209,-0.881796209,0.379357657,0.151492041,2.651889123,85.29387002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9514976,2.459413675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.921284642,81.98771217,106.8727822,84.44712584,782.694491,0,0.930796124,21.44074187,-0.930796124,158.5592581,0.996282544,0,886.6576408,84.44712584,941.9265957,8,15,6% +8/3/2018 0:00,52.98481919,263.4663729,571.2215526,782.5932688,100.0795843,751.9428594,650.5749345,101.3679249,97.06181556,4.306109349,141.5170475,0,141.5170475,3.01776872,138.4992788,0.924759548,4.598355675,1.289848873,-1.289848873,0.309576541,0.175202745,1.853955018,59.62956632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29950904,2.186363165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3431841,57.31820727,94.64269314,59.50457043,650.5749345,0,0.831306581,33.76680968,-0.831306581,146.2331903,0.989853718,0,738.616711,59.50457043,777.5612622,8,16,5% +8/3/2018 1:00,64.80452001,272.9188293,368.8194252,673.4783025,82.11438506,543.8078389,461.3891889,82.41865,79.63833338,2.780316617,91.90059136,0,91.90059136,2.476051679,89.42453968,1.131052244,4.763332163,1.957747645,-1.957747645,0.195359125,0.222641161,1.041243318,33.48996436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55139524,1.793891013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754377239,32.1918276,77.30577248,33.98571861,461.3891889,0,0.68508397,46.75778876,-0.68508397,133.2422112,0.977016246,0,528.0905057,33.98571861,550.3334788,8,17,4% +8/3/2018 2:00,76.51639218,281.6206902,157.1826593,445.0084157,53.42131009,276.5323824,223.5370127,52.99536977,51.81046049,1.18490928,39.72160515,0,39.72160515,1.610849603,38.11075555,1.335462975,4.915208286,3.551385366,-3.551385366,0,0.339867708,0.402712401,12.95261512,0.071640549,1,0.274473472,0,0.928275152,0.967037115,0.724496596,1,49.95876432,1.167055054,0.011851751,0.312029739,0.966940637,0.691437233,0.961238037,0.922476074,0.286398769,12.45054633,50.24516309,13.61760139,207.5226985,0,0.502320866,59.8463336,-0.502320866,120.1536664,0.950462029,0,247.487608,13.61760139,256.4000558,8,18,4% +8/3/2018 3:00,87.68865551,290.4047881,4.380945858,21.83080321,3.500517622,9.936373779,6.508384258,3.427989521,3.3949641,0.03302542,1.167764566,0,1.167764566,0.105553522,1.062211044,1.530455755,5.068519715,18.86614394,-18.86614394,0,0.799032386,0.02638838,0.848741025,0.729447985,1,0.052955446,0,0.956231925,0.994993888,0.724496596,1,3.281976476,0.076473167,0.09263669,0.312029739,0.771096108,0.495592704,0.961238037,0.922476074,0.01838104,0.815842157,3.300357516,0.892315324,1.760856473,0,0.298128484,72.65476986,-0.298128484,107.3452301,0.882287075,0,4.853938423,0.892315324,5.437940957,8,19,12% +8/3/2018 4:00,98.69094077,299.9274068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722481858,5.234720766,-4.211428527,4.211428527,0.749649616,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075658151,85.66096096,-0.075658151,94.33903904,0,0,0,0,0,8,20,0% +8/3/2018 5:00,108.3600549,310.8102688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891239735,5.424662539,-1.469509702,1.469509702,0.781454649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137678076,97.91350873,0.137678076,82.08649127,0,0.686833973,0,0,0,8,21,0% +8/3/2018 6:00,116.4245784,323.6320852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031992224,5.648445452,-0.567079952,0.567079952,0.627130073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.331868684,109.3822363,0.331868684,70.61776366,0,0.899337999,0,0,0,8,22,0% +8/3/2018 7:00,122.1638393,338.7026258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132161224,5.911476006,-0.036004491,0.036004491,0.53631082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.493682561,119.5829144,0.493682561,60.41708564,0,0.948720344,0,0,0,8,23,0% +8/4/2018 8:00,124.8204907,355.603246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178528536,6.206447474,0.386708247,-0.386708247,0.464022685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612093811,127.7410536,0.612093811,52.25894643,0,0.968313175,0,0,0,8,0,0% +8/4/2018 9:00,123.9439408,12.95025333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163229854,0.22602456,0.808085067,-0.808085067,0.391963004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679033208,132.7681406,0.679033208,47.23185941,0,0.976365899,0,0,0,8,1,0% +8/4/2018 10:00,119.6913126,29.07282146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089007492,0.507416457,1.325074338,-1.325074338,0.303552632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689938313,133.625226,0.689938313,46.37477401,0,0.977529753,0,0,0,8,2,0% +8/4/2018 11:00,112.7146782,43.04144055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96724225,0.751214852,2.129271705,-2.129271705,0.166026783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644064787,130.0955925,0.644064787,49.90440746,0,0.972368058,0,0,0,8,3,0% +8/4/2018 12:00,103.7845103,54.85747806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811381417,0.957443611,3.934503734,-3.934503734,0,#DIV/0!,0,0,0.124869007,1,0.248891668,0,0.932056749,0.970818712,0.724496596,1,0,0,0.020167737,0.312029739,0.944399781,0.668896377,0.961238037,0.922476074,0,0,0,0,0,0,-0.544537694,122.9930769,0.544537694,57.00692307,0,0.958178992,0,0,0,8,4,0% +8/4/2018 13:00,93.5427652,65.00922763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632629244,1.134625066,16.0907626,-16.0907626,0,#DIV/0!,0,0,0.689588369,1,0.062067633,0,0.955303023,0.994064986,0.724496596,1,0,0,0.088833942,0.312029739,0.779150473,0.503647069,0.961238037,0.922476074,0,0,0,0,0,0,-0.39813923,113.4619042,0.39813923,66.53809581,0,0.924415792,0,0,0,8,5,0% +8/4/2018 14:00,82.3424418,74.11033844,60.87244789,234.0348256,29.68682087,29.25053591,0,29.25053591,28.79165369,0.458882225,65.47624474,49.82184781,15.65439693,0.895167182,14.75922975,1.437146723,1.293469416,-7.418518273,7.418518273,0.201204969,0.487688961,0.271093158,8.719287839,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.67563267,0.648545576,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19640607,8.381311125,27.87203874,9.029856701,0,49.82184781,-0.212882197,102.29131,0.212882197,77.70868996,0,0.815128316,27.87203874,49.64105562,60.36111682,8,6,117% +8/4/2018 15:00,70.82197439,82.79343218,259.8550262,579.5211029,69.47977651,69.34360185,0,69.34360185,67.3847049,1.958896951,68.76606576,3.666134538,65.09993122,2.095071615,63.0048596,1.236076636,1.445017991,-2.803782324,2.803782324,0.990371294,0.267378998,1.945078515,62.56041122,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.77274145,1.517872253,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.409202763,60.13544687,66.18194421,61.65331912,0,3.666134538,-0.006326145,90.36246383,0.006326145,89.63753617,0,0,66.18194421,61.65331912,106.5328085,8,7,61% +8/4/2018 16:00,59.02871059,91.77838387,470.3624671,735.7444616,91.74212171,247.9461152,155.424566,92.5215492,88.97575825,3.545790959,116.8111893,0,116.8111893,2.766363462,114.0448258,1.030245353,1.601834981,-1.547248653,1.547248653,0.794748793,0.195045583,2.959962943,95.20258307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.52688318,2.004220911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144483076,91.51234405,87.67136626,93.51656496,155.424566,0,0.211248027,77.80450015,-0.211248027,102.1954999,0.813311399,0,214.0799375,93.51656496,275.284659,8,8,29% +8/4/2018 17:00,47.29782374,102.1012299,659.6206087,815.2649694,106.7180292,454.4460617,345.9734761,108.4725856,103.5000868,4.972498773,163.1505957,0,163.1505957,3.217942326,159.9326534,0.825502753,1.782002632,-0.917934912,0.917934912,0.687129805,0.161786984,3.668451672,117.990016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.48822027,2.331388261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657780748,113.4164913,102.146001,115.7478796,345.9734761,0,0.424369363,64.88924729,-0.424369363,115.1107527,0.932178111,0,424.6549025,115.7478796,500.4095747,8,9,18% +8/4/2018 18:00,36.10283775,115.6639234,810.9848244,858.7923668,117.1143415,650.766608,531.0701499,119.6964582,113.582912,6.113546167,200.1640894,0,200.1640894,3.531429503,196.6326599,0.630113388,2.01871629,-0.509674718,0.509674718,0.6173132,0.144410028,4.11183061,132.2506067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1802154,2.558508653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97900728,127.1243136,112.1592227,129.6828223,531.0701499,0,0.618391791,51.80121059,-0.618391791,128.1987894,0.96914511,0,626.8432617,129.6828223,711.7180752,8,10,14% +8/4/2018 19:00,26.4875049,136.4249608,912.8987049,881.8311522,123.631916,814.6542314,687.8684578,126.7857736,119.9039575,6.881816048,225.0708186,0,225.0708186,3.72795842,221.3428602,0.462294171,2.381064747,-0.199298715,0.199298715,0.564235777,0.135427858,4.289094552,137.9520244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2562448,2.700893185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.107434402,132.6047332,118.3636792,135.3056263,687.8684578,0,0.780045541,38.73525476,-0.780045541,141.2647452,0.985901178,0,796.5340022,135.3056263,885.0888286,8,11,11% +8/4/2018 20:00,21.02290702,169.9227725,957.9175966,890.7926369,126.4187228,930.015458,800.1875386,129.8279193,122.6067319,7.221187469,236.0702026,0,236.0702026,3.811990928,232.2582117,0.366918946,2.965711855,0.066226748,-0.066226748,0.518828249,0.13197244,4.205111636,135.2508452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8542543,2.761774451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046589065,130.0082569,120.9008433,132.7700313,800.1875386,0,0.898287105,26.06617971,-0.898287105,153.9338203,0.994338509,0,916.558127,132.7700313,1003.453457,8,12,9% +8/4/2018 21:00,22.99481473,208.4661318,942.7959071,887.8565837,125.4882202,985.6286304,856.8171492,128.8114812,121.7042874,7.107193786,232.3757158,0,232.3757158,3.783932842,228.591783,0.401335228,3.638420379,0.317666579,-0.317666579,0.475829505,0.133102212,3.87766899,124.7191641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9867903,2.741446463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.809357983,119.8848045,119.7961483,122.6262509,856.8171492,0,0.965040036,15.19485474,-0.965040036,164.8051453,0.998188678,0,975.0613257,122.6262509,1055.317754,8,13,8% +8/4/2018 22:00,30.99549179,235.1291893,868.5990621,872.3224759,120.8374117,974.9041795,851.1625949,123.7415845,117.1937179,6.547866628,214.2455927,0,214.2455927,3.643693806,210.6018989,0.540973385,4.10377852,0.580632466,-0.580632466,0.43085969,0.139117594,3.339655041,107.4147861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6510593,2.639843759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419568709,103.2511781,115.070628,105.8910219,851.1625949,0,0.975743052,12.64554432,-0.975743052,167.3544557,0.998757001,0,965.1752289,105.8910219,1034.478785,8,14,7% +8/4/2018 23:00,41.6039332,251.6014995,740.6653582,840.1914955,112.4100569,895.6984589,781.0945316,114.6039273,109.020479,5.583448328,182.9724692,0,182.9724692,3.389577965,179.5828912,0.726125616,4.391274569,0.88761746,-0.88761746,0.378362164,0.151769022,2.639338071,84.89018502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7946312,2.455737697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912191448,81.5996748,106.7068226,84.0554125,781.0945316,0,0.929662506,21.6177331,-0.929662506,158.3822669,0.996217042,0,884.846506,84.0554125,939.8590924,8,15,6% +8/4/2018 0:00,53.15545968,263.2081632,568.4651475,781.4634596,99.86379872,749.7128233,648.5749562,101.1378671,96.85253673,4.285330402,140.8422185,0,140.8422185,3.01126199,137.8309565,0.927737787,4.593849065,1.299259356,-1.299259356,0.307967254,0.175672685,1.840714413,59.20370293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09834227,2.181649061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333591326,56.90885118,94.4319336,59.09050024,648.5749562,0,0.829949178,33.90648225,-0.829949178,146.0935177,0.989755347,0,736.3624646,59.09050024,775.0360152,8,16,5% +8/4/2018 1:00,64.97356113,272.6892644,365.7902574,671.310797,81.80133569,540.8990819,458.8068768,82.09220507,79.3347236,2.757481471,91.15669497,0,91.15669497,2.466612086,88.69008289,1.134002569,4.759325499,1.976163056,-1.976163056,0.192209904,0.223629072,1.028141452,33.0685633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25955397,1.787052059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744884982,31.78676087,77.00443895,33.57381293,458.8068768,0,0.683449274,46.88622695,-0.683449274,133.113773,0.976841681,0,525.1861198,33.57381293,547.1595089,8,17,4% +8/4/2018 2:00,76.69062744,281.4117285,154.1094822,439.9102682,52.8382106,272.5293251,220.1226391,52.40668597,51.2449436,1.161742373,38.95889517,0,38.95889517,1.593267002,37.36562817,1.338503954,4.911561217,3.607686596,-3.607686596,0,0.342861515,0.39831675,12.8112359,0.079865006,1,0.270397324,0,0.92888694,0.967648903,0.724496596,1,49.42847325,1.154316519,0.013163,0.312029739,0.963350468,0.687847064,0.961238037,0.922476074,0.282745203,12.31464725,49.71121845,13.46896376,202.5425431,0,0.500380771,59.9748052,-0.500380771,120.0251948,0.950076096,0,242.1420472,13.46896376,250.9572146,8,18,4% +8/4/2018 3:00,87.86283532,290.2115728,3.623307191,18.15722125,2.946189705,8.260115795,5.37545056,2.884665235,2.857351215,0.02731402,0.967351267,0,0.967351267,0.08883849,0.878512778,1.533495766,5.065147472,20.4638062,-20.4638062,0,0.813121701,0.022209622,0.714337804,0.748070426,1,0.048827923,0,0.95664621,0.995408173,0.724496596,1,2.761377058,0.064363184,0.094376325,0.312029739,0.76745015,0.491946745,0.961238037,0.922476074,0.015503265,0.686648668,2.776880323,0.751011852,1.354234971,0,0.296050287,72.77947215,-0.296050287,107.2205279,0.881109774,0,3.970109991,0.751011852,4.461632228,8,19,12% +8/4/2018 4:00,98.89392387,299.7491925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726024582,5.231610339,-4.128994863,4.128994863,0.763746603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073052203,85.81068531,-0.073052203,94.18931469,0,0,0,0,0,8,20,0% +8/4/2018 5:00,108.583259,310.6520953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895135382,5.421901892,-1.457745431,1.457745431,0.77944284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.140575357,98.08114105,0.140575357,81.91885895,0,0.694318884,0,0,0,8,21,0% +8/4/2018 6:00,116.6694664,323.5072827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036266325,5.646267237,-0.565209509,0.565209509,0.626810208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335007137,109.5729719,0.335007137,70.42702807,0,0.900749448,0,0,0,8,22,0% +8/4/2018 7:00,122.4266903,338.6331259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136748837,5.910263002,-0.037549517,0.037549517,0.536575035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496995518,119.8014233,0.496995518,60.19857666,0,0.949395471,0,0,0,8,23,0% +8/5/2018 8:00,125.0899597,355.6105878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183231658,6.206575612,0.3830301,-0.3830301,0.464651685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615502671,127.9884544,0.615502671,52.01154565,0,0.968765584,0,0,0,8,0,0% +8/5/2018 9:00,124.2037057,13.03797847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167763607,0.227555652,0.80211823,-0.80211823,0.392983394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682452829,133.0356144,0.682452829,46.96438563,0,0.976734863,0,0,0,8,1,0% +8/5/2018 10:00,119.9281711,29.22204383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093141452,0.510020879,1.315394785,-1.315394785,0.305207933,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693282859,133.8905407,0.693282859,46.10945927,0,0.977879365,0,0,0,8,2,0% +8/5/2018 11:00,112.9236059,43.22722457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970888725,0.754457395,2.111126606,-2.111126606,0.169129777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647253629,130.3348559,0.647253629,49.66514413,0,0.97275053,0,0,0,8,3,0% +8/5/2018 12:00,103.9670751,55.06285571,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814567775,0.961028128,3.884762124,-3.884762124,0,#DIV/0!,0,0,0.118305549,1,0.251946175,0,0.931612502,0.970374466,0.724496596,1,0,0,0.019163739,0.312029739,0.947092392,0.671588988,0.961238037,0.922476074,0,0,0,0,0,0,-0.547500957,123.1957366,0.547500957,56.80426344,0,0.958675959,0,0,0,8,4,0% +8/5/2018 13:00,93.70365011,65.22717008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635437216,1.13842888,15.39496247,-15.39496247,0,#DIV/0!,0,0,0.677683441,1,0.064865186,0,0.955013899,0.993775862,0.724496596,1,0,0,0.087676702,0.312029739,0.781624552,0.506121148,0.961238037,0.922476074,0,0,0,0,0,0,-0.400822607,113.6296137,0.400822607,66.37038632,0,0.925256537,0,0,0,8,5,0% +8/5/2018 14:00,82.48545228,74.34097782,58.77841448,227.8323489,28.98297346,28.55212639,0,28.55212639,28.10902988,0.443096516,64.15929589,49.0338452,15.12545069,0.873943586,14.2515071,1.439642727,1.297494832,-7.55913207,7.55913207,0.177158593,0.493088725,0.258277598,8.307095373,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.0194687,0.633169153,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.18712124,7.985096048,27.20658994,8.618265201,0,49.0338452,-0.215218978,102.4283746,0.215218978,77.57162545,0,0.81767848,27.20658994,48.71218521,59.08774091,8,6,117% +8/5/2018 15:00,70.95687668,83.04182559,257.3991731,576.942295,69.15461356,69.0097305,0,69.0097305,67.06934681,1.940383692,69.31818838,4.823512056,64.49467633,2.085266752,62.40940957,1.238431125,1.449353273,-2.82239595,2.82239595,0.987188177,0.268666805,1.922202857,61.8246514,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.46960726,1.510768663,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.392629426,59.42820654,65.86223668,60.93897521,0,4.823512056,-0.008360476,90.47902555,0.008360476,89.52097445,0,0,65.86223668,60.93897521,105.7455772,8,7,61% +8/5/2018 16:00,59.16145348,92.05376403,468.0787631,734.5344089,91.54127462,246.2157481,153.9062052,92.30954287,88.78096744,3.528575434,116.2514225,0,116.2514225,2.760307181,113.4911153,1.032562154,1.606641271,-1.552399495,1.552399495,0.795629639,0.195568101,2.948470441,94.83294468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.33964285,1.999833156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136156797,91.15703357,87.47579965,93.15686673,153.9062052,0,0.209528925,77.9052525,-0.209528925,102.0947475,0.811369463,0,212.3505947,93.15686673,273.3199008,8,8,29% +8/5/2018 17:00,47.43812061,102.4167624,657.5252314,814.5627144,106.5663563,452.8179718,344.5082814,108.3096904,103.3529875,4.956702934,162.6379737,0,162.6379737,3.213368832,159.4246049,0.827951396,1.787509714,-0.919255977,0.919255977,0.68735572,0.162071889,3.658178461,117.6595942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.34682282,2.32807478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.650337842,113.0988774,101.9971607,115.4269521,344.5082814,0,0.422936473,64.9798814,-0.422936473,115.0201186,0.931778936,0,423.0027204,115.4269521,498.547352,8,9,18% +8/5/2018 18:00,36.265948,116.0314558,809.0199796,858.3055104,116.9854257,649.2979463,529.7413285,119.5566178,113.4578835,6.098734338,199.6838028,0,199.6838028,3.527542215,196.1562606,0.632960199,2.02513094,-0.509352143,0.509352143,0.617258036,0.144601405,4.102027389,131.9353014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0600332,2.555692327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971904879,126.8212302,112.0319381,129.3769225,529.7413285,0,0.61719437,51.88845929,-0.61719437,128.1115407,0.968988243,0,625.3450575,129.3769225,710.0196657,8,10,14% +8/5/2018 19:00,26.69670486,136.8121127,910.9836513,881.4348192,123.5122274,813.3071627,686.6519051,126.6552576,119.787878,6.867379564,224.6028826,0,224.6028826,3.724349368,220.8785333,0.465945399,2.387821823,-0.198006035,0.198006035,0.564014716,0.135581168,4.279243513,137.6351812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1446647,2.698278439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.100297358,132.3001713,118.2449621,134.9984498,686.6519051,0,0.779016088,38.82942254,-0.779016088,141.1705775,0.985816473,0,795.1577215,134.9984498,883.5115069,8,11,11% +8/5/2018 20:00,21.28742398,170.0966463,955.9638177,890.4173568,126.2988035,928.7095903,799.0127027,129.6968877,122.4904286,7.206459059,235.5928703,0,235.5928703,3.808374919,231.7844954,0.371535638,2.968746525,0.068305837,-0.068305837,0.518472703,0.132116719,4.19481143,134.9195552,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7424591,2.759154665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.039126602,129.6898083,120.7815857,132.448963,799.0127027,0,0.89734628,26.18858927,-0.89734628,153.8114107,0.99428015,0,915.2240557,132.448963,1001.909253,8,12,9% +8/5/2018 21:00,23.25361841,208.2525667,940.716261,887.447068,125.3598205,984.260941,855.5896651,128.6712759,121.5797594,7.091516536,231.8676098,0,231.8676098,3.780061116,228.0875487,0.405852204,3.634692965,0.320600176,-0.320600176,0.475327831,0.13325997,3.866618387,124.3637387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8670892,2.738641411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801351859,119.5431561,119.6684411,122.2817975,855.5896651,0,0.964102194,15.39853505,-0.964102194,164.601465,0.998138278,0,973.6652361,122.2817975,1053.696227,8,13,8% +8/5/2018 22:00,31.21183304,234.809255,866.3156418,871.8123011,120.6918453,973.3579846,849.7747905,123.5831941,117.0525409,6.530653241,213.6875617,0,213.6875617,3.639304442,210.0482572,0.544749252,4.098194613,0.58473285,-0.58473285,0.430158483,0.139316249,3.327672583,107.0293891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5153546,2.636663679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410887458,102.8807198,114.9262421,105.5173835,849.7747905,0,0.974722184,12.91000782,-0.974722184,167.0899922,0.998703332,0,963.599157,105.5173835,1032.658174,8,14,7% +8/5/2018 23:00,41.79204645,251.3052563,738.1173826,839.4688385,112.235845,893.8442994,779.4285385,114.4157608,108.8515202,5.564240612,182.3494299,0,182.3494299,3.384324834,178.965105,0.729408812,4.386104149,0.893621501,-0.893621501,0.377335413,0.152056905,2.626409835,84.4743685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6322216,2.451931822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.902824984,81.19997614,106.5350466,83.65190797,779.4285385,0,0.928478227,21.80117256,-0.928478227,158.1988274,0.996148441,0,882.9615701,83.65190797,937.7100708,8,15,6% +8/5/2018 0:00,53.33124387,262.948105,565.619708,780.2893091,99.64041849,747.3947865,646.495014,100.8997725,96.63589224,4.263880278,140.145573,0,140.145573,3.004526251,137.1410467,0.9308058,4.589310194,1.308979615,-1.308979615,0.306304992,0.176161504,1.82710403,58.76594622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.89009535,2.176769041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32373065,56.48806278,94.21382599,58.66483182,646.495014,0,0.828532451,34.05172091,-0.828532451,145.9482791,0.989652334,0,734.0191253,58.66483182,772.4140844,8,16,5% +8/5/2018 1:00,65.14751024,272.4576347,362.6704154,669.0563325,81.47705238,537.88198,456.1277986,81.75418142,79.02021864,2.733962784,90.39047481,0,90.39047481,2.456833748,87.93364106,1.137038553,4.755282797,1.995267752,-1.995267752,0.188942808,0.224658668,1.014720776,32.63690824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95723983,1.779967687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.735161748,31.37183761,76.69240158,33.1518053,456.1277986,0,0.681747973,47.01961271,-0.681747973,132.9803873,0.976659115,0,522.1737735,33.1518053,543.870967,8,17,4% +8/5/2018 2:00,76.86961476,281.2006798,150.9597774,434.6016069,52.23228777,268.3872931,216.5920029,51.79529015,50.65729158,1.137998567,38.17694196,0,38.17694196,1.574996193,36.60194577,1.341627872,4.907877722,3.666872363,-3.666872363,0,0.346001357,0.393749048,12.6643229,0.088355173,1,0.266237809,0,0.929507646,0.968269609,0.724496596,1,48.87642381,1.14107938,0.014506357,0.312029739,0.959686341,0.684182937,0.961238037,0.922476074,0.278981079,12.17342888,49.15540489,13.31450826,197.4549792,0,0.49836908,60.10784227,-0.49836908,119.8921577,0.949672749,0,236.6730177,13.31450826,245.387097,8,18,4% +8/5/2018 3:00,88.04047834,290.0163366,2.936533967,14.80920946,2.430156179,6.731709296,4.352694459,2.379014837,2.356878004,0.022136833,0.785274834,0,0.785274834,0.073278175,0.711996658,1.536596222,5.061739958,22.38480032,-22.38480032,0,0.827559363,0.018319544,0.589219501,0.767326748,1,0.044643488,0,0.957062074,0.995824037,0.724496596,1,2.276934932,0.053089788,0.096151053,0.312029739,0.763755663,0.488252259,0.961238037,0.922476074,0.012817331,0.566380196,2.289752263,0.619469985,1.012755576,0,0.293918083,72.90732775,-0.293918083,107.0926722,0.879884574,0,3.180860272,0.619469985,3.586290987,8,19,13% +8/5/2018 4:00,99.10172856,299.56912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729651458,5.228467481,-4.048127561,4.048127561,0.777575726,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.070369638,85.96478171,-0.070369638,94.03521829,0,0,0,0,0,8,20,0% +8/5/2018 5:00,108.8113974,310.4924208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899117149,5.419115045,-1.445880042,1.445880042,0.777413739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14354766,98.25318642,0.14354766,81.74681358,0,0.701683628,0,0,0,8,21,0% +8/5/2018 6:00,116.9194082,323.3817325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040628633,5.644075973,-0.563251805,0.563251805,0.626475421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338216621,109.7682582,0.338216621,70.23174181,0,0.902165752,0,0,0,8,22,0% +8/5/2018 7:00,122.6945902,338.5642695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141424574,5.909061233,-0.039036218,0.039036218,0.536829276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500373397,120.0247068,0.500373397,59.97529319,0,0.950074624,0,0,0,8,23,0% +8/6/2018 8:00,125.3641501,355.6205311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188017184,6.206749156,0.379395091,-0.379395091,0.465273308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618968642,128.2408583,0.618968642,51.75914168,0,0.969220464,0,0,0,8,0,0% +8/6/2018 9:00,124.4674601,13.13011505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172366991,0.229163739,0.796192152,-0.796192152,0.393996813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685920587,133.3080491,0.685920587,46.69195087,0,0.977105264,0,0,0,8,1,0% +8/6/2018 10:00,120.1680847,29.37662932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097328733,0.512718905,1.305775034,-1.305775034,0.306853007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696666021,134.1601267,0.696666021,45.8398733,0,0.978229599,0,0,0,8,2,0% +8/6/2018 11:00,113.1347387,43.4185259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974573688,0.757796233,2.093137059,-2.093137059,0.172206171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650471676,130.5771737,0.650471676,49.42282635,0,0.973132702,0,0,0,8,3,0% +8/6/2018 12:00,104.1512194,55.2735511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817781699,0.964705456,3.835871294,-3.835871294,0,#DIV/0!,0,0,0.1117577,1,0.25502078,0,0.931163329,0.969925293,0.724496596,1,0,0,0.018156228,0.312029739,0.949802374,0.67429897,0.961238037,0.922476074,0,0,0,0,0,0,-0.55048477,123.4002766,0.55048477,56.59972339,0,0.959170966,0,0,0,8,4,0% +8/6/2018 13:00,93.86572306,65.45019601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638265922,1.142321416,14.75235908,-14.75235908,0,#DIV/0!,0,0,0.665847804,1,0.067682231,0,0.954720894,0.993482857,0.724496596,1,0,0,0.086516185,0.312029739,0.784116405,0.508613001,0.961238037,0.922476074,0,0,0,0,0,0,-0.40351923,113.7983677,0.40351923,66.20163232,0,0.926090168,0,0,0,8,5,0% +8/6/2018 14:00,82.62939103,74.57657168,56.69134964,221.5535421,28.26893656,27.84388717,0,27.84388717,27.41652383,0.42736334,62.79959357,48.20170676,14.59788681,0.852412739,13.74547407,1.442154932,1.301606721,-7.705971336,7.705971336,0.1520476,0.498646385,0.245680927,7.901943137,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.35380554,0.617570127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177994995,7.595648308,26.53180053,8.213218436,0,48.20170676,-0.217562339,102.5658976,0.217562339,77.43410236,0,0.820180812,26.53180053,47.74733343,57.78147532,8,6,118% +8/6/2018 15:00,71.09277903,83.29519812,254.9252924,574.3192668,68.82480092,68.67121377,0,68.67121377,66.74947924,1.921734535,69.85740596,5.97249571,63.88491025,2.075321684,61.80958857,1.240803068,1.453775458,-2.841310644,2.841310644,0.983953574,0.269980276,1.899222937,61.0855382,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.16213838,1.503563496,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.375980553,58.71774282,65.53811893,60.22130632,0,5.97249571,-0.010399261,90.59584448,0.010399261,89.40415552,0,0,65.53811893,60.22130632,104.9517595,8,7,60% +8/6/2018 16:00,59.29540532,92.33430781,465.7715727,733.3042181,91.33773482,244.4798123,152.3850644,92.09474797,88.58356511,3.511182858,115.68588,0,115.68588,2.754169705,112.9317103,1.034900054,1.611537684,-1.55756327,1.55756327,0.796512696,0.196099848,2.936811366,94.45794876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14989223,1.995386576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.127709838,90.79657323,87.27760206,92.79195981,152.3850644,0,0.207806065,78.00618702,-0.207806065,101.993813,0.809391046,0,210.6167087,92.79195981,271.3471906,8,8,29% +8/6/2018 17:00,47.58007813,102.7377403,655.4004457,813.8473528,106.4123002,451.1793633,343.0351012,108.1442621,103.2035767,4.940685402,162.1181495,0,162.1181495,3.208723471,158.909426,0.830429022,1.793111834,-0.920538994,0.920538994,0.687575129,0.162362264,3.647713656,117.3230101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.20320349,2.324709232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642756127,112.7753399,101.8459596,115.1000492,343.0351012,0,0.421498086,65.07079592,-0.421498086,114.9292041,0.931375499,0,421.3404482,115.1000492,496.6711284,8,9,18% +8/6/2018 18:00,36.43148966,116.4044829,807.0181383,857.8076628,116.8539426,647.8126749,528.3986663,119.4140087,113.330365,6.083643612,199.1944685,0,199.1944685,3.523577513,195.670891,0.635849446,2.03164149,-0.508974821,0.508974821,0.61719351,0.14479717,4.091997441,131.6127038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9374576,2.552819914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.964638216,126.5111371,111.9020958,129.063957,528.3986663,0,0.615987347,51.97630225,-0.615987347,128.0236977,0.968829502,0,623.8303123,129.063957,708.3000908,8,10,14% +8/6/2018 19:00,26.90937458,137.2036328,909.0226029,881.0276357,123.3895635,811.9353198,685.4138106,126.5215092,119.6689129,6.852596353,224.123705,0,224.123705,3.720650597,220.4030544,0.469657186,2.394655138,-0.196647942,0.196647942,0.563782468,0.135738719,4.269126941,137.3097975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0303109,2.695598692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092967936,131.9874001,118.1232788,134.6829988,685.4138106,0,0.777970841,38.92483887,-0.777970841,141.0751611,0.985730239,0,793.7563981,134.6829988,881.9037272,8,11,11% +8/6/2018 20:00,21.55627868,170.2745635,953.9542015,890.0301031,126.1753635,927.3688098,797.8067893,129.5620205,122.3707108,7.191309723,235.1018934,0,235.1018934,3.804652748,231.2972407,0.376228037,2.971851766,0.070462463,-0.070462463,0.518103899,0.132265641,4.184207436,134.5784943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6273818,2.756457964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031444044,129.3619676,120.6588258,132.1184256,797.8067893,0,0.896381804,26.31352656,-0.896381804,153.6864734,0.994220197,0,913.8544494,132.1184256,1000.323317,8,12,9% +8/6/2018 21:00,23.51780437,208.0445299,938.5707777,887.0231134,125.227245,982.8466274,854.320103,128.5265245,121.4511815,7.075342976,231.3434149,0,231.3434149,3.776063475,227.5673514,0.410463119,3.631062037,0.323629408,-0.323629408,0.474809801,0.133423337,3.855230075,123.9974515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7434953,2.735745133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793101065,119.1910668,119.5365963,121.926812,854.320103,0,0.963131727,15.60656938,-0.963131727,164.3934306,0.998086021,0,972.2215488,121.926812,1052.020209,8,13,8% +8/6/2018 22:00,31.43390841,234.4908413,863.9569721,871.2831605,120.5413178,971.7523096,848.3328847,123.4194249,116.9065523,6.512872592,213.1111359,0,213.1111359,3.634765483,209.4763704,0.548625199,4.092637247,0.588959481,-0.588959481,0.429435687,0.139522362,3.315326781,106.6323056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3750249,2.633375219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401942967,102.4990281,114.7769678,105.1324034,848.3328847,0,0.973659223,13.17983177,-0.973659223,166.8201682,0.998647331,0,961.9623387,105.1324034,1030.769394,8,14,7% +8/6/2018 23:00,41.9856018,251.0081401,735.4861302,838.718721,112.0556419,891.9168387,777.6956827,114.221156,108.6767509,5.54440512,181.7060185,0,181.7060185,3.378891045,178.3271274,0.73278699,4.380918494,0.899809812,-0.899809812,0.376277149,0.152355887,2.613105841,84.04646635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4642267,2.44799506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893186287,80.78866032,106.357413,83.23665538,777.6956827,0,0.927242547,21.99102135,-0.927242547,158.0089786,0.996076676,0,881.0019438,83.23665538,935.47867,8,15,6% +8/6/2018 0:00,53.51213522,262.6863403,562.6853355,779.0700244,99.40938472,744.9879966,644.3344119,100.6535847,96.41182499,4.241759739,139.4271339,0,139.4271339,2.997559731,136.4295741,0.933962949,4.584741539,1.319014237,-1.319014237,0.30458897,0.176669585,1.813127256,58.31640514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.67471338,2.171721821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.313604525,56.05594679,93.9883179,58.22766862,644.3344119,0,0.827055838,34.2025214,-0.827055838,145.7974786,0.98954459,0,731.5859492,58.22766862,769.6947937,8,16,5% +8/6/2018 1:00,65.32632651,272.2240465,359.4604666,666.7130119,81.14139681,534.7558029,453.3513538,81.40444915,78.69468432,2.709764834,89.60206431,0,89.60206431,2.446712494,87.15535182,1.140159486,4.751205915,2.015080474,-2.015080474,0.185554633,0.225731073,1.000987834,32.1952096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64432386,1.772634873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725212278,30.94726007,76.36953614,32.71989495,453.3513538,0,0.67997976,47.15793857,-0.67997976,132.8420614,0.9764684,0,519.052807,32.71989495,540.4673238,8,17,4% +8/6/2018 2:00,77.05330408,280.9876255,147.7353902,429.0771722,51.60302272,264.1056136,212.9449206,51.16069296,50.04700119,1.113691775,37.37617732,0,37.37617732,1.55602153,35.82015579,1.344833856,4.904159222,3.729105983,-3.729105983,0,0.349293576,0.389005382,12.5117503,0.097115186,1,0.261996799,0,0.930136763,0.968898726,0.724496596,1,48.30208001,1.127332301,0.015881613,0.312029739,0.955949848,0.680446444,0.961238037,0.922476074,0.275105388,12.02677029,48.57718539,13.15410259,192.264735,0,0.49628583,60.24542477,-0.49628583,119.7545752,0.949251607,0,231.0847941,13.15410259,239.6938911,8,18,4% +8/6/2018 3:00,88.22135758,289.8191414,2.324761031,11.81451628,1.95805994,5.363250954,3.446708715,1.916542239,1.899017208,0.017525031,0.622707959,0,0.622707959,0.059042732,0.563665227,1.53975316,5.058298254,24.73403913,-24.73403913,0,0.842262888,0.014760683,0.474754302,0.787216663,1,0.040408106,0,0.957478757,0.996240721,0.724496596,1,1.833931541,0.042776258,0.097958938,0.312029739,0.760018149,0.484514745,0.961238037,0.922476074,0.010353078,0.456351893,1.844284619,0.499128151,0.733402183,0,0.291735068,73.03813938,-0.291735068,106.9618606,0.878611623,0,2.488660301,0.499128151,2.815329693,8,19,13% +8/6/2018 4:00,99.31429045,299.3872344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733361363,5.225292979,-3.968866931,3.968866931,0.791130092,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.06761117,86.12320785,-0.06761117,93.87679215,0,0,0,0,0,8,20,0% +8/6/2018 5:00,109.0443987,310.3312747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903183788,5.416302515,-1.433928643,1.433928643,0.77536993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146593917,98.42959032,0.146593917,81.57040968,0,0.708921728,0,0,0,8,21,0% +8/6/2018 6:00,117.1743273,323.2554535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045077811,5.641871989,-0.561210327,0.561210327,0.626126308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34149575,109.9680295,0.34149575,70.03197051,0,0.903585294,0,0,0,8,22,0% +8/6/2018 7:00,122.9674592,338.4960769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146187037,5.907871047,-0.040464661,0.040464661,0.537073554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503814544,120.2526908,0.503814544,59.74730925,0,0.950757133,0,0,0,8,23,0% +8/7/2018 8:00,125.6429767,355.6331098,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192883625,6.206968694,0.375804737,-0.375804737,0.465887295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622489879,128.4981875,0.622489879,51.50181253,0,0.969677409,0,0,0,8,0,0% +8/7/2018 9:00,124.7351112,13.2267013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177038383,0.230849487,0.790309583,-0.790309583,0.395002791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689434529,133.5853636,0.689434529,46.41463639,0,0.977476797,0,0,0,8,1,0% +8/7/2018 10:00,120.4109571,29.536596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101567656,0.51551085,1.296219356,-1.296219356,0.308487125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700085836,134.433891,0.700085836,45.56610897,0,0.978580186,0,0,0,8,2,0% +8/7/2018 11:00,113.3479862,43.61533195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97829556,0.761231147,2.075309518,-2.075309518,0.17525486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653717045,130.822441,0.653717045,49.17755902,0,0.973514309,0,0,0,8,3,0% +8/7/2018 12:00,104.3368654,55.48952566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821021832,0.968474923,3.787830564,-3.787830564,0,#DIV/0!,0,0,0.105228275,1,0.258114258,0,0.930709375,0.969471338,0.724496596,1,0,0,0.017145632,0.312029739,0.952528648,0.677025244,0.961238037,0.922476074,0,0,0,0,0,0,-0.553487421,123.6065952,0.553487421,56.39340482,0,0.95966371,0,0,0,8,4,0% +8/7/2018 13:00,94.02892182,65.67824809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641114278,1.146301676,14.15730296,-14.15730296,0,#DIV/0!,0,0,0.654085491,1,0.0705178,0,0.954424073,0.993186037,0.724496596,1,0,0,0.085352843,0.312029739,0.78662515,0.511121746,0.961238037,0.922476074,0,0,0,0,0,0,-0.406227634,113.9680799,0.406227634,66.03192011,0,0.9269163,0,0,0,8,5,0% +8/7/2018 14:00,82.77420852,74.81704785,54.61312797,215.202481,27.54499917,27.12611264,0,27.12611264,26.71441581,0.411696827,61.39757555,47.32540703,14.07216852,0.830583355,13.24158516,1.444682474,1.305803822,-7.859402013,7.859402013,0.125809409,0.504365895,0.233317373,7.50428874,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67891261,0.601754813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.169037643,7.213407777,25.84795025,7.81516259,0,47.32540703,-0.219911066,102.7038095,0.219911066,77.29619047,0,0.822635362,25.84795025,46.74671592,56.44274089,8,6,118% +8/7/2018 15:00,71.2296512,83.55346211,252.4339988,571.6517347,68.49033277,68.32805065,0,68.32805065,66.42509654,1.902954111,70.38309398,7.11231216,63.27078182,2.065236235,61.20554559,1.243191939,1.458283015,-2.860528388,2.860528388,0.980667146,0.271319763,1.876146305,60.34331437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.85032939,1.496256622,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.359261611,58.00428904,65.209591,59.50054567,0,7.11231216,-0.012441687,90.71287457,0.012441687,89.28712543,0,0,65.209591,59.50054567,104.1515081,8,7,60% +8/7/2018 16:00,59.43055104,92.61990566,463.4411037,732.0536891,91.13149488,242.7387069,150.861548,91.87715886,88.38354407,3.493614798,115.1146119,0,115.1146119,2.74795081,112.3666611,1.037258792,1.616522307,-1.562738569,1.562738569,0.797397724,0.196640941,2.924985761,94.07759666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.95762439,1.990881007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119142227,90.43096432,87.07676661,92.42184533,150.861548,0,0.206079896,78.10727757,-0.206079896,101.8927224,0.807375654,0,208.8787076,92.42184533,269.3669569,8,8,29% +8/7/2018 17:00,47.72369425,103.0640159,653.2461356,813.1186858,106.2558397,449.5302761,341.5539967,107.9762794,103.0518341,4.924445303,161.5910942,0,161.5910942,3.20400561,158.3870886,0.832935596,1.798806417,-0.921783096,0.921783096,0.687787883,0.162658199,3.637056153,116.9802282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05734273,2.321291158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.635034802,112.4458449,101.6923775,114.767136,341.5539967,0,0.420054295,65.16198457,-0.420054295,114.8380154,0.930967769,0,419.6681397,114.767136,494.7809349,8,9,18% +8/7/2018 18:00,36.59946649,116.7827854,804.9789314,857.2986191,116.7198591,646.3104922,527.0418963,119.2685959,113.2003247,6.06827121,198.6959961,0,198.6959961,3.519534403,195.1764617,0.638781195,2.038244115,-0.50854229,0.50854229,0.617119543,0.144997409,4.081738991,131.2827568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8124579,2.549890694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957206004,126.1939795,111.7696639,128.7438701,527.0418963,0,0.614770495,52.06475407,-0.614770495,127.9352459,0.968668836,0,622.298724,128.7438701,706.5590122,8,10,14% +8/7/2018 19:00,27.12549945,137.5992054,907.0150235,880.609388,123.2638828,810.5381105,684.1536262,126.3844843,119.5470219,6.837462372,223.6331544,0,223.6331544,3.716860861,219.9162935,0.473429277,2.401559183,-0.195224187,0.195224187,0.563538992,0.135900597,4.258742861,136.9758097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9131447,2.692853041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085444706,131.6663585,117.9985894,134.3592115,684.1536262,0,0.776909303,39.02154127,-0.776909303,140.9784587,0.985642423,0,792.3294275,134.3592115,880.2648443,8,11,11% +8/7/2018 20:00,21.82940458,170.4562575,951.8881413,889.6306464,126.0483571,925.992312,796.5690431,129.4232689,122.247534,7.175734889,234.5971235,0,234.5971235,3.800823035,230.7963004,0.380994984,2.975022924,0.072696805,-0.072696805,0.517721804,0.132419296,4.173297929,134.227607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5089796,2.75368335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.023540143,129.0246815,120.5325198,131.7783648,796.5690431,0,0.895392988,26.44104739,-0.895392988,153.5589526,0.994158598,0,912.4484827,131.7783648,998.6947869,8,12,9% +8/7/2018 21:00,23.78727933,207.8420517,936.3588824,886.5844596,125.090447,981.3847676,853.0075903,128.3771773,121.3185085,7.058668775,230.8029903,0,230.8029903,3.771938512,227.0310518,0.415166344,3.627528126,0.326754533,-0.326754533,0.474275374,0.133592418,3.843503012,123.6202688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6159649,2.732756612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784604848,118.8285045,119.4005698,121.5612611,853.0075903,0,0.962127839,15.81896006,-0.962127839,164.1810399,0.998031854,0,970.7293166,121.5612611,1050.288731,8,13,8% +8/7/2018 22:00,31.661655,234.1741685,861.5226119,870.734731,120.385784,970.0862147,846.835985,123.2502298,116.7557084,6.494521357,212.5162072,0,212.5162072,3.630075563,208.8861316,0.552600126,4.087110263,0.593312953,-0.593312953,0.428691199,0.13973607,3.302617677,106.2235372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2300279,2.629977388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392735264,102.1061043,114.6227632,104.7360817,846.835985,0,0.972553356,13.45490441,-0.972553356,166.5450956,0.998588939,0,960.2638109,104.7360817,1028.811482,8,14,7% +8/7/2018 23:00,42.18455749,250.7103438,732.7713898,837.9406791,111.8694017,889.9152079,775.8951411,114.0200668,108.4961265,5.52394026,181.0421824,0,181.0421824,3.373275217,177.6689072,0.736259422,4.375720968,0.906183982,-0.906183982,0.375187102,0.15266617,2.599427604,83.60652721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2906037,2.443926411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88327645,80.36577408,106.1738801,82.80970049,775.8951411,0,0.925954737,22.18723569,-0.925954737,157.8127643,0.99600168,0,878.9667443,82.80970049,933.1640371,8,15,6% +8/7/2018 0:00,53.69809621,262.4230136,559.662144,777.8047782,99.17063627,742.4916963,642.092451,100.3992453,96.18027569,4.218969644,138.6869269,0,138.6869269,2.990360584,135.6965664,0.937208581,4.580145621,1.329368086,-1.329368086,0.302818358,0.177197328,1.798787586,57.85519205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45213939,2.166506064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303215483,55.61261122,93.75535487,57.77911729,642.092451,0,0.825518779,34.35887713,-0.825518779,145.6411229,0.989432026,0,729.0621895,57.77911729,766.8774662,8,16,5% +8/7/2018 1:00,65.50996857,271.9886091,356.1609974,664.2788416,80.79422272,531.5197985,450.4769276,81.04287084,78.3579788,2.684892042,88.79160123,0,88.79160123,2.436243914,86.35535731,1.143364644,4.747096756,2.035621139,-2.035621139,0.182041973,0.226847474,0.98694936,31.74368404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32066972,1.765050422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.715041452,30.51323653,76.03571117,32.27828696,450.4769276,0,0.678144326,47.3011962,-0.678144326,132.6988038,0.976269382,0,515.8225431,32.27828696,536.9480363,8,17,4% +8/7/2018 2:00,77.24164481,280.7726498,144.4382578,423.3315114,50.94986969,259.683628,209.1812483,50.50237974,49.41354314,1.088836598,36.55705442,0,36.55705442,1.536326556,35.02072786,1.348121022,4.900407188,3.794565569,-3.794565569,0,0.352744975,0.384081639,12.35338578,0.106149438,1,0.257676157,0,0.930773788,0.969535751,0.724496596,1,47.70488163,1.11306336,0.017288566,0.312029739,0.952142571,0.676639167,0.961238037,0.922476074,0.271116968,11.8745443,47.9759986,12.98760766,186.9767763,0,0.49413106,60.38753226,-0.49413106,119.6124677,0.94881227,0,225.3818582,12.98760766,233.8819877,8,18,4% +8/7/2018 3:00,88.40522172,289.6200523,1.790695629,9.192780054,1.534855615,4.163427369,2.661354294,1.502073075,1.488574055,0.01349902,0.480456447,0,0.480456447,0.04628156,0.434174887,1.542962195,5.054823493,27.6671527,-27.6671527,0,0.857128141,0.01157039,0.372143514,0.807736975,1,0.036128216,0,0.957895474,0.996657437,0.724496596,1,1.436991937,0.033530833,0.099797793,0.312029739,0.756243538,0.480740134,0.961238037,0.922476074,0.008137159,0.357718501,1.445129096,0.391249333,0.511680028,0,0.289504837,73.17168632,-0.289504837,106.8283137,0.877291314,0,1.89402154,0.391249333,2.150086404,8,19,14% +8/7/2018 4:00,99.53154462,299.2035838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737153163,5.222087671,-3.891242687,3.891242687,0.80440462,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064777508,86.28592163,-0.064777508,93.71407837,0,0,0,0,0,8,20,0% +8/7/2018 5:00,109.2821904,310.1686899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907334037,5.413464876,-1.42190548,1.42190548,0.773313848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14971306,98.61029835,0.14971306,81.38970165,0,0.716027801,0,0,0,8,21,0% +8/7/2018 6:00,117.434146,323.1284679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049612502,5.639655673,-0.559088411,0.559088411,0.625763439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344843128,110.17222,0.344843128,69.82778001,0,0.905006535,0,0,0,8,22,0% +8/7/2018 7:00,123.2452154,338.428572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151034795,5.906692865,-0.041834879,0.041834879,0.537307875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507317292,120.4853005,0.507317292,59.51469948,0,0.95144235,0,0,0,8,23,0% +8/8/2018 8:00,125.9263512,355.6483621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197829443,6.207234898,0.372260554,-0.372260554,0.466493386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626064511,128.7603625,0.626064511,51.23963753,0,0.970136026,0,0,0,8,0,0% +8/8/2018 9:00,125.0065622,13.3277794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181776097,0.232613632,0.784473243,-0.784473243,0.396000864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692992673,133.8674742,0.692992673,46.13252576,0,0.977849165,0,0,0,8,1,0% +8/8/2018 10:00,120.656688,29.70196424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10585647,0.51839707,1.286731945,-1.286731945,0.310109567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703540298,134.7117372,0.703540298,45.28826276,0,0.978930866,0,0,0,8,2,0% +8/8/2018 11:00,113.5632539,43.8176309,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98205269,0.76476193,2.057650238,-2.057650238,0.178274775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656987807,131.0705484,0.656987807,48.92945161,0,0.973895087,0,0,0,8,3,0% +8/8/2018 12:00,104.5239311,55.71074073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824286745,0.972335855,3.74063877,-3.74063877,0,#DIV/0!,0,0,0.098720086,1,0.261225336,0,0.930250795,0.969012758,0.724496596,1,0,0,0.016132391,0.312029739,0.955270095,0.67976669,0.961238037,0.922476074,0,0,0,0,0,0,-0.556507143,123.8145859,0.556507143,56.18541409,0,0.960153894,0,0,0,8,4,0% +8/8/2018 13:00,94.19318039,65.9112686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643981131,1.150368651,13.6049199,-13.6049199,0,#DIV/0!,0,0,0.642400519,1,0.073370879,0,0.95412351,0.992885473,0.724496596,1,0,0,0.084187137,0.312029739,0.789149856,0.513646452,0.961238037,0.922476074,0,0,0,0,0,0,-0.408946295,114.1386599,0.408946295,65.86134011,0,0.927734557,0,0,0,8,5,0% +8/8/2018 14:00,82.91985141,75.06233369,52.54570827,208.7838083,26.81150593,26.39915185,0,26.39915185,26.0030401,0.396111744,59.95388086,46.40509971,13.54878115,0.808465828,12.74031532,1.447224422,1.310084867,-8.019816268,8.019816268,0.098376956,0.510251109,0.221201123,7.11458848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.99511122,0.58573074,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.16025946,6.838813064,25.15537068,7.424543804,0,46.40509971,-0.222263882,102.8420366,0.222263882,77.15796344,0,0.825042173,25.15537068,45.71070809,55.07211491,8,6,119% +8/8/2018 15:00,71.36745933,83.81652944,249.9259762,568.9394882,68.15121208,67.98024916,0,67.98024916,66.09620159,1.884047578,70.89461682,8.24215985,62.65245697,2.055010495,60.59744647,1.245597144,1.462874406,-2.880050625,2.880050625,0.977328647,0.272685589,1.852981136,59.59824293,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.53418306,1.488848108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.342478526,57.28809803,64.87666158,58.77694614,0,8.24215985,-0.014486883,90.8300663,0.014486883,89.1699337,0,0,64.87666158,58.77694614,103.3449973,8,7,59% +8/8/2018 16:00,59.56687182,92.91044776,461.0876302,730.782653,90.92255283,240.9928853,149.3361096,91.65677571,88.18090239,3.475873321,114.5376847,0,114.5376847,2.741650436,111.7960342,1.039638038,1.621593223,-1.567923753,1.567923753,0.798284443,0.197191481,2.912993984,93.69189987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.7628375,1.986316408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.110454225,90.0602179,86.87329173,92.04653431,149.3361096,0,0.204350923,78.20849466,-0.204350923,101.7915053,0.805322857,0,207.1370742,92.04653431,267.37969,8,8,29% +8/8/2018 17:00,47.86896296,103.3954418,651.0622452,812.3765308,106.0969579,447.8708066,340.0650812,107.8057254,102.8977432,4.907982214,161.0567938,0,161.0567938,3.199214738,157.8575791,0.835471013,1.804590891,-0.922987302,0.922987302,0.687993814,0.162959776,3.626205101,116.631221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.90922467,2.317820187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.627173252,112.110366,101.5363979,114.4281861,340.0650812,0,0.41860525,65.2534376,-0.41860525,114.7465624,0.930555727,0,417.9859066,114.4281861,492.8768659,8,9,18% +8/8/2018 18:00,36.76987766,117.1661465,802.9020424,856.7781828,116.5831456,644.7911487,525.6708004,119.1203483,113.0677336,6.052614743,198.1883078,0,198.1883078,3.515411985,194.6728959,0.641755431,2.044935028,-0.508054017,0.508054017,0.617036043,0.145202203,4.071250474,130.9454101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6850063,2.546904017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949607109,125.8697089,111.6346134,128.4166129,525.6708004,0,0.613543635,52.15382576,-0.613543635,127.8461742,0.968506204,0,620.7500446,128.4166129,704.7961495,8,10,14% +8/8/2018 19:00,27.34505976,137.9985251,904.9604204,880.1798668,123.1351464,809.1149881,682.8708467,126.2441414,119.4221675,6.821973906,223.1311102,0,223.1311102,3.712978986,219.4181312,0.477261327,2.408528626,-0.193734463,0.193734463,0.563284234,0.136066886,4.248089462,136.6331598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7931298,2.690040636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.077726354,131.3369903,117.8708562,134.0270309,682.8708467,0,0.775831023,39.11956313,-0.775831023,140.8804369,0.985552977,0,790.8762518,134.0270309,878.5942631,8,11,11% +8/8/2018 20:00,22.10673209,170.6414778,949.765065,889.2187583,125.9177401,924.5793286,795.2987426,129.2805859,122.1208557,7.159730243,234.0784205,0,234.0784205,3.796884452,230.281536,0.385835262,2.978255629,0.075009093,-0.075009093,0.517326379,0.132577776,4.162081314,133.8668421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3872116,2.75082986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015413744,128.6779005,120.4026253,131.4287304,795.2987426,0,0.894379179,26.57120174,-0.894379179,153.4287983,0.9940953,0,911.0053672,131.4287304,997.0228426,8,12,9% +8/8/2018 21:00,24.06194827,207.6451587,934.0800266,886.1308438,124.9493811,979.8744654,851.6512794,128.223186,121.1816962,7.041489798,230.2462017,0,230.2462017,3.767684853,226.4785169,0.419960222,3.624091696,0.329975859,-0.329975859,0.473724494,0.133767319,3.831436256,123.2321605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4844558,2.72967485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.775862525,118.45544,119.2603183,121.1851149,851.6512794,0,0.961089759,16.03570108,-0.961089759,163.9642989,0.997975723,0,969.1876195,121.1851149,1048.500853,8,13,8% +8/8/2018 22:00,31.89500764,233.8594525,859.0121388,870.1666819,120.2251987,968.3587762,845.2832144,123.0755618,116.5999654,6.47559635,211.9026717,0,211.9026717,3.625233325,208.2774383,0.556672898,4.081617433,0.597793927,-0.597793927,0.427924907,0.139957509,3.289545391,105.8030875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0803218,2.626469203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383264437,101.7019521,114.4635863,104.3284213,845.2832144,0,0.971403792,13.73511356,-0.971403792,166.2648864,0.998528099,0,958.5026273,104.3284213,1026.783493,8,14,7% +8/8/2018 23:00,42.38887018,250.4120607,729.9729636,837.1342335,111.6770781,887.8385432,774.0260965,113.8124467,108.3096021,5.502844542,180.3578723,0,180.3578723,3.367475948,176.9903964,0.739825351,4.370514947,0.912745719,-0.912745719,0.374064979,0.152987965,2.585376709,83.15460213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1113093,2.439724861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.873096625,79.9313665,105.9844059,82.37109136,774.0260965,0,0.924614077,22.38976714,-0.924614077,157.6102329,0.995923384,0,876.8550956,82.37109136,930.7653275,8,15,6% +8/8/2018 0:00,53.8890885,262.1582714,556.5502581,776.4927065,98.92410951,739.9051223,639.7684288,100.1366936,95.94118262,4.195510933,137.9249805,0,137.9249805,2.982926893,134.9420536,0.940542025,4.575524997,1.340046322,-1.340046322,0.300992272,0.177745151,1.784088606,57.38242232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22231403,2.16112038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.292566122,55.15816698,93.51488016,57.31928736,639.7684288,0,0.823920719,34.52077918,-0.823920719,145.4792208,0.989314549,0,726.447095,57.31928736,763.9614222,8,16,5% +8/8/2018 1:00,65.69839468,271.7514341,352.7726105,661.7517256,80.43537528,528.17319,447.5038891,80.66930089,78.00995194,2.659348949,87.959227,0,87.959227,2.425423339,85.53380366,1.1466533,4.742957272,2.056910931,-2.056910931,0.178401204,0.228009128,0.972612278,31.28255419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98613305,1.757210953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704654285,30.06998098,75.69078734,31.82719193,447.5038891,0,0.676241363,47.44937646,-0.676241363,132.5506235,0.976061902,0,512.4822847,31.82719193,533.3125452,8,17,4% +8/8/2018 2:00,77.43458598,280.5558396,141.0704123,417.3589799,50.27225499,255.1206969,205.3008875,49.81980937,48.75636102,1.063448356,35.72004868,0,35.72004868,1.515893973,34.20415471,1.35148848,4.896623137,3.863445713,-3.863445713,0,0.356362856,0.378973493,12.18909025,0.115462594,1,0.253277737,0,0.931418219,0.970180182,0.724496596,1,47.08424337,1.098260023,0.018727023,0.312029739,0.948266083,0.672762679,0.961238037,0.922476074,0.267014497,11.71661719,47.35125786,12.81487721,181.5963146,0,0.491904805,60.53414407,-0.491904805,119.4658559,0.948354317,0,219.5689067,12.81487721,227.9559875,8,18,4% +8/8/2018 3:00,88.59179394,289.4191369,1.335319829,6.953484055,1.16443547,3.136648661,1.997259012,1.139389649,1.129323444,0.010066205,0.358875778,0,0.358875778,0.035112026,0.323763752,1.546218495,5.051316858,31.42530889,-31.42530889,0,0.872027393,0.008778006,0.282330861,0.828881124,1,0.031810751,0,0.958311416,0.997073379,0.724496596,1,1.089734242,0.025438543,0.101665161,0.312029739,0.752438199,0.476934794,0.961238037,0.922476074,0.006191078,0.271387163,1.095925321,0.296825706,0.341768718,0,0.287231407,73.30772319,-0.287231407,106.6922768,0.875924329,0,1.395288856,0.296825706,1.589555344,8,19,14% +8/8/2018 4:00,99.75342594,299.0182192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741025723,5.218852449,-3.815274963,3.815274963,0.817395866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061869361,86.45288133,-0.061869361,93.54711867,0,0,0,0,0,8,20,0% +8/8/2018 5:00,109.5246998,310.0047024,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911566623,5.410602754,-1.409823934,1.409823934,0.771247782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152904019,98.7952564,0.152904019,81.2047436,0,0.722997477,0,0,0,8,21,0% +8/8/2018 6:00,117.6987855,323.0008015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054231332,5.637427472,-0.556889238,0.556889238,0.625387358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.348257352,110.380764,0.348257352,69.61923603,0,0.906428013,0,0,0,8,22,0% +8/8/2018 7:00,123.5277751,338.361783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155966393,5.905527175,-0.04314688,0.04314688,0.537532241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510879958,120.7224611,0.510879958,59.27753889,0,0.952129651,0,0,0,8,23,0% +8/9/2018 8:00,126.2141831,355.6663308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202853058,6.207548511,0.368764039,-0.368764039,0.467091325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629690652,129.0273031,0.629690652,50.97269689,0,0.970595931,0,0,0,8,0,0% +8/9/2018 9:00,125.2817134,13.43339552,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186578391,0.234456982,0.778685804,-0.778685804,0.396990574,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696593009,134.1542957,0.696593009,45.84570427,0,0.978222076,0,0,0,8,1,0% +8/9/2018 10:00,120.9051735,29.87275674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11019336,0.521377962,1.277316892,-1.277316892,0.311719636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70702737,134.9935658,0.70702737,45.0064342,0,0.97928138,0,0,0,8,2,0% +8/9/2018 11:00,113.7804437,44.02541183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985843366,0.768388391,2.040165213,-2.040165213,0.18126489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660281991,131.3213825,0.660281991,48.67861746,0,0.974274778,0,0,0,8,3,0% +8/9/2018 12:00,104.7123316,55.93715786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827574954,0.976287579,3.694294119,-3.694294119,0,#DIV/0!,0,0,0.092235922,1,0.264352702,0,0.929787753,0.968549716,0.724496596,1,0,0,0.015116951,0.312029739,0.958025563,0.682522158,0.961238037,0.922476074,0,0,0,0,0,0,-0.559542126,124.0241386,0.559542126,55.97586142,0,0.960641223,0,0,0,8,4,0% +8/9/2018 13:00,94.35842963,66.14919976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646865274,1.154521333,13.09098042,-13.09098042,0,#DIV/0!,0,0,0.630796833,1,0.07624041,0,0.953819282,0.992581245,0.724496596,1,0,0,0.08301954,0.312029739,0.791689559,0.516186154,0.961238037,0.922476074,0,0,0,0,0,0,-0.411673643,114.3100139,0.411673643,65.6899861,0,0.928544568,0,0,0,8,5,0% +8/9/2018 14:00,83.06626314,75.31235648,50.49112158,202.3027338,26.06885788,25.66340903,0,25.66340903,25.28278563,0.380623402,58.46935923,45.44112999,13.02822924,0.786072249,12.24215699,1.449779789,1.314448588,-8.187635525,8.187635525,0.069678172,0.516305779,0.209346186,6.73329296,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.30277523,0.569506668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151670599,6.472297306,24.45444583,7.041803975,0,45.44112999,-0.224619456,102.9805018,0.224619456,77.01949818,0,0.827401295,24.45444583,44.63985377,53.67033732,8,6,119% +8/9/2018 15:00,71.50616655,84.08431206,247.4019667,566.1823803,67.80744942,67.62782516,0,67.62782516,65.76280463,1.865020528,71.39133291,9.361216981,62.03011592,2.044644783,59.98547114,1.248018042,1.467548095,-2.899878327,2.899878327,0.97393791,0.274078053,1.829736124,58.85060342,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.21370922,1.481338185,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.325637593,56.5694385,64.53934682,58.05077669,0,9.361216981,-0.016533925,90.94736729,0.016533925,89.05263271,0,0,64.53934682,58.05077669,102.5324191,8,7,59% +8/9/2018 16:00,59.70434577,93.20582458,458.711482,729.4909665,90.71091126,239.2428456,147.8092421,91.43360351,87.9756426,3.457960912,113.9551783,0,113.9551783,2.735268662,111.2199096,1.042037412,1.626748521,-1.573116979,1.573116979,0.799172537,0.19775156,2.900836661,93.30087858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.56553398,1.981692835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.101646286,89.68435337,86.66718027,91.6660462,147.8092421,0,0.202619702,78.30980598,-0.202619702,101.690194,0.803232289,0,205.3923361,91.6660462,265.38593,8,8,29% +8/9/2018 17:00,48.01587485,103.7318718,648.8487688,811.6207175,105.9356411,446.2010978,338.568511,107.6325868,102.7412907,4.891296094,160.5152466,0,160.5152466,3.194350441,157.3208961,0.838035109,1.810462701,-0.924150534,0.924150534,0.688192739,0.163267076,3.61515987,116.2759685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.75883656,2.31429602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.61917102,111.7688837,101.3780076,114.0831797,338.568511,0,0.417151144,65.34514248,-0.417151144,114.6548575,0.930139368,0,416.2939083,114.0831797,490.9590677,8,9,18% +8/9/2018 18:00,36.94271848,117.5543525,800.7871984,856.2461643,116.4437746,643.2544388,524.2852015,118.9692373,112.9325651,6.036672156,197.6713369,0,197.6713369,3.511209435,194.1601274,0.644772072,2.051710501,-0.507509407,0.507509407,0.61694291,0.145411633,4.060530501,130.6006189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5550772,2.543859283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941840526,125.5382825,111.4969177,128.0821418,524.2852015,0,0.612306628,52.24352529,-0.612306628,127.7564747,0.968341567,0,619.1840712,128.0821418,703.0112713,8,10,14% +8/9/2018 19:00,27.56803166,138.4012971,902.8583377,879.7388656,123.0033174,807.6654434,681.5650023,126.1004411,119.2943136,6.806127518,222.6174608,0,222.6174608,3.709003854,218.9084569,0.481152921,2.415558323,-0.19217842,0.19217842,0.563018135,0.136237671,4.237165077,136.281794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6702318,2.687160666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069811675,130.9992442,117.7400434,133.6864048,681.5650023,0,0.774735582,39.2189343,-0.774735582,140.7810657,0.985461852,0,789.3963526,133.6864048,876.8914308,8,11,11% +8/9/2018 20:00,22.38818948,170.8299895,947.5844301,888.7942104,125.78347,923.129122,793.9951961,129.133926,121.9906343,7.143291695,233.5456515,0,233.5456515,3.792835711,229.7528158,0.39074762,2.981545777,0.077399601,-0.077399601,0.516917578,0.132741174,4.150556109,133.4961519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2620378,2.747896561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007063772,128.321579,120.2691016,131.0694755,793.9951961,0,0.893339748,26.70403438,-0.893339748,153.2959656,0.994030253,0,909.5243469,131.0694755,995.3066973,8,12,9% +8/9/2018 21:00,24.34171516,207.4538725,931.7336843,885.6620003,124.8040024,978.3148481,850.2503448,128.0645033,121.0407012,7.023802078,229.6729202,0,229.6729202,3.763301149,225.909619,0.424843075,3.620753121,0.333293749,-0.333293749,0.473157102,0.133948149,3.819028955,122.833099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.348926,2.726498872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766873478,118.071847,119.1157995,120.7983458,850.2503448,0,0.960016738,16.25677921,-0.960016738,163.7432208,0.997917575,0,967.5955616,120.7983458,1046.655663,8,13,8% +8/9/2018 22:00,32.1338993,233.5469037,856.4251472,869.5786751,120.0595173,966.5690848,843.6737104,122.8953744,116.4392799,6.456094515,211.2704297,0,211.2704297,3.62023742,207.6501923,0.560842344,4.076162427,0.602403138,-0.602403138,0.427136686,0.140186819,3.276110116,105.3709629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9258648,2.622849687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.373530627,101.2865775,114.2993955,103.9094272,843.6737104,0,0.970209752,14.02034739,-0.970209752,165.9796526,0.998464752,0,956.6778576,103.9094272,1024.6845,8,14,7% +8/9/2018 23:00,42.59849519,250.1134833,727.0906661,836.298888,111.4786237,885.6859873,772.0877388,113.5982485,108.1171319,5.481116566,179.6530418,0,179.6530418,3.361491818,176.29155,0.743483998,4.365303788,0.919496864,-0.919496864,0.372910465,0.153321489,2.570954813,82.69074437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9262996,2.435389379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.86264801,79.48548879,105.7889476,81.92087817,772.0877388,0,0.923219856,22.5985629,-0.923219856,157.4014371,0.995841719,0,874.666129,81.92087817,928.2817053,8,15,6% +8/9/2018 0:00,54.08507306,261.892261,553.3498127,775.1329069,98.66973809,737.2275063,637.3616402,99.86586606,95.69448144,4.171384624,137.1413252,0,137.1413252,2.975256656,134.1660685,0.943962601,4.570882239,1.351054433,-1.351054433,0.299109774,0.178313493,1.76903399,56.89821414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.98517547,2.155563319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.281659104,54.69272766,93.26683458,56.84829098,637.3616402,0,0.822261105,34.68821626,-0.822261105,145.3117837,0.989192065,0,723.7399115,56.84829098,760.945981,8,16,5% +8/9/2018 1:00,65.8915628,271.5126344,349.2959247,659.1294607,80.06469057,524.7151771,444.4315922,80.28358497,77.65044475,2.633140223,87.10508677,0,87.10508677,2.414245828,84.69084095,1.15002472,4.738789432,2.078972413,-2.078972413,0.174628468,0.229217362,0.957983688,30.81204846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64056107,1.749112884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.694055921,29.61771297,75.33461699,31.36682586,444.4315922,0,0.674270562,47.60246922,-0.674270562,132.3975308,0.975845791,0,509.0313157,31.36682586,529.5602759,8,17,4% +8/9/2018 2:00,77.63207639,280.3372832,137.633987,411.153749,49.56957625,250.4162104,201.3037966,49.11241376,48.07487063,1.037543131,34.86565924,0,34.86565924,1.494705616,33.37095363,1.354935338,4.892808608,3.935959409,-3.935959409,0,0.360155056,0.373676404,12.01871766,0.125059614,1,0.24880337,0,0.932069562,0.970831525,0.724496596,1,46.43955433,1.082909131,0.020196805,0.312029739,0.94432194,0.668818536,0.961238037,0.922476074,0.262796483,11.55284857,46.70235081,12.6357577,176.1288216,0,0.489607105,60.68523903,-0.489607105,119.314761,0.947877299,0,213.6508624,12.6357577,221.9207131,8,18,4% +8/9/2018 3:00,88.78077266,289.2164644,0.957631248,5.094278154,0.849235577,2.282304747,1.451457727,0.83084702,0.823627991,0.007219029,0.257796369,0,0.257796369,0.025607586,0.232188783,1.549516795,5.047779554,36.40333407,-36.40333407,0,0.886808548,0.006401896,0.205906998,0.850638886,1,0.027463105,0,0.958725757,0.99748772,0.724496596,1,0.794401788,0.018552609,0.103558323,0.312029739,0.748608914,0.473105509,0.961238037,0.922476074,0.004529082,0.197925638,0.79893087,0.216478247,0.216791342,0,0.284919214,73.44598032,-0.284919214,106.5540197,0.87451166,0,0.988517427,0.216478247,1.13019811,8,19,14% +8/9/2018 4:00,99.97986936,298.8311932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744977906,5.21558823,-3.740975343,3.740975343,0.830101849,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.058887433,86.62404557,-0.058887433,93.37595443,0,0,0,0,0,8,20,0% +8/9/2018 5:00,109.7718538,309.8393498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915880276,5.407716807,-1.39769656,1.39769656,0.769173879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.156165726,98.98441077,0.156165726,81.01558923,0,0.729827313,0,0,0,8,21,0% +8/9/2018 6:00,117.9681668,322.8724818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058932923,5.635187871,-0.554615861,0.554615861,0.624998588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351737022,110.593596,0.351737022,69.40640403,0,0.907848344,0,0,0,8,22,0% +8/9/2018 7:00,123.8150543,338.2957404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160980362,5.904374515,-0.044400671,0.044400671,0.537746652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51450086,120.9640976,0.51450086,59.03590237,0,0.952818433,0,0,0,8,23,0% +8/10/2018 8:00,126.5063807,355.6870623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207952868,6.207910344,0.365316641,-0.365316641,0.467680865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633366407,129.2989289,0.633366407,50.70107106,0,0.971056754,0,0,0,8,0,0% +8/10/2018 9:00,125.5604629,13.5435992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191443488,0.236380399,0.772949839,-0.772949839,0.397971482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700233516,134.445742,0.700233516,45.554258,0,0.978595249,0,0,0,8,1,0% +8/10/2018 10:00,121.1563074,30.04899829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114576474,0.524453957,1.267978107,-1.267978107,0.313316663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710545,135.2792754,0.710545,44.72072465,0,0.97963148,0,0,0,8,2,0% +8/10/2018 11:00,113.9994552,44.23866473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989665838,0.772110356,2.02286005,-2.02286005,0.184224248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663597609,131.5748275,0.663597609,48.42517249,0,0.974653134,0,0,0,8,3,0% +8/10/2018 12:00,104.9019798,56.16873891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830884939,0.980329431,3.648793873,-3.648793873,0,#DIV/0!,0,0,0.08577849,1,0.267495035,0,0.929320419,0.968082382,0.724496596,1,0,0,0.014099755,0.312029739,0.960793892,0.685290488,0.961238037,0.922476074,0,0,0,0,0,0,-0.562590537,124.2351406,0.562590537,55.76485938,0,0.961125416,0,0,0,8,4,0% +8/10/2018 13:00,94.52459871,66.39198404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649765472,1.158758718,12.61179268,-12.61179268,0,#DIV/0!,0,0,0.61927821,1,0.079125325,0,0.953511474,0.992273438,0.724496596,1,0,0,0.081850522,0.312029739,0.794243278,0.518739874,0.961238037,0.922476074,0,0,0,0,0,0,-0.414408083,114.4820462,0.414408083,65.51795383,0,0.929345983,0,0,0,8,5,0% +8/10/2018 14:00,83.21338537,75.56704384,48.45144875,195.7650003,25.31750915,24.91934033,0,24.91934033,24.55409284,0.365247487,56.94507174,44.43404072,12.51103101,0.763416313,11.7476147,1.452347556,1.318893721,-8.363314845,8.363314845,0.039635239,0.522533584,0.197766203,6.360840894,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.602328,0.55309252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143280941,6.114282214,23.74560894,6.667374733,0,44.43404072,-0.226976429,103.1191266,0.226976429,76.88087342,0,0.829712809,23.74560894,43.53486748,52.23830901,8,6,120% +8/10/2018 15:00,71.64573443,84.35672247,244.8627445,563.380304,67.45905971,67.27079896,0,67.27079896,65.42492016,1.845878798,71.87260345,10.46865657,61.40394687,2.034139548,59.36980733,1.250453961,1.472302553,-2.920012191,2.920012191,0.970494816,0.275497442,1.806420221,58.10068383,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.88892182,1.473727178,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.308745301,55.84858727,64.19766712,57.32231444,0,10.46865657,-0.018581865,91.0647237,0.018581865,88.9352763,0,0,64.19766712,57.32231444,101.7139755,8,7,58% +8/10/2018 16:00,59.84294934,93.5059275,456.31302,728.1785,90.49657524,237.4891075,146.2814577,91.20764989,87.7677696,3.439880292,113.3671803,0,113.3671803,2.72880564,110.6383747,1.0444565,1.631986305,-1.578316285,1.578316285,0.800061671,0.198321265,2.888514583,92.9045582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36571855,1.977010397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092718983,89.30339514,86.45843753,91.28040554,146.2814577,0,0.200886812,78.41117782,-0.200886812,101.5888222,0.801103622,0,203.6450431,91.28040554,263.3862429,8,8,29% +8/10/2018 17:00,48.16441866,104.0731608,646.6057305,810.8510817,105.7718774,444.5213175,337.0644654,107.4568522,102.5824651,4.874387124,159.9664579,0,159.9664579,3.189412361,156.7770455,0.840627688,1.816419319,-0.925271651,0.925271651,0.688384461,0.163580173,3.603919966,115.9144545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.60616732,2.310718398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.611027747,111.4213827,101.2171951,113.7321011,337.0644654,0,0.415692194,65.43708518,-0.415692194,114.5629148,0.929718694,0,414.5923296,113.7321011,489.0277151,8,9,18% +8/10/2018 18:00,37.11798194,117.9471933,798.6341536,855.7023757,116.3017202,641.7001809,522.8849451,118.8152358,112.7947943,6.020441594,197.1450228,0,197.1450228,3.506925972,193.6380968,0.647830997,2.058566866,-0.506907826,0.506907826,0.616840033,0.145625778,4.049577803,130.2483425,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4226466,2.540755929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933905333,125.199661,111.3565519,127.7404169,522.8849451,0,0.611059359,52.33385902,-0.611059359,127.666141,0.968174889,0,617.6006255,127.7404169,701.2041735,8,10,14% +8/10/2018 19:00,27.79438866,138.8072371,900.7083433,879.286178,122.8683598,806.1889897,680.2356443,125.9533453,119.1634254,6.789919953,222.0921003,0,222.0921003,3.704934383,218.3871659,0.485103596,2.422643312,-0.190555672,0.190555672,0.562740629,0.136413036,4.225968143,135.9216621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5444171,2.684212348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061699534,130.6530717,117.6061166,133.337284,680.2356443,0,0.773622583,39.31968242,-0.773622583,140.6803176,0.985369002,0,787.8892343,133.337284,875.1558199,8,11,11% +8/10/2018 20:00,22.67370428,171.0215699,945.3457153,888.3567724,125.6455048,921.6409743,792.6577298,128.9832445,121.8568292,7.126415317,232.998689,0,232.998689,3.788675551,229.2100135,0.395730793,2.984889487,0.079868638,-0.079868638,0.516495348,0.132909583,4.138720924,133.1154917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1334193,2.74488254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99848922,127.9556739,120.1319085,130.7005564,792.6577298,0,0.892274089,26.83958631,-0.892274089,153.1604137,0.993963407,0,908.0046862,130.7005564,993.5455864,8,12,9% +8/10/2018 21:00,24.62648367,207.2682061,929.3193484,885.1776588,124.6542667,976.7050591,848.8039767,127.9010824,120.8954806,7.005601794,229.0830214,0,229.0830214,3.758786066,225.3242353,0.429813223,3.617512631,0.336708608,-0.336708608,0.472573126,0.134135017,3.806280338,122.4230597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2093345,2.72322771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757637148,117.6777015,118.9669716,120.4009293,848.8039767,0,0.958908043,16.48217577,-0.958908043,163.5178242,0.997857357,0,965.9522642,120.4009293,1044.752264,8,13,8% +8/10/2018 22:00,32.37826128,233.2367231,853.7612481,868.970364,119.8886951,964.7162445,842.0066229,122.7096216,116.2736086,6.436012919,210.6193856,0,210.6193856,3.615086501,207.0042991,0.565107265,4.070748755,0.607141389,-0.607141389,0.426326397,0.140424147,3.262312124,104.927172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7666153,2.619117863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363534029,100.8599889,114.1301493,103.4791067,842.0066229,0,0.968970471,14.31049517,-0.968970471,165.6895048,0.99839884,0,954.7885852,103.4791067,1022.513591,8,14,7% +8/10/2018 23:00,42.81338636,249.8148001,724.1243268,835.43413,111.2739909,883.4566909,770.0792664,113.3774246,107.9186695,5.458755047,178.927648,0,178.927648,3.355321384,175.5723266,0.747234556,4.360090782,0.926439385,-0.926439385,0.371723224,0.15366697,2.55616365,82.21500975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7355301,2.430918921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851931863,79.02819457,105.5874619,81.45911349,770.0792664,0,0.921771375,22.81356579,-0.921771375,157.1864342,0.995756615,0,872.3989851,81.45911349,925.7123457,8,15,6% +8/10/2018 0:00,54.28600987,261.625128,550.0609577,773.7244391,98.40745322,734.4580811,634.8713838,99.58669727,95.44010542,4.146591846,136.3359954,0,136.3359954,2.967347799,133.3686476,0.94746961,4.56621989,1.362398242,-1.362398242,0.297169869,0.178902814,1.753627515,56.40268893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.74065957,2.14983338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270497165,54.21640998,93.01115674,56.36624336,634.8713838,0,0.820539396,34.86117416,-0.820539396,145.1388258,0.989064474,0,720.9398878,56.36624336,757.8304667,8,16,5% +8/10/2018 1:00,66.08943037,271.2723223,345.7315812,656.4097358,79.68199573,521.1449432,441.259383,79.88556026,77.27928956,2.606270696,86.22933076,0,86.22933076,2.402706166,83.82662459,1.153478161,4.734595194,2.101829613,-2.101829613,0.170719657,0.230473581,0.943070888,30.33240153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.28379258,1.740752438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.683251648,29.1566581,74.96704423,30.89741054,441.259383,0,0.672231624,47.76046283,-0.672231624,132.2395372,0.975620875,0,505.4689096,30.89741054,525.6906468,8,17,4% +8/10/2018 2:00,77.83406434,280.1170685,134.1312297,404.7098262,48.84120314,245.5696089,197.1900104,48.37959853,47.36846066,1.011137866,33.99441203,0,33.99441203,1.47274248,32.52166955,1.358460693,4.888965137,4.012340153,-4.012340153,0,0.364129989,0.36818562,11.84211517,0.134945768,1,0.244254873,0,0.932727323,0.971489287,0.724496596,1,45.77017887,1.066996913,0.021697745,0.312029739,0.94031168,0.664808276,0.961238037,0.922476074,0.258461259,11.38309153,46.02864013,12.45008845,170.580053,0,0.48723801,60.84079492,-0.48723801,119.1592051,0.947380748,0,207.6328984,12.45008845,215.7812323,8,18,4% +8/10/2018 3:00,88.97183554,289.0121036,0.654468107,3.600023773,0.589869669,1.594286289,1.01726971,0.577016579,0.572082922,0.004933657,0.176470117,0,0.176470117,0.017786747,0.15868337,1.552851472,5.044212787,43.29539518,-43.29539518,0,0.901296278,0.004446687,0.143020731,0.872996439,1,0.023093039,0,0.959137669,0.997899632,0.724496596,1,0.551522592,0.012886438,0.105474319,0.312029739,0.744762786,0.469259382,0.961238037,0.922476074,0.003156138,0.137476966,0.55467873,0.150363404,0.129196876,0,0.282573053,73.58616722,-0.282573053,106.4138328,0.873054607,0,0.667474658,0.150363404,0.765884498,8,19,15% +8/10/2018 4:00,100.2108099,298.6425583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749008579,5.212295928,-3.668347988,3.668347988,0.842521858,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055832434,86.79937284,-0.055832434,93.20062716,0,0,0,0,0,8,20,0% +8/10/2018 5:00,110.0235799,309.6726698,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920273724,5.404807691,-1.385535169,1.385535169,0.767094158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159497107,99.17770776,0.159497107,80.82229224,0,0.736514691,0,0,0,8,21,0% +8/10/2018 6:00,118.242211,322.7435368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063715897,5.632937356,-0.552271256,0.552271256,0.624597637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35528073,110.8106507,0.35528073,69.18934933,0,0.90926622,0,0,0,8,22,0% +8/10/2018 7:00,124.106969,338.2304759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166075234,5.903235434,-0.045596312,0.045596312,0.537951118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518178311,121.2101353,0.518178311,58.78986466,0,0.953508119,0,0,0,8,23,0% +8/11/2018 8:00,126.8028521,355.7106049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213127271,6.208321239,0.361919698,-0.361919698,0.468261776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637089878,129.5751597,0.637089878,50.42484029,0,0.971518138,0,0,0,8,0,0% +8/11/2018 9:00,125.8427086,13.65844205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196369604,0.238384785,0.767267757,-0.767267757,0.398943175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703912173,134.741727,0.703912173,45.25827297,0,0.978968411,0,0,0,8,1,0% +8/11/2018 10:00,121.409983,30.23071479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119003949,0.527625508,1.258719227,-1.258719227,0.314900024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714091137,135.568764,0.714091137,44.431236,0,0.979980926,0,0,0,8,2,0% +8/11/2018 11:00,114.2201879,44.45737988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99351835,0.775927656,2.005739802,-2.005739802,0.187151982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666932677,131.8307665,0.666932677,48.16923354,0,0.975029914,0,0,0,8,3,0% +8/11/2018 12:00,105.0927886,56.40544584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834215182,0.984460746,3.60413397,-3.60413397,0,#DIV/0!,0,0,0.07935035,1,0.270651036,0,0.928848962,0.967610925,0.724496596,1,0,0,0.013081234,0.312029739,0.963573946,0.688070542,0.961238037,0.922476074,0,0,0,0,0,0,-0.565650549,124.4474788,0.565650549,55.55252117,0,0.961606203,0,0,0,8,4,0% +8/11/2018 13:00,94.69161693,66.63956406,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652680489,1.163079805,12.16411513,-12.16411513,0,#DIV/0!,0,0,0.607848137,1,0.08202457,0,0.953200172,0.991962135,0.724496596,1,0,0,0.080680536,0.312029739,0.796810052,0.521306648,0.961238037,0.922476074,0,0,0,0,0,0,-0.417148025,114.6546609,0.417148025,65.34533914,0,0.930138471,0,0,0,8,5,0% +8/11/2018 14:00,83.36115972,75.82632381,46.4287932,189.1768277,24.55796134,24.16744805,0,24.16744805,23.8174482,0.349999855,55.38228527,43.38457368,11.99771159,0.740513144,11.25719844,1.454926705,1.32341901,-8.547348603,8.547348603,0.008163613,0.528938179,0.186474234,5.997652356,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.89423715,0.536499252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135099948,5.765171576,23.0293371,6.301670828,0,43.38457368,-0.229333445,103.2578321,0.229333445,76.74216792,0,0.831976851,23.0293371,42.39663181,50.77708469,8,6,120% +8/11/2018 15:00,71.78612478,84.63367382,242.3090828,560.5331563,67.10605785,66.90919083,0,66.90919083,65.08256261,1.826628218,72.33780264,11.56366493,60.77413772,2.023495239,58.75064248,1.252904235,1.477136266,-2.940452937,2.940452937,0.966999243,0.276944046,1.783042322,57.34877026,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.55983471,1.466015412,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.291808093,55.12581934,63.85164281,56.59183475,0,11.56366493,-0.020629761,91.18208208,0.020629761,88.81791792,0,0,63.85164281,56.59183475,100.8898668,8,7,58% +8/11/2018 16:00,59.98265912,93.81064888,453.8926048,726.8451209,90.27954952,235.7321839,144.7532617,90.97892218,87.557288,3.42163418,112.7737785,0,112.7737785,2.722261514,110.051517,1.046894896,1.637304696,-1.583519698,1.583519698,0.800951507,0.198900684,2.876028565,92.50296492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.16339563,1.9722692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083672905,88.9173684,86.24706854,90.8896376,144.7532617,0,0.199152828,78.51257687,-0.199152828,101.4874231,0.798936531,0,201.8957373,90.8896376,261.3811873,8,8,29% +8/11/2018 17:00,48.31458304,104.4191658,644.3331561,810.0674555,105.6056547,442.8316288,335.5531187,107.2785101,102.4212546,4.857255498,159.4104337,0,159.4104337,3.184400133,156.2260335,0.843248551,1.822458245,-0.926349516,0.926349516,0.688568787,0.163899147,3.592484925,115.5466643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45120568,2.307087056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.602743099,111.0678487,101.0539488,113.3749358,335.5531187,0,0.414228613,65.52925203,-0.414228613,114.470748,0.929293708,0,412.8813506,113.3749358,487.0829786,8,9,18% +8/11/2018 18:00,37.29566045,118.3444622,796.4426672,855.1466265,116.1569566,640.1281912,521.4698742,118.658317,112.6543958,6.003921244,196.6093064,0,196.6093064,3.502560815,193.1067455,0.650932071,2.065500516,-0.50624864,0.50624864,0.616727306,0.145844719,4.038391153,129.8885414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2876902,2.537593387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925800643,124.8538065,111.2134909,127.3913999,521.4698742,0,0.609801709,52.42483339,-0.609801709,127.5751666,0.968006133,0,615.9995275,127.3913999,699.3746509,8,10,14% +8/11/2018 19:00,28.02410338,139.2160698,898.5100142,878.8215944,122.7302378,804.6851413,678.882325,125.8028163,119.0294683,6.773348019,221.554925,0,221.554925,3.700769496,217.8541555,0.489112874,2.42977879,-0.188865827,0.188865827,0.562451648,0.136593066,4.214497156,135.5527158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4156524,2.681194902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053388843,130.2984264,117.4690413,132.9796213,678.882325,0,0.772491629,39.42183476,-0.772491629,140.5781652,0.98527438,0,786.3544028,132.9796213,873.3869054,8,11,11% +8/11/2018 20:00,22.96320445,171.2160056,943.0484121,887.9062106,125.503803,920.1141727,791.2856752,128.8284976,121.7194003,7.109097275,232.4374085,0,232.4374085,3.784402721,228.6530057,0.400783524,2.98828303,0.082416525,-0.082416525,0.516059634,0.133083097,4.126574445,132.7248192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0013174,2.741786888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989689138,127.5801446,119.9910065,130.3219315,791.2856752,0,0.891181597,26.97789654,-0.891181597,153.0221035,0.993894712,0,906.4456549,130.3219315,991.7387527,8,12,9% +8/11/2018 21:00,24.91615766,207.0881608,926.8365285,884.6775445,124.5001303,975.0442513,847.3113741,127.7328772,120.745992,6.986885249,228.4763851,0,228.4763851,3.754138284,224.7222469,0.434868988,3.614370248,0.34022087,-0.34022087,0.471972494,0.134328036,3.793189727,122.0020206,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0656403,2.719860407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748153045,117.2729828,118.8137933,119.9928432,847.3113741,0,0.957762949,16.7118685,-0.957762949,163.2881315,0.997795015,0,964.2568589,119.9928432,1042.789775,8,13,8% +8/11/2018 22:00,32.62802303,232.9290994,851.0200732,868.3413944,119.7126878,962.7993724,840.281115,122.5182574,116.1029086,6.415348784,209.9494487,0,209.9494487,3.60977923,206.3396695,0.56946643,4.065379708,0.612009536,-0.612009536,0.425493895,0.140669641,3.248151793,104.4717271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6025319,2.615272764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353274917,100.4221979,113.9558068,103.0374706,840.281115,0,0.967685199,14.60544777,-0.967685199,165.3945522,0.998330304,0,952.8339079,103.0374706,1020.269872,8,14,7% +8/11/2018 23:00,43.03349546,249.5161931,721.0737993,834.5394322,111.0631318,881.1498212,767.9998937,113.1499275,107.7141686,5.435758882,178.1816541,0,178.1816541,3.348963204,174.8326909,0.751076184,4.354879107,0.933575369,-0.933575369,0.370502899,0.154024639,2.54100508,81.72745803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.538956,2.426312441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.840949531,78.55954131,105.3799055,80.98585375,767.9998937,0,0.920267951,23.03471391,-0.920267951,156.9652861,0.995667998,0,870.0528223,80.98585375,923.0564438,8,15,6% +8/11/2018 0:00,54.49185727,261.3570145,546.6838712,772.2663291,98.13718458,731.596094,632.2969736,99.29912032,95.17798638,4.121133941,135.5090321,0,135.5090321,2.959198203,132.5498338,0.951062325,4.561540427,1.374083901,-1.374083901,0.295171503,0.17951359,1.737873106,55.89597298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48870078,2.143929024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.259083149,53.72933534,92.74778393,55.87326436,632.2969736,0,0.818755072,35.03963487,-0.818755072,144.9603651,0.988931676,0,718.0462898,55.87326436,754.6142238,8,16,5% +8/11/2018 1:00,66.29195345,271.0306073,342.0802587,653.5901388,79.28711003,517.4616738,437.9866172,79.47505661,76.89631112,2.578745485,85.33211809,0,85.33211809,2.390798906,82.94131918,1.157012855,4.730376471,2.125508064,-2.125508064,0.166670403,0.231779262,0.927881422,29.84385609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91565914,1.732125669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.672246931,28.68704964,74.58790607,30.41917531,437.9866172,0,0.670124274,47.92334295,-0.670124274,132.0766571,0.975386974,0,501.7943472,30.41917531,521.7030891,8,17,4% +8/11/2018 2:00,78.04049679,279.8952813,130.5645248,398.0210993,48.08648039,240.5804205,192.9596744,47.62074613,46.63649559,0.984250539,33.10686547,0,33.10686547,1.449984804,31.65688066,1.362063619,4.88509422,4.092844136,-4.092844136,0,0.368296675,0.362496201,11.6591239,0.145126621,1,0.239634052,0,0.933391016,0.972152979,0.724496596,1,45.07545954,1.050509055,0.023229682,0.312029739,0.936236836,0.660733432,0.961238037,0.922476074,0.254007,11.20719337,45.32946654,12.25770242,164.9560888,0,0.484797602,61.00078732,-0.484797602,118.9992127,0.946864176,0,201.5204777,12.25770242,209.5428988,8,18,4% +8/11/2018 3:00,89.16464986,288.8061217,0.420473168,2.442933827,0.384857407,1.060927226,0.684504986,0.37642224,0.373252536,0.003169704,0.113553459,0,0.113553459,0.011604871,0.101948588,1.556216716,5.040617723,53.44558449,-53.44558449,0,0.915295995,0.002901218,0.093313134,0.895937174,1,0.018708437,0,0.959546343,0.998308306,0.724496596,1,0.359658687,0.008407689,0.107410058,0.312029739,0.740907026,0.465403622,0.961238037,0.922476074,0.002066356,0.089696134,0.361725043,0.098103823,0.071231523,0,0.280197923,73.72798225,-0.280197923,106.2720178,0.871554709,0,0.423807212,0.098103823,0.488014202,8,19,15% +8/11/2018 4:00,100.4461821,298.4523648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753116598,5.208976427,-3.597390864,3.597390864,0.854656241,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.052705099,86.97882047,-0.052705099,93.02117953,0,0,0,0,0,8,20,0% +8/11/2018 5:00,110.2798049,309.5046979,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924745694,5.401876029,-1.373350955,1.373350955,0.765010535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162897071,99.37509278,0.162897071,80.62490722,0,0.74305771,0,0,0,8,21,0% +8/11/2018 6:00,118.5208395,322.6139924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068578881,5.63067638,-0.549858383,0.549858383,0.624185011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358887057,111.0318621,0.358887057,68.96813792,0,0.910680403,0,0,0,8,22,0% +8/11/2018 7:00,124.4034354,338.1660196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171249549,5.902110461,-0.046733965,0.046733965,0.538145668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.521910613,121.4604991,0.521910613,58.53950086,0,0.954198154,0,0,0,8,23,0% +8/12/2018 8:00,127.103506,355.7370064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21837467,6.208782033,0.358574392,-0.358574392,0.468833857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640859166,129.8559153,0.640859166,50.14408475,0,0.971979738,0,0,0,8,0,0% +8/12/2018 9:00,126.1283487,13.7779759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201354965,0.240471044,0.761641741,-0.761641741,0.399905281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707626965,135.0421652,0.707626965,44.95783475,0,0.979341302,0,0,0,8,1,0% +8/12/2018 10:00,121.6660944,30.41793177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123473935,0.530893061,1.249543533,-1.249543533,0.31646916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717663744,135.8619301,0.717663744,44.13806985,0,0.980329489,0,0,0,8,2,0% +8/12/2018 11:00,114.4425423,44.68154672,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997399168,0.779840105,1.988808845,-1.988808845,0.190047347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670285231,132.0890829,0.670285231,47.91091712,0,0.975404891,0,0,0,8,3,0% +8/12/2018 12:00,105.2846726,56.64723978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837564189,0.988680846,3.560308742,-3.560308742,0,#DIV/0!,0,0,0.072953862,1,0.273819459,0,0.928373547,0.96713551,0.724496596,1,0,0,0.012061797,0.312029739,0.966364632,0.690861228,0.961238037,0.922476074,0,0,0,0,0,0,-0.568720364,124.661041,0.568720364,55.338959,0,0.962083331,0,0,0,8,4,0% +8/12/2018 13:00,94.85941546,66.8918819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655609126,1.167483582,11.74508618,-11.74508618,0,#DIV/0!,0,0,0.596509702,1,0.084937143,0,0.952885456,0.991647419,0.724496596,1,0,0,0.079510012,0.312029739,0.799388959,0.523885554,0.961238037,0.922476074,0,0,0,0,0,0,-0.419891914,114.8277638,0.419891914,65.17223625,0,0.930921736,0,0,0,8,5,0% +8/12/2018 14:00,83.5095295,76.09012418,44.42525676,182.5448594,23.79075821,23.40827542,0,23.40827542,23.07337907,0.334896351,53.78246584,42.29366886,11.48879698,0.717379139,10.77141784,1.457516247,1.328023195,-8.740277042,8.740277042,0,0.535523257,0.179344785,5.768344768,1,0.024227545,0,0.113917501,0.961238037,1,0.452662799,0.728166203,22.1790096,0.517582902,0.115824807,0.004190835,0.724496596,0.448993192,0.999628395,0.960866432,0.129934686,5.54802595,22.30894429,6.065608852,0,41.2689971,-0.23168918,103.3965413,0.23168918,76.60345872,0,0.834193634,22.30894429,40.49194353,48.81011149,8,6,119% +8/12/2018 15:00,71.9273014,84.91507934,239.7417219,557.6408039,66.74845431,66.5430165,0,66.5430165,64.73574214,1.807274367,72.78632704,12.64545875,60.14086829,2.012712173,58.12815611,1.255368231,1.482047719,-2.961201621,2.961201621,0.963451009,0.278418182,1.759610962,56.59513718,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.22645768,1.458203118,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.274832152,54.40139855,63.50128984,55.85960167,0,12.64545875,-0.02267671,91.29939115,0.02267671,88.70060885,0,0,63.50128984,55.85960167,100.0602819,8,7,58% +8/12/2018 16:00,60.1234536,94.1198814,451.4505673,725.4906768,90.05983585,233.9725514,143.2251268,90.74742458,87.34419951,3.40322507,112.1750531,0,112.1750531,2.715636336,109.4594168,1.049352223,1.642701822,-1.588725355,1.588725355,0.801841726,0.199489916,2.863379318,92.09612166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95856687,1.967469281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.074508568,88.52629518,86.03307544,90.49376447,143.2251268,0,0.197418287,78.61397205,-0.197418287,101.3860279,0.796730657,0,200.1449247,90.49376447,259.3712837,8,8,30% +8/12/2018 17:00,48.46635821,104.769744,642.0310486,809.2696588,105.4369589,441.1321612,334.0346144,107.0975468,102.2576456,4.83990124,158.8471742,0,158.8471742,3.179313332,155.6678609,0.845897527,1.828576989,-0.927383061,0.927383061,0.688745533,0.164224081,3.580854229,115.1725811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.29393849,2.303401686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5943167,110.7082658,100.8882552,113.0116675,334.0346144,0,0.412760581,65.62163145,-0.412760581,114.3783685,0.928864401,0,411.1611174,113.0116675,485.1249935,8,9,18% +8/12/2018 18:00,37.47574742,118.7459544,794.2124848,854.5787177,116.0094565,638.538259,520.0398064,118.4984526,112.5113434,5.987109187,196.0641252,0,196.0641252,3.498113144,192.566012,0.654075182,2.072507877,-0.50553126,0.50553126,0.616604627,0.146068538,4.026969324,129.5211761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1501828,2.534371065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.917525567,124.500681,111.0677084,127.0350521,520.0398064,0,0.608533533,52.51645677,-0.608533533,127.4835432,0.967835259,0,614.3805693,127.0350521,697.5224702,8,10,14% +8/12/2018 19:00,28.25714879,139.6275263,896.2629247,878.3448997,122.5889152,803.1533948,677.5045792,125.6488156,118.8924071,6.756408509,221.0058308,0,221.0058308,3.696508098,217.3093227,0.493180284,2.43696006,-0.187108523,0.187108523,0.562151132,0.136777849,4.202750661,135.1749081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.283904,2.678107534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044878547,129.9352633,117.3287825,132.6133708,677.5045792,0,0.771342305,39.52541988,-0.771342305,140.4745801,0.985177936,0,784.7913457,132.6133708,871.5841446,8,11,11% +8/12/2018 20:00,23.25661897,171.4130872,940.6920212,887.4422865,125.3583233,918.5479977,789.8783566,128.6696411,121.5783073,7.091333806,231.8616875,0,231.8616875,3.78001597,228.0816715,0.405904574,2.991722753,0.085043572,-0.085043572,0.515610382,0.133261812,4.114115457,132.3240953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8656934,2.738608702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980662643,127.1949536,119.8463561,129.9335623,789.8783566,0,0.890061662,27.11900366,-0.890061662,152.8809963,0.993824117,0,904.8465162,129.9335623,989.885434,8,12,9% +8/12/2018 21:00,25.21064081,206.9137226,924.2847553,884.1613783,124.3415499,973.3315835,845.7717412,127.5598423,120.5921934,6.967648905,227.8528964,0,227.8528964,3.749356501,224.1035399,0.440008689,3.611325727,0.343830966,-0.343830966,0.471355132,0.134527319,3.779756585,121.5699646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9178033,2.716396022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738420779,116.8576741,118.656224,119.5740701,845.7717412,0,0.956580735,16.9458329,-0.956580735,163.0541671,0.997730497,0,962.5084833,119.5740701,1040.767321,8,13,8% +8/12/2018 22:00,32.88311129,232.6242059,848.2012863,867.6914068,119.5314522,960.8176042,838.4963668,122.3212374,115.9271379,6.394099578,209.2605363,0,209.2605363,3.604314307,205.656222,0.57391856,4.060058313,0.617008459,-0.617008459,0.424639029,0.140923451,3.23362968,104.004646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4335744,2.611313446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.342753696,99.97322178,113.7763281,102.5845352,838.4963668,0,0.966353199,14.90509744,-0.966353199,165.0949026,0.998259084,0,950.8129429,102.5845352,1017.95247,8,14,7% +8/12/2018 23:00,43.25877108,249.2178358,717.9389796,833.6142577,110.8459998,878.7645745,765.8488634,112.9157112,107.5035839,5.412127287,177.4150335,0,177.4150335,3.342415871,174.0726176,0.755007986,4.34967179,0.940906981,-0.940906981,0.369249119,0.154394737,2.525481173,81.2281558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3365339,2.42156892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.829702513,78.07959302,105.1662364,80.50116194,765.8488634,0,0.918708931,23.26193968,-0.918708931,156.7380603,0.995575798,0,867.6268301,80.50116194,920.3132306,8,15,6% +8/12/2018 0:00,54.70257059,261.0880572,543.218782,770.7575775,97.858862,728.6408287,629.6377598,99.00306889,94.90805625,4.095012635,134.6604886,0,134.6604886,2.95080575,131.7096829,0.954739966,4.556846235,1.386117836,-1.386117836,0.293113579,0.180146315,1.721774939,55.37820059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22923367,2.137848721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247420082,53.23163282,92.47665376,55.36948154,629.6377598,0,0.816907648,35.22357516,-0.816907648,144.7764248,0.988793571,0,715.0584226,55.36948154,751.2966409,8,16,5% +8/12/2018 1:00,66.49908545,270.787595,338.3426994,650.6681719,78.87984726,513.6645855,434.6126865,79.05189902,76.50132883,2.550570185,84.41362311,0,84.41362311,2.378518431,82.03510468,1.160627991,4.726135106,2.150034785,-2.150034785,0.162476087,0.233135952,0.912423179,29.34666587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.53598714,1.723228506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.661047487,28.20913149,74.19703463,29.93236,434.6126865,0,0.66794828,48.09109108,-0.66794828,131.9089089,0.975143905,0,498.0069468,29.93236,517.5970778,8,17,4% +8/12/2018 2:00,78.25131806,279.6720038,126.9364277,391.0814063,47.30473343,235.4483147,188.6130931,46.83522159,45.87832118,0.95690041,32.20361877,0,32.20361877,1.426412249,30.77720652,1.365743144,4.881197293,4.177752495,-4.177752495,0,0.37266476,0.356603062,11.4695803,0.155607991,1,0.234942729,0,0.934060153,0.972822116,0.724496596,1,44.35472253,1.033430819,0.024792459,0.312029739,0.932098957,0.656595552,0.961238037,0.922476074,0.249431747,11.02499685,44.60415428,12.05842767,159.2633886,0,0.482286015,61.16518799,-0.482286015,118.834812,0.946327079,0,195.3194116,12.05842767,203.2114113,8,18,4% +8/12/2018 3:00,89.35889449,288.5985822,0.248251064,1.584097852,0.230526327,0.665506805,0.440060276,0.225446529,0.223575107,0.001871421,0.067142564,0,0.067142564,0.006951219,0.060191345,1.559606925,5.036995477,69.84316882,-69.84316882,0,0.928601564,0.001737805,0.055893777,0.919444045,1,0.014316814,0,0.959951035,0.998712998,0.724496596,1,0.21531927,0.005036135,0.10936252,0.312029739,0.737048511,0.461545106,0.961238037,0.922476074,0.001242279,0.053727224,0.216561549,0.058763359,0.035449476,0,0.27779867,73.87113372,-0.27779867,106.1288663,0.870013537,0,0.247403073,0.058763359,0.285862516,8,19,16% +8/12/2018 4:00,100.6859186,298.2606601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75730079,5.205630548,-3.528097013,3.528097013,0.866506187,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049506211,87.1623431,-0.049506211,92.8376569,0,0,0,0,0,8,20,0% +8/12/2018 5:00,110.5404545,309.3354663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929294887,5.398922381,-1.36115465,1.36115465,0.762924844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.166364477,99.5765089,0.166364477,80.4234911,0,0.749455071,0,0,0,8,21,0% +8/12/2018 6:00,118.8039725,322.4838709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073520484,5.628405331,-0.547380255,0.547380255,0.623761226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36255454,111.2571622,0.36255454,68.74283779,0,0.912089715,0,0,0,8,22,0% +8/12/2018 7:00,124.7043697,338.1023986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176501843,5.901000064,-0.047813943,0.047813943,0.538330355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525696044,121.7151124,0.525696044,58.28488761,0,0.954888004,0,0,0,8,23,0% +8/13/2018 8:00,127.4082512,355.7663125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223693478,6.209293522,0.355281706,-0.355281706,0.46939694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644672359,130.1411145,0.644672359,49.85888547,0,0.972441223,0,0,0,8,0,0% +8/13/2018 9:00,126.4172824,13.90225054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20639781,0.242640045,0.756073706,-0.756073706,0.400857471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711375878,135.3469711,0.711375878,44.65302895,0,0.97971367,0,0,0,8,1,0% +8/13/2018 10:00,121.924537,30.61067237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127984609,0.534257019,1.240453901,-1.240453901,0.318023579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721260798,136.1586726,0.721260798,43.84132739,0,0.980676948,0,0,0,8,2,0% +8/13/2018 11:00,114.6664213,44.91115209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001306593,0.783847475,1.972070797,-1.972070797,0.192909721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673653337,132.3496612,0.673653337,47.65033878,0,0.975777849,0,0,0,8,3,0% +8/13/2018 12:00,105.477549,56.89407953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840930517,0.992989013,3.517310804,-3.517310804,0,#DIV/0!,0,0,0.066591145,1,0.276999131,0,0.927894331,0.966656295,0.724496596,1,0,0,0.011041822,0.312029739,0.969164928,0.693661524,0.961238037,0.922476074,0,0,0,0,0,0,-0.571798225,124.8757169,0.571798225,55.12428312,0,0.962556567,0,0,0,8,4,0% +8/13/2018 13:00,95.02792853,67.14887777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658550234,1.171969006,11.35216797,-11.35216797,0,#DIV/0!,0,0,0.585265541,1,0.087862109,0,0.952567404,0.991329367,0.724496596,1,0,0,0.078339341,0.312029739,0.801979139,0.526475734,0.961238037,0.922476074,0,0,0,0,0,0,-0.422638247,115.0012635,0.422638247,64.99873653,0,0.931695515,0,0,0,8,5,0% +8/13/2018 14:00,83.65844091,76.35837123,42.44292358,175.8761292,23.0164827,22.64240351,0,22.64240351,22.32245083,0.319952686,52.14727511,41.16246503,10.98481009,0.694031875,10.29077821,1.460115241,1.332704989,-8.942693368,8.942693368,0,0.542292584,0.173507969,5.580612707,1,0.056108964,0,0.111360506,0.961238037,1,0.457628408,0.733131812,21.45718881,0.498088356,0.115824807,0.009854682,0.724496596,0.448993192,0.999119429,0.960357466,0.125705933,5.371520316,21.58289474,5.869608672,0,38.85288176,-0.234042364,103.5351801,0.234042364,76.46481986,0,0.836363464,21.58289474,38.36473943,46.69184941,8,6,116% +8/13/2018 15:00,72.06923131,85.20085099,237.161347,554.703056,66.38625186,66.17228384,0,66.17228384,64.38446143,1.787822411,73.21760217,13.7132974,59.50430477,2.001790433,57.50251434,1.257845376,1.487035375,-2.982259893,2.982259893,0.959849832,0.279920201,1.736134097,55.84004048,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.88879331,1.450290354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.257823243,53.67557089,63.14661655,55.12586124,0,13.7132974,-0.024721871,91.41660319,0.024721871,88.58339681,0,0,63.14661655,55.12586124,99.22539021,8,7,57% +8/13/2018 16:00,60.26531435,94.4335166,448.9871873,724.114983,89.83743105,232.2106295,141.6974734,90.51315611,87.12850104,3.384655071,111.5710718,0,111.5710718,2.708930011,108.8621417,1.05182816,1.648175789,-1.59393161,1.59393161,0.802732049,0.200089075,2.850567367,91.68404528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.75122929,1.962610571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065226354,88.13019169,85.81645564,90.09280227,141.6974734,0,0.195683664,78.71533587,-0.195683664,101.2846641,0.79448557,0,198.3930535,90.09280227,257.3569907,8,8,30% +8/13/2018 17:00,48.61973711,105.1247519,639.699371,808.4574929,105.2657726,439.4229896,332.5090444,106.9139452,102.0916212,4.822324069,158.2766701,0,158.2766701,3.174151433,155.1025187,0.848574494,1.834773046,-0.928371342,0.928371342,0.688914539,0.164555067,3.569027255,114.792185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1343495,2.299661908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.585748097,110.3426145,100.7200976,112.6422764,332.5090444,0,0.411288221,65.71421542,-0.411288221,114.2857846,0.928430751,0,409.4317195,112.6422764,483.1538366,8,9,18% +8/13/2018 18:00,37.65823814,119.1514647,791.9433271,853.9984391,115.8591908,636.9301275,518.5945154,118.3356121,112.3656087,5.970003318,195.5094105,0,195.5094105,3.493582078,192.0158284,0.657260246,2.079585367,-0.504755183,0.504755183,0.61647191,0.146297326,4.015311061,129.1462063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0100972,2.531088323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.909079195,124.1402458,110.9191764,126.6713341,518.5945154,0,0.607254641,52.60874075,-0.607254641,127.3912592,0.967662218,0,612.7434956,126.6713341,695.6473503,8,10,14% +8/13/2018 19:00,28.49349872,140.0413403,893.9666416,877.8558716,122.4443548,801.5932148,676.1019109,125.4913039,118.7522057,6.739098158,220.4447113,0,220.4447113,3.692149069,216.7525622,0.497305368,2.444182478,-0.185283461,0.185283461,0.561839028,0.136967476,4.190727262,134.7881943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1491371,2.674949432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036167636,129.5635393,117.1853048,132.2384887,676.1019109,0,0.770174163,39.6304689,-0.770174163,140.3695311,0.985079619,0,783.1995177,132.2384887,869.7469637,8,11,11% +8/13/2018 20:00,23.55387758,171.6126055,938.2760552,886.9647579,125.2090244,916.9417163,788.4350848,128.5066315,121.4335103,7.073121233,231.2714066,0,231.2714066,3.775514057,227.4958926,0.411092715,2.995205004,0.087750038,-0.087750038,0.515147549,0.133445827,4.101342881,131.9132853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7265091,2.735347082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971408956,126.8000674,119.697918,129.5354145,788.4350848,0,0.888913655,27.26294688,-0.888913655,152.7370531,0.993751567,0,903.2065191,129.5354145,987.9848572,8,12,9% +8/13/2018 21:00,25.50983574,206.7448599,921.6635908,883.6288785,124.1784838,971.5662214,844.1842876,127.3819338,120.4340443,6.94788946,227.2124477,0,227.2124477,3.744439456,223.4680082,0.445230625,3.608378517,0.347539294,-0.347539294,0.47072097,0.134732982,3.765980587,121.1268812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7657843,2.712833639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728440116,116.4317655,118.4942245,119.1445991,844.1842876,0,0.955360681,17.18404279,-0.955360681,162.8159572,0.997663745,0,960.7062825,119.1445991,1038.68404,8,13,8% +8/13/2018 22:00,33.14344882,232.3221992,845.3046007,867.0200399,119.3449471,958.7701037,836.6515839,122.1185198,115.7462567,6.372263138,208.5525775,0,208.5525775,3.598690493,204.953887,0.578462307,4.054787301,0.622139019,-0.622139019,0.423761651,0.14118573,3.218746617,103.5259556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2597045,2.607239011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331970967,99.5130863,113.5916755,102.1203253,836.6515839,0,0.964973755,15.20933689,-0.964973755,164.7906631,0.998185119,0,948.7248366,102.1203253,1015.560547,8,14,7% +8/13/2018 23:00,43.48915711,248.919892,714.7198288,832.658066,110.6225508,876.3001952,763.6254625,112.6747327,107.2868727,5.387859968,176.6277753,0,176.6277753,3.33567806,173.2920972,0.75902898,4.34447169,0.948436415,-0.948436415,0.36796151,0.154777503,2.509594322,80.71718007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.1282229,2.416687399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818192543,77.58842371,104.9464155,80.00511111,763.6254625,0,0.917093695,23.49516861,-0.917093695,156.5048314,0.995479944,0,865.1202478,80.00511111,917.4819929,8,15,6% +8/13/2018 0:00,54.91810059,260.8183864,539.6659975,769.1971708,97.57241763,725.5916311,626.8931516,98.69847948,94.63024923,4.068230245,133.7904375,0,133.7904375,2.942168395,130.8482691,0.958501674,4.552139592,1.398506686,-1.398506686,0.290994961,0.180801492,1.705337556,54.84951787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.962195,2.131590987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235511254,52.72344288,92.19770625,54.85503387,626.8931516,0,0.814996695,35.41296495,-0.814996695,144.587035,0.988650058,0,711.9756569,54.85503387,747.8771795,8,16,5% +8/13/2018 1:00,66.71077545,270.5433863,334.51974,647.6412725,78.46001868,509.7529598,431.137049,78.61591073,76.09415963,2.521751102,83.47404294,0,83.47404294,2.36585905,81.10818389,1.164322678,4.72187286,2.175438198,-2.175438198,0.158131847,0.234545258,0.896704507,28.84109936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.14460062,1.714056828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.649659363,27.72316173,73.79425998,29.43721855,431.137049,0,0.66570348,48.26368287,-0.66570348,131.7363171,0.974891485,0,494.1060978,29.43721855,513.3721686,8,17,4% +8/13/2018 2:00,78.46646813,279.4473145,123.2497027,383.8846253,46.49527594,230.1731661,184.150786,46.02238014,45.09327182,0.929108319,31.28532146,0,31.28532146,1.402004119,29.88331734,1.369498221,4.877275724,4.267373729,-4.267373729,0,0.377244528,0.35050103,11.27331795,0.166395883,1,0.230182775,0,0.934734241,0.973496204,0.724496596,1,43.60728494,1.015747211,0.026385905,0.312029739,0.927899634,0.652396229,0.961238037,0.922476074,0.24473344,10.83634202,43.85201838,11.85208923,153.5088534,0,0.479703468,61.33396318,-0.479703468,118.6660368,0.945768942,0,189.0359243,11.85208923,196.7928796,8,18,4% +8/13/2018 3:00,89.55430239,288.3895452,0.128758392,0.976472315,0.121162597,0.387379986,0.268900254,0.118479733,0.117509098,0.000970635,0.034872462,0,0.034872462,0.003653499,0.031218963,1.563017436,5.033347092,100.7587061,-100.7587061,0,0.94100738,0.000913375,0.029377274,0.94350474,1,0.009924375,0,0.960351155,0.999113118,0.724496596,1,0.113107327,0.002646948,0.111329189,0.312029739,0.733192956,0.457689551,0.961238037,0.922476074,0.000655464,0.028238554,0.113762791,0.030885501,0.01519159,0,0.275379291,74.01538131,-0.275379291,105.9846187,0.868432244,0,0.126955657,0.030885501,0.1471696,8,19,16% +8/13/2018 4:00,100.929949,298.0674873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761559923,5.202259047,-3.460455713,3.460455713,0.878073531,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046236637,87.349891,-0.046236637,92.650109,0,0,0,0,0,8,20,0% +8/13/2018 5:00,110.8054514,309.1650027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933919956,5.395947228,-1.348956661,1.348956661,0.760838865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169898112,99.78189511,0.169898112,80.21810489,0,0.75570597,0,0,0,8,21,0% +8/13/2018 6:00,119.0915282,322.3531894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078539279,5.62612451,-0.544840001,0.544840001,0.623326817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.366281658,111.4864794,0.366281658,68.51352058,0,0.913493028,0,0,0,8,22,0% +8/13/2018 7:00,125.0096867,338.0396343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181830629,5.899904621,-0.048836741,0.048836741,0.538505264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529532829,121.9738954,0.529532829,58.02610463,0,0.955577148,0,0,0,8,23,0% +8/14/2018 8:00,127.7169965,355.7985644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229082099,6.209856423,0.352042398,-0.352042398,0.469950894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648527512,130.4306743,0.648527512,49.56932566,0,0.972902268,0,0,0,8,0,0% +8/14/2018 9:00,126.7094093,14.03131174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211496386,0.244892588,0.750565279,-0.750565279,0.401799467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715156883,135.6560578,0.715156883,44.34394219,0,0.980085271,0,0,0,8,1,0% +8/14/2018 10:00,122.1852076,30.80895533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13253417,0.53771771,1.231452784,-1.231452784,0.319562861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724880288,136.4588901,0.724880288,43.54110992,0,0.981023093,0,0,0,8,2,0% +8/14/2018 11:00,114.8917299,45.14617844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005238971,0.787949459,1.955528518,-1.955528518,0.195738618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677035091,132.6123868,0.677035091,47.38761317,0,0.976148584,0,0,0,8,3,0% +8/14/2018 12:00,105.6713383,57.14591995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844312777,0.997384457,3.475131106,-3.475131106,0,#DIV/0!,0,0,0.060264072,1,0.280188966,0,0.927411462,0.966173425,0.724496596,1,0,0,0.010021656,0.312029739,0.971973885,0.696470481,0.961238037,0.922476074,0,0,0,0,0,0,-0.574882422,125.0913986,0.574882422,54.90860143,0,0.963025693,0,0,0,8,4,0% +8/14/2018 13:00,95.19709409,67.41048845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66150273,1.176534974,10.98310114,-10.98310114,0,#DIV/0!,0,0,0.574117815,1,0.090798614,0,0.952246087,0.991008051,0.724496596,1,0,0,0.077168879,0.312029739,0.804579803,0.529076399,0.961238037,0.922476074,0,0,0,0,0,0,-0.425385585,115.1750721,0.425385585,64.8249279,0,0.932459581,0,0,0,8,5,0% +8/14/2018 14:00,83.80784369,76.63098827,40.48385257,169.1780518,22.23575687,21.87045114,0,21.87045114,21.56526676,0.305184381,50.4785717,39.99230282,10.48626887,0.670490111,9.815778762,1.462722811,1.337463054,-9.155251297,9.155251297,0,0.549250021,0.167622528,5.391316689,1,0.087419607,0,0.108795636,0.961238037,1,0.462662237,0.738165641,20.72935468,0.478784411,0.115824807,0.01558871,0.724496596,0.448993192,0.99859627,0.959834307,0.121441951,5.193039492,20.85079663,5.671823903,0,36.49619141,-0.236391792,103.6736784,0.236391792,76.32632165,0,0.838486734,20.85079663,36.27339624,44.591009,8,6,114% +8/14/2018 15:00,72.2118855,85.49089795,234.5685749,551.7196467,66.01944349,65.79699068,0,65.79699068,64.02871368,1.768277,73.63108618,14.76648965,58.86459654,1.990729807,56.87386673,1.260335161,1.49209765,-3.003630192,3.003630192,0.956195296,0.281450503,1.712618982,55.08371354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.54683504,1.442276969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.240786622,52.94856067,62.78762167,54.39083764,0,14.76648965,-0.02676448,91.53367491,0.02676448,88.46632509,0,0,62.78762167,54.39083764,98.38533708,8,7,57% +8/14/2018 16:00,60.40822668,94.75144319,446.5026815,722.7178152,89.61232581,230.4467667,140.1706573,90.27610937,86.91018356,3.365925817,110.9618868,0,110.9618868,2.702142258,108.2597446,1.054322451,1.653724655,-1.599137102,1.599137102,0.80362224,0.200698293,2.837593005,91.26674522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.54137422,1.957692867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055826473,87.729067,85.5972007,89.68675987,140.1706573,0,0.193949359,78.81664537,-0.193949359,101.1833546,0.792200747,0,196.6405001,89.68675987,255.3386907,8,8,30% +8/14/2018 17:00,48.77471589,105.4840426,637.3380375,807.630737,105.0920743,437.7041197,330.9764359,106.7276839,101.9231605,4.804523339,157.6988998,0,157.6988998,3.168913789,154.529986,0.851279384,1.841043852,-0.929313588,0.929313588,0.689075673,0.164892205,3.55700325,114.4054516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97241874,2.295867253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.577036746,109.9708717,100.5494555,112.266739,330.9764359,0,0.409811589,65.80700032,-0.409811589,114.1929997,0.927992713,0,407.6931763,112.266739,481.1695116,8,9,18% +8/14/2018 18:00,37.84313014,119.5607848,789.634885,853.4055679,115.7061279,635.3034826,517.1337201,118.1697625,112.2171612,5.952601307,194.9450866,0,194.9450866,3.488966666,191.45612,0.66048722,2.086729352,-0.503920025,0.503920025,0.616329089,0.146531175,4.003415097,128.7635912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8674038,2.527744473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900460609,123.7724616,110.7678644,126.3002061,517.1337201,0,0.605964783,52.70170104,-0.605964783,127.298299,0.967486954,0,611.0879921,126.3002061,693.7489509,8,10,14% +8/14/2018 19:00,28.73312782,140.4572453,891.6207252,877.3542808,122.2965186,800.0040276,674.6737866,125.330241,118.6088274,6.721413649,219.8714589,0,219.8714589,3.687691262,216.1837677,0.501487685,2.451441389,-0.183390434,0.183390434,0.561515301,0.137162041,4.178425656,134.3925323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0113164,2.671719766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.027255164,129.1832139,117.0385715,131.8549337,674.6737866,0,0.768986715,39.73701623,-0.768986715,140.2629838,0.984979371,0,781.5783334,131.8549337,867.8747504,8,11,11% +8/14/2018 20:00,23.85491012,171.8143481,935.8000446,886.473379,125.0558657,915.2945803,786.9551543,128.339426,121.2849699,7.05445602,230.6664509,0,230.6664509,3.770895758,226.8955551,0.416346724,2.998726077,0.090536103,-0.090536103,0.514671104,0.133635242,4.088255838,131.492361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5837264,2.73200114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.961927438,126.395459,119.5456539,129.1274601,786.9551543,0,0.887736928,27.40976644,-0.887736928,152.5902336,0.993677008,0,901.524897,129.1274601,986.0362371,8,12,9% +8/14/2018 21:00,25.81364291,206.5815227,918.9726399,883.0797637,124.010892,969.7473419,842.5482319,127.19911,120.2715061,6.927603935,226.554942,0,226.554942,3.739385946,222.815556,0.450533061,3.605527745,0.351346184,-0.351346184,0.470069954,0.134945141,3.751861702,120.6727693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6095464,2.709172388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718211031,115.9952558,118.3277574,118.7044282,842.5482319,0,0.954102072,17.42647032,-0.954102072,162.5735297,0.997594706,0,958.8494127,118.7044282,1036.539087,8,13,8% +8/14/2018 22:00,33.40895308,232.0232185,842.3297963,866.3269347,119.153135,956.6560734,834.7460073,121.9100661,115.5602283,6.349837806,207.8255179,0,207.8255179,3.592906647,204.2326113,0.583096231,4.049569104,0.627402025,-0.627402025,0.422861624,0.141456631,3.203503806,103.0356944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.080887,2.603048635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.320927602,99.04182858,113.4018146,101.6448772,834.7460073,0,0.963546178,15.5180582,-0.963546178,164.4819418,0.998108351,0,946.5687755,101.6448772,1013.093315,8,14,7% +8/14/2018 23:00,43.7245913,248.6225155,711.4163951,831.6703196,110.3927452,873.7559921,761.3290382,112.4269539,107.0639966,5.36295729,175.8198901,0,175.8198901,3.328748573,172.4911415,0.763138082,4.33928149,0.956165844,-0.956165844,0.3666397,0.155173181,2.493347351,80.19462164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9139859,2.41166701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806421668,77.08612067,104.7204076,79.49778768,761.3290382,0,0.915421676,23.73431817,-0.915421676,156.2656818,0.995380363,0,862.5323817,79.49778768,914.5620938,8,15,6% +8/14/2018 0:00,55.13839204,260.5481264,536.0259288,767.5840921,97.27778789,722.4479333,624.0626398,98.38529354,94.34450367,4.04078987,132.8989766,0,132.8989766,2.933284222,129.9656923,0.962346485,4.547422665,1.411257221,-1.411257221,0.288814491,0.181479631,1.688565978,54.31008626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68752549,2.125154433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223360303,52.2049207,91.9108858,54.33007513,624.0626398,0,0.813021852,35.60776598,-0.813021852,144.392234,0.988501038,0,708.797453,54.33007513,744.3554005,8,16,5% +8/14/2018 1:00,66.92696681,270.2980774,330.6123386,644.5068332,78.02743573,505.7261739,427.5592578,78.16691611,75.67462065,2.49229546,82.51360427,0,82.51360427,2.352815078,80.16078919,1.168095929,4.717591413,2.201748069,-2.201748069,0.153632595,0.236008844,0.880734316,28.32744311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.7413238,1.704606515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.638089014,27.2294158,73.37941281,28.93402232,427.5592578,0,0.663389798,48.44108666,-0.663389798,131.5589133,0.974629531,0,490.0912918,28.93402232,509.0280307,8,17,4% +8/14/2018 2:00,78.68588121,279.2212876,119.5073582,376.4247707,45.65741776,224.755118,179.5735429,45.18157511,44.28067816,0.900896946,30.3526822,0,30.3526822,1.376739604,28.97594259,1.373327702,4.87333081,4.36204646,-4.36204646,0,0.382046917,0.344184901,11.07016954,0.177496426,1,0.225356138,0,0.935412781,0.974174744,0.724496596,1,42.83246239,0.997443156,0.028009829,0.312029739,0.923640529,0.648137125,0.961238037,0.922476074,0.239909953,10.64106804,43.07237235,11.63851119,147.6998808,0,0.477050282,61.50707219,-0.477050282,118.4929278,0.945189245,0,182.6767112,11.63851119,190.293884,8,18,4% +8/14/2018 3:00,89.75073779,288.1790665,0.05192899,0.569078318,0.049453253,0.203678704,0.155325187,0.048353518,0.047962055,0.000391463,0.014081983,0,0.014081983,0.001491198,0.012590785,1.566445881,5.029673546,180.689008,-180.689008,0,0.952324571,0.0003728,0.011990514,0.968121888,1,0.005534314,0,0.960746405,0.999508368,0.724496596,1,0.046138637,0.001080368,0.113308836,0.312029739,0.729343432,0.453840028,0.961238037,0.922476074,0.000268625,0.011525738,0.046407261,0.012606106,0.004951474,0,0.272941671,74.16061134,-0.272941671,105.8393887,0.866810677,0,0.050699252,0.012606106,0.058949696,8,19,16% +8/14/2018 4:00,101.1781979,297.8728854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765892684,5.198862602,-3.39445338,3.39445338,0.889360595,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042897346,87.54140868,-0.042897346,92.45859132,0,0,0,0,0,8,20,0% +8/14/2018 5:00,111.0747144,308.9933296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938619482,5.392950968,-1.336767178,1.336767178,0.75875434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.173496663,99.99118502,0.173496663,80.00881498,0,0.761810018,0,0,0,8,21,0% +8/14/2018 6:00,119.3834216,322.2219596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083633778,5.623834117,-0.542240893,0.542240893,0.622882344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.3700668,111.7197371,0.3700668,68.28026294,0,0.914889258,0,0,0,8,22,0% +8/14/2018 7:00,125.3192988,337.9777426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18723438,5.898824406,-0.04980306,0.04980306,0.538670514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533419127,122.2367639,0.533419127,57.76323608,0,0.956265079,0,0,0,8,23,0% +8/15/2018 8:00,128.0296491,355.8337974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234538917,6.210471354,0.348856991,-0.348856991,0.470495631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652422633,130.724508,0.652422633,49.27549196,0,0.973362561,0,0,0,8,0,0% +8/15/2018 9:00,127.004629,14.16519957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216648941,0.247229372,0.745117796,-0.745117796,0.402731042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718967936,135.9693369,0.718967936,44.03066311,0,0.980455869,0,0,0,8,1,0% +8/15/2018 10:00,122.4480045,31.01279339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137120842,0.541275355,1.222542213,-1.222542213,0.321086658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728520204,136.7624806,0.728520204,43.23751945,0,0.981367724,0,0,0,8,2,0% +8/15/2018 11:00,115.1183759,45.38660234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009194689,0.792145647,1.939184126,-1.939184126,0.198533673,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680428618,132.8771459,0.680428618,47.12285414,0,0.976516906,0,0,0,8,3,0% +8/15/2018 12:00,105.8659642,57.40271063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847709642,1.0018663,3.433759063,-3.433759063,0,#DIV/0!,0,0,0.053974263,1,0.283387965,0,0.926925075,0.965687039,0.724496596,1,0,0,0.009001616,0.312029739,0.974790636,0.699287232,0.961238037,0.922476074,0,0,0,0,0,0,-0.577971298,125.3079807,0.577971298,54.69201933,0,0.963490514,0,0,0,8,4,0% +8/15/2018 13:00,95.36685411,67.67664616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664465602,1.181180302,10.63586759,-10.63586759,0,#DIV/0!,0,0,0.563068217,1,0.093745888,0,0.95192157,0.990683533,0.724496596,1,0,0,0.07599894,0.312029739,0.807190239,0.531686835,0.961238037,0.922476074,0,0,0,0,0,0,-0.428132554,115.3491056,0.428132554,64.65089441,0,0.933213739,0,0,0,8,5,0% +8/15/2018 14:00,83.95769144,76.90789452,38.5500747,162.4584281,21.44924352,21.09307643,0,21.09307643,20.80246969,0.290606747,48.77841532,38.78472957,9.993685759,0.646773831,9.346911928,1.465338148,1.34229598,-9.378673399,9.378673399,0,0.556399532,0.161693458,5.200617422,1,0.118166796,0,0.106223554,0.961238037,1,0.467763419,0.743266823,19.99612512,0.45966958,0.115824807,0.021392337,0.724496596,0.448993192,0.998058697,0.959296734,0.11714636,5.012756097,20.11327148,5.472425677,0,34.20166236,-0.238736334,103.8119698,0.238736334,76.18803022,0,0.840563928,20.11327148,34.22110934,42.51030312,8,6,111% +8/15/2018 15:00,72.35523923,85.78512549,231.963948,548.6902239,65.64801112,65.4171236,0,65.4171236,63.66848137,1.748642222,74.02627127,15.80439674,58.22187453,1.979529751,56.24234478,1.262837156,1.497232889,-3.025315885,3.025315885,0.952486824,0.283009544,1.689072113,54.3263653,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.20056605,1.434162566,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.223726996,52.22056873,62.42429304,53.65473129,0,15.80439674,-0.028803861,91.65056794,0.028803861,88.34943206,0,0,62.42429304,53.65473129,97.54024158,8,7,56% +8/15/2018 16:00,60.55217999,95.07354584,443.9971981,721.2989044,89.38450409,228.6812333,138.6449633,90.03626992,86.68923149,3.347038425,110.3475337,0,110.3475337,2.695272592,107.6522611,1.05683491,1.659346406,-1.604340807,1.604340807,0.804512126,0.201317721,2.824456276,90.84422284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.3289867,1.952715818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308957,87.32292242,85.37529565,89.27563824,138.6449633,0,0.192215685,78.91788261,-0.192215685,101.0821174,0.789875547,0,194.8875619,89.27563824,253.3166817,8,8,30% +8/15/2018 17:00,48.93129419,105.8474651,634.9469092,806.7891461,104.9158383,435.9754815,329.4367448,106.5387367,101.7522387,4.786498004,157.1138289,0,157.1138289,3.163599624,153.9502293,0.854012191,1.84738677,-0.930209231,0.930209231,0.689228837,0.165235608,3.544781336,114.0123529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.80812217,2.292017158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.568182011,109.5930102,100.3763042,111.8850274,329.4367448,0,0.40833066,65.89998745,-0.40833066,114.1000125,0.927550219,0,405.9454289,111.8850274,479.1719416,8,9,18% +8/15/2018 18:00,38.03042322,119.9737021,787.2868191,852.7998678,115.5502337,633.6579474,515.657079,118.0008684,112.0659678,5.934900594,194.3710701,0,194.3710701,3.484265881,190.8868042,0.663756101,2.093936118,-0.503025548,0.503025548,0.616176125,0.146770187,3.991280156,128.3732897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7220709,2.52433877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891668886,123.397289,110.6137398,125.9216278,515.657079,0,0.604663648,52.79535789,-0.604663648,127.2046421,0.9673094,0,609.4136793,125.9216278,691.8268663,8,10,14% +8/15/2018 19:00,28.97601134,140.8749721,889.2247312,876.8398915,122.1453679,798.385217,673.219631,125.165586,118.4622343,6.703351634,219.2859647,0,219.2859647,3.683133509,215.6028312,0.505726802,2.458732097,-0.18142935,0.18142935,0.561179936,0.13736164,4.16584466,133.9878843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8704056,2.66841769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018140275,128.7942508,116.8885459,131.4626685,673.219631,0,0.767779429,39.84509988,-0.767779429,140.1549001,0.98487713,0,779.9271639,131.4626685,865.9668512,8,11,11% +8/15/2018 20:00,24.15964592,172.0180979,933.263544,885.9679022,124.8988076,913.6058262,785.4378437,128.1679826,121.1326478,7.035334807,230.0467111,0,230.0467111,3.766159878,226.2805512,0.421665367,3.002282182,0.093401852,-0.093401852,0.514181032,0.133830158,4.074853689,131.0613019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4373085,2.728570011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.952217626,125.9811085,119.3895262,128.7096785,785.4378437,0,0.886530812,27.55950379,-0.886530812,152.4404962,0.993600381,0,899.8008669,128.7096785,984.0387773,8,12,9% +8/15/2018 21:00,26.12195987,206.4236423,916.2115597,882.5137538,123.8387373,967.8741374,840.8628052,127.0113322,120.1045424,6.906789747,225.880295,0,225.880295,3.734194845,222.1461002,0.455914207,3.602772213,0.355251877,-0.355251877,0.469402041,0.135163911,3.737400243,120.207639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4490546,2.705411454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.707733753,115.548155,118.1567883,118.2535664,840.8628052,0,0.952804193,17.67308578,-0.952804193,162.3269142,0.997523321,0,956.9370461,118.2535664,1034.33164,8,13,8% +8/15/2018 22:00,33.67953552,231.7273855,839.2767317,865.6117373,118.9559819,954.4747626,832.7789199,121.6958426,115.3690201,6.326822515,207.0793222,0,207.0793222,3.586961754,203.4923604,0.587818785,4.044405843,0.632798202,-0.632798202,0.421938824,0.141736304,3.187902883,102.533915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8970904,2.598741581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.309624786,98.55949921,113.2067152,101.1582408,832.7789199,0,0.96206981,15.83115217,-0.96206981,164.1688478,0.998028719,0,944.3439943,101.1582408,1010.55004,8,14,7% +8/15/2018 23:00,43.96500452,248.3258496,708.0288284,830.6504885,110.1565485,871.1313516,758.9590091,112.1723425,106.8349221,5.337420381,174.9914131,0,174.9914131,3.321626372,171.6697867,0.767334085,4.334103693,0.964097385,-0.964097385,0.365283327,0.15558201,2.476743583,79.66058739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6937908,2.406506999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794392295,76.57278664,104.4881831,78.97929364,758.9590091,0,0.913692365,23.97929724,-0.913692365,156.0207028,0.995276986,0,859.8626182,78.97929364,911.5529863,8,15,6% +8/15/2018 0:00,55.36338284,260.2773948,532.2991075,765.9173288,96.97491486,719.2092697,621.1458108,98.0634589,94.05076338,4.012695517,131.9862328,0,131.9862328,2.924151483,129.0620814,0.966273316,4.542697507,1.424376306,-1.424376306,0.286570996,0.182181246,1.671465769,53.76008476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.40517116,2.118537795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.21097126,51.67623834,91.61614242,53.79477613,621.1458108,0,0.81098284,35.80793099,-0.81098284,144.192069,0.988346414,0,705.5233773,53.79477613,740.7309824,8,16,5% +8/15/2018 1:00,67.14759628,270.0517598,326.6215929,641.2622153,77.58191184,501.5837209,423.8789784,77.70474249,75.24253096,2.462211533,81.53256758,0,81.53256758,2.339380889,79.19318669,1.17194664,4.71329236,2.228995474,-2.228995474,0.148973014,0.237528423,0.86452214,27.80600378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32598274,1.69487349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626343347,26.72818849,72.95232609,28.42306198,423.8789784,0,0.661007258,48.6232627,-0.661007258,131.3767373,0.974357865,0,485.9621427,28.42306198,504.5644683,8,17,4% +8/15/2018 2:00,78.90948487,278.993993,115.7126728,368.6960832,44.79047175,219.1946345,174.8824697,44.31216477,43.43987377,0.872291005,29.40647518,0,29.40647518,1.350597982,28.0558772,1.377230322,4.869363771,4.462142794,-4.462142794,0,0.387083546,0.337649496,10.85996844,0.188915834,1,0.220464857,0,0.936095266,0.974857229,0.724496596,1,42.02957571,0.978503641,0.029664014,0.312029739,0.919323391,0.643819987,0.961238037,0.922476074,0.234959122,10.43901474,42.26453483,11.41751839,141.8444021,0,0.474326899,61.68446649,-0.474326899,118.3155335,0.944587467,0,176.2489793,11.41751839,183.7215168,8,18,4% +8/15/2018 3:00,89.94832826,287.9671979,0.007477463,0.311757122,0.007196307,0.091360808,0.084325127,0.007035681,0.006979312,5.64E-05,0.002029993,0,0.002029993,0.000216995,0.001812997,1.569894485,5.025975741,874.1696969,-874.1696969,0,0.9623996,5.42E-05,0.001744828,0.993331629,1,0.001143942,0,0.961137024,0.999898988,0.724496596,1,0.006709879,0.000157212,0.115302878,0.312029739,0.725497858,0.449994454,0.961238037,0.922476074,3.93E-05,0.001677195,0.006749137,0.001834407,0.000562311,0,0.270483403,74.30696585,-0.270483403,105.6930341,0.865145774,0,0.007235618,0.001834407,0.008436201,8,19,17% +8/15/2018 4:00,101.4305847,297.6768886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770297665,5.195441813,-3.330074141,3.330074141,0.900370093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039489426,87.73683407,-0.039489426,92.26316593,0,0,0,0,0,8,20,0% +8/15/2018 5:00,111.3481571,308.8204646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943391958,5.389933904,-1.324596213,1.324596213,0.756672983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177158706,100.204306,0.177158706,79.79569397,0,0.767767187,0,0,0,8,21,0% +8/15/2018 6:00,119.6795632,322.0901866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088802425,5.621534244,-0.539586367,0.539586367,0.622428393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37390826,111.9568527,0.37390826,68.04314729,0,0.916277359,0,0,0,8,22,0% +8/15/2018 7:00,125.6331156,337.916732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192711517,5.897759571,-0.050713809,0.050713809,0.538826262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537353023,122.5036288,0.537353023,57.49637121,0,0.9569513,0,0,0,8,23,0% +8/16/2018 8:00,128.346115,355.8720401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240062289,6.211138815,0.345725772,-0.345725772,0.471031101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656355682,131.022525,0.656355682,48.97747498,0,0.973821791,0,0,0,8,0,0% +8/16/2018 9:00,127.3028408,14.30394752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221853719,0.24965098,0.7397323,-0.7397323,0.403652016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.722806961,136.2867173,0.722806961,43.7132827,0,0.980825237,0,0,0,8,1,0% +8/16/2018 10:00,122.7128273,31.22219242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141742871,0.544930057,1.213723807,-1.213723807,0.322594694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732178541,137.0693411,0.732178541,42.93065886,0,0.981710645,0,0,0,8,2,0% +8/16/2018 11:00,115.3462697,45.63239376,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013172186,0.796435517,1.923039024,-1.923039024,0.201294648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683832072,133.1438253,0.683832072,46.85617471,0,0.976882634,0,0,0,8,3,0% +8/16/2018 12:00,106.0613547,57.66439533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851119848,1.00643356,3.393182676,-3.393182676,0,#DIV/0!,0,0,0.047723093,1,0.286595226,0,0.926435297,0.96519726,0.724496596,1,0,0,0.00798198,0.312029739,0.977614395,0.702110991,0.961238037,0.922476074,0,0,0,0,0,0,-0.581063247,125.5253606,0.581063247,54.47463942,0,0.963950847,0,0,0,8,4,0% +8/16/2018 13:00,95.53715488,67.94727804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667437911,1.18590372,10.30865917,-10.30865917,0,#DIV/0!,0,0,0.552117982,1,0.096703254,0,0.951593909,0.990355872,0.724496596,1,0,0,0.074829797,0.312029739,0.809809814,0.53430641,0.961238037,0.922476074,0,0,0,0,0,0,-0.430877857,115.523284,0.430877857,64.47671595,0,0.933957834,0,0,0,8,5,0% +8/16/2018 14:00,84.10794185,77.1890046,36.67492058,156.0352538,20.65717486,20.31075586,0,20.31075586,20.03428482,0.276471043,47.13133831,37.61618917,9.515149141,0.622890039,8.892259102,1.467960512,1.347202277,-9.613760686,9.613760686,0,0.563250705,0.15572251,5.008571205,1,0.148358934,0,0.103644839,0.961238037,1,0.472931201,0.748434605,19.25771661,0.440732832,0.115824807,0.027265125,0.724496596,0.448993192,0.997506481,0.958744517,0.112820428,4.83074289,19.37053704,5.271475722,0,32.03549144,-0.241074938,103.9499928,0.241074938,76.05000724,0,0.842595612,19.37053704,32.26444024,40.48696789,8,6,109% +8/16/2018 15:00,72.49927235,86.08343453,229.419833,546.0122303,65.22417537,64.98688944,0,64.98688944,63.25742583,1.729463608,74.43094852,16.83870434,57.59224418,1.966749539,55.62549464,1.265351008,1.502439364,-3.047321389,3.047321389,0.948723661,0.284300509,1.665994975,53.58412523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.80544382,1.424903346,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.207007688,51.50709934,62.01245151,52.93200269,0,16.83870434,-0.030839427,91.76724922,0.030839427,88.23275078,0,0,62.01245151,52.93200269,96.65538863,8,7,56% +8/16/2018 16:00,60.69716796,95.3997047,441.5564015,720.1825367,89.08066291,226.9056234,137.1824324,89.72319092,86.39455225,3.328638669,109.7465724,0,109.7465724,2.686110659,107.0604617,1.059365427,1.665038952,-1.609542079,1.609542079,0.805401596,0.201742433,2.811569108,90.42972722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0457298,1.946078029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036972248,86.92449346,85.08270205,88.87057149,137.1824324,0,0.190482864,79.01903506,-0.190482864,100.9809649,0.787509197,0,193.1151293,88.87057149,251.2791409,8,8,30% +8/16/2018 17:00,49.08947526,106.214863,632.6175837,806.2044682,104.6506867,434.2645415,328.0005206,106.2640209,101.4950824,4.768938565,156.5410617,0,156.5410617,3.155604324,153.3854574,0.856772971,1.853799073,-0.931057923,0.931057923,0.689373972,0.165424878,3.532635329,113.6216955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.56093374,2.286224591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55938227,109.2174956,100.120316,111.5037201,328.0005206,0,0.406845327,65.99318337,-0.406845327,114.0068166,0.927103172,0,404.2106392,111.5037201,477.187594,8,9,18% +8/16/2018 18:00,38.22011951,120.3899987,784.9937575,852.4209765,115.2980062,632.0478836,514.3089232,117.7389604,111.8213459,5.917614527,193.8074851,0,193.8074851,3.47666029,190.3308249,0.667066926,2.101201863,-0.502071667,0.502071667,0.616013001,0.146877609,3.979075573,127.9807484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.486931,2.518828545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882826707,123.0199634,110.3697577,125.5387919,514.3089232,0,0.603350853,52.88973635,-0.603350853,127.1102637,0.967129478,0,607.7730782,125.5387919,689.9357067,8,10,14% +8/16/2018 19:00,29.22212508,141.2942489,886.8748541,876.534575,121.8936592,796.8128413,671.9090884,124.9037529,118.2181156,6.685637268,218.7086198,0,218.7086198,3.675543564,215.0330763,0.510022297,2.466049857,-0.17940024,0.17940024,0.560832938,0.137441781,4.153070006,133.5770075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6357494,2.6629188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.008885082,128.3993004,116.6446345,131.0622192,671.9090884,0,0.766551723,39.95476165,-0.766551723,140.0452384,0.984772829,0,778.3224485,131.0622192,864.1000497,8,11,11% +8/16/2018 20:00,24.46801374,172.2236324,930.7633933,885.6632889,124.639188,911.9702842,784.07294,127.8973443,120.8808567,7.016487615,229.4326921,0,229.4326921,3.758331389,225.6743607,0.427047401,3.005869436,0.096347263,-0.096347263,0.513677337,0.133910711,4.061151107,130.6205797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1952773,2.722898298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942290153,125.5574696,119.1375675,128.2803679,784.07294,0,0.885294615,27.71220151,-0.885294615,152.2877985,0.993521626,0,898.13099,128.2803679,982.0879252,8,12,9% +8/16/2018 21:00,26.43468124,206.2711321,913.4770858,882.1484514,123.5639084,966.0587351,839.3345583,126.7241768,119.8380007,6.886176127,225.2090031,0,225.2090031,3.725907742,221.4830953,0.461372224,3.600110406,0.359256517,-0.359256517,0.468717207,0.135267661,3.722546908,119.7299047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1928445,2.699407475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696972563,115.0889386,117.8898171,117.7883461,839.3345583,0,0.95146634,17.92385763,-0.95146634,162.0761424,0.997449534,0,955.0836807,117.7883461,1032.173797,8,13,8% +8/16/2018 22:00,33.95510152,231.434804,836.2412154,865.104723,118.6580287,952.3551657,830.9711749,121.3839908,115.0800513,6.303939511,206.3343417,0,206.3343417,3.577977366,202.7563643,0.592628319,4.039299334,0.638328188,-0.638328188,0.42099314,0.141894499,3.171833651,102.0170733,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6193226,2.592232422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297982683,98.0626913,112.9173053,100.6549237,830.9711749,0,0.960544028,16.14850821,-0.960544028,163.8514918,0.997946165,0,942.1818027,100.6549237,1008.058437,8,14,7% +8/16/2018 23:00,44.21032056,248.0300268,704.6508293,829.8539523,109.8239499,868.5725347,756.7482265,111.8243082,106.5123526,5.311955597,174.162349,0,174.162349,3.311597297,170.8507517,0.771615657,4.328940612,0.97223309,-0.97223309,0.363892039,0.155855844,2.459611706,79.10956731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3837247,2.399240968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.781980308,76.04312518,104.165705,78.44236615,756.7482265,0,0.911905311,24.23000626,-0.911905311,155.7699937,0.995169746,0,857.2586453,78.44236615,908.5976051,8,15,6% +8/16/2018 0:00,55.59300388,260.0063022,528.5750147,764.4946081,96.58376669,716.0400231,618.3839916,97.6560315,93.67140977,3.984621732,131.0714889,0,131.0714889,2.912356922,128.1591319,0.970280959,4.537966049,1.437870881,-1.437870881,0.284263287,0.182724805,1.653801864,53.19195286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.04052203,2.109992676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.198173821,51.13012835,91.23869585,53.24012102,618.3839916,0,0.808879468,36.01340359,-0.808879468,143.9865964,0.988186093,0,702.3171566,53.24012102,737.161751,8,16,5% +8/16/2018 1:00,67.37259387,269.8045197,322.628107,638.2698255,77.06216874,497.5069832,420.3364162,77.17056698,74.73846003,2.432106949,80.54862852,0,80.54862852,2.323708717,78.2249198,1.175873589,4.708977205,2.257212857,-2.257212857,0.144147557,0.23885758,0.847770221,27.2672045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.84145059,1.683519055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614206639,26.21027412,72.45565723,27.89379318,420.3364162,0,0.658555989,48.81016292,-0.658555989,131.1898371,0.974076311,0,481.895403,27.89379318,500.1513328,8,17,4% +8/16/2018 2:00,79.13719985,278.7654963,111.9242728,361.1061218,43.87098699,213.66562,170.2737726,43.39184731,42.54811486,0.843732445,28.46020787,0,28.46020787,1.322872124,27.13733575,1.381204698,4.865375752,4.568072447,-4.568072447,0,0.391970266,0.330718031,10.63702872,0.200660387,1,0.215511069,0,0.936781179,0.975543143,0.724496596,1,41.17658285,0.958416351,0.031348211,0.312029739,0.914950055,0.639446651,0.961238037,0.922476074,0.229759496,10.2247166,41.40634234,11.18313295,136.1065716,0,0.471533885,61.8660895,-0.471533885,118.1339105,0.943963082,0,169.8859211,11.18313295,177.2050579,8,18,4% +8/16/2018 3:00,90.147677,287.7539867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573373777,5.022254503,-306.754844,306.754844,0,#DIV/0!,0,0,1,0.980764911,0,0.003259921,0.961238037,1,0.715294045,0.990797449,0,0,0.115824807,0.3015722,0.724496596,0.448993192,0.962881974,0.92412001,0,0,0,0,0,0,0.267994285,74.45505008,-0.267994285,105.5449499,0.863428857,0,0,0,0,8,19,0% +8/16/2018 4:00,101.687023,297.4795266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774773358,5.191997197,-3.267300136,3.267300136,0.91110508,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036014089,87.9360984,-0.036014089,92.0639016,0,0,0,0,0,8,20,0% +8/16/2018 5:00,111.6256884,308.6464195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948235792,5.386896245,-1.312453597,1.312453597,0.754596473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.180882708,100.4211793,0.180882708,79.57882075,0,0.773577778,0,0,0,8,21,0% +8/16/2018 6:00,119.9798599,321.9578691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09404359,5.619224868,-0.536880014,0.536880014,0.621965579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377804236,112.1977382,0.377804236,67.80226185,0,0.917656328,0,0,0,8,22,0% +8/16/2018 7:00,125.951044,337.856604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198260414,5.89671014,-0.051570104,0.051570104,0.538972697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541332523,122.7743956,0.541332523,57.2256044,0,0.95763533,0,0,0,8,23,0% +8/17/2018 8:00,128.6662987,355.9133141,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245650549,6.211859183,0.342648791,-0.342648791,0.471557295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660324566,131.3246307,0.660324566,48.67536928,0,0.974279661,0,0,0,8,0,0% +8/17/2018 9:00,127.6039445,14.44758216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22710897,0.252157878,0.734409545,-0.734409545,0.404562261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.726671868,136.6081058,0.726671868,43.39189418,0,0.981193153,0,0,0,8,1,0% +8/17/2018 10:00,122.9795771,31.4371513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146398534,0.548681798,1.204998778,-1.204998778,0.324086762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735853304,137.3793684,0.735853304,42.62063157,0,0.982051674,0,0,0,8,2,0% +8/17/2018 11:00,115.5753248,45.88351608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017169952,0.800818428,1.90709392,-1.90709392,0.204021422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687243642,133.4123134,0.687243642,46.58768662,0,0.977245598,0,0,0,8,3,0% +8/17/2018 12:00,106.2574412,57.93091206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854542204,1.011085154,3.353388639,-3.353388639,0,#DIV/0!,0,0,0.04151169,1,0.289809944,0,0.925942238,0.964704202,0.724496596,1,0,0,0.006962995,0.312029739,0.980444468,0.704941064,0.961238037,0.922476074,0,0,0,0,0,0,-0.584156726,125.7434389,0.584156726,54.25656114,0,0.964406532,0,0,0,8,4,0% +8/17/2018 13:00,95.70794734,68.22230629,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670418801,1.190703868,9.999851012,-9.999851012,0,#DIV/0!,0,0,0.541267895,1,0.099670128,0,0.951263149,0.990025112,0.724496596,1,0,0,0.073661682,0.312029739,0.812437981,0.536934577,0.961238037,0.922476074,0,0,0,0,0,0,-0.433620273,115.6975321,0.433620273,64.30246786,0,0.934691738,0,0,0,8,5,0% +8/17/2018 14:00,84.25855692,77.4742288,34.85762044,149.8986513,19.86183947,19.5257032,0,19.5257032,19.26293173,0.262771467,45.53686772,36.48632634,9.050541385,0.598907743,8.451633643,1.470589241,1.352180378,-9.861403779,9.861403779,0,0.569799063,0.149726936,4.815732933,1,0.178005435,0,0.101059984,0.961238037,1,0.478164961,0.753668365,18.51626268,0.422006723,0.115824807,0.033206789,0.724496596,0.448993192,0.996939373,0.95817741,0.108476655,4.647554296,18.62473934,5.069561018,0,29.99156193,-0.243406635,104.0876904,0.243406635,75.91230964,0,0.844582428,18.62473934,30.39990721,38.52087061,8,6,107% +8/17/2018 15:00,72.64396945,86.38572186,226.9358928,543.6885433,64.74902836,64.50734487,0,64.50734487,62.79660625,1.710738618,74.84707511,17.87141844,56.97565667,1.952422103,55.02323457,1.267876449,1.507715273,-3.069652289,3.069652289,0.944904852,0.285318587,1.643377467,52.85666842,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.36248652,1.414523168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.190621381,50.80784018,61.5531079,52.22236335,0,17.87141844,-0.032870692,91.88369122,0.032870692,88.11630878,0,0,61.5531079,52.22236335,95.73160026,8,7,56% +8/17/2018 16:00,60.84318873,95.72979571,439.1800153,719.3712091,88.70126553,225.1193709,135.7820513,89.33731957,86.0265951,3.310724466,109.1589498,0,109.1589498,2.674670429,106.4842794,1.061913971,1.670800127,-1.614740672,1.614740672,0.806290608,0.201970177,2.798933237,90.02331418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.6920354,1.937789621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.027817602,86.53383379,84.719853,88.47162341,135.7820513,0,0.188751023,79.12009572,-0.188751023,100.8799043,0.785100773,0,191.3224465,88.47162341,249.2253545,8,8,30% +8/17/2018 17:00,49.24926614,106.5860755,630.3496645,805.8784241,104.2968443,432.5709197,326.667168,105.9037517,101.1519097,4.751842031,155.9805088,0,155.9805088,3.144934671,152.8355741,0.859561848,1.860277954,-0.931859545,0.931859545,0.689511057,0.165458713,3.520564483,113.2334556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.23106308,2.278494464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550636983,108.8443046,99.78170006,111.1227991,326.667168,0,0.405355396,66.08659998,-0.405355396,113.9134,0.926651451,0,402.4883053,111.1227991,475.2159548,8,9,18% +8/17/2018 18:00,38.41222361,120.809452,782.7551994,852.2702015,114.9495741,630.4729353,513.0887756,117.3841597,111.4834204,5.90073933,193.2542143,0,193.2542143,3.466153779,189.7880605,0.670419775,2.108522704,-0.501058457,0.501058457,0.615839732,0.146852521,3.96679937,127.5859035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1621041,2.511216614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87393264,122.6404234,110.0360368,125.1516401,513.0887756,0,0.602025947,52.98486634,-0.602025947,127.0151337,0.966947101,0,606.165741,125.1516401,688.0749864,8,10,14% +8/17/2018 19:00,29.47144561,141.7148013,884.5705617,876.4394677,121.5414882,795.286556,670.7417256,124.5448304,117.8765638,6.668266538,218.1392982,0,218.1392982,3.664924308,214.4743739,0.514373761,2.473389881,-0.177303259,0.177303259,0.560474333,0.137401688,4.140099313,133.1598254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3074368,2.655225185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999487859,127.9982892,116.3069247,130.6535143,670.7417256,0,0.765302968,40.06604711,-0.765302968,139.9339529,0.984666397,0,776.7637632,130.6535143,862.2738752,8,11,11% +8/17/2018 20:00,24.77994207,172.4307249,928.2991198,885.5606641,124.2771061,910.3876917,782.860088,127.5276037,120.5296928,6.99791088,228.8242824,0,228.8242824,3.747413283,225.0768691,0.432491577,3.009483882,0.099372208,-0.099372208,0.513160041,0.133876143,4.047145868,130.1701231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8577253,2.714988167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.932143404,125.1244736,118.7898687,127.8394617,782.860088,0,0.884027622,27.86790336,-0.884027622,152.1320966,0.993440681,0,896.5149279,127.8394617,980.1832989,8,12,9% +8/17/2018 21:00,26.75169922,206.1238879,910.7688943,881.9851061,123.1865397,964.3010704,837.9632988,126.3377717,119.472011,6.865760636,224.5409916,0,224.5409916,3.714528682,220.8264629,0.466905232,3.597540512,0.363360153,-0.363360153,0.468015444,0.135255541,3.707299984,119.2395112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8410413,2.691163386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.685926218,114.6175537,117.5269676,117.3087171,837.9632988,0,0.950087811,18.17875271,-0.950087811,161.8212473,0.997373285,0,953.289176,117.3087171,1030.065385,8,13,8% +8/17/2018 22:00,34.23555091,231.1455602,833.2231482,864.8074161,118.2594832,950.2975576,829.3228461,120.9747115,114.6935235,6.281188046,205.5905588,0,205.5905588,3.56595975,202.024599,0.597523085,4.034251077,0.643992533,-0.643992533,0.42002448,0.141930146,3.155295085,101.4851362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2477774,2.5835257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286000548,97.55137309,112.5337779,100.1348988,829.3228461,0,0.95896824,16.47001478,-0.95896824,163.5299852,0.99786063,0,940.0823955,100.1348988,1005.618684,8,14,7% +8/17/2018 23:00,44.46045661,247.7351686,701.2825698,829.2827,109.3952942,866.0803066,754.6971199,111.3831867,106.0966225,5.286564234,173.33275,0,173.33275,3.298671746,170.0340782,0.775981355,4.323794365,0.98057495,-0.98057495,0.362465497,0.155993174,2.441951396,78.54155106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9841091,2.389876451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.769185474,75.49712635,103.7532946,77.88700281,754.6971199,0,0.910060128,24.48633794,-0.910060128,155.5136621,0.995058575,0,854.7211355,77.88700281,905.6966211,8,15,6% +8/17/2018 0:00,55.82717943,259.734952,524.8540894,763.3185464,96.10495319,712.9415504,615.7779443,97.16360608,93.20703426,3.956571825,130.1548695,0,130.1548695,2.897918928,127.2569505,0.974368093,4.533230095,1.45174798,-1.45174798,0.281890163,0.183107944,1.6355747,52.60570462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.59414663,2.099532399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184968303,50.56660423,90.77911493,52.66613663,615.7779443,0,0.806711624,36.22411875,-0.806711624,143.7758812,0.988019983,0,699.1800292,52.66613663,733.6489623,8,16,5% +8/17/2018 1:00,67.6018832,269.5564374,318.6325058,635.5320764,76.46937095,493.4975873,416.9320636,76.56552369,74.16353727,2.40198642,79.56197371,0,79.56197371,2.305833676,77.25614004,1.179875442,4.704647353,2.286434132,-2.286434132,0.139150425,0.239992372,0.830481416,26.71113709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.28881297,1.670568649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.601680959,25.67576098,71.89049393,27.34632963,416.9320636,0,0.656036224,49.00173129,-0.656036224,130.9982687,0.973784696,0,477.8925569,27.34632963,495.7901827,8,17,4% +8/17/2018 2:00,79.3689404,278.5358582,108.1436012,353.6474863,42.90123984,208.1674914,165.7446501,42.42284132,41.60760917,0.815232146,27.51429881,0,27.51429881,1.29363067,26.22066814,1.385249334,4.86136781,4.680287725,-4.680287725,0,0.396706226,0.323407667,10.40190229,0.212736444,1,0.210497,0,0.937469997,0.97623196,0.724496596,1,40.2755781,0.937231017,0.033062143,0.312029739,0.910522441,0.635019037,0.961238037,0.922476074,0.224324824,9.998704139,40.49990292,10.93593516,130.4847226,0,0.46867193,62.05187685,-0.46867193,117.9481232,0.943315565,0,163.5881728,10.93593516,170.7455236,8,18,4% +8/17/2018 3:00,90.99314078,287.5394755,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588129903,5.018510577,-45.74095348,45.74095348,0,#DIV/0!,0,0,1,0.863988462,0,0.021858764,0.961238037,1,0.664379109,0.939882513,0,0,0.115824807,0.243768159,0.724496596,0.448993192,0.971559409,0.932797446,0,0,0,0,0,0,0.254871149,75.23404973,-0.254871149,104.7659503,0.853822441,0,0,0,0,8,19,0% +8/17/2018 4:00,101.9474215,297.2808241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779318169,5.188529183,-3.206111661,3.206111661,0.921568926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032472659,88.13912655,-0.032472659,91.86087345,0,0,0,0,0,8,20,0% +8/17/2018 5:00,111.9072125,308.4712005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953149315,5.383838097,-1.300348939,1.300348939,0.752526455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184667025,100.6417199,0.184667025,79.35828014,0,0.779242403,0,0,0,8,21,0% +8/17/2018 6:00,120.2842147,321.8249989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099355585,5.616905845,-0.534125557,0.534125557,0.621494539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381752837,112.4422997,0.381752837,67.55770026,0,0.919025204,0,0,0,8,22,0% +8/17/2018 7:00,126.2729885,337.7973526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203879406,5.895676008,-0.052373255,0.052373255,0.539110044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545355568,123.0489653,0.545355568,56.95103472,0,0.958316697,0,0,0,8,23,0% +8/18/2018 8:00,128.9901041,355.9576339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25130202,6.212632709,0.339625871,-0.339625871,0.472074245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664327154,131.6307271,0.664327154,48.36927287,0,0.974735878,0,0,0,8,0,0% +8/18/2018 9:00,127.9078404,14.59612341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232412954,0.254750412,0.729150001,-0.729150001,0.405461696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73056055,136.9334076,0.73056055,43.06659243,0,0.981559403,0,0,0,8,1,0% +8/18/2018 10:00,123.2481575,31.65766221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151086146,0.552530439,1.196367935,-1.196367935,0.325562723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73954251,137.692459,0.73954251,42.307541,0,0.982390634,0,0,0,8,2,0% +8/18/2018 11:00,115.8054583,46.13992652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021186539,0.805293634,1.891348854,-1.891348854,0.206713986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690661562,133.6825001,0.690661562,46.31749989,0,0.977605643,0,0,0,8,3,0% +8/18/2018 12:00,106.4541599,58.2021936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857975593,1.01581991,3.314362464,-3.314362464,0,#DIV/0!,0,0,0.035340934,1,0.293031417,0,0.925445999,0.964207962,0.724496596,1,0,0,0.005944871,0.312029739,0.98328025,0.707776846,0.961238037,0.922476074,0,0,0,0,0,0,-0.587250254,125.9621197,0.587250254,54.03788031,0,0.964857423,0,0,0,8,4,0% +8/18/2018 13:00,95.87918721,68.50164876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673407501,1.195579314,9.707979037,-9.707979037,0,#DIV/0!,0,0,0.530518306,1,0.102646025,0,0.95092933,0.989691293,0.724496596,1,0,0,0.072494785,0.312029739,0.815074279,0.539570875,0.961238037,0.922476074,0,0,0,0,0,0,-0.436358665,115.8717794,0.436358665,64.12822063,0,0.935415361,0,0,0,8,5,0% +8/18/2018 14:00,84.409503,77.76347363,33.06779845,143.7401808,19.06494176,18.73934245,0,18.73934245,18.49006342,0.249279033,43.91390118,35.32135227,8.592548916,0.574878336,8.01767058,1.473223747,1.357228653,-10.12259576,10.12259576,0,0.576541005,0.143719584,4.622515855,1,0.207116614,0,0.098469391,0.961238037,1,0.483464218,0.758967622,17.77335226,0.40351072,0.115824807,0.039217211,0.724496596,0.448993192,0.996357112,0.957595149,0.104124349,4.463609457,17.87747661,4.867120177,0,28.00571339,-0.24573054,104.2250105,0.24573054,75.77498952,0,0.846525088,17.87747661,28.57465917,36.57901955,8,6,105% +8/18/2018 15:00,72.78931998,86.69188074,224.4402589,541.3217551,64.27067036,64.02459799,0,64.02459799,62.33267251,1.691925476,75.24678537,18.89064828,56.35613709,1.937997845,54.41813925,1.270413294,1.513058754,-3.092315419,3.092315419,0.941029229,0.286359812,1.620722632,52.12801106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.91653576,1.404072841,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.17420803,50.10742701,61.09074379,51.51149986,0,18.89064828,-0.034897264,91.99987201,0.034897264,88.00012799,0,0,61.09074379,51.51149986,94.80399021,8,7,55% +8/18/2018 16:00,60.99024491,96.06369119,436.7822717,718.5409088,88.31973272,223.3308749,134.3816587,88.94921617,85.65656691,3.292649262,108.5660845,0,108.5660845,2.663165807,105.9029187,1.064480585,1.676627703,-1.619936748,1.619936748,0.807179189,0.202205397,2.786136408,89.61172417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.33635022,1.929454561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.018546343,86.13819782,84.35489656,88.06765238,134.3816587,0,0.187020192,79.22106316,-0.187020192,100.7789368,0.782649189,0,189.5285928,88.06765238,247.1671099,8,8,30% +8/18/2018 17:00,49.41067756,106.960938,628.0509947,805.5393943,103.9407161,430.8666489,325.3256152,105.5410337,100.80652,4.734513688,155.4124311,0,155.4124311,3.134196091,152.278235,0.862379009,1.866820539,-0.932614205,0.932614205,0.689640112,0.165497256,3.508292735,112.838754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.89906141,2.270714399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541746144,108.4649024,99.44080756,110.7356168,325.3256152,0,0.40386059,66.18025446,-0.40386059,113.8197455,0.926194902,0,400.7557338,110.7356168,473.2299802,8,9,18% +8/18/2018 18:00,38.60674255,121.2318359,780.4756685,852.1079484,114.5984266,628.8777873,511.8513707,117.0264165,111.1428613,5.883555263,192.6909272,0,192.6909272,3.455565387,189.2353619,0.673814771,2.115894694,-0.499986146,0.499986146,0.615656356,0.146831517,3.954279343,127.1832164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8347458,2.503545359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864861923,122.2533453,109.6996077,124.7568906,511.8513707,0,0.600688412,53.08078252,-0.600688412,126.9192175,0.96676217,0,604.5381495,124.7568906,686.1890393,8,10,14% +8/18/2018 19:00,29.7239503,142.1363541,882.2147202,876.3327104,121.1860724,793.7290341,669.5466618,124.1823724,117.5318651,6.65050721,217.55738,0,217.55738,3.65420721,213.9031728,0.518780799,2.480747366,-0.175138676,0.175138676,0.560104167,0.137365734,4.126844433,132.7335029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9760993,2.647460685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989884743,127.5884917,115.9659841,130.2359524,669.5466618,0,0.764032489,40.17900542,-0.764032489,139.8209946,0.984557757,0,775.1733434,130.2359524,860.4101696,8,11,11% +8/18/2018 20:00,25.09535943,172.6391457,925.7730603,885.4450787,123.9112049,908.7618297,781.6081364,127.1536933,120.1748249,6.978868377,228.2007767,0,228.2007767,3.736380013,224.4643967,0.437996649,3.01312151,0.102476464,-0.102476464,0.512629182,0.133846199,4.032822234,129.7094258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5166128,2.7069946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.92176598,124.6816338,118.4383788,127.3886284,781.6081364,0,0.882729099,28.02665403,-0.882729099,151.973346,0.993357481,0,894.8546681,127.3886284,978.2279776,8,12,9% +8/18/2018 21:00,27.07290421,205.9817904,907.9897445,881.8061393,122.8047466,962.4877292,836.5411886,125.9465406,119.1017303,6.84481023,223.8556421,0,223.8556421,3.70301621,220.1526259,0.472511317,3.595060441,0.367562749,-0.367562749,0.467296758,0.135249046,3.691709812,118.7380777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4851135,2.682822638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.674631192,114.1355567,117.1597446,116.8183794,836.5411886,0,0.948667912,18.43773642,-0.948667912,161.5622636,0.997294518,0,951.4376857,116.8183794,1027.892979,8,13,8% +8/18/2018 22:00,34.52077875,230.8597228,830.1267142,864.4895631,117.8558485,948.1719799,827.6120743,120.5599056,114.3020598,6.257845819,204.8276214,0,204.8276214,3.553788673,201.2738327,0.60250125,4.029262272,0.649791711,-0.649791711,0.419032763,0.141973323,3.138401118,100.9417681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8714876,2.574707796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.273760927,97.02906705,112.1452485,99.60377484,827.6120743,0,0.957341892,16.79556,-0.957341892,163.20444,0.997772055,0,937.9134484,99.60377484,1003.102127,8,14,7% +8/18/2018 23:00,44.71532394,247.4413849,697.8309894,828.6812749,108.9606921,863.5079437,752.5722738,110.93567,105.6751252,5.260544763,172.4827695,0,172.4827695,3.285566889,169.1972026,0.780429629,4.318666873,0.989124911,-0.989124911,0.361003368,0.156141951,2.42394092,77.96227221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5789499,2.380382026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.756136945,74.94030149,103.3350868,77.32068352,752.5722738,0,0.908156485,24.74817824,-0.908156485,155.2518218,0.994943409,0,852.1019105,77.32068352,902.7067515,8,15,6% +8/18/2018 0:00,56.06582776,259.4634399,521.0482649,762.0907828,95.61867262,709.7495436,613.0862448,96.66329876,92.73541684,3.927881912,129.2174401,0,129.2174401,2.883255775,126.3341843,0.978533292,4.528491314,1.466014761,-1.466014761,0.2794504,0.183512122,1.617030371,52.00925524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.14081003,2.088908994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171532999,49.99327441,90.31234303,52.0821834,613.0862448,0,0.804479281,36.44000347,-0.804479281,143.5599965,0.987847995,0,695.948361,52.0821834,730.0351084,8,16,5% +8/18/2018 1:00,67.83538213,269.3075879,314.5566371,632.6830521,75.86496155,489.3742727,413.4256588,75.94861385,73.57735305,2.3712608,78.55550699,0,78.55550699,2.287608503,76.26789849,1.183950767,4.700304109,2.316694833,-2.316694833,0.13397554,0.24118061,0.812972176,26.14797975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.7253504,1.657364573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.588995574,25.13443273,71.31434598,26.7917973,413.4256588,0,0.653448291,49.19790442,-0.653448291,130.8020956,0.973482851,0,473.7771352,26.7917973,491.3118306,8,17,4% +8/18/2018 2:00,79.60461479,278.3051342,104.3187564,345.9006244,41.9044738,202.5276906,161.1003925,41.42729815,40.6408993,0.78639885,26.55686474,0,26.55686474,1.263574496,25.29329024,1.389362628,4.857340917,4.799289393,-4.799289393,0,0.401696447,0.315893624,10.16022483,0.225150459,1,0.205424953,0,0.938161192,0.976923155,0.724496596,1,39.3483513,0.915455421,0.034805508,0.312029739,0.906042542,0.630539138,0.961238037,0.922476074,0.218778086,9.766394565,39.56712939,10.68184999,124.8285651,0,0.465741838,62.24175692,-0.465741838,117.7582431,0.942644388,0,157.2360758,10.68184999,164.227133,8,18,4% +8/18/2018 3:00,91.24103492,287.3237021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592456472,5.014744621,-36.70789558,36.70789558,0,#DIV/0!,0,0,1,0.827811048,0,0.02723536,0.961238037,1,0.650165758,0.925669162,0,0,0.115824807,0.227654953,0.724496596,0.448993192,0.973852199,0.935090236,0,0,0,0,0,0,0.251566105,75.42979445,-0.251566105,104.5702055,0.851245084,0,0,0,0,8,19,0% +8/18/2018 4:00,102.2116841,297.0808004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783930422,5.185038111,-3.146487262,3.146487262,0.931765298,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02886657,88.34583761,-0.02886657,91.65416239,0,0,0,0,0,8,20,0% +8/18/2018 5:00,112.1926299,308.2948079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958130789,5.380759464,-1.288291574,1.288291574,0.750464524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.188509922,100.8658377,0.188509922,79.13416229,0,0.784761972,0,0,0,8,21,0% +8/18/2018 6:00,120.592528,321.6915611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104736667,5.614576917,-0.531326825,0.531326825,0.621015928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.385752092,112.690439,0.385752092,67.30956101,0,0.920383075,0,0,0,8,22,0% +8/18/2018 7:00,126.598852,337.7389645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209566797,5.894656944,-0.053124753,0.053124753,0.539238557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549420044,123.3272347,0.549420044,56.67276534,0,0.958994947,0,0,0,8,23,0% +8/19/2018 8:00,129.3174348,356.0050073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257015017,6.213459531,0.336656618,-0.336656618,0.472582017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668361281,131.9407133,0.668361281,48.05928665,0,0.975190161,0,0,0,8,0,0% +8/19/2018 9:00,128.2144299,14.74958495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23776395,0.257428821,0.72395387,-0.72395387,0.406350286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734470897,137.2625265,0.734470897,42.73747349,0,0.981923783,0,0,0,8,1,0% +8/19/2018 10:00,123.5184743,31.88371123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155804064,0.556475739,1.187831715,-1.187831715,0.327022503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743244199,138.0085098,0.743244199,41.99149022,0,0.982727359,0,0,0,8,2,0% +8/19/2018 11:00,116.0365907,46.40157674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02522056,0.809860292,1.875803251,-1.875803251,0.209372441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69408411,133.9542775,0.69408411,46.04572255,0,0.977962621,0,0,0,8,3,0% +8/19/2018 12:00,106.6514513,58.47816809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861418978,1.020636574,3.276088653,-3.276088653,0,#DIV/0!,0,0,0.029211479,1,0.296259045,0,0.924946662,0.963708626,0.724496596,1,0,0,0.004927783,0.312029739,0.986121225,0.710617821,0.961238037,0.922476074,0,0,0,0,0,0,-0.590342417,126.1813109,0.590342417,53.81868908,0,0.965303392,0,0,0,8,4,0% +8/19/2018 13:00,96.05083498,68.78521949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.67640332,1.200528557,9.431721114,-9.431721114,0,#DIV/0!,0,0,0.519869162,1,0.105630557,0,0.95059248,0.989354443,0.724496596,1,0,0,0.071329252,0.312029739,0.817718333,0.542214929,0.961238037,0.922476074,0,0,0,0,0,0,-0.439091977,116.04596,0.439091977,63.95403998,0,0.936128641,0,0,0,8,5,0% +8/19/2018 14:00,84.56075057,78.05664235,31.30728638,137.5674777,18.26722628,17.95240955,0,17.95240955,17.716402,0.236007549,42.26468005,34.12304173,8.141638317,0.550824271,7.590814046,1.475863515,1.362345412,-10.39844672,10.39844672,0,0.583481623,0.137706068,4.429100501,1,0.235703534,0,0.095873379,0.961238037,1,0.488828632,0.764332036,17.02967948,0.385243691,0.115824807,0.045296435,0.724496596,0.448993192,0.995759419,0.956997456,0.099767577,4.279103644,17.12944706,4.664347335,0,26.08012021,-0.248045849,104.3619056,0.248045849,75.63809435,0,0.848424363,17.12944706,26.7913567,34.6638542,8,6,102% +8/19/2018 15:00,72.93531794,87.00180147,221.9331218,538.9110906,63.78906686,63.53861676,0,63.53861676,61.86559114,1.673025617,75.62970723,19.89597668,55.73373055,1.923475722,53.81025483,1.272961439,1.518467891,-3.115318905,3.115318905,0.937095401,0.287424727,1.598033479,51.39824988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.46755938,1.393551613,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.157769816,49.40595282,60.62532919,50.79950443,0,19.89597668,-0.036918848,92.115775,0.036918848,87.884225,0,0,60.62532919,50.79950443,93.87258885,8,7,55% +8/19/2018 16:00,61.1383433,96.4012605,434.3630096,717.6912305,87.93603667,221.5400863,132.9812337,88.55885256,85.28444072,3.274411842,107.9679365,0,107.9679365,2.651595955,105.3163406,1.06706539,1.682519399,-1.625130874,1.625130874,0.808067437,0.202448263,2.773177486,89.1949207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97864837,1.921072243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.009157649,85.73755047,83.98780602,87.65862271,132.9812337,0,0.185290314,79.32194117,-0.185290314,100.6780588,0.780153191,0,187.7335399,87.65862271,245.1043553,8,8,31% +8/19/2018 17:00,49.57372367,107.3392826,625.721202,805.187089,103.5822705,429.1513546,323.975521,105.1758336,100.4588829,4.716950727,154.8367374,0,154.8367374,3.123387634,151.7133498,0.8652247,1.873423898,-0.933322227,0.933322227,0.689761191,0.165540612,3.495818564,112.4375418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.56489936,2.262883708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.53270865,108.079242,99.09760801,110.3421257,323.975521,0,0.402360551,66.27416889,-0.402360551,113.7258311,0.925733345,0,399.0125506,110.3421257,471.229265,8,9,18% +8/19/2018 18:00,38.80368548,121.6569216,778.1546883,851.933983,114.2445307,627.2618199,510.5961245,116.6656953,110.7996366,5.866058734,192.1175075,0,192.1175075,3.444894119,188.6726133,0.677252073,2.12331384,-0.498855104,0.498855104,0.615462937,0.146814679,3.941514103,126.7726424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5048252,2.495814062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85561355,121.8586859,109.3604387,124.3545,510.5961245,0,0.599337665,53.17752386,-0.599337665,126.8224761,0.966574574,0,602.8896703,124.3545,684.2772035,8,10,13% +8/19/2018 19:00,29.97961721,142.5586324,879.8068589,876.2141004,120.8273816,792.1395112,668.3231652,123.816346,117.1839903,6.632355734,216.9627503,0,216.9627503,3.643391362,213.319359,0.523243029,2.488117512,-0.172906868,0.172906868,0.559722506,0.137333985,4.113304574,132.2980145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6417088,2.639624639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980075162,127.1698837,115.6217839,129.8095084,668.3231652,0,0.762739569,40.29368888,-0.762739569,139.7063111,0.984446826,0,773.5504023,129.8095084,858.5081294,8,11,11% +8/19/2018 20:00,25.41419457,172.8486637,923.1848585,885.3163449,123.5414617,907.0919026,780.3163144,126.7755882,119.8162308,6.959357418,227.5620881,0,227.5620881,3.725230889,223.8368572,0.443561372,3.01677829,0.10565972,-0.10565972,0.512084813,0.133820936,4.018180426,129.2384949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1719185,2.698917098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.91115804,124.2289571,118.0830765,126.9278742,780.3163144,0,0.881398292,28.18849869,-0.881398292,151.8115013,0.993271957,0,893.1493893,126.9278742,976.2211445,8,12,9% +8/19/2018 21:00,27.39818541,205.8447062,905.139495,881.6113595,122.4185175,960.6180006,835.0675293,125.5504714,118.7271475,6.823323846,223.1529199,0,223.1529199,3.691369978,219.4615499,0.478188545,3.592667871,0.371864193,-0.371864193,0.466561167,0.135248233,3.675777961,118.2256546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1250502,2.674384983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66308862,113.6429962,116.7881388,116.3173812,835.0675293,0,0.947205955,18.70077257,-0.947205955,161.2992274,0.99721317,0,949.5284766,116.3173812,1025.655876,8,13,8% +8/19/2018 22:00,34.81067608,230.5773438,826.9520745,864.1509338,117.447127,945.9779123,825.8383355,120.1395769,113.9056628,6.233914044,204.0455688,0,204.0455688,3.541464214,200.5041046,0.607560912,4.02433383,0.655726135,-0.655726135,0.418017916,0.142024104,3.12115494,100.3870718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4904557,2.565778767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261266129,96.49587178,111.7517218,99.06165055,825.8383355,0,0.95566446,17.12503202,-0.95566446,162.874968,0.997680381,0,935.6744274,99.06165055,1000.508296,8,14,7% +8/19/2018 23:00,44.97482866,247.1487746,694.2966217,828.0493168,108.5201592,860.8551897,750.3734125,110.4817772,105.247876,5.233901206,171.6125374,0,171.6125374,3.272283196,168.3402542,0.784958841,4.313559859,0.997884891,-0.997884891,0.359505323,0.1563023,2.405585335,77.37189352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1682617,2.370758036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742838386,74.37280703,102.9111001,76.74356507,750.3734125,0,0.906194109,25.01540733,-0.906194109,154.9845927,0.994824183,0,849.4007174,76.74356507,899.6278458,8,15,6% +8/19/2018 0:00,56.30886185,259.1918539,517.1585105,760.8105182,95.12493804,706.464,610.3088705,96.15512948,92.25657018,3.898559301,128.2594362,0,128.2594362,2.868367855,125.3910683,0.982775037,4.523751246,1.480678532,-1.480678532,0.276942748,0.183937683,1.59817627,51.40284255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68052441,2.078122747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.157873267,49.41036746,89.83839768,51.4884902,610.3088705,0,0.802182483,36.66097756,-0.802182483,143.3390224,0.987670043,0,692.6221858,51.4884902,726.3203729,8,16,5% +8/19/2018 1:00,68.0730034,269.0580401,310.4020716,629.7201957,75.24885879,485.1370178,409.8172478,75.31976999,72.97982806,2.33994193,77.52960669,0,77.52960669,2.269030731,75.26057596,1.188098041,4.695948678,2.348032263,-2.348032263,0.128616524,0.242423829,0.795254169,25.57810774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15098666,1.643905041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576158938,24.58665007,70.7271456,26.23055512,409.8172478,0,0.650792607,49.39861227,-0.650792607,130.6013877,0.973170608,0,469.549246,26.23055512,486.7166197,8,17,4% +8/19/2018 2:00,79.84412594,278.0733751,100.4539554,337.8599122,40.88022642,196.7476235,156.3428224,40.40480111,39.64753676,0.757264348,25.58891417,0,25.58891417,1.232689659,24.35622451,1.393542886,4.853295958,4.925633526,-4.925633526,0,0.40695487,0.308172415,9.91188419,0.237908999,1,0.200297299,0,0.938854233,0.977616196,0.724496596,1,38.39445163,0.893079461,0.036577978,0.312029739,0.90151242,0.626009016,0.961238037,0.922476074,0.213117791,9.5276801,38.60756943,10.42075956,119.147458,0,0.462744518,62.43565145,-0.462744518,117.5643486,0.941949017,0,150.8384004,10.42075956,157.6585791,8,18,5% +8/19/2018 3:00,91.4927437,287.1066997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596849619,5.010957214,-30.60392238,30.60392238,0,#DIV/0!,0,0,1,0.790080579,0,0.032663928,0.961238037,1,0.636045684,0.911549088,0,0,0.115824807,0.211659523,0.724496596,0.448993192,0.976072745,0.937310782,0,0,0,0,0,0,0.248193759,75.62934616,-0.248193759,104.3706538,0.848544491,0,0,0,0,8,19,0% +8/19/2018 4:00,102.4797111,296.8794702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788608375,5.181524236,-3.088403835,3.088403835,0.941698149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.025197347,88.55614555,-0.025197347,91.44385445,0,0,0,0,0,8,20,0% +8/19/2018 5:00,112.4818376,308.1172364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963178416,5.377660258,-1.276290512,1.276290512,0.748412222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192409578,101.0934379,0.192409578,78.90656208,0,0.790137676,0,0,0,8,21,0% +8/19/2018 6:00,120.9046974,321.5575344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110185051,5.61223771,-0.528487715,0.528487715,0.620530412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.389799964,112.9420532,0.389799964,67.05794684,0,0.92172908,0,0,0,8,22,0% +8/19/2018 7:00,126.9285361,337.6814197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.215320869,5.893652596,-0.053826235,0.053826235,0.539358518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553523786,123.6090969,0.553523786,56.39090308,0,0.959669645,0,0,0,8,23,0% +8/20/2018 8:00,129.6481942,356.055436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262787857,6.214339677,0.333740448,-0.333740448,0.473080712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672424761,132.254486,0.672424761,47.74551404,0,0.975642238,0,0,0,8,0,0% +8/20/2018 9:00,128.5236156,14.90797495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243160259,0.260193248,0.718821111,-0.718821111,0.40722804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738400798,137.5953657,0.738400798,42.40463431,0,0.982286097,0,0,0,8,1,0% +8/20/2018 10:00,123.7904359,32.11527898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160550689,0.560517358,1.179390215,-1.179390215,0.328466084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746956435,138.3274183,0.746956435,41.67258175,0,0.983061692,0,0,0,8,2,0% +8/20/2018 11:00,116.2686461,46.66841348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029270691,0.814517472,1.860455988,-1.860455988,0.211996978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697509607,134.2275394,0.697509607,45.77246064,0,0.9783164,0,0,0,8,3,0% +8/20/2018 12:00,106.8492599,58.75875965,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864871389,1.02553382,3.238550904,-3.238550904,0,#DIV/0!,0,0,0.023123767,1,0.29949232,0,0.924444301,0.963206265,0.724496596,1,0,0,0.003911876,0.312029739,0.988966964,0.71346356,0.961238037,0.922476074,0,0,0,0,0,0,-0.593431866,126.4009239,0.593431866,53.59907605,0,0.965744329,0,0,0,8,4,0% +8/20/2018 13:00,96.22285546,69.0729293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679405643,1.20555004,9.169881147,-9.169881147,0,#DIV/0!,0,0,0.509320059,1,0.108623424,0,0.950252617,0.989014581,0.724496596,1,0,0,0.070165197,0.312029739,0.820369849,0.544866445,0.961238037,0.922476074,0,0,0,0,0,0,-0.44181923,116.2200129,0.44181923,63.77998711,0,0.936831544,0,0,0,8,5,0% +8/20/2018 14:00,84.71227373,78.35363552,29.57790551,131.3886383,17.46948544,17.16568674,0,17.16568674,16.942716,0.222970746,40.5916609,32.89338583,7.698275074,0.526769441,7.171505633,1.478508093,1.367528921,-10.69020039,10.69020039,0,0.590626183,0.13169236,4.235678999,1,0.263777822,0,0.093272191,0.961238037,1,0.494257994,0.769761398,16.28598306,0.367205557,0.115824807,0.051444659,0.724496596,0.448993192,0.995145997,0.956384034,0.095410667,4.094243662,16.38139373,4.46144922,0,24.21684015,-0.250351828,104.4983325,0.250351828,75.50166746,0,0.850281067,16.38139373,25.0525699,32.77779968,8,6,100% +8/20/2018 15:00,73.08196147,87.31537189,219.4146013,536.455664,63.30417135,63.04935696,0,63.04935696,61.39531701,1.654039946,75.99549036,20.88702565,55.10846471,1.908854334,53.19961038,1.275520851,1.523940727,-3.13867215,3.13867215,0.933101761,0.288513941,1.575312335,50.66745978,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.015514,1.382958467,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.141308424,48.70348957,60.15682242,50.08644804,0,20.88702565,-0.038935232,92.23138848,0.038935232,87.76861152,0,0,60.15682242,50.08644804,92.93740093,8,7,54% +8/20/2018 16:00,61.28749432,96.74237051,431.9220045,716.8217204,87.55014319,219.7468859,131.580692,88.16619386,84.91018334,3.256010515,107.3644505,0,107.3644505,2.639959843,104.7244906,1.069668566,1.688472892,-1.630323989,1.630323989,0.808955512,0.202698965,2.760055097,88.77285953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.61889795,1.912641919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.999650522,85.33184922,83.61854847,87.24449114,131.580692,0,0.183561251,79.42273823,-0.183561251,100.5772618,0.777611358,0,185.937189,87.24449114,243.0369636,8,8,31% +8/20/2018 17:00,49.7384215,107.7209389,623.3598676,804.8211949,103.2214722,427.4245954,322.6164814,104.808114,100.108964,4.69914999,154.2533251,0,154.2533251,3.112508235,151.1408169,0.86809922,1.880085057,-0.933984133,0.933984133,0.689874383,0.165588896,3.483140335,112.0297664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.22854403,2.255001621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523523315,107.6872727,98.75206735,109.9422743,322.6164814,0,0.400854853,66.36836968,-0.400854853,113.6316303,0.925266572,0,397.2583131,109.9422743,469.2133328,8,9,18% +8/20/2018 18:00,39.00306317,122.0844786,775.7917575,851.7480587,113.8878515,625.6243605,509.322402,116.3019586,110.4537126,5.848245964,191.5338323,0,191.5338323,3.434138925,188.0996934,0.680731871,2.130776117,-0.497665828,0.497665828,0.615259559,0.14680209,3.928502262,126.3541369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1723099,2.488021961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846186515,121.4564025,109.0184964,123.9444244,509.322402,0,0.59797307,53.27513298,-0.59797307,126.724867,0.966384194,0,601.2196155,123.9444244,682.3387624,8,10,13% +8/20/2018 19:00,30.2384247,142.981363,877.346506,876.0834293,120.4653855,790.5171904,667.0704722,123.4467182,116.8329097,6.613808555,216.3552938,0,216.3552938,3.632475843,212.7228179,0.527760072,2.495495553,-0.170608306,0.170608306,0.559329428,0.137306509,4.099479059,131.8533384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3042367,2.631716383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.970058623,126.7424442,115.2742953,129.3741606,667.0704722,0,0.761423456,40.41015219,-0.761423456,139.5898478,0.984333518,0,771.8941197,129.3741606,856.5669203,8,11,11% +8/20/2018 20:00,25.73637635,173.0590487,920.5341814,885.1742736,123.1678546,905.3771073,778.9838425,126.3932648,119.4538893,6.939375495,226.9081351,0,226.9081351,3.713965257,223.1941699,0.449184505,3.020450201,0.10892159,-0.10892159,0.511527001,0.133800414,4.00322087,128.7573442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8236221,2.690755186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900319893,123.7664567,117.723942,126.4572119,778.9838425,0,0.880034436,28.35348232,-0.880034436,151.6465177,0.993184041,0,891.3982629,126.4572119,974.161979,8,12,9% +8/20/2018 21:00,27.72743112,205.7124909,902.2180515,881.400577,122.0278435,958.6911933,833.5416388,125.1495546,118.3482538,6.801300771,222.4328018,0,222.4328018,3.679589717,218.7532121,0.483934966,3.590360279,0.376264312,-0.376264312,0.465808703,0.135253161,3.65950629,117.7023017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7608431,2.665850224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651299849,113.1399295,116.412143,115.8057797,833.5416388,0,0.945701263,18.96782316,-0.945701263,161.0321768,0.997129181,0,947.5608348,115.8057797,1023.353402,8,13,8% +8/20/2018 22:00,35.10513053,230.2984605,823.6994569,863.7913024,117.0333253,943.7148793,824.0011462,119.7137331,113.5043387,6.209394438,203.2444564,0,203.2444564,3.528986563,199.7154698,0.612700112,4.019466398,0.661796167,-0.661796167,0.41697988,0.142082557,3.103560089,99.82116086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1046877,2.556738752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248518719,95.95189671,111.3532064,98.50863546,824.0011462,0,0.953935452,17.45831926,-0.953935452,162.5416807,0.997585552,0,933.3648448,98.50863546,997.8367765,8,14,7% +8/20/2018 23:00,45.23887235,246.857426,690.6800829,827.386471,108.0737156,858.1218562,748.1003236,110.0215326,104.8148944,5.206638209,170.7222038,0,170.7222038,3.258821276,167.4633825,0.789567272,4.308474867,1.006856795,-1.006856795,0.357971037,0.156474348,2.38689009,76.77059018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7520633,2.361004921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729293745,73.79481139,102.481357,76.15581631,748.1003236,0,0.904172778,25.28790046,-0.904172778,154.7120995,0.994700835,0,846.6173733,76.15581631,896.4598319,8,15,6% +8/20/2018 0:00,56.55619004,258.9202753,513.1858902,759.476952,94.62376724,703.0850013,607.4458778,95.63912354,91.77051153,3.868612011,127.2811162,0,127.2811162,2.853255707,124.4278605,0.987091729,4.519011305,1.495746783,-1.495746783,0.274365925,0.184384974,1.579020204,50.78671762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21330635,2.067174047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143994763,48.81812474,89.35730111,50.88529879,607.4458778,0,0.799821346,36.88695449,-0.799821346,143.1130455,0.98748604,0,689.2016252,50.88529879,722.5050355,8,16,5% +8/20/2018 1:00,68.31465529,268.8078577,306.1704877,626.6408941,74.62098194,480.7858861,406.1069597,74.67892647,72.37088401,2.308042464,76.4846774,0,76.4846774,2.250097927,74.23457947,1.192315662,4.691582172,2.380485655,-2.380485655,0.123066667,0.243723628,0.777339562,25.00191242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56564647,1.630188289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.563179867,24.03278921,70.12882634,25.6629775,406.1069597,0,0.648069674,49.60377886,-0.648069674,130.3962211,0.972847802,0,465.2090893,25.6629775,482.0049948,8,17,4% +8/20/2018 2:00,80.08737187,277.8406272,96.55370869,329.5201628,39.82805939,190.8291118,151.4741527,39.35495909,38.62709645,0.727862641,24.61152747,0,24.61152747,1.200962941,23.41056453,1.397788328,4.84923374,5.0599395,-5.0599395,0,0.412496422,0.300240735,9.656774113,0.251018761,1,0.195116469,0,0.939548591,0.978310554,0.724496596,1,37.41345527,0.870093562,0.038379205,0.312029739,0.896934192,0.621430788,0.961238037,0.922476074,0.207342442,9.282458591,37.62079771,10.15255215,113.4512986,0,0.459680984,62.6334761,-0.459680984,117.3665239,0.941228914,0,144.4044402,10.15255215,151.0490826,8,18,5% +8/20/2018 3:00,91.74816821,286.8884971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601307618,5.007148861,-26.20528176,26.20528176,0,#DIV/0!,0,0,1,0.750717982,0,0.038141739,0.961238037,1,0.622032896,0.8975363,0,0,0.115824807,0.195797756,0.724496596,0.448993192,0.978219583,0.93945762,0,0,0,0,0,0,0.244755378,75.8326222,-0.244755378,104.1673778,0.845714397,0,0,0,0,8,19,0% +8/20/2018 4:00,102.7513989,296.6768437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793350222,5.177987738,-3.031836745,3.031836745,0.951371691,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021466602,88.76995982,-0.021466602,91.23004018,0,0,0,0,0,8,20,0% +8/20/2018 5:00,112.7747298,307.938476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968290348,5.3745403,-1.264354391,1.264354391,0.746371025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.196364099,101.3244215,0.196364099,78.67557852,0,0.79537097,0,0,0,8,21,0% +8/20/2018 6:00,121.2206184,321.4228918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115698912,5.609887754,-0.525612157,0.525612157,0.620038662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.393894357,113.1970358,0.393894357,66.80296422,0,0.923062411,0,0,0,8,22,0% +8/20/2018 7:00,127.261941,337.624692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221139883,5.892662511,-0.054479467,0.054479467,0.539470227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557664593,123.8944421,0.557664593,56.10555787,0,0.960340372,0,0,0,8,23,0% +8/21/2018 8:00,129.9822858,356.1089162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268618856,6.215273084,0.330876612,-0.330876612,0.473570456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676515385,132.5719394,0.676515385,47.4280606,0,0.976091851,0,0,0,8,0,0% +8/21/2018 9:00,128.8353012,15.0712968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248600199,0.263043752,0.713751472,-0.713751472,0.408094999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742348145,137.9318275,0.742348145,42.06817249,0,0.982646158,0,0,0,8,1,0% +8/21/2018 10:00,124.0639526,32.3523413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165324456,0.564654876,1.171043238,-1.171043238,0.329893502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750677306,138.6490824,0.750677306,41.35091764,0,0.983393484,0,0,0,8,2,0% +8/21/2018 11:00,116.5015516,46.94037915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033335659,0.819264168,1.845305479,-1.845305479,0.214587867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700936421,134.5021816,0.700936421,45.49781844,0,0.978666854,0,0,0,8,3,0% +8/21/2018 12:00,107.0475338,59.04388886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868331921,1.030510264,3.201732342,-3.201732342,0,#DIV/0!,0,0,0.01707806,1,0.302730821,0,0.923938976,0.962700939,0.724496596,1,0,0,0.002897264,0.312029739,0.991817109,0.716313705,0.961238037,0.922476074,0,0,0,0,0,0,-0.596517309,126.6208734,0.596517309,53.37912664,0,0.966180136,0,0,0,8,4,0% +8/21/2018 13:00,96.39521731,69.3646862,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682413925,1.210642159,8.921375409,-8.921375409,0,#DIV/0!,0,0,0.498870293,1,0.111624404,0,0.949909754,0.988671717,0.724496596,1,0,0,0.069002696,0.312029739,0.823028601,0.547525197,0.961238037,0.922476074,0,0,0,0,0,0,-0.444539515,116.3938808,0.444539515,63.6061192,0,0.937524059,0,0,0,8,5,0% +8/21/2018 14:00,84.86404957,78.6543514,27.88147597,125.2122757,16.67256713,16.38001006,0,16.38001006,16.16982772,0.210182343,38.89753322,31.63460715,7.262926065,0.502739414,6.760186651,1.481157082,1.372777403,-10.9992533,10.9992533,0,0.597980076,0.125684854,4.04245693,1,0.291351475,0,0.090666008,0.961238037,1,0.499752214,0.775255618,15.54305345,0.349397505,0.115824807,0.057662208,0.724496596,0.448993192,0.994516533,0.955754569,0.091058249,3.909249584,15.6341117,4.258647089,0,22.41781768,-0.252647809,104.6342514,0.252647809,75.3657486,0,0.852096048,15.6341117,23.36078093,30.92327561,8,6,98% +8/21/2018 15:00,73.22925214,87.63247777,216.884758,533.9544874,62.81592654,62.55676351,0,62.55676351,60.92179459,1.634968919,76.34380169,21.86344915,54.48035254,1.894131951,52.58622059,1.278091559,1.529475269,-3.162385796,3.162385796,0.929046489,0.289628128,1.552560961,49.93569741,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56034624,1.372292151,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.124825131,48.00009174,59.68517137,49.3723839,0,21.86344915,-0.040946278,92.346705,0.040946278,87.653295,0,0,59.68517137,49.3723839,91.99840918,8,7,54% +8/21/2018 16:00,61.43771143,97.08688609,429.4589789,715.9318808,87.16201254,217.9510943,130.1798948,87.77119946,84.53375627,3.237443187,106.7555578,0,106.7555578,2.628256272,104.1273015,1.072290349,1.694485823,-1.635517377,1.635517377,0.809843633,0.202957714,2.74676767,88.34549021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25706192,1.904162722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990023826,84.92104557,83.24708575,86.8252083,130.1798948,0,0.181832795,79.52346685,-0.181832795,100.4765332,0.7750221,0,184.1393812,86.8252083,240.9647436,8,8,31% +8/21/2018 17:00,49.9047903,108.1057345,620.9665352,804.4413775,102.858283,425.6858737,321.2480394,104.4378343,99.75672622,4.68110804,153.6620825,0,153.6620825,3.101556738,150.5605258,0.871002903,1.886801008,-0.934600618,0.934600618,0.689979808,0.165642232,3.470256332,111.6153726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.88995968,2.247067299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.514188899,107.2889416,98.40414858,109.5360089,321.2480394,0,0.399343008,66.46288684,-0.399343008,113.5371132,0.924794352,0,395.4925211,109.5360089,467.1816482,8,9,18% +8/21/2018 18:00,39.20488739,122.5142753,773.3863572,851.5499186,113.5283528,623.9646937,508.0295266,115.9351671,110.1050541,5.83011304,190.939775,0,190.939775,3.423298712,187.5164763,0.684254368,2.138277485,-0.496418926,0.496418926,0.615046326,0.14679384,3.915242458,125.927656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.837166,2.480168263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.836579833,121.0464529,108.6737459,123.5266211,508.0295266,0,0.596593947,53.37365546,-0.596593947,126.6263445,0.966190903,0,599.5272529,123.5266211,680.3729559,8,10,13% +8/21/2018 19:00,30.50035094,143.4042757,874.8331941,875.9404838,120.1000535,788.8612515,665.7877956,123.073456,116.4785938,6.594862148,215.7348961,0,215.7348961,3.621459736,212.1134364,0.532331547,2.502876773,-0.16824354,0.16824354,0.558925029,0.137283375,4.085367331,131.3994567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9636548,2.623735251,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.959834724,126.3061558,114.9234896,128.9298911,665.7877956,0,0.760083371,40.52845177,-0.760083371,139.4715482,0.984217743,0,770.2036508,128.9298911,854.5856859,8,11,11% +8/21/2018 20:00,26.06183362,173.2700729,917.820722,885.0186746,122.7903632,903.6166396,777.6099386,126.006701,119.0877807,6.918920292,226.2388427,0,226.2388427,3.7025825,222.5362602,0.454864806,3.024133267,0.112261627,-0.112261627,0.510955821,0.133784693,3.987944201,128.265994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4717046,2.682508417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.889251998,123.2941522,117.3609566,125.9766607,777.6099386,0,0.878636757,28.52164897,-0.878636757,151.478351,0.993093662,0,889.6004583,125.9766607,972.0496632,8,12,9% +8/21/2018 21:00,28.06052908,205.5849914,899.2253652,881.1736036,121.6327181,956.7066377,831.9628542,124.7437835,117.9650428,6.778740638,221.6952759,0,221.6952759,3.667675227,218.0276007,0.489748622,3.588134992,0.380762878,-0.380762878,0.465039403,0.135263887,3.642896929,117.1680876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3924862,2.657218216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.639266424,112.6264225,116.0317526,115.2836407,831.9628542,0,0.944153173,19.23884796,-0.944153173,160.761152,0.997042491,0,945.5340693,115.2836407,1020.984907,8,13,8% +8/21/2018 22:00,35.40402693,230.0230962,820.3691524,863.4104465,116.6144528,941.38245,822.100064,119.282386,113.0980968,6.184289196,202.4243549,0,202.4243549,3.516356013,198.9079989,0.617916838,4.014660385,0.66800213,-0.66800213,0.415918597,0.142148754,3.085620427,99.24415968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7141925,2.547587961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235521495,95.39726122,110.949714,97.94484918,822.100064,0,0.95215441,17.79531052,-0.95215441,162.2046895,0.997487509,0,930.9842589,97.94484918,995.0872038,8,14,7% +8/21/2018 23:00,45.50735269,246.567418,686.9820658,826.6923863,107.6213858,855.3078187,745.7528537,109.5549649,104.376204,5.178760994,169.8119373,0,169.8119373,3.245181863,166.5667554,0.794253138,4.303413273,1.016042527,-1.016042527,0.356400184,0.156658217,2.367860985,76.15854874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3303774,2.351123213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715507223,73.20649388,102.0458846,75.55761709,745.7528537,0,0.902092321,25.56552882,-0.902092321,154.4344712,0.994573301,0,843.7517617,75.55761709,893.2027109,8,15,6% +8/21/2018 0:00,56.80771666,258.6487786,509.1315534,758.0892783,94.11518209,699.6127063,604.4973955,95.11531081,91.2772621,3.838048708,126.2827596,0,126.2827596,2.837919988,123.4448396,0.991481696,4.514272793,1.511227217,-1.511227217,0.271718615,0.184854349,1.559570354,50.16114356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73917623,2.056063371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.129903412,48.21679916,88.86907964,50.27286253,604.4973955,0,0.797396049,37.11784209,-0.797396049,142.8821579,0.987295902,0,685.686881,50.27286253,718.5894641,8,16,5% +8/21/2018 1:00,68.56024216,268.5570996,301.863663,623.4424701,73.98125012,476.3210158,402.2949975,74.02601827,71.75044247,2.2755758,75.42114761,0,75.42114761,2.230807653,73.19033996,1.196601962,4.687205617,2.414096345,-2.414096345,0.117318901,0.245081668,0.759240989,24.41980008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.96925446,1.616212551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.550067512,23.47324069,69.51932197,25.08945324,402.2949975,0,0.645280065,49.81332298,-0.645280065,130.186677,0.972514265,0,460.7569459,25.08945324,477.1774912,8,17,4% +8/21/2018 2:00,80.33424629,277.6069325,92.62282832,320.8767341,38.74756554,184.7744364,146.4970229,38.27741348,37.57918347,0.698230004,23.62585914,0,23.62585914,1.168382064,22.45747708,1.4020971,4.845154998,5.202899395,-5.202899395,0,0.418337102,0.292095516,9.394795868,0.264486585,1,0.189884941,0,0.940243737,0.9790057,0.724496596,1,36.40497233,0.846488828,0.040208821,0.312029739,0.892310029,0.616806624,0.961238037,0.922476074,0.20145056,9.030635137,36.60642289,9.877123965,107.7505256,0,0.456552337,62.83514111,-0.456552337,117.1648589,0.940483531,0,137.9440176,9.877123965,144.4083977,8,18,5% +8/21/2018 3:00,92.00720627,286.6691196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605828685,5.00332,-22.8865401,22.8865401,0,#DIV/0!,0,0,1,0.709638482,0,0.04366603,0.961238037,1,0.608141082,0.883644486,0,0,0.115824807,0.180084606,0.724496596,0.448993192,0.980291622,0.941529659,0,0,0,0,0,0,0.241252307,76.03953568,-0.241252307,103.9604643,0.842748096,0,0,0,0,8,19,0% +8/21/2018 4:00,103.0266412,296.4729274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798154107,5.174428726,-2.976759952,2.976759952,0.960790378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017676019,88.987186,-0.017676019,91.012814,0,0,0,0,0,8,20,0% +8/21/2018 5:00,113.0711979,307.7585122,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973464693,5.371399339,-1.252491433,1.252491433,0.744342339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200371528,101.5586858,0.200371528,78.44131417,0,0.800463549,0,0,0,8,21,0% +8/21/2018 6:00,121.5401845,321.2876013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121276394,5.607526489,-0.522704082,0.522704082,0.619541352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398033127,113.4552772,0.398033127,66.54472282,0,0.924382315,0,0,0,8,22,0% +8/21/2018 7:00,127.5989664,337.5687499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227022085,5.891686138,-0.055086309,0.055086309,0.539574003,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561840229,124.1831576,0.561840229,55.81684241,0,0.961006729,0,0,0,8,23,0% +8/22/2018 8:00,130.3196132,356.1654398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27450633,6.216259607,0.328064221,-0.328064221,0.474051404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680630935,132.8929662,0.680630935,47.10703377,0,0.976538749,0,0,0,8,0,0% +8/22/2018 9:00,129.1493914,15.23954983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254082107,0.265980321,0.708744514,-0.708744514,0.408951239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746310837,138.2718138,0.746310837,41.7281862,0,0.983003787,0,0,0,8,1,0% +8/22/2018 10:00,124.3389369,32.59486989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170123837,0.568887799,1.16279033,-1.16279033,0.331304832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754404925,138.9734005,0.754404925,41.02659946,0,0.983722596,0,0,0,8,2,0% +8/22/2018 11:00,116.7352372,47.21741237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037414243,0.82409931,1.830349745,-1.830349745,0.217145448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704362958,134.7781014,0.704362958,45.22189863,0,0.979013871,0,0,0,8,3,0% +8/22/2018 12:00,107.2462245,59.33347327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871799728,1.035564465,3.165615702,-3.165615702,0,#DIV/0!,0,0,0.011074461,1,0.305974202,0,0.923430734,0.962192697,0.724496596,1,0,0,0.001884039,0.312029739,0.994671372,0.719167968,0.961238037,0.922476074,0,0,0,0,0,0,-0.599597507,126.8410766,0.599597507,53.15892336,0,0.966610727,0,0,0,8,4,0% +8/22/2018 13:00,96.56789258,69.66039588,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685427677,1.215803266,8.685220486,-8.685220486,0,#DIV/0!,0,0,0.488518909,1,0.114633347,0,0.949563893,0.988325856,0.724496596,1,0,0,0.0678418,0.312029739,0.825694429,0.550191025,0.961238037,0.922476074,0,0,0,0,0,0,-0.447251983,116.5675102,0.447251983,63.43248976,0,0.938206197,0,0,0,8,5,0% +8/22/2018 14:00,85.01605757,78.95868638,26.21982455,119.0475721,15.87738241,15.59627686,0,15.59627686,15.39862075,0.197656113,37.1852371,30.34917542,6.836061686,0.478761661,6.357300025,1.483810122,1.37808905,-11.32717759,11.32717759,0,0.605548766,0.119690415,3.849655186,1,0.318436696,0,0.088054954,0.961238037,1,0.505311297,0.780814701,14.80173998,0.331822194,0.115824807,0.06394952,0.724496596,0.448993192,0.993870699,0.955108736,0.086715298,3.724356483,14.88845527,4.056178677,0,20.68488429,-0.254933174,104.7696254,0.254933174,75.23037456,0,0.85387017,14.88845527,21.71838435,29.10270346,8,6,95% +8/22/2018 15:00,73.37719451,87.95300325,214.3436037,531.4064788,62.32426562,62.06077168,0,62.06077168,60.44495906,1.615812624,76.67432136,22.8249265,53.84939486,1.879306561,51.9700883,1.28067364,1.535069494,-3.186471704,3.186471704,0.924927556,0.290768022,1.529780655,49.20300445,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.10199379,1.361551206,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.108320877,47.29579941,59.21031466,48.65735061,0,22.8249265,-0.042951916,92.46172084,0.042951916,87.53827916,0,0,59.21031466,48.65735061,91.05557749,8,7,54% +8/22/2018 16:00,61.58901053,97.43467053,426.9736121,715.0211744,86.77160032,216.1524817,128.7786578,87.37382386,84.15511641,3.218707442,106.1411795,0,106.1411795,2.616483903,103.5246956,1.074931017,1.700555806,-1.640712635,1.640712635,0.810732075,0.203224738,2.733313483,87.91275732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.89309889,1.895633681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.980276314,84.50508626,82.87337521,86.40071994,128.7786578,0,0.180104677,79.62414298,-0.180104677,100.375857,0.772383667,0,182.3399072,86.40071994,238.8874504,8,8,31% +8/22/2018 17:00,50.07285093,108.4934957,618.5407204,804.0472839,102.4926619,423.934645,319.8696938,104.0649512,99.40212994,4.662821223,153.0628908,0,153.0628908,3.090531912,149.9723589,0.873936115,1.893568717,-0.935172533,0.935172533,0.690077611,0.165700751,3.45716479,111.1943036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.54910824,2.23907985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.504704122,106.8841941,98.05381236,109.1232739,319.8696938,0,0.397824482,66.55775342,-0.397824482,113.4422466,0.924316433,0,393.7146267,109.1232739,465.133627,8,9,18% +8/22/2018 18:00,39.40917036,122.9460803,770.9379579,851.3392966,113.1659974,622.2820701,506.7167891,115.565281,109.753625,5.811655972,190.3352059,0,190.3352059,3.412372358,186.9228335,0.687819778,2.145813903,-0.495115102,0.495115102,0.614823359,0.146790019,3.901733375,125.4931575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.499359,2.472252158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826792548,120.6287963,108.3261516,123.1010485,506.7167891,0,0.595199577,53.47313921,-0.595199577,126.5268608,0.965994564,0,597.8118153,123.1010485,678.3789895,8,10,13% +8/22/2018 19:00,30.76537357,143.8271044,872.2664639,875.7850467,119.7313555,787.1708576,664.4743311,122.6965265,116.1210134,6.575513052,215.101445,0,215.101445,3.610342131,211.4911029,0.536957064,2.510256526,-0.165813187,0.165813187,0.558509415,0.137264655,4.07096896,130.9363556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.619935,2.615680584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949403153,125.8610054,114.5693381,128.476686,664.4743311,0,0.758718516,40.64864502,-0.758718516,139.351355,0.984099407,0,768.4781335,128.476686,852.5635549,8,11,11% +8/22/2018 20:00,26.39049507,173.4815123,915.0442005,884.8493569,122.4089685,901.8096985,776.1938223,125.6158762,118.7178865,6.8979897,225.5541425,0,225.5541425,3.691082042,221.8630604,0.46060103,3.027823581,0.115679328,-0.115679328,0.510371359,0.133773831,3.972351251,127.7644711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1161482,2.674176375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.877954959,122.8120694,116.9941031,125.4862457,776.1938223,0,0.877204483,28.69304117,-0.877204483,151.3069588,0.993000747,0,887.7551487,125.4862457,969.8833868,8,12,9% +8/22/2018 21:00,28.3973667,205.4620475,896.1614323,880.9302526,121.2331369,954.6636882,830.3305343,124.3331539,117.5775105,6.755643417,220.940341,0,220.940341,3.65562638,217.2847147,0.495627548,3.585989217,0.385359624,-0.385359624,0.464253313,0.135280467,3.625952267,116.623089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0199754,2.648488868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.626990074,112.1025491,115.6469654,114.751038,830.3305343,0,0.942561039,19.51380436,-0.942561039,160.4861956,0.996953038,0,943.4475138,114.751038,1018.549773,8,13,8% +8/22/2018 22:00,35.70724782,229.7512623,816.9615114,863.0081463,116.1905225,938.980237,820.1346865,118.8455505,112.6869495,6.158600959,201.5853498,0,201.5853498,3.50357295,198.0817769,0.623209041,4.009915988,0.674344321,-0.674344321,0.414834019,0.142222762,3.067340112,98.65620193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3189821,2.538326676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.22227747,94.83209386,110.5412596,97.37042054,820.1346865,0,0.95032091,18.13589521,-0.95032091,161.8641048,0.997386194,0,928.5322732,97.37042054,992.259266,8,14,7% +8/22/2018 23:00,45.78016409,246.2788203,683.2033335,825.9667135,107.1631977,852.413013,743.3309058,109.0821072,103.9318319,5.150275314,168.8819238,0,168.8819238,3.2313658,165.650558,0.799014595,4.298376292,1.025444011,-1.025444011,0.354792436,0.156854032,2.348504138,75.53596599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.90323003,2.341113522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701483253,72.60804366,101.6047133,74.94915719,743.3309058,0,0.899952618,25.84816027,-0.899952618,154.1518397,0.994441519,0,840.8038288,74.94915719,889.8565531,8,15,6% +8/22/2018 0:00,57.06334255,258.3774322,504.9967276,756.6466832,93.59920792,696.047344,601.4636189,94.5837251,90.77684646,3.806878644,125.2646647,0,125.2646647,2.822361463,122.4423032,0.99594321,4.509536906,1.527127777,-1.527127777,0.268999459,0.185346167,1.539835235,49.5263943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.25815768,2.044791272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115605386,47.60665403,88.37376307,49.6514453,601.4636189,0,0.794906833,37.3535433,-0.794906833,142.6464567,0.987099547,0,682.0782287,49.6514453,714.5741066,8,16,5% +8/22/2018 1:00,68.80966508,268.30582,297.4834651,620.1221737,73.32958131,471.7426102,398.3816304,73.36097989,71.11842387,2.242556018,74.33946769,0,74.33946769,2.211157434,72.12831026,1.200955213,4.682819962,2.448907957,-2.448907957,0.111365764,0.246499688,0.740971514,23.83219097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36173415,1.601976034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53683134,22.90840846,68.89856549,24.51038449,398.3816304,0,0.642424424,50.02715882,-0.642424424,129.9728412,0.972169833,0,456.1931687,24.51038449,472.2347251,8,17,4% +8/22/2018 2:00,80.58463892,277.3723295,88.66643937,311.9256602,37.63837783,178.5863912,141.4145443,37.17184694,36.50344187,0.668405073,22.63314073,0,22.63314073,1.134935962,21.49820477,1.406467276,4.841060404,5.355289067,-5.355289067,0,0.424494071,0.283733991,9.125860467,0.278319471,1,0.184605237,0,0.940939146,0.979701109,0.724496596,1,35.36865572,0.822257241,0.042066437,0.312029739,0.887642146,0.612138742,0.961238037,0.922476074,0.195440712,8.7721242,35.56409644,9.594381441,102.0561231,0,0.453359766,63.04055175,-0.453359766,116.9594483,0.939712313,0,131.4674919,9.594381441,137.7468227,8,18,5% +8/22/2018 3:00,92.26975291,286.4485887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610410988,4.999471011,-20.29474471,20.29474471,0,#DIV/0!,0,0,1,0.666751027,0,0.04923402,0.961238037,1,0.59438356,0.869886964,0,0,0.115824807,0.164534034,0.724496596,0.448993192,0.982288135,0.943526172,0,0,0,0,0,0,0.23768596,76.24999602,-0.23768596,103.750004,0.839638395,0,0,0,0,8,19,0% +8/22/2018 4:00,103.3053293,296.267724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803018131,5.170847252,-2.923146162,2.923146162,0.969958876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013827344,89.2077263,-0.013827344,90.7922737,0,0,0,0,0,8,20,0% +8/22/2018 5:00,113.3711315,307.5773266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978699521,5.368237053,-1.24070942,1.24070942,0.742327496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204429855,101.7961254,0.204429855,78.20387463,0,0.805417329,0,0,0,8,21,0% +8/22/2018 6:00,121.863288,321.151626,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126915613,5.605153272,-0.519767392,0.519767392,0.619039149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.402214087,113.7166649,0.402214087,66.28333506,0,0.925688094,0,0,0,8,22,0% +8/22/2018 7:00,127.9395109,337.5135571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232965709,5.890722842,-0.055648699,0.055648699,0.539670178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566048436,124.4751283,0.566048436,55.52487173,0,0.961668336,0,0,0,8,23,0% +8/23/2018 8:00,130.6600803,356.2249945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280448603,6.217299032,0.325302263,-0.325302263,0.474523726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684769184,133.2174575,0.684769184,46.78254254,0,0.976982695,0,0,0,8,0,0% +8/23/2018 9:00,129.4657919,15.41272991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259604337,0.269002884,0.703799642,-0.703799642,0.409796862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750286783,138.615226,0.750286783,41.38477399,0,0.983358815,0,0,0,8,1,0% +8/23/2018 10:00,124.615303,32.84283282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174947335,0.573215568,1.154630815,-1.154630815,0.332700191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758137429,139.3002717,0.758137429,40.69972828,0,0.984048897,0,0,0,8,2,0% +8/23/2018 11:00,116.9696354,47.49944848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041505263,0.829021769,1.815586472,-1.815586472,0.219670117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707787665,135.0551976,0.707787665,44.94480241,0,0.979357345,0,0,0,8,3,0% +8/23/2018 12:00,107.4452864,59.62742788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875274013,1.040694941,3.130183475,-3.130183475,0,#DIV/0!,0,0,0.005112934,1,0.309222184,0,0.922919617,0.96168158,0.724496596,1,0,0,0.000872268,0.312029739,0.997529526,0.722026122,0.961238037,0.922476074,0,0,0,0,0,0,-0.602671272,127.061454,0.602671272,52.93854604,0,0.967036032,0,0,0,8,4,0% +8/23/2018 13:00,96.74085636,69.95996209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688446465,1.221031683,8.460522529,-8.460522529,0,#DIV/0!,0,0,0.478264737,1,0.117650166,0,0.949215031,0.987976994,0.724496596,1,0,0,0.066682532,0.312029739,0.828367228,0.552863824,0.961238037,0.922476074,0,0,0,0,0,0,-0.449955845,116.740851,0.449955845,63.25914896,0,0.938877985,0,0,0,8,5,0% +8/23/2018 14:00,85.16827918,79.26653534,24.59478964,112.904324,15.08491245,14.8154526,0,14.8154526,14.63004668,0.185405913,35.45797925,29.03982199,6.418157265,0.454865768,5.963291498,1.48646689,1.383462028,-11.67574827,11.67574827,0,0.61333773,0.113716442,3.657511671,1,0.345045765,0,0.085439109,0.961238037,1,0.51093534,0.786438744,14.06295735,0.31448394,0.115824807,0.070307129,0.724496596,0.448993192,0.993208154,0.954446191,0.082387175,3.539816026,14.14534453,3.854299966,0,19.01975438,-0.25720735,104.9044205,0.25720735,75.09557952,0,0.855604311,14.14534453,20.12768381,27.31851103,8,6,93% +8/23/2018 15:00,73.52579565,88.27683116,211.7911083,528.8104661,61.82911296,61.56130792,0,61.56130792,59.96473708,1.596570835,76.98673943,23.77115731,53.21558212,1.864375881,51.35120624,1.283267219,1.540721357,-3.210942941,3.210942941,0.920742728,0.291934413,1.506972323,48.46941009,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.64038615,1.350733979,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091796318,46.5906406,58.73218247,47.94137458,0,23.77115731,-0.044952131,92.57643558,0.044952131,87.42356442,0,0,58.73218247,47.94137458,90.10885331,8,7,53% +8/23/2018 16:00,61.74140954,97.78558593,424.4655472,714.0890274,86.37885799,214.3507748,127.3767575,86.97401731,83.77421672,3.19980059,105.5212275,0,105.5212275,2.604641273,102.9165862,1.077590881,1.706680435,-1.64591165,1.64591165,0.811621159,0.203500281,2.719690689,87.47460143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.52696362,1.887053735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970406646,84.08391415,82.49737026,85.97096789,127.3767575,0,0.178376579,79.72478564,-0.178376579,100.2752144,0.769694141,0,180.5385143,85.97096789,236.8047933,8,8,31% +8/23/2018 17:00,50.24262553,108.8840477,616.0819158,803.6385442,102.124566,422.1703256,318.4809063,103.6894193,99.04513358,4.644285715,152.4556257,0,152.4556257,3.079432466,149.3761932,0.87689924,1.900385136,-0.935700867,0.935700867,0.690167962,0.16576459,3.443863916,110.7665017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.20594976,2.231038339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.495067684,106.4729747,97.70101745,108.704013,318.4809063,0,0.396298695,66.65300501,-0.396298695,113.346995,0.923832539,0,391.9240419,108.704013,463.0686443,8,9,18% +8/23/2018 18:00,39.61592437,123.3796623,768.4460238,851.1159185,112.8007473,620.5757126,505.3834533,115.1922593,109.3993886,5.79287072,189.719994,0,189.719994,3.401358721,186.3186352,0.691428316,2.153381338,-0.493755144,0.493755144,0.614590792,0.146790723,3.887973747,125.0506005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1588535,2.464272815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.816823745,120.2033938,107.9756773,122.6676666,505.3834533,0,0.593789215,53.57363395,-0.593789215,126.426366,0.965795035,0,596.0725073,122.6676666,676.3560418,8,10,13% +8/23/2018 19:00,31.03346943,144.2495881,869.6458676,875.6168974,119.3592617,785.4451604,663.1292629,122.3158975,115.7601396,6.55575789,214.4548311,0,214.4548311,3.59912213,210.855709,0.54163622,2.517630257,-0.163317924,0.163317924,0.558082699,0.137250421,4.056283644,130.4640254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2730493,2.607551732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.938763692,125.4069836,114.211813,128.0145354,663.1292629,0,0.757328079,40.77078991,-0.757328079,139.2292101,0.983978415,0,766.7166942,128.0145354,850.4996474,8,11,11% +8/23/2018 20:00,26.7222893,173.6931482,912.2043656,884.6661287,122.0236529,899.9554902,774.7347189,125.2207713,118.3441895,6.876581825,224.8539729,0,224.8539729,3.679463353,221.1745096,0.466391932,3.031517324,0.11917415,-0.11917415,0.50977371,0.13376789,3.956443044,127.2528085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7569364,2.665758674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866429517,122.3202398,116.6233659,124.9859985,774.7347189,0,0.875736839,28.86769945,-0.875736839,151.1323005,0.992905222,0,885.8615143,124.9859985,967.6623506,8,12,9% +8/23/2018 21:00,28.73783136,205.343494,893.0262925,880.6703379,120.829098,952.5617251,828.6440608,123.9176643,117.1856549,6.732009409,220.1680068,0,220.1680068,3.643443117,216.5245637,0.501569777,3.583920067,0.390054248,-0.390054248,0.463450485,0.135302957,3.608674933,116.0673906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6433089,2.639662135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614472705,111.5683907,115.2577816,114.2080528,828.6440608,0,0.940924231,19.79264723,-0.940924231,160.2073528,0.996860758,0,941.3005286,114.2080528,1016.047415,8,13,8% +8/23/2018 22:00,36.01467391,229.4829586,813.4769407,862.584184,115.7615501,936.5078962,818.1046511,118.4032451,112.2709123,6.132332793,200.7275402,0,200.7275402,3.49063785,197.2369024,0.628574639,4.005233205,0.680823018,-0.680823018,0.413726097,0.142304648,3.048723579,98.05743021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9190713,2.52895524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208789854,94.25653171,110.1278611,96.78548695,818.1046511,0,0.94843456,18.47996339,-0.94843456,161.5200366,0.99728155,0,926.0085356,96.78548695,989.3527011,8,14,7% +8/23/2018 23:00,46.05719812,245.9916942,679.3447147,825.2091042,106.6991825,849.4374323,740.8344364,108.6029959,103.4818085,5.121187416,167.9323653,0,167.9323653,3.217374032,164.7149913,0.803849751,4.293364996,1.035063198,-1.035063198,0.353147458,0.157061916,2.32882596,74.90304817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47065047,2.330976534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687226481,71.99965897,101.1578769,74.33063551,740.8344364,0,0.897753591,26.13565998,-0.897753591,153.86434,0.99430543,0,837.77358,74.33063551,886.4214943,8,15,6% +8/23/2018 0:00,57.3229656,258.1062988,500.7827118,755.1483419,93.07587303,692.3892086,598.344805,94.04440366,90.26929204,3.775111613,124.2271473,0,124.2271473,2.806580985,121.4205663,1.000474487,4.504804735,1.543456671,-1.543456671,0.266207054,0.185860795,1.519823672,48.88275366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.77027707,2.03335837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101107077,46.98796216,87.87138415,49.02132053,598.344805,0,0.792353994,37.5939567,-0.792353994,142.4060433,0.986896892,0,678.3760123,49.02132053,710.4594862,8,16,5% +8/23/2018 1:00,69.06282221,268.054069,293.0318455,616.6771762,72.66589137,467.050931,394.3671866,72.68374446,70.47474663,2.208997829,73.24010829,0,73.24010829,2.191144733,71.04896356,1.205373638,4.678426077,2.484966583,-2.484966583,0.105199376,0.247979503,0.722544612,23.23951845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.7430071,1.5874769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523481112,22.33870909,68.26648821,23.92618599,394.3671866,0,0.639503458,50.24519644,-0.639503458,129.7548036,0.97181434,0,451.5181753,23.92618599,467.1773855,8,17,3% +8/23/2018 2:00,80.8384359,277.1368531,84.68999474,302.6638113,36.50018106,172.2683504,136.2303556,36.03799488,35.39956593,0.638428954,21.63468486,0,21.63468486,1.10061513,20.53406973,1.410896869,4.836950565,5.517981245,-5.517981245,0,0.430985752,0.275153783,8.849891483,0.292524585,1,0.179279915,0,0.941634297,0.98039626,0.724496596,1,34.30421247,0.797391915,0.04395165,0.312029739,0.882932802,0.607429398,0.961238037,0.922476074,0.189311558,8.506852315,34.49352403,9.30424423,96.37962736,0,0.45010454,63.24960868,-0.45010454,116.7503913,0.938914695,0,124.9857725,9.30424423,131.0752142,8,18,5% +8/23/2018 3:00,92.53570073,286.2269231,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615052653,4.995602216,-18.2156096,18.2156096,0,#DIV/0!,0,0,1,0.621957665,0,0.05484292,0.961238037,1,0.580773241,0.856276645,0,0,0.115824807,0.149158974,0.724496596,0.448993192,0.984208741,0.945446778,0,0,0,0,0,0,0.234057814,76.46390937,-0.234057814,103.5360906,0.836377565,0,0,0,0,8,19,0% +8/23/2018 4:00,103.5873521,296.0612332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807940357,5.167243308,-2.870967004,2.870967004,0.978882037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009922382,89.43148003,-0.009922382,90.56851997,0,0,0,0,0,8,20,0% +8/23/2018 5:00,113.6744182,307.3948969,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983992874,5.365053056,-1.229015679,1.229015679,0.740327749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208537023,102.0366318,0.208537023,77.96336816,0,0.810234422,0,0,0,8,21,0% +8/23/2018 6:00,122.1898197,321.0149248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132614666,5.602767386,-0.516805948,0.516805948,0.618532712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.406435021,113.9810843,0.406435021,66.01891575,0,0.926979105,0,0,0,8,22,0% +8/23/2018 7:00,128.283473,337.4590727,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238968979,5.889771909,-0.056168634,0.056168634,0.539759092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570286936,124.7702371,0.570286936,55.22976289,0,0.962324837,0,0,0,8,23,0% +8/24/2018 8:00,131.0035913,356.2875643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.286444,6.218391081,0.322589623,-0.322589623,0.474987615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688927901,133.5453028,0.688927901,46.45469724,0,0.977423465,0,0,0,8,0,0% +8/24/2018 9:00,129.7844094,15.59082981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265165262,0.272111313,0.698916111,-0.698916111,0.410631995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754273904,138.9619655,0.754273904,41.03803455,0,0.983711083,0,0,0,8,1,0% +8/24/2018 10:00,124.892967,33.09619495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179793487,0.577637572,1.146563814,-1.146563814,0.33407973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.761872984,139.6295954,0.761872984,40.37040458,0,0.984372263,0,0,0,8,2,0% +8/24/2018 11:00,117.2046812,47.78641991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045607586,0.834030365,1.801013052,-1.801013052,0.222162319,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711209029,135.3333706,0.711209029,44.66662942,0,0.97969718,0,0,0,8,3,0% +8/24/2018 12:00,107.6446766,59.9256654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878754029,1.045900168,3.095418007,-3.095418007,0.000806034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605737467,127.2819281,0.605737467,52.71807185,0,0.967455989,0,0,0,8,4,0% +8/24/2018 13:00,96.91408659,70.26328695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691469903,1.2263257,8.246467637,-8.246467637,0,#DIV/0!,0,0,0.468106419,1,0.120674838,0,0.948863158,0.987625121,0.724496596,1,0,0,0.065524894,0.312029739,0.831046951,0.555543546,0.961238037,0.922476074,0,0,0,0,0,0,-0.452650366,116.9138562,0.452650366,63.08614375,0,0.939539468,0,0,0,8,5,0% +8/24/2018 14:00,85.32069748,79.57779192,23.00822353,106.7929771,14.2962149,14.03857698,0,14.03857698,13.86513127,0.173445708,33.71924671,27.7095529,6.009693801,0.431083627,5.578610174,1.489127091,1.388894481,-12.0469761,12.0469761,0,0.6213524,0.107770907,3.466282819,1,0.371190964,0,0.082818513,0.961238037,1,0.516624519,0.792127923,13.32769157,0.297388881,0.115824807,0.076735658,0.724496596,0.448993192,0.992528543,0.95376658,0.078079655,3.3558979,13.40577122,3.653286781,0,17.42401725,-0.259469805,105.0386046,0.259469805,74.96139543,0,0.85729935,13.40577122,18.59088545,25.57313393,8,6,91% +8/24/2018 15:00,73.67506494,88.60384335,209.227205,526.1651893,61.33038454,61.05829021,0,61.05829021,59.48104716,1.577243049,77.28075343,24.70185784,52.57889559,1.849337379,50.72955821,1.28587246,1.546428796,-3.235813818,3.235813818,0.916489558,0.293128155,1.48413653,47.7349325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.175445,1.339838636,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.075251864,45.8846328,58.25069687,47.22447144,0,24.70185784,-0.046946963,92.69085192,0.046946963,87.30914808,0,0,58.25069687,47.22447144,89.15816893,8,7,53% +8/24/2018 16:00,61.8949282,98.13949347,421.9343954,713.1348303,85.98373325,212.5456609,125.9739347,86.57172614,83.39100645,3.180719698,104.895606,0,104.895606,2.592726804,102.3028792,1.080270287,1.712857287,-1.651116596,1.651116596,0.812511257,0.203784603,2.705897333,87.03095968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.15860733,1.878421743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960413406,83.65746882,82.11902073,85.53589057,125.9739347,0,0.176648131,79.82541658,-0.176648131,100.1745834,0.766951435,0,178.7349107,85.53589057,234.7164403,8,8,31% +8/24/2018 17:00,50.4141372,109.2772152,613.5895955,803.2147725,101.7539509,420.3922967,317.0811053,103.3111914,98.68569384,4.625497552,151.8401584,0,151.8401584,3.068257052,148.7719013,0.879892684,1.907247203,-0.936186743,0.936186743,0.690251052,0.165833892,3.430351899,110.3319088,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.86044261,2.222941789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485278273,106.0552274,97.34572089,108.2781692,317.0811053,0,0.394765032,66.74867949,-0.394765032,113.2513205,0.923342378,0,390.1201428,108.2781692,460.986039,8,9,18% +8/24/2018 18:00,39.82516162,123.8147916,765.9100161,850.8795026,112.4325642,618.844821,504.0287602,114.8160608,109.0423076,5.773753223,189.0940075,0,189.0940075,3.390256643,185.7037508,0.695080195,2.160975776,-0.49233992,0.49233992,0.614348775,0.146796049,3.873962375,124.5999466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8156137,2.456229397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806672553,119.7702081,107.6222862,122.2264375,504.0287602,0,0.59236209,53.67519097,-0.59236209,126.324809,0.965592168,0,594.3085093,122.2264375,674.3032682,8,10,13% +8/24/2018 19:00,31.30461452,144.6714713,866.9709706,875.4358117,118.983743,783.683304,661.7517665,121.9315375,115.3959441,6.535593387,213.7949481,0,213.7949481,3.587798854,210.2071493,0.546368594,2.524993508,-0.160758482,0.160758482,0.557645009,0.137240746,4.041311216,129.9824606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9229708,2.599348056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.927916219,124.9440853,113.850887,127.5434333,661.7517665,0,0.755911236,40.89494461,-0.755911236,139.1050554,0.983854668,0,764.9184513,127.5434333,848.3930775,8,11,11% +8/24/2018 20:00,27.05714475,173.9047672,909.3009948,884.4687971,121.6344,898.0532303,773.2318613,124.821369,117.9666741,6.854694989,224.1382797,0,224.1382797,3.667725943,220.4705537,0.472236262,3.035210773,0.122745506,-0.122745506,0.509162972,0.133766927,3.940220797,126.7310452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3940542,2.65725496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.854676554,121.8187011,116.2487307,124.4759561,773.2318613,0,0.874233058,29.04566215,-0.874233058,150.9543379,0.992807013,0,883.9187452,124.4759561,965.385769,8,12,9% +8/24/2018 21:00,29.0818106,205.2291615,889.8200289,880.3936745,120.4206017,950.4001556,826.9028401,123.4973155,116.7894762,6.70783924,219.3782934,0,219.3782934,3.631125445,215.747168,0.507573347,3.581924588,0.39484642,-0.39484642,0.462630975,0.135331413,3.591067792,115.5010844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2624869,2.630738024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.601716391,111.0240356,114.8642032,113.6547737,826.9028401,0,0.939242141,20.07532901,-0.939242141,159.924671,0.996765591,0,939.0925017,113.6547737,1013.477278,8,13,8% +8/24/2018 22:00,36.32618447,229.2181747,809.9159016,862.1383433,115.3275543,933.9651261,816.0096349,117.9554912,111.850003,6.105488176,199.8510385,0,199.8510385,3.477551275,196.3734872,0.634011524,4.000611853,0.687438485,-0.687438485,0.412594785,0.142394481,3.02977552,97.44799551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.5144773,2.519474061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.195062051,93.6707199,109.7095394,96.19019396,816.0096349,0,0.946495004,18.82740596,-0.946495004,161.172594,0.997173519,0,923.4127389,96.19019396,986.367297,8,14,7% +8/24/2018 23:00,46.33834389,245.7060927,675.4071009,824.4192101,106.229375,846.3811256,738.2634542,108.1176714,103.0261674,5.09150402,166.9634788,0,166.9634788,3.2032076,163.7602712,0.808756671,4.288380309,1.044902074,-1.044902074,0.351464911,0.157281993,2.308833139,74.26001032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.03267088,2.320713002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67274175,71.38154654,100.7054126,73.70225954,738.2634542,0,0.895495211,26.42789096,-0.895495211,153.572109,0.994164972,0,834.661079,73.70225954,882.8977338,8,15,6% +8/24/2018 0:00,57.58648103,257.8354353,496.4908731,753.593417,92.54520839,688.6386571,595.1412702,93.49738683,89.75462891,3.74275792,123.1705398,0,123.1705398,2.790579489,120.3799604,1.005073699,4.500077275,1.560222394,-1.560222394,0.263339946,0.18639861,1.499544778,48.23051472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.27556329,2.02176534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.086415087,46.36100529,87.36197837,48.38277063,595.1412702,0,0.789737884,37.83897695,-0.789737884,142.1610231,0.986687854,0,674.5806413,48.38277063,706.246197,8,16,5% +8/24/2018 1:00,69.31960911,267.8018922,288.510836,613.1045652,71.99009353,462.2462936,390.2520505,71.99424314,69.81932659,2.174916549,72.12355938,0,72.12355938,2.170766935,69.95279245,1.209855415,4.674024763,2.522320982,-2.522320982,0.098811398,0.249523015,0.703974149,22.64222853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11299243,1.572713255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510026875,21.7645713,67.6230193,23.33728456,390.2520505,0,0.636517933,50.46734215,-0.636517933,129.5326579,0.971447618,0,446.7324441,23.33728456,462.0062301,8,17,3% +8/24/2018 2:00,81.09551986,276.9005347,80.6992946,293.0890899,35.33272678,165.8243508,130.9486907,34.87566007,34.2673147,0.60834537,20.63189036,0,20.63189036,1.065412076,19.56647828,1.41538383,4.832826031,5.691961057,-5.691961057,0,0.437831916,0.266353019,8.566828675,0.307109257,1,0.173911567,0,0.942328673,0.981090637,0.724496596,1,33.21141808,0.771887422,0.045864034,0.312029739,0.878184296,0.602680892,0.961238037,0.922476074,0.18306191,8.234761578,33.39447999,9.006649,90.73313565,0,0.446788008,63.46220813,-0.446788008,116.5377919,0.938090103,0,118.5103365,9.006649,124.4050082,8,18,5% +8/24/2018 3:00,92.80494018,286.0041381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619751768,4.991713883,-16.51150806,16.51150806,0,#DIV/0!,0,0,1,0.575152878,0,0.060489934,0.961238037,1,0.567322607,0.842826011,0,0,0.115824807,0.133971314,0.724496596,0.448993192,0.986053387,0.947291423,0,0,0,0,0,0,0.230369404,76.68117895,-0.230369404,103.318821,0.832957289,0,0,0,0,8,19,0% +8/24/2018 4:00,103.8725967,295.8534515,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812918815,5.163616831,-2.820193231,2.820193231,0.987564864,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00596299,89.65834384,-0.00596299,90.34165616,0,0,0,0,0,8,20,0% +8/24/2018 5:00,113.9809442,307.2111976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989342761,5.361846898,-1.217417087,1.217417087,0.738344273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212690933,102.2800946,0.212690933,77.7199054,0,0.814917107,0,0,0,8,21,0% +8/24/2018 6:00,122.5196692,320.8774524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138371626,5.600368039,-0.513823551,0.513823551,0.618022692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41069368,114.2484181,0.41069368,65.75158187,0,0.928254762,0,0,0,8,22,0% +8/24/2018 7:00,128.6307505,337.4052511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245030115,5.888832545,-0.056648164,0.056648164,0.539841096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574553438,125.0683652,0.574553438,54.93163483,0,0.962975893,0,0,0,8,23,0% +8/25/2018 8:00,131.3500507,356.3531298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292490858,6.219535414,0.31992509,-0.31992509,0.475443277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693104858,133.8763906,0.693104858,46.12360938,0,0.977860843,0,0,0,8,0,0% +8/25/2018 9:00,130.1051519,15.7738394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270763274,0.275305433,0.694093046,-0.694093046,0.411456788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758270137,139.3119334,0.758270137,40.68806663,0,0.984060439,0,0,0,8,1,0% +8/25/2018 10:00,125.171847,33.35491803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184660862,0.582153141,1.138588263,-1.138588263,0.335443629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765609787,139.9612719,0.765609787,40.03872811,0,0.98469258,0,0,0,8,2,0% +8/25/2018 11:00,117.4403122,48.0782563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049720122,0.839123871,1.786626611,-1.786626611,0.224622545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714625577,135.6125222,0.714625577,44.38747776,0,0.980033291,0,0,0,8,3,0% +8/25/2018 12:00,107.8443553,60.22809652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88223908,1.051178586,3.061301569,-3.061301569,0.006640289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608795003,127.5024247,0.608795003,52.49757527,0,0.967870548,0,0,0,8,4,0% +8/25/2018 13:00,97.08756404,70.5702711,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694497655,1.231683585,8.042313291,-8.042313291,0,#DIV/0!,0,0,0.458042426,1,0.123707394,0,0.948508256,0.987270219,0.724496596,1,0,0,0.064368862,0.312029739,0.833733599,0.558230195,0.961238037,0.922476074,0,0,0,0,0,0,-0.455334866,117.0864821,0.455334866,62.91351785,0,0.940190706,0,0,0,8,5,0% +8/25/2018 14:00,85.473297,79.89234872,21.46199199,100.7246505,13.51242931,13.26676927,0,13.26676927,13.10497971,0.161789561,31.9728179,26.36165986,5.611158035,0.407449599,5.203708436,1.491790455,1.394384532,-12.44314751,12.44314751,0,0.629598097,0.1018624,3.276244927,1,0.396884512,0,0.080193169,0.961238037,1,0.522379087,0.797882492,12.59700497,0.280545126,0.115824807,0.083235809,0.724496596,0.448993192,0.991831496,0.953069533,0.073798962,3.17289105,12.67080393,3.453436176,0,15.89912537,-0.261720043,105.1721479,0.261720043,74.82785207,0,0.858956168,12.67080393,17.11008797,23.8690143,8,6,88% +8/25/2018 15:00,73.82501399,88.93392078,206.6517922,523.4692978,60.82798789,60.55162813,0,60.55162813,58.99379963,1.5578285,77.55606647,25.61675864,51.93930783,1.834188266,50.10511956,1.288489564,1.552189734,-3.261099952,3.261099952,0.912165374,0.294350159,1.461273526,46.9995797,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.70708414,1.328863155,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.058687695,45.17778373,57.76577184,46.50664688,0,25.61675864,-0.048936506,92.80497559,0.048936506,87.19502441,0,0,57.76577184,46.50664688,88.20344209,8,7,53% +8/25/2018 16:00,62.0495879,98.49625361,419.3797376,712.1579376,85.58617007,210.7367897,124.5698969,86.16689287,83.00543126,3.161461609,104.2642116,0,104.2642116,2.580738807,101.6834728,1.082969608,1.719083926,-1.656329932,1.656329932,0.81340279,0.204077981,2.691931358,86.58176593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.78797779,1.86973648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950295105,83.22568671,81.7382729,85.09542319,124.5698969,0,0.174918919,79.92606025,-0.174918919,100.0739398,0.764153276,0,176.9287677,85.09542319,232.6220203,8,8,31% +8/25/2018 17:00,50.58740991,109.6728225,611.0632161,802.7755669,101.38077,418.5999058,315.6696874,102.9302184,98.32376576,4.606452637,151.2163557,0,151.2163557,3.057004272,148.1593514,0.882916863,1.914151853,-0.936631415,0.936631415,0.690327095,0.165908808,3.416626915,109.8904662,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.51254357,2.214789188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475334569,105.630896,96.98787814,107.8456852,315.6696874,0,0.393222839,66.84481692,-0.393222839,113.1551831,0.922845636,0,388.3022716,107.8456852,458.8851156,8,9,18% +8/25/2018 18:00,40.03689408,124.2512394,763.3293941,850.6297595,112.0614093,617.0885733,502.6519296,114.4366438,108.6823444,5.754299404,188.4571141,0,188.4571141,3.379064953,185.0780491,0.698775624,2.168593228,-0.490870373,0.490870373,0.614097467,0.146806097,3.859698121,124.1411592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4696033,2.448121056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79633815,119.3292042,107.2659415,121.7773252,502.6519296,0,0.590917404,53.77786294,-0.590917404,126.2221371,0.965385806,0,592.5189796,121.7773252,672.2198034,8,10,13% +8/25/2018 19:00,31.57878391,145.0925043,864.2413524,875.2415621,118.6047706,781.884426,660.3410105,121.5434155,115.0283992,6.515016371,213.1216932,0,213.1216932,3.576371439,209.5453217,0.551153753,2.532341919,-0.158135642,0.158135642,0.557196477,0.137235704,4.026051638,129.4916601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5696726,2.591068933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916860707,124.4723092,113.4865333,127.0633781,660.3410105,0,0.754467154,41.02116737,-0.754467154,138.9788326,0.983728063,0,763.0825162,127.0633781,846.2429559,8,11,11% +8/25/2018 20:00,27.39498982,174.1161618,906.3338952,884.2571688,121.2411952,896.1021451,771.6844915,124.4176536,117.5853259,6.832327739,223.4070154,0,223.4070154,3.655869368,219.7511461,0.478132771,3.038900305,0.126392777,-0.126392777,0.508539252,0.133771004,3.92368591,126.1992264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0274878,2.648664912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842697085,121.3074967,115.8701849,123.9561616,771.6844915,0,0.872692378,29.22696524,-0.872692378,150.7730348,0.992706043,0,881.9260425,123.9561616,963.0528712,8,12,9% +8/25/2018 21:00,29.42919221,205.1188772,886.5427673,880.100078,120.0076504,948.1784144,825.1063036,123.0721108,116.3889769,6.683133857,218.5712314,0,218.5712314,3.61867344,214.952558,0.5136363,3.579999765,0.399735784,-0.399735784,0.461794844,0.13536589,3.573133935,114.9242699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.8775117,2.621716589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588723373,110.4695796,114.4662351,113.0912962,825.1063036,0,0.937514181,20.36179982,-0.937514181,159.6382002,0.996667473,0,936.8228499,113.0912962,1010.838841,8,13,8% +8/25/2018 22:00,36.64165751,228.95689,806.2789091,861.6704093,114.8885564,931.3516686,813.849355,117.5023135,111.4242426,6.07807099,198.9559702,0,198.9559702,3.46431387,195.4916563,0.639517567,3.996051576,0.694190975,-0.694190975,0.411440041,0.142492325,3.010500886,96.82805701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1052202,2.509883606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181097644,93.07481144,109.2863178,95.58469504,813.849355,0,0.944501919,19.17811467,-0.944501919,160.8218853,0.997062045,0,920.7446201,95.58469504,983.3028913,8,14,7% +8/25/2018 23:00,46.62348829,245.4220608,671.3914447,823.5966824,105.7538126,843.2441971,735.6180199,107.6261772,102.5649449,5.061232307,165.9754965,0,165.9754965,3.188867639,162.7866289,0.813733379,4.283423018,1.054962661,-1.054962661,0.349744449,0.157514388,2.288532627,73.60707606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.58932631,2.310323749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658034098,70.75392129,100.2473604,73.06424504,735.6180199,0,0.893177493,26.72471437,-0.893177493,153.2752856,0.994020085,0,831.4664471,73.06424504,879.2855342,8,15,6% +8/25/2018 0:00,57.85378158,257.564893,492.1226444,751.9810586,92.00724755,684.7961073,591.8533893,92.94271793,89.23288956,3.709828367,122.0951907,0,122.0951907,2.774357984,119.3208327,1.009738973,4.49535542,1.577433738,-1.577433738,0.260396633,0.186959996,1.479007943,47.56997949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.77404759,2.010012915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.07153622,45.7260737,86.84558381,47.73608661,591.8533893,0,0.787058906,38.08849509,-0.787058906,141.9115049,0.986472353,0,670.6925897,47.73608661,701.9349036,8,16,5% +8/25/2018 1:00,69.57991892,267.5493313,283.9225467,609.4013427,71.30209802,457.3290661,386.0366614,71.29240478,69.15207669,2.140328086,70.99032991,0,70.99032991,2.150021332,68.84030858,1.214398678,4.669616742,2.561022757,-2.561022757,0.092193004,0.251132215,0.685274378,22.04077962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.47160644,1.557683136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.496478954,21.18643573,66.9680854,22.74411886,386.0366614,0,0.633468675,50.69349871,-0.633468675,129.3065013,0.971069499,0,441.8365127,22.74411886,456.7220836,8,17,3% +8/25/2018 2:00,81.35576995,276.6634023,76.70050963,283.2006658,34.13585191,159.2591911,125.5744603,33.68473086,33.10653002,0.57820084,19.62624845,0,19.62624845,1.029321883,18.59692657,1.419926051,4.82868729,5.878344544,-5.878344544,0,0.445053782,0.257330471,8.276632506,0.322080977,1,0.168502821,0,0.943021767,0.98178373,0.724496596,1,32.09013437,0.7457402,0.047803148,0.312029739,0.873398968,0.597895564,0.961238037,0.922476074,0.176690813,7.955813982,32.26682518,8.701554182,85.12931545,0,0.4434116,63.67824192,-0.4434116,116.3217581,0.937237952,0,112.0532505,8.701554182,117.7482436,8,18,5% +8/25/2018 3:00,93.07735967,285.7802458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624506385,4.987806226,-15.0900077,15.0900077,0,#DIV/0!,0,0,1,0.526222852,0,0.066172265,0.961238037,1,0.554043686,0.82954709,0,0,0.115824807,0.1189819,0.724496596,0.448993192,0.987822327,0.949060364,0,0,0,0,0,0,0.226622322,76.90170514,-0.226622322,103.0982949,0.8293686,0,0,0,0,8,19,0% +8/25/2018 4:00,104.1609484,295.6443719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817951502,5.159967705,-2.770794928,2.770794928,0.996012471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.001951071,89.88821182,-0.001951071,90.11178818,0,0,0,0,0,8,20,0% +8/25/2018 5:00,114.290594,307.0261993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99474717,5.358618068,-1.205920085,1.205920085,0.73637817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216889447,102.5264007,0.216889447,77.47359933,0,0.819467807,0,0,0,8,21,0% +8/25/2018 6:00,122.8527254,320.7391588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144184553,5.597954362,-0.510823946,0.510823946,0.617509729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.414987789,114.5185475,0.414987789,65.48145247,0,0.929514527,0,0,0,8,22,0% +8/25/2018 7:00,128.9812412,337.3520424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251147331,5.887903878,-0.05708938,0.05708938,0.539916549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578845636,125.3693917,0.578845636,54.63060825,0,0.963621185,0,0,0,8,23,0% +8/26/2018 8:00,131.6993639,356.4216679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298587522,6.220731631,0.317307361,-0.317307361,0.475890935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697297829,134.2106085,0.697297829,45.78939153,0,0.978294628,0,0,0,8,0,0% +8/26/2018 9:00,130.4279285,15.96174565,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276396789,0.278585016,0.689329445,-0.689329445,0.412271412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762273437,139.6650311,0.762273437,40.33496891,0,0.98440674,0,0,0,8,1,0% +8/26/2018 10:00,125.451863,33.6189608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189548063,0.586761557,1.130702926,-1.130702926,0.336792101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769346063,140.2952022,0.769346063,39.70479781,0,0.985009741,0,0,0,8,2,0% +8/26/2018 11:00,117.6764684,48.37488465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053841826,0.844301012,1.772424031,-1.772424031,0.227051329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718035881,135.8925563,0.718035881,44.10744372,0,0.980365597,0,0,0,8,3,0% +8/26/2018 12:00,108.0442854,60.53462993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885728517,1.056528604,3.02781639,-3.02781639,0.012366592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611842842,127.7228721,0.611842842,52.27712795,0,0.968279668,0,0,0,8,4,0% +8/26/2018 13:00,97.26127234,70.88081387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697529437,1.237103578,7.847380737,-7.847380737,0,#DIV/0!,0,0,0.448071063,1,0.126747927,0,0.948150302,0.986912265,0.724496596,1,0,0,0.063214391,0.312029739,0.836427231,0.560923827,0.961238037,0.922476074,0,0,0,0,0,0,-0.458008721,117.2586884,0.458008721,62.74131165,0,0.940831773,0,0,0,8,5,0% +8/26/2018 14:00,85.62606364,80.21009737,19.95797191,94.71115175,12.73478193,12.50123289,0,12.50123289,12.35078126,0.150451623,30.22277095,24.99972893,5.223042017,0.384000661,4.839041356,1.494456736,1.399930292,-12.86687309,12.86687309,0,0.63807996,0.096000165,3.087695316,1,0.422138535,0,0.077563045,0.961238037,1,0.528199375,0.803702779,11.87204074,0.26396289,0.115824807,0.089808365,0.724496596,0.448993192,0.99111663,0.952354667,0.069551793,2.99110475,11.94159253,3.25506764,0,14.44637998,-0.263957607,105.3050228,0.263957607,74.69497718,0,0.860575643,11.94159253,15.68727037,22.20859724,8,6,86% +8/26/2018 15:00,73.97565662,89.26694369,204.0647335,520.7213466,60.32182184,60.0412225,0,60.0412225,58.50289634,1.538326158,77.81238572,26.51560301,51.29678271,1.818925492,49.47785722,1.291118774,1.558002081,-3.286818357,3.286818357,0.907767268,0.295601405,1.438383251,46.26334975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.23520923,1.317805327,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.042103769,44.47009149,57.277313,45.78789682,0,26.51560301,-0.050920907,92.91881534,0.050920907,87.08118466,0,0,57.277313,45.78789682,87.24457571,8,7,52% +8/26/2018 16:00,62.20541172,98.85572618,416.8011244,711.1576669,85.18610864,208.9237739,123.1643178,85.7594561,82.61743316,3.142022933,103.6269336,0,103.6269336,2.568675479,101.0582582,1.085689247,1.725357906,-1.661554414,1.661554414,0.814296229,0.204380707,2.677790607,86.12695076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41501926,1.86099664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.940050179,82.78850107,81.35506944,84.64949771,123.1643178,0,0.173188483,80.02674375,-0.173188483,99.97325625,0.761297201,0,175.1197198,84.64949771,230.5211231,8,8,32% +8/26/2018 17:00,50.76246851,110.0706936,608.502217,802.3205089,101.0049754,416.7924679,314.2460185,102.5464494,97.95930269,4.587146744,150.5840802,0,150.5840802,3.045672676,147.5384075,0.885972212,1.921096014,-0.937036266,0.937036266,0.690396329,0.165989494,3.402687131,109.4421148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.16220781,2.206579486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465235244,105.1999236,96.62744305,107.4065031,314.2460185,0,0.391671427,66.94145949,-0.391671427,113.0585405,0.922341977,0,386.469737,107.4065031,456.7651451,8,9,18% +8/26/2018 18:00,40.25113348,124.6887787,760.7036149,850.3663917,111.6872433,615.3061262,501.2521602,114.053966,108.3194608,5.734505172,187.809181,0,187.809181,3.367782467,184.4413986,0.702514807,2.176229729,-0.489347524,0.489347524,0.613837045,0.146820971,3.845179915,123.6742038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1207859,2.439946933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.785819759,118.8803489,106.9066056,121.3202958,501.2521602,0,0.58945434,53.88170393,-0.58945434,126.1182961,0.965175788,0,590.7030543,121.3202958,670.1047615,8,10,13% +8/26/2018 19:00,31.85595187,145.5124432,861.4566063,875.0339179,118.2223166,780.0476583,658.896157,121.1515013,114.6574776,6.494023779,212.4349668,0,212.4349668,3.56483904,208.8701278,0.555991247,2.539671237,-0.155450235,0.155450235,0.556737246,0.137235371,4.010505004,128.9916269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2131286,2.582713749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905597223,123.9916583,113.1187259,126.574372,658.896157,0,0.752994991,41.14951645,-0.752994991,138.8504836,0.983598496,0,761.2079948,126.574372,844.0483898,8,11,11% +8/26/2018 20:00,27.73575292,174.32713,903.3029028,884.0310491,120.8440253,894.101472,770.0918611,124.0096109,117.200132,6.809478838,222.6601401,0,222.6601401,3.643893228,219.0162469,0.484080209,3.042582395,0.130115304,-0.130115304,0.507902662,0.13378018,3.90683997,125.6574031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6572248,2.63998824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830492259,120.7866755,115.4877171,123.4266637,770.0918611,0,0.871114043,29.41164235,-0.871114043,150.5883577,0.992602234,0,879.8826188,123.4266637,960.6629017,8,12,9% +8/26/2018 21:00,29.77986443,205.0124655,883.194676,879.7893647,119.5902487,945.8959641,823.2539081,122.642056,115.9841615,6.65789453,217.7468617,0,217.7468617,3.60608724,214.1407745,0.519756685,3.57814253,0.404721957,-0.404721957,0.460942159,0.135406442,3.554876679,114.3370538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4883877,2.61259793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575496052,109.9051251,114.0638837,112.5177231,823.2539081,0,0.935739782,20.65200766,-0.935739782,159.3479923,0.996566341,0,934.491019,112.5177231,1008.131618,8,13,8% +8/26/2018 22:00,36.96097002,228.6990747,802.5665314,861.1801686,114.4445807,928.6673086,811.6235688,117.0437398,110.9936543,6.050085519,198.0424737,0,198.0424737,3.450926362,194.5915473,0.645090622,3.991551849,0.701080731,-0.701080731,0.410261824,0.142598247,2.990904873,96.19778188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6913224,2.500184402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.166900399,92.468967,108.8582228,94.9691514,811.6235688,0,0.942455015,19.53198218,-0.942455015,160.4680178,0.99694707,0,918.0039616,94.9691514,980.1593718,8,14,7% +8/26/2018 23:00,46.91251614,245.1396357,667.298759,822.7411723,105.272536,840.0268068,732.8982463,107.1285605,102.0981806,5.030379913,164.9686652,0,164.9686652,3.174355373,161.7943098,0.818777867,4.27849377,1.065247022,-1.065247022,0.34798572,0.157759226,2.267931634,72.94447732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.14065467,2.299809662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643108749,70.11700618,99.78376341,72.41681584,732.8982463,0,0.890800498,27.02598989,-0.890800498,152.9740101,0.993870709,0,828.1898634,72.41681584,875.585221,8,15,6% +8/26/2018 0:00,58.12475768,257.2947174,487.6795233,750.3104034,91.4620265,680.8620383,588.4815952,92.38044319,88.70410894,3.676334243,121.0014641,0,121.0014641,2.757917558,118.2435466,1.014468398,4.490639966,1.595099805,-1.595099805,0.257375558,0.187545349,1.458222823,46.9014586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.26576354,1.998101882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056477471,45.08346599,86.32224101,47.08156787,588.4815952,0,0.78431752,38.34239877,-0.78431752,141.6576012,0.986250308,0,666.7123958,47.08156787,697.5263403,8,16,5% +8/26/2018 1:00,69.84364247,267.2964233,279.2691655,605.5644233,70.60181186,452.2996685,381.7215128,70.57815567,68.47290674,2.105248933,69.84094755,0,69.84094755,2.128905121,67.71204243,1.219001523,4.665202666,2.601126565,-2.601126565,0.085334849,0.252809191,0.666459931,21.43564233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.81876245,1.542384513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.482847951,20.60475475,66.3016104,22.14713927,381.7215128,0,0.63035657,50.92356547,-0.63035657,129.0764345,0.970679815,0,436.8309777,22.14713927,451.3258374,8,17,3% +8/26/2018 2:00,81.61906176,276.4254802,72.70020699,272.9992534,32.9095014,152.5785484,120.113345,32.46520338,31.91715851,0.548044869,18.61934977,0,18.61934977,0.99234289,17.62700688,1.42452136,4.824534767,6.078400924,-6.078400924,0,0.452674109,0.248085723,7.979289627,0.337447382,1,0.163056338,0,0.943713074,0.982475037,0.724496596,1,30.94033114,0.718949046,0.049768528,0.312029739,0.868579202,0.593075798,0.961238037,0.922476074,0.170197647,7.669996697,31.11052878,8.388945742,79.58141119,0,0.439976826,63.89759744,-0.439976826,116.1024026,0.936357651,0,105.627192,8.388945742,111.1175892,8,18,5% +8/26/2018 3:00,93.3528457,285.5552553,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629314523,4.983879401,-13.88672773,13.88672773,0,#DIV/0!,0,0,1,0.475044672,0,0.071887117,0.961238037,1,0.540948041,0.816451445,0,0,0.115824807,0.104200543,0.724496596,0.448993192,0.9895161,0.950754137,0,0,0,0,0,0,0.222818214,77.1253856,-0.222818214,102.8746144,0.825601828,0,0,0,0,8,19,0% +8/26/2018 4:00,104.4522909,295.4339847,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823036388,5.156295755,-2.722741711,2.722741711,0.995769945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002111422,90.12097564,0.002111422,89.87902436,0,0,0,0,0,8,20,0% +8/26/2018 5:00,114.6032508,306.839869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00020406,5.35536599,-1.194530691,1.194530691,0.734430469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.22113039,102.7754349,0.22113039,77.22456511,0,0.823889061,0,0,0,8,21,0% +8/26/2018 6:00,123.1888761,320.59999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150051489,5.595525408,-0.507810817,0.507810817,0.616994454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419315051,114.7913514,0.419315051,65.20864863,0,0.930757917,0,0,0,8,22,0% +8/26/2018 7:00,129.3348427,337.2993918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257318842,5.886984953,-0.05749442,0.05749442,0.539985815,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583161218,125.6731944,0.583161218,54.32680556,0,0.964260416,0,0,0,8,23,0% +8/27/2018 8:00,132.0514367,356.493152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304732352,6.221979264,0.314735048,-0.314735048,0.476330827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701504593,134.5478427,0.701504593,45.45215729,0,0.978724629,0,0,0,8,0,0% +8/27/2018 9:00,130.75265,16.15453254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282064248,0.281949782,0.684624182,-0.684624182,0.413076059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766281782,140.0211602,0.766281782,39.97883984,0,0.984749852,0,0,0,8,1,0% +8/27/2018 10:00,125.7329373,33.88827896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194453734,0.591462046,1.122906395,-1.122906395,0.338125387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773080076,140.6312884,0.773080076,39.36871156,0,0.985323647,0,0,0,8,2,0% +8/27/2018 11:00,117.9130929,48.67622936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057971703,0.84956047,1.758401961,-1.758401961,0.229449244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721438556,136.1733783,0.721438556,43.82662166,0,0.980694028,0,0,0,8,3,0% +8/27/2018 12:00,108.2444328,60.84517252,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889221749,1.061948594,2.994944693,-2.994944693,0.017987983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614880001,127.9432015,0.614880001,52.05679851,0,0.968683321,0,0,0,8,4,0% +8/27/2018 13:00,97.4351981,71.19481335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700565014,1.242583903,7.661048297,-7.661048297,0,#DIV/0!,0,0,0.438190483,1,0.129796593,0,0.947789264,0.986551227,0.724496596,1,0,0,0.062061415,0.312029739,0.839127959,0.563624555,0.961238037,0.922476074,0,0,0,0,0,0,-0.460671365,117.4304379,0.460671365,62.56956208,0,0.941462757,0,0,0,8,5,0% +8/27/2018 14:00,85.77898458,80.53092865,18.49804741,88.76498282,11.96459002,11.74325958,0,11.74325958,11.60381348,0.139446095,28.47348929,23.627647,4.84584229,0.360776534,4.485065757,1.49712571,1.405529855,-13.32114679,13.32114679,0,0.646802863,0.090194133,2.900953371,1,0.446965041,0,0.074928076,0.961238037,1,0.534085787,0.809589191,11.15402689,0.247654619,0.115824807,0.09645419,0.724496596,0.448993192,0.990383545,0.951621582,0.065345343,2.810869557,11.21937224,3.058524176,0,13.06691478,-0.266182071,105.4372035,0.266182071,74.56279649,0,0.862158649,11.21937224,14.32427776,20.59432555,8,6,84% +8/27/2018 15:00,74.12700892,89.60279165,201.4658576,517.9197907,59.81177605,59.52696506,0,59.52696506,58.00823032,1.518734734,78.04942084,27.39814545,50.6512754,1.80354573,48.84772967,1.29376037,1.563863733,-3.31298755,3.31298755,0.903292072,0.29688294,1.415465337,45.52623088,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.75971744,1.306662742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.025499819,43.7615448,56.78521725,45.06820754,0,27.39814545,-0.052900364,93.03238304,0.052900364,86.96761696,0,0,56.78521725,45.06820754,86.28145773,8,7,52% +8/27/2018 16:00,62.36242444,99.21777049,414.1980757,710.1332963,84.78348528,207.1061886,121.7568382,85.34935043,82.22695038,3.122400053,102.9836538,0,102.9836538,2.556534899,100.4271189,1.088429636,1.731676772,-1.66679311,1.66679311,0.815192099,0.204693093,2.663472815,85.66644134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.03967236,1.852200831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929676987,82.3458419,80.96934935,84.19804273,121.7568382,0,0.171456315,80.12749691,-0.171456315,99.87250309,0.758380528,0,173.3073646,84.19804273,228.4132996,8,8,32% +8/27/2018 17:00,50.9393387,110.4706525,605.9060201,801.8491626,100.626517,414.9692644,312.8094326,102.1598318,97.59225627,4.567575516,149.9431903,0,149.9431903,3.034260761,146.9089295,0.889059179,1.928076614,-0.937402818,0.937402818,0.690459013,0.166076114,3.388530699,108.9867953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.80938883,2.198311592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454978956,104.7622531,96.26436779,106.9605647,312.8094326,0,0.39011007,67.03865158,-0.39011007,112.9613484,0.921831045,0,384.6218139,106.9605647,454.6253643,8,9,18% +8/27/2018 18:00,40.46789141,125.1271842,758.032134,850.0890938,111.3100265,613.4966153,499.8286304,113.6679849,107.9536185,5.71436642,187.1500751,0,187.1500751,3.356407988,183.7936671,0.706297946,2.183881347,-0.487772468,0.487772468,0.613567694,0.146840776,3.830406748,123.1990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7691243,2.431706162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.77511665,118.423611,106.5442409,120.8553172,499.8286304,0,0.587972054,53.98676933,-0.587972054,126.0132307,0.964961945,0,588.8598481,120.8553172,667.9572361,8,10,13% +8/27/2018 19:00,32.1360919,145.9310502,858.6163398,874.8126442,117.8363535,778.1721271,657.4163618,120.7557653,114.2831527,6.47261265,211.7346731,0,211.7346731,3.553200829,208.1814723,0.560880612,2.546977308,-0.152703145,0.152703145,0.556267465,0.137239822,3.994671536,128.4823682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8533133,2.574281905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.894125929,123.5021394,112.7474393,126.0764213,657.4163618,0,0.751493895,41.28005005,-0.751493895,138.71995,0.98346586,0,759.2939869,126.0764213,841.8084831,8,11,11% +8/27/2018 20:00,28.07936259,174.5374753,900.2078831,883.7902424,120.4428782,892.0504599,768.4532315,123.5972284,116.8110811,6.786147272,221.8976207,0,221.8976207,3.631797166,218.2658235,0.490077329,3.046253612,0.133912391,-0.133912391,0.507253322,0.133794516,3.889684745,125.1056321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2832543,2.631224684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818063357,120.2562922,115.1013176,122.8875169,768.4532315,0,0.869497302,29.59972477,-0.869497302,150.4002752,0.992495509,0,877.7876986,122.8875169,958.2151206,8,12,9% +8/27/2018 21:00,30.13371599,204.9097482,879.7759656,879.4613512,119.1684035,943.552296,821.3451366,122.2071593,115.5750365,6.632122848,216.9052356,0,216.9052356,3.593367051,213.3118686,0.52593256,3.576349776,0.409804528,-0.409804528,0.460072988,0.135453125,3.536299559,113.7395498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0951212,2.603382196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562036992,109.3307815,113.6571582,111.9341637,821.3451366,0,0.933918398,20.94589858,-0.933918398,159.0541014,0.996462132,0,932.0964841,111.9341637,1005.355156,8,13,8% +8/27/2018 22:00,37.28399816,228.4446896,798.779389,860.6674089,113.9956539,925.9118748,809.3320741,116.5798007,110.5582643,6.02153644,197.1107004,0,197.1107004,3.437389563,193.6733108,0.650728526,3.987111992,0.708107984,-0.708107984,0.409060093,0.142712313,2.970992921,95.55734507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2728089,2.490377037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152474258,91.85335478,108.4252832,94.34373182,809.3320741,0,0.940354039,19.88890214,-0.940354039,160.1110979,0.996828537,0,915.1905905,94.34373182,976.9366761,8,14,7% +8/27/2018 23:00,47.2053104,244.8588466,663.1301159,821.8523308,104.7855888,836.7291696,730.104298,106.6248716,101.6259167,4.998954921,163.9432462,0,163.9432462,3.159672119,160.783574,0.823888091,4.273593076,1.07575726,-1.07575726,0.346188363,0.158016634,2.247037623,72.27245409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68669663,2.289171695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.627971108,69.47103188,99.31466774,71.76020358,730.104298,0,0.888364333,27.33157601,-0.888364333,152.668424,0.993716786,0,824.8315641,71.76020358,871.7971822,8,15,6% +8/27/2018 0:00,58.39929761,257.0249484,483.1630706,748.5805751,90.90958366,676.8369897,585.0263781,91.81061161,88.16832429,3.642287315,119.8897397,0,119.8897397,2.741259368,117.1484803,1.019260024,4.48593161,1.61323002,-1.61323002,0.254275108,0.188155075,1.437199338,46.22527104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.75074696,1.986033081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.041246028,44.43348879,85.79199299,46.41952187,585.0263781,0,0.781514239,38.6005725,-0.781514239,141.3994275,0.986021639,0,662.6406613,46.41952187,693.0213099,8,16,5% +8/27/2018 1:00,70.11066842,267.0432013,274.552957,601.5906325,69.88913856,447.158572,377.3071527,69.85141933,67.78172317,2.069696162,68.67595848,0,68.67595848,2.107415391,66.56854309,1.223662005,4.660783108,2.642690328,-2.642690328,0.078227027,0.254556131,0.647545816,20.82729935,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.15437051,1.526815277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.469144739,20.01999234,65.62351525,21.54680762,377.3071527,0,0.62718256,51.15743857,-0.62718256,128.8425614,0.970278395,0,431.7164939,21.54680762,445.8184486,8,17,3% +8/27/2018 2:00,81.8852673,276.1867894,68.70537806,262.4874343,31.6537553,145.7891101,114.5719021,31.21720794,30.69927778,0.517930161,17.61289187,0,17.61289187,0.954477512,16.65841435,1.429167523,4.820368826,6.293579534,-6.293579534,0,0.460717286,0.238619378,7.674819446,0.353216241,1,0.15757482,0,0.944402098,0.983164061,0.724496596,1,29.76211192,0.691515708,0.051759684,0.312029739,0.863727429,0.588224025,0.961238037,0.922476074,0.163582246,7.377328377,29.92569416,8.068844086,74.10324552,0,0.436485283,64.12015752,-0.436485283,115.8798425,0.935448601,0,99.24547149,8.068844086,104.5263686,8,18,5% +8/27/2018 3:00,93.63128296,285.3291724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634174171,4.979933511,-12.85544882,12.85544882,0,#DIV/0!,0,0,1,0.421485423,0,0.077631696,0.961238037,1,0.528046751,0.803550155,0,0,0.115824807,0.089636035,0.724496596,0.448993192,0.991135502,0.952373539,0,0,0,0,0,0,0.218958781,77.35211542,-0.218958781,102.6478846,0.821646519,0,0,0,0,8,19,0% +8/27/2018 4:00,104.7465062,295.2222764,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828171413,5.152600749,-2.676002893,2.676002893,0.987777136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006222488,90.35652462,0.006222488,89.64347538,0,0,0,0,0,8,20,0% +8/27/2018 5:00,114.9187965,306.6521697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005711372,5.35209002,-1.183254523,1.183254523,0.73250213,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225411551,103.02708,0.225411551,76.97292001,0,0.828183505,0,0,0,8,21,0% +8/27/2018 6:00,123.5280083,320.4598872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155970463,5.593080152,-0.504787782,0.504787782,0.616477484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.423673145,115.0667067,0.423673145,64.93329329,0,0.931984496,0,0,0,8,22,0% +8/27/2018 7:00,129.6914526,337.2472399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26354286,5.886074729,-0.057865455,0.057865455,0.540049265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587497862,125.9796492,0.587497862,54.02035076,0,0.964893307,0,0,0,8,23,0% +8/28/2018 8:00,132.4061761,356.5675518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310923723,6.223277784,0.312206681,-0.312206681,0.476763203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705722939,134.8879788,0.705722939,45.11202116,0,0.979150666,0,0,0,8,0,0% +8/28/2018 9:00,131.0792286,16.35218114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28776412,0.285399401,0.679976019,-0.679976019,0.413870942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770293169,140.3802225,0.770293169,39.61977753,0,0.985089649,0,0,0,8,1,0% +8/28/2018 10:00,126.0149944,34.16282527,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199376558,0.596253783,1.115197108,-1.115197108,0.339443752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776810121,140.9694339,0.776810121,39.03056611,0,0.985634206,0,0,0,8,2,0% +8/28/2018 11:00,118.1501315,48.98221234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062108807,0.85490088,1.744556843,-1.744556843,0.231816899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724832266,136.4548961,0.724832266,43.5451039,0,0.981018523,0,0,0,8,3,0% +8/28/2018 12:00,108.4447666,61.15962942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892718233,1.067436903,2.962668735,-2.962668735,0.023507497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617905551,128.1633475,0.617905551,51.83665249,0,0.969081484,0,0,0,8,4,0% +8/28/2018 13:00,97.60933084,71.51216652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703604204,1.248122761,7.482745601,-7.482745601,0,#DIV/0!,0,0,0.428398698,1,0.132853602,0,0.947425102,0.986187065,0.724496596,1,0,0,0.060909843,0.312029739,0.841835947,0.566332543,0.961238037,0.922476074,0,0,0,0,0,0,-0.463322289,117.6016974,0.463322289,62.39830259,0,0.942083759,0,0,0,8,5,0% +8/28/2018 14:00,85.93204806,80.85473265,17.08410568,82.89934104,11.20326617,10.99423357,0,10.99423357,10.86544636,0.128787205,26.72966568,22.24960665,4.480059026,0.337819811,4.142239215,1.499797172,1.4111813,-13.80941811,13.80941811,0,0.655771299,0.084454953,2.716361591,1,0.471375868,0,0.072288168,0.961238037,1,0.540038803,0.815542207,10.44428033,0.231635123,0.115824807,0.103174217,0.724496596,0.448993192,0.989631829,0.950869866,0.061187326,2.632538258,10.50546766,2.864173381,0,11.76167901,-0.268393046,105.5686661,0.268393046,74.43133392,0,0.863706053,10.50546766,13.02280673,19.02863421,8,6,81% +8/28/2018 15:00,74.27908914,89.9413437,198.8549604,515.0629825,59.29773101,59.00873833,0,59.00873833,57.50968564,1.499052688,78.26688196,28.26414916,50.0027328,1.788045375,48.21468742,1.296414671,1.569772581,-3.339627636,3.339627636,0.898736349,0.298195886,1.392519141,44.78820232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.28049732,1.295432788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.008875377,43.05212367,56.2893727,44.34755646,0,28.26414916,-0.054875132,93.14569357,0.054875132,86.85430643,0,0,56.2893727,44.34755646,85.31396145,8,7,52% +8/28/2018 16:00,62.52065243,99.58224544,411.5700825,709.0840649,84.37823245,205.2835734,120.3470669,84.93650655,81.83391742,3.10258913,102.3342465,0,102.3342465,2.544315031,99.78993149,1.091191235,1.738038059,-1.672049399,1.672049399,0.816090977,0.205015466,2.648975617,85.20016165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.66187413,1.843347579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919173817,81.89763612,80.58104795,83.7409837,120.3470669,0,0.169721861,80.22835215,-0.169721861,99.77164785,0.755400354,0,171.4912649,83.7409837,226.2980639,8,8,32% +8/28/2018 17:00,51.11804695,110.8725231,603.2740317,801.3610748,100.2453435,413.1295457,311.3592347,101.770311,97.22257652,4.547734475,149.2935404,0,149.2935404,3.022766972,146.2707735,0.892178227,1.935090579,-0.937732723,0.937732723,0.69051543,0.166168836,3.37415576,108.5244478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.45403859,2.189984382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444564362,104.3178272,95.89860296,106.5078116,311.3592347,0,0.388538007,67.13643954,-0.388538007,112.8635605,0.921312461,0,382.7577457,106.5078116,452.4649782,8,9,18% +8/28/2018 18:00,40.6871791,125.5662322,755.3144062,849.7975518,110.9297187,611.6591569,498.3804995,113.2786574,107.5847784,5.69387904,186.4796628,0,186.4796628,3.344940305,183.1347225,0.710125239,2.191544182,-0.486146377,0.486146377,0.613289616,0.14686562,3.815377679,122.7156614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4145812,2.423397865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.76422814,117.9589615,106.1788093,120.3823594,498.3804995,0,0.586469681,54.09311574,-0.586469681,125.9068843,0.964744101,0,586.9884562,120.3823594,665.7763027,8,10,13% +8/28/2018 19:00,32.41917669,146.3480935,855.7201755,874.5775026,117.4468545,776.2569551,655.9007765,120.3561787,113.9053985,6.45078014,211.0207197,0,211.0207197,3.541455996,207.4792637,0.565821374,2.554256086,-0.149895302,0.149895302,0.555787296,0.137249136,3.978551587,127.9638952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4902017,2.565772814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882447081,123.0037634,112.3726487,125.5695362,655.9007765,0,0.74996301,41.41282618,-0.74996301,138.5871738,0.983330045,0,757.3395889,125.5695362,839.522339,8,11,11% +8/28/2018 20:00,28.42574742,174.7470067,897.048731,883.5345519,120.0377438,889.9483707,766.7678755,123.1804952,116.4181629,6.762332249,221.1194314,0,221.1194314,3.619580868,217.4998505,0.496122885,3.049910625,0.137783311,-0.137783311,0.506591356,0.133814072,3.872222185,124.5439761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9055664,2.622374018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805411791,119.7164071,114.7109782,122.3387811,766.7678755,0,0.867841415,29.7912413,-0.867841415,150.2087587,0.992385787,0,875.6405199,122.3387811,955.7088053,8,12,9% +8/28/2018 21:00,30.49063623,204.8105455,876.286889,879.1158549,118.7421238,941.1469303,819.379499,121.7674313,115.1616106,6.605820714,216.0464147,0,216.0464147,3.580513143,212.4659015,0.532161993,3.574618363,0.414983064,-0.414983064,0.459187406,0.135505992,3.517406329,113.1318785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6977205,2.594069584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548348912,108.7466648,113.2460694,111.3407344,819.379499,0,0.932049507,21.24341678,-0.932049507,158.7565832,0.996354781,0,929.6387506,111.3407344,1002.509034,8,13,8% +8/28/2018 22:00,37.61061743,228.1936873,794.9181542,860.1319193,113.5418056,923.0852395,806.9747095,116.11053,110.1181012,5.992428822,196.1608141,0,196.1608141,3.423704363,192.7371097,0.656429108,3.982731176,0.715272955,-0.715272955,0.40783481,0.142834586,2.950770708,94.90692917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8497074,2.480462156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.137823333,91.22815028,107.9875308,93.70861243,806.9747095,0,0.938198771,20.24876919,-0.938198771,159.7512308,0.996706389,0,912.3043797,93.70861243,973.6347924,8,14,7% +8/28/2018 23:00,47.50175239,244.5797153,658.8866453,820.9298083,104.2930176,833.3515556,727.2363914,106.1151642,101.1481983,4.966965847,162.8995148,0,162.8995148,3.144819281,159.7546955,0.82906198,4.268721316,1.08649552,-1.08649552,0.344352013,0.158286738,2.225858295,71.5912541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.22749559,2.278410864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.612626758,68.81623655,98.84012234,71.09464741,727.2363914,0,0.88586915,27.64133033,-0.88586915,152.3586697,0.993558256,0,821.3918429,71.09464741,867.9218678,8,15,6% +8/28/2018 0:00,58.67728769,256.7556205,478.5749083,746.7906833,90.3499597,672.72156,581.4882851,91.23327487,87.62557506,3.60769981,118.7604119,0,118.7604119,2.724384641,116.0360273,1.024111866,4.481230951,1.631834144,-1.631834144,0.251093616,0.188789588,1.415947652,45.54174379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22903575,1.973807398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025849254,43.7764564,85.254885,45.75026379,581.4882851,0,0.778649624,38.86289797,-0.778649624,141.137102,0.985786266,0,658.4780502,45.75026379,688.4206829,8,16,5% +8/28/2018 1:00,70.38088342,266.7896939,269.776261,597.4767047,69.16397781,441.9062976,372.7941815,69.1121161,67.07842869,2.033687409,67.49592695,0,67.49592695,2.085549119,65.41037783,1.228378146,4.65635857,2.685775475,-2.685775475,0.070859033,0.25637533,0.628547405,20.21624515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.47833711,1.510973237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455380455,19.4326238,64.93371757,20.94359704,372.7941815,0,0.623947643,51.39501116,-0.623947643,128.6049888,0.969865071,0,426.4937729,20.94359704,440.2009383,8,17,3% +8/28/2018 2:00,82.15425485,275.9473473,64.72346761,251.6700314,30.36886098,138.898725,108.9576844,29.94104061,29.45312777,0.487912838,16.60868727,0,16.60868727,0.915733208,15.69295406,1.433862242,4.816189773,6.525542656,-6.525542656,0,0.469209424,0.228933302,7.363281943,0.369395434,1,0.152061005,0,0.945088349,0.983850313,0.724496596,1,28.55574458,0.663445592,0.053776103,0.312029739,0.858846127,0.583342722,0.961238037,0.922476074,0.156845049,7.077866679,28.71258963,7.741312271,68.70921326,0,0.432938653,64.34580048,-0.432938653,115.6541995,0.934510196,0,92.92205001,7.741312271,97.98858406,8,18,5% +8/28/2018 3:00,93.91255448,285.1019999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639083285,4.975968602,-11.9621316,11.9621316,0,#DIV/0!,0,0,1,0.365401166,0,0.083403214,0.961238037,1,0.515350402,0.790853806,0,0,0.115824807,0.075296171,0.724496596,0.448993192,0.992681567,0.953919604,0,0,0,0,0,0,0.215045773,77.58178725,-0.215045773,102.4182127,0.817491362,0,0,0,0,8,19,0% +8/28/2018 4:00,105.0434747,295.0092308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833354491,5.148882401,-2.630547628,2.630547628,0.980003828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010380089,90.59474595,0.010380089,89.40525405,0,0,0,0,0,8,20,0% +8/28/2018 5:00,115.2371118,306.4630613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011267022,5.348789456,-1.172096806,1.172096806,0.730594048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229730688,103.2812168,0.229730688,76.71878324,0,0.832353849,0,0,0,8,21,0% +8/28/2018 6:00,123.8700084,320.3187871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16193949,5.590617492,-0.501758389,0.501758389,0.615959428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428059733,115.3444888,0.428059733,64.65551119,0,0.933193872,0,0,0,8,22,0% +8/28/2018 7:00,130.0509687,337.1955223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269817599,5.885172086,-0.058204684,0.058204684,0.540107277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591853244,126.2886306,0.591853244,53.71136943,0,0.965519598,0,0,0,8,23,0% +8/29/2018 8:00,132.7634898,356.6448331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317160023,6.224626597,0.309720723,-0.309720723,0.477188327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709950665,135.2309014,0.709950665,44.76909856,0,0.979572571,0,0,0,8,0,0% +8/29/2018 9:00,131.4075781,16.55466974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293494899,0.288933494,0.675383617,-0.675383617,0.414656289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774305621,140.7421202,0.774305621,39.25787983,0,0.985426014,0,0,0,8,1,0% +8/29/2018 10:00,126.2979609,34.44254968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204315257,0.601135895,1.107573369,-1.107573369,0.340747488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780534533,141.3095428,0.780534533,38.69045718,0,0.985941335,0,0,0,8,2,0% +8/29/2018 11:00,118.3875328,49.29275316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06625224,0.86032084,1.730884944,-1.730884944,0.234154931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728215718,136.7370192,0.728215718,43.2629808,0,0.981339027,0,0,0,8,3,0% +8/29/2018 12:00,108.6452585,61.47790418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896217478,1.072991845,2.930970893,-2.930970893,0.028928147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620918612,128.3832475,0.620918612,51.61675254,0,0.969474148,0,0,0,8,4,0% +8/29/2018 13:00,97.78366277,71.83276935,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70664687,1.253718336,7.311948762,-7.311948762,0,#DIV/0!,0,0,0.418693602,1,0.135919222,0,0.947057771,0.985819735,0.724496596,1,0,0,0.059759568,0.312029739,0.844551409,0.569048004,0.961238037,0.922476074,0,0,0,0,0,0,-0.465961039,117.7724366,0.465961039,62.22756343,0,0.942694891,0,0,0,8,5,0% +8/29/2018 14:00,86.08524288,81.18139873,15.71803341,77.12811815,10.45232306,10.25563613,0,10.25563613,10.13714695,0.118489175,24.99630532,20.87011003,4.126195281,0.315176105,3.811019176,1.502470926,1.416882699,-14.33568025,14.33568025,0,0.664989238,0.078794026,2.534286738,1,0.495382598,0,0.069643207,0.961238037,1,0.546058953,0.821562357,9.744211235,0.215921718,0.115824807,0.109969433,0.724496596,0.448993192,0.988861056,0.950099092,0.057086004,2.456486909,9.801297239,2.672408626,0,10.5314207,-0.270590163,105.699388,0.270590163,74.30061202,0,0.865218707,9.801297239,11.78439083,17.51394535,8,6,79% +8/29/2018 15:00,74.43191737,90.2824784,196.2318121,512.1491759,58.77955869,58.48641641,0,58.48641641,57.00713812,1.479278288,78.46447668,29.11338139,49.35109529,1.772420568,47.57867473,1.299082027,1.575726505,-3.366760338,3.366760338,0.894096384,0.299541436,1.369543805,44.04923654,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.79742953,1.284112668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.992229824,42.34180165,55.78965936,43.62591432,0,29.11338139,-0.056845511,93.25876452,0.056845511,86.74123548,0,0,55.78965936,43.62591432,84.34194776,8,7,51% +8/29/2018 16:00,62.68012325,99.94900958,408.9166134,708.0091746,83.97027937,203.4554388,118.934587,84.52085179,81.43826563,3.082586159,101.6785809,0,101.6785809,2.53201374,99.1465672,1.093974526,1.744439301,-1.67732696,1.67732696,0.816993493,0.205348173,2.634296582,84.7280334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28155858,1.834435336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.908538906,81.44380849,80.19009749,83.27824383,118.934587,0,0.167984528,80.32934412,-0.167984528,99.67065588,0.752353541,0,169.6709551,83.27824383,224.1749001,8,8,32% +8/29/2018 17:00,51.29862005,111.2761295,600.6056484,800.8557771,99.86140197,411.2725378,309.8947065,101.3778313,96.85021225,4.527619074,148.6349827,0,148.6349827,3.011189719,145.623793,0.895329822,1.942134839,-0.93802776,0.93802776,0.690565884,0.166267837,3.359560476,108.0550133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09610789,2.181596701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433990128,103.8665889,95.53009802,106.0481856,309.8947065,0,0.38695445,67.2348714,-0.38695445,112.7651286,0.920785825,0,380.8767509,106.0481856,450.2831674,8,9,18% +8/29/2018 18:00,40.90900709,126.0057016,752.5498917,849.491445,110.5462799,609.7928551,496.9069145,112.8859406,107.2129016,5.673038962,185.7978122,0,185.7978122,3.33337821,182.464434,0.713996867,2.19921437,-0.484470489,0.484470489,0.613003023,0.146895616,3.800091854,122.2240167,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0571191,2.415021166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753153612,117.4863739,105.8102727,119.9013951,496.9069145,0,0.584946343,54.20080049,-0.584946343,125.7991995,0.964522074,0,585.0879607,119.9013951,663.5610257,8,10,13% +8/29/2018 19:00,32.70517781,146.7633475,852.7677556,874.3282518,117.0537937,774.3012673,654.3485538,119.9527134,113.5241899,6.428523552,210.2930191,0,210.2930191,3.529603761,206.7634153,0.570813035,2.561503634,-0.14702768,0.14702768,0.555296904,0.137263391,3.962145654,127.436224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1237694,2.55718591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870561039,122.4965458,111.9943305,125.0537317,654.3485538,0,0.748401476,41.54790214,-0.748401476,138.4520979,0.983190939,0,755.3438994,125.0537317,837.1890657,8,11,11% +8/29/2018 20:00,28.7748359,174.9555394,893.8253744,883.2637803,119.6286132,887.7944843,765.0350819,122.7594024,116.0213692,6.738033226,220.3255545,0,220.3255545,3.607244072,216.7183104,0.502215628,3.053550207,0.141727303,-0.141727303,0.505916893,0.133838909,3.854454426,123.972504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5241531,2.613436051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.792539111,119.1670863,114.3166922,121.7805224,765.0350819,0,0.866145651,29.98621784,-0.866145651,150.0137822,0.992272988,0,873.4403392,121.7805224,953.1432555,8,12,9% +8/29/2018 21:00,30.85051501,204.714677,872.7277427,878.7526937,118.3114206,938.6794202,817.3565351,121.3228851,114.7438948,6.578990366,215.1704712,0,215.1704712,3.567525854,211.6029453,0.538443063,3.572945141,0.420257111,-0.420257111,0.458285491,0.135565096,3.498200959,112.5141678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2961961,2.584660337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534434686,108.1528978,112.8306308,110.7375581,817.3565351,0,0.930132608,21.54450437,-0.930132608,158.4554956,0.996244224,0,927.117358,110.7375581,999.592875,8,13,8% +8/29/2018 22:00,37.9407028,227.9460131,790.9835511,859.5734902,113.083068,920.1873203,804.5513559,115.6359644,109.6731963,5.962768121,195.1929914,0,195.1929914,3.409871732,191.7831197,0.662190184,3.978408446,0.72257586,-0.72257586,0.40658594,0.142965132,2.930244139,94.24672415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4220479,2.470440462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.122951904,90.5935361,107.5449998,93.06397657,804.5513559,0,0.935989028,20.61147873,-0.935989028,159.3885213,0.99658057,0,909.345249,93.06397657,970.2537604,8,14,7% +8/29/2018 23:00,47.80172197,244.3022569,654.5695336,819.973255,103.7948718,829.8942891,724.294794,105.5994951,100.6650734,4.934421636,161.8377601,0,161.8377601,3.129798347,158.7079618,0.834297437,4.263878753,1.097463993,-1.097463993,0.342476294,0.158569665,2.204401585,70.90113256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.76309758,2.267528248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597081444,68.15286547,98.36017902,70.42039372,724.294794,0,0.883315144,27.9551098,-0.883315144,152.0448902,0.993395061,0,817.87105,70.42039372,863.9597893,8,15,6% +8/29/2018 0:00,58.95861246,256.4867632,473.9167171,744.9398236,89.78319738,668.5164049,577.8679178,90.64848711,87.07590272,3.572584397,117.6138895,0,117.6138895,2.707294666,114.9065949,1.02902191,4.476538505,1.650922288,-1.650922288,0.247829351,0.189449315,1.394478169,44.85121139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.70066978,1.961425769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.010294686,43.11269038,84.71096447,45.07411615,577.8679178,0,0.775724293,39.12925433,-0.775724293,140.8707457,0.98554411,0,654.2252869,45.07411615,683.7253945,8,16,5% +8/29/2018 1:00,70.65417235,266.5359264,264.9414897,593.2192809,68.42622507,436.543413,368.1832502,68.36016278,66.36292192,1.997240861,66.30143472,0,66.30143472,2.063303152,64.23813156,1.233147938,4.65192949,2.730447205,-2.730447205,0.063219717,0.258269194,0.60948043,19.60298572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79056479,1.49485611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.441566497,18.84313551,64.23213128,20.33799162,368.1832502,0,0.620652872,51.63617369,-0.620652872,128.3638263,0.96943967,0,421.16358,20.33799162,434.4743887,8,17,3% +8/29/2018 2:00,82.42588892,275.7071685,60.76240413,240.5545392,29.05527137,131.9165742,103.2793738,28.6372004,28.17914774,0.458052669,15.608672,0,15.608672,0.876123634,14.73254836,1.438603151,4.811997861,6.776205776,-6.776205776,0,0.478178436,0.219030909,7.044786934,0.385992931,1,0.146517677,0,0.945771345,0.984533309,0.724496596,1,27.32169755,0.634748591,0.055817245,0.312029739,0.853937824,0.57843442,0.961238037,0.922476074,0.149987282,6.771717163,27.47168483,7.406465753,63.41426553,0,0.429338703,64.57440012,-0.429338703,115.4255999,0.933541829,0,86.67155426,7.406465753,91.51893796,8,18,6% +8/29/2018 3:00,94.19654176,284.8737378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644039798,4.971984677,-11.18115291,11.18115291,0,#DIV/0!,0,0,1,0.306635783,0,0.089198891,0.961238037,1,0.502869065,0.778372469,0,0,0.115824807,0.061187776,0.724496596,0.448993192,0.994155537,0.955393573,0,0,0,0,0,0,0.211080987,77.81429166,-0.211080987,102.1857083,0.813124094,0,0,0,0,8,19,0% +8/29/2018 4:00,105.3430757,294.7948288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838583515,5.145140381,-2.586345013,2.586345013,0.972444736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014582143,90.83552489,0.014582143,89.16447511,0,0,0,0,0,8,20,0% +8/29/2018 5:00,115.5580763,306.2725004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016868908,5.345463541,-1.16106237,1.16106237,0.728707049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234085533,103.5377242,0.234085533,76.46227578,0,0.836402862,0,0,0,8,21,0% +8/29/2018 6:00,124.2147617,320.176623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167956572,5.588136259,-0.4987261,0.4987261,0.615440876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.43247246,115.6245713,0.43247246,64.37542869,0,0.934385702,0,0,0,8,22,0% +8/29/2018 7:00,130.4132884,337.1441706,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27614127,5.884275831,-0.058514314,0.058514314,0.540160227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596225035,126.6000114,0.596225035,53.3999886,0,0.966139046,0,0,0,8,23,0% +8/30/2018 8:00,133.1232859,356.7249591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32343965,6.22602506,0.307275587,-0.307275587,0.477606469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714185579,135.5764941,0.714185579,44.42350589,0,0.979990185,0,0,0,8,0,0% +8/30/2018 9:00,131.7376132,16.76197435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299255099,0.292551642,0.670845562,-0.670845562,0.415432342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778317184,141.1067555,0.778317184,38.89324448,0,0.985758838,0,0,0,8,1,0% +8/30/2018 10:00,126.5817655,34.72739965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209268581,0.606107464,1.100033383,-1.100033383,0.342036902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784251675,141.6515202,0.784251675,38.34847978,0,0.986244956,0,0,0,8,2,0% +8/30/2018 11:00,118.6252472,49.60776926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07040114,0.865818908,1.717382426,-1.717382426,0.236463998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731587659,137.0196587,0.731587659,42.98034127,0,0.98165549,0,0,0,8,3,0% +8/30/2018 12:00,108.8458828,61.79989888,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899719031,1.078611713,2.899833794,-2.899833794,0.034252905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623918349,128.6028411,0.623918349,51.39715891,0,0.969861309,0,0,0,8,4,0% +8/30/2018 13:00,97.95818806,72.15651687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709692911,1.259368796,7.148176385,-7.148176385,0,#DIV/0!,0,0,0.409073022,1,0.138993763,0,0.946687219,0.985449182,0.724496596,1,0,0,0.058610468,0.312029739,0.847274596,0.571771192,0.961238037,0.922476074,0,0,0,0,0,0,-0.468587203,117.9426278,0.468587203,62.05737217,0,0.943296275,0,0,0,8,5,0% +8/30/2018 14:00,86.23855756,81.51081568,14.40171327,71.46589505,9.71337842,9.52905042,0,9.52905042,9.420484222,0.108566198,23.27872747,19.49397116,3.784756318,0.292894198,3.49186212,1.505146772,1.42263211,-14.90457806,14.90457806,0,0.674459923,0.073223549,2.355121056,1,0.518996431,0,0.066993076,0.961238037,1,0.552146788,0.827650192,9.05532776,0.200534379,0.115824807,0.116840837,0.724496596,0.448993192,0.98807079,0.949308827,0.053050212,2.283115931,9.108377972,2.483650311,0,9.376669707,-0.272773064,105.8293472,0.272773064,74.17065283,0,0.866697443,9.108377972,10.61038597,16.05266338,8,6,76% +8/30/2018 15:00,74.58551481,90.6260738,193.5961699,509.176539,58.25712421,57.95986668,0,57.95986668,56.50045697,1.459409704,78.64190643,29.94560641,48.69630002,1.756667241,46.93963278,1.301762808,1.581723376,-3.394408948,3.394408948,0.889368193,0.300920851,1.346538389,43.30930329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.31038834,1.272699436,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.975562479,41.63054967,55.28595082,42.90324911,0,29.94560641,-0.058811835,93.37161546,0.058811835,86.62838454,0,0,55.28595082,42.90324911,83.3652693,8,7,51% +8/30/2018 16:00,62.84086496,100.3179211,406.237128,706.9077972,83.55955311,201.6212775,117.5189661,84.10231135,81.03992428,3.062387066,101.0165238,0,101.0165238,2.519628828,98.49689494,1.096779998,1.750878022,-1.682629729,1.682629729,0.81790032,0.205691571,2.619433263,84.24997797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.89865772,1.825462509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.897770482,80.98428343,79.7964282,82.80974594,117.5189661,0,0.166243698,80.43050899,-0.166243698,99.56949101,0.749236719,0,167.8459528,82.80974594,222.0432753,8,8,32% +8/30/2018 17:00,51.48108439,111.681296,597.9002694,800.332789,99.47463929,409.3974542,308.4151176,100.9823367,96.4751119,4.507224785,147.96737,0,147.96737,2.999527397,144.9678426,0.898514425,1.949206329,-0.938289803,0.938289803,0.690610696,0.166373297,3.34474307,107.5784346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.73554716,2.173147388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.423254968,103.4084833,95.15880213,105.5816307,308.4151176,0,0.385358593,67.33399604,-0.385358593,112.666004,0.92025072,0,378.9780361,105.5816307,448.0791018,8,9,18% +8/30/2018 18:00,41.13338449,126.4453734,749.7380657,849.1704482,110.1596705,607.8968127,495.4070205,112.4897922,106.83795,5.65184223,185.1043947,0,185.1043947,3.321720511,181.7826742,0.717912992,2.20688809,-0.482746095,0.482746095,0.612708134,0.146930876,3.78454854,121.7240903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6967013,2.406575203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.741892534,117.0058256,105.4385938,119.4124008,495.4070205,0,0.583401155,54.30988091,-0.583401155,125.6901191,0.964295679,0,583.1574429,119.4124008,661.310471,8,10,13% +8/30/2018 19:00,32.99406501,147.1765934,849.75875,874.0646494,116.6571464,772.3042007,652.7588572,119.5453434,113.139503,6.405840397,209.5514905,0,209.5514905,3.517643383,206.0338471,0.575855068,2.568716137,-0.144101285,0.144101285,0.554796461,0.137282666,3.945454401,126.899376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7539938,2.548520657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858468283,121.980507,111.6124621,124.5290277,652.7588572,0,0.74680844,41.68533373,-0.74680844,138.3146663,0.983048427,0,753.3060297,124.5290277,834.8077877,8,11,11% +8/30/2018 20:00,29.12655585,175.1628955,890.5377795,882.9777307,119.2154798,885.588106,763.2541628,122.3339432,115.6206932,6.713249947,219.5159815,0,219.5159815,3.594786574,215.9211949,0.508354299,3.057169254,0.145743586,-0.145743586,0.505230068,0.133869087,3.836383807,123.3912907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1390082,2.604410636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779447009,118.6084021,113.9184552,121.2128127,763.2541628,0,0.864409301,30.18467658,-0.864409301,149.8153234,0.992157031,0,871.1864396,121.2128127,950.5178012,8,12,9% +8/30/2018 21:00,31.21324245,204.6219635,869.0988699,878.3716873,117.8763078,936.1493564,815.2758199,120.8735366,114.3219022,6.55163439,214.2774887,0,214.2774887,3.554405597,210.7230831,0.544773851,3.571326984,0.425626198,-0.425626198,0.457367323,0.135630493,3.478687638,111.8865524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8905608,2.575154755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520297352,107.5496099,112.4108582,110.1247647,815.2758199,0,0.928167234,21.84910083,-0.928167234,158.1508992,0.996130397,0,924.5318846,110.1247647,996.6063406,8,13,8% +8/30/2018 22:00,38.27412879,227.7016067,786.9763558,858.9919137,112.6194761,917.2180826,802.061939,115.1561435,109.2235833,5.93256019,194.2074215,0,194.2074215,3.395892725,190.8115288,0.668009566,3.974142749,0.730016912,-0.730016912,0.405313445,0.143104015,2.909419345,93.57692721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9898628,2.460312719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107864412,89.94970181,107.0977272,92.41001453,802.061939,0,0.933724668,20.97692668,-0.933724668,159.0230733,0.996451024,0,906.3131676,92.41001453,966.7936739,8,14,7% +8/30/2018 23:00,48.10509775,244.0264812,650.1800215,818.9823204,103.2912035,826.3577488,721.2798245,105.0779242,100.1765926,4.901331639,160.7582846,0,160.7582846,3.114610888,157.6436737,0.839592343,4.259065558,1.108664917,-1.108664917,0.340560823,0.158865545,2.182675646,70.20235166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.29355119,2.256524986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581341075,67.48117069,97.87489226,69.73769568,721.2798245,0,0.880702558,28.27277097,-0.880702558,151.727229,0.993227143,0,814.269592,69.73769568,859.9115191,8,15,6% +8/30/2018 0:00,59.24315501,256.218402,469.1902325,743.0270755,89.20934131,664.2222343,574.1659296,90.05630469,86.51935053,3.53695416,116.4505948,0,116.4505948,2.689990788,113.760604,1.033988114,4.47185472,1.670504932,-1.670504932,0.244480521,0.190134694,1.372801507,44.15401543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.16569065,1.948889169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994590018,42.44251911,84.16028067,44.39140828,574.1659296,0,0.772738906,39.39951863,-0.772738906,140.6004814,0.985295092,0,649.8831529,44.39140828,678.9364418,8,16,4% +8/30/2018 1:00,70.93041857,266.281921,260.0511247,588.8149046,67.67577096,431.0705284,363.4750564,67.59547199,65.63509677,1.960375224,65.09308014,0,65.09308014,2.040674191,63.05240595,1.237969344,4.647496259,2.776774771,-2.776774771,0.055297237,0.260240255,0.59036097,18.98803815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.09095157,1.478461505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427714513,18.25202452,63.51866608,19.73048602,363.4750564,0,0.617299347,51.88081438,-0.617299347,128.1191856,0.96900202,0,415.7267301,19.73048602,428.6399386,8,17,3% +8/30/2018 2:00,82.7000302,275.4662654,56.83063054,229.1516157,27.71368996,124.8533628,97.54692951,27.30643326,26.87801996,0.428413298,14.61491434,0,14.61491434,0.835670005,13.77924434,1.443387818,4.807793309,7.047787334,-7.047787334,0,0.4876541,0.208917501,6.71950499,0.403016769,1,0.14094766,0,0.946450611,0.985212574,0.724496596,1,26.06068231,0.605440074,0.057882537,0.312029739,0.849005104,0.573501699,0.961238037,0.922476074,0.143011173,6.459043785,26.20369348,7.064483859,58.23388115,0,0.425687287,64.80582584,-0.425687287,115.1941742,0.932542886,0,80.50928509,7.064483859,85.13284848,8,18,6% +8/30/2018 3:00,94.48312506,284.6443846,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64904162,4.967981709,-10.49285625,10.49285625,0,#DIV/0!,0,0,1,0.245019653,0,0.095015963,0.961238037,1,0.490612285,0.766115689,0,0,0.115824807,0.04731673,0.724496596,0.448993192,0.995558841,0.956796878,0,0,0,0,0,0,0.207066256,78.04951746,-0.207066256,101.9504825,0.808531395,0,0,0,0,8,19,0% +8/30/2018 4:00,105.6451871,294.57905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843856354,5.14137433,-2.543364163,2.543364163,0.965094577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018826543,91.07874521,0.018826543,88.92125479,0,0,0,0,0,8,20,0% +8/30/2018 5:00,115.8815682,306.0804417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022514907,5.342111484,-1.150155647,1.150155647,0.726841889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.238473795,103.79648,0.238473795,76.20351999,0,0.840333357,0,0,0,8,21,0% +8/30/2018 6:00,124.562153,320.0333249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174019694,5.585635236,-0.495694267,0.495694267,0.614922402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436908962,115.9068265,0.436908962,64.09317354,0,0.935559683,0,0,0,8,22,0% +8/30/2018 7:00,130.7783087,337.0931134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282512076,5.883384715,-0.058796539,0.058796539,0.54020849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600610909,126.9136633,0.600610909,53.08633671,0,0.966751429,0,0,0,8,23,0% +8/31/2018 8:00,133.4854729,356.8078907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329761005,6.22747249,0.304869664,-0.304869664,0.478017907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7184255,135.9246394,0.7184255,44.07536063,0,0.980403361,0,0,0,8,0,0% +8/31/2018 9:00,132.0692494,16.97406938,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305043243,0.296253398,0.666360402,-0.666360402,0.41619935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78232592,141.4740305,0.78232592,38.52596948,0,0.986088018,0,0,0,8,1,0% +8/31/2018 10:00,126.8663373,35.01732059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214235297,0.61116754,1.092575301,-1.092575301,0.343312309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787959938,141.9952712,0.787959938,38.00472885,0,0.986544997,0,0,0,8,2,0% +8/31/2018 11:00,118.8632268,49.92717624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074554667,0.871393612,1.704045417,-1.704045417,0.238744761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734946865,137.3027265,0.734946865,42.69727355,0,0.981967871,0,0,0,8,3,0% +8/31/2018 12:00,109.0466145,62.1255143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903222461,1.084294774,2.869240484,-2.869240484,0.039484669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626903956,128.8220696,0.626903956,51.17793037,0,0.970242966,0,0,0,8,4,0% +8/31/2018 13:00,98.13290198,72.48330327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712742244,1.265072295,6.990986228,-6.990986228,0,#DIV/0!,0,0,0.399534771,1,0.142077558,0,0.94631339,0.985075353,0.724496596,1,0,0,0.057462412,0.312029739,0.850005782,0.574502378,0.961238037,0.922476074,0,0,0,0,0,0,-0.471200399,118.1122453,0.471200399,61.88775472,0,0.943888036,0,0,0,8,5,0% +8/31/2018 14:00,86.39197918,81.84287167,13.13701904,65.92792391,8.988159466,8.816165694,0,8.816165694,8.717133295,0.099032399,21.58256313,18.1263146,3.456248533,0.271026171,3.185222362,1.507824484,1.42842758,-15.52154157,15.52154157,0,0.684185616,0.067756543,2.179283324,1,0.542228007,0,0.064337671,0.961238037,1,0.55830283,0.833806234,8.379240096,0.185495887,0.115824807,0.123789382,0.724496596,0.448993192,0.987260595,0.948498632,0.049089385,2.11285104,8.42832948,2.298346927,0,8.297719154,-0.274941383,105.958521,0.274941383,74.04147898,0,0.868143055,8.42832948,9.501954183,14.64716845,8,6,74% +8/31/2018 15:00,74.73990274,90.97200755,190.9477978,506.1431761,57.73028857,57.42895252,0,57.42895252,55.98950736,1.439445156,78.79886217,30.76057668,48.03828549,1.740781202,46.29750429,1.304457385,1.587761059,-3.422598205,3.422598205,0.884547546,0.302335451,1.323502046,42.56837531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.81924414,1.261190055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.958872727,40.91834152,54.77811687,42.17953157,0,30.76057668,-0.060774457,93.48426701,0.060774457,86.51573299,0,0,54.77811687,42.17953157,82.3837767,8,7,50% +8/31/2018 16:00,63.00290502,100.6888381,403.5310949,705.7790845,83.14598025,199.7805808,116.0997708,83.68081001,80.63882217,3.041987845,100.347944,0,100.347944,2.50715808,97.84078587,1.099608131,1.757351744,-1.687961839,1.687961839,0.818812165,0.20604603,2.604383289,83.76591908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.51310311,1.816427495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.886866827,80.51898761,79.39996994,82.33541511,116.0997708,0,0.164498741,80.53188344,-0.164498741,99.46811656,0.746046306,0,166.015775,82.33541511,219.9026575,8,8,32% +8/31/2018 17:00,51.66546488,112.0878474,595.1573133,799.7916244,99.08500316,407.5035138,306.9197418,100.583772,96.09722473,4.486547223,147.2905595,0,147.2905595,2.98777843,144.3027811,0.901732472,1.956301989,-0.938520795,0.938520795,0.690650198,0.1664854,3.329701894,107.0946587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37230765,2.164635302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.412357688,102.9434595,94.78466533,105.1080948,306.9197418,0,0.383749632,67.43386218,-0.383749632,112.5661378,0.919706716,0,377.060813,105.1080948,445.8519589,8,9,18% +8/31/2018 18:00,41.36031791,126.8850316,746.8784333,848.8342349,109.7698526,605.9701479,493.8799762,112.0901717,106.4598866,5.630285113,184.3992893,0,184.3992893,3.309966065,181.0893232,0.721873727,2.214561574,-0.480974517,0.480974517,0.612405176,0.146971512,3.768747175,121.2158641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3332924,2.398059146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730444499,116.5172993,105.0637369,118.9153584,493.8799762,0,0.581833244,54.42041321,-0.581833244,125.5795868,0.964064725,0,581.1960001,118.9153584,659.0237239,8,10,13% +8/31/2018 19:00,33.28580543,147.5876204,846.6928672,873.7864538,116.2568903,770.2649187,651.1308742,119.1340446,112.7513161,6.382728477,208.7960625,0,208.7960625,3.505574184,205.2904883,0.580946899,2.575889912,-0.141117143,0.141117143,0.554286142,0.137307039,3.928478693,126.3533788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3808537,2.539776563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.84616944,121.4556738,111.2270232,123.9954504,651.1308742,0,0.745183072,41.82517414,-0.745183072,138.1748259,0.982902394,0,751.2251184,123.9954504,832.3776607,8,11,11% +8/31/2018 20:00,29.48083381,175.3689056,887.185958,882.6762082,118.7983392,883.3285777,761.4244642,121.9041134,115.2161309,6.687982501,218.6907153,0,218.6907153,3.582208245,215.108507,0.514537616,3.060764809,0.149831366,-0.149831366,0.504531017,0.133904666,3.818012881,122.8004186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7501275,2.59529768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766137336,118.0404333,113.5162648,120.635731,761.4244642,0,0.862631684,30.38663506,-0.862631684,149.6133649,0.992037835,0,868.8781419,120.635731,947.8318151,8,12,9% +8/31/2018 21:00,31.57870868,204.5322289,865.4006642,877.9726574,117.4368015,933.5563746,813.1369702,120.4194044,113.8956487,6.523755754,213.3675632,0,213.3675632,3.541152862,209.8264103,0.55115244,3.56976082,0.431089848,-0.431089848,0.456432984,0.135702232,3.458870778,111.249174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4808297,2.565553194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505940104,106.9369376,111.9867698,109.5024908,813.1369702,0,0.926152954,22.15714226,-0.926152954,157.8428577,0.996013237,0,921.8819556,109.5024908,993.5491458,8,13,8% +8/31/2018 22:00,38.61076953,227.4604044,782.8973965,858.3869839,112.1510674,914.1775423,799.506432,114.6711102,108.769299,5.901811272,193.2043063,0,193.2043063,3.381768477,189.8225379,0.673885055,3.969932975,0.73759633,-0.73759633,0.404017288,0.143251297,2.888302674,92.89774246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.5531874,2.45007975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092565455,89.29684359,106.6457529,91.74692334,799.506432,0,0.931405586,21.34500898,-0.931405586,158.654991,0.996317694,0,903.2081573,91.74692334,963.2546837,8,14,7% +8/31/2018 23:00,48.41175738,243.7523939,645.7194013,817.9566526,102.7820673,822.7423661,718.1918518,104.5505143,99.68280873,4.8677056,159.6614033,0,159.6614033,3.099258554,156.5621447,0.844944563,4.254281833,1.120100595,-1.120100595,0.338605207,0.159174507,2.160688828,69.49518004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.81890737,2.245402272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.565411701,66.80141043,97.38431907,69.0468127,718.1918518,0,0.878031677,28.5941702,-0.878031677,151.4058298,0.993054446,0,810.5879308,69.0468127,855.7776888,8,15,6% +8/31/2018 0:00,59.53079729,255.9505602,464.3972399,741.0515009,88.62843753,659.8398072,570.3830216,89.45678569,85.95596314,3.500822556,115.2709618,0,115.2709618,2.672474396,112.5984874,1.039008419,4.467179997,1.690592952,-1.690592952,0.241045268,0.190846176,1.350928483,43.4505038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.62414126,1.936198602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.978743087,41.76627697,83.60288435,43.70247557,570.3830216,0,0.769694172,39.67356628,-0.769694172,140.3264337,0.985039134,0,645.4524819,43.70247557,674.0548781,8,16,4% +8/31/2018 1:00,71.20950428,266.0276984,255.1077111,584.2600163,66.91250042,425.4882892,358.6703379,66.81795134,64.89484165,1.923109684,63.87147687,0,63.87147687,2.017658769,61.8538181,1.242840308,4.643059239,2.824831823,-2.824831823,0.047078997,0.262291172,0.57120543,18.37193012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37939019,1.461786909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.413836389,17.65979804,62.79322658,19.12158495,358.6703379,0,0.613888214,52.12881972,-0.613888214,127.8711803,0.968551947,0,410.1840805,19.12158495,422.6987754,8,17,3% +8/31/2018 2:00,82.97653552,275.2246495,52.93713414,217.47564,26.34512346,117.7215331,91.77174984,25.94978326,25.55072078,0.399062478,13.62962373,0,13.62962373,0.794402675,12.83522106,1.448213747,4.803576316,7.342870739,-7.342870739,0,0.497668109,0.198600669,6.387680196,0.420475021,1,0.135353825,0,0.94712568,0.985887643,0.724496596,1,24.77370308,0.575542034,0.059971375,0.312029739,0.844050604,0.5685472,0.961238037,0.922476074,0.135920212,6.140081171,24.90962329,6.715623205,53.18402136,0,0.421986342,65.03994276,-0.421986342,114.9600572,0.931512753,0,74.45121744,6.715623205,78.84645851,8,18,6% +8/31/2018 3:00,94.77218367,284.4139383,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654086644,4.963959662,-9.881910408,9.881910408,0,#DIV/0!,0,0,1,0.180368109,0,0.100851688,0.961238037,1,0.478589053,0.754092457,0,0,0.115824807,0.033687993,0.724496596,0.448993192,0.996893074,0.958131111,0,0,0,0,0,0,0.203003447,78.28735234,-0.203003447,101.7126477,0.803698764,0,0,0,0,8,19,0% +8/31/2018 4:00,105.949686,294.3618733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849170863,5.137583881,-2.501574243,2.501574243,0.95794808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023111157,91.32428965,0.023111157,88.67571035,0,0,0,0,0,8,20,0% +8/31/2018 5:00,116.2074651,305.886839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028202881,5.33873248,-1.139380645,1.139380645,0.724999255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242893172,104.0573608,0.242893172,75.94263916,0,0.844148186,0,0,0,8,21,0% +8/31/2018 6:00,124.9120659,319.8888219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180126826,5.583113183,-0.492666105,0.492666105,0.614404556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441366872,116.1911255,0.441366872,63.8088745,0,0.936715558,0,0,0,8,22,0% +8/31/2018 7:00,131.1459259,337.0422775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288928208,5.88249746,-0.059053506,0.059053506,0.540252434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605008543,127.2294566,0.605008543,52.7705434,0,0.967356539,0,0,0,8,23,0% +9/1/2018 8:00,133.8499586,356.8935882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33612248,6.228968194,0.302501355,-0.302501355,0.478422911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72266826,136.2752186,0.72266826,43.72478142,0,0.980811961,0,0,0,9,0,0% +9/1/2018 9:00,132.4024016,17.19092861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310857845,0.300038306,0.661926678,-0.661926678,0.416957561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78632991,141.8438465,0.78632991,38.15615349,0,0.986413458,0,0,0,9,1,0% +9/1/2018 10:00,127.1516058,35.31225656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21921417,0.616315143,1.085197279,-1.085197279,0.344574025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791657731,142.3407001,0.791657731,37.65929995,0,0.986841392,0,0,0,9,2,0% +9/1/2018 11:00,119.1014235,50.25088824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078711984,0.877043452,1.690870107,-1.690870107,0.240997871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738292132,137.5861339,0.738292132,42.41386607,0,0.982276131,0,0,0,9,3,0% +9/1/2018 12:00,109.2474293,62.45465019,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90672734,1.090039279,2.839174609,-2.839174609,0.044626236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629874647,129.0408748,0.629874647,50.95912519,0,0.970619126,0,0,0,9,4,0% +9/1/2018 13:00,98.30779968,72.81302204,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715794785,1.270826973,6.839972319,-6.839972319,0,#DIV/0!,0,0,0.390076719,1,0.145170945,0,0.945936226,0.984698189,0.724496596,1,0,0,0.056315271,0.312029739,0.852745247,0.577241843,0.961238037,0.922476074,0,0,0,0,0,0,-0.473800258,118.2812636,0.473800258,61.71873636,0,0.944470298,0,0,0,9,5,0% +9/1/2018 14:00,86.545492,82.17745441,11.925807,60.5300861,8.278505155,8.118779451,0,8.118779451,8.02887768,0.089901771,19.91374491,16.77256745,3.141177454,0.249627475,2.89154998,1.510503788,1.43426715,-16.19295262,16.19295262,0,0.694167292,0.062406869,2.00721942,1,0.565087235,0,0.061676934,0.961238037,1,0.564527512,0.840030916,7.717662619,0.170831928,0.115824807,0.130815911,0.724496596,0.448993192,0.98643004,0.947668076,0.045213564,1.946143681,7.762876183,2.11697561,0,7.294603692,-0.277094723,106.086885,0.277094723,73.91311504,0,0.86955629,7.762876183,8.46004413,13.29980587,9,6,71% +9/1/2018 15:00,74.89510136,91.32015695,188.2864878,503.047156,57.19891186,56.8935367,0,56.8935367,55.47415362,1.419383078,78.93502025,31.55802314,47.37699711,1.724758234,45.65223888,1.307166112,1.593837412,-3.451354093,3.451354093,0.87963,0.303786599,1.300434223,41.82643484,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.32386652,1.249581469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.942160168,40.20516011,54.26602669,41.45474158,0,31.55802314,-0.062733727,93.59673962,0.062733727,86.40326038,0,0,54.26602669,41.45474158,81.39732596,9,7,50% +9/1/2018 16:00,63.16626913,101.0616183,400.7980137,704.6221811,82.72948891,197.9328581,114.6765838,83.2562743,80.23488958,3.021384725,99.67271802,0,99.67271802,2.49459933,97.17811869,1.102459373,1.763857986,-1.693327529,1.693327529,0.819729752,0.206411923,2.58914446,83.27578598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.12482774,1.807328723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.875826348,80.04785303,79.00065409,81.85518175,114.6765838,0,0.16274904,80.63350347,-0.16274904,99.36649653,0.742778527,0,164.1799581,81.85518175,217.7525374,9,8,33% +9/1/2018 17:00,51.85178376,112.4956093,592.3762373,799.2317985,98.69244355,405.5899605,305.4078759,100.1820845,95.71650224,4.465582297,146.6044183,0,146.6044183,2.975941309,143.628477,0.90498435,1.963418776,-0.938722701,0.938722701,0.690684726,0.166604326,3.31443551,106.6036393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.00634271,2.156059348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401297245,102.471473,94.40763995,104.6275323,305.4078759,0,0.382126783,67.53451715,-0.382126783,112.4654828,0.919153375,0,375.1243197,104.6275323,443.6009471,9,9,18% +9/1/2018 18:00,41.58981038,127.3244639,743.9705451,848.4824824,109.3767911,604.0120132,492.3249717,111.6870415,106.0786773,5.608364224,183.6823859,0,183.6823859,3.298113808,180.3842721,0.725879126,2.222231113,-0.479157082,0.479157082,0.612094376,0.147017636,3.752687426,120.6993274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9668595,2.389472227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718809265,116.0207845,104.6856688,118.4102567,492.3249717,0,0.580241763,54.53245122,-0.580241763,125.4675488,0.963829022,0,579.2027649,118.4102567,656.6999098,9,10,13% +9/1/2018 19:00,33.58036253,147.9962262,843.5698666,873.4934274,115.8530057,768.1826275,649.4638313,118.7187961,112.3596101,6.35918598,208.0266763,0,208.0266763,3.493395574,204.5332807,0.58608789,2.583021428,-0.138076278,0.138076278,0.553766124,0.137336586,3.911219632,125.7982681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0043311,2.530953202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833665309,120.9220803,110.8379964,123.4530335,649.4638313,0,0.743524577,41.96747267,-0.743524577,138.0325273,0.982752727,0,749.1003479,123.4530335,829.8978893,9,11,11% +9/1/2018 20:00,29.83759435,175.5734103,883.7699759,882.3590217,118.37719,881.0152899,759.5453776,121.4699124,114.807681,6.662231384,217.8497716,0,217.8497716,3.569509045,214.2802626,0.520764262,3.064334089,0.153989851,-0.153989851,0.503819874,0.133945702,3.799344439,122.1999773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3575099,2.586097152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.752612113,117.4632663,113.110122,120.0493635,759.5453776,0,0.860812162,30.5921049,-0.860812162,149.4078951,0.991915319,0,866.5148174,120.0493635,945.0847248,9,12,9% +9/1/2018 21:00,31.94680354,204.445303,861.6335733,877.5554293,116.9929211,930.9001629,810.9396522,119.9605107,113.4651529,6.495357831,212.4408037,0,212.4408037,3.52776823,208.9130355,0.557576907,3.568243678,0.436647589,-0.436647589,0.455482554,0.135780365,3.438755011,110.6021818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0670208,2.555856073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491366299,106.3150241,111.5583871,108.8708802,810.9396522,0,0.92408938,22.46856065,-0.92408938,157.5314394,0.99589268,0,919.1672504,108.8708802,990.4210641,9,13,8% +9/1/2018 22:00,38.95049889,227.2223413,778.7475536,857.7584966,111.6778825,911.0657689,796.8848585,114.1809103,108.3103823,5.870528004,192.1838606,0,192.1838606,3.367500206,188.8163604,0.679814451,3.96577799,0.745314348,-0.745314348,0.402697429,0.143407041,2.866900669,92.20938042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1120593,2.439742436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.077059775,88.63516382,106.1891191,91.07490625,796.8848585,0,0.929031728,21.71562127,-0.929031728,158.2843787,0.996180525,0,900.0302957,91.07490625,959.6370004,9,14,7% +9/1/2018 23:00,48.72157787,243.4799989,641.189013,816.8958979,102.2675202,819.0486239,715.0312931,104.0173308,99.18377714,4.833553619,158.5474427,0,158.5474427,3.083743061,155.4636996,0.850351951,4.249527643,1.131773398,-1.131773398,0.33660904,0.159496682,2.13844966,68.77989194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.33921922,2.23416135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549299499,66.1138483,96.88851872,68.34800965,715.0312931,0,0.875302832,28.91916398,-0.875302832,151.080836,0.992876913,0,806.8265816,68.34800965,851.558987,9,15,6% +9/1/2018 0:00,59.82142054,255.6832594,459.5395675,739.0121411,88.04053297,655.369926,566.5199366,88.84998944,85.38578607,3.46420337,114.0754354,0,114.0754354,2.654746904,111.4206885,1.044080752,4.462514719,1.71119765,-1.71119765,0.237521657,0.191584227,1.328870079,42.74102972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07606537,1.923355095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.962761849,41.0843035,83.03882722,43.00765859,566.5199366,0,0.766590838,39.95127162,-0.766590838,140.0487284,0.984776158,0,640.9341536,43.00765859,669.081806,9,16,4% +9/1/2018 1:00,71.49131104,265.7732791,250.1138507,579.5509452,66.13629164,419.797367,353.7698647,66.02750229,64.14203843,1.885463855,62.63725203,0,62.63725203,1.99425321,60.64299882,1.247758764,4.638618784,2.874696787,-2.874696787,0.038551586,0.264424747,0.552030518,17.75519907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6557671,1.444829662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.399944231,17.06697269,62.05571133,18.51180236,353.7698647,0,0.61042065,52.38007507,-0.61042065,127.6199249,0.968089272,0,404.536522,18.51180236,416.6521265,9,17,3% +9/1/2018 2:00,83.25525791,274.9823325,49.09147571,205.5453392,24.95094328,110.5355014,85.96684887,24.56865256,24.19858028,0.37007228,12.65515965,0,12.65515965,0.752362999,11.90279665,1.45307837,4.799347087,7.664482288,-7.664482288,0,0.508254089,0.18809075,6.049645071,0.438375775,1,0.129739089,0,0.947796093,0.986558056,0.724496596,1,23.46211466,0.545084432,0.06208312,0.312029739,0.839077019,0.563573615,0.961238037,0.922476074,0.128719459,5.815148951,23.59083412,6.360233383,48.28106487,0,0.418237889,65.27661202,-0.418237889,114.723388,0.930450812,0,68.51399014,6.360233383,72.67663568,9,18,6% +9/1/2018 3:00,95.06359638,284.1823972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659172756,4.959918507,-9.336181457,9.336181457,0,#DIV/0!,0,0,1,0.112479667,0,0.106703358,0.961238037,1,0.466807788,0.742311192,0,0,0.115824807,0.020305627,0.724496596,0.448993192,0.998159972,0.959398009,0,0,0,0,0,0,0.198894443,78.52768346,-0.198894443,101.4723165,0.798610373,0,0,0,0,9,19,0% +9/1/2018 4:00,106.2564489,294.1432783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854524884,5.133768679,-2.460944489,2.460944489,0.950999983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.027433842,91.57204061,0.027433842,88.42795939,0,0,0,0,0,9,20,0% +9/1/2018 5:00,116.5356435,305.691647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033930675,5.335325735,-1.128740931,1.128740931,0.723179757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.247341358,104.320243,0.247341358,75.67975699,0,0.847850224,0,0,0,9,21,0% +9/1/2018 6:00,125.2643831,319.7430428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18627592,5.580568856,-0.489644662,0.489644662,0.613887858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445843825,116.4773391,0.445843825,63.52266091,0,0.937853106,0,0,0,9,22,0% +9/1/2018 7:00,131.5160356,336.9915893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29538784,5.881612785,-0.059287287,0.059287287,0.540292413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609415624,127.5472608,0.609415624,52.45273921,0,0.967954188,0,0,0,9,23,0% +9/2/2018 8:00,134.2166497,356.9820124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.342522448,6.230511487,0.300169108,-0.300169108,0.478821749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7269117,136.6281119,0.7269117,43.37188809,0,0.981215855,0,0,0,9,0,0% +9/2/2018 9:00,132.7369835,17.41252638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316697401,0.303905916,0.657542975,-0.657542975,0.417707218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790327247,142.2161038,0.790327247,37.7838962,0,0.986735067,0,0,0,9,1,0% +9/2/2018 10:00,127.4374991,35.61215096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22420395,0.621549288,1.07789753,-1.07789753,0.345822356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795343476,142.6877099,0.795343476,37.31229009,0,0.987134079,0,0,0,9,2,0% +9/2/2018 11:00,119.3397887,50.57881847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082872241,0.882766914,1.67785283,-1.67785283,0.243223957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741622263,137.8697914,0.741622263,42.13020856,0,0.982580233,0,0,0,9,3,0% +9/2/2018 12:00,109.4483015,62.78720558,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910233222,1.095843465,2.809620585,-2.809620585,0.049680272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632829633,129.2591977,0.632829633,50.74080233,0,0.970989794,0,0,0,9,4,0% +9/2/2018 13:00,98.48287497,73.14556623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718850425,1.276630964,6.694762326,-6.694762326,0,#DIV/0!,0,0,0.380696852,1,0.148274243,0,0.945555671,0.984317634,0.724496596,1,0,0,0.055168923,0.312029739,0.855493253,0.579989849,0.961238037,0.922476074,0,0,0,0,0,0,-0.476386403,118.449657,0.476386403,61.55034299,0,0.945043184,0,0,0,9,5,0% +9/2/2018 14:00,86.69907601,82.5144513,10.7699017,55.28881292,7.586364841,7.438796018,0,7.438796018,7.35760795,0.081188068,18.27848491,15.43844066,2.840044248,0.228756891,2.611287357,1.513184335,1.440148856,-16.9263554,16.9263554,0,0.704404279,0.057189223,1.839401988,1,0.587583107,0,0.059010871,0.961238037,1,0.570821109,0.846324513,7.072412622,0.156571136,0.115824807,0.137921074,0.724496596,0.448993192,0.98557871,0.946816747,0.041433397,1.783470596,7.113846019,1.940041732,0,6.367073724,-0.27923263,106.214411,0.27923263,73.78558897,0,0.870937833,7.113846019,7.485367121,12.01286909,9,6,69% +9/2/2018 15:00,75.0511285,91.67039913,185.6120842,499.886544,56.662857,56.35348509,0,56.35348509,54.9542628,1.399222294,79.05003879,32.33764582,46.71239297,1.708594202,45.00379877,1.3098893,1.599950291,-3.480703614,3.480703614,0.874610936,0.30527569,1.277334877,41.08348046,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.82412769,1.237870683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.92542477,39.4910041,53.74955246,40.72887478,0,32.33764582,-0.064689971,93.7090523,0.064689971,86.2909477,0,0,53.74955246,40.72887478,80.40578643,9,7,50% +9/2/2018 16:00,63.33097992,101.4361198,398.0374383,703.4362392,82.3100109,196.0776573,113.2490226,82.82863473,79.82806038,3.000574342,98.99073575,0,98.99073575,2.48195052,96.50878523,1.105334118,1.770394271,-1.698731058,1.698731058,0.82065381,0.206789621,2.573714857,82.77951689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73376805,1.798164703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864647653,79.57082031,78.5984157,81.36898501,113.2490226,0,0.160994012,80.73540305,-0.160994012,99.26459695,0.739429444,0,162.3380775,81.36898501,215.5924508,9,8,33% +9/2/2018 17:00,52.04005932,112.9044083,589.5565586,798.6528358,98.29691429,403.6560857,303.8788597,99.77722601,95.33289965,4.444326369,145.9088279,0,145.9088279,2.964014643,142.9448133,0.908270378,1.970553664,-0.938897461,0.938897461,0.690714612,0.166730253,3.298942767,106.1053394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.6376093,2.147418519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390072805,101.9924882,94.02768211,104.1399067,303.8788597,0,0.380489302,67.63600559,-0.380489302,112.3639944,0.918590261,0,373.167843,104.1399067,441.3253291,9,9,18% +9/2/2018 18:00,41.82186008,127.7634621,741.0140156,848.1148759,108.9804543,602.0216161,490.7412479,111.2803682,105.6942915,5.586076656,182.95359,0,182.95359,3.286162793,179.6674273,0.729929158,2.229893077,-0.477295094,0.477295094,0.611775958,0.147069356,3.736369247,120.1744787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5973733,2.380813757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.706986801,115.51628,104.3043601,117.8970937,490.7412479,0,0.578625917,54.6460451,-0.578625917,125.3539549,0.963588385,0,577.1769266,117.8970937,654.3382165,9,10,13% +9/2/2018 19:00,33.87769516,148.4022184,840.3895723,873.1853395,115.4454768,766.0565925,647.7570112,118.2995813,111.9643697,6.335211578,207.2432886,0,207.2432886,3.481107074,203.7621815,0.591277324,2.590107329,-0.134979695,0.134979695,0.553236577,0.137371382,3.893678596,125.2340881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6244109,2.522050225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.820956888,120.379769,110.4453678,122.9018192,647.7570112,0,0.741832211,42.11227339,-0.741832211,137.8877266,0.982599314,0,746.9309626,122.9018192,827.3677452,9,11,11% +9/2/2018 20:00,30.19675941,175.7762618,880.2899612,882.0259856,117.9520345,878.6476952,757.6163521,121.031343,114.3953455,6.635997564,216.9931818,0,216.9931818,3.556689037,213.4364927,0.527032875,3.067874515,0.158218265,-0.158218265,0.503096773,0.133992252,3.780381524,121.5900648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9611573,2.5768091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738873545,116.8769952,112.7000309,119.4538043,757.6163521,0,0.858950149,30.8010907,-0.858950149,149.1989093,0.991789404,0,864.0959013,119.4538043,942.2760271,9,12,9% +9/2/2018 21:00,32.31741632,204.3610235,857.798103,877.1198322,116.5446889,928.1804703,808.6835893,119.496881,113.0304366,6.466444436,211.4973337,0,211.4973337,3.514252375,207.9830813,0.56404532,3.566772722,0.442298967,-0.442298967,0.454516112,0.135864941,3.418345193,109.9457319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6491549,2.546063883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.476579456,105.6840195,111.1257344,108.2300834,808.6835893,0,0.921976177,22.78328299,-0.921976177,157.216717,0.995768664,0,916.3875115,108.2300834,987.2219365,9,13,8% +9/2/2018 22:00,39.29319061,226.9873534,774.5277588,857.1062501,111.1999645,907.8828886,794.1972959,113.6855927,107.8468752,5.838717407,191.1463115,0,191.1463115,3.353089213,187.7932223,0.68579555,3.961676678,0.753171232,-0.753171232,0.401353823,0.143571309,2.845220064,91.51205764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6665186,2.42930172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061352251,87.96487063,105.7278709,90.39417235,794.1972959,0,0.926603085,22.08865843,-0.926603085,157.9113416,0.996039463,0,896.7797191,90.39417235,955.940897,9,14,7% +9/2/2018 23:00,49.03443594,243.2092996,636.5902395,815.799699,101.7476212,815.2770542,711.798613,103.4784411,98.67955501,4.798886122,157.4167399,0,157.4167399,3.068066188,154.3486737,0.855812354,4.24480305,1.143685786,-1.143685786,0.334571901,0.159832204,2.115966817,68.05676642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.85454174,2.222803509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533010756,65.41875255,96.38755249,67.64155606,711.798613,0,0.872516396,29.24760913,-0.872516396,150.7523909,0.992694487,0,802.9861112,67.64155606,847.2561568,9,15,6% +9/2/2018 0:00,60.11490576,255.4165218,454.6190795,736.908013,87.44567489,650.8134292,562.5774534,88.23597581,84.80886515,3.427110653,112.864469,0,112.864469,2.636809738,110.2276592,1.049203035,4.457859269,1.732330794,-1.732330794,0.233907676,0.192349329,1.306637414,42.02595078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52150705,1.910359679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.946654359,40.39694242,82.46816141,42.3073021,562.5774534,0,0.763429687,40.23250842,-0.763429687,139.7674916,0.984506084,0,636.3290868,42.3073021,664.0183699,9,16,4% +9/2/2018 1:00,71.77572018,265.5186843,245.0721946,574.6839014,65.34701488,413.9984504,348.7744314,65.224019,63.37656128,1.847457722,61.39104454,0,61.39104454,1.970453603,59.42059094,1.25272264,4.634175267,2.926453292,-2.926453292,0.029700702,0.266643937,0.532853229,17.13839151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.91996134,1.427586928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38605035,16.47407381,61.3060117,17.90166074,348.7744314,0,0.606897862,52.63446536,-0.606897862,127.3655346,0.967613814,0,398.7849696,17.90166074,410.5012485,9,17,3% +9/2/2018 2:00,83.53604647,274.7393275,45.30381741,193.3844935,23.53295742,103.3119197,80.1470485,23.16487124,22.82335192,0.341519312,11.69404053,0,11.69404053,0.709605493,10.98443504,1.457979055,4.79510585,8.01618985,-8.01618985,0,0.51944756,0.177401373,5.705837981,0.456727094,1,0.124106415,0,0.948461401,0.987223364,0.724496596,1,22.12768989,0.514106764,0.064217094,0.312029739,0.834087101,0.558583697,0.961238037,0.922476074,0.121415907,5.484668499,22.2491058,5.998775264,43.54171998,0,0.414444028,65.51569082,-0.414444028,114.4843092,0.929356447,0,62.71488398,5.998775264,66.64096242,9,18,6% +9/2/2018 3:00,95.35724189,283.9497616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664297837,4.95585825,-8.845940241,8.845940241,0,#DIV/0!,0,0,1,0.041133976,0,0.112568311,0.961238037,1,0.455276319,0.730779723,0,0,0.115824807,0.00717283,0.724496596,0.448993192,0.999361392,0.960599429,0,0,0,0,0,0,0.194741136,78.77039814,-0.194741136,101.2296019,0.793248904,0,0,0,0,9,19,0% +9/2/2018 4:00,106.5653518,293.9232469,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859916257,5.129928406,-2.421444216,2.421444216,0.944245039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.03179246,91.82188075,0.03179246,88.17811925,0,0,0,0,0,9,20,0% +9/2/2018 5:00,116.8659796,305.494822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039696128,5.331890493,-1.118239606,1.118239606,0.721383925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251816056,104.5850031,0.251816056,75.41499694,0,0.851442367,0,0,0,9,21,0% +9/2/2018 6:00,125.6189862,319.595918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192464912,5.578001045,-0.486632785,0.486632785,0.613372797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450337471,116.7653378,0.450337471,63.23466218,0,0.938972153,0,0,0,9,22,0% +9/2/2018 7:00,131.8885316,336.9409768,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301889121,5.88072943,-0.059499846,0.059499846,0.540328763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613829856,127.8669446,0.613829856,52.13305536,0,0.968544203,0,0,0,9,23,0% +9/3/2018 8:00,134.5854515,357.0731263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348959253,6.232101724,0.297871445,-0.297871445,0.479214672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731153678,136.9831984,0.731153678,43.01680163,0,0.981614924,0,0,0,9,0,0% +9/3/2018 9:00,133.0729069,17.63883867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322560371,0.307855811,0.653207952,-0.653207952,0.418448551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794316037,142.5907012,0.794316037,37.40929875,0,0.987052763,0,0,0,9,1,0% +9/3/2018 10:00,127.7239435,35.91694728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229203348,0.626868987,1.070674375,-1.070674375,0.347057588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799015598,143.0362015,0.799015598,36.96379851,0,0.987422999,0,0,0,9,2,0% +9/3/2018 11:00,119.5782713,50.91087964,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087034548,0.888562475,1.664990145,-1.664990145,0.245423606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744936057,138.153607,0.744936057,41.84639301,0,0.982880145,0,0,0,9,3,0% +9/3/2018 12:00,109.6492035,63.12307904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.913739624,1.101705563,2.780563747,-2.780563747,0.054649284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635768116,129.4769775,0.635768116,50.52302252,0,0.971354974,0,0,0,9,4,0% +9/3/2018 13:00,98.65811913,73.48082857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721909013,1.282482396,6.555015111,-6.555015111,0,#DIV/0!,0,0,0.371393336,1,0.151387734,0,0.945171674,0.983933638,0.724496596,1,0,0,0.054023262,0.312029739,0.858250028,0.582746624,0.961238037,0.922476074,0,0,0,0,0,0,-0.478958433,118.6173977,0.478958433,61.38260232,0,0.945606807,0,0,0,9,5,0% +9/3/2018 14:00,86.85270551,82.85374956,9.671074453,50.22095756,6.913791656,6.778219973,0,6.778219973,6.705315328,0.072904644,16.68323636,14.12989607,2.553340297,0.208476328,2.344863969,1.515865675,1.446070728,-17.73072554,17.73072554,0,0.714893851,0.052119082,1.676328832,1,0.609723556,0,0.056339585,0.961238037,1,0.577183669,0.852687073,6.445404143,0.142745025,0.115824807,0.145105252,0.724496596,0.448993192,0.984706221,0.945944258,0.037760097,1.625332126,6.48316424,1.768077151,0,5.514565594,-0.281354573,106.3410665,0.281354573,73.6589335,0,0.872288298,6.48316424,6.578368188,10.78857465,9,6,66% +9/3/2018 15:00,75.20799835,92.0226112,182.9245057,496.6594351,56.12199338,55.8086704,0,55.8086704,54.42970821,1.378962192,79.1435552,33.09910578,46.04444941,1.692285168,44.35216424,1.312627195,1.606097552,-3.510674531,3.510674531,0.869485607,0.306804127,1.254204672,40.33953354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.31990587,1.226054844,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.908667015,38.77589403,53.22857288,40.00194887,0,33.09910578,-0.066643465,93.82122142,0.066643465,86.17877858,0,0,53.22857288,40.00194887,79.40904838,9,7,49% +9/3/2018 16:00,63.49705569,101.812201,395.2489992,702.220433,81.88748386,194.2145841,111.8167561,82.397828,79.41827409,2.97955391,98.30190567,0,98.30190567,2.469209771,95.8326959,1.108232687,1.776958126,-1.704176608,1.704176608,0.821585053,0.207179484,2.558092941,82.27706236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33986588,1.788934074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853329627,79.0878419,78.19319551,80.87677597,111.8167561,0,0.159233128,80.83761296,-0.159233128,99.16238704,0.73599499,0,160.4897677,80.87677597,213.4220001,9,8,33% +9/3/2018 17:00,52.23030466,113.3140728,586.6978746,798.0542775,97.89837454,401.7012487,302.332095,99.36915374,94.94637734,4.422776401,145.2036894,0,145.2036894,2.951997199,142.2516922,0.911590786,1.977703659,-0.939046949,0.939046949,0.690740176,0.166863353,3.283222882,105.5997339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26606936,2.138711922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378683802,101.5064809,93.64475316,103.6451928,302.332095,0,0.378836507,67.73836816,-0.378836507,112.2616318,0.918016944,0,371.190739,103.6451928,439.0244448,9,9,18% +9/3/2018 18:00,42.05645928,128.2018232,738.0085393,847.7311136,108.5808159,599.998238,489.1281141,110.8701238,105.3067037,5.563420106,182.2128269,0,182.2128269,3.274112221,178.9387147,0.734023686,2.237543922,-0.475389808,0.475389808,0.611450135,0.147126774,3.719792939,119.6413276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2248091,2.372083159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.694977322,115.0037949,103.9197865,117.3758781,489.1281141,0,0.576984974,54.76124005,-0.576984974,125.2387599,0.963342631,0,575.1177506,117.3758781,651.9379153,9,10,13% +9/3/2018 19:00,34.17775665,148.8054157,837.1518852,872.8619691,115.0342921,763.8861557,646.0097674,117.8763883,111.5655838,6.310804525,206.4458751,0,206.4458751,3.468708339,202.9771668,0.596514384,2.597144449,-0.131828364,0.131828364,0.552697668,0.137411495,3.875857274,124.6608931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2410827,2.513067384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.808045401,119.8287922,110.0491281,122.3418595,646.0097674,0,0.740105298,42.25961392,-0.740105298,137.7403861,0.982442046,0,744.7162854,122.3418595,824.7865857,9,11,11% +9/3/2018 20:00,30.5582476,175.9773253,876.7461136,881.6769219,117.5228788,876.2253201,755.6369072,120.5884129,113.9791304,6.609282543,216.1209943,0,216.1209943,3.543748409,212.5772459,0.533342034,3.071383736,0.162515864,-0.162515864,0.50236184,0.134044368,3.761127449,120.9707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5610755,2.567433659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724924033,116.2817223,112.2859996,118.849156,755.6369072,0,0.857045124,31.01358891,-0.857045124,148.9864111,0.991660015,0,861.620906,118.849156,939.4053017,9,12,9% +9/3/2018 21:00,32.69043541,204.2792377,853.8948213,876.6657008,116.0921308,925.3971145,806.36857,119.0285446,112.5915247,6.43701985,210.5372916,0,210.5372916,3.500606077,207.0366855,0.570555732,3.565345291,0.448043555,-0.448043555,0.453533729,0.135956008,3.397646404,109.2799877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2272562,2.536177187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461583254,105.0440808,110.6888394,107.580258,806.36857,0,0.91981307,23.10123062,-0.91981307,156.8987694,0.995641129,0,913.5425528,107.580258,983.9516801,9,13,8% +9/3/2018 22:00,39.63871829,226.7553798,770.2389951,856.430045,110.717359,904.6290875,791.4438784,113.1852091,107.3788222,5.806386896,190.0918988,0,190.0918988,3.338536878,186.7533619,0.691826145,3.957627974,0.761167282,-0.761167282,0.399986418,0.143744162,2.823267764,90.80599622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2166082,2.418758604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.045447884,87.28617754,105.2620561,89.70493614,791.4438784,0,0.924119703,22.46401419,-0.924119703,157.5359858,0.995894455,0,893.4566262,89.70493614,952.1667128,9,14,7% +9/3/2018 23:00,49.35020827,242.9403007,631.924504,814.6676951,101.2224311,811.428237,708.4943218,102.9339151,98.17020131,4.763713837,156.2696419,0,156.2696419,3.052229768,153.2174122,0.861323621,4.240108133,1.15584032,-1.15584032,0.332493354,0.160181209,2.093249104,67.32608667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36493158,2.211330077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51655185,64.71639538,95.88148343,66.92772545,708.4943218,0,0.869672783,29.57936296,-0.869672783,150.420637,0.992507112,0,799.0671366,66.92772545,842.8699943,9,15,5% +9/3/2018 0:00,60.41113405,255.150371,449.6376702,734.7381067,86.8439104,646.1711865,558.5563818,87.61480477,84.22524609,3.389558685,111.6385232,0,111.6385232,2.618664319,109.0198589,1.054373194,4.453214061,1.754004656,-1.754004656,0.230201228,0.193141981,1.284241715,41.3056281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.9605102,1.897213385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.930428751,39.70454087,81.89093895,41.60175425,558.5563818,0,0.760211532,40.51715036,-0.760211532,139.4828496,0.984228833,0,631.6382345,41.60175425,658.8657506,9,16,4% +9/3/2018 1:00,72.06261325,265.2639373,239.9854378,569.6549681,64.54453145,408.0922369,343.6848496,64.40738728,62.59827568,1.8091116,60.13350362,0,60.13350362,1.946255767,58.18724785,1.257729869,4.629729092,2.980190639,-2.980190639,0.020511075,0.268951867,0.513690816,16.52206244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.17184362,1.410055678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372167247,15.88163486,60.54401087,17.29169054,343.6848496,0,0.603321078,52.89187551,-0.603321078,127.1081245,0.967125388,0,392.9303545,17.29169054,404.2474202,9,17,3% +9/3/2018 2:00,83.81874621,274.4956502,41.58494886,181.0227188,22.09349405,96.06996348,74.32918488,21.7407786,21.42729369,0.31348491,10.74895267,0,10.74895267,0.666200362,10.0827523,1.462913096,4.790852879,8.40222895,-8.40222895,0,0.53128583,0.16655009,5.356823422,0.475536969,1,0.118458819,0,0.949121163,0.987883126,0.724496596,1,20.772698,0.482659894,0.066372581,0.312029739,0.829083663,0.553580259,0.961238037,0.922476074,0.114018912,5.14918243,20.88671691,5.631842325,38.98290962,0,0.410606941,65.75703238,-0.410606941,114.2429676,0.928229044,0,57.07178582,5.631842325,60.75771398,9,18,6% +9/3/2018 3:00,95.6529992,283.7160347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669459775,4.951778947,-8.403294513,8.403294513,0.032798314,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190545413,79.01538442,-0.190545413,100.9846156,0.787595363,0,0,0,0,9,19,0% +9/3/2018 4:00,106.876271,293.7017641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865342822,5.126062802,-2.383042848,2.383042848,0.937678018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036184879,92.07369354,0.036184879,87.92630646,0,0,0,0,0,9,20,0% +9/3/2018 5:00,117.1983491,305.2963243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045497069,5.328426052,-1.107879298,1.107879298,0.719612208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256314986,104.8515182,0.256314986,75.14848179,0,0.85492752,0,0,0,9,21,0% +9/3/2018 6:00,125.9757561,319.4473812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198691722,5.575408588,-0.483633102,0.483633102,0.612859821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45484548,117.0549926,0.45484548,62.94500742,0,0.940072558,0,0,0,9,22,0% +9/3/2018 7:00,132.2633065,336.8903708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308430178,5.879846189,-0.059693019,0.059693019,0.540361797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618248958,128.1883766,0.618248958,51.81162343,0,0.969126431,0,0,0,9,23,0% +9/4/2018 8:00,134.9562668,357.1668963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355431202,6.233738319,0.295606993,-0.295606993,0.479601917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735392068,137.3403558,0.735392068,42.65964425,0,0.982009057,0,0,0,9,0,0% +9/4/2018 9:00,133.4100808,17.86984407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328445165,0.311887616,0.648920377,-0.648920377,0.419181769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798294391,142.9675359,0.798294391,37.03246407,0,0.987366465,0,0,0,9,1,0% +9/4/2018 10:00,128.0108622,36.22658965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234211023,0.632273266,1.063526284,-1.063526284,0.348279984,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802672522,143.3860726,0.802672522,36.61392736,0,0.987708096,0,0,0,9,2,0% +9/4/2018 11:00,119.8168177,51.24698425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091197968,0.894428607,1.652278898,-1.652278898,0.247597357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7482323,138.4374854,0.7482323,41.56251457,0,0.983175833,0,0,0,9,3,0% +9/4/2018 12:00,109.8501044,63.4621689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917246005,1.107623798,2.751990448,-2.751990448,0.059535606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638689267,129.6941508,0.638689267,50.30584924,0,0.97171467,0,0,0,9,4,0% +9/4/2018 13:00,98.83351989,73.81870164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724970333,1.288379393,6.42041828,-6.42041828,0,#DIV/0!,0,0,0.362164559,1,0.15451164,0,0.94478419,0.983546153,0.724496596,1,0,0,0.052878207,0.312029739,0.861015751,0.585512347,0.961238037,0.922476074,0,0,0,0,0,0,-0.481515907,118.7844552,0.481515907,61.2155448,0,0.946161271,0,0,0,9,5,0% +9/4/2018 14:00,87.0063479,83.19523638,8.631012836,45.34360511,6.262928728,6.139142539,0,6.139142539,6.074078319,0.065064221,15.13463414,12.85309474,2.281539397,0.188850409,2.092688988,1.518547241,1.452030797,-18.61681873,18.61681873,0,0.725630798,0.047212602,1.51851958,1,0.631515342,0,0.053663298,0.961238037,1,0.583614946,0.859118351,5.838635119,0.129387784,0.115824807,0.152368477,0.724496596,0.448993192,0.983812225,0.945050262,0.03420537,1.472248825,5.872840488,1.601636609,0,4.736168216,-0.283459921,106.4668127,0.283459921,73.53318735,0,0.87360822,5.872840488,5.739192095,9.629026931,9,6,64% +9/4/2018 15:00,75.36572054,92.37667038,180.2237635,493.3639838,55.57619999,55.25897536,0,55.25897536,53.9003725,1.358602856,79.21518511,33.84201961,45.3731655,1.675827484,43.69733802,1.315379967,1.61227705,-3.541295149,3.541295149,0.864249173,0.308373318,1.231045137,39.59464329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.81108825,1.214131307,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.891888011,38.05987718,52.70297626,39.27400849,0,33.84201961,-0.068594427,93.93325973,0.068594427,86.06674027,0,0,52.70297626,39.27400849,78.40702934,9,7,49% +9/4/2018 16:00,63.66450949,102.1897209,392.4324213,700.9739711,81.46185296,192.3433172,110.3795183,81.96379889,79.00547753,2.958321356,97.60615941,0,97.60615941,2.456375429,95.14978398,1.111155307,1.783547092,-1.709668205,1.709668205,0.822524172,0.207581863,2.54227764,81.76838791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.94307012,1.779635637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841871496,78.59888467,77.78494162,80.37852031,110.3795183,0,0.15746593,80.94015978,-0.15746593,99.05984022,0.732470996,0,158.6347373,80.37852031,211.2408712,9,8,33% +9/4/2018 17:00,52.42252682,113.7244331,583.7998784,797.4356887,97.49679004,399.7248932,300.767061,98.95783218,94.5569021,4.400930081,144.4889275,0,144.4889275,2.939887945,141.5490395,0.914945695,1.984865797,-0.939172933,0.939172933,0.69076172,0.167003786,3.267275506,105.0868115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.89169094,2.129938808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367129982,101.0134403,93.25882092,103.1433792,300.767061,0,0.377167796,67.84164062,-0.377167796,112.1583594,0.917433008,0,369.1924506,103.1433792,436.6977294,9,9,18% +9/4/2018 18:00,42.29359348,128.6393499,734.9539045,847.3309106,108.1778552,597.9412498,487.4849631,110.4562867,104.9158937,5.540392978,181.4600446,0,181.4600446,3.261961468,178.1980831,0.738162459,2.245180204,-0.473442409,0.473442409,0.61111711,0.147189986,3.702959195,119.0998965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8491477,2.363279979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682781331,114.4833507,103.531929,116.8466307,487.4849631,0,0.575318281,54.87807533,-0.575318281,125.1219247,0.963091585,0,573.0245947,116.8466307,649.4983776,9,10,13% +9/4/2018 19:00,34.48049413,149.2056484,833.8567942,872.5231077,114.6194455,761.6707484,644.2215374,117.4492111,111.1632463,6.285964737,205.634433,0,205.634433,3.456199183,202.1782338,0.60179815,2.604129828,-0.1286232,0.1286232,0.552149552,0.137456991,3.857757702,124.0787487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8543407,2.504004543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794932323,119.2692128,109.649273,121.7732173,644.2215374,0,0.738343239,42.40952446,-0.738343239,137.5904755,0.982280818,0,742.4557318,121.7732173,822.1538671,9,11,11% +9/4/2018 20:00,30.92197385,176.1764801,873.1387102,881.3116617,117.0897334,873.7477761,753.6066418,120.1411344,113.559046,6.582088413,215.2332766,0,215.2332766,3.530687478,211.7025891,0.539690255,3.074859642,0.166881945,-0.166881945,0.501615196,0.134102099,3.741585818,120.3422615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1572744,2.557971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.710766188,115.6775592,111.8680406,118.2355303,753.6066418,0,0.855096641,31.22958707,-0.855096641,148.7704129,0.991527077,0,859.0894314,118.2355303,936.4722212,9,12,9% +9/4/2018 21:00,33.06574815,204.1998041,849.9243621,876.1928763,115.6352762,922.5499888,803.9944541,118.5555348,112.1484459,6.407088851,209.5608319,0,209.5608319,3.486830225,206.0740017,0.577106175,3.563958913,0.453880966,-0.453880966,0.452535473,0.136053608,3.37666395,108.6051198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.801352,2.526196629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446381537,104.3953722,110.2477336,106.9215688,803.9944541,0,0.917599853,23.42231879,-0.917599853,156.5776812,0.995510017,0,910.6322665,106.9215688,980.6102948,9,13,8% +9/4/2018 22:00,39.98695551,226.5263637,765.8822978,855.7296847,110.2301149,901.3046147,788.6248002,112.6798145,106.9062702,5.773544271,189.0208748,0,189.0208748,3.32384467,185.6970302,0.697904031,3.953630889,0.769302851,-0.769302851,0.398595154,0.14392566,2.80105084,90.09142357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7623733,2.408114148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029351799,86.59930313,104.7917251,89.00741728,788.6248002,0,0.92158168,22.84158088,-0.92158168,157.1584191,0.995745449,0,890.0612811,89.00741728,948.3148556,9,14,7% +9/4/2018 23:00,49.66877172,242.6730093,627.193267,813.499521,100.6920123,807.5027997,705.1189753,102.3838244,97.65577659,4.728047774,155.1065047,0,155.1065047,3.036235684,152.070269,0.866883602,4.235443017,1.168239674,-1.168239674,0.330372939,0.160543835,2.070305435,66.5881394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.87044698,2.199742417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49992924,64.0070524,95.37037622,66.20679481,705.1189753,0,0.866772453,29.91428338,-0.866772453,150.0857166,0.992314733,0,795.0703243,66.20679481,838.4013473,9,15,5% +9/4/2018 0:00,60.70998689,254.8848331,444.5972592,732.5013829,86.23528608,641.4440947,554.4575588,86.98653596,83.63497403,3.351561939,110.3980649,0,110.3980649,2.600312049,107.7977529,1.05958916,4.44857955,1.776232046,-1.776232046,0.22640012,0.193962703,1.261694298,40.58042566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.39311824,1.883917228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914093224,39.0074487,81.30721147,40.89136592,554.4575588,0,0.756937218,40.80507131,-0.756937218,139.1949287,0.983944323,0,626.862579,40.89136592,653.6251602,9,16,4% +9/4/2018 1:00,72.3518723,265.0090642,234.8563148,564.4600954,63.72869283,402.0794281,338.5019444,63.57748371,61.8070376,1.770446105,58.86528782,0,58.86528782,1.921655223,56.9436326,1.262778392,4.625280718,3.036004307,-3.036004307,0.010966376,0.271351839,0.494560784,15.90677487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.41127549,1.392232667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.358307605,15.29019704,59.76958309,16.68242971,338.5019444,0,0.599691541,53.15219091,-0.599691541,126.8478091,0.966623803,0,386.97362,16.68242971,397.8919366,9,17,3% +9/4/2018 2:00,84.10319752,274.2513195,37.94630877,168.4963226,20.63549787,88.83164084,68.53232406,20.29931677,20.01326147,0.286055304,9.822758286,0,9.822758286,0.622236398,9.200521889,1.467877708,4.786588503,8.827665522,-8.827665522,0,0.543807778,0.155559099,5.003315368,0.494813254,1,0.112799376,0,0.949774946,0.988536909,0.724496596,1,19.39999462,0.450808152,0.068548817,0.312029739,0.824069589,0.548566185,0.961238037,0.922476074,0.106540704,4.809377042,19.50653532,5.260185194,34.62162181,0,0.406728901,66.00048558,-0.406728901,113.9995144,0.927067993,0,51.60313277,5.260185194,55.04581878,9,18,7% +9/4/2018 3:00,95.95074791,283.4812235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674656471,4.947680718,-8.001774849,8.001774849,0.10146222,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186309154,79.26253151,-0.186309154,100.7374685,0.78162886,0,0,0,0,9,19,0% +9/4/2018 4:00,107.1890832,293.4788191,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870802423,5.122171677,-2.345709957,2.345709957,0.931293718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04060899,92.3273637,0.04060899,87.6726363,0,0,0,0,0,9,20,0% +9/4/2018 5:00,117.5326274,305.0961178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051331326,5.32493179,-1.097662156,1.097662156,0.717864974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260835892,105.1196668,0.260835892,74.8803332,0,0.85830859,0,0,0,9,21,0% +9/4/2018 6:00,126.3345727,319.2973698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204954252,5.572790395,-0.48064801,0.48064801,0.61234934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459365546,117.3461749,0.459365546,62.65382508,0,0.941154223,0,0,0,9,22,0% +9/4/2018 7:00,132.6402512,336.8397059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315009105,5.878961919,-0.059868494,0.059868494,0.540391805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622670677,128.5114249,0.622670677,51.48857515,0,0.969700731,0,0,0,9,23,0% +9/5/2018 8:00,135.3289963,357.2632933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361936559,6.235420765,0.293374495,-0.293374495,0.479983696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739624761,137.6994608,0.739624761,42.30053923,0,0.982398153,0,0,0,9,0,0% +9/5/2018 9:00,133.7484108,18.10552443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334350137,0.316001014,0.644679139,-0.644679139,0.419907064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802260431,143.346503,0.802260431,36.65349696,0,0.987676099,0,0,0,9,1,0% +9/5/2018 10:00,128.2981748,36.5410232,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239225575,0.637761167,1.056451893,-1.056451893,0.349489776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806312669,143.7372179,0.806312669,36.26278207,0,0.987989316,0,0,0,9,2,0% +9/5/2018 11:00,120.0553704,51.58704487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095361498,0.900363784,1.639716245,-1.639716245,0.249745697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.751509763,138.721328,0.751509763,41.27867197,0,0.983467265,0,0,0,9,3,0% +9/5/2018 12:00,110.0509695,63.80437345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920751763,1.113596394,2.723888071,-2.723888071,0.064341395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641592231,129.9106509,0.641592231,50.08934913,0,0.972068882,0,0,0,9,4,0% +9/5/2018 13:00,99.00906093,74.15907806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728034103,1.294320082,6.29068562,-6.29068562,0,#DIV/0!,0,0,0.353009149,1,0.157646114,0,0.94439318,0.983155143,0.724496596,1,0,0,0.0517337,0.312029739,0.863790539,0.588287135,0.961238037,0.922476074,0,0,0,0,0,0,-0.484058341,118.9507959,0.484058341,61.0492041,0,0.946706666,0,0,0,9,5,0% +9/5/2018 14:00,87.15996295,83.53879905,7.65128014,40.67380957,5.635986347,5.523719145,0,5.523719145,5.466040564,0.057678582,13.63940961,11.61432237,2.025087236,0.169945783,1.855141453,1.521228329,1.458027097,-19.59762948,19.59762948,0,0.736606979,0.042486446,1.366510141,1,0.652964034,0,0.050982362,0.961238037,1,0.590114355,0.865617759,5.254166101,0.116535893,0.115824807,0.159710378,0.724496596,0.448993192,0.982896427,0.944134464,0.030781285,1.32475592,5.284947386,1.441291813,0,4.030587587,-0.285547936,106.5916041,0.285547936,73.40839587,0,0.874898051,5.284947386,4.967645039,8.536171711,9,6,62% +9/5/2018 15:00,75.52429961,92.73245424,177.5099701,489.9984222,55.02536722,54.70429451,0,54.70429451,53.36614937,1.338145135,79.26452327,34.56595804,44.69856523,1.659217844,43.03934739,1.318147693,1.61848665,-3.572594192,3.572594192,0.858896722,0.309984657,1.207858739,38.84888903,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.29757266,1.202097679,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.875089545,37.34302982,52.1726622,38.5451275,0,34.56595804,-0.070542999,94.04517585,0.070542999,85.95482415,0,0,52.1726622,38.5451275,77.39967725,9,7,48% +9/5/2018 16:00,63.83334862,102.5685395,389.5875329,699.6961034,81.03307183,190.4636163,108.9371152,81.52650112,78.58962574,2.936875385,96.90345393,0,96.90345393,2.443446096,94.46000784,1.114102106,1.790158723,-1.715209678,1.715209678,0.82347182,0.207997087,2.526268391,81.25347544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54333756,1.770268379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830272849,78.10393121,77.37361041,79.87419959,108.9371152,0,0.155692042,81.04306538,-0.155692042,98.95693462,0.728853207,0,156.7727762,79.87419959,209.0488423,9,8,33% +9/5/2018 17:00,52.61672631,114.1353219,580.8623671,796.7966616,97.09213368,397.7265555,299.183322,98.5432335,94.16444762,4.378785881,143.764492,0,143.764492,2.927686062,140.8368059,0.918335116,1.99203716,-0.939277053,0.939277053,0.690779526,0.167151703,3.251100752,104.5665758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.51444877,2.121098586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355411428,100.51337,92.8698602,102.6344686,299.183322,0,0.37548265,67.94585331,-0.37548265,112.0541467,0.916838055,0,367.1725152,102.6344686,434.3447222,9,9,18% +9/5/2018 18:00,42.53324112,129.0758514,731.8499992,846.9140007,107.7715577,595.8501196,485.8112776,110.038842,104.5218476,5.516994429,180.6952155,0,180.6952155,3.249710098,177.4455054,0.742345099,2.252798591,-0.471453996,0.471453996,0.610777071,0.14725908,3.685869119,118.550221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4703756,2.354403904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67039963,113.9549817,103.1407752,116.3093856,485.8112776,0,0.573625276,54.99658381,-0.573625276,125.0034162,0.962835082,0,570.8969167,116.3093856,647.0190834,9,10,13% +9/5/2018 19:00,34.78584849,149.6027592,830.5043795,872.1685604,114.2009361,759.4098976,642.3918482,117.0180494,110.7573565,6.260692819,204.8089816,0,204.8089816,3.443579581,201.365402,0.607127589,2.611060717,-0.125365059,0.125365059,0.551592377,0.137507928,3.839382269,123.4877316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.464184,2.494861684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.781619384,118.7011047,109.2458034,121.1959664,642.3918482,0,0.736545523,42.56202741,-0.736545523,137.4379726,0.982115533,0,740.148816,121.1959664,819.469152,9,11,11% +9/5/2018 20:00,31.28784938,176.3736192,869.4681085,880.930046,116.6526137,871.2147634,751.5252385,119.6895248,113.135107,6.554417867,214.330116,0,214.330116,3.517506705,210.8126093,0.546075987,3.078300369,0.17131585,-0.17131585,0.500856954,0.134165489,3.72176052,119.7046118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7497681,2.548421634,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696402827,115.064626,111.446171,117.6130477,751.5252385,0,0.853104332,31.44906366,-0.853104332,148.5509363,0.991390522,0,856.5011691,117.6130477,933.4765566,9,12,9% +9/5/2018 21:00,33.44324085,204.1225925,845.8874251,875.7012062,115.1741583,919.6390644,801.5611753,118.0778892,111.7012324,6.376656715,208.5681254,0,208.5681254,3.472925819,205.0951996,0.583694665,3.562611318,0.459810853,-0.459810853,0.451521403,0.136157785,3.355403354,107.921306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.3714734,2.516122933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.430978308,103.7380643,109.8024517,106.2541872,801.5611753,0,0.915336384,23.74645676,-0.915336384,156.2535432,0.995375273,0,907.6566254,106.2541872,977.1978659,9,13,8% +9/5/2018 22:00,40.33777593,226.3002533,761.4587517,855.0049754,109.7382833,897.9097827,785.7403157,112.1694669,106.4292692,5.740197712,187.9335043,0,187.9335043,3.309014134,184.6244902,0.704027003,3.949684518,0.777578343,-0.777578343,0.397179961,0.144115861,2.778576513,89.36857195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3038618,2.397369476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013069225,85.90447065,104.316931,88.30184013,785.7403157,0,0.918989174,23.22124946,-0.918989174,156.7787505,0.995592395,0,886.5940138,88.30184013,944.3858021,9,14,7% +9/5/2018 23:00,49.99000352,242.407435,622.3980232,812.2948062,100.1564287,803.5014156,701.6731735,101.8282421,97.13634285,4.691899201,153.9276925,0,153.9276925,3.020085864,150.9076066,0.872490155,4.230807872,1.180886644,-1.180886644,0.32821018,0.160920223,2.047144816,65.84321428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.37114751,2.188041927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48314945,63.29100204,94.85429696,65.47904397,701.6731735,0,0.863815905,30.25222906,-0.863815905,149.7477709,0.992117296,0,790.9963888,65.47904397,833.8511135,9,15,5% +9/5/2018 0:00,61.01134642,254.6199368,439.4997873,730.1967704,85.61984756,636.6330738,550.2818455,86.35122829,83.03809325,3.313135042,109.1435661,0,109.1435661,2.581754307,106.5618118,1.064848876,4.443956238,1.799026354,-1.799026354,0.222502064,0.194812034,1.239006546,39.85070958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81937374,1.870472207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897656025,38.30601784,80.71702976,40.17649005,550.2818455,0,0.753607614,41.0961456,-0.753607614,138.9038544,0.983652475,0,622.003129,40.17649005,648.2978383,9,16,4% +9/5/2018 1:00,72.64338018,264.7540943,229.6875965,559.0950948,62.89933986,395.9607255,333.2265507,62.73417481,61.00269269,1.731482123,57.58706417,0,57.58706417,1.896647171,55.690417,1.267866164,4.620830653,3.093996524,-3.093996524,0.001049122,0.273847351,0.475480875,15.29309941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.63810856,1.374114419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344484276,14.70030885,58.98259284,16.07442327,333.2265507,0,0.596010507,53.4152976,-0.596010507,126.5847024,0.966108861,0,380.9157163,16.07442327,391.4361049,9,17,3% +9/5/2018 2:00,84.38923563,274.0063576,34.39999738,155.8492153,19.16263907,81.62211383,62.77797732,18.84413651,18.5848148,0.259321711,8.918501906,0,8.918501906,0.57782427,8.340677635,1.472870015,4.782313112,9.298608424,-9.298608424,0,0.557053504,0.144456068,4.646203699,0.514563579,1,0.107131231,0,0.950422326,0.989184289,0.724496596,1,18.0131235,0.418631717,0.070744986,0.312029739,0.81904784,0.543544436,0.961238037,0.922476074,0.098996964,4.466107723,18.11212046,4.884739439,30.47471664,0,0.402812277,66.24589435,-0.402812277,113.7541056,0.925872701,0,46.32782866,4.884739439,49.52479293,9,18,7% +9/5/2018 3:00,96.25036856,283.2453386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679885838,4.94356375,-7.636027769,7.636027769,0.164008654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182034222,79.51173006,-0.182034222,100.4882699,0.775326373,0,0,0,0,9,19,0% +9/5/2018 4:00,107.5036654,293.2544052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876292919,5.118254917,-2.309415325,2.309415325,0.92508697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045062706,92.58277751,0.045062706,87.41722249,0,0,0,0,0,9,20,0% +9/5/2018 5:00,117.8686902,304.8941712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057196729,5.321407157,-1.087589879,1.087589879,0.716142513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265376549,105.3893286,0.265376549,74.61067138,0,0.861588476,0,0,0,9,21,0% +9/5/2018 6:00,126.6953152,319.1458255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211250397,5.570145449,-0.477679675,0.477679675,0.611841725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463895397,117.6387575,0.463895397,62.36124254,0,0.942217081,0,0,0,9,22,0% +9/5/2018 7:00,133.0192554,336.7889206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321623976,5.878075549,-0.060027818,0.060027818,0.540419051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627092789,128.835958,0.627092789,51.164042,0,0.970266983,0,0,0,9,23,0% +9/6/2018 8:00,135.7035382,357.362293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368473549,6.237148636,0.291172812,-0.291172812,0.480360206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743849672,138.0603894,0.743849672,41.93961061,0,0.982782117,0,0,0,9,0,0% +9/6/2018 9:00,134.0877996,18.34586511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340273589,0.32019575,0.64048325,-0.64048325,0.420624603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806212296,143.7274962,0.806212296,36.27250385,0,0.987981596,0,0,0,9,1,0% +9/6/2018 10:00,128.5857981,36.86019431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244245548,0.643331754,1.04945,-1.04945,0.35068717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809934465,144.0895289,0.809934465,35.91047108,0,0.98826661,0,0,0,9,2,0% +9/6/2018 11:00,120.2938689,51.93097438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099524083,0.906366487,1.627299628,-1.627299628,0.251869064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754767204,139.0050327,0.754767204,40.99496726,0,0.983754408,0,0,0,9,3,0% +9/6/2018 12:00,110.2517609,64.1495912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924256233,1.11962158,2.696244938,-2.696244938,0.069068649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644476122,130.1264082,0.644476122,49.87359176,0,0.972417607,0,0,0,9,4,0% +9/6/2018 13:00,99.18472211,74.50185076,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731099969,1.300302595,6.165554304,-6.165554304,0,#DIV/0!,0,0,0.343925952,1,0.160791247,0,0.943998615,0.982760578,0.724496596,1,0,0,0.050589709,0.312029739,0.866574455,0.591071051,0.961238037,0.922476074,0,0,0,0,0,0,-0.486585206,119.1163831,0.486585206,60.88361694,0,0.947243074,0,0,0,9,5,0% +9/6/2018 14:00,87.31350275,83.88432535,6.73326472,36.22825238,5.035208722,4.934136795,0,4.934136795,4.883378601,0.050758194,12.20427715,10.41988904,1.784388107,0.151830121,1.632557986,1.523908104,1.464057668,-20.68900436,20.68900436,0,0.747810896,0.03795753,1.22084465,1,0.674074073,0,0.048297266,0.961238037,1,0.596680945,0.872184349,4.69408926,0.104227529,0.115824807,0.167130155,0.724496596,0.448993192,0.981958586,0.943196623,0.027500101,1.183395311,4.721589361,1.287622839,0,3.396111997,-0.287617767,106.7153888,0.287617767,73.28461118,0,0.876158166,4.721589361,4.263154099,7.511738456,9,6,59% +9/6/2018 15:00,75.68373524,93.08984109,174.7833355,486.5610603,54.4693966,54.14453393,0,54.14453393,52.82694332,1.317590612,79.291146,35.27044946,44.02069654,1.642453278,42.37824326,1.32093037,1.624724227,-3.604600844,3.604600844,0.853423262,0.31163953,1.184648838,38.10237885,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.77926729,1.189951809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.858274051,36.62545584,51.63754134,37.81540765,0,35.27044946,-0.072489256,94.15697449,0.072489256,85.84302551,0,0,51.63754134,37.81540765,76.38696934,9,7,48% +9/6/2018 16:00,64.0035749,102.9485179,386.7142613,698.3861204,80.60110224,188.5753183,107.4894212,81.08589708,78.17068163,2.91521545,96.19377048,0,96.19377048,2.430420619,93.76334986,1.117073115,1.796790597,-1.720804657,1.720804657,0.824428617,0.208425472,2.51006512,80.73232254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.14063254,1.760831465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818533635,77.60297923,76.95916618,79.3638107,107.4894212,0,0.153911165,81.14634716,-0.153911165,98.85365284,0.725137277,0,154.9037524,79.3638107,206.8457792,9,8,34% +9/6/2018 17:00,52.81289749,114.5465751,577.8852376,796.1368145,96.6843852,395.7058609,297.5805237,98.12533727,93.76899425,4.356343021,143.0303573,0,143.0303573,2.915390941,140.1149664,0.921758949,1.999214882,-0.939360829,0.939360829,0.690793852,0.167307242,3.234699178,104.0390448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13432395,2.112190812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.343528543,100.0062871,92.4778525,102.1184779,297.5805237,0,0.373780635,68.05103136,-0.373780635,111.9489686,0.9162317,0,365.1305616,102.1184779,431.9650631,9,9,18% +9/6/2018 18:00,42.77537408,129.5111434,728.6968072,846.4801357,107.3619149,593.7244094,484.1066279,109.6177814,104.1245571,5.493224335,179.9183353,0,179.9183353,3.237357859,176.6809775,0.746571117,2.26039587,-0.469425589,0.469425589,0.610430193,0.147334137,3.668524211,117.9923491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0884848,2.345454748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657833303,113.418734,102.7463181,115.7641888,484.1066279,0,0.57190548,55.11679219,-0.57190548,124.8832078,0.962572966,0,568.7342707,115.7641888,644.499617,9,10,13% +9/6/2018 19:00,35.09375496,149.9966027,827.0948089,871.7981452,113.7787684,757.1032223,640.5203136,116.5829087,110.3479187,6.234990036,203.9695619,0,203.9695619,3.430849666,200.5387122,0.612501571,2.617934584,-0.122054739,0.122054739,0.551026279,0.13756436,3.820733696,122.8879293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0706168,2.485638904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.768108556,118.124552,108.8387253,120.6101909,640.5203136,0,0.734711719,42.71713768,-0.734711719,137.2828623,0.981946097,0,737.7951473,120.6101909,816.732105,9,11,11% +9/6/2018 20:00,31.65578233,176.5686492,865.7347417,880.5319251,116.211539,868.6260678,749.3924612,119.2336065,112.7073324,6.526274171,213.4116179,0,213.4116179,3.504206677,209.9074113,0.552497629,3.081704284,0.175816973,-0.175816973,0.500087216,0.13423458,3.701655712,119.0579721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3385749,2.538785809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.681836963,114.4430513,111.0204119,116.9818372,749.3924612,0,0.851067906,31.67198867,-0.851067906,148.3280113,0.991250281,0,853.8558999,116.9818372,930.4181727,9,12,9% +9/6/2018 21:00,33.82279931,204.0474833,841.7847714,875.1905443,114.7088136,916.6643871,799.0687383,117.5956489,111.2499197,6.345729178,207.5593576,0,207.5593576,3.458893962,204.1004637,0.59031921,3.561300413,0.465832921,-0.465832921,0.450491568,0.136268578,3.333870339,107.2287302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9376544,2.505956901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.415377712,103.0723341,109.3530321,105.578291,799.0687383,0,0.913022591,24.07354867,-0.913022591,155.9264513,0.995236842,0,904.6156801,105.578291,973.71456,9,13,8% +9/6/2018 22:00,40.69105371,226.0770009,756.9694877,854.2557252,109.2419181,894.4449639,782.7907369,111.6542269,105.9478712,5.706355744,186.8300631,0,186.8300631,3.29404689,183.5360162,0.710192863,3.945788029,0.785994226,-0.785994226,0.395740761,0.144314824,2.75585213,88.63767769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8411237,2.386525758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996605487,85.20190729,103.8377292,87.58843305,782.7907369,0,0.916342395,23.60291005,-0.916342395,156.39709,0.995435243,0,883.0552167,87.58843305,940.3800944,9,14,6% +9/6/2018 23:00,50.31378166,242.1435896,617.5402965,811.053174,99.61574545,799.4248001,698.1575573,101.2672428,96.61196318,4.655279605,152.7335768,0,152.7335768,3.003782268,149.7297945,0.878141149,4.226202902,1.193784168,-1.193784168,0.326004574,0.161310519,2.02377632,65.09160314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.86709382,2.176230028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466219055,62.56852482,94.33331288,64.74475485,698.1575573,0,0.860803681,30.59305979,-0.860803681,149.4069402,0.991914747,0,786.8460894,64.74475485,829.2202365,9,15,5% +9/6/2018 0:00,61.3150957,254.3557129,434.3472112,727.8231635,84.99763917,631.7390633,546.0301239,85.70893948,82.43464674,3.274292747,107.8755025,0,107.8755025,2.562992429,105.31251,1.070150301,4.439344661,1.822401598,-1.822401598,0.218504662,0.195690537,1.216189888,39.11684742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.239318,1.85687929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881125434,37.60060162,80.12044343,39.45748091,546.0301239,0,0.750223614,41.39024829,-0.750223614,138.6097517,0.983353204,0,617.0609153,39.45748091,642.8850474,9,16,4% +9/6/2018 1:00,72.93702075,264.499059,224.4820871,553.5556341,62.05630195,389.7368274,327.8595111,61.87731628,60.18507548,1.692240794,56.29950745,0,56.29950745,1.871226467,54.42828098,1.272991159,4.616379448,3.154276912,-3.154276912,0,0.276442111,0.467806617,15.04626887,0.009174481,1,0.307006387,0,0.923268539,0.962030502,0.724496596,1,57.87847529,1.355697206,0.001562193,0.312029739,0.995579689,0.720076285,0.961238037,0.922476074,0.338038879,14.46304595,58.21651417,15.81874316,324.8515703,0,0.592279242,53.68108253,-0.592279242,126.3189175,0.965580361,0,371.8868106,15.81874316,382.2398616,9,17,3% +9/6/2018 2:00,84.6766897,273.7607897,30.95877457,143.1338453,17.67943447,74.47001694,57.09030233,17.37971461,17.14633429,0.23338032,8.039413502,0,8.039413502,0.533100179,7.506313323,1.477887035,4.778027143,9.822490355,-9.822490355,0,0.571063768,0.133275045,4.286583572,0.534795243,1,0.101457613,0,0.951062886,0.989824849,0.724496596,1,16.61642915,0.386229265,0.07296021,0.312029739,0.81402147,0.538518066,0.961238037,0.922476074,0.091407486,4.120427177,16.70783664,4.506656443,26.55868021,0,0.398859558,66.49309669,-0.398859558,113.5069033,0.924642593,0,41.26512357,4.506656443,44.21464008,9,18,7% +9/6/2018 3:00,96.55174289,283.008394,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685145812,4.939428285,-7.301585077,7.301585077,0.221201723,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177722462,79.76287234,-0.177722462,100.2371277,0.768662461,0,0,0,0,9,19,0% +9/6/2018 4:00,107.819896,293.0285194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881812184,5.114312465,-2.274129013,2.274129013,0.919052655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04954397,92.83982299,0.04954397,87.16017701,0,0,0,0,0,9,20,0% +9/6/2018 5:00,118.2064137,304.6904568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063091116,5.31785167,-1.07766374,1.07766374,0.714445043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269934767,105.6603851,0.269934767,74.33961488,0,0.864770062,0,0,0,9,21,0% +9/6/2018 6:00,127.057863,318.9926937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21757805,5.567472794,-0.474730051,0.474730051,0.61133731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468432799,117.9326141,0.468432799,62.0673859,0,0.943261104,0,0,0,9,22,0% +9/6/2018 7:00,133.400208,336.7379572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328272852,5.87718607,-0.060172411,0.060172411,0.540443778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631513106,129.1618452,0.631513106,50.83815484,0,0.970825079,0,0,0,9,23,0% +9/7/2018 8:00,136.0797896,357.4638752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375040374,6.238921579,0.2890009,-0.2890009,0.480731625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748064748,138.4230174,0.748064748,41.57698264,0,0.983160866,0,0,0,9,0,0% +9/7/2018 9:00,134.4281479,18.59085475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346213788,0.324471626,0.636331814,-0.636331814,0.421334541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810148144,144.110408,0.810148144,35.88959199,0,0.988282893,0,0,0,9,1,0% +9/7/2018 10:00,128.8736463,37.18405057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249269446,0.648984112,1.042519517,-1.042519517,0.351872352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813536345,144.442895,0.813536345,35.55710499,0,0.988539931,0,0,0,9,2,0% +9/7/2018 11:00,120.5322504,52.27868617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103684624,0.912435202,1.615026703,-1.615026703,0.253967857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758003381,139.2884951,0.758003381,40.71150486,0,0.984037234,0,0,0,9,3,0% +9/7/2018 12:00,110.4524378,64.49772119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927758706,1.125697595,2.669050122,-2.669050122,0.073719237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647340042,130.3413514,0.647340042,49.65864865,0,0.972760842,0,0,0,9,4,0% +9/7/2018 13:00,99.36048037,74.84691342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734167529,1.306325074,6.044781956,-6.044781956,0,#DIV/0!,0,0,0.334913979,1,0.163947081,0,0.94360047,0.982362433,0.724496596,1,0,0,0.049446217,0.312029739,0.869367519,0.593864115,0.961238037,0.922476074,0,0,0,0,0,0,-0.489095944,119.2811779,0.489095944,60.71882208,0,0.947770569,0,0,0,9,5,0% +9/7/2018 14:00,87.46691232,84.23170401,5.878121575,32.02283001,4.462830355,4.372571317,0,4.372571317,4.328259554,0.044311763,10.8357934,9.276003964,1.559789432,0.134570801,1.42521863,1.526585607,1.47012057,-21.91047428,21.91047428,0,0.759227297,0.0336427,1.082064888,1,0.69484894,0,0.045608621,0.961238037,1,0.603313416,0.87881682,4.160487716,0.092501758,0.115824807,0.174626586,0.724496596,0.448993192,0.980998523,0.942236559,0.024374022,1.048705118,4.184861738,1.141206876,0,2.83058244,-0.289668463,106.8381085,0.289668463,73.16189154,0,0.877388873,4.184861738,3.624728412,6.55717399,9,6,57% +9/7/2018 15:00,75.84402325,93.44871053,172.0441498,483.050266,53.90819833,53.57960872,0,53.57960872,52.28266725,1.296941473,79.29461504,35.95498798,43.33962707,1.62553108,41.71409599,1.323727924,1.630987681,-3.637344989,3.637344989,0.847823683,0.313339328,1.16141953,37.35524443,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.25608843,1.177691734,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841444496,35.90728182,51.09753293,37.08497356,0,35.95498798,-0.074433223,94.26865733,0.074433223,85.73134267,0,0,51.09753293,37.08497356,75.36890642,9,7,48% +9/7/2018 16:00,64.17518573,103.3295194,383.8126155,697.0433431,80.16591251,186.6783225,106.0363665,80.64195608,77.74861446,2.893341619,95.4771103,0,95.4771103,2.417298043,93.05981226,1.120068289,1.803440328,-1.726456635,1.726456635,0.825395163,0.20886732,2.493668159,80.20493991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.73492553,1.751324203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806654092,77.09603899,76.54157963,78.84736319,106.0363665,0,0.15212306,81.2500189,-0.15212306,98.7499811,0.721318734,0,153.0275973,78.84736319,204.6316195,9,8,34% +9/7/2018 17:00,53.01102966,114.9580319,574.8684697,795.4557861,96.27353,393.6625088,295.9583796,97.70412921,93.37052786,4.33360135,142.2865182,0,142.2865182,2.903002141,139.3835161,0.925217008,2.006396158,-0.939425682,0.939425682,0.690804943,0.167470535,3.218071711,103.5042483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.7513029,2.103215169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331482,99.49222041,92.0827849,101.5954356,295.9583796,0,0.372061383,68.15719562,-0.372061383,111.8428044,0.915613573,0,363.0662941,101.5954356,429.5584748,9,9,18% +9/7/2018 18:00,43.01995889,129.9450491,725.4943932,846.0290819,106.9489236,591.5637597,482.3706575,109.1931021,103.7240189,5.469083186,179.1294197,0,179.1294197,3.224904645,175.9045151,0.750839927,2.267968954,-0.467358139,0.467358139,0.610076638,0.147415231,3.6509263,117.4263398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.70347232,2.336432437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.645083676,112.8746643,102.348556,115.2110968,482.3706575,0,0.570158483,55.23872204,-0.570158483,124.761278,0.962305084,0,566.5362923,115.2110968,641.9396509,9,10,13% +9/7/2018 19:00,35.40414449,150.3870458,823.6283253,871.4116903,113.352951,754.7504208,638.6066213,116.1437995,109.9349413,6.208858218,203.1162328,0,203.1162328,3.418009701,199.6982231,0.61791889,2.624749102,-0.118692983,0.118692983,0.550451385,0.137626339,3.801814988,122.2794387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6736472,2.476336393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.754402017,117.5396476,108.4280492,120.015984,638.6066213,0,0.732841467,42.87486382,-0.732841467,137.1251362,0.98177242,0,735.394417,120.015984,813.9424782,9,11,11% +9/7/2018 20:00,32.02567893,176.7614881,861.9391086,880.1171564,115.7665328,865.9815498,747.208144,118.7734058,112.2757447,6.497661086,212.4779042,0,212.4779042,3.490788096,208.9871161,0.558953543,3.085069958,0.180384753,-0.180384753,0.49930608,0.13430941,3.68127578,118.4024834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9237164,2.529064092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.667071771,113.8129707,110.5907882,116.3420348,747.208144,0,0.848987136,31.89832496,-0.848987136,148.101675,0.991106293,0,851.1534816,116.3420348,927.2970165,9,12,9% +9/7/2018 21:00,34.20430952,203.9743649,837.6172156,874.6607485,114.2392818,913.6260688,796.5172105,117.1088584,110.794546,6.314312383,206.5347274,0,206.5347274,3.444735845,203.0899915,0.59697782,3.560024257,0.471946917,-0.471946917,0.449446013,0.136386024,3.312070791,106.5275818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4999319,2.495699394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.399584014,102.3983636,108.8995159,104.894063,796.5172105,0,0.91065846,24.40349497,-0.91065846,155.596505,0.995094674,0,901.5095494,104.894063,970.1606158,9,13,8% +9/7/2018 22:00,41.04666398,225.8565611,752.4156762,853.4817429,108.7410749,890.910585,779.7764275,111.1341574,105.4621302,5.672027189,185.7108365,0,185.7108365,3.278944619,182.4318919,0.716399433,3.941940628,0.79455103,-0.79455103,0.394277461,0.144522607,2.732885144,87.89898046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.374211,2.375584214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979965984,84.49184342,103.354177,86.86742764,779.7764275,0,0.913641603,23.98645273,-0.913641603,156.0135473,0.995273946,0,879.4453388,86.86742764,936.2983328,9,14,6% +9/7/2018 23:00,50.63998508,241.8814855,612.6216364,809.7742401,99.07002841,795.2737075,694.5728053,100.7009022,96.08270152,4.618200668,151.5245353,0,151.5245353,2.987326886,148.5372084,0.883834473,4.221628321,1.206935327,-1.206935327,0.323755593,0.16171487,2.00020907,64.33359937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.35834739,2.16430816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449144662,61.83990276,93.80749205,64.00421092,694.5728053,0,0.857736355,30.93663679,-0.857736355,149.0633632,0.99170703,0,782.6202257,64.00421092,824.5097016,9,15,5% +9/7/2018 0:00,61.62111888,254.0921927,429.1415011,725.3794201,84.36870363,626.7630203,541.7032945,85.05972584,81.82467593,3.235049905,106.5943531,0,106.5943531,2.544027702,104.0503254,1.075491413,4.434745367,1.846372465,-1.846372465,0.214405402,0.196598799,1.19325578,38.37920769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65299086,1.84313941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864509751,36.89155425,79.51750061,38.73469366,541.7032945,0,0.746786136,41.68725525,-0.746786136,138.3127448,0.983046427,0,612.0369888,38.73469366,637.3880711,9,16,4% +9/7/2018 1:00,73.23267906,264.2439909,219.2426247,547.8372353,61.19939666,383.4084306,322.4016781,61.00675256,59.35400905,1.652743513,55.00330027,0,55.00330027,1.845387611,53.15791266,1.27815137,4.61192767,3.216963175,-3.216963175,0,0.279140047,0.461346903,14.83850226,0.019588056,1,0.301382944,0,0.924149556,0.962911519,0.724496596,1,57.1075932,1.336977042,0.003319195,0.312029739,0.990630889,0.715127485,0.961238037,0.922476074,0.332411544,14.26333278,57.44000474,15.60030983,316.0864561,0,0.588499024,53.94943345,-0.588499024,126.0505666,0.965038092,0,362.4754751,15.60030983,372.6855659,9,17,3% +9/7/2018 2:00,84.96538164,273.5146421,27.63603813,130.4121191,16.19137936,67.40775472,51.49627306,15.91148166,15.70314953,0.208332129,7.18890723,0,7.18890723,0.488229828,6.700677403,1.48292566,4.773731058,10.40844386,-10.40844386,0,0.58587918,0.122057457,3.925787384,0.555515066,1,0.095781856,0,0.951696213,0.990458176,0.724496596,1,15.21517922,0.353720848,0.075193542,0.312029739,0.808993639,0.533490235,0.961238037,0.922476074,0.083796903,3.773616158,15.29897612,4.127337006,22.88931753,0,0.394873371,66.74192324,-0.394873371,113.2580768,0.923377129,0,36.43444842,4.127337006,39.13570794,9,18,7% +9/7/2018 3:00,96.85475401,282.7704053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690434354,4.935274599,-6.994688358,6.994688358,0.273684153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173375703,80.0158521,-0.173375703,99.9841479,0.761608956,0,0,0,0,9,19,0% +9/7/2018 4:00,108.1376543,292.8011607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887358114,5.110344307,-2.23982147,2.23982147,0.91318572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.05405075,93.09838978,0.05405075,86.90161022,0,0,0,0,0,9,20,0% +9/7/2018 5:00,118.545675,304.4849492,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069012343,5.314264887,-1.067884648,1.067884648,0.71277272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274508387,105.9327194,0.274508387,74.0672806,0,0.867856203,0,0,0,9,21,0% +9/7/2018 6:00,127.4220959,318.8379214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223935113,5.564771508,-0.471800917,0.471800917,0.610836398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472975554,118.2276202,0.472975554,61.7723798,0,0.944286291,0,0,0,9,22,0% +9/7/2018 7:00,133.7829981,336.6867597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334953799,5.876292505,-0.060303596,0.060303596,0.540466212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63592948,129.4889564,0.63592948,50.5110436,0,0.97137493,0,0,0,9,23,0% +9/8/2018 8:00,136.4576471,357.5680228,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381635231,6.240739298,0.286857776,-0.286857776,0.481098121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.752267977,138.7872208,0.752267977,41.2127792,0,0.983534323,0,0,0,9,0,0% +9/8/2018 9:00,134.7693556,18.84048449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.352168986,0.328828487,0.632223986,-0.632223986,0.42203702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814066172,144.4951314,0.814066172,35.50486855,0,0.988579932,0,0,0,9,1,0% +9/8/2018 10:00,129.1616328,37.51254037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254295759,0.65471734,1.03565942,-1.03565942,0.353045498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817116775,144.7972047,0.817116775,35.20279529,0,0.988809236,0,0,0,9,2,0% +9/8/2018 11:00,120.770451,52.63009403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10784201,0.918568426,1.602895244,-1.602895244,0.256042459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76121707,139.5716099,0.76121707,40.42839008,0,0.984315714,0,0,0,9,3,0% +9/8/2018 12:00,110.6529586,64.84866319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931258455,1.131822688,2.642293198,-2.642293198,0.07829494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6501831,130.5554082,0.6501831,49.44459177,0,0.973098586,0,0,0,9,4,0% +9/8/2018 13:00,99.5363112,75.1941607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737236356,1.312385682,5.928143801,-5.928143801,0,#DIV/0!,0,0,0.325972325,1,0.167113631,0,0.943198725,0.981960688,0.724496596,1,0,0,0.048303219,0.312029739,0.872169728,0.596666323,0.961238037,0.922476074,0,0,0,0,0,0,-0.491589996,119.4451411,0.491589996,60.5548589,0,0.948289224,0,0,0,9,5,0% +9/8/2018 14:00,87.62013074,84.580825,5.086710325,28.07219006,3.921023536,3.84113598,0,3.84113598,3.802790209,0.038345771,9.540194743,8.188629606,1.351565137,0.118233327,1.23333181,1.529259772,1.47621388,-23.28640047,23.28640047,0,0.770836805,0.029558332,0.950697552,1,0.715291362,0,0.042917151,0.961238037,1,0.610010142,0.885513546,3.655386595,0.081397538,0.115824807,0.182198062,0.724496596,0.448993192,0.980016115,0.941254152,0.021414911,0.921207151,3.676801506,1.002604689,0,2.331373579,-0.291698994,106.9596997,0.291698994,73.04030026,0,0.878590427,3.676801506,3.050927198,5.673572338,9,6,54% +9/8/2018 15:00,76.00515697,93.80894372,169.292758,479.4644309,53.34168729,53.00943893,0,53.00943893,51.73323861,1.276200319,79.27448157,36.61904372,42.65543785,1.608448682,41.04698917,1.326540238,1.637274936,-3.670857605,3.670857605,0.842092688,0.315085465,1.138175409,36.60763361,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.72795672,1.165315594,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.82460421,35.18864987,50.55256093,36.35396546,0,36.61904372,-0.076374891,94.38022438,0.076374891,85.61977562,0,0,50.55256093,36.35396546,74.34550424,9,7,47% +9/8/2018 16:00,64.34817549,103.7114095,380.8826607,695.6671065,79.72747505,184.7725692,104.5779173,80.19465189,77.32339751,2.871254382,94.75348833,0,94.75348833,2.404077536,92.3494108,1.12308753,1.810105567,-1.732169069,1.732169069,0.826372046,0.209322931,2.477078125,79.6713474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.32619083,1.741745991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794634669,76.58312957,76.1208255,78.32487556,104.5779173,0,0.150327529,81.35409217,-0.150327529,98.64590783,0.717392924,0,151.1442833,78.32487556,202.4063479,9,8,34% +9/8/2018 17:00,53.21110858,115.3695355,571.8121035,794.753227,95.8595574,391.5962488,294.3166496,97.27959923,92.96903806,4.31056117,141.532984,0,141.532984,2.89051934,138.6424647,0.928709043,2.013578251,-0.939472983,0.939472983,0.690813032,0.167641708,3.201219558,102.9622251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.36537564,2.094171422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.319272673,98.97120714,91.68464831,101.0653786,294.3166496,0,0.370324573,68.26436406,-0.370324573,111.7356359,0.914983305,0,360.979469,101.0653786,427.124738,9,9,18% +9/8/2018 18:00,43.26695828,130.3773989,722.2428828,845.5606144,106.5325838,589.3678688,480.6030635,108.7648052,103.3202333,5.444571927,178.3284992,0,178.3284992,3.212350464,175.1161488,0.755150879,2.275514881,-0.465252558,0.465252558,0.609716563,0.147502435,3.633077477,116.8522603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.31533822,2.327336976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.632152265,112.3228373,101.9474905,114.6501742,480.6030635,0,0.568383928,55.36239113,-0.568383928,124.6376089,0.962031292,0,564.3026765,114.6501742,639.3389225,9,10,13% +9/8/2018 19:00,35.71694522,150.7739657,820.1052302,871.0090307,112.9234962,752.3512521,636.6505164,115.7007358,109.5184361,6.182299639,202.249068,0,202.249068,3.405060053,198.8440079,0.623378293,2.631502128,-0.115280501,0.115280501,0.549867816,0.137693911,3.782629382,121.6623636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2732866,2.466954417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.740502111,116.9464916,108.0137887,119.413446,636.6505164,0,0.730934461,43.03520948,-0.730934461,136.9647905,0.981594414,0,732.9463793,119.413446,811.1000914,9,11,11% +9/8/2018 20:00,32.39744468,176.9520631,858.081762,879.6856022,115.3176211,863.2811303,744.9721782,118.3089521,111.8403693,6.468582777,211.5291095,0,211.5291095,3.477251752,208.0518577,0.565442079,3.088396119,0.185018662,-0.185018662,0.498513635,0.134390015,3.660625298,117.7382929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.505217,2.519257057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652110567,113.1745255,110.1573276,115.6937826,744.9721782,0,0.846861852,32.12802994,-0.846861852,147.8719701,0.990958493,0,848.3938346,115.6937826,924.1131015,9,12,9% +9/8/2018 21:00,34.58765835,203.9031318,833.385619,874.11168,113.7656049,910.5242781,793.9067131,116.6175649,110.3351521,6.282412819,205.4944447,0,205.4944447,3.430452737,202.0639919,0.603668519,3.558781004,0.478152629,-0.478152629,0.448384774,0.136510161,3.290010744,105.8180549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.058345,2.48535133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383601584,101.7163393,108.4419466,104.2016906,793.9067131,0,0.908244028,24.73619397,-0.908244028,155.263806,0.994948716,0,898.3384114,104.2016906,966.5363339,9,13,8% +9/8/2018 22:00,41.404483,225.6388887,747.7985241,852.6828374,108.2358113,887.3071219,776.6977985,110.6093234,104.9721022,5.637221146,184.5761189,0,184.5761189,3.263709058,181.3124099,0.722644553,3.938141529,0.803249343,-0.803249343,0.392789962,0.144739268,2.709683104,87.15272311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9031775,2.364546103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.963156185,83.77451247,102.8663337,86.13905857,776.6977985,0,0.910887102,24.37176828,-0.910887102,155.6282317,0.995108455,0,875.7648802,86.13905857,932.1411713,9,14,6% +9/8/2018 23:00,50.96849371,241.6211333,607.643618,808.4576132,98.51934446,791.0489307,690.9196337,100.129297,95.54862272,4.580674262,150.300952,0,150.300952,2.970721733,147.3302302,0.88956803,4.217084319,1.220343347,-1.220343347,0.321462686,0.162133431,1.97645224,63.56949805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.84497053,2.152277783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43193292,61.10541951,93.27690345,63.25769729,690.9196337,0,0.854614543,31.28282279,-0.854614543,148.7171772,0.991494092,0,778.3196381,63.25769729,819.7205359,9,15,5% +9/8/2018 0:00,61.929301,253.8294067,423.8846439,722.8643635,83.73308238,621.7059233,537.3022808,84.4036425,81.208221,3.195421495,105.3006008,0,105.3006008,2.524861376,102.7757395,1.080870206,4.430158885,1.870954335,-1.870954335,0.210201655,0.197537428,1.17021572,37.63816014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06043093,1.829253472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847817306,36.17923117,78.90824824,38.00848464,537.3022808,0,0.743296126,41.98704295,-0.743296126,138.012957,0.982732059,0,606.9324249,38.00848464,631.8082179,9,16,4% +9/8/2018 1:00,73.53024098,263.9889221,213.972088,541.9352824,60.32843028,376.9762411,316.8539236,60.1223175,58.50930552,1.613011981,53.69913478,0,53.69913478,1.819124761,51.88001002,1.283344805,4.607475879,3.282181792,-3.282181792,0,0.281945327,0.45478119,14.62732638,0.030192488,1,0.2957406,0,0.925027014,0.963788977,0.724496596,1,56.32214912,1.317949697,0.005090955,0.312029739,0.985664902,0.710161498,0.961238037,0.922476074,0.326751022,14.06034249,56.64890014,15.37829219,307.2873154,0,0.584671148,54.22023849,-0.584671148,125.7797615,0.964481841,0,353.0219359,15.37829219,363.0867206,9,17,3% +9/8/2018 2:00,85.25512416,273.2679415,24.44577458,117.7562382,14.70508678,60.47174974,46.025793,14.44595673,14.26167416,0.184282575,6.370573693,0,6.370573693,0.443412622,5.92716107,1.487982621,4.76942532,11.06781149,-11.06781149,0,0.601538999,0.110853156,3.56541854,0.57672917,1,0.090107433,0,0.952321898,0.991083862,0.724496596,1,13.81569317,0.321250936,0.077443944,0.312029739,0.803967649,0.528464244,0.961238037,0.922476074,0.076195481,3.427215918,13.89188865,3.748466853,19.48137559,0,0.390856516,66.99219518,-0.390856516,113.0078048,0.922075818,0,31.85519399,3.748466853,34.30849057,9,18,8% +9/8/2018 3:00,97.15928614,282.5313887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695749442,4.931102973,-6.712154035,6.712154035,0.322000368,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.168995767,80.27056404,-0.168995767,99.72943596,0.754134601,0,0,0,0,9,19,0% +9/8/2018 4:00,108.456821,292.5723289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892928622,5.10635044,-2.206463683,2.206463683,0.907481202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058581033,93.35836865,0.058581033,86.64163135,0,0,0,0,0,9,20,0% +9/8/2018 5:00,118.8863522,304.2776238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074958282,5.310646376,-1.058253221,1.058253221,0.711125649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279095282,106.2062157,0.279095282,73.79378428,0,0.870849712,0,0,0,9,21,0% +9/8/2018 6:00,127.7878944,318.6814561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230319502,5.562040674,-0.468893919,0.468893919,0.610339272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477521502,118.5236521,0.477521502,61.47634785,0,0.945292673,0,0,0,9,22,0% +9/8/2018 7:00,134.1675154,336.6352722,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341664893,5.875393879,-0.060422636,0.060422636,0.540486569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640339804,129.8171625,0.640339804,50.18283747,0,0.971916458,0,0,0,9,23,0% +9/9/2018 8:00,136.8370078,357.67472,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388256325,6.242601516,0.284742487,-0.284742487,0.481459857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756457385,139.1528763,0.756457385,40.84712369,0,0.983902423,0,0,0,9,0,0% +9/9/2018 9:00,135.1113228,19.09474655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813744,0.333266197,0.628158932,-0.628158932,0.422732186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817964615,144.8815599,0.817964615,35.11844006,0,0.988872661,0,0,0,9,1,0% +9/9/2018 10:00,129.4496716,37.84561197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259322986,0.660530536,1.028868685,-1.028868685,0.354206782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820674258,145.1523467,0.820674258,34.84765335,0,0.989074487,0,0,0,9,2,0% +9/9/2018 11:00,121.0084077,52.9851116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111995137,0.924764652,1.590903039,-1.590903039,0.258093247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764407082,139.8542722,0.764407082,40.1457278,0,0.984589826,0,0,0,9,3,0% +9/9/2018 12:00,110.8532821,65.20231724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93475476,1.137995116,2.615964023,-2.615964023,0.082797495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65300443,130.7685079,0.65300443,49.23149207,0,0.973430841,0,0,0,9,4,0% +9/9/2018 13:00,99.71219011,75.54348798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740306022,1.318482594,5.815430211,-5.815430211,0,#DIV/0!,0,0,0.317100096,1,0.170290914,0,0.942793359,0.981555322,0.724496596,1,0,0,0.047160707,0.312029739,0.874981082,0.599477678,0.961238037,0.922476074,0,0,0,0,0,0,-0.494066819,119.6082341,0.494066819,60.39176589,0,0.948799114,0,0,0,9,5,0% +9/9/2018 14:00,87.77309222,84.93157934,4.359533987,24.38924107,3.411839098,3.34182357,0,3.34182357,3.308959561,0.032864009,8.323220701,7.163321676,1.159899025,0.102879537,1.057019488,1.531929454,1.482335698,-24.84757703,24.84757703,0,0.782615552,0.025719884,0.82723989,1,0.735403509,0,0.040223666,0.961238037,1,0.616769213,0.892272618,3.180697793,0.070952565,0.115824807,0.189842622,0.724496596,0.448993192,0.979011299,0.940249336,0.018633969,0.801392796,3.199331761,0.872345361,0,1.895389777,-0.293708265,107.0800954,0.293708265,72.91990456,0,0.879763047,3.199331761,2.539839247,4.861605752,9,6,52% +9/9/2018 15:00,76.16712881,94.1704232,166.5295331,475.8019326,52.76977871,52.43394515,0,52.43394515,51.17857518,1.255369963,79.23028993,37.26207308,41.96821685,1.591203528,40.37701332,1.32936718,1.643583943,-3.705171235,3.705171235,0.836224712,0.316879401,1.11492134,35.85970281,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.19479314,1.152821539,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.807756715,34.46971033,50.00254985,35.62253187,0,37.26207308,-0.078314253,94.49167553,0.078314253,85.50832447,0,0,50.00254985,35.62253187,73.31678451,9,7,47% +9/9/2018 16:00,64.52253707,104.0940555,377.9244919,694.256743,79.28576394,182.8580155,103.1140554,79.74396008,76.89500562,2.848954456,94.02292683,0,94.02292683,2.390758316,91.63216851,1.126130714,1.816784001,-1.737945497,1.737945497,0.827359874,0.209792606,2.460295803,79.13157023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91440425,1.732096262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782475934,76.06427523,75.69688018,77.79637149,103.1140554,0,0.148524385,81.45857784,-0.148524385,98.54142216,0.713354942,0,149.2538012,77.79637149,200.1699705,9,8,34% +9/9/2018 17:00,53.4131179,115.7809324,568.7162158,794.0287903,95.44245892,389.5068572,292.6551175,96.8517397,92.56451664,4.287223062,140.7697732,0,140.7697732,2.877942282,137.8918309,0.932234771,2.020758481,-0.939504111,0.939504111,0.690818355,0.167820885,3.184144115,102.4130202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97653426,2.085059386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306901572,98.44329045,91.28343583,100.5283498,292.6551175,0,0.368569907,68.37255324,-0.368569907,111.6274468,0.914340525,0,358.8698696,100.5283498,424.663664,9,9,18% +9/9/2018 18:00,43.51633262,130.8080291,718.9424445,845.074512,106.1128982,587.1364703,478.8035757,108.3328946,102.9132028,5.419691829,177.5156147,0,177.5156147,3.199695396,174.3159193,0.759503283,2.283030796,-0.463109752,0.463109752,0.609350121,0.147595818,3.614980029,116.2701841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92408504,2.318168422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.619040725,111.7633235,101.5431258,114.081492,478.8035757,0,0.566581489,55.48781502,-0.566581489,124.512185,0.961751441,0,562.0331546,114.081492,636.6972095,9,10,13% +9/9/2018 19:00,36.03208373,151.1572481,816.5258714,870.5900052,112.4904186,749.905518,634.6517837,115.2537343,109.0984174,6.15531692,201.3681521,0,201.3681521,3.392001166,197.9761509,0.628878497,2.638191668,-0.111817993,0.111817993,0.549275693,0.137767121,3.763180309,121.0368146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8695486,2.457493298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.726411323,116.34519,107.5959599,118.8026833,634.6517837,0,0.728990432,43.19817498,-0.728990432,136.801825,0.981411994,0,730.4508325,118.8026833,808.2048127,9,11,11% +9/9/2018 20:00,32.77098502,177.1403074,854.1633012,879.2371285,114.8648327,860.5247782,742.6845003,117.840278,111.4012342,6.439043764,210.56538,0,210.56538,3.463598512,207.1017815,0.571961588,3.091681603,0.189718182,-0.189718182,0.49770997,0.134476432,3.639709027,117.0655537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.0831037,2.509365332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6369568,112.5278631,109.7200605,115.0372284,742.6845003,0,0.844691922,32.36105708,-0.844691922,147.6389429,0.990806821,0,845.5769293,115.0372284,920.8664946,9,12,9% +9/9/2018 21:00,34.9727336,203.8336812,829.0908874,873.5432027,113.2878271,907.3592336,791.2374151,116.1218185,109.8717812,6.250037318,204.4387305,0,204.4387305,3.416045976,201.0226845,0.61038935,3.557568864,0.484449858,-0.484449858,0.447307885,0.136641023,3.267696391,105.1003486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6129352,2.474913681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367434911,101.0264527,107.9803701,103.5013664,791.2374151,0,0.905779374,25.071543,-0.905779374,154.928457,0.99479892,0,895.1024959,103.5013664,962.8420702,9,13,8% +9/9/2018 22:00,41.76438789,225.4239368,743.1192792,851.858819,107.7261872,883.6351003,773.5553081,110.0797922,104.4778451,5.601947021,183.4262148,0,183.4262148,3.24834201,180.1778728,0.728926079,3.934389911,0.812089787,-0.812089787,0.391278157,0.144964867,2.686253689,86.39915259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4280788,2.353412728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946181654,83.05015182,102.3742604,85.40356455,773.5553081,0,0.908079239,24.75874836,-0.908079239,155.2412516,0.994938726,0,872.014393,85.40356455,927.9093179,9,14,6% +9/9/2018 23:00,51.29918785,241.3625412,602.6078509,807.1028988,97.96376208,786.7513078,687.1988021,99.55250573,95.0097932,4.542712522,149.0632191,0,149.0632191,2.953968874,146.1092502,0.895339732,4.212571036,1.234011567,-1.234011567,0.319125283,0.162566355,1.9525151,62.79959735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.3270271,2.140140394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414590544,60.36536167,92.74161764,62.50550207,687.1988021,0,0.851438897,31.63148163,-0.851438897,148.3685184,0.99127588,0,773.9452149,62.50550207,814.8538159,9,15,5% +9/9/2018 0:00,62.2395273,253.5673826,418.5786553,720.2767892,83.09081665,616.5687857,532.8280411,83.74074467,80.58532196,3.155422712,103.9947358,0,103.9947358,2.505494695,101.4892411,1.086284676,4.425585702,1.896163248,-1.896163248,0.205890677,0.198507056,1.147081291,36.89407739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46167668,1.815222377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831056491,35.46399053,78.29273317,37.2792129,532.8280411,0,0.739754562,42.28948775,-0.739754562,137.7105123,0.982410015,0,601.7483368,37.2792129,626.1468361,9,16,4% +9/9/2018 1:00,73.82959247,263.7338829,208.6734134,535.8450418,59.4431999,370.4409969,311.2171605,59.22383643,57.6507681,1.573068334,52.38771681,0,52.38771681,1.792431799,50.59528501,1.288569474,4.603024606,3.350068661,-3.350068661,0,0.284862355,0.44810795,14.41269202,0.040989814,1,0.290081315,0,0.925900519,0.964662482,0.724496596,1,55.52193487,1.298610737,0.006877115,0.312029739,0.980683358,0.705179954,0.961238037,0.922476074,0.321057152,13.85402779,55.84299202,15.15263852,298.460427,0,0.58079694,54.49338532,-0.58079694,125.5066147,0.963911392,0,343.5323977,15.15263852,353.4494965,9,17,3% +9/9/2018 2:00,85.54571807,273.0207132,21.40247024,105.249349,13.22842692,53.70259492,40.71171301,12.99088191,12.82954104,0.161340861,5.588162578,0,5.588162578,0.398885879,5.189276698,1.493054441,4.765110372,11.81484885,-11.81484885,0,0.618079445,0.09972147,3.207385261,0.598442674,1,0.084438006,0,0.95293953,0.991701494,0.724496596,1,12.42547055,0.288991462,0.079710266,0.312029739,0.79894698,0.523443576,0.961238037,0.922476074,0.06863994,3.083060712,12.49411049,3.372052174,16.34808663,0,0.386812018,67.24372132,-0.386812018,112.7562787,0.920738246,0,27.54641909,3.372052174,29.7533598,9,18,8% +9/9/2018 3:00,97.46522378,282.2913596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701089061,4.926913676,-6.451268531,6.451268531,0.366614417,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164584485,80.52690276,-0.164584485,99.47309724,0.746204658,0,0,0,0,9,19,0% +9/9/2018 4:00,108.7772767,292.3420233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898521629,5.102330848,-2.174027364,2.174027364,0.901934265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063132804,93.61965046,0.063132804,86.38034954,0,0,0,0,0,9,20,0% +9/9/2018 5:00,119.2283237,304.068455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08092681,5.306995691,-1.048769877,1.048769877,0.709503901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283693331,106.4807585,0.283693331,73.51924147,0,0.873753347,0,0,0,9,21,0% +9/9/2018 6:00,128.1551394,318.5232436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236729137,5.559279344,-0.466010621,0.466010621,0.609846199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482068502,118.8205865,0.482068502,61.1794135,0,0.946280301,0,0,0,9,22,0% +9/9/2018 7:00,134.5536503,336.5834368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348404217,5.87448918,-0.060530776,0.060530776,0.540505062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644742,130.1463343,0.644742,49.85366571,0,0.9724496,0,0,0,9,23,0% +9/10/2018 8:00,137.2177698,357.7839503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394901875,6.244507944,0.282654066,-0.282654066,0.481816998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760631038,139.5198604,0.760631038,40.48013958,0,0.984265107,0,0,0,9,0,0% +9/10/2018 9:00,135.4539508,19.3536323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364117427,0.337784606,0.624135786,-0.624135786,0.423420184,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821841753,145.2695875,0.821841753,34.73041246,0,0.989161037,0,0,0,9,1,0% +9/10/2018 10:00,129.7376782,38.18321191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264349649,0.666422767,1.022146243,-1.022146243,0.355356387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824207342,145.5082101,0.824207342,34.49178994,0,0.989335653,0,0,0,9,2,0% +9/10/2018 11:00,121.246059,53.34365118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116142935,0.931022348,1.579047826,-1.579047826,0.260120608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76757227,140.1363785,0.76757227,39.86362148,0,0.984859554,0,0,0,9,3,0% +9/10/2018 12:00,111.0533686,65.55858278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938246927,1.144213122,2.59005257,-2.59005257,0.087228614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65580321,130.9805817,0.65580321,49.01941829,0,0.973757616,0,0,0,9,4,0% +9/10/2018 13:00,99.88809383,75.89479056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743376121,1.32461398,5.70644477,-5.70644477,0,#DIV/0!,0,0,0.308296354,1,0.173478971,0,0.942384348,0.981146312,0.724496596,1,0,0,0.046018668,0.312029739,0.8778016,0.602298196,0.961238037,0.922476074,0,0,0,0,0,0,-0.496525904,119.7704206,0.496525904,60.2295794,0,0.949300319,0,0,0,9,5,0% +9/10/2018 14:00,87.925727,85.28385826,3.696681729,20.98465855,2.937142313,2.876443784,0,2.876443784,2.848576636,0.027867148,7.1899304,6.205061438,0.984868961,0.088565678,0.896303284,1.534593433,1.488484125,-26.63351357,26.63351357,0,0.79453481,0.022141419,0.712144159,1,0.755187141,0,0.037529051,0.961238037,1,0.623588458,0.899091862,2.738160213,0.061202004,0.115824807,0.197557981,0.724496596,0.448993192,0.977984068,0.939222105,0.016041383,0.689707802,2.754201596,0.750909806,0,1.519078831,-0.295695135,107.1992254,0.295695135,72.80077463,0,0.880906924,2.754201596,2.089076865,4.121460623,9,6,50% +9/10/2018 15:00,76.32993136,94.53303203,163.7548566,472.0611015,52.19238464,51.85304495,0,51.85304495,50.61859167,1.234453279,79.16158037,37.88352654,41.27805383,1.573792966,39.70426087,1.33220862,1.649912661,-3.74032044,3.74032044,0.830213844,0.318722667,1.091662267,35.11161106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.65651568,1.140207647,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.790905596,33.75061609,49.44742128,34.89082374,0,37.88352654,-0.08025132,94.60301176,0.08025132,85.39698824,0,0,49.44742128,34.89082374,72.2827676,9,7,46% +9/10/2018 16:00,64.69826298,104.477326,374.9382135,692.8115684,78.84075291,180.934617,101.6447611,79.28985595,76.46341332,2.826442628,93.28545035,0,93.28545035,2.377339592,90.90811076,1.129197709,1.823473333,-1.74378965,1.74378965,0.828359283,0.210276654,2.443322056,78.5856362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49954131,1.722374441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770178512,75.53950266,75.26971983,77.2618771,101.6447611,0,0.146713429,81.5634873,-0.146713429,98.4365127,0.709199569,0,147.3561405,77.2618771,197.9224939,9,8,34% +9/10/2018 17:00,53.61704027,116.1920709,565.580904,793.2821255,95.02222699,387.3941164,290.9735724,96.42054401,92.15695625,4.263587757,139.996909,0,139.996909,2.865270738,137.1316382,0.935793888,2.027934202,-0.93952051,0.93952051,0.690821159,0.168008195,3.166846908,101.8566825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.58477171,2.075878896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294369805,97.90851756,90.87914151,99.98439645,290.9735724,0,0.366797087,68.4817796,-0.366797087,111.5182204,0.91368485,0,356.7372863,99.98439645,422.1750741,9,9,18% +9/10/2018 18:00,43.76804085,131.2367803,715.5932773,844.5705541,105.6898712,584.869316,476.97194,107.897376,102.5029317,5.394444392,176.6908145,0,176.6908145,3.186939571,173.5038749,0.76389642,2.290513916,-0.46093066,0.46093066,0.608977475,0.14769545,3.596636414,115.6801904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.52971679,2.308926871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605750838,111.1961991,101.1354676,113.505126,476.97194,0,0.564750852,55.61500818,-0.564750852,124.3849918,0.961465384,0,559.7274769,113.505126,634.0143118,9,10,13% +9/10/2018 19:00,36.34948565,151.5367848,812.8906363,870.1544551,112.053735,747.4130504,632.6102359,114.8028145,108.6749015,6.127912983,200.4735796,0,200.4735796,3.378833546,197.0947461,0.634418206,2.644815833,-0.108306183,0.108306183,0.548675138,0.137846015,3.743471396,120.4029082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.462449,2.447953402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712132283,115.7358551,107.1745813,118.1838085,632.6102359,0,0.727009133,43.36375838,-0.727009133,136.6362416,0.981225073,0,727.9076062,118.1838085,805.2565452,9,11,11% +9/10/2018 20:00,33.14620541,177.3261576,850.1843726,878.7716048,114.408199,857.7125033,740.3450847,117.3674186,110.9583697,6.40904892,209.5868736,0,209.5868736,3.449829322,206.1370442,0.578510419,3.0949253,0.194482777,-0.194482777,0.496895176,0.134568692,3.618531934,116.3844256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6574055,2.4993896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.621614069,111.8731368,109.2790195,114.3725264,740.3450847,0,0.84247725,32.59735694,-0.84247725,147.4026431,0.990651216,0,842.7027782,114.3725264,917.5573093,9,12,9% +9/10/2018 21:00,35.35942346,203.7659113,824.7339779,872.9551855,112.805996,904.1312043,788.5095323,115.6216721,109.404479,6.217193095,203.3678184,0,203.3678184,3.401516988,199.9663014,0.617138361,3.556386055,0.490838391,-0.490838391,0.446215381,0.136778645,3.245134134,104.3746688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1637466,2.464387479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351088633,100.3289017,107.5148352,102.7932892,788.5095323,0,0.903264618,25.40943887,-0.903264618,154.5905611,0.994645236,0,891.8020848,102.7932892,959.0782367,9,13,8% +9/10/2018 22:00,42.12625573,225.2116552,738.3792419,851.0095036,107.2122652,879.8951025,770.3494681,109.5456344,103.9794198,5.566214618,182.2614412,0,182.2614412,3.232845366,179.0285958,0.735241864,3.930684898,0.821072976,-0.821072976,0.389741941,0.145199457,2.662604774,85.63852218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.94897336,2.342185462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929048095,82.31900494,101.8780215,84.6611904,770.3494681,0,0.905218408,25.14728497,-0.905218408,154.852715,0.994764711,0,868.1944877,84.6611904,923.6035436,9,14,6% +9/10/2018 23:00,51.63194711,241.1057131,597.5159961,805.7097055,97.40335264,782.3817371,683.411127,98.97061015,94.46628218,4.50432797,147.8117415,0,147.8117415,2.937070462,144.8746711,0.901147476,4.208088538,1.247943385,-1.247943385,0.316742802,0.163013799,1.928407096,62.02420106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80458363,2.127897552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397124376,59.62002126,92.20170801,61.74791881,683.411127,0,0.848210121,31.98247728,-0.848210121,148.0175227,0.991052342,0,769.4979061,61.74791881,809.910684,9,15,5% +9/10/2018 0:00,62.55168202,253.3061453,413.2256008,717.615479,82.44194946,611.3526775,528.2815879,83.07108963,79.9560205,3.115069126,102.67726,0,102.67726,2.485928955,100.1913311,1.091732804,4.42102625,1.922015842,-1.922015842,0.201469623,0.19950833,1.123864248,36.14733747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85676818,1.801047065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814235822,34.74619571,77.671004,36.54724278,528.2815879,0,0.736162476,42.59446471,-0.736162476,137.4055353,0.982080211,0,596.4858973,36.54724278,620.4053368,9,16,4% +9/10/2018 1:00,74.13061833,263.4789014,203.3496194,529.5616982,58.54349686,363.8035033,305.4923736,58.31112976,56.77819443,1.532935326,51.06977196,0,51.06977196,1.765302433,49.30446953,1.293823366,4.598574339,3.420769685,-3.420769685,0,0.287895778,0.441325608,14.19454861,0.051982078,1,0.284407051,0,0.926769683,0.965531646,0.724496596,1,54.7067396,1.278955603,0.008677305,0.312029739,0.975687895,0.700184491,0.961238037,0.922476074,0.315329676,13.64434004,55.02206927,14.92329564,289.6122451,0,0.576877774,54.76875982,-0.576877774,125.2312402,0.963326527,0,334.0132276,14.92329564,343.7802261,9,17,3% +9/10/2018 2:00,85.83694869,272.7729808,18.52096321,92.98583666,11.77065291,47.14503814,35.589695,11.55534314,11.41572429,0.139618844,4.845550573,0,4.845550573,0.354928614,4.490621958,1.498137374,4.760786625,12.66771124,-12.66771124,0,0.635531358,0.088732154,2.853931073,0.620659278,1,0.078777491,0,0.95354869,0.992310653,0.724496596,1,11.05330566,0.257144573,0.081991214,0.312029739,0.793935357,0.518431953,0.961238037,0.922476074,0.061174227,2.743307102,11.11447988,3.000451675,13.5006206,0,0.382743182,67.49629449,-0.382743182,112.5037055,0.9193641,0,23.5264658,3.000451675,25.49020141,9,18,8% +9/10/2018 3:00,97.77245048,282.050332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706451179,4.92270695,-6.209705868,6.209705868,0.407924065,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160143723,80.7847615,-0.160143723,99.2152385,0.737780457,0,0,0,0,9,19,0% +9/10/2018 4:00,109.0989013,292.1102416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904135038,5.098285495,-2.142485146,2.142485146,0.896540228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067704029,93.88212482,0.067704029,86.11787518,0,0,0,0,0,9,20,0% +9/10/2018 5:00,119.5714667,303.8574155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086915785,5.303312357,-1.039434924,1.039434924,0.707907531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288300406,106.7562311,0.288300406,73.24376886,0,0.87656979,0,0,0,9,21,0% +9/10/2018 6:00,128.5237109,318.3632268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243161922,5.556486525,-0.463152555,0.463152555,0.609357441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486614414,119.1182987,0.486614414,60.88170134,0,0.947249242,0,0,0,9,22,0% +9/10/2018 7:00,134.9412926,336.5311916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355169853,5.873577329,-0.060629269,0.060629269,0.540521905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649134003,130.4763412,0.649134003,49.5236588,0,0.972974302,0,0,0,9,23,0% +9/11/2018 8:00,137.5998315,357.8956941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401570109,6.246458241,0.280591515,-0.280591515,0.482169715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764787026,139.8880486,0.764787026,40.11195142,0,0.984622322,0,0,0,9,0,0% +9/11/2018 9:00,135.7971418,19.61713013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370107239,0.342383511,0.620153631,-0.620153631,0.424101173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825695898,145.6591083,0.825695898,34.34089172,0,0.989445018,0,0,0,9,1,0% +9/11/2018 10:00,130.0255698,38.52528311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269374304,0.672393035,1.01549095,-1.01549095,0.35649451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827714617,145.8646847,0.827714617,34.13531532,0,0.989592706,0,0,0,9,2,0% +9/11/2018 11:00,121.4833458,53.70562209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284371,0.937339932,1.567327245,-1.567327245,0.262124945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770711536,140.4178272,0.770711536,39.58217277,0,0.985124884,0,0,0,9,3,0% +9/11/2018 12:00,111.2531806,65.91735726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.941734305,1.150474918,2.564548841,-2.564548841,0.091590009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658578667,131.1915638,0.658578667,48.80843624,0,0.974078926,0,0,0,9,4,0% +9/11/2018 13:00,100.0640011,76.24796239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746446283,1.330777992,5.601002852,-5.601002852,0,#DIV/0!,0,0,0.299560086,1,0.176677871,0,0.941971664,0.980733627,0.724496596,1,0,0,0.044877074,0.312029739,0.880631333,0.605127929,0.961238037,0.922476074,0,0,0,0,0,0,-0.498966795,119.9316672,0.498966795,60.06833275,0,0.949792931,0,0,0,9,5,0% +9/11/2018 14:00,88.07796194,85.63755204,3.097777075,17.86640398,2.498545011,2.446557012,0,2.446557012,2.42320466,0.023352352,6.14451801,5.318085743,0.826432267,0.075340351,0.751091917,1.537250434,1.494657247,-28.69575925,28.69575925,0,0.806560624,0.018835088,0.605801165,1,0.774643699,0,0.034834258,0.961238037,1,0.630465459,0.905968863,2.32927649,0.052177102,0.115824807,0.205341545,0.724496596,0.448993192,0.976934474,0.938172511,0.013645957,0.586536216,2.342922447,0.638713318,0,1.198464129,-0.297658429,107.3170171,0.297658429,72.6829829,0,0.882022227,2.342922447,1.695785319,3.452780022,9,6,47% +9/11/2018 15:00,76.4935582,94.89665254,160.969104,468.2401978,51.60941135,51.26665028,0,51.26665028,50.05319718,1.213453099,79.06789079,38.48285373,40.58503706,1.556214171,39.02882289,1.335064447,1.656259036,-3.776342209,3.776342209,0.824053759,0.320616877,1.068403096,34.36351618,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.113037,1.127471869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.774054406,33.03151883,48.8870914,34.1589907,0,38.48285373,-0.082186138,94.71423616,0.082186138,85.28576384,0,0,48.8870914,34.1589907,71.24346764,9,7,46% +9/11/2018 16:00,64.8753461,104.861089,371.9239268,691.3308721,78.39241405,179.0023132,100.17,78.83231319,76.02859353,2.803719662,92.54108257,0,92.54108257,2.363820521,90.17726205,1.132288393,1.83017126,-1.749705549,1.749705549,0.829370961,0.210775399,2.426157776,78.03357394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.08157599,1.712579921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75774305,75.00883942,74.83931904,76.72141934,100.17,0,0.144894441,81.66883347,-0.144894441,98.33116653,0.704921198,0,145.4512754,76.72141934,195.6639099,9,8,35% +9/11/2018 17:00,53.82285792,116.6028001,562.4062752,792.5128736,94.59885419,385.2578014,289.2717956,95.98600577,91.7463497,4.239656064,139.2144172,0,139.2144172,2.852504486,136.3619127,0.939386084,2.035102779,-0.939523738,0.939523738,0.690821711,0.168203767,3.149329572,101.2932648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19008108,2.06662979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281678554,97.36693898,90.47175963,99.43356877,289.2717956,0,0.3650058,68.59206034,-0.3650058,111.4079397,0.913015875,0,354.5815014,99.43356877,419.6587835,9,9,18% +9/11/2018 18:00,44.02204089,131.6634955,712.1956054,844.0485191,105.2635084,582.566164,475.1079074,107.4582565,102.0894252,5.368831306,175.8541532,0,175.8541532,3.174083159,172.6800701,0.768329557,2.297961501,-0.458716293,0.458716293,0.608598796,0.147801401,3.57804926,115.0823637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.13223869,2.299612444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.592284509,110.6215453,100.7245232,112.9211578,475.1079074,0,0.562891702,55.74398495,-0.562891702,124.256015,0.961172967,0,557.3854,112.9211578,631.2900394,9,10,13% +9/11/2018 19:00,36.66907574,151.9124708,809.1999519,869.702224,111.6134646,744.8737035,630.5257056,114.3479979,108.2479068,6.100091045,199.5654547,0,199.5654547,3.365557767,196.1998969,0.639996105,2.65137279,-0.10474585,0.10474585,0.548066285,0.137930637,3.723506493,119.7607683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0520054,2.438335146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.697667779,115.1186058,106.7496732,117.5569409,630.5257056,0,0.724990334,43.53195628,-0.724990334,136.4680437,0.981033563,0,725.3165529,117.5569409,802.2552196,9,11,11% +9/11/2018 20:00,33.52301083,177.5095506,846.1456744,878.2889057,113.9477542,854.8443543,737.9539418,116.8904125,110.511809,6.378603507,208.5937603,0,208.5937603,3.435945212,205.1578151,0.585086914,3.098126112,0.199311861,-0.199311861,0.496069354,0.134666828,3.597099244,115.6950766,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2281543,2.48933061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.606086157,111.2105083,108.8342405,113.699839,737.9539418,0,0.840217766,32.83687773,-0.840217766,147.1631223,0.990491618,0,839.7714341,113.699839,914.1857047,9,12,9% +9/11/2018 21:00,35.74761559,203.6997188,820.3159097,872.3475045,112.3201621,900.8405133,785.7233307,115.1171826,108.9332948,6.18388783,202.2819569,0,202.2819569,3.386867304,198.8950896,0.623913592,3.555230778,0.497317962,-0.497317962,0.445107309,0.136923057,3.222330651,103.6412304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7108264,2.453773833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.334567587,99.62389287,107.045394,102.0776667,785.7233307,0,0.900699924,25.74977786,-0.900699924,154.2502221,0.994487616,0,888.4375161,102.0776667,955.2453074,9,13,8% +9/11/2018 22:00,42.48996243,225.0019895,733.579781,850.1347171,106.6941121,876.0877781,767.0808529,109.0069252,103.476891,5.530034254,181.0821321,0,181.0821321,3.217221139,177.864911,0.741589743,3.927025541,0.830199475,-0.830199475,0.388181218,0.145443093,2.638744511,84.87109411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.46592354,2.330865764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.911761416,81.58132389,101.377685,83.91218965,767.0808529,0,0.902305055,25.53726966,-0.902305055,154.4627303,0.994586368,0,864.3058447,83.91218965,919.2246945,9,14,6% +9/11/2018 23:00,51.96664922,240.8506482,592.3697863,804.2776545,96.83819195,777.9411941,679.5574973,98.38369684,93.91816317,4.465533667,146.5469417,0,146.5469417,2.920028782,143.6269129,0.90698913,4.203636816,1.262142196,-1.262142196,0.314314662,0.163475914,1.904137937,61.24362148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.27771079,2.115550913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379541453,58.86969848,91.65725224,60.9852494,679.5574973,0,0.844928979,32.33567266,-0.844928979,147.6643273,0.990823429,0,764.9787417,60.9852494,804.8923677,9,15,5% +9/11/2018 0:00,62.86564715,253.0457157,407.8276187,714.8792159,81.78652775,606.0587498,523.6640108,82.39473903,79.32036217,3.074376857,101.3486934,0,101.3486934,2.466165572,98.88252781,1.097212529,4.416480897,1.948529254,-1.948529254,0.196935562,0.200541905,1.100576602,35.39832672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.24574922,1.786728562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797364002,34.02621809,77.04311322,35.81294665,523.6640108,0,0.732520962,42.90184639,-0.732520962,137.0981536,0.981742568,0,591.1463637,35.81294665,614.585221,9,16,4% +9/11/2018 1:00,74.43320087,263.2240028,198.0038331,523.0803976,57.62911092,357.0646713,299.6806541,57.38401712,55.89138059,1.492636531,49.74605208,0,49.74605208,1.737730323,48.00832175,1.299104428,4.594125519,3.494441363,-3.494441363,0,0.291050481,0.434432581,13.97284515,0.063171277,1,0.278719796,0,0.927634125,0.966396088,0.724496596,1,53.87635355,1.258979703,0.010491143,0.312029739,0.970680175,0.695176771,0.961238037,0.922476074,0.309568261,13.43123024,54.18592181,14.69020994,280.7494444,0,0.572915092,55.04624482,-0.572915092,124.9537552,0.962727033,0,324.4710014,14.69020994,334.08545,9,17,3% +9/11/2018 2:00,86.12858177,272.5247656,15.81621176,81.07103308,10.34249087,40.84769977,30.69784387,10.1498559,10.03062661,0.119229285,4.146687915,0,4.146687915,0.311864259,3.834823656,1.503227332,4.756454453,13.64986778,-13.64986778,0,0.653917071,0.077966065,2.507656653,0.643380759,1,0.073130136,0,0.954148945,0.992910908,0.724496596,1,9.709367777,0.225944594,0.084285314,0.312029739,0.788936805,0.513433401,0.961238037,0.922476074,0.053850147,2.410454958,9.763217924,2.636399552,10.94744179,0,0.378653666,67.74968747,-0.378653666,112.2503125,0.917953213,0,19.81245728,2.636399552,21.53792806,9,18,9% +9/11/2018 3:00,98.08084756,281.808318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711833723,4.918483009,-5.985461999,5.985461999,0.446272025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155675399,81.04403071,-0.155675399,98.95596929,0.728818874,0,0,0,0,9,19,0% +9/11/2018 4:00,109.4215726,291.8769799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909766715,5.09421431,-2.111810737,2.111810737,0.891294595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072292626,94.14567876,0.072292626,85.85432124,0,0,0,0,0,9,20,0% +9/11/2018 5:00,119.9156565,303.6444756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092923031,5.299595855,-1.03024864,1.03024864,0.706336583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292914344,107.0325144,0.292914344,72.96748563,0,0.879301634,0,0,0,9,21,0% +9/11/2018 6:00,128.893487,318.2013447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249615733,5.55366115,-0.460321257,0.460321257,0.608873261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491157081,119.4166616,0.491157081,60.58333845,0,0.948199574,0,0,0,9,22,0% +9/11/2018 7:00,135.3303314,336.4784695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36195986,5.872657154,-0.060719406,0.060719406,0.54053732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653513747,130.8070502,0.653513747,49.19294978,0,0.973490515,0,0,0,9,23,0% +9/12/2018 8:00,137.983091,358.009927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408259251,6.248451981,0.278553779,-0.278553779,0.482518188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768923452,140.257314,0.768923452,39.74268603,0,0.984974021,0,0,0,9,0,0% +9/12/2018 9:00,136.1407989,19.88522336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376105188,0.34706262,0.616211479,-0.616211479,0.42477532,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829525394,146.0500153,0.829525394,33.94998469,0,0.98972457,0,0,0,9,1,0% +9/12/2018 10:00,130.3132655,38.87176306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274395542,0.678440251,1.00890157,-1.00890157,0.35762136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831194716,146.2216605,0.831194716,33.77833946,0,0.989845623,0,0,0,9,2,0% +9/12/2018 11:00,121.7202116,54.07092926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12441846,0.943715745,1.55573882,-1.55573882,0.264106682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773823835,140.6985188,0.773823835,39.30148121,0,0.98538581,0,0,0,9,3,0% +9/12/2018 12:00,111.4526836,66.27853484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945216289,1.156778656,2.539442819,-2.539442819,0.095883391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661330086,131.4013917,0.661330086,48.59860826,0,0.97439479,0,0,0,9,4,0% +9/12/2018 13:00,100.2398934,76.60289492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749516181,1.336972733,5.498930502,-5.498930502,0,#DIV/0!,0,0,0.290890184,1,0.17988773,0,0.941555273,0.980317236,0.724496596,1,0,0,0.043735885,0.312029739,0.883470367,0.607966963,0.961238037,0.922476074,0,0,0,0,0,0,-0.501389094,120.0919444,0.501389094,59.90805562,0,0.950277049,0,0,0,9,5,0% +9/12/2018 14:00,88.22972087,85.99254891,2.561932558,15.0392734,2.097335057,2.053405596,0,2.053405596,2.034092667,0.01931293,5.190133001,4.505720401,0.6844126,0.06324239,0.62117021,1.539899127,1.500853111,-31.10287128,31.10287128,0,0.818653501,0.015810598,0.508523167,1,0.793774376,0,0.032140301,0.961238037,1,0.637397562,0.912900966,1.955247242,0.043903716,0.115824807,0.21319042,0.724496596,0.448993192,0.975862628,0.937100665,0.011454724,0.492183767,1.966701966,0.536087483,0,0.929195002,-0.299596947,107.4333965,0.299596947,72.56660354,0,0.883109114,1.966701966,1.356668059,2.854614077,9,6,45% +9/12/2018 15:00,76.6580045,95.26116525,158.1726363,464.3373929,51.02075755,50.67466561,0,50.67466561,49.48229347,1.192372145,78.94875737,39.05950635,39.88925103,1.538464087,38.35078694,1.337934577,1.662620983,-3.813276338,3.813276338,0.817737651,0.322563743,1.045148616,33.61557217,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.56426263,1.114611994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.757206615,32.3125666,48.32146924,33.4271786,0,39.05950635,-0.084118804,94.8253546,0.084118804,85.1746454,0,0,48.32146924,33.4271786,70.19888909,9,7,45% +9/12/2018 16:00,65.0537802,105.2452108,368.8817204,689.8139094,77.94071684,177.0610175,98.68971461,78.37130288,75.59051666,2.780786225,91.78984406,0,91.78984406,2.350200183,89.43964388,1.135402655,1.836875451,-1.75569758,1.75569758,0.830395659,0.211289182,2.408803847,77.47541193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.66047984,1.702712033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745170187,74.47231287,74.40565003,76.1750249,98.68971461,0,0.143067157,81.77463151,-0.143067157,98.22536849,0.700513778,0,143.5391549,76.1750249,193.3941852,9,8,35% +9/12/2018 17:00,54.03055313,117.012968,559.1924408,791.7206649,94.17233278,383.097669,287.5495507,95.54811831,91.33268949,4.215428822,138.4223247,0,138.4223247,2.839643292,135.5826814,0.943011049,2.042261558,-0.939515512,0.939515512,0.690820305,0.168407736,3.131593835,100.7228225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.79245514,2.057311899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.268829073,96.81860819,90.06128422,98.87592009,287.5495507,0,0.363195712,68.70341415,-0.363195712,111.2965859,0.912333176,0,352.4022792,98.87592009,417.1145914,9,9,18% +9/12/2018 18:00,44.27828988,132.0880182,708.7496753,843.5081831,104.8338164,580.2267705,473.2112261,107.0155444,101.67269,5.342854429,175.0056908,0,175.0056908,3.161126359,171.8445644,0.772801946,2.30537082,-0.456467762,0.456467762,0.608214274,0.147913742,3.559221376,114.4767942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.73165693,2.290225286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.578643771,110.0394489,100.3103007,112.3296742,473.2112261,0,0.561003717,55.87476007,-0.561003717,124.1252399,0.960874031,0,555.006679,112.3296742,628.5242041,9,10,13% +9/12/2018 19:00,36.99077787,152.284202,805.4542857,869.2331587,111.1696284,742.2873499,628.3980413,113.8893086,107.817454,6.071854631,198.6438913,0,198.6438913,3.35217447,195.2917168,0.645610867,2.657860723,-0.101137854,0.101137854,0.547449281,0.138021028,3.703289695,119.1105266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6382378,2.428638992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683020778,114.4935687,106.3212586,116.9222077,628.3980413,0,0.722933812,43.70276432,-0.722933812,136.2972357,0.980837375,0,722.677544,116.9222077,799.2007905,9,11,11% +9/12/2018 20:00,33.90130537,177.6904218,842.0479624,877.7889124,113.4835357,851.9204188,735.5111172,116.4093017,110.0615884,6.347713223,207.5862247,0,207.5862247,3.421947312,204.1642774,0.591689399,3.10128291,0.204204768,-0.204204768,0.495232618,0.134770869,3.575416482,114.9976845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7953852,2.479189179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.59037707,110.5401485,108.3857623,113.0193376,735.5111172,0,0.837913429,33.07956567,-0.837913429,146.9204343,0.990327964,0,836.7829897,113.0193376,910.7518858,9,12,9% +9/12/2018 21:00,36.13719636,203.6349981,815.8377732,871.7200462,111.8303805,897.4875428,782.8791311,114.6084117,108.4582819,6.150129746,201.1814121,0,201.1814121,3.372098582,197.8093136,0.630713059,3.55410119,0.503888223,-0.503888223,0.443983729,0.137074286,3.199292956,102.900259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.254226,2.443073944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.317876856,98.91164291,106.5721028,101.3547168,782.8791311,0,0.898085497,26.09245555,-0.898085497,153.9075445,0.994326013,0,885.0091882,101.3547168,951.3438233,9,13,7% +9/12/2018 22:00,42.85538178,224.7948805,728.7223473,849.2343004,106.1717998,872.2138542,763.7501091,108.4637452,102.9703283,5.493416867,179.8886414,0,179.8886414,3.201471496,176.68717,0.747967514,3.923410806,0.839469759,-0.839469759,0.386595906,0.14569582,2.614681401,84.09714178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.97899621,2.3194552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.894327775,80.83737147,100.873324,83.15682667,763.7501091,0,0.899339686,25.9285928,-0.899339686,154.0714072,0.994403654,0,860.3492235,83.15682667,914.7737034,9,14,6% +9/12/2018 23:00,52.30316898,240.597341,587.1710419,802.8063866,96.26836156,773.4307466,675.638888,97.7918586,93.36551527,4.426343336,145.2692634,0,145.2692634,2.902846294,142.3664171,0.912862508,4.199215772,1.276611331,-1.276611331,0.311840294,0.163952843,1.879717672,60.4581818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.74648461,2.103102258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361849054,58.11470399,91.10833366,60.21780625,675.638888,0,0.841596304,32.69092872,-0.841596304,147.3090713,0.990589093,0,760.3888467,60.21780625,799.8001965,9,15,5% +9/12/2018 0:00,63.18130138,252.7861111,402.386938,712.0667994,81.12460434,600.6882556,518.9764947,81.71176091,78.6783982,3.033362707,100.0095779,0,100.0095779,2.446206139,97.56337178,1.102721735,4.411949941,1.975721039,-1.975721039,0.192285493,0.201608444,1.07723069,34.64744196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.62866903,1.77226802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780449968,33.30443909,76.40911899,35.07670711,518.9764947,0,0.728831193,43.2115019,-0.728831193,136.7884981,0.981397009,0,585.7310985,35.07670711,608.6881017,9,16,4% +9/12/2018 1:00,74.73721893,262.9692093,192.6393109,516.3962896,56.69983393,350.2255512,293.7832299,56.44232124,54.99012474,1.452196497,48.41734041,0,48.41734041,1.709709193,46.70763122,1.304410544,4.589678534,3.571251472,-3.571251472,0,0.294331586,0.427427298,13.74753119,0.074559314,1,0.273021579,0,0.928493466,0.967255429,0.724496596,1,53.03057163,1.23867849,0.012318224,0.312029739,0.965661904,0.690158499,0.961238037,0.922476074,0.303772514,13.21464989,53.33434414,14.45332838,271.8789539,0,0.56891042,55.32571908,-0.56891042,124.6742809,0.962112701,0,314.9125389,14.45332838,324.3719532,9,17,3% +9/12/2018 2:00,86.42035916,272.2760869,13.30295209,69.62004192,8.956163342,34.8624013,26.07601605,8.786385245,8.686101973,0.100283272,3.495516121,0,3.495516121,0.270061369,3.225454751,1.508319808,4.752114191,14.79217653,-14.79217653,0,0.673246305,0.067515342,2.171525493,0.666606376,1,0.067500598,0,0.954739843,0.993501806,0.724496596,1,8.405218051,0.195658543,0.086590867,0.312029739,0.783955724,0.50845232,0.961238037,0.922476074,0.046727682,2.087352902,8.451945733,2.283011445,8.693577502,0,0.374547549,68.00364864,-0.374547549,111.9963514,0.916505601,0,16.41965821,2.283011445,17.91384354,9,18,9% +9/12/2018 3:00,98.39029306,281.5653277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717234566,4.914242029,-5.776801818,5.776801818,0.481955017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151181509,81.30459709,-0.151181509,98.69540291,0.719271722,0,0,0,0,9,19,0% +9/12/2018 4:00,109.745165,291.6422321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915414468,5.090117188,-2.081979011,2.081979011,0.88619307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076896451,94.4101957,0.076896451,85.5898043,0,0,0,0,0,9,20,0% +9/12/2018 5:00,120.2607654,303.4296028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098946317,5.295845618,-1.021211326,1.021211326,0.704791112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297532936,107.3094856,0.297532936,72.69051439,0,0.881951377,0,0,0,9,21,0% +9/12/2018 6:00,129.2643432,318.0375317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256088395,5.550802074,-0.4575183,0.4575183,0.608393927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495694315,119.7155447,0.495694315,60.2844553,0,0.949131383,0,0,0,9,22,0% +9/12/2018 7:00,135.7206535,336.4251966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368772266,5.871727367,-0.060802531,0.060802531,0.540551535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657879154,131.1383249,0.657879154,48.86167514,0,0.9739982,0,0,0,9,23,0% +9/13/2018 8:00,138.3674463,358.1266181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414967515,6.250488625,0.276539736,-0.276539736,0.48286261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773038429,140.6275267,0.773038429,39.37247328,0,0.985320162,0,0,0,9,0,0% +9/13/2018 9:00,136.4848262,20.15788871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382109596,0.351821528,0.612308258,-0.612308258,0.425442811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833328608,146.4422005,0.833328608,33.55779954,0,0.98999966,0,0,0,9,1,0% +9/13/2018 10:00,130.6006871,39.2225825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279411995,0.684563206,1.002376765,-1.002376765,0.358737167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834646314,146.5790279,0.834646314,33.4209721,0,0.990094386,0,0,0,9,2,0% +9/13/2018 11:00,121.9566032,54.43947212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12854427,0.950148032,1.544279941,-1.544279941,0.266066266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776908176,140.9783561,0.776908176,39.02164388,0,0.98564233,0,0,0,9,3,0% +9/13/2018 12:00,111.6518463,66.64200562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948692334,1.163122418,2.51472443,-2.51472443,0.100110485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664056813,131.6100073,0.664056813,48.38999268,0,0.974705238,0,0,0,9,4,0% +9/13/2018 13:00,100.415755,76.95947638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752585546,1.343196253,5.400063477,-5.400063477,0,#DIV/0!,0,0,0.282285431,1,0.183108713,0,0.941135134,0.979897097,0.724496596,1,0,0,0.04259504,0.312029739,0.886318837,0.610815433,0.961238037,0.922476074,0,0,0,0,0,0,-0.50379247,120.2512266,0.50379247,59.74877342,0,0.950752784,0,0,0,9,5,0% +9/13/2018 14:00,88.38092521,86.3487343,2.087712678,12.50449807,1.734405272,1.697844614,0,1.697844614,1.682106553,0.01573806,4.328713469,3.770224641,0.558488828,0.052298718,0.50619011,1.542538141,1.507069718,-33.948067,33.948067,0,0.830768185,0.01307468,0.420526638,1,0.812580183,0,0.029448243,0.961238037,1,0.644381891,0.919885295,1.616904801,0.036400781,0.115824807,0.221101426,0.724496596,0.448993192,0.974768702,0.936006739,0.009472561,0.40686118,1.626377362,0.443261961,0,0.706614814,-0.301509474,107.5482882,0.301509474,72.45171177,0,0.884167732,1.626377362,1.068027978,2.325380313,9,6,43% +9/13/2018 15:00,76.82326742,95.6264481,155.3657928,460.3507524,50.42631256,50.07698616,0,50.07698616,48.90577319,1.171212973,78.80371409,39.61293948,39.19077461,1.520539377,37.67023524,1.340818959,1.668996371,-3.851165816,3.851165816,0.811258168,0.32456509,1.021903438,32.86792734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.01008941,1.101625603,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.740365562,31.59390195,47.75045497,32.69552755,0,39.61293948,-0.086049473,94.93637635,0.086049473,85.06362365,0,0,47.75045497,32.69552755,69.14902384,9,7,45% +9/13/2018 16:00,65.23356032,105.6295556,365.8116628,688.2598954,77.48562738,175.1106098,97.20381717,77.90679265,75.14914982,2.757642834,91.03175043,0,91.03175043,2.336477557,88.69527287,1.13854041,1.843583533,-1.761770569,1.761770569,0.831434201,0.211818362,2.391261117,76.91117744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23622124,1.692770036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732460539,73.92994922,73.96868178,75.62271925,97.20381717,0,0.141231267,81.88089937,-0.141231267,98.11910063,0.695970747,0,141.619695,75.62271925,191.1132523,9,8,35% +9/13/2018 17:00,54.24010853,117.4224206,555.9395097,790.9051157,93.7426542,380.91345,285.8065759,95.10687415,90.9159673,4.190906854,137.6206575,0,137.6206575,2.826686898,134.7939706,0.94666848,2.049407855,-0.939497737,0.939497737,0.690817265,0.168620241,3.113641507,100.1454139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.39188592,2.047925035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.255822673,96.26358109,89.6477086,98.31150613,285.8065759,0,0.361366452,68.81586172,-0.361366452,111.1841383,0.911636298,0,350.1993575,98.31150613,414.542272,9,9,18% +9/13/2018 18:00,44.53674452,132.5101915,705.2557521,842.9493193,104.4008026,577.8508839,471.2816349,106.569249,101.2527332,5.316515761,174.1454917,0,174.1454917,3.148069397,170.9974223,0.77731283,2.312739135,-0.454186303,0.454186303,0.607824122,0.148032543,3.540155744,113.8635779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.3279785,2.280765562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564830785,109.4500021,99.89280929,111.7307677,471.2816349,0,0.55908656,56.00734923,-0.55908656,123.9926508,0.96056841,0,552.59106,111.7307677,625.7166128,9,10,13% +9/13/2018 19:00,37.31451512,152.6518744,801.654145,868.7471085,110.72225,739.6538757,626.2271025,113.4267732,107.3835656,6.043207565,197.709013,0,197.709013,3.338684359,194.3703287,0.651261148,2.664277818,-0.097483156,0.097483156,0.546824291,0.13811723,3.682825356,118.4523231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2211678,2.418865453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.668194434,113.8608785,105.8893623,116.2797439,626.2271025,0,0.720839352,43.87617758,-0.720839352,136.1238224,0.980636417,0,719.9904645,116.2797439,796.0932313,9,11,11% +9/13/2018 20:00,34.2809921,177.8687038,837.8920516,877.2715134,113.0155845,848.9408218,733.0166899,115.9241318,109.6077476,6.316384212,206.5644655,0,206.5644655,3.407836855,203.1566287,0.598316183,3.104394518,0.20916074,-0.20916074,0.494385096,0.134880841,3.553489494,114.2924372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3591362,2.468966201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574491042,109.8622379,107.9336272,112.3312041,733.0166899,0,0.835564222,33.32536533,-0.835564222,146.6746347,0.990160195,0,833.737576,112.3312041,907.2561024,9,12,9% +9/13/2018 21:00,36.52805051,203.5716405,811.3007351,871.072709,111.3367106,894.0727354,779.9773098,114.0954256,107.979498,6.115927636,200.0664688,0,200.0664688,3.357212613,196.7092561,0.637534751,3.55299539,0.510548722,-0.510548722,0.442844716,0.137232355,3.176028424,102.1519916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7940006,2.43228911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301021781,98.1923799,106.0950224,100.624669,779.9773098,0,0.89542159,26.4373669,-0.89542159,153.5626331,0.994160381,0,881.5175623,100.624669,947.3743956,9,13,7% +9/13/2018 22:00,43.22238508,224.5902635,723.8084801,848.3081121,105.6454054,868.2741399,760.3579591,107.9161807,102.4598067,5.456374061,178.6813447,0,178.6813447,3.185598764,175.495746,0.75437293,3.919839566,0.848884184,-0.848884184,0.384985944,0.145957679,2.590424325,83.3169508,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.48826343,2.307955461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.876753605,80.08742223,100.365017,82.39537769,760.3579591,0,0.896322867,26.32114331,-0.896322867,153.6788567,0.99421653,0,856.3254685,82.39537769,910.2515953,9,14,6% +9/13/2018 23:00,52.64137788,240.3457807,581.9216793,801.2955678,95.69394949,768.8515628,671.6563675,97.19519526,92.80842384,4.386771423,143.979174,0,143.979174,2.88552565,141.0936484,0.918765367,4.194825216,1.291354022,-1.291354022,0.309319146,0.164444723,1.855156719,59.66821716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.21098714,2.090553511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.344054728,57.35535992,90.55504186,59.44591343,671.6563675,0,0.838213007,33.0481041,-0.838213007,146.9518959,0.990349291,0,755.7294493,59.44591343,794.6356108,9,15,5% +9/13/2018 0:00,63.49851966,252.5273443,396.9058878,709.1770552,80.45623901,595.2425614,514.2203306,81.02223079,78.03018655,2.992044236,98.66048016,0,98.66048016,2.426052458,96.23442771,1.108258238,4.407433609,2.003609115,-2.003609115,0.187516351,0.202708605,1.053839206,33.89509142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.00558334,1.757666747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763502917,32.58125113,75.76908625,34.33891788,514.2203306,0,0.725094427,43.52329638,-0.725094427,136.4767036,0.981043464,0,580.2415806,34.33891788,602.7157156,9,16,4% +9/13/2018 1:00,75.04254734,262.71454,187.2594494,509.5045634,55.75546268,343.2873567,287.8014861,55.4858706,54.07422977,1.411640829,47.08445445,0,47.08445445,1.681232916,45.40322153,1.30973953,4.585233716,3.651379926,-3.651379926,0,0.297744455,0.420308229,13.51855744,0.086147966,1,0.267314484,0,0.929347327,0.968109291,0.724496596,1,52.16919607,1.218047524,0.014158117,0.312029739,0.96063484,0.685131436,0.961238037,0.922476074,0.297942,12.99455162,52.46713807,14.21259914,263.0079735,0,0.564865375,55.60705678,-0.564865375,124.3929432,0.961483333,0,305.3449212,14.21259914,314.6467831,9,17,3% +9/13/2018 2:00,86.71199437,272.0269609,10.99522042,58.75534811,7.625305572,29.24296994,21.76470885,7.478261091,7.395374475,0.082886616,2.895849587,0,2.895849587,0.229931097,2.665918489,1.513409803,4.747766123,16.13601203,-16.13601203,0,0.693510933,0.057482774,1.848843619,0.690332191,1,0.061894024,0,0.955320905,0.994082868,0.724496596,1,7.15372497,0.166584297,0.088905915,0.312029739,0.778996957,0.503493553,0.961238037,0.922476074,0.03987479,1.77717881,7.19359976,1.943763108,6.739829697,0,0.370429409,68.25789755,-0.370429409,111.7421025,0.915021516,0,13.36068895,1.943763108,14.63284303,9,18,10% +9/13/2018 3:00,98.70066133,281.3213689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722651514,4.909984143,-5.582215929,5.582215929,0.515231164,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146664125,81.5663431,-0.146664125,98.4336569,0.709085002,0,0,0,0,9,19,0% +9/13/2018 4:00,110.0695496,291.4059895,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921076046,5.085993977,-2.05296602,2.05296602,0.881231556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08151329,94.67555502,0.08151329,85.32444498,0,0,0,0,0,9,20,0% +9/13/2018 5:00,120.6066622,303.2127611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104983355,5.292061015,-1.012323336,1.012323336,0.703271176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302153915,107.5870183,0.302153915,72.41298169,0,0.884521423,0,0,0,9,21,0% +9/13/2018 6:00,129.636152,317.8717167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262577681,5.547908055,-0.454745305,0.454745305,0.607919717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500223894,120.0148138,0.500223894,59.98518621,0,0.950044759,0,0,0,9,22,0% +9/13/2018 7:00,136.112144,336.3712915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375605065,5.870786546,-0.060880054,0.060880054,0.540564792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66222813,131.4700248,0.66222813,48.52997515,0,0.974497318,0,0,0,9,23,0% +9/14/2018 8:00,138.7527946,358.2457289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421693112,6.2525675,0.274548186,-0.274548186,0.483203185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777130075,140.9985537,0.777130075,39.00144634,0,0.985660706,0,0,0,9,0,0% +9/14/2018 9:00,136.8291289,20.4350953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388118812,0.356659696,0.608442805,-0.608442805,0.426103842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837103936,146.8355542,0.837103936,33.16444576,0,0.990270261,0,0,0,9,1,0% +9/14/2018 10:00,130.8877588,39.57766473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284422341,0.69076056,0.99591508,-0.99591508,0.35984218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838068129,146.9366776,0.838068129,33.06332243,0,0.990338979,0,0,0,9,2,0% +9/14/2018 11:00,122.1924708,54.81114427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132660937,0.956634934,1.532947845,-1.532947845,0.268004169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779963626,141.2572452,0.779963626,38.7427548,0,0.985894446,0,0,0,9,3,0% +9/14/2018 12:00,111.8506413,67.00765532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95216196,1.169504209,2.490383514,-2.490383514,0.104273026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666758269,131.8173568,0.666758269,48.18264324,0,0.975010304,0,0,0,9,4,0% +9/14/2018 13:00,100.591574,77.31759163,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755654166,1.349446544,5.304246395,-5.304246395,0,#DIV/0!,0,0,0.273744488,1,0.18634104,0,0.940711199,0.979473162,0.724496596,1,0,0,0.041454462,0.312029739,0.889176925,0.613673521,0.961238037,0.922476074,0,0,0,0,0,0,-0.506176665,120.4094932,0.506176665,59.59050677,0,0.951220259,0,0,0,9,5,0% +9/14/2018 14:00,88.53149465,86.70599076,1.673108486,10.25942937,1.4101855,1.380275802,0,1.380275802,1.367663204,0.012612598,3.560844288,3.112657469,0.448186819,0.042522296,0.405664523,1.545166073,1.51330502,-37.36142179,37.36142179,0,0.842853594,0.010630574,0.341915801,1,0.83106205,0,0.026759188,0.961238037,1,0.651415375,0.92691878,1.314649893,0.029678792,0.115824807,0.229071124,0.724496596,0.448993192,0.973652928,0.934890965,0.007701815,0.330668331,1.322351708,0.360347123,0,0.525845972,-0.303394795,107.661617,0.303394795,72.33838304,0,0.885198227,1.322351708,0.825825045,1.862837683,9,6,41% +9/14/2018 15:00,76.98934658,95.99237642,152.5488839,456.2782184,49.82595467,49.47349622,0,49.47349622,48.3235183,1.149977924,78.63229103,40.1426116,38.48967942,1.502436371,36.98724305,1.343717587,1.675383025,-3.890057224,3.890057224,0.804607346,0.326622873,0.998671942,32.12072258,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.45040386,1.088510037,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.723534423,30.87566032,47.17393828,31.96417035,0,40.1426116,-0.087978365,95.04731453,0.087978365,84.95268547,0,0.481678458,47.17393828,51.30000162,80.74876334,9,7,71% +9/14/2018 16:00,65.41468325,106.0139851,362.7137948,686.6679971,77.02710746,173.1509297,95.71218394,77.43874577,74.70445597,2.734289796,90.26681039,0,90.26681039,2.32265149,87.9441589,1.141701602,1.850293093,-1.767929835,1.767929835,0.832487497,0.212363325,2.37353036,76.34089534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8087646,1.682753098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.719614666,73.38177237,73.52837927,75.06452547,95.71218394,0,0.139386406,81.98765825,-0.139386406,98.01234175,0.69128496,0,139.6927726,75.06452547,188.8210032,9,8,35% +9/14/2018 17:00,54.45150755,117.8310024,552.6475824,790.0658251,93.30980855,378.7048424,284.042578,94.66226446,90.49617354,4.166090915,136.8094397,0,136.8094397,2.813635004,133.9958047,0.950358089,2.056538954,-0.939472534,0.939472534,0.690812955,0.168841431,3.095474449,99.5610989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9883642,2.038468983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242660701,95.70191525,89.2310249,97.74038423,284.042578,0,0.359517611,68.92942618,-0.359517611,111.0705738,0.910924755,0,347.9724405,97.74038423,411.9415672,9,9,18% +9/14/2018 18:00,44.79736138,132.929858,701.7141146,842.3716961,103.9644751,575.4382377,469.3188577,106.11938,100.8295626,5.289817401,173.2736238,0,173.2736238,3.134912513,170.1387112,0.781861452,2.320063696,-0.451873289,0.451873289,0.607428573,0.148157879,3.520855506,113.2428159,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.92121082,2.271233444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550847828,108.8533021,99.47205865,111.1245355,469.3188577,0,0.557139871,56.14176941,-0.557139871,123.8582306,0.960255929,0,550.1382744,111.1245355,622.8670604,9,10,13% +9/14/2018 19:00,37.64021016,153.0153833,797.8000732,868.243925,110.2713546,736.9731761,624.0127557,112.9604204,106.9462664,6.014153944,196.7609526,0,196.7609526,3.3250882,193.4358644,0.656945598,2.670622244,-0.093782829,0.093782829,0.546191498,0.138219284,3.662118075,117.7863058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8008192,2.409015082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.653192079,113.2206773,105.4540113,115.6296924,624.0127557,0,0.718706734,44.05219102,-0.718706734,135.947809,0.980430595,0,717.2552085,115.6296924,792.9325296,9,11,11% +9/14/2018 20:00,34.66197331,178.044326,833.6788141,876.7366043,112.5439445,845.9057222,730.4707699,115.4349524,109.1503293,6.284623048,205.5286956,0,205.5286956,3.39361517,202.1350805,0.60496556,3.107459703,0.21417891,-0.21417891,0.493526939,0.134996767,3.53132444,113.5795329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9194483,2.458662638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558432536,109.1769672,107.4778808,111.6356298,730.4707699,0,0.833170152,33.57422007,-0.833170152,146.4257799,0.989988249,0,830.635359,111.6356298,903.698646,9,12,9% +9/14/2018 21:00,36.92006136,203.5095331,806.7060369,870.4054036,110.8392162,890.596593,777.0182972,113.5782958,107.4970049,6.08129086,198.9374297,0,198.9374297,3.342211322,195.5952184,0.644376631,3.551911413,0.517298898,-0.517298898,0.441690368,0.137397281,3.152544791,101.3966773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.33021,2.421420726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284007969,97.46634301,105.6142179,99.88776374,777.0182972,0,0.892708494,26.78440663,-0.892708494,153.2155934,0.993990675,0,877.9631599,99.88776374,943.3377035,9,13,7% +9/14/2018 22:00,43.59084121,224.3880683,718.8398067,847.3560294,105.1150119,864.269526,756.9052014,107.3643246,101.9454065,5.418918102,177.460639,0,177.460639,3.169605443,174.2910336,0.760803703,3.916310594,0.858442982,-0.858442982,0.383351294,0.146228702,2.565982539,82.53081896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.99380239,2.296368353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.859045615,79.3317624,99.85284801,81.62813075,756.9052014,0,0.893255226,26.71480888,-0.893255226,153.2851911,0.994024957,0,852.235508,81.62813075,905.659487,9,14,6% +9/14/2018 23:00,52.9811441,240.0959505,576.6237109,799.7448916,95.11505037,764.2049125,667.6110987,96.59381376,92.24698066,4.346833099,142.6771643,0,142.6771643,2.868069706,139.8090946,0.924695406,4.190464857,1.30637338,-1.30637338,0.306750684,0.164951681,1.830465868,58.8740745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.6713066,2.077906739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32616629,56.5919998,89.99747289,58.66990654,667.6110987,0,0.834780073,33.4070552,-0.834780073,146.5929448,0.990103985,0,751.001882,58.66990654,789.4001624,9,15,5% +9/14/2018 0:00,63.81717323,252.2694236,391.3868972,706.2088405,79.78149886,589.7231495,509.3969174,80.32623206,77.37579231,2.950439753,97.30199109,0,97.30199109,2.405706553,94.89628454,1.113819792,4.402932044,2.032211754,-2.032211754,0.182625012,0.20384305,1.030415186,33.14169443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.3765547,1.742926208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.746532295,31.85705729,75.12308699,33.5999835,509.3969174,0,0.721312009,43.83709118,-0.721312009,136.1629088,0.980681869,0,574.6794082,33.5999835,596.6699254,9,16,4% +9/14/2018 1:00,75.34905692,262.4600101,181.8677883,502.4004758,54.7958005,336.2514772,281.7369761,54.51450115,53.14350494,1.370996209,45.74824642,0,45.74824642,1.65229556,44.09595086,1.315089131,4.580791331,3.735019823,-3.735019823,0,0.301294699,0.41307389,13.28587623,0.097938868,1,0.261600649,0,0.930195335,0.968957298,0.724496596,1,51.29203811,1.197082509,0.016010365,0.312029739,0.955600794,0.68009739,0.961238037,0.922476074,0.292076237,12.77088959,51.58411434,13.9679721,254.1439755,0,0.560781667,55.89012756,-0.560781667,124.1098724,0.96083874,0,295.7754916,13.9679721,304.9172499,9,17,3% +9/14/2018 2:00,87.00316793,271.7774011,8.905718907,48.60286339,6.364725189,24.04338299,17.80344268,6.239940312,6.172805241,0.067135071,2.351214604,0,2.351214604,0.191919948,2.159294656,1.51849174,4.743410482,17.73812381,-17.73812381,0,0.714678428,0.047979987,1.54320131,0.714550296,1,0.056316137,0,0.955891623,0.994653586,0.724496596,1,5.968832382,0.139045349,0.091228185,0.312029739,0.77406586,0.498562455,0.961238037,0.922476074,0.03336641,1.483383798,6.002198792,1.622429147,5.081987437,0,0.366304399,68.51212027,-0.366304399,111.4878797,0.913501503,0,10.64460195,1.622429147,11.70644938,9,18,10% +9/14/2018 3:00,99.01182301,281.0764464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72808231,4.905709439,-5.400385211,5.400385211,0.546326048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.142125407,81.82914687,-0.142125407,98.17085313,0.698198018,0,0,0,0,9,19,0% +9/14/2018 4:00,110.3945936,291.1682407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926749134,5.081844477,-2.024748939,2.024748939,0.876406151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08614086,94.94163197,0.08614086,85.05836803,0,0,0,0,0,9,20,0% +9/14/2018 5:00,120.9532123,302.9939106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111031796,5.288241354,-1.003585084,1.003585084,0.701776847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306774965,107.864982,0.306774965,72.13501801,0,0.88701408,0,0,0,9,21,0% +9/14/2018 6:00,130.0087829,317.7038224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269081317,5.544977747,-0.452003949,0.452003949,0.607450917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504743559,120.3143307,0.504743559,59.6856693,0,0.950939796,0,0,0,9,22,0% +9/14/2018 7:00,136.5046865,336.3166643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382456224,5.869833122,-0.060953457,0.060953457,0.540577345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666558572,131.8020062,0.666558572,48.19799385,0,0.974987837,0,0,0,9,23,0% +9/15/2018 8:00,139.1390335,358.3672127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428434252,6.254687793,0.272577849,-0.272577849,0.483540132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781196519,141.3702584,0.781196519,38.62974157,0,0.985995619,0,0,0,9,0,0% +9/15/2018 9:00,137.1736142,20.71680427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394131214,0.361576445,0.60461386,-0.60461386,0.42675863,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840849806,147.2299661,0.840849806,32.77003386,0,0.990536348,0,0,0,9,1,0% +9/15/2018 10:00,131.1744083,39.93692559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289425319,0.697030845,0.989514939,-0.989514939,0.360936669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841458933,147.2945015,0.841458933,32.70549849,0,0.990579394,0,0,0,9,2,0% +9/15/2018 11:00,122.427769,55.18583357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136767664,0.963174496,1.521739611,-1.521739611,0.26992089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782989322,141.5350956,0.782989322,38.46490437,0,0.986142169,0,0,0,9,3,0% +9/15/2018 12:00,112.0490452,67.37536559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955624762,1.175921964,2.466409798,-2.466409798,0.108372773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669433946,132.0233915,0.669433946,47.97660851,0,0.975310032,0,0,0,9,4,0% +9/15/2018 13:00,100.7673423,77.67712238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758721902,1.355721539,5.21133202,-5.21133202,0,#DIV/0!,0,0,0.265265886,1,0.189584998,0,0.940283409,0.979045372,0.724496596,1,0,0,0.040314051,0.312029739,0.892044873,0.616541469,0.961238037,0.922476074,0,0,0,0,0,0,-0.508541506,120.566729,0.508541506,59.43327104,0,0.951679609,0,0,0,9,5,0% +9/15/2018 14:00,88.68134832,87.06419824,1.315527877,8.297344843,1.12458289,1.100589571,0,1.100589571,1.090672566,0.009917005,2.88565399,2.532778702,0.352875288,0.033910323,0.318964964,1.547781513,1.51955692,-41.53011128,41.53011128,0,0.854852953,0.008477581,0.272668142,1,0.849220947,0,0.024074263,0.961238037,1,0.658494792,0.933998196,1.048395956,0.023738411,0.115824807,0.237095868,0.724496596,0.448993192,0.972515594,0.933753631,0.006141978,0.263580413,1.054537935,0.287318824,0,0.381889974,-0.30525171,107.773308,0.30525171,72.22669198,0,0.886200754,1.054537935,0.625750007,1.464078799,9,6,39% +9/15/2018 15:00,77.15624436,96.35882314,149.7221874,452.1175954,49.21954979,48.86406785,0,48.86406785,47.73539876,1.128669092,78.43401152,40.64798272,37.78602879,1.484151027,36.30187777,1.346630503,1.681778727,-3.930001118,3.930001118,0.797776538,0.328739184,0.97545826,31.37409076,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.88508099,1.075262367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.706716189,30.15796941,46.59179718,31.23323177,0,40.64798272,-0.089905775,95.15818641,0.089905775,84.84181359,0,0.493862198,46.59179718,51.30773386,80.17168284,9,7,72% +9/15/2018 16:00,65.59714777,106.3983587,359.5881242,685.0373278,76.56511402,171.1817734,94.21465285,76.96712051,74.25639334,2.710727171,89.49502456,0,89.49502456,2.308720683,87.18630388,1.144886209,1.857001677,-1.774181233,1.774181233,0.833556549,0.212924479,2.355612246,75.7645872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.37806976,1.672660276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706633054,72.82780306,73.08470281,74.50046334,94.21465285,0,0.137532145,82.09493285,-0.137532145,97.90506715,0.686448627,0,137.7582219,74.50046334,186.5172852,9,8,35% +9/15/2018 17:00,54.66473468,118.2385561,549.3167456,789.2023727,92.87378421,376.4715075,282.2572289,94.21427861,90.07329695,4.14098166,135.988692,0,135.988692,2.800487262,133.1882047,0.954079605,2.063652108,-0.939442248,0.939442248,0.690807776,0.16907146,3.077094552,98.96993823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58187913,2.028943488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.229344528,95.13366913,88.81122366,97.16261262,282.2572289,0,0.357648733,69.04413329,-0.357648733,110.9558667,0.910198023,0,345.7211953,97.16261262,409.312182,9,9,18% +9/15/2018 18:00,45.06009729,133.3468595,698.1250505,841.775076,103.524842,572.9885479,467.3226003,105.6659476,100.4031861,5.26276152,172.390157,0,172.390157,3.121655953,169.2685011,0.786447059,2.327341746,-0.449530235,0.449530235,0.607027887,0.148289826,3.50132394,112.6146136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.51136148,2.261629112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.536697276,108.2494501,99.04805876,110.5110792,467.3226003,0,0.555163266,56.27803914,-0.555163266,123.7219609,0.959936404,0,547.6480353,110.5110792,619.9753264,9,10,13% +9/15/2018 19:00,37.9677856,153.3746232,793.8926455,867.7234608,109.8169694,734.245152,621.7548713,112.4902807,106.5055826,5.984698104,195.7998501,0,195.7998501,3.311386808,192.4884633,0.662662868,2.676892165,-0.090038057,0.090038057,0.545551104,0.138327229,3.641172678,117.1126298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3772171,2.39908847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.63801721,112.5731143,105.0152343,114.9722028,621.7548713,0,0.716535739,44.23079966,-0.716535739,135.7692003,0.98021981,0,714.4716762,114.9722028,789.7186835,9,11,11% +9/15/2018 20:00,35.04415094,178.2172144,829.4091749,876.1840872,112.0686629,842.8153105,727.8734946,114.941816,108.6893793,6.252436704,204.4791407,0,204.4791407,3.379283677,201.099857,0.611635817,3.110477175,0.219258309,-0.219258309,0.492658311,0.135118668,3.508927776,112.8591791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4763655,2.44827952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542206229,108.4845358,107.0185718,110.9328153,727.8734946,0,0.830731242,33.82607238,-0.830731242,146.1739276,0.989812063,0,827.4765367,110.9328153,900.0798457,9,12,9% +9/15/2018 21:00,37.31311114,203.4485596,802.0549903,869.7180526,110.3379655,887.0596735,774.0025755,113.057098,107.0108687,6.046229306,197.794615,0,197.794615,3.327096763,194.4675183,0.651236644,3.550847224,0.524138075,-0.524138075,0.4405208,0.137569078,3.128850129,100.6345755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8629174,2.410470279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266841268,96.73378181,105.1297586,99.14425208,774.0025755,0,0.889946544,27.13346956,-0.889946544,152.8665304,0.99381685,0,874.3465603,99.14425208,939.2344904,9,13,7% +9/15/2018 22:00,43.96061707,224.1882187,713.8180379,846.3779486,104.5807073,860.2009825,753.3927075,106.808275,101.4272131,5.381061888,176.2269418,0,176.2269418,3.153494187,173.0734476,0.767257509,3.91282256,0.86814625,-0.86814625,0.381691937,0.146508916,2.541365656,81.73905539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.49569522,2.284695803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841210767,78.57068914,99.33690598,80.85538494,753.3927075,0,0.890137448,27.10947634,-0.890137448,152.8905237,0.9938289,0,848.0803514,80.85538494,900.9985838,9,14,6% +9/15/2018 23:00,53.32233294,239.8478279,571.2792399,798.1540796,94.5317652,759.4921639,663.504336,95.98782791,91.68128369,4.30654422,141.3637473,0,141.3637473,2.850481506,138.5132658,0.930650275,4.186134301,1.321672392,-1.321672392,0.304134399,0.165473832,1.805656245,58.07611174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12753715,2.065164148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308191803,55.82496764,89.43572895,57.89013179,663.504336,0,0.831298559,33.76763664,-0.831298559,146.2323634,0.989853138,0,746.2075777,57.89013179,784.0955112,9,15,5% +9/15/2018 0:00,64.13712992,252.0123524,385.8324892,703.1610461,79.10045811,584.1316149,504.5077592,79.62385573,76.71528745,2.90856828,95.93472468,0,95.93472468,2.385170662,93.54955402,1.11940409,4.398445304,2.061547582,-2.061547582,0.17760829,0.205012435,1.006971983,32.38768042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7416523,1.728048025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729547774,31.13227034,74.47120007,32.86031837,504.5077592,0,0.717485364,44.1527442,-0.717485364,135.8472558,0.980312167,0,569.0462949,32.86031837,590.5527161,9,16,4% +9/15/2018 1:00,75.65661483,262.2056309,176.4680059,495.0793754,53.82065833,329.1194841,275.5914268,53.52805728,52.19776691,1.330290368,44.40960252,0,44.40960252,1.622891426,42.78671109,1.32045703,4.576351576,3.822378698,-3.822378698,0,0.304988194,0.405722856,13.04944173,0.109933506,1,0.255882258,0,0.931037115,0.969799078,0.724496596,1,50.3989191,1.175779314,0.017874484,0.312029739,0.950561626,0.675058222,0.961238037,0.922476074,0.2861747,12.54361975,50.6850938,13.71939906,245.294695,0,0.556661094,56.17479679,-0.556661094,123.8252032,0.960178742,0,286.2118454,13.71939906,295.1909177,9,17,3% +9/15/2018 2:00,87.29352242,271.5274175,7.045013642,39.28610321,5.189948209,19.31513595,14.22857554,5.08656041,5.033452121,0.053108289,1.864641209,0,1.864641209,0.156496087,1.708145122,1.523559382,4.739047445,19.67845485,-19.67845485,0,0.736683912,0.039124022,1.25836303,0.739247906,1,0.050773323,0,0.956451451,0.995213414,0.724496596,1,4.865127011,0.113380883,0.093555047,0.312029739,0.769168373,0.493664969,0.961238037,0.922476074,0.027282365,1.209586409,4.892409376,1.322967291,3.710130867,0,0.362178337,68.76596442,-0.362178337,111.2340356,0.911946464,0,8.275850103,1.322967291,9.141705736,9,18,10% +9/15/2018 3:00,99.32364539,280.8305621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733524637,4.90141795,-5.230151685,5.230151685,0.575437696,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137567589,82.09288257,-0.137567589,97.90711743,0.686542295,0,0,0,0,9,19,0% +9/15/2018 4:00,110.7201612,290.9289708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932431361,5.07766843,-1.997305996,1.997305996,0.871713131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090776811,95.20829802,0.090776811,84.79170198,0,0.49919854,0,0,0,9,20,0% +9/15/2018 5:00,121.3002784,302.7730075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117089241,5.284385867,-0.994997033,0.994997033,0.700308204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31139372,108.1432426,0.31139372,71.85675739,0,0.889431572,0,0,0,9,21,0% +9/15/2018 6:00,130.3821031,317.5337657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275596985,5.542009697,-0.449295959,0.449295959,0.606987824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509251026,120.6139538,0.509251026,59.38604617,0,0.951816594,0,0,0,9,22,0% +9/15/2018 7:00,136.8981632,336.2612165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389323687,5.868865374,-0.061024285,0.061024285,0.540589457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670868369,132.1341213,0.670868369,47.86587866,0,0.975469731,0,0,0,9,23,0% +9/16/2018 8:00,139.526061,358.4910144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435189156,6.256848539,0.270627361,-0.270627361,0.483873685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785235905,141.7425019,0.785235905,38.25749814,0,0.986324868,0,0,0,9,0,0% +9/16/2018 9:00,137.5181913,21.00296883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40014522,0.366570959,0.600820065,-0.600820065,0.427407407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844564682,147.6253251,0.844564682,32.37467491,0,0.990797903,0,0,0,9,1,0% +9/16/2018 10:00,131.4605671,40.30027368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294419732,0.703372465,0.983174642,-0.983174642,0.362020924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844817551,147.6523932,0.844817551,32.34760675,0,0.990815624,0,0,0,9,2,0% +9/16/2018 11:00,122.6624565,55.56342263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140863734,0.969764669,1.510652164,-1.510652164,0.271816955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785984465,141.8118211,0.785984465,38.18817888,0,0.986385511,0,0,0,9,3,0% +9/16/2018 12:00,112.2470393,67.74501439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959080411,1.182373553,2.44279292,-2.44279292,0.112411497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672083417,132.2280683,0.672083417,47.77193168,0,0.975604473,0,0,0,9,4,0% +9/16/2018 13:00,100.9430561,78.03794763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761788685,1.362019128,5.121180759,-5.121180759,0,#DIV/0!,0,0,0.256848033,1,0.192840935,0,0.939851699,0.978613662,0.724496596,1,0,0,0.039173685,0.312029739,0.894922979,0.619419575,0.961238037,0.922476074,0,0,0,0,0,0,-0.510886899,120.7229237,0.510886899,59.27707626,0,0.95213098,0,0,0,9,5,0% +9/16/2018 14:00,88.83040613,87.42323443,1.015005443,6.65610746,0.879142002,0.860284166,0,0.860284166,0.852632627,0.00765154,2.316560432,2.043951236,0.272609196,0.026509375,0.246099821,1.550383063,1.525823284,-46.73365606,46.73365606,0,0.86614511,0.006627344,0.213158157,1,0.86705804,0,0.02139459,0.961238037,1,0.66561683,0.941120234,0.819582912,0.018616018,0.115824807,0.245171875,0.724496596,0.448993192,0.971357034,0.93259507,0.004801488,0.205954251,0.8243844,0.224570269,0,0.271726883,-0.307079062,107.8832891,0.307079062,72.11671092,0,0.887175483,0.8243844,0.465639698,1.12913627,9,6,37% +9/16/2018 15:00,77.32396592,96.72565922,146.9693217,448.4579459,48.56054671,48.20418388,0,48.20418388,47.09626705,1.107916827,78.28151349,41.18282023,37.09869326,1.464279653,35.63441361,1.349557796,1.688181224,-3.971052359,3.971052359,0.790756362,0.330412811,0.95269008,30.64178783,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.27072329,1.060865624,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.69022072,29.45405198,45.96094401,30.5149176,0,41.18282023,-0.091832067,95.26901336,0.091832067,84.73098664,0,0.505527883,45.96094401,51.33398155,79.55800825,9,7,73% +9/16/2018 16:00,65.7809547,106.7825341,356.5443806,683.8564051,76.00856421,169.1818367,92.77742896,76.4044077,73.71662556,2.687782146,88.74025165,0,88.74025165,2.291938653,86.448313,1.148094245,1.863706804,-1.780531172,1.780531172,0.834642453,0.213181215,2.338084421,75.2008321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85922443,1.660501752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693934204,72.28590022,72.55315864,73.94640197,92.77742896,0,0.135667997,82.2027513,-0.135667997,97.7972487,0.681453246,0,135.7766388,73.94640197,184.17308,9,8,36% +9/16/2018 17:00,54.87977555,118.6449233,546.0672573,788.717958,92.32254094,374.248927,280.5937657,93.65516134,89.5386757,4.116485645,135.1841939,0,135.1841939,2.783865243,132.4003287,0.957832776,2.070744553,-0.939409453,0.939409453,0.690802167,0.169068077,3.058868481,98.38372513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06798085,2.016900892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216139801,94.5701788,88.28412065,96.58707969,280.5937657,0,0.355759322,69.16001138,-0.355759322,110.8399886,0.909455545,0,343.4716767,96.58707969,406.6859887,9,9,18% +9/16/2018 18:00,45.32490941,133.7610383,694.6140549,841.5119087,102.9591366,570.5784792,465.4876463,105.0908329,99.8545388,5.236294152,171.5218174,0,171.5218174,3.104597849,168.4172196,0.791068902,2.33457053,-0.447158794,0.447158794,0.606622347,0.148224954,3.481772901,111.985785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98398084,2.249270573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522532615,107.6449962,98.50651346,109.8942667,465.4876463,0,0.553156339,56.41617838,-0.553156339,123.5838216,0.959609641,0,545.1929466,109.8942667,617.1165463,9,10,13% +9/16/2018 19:00,38.29716418,153.7294891,790.0600836,867.5114114,109.2310163,731.5791863,619.6860816,111.8931047,105.9372981,5.955806633,194.8529324,0,194.8529324,3.29371816,191.5592143,0.668411609,2.683085741,-0.086250132,0.086250132,0.544903331,0.138256594,3.620078914,116.4341818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8309605,2.386287594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62273485,111.9209643,104.4536953,114.3072519,619.6860816,0,0.714326144,44.41199857,-0.714326144,135.5880014,0.980003962,0,711.7485104,114.3072519,786.5603206,9,11,11% +9/16/2018 20:00,35.42742681,178.3872925,825.212501,875.9307761,111.4599513,839.8073285,725.4875055,114.3198229,108.0990225,6.220800404,203.4432536,0,203.4432536,3.360928776,200.0823248,0.618325243,3.113445597,0.224397864,-0.224397864,0.491779395,0.135068181,3.486284772,112.1309023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9088922,2.434981457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525801449,107.7844884,106.4346937,110.2194698,725.4875055,0,0.828247534,34.08086398,-0.828247534,145.919136,0.989631574,0,824.4000356,110.2194698,896.5364743,9,12,9% +9/16/2018 21:00,37.70708145,203.3886001,797.4767581,869.334507,109.704549,883.6263034,771.2180347,112.4082687,106.396552,6.011716658,196.6654698,0,196.6654698,3.307996918,193.3574729,0.658112723,3.549800733,0.531065467,-0.531065467,0.439336146,0.137564572,3.104833003,99.86210217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2724128,2.396632506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249440941,95.99125105,104.5218538,98.38788355,771.2180347,0,0.887136112,27.48445078,-0.887136112,152.5155492,0.993638863,0,870.8340649,98.38788355,935.2269669,9,13,7% +9/16/2018 22:00,44.33157802,223.9906332,708.870555,845.7222072,103.918948,856.2596338,750.1304598,106.129174,100.7854083,5.343765672,175.0074128,0,175.0074128,3.133539702,171.8738731,0.773731999,3.909374042,0.877993963,-0.877993963,0.380007879,0.146597919,2.51636554,80.93496573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87876802,2.270238847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823098268,77.79776757,98.70186628,80.06800642,750.1304598,0,0.886970276,27.50503205,-0.886970276,152.4949679,0.993628325,0,844.0527387,80.06800642,896.4556476,9,14,6% +9/16/2018 23:00,53.66480726,239.6013846,566.0114271,796.9189313,93.83051176,754.9332675,659.6652587,95.26800885,91.00117563,4.266833222,140.0653597,0,140.0653597,2.829336127,137.2360236,0.936627579,4.181833053,1.337253927,-1.337253927,0.3014698,0.165774942,1.78041554,57.2642839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.47379141,2.049844393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.289904998,55.04460784,88.76369641,57.09445223,659.6652587,0,0.827769592,34.12970173,-0.827769592,145.8702983,0.989596718,0,741.5662714,57.09445223,778.9334485,9,15,5% +9/16/2018 0:00,64.45825467,251.756129,380.3567296,700.5098813,78.31886458,578.7196084,499.8950569,78.82455154,75.95726185,2.867289691,94.58349544,0,94.58349544,2.361602733,92.22189271,1.125008774,4.393973363,2.091635607,-2.091635607,0.172462935,0.205908976,0.983079643,31.61922064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.01300926,1.710973141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.712237855,30.39359758,73.72524712,32.10457072,499.8950569,0,0.713615996,44.47011043,-0.713615996,135.5298896,0.979934306,0,563.5895628,32.10457072,584.6013622,9,16,4% +9/16/2018 1:00,75.96508499,261.9514098,171.1520858,488.1213271,52.77625427,322.1648094,269.6897372,52.4750722,51.18485548,1.290216718,43.08920352,0,43.08920352,1.59139879,41.49780473,1.32584085,4.571914581,3.913679933,-3.913679933,0,0.308358814,0.397849697,12.79621387,0.122133213,1,0.250161536,0,0.931872301,0.970634264,0.724496596,1,49.43945913,1.152963006,0.019749965,0.312029739,0.945519238,0.670015834,0.961238037,0.922476074,0.27995249,12.3002075,49.71941162,13.45317051,236.751663,0,0.55250554,56.46092616,-0.55250554,123.5390738,0.95950317,0,276.8833827,13.45317051,285.6882138,9,17,3% +9/16/2018 2:00,87.58265714,271.2770168,5.432559181,31.07760898,4.12176542,15.16601192,11.12758001,4.038431911,3.997478985,0.040952926,1.441473305,0,1.441473305,0.124286435,1.31718687,1.528605735,4.734677128,22.07325971,-22.07325971,0,0.758715236,0.031071609,0.999369746,0.76440632,1,0.045272729,0,0.956999804,0.995761767,0.724496596,1,3.862091877,0.090045099,0.095883455,0.312029739,0.764311109,0.488807704,0.961238037,0.922476074,0.021731615,0.960632213,3.883823492,1.050677312,2.621587523,0,0.35805779,69.01903389,-0.35805779,110.9809661,0.910357737,0,6.270405978,1.050677312,6.958053265,9,18,11% +9/16/2018 3:00,99.63599283,280.5837152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738976128,4.897109658,-5.070494503,5.070494503,0.602740682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132992973,82.3574208,-0.132992973,97.6425792,0.674040286,0,0,0,0,9,19,0% +9/16/2018 4:00,111.0461139,290.6881622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938120309,5.073465528,-1.970616374,1.970616374,0.867148937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095418739,95.47542128,0.095418739,84.52457872,0,0.525993914,0,0,0,9,20,0% +9/16/2018 5:00,121.6477202,302.550004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123153244,5.280493722,-0.986559678,0.986559678,0.698865331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316007774,108.4216629,0.316007774,71.5783371,0,0.891776044,0,0,0,9,21,0% +9/16/2018 6:00,130.7559777,317.361457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282122328,5.539002343,-0.446623098,0.446623098,0.606530738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513743991,120.9135385,0.513743991,59.08646147,0,0.952675261,0,0,0,9,22,0% +9/16/2018 7:00,137.2924552,336.2048408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.396205381,5.867881433,-0.061094143,0.061094143,0.540601403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675155412,132.46622,0.675155412,47.53378003,0,0.975942977,0,0,0,9,23,0% +9/17/2018 8:00,139.9137759,358.6170705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441956058,6.259048635,0.268695291,-0.268695291,0.484204089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789246401,142.1151422,0.789246401,37.8848578,0,0.986648428,0,0,0,9,0,0% +9/17/2018 9:00,137.8627721,21.29353461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406159289,0.371642288,0.597059977,-0.597059977,0.42805042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848247069,148.0215197,0.848247069,31.97848026,0,0.99105491,0,0,0,9,1,0% +9/17/2018 10:00,131.7461703,40.66761088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299404449,0.709783709,0.976892388,-0.976892388,0.363095252,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848142866,148.0102481,0.848142866,31.98975186,0,0.991047668,0,0,0,9,2,0% +9/17/2018 11:00,122.8964967,55.94378923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144948506,0.976403318,1.499682297,-1.499682297,0.273692913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78894833,142.0873396,0.78894833,37.9126604,0,0.986624493,0,0,0,9,3,0% +9/17/2018 12:00,112.444609,68.11647648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962528653,1.188856789,2.419522473,-2.419522473,0.116390978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674706333,132.4313494,0.674706333,47.56865058,0,0.975893685,0,0,0,9,4,0% +9/17/2018 13:00,101.118715,78.3999441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764854512,1.368337158,5.033660323,-5.033660323,0,#DIV/0!,0,0,0.248489232,1,0.196109259,0,0.939415991,0.978177954,0.724496596,1,0,0,0.038033224,0.312029739,0.897811594,0.62230819,0.961238037,0.922476074,0,0,0,0,0,0,-0.51321283,120.8780727,0.51321283,59.12192728,0,0.952574532,0,0,0,9,5,0% +9/17/2018 14:00,88.97859102,87.78297521,0.763280099,5.255232788,0.66960029,0.655163299,0,0.655163299,0.649409371,0.005753928,1.828471086,1.62321407,0.205257016,0.020190919,0.185066097,1.552969377,1.532101945,-53.40898603,53.40898603,0,0.8772668,0.00504773,0.162352343,1,0.884574918,0,0.018721254,0.961238037,1,0.672778196,0.9482816,0.624236989,0.014226082,0.115824807,0.25329534,0.724496596,0.448993192,0.970177611,0.931415648,0.003657063,0.156784227,0.627894052,0.171010309,0,0.187359618,-0.308875769,107.9914922,0.308875769,72.00850781,0,0.888122621,0.627894052,0.337408623,0.848721248,9,6,35% +9/17/2018 15:00,77.49251887,97.09275402,144.2060347,444.7096188,47.89656785,47.53939561,0,47.53939561,46.45230961,1.087086003,78.10361977,41.69493885,36.40868092,1.44425824,34.96442268,1.3524996,1.694588238,-4.013270385,4.013270385,0.783536654,0.33213983,0.929928972,29.90971235,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.65172689,1.046360179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.673730375,28.75035318,45.32545727,29.79671336,0,41.69493885,-0.093757673,95.37982054,0.093757673,84.62017946,0,0.516710312,45.32545727,51.34091822,78.92706142,9,7,74% +9/17/2018 16:00,65.96610655,107.166368,353.4723887,682.6396684,75.44896487,167.1712224,91.33269803,75.83852437,73.1739002,2.664624173,87.97853766,0,87.97853766,2.275064668,85.70347299,1.151325754,1.870405969,-1.786986606,1.786986606,0.835746397,0.213450802,2.320371945,74.63113796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33753618,1.648276607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101575,71.73828854,72.01863775,73.38656515,91.33269803,0,0.133793423,82.31114481,-0.133793423,97.68885519,0.676289553,0,133.7859873,73.38656515,181.8160264,9,8,36% +9/17/2018 17:00,55.09661658,119.049945,542.7788083,788.2120993,91.76833489,372.0008151,278.9079382,93.09287693,89.00118101,4.091695928,134.37016,0,134.37016,2.767153886,131.6030062,0.961617366,2.077813515,-0.939376932,0.939376932,0.690796606,0.16907133,3.040433003,97.79077681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55132051,2.004793571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.202783361,94.00021432,87.75410387,96.00500789,278.9079382,0,0.353848841,69.27709098,-0.353848841,110.722909,0.908696725,0,341.196834,96.00500789,404.0301915,9,9,18% +9/17/2018 18:00,45.59175504,134.1722372,691.0561073,841.2321993,102.3902923,568.1310853,463.6187652,104.51232,99.30284721,5.20947284,170.6419991,0,170.6419991,3.087445093,167.554554,0.795726237,2.341747304,-0.444760749,0.444760749,0.606212257,0.148164948,3.461995797,111.3496854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4536739,2.23684346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.50820417,107.033553,97.96187807,109.2703964,463.6187652,0,0.551118663,56.55620816,-0.551118663,123.4437918,0.959275437,0,542.6999716,109.2703964,614.2152606,9,10,13% +9/17/2018 19:00,38.62826872,154.079876,786.1752965,867.2844846,108.6417586,728.866296,617.5739658,111.2923302,105.3658088,5.926521467,193.8932525,0,193.8932525,3.275949868,190.6173027,0.674190473,2.689201147,-0.082420448,0.082420448,0.544248416,0.138190247,3.598754758,115.7483237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2816232,2.373414528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.607285572,111.2616914,103.8889087,113.6351059,617.5739658,0,0.712077728,44.59578254,-0.712077728,135.4042175,0.979782946,0,708.9773486,113.6351059,783.3492527,9,11,10% +9/17/2018 20:00,35.81170275,178.5544818,820.9613077,875.662414,110.8478437,836.7453012,723.0511758,113.6941253,107.5053722,6.188753113,202.3940453,0,202.3940453,3.342471473,199.0515738,0.625032124,3.116363602,0.22959641,-0.22959641,0.490890391,0.135022007,3.463420522,111.3955094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.338253,2.421609204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509236378,107.0776008,105.8474893,109.49921,723.0511758,0,0.825719095,34.33853564,-0.825719095,145.6614644,0.989446719,0,821.2681033,109.49921,892.9331462,9,12,9% +9/17/2018 21:00,38.10185348,203.3295326,792.844854,868.9338486,109.0677216,880.134473,768.3787462,111.7557268,105.7789274,5.976799408,195.5232083,0,195.5232083,3.288794225,192.2344141,0.665002794,3.54876981,0.538080188,-0.538080188,0.438136558,0.137565024,3.080617632,99.08325259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6787285,2.38272022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.231896987,95.2425912,103.9106255,97.62531142,768.3787462,0,0.884277609,27.83724567,-0.884277609,152.1627543,0.993456671,0,867.2616166,97.62531142,931.1554304,9,13,7% +9/17/2018 22:00,44.70358829,223.7952256,703.8734243,845.0440554,103.2537813,852.2578854,746.8114914,105.446394,100.1402988,5.30609519,173.7757434,0,173.7757434,3.113482471,170.6622609,0.780224803,3.905963537,0.887985972,-0.887985972,0.378299145,0.146693678,2.491204952,80.1257147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.25866422,2.255707451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804869507,77.0198847,98.06353373,79.27559215,746.8114914,0,0.883754506,27.90136211,-0.883754506,152.0986379,0.993423202,0,839.9633969,79.27559215,891.8476865,9,14,6% +9/17/2018 23:00,54.00842797,239.356587,560.7012304,795.6481927,93.12564631,750.3131239,655.7687567,94.54436719,90.31756447,4.226802716,138.7565867,0,138.7565867,2.808081833,135.9485049,0.942624892,4.17756053,1.353120734,-1.353120734,0.298756416,0.166087822,1.755071773,56.44914123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.81667837,2.034445729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.271543525,54.2610617,88.08822189,56.29550742,655.7687567,0,0.824194365,34.49310293,-0.824194365,145.5068971,0.989334698,0,736.8630068,56.29550742,773.7072905,9,15,5% +9/17/2018 0:00,64.78040999,251.5007476,374.8501794,697.7841936,77.53226405,573.2414257,495.2212665,78.02015922,75.19438023,2.82577899,93.22464969,0,93.22464969,2.337883825,90.88676587,1.130631445,4.389516117,2.122495236,-2.122495236,0.167185627,0.206835339,0.959185445,30.8507011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.27969843,1.693788873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69492659,29.65486736,72.97462502,31.34865624,495.2212665,0,0.709705481,44.78904253,-0.709705481,135.2109575,0.97954824,0,558.0677451,31.34865624,578.5848137,9,16,4% +9/17/2018 1:00,76.27432855,261.6973507,165.8339138,480.9439899,51.71868558,315.1190492,263.7097468,51.40930248,50.15917639,1.250126091,41.76786156,0,41.76786156,1.559509192,40.20835237,1.331238168,4.567480413,4.009164352,-4.009164352,0,0.311870379,0.389877298,12.5397941,0.134539169,1,0.244440744,0,0.932700531,0.971462494,0.724496596,1,48.46617838,1.129859101,0.021636275,0.312029739,0.940475571,0.664972167,0.961238037,0.922476074,0.273708743,12.05372706,48.73988713,13.18358616,228.2304565,0,0.548316961,56.74837412,-0.548316961,123.2516259,0.958811867,0,267.5699572,13.18358616,276.1983507,9,17,3% +9/17/2018 2:00,87.87012288,271.0262029,4.054915725,23.85549649,3.168330786,11.54701857,8.443656975,3.10336159,3.072793923,0.030567668,1.078698127,0,1.078698127,0.095536863,0.983161264,1.533622958,4.7302996,25.09824872,-25.09824872,0,0.78135552,0.023884216,0.768198481,0.789999773,1,0.039822354,0,0.957536048,0.996298011,0.724496596,1,2.967323557,0.069216132,0.098209892,0.312029739,0.759501417,0.483998013,0.961238037,0.922476074,0.016758256,0.7384216,2.984081812,0.807637732,1.773169879,0,0.353950167,69.27088372,-0.353950167,110.7291163,0.908737177,0,4.595427202,0.807637732,5.124009944,9,18,12% +9/17/2018 3:00,99.94872722,280.335902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744434373,4.892784502,-4.92051009,4.92051009,0.628389527,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.128403923,82.62262916,-0.128403923,97.37737084,0.660603797,0,0,0,0,9,19,0% +9/17/2018 4:00,111.3723107,290.4457947,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943813516,5.069235415,-1.944660127,1.944660127,0.862710157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100064193,95.74286703,0.100064193,84.25713297,0,0.550320761,0,0,0,9,20,0% +9/17/2018 5:00,121.9953955,302.324849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129221323,5.276564025,-0.978273522,0.978273522,0.697448315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320614693,108.700103,0.320614693,71.29989704,0,0.894049567,0,0,0,9,21,0% +9/17/2018 6:00,131.1302699,317.1868014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288654959,5.535954029,-0.443987152,0.443987152,0.606079964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518220139,121.2129375,0.518220139,58.78706249,0,0.953515907,0,0,0,9,22,0% +9/17/2018 7:00,137.6874431,336.1474221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40309922,5.866879287,-0.061164675,0.061164675,0.540613465,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679417599,132.7981489,0.679417599,47.20185108,0,0.976407558,0,0,0,9,23,0% +9/18/2018 8:00,140.3020779,358.7453101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448733207,6.261286838,0.266780148,-0.266780148,0.484531597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793226201,142.4880355,0.793226201,37.51196453,0,0.986966278,0,0,0,9,0,0% +9/18/2018 9:00,138.2072708,21.58844022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412171925,0.376789362,0.593332085,-0.593332085,0.428687927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851895516,148.4184386,0.851895516,31.58156142,0,0.991307356,0,0,0,9,1,0% +9/18/2018 10:00,132.0311569,41.0388329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304378403,0.716262755,0.970666288,-0.970666288,0.364159978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851433818,148.3679634,0.851433818,31.63203658,0,0.99127553,0,0,0,9,2,0% +9/18/2018 11:00,123.1298569,56.32680691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14902141,0.983088238,1.488826707,-1.488826707,0.275549328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791880255,142.3615731,0.791880255,37.6384269,0,0.98685914,0,0,0,9,3,0% +9/18/2018 12:00,112.6417437,68.48962388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965969302,1.19536944,2.396588077,-2.396588077,0.120312991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677302414,132.6332021,0.677302414,47.36679792,0,0.976177732,0,0,0,9,4,0% +9/18/2018 13:00,101.2943225,78.76298658,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76791944,1.374673445,4.948645491,-4.948645491,0,#DIV/0!,0,0,0.240187706,1,0.199390432,0,0.938976202,0.977738165,0.724496596,1,0,0,0.036892512,0.312029739,0.900711115,0.625207711,0.961238037,0.922476074,0,0,0,0,0,0,-0.515519357,121.0321758,0.515519357,58.96782418,0,0.953010431,0,0,0,9,5,0% +9/18/2018 14:00,89.12583219,88.14329498,0.556419865,4.079154319,0.494186187,0.483479179,0,0.483479179,0.479284651,0.004194528,1.416964061,1.267152086,0.149811975,0.014901537,0.134910438,1.55553922,1.538390711,-62.27963106,62.27963106,0,0.888153387,0.003725384,0.119821163,1,0.901773942,0,0.016055234,0.961238037,1,0.679975778,0.955479182,0.460706637,0.010535944,0.115824807,0.26146263,0.724496596,0.448993192,0.968977696,0.930215733,0.002699028,0.115647823,0.463405665,0.126183767,0,0.124467355,-0.31064088,108.0978571,0.31064088,71.90214289,0,0.889042434,0.463405665,0.236840527,0.618413053,9,6,33% +9/18/2018 15:00,77.66191287,97.45997573,141.4324897,440.8699016,47.22748585,46.86958075,0,46.86958075,45.8034029,1.066177849,77.89981689,42.18378936,35.71602754,1.424082949,34.29194459,1.355456083,1.700997465,-4.056719433,4.056719433,0.77610643,0.333922467,0.907178238,29.17797053,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.02797309,1.031743249,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.657247545,28.04697511,44.68522063,29.07871836,0,42.18378936,-0.095683078,95.49063642,0.095683078,84.50936358,0,0.527441562,44.68522063,51.3282021,78.27850235,9,7,75% +9/18/2018 16:00,66.15260715,107.5497158,350.3720615,681.3861807,74.88628129,165.1496133,89.88017706,75.26943621,72.62818361,2.641252597,87.20986045,0,87.20986045,2.258097682,84.95176277,1.154580804,1.877096651,-1.793555017,1.793555017,0.836869662,0.213733598,2.302475227,74.05551801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81297264,1.635984084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.668135464,71.18498075,71.4811081,72.82096483,89.88017706,0,0.131907837,82.42014716,-0.131907837,97.57985284,0.670947464,0,131.785985,72.82096483,179.44585,9,8,36% +9/18/2018 17:00,55.31524468,119.4534621,539.4514506,787.6844122,91.21116385,369.7267456,277.199322,92.52742363,88.46081073,4.0666129,133.5466029,0,133.5466029,2.750353123,130.7962498,0.965433146,2.084856216,-0.93934767,0.93934767,0.690791602,0.169081321,3.02179011,97.19115729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03189604,1.992621475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189276648,93.42383723,87.22117269,95.41645871,277.199322,0,0.351916729,69.39540427,-0.351916729,110.6045957,0.907920935,0,338.8962402,95.41645871,401.3444041,9,9,18% +9/18/2018 18:00,45.86059128,134.5803004,687.451524,840.9357727,101.8183288,565.6460515,461.715621,103.9304305,98.74813052,5.182299969,169.7507793,0,169.7507793,3.070198283,166.680581,0.800418315,2.34886935,-0.442337999,0.442337999,0.605797942,0.148109831,3.441996278,110.7064321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.92045913,2.224348205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.493714587,106.4152335,97.41417371,108.6395817,461.715621,0,0.549049804,56.69815007,-0.549049804,123.3018499,0.95893358,0,540.1687871,108.6395817,611.2712205,9,10,13% +9/18/2018 19:00,38.96102187,154.4256807,782.2389484,867.0426115,108.0492382,726.1064192,615.4184167,110.6880026,104.791155,5.896847612,192.9209727,0,192.9209727,3.25808319,189.6628895,0.679998112,2.695236578,-0.078550488,0.078550488,0.543586614,0.138128175,3.577205623,115.0552294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7292441,2.36047018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.591673297,110.5954628,103.3209174,112.955933,615.4184167,0,0.709790278,44.78214563,-0.709790278,135.2178544,0.979556657,0,706.1581243,112.955933,780.0855233,9,11,10% +9/18/2018 20:00,36.19688055,178.7187033,816.6566616,875.3789978,110.2324053,833.6295262,720.5647317,113.0647945,106.9084916,6.156302873,201.3317763,0,201.3317763,3.323913735,198.0078625,0.631754745,3.119229807,0.234852695,-0.234852695,0.489991513,0.134980109,3.440342215,110.6532317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7645086,2.408164186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492516223,106.3640952,105.2570248,108.7722594,720.5647317,0,0.823146013,34.59902688,-0.823146013,145.4009731,0.989257435,0,818.0810432,108.7722594,889.2703116,9,12,9% +9/18/2018 21:00,38.49730819,203.2712334,788.1607729,868.5161187,108.427574,876.5849148,765.4853434,111.0995714,105.1580825,5.941488827,194.3681958,0,194.3681958,3.26949141,191.0987044,0.671904781,3.547752298,0.545181257,-0.545181257,0.436922204,0.137570376,3.056212896,98.2983124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0819488,2.368735397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.21421584,94.48807684,103.2961647,96.85681224,765.4853434,0,0.881371488,28.19174974,-0.881371488,151.8082503,0.993270232,0,863.6299694,96.85681224,927.0208158,9,13,7% +9/18/2018 22:00,45.07651132,223.6019062,698.8285657,844.3435469,102.5853235,848.1969441,743.4368817,104.7600624,99.49199748,5.268064914,172.5324025,0,172.5324025,3.093326003,169.4390765,0.786733538,3.902589478,0.898122014,-0.898122014,0.37656578,0.146796122,2.465894293,79.31163691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.63549234,2.241104159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786532021,76.23736217,97.42202436,78.47846633,743.4368817,0,0.880490985,28.29835247,-0.880490985,151.7016475,0.993213502,0,835.8135728,78.47846633,887.1761594,9,14,6% +9/18/2018 23:00,54.35305452,239.1133975,555.3509692,794.3418066,92.41730886,745.6333934,651.8163372,93.8170562,89.63058602,4.186470187,137.437995,0,137.437995,2.786722846,134.6512721,0.94863976,4.173316072,1.36927545,-1.36927545,0.295993797,0.166412438,1.729636748,55.63106341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.15632854,2.018971215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253115936,53.47469418,87.40944448,55.49366539,651.8163372,0,0.82057413,34.85769223,-0.82057413,145.1423078,0.989067053,0,732.0995082,55.49366539,768.4190023,9,15,5% +9/18/2018 0:00,65.1034565,251.2461985,369.3155645,694.9831603,76.74079402,567.6989911,490.4881584,77.21083267,74.42677594,2.784056725,91.85885248,0,91.85885248,2.314018083,89.5448344,1.13626967,4.385073397,2.154146304,-2.154146304,0.161772976,0.20779193,0.935303264,30.08256806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54184799,1.676498224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.677624031,28.91650866,72.21947203,30.59300689,490.4881584,0,0.705755458,45.10939131,-0.705755458,134.8906087,0.979153931,0,552.4828803,30.59300689,572.5053915,9,16,4% +9/18/2018 1:00,76.58420441,261.4434543,160.517445,473.542826,50.64789735,307.984137,257.6534123,50.33072468,49.12067637,1.210048303,40.44653391,0,40.44653391,1.527220976,38.91931294,1.336646522,4.563049085,4.109092004,-4.109092004,0,0.315528928,0.381805244,12.28016909,0.147152397,1,0.238722166,0,0.933521451,0.972283414,0.724496596,1,47.47903873,1.106466398,0.023532858,0.312029739,0.935432596,0.659929192,0.961238037,0.922476074,0.267443187,11.80416563,47.74648191,12.91063203,219.7390952,0,0.544097383,57.0369965,-0.544097383,122.9630035,0.958104686,0,258.2795387,12.91063203,266.7292891,9,17,3% +9/18/2018 2:00,88.15541789,270.7749771,2.910600597,17.6866478,2.341294462,8.480554696,6.187917564,2.292637132,2.270695796,0.021941337,0.776307479,0,0.776307479,0.070598666,0.705708813,1.538602296,4.725914882,29.03201605,-29.03201605,0,0.804402522,0.017649667,0.567673949,0.815994273,1,0.034431119,0,0.958059503,0.996821466,0.724496596,1,2.191657248,0.051148494,0.100530321,0.312029739,0.754747446,0.479244042,0.961238037,0.922476074,0.012426305,0.545669792,2.204083553,0.596818286,1.13861227,0,0.349863786,69.5210161,-0.349863786,110.4789839,0.907087238,0,3.236904212,0.596818286,3.627509844,9,18,12% +9/18/2018 3:00,100.2617084,280.0871169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749896926,4.888442382,-4.779395634,4.779395634,0.65252152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.123802851,82.8883728,-0.123802851,97.1116272,0.646132079,0,0,0,0,9,19,0% +9/18/2018 4:00,111.6986086,290.2018456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94950849,5.064977702,-1.919418096,1.919418096,0.858393516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104710686,96.01049823,0.104710686,83.98950177,0,0.572493819,0,0,0,9,20,0% +9/18/2018 5:00,122.3431602,302.0974885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135290962,5.272595836,-0.970139054,0.970139054,0.696057239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325212021,108.9784207,0.325212021,71.02157932,0,0.896254145,0,0,0,9,21,0% +9/18/2018 6:00,131.5048414,317.0096991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295192464,5.53286301,-0.441389909,0.441389909,0.60563581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.522677151,121.5120014,0.522677151,58.4879986,0,0.954338654,0,0,0,9,22,0% +9/18/2018 7:00,138.0830068,336.0888374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410003109,5.865856792,-0.061237556,0.061237556,0.540625928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683652844,133.1297528,0.683652844,46.87024717,0,0.976863465,0,0,0,9,23,0% +9/19/2018 8:00,140.6908677,358.8756549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455518869,6.263561782,0.264880403,-0.264880403,0.484856473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797173529,142.8610356,0.797173529,37.13896439,0,0.987278399,0,0,0,9,0,0% +9/19/2018 9:00,138.5516038,21.8876178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418181671,0.382010996,0.589634825,-0.589634825,0.429320196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855508617,148.8159701,0.855508617,31.1840299,0,0.991555235,0,0,0,9,1,0% +9/19/2018 10:00,132.3154691,41.41382985,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309340587,0.722807687,0.964494395,-0.964494395,0.365215434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854689402,148.7254382,0.854689402,31.27456182,0,0.991499216,0,0,0,9,2,0% +9/19/2018 11:00,123.3625082,56.71234547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153081942,0.989817155,1.478082031,-1.478082031,0.277386776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794779646,142.6344476,0.794779646,37.36555239,0,0.987089481,0,0,0,9,3,0% +9/19/2018 12:00,112.8384362,68.86432632,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969402234,1.201909231,2.373979451,-2.373979451,0.124179294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679871447,132.8335983,0.679871447,47.16640169,0,0.976456685,0,0,0,9,4,0% +9/19/2018 13:00,101.4698847,79.1269484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770983579,1.381025777,4.866017884,-4.866017884,0,#DIV/0!,0,0,0.231941629,1,0.202684956,0,0.938532241,0.977294204,0.724496596,1,0,0,0.035751379,0.312029739,0.903621979,0.628118575,0.961238037,0.922476074,0,0,0,0,0,0,-0.517806601,121.1852373,0.517806601,58.81476269,0,0.953438852,0,0,0,9,5,0% +9/19/2018 14:00,89.27207048,88.50406704,0.390096824,3.109310692,0.350594819,0.342963806,0,0.342963806,0.340023092,0.002940715,1.076421974,0.971266756,0.105155219,0.010571727,0.094583491,1.55809156,1.544687371,-74.63734861,74.63734861,0,0.898737949,0.002642932,0.085005773,1,0.918658794,0,0.013397316,0.961238037,1,0.687206927,0.962710331,0.326843129,0.007501874,0.115824807,0.269670596,0.724496596,0.448993192,0.967757612,0.928995649,0.001914795,0.081996965,0.328757924,0.08949884,0,0.079004009,-0.312373658,108.2023365,0.312373658,71.79766347,0,0.889935287,0.328757924,0.159807295,0.433348603,9,6,32% +9/19/2018 15:00,77.83215911,97.82719163,138.6488433,436.9359421,46.55316465,46.19460852,0,46.19460852,45.14941497,1.045193546,77.66956842,42.64880146,35.02076696,1.403749677,33.61701728,1.35842744,1.707406592,-4.101468781,4.101468781,0.76845384,0.335763094,0.884441206,28.44666944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.39933501,1.017011862,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.640774643,27.34402068,44.04010966,28.36103255,0,42.64880146,-0.097608819,95.60149221,0.097608819,84.39850779,0,0.537751206,44.04010966,51.29547698,77.61197343,9,7,76% +9/19/2018 16:00,66.34046114,107.9324327,347.2433003,680.0949597,74.32047624,163.1166718,88.41956543,74.69710634,72.07943967,2.617666674,86.43419497,0,86.43419497,2.241036572,84.19315839,1.157859474,1.883776321,-1.800244386,1.800244386,0.838013611,0.214029979,2.284394657,73.47398473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.28549909,1.623623368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655036153,70.62598884,70.94053524,72.24961221,88.41956543,0,0.130010617,82.52979416,-0.130010617,97.47020584,0.665416025,0,129.776331,72.24961221,177.0622572,9,8,36% +9/19/2018 17:00,55.53564672,119.8553158,536.0852397,787.1344996,90.6510254,367.4262791,275.4674796,91.9587995,87.91756252,4.04123698,132.7135358,0,132.7135358,2.733462883,129.9800729,0.969279888,2.091869886,-0.939324828,0.939324828,0.690787696,0.169098156,3.00294187,96.5849331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.5097052,1.980384553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175621163,92.84111148,86.68532636,94.82149603,275.4674796,0,0.349962401,69.51498457,-0.349962401,110.4850154,0.907127509,0,336.569455,94.82149603,398.6282277,9,9,18% +9/19/2018 18:00,46.13137475,134.985074,683.8006418,840.6224523,101.2432671,563.1230659,459.7778788,103.3451871,98.19040902,5.154778076,168.8482404,0,168.8482404,3.05285805,165.7953824,0.805144378,2.355933983,-0.439892547,0.439892547,0.605379746,0.148059626,3.421778146,110.0561475,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.384356,2.211785265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479066618,105.7901551,96.86342262,108.0019404,459.7778788,0,0.54694932,56.84202573,-0.54694932,123.1579743,0.958583852,0,537.5990728,108.0019404,608.2841827,9,10,13% +9/19/2018 19:00,39.29534601,154.7668021,778.2517394,866.7857269,107.4534986,723.299515,613.2193455,110.0801695,104.2133792,5.866790346,191.9362639,0,191.9362639,3.240119445,188.6961445,0.685833169,2.701190269,-0.074641816,0.074641816,0.542918192,0.138070361,3.555437121,114.3550795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.173864,2.347455508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575902091,109.9224522,102.7497661,112.2699077,613.2193455,0,0.707463594,44.97108071,-0.707463594,135.0289193,0.979324985,0,703.2907925,112.2699077,776.7692017,9,11,10% +9/19/2018 20:00,36.58286196,178.8798779,812.2996783,875.0805325,109.6137043,830.4603396,718.0284349,112.4319048,106.3084467,6.123458092,200.2567191,0,200.2567191,3.305257616,196.9514615,0.638491391,3.122042834,0.24016539,-0.24016539,0.489082989,0.134942445,3.417057273,109.904308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1877226,2.394647891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475646362,105.6442012,104.6633689,108.0388491,718.0284349,0,0.820528407,34.8622757,-0.820528407,145.1377243,0.989063658,0,814.8391989,108.0388491,885.5484649,9,12,9% +9/19/2018 21:00,38.89332652,203.2135789,783.4260674,868.0813711,107.7841998,872.9784162,762.5385111,110.4399051,104.5341085,5.905796617,193.2008115,0,193.2008115,3.250091304,189.9507202,0.678816605,3.546746037,0.552367603,-0.552367603,0.435693266,0.137580563,3.031627919,97.50757504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4821612,2.354680086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.196404108,93.72799001,102.6785653,96.08267009,762.5385111,0,0.878418241,28.54785848,-0.878418241,151.4521415,0.993079506,0,859.9399334,96.08267009,922.8241194,9,13,7% +9/19/2018 22:00,45.45021013,223.4105824,693.7379608,843.6207542,101.9136952,844.0780845,740.0077734,104.070311,98.84062126,5.229689785,171.2778744,0,171.2778744,3.073073932,168.2048004,0.793255812,3.899250247,0.908401715,-0.908401715,0.374807847,0.146905173,2.440444197,78.49307433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00936474,2.226431602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768093513,75.45052868,96.77745825,77.67696028,740.0077734,0,0.877180617,28.69588912,-0.877180617,151.3041109,0.992999196,0,831.6045826,77.67696028,882.4425996,9,14,6% +9/19/2018 23:00,54.69854524,238.8717743,549.9630249,792.9997439,91.70564432,740.8958144,647.80958,93.08623438,88.94038079,4.145853587,136.1101662,0,136.1101662,2.765263534,133.3449026,0.95466971,4.169098952,1.385720606,-1.385720606,0.29318151,0.166748745,1.704122462,54.81043627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.49287702,2.003424017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234630923,52.68587616,86.72750795,54.68930018,647.80958,0,0.816910201,35.22332156,-0.816910201,144.7766784,0.988793762,0,727.2775798,54.68930018,763.070633,9,15,5% +9/19/2018 0:00,65.42725332,250.9924685,363.7556692,692.1059928,75.94459793,562.0943131,485.6975811,76.39673198,73.6545881,2.742143886,90.48678325,0,90.48678325,2.290009833,88.19677342,1.141920991,4.380644974,2.186609093,-2.186609093,0.156221512,0.208779146,0.911447122,29.31527254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.79959167,1.659104329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.660340338,28.17895502,71.459932,29.83805935,485.6975811,0,0.701767628,45.43100633,-0.701767628,134.5689937,0.978751344,0,546.8370926,29.83805935,566.3655056,9,16,4% +9/19/2018 1:00,76.89456958,261.1897187,155.2067441,465.9134285,49.56384733,300.7621776,251.5228492,49.23932846,48.06931446,1.170013996,39.12620489,0,39.12620489,1.494532868,37.63167202,1.342063416,4.558620563,4.213744167,-4.213744167,0,0.31934081,0.373633217,12.01732862,0.159973759,1,0.233008109,0,0.934334715,0.973096678,0.724496596,1,46.47801737,1.082783975,0.025439138,0.312029739,0.930392309,0.654888905,0.961238037,0.922476074,0.261155503,11.55151337,46.73917288,12.63429734,211.2857934,0,0.539848894,57.32664699,-0.539848894,122.673353,0.95738149,0,249.0202807,12.63429734,257.2891756,9,17,3% +9/19/2018 2:00,88.43798753,270.5233386,1.991946556,12.59909896,1.648509182,5.970684464,4.356867782,1.613816683,1.598800548,0.015016135,0.532679139,0,0.532679139,0.049708634,0.482970504,1.543534066,4.721522963,34.34408618,-34.34408618,0,0.827587054,0.012427159,0.399700137,0.842346662,1,0.02910887,0,0.958569444,0.997331407,0.724496596,1,1.542331547,0.036013736,0.102840167,0.312029739,0.750058131,0.474554726,0.961238037,0.922476074,0.00878133,0.384206975,1.551112877,0.420220711,0.686874747,0,0.345807886,69.76888005,-0.345807886,110.2311199,0.905411048,0,2.173016862,0.420220711,2.448042913,9,18,13% +9/19/2018 3:00,100.5747947,279.8373523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755361313,4.884083167,-4.646435309,4.646435309,0.675259075,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119192211,83.15451493,-0.119192211,96.84548507,0.630509501,0,0,0,0,9,19,0% +9/19/2018 4:00,112.0248633,289.9562911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955202708,5.060691966,-1.894871835,1.894871835,0.854195858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109355704,96.27817604,0.109355704,83.72182396,0,0.592776477,0,0,0,9,20,0% +9/19/2018 5:00,122.6908685,301.8678661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141359618,5.268588169,-0.962156735,0.962156735,0.694692182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.32979729,109.2564723,0.32979729,70.74352771,0,0.89839172,0,0,0,9,21,0% +9/19/2018 6:00,131.8795523,316.8300457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301732404,5.529727466,-0.438833148,0.438833148,0.605198578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52711271,121.8105791,0.52711271,58.18942093,0,0.955143627,0,0,0,9,22,0% +9/19/2018 7:00,138.4790257,336.0289569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416914944,5.864811679,-0.061314472,0.061314472,0.540639082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687859079,133.4608744,0.687859079,46.53912556,0,0.977310693,0,0,0,9,23,0% +9/20/2018 8:00,141.0800469,359.0080197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462311328,6.265871985,0.262994496,-0.262994496,0.485178982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801086643,143.2339947,0.801086643,36.76600525,0,0.987584779,0,0,0,9,0,0% +9/20/2018 9:00,138.8956902,22.19099355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42418711,0.387305902,0.585966595,-0.585966595,0.4299475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859085013,149.2140029,0.859085013,30.78599712,0,0.991798542,0,0,0,9,1,0% +9/20/2018 10:00,132.5990525,41.79248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314290052,0.729416496,0.958374715,-0.958374715,0.366261961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857908671,149.0825734,0.857908671,30.91742664,0,0.991718738,0,0,0,9,2,0% +9/20/2018 11:00,123.5944253,57.10027147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157129658,0.996587741,1.467444874,-1.467444874,0.279205837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797645966,142.905893,0.797645966,37.09410699,0,0.987315548,0,0,0,9,3,0% +9/20/2018 12:00,113.0346825,69.24045162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972827379,1.208473856,2.351686461,-2.351686461,0.127991619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682413285,133.0325147,0.682413285,46.96748534,0,0.976730617,0,0,0,9,4,0% +9/20/2018 13:00,101.6454106,79.49170168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774047084,1.387391922,4.785665696,-4.785665696,0,#DIV/0!,0,0,0.223749143,1,0.205993369,0,0.938084011,0.976845974,0.724496596,1,0,0,0.034609645,0.312029739,0.906544652,0.631041248,0.961238037,0.922476074,0,0,0,0,0,0,-0.520074746,121.3372654,0.520074746,58.66273456,0,0.953859973,0,0,0,9,5,0% +9/20/2018 14:00,89.41726648,88.86516386,0.25969108,2.324781922,0.236047017,0.23088699,0,0.23088699,0.228929329,0.001957661,0.800235702,0.730152905,0.070082797,0.007117688,0.062965109,1.560625708,1.5509897,-93.03755616,93.03755616,0,0.90895312,0.001779422,0.057232332,1,0.935235312,0,0.010747934,0.961238037,1,0.69446989,0.969973294,0.220055579,0.00507002,0.115824807,0.277917073,0.724496596,0.448993192,0.966517556,0.927755593,0.001289185,0.055172377,0.221344764,0.060242398,0,0.047288125,-0.314073719,108.3049041,0.314073719,71.69509587,0,0.890801707,0.221344764,0.102366741,0.288341748,9,6,30% +9/20/2018 15:00,78.00326992,98.1942685,135.8552535,432.9047549,45.87346049,45.51434068,0,45.51434068,44.4902064,1.024134287,77.41231169,43.0893785,34.32293319,1.383254089,32.9396791,1.361413887,1.713813292,-4.147593045,4.147593045,0.760566127,0.337664237,0.861721319,27.71591975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.76567866,1.002162878,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.624314162,26.64159629,43.38999282,27.64375917,0,43.0893785,-0.099535471,95.71242144,0.099535471,84.28757856,0,0.547666513,43.38999282,51.24236885,76.92709838,9,7,77% +9/20/2018 16:00,66.52967357,108.3143737,344.0860011,678.7649811,73.75151051,161.0720473,86.9505513,74.12149598,71.52763036,2.593865619,85.65151482,0,85.65151482,2.223880156,83.42763467,1.161161854,1.890442448,-1.80706318,1.80706318,0.839179693,0.21434034,2.266130627,72.88655075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75507899,1.611193603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641803925,70.06132495,70.39688291,71.67251856,86.9505513,0,0.128101116,82.6401232,-0.128101116,97.3598768,0.659683337,0,127.7567127,71.67251856,174.6649427,9,8,37% +9/20/2018 17:00,55.75780931,120.2553482,532.6802403,786.5619533,90.08791735,365.0989695,273.7119665,91.38700291,87.37143426,4.015568656,131.8709745,0,131.8709745,2.716483097,129.1544914,0.973157356,2.09885177,-0.939311731,0.939311731,0.690785456,0.169121943,2.983890446,95.9721738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.98474594,1.968082757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.161818471,92.25210394,86.14656441,94.22018669,273.7119665,0,0.347985261,69.63586591,-0.347985261,110.3641341,0.906315754,0,334.2160316,94.22018669,395.8812594,9,9,18% +9/20/2018 18:00,46.40406132,135.3864066,680.1038217,840.2920608,100.6651293,560.561825,457.8052108,102.7566141,97.62970426,5.126909885,167.9344706,0,167.9344706,3.035425064,164.8990455,0.809903656,2.362938557,-0.43742649,0.43742649,0.604958025,0.148014356,3.401345357,109.3989587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.84538526,2.199155126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.464263132,105.1584403,96.30964839,107.3575954,457.8052108,0,0.544816775,56.98785642,-0.544816775,123.0121436,0.958226027,0,534.9905167,107.3575954,605.2539158,9,10,13% +9/20/2018 19:00,39.63116305,155.1031415,774.2144073,866.51377,106.8545859,720.4455673,610.9766862,109.4688811,103.6325259,5.836355232,190.9393066,0,190.9393066,3.222060017,187.7172466,0.691694282,2.707060499,-0.07069607,0.07069607,0.54224343,0.138016788,3.533455063,113.648061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.61552575,2.334371514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.559976165,109.242839,102.1755019,111.5772106,610.9766862,0,0.705097492,45.16257917,-0.705097492,134.8374208,0.97908782,0,700.3753339,111.5772106,773.4003867,9,11,10% +9/20/2018 20:00,36.96954867,179.0379273,807.8915214,874.7670313,108.9918114,827.2381189,715.4425852,111.7955337,105.7053062,6.090227543,199.1691581,0,199.1691581,3.286505252,195.8826528,0.645240347,3.124801318,0.245533092,-0.245533092,0.488165058,0.134908968,3.393573338,109.1489839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.607961,2.381061867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.458632331,104.918155,104.0665933,107.2992168,715.4425852,0,0.817866426,35.12821842,-0.817866426,144.8717816,0.988865323,0,811.5429562,107.2992168,881.7681476,9,12,9% +9/20/2018 21:00,39.28978951,203.1564455,778.6423449,867.6296721,107.1376964,869.3158194,759.5389849,109.7768344,103.9070995,5.869734896,192.0214482,0,192.0214482,3.230596841,188.7908513,0.685736189,3.545748871,0.559638073,-0.559638073,0.434449943,0.137595517,3.006872046,96.71134105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.87945635,2.340556414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178468562,92.96261961,102.0579249,95.30317603,759.5389849,0,0.875418406,28.90546737,-0.875418406,151.0945326,0.992884454,0,856.1923755,95.30317603,918.5663982,9,13,7% +9/20/2018 22:00,45.82454755,223.2211594,688.6036492,842.8757682,101.2390208,839.9026471,736.5253711,103.3772759,98.18629076,5.190985175,170.0126571,0,170.0126571,3.052730008,166.9599271,0.799789233,3.895944192,0.918824596,-0.918824596,0.37302543,0.147020744,2.414865496,77.6703754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.38039737,2.211692499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749561831,74.65971917,96.12995921,76.87141167,736.5253711,0,0.873824351,29.09385814,-0.873824351,150.9061419,0.992780262,0,827.3378105,76.87141167,877.648612,9,14,6% +9/20/2018 23:00,55.04475777,238.6316726,544.5398344,791.6220033,90.99080213,736.1021991,643.7501341,92.35206501,88.24709373,4.104971286,134.7736957,0,134.7736957,2.743708405,132.0299873,0.960712259,4.164908387,1.40245862,-1.40245862,0.290319141,0.167096687,1.67854107,53.98765077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82646313,1.987807399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216097292,51.89498344,86.04256042,53.88279084,643.7501341,0,0.813203942,35.58984305,-0.813203942,144.4101569,0.988514809,0,722.399101,53.88279084,757.66431,9,15,5% +9/20/2018 0:00,65.75165848,250.7395416,358.1733293,689.1519365,75.14382479,556.4294788,480.8514557,75.57802307,72.87796122,2.700061849,89.10913405,0,89.10913405,2.265863569,86.84327048,1.147582929,4.376230566,2.219904354,-2.219904354,0.150527687,0.209797376,0.887631157,28.54926921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.05306837,1.641610442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.643085751,27.44264349,70.69615412,29.08425393,480.8514557,0,0.697743749,45.75373621,-0.697743749,134.2462638,0.978340454,0,541.1325858,29.08425393,560.1676483,9,16,4% +9/20/2018 1:00,77.20527964,260.9361396,149.9059817,458.0515544,48.46650764,293.4554552,245.320337,48.13511823,47.00506362,1.130054611,37.80788484,0,37.80788484,1.461444028,36.34644081,1.34748633,4.554194773,4.323425575,-4.323425575,0,0.3233127,0.365361007,11.7512659,0.173003956,1,0.227300892,0,0.935139988,0.973901952,0.724496596,1,45.4631085,1.058811223,0.02735452,0.312029739,0.925356728,0.649853324,0.961238037,0.922476074,0.254845332,11.29576377,45.71795383,12.35457499,202.8789481,0,0.535573637,57.61717756,-0.535573637,122.3828224,0.956642156,0,239.8005082,12.35457499,247.8863304,9,17,3% +9/20/2018 2:00,88.717232,270.2712849,1.284396772,8.573320106,1.092468814,3.999505728,2.930296555,1.069209174,1.059526848,0.009682325,0.344358833,0,0.344358833,0.032941966,0.311416868,1.548407802,4.717123796,41.89226157,-41.89226157,0,0.850569573,0.008235491,0.264881712,0.869004413,1,0.023866225,0,0.959065124,0.997827087,0.724496596,1,1.021535151,0.023866342,0.105134363,0.312029739,0.745443051,0.469939647,0.961238037,0.922476074,0.005841873,0.254614377,1.027377024,0.278480719,0.383855916,0,0.341792505,70.01387916,-0.341792505,109.9861208,0.903712415,0,1.374272381,0.278480719,1.556532442,9,18,13% +9/20/2018 3:00,100.8878432,279.5865994,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76082504,4.879706704,-4.520988733,4.520988733,0.696711703,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114574488,83.4209172,-0.114574488,96.5790828,0.613602677,0,0,0,0,9,19,0% +9/20/2018 4:00,112.350929,289.7091055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960893628,5.056377764,-1.871003564,1.871003564,0.850114143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.11399671,96.54576023,0.11399671,83.45423977,0,0.611390852,0,0,0,9,20,0% +9/20/2018 5:00,123.0383737,301.6359236,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147424728,5.26454001,-0.95432698,0.95432698,0.693353215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.334368029,109.5341127,0.334368029,70.46588731,0,0.900464172,0,0,0,9,21,0% +9/20/2018 6:00,132.2542621,316.6477328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308272323,5.526545506,-0.436318628,0.436318628,0.604768569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531524514,122.1085181,0.531524514,57.89148192,0,0.955930961,0,0,0,9,22,0% +9/20/2018 7:00,138.8753791,335.9676436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423832615,5.86374156,-0.061397116,0.061397116,0.540653215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692034262,133.7913549,0.692034262,46.20864514,0,0.977749242,0,0,0,9,23,0% +9/21/2018 8:00,141.4695183,359.1423134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469108885,6.268215851,0.261120849,-0.261120849,0.485499395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80496384,143.6067633,0.80496384,36.39323666,0,0.987885409,0,0,0,9,0,0% +9/21/2018 9:00,139.2394509,22.49848804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430186868,0.392672693,0.582325767,-0.582325767,0.430570118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862623392,149.6124257,0.862623392,30.38757431,0,0.992037278,0,0,0,9,1,0% +9/21/2018 10:00,132.8818561,42.17468385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.319225905,0.736087094,0.952305227,-0.952305227,0.367299904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861090733,149.4392718,0.861090733,30.56072817,0,0.99193411,0,0,0,9,2,0% +9/21/2018 11:00,123.8255861,57.49044853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161164176,1.003397615,1.456911829,-1.456911829,0.281007093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80047874,143.175843,0.80047874,36.82415704,0,0.987537379,0,0,0,9,3,0% +9/21/2018 12:00,113.2304817,69.61786604,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976244719,1.215060981,2.329699154,-2.329699154,0.13175167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684927834,133.229932,0.684927834,46.77006801,0,0.976999609,0,0,0,9,4,0% +9/21/2018 13:00,101.8209113,79.85711768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777110149,1.393769635,4.707483367,-4.707483367,0,#DIV/0!,0,0,0.215608376,1,0.209316243,0,0.937631407,0.976393371,0.724496596,1,0,0,0.033467124,0.312029739,0.909479632,0.633976228,0.961238037,0.922476074,0,0,0,0,0,0,-0.522324028,121.4882722,0.522324028,58.51172781,0,0.954273981,0,0,0,9,5,0% +9/21/2018 14:00,89.56141256,89.2264574,0.160418103,1.703084781,0.147381466,0.14414667,0,0.14414667,0.142937371,0.001209299,0.581073391,0.53773407,0.043339321,0.004444095,0.038895226,1.563141532,1.557295462,-123.3483027,123.3483027,0,0.918733377,0.001111024,0.035734343,1,0.951512697,0,0.008106947,0.961238037,1,0.701764475,0.977267879,0.137396838,0.003178074,0.115824807,0.286201633,0.724496596,0.448993192,0.96525748,0.926495517,0.000804933,0.03442568,0.138201771,0.037603754,0,0.026073275,-0.315741222,108.4055665,0.315741222,71.59443351,0,0.89164247,0.138201771,0.060851794,0.178028052,9,6,29% +9/21/2018 15:00,78.17525854,98.56107279,133.0518861,428.773225,45.18822254,44.82863222,0,44.82863222,43.8256309,1.003001319,77.12745481,43.50489296,33.62256185,1.362591636,32.25997021,1.364415655,1.720215235,-4.195172545,4.195172545,0.752429553,0.339628575,0.839022189,26.98583772,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.12686341,0.987193002,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.60786872,25.93981367,42.73473213,26.92700667,0,43.50489296,-0.101463642,95.82345972,0.101463642,84.17654028,0,0.557212642,42.73473213,51.16848303,76.22348091,9,7,78% +9/21/2018 16:00,66.72024978,108.6953938,340.9000591,677.3951791,73.17934327,159.0153806,85.47281587,73.54256471,70.97271607,2.569848642,84.86179332,0,84.86179332,2.206627203,82.65516612,1.164488036,1.897092503,-1.814020349,1.814020349,0.840369439,0.214665094,2.247683547,72.29322923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22167426,1.598693897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628439078,69.49100175,69.85011334,71.08969564,85.47281587,0,0.12617866,82.75117301,-0.12617866,97.24882699,0.653736479,0,125.726811,71.08969564,172.2535951,9,8,37% +9/21/2018 17:00,55.98171857,120.6534027,529.236529,785.966355,89.52183792,362.744368,271.9323353,90.81203271,86.8224242,3.989608506,131.0189375,0,131.0189375,2.699413714,128.3195238,0.97706531,2.105799131,-0.939311865,0.939311865,0.690785479,0.169152795,2.964638102,95.35295224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.4570166,1.955716046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147870213,91.65688462,85.60488681,93.61260067,271.9323353,0,0.345984702,69.75808276,-0.345984702,110.2419172,0.90548494,0,331.8355211,93.61260067,393.103096,9,9,18% +9/21/2018 18:00,46.67860604,135.7841494,676.3614507,839.9444211,100.0839393,557.9620369,455.7972993,102.1647375,97.06603924,5.098698311,167.0095644,0,167.0095644,3.01790004,163.9916644,0.814695366,2.369880479,-0.434942012,0.434942012,0.604533154,0.147974044,3.380702025,108.7349982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.303569,2.186458305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449307109,104.5202162,95.75287611,106.7066745,455.7972993,0,0.542651737,57.13566281,-0.542651737,122.8643372,0.957859873,0,532.3428193,106.7066745,602.1802037,9,10,13% +9/21/2018 19:00,39.96839448,155.4346032,770.127728,866.2266853,106.2525481,717.5445877,608.6903978,108.8541899,103.0486418,5.805548117,189.9302902,0,189.9302902,3.203906356,186.7263839,0.69758008,2.712845598,-0.066714955,0.066714955,0.541562619,0.137967436,3.511265452,112.9343668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05427412,2.321219249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543899867,108.5568091,101.598174,110.8780283,608.6903978,0,0.702691811,45.35663071,-0.702691811,134.6433693,0.978845051,0,697.4117574,110.8780283,769.9792094,9,11,10% +9/21/2018 20:00,37.35684245,179.1927747,803.4334015,874.4385161,108.3668004,823.963283,712.8075211,111.1557619,105.0991416,6.056620352,198.0693889,0,198.0693889,3.267658864,194.80173,0.651999899,3.127503914,0.250954333,-0.250954333,0.487237971,0.134879631,3.369898259,108.387512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0252925,2.367407723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.441479817,104.1861992,103.4667723,106.5536069,712.8075211,0,0.815160252,35.39678968,-0.815160252,144.6032103,0.988662367,0,808.1927437,106.5536069,877.9299484,9,12,9% +9/21/2018 21:00,39.68657847,203.0997105,773.8112653,867.1611006,106.4881642,865.5980206,756.4875513,109.1104693,103.2771531,5.833316177,190.8305112,0,190.8305112,3.21101105,187.6195001,0.692661463,3.544758659,0.56699143,-0.56699143,0.433192444,0.137615164,2.981954825,95.90991758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.27392794,2.326366575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16041612,92.19226089,101.4343441,94.51862746,756.4875513,0,0.872372562,29.26447187,-0.872372562,150.7355281,0.992685038,0,852.3882179,94.51862746,914.2487692,9,13,7% +9/21/2018 22:00,46.19938651,223.0335409,683.4277237,842.1086987,100.5614283,835.672036,732.990939,102.681097,97.52913017,5.151966862,168.7372622,0,168.7372622,3.032298094,165.7049641,0.806331407,3.892669631,0.929390071,-0.929390071,0.371218627,0.147142741,2.389169205,76.84389434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.74870962,2.196889647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730944956,73.86527414,95.47965458,76.06216379,732.990939,0,0.870423189,29.49214591,-0.870423189,150.5078541,0.992556677,0,823.0147056,76.06216379,872.7958705,9,14,6% +9/21/2018 23:00,55.39154931,238.3930447,539.0838852,790.2086121,90.27293606,731.2544301,639.6397141,91.614716,87.55087396,4.063842036,133.4291913,0,133.4291913,2.722062094,130.7071293,0.966764913,4.160743545,1.419491801,-1.419491801,0.287406295,0.167456195,1.652904861,53.16310216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.15723021,1.972124721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197523945,51.10239595,85.35475416,53.07452067,639.6397141,0,0.809456774,35.9571093,-0.809456774,144.0428907,0.988230179,0,717.4660234,53.07452067,752.2022357,9,15,5% +9/21/2018 0:00,66.07652922,250.487399,352.571426,686.1202739,74.33862903,550.7066495,475.9517721,74.75487742,72.09704508,2.657832336,87.72660812,0,87.72660812,2.241583946,85.48502418,1.153252993,4.371829848,2.254053315,-2.254053315,0.144687871,0.210847004,0.863869586,27.78501541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.30242208,1.624019938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625870574,26.70801367,69.92829265,28.3320336,475.9517721,0,0.693685627,46.07742904,-0.693685627,133.922571,0.97792124,0,535.3716397,28.3320336,553.914389,9,16,3% +9/21/2018 1:00,77.51618891,260.6827105,144.6194322,449.9531662,47.35586711,286.0664465,239.0483311,47.01811536,45.92791299,1.090202367,36.4926098,0,36.4926098,1.427954118,35.06465568,1.35291272,4.549771601,4.438466894,-4.438466894,0,0.327451618,0.356988529,11.48197825,0.186243513,1,0.221602843,0,0.935936945,0.974698908,0.724496596,1,44.4343255,1.034547897,0.029278386,0.312029739,0.920327889,0.644824485,0.961238037,0.922476074,0.248512284,11.03691423,44.68283778,12.07146213,194.5271302,0,0.531273806,57.90843877,-0.531273806,122.0915612,0.95588657,0,230.6287091,12.07146213,238.5292396,9,17,3% +9/21/2018 2:00,88.99253114,270.0188117,0.766420348,5.538218313,0.669043281,2.525612397,1.870965638,0.654646758,0.648869158,0.0057776,0.20600161,0,0.20600161,0.020174123,0.185827487,1.553212678,4.712717307,53.42937955,-53.42937955,0,0.872945614,0.005043531,0.162217289,0.895907156,1,0.018714109,0,0.959545817,0.99830778,0.724496596,1,0.625237771,0.014616084,0.107407545,0.312029739,0.740912013,0.465408608,0.961238037,0.922476074,0.003592175,0.155929429,0.628829946,0.170545513,0.194754134,0,0.337828076,70.25539613,-0.337828076,109.7446039,0.901995724,0,0.804497342,0.170545513,0.916115969,9,18,14% +9/21/2018 3:00,101.20071,279.3348481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766285595,4.875312814,-4.402481276,4.402481276,0.716977672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109952198,83.68744003,-0.109952198,96.31255997,0.595256929,0,0,0,0,9,19,0% +9/21/2018 4:00,112.6766591,289.4602623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966578692,5.052034631,-1.847796129,1.847796129,0.846145438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118631158,96.81310938,0.118631158,83.18689062,0,0.628525566,0,0,0,9,20,0% +9/21/2018 5:00,123.3855278,301.4016011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153483709,5.260450311,-0.946650162,0.946650162,0.692040402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338921764,109.8111957,0.338921764,70.18880429,0,0.902473328,0,0,0,9,21,0% +9/21/2018 6:00,132.6288288,316.4626483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314809746,5.523315172,-0.433848082,0.433848082,0.604346081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535910271,122.4056649,0.535910271,57.59433515,0,0.956700799,0,0,0,9,22,0% +9/21/2018 7:00,139.2719457,335.9047539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430754009,5.862643929,-0.061487183,0.061487183,0.540668617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69617638,134.1210338,0.69617638,45.87896622,0,0.97817912,0,0,0,9,23,0% +9/22/2018 8:00,141.8591856,359.2784379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475909863,6.270591673,0.259257868,-0.259257868,0.485817983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808803459,143.9791903,0.808803459,36.0208097,0,0.988180284,0,0,0,9,0,0% +9/22/2018 9:00,139.5828097,22.81001634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436179609,0.398109887,0.57871069,-0.57871069,0.431188333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866122495,150.0111277,0.866122495,29.98887233,0,0.992271445,0,0,0,9,1,0% +9/22/2018 10:00,133.1638319,42.56029699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32414731,0.742817313,0.946283887,-0.946283887,0.368329614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864234753,149.7954386,0.864234753,30.20456143,0,0.992145349,0,0,0,9,2,0% +9/22/2018 11:00,124.055972,57.88273769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165185169,1.010244353,1.446479486,-1.446479486,0.282791129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80327755,143.4442351,0.80327755,36.55576487,0,0.987755014,0,0,0,9,3,0% +9/22/2018 12:00,113.4258356,69.99643449,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979654288,1.221668247,2.308007775,-2.308007775,0.135461115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687415065,133.4258356,0.687415065,46.57416445,0,0.977263741,0,0,0,9,4,0% +9/22/2018 13:00,101.9964004,80.22306693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780173013,1.400156654,4.631371208,-4.631371208,0,#DIV/0!,0,0,0.207517447,1,0.212654176,0,0.937174323,0.975936286,0.724496596,1,0,0,0.032323618,0.312029739,0.91242744,0.636924036,0.961238037,0.922476074,0,0,0,0,0,0,-0.524554738,121.6382732,0.524554738,58.36172676,0,0.954681063,0,0,0,9,5,0% +9/22/2018 14:00,89.70455015,89.58781921,0.087473395,1.221075716,0.081176857,0.079388487,0,0.079388487,0.078729075,0.000659411,0.411198254,0.387541535,0.023656719,0.002447782,0.021208937,1.565639754,1.563602415,-182.702827,182.702827,0,0.928017682,0.000611945,0.019682269,1,0.967505224,0,0.005473314,0.961238037,1,0.709093015,0.984596419,0.075677382,0.001757619,0.115824807,0.294526684,0.724496596,0.448993192,0.963976901,0.925214938,0.000443352,0.018948462,0.076120734,0.02070608,0,0.012593075,-0.317377153,108.5043802,0.317377153,71.49561984,0,0.892458729,0.076120734,0.03194488,0.097028019,9,6,27% +9/22/2018 15:00,78.34813902,98.92747086,130.2389176,424.5381053,44.49729303,44.13733144,0,44.13733144,43.15553547,0.981795974,76.81437382,43.89468284,32.91969098,1.341757562,31.57793342,1.367432989,1.726610087,-4.244293785,4.244293785,0.744029326,0.341658959,0.816347644,26.2565464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.48274219,0.972098787,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.591441089,25.23879111,42.07418328,26.2108899,0,43.89468284,-0.103393976,95.93464455,0.103393976,84.06535545,0,0.566412834,42.07418328,51.07340161,75.50070317,9,7,79% +9/22/2018 16:00,66.91219526,109.0753485,337.685369,675.9844456,72.60393209,156.9463061,83.98603544,72.96027061,70.41465566,2.545614951,84.06500374,0,84.06500374,2.189276433,81.87572731,1.167838117,1.903723964,-1.821125341,1.821125341,0.841584465,0.215004672,2.229053845,71.69403398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68524537,1.586123323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614941923,68.91503248,69.3001873,70.5011558,83.98603544,0,0.124242556,82.86298353,-0.124242556,97.13701647,0.647561403,0,123.6863022,70.5011558,169.8278987,9,8,37% +9/22/2018 17:00,56.20736012,121.0493237,525.7541952,785.3472761,88.95278576,360.3620252,270.1281369,90.23388827,86.27053106,3.963357203,130.1574463,0,130.1574463,2.682254691,127.4751916,0.981003498,2.112709256,-0.939328869,0.939328869,0.690788387,0.169190824,2.945187203,94.72734447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.92651592,1.943284393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133778103,91.05552663,85.06029402,92.99881102,270.1281369,0,0.343960112,69.88166994,-0.343960112,110.1183301,0.904634307,0,329.427474,92.99881102,390.2933358,9,9,18% +9/22/2018 18:00,46.95496319,136.1781567,672.5739412,839.5793559,99.49972208,555.3234227,453.7538379,101.5695848,96.49943834,5.070146465,166.0736226,0,166.0736226,3.000283736,163.0733388,0.819518708,2.376757204,-0.432441385,0.432441385,0.604105522,0.147938711,3.359852417,108.0644031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.75893067,2.173695353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.434201639,103.8756147,95.19313231,106.0493101,453.7538379,0,0.540453782,57.28546493,-0.540453782,122.7145351,0.957485151,0,529.6556943,106.0493101,599.0628467,9,10,13% +9/22/2018 19:00,40.30696146,155.7610947,765.9925141,865.9244217,105.6474355,714.5966153,606.3604646,108.2361507,102.4617755,5.774375128,188.9094134,0,188.9094134,3.185659978,185.7237534,0.703489189,2.718543948,-0.062700245,0.062700245,0.540876063,0.137922282,3.488874473,112.214196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.49015597,2.30799981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527677679,107.8645534,101.0178337,110.1725533,606.3604646,0,0.700246407,45.55322343,-0.700246407,134.4467766,0.978596563,0,694.4001004,110.1725533,766.505833,9,11,10% +9/22/2018 20:00,37.74464518,179.3443441,798.9265744,874.095017,107.7387476,820.6362928,710.1236199,110.5126729,104.4900269,6.022645986,196.9577184,0,196.9577184,3.248720755,193.7089976,0.658768333,3.1301493,0.256427574,-0.256427574,0.486301992,0.13485438,3.346040084,107.620151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4397883,2.353687128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42419465,103.4485827,102.863983,105.8022698,710.1236199,0,0.8124101,35.66792251,-0.8124101,144.3320775,0.988454729,0,804.789033,105.8022698,874.0345026,9,12,9% +9/22/2018 21:00,40.08357512,203.0432522,768.9345384,866.675748,105.8357069,861.8259693,753.3850462,108.4409232,102.6443698,5.79655335,189.6284183,0,189.6284183,3.191337054,186.4370812,0.699590362,3.543773274,0.574426358,-0.574426358,0.431920997,0.137639424,2.956885995,95.10361783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.66567253,2.312112832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.142253838,91.4172149,100.8079264,93.72932773,753.3850462,0,0.869281329,29.62476758,-0.869281329,150.3752324,0.992481222,0,848.5284374,93.72932773,909.8724079,9,13,7% +9/22/2018 22:00,46.57459015,222.847629,678.2123279,841.3196744,99.88104925,831.3877171,729.405799,101.9819181,96.8692671,5.112651006,167.4522131,0,167.4522131,3.011782157,164.440431,0.812879946,3.889424856,0.940097442,-0.940097442,0.369387559,0.147271061,2.363366498,76.01399059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.11442414,2.18202592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712250982,73.06753909,94.82667512,75.24956501,729.405799,0,0.866978179,29.8906392,-0.866978179,150.1093608,0.992328422,0,818.6367804,75.24956501,867.8861157,9,14,6% +9/22/2018 23:00,55.73877679,238.1558402,533.5977116,788.7596271,89.55220402,726.3544582,635.4800986,90.8743596,86.85187465,4.022484943,132.0772723,0,132.0772723,2.700329364,129.376943,0.972825176,4.156603544,1.436822335,-1.436822335,0.284442599,0.167827189,1.627226237,52.33718934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.48532549,1.956379432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17891987,50.30849714,84.66424536,52.26487657,635.4800986,0,0.805670165,36.32497353,-0.805670165,143.6750265,0.987939864,0,712.4803676,52.26487657,746.686684,9,15,5% +9/22/2018 0:00,66.40172212,250.2360193,346.9528821,683.0103272,73.52917047,544.9280593,471.0005872,73.92747207,71.31199469,2.615477379,86.33991892,0,86.33991892,2.217175783,84.12274314,1.15892868,4.367442444,2.289077682,-2.289077682,0.138698351,0.211928404,0.84017669,27.02297042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54780178,1.606336308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.608705151,25.97550704,69.15650693,27.58184335,471.0005872,0,0.689595118,46.4019325,-0.689595118,133.5980675,0.977493686,0,529.5566072,27.58184335,547.608372,9,16,3% +9/22/2018 1:00,77.82715066,260.4294228,139.3514731,441.614481,46.23193431,278.5978377,232.7094765,45.88836118,44.83787092,1.050490267,35.1814414,0,35.1814414,1.394063397,33.78737801,1.358340026,4.545350898,4.559227492,-4.559227492,0,0.331764949,0.348515849,11.20946773,0.199692766,1,0.215916301,0,0.93672527,0.975487234,0.724496596,1,43.39170385,1.009994186,0.031210101,0.312029739,0.915307844,0.639804439,0.961238037,0.922476074,0.242155948,10.77496675,43.6338598,11.78496094,186.2390776,0,0.526951643,58.20027991,-0.526951643,121.7997201,0.955114633,0,221.5135281,11.78496094,229.2265493,9,17,3% +9/22/2018 2:00,89.26330199,269.7659131,0.410351666,3.37458805,0.366963063,1.485848772,1.126857595,0.358991177,0.355897773,0.003093404,0.110559803,0,0.110559803,0.01106529,0.099494512,1.557938521,4.708303394,73.18746859,-73.18746859,0,0.894264831,0.002766323,0.088974443,0.922991862,1,0.013662691,0,0.960010916,0.998772879,0.724496596,1,0.342728097,0.008016765,0.109654514,0.312029739,0.736474101,0.460970697,0.961238037,0.922476074,0.001978635,0.085525619,0.344706732,0.093542384,0.086777205,0,0.333924491,70.49284996,-0.333924491,109.50715,0.90026555,0,0.42282926,0.093542384,0.48405088,9,18,14% +9/22/2018 3:00,101.5132504,279.0820869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771740453,4.870901299,-4.290395856,4.290395856,0.736145408,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105327877,83.95394273,-0.105327877,96.04605727,0.575291864,0,0,0,0,9,19,0% +9/22/2018 4:00,113.0019062,289.2097338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972255325,5.047662084,-1.825232984,1.825232984,0.842286913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123256485,97.08008112,0.123256485,82.91991888,0,0.644341831,0,0,0,9,20,0% +9/22/2018 5:00,123.7321819,301.1648369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159533964,5.256317996,-0.939126611,0.939126611,0.690753799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343456025,110.0875743,0.343456025,69.91242573,0,0.904420955,0,0,0,9,21,0% +9/22/2018 6:00,133.0031101,316.2746761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321342186,5.520034438,-0.431423222,0.431423222,0.603931406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540267709,122.7018648,0.540267709,57.29813517,0,0.957453288,0,0,0,9,22,0% +9/22/2018 7:00,139.6686046,335.8401373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437677012,5.861516156,-0.061586365,0.061586365,0.540685578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700283449,134.4497496,0.700283449,45.55025043,0,0.97860034,0,0,0,9,23,0% +9/23/2018 8:00,142.2489543,359.416289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48271261,6.272997628,0.257403949,-0.257403949,0.486135022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812603878,144.3511231,0.812603878,35.64887691,0,0.988469405,0,0,0,9,0,0% +9/23/2018 9:00,139.9256927,23.12548793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442164046,0.403615905,0.575119693,-0.575119693,0.43180243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869581111,150.4099984,0.869581111,29.59000162,0,0.992501051,0,0,0,9,1,0% +9/23/2018 10:00,133.4449353,42.94919757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329053492,0.749604909,0.940308627,-0.940308627,0.369351444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867339952,150.1509808,0.867339952,29.84901915,0,0.992352477,0,0,0,9,2,0% +9/23/2018 11:00,124.2855679,58.27699747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169192372,1.017125484,1.436144432,-1.436144432,0.284558527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806042043,143.7110113,0.806042043,36.28898869,0,0.987968496,0,0,0,9,3,0% +9/23/2018 12:00,113.6207492,70.37602069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983056171,1.228293275,2.286602755,-2.286602755,0.139121589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689875003,133.620215,0.689875003,46.37978495,0,0.977523102,0,0,0,9,4,0% +9/23/2018 13:00,102.1718938,80.58941942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78323595,1.406550711,4.557235007,-4.557235007,0,#DIV/0!,0,0,0.199474468,1,0.216007794,0,0.936712642,0.975474606,0.724496596,1,0,0,0.031178927,0.312029739,0.915388624,0.63988522,0.961238037,0.922476074,0,0,0,0,0,0,-0.52676722,121.787288,0.52676722,58.212712,0,0.955081413,0,0,0,9,5,0% +9/23/2018 14:00,89.84679371,89.94912063,0.036184727,0.8558878,0.033896125,0.033146808,0,0.033146808,0.032874032,0.000272776,0.282809769,0.27301427,0.009795499,0.001022093,0.008773406,1.568122373,1.569908314,-351.5369531,351.5369531,0,0.936752263,0.000255523,0.008218508,1,0.983234561,0,0.002844643,0.961238037,1,0.716461741,0.991965145,0.03159977,0.000737012,0.115824807,0.302899034,0.724496596,0.448993192,0.962674633,0.923912669,0.000185126,0.007906408,0.031784896,0.00864342,0,0.004577204,-0.318983714,108.6014754,0.318983714,71.39852462,0,0.893252186,0.031784896,0.012732018,0.040117746,9,6,26% +9/23/2018 15:00,78.5219263,99.29332909,127.4165365,420.196011,43.8005069,43.44027969,0,43.44027969,42.47976001,0.960519673,76.47240977,44.25804842,32.21436135,1.32074689,30.89361446,1.370466149,1.732995518,-4.295050023,4.295050023,0.735349498,0.343758417,0.793701742,25.52817634,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.83316112,0.956876626,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.57503421,24.53865411,41.40819533,25.49553074,0,44.25804842,-0.10532715,96.04601541,0.10532715,83.95398459,0,0.57528859,41.40819533,50.95668103,74.75832393,9,7,81% +9/23/2018 16:00,67.10551574,109.4540938,334.441825,674.5316271,72.02523276,154.8644517,82.48988172,72.37456999,69.85340624,2.521163746,83.26111901,0,83.26111901,2.171826512,81.0892925,1.171212196,1.910334316,-1.828388131,1.828388131,0.842826475,0.215359526,2.210241959,71.08897907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.14575108,1.573480915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601312776,68.33343068,68.74706386,69.9069116,82.48988172,0,0.122292089,82.97559593,-0.122292089,97.02440407,0.641142809,0,121.6348583,69.9069116,167.3875338,9,8,38% +9/23/2018 17:00,56.43471921,121.4429573,522.2333387,784.7042763,88.38075984,357.95149,268.2989207,89.65256934,85.71575384,3.9368155,129.2865252,0,129.2865252,2.665005999,126.6215192,0.984971663,2.119579458,-0.939366547,0.939366547,0.69079483,0.16923615,2.925540203,94.09542939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.39324295,1.930787775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119543918,90.44810583,84.51278687,92.3788936,268.2989207,0,0.341910869,70.00666266,-0.341910869,109.9933373,0.903763058,0,326.9914398,92.3788936,387.4515781,9,9,18% +9/23/2018 18:00,47.23308641,136.5682856,668.7417295,839.1966874,98.91250419,552.645715,451.6745302,100.9711849,95.92992724,5.041257634,165.1267517,0,165.1267517,2.98257695,162.1441747,0.824372874,2.383566238,-0.429926967,0.429926967,0.603675531,0.147908378,3.338800936,107.3873152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.21149493,2.160866847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418949913,103.224772,94.63044485,105.3856389,451.6745302,0,0.538222489,57.43728222,-0.538222489,122.5627178,0.957101615,0,526.9288672,105.3856389,595.9016601,9,10,13% +9/23/2018 19:00,40.64678501,156.082526,761.8096128,865.6069328,105.0393003,711.6017154,603.9868948,107.6148205,101.8719779,5.742842651,187.876883,0,187.876883,3.167322458,184.7095606,0.709420229,2.724153983,-0.058653782,0.058653782,0.540184077,0.137881301,3.466288482,111.4877529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.92322001,2.294714339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511314205,107.1662687,100.4345342,109.460983,603.9868948,0,0.697761157,45.75234385,-0.697761157,134.2476562,0.978342242,0,691.3404272,109.460983,762.9804513,9,11,10% +9/23/2018 20:00,38.13285911,179.4925611,794.3723387,873.7365726,107.1077318,817.2576483,707.3912955,109.8663528,103.8780385,5.988314233,195.8344637,0,195.8344637,3.229693301,192.6047704,0.665543945,3.132736174,0.261951208,-0.261951208,0.485357395,0.134833159,3.322007039,106.8471657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.85152184,2.339901802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.406782791,102.7055598,102.2583046,105.0454616,707.3912955,0,0.809616214,35.94154863,-0.809616214,144.0584514,0.988242344,0,801.3323363,105.0454616,870.08249,9,12,9% +9/23/2018 21:00,40.48066175,202.9869494,764.0139209,866.1737188,105.1804309,858.0006656,750.2323531,107.7683125,102.0088528,5.759459657,188.4155986,0,188.4155986,3.171578065,185.2440206,0.706520831,3.542790606,0.581941452,-0.581941452,0.43063584,0.137668213,2.931675468,94.29276063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.05478942,2.297797512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123988897,90.63778812,100.1787783,92.93558563,750.2323531,0,0.866145366,29.98625043,-0.866145366,150.0137496,0.992272969,0,844.6140631,92.93558563,905.4385452,9,13,7% +9/23/2018 22:00,46.95002202,222.6633244,672.9596524,840.5088439,99.19801866,827.0512157,725.7713292,101.2798865,96.20683239,5.073054119,166.1580453,0,166.1580453,2.991186264,163.166859,0.819432468,3.886208133,0.950945899,-0.950945899,0.367532363,0.147405596,2.337468696,75.18102827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.4776667,2.167104266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693488113,72.26686402,94.17115481,74.43396828,725.7713292,0,0.863490414,30.28922533,-0.863490414,149.7107747,0.992095478,0,814.2056082,74.43396828,862.9211518,9,14,6% +9/23/2018 23:00,56.08629704,237.9200058,528.0838918,787.275136,88.82876799,721.4042998,631.2731275,90.13117233,86.15025289,3.98091944,130.7185686,0,130.7185686,2.678515098,128.0400535,0.978890549,4.152487457,1.454452275,-1.454452275,0.281427702,0.168209577,1.601517697,51.51031431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.81089996,1.940575071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16029412,49.5136734,83.97119408,51.45424848,631.2731275,0,0.80184563,36.69328975,-0.80184563,143.3067102,0.987643858,0,707.4442212,51.45424848,741.1199977,9,15,5% +9/23/2018 0:00,66.72709331,249.9853784,341.3206577,679.8214629,72.71561439,539.0960127,466.0000231,73.09598962,70.52297033,2.573019292,84.94978921,0,84.94978921,2.192644066,82.75714514,1.164607479,4.363067936,2.324999631,-2.324999631,0.132555336,0.213041938,0.816566786,26.26359476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78936155,1.588563162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.591599857,25.24556627,68.38096141,26.83412943,466.0000231,0,0.685474126,46.72709412,-0.685474126,133.2729059,0.977057787,0,523.6899125,26.83412943,541.2523135,9,16,3% +9/23/2018 1:00,78.13801717,260.1762659,134.1065858,433.032029,45.09474124,271.0525461,226.3066256,44.7459205,43.73496841,1.010952091,33.8754672,0,33.8754672,1.35977283,32.51569437,1.363765671,4.540932475,4.686098536,-4.686098536,0,0.336260452,0.339943208,10.9337421,0.213351846,1,0.21024361,0,0.937504661,0.976266625,0.724496596,1,42.33530457,0.985150787,0.033149008,0.312029739,0.910298659,0.634795255,0.961238037,0.922476074,0.235775911,10.50992879,42.57108048,11.49507958,178.0236892,0,0.522609439,58.49254918,-0.522609439,121.5074508,0.954326259,0,212.4637618,11.49507958,219.9870615,9,17,4% +9/23/2018 2:00,89.52911658,269.5125816,0.184335598,1.927443021,0.168495151,0.801032044,0.636228043,0.164804001,0.163414401,0.0013896,0.04977505,0,0.04977505,0.00508075,0.0446943,1.562577861,4.703881924,114.6864801,-114.6864801,0,0.914067348,0.001270188,0.0408536,0.950205129,1,0.008719203,0,0.960460124,0.999222087,0.724496596,1,0.15726843,0.003680986,0.111871241,0.312029739,0.732135769,0.456632365,0.961238037,0.922476074,0.000912525,0.039270034,0.158180954,0.042951021,0.031680894,0,0.330089158,70.72581291,-0.330089158,109.2741871,0.898525773,0,0.186647053,0.042951021,0.214757638,9,18,15% +9/23/2018 3:00,101.8253189,278.8283032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777187076,4.866471938,-4.184265955,4.184265955,0.75429469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100704086,84.22028368,-0.100704086,95.77971632,0.553495817,0,0,0,0,9,19,0% +9/23/2018 4:00,113.3265221,288.9574912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97792094,5.043259619,-1.803298172,1.803298172,0.838535839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.127870123,97.34653217,0.127870123,82.65346783,0,0.658978246,0,0,0,9,20,0% +9/23/2018 5:00,124.0781864,300.9255676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165572882,5.252141958,-0.93175662,0.93175662,0.689493456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347968348,110.3631005,0.347968348,69.63689953,0,0.90630877,0,0,0,9,21,0% +9/23/2018 6:00,133.3769624,316.0836961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32786714,5.516701209,-0.429045737,0.429045737,0.603524832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544594574,122.9969626,0.544594574,57.0030374,0,0.958188582,0,0,0,9,22,0% +9/23/2018 7:00,140.0652346,335.7736356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444599511,5.860355482,-0.061696358,0.061696358,0.540704388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704353518,134.7773394,0.704353518,45.22266059,0,0.979012919,0,0,0,9,23,0% +9/24/2018 8:00,142.6387312,359.5557551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4895155,6.275431771,0.255557469,-0.255557469,0.486450789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816363521,144.7224077,0.816363521,35.27759226,0,0.988752775,0,0,0,9,0,0% +9/24/2018 9:00,140.268029,23.44480662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448138941,0.409189068,0.571551083,-0.571551083,0.432412698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872998087,150.808928,0.872998087,29.19107197,0,0.992726106,0,0,0,9,1,0% +9/24/2018 10:00,133.7251257,43.34125267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333943737,0.756447561,0.934377358,-0.934377358,0.370365751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870405612,150.5058085,0.870405612,29.4941915,0,0.992555517,0,0,0,9,2,0% +9/24/2018 11:00,124.514362,58.67308413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173185583,1.0240385,1.425903255,-1.425903255,0.286309872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808771921,143.9761178,0.808771921,36.02388224,0,0.988177874,0,0,0,9,3,0% +9/24/2018 12:00,113.8152303,70.75648735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986450508,1.234933671,2.26547471,-2.26547471,0.142734697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692307735,133.8130648,0.692307735,46.18693517,0,0.977777782,0,0,0,9,4,0% +9/24/2018 13:00,102.3474098,80.95604478,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786299283,1.412949531,4.484985642,-4.484985642,0,#DIV/0!,0,0,0.191477544,1,0.219377757,0,0.936246245,0.975008209,0.724496596,1,0,0,0.030032838,0.312029739,0.918363759,0.642860355,0.961238037,0.922476074,0,0,0,0,0,0,-0.528961875,121.9353397,0.528961875,58.0646603,0,0.955475229,0,0,0,9,5,0% +9/24/2018 14:00,89.98836276,90.31023288,0.00215915,0.585814839,0.002040166,0.001994924,0,0.001994924,0.001978647,1.63E-05,0.188376672,0.187791643,0.000585029,6.15E-05,0.000523511,1.570593219,1.576210912,-4617.375549,4617.375549,0,0.944893212,1.54E-05,0.000494662,1,0.99873281,0,0.000216573,0.961238037,1,0.723882655,0.999386059,0.001901951,4.46E-05,0.115824807,0.311332019,0.724496596,0.448993192,0.961348414,0.922586451,1.11E-05,0.000475518,0.001913094,0.000520072,0,0.000237968,-0.320564845,108.6970877,0.320564845,71.30291227,0,0.894025317,0.001913094,0.000732821,0.00239271,9,6,25% +9/24/2018 15:00,78.69663627,99.65851398,124.5849443,415.7434124,43.09769135,42.73731088,0,42.73731088,41.79813694,0.939173935,76.10086562,44.59424908,31.50661654,1.299554408,30.20706213,1.373515413,1.739369197,-4.347541933,4.347541933,0.726372853,0.345930173,0.771088792,24.80086614,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1779591,0.941522745,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.558651205,23.83953588,40.7366103,24.78105862,0,44.59424908,-0.107263874,96.15761378,0.107263874,83.84238622,0,0.583859835,40.7366103,50.81784954,73.99587647,9,7,82% +9/24/2018 16:00,67.30021734,109.8314861,331.1693179,673.0355209,71.44319896,152.7694388,80.98402165,71.78541712,69.28892292,2.496494205,82.45011132,0,82.45011132,2.154276046,80.29583527,1.17461038,1.916921055,-1.835819247,1.835819247,0.844097271,0.215730127,2.191248323,70.47807844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60314824,1.560765662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587551951,67.74620976,68.19070019,69.30697543,80.98402165,0,0.120326519,83.08905269,-0.120326519,96.91094731,0.634464005,0,119.5721469,69.30697543,164.9321762,9,8,38% +9/24/2018 17:00,56.66378088,121.8341511,518.6740685,784.0369025,87.80575926,355.5123085,266.4442326,89.06807587,85.15809165,3.909984217,128.4062005,0,128.4062005,2.64766761,125.7585329,0.988969543,2.126407078,-0.939428874,0.939428874,0.690805489,0.169288894,2.905699631,93.45728841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.85719684,1.918226171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105169491,89.83470044,83.96236633,91.75292661,266.4442326,0,0.339836342,70.13309657,-0.339836342,109.8669034,0.902870356,0,324.5269654,91.75292661,384.5774208,9,9,19% +9/24/2018 18:00,47.51292895,136.9543964,664.8652729,838.7962364,98.32231321,549.9286568,449.5590888,100.369568,95.35753269,5.012035268,164.1690635,0,164.1690635,2.964780514,161.204283,0.829257047,2.390305142,-0.427401211,0.427401211,0.603243601,0.147883063,3.317552115,106.70388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66128753,2.14797339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403555214,102.5678281,94.06484274,104.7158015,449.5590888,0,0.535957446,57.59113362,-0.535957446,122.4088664,0.956709011,0,524.1620742,104.7158015,592.696472,9,10,13% +9/24/2018 19:00,40.98778618,156.3988102,757.5799033,865.2741764,104.4281966,708.5599777,601.5697192,106.9902585,101.2793012,5.710957314,186.8329139,0,186.8329139,3.148895426,183.6840185,0.715371822,2.729674183,-0.054577479,0.054577479,0.539486988,0.137844465,3.443513991,110.7552469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.35351663,2.281364017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.494814164,106.4621561,99.8483308,108.7435202,601.5697192,0,0.695235956,45.95397717,-0.695235956,134.0460228,0.97808197,0,688.2328271,108.7435202,759.4032862,9,11,10% +9/24/2018 20:00,38.52138697,179.6373519,789.7720324,873.3632295,106.4738343,813.8278874,704.6109969,109.2168905,103.2632553,5.953635181,194.6999519,0,194.6999519,3.210578951,191.4893729,0.672325035,3.13526325,0.267523555,-0.267523555,0.484404467,0.134815909,3.297807519,106.068826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.26056884,2.32605352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.389250322,101.95739,101.6498192,104.2834436,704.6109969,0,0.806778867,36.21759864,-0.806778867,143.7824014,0.988025149,0,797.8232044,104.2834436,866.0746325,9,12,9% +9/24/2018 21:00,40.87772135,202.9306821,759.0512134,865.6551299,104.5224455,854.1231579,747.0304011,107.0927568,101.3707081,5.722048671,187.192492,0,187.192492,3.151737379,184.0407547,0.713450828,3.541808556,0.589535224,-0.589535224,0.429337229,0.137701441,2.906333316,93.47766988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.44138048,2.283423002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105628594,89.85429189,99.54700907,92.13771489,747.0304011,0,0.862965372,30.3488169,-0.862965372,149.6511831,0.992060248,0,840.6461737,92.13771489,900.9484654,9,13,7% +9/24/2018 22:00,47.32554622,222.4805263,667.671932,839.6763752,98.51247459,822.6641137,722.0889607,100.5751531,95.54196001,5.033193049,164.8553045,0,164.8553045,2.970514581,161.88479,0.825986602,3.883017705,0.961934509,-0.961934509,0.3656532,0.147546227,2.311487251,74.34537567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.83856607,2.152127702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674664644,71.46360295,93.51323072,73.61573066,722.0889607,0,0.85996103,30.68779235,-0.85996103,149.3122077,0.99185783,0,809.7228207,73.61573066,857.9028441,9,14,6% +9/24/2018 23:00,56.43396694,237.6854857,522.5450435,785.7552588,88.10279387,716.4060347,627.0206998,89.38533483,85.44616957,3.939165262,129.3537199,0,129.3537199,2.6566243,126.6970956,0.984958533,4.148394309,1.472383524,-1.472383524,0.278361278,0.168603252,1.575791817,50.68288158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.13410829,1.924715262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141655807,48.71831359,83.2757641,50.64302885,627.0206998,0,0.797984732,37.0619129,-0.797984732,142.9380871,0.98734216,0,702.359736,50.64302885,735.5045855,9,15,5% +9/24/2018 0:00,67.05249859,249.7354497,335.6777475,676.5530958,71.89813157,533.2128835,460.9522652,72.26061828,69.73013763,2.530480651,83.55695016,0,83.55695016,2.167993943,81.38895622,1.170286872,4.358705856,2.361841801,-2.361841801,0.126254954,0.214187959,0.79305421,25.5073495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02726061,1.570704231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.574565076,24.51863456,67.60182568,26.08933879,460.9522652,0,0.681324597,47.05276138,-0.681324597,132.9472386,0.97661354,0,517.7740494,26.08933879,534.8489998,9,16,3% +9/24/2018 1:00,78.44863989,259.9232265,128.8893562,424.2027194,43.94434745,263.4337437,219.842858,43.59088564,42.61926323,0.97162241,32.57580085,0,32.57580085,1.325084213,31.25071664,1.36918706,4.536516106,4.819506505,-4.819506505,0,0.340946287,0.331271053,10.65481581,0.227220666,1,0.204587119,0,0.938274826,0.977036789,0.724496596,1,41.26521811,0.960019002,0.03509443,0.312029739,0.905302418,0.629799014,0.961238037,0.922476074,0.229371773,10.24181423,41.49458989,11.20183323,169.8900175,0,0.518249525,58.7850938,-0.518249525,121.2149062,0.953521378,0,203.4883535,11.20183323,210.8197293,9,17,4% +9/24/2018 2:00,89.78992386,269.2588078,0.055265635,1.025923216,0.051504075,0.385150352,0.334782699,0.050367653,0.049951037,0.000416616,0.014952831,0,0.014952831,0.001553038,0.013399793,1.567129806,4.699452735,257.4741174,-257.4741174,0,0.931936728,0.000388259,0.012487759,0.977528349,1,0.003883866,0,0.960893796,0.999655759,0.724496596,1,0.048041151,0.001125171,0.114056762,0.312029739,0.727897276,0.452393872,0.961238037,0.922476074,0.000280209,0.012003709,0.048321361,0.01312888,0.00752312,0,0.326323348,70.95423107,-0.326323348,109.0457689,0.896777743,0,0.055067927,0.01312888,0.063660516,9,18,16% +9/24/2018 3:00,102.1367695,278.5734829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782622915,4.862024485,-4.083669632,4.083669632,0.771497674,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.096083405,84.48632037,-0.096083405,95.51367963,0.529618776,0,0,0,0,9,19,0% +9/24/2018 4:00,113.6503578,288.7035043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98357294,5.038826711,-1.781976314,1.781976314,0.834889587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132469497,97.61231852,0.132469497,82.38768148,0,0.672554618,0,0,0,9,20,0% +9/24/2018 5:00,124.423391,300.683728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171597839,5.247921061,-0.924540453,0.924540453,0.688259419,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.352456276,110.6376257,0.352456276,69.36237428,0,0.908138432,0,0,0,9,21,0% +9/24/2018 6:00,133.7502419,315.8895843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334382096,5.513313319,-0.426717296,0.426717296,0.603126645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548888634,123.290802,0.548888634,56.70919804,0,0.95890684,0,0,0,9,22,0% +9/24/2018 7:00,140.4617148,335.7050832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451519396,5.859159017,-0.061818858,0.061818858,0.540725337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708384672,135.1036393,0.708384672,44.89636065,0,0.97941688,0,0,0,9,23,0% +9/25/2018 8:00,143.0284248,359.6967175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496316936,6.27789203,0.253716794,-0.253716794,0.486765562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820080859,145.0928889,0.820080859,34.90711109,0,0.989030402,0,0,0,9,0,0% +9/25/2018 9:00,140.6097506,23.76787043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454103109,0.414827595,0.568003146,-0.568003146,0.433019431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876372319,151.2078075,0.876372319,28.79219246,0,0.992946623,0,0,0,9,1,0% +9/25/2018 10:00,134.0043661,43.73632518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3388174,0.763342877,0.928487971,-0.928487971,0.371372895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873431075,150.8598342,0.873431075,29.14016582,0,0.992754498,0,0,0,9,2,0% +9/25/2018 11:00,124.7423466,59.0708518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177164665,1.030980856,1.41575254,-1.41575254,0.288045746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811466954,144.2395054,0.811466954,35.76049463,0,0.988383196,0,0,0,9,3,0% +9/25/2018 12:00,114.0092903,71.13769635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989837493,1.241587024,2.244614434,-2.244614434,0.146302014,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694713409,134.004384,0.694713409,45.99561602,0,0.978027875,0,0,0,9,4,0% +9/25/2018 13:00,102.5229692,81.32281232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789363372,1.419350832,4.414538759,-4.414538759,0,#DIV/0!,0,0,0.183524771,1,0.222764753,0,0.935775005,0.974536969,0.724496596,1,0,0,0.028885135,0.312029739,0.921353449,0.645850044,0.961238037,0.922476074,0,0,0,0,0,0,-0.531139157,122.0824555,0.531139157,57.91754455,0,0.955862712,0,0,0,9,5,0% +9/25/2018 14:00,90.12962326,90.67102721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57305868,1.582507961,413.5610872,-413.5610872,0,#DIV/0!,0,0,0.985953667,1,0.002418018,0,0.961024148,0.999786111,0.724496596,1,0,0,0.114722731,0.312029739,0.726613383,0.451109979,0.961238037,0.922476074,0,0,0,0,0,0,-0.322126889,108.791599,0.322126889,71.20840099,0,0.894781663,0,0,0,9,6,0% +9/25/2018 15:00,78.87228577,100.0228923,121.7443572,411.1766302,42.38866571,42.02825143,0,42.02825143,41.11049104,0.91776039,75.69900304,44.90249946,30.79650359,1.278174669,29.51832892,1.376581075,1.745728799,-4.401878295,4.401878295,0.717080788,0.348177662,0.748513386,24.07476349,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.5169677,0.926033196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.5422954,23.14157839,40.0592631,24.06761159,0,44.90249946,-0.109204892,96.26948311,0.109204892,83.73051689,0,0.592145053,40.0592631,50.65640451,73.21286673,9,7,83% +9/25/2018 16:00,67.49630655,110.2073828,327.8677356,671.4948721,70.85778223,150.6608827,79.46811861,71.19276414,68.72115866,2.471605483,81.631952,0,81.631952,2.136623572,79.49532843,1.178032782,1.92348169,-1.843429807,1.843429807,0.845398753,0.216116972,2.17207336,69.86134573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05739164,1.547976504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573659756,67.15338282,67.6310514,68.70135932,79.46811861,0,0.118345086,83.20339758,-0.118345086,96.79660242,0.627506751,0,117.4978323,68.70135932,162.461498,9,8,38% +9/25/2018 17:00,56.89452995,122.2227544,515.0765012,783.3446878,87.22778318,353.0440241,264.5636162,88.48040792,84.59754368,3.882864235,127.5165006,0,127.5165006,2.630239499,124.8862611,0.992996874,2.133189486,-0.939519998,0.939519998,0.690821072,0.16934918,2.88566809,92.81300519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.31837681,1.905599563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090656708,89.2153909,83.40903352,91.12099047,264.5636162,0,0.337735891,70.26100778,-0.337735891,109.7389922,0.901955326,0,322.0335961,91.12099047,381.6704619,9,9,19% +9/25/2018 18:00,47.79444367,137.3363522,660.9450492,838.3778219,97.72917784,547.1720008,447.4072353,99.76476551,94.78228254,4.982482965,163.2006746,0,163.2006746,2.946895294,160.2537793,0.834170406,2.396971529,-0.424866659,0.424866659,0.602810167,0.147862788,3.296110603,106.0142473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.1083352,2.135015609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388020911,101.9049269,93.49635611,104.0399426,447.4072353,0,0.533658243,57.74703757,-0.533658243,122.2529624,0.956307078,0,521.3550621,104.0399426,589.4471237,9,10,13% +9/25/2018 19:00,41.32988621,156.7098628,753.3042953,864.926114,103.8141802,705.471516,599.1089904,106.3625256,100.6837996,5.678725975,185.7777284,0,185.7777284,3.130380567,182.6473479,0.721342594,2.735103077,-0.050473321,0.050473321,0.538785136,0.137811746,3.420557658,110.0168924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.7810979,2.267950064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478182379,105.7524217,99.25928028,108.0203717,599.1089904,0,0.692670716,46.15810725,-0.692670716,133.8418928,0.977815629,0,685.0774145,108.0203717,755.7745874,9,11,10% +9/25/2018 20:00,38.9101321,179.778644,785.1270313,872.9750425,105.8371384,810.3475846,701.7832072,108.5643774,102.6457582,5.918619201,193.5545188,0,193.5545188,3.191380221,190.3631386,0.679109918,3.137729263,0.273142865,-0.273142865,0.483443509,0.134802566,3.273450076,105.2854068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.6670071,2.312144106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371603437,101.2043378,101.0386105,103.5164819,701.7832072,0,0.803898363,36.49600218,-0.803898363,143.5039978,0.987803083,0,794.262226,103.5164819,862.011693,9,12,9% +9/25/2018 21:00,41.27463771,202.8743308,754.0482577,865.1201114,103.8618627,850.1945423,743.7801637,106.4143786,100.7300443,5.684334278,185.9595485,0,185.9595485,3.13181837,182.8277301,0.720378326,3.54082504,0.597206093,-0.597206093,0.428025433,0.137739013,2.880869754,92.65867421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.82555006,2.268991748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08718033,89.06704209,98.91273039,91.33603384,743.7801637,0,0.85974208,30.71236408,-0.85974208,149.2876359,0.991843023,0,836.6258967,91.33603384,896.4035041,9,13,7% +9/25/2018 22:00,47.70102748,222.2991328,662.3514425,838.8224572,97.82455825,818.2280487,718.3601769,99.86787183,94.87478688,4.993084952,163.544547,0,163.544547,2.949771365,160.5947757,0.832539986,3.879851792,0.973062213,-0.973062213,0.363750251,0.147692829,2.285433727,73.50740478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19725389,2.137099313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655788955,70.65811347,92.85304284,72.79521278,718.3601769,0,0.856391207,31.0862291,-0.856391207,148.9137709,0.991615468,0,805.1901057,72.79521278,852.8331166,9,14,6% +9/25/2018 23:00,56.78164357,237.4522215,516.9838214,784.2001493,87.37445139,711.3618037,622.724772,88.63703172,84.7397893,3.897242421,127.983375,0,127.983375,2.634662087,125.3487129,0.991026635,4.144323081,1.490617826,-1.490617826,0.275243028,0.169008096,1.550061235,49.85529763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.45510871,1.908803713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.123014088,47.92280842,82.5781228,49.83161213,622.724772,0,0.794089076,37.43069894,-0.794089076,142.5693011,0.987034772,0,697.2291259,49.83161213,729.8429195,9,15,5% +9/25/2018 0:00,67.37779355,249.4862038,330.0271762,673.2046943,71.07689841,527.2811134,455.8595614,71.42155193,68.93366767,2.487884258,82.16214051,0,82.16214051,2.143230733,80.01890978,1.17596434,4.354355695,2.39962728,-2.39962728,0.119793256,0.215366805,0.769653293,24.75469557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.26166339,1.55276337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.557611191,23.79515497,66.81927458,25.34791834,455.8595614,0,0.677148519,47.37878193,-0.677148519,132.6212181,0.976160955,0,511.8115794,25.34791834,528.401285,9,16,3% +9/25/2018 1:00,78.7588695,259.6702898,123.7044748,415.1239144,42.78084488,255.7448834,213.3215023,42.42338114,41.49084456,0.932536584,31.28358244,0,31.28358244,1.290000318,29.99358213,1.374601588,4.532101527,4.95991716,-4.95991716,0,0.345831021,0.322500079,10.37271114,0.241298893,1,0.198949182,0,0.939035482,0.977797446,0.724496596,1,40.18156888,0.934600839,0.037045669,0.312029739,0.900321216,0.624817812,0.961238037,0.922476074,0.222943169,9.970644493,40.40451205,10.90524533,161.8472599,0,0.513874279,59.07776012,-0.513874279,120.9222399,0.952699936,0,194.5963863,10.90524533,201.7336513,9,17,4% +9/25/2018 2:00,90.04643609,269.0045807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571606789,4.695015636,-1166.608181,1166.608181,0,#DIV/0!,0,0,1,0.99497568,0,0.000857186,0.961238037,1,0.722068788,0.997572192,0,0,0.115824807,0.30927067,0.724496596,0.448993192,0.961673934,0.922911971,0,0,0,0,0,0,0.322615804,71.17880842,-0.322615804,108.8211916,0.895016892,0,0,0,0,9,18,0% +9/25/2018 3:00,102.4474558,278.3176107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788045414,4.857558673,-3.988224353,3.988224353,0.787819778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091468429,84.75190963,-0.091468429,95.24809037,0.503363302,0,0,0,0,9,19,0% +9/25/2018 4:00,113.9732642,288.447742,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989208719,5.034362817,-1.761252582,1.761252582,0.83134562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137052028,97.8772955,0.137052028,82.1227045,0,0.685175044,0,0,0,9,20,0% +9/25/2018 5:00,124.7676448,300.4392515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177606202,5.243654141,-0.917478343,0.917478343,0.687051727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356917361,110.9110009,0.356917361,69.08899912,0,0.90991155,0,0,0,9,21,0% +9/25/2018 6:00,134.122804,315.6922126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340884531,5.509868533,-0.424439545,0.424439545,0.602737127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55314768,123.5832261,0.55314768,56.41677389,0,0.959608226,0,0,0,9,22,0% +9/25/2018 7:00,140.8579244,335.6343067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458434557,5.857923735,-0.061955558,0.061955558,0.540748714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712375031,135.4284844,0.712375031,44.57151558,0,0.979812251,0,0,0,9,23,0% +9/26/2018 8:00,143.4179454,359.8390503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.503115354,6.280376205,0.251880281,-0.251880281,0.487079625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823754408,145.4624099,0.823754408,34.53759012,0,0.989302298,0,0,0,9,0,0% +9/26/2018 9:00,140.9507928,24.09457164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460055418,0.420529607,0.564474156,-0.564474156,0.433622924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879702762,151.6065285,0.879702762,28.39347145,0,0.99316262,0,0,0,9,1,0% +9/26/2018 10:00,134.282623,44.13427394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3436739,0.770288393,0.922638343,-0.922638343,0.37237324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87641574,151.2129733,0.87641574,28.78702665,0,0.99294945,0,0,0,9,2,0% +9/26/2018 11:00,124.9695173,59.47015262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181129542,1.03794997,1.405688885,-1.405688885,0.289766733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814126967,144.5011296,0.814126967,35.49887038,0,0.988584518,0,0,0,9,3,0% +9/26/2018 12:00,114.202943,71.51950881,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993217371,1.248250908,2.224012925,-2.224012925,0.14982508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697092228,134.1941761,0.697092228,45.80582388,0,0.97827348,0,0,0,9,4,0% +9/26/2018 13:00,102.698595,81.68959121,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792428621,1.425752331,4.345814566,-4.345814566,0,#DIV/0!,0,0,0.175614255,1,0.226169496,0,0.93529879,0.974060753,0.724496596,1,0,0,0.027735594,0.312029739,0.924358317,0.648854913,0.961238037,0.922476074,0,0,0,0,0,0,-0.533299573,122.228666,0.533299573,57.77133402,0,0.956244065,0,0,0,9,5,0% +9/26/2018 14:00,90.89805204,91.03137496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586470292,1.588797216,59.54508685,-59.54508685,0,#DIV/0!,0,0,0.906126696,1,0.016792418,0,0.959723477,0.99848544,0.724496596,1,0,0,0.108260208,0.312029739,0.739223161,0.463719757,0.961238037,0.922476074,0,0,0,0,0,0,-0.333925038,109.5071833,0.333925038,70.49281667,0,0.900265795,0,0,0,9,6,0% +9/26/2018 15:00,79.04889233,100.3863313,118.8950144,406.4918413,41.67324229,41.31292111,0,41.31292111,40.41664027,0.89628084,75.26603958,45.18196481,30.08407478,1.256602013,28.82747276,1.379663441,1.752072005,-4.458176667,4.458176667,0.707453199,0.35050454,0.725980472,23.35002753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.85001195,0.910403881,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525970381,22.44493462,39.37598233,23.3553385,0,45.18196481,-0.111150976,96.38166852,0.111150976,83.61833148,0,0.600161394,39.37598233,50.47180948,72.4087722,9,7,84% +9/26/2018 16:00,67.69378998,110.5816419,324.5369682,669.9083758,70.26893231,148.5383987,77.9418372,70.59656149,68.15006474,2.446496751,80.80661286,0,80.80661286,2.118867574,78.68774529,1.181479518,1.930013744,-1.851231512,1.851231512,0.846732923,0.216520579,2.152717505,69.23879489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50843444,1.535112344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559636504,66.55496327,67.06807095,68.09007561,77.9418372,0,0.116347011,83.31867532,-0.116347011,96.68132468,0.6202511,0,115.4115812,68.09007561,159.9751739,9,8,39% +9/26/2018 17:00,57.1269508,122.6086185,511.4407663,782.627153,86.64683115,350.5461832,262.6566171,87.88956603,84.0341095,3.85545653,126.6174567,0,126.6174567,2.612721652,124.004735,0.997053383,2.139924083,-0.939644234,0.939644234,0.690842317,0.169417139,2.865448266,92.16266616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77678245,1.892907943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076007515,88.59026029,82.85278996,90.48316823,262.6566171,0,0.335608873,70.39043253,-0.335608873,109.6095675,0.90101705,0,319.5108803,90.48316823,378.7303043,9,9,19% +9/26/2018 18:00,48.07758288,137.7140195,656.9815599,837.9412624,97.13312811,544.375515,445.2187046,99.15681042,94.20420591,4.952604509,162.2217077,0,162.2217077,2.928922196,159.2927855,0.839112118,2.403563066,-0.422325944,0.422325944,0.602375679,0.147847571,3.274481181,105.3185707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55266596,2.12199416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.372350469,101.2362162,92.92501643,103.3582103,445.2187046,0,0.531324479,57.90501172,-0.531324479,122.0949883,0.955895546,0,518.5075931,103.3582103,586.1534746,9,10,13% +9/26/2018 19:00,41.67300625,157.0156026,748.9837315,864.5627121,103.1973089,702.336472,596.604787,105.731685,100.0855293,5.64615574,184.7115568,0,184.7115568,3.111779621,181.5997771,0.727331168,2.740439242,-0.04634336,0.04634336,0.538078871,0.137783111,3.397426295,109.2729082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20601768,2.254473742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461423785,105.0372758,98.66744146,107.2917495,596.604787,0,0.690065369,46.36471638,-0.690065369,133.6352836,0.977543096,0,681.8743322,107.2917495,752.0946364,9,11,10% +9/26/2018 20:00,39.29899826,179.9163663,780.4387505,872.5720754,105.19773,806.817354,698.9084467,107.9089073,102.0256303,5.88327696,192.3985104,0,192.3985104,3.172099699,189.2264107,0.685896912,3.14013297,0.278807314,-0.278807314,0.482474831,0.134793063,3.248943414,104.4971884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.07091661,2.298175434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353848444,100.4466722,100.4247651,102.7448476,698.9084467,0,0.800975033,36.77668774,-0.800975033,143.2233123,0.987576082,0,790.6500303,102.7448476,857.8944782,9,12,9% +9/26/2018 21:00,41.67129533,202.8177774,749.0069374,864.5688071,103.1987971,846.2159632,740.4826599,105.7333032,100.0869726,5.646330676,184.7172282,0,184.7172282,3.111824495,181.6054037,0.727301307,3.539837997,0.604952388,-0.604952388,0.426700738,0.137780829,2.85529514,91.83610671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20740503,2.254506253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.068651609,88.27635893,98.27605664,90.53086518,740.4826599,0,0.856476262,31.07678951,-0.856476262,148.9232105,0.991621266,0,832.5544092,90.53086518,891.8050498,9,13,7% +9/26/2018 22:00,48.07633122,222.1190414,657.0004996,837.9473001,97.13441388,813.7447133,714.5865131,99.1582002,94.20545291,4.952747284,162.2263386,0,162.2263386,2.928960966,159.2973776,0.839090272,3.876708604,0.984327818,-0.984327818,0.361823719,0.147845266,2.259319795,72.66749097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55386462,2.122022249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.636869501,69.85075637,92.19073412,71.97277862,714.5865131,0,0.852782165,31.48442509,-0.852782165,148.5155749,0.99136838,0,800.6092078,71.97277862,847.713952,9,14,6% +9/26/2018 23:00,57.12918426,237.220153,511.4029148,782.609997,86.64391407,706.2738085,618.3873569,87.88645157,84.03128038,3.855171189,126.6081912,0,126.6081912,2.612633691,123.9955575,0.997092364,4.140272721,1.509156747,-1.509156747,0.272072686,0.169423974,1.524338637,49.02797045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77406299,1.892844216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.104378154,47.12755007,81.87844114,49.02039428,618.3873569,0,0.790160309,37.79950488,-0.790160309,142.2004951,0.986721701,0,692.054666,49.02039428,724.1375337,9,15,5% +9/26/2018 0:00,67.70283371,249.2376097,324.3719958,669.7757849,70.25209702,521.3032105,450.7242202,70.57899021,68.13373709,2.445253119,80.76610575,0,80.76610575,2.118359928,78.64774582,1.181637361,4.350016908,2.438379591,-2.438379591,0.113166221,0.216578798,0.74637834,24.00609307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.49273968,1.534744556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.540748567,23.07556978,66.03348825,24.61031433,450.7242202,0,0.672947918,47.70500368,-0.672947918,132.2949963,0.975700045,0,505.8051303,24.61031433,521.9120888,9,16,3% +9/26/2018 1:00,79.06855602,259.4174389,118.556738,405.7935134,41.60436328,247.9897296,206.7461606,41.24356899,40.34983822,0.893730769,29.99997878,0,29.99997878,1.254525057,28.74545372,1.380006637,4.527688446,5.107840061,-5.107840061,0,0.35092365,0.313631264,10.08745956,0.255585937,1,0.193332157,0,0.939786363,0.978548326,0.724496596,1,39.0845203,0.908899133,0.039002006,0.312029739,0.89535716,0.619853756,0.961238037,0.922476074,0.216489798,9.69644982,39.3010101,10.60534895,153.9047494,0,0.509486115,59.37039383,-0.509486115,120.6296062,0.951861899,0,185.797077,10.60534895,192.7380658,9,17,4% +9/26/2018 2:00,90.93369599,268.7498884,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587092396,4.690570417,-58.1027803,58.1027803,0,#DIV/0!,0,0,1,0.894362265,0,0.017209181,0.961238037,1,0.676853572,0.952356976,0,0,0.115824807,0.257919453,0.724496596,0.448993192,0.969499985,0.930738022,0,0,0,0,0,0,0.308513772,72.03031371,-0.308513772,107.9696863,0.887932681,0,0,0,0,9,18,0% +9/26/2018 3:00,102.757231,278.0606707,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79345201,4.853074225,-3.897582514,3.897582514,0.803320445,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086861765,85.0169078,-0.086861765,94.9830922,0,0,0,0,0,9,19,0% +9/26/2018 4:00,114.2950913,288.1901728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994825663,5.029867387,-1.741112677,1.741112677,0.827901493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141615137,98.14131806,0.141615137,81.85868194,0,0.696930399,0,0,0,9,20,0% +9/26/2018 5:00,125.1107962,300.1920705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183595324,5.239340018,-0.910570488,0.910570488,0.685870414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.361349172,111.1830764,0.361349172,68.81692357,0,0.911629682,0,0,0,9,21,0% +9/26/2018 6:00,134.4945033,315.4914499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347371909,5.506364563,-0.422214102,0.422214102,0.602356553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557369531,123.8740778,0.557369531,56.12592225,0,0.960292908,0,0,0,9,22,0% +9/26/2018 7:00,141.2537425,335.5611257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465342887,5.856646485,-0.062108141,0.062108141,0.540774807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716322753,135.7517087,0.716322753,44.2482913,0,0.980199062,0,0,0,9,23,0% +9/27/2018 8:00,143.8072049,359.9826203,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509909214,6.282881975,0.25004629,-0.25004629,0.487393256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827382731,145.8308124,0.827382731,34.16918756,0,0.989568475,0,0,0,9,0,0% +9/27/2018 9:00,141.2910932,24.42479708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46599478,0.426293128,0.560962387,-0.560962387,0.434223472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88298842,152.0049831,0.88298842,27.99501689,0,0.993374116,0,0,0,9,1,0% +9/27/2018 10:00,134.5598665,44.53495392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348512711,0.777281578,0.916826364,-0.916826364,0.373367147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879359063,151.5651439,0.879359063,28.43485608,0,0.993140405,0,0,0,9,2,0% +9/27/2018 11:00,125.1958728,59.87083693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185080191,1.04494323,1.395708939,-1.395708939,0.291473404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816751842,144.7609501,0.816751842,35.23904986,0,0.988781895,0,0,0,9,3,0% +9/27/2018 12:00,114.3962051,71.90178519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99659043,1.25492289,2.203661451,-2.203661451,0.153305387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699444447,134.3824489,0.699444447,45.6175511,0,0.978514694,0,0,0,9,4,0% +9/27/2018 13:00,102.8743119,82.05625044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795495459,1.432151742,4.278737762,-4.278737762,0,#DIV/0!,0,0,0.167744134,1,0.229592711,0,0.934817463,0.973579426,0.724496596,1,0,0,0.026583989,0.312029739,0.927379003,0.651875599,0.961238037,0.922476074,0,0,0,0,0,0,-0.53544367,122.374005,0.53544367,57.62599499,0,0.956619496,0,0,0,9,5,0% +9/27/2018 14:00,91.06929335,91.39114752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589459016,1.595076431,49.88584696,-49.88584696,0,#DIV/0!,0,0,0.888899117,1,0.020043081,0,0.959422434,0.998184398,0.724496596,1,0,0,0.106819402,0.312029739,0.742080345,0.466576941,0.961238037,0.922476074,0,0,0,0,0,0,-0.335939838,109.6296991,0.335939838,70.37030089,0,0.901163826,0,0,0,9,6,0% +9/27/2018 15:00,79.22647352,100.7486982,116.0371913,401.6850991,40.95122857,40.5911353,0,40.5911353,39.71639794,0.874737362,74.8011467,45.4317556,29.3693911,1.234830635,28.13456047,1.382762818,1.758396501,-4.516563971,4.516563971,0.697468382,0.352914683,0.70349548,22.6268329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17691238,0.894630592,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.509680081,21.74977244,38.68659246,22.64440303,0,45.4317556,-0.113102915,96.49421615,0.113102915,83.50578385,0,0.607924745,38.68659246,50.26349145,71.58304235,9,7,85% +9/27/2018 16:00,67.8926737,110.9541223,321.1769193,668.2746832,69.6765983,146.401612,76.4048529,69.99675907,67.57559178,2.421167284,79.97406907,0,79.97406907,2.101006518,77.87306255,1.184950694,1.936514753,-1.859236624,1.859236624,0.848101878,0.216941486,2.133181256,68.61044196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95622918,1.52217207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.545482559,65.95096654,66.50171174,67.47313861,76.4048529,0,0.114331509,83.43493098,-0.114331509,96.56506902,0.612675237,0,113.3130731,67.47313861,157.4728929,9,8,39% +9/27/2018 17:00,57.36102674,122.9915961,507.7670165,781.883811,86.06290396,348.0183462,260.7227941,87.29555212,83.46778987,3.827762252,125.709106,0,125.709106,2.595114093,123.1139919,1.001138779,2.146608305,-0.939806046,0.939806046,0.690869989,0.1694929,2.845042976,91.50636189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.23241448,1.880151326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061223951,87.95939566,82.29363843,89.83954699,260.7227941,0,0.333454652,70.5214065,-0.333454652,109.4785935,0.900054574,0,316.9583816,89.83954699,375.7565683,9,9,19% +9/27/2018 18:00,48.36229773,138.0872679,652.9753396,837.4863792,96.53419603,541.5389928,442.9932551,98.54573777,93.62333384,4.922403928,161.2322931,0,161.2322931,2.910862183,158.321431,0.844081329,2.41007748,-0.419781771,0.419781771,0.6019406,0.14783743,3.252668789,104.6170092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.99430963,2.108909743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.356547465,100.5618486,92.35085709,102.6707583,442.9932551,0,0.528955773,58.06507227,-0.528955773,121.9349277,0.955474139,0,515.6194559,102.6707583,582.8154138,9,10,13% +9/27/2018 19:00,42.0170669,157.315951,744.619195,864.1839445,102.5776429,699.1550247,594.0572222,105.0978025,99.48454846,5.61325402,183.6346391,0,183.6346391,3.093094403,180.5415447,0.733336159,2.745681311,-0.042189709,0.042189709,0.537368555,0.137758526,3.374126884,108.5235191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.62833206,2.240936366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444543442,104.3169344,98.0728755,106.5578708,594.0572222,0,0.687419879,46.57378467,-0.687419879,133.4262153,0.977264251,0,678.6237616,106.5578708,748.3637569,9,11,10% +9/27/2018 20:00,39.68788919,180.0504495,775.7086491,872.1544027,104.5556977,803.2378566,695.9872796,107.2505771,101.4029576,5.847619457,191.2322829,0,191.2322829,3.152740054,188.0795428,0.69268434,3.142473163,0.284515014,-0.284515014,0.481498757,0.13478733,3.224296408,103.7044559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.47237989,2.284149437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335991771,99.68466761,99.80837166,101.9688171,695.9872796,0,0.798009249,37.05958209,-0.798009249,142.9404179,0.987344085,0,786.9872951,101.9688171,853.7238465,9,12,8% +9/27/2018 21:00,42.06757913,202.7609062,743.9291801,864.0013762,102.5333661,842.1886188,737.1389596,105.0496592,99.44160684,5.608052397,183.4660019,0,183.4660019,3.091759297,180.3742426,0.734217764,3.538845407,0.612772346,-0.612772346,0.425363447,0.137826784,2.829619973,91.0103051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58705494,2.239969086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050050038,87.48256701,97.63710498,89.72253609,737.1389596,0,0.853168733,31.44199064,-0.853168733,148.5580094,0.991394946,0,828.4329438,89.72253609,887.1545492,9,13,7% +9/27/2018 22:00,48.45132338,221.9401499,651.6214596,837.0511374,96.44218888,809.2158578,710.769559,98.44629886,93.53410105,4.912197808,160.9012549,0,160.9012549,2.908087828,157.9931671,0.84563512,3.873586358,0.995729998,-0.995729998,0.359873831,0.148003396,2.233157226,71.8260128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90853567,2.106899732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.617914808,69.04189554,91.52645048,71.14879527,710.769559,0,0.849135169,31.88227018,-0.849135169,148.1177298,0.99111656,0,795.9819305,71.14879527,842.547394,9,14,6% +9/27/2018 23:00,57.47644663,236.9892189,505.8050455,780.9850297,85.91135928,701.1443108,614.0105239,87.13378691,83.32081482,3.812972086,125.2288337,0,125.2288337,2.590544462,122.6382893,1.003153236,4.136242162,1.528001661,-1.528001661,0.268850016,0.169850736,1.498636742,48.20130914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09113647,1.876840644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085757218,46.33293177,81.17689369,48.20977242,614.0105239,0,0.78620012,38.1681887,-0.78620012,141.8318113,0.986402961,0,686.8386923,48.20977242,718.3910241,9,15,5% +9/27/2018 0:00,68.02747463,248.9896348,318.7152821,666.2659586,69.42391542,515.2817488,445.5486102,69.73313864,67.33052822,2.402610423,79.36959731,0,79.36959731,2.093387197,77.27621011,1.187303414,4.345688931,2.478122665,-2.478122665,0.106369755,0.217824244,0.723243611,23.26200065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72066477,1.516651898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523987534,22.36031984,65.2446523,23.87697174,445.5486102,0,0.66872486,48.03127495,-0.66872486,131.968725,0.975230834,0,499.7573951,23.87697174,515.3843955,9,16,3% +9/27/2018 1:00,79.37754897,259.1646565,113.4510473,396.2100464,40.41507631,240.1723899,200.1207353,40.05165456,39.19641265,0.855241916,28.72618356,0,28.72618356,1.218663667,27.5075199,1.385399582,4.523276561,5.263833705,-5.263833705,0,0.356233612,0.304665917,9.799103162,0.270080926,1,0.187738403,0,0.940527211,0.979289174,0.724496596,1,37.97428053,0.882917678,0.040962699,0.312029739,0.890412371,0.614908967,0.961238037,0.922476074,0.210011451,9.419270686,38.18429198,10.30218836,146.0719419,0,0.505087484,59.66284011,-0.505087484,120.3371599,0.951007248,0,177.0997674,10.30218836,183.8423437,9,17,4% +9/27/2018 2:00,91.23945077,268.4947184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592428824,4.686116861,-43.83243274,43.83243274,0,#DIV/0!,0,0,1,0.857670314,0,0.0228102,0.961238037,1,0.661847393,0.937350797,0,0,0.115824807,0.240897175,0.724496596,0.448993192,0.97197201,0.933210047,0,0,0,0,0,0,0.303953592,72.30477942,-0.303953592,107.6952206,0.885501204,0,0,0,0,9,18,0% +9/27/2018 3:00,103.065948,277.8026472,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798840139,4.848570864,-3.811427535,3.811427535,0.818053814,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082266027,85.28117102,-0.082266027,94.71882898,0,0,0,0,0,9,19,0% +9/27/2018 4:00,114.6156893,287.9307657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000421153,5.02533988,-1.721542788,1.721542788,0.824554845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146156254,98.40424103,0.146156254,81.59575897,0,0.707900373,0,0,0,9,20,0% +9/27/2018 5:00,125.4526933,299.9421177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189562553,5.23497752,-0.903817038,0.903817038,0.684715506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365749294,111.4537028,0.365749294,68.5462972,0,0.913294336,0,0,0,9,21,0% +9/27/2018 6:00,134.8651939,315.287163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353841679,5.502799084,-0.420042538,0.420042538,0.601985194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561552034,124.1631994,0.561552034,55.83680064,0,0.960961056,0,0,0,9,22,0% +9/27/2018 7:00,141.6490479,335.4853534,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472242267,5.85532401,-0.062278258,0.062278258,0.540803899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720226034,136.0731454,0.720226034,43.92685462,0,0.98057735,0,0,0,9,23,0% +9/28/2018 8:00,144.1961157,0.127288371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516696988,0.002221601,0.248213202,-0.248213202,0.487706732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830964435,146.1979367,0.830964435,33.80206334,0,0.989828953,0,0,0,9,0,0% +9/28/2018 9:00,141.6305915,24.75842864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.471920144,0.432116097,0.557466138,-0.557466138,0.434821365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886228348,152.4030633,0.886228348,27.59693674,0,0.993581132,0,0,0,9,1,0% +9/28/2018 10:00,134.8360688,44.93821658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353333352,0.784319839,0.911049962,-0.911049962,0.37435497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882260545,151.9162656,0.882260545,28.08373442,0,0.993327399,0,0,0,9,2,0% +9/28/2018 11:00,125.4214139,60.27275335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189016624,1.051957995,1.385809446,-1.385809446,0.293166317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819341503,145.0189299,0.819341503,34.98107013,0,0.988975385,0,0,0,9,3,0% +9/28/2018 12:00,114.5890942,72.28438528,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999956981,1.261600521,2.183551637,-2.183551637,0.156744368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701770355,134.569213,0.701770355,45.43078701,0,0.978751621,0,0,0,9,4,0% +9/28/2018 13:00,103.0501451,82.42265874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798564327,1.438546773,4.213237583,-4.213237583,0,#DIV/0!,0,0,0.159912624,1,0.233035122,0,0.934330887,0.97309285,0.724496596,1,0,0,0.0254301,0.312029739,0.93041614,0.654912736,0.961238037,0.922476074,0,0,0,0,0,0,-0.537572022,122.5185083,0.537572022,57.48149171,0,0.956989207,0,0,0,9,5,0% +9/28/2018 14:00,91.24112839,91.75021628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592458104,1.601343364,42.87103871,-42.87103871,0,#DIV/0!,0,0,0.871815015,1,0.023321541,0,0.959116245,0.997878208,0.724496596,1,0,0,0.105373808,0.312029739,0.744963817,0.469460413,0.961238037,0.922476074,0,0,0,0,0,0,-0.33795039,109.7520499,0.33795039,70.24795014,0,0.90204929,0,0,0,9,6,0% +9/28/2018 15:00,79.4050459,101.1098608,113.1712201,396.7523693,40.22243094,39.86270871,0,39.86270871,39.00957624,0.853132461,74.30344923,45.65092196,28.65252726,1.212854698,27.43967256,1.385879494,1.764699978,-4.577176967,4.577176967,0.687102949,0.355412188,0.681064494,21.90537529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.49748849,0.8787091,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.493428908,21.05627994,37.9909174,21.93498904,0,45.65092196,-0.115061498,96.60717217,0.115061498,83.39282783,0,0.615449774,37.9909174,50.03083863,70.73510066,9,7,86% +9/28/2018 16:00,68.09296224,111.3246837,317.7875257,666.5924155,69.08073046,144.2501745,74.85686631,69.39330816,66.99769156,2.395616603,79.13430374,0,79.13430374,2.083038904,77.05126483,1.188446389,1.94298227,-1.867457897,1.867457897,0.849507798,0.217380246,2.113465264,67.97630788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40072951,1.509154595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.531198389,65.34141274,65.9319279,66.85056734,74.85686631,0,0.112297807,83.55220892,-0.112297807,96.44779108,0.604755329,0,111.2020167,66.85056734,154.9543761,9,8,39% +9/28/2018 17:00,57.59673901,123.3715425,504.0554452,781.1141744,85.47600492,345.460105,258.7617341,86.69837086,82.898588,3.79978286,124.7914954,0,124.7914954,2.577416921,122.2140784,1.005252734,2.15323962,-0.940010009,0.940010009,0.690904869,0.169576593,2.824455233,90.8441893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.68527599,1.867329786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308202,87.32289018,81.73158419,89.19021997,258.7617341,0,0.331272614,70.65396383,-0.331272614,109.3460362,0.899066908,0,314.3756963,89.19021997,372.7489115,9,9,19% +9/28/2018 18:00,48.64853726,138.4559708,648.9269708,837.0130007,95.93241657,538.6622702,440.7306843,97.93158587,93.03970025,4.891885614,160.2325734,0,160.2325734,2.892716312,157.3398571,0.849077151,2.416512559,-0.417236906,0.417236906,0.601505403,0.147832377,3.230678582,103.9097286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.43329882,2.095763121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.340615635,99.8819835,91.77391446,101.9777466,440.7306843,0,0.526551779,58.22723291,-0.526551779,121.7727671,0.955042577,0,512.6904829,101.9777466,579.4328786,9,10,13% +9/28/2018 19:00,42.36198733,157.6108338,740.2117207,863.7897955,101.9552455,695.927405,591.4664578,104.4609472,98.88091863,5.580028617,182.5472284,0,182.5472284,3.074326825,179.4729015,0.739356157,2.750827986,-0.038014533,0.038014533,0.536654558,0.137737951,3.350666619,107.7689563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.04810011,2.22733932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42754656,103.59162,97.47564667,105.8189593,591.4664578,0,0.68473425,46.785289,-0.68473425,133.214711,0.97697897,0,675.3259376,105.8189593,744.5823301,9,11,10% +9/28/2018 20:00,40.07670795,180.1808276,770.9382386,871.7221123,103.911133,799.6098118,693.0203248,106.5894871,100.777829,5.811658088,190.0562056,0,190.0562056,3.133304052,186.9229016,0.699470507,3.144748691,0.290264013,-0.290264013,0.48051562,0.134785289,3.199518118,102.9075009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87148248,2.270068119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318039985,98.91860417,99.18952246,101.1886723,693.0203248,0,0.795001429,37.3446094,-0.795001429,142.6553906,0.987107031,0,783.2747578,101.1886723,849.5007201,9,12,8% +9/28/2018 21:00,42.46337403,202.703605,738.8169624,863.4179955,101.8656907,838.1137691,733.7501905,104.3635786,98.79406424,5.569514341,182.2063527,0,182.2063527,3.071626418,179.1347263,0.741125688,3.537845312,0.620664117,-0.620664117,0.424013874,0.137876762,2.803854904,90.1816119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.96461236,2.225382883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031383333,86.68599558,96.99599569,88.91137846,733.7501905,0,0.849820359,31.80786404,-0.849820359,148.192136,0.991164036,0,824.2627959,88.91137846,882.4535149,9,13,7% +9/28/2018 22:00,48.82587026,221.7623582,646.2167202,836.1342282,95.74803395,804.6432946,706.9109626,97.73233206,92.86087746,4.8714546,159.5698819,0,159.5698819,2.887156496,156.6827254,0.852172196,3.870483307,1.007267282,-1.007267282,0.35790084,0.148167064,2.206957882,70.98335185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.26140755,2.091735053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598933473,68.23189778,90.86034102,70.32363283,706.9109626,0,0.84545153,32.2796541,-0.84545153,147.7203459,0.990860004,0,791.3101403,70.32363283,837.3355515,9,14,6% +9/28/2018 23:00,57.82328863,236.7593587,500.1929664,779.3255158,85.17696824,695.9756336,609.5963993,86.37923424,82.60856838,3.770665863,123.8459756,0,123.8459756,2.568399862,121.2775757,1.009206771,4.132230345,1.547153733,-1.547153733,0.265574819,0.170288217,1.472968287,47.3757234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.40649809,1.860796957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06716051,45.53934736,80.4736586,47.40014431,609.5963993,0,0.782210241,38.5366092,-0.782210241,141.4633908,0.986078566,0,681.5836021,47.40014431,712.6060486,9,15,5% +9/28/2018 0:00,68.35157205,248.7422473,313.0601305,662.6748759,68.59254759,509.2193664,440.3351577,68.88420871,66.5242292,2.359979501,77.97337152,0,77.97337152,2.06831839,75.90505313,1.192959981,4.341371204,2.518880828,-2.518880828,0.099399699,0.219103427,0.700263293,22.52287463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.94561948,1.498489632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.507338372,21.64984379,64.45295785,23.14833343,440.3351577,0,0.664481443,48.35744461,-0.664481443,131.6425554,0.974753354,0,493.6711296,23.14833343,508.8212509,9,16,3% +9/28/2018 1:00,79.68569749,258.9119255,108.3924087,386.3727757,39.21320824,232.2973497,193.4494566,38.84789309,38.03078533,0.817107762,27.46341731,0,27.46341731,1.18242291,26.2809944,1.390777788,4.518865573,5.428511448,-5.428511448,0,0.361770799,0.295605727,9.507696333,0.284782686,1,0.182170279,0,0.94125778,0.980019743,0.724496596,1,36.85110867,0.856661373,0.042926984,0.312029739,0.885488977,0.609985573,0.961238037,0.922476074,0.20350804,9.139159358,37.05461671,9.995820731,138.3584008,0,0.500680868,59.95494392,-0.500680868,120.0450561,0.950135988,0,168.5139126,9.995820731,175.0559774,9,17,4% +9/28/2018 2:00,91.54423365,268.2390594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597748288,4.681654769,-35.23041992,35.23041992,0,#DIV/0!,0,0,1,0.819979092,0,0.028376942,0.961238037,1,0.647177166,0.92268057,0,0,0.115824807,0.224268414,0.724496596,0.448993192,0.974326964,0.935565001,0,0,0,0,0,0,0.299395209,72.57871837,-0.299395209,107.4212816,0.88299666,0,0,0,0,9,18,0% +9/28/2018 3:00,103.3734599,277.5435258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804207235,4.844048343,-3.729470427,3.729470427,0.832069305,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077683825,85.54455574,-0.077683825,94.45544426,0,0,0,0,0,9,19,0% +9/28/2018 4:00,114.9349079,287.6694918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005992569,5.020779789,-1.702529544,1.702529544,0.821303389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150672822,98.66591959,0.150672822,81.33408041,0,0.718155151,0,0,0,9,20,0% +9/28/2018 5:00,125.7931833,299.6893279,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195505226,5.230565505,-0.89721807,0.89721807,0.683587016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37011534,111.7227308,0.37011534,68.27726924,0,0.914906977,0,0,0,9,21,0% +9/28/2018 6:00,135.2347284,315.0792188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360291274,5.499169773,-0.417926357,0.417926357,0.601623306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565693075,124.4504335,0.565693075,55.54956646,0,0.961612848,0,0,0,9,22,0% +9/28/2018 7:00,142.0437183,335.406799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.479130566,5.853952976,-0.062467511,0.062467511,0.540836263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724083114,136.3926271,0.724083114,43.60737293,0,0.980947154,0,0,0,9,23,0% +9/29/2018 8:00,144.5845906,0.272910222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523477154,0.004763182,0.246379448,-0.246379448,0.488020323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834498174,146.5636208,0.834498174,33.43637921,0,0.990083751,0,0,0,9,0,0% +9/29/2018 9:00,141.9692284,25.09534411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.477830471,0.437996382,0.553983766,-0.553983766,0.435416886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889421642,152.8006604,0.889421642,27.19933963,0,0.993783693,0,0,0,9,1,0% +9/29/2018 10:00,135.1112036,45.34391029,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813536,0.79140053,0.905307151,-0.905307151,0.375337049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88511973,152.2662589,0.88511973,27.7337411,0,0.993510467,0,0,0,9,2,0% +9/29/2018 11:00,125.6461421,60.67574904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192938871,1.058991597,1.375987312,-1.375987312,0.294846001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821895906,145.275034,0.821895906,34.72496602,0,0.989165046,0,0,0,9,3,0% +9/29/2018 12:00,114.7816284,72.66716828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003317336,1.268281345,2.163675579,-2.163675579,0.160143374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704070264,134.7544809,0.704070264,45.24551907,0,0.978984361,0,0,0,9,4,0% +9/29/2018 13:00,103.2261193,82.78868466,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801635656,1.444935131,4.149247895,-4.149247895,0,#DIV/0!,0,0,0.152118066,1,0.236497423,0,0.933838926,0.972600889,0.724496596,1,0,0,0.024273718,0.312029739,0.933470338,0.657966934,0.961238037,0.922476074,0,0,0,0,0,0,-0.539685211,122.6622123,0.539685211,57.33778767,0,0.9573534,0,0,0,9,5,0% +9/29/2018 14:00,91.41358122,92.10845263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595467973,1.607595767,37.5445203,-37.5445203,0,#DIV/0!,0,0,0.854869226,1,0.026628749,0,0.958804755,0.997566719,0.724496596,1,0,0,0.103923116,0.312029739,0.747874359,0.472370955,0.961238037,0.922476074,0,0,0,0,0,0,-0.339957447,109.8742815,0.339957447,70.12571846,0,0.902922769,0,0,0,9,6,0% +9/29/2018 15:00,79.5846238,101.4696871,110.2975141,391.6895799,39.4866595,39.12746028,0,39.12746028,38.29599103,0.831469251,73.7720265,45.83844875,27.93357775,1.190668474,26.74290928,1.389013719,1.770980131,-4.640162643,4.640162643,0.676331764,0.358001355,0.658694457,21.18587798,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.81156324,0.862635256,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.477221892,20.36467176,37.28878513,21.22730701,0,45.83844875,-0.117027491,96.72058148,0.117027491,83.27941852,0,0.622749962,37.28878513,49.77319921,69.86434855,9,7,87% +9/29/2018 16:00,68.29465736,111.6931868,314.3687801,664.8601814,68.48128262,142.0837847,73.29762073,68.78616393,66.41631928,2.369844655,78.28731372,0,78.28731372,2.06496334,76.22235038,1.191966633,1.949413862,-1.875908478,1.875908478,0.850952933,0.217837416,2.093570442,67.336422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.84189236,1.49605891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.516784658,64.72633009,65.35867702,66.222389,73.29762073,0,0.110245165,83.67055153,-0.110245165,96.32944847,0.596465373,0,109.0781697,66.222389,152.4193989,9,8,40% +9/29/2018 17:00,57.83406558,123.748315,500.3063078,780.3177657,84.88614154,342.871105,256.7730736,86.09803146,82.32651118,3.771520279,123.864687,0,123.864687,2.559630364,121.3050567,1.009394864,2.15981554,-0.940260767,0.940260767,0.690947751,0.169668342,2.803688334,90.17625443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13537399,1.854443485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031262654,86.68084578,81.16663664,88.53528926,256.7730736,0,0.329062191,70.78813581,-0.329062191,109.2118642,0.898053039,0,311.7624756,88.53528926,369.7070517,9,9,19% +9/29/2018 18:00,48.93624727,138.8200057,644.837102,836.5209691,95.32782894,535.7452459,438.4308482,97.31439763,92.45334317,4.861054456,159.2227068,0,159.2227068,2.874485765,156.3482211,0.854098638,2.422866167,-0.414694142,0.414694142,0.601070564,0.147832419,3.208515991,103.1969035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86967009,2.082555151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.324558914,99.19678892,91.19422901,101.2793441,438.4308482,0,0.524112203,58.39150357,-0.524112203,121.6084964,0.95460058,0,509.7205712,101.2793441,576.0058763,9,10,13% +9/29/2018 19:00,42.70768428,157.900181,735.7624098,863.3802645,101.3301841,692.6539134,588.8327204,103.8211931,98.27470522,5.546487832,181.4495935,0,181.4495935,3.05547892,178.3941146,0.745389707,2.755878048,-0.033820028,0.033820028,0.535937255,0.137721339,3.327052947,107.0094594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46538472,2.213684077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410438535,102.8615627,96.87582325,105.0752468,588.8327204,0,0.682008548,46.99920187,-0.682008548,133.0007981,0.976687136,0,671.9811664,105.0752468,740.7508139,9,11,10% +9/29/2018 20:00,40.46535616,180.3074393,766.1290926,871.2753088,103.2641318,795.9340111,690.0082692,105.9257419,100.1503372,5.775404714,188.870663,0,188.870663,3.113794577,185.7568684,0.706253698,3.146958482,0.296052308,-0.296052308,0.479525763,0.134786856,3.174617817,102.1066217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.2683135,2.255933571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.299999802,98.14876857,98.56831331,100.4047021,690.0082692,0,0.791952053,37.63169013,-0.791952053,142.3683099,0.986864865,0,779.5132305,100.4047021,845.2261,9,12,8% +9/29/2018 21:00,42.8585645,202.645767,733.672315,862.8188618,101.195895,833.9927443,730.3175471,103.6751972,98.14446537,5.530731815,180.9387765,0,180.9387765,3.051429607,177.8873469,0.748023063,3.53683585,0.628625768,-0.628625768,0.422652352,0.137930644,2.778010736,89.35037462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.34019322,2.210750363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012659322,85.88697869,96.35285254,88.09772906,730.3175471,0,0.846432061,32.17430451,-0.846432061,147.8256955,0.990928514,0,820.0453339,88.09772906,877.7035356,9,13,7% +9/29/2018 22:00,49.19983844,221.5855697,640.7887217,835.1968585,95.05210324,800.0289021,703.0124344,97.01646767,92.18593162,4.830536054,158.232816,0,158.232816,2.866171617,155.3666444,0.858699172,3.867397767,1.018938063,-1.018938063,0.355905018,0.148336105,2.180733712,70.13989241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.61262393,2.07653158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.579934151,67.42113249,90.19255809,69.49766407,703.0124344,0,0.841732613,32.6764659,-0.841732613,147.3235341,0.990598714,0,786.5957713,69.49766407,832.0806025,9,14,6% +9/29/2018 23:00,58.1695686,236.5305138,494.5694587,777.6317665,84.44092594,690.7701605,605.1471666,85.62299395,81.89472047,3.728273486,122.4602967,0,122.4602967,2.546205471,119.9140912,1.015250497,4.128236247,1.566613913,-1.566613913,0.262246932,0.170736232,1.447346008,46.55162284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72032033,1.844717196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048597256,44.74719055,79.76891758,46.59190775,605.1471666,0,0.778192446,38.90462589,-0.778192446,141.0953741,0.985748541,0,676.2918541,46.59190775,706.7853259,9,15,5% +9/29/2018 0:00,68.67498217,248.4954166,307.4096497,659.0022711,67.75819338,503.1187614,435.0863438,68.03241764,65.71503385,2.31738379,76.57818816,0,76.57818816,2.043159532,74.53502863,1.198604553,4.337063196,2.560678792,-2.560678792,0.092251826,0.220416612,0.677451469,21.78916798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.16779013,1.480262125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.490811283,20.94457705,63.65860141,22.42483918,435.0863438,0,0.660219794,48.6833623,-0.660219794,131.3166377,0.974267645,0,487.5491488,22.42483918,502.2257576,9,16,3% +9/29/2018 1:00,79.99285068,258.6592308,103.385929,376.281805,37.99904099,224.3695068,186.7369103,37.6325965,36.8532297,0.779366803,26.21292674,0,26.21292674,1.145811287,25.06711545,1.396138622,4.514455218,5.602548352,-5.602548352,0,0.367545578,0.286452822,9.213307425,0.29968973,1,0.176630141,0,0.941977839,0.980739802,0.724496596,1,35.71532136,0.830136377,0.044894076,0.312029739,0.880589114,0.60508571,0.961238037,0.922476074,0.196979641,8.856181542,35.912301,9.68631792,130.773776,0,0.496268775,60.24655038,-0.496268775,119.7534496,0.949248144,0,160.0490652,9.68631792,166.3885666,9,17,4% +9/29/2018 2:00,91.84790026,267.9829022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603048271,4.677183982,-29.48097894,29.48097894,0,#DIV/0!,0,0,1,0.781262892,0,0.033907176,0.961238037,1,0.632844576,0.908347981,0,0,0.115824807,0.208034967,0.724496596,0.448993192,0.976568177,0.937806214,0,0,0,0,0,0,0.294841173,72.85198634,-0.294841173,107.1480137,0.880417172,0,0,0,0,9,18,0% +9/29/2018 3:00,103.6796203,277.2832951,0,0,0,0,0,0,0,0,0,0,0,0,0,1.809550742,4.83950646,-3.65144676,3.65144676,0.845412138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073117758,85.80691922,-0.073117758,94.19308078,0,0,0,0,0,9,19,0% +9/29/2018 4:00,115.2525973,287.4063254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011537295,5.016186668,-1.684059954,1.684059954,0.818144903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155162311,98.92620989,0.155162311,81.07379011,0,0.727756798,0,0,0,9,20,0% +9/29/2018 5:00,126.1321136,299.4336393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201420675,5.226102898,-0.890773567,0.890773567,0.682484941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374444959,111.990012,0.374444959,68.00998795,0,0.916469026,0,0,0,9,21,0% +9/29/2018 6:00,135.6029588,314.8674859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366718107,5.495474337,-0.415866974,0.415866974,0.601271131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56979058,124.7356236,0.56979058,55.26437644,0,0.962248462,0,0,0,9,22,0% +9/29/2018 7:00,142.4376303,335.3252688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486005627,5.852530006,-0.062677421,0.062677421,0.54087216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727892278,136.7099861,0.727892278,43.29001394,0,0.981308517,0,0,0,9,23,0% +9/30/2018 8:00,144.9725415,0.419338428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530248175,0.007318836,0.244543535,-0.244543535,0.488334282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837982647,146.9277012,0.837982647,33.07229878,0,0.990332893,0,0,0,9,0,0% +9/30/2018 9:00,142.3069441,25.43541824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.483724723,0.443931795,0.550513715,-0.550513715,0.4360103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89256744,153.1976647,0.89256744,26.80233534,0,0.993981824,0,0,0,9,1,0% +9/30/2018 10:00,135.3852445,45.75188097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362918275,0.798520962,0.899596071,-0.899596071,0.376313701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88793619,152.6150443,0.88793619,27.3849557,0,0.993689647,0,0,0,9,2,0% +9/30/2018 11:00,125.8700585,61.07967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196846951,1.066041348,1.366239667,-1.366239667,0.296512946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824415025,145.5292286,0.824415025,34.47077138,0,0.989350936,0,0,0,9,3,0% +9/30/2018 12:00,114.9738243,73.04999296,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006671788,1.274962896,2.144025959,-2.144025959,0.163503657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706344487,134.9382657,0.706344487,45.06173428,0,0.97921301,0,0,0,9,4,0% +9/30/2018 13:00,103.4022571,83.15419661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804709841,1.451314518,4.086707294,-4.086707294,0,#DIV/0!,0,0,0.144358977,1,0.239980253,0,0.93334145,0.972103413,0.724496596,1,0,0,0.023114655,0.312029739,0.93654216,0.661038756,0.961238037,0.922476074,0,0,0,0,0,0,-0.541783807,122.805153,0.541783807,57.19484696,0,0.957712266,0,0,0,9,5,0% +9/30/2018 14:00,91.5866731,92.46572803,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598488997,1.613831399,33.36160937,-33.36160937,0,#DIV/0!,0,0,0.83805714,1,0.029965601,0,0.958487816,0.997249779,0.724496596,1,0,0,0.102467051,0.312029739,0.750812704,0.4753093,0.961238037,0.922476074,0,0,0,0,0,0,-0.341961731,109.9964385,0.341961731,70.00356152,0,0.903784808,0,0,0,9,6,0% +9/30/2018 15:00,79.7652179,101.8280455,107.416594,386.4926806,38.74373366,38.3852188,0,38.3852188,37.57546714,0.809751658,73.20591552,45.99325217,27.21266335,1.168266519,26.04439683,1.392165681,1.777234666,-4.705678556,4.705678556,0.665127883,0.360686671,0.636393377,20.46859859,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.11896827,0.846405116,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.461064835,19.67519553,36.5800331,20.52160064,0,45.99325217,-0.119001612,96.83448631,0.119001612,83.16551369,0,0.629837626,36.5800331,49.4898814,68.97017068,9,7,89% +9/30/2018 16:00,68.49775664,112.0594936,310.9207566,663.076598,67.87821471,139.902209,71.72692095,68.17528809,65.83143609,2.343851997,77.43311578,0,77.43311578,2.046778617,75.38633716,1.195511384,1.955807122,-1.884601787,1.884601787,0.852439576,0.218313552,2.073498083,66.69082596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.27968039,1.482884141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502242303,64.10575862,64.78192269,65.58864276,71.72692095,0,0.108172904,83.78999784,-0.108172904,96.21000216,0.587777037,0,106.9413598,65.58864276,149.8678147,9,8,40% +9/30/2018 17:00,58.07297982,124.1217736,496.5199446,779.4941281,84.29332732,340.2510686,254.7565191,85.49454956,81.75157249,3.742977073,122.9287639,0,122.9287639,2.541754828,120.3870091,1.013564704,2.166333624,-0.940562969,0.940562969,0.69099943,0.169768261,2.782745948,89.50267531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58272105,1.84149272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016089967,86.03337591,80.59881102,87.87486863,254.7565191,0,0.326822884,70.92394949,-0.326822884,109.0760505,0.897011937,0,309.1184496,87.87486863,366.6307937,9,9,19% +9/30/2018 18:00,49.22536915,139.179255,640.7064671,836.0101475,94.7204779,532.7879041,436.0936821,96.69422199,91.86430601,4.829915985,158.2028727,0,158.2028727,2.85617189,155.3467008,0.859144767,2.429136251,-0.412156272,0.412156272,0.600636563,0.147837556,3.186186793,102.4787197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30346516,2.069286811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308381486,98.50644337,90.61184665,100.5757302,436.0936821,0,0.521636829,58.55788909,-0.521636829,121.4421109,0.954147872,0,506.7097055,100.5757302,572.5345094,9,10,13% +9/30/2018 19:00,43.05407109,158.1839289,731.2724443,862.9553703,100.7025314,689.334939,586.1563199,103.1786191,97.66597855,5.512640576,180.3420234,0,180.3420234,3.036552875,177.3054705,0.751435297,2.760830382,-0.029608405,0.029608405,0.535217025,0.137708637,3.303293609,106.2452775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.88025349,2.199972221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393224975,102.1270019,96.27347847,104.3269742,586.1563199,0,0.679242913,47.21549008,-0.679242913,132.7845099,0.976388632,0,668.5898458,104.3269742,736.8697639,9,11,10% +9/30/2018 20:00,40.85373329,180.4302291,761.2828563,870.8141166,102.614794,792.2113327,686.9518816,105.2594511,99.52057937,5.738871738,187.676057,0,187.676057,3.094214648,184.5818423,0.713032158,3.149101569,0.301877861,-0.301877861,0.478529535,0.134791941,3.149605012,101.3021239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.66296634,2.241747979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281878109,97.37545468,97.94484444,99.61720266,686.9518816,0,0.788861674,37.92073997,-0.788861674,142.07926,0.986617532,0,775.7036142,99.61720266,840.901081,9,12,8% +9/30/2018 21:00,43.25303419,202.5872926,728.4973268,862.2041944,100.5241074,829.8269549,726.8422996,102.9846552,97.49293467,5.491720568,179.6637839,0,179.6637839,3.031172733,176.6326111,0.754907858,3.535815279,0.636655292,-0.636655292,0.421279222,0.1379883,2.752098431,88.51694583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.71391713,2.196074326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993885945,85.08585524,95.70780308,87.28192956,726.8422996,0,0.843004829,32.54120422,-0.843004829,147.4587958,0.990688359,0,815.7820079,87.28192956,872.9062852,9,13,7% +9/30/2018 22:00,49.57309465,221.4096936,635.3399466,834.2393436,94.35455436,795.3746283,699.075751,96.2988773,91.50941641,4.789460886,156.8906637,0,156.8906637,2.845137945,154.0455258,0.865213722,3.864328149,1.0307406,-1.0307406,0.353886666,0.148510345,2.154496735,69.29602103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96233179,2.061292756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.56092555,66.60997122,89.52325734,68.67126398,699.075751,0,0.837979839,33.07259355,-0.837979839,146.9274064,0.990332693,0,781.8408287,68.67126398,826.7847976,9,14,6% +9/30/2018 23:00,58.51514552,236.3026293,488.9373268,775.9041372,83.70342098,685.5303342,600.6650641,84.8652701,81.179454,3.685816097,121.0724826,0,121.0724826,2.523966975,118.5485156,1.021281952,4.124258913,1.586382932,-1.586382932,0.258866231,0.171194581,1.421782609,45.72941607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.032779,1.828605482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.030076661,43.95685413,79.06285566,45.78545961,600.6650641,0,0.774148552,39.27209901,-0.774148552,140.727901,0.985412913,0,670.9659661,45.78545961,700.9316337,9,15,4% +9/30/2018 0:00,68.99756197,248.2491156,301.7669538,655.2479544,66.9210582,496.9826867,429.8046985,67.17798815,64.90314138,2.274846765,75.18480851,0,75.18480851,2.017916817,73.16689169,1.204234632,4.332764432,2.603541663,-2.603541663,0.084921843,0.221764038,0.654822081,21.06132906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.38736821,1.461973865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474416368,20.2449506,62.86178458,21.70692446,429.8046985,0,0.655942068,49.00887878,-0.655942068,130.9911212,0.973773756,0,481.3943203,21.70692446,495.6010682,9,16,3% +9/30/2018 1:00,80.29885801,258.4065605,98.436811,365.938197,36.77292181,216.3942077,179.9880669,36.4061408,35.66408254,0.742058261,24.97598376,0,24.97598376,1.10883927,23.86714449,1.401479458,4.510045289,5.786689157,-5.786689157,0,0.373568805,0.277209818,8.916020634,0.31480025,1,0.171120332,0,0.942687168,0.981449131,0.724496596,1,34.56729985,0.803350277,0.046863173,0.312029739,0.875714915,0.600211511,0.961238037,0.922476074,0.190426526,8.570418171,34.75772638,9.373768447,123.3277784,0,0.491853729,60.53750519,-0.491853729,119.4624948,0.948343762,0,151.7148556,9.373768447,157.8497996,9,17,4% +9/30/2018 2:00,92.15030722,267.7262411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.608326268,4.672704402,-25.3684089,25.3684089,0,#DIV/0!,0,0,1,0.741495667,0,0.039398708,0.961238037,1,0.61885084,0.894354244,0,0,0.115824807,0.192197498,0.724496596,0.448993192,0.978699162,0.939937199,0,0,0,0,0,0,0.290294023,73.12444044,-0.290294023,106.8755596,0.877760835,0,0,0,0,9,18,0% +9/30/2018 3:00,103.9842837,277.0219479,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81486812,4.834945091,-3.577113987,3.577113987,0.858123791,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.068570398,86.06812024,-0.068570398,93.93187976,0,0,0,0,0,9,19,0% +9/30/2018 4:00,115.5686082,287.1412461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017052724,5.011560163,-1.666121343,1.666121343,0.81507722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159622229,99.18496972,0.159622229,80.81503028,0,0.73676042,0,0,0,9,20,0% +9/30/2018 5:00,126.4693312,299.1749961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207306232,5.221588721,-0.88448338,0.88448338,0.681409256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378735847,112.2554,0.378735847,67.74459995,0,0.917981865,0,0,0,9,21,0% +9/30/2018 6:00,135.969736,314.6518373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373119576,5.491710559,-0.41386568,0.41386568,0.600928889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573842529,125.018614,0.573842529,54.98138597,0,0.962868082,0,0,0,9,22,0% +9/30/2018 7:00,142.8306586,335.2405693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.492865266,5.85105172,-0.062909407,0.062909407,0.540911832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731651863,137.0250549,0.731651863,42.97494511,0,0.981661487,0,0,0,9,23,0% +10/1/2018 8:00,145.3598791,0.566424087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53700849,0.009885965,0.242704073,-0.242704073,0.488648849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841416598,147.2900125,0.841416598,32.70998745,0,0.990576404,0,0,0,10,0,0% +10/1/2018 9:00,142.6436779,25.77852396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.489601837,0.449920119,0.547054553,-0.547054553,0.436601851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895664919,153.5939646,0.895664919,26.40603538,0,0.994175552,0,0,0,10,1,0% +10/1/2018 10:00,135.6581637,46.16197276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.367681614,0.805678414,0.89391503,-0.89391503,0.377285216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890709523,152.9625411,0.890709523,27.03745891,0,0.993864977,0,0,0,10,2,0% +10/1/2018 11:00,126.0931626,61.48436145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200740852,1.073104546,1.356563926,-1.356563926,0.298167595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826898843,145.7814797,0.826898843,34.21852027,0,0.989533112,0,0,0,10,3,0% +10/1/2018 12:00,115.1656961,73.43271788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010020582,1.281642706,2.124596146,-2.124596146,0.16682635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708593328,135.1205795,0.708593328,44.87942046,0,0.979437665,0,0,0,10,4,0% +10/1/2018 13:00,103.5785778,83.519063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807787217,1.457682638,4.025559145,-4.025559145,0,#DIV/0!,0,0,0.136634101,1,0.243484173,0,0.932838337,0.9716003,0.724496596,1,0,0,0.021952752,0.312029739,0.9396321,0.664128696,0.961238037,0.922476074,0,0,0,0,0,0,-0.543868347,122.9473643,0.543868347,57.0526357,0,0.958065986,0,0,0,10,5,0% +10/1/2018 14:00,91.76042121,92.82191421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601521473,1.620048021,29.98927312,-29.98927312,0,#DIV/0!,0,0,0.821374794,1,0.033332906,0,0.958165281,0.996927244,0.724496596,1,0,0,0.101005377,0.312029739,0.753779511,0.478276106,0.961238037,0.922476074,0,0,0,0,0,0,-0.343963913,110.118562,0.343963913,69.881438,0,0.904635914,0,0,0,10,6,0% +10/1/2018 15:00,79.94683393,102.1848052,104.5291121,381.1577062,37.99348781,37.63582858,0,37.63582858,36.84784398,0.7879846,72.6041159,46.11417865,26.48993726,1.145643839,25.34429342,1.395335479,1.783461297,-4.773893192,4.773893192,0.653462493,0.363472788,0.614170521,19.75383516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.41954921,0.830015061,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.444964452,18.98813773,35.86451366,19.81815279,0,46.11417865,-0.120984511,96.94892489,0.120984511,83.05107511,0,0.636723956,35.86451366,49.18015507,68.05194154,10,7,90% +10/1/2018 16:00,68.70225225,112.4234676,307.4436348,661.2403119,67.27149535,137.7053026,70.14465107,67.56065154,65.24301156,2.317639984,76.5717525,0,76.5717525,2.02848379,74.54326871,1.199080505,1.962159667,-1.893551398,1.893551398,0.85397005,0.218809199,2.053249979,66.03957734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.71406435,1.469629601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48757262,63.47975367,64.20163697,64.94938327,70.14465107,0,0.106080422,83.91058217,-0.106080422,96.08941783,0.57865949,0,104.791505,64.94938327,147.2995774,10,8,41% +10/1/2018 17:00,58.31344934,124.4917821,492.6968022,778.6428368,83.69758343,337.5998178,252.7118687,84.88794909,81.17379248,3.714156611,121.9838349,0,121.9838349,2.523790952,119.4600439,1.017761689,2.172791488,-0.940921222,0.940921222,0.691060695,0.169876449,2.761632205,88.82358476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02733693,1.828477953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.000793132,85.38060824,80.02813006,87.2090862,252.7118687,0,0.324554284,71.06142636,-0.324554284,108.9385736,0.895942567,0,306.4434503,87.2090862,363.5200531,10,9,19% +10/1/2018 18:00,49.51583884,139.533607,636.5359029,835.4804261,94.11041498,529.7903355,433.7192203,96.07111525,91.27263874,4.79847651,157.1732755,0,157.1732755,2.837776242,154.3354992,0.86421442,2.435320859,-0.409626059,0.409626059,0.600203871,0.147847772,3.163697167,101.755376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73473208,2.055959227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292087828,97.81113788,90.02681991,99.86709711,433.7192203,0,0.519125532,58.72638786,-0.519125532,121.2736121,0.953684182,0,503.6579799,99.86709711,569.0189976,10,10,13% +10/1/2018 19:00,43.40105686,158.4620204,726.7431002,862.5151562,100.0723658,685.9709775,583.4376663,102.5333112,97.05481474,5.478496467,179.2248296,0,179.2248296,3.017551056,176.2072786,0.757491341,2.765683994,-0.025381872,0.025381872,0.534494245,0.137699781,3.27939668,105.4766701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29277958,2.186205468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375911731,101.3881873,95.66869131,103.5743928,583.4376663,0,0.676437582,47.4341136,-0.676437582,132.5658864,0.97608335,0,665.1524831,103.5743928,732.9398517,10,11,10% +10/1/2018 20:00,41.24173605,180.5491493,756.4012552,870.3386835,101.963225,788.4427547,683.852025,104.5907297,98.88865755,5.702072167,186.4728091,0,186.4728091,3.074567438,183.3982416,0.719804083,3.151177117,0.307738609,-0.307738609,0.477527288,0.134800444,3.124489454,100.4943212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05553905,2.227513642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.263681974,96.59896404,97.31922102,98.82647768,683.852025,0,0.785730932,38.21166883,-0.785730932,141.7883312,0.986364985,0,771.8469131,98.82647768,836.5268662,10,12,8% +10/1/2018 21:00,43.64666564,202.5280907,723.294149,861.5742373,99.85046042,825.6178992,723.3258017,102.2920975,96.83960063,5.452496816,178.3819002,0,178.3819002,3.010859791,175.3710404,0.761778023,3.53478201,0.644750621,-0.644750621,0.41989484,0.13804959,2.726129102,87.68168294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.0859076,2.181357669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975071255,84.28296878,95.06097886,86.46432645,723.3258017,0,0.839539729,32.90845198,-0.839539729,147.091548,0.990443557,0,811.4743588,86.46432645,868.0635312,10,13,7% +10/1/2018 22:00,49.94550582,221.2346456,629.872918,833.2620292,93.65554841,790.6824939,695.1027577,95.57973619,90.83148807,4.748248115,155.5440417,0,155.5440417,2.824060337,152.7199814,0.871713523,3.861272986,1.042673025,-1.042673025,0.351846101,0.148689594,2.128259015,68.45212578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.31068128,2.0460221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.541916412,65.798787,88.85259769,67.8448091,695.1027577,0,0.834194687,33.4679236,-0.834194687,146.5320764,0.990061953,0,777.0473918,67.8448091,821.4504625,10,14,6% +10/1/2018 23:00,58.85987919,236.0756559,483.2993931,774.1430283,82.96464529,680.2586537,596.1523836,84.1062701,80.46295513,3.643314972,119.6832235,0,119.6832235,2.501690163,117.1815333,1.027298689,4.120297479,1.606461307,-1.606461307,0.255432626,0.171663045,1.39629073,44.9095096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34405303,1.812466007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011607881,43.16872885,78.35566091,44.98119485,596.1523836,0,0.770080414,39.63888951,-0.770080414,140.3611105,0.985071716,0,665.6085122,44.98119485,695.0478046,10,15,4% +10/1/2018 0:00,69.31916962,248.0033214,296.1351539,651.4118144,66.08135263,490.8139428,424.4927948,66.32114792,64.08875604,2.232391878,73.79399319,0,73.79399319,1.992596596,71.8013966,1.209847745,4.328474515,2.64749495,-2.64749495,0.077405388,0.223145924,0.632388881,20.33980024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.60455004,1.443629451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.458163592,19.55138965,62.06271363,20.9950191,424.4927948,0,0.651650439,49.33384621,-0.651650439,130.6661538,0.973271747,0,475.2095575,20.9950191,488.9503776,10,16,3% +10/1/2018 1:00,80.60356968,258.153907,93.55034705,355.3441003,35.53527164,208.3772862,173.2083121,35.16897412,34.46375209,0.705222032,23.75388428,0,23.75388428,1.071519551,22.68236473,1.40679768,4.505635655,5.98175755,-5.98175755,0,0.379851842,0.267879888,8.615938023,0.330112109,1,0.165643179,0,0.943385563,0.982147526,0.724496596,1,33.40749782,0.776312267,0.04883345,0.312029739,0.870868508,0.595365104,0.961238037,0.922476074,0.183849212,8.281967351,33.59134703,9.058279618,116.0301508,0,0.487438266,60.82765515,-0.487438266,119.1723448,0.947422908,0,143.5209699,9.058279618,149.4494327,10,17,4% +10/1/2018 2:00,92.45131267,267.4690757,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613579804,4.668216017,-22.28189722,22.28189722,0,#DIV/0!,0,0,1,0.700651012,0,0.044849387,0.961238037,1,0.605196688,0.880700093,0,0,0.115824807,0.176755607,0.724496596,0.448993192,0.980723571,0.941961607,0,0,0,0,0,0,0.285756278,73.39593976,-0.285756278,106.6040602,0.875025716,0,0,0,0,10,18,0% +10/1/2018 3:00,104.2873058,276.7594827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820156855,4.830364209,-3.506249106,3.506249106,0.870242399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064044281,86.32801984,-0.064044281,93.67198016,0,0,0,0,0,10,19,0% +10/1/2018 4:00,115.8827924,286.8742402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022536273,5.00690003,-1.648701298,1.648701298,0.812098217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164050134,99.44205928,0.164050134,80.55794072,0,0.745215123,0,0,0,10,20,0% +10/1/2018 5:00,126.8046837,298.9133494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213159238,5.217022125,-0.878347208,0.878347208,0.680359909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38298576,112.5187505,0.38298576,67.48124946,0,0.919446843,0,0,0,10,21,0% +10/1/2018 6:00,136.3349098,314.4321523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379493062,5.487876331,-0.411923628,0.411923628,0.600596779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577846963,125.2992516,0.577846963,54.70074844,0,0.9634719,0,0,0,10,22,0% +10/1/2018 7:00,143.2226764,335.1525088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.499707266,5.849514774,-0.063164762,0.063164762,0.5409555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735360266,137.3376669,0.735360266,42.66233309,0,0.982006117,0,0,0,10,23,0% +10/2/2018 8:00,145.7465118,0.71401862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543756504,0.012461976,0.240859802,-0.240859802,0.488964238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844798823,147.6503878,0.844798823,32.34961216,0,0.990814311,0,0,0,10,0,0% +10/2/2018 9:00,142.979367,26.1245335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495460717,0.455959125,0.543604997,-0.543604997,0.43719176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898713288,153.9894467,0.898713288,26.01055326,0,0.994364904,0,0,0,10,1,0% +10/2/2018 10:00,135.9299315,46.57402871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372424856,0.812870147,0.88826254,-0.88826254,0.378251849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893439343,153.3086667,0.893439343,26.69133334,0,0.994036492,0,0,0,10,2,0% +10/2/2018 11:00,126.3154508,61.88966828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204620512,1.080178484,1.346957835,-1.346957835,0.299810334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829347337,146.031752,0.829347337,33.96824799,0,0.989711629,0,0,0,10,3,0% +10/2/2018 12:00,115.3572542,73.81520166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013363901,1.288318307,2.105380261,-2.105380261,0.17011246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710817061,135.3014326,0.710817061,44.69856741,0,0.979658413,0,0,0,10,4,0% +10/2/2018 13:00,103.7550961,83.88315255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810868042,1.464037199,3.96575152,-3.96575152,0,#DIV/0!,0,0,0.128942443,1,0.247009643,0,0.932329481,0.971091444,0.724496596,1,0,0,0.020787885,0.312029739,0.942740564,0.66723716,0.961238037,0.922476074,0,0,0,0,0,0,-0.54593932,123.0888769,0.54593932,56.9111231,0,0.95841473,0,0,0,10,5,0% +10/2/2018 14:00,91.93483748,93.17688336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.604565611,1.626243401,27.21244311,-27.21244311,0,#DIV/0!,0,0,0.804818948,1,0.036731367,0,0.957837012,0.996598975,0.724496596,1,0,0,0.099537914,0.312029739,0.756775342,0.481271938,0.961238037,0.922476074,0,0,0,0,0,0,-0.345964594,110.2406893,0.345964594,69.75931069,0,0.905476541,0,0,0,10,6,0% +10/2/2018 15:00,80.12947155,102.5398363,101.6358729,375.6808376,37.23577661,36.8791547,0,36.8791547,36.11298056,0.766174141,71.96559647,46.20000632,25.76559014,1.12279605,24.64279409,1.398523106,1.789657758,-4.844986421,4.844986421,0.641304835,0.366364508,0.59203656,19.04193089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.71317054,0.813461916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.428928472,18.30382826,35.14209901,19.11729018,0,46.20000632,-0.122976744,97.06393029,0.122976744,82.93606971,0,0.643419063,35.14209901,48.84325494,67.10903251,10,7,91% +10/2/2018 16:00,68.90812989,112.7849744,303.937719,659.3500187,66.66110396,135.4930256,68.55078893,66.94223664,64.65102573,2.29121091,75.70329709,0,75.70329709,2.010078238,73.69321885,1.202673748,1.968469151,-1.902770923,1.902770923,0.855546681,0.219324881,2.032828508,65.38275263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14502505,1.456294841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472777334,62.84838878,63.61780238,64.30468362,68.55078893,0,0.103967221,84.032333,-0.103967221,95.967667,0.56907919,0,102.6286298,64.30468362,144.7147592,10,8,41% +10/2/2018 17:00,58.55543505,124.8582076,488.8374512,777.7635091,83.09894015,334.9172924,250.6390287,84.27826369,80.5932005,3.685063193,121.0300393,0,121.0300393,2.505739648,118.5242996,1.021985137,2.179186822,-0.941340031,0.941340031,0.691132316,0.16999299,2.740351759,88.13913246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46924983,1.815399845,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.985375521,84.72268666,79.45462535,86.5380865,250.6390287,0,0.322256092,71.20058125,-0.322256092,108.7994187,0.894843895,0,303.73743,86.5380865,360.3748769,10,9,19% +10/2/2018 18:00,49.80758603,139.8829562,632.3263631,834.9317284,93.49769951,526.7527542,431.3076121,95.44514212,90.6783989,4.766743221,156.1341482,0,156.1341482,2.81930061,153.3148475,0.869306369,2.441418153,-0.407106204,0.407106204,0.599772951,0.147863042,3.141053738,101.0270855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16352614,2.042573695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275682741,97.11107735,89.43920888,99.15365105,431.3076121,0,0.516578299,58.89699084,-0.516578299,121.1030092,0.953209252,0,500.5656151,99.15365105,565.4596967,10,10,13% +10/2/2018 19:00,43.74854582,158.7344064,722.1757574,862.0596931,99.43977229,682.5626448,580.6772827,101.8853622,96.44129626,5.444065907,178.0983495,0,178.0983495,2.998476028,175.0998734,0.763556167,2.770438028,-0.021142609,0.021142609,0.533769289,0.137694697,3.25537059,104.7039084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.70304229,2.172385675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.35850491,100.6453794,95.0615472,102.8177651,580.6772827,0,0.673592893,47.65502463,-0.673592893,132.3449754,0.975771188,0,661.6697093,102.8177651,728.9618802,10,11,10% +10/2/2018 20:00,41.62925808,180.6641607,751.4860998,869.8491823,101.3095353,784.6293654,680.7096667,103.9196987,98.25467904,5.665019649,185.2613616,0,185.2613616,3.054856282,182.2065053,0.726567619,3.153184444,0.313632481,-0.313632481,0.476519377,0.134812254,3.099281149,99.68353546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.44613479,2.213232978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245418642,95.81960593,96.69155344,98.03283891,680.7096667,0,0.782560564,38.5043802,-0.782560564,141.4956198,0.986107182,0,767.9442443,98.03283891,832.1047767,10,12,8% +10/2/2018 21:00,44.0393402,202.46808,718.0649953,860.9292605,99.17509082,821.3671689,719.7694957,101.5976732,96.18459592,5.413077247,177.0936665,0,177.0936665,2.990494905,174.1031716,0.768631487,3.533734627,0.652909634,-0.652909634,0.418499566,0.138114365,2.700114001,86.84494786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45629215,2.166603379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956223402,83.4786672,94.41251556,85.64527057,719.7694957,0,0.836037905,33.27593282,-0.836037905,146.7240672,0.990194099,0,807.124023,85.64527057,863.1771397,10,13,7% +10/2/2018 22:00,50.31693917,221.0603501,624.3901967,832.2652923,92.9552498,785.9545919,691.0953688,94.85922309,90.15230605,4.706917046,154.1935759,0,154.1935759,2.80294375,151.3906321,0.878196258,3.858230955,1.054733354,-1.054733354,0.349783663,0.148873654,2.102032641,67.60859542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.65782568,2.030723205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.522915493,64.98795354,88.18074117,67.01867674,691.0953688,0,0.830378697,33.86234101,-0.830378697,146.137659,0.989786509,0,772.2176138,67.01867674,816.0799974,10,14,6% +10/2/2018 23:00,59.20363057,235.8495501,477.6584914,772.3488856,82.22479378,674.95767,591.6114656,83.34620434,79.74541287,3.600791472,118.2932123,0,118.2932123,2.47938091,115.8138314,1.033298283,4.116351189,1.626849343,-1.626849343,0.251946067,0.172141384,1.370882909,44.09230674,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.65432411,1.796303029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993200001,42.38320237,77.64752411,44.1795054,591.6114656,0,0.765989926,40.00485923,-0.765989926,139.9951408,0.98472499,0,660.2221187,44.1795054,689.1367214,10,15,4% +10/2/2018 0:00,69.63966489,247.7580169,290.5173482,647.4938184,65.23929197,484.6153703,419.1532412,65.4621291,63.27208661,2.190042485,72.40649991,0,72.40649991,1.96720536,70.43929455,1.215441442,4.324193143,2.692564596,-2.692564596,0.069698025,0.224562465,0.610165394,19.6250165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.81953632,1.425233587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.442062751,18.86431233,61.26159907,20.28954592,419.1532412,0,0.647347093,49.65811859,-0.647347093,130.3418814,0.972761683,0,468.9978114,20.28954592,482.2769134,10,16,3% +10/2/2018 1:00,80.9068371,257.9012684,88.73191314,344.5028889,34.28659454,200.3251063,166.4034805,33.92162585,33.25272721,0.668898642,22.54794697,0,22.54794697,1.033867329,21.51407964,1.412090695,4.501226279,6.188666971,-6.188666971,0,0.386406574,0.258466832,8.313181803,0.345622839,1,0.160200985,0,0.944072834,0.982834797,0.724496596,1,32.23644997,0.749033361,0.050804073,0.312029739,0.866052008,0.590548604,0.961238037,0.922476074,0.177248508,7.990946556,32.41369848,8.739979917,108.8906372,0,0.48302492,61.11684859,-0.48302492,118.8831514,0.946485672,0,135.4771264,8.739979917,141.1972685,10,17,4% +10/2/2018 2:00,92.75077683,267.2114108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618806439,4.663718917,-19.88092443,19.88092443,0,#DIV/0!,0,0,1,0.65870214,0,0.050257116,0.961238037,1,0.591882364,0.867385768,0,0,0.115824807,0.161707897,0.724496596,0.448993192,0.982645163,0.943883199,0,0,0,0,0,0,0.281230425,73.66634597,-0.281230425,106.333654,0.872209848,0,0,0,0,10,18,0% +10/2/2018 3:00,104.5885449,276.4959044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825414468,4.8257639,-3.438646606,3.438646606,0.881803108,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059541892,86.58648189,-0.059541892,93.41351811,0,0,0,0,0,10,19,0% +10/2/2018 4:00,116.1950036,286.6053013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027985387,5.002206162,-1.631787614,1.631787614,0.809205806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.168443649,99.69734182,0.168443649,80.30265818,0,0.753164825,0,0,0,10,20,0% +10/2/2018 5:00,127.1380197,298.6486593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218977049,5.212402412,-0.872364576,0.872364576,0.679336818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387192523,112.7799224,0.387192523,67.22007758,0,0.920865275,0,0,0,10,21,0% +10/2/2018 6:00,136.69833,314.2083179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385835941,5.483969685,-0.41004181,0.41004181,0.600274969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581801996,125.5773855,0.581801996,54.42261452,0,0.964060109,0,0,0,10,22,0% +10/2/2018 7:00,143.6135547,335.0608993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50652938,5.847915887,-0.063444635,0.063444635,0.541003361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739015949,137.6476569,0.739015949,42.3523431,0,0.982342462,0,0,0,10,23,0% +10/3/2018 8:00,146.1323459,0.86197523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550490579,0.015044306,0.239009604,-0.239009604,0.48928064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848128172,148.008659,0.848128172,31.99134105,0,0.991046646,0,0,0,10,0,0% +10/3/2018 9:00,143.313946,26.47331942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501300221,0.462046588,0.540163929,-0.540163929,0.437780217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901711795,154.3839954,0.901711795,25.61600462,0,0.99454991,0,0,0,10,1,0% +10/3/2018 10:00,136.2005149,46.98789139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377147429,0.820093413,0.882637331,-0.882637331,0.379213816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896125278,153.6533361,0.896125278,26.34666395,0,0.99420423,0,0,0,10,2,0% +10/3/2018 11:00,126.5369158,62.29543542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208485805,1.087260457,1.337419494,-1.337419494,0.301441486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831760475,146.2800083,0.831760475,33.71999168,0,0.98988654,0,0,0,10,3,0% +10/3/2018 12:00,115.5485044,74.19730333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016701848,1.294987239,2.086373206,-2.086373206,0.173362858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713015928,135.4808323,0.713015928,44.51916766,0,0.979875339,0,0,0,10,4,0% +10/3/2018 13:00,103.9318214,84.2463345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813952481,1.47037592,3.90723701,-3.90723701,0,#DIV/0!,0,0,0.121283285,1,0.250557009,0,0.931814789,0.970576752,0.724496596,1,0,0,0.019619968,0.312029739,0.945867857,0.670364453,0.961238037,0.922476074,0,0,0,0,0,0,-0.547997155,123.2297177,0.547997155,56.77028232,0,0.95875865,0,0,0,10,5,0% +10/3/2018 14:00,92.1099279,93.53050854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607621516,1.632415325,24.88604046,-24.88604046,0,#DIV/0!,0,0,0.788387102,1,0.040161563,0,0.957502881,0.996264844,0.724496596,1,0,0,0.098064537,0.312029739,0.759800652,0.484297248,0.961238037,0.922476074,0,0,0,0,0,0,-0.347964294,110.3628527,0.347964294,69.63714731,0,0.906307096,0,0,0,10,6,0% +10/3/2018 15:00,80.31312369,102.8930102,98.73784568,370.0584523,36.47047897,36.11508706,0,36.11508706,35.37075947,0.744327588,71.28930275,46.24944942,25.03985333,1.099719503,23.94013383,1.401728441,1.795821806,-4.919150173,4.919150173,0.628622087,0.369366768,0.570003645,18.3332766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.99971939,0.796743036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4129657,17.62264281,34.41268509,18.41938584,0,46.24944942,-0.124978768,97.17952966,0.124978768,82.82047034,0,0.649932046,34.41268509,48.47838512,66.14081859,10,7,92% +10/3/2018 16:00,69.11536823,113.1438822,300.4034502,657.4044764,66.04703215,133.2654533,66.94541478,66.32003854,64.05547044,2.264568099,74.82785616,0,74.82785616,1.991561707,72.83629446,1.206290739,1.974733273,-1.912273929,1.912273929,0.857171791,0.219861097,2.012236691,64.72044902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57255466,1.442879677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457858633,62.21175736,63.03041329,63.65463703,66.94541478,0,0.101832916,84.15527228,-0.101832916,95.84472772,0.558999624,0,100.452875,63.65463703,142.1135618,10,8,41% +10/3/2018 17:00,58.79889066,125.2209225,484.9425956,776.8558107,82.49743762,332.2035615,248.5380239,83.66553762,80.0098355,3.655702126,120.0675489,0,120.0675489,2.487602128,117.5799468,1.026234239,2.185517389,-0.941823771,0.941823771,0.69121504,0.170117945,2.718909822,87.44948608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.9084972,1.802259273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.969840911,84.05977232,78.87833811,85.8620316,248.5380239,0,0.319928126,71.34142168,-0.319928126,108.6585783,0.893714898,0,301.0004727,85.8620316,357.1954551,10,9,19% +10/3/2018 18:00,50.10053382,140.2272045,628.0789254,834.3640151,92.88239906,523.6755076,428.8591313,94.81637627,90.08165203,4.734724241,155.0857541,0,155.0857541,2.800747031,152.2850071,0.874419272,2.447426419,-0.40459933,0.40459933,0.59934425,0.147883324,3.1182636,100.2940763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58991035,2.02913169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259171363,96.40648104,88.84908172,98.43561273,428.8591313,0,0.513995239,59.06968102,-0.513995239,120.930319,0.952722834,0,497.4329688,98.43561273,561.8571087,10,10,13% +10/3/2018 19:00,44.09643721,159.0010465,717.5719035,861.5890823,98.80484286,679.1106851,577.8758127,101.2348724,95.82551229,5.409360112,176.9629463,0,176.9629463,2.979330563,173.9836158,0.769628018,2.775091775,-0.016892759,0.016892759,0.533042522,0.137693299,3.231224126,103.9272752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.11112732,2.158514851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.34101088,99.89884995,94.4521382,102.0573648,577.8758127,0,0.670709303,47.87816724,-0.670709303,132.1218328,0.975452055,0,658.1422874,102.0573648,724.9367916,10,11,10% +10/3/2018 20:00,42.01618993,180.7752334,746.5392868,869.3458132,100.6538412,780.7723669,677.5258818,103.246485,97.61875652,5.627728484,184.0421779,0,184.0421779,3.035084685,181.0070932,0.733320853,3.155123029,0.319557405,-0.319557405,0.475506155,0.134827253,3.073990341,98.87009614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.83486188,2.198908523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.227095538,95.03769711,96.06195741,97.23660564,677.5258818,0,0.779351406,38.79877095,-0.779351406,141.2012291,0.985844088,0,763.9968427,97.23660564,827.6362564,10,12,8% +10/3/2018 21:00,44.43093814,202.4071897,712.8121397,860.2695612,98.49813957,817.0764497,716.1749134,100.9015362,95.52805725,5.373479002,175.7996383,0,175.7996383,2.970082328,172.8295559,0.77546616,3.53267189,0.66113017,-0.66113017,0.417093772,0.138182466,2.674064497,86.00710625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.82520221,2.151814536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.937350625,82.67330197,93.76255284,84.8251165,716.1749134,0,0.832500586,33.64352794,-0.832500586,146.3564721,0.989939982,0,802.7327339,84.8251165,858.2490761,10,13,7% +10/3/2018 22:00,50.68726252,220.88674,618.8943755,831.2495416,92.25382597,781.1930861,687.0555661,94.13751996,89.47203274,4.665487225,152.8398999,0,152.8398999,2.781793233,150.0581067,0.88465962,3.855200887,1.066919495,-1.066919495,0.34769971,0.149062311,2.075829689,66.76581842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0039211,2.015399728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503931543,64.17784423,87.50785265,66.19324396,687.0555661,0,0.826533468,34.25572926,-0.826533468,145.7442707,0.989506382,0,767.35372,66.19324396,810.6758743,10,14,6% +10/3/2018 23:00,59.54626208,235.6242757,472.0174589,770.5221998,81.48406384,669.6299808,587.0446951,82.58528566,79.02701867,3.558266986,116.9031429,0,116.9031429,2.457045169,114.4460977,1.039278331,4.112419409,1.64754714,-1.64754714,0.248406535,0.172629343,1.345571546,43.27820629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.96377629,1.780120861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974862005,41.60065806,76.93863829,43.38077892,587.0446951,0,0.761879016,40.36987106,-0.761879016,139.6301289,0.984372782,0,654.8094582,43.38077892,683.2013103,10,15,4% +10/3/2018 0:00,69.95890957,247.5131906,284.9166126,643.494013,64.39509569,478.389842,413.7886743,64.60116773,62.45334596,2.147821775,71.0230811,0,71.0230811,1.941749728,69.08133137,1.221013313,4.319920118,2.738777,-2.738777,0.061795239,0.226013833,0.588164869,18.91740399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.03253166,1.406791068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.426123445,18.18412827,60.45865511,19.59091934,413.7886743,0,0.643034226,49.98155204,-0.643034226,130.018448,0.972243641,0,462.7620625,19.59091934,475.5839274,10,16,3% +10/3/2018 1:00,81.20851329,257.6486483,83.98696252,333.4193158,33.02748813,192.2446103,159.5798936,32.6647167,32.0315875,0.6331292,21.35951205,0,21.35951205,0.995900626,20.36361143,1.417355938,4.496817226,6.408433247,-6.408433247,0,0.393245417,0.248975156,8.007896876,0.361329636,1,0.154796017,0,0.944748807,0.98351077,0.724496596,1,31.0547818,0.721526613,0.052774189,0.312029739,0.861267508,0.585764104,0.961238037,0.922476074,0.170625575,7.697495072,31.22540738,8.419021685,101.9189488,0,0.478616223,61.4049357,-0.478616223,118.5950643,0.945532166,0,127.5930518,8.419021685,133.1031331,10,17,4% +10/3/2018 2:00,93.04856246,266.9532577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624003779,4.659213296,-17.96064417,17.96064417,0,#DIV/0!,0,0,1,0.615621856,0,0.055619865,0.961238037,1,0.578907614,0.854411018,0,0,0.115824807,0.147052052,0.724496596,0.448993192,0.984467771,0.945705808,0,0,0,0,0,0,0.27671891,73.9355238,-0.27671891,106.0644762,0.869311228,0,0,0,0,10,18,0% +10/3/2018 3:00,104.8878613,276.2312249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830638524,4.821144371,-3.374116694,3.374116694,0.892838373,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055065656,86.84337368,-0.055065656,93.15662632,0,0,0,0,0,10,19,0% +10/3/2018 4:00,116.5050978,286.3344315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033397551,4.997478592,-1.615368273,1.615368273,0.806397934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172800467,99.95068425,0.172800467,80.04931575,0,0.760648931,0,0,0,10,20,0% +10/3/2018 5:00,127.4691892,298.3808954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224757046,5.207729049,-0.866534827,0.866534827,0.678339873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.391354044,113.0387782,0.391354044,66.96122176,0,0.922238448,0,0,0,10,21,0% +10/3/2018 6:00,137.0598461,313.9802304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392145586,5.479988807,-0.408221054,0.408221054,0.599963601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585705818,125.8528685,0.585705818,54.14713151,0,0.964632912,0,0,0,10,22,0% +10/3/2018 7:00,144.0031633,334.9655576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513329333,5.846251861,-0.063750027,0.063750027,0.541055586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742617446,137.9548617,0.742617446,42.04513826,0,0.982670583,0,0,0,10,23,0% +10/4/2018 8:00,146.5172854,1.010149779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557209042,0.01763044,0.237152511,-0.237152511,0.489598222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851403551,148.364657,0.851403551,31.63534296,0,0.991273442,0,0,0,10,0,0% +10/4/2018 9:00,143.6473466,26.82475515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507119159,0.468180298,0.536730402,-0.536730402,0.438367385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904659727,154.777493,0.904659727,25.22250704,0,0.9947306,0,0,0,10,1,0% +10/4/2018 10:00,136.4698783,47.4034034,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381848706,0.827345466,0.877038357,-0.877038357,0.380171297,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898766975,153.9964619,0.898766975,26.0035381,0,0.994368227,0,0,0,10,2,0% +10/4/2018 11:00,126.7575466,62.70150833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21233654,1.094347766,1.327947352,-1.327947352,0.303061318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834138214,146.5262095,0.834138214,33.4737905,0,0.990057895,0,0,0,10,3,0% +10/4/2018 12:00,115.7394482,74.57888273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020034446,1.301647056,2.067570635,-2.067570635,0.176578287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715190132,135.6587834,0.715190132,44.34121663,0,0.980088521,0,0,0,10,4,0% +10/4/2018 13:00,104.108758,84.60847909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817040606,1.476696535,3.84997236,-3.84997236,0,#DIV/0!,0,0,0.113656186,1,0.254126496,0,0.931294183,0.970056147,0.724496596,1,0,0,0.018448956,0.312029739,0.94901418,0.673510776,0.961238037,0.922476074,0,0,0,0,0,0,-0.550042218,123.3699094,0.550042218,56.63009063,0,0.959097887,0,0,0,10,5,0% +10/4/2018 14:00,92.28569238,93.88266403,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610689185,1.638561598,22.90864679,-22.90864679,0,#DIV/0!,0,0,0.772077468,1,0.043623946,0,0.957162769,0.995924732,0.724496596,1,0,0,0.09658518,0.312029739,0.762855782,0.487352378,0.961238037,0.922476074,0,0,0,0,0,0,-0.349963446,110.4850793,0.349963446,69.5149207,0,0.907127935,0,0,0,10,6,0% +10/4/2018 15:00,80.4977765,103.2442005,95.83616674,364.2871583,35.69750031,35.34354247,0,35.34354247,34.62108897,0.722453506,70.57416454,46.26116502,24.31299952,1.076411344,23.23658818,1.40495124,1.801951232,-4.996589444,4.996589444,0.615379191,0.372484643,0.548085405,17.62831065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.27910759,0.779856355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.39708601,16.94500272,33.6761936,17.72485908,0,46.26116502,-0.12699093,97.29574405,0.12699093,82.70425595,0,0.656271094,33.6761936,48.08472443,65.14668405,10,7,93% +10/4/2018 16:00,69.32393887,113.5000622,296.8414064,655.4025105,65.42928396,131.0227779,65.32871234,65.69406555,63.45634964,2.237715908,73.94557001,0,73.94557001,1.97293432,71.97263569,1.209930984,1.980949786,-1.922073916,1.922073916,0.858847688,0.22041832,1.991478194,64.05278437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.99665695,1.429384199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442819172,61.5699727,62.43947613,62.9993569,65.32871234,0,0.099677238,84.27941526,-0.099677238,95.72058474,0.548380967,0,98.26449856,62.9993569,139.4963177,10,8,42% +10/4/2018 17:00,59.04376282,125.5798037,481.0130721,775.9194582,81.89312596,329.4588248,246.408999,83.04982577,79.42374605,3.626079718,119.0965682,0,119.0965682,2.469379901,116.6271883,1.030508064,2.191781048,-0.942376666,0.942376666,0.691309591,0.170251352,2.697312159,86.75483099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.34512574,1.789057332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954193477,83.39204343,78.29931921,85.18110076,246.408999,0,0.317570331,71.48394774,-0.317570331,108.5160523,0.892554561,0,298.2327953,85.18110076,353.9821221,10,9,19% +10/4/2018 18:00,50.39459904,140.5662613,623.7947895,833.7772849,92.26458942,520.5590769,426.3741767,94.18490024,89.48247163,4.702428615,154.0283866,0,154.0283866,2.782117791,151.2462688,0.879551679,2.453344078,-0.402107968,0.402107968,0.598918202,0.147908561,3.095334293,99.556591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.01395536,2.015634869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242559158,95.69758209,88.25651452,97.71321696,426.3741767,0,0.51137658,59.24443336,-0.51137658,120.7555666,0.952224697,0,494.2605358,97.71321696,558.211882,10,10,13% +10/4/2018 19:00,44.44462569,159.261909,712.9331303,861.1034557,98.16767613,675.6159692,575.0340196,100.5819496,95.2075585,5.37439108,175.8190091,0,175.8190091,2.960117636,172.8588915,0.775705053,2.779644685,-0.012634423,0.012634423,0.532314303,0.137695489,3.206966413,103.1470637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.51712662,2.14459515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.323436249,99.14888103,93.84056287,101.2934762,575.0340196,0,0.667787379,48.10347752,-0.667787379,131.8965225,0.975125869,0,654.5711107,101.2934762,720.8656649,10,11,10% +10/4/2018 20:00,42.40241949,180.882347,741.5627939,868.8288032,99.99626403,776.873073,674.3018517,102.5712213,96.98100772,5.590213578,182.8157412,0,182.8157412,3.015256307,179.8004849,0.740061831,3.156992513,0.325511319,-0.325511319,0.474487976,0.134845309,3.048627485,98.05433952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.22183347,2.18454293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208720235,94.25356082,95.43055371,96.43810375,674.3018517,0,0.776104394,39.0947317,-0.776104394,140.9052683,0.985575677,0,760.0060579,96.43810375,823.122868,10,12,8% +10/4/2018 21:00,44.82133907,202.345359,707.5379099,859.5954633,97.81975147,812.7475172,712.5436725,100.2038447,94.87012505,5.33371963,174.5003843,0,174.5003843,2.949626423,171.5507579,0.782279942,3.531592741,0.669410033,-0.669410033,0.415677832,0.138253725,2.647992039,85.16852638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19277276,2.136994303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918461218,81.8672271,93.11123397,84.0042214,712.5436725,0,0.828929075,34.0111152,-0.828929075,145.9888848,0.989681209,0,798.302317,84.0042214,853.2813998,10,13,7% +10/4/2018 22:00,51.05634461,220.7137568,613.3880718,830.2152167,91.55144696,776.400204,682.9853925,93.41481143,88.79083305,4.623978381,151.4836535,0,151.4836535,2.760613915,148.7230396,0.891101318,3.85218176,1.079229256,-1.079229256,0.345594617,0.149255343,2.04966219,65.92418169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.34912605,2.000055384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484973279,63.36883099,86.83409933,65.36888638,682.9853925,0,0.822660653,34.64797086,-0.822660653,145.3520291,0.989221598,0,762.4580006,65.36888638,805.2406294,10,14,6% +10/4/2018 23:00,59.88763807,235.399803,466.3791275,768.6635058,80.74265487,664.2782225,582.4544937,81.82372878,78.30796592,3.515762863,115.513708,0,115.513708,2.434688953,113.079019,1.045236466,4.108501621,1.668554602,-1.668554602,0.244814048,0.173126648,1.320368861,42.4676013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.27259543,1.763923859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956602745,40.82147371,76.22919818,42.58539756,582.4544937,0,0.757749639,40.73378938,-0.757749639,139.2662106,0.984015145,0,649.3732413,42.58539756,677.2445323,10,15,4% +10/4/2018 0:00,70.27676789,247.268837,279.3359916,639.4125244,63.54898691,472.1402547,408.4017515,63.73850318,61.63275048,2.105752696,69.64448162,0,69.64448162,1.916236426,67.7282452,1.226560987,4.315655344,2.786159047,-2.786159047,0.053692431,0.227500175,0.56640024,18.21737871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24374408,1.388306768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410355046,17.51123735,59.65409912,18.89954412,408.4017515,0,0.638714032,50.3040052,-0.638714032,129.6959948,0.971717705,0,456.505312,18.89954412,468.8746856,10,16,3% +10/4/2018 1:00,81.5084532,257.396056,79.32101996,322.099682,31.75865553,184.1433722,152.7444019,31.39897024,30.80101489,0.597955354,20.18994028,0,20.18994028,0.957640641,19.23229964,1.422590877,4.492408658,6.642189386,-6.642189386,0,0.400381331,0.23941016,7.700253722,0.377229361,1,0.149430508,0,0.945413321,0.984175285,0.724496596,1,29.86322052,0.693807385,0.054742938,0.312029739,0.856517074,0.58101367,0.961238037,0.922476074,0.163981989,7.401776771,30.0272025,8.095584156,95.12472887,0,0.474214693,61.69176889,-0.474214693,118.3082311,0.944562525,0,119.8784566,8.095584156,125.1768545,10,17,4% +10/4/2018 2:00,93.34453534,266.6946336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62916948,4.654699453,-16.39043235,16.39043235,0,#DIV/0!,0,0,1,0.571382532,0,0.06093567,0.961238037,1,0.566271694,0.841775098,0,0,0.115824807,0.132784909,0.724496596,0.448993192,0.986195272,0.947433309,0,0,0,0,0,0,0.272224131,74.20334144,-0.272224131,105.7966586,0.866327818,0,0,0,0,10,18,0% +10/4/2018 3:00,105.1851186,275.9654628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835826644,4.816505947,-3.312483761,3.312483761,0.903378225,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.050617931,87.0985663,-0.050617931,92.9014337,0,0,0,0,0,10,19,0% +10/4/2018 4:00,116.8129335,286.0616406,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038770298,4.992717492,-1.599431426,1.599431426,0.803672572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177118365,100.2019575,0.177118365,79.7980425,0,0.767702905,0,0,0,10,20,0% +10/4/2018 5:00,127.798044,298.1100363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230496645,5.203001667,-0.860857128,0.860857128,0.677368929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395468312,113.2951847,0.395468312,66.7048153,0,0.92356762,0,0,0,10,21,0% +10/4/2018 6:00,137.4193079,313.7477951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39841938,5.475932045,-0.406462026,0.406462026,0.59966279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589556708,126.1255571,0.589556708,53.87444285,0,0.965190516,0,0,0,10,22,0% +10/4/2018 7:00,144.3913708,334.8663055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.520104832,5.844519585,-0.064081798,0.064081798,0.541112322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746163368,138.259121,0.746163368,41.74087903,0,0.982990546,0,0,0,10,23,0% +10/5/2018 8:00,146.9012328,1.158400974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563910188,0.020217911,0.235287694,-0.235287694,0.489917124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854623931,148.7182131,0.854623931,31.28178686,0,0.991494735,0,0,0,10,0,0% +10/5/2018 9:00,143.9794986,27.17871532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512916305,0.474358069,0.533303625,-0.533303625,0.438953398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907556414,155.1698205,0.907556414,24.83017949,0,0.994907006,0,0,0,10,1,0% +10/5/2018 10:00,136.7379831,47.82040776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386528017,0.834623565,0.871464777,-0.871464777,0.381124436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901364097,154.337955,0.901364097,25.66204499,0,0.994528521,0,0,0,10,2,0% +10/5/2018 11:00,126.9773289,63.10773343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216172465,1.101437732,1.318540176,-1.318540176,0.30467004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836480507,146.7703149,0.836480507,33.22968509,0,0.990225744,0,0,0,10,3,0% +10/5/2018 12:00,115.9300825,74.95980091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023361642,1.308295333,2.048968864,-2.048968864,0.179759377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717339846,135.8352877,0.717339846,44.16471228,0,0.980298031,0,0,0,10,4,0% +10/5/2018 13:00,104.2859048,84.96945795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820132401,1.482996805,3.793917991,-3.793917991,0,#DIV/0!,0,0,0.10606095,1,0.257718218,0,0.930767605,0.969529569,0.724496596,1,0,0,0.017274841,0.312029739,0.952179637,0.676676233,0.961238037,0.922476074,0,0,0,0,0,0,-0.552074818,123.5094709,0.552074818,56.49052909,0,0.959432565,0,0,0,10,5,0% +10/5/2018 14:00,92.4621252,94.23322584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613768518,1.644680056,21.20722385,-21.20722385,0,#DIV/0!,0,0,0.755888886,1,0.047118842,0,0.956816567,0.995578531,0.724496596,1,0,0,0.095099831,0.312029739,0.765940961,0.490437557,0.961238037,0.922476074,0,0,0,0,0,0,-0.351962404,110.6073916,0.351962404,69.39260844,0,0.907939372,0,0,0,10,6,0% +10/5/2018 15:00,80.68340977,103.5932828,92.9321327,358.363807,34.91677278,34.56446492,0,34.56446492,33.86390325,0.700561671,69.81910254,46.23376151,23.58534103,1.052869528,22.5324715,1.408191152,1.808043867,-5.07752373,5.07752373,0.601538613,0.375723356,0.526296859,16.92751613,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.55127188,0.762800389,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.381300283,16.27137237,32.93257216,17.03417276,0,46.23376151,-0.129013479,97.41258878,0.129013479,82.58741122,0,0.662443596,32.93257216,47.661432,64.12602618,10,7,95% +10/5/2018 16:00,69.53380696,113.8533891,293.2522927,653.3430108,64.80787506,128.7653005,63.70096237,65.06433817,62.85367851,2.210659653,73.05661007,0,73.05661007,1.954196549,71.10241352,1.213593873,1.987116504,-1.932184334,1.932184334,0.860576671,0.220996994,1.970557272,63.37989561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.41734654,1.415808747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427662035,60.92316643,61.84500858,62.33897517,63.70096237,0,0.097500029,84.40477091,-0.097500029,95.59522909,0.537179639,0,96.06386853,62.33897517,136.863481,10,8,42% +10/5/2018 17:00,59.28999181,125.934734,477.0498401,774.9542167,81.28606443,326.6834037,244.2522108,82.43119287,78.83498967,3.596203201,118.1173316,0,118.1173316,2.451074756,115.6662568,1.034805571,2.197975751,-0.943002799,0.943002799,0.691416666,0.170393233,2.675565032,86.05536863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77919071,1.775795317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938437758,82.71969361,77.71762847,84.49548892,244.2522108,0,0.315182762,71.62815266,-0.315182762,108.3718473,0.891361883,0,295.434739,84.49548892,350.7353466,10,9,19% +10/5/2018 18:00,50.68969301,140.9000441,619.4752662,833.1715726,91.64435385,517.4040678,423.8532631,93.55080467,88.88093845,4.669866224,152.9623657,0,152.9623657,2.7634154,150.1989503,0.88470204,2.459169686,-0.399634565,0.399634565,0.598495225,0.147938681,3.072273757,98.81488489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.43573879,2.00208505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.225851878,94.98462597,87.66159067,96.98671102,423.8532631,0,0.508722665,59.42121548,-0.508722665,120.5787845,0.951714621,0,491.0489383,96.98671102,554.5248009,10,10,13% +10/5/2018 19:00,44.79300213,159.5169708,708.2611229,860.6029741,97.52837678,672.0794849,572.152777,99.92670789,94.58753638,5.339171515,174.6669496,0,174.6669496,2.940840401,171.7261092,0.781785369,2.784096354,-0.008369655,0.008369655,0.531584985,0.137701158,3.182606859,102.3635767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92113778,2.13062886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.305787835,98.39576354,93.22692561,100.5263924,572.152777,0,0.664827794,48.3308844,-0.664827794,131.6691156,0.974792555,0,650.9571928,100.5263924,716.7497061,10,11,10% +10/5/2018 20:00,42.78783278,180.9854894,736.5586687,868.298405,99.33692979,772.9328995,671.0388543,101.8940452,96.34155485,5.552490369,181.5825518,0,181.5825518,2.995374947,178.5871768,0.746788562,3.158792689,0.331492168,-0.331492168,0.47346519,0.134866283,3.023203203,97.23660719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.60716705,2.170138953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.190300429,93.4675254,94.79746748,95.63766436,671.0388543,0,0.772820554,39.39214781,-0.772820554,140.6078522,0.985301928,0,755.9733443,95.63766436,818.5662828,10,12,8% +10/5/2018 21:00,45.21042258,202.2825365,702.2446773,858.9073157,97.14007451,808.3822273,708.8774674,99.50475986,94.21094286,5.293817007,173.196484,0,173.196484,2.929131655,170.2673523,0.78907073,3.530496281,0.677746994,-0.677746994,0.414252128,0.138327961,2.621908117,84.32957778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55914176,2.122145913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899563505,81.06079779,92.45870527,83.18294371,708.8774674,0,0.825324752,34.37856997,-0.825324752,145.62143,0.989417787,0,793.8346802,83.18294371,848.2762532,10,13,7% +10/5/2018 22:00,51.42405564,220.5413496,607.8739179,829.1627865,90.84828479,771.5782286,678.8869444,92.69128417,88.10887381,4.58241036,150.1254801,0,150.1254801,2.739410981,147.3860691,0.897519086,3.849172687,1.091660349,-1.091660349,0.343468775,0.149452513,2.023542085,65.08406934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.69360089,1.98469393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466049352,62.56128304,86.15965024,64.54597697,678.8869444,0,0.818761955,35.03894791,-0.818761955,144.9610521,0.988932189,0,757.5328026,64.54597697,799.7768536,10,14,6% +10/5/2018 23:00,60.22762515,235.1761081,460.7463154,766.7733814,80.0007677,658.9050624,577.8433127,81.06174973,77.58844938,3.473300346,114.1255968,0,114.1255968,2.412318318,111.7132785,1.051170359,4.104597408,1.689871435,-1.689871435,0.241168654,0.173633006,1.295286859,41.66087792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.58096877,1.747716409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.93843092,40.0460205,75.51939969,41.79373691,577.8433127,0,0.753603772,41.09648043,-0.753603772,138.9035196,0.983652137,0,643.9162089,41.79373691,671.2693739,10,15,4% +10/5/2018 0:00,70.59310681,247.0249556,273.77849,635.2495594,62.70119202,465.8695219,402.9951442,62.87437764,60.81051974,2.063857902,68.27143689,0,68.27143689,1.890672282,66.38076461,1.232082143,4.311398809,2.834738134,-2.834738134,0.045384918,0.229021615,0.544884091,17.52534539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.45338461,1.369785632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394766669,16.8460286,58.84815128,18.21581423,402.9951442,0,0.634388703,50.62533954,-0.634388703,129.3746605,0.971183969,0,450.2305748,18.21581423,462.1524609,10,16,3% +10/5/2018 1:00,81.80651391,257.1435055,74.73967739,310.5520248,30.48091897,176.0296595,145.9044335,30.12522606,29.5618068,0.563419258,19.04061226,0,19.04061226,0.91911217,18.12150009,1.427793017,4.488000822,6.891202921,-6.891202921,0,0.40782781,0.229778042,7.390451701,0.393318526,1,0.144106648,0,0.946066236,0.984828199,0.724496596,1,28.66260762,0.665893638,0.056709447,0.312029739,0.851802745,0.576299341,0.961238037,0.922476074,0.157319819,7.103983285,28.81992744,7.769876923,88.51751682,0,0.469822837,61.97720285,-0.469822837,118.0227971,0.943576906,0,112.3430121,7.769876923,117.4282411,10,17,5% +10/5/2018 2:00,93.63856454,266.4355607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634301258,4.650177778,-15.08306247,15.08306247,0,#DIV/0!,0,0,1,0.525956104,0,0.066202646,0.961238037,1,0.55397338,0.829476784,0,0,0.115824807,0.118902544,0.724496596,0.448993192,0.987831555,0.949069592,0,0,0,0,0,0,0.267748433,74.46967067,-0.267748433,105.5303293,0.863257544,0,0,0,0,10,18,0% +10/5/2018 3:00,105.4801839,275.6986426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840976504,4.811849057,-3.253585068,3.253585068,0.913450495,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046201006,87.35193473,-0.046201006,92.64806527,0,0,0,0,0,10,19,0% +10/5/2018 4:00,117.1183725,285.7869458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044101215,4.987923164,-1.583965402,1.583965402,0.801027727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.181395198,100.4510367,0.181395198,79.54896329,0,0.774358746,0,0,0,10,20,0% +10/5/2018 5:00,128.1244386,297.8360697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236193305,5.198220047,-0.855330487,0.855330487,0.676423817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.399533409,113.5490129,0.399533409,66.45098715,0,0.92485402,0,0,0,10,21,0% +10/5/2018 6:00,137.7765668,313.5109257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404654723,5.471797894,-0.404765248,0.404765248,0.599372624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59335303,126.3953122,0.59335303,53.60468784,0,0.965733134,0,0,0,10,22,0% +10/5/2018 7:00,144.7780455,334.7629691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526853579,5.842716025,-0.064440678,0.064440678,0.541173695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749652407,138.5602773,0.749652407,41.43972272,0,0.983302422,0,0,0,10,23,0% +10/6/2018 8:00,147.2840894,1.306589776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570592296,0.022804294,0.233414451,-0.233414451,0.490237468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857788352,149.0691587,0.857788352,30.93084125,0,0.991710563,0,0,0,10,0,0% +10/6/2018 9:00,144.3103304,27.53507545,0,0,0,0,0,0,0,0,0,0,0,0,0,2.51869041,0.480577726,0.529882946,-0.529882946,0.439538369,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910401236,155.5608584,0.910401236,24.43914164,0,0.995079161,0,0,0,10,1,0% +10/6/2018 10:00,137.004789,48.23874794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39118466,0.841924979,0.865915922,-0.865915922,0.382073346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903916338,154.6777252,0.903916338,25.32227483,0,0.994685146,0,0,0,10,2,0% +10/6/2018 11:00,127.1962458,63.51395828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219993285,1.108527693,1.309196994,-1.309196994,0.306267818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838787311,147.0122833,0.838787311,32.98771671,0,0.990390133,0,0,0,10,3,0% +10/6/2018 12:00,116.1204009,75.33992051,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026683325,1.314929671,2.030564761,-2.030564761,0.182906664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719465221,136.0103457,0.719465221,43.9896543,0,0.980503937,0,0,0,10,4,0% +10/6/2018 13:00,104.4632568,85.3291445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823227778,1.489274519,3.739037432,-3.739037432,0,#DIV/0!,0,0,0.098497585,1,0.261332189,0,0.930235008,0.968996971,0.724496596,1,0,0,0.016097646,0.312029739,0.955364246,0.679860842,0.961238037,0.922476074,0,0,0,0,0,0,-0.554095218,123.6484183,0.554095218,56.35158173,0,0.959762802,0,0,0,10,5,0% +10/6/2018 14:00,92.63921591,94.58207207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616859334,1.650768571,19.72782755,-19.72782755,0,#DIV/0!,0,0,0.739820714,1,0.05064647,0,0.956464178,0.995226141,0.724496596,1,0,0,0.093608526,0.312029739,0.769056323,0.493552919,0.961238037,0.922476074,0,0,0,0,0,0,-0.353961457,110.7298079,0.353961457,69.2701921,0,0.908741682,0,0,0,10,6,0% +10/6/2018 15:00,80.86999789,103.9401356,90.02718611,352.2854906,34.12825399,33.77782416,0,33.77782416,33.09916121,0.678662957,69.02303418,46.16580783,22.85722635,1.029092778,21.82813357,1.411447729,1.81409759,-5.162188881,5.162188881,0.58706002,0.379088312,0.504654277,16.23141627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.81617274,0.745574214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365620305,15.60225471,32.18179305,16.34782893,0,46.16580783,-0.131046577,97.5300742,0.131046577,82.4699258,0,0.66845627,32.18179305,47.20765262,63.07825753,10,7,96% +10/6/2018 16:00,69.74493221,114.2037416,289.6369233,651.2249197,64.18283109,126.4934178,62.06253039,64.43088739,62.24748192,2.183405471,72.16117452,0,72.16117452,1.935349167,70.22582536,1.217278704,1.993231309,-1.942618667,1.942618667,0.862361047,0.221597545,1.949478686,62.70193584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83464732,1.402153883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412390672,60.27148572,61.24703799,61.6736396,62.06253039,0,0.095301222,84.5313428,-0.095301222,95.4686572,0.525347754,0,93.85144891,61.6736396,134.2156126,10,8,43% +10/6/2018 17:00,59.53751263,126.2856019,473.0539634,773.9598935,80.67632025,323.8777257,242.0680136,81.80971212,78.24363153,3.566080595,117.130099,0,117.130099,2.432688719,114.6974103,1.039125624,2.204099551,-0.94370614,0.94370614,0.691536944,0.170543588,2.653675127,85.35131402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.21075477,1.762474696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.922578596,82.04292953,77.13333336,83.80540423,242.0680136,0,0.312765578,71.77402363,-0.312765578,108.2259764,0.890135861,0,292.606753,83.80540423,347.4557139,10,9,19% +10/6/2018 18:00,50.98572271,141.2284779,615.1217608,832.5469454,91.02178206,514.2111944,421.2970073,92.91418716,88.2771395,4.637047662,151.8880351,0,151.8880351,2.744642564,149.1433925,0.889868733,2.464901937,-0.397181496,0.397181496,0.598075726,0.147973601,3.049090263,98.06922404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85534427,1.988484194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.209055516,94.26786839,87.06439979,96.25635258,421.2970073,0,0.506033936,59.59998861,-0.506033936,120.4000114,0.951192397,0,487.7989102,96.25635258,550.7967678,10,10,13% +10/6/2018 19:00,45.14145474,159.7662168,703.557645,860.0878247,96.88705458,668.5023227,569.2330555,99.26926712,93.96555241,5.303714712,173.5071987,0,173.5071987,2.921502171,170.5856965,0.787867014,2.788446517,-0.004100472,0.004100472,0.530854912,0.137710187,3.158155103,101.5771242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32326313,2.116618378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.288072622,97.63979547,92.61133575,99.75641384,569.2330555,0,0.661831314,48.56031076,-0.661831314,131.4396892,0.974452049,0,647.3016528,99.75641384,712.5902306,10,11,10% +10/6/2018 20:00,43.17231486,181.0846562,731.5290172,867.7548946,98.67596837,768.9533505,667.7382519,101.2150986,95.70052384,5.514574731,180.3431241,0,180.3431241,2.975444522,177.3676796,0.75349904,3.160523476,0.337497904,-0.337497904,0.472438149,0.134890026,2.997728232,96.41724457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.99098367,2.155699427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1718439,92.67992289,94.16282756,94.83562231,667.7382519,0,0.769500992,39.69090053,-0.769500992,140.3090995,0.985022826,0,751.9002474,94.83562231,813.9682655,10,12,8% +10/6/2018 21:00,45.59806883,202.2186782,696.9348468,858.2054914,96.45925931,803.982505,705.178059,98.80444601,93.55065675,5.253789262,171.888525,0,171.888525,2.908602565,168.9799224,0.795836434,3.529381744,0.686138792,-0.686138792,0.412817046,0.138404988,2.595824223,83.49063011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.92444964,2.107272657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.880665813,80.25436939,91.80511545,82.36164204,705.178059,0,0.821689055,34.74576622,-0.821689055,145.2542338,0.989149731,0,789.3318028,82.36164204,843.2358503,10,13,7% +10/6/2018 22:00,51.79026759,220.3694738,602.3545538,828.0927487,90.14451302,766.7294897,674.7623633,91.96712642,87.42632335,4.540803062,148.7660251,0,148.7660251,2.718189665,146.0478354,0.90391069,3.846172889,1.104210384,-1.104210384,0.341322593,0.149653576,1.997481205,64.24586184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.03750743,1.96931916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.447168333,61.75556611,85.48467576,63.72488527,674.7623633,0,0.814839116,35.42854286,-0.814839116,144.5714571,0.988638194,0,752.5805198,63.72488527,794.2871827,10,14,6% +10/6/2018 23:00,60.56609236,234.9531718,455.1218219,764.8524477,79.2586043,653.5131927,573.2136272,80.29956549,76.86866495,3.430900538,112.7394943,0,112.7394943,2.389939353,110.3495549,1.057077727,4.100706436,1.71149714,-1.71149714,0.237470441,0.174148108,1.270337314,40.85841477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.88908459,1.731502925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.92035506,39.2746624,74.80943965,41.00616533,573.2136272,0,0.749443411,41.4578126,-0.749443411,138.5421874,0.983283822,0,638.4411258,41.00616533,665.2788409,10,15,4% +10/6/2018 0:00,70.90779615,246.7815496,268.2470702,631.0054103,61.85194078,459.5805726,397.5715363,62.00903628,59.98687656,2.022159723,66.90467204,0,66.90467204,1.865064224,65.03960782,1.237574508,4.307150574,2.884542147,-2.884542147,0.03686793,0.230578253,0.523628635,16.84169687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.66166746,1.351232681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379367164,16.18887964,58.04103462,17.54011232,397.5715363,0,0.630060424,50.94541936,-0.630060424,129.0545806,0.970642532,0,443.9408772,17.54011232,455.4205299,10,16,3% +10/6/2018 1:00,82.10255459,256.891015,70.24859262,298.7863338,29.19523591,167.9125071,139.0680517,28.8444554,28.31489183,0.529563564,17.91292867,0,17.91292867,0.880344082,17.03258459,1.432959902,4.48359403,7.15689616,-7.15689616,0,0.415598873,0.22008602,7.078722958,0.409593272,1,0.138826586,0,0.946707423,0.985469386,0.724496596,1,27.45391375,0.63780629,0.058672834,0.312029739,0.847126528,0.571623124,0.961238037,0.922476074,0.15064172,6.80433776,27.60455547,7.44214405,82.10671341,0,0.465443148,62.26109442,-0.465443148,117.7389056,0.942575494,0,104.9963315,7.44214405,109.8670659,10,17,5% +10/6/2018 2:00,93.93052242,266.1760656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639396884,4.645648734,-13.97806567,13.97806567,0,#DIV/0!,0,0,1,0.479314113,0,0.07141898,0.961238037,1,0.542010993,0.817514397,0,0,0.115824807,0.105400364,0.724496596,0.448993192,0.989380497,0.950618534,0,0,0,0,0,0,0.263294112,74.73438674,-0.263294112,105.2656133,0.860098298,0,0,0,0,10,18,0% +10/6/2018 3:00,105.7729273,275.430794,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846085841,4.807174217,-3.197269645,3.197269645,0.923080999,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041817101,87.60335776,-0.041817101,92.39664224,0,0,0,0,0,10,19,0% +10/6/2018 4:00,117.4212799,285.5103704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049387947,4.983096013,-1.568958747,1.568958747,0.798461437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.185628904,100.6978011,0.185628904,79.30219895,0,0.780645395,0,0,0,10,20,0% +10/6/2018 5:00,128.4482299,297.5589904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241844529,5.193384102,-0.849953783,0.849953783,0.675504347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403547499,113.8001379,0.403547499,66.19986206,0,0.926098848,0,0,0,10,21,0% +10/6/2018 6:00,138.1314752,313.2695435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410849042,5.46758498,-0.40313112,0.40313112,0.599093171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597093235,126.6619984,0.597093235,53.33800164,0,0.966260984,0,0,0,10,22,0% +10/6/2018 7:00,145.1630559,334.6553775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533573278,5.840838197,-0.064827296,0.064827296,0.54123981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753083336,138.8581765,0.753083336,41.14182347,0,0.983606285,0,0,0,10,23,0% +10/7/2018 8:00,147.6657564,1.454578124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577253642,0.025387177,0.231532177,-0.231532177,0.490559356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86089592,149.417326,0.86089592,30.58267397,0,0.99192097,0,0,0,10,0,0% +10/7/2018 9:00,144.6397701,27.89371114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.524440217,0.4868371,0.526467818,-0.526467818,0.44012239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913193626,155.9504866,0.913193626,24.04951339,0,0.995247099,0,0,0,10,1,0% +10/7/2018 10:00,137.2702553,48.65826752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395817921,0.849246977,0.860391258,-0.860391258,0.383018119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906423426,155.0156821,0.906423426,24.9843179,0,0.994838142,0,0,0,10,2,0% +10/7/2018 11:00,127.4142786,63.92003155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223798676,1.115615008,1.299917038,-1.299917038,0.307854784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841058593,147.2520738,0.841058593,32.74792619,0,0.99055111,0,0,0,10,3,0% +10/7/2018 12:00,116.3103947,75.7191057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029999342,1.321547701,2.012355615,-2.012355615,0.186020612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721566397,136.183957,0.721566397,43.81604304,0,0.980706308,0,0,0,10,4,0% +10/7/2018 13:00,104.6408058,85.68741393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826326593,1.495527501,3.685296784,-3.685296784,0,#DIV/0!,0,0,0.090966259,1,0.264968343,0,0.929696358,0.968458321,0.724496596,1,0,0,0.01491742,0.312029739,0.958567955,0.683064551,0.961238037,0.922476074,0,0,0,0,0,0,-0.556103654,123.7867654,0.556103654,56.21323458,0,0.960088704,0,0,0,10,5,0% +10/7/2018 14:00,92.81695037,94.92908292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619961386,1.656825053,18.42974305,-18.42974305,0,#DIV/0!,0,0,0.723872696,1,0.05420696,0,0.95610551,0.994867473,0.724496596,1,0,0,0.092111339,0.312029739,0.772201921,0.496698517,0.961238037,0.922476074,0,0,0,0,0,0,-0.355960844,110.8523438,0.355960844,69.14765619,0,0.909535112,0,0,0,10,6,0% +10/7/2018 15:00,81.05751093,104.28464,87.12289906,346.0495334,33.33192514,32.98361383,0,32.98361383,32.32684462,0.656769214,68.18487894,46.05584287,22.12903607,1.005080525,21.12395555,1.414720449,1.820110327,-5.250839345,5.250839345,0.571899898,0.382585124,0.483175015,15.54056939,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07379266,0.728177419,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.350058654,14.93818641,31.42385131,15.66636383,0,46.05584287,-0.133090319,97.64820677,0.133090319,82.35179323,0,0.674315275,31.42385131,46.72252217,62.00280762,10,7,97% +10/7/2018 16:00,69.95726997,114.5510023,285.9962013,649.0472188,63.55418568,124.2076048,60.41385212,63.79375267,61.63779249,2.155960171,71.25948335,0,71.25948335,1.916393188,69.34309016,1.220984697,1.999292151,-1.953390537,1.953390537,0.864203145,0.222220384,1.928247603,62.01907122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24859065,1.388420341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397008824,59.61509026,60.64559948,61.0035106,60.41385212,0,0.093080827,84.65913017,-0.093080827,95.34086983,0.51283245,0,91.62778326,61.0035106,131.5533609,10,8,44% +10/7/2018 17:00,59.78625615,126.6323013,469.0265918,772.9363311,80.06396713,321.042306,239.8568423,81.18546368,77.64974312,3.535720566,116.1351514,0,116.1351514,2.414224014,113.7209274,1.043467017,2.210150597,-0.944490586,0.944490586,0.691671092,0.170702405,2.63164947,84.64289318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.63988664,1.749097079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906621082,81.36196848,76.54650772,83.11106556,239.8568423,0,0.310319017,71.92154303,-0.310319017,108.078457,0.888875488,0,289.7493756,83.11106556,344.1439058,10,9,19% +10/7/2018 18:00,51.28259187,141.5514946,610.7357573,831.9034986,90.39696911,510.9812616,418.7061105,92.27515107,87.67116696,4.603984114,150.8057574,0,150.8057574,2.725802148,148.0799552,0.895050077,2.470539642,-0.394751088,0.394751088,0.597660101,0.148013225,3.025792353,97.31988315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.27286042,1.974834377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.192176259,93.54757343,86.46503668,95.5224078,418.7061105,0,0.503310914,59.78070885,-0.503310914,120.2192911,0.950657827,0,484.5112778,95.5224078,547.0287832,10,10,13% +10/7/2018 19:00,45.48987004,160.0096384,698.8245261,859.5582185,96.24382364,664.8856589,566.2759072,98.60975172,93.34171726,5.268034462,172.3402034,0,172.3402034,2.902106385,169.4380971,0.793948009,2.792695025,0.000171124,-0.000171124,0.530124426,0.137722447,3.13362097,100.7880222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.72360905,2.102566197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270297726,96.88128055,91.99390678,98.98384675,566.2759072,0,0.658798782,48.79167472,-0.658798782,131.2083253,0.974104292,0,643.6056984,98.98384675,708.3886464,10,11,10% +10/7/2018 20:00,43.5557504,181.1798487,726.4759933,867.1985703,98.01351289,764.936006,664.4014792,100.5345267,95.05804384,5.476482902,179.0979845,0,179.0979845,2.955469045,176.1425154,0.760191253,3.162184897,0.343526466,-0.343526466,0.471407204,0.134916382,2.972213404,95.5966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37340745,2.141227262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.153358494,91.89108812,93.52676594,94.03231538,664.4014792,0,0.76614688,39.99086825,-0.76614688,140.0091317,0.984738362,0,747.7883906,94.03231538,809.3306604,10,12,8% +10/7/2018 21:00,45.98415883,202.1537465,691.6108515,857.4903869,95.77745877,799.5503359,701.4472662,98.10306974,92.889415,5.213654736,170.5771019,0,170.5771019,2.888043763,167.6890581,0.802574975,3.528248472,0.69458311,-0.69458311,0.411372982,0.13848461,2.569751844,82.65205276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.28883892,2.092377875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861776463,79.44829694,91.15061539,81.54067481,701.4472662,0,0.818023475,35.11257731,-0.818023475,144.8874227,0.98887706,0,784.7957255,81.54067481,838.1624664,10,13,7% +10/7/2018 22:00,52.1548542,220.1980898,596.8326251,827.0056308,89.44030672,761.8563594,670.6138315,91.2425279,86.74335147,4.499176431,147.4059351,0,147.4059351,2.696955247,144.7089798,0.910273927,3.843181674,1.11687685,-1.11687685,0.3391565,0.149858273,1.971491265,63.40993605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38100888,1.953934896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.428338711,60.95204245,84.80934759,62.90597735,670.6138315,0,0.810893912,35.81663876,-0.810893912,144.1833612,0.988339653,0,747.6035892,62.90597735,788.7742932,10,14,6% +10/7/2018 23:00,60.90291104,234.7309785,449.5084288,762.9013729,78.51636806,648.1053313,568.5679371,79.53739427,76.14880986,3.388584409,111.356081,0,111.356081,2.367558191,108.9885228,1.062956322,4.096828431,1.733430967,-1.733430967,0.233719536,0.174671626,1.245531772,40.06058329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.1971325,1.71528785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902383529,38.50775643,74.09951603,40.22304428,568.5679371,0,0.745270565,41.81765634,-0.745270565,138.1823437,0.982910271,0,632.9507813,40.22304428,659.2759593,10,15,4% +10/7/2018 0:00,71.22070824,246.5386254,262.7446551,626.6804672,61.00146716,453.2763575,392.1336295,61.14272805,59.16204786,1.980680194,65.54490289,0,65.54490289,1.839419306,63.70548359,1.243035854,4.302910746,2.935599382,-2.935599382,0.028136629,0.232170154,0.502645726,16.16681437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.86881074,1.332653026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364165117,15.54015691,57.23297585,16.87280993,392.1336295,0,0.625731373,51.26411152,-0.625731373,128.7358885,0.970093506,0,437.6392635,16.87280993,448.6821801,10,16,3% +10/7/2018 1:00,82.39643597,256.6386051,65.85349261,286.8147998,27.90271825,159.801806,132.2440262,27.55777979,27.06134835,0.496431444,16.80831161,0,16.80831161,0.841369905,15.96694171,1.4380891,4.479188647,7.440869783,-7.440869783,0,0.423709011,0.210342476,6.765337087,0.42604932,1,0.133592437,0,0.947336769,0.986098732,0.724496596,1,26.23825645,0.609569632,0.060632205,0.312029739,0.842490406,0.566987002,0.961238037,0.922476074,0.143951037,6.50309934,26.38220748,7.112668972,75.90154871,0,0.461078111,62.54330204,-0.461078111,117.456698,0.941558504,0,97.84795616,7.112668972,102.5030558,10,17,5% +10/7/2018 2:00,94.22028421,265.916178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644454182,4.64111284,-13.03220311,13.03220311,0,#DIV/0!,0,0,1,0.431427831,0,0.076582927,0.961238037,1,0.530382443,0.805885847,0,0,0.115824807,0.092273214,0.724496596,0.448993192,0.990845939,0.952083976,0,0,0,0,0,0,0.258863419,74.99736784,-0.258863419,105.0026322,0.85684795,0,0,0,0,10,18,0% +10/7/2018 3:00,106.0632221,275.1619505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85115244,4.802482013,-3.143397389,3.143397389,0.932293698,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03746838,87.85271734,-0.03746838,92.14728266,0,0,0,0,0,10,19,0% +10/7/2018 4:00,117.7215235,285.231943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054628185,4.978236537,-1.554400275,1.554400275,0.795971792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189817487,100.9421331,0.189817487,79.05786688,0,0.786589073,0,0,0,10,20,0% +10/7/2018 5:00,128.7692772,297.2788002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247447863,5.18849386,-0.844725812,0.844725812,0.674610311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407508825,114.0484388,0.407508825,65.95156117,0,0.927303271,0,0,0,10,21,0% +10/7/2018 6:00,138.4838867,313.0235758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416999784,5.463292035,-0.401559951,0.401559951,0.598824486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600775852,126.9254842,0.600775852,53.0745158,0,0.966774285,0,0,0,10,22,0% +10/7/2018 7:00,145.5462705,334.5433612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540261635,5.838883144,-0.065242199,0.065242199,0.541310763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756455001,139.1526675,0.756455001,40.84733252,0,0.983902215,0,0,0,10,23,0% +10/8/2018 8:00,148.0461353,1.602227104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.583892506,0.027964138,0.229640341,-0.229640341,0.490882878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86394581,149.7625477,0.86394581,30.23745233,0,0.992126,0,0,0,10,0,0% +10/8/2018 9:00,144.967746,28.25449656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530164477,0.493133993,0.523057777,-0.523057777,0.440705542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915933074,156.3385853,0.915933074,23.6614147,0,0.995410859,0,0,0,10,1,0% +10/8/2018 10:00,137.5343412,49.07880925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400427088,0.856586814,0.85489035,-0.85489035,0.38395883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908885127,155.3517361,0.908885127,24.6482639,0,0.994987547,0,0,0,10,2,0% +10/8/2018 11:00,127.6314085,64.32580233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227588307,1.122697045,1.29069969,-1.29069969,0.309431043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843294345,147.489647,0.843294345,32.51035298,0,0.990708721,0,0,0,10,3,0% +10/8/2018 12:00,116.5000538,76.09722173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033309517,1.328147071,1.994339027,-1.994339027,0.18910163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723643521,136.3561214,0.723643521,43.64387856,0,0.980905206,0,0,0,10,4,0% +10/8/2018 13:00,104.8185417,86.04414281,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82942867,1.501753594,3.632664261,-3.632664261,0,#DIV/0!,0,0,0.08346725,1,0.268626553,0,0.929151629,0.967913592,0.724496596,1,0,0,0.013734231,0.312029739,0.961790658,0.686287254,0.961238037,0.922476074,0,0,0,0,0,0,-0.558100344,123.9245254,0.558100344,56.07547458,0,0.960410376,0,0,0,10,5,0% +10/8/2018 14:00,92.99531182,95.27414029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62307438,1.66284744,17.28165719,-17.28165719,0,#DIV/0!,0,0,0.70804486,1,0.057800367,0,0.955740478,0.994502441,0.724496596,1,0,0,0.090608371,0.312029739,0.775377742,0.499874338,0.961238037,0.922476074,0,0,0,0,0,0,-0.357960774,110.9750129,0.357960774,69.0249871,0,0.910319891,0,0,0,10,6,0% +10/8/2018 15:00,81.2459156,104.6266796,84.22095856,339.6534854,32.52778956,32.18184985,0,32.18184985,31.54695669,0.634893161,67.30356404,45.90238469,21.40117935,0.98083287,20.42034648,1.418008731,1.826080044,-5.343750717,5.343750717,0.556011117,0.386219655,0.461877378,14.85556418,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.32413471,0.710610075,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.334628588,14.27973334,30.6587633,14.99034342,0,45.90238469,-0.135144748,97.76699004,0.135144748,82.23300996,0,0.680026318,30.6587633,46.20517307,60.89912498,10,7,99% +10/8/2018 16:00,70.17077232,114.8950567,282.3311003,646.8089154,62.92197873,121.9083993,58.7554193,63.15298,61.02464891,2.128331091,70.3517738,0,70.3517738,1.897329816,68.45444398,1.224711016,2.005297033,-1.964513829,1.964513829,0.86610534,0.222865914,1.906869507,61.33147815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65921372,1.374608993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.381520466,58.95414966,60.04073419,60.32875865,58.7554193,0,0.090838914,84.78812899,-0.090838914,95.21187101,0.4995751,0,89.39347868,60.32875865,128.8774446,10,8,44% +10/8/2018 17:00,60.03615009,126.9747308,464.9689445,771.8834015,79.44908411,318.1777295,237.6191962,80.55853339,77.05340109,3.505132307,115.1327868,0,115.1327868,2.395683022,112.7371038,1.047828489,2.216127118,-0.945360012,0.945360012,0.691819773,0.170869657,2.609495372,83.93034124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.06665999,1.735664194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890570514,80.67703644,75.95723051,82.41270064,237.6191962,0,0.307843381,72.07068941,-0.307843381,107.9293106,0.887579747,0,286.8632164,82.41270064,340.8006807,10,9,19% +10/8/2018 18:00,51.58020187,141.869032,606.3188046,831.2413529,89.77001456,507.7151485,416.0813439,91.63380466,87.0631174,4.570687259,149.715911,0,149.715911,2.706897155,147.0090139,0.900244352,2.476081715,-0.392345654,0.392345654,0.597248748,0.148057447,3.002388797,96.56714437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.68838005,1.961137774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175220463,92.82401228,85.86360052,94.78515005,416.0813439,0,0.500554192,59.96332817,-0.500554192,120.0366718,0.950110716,0,481.1869439,94.78515005,543.2219289,10,10,13% +10/8/2018 19:00,45.8381334,160.247232,694.0636522,859.0143893,95.59880185,661.2307438,563.2824536,97.94829023,92.71614525,5.232144984,171.1664247,0,171.1664247,2.882656598,168.2837681,0.800026351,2.796841816,0.004443124,-0.004443124,0.529393871,0.137737802,3.109014451,99.9965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.12228544,2.088474892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252470386,96.12052769,91.37475583,98.20900259,563.2824536,0,0.655731104,49.02489062,-0.655731104,130.9751094,0.973749232,0,639.8706126,98.20900259,704.1464407,10,11,10% +10/8/2018 20:00,43.93802397,181.2710718,721.4017954,866.6297528,97.34969956,760.8825133,661.0300349,99.85247839,94.41424694,5.438231455,177.84767,0,177.84767,2.935452624,174.9122174,0.766863185,3.163777042,0.349575755,-0.349575755,0.470372715,0.134945186,2.946669644,94.77502485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.75456538,2.126725433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.134852126,91.10135883,92.8894175,93.22808426,661.0300349,0,0.762759452,40.29192731,-0.762759452,139.7080727,0.984448534,0,743.6394666,93.22808426,804.6553831,10,12,8% +10/8/2018 21:00,46.36857427,202.0877079,686.2751531,856.7624236,95.09482816,795.0877628,697.6869626,97.40080022,92.22736823,5.173431988,169.2628162,0,169.2628162,2.867459932,166.3953563,0.80928429,3.527095882,0.703077555,-0.703077555,0.409920346,0.13856662,2.543702474,81.81421548,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65245438,2.077464959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842903783,78.64293587,90.49535816,80.72040083,697.6869626,0,0.814329554,35.47887641,-0.814329554,144.5211236,0.988599797,0,780.2285477,80.72040083,833.0584357,10,13,7% +10/8/2018 22:00,52.51769057,220.0271613,591.3107882,825.9019937,88.73584285,756.9612548,666.4435745,90.51768028,86.06012979,4.457550492,146.0458596,0,146.0458596,2.675713062,143.3701466,0.916606616,3.840198409,1.129657073,-1.129657073,0.336970953,0.150066335,1.945583907,62.57666634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72427021,1.938545005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409568917,60.1510719,84.13383913,62.08961691,666.4435745,0,0.806928158,36.20311922,-0.806928158,143.7968808,0.988036615,0,742.6044926,62.08961691,783.2409051,10,14,5% +10/8/2018 23:00,61.23795413,234.5095148,443.9089094,760.9208805,77.7742646,642.6842303,563.9087738,78.77545644,75.42908357,3.346372867,109.9760355,0,109.9760355,2.345181034,107.6308545,1.068803927,4.092963161,1.75567184,-1.75567184,0.229916123,0.175203207,1.2208816,39.26774901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50530421,1.699075676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.884524563,37.74565397,73.38982878,39.44472965,563.9087738,0,0.741087265,42.17588364,-0.741087265,137.8241164,0.982531562,0,627.4479973,39.44472965,653.2637839,10,15,4% +10/8/2018 0:00,71.53171718,246.2961911,257.2741408,622.2752398,60.15001121,446.9598661,386.6841585,60.27570758,58.33626644,1.939441146,64.19283882,0,64.19283882,1.813744768,62.37909405,1.248463984,4.298679469,2.987938364,-2.987938364,0.019186136,0.233797346,0.481946885,15.5010685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.07503823,1.31405191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.349168877,14.90021665,56.4242071,16.21426856,386.6841585,0,0.621403736,51.58128471,-0.621403736,128.4187153,0.969537014,0,431.3288116,16.21426856,441.9407261,10,16,2% +10/8/2018 1:00,82.68801947,256.386299,61.56017985,274.6520995,26.60465489,151.7084078,125.4419148,26.26649303,25.80242639,0.464066639,15.72820683,0,15.72820683,0.802228506,14.92597832,1.443178192,4.474785074,7.744930374,-7.744930374,0,0.432173118,0.200557126,6.450606597,0.442681898,1,0.128406305,0,0.947954173,0.986716136,0.724496596,1,25.01692096,0.581211822,0.062586643,0.312029739,0.837896356,0.562392952,0.961238037,0.922476074,0.137251936,6.200568422,25.1541729,6.781780243,69.91104991,0,0.456730223,62.82368477,-0.456730223,117.1763152,0.940526185,0,90.90734596,6.781780243,95.34588549,10,17,5% +10/8/2018 2:00,94.50772719,265.6559303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649471008,4.63657066,-12.21373984,12.21373984,0,#DIV/0!,0,0,1,0.382268466,0,0.081692786,0.961238037,1,0.519085284,0.794588688,0,0,0.115824807,0.079515498,0.724496596,0.448993192,0.992231658,0.953469695,0,0,0,0,0,0,0.254458579,75.2584942,-0.254458579,104.7415058,0.853504365,0,0,0,0,10,18,0% +10/8/2018 3:00,106.3509436,274.892149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856174128,4.797773088,-3.091838313,3.091838313,0.941110819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.033156964,88.09989765,-0.033156964,91.90010235,0,0,0,0,0,10,19,0% +10/8/2018 4:00,118.018973,284.9516965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059819659,4.973345312,-1.540279139,1.540279139,0.793556935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.193959006,101.183918,0.193959006,78.81608198,0,0.792213568,0,0,0,10,20,0% +10/8/2018 5:00,129.0874416,296.9955062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253000879,5.183549448,-0.839645329,0.839645329,0.673741497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.411415687,114.2937971,0.411415687,65.70620285,0,0.928468416,0,0,0,10,21,0% +10/8/2018 6:00,138.8336558,312.7729556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423104407,5.458917886,-0.400051994,0.400051994,0.59856661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604399475,127.1856409,0.604399475,52.81435911,0,0.967273257,0,0,0,10,22,0% +10/8/2018 7:00,145.9275578,334.4267508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546916352,5.836847908,-0.065685882,0.065685882,0.541386637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759766314,139.443601,0.759766314,40.55639899,0,0.984190291,0,0,0,10,23,0% +10/9/2018 8:00,148.4251277,1.749394698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59050717,0.030532697,0.227738468,-0.227738468,0.491208118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866937256,150.1046562,0.866937256,29.89534377,0,0.992325699,0,0,0,10,0,0% +10/9/2018 9:00,145.2941873,28.6173024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535861952,0.49946615,0.519652413,-0.519652413,0.441287893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918619118,156.725034,0.918619118,23.27496598,0,0.995570477,0,0,0,10,1,0% +10/9/2018 10:00,137.7970066,49.50021352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405011465,0.863941706,0.849412836,-0.849412836,0.38489554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911301249,155.6857984,0.911301249,24.31420159,0,0.995133401,0,0,0,10,2,0% +10/9/2018 11:00,127.8476164,64.73111902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231361847,1.129771155,1.281544434,-1.281544434,0.310996684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845494587,147.7249656,0.845494587,32.27503443,0,0.990863016,0,0,0,10,3,0% +10/9/2018 12:00,116.6893674,76.47413394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036613662,1.33472543,1.976512828,-1.976512828,0.192150089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725696751,136.5268402,0.725696751,43.47315979,0,0.981100697,0,0,0,10,4,0% +10/9/2018 13:00,104.9964529,86.39920821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832533806,1.507950654,3.581109839,-3.581109839,0,#DIV/0!,0,0,0.076000921,1,0.272306637,0,0.928600805,0.967362769,0.724496596,1,0,0,0.012548162,0.312029739,0.965032206,0.689528802,0.961238037,0.922476074,0,0,0,0,0,0,-0.560085506,124.0617113,0.560085506,55.93828874,0,0.960727917,0,0,0,10,5,0% +10/9/2018 14:00,93.17428171,95.61712694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626197994,1.668833686,16.25908818,-16.25908818,0,#DIV/0!,0,0,0.692337431,1,0.061426688,0,0.955369004,0.994130967,0.724496596,1,0,0,0.089099748,0.312029739,0.778583719,0.503080315,0.961238037,0.922476074,0,0,0,0,0,0,-0.359961438,111.0978278,0.359961438,68.90217219,0,0.911096232,0,0,0,10,6,0% +10/9/2018 15:00,81.43517613,104.966139,81.32315556,333.0951248,31.71587189,31.37256963,0,31.37256963,30.75952133,0.613048298,66.37803099,45.70393984,20.67409115,0.956350557,19.71774059,1.42131195,1.832004729,-5.441222582,5.441222582,0.539342447,0.389998048,0.440780496,14.17701591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.5672219,0.692872723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.319343969,13.62748694,29.88656587,14.32035967,0,45.70393984,-0.137209873,97.88642563,0.137209873,82.11357437,0,0.685594737,29.88656587,45.65474027,59.76668028,10,7,100% +10/9/2018 16:00,70.3853888,115.2357928,278.6426498,644.5090326,62.28625496,119.5963879,57.08776739,62.50862056,60.40809456,2.100525993,69.43829686,0,69.43829686,1.878160399,67.56013646,1.22845678,2.011244,-1.976002809,1.976002809,0.868070072,0.223534534,1.885350141,60.63934139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.06655823,1.360720816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.365929759,58.28884147,59.43248799,59.64956229,57.08776739,0,0.088575589,84.91833292,-0.088575589,95.08166708,0.485510389,0,87.14919212,59.64956229,126.1886376,10,8,45% +10/9/2018 17:00,60.28711971,127.3127921,460.8822985,770.801002,78.83175468,315.2846366,235.3556247,79.92901186,76.45468642,3.474325444,114.1233174,0,114.1233174,2.377068262,111.7462492,1.052208735,2.222027402,-0.946318326,0.946318326,0.691983654,0.171045308,2.587220387,83.21390116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49115268,1.722177864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.874432363,79.98836699,75.36558504,81.71054485,235.3556247,0,0.305339023,72.22143852,-0.305339023,107.7785615,0.886247593,0,283.9489409,81.71054485,337.4268583,10,9,19% +10/9/2018 18:00,51.87845224,142.1810319,601.8725094,830.5606527,89.141022,504.4137964,413.4235359,90.9902605,86.45309129,4.537169208,148.6188889,0,148.6188889,2.687930709,145.9309581,0.905449802,2.48152714,-0.389967528,0.389967528,0.596842065,0.148106153,2.978888586,95.81129679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.10199975,1.947396648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.15819464,92.09746283,85.26019439,94.04485948,413.4235359,0,0.497764413,60.14779535,-0.497764413,119.8522047,0.949550875,0,477.8268744,94.04485948,539.377354,10,10,13% +10/9/2018 19:00,46.18612929,160.4789971,689.276963,858.4565933,94.95211069,657.538892,560.2538768,97.28501512,92.08895422,5.196060899,169.9863363,0,169.9863363,2.863156473,167.1231799,0.806100025,2.800886879,0.008713482,-0.008713482,0.528663596,0.137756106,3.084345711,99.20316044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51940557,2.074347118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.234597968,95.35785119,90.75400354,97.43219831,560.2538768,0,0.652629243,49.25986988,-0.652629243,130.7401301,0.973386823,0,636.0977446,97.43219831,699.8651697,10,11,10% +10/9/2018 20:00,44.31901982,181.3583328,716.3086681,866.0487864,96.6846678,756.7945831,657.6254774,99.16910565,93.76926834,5.39983731,176.5927292,0,176.5927292,2.915399463,173.6773297,0.773512817,3.165300034,0.355643608,-0.355643608,0.469335051,0.134976264,2.921107995,93.95287435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13458742,2.112196986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.116332798,90.3110765,92.25092022,92.42327349,657.6254774,0,0.759339991,40.59395257,-0.759339991,139.4060474,0.984153343,0,739.4552322,92.42327349,799.9444162,10,12,8% +10/9/2018 21:00,46.75119697,202.0205318,680.9302487,856.0220513,94.41152561,790.5968869,693.8990773,96.69780962,91.56466977,5.133139841,167.9462782,0,167.9462782,2.846855839,165.0994223,0.815962316,3.525923436,0.711619614,-0.711619614,0.408459568,0.138650803,2.517687667,80.97748986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.01544342,2.062537364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824056144,77.83864338,89.83949956,79.90118074,693.8990773,0,0.810608881,35.84453651,-0.810608881,144.1554635,0.988317972,0,775.6324282,79.90118074,827.926153,10,13,7% +10/9/2018 22:00,52.87865226,219.8566543,585.7917221,824.7824376,88.03130114,752.0466448,662.2538668,89.79277805,85.37683261,4.41594544,144.6864536,0,144.6864536,2.65446853,142.0319851,0.922906586,3.8372225,1.14254816,-1.14254816,0.334766447,0.150277475,1.919770748,61.74642642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.06745897,1.923153414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.390867372,59.35301371,83.45832634,61.27616713,662.2538668,0,0.802943706,36.58786783,-0.802943706,143.4121322,0.987729134,0,737.5857646,61.27616713,777.6897904,10,14,5% +10/9/2018 23:00,61.57109525,234.288769,438.3260438,758.9117606,77.03250321,637.2526899,559.238714,78.01397588,74.70968902,3.304286868,108.6000383,0,108.6000383,2.322814191,106.2772241,1.074618336,4.089110419,1.778218253,-1.778218253,0.226060459,0.175742474,1.196398043,38.48027364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8137948,1.682870975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866786309,36.98870269,72.68058111,38.67157367,559.238714,0,0.736895569,42.53236713,-0.736895569,137.4676329,0.98214778,0,621.9356428,38.67157367,647.2454144,10,15,4% +10/9/2018 0:00,71.84069785,246.0542563,251.8384125,617.7903855,59.29782155,440.6341497,381.2259119,59.40823777,57.50977344,1.89846433,62.84918689,0,62.84918689,1.788048105,61.06113878,1.253856714,4.294456911,3.041587596,-3.041587596,0.010011577,0.235459797,0.461543353,14.84482077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.28058172,1.295434766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334386588,14.26940637,55.61496831,15.56484114,381.2259119,0,0.61707971,51.89680836,-0.61707971,128.1031916,0.968973191,0,425.0126566,15.56484114,435.1995338,10,16,2% +10/9/2018 1:00,82.97716603,256.134121,57.37453862,262.3157085,25.30253708,143.6442382,118.6721525,24.97208573,24.53957223,0.432513507,14.674086,0,14.674086,0.762964849,13.91112115,1.448224751,4.470383739,8.071122756,-8.071122756,0,0.441006371,0.190741212,6.134893056,0.459485635,1,0.123270294,0,0.94855954,0.987321504,0.724496596,1,23.79138369,0.552765436,0.064535204,0.312029739,0.833346361,0.557842957,0.961238037,0.922476074,0.130549545,5.897092558,23.92193324,6.449857994,64.14400309,0,0.452402005,63.10210115,-0.452402005,116.8978988,0.939478828,0,84.18386605,6.449857994,88.40516911,10,17,5% +10/9/2018 2:00,94.79272965,265.3953568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654445239,4.632022796,-11.4988606,11.4988606,0,#DIV/0!,0,0,1,0.331807478,0,0.08674689,0.961238037,1,0.508116774,0.783620178,0,0,0.115824807,0.067121292,0.724496596,0.448993192,0.993541351,0.954779388,0,0,0,0,0,0,0.250081805,75.51764695,-0.250081805,104.4823531,0.850065423,0,0,0,0,10,18,0% +10/9/2018 3:00,106.6359683,274.6214292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861148747,4.793048136,-3.042471902,3.042471902,0.949552972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02888495,88.34478404,-0.02888495,91.65521596,0,0,0,0,0,10,19,0% +10/9/2018 4:00,118.3134995,284.6696677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064960116,4.968422982,-1.526584909,1.526584909,0.791215084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.198051553,101.4230422,0.198051553,78.57695777,0,0.79754048,0,0,0,10,20,0% +10/9/2018 5:00,129.4025846,296.709121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258501162,5.178551081,-0.8347111,0.8347111,0.672897695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415266432,114.5360961,0.415266432,65.46390389,0,0.929595373,0,0,0,10,21,0% +10/9/2018 6:00,139.1806367,312.5176198,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429160366,5.454461436,-0.398607474,0.398607474,0.598319582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607962743,127.4423414,0.607962743,52.55765865,0,0.967758118,0,0,0,10,22,0% +10/9/2018 7:00,146.3067851,334.3053749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553535117,5.834729499,-0.06615881,0.06615881,0.541467512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763016237,139.7308291,0.763016237,40.26917087,0,0.984470595,0,0,0,10,23,0% +10/10/2018 8:00,148.8026349,1.895933344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597095914,0.033090279,0.225826108,-0.225826108,0.491535151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869869544,150.4434832,0.869869544,29.55651678,0,0.992520117,0,0,0,10,0,0% +10/10/2018 9:00,145.6190238,28.9819936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541531419,0.505831212,0.516251352,-0.516251352,0.441869509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921251347,157.1097113,0.921251347,22.89028868,0,0.995725995,0,0,0,10,1,0% +10/10/2018 10:00,138.0582128,49.92231664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409570373,0.871308796,0.843958394,-0.843958394,0.385828304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913671642,156.0177814,0.913671642,23.98221863,0,0.995275745,0,0,0,10,2,0% +10/10/2018 11:00,128.0628844,65.13582802,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235118983,1.13683466,1.272450829,-1.272450829,0.312551782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847659369,147.9579948,0.847659369,32.04200516,0,0.991014042,0,0,0,10,3,0% +10/10/2018 12:00,116.8783249,76.8497067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039911594,1.341280411,1.95887501,-1.95887501,0.195166334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727726268,136.6961163,0.727726268,43.30388374,0,0.981292847,0,0,0,10,4,0% +10/10/2018 13:00,105.1745276,86.75248675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835641796,1.514116528,3.530604978,-3.530604978,0,#DIV/0!,0,0,0.068567688,1,0.276008377,0,0.928043877,0.96680584,0.724496596,1,0,0,0.011359306,0.312029739,0.968292416,0.692789012,0.961238037,0.922476074,0,0,0,0,0,0,-0.562059368,124.1983367,0.562059368,55.80166328,0,0.961041426,0,0,0,10,5,0% +10/10/2018 14:00,93.35384043,95.95792555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629331885,1.674781744,15.34261561,-15.34261561,0,#DIV/0!,0,0,0.676750761,1,0.065085874,0,0.954991013,0.993752976,0.724496596,1,0,0,0.087585614,0.312029739,0.781819745,0.506316341,0.961238037,0.922476074,0,0,0,0,0,0,-0.361963025,111.2208011,0.361963025,68.77919888,0,0.911864344,0,0,0,10,6,0% +10/10/2018 15:00,81.62525487,105.3029036,78.43137639,326.3724668,30.89621802,30.55583189,0,30.55583189,29.96458305,0.591248845,65.40724274,45.45901252,19.94823022,0.931634968,19.01659525,1.42462945,1.837882379,-5.543581722,5.543581722,0.521838003,0.39392676,0.419904226,13.50556331,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.80309699,0.674966363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.304219182,12.98206116,29.10731617,13.65702752,0,45.45901252,-0.139285685,98.00651402,0.139285685,81.99348598,0,0.691025565,29.10731617,45.07036733,58.60497018,10,7,101% +10/10/2018 16:00,70.6010671,115.5730995,274.9319237,642.1465998,61.64706282,117.2721941,55.41146468,61.8607294,59.78817642,2.072552972,68.51931434,0,68.51931434,1.858886398,66.66042795,1.232221076,2.017131114,-1.987872243,1.987872243,0.870099864,0.224226645,1.863695459,59.94285237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.47066933,1.346756867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.350241016,57.61934974,58.82091035,58.96610661,55.41146468,0,0.086290988,85.04973416,-0.086290988,94.95026584,0,0,58.82091035,58.96610661,97.4130478,10,8,66% +10/10/2018 17:00,60.53908839,127.6463893,456.767979,769.6890522,78.21206614,312.3637099,233.0667161,79.29699374,75.85368378,3.443309966,113.1070672,0,113.1070672,2.358382366,110.7486848,1.056606419,2.227849772,-0.947369518,0.947369518,0.692163419,0.171229311,2.564832289,82.49382296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91344608,1.708639996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.858212262,79.29620043,74.77165834,81.00484043,233.0667161,0,0.302806329,72.37376404,-0.302806329,107.626236,0.884877956,0,281.0072577,81.00484043,334.0233056,10,9,19% +10/10/2018 18:00,52.17724101,142.4874386,597.3985301,829.8615658,88.51009869,501.0781974,410.7335623,90.34463511,85.84119265,4.503442462,147.5150961,0,147.5150961,2.668906043,144.8461901,0.91066465,2.486874947,-0.387619104,0.387619104,0.59644046,0.148159217,2.955300919,95.05263632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.5138195,1.933613343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.141105455,91.36820954,84.65492496,93.30182288,410.7335623,0,0.494942264,60.33405676,-0.494942264,119.6659432,0.948978116,0,474.4320871,93.30182288,535.4962641,10,10,13% +10/10/2018 19:00,46.53374136,160.7049342,684.4664504,857.8851109,94.30387524,653.8114755,557.1914128,96.62006268,91.46026546,5.159797223,168.8004252,0,168.8004252,2.843609783,165.9568154,0.812167,2.804830227,0.012980076,-0.012980076,0.527933966,0.137777206,3.059625109,98.4080609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.91508602,2.060185608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216687976,94.59357127,90.13177399,96.65375688,557.1914128,0,0.64949421,49.49652164,-0.64949421,130.5034784,0.97301702,0,632.2885019,96.65375688,695.5464527,10,11,10% +10/10/2018 20:00,44.69862156,181.4416391,711.1989051,865.4560418,96.01856049,752.6739866,654.1894222,98.48456438,93.12324662,5.361317759,175.3337224,0,175.3337224,2.89531387,172.4384085,0.780138117,3.166754002,0.361727756,-0.361727756,0.4682946,0.135009432,2.895539661,93.13050885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.51360677,2.097645043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.097808628,89.5205875,91.6114154,91.61823254,654.1894222,0,0.755889832,40.8968178,-0.755889832,139.1031822,0.983852795,0,735.2375066,91.61823254,795.1998074,10,12,8% +10/10/2018 21:00,47.13190822,201.9521884,675.5786791,855.2697521,93.72771269,786.0798712,690.0855974,95.99427378,90.90147633,5.092797449,166.6281087,0,166.6281087,2.826236356,163.8018723,0.822606981,3.524730619,0.720206614,-0.720206614,0.406991105,0.138736931,2.491719085,80.14225101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37795665,2.047598619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805241995,77.03578003,89.18319865,79.08337865,690.0855974,0,0.806863093,36.20943037,-0.806863093,143.7905696,0.988031618,0,771.0095883,79.08337865,822.768078,10,13,7% +10/10/2018 22:00,53.23761453,219.686536,580.2781399,823.6476091,87.32686498,747.1150603,658.0470407,89.06801953,84.6936378,4.374381729,143.3283804,0,143.3283804,2.633227181,140.6951533,0.929171659,3.834253375,1.155546938,-1.155546938,0.332543525,0.150491392,1.894063453,60.91959144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.41074613,1.907764129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372242524,58.55822848,82.78298865,60.46599261,658.0470407,0,0.798942452,36.97076766,-0.798942452,143.0292323,0.98741727,0,732.550001,60.46599261,772.1237838,10,14,5% +10/10/2018 23:00,61.90220773,234.0687302,432.7626344,756.8748837,76.29129819,631.813575,554.5603934,77.2531816,73.99083406,3.262347538,107.2287752,0,107.2287752,2.300464125,104.9283111,1.080397339,4.085270017,1.801068154,-1.801068154,0.222152896,0.176289014,1.172092292,37.69851714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12280408,1.666678428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849176875,36.2372486,71.97198095,37.90392703,554.5603934,0,0.732697577,42.88697926,-0.732697577,137.1130207,0.981759021,0,616.4166498,37.90392703,641.224012,10,15,4% +10/10/2018 0:00,72.14752487,245.8128316,246.4403619,613.2267422,58.44515813,434.302347,375.7617545,58.54059251,56.68282097,1.857771545,61.51465608,0,61.51465608,1.762337157,59.75231893,1.259211856,4.290243254,3.096575244,-3.096575244,0.000608135,0.237157411,0.441446131,14.19842503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.48568355,1.276807271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319826219,13.6480662,54.80550977,14.92487347,375.7617545,0,0.612761526,52.21055174,-0.612761526,127.7894483,0.968402188,0,418.6940149,14.92487347,428.4620461,10,16,2% +10/10/2018 1:00,83.26373495,255.882097,53.30253535,249.8262256,23.99808508,135.6224087,111.9461374,23.6762713,23.27445427,0.401817027,13.64744762,0,13.64744762,0.723630809,12.92381681,1.453226322,4.465985089,8.421768417,-8.421768417,0,0.450224083,0.180907702,5.818613568,0.476454464,1,0.118186536,0,0.949152786,0.987914749,0.724496596,1,22.56333681,0.524268058,0.066476908,0.312029739,0.828842431,0.553339027,0.961238037,0.922476074,0.12385011,5.593072683,22.68718692,6.117340741,58.60890054,0,0.44809602,63.37840796,-0.44809602,116.621592,0.938416773,0,77.68676222,6.117340741,81.69043939,10,17,5% +10/10/2018 2:00,95.07516979,265.1344938,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65937475,4.627469878,-10.86934724,10.86934724,0,#DIV/0!,0,0,1,0.280016926,0,0.091743577,0.961238037,1,0.497473935,0.772977339,0,0,0.115824807,0.055084453,0.724496596,0.448993192,0.994778616,0.956016653,0,0,0,0,0,0,0.245735319,75.77470704,-0.245735319,104.225293,0.846529045,0,0,0,0,10,18,0% +10/10/2018 3:00,106.9181726,274.3498333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866074141,4.788307894,-2.9951865,2.9951865,0.957639252,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024654434,88.58726184,-0.024654434,91.41273816,0,0,0,0,0,10,19,0% +10/10/2018 4:00,118.6049738,284.3858971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070047303,4.963470251,-1.513307633,1.513307633,0.788944536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202093236,101.6593925,0.202093236,78.34060749,0,0.802589443,0,0,0,10,20,0% +10/10/2018 5:00,129.7145676,296.4196613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263946293,5.173499057,-0.829921947,0.829921947,0.672078701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419059428,114.7752195,0.419059428,65.22478049,0,0.930685181,0,0,0,10,21,0% +10/10/2018 6:00,139.5246824,312.2575093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435165096,5.449921651,-0.397226619,0.397226619,0.598083442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611464333,127.6954592,0.611464333,52.30454077,0,0.968229082,0,0,0,10,22,0% +10/10/2018 7:00,146.6838183,334.1790588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560115589,5.832524868,-0.06666144,0.06666144,0.541553467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766203772,140.0142041,0.766203772,39.98579588,0,0.984743208,0,0,0,10,23,0% +10/11/2018 8:00,149.178558,2.041687497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603657011,0.035634169,0.223902826,-0.223902826,0.491864051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872742002,150.7788583,0.872742002,29.22114167,0,0.9927093,0,0,0,10,0,0% +10/11/2018 9:00,145.9421867,29.34842705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547171676,0.512226682,0.512854234,-0.512854234,0.44245045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923829393,157.4924942,0.923829393,22.50750582,0,0.995877453,0,0,0,10,1,0% +10/11/2018 10:00,138.3179229,50.34494922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414103169,0.878685126,0.838526731,-0.838526731,0.386757173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915996197,156.3475987,0.915996197,23.65240132,0,0.995414621,0,0,0,10,2,0% +10/11/2018 11:00,128.2771958,65.53977246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238859422,1.14388482,1.26341847,-1.26341847,0.314096407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849788782,148.1887036,0.849788782,31.81129642,0,0.99116185,0,0,0,10,3,0% +10/11/2018 12:00,117.0669167,77.22380241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043203141,1.347809613,1.94142367,-1.94142367,0.198150689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729732284,136.8639552,0.729732284,43.13604481,0,0.981481721,0,0,0,10,4,0% +10/11/2018 13:00,105.3527539,87.10385367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838752432,1.520249038,3.481122383,-3.481122383,0,#DIV/0!,0,0,0.061168002,1,0.279731524,0,0.927480839,0.966242802,0.724496596,1,0,0,0.010167767,0.312029739,0.971571081,0.696067677,0.961238037,0.922476074,0,0,0,0,0,0,-0.564022179,124.3344172,0.564022179,55.66558283,0,0.961351004,0,0,0,10,5,0% +10/11/2018 14:00,93.53396807,96.29641786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632475705,1.68068955,14.51663391,-14.51663391,0,#DIV/0!,0,0,0.66128527,1,0.068777839,0,0.954606433,0.993368396,0.724496596,1,0,0,0.086066124,0.312029739,0.785085677,0.509582273,0.961238037,0.922476074,0,0,0,0,0,0,-0.363965735,111.3439461,0.363965735,68.6560539,0,0.912624431,0,0,0,10,6,0% +10/11/2018 15:00,81.81611302,105.636858,75.54759545,319.4837762,30.06889523,29.73171678,0,29.73171678,29.1622071,0.569509686,64.39019084,45.16611353,19.22407731,0.906688134,18.31738918,1.427960553,1.843710983,-5.651185767,5.651185767,0.503436627,0.398012604,0.399269065,12.84186561,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.0318227,0.656892466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.289269078,12.34408969,28.32109178,13.00098215,0,45.16611353,-0.141372166,98.12725537,0.141372166,81.87274463,0,0.696323592,28.32109178,44.45121255,57.41352137,10,7,103% +10/11/2018 16:00,70.8177537,115.9068662,271.2000281,639.7206441,61.0044533,114.9364667,53.72710239,61.20936431,59.16494395,2.044420367,67.595096,0,67.595096,1.839509349,65.75558665,1.236002971,2.022956441,-2.000137526,2.000137526,0.872197351,0.224942651,1.841911571,59.24220764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.87159457,1.332718262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334458663,56.94586337,58.20605323,58.27858164,53.72710239,0,0.083985257,85.1823243,-0.083985257,94.8176757,0,0,58.20605323,58.27858164,96.34821934,10,8,66% +10/11/2018 17:00,60.79197819,127.9754273,452.6273501,768.5474905,77.59010891,309.4156626,230.7530856,78.662577,75.25048085,3.412096156,112.0843694,0,112.0843694,2.339628061,109.7447414,1.061020178,2.233592568,-0.948517709,0.948517709,0.692359771,0.17142161,2.542339041,81.77036279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.33362448,1.695052566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841915981,78.600783,74.17554046,80.29583557,230.7530856,0,0.300245708,72.52763848,-0.300245708,107.4723615,0.883469726,0,278.0389058,80.29583557,330.5909243,10,9,19% +10/11/2018 18:00,52.47646517,142.7881977,592.8985707,829.1442824,87.87735519,497.7093849,408.0123363,89.69704856,85.2275287,4.469519867,146.4049493,0,146.4049493,2.649826492,143.7551228,0.915887097,2.492124183,-0.385302866,0.385302866,0.59604436,0.148216507,2.931635199,94.29146543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.92394237,1.919790273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123959722,90.63654312,84.04790209,92.55633339,408.0123363,0,0.492088464,60.52205708,-0.492088464,119.4779429,0.948392253,0,471.0036411,92.55633339,531.5799102,10,10,13% +10/11/2018 19:00,46.8808525,160.9250438,679.6341561,857.3002462,93.65422399,650.0499167,554.0963438,95.95357294,90.83020359,5.123369347,167.6091901,0,167.6091901,2.824020401,164.7851697,0.818225232,2.808671864,0.017240686,-0.017240686,0.527205359,0.137800938,3.034863202,97.61163285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.30944659,2.045993167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198748059,93.82801433,89.50819465,95.8740075,554.0963438,0,0.646327055,49.7347534,-0.646327055,130.2652466,0.972639785,0,628.4443433,95.8740075,691.1919637,10,11,10% +10/11/2018 20:00,45.07671199,181.5209968,706.0748514,864.8519174,95.35152409,748.5225529,650.7235386,97.79901431,92.47632383,5.322690477,174.0712226,0,174.0712226,2.875200261,171.1960224,0.78673704,3.168139055,0.367825796,-0.367825796,0.467251774,0.135044498,2.869976027,92.3082945,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89175998,2.083072802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.079287862,88.73024379,90.97104784,90.81331659,650.7235386,0,0.752410355,41.20039608,-0.752410355,138.7996039,0.983546901,0,730.9881675,90.81331659,790.423667,10,12,8% +10/11/2018 21:00,47.51058838,201.8826483,670.2230337,854.5060438,93.04355475,781.5389415,686.2485689,95.29037261,90.23794828,5.052424331,165.3089406,0,165.3089406,2.80560647,162.5033341,0.829216197,3.523516916,0.728835683,-0.728835683,0.405515447,0.138824764,2.465808539,79.30887877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.74014826,2.032652337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786469892,76.23471093,88.52661815,78.26736327,686.2485689,0,0.803093874,36.57343046,-0.803093874,143.4265695,0.987740778,0,766.3623133,78.26736327,817.5867372,10,13,7% +10/11/2018 22:00,53.59445164,219.5167738,574.7727985,822.4982067,86.62272216,742.1690993,653.8254917,88.34360762,84.01072748,4.33288014,141.9723142,0,141.9723142,2.611994677,139.3603195,0.935399642,3.831290466,1.168649899,-1.168649899,0.330302787,0.150707762,1.868473773,60.09653939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75430676,1.892381252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353702888,57.76707954,82.10800965,59.65946079,653.8254917,0,0.794926343,37.35170088,-0.794926343,142.6482991,0.987101091,0,727.4998656,59.65946079,766.5457895,10,14,5% +10/11/2018 23:00,62.23116389,233.8493875,427.2215173,754.8112117,75.55087005,626.369826,549.8765172,76.49330882,73.27273257,3.220576257,105.8629406,0,105.8629406,2.278137485,103.5848031,1.086138707,4.081441765,1.824218833,-1.824218833,0.218193896,0.17684238,1.147975529,36.92283916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.43253761,1.650502853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831704363,35.49163743,71.26424197,37.14214028,549.8765172,0,0.728495429,43.23959162,-0.728495429,136.7604084,0.981365389,0,610.8940244,37.14214028,635.2028124,10,15,4% +10/11/2018 0:00,72.45207184,245.5719275,241.0828994,608.5853582,57.59229448,427.9677041,370.294645,57.67305904,55.85567431,1.817384729,60.18996028,0,60.18996028,1.736620172,58.45334011,1.264527203,4.286038685,3.152928835,-3.152928835,0,0.238890003,0.434155043,13.96391858,0.008948105,1,0.307129553,0,0.92324917,0.962011133,0.724496596,1,53.71440721,1.258175403,0.001523808,0.312029739,0.995688073,0.720184669,0.961238037,0.922476074,0.313742099,13.42264968,54.02814931,14.68082508,366.9812097,0,0.608451452,52.52238308,-0.608451452,127.4776169,0.967824175,0,409.2014359,14.68082508,418.8097423,10,16,2% +10/11/2018 1:00,83.54758299,255.6302532,49.35020838,237.2076892,22.69327477,127.6573161,105.2763046,22.38101152,22.00898881,0.372022716,12.64981534,0,12.64981534,0.684285964,11.96552938,1.458180405,4.461589587,8.799511712,-8.799511712,0,0.459841519,0.171071491,5.502247202,0.49358151,1,0.113157207,0,0.949733828,0.988495791,0.724496596,1,21.33471268,0.495762851,0.068410733,0.312029739,0.824386615,0.548883211,0.961238037,0.922476074,0.11716115,5.288969299,21.45187383,5.78473215,53.31386722,0,0.443814891,63.65245929,-0.443814891,116.3475407,0.937340418,0,71.42511642,5.78473215,75.21110792,10,17,5% +10/11/2018 2:00,95.35492498,264.8733785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664257399,4.622912555,-10.3110277,10.3110277,0,#DIV/0!,0,0,1,0.226869845,0,0.096681178,0.961238037,1,0.487153591,0.762656995,0,0,0.115824807,0.043398708,0.724496596,0.448993192,0.995946944,0.957184981,0,0,0,0,0,0,0.241421364,76.0295544,-0.241421364,103.9704456,0.842893225,0,0,0,0,10,18,0% +10/11/2018 3:00,107.1974322,274.0774055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870948142,4.783553131,-2.949878711,2.949878711,0.965387341,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02046752,88.82721557,-0.02046752,91.17278443,0,0,0,0,0,10,19,0% +10/11/2018 4:00,118.8932663,284.1004281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075078955,4.958487876,-1.500437877,1.500437877,0.786743678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.206082162,101.8928551,0.206082162,78.10714491,0,0.807378321,0,0,0,10,20,0% +10/11/2018 5:00,130.023251,296.1271481,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269333835,5.168393739,-0.825276775,0.825276775,0.67128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422793058,115.0110509,0.422793058,64.98894908,0,0.931738834,0,0,0,10,21,0% +10/11/2018 6:00,139.8656445,311.9925679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441116007,5.445297551,-0.395909682,0.395909682,0.597858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614902941,127.9448682,0.614902941,52.05513184,0,0.968686354,0,0,0,10,22,0% +10/11/2018 7:00,147.0585214,334.0476234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566655391,5.830230886,-0.067194244,0.067194244,0.541644582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769327953,140.2935779,0.769327953,39.7064221,0,0.985008211,0,0,0,10,23,0% +10/12/2018 8:00,149.5527979,2.186491487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610188728,0.038161476,0.22196818,-0.22196818,0.492194895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875553996,151.1106089,0.875553996,28.88939114,0,0.992893299,0,0,0,10,0,0% +10/12/2018 9:00,146.2636087,29.71644981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552781547,0.518649891,0.509460699,-0.509460699,0.443030779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.92635293,157.8732577,0.92635293,22.12674233,0,0.996024891,0,0,0,10,1,0% +10/12/2018 10:00,138.576102,50.76793503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418609245,0.886067621,0.833117553,-0.833117553,0.387682197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918274851,156.6751658,0.918274851,23.32483417,0,0.995550071,0,0,0,10,2,0% +10/12/2018 11:00,128.4905359,65.9427915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242582909,1.15091883,1.254446965,-1.254446965,0.315630624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851882957,148.4170646,0.851882957,31.58293536,0,0.991306491,0,0,0,10,3,0% +10/12/2018 12:00,117.2551343,77.59628088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046488159,1.354310589,1.924156952,-1.924156952,0.201103471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731715049,137.030366,0.731715049,42.969634,0,0.981667389,0,0,0,10,4,0% +10/12/2018 13:00,105.5311211,87.45318235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841865526,1.526345973,3.4326358,-3.4326358,0,#DIV/0!,0,0,0.053802318,1,0.28347581,0,0.926911689,0.965673652,0.724496596,1,0,0,0.008973648,0.312029739,0.97486798,0.699364576,0.961238037,0.922476074,0,0,0,0,0,0,-0.56597422,124.4699703,0.56597422,55.53002974,0,0.961656754,0,0,0,10,5,0% +10/12/2018 14:00,93.71464502,96.63248422,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635629113,1.686555014,13.76845719,-13.76845719,0,#DIV/0!,0,0,0.645941393,1,0.072502472,0,0.954215197,0.99297716,0.724496596,1,0,0,0.08454144,0.312029739,0.788381351,0.512877946,0.961238037,0.922476074,0,0,0,0,0,0,-0.365969791,111.4672775,0.365969791,68.53272249,0,0.913376702,0,0,0,10,6,0% +10/12/2018 15:00,82.0077112,105.967886,72.67386873,312.4275831,29.23399266,28.90032624,0,28.90032624,28.35247992,0.54784632,63.32590253,44.82376893,18.5021336,0.881512741,17.62062086,1.431304572,1.849488511,-5.76442739,5.76442739,0.484071169,0.402262783,0.378896068,12.1866,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.25348214,0.63865298,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.274508912,11.71422346,27.52799105,12.35287644,0,44.82376893,-0.143469307,98.2486502,0.143469307,81.7513498,0,0.701493403,27.52799105,43.79645466,56.19189469,10,7,104% +10/12/2018 16:00,71.03539452,116.2369816,267.44809,637.2301801,60.35847876,112.5898705,52.03528585,60.5545846,58.53844793,2.016136673,66.66591666,0,66.66591666,1.820030834,64.84588582,1.23980152,2.028718041,-2.012814793,2.012814793,0.874365292,0.225682968,1.820004691,58.53760707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.26938277,1.318606143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318587203,56.26857451,57.58796997,57.58718065,52.03528585,0,0.08165854,85.31609498,-0.08165854,94.68390502,0,0,57.58796997,57.58718065,95.27762796,10,8,65% +10/12/2018 17:00,61.04571042,128.2998113,448.4618042,767.3762706,76.96597575,306.4412269,228.4153647,78.02586212,74.64516761,3.380694511,111.0555647,0,111.0555647,2.320808143,108.7347565,1.065448641,2.239254137,-0.949767197,0.949767197,0.692573446,0.171622143,2.51974876,81.0437817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.75177437,1.681417599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.825549399,77.90236562,73.57732377,79.58378321,228.4153647,0,0.297657581,72.68303378,-0.297657581,107.3169662,0.882021749,0,275.0446432,79.58378321,327.1306377,10,9,19% +10/12/2018 18:00,52.77602111,143.083255,588.3743724,828.4090132,87.24290483,494.3084222,405.2607983,89.04762391,84.61220936,4.43541455,145.288874,0,145.288874,2.630695473,142.6581785,0.921115334,2.497273904,-0.38302142,0.38302142,0.59565421,0.14827788,2.907901009,93.5280923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.33247402,1.905929915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.106764382,89.90275984,83.4392384,91.80868975,405.2607983,0,0.489203753,60.71174,-0.489203753,119.28826,0.947793098,0,467.5426259,91.80868975,527.6295772,10,10,13% +10/12/2018 19:00,47.22734527,161.1393249,674.7821661,856.7023276,93.00328859,646.25568,550.9699907,95.28568929,90.19889629,5.086792997,166.4131408,0,166.4131408,2.804392297,163.6087485,0.824272672,2.812411774,0.021492967,-0.021492967,0.526478176,0.137827129,3.010070737,96.81422194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70261,2.031772672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.180786002,93.06151264,88.883396,95.09328531,550.9699907,0,0.643128859,49.97447169,-0.643128859,130.0255283,0.972255083,0,624.5667699,95.09328531,686.8034232,10,11,10% +10/12/2018 20:00,45.45317325,181.5964098,700.9389002,864.2368403,94.68370855,744.3421634,647.2295445,97.1126189,91.82864539,5.283973508,172.8058147,0,172.8058147,2.855063158,169.9507515,0.793307529,3.16945526,0.373935174,-0.373935174,0.466207009,0.135081258,2.844428659,91.48660333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.26918682,2.068483539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060778881,87.94040299,90.3299657,90.00888653,647.2295445,0,0.748902979,41.50456028,-0.748902979,138.4954397,0.983235678,0,726.7091454,90.00888653,785.6181614,10,12,8% +10/12/2018 21:00,47.88711675,201.8118809,664.8659512,853.7314812,92.35922106,776.9763846,682.3900945,94.58629016,89.57424978,5.01204038,163.9894187,0,163.9894187,2.784971284,161.2044474,0.835787857,3.522281791,0.737503727,-0.737503727,0.404033124,0.138914049,2.439967993,78.47775799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.10217601,2.017702215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.767748505,75.43580602,87.86992452,77.45350824,682.3900945,0,0.799302954,36.93640922,-0.799302954,143.0635908,0.987445496,0,761.6929497,77.45350824,812.3847217,10,13,7% +10/12/2018 22:00,53.94903667,219.3473347,569.2785004,821.334985,85.91906511,737.2114291,649.591679,87.61975009,83.32828829,4.2914618,140.6189401,0,140.6189401,2.590776821,138.0281633,0.941588318,3.828333196,1.181853159,-1.181853159,0.328044896,0.150926243,1.843013567,59.27765164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09832025,1.877008987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335257056,56.9799335,81.4335773,58.85694248,649.591679,0,0.790897369,37.7305487,-0.790897369,142.2694513,0.986780672,0,722.438091,58.85694248,760.9587827,10,14,5% +10/12/2018 23:00,62.55783471,233.6307296,421.7055667,752.7218062,74.81144608,620.9244647,545.189865,75.73459965,72.55560495,3.178994691,104.5032381,0,104.5032381,2.255841124,102.247397,1.091840189,4.077625465,1.847666838,-1.847666838,0.214184051,0.177402083,1.124058945,36.15359959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.74320727,1.634349215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814376879,34.7522151,70.55758415,36.38656431,545.189865,0,0.724291313,43.59007472,-0.724291313,136.4099253,0.980967003,0,605.3708521,36.38656431,629.1851307,10,15,4% +10/12/2018 0:00,72.75421098,245.3315545,235.768958,603.8675165,56.73951927,421.6335858,364.8276463,56.80593941,55.02861342,1.777325994,58.87581935,0,58.87581935,1.710905853,57.1649135,1.269800526,4.281843385,3.210674969,-3.210674969,0,0.240657293,0.427726463,13.75715335,0.018553333,1,0.301938016,0,0.924062881,0.962824845,0.724496596,1,52.94334158,1.239545466,0.003145377,0.312029739,0.991119393,0.715615989,0.961238037,0.922476074,0.308274222,13.22389908,53.2516158,14.46344455,358.0588774,0,0.604151799,52.83216937,-0.604151799,127.1678306,0.967239343,0,399.580249,14.46344455,409.0462842,10,16,2% +10/12/2018 1:00,83.82856383,255.3786162,45.5236443,224.4878651,21.39036252,119.7647193,98.67617866,21.08854063,20.74536417,0.34317646,11.68273297,0,11.68273297,0.644998352,11.03773461,1.463084446,4.457197692,9.207375967,-9.207375967,0,0.469873685,0.161249588,5.186341042,0.510859012,1,0.108184531,0,0.950302587,0.98906455,0.724496596,1,20.10770668,0.46729911,0.070335606,0.312029739,0.819981011,0.544477607,0.961238037,0.922476074,0.110491604,4.985308282,20.21819829,5.452607392,48.26656355,0,0.439561304,63.92410605,-0.439561304,116.0758939,0.936250224,0,65.40777921,5.452607392,68.97640169,10,17,5% +10/12/2018 2:00,95.63187138,264.6120488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669091025,4.618351493,-9.812713166,9.812713166,0,#DIV/0!,0,0,1,0.172340597,0,0.10155801,0.961238037,1,0.47715239,0.752655794,0,0,0.115824807,0.032057709,0.724496596,0.448993192,0.997049707,0.958287744,0,0,0,0,0,0,0.237142211,76.28206752,-0.237142211,103.7179325,0.839156052,0,0,0,0,10,18,0% +10/12/2018 3:00,107.473622,273.8041912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875768563,4.778784643,-2.906452763,2.906452763,0.972813615,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.016326332,89.06452853,-0.016326332,90.93547147,0,0,0,0,0,10,19,0% +10/12/2018 4:00,119.1782462,283.8133063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080052793,4.953476656,-1.487966736,1.487966736,0.784610988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.210016433,102.1233153,0.210016433,77.87668472,0,0.811923392,0,0,0,10,20,0% +10/12/2018 5:00,130.3284942,295.8316059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274661333,5.163235555,-0.820774596,0.820774596,0.670514412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426465709,115.2434733,0.426465709,64.75652667,0,0.932757279,0,0,0,10,21,0% +10/12/2018 6:00,140.2033727,311.7227417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447010475,5.440588195,-0.394656959,0.394656959,0.597644004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618277284,128.1904415,0.618277284,51.80955853,0,0.969130136,0,0,0,10,22,0% +10/12/2018 7:00,147.4307563,333.9108835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573152116,5.827844326,-0.067757713,0.067757713,0.541740941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772387841,140.5688018,0.772387841,39.43119816,0,0.985265682,0,0,0,10,23,0% +10/13/2018 8:00,149.925255,2.330167894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616689332,0.040669102,0.220021711,-0.220021711,0.492527761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878304933,151.4385597,0.878304933,28.56144034,0,0.993072163,0,0,0,10,0,0% +10/13/2018 9:00,146.5832243,30.085898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.558359892,0.525097978,0.506070374,-0.506070374,0.443610559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928821679,158.2518751,0.928821679,21.74812495,0,0.996168354,0,0,0,10,1,0% +10/13/2018 10:00,138.8327186,51.19109053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423088049,0.893453077,0.827730554,-0.827730554,0.388603428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920507586,157.0004008,0.920507586,22.99959925,0,0.995682142,0,0,0,10,2,0% +10/13/2018 11:00,128.7028928,66.34472012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246289237,1.157933807,1.245535911,-1.245535911,0.317154504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853942075,148.6430556,0.853942075,31.35694437,0,0.991448019,0,0,0,10,3,0% +10/13/2018 12:00,117.4429717,77.96699928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049766539,1.360780845,1.907073009,-1.907073009,0.204024998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733674858,137.1953616,0.733674858,42.80463838,0,0.98184992,0,0,0,10,4,0% +10/13/2018 13:00,105.7096197,87.80034427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844980915,1.532405092,3.385119847,-3.385119847,0,#DIV/0!,0,0,0.046471088,1,0.287240958,0,0.926336429,0.965098393,0.724496596,1,0,0,0.007777057,0.312029739,0.978182885,0.702679481,0.961238037,0.922476074,0,0,0,0,0,0,-0.567915813,124.6050165,0.567915813,55.39498345,0,0.961958782,0,0,0,10,5,0% +10/13/2018 14:00,93.8958526,96.96600352,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638791782,1.692376024,13.08766518,-13.08766518,0,#DIV/0!,0,0,0.630719536,1,0.076259648,0,0.953817236,0.992579199,0.724496596,1,0,0,0.083011729,0.312029739,0.791706587,0.516203182,0.961238037,0.922476074,0,0,0,0,0,0,-0.36797545,111.5908121,0.36797545,68.40918789,0,0.91412137,0,0,0,10,6,0% +10/13/2018 15:00,82.20000999,106.2958704,69.81232971,305.2027062,28.39162243,28.06178509,0,28.06178509,27.53551026,0.52627483,62.21344833,44.43052856,17.78291977,0.85611217,16.9268076,1.434660819,1.855212919,-5.883739049,5.883739049,0.463667674,0.40668493,0.358806784,11.54045957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.46817982,0.620250353,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.259954294,11.0931287,26.72813412,11.71337906,0,44.43052856,-0.145577112,98.37069989,0.145577112,81.62930011,0,0.706539415,26.72813412,43.10529873,54.93969003,10,7,106% +10/13/2018 16:00,71.25393544,116.563334,263.6772471,634.6742004,59.70919191,110.233078,50.33662804,59.89644993,57.90873947,1.987710466,65.73205374,0,65.73205374,1.800452439,63.9316013,1.243615778,2.034413966,-2.025921025,2.025921025,0.876606589,0.226448025,1.797981084,57.82925218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.66408304,1.304421663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302631175,55.58767683,56.96671422,56.8920985,50.33662804,0,0.079310972,85.45103848,-0.079310972,94.54896152,0,0,56.96671422,56.8920985,94.20145484,10,8,65% +10/13/2018 17:00,61.30020619,128.6194466,444.2727525,766.1753577,76.3397611,303.4411446,226.0541933,77.38695131,74.03783564,3.34911567,110.0209979,0,110.0209979,2.301925461,107.7190725,1.06989043,2.244832825,-0.951122484,0.951122484,0.692805214,0.171830842,2.497069673,80.31434429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.16798379,1.66773716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.809118478,77.20120264,72.97710226,78.8689398,226.0541933,0,0.29504237,72.83992193,-0.29504237,107.1600781,0.880532815,0,272.0252373,78.8689398,323.6433811,10,9,19% +10/13/2018 18:00,53.07580515,143.3725561,583.8277056,827.6559883,86.60686318,490.8763943,402.4799078,88.39648656,83.99534671,4.401139855,144.167303,0,144.167303,2.61151647,141.5557865,0.926347553,2.502323162,-0.380777505,0.380777505,0.595270478,0.148343188,2.884108078,92.76282986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.73952217,1.892034793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089526485,89.16716046,82.82904866,91.05919526,402.4799078,0,0.486288885,60.90304879,-0.486288885,119.0969512,0.947180459,0,464.0501524,91.05919526,523.6465745,10,10,13% +10/13/2018 19:00,47.57310224,161.3477746,669.9126035,856.0917063,92.35120335,642.4302636,547.8137056,94.61655801,89.56647383,5.050084178,165.2127962,0,165.2127962,2.784729521,162.4280667,0.83030727,2.816049907,0.025734437,-0.025734437,0.525752842,0.137855599,2.985258623,96.01617906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.09470148,2.017527058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16280971,92.29440347,88.25751118,94.31193052,547.8137056,0,0.639900727,50.2155826,-0.639900727,129.7844174,0.97186288,0,620.6573168,94.31193052,682.3825891,10,11,10% +10/13/2018 20:00,45.82788711,181.6678791,695.7934872,863.6112655,94.01526692,740.1347444,643.7091994,96.42554496,91.18035975,5.245185211,171.5380938,0,171.5380938,2.834907177,168.7031866,0.799847519,3.170702636,0.380053166,-0.380053166,0.46516077,0.135119498,2.818909287,90.66581259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.64603,2.053880599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.042290182,87.15142771,89.68832019,89.20530831,643.7091994,0,0.745369155,41.80918363,-0.745369155,138.1908164,0.982919145,0,722.4024163,89.20530831,780.7855065,10,12,8% +10/13/2018 21:00,48.26137186,201.7398538,659.5101147,852.9466573,91.67488451,772.3945427,678.5123283,93.88221432,88.9105485,4.971665822,162.6701989,0,162.6701989,2.764336012,159.9058628,0.84231984,3.521024681,0.746207413,-0.746207413,0.402544706,0.139004516,2.414209555,77.64927807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.46420109,2.002752031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749086604,74.63943961,87.2132877,76.64219164,678.5123283,0,0.795492101,37.29823946,-0.795492101,142.7017605,0.987145825,0,757.0038996,76.64219164,807.1646812,10,13,7% +10/13/2018 22:00,54.30124166,219.1781843,563.7980907,820.1587557,85.21609074,732.2447818,645.3481225,86.89665935,82.64651119,4.250148157,139.2689541,0,139.2689541,2.56957955,136.6993745,0.947735455,3.825380965,1.195152434,-1.195152434,0.325770586,0.151146469,1.817694785,58.46331258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44297017,1.861651637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316913684,56.19715981,80.75988385,58.05881145,645.3481225,0,0.786857566,38.10719169,-0.786857566,141.8928083,0.986456098,0,717.3674747,58.05881145,755.3658056,10,14,5% +10/13/2018 23:00,62.88208996,233.4127439,416.217692,750.6078339,74.07326034,615.4805923,540.5032892,74.97730301,71.83967824,3.137624773,103.1503803,0,103.1503803,2.2335821,100.9167982,1.09749951,4.073820898,1.871407909,-1.871407909,0.210124089,0.177967592,1.100353721,35.39115812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.05503128,1.618222628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797202525,34.01932735,69.8522338,35.63754998,540.5032892,0,0.720087461,43.93829816,-0.720087461,136.0617018,0.98056399,0,599.8502958,35.63754998,623.1743595,10,15,4% +10/13/2018 0:00,73.05381319,245.0917221,230.5014908,599.0747528,55.88713701,415.3034786,359.3639274,55.93955123,54.20193362,1.737617602,57.57295848,0,57.57295848,1.685203382,55.8877551,1.275029571,4.27765752,3.26983908,-3.26983908,0,0.242458896,0.421300846,13.55048341,0.02820322,1,0.296792636,0,0.924863905,0.963625869,0.724496596,1,52.17113115,1.220924114,0.004759924,0.312029739,0.986590875,0.711087471,0.961238037,0.922476074,0.302855295,13.02524007,52.47398645,14.24616418,349.2287076,0,0.599864918,53.13977629,-0.599864918,126.8602237,0.966647901,0,390.0551836,14.24616418,399.3790131,10,16,2% +10/13/2018 1:00,84.10652798,255.1272121,41.82894065,211.698494,20.09190762,111.9617887,92.16040198,19.80138669,19.48606247,0.315324223,10.74775608,0,10.74775608,0.605845146,10.14191094,1.467935836,4.452809862,9.64883207,-9.64883207,0,0.480335082,0.151461286,4.871515618,0.52827825,1,0.103270791,0,0.950858987,0.98962095,0.724496596,1,18.88479756,0.438932746,0.072250406,0.312029739,0.815627763,0.540124359,0.961238037,0.922476074,0.103851978,4.682686109,18.98864954,5.121618855,43.47406606,0,0.435338014,64.19319581,-0.435338014,115.8068042,0.935146717,0,59.6432797,5.121618855,62.99527681,10,17,6% +10/13/2018 2:00,95.90588393,264.3505432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673873447,4.613787359,-9.365452893,9.365452893,0,#DIV/0!,0,0,1,0.116405187,0,0.106372374,0.961238037,1,0.467466815,0.742970219,0,0,0.115824807,0.021055073,0.724496596,0.448993192,0.998090159,0.959328196,0,0,0,0,0,0,0.232900159,76.53212342,-0.232900159,103.4678766,0.835315733,0,0,0,0,10,18,0% +10/13/2018 3:00,107.7466155,273.5302373,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880533199,4.774003245,-2.864819878,2.864819878,0.979933258,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012233009,89.29908275,-0.012233009,90.70091725,0,0,0,0,0,10,19,0% +10/13/2018 4:00,119.4597819,283.5245798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084966518,4.948437428,-1.475885818,1.475885818,0.782545029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213894147,102.3506574,0.213894147,77.64934257,0,0.816239513,0,0,0,10,20,0% +10/13/2018 5:00,130.6301555,295.5330623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279926315,5.158024986,-0.81641453,0.81641453,0.669768797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430075776,115.4723692,0.430075776,64.52763085,0,0.933741418,0,0,0,10,21,0% +10/13/2018 6:00,140.5377152,311.4479791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452845853,5.435792683,-0.39346879,0.39346879,0.597440816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621586095,128.4320523,0.621586095,51.56794772,0,0.96956062,0,0,0,10,22,0% +10/13/2018 7:00,147.8003831,333.768648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.579603322,5.825361847,-0.068352372,0.068352372,0.541842634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77538253,140.8397269,0.77538253,39.16027307,0,0.9855157,0,0,0,10,23,0% +10/14/2018 8:00,150.2958305,2.472526591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623157093,0.04315373,0.218062935,-0.218062935,0.492862731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880994255,151.7625333,0.880994255,28.23746669,0,0.993245941,0,0,0,10,0,0% +10/14/2018 9:00,146.9009708,30.45659633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563905615,0.531567885,0.502682859,-0.502682859,0.444189858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931235404,158.628218,0.931235404,21.37178202,0,0.996307883,0,0,0,10,1,0% +10/14/2018 10:00,139.0877441,51.61422495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427539084,0.900838166,0.822365406,-0.822365406,0.389520923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922694438,157.3232244,0.922694438,22.67677559,0,0.99581088,0,0,0,10,2,0% +10/14/2018 11:00,128.9142576,66.7453893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249978249,1.164926804,1.236684875,-1.236684875,0.318668121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855966368,148.8666595,0.855966368,31.13334052,0,0.99158649,0,0,0,10,3,0% +10/14/2018 12:00,117.6304249,78.33581233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053038215,1.367217847,1.890169975,-1.890169975,0.206915587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735612056,137.3589594,0.735612056,42.64104065,0,0.98202939,0,0,0,10,4,0% +10/14/2018 13:00,105.8882422,88.14520919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848098465,1.53842412,3.338549916,-3.338549916,0,#DIV/0!,0,0,0.03917474,1,0.291026685,0,0.925755062,0.964517025,0.724496596,1,0,0,0.006578101,0.312029739,0.981515562,0.706012158,0.961238037,0.922476074,0,0,0,0,0,0,-0.569847322,124.7395798,0.569847322,55.26042024,0,0.962257199,0,0,0,10,5,0% +10/14/2018 14:00,94.07757334,97.29685343,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641963407,1.698150444,12.46561835,-12.46561835,0,#DIV/0!,0,0,0.615620062,1,0.080049228,0,0.953412485,0.992174448,0.724496596,1,0,0,0.081477158,0.312029739,0.795061195,0.51955779,0.961238037,0.922476074,0,0,0,0,0,0,-0.369983001,111.7145689,0.369983001,68.28543106,0,0.914858656,0,0,0,10,6,0% +10/14/2018 15:00,82.39297019,106.6206932,66.96518964,297.8082924,27.54192208,27.2162434,0,27.2162434,26.71143151,0.504811886,61.05195133,43.98497524,17.06697609,0.83049057,16.23648552,1.43802861,1.860882147,-6.009598297,6.009598297,0.442144475,0.411287151,0.339023224,10.90415228,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67604399,0.601687591,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.245621172,10.48148593,25.92166516,11.08317352,0,43.98497524,-0.147695603,98.49340689,0.147695603,81.50659311,0,0.711465886,25.92166516,42.3769829,53.65655293,10,7,107% +10/14/2018 16:00,71.47332267,116.8858117,259.8886413,632.0516697,59.05664513,107.8667666,48.63174686,59.23501974,57.27586938,1.959150356,64.79378573,0,64.79378573,1.780775746,63.01300998,1.247444808,2.040042263,-2.039474123,2.039474123,0.878924305,0.22723827,1.775847031,57.11734495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.05574424,1.290165966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286595129,54.90336453,56.34233937,56.19353049,48.63174686,0,0.076942676,85.58714793,-0.076942676,94.41285207,0,0,56.34233937,56.19353049,93.11988121,10,8,65% +10/14/2018 17:00,61.5553868,128.9342387,440.0616185,764.9447258,75.71156059,300.4161626,223.6702145,76.74594805,73.42857769,3.317370363,108.9810172,0,108.9810172,2.282982898,106.6980343,1.074344172,2.250326984,-0.952588292,0.952588292,0.693055882,0.172047635,2.474310085,79.58231773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58234187,1.654013338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792629234,76.49755086,72.3749711,78.1515642,223.6702145,0,0.292400492,72.99827521,-0.292400492,107.0017248,0.879001656,0,268.9814601,78.1515642,320.1300958,10,9,19% +10/14/2018 18:00,53.37571392,143.6560469,579.2603629,826.8854553,85.96934762,487.4144023,399.6706384,87.7437639,83.3770546,4.366709296,143.0406745,0,143.0406745,2.592293024,140.4483814,0.931581949,2.507271008,-0.378574004,0.378574004,0.594893657,0.148412274,2.860266249,91.99599468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14519628,1.878107471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072253161,88.43004932,82.21744944,90.30815679,399.6706384,0,0.483344623,61.09592659,-0.483344623,118.9040734,0.94655414,0,460.527347,90.30815679,519.6322294,10,10,13% +10/14/2018 19:00,47.91800644,161.5503882,665.0276222,855.4687557,91.69810492,638.5751942,544.6288664,93.94632785,88.93306873,5.013259125,164.0086826,0,164.0086826,2.765036193,161.2436464,0.836326983,2.819586182,0.029962478,-0.029962478,0.525029804,0.13788616,2.960437902,95.21785936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.48584839,2.00325931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144827182,91.52702821,87.63067558,93.53028752,544.6288664,0,0.636643785,50.4579922,-0.636643785,129.5420078,0.971463146,0,616.7175475,93.53028752,677.9312501,10,11,10% +10/14/2018 20:00,46.20073537,181.7354032,690.6410843,862.9756762,93.34635504,735.9022622,640.1643,95.73796225,90.53161803,5.206344221,170.2686639,0,170.2686639,2.814737016,167.4539268,0.806354949,3.171881154,0.386176881,-0.386176881,0.464113553,0.135158995,2.793429771,89.8463038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.02243479,2.039267386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02383036,86.36368468,89.04626515,88.40295207,640.1643,0,0.741810363,42.11414006,-0.741810363,137.8858599,0.982597329,0,718.0699963,88.40295207,775.9279604,10,12,8% +10/14/2018 21:00,48.63323178,201.6665331,654.1582453,852.1522024,90.99072123,767.7958073,674.6174709,93.17833644,88.24701526,4.931321171,161.3519461,0,161.3519461,2.743705965,158.6082402,0.84881002,3.519744994,0.754943167,-0.754943167,0.401050805,0.139095887,2.388545443,76.82383203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82638771,1.987805632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730493043,73.84598948,86.55688075,75.83379511,674.6174709,0,0.79166312,37.65879466,-0.79166312,142.3412053,0.986841822,0,752.297615,75.83379511,801.9293173,10,13,7% +10/14/2018 22:00,54.65093794,219.0092872,558.3344507,818.9703887,84.5140001,727.2719491,641.097397,86.1745521,81.96559117,4.208960931,137.9230607,0,137.9230607,2.548408926,135.3746517,0.953838806,3.822433153,1.208543027,-1.208543027,0.32348066,0.151368055,1.792529441,57.6539086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.78844395,1.846313592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298681478,55.41912992,80.08712543,57.26544351,641.097397,0,0.782809007,38.48151012,-0.782809007,141.5184899,0.98612746,0,712.2908729,57.26544351,749.7699603,10,14,5% +10/14/2018 23:00,63.20379845,233.1954168,410.7608316,748.4705688,73.33655337,610.0413841,535.8197098,74.22167436,71.1251857,3.096488655,101.8050869,0,101.8050869,2.211367667,99.59371925,1.103114383,4.070027824,1.895436935,-1.895436935,0.206014883,0.178538331,1.076871003,34.63587318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36823388,1.602128347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780189376,33.29331874,69.14842325,34.89544709,535.8197098,0,0.715886145,44.28413093,-0.715886145,135.7158691,0.980156492,0,594.3355901,34.89544709,617.1739623,10,15,4% +10/14/2018 0:00,73.35074832,244.8524389,225.2834631,594.2088685,55.03546823,408.9809878,353.9067601,55.07422771,53.3759458,1.698281905,56.2821063,0,56.2821063,1.659522426,54.62258387,1.280212067,4.273481241,3.33044522,-3.33044522,0,0.24429431,0.414880607,13.34398645,0.037893513,1,0.291695452,0,0.925652053,0.964414016,0.724496596,1,51.39811021,1.202318349,0.006366731,0.312029739,0.982104262,0.706600858,0.961238037,0.922476074,0.29748626,12.82674734,51.69559647,14.02906569,340.4959898,0,0.595593198,53.44506862,-0.595593198,126.5549314,0.966050082,0,380.6317754,14.02906569,389.8135183,10,16,2% +10/14/2018 1:00,84.38132288,254.8760665,38.27215635,198.8754847,18.80079142,104.2671257,85.74473586,18.52238987,18.23387819,0.288511681,9.846440635,0,9.846440635,0.566913229,9.279527407,1.472731911,4.448426546,10.12788273,-10.12788273,0,0.491239408,0.141728307,4.558469548,0.545829496,1,0.098418319,0,0.951402955,0.990164919,0.724496596,1,17.66876464,0.410726704,0.074153961,0.312029739,0.811329064,0.53582566,0.961238037,0.922476074,0.097254467,4.381774319,17.76601911,4.792501023,38.94272986,0,0.431147841,64.45957291,-0.431147841,115.5404271,0.934030499,0,54.13971651,4.792501023,57.27631258,10,17,6% +10/14/2018 2:00,96.17683667,264.0889001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678602464,4.609220824,-8.962001457,8.962001457,0,#DIV/0!,0,0,1,0.059041567,0,0.111122559,0.961238037,1,0.458093175,0.733596579,0,0,0.115824807,0.010384408,0.724496596,0.448993192,0.999071431,0.960309467,0,0,0,0,0,0,0.228697531,76.77959794,-0.228697531,103.2204021,0.831370617,0,0,0,0,10,18,0% +10/14/2018 3:00,108.0162857,273.2555912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885239831,4.769209766,-2.82489765,2.82489765,0.986760361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.008189705,89.53075924,-0.008189705,90.46924076,0,0,0,0,0,10,19,0% +10/14/2018 4:00,119.7377413,283.2342984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089817824,4.943371061,-1.464187212,1.464187212,0.78054445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217713397,102.5747652,0.217713397,77.42523482,0,0.820340269,0,0,0,10,20,0% +10/14/2018 5:00,130.9280925,295.231548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285126298,5.152762568,-0.812195801,0.812195801,0.669047352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433621663,115.6976205,0.433621663,64.30237949,0,0.934692108,0,0,0,10,21,0% +10/14/2018 6:00,140.8685191,311.1682308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45861947,5.430910156,-0.392345559,0.392345559,0.597248732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62482813,128.6695738,0.62482813,51.3304262,0,0.969977995,0,0,0,10,22,0% +10/14/2018 7:00,148.1672607,333.6207192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586006544,5.822780004,-0.068978773,0.068978773,0.541949754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778311142,141.1062042,0.778311142,38.89379578,0,0.98575834,0,0,0,10,23,0% +10/15/2018 8:00,150.6644257,2.613364418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629590293,0.045611814,0.216091346,-0.216091346,0.493199893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883621446,152.0823505,0.883621446,27.91764952,0,0.993414683,0,0,0,10,0,0% +10/15/2018 9:00,147.2167883,30.82835824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56941767,0.538056354,0.499297738,-0.499297738,0.444768748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933593916,159.0021567,0.933593916,20.99784327,0,0.996443524,0,0,0,10,1,0% +10/15/2018 10:00,139.3411539,52.03714068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.431961919,0.908219438,0.817021756,-0.817021756,0.39043474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924835489,157.6435612,0.924835489,22.35643879,0,0.995936331,0,0,0,10,2,0% +10/15/2018 11:00,129.1246246,67.1446265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253649844,1.171894808,1.2278934,-1.2278934,0.320171551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857956117,149.0878646,0.857956117,30.91213537,0,0.991721961,0,0,0,10,3,0% +10/15/2018 12:00,117.8174927,78.70257273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056303164,1.373619024,1.873445968,-1.873445968,0.20977556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737527036,137.5211808,0.737527036,42.47881915,0,0.982205875,0,0,0,10,4,0% +10/15/2018 13:00,106.0669827,88.48764557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851218075,1.544400762,3.292902156,-3.292902156,0,#DIV/0!,0,0,0.031913686,1,0.294832702,0,0.925167592,0.963929555,0.724496596,1,0,0,0.005376885,0.312029739,0.984865778,0.709362374,0.961238037,0.922476074,0,0,0,0,0,0,-0.571769156,124.8736868,0.571769156,55.12631324,0,0.962552121,0,0,0,10,5,0% +10/15/2018 14:00,94.25979099,97.62491074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645143705,1.703876124,11.89509323,-11.89509323,0,#DIV/0!,0,0,0.600643293,1,0.083871063,0,0.95300088,0.991762844,0.724496596,1,0,0,0.079937895,0.312029739,0.798444973,0.522941569,0.961238037,0.922476074,0,0,0,0,0,0,-0.371992772,111.8385693,0.371992772,68.16143071,0,0.915588786,0,0,0,10,6,0% +10/15/2018 15:00,82.58655282,106.942236,64.13474281,290.2438748,26.68505864,26.36388045,0,26.36388045,25.88040567,0.483474782,59.84059951,43.48573562,16.3548639,0.804652975,15.55021092,1.441407265,1.866494127,-6.142533692,6.142533692,0.419411184,0.416078049,0.31956786,10.27840089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.87723034,0.582968342,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.231525827,9.879989894,25.10875616,10.46295824,0,43.48573562,-0.149824818,98.61677463,0.149824818,81.38322537,0,0.716276917,25.10875616,41.61078689,52.34218397,10,7,108% +10/15/2018 16:00,71.69350279,117.2043027,256.0834184,629.3615237,58.40089043,105.4916194,46.92126627,58.57035309,56.63988811,1.930464978,63.85139196,0,63.85139196,1.761002323,62.09038963,1.251287676,2.04560098,-2.053492948,2.053492948,0.881321666,0.228054166,1.753608816,56.40208751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44441486,1.275840188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270483618,54.21583187,55.71489847,55.49167206,46.92126627,0,0.074553757,85.7244173,-0.074553757,94.2755827,0,0,55.71489847,55.49167206,92.033088,10,8,65% +10/15/2018 17:00,61.81117381,129.2440938,435.829836,763.6843581,75.08147092,297.3670325,221.2640756,76.10295695,72.81748755,3.285469399,107.935973,0,107.935973,2.263983369,105.6719896,1.078808497,2.255734975,-0.954169562,0.954169562,0.693326295,0.172272444,2.451478367,78.84797118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.99493878,1.640248244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776087732,75.79166903,71.77102651,77.43191727,221.2640756,0,0.289732365,73.15806618,-0.289732365,106.8419338,0.877426943,0,265.914088,77.43191727,316.5917292,10,9,19% +10/15/2018 18:00,53.67564453,143.9336732,574.6741562,826.0976795,85.33047721,483.9235623,396.8339773,87.08958502,82.75744849,4.332136533,141.9094312,0,141.9094312,2.573028724,139.3364025,0.936816725,2.512116502,-0.376413935,0.376413935,0.594524264,0.148484974,2.836385461,91.22790643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.54960732,1.864150552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054951611,87.69173369,81.60455893,89.55588424,396.8339773,0,0.480371737,61.29031644,-0.480371737,118.7096836,0.945913943,0,456.9753511,89.55588424,515.5878862,10,10,13% +10/15/2018 19:00,48.26194148,161.7471599,660.1294025,854.8338716,91.044132,634.6920248,541.416875,93.27514978,88.2988155,4.976334276,162.8013328,0,162.8013328,2.745316497,160.0560163,0.842329782,2.823020495,0.034174336,-0.034174336,0.524309534,0.137918614,2.935619726,94.41962152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.87618007,1.988972457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126846498,90.75973163,87.00302657,92.74870408,541.416875,0,0.633359174,50.70160655,-0.633359174,129.2983934,0.971055853,0,612.7490517,92.74870408,673.4512236,10,11,10% +10/15/2018 20:00,46.57160012,181.7989779,685.484194,862.3305831,92.67713117,731.6467197,636.5966766,95.05004313,89.88257373,5.167469404,168.9981365,0,168.9981365,2.794557447,166.2035791,0.81282776,3.172990741,0.392303263,-0.392303263,0.46306588,0.135199516,2.76800208,89.02846183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.39854872,2.024647357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005408084,85.57754388,88.4039568,87.60219123,636.5966766,0,0.73822811,42.41930432,-0.73822811,137.5806957,0.982270257,0,713.7139381,87.60219123,771.0478202,10,12,8% +10/15/2018 21:00,49.00257448,201.5918834,648.813096,851.3487844,90.30691025,763.1826155,670.7077646,92.47485089,87.58382371,4.891027178,160.0353334,0,160.0353334,2.723086541,157.3122468,0.855256267,3.51844211,0.763707171,-0.763707171,0.399552072,0.139187866,2.362987959,76.00181547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.18890276,1.972866929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.711976732,73.0558359,85.90087949,75.02870283,670.7077646,0,0.787817845,38.01794921,-0.787817845,141.9820508,0.986533552,0,747.5765931,75.02870283,796.6813785,10,13,7% +10/15/2018 22:00,54.99799645,218.8406064,552.8904903,817.7708119,83.81299791,722.2957762,636.8421274,85.45364884,81.28572679,4.167922058,136.5819716,0,136.5819716,2.527271124,134.0547005,0.95989612,3.81948912,1.222019827,-1.222019827,0.321175991,0.151590594,1.767529578,56.84982707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.13493244,1.830999326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.280569162,54.64621617,79.4155016,56.4772155,636.8421274,0,0.7787538,38.85338429,-0.7787538,141.1466157,0.985794856,0,707.2111947,56.4772155,744.1744027,10,14,5% +10/15/2018 23:00,63.52282845,232.9787334,405.3379446,746.3113934,72.60157172,604.610083,531.1421079,73.46797511,70.41236646,3.055608642,100.4680828,0,100.4680828,2.189205259,98.27887751,1.108682507,4.066245985,1.919747924,-1.919747924,0.20185746,0.179113682,1.05362186,33.8881008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68304491,1.586071758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763345451,32.57453149,68.44639036,34.16060325,531.1421079,0,0.711689668,44.62744181,-0.711689668,135.3725582,0.979744659,0,588.830034,34.16060325,611.1874656,10,15,4% +10/15/2018 0:00,73.64488559,244.6137128,220.1178425,589.2719414,54.18484941,402.6698314,348.4595138,54.21031756,52.55097628,1.659341275,55.00399249,0,55.00399249,1.633873131,53.37011936,1.285345731,4.269314683,3.392515843,-3.392515843,0,0.246162913,0.408468283,13.13774407,0.047619671,1,0.286648524,0,0.92642714,0.965189103,0.724496596,1,50.62462939,1.183735521,0.007965062,0.312029739,0.977661318,0.702157914,0.961238037,0.922476074,0.292168088,12.62849932,50.91679747,13.81223484,331.8659863,0,0.591339056,53.74791061,-0.591339056,126.2520894,0.96544614,0,371.3155328,13.81223484,380.3553643,10,16,2% +10/15/2018 1:00,84.65279314,254.6252048,34.85925102,186.0590412,17.52023245,96.7007484,79.44603184,17.25471656,16.9919328,0.262783759,8.980328648,0,8.980328648,0.528299651,8.452028997,1.477469961,4.444048183,10.64916649,-10.64916649,0,0.502599222,0.132074913,4.247983201,0.563501961,1,0.0936295,0,0.951934424,0.990696387,0.724496596,1,16.46270113,0.382751299,0.07604505,0.312029739,0.807087148,0.531583744,0.961238037,0.922476074,0.090713072,4.083323032,16.5534142,4.466074331,34.67803713,0,0.426993665,64.72307872,-0.426993665,115.2769213,0.932902244,0,48.90463286,4.466074331,51.82758918,10,17,6% +10/15/2018 2:00,96.44460312,263.827158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68327587,4.604652563,-8.596431085,8.596431085,0,#DIV/0!,0,0,1,0.000229933,0,0.115806848,0.961238037,1,0.449027607,0.724531011,0,0,0.115824807,3.93E-05,0.724496596,0.448993192,0.999996533,0.96123457,0,0,0,0,0,0,0.224536665,77.02436612,-0.224536665,102.9756339,0.827319218,0,0,0,0,10,18,0% +10/15/2018 3:00,108.2825052,272.9803015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889886238,4.764405055,-2.786609472,2.786609472,0.993308025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004198579,89.75943842,-0.004198579,90.24056158,0,0,0,0,0,10,19,0% +10/15/2018 4:00,120.0119919,282.942514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094604401,4.938278463,-1.452863445,1.452863445,0.778607971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221472282,102.7955219,0.221472282,77.20447808,0,0.824238114,0,0,0,10,20,0% +10/15/2018 5:00,131.2221628,294.9270972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290258792,5.1474489,-0.808117719,0.808117719,0.668349959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437101791,115.9191097,0.437101791,64.08089033,0,0.935610169,0,0,0,10,21,0% +10/15/2018 6:00,141.1956306,310.8834507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464328643,5.425939805,-0.391287687,0.391287687,0.597067825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628002173,128.9028798,0.628002173,51.09712023,0,0.970382441,0,0,0,10,22,0% +10/15/2018 7:00,148.5312466,333.4668943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.592359296,5.820095251,-0.069637488,0.069637488,0.542062401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781172839,141.3680852,0.781172839,38.63191476,0,0.985993678,0,0,0,10,23,0% +10/16/2018 8:00,151.030943,2.752465319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635987228,0.048039582,0.214106419,-0.214106419,0.493539336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886186035,152.3978304,0.886186035,27.60216962,0,0.993578438,0,0,0,10,0,0% +10/16/2018 9:00,147.5306199,31.20098622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574895064,0.544559939,0.495914574,-0.495914574,0.445347303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935897075,159.3735603,0.935897075,20.62643969,0,0.996575322,0,0,0,10,1,0% +10/16/2018 10:00,139.5929266,52.45963385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436356182,0.915593335,0.811699239,-0.811699239,0.391344944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926930874,157.9613392,0.926930874,22.03866082,0,0.996058545,0,0,0,10,2,0% +10/16/2018 11:00,129.3339908,67.54225617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257303974,1.178834754,1.219161014,-1.219161014,0.321664877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859911655,149.306665,0.859911655,30.69333505,0,0.991854492,0,0,0,10,3,0% +10/16/2018 12:00,118.0041758,79.06713156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059561399,1.379981776,1.856899111,-1.856899111,0.21260524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739420235,137.6820519,0.739420235,42.31794813,0,0.982379454,0,0,0,10,4,0% +10/16/2018 13:00,106.245837,88.82752089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854339672,1.550332706,3.248153491,-3.248153491,0,#DIV/0!,0,0,0.024688329,1,0.298658713,0,0.924574026,0.96333599,0.724496596,1,0,0,0.004173517,0.312029739,0.988233291,0.712729887,0.961238037,0.922476074,0,0,0,0,0,0,-0.573681761,125.0073673,0.573681761,54.99263274,0,0.962843664,0,0,0,10,5,0% +10/16/2018 14:00,94.44249033,97.95005173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64833241,1.709550905,11.37000447,-11.37000447,0,#DIV/0!,0,0,0.585789531,1,0.087724984,0,0.952582359,0.991344322,0.724496596,1,0,0,0.078394116,0.312029739,0.801857702,0.526354298,0.961238037,0.922476074,0,0,0,0,0,0,-0.374005117,111.9628363,0.374005117,68.03716366,0,0.91631199,0,0,0,10,6,0% +10/16/2018 15:00,82.7807188,107.2603802,61.26489666,281.8833212,25.84143905,25.52406498,0,25.52406498,25.06222431,0.461840669,58.46994223,42.836344,15.63359823,0.779214732,14.85438349,1.4447961,1.872046791,-6.283131461,6.283131461,0.395367549,0.42179846,0.300381442,9.661299722,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.0907633,0.564538421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.217625332,9.286808778,24.30838863,9.851347199,0,42.836344,-0.151964805,98.7408071,0.151964805,81.2591929,0,0.720976448,24.30838863,40.73534234,50.96885549,10,7,110% +10/16/2018 16:00,71.91442256,117.5186959,252.1605515,626.0125846,57.82298582,103.1435511,45.16324886,57.9803022,56.07940945,1.90089275,62.88282149,0,62.88282149,1.743576366,61.13924513,1.255143453,2.051088176,-2.067997334,2.067997334,0.883802062,0.229310197,1.730662927,55.66406884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90566145,1.263215142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253859399,53.50642026,55.15952085,54.7696354,45.16324886,0,0.072144315,85.8628411,-0.072144315,94.1371589,0,0,55.15952085,54.7696354,91.00515182,10,8,65% +10/16/2018 17:00,62.06748891,129.5489189,431.4623555,761.9157495,74.55723895,294.2606917,218.6990831,75.5616086,72.30906311,3.252545486,106.8612192,0,106.8612192,2.248175841,104.6130434,1.08328204,2.261055177,-0.955871438,0.955871438,0.693617333,0.172801261,2.428222453,78.09998104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50622187,1.628795744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759238901,75.07267245,71.26546077,76.7014682,218.6990831,0,0.287038407,73.31926742,-0.287038407,106.6807326,0.875807283,0,262.8037105,76.7014682,313.0032875,10,9,19% +10/16/2018 18:00,53.97549445,144.2053819,569.9481735,824.8797572,84.81063792,480.3234779,393.7736836,86.54979435,82.25328427,4.296510079,140.747887,0,140.747887,2.557353651,138.1905333,0.942050093,2.516858714,-0.374300445,0.374300445,0.594162836,0.148804123,2.8122939,90.45303904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0649855,1.852794015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037497358,86.94690167,81.10248286,88.79969569,393.7736836,0,0.477371011,61.4861611,-0.477371011,118.5138389,0.945259664,0,453.3208628,88.79969569,511.4384876,10,10,13% +10/16/2018 19:00,48.60479163,161.9380825,655.0946066,853.8069024,90.51553401,630.6639181,537.9393816,92.72453655,87.7861567,4.938379858,161.5646491,0,161.5646491,2.729377317,158.8352718,0.848313646,2.826352724,0.038367128,-0.038367128,0.523592524,0.138171698,2.910772715,93.62045624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.38339293,1.977424575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.108844924,89.99154357,86.49223785,91.96896814,537.9393816,0,0.630048059,50.94633167,-0.630048059,129.0536683,0.970640974,0,608.6382434,91.96896814,668.8300937,10,11,10% +10/16/2018 20:00,46.94036382,181.8585973,680.1990848,861.3046669,92.13538366,727.2198072,632.7350173,94.48478992,89.3571619,5.127628019,167.7003649,0,167.7003649,2.778221761,164.9221432,0.819263901,3.174031296,0.398429094,-0.398429094,0.462018302,0.135453554,2.742716104,88.21517794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89350288,2.012812208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987088481,84.79578446,87.88059137,86.80859667,632.7350173,0,0.734623928,42.72455197,-0.734623928,137.275448,0.981937964,0,709.1871262,86.80859667,766.0016165,10,12,8% +10/16/2018 21:00,49.36927802,201.5158681,643.3522546,850.1523302,89.7490021,758.3764409,666.4838413,91.8925996,87.04273855,4.849861049,158.6944662,0,158.6944662,2.706263552,155.9882026,0.861656451,3.517115394,0.772495375,-0.772495375,0.3980492,0.139502118,2.337742689,75.18984081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.66879112,1.960678731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69368662,72.27533497,85.36247774,74.2360137,666.4838413,0,0.783958142,38.37557843,-0.783958142,141.6244216,0.986221085,0,742.6628946,74.2360137,791.2488808,10,13,7% +10/16/2018 22:00,55.34228814,218.6721048,547.3472522,816.1382822,83.23179716,717.1056843,632.2574981,84.84818617,80.72205138,4.126134788,135.2204241,0,135.2204241,2.509745777,132.7106783,0.965905144,3.816548211,1.235577303,-1.235577303,0.318857527,0.152063972,1.743022744,56.06160305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.5931062,1.818302272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262814045,53.88854526,78.85592025,55.70684753,632.2574981,0,0.774694083,39.22269469,-0.774694083,140.7773053,0.985458394,0,701.9193791,55.70684753,738.3783967,10,14,5% +10/16/2018 23:00,63.83904803,232.762678,399.8373636,743.6358683,71.97258243,598.9391344,526.1226479,72.81648646,69.80234352,3.014142939,99.11543688,0,99.11543688,2.170238911,96.94519797,1.114201579,4.062475107,1.944333965,-1.944333965,0.197652999,0.180004644,1.031075561,33.16293435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.09666765,1.572330703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747010734,31.87747391,67.84367839,33.44980462,526.1226479,0,0.707500365,44.96809966,-0.707500365,135.0319003,0.979328658,0,583.0906653,33.44980462,604.9828934,10,15,4% +10/16/2018 0:00,73.93609398,244.3755507,214.9101398,583.6506813,53.40854083,396.0823553,342.6641956,53.41815968,51.79807626,1.620083412,53.71791609,0,53.71791609,1.610464562,52.10745153,1.290428276,4.26515797,3.456071583,-3.456071583,0,0.248515686,0.402616141,12.94951907,0.057376866,1,0.281653921,0,0.92718899,0.965950953,0.724496596,1,49.91920013,1.166776093,0.009554159,0.312029739,0.973263826,0.697760422,0.961238037,0.922476074,0.287293972,12.44757029,50.2064941,13.61434638,323.0031979,0,0.587104935,54.04816634,-0.587104935,125.9518337,0.964836349,0,361.8517201,13.61434638,370.7620376,10,16,2% +10/16/2018 1:00,84.92078077,254.374652,31.55525419,172.7742612,16.25902465,89.06913871,73.06250681,16.00663191,15.76875507,0.237876835,8.141206295,0,8.141206295,0.490269583,7.650936713,1.482147228,4.439675212,11.21808699,-11.21808699,0,0.515255702,0.122567396,3.942188768,0.581283747,1,0.088906763,0,0.952453327,0.99121529,0.724496596,1,15.27493429,0.355198644,0.0779224,0.312029739,0.80290429,0.527400885,0.961238037,0.922476074,0.084270788,3.789381792,15.35920507,4.144580436,30.59245908,0,0.422878421,64.9835519,-0.422878421,115.0164481,0.931762707,0,43.86411754,4.144580436,46.57666255,10,17,6% +10/16/2018 2:00,96.70905673,263.565356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687891456,4.600083256,-8.263845107,8.263845107,0.056645566,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.220419906,77.2663027,-0.220419906,102.7336973,0.823160234,0,0,0,0,10,18,0% +10/16/2018 3:00,108.5451467,272.7044181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894470197,4.75958998,-2.749884006,2.749884006,0.999588449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000261789,89.98500061,-0.000261789,90.01499939,0,0,0,0,0,10,19,0% +10/16/2018 4:00,120.2824018,282.649281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099323944,4.933160582,-1.44190744,1.44190744,0.776734384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225168916,103.0128112,0.225168916,76.98718879,0,0.827944483,0,0,0,10,20,0% +10/16/2018 5:00,131.512224,294.6197482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295321315,5.142084648,-0.804179666,0.804179666,0.667676512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440514604,116.1367195,0.440514604,63.86328047,0,0.936496385,0,0,0,10,21,0% +10/16/2018 6:00,141.5188955,310.5935965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46997068,5.420880894,-0.390295615,0.390295615,0.596898171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631107037,129.131845,0.631107037,50.86815496,0,0.970774136,0,0,0,10,22,0% +10/16/2018 7:00,148.8921973,333.3069652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598659073,5.817303963,-0.070329105,0.070329105,0.542180675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783966821,141.6252226,0.783966821,38.37477742,0,0.986221791,0,0,0,10,23,0% +10/17/2018 8:00,151.3952856,2.889600716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642346206,0.050433047,0.212107622,-0.212107622,0.49388115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888687595,152.7087912,0.888687595,27.2912088,0,0.993737259,0,0,0,10,0,0% +10/17/2018 9:00,147.8424114,31.57427233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580336853,0.551075011,0.492532929,-0.492532929,0.445925598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938144791,159.7422965,0.938144791,20.2577035,0,0.996703323,0,0,0,10,1,0% +10/17/2018 10:00,139.8430444,52.88149491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44072156,0.9229562,0.806397485,-0.806397485,0.392251598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928980777,158.27649,0.928980777,21.72350995,0,0.996177573,0,0,0,10,2,0% +10/17/2018 11:00,129.5423562,67.93810019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260940636,1.185743536,1.210487246,-1.210487246,0.323148179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861833357,149.5230596,0.861833357,30.47694043,0,0.991984144,0,0,0,10,3,0% +10/17/2018 12:00,118.1904772,79.42933865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062812971,1.386303482,1.84052756,-1.84052756,0.21540494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741292131,137.841602,0.741292131,42.15839803,0,0.982550208,0,0,0,10,4,0% +10/17/2018 13:00,106.4248022,89.164702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857463204,1.556217627,3.204281673,-3.204281673,0,#DIV/0!,0,0,0.017499077,1,0.3025044,0,0.923974376,0.962736339,0.724496596,1,0,0,0.002968106,0.312029739,0.991617846,0.716114442,0.961238037,0.922476074,0,0,0,0,0,0,-0.575585614,125.1406534,0.575585614,54.85934659,0,0.96313195,0,0,0,10,5,0% +10/17/2018 14:00,94.62565679,98.27215243,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651529268,1.715172623,10.8851901,-10.8851901,0,#DIV/0!,0,0,0.571059091,1,0.091610795,0,0.952156862,0.990918825,0.724496596,1,0,0,0.076845999,0.312029739,0.80529914,0.529795736,0.961238037,0.922476074,0,0,0,0,0,0,-0.376020415,112.0873948,0.376020415,67.91260522,0,0.917028496,0,0,0,10,6,0% +10/17/2018 15:00,82.97542867,107.5750075,58.36217157,272.7391163,25.00754509,24.69343404,0,24.69343404,24.25347534,0.439958702,56.93801089,42.03335694,14.90465394,0.754069752,14.15058419,1.448194429,1.877538074,-6.432043159,6.432043159,0.369902149,0.428488941,0.281526102,9.054847172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.31336302,0.546320969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.203964702,8.70386352,23.51732772,9.250184488,0,42.03335694,-0.154115616,98.8655085,0.154115616,81.1344915,0,0.725568244,23.51732772,39.74825346,49.53176465,10,7,111% +10/17/2018 16:00,72.13602867,117.8288805,248.1224437,621.9927353,57.32108642,100.8249739,43.36187796,57.46309596,55.59264417,1.870451788,61.88860138,0,61.88860138,1.728442248,60.16015913,1.25901121,2.056501919,-2.083008092,2.083008092,0.886369053,0.231019353,1.707011712,54.90336446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.43776415,1.252250525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.236724174,52.77520227,54.67448832,54.0274528,43.36187796,0,0.069714444,86.00241398,-0.069714444,93.99758602,0,0,54.67448832,54.0274528,90.03437563,10,8,65% +10/17/2018 17:00,62.32425375,129.8486225,426.9612622,759.6301843,74.13794979,291.0983583,215.9773269,75.1210314,71.90241706,3.218614343,105.7572339,0,105.7572339,2.235532726,103.5217012,1.087763432,2.266285993,-0.95769926,0.95769926,0.693929909,0.173640928,2.404550184,77.33859949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11533822,1.61963585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742088423,74.34080355,70.85742664,75.9604394,215.9773269,0,0.284319043,73.48185119,-0.284319043,106.5181488,0.87414122,0,259.6521107,75.9604394,309.3666991,10,9,19% +10/17/2018 18:00,54.27516144,144.4711209,565.0846932,823.2249154,84.40925757,476.6150302,390.4911761,86.12385413,81.86400702,4.25984711,139.5565767,0,139.5565767,2.545250553,137.0113262,0.947280269,2.521496734,-0.372236802,0.372236802,0.593809932,0.149374525,2.788003396,89.6717729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.69079739,1.844025361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019898969,86.19591895,80.71069636,88.03994431,390.4911761,0,0.474343243,61.68340275,-0.474343243,118.3165973,0.944591099,0,449.5651855,88.03994431,507.1855682,10,10,13% +10/17/2018 19:00,48.94644173,162.1231489,649.9258216,852.3819255,90.11187052,626.4917419,534.1976614,92.29408052,87.39466515,4.899415373,160.2992454,0,160.2992454,2.717205374,157.58204,0.854276565,2.829582741,0.042537852,-0.042537852,0.522879288,0.13864947,2.885911564,92.82083616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.00707636,1.968606043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090833104,89.22291833,86.09790946,91.19152437,534.1976614,0,0.626711625,51.19207328,-0.626711625,128.8079267,0.97021849,0,604.3863576,91.19152437,664.0693865,10,11,10% +10/17/2018 20:00,47.30690942,181.9142543,674.788665,859.8921622,91.72069236,722.6224504,628.5806333,94.04181707,88.95497508,5.086841989,166.3760416,0,166.3760416,2.765717288,163.6103243,0.825661328,3.175002695,0.404551002,-0.404551002,0.460971394,0.135925064,2.717588825,87.40699827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50690561,2.00375276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.968883853,84.01893142,87.47578946,86.02268418,628.5806333,0,0.730999375,43.02975925,-0.730999375,136.9702408,0.981600489,0,704.4908463,86.02268418,760.7909727,10,12,8% +10/17/2018 21:00,49.7332208,201.4384508,637.7789292,848.5566358,89.31649756,753.3781935,661.9470709,91.43112258,86.62327562,4.807846967,157.3301073,0,157.3301073,2.693221944,154.6368853,0.868008451,3.515764206,0.781303491,-0.781303491,0.396542924,0.140043036,2.312828653,74.38851977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.2655874,1.951230131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675636486,71.50507471,84.94122389,73.45630484,661.9470709,0,0.780085905,38.73155857,-0.780085905,141.2684414,0.985904495,0,737.5578166,73.45630484,785.633499,10,13,7% +10/17/2018 22:00,55.68368417,218.5037447,541.7082336,814.065435,82.76967018,711.7023763,627.3448916,84.35748472,80.27385924,4.083625483,133.8392439,0,133.8392439,2.495810944,131.3434329,0.971863628,3.813609773,1.249209502,-1.249209502,0.316526283,0.15279382,1.719030091,55.28991686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16228686,1.808206533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245431449,53.14677114,78.40771831,54.95497768,627.3448916,0,0.770632021,39.58932222,-0.770632021,140.4106778,0.98511819,0,696.4165827,54.95497768,732.3835165,10,14,5% +10/17/2018 23:00,64.15232546,232.5472347,394.2629741,740.4344495,71.44830076,593.0287857,520.762794,72.26599171,69.29387088,2.972120836,97.74805257,0,97.74805257,2.154429884,95.59362269,1.119669302,4.058714912,1.969187201,-1.969187201,0.193402845,0.18121991,1.00925588,32.46113839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60790441,1.560877117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.731202449,31.20288094,67.33910686,32.76375806,520.762794,0,0.70332059,45.30597373,-0.70332059,134.6940263,0.978908665,0,577.1183181,32.76375806,598.5615424,10,15,4% +10/17/2018 0:00,74.22424263,244.1379595,209.6653548,577.3340675,52.70375494,389.2192441,336.5241558,52.69508828,51.11454227,1.580546007,52.42500536,0,52.42500536,1.589212667,50.83579269,1.295457419,4.261011223,3.521131007,-3.521131007,0,0.251370833,0.397303167,12.77863557,0.067159981,1,0.27671372,0,0.927937433,0.966699396,0.724496596,1,49.27933306,1.151379168,0.01113325,0.312029739,0.968913582,0.693410178,0.961238037,0.922476074,0.282845282,12.28331057,49.56217834,13.43468973,313.9231997,0,0.582893293,54.34570017,-0.582893293,125.6542998,0.964221006,0,352.2535219,13.43468973,361.0462577,10,16,2% +10/17/2018 1:00,85.18512545,254.1244334,28.37296039,159.1241073,15.01663342,81.41970141,66.64198754,14.77771387,14.56382651,0.21388736,7.33215964,0,7.33215964,0.452806903,6.879352737,1.486760913,4.435308072,11.84097469,-11.84097469,0,0.529258604,0.113201726,3.640956628,0.599161806,1,0.084252584,0,0.952959604,0.991721567,0.724496596,1,14.10502052,0.32805706,0.079784694,0.312029739,0.798782795,0.52327939,0.961238037,0.922476074,0.077922465,3.499826001,14.18294299,3.827883061,26.71265395,0,0.418805099,65.24082863,-0.418805099,114.7591714,0.930612724,0,39.04207864,3.827883061,41.54735154,10,17,6% +10/17/2018 2:00,96.97007125,263.3035339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692447019,4.595513598,-7.960163099,7.960163099,0.108578248,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.216349602,77.50528249,-0.216349602,102.4947175,0.818892572,0,0,0,0,10,18,0% +10/17/2018 3:00,108.8040835,272.4279921,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898989496,4.754765437,-2.71465472,2.71465472,0.994386988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.00361852,90.20732637,0.00361852,89.79267363,0,0,0,0,0,10,19,0% +10/17/2018 4:00,120.5488396,282.3546568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103974161,4.92801842,-1.431312477,1.431312477,0.774922539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.228801431,103.2265173,0.228801431,76.77348272,0,0.831469899,0,0,0,10,20,0% +10/17/2018 5:00,131.7981343,294.3095439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300311392,5.136670561,-0.800381086,0.800381086,0.667026916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443858578,116.350334,0.443858578,63.64966597,0,0.937351507,0,0,0,10,21,0% +10/17/2018 6:00,141.8381594,310.2986308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475542886,5.415732772,-0.389369801,0.389369801,0.596739847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634141578,129.3563459,0.634141578,50.64365408,0,0.971153254,0,0,0,10,22,0% +10/17/2018 7:00,149.2499683,333.1407207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903355,5.814402449,-0.071054214,0.071054214,0.542304676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786692333,141.8774704,0.786692333,38.1225296,0,0.986442752,0,0,0,10,23,0% +10/18/2018 8:00,151.7573575,3.024529851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648665552,0.052788004,0.210094422,-0.210094422,0.494225427,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891125748,153.0150504,0.891125748,26.98494956,0,0.993891196,0,0,0,10,0,0% +10/18/2018 9:00,148.1521116,31.94799868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585742142,0.557597766,0.489152364,-0.489152364,0.446503709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940337021,160.1082318,0.940337021,19.89176816,0,0.996827575,0,0,0,10,1,0% +10/18/2018 10:00,140.0914922,53.3025092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445057793,0.930304285,0.801116128,-0.801116128,0.393154763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930985424,158.5889493,0.930985424,21.41105075,0,0.996293466,0,0,0,10,2,0% +10/18/2018 11:00,129.749723,68.33197835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264559869,1.192618007,1.201871641,-1.201871641,0.324621534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.863721643,149.7370526,0.863721643,30.26294738,0,0.992110979,0,0,0,10,3,0% +10/18/2018 12:00,118.376401,79.789043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066057954,1.392581507,1.824329527,-1.824329527,0.218174966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743143238,137.9998641,0.743143238,42.00013594,0,0.98271822,0,0,0,10,4,0% +10/18/2018 13:00,106.6038762,89.49905546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860588634,1.562053195,3.161265302,-3.161265302,0,#DIV/0!,0,0,0.01034635,1,0.306369429,0,0.923368655,0.962130618,0.724496596,1,0,0,0.001760769,0.312029739,0.995019172,0.719515767,0.961238037,0.922476074,0,0,0,0,0,0,-0.577481221,125.2735794,0.577481221,54.72642055,0,0.963417098,0,0,0,10,5,0% +10/18/2018 14:00,94.80927619,98.59108898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654734031,1.720739116,10.43624346,-10.43624346,0,#DIV/0!,0,0,0.556452321,1,0.095528268,0,0.951724335,0.990486298,0.724496596,1,0,0,0.075293734,0.312029739,0.808769014,0.53326561,0.961238037,0.922476074,0,0,0,0,0,0,-0.378039063,112.2122705,0.378039063,67.78772953,0,0.917738536,0,0,0,10,6,0% +10/18/2018 15:00,83.17064218,107.8860002,55.48919022,263.4453813,24.16217836,23.85190048,0,23.85190048,23.43359953,0.418300955,55.35310727,41.17053185,14.18257543,0.728578826,13.4539966,1.451601547,1.88296592,-6.589994628,6.589994628,0.342890857,0.435439376,0.263120525,8.462860548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.52526721,0.52785288,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190629925,8.13482346,22.71589713,8.662676339,0,41.17053185,-0.156277296,98.99088275,0.156277296,81.00911725,0,0.730055893,22.71589713,38.71946572,48.05701305,10,7,112% +10/18/2018 16:00,72.35826755,118.1347472,244.0729182,617.8870755,56.81353725,98.50203251,41.56170827,56.94032424,55.10039948,1.839924754,60.89144257,0,60.89144257,1.713137768,59.1783048,1.26289001,2.0618403,-2.098547017,2.098547017,0.889026365,0.232772803,1.683269898,54.13974612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.96459983,1.241162481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219523311,52.04118328,54.18412314,53.28234576,41.56170827,0,0.067264246,86.14313047,-0.067264246,93.85686953,0,0,54.18412314,53.28234576,89.05635279,10,8,64% +10/18/2018 17:00,62.58138977,130.1431148,422.4447593,757.3030687,73.71568415,287.9148433,213.2373919,74.67745133,71.49288429,3.184567037,104.6494227,0,104.6494227,2.222799859,102.4266228,1.092251302,2.271425852,-0.959658539,0.959658539,0.694264965,0.174497807,2.380830271,76.57568557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72167974,1.610410931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.724903427,73.60746167,70.44658317,75.2178726,213.2373919,0,0.28157471,73.64578918,-0.28157471,106.3542108,0.872427234,0,256.4806913,75.2178726,305.7092845,10,9,19% +10/18/2018 18:00,54.57454344,144.7308396,560.2084877,821.544151,84.00594377,472.8808702,387.1849274,85.69594283,81.47285462,4.223088214,138.3621229,0,138.3621229,2.533089154,135.8290337,0.952505471,2.52602968,-0.370226376,0.370226376,0.593466129,0.149954786,2.763706448,88.89029956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31480683,1.835214469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.002295914,85.44473704,80.31710274,87.27995151,387.1849274,0,0.471289251,61.88198282,-0.471289251,118.1180172,0.943908041,0,445.784069,87.27995151,502.9070516,10,10,13% +10/18/2018 19:00,49.2867772,162.3023516,644.7509714,850.9377281,89.70696902,622.2953308,530.4329528,91.86237808,87.00197292,4.860405166,159.0323338,0,159.0323338,2.704996099,156.3273377,0.86021654,2.832710418,0.046683394,-0.046683394,0.522170359,0.139134291,2.861091339,92.02253241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.62960565,1.959760466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072850936,88.4555584,85.70245659,90.41531887,530.4329528,0,0.623351081,51.43873673,-0.623351081,128.5612633,0.96978838,0,600.1101706,90.41531887,659.2851885,10,11,10% +10/18/2018 20:00,47.67112045,181.9659413,669.3818983,858.4632992,91.3053886,718.0067426,624.4084649,93.59827775,88.55219425,5.046083498,165.0525854,0,165.0525854,2.753194347,162.2993911,0.83201801,3.175904802,0.410665467,-0.410665467,0.459925759,0.136402536,2.692556118,86.60186035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.11973736,1.994679932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950747742,83.24500223,87.0704851,85.23968216,624.4084649,0,0.727356039,43.334803,-0.727356039,136.665197,0.981257875,0,699.7762083,85.23968216,755.5638754,10,12,8% +10/18/2018 21:00,50.09428166,201.3595946,632.2212732,846.9448363,88.88397557,748.3709144,657.4011676,90.96974677,86.20379576,4.765951009,155.9695471,0,155.9695471,2.68017981,153.2893673,0.874310151,3.514387907,0.790127002,-0.790127002,0.395034014,0.140589979,2.288067165,73.59210519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86236741,1.941781149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657696872,70.73953072,84.52006428,72.68131187,657.4011676,0,0.776203053,39.08576682,-0.776203053,140.9142332,0.985583866,0,732.4440485,72.68131187,780.0125135,10,13,6% +10/18/2018 22:00,56.02205621,218.3354888,536.0984736,811.9731814,82.30800033,706.3015701,622.4341229,83.86744718,79.82611044,4.041336743,132.4651716,0,132.4651716,2.481889894,129.9832817,0.977769335,3.810673153,1.262910049,-1.262910049,0.314183352,0.153531495,1.695251075,54.52510196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73189369,1.79812078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228203633,52.41160197,77.96009732,54.20972275,622.4341229,0,0.766569805,39.95314833,-0.766569805,140.0468517,0.984774368,0,690.9172673,54.20972275,726.3964467,10,14,5% +10/18/2018 23:00,64.46252945,232.3323874,388.7327095,737.2009431,70.92443827,587.1322807,515.4160445,71.71623614,68.78580478,2.930431365,96.3913795,0,96.3913795,2.138633497,94.252746,1.125083383,4.054965119,1.994298788,-1.994298788,0.189108511,0.1824504,0.987719437,31.76845237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.11953195,1.549432689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71559937,30.53704479,66.83513132,32.08647747,515.4160445,0,0.69915272,45.64093393,-0.69915272,134.3590661,0.978484867,0,571.1619309,32.08647747,592.1618887,10,15,4% +10/18/2018 0:00,74.50920115,243.9009463,204.4845993,570.9363121,51.99686055,382.3750657,330.4046111,51.97045464,50.42896335,1.541491284,51.14755572,0,51.14755572,1.567897193,49.57965853,1.300430883,4.256874562,3.587710339,-3.587710339,0,0.254282527,0.391974298,12.60724084,0.076963616,1,0.271829997,0,0.928672308,0.967434271,0.724496596,1,48.63626463,1.135936179,0.012701544,0.312029739,0.964612388,0.689108984,0.961238037,0.922476074,0.278424331,12.11855943,48.91468896,13.25449561,304.9754774,0,0.578706598,54.64037701,-0.578706598,125.359623,0.963600432,0,342.7891908,13.25449561,351.4639931,10,16,3% +10/18/2018 1:00,85.44566464,253.8745744,25.3608711,145.7065152,13.7911228,74.00212317,60.43567265,13.56645053,13.37526957,0.191180959,6.564890053,0,6.564890053,0.415853236,6.149036816,1.49130818,4.430947211,12.52529093,-12.52529093,0,0.543795312,0.103963309,3.343817392,0.617121882,1,0.079669476,0,0.953453197,0.99221516,0.724496596,1,12.95119734,0.301284254,0.081630562,0.312029739,0.794725002,0.519221598,0.961238037,0.922476074,0.071655752,3.214204465,13.0228531,3.51548872,23.13949659,0,0.414776735,65.4947428,-0.414776735,114.5052572,0.92945322,0,34.5299327,3.51548872,36.83074976,10,17,7% +10/18/2018 2:00,97.22752115,263.0417323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696940368,4.590944299,-7.681957641,7.681957641,0.156154184,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.21232809,77.74118077,-0.21232809,102.2588192,0.814515378,0,0,0,0,10,18,0% +10/18/2018 3:00,109.0591897,272.1510768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903441939,4.749932354,-2.680859473,2.680859473,0.98860766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.007440218,90.426297,0.007440218,89.573703,0,0,0,0,0,10,19,0% +10/18/2018 4:00,120.8111749,282.0587017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108552776,4.922853028,-1.421072164,1.421072164,0.773171342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232367989,103.4365253,0.232367989,76.56347466,0,0.834824062,0,0,0,10,20,0% +10/18/2018 5:00,132.079753,293.9965321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305226565,5.131207475,-0.796721464,0.796721464,0.666401084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447132221,116.5598386,0.447132221,63.44016143,0,0.938176254,0,0,0,10,21,0% +10/18/2018 6:00,142.1532681,309.9985221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48104257,5.410494886,-0.388510712,0.388510712,0.596592934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637104689,129.5762607,0.637104689,50.4237393,0,0.971519962,0,0,0,10,22,0% +10/18/2018 7:00,149.6044145,332.9679464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611089609,5.811386968,-0.071813405,0.071813405,0.542434505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789348665,142.1246848,0.789348665,37.87531515,0,0.986656636,0,0,0,10,23,0% +10/19/2018 8:00,152.1170634,3.156999976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654943605,0.055100044,0.208066289,-0.208066289,0.494572259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893500161,153.3164254,0.893500161,26.6835746,0,0.994040301,0,0,0,10,0,0% +10/19/2018 9:00,148.4596721,32.3219377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591110085,0.564124234,0.485772448,-0.485772448,0.447081708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942473767,160.4712316,0.942473767,19.52876835,0,0.996948126,0,0,0,10,1,0% +10/19/2018 10:00,140.3382582,53.72245736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449364672,0.937633763,0.795854819,-0.795854819,0.3940545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93294509,158.8986561,0.93294509,21.10134394,0,0.996406278,0,0,0,10,2,0% +10/19/2018 11:00,129.9560956,68.72370872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268161751,1.199454991,1.193313768,-1.193313768,0.326085017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86557697,149.9486531,0.86557697,30.05134689,0,0.992235062,0,0,0,10,3,0% +10/19/2018 12:00,118.5619531,80.146093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06929645,1.398813206,1.808303293,-1.808303293,0.220915614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744974099,138.1568743,0.744974099,41.84312573,0,0.982883573,0,0,0,10,4,0% +10/19/2018 13:00,106.7830575,89.83044775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863715939,1.567837082,3.119083827,-3.119083827,0,#DIV/0!,0,0,0.003230589,1,0.310253433,0,0.922756885,0.961518848,0.724496596,1,0,0,0.000551626,0.312029739,0.998436973,0.722933569,0.961238037,0.922476074,0,0,0,0,0,0,-0.57936911,125.4061814,0.57936911,54.59381859,0,0.963699231,0,0,0,10,5,0% +10/19/2018 14:00,94.99333454,98.90673784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657946455,1.726248228,10.01938032,-10.01938032,0,#DIV/0!,0,0,0.541969612,1,0.099477136,0,0.951284727,0.99004669,0.724496596,1,0,0,0.073737522,0.312029739,0.812267017,0.536763613,0.961238037,0.922476074,0,0,0,0,0,0,-0.380061468,112.3374902,0.380061468,67.66250983,0,0.918442333,0,0,0,10,6,0% +10/19/2018 15:00,83.36631816,108.1932412,52.64891708,254.0077369,23.3056655,22.99980347,0,22.99980347,22.6029137,0.396889776,53.71558717,40.24749587,13.4680913,0.702751804,12.76533949,1.455016737,1.888328288,-6.75779663,6.75779663,0.314195024,0.442661821,0.245188464,7.886103823,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.72678039,0.509141289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177638207,7.580422957,21.9044186,8.089564247,0,40.24749587,-0.158449882,99.11693326,0.158449882,80.88306674,0,0.734442806,21.9044186,37.64904807,46.54496758,10,7,112% +10/19/2018 16:00,72.58108526,118.436188,240.0132349,613.6942419,56.30030783,96.1755644,39.76359743,56.41196697,54.60264583,1.809321147,59.8916496,0,59.8916496,1.697662007,58.19398759,1.266778912,2.067101434,-2.114636917,2.114636917,0.8917779,0.23457168,1.65944375,53.37341531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.48614008,1.229950345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.202261348,51.30455695,53.68840143,52.5345073,39.76359743,0,0.064793825,86.28498476,-0.064793825,93.71501524,0,0,53.68840143,52.5345073,88.07118576,10,8,64% +10/19/2018 17:00,62.83881819,130.4323076,417.9143696,754.9341942,73.29050494,284.7110178,210.4800769,74.23094085,71.0805258,3.150415046,103.5381565,0,103.5381565,2.209979137,101.3281774,1.096744275,2.276473219,-0.96175496,0.96175496,0.694623474,0.175372062,2.357071182,75.8115116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32530508,1.601122362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.707690048,72.87290859,70.03299513,74.47403095,210.4800769,0,0.27880586,73.81105239,-0.27880586,106.1889476,0.87066374,0,253.2903662,74.47403095,302.03213,10,9,19% +10/19/2018 18:00,54.87353862,144.9844891,555.3214669,819.8376247,83.60079926,469.1222437,383.8560692,85.2661745,81.07992671,4.186247786,137.1649915,0,137.1649915,2.520872552,134.6441189,0.957723921,2.5304567,-0.368272646,0.368272646,0.593132021,0.150544872,2.739413191,88.10894488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.93710958,1.826363583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984695531,84.69366921,79.92180511,86.52003279,383.8560692,0,0.468209872,62.08184194,-0.468209872,117.9181581,0.943210282,0,441.9787965,86.52003279,498.6044276,10,10,13% +10/19/2018 19:00,49.62568413,162.4756836,639.5723404,849.4746514,89.30095971,618.076386,526.6468133,91.42957275,86.60820629,4.821366459,157.7644721,0,157.7644721,2.692753421,155.0717187,0.866131582,2.835735634,0.050800528,-0.050800528,0.521466288,0.13962605,2.836323391,91.22591006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.25110219,1.950890687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054906642,87.68981469,85.30600883,89.64070538,526.6468133,0,0.619967662,51.686227,-0.619967662,128.313773,0.969350632,0,595.8114302,89.64070538,654.4794791,10,11,10% +10/19/2018 20:00,48.03288109,182.01365,663.9813885,857.018572,90.88962606,713.3748503,620.2205097,93.15434066,88.14896849,5.005372173,163.7306325,0,163.7306325,2.740657573,160.9899749,0.838331924,3.176737476,0.416768822,-0.416768822,0.458882023,0.136885804,2.667630081,85.80015333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73214142,1.985597082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932688913,82.47437094,86.66483034,84.45996803,620.2205097,0,0.72369553,43.63956079,-0.72369553,136.3604392,0.980910172,0,695.0454369,84.45996803,750.3227968,10,12,8% +10/19/2018 21:00,50.45234019,201.2792634,626.682127,845.3176255,88.45161249,743.3572144,652.8485498,90.50866461,85.78447002,4.724194585,154.6134796,0,154.6134796,2.667142468,151.9463372,0.880559452,3.512985863,0.798961162,-0.798961162,0.393523284,0.141142708,2.263470519,72.80099251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.45929556,1.932335639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639876686,69.97908312,84.09917224,71.91141876,652.8485498,0,0.772311531,39.43808145,-0.772311531,140.5619186,0.985259286,0,727.3242683,71.91141876,774.3888536,10,13,6% +10/19/2018 22:00,56.35727669,218.1672999,530.5209447,809.8625503,81.8469901,700.9062962,617.5280039,83.37829234,79.37900136,3.999290974,131.0989339,0,131.0989339,2.467988735,128.6309452,0.983620036,3.807737704,1.276672136,-1.276672136,0.311829896,0.154276642,1.671697505,53.76753819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30211544,1.788049437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211139152,51.68340285,77.51325459,53.47145229,617.5280039,0,0.762509643,40.31405522,-0.762509643,139.6859448,0.984427059,0,685.4245312,53.47145229,720.4205273,10,14,5% +10/19/2018 23:00,64.76952948,232.1181202,383.2495554,733.937041,70.40123796,581.2530927,510.0856147,71.16747791,68.27838088,2.889097034,95.04614889,0,95.04614889,2.122857077,92.92329181,1.130441544,4.051225451,2.019658863,-2.019658863,0.184771683,0.18369555,0.966476621,31.08521038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.6317768,1.538002726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700209022,29.8802866,66.33198582,31.41828933,510.0856147,0,0.694999143,45.97285106,-0.694999143,134.0271489,0.978057465,0,565.2250293,31.41828933,585.7876713,10,15,4% +10/19/2018 0:00,74.79083992,243.664518,199.3708259,564.460925,51.28819614,375.5541248,324.3095155,51.24460929,49.74166779,1.5029415,49.88629331,0,49.88629331,1.546528347,48.33976497,1.305346407,4.25274811,3.655823157,-3.655823157,0,0.257250257,0.386632087,12.43541695,0.086782085,1,0.267004826,0,0.929393461,0.968155424,0.724496596,1,47.99034227,1.120454523,0.014258236,0.312029739,0.960362049,0.684858645,0.961238037,0.922476074,0.274032221,11.95339578,48.26437449,13.0738503,296.1652595,0,0.574547327,54.93206263,-0.574547327,125.0679374,0.962974967,0,333.4641055,13.0738503,342.020679,10,16,3% +10/19/2018 1:00,85.70223374,253.6251012,22.52382014,132.5869427,12.5877745,66.84424088,54.46624016,12.37800072,12.20820665,0.16979407,5.84072881,0,5.84072881,0.379567845,5.461160965,1.495786155,4.426593081,13.27988783,-13.27988783,0,0.558864989,0.094891961,3.052051663,0.635148466,1,0.075159993,0,0.953934055,0.992696018,0.724496596,1,11.81847695,0.274995612,0.08345859,0.312029739,0.790733278,0.515229874,0.961238037,0.922476074,0.065495897,2.933748149,11.88397284,3.20874376,19.87209129,0,0.410796411,65.7451261,-0.410796411,114.2548739,0.928285207,0,30.33094123,3.20874376,32.43099984,10,17,7% +10/19/2018 2:00,97.4812818,262.7799928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701369327,4.586376083,-7.426328846,7.426328846,0.199869282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.208357697,77.97387356,-0.208357697,102.0261264,0.810028064,0,0,0,0,10,18,0% +10/19/2018 3:00,109.3103405,271.8737271,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907825349,4.745091688,-2.648440166,2.648440166,0.983063632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011201196,90.64179468,0.011201196,89.35820532,0,0,0,0,0,10,19,0% +10/19/2018 4:00,121.0692788,281.7614792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.113057538,4.917665517,-1.411180411,1.411180411,0.771479753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235866778,103.6427219,0.235866778,76.35727812,0,0.838015928,0,0,0,10,20,0% +10/19/2018 5:00,132.3569406,293.680766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310064401,5.125696317,-0.793200331,0.793200331,0.665798935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450334082,116.7651203,0.450334082,63.23487971,0,0.938971317,0,0,0,10,21,0% +10/19/2018 6:00,142.4640679,309.6932449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486467051,5.405166794,-0.387718815,0.387718815,0.596457512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639995311,129.7914699,0.639995311,50.20853012,0,0.971874428,0,0,0,10,22,0% +10/19/2018 7:00,149.9553903,332.7884257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617215291,5.80825374,-0.072607263,0.072607263,0.542570263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791935157,142.3667244,0.791935157,37.63327556,0,0.986863518,0,0,0,10,23,0% +10/20/2018 8:00,152.4743093,3.286746217,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661178721,0.057364543,0.206022704,-0.206022704,0.494921732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895810555,153.6127335,0.895810555,26.38726647,0,0.994184627,0,0,0,10,0,0% +10/20/2018 9:00,148.7650472,32.69585238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596439886,0.570650276,0.482392762,-0.482392762,0.447659669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944555083,160.8311601,0.944555083,19.16883994,0,0.997065025,0,0,0,10,1,0% +10/20/2018 10:00,140.5833334,54.14111575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453642041,0.944940731,0.790613221,-0.790613221,0.394950866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934860093,159.2055538,0.934860093,20.79444623,0,0.996516061,0,0,0,10,2,0% +10/20/2018 11:00,130.1614807,69.11310799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271746397,1.206251291,1.184813217,-1.184813217,0.327538696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867399834,150.157875,0.867399834,29.84212501,0,0.992356457,0,0,0,10,3,0% +10/20/2018 12:00,118.7471406,80.50033676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072528581,1.404995925,1.792447204,-1.792447204,0.223627165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746785289,138.3126718,0.746785289,41.68732821,0,0.983046351,0,0,0,10,4,0% +10/20/2018 13:00,106.9623457,90.15874554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866845108,1.573566959,3.077717499,-3.077717499,0.003833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58124983,125.5384971,0.58124983,54.46150289,0,0.963978469,0,0,0,10,5,0% +10/20/2018 14:00,95.17781813,99.21897603,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661166301,1.731697812,9.631332721,-9.631332721,0,#DIV/0!,0,0,0.527611399,1,0.103457091,0,0.950837993,0.989599956,0.724496596,1,0,0,0.072177575,0.312029739,0.815792808,0.540289404,0.961238037,0.922476074,0,0,0,0,0,0,-0.382088052,112.4630815,0.382088052,67.5369185,0,0.919140111,0,0,0,10,6,0% +10/20/2018 15:00,83.56241446,108.4966147,49.84444641,244.4330157,22.43841836,22.13756575,0,22.13756575,21.76181726,0.375748491,52.02607016,39.26410595,12.76196421,0.676601102,12.08536311,1.458439263,1.893623153,-6.936357528,6.936357528,0.283659312,0.450168875,0.227753783,7.325344574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.9182865,0.490195196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.165006841,7.041399838,21.08329334,7.531595033,0,39.26410595,-0.160633398,99.24366282,0.160633398,80.75633718,0,0.738732228,21.08329334,36.5372555,44.99619632,10,7,113% +10/20/2018 16:00,72.8044276,118.7330963,235.9446708,609.412868,55.78136752,93.84643278,37.96842871,55.87800407,54.09935348,1.778650592,58.88953116,0,58.88953116,1.682014042,57.20751711,1.270676972,2.072283461,-2.131301667,2.131301667,0.89462774,0.236417154,1.635539565,52.60457455,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.00235633,1.218613448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184942848,50.56551797,53.18729918,51.78413142,37.96842871,0,0.062303293,86.42797077,-0.062303293,93.57202923,0,0,53.18729918,51.78413142,87.07897751,10,8,64% +10/20/2018 17:00,63.09646014,130.7161152,413.3716309,752.5233713,72.86247685,281.4877742,207.7061999,73.7815743,70.66540434,3.116169962,102.4238103,0,102.4238103,2.197072511,100.2267378,1.101240976,2.281426596,-0.96399438,0.96399438,0.695006438,0.176263854,2.333281427,75.0463513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.92627454,1.591771555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.690454451,72.1374074,69.61672899,73.72917896,207.7061999,0,0.276012956,73.97761121,-0.276012956,106.0223888,0.868849083,0,250.0820703,73.72917896,298.3363433,10,9,19% +10/20/2018 18:00,55.17204556,145.2320225,550.4255574,818.1055221,83.19392897,465.3404213,380.5057559,84.83466541,80.68532505,4.149340352,135.9656529,0,135.9656529,2.508603911,133.457049,0.96293385,2.534776971,-0.366379189,0.366379189,0.592808221,0.151144742,2.715133795,87.32803606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55780346,1.817474994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967105192,83.94302994,79.52490865,85.76050494,380.5057559,0,0.465105962,62.28292005,-0.465105962,117.7170799,0.942497615,0,438.1506763,85.76050494,494.2792115,10,10,13% +10/20/2018 19:00,49.96304948,162.6431384,634.3922294,847.9930645,88.89397514,613.8366373,522.8408269,90.9958104,86.21349381,4.782316594,156.4962221,0,156.4962221,2.680481334,153.8157408,0.872019718,2.838658271,0.054885922,-0.054885922,0.520767644,0.140124628,2.811619093,90.4313349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.87168954,1.941999602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037008461,86.92603882,84.908698,88.86803843,522.8408269,0,0.616562622,51.9344489,-0.616562622,128.0655511,0.968905236,0,591.491913,88.86803843,649.6542668,10,11,10% +10/20/2018 20:00,48.39207649,182.057372,658.5897522,855.558508,90.47356093,708.7289706,616.0187936,92.710177,87.74544926,4.964727741,162.410822,0,162.410822,2.728111674,159.6827103,0.844601067,3.17750057,0.422857253,-0.422857253,0.45784084,0.137374687,2.642822805,85.00226604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.34426339,1.976507621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914716125,81.70741133,86.25897951,83.68391896,616.0187936,0,0.720019482,43.94391108,-0.720019482,136.0560889,0.980557435,0,690.3007874,83.68391896,745.0702387,10,12,8% +10/20/2018 21:00,50.80727684,201.1974212,621.1643377,843.6757415,88.01958745,738.3397358,648.2916646,90.04807129,85.36547213,4.682599158,153.2626006,0,153.2626006,2.654115319,150.6084853,0.886754265,3.511557446,0.807800993,-0.807800993,0.392011584,0.141700967,2.239050955,72.0155754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.05653885,1.922897514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.622184795,69.22411032,83.67872364,71.14700783,648.2916646,0,0.768413305,39.78838197,-0.768413305,140.211618,0.984930851,0,722.2011844,71.14700783,768.765478,10,13,6% +10/20/2018 22:00,56.68921895,217.9991415,524.9786174,807.7346387,81.38684573,695.5196181,612.6293755,82.89024261,78.93273204,3.95751057,129.7412575,0,129.7412575,2.454113684,127.2871438,0.989413521,3.804802785,1.290488517,-1.290488517,0.309467156,0.155028877,1.648381066,53.01760135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.87314439,1.77799701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194246471,50.96253504,77.06739086,52.74053205,612.6293755,0,0.758453762,40.67192606,-0.758453762,139.3280739,0.984076403,0,679.9415032,52.74053205,714.4591266,10,14,5% +10/20/2018 23:00,65.07319592,231.9044171,377.8164823,730.6445672,69.87894984,575.3947385,504.7747566,70.61998191,67.77184168,2.848140234,93.7130885,0,93.7130885,2.107108164,91.60598034,1.135741524,4.047495629,2.045256492,-2.045256492,0.18039423,0.184954742,0.945537567,30.41173843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.14487205,1.526592692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685038749,29.23291974,65.8299108,30.75951244,504.7747566,0,0.69086226,46.301597,-0.69086226,133.698403,0.977626673,0,559.3111769,30.75951244,579.4426626,10,15,4% +10/20/2018 0:00,75.06903031,243.4286817,194.3269446,557.9117969,50.57812248,368.7608304,318.2429064,50.51792406,49.05300547,1.464918592,48.64193456,0,48.64193456,1.525117006,47.11681755,1.310201745,4.248631989,3.725480037,-3.725480037,0,0.260273338,0.381279252,12.26325137,0.096609419,1,0.26224027,0,0.930100749,0.968862712,0.724496596,1,47.34193565,1.104942079,0.015802508,0.312029739,0.956164372,0.680660967,0.961238037,0.922476074,0.269670118,11.78790367,47.61160577,12.89284575,287.4976442,0,0.570417955,55.22062382,-0.570417955,124.7793762,0.962344975,0,324.2835191,12.89284575,332.7216288,10,16,3% +10/20/2018 1:00,85.95466611,253.3760399,19.86598638,119.8334937,11.41224268,59.97420411,48.75632446,11.21787965,11.06812146,0.149758197,5.160859623,0,5.160859623,0.344121223,4.816738399,1.500191931,4.422246142,14.11534229,-14.11534229,0,0.574461417,0.086030306,2.767030364,0.653224733,1,0.070726731,0,0.954402128,0.993164091,0.724496596,1,10.71221293,0.249314655,0.085267315,0.312029739,0.786810019,0.511306615,0.961238037,0.922476074,0.059470363,2.659774835,10.77168329,2.90908949,16.90748741,0,0.406867253,65.99180812,-0.406867253,114.0081919,0.927109795,0,26.44678049,2.90908949,28.35072138,10,17,7% +10/20/2018 2:00,97.73122976,262.518358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705731741,4.581809694,-7.190806831,7.190806831,0.240145919,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.204440736,78.20323779,-0.204440736,101.7967622,0.805430346,0,0,0,0,10,18,0% +10/20/2018 3:00,109.5574128,271.5959996,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912137573,4.740244429,-2.617342432,2.617342432,0.977745607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014899372,90.85370274,0.014899372,89.14629726,0,0,0,0,0,10,19,0% +10/20/2018 4:00,121.3230237,281.4630559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117486222,4.912457048,-1.401631418,1.401631418,0.769846779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239296023,103.8449948,0.239296023,76.15500517,0,0.841053778,0,0,0,10,20,0% +10/20/2018 5:00,132.629559,293.362304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314822489,5.120138107,-0.789817254,0.789817254,0.665220395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453462747,116.9660682,0.453462747,63.0339318,0,0.939737359,0,0,0,10,21,0% +10/20/2018 6:00,142.7704059,309.3827805,0,0,0,0,0,0,0,0,0,0,0,0,0,2.491813658,5.399748168,-0.386994584,0.386994584,0.596333661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642812429,130.0018564,0.642812429,49.99814365,0,0.972216812,0,0,0,10,22,0% +10/20/2018 7:00,150.3027495,332.6019399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623277854,5.804998949,-0.073436371,0.073436371,0.542712049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794451195,142.6034504,0.794451195,37.39654965,0,0.987063472,0,0,0,10,23,0% +10/21/2018 8:00,152.8290021,3.413491146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66736928,0.059576659,0.203963147,-0.203963147,0.495273937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898056696,153.9037927,0.898056696,26.09620729,0,0.994324228,0,0,0,10,0,0% +10/21/2018 9:00,149.0681945,33.06949609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601730804,0.577171589,0.479012892,-0.479012892,0.448237661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946581069,161.1878801,0.946581069,18.81211995,0,0.997178322,0,0,0,10,1,0% +10/21/2018 10:00,140.826712,54.55825662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4578898,0.952221212,0.785391007,-0.785391007,0.395843917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936730793,159.5095901,0.936730793,20.49040992,0,0.996622871,0,0,0,10,2,0% +10/21/2018 11:00,130.365887,69.49999167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275313961,1.213003685,1.176369601,-1.176369601,0.32898264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869190768,150.3647372,0.869190768,29.63526276,0,0.992475229,0,0,0,10,3,0% +10/21/2018 12:00,118.931972,80.85162226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075754498,1.411127014,1.776759665,-1.776759665,0.226309892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748577415,138.467299,0.748577415,41.53270104,0,0.983206641,0,0,0,10,4,0% +10/21/2018 13:00,107.1417409,90.48381583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869976145,1.579240506,3.037147312,-3.037147312,0.01077091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583123953,125.6705661,0.583123953,54.32943386,0,0.964254937,0,0,0,10,5,0% +10/21/2018 14:00,95.36271358,99.52768126,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664393336,1.737085735,9.269263578,-9.269263578,0,#DIV/0!,0,0,0.513378145,1,0.107467788,0,0.950384094,0.989146057,0.724496596,1,0,0,0.070614115,0.312029739,0.819346012,0.543842608,0.961238037,0.922476074,0,0,0,0,0,0,-0.384119249,112.589073,0.384119249,67.41092695,0,0.91983209,0,0,0,10,6,0% +10/21/2018 15:00,83.75888804,108.7960056,47.07900377,234.7293921,21.56094485,21.26570422,0,21.26570422,20.91080281,0.354901417,50.28547612,38.22048456,12.06499156,0.650142039,11.41484953,1.461868374,1.898848511,-7.126698475,7.126698475,0.251109094,0.457973685,0.210840338,6.781350035,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.10025904,0.471025694,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.152753107,6.518491595,20.25301215,6.989517288,0,38.22048456,-0.16282786,99.37107361,0.16282786,80.62892639,0,0.742927242,20.25301215,35.38455647,43.41149667,10,7,114% +10/21/2018 16:00,73.02824034,119.0253673,231.8685159,605.0415816,55.25668515,91.5155245,36.17710946,55.33841503,53.59049222,1.747922814,57.88539909,0,57.88539909,1.666192933,56.21920616,1.274583241,2.077384552,-2.148566285,2.148566285,0.897580164,0.238310428,1.611563648,51.83342664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.51321953,1.207151108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.167572377,49.82426127,52.68079191,51.03141238,36.17710946,0,0.059792766,86.57208225,-0.059792766,93.42791775,0,0,52.68079191,51.03141238,86.07983068,10,8,63% +10/21/2018 17:00,63.35423696,130.9944537,408.8180913,750.0704285,72.43166602,278.246022,204.9165944,73.3294275,70.24758405,3.081843457,101.3067613,0,101.3067613,2.184081975,99.12267936,1.10574003,2.286284519,-0.966382834,0.966382834,0.695414887,0.177173338,2.309469534,74.28047898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.52464978,1.582359956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673202816,71.40122179,69.1978526,72.98358174,204.9165944,0,0.273196472,74.14543557,-0.273196472,105.8545644,0.866981531,0,246.8567553,72.98358174,294.6230499,10,9,19% +10/21/2018 18:00,55.4699635,145.4733943,545.5226973,816.3480537,82.78543971,461.5366945,377.1351607,84.40153378,80.28915326,4.112380522,134.7645803,0,134.7645803,2.496286453,132.2682938,0.968133499,2.538989704,-0.364549691,0.364549691,0.592495358,0.151754345,2.69087845,86.54790079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.17698806,1.808551038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.949532277,83.19313425,79.12652033,85.00168529,377.1351607,0,0.461978391,62.48515665,-0.461978391,117.5148433,0.94176983,0,434.3010364,85.00168529,489.9329394,10,10,13% +10/21/2018 19:00,50.2987613,162.8047096,629.2129497,846.4933651,88.4861499,609.5778384,519.0165994,90.561239,85.81796601,4.743272995,155.2281483,0,155.2281483,2.668183899,152.5599644,0.877878994,2.84147822,0.058936129,-0.058936129,0.520075018,0.140629893,2.786989816,89.63917268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.49149317,1.933090152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019164634,86.16458237,84.5106578,88.09767253,519.0165994,0,0.613137233,52.18330735,-0.613137233,127.8166927,0.968452188,0,587.1534189,88.09767253,644.8115836,10,11,10% +10/21/2018 20:00,48.7485929,182.0970985,653.2096137,854.0836684,90.05735155,704.0713262,611.8053661,92.26596011,87.34179012,4.924169985,161.0937949,0,161.0937949,2.715561425,158.3782334,0.850823452,3.178193927,0.428926799,-0.428926799,0.456802887,0.137868993,2.618146347,84.20858632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95625087,1.967415009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896838116,80.9444962,85.85308899,82.91191121,611.8053661,0,0.716329546,44.24773354,-0.716329546,135.7522665,0.980199724,0,685.5445399,82.91191121,739.8087276,10,12,8% +10/21/2018 21:00,51.1589732,201.1140321,615.6707543,842.0199671,87.58808211,733.3211473,643.7329829,89.58816447,84.94697826,4.641186206,151.9176062,0,151.9176062,2.641103841,149.2765024,0.892892524,3.510102031,0.816641282,-0.816641282,0.390499805,0.142264484,2.214820637,71.23624507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.65426662,1.913470742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604630012,68.47498837,83.25889663,70.38845911,643.7329829,0,0.764510354,40.13654944,-0.764510354,139.8634506,0.984598662,0,717.0775303,70.38845911,763.145369,10,13,6% +10/21/2018 22:00,57.0177575,217.830977,519.4744555,805.5906127,80.92777702,690.1446274,607.7411036,82.40352382,78.48750595,3.916017873,128.3928671,0,128.3928671,2.440271069,125.952596,0.995147601,3.801867761,1.304351496,-1.304351496,0.307096447,0.155787789,1.625313298,52.27566263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44517614,1.767968082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.177533951,50.24935532,76.62271009,52.01732341,607.7411036,0,0.754404401,41.02664518,-0.754404401,138.9733548,0.98372255,0,674.4713382,52.01732341,708.515636,10,14,5% +10/21/2018 23:00,65.37340026,231.6912622,372.4364411,727.3254804,69.35783099,569.5607745,499.4867548,70.0740197,67.26643649,2.80758321,92.39292156,0,92.39292156,2.091394508,90.30152705,1.140981078,4.043775374,2.071079625,-2.071079625,0.175978215,0.186227295,0.92491214,29.74835378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.65905735,1.515208201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.670095697,28.59524919,65.32915305,30.11045739,499.4867548,0,0.686744474,46.62704492,-0.686744474,133.3729551,0.977192716,0,553.4239715,30.11045739,573.1306637,10,15,4% +10/21/2018 0:00,75.34364474,243.1934442,189.3558168,551.2932138,49.86702342,361.9996944,312.2089016,49.7907928,48.36334867,1.427444131,47.41518482,0,47.41518482,1.503674746,45.91151007,1.314994671,4.24452632,3.796688157,-3.796688157,0,0.263350893,0.375918686,12.09083717,0.106439357,1,0.257538388,0,0.930794035,0.969555998,0.724496596,1,46.69143737,1.089407235,0.017333527,0.312029739,0.95202116,0.676517756,0.961238037,0.922476074,0.265339258,11.62217258,46.95677663,12.71157982,278.9775868,0,0.566320959,55.50592857,-0.566320959,124.4940714,0.961710843,0,315.2525469,12.71157982,323.5720216,10,16,3% +10/21/2018 1:00,86.20279309,253.127417,17.39074946,107.5157842,10.27048881,53.41994198,43.32804749,10.0918945,9.96079568,0.131098815,4.526281682,0,4.526281682,0.309693132,4.216588551,1.504522564,4.417906854,15.04439033,-15.04439033,0,0.590571949,0.077423283,2.49019892,0.671332494,1,0.066372323,0,0.954857372,0.993619336,0.724496596,1,9.638037713,0.22437162,0.087055223,0.312029739,0.782957645,0.507454241,0.961238037,0.922476074,0.053608549,2.393673921,9.691646262,2.618045541,14.2405213,0,0.402992433,66.23461629,-0.402992433,113.7653837,0.925928191,0,22.8773464,2.618045541,24.59080484,10,17,7% +10/21/2018 2:00,97.97724277,262.2568708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710025478,4.577245882,-6.973275148,6.973275148,0.277346028,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.200579499,78.42915138,-0.200579499,101.5708486,0.800722282,0,0,0,0,10,18,0% +10/21/2018 3:00,109.8002844,271.3179523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916376483,4.735391588,-2.587515375,2.587515375,0.972644879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018532689,91.06190565,0.018532689,88.93809435,0,0,0,0,0,10,19,0% +10/21/2018 4:00,121.5722839,281.1635012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121836633,4.907228833,-1.392419674,1.392419674,0.768271478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242653981,104.0432336,0.242653981,75.95676642,0,0.843945272,0,0,0,10,20,0% +10/21/2018 5:00,132.8974718,293.0412096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.31949845,5.114533952,-0.786571847,0.786571847,0.664665398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456516845,117.1625732,0.456516845,62.83742677,0,0.940475016,0,0,0,10,21,0% +10/21/2018 6:00,143.07213,309.0671168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.497079737,5.394238797,-0.3863385,0.3863385,0.596221464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645555071,130.2073056,0.645555071,49.79269444,0,0.972547274,0,0,0,10,22,0% +10/21/2018 7:00,150.6463458,332.4082684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62927474,5.801618745,-0.074301314,0.074301314,0.542859963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796896215,142.8347266,0.796896215,37.16527342,0,0.987256572,0,0,0,10,23,0% +10/22/2018 8:00,153.1810504,3.536944128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673513681,0.06173132,0.201887106,-0.201887106,0.495628961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9002384,154.1894216,0.9002384,25.81057843,0,0.994459157,0,0,0,10,0,0% +10/22/2018 9:00,149.3690747,33.44261252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606982154,0.583683699,0.475632427,-0.475632427,0.448815754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948551871,161.5412534,0.948551871,18.45874657,0,0.99728807,0,0,0,10,1,0% +10/22/2018 10:00,141.0683916,54.97364832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462107904,0.959471165,0.780187857,-0.780187857,0.396733708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938557596,159.8107174,0.938557596,20.18928261,0,0.996726764,0,0,0,10,2,0% +10/22/2018 11:00,130.569326,69.88417426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278864641,1.219708936,1.167982538,-1.167982538,0.330416912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870950344,150.5692641,0.870950344,29.43073588,0,0.992591446,0,0,0,10,3,0% +10/22/2018 12:00,119.1164575,81.19979753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078974377,1.417203819,1.761239116,-1.761239116,0.228964062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750351112,138.6208014,0.750351112,41.37919856,0,0.983364529,0,0,0,10,4,0% +10/22/2018 13:00,107.3212443,90.80552613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87310907,1.58485541,2.997354925,-2.997354925,0.017575809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584992074,125.8024301,0.584992074,54.19756992,0,0.964528757,0,0,0,10,5,0% +10/22/2018 14:00,95.54800816,99.83273205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667627336,1.742409876,8.930697609,-8.930697609,0,#DIV/0!,0,0,0.499270324,1,0.11150885,0,0.949922994,0.988684958,0.724496596,1,0,0,0.069047372,0.312029739,0.822926225,0.54742282,0.961238037,0.922476074,0,0,0,0,0,0,-0.38615551,112.7154945,0.38615551,67.2845055,0,0.920518486,0,0,0,10,6,0% +10/22/2018 15:00,83.95569511,109.0913004,44.35594651,224.9065195,20.67386079,20.38484147,0,20.38484147,20.05046761,0.334373861,48.49506466,37.11705871,11.37800595,0.623393181,10.75461277,1.465303305,1.904002377,-7.329971583,7.329971583,0.216347345,0.466089948,0.194471827,6.254882461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.27327213,0.451646238,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.140894177,6.012430938,19.4141663,6.464077176,0,37.11705871,-0.165033272,99.49916729,0.165033272,80.50083271,0,0.747030789,19.4141663,34.19166285,41.7919258,10,7,115% +10/22/2018 16:00,73.25246949,119.3128978,227.7860681,600.5790014,54.72622852,89.18374713,34.39056872,54.79317841,53.07603081,1.717147599,56.87956715,0,56.87956715,1.650197708,55.22936944,1.278496778,2.082402907,-2.166457026,2.166457026,0.900639661,0.240252747,1.587522282,51.06017367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01869966,1.195562622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.150154489,49.0809811,52.16885415,50.27654372,34.39056872,0,0.057262356,86.71731302,-0.057262356,93.28268698,0,0,52.16885415,50.27654372,85.07384648,10,8,63% +10/22/2018 17:00,63.61207045,131.2672413,404.2553035,747.5752105,71.99813971,274.9866834,202.1121061,72.87457739,69.82713015,3.047447236,100.1873882,0,100.1873882,2.171009557,98.01637864,1.110240073,2.291045561,-0.968926558,0.968926558,0.69584989,0.178100668,2.285644022,73.51416859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.12049351,1.572889034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655941313,70.6646151,68.77643482,72.23750413,202.1121061,0,0.270356886,74.31449525,-0.270356886,105.6855048,0.86505927,0,243.6153857,72.23750413,290.8933874,10,9,19% +10/22/2018 18:00,55.76719269,145.7085609,540.6148304,814.5654533,82.3754399,457.7123698,373.7454704,83.96689941,79.89151646,4.075382948,133.5622481,0,133.5622481,2.483923446,131.0783246,0.973321127,2.543094136,-0.362787946,0.362787946,0.592194082,0.152373622,2.666657335,85.76886647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79476444,1.799594081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931984162,82.44429683,78.7267486,84.24389091,373.7454704,0,0.45882804,62.68849111,-0.45882804,117.3115089,0.941026712,0,430.4312198,84.24389091,485.5671615,10,10,13% +10/22/2018 19:00,50.63270906,162.9603909,624.0368175,844.9759781,88.07762032,605.3017612,515.1757529,90.12600822,85.42175509,4.704253125,153.9608165,0,153.9608165,2.655865224,151.3049512,0.883707482,2.844195372,0.062947593,-0.062947593,0.519389017,0.141141705,2.762446906,88.84978835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.11064017,1.924165314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.00138338,85.40579613,84.11202355,87.32996144,515.1757529,0,0.60969278,52.43270774,-0.60969278,127.5672923,0.967991484,0,582.7977652,87.32996144,639.9534784,10,11,10% +10/22/2018 20:00,49.10231801,182.1328199,647.8435993,852.5946477,89.64115817,699.4041597,607.5822945,91.82186521,86.93814651,4.883718702,159.7801928,0,159.7801928,2.703011659,157.0771811,0.85699712,3.178817383,0.434973346,-0.434973346,0.455768867,0.138368517,2.593612712,83.4195003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.56825328,1.958322746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879063581,80.1859967,85.44731686,82.14431945,607.5822945,0,0.712627385,44.55090931,-0.712627385,135.4490907,0.979837106,0,680.7789937,82.14431945,734.5408079,10,12,8% +10/22/2018 21:00,51.50731214,201.0290602,610.2042224,840.3511297,87.1572804,728.3041383,639.1749943,89.129144,84.52916682,4.59997718,150.579192,0,150.579192,2.62811358,147.9510784,0.898972186,3.508618992,0.825476575,-0.825476575,0.388988881,0.142832968,2.190791632,70.46338969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25265037,1.904059342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58722108,67.73209037,82.83987145,69.63614971,639.1749943,0,0.760604671,40.48246664,-0.760604671,139.5175334,0.984262828,0,711.956059,69.63614971,757.5315263,10,13,6% +10/22/2018 22:00,57.3427681,217.6627697,514.0114117,803.4317085,80.46999717,684.7844391,602.8660741,81.91836499,78.04352985,3.874835141,127.0544851,0,127.0544851,2.426467317,124.6280178,1.000820105,3.79893199,1.318252914,-1.318252914,0.304719164,0.156552939,1.602505582,51.54208809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01840942,1.757967311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161009839,49.54421557,76.17941926,51.30218288,602.8660741,0,0.750363805,41.37809833,-0.750363805,138.6219017,0.983365656,0,669.0172117,51.30218288,702.5934643,10,14,5% +10/22/2018 23:00,65.67001518,231.4786391,367.1123589,723.9818774,68.83814548,563.7547921,494.2249226,69.52986944,66.76242141,2.76744803,91.08636577,0,91.08636577,2.075724072,89.0106417,1.146157985,4.0400644,2.097115034,-2.097115034,0.171525897,0.187512471,0.904609916,29.09536448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17457889,1.503855024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.655386805,27.96757104,64.82996569,29.47142606,494.2249226,0,0.682648196,46.94906937,-0.682648196,133.0509306,0.976755831,0,547.5670406,29.47142606,566.8554995,10,15,4% +10/22/2018 0:00,75.61455686,242.9588121,184.4602502,544.6098699,49.15530679,355.2753292,306.211697,49.06363221,47.67309293,1.390539282,46.20673712,0,46.20673712,1.482213864,44.72452326,1.31972298,4.240431217,3.869450866,-3.869450866,0,0.26648184,0.370553466,11.91827323,0.11626535,1,0.252901224,0,0.931473193,0.970235156,0.724496596,1,46.03926371,1.073858898,0.01885045,0.312029739,0.947934217,0.672430813,0.961238037,0.922476074,0.261040951,11.45629756,46.30030466,12.53015646,270.6098868,0,0.562258809,55.78784616,-0.562258809,124.2121538,0.961072981,0,306.3761551,12.53015646,314.5768919,10,16,3% +10/22/2018 1:00,86.44644403,252.8792589,15.10053507,95.70350617,9.168688461,47.20851551,38.20246262,9.006052887,8.892218675,0.113834212,3.937769341,0,3.937769341,0.276469786,3.661299555,1.508775075,4.413575677,16.08249843,-16.08249843,0,0.607176396,0.069117446,2.223054669,0.689452135,1,0.062099445,0,0.955299746,0.994061709,0.724496596,1,8.601773834,0.200301419,0.088820756,0.312029739,0.779178604,0.5036752,0.961238037,0.922476074,0.047941355,2.136884706,8.649715189,2.337186125,11.86369321,0,0.399175162,66.47337598,-0.399175162,113.526624,0.924741706,0,19.62056708,2.337186125,21.15020866,10,17,8% +10/22/2018 2:00,98.2191999,261.9955749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714248427,4.572685407,-6.771910036,6.771910036,0.31178149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196776264,78.6514933,-0.196776264,101.3485067,0.795904313,0,0,0,0,10,18,0% +10/22/2018 3:00,110.0388351,271.0396445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920539977,4.730534201,-2.558911329,2.558911329,0.967753299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.022099115,91.26628908,0.022099115,88.73371092,0,0,0,0,0,10,19,0% +10/22/2018 4:00,121.8169353,280.8628874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126106606,4.901982131,-1.383539942,1.383539942,0.766752954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245938942,104.2373291,0.245938942,75.76267095,0,0.846697507,0,0,0,10,20,0% +10/22/2018 5:00,133.1605444,292.7175512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.324089934,5.108885047,-0.783463769,0.783463769,0.664133885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459495043,117.3545283,0.459495043,62.64547167,0,0.941184898,0,0,0,10,21,0% +10/22/2018 6:00,143.3690893,308.7462484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502262653,5.388638588,-0.385751056,0.385751056,0.596121005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648222312,130.4077055,0.648222312,49.5922945,0,0.972865969,0,0,0,10,22,0% +10/22/2018 7:00,150.9860326,332.2071891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635203394,5.798109249,-0.075202678,0.075202678,0.543014105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799269698,143.0604201,0.799269698,36.93957989,0,0.987442893,0,0,0,10,23,0% +10/23/2018 8:00,153.530364,3.656800655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.679610353,0.063823212,0.199794063,-0.199794063,0.495986893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902355531,154.4694397,0.902355531,25.53056027,0,0.994589468,0,0,0,10,0,0% +10/23/2018 9:00,149.6676523,33.8149354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612193316,0.590181959,0.472250957,-0.472250957,0.44939402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.950467683,161.8911408,0.950467683,18.10885917,0,0.997394319,0,0,0,10,1,0% +10/23/2018 10:00,141.308373,55.38705542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46629637,0.96668648,0.775003448,-0.775003448,0.397620294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940340948,160.1088932,0.940340948,19.89110677,0,0.996827797,0,0,0,10,2,0% +10/23/2018 11:00,130.7718115,70.2654695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28239868,1.226363793,1.159651653,-1.159651653,0.331841577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872679174,150.7714853,0.872679174,29.22851469,0,0.992705176,0,0,0,10,3,0% +10/23/2018 12:00,119.3006092,81.54471078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08218843,1.423223691,1.745884023,-1.745884023,0.231589938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75210705,138.7732282,0.75210705,41.22677178,0,0.983520102,0,0,0,10,4,0% +10/23/2018 13:00,107.5008584,91.12374452,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876243929,1.590409369,2.958322606,-2.958322606,0.024250729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586854815,125.9341325,0.586854815,54.06586747,0,0.964800051,0,0,0,10,5,0% +10/23/2018 14:00,95.7336899,100.1340078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670868094,1.74766813,8.613465204,-8.613465204,0,#DIV/0!,0,0,0.485288414,1,0.115579863,0,0.949454664,0.988216628,0.724496596,1,0,0,0.067477583,0.312029739,0.826533012,0.551029608,0.961238037,0.922476074,0,0,0,0,0,0,-0.388197303,112.8423768,0.388197303,67.15762325,0,0.921199517,0,0,0,10,6,0% +10/23/2018 15:00,84.15279119,109.3823867,41.67876441,214.9756807,19.77790327,19.49571865,0,19.49571865,19.18152652,0.314192131,46.65647853,35.9546028,10.70187573,0.596376756,10.10549897,1.468743281,1.909082791,-7.547481638,7.547481638,0.179150935,0.4745319,0.17867164,5.746694114,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.43801289,0.43207293,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129446995,5.523940968,18.56745989,5.956013898,0,35.9546028,-0.167249629,99.627945,0.167249629,80.372055,0,0.751045674,18.56745989,32.95956281,40.13883455,10,7,116% +10/23/2018 16:00,73.47706151,119.5955866,223.6986297,596.0237343,54.189964,86.85202716,32.60975575,54.24227141,52.55593665,1.686334762,55.87235003,0,55.87235003,1.634027354,54.23832267,1.282416648,2.087336756,-2.185001472,2.185001472,0.903810948,0.2422454,1.563421705,50.28501626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51876537,1.183847256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.132693703,48.33587031,51.65145907,49.51971757,32.60975575,0,0.054712177,86.86365714,-0.054712177,93.13634286,0,0,51.65145907,49.51971757,84.06112382,10,8,63% +10/23/2018 17:00,63.86988313,131.5343984,399.68482,745.0375775,71.56196597,271.7106902,199.2935885,72.41710166,69.40410866,3.012993001,99.06606931,0,99.06606931,2.15785731,96.908212,1.114739753,2.295708332,-0.971631989,0.971631989,0.696312546,0.179045994,2.261813375,72.74769306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.71386916,1.563360275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.63867609,69.92784967,68.35254525,71.49120994,199.2935885,0,0.26749468,74.48476004,-0.26749468,105.51524,0.863080395,0,240.3589343,71.49120994,287.1485014,10,9,19% +10/23/2018 18:00,56.06363457,145.9374802,535.7039008,812.7579783,81.96403927,453.8687649,370.3378816,83.53088336,79.49252107,4.038362286,132.3591311,0,132.3591311,2.471518199,129.8876129,0.978495014,2.547089532,-0.361097867,0.361097867,0.591905062,0.153002506,2.642480595,84.9912594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.4112349,1.790606522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914468196,81.69683134,78.32570309,83.48743786,370.3378816,0,0.455655794,62.89286292,-0.455655794,117.1071371,0.940268047,0,426.5425798,83.48743786,481.1834382,10,10,13% +10/23/2018 19:00,50.96478384,163.1101761,618.866149,843.4413561,87.6685242,601.0101912,511.3199221,89.69026918,85.02499474,4.665274442,152.6947923,0,152.6947923,2.643529467,150.0512628,0.889503281,2.846809616,0.066916637,-0.066916637,0.518710271,0.141659912,2.738001664,88.06354534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.72925902,1.9152281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983672885,84.65002944,83.71293191,86.56525754,511.3199221,0,0.606230556,52.68255618,-0.606230556,127.3174438,0.967523128,0,578.4267823,86.56525754,635.082012,10,11,10% +10/23/2018 20:00,49.45314102,182.1645259,642.4943323,851.0920738,89.22514272,694.7297292,603.3516601,91.37806913,86.53467546,4.843393668,158.4706567,0,158.4706567,2.690467259,155.7801894,0.863120136,3.179370757,0.440992627,-0.440992627,0.454739509,0.138873042,2.569233833,82.63539174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.18042156,1.94923437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861401166,79.43228173,85.04182272,81.3815161,603.3516601,0,0.708914674,44.8533213,-0.708914674,135.1466787,0.97946965,0,676.0064621,81.3815161,729.2690368,10,12,8% +10/23/2018 21:00,51.85217802,200.9424694,604.7675802,838.6701015,86.72736837,723.2914146,634.6202029,88.6712117,84.11221823,4.558993474,149.2480517,0,149.2480517,2.615150146,146.6329016,0.904991231,3.507107698,0.834301175,-0.834301175,0.387479786,0.143406114,2.166975897,69.69739378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.85186352,1.894667379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569966661,66.99578597,82.42183018,68.89045335,634.6202029,0,0.756698256,40.82601833,-0.756698256,139.1739817,0.983923463,0,706.8395382,68.89045335,751.9269621,10,13,6% +10/23/2018 22:00,57.66412791,217.4944829,508.5924235,801.2592322,80.01372259,679.4421872,598.0071891,81.43499815,77.60101363,3.833984519,125.7268303,0,125.7268303,2.412708955,123.3141214,1.006428892,3.795994832,1.332184138,-1.332184138,0.302336785,0.157323859,1.579969124,50.81723813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.593046,1.747999425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144682252,48.84746221,75.73772825,50.59546164,598.0071891,0,0.746334226,41.7261728,-0.746334226,138.2738272,0.983005886,0,663.5823152,50.59546164,696.6960329,10,14,5% +10/23/2018 23:00,65.9629147,231.2665308,361.8471356,720.6159955,68.32016437,557.9804147,488.9925988,68.9878159,66.26005934,2.727756553,89.79413238,0,89.79413238,2.06010503,87.73402735,1.151270046,4.036362413,2.12334827,-2.12334827,0.16703975,0.188809466,0.884640172,28.45306888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.69168937,1.492539082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.640918794,27.35017207,64.33260816,28.84271115,488.9925988,0,0.678575832,47.26754646,-0.678575832,132.7324535,0.976316268,0,541.7440371,28.84271115,560.6210147,10,15,3% +10/23/2018 0:00,75.88164161,242.7247914,179.6429928,537.86688,48.44340516,348.5924457,300.2555632,48.33688252,46.98265776,1.354224761,45.01727083,0,45.01727083,1.460747403,43.55652343,1.324384488,4.236346787,3.943767217,-3.943767217,0,0.269664875,0.365186851,11.74566444,0.126080555,1,0.248330815,0,0.932138104,0.970900067,0.724496596,1,45.38585522,1.058306521,0.020352421,0.312029739,0.94390534,0.668401936,0.961238037,0.922476074,0.25677659,11.29037943,45.64263181,12.34868595,262.3991752,0,0.558233969,56.06624729,-0.558233969,123.9337527,0.960431821,0,297.6591495,12.34868595,305.7411175,10,16,3% +10/23/2018 1:00,86.68544646,252.6315917,12.99665324,84.46468652,8.113106849,41.36535692,33.39891592,7.966441005,7.868466743,0.097974262,3.395829155,0,3.395829155,0.244640106,3.151189049,1.512946454,4.409253069,17.24862571,-17.24862571,0,0.62424585,0.061160026,1.967116686,0.70756258,1,0.057910809,0,0.955729211,0.994491174,0.724496596,1,7.609316108,0.177240924,0.090562305,0.312029739,0.775475366,0.499971962,0.961238037,0.922476074,0.042500583,1.890867381,7.651816692,2.068108305,9.767092789,0,0.395418693,66.70791059,-0.395418693,113.2920894,0.923551754,0,16.67223237,2.068108305,18.02576789,10,17,8% +10/23/2018 2:00,98.45698164,261.734514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718398501,4.568129035,-6.585131786,6.585131786,0.343722452,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193033284,78.87014365,-0.193033284,101.1298563,0.790977312,0,0,0,0,10,18,0% +10/23/2018 3:00,110.272946,270.7611367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924625983,4.725673321,-2.531485641,2.531485641,0.96306323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025596646,91.46674,0.025596646,88.53326,0,0,0,0,0,10,19,0% +10/23/2018 4:00,122.0568557,280.5612888,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130294007,4.896718244,-1.374987257,1.374987257,0.765290359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249149231,104.4271738,0.249149231,75.57282623,0,0.849317061,0,0,0,10,20,0% +10/23/2018 5:00,133.4186442,292.3914021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328594624,5.103192672,-0.780492723,0.780492723,0.663625806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462396048,117.5418285,0.462396048,62.45817152,0,0.941867588,0,0,0,10,21,0% +10/23/2018 6:00,143.6611338,308.4201774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507359792,5.382947574,-0.385232755,0.385232755,0.596032371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650813268,130.6029469,0.650813268,49.39705308,0,0.973173048,0,0,0,10,22,0% +10/23/2018 7:00,151.3216635,331.9984783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641061257,5.794466559,-0.076141053,0.076141053,0.543174577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801571171,143.2804012,0.801571171,36.71959882,0,0.987622507,0,0,0,10,23,0% +10/24/2018 8:00,153.8768543,3.772741999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685657751,0.06584677,0.1976835,-0.1976835,0.49634782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904407999,154.7436681,0.904407999,25.25633187,0,0.994715217,0,0,0,10,0,0% +10/24/2018 9:00,149.9638953,34.18618856,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617363732,0.596661549,0.468868072,-0.468868072,0.449972527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952328742,162.2374016,0.952328742,17.76259845,0,0.997497122,0,0,0,10,1,0% +10/24/2018 10:00,141.5466608,55.79823898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470455277,0.973862987,0.769837463,-0.769837463,0.39850373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942081339,160.4040803,0.942081339,19.5959197,0,0.996926027,0,0,0,10,2,0% +10/24/2018 11:00,130.97336,70.64369045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285916365,1.232964994,1.151376574,-1.151376574,0.333256699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874377902,150.9714358,0.874377902,29.02856419,0,0.992816487,0,0,0,10,3,0% +10/24/2018 12:00,119.4844407,81.88621053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085396895,1.429183986,1.730692883,-1.730692883,0.234187776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753845929,138.9246315,0.753845929,41.07536845,0,0.98367345,0,0,0,10,4,0% +10/24/2018 13:00,107.6805869,91.4383398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879380781,1.595900092,2.92003322,-2.92003322,0.030798599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588712818,126.065719,0.588712818,53.934281,0,0.965068946,0,0,0,10,5,0% +10/24/2018 14:00,95.91974753,100.4313891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674115412,1.752858412,8.315656769,-8.315656769,0,#DIV/0!,0,0,0.471432896,1,0.119680381,0,0.948979079,0.987741042,0.724496596,1,0,0,0.065904994,0.312029739,0.830165912,0.554662508,0.961238037,0.922476074,0,0,0,0,0,0,-0.390245112,112.9697518,0.390245112,67.03024817,0,0.921875397,0,0,0,10,6,0% +10/24/2018 15:00,84.35013093,109.6691535,39.0510827,204.9499577,18.87394624,18.59921068,0,18.59921068,18.30482712,0.294383557,44.77179262,34.73428639,10.03750623,0.569119117,9.468387118,1.472187509,1.914087817,-7.780711921,7.780711921,0.139266207,0.483314288,0.163462695,5.257522181,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.59529609,0.412324863,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118428166,5.0537303,17.71372425,5.466055163,0,34.73428639,-0.169476914,99.75740714,0.169476914,80.24259286,0,0.754974567,17.71372425,31.68955798,38.45390616,10,7,117% +10/24/2018 16:00,73.70196329,119.8733339,219.6075076,591.3743782,53.64785668,84.52131151,30.83564149,53.68567001,52.03017586,1.655494155,54.86406356,0,54.86406356,1.617680818,53.24638274,1.286341925,2.092184362,-2.204228601,2.204228601,0.907098981,0.244289721,1.539268109,49.5081536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.0133841,1.172004246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115194505,47.58912037,51.12857861,48.76112462,30.83564149,0,0.052142336,87.01110879,-0.052142336,92.98889121,0,0,51.12857861,48.76112462,83.04175945,10,8,62% +10/24/2018 17:00,64.12759823,131.7958473,395.108193,742.4574063,71.12321374,268.4189838,196.461905,71.95707888,68.97858643,2.978492453,97.9431831,0,97.9431831,2.144627311,95.79855579,1.11923773,2.300271477,-0.974505773,0.974505773,0.696803992,0.180009463,2.23798604,71.98132409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.304841,1.553775186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.621413268,69.19118665,67.92625427,70.74496184,196.461905,0,0.264610338,74.65619971,-0.264610338,105.3438003,0.861042908,0,237.0883842,70.74496184,283.3895468,10,9,20% +10/24/2018 18:00,56.3591918,146.1601118,530.7918526,810.9259103,81.55134887,450.0072092,366.9136012,83.093608,79.09227481,4.001333193,131.155704,0,131.155704,2.459074061,128.69663,0.983653461,2.550975185,-0.359483477,0.359483477,0.591628985,0.153640921,2.618358337,84.21540468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.02650297,1.781590786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896991702,80.95105026,77.92349467,82.73264105,366.9136012,0,0.452462545,63.09821161,-0.452462545,116.9017884,0.939493615,0,422.6364804,82.73264105,476.7833393,10,10,13% +10/24/2018 19:00,51.29487829,163.2540589,613.7032592,841.88998,87.25900086,596.7049276,507.4507531,89.25417443,84.62782003,4.626354397,151.4306412,0,151.4306412,2.631180827,148.7994604,0.895264516,2.849320846,0.070839471,-0.070839471,0.518039427,0.142184353,2.713665334,87.28080531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.34747959,1.906281553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966041297,83.89762996,83.31352089,85.80391151,507.4507531,0,0.602751862,52.93275947,-0.602751862,127.0672405,0.967047125,0,574.0423127,85.80391151,630.1992567,10,11,10% +10/24/2018 20:00,49.80095274,182.1922057,637.1644316,849.5766084,88.80946874,690.0503068,599.1155566,90.93475021,86.13153559,4.803214625,157.1658264,0,157.1658264,2.677933155,154.4878933,0.869190596,3.179853862,0.446980221,-0.446980221,0.45371557,0.139382339,2.545021558,81.85664176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.79290818,1.940153455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.843859455,78.68371763,84.63676763,80.62387109,599.1155566,0,0.705193093,45.15485411,-0.705193093,134.8451459,0.979097434,0,671.2292717,80.62387109,723.9959828,10,12,8% +10/24/2018 21:00,52.19345667,200.8542237,599.3636552,836.9778002,86.29853403,718.2856964,630.0711252,88.21457123,83.69631482,4.518256405,147.9248766,0,147.9248766,2.602219209,145.3226574,0.910947667,3.50556752,0.84310914,-0.84310914,0.385973535,0.143983595,2.143385263,68.93863789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45208135,1.885298958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552875326,66.26644095,82.00495668,68.1517399,630.0711252,0,0.752793115,41.16709115,-0.752793115,138.8329089,0.983580689,0,701.7307481,68.1517399,746.3346989,10,13,6% +10/24/2018 22:00,57.9817156,217.3260798,503.2204101,799.0745621,79.55917283,674.1210221,593.1673639,80.95365824,77.16017023,3.793488012,124.4106171,0,124.4106171,2.399002603,122.0116145,1.011971843,3.793055643,1.346136053,-1.346136053,0.299950867,0.158100052,1.557714941,50.1014671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.16929055,1.738069219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128559172,48.15943588,75.29784972,49.89750509,593.1673639,0,0.742317916,42.07075741,-0.742317916,137.9292426,0.982643415,0,658.1698537,49.89750509,690.8267728,10,14,5% +10/24/2018 23:00,66.25197423,231.0549205,356.64364,717.230215,67.80416575,552.2412945,483.7931441,68.44815039,65.75961998,2.688530405,88.51692535,0,88.51692535,2.044545768,86.47237958,1.156315086,4.032669115,2.149763608,-2.149763608,0.162522461,0.190117412,0.865011867,27.82175511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.21064801,1.481266449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626698153,26.74332926,63.83734617,28.22459571,483.7931441,0,0.674529787,47.5823539,-0.674529787,132.4176461,0.975874289,0,535.9586367,28.22459571,554.4310701,10,15,3% +10/24/2018 0:00,76.14477537,242.4913883,174.9067275,531.0697893,47.7317765,341.9558496,294.3448415,47.61100812,46.29248732,1.318520793,43.84745026,0,43.84745026,1.439289173,42.40816108,1.328977038,4.232273133,4.019631479,-4.019631479,0,0.27289846,0.359822293,11.57312183,0.135877834,1,0.24382918,0,0.932788657,0.97155062,0.724496596,1,44.73167726,1.042760106,0.021838572,0.312029739,0.93993632,0.664432916,0.961238037,0.922476074,0.252547653,11.12452491,44.98422491,12.16728502,254.349902,0,0.554248891,56.3410042,-0.554248891,123.6589958,0.959787821,0,289.1061632,12.16728502,297.0694079,10,16,3% +10/24/2018 1:00,86.91962634,252.3844416,11.07913578,73.86366164,7.109941419,35.91340918,28.93433952,6.979069658,6.895550452,0.083519205,2.900655707,0,2.900655707,0.214390967,2.68626474,1.517033664,4.404939487,18.56625566,-18.56625566,0,0.641741518,0.053597742,1.723887613,0.725641267,1,0.053809163,0,0.956145731,0.994907695,0.724496596,1,6.666483124,0.155325526,0.092278216,0.312029739,0.77185042,0.496347016,0.961238037,0.922476074,0.03731816,1.657066345,6.703801284,1.81239187,7.938388728,0,0.391726309,66.93804191,-0.391726309,113.0619581,0.922359862,0,14.02585242,1.81239187,15.21202665,10,17,8% +10/24/2018 2:00,98.69046999,261.4737325,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722473642,4.563577539,-6.411565456,6.411565456,0.373404042,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.189352789,79.08498386,-0.189352789,100.9150161,0.785942628,0,0,0,0,10,18,0% +10/24/2018 3:00,110.5025001,270.4824906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928632459,4.720810029,-2.505196444,2.505196444,0.958567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.029023312,91.66314686,0.029023312,88.33685314,0,0,0,0,0,10,19,0% +10/24/2018 4:00,122.291925,280.2587831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13439674,4.891438523,-1.366756909,1.366756909,0.763882887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25228321,104.612662,0.25228321,75.38733797,0,0.851810037,0,0,0,10,20,0% +10/24/2018 5:00,133.6716404,292.0628413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333010242,5.097458203,-0.777658456,0.777658456,0.663141118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465218609,117.724371,0.465218609,62.27562901,0,0.942523646,0,0,0,10,21,0% +10/24/2018 6:00,143.9481153,308.0889137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512368565,5.377165932,-0.384784106,0.384784106,0.595955647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653327103,130.7929235,0.653327103,49.20707654,0,0.973468658,0,0,0,10,22,0% +10/24/2018 7:00,151.6530915,331.7819126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646845767,5.790686774,-0.077117028,0.077117028,0.543341478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803800209,143.4945435,0.803800209,36.50545652,0,0.987795488,0,0,0,10,23,0% +10/25/2018 8:00,154.2204343,3.884435375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.691654352,0.067796187,0.195554907,-0.195554907,0.496711831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906395759,155.0119293,0.906395759,24.98807075,0,0.994836459,0,0,0,10,0,0% +10/25/2018 9:00,150.257775,34.55608611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6224929,0.603117479,0.465483368,-0.465483368,0.450551346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954135328,162.5798933,0.954135328,17.42010674,0,0.997596532,0,0,0,10,1,0% +10/25/2018 10:00,141.7832625,56.20695676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474584755,0.980996458,0.764689593,-0.764689593,0.399384067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943779296,160.6962464,0.943779296,19.30375364,0,0.997021512,0,0,0,10,2,0% +10/25/2018 11:00,131.17399,71.01864972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289418019,1.239509268,1.143156948,-1.143156948,0.334662338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876047207,151.1691555,0.876047207,28.83084446,0,0.99292545,0,0,0,10,3,0% +10/25/2018 12:00,119.667967,82.22414571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088600034,1.435082067,1.715664248,-1.715664248,0.236757824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755568472,139.0750664,0.755568472,40.9249336,0,0.983824661,0,0,0,10,4,0% +10/25/2018 13:00,107.8604338,91.74918151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882519703,1.601325303,2.882470278,-2.882470278,0.037222241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.590566745,126.1972364,0.590566745,53.80276356,0,0.965335565,0,0,0,10,5,0% +10/25/2018 14:00,96.10617007,100.7247573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677369099,1.757978654,8.035585508,-8.035585508,0,#DIV/0!,0,0,0.457704287,1,0.123809913,0,0.948496221,0.987258184,0.724496596,1,0,0,0.064329861,0.312029739,0.833824423,0.558321019,0.961238037,0.922476074,0,0,0,0,0,0,-0.392299428,113.0976524,0.392299428,66.90234762,0,0.922546335,0,0,0,10,6,0% +10/25/2018 15:00,84.54766754,109.9514913,36.47666837,194.8444313,17.96301928,17.69634451,0,17.69634451,17.42136798,0.274976534,42.84357015,33.45772829,9.385841866,0.541651308,8.844190558,1.475635173,1.919015541,-8.031354885,8.031354885,0.096403736,0.492452301,0.14886729,4.788083766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.74608155,0.392424529,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.107853845,4.60248824,16.8539354,4.994912768,0,33.45772829,-0.171715086,99.88755277,0.171715086,80.11244723,0,0.758819993,16.8539354,30.3833059,36.73920144,10,7,118% +10/25/2018 16:00,73.92712171,120.1460422,215.5140213,586.6295336,53.0998714,82.19257419,29.0692241,53.12335009,51.49871436,1.624635726,53.85502663,0,53.85502663,1.601157041,52.25386959,1.29027168,2.09694402,-2.224168795,2.224168795,0.910508955,0.246387085,1.515067681,48.72978462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.5025231,1.160032825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.097661377,46.84092251,50.60018447,48.00095533,29.0692241,0,0.04955295,87.15966187,-0.04955295,92.84033813,0,0,50.60018447,48.00095533,82.01584972,10,8,62% +10/25/2018 17:00,64.38513926,132.0515128,390.526981,739.8345965,70.68195351,265.1125234,193.6179343,71.49458916,68.55063182,2.943957342,96.8191096,0,96.8191096,2.131321687,94.68778791,1.123732669,2.30473368,-0.97755474,0.97755474,0.697325396,0.180991217,2.214170456,71.21533302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.89347476,1.544135307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604158958,68.4548869,67.49763372,69.99902221,193.6179343,0,0.261704353,74.82878353,-0.261704353,105.1712165,0.858944714,0,233.8047349,69.99902221,279.6176949,10,9,20% +10/25/2018 18:00,56.65376783,146.3764167,525.8806356,809.0695591,81.1374816,446.1290499,363.4738524,82.65519753,78.69088716,3.964310364,129.952443,0,129.952443,2.446594436,127.5058485,0.988794782,2.554750419,-0.357948903,0.357948903,0.591366557,0.15428878,2.594300649,83.44162671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64067389,1.77254934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879561989,80.20726545,77.52023588,81.97981479,363.4738524,0,0.4492492,63.30447638,-0.4492492,116.6955236,0.938703196,0,418.7143029,81.97981479,472.3684521,10,10,13% +10/25/2018 19:00,51.62288626,163.3920338,608.5504656,840.3223614,86.8491914,592.3877882,503.5699099,88.8178783,84.23036784,4.587510462,150.1689295,0,150.1689295,2.61882356,147.5501059,0.900989335,2.851728962,0.074712196,-0.074712196,0.517377152,0.142714855,2.689449118,86.50192854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.96543343,1.897328754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.94849673,83.14894398,82.91393016,85.04627273,503.5699099,0,0.599258015,53.18322468,-0.599258015,126.8167753,0.966563486,0,569.6462175,85.04627273,625.3073021,10,11,10% +10/25/2018 20:00,50.14564523,182.2158487,631.8565138,848.0489496,88.39430165,685.3681832,594.8760946,90.49208861,85.72888731,4.763201298,155.8663415,0,155.8663415,2.665414335,153.2009272,0.875206615,3.180266509,0.452931559,-0.452931559,0.452697831,0.139896163,2.520987659,81.08362896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40586734,1.931083612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.826446977,77.94066832,84.23231432,79.87175194,594.8760946,0,0.701464337,45.45539361,-0.701464337,134.5446064,0.978720539,0,666.4497662,79.87175194,718.7242304,10,12,8% +10/25/2018 21:00,52.53103523,200.7642876,593.9952661,835.2751908,85.87096755,713.2897208,625.5302925,87.75942827,83.28164105,4.477787221,146.6103558,0,146.6103558,2.589326502,144.0210293,0.916839524,3.503997839,0.851894283,-0.851894283,0.384471187,0.144565071,2.120031436,68.18749853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05348114,1.875958236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535955558,65.54441722,81.5894367,67.42037546,625.5302925,0,0.748891263,41.50557327,-0.748891263,138.4944267,0.983234633,0,696.6324843,67.42037546,740.7577716,10,13,6% +10/25/2018 22:00,58.29541121,217.1575245,497.8982718,796.8791493,79.10657066,668.824111,588.3495279,80.47458317,76.72121568,3.753367486,123.1065554,0,123.1065554,2.385354978,120.7212005,1.017446864,3.790113797,1.360099053,-1.360099053,0.297563053,0.158880991,1.535753856,49.39512311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.74735075,1.728181561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.11264844,47.48047117,74.85999919,49.20865273,588.3495279,0,0.738317132,42.41174235,-0.738317132,137.5882576,0.982278424,0,652.783046,49.20865273,684.989125,10,14,5% +10/25/2018 23:00,66.53707067,230.8437915,351.5047076,713.8270624,67.29043476,546.5411108,478.62994,67.91117084,65.26137987,2.649790962,87.25544082,0,87.25544082,2.029054883,85.22638594,1.161290958,4.02898422,2.176344001,-2.176344001,0.157976946,0.191435373,0.845733631,27.20170077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.73172067,1.470043356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.612731137,26.14730945,63.34445181,27.6173528,478.62994,0,0.670512461,47.89337092,-0.670512461,132.1066291,0.97543017,0,530.2145357,27.6173528,548.2895407,10,15,3% +10/25/2018 0:00,76.40383609,242.2586089,170.2540666,524.2245825,47.02090477,335.3704379,288.4839399,46.88649807,45.603051,1.28344707,42.69792335,0,42.69792335,1.417853767,41.28006958,1.333498501,4.228210366,4.097032615,-4.097032615,0,0.276180803,0.354463442,11.40076275,0.145649759,1,0.239398327,0,0.933424751,0.972186714,0.724496596,1,44.07722051,1.027230228,0.023308027,0.312029739,0.936028941,0.660525537,0.961238037,0.922476074,0.248355711,10.9588468,44.32557622,11.98607703,246.4663237,0,0.550306013,56.61199074,-0.550306013,123.3880093,0.959141462,0,280.7216462,11.98607703,288.5662938,10,16,3% +10/25/2018 1:00,87.14880853,252.1378357,9.346581216,63.95882336,6.165132262,30.87219305,24.8225038,6.049689254,5.979230777,0.070458477,2.452088311,0,2.452088311,0.185901485,2.266186827,1.521033648,4.400635401,20.06481562,-20.06481562,0,0.659613619,0.046475371,1.494807694,0.743664138,1,0.049797282,0,0.956549277,0.99531124,0.724496596,1,5.778839001,0.134684993,0.093966795,0.312029739,0.768306264,0.49280286,0.961238037,0.922476074,0.032425163,1.436866014,5.811264164,1.571551006,6.362897909,0,0.38810132,67.16359051,-0.38810132,112.8364095,0.921167663,0,11.67255996,1.571551006,12.70110866,10,17,9% +10/25/2018 2:00,98.91954871,261.2132761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72647182,4.559031717,-6.250008915,6.250008915,0.401031838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.185736983,79.29589688,-0.185736983,100.7041031,0.780802131,0,0,0,0,10,18,0% +10/25/2018 3:00,110.7273825,270.2037701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932557396,4.71594544,-2.480004454,2.480004454,0.954259429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032377176,91.85539982,0.032377176,88.14460018,0,0,0,0,0,10,19,0% +10/25/2018 4:00,122.5220251,279.9554514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138412745,4.886144385,-1.358844415,1.358844415,0.76252977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255339284,104.7936902,0.255339284,75.20630977,0,0.854182109,0,0,0,10,20,0% +10/25/2018 5:00,133.9194048,291.7319541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337334547,5.091683132,-0.774960737,0.774960737,0.662679781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467961522,117.9020557,0.467961522,62.0979443,0,0.943153609,0,0,0,10,21,0% +10/25/2018 6:00,144.2298868,307.7524773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517286405,5.371294011,-0.38440561,0.38440561,0.595890921,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655763027,130.977532,0.655763027,49.02246795,0,0.973752944,0,0,0,10,22,0% +10/25/2018 7:00,151.9801695,331.5572707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652554356,5.786766032,-0.078131174,0.078131174,0.543514907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805956433,143.7027246,0.805956433,36.29727544,0,0.987961907,0,0,0,10,23,0% +10/26/2018 8:00,154.5610174,3.991534808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697598649,0.069665425,0.193407791,-0.193407791,0.497079009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908318809,155.2740475,0.908318809,24.72595249,0,0.994953248,0,0,0,10,0,0% +10/26/2018 9:00,150.5492653,34.92433291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627580366,0.609544598,0.46209647,-0.46209647,0.451130539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95588776,162.9184714,0.95588776,17.08152865,0,0.997692604,0,0,0,10,1,0% +10/26/2018 10:00,142.0181878,56.61296346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478684975,0.988082612,0.759559568,-0.759559568,0.400261353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945435377,160.9853635,0.945435377,19.0146365,0,0.997114312,0,0,0,10,2,0% +10/26/2018 11:00,131.3737212,71.39015941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292903986,1.245993335,1.134992481,-1.134992481,0.336058544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877687789,151.3646884,0.877687789,28.63531161,0,0.993032134,0,0,0,10,3,0% +10/26/2018 12:00,119.8512035,82.55836551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091798113,1.440915303,1.700796789,-1.700796789,0.239300309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757275414,139.2245895,0.757275414,40.77541045,0,0.983973824,0,0,0,10,4,0% +10/26/2018 13:00,108.0404034,92.05613983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885660764,1.606682737,2.845618055,-2.845618055,0.043524342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592417256,126.3287323,0.592417256,53.6712677,0,0.965600028,0,0,0,10,5,0% +10/26/2018 14:00,96.29294593,101.013995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680628953,1.763026803,7.771756956,-7.771756956,0,#DIV/0!,0,0,0.444103193,1,0.127967903,0,0.948006082,0.986768045,0.724496596,1,0,0,0.06275246,0.312029739,0.837507988,0.562004583,0.961238037,0.922476074,0,0,0,0,0,0,-0.394360736,113.2261108,0.394360736,66.77388923,0,0.92321253,0,0,0,10,6,0% +10/26/2018 15:00,84.74535175,110.2292919,33.95943921,184.6764072,17.04632965,16.78832051,0,16.78832051,16.53231991,0.256000597,40.87492684,32.1270579,8.747868938,0.514009733,8.233859204,1.479085414,1.923864077,-8.301348689,8.301348689,0.050232076,0.501961459,0.134906931,4.339070633,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89149474,0.372398302,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.097739612,4.170879737,15.98923435,4.543278039,0,32.1270579,-0.173964062,100.0183785,0.173964062,79.98162145,0,0.762584315,15.98923435,29.04286848,34.99721091,10,7,119% +10/26/2018 16:00,74.1524828,120.4136158,211.419519,581.7878266,52.54597495,79.86682854,27.31153897,52.55528957,50.96151993,1.593769638,52.84556513,0,52.84556513,1.584455019,51.26111011,1.294204973,2.10161406,-2.244853787,2.244853787,0.914046297,0.248538901,1.49082668,47.9501107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.98615137,1.147932267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080098854,46.09147027,50.06625022,47.23940254,27.31153897,0,0.046944157,87.30930905,-0.046944157,92.69069095,0,0,50.06625022,47.23940254,80.9834944,10,8,62% +10/26/2018 17:00,64.64242919,132.3013216,385.9427643,737.1690819,70.23825872,261.7923002,190.7625845,71.02971565,68.12031607,2.90939958,95.69423414,0,95.69423414,2.117942652,93.57629149,1.128223226,2.309093666,-0.980785864,0.980785864,0.69787795,0.181991386,2.19037511,70.44999289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.47983889,1.534442242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586919311,67.71921286,67.0667582,69.25365511,190.7625845,0,0.258777246,75.00247941,-0.258777246,104.9975206,0.85678363,0,230.5090179,69.25365511,275.8341501,10,9,20% +10/26/2018 18:00,56.94726609,146.5863585,520.9722182,807.1892701,80.72255322,442.2356674,360.0198884,82.21577904,78.2884704,3.92730864,128.7498287,0,128.7498287,2.434082814,126.3157459,0.993917293,2.558414594,-0.356498351,0.356498351,0.591118498,0.154945984,2.570317645,82.67025086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.2538556,1.763484713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862186384,79.46578964,77.11604198,81.22927435,360.0198884,0,0.446016692,63.51159518,-0.446016692,116.4884048,0.937896572,0,414.7774613,81.22927435,467.9403968,10,10,13% +10/26/2018 19:00,51.94870208,163.5240961,603.4100997,838.7390486,86.43923958,588.0606232,499.6790854,88.3815378,83.83277758,4.548760213,148.9102267,0,148.9102267,2.606462,146.3037647,0.906675893,2.854033883,0.078530817,-0.078530817,0.516724129,0.143251231,2.665364207,85.72727504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.58325455,1.888372846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931047295,82.40431757,82.51430184,84.29269041,499.6790854,0,0.595750354,53.43385834,-0.595750354,126.5661417,0.966072228,0,565.2403891,84.29269041,620.4082691,10,11,10% +10/26/2018 20:00,50.48711118,182.2354448,626.5732016,846.5098358,87.9798093,680.6856779,590.635411,90.0502669,85.32689344,4.723373459,154.5728428,0,154.5728428,2.652915861,151.9199269,0.88116632,3.180608526,0.458841927,-0.458841927,0.451687099,0.140414255,2.497143852,80.31673017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.01945554,1.922028511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.80917222,77.20349603,83.82862776,79.12552455,590.635411,0,0.697730122,45.75482613,-0.697730122,134.2451739,0.978339055,0,661.6703175,79.12552455,713.4563908,10,12,8% +10/26/2018 21:00,52.86480173,200.6726275,588.6652273,833.5632891,85.44486166,708.306249,621.000258,87.30599096,82.86838382,4.437607137,145.3051775,0,145.3051775,2.576477837,142.7286997,0.922664849,3.502398068,0.860650174,-0.860650174,0.382973842,0.145150177,2.096926009,67.44434858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65624258,1.866649422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.519215755,64.83007322,81.17545833,66.69672265,621.000258,0,0.744994731,41.84135367,-0.744994731,138.1586463,0.982885431,0,691.5475648,66.69672265,735.1992358,10,13,6% +10/26/2018 22:00,58.60509594,216.9887827,492.6288926,794.6745219,78.65614234,663.5546424,583.5566283,79.99801412,76.28436944,3.71364468,121.8153514,0,121.8153514,2.371772902,119.4435785,1.022851883,3.787168698,1.374063035,-1.374063035,0.295175071,0.159666117,1.5140965,48.69854812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.32743752,1.718341394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.09695776,46.81089679,74.42439528,48.52923819,583.5566283,0,0.734334136,42.74901864,-0.734334136,137.2509814,0.981911105,0,647.4251289,48.52923819,679.1865447,10,14,5% +10/26/2018 23:00,66.81808227,230.6331291,346.4331408,710.4092145,66.77926387,540.8835718,473.5063898,67.37718202,64.76562267,2.611559349,86.01036704,0,86.01036704,2.013641195,83.99672585,1.166195535,4.025307466,2.203071027,-2.203071027,0.153406355,0.192762343,0.826813761,26.59317271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.25517999,1.458876191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.599023755,25.56236913,62.85420375,27.02124532,473.5063898,0,0.66652625,48.20047806,-0.66652625,131.7995219,0.9749842,0,524.5154523,27.02124532,542.2003169,10,15,3% +10/26/2018 0:00,76.65870329,242.0264613,165.6875469,517.337692,46.31130058,328.8411965,282.6773298,46.16386671,44.914844,1.249022715,41.56932059,0,41.56932059,1.396456583,40.17286401,1.337946773,4.224158626,4.175953717,-4.175953717,0,0.279509845,0.349114146,11.228711,0.155388609,1,0.235040244,0,0.934046292,0.972808255,0.724496596,1,43.42300138,1.011728041,0.024759897,0.312029739,0.932184977,0.656681573,0.961238037,0.922476074,0.244202435,10.79346412,43.66720382,11.80519216,238.7524926,0,0.546407761,56.87908234,-0.546407761,123.1209177,0.958493247,0,272.5098557,11.80519216,280.2361179,10,16,3% +10/26/2018 1:00,87.37281746,251.8918026,7.796018034,54.80022909,5.284144351,26.25684406,21.07326648,5.18357758,5.124807903,0.058769677,2.04957128,0,2.04957128,0.159336449,1.890234831,1.524943341,4.396341313,21.78166578,-21.78166578,0,0.677800427,0.039834112,1.281201976,0.761605664,1,0.045877956,0,0.956939821,0.995701784,0.724496596,1,4.951489224,0.115438715,0.095626311,0.312029739,0.764845397,0.489341993,0.961238037,0.922476074,0.027850695,1.231540072,4.979339919,1.346978786,5.023747365,0,0.384547051,67.3843765,-0.384547051,112.6156235,0.919976899,0,9.601071442,1.346978786,10.48264212,10,17,9% +10/26/2018 2:00,99.14410349,260.9531926,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73039104,4.554492405,-6.099406673,6.099406673,0.426786338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182188033,79.50276746,-0.182188033,100.4972325,0.775558264,0,0,0,0,10,18,0% +10/26/2018 3:00,110.9474802,269.9250425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936398827,4.711080725,-2.455872763,2.455872763,0.950132667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.035656344,92.04339116,0.035656344,87.95660884,0,0,0,0,0,10,19,0% +10/26/2018 4:00,122.7470406,279.6513797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142340006,4.880837334,-1.351245491,1.351245491,0.761230278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258315903,104.9701573,0.258315903,75.02984275,0,0.856438553,0,0,0,10,20,0% +10/26/2018 5:00,134.1618115,291.3988341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341565341,5.085869091,-0.772399344,0.772399344,0.662241757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470623633,118.0747855,0.470623633,61.92521449,0,0.943757992,0,0,0,10,21,0% +10/26/2018 6:00,144.5063028,307.4109007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.522110774,5.365332374,-0.384097745,0.384097745,0.595838272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6581203,131.1566733,0.6581203,48.84332671,0,0.974026048,0,0,0,10,22,0% +10/26/2018 7:00,152.3027496,331.3243366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.65818444,5.782700565,-0.079184031,0.079184031,0.543694956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808039511,143.9048262,0.808039511,36.09517377,0,0.988121838,0,0,0,10,23,0% +10/27/2018 8:00,154.8985169,4.093682645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.703489126,0.071448241,0.191241703,-0.191241703,0.497449432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910177191,155.5298495,0.910177191,24.47015048,0,0.995065642,0,0,0,10,0,0% +10/27/2018 9:00,150.8383415,35.29062513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.632625697,0.615937604,0.458707051,-0.458707051,0.451710164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95758639,163.2529881,0.95758639,16.74701189,0,0.99778539,0,0,0,10,1,0% +10/27/2018 10:00,142.2514474,57.01601087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.482756122,0.995117116,0.754447183,-0.754447183,0.401135623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947050161,161.2714071,0.947050161,18.72859288,0,0.997204486,0,0,0,10,2,0% +10/27/2018 11:00,131.5725733,71.75803105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296374609,1.252413907,1.126882975,-1.126882975,0.337445351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879300359,151.558081,0.879300359,28.44191903,0,0.993136609,0,0,0,10,3,0% +10/27/2018 12:00,120.0341646,82.88871929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094991387,1.446681064,1.686089366,-1.686089366,0.241815426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758967488,139.3732583,0.758967488,40.62674171,0,0.984121025,0,0,0,10,4,0% +10/27/2018 13:00,108.2204981,92.35908542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88880401,1.611970135,2.809461752,-2.809461752,0.049707434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594265,126.4602533,0.594265,53.53974668,0,0.965862452,0,0,0,10,5,0% +10/27/2018 14:00,96.48006167,101.2989853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683894739,1.768000823,7.522843757,-7.522843757,0,#DIV/0!,0,0,0.430630386,1,0.132153705,0,0.947508665,0.986270628,0.724496596,1,0,0,0.061173093,0.312029739,0.841215971,0.565712567,0.961238037,0.922476074,0,0,0,0,0,0,-0.396429495,113.3551579,0.396429495,66.6448421,0,0.923874168,0,0,0,10,6,0% +10/27/2018 15:00,84.94313043,110.5024485,31.50347278,174.4656623,16.12528701,15.8765366,0,15.8765366,15.63905011,0.237486485,38.86960208,30.74498347,8.12461861,0.486236899,7.63838171,1.482537303,1.928631558,-8.592921043,8.592921043,0.000370267,0.511857443,0.121602149,3.911143113,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.03284983,0.352276978,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.088100343,3.759539528,15.12095017,4.111816506,0,30.74498347,-0.176223694,100.1498774,0.176223694,79.85012261,0,0.766269709,15.12095017,27.67076603,33.23091312,10,7,120% +10/27/2018 16:00,74.37799048,120.6759607,207.3254,576.8479435,51.98613912,77.54514339,25.56367173,51.98147165,50.41856521,1.56290644,51.83601746,0,51.83601746,1.567573903,50.26844355,1.298140825,2.106192842,-2.266316537,2.266316537,0.917716643,0.2507466,1.466551562,47.16933947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.46424265,1.135701956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062511614,45.34096327,49.52675426,46.47666522,25.56367173,0,0.044316136,87.46004062,-0.044316136,92.53995938,0,0,49.52675426,46.47666522,79.94480212,10,8,61% +10/27/2018 17:00,64.89938919,132.5452032,381.3571657,734.4608474,69.79220775,258.4593579,187.8968113,70.56254658,67.68771518,2.874831401,94.5689526,0,94.5689526,2.104492569,92.46446003,1.132708024,2.313350203,-0.984206199,0.984206199,0.698462862,0.183010086,2.166608635,69.68558138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.06400646,1.524697703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569700581,66.98443144,66.63370704,68.50912914,187.8968113,0,0.255829582,75.17725269,-0.255829582,104.8227473,0.854557394,0,227.2023165,68.50912914,272.0401714,10,9,20% +10/27/2018 18:00,57.23958881,146.7899026,516.0686064,805.2854344,80.30668383,438.3284951,356.553011,81.77548416,77.88514102,3.890343143,127.5483513,0,127.5483513,2.421542818,125.1268085,0.999019287,2.56196711,-0.355136078,0.355136078,0.590885536,0.155612418,2.546419541,81.90160569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.86616005,1.754399528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844872289,78.72693867,76.71103234,80.48133819,356.553011,0,0.442766,63.71950354,-0.442766,116.2804965,0.937073533,0,410.8274221,80.48133819,463.5008483,10,10,13% +10/27/2018 19:00,52.27221945,163.6502429,598.2845221,837.1406329,86.02929293,583.7253329,495.7800191,87.94531377,83.43519233,4.510121444,147.6551097,0,147.6551097,2.594100596,145.0610091,0.912322337,2.85623556,0.082291256,-0.082291256,0.516081056,0.143793279,2.641421843,84.95720629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20108048,1.879417051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.913701133,81.66409819,82.11478161,83.54351524,495.7800191,0,0.592230265,53.68456516,-0.592230265,126.3154348,0.965573379,0,560.8267701,83.54351524,615.5043299,10,11,10% +10/27/2018 20:00,50.8252431,182.2509865,621.3171353,844.9600506,87.56616289,676.005154,586.395683,89.60947101,84.92572,4.683751011,153.2859757,0,153.2859757,2.640442896,150.6455328,0.887067835,3.180879779,0.464706477,-0.464706477,0.450684202,0.14093634,2.473501835,79.55632161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.63383237,1.91299189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792043659,76.4725624,83.42587603,78.38555429,586.395683,0,0.693992198,46.05303725,-0.693992198,133.9469628,0.977953081,0,656.8933407,78.38555429,708.1951182,10,12,8% +10/27/2018 21:00,53.19464444,200.5792128,583.3763571,831.8431662,85.02041227,703.3380777,616.4836071,86.85447055,82.45673315,4.397737399,144.010031,0,144.010031,2.563679122,141.4463519,0.92842169,3.500767675,0.869370141,-0.869370141,0.38148264,0.145738529,2.074080482,66.7095579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.2605483,1.857376797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502664249,64.12376448,80.76321255,65.98114127,616.4836071,0,0.741105574,42.17432115,-0.741105574,137.8256789,0.982533229,0,686.4788417,65.98114127,729.662179,10,13,6% +10/27/2018 22:00,58.91065185,216.8198238,487.4151438,792.4622882,78.20811803,658.3158323,578.7916364,79.52419595,75.84985472,3.674341239,120.537708,0,120.537708,2.358263316,118.1794447,1.028184839,3.784219809,1.388017395,-1.388017395,0.292788735,0.160454838,1.49275332,48.01207809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90976544,1.708553745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.081494699,46.15103569,73.99126014,47.85958944,578.7916364,0,0.730371205,43.08247749,-0.730371205,136.9175225,0.98154166,0,642.0993639,47.85958944,673.422508,10,14,5% +10/27/2018 23:00,67.09488855,230.4229213,341.4317085,706.979502,66.27095312,535.2724162,468.4259204,66.84649581,64.27263937,2.57385644,84.78238442,0,84.78238442,1.99831375,82.78407067,1.171026716,4.021638649,2.229924847,-2.229924847,0.148814082,0.194097243,0.808260214,25.99642685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.78130569,1.44777151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.585581773,24.98875431,62.36688746,26.43652582,468.4259204,0,0.662573553,48.50355685,-0.662573553,131.4964432,0.97453668,0,518.8651287,26.43652582,536.1673062,10,15,3% +10/27/2018 0:00,76.9092582,241.7949563,161.2096248,510.4160029,45.60350164,322.3731958,276.9295418,45.44365405,44.22838781,1.215266247,40.46225378,0,40.46225378,1.375113833,39.08713995,1.342319781,4.220118102,4.256371431,-4.256371431,0,0.282883244,0.343778458,11.05709695,0.16508638,1,0.230756902,0,0.934653194,0.973415157,0.724496596,1,42.76956241,0.996265291,0.026193289,0.312029739,0.928406189,0.652902784,0.961238037,0.922476074,0.240089596,10.62850217,43.00965201,11.62476746,231.2122463,0,0.542556542,57.14215606,-0.542556542,122.8578439,0.957843706,0,264.474847,11.62476746,272.0830248,10,16,3% +10/27/2018 1:00,87.59147815,251.6463742,6.422798631,46.42721017,4.47172961,22.07717751,17.69186928,4.385308232,4.336890463,0.048417769,1.692121035,0,1.692121035,0.134839147,1.557281889,1.52875969,4.39205778,23.76494459,-23.76494459,0,0.69622759,0.033709787,1.084222616,0.779438906,1,0.042053976,0,0.957317342,0.996079305,0.724496596,1,4.18885818,0.097690503,0.097255003,0.312029739,0.761470303,0.485966899,0.961238037,0.922476074,0.023620615,1.042196019,4.212478795,1.139886522,3.902138042,0,0.381066819,67.60022047,-0.381066819,112.3997795,0.918789416,0,7.797721926,1.139886522,8.543754857,10,17,10% +10/27/2018 2:00,99.36402221,260.6935337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734229346,4.549960502,-5.958828281,5.958828281,0.450826659,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178708069,79.7054825,-0.178708069,100.2945175,0.770214088,0,0,0,0,10,18,0% +10/27/2018 3:00,111.1626831,269.6463795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940154825,4.706217138,-2.432766639,2.432766639,0.946181287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.038858969,92.22701566,0.038858969,87.77298434,0,0,0,0,0,10,19,0% +10/27/2018 4:00,122.9668587,279.3466609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146176556,4.875518987,-1.343956017,1.343956017,0.759983704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.261211576,105.1419649,0.261211576,74.85803507,0,0.858584287,0,0,0,10,20,0% +10/27/2018 5:00,134.3987372,291.0635852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.345700475,5.080017894,-0.769974036,0.769974036,0.661827005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473203845,118.2424668,0.473203845,61.75753317,0,0.944337291,0,0,0,10,21,0% +10/27/2018 6:00,144.7772193,307.0642316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526839159,5.359281856,-0.383860937,0.383860937,0.595797776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660398242,131.330252,0.660398242,48.66974796,0,0.974288109,0,0,0,10,22,0% +10/27/2018 7:00,152.6206823,331.0829037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663733413,5.778486767,-0.080276076,0.080276076,0.543881707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810049164,144.1007352,0.810049164,35.89926484,0,0.988275351,0,0,0,10,23,0% +10/28/2018 8:00,155.2328447,4.190511653,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709324248,0.073138226,0.189056258,-0.189056258,0.497823165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911970989,155.7791646,0.911970989,24.22083542,0,0.995173695,0,0,0,10,0,0% +10/28/2018 9:00,151.1249787,35.65465105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.637628461,0.622291055,0.455314868,-0.455314868,0.452290261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9592316,163.5832919,0.9592316,16.41670813,0,0.997874945,0,0,0,10,1,0% +10/28/2018 10:00,142.4830512,57.41584807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486798372,1.002095592,0.749352338,-0.749352338,0.402006893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948624245,161.5543546,0.948624245,18.4456454,0,0.997292091,0,0,0,10,2,0% +10/28/2018 11:00,131.7705642,72.12207554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299830203,1.258767682,1.118828388,-1.118828388,0.338822767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880885625,151.7493811,0.880885625,28.25061892,0,0.993238942,0,0,0,10,3,0% +10/28/2018 12:00,120.2168624,83.21505639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098180066,1.452376721,1.671541123,-1.671541123,0.244303322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760645411,139.521129,0.760645411,40.47887103,0,0.984266349,0,0,0,10,4,0% +10/28/2018 13:00,108.4007177,92.65788929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891949436,1.617185246,2.773987665,-2.773987665,0.05577386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59611059,126.5918441,0.59611059,53.40815592,0,0.966122946,0,0,0,10,5,0% +10/28/2018 14:00,96.66750062,101.5796124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687166165,1.772898689,7.287664437,-7.287664437,0,#DIV/0!,0,0,0.417286882,1,0.136366554,0,0.947003992,0.985765955,0.724496596,1,0,0,0.059592099,0.312029739,0.844947632,0.569444227,0.961238037,0.922476074,0,0,0,0,0,0,-0.398506117,113.4848218,0.398506117,66.51517822,0,0.924531411,0,0,0,10,6,0% +10/28/2018 15:00,85.14094502,110.7708555,29.11301095,164.234693,15.2015297,14.96261367,0,14.96261367,14.7431475,0.219466174,36.83203396,29.31486519,7.517168771,0.458382208,7.058786563,1.485989819,1.933316144,-8.908642456,8.908642456,0,0.522155875,0.114595552,3.685786874,1,0.050892361,0,0.111782622,0.961238037,1,0.456805041,0.732308445,14.17167416,0.329250177,0.115824807,0.008916073,0.724496596,0.448993192,0.99920431,0.960442347,0.083024087,3.547256703,14.25469824,3.87650688,0,27.82296248,-0.178493744,100.2820369,0.178493744,79.71796308,0,0.769878137,14.25469824,25.2967974,30.81094621,10,7,116% +10/28/2018 16:00,74.60358526,120.9329851,203.2331389,571.8086714,51.42034445,75.22866042,23.82677182,51.40188859,49.86983135,1.532057247,50.82674059,0,50.82674059,1.550513106,49.27622748,1.302078196,2.110678765,-2.288591062,2.288591062,0.921525811,0.253011614,1.442249112,46.38768914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.93677878,1.123341467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.044904572,44.58961124,48.98168335,45.71295271,23.82677182,0,0.041669133,87.61184308,-0.041669133,92.38815692,0,0,48.98168335,45.71295271,78.89989664,10,8,61% +10/28/2018 17:00,65.15593739,132.7830897,376.7718744,731.7099478,69.34388613,255.1148153,185.0216377,70.09317765,67.25291211,2.840265538,93.44367707,0,93.44367707,2.090974019,91.35270306,1.137185635,2.317502107,-0.987822804,0.987822804,0.699081338,0.184047406,2.142879909,68.92238397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64605721,1.514903558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552509199,66.25081707,66.19856641,67.76572062,185.0216377,0,0.252861996,75.35306479,-0.252861996,104.6469352,0.852263682,0,223.8857886,67.76572062,268.2370974,10,9,20% +10/28/2018 18:00,57.53063585,146.9870181,511.1718642,803.3585003,79.88999953,434.4090417,353.074591,81.33445072,77.48102129,3.853429432,126.3485149,0,126.3485149,2.408978249,123.9395366,1.004099016,2.565407424,-0.353866356,0.353866356,0.590668401,0.156287944,2.522616729,81.13602544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.47770479,1.745296541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827627233,77.99103382,76.30533203,79.73633036,353.074591,0,0.43949817,63.92813319,-0.43949817,116.0718668,0.936233884,0,406.8657275,79.73633036,459.051561,10,10,13% +10/28/2018 19:00,52.59333039,163.7704743,593.1761389,835.5277567,85.61950392,579.3838876,491.8745153,87.50937227,83.03775997,4.471612294,146.4041664,0,146.4041664,2.581743946,143.8224224,0.91792678,2.858333995,0.085989376,-0.085989376,0.51544864,0.144340776,2.617633361,84.19208696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81905338,1.8704647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.89646646,80.92863638,81.71551984,82.79910108,491.8745153,0,0.588699192,53.93524684,-0.588699192,126.0647532,0.96506698,0,556.4073731,82.79910108,610.5977288,10,11,10% +10/28/2018 20:00,51.15993244,182.2624695,616.0909848,843.4004293,87.1535378,671.3290348,582.1591436,89.16989115,84.52553707,4.644354082,152.0063929,0,152.0063929,2.628000727,149.3783921,0.892909266,3.181080195,0.470520238,-0.470520238,0.44968999,0.141462122,2.450073317,78.80277994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.24916132,1.903977581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.775069778,75.74822949,83.0242311,77.65220707,582.1591436,0,0.690252368,46.34991069,-0.690252368,133.6500893,0.977562726,0,652.1213104,77.65220707,702.9431269,10,12,8% +10/28/2018 21:00,53.52045144,200.4840179,578.1314843,830.1159522,84.59781907,698.3880497,611.9829677,86.40508202,82.04688269,4.358199332,142.7256081,0,142.7256081,2.550936378,140.1746717,0.934108095,3.499106211,0.878047281,-0.878047281,0.379998761,0.146329721,2.051506276,65.98349383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.86658445,1.848144722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.486309313,63.42584407,80.35289376,65.2739888,611.9829677,0,0.737225885,42.50436335,-0.737225885,137.4956366,0.982178182,0,681.4292122,65.2739888,724.1497324,10,13,6% +10/28/2018 22:00,59.21196159,216.650622,482.2598867,790.2441401,77.76273207,653.1109303,574.0575528,79.05337751,75.41789878,3.635478733,119.2743262,0,119.2743262,2.344833286,116.9294929,1.033443686,3.78126668,1.401951025,-1.401951025,0.290405944,0.161246527,1.471734575,47.33604298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.49455297,1.698823733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06626669,45.50120503,73.56081966,47.20002876,574.0575528,0,0.726430635,43.4120097,-0.726430635,136.5879903,0.981170304,0,636.8090431,47.20002876,667.7005179,10,14,5% +10/28/2018 23:00,67.36737034,230.2131611,336.5031445,703.5409125,65.76581019,529.7114134,463.3919821,66.3194312,63.78272836,2.536702842,83.5721651,0,83.5721651,1.983081827,81.58908327,1.175782421,4.017977642,2.25688417,-2.25688417,0.144203766,0.195438917,0.790080593,25.41170775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.3103846,1.436736033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.5724107,24.42670007,61.8827953,25.86343611,463.3919821,0,0.658656766,48.80248958,-0.658656766,131.1975104,0.974087928,0,513.2673309,25.86343611,530.1944326,10,15,3% +10/28/2018 0:00,77.15538394,241.5641093,156.822669,503.466852,44.89807267,315.9715829,271.2451572,44.72642564,43.54423012,1.182195521,39.37731428,0,39.37731428,1.353842547,38.02347173,1.346615485,4.216089062,4.338255387,-4.338255387,0,0.286298358,0.338460637,10.88605753,0.174734786,1,0.226550248,0,0.935245379,0.974007342,0.724496596,1,42.11747202,0.980854317,0.027607299,0.312029739,0.924694322,0.649190918,0.961238037,0.922476074,0.236019076,10.46409257,42.35349109,11.44494689,223.8491927,0,0.538754748,57.40109065,-0.538754748,122.5989094,0.957193393,0,256.6204595,11.44494689,264.1109483,10,16,3% +10/28/2018 1:00,87.80461763,251.4015869,5.220537816,38.86615133,3.731681446,18.33685494,14.67834284,3.658512101,3.619157482,0.039354619,1.378303799,0,1.378303799,0.112523964,1.265779835,1.532479676,4.387785435,26.07773652,-26.07773652,0,0.714807857,0.028130991,0.904789371,0.797135632,1,0.038328107,0,0.957681825,0.996443788,0.724496596,1,3.494460302,0.081523229,0.098851096,0.312029739,0.758183427,0.482680023,0.961238037,0.922476074,0.019756215,0.869717958,3.514216517,0.951241187,2.977712739,0,0.377663914,67.81094501,-0.377663914,112.189055,0.917607155,0,6.246587032,0.951241187,6.869155365,10,17,10% +10/28/2018 2:00,99.5791954,260.434356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737984826,4.545436997,-5.827450342,5.827450342,0.47329361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175299171,79.90393154,-0.175299171,100.0960685,0.764773323,0,0,0,0,10,18,0% +10/28/2018 3:00,111.3728836,269.367859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943823517,4.701356039,-2.410653321,2.410653321,0.942399687,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041983267,92.40617123,0.041983267,87.59382877,0,0,0,0,0,10,19,0% +10/28/2018 4:00,123.18137,279.0413959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149920483,4.870191107,-1.336971987,1.336971987,0.758789365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264024875,105.3090188,0.264024875,74.6909812,0,0.860623905,0,0,0,10,20,0% +10/28/2018 5:00,134.6300619,290.7263235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349737853,5.074131567,-0.767684522,0.767684522,0.661435475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47570113,118.4050104,0.47570113,61.59498964,0,0.944891988,0,0,0,10,21,0% +10/28/2018 6:00,145.0424944,306.7125359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.531469082,5.353143609,-0.383695543,0.383695543,0.595769492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662596233,131.4981782,0.662596233,48.50182184,0,0.974539263,0,0,0,10,22,0% +10/28/2018 7:00,152.933817,330.8327791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669198644,5.77412127,-0.08140771,0.08140771,0.544075228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811985168,144.2903437,0.811985168,35.70965634,0,0.988422521,0,0,0,10,23,0% +10/29/2018 8:00,155.5639107,4.281647579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715102439,0.074728848,0.186851164,-0.186851164,0.498200259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913700328,156.0218255,0.913700328,23.97817454,0,0.995277463,0,0,0,10,0,0% +10/29/2018 9:00,151.409151,36.01609223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642588203,0.628599393,0.451919782,-0.451919782,0.452870855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960823797,163.9092263,0.960823797,16.09077371,0,0.997961322,0,0,0,10,1,0% +10/29/2018 10:00,142.7130076,57.81222185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490811868,1.009013619,0.744275072,-0.744275072,0.402875156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95015823,161.8341842,0.95015823,18.16581581,0,0.997377186,0,0,0,10,2,0% +10/29/2018 11:00,131.9677092,72.48210326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303271032,1.265051351,1.110828878,-1.110828878,0.340190764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882444283,151.9386363,0.882444283,28.0613637,0,0.993339199,0,0,0,10,3,0% +10/29/2018 12:00,120.3993055,83.53722618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101364298,1.457999645,1.657151554,-1.657151554,0.246764084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762309862,139.6682556,0.762309862,40.33174443,0,0.984409874,0,0,0,10,4,0% +10/29/2018 13:00,108.5810577,92.95242284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895096962,1.622325826,2.739183314,-2.739183314,0.061725755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597954585,126.7235456,0.597954585,53.27645439,0,0.966381609,0,0,0,10,5,0% +10/29/2018 14:00,96.85524151,101.8557611,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690442862,1.777718394,7.065165195,-7.065165195,0,#DIV/0!,0,0,0.404074006,1,0.140605534,0,0.946492104,0.985254067,0.724496596,1,0,0,0.058009867,0.312029739,0.848702099,0.573198695,0.961238037,0.922476074,0,0,0,0,0,0,-0.40059094,113.6151262,0.40059094,66.3848738,0,0.925184396,0,0,0,10,6,0% +10/29/2018 15:00,85.33873006,111.0344089,26.79245574,154.0089409,14.27695061,14.04842072,0,14.04842072,13.84644787,0.201972849,34.76743384,27.84079002,6.926643824,0.430502737,6.496141087,1.489441819,1.937916019,-9.251491717,9.251491717,0,0.532872042,0.107625684,3.461611967,1,0.100923133,0,0.107672641,0.961238037,1,0.464882911,0.740386315,13.30973237,0.30676835,0.115824807,0.018116016,0.724496596,0.448993192,0.998363169,0.959601206,0.077974442,3.33530877,13.38770681,3.64207712,0,25.03101028,-0.180773855,100.4148379,0.180773855,79.58516207,0,0.773411331,13.38770681,23.0013441,28.4416265,10,7,112% +10/29/2018 16:00,74.82920297,121.1845998,199.1443084,566.6689406,50.84858388,72.91860958,22.1020642,50.81654538,49.31531147,1.501233916,49.8181156,0,49.8181156,1.533272415,48.28484318,1.306015969,2.115070269,-2.311712243,2.311712243,0.925479766,0.255335361,1.417926568,45.6053925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.40375318,1.110850645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.027282971,43.83763796,48.43103615,44.94848861,22.1020642,0,0.039003486,87.76469786,-0.039003486,92.23530214,0,0,48.43103615,44.94848861,77.84892298,10,8,61% +10/29/2018 17:00,65.41198771,133.0149168,372.1886663,728.9165276,68.8933887,251.7598871,182.1381729,69.62171422,66.81599884,2.80571538,92.31884106,0,92.31884106,2.077389859,90.2414512,1.141654556,2.321548252,-0.991642658,0.991642658,0.699734572,0.185103403,2.119198139,68.16069683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.22607956,1.505061881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535351837,65.51865441,65.7614314,67.02371629,182.1381729,0,0.249875213,75.52987192,-0.249875213,104.4701281,0.849900121,0,220.5606866,67.02371629,264.4263684,10,9,20% +10/29/2018 18:00,57.8203036,147.1776775,506.2841309,801.4089843,79.47263381,430.4789114,349.5860871,80.89282432,77.07624068,3.816583634,125.1508422,0,125.1508422,2.396393132,122.7544491,1.009154672,2.568735058,-0.35269343,0.35269343,0.590467818,0.156972397,2.498919839,80.373852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.08861428,1.736178667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810458917,77.25840371,75.8990732,78.99458237,349.5860871,0,0.436214335,64.13741091,-0.436214335,115.8625891,0.935377449,0,402.8940154,78.99458237,454.5943897,10,10,13% +10/29/2018 19:00,52.91192444,163.8847945,588.0874148,833.9011207,85.21003104,575.0383445,487.9644589,87.07388556,82.64063422,4.433251342,145.1579992,0,145.1579992,2.569396827,142.5886024,0.923487295,2.860329258,0.089621003,-0.089621003,0.514827595,0.144893478,2.594010238,83.43228609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.437321,1.861519255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879351587,80.19828689,81.31667258,82.05980615,487.9644589,0,0.585158656,54.18580089,-0.585158656,125.8141991,0.964553088,0,551.9842984,82.05980615,605.6908004,10,11,10% +10/29/2018 20:00,51.49106908,182.2698944,610.8974576,841.8318628,86.74211423,666.6598151,577.9280926,88.73172252,84.12651944,4.60520308,150.7347561,0,150.7347561,2.615594788,148.1191613,0.898688691,3.181209784,0.476278136,-0.476278136,0.448705331,0.141991284,2.42687004,78.05648279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.8656104,1.89498952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758259082,75.03086028,82.62386948,76.9258498,577.9280926,0,0.686512495,46.64532728,-0.686512495,133.3546727,0.977168114,0,647.3567736,76.9258498,697.7032037,10,12,8% +10/29/2018 21:00,53.84211029,200.3870232,572.9334514,828.3828398,84.17728576,693.4590613,607.5010169,85.95804438,81.63903001,4.319014365,141.4526042,0,141.4526042,2.538255747,138.9143485,0.939722101,3.497413333,0.886674477,-0.886674477,0.378523424,0.146923322,2.029214728,65.26652102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.47454094,1.838957648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.470159162,62.73666254,79.9447001,64.57562019,607.5010169,0,0.7333578,42.83136611,-0.7333578,137.1686339,0.981820457,0,676.4016259,64.57562019,718.6650778,10,13,6% +10/29/2018 22:00,59.50890847,216.4811577,477.1659702,788.0218541,77.32022294,647.9432204,569.3574089,78.58581158,74.98873294,3.597078639,118.0259039,0,118.0259039,2.331490003,115.6944139,1.038626387,3.778308971,1.415852337,-1.415852337,0.28802868,0.162040522,1.451050316,46.67076612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.08202244,1.68915657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051281015,44.86171561,73.13330345,46.55087218,569.3574089,0,0.722514745,43.73750536,-0.722514745,136.2624946,0.98079726,0,631.5574901,46.55087218,662.0241049,10,14,5% +10/29/2018 23:00,67.63541003,230.003847,331.6501415,700.096588,65.26415,524.2043584,458.4080445,65.79631394,63.29619508,2.500118856,82.38037144,0,82.38037144,1.967954922,80.41241652,1.180460596,4.014324423,2.283926258,-2.283926258,0.139579296,0.196786136,0.772282121,24.8392477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8427103,1.425776642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559515767,23.8764297,61.40222607,25.30220634,458.4080445,0,0.654778287,49.09715938,-0.654778287,130.9028406,0.973638274,0,507.7258433,25.30220634,524.2856314,10,15,3% +10/29/2018 0:00,77.39696597,241.3339411,152.5289494,496.4980171,44.19560455,309.6415661,265.6287944,44.01277166,42.86294401,1.149827649,38.31507025,0,38.31507025,1.332660542,36.98240971,1.350831887,4.212071869,4.421567705,-4.421567705,0,0.289752239,0.333165135,10.715736,0.18432529,1,0.222422199,0,0.935822779,0.974584742,0.724496596,1,41.46732364,0.965508026,0.029001023,0.312029739,0.921051098,0.645547694,0.961238037,0.922476074,0.231992859,10.30037304,41.69931649,11.26588106,216.6666898,0,0.535004744,57.65576687,-0.535004744,122.3442331,0.956542885,0,248.950297,11.26588106,256.3235908,10,16,3% +10/29/2018 1:00,88.01206716,251.1574827,4.181110862,32.12865051,3.0665997,15.0327386,12.02708921,3.005649384,2.974130404,0.03151898,1.106228031,0,1.106228031,0.092469295,1.013758736,1.536100353,4.383525014,28.80434327,-28.80434327,0,0.733441375,0.023117324,0.743532601,0.814666518,1,0.034703049,0,0.958033266,0.996795229,0.724496596,1,2.87068169,0.06699369,0.100412817,0.312029739,0.754987143,0.479483738,0.961238037,0.922476074,0.016272912,0.714711818,2.886954602,0.781705508,2.229022325,0,0.374341562,68.01637681,-0.374341562,111.9836232,0.916432144,0,4.929702309,0.781705508,5.44131293,10,17,10% +10/29/2018 2:00,99.78951684,260.1757221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741655628,4.540922984,-5.704541415,5.704541415,0.494312274,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171963359,80.09800742,-0.171963359,99.90199258,0.759240386,0,0,0,0,10,18,0% +10/29/2018 3:00,111.5779784,269.0895663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947403095,4.696498915,-2.389501814,2.389501814,0.938782566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045027524,92.58075968,0.045027524,87.41924032,0,0,0,0,0,10,19,0% +10/29/2018 4:00,123.3904689,278.735695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153569948,4.864855621,-1.330289469,1.330289469,0.757646587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.266754454,105.4712289,0.266754454,74.52877114,0,0.862561705,0,0,0,10,20,0% +10/29/2018 5:00,134.8556695,290.3871792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353675448,5.068212382,-0.765530439,0.765530439,0.661067105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478114542,118.562332,0.478114542,61.437668,0,0.945422549,0,0,0,10,21,0% +10/29/2018 6:00,145.3019883,306.355901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535998106,5.346919156,-0.38360182,0.38360182,0.595753464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664713733,131.6603675,0.664713733,48.33963252,0,0.974779649,0,0,0,10,22,0% +10/29/2018 7:00,153.2420014,330.5737876,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674577477,5.769601014,-0.082579227,0.082579227,0.544275569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813847363,144.4735507,0.813847363,35.52644931,0,0.988563418,0,0,0,10,23,0% +10/30/2018 8:00,155.8916216,4.366711991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.720822073,0.076213502,0.184626243,-0.184626243,0.498580743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915365381,156.2576694,0.915365381,23.74233061,0,0.995377004,0,0,0,10,0,0% +10/30/2018 9:00,151.6908301,36.37462491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.64750443,0.634856969,0.448521789,-0.448521789,0.453451946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962363416,164.2306301,0.962363416,15.76936988,0,0.998044575,0,0,0,10,1,0% +10/30/2018 10:00,142.9413215,58.20487758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.494796697,1.015866754,0.739215592,-0.739215592,0.403740378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951652719,162.110874,0.951652719,17.889126,0,0.997459825,0,0,0,10,2,0% +10/30/2018 11:00,132.1640192,72.83792458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306697287,1.271261604,1.102884835,-1.102884835,0.341549275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883977004,152.1258927,0.883977004,27.87410727,0,0.993437443,0,0,0,10,3,0% +10/30/2018 12:00,120.5814972,83.85507846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104544144,1.463547214,1.642920559,-1.642920559,0.249197727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763961474,139.8146884,0.763961474,40.1853116,0,0.984551673,0,0,0,10,4,0% +10/30/2018 13:00,108.7615082,93.24255824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898246417,1.627389644,2.705037512,-2.705037512,0.067565031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599797475,126.8553942,0.599797475,53.14460579,0,0.966638529,0,0,0,10,5,0% +10/30/2018 14:00,97.04325739,102.1273177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693724358,1.78245795,6.854404053,-6.854404053,0,#DIV/0!,0,0,0.39099344,1,0.144869555,0,0.945973068,0.984735032,0.724496596,1,0,0,0.056426841,0.312029739,0.85247835,0.576974946,0.961238037,0.922476074,0,0,0,0,0,0,-0.402684218,113.7460895,0.402684218,66.25391051,0,0.925833227,0,0,0,10,6,0% +10/30/2018 15:00,85.53641199,111.2930067,24.5463532,143.8169745,13.35372095,13.13609777,0,13.13609777,12.95105699,0.185040779,32.68185504,26.32764357,6.354211478,0.402663957,5.951547521,1.49289202,1.942429402,-9.624937376,9.624937376,0,0.544020566,0.100665989,3.237764248,1,0.149742952,0,0.103525343,0.961238037,1,0.47317197,0.748675374,12.4490486,0.28485281,0.115824807,0.027538589,0.724496596,0.448993192,0.997480565,0.958718602,0.072932166,3.122897868,12.52198077,3.407750679,0,22.3852645,-0.183063534,100.5482531,0.183063534,79.45174691,0,0.776870781,12.52198077,20.79820859,26.13399233,10,7,109% +10/30/2018 16:00,75.05477387,121.4307183,195.0605954,561.4278645,50.27086598,70.61632023,20.39085717,50.22546306,48.75501389,1.470449162,48.81055177,0,48.81055177,1.515852089,47.29469968,1.309952923,2.119365847,-2.335715631,2.335715631,0.929584587,0.257719228,1.393591715,44.82269998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.86517384,1.098229678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.009652453,43.08528414,47.8748263,44.18351382,20.39085717,0,0.036319639,87.91858021,-0.036319639,92.08141979,0,0,47.8748263,44.18351382,76.79205242,10,8,60% +10/30/2018 17:00,65.66744901,133.2406238,367.6094194,726.0808378,68.44082129,248.3958993,179.2476262,69.14827309,66.377078,2.771195082,91.19490305,0,91.19490305,2.063743281,89.13115976,1.146113197,2.325487584,-0.995672579,0.995672579,0.700423729,0.186178095,2.095572922,67.40082864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.80417215,1.495174982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518235448,64.78824021,65.3224076,66.28341519,179.2476262,0,0.246870069,75.70762405,-0.246870069,104.2923759,0.847464309,0,217.2283733,66.28341519,260.6095428,10,9,20% +10/30/2018 18:00,58.10848441,147.3618583,501.4076323,799.4374803,79.05472864,426.5398187,346.0890592,80.45075942,76.67093689,3.779822528,123.9558773,0,123.9558773,2.383791749,121.5720856,1.014184376,2.57194962,-0.351621477,0.351621477,0.590284504,0.157665587,2.475339769,79.61543591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.69902086,1.727049008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.793375237,76.52938532,75.4923961,78.25643432,346.0890592,0,0.432915729,64.34725757,-0.432915729,115.6527424,0.934504081,0,398.9140343,78.25643432,450.1313054,10,10,13% +10/30/2018 19:00,53.22788818,163.9932125,583.0208795,832.2614887,84.80103936,570.6908593,484.0518265,86.6390328,82.24397514,4.395057659,143.9172264,0,143.9172264,2.557064219,141.3601622,0.929001903,2.862221508,0.093181956,-0.093181956,0.514218637,0.145451119,2.570564093,82.67817748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.05603721,1.852584322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862364935,79.47340901,80.91840214,81.32599333,484.0518265,0,0.581610267,54.43611989,-0.581610267,125.5638801,0.964031779,0,547.5597455,81.32599333,600.7859817,10,11,10% +10/30/2018 20:00,51.81854114,182.273268,605.7393003,840.2553009,86.33207747,662.0000691,573.7049036,88.29516551,83.7288468,4.566318711,149.471737,0,149.471737,2.603230667,146.8685064,0.904404156,3.181268665,0.481975017,-0.481975017,0.447731107,0.142523487,2.403903763,77.31780837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48335233,1.886031757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.741620093,74.32081833,82.22497242,76.20685009,573.7049036,0,0.682774513,46.93916445,-0.682774513,133.0608355,0.976769381,0,642.6023561,76.20685009,692.4782154,10,12,8% +10/30/2018 21:00,54.15950817,200.2882163,567.7851119,826.6450847,83.75902,688.5540631,603.0404826,85.51358052,81.23337651,4.280204007,140.1917175,0,140.1917175,2.525643491,137.666074,0.945261739,3.495688827,0.895244421,-0.895244421,0.377057877,0.147518873,2.007217066,64.55900059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.08461137,1.829820112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.454221931,62.05656699,79.5388333,63.8863871,603.0404826,0,0.7295035,43.15521315,-0.7295035,136.8447869,0.981460233,0,671.3990858,63.8863871,713.2114485,10,13,6% +10/30/2018 22:00,59.80137676,216.3114191,472.1362243,785.7972897,76.88083284,642.8160166,564.6942622,78.12175436,74.56259207,3.55916229,116.7931346,0,116.7931346,2.31824077,114.4748938,1.043730922,3.775346474,1.429709291,-1.429709291,0.285659001,0.162836124,1.430710352,46.01656295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.67239963,1.679557546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03654478,44.23287063,72.70894441,45.91242818,564.6942622,0,0.718625872,44.05885392,-0.718625872,135.9411461,0.980422767,0,626.3480552,45.91242818,656.3968212,10,14,5% +10/30/2018 23:00,67.89889207,229.7949848,326.8753401,696.6498193,64.76629385,518.7550607,453.4775852,65.27747552,62.81335113,2.464124386,81.20765336,0,81.20765336,1.952942722,79.25471064,1.185059225,4.01067909,2.311026963,-2.311026963,0.134944803,0.198137595,0.754871593,24.27926528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37858233,1.414900354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.546901899,23.33815329,60.92548423,24.75305365,453.4775852,0,0.650940505,49.38745049,-0.650940505,130.6125495,0.973188065,0,502.2444578,24.75305365,518.4448363,10,15,3% +10/30/2018 0:00,77.63389276,241.1044792,148.3306218,489.5176936,43.49671248,303.3883923,260.0850873,43.303305,42.18512612,1.118178882,37.27606294,0,37.27606294,1.311586367,35.96447657,1.35496704,4.208067004,4.506262592,-4.506262592,0,0.293241624,0.327896592,10.54628153,0.193849133,1,0.218374626,0,0.936385335,0.975147298,0.724496596,1,40.81973387,0.950239858,0.030373557,0.312029739,0.917478206,0.641974802,0.961238037,0.922476074,0.228013026,10.13748695,41.04774689,11.08772681,209.6678186,0,0.531308859,57.90606811,-0.531308859,122.0939319,0.955892779,0,241.4677008,11.08772681,248.7243963,10,16,3% +10/30/2018 1:00,88.21366509,250.9141101,3.294725392,26.21028527,2.477688549,12.15452632,9.726712191,2.427814129,2.402977098,0.024837032,0.873555768,0,0.873555768,0.074711451,0.798844316,1.539618901,4.379277362,32.06001522,-32.06001522,0,0.75201671,0.018677863,0.600744274,0.832001435,1,0.031181391,0,0.958371675,0.997133638,0.724496596,1,2.318593264,0.054128192,0.101938417,0.312029739,0.751883707,0.476380302,0.961238037,0.922476074,0.013179091,0.577458247,2.331772355,0.631586439,1.634073686,0,0.371102874,68.21634954,-0.371102874,111.7836505,0.915266471,0,3.82738521,0.631586439,4.240745903,10,17,11% +10/30/2018 2:00,99.99488443,259.9177017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745239969,4.536419679,-5.589449275,5.589449275,0.513994189,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16870258,80.28760712,-0.16870258,99.71239288,0.753620419,0,0,0,0,10,18,0% +10/30/2018 3:00,111.7778682,268.8115946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950891831,4.691647393,-2.369282678,2.369282678,0.93532489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047990116,92.75068763,0.047990116,87.24931237,0,0,0,0,0,10,19,0% +10/30/2018 4:00,123.5940549,278.4296792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157123193,4.859514637,-1.323904548,1.323904548,0.756554701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269399061,105.6285106,0.269399061,74.3714894,0,0.864401729,0,0,0,10,20,0% +10/30/2018 5:00,135.0754487,290.0462974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.357511319,5.062262873,-0.763511314,0.763511314,0.660721814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480443226,118.7143538,0.480443226,61.28564622,0,0.945929431,0,0,0,10,21,0% +10/30/2018 6:00,145.555565,305.9944375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540423854,5.340610427,-0.383579907,0.383579907,0.595749717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666750283,131.8167428,0.666750283,48.18325716,0,0.975009406,0,0,0,10,22,0% +10/30/2018 7:00,153.5450825,330.3057757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67986724,5.764923324,-0.083790797,0.083790797,0.54448276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81563566,144.650263,0.81563566,35.34973696,0,0.988698119,0,0,0,10,23,0% +10/31/2018 8:00,156.2158812,4.445325201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726481471,0.077585561,0.182381448,-0.182381448,0.498964625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916966371,156.4865395,0.916966371,23.51346045,0,0.995472373,0,0,0,10,0,0% +10/31/2018 9:00,151.9699846,36.72992173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652376596,0.641058068,0.445121036,-0.445121036,0.454033509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963850914,164.5473372,0.963850914,15.45266276,0,0.998124757,0,0,0,10,1,0% +10/31/2018 10:00,143.167994,58.59356022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498752879,1.022650546,0.734174291,-0.734174291,0.404602492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953108314,162.3844015,0.953108314,17.61559853,0,0.997540065,0,0,0,10,2,0% +10/31/2018 11:00,132.3595001,73.18935061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310109072,1.277395146,1.094996909,-1.094996909,0.34289819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885484427,152.3111941,0.885484427,27.68880593,0,0.993533733,0,0,0,10,3,0% +10/31/2018 12:00,120.7634355,84.16846408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107719565,1.469016825,1.628848464,-1.628848464,0.251604197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765600819,139.9604732,0.765600819,40.03952681,0,0.984691815,0,0,0,10,4,0% +10/31/2018 13:00,108.942053,93.52816908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901397519,1.632374494,2.671540365,-2.671540365,0.07329338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601639664,126.9874204,0.601639664,53.01257956,0,0.966893777,0,0,0,10,5,0% +10/31/2018 14:00,97.2315149,102.3941702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697010072,1.787115405,6.654536932,-6.654536932,0,#DIV/0!,0,0,0.378047237,1,0.149157337,0,0.945446979,0.984208943,0.724496596,1,0,0,0.054843523,0.312029739,0.856275196,0.580771792,0.961238037,0.922476074,0,0,0,0,0,0,-0.404786099,113.8777237,0.404786099,66.12227633,0,0.926477971,0,0,0,10,6,0% +10/31/2018 15:00,85.73390818,111.5465498,22.37936316,133.6906039,12.4343103,12.22807506,0,12.22807506,12.05936996,0.168705093,30.58225053,24.7811745,5.801076031,0.374940333,5.426135697,1.496338978,1.946854563,-10.0330402,10.0330402,0,0.555615019,0.093735083,3.014842491,1,0.197370337,0,0.099342588,0.961238037,1,0.481672001,0.757175405,11.59192511,0.263507768,0.115824807,0.037185067,0.724496596,0.448993192,0.996554942,0.957792979,0.067910749,2.910659907,11.65983586,3.174167675,0,19.89010573,-0.185362125,100.6822458,0.185362125,79.31775417,0,0.780257733,11.65983586,18.69357647,23.89440779,10,7,105% +10/31/2018 16:00,75.28022201,121.6712582,190.9838105,556.0847735,49.6872175,68.32322671,18.69454551,49.6286812,48.18896457,1.439716636,47.80448893,0,47.80448893,1.498252934,46.306236,1.313887736,2.12356406,-2.360637275,2.360637275,0.933846439,0.260164552,1.369252945,44.0398815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.3210657,1.08547915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.992019098,42.33280923,47.31308479,43.41828838,18.69454551,0,0.033618158,88.07345845,-0.033618158,91.92654155,0,0,47.31308479,43.41828838,75.72948618,10,8,60% +10/31/2018 17:00,65.92222474,133.4601556,363.0361206,723.2032489,67.9863018,245.0242989,176.3513154,68.67298358,65.93626396,2.736719624,90.07234837,0,90.07234837,2.050037842,88.02231053,1.150559872,2.329319136,-0.999919146,0.999919146,0.701149935,0.187271453,2.072014271,66.64310146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.38044492,1.485245438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.501167286,64.05988402,64.88161221,65.54512946,176.3513154,0,0.243847515,75.88626429,-0.243847515,104.1137357,0.844953826,0,213.8903309,65.54512946,256.7883072,10,9,20% +10/31/2018 18:00,58.39506628,147.5395439,496.544685,797.4446655,78.63643498,422.5935961,342.5851762,80.00841991,76.26525633,3.743163577,122.7641863,0,122.7641863,2.371178652,120.3930077,1.019186174,2.575050818,-0.350654563,0.350654563,0.590119152,0.158367288,2.451887694,78.86113654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.30906528,1.717910862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776384288,75.80432407,75.08544956,77.52223493,342.5851762,0,0.429603697,64.55758763,-0.429603697,115.4424124,0.933613664,0,394.9276513,77.52223493,445.6644036,10,10,13% +10/31/2018 19:00,53.54110524,164.0957437,577.9791283,830.609691,84.39270069,566.3436907,480.1386905,86.2050002,81.84794939,4.357050809,142.6824826,0,142.6824826,2.544751302,140.1377313,0.934468572,2.864011016,0.096668078,-0.096668078,0.513622475,0.146013405,2.547306679,81.93013909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.67536219,1.843663655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.845515017,78.75436606,80.52087721,80.59802972,480.1386905,0,0.578055729,54.68609114,-0.578055729,125.3139089,0.963503149,0,543.1360177,80.59802972,595.8858162,10,11,10% +10/31/2018 20:00,52.14223518,182.2726043,600.6192951,838.6717529,85.92361769,657.3524498,569.4920243,87.86042554,83.33270359,4.527721949,148.2180159,0,148.2180159,2.590914098,145.6271018,0.910053683,3.181257081,0.487605678,-0.487605678,0.446768208,0.143058371,2.381186232,76.5871345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1025644,1.877108444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725161319,73.61846681,81.82772572,75.49557526,569.4920243,0,0.679040426,47.23129603,-0.679040426,132.768704,0.976366681,0,637.8607636,75.49557526,687.2711076,10,12,8% +10/31/2018 21:00,54.47253229,200.1875933,562.6893219,824.9040041,83.34323293,683.6760562,598.6041395,85.07191674,80.83012695,4.241789789,138.9436467,0,138.9436467,2.513105977,136.4305407,0.95072504,3.493932625,0.903749653,-0.903749653,0.375603397,0.148115896,1.985524362,63.86128867,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69699255,1.820736725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.438505641,61.38589975,79.13549819,63.20663647,598.6041395,0,0.725665213,43.47578616,-0.725665213,136.5242138,0.981097703,0,666.4246445,63.20663647,707.7921239,10,13,6% +10/31/2018 22:00,60.08925226,216.1414024,467.173448,783.5723849,76.44480684,637.7326528,560.0711881,77.66146465,74.13971386,3.521750786,115.5767042,0,115.5767042,2.305092978,113.2716112,1.048755297,3.772379121,1.443509449,-1.443509449,0.283299035,0.163632602,1.41072419,45.3737393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26591301,1.670032015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022064874,43.61496409,72.28797788,45.2849961,560.0711881,0,0.714766369,44.3759445,-0.714766369,135.6240555,0.980047072,0,621.1841062,45.2849961,650.8222304,10,14,5% +10/31/2018 23:00,68.15770369,229.5865876,322.1813144,693.2040359,64.27256813,513.3673286,448.6040768,64.76325189,62.33451306,2.428738838,80.05464484,0,80.05464484,1.93805507,78.11658977,1.18957634,4.007041873,2.338160785,-2.338160785,0.130304646,0.199491917,0.737855327,23.73196369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.91830496,1.4041143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534573673,22.81206618,60.45287863,24.21618049,448.6040768,0,0.647145795,49.6732489,-0.647145795,130.3267511,0.972737658,0,496.8269574,24.21618049,512.6759632,10,15,3% +10/31/2018 0:00,77.86605653,240.875758,144.229711,482.5344629,42.80203351,297.2173189,254.6186601,42.59865876,41.51139428,1.087264485,36.26080251,0,36.26080251,1.290639233,34.97016327,1.359019062,4.204075065,4.592286015,-4.592286015,0,0.296762943,0.322659808,10.37784857,0.203297374,1,0.214409346,0,0.936933001,0.975694964,0.724496596,1,40.17534003,0.935063731,0.031724005,0.312029739,0.913977283,0.638473879,0.961238037,0.922476074,0.224081751,9.975582785,40.39942178,10.91064652,202.8553551,0,0.527669378,58.15188105,-0.527669378,121.8481189,0.955243696,0,234.1757209,10.91064652,241.3165208,10,16,3% +10/31/2018 1:00,88.40926053,250.6715246,2.550077855,21.09019796,1.964612384,9.684750627,7.760154991,1.924595636,1.905372072,0.019223564,0.677536212,0,0.677536212,0.059240312,0.6182959,1.543032685,4.375043445,36.00660195,-36.00660195,0,0.770412707,0.014810078,0.476343018,0.849109851,1,0.027765547,0,0.95869708,0.997459043,0.724496596,1,1.837818779,0.042919404,0.103426208,0.312029739,0.748875206,0.473371802,0.961238037,0.922476074,0.010475234,0.457879028,1.848294013,0.500798432,1.170930941,0,0.36795079,68.41070744,-0.36795079,111.5892926,0.914112263,0,2.918656346,0.500798432,3.246418904,10,17,11% +10/31/2018 2:00,100.1952011,259.6603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748736153,4.531928424,-5.481590186,5.481590186,0.53243918,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.165518687,80.47263264,-0.165518687,99.52736736,0.747919305,0,0,0,0,10,18,0% +10/31/2018 3:00,111.9724595,268.5340453,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954288091,4.686803245,-2.349967843,2.349967843,0.932021859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.050869522,92.91586741,0.050869522,87.08413259,0,0,0,0,0,10,19,0% +10/31/2018 4:00,123.7920332,278.1234798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160578567,4.85417045,-1.317813287,1.317813287,0.755513034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271957553,105.7807859,0.271957553,74.2192141,0,0.866147779,0,0,0,10,20,0% +10/31/2018 5:00,135.2892941,289.7038392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361243625,5.056285849,-0.761626546,0.761626546,0.6603995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482686437,118.8610049,0.482686437,61.13899508,0,0.946413083,0,0,0,10,21,0% +10/31/2018 6:00,145.8030928,305.6282806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544744028,5.334219783,-0.383629807,0.383629807,0.59575825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668705526,131.9672351,0.668705526,48.03276489,0,0.975228672,0,0,0,10,22,0% +10/31/2018 7:00,153.8429072,330.0286154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685065262,5.760085965,-0.085042458,0.085042458,0.544696806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817350048,144.8203965,0.817350048,35.1796035,0,0.9888267,0,0,0,10,23,0% +11/1/2018 8:00,156.5365903,4.517108935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7320789,0.078838424,0.180116873,-0.180116873,0.49935189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918503578,156.7082864,0.918503578,23.29171356,0,0.995563631,0,0,0,11,0,0% +11/1/2018 9:00,152.2465802,37.08165348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6572041,0.647196945,0.441717824,-0.441717824,0.454615493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965286778,164.8591771,0.965286778,15.14082291,0,0.998201922,0,0,0,11,1,0% +11/1/2018 10:00,143.393022,58.97801556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502680358,1.029360558,0.72915175,-0.72915175,0.405461397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954525611,162.6547431,0.954525611,17.3452569,0,0.997617959,0,0,0,11,2,0% +11/1/2018 11:00,132.5541523,73.5361941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313506395,1.283448706,1.087166009,-1.087166009,0.344237353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886967157,152.494581,0.886967157,27.505419,0,0.993628127,0,0,0,11,3,0% +11/1/2018 12:00,120.9451117,84.47723574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110890413,1.474405907,1.614936022,-1.614936022,0.253983365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767228407,140.1056505,0.767228407,39.89434954,0,0.984830359,0,0,0,11,4,0% +11/1/2018 13:00,109.1226695,93.80913104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904549871,1.637278205,2.638683204,-2.638683204,0.078912286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60348147,127.1196486,0.60348147,52.88035139,0,0.967147415,0,0,0,11,5,0% +11/1/2018 14:00,97.41997386,102.6562095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700299301,1.791688853,6.464805397,-6.464805397,0,#DIV/0!,0,0,0.365237812,1,0.153467403,0,0.944913961,0.983675924,0.724496596,1,0,0,0.053260476,0.312029739,0.860091277,0.584587873,0.961238037,0.922476074,0,0,0,0,0,0,-0.406896621,114.0100339,0.406896621,65.98996611,0,0.927118665,0,0,0,11,6,0% +11/1/2018 15:00,85.9311265,111.7949423,20.29621443,123.6649083,11.52150108,11.32708675,0,11.32708675,11.17408532,0.153001438,28.47651387,23.20804593,5.268467938,0.347415768,4.921052171,1.499781087,1.95118983,-10.48058323,10.48058323,0,0.567667489,0.086853942,2.793521329,1,0.243821443,0,0.095126559,0.961238037,1,0.490381883,0.765885288,10.74095583,0.242743444,0.115824807,0.047055788,0.724496596,0.448993192,0.995584802,0.956822839,0.062925385,2.699306573,10.80388122,2.942050018,0,17.54942669,-0.187668808,100.8167697,0.187668808,79.18323035,0,0.7835732,10.80388122,16.69331045,21.72931904,11,7,101% +11/1/2018 16:00,75.50546519,121.9061414,186.9158898,550.6392409,49.0976851,66.0408681,17.01460843,49.02625968,47.61720875,1.409050931,46.80039787,0,46.80039787,1.480476357,45.31992151,1.317818971,2.127663546,-2.38651359,2.38651359,0.93827155,0.262672613,1.344919278,43.25722711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77147225,1.072600081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974389439,41.58049207,46.74586169,42.65309215,17.01460843,0,0.030899738,88.22929356,-0.030899738,91.77070644,0,0,46.74586169,42.65309215,74.66145744,11,8,60% +11/1/2018 17:00,66.17621288,133.6734624,358.4708666,720.28426,67.52996082,241.6466563,173.4506682,68.19598815,65.49368334,2.702304811,88.95168932,0,88.95168932,2.036277478,86.91541184,1.154992801,2.333042042,-1.004388645,1.004388645,0.701914264,0.1883834,2.04853261,65.88785052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.9550196,1.475276101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484154902,63.33390809,64.4391745,64.80918419,173.4506682,0,0.240808633,76.06572855,-0.240808633,103.9342715,0.842366248,0,210.5481631,64.80918419,252.964478,11,9,20% +11/1/2018 18:00,58.67993308,147.710724,491.6976937,795.4313048,78.21791292,418.6421957,339.0762166,79.56597916,75.85935425,3.706624909,121.5763572,0,121.5763572,2.358558668,119.2177985,1.024158037,2.578038474,-0.349796614,0.349796614,0.589972434,0.159077242,2.428575036,78.11132132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91889675,1.708767726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759494346,75.08357316,74.6783911,76.79234089,339.0762166,0,0.426279698,64.76830895,-0.426279698,115.2316911,0.932706119,0,390.9368533,76.79234089,441.1959045,11,10,13% +11/1/2018 19:00,53.85145659,164.1924104,572.9648163,828.946625,83.98519339,561.9991988,476.2272181,85.77198075,81.45272994,4.319250807,141.4544167,0,141.4544167,2.532463453,138.9219533,0.939885224,2.865698169,0.10007526,-0.10007526,0.513039812,0.146580019,2.524249842,81.18855198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.29546222,1.834761151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828810418,78.04152432,80.12427264,79.87628547,476.2272181,0,0.574496842,54.93559667,-0.574496842,125.0644033,0.96296732,0,538.7155204,79.87628547,590.9929517,11,11,10% +11/1/2018 20:00,52.46203667,182.2679251,595.5402509,837.0822868,85.51692953,652.7196848,565.2919722,87.42771255,82.93827859,4.489433969,146.9742797,0,146.9742797,2.578650949,144.3956288,0.915635272,3.181175413,0.493164893,-0.493164893,0.445817526,0.143595549,2.358729135,75.86483707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72342809,1.868223835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708891229,72.92416705,81.43231932,74.79239088,565.2919722,0,0.675312309,47.52159248,-0.675312309,132.4784075,0.975960183,0,633.1347758,74.79239088,682.0848998,11,12,8% +11/1/2018 21:00,54.78107044,200.085159,557.6489291,823.1609744,82.93013845,678.828083,594.1948011,84.63328198,80.4294888,4.20379318,137.7090888,0,137.7090888,2.500649654,135.2084391,0.956110047,3.49214481,0.91218259,-0.91218259,0.37416128,0.148713885,1.96414748,63.17373467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.31188392,1.811712162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423018163,60.72499669,78.73490208,62.53670886,594.1948011,0,0.721845203,43.79296527,-0.721845203,136.2070347,0.980733072,0,661.4813945,62.53670886,702.4104197,11,13,6% +11/1/2018 22:00,60.372423,215.9711122,462.2803967,781.3491506,76.01239195,632.696471,555.4912682,77.20520277,73.72033787,3.484864898,114.3772883,0,114.3772883,2.292054073,112.0852343,1.053697559,3.769406997,1.457240016,-1.457240016,0.28095097,0.164429192,1.391100988,44.74258965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.86279285,1.660585373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.00784793,43.00827904,71.87064078,44.66886442,555.4912682,0,0.710938596,44.68866651,-0.710938596,135.3113335,0.979670438,0,616.0690149,44.66886442,645.3038933,11,14,5% +11/1/2018 23:00,68.41173558,229.3786763,317.5705582,689.7627933,63.78330292,508.044952,443.79097,64.25398201,61.860001,2.39398101,78.92196045,0,78.92196045,1.923301918,76.99865853,1.194010033,4.003413135,2.365300957,-2.365300957,0.125663403,0.200847658,0.721239115,23.19752917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.46218592,1.393425693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.522535283,22.2983474,59.9847212,23.6917731,443.79097,0,0.643396504,49.95444293,-0.643396504,130.0455571,0.972287424,0,491.4771,23.6917731,506.9828917,11,15,3% +11/1/2018 0:00,78.09335407,240.6478189,140.2280955,475.5572553,42.11222368,291.1335851,249.2341017,41.89948338,40.84238476,1.057098616,35.26976417,0,35.26976417,1.269838922,33.99992525,1.362986152,4.200096778,4.679575411,-4.679575411,0,0.300312313,0.31745973,10.21059619,0.212660939,1,0.210528103,0,0.937465741,0.976227704,0.724496596,1,39.53479738,0.919993976,0.033051482,0.312029739,0.910549909,0.635046505,0.961238037,0.922476074,0.220201281,9.814813437,39.75499866,10.73480741,196.2317436,0,0.524088528,58.39309638,-0.524088528,121.6069036,0.954596271,0,227.0770893,10.73480741,234.102806,11,16,3% +11/1/2018 1:00,88.5987177,250.4297883,1.934598789,16.7316572,1.525433611,7.599200948,6.105180966,1.494019982,1.479436159,0.014583823,0.515063326,0,0.515063326,0.045997452,0.469065874,1.546339337,4.370824351,40.87880345,-40.87880345,0,0.788501275,0.011499363,0.36985904,0.865961327,1,0.024457678,0,0.959009534,0.997771497,0.724496596,1,1.426479943,0.033324997,0.104874593,0.312029739,0.745963489,0.470460084,0.961238037,0.922476074,0.008153455,0.355522577,1.434633398,0.388847574,0.818330356,0,0.364888002,68.59930968,-0.364888002,111.4006903,0.912971652,0,2.181745815,0.388847574,2.436238775,11,17,12% +11/1/2018 2:00,100.3903754,259.4038162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752142588,4.527450686,-5.380439891,5.380439891,0.549736899,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162413432,80.65299172,-0.162413432,99.34700828,0.742143689,0,0,0,0,11,18,0% +11/1/2018 3:00,112.1616652,268.2570283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957590353,4.681968386,-2.331530452,2.331530452,0.928868879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.053664338,93.0762178,0.053664338,86.9237822,0,0,0,0,0,11,19,0% +11/1/2018 4:00,123.9843159,277.817239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163934534,4.848825539,-1.312011692,1.312011692,0.754520903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27442891,105.9279838,0.27442891,74.07201619,0,0.867803452,0,0,0,11,20,0% +11/1/2018 5:00,135.497107,289.359981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364870645,5.050284392,-0.75987539,0.75987539,0.660100035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484843547,119.0022226,0.484843547,60.99777745,0,0.94687395,0,0,0,11,21,0% +11/1/2018 6:00,146.0444453,305.2575912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548956426,5.327750033,-0.383751378,0.383751378,0.59577904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670579207,132.111784,0.670579207,47.88821596,0,0.975437593,0,0,0,11,22,0% +11/1/2018 7:00,154.1353233,329.7422066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690168885,5.755087188,-0.086334105,0.086334105,0.544917691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818990606,144.9838768,0.818990606,35.01612316,0,0.988949239,0,0,0,11,23,0% +11/2/2018 8:00,156.8536469,4.581688468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737612582,0.079965549,0.177832757,-0.177832757,0.499742497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91997734,156.9227694,0.91997734,23.07723062,0,0.995650835,0,0,0,11,0,0% +11/2/2018 9:00,152.5205793,37.42949039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661986286,0.653267845,0.438312616,-0.438312616,0.455197818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966671523,165.1659752,0.966671523,14.83402478,0,0.998276122,0,0,0,11,1,0% +11/2/2018 10:00,143.6163976,59.35799122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506578998,1.035992384,0.724148744,-0.724148744,0.406316961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955905205,162.9218746,0.955905205,17.07812543,0,0.997693558,0,0,0,11,2,0% +11/2/2018 11:00,132.7479707,73.87827025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316889164,1.289419061,1.079393293,-1.079393293,0.345566565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888425765,152.676091,0.888425765,27.32390899,0,0.993720678,0,0,0,11,3,0% +11/2/2018 12:00,121.1265112,84.78124867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114056432,1.479711933,1.601184379,-1.601184379,0.256335034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768844681,140.2502553,0.768844681,39.74974473,0,0.984967359,0,0,0,11,4,0% +11/2/2018 13:00,109.3033282,94.08532263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90770296,1.642098658,2.60645847,-2.60645847,0.08442304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605323114,127.2520965,0.605323114,52.74790347,0,0.967399487,0,0,0,11,5,0% +11/2/2018 14:00,97.60858731,102.9133296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703591227,1.796176446,6.284525874,-6.284525874,0,#DIV/0!,0,0,0.352567907,1,0.157798079,0,0.944374167,0.98313613,0.724496596,1,0,0,0.051678324,0.312029739,0.863925058,0.588421654,0.961238037,0.922476074,0,0,0,0,0,0,-0.409015711,114.1430183,0.409015711,65.85698171,0,0.927755307,0,0,0,11,6,0% +11/2/2018 15:00,86.12796505,112.0380927,18.30164493,113.7781563,10.61839597,10.43617768,0,10.43617768,10.29821215,0.13796553,26.37349756,21.61586805,4.757629518,0.320183816,4.437445702,1.503216568,1.955433605,-10.97323848,10.97323848,0,0.580188066,0.080045954,2.574553038,1,0.289110301,0,0.090879775,0.961238037,1,0.499299512,0.774802916,9.899033232,0.222576434,0.115824807,0.05715005,0.724496596,0.448993192,0.99456873,0.955806766,0.057993021,2.489626899,9.957026253,2.712203333,0,15.36649792,-0.189982583,100.9517678,0.189982583,79.04823223,0,0.78681798,9.957026253,14.80284019,19.6451891,11,7,97% +11/2/2018 16:00,75.73041507,122.1352955,182.8588893,545.0911029,48.50233637,63.77088239,15.35260287,48.41827952,47.03981197,1.378467548,45.79877918,0,45.79877918,1.462524396,44.33625478,1.321745087,2.131663039,-2.413381264,2.413381264,0.942866192,0.265244619,1.320600345,42.47504663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.21645652,1.059593946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956770454,40.82863043,46.17322697,41.88822438,15.35260287,0,0.028165205,88.38603917,-0.028165205,91.61396083,0,0,46.17322697,41.88822438,73.58823206,11,8,59% +11/2/2018 17:00,66.42930626,133.8805011,353.9158575,717.3245044,67.07194161,238.2646613,170.547219,67.71744233,65.0494751,2.667967228,87.83346365,0,87.83346365,2.022466509,85.81099714,1.159410114,2.336655548,-1.009087021,1.009087021,0.702717733,0.189513807,2.02513874,65.13542325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.52802974,1.465270101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467206123,62.61064638,63.99523587,64.07591648,170.547219,0,0.237754626,76.24594565,-0.237754626,103.7540543,0.839699149,0,207.2035906,64.07591648,249.1399964,11,9,20% +11/2/2018 18:00,58.96296489,147.8753956,486.8691439,793.3982514,77.79933133,414.6876837,335.564064,79.1236197,75.45339444,3.670225261,120.3929976,0,120.3929976,2.345936888,118.0470607,1.029097874,2.580912536,-0.349051389,0.349051389,0.589844993,0.159795157,2.405413433,77.36636454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52867274,1.69962329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742713844,74.36749237,74.27138659,76.06711566,335.564064,0,0.422945303,64.97932305,-0.422945303,115.0206769,0.931781404,0,386.9437413,76.06711566,436.7281471,11,10,13% +11/2/2018 19:00,54.15882106,164.2832424,567.9806495,827.2732553,83.57870191,557.6598384,472.3196646,85.34017373,81.05849568,4.281678052,140.2336906,0,140.2336906,2.520206235,137.7134843,0.945249746,2.867283486,0.103399462,-0.103399462,0.51247134,0.147150615,2.501405482,80.45379881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.91650926,1.825880838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.812259756,77.33525163,79.72876901,79.16113247,472.3196646,0,0.570935494,55.18451361,-0.570935494,124.8154864,0.962424432,0,534.3007541,79.16113247,586.1101321,11,11,10% +11/2/2018 20:00,52.77783056,182.25926,590.5049937,835.4880272,85.1122115,648.104567,561.1073266,86.99724037,82.5457643,4.451476073,145.7412196,0,145.7412196,2.566447207,143.1747724,0.921146915,3.181024178,0.498647433,-0.498647433,0.444879956,0.144134618,2.336544053,75.15128855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.34612842,1.859382265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.692818212,72.23827707,81.03894664,74.09765934,561.1073266,0,0.671592301,47.80992138,-0.671592301,132.1900786,0.97555007,0,628.4272382,74.09765934,676.9226743,11,12,8% +11/2/2018 21:00,55.08501161,199.9809268,552.6667622,821.4174274,82.51995255,674.013217,589.81531,84.19790701,80.03167151,4.166235501,136.4887361,0,136.4887361,2.488281036,134.0004551,0.961414821,3.490325614,0.920535557,-0.920535557,0.372732838,0.149312313,1.943097028,62.49667978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.92948681,1.80275114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407767182,60.07418578,78.33725399,61.87693692,589.81531,0,0.718045771,44.10662952,-0.718045771,135.8933705,0.980366556,0,656.5724581,61.87693692,697.0696758,11,13,6% +11/2/2018 22:00,60.65077977,215.8005616,457.4597702,779.1296646,75.58383619,627.7108084,550.9575788,76.75322964,73.30470466,3.44852498,113.1955491,0,113.1955491,2.279131536,110.9164176,1.058555801,3.766430327,1.470887891,-1.470887891,0.278617046,0.1652251,1.371849503,44.1233957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.4632704,1.651223039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993900295,42.41308627,71.45717069,44.06430931,550.9575788,0,0.707144913,44.99691016,-0.707144913,135.0030898,0.979293135,0,611.0061452,44.06430931,639.8453543,11,14,5% +11/2/2018 23:00,68.66088249,229.1712792,313.0454727,686.329762,63.29883078,502.7916871,439.0416806,63.75000649,61.39013749,2.359869004,77.81019247,0,77.81019247,1.908693296,75.90149918,1.198358467,3.999793373,2.392419508,-2.392419508,0.121025858,0.20220331,0.705028184,22.67612992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.01053524,1.382841795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510790519,21.79715861,59.52132576,23.1800004,439.0416806,0,0.639694947,50.23092379,-0.639694947,129.7690762,0.971837744,0,486.1986023,23.1800004,501.369449,11,15,3% +11/2/2018 0:00,78.31568723,240.4207103,136.327495,468.5953124,41.42795543,285.1423864,243.9359425,41.20644397,40.17874972,1.027694243,34.30338523,0,34.30338523,1.249205709,33.05417952,1.366866598,4.196132985,4.768059377,-4.768059377,0,0.303885547,0.312301427,10.04468743,0.221930654,1,0.206732561,0,0.937983536,0.976745499,0.724496596,1,38.89877654,0.905045284,0.034355123,0.312029739,0.907197595,0.631694191,0.961238037,0.922476074,0.216373935,9.655335627,39.11515047,10.56038091,189.7990792,0,0.520568465,58.62960927,-0.520568465,121.3703907,0.953951155,0,220.1742012,10.56038091,227.0857593,11,16,3% +11/2/2018 1:00,88.78192106,250.1889701,1.434781595,13.0836561,1.156650716,5.867785348,4.735195929,1.132589419,1.121773429,0.01081599,0.382756696,0,0.382756696,0.034877287,0.347879409,1.549536839,4.36662128,47.03047866,-47.03047866,0,0.806151068,0.008719322,0.280443357,0.882526137,1,0.021259604,0,0.959309119,0.998071083,0.724496596,1,1.081235496,0.025268475,0.106282114,0.312029739,0.743150089,0.467646685,0.961238037,0.922476074,0.006197569,0.269572822,1.087433064,0.294841298,0.556261759,0,0.361916875,68.78203536,-0.361916875,111.2179646,0.911846729,0,1.594658529,0.294841298,1.787626262,11,17,12% +11/2/2018 2:00,100.5803224,259.1481261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755457789,4.52298805,-5.285526091,5.285526091,0.565968115,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.159388454,80.82859828,-0.159388454,99.17140172,0.736300992,0,0,0,0,11,18,0% +11/2/2018 3:00,112.3454049,267.980661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960797215,4.677144866,-2.313944747,2.313944747,0.925861547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056373284,93.23166447,0.056373284,86.76833553,0,0,0,0,0,11,19,0% +11/2/2018 4:00,124.1708224,277.5111088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167189686,4.843482559,-1.306495705,1.306495705,0.753577614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276812239,106.0700409,0.276812239,73.92995907,0,0.869372149,0,0,0,11,20,0% +11/2/2018 5:00,135.6987964,289.0149147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368390788,5.044261849,-0.758256955,0.758256955,0.659823266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486914052,119.1379522,0.486914052,60.86204784,0,0.947312473,0,0,0,11,21,0% +11/2/2018 6:00,146.2795029,304.8825556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553058954,5.321204427,-0.383944337,0.383944337,0.595812038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672371184,132.2503387,0.672371184,47.74966125,0,0.975636313,0,0,0,11,22,0% +11/2/2018 7:00,154.42218,329.4464788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695175479,5.749925765,-0.087665496,0.087665496,0.545145372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820557498,145.1406405,0.820557498,34.85935953,0,0.989065818,0,0,0,11,23,0% +11/3/2018 8:00,157.166947,4.638693991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7430807,0.080960483,0.175529477,-0.175529477,0.500136381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921388058,157.1298576,0.921388058,22.87014239,0,0.995734048,0,0,0,11,0,0% +11/3/2018 9:00,152.7919414,37.77310301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666722447,0.659265016,0.434906025,-0.434906025,0.455780379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968005697,165.4675538,0.968005697,14.53244618,0,0.998347411,0,0,0,11,1,0% +11/3/2018 10:00,143.8381088,59.73323734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.510448588,1.042541665,0.719166222,-0.719166222,0.407169022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957247689,163.1857709,0.957247689,16.81422906,0,0.997766915,0,0,0,11,2,0% +11/3/2018 11:00,132.9409446,74.21539726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320257194,1.295303038,1.07168015,-1.07168015,0.34688559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889860785,152.8557584,0.889860785,27.14424157,0,0.993811436,0,0,0,11,3,0% +11/3/2018 12:00,121.3076131,85.08036114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117217257,1.484932431,1.58759503,-1.58759503,0.25865895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770450018,140.3943173,0.770450018,39.60568268,0,0.985102864,0,0,0,11,4,0% +11/3/2018 13:00,109.4839933,94.35662559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910856162,1.646833788,2.574859559,-2.574859559,0.089826772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607164731,127.3847757,0.607164731,52.61522433,0,0.967650026,0,0,0,11,5,0% +11/3/2018 14:00,97.79730187,103.1654285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706884917,1.800576402,6.113080207,-6.113080207,0,#DIV/0!,0,0,0.340040543,1,0.162147498,0,0.943827782,0.982589745,0.724496596,1,0,0,0.050097745,0.312029739,0.867774843,0.592271439,0.961238037,0.922476074,0,0,0,0,0,0,-0.411143186,114.2766682,0.411143186,65.72333182,0,0.928387866,0,0,0,11,6,0% +11/3/2018 15:00,86.32431234,112.275914,16.40032729,104.0715986,9.728416098,9.558701053,0,9.558701053,9.435068458,0.123632595,24.28300234,20.01320548,4.269796866,0.293347639,3.976449227,1.506643475,1.95958437,-11.51778275,11.51778275,0,0.593184266,0.07333691,2.358767115,1,0.333249119,0,0.086605089,0.961238037,1,0.508421726,0.78392513,9.069346682,0.203029968,0.115824807,0.067466015,0.724496596,0.448993192,0.993505413,0.95474345,0.053132342,2.282486566,9.122479024,2.485516534,0,13.34382238,-0.192302278,101.0871731,0.192302278,78.91282691,0,0.789992679,9.122479024,13.02703853,17.6484152,11,7,93% +11/3/2018 16:00,75.95497774,122.3586533,178.8149748,539.4404703,47.90126007,61.51499572,13.71015256,47.80484316,46.45686035,1.347982812,44.80016062,0,44.80016062,1.444399728,43.35576089,1.325664445,2.135561368,-2.441277229,2.441277229,0.947636683,0.267881704,1.296306351,41.69366828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.65610124,1.046462686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.939169539,40.07753985,45.59527078,41.12400253,13.71015256,0,0.025415506,88.54364195,-0.025415506,91.45635805,0,0,45.59527078,41.12400253,72.51010795,11,8,59% +11/3/2018 17:00,66.68139319,134.081235,349.3733862,714.3247517,66.61239971,234.8801136,167.6425994,67.23751425,64.60379009,2.633724161,86.71823201,0,86.71823201,2.008609625,84.70962239,1.163809861,2.340159016,-1.014019859,1.014019859,0.703561298,0.19066249,2.001843798,64.38617783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.09962036,1.455230836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450329017,61.89044317,63.54994937,63.34567401,167.6425994,0,0.234686813,76.4268378,-0.234686813,103.5731622,0.836950109,0,203.8584412,63.34567401,245.3169179,11,9,20% +11/3/2018 18:00,59.24403874,148.0335629,482.0615911,791.346447,77.38086737,410.7322307,332.0506981,78.68153261,75.04754871,3.633983897,119.2147325,0,119.2147325,2.333318656,116.8814139,1.034003538,2.583673075,-0.348422472,0.348422472,0.589737442,0.160520707,2.382414686,76.62664581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.13855839,1.690481423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.72605133,73.65644659,73.86460972,75.34692802,332.0506981,0,0.419602185,65.19052569,-0.419602185,114.8094743,0.930839515,0,382.9505204,75.34692802,432.2635778,11,10,13% +11/3/2018 19:00,54.46307596,164.3682764,563.029374,825.5906116,83.17341617,553.3281483,468.4183643,84.90978404,80.6654308,4.244353246,139.0209756,0,139.0209756,2.507985375,136.5129903,0.950559996,2.86876761,0.106636721,-0.106636721,0.511917736,0.147724826,2.478785501,79.72626247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.53868034,1.817026867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.795871657,76.63591602,79.334552,78.45294289,468.4183643,0,0.567373657,55.43271484,-0.567373657,124.5672852,0.961874654,0,529.8943039,78.45294289,581.240186,11,11,10% +11/3/2018 20:00,53.08950189,182.2466463,585.5163554,833.8901538,84.70966532,643.5099444,556.9407184,86.56922597,82.15535636,4.41386961,144.5195282,0,144.5195282,2.554308955,141.9652192,0.926586606,3.180804029,0.50404808,-0.50404808,0.443956391,0.144675148,2.314642416,74.44685664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97085347,1.850588143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676950551,71.56115032,80.64780402,73.41173847,556.9407184,0,0.667882593,48.09614806,-0.667882593,131.9038519,0.975136543,0,623.7410507,73.41173847,671.7875653,11,12,8% +11/3/2018 21:00,55.38424647,199.8749182,547.7456206,819.6748474,82.11289259,669.2345519,585.4685281,83.76602377,79.63688592,4.129137857,135.283274,0,135.283274,2.476006676,132.8072673,0.966637455,3.488475415,0.928800805,-0.928800805,0.371319397,0.149910633,1.922383323,61.83045581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55000388,1.793858408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392760173,59.43378596,77.94276405,61.22764437,585.4685281,0,0.714269237,44.41665752,-0.714269237,135.5833425,0.979998385,0,651.7009762,61.22764437,691.7732449,11,13,6% +11/3/2018 22:00,60.92421653,215.6297714,452.7142044,776.9160665,75.15938793,622.7789865,546.4731805,76.30580597,72.89305507,3.4127509,112.0321331,0,112.0321331,2.266332855,109.7658002,1.063328173,3.763449477,1.484439696,-1.484439696,0.276299551,0.166019505,1.352978067,43.51642546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.06757716,1.641950438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.980228004,41.82964338,71.04780516,43.47159382,546.4731805,0,0.703387668,45.30056702,-0.703387668,134.699433,0.978915444,0,605.9988414,43.47159382,634.4501301,11,14,5% +11/3/2018 23:00,68.90504351,228.9644316,308.6083603,682.9087177,62.81948583,497.6112455,434.3595787,63.25166673,60.92524655,2.326420177,76.71990918,0,76.71990918,1.894239277,74.8256699,1.20261988,3.996183201,2.419487319,-2.419487319,0.11639699,0.203557304,0.689227187,22.16791555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.56366439,1.372369908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.499342751,21.30864362,59.06300714,22.68101353,434.3595787,0,0.636043394,50.50258591,-0.636043394,129.4974141,0.971389011,0,480.9951289,22.68101353,495.8393987,11,15,3% +11/3/2018 0:00,78.53296323,240.1944867,132.5294652,461.6581547,40.74991543,279.2488556,238.7286374,40.52021822,39.52115513,0.999063089,33.3620635,0,33.3620635,1.228760301,32.1333032,1.37065878,4.192184639,4.857657303,-4.857657303,0,0.307478155,0.307190075,9.880288782,0.231097277,1,0.2030243,0,0.938486377,0.97724834,0.724496596,1,38.26796126,0.890232655,0.035634078,0.312029739,0.903921779,0.628418375,0.961238037,0.922476074,0.212602092,9.497309392,38.48056335,10.38754205,183.5590995,0,0.517111276,58.8613197,-0.517111276,121.1386803,0.953309012,0,213.4691072,10.38754205,220.2675457,11,16,3% +11/3/2018 1:00,88.9587811,249.9491448,1.036579048,10.08348341,0.853345034,4.455794981,3.620367278,0.835427703,0.827613533,0.007814171,0.277062093,0,0.277062093,0.025731501,0.251330591,1.552623629,4.362435538,55.02152271,-55.02152271,0,0.823231991,0.006432875,0.206903383,0.898776008,1,0.018172705,0,0.95959596,0.998357923,0.724496596,1,0.79742186,0.018642385,0.107647503,0.312029739,0.74043614,0.464932736,0.961238037,0.922476074,0.004583736,0.198883402,0.802005596,0.217525787,0.366468028,0,0.359039345,68.95878937,-0.359039345,111.0412106,0.910739496,0,1.135762504,0.217525787,1.278128781,11,17,13% +11/3/2018 2:00,100.7649636,258.8933983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758680386,4.518542212,-5.196422178,5.196422178,0.581205781,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.15644528,80.99937262,-0.15644528,99.00062738,0.730399434,0,0,0,0,11,18,0% +11/3/2018 3:00,112.5236053,267.7050679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963907398,4.67233486,-2.297186009,2.297186009,0.922995634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058995206,93.38214011,0.058995206,86.61785989,0,0,0,0,0,11,19,0% +11/3/2018 4:00,124.3514796,277.2052504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170342749,4.838144323,-1.301261204,1.301261204,0.752682461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279106776,106.2069016,0.279106776,73.79309843,0,0.87085709,0,0,0,11,20,0% +11/3/2018 5:00,135.8942789,288.6688461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371802602,5.038221812,-0.756770208,0.756770208,0.659569017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488897568,119.2681477,0.488897568,60.73185233,0,0.947729088,0,0,0,11,21,0% +11/3/2018 6:00,146.5081525,304.5033851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557049643,5.314586654,-0.38420826,0.38420826,0.595857172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67408142,132.3828578,0.67408142,47.61714221,0,0.975824984,0,0,0,11,22,0% +11/3/2018 7:00,154.7033289,329.1413927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.700082454,5.744601007,-0.089036258,0.089036258,0.545379787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822050978,145.2906347,0.822050978,34.70936529,0,0.989176522,0,0,0,11,23,0% +11/4/2018 8:00,157.4763847,4.687761084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748481407,0.081816865,0.173207541,-0.173207541,0.500533456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922736196,157.3294312,0.922736196,22.67056882,0,0.995813332,0,0,0,11,0,0% +11/4/2018 9:00,153.0606233,38.11216227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.671411832,0.665182717,0.431498801,-0.431498801,0.456363049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969289878,165.7637322,0.969289878,14.23626782,0,0.998415844,0,0,0,11,1,0% +11/4/2018 10:00,144.0581397,60.10350675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514288852,1.049004085,0.71420529,-0.71420529,0.408017392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958553655,163.4464071,0.958553655,16.5535929,0,0.997838079,0,0,0,11,2,0% +11/4/2018 11:00,133.1330584,74.54739654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323610212,1.301097518,1.064028161,-1.064028161,0.348194157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891272722,153.0336148,0.891272722,26.96638522,0,0.993900448,0,0,0,11,3,0% +11/4/2018 12:00,121.488391,85.37443465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120372426,1.490064982,1.574169758,-1.574169758,0.260954806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044739,140.5378614,0.772044739,39.46213865,0,0.985236914,0,0,0,11,4,0% +11/4/2018 13:00,109.6646233,94.6229251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91400875,1.651481591,2.543880649,-2.543880649,0.095124478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609006369,127.5176916,0.609006369,52.48230837,0,0.967899052,0,0,0,11,5,0% +11/4/2018 14:00,97.98605833,103.412408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710179339,1.804887007,5.949907426,-5.949907426,0,#DIV/0!,0,0,0.327658957,1,0.166513617,0,0.943275023,0.982036986,0.724496596,1,0,0,0.048519465,0.312029739,0.871638778,0.596135374,0.961238037,0.922476074,0,0,0,0,0,0,-0.413278762,114.4109686,0.413278762,65.5890314,0,0.929016285,0,0,0,11,6,0% +11/4/2018 15:00,86.52004758,112.5083239,14.5967806,94.58911413,8.855288321,8.698305403,0,8.698305403,8.588268705,0.110036698,22.21573087,18.40955281,3.806178067,0.267019615,3.539158452,1.510059699,1.963640688,-12.12238013,12.12238013,0,0.60666037,0.066754904,2.147067176,1,0.376248588,0,0.082305694,0.961238037,1,0.517744253,0.793247657,8.25537055,0.184134027,0.115824807,0.078000631,0.724496596,0.448993192,0.99239367,0.953631706,0.048363701,2.07882445,8.303734251,2.262958478,0,11.48298456,-0.194626548,101.2229084,0.194626548,78.77709157,0,0.793097741,8.303734251,11.37008759,15.74522917,11,7,90% +11/4/2018 16:00,76.17905438,122.5761533,174.7864067,533.6877353,47.29456595,59.27500809,12.08893404,47.18607405,45.86846029,1.317613764,43.80509358,0,43.80509358,1.426105662,42.37898792,1.32957532,2.13935746,-2.47023867,2.47023867,0.952589382,0.27058492,1.272048018,40.91343691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.09050872,1.033208697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921594459,39.32755177,45.01210318,40.36076047,12.08893404,0,0.022651699,88.70204222,-0.022651699,91.29795778,0,0,45.01210318,40.36076047,71.42741369,11,8,59% +11/4/2018 17:00,66.93235811,134.275634,344.8458249,711.2859069,66.15150229,231.4949094,164.7385255,66.75638392,64.15679043,2.599593491,85.60657459,0,85.60657459,1.994711867,83.61186272,1.168190025,2.343551919,-1.019192389,1.019192389,0.704445853,0.19182921,1.978659196,63.64048133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.66994728,1.445161958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433531852,61.17365134,63.10347913,62.6188133,164.7385255,0,0.231606621,76.60832129,-0.231606621,103.3916787,0.834116707,0,200.5146356,62.6188133,241.4973965,11,9,20% +11/4/2018 18:00,59.52302919,148.1852367,477.2776477,789.2769202,76.96270576,406.7780981,328.5381814,78.23991673,74.64199622,3.597920511,118.042201,0,118.042201,2.320709541,115.7214914,1.03887284,2.586320284,-0.347913277,0.347913277,0.589650364,0.161253531,2.359590718,75.89254854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.74872591,1.681346162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709515443,72.95080437,73.45824136,74.63215053,328.5381814,0,0.416252107,65.40180757,-0.416252107,114.5981924,0.929880488,0,378.9594858,74.63215053,427.8047357,11,10,13% +11/4/2018 19:00,54.76409772,164.4475559,558.113765,823.8997877,82.76953093,549.0067391,464.5257176,84.4810215,80.27372419,4.207297308,137.8169507,0,137.8169507,2.495806745,135.3211439,0.955813817,2.870151298,0.109783151,-0.109783151,0.511379665,0.148302257,2.456401771,79.00632477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16215705,1.80820349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779654721,75.94388452,78.94181177,77.75208801,464.5257176,0,0.563813372,55.68006973,-0.563813372,124.3199303,0.961318173,0,525.4988259,77.75208801,576.3860124,11,11,10% +11/4/2018 20:00,53.39693618,182.2301282,580.5771654,832.2898987,84.30949538,638.9387085,552.7948195,86.14388894,81.76725303,4.376635909,143.3098978,0,143.3098978,2.542242355,140.7676554,0.931952347,3.180515734,0.509361628,-0.509361628,0.443047721,0.145216692,2.293035484,73.75190341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.59779378,1.841845932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.661296402,70.89313485,80.25909018,72.73498078,552.7948195,0,0.664185424,48.38013632,-0.664185424,131.6198637,0.974719817,0,619.0791557,72.73498078,666.682746,11,12,8% +11/4/2018 21:00,55.67866765,199.7671621,542.8882678,817.9347686,81.70917691,664.4951921,581.1573273,83.33786484,79.24534376,4.09252108,134.093379,0,134.093379,2.463833159,131.6295459,0.971776074,3.486594715,0.936970519,-0.936970519,0.369922294,0.150508275,1.902016372,61.17538467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.17363866,1.785038736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378004387,58.80410667,77.55164305,60.5891454,581.1573273,0,0.710517941,44.72292796,-0.710517941,135.277072,0.9796288,0,646.8700983,60.5891454,686.5244822,11,13,6% +11/4/2018 22:00,61.19263056,215.4587696,448.0462672,774.7105546,74.73929544,617.9043044,542.0411125,75.86319194,72.48562992,3.377562018,110.8876703,0,110.8876703,2.253665516,108.6340048,1.068012881,3.760464931,1.497881788,-1.497881788,0.274000818,0.166811557,1.334494585,42.92193316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.67594461,1.632772995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.966836784,41.25819476,70.64278139,42.89096776,542.0411125,0,0.699669198,45.59953026,-0.699669198,134.4004697,0.978537657,0,601.0504218,42.89096776,629.1217023,11,14,5% +11/4/2018 23:00,69.1441221,228.758175,304.2614226,679.5035351,62.34560328,492.5072882,429.7479837,62.75930444,60.46565331,2.293651124,75.65165449,0,75.65165449,1.87994997,73.77170452,1.206792589,3.992583344,2.446474135,-2.446474135,0.111781972,0.204908012,0.67384021,21.67301747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.12188589,1.362017353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.488194938,20.83292877,58.61008083,22.19494612,429.7479837,0,0.632444074,50.76932708,-0.632444074,129.2306729,0.970941626,0,475.870287,22.19494612,490.3964353,11,15,3% +11/4/2018 0:00,78.74509456,239.9692084,128.8353968,454.7555554,40.07880313,273.4580513,233.6165564,39.84149498,38.87027934,0.971215641,32.44615734,0,32.44615734,1.208523789,31.23763355,1.37436117,4.18825279,4.948278888,-4.948278888,0,0.311085339,0.302130947,9.717569835,0.240151511,1,0.199404816,0,0.938974269,0.977736232,0.724496596,1,37.64304698,0.875571371,0.036887521,0.312029739,0.900723825,0.625220421,0.961238037,0.922476074,0.208888195,9.340897751,37.85193518,10.21646912,177.5131873,0,0.513718972,59.08813234,-0.513718972,120.9118677,0.952670521,0,206.9635158,10.21646912,213.6499905,11,16,3% +11/4/2018 1:00,89.12924095,249.7103924,0.725841563,7.660069006,0.609431285,3.325478148,2.728951765,0.596526383,0.591054683,0.0054717,0.194365292,0,0.194365292,0.018376602,0.175988691,1.555598714,4.358268524,65.79390296,-65.79390296,0,0.839620264,0.00459415,0.147763671,0.914684986,1,0.015197807,0,0.959870223,0.998632186,0.724496596,1,0.569290395,0.013313785,0.108969738,0.312029739,0.737822271,0.462318867,0.961238037,0.922476074,0.003281683,0.142036061,0.572572078,0.155349846,0.232820557,0,0.356256812,69.12950883,-0.356256812,110.8704912,0.909651807,0,0.784357718,0.155349846,0.886031086,11,17,13% +11/4/2018 2:00,100.9442269,258.6397354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76180912,4.514114959,-5.11274202,5.11274202,0.595515931,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153585323,81.16524113,-0.153585323,98.83475887,0.72444806,0,0,0,0,11,18,0% +11/4/2018 3:00,112.6961999,267.4303799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966919743,4.667540649,-2.281230539,2.281230539,0.920267088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061529068,93.52758411,0.061529068,86.47241589,0,0,0,0,0,11,19,0% +11/4/2018 4:00,124.5262219,276.8998332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173392577,4.832813788,-1.296304031,1.296304031,0.751834735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281311879,106.3385173,0.281311879,73.66148267,0,0.872261327,0,0,0,11,20,0% +11/4/2018 5:00,136.0834791,288.321994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375104767,5.032168102,-0.755414001,0.755414001,0.659337092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49079383,119.3927711,0.49079383,60.6072289,0,0.948124229,0,0,0,11,21,0% +11/4/2018 6:00,146.7302882,304.1203148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560926641,5.307900815,-0.384542608,0.384542608,0.595914349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675709985,132.5093089,0.675709985,47.49069112,0,0.976003757,0,0,0,11,22,0% +11/4/2018 7:00,154.9786243,328.8269398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704887264,5.739112769,-0.090445905,0.090445905,0.54562085,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823471383,145.4338176,0.823471383,34.56618237,0,0.989281436,0,0,0,11,23,0% +11/5/2018 8:00,157.7818526,4.728530335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753812828,0.082528423,0.170867571,-0.170867571,0.500933614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924022276,157.5213813,0.924022276,22.47861865,0,0.99588875,0,0,0,11,0,0% +11/5/2018 9:00,153.3265802,38.44633881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.676053656,0.671015198,0.428091813,-0.428091813,0.456945678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970524676,166.0543269,0.970524676,13.94567313,0,0.998481475,0,0,0,11,1,0% +11/5/2018 10:00,144.2764711,60.46855457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.518099454,1.055375371,0.709267186,-0.709267186,0.408861857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9598237,163.7037583,0.9598237,16.29624174,0,0.9979071,0,0,0,11,2,0% +11/5/2018 11:00,133.3242921,74.87409242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326947869,1.306799437,1.056439074,-1.056439074,0.349491968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892662054,153.2096893,0.892662054,26.79031068,0,0.993987761,0,0,0,11,3,0% +11/5/2018 12:00,121.6688136,85.66333374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123521394,1.495107222,1.560910572,-1.560910572,0.263222261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77362911,140.6809078,0.77362911,39.31909222,0,0.985369547,0,0,0,11,4,0% +11/5/2018 13:00,109.8451714,94.88410962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917159908,1.656040121,2.513516526,-2.513516526,0.100317048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610848009,127.6508448,0.610848009,52.34915515,0,0.968146578,0,0,0,11,5,0% +11/5/2018 14:00,98.17479245,103.6541735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.713473371,1.809106611,5.794496647,-5.794496647,0,#DIV/0!,0,0,0.315426533,1,0.170894231,0,0.942716131,0.981478094,0.724496596,1,0,0,0.046944252,0.312029739,0.875514873,0.600011469,0.961238037,0.922476074,0,0,0,0,0,0,-0.41542207,114.545899,0.41542207,65.45410097,0,0.929640482,0,0,0,11,6,0% +11/5/2018 15:00,86.71504113,112.7352444,12.89526938,85.37669078,8.003019109,7.858908542,0,7.858908542,7.761698555,0.097209988,20.18319919,16.81527128,3.367927912,0.241320554,3.126607358,1.513462979,1.967601198,-12.79695597,12.79695597,0,0.620616667,0.060330139,1.940424639,1,0.418118187,0,0.077985105,0.961238037,1,0.527261662,0.802765066,7.460839882,0.165925276,0.115824807,0.088749558,0.724496596,0.448993192,0.991232473,0.95247051,0.04370898,1.879645866,7.504548861,2.045571142,0,9.784500545,-0.196953889,101.358887,0.196953889,78.64111299,0,0.796133472,7.504548861,9.835339532,13.94158188,11,7,86% +11/5/2018 16:00,76.40254211,122.7877394,170.7755238,527.8335747,46.68238419,57.05277695,10.49066084,46.5621161,45.27473807,1.287378034,42.81414904,0,42.81414904,1.407646123,41.40650292,1.333475917,2.143050334,-2.500303076,2.500303076,0.957730698,0.273355239,1.247836518,40.13471183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,43.51980034,1.019834824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90405331,38.57901161,44.42385365,39.59884643,10.49066084,0,0.01987494,88.86117481,-0.01987494,91.13882519,0,0,44.42385365,39.59884643,70.34050666,11,8,58% +11/5/2018 17:00,67.18208243,134.4636739,340.3356101,708.2090097,65.68942737,228.1110253,161.836783,66.27424235,63.70864876,2.565593588,84.49908755,0,84.49908755,1.980778603,82.51830895,1.172548537,2.346833834,-1.024609498,1.024609498,0.705372233,0.193013677,1.955596572,62.89870809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23917647,1.435067355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41682306,60.46063068,62.65599953,61.89569804,161.836783,0,0.228515566,76.79030732,-0.228515566,103.2096927,0.831196525,0,197.1741712,61.89569804,237.6836676,11,9,21% +11/5/2018 18:00,59.79980909,148.3304341,472.5199718,787.1907849,76.54503815,402.8276237,325.0286457,77.79897797,74.23692283,3.56205514,116.8760531,0,116.8760531,2.308115321,114.5679378,1.043703561,2.588854455,-0.347527059,0.347527059,0.589584317,0.161993234,2.336953528,75.16445869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.35935396,1.672221693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693114876,72.25093672,73.05246884,73.92315841,325.0286457,0,0.412896914,65.61305522,-0.412896914,114.3869448,0.928904399,0,374.9730076,73.92315841,423.3542363,11,10,13% +11/5/2018 19:00,55.06176234,164.5211299,553.2366175,822.2019398,82.36724531,544.6982802,460.6441799,84.05410027,79.88356896,4.170531311,136.6222994,0,136.6222994,2.483676349,134.1386231,0.961009045,2.871435405,0.11283493,-0.11283493,0.51085778,0.14888249,2.434266108,78.29436578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.787125,1.79941506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763617509,75.25952246,78.55074251,77.05893752,460.6441799,0,0.560256742,55.92644499,-0.560256742,124.073555,0.960755202,0,521.1170344,77.05893752,571.5505679,11,11,10% +11/5/2018 20:00,53.70001974,182.2097556,575.6902446,830.688546,83.91190846,634.3937847,548.6723337,85.72145105,81.38165482,4.339796236,142.1130185,0,142.1130185,2.530253642,139.5827649,0.937242153,3.180160165,0.514582874,-0.514582874,0.442154835,0.145758781,2.27173433,73.0667851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22714211,1.83316015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645863789,70.23457307,79.8730059,72.06773322,548.6723337,0,0.660503069,48.66174905,-0.660503069,131.338251,0.974300125,0,614.444529,72.06773322,661.611419,11,12,8% +11/5/2018 21:00,55.96816972,199.6576935,538.0974305,816.1987748,81.30902466,659.7982476,576.8845843,82.9136633,78.85725757,4.056405724,132.919719,0,132.919719,2.451767092,130.4679519,0.976828838,3.484684128,0.945036805,-0.945036805,0.368542878,0.151104651,1.882005888,60.5317787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.80059546,1.776296912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363506859,58.18544812,77.16410232,59.96174503,576.8845843,0,0.70679423,45.02531998,-0.70679423,134.97468,0.979258053,0,642.0829771,59.96174503,681.32674,11,13,6% +11/5/2018 22:00,61.45592221,215.2875898,443.4584608,772.5153854,74.32380701,613.0900367,537.6643895,75.4256472,72.08267,3.342977195,109.762775,0,109.762775,2.241137007,107.521638,1.072608187,3.75747728,1.511200252,-1.511200252,0.271723226,0.167600381,1.316406556,42.34015996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.2886042,1.623696132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953732069,40.69897224,70.24233627,42.32266838,537.6643895,0,0.695991821,45.89369473,-0.695991821,134.1063053,0.978160075,0,596.164176,42.32266838,623.863516,11,14,5% +11/5/2018 23:00,69.37802575,228.5525562,300.0067663,676.118187,61.8775197,487.4834279,425.210166,62.2732619,60.01168418,2.261577728,74.60594937,0,74.60594937,1.865835523,72.74011384,1.210874978,3.98899462,2.473348548,-2.473348548,0.107186177,0.206253747,0.658870807,21.19155002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.68551348,1.351791485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.477349657,20.37012394,58.16286314,21.72191542,425.210166,0,0.628899169,51.03104816,-0.628899169,128.9689518,0.970495999,0,470.8276281,21.72191542,485.0441873,11,15,3% +11/5/2018 0:00,78.95199857,239.7449402,125.2465237,447.8975246,39.41533034,267.7749573,228.6039834,39.1709739,38.2268127,0.9441612,31.55598737,0,31.55598737,1.188517637,30.36746973,1.377972326,4.184338572,5.039823514,-5.039823514,0,0.314701991,0.297129409,9.556703175,0.249084009,1,0.195875528,0,0.939447228,0.978209191,0.724496596,1,37.02474023,0.861076982,0.038114643,0.312029739,0.897605033,0.622101628,0.961238037,0.922476074,0.205234747,9.186266598,37.22997498,10.04734358,171.6623868,0,0.510393496,59.30995614,-0.510393496,120.6900439,0.952036369,0,200.6588104,10.04734358,207.2345959,11,16,3% +11/5/2018 1:00,89.29328364,249.4727977,0.48876326,5.737787633,0.417992156,2.437782337,2.028709682,0.409072654,0.40538815,0.003684504,0.131110317,0,0.131110317,0.012604006,0.118506311,1.558461799,4.354121714,81.06568843,-81.06568843,0,0.855203715,0.003151001,0.101347038,0.930230427,1,0.01233505,0,0.960132136,0.998894099,0.724496596,1,0.390322525,0.009131559,0.110248108,0.312029739,0.735308504,0.4598051,0.961238037,0.922476074,0.00225639,0.097418627,0.392578915,0.106550187,0.141542208,0,0.353570019,69.29417042,-0.353570019,110.7058296,0.908585295,0,0.521182084,0.106550187,0.590917051,11,17,13% +11/5/2018 2:00,101.1180459,258.3872446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764842834,4.509708164,-5.034135631,5.034135631,0.608958415,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.150809899,81.32613568,-0.150809899,98.67386432,0.718456778,0,0,0,0,11,18,0% +11/5/2018 3:00,112.8631288,267.1567331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969833201,4.662764611,-2.266055678,2.266055678,0.917672034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063973945,93.66794189,0.063973945,86.33205811,0,0,0,0,0,11,19,0% +11/5/2018 4:00,124.6949904,276.5950339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176338143,4.827494037,-1.29162003,1.29162003,0.751033724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283427012,106.4648465,0.283427012,73.53515354,0,0.873587739,0,0,0,11,20,0% +11/5/2018 5:00,136.2663287,287.9745892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378296095,5.026104743,-0.754187091,0.754187091,0.659127278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492602674,119.5117918,0.492602674,60.48820818,0,0.948498318,0,0,0,11,21,0% +11/5/2018 6:00,146.9458109,303.7336022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564688222,5.301151408,-0.384946742,0.384946742,0.59598346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677257036,132.6296682,0.677257036,47.37033181,0,0.976172786,0,0,0,11,22,0% +11/5/2018 7:00,155.247923,328.5031431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709587413,5.73346145,-0.091893856,0.091893856,0.545868464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824819123,145.5701575,0.824819123,34.42984255,0,0.989380649,0,0,0,11,23,0% +11/6/2018 8:00,158.0832419,4.76064612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759073064,0.083088949,0.16851028,-0.16851028,0.501336735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925246872,157.7056106,0.925246872,22.29438941,0,0.995960368,0,0,0,11,0,0% +11/6/2018 9:00,153.5897653,38.77530142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680647102,0.676756678,0.424686027,-0.424686027,0.457528102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971710731,166.3391517,0.971710731,13.66084827,0,0.998544357,0,0,0,11,1,0% +11/6/2018 10:00,144.4930811,60.82813721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.521880011,1.061651272,0.704353259,-0.704353259,0.409702188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961058422,163.9578004,0.961058422,16.04219965,0,0.997974026,0,0,0,11,2,0% +11/6/2018 11:00,133.5146221,75.19531143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.330269756,1.312405766,1.048914758,-1.048914758,0.350778702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89402924,153.3840097,0.89402924,26.61599032,0,0.994073418,0,0,0,11,3,0% +11/6/2018 12:00,121.8488455,85.94692539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126663543,1.50005683,1.547819639,-1.547819639,0.265460942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775203359,140.8234735,0.775203359,39.17652652,0,0.985500796,0,0,0,11,4,0% +11/6/2018 13:00,110.0255866,95.14007034,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920308748,1.660507478,2.483762426,-2.483762426,0.105405299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612689569,127.7842314,0.612689569,52.21576858,0,0.968392604,0,0,0,11,5,0% +11/6/2018 14:00,98.36343577,103.8906338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716765818,1.813233622,5.646381001,-5.646381001,0,#DIV/0!,0,0,0.303346744,1,0.175286988,0,0.94215138,0.980913343,0.724496596,1,0,0,0.04537291,0.312029739,0.879401011,0.603897607,0.961238037,0.922476074,0,0,0,0,0,0,-0.417572666,114.6814343,0.417572666,65.31856568,0,0.930260362,0,0,0,11,6,0% +11/6/2018 15:00,86.90915497,112.9566014,11.29969092,76.48172394,7.175852834,7.044656239,0,7.044656239,6.959474395,0.085181843,18.19759929,15.24147996,2.956119326,0.216378439,2.739740887,1.516850904,1.971464607,-13.55369853,13.55369853,0,0.635048594,0.05409461,1.739868599,1,0.458866449,0,0.073647158,0.961238037,1,0.536967324,0.812470728,6.689711505,0.148446744,0.115824807,0.099707094,0.724496596,0.448993192,0.990020978,0.951259015,0.039191361,1.686011975,6.728902866,1.834458719,0,8.247676171,-0.199282641,101.495013,0.199282641,78.50498701,0,0.799100074,6.728902866,8.425177356,12.24301294,11,7,82% +11/6/2018 16:00,76.62533475,122.9933598,166.7847267,521.8789523,46.06486487,54.85019996,8.917067009,45.93313295,44.67583923,1.25729372,41.82791358,0,41.82791358,1.389025637,40.43888795,1.337364382,2.146639086,-2.531508321,2.531508321,0.963067109,0.276193545,1.223683411,39.35786488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.944116,1.006344346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886554466,37.83227677,43.83067046,38.83862112,8.917067009,0,0.017086466,89.02096997,-0.017086466,90.97903003,0,0,43.83067046,38.83862112,69.24977121,11,8,58% +11/6/2018 17:00,67.43044518,134.6453354,335.8452298,705.0952327,65.22636307,224.7305026,158.9392118,65.79129077,63.25954756,2.531743203,83.39637974,0,83.39637974,1.966815506,81.42956423,1.176883285,2.350004425,-1.030275761,1.030275761,0.706341221,0.194215541,1.932667746,62.16123822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.80748331,1.424951139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.400211203,59.75174659,62.20769451,61.17669773,158.9392118,0,0.225415241,76.97270298,-0.225415241,103.027297,0.828187137,0,193.8391053,61.17669773,233.8780304,11,9,21% +11/6/2018 18:00,60.07425003,148.4691765,467.7912561,785.0892396,76.12806254,398.8832073,321.5242786,77.35892866,73.83252058,3.526408085,115.7169479,0,115.7169479,2.295541968,113.4214059,1.048493459,2.591275968,-0.347266943,0.347266943,0.589539834,0.162739388,2.314515172,74.44276403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.97062713,1.663112342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676858363,71.55721636,72.6474855,73.2203287,321.5242786,0,0.409538512,65.82415189,-0.409538512,114.1758481,0.92791136,0,370.9935161,73.2203287,418.9147568,11,10,13% +11/6/2018 19:00,55.35594565,164.5890514,548.400741,820.4982862,81.96676243,540.405489,456.7762504,83.62923855,79.49516211,4.134076431,135.4377091,0,135.4377091,2.471600312,132.9661088,0.966143512,2.87262086,0.115788278,-0.115788278,0.510352728,0.149465083,2.412390272,77.59076369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41377357,1.790666013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.74776854,74.58319336,78.16154211,76.37385938,456.7762504,0,0.556705917,56.17170536,-0.556705917,123.8282946,0.960185973,0,516.7516907,76.37385938,566.7368542,11,11,10% +11/6/2018 20:00,53.99863961,182.1855825,570.8584047,829.0874321,83.51711363,629.8781262,544.5759899,85.30213629,80.99876451,4.303371786,140.9295785,0,140.9295785,2.518349121,138.4112294,0.942454053,3.179738265,0.519706594,-0.519706594,0.441278628,0.146300927,2.250749866,72.39185258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85909338,1.824535366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630660616,69.58580226,79.489754,71.41033763,544.5759899,0,0.65683783,48.9408487,-0.65683783,131.0591513,0.97387771,0,609.8401717,71.41033763,656.5768095,11,12,8% +11/6/2018 21:00,56.25264893,199.5465522,533.3758011,814.4685005,80.91265605,655.1468311,572.6531781,82.49365302,78.47284093,4.020812088,131.7629533,0,131.7629533,2.439815116,129.3231382,0.981793937,3.482744347,0.952991669,-0.952991669,0.367182516,0.151699151,1.862361315,59.89994171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43107956,1.767637746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349274433,57.57810237,76.780354,59.34574012,572.6531781,0,0.703100461,45.32371325,-0.703100461,134.6762868,0.978886407,0,637.342766,59.34574012,676.183366,11,13,6% +11/6/2018 22:00,61.71399441,215.1162707,438.9532297,770.3328756,73.91317141,608.3394371,533.3460057,74.99343144,71.68441658,3.30901486,108.6580474,0,108.6580474,2.228754829,106.4292926,1.077112397,3.754487198,1.524380867,-1.524380867,0.269469208,0.168385072,1.298721122,41.77133561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.90578787,1.614725286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940919032,40.15219663,69.8467069,41.76692192,533.3460057,0,0.69235784,46.18295666,-0.69235784,133.8170433,0.977783009,0,591.3433691,41.76692192,618.6789841,11,14,5% +11/6/2018 23:00,69.60666527,228.3476266,295.8464152,672.756748,61.41557373,482.5432377,420.7493548,61.79388283,59.56366758,2.230215244,73.5832947,0,73.5832947,1.851906147,71.73138855,1.21486549,3.985417924,2.500077926,-2.500077926,0.102615184,0.20759276,0.644322063,20.72361237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.25486289,1.3416997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466809141,19.92032448,57.72167204,21.26202417,420.7493548,0,0.625410828,51.2876525,-0.625410828,128.7123475,0.970052551,0,465.8706572,21.26202417,479.7862268,11,15,3% +11/6/2018 0:00,79.15359663,239.5217512,121.7639359,441.094304,38.76022165,262.2044898,223.6951239,38.50936594,37.59145796,0.917907982,30.69183969,0,30.69183969,1.168763693,29.523076,1.381490876,4.180443189,5.132179454,-5.132179454,0,0.318322674,0.292190923,9.39786449,0.25788535,1,0.192437798,0,0.939905278,0.978667241,0.724496596,1,36.4137589,0.846765317,0.039314651,0.312029739,0.894566648,0.619063244,0.961238037,0.922476074,0.201644327,9.033584813,36.61540322,9.88035013,166.0074285,0,0.507136732,59.52670359,-0.507136732,120.4732964,0.95140726,0,194.5560759,9.88035013,201.0225675,11,16,3% +11/6/2018 1:00,89.45093982,249.2364492,0.31229802,4.240331404,0.271663936,1.75409344,1.488266939,0.2658265,0.263472266,0.002354234,0.083911941,0,0.083911941,0.00819167,0.075720271,1.561213419,4.349996655,104.3399981,-104.3399981,0,0.869886836,0.002047918,0.065868067,0.945394092,1,0.009583759,0,0.960381988,0.999143951,0.724496596,1,0.253591693,0.005934837,0.111482281,0.312029739,0.732894134,0.45739073,0.961238037,0.922476074,0.001470098,0.063314891,0.25506179,0.069249728,0.081268167,0,0.350978921,69.45279804,-0.350978921,110.547202,0.907541302,0,0.328816008,0.069249728,0.37413857,11,17,14% +11/6/2018 2:00,101.2863592,258.1360371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767780456,4.505323766,-4.960285558,4.960285558,0.621587522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148120239,81.48199268,-0.148120239,98.51800732,0.712436407,0,0,0,0,11,18,0% +11/6/2018 3:00,113.0243373,266.8842683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97264682,4.658009203,-2.251639865,2.251639865,0.915206784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.066329,93.80316393,0.066329,86.19683607,0,0,0,0,0,11,19,0% +11/6/2018 4:00,124.8577325,276.2910355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179178528,4.822188263,-1.287205106,1.287205106,0.750278727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285451735,106.5858528,0.285451735,73.41414716,0,0.87483904,0,0,0,11,20,0% +11/6/2018 5:00,136.4427662,287.6268726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38137551,5.020035945,-0.753088181,0.753088181,0.658939353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494324023,119.6251855,0.494324023,60.37481445,0,0.94885177,0,0,0,11,21,0% +11/6/2018 6:00,147.1546278,303.3435262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568332765,5.294343297,-0.385419952,0.385419952,0.596064383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678722809,132.7439193,0.678722809,47.25608073,0,0.976332224,0,0,0,11,22,0% +11/6/2018 7:00,155.5110842,328.1700559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.714180442,5.727647982,-0.093379455,0.093379455,0.546122517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826094672,145.6996317,0.826094672,34.30036834,0,0.989474249,0,0,0,11,23,0% +11/7/2018 8:00,158.3804423,4.783754747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764260189,0.083492271,0.166136459,-0.166136459,0.501742682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926410603,157.8820323,0.926410603,22.11796775,0,0.996028252,0,0,0,11,0,0% +11/7/2018 9:00,153.8501305,39.09871493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685191332,0.682401309,0.42128249,-0.42128249,0.458110141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972848707,166.6180175,0.972848707,13.38198253,0,0.998604547,0,0,0,11,1,0% +11/7/2018 10:00,144.7079455,61.18201087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525630103,1.067827533,0.699464938,-0.699464938,0.41053814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962258426,164.2085105,0.962258426,15.79148952,0,0.998038907,0,0,0,11,2,0% +11/7/2018 11:00,133.7040221,75.51088119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333575409,1.317913498,1.041457176,-1.041457176,0.352054023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895374724,153.5566025,0.895374724,26.44339746,0,0.994157459,0,0,0,11,3,0% +11/7/2018 12:00,122.0284479,86.22507811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129798197,1.504911511,1.534899236,-1.534899236,0.267670461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776767681,140.9655726,0.776767681,39.03442739,0,0.98563069,0,0,0,11,4,0% +11/7/2018 13:00,110.2058146,95.39070031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92345432,1.664881796,2.454613894,-2.454613894,0.110389992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614530921,127.9178441,0.614530921,52.08215593,0,0.968637129,0,0,0,11,5,0% +11/7/2018 14:00,98.55191651,104.1216999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720055427,1.817266486,5.505132442,-5.505132442,0,#DIV/0!,0,0,0.291423089,1,0.17968941,0,0.941581066,0.980343029,0.724496596,1,0,0,0.043806269,0.312029739,0.88329497,0.607791566,0.961238037,0.922476074,0,0,0,0,0,0,-0.419730051,114.8175457,0.419730051,65.18245434,0,0.930875816,0,0,0,11,6,0% +11/7/2018 15:00,87.10224316,113.1723237,9.813451987,67.95211578,6.378211626,6.259862958,0,6.259862958,6.185885012,0.073977946,16.27160611,13.69989445,2.571711664,0.192326614,2.37938505,1.520220929,1.97522967,-14.40774205,14.40774205,0,0.649945772,0.048081653,1.546471253,1,0.498501193,0,0.069295996,0.961238037,1,0.546853374,0.822356779,5.946107965,0.131747193,0.115824807,0.110866109,0.724496596,0.448993192,0.988758549,0.949996586,0.034834994,1.499024697,5.98094296,1.630771889,0,6.870480722,-0.201611006,101.6311821,0.201611006,78.36881787,0,0.801997667,5.98094296,7.140881397,10.65450702,11,7,78% +11/7/2018 16:00,76.84732362,123.192966,162.8164617,515.8251207,45.4421774,52.6691979,7.369890555,45.29930735,44.07192808,1.227379262,40.84698548,0,40.84698548,1.370249312,39.47673617,1.341238819,2.150122873,-2.563892756,2.563892756,0.968605174,0.279100632,1.199600588,38.58327852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.36361363,0.992740962,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869106543,37.0877149,43.23272017,38.08045587,7.369890555,0,0.014287576,89.18135435,-0.014287576,90.81864565,0,0,43.23272017,38.08045587,68.15561693,11,8,58% +11/7/2018 17:00,67.67732369,134.8206028,331.37721,701.9458807,64.76250702,221.3554307,156.0476908,65.30773987,62.80967849,2.498061384,82.29906966,0,82.29906966,1.952828535,80.34624113,1.181192127,2.353063418,-1.036195484,1.036195484,0.707353554,0.195434402,1.90988468,61.42845648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37505204,1.414817626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383704949,59.04736891,61.75875699,60.46218654,156.0476908,0,0.222307296,77.15541216,-0.222307296,102.8445878,0.825086104,0,190.5115383,60.46218654,230.0828301,11,9,21% +11/7/2018 18:00,60.34622283,148.6014891,463.0942207,782.9735668,75.71198289,394.947297,318.0273099,76.91998711,73.42898726,3.490999848,114.565551,0,114.565551,2.282995632,112.2825553,1.05324028,2.593585259,-0.347135955,0.347135955,0.589517434,0.16349153,2.292287749,73.7278537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58273556,1.654022564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660754671,70.87001735,72.24349023,72.52403991,318.0273099,0,0.406178859,66.03497838,-0.406178859,113.9650216,0.92690152,0,367.0234873,72.52403991,414.4890209,11,10,13% +11/7/2018 19:00,55.64652349,164.6513764,543.6089557,818.790108,81.56828933,536.1311212,452.9244628,83.20665838,79.10870445,4.097953929,134.2638699,0,134.2638699,2.459584878,131.804285,0.971215052,2.873708636,0.118639426,-0.118639426,0.509865153,0.150049569,2.390785971,76.89589511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.04229576,1.781960871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732116298,73.91525926,77.77441206,75.69722013,452.9244628,0,0.553163086,56.41571433,-0.553163086,123.5842857,0.959610744,0,512.4055926,75.69722013,561.9479092,11,11,10% +11/7/2018 20:00,54.29268337,182.1576658,566.0844499,827.4879469,83.12532244,625.3947083,540.5085373,84.88617097,80.61878727,4.267383699,139.760264,0,139.760264,2.506535171,137.2537288,0.947586085,3.179251026,0.524727514,-0.524727514,0.44042,0.146842618,2.230092866,71.72745245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49384481,1.815976199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.61569469,68.94715558,79.1095395,70.76313178,540.5085373,0,0.653192037,49.21729765,-0.653192037,130.7827023,0.973452833,0,605.2691064,70.76313178,651.5821609,11,12,8% +11/7/2018 21:00,56.53200269,199.4337816,528.7260457,812.745633,80.52029278,650.5440603,568.4659912,82.07806913,78.09230886,3.985760268,130.6237351,0,130.6237351,2.427983915,128.1957512,0.98666958,3.480776129,0.960826982,-0.960826982,0.365842599,0.152291141,1.843091886,59.28017065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06529766,1.759066082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335313797,56.98235486,76.40061146,58.74142094,568.4659912,0,0.699438998,45.61798795,-0.699438998,134.382012,0.978514138,0,632.6526206,58.74142094,671.0977057,11,13,6% +11/7/2018 22:00,61.96675192,214.9448545,434.5329725,768.1654068,73.50763871,603.6557459,529.0889406,74.56680528,71.29111219,3.275693094,107.5740766,0,107.5740766,2.216526521,105.35755,1.081523848,3.751495422,1.537409063,-1.537409063,0.267241256,0.169164697,1.281445133,41.21568042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52772872,1.605865919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.928402637,39.61807973,69.45613136,41.22394565,529.0889406,0,0.688769549,46.46721325,-0.688769549,133.5327867,0.977406779,0,586.5912487,41.22394565,613.5714966,11,14,5% +11/7/2018 23:00,69.82995392,228.1434408,291.7823257,669.4234024,60.96010732,477.6902645,416.3687509,61.32151359,59.12193516,2.199578421,72.58417517,0,72.58417517,1.838172155,70.74600301,1.218762612,3.981854209,2.526628316,-2.526628316,0.0980748,0.208923235,0.630196661,20.26929091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83025289,1.331749469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456575336,19.4836134,57.28682823,20.81536287,416.3687509,0,0.62198117,51.53904524,-0.62198117,128.4609548,0.969611714,0,461.0028465,20.81536287,474.6260852,11,15,3% +11/7/2018 0:00,79.34981326,239.2997136,118.388596,434.3563682,38.11421552,256.7515118,218.8941172,37.85739454,36.9649313,0.892463244,29.85396999,0,29.85396999,1.149284225,28.70468576,1.384915502,4.176567901,5.22522295,-5.22522295,0,0.321941613,0.287321056,9.241232825,0.266546022,1,0.189092942,0,0.940348448,0.979110411,0.724496596,1,35.81083307,0.832652508,0.04048676,0.312029739,0.891609879,0.616106475,0.961238037,0.922476074,0.198119594,8.883024499,36.00895266,9.715677007,160.548761,0,0.503950519,59.73828976,-0.503950519,120.2617102,0.95078391,0,188.6561314,9.715677007,195.0148477,11,16,3% +11/7/2018 1:00,89.60229573,249.0014387,0.184509426,3.094253037,0.163031618,1.237799717,1.078293194,0.159506523,0.158115613,0.00139091,0.049652451,0,0.049652451,0.004916005,0.044736447,1.563855078,4.345894947,144.0420981,-144.0420981,0,0.883595061,0.001229001,0.039528903,0.960163324,1,0.006942303,0,0.960620147,0.99938211,0.724496596,1,0.152133197,0.003561629,0.112672378,0.312029739,0.730577613,0.455074209,0.961238037,0.922476074,0.000884392,0.037996685,0.153017589,0.041558314,0.042955617,0,0.348482552,69.60547074,-0.348482552,110.3945293,0.906520794,0,0.191957749,0.041558314,0.219156835,11,17,14% +11/7/2018 2:00,101.4491093,257.8862275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770620981,4.500963766,-4.890903796,4.890903796,0.633452502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145517507,81.63275198,-0.145517507,98.36724802,0.706398732,0,0,0,0,11,18,0% +11/7/2018 3:00,113.1797751,266.6131302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975359722,4.653276951,-2.237962697,2.237962697,0.912867851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068593467,93.9332046,0.068593467,86.0667954,0,0,0,0,0,11,19,0% +11/7/2018 4:00,125.0144002,275.9880262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181912897,4.816899752,-1.283055276,1.283055276,0.749569064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287385675,106.7015048,0.287385675,73.29849524,0,0.876017772,0,0,0,11,20,0% +11/7/2018 5:00,136.6127355,287.2790949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384342034,5.013966078,-0.752115958,0.752115958,0.658773093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495957869,119.7329331,0.495957869,60.26706686,0,0.949184985,0,0,0,11,21,0% +11/7/2018 6:00,147.3566517,302.9503852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571858747,5.287481693,-0.385961483,0.385961483,0.59615699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680107601,132.8520519,0.680107601,47.14794807,0,0.976482221,0,0,0,11,22,0% +11/7/2018 7:00,155.7679692,327.8277618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.718663931,5.721673823,-0.094901996,0.094901996,0.546382887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827298552,145.8222259,0.827298552,34.17777412,0,0.989562326,0,0,0,11,23,0% +11/8/2018 8:00,158.6733418,4.79750227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769372249,0.08373221,0.16374695,-0.16374695,0.502151312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927514126,158.05057,0.927514126,21.94942999,0,0.996092465,0,0,0,11,0,0% +11/8/2018 9:00,154.1076268,39.41623763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689685491,0.687943125,0.417882299,-0.417882299,0.458691608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973939289,166.8907313,0.973939289,13.10926866,0,0.998662098,0,0,0,11,1,0% +11/8/2018 10:00,144.9210389,61.52992984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529349284,1.073899864,0.694603711,-0.694603711,0.411369459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963424324,164.4558673,0.963424324,15.54413268,0,0.998101788,0,0,0,11,2,0% +11/8/2018 11:00,133.8924635,75.82062915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336864331,1.32331962,1.034068348,-1.034068348,0.353317587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896698943,153.7274944,0.896698943,26.2725056,0,0.994239925,0,0,0,11,3,0% +11/8/2018 12:00,122.2075799,86.4976609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132924641,1.509668978,1.522151689,-1.522151689,0.26985042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778322247,141.1072176,0.778322247,38.89278243,0,0.985759256,0,0,0,11,4,0% +11/8/2018 13:00,110.3857984,95.63589358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92659563,1.669161226,2.426066667,-2.426066667,0.115271855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616371905,128.0516731,0.616371905,51.9483269,0,0.968880144,0,0,0,11,5,0% +11/8/2018 14:00,98.7401604,104.3472843,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723340903,1.821203676,5.370357311,-5.370357311,0,#DIV/0!,0,0,0.279659048,1,0.184098909,0,0.941005512,0.979767475,0.724496596,1,0,0,0.04224518,0.312029739,0.887194432,0.611691028,0.961238037,0.922476074,0,0,0,0,0,0,-0.421893684,114.9542015,0.421893684,65.04579845,0,0.93148673,0,0,0,11,6,0% +11/8/2018 15:00,87.29415229,113.3823418,8.439336539,59.83516537,5.614614179,5.508932129,0,5.508932129,5.445312846,0.063619284,14.41812363,12.20260744,2.215516184,0.169301333,2.046214851,1.523570375,1.978895178,-15.3781125,15.3781125,0,0.665290945,0.042325333,1.361328211,1,0.537029709,0,0.06493606,0.961238037,1,0.556910682,0.832414086,5.23424183,0.115880088,0.115824807,0.122217983,0.724496596,0.448993192,0.98744479,0.948682827,0.03066456,1.319806547,5.26490639,1.435686635,0,5.649444719,-0.203937056,101.7672824,0.203937056,78.23271763,0,0.804826312,5.26490639,5.982508394,9.180338483,11,7,74% +11/8/2018 16:00,77.06839825,123.3865123,158.8732056,509.6736216,44.8145099,50.51169781,5.850857397,44.66084041,43.46318708,1.197653332,39.87197089,0,39.87197089,1.351322821,38.52064807,1.345097299,2.153500892,-2.59749532,2.59749532,0.97435155,0.282077206,1.175600215,37.81134401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.77846862,0.979028784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.851718354,36.34570209,42.63018698,37.32473087,5.850857397,0,0.011479616,89.34225201,-0.011479616,90.65774799,0,0,42.63018698,37.32473087,67.05847684,11,8,57% +11/8/2018 17:00,67.92259415,134.989463,326.9341038,698.7623891,64.29806568,217.9879319,153.1641228,64.82380913,62.35924176,2.464567372,81.2077825,0,81.2077825,1.938823915,79.26895859,1.185472904,2.356010584,-1.042372746,1.042372746,0.708409928,0.196669803,1.887259445,60.70075117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.94207513,1.404671326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.367313043,58.34787089,61.30938817,59.75254221,153.1641228,0,0.219193427,77.33833648,-0.219193427,102.6616635,0.82189097,0,187.1935977,59.75254221,226.3004415,11,9,21% +11/8/2018 18:00,60.61559789,148.7273988,458.4316044,780.8451324,75.29700868,391.0223762,314.539999,76.48237713,73.02652605,3.455851076,113.4225326,0,113.4225326,2.270482628,111.15205,1.057941761,2.595782797,-0.34713706,0.34713706,0.589517623,0.164249166,2.270283389,73.02011783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.19587454,1.644956935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.644812587,70.18971471,71.84068713,71.83467165,314.539999,0,0.402819952,66.2454139,-0.402819952,113.7545861,0.925875066,0,363.0654295,71.83467165,410.0797854,11,10,13% +11/8/2018 19:00,55.93337178,164.7081617,538.8640892,817.0787495,81.17203678,531.8779613,449.0913758,82.7865855,78.72440038,4.062185122,133.1014736,0,133.1014736,2.447636402,130.6538372,0.976221499,2.874699726,0.121384589,-0.121384589,0.509395702,0.150635454,2.369464878,76.21013545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67288807,1.773304241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716669238,73.25608099,77.38955731,75.02938523,449.0913758,0,0.549630468,56.65833474,-0.549630468,123.3416653,0.959029788,0,508.0815645,75.02938523,557.1867965,11,11,10% +11/8/2018 20:00,54.58203898,182.1260635,561.3711785,825.891535,82.73674906,620.9465251,536.4727412,84.47378387,80.24193081,4.231853068,138.6057598,0,138.6057598,2.49481825,136.1109416,0.952636293,3.178699462,0.529640282,-0.529640282,0.439579867,0.147383322,2.209774003,71.07392797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.13159604,1.80748733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.600973743,68.31896299,78.73256978,70.12645032,536.4727412,0,0.649568035,49.49095855,-0.649568035,130.5090414,0.973025769,0,600.7343713,70.12645032,646.6307305,11,12,8% +11/8/2018 21:00,56.80612905,199.3194271,524.1508102,811.0319154,80.13215854,645.9930582,564.3259097,81.66714851,77.7158783,3.951270209,129.5027126,0,129.5027126,2.416280236,127.0864323,0.991453987,3.478780267,0.968534446,-0.968534446,0.364524545,0.152879967,1.82420667,58.67275717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70345829,1.750586806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321631522,56.39848592,76.02508981,58.14907272,564.3259097,0,0.69581221,45.90802474,-0.69581221,134.0919753,0.978141531,0,628.0156992,58.14907272,666.0731043,11,13,6% +11/8/2018 22:00,62.21410063,214.7733862,430.2000532,766.0154294,73.10746105,599.0421968,524.8961658,74.14603108,70.90300136,3.243029718,106.5114433,0,106.5114433,2.204459688,104.3069836,1.085840897,3.748502735,1.550269868,-1.550269868,0.265041928,0.169938289,1.264585211,40.67340736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15466183,1.59712354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91618768,39.09682625,69.07084951,40.69394979,524.8961658,0,0.685229234,46.74636225,-0.685229234,133.2536378,0.977031718,0,581.9110521,40.69394979,608.5444283,11,14,5% +11/8/2018 23:00,70.04780656,227.9400562,287.8164023,666.1224515,60.51146682,472.9280419,412.0715374,60.85650445,58.68682284,2.169681614,71.60906294,0,71.60906294,1.824643988,69.78441895,1.222564858,3.978304478,2.552964351,-2.552964351,0.093571073,0.210243288,0.61649696,19.82866143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41200637,1.321948358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.446649949,19.06006358,56.85865632,20.38201194,412.0715374,0,0.618612293,51.78513254,-0.618612293,128.2148675,0.969173931,0,456.2276481,20.38201194,469.5672672,11,15,3% +11/8/2018 0:00,79.54057511,239.0789022,115.1213556,427.6944252,37.47806514,251.4208447,214.2050481,37.2157966,36.34796319,0.867833406,29.04260744,0,29.04260744,1.130101943,27.9125055,1.388244925,4.172714015,5.318817277,-5.318817277,0,0.325552674,0.282525486,9.086990798,0.27505639,1,0.185842248,0,0.940776769,0.979538732,0.724496596,1,35.21670578,0.818755011,0.041630191,0.312029739,0.88873591,0.613232506,0.961238037,0.922476074,0.194663303,8.734761196,35.41136908,9.553516207,155.286581,0,0.500836662,59.94463145,-0.500836662,120.0553686,0.950167053,0,182.9595621,9.553516207,189.2121474,11,16,3% +11/8/2018 1:00,89.74750064,248.7678602,0.094826245,2.231845189,0.084990658,0.855537247,0.77239453,0.083142716,0.082427876,0.00071484,0.025554503,0,0.025554503,0.002562782,0.022991721,1.566389382,4.341818234,226.8606195,-226.8606195,0,0.896277793,0.000640695,0.020606969,0.974532219,1,0.004407964,0,0.960847063,0.999609026,0.724496596,1,0.079281954,0.001856727,0.11381904,0.312029739,0.728356436,0.452853032,0.961238037,0.922476074,0.000462159,0.019808202,0.079744113,0.021664929,0.019671175,0,0.346078901,69.75233019,-0.346078901,110.2476698,0.905524275,0,0.09755684,0.021664929,0.111736102,11,17,15% +11/8/2018 2:00,101.6062414,257.637933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773363454,4.496630209,-4.825729063,4.825729063,0.644598037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143002824,81.77835582,-0.143002824,98.22164418,0.700356554,0,0,0,0,11,18,0% +11/8/2018 3:00,113.3293954,266.3434667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977971089,4.648570435,-2.225004988,2.225004988,0.910651952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.07076663,94.05802111,0.07076663,85.94197889,0,0,0,0,0,11,19,0% +11/8/2018 4:00,125.1649499,275.6861987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184540484,4.81163187,-1.279166723,1.279166723,0.748904083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289228513,106.8117739,0.289228513,73.18822614,0,0.877126311,0,0,0,11,20,0% +11/8/2018 5:00,136.7761853,286.9315146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387194771,5.007899657,-0.75126912,0.75126912,0.658628276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497504251,119.8350195,0.497504251,60.16498049,0,0.949498346,0,0,0,11,21,0% +11/8/2018 6:00,147.5518003,302.554496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.575264733,5.280572122,-0.386570561,0.386570561,0.596261149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681411753,132.9540611,0.681411753,47.04593885,0,0.976622927,0,0,0,11,22,0% +11/8/2018 7:00,156.0184407,327.4763737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723035485,5.715540943,-0.096460744,0.096460744,0.546649448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828431327,145.9379329,0.828431327,34.06206708,0,0.989644967,0,0,0,11,23,0% +11/9/2018 8:00,158.9618264,4.801532429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774407255,0.08380255,0.161342631,-0.161342631,0.502562475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928558127,158.2111574,0.928558127,21.78884261,0,0.996153075,0,0,0,11,0,0% +11/9/2018 9:00,154.3622046,39.72751907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.69412871,0.693376011,0.414486593,-0.414486593,0.459272308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974983185,167.1570969,0.974983185,12.84290315,0,0.998717064,0,0,0,11,1,0% +11/9/2018 10:00,145.1323348,61.87164511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533037094,1.079863921,0.689771102,-0.689771102,0.412195884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964556735,164.6998516,0.964556735,15.30014835,0,0.998162717,0,0,0,11,2,0% +11/9/2018 11:00,134.0799163,76.12438163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340136001,1.3286211,1.026750322,-1.026750322,0.354569043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89800233,153.8967123,0.89800233,26.10328769,0,0.994320857,0,0,0,11,3,0% +11/9/2018 12:00,122.3861987,86.76454249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136042127,1.51432694,1.50957933,-1.50957933,0.27200042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77986722,141.2484198,0.77986722,38.7515802,0,0.985886522,0,0,0,11,4,0% +11/9/2018 13:00,110.5654795,95.87554448,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929731655,1.673343923,2.398116561,-2.398116561,0.120051605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618212341,128.1857073,0.618212341,51.81429268,0,0.96912164,0,0,0,11,5,0% +11/9/2018 14:00,98.92809155,104.5673002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72662092,1.825043679,5.241692503,-5.241692503,0,#DIV/0!,0,0,0.268058026,1,0.188512803,0,0.94042506,0.979187024,0.724496596,1,0,0,0.04069051,0.312029739,0.891097005,0.615593601,0.961238037,0.922476074,0,0,0,0,0,0,-0.424063,115.0913688,0.424063,64.90863124,0,0.932092991,0,0,0,11,6,0% +11/9/2018 15:00,87.48472199,113.5865877,7.179367049,52.17625035,4.889571417,4.7962539,0,4.7962539,4.742132798,0.054121101,12.64996706,10.76180778,1.88815928,0.147438619,1.740720661,1.526896444,1.982459942,-16.48906226,16.48906226,0,0.681058843,0.036859655,1.1855332,1,0.574458924,0,0.060572075,0.961238037,1,0.567128825,0.842632229,4.558318421,0.100902102,0.115824807,0.133752545,0.724496596,0.448993192,0.986079574,0.947317611,0.026704694,1.14947493,4.585023116,1.250377032,0,4.579591264,-0.206258742,101.9031946,0.206258742,78.09680544,0,0.807586033,4.585023116,4.948790972,7.823907831,11,7,71% +11/9/2018 16:00,77.28844718,123.573954,154.9574491,503.4262853,44.18206853,48.379617,4.361666149,44.01795085,42.84981615,1.168134705,38.90347994,0,38.90347994,1.332252381,37.57122756,1.348937877,2.156772367,-2.632355642,2.632355642,0.980313017,0.285123876,1.151694664,37.04245933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.18887315,0.965212315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.834398864,35.60662089,42.02327202,36.5718332,4.361666149,0,0.008663962,89.50358534,-0.008663962,90.49641466,0,0,42.02327202,36.5718332,65.95880541,11,8,57% +11/9/2018 17:00,68.16613229,135.1519042,322.5184776,695.5463214,63.83325355,214.6301458,150.2904198,64.33972596,61.90844544,2.431280517,80.123147,0,80.123147,1.924808114,78.19833889,1.189723447,2.358845719,-1.048811435,1.048811435,0.709511008,0.197921229,1.864804183,59.97851274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50875256,1.394516927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351044282,57.65362784,60.85979684,59.04814477,150.2904198,0,0.216075357,77.52137622,-0.216075357,102.4786238,0.818599249,0,183.8874216,59.04814477,222.5332514,11,9,21% +11/9/2018 18:00,60.88224568,148.8469332,453.8061555,778.7053846,74.8833544,387.1109497,311.0646222,76.04632746,72.62534497,3.420982489,112.2885658,0,112.2885658,2.258009425,110.0305564,1.062595643,2.597869066,-0.347273187,0.347273187,0.589540902,0.165011764,2.248514231,72.31994688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81024403,1.635920142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629040906,69.51668376,71.43928493,71.1526039,311.0646222,0,0.399463813,66.45533688,-0.399463813,113.5446631,0.924832217,0,359.121869,71.1526039,405.6898252,11,10,13% +11/9/2018 19:00,56.21636677,164.759464,534.1689715,815.365617,80.778219,527.6488125,445.2795635,82.369249,78.34245766,4.026791341,131.9512129,0,131.9512129,2.435761343,129.5154515,0.981160694,2.875595121,0.124019936,-0.124019936,0.508945031,0.151222222,2.348438623,75.53385883,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.3057502,1.764700801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701435788,72.60601817,77.00718599,74.37071898,445.2795635,0,0.546110302,56.8994295,-0.546110302,123.1005705,0.958443405,0,503.7824468,74.37071898,552.456595,11,11,10% +11/9/2018 20:00,54.86659469,182.0908335,556.7213818,824.2996963,82.35161019,616.536582,532.4713758,84.06520623,79.8684053,4.196800936,137.4667494,0,137.4667494,2.483204892,134.9835445,0.957602727,3.178084583,0.534439441,-0.534439441,0.438759162,0.147922485,2.189803862,70.43161961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.77254911,1.799073491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586505444,67.70155177,78.35905456,69.50062526,532.4713758,0,0.645968181,49.76169474,-0.645968181,130.2383053,0.972596807,0,596.2390143,69.50062526,641.7257836,11,12,8% +11/9/2018 21:00,57.0749265,199.203535,519.6527236,809.3291475,79.74847916,641.4969516,560.2358216,81.26113,77.34376827,3.917361733,128.4005301,0,128.4005301,2.404710887,125.9958192,0.996145388,3.476757568,0.976105567,-0.976105567,0.363229807,0.15346495,1.805714599,58.07798861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.34577197,1.742204852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30823408,55.82677175,75.65400605,57.5689766,560.2358216,0,0.69222247,46.19370486,-0.69222247,133.8062951,0.977768886,0,623.4351614,57.5689766,661.1129052,11,13,6% +11/9/2018 22:00,62.45594712,214.6019122,425.9568083,763.8854652,72.71289303,594.5020202,520.7706468,73.73137337,70.52033103,3.211042346,105.4707217,0,105.4707217,2.192562007,103.2781597,1.090061915,3.745509949,1.562947879,-1.562947879,0.262873861,0.17070485,1.248147791,40.14472342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78682455,1.58850371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904278825,38.58863513,68.69110338,40.17713884,520.7706468,0,0.681739175,47.02030175,-0.681739175,132.9796982,0.976658168,0,577.3060093,40.17713884,603.6011431,11,14,5% +11/9/2018 23:00,70.2601391,227.7375318,283.950507,662.8583162,60.07000366,468.2600976,407.8608874,60.39921028,58.25867142,2.140538863,70.65842014,0,70.65842014,1.811332245,68.8470879,1.22627076,3.974769759,2.579049183,-2.579049183,0.089110304,0.211550965,0.603225038,19.4017908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.00045094,1.312304046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437034487,18.6497393,56.43748543,19.96204335,407.8608874,0,0.615306284,52.0258212,-0.615306284,127.9741788,0.968739656,0,451.5485014,19.96204335,464.6132595,11,15,3% +11/9/2018 0:00,79.7258104,238.8593934,111.9629661,421.1194061,36.85253839,246.2172741,209.6319516,36.58532252,35.74129839,0.844024132,28.25795739,0,28.25795739,1.111240004,27.14671739,1.39147789,4.168882865,5.412811921,-5.412811921,0,0.329149358,0.277810001,8.935324596,0.283406684,1,0.182686991,0,0.941190274,0.979952237,0.724496596,1,34.63213287,0.8050896,0.042744167,0.312029739,0.885945911,0.610442507,0.961238037,0.922476074,0.191278301,8.588973874,34.82341118,9.394063474,150.2208554,0,0.49779694,60.14564657,-0.49779694,119.8543534,0.949557438,0,177.4667418,9.394063474,183.6149684,11,16,3% +11/9/2018 1:00,89.88677297,248.53581,0.03418755,1.593142132,0.031039209,0.578027181,0.547666198,0.030360982,0.030103262,0.00025772,0.009225114,0,0.009225114,0.000935947,0.008289167,1.568820142,4.337768194,505.8597669,-505.8597669,0,0.907909732,0.000233987,0.007525816,0.988502702,1,0.00197683,0,0.961063279,0.999825243,0.724496596,1,0.028944556,0.00067809,0.114923487,0.312029739,0.726227055,0.450723651,0.961238037,0.922476074,0.000169186,0.0072341,0.029113742,0.00791219,0.006296681,0,0.343764808,69.89358674,-0.343764808,110.1064133,0.90455172,0,0.034809416,0.00791219,0.039987786,11,17,15% +11/9/2018 2:00,101.757703,257.3912728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776006957,4.492325177,-4.764524297,4.764524297,0.655064669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.140577273,81.91874807,-0.140577273,98.08125193,0.694323732,0,0,0,0,11,18,0% +11/9/2018 3:00,113.4731539,266.0754282,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980480148,4.64389228,-2.212748781,2.212748781,0.908556017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072847813,94.17757271,0.072847813,85.82242729,0,0,0,0,0,11,19,0% +11/9/2018 4:00,125.309341,275.3857496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187060584,4.806388044,-1.275535831,1.275535831,0.748283163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290979967,106.9166343,0.290979967,73.08336566,0,0.878166865,0,0,0,11,20,0% +11/9/2018 5:00,136.9330684,286.584397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389932899,5.001841313,-0.750546413,0.750546413,0.658504685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498963249,119.9314328,0.498963249,60.06856722,0,0.949792219,0,0,0,11,21,0% +11/9/2018 6:00,147.7399959,302.1561917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.578549365,5.2736204,-0.387246414,0.387246414,0.596376727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682635641,133.0499462,0.682635641,46.9500538,0,0.976754484,0,0,0,11,22,0% +11/9/2018 7:00,156.2623635,327.1160332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72729274,5.709251816,-0.098054952,0.098054952,0.546922074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829493585,146.046752,0.829493585,33.95324799,0,0.989722258,0,0,0,11,23,0% +11/10/2018 8:00,159.2457806,4.795485242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779363191,0.083697007,0.158924396,-0.158924396,0.502976017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929543314,158.3637376,0.929543314,21.63626238,0,0.996210145,0,0,0,11,0,0% +11/10/2018 9:00,154.6138139,40.03219849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698520122,0.69869367,0.411096524,-0.411096524,0.459852044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975981116,167.4169138,0.975981116,12.58308615,0,0.998769501,0,0,0,11,1,0% +11/10/2018 10:00,145.3418067,62.20690352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536693067,1.085715284,0.684968646,-0.684968646,0.413017152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965656289,164.9404469,0.965656289,15.05955306,0,0.998221742,0,0,0,11,2,0% +11/10/2018 11:00,134.2663501,76.42196324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343389884,1.333814879,1.019505147,-1.019505147,0.355808041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899285323,154.0642846,0.899285323,25.93571544,0,0.994400294,0,0,0,11,3,0% +11/10/2018 12:00,122.5642608,87.02559095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139149897,1.518883096,1.497184447,-1.497184447,0.27412007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781402757,141.3891905,0.781402757,38.61080946,0,0.986012511,0,0,0,11,4,0% +11/10/2018 13:00,110.7447982,96.10954728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932861358,1.677428043,2.370759381,-2.370759381,0.124729958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62005204,128.3199348,0.62005204,51.68006519,0,0.969361607,0,0,0,11,5,0% +11/10/2018 14:00,99.1156332,104.7816614,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72989414,1.828784987,5.11880218,-5.11880218,0,#DIV/0!,0,0,0.256623322,1,0.192928336,0,0.939840078,0.978602041,0.724496596,1,0,0,0.039143132,0.312029739,0.895000233,0.619496828,0.961238037,0.922476074,0,0,0,0,0,0,-0.426237418,115.2290131,0.426237418,64.77098689,0,0.932694485,0,0,0,11,6,0% +11/10/2018 15:00,87.67378549,113.7849942,6.034664027,45.01732134,4.207458259,4.126079715,0,4.126079715,4.080587869,0.045491846,10.97948341,9.389438857,1.590044551,0.12687039,1.46317416,1.530196225,1.985922788,-17.77199361,17.77199361,0,0.697214997,0.031717598,1.020146967,1,0.610795534,0,0.056209036,0.961238037,1,0.577496069,0.852999473,3.922416272,0.086871103,0.115824807,0.145458028,0.724496596,0.448993192,0.984663076,0.945901113,0.022979291,0.989110777,3.945395564,1.07598188,0,3.654411535,-0.208573913,102.038793,0.208573913,77.96120702,0,0.810276828,3.945395564,4.037066867,6.587575087,11,7,67% +11/10/2018 16:00,77.50735864,123.7552478,151.0716818,497.0852272,43.54507667,46.27484876,2.903974658,43.3708741,42.23203195,1.138842151,37.94212304,0,37.94212304,1.313044726,36.62907831,1.352758603,2.15993654,-2.668514135,2.668514135,0.986496483,0.288241159,1.127896457,36.27702717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,40.59503548,0.951296434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817157143,34.87085838,41.41219262,35.82215481,2.903974658,0,0.005842006,89.66527583,-0.005842006,90.33472417,0,0,41.41219262,35.82215481,64.85707651,11,8,57% +11/10/2018 17:00,68.40781404,135.3079157,318.1328982,692.2993654,63.3682924,211.2842146,147.4284899,63.85572475,61.45750458,2.398220167,79.04579221,0,79.04579221,1.91078782,77.13500439,1.193941589,2.361568633,-1.055515281,1.055515281,0.710657433,0.199188115,1.842531052,59.26213228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.07529105,1.384359271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334907475,56.96501569,60.41019853,58.34937496,147.4284899,0,0.212954825,77.70443105,-0.212954825,102.295569,0.815208419,0,180.5951446,58.34937496,218.7836435,11,9,21% +11/10/2018 18:00,61.14603729,148.96012,449.2206213,776.5558507,74.47123882,383.2155304,307.6034594,75.612071,72.2256562,3.386414795,111.1643231,0,111.1643231,2.24558262,108.9187405,1.067199675,2.599844549,-0.347547252,0.347547252,0.58958777,0.165778763,2.22699239,71.6277305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.42604798,1.626916964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.613448406,68.85129905,71.03949638,70.47821601,307.6034594,0,0.396112474,66.66462569,-0.396112474,113.3353743,0.923773225,0,355.1953362,70.47821601,401.3219191,11,10,13% +11/10/2018 19:00,56.49538546,164.8053392,529.5264266,813.6521773,80.38705313,523.4464845,441.4916038,81.95488076,77.96308688,3.991793876,130.813779,0,130.813779,2.423966249,128.3898128,0.986030488,2.876395795,0.126541582,-0.126541582,0.508513805,0.151809332,2.327718778,74.86743739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94108458,1.756155296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.686424331,71.96542854,76.62750891,73.72158384,441.4916038,0,0.542604833,57.13886222,-0.542604833,122.8611378,0.957851908,0,499.511084,73.72158384,547.7603862,11,11,10% +11/10/2018 20:00,55.14623936,182.052033,552.1378391,822.7139837,81.97012476,612.1678878,528.5072165,83.66067131,79.49842306,4.162248255,136.3439132,0,136.3439132,2.471701699,133.8722115,0.962483447,3.177407386,0.539119422,-0.539119422,0.437958839,0.148459531,2.170192935,69.80086479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41690811,1.790739467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.572297394,67.09524624,77.98920551,68.88598571,528.5072165,0,0.642394838,50.02937076,-0.642394838,129.9706292,0.972166249,0,591.7860836,68.88598571,636.8705835,11,12,8% +11/10/2018 21:00,57.33829405,199.0861516,515.234396,807.6391838,79.36948241,637.0588652,556.1986111,80.86025419,76.97619968,3.884054513,127.3178272,0,127.3178272,2.393282737,124.9245445,1.000742019,3.474708841,0.983531651,-0.983531651,0.361959871,0.154045388,1.787624479,57.49614815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.99245106,1.733925196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295127849,55.26748457,75.28757891,57.00140977,556.1986111,0,0.688672147,46.47491047,-0.688672147,133.5250895,0.977396512,0,618.9141613,57.00140977,656.220444,11,13,6% +11/10/2018 22:00,62.69219863,214.4304795,421.8055474,761.778105,72.32419169,590.0384399,516.715341,73.32309885,70.14335047,3.179748388,104.4524797,0,104.4524797,2.180841227,102.2716385,1.094185281,3.742517884,1.575427259,-1.575427259,0.260739761,0.171463349,1.232139137,39.62983008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4244565,1.580012045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.89268061,38.09370007,68.31713711,39.67371212,516.715341,0,0.678301644,47.28893035,-0.678301644,132.7110696,0.976286483,0,572.7793399,39.67371212,598.744991,11,14,5% +11/10/2018 23:00,70.46686832,227.5359275,280.1864635,659.6355345,59.63607424,463.6899532,403.7399627,59.94999048,57.83782657,2.112163913,69.73269963,0,69.73269963,1.798247672,67.93445196,1.229878866,3.971251101,2.604844485,-2.604844485,0.084699048,0.212844238,0.590382723,18.98873781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.59591887,1.302824317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427730273,18.25269706,56.02364914,19.55552137,403.7399627,0,0.612065211,52.26101856,-0.612065211,127.7389814,0.968309358,0,446.9688332,19.55552137,459.7675309,11,15,3% +11/10/2018 0:00,79.90544863,238.6412649,108.9140835,414.6424406,36.23841653,241.1455433,205.1788084,35.96673493,35.14569457,0.821040367,27.50020248,0,27.50020248,1.092721964,26.40748051,1.394613169,4.165075804,5.507041976,-5.507041976,0,0.332724799,0.273180491,8.786423642,0.291587006,1,0.179628435,0,0.941588995,0.980350958,0.724496596,1,34.05788166,0.791673343,0.043827912,0.312029739,0.883241043,0.607737639,0.961238037,0.922476074,0.187967533,8.445844612,34.24584919,9.237517956,145.351334,0,0.49483311,60.34125398,-0.49483311,119.658746,0.948955832,0,172.1778452,9.237517956,178.223616,11,16,4% +11/10/2018 1:00,90.02040336,248.3053851,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571152433,4.333746521,-2806.926116,2806.926116,0,#DIV/0!,0,0,1,0.99791468,0,0.000356262,0.961238037,1,0.72348686,0.998990265,0,0,0.115824807,0.310882218,0.724496596,0.448993192,0.961419519,0.922657555,0,0,0,0,0,0,0.341535907,70.02952252,-0.341535907,109.9704775,0.903602509,0,0,0,0,11,17,0% +11/10/2018 2:00,101.9034433,257.1463675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778550605,4.488050772,-4.707074303,4.707074303,0.664889196,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.138241913,82.0538739,-0.138241913,97.9461261,0.688315191,0,0,0,0,11,18,0% +11/10/2018 3:00,113.6110086,265.8091665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982886166,4.639245137,-2.201177328,2.201177328,0.906577182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074836365,94.2918203,0.074836365,85.7081797,0,0,0,0,0,11,19,0% +11/10/2018 4:00,125.4475359,275.0868777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189472539,4.801171744,-1.2721592,1.2721592,0.747705725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292639787,107.0160625,0.292639787,72.98393749,0,0.879141483,0,0,0,11,20,0% +11/10/2018 5:00,137.0833415,286.2380133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392555659,4.995795776,-0.749946634,0.749946634,0.658402117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50033497,120.0221639,0.50033497,59.9778361,0,0.950066949,0,0,0,11,21,0% +11/10/2018 6:00,147.9211651,301.7558207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581711365,5.266632608,-0.387988283,0.387988283,0.596503594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683779667,133.1397103,0.683779667,46.86028968,0,0.97687703,0,0,0,11,22,0% +11/10/2018 7:00,156.499604,326.746911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731433368,5.702809417,-0.099683869,0.099683869,0.547200635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830485943,146.1486885,0.830485943,33.85131154,0,0.989794285,0,0,0,11,23,0% +11/11/2018 8:00,159.5250874,4.778996563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.784238015,0.083409225,0.156493144,-0.156493144,0.503391786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930470418,158.5082637,0.930470418,21.49173632,0,0.99626374,0,0,0,11,0,0% +11/11/2018 9:00,154.8624054,40.32990424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.702858861,0.703889616,0.407713251,-0.407713251,0.460430617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97693382,167.6699789,0.97693382,12.33002106,0,0.99881946,0,0,0,11,1,0% +11/11/2018 10:00,145.549428,62.53544767,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540316744,1.091449461,0.68019788,-0.68019788,0.413833001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966723625,165.1776399,0.966723625,14.82236012,0,0.99827891,0,0,0,11,2,0% +11/11/2018 11:00,134.4517342,76.71319699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346625447,1.338897867,1.012334848,-1.012334848,0.357034235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900548364,154.2302411,0.900548364,25.76975889,0,0.994478273,0,0,0,11,3,0% +11/11/2018 12:00,122.7417223,87.28067374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142247184,1.52333513,1.484969259,-1.484969259,0.27620899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782929018,141.5295414,0.782929018,38.47045865,0,0.98613725,0,0,0,11,4,0% +11/11/2018 13:00,110.9236947,96.33779626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935983691,1.681411739,2.343990858,-2.343990858,0.129307645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621890812,128.4543434,0.621890812,51.54565657,0,0.969600034,0,0,0,11,5,0% +11/11/2018 14:00,99.30270833,104.9902819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733159217,1.832426102,5.001374999,-5.001374999,0,#DIV/0!,0,0,0.245358089,1,0.197342689,0,0.939250947,0.978012911,0.724496596,1,0,0,0.037603923,0.312029739,0.89890161,0.623398206,0.961238037,0.922476074,0,0,0,0,0,0,-0.428416356,115.3671,0.428416356,64.63289997,0,0.933291104,0,0,0,11,6,0% +11/11/2018 15:00,87.86117014,113.9774946,5.005310148,38.39525389,3.572362643,3.502374871,0,3.502374871,3.464642729,0.037732142,9.418118518,8.096803209,1.321315309,0.107719914,1.213595395,1.533466704,1.989282555,-19.26829815,19.26829815,0,0.713714543,0.026929979,0.866160682,1,0.646046108,0,0.051852199,0.961238037,1,0.587999361,0.863502765,3.330346375,0.073843602,0.115824807,0.157321021,0.724496596,0.448993192,0.9831958,0.944433837,0.019510678,0.839721865,3.349857053,0.913565468,0,2.86589501,-0.210880314,102.1739459,0.210880314,77.82605411,0,0.812898684,3.349857053,3.24324775,5.472497841,11,7,63% +11/11/2018 16:00,77.72502119,123.9303512,147.2183797,490.6528488,42.90377451,44.19925083,1.479389092,42.71986174,41.61006741,1.109794332,36.9885077,0,36.9885077,1.2937071,35.6948006,1.356557531,2.162992672,-2.706012043,2.706012043,0.992909003,0.291429471,1.104218202,35.5154531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.99717951,0.93728639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800002328,34.13880441,40.79718184,35.0760908,1.479389092,0,0.003015144,89.8272447,-0.003015144,90.1727553,0,0,40.79718184,35.0760908,63.75378175,11,8,56% +11/11/2018 17:00,68.64751607,135.4574873,313.7799215,689.0233298,62.90341046,207.9522726,144.5802265,63.37204614,61.00664055,2.365405589,77.97634469,0,77.97634469,1.896769914,76.07957478,1.198125179,2.364179149,-1.062487858,1.062487858,0.711849814,0.200469839,1.82045218,58.55199988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64190339,1.374203346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318911408,56.28240942,59.9608148,57.65661276,144.5802265,0,0.209833572,77.88740068,-0.209833572,102.1125993,0.811715918,0,177.3188861,57.65661276,215.053986,11,9,21% +11/11/2018 18:00,61.40684493,149.0669868,444.6777369,774.398134,74.06088436,379.3386285,304.1587845,75.17984405,71.82767544,3.352168614,110.0504745,0,110.0504745,2.233208919,107.8172656,1.071751627,2.601709725,-0.347962162,0.347962162,0.589658724,0.166549567,2.205729916,70.94385626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04349373,1.61795226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598043816,68.19393312,70.64153755,69.81188538,304.1587845,0,0.392767972,66.8731593,-0.392767972,113.1268407,0.922698378,0,351.2883545,69.81188538,396.9788373,11,10,13% +11/11/2018 19:00,56.77030602,164.8458418,524.9392632,811.9399545,79.99875863,519.2737839,437.7300691,81.54371479,77.58650089,3.957213901,129.6898596,0,129.6898596,2.412257737,127.2776019,0.990828757,2.877102698,0.128945583,-0.128945583,0.508102696,0.152396218,2.307316822,74.21124034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.5790958,1.747672519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.671643183,71.33466697,76.25073898,73.08233949,437.7300691,0,0.539116306,57.37649778,-0.539116306,122.6235022,0.957255634,0,495.2703138,73.08233949,543.1012434,11,11,10% +11/11/2018 20:00,55.42086278,182.0097177,547.6233101,821.1360005,81.59251334,607.8434444,524.5830305,83.26041385,79.13219802,4.128215829,135.237927,0,135.237927,2.460315321,132.7776117,0.96727653,3.176668845,0.543674546,-0.543674546,0.437179866,0.148993865,2.150951594,69.18199712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.06487867,1.782490075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.558357108,66.50036709,77.62323578,68.28285717,524.5830305,0,0.638850361,50.29385285,-0.638850361,129.7061472,0.971734411,0,587.3786178,68.28285717,632.0683822,11,12,8% +11/11/2018 21:00,57.59613147,198.9673228,510.8984126,805.9639305,78.99539754,632.6819136,552.2171507,80.46476288,76.61339485,3.851368038,126.2552378,0,126.2552378,2.382002698,123.8732351,1.005242131,3.472634887,0.990803812,-0.990803812,0.360716259,0.154620558,1.769944969,56.92751434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.64370926,1.725752846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282319105,54.72089213,74.92602836,56.44664497,552.2171507,0,0.685163603,46.75152503,-0.685163603,133.248475,0.977024728,0,614.45584,56.44664497,651.3990403,11,13,6% +11/11/2018 22:00,62.92276317,214.2591355,417.7485491,759.696004,71.94161594,585.6546663,512.7331905,72.92147581,69.77231079,3.14916502,103.4572774,0,103.4572774,2.169305157,101.2879722,1.098209392,3.739527368,1.58769176,-1.58769176,0.258642408,0.172212725,1.216565336,39.12892312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.06779905,1.571654202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881397444,37.61220924,67.94919649,39.18386344,512.7331905,0,0.674918899,47.55214745,-0.674918899,132.4478526,0.975917025,0,568.3342463,39.18386344,593.9793013,11,14,5% +11/11/2018 23:00,70.66791198,227.3353039,276.5260537,656.4587516,59.21003922,459.2211168,399.7119085,59.50920827,57.42463807,2.084570198,68.83234438,0,68.83234438,1.785401144,67.04694323,1.23338774,3.967749558,2.630310497,-2.630310497,0.080344103,0.214121015,0.577971596,18.58955328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.19874637,1.293517051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.418738453,17.8689857,55.61748482,19.16250275,399.7119085,0,0.608891126,52.49063272,-0.608891126,127.5093673,0.967883513,0,442.4920512,19.16250275,455.0335259,11,15,3% +11/11/2018 0:00,80.07942068,238.4245948,105.9752683,408.2748172,35.63649153,236.2103383,200.8495321,35.36080617,34.56191983,0.798886336,26.76950243,0,26.76950243,1.074571704,25.69493073,1.397649554,4.161294197,5.601327795,-5.601327795,0,0.336271775,0.268642926,8.640479957,0.299587348,1,0.176667834,0,0.941972963,0.980734926,0.724496596,1,33.49472835,0.778523542,0.04488065,0.312029739,0.880622454,0.60511905,0.961238037,0.922476074,0.184734023,8.305557992,33.67946237,9.084081534,140.6775534,0,0.491946904,60.53137358,-0.491946904,119.4686264,0.948363015,0,167.0928511,9.084081534,173.0382008,11,16,4% +11/11/2018 1:00,90.14875295,248.0766834,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573392556,4.329754922,-384.9562061,384.9562061,0,#DIV/0!,0,0,1,0.984700483,0,0.002597692,0.961238037,1,0.717156768,0.992660172,0,0,0.115824807,0.303688798,0.724496596,0.448993192,0.962551047,0.923789084,0,0,0,0,0,0,0.339386657,70.1604897,-0.339386657,109.8395103,0.90267541,0,0,0,0,11,17,0% +11/11/2018 2:00,102.0434134,256.9033381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780993545,4.48380911,-4.653183566,4.653183566,0.674105055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135997773,82.18367979,-0.135997773,97.81632021,0.682346921,0,0,0,0,11,18,0% +11/11/2018 3:00,113.7429199,265.5448346,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985188453,4.634631675,-2.190275033,2.190275033,0.90471278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076731669,94.40072642,0.076731669,85.59927358,0,0,0,0,0,11,19,0% +11/11/2018 4:00,125.5795001,274.7897837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191775749,4.795986476,-1.269033644,1.269033644,0.747171224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294207751,107.1100368,0.294207751,72.88996324,0,0.880052064,0,0,0,11,20,0% +11/11/2018 5:00,137.2269653,285.8926389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395062368,4.989767856,-0.749468642,0.749468642,0.658320376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50161955,120.1072065,0.50161955,59.89279348,0,0.950322864,0,0,0,11,21,0% +11/11/2018 6:00,148.0952397,301.3537452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584749539,5.259615067,-0.388795427,0.388795427,0.596641623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684844263,133.2233605,0.684844263,46.77663949,0,0.9769907,0,0,0,11,22,0% +11/11/2018 7:00,156.7300312,326.3692066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735455081,5.696217232,-0.10134675,0.10134675,0.547485005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831409039,146.2437536,0.831409039,33.75624642,0,0.98986113,0,0,0,11,23,0% +11/12/2018 8:00,159.7996288,4.751698732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789029666,0.082932788,0.154049777,-0.154049777,0.503809626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931340187,158.6446987,0.931340187,21.35530128,0,0.996313924,0,0,0,11,0,0% +11/12/2018 9:00,155.10793,40.62025392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.707144074,0.708957174,0.404337932,-0.404337932,0.461007831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97784205,167.9160861,0.97784205,12.08391387,0,0.998866997,0,0,0,11,1,0% +11/12/2018 10:00,145.7551732,62.85701629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543907674,1.097061892,0.675460328,-0.675460328,0.41464317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967759396,165.4114207,0.967759396,14.58857925,0,0.998334266,0,0,0,11,2,0% +11/12/2018 11:00,134.6360382,76.99790457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349842158,1.343866952,1.005241418,-1.005241418,0.358247283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901791903,154.3946138,0.901791903,25.60538619,0,0.994554836,0,0,0,11,3,0% +11/12/2018 12:00,122.9185393,87.52965804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145333223,1.527680726,1.47293589,-1.47293589,0.278266818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784446165,141.6694843,0.784446165,38.33051574,0,0.986260763,0,0,0,11,4,0% +11/12/2018 13:00,111.102109,96.56018599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939097609,1.685293172,2.317806619,-2.317806619,0.133785414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623728467,128.588921,0.623728467,51.41107898,0,0.969836912,0,0,0,11,5,0% +11/12/2018 14:00,99.48923991,105.1930767,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736414807,1.835965539,4.889121808,-4.889121808,0,#DIV/0!,0,0,0.234265329,1,0.201752991,0,0.938658072,0.977420035,0.724496596,1,0,0,0.03607376,0.312029739,0.902798592,0.627295187,0.961238037,0.922476074,0,0,0,0,0,0,-0.430599229,115.5055947,0.430599229,64.49440527,0,0.933882746,0,0,0,11,6,0% +11/12/2018 15:00,88.04669791,114.1640237,4.090226735,32.34012744,2.987915128,2.92865232,0,2.92865232,2.897818463,0.030833857,7.975945677,6.894126185,1.081819492,0.090096665,0.991722827,1.536704774,1.992538102,-21.03366469,21.03366469,0,0.7305011,0.022524166,0.724454616,1,0.680217165,0,0.04750706,0.961238037,1,0.598624322,0.874127726,2.78549333,0.061871685,0.115824807,0.169326442,0.724496596,0.448993192,0.981678611,0.942916648,0.016318682,0.702201689,2.801812012,0.764073374,0,2.204623214,-0.213175604,102.3085159,0.213175604,77.69148405,0,0.815451585,2.801812012,2.561836867,4.478483005,11,7,60% +11/12/2018 16:00,77.941324,124.0992231,143.3999962,484.1318424,42.25841909,42.15463755,0.089455969,42.06518158,40.98417184,1.081009744,36.04323655,0,36.04323655,1.274247253,34.7689893,1.360332727,2.165940042,-2.744891423,2.744891423,0.999557769,0.294689123,1.080672565,34.75814448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.39554488,0.923187797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782943595,33.41085057,40.17848848,34.33403837,0.089455969,0,0.000184776,89.98941311,-0.000184776,90.01058689,0,0,40.17848848,34.33403837,62.64942991,11,8,56% +11/12/2018 17:00,68.88511619,135.6006096,309.4620842,685.7201435,62.43884207,204.6364389,141.7475024,62.88893651,60.5560806,2.332855908,76.91542661,0,76.91542661,1.882761463,75.03266515,1.202272083,2.366677105,-1.069732575,1.069732575,0.713088734,0.201765726,1.798579635,57.84850363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20880804,1.364054271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303064823,55.60618206,59.51187286,56.97023634,141.7475024,0,0.206713342,78.07018514,-0.206713342,101.9298149,0.808119144,0,174.0607432,56.97023634,211.3466234,11,9,21% +11/12/2018 18:00,61.66454231,149.1675607,440.1802186,772.2339121,73.65251656,375.482744,300.7328582,74.74988585,71.43162143,3.31826442,108.9476853,0,108.9476853,2.220895123,106.7267902,1.076249295,2.603465072,-0.348520808,0.348520808,0.589754258,0.167323549,2.184738763,70.2687086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.66279156,1.609030956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582835797,67.54495551,70.24562735,69.15398647,300.7328582,0,0.389432338,67.08081755,-0.389432338,112.9191825,0.921607992,0,347.4034328,69.15398647,392.6633339,11,10,13% +11/12/2018 19:00,57.04100817,164.881025,520.4102677,810.2305275,79.61355675,515.1335061,433.9975194,81.13598669,77.21291427,3.92307242,128.580137,0,128.580137,2.400642479,126.1794945,0.995553401,2.877716761,0.131227946,-0.131227946,0.507712389,0.152982294,2.287244109,73.56563288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.21999013,1.739257304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657100571,70.71408453,75.8770907,72.45334183,433.9975194,0,0.535646961,57.61220267,-0.535646961,122.3877973,0.956654936,0,491.0629597,72.45334183,538.4822229,11,11,10% +11/12/2018 20:00,55.69035604,181.9639421,543.1805274,819.5673973,81.21899765,603.5662397,520.7015702,82.86466946,78.7699452,4.094724256,134.14946,0,134.14946,2.449052445,131.7004076,0.971980075,3.175869909,0.548099039,-0.548099039,0.436423234,0.14952487,2.132090065,68.57534551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.71666749,1.77433016,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.544691994,65.91723049,77.26135948,67.69156065,520.7015702,0,0.635337096,50.55500926,-0.635337096,129.4449907,0.97130162,0,583.0196384,67.69156065,627.322411,11,12,8% +11/12/2018 21:00,57.84833965,198.8470939,506.6473265,804.3053414,78.62645466,628.3691928,548.2942942,80.07489851,76.25557695,3.819321556,125.2133878,0,125.2133878,2.370877709,122.8425101,1.009643994,3.470536497,0.997912994,-0.997912994,0.359500517,0.155189716,1.752684561,56.37236029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29976109,1.717692829,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269813998,54.18725694,74.56957508,55.90494977,548.2942942,0,0.681699183,47.02343367,-0.681699183,132.9765663,0.976653865,0,610.063317,55.90494977,646.6519885,11,13,6% +11/12/2018 22:00,63.14754995,214.0879276,413.7880545,757.6418753,71.56542592,581.3538882,508.8271148,72.52677342,69.40746428,3.11930914,102.4856661,0,102.4856661,2.15796164,100.3277045,1.102132661,3.736539225,1.59972476,-1.59972476,0.256584644,0.17295189,1.20143228,38.64219201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.7170947,1.563435862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870433597,37.14434479,67.5875283,38.70778065,508.8271148,0,0.671593178,47.80985357,-0.671593178,132.1901464,0.975550167,0,563.973905,38.70778065,589.3073733,11,14,4% +11/12/2018 23:00,70.86318915,227.1357216,272.9710134,653.3327067,58.79226247,454.8570735,395.7798438,59.07722964,57.01945884,2.057770803,67.95778618,0,67.95778618,1.772803634,66.18498255,1.236795969,3.96426619,2.655406125,-2.655406125,0.076052498,0.215379141,0.565992982,18.20427989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.80927268,1.284390198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410059989,17.49864626,55.21933266,18.78303646,395.7798438,0,0.605786056,52.71457287,-0.605786056,127.2854271,0.96746261,0,438.1215334,18.78303646,450.4146551,11,15,3% +11/12/2018 0:00,80.24765908,238.2094614,103.1469821,402.0279343,35.04756265,231.4162676,196.6479527,34.76831484,33.99074932,0.777565521,26.06599333,0,26.06599333,1.056813326,25.00918001,1.400585868,4.157539411,5.69547487,-5.69547487,0,0.339782725,0.264203331,8.49768733,0.307397626,1,0.173806421,0,0.94234221,0.981104173,0.724496596,1,32.94345481,0.765657657,0.045901612,0.312029739,0.878091279,0.602587875,0.961238037,0.922476074,0.181580864,8.168300287,33.12503568,8.933957944,136.1988389,0,0.489140022,60.71592661,-0.489140022,119.2840734,0.947779781,0,162.2115415,8.933957944,168.0586382,11,16,4% +11/12/2018 1:00,90.89938558,247.8498029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586493566,4.325795111,-63.65538507,63.65538507,0,#DIV/0!,0,0,1,0.903992617,0,0.015708298,0.961238037,1,0.680916516,0.95641992,0,0,0.115824807,0.262530305,0.724496596,0.448993192,0.968819794,0.930057831,0,0,0,0,0,0,0.326987248,70.91398465,-0.326987248,109.0860154,0.897088838,0,0,0,0,11,17,0% +11/12/2018 2:00,102.1775665,256.6623064,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783334957,4.479602313,-4.602674244,4.602674244,0.682742658,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13384585,82.30811371,-0.13384585,97.69188629,0.676435934,0,0,0,0,11,18,0% +11/12/2018 3:00,113.8688507,265.282586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987386361,4.630054574,-2.180027372,2.180027372,0.902960327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078533138,94.50425541,0.078533138,85.49574459,0,0,0,0,0,11,19,0% +11/12/2018 4:00,125.7052023,274.4946697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193969667,4.790835765,-1.266156177,1.266156177,0.746679148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.29568367,107.1985377,0.29568367,72.80146228,0,0.880900367,0,0,0,11,20,0% +11/12/2018 5:00,137.3639047,285.5485532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397452411,4.983762428,-0.749111348,0.749111348,0.658259275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502817155,120.1865572,0.502817155,59.81344284,0,0.950560274,0,0,0,11,21,0% +11/12/2018 6:00,148.2621564,300.9503405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587662785,5.252574326,-0.38966712,0.38966712,0.596790692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685829883,133.3009077,0.685829883,46.69909227,0,0.977095623,0,0,0,11,22,0% +11/12/2018 7:00,156.9535171,325.9831501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739355646,5.689479275,-0.103042854,0.103042854,0.547775056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832263535,146.3319648,0.832263535,33.66803524,0,0.989922876,0,0,0,11,23,0% +11/13/2018 8:00,160.0692857,4.713222107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793736066,0.082261244,0.151595194,-0.151595194,0.504229385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93215339,158.7730165,0.93215339,21.22698354,0,0.996360759,0,0,0,11,0,0% +11/13/2018 9:00,155.3503396,40.90285512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.711374919,0.713889495,0.400971721,-0.400971721,0.461583487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978706575,168.1550276,0.978706575,11.84497245,0,0.998912165,0,0,0,11,1,0% +11/13/2018 10:00,145.9590169,63.17134484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547465418,1.10254796,0.670757501,-0.670757501,0.415447401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968764263,165.6417834,0.968764263,14.35821657,0,0.998387857,0,0,0,11,2,0% +11/13/2018 11:00,134.8192317,77.27590683,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353039488,1.348719007,0.998226811,-0.998226811,0.359446851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903016397,154.5574362,0.903016397,25.44256377,0,0.99463002,0,0,0,11,3,0% +11/13/2018 12:00,123.0946679,87.77241112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148407246,1.531917566,1.461086374,-1.461086374,0.280293204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785954364,141.8090316,0.785954364,38.19096836,0,0.986383075,0,0,0,11,4,0% +11/13/2018 13:00,111.2799812,96.77661167,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942202063,1.689070513,2.292202196,-2.292202196,0.138164028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625564814,128.7236553,0.625564814,51.27634467,0,0.970072231,0,0,0,11,5,0% +11/13/2018 14:00,99.67515099,105.3899616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.739659567,1.839401829,4.781773725,-4.781773725,0,#DIV/0!,0,0,0.223347888,1,0.206156323,0,0.938061871,0.976823835,0.724496596,1,0,0,0.034553518,0.312029739,0.906688594,0.63118519,0.961238037,0.922476074,0,0,0,0,0,0,-0.432785451,115.6444622,0.432785451,64.35553783,0,0.934469314,0,0,0,11,6,0% +11/13/2018 15:00,88.23018614,114.3445174,3.287071869,26.87352863,2.457105317,2.407793862,0,2.407793862,2.383014526,0.024779336,6.661178862,5.79009944,0.871079422,0.074090791,0.796988631,1.539907248,1.99568831,-23.14482739,23.14482739,0,0.747505809,0.018522698,0.595753631,1,0.713315268,0,0.043179343,0.961238037,1,0.609355256,0.884858661,2.290644205,0.050999498,0.115824807,0.181457522,0.724496596,0.448993192,0.980112764,0.941350801,0.013419631,0.577285448,2.304063836,0.628284946,0,1.659933104,-0.215457357,102.4423608,0.215457357,77.55763922,0,0.817935517,2.304063836,1.986003188,3.603863202,11,7,56% +11/13/2018 16:00,78.156157,124.2618235,139.6189579,477.5252039,41.60928511,41.40711832,0,41.40711832,40.35461164,1.05250668,36.37124983,1.264343568,35.10690627,1.254673468,33.8522328,1.36408227,2.168777954,-2.785195057,2.785195057,0.993549904,0.29802031,1.047741102,33.69895543,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.79038767,0.909006656,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.759084862,32.39271776,39.54947253,33.30172442,0,1.264343568,-0.0026477,90.15170222,0.0026477,89.84829778,0,0,39.54947253,33.30172442,61.34478513,11,8,55% +11/13/2018 17:00,69.1204934,135.7372744,305.1819011,682.3918575,61.97482758,201.3388147,138.9321668,62.40664794,60.10605786,2.30059008,75.8636549,0,75.8636549,1.868769714,73.99488519,1.20638019,2.369062356,-1.077252641,1.077252641,0.714374741,0.203075043,1.7769254,57.15202902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.77622906,1.353917296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287376404,54.93670418,59.06360547,56.29062147,138.9321668,0,0.203595874,78.2526848,-0.203595874,101.7473152,0.804415456,0,170.8227877,56.29062147,207.6638736,11,9,22% +11/13/2018 18:00,61.91900477,149.2618694,435.7307586,770.0649357,73.24636386,371.6503639,297.3279257,74.32243825,71.03771574,3.284722512,107.8566153,0,107.8566153,2.208648121,105.6479671,1.080690503,2.605111069,-0.349226047,0.349226047,0.589874861,0.168100054,2.164030764,69.60266818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.28415442,1.600158045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567832922,66.90473212,69.85198734,68.50489017,297.3279257,0,0.386107602,67.28748123,-0.386107602,112.7125188,0.92050242,0,343.5430625,68.50489017,388.378143,11,10,13% +11/13/2018 19:00,57.30737336,164.9109412,515.9421989,808.5255282,79.23167023,511.0284318,430.2964985,80.73193327,76.84254304,3.889390231,127.4852867,0,127.4852867,2.389127191,125.0961595,1.000202351,2.878238896,0.133384646,-0.133384646,0.507343572,0.153566951,2.267511849,72.93097557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.86397522,1.730914517,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.642804615,70.10402779,75.50677983,71.8349423,430.2964985,0,0.532199026,57.8458451,-0.532199026,122.1541549,0.956050185,0,486.8918269,71.8349423,533.9063599,11,11,10% +11/13/2018 20:00,55.95461178,181.9147594,538.8121915,818.0098689,80.8498001,599.3392424,516.8655682,82.47367422,78.41188032,4.061793895,133.0791738,0,133.0791738,2.437919777,130.641254,0.976592207,3.175011509,0.552387048,-0.552387048,0.435689941,0.150051913,2.113618406,67.98123344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37248191,1.766264579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53130934,65.34614737,76.90379125,67.11241195,516.8655682,0,0.631857375,50.8127104,-0.631857375,129.1872896,0.970868218,0,578.7121444,67.11241195,622.6358758,11,12,8% +11/13/2018 21:00,58.0948209,198.7255098,502.4836536,802.665413,78.26288422,624.1237744,544.4328709,79.69090353,75.9029695,3.787934031,124.1928941,0,124.1928941,2.359914718,121.8329794,1.013945903,3.468414454,1.004849997,-1.004849997,0.35831422,0.1557521,1.735851556,55.83095299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96082139,1.70975018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257618543,53.66683565,74.21843994,55.37658583,544.4328709,0,0.678281214,47.29052338,-0.678281214,132.7094766,0.976284262,0,605.7396837,55.37658583,641.9825516,11,13,6% +11/13/2018 22:00,63.3664696,213.9169031,409.9262618,755.6184828,71.19588222,577.1392645,505.0000035,72.139261,69.04906368,3.090197315,101.5381867,0,101.5381867,2.146818534,99.39136814,1.10595353,3.733554285,1.611509318,-1.611509318,0.254569366,0.173679729,1.186745646,38.16981937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37258642,1.55536272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85979318,36.69028224,67.2323796,38.24564496,505.0000035,0,0.668326695,48.06195066,-0.668326695,131.9380493,0.975186289,0,559.7014591,38.24564496,584.7324688,11,14,4% +11/13/2018 23:00,71.05262048,226.9372416,269.5230261,650.2622184,58.38310987,450.6012748,391.9468527,58.65442211,56.62264369,2.031778418,67.10944429,0,67.10944429,1.760466173,65.34897812,1.24010217,3.960802061,2.680089062,-2.680089062,0.071831467,0.216616408,0.554447951,17.832952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.42783887,1.27545175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401695653,17.14171177,54.82953452,18.41716352,391.9468527,0,0.602752,52.93274957,-0.602752,127.0672504,0.967047144,0,433.8606189,18.41716352,445.9142841,11,15,3% +11/13/2018 0:00,80.41009829,237.9959436,100.4295855,395.9132463,34.47243256,226.7678401,192.5777979,34.19004217,33.43296153,0.757080637,25.38978678,0,25.38978678,1.039471031,24.35031574,1.403420967,4.153812822,5.789273904,-5.789273904,0,0.343249774,0.259867758,8.358240382,0.315007714,1,0.171045413,0,0.942696766,0.981458729,0.724496596,1,32.40484487,0.753093224,0.046890036,0.312029739,0.875648631,0.600145227,0.961238037,0.922476074,0.178511199,8.034258577,32.58335607,8.7873518,131.9143059,0,0.486414132,60.89483592,-0.486414132,119.1051641,0.947206934,0,157.5335013,8.7873518,163.2846473,11,16,4% +11/13/2018 1:00,91.04251644,247.6248421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588991671,4.321868805,-54.9058376,54.9058376,0,#DIV/0!,0,0,1,0.887887411,0,0.018210986,0.961238037,1,0.674151477,0.949654881,0,0,0.115824807,0.254853433,0.724496596,0.448993192,0.969949792,0.931187829,0,0,0,0,0,0,0.324572658,71.06031341,-0.324572658,108.9396866,0.895951288,0,0,0,0,11,17,0% +11/13/2018 2:00,102.305858,256.4233943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785574066,4.47543251,-4.555384393,4.555384393,0.690829699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131787105,82.42712548,-0.131787105,97.57287452,0.670600211,0,0,0,0,11,18,0% +11/13/2018 3:00,113.9887669,265.0225747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989479292,4.625516521,-2.17042081,2.17042081,0.901317508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08024022,94.60237374,0.08024022,85.39762626,0,0,0,0,0,11,19,0% +11/13/2018 4:00,125.8246148,274.2017387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196053808,4.785723155,-1.263523992,1.263523992,0.746229018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297067388,107.2815485,0.297067388,72.7184515,0,0.881688021,0,0,0,11,20,0% +11/13/2018 5:00,137.494129,285.2060389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399725254,4.977784425,-0.748873708,0.748873708,0.658218636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503927985,120.2602154,0.503927985,59.73978458,0,0.950779473,0,0,0,11,21,0% +11/13/2018 6:00,148.4218575,300.5459943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590450096,5.245517154,-0.390602645,0.390602645,0.596950676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686737014,133.372367,0.686737014,46.62763296,0,0.977191925,0,0,0,11,22,0% +11/13/2018 7:00,157.1699375,325.5890031,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743132894,5.682600113,-0.104771438,0.104771438,0.548070661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833050118,146.4133457,0.833050118,33.58665428,0,0.989979602,0,0,0,11,23,0% +11/14/2018 8:00,160.3339383,4.6631972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.798355126,0.081388145,0.149130297,-0.149130297,0.504650907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932910814,158.8932017,0.932910814,21.1067983,0,0.996404309,0,0,0,11,0,0% +11/14/2018 9:00,155.5895863,41.17730628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715550563,0.718679572,0.397615771,-0.397615771,0.462157388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979528176,168.3865942,0.979528176,11.61340578,0,0.998955016,0,0,0,11,1,0% +11/14/2018 10:00,146.1609343,63.47816617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550989542,1.107903003,0.666090901,-0.666090901,0.416245437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969738895,165.8687253,0.969738895,14.13127466,0,0.998439729,0,0,0,11,2,0% +11/14/2018 11:00,135.0012845,77.54702431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356216909,1.353450899,0.991292952,-0.991292952,0.360632611,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904222304,154.7187433,0.904222304,25.28125665,0,0.994703863,0,0,0,11,3,0% +11/14/2018 12:00,123.2700639,88.00880073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151468484,1.536043343,1.449422662,-1.449422662,0.282287816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78745378,141.9481959,0.78745378,38.05180406,0,0.98650421,0,0,0,11,4,0% +11/14/2018 13:00,111.4572509,96.98696945,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945296004,1.692741948,2.267173048,-2.267173048,0.142444264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627399661,128.8585337,0.627399661,51.14146628,0,0.970305982,0,0,0,11,5,0% +11/14/2018 14:00,99.86036457,105.5808539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742892154,1.842733527,4.679080489,-4.679080489,0,#DIV/0!,0,0,0.212608469,1,0.210549719,0,0.937462783,0.976224746,0.724496596,1,0,0,0.033044074,0.312029739,0.910568999,0.635065595,0.961238037,0.922476074,0,0,0,0,0,0,-0.43497443,115.7836669,0.43497443,64.21633315,0,0.935050714,0,0,0,11,6,0% +11/14/2018 15:00,88.41144863,114.518913,2.592170923,22.00700503,1.982094933,1.941868337,0,1.941868337,1.922327458,0.019540879,5.47970239,4.791433063,0.688269327,0.059767475,0.628501851,1.543070875,1.998732088,-25.7105399,25.7105399,0,0.764646697,0.014941869,0.480581864,1,0.745347172,0,0.038874959,0.961238037,1,0.62017521,0.895678614,1.847814272,0.041259456,0.115824807,0.193695849,0.724496596,0.448993192,0.978499919,0.939737956,0.010825333,0.465505567,1.858639605,0.506765023,0,1.22015198,-0.217723087,102.575334,0.217723087,77.42466597,0,0.820350491,1.858639605,1.507717299,2.845410423,11,7,53% +11/14/2018 16:00,78.36941085,124.4181141,135.877663,470.8362482,40.95666596,40.74597459,0,40.74597459,39.72167137,1.024303219,36.76070564,2.580598516,34.18010712,1.234994593,32.94511253,1.367804252,2.171505741,-2.826966316,2.826966316,0.986406598,0.301423097,1.014576398,32.63226453,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.18198141,0.894749378,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.735057146,31.3673739,38.91703855,32.26212328,0,2.580598516,-0.005480883,90.31403305,0.005480883,89.68596695,0,0,38.91703855,32.26212328,60.03195299,11,8,54% +11/14/2018 17:00,69.35352798,135.8674747,300.9418627,679.0406479,61.51161353,198.061483,136.1360447,61.9254383,59.65681143,2.268626879,74.82164089,0,74.82164089,1.854802102,72.96683879,1.210447411,2.371334781,-1.085051023,1.085051023,0.715708343,0.204396999,1.755501375,56.46295871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.3443963,1.343797809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27185477,54.27434359,58.61625107,55.6181414,136.1360447,0,0.200482909,78.43480033,-0.200482909,101.5651997,0.800602183,0,167.6070656,55.6181414,204.0080267,11,9,22% +11/14/2018 18:00,62.17010936,149.3499406,431.3320239,767.8930293,72.84265748,367.8439607,293.9462151,73.89774559,70.6461826,3.251562991,106.7779179,0,106.7779179,2.196474884,104.581443,1.085073105,2.606648201,-0.350080683,0.350080683,0.590021012,0.168878389,2.143617625,68.94611145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90779787,1.591338576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553043672,66.27362482,69.46084154,67.8649634,293.9462151,0,0.382795785,67.49303209,-0.382795785,112.5069679,0.919382052,0,339.7097159,67.8649634,384.1259772,11,10,13% +11/14/2018 19:00,57.56928488,164.9356419,511.5377852,806.8266399,78.853323,506.9613241,426.6295319,80.33179227,76.47560437,3.856187899,126.405977,0,126.405977,2.377718626,124.0282584,1.004773569,2.878670006,0.135411641,-0.135411641,0.506996935,0.154149557,2.248131089,72.30762372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.51125981,1.722649051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628763321,69.50483827,75.14002314,71.22748733,426.6295319,0,0.528774722,58.07729497,-0.528774722,121.922705,0.955441773,0,482.7596996,71.22748733,529.3766655,11,11,10% +11/14/2018 20:00,56.21352435,181.8622223,534.520966,816.4651518,80.48514344,595.1653981,513.0777339,82.08766423,78.0582194,4.029444824,132.0277207,0,132.0277207,2.426924033,129.6007967,0.981111084,3.174094564,0.556532664,-0.556532664,0.434980999,0.150574343,2.095546483,67.39997828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03252958,1.7582982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518216293,64.7874228,76.55074587,66.545721,513.0777339,0,0.628413512,51.06682889,-0.628413512,128.9331711,0.970434556,0,574.4591088,66.545721,618.0119523,11,12,8% +11/14/2018 21:00,58.33547917,198.6026154,498.4098668,801.0461808,77.90491652,619.9487002,540.6356803,79.31301995,75.55579584,3.757224105,123.1943633,0,123.1943633,2.349120671,120.8452426,1.018146182,3.466269542,1.011605512,-1.011605512,0.357158959,0.156306931,1.719454043,55.30355261,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.62710487,1.70192993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245738601,53.15987835,73.87284347,54.86180828,540.6356803,0,0.674912,47.55268309,-0.674912,132.4473169,0.975916268,0,601.4879987,54.86180828,637.393955,11,13,6% +11/14/2018 22:00,63.57943448,213.7461099,406.1653199,753.6286331,70.83324522,573.0139171,501.2547098,71.75920728,68.69736153,3.061845747,100.6153679,0,100.6153679,2.13588369,98.47948423,1.109670468,3.730573381,1.623028228,-1.623028228,0.252599516,0.174395109,1.17251088,37.71198037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.03451693,1.547440463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849480141,36.25018998,66.88399707,37.79763044,501.2547098,0,0.665121637,48.3083423,-0.665121637,131.6916577,0.97482578,0,555.5200107,37.79763044,580.2578039,11,14,4% +11/14/2018 23:00,71.23612853,226.7399253,266.1837182,647.2521682,57.98294799,446.4571279,388.2159744,58.24115348,56.23454817,2.006605304,66.28772405,0,66.28772405,1.748399816,64.53932424,1.243304989,3.957358242,2.70431593,-2.70431593,0.067688429,0.217830558,0.543337305,17.47559544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.05478669,1.266709715,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.393646028,16.79820705,54.44843272,18.06491677,388.2159744,0,0.599790922,53.14507503,-0.599790922,126.854925,0.966637618,0,429.7125974,18.06491677,441.5357241,11,15,3% +11/14/2018 0:00,80.56667504,237.7841203,97.8233355,389.9422075,33.91190332,222.2694437,188.6426758,33.62676793,32.88933431,0.737433624,24.74096926,0,24.74096926,1.022569007,23.71840025,1.406153747,4.150115808,5.882501077,-5.882501077,0,0.346664762,0.255642252,8.222333578,0.322407489,1,0.168385996,0,0.943036665,0.981798628,0.724496596,1,31.87968046,0.740847764,0.04784517,0.312029739,0.873295597,0.597792193,0.961238037,0.922476074,0.175528202,7.903619786,32.05520866,8.644467551,127.8228644,0,0.483770857,61.06802637,-0.483770857,118.9319736,0.946645283,0,153.0581203,8.644467551,158.7157514,11,16,4% +11/14/2018 1:00,91.17979281,247.4018997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591387596,4.317977726,-48.5074949,48.5074949,0,#DIV/0!,0,0,1,0.872211395,0,0.020612451,0.961238037,1,0.66770623,0.943209634,0,0,0.115824807,0.247541687,0.724496596,0.448993192,0.97101442,0.932252457,0,0,0,0,0,0,0.322248044,71.20106832,-0.322248044,108.7989317,0.89484002,0,0,0,0,11,17,0% +11/14/2018 2:00,102.4282461,256.1867239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787710141,4.471301831,-4.511166384,4.511166384,0.698391424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129822458,82.54066704,-0.129822458,97.45933296,0.664858625,0,0,0,0,11,18,0% +11/14/2018 3:00,114.1026371,264.764955,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991466703,4.621020208,-2.161442732,2.161442732,0.899782166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08185241,94.69505027,0.08185241,85.30494973,0,0,0,0,0,11,19,0% +11/14/2018 4:00,125.9377135,273.9111946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198027753,4.780652204,-1.261134443,1.261134443,0.745820381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298358792,107.359055,0.298358792,72.64094502,0,0.882416535,0,0,0,11,20,0% +11/14/2018 5:00,137.6176125,284.8653814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401880448,4.971838831,-0.748754714,0.748754714,0.658198287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504952273,120.3281842,0.504952273,59.67181579,0,0.950980741,0,0,0,11,21,0% +11/14/2018 6:00,148.5742916,300.1411062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593110572,5.238450524,-0.391601288,0.391601288,0.597121454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687566173,133.4377578,0.687566173,46.56224219,0,0.977279727,0,0,0,11,22,0% +11/14/2018 7:00,157.3791721,325.1870602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746784727,5.675584886,-0.106531751,0.106531751,0.548371692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833769499,146.4879266,0.833769499,33.51207343,0,0.990031387,0,0,0,11,23,0% +11/15/2018 8:00,160.5934661,4.601257089,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802884741,0.080307086,0.146655997,-0.146655997,0.505074037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933613264,159.0052507,0.933613264,20.99474933,0,0.996444634,0,0,0,11,0,0% +11/15/2018 9:00,155.8256229,41.44319771,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719670179,0.723320253,0.394271239,-0.394271239,0.462729337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980307646,168.6105769,0.980307646,11.38942306,0,0.998995603,0,0,0,11,1,0% +11/15/2018 10:00,146.3609007,63.7772112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554479613,1.113122323,0.661462023,-0.661462023,0.417037022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970683967,166.0922472,0.970683967,13.9077528,0,0.998489929,0,0,0,11,2,0% +11/15/2018 11:00,135.182166,77.81107766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.359373886,1.3580595,0.984441735,-0.984441735,0.361804238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905410084,154.8785712,0.905410084,25.12142879,0,0.994776405,0,0,0,11,3,0% +11/15/2018 12:00,123.4446829,88.23869551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15451616,1.540055764,1.437946624,-1.437946624,0.284250334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.788944574,142.0869894,0.788944574,37.91301061,0,0.986624192,0,0,0,11,4,0% +11/15/2018 13:00,111.6338577,97.1911568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948378374,1.69630569,2.242714583,-2.242714583,0.146626908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629232806,128.993543,0.629232806,51.006457,0,0.970538155,0,0,0,11,5,0% +11/15/2018 14:00,100.0448035,105.7656723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.74611122,1.845959218,4.580808952,-4.580808952,0,#DIV/0!,0,0,0.202049633,1,0.214930169,0,0.936861262,0.975623226,0.724496596,1,0,0,0.031546298,0.312029739,0.914437153,0.638933749,0.961238037,0.922476074,0,0,0,0,0,0,-0.437165569,115.9231726,0.437165569,64.07682737,0,0.935626857,0,0,0,11,6,0% +11/15/2018 15:00,88.59029769,114.68715,2.000492095,17.7408248,1.564041823,1.531960746,0,1.531960746,1.516880192,0.015080554,4.434658233,3.902454132,0.532204101,0.047161632,0.485042469,1.54619238,2.001668378,-28.89023251,28.89023251,0,0.781828545,0.011790408,0.379220048,1,0.776320102,0,0.034599961,0.961238037,1,0.631066083,0.906569487,1.458082938,0.032668422,0.115824807,0.206021484,0.724496596,0.448993192,0.976842154,0.938080191,0.00854211,0.367150188,1.466625048,0.399818609,0,0.872900543,-0.219970276,102.7072872,0.219970276,77.29271282,0,0.822696562,1.466625048,1.117950885,2.198301544,11,7,50% +11/15/2018 16:00,78.5809769,124.5680589,132.1784782,464.0686247,40.30087484,40.08207197,0,40.08207197,39.08565477,0.996417201,37.12139566,3.857973246,33.26342241,1.215220071,32.04820234,1.371496776,2.174122771,-2.870249006,2.870249006,0.979004822,0.304897404,0.981875685,31.5804972,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.57061806,0.880422805,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.711365591,30.35637513,38.28198365,31.23679794,0,3.857973246,-0.008313368,90.47632639,0.008313368,89.52367361,0,0,38.28198365,31.23679794,58.72584316,11,8,53% +11/15/2018 17:00,69.58410146,135.9912053,296.7444342,675.6688189,61.04945271,194.8065066,133.3609353,61.44557135,59.20858646,2.236984891,73.78998992,0,73.78998992,1.840866248,71.94912367,1.214471678,2.373494286,-1.093130404,1.093130404,0.717089998,0.205730742,1.73431936,55.78167229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.91354542,1.33370133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.256508472,53.61946517,58.17005389,54.9531665,133.3609353,0,0.197376187,78.61643262,-0.197376187,101.3835674,0.796676634,0,164.415595,54.9531665,200.3813434,11,9,22% +11/15/2018 18:00,62.41773487,149.4318029,426.9866525,765.7200899,72.44163126,364.0659909,290.5899363,73.47605455,70.2572488,3.218805747,105.7122398,0,105.7122398,2.184382464,103.5278574,1.089394985,2.608076968,-0.351087445,0.351087445,0.590193179,0.169657836,2.123510904,68.29941018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.53393991,1.582577659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538476421,65.65199096,69.07241633,67.23456862,290.5899363,0,0.379498906,67.6973528,-0.379498906,112.3026472,0.918247314,0,335.905845,67.23456862,379.9095255,11,10,13% +11/15/2018 19:00,57.82662797,164.9551787,507.19972,805.1355954,78.4787399,502.9349261,422.999124,79.93580207,76.11231633,3.823485731,125.3428678,0,125.3428678,2.366423564,122.9764443,1.009265053,2.879010987,0.137304892,-0.137304892,0.50667317,0.154729462,2.229112695,71.6959268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.16205353,1.714465816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614984559,68.91685193,74.77703809,70.63131774,422.999124,0,0.525376255,58.30642398,-0.525376255,121.693576,0.954830111,0,478.6693385,70.63131774,524.8961234,11,11,10% +11/15/2018 20:00,56.46698998,181.8063831,530.3094731,814.9350209,80.12525031,591.0476246,509.3407494,81.7068752,77.70917839,3.997696812,130.9957434,0,130.9957434,2.416071928,128.5796715,0.985534894,3.173119986,0.560529945,-0.560529945,0.434297424,0.151091493,2.077883954,66.83189065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.69701808,1.750435887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505419852,64.24135537,76.20243793,65.99179126,509.3407494,0,0.625007806,51.31723961,-0.625007806,128.6827604,0.970000999,0,570.2634738,65.99179126,613.4537813,11,12,8% +11/15/2018 21:00,58.57022031,198.4784557,494.4283907,799.4497138,77.55278114,615.8469759,536.9054872,78.9414887,75.21427864,3.727210057,122.2183901,0,122.2183901,2.338502491,119.8798876,1.022243188,3.464102546,1.01817015,-1.01817015,0.356036339,0.156853414,1.70349988,54.7904119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.29882555,1.694237094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234179864,52.66662797,73.53300541,54.36086506,536.9054872,0,0.67159382,47.80980391,-0.67159382,132.1901961,0.975550238,0,597.3112813,54.36086506,632.8893803,11,13,6% +11/15/2018 22:00,63.78635899,213.5755962,402.5073235,751.6751677,70.47777429,568.9809233,497.5940438,71.38687958,68.35260936,3.034270224,99.71772557,0,99.71772557,2.12516493,97.59256064,1.113281982,3.727597356,1.63426408,-1.63426408,0.250678072,0.175096874,1.158733181,37.26884222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.70312803,1.539674757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.839498245,35.82422873,66.54262628,37.36390349,497.5940438,0,0.661980155,48.54893395,-0.661980155,131.4510661,0.974469035,0,551.4326138,37.36390349,575.8865414,11,14,4% +11/15/2018 23:00,71.41363806,226.5438345,262.9546533,644.3074829,57.5921428,442.4279849,384.5901945,57.83779045,55.85552721,1.982263249,65.49301566,0,65.49301566,1.736615598,63.75640007,1.246403115,3.953935812,2.728042433,-2.728042433,0.063630958,0.219019295,0.53266158,17.13222743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.69045732,1.258172089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385911501,16.46814866,54.07636882,17.72632075,384.5901945,0,0.596904746,53.35146343,-0.596904746,126.6485366,0.966234541,0,425.6806989,17.72632075,437.2822213,11,15,3% +11/15/2018 0:00,80.7173286,237.574071,95.32838472,384.1262139,33.36677213,217.9253243,184.8460578,33.07926647,32.36064084,0.718625631,24.11960184,0,24.11960184,1.00613129,23.11347055,1.408783148,4.146449757,5.974918507,-5.974918507,0,0.350019275,0.251532823,8.090160211,0.329586865,1,0.165829324,0,0.943361938,0.982123901,0.724496596,1,31.36873761,0.728938695,0.048766276,0.312029739,0.871033234,0.59552983,0.961238037,0.922476074,0.172635059,7.776569719,31.54137267,8.505508413,123.9232252,0,0.481211777,61.23542501,-0.481211777,118.764575,0.946095643,0,148.7845961,8.505508413,154.3512813,11,16,4% +11/15/2018 1:00,91.31116327,247.1810747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593680443,4.314123602,-43.63793587,43.63793587,0,#DIV/0!,0,0,1,0.856993318,0,0.022911831,0.961238037,1,0.661577379,0.937080783,0,0,0.115824807,0.240590999,0.724496596,0.448993192,0.972015908,0.933253944,0,0,0,0,0,0,0.32001468,71.33618733,-0.32001468,108.6638127,0.893757168,0,0,0,0,11,17,0% +11/15/2018 2:00,102.5446919,255.9524174,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789742504,4.467212412,-4.46988553,4.46988553,0.705450866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127952779,82.64869276,-0.127952779,97.35130724,0.659230841,0,0,0,0,11,18,0% +11/15/2018 3:00,114.2104338,264.5098811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993348109,4.616568329,-2.153081363,2.153081363,0.898352288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.083369243,94.78225652,0.083369243,85.21774348,0,0,0,0,0,11,19,0% +11/15/2018 4:00,126.0444785,273.6232414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199891153,4.775626473,-1.258985026,1.258985026,0.745452809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299557809,107.4310461,0.299557809,72.56895393,0,0.883087309,0,0,0,11,20,0% +11/15/2018 5:00,137.7343345,284.5268688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403917629,4.96593067,-0.748753385,0.748753385,0.65819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505890295,120.39047,0.505890295,59.60953002,0,0.951164342,0,0,0,11,21,0% +11/15/2018 6:00,148.7194131,299.7360868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59564342,5.231381602,-0.392662336,0.392662336,0.597302904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688317909,133.4971039,0.688317909,46.50289614,0,0.977359147,0,0,0,11,22,0% +11/15/2018 7:00,157.5811055,324.77765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750309129,5.668439329,-0.108323038,0.108323038,0.54867802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834422415,146.5557439,0.834422415,33.44425605,0,0.990078312,0,0,0,11,23,0% +11/16/2018 8:00,160.847748,4.527039793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807322797,0.07901175,0.144173211,-0.144173211,0.505498619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934261565,159.1091713,0.934261565,20.89082867,0,0.996481797,0,0,0,11,0,0% +11/16/2018 9:00,156.0584024,41.70011256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723732947,0.727804263,0.390939286,-0.390939286,0.463299134,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981045791,168.8267674,0.981045791,11.17323261,0,0.999033979,0,0,0,11,1,0% +11/16/2018 10:00,146.5588913,64.06820957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557935201,1.118201203,0.656872355,-0.656872355,0.417821901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971600159,166.3123529,0.971600159,13.68764708,0,0.998538502,0,0,0,11,2,0% +11/16/2018 11:00,135.3618452,78.06788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36250988,1.362541688,0.977675023,-0.977675023,0.362961414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906580194,155.0369567,0.906580194,24.9630433,0,0.994847681,0,0,0,11,3,0% +11/16/2018 12:00,123.6184798,88.46196535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157549489,1.543952558,1.426660054,-1.426660054,0.286180451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790426899,142.2254238,0.790426899,37.7745762,0,0.986743043,0,0,0,11,4,0% +11/16/2018 13:00,111.8097406,97.38907283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951448109,1.699759976,2.218822161,-2.218822161,0.150712753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631064041,129.1286692,0.631064041,50.87133076,0,0.970768739,0,0,0,11,5,0% +11/16/2018 14:00,100.2283905,105.9443379,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749315418,1.849077519,4.486741665,-4.486741665,0,#DIV/0!,0,0,0.191673803,1,0.219294624,0,0.936257781,0.975019744,0.724496596,1,0,0,0.030061061,0.312029739,0.918290372,0.642786967,0.961238037,0.922476074,0,0,0,0,0,0,-0.439358257,116.0629426,0.439358257,63.93705739,0,0.936197655,0,0,0,11,6,0% +11/16/2018 15:00,88.76654751,114.8491701,1.508010974,14.11389284,1.20419328,1.179250433,0,1.179250433,1.167882409,0.011368024,3.538002193,3.136056603,0.40194559,0.03631087,0.36563472,1.54926852,2.004496161,-32.92747106,32.92747106,0,0.798530846,0.009077718,0.291970602,1,0.806242212,0,0.030360447,0.961238037,1,0.642008859,0.917512263,1.122612994,0.025250209,0.115824807,0.218413205,0.724496596,0.448993192,0.975141953,0.93637999,0.006576775,0.282519958,1.12918977,0.307770167,0,0.60763539,-0.22219643,102.8380727,0.22219643,77.16192727,0,0.824973882,1.12918977,0.809053493,1.6586991,11,7,47% +11/16/2018 16:00,78.79074736,124.7116238,128.5646815,457.5651704,39.61732418,39.39189056,0,39.39189056,38.42271568,0.969174875,37.46559395,5.098989952,32.366604,1.194608496,31.1719955,1.375157962,2.17662845,-2.915087225,2.915087225,0.971337035,0.308150915,0.949955705,30.55384093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.9333758,0.865489789,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.688239675,29.36951407,37.62161547,30.23500386,0,5.098989952,-0.011143746,90.63850282,0.011143746,89.36149718,0,0,37.62161547,30.23500386,57.4098208,11,8,53% +11/16/2018 17:00,69.81209683,136.1084625,292.6454734,672.5642947,60.54350319,191.5880518,130.6640735,60.92397838,58.71789319,2.206085192,72.78089316,0,72.78089316,1.825610003,70.95528316,1.218450947,2.375540811,-1.101493146,1.101493146,0.718520111,0.206883443,1.713584703,55.11477446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.44187238,1.322648233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.241486284,52.97841761,57.68335866,54.30106584,130.6640735,0,0.194277446,78.7974829,-0.194277446,101.2025171,0.792636106,0,161.2524211,54.30106584,196.7913826,11,9,22% +11/16/2018 18:00,62.66176207,149.5074856,422.7554422,763.7925668,71.98943771,360.3588552,287.3532555,73.00559965,69.81869055,3.186909096,104.6726986,0,104.6726986,2.17074716,102.5019515,1.093654063,2.609397881,-0.35224897,0.35224897,0.590391811,0.170286247,2.103813987,67.66588963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11238104,1.572698928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524206072,65.04302691,68.63658711,66.61572583,287.3532555,0,0.376218974,67.9003271,-0.376218974,112.0996729,0.917098675,0,332.1678771,66.61572583,375.7665373,11,10,13% +11/16/2018 19:00,58.07929007,164.9696028,502.9908564,803.6778449,78.05008049,499.0128517,419.5245116,79.48834013,75.69658259,3.79175754,124.3094545,0,124.3094545,2.353497901,121.9559566,1.013674839,2.879262735,0.139060382,-0.139060382,0.506372964,0.155171967,2.210481051,71.09666909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.76243445,1.705101218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601485997,68.34082263,74.36392045,70.04592384,419.5245116,0,0.522005819,58.53310571,-0.522005819,121.4668943,0.954215627,0,474.6807654,70.04592384,520.5244216,11,11,10% +11/16/2018 20:00,56.71490713,181.7472936,526.2409817,813.6395019,79.71127789,587.0676329,505.7929173,81.27471557,77.30768876,3.967026805,129.9968077,0,129.9968077,2.403589132,127.5932186,0.989861864,3.172088681,0.564372934,-0.564372934,0.433640234,0.151472958,2.060586476,66.27554427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31109098,1.741392144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.492887887,63.70657407,75.80397887,65.44796621,505.7929173,0,0.621642529,51.56381993,-0.621642529,128.4361801,0.969567923,0,566.204567,65.44796621,609.0389519,11,12,8% +11/16/2018 21:00,58.79895235,198.3530757,490.6015178,798.1047878,77.1491988,611.9177383,533.3965111,78.52122728,74.82286581,3.698361472,121.278351,0,121.278351,2.326332994,118.952018,1.026235315,3.461914252,1.024534478,-1.024534478,0.354947975,0.157254301,1.687877368,54.28793819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92258464,1.685420335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.222861407,52.18363114,73.14544605,53.86905147,533.3965111,0,0.66832892,48.06177928,-0.66832892,131.9382207,0.975186538,0,593.3065433,53.86905147,628.5627601,11,13,6% +11/16/2018 22:00,63.9871598,213.4054107,399.0117956,750.0122316,70.077012,565.1581836,494.1863326,70.97185099,67.96393153,3.007919458,98.8581099,0,98.8581099,2.113080468,96.74502944,1.116786618,3.724627059,1.645199323,-1.645199323,0.248808035,0.175626417,1.145226798,36.83443052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.32951612,1.530919606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.829712917,35.40665568,66.15922904,36.93757529,494.1863326,0,0.658904364,48.78363318,-0.658904364,131.2163668,0.974116453,0,547.5542667,36.93757529,571.729171,11,14,4% +11/16/2018 23:00,71.58507629,226.3490315,259.8890759,641.7302347,57.16894751,438.6531981,381.2489517,57.40424645,55.44509281,1.959153632,64.73697005,0,64.73697005,1.723854698,63.01311535,1.249395277,3.950535859,2.751223529,-2.751223529,0.059666757,0.219974415,0.522145813,16.79400421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.29593217,1.248926861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378292864,16.14303564,53.67422503,17.3919625,381.2489517,0,0.594095355,53.55183115,-0.594095355,126.4481688,0.965838426,0,421.8991125,17.3919625,433.2818042,11,15,3% +11/16/2018 0:00,80.86200103,237.3658754,92.98059409,378.8157671,32.81976647,213.8847181,181.3536617,32.53105641,31.83012942,0.700926993,23.53385858,0,23.53385858,0.989637051,22.54422153,1.411308158,4.142816058,6.066274902,-6.066274902,0,0.352974368,0.247409263,7.957532354,0.336535838,1,0.163376512,0,0.94367262,0.982434583,0.724496596,1,30.85580256,0.716988675,0.049652634,0.312029739,0.868862562,0.593359158,0.961238037,0.922476074,0.169741539,7.649082778,31.0255441,8.366071453,120.3216553,0,0.47873842,61.39696141,-0.47873842,118.6030386,0.945558831,0,144.7967478,8.366071453,150.2721743,11,16,4% +11/16/2018 1:00,91.43657924,246.9624659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595869365,4.310308158,-39.81909889,39.81909889,0,#DIV/0!,0,0,1,0.842261855,0,0.025108299,0.961238037,1,0.65576161,0.931265014,0,0,0.115824807,0.233997368,0.724496596,0.448993192,0.972956383,0.93419442,0,0,0,0,0,0,0.317873787,71.46561083,-0.317873787,108.5343892,0.892704866,0,0,0,0,11,17,0% +11/16/2018 2:00,102.6551596,255.720597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791670529,4.463166383,-4.431418899,4.431418899,0.712029047,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126178891,82.75115965,-0.126178891,97.24884035,0.653737206,0,0,0,0,11,18,0% +11/16/2018 3:00,114.3121325,264.257507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995123088,4.61216357,-2.145325723,2.145325723,0.897025995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.084790308,94.86396685,0.084790308,85.13603315,0,0,0,0,0,11,19,0% +11/16/2018 4:00,126.1448939,273.3380833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201643733,4.770649525,-1.25707337,1.25707337,0.745125897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300664415,107.4975138,0.300664415,72.50248623,0,0.883701637,0,0,0,11,20,0% +11/16/2018 5:00,137.8442792,284.1907901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405836528,4.960064992,-0.748868762,0.748868762,0.65821779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506742363,120.4470828,0.506742363,59.55291724,0,0.951330531,0,0,0,11,21,0% +11/16/2018 6:00,148.8571834,299.3313564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598047966,5.224317724,-0.393785073,0.393785073,0.597494903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688992805,133.5504335,0.688992805,46.44956654,0,0.977430302,0,0,0,11,22,0% +11/16/2018 7:00,157.7756274,324.361135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753704177,5.661169772,-0.110144534,0.110144534,0.548989514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83500963,146.616841,0.83500963,33.38315905,0,0.990120451,0,0,0,11,23,0% +11/17/2018 8:00,161.0966624,4.440190391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811667172,0.077495942,0.141682863,-0.141682863,0.505924493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93485656,159.2049835,0.93485656,20.79501649,0,0.996515859,0,0,0,11,0,0% +11/17/2018 9:00,156.2878778,41.94762762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727738049,0.732124215,0.387621075,-0.387621075,0.463866582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981743424,169.0349592,0.981743424,10.96504077,0,0.999070196,0,0,0,11,1,0% +11/17/2018 10:00,146.7548816,64.35089022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.561355877,1.123134911,0.652323375,-0.652323375,0.418599823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972488155,166.5290495,0.972488155,13.47095047,0,0.998585492,0,0,0,11,2,0% +11/17/2018 11:00,135.540291,78.31727808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365624348,1.366894364,0.970994647,-0.970994647,0.364103825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90773309,155.1939374,0.90773309,24.80606263,0,0.994917729,0,0,0,11,3,0% +11/17/2018 12:00,123.7914095,88.67848172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160567681,1.547731482,1.415564663,-1.415564663,0.288077875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791900905,142.3635106,0.791900905,37.63648943,0,0.986860787,0,0,0,11,4,0% +11/17/2018 13:00,111.9848385,97.58061854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954504144,1.70310308,2.195491086,-2.195491086,0.154702602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632893149,129.2638978,0.632893149,50.73610217,0,0.970997723,0,0,0,11,5,0% +11/17/2018 14:00,100.4110483,106.1167733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752503399,1.852087086,4.396675533,-4.396675533,0,#DIV/0!,0,0,0.181483258,1,0.223640003,0,0.935652826,0.974414789,0.724496596,1,0,0,0.028589227,0.312029739,0.92212595,0.646622545,0.961238037,0.922476074,0,0,0,0,0,0,-0.441551882,116.2029393,0.441551882,63.79706072,0,0.936763024,0,0,0,11,6,0% +11/17/2018 15:00,88.9400193,115.0049169,1.103768059,11.03392051,0.899650483,0.880843371,0,0.880843371,0.872522701,0.00832067,2.770751621,2.476002494,0.294749126,0.027127781,0.267621345,1.552296174,2.007214456,-38.21403119,38.21403119,0,0.815072039,0.006781945,0.218130675,1,0.835123287,0,0.026162428,0.961238037,1,0.652983971,0.928487375,0.838702009,0.018946261,0.115824807,0.23084892,0.724496596,0.448993192,0.97340216,0.934640197,0.004913496,0.210934809,0.843615505,0.229881071,0,0.408235152,-0.22439916,102.9675491,0.22439916,77.03245086,0,0.827182767,0.843615505,0.567566153,1.215076201,11,7,44% +11/17/2018 16:00,78.99861551,124.8487769,124.9967358,450.9932153,38.93247595,38.70079635,0,38.70079635,37.75851816,0.942278193,37.78151322,6.300649672,31.48086355,1.173957795,30.30690575,1.378785945,2.179022224,-2.96152524,2.96152524,0.963395667,0.311467941,0.918529714,29.54307302,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.29492387,0.850528427,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.665471651,28.39792551,36.96039552,29.24845394,0,6.300649672,-0.013970609,90.80048295,0.013970609,89.19951705,0,0,36.96039552,29.24845394,56.10292365,11,8,52% +11/17/2018 17:00,70.03739876,136.2192448,288.5935895,669.4474212,60.03975228,188.3954662,127.9905936,60.4048726,58.22933222,2.17554038,71.78327705,0,71.78327705,1.810420054,69.97285699,1.222383208,2.377474326,-1.110141266,1.110141266,0.719999027,0.208042571,1.693116801,54.45645637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.97224899,1.311643166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226657359,52.34561721,57.19890635,53.65726038,127.9905936,0,0.191188418,78.97785294,-0.191188418,101.0221471,0.788477883,0,158.1166586,53.65726038,193.2342624,11,9,22% +11/17/2018 18:00,62.90207396,149.5770192,418.5825444,761.8706632,71.54079404,356.6847746,284.1457474,72.53902717,69.38357514,3.155452029,103.647403,0,103.647403,2.157218898,101.4901841,1.097848297,2.610611471,-0.353567794,0.353567794,0.590617343,0.170912034,2.084446696,67.04297097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.69413156,1.562897748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.510174535,64.4442538,68.20430609,66.00715154,284.1457474,0,0.372957985,68.10184004,-0.372957985,111.89816,0.915936642,0,328.4638077,66.00715154,371.6641683,11,10,13% +11/17/2018 19:00,58.3271611,164.9789655,498.853436,802.2337793,77.62593776,495.1368492,416.091052,79.04579724,75.28522933,3.760567917,123.2934995,0,123.2934995,2.340708433,120.9527911,1.018001004,2.879426144,0.140674122,-0.140674122,0.506096998,0.155608706,2.192232864,70.50974464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36702604,1.695835291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.588265247,67.77664852,73.95529129,69.47248381,416.091052,0,0.518665584,58.75721597,-0.518665584,121.242784,0.953598771,0,470.7392069,69.47248381,516.2075581,11,11,10% +11/17/2018 20:00,56.95717665,181.6850056,522.2571715,812.3642863,79.30278032,583.1495286,502.3010245,80.84850406,76.9115089,3.936995161,129.0185691,0,129.0185691,2.391271423,126.6272977,0.994090265,3.171001549,0.56805568,-0.56805568,0.433010447,0.151846226,2.043716514,65.73294831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93026782,1.732468006,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.480665657,63.18501019,75.41093348,64.91747819,502.3010245,0,0.618319925,51.80644997,-0.618319925,128.19355,0.969135713,0,562.2087949,64.91747819,604.6959861,11,12,8% +11/17/2018 21:00,59.02158574,198.2265207,486.8714832,796.7889378,76.75217956,608.0679305,529.9598695,78.10806105,74.43781816,3.670242895,120.3619893,0,120.3619893,2.314361399,118.0476279,1.030121001,3.45970545,1.030689042,-1.030689042,0.353895483,0.157643613,1.672712219,53.80017489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55246219,1.676746955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211874309,51.71477449,72.7643365,53.39152145,529.9598695,0,0.665119512,48.30850532,-0.665119512,131.6914947,0.97482554,0,589.3827525,53.39152145,624.3264355,11,13,6% +11/17/2018 22:00,64.18175612,213.2356024,395.6230251,748.3937444,69.68426315,561.4341148,490.8687158,70.56539898,67.58302551,2.982373475,98.02462044,0,98.02462044,2.101237642,95.9233828,1.120182964,3.721663344,1.655816324,-1.655816324,0.246992421,0.176138037,1.132185613,36.41498118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.96337476,1.522339518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820264623,35.00346502,65.78363939,36.52580454,490.8687158,0,0.655896337,49.01235001,-0.655896337,130.98765,0.973768442,0,543.7761038,36.52580454,567.6815123,11,14,4% +11/17/2018 23:00,71.7503731,226.1555787,256.9363573,639.2308908,56.75633149,435.0003219,378.0185085,56.98181348,55.04491869,1.936894792,64.00860734,0,64.00860734,1.711412803,62.29719453,1.25228025,3.94715947,2.773813598,-2.773813598,0.055803627,0.220896459,0.512063195,16.46971257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.91126958,1.23991275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370988042,15.83131418,53.28225762,17.07122693,378.0185085,0,0.591364582,53.74609702,-0.591364582,126.253903,0.965449789,0,418.240147,17.07122693,429.4129236,11,15,3% +11/17/2018 0:00,81.00063728,237.1596131,90.74335443,373.6827388,32.29060029,210.005599,178.0046177,32.00098128,31.31691955,0.684061736,22.97545761,0,22.97545761,0.973680738,22.00177687,1.413727817,4.139216101,6.156306366,-6.156306366,0,0.355845345,0.243420185,7.829229887,0.343244519,1,0.161028636,0,0.943968743,0.982730706,0.724496596,1,30.35943213,0.70542838,0.05050354,0.312029739,0.866784567,0.591281163,0.961238037,0.922476074,0.166948808,7.525753567,30.52638094,8.231181947,116.9055083,0,0.476352262,61.55256779,-0.476352262,118.4474322,0.945035662,0,141.0062553,8.231181947,146.3933993,11,16,4% +11/17/2018 1:00,91.55599508,246.7461719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597953564,4.306533117,-36.75419605,36.75419605,0,#DIV/0!,0,0,1,0.828045485,0,0.027201067,0.961238037,1,0.650255692,0.925759096,0,0,0.115824807,0.22775687,0.724496596,0.448993192,0.973837873,0.935075909,0,0,0,0,0,0,0.315826536,71.5892818,-0.315826536,108.4107182,0.891685247,0,0,0,0,11,17,0% +11/17/2018 2:00,102.7596166,255.4913842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793493648,4.459165864,-4.395654309,4.395654309,0.718145152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124501563,82.8480274,-0.124501563,97.1519726,0.648398617,0,0,0,0,11,18,0% +11/17/2018 3:00,114.4077127,264.007986,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996791277,4.607808607,-2.138165586,2.138165586,0.89580154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086115238,94.94015845,0.086115238,85.05984155,0,0,0,0,0,11,19,0% +11/17/2018 4:00,126.2389481,273.0559235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203285288,4.765724907,-1.255397233,1.255397233,0.74483926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301678625,107.5584531,0.301678625,72.44154686,0,0.884260714,0,0,0,11,20,0% +11/17/2018 5:00,137.9474365,283.8574352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407636962,4.954246851,-0.749099914,0.749099914,0.65825732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507508828,120.498036,0.507508828,59.50196396,0,0.951479546,0,0,0,11,21,0% +11/17/2018 6:00,148.9875704,298.9273435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.600323649,5.217266369,-0.394968782,0.394968782,0.597697329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689591473,133.5977791,0.689591473,46.40222086,0,0.977493303,0,0,0,11,22,0% +11/17/2018 7:00,157.9626334,323.9379117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756968048,5.653783132,-0.111995468,0.111995468,0.549306043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835531928,146.6712669,0.835531928,33.32873314,0,0.990157882,0,0,0,11,23,0% +11/18/2018 8:00,161.3400875,4.340362759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815915742,0.075753621,0.139185882,-0.139185882,0.506351502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935399103,159.2927188,0.935399103,20.70728125,0,0.996546881,0,0,0,11,0,0% +11/18/2018 9:00,156.514003,42.18531381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731684678,0.736272622,0.384317761,-0.384317761,0.464431482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982401367,169.2349494,0.982401367,10.76505062,0,0.999104305,0,0,0,11,1,0% +11/18/2018 10:00,146.948847,64.62498174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564741212,1.12791871,0.647816541,-0.647816541,0.419370537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973348637,166.7423473,0.973348637,13.25765269,0,0.998630945,0,0,0,11,2,0% +11/18/2018 11:00,135.7174722,78.55907104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368716742,1.371114447,0.96440239,-0.96440239,0.365231168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908869225,155.3495516,0.908869225,24.65044844,0,0.994986585,0,0,0,11,3,0% +11/18/2018 12:00,123.9634265,88.88811788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163569944,1.551390323,1.40466206,-1.40466206,0.28994233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793366736,142.5012608,0.793366736,37.49873922,0,0.986977443,0,0,0,11,4,0% +11/18/2018 13:00,112.1590903,97.76569701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957545413,1.706333308,2.172716579,-2.172716579,0.158597272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634719908,129.3992137,0.634719908,50.60078633,0,0.971225096,0,0,0,11,5,0% +11/18/2018 14:00,100.5927002,106.282904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755673823,1.854986614,4.310420549,-4.310420549,0,#DIV/0!,0,0,0.171480117,1,0.227963204,0,0.935046898,0.973808862,0.724496596,1,0,0,0.027131653,0.312029739,0.925941167,0.650437763,0.961238037,0.922476074,0,0,0,0,0,0,-0.443745823,116.3431247,0.443745823,63.65687526,0,0.937322883,0,0,0,11,6,0% +11/18/2018 15:00,89.11054895,115.1543369,0.779366582,8.468329667,0.647910788,0.634249082,0,0.634249082,0.628373887,0.005875195,2.127226232,1.91872288,0.208503352,0.019536901,0.188966451,1.555272477,2.009822327,-45.42319529,45.42319529,0,0.831329958,0.004884225,0.157093472,1,0.862975737,0,0.022011628,0.961238037,1,0.663971868,0.939475272,0.604016882,0.013709483,0.115824807,0.24330632,0.724496596,0.448993192,0.971625901,0.932863938,0.003538605,0.151801711,0.607555486,0.165511194,0,0.262911589,-0.226576309,103.0955881,0.226576309,76.90441187,0,0.829323795,0.607555486,0.383550031,0.85858131,11,7,41% +11/18/2018 16:00,79.20447611,124.9794889,121.4768538,444.3572166,38.24671426,38.00917854,0,38.00917854,37.09343471,0.915743836,38.06864194,7.461892776,30.60674916,1.15327955,29.45346961,1.38237889,2.181303579,-3.009607401,3.009607401,0.955173133,0.314847751,0.887618386,28.54885847,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.65562036,0.835547108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.643076499,27.44224867,36.29869686,28.27779578,0,7.461892776,-0.016792554,90.96218772,0.016792554,89.03781228,0,0,36.29869686,28.27779578,54.80594863,11,8,51% +11/18/2018 17:00,70.25989402,136.3235521,284.5911347,666.320866,59.53847187,185.2307026,125.3421671,59.88853546,57.74316727,2.145368185,70.79772008,0,70.79772008,1.795304601,69.00241548,1.226266483,2.379294832,-1.119076425,1.119076425,0.721527029,0.20920705,1.672927084,53.80708568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.50492875,1.300692072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.212029978,51.72141741,56.71695873,53.02210948,125.3421671,0,0.188110824,79.15744547,-0.188110824,100.8425545,0.78419924,0,155.0101909,53.02210948,189.7121011,11,9,22% +11/18/2018 18:00,63.13855611,149.6404347,414.4704776,759.9564648,71.09593693,353.0461069,280.9695212,72.07658565,68.95213211,3.124453533,102.6369707,0,102.6369707,2.143804814,100.4931659,1.101975689,2.611718279,-0.355046342,0.355046342,0.59087019,0.171534381,2.065420067,66.43100919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.27941211,1.55317929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496389808,63.85601286,67.77580192,65.40919215,280.9695212,0,0.369717917,68.30177845,-0.369717917,111.6982216,0.914761761,0,324.795976,65.40919215,367.604984,11,10,13% +11/18/2018 19:00,58.57013373,164.9833174,494.7900152,800.8052361,77.2065317,491.3095471,412.7011411,78.60840604,74.87846991,3.729936135,122.2956295,0,122.2956295,2.328061792,119.9675677,1.022241677,2.8795021,0.142142165,-0.142142165,0.505845948,0.156038985,2.174378371,69.9354828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97603341,1.686672844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.575329728,67.22464619,73.55136314,68.91131904,412.7011411,0,0.515357696,58.97863315,-0.515357696,121.0213669,0.952980007,0,466.8472995,68.91131904,511.9483796,11,11,10% +11/18/2018 20:00,57.19370212,181.6195699,518.3605088,811.1112054,78.89997023,579.2960897,498.8676242,80.42846549,76.52084502,3.907620472,128.0616319,0,128.0616319,2.379125212,125.6825067,0.998218413,3.16985948,0.571572249,-0.571572249,0.432409078,0.152210612,2.027283035,65.20439114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55474684,1.723668117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468759658,62.67694093,75.0235065,64.40060905,498.8676242,0,0.615042205,52.04501297,-0.615042205,127.954987,0.968704766,0,558.2789516,64.40060905,600.4278622,11,12,8% +11/18/2018 21:00,59.23803357,198.0988354,483.240539,795.5042533,76.36193802,604.3003876,526.5981725,77.70221515,74.05934385,3.642871304,119.4698576,0,119.4698576,2.302594177,117.1672634,1.033898728,3.457476922,1.036624399,-1.036624399,0.352880477,0.158020555,1.658011574,53.32735161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18865829,1.668221643,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.201223741,51.26027877,72.38988203,52.92850041,526.5981725,0,0.661967765,48.54988105,-0.661967765,131.4501189,0.974467621,0,585.5427505,52.92850041,620.1833954,11,13,6% +11/18/2018 22:00,64.37006977,213.0662198,392.3429222,746.8225308,69.29976553,557.8115887,487.6438201,70.16776859,67.21012191,2.957646674,97.21772749,0,97.21772749,2.08964362,95.12808387,1.123469657,3.718707061,1.666097417,-1.666097417,0.245234251,0.176630599,1.119614125,36.0106389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.60492564,1.513939689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.811156622,34.61479584,65.41608227,36.12873553,487.6438201,0,0.652958099,49.23499705,-0.652958099,130.765003,0.973425408,0,540.1009669,36.12873553,563.7465017,11,14,4% +11/18/2018 23:00,71.90946104,225.9635381,254.0978679,636.8143061,56.35462696,431.4724548,374.9016307,56.57082409,54.65532703,1.91549706,63.30826985,0,63.30826985,1.699299929,61.60896992,1.255056859,3.943807729,2.795766598,-2.795766598,0.052049443,0.221783156,0.502413634,16.15934951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.53677926,1.231137014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363996968,15.5329814,52.90077623,16.76411841,374.9016307,0,0.588714209,53.93418241,-0.588714209,126.0658176,0.965069147,0,414.7067731,16.76411841,425.6785534,11,15,3% +11/18/2018 0:00,81.1331852,236.955363,88.61655454,368.7379007,31.77997929,206.2916682,174.8019435,31.48972468,30.82169566,0.66802902,22.44439325,0,22.44439325,0.958283631,21.48610962,1.416041214,4.135651265,6.244737351,-6.244737351,0,0.358623504,0.239570908,7.705423915,0.349703166,1,0.158786731,0,0.944250344,0.983012307,0.724496596,1,29.88031249,0.694273229,0.051318311,0.312029739,0.864800193,0.589296789,0.961238037,0.922476074,0.164259685,7.406746557,30.04457217,8.101019786,113.6731505,0,0.474054723,61.70217902,-0.474054723,118.297821,0.944526945,0,137.4119257,8.101019786,142.7138812,11,16,4% +11/18/2018 1:00,91.66936804,246.5322907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599932296,4.302800186,-34.24930157,34.24930157,0,#DIV/0!,0,0,1,0.814372375,0,0.029189383,0.961238037,1,0.645056489,0.920559894,0,0,0.115824807,0.221865688,0.724496596,0.448993192,0.9746623,0.935900337,0,0,0,0,0,0,0.313874044,71.70714579,-0.313874044,108.2928542,0.890700431,0,0,0,0,11,17,0% +11/18/2018 2:00,102.8580334,255.2648993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795211345,4.455212958,-4.362489494,4.362489494,0.723816669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122921516,82.93925827,-0.122921516,97.06074173,0.643236386,0,0,0,0,11,18,0% +11/18/2018 3:00,114.4971571,263.7614699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998352376,4.603506089,-2.131591465,2.131591465,0.894677299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087343714,95.01081119,0.087343714,84.98918881,0,0.47754896,0,0,0,11,19,0% +11/18/2018 4:00,126.3266334,272.7769636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204815685,4.760856138,-1.253954511,1.253954511,0.74459254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302600497,107.6138621,0.302600497,72.38613786,0,0.884765638,0,0,0,11,20,0% +11/18/2018 5:00,138.0438009,283.527093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409318837,4.948481291,-0.749445939,0.749445939,0.658316493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508190074,120.5433465,0.508190074,59.4566535,0,0.951611616,0,0,0,11,21,0% +11/18/2018 6:00,149.1105486,298.5244827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602470023,5.210235121,-0.396212754,0.396212754,0.597910061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690114552,133.6391774,0.690114552,46.36082265,0,0.97754826,0,0,0,11,22,0% +11/18/2018 7:00,158.1420249,323.5084092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760099021,5.646286899,-0.113875073,0.113875073,0.549627474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835990113,146.7190767,0.835990113,33.28092331,0,0.99019068,0,0,0,11,23,0% +11/19/2018 8:00,161.5779017,4.227220967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820066383,0.073778924,0.136683189,-0.136683189,0.506779488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935890064,159.37242,0.935890064,20.62757999,0,0.996574922,0,0,0,11,0,0% +11/19/2018 9:00,156.7367322,42.41273646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735572036,0.740241896,0.38103049,-0.38103049,0.464993638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98302045,169.4265393,0.98302045,10.57346073,0,0.999136358,0,0,0,11,1,0% +11/19/2018 10:00,147.1407637,64.89021257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56809079,1.132547862,0.643353285,-0.643353285,0.420133798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974182292,166.9522598,0.974182292,13.04774021,0,0.998674904,0,0,0,11,2,0% +11/19/2018 11:00,135.8933576,78.79309202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371786522,1.375198884,0.957899977,-0.957899977,0.366343146,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909989051,155.5038385,0.909989051,24.49616153,0,0.995054284,0,0,0,11,3,0% +11/19/2018 12:00,124.1344856,89.09074899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16655549,1.554926903,1.393953738,-1.393953738,0.291773561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794824533,142.6386855,0.794824533,37.36131453,0,0.987093034,0,0,0,11,4,0% +11/19/2018 13:00,112.3324355,97.94421342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960570857,1.709449008,2.15049375,-2.15049375,0.162397599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636544096,129.5346015,0.636544096,50.46539849,0,0.971450846,0,0,0,11,5,0% +11/19/2018 14:00,100.7732702,106.4426575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758825363,1.857774838,4.227798646,-4.227798646,0,#DIV/0!,0,0,0.161666328,1,0.232261121,0,0.934440513,0.973202476,0.724496596,1,0,0,0.025689181,0.312029739,0.929733304,0.6542299,0.961238037,0.922476074,0,0,0,0,0,0,-0.445939464,116.4834611,0.445939464,63.51653893,0,0.937877158,0,0,0,11,6,0% +11/19/2018 15:00,89.27799776,115.2973787,0.525631787,6.374766298,0.445303466,0.435838358,0,0.435838358,0.431875924,0.003962434,1.59894866,1.458075605,0.140873055,0.013427543,0.127445512,1.55819501,2.012318878,-55.81877057,55.81877057,0,0.847177582,0.003356886,0.107968981,1,0.889815973,0,0.017913204,0.961238037,1,0.674953841,0.950457245,0.415135565,0.009470579,0.115824807,0.255763821,0.724496596,0.448993192,0.96981644,0.931054476,0.002432052,0.104248963,0.417567617,0.113719542,0,0.160656642,-0.228726127,103.2220851,0.228726127,76.77791488,0,0.831397951,0.417567617,0.247289144,0.579413417,11,7,39% +11/19/2018 16:00,79.40822582,125.1037325,118.0071854,437.6619539,37.56044058,37.31744272,0,37.31744272,36.42785471,0.88958801,38.3265556,8.581761393,29.74479421,1.132585867,28.61220834,1.385934994,2.183472039,-3.059378066,3.059378066,0.946661848,0.318289437,0.857241539,27.57183464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.01583955,0.820554605,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.621068577,26.5030962,35.63690813,27.3236508,0,8.581761393,-0.019608196,91.12353888,0.019608196,88.87646112,0,0,35.63690813,27.3236508,53.5196911,11,8,50% +11/19/2018 17:00,70.47947187,136.4213863,280.6404088,663.187408,59.03993708,182.0956684,122.7204173,59.37525109,57.25966514,2.115585945,69.8247882,0,69.8247882,1.780271937,68.04451626,1.230098839,2.381002361,-1.128299928,1.128299928,0.723104341,0.210375752,1.653026773,53.16702327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.04016811,1.289800958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.19761227,51.10616507,56.23778038,52.39596603,122.7204173,0,0.185046362,79.33616458,-0.185046362,100.6638354,0.779797444,0,151.9348481,52.39596603,186.22696,11,9,23% +11/19/2018 18:00,63.37109707,149.6977635,410.4217061,758.052111,70.65510266,349.4451663,277.8266435,71.61852281,68.52459063,3.093932183,101.6420064,0,101.6420064,2.130512035,99.51149434,1.106034295,2.612718857,-0.356686934,0.356686934,0.591150748,0.172152451,2.046744887,65.8303512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.86844297,1.543548717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482859703,63.27863756,67.35130267,64.82218627,277.8266435,0,0.366500719,68.50003129,-0.366500719,111.4999687,0.913574619,0,321.1666728,64.82218627,363.5914972,11,10,13% +11/19/2018 19:00,58.80810377,164.9827089,490.8030909,799.3940824,76.79208032,487.5335251,409.3571284,78.17639678,74.47651577,3.699881015,121.3164563,0,121.3164563,2.315564554,119.0008917,1.026395038,2.879491479,0.143460605,-0.143460605,0.505620481,0.156462096,2.156927542,69.37420413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58965981,1.677618637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562686662,66.68512379,73.15234647,68.36274243,409.3571284,0,0.512084262,59.19723865,-0.512084262,120.8027613,0.952359819,0,463.0076271,68.36274243,507.7496748,11,11,10% +11/19/2018 20:00,57.42439007,181.5510364,514.5533955,809.8821071,78.50305728,575.5100378,495.4952165,80.0148213,76.13590046,3.878920844,127.1265849,0,127.1265849,2.367156822,124.759428,1.002244678,3.168663346,0.574916734,-0.574916734,0.431837138,0.152565425,2.011294724,64.69015209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.18472349,1.71499706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457176181,62.1826348,74.64189967,63.89763186,495.4952165,0,0.611811537,52.27939556,-0.611811537,127.7206044,0.968275487,0,554.4177716,63.89763186,596.2374937,11,12,8% +11/19/2018 21:00,59.4482117,197.9700641,479.7108705,794.2528303,75.978685,600.6178808,523.3139703,77.30391049,73.68764732,3.616263173,118.6024921,0,118.6024921,2.291037684,116.3114545,1.037567029,3.455229438,1.042331132,-1.042331132,0.351904568,0.15838433,1.643782294,52.86968904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83136945,1.659849003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190914676,50.8203561,72.02228412,52.4802051,523.3139703,0,0.658875802,48.7858087,-0.658875802,131.2141913,0.974113164,0,581.7893115,52.4802051,616.1365561,11,13,6% +11/19/2018 22:00,64.55202531,212.8973113,389.1733291,745.3014108,68.9237521,554.2934045,484.5142049,69.77919962,66.84544668,2.933752943,96.43788477,0,96.43788477,2.078305427,94.35957934,1.126645381,3.71575905,1.676024954,-1.676024954,0.243536542,0.177102969,1.107516574,35.6215401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25438594,1.505725207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.802391988,34.24077927,65.05677792,35.74650448,484.5142049,0,0.650091625,49.45148967,-0.650091625,130.5485103,0.973087765,0,536.5316225,35.74650448,559.9269948,11,14,4% +11/19/2018 23:00,72.06227538,225.772971,251.3749108,634.4853092,55.96415911,428.0726089,371.9010054,56.17160349,54.27663323,1.894970259,62.63628333,0,62.63628333,1.687525883,60.94875745,1.257723972,3.940481707,2.817036235,-2.817036235,0.048412121,0.222632239,0.493196824,15.8629052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.17276437,1.222606758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.35731942,15.24802786,52.53008379,16.47063461,371.9010054,0,0.586145968,54.11601132,-0.586145968,125.8839887,0.964697016,0,411.301874,16.47063461,422.081575,11,15,3% +11/19/2018 0:00,81.25959542,236.7532034,86.60000205,363.9917962,31.28858712,202.7464477,171.7484995,30.99794817,30.34512078,0.652827395,21.94063946,0,21.94063946,0.943466344,20.99717312,1.418247489,4.132122914,6.331281805,-6.331281805,0,0.361300074,0.235866586,7.586280194,0.355902205,1,0.156651795,0,0.944517456,0.983279419,0.724496596,1,29.41910759,0.683538155,0.052096284,0.312029739,0.862910352,0.587406948,0.961238037,0.922476074,0.161676925,7.292221081,29.58078452,7.975759236,110.6228299,0,0.471847171,61.84573261,-0.471847171,118.1542674,0.944033486,0,134.0124402,7.975759236,139.2324151,11,16,4% +11/19/2018 1:00,91.77665812,246.320919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601804861,4.299111053,-32.17240932,32.17240932,0,#DIV/0!,0,0,1,0.801270269,0,0.03107253,0.961238037,1,0.64016098,0.915664384,0,0,0.115824807,0.216320128,0.724496596,0.448993192,0.975431483,0.93666952,0,0,0,0,0,0,0.312017378,71.8191508,-0.312017378,108.1808492,0.889752515,0,0,0,0,11,17,0% +11/19/2018 2:00,102.9503834,255.0412615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796823157,4.451309741,-4.331831374,4.331831374,0.729059517,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121439422,83.024817,-0.121439422,96.975183,0.638272086,0,0,0,0,11,18,0% +11/19/2018 3:00,114.5804515,263.5181085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999806138,4.599258632,-2.125594604,2.125594604,0.893651775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088475459,95.07590743,0.088475459,84.92409257,0,0.484871539,0,0,0,11,19,0% +11/19/2018 4:00,126.4079458,272.5014028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206234854,4.756046696,-1.252743241,1.252743241,0.744385401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303430123,107.6637413,0.303430123,72.33625873,0,0.885217415,0,0,0,11,20,0% +11/19/2018 5:00,138.1333717,283.2000505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410882143,4.942773322,-0.749905977,0.749905977,0.658395164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508786513,120.5830337,0.508786513,59.41696628,0,0.951726955,0,0,0,11,21,0% +11/19/2018 6:00,149.226099,298.123213,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604486758,5.203231644,-0.397516297,0.397516297,0.59813298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690562701,133.6746681,0.690562701,46.32533192,0,0.977595279,0,0,0,11,22,0% +11/19/2018 7:00,158.31371,323.0730881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76309549,5.638689112,-0.115782592,0.115782592,0.549953679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836385002,146.7603307,0.836385002,33.23966926,0,0.990218918,0,0,0,11,23,0% +11/20/2018 8:00,161.8099836,4.100440704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824116977,0.071566191,0.134175694,-0.134175694,0.507208295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93633032,159.4441411,0.93633032,20.55585886,0,0.996600042,0,0,0,11,0,0% +11/20/2018 9:00,156.9560206,42.62945553,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739399341,0.744024357,0.377760385,-0.377760385,0.465552859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983601502,169.6095362,0.983601502,10.3904638,0,0.999166405,0,0,0,11,1,0% +11/20/2018 10:00,147.3306082,65.14631121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571404202,1.137017626,0.638935,-0.638935,0.42088937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974989807,167.1588038,0.974989807,12.84119615,0,0.998717413,0,0,0,11,2,0% +11/20/2018 11:00,136.0679168,79.01916765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374833155,1.379144648,0.951489065,-0.951489065,0.367439476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911093019,155.6568383,0.911093019,24.34316168,0,0.995120861,0,0,0,11,3,0% +11/20/2018 12:00,124.3045424,89.28625223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169523541,1.558339078,1.383441056,-1.383441056,0.293571336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796274439,142.7757958,0.796274439,37.22420417,0,0.987207579,0,0,0,11,4,0% +11/20/2018 13:00,112.5048143,98.11607521,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963579433,1.712448562,2.128817573,-2.128817573,0.166104444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638365494,129.6700462,0.638365494,50.3299538,0,0.971674964,0,0,0,11,5,0% +11/20/2018 14:00,100.9526833,106.5959635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761956712,1.860450533,4.148642653,-4.148642653,0,#DIV/0!,0,0,0.152043651,1,0.236530653,0,0.933834192,0.972596155,0.724496596,1,0,0,0.02426264,0.312029739,0.933499649,0.657996245,0.961238037,0.922476074,0,0,0,0,0,0,-0.448132197,116.6239106,0.448132197,63.37608936,0,0.938425781,0,0,0,11,6,0% +11/20/2018 15:00,89.44226727,115.4339933,0.332928103,4.703217889,0.287146422,0.280997651,0,0.280997651,0.278487898,0.002509753,1.175106944,1.085726147,0.089380797,0.008658524,0.080722273,1.561062054,2.014703251,-72.08636609,72.08636609,0,0.862487785,0.002164631,0.069621975,1,0.915666246,0,0.013871359,0.961238037,1,0.68591319,0.961416594,0.26769316,0.00614017,0.115824807,0.268201914,0.724496596,0.448993192,0.967976968,0.929215005,0.001568268,0.067164878,0.269261428,0.073305048,0,0.091563362,-0.230847512,103.3469734,0.230847512,76.65302657,0,0.833406806,0.269261428,0.149614577,0.367181176,11,7,36% +11/20/2018 16:00,79.60976363,125.2214826,114.5898073,430.9125207,36.87407285,36.62600988,0,36.62600988,35.76218351,0.86382637,38.55492185,9.659407058,28.89551479,1.111889347,27.78362545,1.389452492,2.185527166,-3.110881524,3.110881524,0.937854238,0.321791909,0.827418025,26.61260791,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.37597107,0.805560047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.599461542,25.58105098,34.97543261,26.38661103,0,9.659407058,-0.022416167,91.28445935,0.022416167,88.71554065,0,0,34.97543261,26.38661103,52.2449418,11,8,49% +11/20/2018 17:00,70.69602445,136.5127505,276.7436512,660.0499297,58.54442535,178.992217,120.1269115,58.86530546,56.77909492,2.08621054,68.86503269,0,68.86503269,1.76533043,67.09970226,1.233878395,2.382596967,-1.137812714,1.137812714,0.724731123,0.211547492,1.633426839,52.53662202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.57822573,1.278975887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.183412185,50.50019941,55.76163792,51.7791753,120.1269115,0,0.181996704,79.5139162,-0.181996704,100.4860838,0.77526975,0,148.8923985,51.7791753,182.7808332,11,9,23% +11/20/2018 18:00,63.59958873,149.7490376,406.4386313,756.1597889,70.21852637,345.8842149,274.7191301,71.1650848,68.10117872,3.063906083,100.6630994,0,100.6630994,2.117347649,98.54575173,1.110022226,2.613613758,-0.358491783,0.358491783,0.591459395,0.172765384,2.028431661,65.2413349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46144334,1.534011164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469591833,62.71245268,66.93103517,64.24646384,274.7191301,0,0.363308303,68.69649017,-0.363308303,111.3035098,0.91237584,0,317.5781323,64.24646384,359.626158,11,10,13% +11/20/2018 19:00,59.0409704,164.9771892,486.8950935,798.0022092,76.38279898,483.8113055,406.0613088,77.74999665,74.07957577,3.67042088,120.3565757,0,120.3565757,2.303223212,118.0533525,1.030459327,2.879395141,0.144625588,-0.144625588,0.505421257,0.156877323,2.139890047,68.82621972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.20810598,1.668677376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.550343054,66.15838033,72.75844904,67.8270577,406.0613088,0,0.508847349,59.41291729,-0.508847349,120.5870827,0.951738704,0,459.2227128,67.8270577,503.6141656,11,11,10% +11/20/2018 20:00,57.64915022,181.479454,510.8381645,808.6788497,78.11224756,571.7940305,492.1862415,79.60778895,75.75687509,3.850913863,126.2139997,0,126.2139997,2.355372467,123.8586273,1.006167482,3.167413996,0.57808327,-0.57808327,0.431295628,0.152909968,1.995759968,64.19050096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.82038989,1.706459335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445921303,61.70235112,74.26631119,63.40881046,492.1862415,0,0.608630041,52.5094882,-0.608630041,127.4905118,0.967848288,0,550.6279223,63.40881046,592.1277206,11,12,8% +11/20/2018 21:00,59.65203898,197.8402496,476.2845923,793.0367653,75.60262693,597.0231103,520.109747,76.91336323,73.32292879,3.59043444,117.7604118,0,117.7604118,2.279698146,115.4807136,1.041124486,3.452963749,1.047799879,-1.047799879,0.350969357,0.158734144,1.630030956,52.42739875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.48078812,1.651633546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.180951879,50.39520985,71.66174,52.04684339,520.109747,0,0.655845693,49.01619397,-0.655845693,130.983806,0.973762555,0,578.1251361,52.04684339,612.1887542,11,13,6% +11/20/2018 22:00,64.7275501,212.7289238,386.1160183,743.833191,68.55645033,550.8822827,481.4823567,69.39992605,66.48922041,2.910705642,95.68552887,0,95.68552887,2.067229924,93.61829894,1.129708866,3.712820135,1.685581366,-1.685581366,0.241902299,0.177554018,1.095896951,35.24781305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.91196769,1.497701043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.79397361,33.88153862,64.7059413,35.37923967,481.4823567,0,0.647298833,49.66174629,-0.647298833,130.3382537,0.972755924,0,533.0707562,35.37923967,556.225761,11,14,4% +11/20/2018 23:00,72.2087541,225.5839379,248.7687219,632.2486856,55.58524503,424.8037046,369.0192361,55.78446851,53.9091448,1.875323706,61.992957,0,61.992957,1.676100225,60.31685677,1.260280508,3.937182456,2.837576145,-2.837576145,0.04489959,0.223441454,0.484412268,15.5803637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.81952052,1.214328908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350955039,14.97643822,52.17047556,16.19076713,369.0192361,0,0.583661531,54.29151049,-0.583661531,125.7084895,0.964333912,0,408.0282391,16.19076713,418.6247724,11,15,3% +11/20/2018 0:00,81.3798214,236.5532111,84.69343151,359.4546995,30.81708241,199.3732744,168.8469859,30.52628853,29.88783367,0.638454861,21.46415175,0,21.46415175,0.929248737,20.53490302,1.420345828,4.12863239,6.415644589,-6.415644589,0,0.363866263,0.232312184,7.471958417,0.361832267,1,0.154624784,0,0.944770114,0.983532077,0.724496596,1,28.97645644,0.673237547,0.052836817,0.312029739,0.861115917,0.585612513,0.961238037,0.922476074,0.159203199,7.18233064,29.13565964,7.855568187,107.7526982,0,0.469730918,61.98316876,-0.469730918,118.0168312,0.94355608,0,130.8063732,7.855568187,135.9476855,11,16,4% +11/20/2018 1:00,91.87782804,246.1121517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603570609,4.295467376,-30.43061091,30.43061091,0,#DIV/0!,0,0,1,0.788766369,0,0.032849826,0.961238037,1,0.635566261,0.911069665,0,0,0.115824807,0.211116641,0.724496596,0.448993192,0.976147133,0.93738517,0,0,0,0,0,0,0.310257556,71.92524729,-0.310257556,108.0747527,0.88884357,0,0,0,0,11,17,0% +11/20/2018 2:00,103.0366429,254.8205874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798328668,4.447458252,-4.303595395,4.303595395,0.733888154,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.12005591,83.10467067,-0.12005591,96.89532933,0.633527376,0,0,0,0,11,18,0% +11/20/2018 3:00,114.657585,263.2780493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001152371,4.595068808,-2.120166956,2.120166956,0.892723593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089510234,95.13543187,0.089510234,84.86456813,0,0.491404658,0,0,0,11,19,0% +11/20/2018 4:00,126.4828849,272.2294375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207542789,4.751300005,-1.251761605,1.251761605,0.744217531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304167629,107.7080935,0.304167629,72.2919065,0,0.885616959,0,0,0,11,20,0% +11/20/2018 5:00,138.216153,282.8765917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412326949,4.937127902,-0.75047921,0.75047921,0.658493193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509298582,120.6171199,0.509298582,59.38288009,0,0.951825762,0,0,0,11,21,0% +11/20/2018 6:00,149.334209,297.7239758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606373633,5.196263639,-0.398878734,0.398878734,0.59836597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690936598,133.7042945,0.690936598,46.29570547,0,0.97763446,0,0,0,11,22,0% +11/20/2018 7:00,158.477603,322.6324388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.765955963,5.630998331,-0.11771728,0.11771728,0.55028453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836717426,146.7950941,0.836717426,33.20490588,0,0.990242669,0,0,0,11,23,0% +11/21/2018 8:00,162.0362124,3.959711174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.828065415,0.069109997,0.131664291,-0.131664291,0.50763777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936720751,159.5079465,0.936720751,20.4920535,0,0.996622299,0,0,0,11,0,0% +11/21/2018 9:00,157.1718242,42.83502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743165825,0.747612243,0.374508544,-0.374508544,0.466108957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984145359,169.7837548,0.984145359,10.21624518,0,0.999194497,0,0,0,11,1,0% +11/21/2018 10:00,147.5183581,65.39300657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574681057,1.141323273,0.634563035,-0.634563035,0.421637019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975771868,167.3619997,0.975771868,12.63800032,0,0.998758515,0,0,0,11,2,0% +11/21/2018 11:00,136.2411199,79.23712636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377856119,1.382948745,0.945171231,-0.945171231,0.36851989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91218158,155.8085924,0.91218158,24.19140764,0,0.995186352,0,0,0,11,3,0% +11/21/2018 12:00,124.4735531,89.47450698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172473333,1.561624743,1.373125231,-1.373125231,0.295335445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797716597,142.9126033,0.797716597,37.08739666,0,0.987321099,0,0,0,11,4,0% +11/21/2018 13:00,112.6761679,98.28119215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966570118,1.715330396,2.107682875,-2.107682875,0.16971869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640183887,129.8055329,0.640183887,50.19446714,0,0.971897441,0,0,0,11,5,0% +11/21/2018 14:00,101.1308662,106.7427545,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76506659,1.863012519,4.072795425,-4.072795425,0,#DIV/0!,0,0,0.142613656,1,0.240768714,0,0.933228467,0.97199043,0.724496596,1,0,0,0.022852837,0.312029739,0.937237509,0.661734105,0.961238037,0.922476074,0,0,0,0,0,0,-0.450323423,116.7644363,0.450323423,63.23556367,0,0.938968689,0,0,0,11,6,0% +11/21/2018 15:00,89.60331903,115.5641339,0.19152183,3.398733064,0.167991266,0.164369482,0,0.164369482,0.16292571,0.001443772,0.843204249,0.791702008,0.051502241,0.005065556,0.046436685,1.563872938,2.016974635,-101.1208899,101.1208899,0,0.877139001,0.001266389,0.040731427,1,0.94055702,0,0.009888831,0.961238037,1,0.696836806,0.97234021,0.156610389,0.003612824,0.115824807,0.280604985,0.724496596,0.448993192,0.966110293,0.927348329,0.000917495,0.039257201,0.157527884,0.042870024,0,0.047061127,-0.232940332,103.4702434,0.232940332,76.52975658,0,0.835352757,0.157527884,0.082182666,0.211314795,11,7,34% +11/21/2018 16:00,79.80899112,125.3327161,111.2267157,424.114318,36.18804487,35.93531576,0,35.93531576,35.09684179,0.838473965,38.75350452,10.69409649,28.05940803,1.091203072,26.96820496,1.392929668,2.187468557,-3.164161857,3.164161857,0.928742764,0.325353892,0.798165657,25.67175121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.73641931,0.790572911,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.578268301,24.67666373,34.31468761,25.46723664,0,10.69409649,-0.025215127,91.44487351,0.025215127,88.55512649,0,0,34.31468761,25.46723664,50.98248465,11,8,49% +11/21/2018 17:00,70.90944707,136.5976491,272.9030347,656.9114123,58.05221583,175.9221427,117.563157,58.35898568,56.30172733,2.05725835,67.91898881,0,67.91898881,1.750488497,66.16850031,1.237603322,2.384078728,-1.14761535,1.14761535,0.726407473,0.212721034,1.614137982,51.91622606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.11936185,1.268222957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.169437473,49.90385122,55.28879932,51.17207417,117.563157,0,0.178963487,79.69060832,-0.178963487,100.3093917,0.770613401,0,145.8845435,51.17207417,179.3756426,11,9,23% +11/21/2018 18:00,63.82392651,149.794289,402.5235869,754.2817282,69.78644147,342.3654569,271.6489413,70.7165156,67.68212277,3.034392825,99.70082259,0,99.70082259,2.104318695,97.5965039,1.113937659,2.614403543,-0.360462982,0.360462982,0.59179649,0.173372303,2.010490592,64.66428847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05863082,1.524571731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45659359,62.1577737,66.51522441,63.68234543,271.6489413,0,0.360142545,68.89104954,-0.360142545,111.1089505,0.911166084,0,314.0325264,63.68234543,355.7113478,11,10,13% +11/21/2018 19:00,59.26863642,164.9668065,483.0683824,796.6315265,75.97889986,480.1453472,402.815918,77.32942921,73.68785569,3.641573515,119.4165662,0,119.4165662,2.291044163,117.1255221,1.034432849,2.879213929,0.145633319,-0.145633319,0.505248925,0.157283943,2.123275245,68.2918306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83156975,1.659853697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538305687,65.64470518,72.36987543,67.30455888,402.815918,0,0.505648979,59.62555749,-0.505648979,120.3744425,0.951117174,0,455.495013,67.30455888,499.5445007,11,11,10% +11/21/2018 20:00,57.86789564,181.4048696,507.2170747,807.5032977,77.72774309,568.1506555,488.9430741,79.20758141,75.38396485,3.823616559,125.3244304,0,125.3244304,2.343778239,122.9806521,1.00998531,3.166112254,0.581066053,-0.581066053,0.430785542,0.153243546,1.980686847,63.70569757,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.46193439,1.698059356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.435000878,61.23633967,73.89693526,62.93439903,488.9430741,0,0.605499786,52.73518531,-0.605499786,127.2648147,0.967423588,0,546.9119982,62.93439903,588.1013036,11,12,8% +11/21/2018 21:00,59.84943734,197.7094338,472.9637448,791.8581486,75.23396537,593.5186997,516.9879155,76.53078422,72.96538373,3.565400489,116.9441174,0,116.9441174,2.26858164,114.6755357,1.044569737,3.450680582,1.053021362,-1.053021362,0.350076431,0.159069202,1.616763847,52.00068292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13710221,1.643579675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171339904,49.98503436,71.30844212,51.62861404,516.9879155,0,0.652879454,49.2409462,-0.652879454,130.7590538,0.973416184,0,574.5528459,51.62861404,608.3427413,11,13,6% +11/21/2018 22:00,64.89657447,212.5611035,383.1726897,742.4206552,68.19808151,547.5808596,478.5506843,69.03017532,66.14165773,2.888517588,94.96107863,0,94.96107863,2.056423782,92.90465485,1.132658898,3.709891118,1.694749224,-1.694749224,0.240334503,0.177982626,1.084758989,34.88957791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57787723,1.48987203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.785904195,33.53718937,64.36378143,35.0270614,478.5506843,0,0.644581587,49.86568844,-0.644581587,130.1343116,0.972430301,0,529.7209672,35.0270614,552.6454784,11,14,4% +11/21/2018 23:00,72.34883805,225.3964977,246.2804692,630.1091592,55.21819249,421.6685626,366.2588362,55.40972646,53.55316025,1.856566206,61.37858333,0,61.37858333,1.665032237,59.71355109,1.262725434,3.933911007,2.857340106,-2.857340106,0.041519753,0.224208573,0.476059298,15.31170348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.47733463,1.206310188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344903341,14.71819179,51.82223797,15.92450198,366.2588362,0,0.581262518,54.46060953,-0.581262518,125.5393905,0.963980347,0,404.888558,15.92450198,415.3108261,11,15,3% +11/21/2018 0:00,81.49381938,236.3554614,82.89651175,355.136574,30.3660956,196.1752931,166.0999384,30.0753547,29.45044578,0.624908921,21.01486884,0,21.01486884,0.915649821,20.09921902,1.422335468,4.125181007,6.497523219,-6.497523219,0,0.36631331,0.228912455,7.362611446,0.367484219,1,0.152706616,0,0.945008351,0.983770314,0.724496596,1,28.55297009,0.663385179,0.053539292,0.312029739,0.859417723,0.583914319,0.961238037,0.922476074,0.156841079,7.077222172,28.70981117,7.740607351,105.0608323,0,0.467707216,62.11443038,-0.467707216,117.8855696,0.943095513,0,127.7922107,7.740607351,132.8582834,11,16,4% +11/21/2018 1:00,91.97284331,245.906082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605228938,4.291870782,-28.95668094,28.95668094,0,#DIV/0!,0,0,1,0.776887199,0,0.034520626,0.961238037,1,0.631269558,0.906772962,0,0,0.115824807,0.206251834,0.724496596,0.448993192,0.976810855,0.938048892,0,0,0,0,0,0,0.308595543,72.02538825,-0.308595543,107.9746117,0.887975625,0,0,0,0,11,17,0% +11/21/2018 2:00,103.1167908,254.6029918,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799727513,4.443660493,-4.277704897,4.277704897,0.738315689,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.118771561,83.1787888,-0.118771561,96.8212112,0.629023805,0,0,0,0,11,18,0% +11/21/2018 3:00,114.7285496,263.0414366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002390937,4.590939138,-2.115301157,2.115301157,0.891891492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090447841,95.18937157,0.090447841,84.81062843,0,0.497195208,0,0,0,11,19,0% +11/21/2018 4:00,126.551454,271.9612602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208739546,4.746619428,-1.25100793,1.25100793,0.744088645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304813171,107.7469242,0.304813171,72.25307582,0,0.885965094,0,0,0,11,20,0% +11/21/2018 5:00,138.2921532,282.556997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413653403,4.931549922,-0.751164864,0.751164864,0.658610447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509726742,120.6456298,0.509726742,59.35437015,0,0.951908227,0,0,0,11,21,0% +11/21/2018 6:00,149.4348724,297.3272133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60813054,5.189338828,-0.400299406,0.400299406,0.59860892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691236936,133.728103,0.691236936,46.27189703,0,0.977665902,0,0,0,11,22,0% +11/21/2018 7:00,158.6336255,322.1869811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768679069,5.623223627,-0.119678404,0.119678404,0.550619902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836988221,146.8234365,0.836988221,33.17656348,0,0.990262003,0,0,0,11,23,0% +11/22/2018 8:00,162.2564678,3.804737922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.831909595,0.066405204,0.129149857,-0.129149857,0.508067763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937062245,159.5639105,0.937062245,20.43608947,0,0.996641752,0,0,0,11,0,0% +11/22/2018 9:00,157.3840998,43.02899996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746870731,0.750997723,0.371276039,-0.371276039,0.466661748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984652852,169.9490187,0.984652852,10.05098131,0,0.999220682,0,0,0,11,1,0% +11/22/2018 10:00,147.7039916,65.63002847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577920971,1.145460085,0.630238697,-0.630238697,0.422376525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976529158,167.5618703,0.976529158,12.43812969,0,0.998798252,0,0,0,11,2,0% +11/22/2018 11:00,136.4129376,79.44679871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380854904,1.386608218,0.938947976,-0.938947976,0.369584129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913255182,155.9591425,0.913255182,24.04085754,0,0.99525079,0,0,0,11,3,0% +11/22/2018 12:00,124.6414745,89.65539499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175404115,1.564781835,1.363007347,-1.363007347,0.297065706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.79915115,143.0491195,0.79915115,36.95088054,0,0.987433613,0,0,0,11,4,0% +11/22/2018 13:00,112.8464385,98.43947651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969541901,1.718092979,2.087084363,-2.087084363,0.173241243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641999064,129.9410467,0.641999064,50.05895332,0,0.972118266,0,0,0,11,5,0% +11/22/2018 14:00,101.3077467,106.8829652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768153738,1.865459657,4.000109184,-4.000109184,0,#DIV/0!,0,0,0.133377733,1,0.244972241,0,0.932623878,0.971385841,0.724496596,1,0,0,0.021460564,0.312029739,0.940944212,0.665440808,0.961238037,0.922476074,0,0,0,0,0,0,-0.452512553,116.9050014,0.452512553,63.09499863,0,0.939505828,0,0,0,11,6,0% +11/22/2018 15:00,89.7612,115.6877566,0.091957834,2.404471876,0.081936394,0.080158927,0,0.080158927,0.07946571,0.000693217,0.589831857,0.565064931,0.024766926,0.002470685,0.022296242,1.566628481,2.019132258,-167.6079492,167.6079492,0,0.891021357,0.000617671,0.019866427,1,0.964529952,0,0.005966233,0.961238037,1,0.707717262,0.983220666,0.076385463,0.00177269,0.115824807,0.292963727,0.724496596,0.448993192,0.964218411,0.925456448,0.000447501,0.019128261,0.076832964,0.020900951,0,0.02004288,-0.235005839,103.591967,0.235005839,76.40803304,0,0.837239329,0.076832964,0.037681638,0.101494842,11,7,32% +11/22/2018 16:00,80.00581234,125.4374123,107.9198259,417.2730598,35.50280674,35.24581136,0,35.24581136,34.43226612,0.813545233,38.92216631,11.68521446,27.23695184,1.070540615,26.16641123,1.396364846,2.18929585,-3.219262669,3.219262669,0.919319971,0.328973907,0.769501192,24.74980346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.09760389,0.775603031,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.557500994,23.79045249,33.65510489,24.56605552,0,11.68521446,-0.02800376,91.60470702,0.02800376,88.39529298,0,0,33.65510489,24.56605552,49.73309691,11,8,48% +11/22/2018 17:00,71.11963805,136.6760883,269.1206671,653.7749358,57.56358944,172.8871811,115.030601,57.8565801,55.82783483,2.028745265,66.98717611,0,66.98717611,1.735754609,65.2514215,1.241271847,2.38544775,-1.157707976,1.157707976,0.728133414,0.213895091,1.595170635,51.306171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.66383836,1.257548305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.155695695,49.31744309,54.81953405,50.5749914,115.030601,0,0.175948319,79.86615086,-0.175948319,100.1338491,0.765825646,0,142.9129184,50.5749914,176.0132387,11,9,23% +11/22/2018 18:00,64.04400925,149.8335499,398.6788401,752.4201993,69.35907959,338.8910398,268.6179829,70.27305693,67.26764743,3.005409499,98.75573269,0,98.75573269,2.091432157,96.66430053,1.117778828,2.615088775,-0.362602491,0.362602491,0.592162368,0.173972312,1.992931589,64.09953057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.66022136,1.515235479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.443872152,61.61490693,66.10409351,63.13014241,268.6179829,0,0.357005279,69.08360657,-0.357005279,110.9163934,0.909946048,0,310.5319656,63.13014241,351.8493812,11,10,13% +11/22/2018 19:00,59.49100814,164.9516083,479.3252465,795.2839611,75.58059182,476.5380469,399.6231326,76.91491429,73.30155812,3.613356176,118.4969891,0,118.4969891,2.279033706,116.2179554,1.038313967,2.878948672,0.146480086,-0.146480086,0.50510412,0.157681225,2.107092188,67.77132786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.46024582,1.651152162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526581118,65.14437814,71.98682694,66.79553031,399.6231326,0,0.502491125,59.83505116,-0.502491125,120.1649488,0.950495755,0,451.8269181,66.79553031,495.5432568,11,11,10% +11/22/2018 20:00,58.08054272,181.3273295,503.6923121,806.3573172,77.34974164,564.5824309,485.7680239,78.81440695,75.01736154,3.797045409,124.4584127,0,124.4584127,2.332380101,122.1260326,1.013696702,3.164758924,0.58385936,-0.58385936,0.430307859,0.15356546,1.966083132,63.2359919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10954133,1.689801443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424420537,60.78484071,73.53396187,62.47464216,485.7680239,0,0.602422789,52.9563851,-0.602422789,127.0436149,0.967001812,0,543.2725211,62.47464216,584.1609249,11,12,8% +11/22/2018 21:00,60.04033182,197.5776575,469.750294,790.7190593,74.87289665,590.1071954,513.9508167,76.1563787,72.61520256,3.54117614,116.1540915,0,116.1540915,2.257694086,113.8963974,1.047901474,3.448380651,1.057986427,-1.057986427,0.349227355,0.159388717,1.603986965,51.58973445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.80049476,1.635691679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.162083096,49.59001506,70.96257785,51.22570674,513.9508167,0,0.649979042,49.45997824,-0.649979042,130.5400218,0.973074443,0,571.0749825,51.22570674,604.601183,11,13,6% +11/22/2018 22:00,65.05903169,212.3938956,380.3449706,741.0665555,67.84886028,544.391685,475.7215171,68.67016785,65.80296681,2.867201047,94.26493507,0,94.26493507,2.045893473,92.2190416,1.135494311,3.706972789,1.70351131,-1.70351131,0.238836098,0.178387689,1.074106176,34.54694683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.25231463,1.482242857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.778186268,33.20783935,64.0305009,34.69008221,475.7215171,0,0.64194169,50.06324071,-0.64194169,129.9367593,0.972111306,0,526.4847661,34.69008221,549.1887311,11,14,4% +11/22/2018 23:00,72.48247095,225.2107084,243.9112531,628.0713737,54.86329885,418.6698998,363.6222257,55.04767402,53.20896797,1.838706055,60.79343812,0,60.79343812,1.654330884,59.13910723,1.265057768,3.930668373,2.876282264,-2.876282264,0.038280453,0.224931397,0.468137089,15.05689798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.14648391,1.198557094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339163727,14.47326305,51.48564764,15.67182015,363.6222257,0,0.578950484,54.62324092,-0.578950484,125.3767591,0.963636828,0,401.885416,15.67182015,412.1423088,11,15,3% +11/22/2018 0:00,81.60154852,236.1600284,81.20885375,351.0470322,29.93622601,193.1554511,163.5097261,29.64572499,29.03353834,0.612186642,20.59271446,0,20.59271446,0.902687667,19.6900268,1.424215696,4.121770058,6.576609872,-6.576609872,0,0.36863254,0.225671917,7.258384586,0.3728492,1,0.150898166,0,0.9452322,0.983994163,0.724496596,1,28.14922891,0.653994142,0.054203113,0.312029739,0.857816568,0.582313164,0.961238037,0.922476074,0.154593023,6.97703535,28.30382193,7.631029492,102.5452555,0,0.465777264,62.23946317,-0.465777264,117.7605368,0.942652553,0,124.9683688,7.631029492,129.962725,11,16,4% +11/22/2018 1:00,92.06167226,245.7028018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606779296,4.288322873,-27.70083763,27.70083763,0,#DIV/0!,0,0,1,0.765658462,0,0.036084322,0.961238037,1,0.627268225,0.902771629,0,0,0.115824807,0.201722474,0.724496596,0.448993192,0.977424152,0.938662189,0,0,0,0,0,0,0.307032248,72.1195293,-0.307032248,107.8804707,0.887150657,0,0,0,0,11,17,0% +11/22/2018 2:00,103.1908092,254.3885874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801019378,4.43991843,-4.254090529,4.254090529,0.742353984,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117586908,83.24714343,-0.117586908,96.75285657,0.624782595,0,0,0,0,11,18,0% +11/22/2018 3:00,114.7933405,262.8084126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003521752,4.586872101,-2.110990484,2.110990484,0.891154324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091288122,95.23771612,0.091288122,84.76228388,0,0.502283616,0,0,0,11,19,0% +11/22/2018 4:00,126.6136598,271.6970604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209825242,4.742008272,-1.250480666,1.250480666,0.743998478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305366939,107.7802412,0.305366939,72.2197588,0,0.886262563,0,0,0,11,20,0% +11/22/2018 5:00,138.3613854,282.2415429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414861733,4.92604421,-0.751962196,0.751962196,0.658746799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510071479,120.668591,0.510071479,59.33140899,0,0.951974523,0,0,0,11,21,0% +11/22/2018 6:00,149.5280892,296.9333687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609757482,5.182464942,-0.401777665,0.401777665,0.598861717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691464424,133.7461428,0.691464424,46.2538572,0,0.9776897,0,0,0,11,22,0% +11/22/2018 7:00,158.7817061,321.7372638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771263563,5.615374581,-0.12166524,0.12166524,0.550959671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837198235,146.8454321,0.837198235,33.15456789,0,0.990276988,0,0,0,11,23,0% +11/23/2018 8:00,162.4706296,3.635246842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.835647423,0.063447027,0.126633262,-0.126633262,0.508498126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937355688,159.6121174,0.937355688,20.38788255,0,0.996658456,0,0,0,11,0,0% +11/23/2018 9:00,157.5928039,43.21092544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750513305,0.754172922,0.368063926,-0.368063926,0.467211051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985124811,170.1051618,0.985124811,9.894838233,0,0.99924501,0,0,0,11,1,0% +11/23/2018 10:00,147.8874865,65.85710788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581123563,1.149423368,0.625963262,-0.625963262,0.423107667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977262353,167.7584407,0.977262353,12.24155934,0,0.998836666,0,0,0,11,2,0% +11/23/2018 11:00,136.5833405,79.64801742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383828995,1.390120147,0.932820748,-0.932820748,0.370631947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914314264,156.1085303,0.914314264,23.89146967,0,0.995314208,0,0,0,11,3,0% +11/23/2018 12:00,124.8082636,89.82880041,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178315134,1.56780833,1.353088389,-1.353088389,0.298761947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800578232,143.185355,0.800578232,36.814645,0,0.987545142,0,0,0,11,4,0% +11/23/2018 13:00,113.0155686,98.59084302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972493778,1.720734823,2.067016705,-2.067016705,0.176673015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643810806,130.0765723,0.643810806,49.92342774,0,0.972337433,0,0,0,11,5,0% +11/23/2018 14:00,101.4832536,107.016533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771216911,1.867790855,3.930445085,-3.930445085,0,#DIV/0!,0,0,0.124337128,1,0.249138179,0,0.93202097,0.970782934,0.724496596,1,0,0,0.020086596,0.312029739,0.944617099,0.669113695,0.961238037,0.922476074,0,0,0,0,0,0,-0.454698994,117.0455687,0.454698994,62.95443134,0,0.940037144,0,0,0,11,6,0% +11/23/2018 15:00,89.91607438,115.8048196,0.025412041,1.664740357,0.022973566,0.022472395,0,0.022472395,0.022280828,0.000191567,0.401476197,0.394622016,0.006854181,0.000692738,0.006161443,1.569331548,2.021175392,-475.9111048,475.9111048,0,0.904042542,0.000173184,0.005570207,1,0.987641466,0,0.00210123,0.961238037,1,0.718555466,0.994058871,0.021417179,0.000500129,0.115824807,0.305278183,0.724496596,0.448993192,0.962301946,0.923539983,0.000125472,0.005357553,0.021542651,0.005857682,0,0.00487695,-0.237047185,103.7123281,0.237047185,76.28767188,0,0.83907153,0.021542651,0.009949791,0.02805459,11,7,30% +11/23/2018 16:00,80.20013322,125.5355524,104.6709798,410.394798,34.81882701,34.55796496,0,34.55796496,33.76891091,0.789054059,39.06087085,12.63226387,26.42860699,1.049916102,25.37869088,1.399756385,2.191008717,-3.276226602,3.276226602,0.909578564,0.332650244,0.741440388,23.84727157,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.45996163,0.760660642,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537171037,22.92290451,32.99713266,23.68356515,0,12.63226387,-0.03078076,91.76388626,0.03078076,88.23611374,0,0,32.99713266,23.68356515,48.49755238,11,8,47% +11/23/2018 17:00,71.32649808,136.7480756,265.3986025,650.6436886,57.07882993,169.8890191,112.5306397,57.35837938,55.35769261,2.00068677,66.07010117,0,66.07010117,1.721137321,64.34896385,1.244882235,2.386704165,-1.168090232,1.168090232,0.729908884,0.215068314,1.576535023,50.70678563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.21191976,1.24695813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.142194257,48.74129107,54.35411402,49.9882492,112.5306397,0,0.172952788,80.04045504,-0.172952788,99.95954496,0.760903764,0,139.9791013,49.9882492,172.6954107,11,9,23% +11/23/2018 18:00,64.25973857,149.8668532,394.9066021,750.5775175,68.93667128,335.463065,265.628116,69.83494906,66.85797629,2.976972776,97.82837273,0,97.82837273,2.078694988,95.74967775,1.121544015,2.615670029,-0.364912094,0.364912094,0.592557333,0.174564494,1.975764306,63.54737172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26642988,1.506007443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431434514,61.08415084,65.69786439,62.59015828,265.628116,0,0.353898311,69.27406047,-0.353898311,110.7259395,0.908716478,0,307.0785103,62.59015828,348.0425171,11,10,13% +11/23/2018 19:00,59.7079947,164.931642,475.6679136,793.9614572,75.18808095,472.9917486,396.48508,76.50666855,72.9208829,3.585785656,117.5983908,0,117.5983908,2.267198055,115.3311928,1.042101097,2.878600193,0.147162278,-0.147162278,0.504987458,0.158068431,2.091349651,67.26499376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.09432632,1.642577273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515175703,64.65767055,71.60950202,66.30024782,396.48508,0,0.499375727,60.04129297,-0.499375727,119.958707,0.949874989,0,448.2207632,66.30024782,491.6129494,11,11,10% +11/23/2018 20:00,58.28701061,181.2468794,500.2659969,805.2427763,76.97843703,561.0918134,482.6633438,78.42846953,74.65725313,3.771216398,123.6164667,0,123.6164667,2.321183897,121.2952828,1.017300246,3.163354804,0.586457575,-0.586457575,0.429863538,0.153875014,1.951956316,62.78162492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.76339144,1.681689831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414185706,60.34808589,73.17757714,62.02977572,482.6633438,0,0.599401023,53.17298889,-0.599401023,126.8270111,0.966583392,0,539.7119494,62.02977572,580.309197,11,12,8% +11/23/2018 21:00,60.22465014,197.4449614,466.6461379,789.6215629,74.51961207,586.7910729,511.0007264,75.79034652,72.27257082,3.5177757,115.3908,0,115.3908,2.247041252,113.1437588,1.051118436,3.446064668,1.06268607,-1.06268607,0.348423669,0.159691908,1.591706038,51.19473765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.4711441,1.627973738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153185607,49.21032912,70.6243297,50.83830285,511.0007264,0,0.647146368,49.67320584,-0.647146368,130.3267942,0.972737726,0,567.6940142,50.83830285,600.9666667,11,13,6% +11/23/2018 22:00,65.21485775,212.2273453,377.63442,739.7736071,67.50899446,541.3172254,472.9971085,68.32011697,65.4733492,2.846767772,93.5974825,0,93.5974825,2.035645265,91.56183723,1.138213989,3.704065938,1.711850688,-1.711850688,0.237409981,0.178768118,1.063941772,34.22002468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93547365,1.474818065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.770822192,32.89358934,63.70629584,34.36840741,472.9971085,0,0.639380892,50.25433038,-0.639380892,129.7456696,0.971799352,0,523.3645794,34.36840741,545.8580146,11,14,4% +11/23/2018 23:00,72.60959927,225.0266282,241.6621105,626.1398783,54.52085027,415.8103278,361.1117313,54.69859654,52.87684547,1.821751067,60.23778135,0,60.23778135,1.644004796,58.59377655,1.267276576,3.927455567,2.894357351,-2.894357351,0.035189432,0.225607772,0.460644685,14.81591652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82723513,1.191075878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333735506,14.24162251,51.16097064,15.43269839,361.1117313,0,0.576726932,54.77933976,-0.576726932,125.2206602,0.963303858,0,399.0212946,15.43269839,409.121687,11,15,3% +11/23/2018 0:00,81.70297079,235.966986,79.63002076,347.1953037,29.52803935,190.3164978,161.078553,29.23794475,28.63766002,0.600284732,20.19759979,0,20.19759979,0.890379333,19.30722046,1.425985849,4.118400831,6.652593574,-6.652593574,0,0.370815417,0.222594833,7.159415005,0.377918656,1,0.149200265,0,0.945441691,0.984203654,0.724496596,1,27.76578032,0.645076796,0.054827714,0.312029739,0.856313207,0.580809803,0.961238037,0.922476074,0.152461363,6.881902025,27.91824168,7.526978821,100.2039628,0,0.4639422,62.35821549,-0.4639422,117.6417845,0.942227954,0,122.3332166,7.526978821,127.2594737,11,16,4% +11/23/2018 1:00,92.14428613,245.5024018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60822118,4.284825234,-26.62549243,26.62549243,0,#DIV/0!,0,0,1,0.755104903,0,0.037540346,0.961238037,1,0.623559754,0.899063158,0,0,0.115824807,0.197525498,0.724496596,0.448993192,0.977988421,0.939226457,0,0,0,0,0,0,0.30556853,72.20762871,-0.30556853,107.7923713,0.886370584,0,0,0,0,11,17,0% +11/23/2018 2:00,103.2586831,254.1774857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802204001,4.436234009,-4.232689729,4.232689729,0.746013736,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116502433,83.3097093,-0.116502433,96.6902907,0.620824415,0,0,0,0,11,18,0% +11/23/2018 3:00,114.8519562,262.5791172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004544788,4.582870142,-2.107228817,2.107228817,0.890511041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092030964,95.28045778,0.092030964,84.71954222,0,0.506704595,0,0,0,11,19,0% +11/23/2018 4:00,126.6695127,271.4370249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210800059,4.737469797,-1.250178373,1.250178373,0.743946783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305829161,107.8080552,0.305829161,72.19194483,0,0.886510031,0,0,0,11,20,0% +11/23/2018 5:00,138.4238671,281.9305033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415952245,4.920615544,-0.75287048,0.75287048,0.658902124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510333307,120.6860337,0.510333307,59.31396627,0,0.952024815,0,0,0,11,21,0% +11/23/2018 6:00,149.6138659,296.5428858,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611254567,5.17564973,-0.403312857,0.403312857,0.59912425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691619793,133.7584666,0.691619793,46.24153336,0,0.977705944,0,0,0,11,22,0% +11/23/2018 7:00,158.9217803,321.2838666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773708319,5.607461306,-0.123677049,0.123677049,0.551303711,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837348325,146.8611595,0.837348325,33.1388405,0,0.990287693,0,0,0,11,23,0% +11/24/2018 8:00,162.6785772,3.450989304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.839276794,0.060231126,0.124115382,-0.124115382,0.508928709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937601968,159.6526609,0.937601968,20.34733907,0,0.996672467,0,0,0,11,0,0% +11/24/2018 9:00,157.797892,43.38034984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754092767,0.757129935,0.364873266,-0.364873266,0.467756686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985562058,170.2520297,0.985562058,9.747970296,0,0.999267527,0,0,0,11,1,0% +11/24/2018 10:00,148.0688197,66.07397692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584288424,1.153208447,0.621738003,-0.621738003,0.423830229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977972116,167.951736,0.977972116,12.04826397,0,0.998873798,0,0,0,11,2,0% +11/24/2018 11:00,136.7522977,79.84061711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386777854,1.393481645,0.926790974,-0.926790974,0.371663099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915359245,156.2567963,0.915359245,23.74320373,0,0.995376637,0,0,0,11,3,0% +11/24/2018 12:00,124.9738762,89.99460946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181205619,1.570702244,1.343369303,-1.343369303,0.300424009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801997956,143.3213189,0.801997956,36.67868108,0,0.987655701,0,0,0,11,4,0% +11/24/2018 13:00,113.1835,98.73520859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975424734,1.723254477,2.047474651,-2.047474651,0.180014903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645618876,130.2120926,0.645618876,49.78790743,0,0.972554929,0,0,0,11,5,0% +11/24/2018 14:00,101.657315,107.1433975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774254855,1.870005058,3.86367297,-3.86367297,0,#DIV/0!,0,0,0.115493,1,0.253263468,0,0.931420303,0.970182266,0.724496596,1,0,0,0.0187317,0.312029739,0.948253507,0.672750103,0.961238037,0.922476074,0,0,0,0,0,0,-0.456882137,117.1860998,0.456882137,62.81390024,0,0.940562585,0,0,0,11,6,0% +11/24/2018 15:00,90.06826114,115.9152835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571987708,2.02310335,583.9614315,-583.9614315,0,#DIV/0!,0,0,0.990033203,1,0.00171244,0,0.961086707,0.99984867,0.724496596,1,0,0,0.115043864,0.312029739,0.725995563,0.450492159,0.961238037,0.922476074,0,0,0,0,0,0,-0.239070033,103.8316594,0.239070033,76.16834056,0,0.840856263,0,0,0,11,7,0% +11/24/2018 16:00,80.39186041,125.6271199,101.4819623,403.4859665,34.13659644,33.87226601,0,33.87226601,33.10725211,0.765013898,39.16968493,13.53486393,25.63482101,1.029344333,24.60547667,1.403102656,2.192606872,-3.33509461,3.33509461,0.899511542,0.336380926,0.713998137,22.96463444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.82395002,0.745756466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.51728922,22.07448013,32.34123924,22.82023659,0,13.53486393,-0.03354482,91.92233722,0.03354482,88.07766278,0,0,32.34123924,22.82023659,47.27662769,11,8,46% +11/24/2018 17:00,71.52992908,136.8136202,261.7388615,647.5209873,56.59822586,166.9293111,110.0646324,56.86467862,54.89158053,1.973098097,65.16826261,0,65.16826261,1.706645335,63.46161728,1.248432776,2.387848135,-1.178761131,1.178761131,0.731733715,0.216239291,1.558241252,50.11839507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.7638751,1.236458736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128940482,48.17570769,53.89281559,49.41216642,110.0646324,0,0.169978479,80.21343223,-0.169978479,99.78656777,0.755845114,0,137.0846303,49.41216642,169.423905,11,9,24% +11/24/2018 18:00,64.47101773,149.8942329,391.2090476,748.7560521,68.51944738,332.0836065,262.6811742,69.40243228,66.45333323,2.949099048,96.91927699,0,96.91927699,2.066114148,94.85316285,1.125231531,2.616147894,-0.367393362,0.367393362,0.592981655,0.175147911,1.958998224,63.0081169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87747158,1.496892667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.419287545,60.56579859,65.29675912,62.06269126,262.6811742,0,0.35082344,69.46231133,-0.35082344,110.5376887,0.907478166,0,303.6741894,62.06269126,344.2929796,11,10,13% +11/24/2018 19:00,59.91950709,164.9069549,472.0985683,792.6659821,74.8015716,469.5087622,393.4038555,76.10490665,72.54602822,3.558878423,116.721307,0,116.721307,2.255543372,114.4657636,1.045792685,2.878169322,0.147676416,-0.147676416,0.504899535,0.158444818,2.076056204,66.77310392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.73400175,1.634133495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.504095653,64.18484733,71.2380974,65.81898082,393.4038555,0,0.496304704,60.24417916,-0.496304704,119.7558208,0.949255438,0,444.6788466,65.81898082,487.7560532,11,11,10% +11/24/2018 20:00,58.48722032,181.1635653,496.9401987,804.1615474,76.61401999,557.6812149,479.6312451,78.04996974,74.30382461,3.746145126,122.7990999,0,122.7990999,2.310195378,120.4889045,1.020794565,3.161900699,0.58885521,-0.58885521,0.429453518,0.154171508,1.938313664,62.34283036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4236625,1.673728687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404301652,59.92629986,72.82796415,61.60002855,479.6312451,0,0.596436433,53.38489995,-0.596436433,126.6151001,0.96616877,0,536.2326942,61.60002855,576.5486809,11,12,8% +11/24/2018 21:00,60.40232204,197.3113873,463.6531181,788.5677121,74.17429848,583.5727497,508.139867,75.43288276,71.9376697,3.495213052,114.6546952,0,114.6546952,2.236628773,112.4180665,1.054219395,3.44373336,1.067111472,-1.067111472,0.34766688,0.159978,1.579926574,50.81586958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1492244,1.620429932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144651425,48.84614672,70.29387583,50.46657665,508.139867,0,0.644383303,49.88054662,-0.644383303,130.1194534,0.972406431,0,564.4123505,50.46657665,597.4417156,11,13,6% +11/24/2018 22:00,65.36399087,212.0614991,375.0425378,738.5444847,67.17868532,538.3598741,470.3796449,67.98022916,65.15300009,2.827229068,92.9590906,0,92.9590906,2.025685225,90.93340538,1.140816853,3.701171376,1.719750754,-1.719750754,0.23605899,0.179122842,1.054268842,33.90890999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62754191,1.46760205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763814187,32.59453407,63.39135609,34.06213612,470.3796449,0,0.636900897,50.43888653,-0.636900897,129.5611135,0.971494851,0,520.362759,34.06213612,542.6557458,11,14,4% +11/24/2018 23:00,72.73017196,224.8443161,239.5340207,624.3191158,54.19112128,413.092358,358.7295904,54.36276765,52.55705903,1.805708627,59.71185879,0,59.71185879,1.63406225,58.07779654,1.269380966,3.924273621,2.911520892,-2.911520892,0.032254293,0.226235593,0.453581037,14.58872533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51984424,1.183872538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.328617917,14.0232377,50.84846216,15.20711024,358.7295904,0,0.574593315,54.92884323,-0.574593315,125.0711568,0.962981932,0,396.2985762,15.20711024,406.2513258,11,15,3% +11/24/2018 0:00,81.79805086,235.7764086,78.15954017,343.5902092,29.14206593,187.6609887,158.8084639,28.85252475,28.26332512,0.589199629,19.82942622,0,19.82942622,0.878740811,18.95068541,1.427645309,4.115074628,6.72516255,-6.72516255,0,0.3728536,0.219685203,7.06583128,0.382684361,1,0.147613705,0,0.945636855,0.984398818,0.724496596,1,27.40313707,0.636644726,0.055412551,0.312029739,0.854908359,0.579404955,0.961238037,0.922476074,0.150448291,6.791945788,27.55358537,7.428590514,98.03494848,0,0.462203112,62.47063809,-0.462203112,117.5293619,0.941822451,0,119.8851008,7.428590514,124.7469647,11,16,4% +11/24/2018 1:00,92.22065903,245.3049736,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609554138,4.281379461,-25.7017969,25.7017969,0,#DIV/0!,0,0,1,0.745250178,0,0.03888817,0.961238037,1,0.620141778,0.895645182,0,0,0.115824807,0.193658024,0.724496596,0.448993192,0.978504955,0.939742992,0,0,0,0,0,0,0.304205189,72.2896474,-0.304205189,107.7103526,0.885637255,0,0,0,0,11,17,0% +11/24/2018 2:00,103.3204005,253.969798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803281174,4.432609175,-4.213446264,4.213446264,0.749304563,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115518567,83.36646392,-0.115518567,96.63353608,0.617169145,0,0,0,0,11,18,0% +11/24/2018 3:00,114.9043983,262.3536902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005460076,4.578935699,-2.104010586,2.104010586,0.889960691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092676304,95.31759172,0.092676304,84.68240828,0,0.510487763,0,0,0,11,19,0% +11/24/2018 4:00,126.7190268,271.1813395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211664242,4.733007244,-1.250099692,1.250099692,0.743933328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306200106,107.8303797,0.306200106,72.16962027,0,0.88670809,0,0,0,11,20,0% +11/24/2018 5:00,138.4796203,281.6241502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416925321,4.915268673,-0.753888986,0.753888986,0.659076299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510512776,120.6979915,0.510512776,59.30200847,0,0.952059258,0,0,0,11,21,0% +11/24/2018 6:00,149.6922149,296.1562112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612622014,5.168900985,-0.404904303,0.404904303,0.599396403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691703794,133.7651307,0.691703794,46.23486931,0,0.977714723,0,0,0,11,22,0% +11/24/2018 7:00,159.0537906,320.8274015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776012333,5.599494487,-0.125713066,0.125713066,0.55165189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837439359,146.8707019,0.837439359,33.12929813,0,0.990294184,0,0,0,11,23,0% +11/25/2018 8:00,162.8801885,3.251748251,0,0,0,0,0,0,0,0,0,0,0,0,0,2.842795576,0.056753713,0.121597129,-0.121597129,0.509359356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937801976,159.6856438,0.937801976,20.31435619,0,0.99668384,0,0,0,11,0,0% +11/25/2018 9:00,157.9993166,43.53682005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.757608291,0.759860856,0.361705149,-0.361705149,0.468298466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985965404,170.3894812,0.985965404,9.610518758,0,0.999288282,0,0,0,11,1,0% +11/25/2018 10:00,148.2479651,66.28036872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5874151,1.156810664,0.617564217,-0.617564217,0.424543989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978659089,168.1417802,0.978659089,11.8582198,0,0.998909686,0,0,0,11,2,0% +11/25/2018 11:00,136.9197758,80.0244339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389700899,1.396689854,0.920860105,-0.920860105,0.372677337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916390521,156.4039776,0.916390521,23.5960224,0,0.995438109,0,0,0,11,3,0% +11/25/2018 12:00,125.1382656,90.15271002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184074755,1.57346162,1.333851066,-1.333851066,0.302051723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803410402,143.4570171,0.803410402,36.54298293,0,0.987765307,0,0,0,11,4,0% +11/25/2018 13:00,113.3501722,98.87249197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978333713,1.725650524,2.02845317,-2.02845317,0.183267768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647422999,130.3475876,0.647422999,49.65241236,0,0.972770739,0,0,0,11,5,0% +11/25/2018 14:00,101.8298574,107.2635003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777266289,1.872101247,3.799671188,-3.799671188,0,#DIV/0!,0,0,0.106846484,1,0.257345013,0,0.930822448,0.969584411,0.724496596,1,0,0,0.017396645,0.312029739,0.951850745,0.676347341,0.961238037,0.922476074,0,0,0,0,0,0,-0.459061333,117.3265536,0.459061333,62.67344637,0,0.941082092,0,0,0,11,6,0% +11/25/2018 15:00,90.83432308,116.0191109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585358012,2.024915481,47.68468221,-47.68468221,0,#DIV/0!,0,0,0.884050002,1,0.020968022,0,0.959336312,0.998098275,0.724496596,1,0,0,0.106410799,0.312029739,0.742893665,0.467390261,0.961238037,0.922476074,0,0,0,0,0,0,-0.251162924,104.5463387,0.251162924,75.45366132,0,0.850926031,0,0,0,11,7,0% +11/25/2018 16:00,80.58090001,125.7121003,98.35451998,396.5534379,33.45663268,33.18922968,0,33.18922968,32.44779176,0.741437917,39.24878163,14.39274863,24.856033,1.008840917,23.84719208,1.406402019,2.19409006,-3.395905027,3.395905027,0.889112348,0.340163652,0.687188607,22.10234781,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.19005165,0.73090181,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.497865807,21.24561742,31.68791746,21.97651923,0,14.39274863,-0.036294601,92.07998426,0.036294601,87.92001574,0,0,31.68791746,21.97651923,46.07110976,11,8,45% +11/25/2018 17:00,71.72983286,136.8727332,258.1434553,644.4103002,56.12207316,164.0096992,107.6339192,56.37577999,54.42978559,1.945994406,64.282157,0,64.282157,1.692287574,62.58986942,1.251921755,2.38887985,-1.189718913,1.189718913,0.733607606,0.217406531,1.540299433,49.5413245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.31998024,1.226056587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115941696,47.6210055,53.43592194,48.84706209,107.6339192,0,0.167027,80.38499269,-0.167027,99.61500731,0.750647201,0,134.2310221,48.84706209,166.2004473,11,9,24% +11/25/2018 18:00,64.6777503,149.915724,387.5883376,746.9582381,68.10764077,328.7547332,259.7789845,68.97574872,66.05394411,2.921804607,96.02897645,0,96.02897645,2.05369666,93.97527979,1.128839696,2.616522984,-0.370047592,0.370047592,0.593435555,0.175721595,1.942642749,62.48206859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.49356356,1.487896239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407438058,60.06014095,64.90100162,61.54803719,259.7789845,0,0.347782475,69.6482588,-0.347782475,110.3517412,0.906231974,0,300.3210234,61.54803719,340.6029828,11,10,13% +11/25/2018 19:00,60.12545691,164.8775957,468.619371,791.3995326,74.42126767,466.0913846,390.381542,75.70984263,72.17719187,3.532650764,115.8662678,0,115.8662678,2.244075806,113.622192,1.049387187,2.877656909,0.148019186,-0.148019186,0.504840918,0.158809627,2.061220284,66.29592972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.37946221,1.625825282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493347079,63.72616933,70.87280929,65.35199462,390.381542,0,0.493279975,60.44360621,-0.493279975,119.5563938,0.948637686,0,441.2034517,65.35199462,483.9750252,11,11,10% +11/25/2018 20:00,58.68109376,181.077435,493.7169526,803.1155109,76.25667913,554.3530208,476.6739149,77.67910583,73.9572589,3.721846936,122.0068115,0,122.0068115,2.299420233,119.7073912,1.024178295,3.160397442,0.591046935,-0.591046935,0.429078711,0.154454245,1.925162276,61.91983651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.09053035,1.665922131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.394773516,59.51970209,72.48530387,61.18562422,476.6739149,0,0.593530953,53.59202219,-0.593530953,126.4079778,0.965758395,0,532.837139,61.18562422,572.8819063,11,12,8% +11/25/2018 21:00,60.5732785,197.1769794,460.773032,787.5595473,73.83713884,580.4546005,505.3704221,75.08417842,71.61067667,3.473501747,113.9462184,0,113.9462184,2.226462166,111.7197563,1.057203149,3.441387499,1.071254029,-1.071254029,0.346958461,0.160246225,1.568653891,50.45330136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.83490626,1.61306426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.136484404,48.49763235,69.97139066,50.11069661,505.3704221,0,0.641691697,50.08191897,-0.641691697,129.918081,0.972080962,0,561.2323565,50.11069661,594.0288052,11,13,6% +11/25/2018 22:00,65.50637105,211.8964063,372.5707728,737.38182,66.85812777,535.5219599,467.8712555,67.6507044,64.84210854,2.80859586,92.35011657,0,92.35011657,2.016019233,90.33409733,1.143301856,3.698289963,1.72719531,-1.72719531,0.234785896,0.179450812,1.045090283,33.61369597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.32870112,1.460599071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.757164352,32.31076313,63.08586547,33.7713622,467.8712555,0,0.634503378,50.61683935,-0.634503378,129.3831607,0.971198213,0,517.4815928,33.7713622,539.5842739,11,14,4% +11/25/2018 23:00,72.84414021,224.6638339,237.5279117,622.6134099,53.87437428,410.5184041,356.4779553,54.04044885,52.24986312,1.790585731,59.21590336,0,59.21590336,1.62451116,57.5913922,1.271370087,3.921123611,2.927729433,-2.927729433,0.02948247,0.226812815,0.446945029,14.3752885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.22455585,1.176952805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.323810152,13.81807409,50.548366,14.9950269,356.4779553,0,0.57255104,55.07169021,-0.57255104,124.9283098,0.962671541,0,393.7195485,14.9950269,403.5334937,11,15,2% +11/25/2018 0:00,81.88675595,235.5883731,76.79691423,340.2401351,28.77879866,185.1912884,156.7013491,28.48993927,27.9110117,0.578927579,19.48808794,0,19.48808794,0.867786962,18.62030098,1.429193505,4.111792789,6.794006843,-6.794006843,0,0.374738998,0.21694674,6.977752924,0.387138454,1,0.146139233,0,0.94581772,0.984579683,0.724496596,1,27.06177552,0.6287087,0.05595711,0.312029739,0.853602704,0.5780993,0.961238037,0.922476074,0.148555856,6.707281522,27.21033138,7.335990222,96.03623114,0,0.460561036,62.57668394,-0.460561036,117.4233161,0.941436756,0,117.6223693,7.335990222,122.4236282,11,16,4% +11/25/2018 1:00,92.29076805,245.1106102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610777772,4.277987179,-24.9073075,24.9073075,0,#DIV/0!,0,0,1,0.736116713,0,0.040127308,0.961238037,1,0.617012075,0.89251548,0,0,0.115824807,0.19011735,0.724496596,0.448993192,0.978974947,0.940212984,0,0,0,0,0,0,0.302942974,72.365549,-0.302942974,107.634451,0.884952436,0,0,0,0,11,17,0% +11/25/2018 2:00,103.3759529,253.7656371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804250746,4.429045896,-4.19630978,4.19630978,0.752235074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114635682,83.41738782,-0.114635682,96.58261218,0.613835629,0,0,0,0,11,18,0% +11/25/2018 3:00,114.9506722,262.132272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006267708,4.575071223,-2.101330725,2.101330725,0.889502407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093224131,95.34911636,0.093224131,84.65088364,0,0.513658179,0,0,0,11,19,0% +11/25/2018 4:00,126.7622201,270.93019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212418108,4.728623859,-1.250243317,1.250243317,0.743957889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306480092,107.847232,0.306480092,72.15276804,0,0.886857266,0,0,0,11,20,0% +11/25/2018 5:00,138.5286717,281.3227558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417781429,4.910008349,-0.755016956,0.755016956,0.659269193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510610472,120.7045016,0.510610472,59.29549844,0,0.952077997,0,0,0,11,21,0% +11/25/2018 6:00,149.7631546,295.7737949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613860145,5.162226562,-0.406551276,0.406551276,0.599678052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691717209,133.766195,0.691717209,46.23380496,0,0.977716125,0,0,0,11,22,0% +11/25/2018 7:00,159.1776861,320.3685152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778174717,5.59148541,-0.12777247,0.12777247,0.552004069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837472222,146.8741473,0.837472222,33.1258527,0,0.990296527,0,0,0,11,23,0% +11/26/2018 8:00,163.0753391,3.037345074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.846201597,0.053011672,0.119079462,-0.119079462,0.509789902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937956602,159.7111781,0.937956602,20.28882191,0,0.99669263,0,0,0,11,0,0% +11/26/2018 9:00,158.197026,43.67988439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76105897,0.7623578,0.35856072,-0.35856072,0.468836195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98633565,170.5173899,0.98633565,9.482610108,0,0.999307317,0,0,0,11,1,0% +11/26/2018 10:00,148.4248922,66.47601758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590503061,1.16022538,0.613443262,-0.613443262,0.425248713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97932389,168.3285936,0.97932389,11.6714064,0,0.998944368,0,0,0,11,2,0% +11/26/2018 11:00,137.0857373,80.19930531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392597474,1.399741936,0.915029655,-0.915029655,0.373674403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917408444,156.5501072,0.917408444,23.44989279,0,0.995498649,0,0,0,11,3,0% +11/26/2018 12:00,125.3013814,90.30299157,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186921663,1.576084527,1.324534744,-1.324534744,0.303644908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.804815602,143.5924508,0.804815602,36.40754921,0,0.987873968,0,0,0,11,4,0% +11/26/2018 13:00,113.5155214,99.00261368,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981219601,1.727921577,2.009947568,-2.009947568,0.186432412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649222845,130.4830333,0.649222845,49.5169667,0,0.972984842,0,0,0,11,5,0% +11/26/2018 14:00,102.0008044,107.376785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780249876,1.874078438,3.738326354,-3.738326354,0,#DIV/0!,0,0,0.098398748,1,0.261379664,0,0.930227993,0.968989956,0.724496596,1,0,0,0.016082209,0.312029739,0.955406078,0.679902674,0.961238037,0.922476074,0,0,0,0,0,0,-0.46123588,117.4668854,0.46123588,62.53311463,0,0.941595597,0,0,0,11,6,0% +11/26/2018 15:00,91.01317312,116.1162668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588479534,2.026611172,39.19679156,-39.19679156,0,#DIV/0!,0,0,0.860586227,1,0.025506759,0,0.958910724,0.997672687,0.724496596,1,0,0,0.104414424,0.312029739,0.746886746,0.471383342,0.961238037,0.922476074,0,0,0,0,0,0,-0.253666261,104.6945692,0.253666261,75.30543076,0,0.852890618,0,0,0,11,7,0% +11/26/2018 16:00,80.76715633,125.7904815,95.29037684,389.6045758,32.77948456,32.50940127,0,32.50940127,31.79106216,0.718339111,39.29844468,15.20576718,24.0926775,0.988422403,23.1042551,1.409652805,2.195458069,-3.458692495,3.458692495,0.878375059,0.343995749,0.661025363,21.26084795,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.55877818,0.716108666,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478910626,20.43673574,31.03768881,21.15284441,0,15.20576718,-0.039028718,92.23674893,0.039028718,87.76325107,0,0,31.03768881,21.15284441,44.88180242,11,8,45% +11/26/2018 17:00,71.92610998,136.9254277,254.6144063,641.3152704,55.65067729,161.131831,105.239836,55.89199498,53.97260404,1.919390944,63.41228387,0,63.41228387,1.678073249,61.73421062,1.255347437,2.389799542,-1.200960891,1.200960891,0.735530098,0.218568455,1.522719775,48.97590229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.88051995,1.215758357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.103205294,47.07750017,52.98372524,48.29325853,105.239836,0,0.1641,80.55504435,-0.1641,99.44495565,0.745307739,0,131.4197895,48.29325853,163.0267613,11,9,24% +11/26/2018 18:00,64.87983918,149.9313636,384.0466378,745.1865863,67.70148771,325.4785284,256.9233845,68.55514385,65.66003807,2.895105778,95.15800332,0,95.15800332,2.041449646,93.11655367,1.132366812,2.616795946,-0.372875748,0.372875748,0.593919198,0.176284547,1.926707279,61.96952911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.11492609,1.47902332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395892865,59.5674685,64.51081896,61.04649182,256.9233845,0,0.344777253,69.83180091,-0.344777253,110.1681991,0.904978832,0,297.0210434,61.04649182,336.9747513,11,10,13% +11/26/2018 19:00,60.32575555,164.8436153,465.2324736,790.1641392,74.04737358,462.7419169,387.4202259,75.32169096,71.81457206,3.507118901,115.033801,0,115.033801,2.232801519,112.8009995,1.052883058,2.877063838,0.148187474,-0.148187474,0.504812139,0.159162092,2.046850246,65.83373993,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.03089826,1.6176571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482936036,63.28189492,70.5138343,64.89955202,387.4202259,0,0.490303478,60.63946972,-0.490303478,119.3605303,0.948022343,0,437.7968646,64.89955202,480.2723234,11,11,10% +11/26/2018 20:00,58.86855306,180.9885393,490.5982701,802.1065562,75.90660143,551.1096034,473.7935291,77.31607432,73.61773733,3.69833699,121.2400946,0,121.2400946,2.288864099,118.9512305,1.027450077,3.158845918,0.59302761,-0.59302761,0.428739995,0.154722522,1.912509113,61.51286729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.76416931,1.658274248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385606342,59.12850779,72.14977565,60.78678204,473.7935291,0,0.590686518,53.79425922,-0.590686518,126.2057408,0.965352732,0,529.5276534,60.78678204,569.3113865,11,12,8% +11/26/2018 21:00,60.73745145,197.0417854,458.0076394,786.5990946,73.50831245,577.4389652,502.6945445,74.74442066,71.29176561,3.452655049,113.2658016,0,113.2658016,2.216546837,111.0492548,1.060068507,3.439027919,1.0751054,-1.0751054,0.346299838,0.160495822,1.557893141,50.10719864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52835682,1.605880638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128688278,48.16494526,69.6570451,49.77082589,502.6945445,0,0.639073383,50.27724134,-0.639073383,129.7227587,0.971761724,0,558.1563621,49.77082589,590.7303723,11,13,6% +11/26/2018 22:00,65.64193995,211.73212,370.2205251,736.288194,66.54751008,532.8057508,465.474015,67.33173581,64.54085712,2.7908787,91.77090553,0,91.77090553,2.006652963,89.76425257,1.145667979,3.695422626,1.734168647,-1.734168647,0.233593385,0.179751001,1.036408829,33.33447057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.03912679,1.453813241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.750874668,32.04236105,62.79000146,33.49617429,465.474015,0,0.632189975,50.78811963,-0.632189975,129.2118804,0.97090985,0,514.7233075,33.49617429,536.6458836,11,14,4% +11/26/2018 23:00,72.95145756,224.4852469,235.6446593,621.0269453,53.57085827,408.0907776,354.3588894,53.73188822,51.95549924,1.776388978,58.75013487,0,58.75013487,1.615359032,57.13477584,1.273243129,3.91800668,2.94294083,-2.94294083,0.026881167,0.22733746,0.440735483,14.17556816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.94160209,1.17032212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319311357,13.62609531,50.26091345,14.79641743,354.3588894,0,0.570601472,55.20782109,-0.570601472,124.7921789,0.962373167,0,391.2864001,14.79641743,400.9703593,11,15,2% +11/26/2018 0:00,81.9690562,235.4029595,75.54162561,337.1529946,28.43869014,182.9095647,154.7589413,28.15062338,27.5811587,0.569464683,19.17347315,0,19.17347315,0.857531435,18.31594172,1.430629915,4.108556712,6.858821401,-6.858821401,0,0.376463836,0.214382859,6.895289676,0.391273485,1,0.144777552,0,0.945984311,0.984746274,0.724496596,1,26.74213284,0.621278606,0.056460907,0.312029739,0.852396876,0.576893472,0.961238037,0.922476074,0.146785939,6.628014711,26.88891878,7.249293317,94.20587094,0,0.459016956,62.67630836,-0.459016956,117.3236916,0.941071562,0,115.5433849,7.249293317,120.2879024,11,16,4% +11/26/2018 1:00,92.35459367,244.9194075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611891739,4.274650063,-24.22436648,24.22436648,0,#DIV/0!,0,0,1,0.72772552,0,0.041257324,0.961238037,1,0.614168556,0.889671961,0,0,0.115824807,0.186900944,0.724496596,0.448993192,0.979399492,0.940637529,0,0,0,0,0,0,0.301782568,72.43530022,-0.301782568,107.5646998,0.884317799,0,0,0,0,11,17,0% +11/26/2018 2:00,103.4253353,253.5651181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805112631,4.425546179,-4.181235303,4.181235303,0.754812962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113854086,83.46246512,-0.113854086,96.53753488,0.610841407,0,0,0,0,11,18,0% +11/26/2018 3:00,114.9907873,261.9150047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006967847,4.571279192,-2.099184582,2.099184582,0.889135395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0936745,95.37503402,0.0936745,84.62496598,0,0.516236808,0,0,0,11,19,0% +11/26/2018 4:00,126.7991152,270.6837635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213062049,4.724322905,-1.250607953,1.250607953,0.744020245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306669497,107.8586331,0.306669497,72.14136692,0,0.886958027,0,0,0,11,20,0% +11/26/2018 5:00,138.5710531,281.0265931,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418521125,4.904839335,-0.756253577,0.756253577,0.659480668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510627036,120.7056053,0.510627036,59.29439469,0,0.952081174,0,0,0,11,21,0% +11/26/2018 6:00,149.8267102,295.3960916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614969401,5.155634395,-0.408252981,0.408252981,0.599969061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691660859,133.7617245,0.691660859,46.23827554,0,0.977710236,0,0,0,11,22,0% +11/26/2018 7:00,159.2934232,319.9078903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780194712,5.583445989,-0.129854373,0.129854373,0.552360095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837447823,146.8715893,0.837447823,33.12841073,0,0.990294788,0,0,0,11,23,0% +11/27/2018 8:00,163.2639019,2.807647142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.849492637,0.049002687,0.116563417,-0.116563417,0.510220171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938066743,159.7293851,0.938066743,20.27061487,0,0.996698889,0,0,0,11,0,0% +11/27/2018 9:00,158.3909628,43.80909541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764443806,0.764612957,0.355441196,-0.355441196,0.469369665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986673583,170.6356462,0.986673583,9.364353799,0,0.99932468,0,0,0,11,1,0% +11/27/2018 10:00,148.5995654,66.66065999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593551683,1.163447998,0.609376572,-0.609376572,0.425944158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979967105,168.5121918,0.979967105,11.48780824,0,0.998977879,0,0,0,11,2,0% +11/27/2018 11:00,137.2501395,80.36507085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395466833,1.40263509,0.909301233,-0.909301233,0.374654021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918413325,156.6952122,0.918413325,23.30478782,0,0.995558281,0,0,0,11,3,0% +11/27/2018 12:00,125.4631683,90.44534556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189745378,1.578569073,1.315421542,-1.315421542,0.305203357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80621353,143.7276157,0.80621353,36.27238427,0,0.987981691,0,0,0,11,4,0% +11/27/2018 13:00,113.6794794,99.12549646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984081208,1.730066286,1.991953559,-1.991953559,0.189509569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651018017,130.6184001,0.651018017,49.38159995,0,0.97319721,0,0,0,11,5,0% +11/27/2018 14:00,102.1700754,107.4831976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783204213,1.875935688,3.679532989,-3.679532989,0,#DIV/0!,0,0,0.09015103,1,0.265364204,0,0.929637548,0.968399511,0.724496596,1,0,0,0.014789183,0.312029739,0.95891671,0.683413305,0.961238037,0.922476074,0,0,0,0,0,0,-0.463405,117.6070451,0.463405,62.39295489,0,0.94210302,0,0,0,11,6,0% +11/27/2018 15:00,91.18986165,116.2067188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59156333,2.028189856,33.32011962,-33.32011962,0,#DIV/0!,0,0,0.837870851,1,0.030002891,0,0.958484259,0.997246222,0.724496596,1,0,0,0.102450822,0.312029739,0.750845551,0.475342146,0.961238037,0.922476074,0,0,0,0,0,0,-0.256160117,104.8423384,0.256160117,75.15766158,0,0.854809583,0,0,0,11,7,0% +11/27/2018 16:00,80.95053114,125.8622541,92.29124274,382.6472749,32.10573531,31.8333593,0,31.8333593,31.13762893,0.695730372,39.31907356,15.97388687,23.34518669,0.968106377,22.37708031,1.4128533,2.196710737,-3.52348684,3.52348684,0.867294573,0.347874125,0.635521418,20.44055341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.9306733,0.701389775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.460433104,19.64823743,30.39110641,20.3496272,0,15.97388687,-0.041745722,92.39254896,0.041745722,87.60745104,0,0,30.39110641,20.3496272,43.70953042,11,8,44% +11/27/2018 17:00,72.11865903,136.9717198,251.1537601,638.2397305,55.1843546,158.2973706,102.8837248,55.41364583,53.5203427,1.893303132,62.5591488,0,62.5591488,1.6640119,60.8951369,1.258708052,2.390607493,-1.212483289,1.212483289,0.737500544,0.219723386,1.505512644,48.42246179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.44578915,1.205570957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.090738786,46.54551211,52.53652794,47.75108307,102.8837248,0,0.161199186,80.72349191,-0.161199186,99.27650809,0.739824736,0,128.6524524,47.75108307,159.9045813,11,9,24% +11/27/2018 18:00,65.077186,149.9411918,380.5861281,743.4436873,67.30122849,322.2571011,254.116234,68.14086713,65.27184814,2.869018994,94.30689337,0,94.30689337,2.029380354,92.27751302,1.135811164,2.616967481,-0.375878392,0.375878392,0.59443268,0.176835737,1.911201238,61.47080153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.74178317,1.470279158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384658791,59.08807258,64.12644196,60.55835174,254.116234,0,0.34180966,70.01283326,-0.34180966,109.9871667,0.903719757,0,293.7763033,60.55835174,333.4105333,11,10,13% +11/27/2018 19:00,60.5203138,164.8050676,461.9400244,788.9618661,73.6800944,459.4626731,384.5220063,74.94066673,71.4583677,3.482299028,114.2244338,0,114.2244338,2.221726697,112.0027071,1.05627874,2.876391054,0.148178422,-0.148178422,0.504813687,0.15950143,2.032954375,65.38680092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68850109,1.609633429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472868524,62.85228015,70.16136961,64.46191358,384.5220063,0,0.487377176,60.83166374,-0.487377176,119.1683363,0.94741005,0,434.461383,64.46191358,476.6504162,11,11,10% +11/27/2018 20:00,59.04952058,180.8969325,487.5861393,801.1365782,75.56397212,547.9533263,470.9922565,76.96106983,73.28543956,3.675630275,120.4994371,0,120.4994371,2.278532561,118.2209045,1.030608556,3.157247079,0.594792346,-0.594792346,0.428438208,0.154975636,1.900360986,61.12214177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44475205,1.650789084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.376805066,58.75292756,71.82155712,60.40371665,470.9922565,0,0.58790507,53.99151384,-0.58790507,126.0084862,0.964952256,0,526.3065975,60.40371665,565.839622,11,12,8% +11/27/2018 21:00,60.89477391,196.905858,455.3586581,785.6883588,73.18799434,574.5281479,500.1143557,74.41379219,70.98110628,3.432685909,112.6138667,0,112.6138667,2.206888064,110.4069786,1.062814302,3.436655538,1.078657584,-1.078657584,0.345692379,0.160726041,1.547649278,49.77772078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22973925,1.59888289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.121266633,47.8482386,69.35100589,49.44712149,500.1143557,0,0.636530184,50.46643202,-0.636530184,129.533568,0.97144913,0,555.1866614,49.44712149,587.5488135,11,13,6% +11/27/2018 22:00,65.77064135,211.5686984,367.9931381,735.2661235,66.24701267,530.2134451,463.1899366,67.02350852,64.24942081,2.774087716,91.22178866,0,91.22178866,1.997591857,89.2241968,1.147914243,3.692570382,1.740655686,-1.740655686,0.232484036,0.180022413,1.028227019,33.07131542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75898713,1.447248501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744946975,31.78940631,62.5039341,33.23665481,463.1899366,0,0.629962298,50.95265901,-0.629962298,129.047341,0.970630171,0,512.0900613,33.23665481,533.8427872,11,14,4% +11/27/2018 23:00,73.05208056,224.3086252,233.8850765,619.5637378,53.28080662,405.8116712,352.374353,53.43731822,51.67419372,1.7631245,58.31475753,0,58.31475753,1.606612905,56.70814463,1.274999331,3.91492405,2.957114639,-2.957114639,0.024457303,0.227807637,0.434951142,13.98952387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.67120052,1.16398558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.315120622,13.44726246,49.98632114,14.61124804,352.374353,0,0.568745928,55.33717829,-0.568745928,124.6628217,0.962087283,0,389.0012049,14.61124804,398.5639745,11,15,2% +11/27/2018 0:00,82.0449253,235.2202518,74.39313572,334.3361712,28.12214817,180.8177696,152.9828011,27.83496852,27.27416164,0.560806881,18.88546358,0,18.88546358,0.847986527,18.03747705,1.431954081,4.105367862,6.919309713,-6.919309713,0,0.378020739,0.211996632,6.818540411,0.39508249,1,0.143529298,0,0.946136656,0.984898619,0.724496596,1,26.4446029,0.614363352,0.056923497,0.312029739,0.851291453,0.575788049,0.961238037,0.922476074,0.145140233,6.554240399,26.58974313,7.168603751,92.5419751,0,0.457571792,62.76946964,-0.457571792,117.2305304,0.94072753,0,113.6465268,7.168603751,118.3382346,11,16,4% +11/27/2018 1:00,92.41212063,244.7314648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612895774,4.271369844,-23.63895456,23.63895456,0,#DIV/0!,0,0,1,0.720095963,0,0.042277848,0.961238037,1,0.61160923,0.887112634,0,0,0.115824807,0.184006402,0.724496596,0.448993192,0.979779594,0.941017631,0,0,0,0,0,0,0.300724581,72.4988717,-0.300724581,107.5011283,0.883734908,0,0,0,0,11,17,0% +11/27/2018 2:00,103.4685474,253.3683587,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805866825,4.422112079,-4.168182659,4.168182659,0.757045095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113174005,83.50168439,-0.113174005,96.49831561,0.608202432,0,0,0,0,11,18,0% +11/27/2018 3:00,115.0247579,261.7020323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007560746,4.567562123,-2.097567819,2.097567819,0.888858913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094027548,95.39535188,0.094027548,84.60464812,0,0.518240946,0,0,0,11,19,0% +11/27/2018 4:00,126.8297402,270.4422483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213596555,4.720107669,-1.251192267,1.251192267,0.744120169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306768776,107.8646094,0.306768776,72.13539059,0,0.887010792,0,0,0,11,20,0% +11/27/2018 5:00,138.6068026,280.735936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41914507,4.899766412,-0.757597945,0.757597945,0.659710568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510563171,120.7013496,0.510563171,59.29865041,0,0.952068925,0,0,0,11,21,0% +11/27/2018 6:00,149.8829144,295.0235597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615950348,5.149132488,-0.41000853,0.41000853,0.600269278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691535614,133.7517893,0.691535614,46.24821075,0,0.977697144,0,0,0,11,22,0% +11/27/2018 7:00,159.4009669,319.4462453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782071703,5.575388763,-0.131957794,0.131957794,0.552719801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837367101,146.8631275,0.837367101,33.13687247,0,0.990289032,0,0,0,11,23,0% +11/28/2018 8:00,163.4457474,2.562575832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.852666441,0.044725386,0.114050116,-0.114050116,0.510649971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938133307,159.7403962,0.938133307,20.2596038,0,0.99670267,0,0,0,11,0,0% +11/28/2018 9:00,158.5810636,43.92401383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767761692,0.766618662,0.352347886,-0.352347886,0.469898652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986979979,170.7441606,0.986979979,9.255839411,0,0.999340411,0,0,0,11,1,0% +11/28/2018 10:00,148.7719425,66.83403657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596560231,1.166473991,0.605365679,-0.605365679,0.426630061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980589289,168.6925841,0.980589289,11.30741589,0,0.999010253,0,0,0,11,2,0% +11/28/2018 11:00,137.4129337,80.52157332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.398308127,1.405366573,0.903676556,-0.903676556,0.375615897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919405421,156.8393127,0.919405421,23.16068727,0,0.995617027,0,0,0,11,3,0% +11/28/2018 12:00,125.6235655,90.57966659,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192544837,1.580913417,1.306512818,-1.306512818,0.306726839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807604091,143.8625008,0.807604091,36.13749917,0,0.988088476,0,0,0,11,4,0% +11/28/2018 13:00,113.8419727,99.24106623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98691725,1.732083359,1.974467295,-1.974467295,0.192499896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652808039,130.7536521,0.652808039,49.2463479,0,0.973407806,0,0,0,11,5,0% +11/28/2018 14:00,102.3375855,107.5826876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786127815,1.877672117,3.623193048,-3.623193048,0,#DIV/0!,0,0,0.08210465,1,0.269295336,0,0.929051739,0.967813702,0.724496596,1,0,0,0.013518374,0.312029739,0.962379778,0.686876373,0.961238037,0.922476074,0,0,0,0,0,0,-0.46556783,117.7469772,0.46556783,62.2530228,0,0.942604263,0,0,0,11,6,0% +11/28/2018 15:00,91.3642937,116.2904381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594607744,2.029651034,29.01433599,-29.01433599,0,#DIV/0!,0,0,0.815891847,1,0.034452083,0,0.958057481,0.996819444,0.724496596,1,0,0,0.10052126,0.312029739,0.754765925,0.479262521,0.961238037,0.922476074,0,0,0,0,0,0,-0.258643266,104.9895736,0.258643266,75.01042643,0,0.856683542,0,0,0,11,7,0% +11/28/2018 16:00,81.13092329,125.9274128,89.35881454,375.6899826,31.43600417,31.16171715,0,31.16171715,30.48809266,0.673624489,39.31118884,16.69719818,22.61399066,0.947911512,21.66607915,1.416001737,2.197847972,-3.590311895,3.590311895,0.855866816,0.351795224,0.610689223,19.64186464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.30631434,0.686758664,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442442263,18.88050741,29.7487566,19.56726607,0,16.69719818,-0.044444087,92.54729767,0.044444087,87.45270233,0,0,29.7487566,19.56726607,42.5551409,11,8,43% +11/28/2018 17:00,72.30737641,137.01163,247.7635902,635.1877094,54.72343287,155.5080046,100.5669386,54.94106606,53.07331946,1.867746599,61.72326436,0,61.72326436,1.650113409,60.07315095,1.262001792,2.391304057,-1.224281098,1.224281098,0.739518088,0.220869551,1.488688567,47.88134166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01609341,1.195501548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078549799,46.02536686,52.09464321,47.22086841,100.5669386,0,0.15832633,80.89023626,-0.15832633,99.10976374,0.734196557,0,125.9305432,47.22086841,156.8356572,11,9,25% +11/28/2018 18:00,65.26969111,149.9452529,377.2090025,741.7322105,66.9071073,319.0925908,251.3594189,67.73317194,64.88961115,2.843560795,93.47618599,0,93.47618599,2.017496146,91.45868984,1.139171012,2.617038361,-0.379055614,0.379055614,0.594976017,0.1773741,1.896134058,60.98618922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37436243,1.46166909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37374267,58.6222448,63.7481051,60.08391389,251.3594189,0,0.338881628,70.19124856,-0.338881628,109.8087514,0.902455855,0,290.5888844,60.08391389,329.9126044,11,10,14% +11/28/2018 19:00,60.70904214,164.762011,458.7441634,787.7948062,73.31963539,456.2559806,381.6889954,74.56698514,71.10877786,3.458207278,113.4386911,0,113.4386911,2.210857528,111.2278336,1.059572671,2.875639574,0.147989483,-0.147989483,0.504845998,0.159826852,2.019540842,64.95537559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.35246203,1.601758753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463150465,62.43757771,69.8156125,64.03933647,381.6889954,0,0.484503062,61.02008052,-0.484503062,118.9799195,0.946801478,0,431.1993174,64.03933647,473.1117823,11,11,10% +11/28/2018 20:00,59.22391932,180.8026746,484.6825161,800.2074694,75.22897375,544.8865394,468.2722553,76.61428417,72.96054263,3.653741537,119.7853186,0,119.7853186,2.268431124,117.5168875,1.033652388,3.155601969,0.596336564,-0.596336564,0.428174131,0.155212889,1.888724508,60.74787262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13244876,1.643470627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368374476,58.39316582,71.50082324,60.03663644,468.2722553,0,0.585188558,54.1836881,-0.585188558,125.8163119,0.964557455,0,523.1763178,60.03663644,562.4690956,11,12,8% +11/28/2018 21:00,61.0451808,196.7692555,452.8277511,784.8293107,72.87635397,571.724406,497.6319362,74.09246987,70.67886301,3.413606863,111.9908219,0,111.9908219,2.197490957,109.7933309,1.065439397,3.434271375,1.08190301,-1.08190301,0.345137378,0.160936148,1.537926996,49.46501877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93921153,1.592074718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.114222873,47.54765753,69.0534344,49.13973225,497.6319362,0,0.634063903,50.64940955,-0.634063903,129.3505905,0.971143595,0,552.3255018,49.13973225,584.4864738,11,13,6% +11/28/2018 22:00,65.89242209,211.4062054,365.8898821,734.3180406,65.95680627,527.7471546,461.0209569,66.72619769,63.96796521,2.758232484,90.70307911,0,90.70307911,1.988841064,88.71423804,1.150039718,3.689734343,1.746642139,-1.746642139,0.231460292,0.180264089,1.020547129,32.82430378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.4884413,1.44090858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.739382921,31.55196933,62.22782422,32.99287791,461.0209569,0,0.627821913,51.11039059,-0.627821913,128.8896094,0.970359581,0,509.583927,32.99287791,531.1771057,11,14,4% +11/28/2018 23:00,73.14596977,224.1340439,232.2498968,618.2275953,53.00443392,403.6831325,350.52618,53.1569525,51.40615467,1.750797824,57.90995561,0,57.90995561,1.598279248,56.31167636,1.276638007,3.911877032,2.970212564,-2.970212564,0.022217426,0.228221561,0.429590621,13.81711107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.4135512,1.157947875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.311236942,13.28153272,49.72478814,14.43948059,350.52618,0,0.566985658,55.45970712,-0.566985658,124.5402929,0.961814348,0,386.8658974,14.43948059,396.3162486,11,15,2% +11/28/2018 0:00,82.11434159,235.0403385,73.35087777,331.7964476,27.82953018,178.9176115,151.3742945,27.54331706,26.99036716,0.5529499,18.62393256,0,18.62393256,0.839163015,17.78476954,1.433165624,4.102227782,6.975187915,-6.975187915,0,0.379402824,0.209790754,6.74759179,0.398559078,1,0.142395026,0,0.946274782,0.985036745,0.724496596,1,26.16953107,0.607970748,0.057344477,0.312029739,0.850286939,0.574783534,0.961238037,0.922476074,0.143620215,6.486041886,26.31315128,7.094012634,91.0426952,0,0.456226387,62.85613008,-0.456226387,117.1438699,0.940405287,0,111.9301832,7.094012634,116.5730726,11,16,4% +11/28/2018 1:00,92.46333904,244.5468849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613789704,4.268148316,-23.13986336,23.13986336,0,#DIV/0!,0,0,1,0.713245482,0,0.043188594,0.961238037,1,0.609332159,0.884835563,0,0,0.115824807,0.181431404,0.724496596,0.448993192,0.98011617,0.941354207,0,0,0,0,0,0,0.299769526,72.55623914,-0.299769526,107.4437609,0.883205194,0,0,0,0,11,17,0% +11/28/2018 2:00,103.5055949,253.1754792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806513425,4.418745697,-4.157115859,4.157115859,0.758937629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112595563,83.53503984,-0.112595563,96.46496016,0.605932769,0,0,0,0,11,18,0% +11/28/2018 3:00,115.0526046,261.493501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008046763,4.563922566,-2.096476281,2.096476281,0.888672249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094283514,95.41008309,0.094283514,84.58991691,0,0.519684594,0,0,0,11,19,0% +11/28/2018 4:00,126.8541294,270.2058339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214022228,4.71598146,-1.251994827,1.251994827,0.744257415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306778479,107.8651935,0.306778479,72.13480649,0,0.887015947,0,0,0,11,20,0% +11/28/2018 5:00,138.6359651,280.4510589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419654053,4.894794368,-0.759049036,0.759049036,0.65995872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510419667,120.6917876,0.510419667,59.30821241,0,0.952041392,0,0,0,11,21,0% +11/28/2018 6:00,149.9318081,294.656661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616803705,5.142728898,-0.411816918,0.411816918,0.60057853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691342409,133.7364663,0.691342409,46.26353368,0,0.977676938,0,0,0,11,22,0% +11/28/2018 7:00,159.5002915,318.9843333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783805244,5.567326879,-0.134081644,0.134081644,0.553083001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83723104,146.848869,0.83723104,33.15113097,0,0.990279328,0,0,0,11,23,0% +11/29/2018 8:00,163.6207452,2.302114705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.855720728,0.040179481,0.111540783,-0.111540783,0.511079092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938157219,159.7443531,0.938157219,20.25564686,0,0.996704029,0,0,0,11,0,0% +11/29/2018 9:00,158.7672586,44.02421337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771011407,0.768367474,0.349282196,-0.349282196,0.470422916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987255606,170.8428664,0.987255606,9.157133563,0,0.999354554,0,0,0,11,1,0% +11/29/2018 10:00,148.9419746,66.99589465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599527852,1.169298947,0.601412215,-0.601412215,0.427306144,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98119096,168.869773,0.98119096,11.13022703,0,0.99904152,0,0,0,11,2,0% +11/29/2018 11:00,137.5740644,80.6686606,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40112039,1.407933731,0.898157458,-0.898157458,0.376559718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920384931,156.9824212,0.920384931,23.01757878,0,0.995674904,0,0,0,11,3,0% +11/29/2018 12:00,125.7825059,90.70585382,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19531887,1.5831158,1.29781009,-1.29781009,0.308215093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808987115,143.9970875,0.808987115,36.00291249,0,0.988194318,0,0,0,11,4,0% +11/29/2018 13:00,114.0029222,99.34925342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989726349,1.733971582,1.957485359,-1.957485359,0.195403978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654592345,130.8887466,0.654592345,49.11125339,0,0.973616583,0,0,0,11,5,0% +11/29/2018 14:00,102.5032445,107.6752093,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78901911,1.879286924,3.5692154,-3.5692154,0,#DIV/0!,0,0,0.074261015,1,0.273169694,0,0.928471215,0.967233178,0.724496596,1,0,0,0.012270607,0.312029739,0.965792357,0.690288952,0.961238037,0.922476074,0,0,0,0,0,0,-0.467723412,117.8866195,0.467723412,62.11338053,0,0.943099215,0,0,0,11,6,0% +11/29/2018 15:00,91.53637006,116.367401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597611043,2.03099429,25.72714416,-25.72714416,0,#DIV/0!,0,0,0.794637875,1,0.038849895,0,0.957630981,0.996392944,0.724496596,1,0,0,0.098627021,0.312029739,0.758643635,0.483140231,0.961238037,0.922476074,0,0,0,0,0,0,-0.261114387,105.1361962,0.261114387,74.86380382,0,0.858513041,0,0,0,11,7,0% +11/29/2018 16:00,81.30822852,125.9859576,86.49477246,368.7417089,30.77094714,30.49512368,0,30.49512368,29.84308955,0.65203413,39.27543752,17.37592095,21.89951657,0.927857589,20.97165899,1.419096297,2.198869771,-3.659184285,3.659184285,0.844088944,0.355754993,0.586540615,18.86516238,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.68631281,0.672229665,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.424946679,18.13391165,29.11125949,18.80614132,0,17.37592095,-0.047122201,92.70090343,0.047122201,87.29909657,0,0,29.11125949,18.80614132,41.41950286,11,8,42% +11/29/2018 17:00,72.49215637,137.0451838,244.445996,632.1634335,54.26825114,152.7654432,98.29084289,54.47460032,52.63186314,1.842737172,60.90514983,0,60.90514983,1.636388001,59.26876183,1.265226811,2.391889682,-1.236347928,1.236347928,0.741581637,0.222005073,1.472258226,47.35288542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5917488,1.185557536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066646073,45.51739462,51.65839488,46.70295215,98.29084289,0,0.155483278,81.05517414,-0.155483278,98.94482586,0.72842201,0,123.2556082,46.70295215,153.8217564,11,9,25% +11/29/2018 18:00,65.45725384,149.9435967,373.9174652,740.0548984,66.51937164,315.9871669,248.6548519,67.33231495,64.51356715,2.818747796,92.66642299,0,92.66642299,2.005804485,90.66061851,1.142444599,2.617009455,-0.382406961,0.382406961,0.595549131,0.177898541,1.881515143,60.51599467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.01289464,1.453198522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363151316,58.17027591,63.37604596,59.62347443,248.6548519,0,0.335995144,70.36693652,-0.335995144,109.6330635,0.901188325,0,287.4608956,59.62347443,326.4832671,11,10,14% +11/29/2018 19:00,60.89185118,164.7145098,455.6470146,786.665073,72.96620109,453.124176,378.9233154,74.20086057,70.76600091,3.434859662,112.6770942,0,112.6770942,2.200200179,110.476894,1.062763291,2.874810521,0.147618488,-0.147618488,0.504909441,0.16013756,2.006617657,64.53972156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02297179,1.59403754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453787662,62.03803525,69.47675945,63.63207279,378.9233154,0,0.481683156,61.20461057,-0.481683156,118.7953894,0.946197325,0,428.012987,63.63207279,469.658906,11,11,10% +11/29/2018 20:00,59.39167374,180.7058317,481.889312,799.3211095,74.90178507,541.9115701,465.635665,76.27590508,72.64321989,3.632685185,119.098208,0,119.098208,2.258565178,116.8396428,1.036580255,3.15391174,0.597656071,-0.597656071,0.427948482,0.155433589,1.87760602,60.39026384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82742608,1.636322783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36031917,58.04941866,71.18774525,59.68574144,465.635665,0,0.582538931,54.37068359,-0.582538931,125.6293164,0.964168827,0,520.1391381,59.68574144,559.2022621,11,12,8% +11/29/2018 21:00,61.18860977,196.632043,450.4165106,784.0238738,72.57355367,569.029936,495.2493129,73.78062317,70.38519326,3.395429913,111.3970581,0,111.3970581,2.188360411,109.2086977,1.067942705,3.431876565,1.08483464,-1.08483464,0.34463604,0.161125429,1.528730656,49.16923288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.65692499,1.585459668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.107560156,47.26333688,68.76448515,48.84879655,495.2493129,0,0.631676317,50.82609328,-0.631676317,129.1739067,0.970845536,0,549.57507,48.84879655,581.5456303,11,13,6% +11/29/2018 22:00,66.00723307,211.2447111,363.9119357,733.4462714,65.67704983,525.4088837,458.9689174,66.43996634,63.69664445,2.743321889,90.21506742,0,90.21506742,1.980405375,88.23466205,1.152043547,3.686915736,1.752114693,-1.752114693,0.23052443,0.180475119,1.013371104,32.59349816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.22763747,1.434796952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.734183915,31.33011018,61.96182138,32.76490713,458.9689174,0,0.625770333,51.2612498,-0.625770333,128.7387502,0.970098481,0,507.2068711,32.76490713,528.6508475,11,14,4% +11/29/2018 23:00,73.23309088,223.9615837,230.7397541,617.0220762,52.74193272,401.7070354,348.8160528,52.89098258,51.15156885,1.739413731,57.53588865,0,57.53588865,1.590363868,55.94552478,1.278158557,3.908867033,2.982198947,-2.982198947,0.020167634,0.228577572,0.424652358,13.65827955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.16883362,1.152213209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307659187,13.12885782,49.47649281,14.28107103,348.8160528,0,0.565321836,55.57535685,-0.565321836,124.4246431,0.961554805,0,384.8822445,14.28107103,394.2289198,11,15,2% +11/29/2018 0:00,82.17728916,234.8633123,72.41424883,329.5399327,27.56113758,177.2105248,149.934568,27.27595679,26.73006759,0.545889196,18.388743,0,18.388743,0.831069988,17.55767301,1.434264266,4.099138091,7.026189058,-7.026189058,0,0.38060379,0.207767497,6.682516898,0.401697529,1,0.141375187,0,0.946398724,0.985160687,0.724496596,1,25.91720897,0.602107377,0.057723501,0.312029739,0.84938374,0.573880336,0.961238037,0.922476074,0.14222711,6.423489425,26.05943608,7.025596802,89.7062225,0,0.454981485,62.93625703,-0.454981485,117.063743,0.940105418,0,110.3927419,7.025596802,114.9908545,11,16,4% +11/29/2018 1:00,92.50824556,244.3657738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61457347,4.264987333,-22.71809086,22.71809086,0,#DIV/0!,0,0,1,0.707189325,0,0.043989387,0.961238037,1,0.607335414,0.882838818,0,0,0.115824807,0.179173652,0.724496596,0.448993192,0.980410067,0.941648104,0,0,0,0,0,0,0.298917805,72.60738443,-0.298917805,107.3926156,0.882729937,0,0,0,0,11,17,0% +11/29/2018 2:00,103.5364902,252.9866026,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80705265,4.415449179,-4.148002517,4.148002517,0.760496103,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112118765,83.56253246,-0.112118765,96.43746754,0.60404432,0,0,0,0,11,18,0% +11/29/2018 3:00,115.0743553,261.2895586,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008426384,4.560363099,-2.095905875,2.095905875,0.888574704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094442758,95.41924799,0.094442758,84.58075201,0,0.520578781,0,0,0,11,19,0% +11/29/2018 4:00,126.8723252,269.9747106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214339804,4.711947597,-1.253014052,1.253014052,0.744431712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30669927,107.8604253,0.30669927,72.13957472,0,0.886973854,0,0,0,11,20,0% +11/29/2018 5:00,138.6585942,280.1722356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420049004,4.889927985,-0.760605672,0.760605672,0.66022492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510197409,120.6769799,0.510197409,59.32302005,0,0.951998718,0,0,0,11,21,0% +11/29/2018 6:00,149.9734421,294.2958588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617530356,5.13643171,-0.413677005,0.413677005,0.600896624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691082257,133.7158401,0.691082257,46.2841599,0,0.977649713,0,0,0,11,22,0% +11/29/2018 7:00,159.5913824,318.5229407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785395081,5.559274059,-0.136224718,0.136224718,0.553449488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837040672,146.8289287,0.837040672,33.17107135,0,0.990265746,0,0,0,11,23,0% +11/30/2018 8:00,163.7887642,2.026317267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.858653212,0.035365908,0.10903675,-0.10903675,0.511507307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938139427,159.7414088,0.938139427,20.25859116,0,0.996703018,0,0,0,11,0,0% +11/30/2018 9:00,158.9494711,44.1092855,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774191616,0.769852263,0.34624564,-0.34624564,0.470942198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987501223,170.931723,0.987501223,9.068276998,0,0.999367151,0,0,0,11,1,0% +11/30/2018 10:00,149.1096057,67.14599077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602453567,1.171918618,0.59751792,-0.59751792,0.427972107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981772605,169.0437527,0.981772605,10.95624728,0,0.99907171,0,0,0,11,2,0% +11/30/2018 11:00,137.7334694,80.8061874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403902532,1.410334026,0.892745887,-0.892745887,0.377485151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921351994,157.1245414,0.921351994,22.87545858,0,0.995731924,0,0,0,11,3,0% +11/30/2018 12:00,125.9399158,90.82381231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198066191,1.585174564,1.289315037,-1.289315037,0.309667833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810362348,144.1313489,0.810362348,35.86865111,0,0.988299206,0,0,0,11,4,0% +11/30/2018 13:00,114.1622428,99.44999416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992507019,1.735729839,1.941004753,-1.941004753,0.198222328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656370272,131.0236331,0.656370272,48.97636693,0,0.973823485,0,0,0,11,5,0% +11/30/2018 14:00,102.6669571,107.7607224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791876435,1.88077941,3.517515317,-3.517515317,0,#DIV/0!,0,0,0.066621615,1,0.276983837,0,0.927896641,0.966658605,0.724496596,1,0,0,0.01104672,0.312029739,0.96915146,0.693648056,0.961238037,0.922476074,0,0,0,0,0,0,-0.469870685,118.0259027,0.469870685,61.97409727,0,0.943587743,0,0,0,11,6,0% +11/30/2018 15:00,91.70598716,116.4375898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60057142,2.032219315,23.13815188,-23.13815188,0,#DIV/0!,0,0,0.774098256,1,0.043191785,0,0.957205376,0.995967339,0.724496596,1,0,0,0.0967694,0.312029739,0.762474377,0.486970973,0.961238037,0.922476074,0,0,0,0,0,0,-0.263572057,105.2821214,0.263572057,74.71787857,0,0.860298555,0,0,0,11,7,0% +11/30/2018 16:00,81.48233958,126.0378945,83.7007742,361.8120268,30.11125685,29.83426315,0,29.83426315,29.20329136,0.630971791,39.21259857,18.01041132,21.20218725,0.907965493,20.29422176,1.422135108,2.199776241,-3.73011213,3.73011213,0.831959568,0.359748845,0.563086747,18.11080539,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.07131446,0.657817909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.407954432,17.40879502,28.47926889,18.06661292,0,18.01041132,-0.049778366,92.85326943,0.049778366,87.14673057,0,0,28.47926889,18.06661292,40.30350571,11,8,42% +11/30/2018 17:00,72.67289112,137.0724134,241.2031005,629.1713248,53.81915944,150.0714192,96.05681518,54.01460406,52.19631321,1.818290856,60.10533051,0,60.10533051,1.622846229,58.48248428,1.268381227,2.392364927,-1.248675883,1.248675883,0.743689842,0.223127975,1.456232433,46.8374408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.17308164,1.175746568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05503544,45.02192965,51.22811708,46.19767622,96.05681518,0,0.152671953,81.21819794,-0.152671953,98.78180206,0.722500424,0,120.6292068,46.19767622,150.8646619,11,9,25% +11/30/2018 18:00,65.63977277,149.9362793,370.7137241,738.4145606,66.13827169,312.9430266,246.0044712,66.93855542,64.14395877,2.794596642,91.8781473,0,91.8781473,1.994312916,89.88383438,1.145630155,2.616881742,-0.385931373,0.385931373,0.596151841,0.17840794,1.867353834,60.06051829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.65761301,1.444872919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352891496,57.73245469,63.0105045,59.17732761,246.0044712,0,0.333152249,70.53978376,-0.333152249,109.4602162,0.899918468,0,284.3944713,59.17732761,323.1248486,11,10,14% +11/30/2018 19:00,61.06865213,164.6626347,452.650676,785.5747927,72.61999446,450.0695999,376.2270942,73.84250568,70.43023369,3.412271996,111.9401578,0,111.9401578,2.189760772,109.750397,1.065849049,2.87390513,0.147063698,-0.147063698,0.505004316,0.160432754,1.994192618,64.14008959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.70021957,1.586474225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.444785763,61.6538938,69.14500533,63.24036803,376.2270942,0,0.478919509,61.38514278,-0.478919509,118.6148572,0.945598323,0,424.9047146,63.24036803,466.2942707,11,11,10% +11/30/2018 20:00,59.55271031,180.6064768,479.2083814,798.4793554,74.58257986,539.0307141,463.084599,75.94611509,72.33363989,3.612475198,118.4385601,0,118.4385601,2.248939963,116.1896202,1.039390873,3.15217767,0.598747124,-0.598747124,0.427761901,0.155637052,1.86701154,60.04950895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52984601,1.629349348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352643505,57.72187209,70.88248951,59.35122144,463.084599,0,0.579958136,54.55240176,-0.579958136,125.4475982,0.963786881,0,517.1973507,59.35122144,556.0415381,11,12,8% +11/30/2018 21:00,61.32500207,196.4942927,448.126443,783.2739101,72.27974728,566.44686,492.9684474,73.47841263,70.10024622,3.378166416,110.8329454,0,110.8329454,2.179501064,108.6534443,1.0703232,3.429472368,1.087446054,-1.087446054,0.344189462,0.161293198,1.520064223,48.8904906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38302306,1.579041102,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101281355,46.9953992,68.48430441,48.5744403,492.9684474,0,0.629369166,50.99640395,-0.629369166,129.0035961,0.970555371,0,546.9374786,48.5744403,578.7284783,11,13,6% +11/30/2018 22:00,66.11503015,211.0842923,362.0603698,732.6530155,65.40788861,523.2005117,457.0355483,66.16496344,63.43559943,2.729364003,89.75801762,0,89.75801762,1.972289171,87.78572845,1.153924961,3.6841159,1.757061163,-1.757061163,0.229678534,0.180654648,1.006700495,32.37894842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.97671107,1.42891679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729351082,31.12387682,61.70606215,32.55279361,457.0355483,0,0.623809005,51.40517515,-0.623809005,128.5948249,0.969847262,0,504.9607371,32.55279361,526.2658894,11,14,4% +11/30/2018 23:00,73.31341564,223.7913306,229.355168,615.9504523,52.49347066,399.8850562,347.2454812,52.63957498,50.91059884,1.728976136,57.19268768,0,57.19268768,1.582871821,55.60981586,1.279560489,3.905895556,2.993041197,-2.993041197,0.0183135,0.228874157,0.420134579,13.51297226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.93720409,1.146785246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.304386072,12.98918293,49.24159016,14.13596818,347.2454812,0,0.563755542,55.68408151,-0.563755542,124.3159185,0.961309076,0,383.0518228,14.13596818,392.3035313,11,15,2% +11/30/2018 0:00,82.23375872,234.6892704,71.58260543,327.5720022,27.31721133,175.6976482,148.6645317,27.03311654,26.49349662,0.539619916,18.17974615,0,18.17974615,0.823714711,17.35603144,1.435249846,4.096100487,7.072067189,-7.072067189,0,0.381618009,0.205928678,6.623374156,0.404492873,1,0.140470109,0,0.946508521,0.985270484,0.724496596,1,25.68787035,0.596778504,0.058060284,0.312029739,0.848582158,0.573078754,0.961238037,0.922476074,0.14096187,6.366639171,25.82883222,6.963417675,88.53078819,0,0.453837723,63.00982379,-0.453837723,116.9901762,0.939828462,0,109.0325867,6.963417675,113.5900043,11,16,4% +11/30/2018 1:00,92.54684431,244.1882413,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615247146,4.261888806,-22.36639619,22.36639619,0,#DIV/0!,0,0,1,0.701940312,0,0.044680174,0.961238037,1,0.60561704,0.881120444,0,0,0.115824807,0.177230836,0.724496596,0.448993192,0.980662059,0.941900096,0,0,0,0,0,0,0.298169687,72.65229657,-0.298169687,107.3477034,0.882310251,0,0,0,0,11,17,0% +11/30/2018 2:00,103.5612537,252.8018543,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807484855,4.412224713,-4.140813391,4.140813391,0.761725516,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111743476,83.58417093,-0.111743476,96.41582907,0.602546583,0,0,0,0,11,18,0% +11/30/2018 3:00,115.0900459,261.090354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008700236,4.556886322,-2.095852481,2.095852481,0.888565573,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094505775,95.42287482,0.094505775,84.57712518,0,0.520931802,0,0,0,11,19,0% +11/30/2018 4:00,126.8843779,269.7490685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214550164,4.708009399,-1.254248169,1.254248169,0.744642759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306531937,107.8503527,0.306531937,72.14964731,0,0.88688486,0,0,0,11,20,0% +11/30/2018 5:00,138.674752,279.8997392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420331011,4.885172025,-0.762266501,0.762266501,0.660508939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509897394,120.6569954,0.509897394,59.34300458,0,0.951941056,0,0,0,11,21,0% +11/30/2018 6:00,150.0078774,293.941616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618131365,5.130249008,-0.415587504,0.415587504,0.601223338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690756259,133.6900032,0.690756259,46.30999685,0,0.977615567,0,0,0,11,22,0% +11/30/2018 7:00,159.6742372,318.0628837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786841169,5.551244549,-0.138385678,0.138385678,0.553819034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836797089,146.8034298,0.836797089,33.19657025,0,0.990248358,0,0,0,11,23,0% +12/1/2018 8:00,163.9496742,1.735313583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.861461622,0.030286936,0.106539468,-0.106539468,0.511934368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938080906,159.7317274,0.938080906,20.26827261,0,0.996699693,0,0,0,12,0,0% +12/1/2018 9:00,159.127618,44.17884362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777300866,0.771066281,0.343239837,-0.343239837,0.47145622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987717586,171.0107178,0.987717586,8.98928219,0,0.999378243,0,0,0,12,1,0% +12/1/2018 10:00,149.2747723,67.2840927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.605336266,1.174328952,0.59368464,-0.59368464,0.428627637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98233467,169.2145089,0.98233467,10.78549106,0,0.99910085,0,0,0,12,2,0% +12/1/2018 11:00,137.8910791,80.93401655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406653339,1.412565066,0.88744391,-0.88744391,0.378391843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922306686,157.2656679,0.922306686,22.73433211,0,0.995788098,0,0,0,12,3,0% +12/1/2018 12:00,126.0957149,90.9334541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200785397,1.587088174,1.281029484,-1.281029484,0.311084746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811729453,144.2652495,0.811729453,35.73475054,0,0.988403122,0,0,0,12,4,0% +12/1/2018 13:00,114.3198435,99.54323111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99525767,1.737357131,1.925022872,-1.925022872,0.20095539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658141059,131.158253,0.658141059,48.841747,0,0.974028444,0,0,0,12,5,0% +12/1/2018 14:00,102.8286228,107.8391934,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794698033,1.882148988,3.468013979,-3.468013979,0,#DIV/0!,0,0,0.059188015,1,0.280734264,0,0.927328704,0.966090667,0.724496596,1,0,0,0.009847566,0.312029739,0.972454045,0.696950641,0.961238037,0.922476074,0,0,0,0,0,0,-0.47200848,118.1647505,0.47200848,61.83524952,0,0.9440697,0,0,0,12,6,0% +12/1/2018 15:00,91.87303712,116.5009933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603486992,2.033325915,21.04872394,-21.04872394,0,#DIV/0!,0,0,0.75426293,1,0.047473123,0,0.95678131,0.995543274,0.724496596,1,0,0,0.094949699,0.312029739,0.766253781,0.490750377,0.961238037,0.922476074,0,0,0,0,0,0,-0.266014748,105.427258,0.266014748,74.57274199,0,0.862040496,0,0,0,12,7,0% +12/1/2018 16:00,81.65314624,126.0832365,80.97844714,354.9110638,29.45766196,29.17985451,0,29.17985451,28.56940477,0.61044974,39.12358847,18.60116923,20.52241924,0.888257195,19.63416204,1.425116246,2.200567609,-3.803093716,3.803093716,0.819478981,0.363771633,0.540338005,17.37912763,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.46199855,0.643539314,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.391473045,16.70547852,27.8534716,17.34901784,0,18.60116923,-0.05241079,93.00429355,0.05241079,86.99570645,0,0,27.8534716,17.34901784,39.20805679,12,8,41% +12/1/2018 17:00,72.84947102,137.0933577,238.0370463,626.215997,53.37651818,147.4276855,93.86624245,53.56144302,51.76701922,1.794423802,59.32433674,0,59.32433674,1.609498961,57.71483778,1.271463128,2.392730474,-1.261255456,1.261255456,0.745841076,0.224236181,1.44062211,46.33535916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.76042793,1.166076519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.043725815,44.53930968,50.80415374,45.7053862,93.86624245,0,0.149894354,81.37919572,-0.149894354,98.62080428,0.716431733,0,118.0529085,45.7053862,147.9661696,12,9,25% +12/1/2018 18:00,65.81714601,149.923364,367.599986,736.814067,65.76405957,309.9623918,243.4102373,66.5521545,63.78103053,2.771123969,91.11190157,0,91.11190157,1.98302904,89.12887253,1.148725902,2.616656328,-0.389627142,0.389627142,0.596783855,0.178901148,1.853659377,59.62005746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.30875258,1.436697789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.342969908,57.30906699,62.65172248,58.74576478,243.4102373,0,0.330355036,70.70967389,-0.330355036,109.2903261,0.898647683,0,281.3917683,58.74576478,319.8396964,12,10,14% +12/1/2018 19:00,61.23935722,164.6064638,449.7572133,784.5260959,72.28121607,447.0945913,373.6024607,73.49213057,70.10167072,3.390459852,111.2283888,0,111.2283888,2.179545354,109.0488435,1.068828415,2.872924764,0.146323846,-0.146323846,0.505130838,0.160711633,1.982273273,63.75672247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38439234,1.579073189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436150238,61.28538674,68.82054258,62.86445993,373.6024607,0,0.476214192,61.56156459,-0.476214192,118.4384354,0.945005229,0,421.8768216,62.86445993,463.0203533,12,11,10% +12/1/2018 20:00,59.70695803,180.5046905,476.6415143,797.6840322,74.27152606,536.2462279,460.6211373,75.62509058,72.03196552,3.593125069,117.806814,0,117.806814,2.239560543,115.5672535,1.042083004,3.150401165,0.599606477,-0.599606477,0.427614943,0.155822613,1.856946719,59.72578968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23986512,1.62255399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.345351576,57.41070083,70.5852167,59.03325482,460.6211373,0,0.577448111,54.72874422,-0.577448111,125.2712558,0.963412133,0,514.3532092,59.03325482,552.9892939,12,12,8% +12/1/2018 21:00,61.45430301,196.3560841,445.9589605,782.5812093,71.9950791,563.9772163,490.7912274,73.18598885,69.82416183,3.361827018,110.2988304,0,110.2988304,2.170917268,108.1279131,1.072579927,3.427060174,1.089731524,-1.089731524,0.343798624,0.161438799,1.511931226,48.62890547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11764024,1.572822171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095389027,46.74395363,68.21302927,48.3167758,490.7912274,0,0.62714415,51.16026401,-0.62714415,128.839736,0.970273513,0,544.4147576,48.3167758,576.037121,12,13,6% +12/1/2018 22:00,66.21577467,210.9250325,360.3361384,731.9403297,65.14945298,521.123781,455.2224584,65.90132261,63.1849566,2.716366018,89.33216496,0,89.33216496,1.964496383,87.36766857,1.155683285,3.681336293,1.761470622,-1.761470622,0.228924472,0.180801885,1.000536429,32.18069087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.73578364,1.423270942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.724885237,30.93330411,61.46066887,32.35657506,455.2224584,0,0.621939303,51.54210864,-0.621939303,128.4578914,0.969606303,0,502.8472337,32.35657506,524.0239649,12,14,4% +12/1/2018 23:00,73.38692234,223.6233764,228.0965356,615.0156811,52.25918862,398.2186585,345.8157892,52.4028693,50.68338126,1.719488034,56.88045323,0,56.88045323,1.575807353,55.30464588,1.280843423,3.902964203,3.002710144,-3.002710144,0.016660013,0.229109962,0.416035288,13.38112498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.71879391,1.141667063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.30141615,12.8624463,49.02021006,14.00411337,345.8157892,0,0.562287759,55.78584035,-0.562287759,124.2141596,0.961077559,0,381.3760046,14.00411337,390.5414167,12,15,2% +12/1/2018 0:00,82.28374807,234.5183144,70.85526555,325.897261,27.09792934,174.3798161,147.5648524,26.81496371,26.28082679,0.534136921,17.99678202,0,17.99678202,0.81710255,17.17967947,1.436122325,4.093116743,7.11260096,-7.11260096,0,0.382440587,0.204275638,6.570206698,0.406940942,1,0.139679989,0,0.946604219,0.985366182,0.724496596,1,25.48168868,0.591988016,0.058354607,0.312029739,0.847882375,0.572378971,0.961238037,0.922476074,0.139825159,6.315532588,25.62151384,6.907520604,87.51467241,0,0.45279562,63.07681,-0.45279562,116.92319,0.939574904,0,107.8481037,6.907520604,112.3689378,12,16,4% +12/1/2018 1:00,92.57914729,244.0144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615810939,4.258854703,-22.07897037,22.07897037,0,#DIV/0!,0,0,1,0.697508681,0,0.045261035,0.961238037,1,0.604175033,0.879678437,0,0,0.115824807,0.175600611,0.724496596,0.448993192,0.980872858,0.942110895,0,0,0,0,0,0,0.297525308,72.69097216,-0.297525308,107.3090278,0.881947069,0,0,0,0,12,17,0% +12/1/2018 2:00,103.579914,252.6213616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807810538,4.40907452,-4.135522081,4.135522081,0.762630383,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111469419,83.59997196,-0.111469419,96.40002804,0.601446481,0,0,0,0,12,18,0% +12/1/2018 3:00,115.0997208,260.8960371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008869095,4.553494853,-2.096311896,2.096311896,0.888644137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094473203,95.42100018,0.094473203,84.57899982,0,0.520749391,0,0,0,12,19,0% +12/1/2018 4:00,126.890347,269.5290973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214654344,4.704170178,-1.255695196,1.255695196,0.744890215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306277404,107.8350321,0.306277404,72.16496791,0,0.886749302,0,0,0,12,20,0% +12/1/2018 5:00,138.68451,279.6338403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420501321,4.880531214,-0.764029986,0.764029986,0.660810512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50952073,120.6319111,0.50952073,59.36808893,0,0.951868566,0,0,0,12,21,0% +12/1/2018 6:00,150.0351855,293.5943939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61860798,5.124188839,-0.417546975,0.417546975,0.601558428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690365601,133.6590563,0.690365601,46.34094371,0,0.977574607,0,0,0,12,22,0% +12/1/2018 7:00,159.7488658,317.6050045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788143684,5.54325305,-0.14056306,0.14056306,0.554191389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836501444,146.772504,0.836501444,33.22749596,0,0.99022724,0,0,0,12,23,0% +12/2/2018 8:00,164.1033465,1.429315052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864143709,0.024946254,0.1040505,-0.1040505,0.512360006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937982656,159.7154836,0.937982656,20.28451637,0,0.99669411,0,0,0,12,0,0% +12/2/2018 9:00,159.3016093,44.23252599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780337587,0.772003215,0.340266514,-0.340266514,0.471964689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987905445,171.0798683,0.987905445,8.920131717,0,0.999387869,0,0,0,12,1,0% +12/2/2018 10:00,149.4374031,67.40998059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60817471,1.17652611,0.589914324,-0.589914324,0.429272399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982877568,169.3820177,0.982877568,10.61798227,0,0.999128964,0,0,0,12,2,0% +12/2/2018 11:00,138.0468164,81.0520197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409371469,1.414624609,0.882253698,-0.882253698,0.379279422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923249018,157.4057857,0.923249018,22.5942143,0,0.99584343,0,0,0,12,3,0% +12/2/2018 12:00,126.2498159,91.03469867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203474968,1.588855225,1.272955397,-1.272955397,0.312465496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813088009,144.3987449,0.813088009,35.6012551,0,0.988506042,0,0,0,12,4,0% +12/2/2018 13:00,114.4756271,99.62891385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997976606,1.738852577,1.909537468,-1.909537468,0.20360355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659903845,131.2925399,0.659903845,48.70746014,0,0.974231386,0,0,0,12,5,0% +12/2/2018 14:00,102.9881357,107.9105956,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797482059,1.883395192,3.420637982,-3.420637982,0,#DIV/0!,0,0,0.051961836,1,0.284417421,0,0.926768101,0.965530064,0.724496596,1,0,0,0.008674007,0.312029739,0.975697025,0.70019362,0.961238037,0.922476074,0,0,0,0,0,0,-0.474135525,118.303079,0.474135525,61.69692096,0,0.944544919,0,0,0,12,6,0% +12/2/2018 15:00,92.03740791,116.5576072,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606355803,2.034314015,19.32916711,-19.32916711,0,#DIV/0!,0,0,0.735122392,1,0.051689203,0,0.956359449,0.995121412,0.724496596,1,0,0,0.093169228,0.312029739,0.769977428,0.494474024,0.961238037,0.922476074,0,0,0,0,0,0,-0.268440831,105.5715083,0.268440831,74.42849174,0,0.863739215,0,0,0,12,7,0% +12/2/2018 16:00,81.82053565,126.1220036,78.32937811,348.049482,28.81092548,28.53264971,0,28.53264971,27.94216977,0.590479939,39.00946678,19.14884648,19.86062029,0.868755704,18.99186459,1.428037743,2.201244222,-3.878116174,3.878116174,0.806649386,0.367817621,0.518303892,16.67043482,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.85907642,0.62941055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.375509405,16.02425604,27.23458582,16.65366659,0,19.14884648,-0.055017598,93.15386862,0.055017598,86.84613138,0,0,27.23458582,16.65366659,38.13407754,12,8,40% +12/2/2018 17:00,73.02178488,137.1080628,234.9499899,623.3022484,52.94069743,144.8360081,91.72051575,53.11549234,51.34434007,1.771152267,58.56270256,0,58.56270256,1.596357358,56.9663452,1.274470572,2.392987127,-1.274075463,1.274075463,0.748033426,0.225327515,1.425438272,45.84699473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.35413265,1.156555472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.032725175,44.06987521,50.38685783,45.22643068,91.72051575,0,0.147152551,81.53805142,-0.147152551,98.46194858,0.710216559,0,115.528287,45.22643068,145.1280813,12,9,26% +12/2/2018 18:00,65.98927151,149.9049211,364.5784509,735.2563395,65.39698862,307.0475023,240.8741278,66.17337449,63.42502812,2.748346362,90.36822687,0,90.36822687,1.971960496,88.39626637,1.151730059,2.616334438,-0.393491884,0.393491884,0.597444765,0.179377,1.840440901,59.19490586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.96654952,1.428678667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333393168,56.9003951,62.29994269,58.32907377,240.8741278,0,0.327605646,70.8764878,-0.327605646,109.1235122,0.897377478,0,278.4549599,58.32907377,316.6301721,12,10,14% +12/2/2018 19:00,61.40387993,164.5460822,446.9686548,783.521111,71.95006346,444.2014817,371.0515396,73.1499421,69.78050357,3.369438521,110.5422851,0,110.5422851,2.169559881,108.3727252,1.071699878,2.871870906,0.145398158,-0.145398158,0.50528914,0.160973399,1.970866901,63.38985436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.07567427,1.571838748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427886361,60.93273916,68.50356063,62.50457791,371.0515396,0,0.473569294,61.73376227,-0.473569294,118.2662377,0.94441883,0,418.9316217,62.50457791,459.8396178,12,11,10% +12/2/2018 20:00,59.85434865,180.4005608,474.1904308,796.9369257,73.9687852,533.560323,458.2473218,75.31300117,71.73835341,3.574647766,117.2033917,0,117.2033917,2.230431789,114.9729599,1.044655455,3.148583758,0.600231408,-0.600231408,0.427508074,0.15598962,1.847416828,59.41927564,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.957634,1.615940239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338447203,57.11606787,70.2960812,58.73200811,458.2473218,0,0.575010778,54.899613,-0.575010778,125.100387,0.963045108,0,511.6089228,58.73200811,550.0478475,12,12,8% +12/2/2018 21:00,61.57646212,196.2175041,443.9153776,781.9474808,71.71968331,561.622954,488.7194621,72.90349186,69.55707024,3.346421627,109.7950358,0,109.7950358,2.162613069,107.6324228,1.074712006,3.424641496,1.091686052,-1.091686052,0.34346438,0.16156161,1.504334756,48.38457687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.86090164,1.566805807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.08988541,46.50909569,67.95078705,48.07590149,488.7194621,0,0.625002924,51.31759792,-0.625002924,128.6824021,0.970000374,0,542.0088482,48.07590149,573.4735642,12,13,6% +12/2/2018 22:00,66.30943357,210.7670217,358.7400767,731.310118,64.90185777,519.1802922,453.5311307,65.64916152,62.94482729,2.704334231,88.93771543,0,88.93771543,1.957030474,86.98068495,1.157317941,3.678578484,1.765333474,-1.765333474,0.228263886,0.180916106,0.994879613,31.99874823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50496222,1.417861916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.720786893,30.75841393,61.22574911,32.17627585,453.5311307,0,0.620162527,51.67199598,-0.620162527,128.328004,0.969375974,0,500.8679304,32.17627585,521.9266595,12,14,4% +12/2/2018 23:00,73.45359589,223.4578182,226.964132,614.2203879,52.03919976,396.7090887,344.5281113,52.18097738,50.47002588,1.710951497,56.59925539,0,56.59925539,1.569173877,55.03008151,1.282007096,3.900074668,3.011180279,-3.011180279,0.015211534,0.229283805,0.412352281,13.26266681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5137086,1.136861132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.298747824,12.74857981,48.81245642,13.88544094,344.5281113,0,0.560919367,55.88059802,-0.560919367,124.119402,0.960860628,0,379.8559539,13.88544094,388.9436973,12,15,2% +12/2/2018 0:00,82.32726202,234.3505499,70.2315171,324.5195307,26.90340601,173.257564,146.6359601,26.6216039,26.09216906,0.529434842,17.83968139,0,17.83968139,0.811236954,17.02844443,1.436881786,4.090188699,7.147596575,-7.147596575,0,0.383067419,0.202809239,6.523042265,0.409038396,1,0.139004894,0,0.946685874,0.985447837,0.724496596,1,25.29877679,0.587738412,0.058606316,0.312029739,0.847284454,0.57178105,0.961238037,0.922476074,0.138817351,6.270196341,25.43759414,6.857934753,86.65622217,0,0.451855578,63.13720164,-0.451855578,116.8627984,0.939345175,0,106.8376983,6.857934753,111.3260794,12,16,4% +12/2/2018 1:00,92.60517436,243.8443654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616265197,4.255887038,-21.85119244,21.85119244,0,#DIV/0!,0,0,1,0.693902008,0,0.045732184,0.961238037,1,0.603007351,0.878510755,0,0,0.115824807,0.174280601,0.724496596,0.448993192,0.981043109,0.942281146,0,0,0,0,0,0,0.296984664,72.72341526,-0.296984664,107.2765847,0.881641138,0,0,0,0,12,17,0% +12/2/2018 2:00,103.5925077,252.4452532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80803034,4.406000849,-4.132104905,4.132104905,0.763214754,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111296175,83.60996023,-0.111296175,96.39003977,0.600748263,0,0,0,0,12,18,0% +12/2/2018 3:00,115.1034326,260.7067581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00893388,4.550191311,-2.097279838,2.097279838,0.888809665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094345817,95.41366875,0.094345817,84.58633125,0,0.520034795,0,0,0,12,19,0% +12/2/2018 4:00,126.8903,269.3149857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214653525,4.700433226,-1.257352945,1.257352945,0.745173707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305936718,107.814528,0.305936718,72.18547204,0,0.886567509,0,0,0,12,20,0% +12/2/2018 5:00,138.6879486,279.3748064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420561336,4.876010218,-0.765894414,0.765894414,0.661129348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509068636,120.601812,0.509068636,59.39818804,0,0.951781417,0,0,0,12,21,0% +12/2/2018 6:00,150.0554478,293.2546494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618961625,5.118259178,-0.419553831,0.419553831,0.60190162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689911555,133.6231081,0.689911555,46.37689188,0,0.977526942,0,0,0,12,22,0% +12/2/2018 7:00,159.8152909,317.1501665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789303022,5.535314629,-0.142755274,0.142755274,0.554566279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836154944,146.736291,0.836154944,33.26370897,0,0.99020247,0,0,0,12,23,0% +12/3/2018 8:00,164.2496545,1.108616993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.866697267,0.019349017,0.101571515,-0.101571515,0.512783938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937845706,159.6928622,0.937845706,20.30713784,0,0.996686326,0,0,0,12,0,0% +12/3/2018 9:00,159.4713486,44.26999749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783300096,0.772657216,0.337327493,-0.337327493,0.472467291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988065543,171.1392225,0.988065543,8.860777472,0,0.99939607,0,0,0,12,1,0% +12/3/2018 10:00,149.5974199,67.52344737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61096753,1.178506479,0.58620901,-0.58620901,0.429906045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983401676,169.5462453,0.983401676,10.45375468,0,0.999156076,0,0,0,12,2,0% +12/3/2018 11:00,138.2005978,81.16007741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412055459,1.416510572,0.87717751,-0.87717751,0.380147501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924178944,157.5448706,0.924178944,22.45512936,0,0.995897923,0,0,0,12,3,0% +12/3/2018 12:00,126.4021257,91.12747294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206133274,1.590474442,1.265094848,-1.265094848,0.313809729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814437514,144.5317825,0.814437514,35.46821755,0,0.988607936,0,0,0,12,4,0% +12/3/2018 13:00,114.6294909,99.70699883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000662036,1.740215417,1.894546597,-1.894546597,0.20616714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661657678,131.4264196,0.661657678,48.57358043,0,0.974432223,0,0,0,12,5,0% +12/3/2018 14:00,103.1453856,107.9749089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800226587,1.88451767,3.375318842,-3.375318842,0,#DIV/0!,0,0,0.044944736,1,0.288029717,0,0.926215546,0.964977509,0.724496596,1,0,0,0.007526911,0.312029739,0.978877278,0.703373874,0.961238037,0.922476074,0,0,0,0,0,0,-0.47625045,118.440798,0.47625045,61.55920204,0,0.945013223,0,0,0,12,6,0% +12/3/2018 15:00,92.19898389,116.6074341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609175836,2.035183658,17.8912108,-17.8912108,0,#DIV/0!,0,0,0.716667613,1,0.05583527,0,0.955940479,0.994702442,0.724496596,1,0,0,0.091429289,0.312029739,0.773640871,0.498137466,0.961238037,0.922476074,0,0,0,0,0,0,-0.270848583,105.7147687,0.270848583,74.2852313,0,0.86539501,0,0,0,12,7,0% +12/3/2018 16:00,81.98439282,126.1542225,75.75510001,341.238442,28.171842,27.89343096,0,27.89343096,27.32235702,0.571073943,38.87144082,19.65425478,19.21718604,0.849484979,18.36770106,1.43089759,2.201806548,-3.955154216,3.955154216,0.793475104,0.371880467,0.496992906,15.98500025,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.26328882,0.615448976,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.360069668,15.36539026,26.62335849,15.98083923,0,19.65425478,-0.057596837,93.30188298,0.057596837,86.69811702,0,0,26.62335849,15.98083923,37.08249815,12,8,39% +12/3/2018 17:00,73.18972038,137.1165815,231.9440936,620.4350501,52.5120757,142.298157,89.62102155,52.67713542,50.92864287,1.748492551,57.82096367,0,57.82096367,1.583432831,56.23753084,1.277401599,2.393135807,-1.287123017,1.287123017,0.750264689,0.226399711,1.410691993,45.3727037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.95454869,1.147191696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022041546,43.61396863,49.97659024,44.76116033,89.62102155,0,0.144448676,81.69464545,-0.144448676,98.30535455,0.703856294,0,113.0569104,44.76116033,142.3521946,12,9,26% +12/3/2018 18:00,66.15604737,149.8810272,361.6513059,733.7443436,65.03731253,304.2006075,238.3981296,65.8024779,63.07619759,2.726280306,89.64766111,0,89.64766111,1.961114935,87.68654617,1.154640847,2.615917411,-0.397522543,0.397522543,0.598134048,0.179834309,1.827707406,58.78535287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63124035,1.420821094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324167794,56.50671719,61.95540814,57.92753829,238.3981296,0,0.324906259,71.04010419,-0.324906259,108.9598958,0.896109459,0,275.586227,57.92753829,313.4986423,12,10,14% +12/3/2018 19:00,61.5621352,164.4815813,444.2869869,782.5619563,71.62673049,441.3925875,368.5764442,72.81614326,69.46692029,3.349222975,109.882334,0,109.882334,2.159810199,107.7225238,1.074461954,2.870745153,0.144286354,-0.144286354,0.50547927,0.16121726,1.959980513,63.03971069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77424608,1.564775137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41999921,60.59616774,68.19424529,62.16094288,368.5764442,0,0.470986918,61.90162137,-0.470986918,118.0983786,0.943839939,0,416.0714139,62.16094288,456.7545078,12,11,10% +12/3/2018 20:00,59.99481669,180.2941818,471.8567806,796.2397766,73.67451196,530.9751608,455.9651514,75.01000932,71.4529536,3.557055725,116.6286978,0,116.6286978,2.221558366,114.4071394,1.047107085,3.146727095,0.600619724,-0.600619724,0.427441668,0.156137445,1.838426769,59.13012445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68329684,1.609511473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.331933936,56.83812475,70.01523078,58.44763622,455.9651514,0,0.572648045,55.06491081,-0.572648045,124.9350892,0.962686334,0,508.966651,58.44763622,547.2194599,12,12,8% +12/3/2018 21:00,61.69143311,196.0786459,441.9969122,781.3743476,71.45368378,559.3859307,486.7548797,72.63105101,69.29909158,3.331959424,109.3218608,0,109.3218608,2.154592202,107.1672686,1.076718628,3.422217963,1.093305383,-1.093305383,0.343187458,0.161661047,1.49727748,48.1575906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.61292275,1.560994716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.084772437,46.29090785,67.69769518,47.85190257,486.7548797,0,0.622947095,51.46833221,-0.622947095,128.5316678,0.969736362,0,539.7216015,47.85190257,571.0397147,12,13,6% +12/3/2018 22:00,66.39597912,210.6103556,357.272906,730.7641251,64.66520221,517.3715053,451.9629235,65.40858185,62.71530777,2.693274078,88.57484686,0,88.57484686,1.949894436,86.62495243,1.158828446,3.675844144,1.76864149,-1.76864149,0.227698182,0.180996659,0.989730365,31.83313071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.28433932,1.412691881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71705628,30.59921607,61.0013956,32.01190795,451.9629235,0,0.618479901,51.79478646,-0.618479901,128.2052135,0.969156629,0,499.024259,32.01190795,519.9754125,12,14,4% +12/3/2018 23:00,73.51342745,223.2947576,225.9581179,613.5668588,51.83358971,395.357381,343.3833976,51.97398347,50.27061573,1.703367737,56.3491357,0,56.3491357,1.562973975,54.78616173,1.283051353,3.897228723,3.018429885,-3.018429885,0.013971779,0.229394678,0.409083189,13.15752158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.32202798,1.132369325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296379378,12.64751021,48.61840736,13.77987954,343.3833976,0,0.559651149,55.96832419,-0.559651149,124.0316758,0.960658631,0,378.4926319,13.77987954,387.5112874,12,15,2% +12/3/2018 0:00,82.36431196,234.1860857,69.71063229,323.4418619,26.73369377,172.3311479,145.8780654,26.45308246,25.92757427,0.525508192,17.70826938,0,17.70826938,0.806119504,16.90214988,1.43752843,4.087318257,7.176890027,-7.176890027,0,0.383495213,0.201529876,6.481893567,0.410782719,1,0.138444763,0,0.946753544,0.985515507,0.724496596,1,25.13918836,0.584030837,0.058815325,0.312029739,0.846788348,0.571284944,0.961238037,0.922476074,0.137938531,6.230642647,25.27712689,6.814673484,85.95387703,0,0.451017888,63.19099065,-0.451017888,116.8090094,0.939139652,0,105.9998211,6.814673484,110.4598886,12,16,4% +12/3/2018 1:00,92.62495265,243.6782549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616610393,4.252987863,-21.67944975,21.67944975,0,#DIV/0!,0,0,1,0.691125219,0,0.04609396,0.961238037,1,0.602111929,0.877615333,0,0,0.115824807,0.173268418,0.724496596,0.448993192,0.981173394,0.942411431,0,0,0,0,0,0,0.296547625,72.74963701,-0.296547625,107.250363,0.881393018,0,0,0,0,12,17,0% +12/3/2018 2:00,103.5990791,252.273659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808145032,4.403005966,-4.130540923,4.130540923,0.763482211,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111223195,83.61416779,-0.111223195,96.38583221,0.600453483,0,0,0,0,12,18,0% +12/3/2018 3:00,115.1012417,260.5226668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008895641,4.546978311,-2.098751989,2.098751989,0.889061418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09412452,95.40093269,0.09412452,84.59906731,0,0.51878879,0,0,0,12,19,0% +12/3/2018 4:00,126.8843124,269.1069202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214549021,4.696801797,-1.259219051,1.259219051,0.74549283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305511043,107.7889121,0.305511043,72.21108788,0,0.886339795,0,0,0,12,20,0% +12/3/2018 5:00,138.6851561,279.1229005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420512598,4.871613631,-0.767857912,0.767857912,0.661465126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508542428,120.5667903,0.508542428,59.43320968,0,0.951679787,0,0,0,12,21,0% +12/3/2018 6:00,150.0687554,292.9228327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619193886,5.112467884,-0.421606356,0.421606356,0.602252623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68939547,133.5822741,0.68939547,46.41772589,0,0.977472688,0,0,0,12,22,0% +12/3/2018 7:00,159.8735474,316.6992478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79031979,5.527444612,-0.144960626,0.144960626,0.554943417,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835758842,146.6949369,0.835758842,33.30506309,0,0.99017413,0,0,0,12,23,0% +12/4/2018 8:00,164.3884748,0.77359902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.869120138,0.01350185,0.099104276,-0.099104276,0.51320586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937671102,159.6640559,0.937671102,20.33594412,0,0.996676399,0,0,0,12,0,0% +12/4/2018 9:00,159.6367332,44.29095012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786186601,0.773022908,0.334424676,-0.334424676,0.472963702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988198616,171.1888593,0.988198616,8.81114074,0,0.999402884,0,0,0,12,1,0% +12/4/2018 10:00,149.7547377,67.62429838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613713243,1.180266661,0.582570807,-0.582570807,0.430528214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983907336,169.7071478,0.983907336,10.29285217,0,0.999182206,0,0,0,12,2,0% +12/4/2018 11:00,138.3523331,81.25807874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41470374,1.418221018,0.872217675,-0.872217675,0.380995682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925096359,157.6828896,0.925096359,22.31711038,0,0.995951576,0,0,0,12,3,0% +12/4/2018 12:00,126.5525451,91.21171084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20875859,1.591944671,1.25744999,-1.25744999,0.315117077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815777394,144.6643016,0.815777394,35.33569843,0,0.98870877,0,0,0,12,4,0% +12/4/2018 13:00,114.7813276,99.77744891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003312086,1.741445003,1.880048557,-1.880048557,0.208646451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663401524,131.5598112,0.663401524,48.4401888,0,0.974630863,0,0,0,12,5,0% +12/4/2018 14:00,103.3002581,108.0321192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802929621,1.885516178,3.331992509,-3.331992509,0,#DIV/0!,0,0,0.038138379,1,0.291567546,0,0.925671761,0.964433724,0.724496596,1,0,0,0.006407147,0.312029739,0.981991669,0.706488265,0.961238037,0.922476074,0,0,0,0,0,0,-0.478351803,118.5778109,0.478351803,61.42218909,0,0.945474419,0,0,0,12,6,0% +12/4/2018 15:00,92.35764654,116.6504824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611945021,2.035934991,16.67269397,-16.67269397,0,#DIV/0!,0,0,0.698889949,1,0.059906542,0,0.955525104,0.994287067,0.724496596,1,0,0,0.089731173,0.312029739,0.777239656,0.501736252,0.961238037,0.922476074,0,0,0,0,0,0,-0.273236202,105.8569309,0.273236202,74.14306915,0,0.867008143,0,0,0,12,7,0% +12/4/2018 16:00,82.14460124,126.1799257,73.25707644,334.4895536,27.54123391,27.26300688,0,27.26300688,26.71076409,0.552242786,38.7108691,20.11837296,18.59249614,0.830469819,17.76202632,1.433693754,2.202255154,-4.034168949,4.034168949,0.779962789,0.375953222,0.476412389,15.3230601,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67540244,0.601672557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.345159154,14.72910821,26.02056159,15.33078077,0,20.11837296,-0.060146491,93.44822127,0.060146491,86.55177873,0,0,26.02056159,15.33078077,36.05425099,12,8,39% +12/4/2018 17:00,73.35316458,137.1189723,229.0215157,617.6195307,52.09103847,139.8158931,87.5691307,52.24676239,50.52030147,1.726460924,57.099655,0,57.099655,1.570737005,55.52891799,1.280254239,2.393177533,-1.300383546,1.300383546,0.752532373,0.227450414,1.396394376,44.9128432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5620354,1.137993613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011682972,43.17193323,49.57371837,44.30992684,87.5691307,0,0.141784912,81.84885541,-0.141784912,98.15114459,0.697353168,0,110.6403291,44.30992684,139.64029,12,9,26% +12/4/2018 18:00,66.31737223,149.8517646,358.8207179,732.281078,64.68528442,301.423955,235.9842284,65.43972657,62.73478443,2.704942138,88.95073733,0,88.95073733,1.950499988,87.00023734,1.157456497,2.615406682,-0.401715411,0.401715411,0.598851071,0.180271877,1.815467741,58.39168319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.30306103,1.413130602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.315300198,56.12830692,61.61836123,57.54143752,235.9842284,0,0.322259083,71.20040023,-0.322259083,108.7995998,0.894845335,0,272.7877471,57.54143752,310.4474672,12,10,14% +12/4/2018 19:00,61.7140396,164.4130578,441.7141512,781.6507335,71.31140687,438.6702018,366.1792691,72.49093269,69.16110484,3.329827852,109.249012,0,109.249012,2.150302028,107.0987099,1.077113186,2.869549193,0.142988633,-0.142988633,0.505701193,0.161442432,1.94962085,62.7065083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.48028464,1.5578865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412493669,60.27588094,67.89277831,61.83376744,366.1792691,0,0.468469168,62.06502725,-0.468469168,117.9349727,0.94326939,0,413.2984742,61.83376744,453.7674383,12,11,10% +12/4/2018 20:00,60.1282994,180.1856534,469.6421437,795.5942754,73.38885403,528.492848,453.7765778,74.71627016,71.1759093,3.540360857,116.0831198,0,116.0831198,2.212944725,113.8701751,1.049436798,3.144832916,0.600769749,-0.600769749,0.427416012,0.156265478,1.829981097,58.85848259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.41699133,1.60327092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325815075,56.57701226,69.7428064,58.18028318,453.7765778,0,0.570361794,55.22454143,-0.570361794,124.7754586,0.962336344,0,506.4284994,58.18028318,544.5063311,12,12,8% +12/4/2018 21:00,61.79917347,195.939608,440.2046918,780.8633434,71.19719422,557.2679134,484.8991284,72.36878503,69.05033612,3.31844891,108.8795821,0,108.8795821,2.146858095,106.7327241,1.078599052,3.419791294,1.094585992,-1.094585992,0.342968461,0.161736564,1.490761684,47.94802023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37380954,1.555391382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080051766,46.08946083,67.4538613,47.64485222,484.8991284,0,0.620978219,51.61239554,-0.620978219,128.3876045,0.969481878,0,537.554779,47.64485222,568.7373818,12,13,6% +12/4/2018 22:00,66.47538844,210.4551347,355.9352433,730.3039354,64.43957043,515.698746,450.5190762,65.17966984,62.49647963,2.683190212,88.24371142,0,88.24371142,1.943090805,86.30062061,1.1602144,3.673135027,1.771387798,-1.771387798,0.227228535,0.181042961,0.985088664,31.68383764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.07399339,1.407762674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.713693383,30.45570989,60.78768677,31.86347257,450.5190762,0,0.616892576,51.91043267,-0.616892576,128.0895673,0.968948611,0,497.31752,31.86347257,518.1715255,12,14,4% +12/4/2018 23:00,73.56641373,223.1343,225.0785535,613.0570428,51.64241743,394.1643701,342.3824249,51.78194521,50.085208,1.69673721,56.13011059,0,56.13011059,1.557209426,54.57290116,1.283976139,3.894428209,3.024441071,-3.024441071,0.012943805,0.229441751,0.406225539,13.06560972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.14380702,1.128192928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29430902,12.55916104,48.43811604,13.68735396,342.3824249,0,0.558483797,56.04899309,-0.558483797,123.9510069,0.960471888,0,377.2868101,13.68735396,386.2449095,12,15,2% +12/4/2018 0:00,82.39491502,234.0250334,69.29188627,322.6665654,26.58878622,171.6005738,145.2911861,26.30938773,25.78703622,0.522351508,17.60237007,0,17.60237007,0.801750007,16.80062006,1.438062554,4.084507364,7.200348586,-7.200348586,0,0.383721495,0.200437502,6.446759054,0.412172187,1,0.137999427,0,0.946807295,0.985569258,0.724496596,1,25.00292091,0.580865151,0.058981605,0.312029739,0.846393911,0.570890507,0.961238037,0.922476074,0.137188516,6.196870018,25.14010942,6.777735168,85.40620009,0,0.450282743,63.23817412,-0.450282743,116.7618259,0.938958658,0,105.3330005,6.777735168,109.7688926,12,16,4% +12/4/2018 1:00,92.63851571,243.5161877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616847113,4.250159256,-21.56100696,21.56100696,0,#DIV/0!,0,0,1,0.689180662,0,0.04634681,0.961238037,1,0.60148672,0.876990125,0,0,0.115824807,0.172561709,0.724496596,0.448993192,0.981264224,0.942502261,0,0,0,0,0,0,0.296213949,72.76965464,-0.296213949,107.2303454,0.881203088,0,0,0,0,12,17,0% +12/4/2018 2:00,103.5996787,252.1067091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808155497,4.40009214,-4.130812093,4.130812093,0.763435838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111249815,83.61263309,-0.111249815,96.38736691,0.600561049,0,0,0,0,12,18,0% +12/4/2018 3:00,115.0932148,260.3439118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008755545,4.543858449,-2.10072407,2.10072407,0.889398663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093810324,95.38285058,0.093810324,84.61714942,0,0.517009621,0,0,0,12,19,0% +12/4/2018 4:00,126.8724662,268.9050842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214342265,4.693279095,-1.261291014,1.261291014,0.745847156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305001642,107.7582627,0.305001642,72.24173732,0,0.886066456,0,0,0,12,20,0% +12/4/2018 5:00,138.6762278,278.8783799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42035677,4.867345942,-0.769918479,0.769918479,0.661817504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507943503,120.5269443,0.507943503,59.47305568,0,0.951563856,0,0,0,12,21,0% +12/4/2018 6:00,150.0752073,292.5993848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619306494,5.106822654,-0.423702726,0.423702726,0.602611123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688818751,133.5366753,0.688818751,46.46332466,0,0.977411964,0,0,0,12,22,0% +12/4/2018 7:00,159.9236815,316.2531347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791194794,5.51965847,-0.147177329,0.147177329,0.555322495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835314431,146.6485932,0.835314431,33.35140685,0,0.990142301,0,0,0,12,23,0% +12/5/2018 8:00,164.519687,0.424723528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.871410223,0.007412824,0.096650618,-0.096650618,0.51362546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937459902,159.6292641,0.937459902,20.37073588,0,0.996664385,0,0,0,12,0,0% +12/5/2018 9:00,159.7976548,44.29510257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788995214,0.773095382,0.331560025,-0.331560025,0.473453586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988305387,171.2288869,0.988305387,8.771113115,0,0.99940835,0,0,0,12,1,0% +12/5/2018 10:00,149.9092653,67.71235043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616410259,1.181803459,0.579001875,-0.579001875,0.431138537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984394861,169.8646712,0.984394861,10.13532884,0,0.999207374,0,0,0,12,2,0% +12/5/2018 11:00,138.501927,81.34592042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417314646,1.419754144,0.867376561,-0.867376561,0.381823562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926001111,157.8198014,0.926001111,22.18019856,0,0.996004384,0,0,0,12,3,0% +12/5/2018 12:00,126.7009708,91.28735259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211349106,1.593264868,1.250023016,-1.250023016,0.316387164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817107017,144.7962349,0.817107017,35.20376514,0,0.988808505,0,0,0,12,4,0% +12/5/2018 13:00,114.9310257,99.84023258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005924812,1.742540784,1.86604182,-1.86604182,0.211041744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665134283,131.692628,0.665134283,48.30737199,0,0.97482721,0,0,0,12,5,0% +12/5/2018 14:00,103.4526359,108.082218,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805589116,1.886390568,3.290598917,-3.290598917,0,#DIV/0!,0,0,0.031544407,1,0.295027305,0,0.925137474,0.963899438,0.724496596,1,0,0,0.005315578,0.312029739,0.985037067,0.709533663,0.961238037,0.922476074,0,0,0,0,0,0,-0.480438065,118.7140166,0.480438065,61.28598339,0,0.945928313,0,0,0,12,6,0% +12/5/2018 15:00,92.51327521,116.6867656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614661254,2.036568254,15.62857724,-15.62857724,0,#DIV/0!,0,0,0.681781051,1,0.063898244,0,0.955114041,0.993876004,0.724496596,1,0,0,0.088076151,0.312029739,0.780769352,0.505265948,0.961238037,0.922476074,0,0,0,0,0,0,-0.275601826,105.9978823,0.275601826,74.00211773,0,0.868578851,0,0,0,12,7,0% +12/5/2018 16:00,82.30104369,126.1991509,70.83668592,327.8148158,26.91994679,26.64220793,0,26.64220793,26.10821107,0.53399686,38.52926264,20.5423523,17.98691034,0.81173572,17.17517462,1.43642419,2.202590696,-4.115106739,4.115106739,0.766121612,0.380028321,0.456568396,14.68480905,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.09620555,0.588099766,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330782248,14.11559702,25.4269878,14.70369678,0,20.5423523,-0.062664502,93.5927655,0.062664502,86.4072345,0,0,25.4269878,14.70369678,35.05026327,12,8,38% +12/5/2018 17:00,73.51200452,137.1152981,226.1843999,614.8609578,51.6779765,137.3909548,85.56618646,51.82476839,50.11969484,1.705073547,56.39930809,0,56.39930809,1.558281663,54.84102643,1.283026519,2.393113407,-1.313840837,1.313840837,0.754833705,0.228477192,1.382556519,44.46777015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.17695707,1.12896976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001657491,42.74411208,49.17861457,43.87308184,85.56618646,0,0.139163473,82.00055705,-0.139163473,97.99944295,0.690710318,0,108.2800625,43.87308184,136.9941171,12,9,27% +12/5/2018 18:00,66.47314559,149.8172194,356.0888273,730.8695638,64.34115587,298.7197783,233.6343977,65.08538062,62.40103263,2.684347993,88.27798208,0,88.27798208,1.940123243,86.33785883,1.160175255,2.614803755,-0.40606617,0.40606617,0.599595094,0.180688499,1.803730604,58.01417651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.9822461,1.405612685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.306796683,55.76543314,61.28904279,57.17104583,233.6343977,0,0.319666339,71.35725232,-0.319666339,108.6427477,0.893586909,0,270.0616822,57.17104583,307.4789882,12,10,14% +12/5/2018 19:00,61.85951139,164.3406123,439.2520425,780.7895209,71.00427768,436.036586,363.8620818,72.17450416,68.86323673,3.311267437,108.6427841,0,108.6427841,2.14104095,106.5017432,1.079652147,2.86828478,0.141505645,-0.141505645,0.505954799,0.161648145,1.939794403,62.39045599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.19396248,1.55117688,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.405374441,59.97207943,67.59933692,61.52325631,363.8620818,0,0.466018142,62.22386563,-0.466018142,117.7761344,0.94270804,0,410.6150468,61.52325631,450.8807876,12,11,10% +12/5/2018 20:00,60.25473651,180.0750791,467.5480338,795.0020587,73.11195203,526.115434,451.6835025,74.43193149,70.90735692,3.524574572,115.567029,0,115.567029,2.204595108,113.3624339,1.051643542,3.142903031,0.6006803,-0.6006803,0.427431308,0.156373135,1.822084055,58.60448658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15884856,1.597221651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.320093695,56.33286163,69.47894226,57.93008328,451.6835025,0,0.568153878,55.37840989,-0.568153878,124.6215901,0.961995672,0,503.9965169,57.93008328,541.9105978,12,12,8% +12/5/2018 21:00,61.89964402,195.8004929,438.5397621,780.4159112,70.95031851,555.2705812,483.1537786,72.11680259,68.81090462,3.305897967,108.4684565,0,108.4684565,2.139413882,106.3290426,1.080352594,3.417363279,1.095525061,-1.095525061,0.34280787,0.161787652,1.484789333,47.75592888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14365887,1.549998074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075724817,45.90481532,67.21938369,47.4548134,483.1537786,0,0.619097806,51.7497186,-0.619097806,128.2502814,0.969237317,0,535.5100557,47.4548134,566.5682819,12,13,6% +12/5/2018 22:00,66.54764272,210.301463,354.7276151,729.9309747,64.2250323,514.1632153,449.2007181,64.96249721,62.28841061,2.6740866,87.94443886,0,87.94443886,1.936621689,86.00781717,1.161475475,3.67045295,1.773566847,-1.773566847,0.226855896,0.181054504,0.980954222,31.55085978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.87398954,1.403075821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710697994,30.32788652,60.58468753,31.73096234,449.2007181,0,0.615401639,52.01889012,-0.615401639,127.9811099,0.968752248,0,495.7488928,31.73096234,516.516173,12,14,4% +12/5/2018 23:00,73.61255612,222.9765537,224.3254167,612.6925605,51.46571677,393.1307091,341.5258139,51.60489527,49.91383552,1.691059747,55.94217568,0,55.94217568,1.551881249,54.39029443,1.284781475,3.891675016,3.029199722,-3.029199722,0.012130028,0.229424367,0.403776824,12.98685062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.97907727,1.124332682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292534934,12.48345479,48.2716122,13.60778748,341.5258139,0,0.557417922,56.12258274,-0.557417922,123.8774173,0.960300695,0,376.2390887,13.60778748,385.1451135,12,15,2% +12/5/2018 0:00,82.41909302,233.8675063,68.97457773,322.1952569,26.46862236,171.0656331,144.8751779,26.19045524,25.67049574,0.519959502,17.52181155,0,17.52181155,0.798126623,16.72368493,1.43848454,4.081757999,7.217871645,-7.217871645,0,0.383744609,0.199531656,6.417623935,0.413205823,1,0.137668623,0,0.946847193,0.985609156,0.724496596,1,24.88991981,0.578240021,0.059105183,0.312029739,0.846100914,0.57059751,0.961238037,0.922476074,0.136566872,6.168864232,25.02648668,6.747104254,85.01191073,0,0.44965025,63.27875343,-0.44965025,116.7212466,0.938802464,0,104.8358779,6.747104254,109.2517227,12,16,4% +12/5/2018 1:00,92.64590237,243.3582835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616976035,4.24740331,-21.4939131,21.4939131,0,#DIV/0!,0,0,1,0.688068233,0,0.046491275,0.961238037,1,0.601129737,0.876633142,0,0,0.115824807,0.172158201,0.724496596,0.448993192,0.981316035,0.942554072,0,0,0,0,0,0,0.295983297,72.7834905,-0.295983297,107.2165095,0.881071548,0,0,0,0,12,17,0% +12/5/2018 2:00,103.5943625,251.9445332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808062712,4.397261636,-4.132903492,4.132903492,0.763078188,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111375275,83.60539979,-0.111375275,96.39460021,0.601067326,0,0,0,0,12,18,0% +12/5/2018 3:00,115.079424,260.1706403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00851485,4.540834291,-2.103191941,2.103191941,0.889820694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093404328,95.35948614,0.093404328,84.64051386,0,0.514692898,0,0,0,12,19,0% +12/5/2018 4:00,126.8548485,268.7096579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214034779,4.689868261,-1.263566252,1.263566252,0.746236245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304409851,107.7226627,0.304409851,72.27733733,0,0.88574776,0,0,0,12,20,0% +12/5/2018 5:00,138.6612644,278.6414951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42009561,4.863211523,-0.772074021,0.772074021,0.662186123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507273316,120.4823767,0.507273316,59.51762325,0,0.951433806,0,0,0,12,21,0% +12/5/2018 6:00,150.0749093,292.2847353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619301292,5.101330985,-0.425841038,0.425841038,0.602976796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688182847,133.486437,0.688182847,46.51356298,0,0.977344891,0,0,0,12,22,0% +12/5/2018 7:00,159.9657497,315.8127147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791929022,5.511971691,-0.149403537,0.149403537,0.555703199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834823026,146.5974149,0.834823026,33.4025851,0,0.990107066,0,0,0,12,23,0% +12/6/2018 8:00,164.6431746,0.062532834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.873565488,0.001091404,0.094212427,-0.094212427,0.514042416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937213168,159.5886906,0.937213168,20.41130936,0,0.996650344,0,0,0,12,0,0% +12/6/2018 9:00,159.9540001,44.28219935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791723954,0.772870179,0.328735543,-0.328735543,0.473936601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988386566,171.2594419,0.988386566,8.740558099,0,0.999412505,0,0,0,12,1,0% +12/6/2018 10:00,150.0609065,67.78743064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619056897,1.183113856,0.575504403,-0.575504403,0.43173664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98486453,170.0187511,0.98486453,9.981248917,0,0.999231596,0,0,0,12,2,0% +12/6/2018 11:00,138.6492794,81.42350585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419886432,1.421108266,0.862656553,-0.862656553,0.382630731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926893006,157.9555576,0.926893006,22.04444237,0,0.996056341,0,0,0,12,3,0% +12/6/2018 12:00,126.8472953,91.35434374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213902951,1.594434084,1.242816128,-1.242816128,0.317619614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818425697,144.9275091,0.818425697,35.07249088,0,0.988907099,0,0,0,12,4,0% +12/6/2018 13:00,115.0784713,99.8953231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008498222,1.743502295,1.852524975,-1.852524975,0.213353261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666854802,131.8247785,0.666854802,48.17522148,0,0.975021159,0,0,0,12,5,0% +12/6/2018 14:00,103.6023997,108.1252012,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808202988,1.887140765,3.251081577,-3.251081577,0,#DIV/0!,0,0,0.02516441,1,0.298405418,0,0.924613416,0.963375379,0.724496596,1,0,0,0.004253056,0.312029739,0.988010359,0.712506955,0.961238037,0.922476074,0,0,0,0,0,0,-0.482507664,118.84931,0.482507664,61.15068999,0,0.946374703,0,0,0,12,6,0% +12/6/2018 15:00,92.66574806,116.7163018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617322408,2.037083756,14.72542859,-14.72542859,0,#DIV/0!,0,0,0.665332785,1,0.067805632,0,0.954708016,0.993469979,0.724496596,1,0,0,0.086465458,0.312029739,0.784225573,0.508722169,0.961238037,0.922476074,0,0,0,0,0,0,-0.27794355,106.1375076,0.27794355,73.86249241,0,0.870107356,0,0,0,12,7,0% +12/6/2018 16:00,82.45360292,126.2119393,68.49520658,321.2265477,26.30884423,26.03188131,0,26.03188131,25.51553551,0.5163458,38.32828396,20.92751939,17.40076457,0.793308723,16.60745584,1.439086851,2.202813896,-4.197898121,4.197898121,0.751963452,0.384097597,0.437465559,14.07039616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.52650326,0.574749469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316942308,13.52499998,24.84344557,14.09974945,0,20.92751939,-0.065148785,93.73539602,0.065148785,86.26460398,0,0,24.84344557,14.09974945,34.07144959,12,8,37% +12/6/2018 17:00,73.66612778,137.1056253,223.4348647,612.1647176,51.27328402,135.0250443,83.61349259,51.41155172,49.72720533,1.684346389,55.72044847,0,55.72044847,1.546078692,54.17436978,1.285716477,2.392944584,-1.327477112,1.327477112,0.757165646,0.229477544,1.369189476,44.03784012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.79968123,1.120128749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.991973115,42.33084698,48.79165434,43.45097573,83.61349259,0,0.136586592,82.14962516,-0.136586592,97.85037484,0.683931858,0,105.9775857,43.45097573,134.4153803,12,9,27% +12/6/2018 18:00,66.62326819,149.7774806,353.4577411,729.5128333,64.00517596,296.090285,231.3505875,64.73969751,62.07518375,2.664513754,87.62991374,0,87.62991374,1.929992209,85.69992153,1.162795388,2.614110182,-0.410569935,0.410569935,0.600365284,0.181082966,1.792504528,57.65310731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.66902777,1.398272786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298663429,55.41835969,60.9676912,56.81663248,231.3505875,0,0.31713025,71.51053693,-0.31713025,108.4894631,0.892336075,0,267.4101664,56.81663248,304.5955161,12,10,14% +12/6/2018 19:00,61.99847063,164.2643476,436.9025074,779.9803672,70.70552291,433.4939615,361.6269153,71.86704617,68.57349052,3.293555649,108.0641036,0,108.0641036,2.132032391,105.9320712,1.082077444,2.86695371,0.139838454,-0.139838454,0.506239906,0.16183364,1.930507429,62.091755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91544741,1.54465021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.398646061,59.68495668,67.31409347,61.22960689,361.6269153,0,0.46363592,62.37802318,-0.46363592,117.6219768,0.94215676,0,408.0233362,61.22960689,448.0968893,12,11,10% +12/6/2018 20:00,60.37407002,179.962565,465.5759023,794.4647059,72.84393955,523.8449074,449.6877736,74.15713382,70.64742601,3.509707812,115.0807813,0,115.0807813,2.196513543,112.8842678,1.053726305,3.14093929,0.600350656,-0.600350656,0.427487681,0.156459858,1.814739619,58.36826426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90899308,1.591366585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314772676,56.10579575,69.22376576,57.69716234,449.6877736,0,0.566026118,55.52642283,-0.566026118,124.4735772,0.961664854,0,501.6726927,57.69716234,539.4343315,12,12,8% +12/6/2018 21:00,61.9928084,195.6614061,437.003096,780.0334025,70.71315117,553.3955288,481.5203261,71.87520269,68.58088876,3.294313929,108.0887225,0,108.0887225,2.132262412,105.9564601,1.081978619,3.414935755,1.096120441,-1.096120441,0.342706054,0.161813845,1.479362122,47.58137112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.92255888,1.544816859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.071792822,45.73702377,66.9943517,47.28184062,481.5203261,0,0.617307316,51.88023405,-0.617307316,128.119766,0.969003066,0,533.589024,47.28184062,564.534043,12,13,6% +12/6/2018 22:00,66.6127265,210.1494471,353.6504715,729.6465131,64.02164431,512.7660004,448.0088783,64.75712215,62.09115552,2.665966637,87.67714004,0,87.67714004,1.930488791,85.74665124,1.162611401,3.667799774,1.775174356,-1.775174356,0.226580996,0.181030847,0.977326555,31.43418154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.68438043,1.398632557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.708069762,30.21573096,60.3924502,31.61436351,448.0088783,0,0.614008112,52.12011672,-0.614008112,127.8798833,0.968567851,0,494.3194467,31.61436351,515.0104153,12,14,4% +12/6/2018 23:00,73.65185972,222.8216287,223.6986207,612.4747149,51.30349812,392.2568887,340.8140456,51.44284306,49.75650837,1.686334694,55.78531024,0,55.78531024,1.546989758,54.23832049,1.285467452,3.888971066,3.032695426,-3.032695426,0.011532228,0.22934204,0.401734575,12.9211649,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.82784842,1.120788814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.291055332,12.42031518,48.11890375,13.541104,340.8140456,0,0.556454066,56.18907423,-0.556454066,123.8109258,0.960145324,0,375.3499159,13.541104,384.2122977,12,15,2% +12/6/2018 0:00,82.43687145,233.713619,68.75804855,322.0289052,26.37309105,170.7259385,144.6297662,26.09617226,25.57784505,0.518327213,17.46643093,0,17.46643093,0.795246002,16.67118492,1.438794832,4.079072158,7.229391071,-7.229391071,0,0.383563693,0.1988115,6.394461262,0.413883344,1,0.137452015,0,0.946873304,0.985635267,0.724496596,1,24.80008254,0.576153021,0.059186129,0.312029739,0.845909059,0.570405655,0.961238037,0.922476074,0.136072938,6.146599391,24.93615548,6.722752412,84.769915,0,0.449120448,63.31273318,-0.449120448,116.6872668,0.93867129,0,104.507241,6.722752412,108.907148,12,16,4% +12/6/2018 1:00,92.64715558,243.2046624,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616997907,4.244722114,-21.47693856,21.47693856,0,#DIV/0!,0,0,1,0.687785529,0,0.046527967,0.961238037,1,0.601039095,0.8765425,0,0,0.115824807,0.172055746,0.724496596,0.448993192,0.981329185,0.942567221,0,0,0,0,0,0,0.295855252,72.79117088,-0.295855252,107.2088291,0.880998437,0,0,0,0,12,17,0% +12/6/2018 2:00,103.5831907,251.7872599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807867727,4.394516699,-4.136803556,4.136803556,0.762411238,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111598745,83.5925156,-0.111598745,96.4074844,0.601966286,0,0,0,0,12,18,0% +12/6/2018 3:00,115.0599454,260.0029967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008174884,4.537908357,-2.106151695,2.106151695,0.890326842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092907696,95.33090699,0.092907696,84.66909301,0,0.511831453,0,0,0,12,19,0% +12/6/2018 4:00,126.8315506,268.5208164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213628153,4.686572356,-1.266042155,1.266042155,0.746659649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303737063,107.6821987,0.303737063,72.3178013,0,0.885383935,0,0,0,12,20,0% +12/6/2018 5:00,138.6403708,278.4124886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419730947,4.859214605,-0.774322386,0.774322386,0.662570616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506533365,120.4331936,0.506533365,59.56680643,0,0.951289819,0,0,0,12,21,0% +12/6/2018 6:00,150.0679723,291.9792997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619180218,5.096000128,-0.428019336,0.428019336,0.603349307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687489232,133.431687,0.687489232,46.56831301,0,0.977271588,0,0,0,12,22,0% +12/6/2018 7:00,159.9998177,315.3788696,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792523621,5.504399666,-0.151637356,0.151637356,0.556085205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834285948,146.5415593,0.834285948,33.45844068,0,0.99006851,0,0,0,12,23,0% +12/7/2018 8:00,164.7588252,359.6876455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.875583971,6.277733692,0.091791622,-0.091791622,0.514456398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936931957,159.5425416,0.936931957,20.45745836,0,0.996634332,0,0,0,12,0,0% +12/7/2018 9:00,160.105651,44.25201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79437076,0.772343275,0.325953255,-0.325953255,0.4744124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988442844,171.2806868,0.988442844,8.719313192,0,0.999415386,0,0,0,12,1,0% +12/7/2018 10:00,150.2095605,67.84937532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621651399,1.184194995,0.572080586,-0.572080586,0.432322148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985316595,170.1693132,0.985316595,9.830686808,0,0.999254889,0,0,0,12,2,0% +12/7/2018 11:00,138.7942871,81.49074418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.422417292,1.422281796,0.858060024,-0.858060024,0.383416783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927771814,158.0901033,0.927771814,21.90989674,0,0.996107438,0,0,0,12,3,0% +12/7/2018 12:00,126.9914088,91.41263443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216418205,1.595451449,1.235831501,-1.235831501,0.318814056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819732714,145.0580463,0.819732714,34.94195366,0,0.989004508,0,0,0,12,4,0% +12/7/2018 13:00,115.2235481,99.94269776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011030289,1.744329139,1.839496666,-1.839496666,0.215581233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66856189,131.9561676,0.66856189,48.0438324,0,0.975212608,0,0,0,12,5,0% +12/7/2018 14:00,103.7494291,108.1610682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810769135,1.887766762,3.213387213,-3.213387213,0,#DIV/0!,0,0,0.0189999,1,0.301698358,0,0.924100312,0.962862275,0.724496596,1,0,0,0.003220414,0.312029739,0.990908477,0.715405073,0.961238037,0.922476074,0,0,0,0,0,0,-0.484559,118.9835834,0.484559,61.01641665,0,0.946813391,0,0,0,12,6,0% +12/7/2018 15:00,92.81494294,116.7391118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619926349,2.037481866,13.93791146,-13.93791146,0,#DIV/0!,0,0,0.649537158,1,0.071624032,0,0.954307762,0.993069726,0.724496596,1,0,0,0.084900289,0.312029739,0.787604007,0.512100603,0.961238037,0.922476074,0,0,0,0,0,0,-0.280259443,106.2756897,0.280259443,73.72431034,0,0.871593879,0,0,0,12,7,0% +12/7/2018 16:00,82.60216252,126.2183352,66.23380186,314.7373127,25.70880216,25.4328853,0,25.4328853,24.93358692,0.499298376,38.10974318,21.27537585,16.83436733,0.775215241,16.05915209,1.441679705,2.202925525,-4.282456766,4.282456766,0.737503072,0.388152294,0.419106991,13.47992149,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.96711215,0.561640803,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.303641588,12.95741327,24.27075373,13.51905408,0,21.27537585,-0.067597247,93.87599261,0.067597247,86.12400739,0,0,24.27075373,13.51905408,33.11870424,12,8,36% +12/7/2018 17:00,73.81542312,137.0900222,220.7749919,609.5362907,50.87735673,132.719814,81.7123021,51.00751185,49.34321671,1.664295145,55.06359285,0,55.06359285,1.534140023,53.52945282,1.288322172,2.392672259,-1.3412731,1.3412731,0.759524899,0.230448912,1.35630422,43.62340599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.43057676,1.111479224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.98263779,41.93247713,48.41321455,43.04395635,81.7123021,0,0.134056501,82.29593456,-0.134056501,97.70406544,0.677022936,0,103.7343172,43.04395635,131.9057258,12,9,27% +12/7/2018 18:00,66.76764242,149.7326385,350.9295253,728.2139168,63.67759012,293.5376439,229.1347131,64.40293083,61.75747583,2.645454995,87.00704062,0,87.00704062,1.920114287,85.08692633,1.165315194,2.61332754,-0.415221304,0.415221304,0.601160715,0.181454068,1.781797868,57.30874432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.36363483,1.391116265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29090649,55.08734489,60.65454132,56.47846115,229.1347131,0,0.314653027,71.66013138,-0.314653027,108.3398686,0.891094807,0,264.8352942,56.47846115,301.7993175,12,10,14% +12/7/2018 19:00,62.1308393,164.1843676,434.6673408,779.2252833,70.41531693,431.0445003,359.475759,71.56874134,68.29203532,3.276706019,107.5134108,0,107.5134108,2.12328161,105.3901292,1.084387713,2.865557795,0.137988514,-0.137988514,0.506556264,0.161998177,1.921765962,61.81059936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.64490196,1.538310299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392312897,59.41469919,67.03721486,60.95300948,359.475759,0,0.461324558,62.52738815,-0.461324558,117.4726119,0.941616435,0,405.5254976,60.95300948,445.4180233,12,11,10% +12/7/2018 20:00,60.48624407,179.8482183,463.72714,793.9837342,72.58494303,521.6831921,447.7911818,73.89201025,70.39623919,3.49577106,114.6247178,0,114.6247178,2.188703842,112.4360139,1.055684111,3.138943563,0.599780529,-0.599780529,0.427585178,0.156525113,1.807951522,58.14993574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66754276,1.585708483,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309854723,55.89593008,68.97739748,57.48163856,447.7911818,0,0.563980297,55.66848879,-0.563980297,124.3315112,0.961344421,0,499.4589517,57.48163856,537.0795345,12,12,8% +12/7/2018 21:00,62.07863264,195.5224539,435.5956004,779.7170756,70.48577765,551.644268,480.0001929,71.64407502,68.36037139,3.283703632,107.7406027,0,107.7406027,2.125406261,105.6151965,1.083476535,3.412510582,1.09637062,-1.09637062,0.342663271,0.161814714,1.474481528,47.42439445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71058919,1.539849601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.068256848,45.58613182,66.77884604,47.12598142,480.0001929,0,0.615608158,52.00387654,-0.615608158,127.9961235,0.968779504,0,531.7931948,47.12598142,562.6362072,12,13,6% +12/7/2018 22:00,66.67062706,209.9991952,352.7041977,729.4516669,63.82945029,511.5080824,446.9444923,64.56359009,61.90475686,2.658833225,87.44190964,0,87.44190964,1.924693432,85.51721621,1.163621957,3.665177382,1.776207274,-1.776207274,0.226404356,0.180971621,0.974205039,31.33378285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50520696,1.39443384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.705808234,30.11922392,60.21101519,31.51365776,446.9444923,0,0.612712963,52.21407256,-0.612712963,127.7859274,0.96839572,0,493.0301488,31.51365776,513.6552075,12,14,4% +12/7/2018 23:00,73.6843326,222.6696362,223.198029,612.4045015,51.15574988,391.5432527,340.2474764,51.2957763,49.61321528,1.682561022,55.65948084,0,55.65948084,1.542534604,54.11694624,1.286034211,3.886318296,3.034921381,-3.034921381,0.011151567,0.229194452,0.400096423,12.86847628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.69010966,1.117561069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289868496,12.36966888,47.97997815,13.48722995,340.2474764,0,0.55559271,56.24845114,-0.55559271,123.7515489,0.960006019,0,374.6196033,13.48722995,383.4467256,12,15,2% +12/7/2018 0:00,82.44827856,233.5634858,68.64169938,322.1678726,26.30203496,170.5809534,144.5545717,26.02638169,25.50893157,0.517450124,17.43607812,0,17.43607812,0.793103398,16.64297472,1.438993924,4.076451839,7.234871254,-7.234871254,0,0.383178668,0.19827585,6.377232891,0.414205114,1,0.137349204,0,0.946885694,0.985647657,0.724496596,1,24.73326244,0.574600712,0.059224556,0.312029739,0.845817997,0.570314593,0.961238037,0.922476074,0.135705843,6.130038825,24.86896829,6.704639537,84.67932883,0,0.448693318,63.34012055,-0.448693318,116.6598795,0.938565312,0,104.346049,6.704639537,108.7341014,12,16,4% +12/7/2018 1:00,92.64232143,243.0554432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616913536,4.242117749,-21.50953647,21.50953647,0,#DIV/0!,0,0,1,0.688327982,0,0.046457554,0.961238037,1,0.601213048,0.876716452,0,0,0.115824807,0.172252368,0.724496596,0.448993192,0.981303947,0.942541984,0,0,0,0,0,0,0.295829339,72.79272515,-0.295829339,107.2072748,0.880983634,0,0,0,0,12,17,0% +12/7/2018 2:00,103.5662264,251.6350159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807571644,4.391859541,-4.142504282,4.142504282,0.761436356,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111919337,83.57403121,-0.111919337,96.42596879,0.603249677,0,0,0,0,12,18,0% +12/7/2018 3:00,115.0348578,259.8411221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007737024,4.535083114,-2.109599742,2.109599742,0.890916493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092321641,95.29718354,0.092321641,84.70281646,0,0.508415173,0,0,0,12,19,0% +12/7/2018 4:00,126.8026663,268.3387298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213124027,4.683394346,-1.268716129,1.268716129,0.747116926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302984704,107.6369599,0.302984704,72.36304011,0,0.884975168,0,0,0,12,20,0% +12/7/2018 5:00,138.6136547,278.1915936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419264664,4.855359259,-0.776661394,0.776661394,0.66297061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505725172,120.3795027,0.505725172,59.62049726,0,0.951132072,0,0,0,12,21,0% +12/7/2018 6:00,150.0545113,291.6834774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618945279,5.090837054,-0.430235634,0.430235634,0.603728316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686739393,133.3725545,0.686739393,46.62744548,0,0.977192177,0,0,0,12,22,0% +12/7/2018 7:00,160.0259594,314.9524688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79297988,5.496957568,-0.153876872,0.153876872,0.556468185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833704523,146.4811843,0.833704523,33.51881571,0,0.990026714,0,0,0,12,23,0% +12/8/2018 8:00,164.8665312,359.3007523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.877463796,6.270981132,0.089390134,-0.089390134,0.514867076,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936617314,159.491024,0.936617314,20.50897602,0,0.996616404,0,0,0,12,0,0% +12/8/2018 9:00,160.2524854,44.2043289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796933505,0.771511083,0.323215183,-0.323215183,0.474880638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988474892,171.2928078,0.988474892,8.707192244,0,0.999417026,0,0,0,12,1,0% +12/8/2018 10:00,150.355123,67.89802948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624191944,1.18504417,0.568732604,-0.568732604,0.432894686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985751283,170.316273,0.985751283,9.683726989,0,0.999277266,0,0,0,12,2,0% +12/8/2018 11:00,138.9368437,81.54754983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424905375,1.423273242,0.853589313,-0.853589313,0.38418132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928637275,158.2233777,0.928637275,21.77662226,0,0.996157664,0,0,0,12,3,0% +12/8/2018 12:00,127.1331993,91.46217886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218892916,1.596316162,1.229071251,-1.229071251,0.319970127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821027316,145.1877647,0.821027316,34.81223535,0,0.989100686,0,0,0,12,4,0% +12/8/2018 13:00,115.366139,99.98233731,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013518971,1.74502098,1.826955541,-1.826955541,0.217725892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670254334,132.0866974,0.670254334,47.91330257,0,0.975401452,0,0,0,12,5,0% +12/8/2018 14:00,103.8936033,108.1898215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813285449,1.888268602,3.177465444,-3.177465444,0,#DIV/0!,0,0,0.013052288,1,0.304902665,0,0.923598883,0.962360847,0.724496596,1,0,0,0.002218464,0.312029739,0.993728409,0.718225005,0.961238037,0.922476074,0,0,0,0,0,0,-0.486590452,119.1167272,0.486590452,60.88327284,0,0.947244182,0,0,0,12,6,0% +12/8/2018 15:00,92.9607382,116.7552195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622470957,2.037762998,13.24647537,-13.24647537,0,#DIV/0!,0,0,0.634386266,1,0.075348859,0,0.953914011,0.992675975,0.724496596,1,0,0,0.083381792,0.312029739,0.790900439,0.515397035,0.961238037,0.922476074,0,0,0,0,0,0,-0.282547567,106.4123105,0.282547567,73.58768954,0,0.873038646,0,0,0,12,7,0% +12/8/2018 16:00,82.74660764,126.2183847,64.05350764,308.359837,25.12070278,24.8460833,0,24.8460833,24.3632209,0.482862397,37.87559108,21.5875947,16.28799639,0.757481874,15.53051451,1.444200748,2.202926389,-4.368678476,4.368678476,0.722758291,0.392183094,0.401494193,12.91343338,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.41885463,0.548793039,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.290881176,12.41288335,23.70973581,12.96167639,0,21.5875947,-0.070007803,94.01443539,0.070007803,85.98556461,0,0,23.70973581,12.96167639,32.19289377,12,8,36% +12/8/2018 17:00,73.95978109,137.0685588,218.2068153,606.9812266,50.4905896,130.4768543,79.8638071,50.61304718,48.96811204,1.644935145,54.42924625,0,54.42924625,1.522477567,52.90676869,1.290841694,2.392297651,-1.355208129,1.355208129,0.761907929,0.231388692,1.343911589,43.22481636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.07001188,1.103029815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973659371,41.54933762,48.04367125,42.65236743,79.8638071,0,0.131575416,82.43936096,-0.131575416,97.56063904,0.6699898,0,101.5516074,42.65236743,129.4667288,12,9,27% +12/8/2018 18:00,66.90617282,149.682784,348.5061956,726.975828,63.35863887,291.0639724,226.9886434,64.07532906,61.44814214,2.627186912,86.40985872,0,86.40985872,1.910496731,84.49936199,1.167733006,2.612457414,-0.420014397,0.420014397,0.601980382,0.18180061,1.771618775,56.9813497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.06629152,1.384148378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283531772,54.77264072,60.34982329,56.1567891,226.9886434,0,0.312236851,71.80591465,-0.312236851,108.1940853,0.889865154,0,262.3391074,56.1567891,299.0926028,12,10,14% +12/8/2018 19:00,62.25654164,164.100776,432.5482803,778.5262334,70.13382769,428.6903152,357.4105495,71.27976567,68.01903402,3.260731646,106.9911321,0,106.9911321,2.114793671,104.8763384,1.086581633,2.864098847,0.135957636,-0.135957636,0.506903565,0.162141039,1.9135758,61.54717559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.38248273,1.532160816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.386379153,59.16148624,66.76886188,60.69364706,357.4105495,0,0.459086071,62.67185097,-0.459086071,117.328149,0.941087961,0,403.1236272,60.69364706,442.8464053,12,11,10% +12/8/2018 20:00,60.59120506,179.7321461,462.0030751,793.5605933,72.33508133,519.6321402,445.9954541,73.63668607,70.15391174,3.482774331,114.199164,0,114.199164,2.18116959,112.0179944,1.057516026,3.13691772,0.598970049,-0.598970049,0.427723779,0.156568398,1.80172327,57.94961374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4346084,1.580249943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305342376,55.70337295,68.73995078,57.28362289,445.9954541,0,0.562018147,55.80451873,-0.562018147,124.1954813,0.961034901,0,497.3571479,57.28362289,534.8481335,12,12,8% +12/8/2018 21:00,62.1570851,195.3837434,434.3181186,779.4680917,70.26827425,550.0182254,478.5947254,71.42349995,68.14942651,3.274073435,107.4243039,0,107.4243039,2.118847731,105.3054562,1.084845788,3.410089627,1.096274709,-1.096274709,0.342679673,0.161789875,1.470148835,47.28504013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50782096,1.535097968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065117826,45.45217915,66.57293878,46.98727712,478.5947254,0,0.61400169,52.12058294,-0.61400169,127.8794171,0.968566999,0,530.1239959,46.98727712,560.876229,12,13,6% +12/8/2018 22:00,66.7213341,209.8508153,351.8891197,729.3473974,63.64848179,510.3903393,446.0084053,64.38193405,61.72924523,2.652688823,87.23882767,0,87.23882767,1.919236564,85.31959111,1.164506961,3.662587665,1.776663754,-1.776663754,0.226326294,0.180876527,0.971588946,31.24964032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.3364985,1.390480357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703912884,30.03834292,60.04041139,31.42882327,446.0084053,0,0.6115171,52.30071981,-0.6115171,127.6992802,0.968236138,0,491.8818671,31.42882327,512.4514033,12,14,4% +12/8/2018 23:00,73.70998534,222.5206871,222.8234646,612.4826122,51.02243932,390.9900076,339.8263457,51.16366192,49.48392452,1.679737397,55.56464354,0,55.56464354,1.538514798,54.02612874,1.286481936,3.883718643,3.035874358,-3.035874358,0.010988598,0.228981447,0.398860129,12.82871281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.56583046,1.114648734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288972805,12.33144671,47.85480327,13.44609545,339.8263457,0,0.554834274,56.30069923,-0.554834274,123.6993008,0.959883001,0,374.0483356,13.44609545,382.8485361,12,15,2% +12/8/2018 0:00,82.45334479,233.4172206,68.62499914,322.6119428,26.25525341,170.6300113,144.6491265,25.98088487,25.46356064,0.517324231,17.43061832,0,17.43061832,0.791692762,16.63892555,1.439082346,4.07389903,7.234308996,-7.234308996,0,0.382590218,0.19792319,6.365890161,0.414172117,1,0.137359745,0,0.946884424,0.985646387,0.724496596,1,24.68927137,0.573578711,0.059220616,0.312029739,0.845827334,0.57032393,0.961238037,0.922476074,0.135464521,6.119135761,24.8247359,6.692714472,84.73949147,0,0.44836879,63.36092471,-0.44836879,116.6390753,0.938484656,0,104.3514484,6.692714472,108.7316961,12,16,4% +12/8/2018 1:00,92.63144852,242.9107436,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616723768,4.239592265,-21.591825,21.591825,0,#DIV/0!,0,0,1,0.689688976,0,0.046280753,0.961238037,1,0.601650006,0.87715341,0,0,0.115824807,0.172746278,0.724496596,0.448993192,0.981240513,0.94247855,0,0,0,0,0,0,0.29590503,72.78818514,-0.29590503,107.2118149,0.881026867,0,0,0,0,12,17,0% +12/8/2018 2:00,103.543535,251.4879256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807175604,4.389292331,-4.150001346,4.150001346,0.760154283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112336121,83.54999967,-0.112336121,96.45000033,0.60490719,0,0,0,0,12,18,0% +12/8/2018 3:00,115.0042425,259.685154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007202686,4.532360956,-2.11353286,2.11353286,0.891589095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091647406,95.25838827,0.091647406,84.74161173,0,0.504430824,0,0,0,12,19,0% +12/8/2018 4:00,126.7682916,268.1635619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212524076,4.680337089,-1.271585627,1.271585627,0.747607639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302154226,107.587037,0.302154226,72.41296304,0,0.884521593,0,0,0,12,20,0% +12/8/2018 5:00,138.5812259,277.9790329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418698674,4.851649376,-0.779088858,0.779088858,0.663385731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504850268,120.3214134,0.504850268,59.67858665,0,0.950960734,0,0,0,12,21,0% +12/8/2018 6:00,150.0346443,291.3976495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618598534,5.085848416,-0.432487934,0.432487934,0.604113482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685934813,133.3091693,0.685934813,46.69083071,0,0.977106776,0,0,0,12,22,0% +12/8/2018 7:00,160.0442561,314.534363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793299218,5.489660244,-0.156120165,0.156120165,0.55685181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833080062,146.4164473,0.833080062,33.58355274,0,0.989981759,0,0,0,12,23,0% +12/9/2018 8:00,164.9661905,358.9026125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.879203178,6.264032282,0.087009892,-0.087009892,0.515274122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936270266,159.4343438,0.936270266,20.56565625,0,0.996596617,0,0,0,12,0,0% +12/9/2018 9:00,160.3943783,44.13897608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799410004,0.770370461,0.320523338,-0.320523338,0.475340971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988483356,171.2960121,0.988483356,8.703987925,0,0.999417459,0,0,0,12,1,0% +12/9/2018 10:00,150.4974867,67.93324684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.626676658,1.185658829,0.565462608,-0.565462608,0.433453889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986168794,170.4595359,0.986168794,9.540464068,0,0.99929874,0,0,0,12,2,0% +12/9/2018 11:00,139.0768413,81.59384241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427348794,1.424081199,0.849246705,-0.849246705,0.38492395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929489105,158.3553154,0.929489105,21.64468461,0,0.996207008,0,0,0,12,3,0% +12/9/2018 12:00,127.2725541,91.50293523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221325117,1.597027495,1.222537409,-1.222537409,0.32108748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822308732,145.316579,0.822308732,34.68342099,0,0.989195587,0,0,0,12,4,0% +12/9/2018 13:00,115.5061268,100.0142259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015962219,1.74557754,1.814900212,-1.814900212,0.219787474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671930903,132.2162683,0.671930903,47.78373172,0,0.975587587,0,0,0,12,5,0% +12/9/2018 14:00,104.0348021,108.2114667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815749834,1.888646382,3.143268512,-3.143268512,0,#DIV/0!,0,0,0.007322864,1,0.308014967,0,0.923109842,0.961871805,0.724496596,1,0,0,0.001247989,0.312029739,0.996467219,0.720963815,0.961238037,0.922476074,0,0,0,0,0,0,-0.488600395,119.248631,0.488600395,60.75136899,0,0.947666886,0,0,0,12,6,0% +12/9/2018 15:00,93.10301344,116.7646509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624954128,2.037927608,12.63579501,-12.63579501,0,#DIV/0!,0,0,0.619872246,1,0.078975647,0,0.953527492,0.992289456,0.724496596,1,0,0,0.081911055,0.312029739,0.794110774,0.51860737,0.961238037,0.922476074,0,0,0,0,0,0,-0.284805988,106.5472519,0.284805988,73.45274808,0,0.874441894,0,0,0,12,7,0% +12/9/2018 16:00,82.88682566,126.2121358,61.95522222,302.1069268,24.54542847,24.27233787,0,24.27233787,23.80529323,0.467044635,37.62790938,21.86601322,15.76189615,0.740135231,15.02176092,1.446648014,2.202817325,-4.456440214,4.456440214,0.70775015,0.396180138,0.384627013,12.37092689,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88255334,0.536225456,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.278660962,11.89140548,23.1612143,12.42763093,0,21.86601322,-0.072378391,94.15060563,0.072378391,85.84939437,0,0,23.1612143,12.42763093,31.29485019,12,8,35% +12/9/2018 17:00,74.09909467,137.0413055,215.7323103,604.5051157,50.11337475,128.297684,78.0691311,50.22855288,48.6022716,1.62628128,53.81789943,0,53.81789943,1.511103147,52.30679628,1.293273175,2.391821992,-1.369260199,1.369260199,0.764310974,0.232294248,1.332022237,42.84241394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.71835214,1.094789086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965045576,41.18175787,47.68339772,42.27654696,78.0691311,0,0.129145526,82.57978167,-0.129145526,97.42021833,0.662839859,0,99.43072958,42.27654696,127.099884,12,9,28% +12/9/2018 18:00,67.03876656,149.6280077,346.1897081,725.8015489,63.04855655,288.6713256,224.9141914,63.7571342,61.14740994,2.609724251,85.83884937,0,85.83884937,1.901146604,83.93770277,1.170047203,2.611501388,-0.424942885,0.424942885,0.602823203,0.182121406,1.761975161,56.67117793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.77721629,1.377374243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.276545006,54.47449182,60.0537613,55.85186607,224.9141914,0,0.309883868,71.94776802,-0.309883868,108.052232,0.888649232,0,259.9235848,55.85186607,296.4775141,12,10,14% +12/9/2018 19:00,62.3755045,164.0136759,430.5469993,777.885125,69.8612159,426.4334489,355.4331613,71.00028762,67.75464248,3.245645144,106.4976781,0,106.4976781,2.10657342,104.3911047,1.088657926,2.862578663,0.133747982,-0.133747982,0.507281438,0.162261532,1.905942491,61.30166216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.12833952,1.526205272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.380848847,58.92548939,66.50918837,60.45169466,355.4331613,0,0.45692243,62.81130489,-0.45692243,117.1886951,0.940572236,0,400.8197515,60.45169466,440.3841766,12,11,10% +12/9/2018 20:00,60.68890182,179.6144547,460.4049694,793.1966576,72.09446524,517.6935247,444.3022465,73.39127825,69.92055112,3.470727135,113.8044293,0,113.8044293,2.173914127,111.6305152,1.059221156,3.134863619,0.597919754,-0.597919754,0.42790339,0.156589242,1.796058131,57.76740341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21029329,1.574993385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301238002,55.52822545,68.51153129,57.10321883,444.3022465,0,0.56014135,55.93442641,-0.56014135,124.0655736,0.960736817,0,495.3690572,57.10321883,532.7419719,12,12,8% +12/9/2018 21:00,62.2281365,195.245381,433.1714288,779.2875098,70.06070781,548.518738,477.3051898,71.21354818,67.94811898,3.265429203,107.1400168,0,107.1400168,2.112588837,105.027428,1.086085869,3.407674748,1.09583244,-1.09583244,0.342755305,0.161738986,1.466365135,47.16334334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.31431649,1.530563421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062376549,45.33519956,66.37669304,46.86576299,477.3051898,0,0.612489208,52.23029263,-0.612489208,127.7697074,0.968365909,0,528.5827669,46.86576299,559.2554714,12,13,6% +12/9/2018 22:00,66.76483971,209.7044156,351.2055058,729.3345076,63.47875797,509.4135451,445.2013704,64.21217465,61.5646392,2.647535453,87.06795976,0,87.06795976,1.914118764,85.153841,1.165266277,3.660032508,1.776543151,-1.776543151,0.226346918,0.180745338,0.969477461,31.18172769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.17827293,1.386772529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70238312,29.97306271,59.88065605,31.35983524,445.2013704,0,0.610421371,52.38002289,-0.610421371,127.6199771,0.968089369,0,490.8753696,31.35983524,511.3997546,12,14,4% +12/9/2018 23:00,73.72883085,222.3748916,222.5747133,612.7094358,50.90351299,390.5972253,339.5507789,51.04644646,49.36858426,1.677862205,55.50074484,0,55.50074484,1.534928731,53.96581611,1.286810852,3.881174033,3.035554678,-3.035554678,0.011043267,0.228703037,0.398023606,12.80180735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.45496102,1.11205064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288366747,12.30558417,47.74332776,13.41763481,339.5507789,0,0.554179125,56.34580647,-0.554179125,123.6541935,0.959776464,0,373.6361738,13.41763481,382.4177474,12,15,2% +12/9/2018 0:00,82.45210252,233.274936,68.70748864,323.3603323,26.23250404,170.8723247,144.9128813,25.95944332,25.44149725,0.517946072,17.44993287,0,17.44993287,0.791006784,16.65892609,1.439060664,4.071415696,7.227733262,-7.227733262,0,0.38179978,0.197751696,6.360374313,0.413785935,1,0.137483146,0,0.946869552,0.985631515,0.724496596,1,24.66788136,0.573081723,0.059174494,0.312029739,0.845936633,0.570433229,0.961238037,0.922476074,0.13534772,6.113833718,24.80322908,6.686915441,84.9499692,0,0.448146748,63.37515674,-0.448146748,116.6248433,0.938429403,0,104.522778,6.686915441,108.8992304,12,16,4% +12/9/2018 1:00,92.61458761,242.7706791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616429489,4.237147678,-21.72458962,21.72458962,0,#DIV/0!,0,0,1,0.691859924,0,0.04599832,0.961238037,1,0.602348544,0.877851949,0,0,0.115824807,0.173535884,0.724496596,0.448993192,0.981138989,0.942377026,0,0,0,0,0,0,0.296081749,72.77758486,-0.296081749,107.2224151,0.88112772,0,0,0,0,12,17,0% +12/9/2018 2:00,103.5151839,251.3461099,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806680784,4.386817181,-4.159294133,4.159294133,0.758565123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112848131,83.52047598,-0.112848131,96.47952402,0.606926643,0,0,0,0,12,18,0% +12/9/2018 3:00,114.9681822,259.5352248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006573314,4.529744198,-2.117948213,2.117948213,0.892344165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090886264,95.21459525,0.090886264,84.78540475,0,0.499861863,0,0,0,12,19,0% +12/9/2018 4:00,126.7285239,267.9954694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211829998,4.677403322,-1.274648164,1.274648164,0.748131363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301247093,107.5325218,0.301247093,72.46747821,0,0.884023294,0,0,0,12,20,0% +12/9/2018 5:00,138.5431956,277.7750183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418034919,4.84808865,-0.781602601,0.781602601,0.663815606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50391019,120.259035,0.50391019,59.74096496,0,0.95077597,0,0,0,12,21,0% +12/9/2018 6:00,150.0084917,291.1221775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618142086,5.081040522,-0.434774239,0.434774239,0.604504463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685076972,133.2416608,0.685076972,46.75833915,0,0.9770155,0,0,0,12,22,0% +12/9/2018 7:00,160.0547962,314.1253787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793483177,5.482522123,-0.158365319,0.158365319,0.557235754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832413864,146.3475046,0.832413864,33.6524954,0,0.989933725,0,0,0,12,23,0% +12/10/2018 8:00,165.0577071,358.4940502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880800444,6.256901524,0.08465281,-0.08465281,0.515677206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935891818,159.3727052,0.935891818,20.62729476,0,0.996575022,0,0,0,12,0,0% +12/10/2018 9:00,160.5312017,44.05579891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801798021,0.768918746,0.317879702,-0.317879702,0.475793059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988468861,171.2905257,0.988468861,8.709474283,0,0.999416717,0,0,0,12,1,0% +12/10/2018 10:00,150.6365418,67.95489047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629103628,1.186036582,0.562272702,-0.562272702,0.433999395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986569302,170.598997,0.986569302,9.401002989,0,0.999319323,0,0,0,12,2,0% +12/10/2018 11:00,139.2141704,81.62954703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429745638,1.424704363,0.845034414,-0.845034414,0.385644294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930327,158.4858457,0.930327,21.51415429,0,0.996255456,0,0,0,12,3,0% +12/10/2018 12:00,127.4093599,91.53486583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223712828,1.597584789,1.216231905,-1.216231905,0.322165784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823576175,145.4444016,0.823576175,34.55559835,0,0.989289162,0,0,0,12,4,0% +12/10/2018 13:00,115.6433945,100.038351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018357992,1.745998603,1.803329229,-1.803329229,0.221766229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67359036,132.344779,0.67359036,47.65522102,0,0.975770909,0,0,0,12,5,0% +12/10/2018 14:00,104.1729066,108.2260119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818160211,1.888900244,3.110751089,-3.110751089,0,#DIV/0!,0,0,0.001812785,1,0.311031997,0,0.922633883,0.961395846,0.724496596,1,0,0,0.000309741,0.312029739,0.99912206,0.723618656,0.961238037,0.922476074,0,0,0,0,0,0,-0.490587203,119.379184,0.490587203,60.62081596,0,0.94808132,0,0,0,12,6,0% +12/10/2018 15:00,93.24165002,116.7674345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627373793,2.037976191,12.09368956,-12.09368956,0,#DIV/0!,0,0,0.605987264,1,0.082500068,0,0.953148928,0.991910891,0.724496596,1,0,0,0.08048911,0.312029739,0.797231055,0.521727651,0.961238037,0.922476074,0,0,0,0,0,0,-0.287032787,106.6803964,0.287032787,73.31960358,0,0.875803872,0,0,0,12,7,0% +12/10/2018 16:00,83.02270675,126.1996381,59.93970071,295.9913918,23.98385621,23.71250523,0,23.71250523,23.26065445,0.451850783,37.36889889,22.11262274,15.25627615,0.723201756,14.53307439,1.449019587,2.202599199,-4.545599104,4.545599104,0.692503082,0.400133066,0.368503637,11.8523437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.35902582,0.52395721,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.266979631,11.39292359,22.62600545,11.9168808,0,22.11262274,-0.074706979,94.28438621,0.074706979,85.71561379,0,0,22.62600545,11.9168808,30.4253656,12,8,34% +12/10/2018 17:00,74.23325971,137.0083337,213.3533857,602.1135643,49.74609944,126.1837438,76.32932486,49.85441894,48.246071,1.608347942,53.23002693,0,53.23002693,1.500028442,51.72999849,1.295614796,2.391246526,-1.383406045,1.383406045,0.766730056,0.233162925,1.320646596,42.47653423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.37595857,1.0867655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956803963,40.83006037,47.33276253,41.91682587,76.32932486,0,0.126768984,82.71707612,-0.126768984,97.28292388,0.655581757,0,97.37287542,41.91682587,124.8065996,12,9,28% +12/10/2018 18:00,67.16533386,149.5684001,343.9819519,724.6940148,62.7475701,286.3616882,222.9131076,63.4485806,60.85549934,2.593081252,85.29447748,0,85.29447748,1.892070752,83.40240673,1.172256219,2.610461038,-0.430000017,0.430000017,0.603688023,0.182415297,1.75287467,56.37847487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.49662072,1.370798819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269951732,54.1931345,59.76657245,55.56393332,222.9131076,0,0.307596176,72.08557556,-0.307596176,107.9144244,0.887449214,0,257.5906347,55.56393332,293.9561177,12,10,14% +12/10/2018 19:00,62.48765768,163.9231693,428.6651002,777.3037992,69.59763418,424.2758674,353.5454001,70.73046732,67.49900873,3.231458594,106.0334419,0,106.0334419,2.098625459,103.9348165,1.090615368,2.860999024,0.131362059,-0.131362059,0.507689455,0.162358993,1.898871312,61.07422872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.88261464,1.520447001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375725802,58.70687172,66.25834044,60.22731872,353.5454001,0,0.454835549,62.94564635,-0.454835549,117.0543537,0.940070158,0,398.6158206,60.22731872,438.0333962,12,11,10% +12/10/2018 20:00,60.77928597,179.4952495,458.934013,792.893219,71.86319684,515.8690327,442.713138,73.15589475,69.6962563,3.459638444,113.4408053,0,113.4408053,2.166940532,111.2738648,1.060798657,3.132783095,0.596630601,-0.596630601,0.428123848,0.15658721,1.790959126,57.60340187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99469259,1.569941039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29754379,55.37058093,68.29223638,56.94052196,442.713138,0,0.558351525,56.0581288,-0.558351525,123.9418712,0.960450679,0,493.4963703,56.94052196,530.7628031,12,12,8% +12/10/2018 21:00,62.29176013,195.1074723,432.156241,779.1762805,69.86313535,547.1470478,476.1327675,71.01428034,67.75650405,3.257776288,106.8879153,0,106.8879153,2.106631298,104.781284,1.087196311,3.405267787,1.095044171,-1.095044171,0.342890107,0.161661753,1.463131328,47.05933299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.13012894,1.526247204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.060033667,45.23522086,66.19016261,46.76146807,476.1327675,0,0.611071948,52.3329478,-0.611071948,127.6670522,0.968176575,0,527.1707545,46.76146807,557.7752001,12,13,6% +12/10/2018 22:00,66.80113845,209.560103,350.6535649,729.4136365,63.32028534,508.578366,444.5240462,64.0543198,61.41094511,2.643374689,86.92935677,0,86.92935677,1.90934023,85.02001654,1.16589981,3.657513778,1.775846033,-1.775846033,0.226466132,0.180577903,0.967869675,31.13001579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.03053632,1.383310497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701218285,29.92335526,59.7317546,31.30666576,444.5240462,0,0.609426564,52.45194866,-0.609426564,127.5480513,0.96795566,0,490.0113212,31.30666576,510.5009078,12,14,4% +12/10/2018 23:00,73.74088444,222.232359,222.4515238,613.0850542,50.79889674,390.3648428,339.4207867,50.94405612,49.26712257,1.676933551,55.46772157,0,55.46772157,1.531774165,53.93594741,1.287021227,3.87868637,3.033966223,-3.033966223,0.011314908,0.228359401,0.397584919,12.7876977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.35743218,1.109765168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288048921,12.29202143,47.6454811,13.4017866,339.4207867,0,0.553627567,56.38376308,-0.553627567,123.6162369,0.959686578,0,373.3830544,13.4017866,382.1542557,12,15,2% +12/10/2018 0:00,82.44458603,233.1367427,68.88877938,324.4116925,26.23350375,171.3069857,145.3452061,25.96177953,25.44246682,0.519312718,17.49391906,0,17.49391906,0.791036929,16.70288213,1.438929477,4.069003768,7.215204732,-7.215204732,0,0.380809531,0.197759232,6.360616704,0.413048744,1,0.137718868,0,0.946841134,0.985603098,0.724496596,1,24.66882545,0.573103562,0.05908641,0.312029739,0.846145416,0.570642012,0.961238037,0.922476074,0.135354002,6.114066714,24.80417945,6.687170276,85.31055128,0,0.448027027,63.38282965,-0.448027027,116.6171703,0.93839959,0,104.8595658,6.687170276,109.236185,12,16,4% +12/10/2018 1:00,92.59179152,242.6353625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616031622,4.234785957,-21.9093058,21.9093058,0,#DIV/0!,0,0,1,0.694830332,0,0.04561105,0.961238037,1,0.603307398,0.878810802,0,0,0.115824807,0.174619783,0.724496596,0.448993192,0.980999399,0.942237436,0,0,0,0,0,0,0.296358878,72.76096048,-0.296358878,107.2390395,0.881285634,0,0,0,0,12,17,0% +12/10/2018 2:00,103.4812423,251.2096863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806088392,4.38443614,-4.170385717,4.170385717,0.75666835,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113454361,83.485517,-0.113454361,96.514483,0.609294156,0,0,0,0,12,18,0% +12/10/2018 3:00,114.9267611,259.3914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005850379,4.527235066,-2.12284335,2.12284335,0.893181283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090039509,95.16588001,0.090039509,84.83411999,0,0.494688219,0,0,0,12,19,0% +12/10/2018 4:00,126.6834616,267.8346016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211043512,4.674595649,-1.277901317,1.277901317,0.748687685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300264782,107.4735072,0.300264782,72.52649279,0,0.883480305,0,0,0,12,20,0% +12/10/2018 5:00,138.499676,277.5797496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417275359,4.844680567,-0.784200453,0.784200453,0.664259865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502906473,120.1924777,0.502906473,59.80752225,0,0.950577935,0,0,0,12,21,0% +12/10/2018 6:00,149.976176,290.8574016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617578071,5.076419311,-0.437092554,0.437092554,0.604900919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684167339,133.1701582,0.684167339,46.82984179,0,0.976918464,0,0,0,12,22,0% +12/10/2018 7:00,160.0576741,313.7263143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793533406,5.475557134,-0.160610425,0.160610425,0.55761969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831707209,146.2745111,0.831707209,33.7254889,0,0.98988269,0,0,0,12,23,0% +12/11/2018 8:00,165.140992,358.0759512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.882254041,6.249604321,0.082320786,-0.082320786,0.516076006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935482954,159.3063101,0.935482954,20.69368987,0,0.996551672,0,0,0,12,0,0% +12/11/2018 9:00,160.6628252,43.9546745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804095285,0.767153792,0.315286228,-0.315286228,0.476236569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988432004,171.2765906,0.988432004,8.723409383,0,0.999414831,0,0,0,12,1,0% +12/11/2018 10:00,150.7721766,67.96283378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631470901,1.186175218,0.559164945,-0.559164945,0.434530852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986952959,170.7345405,0.986952959,9.265459463,0,0.999339024,0,0,0,12,2,0% +12/11/2018 11:00,139.3487203,81.65459484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432093978,1.425141529,0.840954582,-0.840954582,0.386341986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93115063,158.6148934,0.93115063,21.38510656,0,0.996302995,0,0,0,12,3,0% +12/11/2018 12:00,127.5435032,91.55793749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22605407,1.597987466,1.210156564,-1.210156564,0.323204729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82482884,145.5711422,0.82482884,34.4288578,0,0.989381363,0,0,0,12,4,0% +12/11/2018 13:00,115.7778257,100.0547038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020704259,1.746284014,1.792241077,-1.792241077,0.223662415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675231461,132.4721271,0.675231461,47.52787291,0,0.975951318,0,0,0,12,5,0% +12/11/2018 14:00,104.3077988,108.2334686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820514525,1.889030388,3.07987014,-3.07987014,0.003464876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49254926,119.5082752,0.49254926,60.49172483,0,0.948487311,0,0,0,12,6,0% +12/11/2018 15:00,93.37653139,116.7636011,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629727917,2.037909285,11.61035849,-11.61035849,0,#DIV/0!,0,0,0.592723525,1,0.085917946,0,0.952779029,0.991540992,0.724496596,1,0,0,0.079116924,0.312029739,0.800257469,0.524754065,0.961238037,0.922476074,0,0,0,0,0,0,-0.289226059,106.811627,0.289226059,73.18837299,0,0.877124845,0,0,0,12,7,0% +12/11/2018 16:00,83.15414405,126.1809426,58.00755397,290.0259768,23.43685264,23.16743051,0,23.16743051,22.73014506,0.437285444,37.10086634,22.32955571,14.77131063,0.70670758,14.06460305,1.4513136,2.202272903,-4.635991413,4.635991413,0.677045087,0.404031045,0.353120633,11.3575734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.84908002,0.512007236,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.255834696,10.91733155,22.10491471,11.42933879,0,22.32955571,-0.076991571,94.41566191,0.076991571,85.58433809,0,0,22.10491471,11.42933879,29.58518837,12,8,34% +12/11/2018 17:00,74.36217517,136.9697153,211.0718806,599.8121707,49.38914452,124.1363943,74.6453657,49.49102858,47.89987959,1.591148993,52.6660861,0,52.6660861,1.489264934,51.17682117,1.297864796,2.390572508,-1.397621189,1.397621189,0.769160989,0.233992062,1.309794845,42.1275046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.04318622,1.078967375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.948941906,40.49455982,46.99212813,41.5735272,74.6453657,0,0.124447901,82.85112611,-0.124447901,97.14887389,0.648225446,0,95.37915357,41.5735272,122.5881957,12,9,29% +12/11/2018 18:00,67.28578823,149.5040511,341.8847446,723.6561012,62.45589814,284.1369704,220.9870764,63.14989399,60.57262237,2.577271618,84.77719031,0,84.77719031,1.883275767,82.89391454,1.174358544,2.609337937,-0.43517862,0.43517862,0.604573617,0.182681149,1.744324654,56.10347695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.22470862,1.364426882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263757274,53.92879605,59.48846589,55.29322293,220.9870764,0,0.305375821,72.21922435,-0.305375821,107.7807756,0.886267325,0,255.342091,55.29322293,291.5303996,12,10,14% +12/11/2018 19:00,62.59293422,163.829357,426.9041105,776.7840213,69.34322644,422.2194543,351.7489985,70.47045583,67.25227232,3.21818351,105.5987982,0,105.5987982,2.090954127,103.5078441,1.092452791,2.859361692,0.128802721,-0.128802721,0.508127127,0.162432792,1.892367245,60.86503556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64544222,1.514889147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371013627,58.50578729,66.01645584,60.02067644,351.7489985,0,0.452827284,63.07477524,-0.452827284,116.9252248,0.939582625,0,396.5137032,60.02067644,435.7960355,12,11,10% +12/11/2018 20:00,60.86231207,179.3746344,457.5913201,792.6514803,71.64136896,514.1602605,441.2296265,72.93063402,69.48111736,3.449516658,113.108565,0,113.108565,2.160251603,110.9483134,1.062247736,3.130677965,0.595103969,-0.595103969,0.428384917,0.156561905,1.786429008,57.4576977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.78789285,1.565094932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294261735,55.23052454,68.08215458,56.79561947,441.2296265,0,0.556650227,56.17554629,-0.556650227,123.8244537,0.960176988,0,491.7406884,56.79561947,528.9122854,12,12,8% +12/11/2018 21:00,62.34793209,194.9701219,431.2731931,779.1352398,69.67560357,545.9042975,475.0785509,70.82574654,67.57462704,3.2511195,106.6681553,0,106.6681553,2.100976523,104.5671788,1.088176697,3.40287057,1.093910902,-1.093910902,0.343083908,0.161557928,1.460448105,46.97303131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95530184,1.522150339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05808968,45.1522644,66.01339152,46.67441474,475.0785509,0,0.609751076,52.42849368,-0.609751076,127.5715063,0.967999325,0,525.889108,46.67441474,556.4365789,12,13,6% +12/11/2018 22:00,66.83022756,209.4179837,350.2334436,729.5852542,63.1730575,507.8853569,443.9769926,63.90836437,61.26815673,2.640207637,86.82305403,0,86.82305403,1.904900767,84.91815327,1.166407511,3.655033328,1.774574202,-1.774574202,0.226683628,0.180374144,0.966764584,31.09447225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.8932827,1.380094121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70041765,29.88918946,59.59370035,31.26928358,443.9769926,0,0.608533396,52.51646665,-0.608533396,127.4835333,0.967835241,0,489.2902798,31.26928358,509.7554006,12,14,4% +12/11/2018 23:00,73.74616387,222.0931971,222.4536053,613.6092389,50.70849561,390.2926591,339.4362624,50.85639662,49.17944738,1.676949241,55.46550032,0,55.46550032,1.529048237,53.93645208,1.28711337,3.876257535,3.031116449,-3.031116449,0.011802248,0.227950882,0.397542279,12.78632624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.27315545,1.107790243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288018028,12.29070313,47.56117348,13.39849337,339.4362624,0,0.553179843,56.41456182,-0.553179843,123.5854382,0.959613482,0,373.2887871,13.39849337,382.057833,12,15,2% +12/11/2018 0:00,82.43083161,233.0027496,69.16854932,325.7641043,26.25792907,171.9329624,145.945385,25.98757737,25.46615562,0.521421742,17.56248903,0,17.56248903,0.791773443,16.77071559,1.438689417,4.066665146,7.196815073,-7.196815073,0,0.379622376,0.197943361,6.366538906,0.411963314,1,0.138066325,0,0.946799223,0.985561187,0.724496596,1,24.69179807,0.573637164,0.058956621,0.312029739,0.846453163,0.570949759,0.961238037,0.922476074,0.13548175,6.11975936,24.82727983,6.693396524,85.82124051,0,0.448009413,63.38395852,-0.448009413,116.6160415,0.938395202,0,105.3615201,6.693396524,109.7422143,12,16,4% +12/11/2018 1:00,92.56311518,242.5049038,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615531126,4.232509024,-22.14818431,22.14818431,0,#DIV/0!,0,0,1,0.698587849,0,0.045119785,0.961238037,1,0.604525446,0.88002885,0,0,0.115824807,0.175996751,0.724496596,0.448993192,0.980821689,0.942059726,0,0,0,0,0,0,0.296735747,72.73835042,-0.296735747,107.2616496,0.88149991,0,0,0,0,12,17,0% +12/11/2018 2:00,103.4417811,251.0787683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805399665,4.382151189,-4.183282797,4.183282797,0.75446282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114153775,83.44518152,-0.114153775,96.55481848,0.611994335,0,0,0,0,12,18,0% +12/11/2018 3:00,114.8800648,259.253988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005035375,4.52483569,-2.128216184,2.128216184,0.894100092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08910846,95.11231954,0.08910846,84.88768046,0,0.488886051,0,0,0,12,19,0% +12/11/2018 4:00,126.6332044,267.6811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210166358,4.671916541,-1.281342722,1.281342722,0.7492762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299208782,107.4100869,0.299208782,72.58991306,0,0.882892605,0,0,0,12,20,0% +12/11/2018 5:00,138.4507805,277.3934142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416421973,4.841428401,-0.786880253,0.786880253,0.664718138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501840655,120.1218516,0.501840655,59.87814836,0,0.950366781,0,0,0,12,21,0% +12/11/2018 6:00,149.9378212,290.6036404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616908654,5.071990344,-0.439440889,0.439440889,0.605302508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683207373,133.0947898,0.683207373,46.90521024,0,0.976815778,0,0,0,12,22,0% +12/11/2018 7:00,160.0529906,313.3379354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793451664,5.468778644,-0.162853586,0.162853586,0.558003293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830961358,146.1976197,0.830961358,33.80238025,0,0.98982873,0,0,0,12,23,0% +12/12/2018 8:00,165.2159641,357.6492597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88356255,6.24215715,0.080015696,-0.080015696,0.5164702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935044633,159.2353569,0.935044633,20.76464307,0,0.996526617,0,0,0,12,0,0% +12/12/2018 9:00,160.7891164,43.83551245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806299483,0.765074022,0.312744835,-0.312744835,0.476671173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988373354,171.254462,0.988373354,8.745538022,0,0.999411829,0,0,0,12,1,0% +12/12/2018 10:00,150.9042771,67.95696168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63377649,1.186072731,0.556141342,-0.556141342,0.435047919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987319889,170.8660395,0.987319889,9.133960523,0,0.999357852,0,0,0,12,2,0% +12/12/2018 11:00,139.4803796,81.66892367,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434391865,1.425391615,0.837009272,-0.837009272,0.387016674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931959649,158.7423784,0.931959649,21.25762162,0,0.996349609,0,0,0,12,3,0% +12/12/2018 12:00,127.6748703,91.57212191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228346859,1.59823503,1.204313102,-1.204313102,0.32420402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826065912,145.6967077,0.826065912,34.30329233,0,0.989472142,0,0,0,12,4,0% +12/12/2018 13:00,115.9093047,100.0632795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022999,1.746433688,1.781634184,-1.781634184,0.2254763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676852959,132.598209,0.676852959,47.40179104,0,0.976128712,0,0,0,12,5,0% +12/12/2018 14:00,104.4393626,108.2338514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822810747,1.889037069,3.05058483,-3.05058483,0.008472959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494484951,119.6357932,0.494484951,60.36420684,0,0.948884688,0,0,0,12,6,0% +12/12/2018 15:00,93.50754315,116.7531841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632014503,2.037727474,11.17783054,-11.17783054,0,#DIV/0!,0,0,0.580073287,1,0.089225263,0,0.952418496,0.991180459,0.724496596,1,0,0,0.077795402,0.312029739,0.803186361,0.527682957,0.961238037,0.922476074,0,0,0,0,0,0,-0.291383921,106.9408275,0.291383921,73.05917245,0,0.878405082,0,0,0,12,7,0% +12/12/2018 16:00,83.28103389,126.1561026,56.15925084,284.2232986,22.90526956,22.63794332,0,22.63794332,22.21459117,0.423352155,36.82621007,22.51907113,14.30713894,0.690678389,13.61646056,1.453528246,2.201839361,-4.7274316,4.7274316,0.661407894,0.407862805,0.338473019,10.8864558,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.35351,0.500394141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.24522255,10.4644754,21.59873255,10.96486954,0,22.51907113,-0.079230208,94.54431946,0.079230208,85.45568054,0,0,21.59873255,10.96486954,28.77502037,12,8,33% +12/12/2018 17:00,74.48574329,136.9255232,208.8895619,597.606504,49.04288299,122.1569158,73.01815894,49.13875687,47.56405911,1.574697753,52.12651658,0,52.12651658,1.478823871,50.64769271,1.300021466,2.389801209,-1.411879984,1.411879984,0.771599387,0.234779003,1.29947689,41.79564371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.72038281,1.07140286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.941466583,40.17556251,46.66184939,41.24696537,73.01815894,0,0.122184344,82.98181588,-0.122184344,97.01818412,0.640782271,0,93.45059107,41.24696537,120.445905,12,9,29% +12/12/2018 18:00,67.40004664,149.4350506,339.8998287,722.6906114,62.17375015,281.9990055,219.1377148,62.86129067,60.29898219,2.562308483,84.28741665,0,84.28741665,1.874767964,82.41264869,1.17635273,2.608133651,-0.440471112,0.440471112,0.605478686,0.182917863,1.736332154,55.84641066,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.96167526,1.358263008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257966735,53.68169415,59.219642,55.03995716,219.1377148,0,0.303224798,72.34860465,-0.303224798,107.6513953,0.885105835,0,253.179712,55.03995716,289.2022632,12,10,14% +12/12/2018 19:00,62.69127051,163.7323392,425.2654783,776.327473,69.09812722,420.2660078,350.0456133,70.22039455,67.01456374,3.205830808,105.1941022,0,105.1941022,2.083563481,103.1105388,1.094169083,2.85766841,0.126073178,-0.126073178,0.508593906,0.162482333,1.886434962,60.67423295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41694769,1.509534649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.366715708,58.32238057,65.7836634,59.83191522,350.0456133,0,0.450899428,63.19859505,-0.450899428,116.801405,0.939110527,0,394.5151837,59.83191522,433.6739755,12,11,10% +12/12/2018 20:00,60.93793786,179.2527125,456.3779253,792.4725477,71.42906476,512.5687096,439.8531251,72.71558449,69.27521491,3.440369576,112.8079616,0,112.8079616,2.153849848,110.6541117,1.063567655,3.128550027,0.593341672,-0.593341672,0.428686288,0.156512971,1.78247025,57.33037044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58997159,1.560456883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291393628,55.10813274,67.88136522,56.66858962,439.8531251,0,0.555038943,56.2866029,-0.555038943,123.7133971,0.959916231,0,490.1035191,56.66858962,527.1919777,12,12,8% +12/12/2018 21:00,62.39663146,194.8334333,430.522847,779.1651038,69.49814844,544.7915258,474.1435398,70.64798592,67.40252285,3.245463074,106.4808743,0,106.4808743,2.095625596,104.3852487,1.089026661,3.400484905,1.092434292,-1.092434292,0.343336423,0.161427318,1.458315933,46.90445333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.78986874,1.518273611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056544929,45.08634464,65.84641367,46.60461825,474.1435398,0,0.608527689,52.51687875,-0.608527689,127.4831213,0.96783447,0,524.7388753,46.60461825,555.2406659,12,13,6% +12/12/2018 22:00,66.85210713,209.2781627,349.9452223,729.8496561,63.03705471,507.3349576,443.5606677,63.77428983,61.13625493,2.638034903,86.74907045,0,86.74907045,1.900799782,84.84827067,1.166789381,3.652592992,1.772730712,-1.772730712,0.226998884,0.180134063,0.966161066,31.07506104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.76649367,1.377122971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.699980403,29.87053067,59.46647407,31.24765364,443.5606677,0,0.607742518,52.5735493,-0.607742518,127.4264507,0.967728317,0,488.7126924,31.24765364,509.1636567,12,14,4% +12/12/2018 23:00,73.74468966,221.957512,222.5806234,614.2814463,50.63219375,390.3803317,339.5969786,50.78335306,49.1054463,1.677906758,55.49399655,0,55.49399655,1.526747455,53.96724909,1.28708764,3.873889383,3.027016378,-3.027016378,0.012503402,0.227477994,0.397894022,12.7976395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.2020228,1.106123334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288272864,12.30157787,47.49029566,13.4077012,339.5969786,0,0.552836132,56.43819812,-0.552836132,123.5618019,0.959557286,0,373.3530509,13.4077012,382.1281232,12,15,2% +12/12/2018 0:00,82.41087773,232.8730631,69.54653653,327.4150702,26.30541645,172.7490916,146.7126093,26.03648225,25.51221108,0.524271169,17.65556833,0,17.65556833,0.793205363,16.86236296,1.438341156,4.064401691,7.172685886,-7.172685886,0,0.378241934,0.198301341,6.378052771,0.41053301,1,0.138524876,0,0.94674387,0.985505833,0.724496596,1,24.73645535,0.574674585,0.058785422,0.312029739,0.846859304,0.5713559,0.961238037,0.922476074,0.135729165,6.130826925,24.87218452,6.70550151,86.48224017,0,0.448093636,63.37856074,-0.448093636,116.6214393,0.938416179,0,106.0285179,6.70550151,110.4171345,12,16,4% +12/12/2018 1:00,92.52861578,242.3794101,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614928998,4.230318744,-22.44424249,22.44424249,0,#DIV/0!,0,0,1,0.703118315,0,0.044525409,0.961238037,1,0.606001699,0.881505103,0,0,0.115824807,0.177665722,0.724496596,0.448993192,0.980605725,0.941843762,0,0,0,0,0,0,0.29721164,72.70979554,-0.29721164,107.2902045,0.881769711,0,0,0,0,12,17,0% +12/12/2018 2:00,103.3968733,250.9534652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804615875,4.379964237,-4.197995636,4.197995636,0.751946776,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114945293,83.39953037,-0.114945293,96.60046963,0.615010461,0,0,0,0,12,18,0% +12/12/2018 3:00,114.8281805,259.1229189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004129824,4.522548103,-2.134064963,2.134064963,0.895100292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088094463,95.05399241,0.088094463,84.94600759,0,0.482427441,0,0,0,12,19,0% +12/12/2018 4:00,126.577853,267.5350981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209200294,4.669368326,-1.284970061,1.284970061,0.749896512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298080595,107.3423557,0.298080595,72.65764435,0,0.882260131,0,0,0,12,20,0% +12/12/2018 5:00,138.3966234,277.2161871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415476752,4.838335205,-0.789639847,0.789639847,0.665190056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500714272,120.0472671,0.500714272,59.95273289,0,0.950142651,0,0,0,12,21,0% +12/12/2018 6:00,149.893553,290.3611902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616136028,5.067758789,-0.441817256,0.441817256,0.60570889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682198523,133.0156832,0.682198523,46.98431682,0,0.976707552,0,0,0,12,22,0% +12/12/2018 7:00,160.0408521,312.9609726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793239807,5.462199402,-0.165092916,0.165092916,0.558386241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830177556,146.1169816,0.830177556,33.88301841,0,0.98977192,0,0,0,12,23,0% +12/13/2018 8:00,165.2825502,357.2149743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884724697,6.23457744,0.077739397,-0.077739397,0.51685947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934577789,159.1600405,0.934577789,20.83995947,0,0.996499906,0,0,0,12,0,0% +12/13/2018 9:00,160.9099414,43.69825786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.808408276,0.762678477,0.310257407,-0.310257407,0.477096548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988293457,171.2244055,0.988293457,8.775594485,0,0.99940774,0,0,0,12,1,0% +12/13/2018 10:00,151.0327275,67.93717191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636018373,1.185727334,0.553203845,-0.553203845,0.43555026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987670191,170.9933549,0.987670191,9.006645053,0,0.999375813,0,0,0,12,2,0% +12/13/2018 11:00,139.6090356,81.67247875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436637337,1.425453662,0.833200471,-0.833200471,0.387668017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932753684,158.8682152,0.932753684,21.13178475,0,0.99639528,0,0,0,12,3,0% +12/13/2018 12:00,127.8033477,91.57739618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230589213,1.598327084,1.198703131,-1.198703131,0.325163381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827286557,145.8210025,0.827286557,34.17899755,0,0.98956145,0,0,0,12,4,0% +12/13/2018 13:00,116.0377168,100.0640775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025240214,1.746447616,1.771506925,-1.771506925,0.227208163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6784536,132.7229198,0.6784536,47.27708024,0,0.976302993,0,0,0,12,5,0% +12/13/2018 14:00,104.5674834,108.2271784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825046877,1.888920604,3.022856437,-3.022856437,0.013214794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496392672,119.7616267,0.496392672,60.23837331,0,0.949273291,0,0,0,12,6,0% +12/13/2018 15:00,93.63457328,116.7362197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634231597,2.03743139,10.78955914,-10.78955914,0,#DIV/0!,0,0,0.568028883,1,0.092418173,0,0.952068012,0.990829976,0.724496596,1,0,0,0.07652539,0.312029739,0.806014239,0.530510835,0.961238037,0.922476074,0,0,0,0,0,0,-0.293504507,107.0678827,0.293504507,72.93211726,0,0.879644865,0,0,0,12,7,0% +12/13/2018 16:00,83.40327595,126.1251727,54.39512134,278.5957837,22.38993931,22.12485343,0,22.12485343,21.71480003,0.410053401,36.54740484,22.68353863,13.86386621,0.67513928,13.18872693,1.455661772,2.201299534,-4.819711534,4.819711534,0.645627095,0.411616681,0.324554353,10.43878365,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.87309175,0.48913611,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.235138524,10.03415591,21.10823028,10.52329202,0,22.68353863,-0.081420969,94.67024774,0.081420969,85.32975226,0,0,21.10823028,10.52329202,27.99551444,12,8,33% +12/13/2018 17:00,74.6038698,136.8758309,206.8081219,595.5020806,48.70767842,120.2465087,71.44853949,48.79796918,47.2389622,1.559006979,51.61173972,0,51.61173972,1.468716216,50.14302351,1.302083163,2.388933916,-1.426155673,1.426155673,0.774040673,0.23552111,1.289702344,41.48126071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.40788729,1.064079899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.934384958,39.87336561,46.34227225,40.93744551,71.44853949,0,0.119980336,83.10903231,-0.119980336,96.89096769,0.633265043,0,91.58813469,40.93744551,118.380874,12,9,29% +12/13/2018 18:00,67.50802976,149.3614883,338.028868,721.8002634,61.90132558,279.9495473,217.3665707,62.58297661,60.03477222,2.548204391,83.82556597,0,83.82556597,1.866553358,81.95901262,1.178237391,2.606849747,-0.445869509,0.445869509,0.606401866,0.183124376,1.728903878,55.60749179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.70770659,1.352311554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.252584974,53.45203624,58.96029157,54.8043478,217.3665707,0,0.301145042,72.47361002,-0.301145042,107.52639,0.883967049,0,251.1051776,54.8043478,286.9735272,12,10,14% +12/13/2018 19:00,62.7826066,163.6322148,423.7505686,775.9357429,68.86246111,418.4172367,348.436822,69.98041461,66.78600383,3.194410779,104.8196886,0,104.8196886,2.076457278,102.7432314,1.095763198,2.855920911,0.123176998,-0.123176998,0.509089182,0.162507065,1.881078806,60.50196058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.19724721,1.504386229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.362835192,58.15678581,65.5600824,59.66117204,348.436822,0,0.449053707,63.31701301,-0.449053707,116.682987,0.938654744,0,392.6219584,59.66117204,431.6690023,12,11,10% +12/13/2018 20:00,61.00612454,179.1295857,455.294779,792.3574253,71.22635715,511.0957824,438.5849583,72.51082405,69.07861968,3.432204362,112.5392279,0,112.5392279,2.147737465,110.3914904,1.064757737,3.126401058,0.591345972,-0.591345972,0.429027573,0.156440092,1.779085024,57.22148994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.40099677,1.556028482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.288941044,55.00347266,67.68993782,56.55950114,438.5849583,0,0.553519087,56.39122639,-0.553519087,123.6087736,0.959668878,0,488.5862728,56.55950114,525.6033351,12,12,8% +12/13/2018 21:00,62.43784057,194.6975093,429.9056843,779.2664626,69.33079483,543.8096635,473.3286373,70.4810262,67.24021556,3.240810641,106.3261897,0,106.3261897,2.090579267,104.2356104,1.089745896,3.398112583,1.09061667,-1.09061667,0.343647255,0.161269779,1.45673504,46.85360638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.6338528,1.514617563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055399578,45.03746862,65.68925238,46.55208618,473.3286373,0,0.607402808,52.59805496,-0.607402808,127.401945,0.967682303,0,523.7209984,46.55208618,554.1884077,12,13,6% +12/13/2018 22:00,66.86678039,209.140744,349.7889111,730.2069588,62.91224364,506.9274874,443.2754235,63.65206394,61.01520738,2.636856563,86.70740747,0,86.70740747,1.897036267,84.81037121,1.167045478,3.650194583,1.770319881,-1.770319881,0.22741116,0.179857742,0.966057872,31.07174197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65013816,1.374396318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69990564,29.86734025,59.3500438,31.24173657,443.2754235,0,0.607054504,52.62317218,-0.607054504,127.3768278,0.967635073,0,488.2788905,31.24173657,508.7259822,12,14,4% +12/13/2018 23:00,73.73648519,221.8254085,222.8321967,615.1008158,50.56985432,390.6273735,339.9025837,50.72478985,49.04498663,1.679803224,55.55311364,0,55.55311364,1.524867691,54.02824595,1.286944445,3.871583743,3.021680575,-3.021680575,0.013415878,0.226941416,0.398638598,12.82158762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.14390666,1.104761451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288812307,12.32459772,47.43271897,13.42935917,339.9025837,0,0.552596542,56.45467041,-0.552596542,123.5453296,0.959518073,0,373.575391,13.42935917,382.364638,12,15,2% +12/13/2018 0:00,82.38476523,232.7477876,70.02253182,329.3615064,26.37556255,173.754071,147.6459696,26.10810144,25.58024202,0.527859422,17.77309406,0,17.77309406,0.795320526,16.97777353,1.437885407,4.062215221,7.142967271,-7.142967271,0,0.376672506,0.198830132,6.395060506,0.408761791,1,0.139093825,0,0.946675123,0.985437086,0.724496596,1,24.80241534,0.576207014,0.058573146,0.312029739,0.847363219,0.571859815,0.961238037,0.922476074,0.13609427,6.147175406,24.93850961,6.72338242,87.29393854,0,0.448279373,63.36665622,-0.448279373,116.6333438,0.938462412,0,106.8605897,6.72338242,111.260909,12,16,4% +12/13/2018 1:00,92.48835289,242.258985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614226278,4.228216931,-22.80140649,22.80140649,0,#DIV/0!,0,0,1,0.70840583,0,0.043828857,0.961238037,1,0.607735282,0.883238686,0,0,0.115824807,0.179625771,0.724496596,0.448993192,0.980351304,0.941589341,0,0,0,0,0,0,0.297785786,72.67533929,-0.297785786,107.3246607,0.882094068,0,0,0,0,12,17,0% +12/13/2018 2:00,103.3465935,250.8338822,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803738328,4.377877119,-4.214538017,4.214538017,0.749117862,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115827798,83.34862657,-0.115827798,96.65137343,0.618324694,0,0,0,0,12,18,0% +12/13/2018 3:00,114.7711969,258.9983655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003135273,4.520374236,-2.140388251,2.140388251,0.896181638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086998891,94.99097879,0.086998891,85.00902121,0,0,0,0,0,12,19,0% +12/13/2018 4:00,126.5175092,267.396721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208147098,4.666953191,-1.288781052,1.288781052,0.75054823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296881738,107.270409,0.296881738,72.72959102,0,0.88158277,0,0,0,12,20,0% +12/13/2018 5:00,138.3373195,277.0482304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414441704,4.835403808,-0.792477077,0.792477077,0.665675251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499528863,119.9688347,0.499528863,60.03116529,0,0.949905684,0,0,0,12,21,0% +12/13/2018 6:00,149.8434982,290.1303243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615262406,5.063729419,-0.44421967,0.44421967,0.606119727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681142228,132.9329654,0.681142228,47.06703465,0,0.976593892,0,0,0,12,22,0% +12/13/2018 7:00,160.0213703,312.5961175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792899785,5.45583148,-0.167326536,0.167326536,0.558768212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829357025,146.0327455,0.829357025,33.9672545,0,0.989712333,0,0,0,12,23,0% +12/14/2018 8:00,165.3406863,356.774143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885739364,6.226883481,0.075493722,-0.075493722,0.517243503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934083331,159.0805517,0.934083331,20.91944825,0,0.996471585,0,0,0,12,0,0% +12/14/2018 9:00,161.0251644,43.54289404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810419297,0.759966867,0.307825791,-0.307825791,0.477512379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988192828,171.1866946,0.988192828,8.813305365,0,0.999402588,0,0,0,12,1,0% +12/14/2018 10:00,151.1574104,67.90337625,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638194499,1.185137489,0.550354353,-0.550354353,0.436037552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988003936,171.1163358,0.988003936,8.883664161,0,0.999392914,0,0,0,12,2,0% +12/14/2018 11:00,139.7345752,81.66521336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438828415,1.425326857,0.829530086,-0.829530086,0.38829569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933532342,158.9923136,0.933532342,21.00768644,0,0.996439992,0,0,0,12,3,0% +12/14/2018 12:00,127.928822,91.57374322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232779153,1.598263328,1.193328157,-1.193328157,0.326082556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82848993,145.9439283,0.82848993,34.05607169,0,0.989649236,0,0,0,12,4,0% +12/14/2018 13:00,116.1629482,100.057102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027425915,1.746325869,1.761857628,-1.761857628,0.22885829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680032126,132.8461536,0.680032126,47.15384644,0,0.976474062,0,0,0,12,5,0% +12/14/2018 14:00,104.6920485,108.2134716,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827220947,1.888681374,2.996648244,-2.996648244,0.017696659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498270826,119.8856645,0.498270826,60.11433547,0,0.949652965,0,0,0,12,6,0% +12/14/2018 15:00,93.75751238,116.7127471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63637729,2.037021717,10.44012072,-10.44012072,0,#DIV/0!,0,0,0.556582727,1,0.095493006,0,0.951728244,0.990490207,0.724496596,1,0,0,0.075307668,0.312029739,0.808737779,0.533234375,0.961238037,0.922476074,0,0,0,0,0,0,-0.295585976,107.1926784,0.295585976,72.8073216,0,0.880844478,0,0,0,12,7,0% +12/14/2018 16:00,83.52077344,126.0882102,52.71536002,273.1556023,21.89167005,21.62894608,0,21.62894608,21.23155543,0.397390651,36.26698562,22.82542165,13.44156398,0.660114624,12.78144935,1.45771249,2.200654416,-4.912600035,4.912600035,0.629742226,0.41528067,0.311356816,10.01430548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.40857866,0.478250798,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225576953,9.626131343,20.63415561,10.10438214,0,22.82542165,-0.083561975,94.79333791,0.083561975,85.20666209,0,0,20.63415561,10.10438214,27.24727164,12,8,32% +12/14/2018 17:00,74.71646414,136.8207134,204.8291755,593.5043374,48.38388326,118.406292,69.93727251,48.46901951,46.92493066,1.544088845,51.12215763,0,51.12215763,1.458952598,49.66320503,1.304048305,2.387971935,-1.440420479,1.440420479,0.776480099,0.236215779,1.280480494,41.18465432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.10602823,1.057006191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927703759,39.58825626,46.03373199,40.64526245,69.93727251,0,0.117837846,83.23266512,-0.117837846,96.76733488,0.625688102,0,89.79265125,40.64526245,116.3941626,12,9,30% +12/14/2018 18:00,67.60966218,149.283454,336.2734429,720.9876759,61.63881285,277.990266,215.6751195,62.31514648,59.78017522,2.534971255,83.3920271,0,83.3920271,1.85863763,81.53338947,1.180011211,2.605487791,-0.451365442,0.451365442,0.607341726,0.183299675,1.722046179,55.38692461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.46297827,1.346576636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247616595,53.24001868,58.71059487,54.58659531,215.6751195,0,0.299138427,72.59413757,-0.299138427,107.4058624,0.882853303,0,249.1200865,54.58659531,284.8459214,12,10,14% +12/14/2018 19:00,62.86688643,163.5290824,422.3606575,775.6103183,68.63634202,416.6747552,346.9241191,69.75063611,66.56670307,3.183933042,104.4758703,0,104.4758703,2.069638953,102.4062313,1.097234159,2.854120911,0.12011811,-0.12011811,0.509612283,0.162506476,1.876302767,60.34834673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.98644697,1.499446376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359374967,58.00912634,65.34582194,59.50857271,346.9241191,0,0.447291779,63.42994038,-0.447291779,116.5700596,0.938216144,0,390.8356311,59.50857271,429.7828017,12,11,10% +12/14/2018 20:00,61.06683699,179.0053547,454.3427423,792.3070073,71.03330829,509.7427768,437.4263573,72.31641946,68.89139196,3.425027507,112.3025744,0,112.3025744,2.14191633,110.1606581,1.065817369,3.124232818,0.589119582,-0.589119582,0.429408308,0.156343002,1.776275181,57.13111574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22102636,1.55181109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286905322,54.91660154,67.50793168,56.46841263,437.4263573,0,0.552091996,56.48934864,-0.552091996,123.5106514,0.959435383,0,487.1902565,56.46841263,524.1477032,12,12,8% +12/14/2018 21:00,62.47154526,194.5624512,429.422102,779.4397753,69.17355602,542.959528,472.6346447,70.32488328,67.08771808,3.237165194,106.2041982,0,106.2041982,2.085837937,104.1183603,1.090334154,3.395755374,1.088461044,-1.088461044,0.344015889,0.161085225,1.455705397,46.82048952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48726643,1.511182485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054653605,45.00563543,65.54192003,46.51681792,472.6346447,0,0.606377375,52.67197802,-0.606377375,127.328022,0.967543098,0,522.8363082,46.51681792,553.2806352,12,13,6% +12/14/2018 22:00,66.87425386,209.0058301,349.7644462,730.6570959,62.79857709,506.663142,443.1215016,63.54164042,60.90496829,2.636672136,86.69804821,0,86.69804821,1.893608801,84.80443941,1.167175915,3.64783989,1.767347289,-1.767347289,0.227919503,0.179545342,0.966453609,31.08447023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54417215,1.37191313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70019235,29.87957515,59.2443645,31.25148828,443.1215016,0,0.606469853,52.66531427,-0.606469853,127.3346857,0.967555671,0,487.9890864,31.25148828,508.4425604,12,14,4% +12/14/2018 23:00,73.72157694,221.6969893,223.2078935,616.0661695,50.52131965,391.0331502,340.3525994,50.68055085,48.99791546,1.682635384,55.64274217,0,55.64274217,1.523404191,54.11933798,1.286684247,3.869342406,3.015127083,-3.015127083,0.014536591,0.226341994,0.399774554,12.85812389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.09866007,1.103701151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289635304,12.35971776,47.38829537,13.46341891,340.3525994,0,0.552461109,56.46398027,-0.552461109,123.5360197,0.959495892,0,373.9552162,13.46341891,382.7667547,12,15,2% +12/14/2018 0:00,82.35253741,232.6270247,70.59637152,331.5997398,26.46792494,174.9464525,148.7444479,26.20200462,25.66981935,0.532185269,17.91501321,0,17.91501321,0.798105593,17.11690761,1.437322925,4.060107511,7.107835986,-7.107835986,0,0.374919056,0.199526398,6.417454837,0.406654202,1,0.139772414,0,0.946593032,0.985354995,0.724496596,1,24.88925867,0.578224785,0.058320163,0.312029739,0.847964233,0.572460829,0.961238037,0.922476074,0.136574911,6.168701689,25.02583358,6.746926474,88.25689316,0,0.448566238,63.34826757,-0.448566238,116.6517324,0.938533742,0,107.8579058,6.746926474,112.2736342,12,16,4% +12/14/2018 1:00,92.44238845,242.1437288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613424047,4.226205331,-23.22465233,23.22465233,0,#DIV/0!,0,0,1,0.714432834,0,0.043031116,0.961238037,1,0.609725422,0.885228826,0,0,0.115824807,0.1818761,0.724496596,0.448993192,0.98005815,0.941296186,0,0,0,0,0,0,0.298457361,72.63502782,-0.298457361,107.3649722,0.882471882,0,0,0,0,12,17,0% +12/14/2018 2:00,103.2910186,250.7201195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802768363,4.375891586,-4.232927247,4.232927247,0.745973119,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11680013,83.29253532,-0.11680013,96.70746468,0.621918283,0,0,0,0,12,18,0% +12/14/2018 3:00,114.7092041,258.8804322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002053295,4.51831591,-2.147184908,2.147184908,0.897343935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085823143,94.92336044,0.085823143,85.07663956,0,0,0,0,0,12,19,0% +12/14/2018 4:00,126.4522759,267.2660852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207008561,4.664673166,-1.292773451,1.292773451,0.75123097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295613738,107.1943434,0.295613738,72.80565658,0,0.880860364,0,0,0,12,20,0% +12/14/2018 5:00,138.2729844,276.8896929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413318845,4.832636806,-0.795389793,0.795389793,0.666173355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498285965,119.886665,0.498285965,60.11333501,0,0.949656014,0,0,0,12,21,0% +12/14/2018 6:00,149.7877844,289.9112923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614290017,5.059906589,-0.446646151,0.446646151,0.60653468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680039913,132.8467621,0.680039913,47.15323792,0,0.976474904,0,0,0,12,22,0% +12/14/2018 7:00,159.9946614,312.2440201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792433627,5.449686221,-0.169552586,0.169552586,0.559148889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828500969,145.9450578,0.828500969,34.05494217,0,0.98965004,0,0,0,12,23,0% +12/15/2018 8:00,165.3903181,356.3278566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886605603,6.219094313,0.073280477,-0.073280477,0.51762199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933562141,158.9970767,0.933562141,21.0029233,0,0.996441701,0,0,0,12,0,0% +12/15/2018 9:00,161.1346491,43.36944489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.812330166,0.756939608,0.305451793,-0.305451793,0.477918357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988071954,171.1416076,0.988071954,8.858392445,0,0.999396398,0,0,0,12,1,0% +12/15/2018 10:00,151.2782067,67.85550165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.640302793,1.184301919,0.547594701,-0.547594701,0.436509481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988321168,171.2348186,0.988321168,8.76518135,0,0.999409158,0,0,0,12,2,0% +12/15/2018 11:00,139.8568846,81.64708945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.440963118,1.425010536,0.825999937,-0.825999937,0.388899381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934295209,159.1145778,0.934295209,20.88542222,0,0.996483724,0,0,0,12,3,0% +12/15/2018 12:00,128.0511805,91.5611521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234914711,1.598043571,1.188189571,-1.188189571,0.326961306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829675171,146.0653846,0.829675171,33.93461535,0,0.989735451,0,0,0,12,4,0% +12/15/2018 13:00,116.2848867,100.0423617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029554143,1.746068604,1.752684556,-1.752684556,0.230426978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681587281,132.9678037,0.681587281,47.03219633,0,0.976641824,0,0,0,12,5,0% +12/15/2018 14:00,104.8129473,108.1927567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829331029,1.88831983,2.971925419,-2.971925419,0.021924511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500117829,120.0077958,0.500117829,59.99220417,0,0.95002356,0,0,0,12,6,0% +12/15/2018 15:00,93.87625403,116.6828087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638449722,2.036499191,10.1249864,-10.1249864,0,#DIV/0!,0,0,0.545727307,1,0.098446291,0,0.951399835,0.990161799,0.724496596,1,0,0,0.074142952,0.312029739,0.811353842,0.535850438,0.961238037,0.922476074,0,0,0,0,0,0,-0.297626515,107.3151017,0.297626515,72.68489826,0,0.882004215,0,0,0,12,7,0% +12/15/2018 16:00,83.63343355,126.0452741,51.12002918,267.9146,21.41124059,21.15097706,0,21.15097706,20.76561269,0.385364373,35.98753061,22.94725978,13.04027082,0.645627903,12.39464292,1.45967878,2.19990504,-5.005842783,5.005842783,0.613796777,0.418842496,0.298871305,9.612728517,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.96069678,0.467755218,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216531243,9.240120289,20.17722802,9.707875507,0,22.94725978,-0.085651397,94.91348378,0.085651397,85.08651622,0,0,20.17722802,9.707875507,26.53083838,12,8,31% +12/15/2018 17:00,74.82343984,136.7602465,202.9542542,591.6186035,48.07183687,116.6373015,68.48505294,48.15224851,46.62229362,1.529954896,50.6581519,0,50.6581519,1.449543248,49.20860865,1.305915383,2.386916588,-1.454645718,1.454645718,0.778912758,0.236860454,1.271820268,40.90611166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.81512199,1.050189149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921429454,39.32051047,45.73655144,40.37069961,68.48505294,0,0.115758789,83.35260725,-0.115758789,96.64739275,0.618067353,0,88.06492686,40.37069961,114.4867423,12,9,30% +12/15/2018 18:00,67.70487279,149.2010372,334.6350439,720.2553532,61.38638834,276.1227423,214.0647598,62.05798255,59.53536224,2.522620311,82.98716676,0,82.98716676,1.8510261,81.13614066,1.18167295,2.604049346,-0.456950188,0.456950188,0.608296774,0.183442797,1.715765021,55.18490098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.22765472,1.341062108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243065917,53.04582588,58.47072064,54.38688799,214.0647598,0,0.29720676,72.71008836,-0.29720676,107.2899116,0.881766949,0,247.2259507,54.38688799,282.8210812,12,10,14% +12/15/2018 19:00,62.94405812,163.4230391,421.0969274,775.3525754,68.41987254,415.0400772,345.5089097,69.53116746,66.35676094,3.174406511,104.1629369,0,104.1629369,2.0631116,102.0998253,1.098581059,2.852270106,0.116900789,-0.116900789,0.510162477,0.162480104,1.872110458,60.21350767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.78464262,1.494717331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356337654,57.87951391,65.14098028,59.37423124,345.5089097,0,0.445615222,63.53729281,-0.445615222,116.4627072,0.937795574,0,389.1577067,59.37423124,428.0169536,12,11,10% +12/15/2018 20:00,61.12004404,178.8801189,453.5225828,792.3220729,70.84996913,508.5108807,436.3784548,72.13242595,68.71358115,3.418844798,112.0981889,0,112.0981889,2.136387978,109.9618009,1.066746007,3.122047041,0.586665659,-0.586665659,0.429827953,0.15622148,1.774042238,57.05929661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05010785,1.547805817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285287563,54.84756626,67.33539541,56.39537208,436.3784548,0,0.550758927,56.58090587,-0.550758927,123.4190941,0.959216179,0,485.9166693,56.39537208,522.8263124,12,12,8% +12/15/2018 21:00,62.49773505,194.428359,429.0724091,779.6853665,69.02643352,542.2418192,472.0622583,70.17956093,66.94503187,3.234529061,106.1149749,0,106.1149749,2.081401651,104.0335732,1.090791252,3.393415024,1.085971089,-1.085971089,0.344441696,0.160873624,1.455226709,46.80509328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.35011101,1.507968411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054306797,44.99083598,65.40441781,46.49880439,472.0622583,0,0.605452249,52.73860764,-0.605452249,127.2613924,0.967417104,0,522.0855207,46.49880439,552.5180582,12,13,6% +12/15/2018 22:00,66.87453748,208.8735217,349.8716882,731.1998169,62.69599397,506.5419909,443.0990319,63.442959,60.80547843,2.637480572,86.72095703,0,86.72095703,1.890515542,84.83044149,1.167180865,3.645530673,1.763819759,-1.763819759,0.228522746,0.179197106,0.967346738,31.11319633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.44853872,1.369672075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700839419,29.90718776,59.14937813,31.27685984,443.0990319,0,0.605988981,52.69995818,-0.605988981,127.3000418,0.967490249,0,487.8433708,31.27685984,508.3134501,12,14,4% +12/15/2018 23:00,73.69999442,221.572355,223.7072309,617.1760166,50.48641184,391.5968816,340.9464217,50.65045984,48.96406024,1.686399601,55.76275971,0,55.76275971,1.522351592,54.24040812,1.286307561,3.867167126,3.0073773,-3.0073773,0.015861882,0.225680733,0.401300529,12.90720448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.06611714,1.102938546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.290740867,12.4068959,47.35685801,13.50983444,340.9464217,0,0.552429797,56.46613257,-0.552429797,123.5338674,0.959490762,0,374.4918,13.50983444,383.3337164,12,15,2% +12/15/2018 0:00,82.31423999,232.5108729,71.26793199,334.1255129,26.5820235,176.3246399,150.0069147,26.31772519,25.78047741,0.537247775,18.08128131,0,18.08128131,0.801546086,17.27973522,1.436654509,4.058080279,7.06749316,-7.06749316,0,0.372987159,0.200386521,6.445119353,0.404215351,1,0.140559828,0,0.946497645,0.985259608,0.724496596,1,24.9965299,0.580717411,0.058026882,0.312029739,0.848661619,0.573158215,0.961238037,0.922476074,0.137168766,6.195293874,25.13369867,6.776011285,89.37181699,0,0.448953788,63.32342013,-0.448953788,116.6765799,0.938629963,0,109.0207639,6.776011285,113.4555278,12,16,4% +12/15/2018 1:00,92.39078669,242.0337378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612523426,4.224285625,-23.72019648,23.72019648,0,#DIV/0!,0,0,1,0.721180225,0,0.042133217,0.961238037,1,0.611971442,0.887474846,0,0,0.115824807,0.184416033,0.724496596,0.448993192,0.979725915,0.940963952,0,0,0,0,0,0,0.299225489,72.58890988,-0.299225489,107.4110901,0.882901936,0,0,0,0,12,17,0% +12/15/2018 2:00,103.230227,250.6122724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801707349,4.374009299,-4.253184237,4.253184237,0.742508969,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117861092,83.23132386,-0.117861092,96.76867614,0.62577179,0,0,0,0,12,18,0% +12/15/2018 3:00,114.6422933,258.7692165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00088548,4.516374831,-2.154454106,2.154454106,0.898587041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08456864,94.85122043,0.08456864,85.14877957,0,0,0,0,0,12,19,0% +12/15/2018 4:00,126.3822563,267.143298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205786488,4.662530125,-1.296945053,1.296945053,0.751944356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294278131,107.114256,0.294278131,72.885744,0,0.880092709,0,0,0,12,20,0% +12/15/2018 5:00,138.2037338,276.7407096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412110193,4.830036556,-0.798375851,0.798375851,0.666684001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49698711,119.8008682,0.49698711,60.19913184,0,0.949393769,0,0,0,12,21,0% +12/15/2018 6:00,149.7265397,289.7043196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613221096,5.056294235,-0.44909473,0.44909473,0.606953412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678892988,132.7571977,0.678892988,47.24280229,0,0.97635069,0,0,0,12,22,0% +12/15/2018 7:00,159.9608461,311.9052853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791843439,5.443774183,-0.171769227,0.171769227,0.559527957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827610565,145.854062,0.827610565,34.14593804,0,0.989585112,0,0,0,12,23,0% +12/16/2018 8:00,165.4314012,355.8772411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887322636,6.211229589,0.071101431,-0.071101431,0.517994629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933015072,158.9097961,0.933015072,21.09020386,0,0.996410298,0,0,0,12,0,0% +12/16/2018 9:00,161.2382589,43.17797646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814138498,0.753597854,0.303137165,-0.303137165,0.478314181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987931292,171.0894243,0.987931292,8.910575684,0,0.999389193,0,0,0,12,1,0% +12/16/2018 10:00,151.3949966,67.79349093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642341161,1.183219628,0.544926654,-0.544926654,0.436965743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988621907,171.3486275,0.988621907,8.651372484,0,0.999424548,0,0,0,12,2,0% +12/16/2018 11:00,139.9758503,81.6180779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.443039462,1.424504189,0.822611745,-0.822611745,0.389478796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935041852,159.2349075,0.935041852,20.7650925,0,0.996526458,0,0,0,12,3,0% +12/16/2018 12:00,128.1703114,91.53961818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236993937,1.597667733,1.183288638,-1.183288638,0.327799415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830841415,146.1852689,0.830841415,33.81473112,0,0.989820044,0,0,0,12,4,0% +12/16/2018 13:00,116.4034219,100.0198705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031622974,1.745676058,1.743985902,-1.743985902,0.231914535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683117814,133.087763,0.683117814,46.91223696,0,0.976806183,0,0,0,12,5,0% +12/16/2018 14:00,104.9300721,108.1650633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831375243,1.88783649,2.948654892,-2.948654892,0.025904005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501932121,120.1279106,0.501932121,59.87208936,0,0.950384937,0,0,0,12,6,0% +12/16/2018 15:00,93.99069523,116.6464493,0,0,0,0,0,0,0,0,0,0,0,0,0,1.640447098,2.035864602,9.840347268,-9.840347268,0,#DIV/0!,0,0,0.535455176,1,0.101274759,0,0.951083406,0.989845369,0.724496596,1,0,0,0.07303189,0.312029739,0.813859482,0.538356078,0.961238037,0.922476074,0,0,0,0,0,0,-0.299624346,107.4350419,0.299624346,72.56495812,0,0.883124375,0,0,0,12,7,0% +12/16/2018 16:00,83.74116776,125.9964255,49.50315063,261.5808657,20.98557612,20.72595923,0,20.72595923,20.35278357,0.37317566,35.57276639,22.93736184,12.63540455,0.632792549,12.002612,1.461559097,2.19905247,-5.099162675,5.099162675,0.597838136,0.42392405,0.286719898,9.221897528,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.56386973,0.458456047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.20772759,8.864438676,19.77159732,9.322894723,0,22.93736184,-0.087687461,95.03058227,0.087687461,84.96941773,0,0.479793044,19.77159732,20.32808137,33.07592001,12,8,67% +12/16/2018 17:00,74.92471489,136.6945067,200.9934911,588.5464766,47.91960226,114.9340505,66.94422724,47.98982329,46.47464945,1.515173836,50.17815175,0,50.17815175,1.444952813,48.73319894,1.307682966,2.385769211,-1.468801953,1.468801953,0.781333617,0.238413702,1.262846905,40.61749747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.6732008,1.046863394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914928284,39.04308353,45.58812908,40.08994692,66.94422724,0,0.113745014,83.46875532,-0.113745014,96.53124468,0.610420292,0,86.45224386,40.08994692,112.6903123,12,9,30% +12/16/2018 18:00,67.79359505,149.1143269,332.8954131,718.5026614,61.34143833,274.2123063,212.2110324,62.00127388,59.49176764,2.50950624,82.56401773,0,82.56401773,1.849670692,80.71434704,1.183221445,2.602535967,-0.462614711,0.462614711,0.609265465,0.184266397,1.709638039,54.98783619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18574994,1.34008012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23862694,52.85639971,58.42437688,54.19647983,212.2110324,0,0.295351769,72.8213678,-0.295351769,107.1786322,0.880710342,0,245.3208278,54.19647983,280.7913399,12,10,14% +12/16/2018 19:00,63.01407426,163.3141808,419.7293453,774.1720528,68.43204097,413.284816,343.7521564,69.53265954,66.36856245,3.1640971,103.8317178,0,103.8317178,2.063478523,101.7682392,1.099803071,2.850370171,0.113529639,-0.113529639,0.510738978,0.163038495,1.868422621,60.09489416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79598667,1.494983165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353665829,57.76549809,65.1496525,59.26048125,343.7521564,0,0.444025531,63.63899067,-0.444025531,116.3610093,0.937393862,0,387.3808141,59.26048125,426.1656139,12,11,10% +12/16/2018 20:00,61.1657186,178.7539758,452.6003713,791.4489109,70.90205062,507.0938191,434.9178341,72.17598497,68.76409219,3.411892778,111.8761585,0,111.8761585,2.137958427,109.7382,1.067543179,3.119845429,0.583987793,-0.583987793,0.430285895,0.156654866,1.772595606,57.01276795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09866098,1.548943602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284239483,54.80284114,67.38290047,56.35178474,434.9178341,0,0.549521047,56.66583901,-0.549521047,123.334161,0.959011674,0,484.4741807,56.35178474,521.3552968,12,12,8% +12/16/2018 21:00,62.51640315,194.2953306,428.6247285,779.0220585,69.11021404,541.276146,471.0187057,70.25744035,67.0262861,3.231154255,106.0089558,0,106.0089558,2.083927943,103.9250279,1.091117072,3.39109324,1.083151133,-1.083151133,0.344923937,0.161237114,1.455785274,46.82305864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.42821566,1.509798701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054711475,45.00810497,65.48292714,46.51790367,471.0187057,0,0.604628201,52.79790777,-0.604628201,127.2020922,0.967304552,0,521.1014652,46.51790367,551.5465028,12,13,6% +12/16/2018 22:00,66.86764454,208.7439173,349.8882154,730.754955,62.80639191,506.1042852,442.5541326,63.55015262,60.91254746,2.637605161,86.72829314,0,86.72829314,1.893844447,84.8344487,1.16706056,3.64326865,1.759745309,-1.759745309,0.229219518,0.179504165,0.969525168,31.18326212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.55145754,1.372083855,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.702417684,29.97453766,59.25387522,31.34662152,442.5541326,0,0.605612223,52.72709016,-0.605612223,127.2729098,0.967438919,0,487.3979667,31.34662152,507.9137035,12,14,4% +12/16/2018 23:00,73.67177008,221.4516031,224.1319187,617.1614466,50.62341143,391.7697692,340.9832393,50.78652988,49.0969288,1.689601077,55.86986123,0,55.86986123,1.526482635,54.34337859,1.285814954,3.865059607,2.998455799,-2.998455799,0.017387548,0.225864356,0.404363232,13.00571152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.19383545,1.105931473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292959785,12.50158461,47.48679524,13.60751608,340.9832393,0,0.552502495,56.46113542,-0.552502495,123.5388646,0.959502671,0,374.6611242,13.60751608,383.5669713,12,15,2% +12/16/2018 0:00,82.2699209,232.3994272,71.90951325,335.5475489,26.77621619,177.3198994,150.8090007,26.51089876,25.96881448,0.542084286,18.24269574,0,18.24269574,0.807401712,17.43529403,1.435880995,4.056135184,7.022161594,-7.022161594,0,0.372359859,0.201850428,6.49220362,0.401450883,1,0.141455194,0,0.946389009,0.985150972,0.724496596,1,25.17910148,0.584959792,0.057693749,0.312029739,0.849454598,0.573951193,0.961238037,0.922476074,0.13817717,6.240553062,25.31727865,6.825512854,90.26659412,0,0.449441521,63.29214185,-0.449441521,116.7078582,0.938750821,0,110.055118,6.825512854,114.5222797,12,16,4% +12/16/2018 1:00,92.33361374,241.9291036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61152557,4.222459414,-24.29575116,24.29575116,0,#DIV/0!,0,0,1,0.728627505,0,0.041136241,0.961238037,1,0.614472763,0.889976167,0,0,0.115824807,0.18724502,0.724496596,0.448993192,0.979354186,0.940592223,0,0,0,0,0,0,0.300089245,72.53703655,-0.300089245,107.4629634,0.883382899,0,0,0,0,12,17,0% +12/16/2018 2:00,103.1642985,250.5104306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800556679,4.372231824,-4.275333672,4.275333672,0.738721193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119009455,83.1650611,-0.119009455,96.8349389,0.629865316,0,0,0,0,12,18,0% +12/16/2018 3:00,114.5705564,258.6648092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999633435,4.514552579,-2.16219535,2.16219535,0.899910871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08323682,94.77464278,0.08323682,85.22535722,0,0,0,0,0,12,19,0% +12/16/2018 4:00,126.3075538,267.0284573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204482683,4.660525776,-1.301293717,1.301293717,0.752688021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292876454,107.0302438,0.292876454,72.96975618,0,0.87927955,0,0,0,12,20,0% +12/16/2018 5:00,138.1296828,276.6014012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41081776,4.827605166,-0.801433133,0.801433133,0.667206827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495633815,119.7115535,0.495633815,60.2884465,0,0.94911907,0,0,0,12,21,0% +12/16/2018 6:00,149.6598919,289.5096067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612057872,5.052895854,-0.451563464,0.451563464,0.60737559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677702838,132.6643945,0.677702838,47.33560552,0,0.976221351,0,0,0,12,22,0% +12/16/2018 7:00,159.9200481,311.58047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79113138,5.438105087,-0.173974654,0.173974654,0.559905108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826686958,145.7598976,0.826686958,34.24010244,0,0.989517614,0,0,0,12,23,0% +12/17/2018 8:00,165.4639014,355.4234484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887889872,6.203309414,0.068958311,-0.068958311,0.518361124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932442941,158.8188846,0.932442941,21.18111544,0,0.996377416,0,0,0,12,0,0% +12/17/2018 9:00,161.3358576,42.96859786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815841917,0.749943508,0.300883601,-0.300883601,0.478699563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987771267,171.0304238,0.987771267,8.969576212,0,0.999380994,0,0,0,12,1,0% +12/17/2018 10:00,151.5076599,67.71730316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644307507,1.181889901,0.542351896,-0.542351896,0.437406053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988906144,171.4575745,0.988906144,8.542425547,0,0.999439085,0,0,0,12,2,0% +12/17/2018 11:00,140.0913594,81.57815864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445055475,1.423807466,0.819367127,-0.819367127,0.390033659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935771821,159.3531979,0.935771821,20.64680211,0,0.996568171,0,0,0,12,3,0% +12/17/2018 12:00,128.2861044,91.50914305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239014907,1.597135842,1.178626486,-1.178626486,0.32859669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831987791,146.3034769,0.831987791,33.69652307,0,0.989902964,0,0,0,12,4,0% +12/17/2018 13:00,116.518446,99.98964689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033630523,1.745148556,1.735759765,-1.735759765,0.233321288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684622483,133.2059248,0.684622483,46.79407517,0,0.976967049,0,0,0,12,5,0% +12/17/2018 14:00,105.0433184,108.1304248,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833351764,1.887231934,2.926805218,-2.926805218,0.029640519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503712167,120.2459004,0.503712167,59.75409957,0,0.950736962,0,0,0,12,6,0% +12/17/2018 15:00,94.10073698,116.603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.642367689,2.035118781,9.582979022,-9.582979022,0,#DIV/0!,0,0,0.525758935,1,0.103975368,0,0.950779548,0.989541512,0.724496596,1,0,0,0.071975059,0.312029739,0.816251958,0.540748554,0.961238037,0.922476074,0,0,0,0,0,0,-0.301577739,107.5523905,0.301577739,72.44760955,0,0.884205269,0,0,0,12,7,0% +12/17/2018 16:00,83.84389233,125.9417268,47.86990269,254.2012263,20.60993789,20.34933577,0,20.34933577,19.98847222,0.360863547,35.02190947,22.79383168,12.2280778,0.62146567,11.60661213,1.463351979,2.198097799,-5.192260669,5.192260669,0.581917441,0.430540626,0.274948781,8.843297933,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.2136798,0.450249762,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.199199456,8.500514344,19.41287925,8.950764107,0,22.79383168,-0.089668457,95.14453395,0.089668457,84.85546605,0,0.492390314,19.41287925,20.17422605,32.61650672,12,8,68% +12/17/2018 17:00,75.02021218,136.6235706,198.9500842,584.2890461,47.92405641,113.3012588,65.32251972,47.97873906,46.47896928,1.499769772,49.6828384,0,49.6828384,1.445087122,48.23775128,1.309349708,2.384531143,-1.482859172,1.482859172,0.783737543,0.240884826,1.253555399,40.31865069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.67735319,1.0469607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908196619,38.75582063,45.58554981,39.80278134,65.32251972,0,0.111798296,83.58101015,-0.111798296,96.41898985,0.602765992,0,84.95974321,39.80278134,111.0098675,12,9,31% +12/17/2018 18:00,67.87576742,149.0234113,331.0567664,715.7280325,61.50207056,272.2631314,210.1199294,62.14320196,59.64755622,2.495645744,82.12306021,0,82.12306021,1.854514346,80.26854587,1.184655624,2.600949189,-0.468349719,0.468349719,0.610246209,0.185774999,1.703659353,54.79554108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.33549984,1.343589331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234295402,52.67155833,58.56979524,54.01514767,210.1199294,0,0.293575101,72.92788615,-0.293575101,107.0721138,0.879685829,0,243.4093195,54.01514767,278.7611534,12,10,15% +12/17/2018 19:00,63.07689214,163.2026014,418.2594588,772.0677974,68.67152865,411.4124598,341.6586146,69.75384517,66.60082869,3.153016474,103.4825482,0,103.4825482,2.07069996,101.4118482,1.10089945,2.848422742,0.110009567,-0.110009567,0.511340946,0.164184042,1.865232997,59.99230487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.01924983,1.500215072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351354957,57.66688536,65.37060478,59.16710043,341.6586146,0,0.44252411,63.7349595,-0.44252411,116.2650405,0.937011806,0,385.5087603,59.16710043,424.2324442,12,11,10% +12/17/2018 20:00,61.20383786,178.6270204,451.5770628,789.6875408,71.18854241,505.4945278,433.0484039,72.44612384,69.0419452,3.404178646,111.6366843,0,111.6366843,2.146597211,109.490087,1.068208485,3.117629638,0.581089982,-0.581089982,0.43078145,0.157644283,1.771927751,56.99128745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.36574386,1.555202372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283755624,54.78219326,67.64949949,56.33739564,433.0484039,0,0.548379431,56.74409398,-0.548379431,123.255906,0.958822255,0,482.8659466,56.33739564,519.7376453,12,12,8% +12/17/2018 21:00,62.52754653,194.1634612,428.0794429,777.4510418,69.42409181,540.0650241,469.5072812,70.55774295,67.33069929,3.227043662,105.8862096,0,105.8862096,2.093392516,103.7928171,1.09131156,3.388791685,1.080006126,-1.080006126,0.345461765,0.16217572,1.457371559,46.87407902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72082921,1.516655751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055860733,45.05714769,65.77668994,46.57380344,469.5072812,0,0.603905913,52.84984677,-0.603905913,127.1501532,0.967205646,0,519.8867831,46.57380344,550.3684059,12,13,6% +12/17/2018 22:00,66.85359155,208.6171125,349.8138386,729.3252945,63.12917491,505.3522917,441.4896498,63.86264184,61.22559736,2.637044478,86.71999273,0,86.71999273,1.903577545,84.81641518,1.166815289,3.64105549,1.755133093,-1.755133093,0.230008254,0.180465059,0.972976744,31.29427669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.85237301,1.379135452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704918339,30.08124909,59.55729135,31.46038454,441.4896498,0,0.60533983,52.74670024,-0.60533983,127.2532998,0.967401768,0,486.6551589,31.46038454,507.2453514,12,14,4% +12/17/2018 23:00,73.63693902,221.3348278,224.4811348,616.0272711,50.93213244,391.5539242,340.4653499,51.08857434,49.39634073,1.692233616,55.96384181,0,55.96384181,1.535791713,54.4280501,1.285207037,3.863021495,2.988390112,-2.988390112,0.019108882,0.226888253,0.408947805,13.15316717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.48164159,1.112675868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296281293,12.64332459,47.77792288,13.75600046,340.4653499,0,0.552679022,56.44900007,-0.552679022,123.5509999,0.959531576,0,374.4651767,13.75600046,383.4682039,12,15,2% +12/17/2018 0:00,82.21962994,232.2927784,72.51938973,335.8638412,27.05144361,177.9308533,151.1484287,26.78242456,26.23574277,0.546681792,18.39886647,0,18.39886647,0.815700834,17.58316564,1.435003252,4.054273811,6.972082813,-6.972082813,0,0.373023597,0.203925208,6.558935693,0.398366936,1,0.142457589,0,0.946267171,0.985029134,0.724496596,1,25.43785217,0.590972477,0.057321241,0.312029739,0.850342345,0.574838941,0.961238037,0.922476074,0.139605238,6.304698469,25.57745741,6.895670947,90.93589225,0,0.450028881,63.25446304,-0.450028881,116.745537,0.93889602,0,110.9568047,6.895670947,115.4698834,12,16,4% +12/17/2018 1:00,92.27093726,241.829913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610431659,4.220728212,-24.9608647,24.9608647,0,#DIV/0!,0,0,1,0.736752944,0,0.040041301,0.961238037,1,0.617228912,0.892732316,0,0,0.115824807,0.190362642,0.724496596,0.448993192,0.978942476,0.940180513,0,0,0,0,0,0,0.301047664,72.47946091,-0.301047664,107.5205391,0.883913343,0,0,0,0,12,17,0% +12/17/2018 2:00,103.0933136,250.4146778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799317759,4.370560622,-4.299404224,4.299404224,0.734604886,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.120243967,83.09381716,-0.120243967,96.90618284,0.634178724,0,0,0,0,12,18,0% +12/17/2018 3:00,114.4940855,258.5672933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998298765,4.512850606,-2.170408519,2.170408519,0.901315406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.081829129,94.69371186,0.081829129,85.30628814,0,0,0,0,0,12,19,0% +12/17/2018 4:00,126.2282712,266.9216507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203098941,4.65866165,-1.305817377,1.305817377,0.753461613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291410232,106.9424035,0.291410232,73.05759654,0,0.878420575,0,0,0,12,20,0% +12/17/2018 5:00,138.0509457,276.4718738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409443538,4.825344486,-0.804559559,0.804559559,0.667741477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494227577,119.6188288,0.494227577,60.38117124,0,0.948832031,0,0,0,12,21,0% +12/17/2018 6:00,149.5879676,289.3273285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610802557,5.049714499,-0.454050448,0.454050448,0.607800889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676470816,132.5684719,0.676470816,47.43152809,0,0.976086981,0,0,0,12,22,0% +12/17/2018 7:00,159.8723934,311.2700807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790299648,5.432687771,-0.176167106,0.176167106,0.560280039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825731259,145.6626999,0.825731259,34.33730011,0,0.989447611,0,0,0,12,23,0% +12/18/2018 8:00,165.4877952,354.9676465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888306899,6.19535417,0.066852785,-0.066852785,0.51872119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93184653,158.7245094,0.93184653,21.27549063,0,0.996343096,0,0,0,12,0,0% +12/18/2018 9:00,161.4273102,42.74146171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817438065,0.745979234,0.298692724,-0.298692724,0.479074226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987592269,170.9648808,0.987592269,9.035119187,0,0.999371819,0,0,0,12,1,0% +12/18/2018 10:00,151.6160766,67.62691401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646199736,1.180312312,0.539872019,-0.539872019,0.437830137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989173846,171.5614598,0.989173846,8.438540193,0,0.999452768,0,0,0,12,2,0% +12/18/2018 11:00,140.2033002,81.52732063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44700921,1.422920175,0.816267576,-0.816267576,0.390563713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936484654,159.4693401,0.936484654,20.53065986,0,0.996608842,0,0,0,12,3,0% +12/18/2018 12:00,128.3984518,91.46973448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240975739,1.596448033,1.174204091,-1.174204091,0.329352964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833113432,146.4199039,0.833113432,33.58009613,0,0.989984163,0,0,0,12,4,0% +12/18/2018 13:00,116.6298543,99.95171381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035574963,1.744486499,1.728004129,-1.728004129,0.23464758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686100071,133.322183,0.686100071,46.67781695,0,0.977124333,0,0,0,12,5,0% +12/18/2018 14:00,105.1525856,108.0888777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835258836,1.886506801,2.906346451,-2.906346451,0.033139175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505456474,120.3616588,0.505456474,59.6383412,0,0.951079514,0,0,0,12,6,0% +12/18/2018 15:00,94.20628485,116.5546615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644209847,2.034262602,9.350136036,-9.350136036,0,#DIV/0!,0,0,0.516631208,1,0.106545312,0,0.950488823,0.989250786,0.724496596,1,0,0,0.070972964,0.312029739,0.818528749,0.543025345,0.961238037,0.922476074,0,0,0,0,0,0,-0.303485019,107.6670422,0.303485019,72.33295778,0,0.885247222,0,0,0,12,7,0% +12/18/2018 16:00,83.94152881,125.8812418,46.32736193,247.1015235,20.24744357,19.98614367,0,19.98614367,19.63690845,0.349235223,34.47584904,22.63270865,11.84314039,0.610535129,11.23260526,1.465056057,2.197042137,-5.284817156,5.284817156,0.56608935,0.437051512,0.263927764,8.488824136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.87574332,0.442330623,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191214767,8.159780647,19.06695809,8.60211127,0,22.63270865,-0.091592752,95.2552436,0.091592752,84.7447564,0,0.504105279,19.06695809,20.01137918,32.16400554,12,8,69% +12/18/2018 17:00,75.10985997,136.5475151,197.0170714,580.1543775,47.93683929,111.7473217,63.77075711,47.97656462,46.49136672,1.485197905,49.21454252,0,49.21454252,1.445472573,47.76906995,1.310914357,2.383203724,-1.496786985,1.496786985,0.786119339,0.243313125,1.244832453,40.03809076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.68927008,1.047239958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901876874,38.48613576,45.59114695,39.53337572,63.77075711,0,0.109920324,83.68927738,-0.109920324,96.31072262,0.595125067,0,83.54272305,39.53337572,109.4165268,12,9,31% +12/18/2018 18:00,67.9513337,148.9283768,329.3401618,713.0361325,61.67067848,270.413563,208.1197778,62.29378524,59.81107999,2.482705253,81.71193368,0,81.71193368,1.859598497,79.85233519,1.185974504,2.599290524,-0.474145717,0.474145717,0.611237383,0.187255263,1.698257856,54.62181036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.49268511,1.347272781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230382035,52.50456176,58.72306714,53.85183454,208.1197778,0,0.291878305,73.02955908,-0.291878305,106.9704409,0.87869573,0,241.5970272,53.85183454,276.8419759,12,10,15% +12/18/2018 19:00,63.13247403,163.088392,416.9193741,770.0325902,68.9191734,409.6547393,339.6708189,69.98392038,66.84100603,3.142914349,103.1650965,0,103.1650965,2.078167363,101.0869292,1.101869537,2.846429412,0.106345748,-0.106345748,0.511967496,0.165305759,1.862623294,59.90836787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25011742,1.50562518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349464236,57.58620192,65.59958166,59.0918271,339.6708189,0,0.441112264,63.82513052,-0.441112264,116.1748695,0.93665017,0,383.752312,59.0918271,422.426731,12,11,10% +12/18/2018 20:00,61.23438336,178.4993444,450.6877884,787.9933027,71.4835733,504.021911,431.2963563,72.72555474,69.32807982,3.39747492,111.4299657,0,111.4299657,2.155493481,109.2744722,1.068741605,3.115401273,0.577976608,-0.577976608,0.431313868,0.158609963,1.771827863,56.9880747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.64078734,1.56164769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283683255,54.77910505,67.9244706,56.34075273,431.2963563,0,0.547335053,56.81562211,-0.547335053,123.1843779,0.958648277,0,481.3859796,56.34075273,518.2598754,12,12,8% +12/18/2018 21:00,62.53116589,194.0328428,427.6687029,775.9547429,69.74711765,538.9905431,468.1226111,70.86793204,67.64398471,3.22394733,105.7963613,0,105.7963613,2.103132936,103.6932284,1.09137473,3.386511964,1.076541602,-1.076541602,0.346054233,0.163086794,1.459494341,46.94235499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02197107,1.523712653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.057398682,45.12277716,66.07936975,46.64648981,468.1226111,0,0.603285972,52.89439768,-0.603285972,127.1056023,0.967120566,0,518.8103742,46.64648981,549.3395689,12,13,6% +12/18/2018 22:00,66.83239812,208.4931994,349.8703466,727.9917743,63.46228086,504.7463457,440.5602163,64.1861294,61.54865894,2.637470458,86.74373811,0,86.74373811,1.913621919,84.83011619,1.166445394,3.638892797,1.749993334,-1.749993334,0.230887204,0.181387996,0.976905956,31.42065365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.16291209,1.386412566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70776504,30.20272743,59.87067713,31.58913999,440.5602163,0,0.60517197,52.75878226,-0.60517197,127.2412177,0.967378857,0,486.0593156,31.58913999,506.7337759,12,14,4% +12/18/2018 23:00,73.59553881,221.2221194,224.951782,615.0414507,51.25414304,391.4972058,340.0927827,51.40442307,49.70864152,1.695781553,56.08766546,0,56.08766546,1.54550152,54.54216394,1.284484467,3.861054363,2.977210496,-2.977210496,0.021020709,0.227845019,0.413900027,13.31244763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.78183699,1.11971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29986916,12.79643102,48.08170615,13.91614161,340.0927827,0,0.552959126,56.42974085,-0.552959126,123.5702592,0.959577403,0,374.4270555,13.91614161,383.5348919,12,15,2% +12/18/2018 0:00,82.16341853,232.1910127,73.22422493,336.4552423,27.34919035,178.7220196,151.6455131,27.07650649,26.52451135,0.551995138,18.57874009,0,18.57874009,0.824678997,17.7540611,1.434022178,4.052497666,6.917514062,-6.917514062,0,0.373499213,0.206169749,6.631127839,0.394970103,1,0.143566045,0,0.946132176,0.984894139,0.724496596,1,25.71775036,0.597477126,0.056909868,0.312029739,0.851323997,0.575820593,0.961238037,0.922476074,0.141151274,6.374092306,25.85890164,6.971569432,91.75006916,0,0.450715263,63.21041624,-0.450715263,116.7895838,0.939065217,0,112.0182002,6.971569432,116.580953,12,16,4% +12/18/2018 1:00,92.20282602,241.7362475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609242894,4.219093441,-25.72737571,25.72737571,0,#DIV/0!,0,0,1,0.745533739,0,0.038849546,0.961238037,1,0.620239527,0.895742931,0,0,0.115824807,0.193768619,0.724496596,0.448993192,0.97849023,0.939728267,0,0,0,0,0,0,0.302099743,72.41623771,-0.302099743,107.5837623,0.884491749,0,0,0,0,12,17,0% +12/18/2018 2:00,103.0173534,250.3250911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797992004,4.36899704,-4.325428791,4.325428791,0.730154423,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121563358,83.01766302,-0.121563358,96.98233698,0.638691848,0,0,0,0,12,18,0% +12/18/2018 3:00,114.4129722,258.4767439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996883071,4.511270222,-2.179093903,2.179093903,0.902800694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080347008,94.60851203,0.080347008,85.39148797,0,0,0,0,0,12,19,0% +12/18/2018 4:00,126.1445103,266.8229558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201637038,4.656939098,-1.310514073,1.310514073,0.754264795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289880978,106.8508305,0.289880978,73.14916954,0,0.877515415,0,0,0,12,20,0% +12/18/2018 5:00,137.9676348,276.3522183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407989488,4.823256105,-0.807753102,0.807753102,0.668287605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49276986,119.5227996,0.49276986,60.47720039,0,0.948532755,0,0,0,12,21,0% +12/18/2018 6:00,149.5108917,289.1576337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609457328,5.046752765,-0.456553825,0.456553825,0.608228992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675198235,132.4695461,0.675198235,47.53045385,0,0.975947674,0,0,0,12,22,0% +12/18/2018 7:00,159.8180094,310.9745708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789350468,5.427530151,-0.178344878,0.178344878,0.56065246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82474453,145.5625992,0.82474453,34.43740082,0,0.989375166,0,0,0,12,23,0% +12/19/2018 8:00,165.5030701,354.5110091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888573495,6.187384343,0.064786456,-0.064786456,0.519074553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931226576,158.6268301,0.931226576,21.37316988,0,0.996307374,0,0,0,12,0,0% +12/19/2018 9:00,161.5124836,42.49676466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818924622,0.741708465,0.296566072,-0.296566072,0.479437904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987394653,170.8930637,0.987394653,9.106936338,0,0.999361686,0,0,0,12,1,0% +12/19/2018 10:00,151.7201279,67.52231612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648015773,1.178486735,0.537488513,-0.537488513,0.438237741,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989424953,171.6600729,0.989424953,8.339927143,0,0.999465596,0,0,0,12,2,0% +12/19/2018 11:00,140.3115628,81.46556211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448898749,1.421842286,0.813314455,-0.813314455,0.391068726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937179876,159.5832219,0.937179876,20.41677808,0,0.996648449,0,0,0,12,3,0% +12/19/2018 12:00,128.5072485,91.42140643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242874599,1.595604549,1.170022261,-1.170022261,0.330068099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834217478,146.5344444,0.834217478,33.4655556,0,0.990063591,0,0,0,12,4,0% +12/19/2018 13:00,116.7375456,99.90609886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037454531,1.743690368,1.720716847,-1.720716847,0.235893778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687549384,133.4364331,0.687549384,46.56356689,0,0.977277951,0,0,0,12,5,0% +12/19/2018 14:00,105.2577776,108.0404621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837094783,1.885661788,2.88725002,-2.88725002,0.036404857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507163591,120.475082,0.507163591,59.524918,0,0.951412481,0,0,0,12,6,0% +12/19/2018 15:00,94.30724951,116.4993353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645972013,2.033296978,9.139467909,-9.139467909,0,#DIV/0!,0,0,0.508064634,1,0.108982037,0,0.950211755,0.988973718,0.724496596,1,0,0,0.070026032,0.312029739,0.820687565,0.545184161,0.961238037,0.922476074,0,0,0,0,0,0,-0.305344576,107.7788956,0.305344576,72.22110436,0,0.886250571,0,0,0,12,7,0% +12/19/2018 16:00,84.03400448,125.8150352,44.87469819,240.2912609,19.89925563,19.63750408,0,19.63750408,19.29921965,0.33828443,33.93775836,22.45733227,11.48042609,0.600035978,10.88039012,1.466670062,2.195886613,-5.376493772,5.376493772,0.550411725,0.443440434,0.253638002,8.157870012,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.55114401,0.434724023,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.183759869,7.841654955,18.73490388,8.276378978,0,22.45733227,-0.093458797,95.36262073,0.093458797,84.63737927,0,0.515004885,18.73490388,19.84201481,31.72110573,12,8,69% +12/19/2018 17:00,75.19359233,136.4664163,195.1954199,576.1482017,47.95851094,110.2727842,62.28893381,47.98385041,46.51238488,1.471465526,48.7735155,0,48.7735155,1.446126053,47.32738945,1.312375763,2.381788282,-1.51055483,1.51055483,0.788473779,0.245694858,1.236685379,39.77605287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.70947353,1.047713402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.895974347,38.23425497,45.60544788,39.28196838,62.28893381,0,0.108112693,83.79346799,-0.108112693,96.20653201,0.587519615,0,82.2014183,39.28196838,107.910681,12,9,31% +12/19/2018 18:00,68.02024341,148.8293081,327.7465594,710.4298927,61.84758175,268.6647314,206.2113904,62.45334097,59.98264896,2.470692005,81.33088062,0,81.33088062,1.864932783,79.46594783,1.187177206,2.59756145,-0.479993069,0.479993069,0.612237339,0.18870551,1.693437723,54.46677832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.65760374,1.351137453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226889865,52.35553906,58.8844936,53.70667651,206.2113904,0,0.290262829,73.12630814,-0.290262829,106.8736919,0.877742325,0,239.8849589,53.70667651,275.0349045,12,10,15% +12/19/2018 19:00,63.18078752,162.9716409,415.709762,768.0682045,69.17519329,408.0127316,337.7896299,70.22310177,67.08930599,3.133795782,102.879532,0,102.879532,2.085887307,100.7936447,1.102712766,2.844391721,0.102543604,-0.102543604,0.5126177,0.166402619,1.860595326,59.84314143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48879278,1.511218253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.34799498,57.52350379,65.83678776,59.03472204,337.7896299,0,0.43979119,63.90944098,-0.43979119,116.090559,0.936309683,0,382.1124889,59.03472204,420.7495338,12,11,10% +12/19/2018 20:00,61.2573413,178.3710361,449.9328315,786.3673544,71.78730539,502.6767407,429.6623037,73.014437,69.62265327,3.391783737,111.2560763,0,111.2560763,2.164652124,109.0914241,1.069142297,3.113161871,0.574652415,-0.574652415,0.431882339,0.15955116,1.772295769,57.00312416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.92394255,1.568283095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284022252,54.79357116,68.2079648,56.36185426,429.6623037,0,0.546388785,56.88038045,-0.546388785,123.1196195,0.958490069,0,480.0350159,56.36185426,516.9227223,12,12,8% +12/19/2018 21:00,62.5272658,193.9035634,427.3923717,774.5338513,70.07941813,538.0530206,466.8648913,71.18812934,67.96626511,3.221864229,105.7393817,0,105.7393817,2.113153022,103.6262287,1.091306661,3.384255613,1.07276366,-1.07276366,0.346700299,0.163969745,1.462151852,47.02782966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.33175924,1.530972171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.059324039,45.20493866,66.39108328,46.73591083,466.8648913,0,0.602768866,52.93153848,-0.602768866,127.0684615,0.967049465,0,517.8725266,46.73591083,548.4602455,12,13,6% +12/19/2018 22:00,66.80408703,208.3722658,350.0571988,726.7544521,63.80581173,504.2861691,439.765459,64.52071012,61.88183109,2.638879029,86.79940132,0,86.79940132,1.923980642,84.87542068,1.165951272,3.636782108,1.744337266,-1.744337266,0.231854449,0.182272531,0.981310136,31.56230719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.48316984,1.393917426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710955853,30.3388902,60.19412569,31.73280763,439.765459,0,0.605108724,52.76333404,-0.605108724,127.236666,0.967370221,0,485.610135,31.73280763,506.378623,12,14,4% +12/19/2018 23:00,73.5476094,221.1135636,225.5430166,614.2024256,51.58951202,391.5984314,339.864295,51.73413641,50.03389788,1.700238529,56.24112976,0,56.24112976,1.555614132,54.68551563,1.283647941,3.859159706,2.964949722,-2.964949722,0.023117425,0.22873469,0.419218222,13.48349906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.09448578,1.127037143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.303722175,12.96085217,48.39820795,14.08788931,339.864295,0,0.553342483,56.40337518,-0.553342483,123.5966248,0.959640048,0,374.5455964,14.08788931,383.7658382,12,15,2% +12/19/2018 0:00,82.1013396,232.0942113,74.02359391,337.3145049,27.66936662,179.6905566,152.2975024,27.39305425,26.83503313,0.558021119,18.78221085,0,18.78221085,0.834333493,17.94787736,1.432938696,4.050808163,6.858725371,-6.858725371,0,0.373791181,0.208583373,6.708758282,0.3912674,1,0.144779551,0,0.945984067,0.98474603,0.724496596,1,26.01870437,0.604471775,0.056460167,0.312029739,0.852398646,0.576895242,0.961238037,0.922476074,0.142815105,6.44871364,26.16151948,7.053185416,92.70845458,0,0.45150001,63.16003616,-0.45150001,116.8399638,0.939258031,0,113.23868,7.053185416,117.8548488,12,16,4% +12/19/2018 1:00,92.12934971,241.6481826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60796049,4.217556417,-26.61002407,26.61002407,0,#DIV/0!,0,0,1,0.754946155,0,0.037562148,0.961238037,1,0.623504352,0.899007756,0,0,0.115824807,0.197462805,0.724496596,0.448993192,0.97799682,0.939234857,0,0,0,0,0,0,0.303244447,72.34742321,-0.303244447,107.6525768,0.885116519,0,0,0,0,12,17,0% +12/19/2018 2:00,102.936499,250.241741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796580827,4.367542306,-4.353444698,4.353444698,0.725363421,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122966342,82.93667026,-0.122966342,97.06332974,0.643384669,0,0,0,0,12,18,0% +12/19/2018 3:00,114.3273076,258.3932279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995387943,4.509812592,-2.188252219,2.188252219,0.904366858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078791896,94.51912724,0.078791896,85.48087276,0,0,0,0,0,12,19,0% +12/19/2018 4:00,126.0563715,266.732439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200098725,4.655359283,-1.315381952,1.315381952,0.755097251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288290177,106.755619,0.288290177,73.24438095,0,0.876563636,0,0,0,12,20,0% +12/19/2018 5:00,137.8798604,276.2425104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406457536,4.821341341,-0.811011799,0.811011799,0.668844875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491262096,119.4235693,0.491262096,60.57643073,0,0.948221336,0,0,0,12,21,0% +12/19/2018 6:00,149.4287868,289.0006446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.608024327,5.044012789,-0.459071795,0.459071795,0.60865959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673886365,132.3677296,0.673886365,47.63227038,0,0.975803514,0,0,0,12,22,0% +12/19/2018 7:00,159.7570244,310.6943399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788286079,5.422639198,-0.180506327,0.180506327,0.56102209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823727793,145.4597202,0.823727793,34.54027979,0,0.989300336,0,0,0,12,23,0% +12/20/2018 8:00,165.5097239,354.0547064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888689626,6.179420358,0.062760853,-0.062760853,0.519420952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930583773,158.525998,0.930583773,21.47400198,0,0.996270286,0,0,0,12,0,0% +12/20/2018 9:00,161.5912475,42.23474809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820299311,0.737135413,0.2945051,-0.2945051,0.479790351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987178734,170.8152319,0.987178734,9.184768088,0,0.999350611,0,0,0,12,1,0% +12/20/2018 10:00,151.8196959,67.40351981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.649753563,1.176413348,0.535202758,-0.535202758,0.438628628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98965938,171.7531924,0.98965938,8.246807627,0,0.999477567,0,0,0,12,2,0% +12/20/2018 11:00,140.4160396,81.3928908,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450722214,1.420573932,0.810508991,-0.810508991,0.391548489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937857005,159.6947275,0.937857005,20.30527247,0,0.996686969,0,0,0,12,3,0% +12/20/2018 12:00,128.6123926,91.36417917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244709709,1.594605745,1.166081636,-1.166081636,0.330741985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835299078,146.6469931,0.835299078,33.3530069,0,0.990141201,0,0,0,12,4,0% +12/20/2018 13:00,116.8414229,99.85283414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039267532,1.742760723,1.713895639,-1.713895639,0.237060274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688969259,133.5485721,0.688969259,46.45142791,0,0.977427822,0,0,0,12,5,0% +12/20/2018 14:00,105.3588029,107.985221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838858007,1.88469765,2.869488674,-2.869488674,0.039442226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508832121,120.5860692,0.508832121,59.41393079,0,0.951735763,0,0,0,12,6,0% +12/20/2018 15:00,94.40354695,116.4377927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64765272,2.032222856,8.948953562,-8.948953562,0,#DIV/0!,0,0,0.50005187,1,0.111283246,0,0.949948836,0.988710799,0.724496596,1,0,0,0.069134615,0.312029739,0.822726347,0.547222943,0.961238037,0.922476074,0,0,0,0,0,0,-0.30715487,107.8878531,0.30715487,72.11214688,0,0.887215669,0,0,0,12,7,0% +12/20/2018 16:00,84.12125244,125.7431724,43.51094934,233.7787958,19.56649058,19.30449261,0,19.30449261,18.97648869,0.328003915,33.41070223,22.27096693,11.1397353,0.590001884,10.54973342,1.468192826,2.19463237,-5.466935469,5.466935469,0.534945284,0.44969119,0.244059937,7.849806531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.24092274,0.427454356,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176820594,7.545532619,18.41774333,7.972986976,0,22.27096693,-0.095265128,95.46657974,0.095265128,84.53342026,0,0.525148976,18.41774333,19.66856246,31.29042409,12,8,70% +12/20/2018 17:00,75.27134925,136.3803498,193.4859783,572.2759746,47.98962168,108.878082,60.8769454,48.00113656,46.54255752,1.458579033,48.35997969,0,48.35997969,1.447064156,46.91291553,1.313732877,2.380286139,-1.524132141,1.524132141,0.790795636,0.248026354,1.229120968,39.53275542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.73847662,1.048393055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890493958,38.00038821,45.62897058,39.04878127,60.8769454,0,0.106376902,83.89349841,-0.106376902,96.10650159,0.579973153,0,80.93596453,39.04878127,106.4926109,12,9,32% +12/20/2018 18:00,68.08245192,148.726288,326.2767982,707.91207,62.03308986,267.017638,204.3954624,62.62217565,60.16256332,2.459612325,80.98011376,0,80.98011376,1.870526537,79.10958722,1.188262949,2.59576341,-0.48588203,0.48588203,0.61324441,0.190124122,1.689202658,54.33056409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.83054426,1.355190109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223821576,52.22460477,59.05436584,53.57979487,204.3954624,0,0.288730015,73.21806087,-0.288730015,106.7819391,0.876827841,0,238.2739978,53.57979487,273.340902,12,10,15% +12/20/2018 19:00,63.22180551,162.8524331,414.6311755,766.1762721,69.43979613,406.4873772,336.0157822,70.47159501,67.34593007,3.125664942,102.625995,0,102.625995,2.093866059,100.5321289,1.103428665,2.842311152,0.098608785,-0.098608785,0.513290594,0.167473649,1.859150492,59.79667061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.73546961,1.516998832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346948203,57.47883427,66.08241781,58.9958331,336.0157822,0,0.438561979,63.98783431,-0.438561979,116.0121657,0.935991029,0,380.5901756,58.9958331,419.2017684,12,11,10% +12/20/2018 20:00,61.27270246,178.24218,449.3123684,784.8107189,72.09989022,501.4596504,428.1467314,73.31291894,69.92581251,3.387106424,111.1150634,0,111.1150634,2.17407771,108.9409857,1.0694104,3.110912907,0.571122493,-0.571122493,0.432485991,0.160467183,1.773330968,57.03641971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21535074,1.5751119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28477225,54.82557612,68.50012299,56.40068802,428.1467314,0,0.545541391,56.93833182,-0.545541391,123.0616682,0.958347926,0,478.813655,56.40068802,515.7267773,12,12,8% +12/20/2018 21:00,62.51585469,193.7757072,427.2502217,773.1889092,70.42110843,537.2526395,465.7341947,71.51844482,68.29765218,3.220792642,105.715219,0,105.715219,2.123456245,103.5917628,1.091107499,3.3820241,1.068678934,-1.068678934,0.347398828,0.164824042,1.465342099,47.13043898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.65030111,1.538436821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.061635362,45.30357064,66.71193647,46.84200746,465.7341947,0,0.602354986,52.96125205,-0.602354986,127.0387479,0.966992469,0,517.0733954,46.84200746,547.7305525,12,13,6% +12/20/2018 22:00,66.76868413,208.2543955,350.3737861,725.6131983,64.15985555,503.9713533,439.1048885,64.86646478,62.22519918,2.641265598,86.88683729,0,86.88683729,1.93465637,84.95218092,1.165333375,3.634724884,1.73817708,-1.73817708,0.232907903,0.18311831,0.986186534,31.71914892,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.81322831,1.401651954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714488787,30.48965244,60.52771709,31.89130439,439.1048885,0,0.605150085,52.76035736,-0.605150085,127.2396426,0.967375869,0,485.3071901,31.89130439,506.179411,12,14,4% +12/20/2018 23:00,73.49319307,221.0092416,226.2539589,613.5083596,51.93828649,391.856291,339.7785375,52.07775343,50.37215552,1.705597912,56.42402278,0,56.42402278,1.56613097,54.85789181,1.282698197,3.857338943,2.951642858,-2.951642858,0.025393033,0.229557471,0.424900843,13.66627168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.41963189,1.134656556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307839214,13.13654016,48.7274711,14.27119672,339.7785375,0,0.553828701,56.36992358,-0.553828701,123.6300764,0.959719377,0,374.8195175,14.27119672,384.1597304,12,15,2% +12/20/2018 0:00,82.03344748,232.0024502,74.91710872,338.4340692,28.01184235,180.8335607,153.1016219,27.73193876,27.16718195,0.564756811,19.00918077,0,19.00918077,0.8446604,18.16452037,1.431753755,4.049206628,6.795996704,-6.795996704,0,0.373904477,0.2111651,6.791795488,0.387266238,1,0.14609705,0,0.945822887,0.98458485,0.724496596,1,26.34058377,0.611953584,0.055972704,0.312029739,0.85356535,0.578061946,0.961238037,0.922476074,0.144596382,6.528532161,26.48518015,7.140485746,93.81053273,0,0.452382416,63.10335966,-0.452382416,116.8966403,0.939474042,0,114.6177405,7.140485746,119.2910456,12,16,4% +12/20/2018 1:00,92.0505788,241.5657877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606585678,4.216118356,-27.62728309,27.62728309,0,#DIV/0!,0,0,1,0.764965656,0,0.036180308,0.961238037,1,0.627023233,0.902526637,0,0,0.115824807,0.201445184,0.724496596,0.448993192,0.977461552,0.938699589,0,0,0,0,0,0,0.304480709,72.27307513,-0.304480709,107.7269249,0.885785984,0,0,0,0,12,17,0% +12/20/2018 2:00,102.8508314,250.1646908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795085647,4.366197527,-4.383493889,4.383493889,0.720224706,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124451627,82.85091098,-0.124451627,97.14908902,0.648237473,0,0,0,0,12,18,0% +12/20/2018 3:00,114.237182,258.3168039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993814955,4.50847874,-2.197884616,2.197884616,0.906014095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.077165222,94.42564106,0.077165222,85.57435894,0,0,0,0,0,12,19,0% +12/20/2018 4:00,125.9639535,266.6501567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198485727,4.653923185,-1.320419273,1.320419273,0.755958684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286639293,106.656862,0.286639293,73.34313804,0,0.875564739,0,0,0,12,20,0% +12/20/2018 5:00,137.7877306,276.1428107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404849567,4.819601253,-0.814333747,0.814333747,0.669412962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489705677,119.3212384,0.489705677,60.67876156,0,0.947897855,0,0,0,12,21,0% +12/20/2018 6:00,149.3417729,288.8564584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606505648,5.041496265,-0.461602614,0.461602614,0.609092386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672536432,132.2631309,0.672536432,47.73686906,0,0.975654585,0,0,0,12,22,0% +12/20/2018 7:00,159.6895667,310.4297337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787108719,5.418020949,-0.182649873,0.182649873,0.561388657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822682017,145.3541822,0.822682017,34.64581781,0,0.989223176,0,0,0,12,23,0% +12/21/2018 8:00,165.5077654,353.5998974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888655443,6.171482444,0.060777436,-0.060777436,0.519760136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929918767,158.4221558,0.929918767,21.5778442,0,0.996231863,0,0,0,12,0,0% +12/21/2018 9:00,161.6634741,41.95569889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.821559904,0.732265086,0.292511176,-0.292511176,0.480131332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986944792,170.7316347,0.986944792,9.268365304,0,0.999338605,0,0,0,12,1,0% +12/21/2018 10:00,151.9146642,67.2705535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.651411072,1.174092648,0.533016036,-0.533016036,0.439002579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989877017,171.8405869,0.989877017,8.159413094,0,0.999488675,0,0,0,12,2,0% +12/21/2018 11:00,140.5166252,81.30932404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452477763,1.419115417,0.807852284,-0.807852284,0.392002813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938515546,159.8037377,0.938515546,20.19626235,0,0.996724377,0,0,0,12,3,0% +12/21/2018 12:00,128.7137851,91.29807922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246479342,1.593452083,1.16238271,-1.16238271,0.331374539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836357387,146.7574443,0.836357387,33.24255573,0,0.990216945,0,0,0,12,4,0% +12/21/2018 13:00,116.941393,99.79195619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041012339,1.741698202,1.707538137,-1.707538137,0.23814747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690358558,133.6584985,0.690358558,46.34150146,0,0.977573868,0,0,0,12,5,0% +12/21/2018 14:00,105.4555746,107.9232009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840546991,1.883615195,2.853036537,-2.853036537,0.042255707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51046071,120.6945223,0.51046071,59.3054777,0,0.952049268,0,0,0,12,6,0% +12/21/2018 15:00,94.49509815,116.3700899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64925059,2.031041219,8.776849362,-8.776849362,0,#DIV/0!,0,0,0.492585649,1,0.113446888,0,0.949700519,0.988462482,0.724496596,1,0,0,0.068298996,0.312029739,0.824643264,0.54913986,0.961238037,0.922476074,0,0,0,0,0,0,-0.308914422,107.9938207,0.308914422,72.00617927,0,0.888142876,0,0,0,12,7,0% +12/21/2018 16:00,84.20321121,125.6657197,42.23504404,227.571345,19.2502158,18.98813637,0,18.98813637,18.66975077,0.318385602,32.89761868,22.07677824,10.82084044,0.580465032,10.24037541,1.469623276,2.193280566,-5.555772557,5.555772557,0.519753247,0.455787753,0.235173562,7.563990166,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.94607458,0.42054494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.170382445,7.270795058,18.11645702,7.691339998,0,22.07677824,-0.097010361,95.56703954,0.097010361,84.43296046,0,0.534591133,18.11645702,19.4933899,30.87449085,12,8,70% +12/21/2018 17:00,75.34307624,136.2893908,191.8894865,568.5428624,48.03071102,107.563553,59.53460109,48.02895187,46.58240787,1.446544003,47.97413077,0,47.97413077,1.448303152,46.52582761,1.314984749,2.378698605,-1.53748847,1.53748847,0.793079703,0.250304026,1.222145518,39.30840096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.77678229,1.049290703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885440268,37.78473017,45.66222256,38.83402088,59.53460109,0,0.104714358,83.98929022,-0.104714358,96.01070978,0.572510564,0,79.74641058,38.83402088,105.1625006,12,9,32% +12/21/2018 18:00,68.13791994,148.6193973,324.9316046,705.4852422,62.22750184,265.4731652,202.6725805,62.80058475,60.35111307,2.449471687,80.65981823,0,80.65981823,1.876388776,78.78342945,1.189231048,2.593897815,-0.491802779,0.491802779,0.614256918,0.191509539,1.685555926,54.21327266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.01178545,1.35943728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221179531,52.11185978,59.23296498,53.47129706,202.6725805,0,0.287281106,73.3047504,-0.287281106,106.6952496,0.875954443,0,236.7649124,53.47129706,271.7608069,12,10,15% +12/21/2018 19:00,63.25550583,162.7308508,413.6840586,764.3582817,69.71317933,405.0794885,334.3498936,70.72959493,67.61106976,3.118525175,102.4045991,0,102.4045991,2.102109571,100.3024895,1.104016847,2.84018914,0.09454715,-0.09454715,0.513985175,0.168517925,1.858289811,59.76898815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.99033196,1.522971228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346324642,57.45222483,66.33665661,58.97519606,334.3498936,0,0.437425618,64.06025957,-0.437425618,115.9397404,0.935694852,0,379.1861308,58.97519606,417.7842171,12,11,10% +12/21/2018 20:00,61.28046187,178.1128571,448.8264756,783.3242849,72.42146883,500.3711442,426.7500063,73.6211379,70.23769434,3.383443558,111.0069498,0,111.0069498,2.183774492,108.8231753,1.069545827,3.108655797,0.567392266,-0.567392266,0.433123898,0.16135739,1.774932654,57.08793545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.51514342,1.582137186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285932666,54.875095,68.80107609,56.45723219,426.7500063,0,0.544793535,56.98944433,-0.544793535,123.0105557,0.958222112,0,477.7223685,56.45723219,514.6724978,12,12,8% +12/21/2018 21:00,62.49694447,193.6493547,427.2419407,771.9203135,70.77229241,536.5894559,464.730479,71.85897689,68.63824667,3.220730216,105.7238007,0,105.7238007,2.134045738,103.5897549,1.090777454,3.379818835,1.064294567,-1.064294567,0.348148599,0.165649216,1.46906289,47.2501124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.97769348,1.546108873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064331063,45.41860529,67.04202455,46.96471416,464.730479,0,0.602044629,52.98352579,-0.602044629,127.0164742,0.966949679,0,516.4130118,46.96471416,547.1504779,12,13,6% +12/21/2018 22:00,66.72621808,208.1396688,350.8194357,724.567702,64.52448656,503.8013679,438.5779076,65.22346031,62.57883522,2.644625093,87.00588518,0,87.00588518,1.94565134,85.06023384,1.164592203,3.632722525,1.731525859,-1.731525859,0.234045328,0.183925062,0.991532332,31.89108815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.15315671,1.409617772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.718361799,30.65492697,60.87151851,32.06454474,438.5779076,0,0.605295967,52.74985758,-0.605295967,127.2501424,0.967395782,0,485.1499364,32.06454474,506.1355396,12,14,4% +12/21/2018 23:00,73.43233418,220.9092305,227.0836957,612.9571561,52.30049242,392.2693566,339.8340642,52.43529243,50.72343961,1.711852819,56.63612392,0,56.63612392,1.577052815,55.0590711,1.281636009,3.85559342,2.937327033,-2.937327033,0.027841183,0.230313728,0.430946457,13.86071944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.75729951,1.142569396,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312219241,13.32345075,49.06951875,14.46602014,339.8340642,0,0.554417321,56.32940935,-0.554417321,123.6705907,0.959815227,0,375.2474283,14.46602014,384.7151492,12,15,3% +12/21/2018 0:00,81.95979783,231.9158007,75.90441318,339.8060955,28.37644872,182.1480725,154.0550789,28.09299363,27.5207941,0.572199529,19.25955839,0,19.25955839,0.855654627,18.40390377,1.430468326,4.047694309,6.729615123,-6.729615123,0,0.373844518,0.213913657,6.880198524,0.382974391,1,0.147517449,0,0.945648677,0.984410641,0.724496596,1,26.68322078,0.619918864,0.05544807,0.312029739,0.854823126,0.579319722,0.961238037,0.922476074,0.14649459,6.613508523,26.82971537,7.233427387,95.05592891,0,0.453361729,63.04042558,-0.453361729,116.9595744,0.93971279,0,116.1549876,7.233427387,120.8891211,12,16,4% +12/21/2018 1:00,91.96658447,241.4891274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605119701,4.214780382,-28.80251198,28.80251198,0,#DIV/0!,0,0,1,0.77556703,0,0.034705254,0.961238037,1,0.630796111,0.906299515,0,0,0.115824807,0.205715858,0.724496596,0.448993192,0.976883664,0.938121701,0,0,0,0,0,0,0.305807431,72.1932525,-0.305807431,107.8067475,0.886498414,0,0,0,0,12,17,0% +12/21/2018 2:00,102.7604318,250.093998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793507876,4.364963704,-4.415623127,4.415623127,0.714730283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126017904,82.76045775,-0.126017904,97.23954225,0.653230983,0,0,0,0,12,18,0% +12/21/2018 3:00,114.1426848,258.2475229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992165667,4.50726956,-2.207992669,2.207992669,0.907742674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.075468411,94.32813658,0.075468411,85.67186342,0,0,0,0,0,12,19,0% +12/21/2018 4:00,125.8673535,266.5761554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196799739,4.652631619,-1.325624397,1.325624397,0.756848813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284929769,106.5546506,0.284929769,73.44534942,0,0.87451816,0,0,0,12,20,0% +12/21/2018 5:00,137.691351,276.0531663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403167427,4.818036663,-0.817717099,0.817717099,0.669991549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488101964,119.2159054,0.488101964,60.78409463,0,0.947562387,0,0,0,12,21,0% +12/21/2018 6:00,149.2499673,288.7251486,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903337,5.039204477,-0.464144588,0.464144588,0.609527089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671149619,132.155855,0.671149619,47.84414496,0,0.975500963,0,0,0,12,22,0% +12/21/2018 7:00,159.6157639,310.181047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785820619,5.413680548,-0.184773983,0.184773983,0.561751902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821608127,145.2460989,0.821608127,34.75390107,0,0.989143737,0,0,0,12,23,0% +12/22/2018 8:00,165.4972127,353.1477239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888471265,6.163590527,0.058837606,-0.058837606,0.520091866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929232162,158.3154378,0.929232162,21.68456224,0,0.996192134,0,0,0,12,0,0% +12/22/2018 9:00,161.7290383,41.65995005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822704214,0.727103295,0.290585601,-0.290585601,0.480460625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986693066,170.6425092,0.986693066,9.357490753,0,0.99932568,0,0,0,12,1,0% +12/22/2018 10:00,152.0049168,67.12346385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652986277,1.171525449,0.530929542,-0.530929542,0.439359391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990077723,171.9220147,0.990077723,8.077985298,0,0.999498914,0,0,0,12,2,0% +12/22/2018 11:00,140.6132153,81.21488846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454163579,1.417467205,0.805345338,-0.805345338,0.392431526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939154989,159.9101286,0.939154989,20.0898714,0,0.996760651,0,0,0,12,3,0% +12/22/2018 12:00,128.8113293,91.22313901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248181811,1.59214413,1.158925871,-1.158925871,0.331965693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837391559,146.8656912,0.837391559,33.13430883,0,0.990290776,0,0,0,12,4,0% +12/22/2018 13:00,117.0373654,99.7235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042687374,1.740503514,1.701641966,-1.701641966,0.239155775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691716159,133.7661117,0.691716159,46.23388827,0,0.977716016,0,0,0,12,5,0% +12/22/2018 14:00,105.5480092,107.8544509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842160279,1.882415281,2.837869264,-2.837869264,0.044849463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.512048038,120.8003451,0.512048038,59.19965493,0,0.952352912,0,0,0,12,6,0% +12/22/2018 15:00,94.58182817,116.2962849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.650764314,2.029753079,8.621648217,-8.621648217,0,#DIV/0!,0,0,0.485658881,1,0.115471136,0,0.949467222,0.988229185,0.724496596,1,0,0,0.067519397,0.312029739,0.826436684,0.55093328,0.961238037,0.922476074,0,0,0,0,0,0,-0.310621806,108.0967074,0.310621806,71.90329258,0,0.88903255,0,0,0,12,7,0% +12/22/2018 16:00,84.27982374,125.5827439,41.04583292,221.6750381,18.9514498,18.68941449,0,18.68941449,18.37999367,0.309420826,32.40130677,21.87781323,10.52349354,0.571456135,9.952037403,1.470960417,2.191832365,-5.642622591,5.642622591,0.504901017,0.461714344,0.226958728,7.299772848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.66754903,0.414018024,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.164430826,7.016819322,17.83197985,7.430837346,0,21.87781323,-0.098693175,95.66392263,0.098693175,84.33607737,0,0.543379353,17.83197985,19.31878934,30.4757411,12,8,71% +12/22/2018 17:00,75.40872331,136.1936138,190.406597,564.9537445,48.0823079,106.3294574,58.26164312,48.06781427,46.63244892,1.435365357,47.61614289,0,47.61614289,1.449858988,46.1662839,1.316130507,2.377026981,-1.550593532,1.550593532,0.795320801,0.25252438,1.215764919,39.10317895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.82488365,1.050417901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880817545,37.58746297,45.70570119,38.63788087,58.26164312,0,0.103126395,84.08076912,-0.103126395,95.91923088,0.565158075,0,78.63273925,38.63788087,103.9204595,12,9,32% +12/22/2018 18:00,68.18661256,148.508715,323.7116119,703.1518123,62.43110697,264.0320954,201.0432418,62.98885361,60.54857875,2.440274866,80.37015632,0,80.37015632,1.882528221,78.4876281,1.190080895,2.591966045,-0.497745411,0.497745411,0.615273168,0.192860264,1.682500428,54.11499731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20159697,1.363885288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218965832,52.01739378,59.4205628,53.38127907,201.0432418,0,0.285917263,73.38631439,-0.285917263,106.6136856,0.875124235,0,235.3583761,53.38127907,270.2953556,12,10,15% +12/22/2018 19:00,63.2818702,162.6069736,412.868764,762.6155841,69.99553077,403.7897693,332.7924829,70.9972864,67.88490726,3.112379139,102.2154354,0,102.2154354,2.110623509,100.1048119,1.104476992,2.838027077,0.090364767,-0.090364767,0.514700404,0.169534576,1.858013985,59.76011665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.25355499,1.529139547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346124807,57.44369721,66.59967979,58.97283675,332.7924829,0,0.436383008,64.12667045,-0.436383008,115.8733295,0.935421753,0,377.9010076,58.97283675,416.4975498,12,11,10% +12/22/2018 20:00,61.28061785,177.9831459,448.4751461,781.9088126,72.75217254,499.4116155,425.4723943,73.9392212,70.55842612,3.380795088,110.9317379,0,110.9317379,2.193746429,108.7379914,1.069548549,3.106391909,0.563467468,-0.563467468,0.433795078,0.162221191,1.777099774,57.15763748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.823443,1.58936182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287502737,54.94209524,69.11094574,56.53145706,425.4723943,0,0.544145797,57.03369028,-0.544145797,122.9663097,0.958112862,0,476.7615191,56.53145706,513.7602271,12,12,8% +12/22/2018 21:00,62.47054979,193.5245842,427.3671461,770.7283232,71.13306339,536.0634167,463.8536036,72.20981314,68.98813907,3.221674068,105.7650368,0,105.7650368,2.144924314,103.6201125,1.090316779,3.377641179,1.059618176,-1.059618176,0.348948309,0.166444857,1.47331187,47.38677421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.31402337,1.553990364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.067409434,45.54996981,67.3814328,47.10396018,463.8536036,0,0.601838014,52.99835055,-0.601838014,127.0016495,0.966921167,0,515.8913004,47.10396018,546.7199003,12,13,6% +12/22/2018 22:00,66.67671975,208.0281632,351.3934228,723.6174823,64.89976594,503.7755765,438.1838259,65.59175059,62.94279854,2.64895205,87.15637105,0,87.15637105,1.956967398,85.19940366,1.163728294,3.630776385,1.724397498,-1.724397498,0.23526435,0.184692603,0.997344666,32.0780328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50301211,1.417816218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.722572815,30.83462528,61.22558492,32.2524415,438.1838259,0,0.605546213,52.73184282,-0.605546213,127.2681572,0.967429919,0,485.137728,32.2524415,506.2463059,12,14,4% +12/22/2018 23:00,73.36507879,220.8136045,228.0312883,612.5464807,52.67613567,392.8360983,340.0293463,52.80675199,51.08775582,1.718996172,56.87720575,0,56.87720575,1.588379845,55.2888259,1.280462181,3.853924432,2.922041177,-2.922041177,0.030455218,0.231003982,0.437353751,14.06680004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.10749411,1.15077579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316861304,13.52154325,49.42435542,14.67231904,340.0293463,0,0.555107828,56.28185799,-0.555107828,123.718142,0.95992741,0,375.827845,14.67231904,385.4305844,12,15,3% +12/22/2018 0:00,81.88044731,231.8343309,76.98517961,341.422502,28.76298024,183.6310873,155.1550702,28.47601706,27.89567026,0.580346803,19.53325808,0,19.53325808,0.867309978,18.6659481,1.429083399,4.046272393,6.659871955,-6.659871955,0,0.373617109,0.216827495,6.973917565,0.378399954,1,0.149039614,0,0.945461479,0.984223442,0.724496596,1,27.04641216,0.628363127,0.05488688,0.312029739,0.856170958,0.580667554,0.961238037,0.922476074,0.14850906,6.703594829,27.19492122,7.331957956,96.44439874,0,0.454437154,62.9712744,-0.454437154,117.0287256,0.939973785,0,117.8501278,7.331957956,122.6487476,12,16,4% +12/22/2018 1:00,91.87743838,241.418262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603563808,4.213543546,-30.16557981,30.16557981,0,#DIV/0!,0,0,1,0.786724525,0,0.03313823,0.961238037,1,0.634823017,0.910326421,0,0,0.115824807,0.210275045,0.724496596,0.448993192,0.976262325,0.937500362,0,0,0,0,0,0,0.30722349,72.10801549,-0.30722349,107.8919845,0.887252028,0,0,0,0,12,17,0% +12/22/2018 2:00,102.665381,250.0297151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791848926,4.363841756,-4.449884232,4.449884232,0.708871289,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127663859,82.66538357,-0.127663859,97.33461643,0.658346478,0,0,0,0,12,18,0% +12/22/2018 3:00,114.0439044,258.1854303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990441624,4.506185839,-2.218578367,2.218578367,0.909552935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.073702881,94.22669655,0.073702881,85.77330345,0,0,0,0,0,12,19,0% +12/22/2018 4:00,125.7666669,266.510474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195042426,4.651485263,-1.330995768,1.330995768,0.757767371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283163025,106.449075,0.283163025,73.55092499,0,0.873423274,0,0,0,12,20,0% +12/22/2018 5:00,137.5908248,275.973613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401412914,4.816648195,-0.821160043,0.821160043,0.670580327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486452285,119.1076661,0.486452285,60.89233395,0,0.947214996,0,0,0,12,21,0% +12/22/2018 6:00,149.1534841,288.6067687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603219388,5.037138357,-0.46669605,0.46669605,0.609963415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669727069,132.0460034,0.669727069,47.95399663,0,0.975342722,0,0,0,12,22,0% +12/22/2018 7:00,159.5357424,309.9485281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78442398,5.409622326,-0.186877162,0.186877162,0.562111567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820507004,145.1355791,0.820507004,34.86442093,0,0.989062068,0,0,0,12,23,0% +12/23/2018 8:00,165.4780928,352.699306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888137559,6.155764159,0.056942723,-0.056942723,0.52041591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928524517,158.20597,0.928524517,21.79402999,0,0.996151126,0,0,0,12,0,0% +12/23/2018 9:00,161.7878159,41.34788097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823730077,0.721656662,0.288729629,-0.288729629,0.480778015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986423754,170.5480797,0.986423754,9.451920259,0,0.999311845,0,0,0,12,1,0% +12/23/2018 10:00,152.0903373,66.9623155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654477146,1.16871288,0.528944422,-0.528944422,0.439698866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990261323,171.9972235,0.990261323,8.002776549,0,0.999508277,0,0,0,12,2,0% +12/23/2018 11:00,140.7057059,81.10961946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455777845,1.415629915,0.802989098,-0.802989098,0.392834466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939774799,160.0137712,0.939774799,19.98622882,0,0.996795764,0,0,0,12,3,0% +12/23/2018 12:00,128.9049297,91.13939624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249815445,1.590682543,1.155711466,-1.155711466,0.332515389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83840074,146.971625,0.83840074,33.02837497,0,0.990362648,0,0,0,12,4,0% +12/23/2018 13:00,117.1292517,99.64752647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044291092,1.739177428,1.696204858,-1.696204858,0.240085575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693040945,133.8713107,0.693040945,46.1286893,0,0.97785419,0,0,0,12,5,0% +12/23/2018 14:00,105.6360257,107.7790224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843696457,1.881098806,2.823964267,-2.823964267,0.047227358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513592802,120.9034422,0.513592802,59.09655776,0,0.952646611,0,0,0,12,6,0% +12/23/2018 15:00,94.66366493,116.216437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652192635,2.028359471,8.482046898,-8.482046898,0,#DIV/0!,0,0,0.479264781,1,0.11735435,0,0.949249332,0.988011295,0.724496596,1,0,0,0.066796,0.312029739,0.828105146,0.552601742,0.961238037,0.922476074,0,0,0,0,0,0,-0.312275625,108.1964239,0.312275625,71.80357613,0,0.889885038,0,0,0,12,7,0% +12/23/2018 16:00,84.35103602,125.4943122,39.94212403,216.0950028,18.67116505,18.40926114,0,18.40926114,18.10816054,0.301100603,31.92441997,21.67698505,10.24743492,0.563004516,9.684430405,1.472203306,2.190288941,-5.727092224,5.727092224,0.490455859,0.467455487,0.219395468,7.056512408,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.40625269,0.407894855,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15895127,6.782988134,17.56520396,7.190882989,0,21.67698505,-0.100312292,95.75715392,0.100312292,84.24284608,0,0.5515566,17.56520396,19.14696715,30.09651102,12,8,71% +12/23/2018 17:00,75.4682436,136.0930926,189.0379022,561.5132273,48.144932,105.176002,57.05776974,48.11823222,46.69318466,1.425047556,47.28617532,0,47.28617532,1.451747336,45.83442798,1.317169332,2.375272555,-1.563417221,1.563417221,0.797513781,0.254684015,1.209984772,38.91726955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.88326516,1.051786003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876629848,37.40875978,45.75989501,38.46054579,57.05776974,0,0.101614293,84.16786375,-0.101614293,95.83213625,0.557943239,0,77.59489187,38.46054579,102.7665499,12,9,32% +12/23/2018 18:00,68.22849784,148.3943188,322.6173859,700.9140186,62.64418611,262.6951366,199.5078777,63.1872589,60.75523277,2.432026129,80.11127368,0,80.11127368,1.888953344,78.22232034,1.190811931,2.589969454,-0.503699941,0.503699941,0.616291453,0.194174861,1.680038802,54.03582295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.40024067,1.368540267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.217182393,51.94128837,59.61742307,53.30982864,199.5078777,0,0.284639588,73.46269374,-0.284639588,106.5373063,0.874339263,0,234.0549937,53.30982864,268.9452104,12,10,15% +12/23/2018 19:00,63.30088296,162.4808794,412.1855764,760.9494006,70.28703003,402.6188398,331.3439941,71.27484573,68.16761675,3.107228983,102.0585784,0,102.0585784,2.119413287,99.93916513,1.104808827,2.835826317,0.086067906,-0.086067906,0.515435211,0.170522779,1.858323489,59.77007136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5253061,1.535507712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346349042,57.45326605,66.87165514,58.98877377,331.3439941,0,0.435434989,64.18702385,-0.435434989,115.8129762,0.935172296,0,376.7353789,58.98877377,415.3423516,12,11,10% +12/23/2018 20:00,61.27317087,177.8531229,448.2583102,780.5649415,73.09212409,498.5813697,424.3140823,74.26728736,70.88812687,3.379160487,110.8894143,0,110.8894143,2.203997223,108.6854171,1.069418575,3.104122579,0.559354131,-0.559354131,0.4344985,0.163058046,1.779831096,57.24548616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.14036391,1.596788485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28948157,55.02653874,69.42984548,56.62332722,424.3140823,0,0.543598693,57.07104483,-0.543598693,122.9289552,0.958020382,0,475.9313849,56.62332722,512.9902201,12,12,8% +12/23/2018 21:00,62.43668709,193.4014723,427.6254017,769.6130682,71.50350511,535.6743806,463.1033491,72.57103152,69.34741061,3.223620908,105.838824,0,105.838824,2.156094499,103.6827295,1.089725764,3.37549247,1.054657812,-1.054657812,0.349796582,0.167210612,1.478086577,47.54034521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.65936884,1.562083125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.070868694,45.6975881,67.73023753,47.25967123,463.1033491,0,0.601735298,53.00571942,-0.601735298,126.9942806,0.966906985,0,515.5081007,47.25967123,546.4386103,12,13,6% +12/23/2018 22:00,66.62022154,207.9199551,352.0949828,722.7619006,65.2857428,503.893255,437.9218775,65.97137748,63.31713678,2.654240706,87.33811101,0,87.33811101,1.968606024,85.36950498,1.162742214,3.628887797,1.71680662,-1.71680662,0.236562466,0.185420827,1.00362066,32.27989034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.86284025,1.426248363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.727119752,31.02865842,61.58996001,32.45490678,437.9218775,0,0.605900611,52.70632292,-0.605900611,127.2936771,0.967478215,0,485.2698364,32.45490678,506.5109237,12,14,4% +12/23/2018 23:00,73.29147415,220.7224365,229.0957801,612.2737835,53.0652032,393.5549005,340.3627882,53.19211229,51.46509153,1.727020761,57.14703592,0,57.14703592,1.600111666,55.54692426,1.279177538,3.85233325,2.905825749,-2.905825749,0.03322822,0.231628899,0.444121527,14.28447496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.47020355,1.159275455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321764534,13.73078067,49.79196808,14.89005612,340.3627882,0,0.55589966,56.22729648,-0.55589966,123.7727035,0.96005571,0,376.5592066,14.89005612,386.3044505,12,15,3% +12/23/2018 0:00,81.79545342,231.7581066,78.15910544,343.2750009,29.17119688,185.2795643,156.3987903,28.88077402,28.29157767,0.589196351,19.83019922,0,19.83019922,0.879619216,18.95058001,1.427599975,4.044942029,6.587060117,-6.587060117,0,0.373228387,0.219904804,7.072894417,0.373551311,1,0.150662378,0,0.945261331,0.984023294,0.724496596,1,27.42992123,0.637281128,0.054289773,0.312029739,0.8576078,0.582104396,0.961238037,0.922476074,0.150638981,6.798735144,27.58056021,7.436016272,97.97581711,0,0.455607865,62.89594784,-0.455607865,117.1040522,0.940256504,0,119.7029595,7.436016272,124.5696834,12,16,4% +12/23/2018 1:00,91.78321255,241.353249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601919257,4.212408856,-31.75519775,31.75519775,0,#DIV/0!,0,0,1,0.798411984,0,0.031480504,0.961238037,1,0.639104072,0.914607476,0,0,0.115824807,0.215123071,0.724496596,0.448993192,0.97559664,0.936834677,0,0,0,0,0,0,0.308727738,72.01742522,-0.308727738,107.9825748,0.888045002,0,0,0,0,12,17,0% +12/23/2018 2:00,102.5657595,249.9718911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790110204,4.362832537,-4.486334335,4.486334335,0.702637954,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129388165,82.56576185,-0.129388165,97.43423815,0.663565893,0,0,0,0,12,18,0% +12/23/2018 3:00,113.9409285,258.1305668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988644355,4.505228291,-2.229644094,2.229644094,0.911445286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071870044,94.12140345,0.071870044,85.87859655,0,0,0,0,0,12,19,0% +12/23/2018 4:00,125.6619875,266.4531455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193215427,4.650484691,-1.336531898,1.336531898,0.758714105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281340469,106.3402244,0.281340469,73.65977562,0,0.872279389,0,0,0,12,20,0% +12/23/2018 5:00,137.4862528,275.9041773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399587788,4.815436314,-0.824660788,0.824660788,0.67117899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484757941,118.9966146,0.484757941,61.00338539,0,0.946855738,0,0,0,12,21,0% +12/23/2018 6:00,149.0524343,288.5013549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601455737,5.03529854,-0.469255351,0.469255351,0.610401081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668269894,131.9336744,0.668269894,48.0663256,0,0.97517993,0,0,0,12,22,0% +12/23/2018 7:00,159.4496262,309.7323827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782920969,5.405849878,-0.18895793,0.18895793,0.562467399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819379491,145.0227266,0.819379491,34.97727341,0,0.988978214,0,0,0,12,23,0% +12/24/2018 8:00,165.4504397,352.2557386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887654921,6.148022447,0.055094131,-0.055094131,0.520732038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927796349,158.0938709,0.927796349,21.90612913,0,0.996108863,0,0,0,12,0,0% +12/24/2018 9:00,161.8396838,41.01991791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824635343,0.715932626,0.28694449,-0.28694449,0.481083292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986137015,170.4485566,0.986137015,9.551443431,0,0.999297107,0,0,0,12,1,0% +12/24/2018 10:00,152.1708075,66.7871911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.655881616,1.165656383,0.527061795,-0.527061795,0.440020814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990427608,172.0659503,0.990427608,7.934049735,0,0.999516755,0,0,0,12,2,0% +12/24/2018 11:00,140.7939922,80.99356079,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45731873,1.413604309,0.800784494,-0.800784494,0.393211476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940374413,160.1145296,0.940374413,19.8854704,0,0.996829689,0,0,0,12,3,0% +12/24/2018 12:00,128.9944903,91.04689347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378573,1.589068065,1.152739862,-1.152739862,0.333023563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839384051,147.075134,0.839384051,32.92486601,0,0.990432511,0,0,0,12,4,0% +12/24/2018 13:00,117.2169638,99.56406604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045821957,1.737720769,1.691224758,-1.691224758,0.240937223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694331786,133.9739931,0.694331786,46.02600689,0,0.977988318,0,0,0,12,5,0% +12/24/2018 14:00,105.7195442,107.6969689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84515413,1.879666702,2.811300921,-2.811300921,0.049392918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515093701,121.0037183,0.515093701,58.99628173,0,0.952930283,0,0,0,12,6,0% +12/24/2018 15:00,94.74053787,116.1306066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653534321,2.026861448,8.356919215,-8.356919215,0,#DIV/0!,0,0,0.47339698,1,0.119095042,0,0.949047205,0.987809168,0.724496596,1,0,0,0.066128955,0.312029739,0.829647329,0.554143925,0.961238037,0.922476074,0,0,0,0,0,0,-0.313874494,108.2928814,0.313874494,71.70711861,0,0.890700659,0,0,0,12,7,0% +12/24/2018 16:00,84.41679581,125.400492,38.92271648,210.8354598,18.41029164,18.1485693,0,18.1485693,17.85515342,0.293415878,31.46946266,21.4770612,9.992401462,0.55513822,9.437263242,1.473351031,2.18865147,-5.808779363,5.808779363,0.476486535,0.472996063,0.212464298,6.833582172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.16305262,0.40219575,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.153929661,6.568699112,17.31698228,6.970894862,0,21.4770612,-0.101866457,95.8466595,0.101866457,84.1533405,0,0.559161291,17.31698228,18.98003613,29.73903633,12,8,72% +12/24/2018 17:00,75.52159216,135.9879005,187.7839585,558.2256583,48.21909483,104.1033628,55.92265679,48.18070601,46.76511121,1.4155948,46.98437845,0,46.98437845,1.453983619,45.53039483,1.31810044,2.373436606,-1.575929612,1.575929612,0.799653526,0.256779627,1.204810495,38.75084703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.9524037,1.053406182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872881102,37.24878813,45.8252848,38.30219431,55.92265679,0,0.100179302,84.25050443,-0.100179302,95.74949557,0.550894905,0,76.63279152,38.30219431,101.7008116,12,9,33% +12/24/2018 18:00,68.26354565,148.276285,321.6494471,698.7739442,62.8670129,261.4629452,198.0668753,63.3960699,60.9713405,2.424729397,79.88330477,0,79.88330477,1.895672393,77.98763237,1.191423631,2.587909377,-0.509656281,0.509656281,0.617310047,0.195451954,1.678173513,53.97582885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.60797165,1.373408196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.215830997,51.88361976,59.82380265,53.25702796,198.0668753,0,0.283449142,73.53383135,-0.283449142,106.4661687,0.873601513,0,232.8553245,53.25702796,267.7109841,12,10,15% +12/24/2018 19:00,63.31252997,162.3526445,411.6347322,759.3608301,70.58784944,401.5672582,330.0048164,71.56244182,68.45936534,3.103076487,101.9340907,0,101.9340907,2.128484102,99.80560656,1.105012106,2.833588197,0.081663039,-0.081663039,0.516188487,0.171481763,1.859218636,59.79886236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.80574594,1.542079486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346997573,57.48094106,67.15274351,59.02302055,330.0048164,0,0.434582353,64.24127866,-0.434582353,115.7587213,0.934947008,0,375.6897592,59.02302055,414.3191457,12,11,10% +12/24/2018 20:00,61.25812273,177.7228638,448.1758504,779.2931975,73.44143847,497.8806439,423.2751969,74.605447,71.22690813,3.37853887,110.8799541,0,110.8799541,2.21453034,108.6654237,1.069155935,3.10184913,0.555058574,-0.555058574,0.435233083,0.163867461,1.783125257,57.35143771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.46601334,1.604419693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291868179,55.1283834,69.75788152,56.73280309,423.2751969,0,0.543152691,57.10148485,-0.543152691,122.8985151,0.957944854,0,475.2321784,56.73280309,512.3626634,12,12,8% +12/24/2018 21:00,62.39537398,193.2800954,428.0162288,768.574557,71.88369242,535.4221336,462.4794326,72.942701,69.71613387,3.226567127,105.9450486,0,105.9450486,2.167558549,103.7774901,1.089004714,3.373374043,1.049421942,-1.049421942,0.350691968,0.167946184,1.48338447,47.71074365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01379966,1.57038879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.074706999,45.86138156,68.08850666,47.43177035,462.4794326,0,0.601736589,53.00562679,-0.601736589,126.9943732,0.966907164,0,515.2631831,47.43177035,546.3063281,12,13,6% +12/24/2018 22:00,66.55675697,207.8151206,352.9233181,722.0001701,65.68245465,504.1536038,437.7912325,66.36237134,63.7018863,2.660485048,87.55091284,0,87.55091284,1.98056835,85.57034449,1.161634549,3.62705809,1.708768521,-1.708768521,0.237937062,0.186109705,1.010357431,32.49656805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23267613,1.434915028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732000519,31.23693728,61.96467665,32.6718523,437.7912325,0,0.606358905,52.67330883,-0.606358905,127.3266912,0.967540586,0,485.5454622,32.6718523,506.9285361,12,14,4% +12/24/2018 23:00,73.21156859,220.6357988,230.2761983,612.1363163,53.46766376,394.4240716,340.8327359,53.59133567,51.85541642,1.735919252,57.44537767,0,57.44537767,1.612247337,55.83313033,1.277782922,3.850821137,2.888722527,-2.888722527,0.036153043,0.232189276,0.451248686,14.51370891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.84539868,1.168067707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326928137,13.95112906,50.17232682,15.11919676,340.8327359,0,0.556792216,56.16575291,-0.556792216,123.8342471,0.960199894,0,377.4398837,15.11919676,387.3350956,12,15,3% +12/24/2018 0:00,81.70487443,231.687193,79.42590495,345.3551204,29.60082527,187.0904269,157.7834297,29.3069972,28.70825117,0.598746021,20.15030431,0,20.15030431,0.892574097,19.25773022,1.426019074,4.043704353,6.511471867,-6.511471867,0,0.372684772,0.223143524,7.177062794,0.368437107,1,0.152384539,0,0.945048272,0.983810235,0.724496596,1,27.83347888,0.646666895,0.053657407,0.312029739,0.859132572,0.583629167,0.961238037,0.922476074,0.152883404,6.89886575,27.98636228,7.545532645,99.65015936,0,0.456872999,62.8144888,-0.456872999,117.1855112,0.940560396,0,121.7133557,7.545532645,126.6517559,12,16,4% +12/24/2018 1:00,91.68397953,241.2941445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600187314,4.211377288,-33.62234032,33.62234032,0,#DIV/0!,0,0,1,0.810602923,0,0.029733364,0.961238037,1,0.643639465,0.919142869,0,0,0.115824807,0.220260352,0.724496596,0.448993192,0.974885651,0.936123688,0,0,0,0,0,0,0.310319003,71.92154386,-0.310319003,108.0784561,0.888875481,0,0,0,0,12,17,0% +12/24/2018 2:00,102.4616481,249.9205728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788293117,4.361936864,-4.525036053,4.525036053,0.696019571,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131189482,82.46166668,-0.131189482,97.53833332,0.668871884,0,0,0,0,12,18,0% +12/24/2018 3:00,113.833844,258.08297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986775378,4.50439757,-2.241192585,2.241192585,0.913420194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.06997132,94.01233993,0.06997132,85.98766007,0,0,0,0,0,12,19,0% +12/24/2018 4:00,125.553408,266.4041979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191320357,4.649630394,-1.342231329,1.342231329,0.759688765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279463499,106.2281873,0.279463499,73.77181272,0,0.871085758,0,0,0,12,20,0% +12/24/2018 5:00,137.3777336,275.8448784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39769377,4.814401353,-0.828217536,0.828217536,0.67178723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48302022,118.8828438,0.48302022,61.11715619,0,0.946484665,0,0,0,12,21,0% +12/24/2018 6:00,148.946926,288.4089291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59961427,5.033685406,-0.471820833,0.471820833,0.610839804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666779176,131.8189641,0.666779176,48.18103588,0,0.975012655,0,0,0,12,22,0% +12/24/2018 7:00,159.3575372,309.5327788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.781313713,5.402366133,-0.191014804,0.191014804,0.562819145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818226397,144.9076414,0.818226397,35.09235859,0,0.988892218,0,0,0,12,23,0% +12/25/2018 8:00,165.414294,351.8180884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88702406,6.14038401,0.053293168,-0.053293168,0.521040021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927048138,157.9792516,0.927048138,22.02074842,0,0.996065368,0,0,0,12,0,0% +12/25/2018 9:00,161.8845186,40.67653539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825417858,0.709939471,0.285231414,-0.285231414,0.481376245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985832968,170.3441362,0.985832968,9.655863763,0,0.999281469,0,0,0,12,1,0% +12/25/2018 10:00,152.2462067,66.59819222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.657197581,1.16235773,0.525282781,-0.525282781,0.440325044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990576327,172.1279223,0.990576327,7.872077672,0,0.999524334,0,0,0,12,2,0% +12/25/2018 11:00,140.8779673,80.86676497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458784373,1.411391304,0.798732465,-0.798732465,0.393562394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940953232,160.2122604,0.940953232,19.78773956,0,0.996862396,0,0,0,12,3,0% +12/25/2018 12:00,129.0799145,90.94567838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252869506,1.587301528,1.150011486,-1.150011486,0.333490143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840340586,147.1761021,0.840340586,32.82389787,0,0.990500315,0,0,0,12,4,0% +12/25/2018 13:00,117.3004135,99.47317491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047278429,1.73613442,1.686699892,-1.686699892,0.24171102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.695587531,134.0740544,0.695587531,45.92594565,0,0.97811832,0,0,0,12,5,0% +12/25/2018 14:00,105.7984851,107.6083461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846531909,1.878119942,2.799860676,-2.799860676,0.051349315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.516549417,121.1010765,0.516549417,58.89892348,0,0.95320384,0,0,0,12,6,0% +12/25/2018 15:00,94.81237717,116.0388555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654788153,2.02526009,8.245293321,-8.245293321,0,#DIV/0!,0,0,0.468049599,1,0.120691858,0,0.948861172,0.987623135,0.724496596,1,0,0,0.065518393,0.312029739,0.83106203,0.555558626,0.961238037,0.922476074,0,0,0,0,0,0,-0.315417024,108.385991,0.315417024,71.61400902,0,0.891479704,0,0,0,12,7,0% +12/25/2018 16:00,84.47705181,125.3013514,37.98642789,205.8998056,18.16972003,17.90819367,0,17.90819367,17.62183593,0.286357739,31.03878742,21.28065408,9.758133332,0.547884098,9.210249234,1.474402696,2.186921139,-5.887275941,5.887275941,0.46306283,0.478321365,0.206146459,6.630378753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.93877898,0.396940164,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.149352408,6.373372256,17.08813138,6.77031242,0,21.28065408,-0.103354416,95.93236567,0.103354416,84.06763433,0,0.566227733,17.08813138,18.82000893,29.40545083,12,8,72% +12/25/2018 17:00,75.5687252,135.8781108,186.6453028,555.0951287,48.30529995,103.1117021,54.85597407,48.25572806,46.84871693,1.407011132,46.71089759,0,46.71089759,1.456583021,45.25431457,1.318923066,2.371520414,-1.588100991,1.588100991,0.801734954,0.258808013,1.20024738,38.60408156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.03276869,1.05528944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869575141,37.10771158,45.90234383,38.16300102,54.85597407,0,0.098822654,84.32862228,-0.098822654,95.67137772,0.544043139,0,75.74636017,38.16300102,100.7232811,12,9,33% +12/25/2018 18:00,68.29172707,148.1546899,320.8082823,696.7335184,63.09985397,260.3361404,196.7205915,63.6155489,61.19716056,2.418388342,79.68637563,0,79.68637563,1.902693411,77.78368222,1.191915489,2.58578714,-0.515604233,0.515604233,0.618327206,0.196690227,1.676906885,53.93508974,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.82503847,1.378494899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214913329,51.84445978,60.0399518,53.22295468,196.7205915,0,0.282346961,73.59967126,-0.282346961,106.4003287,0.872912916,0,231.759897,53.22295468,266.5932564,12,10,15% +12/25/2018 19:00,63.31679828,162.2223452,411.2164263,757.8508512,70.89815417,400.635532,328.7752956,71.86023636,68.76031324,3.09992312,101.8420244,0,101.8420244,2.137840935,99.70418346,1.105086602,2.831314045,0.077156856,-0.077156856,0.51695909,0.172410803,1.860699593,59.84649503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09502851,1.54885848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348070521,57.5267274,67.44309903,59.07558587,328.7752956,0,0.433825858,64.2893951,-0.433825858,115.7106049,0.934746381,0,374.7646169,59.07558587,413.4284063,12,11,10% +12/25/2018 20:00,61.23547633,177.5924447,448.2276048,778.0939935,73.80022285,497.3096144,422.3558116,74.95380285,71.57487383,3.378929017,110.9033212,0,110.9033212,2.225349013,108.6779722,1.068760681,3.099572887,0.550587412,-0.550587412,0.435997697,0.164648991,1.786980761,57.47544399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80049121,1.612257784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294661478,55.24758295,70.09515269,56.85984073,422.3558116,0,0.542808215,57.12498841,-0.542808215,122.8750116,0.957886435,0,474.6640552,56.85984073,511.8776838,12,12,8% +12/25/2018 21:00,62.34662936,193.1605306,428.539105,767.6126768,72.27369094,535.3063924,461.9815111,73.32488129,70.0943725,3.230508789,106.0835859,0,106.0835859,2.179318443,103.9042675,1.08815396,3.371287244,1.043919448,-1.043919448,0.35163295,0.168651332,1.489202903,47.89788446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.37737702,1.578908794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078922434,46.04126843,68.45629945,47.62017722,461.9815111,0,0.601841951,52.99806811,-0.601841951,127.0019319,0.96692171,0,515.1562522,47.62017722,546.3227058,12,13,6% +12/25/2018 22:00,66.48636103,207.713737,353.8775933,721.3313567,66.08992687,504.5557464,437.7909959,66.76475051,64.09707173,2.667678777,87.79457468,0,87.79457468,1.992855141,85.80171954,1.160405908,3.625288612,1.700299152,-1.700299152,0.23938541,0.186759287,1.017552051,32.72797178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6125434,1.443816766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.737212997,31.45937134,62.3497564,32.90318811,437.7909959,0,0.606920789,52.63281259,-0.606920789,127.3671874,0.967616926,0,485.9637343,32.90318811,507.4982128,12,14,4% +12/25/2018 23:00,73.12541196,220.5537642,231.5715448,612.1311361,53.88346722,395.441838,341.437472,54.004366,52.25868188,1.745684121,57.77198741,0,57.77198741,1.624785346,56.14720207,1.276279206,3.849389362,2.870774502,-2.870774502,0.039222336,0.232686046,0.458734177,14.75446801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.23303277,1.177151452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33235135,14.18255587,50.56538412,15.35970732,341.437472,0,0.557784847,56.09725685,-0.557784847,123.9027431,0.960359702,0,378.4681729,15.35970732,388.5207942,12,15,3% +12/25/2018 0:00,81.60877014,231.6216549,80.78529169,347.6541999,30.05155769,189.060545,159.306159,29.754386,29.14539234,0.608993653,20.49349461,0,20.49349461,0.906165343,19.58732927,1.424341737,4.042560497,6.433397156,-6.433397156,0,0.371992934,0.226541336,7.286348086,0.363066258,1,0.154204848,0,0.944822342,0.983584305,0.724496596,1,28.25678267,0.656513706,0.052990465,0.312029739,0.860744148,0.585240743,0.961238037,0.922476074,0.155241241,7.00391493,28.41202391,7.660428636,101.467468,0,0.458231654,62.7269419,-0.458231654,117.2730581,0.940884884,0,123.8812308,7.660428636,128.8948281,12,16,4% +12/25/2018 1:00,91.57981309,241.2410036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598369267,4.210449804,-35.83539276,35.83539276,0,#DIV/0!,0,0,1,0.823270558,0,0.027898133,0.961238037,1,0.648429409,0.923932813,0,0,0.115824807,0.225687335,0.724496596,0.448993192,0.974128345,0.935366382,0,0,0,0,0,0,0.311996078,71.82043535,-0.311996078,108.1795647,0.889741575,0,0,0,0,12,17,0% +12/25/2018 2:00,102.3531283,249.8758052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786399088,4.361155521,-4.566057501,4.566057501,0.68900449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.133066441,82.35317365,-0.133066441,97.64682635,0.674247859,0,0,0,0,12,18,0% +12/25/2018 3:00,113.7227383,258.0426747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984836218,4.503694284,-2.253226832,2.253226832,0.915478172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068008145,93.89958965,0.068008145,86.10041035,0,0,0,0,0,12,19,0% +12/25/2018 4:00,125.4410205,266.3636554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189358825,4.648922795,-1.34809259,1.34809259,0.7606911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277533524,106.1130527,0.277533524,73.88694731,0,0.869841584,0,0,0,12,20,0% +12/25/2018 5:00,137.2653646,275.795729,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395732562,4.813543534,-0.831828459,0.831828459,0.672404734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481240402,118.766446,0.481240402,61.23355398,0,0.946101824,0,0,0,12,21,0% +12/25/2018 6:00,148.8370651,288.3295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597696836,5.032299106,-0.474390813,0.474390813,0.611279296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665255988,131.7019671,0.665255988,48.29803291,0,0.974840962,0,0,0,12,22,0% +12/25/2018 7:00,159.2595955,309.3498488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779604307,5.399173402,-0.193046283,0.193046283,0.563166548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81704851,144.7904204,0.81704851,35.2095796,0,0.988804123,0,0,0,12,23,0% +12/26/2018 8:00,165.3697032,351.3873911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886245804,6.132866925,0.051541189,-0.051541189,0.521339627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926280335,157.8622173,0.926280335,22.13778269,0,0.996020661,0,0,0,12,0,0% +12/26/2018 9:00,161.9221975,40.31825893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826075478,0.703686367,0.283591639,-0.283591639,0.481656663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985511696,170.235002,0.985511696,9.764997965,0,0.999264935,0,0,0,12,1,0% +12/26/2018 10:00,152.3164115,66.39544188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658422886,1.158819069,0.523608513,-0.523608513,0.44061136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990707193,172.1828584,0.990707193,7.817141613,0,0.999531001,0,0,0,12,2,0% +12/26/2018 11:00,140.9575221,80.72929491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460172866,1.408991999,0.79683398,-0.79683398,0.393887054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941510616,160.306812,0.941510616,19.69318801,0,0.996893854,0,0,0,12,3,0% +12/26/2018 12:00,129.1611039,90.83580498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254286528,1.585383876,1.147526847,-1.147526847,0.333915041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841269398,147.2744087,0.841269398,32.7255913,0,0.990566006,0,0,0,12,4,0% +12/26/2018 13:00,117.3795116,99.37490808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048658952,1.73441934,1.682628805,-1.682628805,0.242407217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696806995,134.1713868,0.696806995,45.82861321,0,0.978244119,0,0,0,12,5,0% +12/26/2018 14:00,105.8727685,107.5132129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847828398,1.876459555,2.789627076,-2.789627076,0.053099363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51795861,121.1954184,0.51795861,58.80458156,0,0.95346719,0,0,0,12,6,0% +12/26/2018 15:00,94.87911329,115.9412481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655952918,2.023556518,8.146332307,-8.146332307,0,#DIV/0!,0,0,0.463217281,1,0.12214356,0,0.948691536,0.987453499,0.724496596,1,0,0,0.064964431,0.312029739,0.832348153,0.556844749,0.961238037,0.922476074,0,0,0,0,0,0,-0.316901811,108.4756627,0.316901811,71.52433734,0,0.892222423,0,0,0,12,7,0% +12/26/2018 16:00,84.53175319,125.1969603,37.132115,201.2906796,17.95030255,17.68895227,0,17.68895227,17.4090347,0.279917568,30.63459192,21.09021289,9.544379033,0.541267852,9.003111182,1.475357416,2.185099171,-5.962171412,5.962171412,0.45025495,0.483417186,0.200424101,6.446328038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73422634,0.392146716,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.145206579,6.196455708,16.87943292,6.588602424,0,21.09021289,-0.10477491,96.01419834,0.10477491,83.98580166,0,0.572786516,16.87943292,18.66879197,29.09778389,12,8,72% +12/26/2018 17:00,75.6095999,135.7637981,185.622457,552.1254644,48.40404172,102.2011783,53.85739658,48.34378176,46.94448127,1.399300488,46.46587422,0,46.46587422,1.45956045,45.00631377,1.319636464,2.369525282,-1.599901908,1.599901908,0.80375303,0.260766087,1.196300586,38.4771391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.12482102,1.057446577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866715702,36.98568965,45.99153672,38.04313623,53.85739658,0,0.097545576,84.40214873,-0.097545576,95.59785127,0.537419092,0,74.93552991,38.04313623,99.83400171,12,9,33% +12/26/2018 18:00,68.31301443,148.0296103,320.0943442,694.7945108,63.3429682,259.3153101,195.4693597,63.84595037,61.432944,2.413006375,79.52060388,0,79.52060388,1.910024202,77.61057968,1.192287024,2.583604089,-0.521533462,0.521533462,0.619341164,0.197888433,1.676241075,53.91367501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.05168249,1.383806032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214430953,51.82387513,60.26611344,53.20768116,195.4693597,0,0.281334059,73.66015836,-0.281334059,106.3398416,0.87227534,0,230.7692156,53.20768116,265.5925788,12,10,15% +12/26/2018 19:00,63.31367633,162.0900586,410.9308077,756.4203158,71.21810145,399.8241191,327.6557361,72.16838293,69.07061293,3.097770006,101.7824204,0,101.7824204,2.147488526,99.63493191,1.105032114,2.829005208,0.07255629,-0.07255629,0.517745833,0.173309229,1.862766335,59.91296856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39330037,1.555848126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349567869,57.59062428,67.74286824,59.14647241,327.6557361,0,0.43316623,64.3313345,-0.43316623,115.6686655,0.934570872,0,373.9603754,59.14647241,412.6705587,12,11,10% +12/26/2018 20:00,61.20523626,177.461943,448.4133574,776.9676238,74.16857554,496.8683923,421.5559436,75.31244863,71.93211933,3.380329299,110.9594663,0,110.9594663,2.236456205,108.7230101,1.068232892,3.097295202,0.545947586,-0.545947586,0.436791154,0.165402244,1.791395914,57.61745049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14388918,1.620304908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297860242,55.38408499,70.44174942,57.0043899,421.5559436,0,0.54256565,57.14153488,-0.54256565,122.8584651,0.957845253,0,474.227109,57.0043899,511.5353421,12,12,8% +12/26/2018 21:00,62.29047416,193.042857,429.1934497,766.727187,72.67355578,535.3267943,461.6091729,73.71762145,70.48217994,3.235441516,106.2542967,0,106.2542967,2.191375844,104.0629209,1.087173867,3.369233452,1.038159663,-1.038159663,0.352617931,0.169325874,1.495539051,48.10167675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.75015227,1.587644339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.083512951,46.23716133,68.83366523,47.82480567,461.6091729,0,0.602051395,52.98304027,-0.602051395,127.0169597,0.966950612,0,515.1869374,47.82480567,546.4873162,12,13,6% +12/26/2018 22:00,66.4090712,207.6158829,354.9569153,720.7543714,66.50817111,505.0987138,437.9201943,67.17851952,64.50270436,2.675815162,88.0688804,0,88.0688804,2.005466748,86.06341365,1.159056946,3.623580736,1.691415164,-1.691415164,0.240904661,0.187369701,1.02520146,32.97400306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.00245291,1.452953832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742754968,31.69586597,62.74520788,33.1488198,437.9201943,0,0.607585901,52.58484814,-0.607585901,127.4151519,0.96770711,0,486.5236933,33.1488198,508.2189329,12,14,4% +12/26/2018 23:00,73.03305681,220.4764065,232.9807729,612.2550953,54.31254256,396.6063228,342.1751963,54.43112648,52.67481901,1.756307478,58.1266093,0,58.1266093,1.63772355,56.48888575,1.274667304,3.848039216,2.852025875,-2.852025875,0.04242854,0.233120278,0.466576895,15.0067168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.63303961,1.186525137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338033372,14.42502699,50.97107299,15.61155213,342.1751963,0,0.558876846,56.02184034,-0.558876846,123.9781597,0.960534851,0,379.6422743,15.61155213,389.859723,12,15,3% +12/26/2018 0:00,81.50720302,231.5615571,82.236951,350.1633605,30.52304901,191.1867003,160.9640969,30.22260334,29.60266646,0.619936874,20.85968342,0,20.85968342,0.920382546,19.93930088,1.422569057,4.041511592,6.353122549,-6.353122549,0,0.371159784,0.230095636,7.400666616,0.35744799,1,0.156121981,0,0.944583585,0.983345548,0.724496596,1,28.69949391,0.666814021,0.052289665,0.312029739,0.86244134,0.586937936,0.961238037,0.922476074,0.157711248,7.113802249,28.85720515,7.78061627,103.427804,0,0.459682865,62.63335472,-0.459682865,117.3666453,0.941229359,0,126.2064908,7.78061627,131.2987485,12,16,4% +12/26/2018 1:00,91.47078946,241.1938805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596466446,4.209627351,-38.48813375,38.48813375,0,#DIV/0!,0,0,1,0.836387761,0,0.02597619,0.961238037,1,0.653474075,0.928977479,0,0,0.115824807,0.231404418,0.724496596,0.448993192,0.973323665,0.934561701,0,0,0,0,0,0,0.313757697,71.71416663,-0.313757697,108.2858334,0.890641359,0,0,0,0,12,17,0% +12/26/2018 2:00,102.2402835,249.8376314,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784429575,4.360489264,-4.609472117,4.609472117,0.681580153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135017622,82.2403611,-0.135017622,97.7596389,0.67967797,0,0,0,0,12,18,0% +12/26/2018 3:00,113.6077004,258.009713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982828427,4.503118993,-2.265749938,2.265749938,0.917619749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065981998,93.78323856,0.065981998,86.21676144,0,0,0,0,0,12,19,0% +12/26/2018 4:00,125.3249182,266.3315381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187332457,4.648362242,-1.354114121,1.354114121,0.761720843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27555198,105.9949113,0.27555198,74.00508874,0,0.868546033,0,0,0,12,20,0% +12/26/2018 5:00,137.1492434,275.756735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.393705864,4.81286296,-0.835491651,0.835491651,0.673031177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47941979,118.6475144,0.47941979,61.35248558,0,0.945707267,0,0,0,12,21,0% +12/26/2018 6:00,148.7229567,288.2630636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.595705267,5.031139572,-0.476963553,0.476963553,0.611719261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663701404,131.5827776,0.663701404,48.41722236,0,0.974664918,0,0,0,12,22,0% +12/26/2018 7:00,159.1559204,309.1836915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777794835,5.396273411,-0.195050826,0.195050826,0.563509345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815846607,144.6711586,0.815846607,35.32884136,0,0.98871397,0,0,0,12,23,0% +12/27/2018 8:00,165.3167222,350.9646493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885321111,6.125488688,0.049839576,-0.049839576,0.52163062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925493368,157.7428686,0.925493368,22.25713142,0,0.995974761,0,0,0,12,0,0% +12/27/2018 9:00,161.9525984,39.94566893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826606074,0.697183445,0.282026426,-0.282026426,0.48192433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985173249,170.1213253,0.985173249,9.878674659,0,0.999247505,0,0,0,12,1,0% +12/27/2018 10:00,152.3812955,66.17908809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.659555325,1.155042983,0.522040145,-0.522040145,0.440879567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990819877,172.230471,0.990819877,7.769528984,0,0.999536741,0,0,0,12,2,0% +12/27/2018 11:00,141.0325449,80.58122634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461482261,1.406407715,0.795090043,-0.795090043,0.394185284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942045881,160.3980236,0.942045881,19.60197638,0,0.996924029,0,0,0,12,3,0% +12/27/2018 12:00,129.2379582,90.7173355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255627888,1.583316193,1.145286546,-1.145286546,0.334298155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842169499,147.3699274,0.842169499,32.63007256,0,0.990629529,0,0,0,12,4,0% +12/27/2018 13:00,117.4541677,99.26932656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049961947,1.732576595,1.679010363,-1.679010363,0.243026007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69798895,134.2658791,0.69798895,45.73412094,0,0.978365628,0,0,0,12,5,0% +12/27/2018 14:00,105.9423139,107.4116332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849042195,1.874686655,2.780585716,-2.780585716,0.054645527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.519319903,121.286643,0.519319903,58.71335699,0,0.953720232,0,0,0,12,6,0% +12/27/2018 15:00,94.94067674,115.8378524,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657027403,2.021751923,8.059317795,-8.059317795,0,#DIV/0!,0,0,0.458895197,1,0.123449027,0,0.948538575,0.987300538,0.724496596,1,0,0,0.064467174,0.312029739,0.833504706,0.558001302,0.961238037,0.922476074,0,0,0,0,0,0,-0.318327427,108.5618049,0.318327427,71.43819511,0,0.892929023,0,0,0,12,7,0% +12/27/2018 16:00,84.58084957,125.0873919,36.35869036,197.0100237,17.75285434,17.49162745,0,17.49162745,17.21754028,0.274087166,30.25891628,20.90801679,9.350899484,0.535314059,8.815585425,1.476214309,2.183186841,-6.033056817,6.033056817,0.438132832,0.488269906,0.195280435,6.280890057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.55015462,0.387833214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.14148001,6.037430428,16.69163463,6.425263642,0,20.90801679,-0.106126665,96.09208243,0.106126665,83.90791757,0,0.578864871,16.69163463,18.52818009,28.81795794,12,8,73% +12/27/2018 17:00,75.64417461,135.6450399,184.7159277,549.3202089,48.51580343,101.3719524,52.92661281,48.44533964,47.05287295,1.392466687,46.24944571,0,46.24944571,1.462930478,44.78651523,1.320239907,2.36745256,-1.611303247,1.611303247,0.805702773,0.262650893,1.192975105,38.37018021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.22901122,1.059888151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864306403,36.8828767,46.09331762,37.94276485,52.92661281,0,0.096349291,84.47101521,-0.096349291,95.52898479,0.531054823,0,74.20025063,37.94276485,99.03303137,12,9,33% +12/27/2018 18:00,68.32738172,147.9011257,319.5080448,692.9585194,63.59660529,258.4010106,194.313491,64.0875196,61.678933,2.408586602,79.38609688,0,79.38609688,1.917672296,77.46842459,1.19253778,2.581361612,-0.527433481,0.527433481,0.620350127,0.199045396,1.676178015,53.9116468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.28813647,1.389347051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214385266,51.82192553,60.50252174,53.21127258,194.313491,0,0.280411432,73.71523819,-0.280411432,106.2847618,0.87169058,0,229.8837613,53.21127258,264.709475,12,10,15% +12/27/2018 19:00,63.30315475,161.9558644,410.7779664,755.0699402,71.5478391,399.1334224,326.6463969,72.48702559,69.39040777,3.096617824,101.7553051,0,101.7553051,2.157431332,99.59787377,1.104848477,2.826663076,0.067868553,-0.067868553,0.518547484,0.174176429,1.865418566,59.99827342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.70069934,1.563051656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351489401,57.67262255,68.05218874,59.23567421,326.6463969,0,0.432604159,64.36705947,-0.432604159,115.6329405,0.934420899,0,373.2774084,59.23567421,412.0459725,12,11,10% +12/27/2018 20:00,61.16740984,177.3314387,448.7328201,775.914255,74.54658439,496.5570122,420.8755449,75.68146736,72.29872982,3.382737543,111.048322,0,111.048322,2.247854567,108.8004675,1.067572697,3.095017473,0.541146407,-0.541146407,0.437612204,0.166126882,1.796368725,57.77739318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.49628912,1.628562982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301463026,55.537828,70.79775214,57.16639098,420.8755449,0,0.542425329,57.1511054,-0.542425329,122.8488946,0.957821414,0,473.9213615,57.16639098,511.3356211,12,12,8% +12/27/2018 21:00,62.22693269,192.9271564,429.9786015,765.9177097,73.08332958,535.4828805,461.3619226,74.12095787,70.87959754,3.241360322,106.4570221,0,106.4570221,2.203732036,104.25329,1.086064859,3.367214095,1.032152421,-1.032152421,0.35364523,0.16996969,1.502389795,48.32202025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.1321652,1.596596358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088476292,46.44896388,69.22064149,48.04556024,461.3619226,0,0.602364871,52.96054251,-0.602364871,127.0394575,0.966993832,0,515.3547748,48.04556024,546.799633,12,13,6% +12/27/2018 22:00,66.32492884,207.5216395,356.1603079,720.2679576,66.93718293,505.781421,438.1777543,67.60366674,64.9187799,2.684886844,88.37359316,0,88.37359316,2.018403037,86.35519013,1.157588384,3.621935879,1.682133962,-1.682133962,0.24249184,0.187941164,1.033302344,33.23455534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.40240054,1.46232613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748624031,31.94631873,63.15102457,33.40864486,438.1777543,0,0.608353807,52.52943253,-0.608353807,127.4705675,0.967810985,0,487.2242687,33.40864486,509.0895586,12,14,4% +12/27/2018 23:00,72.93455993,220.4038009,234.5027593,612.5048251,54.75479508,397.9155163,343.0439994,54.87151684,53.10373599,1.767780854,58.50896807,0,58.50896807,1.651059095,56.85790897,1.272948209,3.846772009,2.832522106,-2.832522106,0.045763881,0.23349318,0.474775569,15.27041433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.04533093,1.196186694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343973283,14.67850309,51.38930421,15.87468978,343.0439994,0,0.560067424,55.93953933,-0.560067424,124.0604607,0.960725034,0,380.9602624,15.87468978,391.3499293,12,15,3% +12/27/2018 0:00,81.40023979,231.5069646,83.7805071,352.8734647,31.01491261,193.465542,162.7542706,30.71127141,30.07969856,0.631572852,21.24876797,0,21.24876797,0.935214048,20.31355392,1.420702196,4.040558773,6.270930449,-6.270930449,0,0.370192467,0.233803512,7.519924641,0.35159189,1,0.158134518,0,0.944332054,0.983094018,0.724496596,1,29.16123379,0.677559394,0.051555763,0.312029739,0.864222871,0.588719466,0.961238037,0.922476074,0.160292001,7.228437599,29.32152579,7.905996993,105.531189,0,0.461225586,62.53377935,-0.461225586,117.4662207,0.941593178,0,128.6889734,7.905996993,133.8632903,12,16,4% +12/27/2018 1:00,91.35698894,241.1528285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594480252,4.208910857,-41.71256826,41.71256826,0,#DIV/0!,0,0,1,0.849926981,0,0.023968999,0.961238037,1,0.658773498,0.934276902,0,0,0.115824807,0.237411852,0.724496596,0.448993192,0.972470527,0.933708564,0,0,0,0,0,0,0.315602512,71.60280928,-0.315602512,108.3971907,0.891572871,0,0,0,0,12,17,0% +12/27/2018 2:00,102.123201,249.8060928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782386099,4.359938811,-4.655358355,4.655358355,0.673733144,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13704153,82.12331173,-0.13704153,97.87668827,0.685147097,0,0,0,0,12,18,0% +12/27/2018 3:00,113.488822,257.9841138,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980753608,4.502672203,-2.278764942,2.278764942,0.919845446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063894425,93.66337642,0.063894425,86.33662358,0,0,0,0,0,12,19,0% +12/27/2018 4:00,125.2051963,266.3078614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185242916,4.647949006,-1.360294201,1.360294201,0.762777698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.273520361,105.8738567,0.273520361,74.12614326,0,0.867198252,0,0,0,12,20,0% +12/27/2018 5:00,137.0294689,275.7278954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391615404,4.812359615,-0.83920509,0.83920509,0.673666212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477559722,118.5261445,0.477559722,61.47385549,0,0.945301053,0,0,0,12,21,0% +12/27/2018 6:00,148.6047063,288.2096033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593641408,5.030206513,-0.479537236,0.479537236,0.612159387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662116523,131.4614913,0.662116523,48.5385087,0,0.974484591,0,0,0,12,22,0% +12/27/2018 7:00,159.046632,309.0343739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.775887393,5.393667326,-0.19702684,0.19702684,0.563847264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81462147,144.5499509,0.81462147,35.45004911,0,0.988621799,0,0,0,12,23,0% +12/28/2018 8:00,165.2554141,350.5508303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884251084,6.118266184,0.048189747,-0.048189747,0.521912758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924687653,157.6213027,0.924687653,22.37869729,0,0.995927687,0,0,0,12,0,0% +12/28/2018 9:00,161.9756014,39.55940459,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827007553,0.69044186,0.280537065,-0.280537065,0.482179026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984817653,170.0032672,0.984817653,9.996732798,0,0.99922918,0,0,0,12,1,0% +12/28/2018 10:00,152.4407295,65.94930785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660592643,1.151032561,0.520578863,-0.520578863,0.441129461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990914011,172.2704694,0.990914011,7.729530599,0,0.999541535,0,0,0,12,2,0% +12/28/2018 11:00,141.1029209,80.42265053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462710555,1.403640045,0.793501702,-0.793501702,0.394456907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942558297,160.4857253,0.942558297,19.5142747,0,0.996952883,0,0,0,12,3,0% +12/28/2018 12:00,129.3103747,90.59034248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256891796,1.581099747,1.143291279,-1.143291279,0.334639366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843039847,147.4625259,0.843039847,32.53747406,0,0.990690822,0,0,0,12,4,0% +12/28/2018 13:00,117.5242899,99.15649919,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05118581,1.730607386,1.675843759,-1.675843759,0.243567528,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699132123,134.3574155,0.699132123,45.64258453,0,0.97848276,0,0,0,12,5,0% +12/28/2018 14:00,106.0070401,107.3036771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85017188,1.872802464,2.772724203,-2.772724203,0.055989925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520631877,121.3746461,0.520631877,58.62535388,0,0.953962853,0,0,0,12,6,0% +12/28/2018 15:00,94.99699797,115.7287423,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658010394,2.019847592,7.983636383,-7.983636383,0,#DIV/0!,0,0,0.455079043,1,0.124607251,0,0.948402539,0.987164502,0.724496596,1,0,0,0.064026714,0.312029739,0.834530799,0.559027395,0.961238037,0.922476074,0,0,0,0,0,0,-0.319692409,108.6443241,0.319692409,71.35567589,0,0.893599665,0,0,0,12,7,0% +12/28/2018 16:00,84.62429088,124.9727242,35.66513842,193.0591464,17.57815473,17.31696738,0,17.31696738,17.0481085,0.268858878,29.91364212,20.73617017,9.177471948,0.530046221,8.647425727,1.476972503,2.181185512,-6.099529183,6.099529183,0.426765388,0.492866578,0.190699874,6.13356346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.38729035,0.384016683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.138161409,5.895814499,16.52545176,6.279831182,0,20.73617017,-0.10740838,96.16594147,0.10740838,83.83405853,0,0.584486974,16.52545176,18.39985254,28.56778725,12,8,73% +12/28/2018 17:00,75.67240896,135.5219178,183.9262043,546.6826068,48.64105528,100.624194,52.06333256,48.56086141,47.17434799,1.386513419,46.06174495,0,46.06174495,1.466707283,44.59503767,1.320732689,2.365303674,-1.622276303,1.622276303,0.807579276,0.264459626,1.190275723,38.28335879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.34577766,1.062624434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.862350709,36.79942065,46.20812837,37.86204508,52.06333256,0,0.095235027,84.53515283,-0.095235027,95.46484717,0.524983083,0,73.54049721,37.86204508,98.32044848,12,9,34% +12/28/2018 18:00,68.33480496,147.7693199,319.0497477,691.2269604,63.86100435,257.5937676,193.2532764,64.34049121,61.93535944,2.405131765,79.28295005,0,79.28295005,1.925644903,77.35730515,1.19266734,2.579061166,-0.533293626,0.533293626,0.621352271,0.200160021,1.676719351,53.92905802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.53462332,1.395123177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214777462,51.83866186,60.74940078,53.23378503,193.2532764,0,0.279580062,73.7648569,-0.279580062,106.2351431,0.871160351,0,229.103993,53.23378503,263.9444406,12,10,15% +12/28/2018 19:00,63.28522695,161.8198462,410.7579218,753.8002966,71.88750415,398.5637854,325.747488,72.81629738,69.71983066,3.096466719,101.7606872,0,101.7606872,2.167673487,99.59301372,1.104535578,2.824289111,0.063101165,-0.063101165,0.519362755,0.175011851,1.868655639,60.1023888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01735315,1.570472062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353834649,57.77270222,68.3711878,59.34317429,325.747488,0,0.432140302,64.39653403,-0.432140302,115.603466,0.934296837,0,372.7160354,59.34317429,411.5549561,12,11,10% +12/28/2018 20:00,61.12200802,177.2010163,449.1856159,774.9339176,74.93432519,496.3754226,420.3144929,76.06092971,72.6747788,3.386150909,111.1697994,0,111.1697994,2.259546383,108.9102531,1.066780285,3.092741172,0.536191587,-0.536191587,0.438459528,0.166822629,1.801896815,57.95519554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.85776171,1.637033662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305468108,55.70873839,71.16322981,57.34577205,420.3144929,0,0.542387529,57.15368332,-0.542387529,122.8463167,0.95781499,0,473.7467515,57.34577205,511.2784124,12,12,8% +12/28/2018 21:00,62.15603377,192.8135144,430.8937977,765.1837203,73.50304076,535.7740796,461.2391673,74.53491234,71.28665288,3.248259458,106.6915779,0,106.6915779,2.216387876,104.47519,1.084827439,3.365230669,1.025908099,-1.025908099,0.354713072,0.170582731,1.509751622,48.5588019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52344227,1.605765471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.093809911,46.67656741,69.61725218,48.28233288,461.2391673,0,0.602782254,52.93057716,-0.602782254,127.0694228,0.967051307,0,515.6591918,48.28233288,547.259013,12,13,6% +12/28/2018 22:00,66.23398055,207.431091,357.4866875,719.8706815,67.37693978,506.6026462,438.5624841,68.04016211,65.34527645,2.694885653,88.70844954,0,88.70844954,2.031663329,86.67678621,1.156001037,3.620355509,1.672473757,-1.672473757,0.244143833,0.188473983,1.041851026,33.50951033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.81236525,1.471933166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754817522,32.21061593,63.56718278,33.68254909,438.5624841,0,0.609223983,52.46658697,-0.609223983,127.533413,0.967928379,0,488.064257,33.68254909,510.1088117,12,14,5% +12/28/2018 23:00,72.82998369,220.3360242,236.1362766,612.876724,55.21010404,399.3672496,344.0418389,55.3254107,53.5453157,1.780094997,58.91876248,0,58.91876248,1.66478834,57.25397414,1.27112301,3.845589082,2.812309915,-2.812309915,0.04922037,0.233806109,0.483328644,15.54551063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46979415,1.206133486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350169958,14.94293612,51.81996411,16.14906961,344.0418389,0,0.561355694,55.85039502,-0.561355694,124.149605,0.960929914,0,382.4200587,16.14906961,392.9893018,12,15,3% +12/28/2018 0:00,81.28795291,231.4579429,85.4154921,355.7750853,31.526717,195.8935487,164.6735805,31.21996822,30.57607016,0.643898059,21.6606218,0,21.6606218,0.950646839,20.70997497,1.41874242,4.039703183,6.187098255,-6.187098255,0,0.369098348,0.23766171,7.64401754,0.345507944,1,0.160240911,0,0.944067816,0.98282978,0.724496596,1,29.64158025,0.688740399,0.050789568,0.312029739,0.866087348,0.590583944,0.961238037,0.922476074,0.162981879,7.347720414,29.80456213,8.036460813,107.7775502,0,0.462858663,62.42827377,-0.462858663,117.5717262,0.941975664,0,131.3283915,8.036460813,136.5880944,12,16,4% +12/28/2018 1:00,91.23849721,241.1178998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592412181,4.208301237,-45.70045023,45.70045023,0,#DIV/0!,0,0,1,0.863860208,0,0.021878131,0.961238037,1,0.664327504,0.939830909,0,0,0.115824807,0.243709635,0.724496596,0.448993192,0.971567837,0.932805874,0,0,0,0,0,0,0.31752907,71.48644084,-0.31752907,108.5135592,0.892534103,0,0,0,0,12,17,0% +12/28/2018 2:00,102.0019728,249.7812285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780270269,4.359504847,-4.70379942,4.70379942,0.665449234,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139136565,82.00211389,-0.139136565,97.99788611,0.690640835,0,0,0,0,12,18,0% +12/28/2018 3:00,113.3661995,257.965903,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978613442,4.502354365,-2.292274652,2.292274652,0.922155742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061747063,93.54009812,0.061747063,86.45990188,0,0,0,0,0,12,19,0% +12/28/2018 4:00,125.0819541,266.2926363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183091933,4.647683277,-1.366630866,1.366630866,0.763861332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271440236,105.7499873,0.271440236,74.25001271,0,0.86579739,0,0,0,12,20,0% +12/28/2018 5:00,136.906143,275.7092025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389462961,4.812033362,-0.842966596,0.842966596,0.674309468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475661597,118.4024353,0.475661597,61.59756473,0,0.944883252,0,0,0,12,21,0% +12/28/2018 6:00,148.4824214,288.16909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591507135,5.029499423,-0.482109944,0.482109944,0.612599346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66050248,131.338206,0.66050248,48.66179399,0,0.974300057,0,0,0,12,22,0% +12/28/2018 7:00,158.9318521,308.9019323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773884105,5.391355785,-0.198972661,0.198972661,0.564180019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813373901,144.4268927,0.813373901,35.57310727,0,0.988527656,0,0,0,12,23,0% +12/29/2018 8:00,165.1858514,350.1468643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.883036985,6.111215647,0.046593175,-0.046593175,0.522185787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923863603,157.4976152,0.923863603,22.50238482,0,0.995879457,0,0,0,12,0,0% +12/29/2018 9:00,161.9910893,39.16016634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827277867,0.683473838,0.27912489,-0.27912489,0.482420522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98444491,169.8809797,0.98444491,10.11902026,0,0.999209956,0,0,0,12,1,0% +12/29/2018 10:00,152.4945814,65.70631025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661532537,1.146791453,0.519225889,-0.519225889,0.441360833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990989191,172.3025625,0.990989191,7.697437536,0,0.999545363,0,0,0,12,2,0% +12/29/2018 11:00,141.1685325,80.25367645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463855692,1.400690891,0.792070053,-0.792070053,0.394701733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943047084,160.5697373,0.943047084,19.43026269,0,0.996980378,0,0,0,12,3,0% +12/29/2018 12:00,129.3782485,90.45491038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258076417,1.578736011,1.141541844,-1.141541844,0.334938537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843879346,147.5520651,0.843879346,32.44793485,0,0.990749824,0,0,0,12,4,0% +12/29/2018 13:00,117.5897845,99.03650391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052328906,1.728513073,1.673128525,-1.673128525,0.244031861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700235178,134.4458754,0.700235178,45.55412455,0,0.978595418,0,0,0,12,5,0% +12/29/2018 14:00,106.0668647,107.1894222,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851216017,1.87080834,2.76603214,-2.76603214,0.057134335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52189306,121.4593201,0.52189306,58.54067993,0,0.954194932,0,0,0,12,6,0% +12/29/2018 15:00,95.04800716,115.6139978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658900672,2.017844922,7.918768681,-7.918768681,0,#DIV/0!,0,0,0.451765059,1,0.125617327,0,0.948283652,0.987045615,0.724496596,1,0,0,0.063643138,0.312029739,0.835425635,0.559922231,0.961238037,0.922476074,0,0,0,0,0,0,-0.320995253,108.7231242,0.320995253,71.27687576,0,0.894234457,0,0,0,12,7,0% +12/29/2018 16:00,84.66202726,124.8530409,35.05053226,189.4387965,17.42694952,17.16568841,0,17.16568841,16.90146269,0.264225718,29.60049433,20.57660015,9.023894174,0.525486827,8.498407347,1.477631127,2.179096646,-6.161196125,6.161196125,0.416219719,0.497195004,0.186668166,6.00388988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.24632882,0.380713417,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135240451,5.771167322,16.38156927,6.151880739,0,20.57660015,-0.108618723,96.23569712,0.108618723,83.76430288,0,0.589674205,16.38156927,18.28537107,28.34897893,12,8,73% +12/29/2018 17:00,75.69426395,135.3945189,183.2537613,544.215593,48.78025285,99.9580877,51.26729519,48.6907925,47.30934825,1.381444259,45.90290067,0,45.90290067,1.470904603,44.43199606,1.321114131,2.363080144,-1.632792862,1.632792862,0.809377714,0.266189641,1.188206996,38.21682143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.47554503,1.065665378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860851924,36.7354624,46.33639696,37.80112778,51.26729519,0,0.094204017,84.59449209,-0.094204017,95.40550791,0.519237073,0,72.95627726,37.80112778,97.69635937,12,9,34% +12/29/2018 18:00,68.33526244,147.6342814,318.7197656,689.6010608,64.13639285,256.8940779,192.2889898,64.60508819,62.20244397,2.402644221,79.21124605,0,79.21124605,1.933948883,77.27729717,1.192675325,2.576704299,-0.539103053,0.539103053,0.622345741,0.2012313,1.677866407,53.96595127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.79135513,1.401139382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2156085,51.87412505,61.00696363,53.27526443,192.2889898,0,0.278840914,73.80896101,-0.278840914,106.191039,0.870686285,0,228.4303498,53.27526443,263.2979449,12,10,15% +12/29/2018 19:00,63.25988956,161.6820928,410.870616,752.6118077,72.23722192,398.1154901,324.9591707,73.1563194,70.05900315,3.097316256,101.7985565,0,101.7985565,2.178218768,99.62033774,1.104093357,2.821884862,0.058261972,-0.058261972,0.520190306,0.175815011,1.87247651,60.22528115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.34337865,1.578112082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356602857,57.89083102,68.69998151,59.46894311,324.9591707,0,0.431775276,64.41972355,-0.431775276,115.5802764,0.93419902,0,372.2765203,59.46894311,411.1977542,12,11,10% +12/29/2018 20:00,61.06904597,177.0707649,449.7712697,774.0265022,75.33186072,496.3234804,419.8725874,76.45089299,73.06032718,3.390565816,111.3237852,0,111.3237852,2.271533546,109.0522516,1.065855923,3.090467857,0.531091259,-0.531091259,0.439331735,0.167489268,1.807977356,58.15076666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.22836547,1.645718321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30987344,55.89672878,71.53823891,57.5424471,419.8725874,0,0.542452469,57.14925438,-0.542452469,122.8507456,0.957826026,0,473.7031306,57.5424471,511.3635113,12,12,8% +12/29/2018 21:00,62.07781145,192.7020215,431.9381619,764.5245441,73.93270239,536.1997001,461.2402091,74.95949094,71.70335863,3.256132316,106.9577519,0,106.9577519,2.22934376,104.7284082,1.083462202,3.363284751,1.019437629,-1.019437629,0.355819588,0.171165016,1.517620553,48.81189378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.92399568,1.615151965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.099510925,46.91984895,70.02350661,48.53500092,461.2402091,0,0.603303338,52.89315007,-0.603303338,127.1068499,0.967122951,0,516.099499,48.53500092,547.8646864,12,13,6% +12/29/2018 22:00,66.13627899,207.3443249,358.9348481,719.5609292,67.82739974,507.5610189,439.0730631,68.48795588,65.78215338,2.7058025,89.07315588,0,89.07315588,2.045246359,87.02790952,1.154295823,3.618841155,1.662453556,-1.662453556,0.245857388,0.188968555,1.050843392,33.79873575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.23230798,1.481774025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761332461,32.4886304,63.99364044,33.97040442,439.0730631,0,0.610195809,52.39633745,-0.610195809,127.6036626,0.96805909,0,489.0423102,33.97040442,511.2752605,12,14,5% +12/29/2018 23:00,72.71939697,220.2731552,237.8799767,613.3669571,55.67832143,400.959181,345.1665266,55.79265435,53.99941461,1.793239745,59.35566124,0,59.35566124,1.678906822,57.67675442,1.269192907,3.844491812,2.791437186,-2.791437186,0.052789816,0.234060564,0.492234207,15.83194413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.90629129,1.216362277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356622007,15.21826689,52.26291329,16.43462917,345.1665266,0,0.562740661,55.75445461,-0.562740661,124.2455454,0.961149125,0,384.0194184,16.43462917,394.7755545,12,15,3% +12/29/2018 0:00,81.17042133,231.4145577,87.14132395,358.858504,32.05798476,198.4670067,166.7187803,31.74822634,31.09131823,0.656908109,22.0950894,0,22.0950894,0.966666522,21.12842288,1.416691107,4.038945969,6.101897195,-6.101897195,0,0.367884986,0.24166663,7.772829559,0.339206548,1,0.162439472,0,0.943790951,0.982552914,0.724496596,1,30.140067,0.700346604,0.049991941,0.312029739,0.868033255,0.592529851,0.961238037,0.922476074,0.165779057,7.471539426,30.30584606,8.17188603,110.1666784,0,0.464580826,62.31690277,-0.464580826,117.6830972,0.942376101,0,134.1242909,8.17188603,139.4726269,12,16,4% +12/29/2018 1:00,91.11540623,241.0891461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590263838,4.20779939,-50.74124396,50.74124396,0,#DIV/0!,0,0,1,0.878158994,0,0.019705283,0.961238037,1,0.670135645,0.945639049,0,0,0.115824807,0.250297449,0.724496596,0.448993192,0.970614503,0.931852539,0,0,0,0,0,0,0.319535798,71.36514575,-0.319535798,108.6348542,0.89352301,0,0,0,0,12,17,0% +12/29/2018 2:00,101.8766969,249.7630756,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778083792,4.35918802,-4.754883171,4.754883171,0.656713399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141301017,81.87686251,-0.141301017,98.12313749,0.696145506,0,0,0,0,12,18,0% +12/29/2018 3:00,113.2399343,257.9551031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976409698,4.502165872,-2.306281524,2.306281524,0.924551058,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.059541655,93.41350447,0.059541655,86.58649553,0,0,0,0,0,12,19,0% +12/29/2018 4:00,124.9552949,266.2858689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180881313,4.647565165,-1.373121866,1.373121866,0.764971358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269313265,105.6234062,0.269313265,74.37659379,0,0.864342602,0,0,0,12,20,0% +12/29/2018 5:00,136.7793709,275.7006416,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387250372,4.811883946,-0.84677381,0.84677381,0.67496054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473726884,118.2764899,0.473726884,61.72351007,0,0.944453953,0,0,0,12,21,0% +12/29/2018 6:00,148.3562121,288.1414832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.589304367,5.029017594,-0.484679637,0.484679637,0.613038789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65886046,131.2130228,0.65886046,48.78697721,0,0.974111397,0,0,0,12,22,0% +12/29/2018 7:00,158.8117046,308.7863751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771787136,5.38933893,-0.200886541,0.200886541,0.564507311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812104724,144.3020813,0.812104724,35.69791869,0,0.988431586,0,0,0,12,23,0% +12/30/2018 8:00,165.1081154,349.753641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.881680235,6.104352606,0.04505139,-0.04505139,0.522449448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923021636,157.3719004,0.923021636,22.62809965,0,0.995830089,0,0,0,12,0,0% +12/30/2018 9:00,161.9989482,38.74871584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827415032,0.676292672,0.277791277,-0.277791277,0.482648583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984055002,169.754607,0.984055002,10.24539298,0,0.999189832,0,0,0,12,1,0% +12/30/2018 10:00,152.5427168,65.45033823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662372658,1.142323899,0.517982487,-0.517982487,0.441573467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991044976,172.3264623,0.991044976,7.673537743,0,0.999548203,0,0,0,12,2,0% +12/30/2018 11:00,141.2292587,80.07443185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464915564,1.397562482,0.790796248,-0.790796248,0.394919566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943511413,160.6498702,0.943511413,19.35012979,0,0.99700647,0,0,0,12,3,0% +12/30/2018 12:00,129.4414718,90.31113627,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259179871,1.576226679,1.140039155,-1.140039155,0.335195512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844686842,147.6383991,0.844686842,32.36160085,0,0.990806465,0,0,0,12,4,0% +12/30/2018 13:00,117.6505557,98.90942829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053389564,1.726295185,1.670864543,-1.670864543,0.244419024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701296726,134.5311333,0.701296726,45.46886668,0,0.978703503,0,0,0,12,5,0% +12/30/2018 14:00,106.1217043,107.0689541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852173148,1.868705776,2.760501127,-2.760501127,0.058080194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523101923,121.5405533,0.523101923,58.45944665,0,0.954416333,0,0,0,12,6,0% +12/30/2018 15:00,95.09363411,115.4937061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659697013,2.015745437,7.864280407,-7.864280407,0,#DIV/0!,0,0,0.448950033,1,0.126478455,0,0.948182112,0.986944075,0.724496596,1,0,0,0.063316523,0.312029739,0.836188508,0.560685104,0.961238037,0.922476074,0,0,0,0,0,0,-0.32223441,108.7981065,0.32223441,71.20189354,0,0.894833455,0,0,0,12,7,0% +12/30/2018 16:00,84.69400882,124.7284324,34.51405004,186.14924,17.29995385,17.0384779,0,17.0384779,16.77829641,0.260181488,29.32104481,20.43105635,8.889988461,0.521657439,8.368331023,1.478189311,2.176921816,-6.217680663,6.217680663,0.406560295,0.501243807,0.183172522,5.891457946,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.1279367,0.377939038,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.132707868,5.66309347,16.26064457,6.041032509,0,20.43105635,-0.109756324,96.30126893,0.109756324,83.69873107,0,0.594445385,16.26064457,18.18617967,28.16313544,12,8,73% +12/30/2018 17:00,75.70970177,135.2629362,182.6990607,541.9217857,48.93383582,99.37383961,50.53827679,48.83556282,47.45830013,1.377262692,45.77303817,0,45.77303817,1.475535697,44.29750247,1.321383572,2.360783593,-1.642825323,1.642825323,0.811093366,0.267838464,1.186773253,38.17070731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.61872324,1.069020589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859813182,36.69113576,46.47853643,37.76015635,50.53827679,0,0.093257511,84.64896273,-0.093257511,95.35103727,0.513850155,0,72.44763778,37.76015635,97.1609049,12,9,34% +12/30/2018 18:00,68.32873466,147.4961044,318.5183611,688.0818557,64.42298611,256.3024134,191.420892,64.88152134,62.48039539,2.401125949,79.17105506,0,79.17105506,1.942590727,77.22846434,1.192561394,2.574292656,-0.544850763,0.544850763,0.623328658,0.202258312,1.679620179,54.0223586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.0585326,1.407400369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216879102,51.92834593,61.2754117,53.3357463,191.420892,0,0.278194942,73.84749729,-0.278194942,106.1525027,0.870269917,0,227.8632555,53.3357463,262.7704348,12,10,15% +12/30/2018 19:00,63.22714238,161.5426985,411.1159138,751.5047463,72.59710564,397.7887598,324.2815594,73.50720047,70.40803505,3.099165414,101.8688836,0,101.8688836,2.18907059,99.67981303,1.103521811,2.819451972,0.053359129,-0.053359129,0.521028741,0.176585491,1.876879728,60.3669038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67888139,1.585974191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359792974,58.0269641,69.03867437,59.61293829,324.2815594,0,0.431509662,64.43659468,-0.431509662,115.5634053,0.93412774,0,371.9590744,59.61293829,410.9745502,12,11,10% +12/30/2018 20:00,61.00854314,176.9407794,450.4892072,773.19176,75.73924044,496.4009524,419.5495516,76.85140083,73.45542289,3.395977931,111.5101414,0,111.5101414,2.283817547,109.2263239,1.06479995,3.088199182,0.525853959,-0.525853959,0.440227366,0.168126648,1.814607062,58.36400078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.6081465,1.654618039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314676639,56.10169753,71.92282314,57.75631557,419.5495516,0,0.542620309,57.13780661,-0.542620309,122.8621934,0.957854536,0,473.7902643,57.75631557,511.5906177,12,12,8% +12/30/2018 21:00,61.99230515,192.5927729,433.1107017,763.9393592,74.37231195,536.7589303,461.3642465,75.39468376,72.12971234,3.264971416,107.2553036,0,107.2553036,2.24259961,105.012704,1.081969836,3.361378003,1.012752466,-1.012752466,0.356962818,0.171716634,1.52599213,49.08115247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.33382309,1.624755783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105576104,47.17867064,70.43939919,48.80342643,461.3642465,0,0.603927839,52.84827059,-0.603927839,127.1517294,0.967208652,0,516.6748901,48.80342643,548.6157566,12,13,6% +12/30/2018 22:00,66.03188303,207.2614327,360.503459,719.3369131,68.28850144,508.6550215,439.708043,68.94697851,66.22935116,2.717627351,89.46738767,0,89.46738767,2.059150276,87.40823739,1.15247377,3.617394413,1.652093094,-1.652093094,0.247629131,0.189425371,1.06027487,34.1020845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.66217149,1.491847365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768165534,32.78022076,64.43033703,34.27206812,439.708043,0,0.611268565,52.31871487,-0.611268565,127.6812851,0.968202893,0,490.1569365,34.27206812,512.5873196,12,14,5% +12/30/2018 23:00,72.60287526,220.2152751,239.732387,613.9714731,56.15927234,402.6887978,346.4157307,56.27306707,54.46586308,1.807203996,59.81930201,0,59.81930201,1.693409267,58.12589274,1.26715922,3.843481613,2.769952733,-2.769952733,0.056463874,0.234258179,0.501489944,16.12964045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3546593,1.226869249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363327757,15.50442393,52.71798705,16.73129317,346.4157307,0,0.564221215,55.65177142,-0.564221215,124.3482286,0.961382276,0,385.7559307,16.73129317,396.7062274,12,15,3% +12/30/2018 0:00,81.04773076,231.3768756,88.95729601,362.1137416,32.60819433,201.1820105,168.8864759,32.29553463,31.62493696,0.670597673,22.5519837,0,22.5519837,0.98325737,21.56872633,1.414549753,4.038288292,6.015590786,-6.015590786,0,0.366560089,0.245814343,7.906234239,0.332698472,1,0.164728367,0,0.943501556,0.982263519,0.724496596,1,30.65618523,0.712366618,0.049163798,0.312029739,0.870058943,0.594555539,0.961238037,0.922476074,0.168681514,7.599773079,30.82486675,8.312139697,112.6982034,0,0.466390685,62.19973804,-0.466390685,117.800262,0.942793742,0,137.0760276,8.312139697,142.5161568,12,16,4% +12/30/2018 1:00,90.9878143,241.0666179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588036939,4.207406199,-57.29330731,57.29330731,0,#DIV/0!,0,0,1,0.892794576,0,0.017452274,0.961238037,1,0.676197174,0.951700578,0,0,0.115824807,0.257174615,0.724496596,0.448993192,0.969609441,0.930847478,0,0,0,0,0,0,0.321621002,71.23901542,-0.321621002,108.7609846,0.894537516,0,0,0,0,12,17,0% +12/30/2018 2:00,101.747477,249.7516694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775828479,4.358988944,-4.808702304,4.808702304,0.647509785,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143533056,81.74765907,-0.143533056,98.25234093,0.701648189,0,0,0,0,12,18,0% +12/30/2018 3:00,113.110133,257.9517338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974144238,4.502107065,-2.320787621,2.320787621,0.927031747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.057280047,93.28370226,0.057280047,86.71629774,0,0,0,0,0,12,19,0% +12/30/2018 4:00,124.8253266,266.2875614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178612939,4.647594703,-1.379764644,1.379764644,0.76610734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267141197,105.494222,0.267141197,74.50577804,0,0.862833061,0,0,0,12,20,0% +12/30/2018 5:00,136.6492616,275.7021917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384979535,4.811911,-0.850624181,0.850624181,0.675618992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.471757125,118.1484159,0.471757125,61.85158408,0,0.94401326,0,0,0,12,21,0% +12/30/2018 6:00,148.2261907,288.1267315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587035066,5.028760128,-0.487244155,0.487244155,0.613477348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657191698,131.0860458,0.657191698,48.91395424,0,0.973918698,0,0,0,12,22,0% +12/30/2018 7:00,158.6863156,308.6876833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769598685,5.387616434,-0.202766653,0.202766653,0.564828829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810814792,144.1756153,0.810814792,35.82438468,0,0.988333636,0,0,0,12,23,0% +12/31/2018 8:00,165.0222962,349.3720055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880182408,6.097691811,0.043565982,-0.043565982,0.522703468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922162169,157.2442515,0.922162169,22.75574845,0,0.995779602,0,0,0,12,0,0% +12/31/2018 9:00,161.9990687,38.32587306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827417134,0.668912674,0.276537652,-0.276537652,0.482862966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983647897,169.6242853,0.983647897,10.3757147,0,0.999168803,0,0,0,12,1,0% +12/31/2018 10:00,152.584999,65.18166862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663110621,1.137634729,0.516849968,-0.516849968,0.441767139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991080889,172.3418876,0.991080889,7.658112357,0,0.999550031,0,0,0,12,2,0% +12/31/2018 11:00,141.2849757,79.88506326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46588801,1.394257377,0.7896815,-0.7896815,0.3951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943950407,160.7259253,0.943950407,19.27407469,0,0.997031116,0,0,0,12,3,0% +12/31/2018 12:00,129.4999343,90.1591298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260200234,1.573573666,1.138784241,-1.138784241,0.335410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845461126,147.7213755,0.845461126,32.27862455,0,0.990860675,0,0,0,12,4,0% +12/31/2018 13:00,117.706506,98.7753694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054366081,1.723955416,1.669052058,-1.669052058,0.244728978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702315316,134.6130586,0.702315316,45.38694145,0,0.978806906,0,0,0,12,5,0% +12/31/2018 14:00,106.1714743,106.9423663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853041798,1.866496402,2.756124754,-2.756124754,0.058828598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.524256889,121.6182309,0.524256889,58.38176915,0,0.954626909,0,0,0,12,6,0% +12/31/2018 15:00,95.13380826,115.367961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660398184,2.013550771,7.819815012,-7.819815012,0,#DIV/0!,0,0,0.446631307,1,0.127189933,0,0.948098089,0.986860053,0.724496596,1,0,0,0.063046946,0.312029739,0.836818799,0.561315395,0.961238037,0.922476074,0,0,0,0,0,0,-0.323408288,108.8691694,0.323408288,71.13083055,0,0.895396665,0,0,0,12,7,0% +12/31/2018 16:00,84.72018563,124.5989945,34.05498906,183.1903313,17.19785467,16.93599679,0,16.93599679,16.6792759,0.256720892,29.07671714,20.30111199,8.775605145,0.518578772,8.257026373,1.478646182,2.174662698,-6.26862634,6.26862634,0.397848071,0.505002502,0.180201714,5.795906553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.03275442,0.375708555,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.130555528,5.571245837,16.16330995,5.946954392,0,20.30111199,-0.110819779,96.36257437,0.110819779,83.63742563,0,0.598817002,16.16330995,18.10360542,28.01175762,12,8,73% +12/31/2018 17:00,75.71868586,135.127268,182.2625548,539.8034796,49.1022267,98.87168013,49.8760946,48.99558552,47.62161339,1.373972126,45.67227987,0,45.67227987,1.480613303,44.19166657,1.321540374,2.358415736,-1.652346858,1.652346858,0.812721644,0.26940381,1.185978592,38.14514828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77570617,1.072699298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859237452,36.66656745,46.63494362,37.73926674,49.8760946,0,0.092396764,84.69849376,-0.092396764,95.30150624,0.508855506,0,72.01466898,37.73926674,96.71426428,12,9,34% +12/31/2018 18:00,68.31520418,147.3548885,318.4457494,686.6701876,64.72098682,255.819222,190.6492332,65.16998885,62.76941027,2.400578571,79.16243533,0,79.16243533,1.951576548,77.21085878,1.192325242,2.571827973,-0.550525647,0.550525647,0.62429912,0.203240228,1.681981346,54.09830186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.33634471,1.413910565,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218589759,52.00134547,61.55493447,53.41525604,190.6492332,0,0.277643091,73.88041277,-0.277643091,106.1195872,0.86991268,0,227.4031199,53.41525604,262.3623367,12,10,15% +12/31/2018 19:00,63.18698824,161.4017627,411.4936061,750.4792373,72.96725641,397.5837616,323.7147246,73.86903702,70.76702441,3.102012618,101.9716209,0,101.9716209,2.200232001,99.7713889,1.102820989,2.816992177,0.048401061,-0.048401061,0.521876621,0.177322941,1.881863452,60.52719749,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02395561,1.594060595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363403665,58.18104449,69.38735928,59.77510509,323.7147246,0,0.431344011,64.44711525,-0.431344011,115.5528847,0.934083241,0,371.7638582,59.77510509,410.885469,12,11,11% +12/31/2018 20:00,60.94052299,176.8111597,451.3387591,772.4293076,76.15650067,496.6075196,419.3450362,77.2624834,73.86010119,3.402382212,111.728707,0,111.728707,2.296399483,109.4323076,1.063612774,3.08593689,0.520488575,-0.520488575,0.441144901,0.168734679,1.821782205,58.59477804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.99713867,1.663733608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.319875006,56.32352941,72.31701367,57.98726302,419.3450362,0,0.542891151,57.11933022,-0.542891151,122.8806698,0.957900507,0,474.0078363,57.98726302,511.9593402,12,12,8% +12/31/2018 21:00,61.89955929,192.4858686,434.4103153,763.427204,74.8218518,537.4508456,461.6103802,75.84046536,72.56569691,3.274768453,107.5839653,0,107.5839653,2.256154895,105.3278104,1.080351115,3.35951217,1.00586452,-1.00586452,0.358140726,0.172237742,1.534861437,49.36641986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.75290804,1.634576541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.112001886,47.45288051,70.86490992,49.08745705,461.6103802,0,0.604655398,52.79595131,-0.604655398,127.2040487,0.967308272,0,517.384449,49.08745705,549.5112079,12,13,6% +12/31/2018 22:00,65.92085731,207.1825095,362.1910718,719.196686,68.76016489,509.8829981,440.4658566,69.41714151,66.68679222,2.730349289,89.89079133,0,89.89079133,2.073372669,87.81741866,1.150536006,3.616016943,1.641412705,-1.641412705,0.249455585,0.189845002,1.070140449,34.41939543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.10188123,1.502151441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775313112,33.08523209,64.87719435,34.58738353,440.4658566,0,0.612441444,52.23375464,-0.612441444,127.7662454,0.968359542,0,491.4065095,34.58738353,514.0432602,12,14,5% +12/31/2018 23:00,72.48050025,220.1624669,241.6919175,614.6860319,56.65275678,404.5534316,347.7869887,56.7664429,54.94446714,1.821975765,60.30929325,0,60.30929325,1.708289643,58.60100361,1.265023373,3.842559936,2.747905957,-2.747905957,0.060234095,0.234400709,0.511093152,16.43851264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.81471173,1.237650031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370285249,15.80132362,53.18499697,17.03897365,347.7869887,0,0.565796147,55.54240452,-0.565796147,124.4575955,0.961628949,0,387.6270335,17.03897365,398.7787009,12,15,3% +12/31/2018 0:00,80.91997316,231.3449635,90.86257745,365.5306167,33.17678434,204.0344817,171.1731394,32.86134237,32.17638188,0.684960489,23.03108633,0,23.03108633,1.000402457,22.03068387,1.412319962,4.03773132,5.92843308,-5.92843308,0,0.365131447,0.250100614,8.04409547,0.325994799,1,0.167105627,0,0.943199743,0.981961707,0.724496596,1,31.18938772,0.724788175,0.048306102,0.312029739,0.872162645,0.596659241,0.961238037,0.922476074,0.171687048,7.732290538,31.36107477,8.457078712,115.3715862,0,0.468286736,62.07685778,-0.468286736,117.9231422,0.943227811,0,140.1827635,8.457078712,145.7177523,12,16,4% +12/31/2018 1:00,90.85582557,241.0503653,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585733301,4.207122537,-66.12798554,66.12798554,0,#DIV/0!,0,0,1,0.907738057,0,0.015121038,0.961238037,1,0.682511052,0.958014457,0,0,0.115824807,0.264340096,0.724496596,0.448993192,0.968551587,0.929789624,0,0,0,0,0,0,0.323782877,71.10814771,-0.323782877,108.8918523,0.895575528,0,0,0,0,12,17,0% +12/31/2018 2:00,101.6144221,249.7470431,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773506233,4.358908199,-4.865354812,4.865354812,0.637821635,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145830746,81.61461117,-0.145830746,98.38538883,0.707136775,0,0,0,0,12,18,0% +12/31/2018 3:00,112.9769068,257.9558115,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971819002,4.502178235,-2.335794634,2.335794634,0.929598097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054964185,93.15080366,0.054964185,86.84919634,0,0,0,0,0,12,19,0% +12/31/2018 4:00,124.6921609,266.2977113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176288759,4.647771854,-1.386556357,1.386556357,0.767268792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264925863,105.3625476,0.264925863,74.63745238,0,0.861267955,0,0,0,12,20,0% +12/31/2018 5:00,136.5159266,275.7138257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3826524,4.812114051,-0.854514985,0.854514985,0.676284358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469753923,118.0183243,0.469753923,61.98167568,0,0.943561293,0,0,0,12,21,0% +12/31/2018 6:00,148.0924716,288.124773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584701226,5.028725945,-0.489801229,0.489801229,0.613914633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65549747,130.9573815,0.65549747,49.04261845,0,0.973722055,0,0,0,12,22,0% +12/31/2018 7:00,158.5558122,308.6058127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767320971,5.386187523,-0.204611094,0.204611094,0.565144247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809504976,144.0475944,0.809504976,35.95240557,0,0.988233857,0,0,0,12,23,0% diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index 1bcd410b65..ea9c3d5bd1 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -29,50 +29,54 @@ # backside BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} +# radians +SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) +SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) +SYSAZ_RAD = np.radians(SYSAZ) +BACK_SYSAZ_RAD = np.radians(BACKSIDE['sysaz']) +TILT_RAD = np.radians(TILT) +BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) def test_solar_projection_tangent(): - solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) - solar_azimuth_rad = np.radians(TESTDATA.azimuth) - system_azimuth_rad = np.radians(SYSAZ) tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) backside_sysaz_rad = np.radians(BACKSIDE['sysaz']) tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( - solar_zenith_rad, solar_azimuth_rad, backside_sysaz_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, backside_sysaz_rad) assert np.allclose(tan_phi_f, -tan_phi_b) def test_frontside_solar_projection(): - solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) - solar_azimuth_rad = np.radians(TESTDATA.azimuth) - system_azimuth_rad = np.radians(SYSAZ) phi, tan_phi = pvlib.infinite_sheds.solar_projection( - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_f) def test_frontside_solar_projection_tangent(): - solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) - solar_azimuth_rad = np.radians(TESTDATA.azimuth) - system_azimuth_rad = np.radians(SYSAZ) tan_phi = pvlib.infinite_sheds.solar_projection_tangent( - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_f) def test_backside_solar_projection(): - solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) - solar_azimuth_rad = np.radians(TESTDATA.azimuth) - system_azimuth_rad = np.radians(BACKSIDE['sysaz']) phi, tan_phi = pvlib.infinite_sheds.solar_projection( - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_b) def test_backside_solar_projection_tangent(): - solar_zenith_rad = np.radians(TESTDATA.apparent_zenith) - solar_azimuth_rad = np.radians(TESTDATA.azimuth) - system_azimuth_rad = np.radians(BACKSIDE['sysaz']) tan_phi = pvlib.infinite_sheds.solar_projection_tangent( - solar_zenith_rad, solar_azimuth_rad, system_azimuth_rad) - assert np.allclose(tan_phi, TESTDATA.tan_phi_b) \ No newline at end of file + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) + assert np.allclose(tan_phi, TESTDATA.tan_phi_b) + + +def test_ground_illumination(): + f_sky_gnd = pvlib.infinite_sheds.ground_illumination( + GCR, TILT_RAD, TESTDATA.tan_phi_f) + assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) + + +def test_backside_ground_illumination(): + f_sky_gnd = pvlib.infinite_sheds.ground_illumination( + GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) + assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) \ No newline at end of file From 99fdc691a4ec4bdfc42603d7d4d553fb94609b2e Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 03:40:08 -0700 Subject: [PATCH 010/115] TST: coerce df to float, replace div/0 with nan --- pvlib/infinite_sheds.py | 2 +- pvlib/test/test_infinite_sheds.py | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 229213652e..00b2f367f0 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -121,7 +121,7 @@ def diffuse_fraction(ghi, dhi): df : numeric diffuse fraction """ - return dhi/ghi + return np.where(dhi > 0, dhi/ghi, np.nan) def poa_ground_sky(poa_ground, f_gnd_sky, df): diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index ea9c3d5bd1..353746689c 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -11,7 +11,6 @@ PROJDIR = os.path.dirname(BASEDIR) DATADIR = os.path.join(PROJDIR, 'data') TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') -TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) # location and irradiance LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates @@ -29,6 +28,11 @@ # backside BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} +# TESTDATA +TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) +GHI, DHI = TESTDATA.ghi, TESTDATA.dhi +DF = np.where(DHI > 0, TESTDATA.df, np.nan).astype(np.float64) + # radians SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) @@ -37,6 +41,7 @@ TILT_RAD = np.radians(TILT) BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) + def test_solar_projection_tangent(): tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) @@ -79,4 +84,9 @@ def test_ground_illumination(): def test_backside_ground_illumination(): f_sky_gnd = pvlib.infinite_sheds.ground_illumination( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) \ No newline at end of file + assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) + + +def test_diffuse_fraction(): + df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) + assert np.allclose(df, DF, equal_nan=True) \ No newline at end of file From 680b700196a4f7488dfec87464e3884c53056eb3 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 04:16:59 -0700 Subject: [PATCH 011/115] TST: set atol to 1e-6 to compare to CSV --- pvlib/infinite_sheds.py | 2 +- pvlib/test/test_infinite_sheds.py | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 00b2f367f0..00754f6762 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -143,7 +143,7 @@ def poa_ground_sky(poa_ground, f_gnd_sky, df): poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ - return poa_ground * (f_gnd_sky * (1 - df) + df) + return poa_ground * np.where(np.isnan(df), 0.0, f_gnd_sky * (1 - df) + df) def shade_line(gcr, tilt, tan_phi): diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index 353746689c..dfab6e8b82 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -89,4 +89,18 @@ def test_backside_ground_illumination(): def test_diffuse_fraction(): df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) - assert np.allclose(df, DF, equal_nan=True) \ No newline at end of file + assert np.allclose(df, DF, equal_nan=True) + + +def test_frontside_poa_ground_sky(): + poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA['poa_ground_diffuse_f'], TESTDATA['Fsky-gnd'], DF) + # CSV file decimals are truncated + assert np.allclose( + poa_gnd_sky, TESTDATA['POA_gnd-sky_f'], equal_nan=True, atol=1e-6) + + +def test_backside_poa_ground_sky(): + poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA['poa_ground_diffuse_b'], TESTDATA['Fsky-gnd'], DF) + assert np.allclose(poa_gnd_sky, TESTDATA['POA_gnd-sky_b'], equal_nan=True) \ No newline at end of file From 97d966475377d0fa51a8672673c464619ae057bc Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 16:42:04 -0700 Subject: [PATCH 012/115] TST: test for shade line --- pvlib/test/test_infinite_sheds.py | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index dfab6e8b82..da33a53903 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -32,6 +32,7 @@ TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) GHI, DHI = TESTDATA.ghi, TESTDATA.dhi DF = np.where(DHI > 0, TESTDATA.df, np.nan).astype(np.float64) +F_GND_SKY = TESTDATA['Fsky-gnd'] # radians SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) @@ -78,13 +79,13 @@ def test_backside_solar_projection_tangent(): def test_ground_illumination(): f_sky_gnd = pvlib.infinite_sheds.ground_illumination( GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) + assert np.allclose(f_sky_gnd, F_GND_SKY) def test_backside_ground_illumination(): f_sky_gnd = pvlib.infinite_sheds.ground_illumination( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_sky_gnd, TESTDATA['Fsky-gnd']) + assert np.allclose(f_sky_gnd, F_GND_SKY) def test_diffuse_fraction(): @@ -94,7 +95,7 @@ def test_diffuse_fraction(): def test_frontside_poa_ground_sky(): poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA['poa_ground_diffuse_f'], TESTDATA['Fsky-gnd'], DF) + TESTDATA.poa_ground_diffuse_f, F_GND_SKY, DF) # CSV file decimals are truncated assert np.allclose( poa_gnd_sky, TESTDATA['POA_gnd-sky_f'], equal_nan=True, atol=1e-6) @@ -102,5 +103,12 @@ def test_frontside_poa_ground_sky(): def test_backside_poa_ground_sky(): poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA['poa_ground_diffuse_b'], TESTDATA['Fsky-gnd'], DF) - assert np.allclose(poa_gnd_sky, TESTDATA['POA_gnd-sky_b'], equal_nan=True) \ No newline at end of file + TESTDATA.poa_ground_diffuse_b, F_GND_SKY, DF) + assert np.allclose(poa_gnd_sky, TESTDATA['POA_gnd-sky_b'], equal_nan=True) + + +def test_shade_line(): + f_x = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) + assert np.allclose(f_x, TESTDATA.Fx_f) + f_x = pvlib.infinite_sheds.shade_line(GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) + assert np.allclose(f_x, TESTDATA.Fx_b) From 49314460aa92bc9df42d548b450bf8621d5e693c Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 22:42:55 -0700 Subject: [PATCH 013/115] TST: fix diffuse fraction NaN and Inf, consolidate front+back = 1 test --- pvlib/infinite_sheds.py | 2 +- pvlib/test/test_infinite_sheds.py | 46 +++++++++++++++++-------------- 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 00754f6762..262bd91fac 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -121,7 +121,7 @@ def diffuse_fraction(ghi, dhi): df : numeric diffuse fraction """ - return np.where(dhi > 0, dhi/ghi, np.nan) + return dhi/ghi def poa_ground_sky(poa_ground, f_gnd_sky, df): diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index da33a53903..d2a59fc2ac 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -31,8 +31,13 @@ # TESTDATA TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) GHI, DHI = TESTDATA.ghi, TESTDATA.dhi -DF = np.where(DHI > 0, TESTDATA.df, np.nan).astype(np.float64) +# convert #DIV/0 to np.inf, 0/0 to NaN, then convert to float +DF = np.where(GHI > 0, TESTDATA.df, np.inf) +DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) +TESTDATA.df = DF F_GND_SKY = TESTDATA['Fsky-gnd'] +BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] +FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] # radians SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) @@ -52,37 +57,34 @@ def test_solar_projection_tangent(): assert np.allclose(tan_phi_f, -tan_phi_b) -def test_frontside_solar_projection(): +def test_solar_projection(): + # frontside phi, tan_phi = pvlib.infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_f) + # backside + phi, tan_phi = pvlib.infinite_sheds.solar_projection( + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) + assert np.allclose(tan_phi, TESTDATA.tan_phi_b) def test_frontside_solar_projection_tangent(): + # frontside tan_phi = pvlib.infinite_sheds.solar_projection_tangent( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_f) - - -def test_backside_solar_projection(): - phi, tan_phi = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi, TESTDATA.tan_phi_b) - - -def test_backside_solar_projection_tangent(): + # backside tan_phi = pvlib.infinite_sheds.solar_projection_tangent( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_b) def test_ground_illumination(): + # frontside, same for both sides f_sky_gnd = pvlib.infinite_sheds.ground_illumination( GCR, TILT_RAD, TESTDATA.tan_phi_f) assert np.allclose(f_sky_gnd, F_GND_SKY) - - -def test_backside_ground_illumination(): + # backside, should be the same as frontside f_sky_gnd = pvlib.infinite_sheds.ground_illumination( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) assert np.allclose(f_sky_gnd, F_GND_SKY) @@ -93,22 +95,24 @@ def test_diffuse_fraction(): assert np.allclose(df, DF, equal_nan=True) -def test_frontside_poa_ground_sky(): +def test_poa_ground_sky(): + # front side poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( TESTDATA.poa_ground_diffuse_f, F_GND_SKY, DF) # CSV file decimals are truncated assert np.allclose( - poa_gnd_sky, TESTDATA['POA_gnd-sky_f'], equal_nan=True, atol=1e-6) - - -def test_backside_poa_ground_sky(): + poa_gnd_sky, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) + # backside poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( TESTDATA.poa_ground_diffuse_b, F_GND_SKY, DF) - assert np.allclose(poa_gnd_sky, TESTDATA['POA_gnd-sky_b'], equal_nan=True) + assert np.allclose(poa_gnd_sky, BACK_POA_GND_SKY, equal_nan=True) def test_shade_line(): + # front side f_x = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) assert np.allclose(f_x, TESTDATA.Fx_f) - f_x = pvlib.infinite_sheds.shade_line(GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) + # backside + f_x = pvlib.infinite_sheds.shade_line( + GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) assert np.allclose(f_x, TESTDATA.Fx_b) From 7ec812b73a39aec6afb0f01dc3335f39d5ca904b Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 19 May 2019 23:03:19 -0700 Subject: [PATCH 014/115] TST: add tests for sky angle, psi_top --- pvlib/test/test_infinite_sheds.py | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index d2a59fc2ac..9740ea9110 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -38,6 +38,13 @@ F_GND_SKY = TESTDATA['Fsky-gnd'] BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] +BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) +FRONT_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_f) + +TAN_PSI_TOP0_F = np.tan(0.312029739) # GCR*SIN(TILT_f)/(1-GCR*COS(TILT_f)) +TAN_PSI_TOP0_B = np.tan(0.115824807) # GCR*SIN(TILT_b)/(1-GCR*COS(TILT_b)) +TAN_PSI_BOT1_F = np.tan(0.115824807) # SIN(TILT_f) / (COS(TILT_f) + 1/GCR) +TAN_PSI_BOT1_B = np.tan(0.312029739) # SIN(TILT_b) / (COS(TILT_b) + 1/GCR) # radians SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) @@ -116,3 +123,36 @@ def test_shade_line(): f_x = pvlib.infinite_sheds.shade_line( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) assert np.allclose(f_x, TESTDATA.Fx_b) + + +def test_sky_angles(): + # frontside + psi_top, tan_psi_top = pvlib.infinite_sheds.sky_angle( + GCR, TILT_RAD, TESTDATA.Fx_f) + assert np.allclose(psi_top, TESTDATA.psi_top_f) + assert np.allclose(tan_psi_top, FRONT_TAN_PSI_TOP) + # backside + psi_top, tan_psi_top = pvlib.infinite_sheds.sky_angle( + GCR, BACK_TILT_RAD, TESTDATA.Fx_b) + assert np.allclose(psi_top, TESTDATA.psi_top_b) + assert np.allclose(tan_psi_top, BACK_TAN_PSI_TOP) + + +def test_sky_angle_tangent(): + # frontside + tan_psi_top = pvlib.infinite_sheds.sky_angle_tangent( + GCR, TILT_RAD, TESTDATA.Fx_f) + assert np.allclose(tan_psi_top, FRONT_TAN_PSI_TOP) + # backside + tan_psi_top = pvlib.infinite_sheds.sky_angle_tangent( + GCR, BACK_TILT_RAD, TESTDATA.Fx_b) + assert np.allclose(tan_psi_top, BACK_TAN_PSI_TOP) + + +def test_sky_angle_0_tangent(): + # frontside + tan_psi_top = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) + assert np.allclose(tan_psi_top, TAN_PSI_TOP0_F) + # backside + tan_psi_top = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, BACK_TILT_RAD) + assert np.allclose(tan_psi_top, TAN_PSI_TOP0_B) From 7e97fcbc1f8db0582dbb4f74428aa25fa9c79aaf Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 20 May 2019 11:19:59 -0700 Subject: [PATCH 015/115] ENH: STY: fix stickler, ignore binary operator breaks * get_irradiance, output ordered dict or dataframe * finish updating get_poa_global_bifacial to transpose beam and diffuse for each side separately --- .stickler.yml | 2 +- pvlib/__init__.py | 2 +- pvlib/infinite_sheds.py | 60 ++++++++++++++++++++++++++++------------- 3 files changed, 43 insertions(+), 21 deletions(-) diff --git a/.stickler.yml b/.stickler.yml index 41aa301c06..dc360a6a7b 100644 --- a/.stickler.yml +++ b/.stickler.yml @@ -2,7 +2,7 @@ linters: flake8: python: 3 max-line-length: 79 - ignore: E201,E241,E226 + ignore: E201,E241,E226,W503,W504 files: ignore: - 'pvlib/_version.py' diff --git a/pvlib/__init__.py b/pvlib/__init__.py index 8bc007ce3d..2d52fa9b96 100644 --- a/pvlib/__init__.py +++ b/pvlib/__init__.py @@ -12,7 +12,7 @@ from pvlib import spa from pvlib import modelchain from pvlib import singlediode -from pvlib import infinite_sheds +from pvlib import infinite_sheds # noqa: F401 # for backwards compatibility for pvlib.tmy module from pvlib import tmy diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 262bd91fac..7b1aa2d0c0 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -16,8 +16,10 @@ [1] Bill Marion, et al. IEEE PVSC 2017 """ -import numpy as np from collections import OrderedDict +import numpy as np +import pandas as pd +from pvlib import irradiance, pvsystem def solar_projection(solar_zenith, solar_azimuth, system_azimuth): @@ -450,8 +452,7 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) / (1 - np.cos(tilt))) / 2 f_gnd_pv_noshade = ( - (1 - (np.cos(tilt - psi_bottom) - + np.cos(tilt - psi_bottom_1))/2) + (1 - (np.cos(tilt - psi_bottom) + np.cos(tilt - psi_bottom_1))/2) / (1 - np.cos(tilt))) return f_gnd_pv_shade, f_gnd_pv_noshade @@ -533,37 +534,59 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, poa_dif_pv = poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) poa_dir_pv = poa_direct_pv(poa_direct, iam, f_x) poa_glo_pv = poa_global_pv(poa_dir_pv, poa_dif_pv) - output = poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, poa_sky_pv + output = OrderedDict( + poa_global_pv=poa_glo_pv, poa_direct_pv=poa_dir_pv, + poa_diffuse_pv=poa_dif_pv, poa_ground_diffuse_pv=poa_gnd_pv, + poa_sky_diffuse_pv=poa_sky_pv) if all_output: - output += ( - tan_phi, f_gnd_sky, df, poa_gnd_sky, f_x, - tan_psi_top, tan_psi_top_0, f_sky_pv_shade, f_sky_pv_noshade, - tan_psi_bottom, tan_psi_bottom_1, f_gnd_pv_shade, f_gnd_pv_noshade) + output.update( + solar_projection=tan_phi, ground_illumination=f_gnd_sky, + diffuse_fraction=df, poa_ground_sky=poa_gnd_sky, shade_line=f_x, + sky_angle_tangent=tan_psi_top, sky_angle_0_tangent=tan_psi_top_0, + f_sky_diffuse_pv_shade=f_sky_pv_shade, + f_sky_diffuse_pv_noshade=f_sky_pv_noshade, + ground_angle_tangent=tan_psi_bottom, + ground_angle_1_tangent=tan_psi_bottom_1, + f_ground_diffuse_pv_shade=f_gnd_pv_shade, + f_ground_diffuse_pv_noshade=f_gnd_pv_noshade) + if isinstance(poa_global_pv, pd.Series): + output = pd.DataFrame(output) return output def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, - tilt, ghi, dhi, dni, iam_b0, bifaciality=0.8, - shade_factor=-0.02, transmission_factor=0, - method='haydavies'): + tilt, ghi, dhi, dni, dni_extra, am_rel, + iam_b0_front=0.05, iam_b0_back=0.05, + bifaciality=0.8, shade_factor=-0.02, + transmission_factor=0, method='haydavies'): """Get global bifacial irradiance from infinite sheds model.""" # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(tilt, system_azimuth) # AOI - aoi_front = pvlib.irradiance.aoi( + aoi_front = irradiance.aoi( tilt, system_azimuth, solar_zenith, solar_azimuth) - aoi_back = pvlib.irradiance.aoi( + aoi_back = irradiance.aoi( backside_tilt, backside_sysaz, solar_zenith, solar_azimuth) + # transposition + irrad_front = irradiance.get_total_irradiance( + tilt, system_azimuth, solar_zenith, solar_azimuth, + dni, ghi, dhi, dni_extra, am_rel, model=method) + irrad_back = irradiance.get_total_irradiance( + backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, + dni, ghi, dhi, dni_extra, am_rel, model=method) + # iam + iam_front = pvsystem.ashraeiam(aoi_front, iam_b0_front) + iam_back = pvsystem.ashraeiam(aoi_back, iam_b0_back) # get front side poa_global_front = get_irradiance( solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, dhi, - poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, - shade_factor, transmission_factor) + irrad_front.poa_ground_diffuse, irrad_front.poa_sky_diffuse, + irrad_front.poa_direct, iam_front) # get backside poa_global_back = get_irradiance( solar_zenith, solar_azimuth, backside_sysaz, gcr, backside_tilt, ghi, - dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, bifaciality, - shade_factor, transmission_factor) + dhi, irrad_back.poa_ground_diffuse, irrad_back.poa_sky_diffuse, + irrad_back.poa_direct, iam_back) # get bifacial poa_glo_bifi = poa_global_bifacial( poa_global_front[0], poa_global_back[0], bifaciality, shade_factor, @@ -591,7 +614,6 @@ def __init__(self, system_azimuth, gcr, tilt, is_bifacial=True, # backside angles self.backside_tilt, self.backside_sysaz = _backside( self.tilt, self.system_azimuth) - # sheds parameters self.tan_phi = None self.f_gnd_sky = None @@ -644,4 +666,4 @@ def __init__(self, poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, self.tan_psi_bottom = tan_psi_bottom self.tan_psi_bottom_1 = tan_psi_bottom_1 self.f_gnd_pv_shade = f_gnd_pv_shade - self.f_gnd_pv_noshade = f_gnd_pv_noshade \ No newline at end of file + self.f_gnd_pv_noshade = f_gnd_pv_noshade From 4a4e22e36dfb7fb535128fa7843da5f6c02fec37 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Fri, 24 May 2019 01:02:01 -0700 Subject: [PATCH 016/115] add fixmes for ground illumination and ground view factor --- pvlib/infinite_sheds.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 7b1aa2d0c0..b8339836f9 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -145,6 +145,7 @@ def poa_ground_sky(poa_ground, f_gnd_sky, df): poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ + # FIXME: DHI is reduced by obstruction of panels too return poa_ground * np.where(np.isnan(df), 0.0, f_gnd_sky * (1 - df) + df) @@ -447,6 +448,7 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ + # FIXME: according to Marion, should be difference of cosines psi_bottom = np.arctan(tan_psi_bottom) psi_bottom_1 = np.arctan(tan_psi_bottom_1) f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) From 304592832d45ecc0070c640420d69b1665132735 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 1 Jul 2019 12:36:33 -0700 Subject: [PATCH 017/115] ENH: BUG: DOC: change "ground-illumination" to "unshaded-ground-fraction" - use tan(zenith) in solar projection math latex - implement gcr_prime and ground-sky-angles calculations - add stub for ground-diffuse view factor Signed-off-by: Mark Mikofski --- docs/sphinx/source/api.rst | 2 +- pvlib/infinite_sheds.py | 100 ++++++++++++++++++++++++++++-- pvlib/test/test_infinite_sheds.py | 6 +- 3 files changed, 98 insertions(+), 10 deletions(-) diff --git a/docs/sphinx/source/api.rst b/docs/sphinx/source/api.rst index de05e61083..1b52497af1 100644 --- a/docs/sphinx/source/api.rst +++ b/docs/sphinx/source/api.rst @@ -550,7 +550,7 @@ Infinte Sheds infinite_sheds.solar_projection infinite_sheds.solar_projection_tangent - infinite_sheds.ground_illumination + infinite_sheds.unshaded_ground_fraction infinite_sheds.diffuse_fraction infinite_sheds.poa_ground_sky infinite_sheds.shade_line diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 7b1aa2d0c0..81abfebe46 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -26,6 +26,11 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + .. math:: + \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - + \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} + \\right)}{\\cos\\left(\\text{solar zenith}\\right)} + Parameters ---------- solar_zenith : numeric @@ -55,9 +60,8 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Calculate solar projection on YZ-plane, vertical and perpendicular to rows. .. math:: - \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - - \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} - \\right)}{\\cos\\left(\\text{solar zenith}\\right)} + \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} + \\right)\\tan\\left(\\text{solar zenith}\\right) Parameters ---------- @@ -78,9 +82,9 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): return tan_phi -def ground_illumination(gcr, tilt, tan_phi): +def unshaded_ground_fraction(gcr, tilt, tan_phi): """ - Calculate the fraction of the ground visible from the sky. + Calculate the fraction of the ground with incident direct irradiance .. math:: F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + @@ -107,6 +111,88 @@ def ground_illumination(gcr, tilt, tan_phi): return f_gnd_sky # 1 - min(1, abs()) < 1 always +def _gcr_prime(gcr, height, tilt, pitch): + """ + A parameter that includes the distance from the module lower edge to the + point where the module tilt angle intersects the ground in the GCR. + + Parameters + ---------- + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + + Returns + ------- + gcr_prime : numeric + ground coverage ratio including height above ground + """ + + # : \\ \\ + # : \\ \\ + # : \\ H = module height \\ + # : \\ \\ + # :.....\\......................\\........ module lower edge + # : \ \ : + # : \ /\ h = height above ground + # : \ tilt \ : + # +----------\<---------P--------|-->\---- ground + + return gcr + height / np.sin(tilt) / pitch + + +def ground_sky_angles(f_z, gcr, height, tilt, pitch): + """ + Angles from point z on ground to tops of next and previous rows. + + .. math:: + \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} + {\\text{GCR}^\\prime} + \\cos{\\beta^\\prime}} + + \\tan{\\psi_1} = \\frac{\\sin{\\beta}}{\\frac{F_z^\\prime} + {\\text{GCR}^\\prime} + \\cos{\\beta}} + + Parameters + ---------- + f_z : numeric + fraction of ground from previous to next row + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + """ + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) + tilt_prime = np.pi - tilt + opposite_side = np.sin(tilt_prime) + adjacent_side = f_z/gcr_prime + np.cos(tilt_prime) + # tan_psi_0 = opposite_side / adjacent_side + psi_0 = np.arctan2(opposite_side, adjacent_side) + f_z_prime = 1 - f_z + opposite_side = np.sin(tilt) + adjacent_side = f_z_prime/gcr_prime + np.cos(tilt) + # tan_psi_1 = opposite_side / adjacent_side + psi_1 = np.arctan2(opposite_side, adjacent_side) + return psi_0, psi_1 + + +def ground_diffuse_view_factor(): + """ + Calculate the fraction of diffuse irradiance from the sky incident on the + ground. + :return: + """ + pass + + def diffuse_fraction(ghi, dhi): """ ratio of DHI to GHI @@ -253,6 +339,8 @@ def sky_angle_0_tangent(gcr, tilt): tan_psi_top_0 : numeric tangent angle from bottom, ``x = 0``, to top of next row """ + # f_y = 1 b/c x = 0, so f_x = 0 + # tan psi_t0 = GCR * sin(tilt) / (1 - GCR * cos(tilt)) return sky_angle_tangent(gcr, tilt, 0.0) @@ -507,7 +595,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) # fraction of ground illuminated accounting from shade from panels - f_gnd_sky = ground_illumination(gcr, tilt, tan_phi) + f_gnd_sky = unshaded_ground_fraction(gcr, tilt, tan_phi) # diffuse fraction df = diffuse_fraction(ghi, dhi) # diffuse from sky reflected from ground accounting from shade from panels diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index 9740ea9110..7c442ebc5a 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -86,13 +86,13 @@ def test_frontside_solar_projection_tangent(): assert np.allclose(tan_phi, TESTDATA.tan_phi_b) -def test_ground_illumination(): +def test_unshaded_ground_fraction(): # frontside, same for both sides - f_sky_gnd = pvlib.infinite_sheds.ground_illumination( + f_sky_gnd = pvlib.infinite_sheds.unshaded_ground_fraction( GCR, TILT_RAD, TESTDATA.tan_phi_f) assert np.allclose(f_sky_gnd, F_GND_SKY) # backside, should be the same as frontside - f_sky_gnd = pvlib.infinite_sheds.ground_illumination( + f_sky_gnd = pvlib.infinite_sheds.unshaded_ground_fraction( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) assert np.allclose(f_sky_gnd, F_GND_SKY) From 135e074813ca1eac369eca08e3910323c741e471 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Wed, 3 Jul 2019 17:15:07 -0700 Subject: [PATCH 018/115] ENH: BUG: calculate angles and VF from ground between panels to sky - calculate ground-sky angles to previous and next rows, assuming height is nonzero - calculate limits on ground where it can see the sky - calculate the view factor as a function of z on the ground to the sky - fix places where it still says degrees, bad, no! - add fixme for pv-sky view factor, still has wrong formula - add tests for angles from point z on the ground to tops of current row, and limits of previous and next rows - add a script to make the plot of ground-sky view factor versus z --- pvlib/infinite_sheds.py | 171 +++++++++++++++++++++++++++--- pvlib/test/test_infinite_sheds.py | 94 ++++++++++++++++ 2 files changed, 253 insertions(+), 12 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 8eb1f4490f..6ddd1dfcac 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -139,9 +139,9 @@ def _gcr_prime(gcr, height, tilt, pitch): # : \\ \\ # :.....\\......................\\........ module lower edge # : \ \ : - # : \ /\ h = height above ground - # : \ tilt \ : - # +----------\<---------P--------|-->\---- ground + # : \ \ h = height above ground + # : \ tilt \ : + # +----------\<---------P----------->\---- ground return gcr + height / np.sin(tilt) / pitch @@ -184,13 +184,159 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 -def ground_diffuse_view_factor(): +def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): + """ + Angles from point z on ground to top and bottom of previous rows beyond. + + .. math:: + + \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} + {\\text{GCR}^\\prime} + \\cos{\\beta^\\prime}} + + 0 < F_z < F_{z0,limit} + + \\tan \\psi_1 = \\frac{h}{\\frac{h}{\\tan\\beta} - z} + + Parameters + ---------- + f_z : numeric + fraction of ground from previous to next row + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + """ + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) + tilt_prime = np.pi - tilt + # angle to bottom of panel looking at sky between rows beyond + psi_0 = np.arctan2( + np.sin(tilt_prime), (1+f_z)/gcr_prime + np.cos(tilt_prime)) + # angle to front edge of row beyond + z = f_z*pitch + # other forms raise division by zero errors + # avoid division by zero errors + psi_1 = np.arctan2(height, height/np.tan(tilt) - z) + return psi_0, psi_1 + + +def f_z0_limit(gcr, height, tilt, pitch): + """ + Limit from :math:`z_0` where sky is visible between previous rows. + + .. math:: + F_{z0,limit} = \\frac{h}{P} \\left( + \\frac{1}{\\tan \\beta} + \\frac{1}{\\tan \\psi_t}\\right) + + Parameters + ---------- + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + """ + tan_psi_t_x0 = sky_angle_0_tangent(gcr, tilt) + # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) + return height/pitch * (1/np.tan(tilt) + 1/tan_psi_t_x0) + + +def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): + """ + Angles from point z on the ground to top and bottom of next row beyond. + + .. math:: + \\tan \\psi_0 = \\frac{h}{\\frac{h}{\\tan\\beta^\\prime} + - \\left(P-z\\right)} + + \\tan{\\psi_1} = \\frac{\\sin{\\beta}} + {\\frac{F_z^\\prime}{\\text{GCR}^\\prime} + \\cos{\\beta}} + """ + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) + tilt_prime = np.pi - tilt + # angle to bottom of panel looking at sky between rows beyond + fzprime = 1-f_z + zprime = fzprime*pitch + # other forms raise division by zero errors + # avoid division by zero errors + psi_0 = np.arctan2(height, height/np.tan(tilt_prime) - zprime) + # angle to front edge of row beyond + psi_1 = np.arctan2(np.sin(tilt), (1+fzprime)/gcr_prime + np.cos(tilt)) + return psi_0, psi_1 + + +def f_z1_limit(gcr, height, tilt, pitch): + """ + Limit from :math:`z_1^\\prime` where sky is visible between next rows. + + .. math:: + F_{z1,limit} = \\frac{h}{P} \\left( + \\frac{1}{\\tan \\psi_t} - \\frac{1}{\\tan \\beta}\\right) + + Parameters + ---------- + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + """ + tan_psi_t_x1 = sky_angle_0_tangent(gcr, np.pi-tilt) + # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) + return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) + + +def calc_fx_sky(psi_0, psi_1): + return (np.cos(psi_0) + np.cos(psi_1))/2 + + +def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky incident on the ground. :return: """ - pass + args = gcr, height, tilt, pitch + gcr_prime = _gcr_prime(*args) + fz0_limit = f_z0_limit(*args) + fz1_limit = f_z1_limit(*args) + # divide the space between rows into N points, but include extra + # space to account for sky visible from adjacent rows + anyx = np.linspace( + 0.0 if (1-fz1_limit) > 0 else (1-fz1_limit), + 1.0 if fz0_limit < 1 else fz0_limit, + npoints) + # calculate the angles psi_0 and psi_1 that subtend the sky visible + # from between rows + psi_x = ground_sky_angles(anyx, *args) + # front edge + psi_x0 = ground_sky_angles_prev(anyx, *args) + fx0_sky_next = [] + next_row = 0.0 + while (fz0_limit - next_row) > 0: + fx0_sky_next.append( + np.interp(anyx + next_row, anyx, calc_fx_sky(*psi_x0))) + next_row += 1.0 + # back edge + psi_x1 = ground_sky_angles_next(anyx, *args) + fx1_sky_prev = [] + prev_row = 0.0 + while (fz1_limit - prev_row) > 0: + fx1_sky_prev.append( + np.interp(anyx - prev_row, anyx, calc_fx_sky(*psi_x1))) + prev_row += 1.0 + fx_sky = calc_fx_sky(*psi_x) + np.sum(fx0_sky_next, axis=0) + np.sum(fx1_sky_prev, axis=0) + x = np.linspace(0, 1, npoints) + return x, np.interp(x, anyx, fx_sky) def diffuse_fraction(ghi, dhi): @@ -305,7 +451,7 @@ def sky_angle_tangent(gcr, tilt, f_x): gcr : numeric ratio of module length versus row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians f_x : numeric fraction of module shaded from bottom @@ -333,7 +479,7 @@ def sky_angle_0_tangent(gcr, tilt): gcr : numeric ratio of module length to row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians Returns ------- @@ -352,7 +498,7 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): Parameters ---------- tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians tan_psi_top : numeric tangent of angle from shade line to top of next row tan_psi_top_0 : numeric @@ -385,6 +531,7 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ + # FIXME: according to Marion, should be difference of cosines psi_top = np.arctan(tan_psi_top) psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( @@ -429,7 +576,7 @@ def ground_angle(gcr, tilt, f_x): gcr : numeric ratio of module length to row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade @@ -461,7 +608,7 @@ def ground_angle_tangent(gcr, tilt, f_x): gcr : numeric ratio of module length to row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade @@ -489,7 +636,7 @@ def ground_angle_1_tangent(gcr, tilt): gcr : numeric ratio of module length to row spacing tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians Returns ------- @@ -507,7 +654,7 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): Parameters ---------- tilt : numeric - angle of surface normal from vertical in degrees + angle of surface normal from vertical in radians tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row tan_psi_bottom_1 : numeric diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index 7c442ebc5a..fb285d11c2 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -20,6 +20,8 @@ # system-azimuth: positive counter-clockwise from north TILT, SYSAZ = 20.0, 250.0 GCR = 0.5 # ground coverage ratio +HEIGHT = 1 # height above ground +PITCH = 4 # row spacing # IAM parameters B0 = 0.05 @@ -97,6 +99,87 @@ def test_unshaded_ground_fraction(): assert np.allclose(f_sky_gnd, F_GND_SKY) +ARGS = (GCR, HEIGHT, TILT_RAD, PITCH) +GCR_PRIME = pvlib.infinite_sheds._gcr_prime(*ARGS) + + +def calc_ground_sky_angles_at_edges(tilt_rad=TILT_RAD, gcr_prime=GCR_PRIME): + back_tilt_rad = np.pi - tilt_rad + psi_0_x0 = back_tilt_rad + opposite_side = gcr_prime * np.sin(back_tilt_rad) + adjacent_side = 1 - gcr_prime * np.cos(back_tilt_rad) + # tan_psi_1_x0 = opposite_side / adjacent_side + psi_1_x0 = np.arctan2(opposite_side, adjacent_side) + opposite_side = gcr_prime * np.sin(tilt_rad) + adjacent_side = 1 - gcr_prime * np.cos(tilt_rad) + # tan_psi_0_x1 = opposite_side / adjacent_side + psi_0_x1 = np.arctan2(opposite_side, adjacent_side) + psi_1_x1 = tilt_rad + return psi_0_x0, psi_1_x0, psi_0_x1, psi_1_x1 + + +PSI_0_X0, PSI_1_X0, PSI_0_X1, PSI_1_X1 = calc_ground_sky_angles_at_edges() + + +def test_ground_sky_angles(): + # check limit at x=0, these are the same as the back edge of the row beyond + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) + + +FZ0_LIMIT = pvlib.infinite_sheds.f_z0_limit(*ARGS) +PSI_TOP = np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) + + +def test_ground_sky_angles_prev(): + if HEIGHT > 0: + # check limit at z=0, these are the same as z=1 of the previous row + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles_prev(0, *ARGS), + (PSI_0_X1, PSI_1_X1)) + # check limit at z=z0_limit, angles must sum to 180 + assert np.isclose( + sum(pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), + np.pi) + # directly under panel, angle should be 90 straight upward! + z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], + np.pi / 2.) + # angles must be the same as psi_top + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], + PSI_TOP) + + +FZ1_LIMIT = pvlib.infinite_sheds.f_z1_limit(*ARGS) +PSI_TOP_BACK = np.arctan2( + GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) + + +def test_ground_sky_angles_next(): + if HEIGHT > 0: + # check limit at z=1, these are the same as z=0 of the next row beyond + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), + (PSI_0_X0, PSI_1_X0)) + # check limit at zprime=z1_limit, angles must sum to 180 + assert np.isclose( + sum(pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)), + np.pi) + # directly under panel, angle should be 90 straight upward! + z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], + np.pi / 2.) + # angles must be the same as psi_top + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], + PSI_TOP_BACK) + + def test_diffuse_fraction(): df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) assert np.allclose(df, DF, equal_nan=True) @@ -156,3 +239,14 @@ def test_sky_angle_0_tangent(): # backside tan_psi_top = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, BACK_TILT_RAD) assert np.allclose(tan_psi_top, TAN_PSI_TOP0_B) + + +if __name__ == '__main__': + from matplotlib import pyplot as plt + plt.ion() + plt.plot(*pvlib.infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) + plt.title( + 'combined sky view factor, not including horizon and first/last row') + plt.xlabel('fraction of pitch from front to back') + plt.ylabel('view factor') + plt.grid() From d32c1448bbdbf879526501cc810e7afa7e8c6b05 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Wed, 3 Jul 2019 17:41:56 -0700 Subject: [PATCH 019/115] ENH: BUG: remove gcr_prime from vf calc, not used - add comments, change names x->z - add TODO's to limit number of rows, and set row-type: 'first', 'last', or 'middle' --- pvlib/infinite_sheds.py | 51 +++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 6ddd1dfcac..73afb4283b 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -299,6 +299,8 @@ def calc_fx_sky(psi_0, psi_1): return (np.cos(psi_0) + np.cos(psi_1))/2 +# TODO: add argument to set number of rows, default is infinite +# TODO: add option for first or last row, default is middle row def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky incident on the @@ -306,37 +308,42 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): :return: """ args = gcr, height, tilt, pitch - gcr_prime = _gcr_prime(*args) fz0_limit = f_z0_limit(*args) fz1_limit = f_z1_limit(*args) - # divide the space between rows into N points, but include extra - # space to account for sky visible from adjacent rows - anyx = np.linspace( + # include extra space to account for sky visible from adjacent rows + # divide ground between visible limits into 3x npoints + fz = np.linspace( 0.0 if (1-fz1_limit) > 0 else (1-fz1_limit), 1.0 if fz0_limit < 1 else fz0_limit, - npoints) + 3*npoints) # calculate the angles psi_0 and psi_1 that subtend the sky visible # from between rows - psi_x = ground_sky_angles(anyx, *args) + psi_z = ground_sky_angles(fz, *args) # front edge - psi_x0 = ground_sky_angles_prev(anyx, *args) - fx0_sky_next = [] - next_row = 0.0 - while (fz0_limit - next_row) > 0: - fx0_sky_next.append( - np.interp(anyx + next_row, anyx, calc_fx_sky(*psi_x0))) - next_row += 1.0 - # back edge - psi_x1 = ground_sky_angles_next(anyx, *args) - fx1_sky_prev = [] + psi_z0 = ground_sky_angles_prev(fz, *args) + fz0_sky_next = [] prev_row = 0.0 - while (fz1_limit - prev_row) > 0: - fx1_sky_prev.append( - np.interp(anyx - prev_row, anyx, calc_fx_sky(*psi_x1))) + # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) + while (fz0_limit - prev_row) > 0: + fz0_sky_next.append( + np.interp(fz + prev_row, fz, calc_fx_sky(*psi_z0))) prev_row += 1.0 - fx_sky = calc_fx_sky(*psi_x) + np.sum(fx0_sky_next, axis=0) + np.sum(fx1_sky_prev, axis=0) - x = np.linspace(0, 1, npoints) - return x, np.interp(x, anyx, fx_sky) + # back edge + psi_z1 = ground_sky_angles_next(fz, *args) + fz1_sky_prev = [] + next_row = 0.0 + # loop over rows by subtracting 1.0 to fz until next_row < ceil(fz1_limit) + while (fz1_limit - next_row) > 0: + fz1_sky_prev.append( + np.interp(fz - next_row, fz, calc_fx_sky(*psi_z1))) + next_row += 1.0 + # calculate the view factor of the sky from the ground at point z + fz_sky = ( + calc_fx_sky(*psi_z) # current row + + np.sum(fz0_sky_next, axis=0) # sum of all previous rows + + np.sum(fz1_sky_prev, axis=0)) # sum of all next rows + fz_row = np.linspace(0, 1, npoints) + return fz_row, np.interp(fz_row, fz, fz_sky) def diffuse_fraction(ghi, dhi): From da7611b5b18ed3f3ce5ed7ce4c94a6baba0131e6 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Wed, 3 Jul 2019 18:18:03 -0700 Subject: [PATCH 020/115] BUG: fix view factors formulas - was difference of angles, should be difference of cosines - also add TODO's to return VF versus point x on panel, and don't use averages --- pvlib/infinite_sheds.py | 46 ++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 73afb4283b..6dda7636a6 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -527,26 +527,26 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): approximation slightly. .. math :: - \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos - \\left(\\psi_t + \\beta \\right) + \\cos \\left(\\psi_t - \\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} + \\large{F_{sky \\rightarrow shade} = + \\frac{\\cos \\psi_t + \\cos \\psi_t \\left( x=0 \\right) + + 2 \\cos \\beta}{2 \\left(1 + \\cos \\beta \\right)}} The view factor from the top of the rack is one because it's view is not - obstructued. + obstructed. .. math:: - \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + - \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} + \\large{F_{sky \\rightarrow no\\ shade} = + \\frac{1 + \\frac{\\cos \\psi_t + \\cos \\beta}{1 + \\cos \\beta}}{2}} """ - # FIXME: according to Marion, should be difference of cosines + # TODO: don't average, return fsky-pv vs. x point on panel psi_top = np.arctan(tan_psi_top) psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( - (1 + (np.cos(psi_top + tilt) - + np.cos(psi_top_0 + tilt)) / 2) / (1 + np.cos(tilt))) + (np.cos(psi_top) + np.cos(psi_top_0) + 2*np.cos(tilt)) / 2 + / (1 + np.cos(tilt))) - f_sky_pv_noshade = (1 + ( - 1 + np.cos(psi_top + tilt)) / (1 + np.cos(tilt))) / 2 + f_sky_pv_noshade = ( + 1 + (np.cos(psi_top) + np.cos(tilt)) / (1 + np.cos(tilt))) / 2 return f_sky_pv_shade, f_sky_pv_noshade @@ -676,27 +676,27 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): Notes ----- - Take the average of the shaded and unshaded sections. + At the bottom of rack, :math:`x = 0`, the angle is zero, and the view + factor is one. .. math:: - \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos - \\left(\\beta - \\psi_b \\right)}{1 - \\cos \\beta}}{2}} + \\large{F_{gnd \\rightarrow shade} = + \\frac{1 + \\frac{\\cos \\psi_b - \\cos \\beta}{1 - \\cos \\beta}}{2}} - At the bottom of rack, :math:`x = 0`, the angle is zero, and the view - factor is one. + Take the average of the shaded and unshaded sections. .. math:: - \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - \\frac{\\cos - \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b - \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} + \\large{F_{gnd \\rightarrow no\\ shade} = + \\frac{\\cos \\psi_b + \\cos \\psi_b \\left( x=1 \\right) + - 2 \\cos \\beta}{2 \\left(1 - \\cos \\beta \\right)}} """ - # FIXME: according to Marion, should be difference of cosines + # TODO: don't average, return fgnd-pv vs. x point on panel psi_bottom = np.arctan(tan_psi_bottom) psi_bottom_1 = np.arctan(tan_psi_bottom_1) - f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) - / (1 - np.cos(tilt))) / 2 + f_gnd_pv_shade = ( + 1 + (np.cos(psi_bottom) - np.cos(tilt)) / (1 - np.cos(tilt))) / 2 f_gnd_pv_noshade = ( - (1 - (np.cos(tilt - psi_bottom) + np.cos(tilt - psi_bottom_1))/2) + (np.cos(psi_bottom) + np.cos(psi_bottom_1) - 2*np.cos(tilt)) / 2 / (1 - np.cos(tilt))) return f_gnd_pv_shade, f_gnd_pv_noshade From fde1851e5bc3cd358862749274491e9e7b440509 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Wed, 3 Jul 2019 18:23:54 -0700 Subject: [PATCH 021/115] STY: shorten line in test_infinite_sheds for sum of angles at z1 limit --- pvlib/test/test_infinite_sheds.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index fb285d11c2..df5faf2604 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -166,9 +166,9 @@ def test_ground_sky_angles_next(): pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), (PSI_0_X0, PSI_1_X0)) # check limit at zprime=z1_limit, angles must sum to 180 - assert np.isclose( - sum(pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)), - np.pi) + sum_angles_z1_limit = sum( + pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) + assert np.isclose(sum_angles_z1_limit, np.pi) # directly under panel, angle should be 90 straight upward! z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) assert np.isclose( From f9eb300aff0247859f25a888d4409067eb881529 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Tue, 9 Jul 2019 23:28:24 -0700 Subject: [PATCH 022/115] DOC: update module docstring with process from Marion, et al. - change calc_fx_sky to calc_fz_sky since z is for ground and x is for pv surface - add docstring to calc_fz_sky and for ground_sky_diffuse_view_factor --- pvlib/infinite_sheds.py | 60 ++++++++++++++++++++++++++++++----------- 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 6dda7636a6..c1d115b04f 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -2,14 +2,17 @@ Modify plane of array irradiance components to account for adjancent rows for both monofacial and bifacia infinite sheds. Sheds are defined as fixed tilt or trackers that a fixed GCR on horizontal surface. Future version will also -account for sloped surfaces. The process is divide into 7 steps: -1. transposition -2. ground illumination -3. shade line -4. angle of sky/ground subtended by module -5. view factor of sky/ground from module vs. location of shade line -6. approximate view factors as linear across shade and light regions -7. sum up components +account for sloped surfaces. The process is follows several steps: +1. transposition of diffuse and direct onto front and back surfaces +2. view factor of diffuse sky incident on ground between rows, not blocked +3. fraction of ground unshaded between rows, no direct in shaded fraction +4. integrated view factor of ground reflected and sky diffuse incident on PV + surface +5. fraction of PV surface shaded, diffuse only +6. sum up components on each surface +7. apply bifaciality factor to backside and combine with front +8. first and last row are different, because they are not blocked on front side + for 1st row, or backside for last row References ---------- @@ -295,7 +298,24 @@ def f_z1_limit(gcr, height, tilt, pitch): return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) -def calc_fx_sky(psi_0, psi_1): +def calc_fz_sky(psi_0, psi_1): + """ + Calculate the view factor for point "z" on the ground to the visible + diffuse sky subtende by the angles :math:`\\psi_0` and :math:`\\psi_1`. + + Parameters + ---------- + psi_0 : numeric + angle from ground to sky before point "z" + psi_1 : numeric + angle from ground to sky after point "z" + + Returns + ------- + fz_sky : numeric + fraction of energy from the diffuse sky dome that is incident on the + ground at point "z" + """ return (np.cos(psi_0) + np.cos(psi_1))/2 @@ -305,7 +325,17 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky incident on the ground. - :return: + + Parameters + ---------- + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing """ args = gcr, height, tilt, pitch fz0_limit = f_z0_limit(*args) @@ -326,7 +356,7 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) while (fz0_limit - prev_row) > 0: fz0_sky_next.append( - np.interp(fz + prev_row, fz, calc_fx_sky(*psi_z0))) + np.interp(fz + prev_row, fz, calc_fz_sky(*psi_z0))) prev_row += 1.0 # back edge psi_z1 = ground_sky_angles_next(fz, *args) @@ -335,13 +365,13 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): # loop over rows by subtracting 1.0 to fz until next_row < ceil(fz1_limit) while (fz1_limit - next_row) > 0: fz1_sky_prev.append( - np.interp(fz - next_row, fz, calc_fx_sky(*psi_z1))) + np.interp(fz - next_row, fz, calc_fz_sky(*psi_z1))) next_row += 1.0 # calculate the view factor of the sky from the ground at point z fz_sky = ( - calc_fx_sky(*psi_z) # current row - + np.sum(fz0_sky_next, axis=0) # sum of all previous rows - + np.sum(fz1_sky_prev, axis=0)) # sum of all next rows + calc_fz_sky(*psi_z) # current row + + np.sum(fz0_sky_next, axis=0) # sum of all previous rows + + np.sum(fz1_sky_prev, axis=0)) # sum of all next rows fz_row = np.linspace(0, 1, npoints) return fz_row, np.interp(fz_row, fz, fz_sky) From 15822ab0e413022ca828011fc464db5c7564be6b Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Fri, 12 Jul 2019 02:37:11 -0700 Subject: [PATCH 023/115] BUG: revert changes to ground and sky to pv surface view factors --- pvlib/infinite_sheds.py | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index c1d115b04f..e0f322b056 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -557,26 +557,26 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): approximation slightly. .. math :: - \\large{F_{sky \\rightarrow shade} = - \\frac{\\cos \\psi_t + \\cos \\psi_t \\left( x=0 \\right) - + 2 \\cos \\beta}{2 \\left(1 + \\cos \\beta \\right)}} + \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos + \\left(\\psi_t + \\beta \\right) + \\cos \\left(\\psi_t + \\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} The view factor from the top of the rack is one because it's view is not obstructed. .. math:: - \\large{F_{sky \\rightarrow no\\ shade} = - \\frac{1 + \\frac{\\cos \\psi_t + \\cos \\beta}{1 + \\cos \\beta}}{2}} + \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + + \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ # TODO: don't average, return fsky-pv vs. x point on panel psi_top = np.arctan(tan_psi_top) psi_top_0 = np.arctan(tan_psi_top_0) f_sky_pv_shade = ( - (np.cos(psi_top) + np.cos(psi_top_0) + 2*np.cos(tilt)) / 2 - / (1 + np.cos(tilt))) + (1 + (np.cos(psi_top + tilt) + + np.cos(psi_top_0 + tilt)) / 2) / (1 + np.cos(tilt))) - f_sky_pv_noshade = ( - 1 + (np.cos(psi_top) + np.cos(tilt)) / (1 + np.cos(tilt))) / 2 + f_sky_pv_noshade = (1 + ( + 1 + np.cos(psi_top + tilt)) / (1 + np.cos(tilt))) / 2 return f_sky_pv_shade, f_sky_pv_noshade @@ -710,23 +710,23 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): factor is one. .. math:: - \\large{F_{gnd \\rightarrow shade} = - \\frac{1 + \\frac{\\cos \\psi_b - \\cos \\beta}{1 - \\cos \\beta}}{2}} + \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos + \\left(\\beta - \\psi_b \\right)}{1 - \\cos \\beta}}{2}} Take the average of the shaded and unshaded sections. .. math:: - \\large{F_{gnd \\rightarrow no\\ shade} = - \\frac{\\cos \\psi_b + \\cos \\psi_b \\left( x=1 \\right) - - 2 \\cos \\beta}{2 \\left(1 - \\cos \\beta \\right)}} + \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - \\frac{\\cos + \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b + \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ # TODO: don't average, return fgnd-pv vs. x point on panel psi_bottom = np.arctan(tan_psi_bottom) psi_bottom_1 = np.arctan(tan_psi_bottom_1) - f_gnd_pv_shade = ( - 1 + (np.cos(psi_bottom) - np.cos(tilt)) / (1 - np.cos(tilt))) / 2 + f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) + / (1 - np.cos(tilt))) / 2 f_gnd_pv_noshade = ( - (np.cos(psi_bottom) + np.cos(psi_bottom_1) - 2*np.cos(tilt)) / 2 + (1 - (np.cos(tilt - psi_bottom) + np.cos(tilt - psi_bottom_1))/2) / (1 - np.cos(tilt))) return f_gnd_pv_shade, f_gnd_pv_noshade From 04a40395d91b9f83056a47351d53c46c0c3cdcd5 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 15 Jul 2019 02:47:07 -0700 Subject: [PATCH 024/115] ENH: integrate Fgnd-pv and Fsky-z * change _bigz() to just return bigz * create a test figure of integrated vslue --- pvlib/infinite_sheds.py | 88 +++++++++++++++++++++++++++++++ pvlib/test/test_infinite_sheds.py | 28 ++++++++++ 2 files changed, 116 insertions(+) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index e0f322b056..6e39a44dfb 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -24,6 +24,8 @@ import pandas as pd from pvlib import irradiance, pvsystem +MAXP = 10 + def solar_projection(solar_zenith, solar_azimuth, system_azimuth): """ @@ -336,6 +338,8 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): module tilt in radians, between 0 and 180-degrees pitch : numeric row spacing + npoints : int + divide the ground into discrete points """ args = gcr, height, tilt, pitch fz0_limit = f_z0_limit(*args) @@ -376,6 +380,90 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): return fz_row, np.interp(fz_row, fz, fz_sky) +def _big_z(psi_x_bottom, height, tilt, pitch): + # how far on the ground can the point x see? + return pitch + height/np.tan(psi_x_bottom) - height / np.tan(tilt) + + +def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): + """ + Calculate the fraction of diffuse irradiance from the sky, reflecting from + the ground, incident at a point on the PV surface. + + Parameters + ---------- + x : numeric + point on PV surface + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + npoints : int + divide the ground into discrete points + maxp : int + maximum number of adjacent rows to consider, default is 10 rows + """ + args = gcr, height, tilt, pitch + hmod = gcr * pitch # height of PV surface + fx = x / hmod # = x/gcr/pitch + + # calculate the view factor of the diffuse sky from the ground between rows + z_star, fz_sky = ground_sky_diffuse_view_factor(*args, npoints=npoints) + + # calculate the integrated view factor for all of the ground between rows + fgnd_sky = np.trapz(fz_sky, z_star) + + # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, + # bigz = Inf, and all of the ground is visible, so the view factor is just + # Fgnd_pv = (1 - cos(beta)) / 2 + if fx == 0: + fgnd_pv = (1 - np.cos(tilt)) / 2 + return fgnd_sky*fgnd_pv, fgnd_pv + + # how far on the ground can the point x see? + psi_x_bottom, _ = ground_angle(gcr, tilt, fx) + bigz = _big_z(psi_x_bottom, height, tilt, pitch) + + # scale bigz by pitch, and limit to maximum number of rows after which the + # angle from x to the ground will cover more than a row, so we can just use + # the integral fgnd_sky + bigz_star = np.maximum(0, np.minimum(bigz/pitch, maxp)) + num_rows = np.ceil(bigz_star).astype(int) + + # repeat fz_sky num_row times, so we can use it to interpolate the values + # to use in the integral with the angle from x on the PV surface to the + # ground, note the first & last fz_sky are the same, so skip the last value + fz_sky = np.tile(fz_sky[:-1], num_rows) + # append the last value so we can interpolate over the entire row + fz_sky = np.append(fz_sky, fz_sky[0]) + + # increment the ground input segments that are delta wide + delta = 1.0 / (npoints - 1) + # start at the next row, z=1, and go back toward the previous row, z<1 + z_star = 1 - np.linspace(num_rows-1, 1, 1 + num_rows * (npoints - 1)) + # shift by a half delta + halfdelta = delta / 2.0 + + # max angle + psi_ref = tilt - psi_x_bottom + # use uniform angles + psidelta = psi_ref * halfdelta + psi_zuni = np.linspace(psidelta, psi_ref - psidelta, npoints - 1) + zuni = np.flip(1-_big_z(tilt-psi_zuni, height, tilt, pitch)/pitch) + + fzuni_sky = np.interp(zuni, z_star, fz_sky, fgnd_sky, fgnd_sky) + dfgnd_pv = (np.cos(psi_zuni-psidelta) - np.cos(psi_zuni+psidelta)) / 2 + fgnd_pv = np.sum(dfgnd_pv) + # FIXME: not working for backside + # fskyz = np.sum(fzuni_sky * dfgnd_pv) + fskyz = fgnd_sky * fgnd_pv + return fskyz, fgnd_pv + + def diffuse_fraction(ghi, dhi): """ ratio of DHI to GHI diff --git a/pvlib/test/test_infinite_sheds.py b/pvlib/test/test_infinite_sheds.py index df5faf2604..0035e40a60 100644 --- a/pvlib/test/test_infinite_sheds.py +++ b/pvlib/test/test_infinite_sheds.py @@ -180,6 +180,13 @@ def test_ground_sky_angles_next(): PSI_TOP_BACK) +def test_bigz(): + _, height, tilt, pitch = ARGS + psi_x0_bottom = 0 + bigz_x0 = pvlib.infinite_sheds._big_z(psi_x0_bottom, height, tilt, pitch) + assert np.isinf(bigz_x0) + + def test_diffuse_fraction(): df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) assert np.allclose(df, DF, equal_nan=True) @@ -250,3 +257,24 @@ def test_sky_angle_0_tangent(): plt.xlabel('fraction of pitch from front to back') plt.ylabel('view factor') plt.grid() + plt.figure() + fskyz = [ + pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) + for x in np.linspace(0, 1, 100)] + fskyz, fgnd_pv = zip(*fskyz) + plt.plot(fskyz/(1-np.cos(TILT_RAD))*2) + plt.plot(fgnd_pv/(1-np.cos(TILT_RAD))*2) + plt.grid() + plt.title('frontside integrated ground reflected') + plt.legend(('blocked', 'all sky')) + plt.figure() + fskyz = [ + pvlib.infinite_sheds.calc_fgndpv_zsky( + x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) + for x in np.linspace(0, 1, 100)] + fskyz, fgnd_pv = zip(*fskyz) + plt.plot(fskyz/(1-np.cos(BACK_TILT_RAD))*2) + plt.plot(fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) + plt.grid() + plt.title('backside integrated ground reflected') + plt.legend(('blocked', 'all sky')) From 0f08cb77c9b96fb496953361d0c5de224ec8112c Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sat, 16 Jan 2021 19:56:02 -0800 Subject: [PATCH 025/115] fix references --- pvlib/infinite_sheds.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 6e39a44dfb..bd94b96c66 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -16,7 +16,10 @@ References ---------- -[1] Bill Marion, et al. IEEE PVSC 2017 +[1] A Practical Irradiance Model for Bifacial PV Modules, Bill Marion, et al., +IEEE PVSC 2017 +[2] Bifacial Performance Modeling in Large Arrays, Mikofski, et al., IEEE PVSC +2018 """ from collections import OrderedDict From 0559e5786ca2e5556b0c95424a3069646cfeb490 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sat, 16 Jan 2021 22:24:32 -0800 Subject: [PATCH 026/115] update infinite sheds - integrate vf_gnd_sky and apply to poa_ground_diffuse - new vf_ground_sky function - fix iam.ashrae and total_irrad - some cleanup, comment out old bifacialvf stuff - add height, pitch, and npoints args where needed Signed-off-by: Mark Mikofski --- pvlib/infinite_sheds.py | 117 +++++++++++++++++++---------- pvlib/tests/test_infinite_sheds.py | 8 +- 2 files changed, 80 insertions(+), 45 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index bd94b96c66..6967bae14d 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -25,7 +25,7 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib import irradiance, pvsystem +from pvlib import irradiance, pvsystem, iam MAXP = 10 @@ -358,31 +358,59 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): psi_z = ground_sky_angles(fz, *args) # front edge psi_z0 = ground_sky_angles_prev(fz, *args) + fz_sky_next = calc_fz_sky(*psi_z0) fz0_sky_next = [] prev_row = 0.0 # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) while (fz0_limit - prev_row) > 0: - fz0_sky_next.append( - np.interp(fz + prev_row, fz, calc_fz_sky(*psi_z0))) + fz0_sky_next.append(np.interp(fz + prev_row, fz, fz_sky_next)) prev_row += 1.0 # back edge psi_z1 = ground_sky_angles_next(fz, *args) + fz_sky_prev = calc_fz_sky(*psi_z1) fz1_sky_prev = [] next_row = 0.0 # loop over rows by subtracting 1.0 to fz until next_row < ceil(fz1_limit) while (fz1_limit - next_row) > 0: - fz1_sky_prev.append( - np.interp(fz - next_row, fz, calc_fz_sky(*psi_z1))) + fz1_sky_prev.append(np.interp(fz - next_row, fz, fz_sky_prev)) next_row += 1.0 # calculate the view factor of the sky from the ground at point z fz_sky = ( calc_fz_sky(*psi_z) # current row - + np.sum(fz0_sky_next, axis=0) # sum of all previous rows - + np.sum(fz1_sky_prev, axis=0)) # sum of all next rows + + np.sum(fz0_sky_next, axis=0) # sum of all next rows + + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows fz_row = np.linspace(0, 1, npoints) return fz_row, np.interp(fz_row, fz, fz_sky) +def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): + """ + Integrated view factor from the ground in between central rows of the sky. + + Parameters + ---------- + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + npoints : int + divide the ground into discrete points + + """ + args = gcr, height, tilt, pitch + # calculate the view factor of the diffuse sky from the ground between rows + z_star, fz_sky = ground_sky_diffuse_view_factor(*args, npoints=npoints) + + # calculate the integrated view factor for all of the ground between rows + fgnd_sky = np.trapz(fz_sky, z_star) + + return fgnd_sky, fz_sky + + def _big_z(psi_x_bottom, height, tilt, pitch): # how far on the ground can the point x see? return pitch + height/np.tan(psi_x_bottom) - height / np.tan(tilt) @@ -415,10 +443,8 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): fx = x / hmod # = x/gcr/pitch # calculate the view factor of the diffuse sky from the ground between rows - z_star, fz_sky = ground_sky_diffuse_view_factor(*args, npoints=npoints) - - # calculate the integrated view factor for all of the ground between rows - fgnd_sky = np.trapz(fz_sky, z_star) + # and integrate the view factor for all of the ground between rows + fgnd_sky, fz_sky = vf_ground_sky(*args, npoints=npoints) # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, # bigz = Inf, and all of the ground is visible, so the view factor is just @@ -447,7 +473,7 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): # increment the ground input segments that are delta wide delta = 1.0 / (npoints - 1) # start at the next row, z=1, and go back toward the previous row, z<1 - z_star = 1 - np.linspace(num_rows-1, 1, 1 + num_rows * (npoints - 1)) + # z_star = 1 - np.linspace(num_rows-1, 1, 1 + num_rows * (npoints - 1)) # shift by a half delta halfdelta = delta / 2.0 @@ -456,13 +482,13 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): # use uniform angles psidelta = psi_ref * halfdelta psi_zuni = np.linspace(psidelta, psi_ref - psidelta, npoints - 1) - zuni = np.flip(1-_big_z(tilt-psi_zuni, height, tilt, pitch)/pitch) + # zuni = np.flip(1-_big_z(tilt-psi_zuni, height, tilt, pitch)/pitch) - fzuni_sky = np.interp(zuni, z_star, fz_sky, fgnd_sky, fgnd_sky) + # fzuni_sky = np.interp(zuni, z_star, fz_sky, fgnd_sky, fgnd_sky) dfgnd_pv = (np.cos(psi_zuni-psidelta) - np.cos(psi_zuni+psidelta)) / 2 - fgnd_pv = np.sum(dfgnd_pv) # FIXME: not working for backside # fskyz = np.sum(fzuni_sky * dfgnd_pv) + fgnd_pv = np.sum(dfgnd_pv) fskyz = fgnd_sky * fgnd_pv return fskyz, fgnd_pv @@ -486,10 +512,10 @@ def diffuse_fraction(ghi, dhi): return dhi/ghi -def poa_ground_sky(poa_ground, f_gnd_sky, df): +def poa_ground_sky(poa_ground, f_gnd_sky, df, vf_gnd_sky): """ transposed ground reflected diffuse component adjusted for ground - illumination, but not accounting for adjacent rows + illumination, AND accounting for infinite adjacent rows in both directions Parameters ---------- @@ -499,14 +525,16 @@ def poa_ground_sky(poa_ground, f_gnd_sky, df): ground illumination df : numeric ratio of DHI to GHI + vf_gnd_sky : numeric + fraction of all sky visible form ground integrated from row to row Returns ------- poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ - # FIXME: DHI is reduced by obstruction of panels too - return poa_ground * np.where(np.isnan(df), 0.0, f_gnd_sky * (1 - df) + df) + gnd_illumination = np.where(np.isnan(df), 0.0, f_gnd_sky * (1 - df) + df) + return poa_ground * vf_gnd_sky * gnd_illumination def shade_line(gcr, tilt, tan_phi): @@ -864,9 +892,9 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, return poa_global_front + poa_global_back * bifaciality * effects -def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, - dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, - all_output=False): +def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, + tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, + poa_direct, iam, npoints=100, all_output=False): """Get irradiance from infinite sheds model.""" # calculate solar projection tan_phi = solar_projection_tangent( @@ -875,9 +903,11 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, f_gnd_sky = unshaded_ground_fraction(gcr, tilt, tan_phi) # diffuse fraction df = diffuse_fraction(ghi, dhi) + # view factor from the ground in between infinited central rows of the sky + vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels - # but not considering the fraction of ground blocked by the next row - poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df) + # considering the fraction of ground blocked by infinite adjacent rows + poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df, vf_gnd_sky) # fraction of panel shaded f_x = shade_line(gcr, tilt, tan_phi) # angles from shadeline to top of next row @@ -920,8 +950,8 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, - tilt, ghi, dhi, dni, dni_extra, am_rel, - iam_b0_front=0.05, iam_b0_back=0.05, + height, tilt, pitch, ghi, dhi, dni, dni_extra, + am_rel, iam_b0_front=0.05, iam_b0_back=0.05, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, method='haydavies'): """Get global bifacial irradiance from infinite sheds model.""" @@ -940,18 +970,18 @@ def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, dni, ghi, dhi, dni_extra, am_rel, model=method) # iam - iam_front = pvsystem.ashraeiam(aoi_front, iam_b0_front) - iam_back = pvsystem.ashraeiam(aoi_back, iam_b0_back) + iam_front = iam.ashrae(aoi_front, iam_b0_front) + iam_back = iam.ashrae(aoi_back, iam_b0_back) # get front side poa_global_front = get_irradiance( - solar_zenith, solar_azimuth, system_azimuth, gcr, tilt, ghi, dhi, - irrad_front.poa_ground_diffuse, irrad_front.poa_sky_diffuse, - irrad_front.poa_direct, iam_front) + solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, + ghi, dhi, irrad_front['poa_ground_diffuse'], + irrad_front['poa_sky_diffuse'], irrad_front['poa_direct'], iam_front) # get backside poa_global_back = get_irradiance( - solar_zenith, solar_azimuth, backside_sysaz, gcr, backside_tilt, ghi, - dhi, irrad_back.poa_ground_diffuse, irrad_back.poa_sky_diffuse, - irrad_back.poa_direct, iam_back) + solar_zenith, solar_azimuth, backside_sysaz, gcr, height, + backside_tilt, pitch, ghi, dhi, irrad_back['poa_ground_diffuse'], + irrad_back['poa_sky_diffuse'], irrad_back['poa_direct'], iam_back) # get bifacial poa_glo_bifi = poa_global_bifacial( poa_global_front[0], poa_global_back[0], bifaciality, shade_factor, @@ -967,11 +997,15 @@ def _backside(tilt, system_azimuth): class InfiniteSheds(object): """An infinite sheds model""" - def __init__(self, system_azimuth, gcr, tilt, is_bifacial=True, - bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): + def __init__(self, system_azimuth, gcr, height, tilt, pitch, npoints=100, + is_bifacial=True, bifaciality=0.8, shade_factor=-0.02, + transmission_factor=0): self.system_azimuth = system_azimuth self.gcr = gcr + self.height = height self.tilt = tilt + self.pitch = pitch + self.npoints = npoints self.is_bifacial = is_bifacial self.bifaciality = bifaciality self.shade_factor = shade_factor @@ -991,17 +1025,18 @@ def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam): self.front_side = _PVSurface(*get_irradiance( solar_zenith, solar_azimuth, self.system_azimuth, - self.gcr, self.tilt, ghi, dhi, poa_ground, poa_sky_diffuse, - poa_direct, iam, all_output=True)) + self.gcr, self.height, self.tilt, self.pitch, ghi, dhi, poa_ground, + poa_sky_diffuse, poa_direct, iam, npoints=self.npoints, + all_output=True)) self.tan_phi = self.front_side.tan_phi self.f_gnd_sky = self.front_side.f_gnd_sky self.df = self.front_side.df if self.is_bifacial and self.bifaciality > 0: self.back_side = _PVSurface(*get_irradiance( solar_zenith, solar_azimuth, self.backside_sysaz, - self.gcr, self.backside_tilt, ghi, dhi, poa_ground, - poa_sky_diffuse, poa_direct, iam, - all_output=True)) + self.gcr, self.height, self.backside_tilt, self.pitch, ghi, + dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, + self.npoints, all_output=True)) self.poa_global_bifacial = poa_global_bifacial( self.front_side.poa_global_pv, self.back_side.poa_global_pv, self.bifaciality, self.shade_factor, self.transmission_factor) diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py index 0035e40a60..97eff9368a 100644 --- a/pvlib/tests/test_infinite_sheds.py +++ b/pvlib/tests/test_infinite_sheds.py @@ -68,11 +68,11 @@ def test_solar_projection_tangent(): def test_solar_projection(): # frontside - phi, tan_phi = pvlib.infinite_sheds.solar_projection( + _, tan_phi = pvlib.infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_f) # backside - phi, tan_phi = pvlib.infinite_sheds.solar_projection( + _, tan_phi = pvlib.infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) assert np.allclose(tan_phi, TESTDATA.tan_phi_b) @@ -195,13 +195,13 @@ def test_diffuse_fraction(): def test_poa_ground_sky(): # front side poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_f, F_GND_SKY, DF) + TESTDATA.poa_ground_diffuse_f, F_GND_SKY, DF, 1.0) # CSV file decimals are truncated assert np.allclose( poa_gnd_sky, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) # backside poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_b, F_GND_SKY, DF) + TESTDATA.poa_ground_diffuse_b, F_GND_SKY, DF, 1.0) assert np.allclose(poa_gnd_sky, BACK_POA_GND_SKY, equal_nan=True) From 6db7104b7a0a0652724d9c51538cc80b3bc12fb2 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Fri, 5 Feb 2021 22:12:02 -0800 Subject: [PATCH 027/115] remove discretized angles for fgndsky --- pvlib/infinite_sheds.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 6967bae14d..fde340d6b5 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -471,24 +471,24 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): fz_sky = np.append(fz_sky, fz_sky[0]) # increment the ground input segments that are delta wide - delta = 1.0 / (npoints - 1) + # delta = 1.0 / (npoints - 1) # start at the next row, z=1, and go back toward the previous row, z<1 # z_star = 1 - np.linspace(num_rows-1, 1, 1 + num_rows * (npoints - 1)) # shift by a half delta - halfdelta = delta / 2.0 + # halfdelta = delta / 2.0 # max angle psi_ref = tilt - psi_x_bottom # use uniform angles - psidelta = psi_ref * halfdelta - psi_zuni = np.linspace(psidelta, psi_ref - psidelta, npoints - 1) + # psidelta = psi_ref * halfdelta + # psi_zuni = np.linspace(psidelta, psi_ref - psidelta, npoints - 1) # zuni = np.flip(1-_big_z(tilt-psi_zuni, height, tilt, pitch)/pitch) # fzuni_sky = np.interp(zuni, z_star, fz_sky, fgnd_sky, fgnd_sky) - dfgnd_pv = (np.cos(psi_zuni-psidelta) - np.cos(psi_zuni+psidelta)) / 2 + # dfgnd_pv = (1 - np.cos(psi_ref)) / 2 # FIXME: not working for backside # fskyz = np.sum(fzuni_sky * dfgnd_pv) - fgnd_pv = np.sum(dfgnd_pv) + fgnd_pv = (1 - np.cos(psi_ref)) / 2 fskyz = fgnd_sky * fgnd_pv return fskyz, fgnd_pv From b2110371350b80f00953aa9f14b1f2f1ff8417a0 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 11:18:29 -0800 Subject: [PATCH 028/115] don't discretize z * remove maxp, bigz, zuni, and psi_zuni from calc_fgndpv_zsky and just use the integrated value * add more detail re: infinite sheds to module docstring * change f_gnd_sky to f_gnd_beam everywhere * derive how integrated vf_gnd_sky is applied to diffuse reflected light, cite eqn (2) in Marion's paper --- pvlib/infinite_sheds.py | 170 ++++++++++++++--------------- pvlib/tests/test_infinite_sheds.py | 7 -- 2 files changed, 85 insertions(+), 92 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index fde340d6b5..580fb3b401 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -1,18 +1,44 @@ -""" -Modify plane of array irradiance components to account for adjancent rows for -both monofacial and bifacia infinite sheds. Sheds are defined as fixed tilt or -trackers that a fixed GCR on horizontal surface. Future version will also -account for sloped surfaces. The process is follows several steps: -1. transposition of diffuse and direct onto front and back surfaces -2. view factor of diffuse sky incident on ground between rows, not blocked -3. fraction of ground unshaded between rows, no direct in shaded fraction -4. integrated view factor of ground reflected and sky diffuse incident on PV - surface -5. fraction of PV surface shaded, diffuse only -6. sum up components on each surface -7. apply bifaciality factor to backside and combine with front -8. first and last row are different, because they are not blocked on front side - for 1st row, or backside for last row +r""" +Infinite Sheds +============== + +The "infinite sheds" model is a 2-dimensional model of an array that assumes +rows are long enough that edge effects are negligible and therefore can be +treated as infinite. The infinte sheds model considers an array of adjacent +rows of PV modules versus just a single row. It is also capable of considering +both mono and bifacial modules. Sheds are defined as either fixed tilt or +trackers with uniform GCR on a horizontal plane. To consider arrays on an +non-horizontal planes, rotate the solar vector into the reference frame of the +sloped plane. The main purpose of the infinite shdes model is to modify the +plane of array irradiance components to account for adjancent rows that reduce +incident irradiance on the front and back sides versus a single isolated row +that can see the entire sky as :math:`(1+cos(\beta))/2` and ground as +:math:`(1-cos(\beta))/2`. + +Therefore the model picks up after the transposition of diffuse and direct onto +front and back surfaces with the following steps: +1. Find the fraction of unshaded ground between rows, ``f_gnd_beam``. We assume + there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. +2. Calculate the view factor,``fz_sky``, of diffuse sky incident on ground + between rows and not blocked by adjacent rows. This differs from the single + row model which assumes ``f_gnd_beam = 1`` or that the ground can see the + entire sky, and therefore, the ground reflected is just the product of GHI + and albedo. Note ``f_gnd_beam`` also considers the diffuse sky visible + between neighboring rows in front and behind the current row. If rows are + higher off the ground, then the sky might be visible between multiple rows! +3. Calculate the view factor of the ground reflected irradiance incident on PV + surface. +4. Find the fraction of PV surface shaded. We assume only diffuse in the shaded + fraction. We treat these two sections differently and assume that the view + factors of the sky and ground are linear in each section. +5. Sum up components of diffuse sky, diffuse ground, and direct on the front + and back PV surfaces. +6. Apply the bifaciality factor to the backside and combine with the front. +7. Treat the first and last row differently, because they aren't blocked on the + front side for 1st row, or the backside for last row. + +That's it folks! This model is influenced by the 2D model published by Marion, +*et al.* in [1]. References ---------- @@ -27,8 +53,6 @@ import pandas as pd from pvlib import irradiance, pvsystem, iam -MAXP = 10 - def solar_projection(solar_zenith, solar_azimuth, system_azimuth): """ @@ -111,12 +135,12 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): Returns ------- - f_gnd_sky : numeric - fration of ground illuminated from sky + f_gnd_beam : numeric + fraction of ground illuminated (unshaded) """ - f_gnd_sky = 1.0 - np.minimum( + f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(np.cos(tilt) + np.sin(tilt) * tan_phi)) - return f_gnd_sky # 1 - min(1, abs()) < 1 always + return f_gnd_beam # 1 - min(1, abs()) < 1 always def _gcr_prime(gcr, height, tilt, pitch): @@ -411,15 +435,10 @@ def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): return fgnd_sky, fz_sky -def _big_z(psi_x_bottom, height, tilt, pitch): - # how far on the ground can the point x see? - return pitch + height/np.tan(psi_x_bottom) - height / np.tan(tilt) - - -def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): +def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky, reflecting from - the ground, incident at a point on the PV surface. + the ground, incident at a point "x" on the PV surface. Parameters ---------- @@ -435,8 +454,6 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): row spacing npoints : int divide the ground into discrete points - maxp : int - maximum number of adjacent rows to consider, default is 10 rows """ args = gcr, height, tilt, pitch hmod = gcr * pitch # height of PV surface @@ -444,51 +461,21 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100, maxp=MAXP): # calculate the view factor of the diffuse sky from the ground between rows # and integrate the view factor for all of the ground between rows - fgnd_sky, fz_sky = vf_ground_sky(*args, npoints=npoints) + fgnd_sky, _ = vf_ground_sky(*args, npoints=npoints) # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, - # bigz = Inf, and all of the ground is visible, so the view factor is just - # Fgnd_pv = (1 - cos(beta)) / 2 + # and all of the ground is visible, so the view factor is just + # Fgnd_pv = (1 - cos(tilt)) / 2 if fx == 0: - fgnd_pv = (1 - np.cos(tilt)) / 2 - return fgnd_sky*fgnd_pv, fgnd_pv - - # how far on the ground can the point x see? - psi_x_bottom, _ = ground_angle(gcr, tilt, fx) - bigz = _big_z(psi_x_bottom, height, tilt, pitch) - - # scale bigz by pitch, and limit to maximum number of rows after which the - # angle from x to the ground will cover more than a row, so we can just use - # the integral fgnd_sky - bigz_star = np.maximum(0, np.minimum(bigz/pitch, maxp)) - num_rows = np.ceil(bigz_star).astype(int) - - # repeat fz_sky num_row times, so we can use it to interpolate the values - # to use in the integral with the angle from x on the PV surface to the - # ground, note the first & last fz_sky are the same, so skip the last value - fz_sky = np.tile(fz_sky[:-1], num_rows) - # append the last value so we can interpolate over the entire row - fz_sky = np.append(fz_sky, fz_sky[0]) - - # increment the ground input segments that are delta wide - # delta = 1.0 / (npoints - 1) - # start at the next row, z=1, and go back toward the previous row, z<1 - # z_star = 1 - np.linspace(num_rows-1, 1, 1 + num_rows * (npoints - 1)) - # shift by a half delta - # halfdelta = delta / 2.0 - - # max angle - psi_ref = tilt - psi_x_bottom - # use uniform angles - # psidelta = psi_ref * halfdelta - # psi_zuni = np.linspace(psidelta, psi_ref - psidelta, npoints - 1) - # zuni = np.flip(1-_big_z(tilt-psi_zuni, height, tilt, pitch)/pitch) - - # fzuni_sky = np.interp(zuni, z_star, fz_sky, fgnd_sky, fgnd_sky) - # dfgnd_pv = (1 - np.cos(psi_ref)) / 2 - # FIXME: not working for backside - # fskyz = np.sum(fzuni_sky * dfgnd_pv) - fgnd_pv = (1 - np.cos(psi_ref)) / 2 + psi_x_bottom = 0.0 + else: + # how far on the ground can the point x see? + psi_x_bottom, _ = ground_angle(gcr, tilt, fx) + + # max angle from pv surface perspective + psi_max = tilt - psi_x_bottom + + fgnd_pv = (1 - np.cos(psi_max)) / 2 fskyz = fgnd_sky * fgnd_pv return fskyz, fgnd_pv @@ -512,7 +499,7 @@ def diffuse_fraction(ghi, dhi): return dhi/ghi -def poa_ground_sky(poa_ground, f_gnd_sky, df, vf_gnd_sky): +def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ transposed ground reflected diffuse component adjusted for ground illumination, AND accounting for infinite adjacent rows in both directions @@ -521,20 +508,33 @@ def poa_ground_sky(poa_ground, f_gnd_sky, df, vf_gnd_sky): ---------- poa_ground : numeric transposed ground reflected diffuse component in W/m^2 - f_gnd_sky : numeric - ground illumination + f_gnd_beam : numeric + fraction of interrow ground illuminated (unshaded) df : numeric ratio of DHI to GHI vf_gnd_sky : numeric - fraction of all sky visible form ground integrated from row to row + fraction of diffuse sky visible from ground integrated from row to row Returns ------- poa_gnd_sky : numeric adjusted irradiance on modules reflected from ground """ - gnd_illumination = np.where(np.isnan(df), 0.0, f_gnd_sky * (1 - df) + df) - return poa_ground * vf_gnd_sky * gnd_illumination + # split the ground into shaded and unshaded sections with f_gnd_beam + # the shaded sections only see DHI, while unshaded see GHI = DNI*cos(ze) + # + DHI, the view factor vf_gnd_sky only applies to the shaded sections + # see Eqn (2) "Practical Irradiance Model for Bifacial PV" Marion et al. + # unshaded + (DHI/GHI)*shaded + # f_gnd_beam + (DHI/GHI)*(1 - f_gnd_beam) + # f_gnd_beam + df *(1 - f_gnd_beam) + # f_gnd_beam + df - df*f_gnd_beam + # f_gnd_beam - f_gnd_beam*df + df + # f_gnd_beam*(1 - df) + df + # unshaded *(DNI*cos(ze)/GHI) + DHI/GHI + # only apply diffuse sky view factor to diffuse component (df) incident on + # ground between rows, not the direct component of the unshaded ground + df = np.where(np.isfinite(df), df, 0.0) + return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) def shade_line(gcr, tilt, tan_phi): @@ -900,14 +900,14 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) # fraction of ground illuminated accounting from shade from panels - f_gnd_sky = unshaded_ground_fraction(gcr, tilt, tan_phi) + f_gnd_beam = unshaded_ground_fraction(gcr, tilt, tan_phi) # diffuse fraction df = diffuse_fraction(ghi, dhi) # view factor from the ground in between infinited central rows of the sky vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels # considering the fraction of ground blocked by infinite adjacent rows - poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_sky, df, vf_gnd_sky) + poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) # fraction of panel shaded f_x = shade_line(gcr, tilt, tan_phi) # angles from shadeline to top of next row @@ -935,7 +935,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, poa_sky_diffuse_pv=poa_sky_pv) if all_output: output.update( - solar_projection=tan_phi, ground_illumination=f_gnd_sky, + solar_projection=tan_phi, ground_illumination=f_gnd_beam, diffuse_fraction=df, poa_ground_sky=poa_gnd_sky, shade_line=f_x, sky_angle_tangent=tan_psi_top, sky_angle_0_tangent=tan_psi_top_0, f_sky_diffuse_pv_shade=f_sky_pv_shade, @@ -1015,7 +1015,7 @@ def __init__(self, system_azimuth, gcr, height, tilt, pitch, npoints=100, self.tilt, self.system_azimuth) # sheds parameters self.tan_phi = None - self.f_gnd_sky = None + self.f_gnd_beam = None self.df = None self.front_side = None self.back_side = None @@ -1029,7 +1029,7 @@ def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, npoints=self.npoints, all_output=True)) self.tan_phi = self.front_side.tan_phi - self.f_gnd_sky = self.front_side.f_gnd_sky + self.f_gnd_beam = self.front_side.f_gnd_beam self.df = self.front_side.df if self.is_bifacial and self.bifaciality > 0: self.back_side = _PVSurface(*get_irradiance( @@ -1045,7 +1045,7 @@ def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, class _PVSurface(object): """A PV surface in an infinite shed""" def __init__(self, poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, - poa_sky_pv, tan_phi, f_gnd_sky, df, poa_gnd_sky, f_x, + poa_sky_pv, tan_phi, f_gnd_beam, df, poa_gnd_sky, f_x, tan_psi_top, tan_psi_top_0, f_sky_pv_shade, f_sky_pv_noshade, tan_psi_bottom, tan_psi_bottom_1, f_gnd_pv_shade, f_gnd_pv_noshade): @@ -1055,7 +1055,7 @@ def __init__(self, poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, self.poa_ground_pv = poa_gnd_pv self.poa_sky_diffuse_pv = poa_sky_pv self.tan_phi = tan_phi - self.f_gnd_sky = f_gnd_sky + self.f_gnd_beam = f_gnd_beam self.df = df self.poa_ground_sky = poa_gnd_sky self.f_x = f_x diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py index 97eff9368a..6e910dfdc9 100644 --- a/pvlib/tests/test_infinite_sheds.py +++ b/pvlib/tests/test_infinite_sheds.py @@ -180,13 +180,6 @@ def test_ground_sky_angles_next(): PSI_TOP_BACK) -def test_bigz(): - _, height, tilt, pitch = ARGS - psi_x0_bottom = 0 - bigz_x0 = pvlib.infinite_sheds._big_z(psi_x0_bottom, height, tilt, pitch) - assert np.isinf(bigz_x0) - - def test_diffuse_fraction(): df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) assert np.allclose(df, DF, equal_nan=True) From d137f0453ae64764b6e0e9260617ff1857fe699a Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 13:46:10 -0800 Subject: [PATCH 029/115] clarify what next, prev mean * add ascii sketches to clarify angles to top & bottom of prev or next rows and for current row --- pvlib/infinite_sheds.py | 82 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 73 insertions(+), 9 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 580fb3b401..e6d406608e 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -89,7 +89,8 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ - Calculate solar projection on YZ-plane, vertical and perpendicular to rows. + Calculate tangent of solar projected angle on YZ-plane, vertical and + perpendicular to rows. .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} @@ -116,7 +117,7 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): def unshaded_ground_fraction(gcr, tilt, tan_phi): """ - Calculate the fraction of the ground with incident direct irradiance + Calculate the fraction of the ground with incident direct irradiance. .. math:: F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + @@ -167,7 +168,7 @@ def _gcr_prime(gcr, height, tilt, pitch): # : \\ \\ # : \\ \\ - # : \\ H = module height \\ + # : \\ H = module length \\ # : \\ \\ # :.....\\......................\\........ module lower edge # : \ \ : @@ -201,7 +202,23 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): module tilt in radians, between 0 and 180-degrees pitch : numeric row spacing + + Assuming the first row is in the front of the array then previous rows are + toward the front of the array and next rows are toward the back. + """ + + # : \\* |\\ front of array + # : \\ ** | \\ + # next \\ ** | \\ previous row + # row \\ ** | \\ + # :.....\\.......**..........|..\\........ module lower edge + # : \ ** | \ : + # : \ ** | \ h = height above ground + # : tilt \ psi1 ** |psi0 \ : + # +----------\<---------P----*+----->\---- ground + # 1<-----1-fz-----><--fz--0---- fraction of ground + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) tilt_prime = np.pi - tilt opposite_side = np.sin(tilt_prime) @@ -218,7 +235,8 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): """ - Angles from point z on ground to top and bottom of previous rows beyond. + Angles from point z on ground to top and bottom of previous rows beyond the + current row. .. math:: @@ -241,13 +259,29 @@ def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): module tilt in radians, between 0 and 180-degrees pitch : numeric row spacing + + The sky is visible between rows beyond the current row. Therefore, we need + to calculate the angles :math:`\\psi_0` and :math:`\\psi_1` to the top and + bottom of the previous row. """ + + # : \\ | *\\ top of previous row + # : \\ | ** \\ + # prev \\ | * \\ front of array + # row \\ | ** \\ + # bottom.\\|......*..............\\........ module lower edge + # : |\ ** \ : + # psi1 | \* psi0 \ h = height above ground + # : | ** \ \ : + # +---+*-----\<---------P----------->\---- ground + # <-1+fz-1<---------fz=1---------0---- fraction of ground + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) tilt_prime = np.pi - tilt - # angle to bottom of panel looking at sky between rows beyond + # angle to top of previous panel beyond the current row psi_0 = np.arctan2( np.sin(tilt_prime), (1+f_z)/gcr_prime + np.cos(tilt_prime)) - # angle to front edge of row beyond + # angle to bottom of previous panel z = f_z*pitch # other forms raise division by zero errors # avoid division by zero errors @@ -281,7 +315,8 @@ def f_z0_limit(gcr, height, tilt, pitch): def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): """ - Angles from point z on the ground to top and bottom of next row beyond. + Angles from point z on the ground to top and bottom of next row beyond + current row. .. math:: \\tan \\psi_0 = \\frac{h}{\\frac{h}{\\tan\\beta^\\prime} @@ -289,16 +324,45 @@ def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): \\tan{\\psi_1} = \\frac{\\sin{\\beta}} {\\frac{F_z^\\prime}{\\text{GCR}^\\prime} + \\cos{\\beta}} + + Parameters + ---------- + f_z : numeric + fraction of ground from previous to next row + gcr : numeric + ground coverage ratio + height : numeric + height of module lower edge above the ground + tilt : numeric + module tilt in radians, between 0 and 180-degrees + pitch : numeric + row spacing + + The sky is visible between rows beyond the current row. Therefore, we need + to calculate the angles :math:`\\psi_0` and :math:`\\psi_1` to the top and + bottom of the next row. """ + + # : \\+ \\ + # : \\ `*+ \\ + # next \\ `*+ \\ + # row \\ `*+ \\ next row bottom + # top....\\..............`*+.....\\_ + # : \ `*+ \ -_ psi0 + # : \ psi1 `*+ -_ + # : \ \ `*+ _ + # +----------\<---------P----------->\------*----- ground + # 1<---------fz=1---------0-1-fz->----- fraction of ground + gcr_prime = _gcr_prime(gcr, height, tilt, pitch) tilt_prime = np.pi - tilt - # angle to bottom of panel looking at sky between rows beyond + # angle to bottom of next panel fzprime = 1-f_z zprime = fzprime*pitch # other forms raise division by zero errors # avoid division by zero errors psi_0 = np.arctan2(height, height/np.tan(tilt_prime) - zprime) - # angle to front edge of row beyond + # angle to top of next panel beyond the current row psi_1 = np.arctan2(np.sin(tilt), (1+fzprime)/gcr_prime + np.cos(tilt)) return psi_0, psi_1 From 6a583cfb54055987ece874872ae69eae9e147d33 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 13:54:55 -0800 Subject: [PATCH 030/115] clarify what z0 and z1 limits mean --- pvlib/infinite_sheds.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index e6d406608e..a9c7233b50 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -291,7 +291,7 @@ def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): def f_z0_limit(gcr, height, tilt, pitch): """ - Limit from :math:`z_0` where sky is visible between previous rows. + Limit from the ground where sky is visible between previous rows. .. math:: F_{z0,limit} = \\frac{h}{P} \\left( @@ -307,6 +307,10 @@ def f_z0_limit(gcr, height, tilt, pitch): module tilt in radians, between 0 and 180-degrees pitch : numeric row spacing + + The point on the ground, :math:`z_0`, from which the sky is still visible + between previous rows, where the angle :math:`\\psi` is tangent to both the + top and bottom of panels. """ tan_psi_t_x0 = sky_angle_0_tangent(gcr, tilt) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) @@ -369,7 +373,7 @@ def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): def f_z1_limit(gcr, height, tilt, pitch): """ - Limit from :math:`z_1^\\prime` where sky is visible between next rows. + Limit from the ground where sky is visible between the next rows. .. math:: F_{z1,limit} = \\frac{h}{P} \\left( @@ -385,6 +389,10 @@ def f_z1_limit(gcr, height, tilt, pitch): module tilt in radians, between 0 and 180-degrees pitch : numeric row spacing + + The point on the ground, :math:`z_1^\\prime`, from which the sky is still + visible between the next rows, where the angle :math:`\\psi` is tangent to + both the top and bottom of panels. """ tan_psi_t_x1 = sky_angle_0_tangent(gcr, np.pi-tilt) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) From 089a35549fffc6f38caa20c5e9f9cfc9d17b2cea Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 14:59:24 -0800 Subject: [PATCH 031/115] clean up outputs for get_irradiance - and InfiniteSheds.get_irradiance --- pvlib/infinite_sheds.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index a9c7233b50..4822c46897 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -475,6 +475,7 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): calc_fz_sky(*psi_z) # current row + np.sum(fz0_sky_next, axis=0) # sum of all next rows + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows + # we just need one row, fz in range [0, 1] fz_row = np.linspace(0, 1, npoints) return fz_row, np.interp(fz_row, fz, fz_sky) @@ -574,7 +575,7 @@ def diffuse_fraction(ghi, dhi): def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ transposed ground reflected diffuse component adjusted for ground - illumination, AND accounting for infinite adjacent rows in both directions + illumination AND accounting for infinite adjacent rows in both directions Parameters ---------- @@ -1016,7 +1017,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, ground_angle_1_tangent=tan_psi_bottom_1, f_ground_diffuse_pv_shade=f_gnd_pv_shade, f_ground_diffuse_pv_noshade=f_gnd_pv_noshade) - if isinstance(poa_global_pv, pd.Series): + if isinstance(poa_glo_pv, pd.Series): output = pd.DataFrame(output) return output @@ -1056,8 +1057,8 @@ def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, irrad_back['poa_sky_diffuse'], irrad_back['poa_direct'], iam_back) # get bifacial poa_glo_bifi = poa_global_bifacial( - poa_global_front[0], poa_global_back[0], bifaciality, shade_factor, - transmission_factor) + poa_global_front['poa_global_pv'], poa_global_back['poa_global_pv'], + bifaciality, shade_factor, transmission_factor) return poa_glo_bifi @@ -1079,7 +1080,7 @@ def __init__(self, system_azimuth, gcr, height, tilt, pitch, npoints=100, self.pitch = pitch self.npoints = npoints self.is_bifacial = is_bifacial - self.bifaciality = bifaciality + self.bifaciality = bifaciality if is_bifacial else 0.0 self.shade_factor = shade_factor self.transmission_factor = transmission_factor # backside angles @@ -1103,7 +1104,7 @@ def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, self.tan_phi = self.front_side.tan_phi self.f_gnd_beam = self.front_side.f_gnd_beam self.df = self.front_side.df - if self.is_bifacial and self.bifaciality > 0: + if self.bifaciality > 0: self.back_side = _PVSurface(*get_irradiance( solar_zenith, solar_azimuth, self.backside_sysaz, self.gcr, self.height, self.backside_tilt, self.pitch, ghi, @@ -1112,6 +1113,9 @@ def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, self.poa_global_bifacial = poa_global_bifacial( self.front_side.poa_global_pv, self.back_side.poa_global_pv, self.bifaciality, self.shade_factor, self.transmission_factor) + return self.poa_global_bifacial + else: + return self.front_side.poa_global_pv class _PVSurface(object): From 1671e7e72221809e0ebc877369254afc9595a28a Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 15:13:52 -0800 Subject: [PATCH 032/115] consolidate solar projection tests * also compare phi and tan_phi --- pvlib/tests/test_infinite_sheds.py | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py index 6e910dfdc9..a3841c5892 100644 --- a/pvlib/tests/test_infinite_sheds.py +++ b/pvlib/tests/test_infinite_sheds.py @@ -60,32 +60,24 @@ def test_solar_projection_tangent(): tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - backside_sysaz_rad = np.radians(BACKSIDE['sysaz']) tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, backside_sysaz_rad) + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) assert np.allclose(tan_phi_f, -tan_phi_b) + assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) + assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) def test_solar_projection(): # frontside - _, tan_phi = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - assert np.allclose(tan_phi, TESTDATA.tan_phi_f) - # backside - _, tan_phi = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi, TESTDATA.tan_phi_b) - - -def test_frontside_solar_projection_tangent(): - # frontside - tan_phi = pvlib.infinite_sheds.solar_projection_tangent( + phi_f, tan_phi_f = pvlib.infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - assert np.allclose(tan_phi, TESTDATA.tan_phi_f) + assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) + assert np.allclose(np.tan(phi_f), tan_phi_f) # backside - tan_phi = pvlib.infinite_sheds.solar_projection_tangent( + phi_b, tan_phi_b = pvlib.infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi, TESTDATA.tan_phi_b) + assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) + assert np.allclose(np.tan(phi_b), tan_phi_b) def test_unshaded_ground_fraction(): From 6d5776bc1975b58da5e07cd367fad5c6ea1b99c4 Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Mon, 8 Feb 2021 16:39:24 -0800 Subject: [PATCH 033/115] use fraction of pvsurface fx * add test for vf_ground_sky --- pvlib/infinite_sheds.py | 8 +- pvlib/tests/test_infinite_sheds.py | 165 +++++++++++++++++------------ 2 files changed, 102 insertions(+), 71 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 4822c46897..56a7501cbf 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -508,15 +508,15 @@ def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): return fgnd_sky, fz_sky -def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100): +def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky, reflecting from the ground, incident at a point "x" on the PV surface. Parameters ---------- - x : numeric - point on PV surface + fx : numeric + fraction of PV surface from bottom gcr : numeric ground coverage ratio height : numeric @@ -529,8 +529,6 @@ def calc_fgndpv_zsky(x, gcr, height, tilt, pitch, npoints=100): divide the ground into discrete points """ args = gcr, height, tilt, pitch - hmod = gcr * pitch # height of PV surface - fx = x / hmod # = x/gcr/pitch # calculate the view factor of the diffuse sky from the ground between rows # and integrate the view factor for all of the ground between rows diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py index a3841c5892..6dc2d34e00 100644 --- a/pvlib/tests/test_infinite_sheds.py +++ b/pvlib/tests/test_infinite_sheds.py @@ -37,7 +37,7 @@ DF = np.where(GHI > 0, TESTDATA.df, np.inf) DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) TESTDATA.df = DF -F_GND_SKY = TESTDATA['Fsky-gnd'] +F_GND_BEAM = TESTDATA['Fsky-gnd'] BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) @@ -82,38 +82,37 @@ def test_solar_projection(): def test_unshaded_ground_fraction(): # frontside, same for both sides - f_sky_gnd = pvlib.infinite_sheds.unshaded_ground_fraction( + f_sky_beam_f = pvlib.infinite_sheds.unshaded_ground_fraction( GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(f_sky_gnd, F_GND_SKY) + assert np.allclose(f_sky_beam_f, F_GND_BEAM) # backside, should be the same as frontside - f_sky_gnd = pvlib.infinite_sheds.unshaded_ground_fraction( + f_sky_beam_b = pvlib.infinite_sheds.unshaded_ground_fraction( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_sky_gnd, F_GND_SKY) + assert np.allclose(f_sky_beam_b, F_GND_BEAM) ARGS = (GCR, HEIGHT, TILT_RAD, PITCH) -GCR_PRIME = pvlib.infinite_sheds._gcr_prime(*ARGS) -def calc_ground_sky_angles_at_edges(tilt_rad=TILT_RAD, gcr_prime=GCR_PRIME): - back_tilt_rad = np.pi - tilt_rad - psi_0_x0 = back_tilt_rad - opposite_side = gcr_prime * np.sin(back_tilt_rad) - adjacent_side = 1 - gcr_prime * np.cos(back_tilt_rad) - # tan_psi_1_x0 = opposite_side / adjacent_side - psi_1_x0 = np.arctan2(opposite_side, adjacent_side) - opposite_side = gcr_prime * np.sin(tilt_rad) - adjacent_side = 1 - gcr_prime * np.cos(tilt_rad) - # tan_psi_0_x1 = opposite_side / adjacent_side - psi_0_x1 = np.arctan2(opposite_side, adjacent_side) - psi_1_x1 = tilt_rad - return psi_0_x0, psi_1_x0, psi_0_x1, psi_1_x1 +def test_gcr_prime(): + assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), 1.2309511000407718) -PSI_0_X0, PSI_1_X0, PSI_0_X1, PSI_1_X1 = calc_ground_sky_angles_at_edges() +# calculated ground-sky angles at panel edges +# gcr_prime = pvlib.infinite_sheds._gcr_prime(*ARGS) +# back_tilt_rad = np.pi - tilt_rad +# psi_0_x0 = back_tilt_rad +# psi_1_x0 = np.arctan2( +# gcr_prime * np.sin(back_tilt_rad), 1 - gcr_prime * np.cos(back_tilt_rad)) +PSI_0_X0, PSI_1_X0 = 2.792526803190927, 0.19278450775754705 +# psi_0_x1 = np.arctan2( +# gcr_prime * np.sin(tilt_rad), 1 - gcr_prime * np.cos(tilt_rad)) +# psi_1_x1 = tilt_rad +PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 def test_ground_sky_angles(): + assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) # check limit at x=0, these are the same as the back edge of the row beyond assert np.allclose( pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) @@ -121,8 +120,9 @@ def test_ground_sky_angles(): pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) -FZ0_LIMIT = pvlib.infinite_sheds.f_z0_limit(*ARGS) -PSI_TOP = np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) +FZ0_LIMIT = 1.4619022000815438 # pvlib.infinite_sheds.f_z0_limit(*ARGS) +# np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) +PSI_TOP = 0.3120297392978313 def test_ground_sky_angles_prev(): @@ -146,9 +146,9 @@ def test_ground_sky_angles_prev(): PSI_TOP) -FZ1_LIMIT = pvlib.infinite_sheds.f_z1_limit(*ARGS) -PSI_TOP_BACK = np.arctan2( - GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) +FZ1_LIMIT = 1.4619022000815427 # pvlib.infinite_sheds.f_z1_limit(*ARGS) +# np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) +PSI_TOP_BACK = 0.11582480672702507 def test_ground_sky_angles_next(): @@ -177,60 +177,91 @@ def test_diffuse_fraction(): assert np.allclose(df, DF, equal_nan=True) +VF_GND_SKY = 0.5184093800689326 +FZ_SKY = np.array([ + 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, + 0.40760977, 0.4154624 , 0.42363368, 0.43209234, 0.44079809, + 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, + 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, + 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, + 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, + 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.6568359 , + 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, + 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, + 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, + 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, + 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, + 0.61025517, 0.59900195, 0.58719184, 0.5748161 , 0.56199241, + 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, + 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, + 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, + 0.37191014, 0.3650334 , 0.35906878, 0.35388625, 0.34959679, + 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, + 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, + 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) + + +def test_vf_ground_sky(): + vf_gnd_sky, fz_sky = pvlib.infinite_sheds.vf_ground_sky(*ARGS) + assert np.isclose(vf_gnd_sky, VF_GND_SKY) + assert np.allclose(fz_sky, FZ_SKY) + + def test_poa_ground_sky(): # front side - poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_f, F_GND_SKY, DF, 1.0) + poa_gnd_sky_f = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) # CSV file decimals are truncated assert np.allclose( - poa_gnd_sky, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) + poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) # backside - poa_gnd_sky = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_b, F_GND_SKY, DF, 1.0) - assert np.allclose(poa_gnd_sky, BACK_POA_GND_SKY, equal_nan=True) + poa_gnd_sky_b = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) + assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) def test_shade_line(): # front side - f_x = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(f_x, TESTDATA.Fx_f) + fx_f = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) + assert np.allclose(fx_f, TESTDATA.Fx_f) # backside - f_x = pvlib.infinite_sheds.shade_line( + fx_b = pvlib.infinite_sheds.shade_line( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_x, TESTDATA.Fx_b) + assert np.allclose(fx_b, TESTDATA.Fx_b) def test_sky_angles(): # frontside - psi_top, tan_psi_top = pvlib.infinite_sheds.sky_angle( + psi_top_f, tan_psi_top_f = pvlib.infinite_sheds.sky_angle( GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(psi_top, TESTDATA.psi_top_f) - assert np.allclose(tan_psi_top, FRONT_TAN_PSI_TOP) + assert np.allclose(psi_top_f, TESTDATA.psi_top_f) + assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - psi_top, tan_psi_top = pvlib.infinite_sheds.sky_angle( + psi_top_b, tan_psi_top_b = pvlib.infinite_sheds.sky_angle( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(psi_top, TESTDATA.psi_top_b) - assert np.allclose(tan_psi_top, BACK_TAN_PSI_TOP) + assert np.allclose(psi_top_b, TESTDATA.psi_top_b) + assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) def test_sky_angle_tangent(): # frontside - tan_psi_top = pvlib.infinite_sheds.sky_angle_tangent( + tan_psi_top_f = pvlib.infinite_sheds.sky_angle_tangent( GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(tan_psi_top, FRONT_TAN_PSI_TOP) + assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - tan_psi_top = pvlib.infinite_sheds.sky_angle_tangent( + tan_psi_top_b = pvlib.infinite_sheds.sky_angle_tangent( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(tan_psi_top, BACK_TAN_PSI_TOP) + assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) def test_sky_angle_0_tangent(): # frontside - tan_psi_top = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) - assert np.allclose(tan_psi_top, TAN_PSI_TOP0_F) + tan_psi_top_f = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) + assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) # backside - tan_psi_top = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, BACK_TILT_RAD) - assert np.allclose(tan_psi_top, TAN_PSI_TOP0_B) + tan_psi_top_b = pvlib.infinite_sheds.sky_angle_0_tangent( + GCR, BACK_TILT_RAD) + assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) if __name__ == '__main__': @@ -242,24 +273,26 @@ def test_sky_angle_0_tangent(): plt.xlabel('fraction of pitch from front to back') plt.ylabel('view factor') plt.grid() - plt.figure() - fskyz = [ - pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) - for x in np.linspace(0, 1, 100)] + fig, ax = plt.subplots(2, 1, figsize=(6, 8)) + fx = np.linspace(0, 1, 100) + fskyz = [pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] fskyz, fgnd_pv = zip(*fskyz) - plt.plot(fskyz/(1-np.cos(TILT_RAD))*2) - plt.plot(fgnd_pv/(1-np.cos(TILT_RAD))*2) - plt.grid() - plt.title('frontside integrated ground reflected') - plt.legend(('blocked', 'all sky')) - plt.figure() + ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) + ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) + ax[0].grid() + ax[0].set_title('frontside integrated ground reflected') + ax[0].set_xlabel('fraction of PV surface from bottom ($F_x$)') + ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') + ax[0].legend(('blocked', 'all sky')) fskyz = [ pvlib.infinite_sheds.calc_fgndpv_zsky( - x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) - for x in np.linspace(0, 1, 100)] + x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] fskyz, fgnd_pv = zip(*fskyz) - plt.plot(fskyz/(1-np.cos(BACK_TILT_RAD))*2) - plt.plot(fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) - plt.grid() - plt.title('backside integrated ground reflected') - plt.legend(('blocked', 'all sky')) + ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) + ax[1].plot(fx, fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) + ax[1].grid() + ax[1].set_title('backside integrated ground reflected') + ax[1].set_xlabel('fraction of PV surface from bottom ($F_x$)') + ax[1].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') + ax[1].legend(('blocked', 'all sky')) + plt.tight_layout() From dddae59a22f11788049c1a79361a9e9441208d3e Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 4 Oct 2021 15:16:04 -0600 Subject: [PATCH 034/115] be quiet stickler --- pvlib/infinite_sheds.py | 8 ++++---- pvlib/tests/test_infinite_sheds.py | 13 +++++++------ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index 56a7501cbf..caff35d4bf 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -51,7 +51,7 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib import irradiance, pvsystem, iam +from pvlib import irradiance, iam def solar_projection(solar_zenith, solar_azimuth, system_azimuth): @@ -472,9 +472,9 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): next_row += 1.0 # calculate the view factor of the sky from the ground at point z fz_sky = ( - calc_fz_sky(*psi_z) # current row - + np.sum(fz0_sky_next, axis=0) # sum of all next rows - + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows + calc_fz_sky(*psi_z) # current row + + np.sum(fz0_sky_next, axis=0) # sum of all next rows + + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows # we just need one row, fz in range [0, 1] fz_row = np.linspace(0, 1, npoints) return fz_row, np.interp(fz_row, fz, fz_sky) diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py index 6dc2d34e00..899a535d47 100644 --- a/pvlib/tests/test_infinite_sheds.py +++ b/pvlib/tests/test_infinite_sheds.py @@ -95,7 +95,8 @@ def test_unshaded_ground_fraction(): def test_gcr_prime(): - assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), 1.2309511000407718) + assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), + 1.2309511000407718) # calculated ground-sky angles at panel edges @@ -178,24 +179,24 @@ def test_diffuse_fraction(): VF_GND_SKY = 0.5184093800689326 -FZ_SKY = np.array([ +FZ_SKY = np.array([ 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, - 0.40760977, 0.4154624 , 0.42363368, 0.43209234, 0.44079809, + 0.40760977, 0.41546240, 0.42363368, 0.43209234, 0.44079809, 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, - 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.6568359 , + 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.65683590, 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, - 0.61025517, 0.59900195, 0.58719184, 0.5748161 , 0.56199241, + 0.61025517, 0.59900195, 0.58719184, 0.57481610, 0.56199241, 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, - 0.37191014, 0.3650334 , 0.35906878, 0.35388625, 0.34959679, + 0.37191014, 0.36503340, 0.35906878, 0.35388625, 0.34959679, 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) From 71a6fa069c8962ded55f5ba0c0087bb1c1673efd Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 5 Oct 2021 08:56:31 -0600 Subject: [PATCH 035/115] TODO inserts, docstring edits --- pvlib/infinite_sheds.py | 57 +++++++++++++++++++++++++++++++++-------- 1 file changed, 46 insertions(+), 11 deletions(-) diff --git a/pvlib/infinite_sheds.py b/pvlib/infinite_sheds.py index caff35d4bf..b5f5cbf318 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/infinite_sheds.py @@ -54,6 +54,7 @@ from pvlib import irradiance, iam +#TODO: not used def solar_projection(solar_zenith, solar_azimuth, system_azimuth): """ Calculate solar projection on YZ-plane, vertical and perpendicular to rows. @@ -87,10 +88,12 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): return phi, tan_phi +#TODO: why radians here +#TODO: make private? def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ - Calculate tangent of solar projected angle on YZ-plane, vertical and - perpendicular to rows. + Calculate tangent of angle between sun vector projected to the YZ-plane + (vertical and perpendicular to rows) and zenith vector. .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} @@ -111,10 +114,13 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): tangent of the solar projection """ rotation = solar_azimuth - system_azimuth + #TODO: I don't think tan_phi should ever be negative, but it could be if + # rotation > 90 (e.g. sun north of along-row azimuth) tan_phi = np.cos(rotation) * np.tan(solar_zenith) return tan_phi +#TODO: use azimuths as inputs, move to util def unshaded_ground_fraction(gcr, tilt, tan_phi): """ Calculate the fraction of the ground with incident direct irradiance. @@ -128,8 +134,9 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): Parameters ---------- gcr : numeric - ratio of module length to row spacing + ground coverage ratio, ratio of row slant length to row spacing tilt : numeric +#TODO: use same definition of tilt as pvlib angle of module normal from vertical in radians, if bifacial use front tan_phi : numeric solar projection tangent @@ -139,6 +146,7 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): f_gnd_beam : numeric fraction of ground illuminated (unshaded) """ + #TODO: why np.abs? All angles should be <=90 f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(np.cos(tilt) + np.sin(tilt) * tan_phi)) return f_gnd_beam # 1 - min(1, abs()) < 1 always @@ -146,13 +154,12 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): def _gcr_prime(gcr, height, tilt, pitch): """ - A parameter that includes the distance from the module lower edge to the - point where the module tilt angle intersects the ground in the GCR. + Ratio of slant height above ground of the top of a row to the row pitch. Parameters ---------- gcr : numeric - ground coverage ratio + ground coverage ratio, ratio of row slant length to row spacing height : numeric height of module lower edge above the ground tilt : numeric @@ -179,6 +186,10 @@ def _gcr_prime(gcr, height, tilt, pitch): return gcr + height / np.sin(tilt) / pitch +# TODO: move to util, overlaps with ground_sky_angles_prev in that both return +# angle to top of previous row. Could the three ground_sky_angle_xxx functions +# be combined and handle the cases of points behind the "previous" row or ahead +# of the next row? def ground_sky_angles(f_z, gcr, height, tilt, pitch): """ Angles from point z on ground to tops of next and previous rows. @@ -195,7 +206,7 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): f_z : numeric fraction of ground from previous to next row gcr : numeric - ground coverage ratio + ground coverage ratio, ratio of row slant length to row spacing height : numeric height of module lower edge above the ground tilt : numeric @@ -203,6 +214,11 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): pitch : numeric row spacing + Returns + ------- + + Notes + ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. @@ -233,6 +249,7 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 +# move to util def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): """ Angles from point z on ground to top and bottom of previous rows beyond the @@ -402,7 +419,7 @@ def f_z1_limit(gcr, height, tilt, pitch): def calc_fz_sky(psi_0, psi_1): """ Calculate the view factor for point "z" on the ground to the visible - diffuse sky subtende by the angles :math:`\\psi_0` and :math:`\\psi_1`. + diffuse sky subtended by the angles :math:`\\psi_0` and :math:`\\psi_1`. Parameters ---------- @@ -422,6 +439,7 @@ def calc_fz_sky(psi_0, psi_1): # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row +# TODO: possibly move to pvlib.shading? def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky incident on the @@ -439,6 +457,10 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): row spacing npoints : int divide the ground into discrete points + + Returns + ------- + """ args = gcr, height, tilt, pitch fz0_limit = f_z0_limit(*args) @@ -480,6 +502,7 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): return fz_row, np.interp(fz_row, fz, fz_sky) +# TODO: move to util def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): """ Integrated view factor from the ground in between central rows of the sky. @@ -608,6 +631,7 @@ def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) +#TODO: move to pvlib.shading? def shade_line(gcr, tilt, tan_phi): """ calculate fraction of module shaded from the bottom @@ -959,14 +983,24 @@ def poa_global_pv(poa_dir_pv, poa_dif_pv): def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): """total global incident on bifacial PV surfaces""" - effects = (1+shade_factor)*(1+transmission_factor) + effects = (1 + shade_factor) * (1 + transmission_factor) return poa_global_front + poa_global_back * bifaciality * effects +#TODO: rename to pvlib.bifacial.infinite_sheds? def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, npoints=100, all_output=False): - """Get irradiance from infinite sheds model.""" + r""" + Get irradiance from infinite sheds model. + + Parameters + ---------- + + Returns + ------- + + """ # calculate solar projection tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) @@ -974,7 +1008,8 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, f_gnd_beam = unshaded_ground_fraction(gcr, tilt, tan_phi) # diffuse fraction df = diffuse_fraction(ghi, dhi) - # view factor from the ground in between infinited central rows of the sky +#TODO: move to bifacial.util + # view factor from the ground in between infinite central rows to the sky vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels # considering the fraction of ground blocked by infinite adjacent rows From 2a174dce27ffbb52a45b83da983602650ef70113 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 8 Oct 2021 12:09:48 -0600 Subject: [PATCH 036/115] re-organize --- pvlib/bifacial/__init__.py | 1 + pvlib/{ => bifacial}/infinite_sheds.py | 2 +- pvlib/{bifacial.py => bifacial/pvfactors.py} | 4 ++-- pvlib/bifacial/utils.py | 5 +++++ 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 pvlib/bifacial/__init__.py rename pvlib/{ => bifacial}/infinite_sheds.py (99%) rename pvlib/{bifacial.py => bifacial/pvfactors.py} (97%) create mode 100644 pvlib/bifacial/utils.py diff --git a/pvlib/bifacial/__init__.py b/pvlib/bifacial/__init__.py new file mode 100644 index 0000000000..6fad505191 --- /dev/null +++ b/pvlib/bifacial/__init__.py @@ -0,0 +1 @@ +from pvlib.bifacial.pvfactors import pvfactors diff --git a/pvlib/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py similarity index 99% rename from pvlib/infinite_sheds.py rename to pvlib/bifacial/infinite_sheds.py index b5f5cbf318..a8f448ac68 100644 --- a/pvlib/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -4,7 +4,7 @@ The "infinite sheds" model is a 2-dimensional model of an array that assumes rows are long enough that edge effects are negligible and therefore can be -treated as infinite. The infinte sheds model considers an array of adjacent +treated as infinite. The infinite sheds model considers an array of adjacent rows of PV modules versus just a single row. It is also capable of considering both mono and bifacial modules. Sheds are defined as either fixed tilt or trackers with uniform GCR on a horizontal plane. To consider arrays on an diff --git a/pvlib/bifacial.py b/pvlib/bifacial/pvfactors.py similarity index 97% rename from pvlib/bifacial.py rename to pvlib/bifacial/pvfactors.py index 342402c006..eb71918380 100644 --- a/pvlib/bifacial.py +++ b/pvlib/bifacial/pvfactors.py @@ -1,6 +1,6 @@ """ -The ``bifacial`` module contains functions for modeling back surface -plane-of-array irradiance under various conditions. +The ``bifacial.pvfactors`` module contains functions for modeling back surface +plane-of-array irradiance using the pvfactors package. """ import pandas as pd diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py new file mode 100644 index 0000000000..bc8cc4f6c4 --- /dev/null +++ b/pvlib/bifacial/utils.py @@ -0,0 +1,5 @@ +""" +The bifacial.utils module contains functions that support bifacial irradiance +modeling. +""" + From cd0d1145fd50fcd9076a02b00823b38262be036a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 8 Oct 2021 13:56:26 -0600 Subject: [PATCH 037/115] create test files, move two functions to utils --- pvlib/__init__.py | 1 - pvlib/bifacial/__init__.py | 2 +- pvlib/bifacial/infinite_sheds.py | 53 ++-- pvlib/bifacial/utils.py | 74 +++++ pvlib/tests/bifacial/__init__.py | 0 pvlib/tests/bifacial/test_infinite_sheds.py | 301 ++++++++++++++++++++ pvlib/tests/bifacial/test_utils.py | 46 +++ 7 files changed, 454 insertions(+), 23 deletions(-) create mode 100644 pvlib/tests/bifacial/__init__.py create mode 100644 pvlib/tests/bifacial/test_infinite_sheds.py create mode 100644 pvlib/tests/bifacial/test_utils.py diff --git a/pvlib/__init__.py b/pvlib/__init__.py index 48da4fa93e..ff6b375017 100644 --- a/pvlib/__init__.py +++ b/pvlib/__init__.py @@ -6,7 +6,6 @@ clearsky, # forecast iam, - infinite_sheds, inverter, iotools, irradiance, diff --git a/pvlib/bifacial/__init__.py b/pvlib/bifacial/__init__.py index 6fad505191..27c7abd9b5 100644 --- a/pvlib/bifacial/__init__.py +++ b/pvlib/bifacial/__init__.py @@ -1 +1 @@ -from pvlib.bifacial.pvfactors import pvfactors +from pvlib.bifacial import pvfactors, infinite_sheds, utils diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index a8f448ac68..95774fdddf 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -37,6 +37,10 @@ 7. Treat the first and last row differently, because they aren't blocked on the front side for 1st row, or the backside for last row. +#TODO: explain geometry: primary axes and orientation, what is meant by +"previous" and "next rows", etc. + + That's it folks! This model is influenced by the 2D model published by Marion, *et al.* in [1]. @@ -52,6 +56,7 @@ import numpy as np import pandas as pd from pvlib import irradiance, iam +from pvlib.tools import cosd, sind, tand #TODO: not used @@ -88,8 +93,7 @@ def solar_projection(solar_zenith, solar_azimuth, system_azimuth): return phi, tan_phi -#TODO: why radians here -#TODO: make private? +#TODO: moved to utils, remove here def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ Calculate tangent of angle between sun vector projected to the YZ-plane @@ -102,26 +106,27 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Parameters ---------- solar_zenith : numeric - apparent zenith in radians + apparent zenith in degrees solar_azimuth : numeric - azimuth in radians + azimuth in degrees system_azimuth : numeric - system rotation from north in radians + system rotation from north in degrees Returns ------- tan_phi : numeric - tangent of the solar projection + Tangent of the angle between vertical and the projection of the + sun direction onto the YZ plane. """ rotation = solar_azimuth - system_azimuth #TODO: I don't think tan_phi should ever be negative, but it could be if # rotation > 90 (e.g. sun north of along-row azimuth) - tan_phi = np.cos(rotation) * np.tan(solar_zenith) + tan_phi = cosd(rotation) * tand(solar_zenith) return tan_phi -#TODO: use azimuths as inputs, move to util -def unshaded_ground_fraction(gcr, tilt, tan_phi): +#TODO: moved to utils, changed signature. remove here +def unshaded_ground_fraction(gcr, surface_tilt, tan_phi): """ Calculate the fraction of the ground with incident direct irradiance. @@ -134,12 +139,15 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): Parameters ---------- gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing - tilt : numeric -#TODO: use same definition of tilt as pvlib - angle of module normal from vertical in radians, if bifacial use front + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). + surface_tilt: numeric + Surface tilt angle in decimal degrees. The tilt angle is defined as + degrees from horizontal, e.g., surface facing up = 0, surface facing + horizon = 90. tan_phi : numeric - solar projection tangent + Tangent of the angle between vertical and the projection of the + sun direction onto the YZ plane. Returns ------- @@ -148,22 +156,25 @@ def unshaded_ground_fraction(gcr, tilt, tan_phi): """ #TODO: why np.abs? All angles should be <=90 f_gnd_beam = 1.0 - np.minimum( - 1.0, gcr * np.abs(np.cos(tilt) + np.sin(tilt) * tan_phi)) + 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) return f_gnd_beam # 1 - min(1, abs()) < 1 always -def _gcr_prime(gcr, height, tilt, pitch): +def _gcr_prime(gcr, height, surface_tilt, pitch): """ - Ratio of slant height above ground of the top of a row to the row pitch. + Slant length from the ground to the top of a row divided by the row pitch. Parameters ---------- gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in decimal degrees. The tilt angle is defined as + degrees from horizontal, e.g., surface facing up = 0, surface facing + horizon = 90. pitch : numeric row spacing @@ -183,7 +194,7 @@ def _gcr_prime(gcr, height, tilt, pitch): # : \ tilt \ : # +----------\<---------P----------->\---- ground - return gcr + height / np.sin(tilt) / pitch + return gcr + height / np.sind(surface_tilt) / pitch # TODO: move to util, overlaps with ground_sky_angles_prev in that both return diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index bc8cc4f6c4..2e62816915 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -2,4 +2,78 @@ The bifacial.utils module contains functions that support bifacial irradiance modeling. """ +import numpy as np +from pvlib.tools import sind, cosd, tand + +#TODO: make private? +def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): + """ + Calculate tangent of angle between sun vector projected to the YZ-plane + (vertical and perpendicular to rows) and zenith vector. + + .. math:: + \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} + \\right)\\tan\\left(\\text{solar zenith}\\right) + + Parameters + ---------- + solar_zenith : numeric + apparent zenith in degrees + solar_azimuth : numeric + azimuth in degrees + system_azimuth : numeric + system rotation from north in degrees + + Returns + ------- + tan_phi : numeric + Tangent of the angle between vertical and the projection of the + sun direction onto the YZ plane. + """ + rotation = solar_azimuth - system_azimuth + #TODO: I don't think tan_phi should ever be negative, but it could be if + # rotation > 90 (e.g. sun north of along-row azimuth) + tan_phi = cosd(rotation) * tand(solar_zenith) + return tan_phi + + +def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth): + """ + Calculate the fraction of the ground with incident direct irradiance. + + .. math:: + F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + + \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + + \\beta &= \\text{tilt} + + Parameters + ---------- + gcr : numeric + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). + surface_tilt: numeric + Surface tilt angle in decimal degrees. The tilt angle is defined as + degrees from horizontal, e.g., surface facing up = 0, surface facing + horizon = 90. + surface_azimuth: numeric + Azimuth angle of the module surface in degrees. + North=0, East=90, South=180, West=270. + solar_zenith : numeric + Solar zenith angle in degrees. + solar_azimuth : numeric + Solar azimuth angle in degrees. + + Returns + ------- + f_gnd_beam : numeric + Fraction of row pitch that is illuminated (unshaded). + """ + #TODO: why np.abs? All angles should be <=90 + tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, + surface_azimuth) + f_gnd_beam = 1.0 - np.minimum( + 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) + return f_gnd_beam # 1 - min(1, abs()) < 1 always \ No newline at end of file diff --git a/pvlib/tests/bifacial/__init__.py b/pvlib/tests/bifacial/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py new file mode 100644 index 0000000000..d1c7486c04 --- /dev/null +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -0,0 +1,301 @@ +""" +test infinite sheds +""" + +import os +import numpy as np +import pandas as pd +import pvlib + +BASEDIR = os.path.dirname(__file__) +PROJDIR = os.path.dirname(BASEDIR) +DATADIR = os.path.join(PROJDIR, 'data') +TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') + +# location and irradiance +LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates + +# PV module orientation +# tilt: positive = facing toward sun, negative = backward +# system-azimuth: positive counter-clockwise from north +TILT, SYSAZ = 20.0, 250.0 +GCR = 0.5 # ground coverage ratio +HEIGHT = 1 # height above ground +PITCH = 4 # row spacing + +# IAM parameters +B0 = 0.05 +MAXAOI = 85 + +# backside +BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} + +# TESTDATA +TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) +GHI, DHI = TESTDATA.ghi, TESTDATA.dhi +# convert #DIV/0 to np.inf, 0/0 to NaN, then convert to float +DF = np.where(GHI > 0, TESTDATA.df, np.inf) +DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) +TESTDATA.df = DF +F_GND_BEAM = TESTDATA['Fsky-gnd'] +BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] +FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] +BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) +FRONT_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_f) + +TAN_PSI_TOP0_F = np.tan(0.312029739) # GCR*SIN(TILT_f)/(1-GCR*COS(TILT_f)) +TAN_PSI_TOP0_B = np.tan(0.115824807) # GCR*SIN(TILT_b)/(1-GCR*COS(TILT_b)) +TAN_PSI_BOT1_F = np.tan(0.115824807) # SIN(TILT_f) / (COS(TILT_f) + 1/GCR) +TAN_PSI_BOT1_B = np.tan(0.312029739) # SIN(TILT_b) / (COS(TILT_b) + 1/GCR) + +# radians +SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) +SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) +SYSAZ_RAD = np.radians(SYSAZ) +BACK_SYSAZ_RAD = np.radians(BACKSIDE['sysaz']) +TILT_RAD = np.radians(TILT) +BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) + + +#TODO: moved to utils, +def test_solar_projection_tangent(): + tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( + TESTDATA.apparent_zenith, TESTDATA.azimuth, SYSAZ) + tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( + TESTDATA.apparent_zenith, TESTDATA.azimuth, BACKSIDE['sysaz']) + assert np.allclose(tan_phi_f, -tan_phi_b) + assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) + assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) + + +def test_solar_projection(): + # frontside + phi_f, tan_phi_f = pvlib.infinite_sheds.solar_projection( + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) + assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) + assert np.allclose(np.tan(phi_f), tan_phi_f) + # backside + phi_b, tan_phi_b = pvlib.infinite_sheds.solar_projection( + SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) + assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) + assert np.allclose(np.tan(phi_b), tan_phi_b) + + +#TODO: moved to utils, +def test_unshaded_ground_fraction(): + # frontside, same for both sides + f_sky_beam_f = pvlib.infinite_sheds.unshaded_ground_fraction( + GCR, TILT, TESTDATA.tan_phi_f) + assert np.allclose(f_sky_beam_f, F_GND_BEAM) + # backside, should be the same as frontside + f_sky_beam_b = pvlib.infinite_sheds.unshaded_ground_fraction( + GCR, BACKSIDE['tilt'], TESTDATA.tan_phi_b) + assert np.allclose(f_sky_beam_b, F_GND_BEAM) + + +ARGS = (GCR, HEIGHT, TILT, PITCH) + + +def test__gcr_prime(): + assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), + 1.2309511000407718) + + +# calculated ground-sky angles at panel edges +# gcr_prime = pvlib.infinite_sheds._gcr_prime(*ARGS) +# back_tilt_rad = np.pi - tilt_rad +# psi_0_x0 = back_tilt_rad +# psi_1_x0 = np.arctan2( +# gcr_prime * np.sin(back_tilt_rad), 1 - gcr_prime * np.cos(back_tilt_rad)) +PSI_0_X0, PSI_1_X0 = 2.792526803190927, 0.19278450775754705 +# psi_0_x1 = np.arctan2( +# gcr_prime * np.sin(tilt_rad), 1 - gcr_prime * np.cos(tilt_rad)) +# psi_1_x1 = tilt_rad +PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 + + +def test_ground_sky_angles(): + assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) + # check limit at x=0, these are the same as the back edge of the row beyond + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) + + +FZ0_LIMIT = 1.4619022000815438 # pvlib.infinite_sheds.f_z0_limit(*ARGS) +# np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) +PSI_TOP = 0.3120297392978313 + + +def test_ground_sky_angles_prev(): + if HEIGHT > 0: + # check limit at z=0, these are the same as z=1 of the previous row + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles_prev(0, *ARGS), + (PSI_0_X1, PSI_1_X1)) + # check limit at z=z0_limit, angles must sum to 180 + assert np.isclose( + sum(pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), + np.pi) + # directly under panel, angle should be 90 straight upward! + z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], + np.pi / 2.) + # angles must be the same as psi_top + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], + PSI_TOP) + + +FZ1_LIMIT = 1.4619022000815427 # pvlib.infinite_sheds.f_z1_limit(*ARGS) +# np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) +PSI_TOP_BACK = 0.11582480672702507 + + +def test_ground_sky_angles_next(): + if HEIGHT > 0: + # check limit at z=1, these are the same as z=0 of the next row beyond + assert np.allclose( + pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), + (PSI_0_X0, PSI_1_X0)) + # check limit at zprime=z1_limit, angles must sum to 180 + sum_angles_z1_limit = sum( + pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) + assert np.isclose(sum_angles_z1_limit, np.pi) + # directly under panel, angle should be 90 straight upward! + z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], + np.pi / 2.) + # angles must be the same as psi_top + assert np.isclose( + pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], + PSI_TOP_BACK) + + +def test_diffuse_fraction(): + df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) + assert np.allclose(df, DF, equal_nan=True) + + +VF_GND_SKY = 0.5184093800689326 +FZ_SKY = np.array([ + 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, + 0.40760977, 0.41546240, 0.42363368, 0.43209234, 0.44079809, + 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, + 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, + 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, + 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, + 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.65683590, + 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, + 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, + 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, + 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, + 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, + 0.61025517, 0.59900195, 0.58719184, 0.57481610, 0.56199241, + 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, + 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, + 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, + 0.37191014, 0.36503340, 0.35906878, 0.35388625, 0.34959679, + 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, + 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, + 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) + + +def test_vf_ground_sky(): + vf_gnd_sky, fz_sky = pvlib.infinite_sheds.vf_ground_sky(*ARGS) + assert np.isclose(vf_gnd_sky, VF_GND_SKY) + assert np.allclose(fz_sky, FZ_SKY) + + +def test_poa_ground_sky(): + # front side + poa_gnd_sky_f = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) + # CSV file decimals are truncated + assert np.allclose( + poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) + # backside + poa_gnd_sky_b = pvlib.infinite_sheds.poa_ground_sky( + TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) + assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) + + +def test_shade_line(): + # front side + fx_f = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) + assert np.allclose(fx_f, TESTDATA.Fx_f) + # backside + fx_b = pvlib.infinite_sheds.shade_line( + GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) + assert np.allclose(fx_b, TESTDATA.Fx_b) + + +def test_sky_angles(): + # frontside + psi_top_f, tan_psi_top_f = pvlib.infinite_sheds.sky_angle( + GCR, TILT_RAD, TESTDATA.Fx_f) + assert np.allclose(psi_top_f, TESTDATA.psi_top_f) + assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) + # backside + psi_top_b, tan_psi_top_b = pvlib.infinite_sheds.sky_angle( + GCR, BACK_TILT_RAD, TESTDATA.Fx_b) + assert np.allclose(psi_top_b, TESTDATA.psi_top_b) + assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) + + +def test_sky_angle_tangent(): + # frontside + tan_psi_top_f = pvlib.infinite_sheds.sky_angle_tangent( + GCR, TILT_RAD, TESTDATA.Fx_f) + assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) + # backside + tan_psi_top_b = pvlib.infinite_sheds.sky_angle_tangent( + GCR, BACK_TILT_RAD, TESTDATA.Fx_b) + assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) + + +def test_sky_angle_0_tangent(): + # frontside + tan_psi_top_f = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) + assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) + # backside + tan_psi_top_b = pvlib.infinite_sheds.sky_angle_0_tangent( + GCR, BACK_TILT_RAD) + assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) + + +if __name__ == '__main__': + from matplotlib import pyplot as plt + plt.ion() + plt.plot(*pvlib.infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) + plt.title( + 'combined sky view factor, not including horizon and first/last row') + plt.xlabel('fraction of pitch from front to back') + plt.ylabel('view factor') + plt.grid() + fig, ax = plt.subplots(2, 1, figsize=(6, 8)) + fx = np.linspace(0, 1, 100) + fskyz = [pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] + fskyz, fgnd_pv = zip(*fskyz) + ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) + ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) + ax[0].grid() + ax[0].set_title('frontside integrated ground reflected') + ax[0].set_xlabel('fraction of PV surface from bottom ($F_x$)') + ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') + ax[0].legend(('blocked', 'all sky')) + fskyz = [ + pvlib.infinite_sheds.calc_fgndpv_zsky( + x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] + fskyz, fgnd_pv = zip(*fskyz) + ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) + ax[1].plot(fx, fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) + ax[1].grid() + ax[1].set_title('backside integrated ground reflected') + ax[1].set_xlabel('fraction of PV surface from bottom ($F_x$)') + ax[1].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') + ax[1].legend(('blocked', 'all sky')) + plt.tight_layout() diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py new file mode 100644 index 0000000000..8de36fba31 --- /dev/null +++ b/pvlib/tests/bifacial/test_utils.py @@ -0,0 +1,46 @@ +""" +test infinite sheds +""" + +import os +import numpy as np +import pytest +import pvlib.bifacial.utils as utils + +BASEDIR = os.path.dirname(__file__) +PROJDIR = os.path.dirname(BASEDIR) +DATADIR = os.path.join(PROJDIR, 'data') +TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') + + +def solar_projection_tangent(): + tan_phi_f = utils.solar_projection_tangent( + 30, 150, 180) + tan_phi_b = utils.solar_projection_tangent( + 30, 150, 0) + assert np.allclose(tan_phi_f, 0.5) + assert np.allclose(tan_phi_b, 0.5) + assert np.allclose(tan_phi_f, -tan_phi_b) + + +@pytest.mark.parametrize( + "gcr,surface_tilt,surface_azimuth,solar_zenith,solar_azimuth,expected", + [(np.sqrt(2) / 2, 45, 180, 0, 180, 0.5), + (np.sqrt(2) / 2, 45, 180, 45, 180, 0.0), + (np.sqrt(2) / 2, 45, 180, 45, 90, 0.5), + (np.sqrt(2) / 2, 45, 180, 45, 0, 1.0), + (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), + ] + ) +def test_unshaded_ground_fraction( + gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + expected): + # frontside, same for both sides + f_sky_beam_f = utils.unshaded_ground_fraction( + gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) + assert np.allclose(f_sky_beam_f, expected) + # backside, should be the same as frontside + f_sky_beam_b = utils.unshaded_ground_fraction( + gcr, surface_tilt + 90, surface_azimuth - 180, solar_zenith, + solar_azimuth) + assert np.allclose(f_sky_beam_b, expected) From 8f11255dcbabc5eef7496082e118c0bb9173030a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 8 Oct 2021 16:00:13 -0600 Subject: [PATCH 038/115] adjust test paths --- pvlib/tests/bifacial/test_infinite_sheds.py | 6 +- pvlib/tests/bifacial/test_pvfactors.py | 100 ++++++++++++++++++++ 2 files changed, 102 insertions(+), 4 deletions(-) create mode 100644 pvlib/tests/bifacial/test_pvfactors.py diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index d1c7486c04..c3b1ad1087 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -7,10 +7,8 @@ import pandas as pd import pvlib -BASEDIR = os.path.dirname(__file__) -PROJDIR = os.path.dirname(BASEDIR) -DATADIR = os.path.join(PROJDIR, 'data') -TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') +from ..conftest import DATA_DIR +TESTDATA = os.path.join(DATA_DIR, 'infinite_sheds.csv') # location and irradiance LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates diff --git a/pvlib/tests/bifacial/test_pvfactors.py b/pvlib/tests/bifacial/test_pvfactors.py new file mode 100644 index 0000000000..7f425c0da6 --- /dev/null +++ b/pvlib/tests/bifacial/test_pvfactors.py @@ -0,0 +1,100 @@ +import pandas as pd +from datetime import datetime +from pvlib.bifacial.pvfactors import pvfactors_timeseries +from .conftest import requires_pvfactors, assert_series_equal + + +@requires_pvfactors +def test_pvfactors_timeseries(): + """ Test that pvfactors is functional, using the TLDR section inputs of the + package github repo README.md file: + https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start""" + + # Create some inputs + timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), + datetime(2017, 8, 31, 12)] + ).set_names('timestamps') + solar_zenith = [20., 10.] + solar_azimuth = [110., 140.] + surface_tilt = [10., 0.] + surface_azimuth = [90., 90.] + axis_azimuth = 0. + dni = [1000., 300.] + dhi = [50., 500.] + gcr = 0.4 + pvrow_height = 1.75 + pvrow_width = 2.44 + albedo = 0.2 + n_pvrows = 3 + index_observed_pvrow = 1 + rho_front_pvrow = 0.03 + rho_back_pvrow = 0.05 + horizon_band_angle = 15. + + # Expected values + expected_ipoa_front = pd.Series([1034.95474708997, 795.4423259036623], + index=timestamps, + name=('total_inc_front')) + expected_ipoa_back = pd.Series([92.12563846416197, 78.05831585685098], + index=timestamps, + name=('total_inc_back')) + + # Run calculation + ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries( + solar_azimuth, solar_zenith, surface_azimuth, surface_tilt, + axis_azimuth, + timestamps, dni, dhi, gcr, pvrow_height, pvrow_width, albedo, + n_pvrows=n_pvrows, index_observed_pvrow=index_observed_pvrow, + rho_front_pvrow=rho_front_pvrow, rho_back_pvrow=rho_back_pvrow, + horizon_band_angle=horizon_band_angle) + + assert_series_equal(ipoa_inc_front, expected_ipoa_front) + assert_series_equal(ipoa_inc_back, expected_ipoa_back) + + +@requires_pvfactors +def test_pvfactors_timeseries_pandas_inputs(): + """ Test that pvfactors is functional, using the TLDR section inputs of the + package github repo README.md file, but converted to pandas Series: + https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start""" + + # Create some inputs + timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), + datetime(2017, 8, 31, 12)] + ).set_names('timestamps') + solar_zenith = pd.Series([20., 10.]) + solar_azimuth = pd.Series([110., 140.]) + surface_tilt = pd.Series([10., 0.]) + surface_azimuth = pd.Series([90., 90.]) + axis_azimuth = 0. + dni = pd.Series([1000., 300.]) + dhi = pd.Series([50., 500.]) + gcr = 0.4 + pvrow_height = 1.75 + pvrow_width = 2.44 + albedo = 0.2 + n_pvrows = 3 + index_observed_pvrow = 1 + rho_front_pvrow = 0.03 + rho_back_pvrow = 0.05 + horizon_band_angle = 15. + + # Expected values + expected_ipoa_front = pd.Series([1034.95474708997, 795.4423259036623], + index=timestamps, + name=('total_inc_front')) + expected_ipoa_back = pd.Series([92.12563846416197, 78.05831585685098], + index=timestamps, + name=('total_inc_back')) + + # Run calculation + ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries( + solar_azimuth, solar_zenith, surface_azimuth, surface_tilt, + axis_azimuth, + timestamps, dni, dhi, gcr, pvrow_height, pvrow_width, albedo, + n_pvrows=n_pvrows, index_observed_pvrow=index_observed_pvrow, + rho_front_pvrow=rho_front_pvrow, rho_back_pvrow=rho_back_pvrow, + horizon_band_angle=horizon_band_angle) + + assert_series_equal(ipoa_inc_front, expected_ipoa_front) + assert_series_equal(ipoa_inc_back, expected_ipoa_back) From d2c1448f4cdec741826789d21c5d43906079a7f5 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 9 Oct 2021 09:22:42 -0600 Subject: [PATCH 039/115] fix testing --- pvlib/bifacial/infinite_sheds.py | 72 +++++++++-------- pvlib/tests/bifacial/test_infinite_sheds.py | 88 +++++++++++---------- pvlib/tests/bifacial/test_pvfactors.py | 2 +- pvlib/tests/test_bifacial.py | 3 +- 4 files changed, 84 insertions(+), 81 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 95774fdddf..a50246fdb2 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -57,6 +57,7 @@ import pandas as pd from pvlib import irradiance, iam from pvlib.tools import cosd, sind, tand +from pvlib.bifacial.utils import unshaded_ground_fraction #TODO: not used @@ -126,38 +127,38 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): #TODO: moved to utils, changed signature. remove here -def unshaded_ground_fraction(gcr, surface_tilt, tan_phi): - """ - Calculate the fraction of the ground with incident direct irradiance. - - .. math:: - F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + - \\sin \\beta \\tan \\phi \\right|\\right)} \\newline - - \\beta &= \\text{tilt} - - Parameters - ---------- - gcr : numeric - Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). - surface_tilt: numeric - Surface tilt angle in decimal degrees. The tilt angle is defined as - degrees from horizontal, e.g., surface facing up = 0, surface facing - horizon = 90. - tan_phi : numeric - Tangent of the angle between vertical and the projection of the - sun direction onto the YZ plane. - - Returns - ------- - f_gnd_beam : numeric - fraction of ground illuminated (unshaded) - """ - #TODO: why np.abs? All angles should be <=90 - f_gnd_beam = 1.0 - np.minimum( - 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) - return f_gnd_beam # 1 - min(1, abs()) < 1 always +# def unshaded_ground_fraction(gcr, surface_tilt, tan_phi): +# """ +# Calculate the fraction of the ground with incident direct irradiance. + +# .. math:: +# F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + +# \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + +# \\beta &= \\text{tilt} + +# Parameters +# ---------- +# gcr : numeric +# Ground coverage ratio, which is the ratio of row slant length to row +# spacing (pitch). +# surface_tilt: numeric +# Surface tilt angle in decimal degrees. The tilt angle is defined as +# degrees from horizontal, e.g., surface facing up = 0, surface facing +# horizon = 90. +# tan_phi : numeric +# Tangent of the angle between vertical and the projection of the +# sun direction onto the YZ plane. + +# Returns +# ------- +# f_gnd_beam : numeric +# fraction of ground illuminated (unshaded) +# """ +# #TODO: why np.abs? All angles should be <=90 +# f_gnd_beam = 1.0 - np.minimum( +# 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) +# return f_gnd_beam # 1 - min(1, abs()) < 1 always def _gcr_prime(gcr, height, surface_tilt, pitch): @@ -193,8 +194,8 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # : \ \ h = height above ground # : \ tilt \ : # +----------\<---------P----------->\---- ground - - return gcr + height / np.sind(surface_tilt) / pitch +#TODO convert to degrees + return gcr + height / np.sin(surface_tilt) / pitch # TODO: move to util, overlaps with ground_sky_angles_prev in that both return @@ -1016,7 +1017,8 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tan_phi = solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) # fraction of ground illuminated accounting from shade from panels - f_gnd_beam = unshaded_ground_fraction(gcr, tilt, tan_phi) + f_gnd_beam = unshaded_ground_fraction(gcr, tilt, system_azimuth, + solar_zenith, solar_azimuth) # diffuse fraction df = diffuse_fraction(ghi, dhi) #TODO: move to bifacial.util diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index c3b1ad1087..285ece559d 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,6 +6,8 @@ import numpy as np import pandas as pd import pvlib +from pvlib.bifacial import infinite_sheds, utils + from ..conftest import DATA_DIR TESTDATA = os.path.join(DATA_DIR, 'infinite_sheds.csv') @@ -57,9 +59,9 @@ #TODO: moved to utils, def test_solar_projection_tangent(): - tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( + tan_phi_f = infinite_sheds.solar_projection_tangent( TESTDATA.apparent_zenith, TESTDATA.azimuth, SYSAZ) - tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( + tan_phi_b = infinite_sheds.solar_projection_tangent( TESTDATA.apparent_zenith, TESTDATA.azimuth, BACKSIDE['sysaz']) assert np.allclose(tan_phi_f, -tan_phi_b) assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) @@ -68,39 +70,39 @@ def test_solar_projection_tangent(): def test_solar_projection(): # frontside - phi_f, tan_phi_f = pvlib.infinite_sheds.solar_projection( + phi_f, tan_phi_f = infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) assert np.allclose(np.tan(phi_f), tan_phi_f) # backside - phi_b, tan_phi_b = pvlib.infinite_sheds.solar_projection( + phi_b, tan_phi_b = infinite_sheds.solar_projection( SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) assert np.allclose(np.tan(phi_b), tan_phi_b) #TODO: moved to utils, -def test_unshaded_ground_fraction(): - # frontside, same for both sides - f_sky_beam_f = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, TILT, TESTDATA.tan_phi_f) - assert np.allclose(f_sky_beam_f, F_GND_BEAM) - # backside, should be the same as frontside - f_sky_beam_b = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, BACKSIDE['tilt'], TESTDATA.tan_phi_b) - assert np.allclose(f_sky_beam_b, F_GND_BEAM) +# def test_unshaded_ground_fraction(): +# # frontside, same for both sides +# f_sky_beam_f = infinite_sheds.unshaded_ground_fraction( +# GCR, TILT, TESTDATA.tan_phi_f) +# assert np.allclose(f_sky_beam_f, F_GND_BEAM) +# # backside, should be the same as frontside +# f_sky_beam_b = infinite_sheds.unshaded_ground_fraction( +# GCR, BACKSIDE['tilt'], TESTDATA.tan_phi_b) +# assert np.allclose(f_sky_beam_b, F_GND_BEAM) -ARGS = (GCR, HEIGHT, TILT, PITCH) +ARGS = (GCR, HEIGHT, np.radians(TILT), PITCH) def test__gcr_prime(): - assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), + assert np.isclose(infinite_sheds._gcr_prime(*ARGS), 1.2309511000407718) # calculated ground-sky angles at panel edges -# gcr_prime = pvlib.infinite_sheds._gcr_prime(*ARGS) +# gcr_prime = infinite_sheds._gcr_prime(*ARGS) # back_tilt_rad = np.pi - tilt_rad # psi_0_x0 = back_tilt_rad # psi_1_x0 = np.arctan2( @@ -116,12 +118,12 @@ def test_ground_sky_angles(): assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) # check limit at x=0, these are the same as the back edge of the row beyond assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) + infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) + infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) -FZ0_LIMIT = 1.4619022000815438 # pvlib.infinite_sheds.f_z0_limit(*ARGS) +FZ0_LIMIT = 1.4619022000815438 # infinite_sheds.f_z0_limit(*ARGS) # np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) PSI_TOP = 0.3120297392978313 @@ -130,24 +132,24 @@ def test_ground_sky_angles_prev(): if HEIGHT > 0: # check limit at z=0, these are the same as z=1 of the previous row assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_prev(0, *ARGS), + infinite_sheds.ground_sky_angles_prev(0, *ARGS), (PSI_0_X1, PSI_1_X1)) # check limit at z=z0_limit, angles must sum to 180 assert np.isclose( - sum(pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), + sum(infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), np.pi) # directly under panel, angle should be 90 straight upward! z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], + infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], np.pi / 2.) # angles must be the same as psi_top assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], + infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], PSI_TOP) -FZ1_LIMIT = 1.4619022000815427 # pvlib.infinite_sheds.f_z1_limit(*ARGS) +FZ1_LIMIT = 1.4619022000815427 # infinite_sheds.f_z1_limit(*ARGS) # np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) PSI_TOP_BACK = 0.11582480672702507 @@ -156,25 +158,25 @@ def test_ground_sky_angles_next(): if HEIGHT > 0: # check limit at z=1, these are the same as z=0 of the next row beyond assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), + infinite_sheds.ground_sky_angles_next(1, *ARGS), (PSI_0_X0, PSI_1_X0)) # check limit at zprime=z1_limit, angles must sum to 180 sum_angles_z1_limit = sum( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) + infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) assert np.isclose(sum_angles_z1_limit, np.pi) # directly under panel, angle should be 90 straight upward! z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], + infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], np.pi / 2.) # angles must be the same as psi_top assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], + infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], PSI_TOP_BACK) def test_diffuse_fraction(): - df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) + df = infinite_sheds.diffuse_fraction(GHI, DHI) assert np.allclose(df, DF, equal_nan=True) @@ -203,42 +205,42 @@ def test_diffuse_fraction(): def test_vf_ground_sky(): - vf_gnd_sky, fz_sky = pvlib.infinite_sheds.vf_ground_sky(*ARGS) + vf_gnd_sky, fz_sky = infinite_sheds.vf_ground_sky(*ARGS) assert np.isclose(vf_gnd_sky, VF_GND_SKY) assert np.allclose(fz_sky, FZ_SKY) def test_poa_ground_sky(): # front side - poa_gnd_sky_f = pvlib.infinite_sheds.poa_ground_sky( + poa_gnd_sky_f = infinite_sheds.poa_ground_sky( TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) # CSV file decimals are truncated assert np.allclose( poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) # backside - poa_gnd_sky_b = pvlib.infinite_sheds.poa_ground_sky( + poa_gnd_sky_b = infinite_sheds.poa_ground_sky( TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) def test_shade_line(): # front side - fx_f = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) + fx_f = infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) assert np.allclose(fx_f, TESTDATA.Fx_f) # backside - fx_b = pvlib.infinite_sheds.shade_line( + fx_b = infinite_sheds.shade_line( GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) assert np.allclose(fx_b, TESTDATA.Fx_b) def test_sky_angles(): # frontside - psi_top_f, tan_psi_top_f = pvlib.infinite_sheds.sky_angle( + psi_top_f, tan_psi_top_f = infinite_sheds.sky_angle( GCR, TILT_RAD, TESTDATA.Fx_f) assert np.allclose(psi_top_f, TESTDATA.psi_top_f) assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - psi_top_b, tan_psi_top_b = pvlib.infinite_sheds.sky_angle( + psi_top_b, tan_psi_top_b = infinite_sheds.sky_angle( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) assert np.allclose(psi_top_b, TESTDATA.psi_top_b) assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) @@ -246,21 +248,21 @@ def test_sky_angles(): def test_sky_angle_tangent(): # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_tangent( + tan_psi_top_f = infinite_sheds.sky_angle_tangent( GCR, TILT_RAD, TESTDATA.Fx_f) assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_tangent( + tan_psi_top_b = infinite_sheds.sky_angle_tangent( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) def test_sky_angle_0_tangent(): # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) + tan_psi_top_f = infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_0_tangent( + tan_psi_top_b = infinite_sheds.sky_angle_0_tangent( GCR, BACK_TILT_RAD) assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) @@ -268,7 +270,7 @@ def test_sky_angle_0_tangent(): if __name__ == '__main__': from matplotlib import pyplot as plt plt.ion() - plt.plot(*pvlib.infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) + plt.plot(*infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) plt.title( 'combined sky view factor, not including horizon and first/last row') plt.xlabel('fraction of pitch from front to back') @@ -276,7 +278,7 @@ def test_sky_angle_0_tangent(): plt.grid() fig, ax = plt.subplots(2, 1, figsize=(6, 8)) fx = np.linspace(0, 1, 100) - fskyz = [pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] + fskyz = [infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] fskyz, fgnd_pv = zip(*fskyz) ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) @@ -286,7 +288,7 @@ def test_sky_angle_0_tangent(): ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') ax[0].legend(('blocked', 'all sky')) fskyz = [ - pvlib.infinite_sheds.calc_fgndpv_zsky( + infinite_sheds.calc_fgndpv_zsky( x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] fskyz, fgnd_pv = zip(*fskyz) ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) diff --git a/pvlib/tests/bifacial/test_pvfactors.py b/pvlib/tests/bifacial/test_pvfactors.py index 7f425c0da6..e9daf54bbd 100644 --- a/pvlib/tests/bifacial/test_pvfactors.py +++ b/pvlib/tests/bifacial/test_pvfactors.py @@ -1,7 +1,7 @@ import pandas as pd from datetime import datetime from pvlib.bifacial.pvfactors import pvfactors_timeseries -from .conftest import requires_pvfactors, assert_series_equal +from ..conftest import requires_pvfactors, assert_series_equal @requires_pvfactors diff --git a/pvlib/tests/test_bifacial.py b/pvlib/tests/test_bifacial.py index 25542c4869..7f425c0da6 100644 --- a/pvlib/tests/test_bifacial.py +++ b/pvlib/tests/test_bifacial.py @@ -1,8 +1,7 @@ import pandas as pd from datetime import datetime -from pvlib.bifacial import pvfactors_timeseries +from pvlib.bifacial.pvfactors import pvfactors_timeseries from .conftest import requires_pvfactors, assert_series_equal -import pytest @requires_pvfactors From 144489f8539d72ea86bf157e735559d3b866cfa6 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 11 Oct 2021 16:03:56 -0600 Subject: [PATCH 040/115] adjustments to sky_angle_tangent --- pvlib/bifacial/__init__.py | 8 +- pvlib/bifacial/infinite_sheds.py | 83 ++++++++++++--------- pvlib/tests/bifacial/test_infinite_sheds.py | 23 ++++-- 3 files changed, 69 insertions(+), 45 deletions(-) diff --git a/pvlib/bifacial/__init__.py b/pvlib/bifacial/__init__.py index 27c7abd9b5..4f75f37c47 100644 --- a/pvlib/bifacial/__init__.py +++ b/pvlib/bifacial/__init__.py @@ -1 +1,7 @@ -from pvlib.bifacial import pvfactors, infinite_sheds, utils +""" +The ``bifacial`` module contains functions to model irradiance for bifacial +modules. + +""" + +from pvlib.bifacial import pvfactors, infinite_sheds, utils # noqa: F401 diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index a50246fdb2..386a5092a3 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -341,7 +341,7 @@ def f_z0_limit(gcr, height, tilt, pitch): between previous rows, where the angle :math:`\\psi` is tangent to both the top and bottom of panels. """ - tan_psi_t_x0 = sky_angle_0_tangent(gcr, tilt) + tan_psi_t_x0 = sky_angle_tangent(gcr, tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) return height/pitch * (1/np.tan(tilt) + 1/tan_psi_t_x0) @@ -423,7 +423,7 @@ def f_z1_limit(gcr, height, tilt, pitch): visible between the next rows, where the angle :math:`\\psi` is tangent to both the top and bottom of panels. """ - tan_psi_t_x1 = sky_angle_0_tangent(gcr, np.pi-tilt) + tan_psi_t_x1 =sky_angle_tangent(gcr, np.pi - tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) @@ -698,60 +698,71 @@ def sky_angle(gcr, tilt, f_x): return psi_top, tan_psi_top -def sky_angle_tangent(gcr, tilt, f_x): +def sky_angle_tangent(gcr, tilt, x): """ - tangent of angle from shade line to top of next row + tangent of angle from a point x along the module slant height to the + top of the previous row. .. math:: - \\tan{\\psi_t} &= \\frac{F_y \\text{GCR} \\sin{\\beta}}{1 - F_y + \\tan{\\psi_{top}} &= \\frac{y \\text{GCR} \\sin{\\beta}}{1 - y \\text{GCR} \\cos{\\beta}} \\newline - F_y &= 1 - F_x + y &= 1 - x Parameters ---------- gcr : numeric - ratio of module length versus row spacing + ratio of row slant length to row spacing (pitch) tilt : numeric angle of surface normal from vertical in radians - f_x : numeric - fraction of module shaded from bottom + x : numeric + fraction of module slant length from module bottom edge Returns ------- tan_psi_top : numeric - tangent of angle from shade line to top of next row - """ - f_y = 1.0 - f_x - return f_y * np.sin(tilt) / (1/gcr - f_y * np.cos(tilt)) - - -def sky_angle_0_tangent(gcr, tilt): + tangent of angle from x to top of previous row """ - tangent of angle to top of next row with no shade (shade line at bottom) so - :math:`F_x = 0` + # : \\ .*\\ + # : \\ .-* \\ + # : \\ .-* \\ + # : \\ . .*+ psi_t \\ previous row + # : \\.-*__________________ \\ + # : \ ^ \ + # : \ x \ + # : \ v \ + # : \<---------P----------->\ + + y = 1.0 - x + return y * np.sin(tilt) / (1/gcr - y * np.cos(tilt)) + +#TODO: delete, replaced by sky_angle_tangent +# def sky_angle_0_tangent(gcr, tilt): +# """ +# tangent of angle to top of next row with no shade (shade line at bottom) so +# :math:`F_x = 0` - .. math:: +# .. math:: - \\tan{\\psi_t\\left(x=0\\right)} = \\frac{\\text{GCR} \\sin{\\beta}} - {1 - \\text{GCR} \\cos{\\beta}} +# \\tan{\\psi_t\\left(x=0\\right)} = \\frac{\\text{GCR} \\sin{\\beta}} +# {1 - \\text{GCR} \\cos{\\beta}} - Parameters - ---------- - gcr : numeric - ratio of module length to row spacing - tilt : numeric - angle of surface normal from vertical in radians +# Parameters +# ---------- +# gcr : numeric +# ratio of module length to row spacing +# tilt : numeric +# angle of surface normal from vertical in radians - Returns - ------- - tan_psi_top_0 : numeric - tangent angle from bottom, ``x = 0``, to top of next row - """ - # f_y = 1 b/c x = 0, so f_x = 0 - # tan psi_t0 = GCR * sin(tilt) / (1 - GCR * cos(tilt)) - return sky_angle_tangent(gcr, tilt, 0.0) +# Returns +# ------- +# tan_psi_top_0 : numeric +# tangent angle from bottom, ``x = 0``, to top of next row +# """ +# # f_y = 1 b/c x = 0, so f_x = 0 +# # tan psi_t0 = GCR * sin(tilt) / (1 - GCR * cos(tilt)) +# return sky_angle_tangent(gcr, tilt, 0.0) def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): @@ -1031,7 +1042,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, f_x = shade_line(gcr, tilt, tan_phi) # angles from shadeline to top of next row tan_psi_top = sky_angle_tangent(gcr, tilt, f_x) - tan_psi_top_0 = sky_angle_0_tangent(gcr, tilt) + tan_psi_top_0 = sky_angle_tangent(gcr, tilt, 0.0) # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( tilt, tan_psi_top, tan_psi_top_0) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 285ece559d..63a44f015a 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import numpy as np import pandas as pd import pvlib -from pvlib.bifacial import infinite_sheds, utils +import pvlib.bifacial.infinite_sheds as infinite_sheds from ..conftest import DATA_DIR @@ -255,18 +255,25 @@ def test_sky_angle_tangent(): tan_psi_top_b = infinite_sheds.sky_angle_tangent( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - -def test_sky_angle_0_tangent(): - # frontside - tan_psi_top_f = infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) + tan_psi_top_f = infinite_sheds.sky_angle_tangent(GCR, TILT_RAD, 0.0) assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) # backside - tan_psi_top_b = infinite_sheds.sky_angle_0_tangent( - GCR, BACK_TILT_RAD) + tan_psi_top_b = infinite_sheds.sky_angle_tangent( + GCR, BACK_TILT_RAD, 0.0) assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) +#TODO: delete, function replaced by sky_angle_tangent +# def test_sky_angle_0_tangent(): +# # frontside +# tan_psi_top_f = infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) +# assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) +# # backside +# tan_psi_top_b = infinite_sheds.sky_angle_0_tangent( +# GCR, BACK_TILT_RAD) +# assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) + + if __name__ == '__main__': from matplotlib import pyplot as plt plt.ion() From a55f5877634d67a7197e834aacaaf4a39070ebeb Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 12:50:16 -0700 Subject: [PATCH 041/115] adjustments to get tests to run --- pvlib/bifacial/infinite_sheds.py | 2 ++ pvlib/tests/bifacial/test_infinite_sheds.py | 2 +- pvlib/tests/bifacial/test_utils.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 386a5092a3..1a16da0d5d 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -543,6 +543,7 @@ def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): return fgnd_sky, fz_sky +#TODO: not used def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky, reflecting from @@ -1011,6 +1012,7 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, #TODO: rename to pvlib.bifacial.infinite_sheds? +#TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, npoints=100, all_output=False): diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 63a44f015a..b76e1bc820 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import numpy as np import pandas as pd import pvlib -import pvlib.bifacial.infinite_sheds as infinite_sheds +from pvlib.bifacial import infinite_sheds from ..conftest import DATA_DIR diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 8de36fba31..7ff61c5e4e 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -5,7 +5,7 @@ import os import numpy as np import pytest -import pvlib.bifacial.utils as utils +from pvlib.bifacial import utils BASEDIR = os.path.dirname(__file__) PROJDIR = os.path.dirname(BASEDIR) From b6ee09ad1aaef47a49f50a6be23262d609a7dc48 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 15:02:05 -0700 Subject: [PATCH 042/115] move shade_line to shading.shaded_fraction --- pvlib/shading.py | 38 +++++++++++++++++++++++++++++++++++++ pvlib/tests/test_shading.py | 18 ++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/pvlib/shading.py b/pvlib/shading.py index 9479eb1739..6bd8bc89f3 100644 --- a/pvlib/shading.py +++ b/pvlib/shading.py @@ -6,6 +6,7 @@ import numpy as np import pandas as pd from pvlib.tools import sind, cosd +from pvlib import bifacial def masking_angle(surface_tilt, gcr, slant_height): @@ -191,3 +192,40 @@ def sky_diffuse_passias(masking_angle): Available at https://www.nrel.gov/docs/fy18osti/67399.pdf """ return 1 - cosd(masking_angle/2)**2 + + +def shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, + gcr): + """ + Calculate fraction (from the bottom) of row slant height that is shaded + by the row in front toward the sun. + + .. math:: + F_x = \\max \\left( 0, \\min \\left(1 - \\frac{1}{\\text{GCR} \\left( + \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) \\right) + + Parameters + ---------- + solar_zenith : numeric + apparent zenith in degrees + solar_azimuth : numeric + azimuth in degrees + Surface tilt angles in decimal degrees. + The tilt angle is defined as degrees from horizontal + (e.g. surface facing up = 0, surface facing horizon = 90) + surface_azimuth: float or array-like, default 180 + Azimuth angle of the module surface. + North=0, East=90, South=180, West=270. + gcr : numeric + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). + + Returns + ------- + f_x : numeric + Fraction of row slant height shaded from the bottom. + """ + tan_phi = bifacial.utils.solar_projection_tangent( + solar_zenith, solar_azimuth, surface_azimuth) + f_x = 1.0 - 1.0 / gcr / (cosd(surface_tilt) + sind(surface_tilt) * tan_phi) + return np.maximum(0.0, np.minimum(f_x, 1.0)) diff --git a/pvlib/tests/test_shading.py b/pvlib/tests/test_shading.py index 8a9fd46a69..b5a3661742 100644 --- a/pvlib/tests/test_shading.py +++ b/pvlib/tests/test_shading.py @@ -5,6 +5,7 @@ import pytest from pvlib import shading +from pvlib.location import Location @pytest.fixture @@ -69,3 +70,20 @@ def test_sky_diffuse_passias_scalar(average_masking_angle, shading_loss): for angle, loss in zip(average_masking_angle, shading_loss): actual_loss = shading.sky_diffuse_passias(angle) assert np.isclose(loss, actual_loss) + + +def test_shaded_fraction_series(): + idx = pd.date_range(start='1/2/2018 15:00', end='1/2/2018 17:00', freq='H', + tz='Etc/GMT+8') + loc = Location(37.85, -122.25, 'Etc/GMT+8') + sp = loc.get_solarposition(idx) + result = shading.shaded_fraction(sp['apparent_zenith'], sp['azimuth'], + 20., 250., 0.5) + expected = pd.Series(data=[0.0, 0.310216, 0.997537], + index=idx) + assert_series_equal(result, expected) + + +def test_shaded_fraction_floats(): + result = shading.shaded_fraction(90. - 9.0646784, 180., 30., 180., 0.5) + assert np.isclose(result, 0.5) From 517c303a736860ecab6c6b6ce2e56c40a9634753 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 15:05:01 -0700 Subject: [PATCH 043/115] remove shade_line from infinite_sheds --- pvlib/bifacial/infinite_sheds.py | 32 ++------------------- pvlib/tests/bifacial/test_infinite_sheds.py | 10 ------- 2 files changed, 3 insertions(+), 39 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 1a16da0d5d..bd6612a123 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -58,7 +58,7 @@ from pvlib import irradiance, iam from pvlib.tools import cosd, sind, tand from pvlib.bifacial.utils import unshaded_ground_fraction - +from pvlib.shading import shaded_fraction #TODO: not used def solar_projection(solar_zenith, solar_azimuth, system_azimuth): @@ -644,33 +644,6 @@ def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) -#TODO: move to pvlib.shading? -def shade_line(gcr, tilt, tan_phi): - """ - calculate fraction of module shaded from the bottom - - .. math:: - F_x = \\max \\left( 0, \\min \\left(1 - \\frac{1}{\\text{GCR} \\left( - \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) \\right) - - Parameters - ---------- - gcr : numeric - ratio of module length versus row spacing - tilt : numeric - angle of surface normal from vertical in radians - tan_phi : numeric - solar projection tangent - - Returns - ------- - f_x : numeric - fraction of module shaded from the bottom - """ - f_x = 1.0 - 1.0 / gcr / (np.cos(tilt) + np.sin(tilt) * tan_phi) - return np.maximum(0.0, np.minimum(f_x, 1.0)) - - def sky_angle(gcr, tilt, f_x): """ angle from shade line to top of next row @@ -1041,7 +1014,8 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, # considering the fraction of ground blocked by infinite adjacent rows poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) # fraction of panel shaded - f_x = shade_line(gcr, tilt, tan_phi) + f_x = shaded_fraction(solar_zenith, solar_azimuth, tilt, system_azimuth, + gcr) # angles from shadeline to top of next row tan_psi_top = sky_angle_tangent(gcr, tilt, f_x) tan_psi_top_0 = sky_angle_tangent(gcr, tilt, 0.0) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index b76e1bc820..dcb0458b59 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -223,16 +223,6 @@ def test_poa_ground_sky(): assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) -def test_shade_line(): - # front side - fx_f = infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(fx_f, TESTDATA.Fx_f) - # backside - fx_b = infinite_sheds.shade_line( - GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(fx_b, TESTDATA.Fx_b) - - def test_sky_angles(): # frontside psi_top_f, tan_psi_top_f = infinite_sheds.sky_angle( From c2fdc5646c014ec1e4a3aef30ff13809f324d9ca Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 15:11:32 -0700 Subject: [PATCH 044/115] remove functions that have moved to utils, shading --- pvlib/bifacial/infinite_sheds.py | 108 +------------------- pvlib/tests/bifacial/test_infinite_sheds.py | 37 ------- 2 files changed, 4 insertions(+), 141 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index bd6612a123..4fbb768ee6 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -60,106 +60,6 @@ from pvlib.bifacial.utils import unshaded_ground_fraction from pvlib.shading import shaded_fraction -#TODO: not used -def solar_projection(solar_zenith, solar_azimuth, system_azimuth): - """ - Calculate solar projection on YZ-plane, vertical and perpendicular to rows. - - .. math:: - \\tan \\phi = \\frac{\\cos\\left(\\text{solar azimuth} - - \\text{system azimuth}\\right)\\sin\\left(\\text{solar zenith} - \\right)}{\\cos\\left(\\text{solar zenith}\\right)} - - Parameters - ---------- - solar_zenith : numeric - apparent zenith in radians - solar_azimuth : numeric - azimuth in radians - system_azimuth : numeric - system rotation from north in radians - - Returns - ------- - phi : numeric - 4-quadrant arc-tangent of solar projection in radians - tan_phi : numeric - tangent of the solar projection - """ - rotation = solar_azimuth - system_azimuth - x1 = np.cos(rotation) * np.sin(solar_zenith) - x2 = np.cos(solar_zenith) - tan_phi = x1 / x2 - phi = np.arctan2(x1, x2) - return phi, tan_phi - - -#TODO: moved to utils, remove here -def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): - """ - Calculate tangent of angle between sun vector projected to the YZ-plane - (vertical and perpendicular to rows) and zenith vector. - - .. math:: - \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} - \\right)\\tan\\left(\\text{solar zenith}\\right) - - Parameters - ---------- - solar_zenith : numeric - apparent zenith in degrees - solar_azimuth : numeric - azimuth in degrees - system_azimuth : numeric - system rotation from north in degrees - - Returns - ------- - tan_phi : numeric - Tangent of the angle between vertical and the projection of the - sun direction onto the YZ plane. - """ - rotation = solar_azimuth - system_azimuth - #TODO: I don't think tan_phi should ever be negative, but it could be if - # rotation > 90 (e.g. sun north of along-row azimuth) - tan_phi = cosd(rotation) * tand(solar_zenith) - return tan_phi - - -#TODO: moved to utils, changed signature. remove here -# def unshaded_ground_fraction(gcr, surface_tilt, tan_phi): -# """ -# Calculate the fraction of the ground with incident direct irradiance. - -# .. math:: -# F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + -# \\sin \\beta \\tan \\phi \\right|\\right)} \\newline - -# \\beta &= \\text{tilt} - -# Parameters -# ---------- -# gcr : numeric -# Ground coverage ratio, which is the ratio of row slant length to row -# spacing (pitch). -# surface_tilt: numeric -# Surface tilt angle in decimal degrees. The tilt angle is defined as -# degrees from horizontal, e.g., surface facing up = 0, surface facing -# horizon = 90. -# tan_phi : numeric -# Tangent of the angle between vertical and the projection of the -# sun direction onto the YZ plane. - -# Returns -# ------- -# f_gnd_beam : numeric -# fraction of ground illuminated (unshaded) -# """ -# #TODO: why np.abs? All angles should be <=90 -# f_gnd_beam = 1.0 - np.minimum( -# 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) -# return f_gnd_beam # 1 - min(1, abs()) < 1 always - def _gcr_prime(gcr, height, surface_tilt, pitch): """ @@ -194,11 +94,11 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # : \ \ h = height above ground # : \ tilt \ : # +----------\<---------P----------->\---- ground -#TODO convert to degrees + #TODO convert to degrees return gcr + height / np.sin(surface_tilt) / pitch -# TODO: move to util, overlaps with ground_sky_angles_prev in that both return +# TODO: overlaps with ground_sky_angles_prev in that both return # angle to top of previous row. Could the three ground_sky_angle_xxx functions # be combined and handle the cases of points behind the "previous" row or ahead # of the next row? @@ -261,7 +161,6 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 -# move to util def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): """ Angles from point z on ground to top and bottom of previous rows beyond the @@ -1007,7 +906,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, solar_zenith, solar_azimuth) # diffuse fraction df = diffuse_fraction(ghi, dhi) -#TODO: move to bifacial.util + #TODO: move to bifacial.util # view factor from the ground in between infinite central rows to the sky vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels @@ -1018,6 +917,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, gcr) # angles from shadeline to top of next row tan_psi_top = sky_angle_tangent(gcr, tilt, f_x) + # angles from tops of next row to bottom of current row tan_psi_top_0 = sky_angle_tangent(gcr, tilt, 0.0) # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index dcb0458b59..efd3f94ec2 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -56,43 +56,6 @@ TILT_RAD = np.radians(TILT) BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) - -#TODO: moved to utils, -def test_solar_projection_tangent(): - tan_phi_f = infinite_sheds.solar_projection_tangent( - TESTDATA.apparent_zenith, TESTDATA.azimuth, SYSAZ) - tan_phi_b = infinite_sheds.solar_projection_tangent( - TESTDATA.apparent_zenith, TESTDATA.azimuth, BACKSIDE['sysaz']) - assert np.allclose(tan_phi_f, -tan_phi_b) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - - -def test_solar_projection(): - # frontside - phi_f, tan_phi_f = infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(np.tan(phi_f), tan_phi_f) - # backside - phi_b, tan_phi_b = infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - assert np.allclose(np.tan(phi_b), tan_phi_b) - - -#TODO: moved to utils, -# def test_unshaded_ground_fraction(): -# # frontside, same for both sides -# f_sky_beam_f = infinite_sheds.unshaded_ground_fraction( -# GCR, TILT, TESTDATA.tan_phi_f) -# assert np.allclose(f_sky_beam_f, F_GND_BEAM) -# # backside, should be the same as frontside -# f_sky_beam_b = infinite_sheds.unshaded_ground_fraction( -# GCR, BACKSIDE['tilt'], TESTDATA.tan_phi_b) -# assert np.allclose(f_sky_beam_b, F_GND_BEAM) - - ARGS = (GCR, HEIGHT, np.radians(TILT), PITCH) From 5aef380e12d5860f4d241641e18c9fb54d894708 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 15:17:16 -0700 Subject: [PATCH 045/115] move several functions to private --- pvlib/bifacial/infinite_sheds.py | 45 ++++++++++----------- pvlib/tests/bifacial/test_infinite_sheds.py | 30 +++++++------- 2 files changed, 37 insertions(+), 38 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 4fbb768ee6..c1edfbc321 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -57,7 +57,7 @@ import pandas as pd from pvlib import irradiance, iam from pvlib.tools import cosd, sind, tand -from pvlib.bifacial.utils import unshaded_ground_fraction +from pvlib.bifacial import utils from pvlib.shading import shaded_fraction @@ -102,7 +102,7 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # angle to top of previous row. Could the three ground_sky_angle_xxx functions # be combined and handle the cases of points behind the "previous" row or ahead # of the next row? -def ground_sky_angles(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles(f_z, gcr, height, tilt, pitch): """ Angles from point z on ground to tops of next and previous rows. @@ -161,7 +161,7 @@ def ground_sky_angles(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 -def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): """ Angles from point z on ground to top and bottom of previous rows beyond the current row. @@ -217,7 +217,7 @@ def ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 -def f_z0_limit(gcr, height, tilt, pitch): +def _f_z0_limit(gcr, height, tilt, pitch): """ Limit from the ground where sky is visible between previous rows. @@ -245,7 +245,7 @@ def f_z0_limit(gcr, height, tilt, pitch): return height/pitch * (1/np.tan(tilt) + 1/tan_psi_t_x0) -def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles_next(f_z, gcr, height, tilt, pitch): """ Angles from point z on the ground to top and bottom of next row beyond current row. @@ -299,7 +299,7 @@ def ground_sky_angles_next(f_z, gcr, height, tilt, pitch): return psi_0, psi_1 -def f_z1_limit(gcr, height, tilt, pitch): +def _f_z1_limit(gcr, height, tilt, pitch): """ Limit from the ground where sky is visible between the next rows. @@ -327,7 +327,7 @@ def f_z1_limit(gcr, height, tilt, pitch): return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) -def calc_fz_sky(psi_0, psi_1): +def _calc_fz_sky(psi_0, psi_1): """ Calculate the view factor for point "z" on the ground to the visible diffuse sky subtended by the angles :math:`\\psi_0` and :math:`\\psi_1`. @@ -350,8 +350,7 @@ def calc_fz_sky(psi_0, psi_1): # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row -# TODO: possibly move to pvlib.shading? -def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): +def _ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky incident on the ground. @@ -374,8 +373,8 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): """ args = gcr, height, tilt, pitch - fz0_limit = f_z0_limit(*args) - fz1_limit = f_z1_limit(*args) + fz0_limit = _f_z0_limit(*args) + fz1_limit = _f_z1_limit(*args) # include extra space to account for sky visible from adjacent rows # divide ground between visible limits into 3x npoints fz = np.linspace( @@ -384,10 +383,10 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): 3*npoints) # calculate the angles psi_0 and psi_1 that subtend the sky visible # from between rows - psi_z = ground_sky_angles(fz, *args) + psi_z = _ground_sky_angles(fz, *args) # front edge - psi_z0 = ground_sky_angles_prev(fz, *args) - fz_sky_next = calc_fz_sky(*psi_z0) + psi_z0 = _ground_sky_angles_prev(fz, *args) + fz_sky_next = _calc_fz_sky(*psi_z0) fz0_sky_next = [] prev_row = 0.0 # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) @@ -395,8 +394,8 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): fz0_sky_next.append(np.interp(fz + prev_row, fz, fz_sky_next)) prev_row += 1.0 # back edge - psi_z1 = ground_sky_angles_next(fz, *args) - fz_sky_prev = calc_fz_sky(*psi_z1) + psi_z1 = _ground_sky_angles_next(fz, *args) + fz_sky_prev = _calc_fz_sky(*psi_z1) fz1_sky_prev = [] next_row = 0.0 # loop over rows by subtracting 1.0 to fz until next_row < ceil(fz1_limit) @@ -405,7 +404,7 @@ def ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): next_row += 1.0 # calculate the view factor of the sky from the ground at point z fz_sky = ( - calc_fz_sky(*psi_z) # current row + _calc_fz_sky(*psi_z) # current row + np.sum(fz0_sky_next, axis=0) # sum of all next rows + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows # we just need one row, fz in range [0, 1] @@ -434,7 +433,7 @@ def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): """ args = gcr, height, tilt, pitch # calculate the view factor of the diffuse sky from the ground between rows - z_star, fz_sky = ground_sky_diffuse_view_factor(*args, npoints=npoints) + z_star, fz_sky = _ground_sky_diffuse_view_factor(*args, npoints=npoints) # calculate the integrated view factor for all of the ground between rows fgnd_sky = np.trapz(fz_sky, z_star) @@ -486,7 +485,7 @@ def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): return fskyz, fgnd_pv -def diffuse_fraction(ghi, dhi): +def _diffuse_fraction(ghi, dhi): """ ratio of DHI to GHI @@ -899,13 +898,13 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, """ # calculate solar projection - tan_phi = solar_projection_tangent( + tan_phi = utils.solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) # fraction of ground illuminated accounting from shade from panels - f_gnd_beam = unshaded_ground_fraction(gcr, tilt, system_azimuth, - solar_zenith, solar_azimuth) + f_gnd_beam = utils.unshaded_ground_fraction(gcr, tilt, system_azimuth, + solar_zenith, solar_azimuth) # diffuse fraction - df = diffuse_fraction(ghi, dhi) + df = _diffuse_fraction(ghi, dhi) #TODO: move to bifacial.util # view factor from the ground in between infinite central rows to the sky vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index efd3f94ec2..5854b02435 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -77,13 +77,13 @@ def test__gcr_prime(): PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 -def test_ground_sky_angles(): +def test__ground_sky_angles(): assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) # check limit at x=0, these are the same as the back edge of the row beyond assert np.allclose( - infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) + infinite_sheds._ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) assert np.allclose( - infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) + infinite_sheds._ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) FZ0_LIMIT = 1.4619022000815438 # infinite_sheds.f_z0_limit(*ARGS) @@ -91,24 +91,24 @@ def test_ground_sky_angles(): PSI_TOP = 0.3120297392978313 -def test_ground_sky_angles_prev(): +def test__ground_sky_angles_prev(): if HEIGHT > 0: # check limit at z=0, these are the same as z=1 of the previous row assert np.allclose( - infinite_sheds.ground_sky_angles_prev(0, *ARGS), + infinite_sheds._ground_sky_angles_prev(0, *ARGS), (PSI_0_X1, PSI_1_X1)) # check limit at z=z0_limit, angles must sum to 180 assert np.isclose( - sum(infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), + sum(infinite_sheds._ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), np.pi) # directly under panel, angle should be 90 straight upward! z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) assert np.isclose( - infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], + infinite_sheds._ground_sky_angles_prev(z_panel, *ARGS)[1], np.pi / 2.) # angles must be the same as psi_top assert np.isclose( - infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], + infinite_sheds._ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], PSI_TOP) @@ -117,29 +117,29 @@ def test_ground_sky_angles_prev(): PSI_TOP_BACK = 0.11582480672702507 -def test_ground_sky_angles_next(): +def test__ground_sky_angles_next(): if HEIGHT > 0: # check limit at z=1, these are the same as z=0 of the next row beyond assert np.allclose( - infinite_sheds.ground_sky_angles_next(1, *ARGS), + infinite_sheds._ground_sky_angles_next(1, *ARGS), (PSI_0_X0, PSI_1_X0)) # check limit at zprime=z1_limit, angles must sum to 180 sum_angles_z1_limit = sum( - infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) + infinite_sheds._ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) assert np.isclose(sum_angles_z1_limit, np.pi) # directly under panel, angle should be 90 straight upward! z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) assert np.isclose( - infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], + infinite_sheds._ground_sky_angles_next(z_panel, *ARGS)[0], np.pi / 2.) # angles must be the same as psi_top assert np.isclose( - infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], + infinite_sheds._ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], PSI_TOP_BACK) -def test_diffuse_fraction(): - df = infinite_sheds.diffuse_fraction(GHI, DHI) +def test__diffuse_fraction(): + df = infinite_sheds._diffuse_fraction(GHI, DHI) assert np.allclose(df, DF, equal_nan=True) From 60ed92615221565b4552bb2c6817b06dd3b9cfa2 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 12 Nov 2021 15:25:18 -0700 Subject: [PATCH 046/115] move more functions to private --- pvlib/bifacial/infinite_sheds.py | 89 +++++++-------------- pvlib/tests/bifacial/test_infinite_sheds.py | 26 +++--- 2 files changed, 44 insertions(+), 71 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index c1edfbc321..cf7b985523 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -240,7 +240,7 @@ def _f_z0_limit(gcr, height, tilt, pitch): between previous rows, where the angle :math:`\\psi` is tangent to both the top and bottom of panels. """ - tan_psi_t_x0 = sky_angle_tangent(gcr, tilt, 0.0) + tan_psi_t_x0 = _sky_angle_tangent(gcr, tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) return height/pitch * (1/np.tan(tilt) + 1/tan_psi_t_x0) @@ -322,7 +322,7 @@ def _f_z1_limit(gcr, height, tilt, pitch): visible between the next rows, where the angle :math:`\\psi` is tangent to both the top and bottom of panels. """ - tan_psi_t_x1 =sky_angle_tangent(gcr, np.pi - tilt, 0.0) + tan_psi_t_x1 = _sky_angle_tangent(gcr, np.pi - tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) @@ -412,8 +412,8 @@ def _ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): return fz_row, np.interp(fz_row, fz, fz_sky) -# TODO: move to util -def vf_ground_sky(gcr, height, tilt, pitch, npoints=100): +# TODO: move to util? +def _vf_ground_sky(gcr, height, tilt, pitch, npoints=100): """ Integrated view factor from the ground in between central rows of the sky. @@ -475,7 +475,7 @@ def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): psi_x_bottom = 0.0 else: # how far on the ground can the point x see? - psi_x_bottom, _ = ground_angle(gcr, tilt, fx) + psi_x_bottom, _ = _ground_angle(gcr, tilt, fx) # max angle from pv surface perspective psi_max = tilt - psi_x_bottom @@ -504,7 +504,7 @@ def _diffuse_fraction(ghi, dhi): return dhi/ghi -def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): +def _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ transposed ground reflected diffuse component adjusted for ground illumination AND accounting for infinite adjacent rows in both directions @@ -542,7 +542,7 @@ def poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) -def sky_angle(gcr, tilt, f_x): +def _sky_angle(gcr, tilt, f_x): """ angle from shade line to top of next row @@ -570,7 +570,7 @@ def sky_angle(gcr, tilt, f_x): return psi_top, tan_psi_top -def sky_angle_tangent(gcr, tilt, x): +def _sky_angle_tangent(gcr, tilt, x): """ tangent of angle from a point x along the module slant height to the top of the previous row. @@ -609,35 +609,8 @@ def sky_angle_tangent(gcr, tilt, x): y = 1.0 - x return y * np.sin(tilt) / (1/gcr - y * np.cos(tilt)) -#TODO: delete, replaced by sky_angle_tangent -# def sky_angle_0_tangent(gcr, tilt): -# """ -# tangent of angle to top of next row with no shade (shade line at bottom) so -# :math:`F_x = 0` -# .. math:: - -# \\tan{\\psi_t\\left(x=0\\right)} = \\frac{\\text{GCR} \\sin{\\beta}} -# {1 - \\text{GCR} \\cos{\\beta}} - -# Parameters -# ---------- -# gcr : numeric -# ratio of module length to row spacing -# tilt : numeric -# angle of surface normal from vertical in radians - -# Returns -# ------- -# tan_psi_top_0 : numeric -# tangent angle from bottom, ``x = 0``, to top of next row -# """ -# # f_y = 1 b/c x = 0, so f_x = 0 -# # tan psi_t0 = GCR * sin(tilt) / (1 - GCR * cos(tilt)) -# return sky_angle_tangent(gcr, tilt, 0.0) - - -def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): +def _f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): """ view factors of sky from shaded and unshaded parts of PV module @@ -689,7 +662,7 @@ def f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): return f_sky_pv_shade, f_sky_pv_noshade -def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): +def _poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): """ Sky diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. @@ -713,7 +686,7 @@ def poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): return poa_sky_diffuse * (f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) -def ground_angle(gcr, tilt, f_x): +def _ground_angle(gcr, tilt, f_x): """ angle from shadeline to bottom of adjacent row @@ -741,7 +714,7 @@ def ground_angle(gcr, tilt, f_x): return psi_bottom, tan_psi_bottom -def ground_angle_tangent(gcr, tilt, f_x): +def _ground_angle_tangent(gcr, tilt, f_x): """ tangent of angle from shadeline to bottom of adjacent row @@ -768,7 +741,7 @@ def ground_angle_tangent(gcr, tilt, f_x): f_x * np.cos(tilt) + 1/gcr) -def ground_angle_1_tangent(gcr, tilt): +def _ground_angle_1_tangent(gcr, tilt): """ tangent of angle to bottom of next row with all shade (shade line at top) so :math:`F_x = 1` @@ -790,10 +763,10 @@ def ground_angle_1_tangent(gcr, tilt): tangent of angle to bottom of next row with all shade (shade line at top) """ - return ground_angle_tangent(gcr, tilt, 1.0) + return _ground_angle_tangent(gcr, tilt, 1.0) -def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): +def _f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): """ view factors of ground from shaded and unshaded parts of PV module @@ -840,7 +813,7 @@ def f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): return f_gnd_pv_shade, f_gnd_pv_noshade -def poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): +def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): """ Ground diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. @@ -860,17 +833,17 @@ def poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x*f_gnd_pv_shade + (1 - f_x)*f_gnd_pv_noshade) -def poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): +def _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): """diffuse incident on PV surface from sky and ground""" return poa_gnd_pv + poa_sky_pv -def poa_direct_pv(poa_direct, iam, f_x): +def _poa_direct_pv(poa_direct, iam, f_x): """direct incident on PV surface""" return poa_direct * iam * (1 - f_x) -def poa_global_pv(poa_dir_pv, poa_dif_pv): +def _poa_global_pv(poa_dir_pv, poa_dif_pv): """global incident on PV surface""" return poa_dir_pv + poa_dif_pv @@ -910,30 +883,30 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels # considering the fraction of ground blocked by infinite adjacent rows - poa_gnd_sky = poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) + poa_gnd_sky = _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) # fraction of panel shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, tilt, system_azimuth, gcr) # angles from shadeline to top of next row - tan_psi_top = sky_angle_tangent(gcr, tilt, f_x) + tan_psi_top = _sky_angle_tangent(gcr, tilt, f_x) # angles from tops of next row to bottom of current row - tan_psi_top_0 = sky_angle_tangent(gcr, tilt, 0.0) + tan_psi_top_0 = _sky_angle_tangent(gcr, tilt, 0.0) # fraction of sky visible from shaded and unshaded parts of PV surfaces - f_sky_pv_shade, f_sky_pv_noshade = f_sky_diffuse_pv( + f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( tilt, tan_psi_top, tan_psi_top_0) # total sky diffuse incident on plane of array - poa_sky_pv = poa_sky_diffuse_pv( + poa_sky_pv = _poa_sky_diffuse_pv( poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) # angles from shadeline to bottom of next row - tan_psi_bottom = ground_angle_tangent(gcr, tilt, f_x) - tan_psi_bottom_1 = ground_angle_1_tangent(gcr, tilt) - f_gnd_pv_shade, f_gnd_pv_noshade = f_ground_pv( + tan_psi_bottom = _ground_angle_tangent(gcr, tilt, f_x) + tan_psi_bottom_1 = _ground_angle_1_tangent(gcr, tilt) + f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv( tilt, tan_psi_bottom, tan_psi_bottom_1) - poa_gnd_pv = poa_ground_pv( + poa_gnd_pv = _poa_ground_pv( poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) - poa_dif_pv = poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) - poa_dir_pv = poa_direct_pv(poa_direct, iam, f_x) - poa_glo_pv = poa_global_pv(poa_dir_pv, poa_dif_pv) + poa_dif_pv = _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) + poa_dir_pv = _poa_direct_pv(poa_direct, iam, f_x) + poa_glo_pv = _poa_global_pv(poa_dir_pv, poa_dif_pv) output = OrderedDict( poa_global_pv=poa_glo_pv, poa_direct_pv=poa_dir_pv, poa_diffuse_pv=poa_dif_pv, poa_ground_diffuse_pv=poa_gnd_pv, diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 5854b02435..2ee9af92a3 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -167,51 +167,51 @@ def test__diffuse_fraction(): 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) -def test_vf_ground_sky(): - vf_gnd_sky, fz_sky = infinite_sheds.vf_ground_sky(*ARGS) +def test__vf_ground_sky(): + vf_gnd_sky, fz_sky = infinite_sheds._vf_ground_sky(*ARGS) assert np.isclose(vf_gnd_sky, VF_GND_SKY) assert np.allclose(fz_sky, FZ_SKY) -def test_poa_ground_sky(): +def test__poa_ground_sky(): # front side - poa_gnd_sky_f = infinite_sheds.poa_ground_sky( + poa_gnd_sky_f = infinite_sheds._poa_ground_sky( TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) # CSV file decimals are truncated assert np.allclose( poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) # backside - poa_gnd_sky_b = infinite_sheds.poa_ground_sky( + poa_gnd_sky_b = infinite_sheds._poa_ground_sky( TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) -def test_sky_angles(): +def test__sky_angle(): # frontside - psi_top_f, tan_psi_top_f = infinite_sheds.sky_angle( + psi_top_f, tan_psi_top_f = infinite_sheds._sky_angle( GCR, TILT_RAD, TESTDATA.Fx_f) assert np.allclose(psi_top_f, TESTDATA.psi_top_f) assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - psi_top_b, tan_psi_top_b = infinite_sheds.sky_angle( + psi_top_b, tan_psi_top_b = infinite_sheds._sky_angle( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) assert np.allclose(psi_top_b, TESTDATA.psi_top_b) assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) -def test_sky_angle_tangent(): +def test__sky_angle_tangent(): # frontside - tan_psi_top_f = infinite_sheds.sky_angle_tangent( + tan_psi_top_f = infinite_sheds._sky_angle_tangent( GCR, TILT_RAD, TESTDATA.Fx_f) assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) # backside - tan_psi_top_b = infinite_sheds.sky_angle_tangent( + tan_psi_top_b = infinite_sheds._sky_angle_tangent( GCR, BACK_TILT_RAD, TESTDATA.Fx_b) assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - tan_psi_top_f = infinite_sheds.sky_angle_tangent(GCR, TILT_RAD, 0.0) + tan_psi_top_f = infinite_sheds._sky_angle_tangent(GCR, TILT_RAD, 0.0) assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) # backside - tan_psi_top_b = infinite_sheds.sky_angle_tangent( + tan_psi_top_b = infinite_sheds._sky_angle_tangent( GCR, BACK_TILT_RAD, 0.0) assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) From 0d088dbfd5028f94b003989696ded01a4276da31 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 16 Nov 2021 12:53:39 -0700 Subject: [PATCH 047/115] update test_utils.py --- pvlib/tests/bifacial/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 7ff61c5e4e..167e35d99b 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -13,7 +13,7 @@ TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') -def solar_projection_tangent(): +def test_solar_projection_tangent(): tan_phi_f = utils.solar_projection_tangent( 30, 150, 180) tan_phi_b = utils.solar_projection_tangent( From e689377c4fc641c259f4e82496d0f844b41bb548 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 16 Nov 2021 15:40:44 -0700 Subject: [PATCH 048/115] linting --- pvlib/tests/bifacial/test_infinite_sheds.py | 12 ------------ pvlib/tests/bifacial/test_utils.py | 3 +-- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 2ee9af92a3..d77071d2dc 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -5,7 +5,6 @@ import os import numpy as np import pandas as pd -import pvlib from pvlib.bifacial import infinite_sheds @@ -216,17 +215,6 @@ def test__sky_angle_tangent(): assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) -#TODO: delete, function replaced by sky_angle_tangent -# def test_sky_angle_0_tangent(): -# # frontside -# tan_psi_top_f = infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) -# assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) -# # backside -# tan_psi_top_b = infinite_sheds.sky_angle_0_tangent( -# GCR, BACK_TILT_RAD) -# assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) - - if __name__ == '__main__': from matplotlib import pyplot as plt plt.ion() diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 167e35d99b..a35329429e 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -30,8 +30,7 @@ def test_solar_projection_tangent(): (np.sqrt(2) / 2, 45, 180, 45, 90, 0.5), (np.sqrt(2) / 2, 45, 180, 45, 0, 1.0), (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), - ] - ) + ]) def test_unshaded_ground_fraction( gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, expected): From 3e45cd4123a23cb2dd9afa89ebf444bb2160198e Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 16 Nov 2021 15:41:19 -0700 Subject: [PATCH 049/115] tilt to surface_tilt, docstring work --- pvlib/bifacial/infinite_sheds.py | 341 ++++++++++++++++++++----------- pvlib/bifacial/utils.py | 10 +- 2 files changed, 229 insertions(+), 122 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index cf7b985523..0e8ee68aaa 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -37,7 +37,7 @@ 7. Treat the first and last row differently, because they aren't blocked on the front side for 1st row, or the backside for last row. -#TODO: explain geometry: primary axes and orientation, what is meant by +# TODO: explain geometry: primary axes and orientation, what is meant by "previous" and "next rows", etc. @@ -73,9 +73,8 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): height : numeric height of module lower edge above the ground surface_tilt : numeric - Surface tilt angle in decimal degrees. The tilt angle is defined as - degrees from horizontal, e.g., surface facing up = 0, surface facing - horizon = 90. + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing @@ -94,17 +93,20 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # : \ \ h = height above ground # : \ tilt \ : # +----------\<---------P----------->\---- ground - #TODO convert to degrees - return gcr + height / np.sin(surface_tilt) / pitch + # TODO convert to degrees + return gcr + height / sind(surface_tilt) / pitch # TODO: overlaps with ground_sky_angles_prev in that both return # angle to top of previous row. Could the three ground_sky_angle_xxx functions # be combined and handle the cases of points behind the "previous" row or ahead # of the next row? -def _ground_sky_angles(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): """ Angles from point z on ground to tops of next and previous rows. + + The point z lies between the extension to the ground of the previous row + and the extension to the ground of the next row. .. math:: \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} @@ -121,18 +123,30 @@ def _ground_sky_angles(f_z, gcr, height, tilt, pitch): ground coverage ratio, ratio of row slant length to row spacing height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing Returns ------- - + psi_0 : numeric + Angle from horizontal of the line between a point on the ground and + the top of the previous row. [degree] + psi_1 : numeric + Angle from horizontal of the line between a point on the ground and + the top of the next row. [degree] + Notes ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. + + See Also + -------- + _ground_sky_angles_prev + _ground_sky_angles_next """ @@ -147,24 +161,31 @@ def _ground_sky_angles(f_z, gcr, height, tilt, pitch): # +----------\<---------P----*+----->\---- ground # 1<-----1-fz-----><--fz--0---- fraction of ground - gcr_prime = _gcr_prime(gcr, height, tilt, pitch) - tilt_prime = np.pi - tilt - opposite_side = np.sin(tilt_prime) - adjacent_side = f_z/gcr_prime + np.cos(tilt_prime) + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) + tilt_prime = 180. - surface_tilt + opposite_side = sind(tilt_prime) + adjacent_side = f_z/gcr_prime + cosd(tilt_prime) # tan_psi_0 = opposite_side / adjacent_side - psi_0 = np.arctan2(opposite_side, adjacent_side) + psi_0 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) f_z_prime = 1 - f_z - opposite_side = np.sin(tilt) - adjacent_side = f_z_prime/gcr_prime + np.cos(tilt) + opposite_side = np.sin(surface_tilt) + adjacent_side = f_z_prime/gcr_prime + cosd(surface_tilt) # tan_psi_1 = opposite_side / adjacent_side - psi_1 = np.arctan2(opposite_side, adjacent_side) + psi_1 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) return psi_0, psi_1 -def _ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): """ - Angles from point z on ground to top and bottom of previous rows beyond the - current row. + Angles from point z on ground to bottom of previous row and to the top of + the row beyond the previous row. + + The point z lies between the extension to the ground of the previous row + and the extension to the ground of the next row. + + The function _ground_sky_angles_prev applies when the sky is visible + between the bottom of the previous row, and the top of the row in front + of the previous row. .. math:: @@ -183,14 +204,31 @@ def _ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - The sky is visible between rows beyond the current row. Therefore, we need - to calculate the angles :math:`\\psi_0` and :math:`\\psi_1` to the top and - bottom of the previous row. + Returns + ------- + psi_0 : numeric + Angle from horizontal of the line between a point on the ground and + the bottom of the previous row. [degree] + psi_1 : numeric + Angle from horizontal of the line between a point on the ground and + the top of the row in front of the previous row. [degree] + + Notes + ----- + Assuming the first row is in the front of the array then previous rows are + toward the front of the array and next rows are toward the back. + + See Also + -------- + _ground_sky_angles + _ground_sky_angles_next + """ # : \\ | *\\ top of previous row @@ -204,20 +242,20 @@ def _ground_sky_angles_prev(f_z, gcr, height, tilt, pitch): # +---+*-----\<---------P----------->\---- ground # <-1+fz-1<---------fz=1---------0---- fraction of ground - gcr_prime = _gcr_prime(gcr, height, tilt, pitch) - tilt_prime = np.pi - tilt + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) + tilt_prime = 180. - surface_tilt # angle to top of previous panel beyond the current row - psi_0 = np.arctan2( - np.sin(tilt_prime), (1+f_z)/gcr_prime + np.cos(tilt_prime)) + psi_0 = np.rad2deg(np.arctan2( + sind(tilt_prime), (1+f_z)/gcr_prime + cosd(tilt_prime))) # angle to bottom of previous panel z = f_z*pitch # other forms raise division by zero errors # avoid division by zero errors - psi_1 = np.arctan2(height, height/np.tan(tilt) - z) + psi_1 = np.rad2deg(np.arctan2(height, height/tand(surface_tilt) - z)) return psi_0, psi_1 -def _f_z0_limit(gcr, height, tilt, pitch): +def _f_z0_limit(gcr, height, surface_tilt, pitch): """ Limit from the ground where sky is visible between previous rows. @@ -231,24 +269,35 @@ def _f_z0_limit(gcr, height, tilt, pitch): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - The point on the ground, :math:`z_0`, from which the sky is still visible - between previous rows, where the angle :math:`\\psi` is tangent to both the - top and bottom of panels. + Returns + ------- + z1 : numeric + The point on the ground, :math:`z_0`, which is on the line + tangent to the bottom of the previous row and the top of the row in + front of the previous row. """ - tan_psi_t_x0 = _sky_angle_tangent(gcr, tilt, 0.0) + tan_psi_t_x0 = _sky_angle_tangent(gcr, surface_tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) - return height/pitch * (1/np.tan(tilt) + 1/tan_psi_t_x0) + return height / pitch * (1. / tand(surface_tilt) + 1. / tan_psi_t_x0) -def _ground_sky_angles_next(f_z, gcr, height, tilt, pitch): +def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): """ - Angles from point z on the ground to top and bottom of next row beyond - current row. + Angles from point z on the ground to bottom of the next row and to the top + of the row behind the next row. + + The point z lies between the extension to the ground of the previous row + and the extension to the ground of the next row. + + The function _ground_sky_angles_next applies when the sky is visible + between the bottom of the next row, and the top of the row behind + of the next row. .. math:: \\tan \\psi_0 = \\frac{h}{\\frac{h}{\\tan\\beta^\\prime} @@ -265,43 +314,62 @@ def _ground_sky_angles_next(f_z, gcr, height, tilt, pitch): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - The sky is visible between rows beyond the current row. Therefore, we need - to calculate the angles :math:`\\psi_0` and :math:`\\psi_1` to the top and - bottom of the next row. + Returns + ------- + psi_0 : numeric + Angle from horizontal of the line between a point on the ground and + the bottom of the previous row. [degree] + psi_1 : numeric + Angle from horizontal of the line between a point on the ground and + the top of the row in front of the previous row. [degree] + + Notes + ----- + Assuming the first row is in the front of the array then previous rows are + toward the front of the array and next rows are toward the back. + + See Also + -------- + _ground_sky_angles + _ground_sky_angles_prev + """ - # : \\+ \\ - # : \\ `*+ \\ - # next \\ `*+ \\ - # row \\ `*+ \\ next row bottom - # top....\\..............`*+.....\\_ + # : \\+ _ \\ + # : \\ `*+ - _ \\ + # next \\ `*+ _ \\ + # row \\ `*+ -_ \\ next row bottom + # top....\\..............`*+...-.\\_ # : \ `*+ \ -_ psi0 # : \ psi1 `*+ -_ # : \ \ `*+ _ # +----------\<---------P----------->\------*----- ground # 1<---------fz=1---------0-1-fz->----- fraction of ground - gcr_prime = _gcr_prime(gcr, height, tilt, pitch) - tilt_prime = np.pi - tilt + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) + tilt_prime = 180. - surface_tilt # angle to bottom of next panel - fzprime = 1-f_z + fzprime = 1 - f_z zprime = fzprime*pitch # other forms raise division by zero errors # avoid division by zero errors - psi_0 = np.arctan2(height, height/np.tan(tilt_prime) - zprime) + psi_0 = np.rad2deg(np.arctan2(height, height/tand(tilt_prime) - zprime)) # angle to top of next panel beyond the current row - psi_1 = np.arctan2(np.sin(tilt), (1+fzprime)/gcr_prime + np.cos(tilt)) + psi_1 = np.rad2deg(np.arctan2( + cosd(surface_tilt), (1 + fzprime)/gcr_prime + cosd(surface_tilt))) return psi_0, psi_1 -def _f_z1_limit(gcr, height, tilt, pitch): +def _f_z1_limit(gcr, height, surface_tilt, pitch): """ - Limit from the ground where sky is visible between the next rows. + Limit from the ground where sky is visible between the next row and the + row behind the next row. .. math:: F_{z1,limit} = \\frac{h}{P} \\left( @@ -313,18 +381,22 @@ def _f_z1_limit(gcr, height, tilt, pitch): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - The point on the ground, :math:`z_1^\\prime`, from which the sky is still - visible between the next rows, where the angle :math:`\\psi` is tangent to - both the top and bottom of panels. + Returns + ------- + z1 : numeric + The point on the ground, :math:`z_1^\\prime`, which is on the line + tangent to the bottom of the next row and the top of the row behind + the next row. """ - tan_psi_t_x1 = _sky_angle_tangent(gcr, np.pi - tilt, 0.0) + tan_psi_t_x1 = _sky_angle_tangent(gcr, 180. - surface_tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) - return height/pitch * (1/tan_psi_t_x1 - 1/np.tan(tilt)) + return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) def _calc_fz_sky(psi_0, psi_1): @@ -335,9 +407,9 @@ def _calc_fz_sky(psi_0, psi_1): Parameters ---------- psi_0 : numeric - angle from ground to sky before point "z" + angle from ground to sky before point "z". [degree] psi_1 : numeric - angle from ground to sky after point "z" + angle from ground to sky after point "z". [degree] Returns ------- @@ -345,15 +417,20 @@ def _calc_fz_sky(psi_0, psi_1): fraction of energy from the diffuse sky dome that is incident on the ground at point "z" """ - return (np.cos(psi_0) + np.cos(psi_1))/2 + return (cosd(psi_0) + cosd(psi_1)) / 2. +# TODO: move to util? # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row -def _ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): +def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, + npoints=100): """ - Calculate the fraction of diffuse irradiance from the sky incident on the - ground. + Calculate the view factor from each point on the ground between adjacent, + interior rows, to the sky. + + The view factor is equal to the fraction of sky hemisphere visible at each + point on the ground. Parameters ---------- @@ -361,24 +438,30 @@ def _ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - npoints : int - divide the ground into discrete points + npoints : int, default 100 + Number of points used to discretize distance along the ground. Returns ------- - + fz : ndarray + Fraction of distance from the previous row to the next row. [unitless] + fz_sky : ndarray + View factors at discrete points between adjacent, interior rows. + [unitless] + """ - args = gcr, height, tilt, pitch + args = gcr, height, surface_tilt, pitch fz0_limit = _f_z0_limit(*args) fz1_limit = _f_z1_limit(*args) # include extra space to account for sky visible from adjacent rows # divide ground between visible limits into 3x npoints fz = np.linspace( - 0.0 if (1-fz1_limit) > 0 else (1-fz1_limit), + 0.0 if (1 - fz1_limit) > 0 else (1 - fz1_limit), 1.0 if fz0_limit < 1 else fz0_limit, 3*npoints) # calculate the angles psi_0 and psi_1 that subtend the sky visible @@ -412,10 +495,10 @@ def _ground_sky_diffuse_view_factor(gcr, height, tilt, pitch, npoints=100): return fz_row, np.interp(fz_row, fz, fz_sky) -# TODO: move to util? -def _vf_ground_sky(gcr, height, tilt, pitch, npoints=100): +def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): """ - Integrated view factor from the ground in between central rows of the sky. + Integrated and per-point view factors from the ground to the sky at points + between interior rows of the array. Parameters ---------- @@ -423,26 +506,38 @@ def _vf_ground_sky(gcr, height, tilt, pitch, npoints=100): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing - npoints : int - divide the ground into discrete points + npoints : int, default 100 + Number of points used to discretize distance along the ground. + + Returns + ------- + fgnd_sky : float + Integration of view factors over the length between adjacent, interior + rows. [unitless] + fz : ndarray + Fraction of distance from the previous row to the next row. [unitless] + fz_sky : ndarray + View factors at discrete points between adjacent, interior rows. + [unitless] """ - args = gcr, height, tilt, pitch + args = gcr, height, surface_tilt, pitch # calculate the view factor of the diffuse sky from the ground between rows z_star, fz_sky = _ground_sky_diffuse_view_factor(*args, npoints=npoints) # calculate the integrated view factor for all of the ground between rows fgnd_sky = np.trapz(fz_sky, z_star) - return fgnd_sky, fz_sky + return fgnd_sky, z_star, fz_sky -#TODO: not used -def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): +# TODO: not used +def _calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): """ Calculate the fraction of diffuse irradiance from the sky, reflecting from the ground, incident at a point "x" on the PV surface. @@ -455,8 +550,9 @@ def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): ground coverage ratio height : numeric height of module lower edge above the ground - tilt : numeric - module tilt in radians, between 0 and 180-degrees + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing npoints : int @@ -466,7 +562,7 @@ def calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): # calculate the view factor of the diffuse sky from the ground between rows # and integrate the view factor for all of the ground between rows - fgnd_sky, _ = vf_ground_sky(*args, npoints=npoints) + fgnd_sky, _, _ = _vf_ground_sky(*args, npoints=npoints) # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, # and all of the ground is visible, so the view factor is just @@ -501,7 +597,7 @@ def _diffuse_fraction(ghi, dhi): df : numeric diffuse fraction """ - return dhi/ghi + return dhi / ghi def _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): @@ -550,8 +646,9 @@ def _sky_angle(gcr, tilt, f_x): ---------- gcr : numeric ratio of module length versus row spacing - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] f_x : numeric fraction of module shaded from bottom @@ -586,8 +683,9 @@ def _sky_angle_tangent(gcr, tilt, x): ---------- gcr : numeric ratio of row slant length to row spacing (pitch) - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] x : numeric fraction of module slant length from module bottom edge @@ -616,9 +714,10 @@ def _f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): Parameters ---------- - tilt : numeric - angle of surface normal from vertical in radians - tan_psi_top : numeric + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] + tan_psi_top : numeric tangent of angle from shade line to top of next row tan_psi_top_0 : numeric tangent of angle to top of next row with no shade (shade line at @@ -662,7 +761,8 @@ def _f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): return f_sky_pv_shade, f_sky_pv_noshade -def _poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade): +def _poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, + f_sky_pv_noshade): """ Sky diffuse POA from average view factor weighted by shaded and unshaded parts of the surface. @@ -694,8 +794,9 @@ def _ground_angle(gcr, tilt, f_x): ---------- gcr : numeric ratio of module length to row spacing - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade @@ -726,8 +827,9 @@ def _ground_angle_tangent(gcr, tilt, f_x): ---------- gcr : numeric ratio of module length to row spacing - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] f_x : numeric fraction of module shaded from bottom, ``f_x = 0`` if shade line at bottom and no shade, ``f_x = 1`` if shade line at top and all shade @@ -754,8 +856,9 @@ def _ground_angle_1_tangent(gcr, tilt): ---------- gcr : numeric ratio of module length to row spacing - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] Returns ------- @@ -772,8 +875,9 @@ def _f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): Parameters ---------- - tilt : numeric - angle of surface normal from vertical in radians + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] tan_psi_bottom : numeric tangent of angle from shade line to bottom of next row tan_psi_bottom_1 : numeric @@ -855,20 +959,23 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, return poa_global_front + poa_global_back * bifaciality * effects -#TODO: rename to pvlib.bifacial.infinite_sheds? -#TODO: not tested +# TODO: rename to pvlib.bifacial.infinite_sheds? +# TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, npoints=100, all_output=False): r""" Get irradiance from infinite sheds model. - + Parameters ---------- - + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] + Returns ------- - + """ # calculate solar projection tan_phi = utils.solar_projection_tangent( @@ -878,9 +985,9 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, solar_zenith, solar_azimuth) # diffuse fraction df = _diffuse_fraction(ghi, dhi) - #TODO: move to bifacial.util + # TODO: move to bifacial.util # view factor from the ground in between infinite central rows to the sky - vf_gnd_sky, _ = vf_ground_sky(gcr, height, tilt, pitch, npoints) + vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, tilt, pitch, npoints) # diffuse from sky reflected from ground accounting from shade from panels # considering the fraction of ground blocked by infinite adjacent rows poa_gnd_sky = _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 2e62816915..86abb89607 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -6,7 +6,7 @@ from pvlib.tools import sind, cosd, tand -#TODO: make private? +# TODO: make private? def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ Calculate tangent of angle between sun vector projected to the YZ-plane @@ -28,11 +28,11 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Returns ------- tan_phi : numeric - Tangent of the angle between vertical and the projection of the + Tangent of the angle between vertical and the projection of the sun direction onto the YZ plane. """ rotation = solar_azimuth - system_azimuth - #TODO: I don't think tan_phi should ever be negative, but it could be if + # TODO: I don't think tan_phi should ever be negative, but it could be if # rotation > 90 (e.g. sun north of along-row azimuth) tan_phi = cosd(rotation) * tand(solar_zenith) return tan_phi @@ -71,9 +71,9 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, f_gnd_beam : numeric Fraction of row pitch that is illuminated (unshaded). """ - #TODO: why np.abs? All angles should be <=90 + # TODO: why np.abs? All angles should be <=90 tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) - return f_gnd_beam # 1 - min(1, abs()) < 1 always \ No newline at end of file + return f_gnd_beam # 1 - min(1, abs()) < 1 always From 80cd517cfaef879dbaef32bea127301417036fff Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 17 Nov 2021 13:01:54 -0700 Subject: [PATCH 050/115] consolidate some functions, docstring work --- pvlib/bifacial/infinite_sheds.py | 229 ++++++++++--------------------- 1 file changed, 76 insertions(+), 153 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 0e8ee68aaa..434e53bc94 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -282,7 +282,7 @@ def _f_z0_limit(gcr, height, surface_tilt, pitch): tangent to the bottom of the previous row and the top of the row in front of the previous row. """ - tan_psi_t_x0 = _sky_angle_tangent(gcr, surface_tilt, 0.0) + _, tan_psi_t_x0 = _sky_angle(gcr, surface_tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) return height / pitch * (1. / tand(surface_tilt) + 1. / tan_psi_t_x0) @@ -394,7 +394,7 @@ def _f_z1_limit(gcr, height, surface_tilt, pitch): tangent to the bottom of the next row and the top of the row behind the next row. """ - tan_psi_t_x1 = _sky_angle_tangent(gcr, 180. - surface_tilt, 0.0) + tan_psi_t_x1 = _sky_angle(gcr, 180. - surface_tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) @@ -600,6 +600,7 @@ def _diffuse_fraction(ghi, dhi): return dhi / ghi +# TODO: docstring def _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ transposed ground reflected diffuse component adjusted for ground @@ -638,66 +639,32 @@ def _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) -def _sky_angle(gcr, tilt, f_x): +def _sky_angle(gcr, surface_tilt, x): """ - angle from shade line to top of next row + Angle from from a point x along the module slant height to the + top of the facing row. Parameters ---------- gcr : numeric - ratio of module length versus row spacing - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - f_x : numeric - fraction of module shaded from bottom - - Returns - ------- - psi_top : numeric - 4-quadrant arc-tangent in radians - tan_psi_top - tangent of angle from shade line to top of next row - """ - f_y = 1.0 - f_x - x1 = f_y * np.sin(tilt) - x2 = (1/gcr - f_y * np.cos(tilt)) - tan_psi_top = x1 / x2 - psi_top = np.arctan2(x1, x2) - return psi_top, tan_psi_top - - -def _sky_angle_tangent(gcr, tilt, x): - """ - tangent of angle from a point x along the module slant height to the - top of the previous row. - - .. math:: - - \\tan{\\psi_{top}} &= \\frac{y \\text{GCR} \\sin{\\beta}}{1 - y - \\text{GCR} \\cos{\\beta}} \\newline - - y &= 1 - x - - Parameters - ---------- - gcr : numeric - ratio of row slant length to row spacing (pitch) + Ratio of row slant length to row spacing (pitch). [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] x : numeric - fraction of module slant length from module bottom edge + Fraction of slant length from row bottom edge. [unitless] Returns ------- - tan_psi_top : numeric - tangent of angle from x to top of previous row + psi : numeric + Angle. [degree] + tan_psi + Tangent of angle. [unitless] """ # : \\ .*\\ # : \\ .-* \\ # : \\ .-* \\ - # : \\ . .*+ psi_t \\ previous row + # : \\ . .*+ psi \\ facing row # : \\.-*__________________ \\ # : \ ^ \ # : \ x \ @@ -705,44 +672,50 @@ def _sky_angle_tangent(gcr, tilt, x): # : \<---------P----------->\ y = 1.0 - x - return y * np.sin(tilt) / (1/gcr - y * np.cos(tilt)) + x1 = y * sind(surface_tilt) + x2 = (1/gcr - y * sind(surface_tilt)) + tan_psi_top = x1 / x2 + psi_top = np.rad2deg(np.arctan2(x1, x2)) + return psi_top, tan_psi_top -def _f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): +def _f_sky_diffuse_pv(surface_tilt, tan_psi_top, tan_psi_top_0): """ - view factors of sky from shaded and unshaded parts of PV module + View factors of the sky from the shaded and unshaded parts of the row slant + length. Parameters ---------- surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - tan_psi_top : numeric - tangent of angle from shade line to top of next row + tan_psi_top : numeric + Tangent of angle between horizontal and the line from the shade line + on the current row to the top of the facing row. [degree] tan_psi_top_0 : numeric - tangent of angle to top of next row with no shade (shade line at - bottom) + Tangent of angle between horizontal and the line from the bottom of the + current row to the top of the facing row. [degree] Returns ------- f_sky_pv_shade : numeric - view factor of sky from shaded part of PV surface + View factor from the shaded part of the row to the sky. [unitless] f_sky_pv_noshade : numeric - view factor of sky from unshaded part of PV surface + View factor from the unshaded part of the row to the sky. [unitless] Notes ----- Assuming the view factor various roughly linearly from the top to the - bottom of the rack, we can take the average to get integrated view factor. - We'll average the shaded and unshaded regions separately to improve the - approximation slightly. + bottom of the slant height, we can take the average to get integrated view + factor. We'll average the shaded and unshaded regions separately to improve + the approximation slightly. .. math :: \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos \\left(\\psi_t + \\beta \\right) + \\cos \\left(\\psi_t \\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} - The view factor from the top of the rack is one because it's view is not + The view factor from the top of the row is one because it's view is not obstructed. .. math:: @@ -750,11 +723,13 @@ def _f_sky_diffuse_pv(tilt, tan_psi_top, tan_psi_top_0): \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ # TODO: don't average, return fsky-pv vs. x point on panel - psi_top = np.arctan(tan_psi_top) - psi_top_0 = np.arctan(tan_psi_top_0) + tilt = np.deg2rad(surface_tilt) + psi_top = np.arctan(np.deg2rad(tan_psi_top)) + psi_top_0 = np.arctan(np.deg2rad(tan_psi_top_0)) f_sky_pv_shade = ( - (1 + (np.cos(psi_top + tilt) - + np.cos(psi_top_0 + tilt)) / 2) / (1 + np.cos(tilt))) + (1 + + (np.cos(psi_top + tilt) + np.cos(psi_top_0 + tilt)) + / 2 / (1 + np.cos(tilt)))) f_sky_pv_noshade = (1 + ( 1 + np.cos(psi_top + tilt)) / (1 + np.cos(tilt))) / 2 @@ -786,71 +761,10 @@ def _poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, return poa_sky_diffuse * (f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) -def _ground_angle(gcr, tilt, f_x): - """ - angle from shadeline to bottom of adjacent row - - Parameters - ---------- - gcr : numeric - ratio of module length to row spacing - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - f_x : numeric - fraction of module shaded from bottom, ``f_x = 0`` if shade line at - bottom and no shade, ``f_x = 1`` if shade line at top and all shade - - Returns - ------- - psi_bottom : numeric - 4-quadrant arc-tangent - tan_psi_bottom : numeric - tangent of angle from shade line to bottom of next row - """ - x1 = f_x * np.sin(tilt) - x2 = (f_x * np.cos(tilt) + 1/gcr) - tan_psi_bottom = x1 / x2 - psi_bottom = np.arctan2(x1, x2) - return psi_bottom, tan_psi_bottom - - -def _ground_angle_tangent(gcr, tilt, f_x): - """ - tangent of angle from shadeline to bottom of adjacent row - - .. math:: - \\tan{\\psi_b} = \\frac{F_x \\sin \\beta}{F_x \\cos \\beta + - \\frac{1}{\\text{GCR}}} - - Parameters - ---------- - gcr : numeric - ratio of module length to row spacing - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - f_x : numeric - fraction of module shaded from bottom, ``f_x = 0`` if shade line at - bottom and no shade, ``f_x = 1`` if shade line at top and all shade - - Returns - ------- - tan_psi_bottom : numeric - tangent of angle from shade line to bottom of next row - """ - return f_x * np.sin(tilt) / ( - f_x * np.cos(tilt) + 1/gcr) - - -def _ground_angle_1_tangent(gcr, tilt): +def _ground_angle(gcr, surface_tilt, x): """ - tangent of angle to bottom of next row with all shade (shade line at top) - so :math:`F_x = 1` - - .. math:: - \\tan{\\psi_b\\left(x=1\\right)} = \\frac{\\sin{\\beta}}{\\cos{\\beta} - + \\frac{1}{\\text{GCR}}} + Angle from horizontal to the line from a point x on the row slant length + to the bottom of the facing row. Parameters ---------- @@ -859,41 +773,49 @@ def _ground_angle_1_tangent(gcr, tilt): surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] + x : numeric + fraction of row slant length from bottom, ``x = 0`` is at the row + bottom, ``x = 1`` is at the top of the row. Returns ------- - tan_psi_bottom_1 : numeric - tangent of angle to bottom of next row with all shade (shade line at - top) + psi : numeric + Angle [degree]. + tan_psi : numeric + Tangent of angle [unitless] """ - return _ground_angle_tangent(gcr, tilt, 1.0) + x1 = x * sind(surface_tilt) + x2 = (x * cosd(surface_tilt) + 1/gcr) + tan_psi = x1 / x2 + psi = np.rad2deg(np.arctan2(x1, x2)) + return psi, tan_psi -def _f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): +def _f_ground_pv(surface_tilt, psi_shade, psi_bottom): """ - view factors of ground from shaded and unshaded parts of PV module + View factors of ground from shaded and unshaded parts of a row. Parameters ---------- surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - tan_psi_bottom : numeric - tangent of angle from shade line to bottom of next row - tan_psi_bottom_1 : numeric - tangent of angle to bottom of next row with all shade + psi_shade : numeric + Angle from shade line to bottom of facing row. [degree] + psi_bottom : numeric + Angle from row top to bottom of the facing row. [degree] Returns ------- f_gnd_pv_shade : numeric - view factor of ground from shaded part of PV surface + View factor of ground from shaded part of row. f_gnd_pv_noshade : numeric - view factor of ground from unshaded part of PV surface + View factor of ground from unshaded part of row. Notes ----- At the bottom of rack, :math:`x = 0`, the angle is zero, and the view - factor is one. + factor to the ground is one. .. math:: \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos @@ -907,13 +829,12 @@ def _f_ground_pv(tilt, tan_psi_bottom, tan_psi_bottom_1): \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} """ # TODO: don't average, return fgnd-pv vs. x point on panel - psi_bottom = np.arctan(tan_psi_bottom) - psi_bottom_1 = np.arctan(tan_psi_bottom_1) - f_gnd_pv_shade = (1 + (1 - np.cos(tilt - psi_bottom)) - / (1 - np.cos(tilt))) / 2 + f_gnd_pv_shade = 0.5 * (1 + (1 - cosd(surface_tilt - psi_shade)) + / (1 - cosd(surface_tilt))) f_gnd_pv_noshade = ( - (1 - (np.cos(tilt - psi_bottom) + np.cos(tilt - psi_bottom_1))/2) - / (1 - np.cos(tilt))) + (1 - (cosd(surface_tilt - psi_shade) + + cosd(surface_tilt - psi_bottom))/2) + / (1 - cosd(surface_tilt))) return f_gnd_pv_shade, f_gnd_pv_noshade @@ -960,6 +881,7 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, # TODO: rename to pvlib.bifacial.infinite_sheds? +# TODO: rework output to basics + optional # TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, @@ -995,9 +917,9 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, f_x = shaded_fraction(solar_zenith, solar_azimuth, tilt, system_azimuth, gcr) # angles from shadeline to top of next row - tan_psi_top = _sky_angle_tangent(gcr, tilt, f_x) + _, tan_psi_top = _sky_angle(gcr, tilt, f_x) # angles from tops of next row to bottom of current row - tan_psi_top_0 = _sky_angle_tangent(gcr, tilt, 0.0) + _, tan_psi_top_0 = _sky_angle(gcr, tilt, 0.0) # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( tilt, tan_psi_top, tan_psi_top_0) @@ -1005,10 +927,11 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, poa_sky_pv = _poa_sky_diffuse_pv( poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) # angles from shadeline to bottom of next row - tan_psi_bottom = _ground_angle_tangent(gcr, tilt, f_x) - tan_psi_bottom_1 = _ground_angle_1_tangent(gcr, tilt) + psi_shade, _ = _ground_angle(gcr, tilt, f_x) + # angles from top of row to bottom of facing row + psi_bottom, _ = _ground_angle(gcr, tilt, 1.0) f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv( - tilt, tan_psi_bottom, tan_psi_bottom_1) + tilt, psi_shade, psi_bottom) poa_gnd_pv = _poa_ground_pv( poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) poa_dif_pv = _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) @@ -1025,8 +948,8 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, sky_angle_tangent=tan_psi_top, sky_angle_0_tangent=tan_psi_top_0, f_sky_diffuse_pv_shade=f_sky_pv_shade, f_sky_diffuse_pv_noshade=f_sky_pv_noshade, - ground_angle_tangent=tan_psi_bottom, - ground_angle_1_tangent=tan_psi_bottom_1, + ground_angle=psi_shade, + ground_angle_bottom=psi_bottom, f_ground_diffuse_pv_shade=f_gnd_pv_shade, f_ground_diffuse_pv_noshade=f_gnd_pv_noshade) if isinstance(poa_glo_pv, pd.Series): From 974477697a10b6cad4eeae837ae541dfd3266a11 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 18 Nov 2021 14:08:36 -0700 Subject: [PATCH 051/115] sky diffuse view factors --- pvlib/bifacial/infinite_sheds.py | 108 ++++++++++++++++--------------- pvlib/bifacial/utils.py | 7 +- 2 files changed, 61 insertions(+), 54 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 434e53bc94..71532e6028 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -399,6 +399,8 @@ def _f_z1_limit(gcr, height, surface_tilt, pitch): return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) +# TODO: make sure that it is clear psi_1 is a supplement (angle from negative +# x axis) def _calc_fz_sky(psi_0, psi_1): """ Calculate the view factor for point "z" on the ground to the visible @@ -588,9 +590,9 @@ def _diffuse_fraction(ghi, dhi): Parameters ---------- ghi : numeric - global horizontal irradiance (GHI) in W/m^2 + Global horizontal irradiance (GHI). [W/m^2] dhi : numeric - diffuse horizontal irradiance (DHI) in W/m^2 + Diffuse horizontal irradiance (DHI). [W/m^2] Returns ------- @@ -679,86 +681,90 @@ def _sky_angle(gcr, surface_tilt, x): return psi_top, tan_psi_top -def _f_sky_diffuse_pv(surface_tilt, tan_psi_top, tan_psi_top_0): +def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): """ - View factors of the sky from the shaded and unshaded parts of the row slant - length. + Integrated view factors of the sky from the shaded and unshaded parts of + the row slant height. Parameters ---------- + gcr : numeric + Ratio of row slant length to row spacing (pitch). [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - tan_psi_top : numeric - Tangent of angle between horizontal and the line from the shade line - on the current row to the top of the facing row. [degree] - tan_psi_top_0 : numeric - Tangent of angle between horizontal and the line from the bottom of the - current row to the top of the facing row. [degree] + shade_line : numeric + Fraction of row slant height shaded from the bottom of the row. + npoints : int, default 100 + Number of points for integration. [unitless] Returns ------- f_sky_pv_shade : numeric - View factor from the shaded part of the row to the sky. [unitless] + Integrated view factor from the shaded part of the row to the sky. + [unitless] f_sky_pv_noshade : numeric - View factor from the unshaded part of the row to the sky. [unitless] + Integrated view factor from the unshaded part of the row to the sky. + [unitless] Notes ----- - Assuming the view factor various roughly linearly from the top to the - bottom of the slant height, we can take the average to get integrated view - factor. We'll average the shaded and unshaded regions separately to improve - the approximation slightly. + The view factor at a point x along the row slant height is given by .. math :: - \\large{F_{sky \\rightarrow shade} = \\frac{ 1 + \\frac{\\cos - \\left(\\psi_t + \\beta \\right) + \\cos \\left(\\psi_t - \\left(x=0\\right) + \\beta \\right)}{2} }{ 1 + \\cos \\beta}} + \\large{f_{sky} = \frac{1}{2} \\left(\\cos\\left(\\psi_t\\right) + + \\cos \\left(\\beta\\right) \\right) - The view factor from the top of the row is one because it's view is not - obstructed. + where :math:`\\psi_t` is the angle from horizontal of the line from point + x to the top of the facing row, and :math:`\\beta` is the surface tilt. + + View factors are integrated over shaded and unshaded portions of the row + slant height. + + See Also + -------- + _sky_angle - .. math:: - \\large{F_{sky \\rightarrow no\\ shade} = \\frac{1 + \\frac{1 + - \\cos \\left(\\psi_t + \\beta \\right)}{1 + \\cos \\beta} }{2}} """ - # TODO: don't average, return fsky-pv vs. x point on panel - tilt = np.deg2rad(surface_tilt) - psi_top = np.arctan(np.deg2rad(tan_psi_top)) - psi_top_0 = np.arctan(np.deg2rad(tan_psi_top_0)) - f_sky_pv_shade = ( - (1 + - (np.cos(psi_top + tilt) + np.cos(psi_top_0 + tilt)) - / 2 / (1 + np.cos(tilt)))) - - f_sky_pv_noshade = (1 + ( - 1 + np.cos(psi_top + tilt)) / (1 + np.cos(tilt))) / 2 + cst = cosd(surface_tilt) + # shaded portion + x = np.linspace(0, shade_line, npoints) + psi_t_shaded = _sky_angle(gcr, surface_tilt, x) + y = 0.5 * (cosd(psi_t_shaded) + cst) + # integrate view factors from each point in the discretization. This is an + # improvement over the algorithm described in [2] + f_sky_pv_shade = np.trapz(y, x) + # unshaded portion + x = np.linspace(shade_line, 1, npoints) + psi_t_unshaded = _sky_angle(gcr, surface_tilt, x) + y = 0.5 * (cosd(psi_t_unshaded) + cst) + f_sky_pv_noshade = np.trapz(y, x) return f_sky_pv_shade, f_sky_pv_noshade -def _poa_sky_diffuse_pv(poa_sky_diffuse, f_x, f_sky_pv_shade, - f_sky_pv_noshade): +def _poa_sky_diffuse_pv(dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade): """ - Sky diffuse POA from average view factor weighted by shaded and unshaded - parts of the surface. + Sky diffuse POA from integrated view factors combined for both shaded and + unshaded parts of the surface. Parameters ---------- - poa_sky_diffuse : numeric - sky diffuse irradiance on the plane of array (W/m^2) + dhi : numeric + Diffuse horizontal irradiance (DHI). [W/m^2] f_x : numeric - shade line fraction from bottom of module + Fraction of row slant height shaded from the bottom of the row. + [unitless] f_sky_pv_shade : numeric - fraction of sky visible from shaded part of PV surface + Fraction of sky visible from shaded part of PV surface. [unitless] f_sky_pv_noshade : numeric - fraction of sky visible from unshaded part of PV surface + Fraction of sky visible from unshaded part of PV surface. [unitless] Returns ------- poa_sky_diffuse_pv : numeric - total sky diffuse irradiance incident on PV surface + Total sky diffuse irradiance incident on PV surface. [W/m^2] """ - return poa_sky_diffuse * (f_x*f_sky_pv_shade + (1 - f_x)*f_sky_pv_noshade) + return dhi * (f_x * f_sky_pv_shade + (1 - f_x) * f_sky_pv_noshade) def _ground_angle(gcr, surface_tilt, x): @@ -785,7 +791,7 @@ def _ground_angle(gcr, surface_tilt, x): Tangent of angle [unitless] """ x1 = x * sind(surface_tilt) - x2 = (x * cosd(surface_tilt) + 1/gcr) + x2 = (x * cosd(surface_tilt) + 1 / gcr) tan_psi = x1 / x2 psi = np.rad2deg(np.arctan2(x1, x2)) return psi, tan_psi @@ -922,10 +928,10 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, _, tan_psi_top_0 = _sky_angle(gcr, tilt, 0.0) # fraction of sky visible from shaded and unshaded parts of PV surfaces f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( - tilt, tan_psi_top, tan_psi_top_0) - # total sky diffuse incident on plane of array + gcr, tilt, f_x) + # total sky diffuse over both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( - poa_sky_diffuse, f_x, f_sky_pv_shade, f_sky_pv_noshade) + dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade) # angles from shadeline to bottom of next row psi_shade, _ = _ground_angle(gcr, tilt, f_x) # angles from top of row to bottom of facing row diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 86abb89607..b8f80643f9 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -9,8 +9,8 @@ # TODO: make private? def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): """ - Calculate tangent of angle between sun vector projected to the YZ-plane - (vertical and perpendicular to rows) and zenith vector. + Tangent of the angle between the sun vector projected to the YZ-plane + (vertical and perpendicular to rows) and the zenith vector. .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} @@ -69,7 +69,8 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, Returns ------- f_gnd_beam : numeric - Fraction of row pitch that is illuminated (unshaded). + Fraction of distance betwen rows (pitch) that has direct irradiance + (unshaded). """ # TODO: why np.abs? All angles should be <=90 tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, From 923a014a468bb4d079954b4005c604defb195ee6 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 3 Dec 2021 14:44:38 -0700 Subject: [PATCH 052/115] finish editing get_irradiance and supporting functions --- pvlib/bifacial/infinite_sheds.py | 353 +++++++++++++++---------------- 1 file changed, 169 insertions(+), 184 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 71532e6028..c88fd8e957 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -59,6 +59,7 @@ from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils from pvlib.shading import shaded_fraction +from pvlib.irradiance import get_ground_diffuse, beam_component def _gcr_prime(gcr, height, surface_tilt, pitch): @@ -120,7 +121,8 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): f_z : numeric fraction of ground from previous to next row gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing + ground coverage ratio, ratio of row slant length to row spacing. + [unitless] height : numeric height of module lower edge above the ground surface_tilt : numeric @@ -422,7 +424,7 @@ def _calc_fz_sky(psi_0, psi_1): return (cosd(psi_0) + cosd(psi_1)) / 2. -# TODO: move to util? +# TODO: move to util # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, @@ -475,6 +477,7 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, fz0_sky_next = [] prev_row = 0.0 # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) + # TODO: explain this loop over rows in front of current row while (fz0_limit - prev_row) > 0: fz0_sky_next.append(np.interp(fz + prev_row, fz, fz_sky_next)) prev_row += 1.0 @@ -519,7 +522,7 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): Returns ------- fgnd_sky : float - Integration of view factors over the length between adjacent, interior + Integration of view factor over the length between adjacent, interior rows. [unitless] fz : ndarray Fraction of distance from the previous row to the next row. [unitless] @@ -529,7 +532,8 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): """ args = gcr, height, surface_tilt, pitch - # calculate the view factor of the diffuse sky from the ground between rows + # calculate the view factor from the ground to the sky. Accounts for + # views between rows both towards the array front, and array back z_star, fz_sky = _ground_sky_diffuse_view_factor(*args, npoints=npoints) # calculate the integrated view factor for all of the ground between rows @@ -602,48 +606,39 @@ def _diffuse_fraction(ghi, dhi): return dhi / ghi -# TODO: docstring -def _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky): +def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ - transposed ground reflected diffuse component adjusted for ground - illumination AND accounting for infinite adjacent rows in both directions + Reduce ground-reflected irradiance to the tilted plane (poa_ground) to + account for shadows on the ground. Parameters ---------- poa_ground : numeric - transposed ground reflected diffuse component in W/m^2 + Ground reflected irradiance on the tilted surface, assuming full GHI + illumination on all of the ground. [W/m^2] f_gnd_beam : numeric - fraction of interrow ground illuminated (unshaded) + Fraction of the distance between rows that is illuminated (unshaded). + [unitless] df : numeric - ratio of DHI to GHI + Diffuse fraction, the ratio of DHI to GHI. [unitless] vf_gnd_sky : numeric - fraction of diffuse sky visible from ground integrated from row to row + View factor from the ground to the sky, integrated along the distance + between rows. [unitless] Returns ------- poa_gnd_sky : numeric - adjusted irradiance on modules reflected from ground + Adjusted ground-reflected irradiance accounting for shadows on the + ground. [W/m^2] + """ - # split the ground into shaded and unshaded sections with f_gnd_beam - # the shaded sections only see DHI, while unshaded see GHI = DNI*cos(ze) - # + DHI, the view factor vf_gnd_sky only applies to the shaded sections - # see Eqn (2) "Practical Irradiance Model for Bifacial PV" Marion et al. - # unshaded + (DHI/GHI)*shaded - # f_gnd_beam + (DHI/GHI)*(1 - f_gnd_beam) - # f_gnd_beam + df *(1 - f_gnd_beam) - # f_gnd_beam + df - df*f_gnd_beam - # f_gnd_beam - f_gnd_beam*df + df - # f_gnd_beam*(1 - df) + df - # unshaded *(DNI*cos(ze)/GHI) + DHI/GHI - # only apply diffuse sky view factor to diffuse component (df) incident on - # ground between rows, not the direct component of the unshaded ground df = np.where(np.isfinite(df), df, 0.0) return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) def _sky_angle(gcr, surface_tilt, x): """ - Angle from from a point x along the module slant height to the + Angle from a point x along the module slant height to the top of the facing row. Parameters @@ -681,7 +676,7 @@ def _sky_angle(gcr, surface_tilt, x): return psi_top, tan_psi_top -def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): +def _f_sky_diffuse_pv(gcr, surface_tilt, f_x, npoints=100): """ Integrated view factors of the sky from the shaded and unshaded parts of the row slant height. @@ -693,8 +688,8 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - shade_line : numeric - Fraction of row slant height shaded from the bottom of the row. + f_x : numeric + Fraction of row slant height from the bottom that is shaded. [unitless] npoints : int, default 100 Number of points for integration. [unitless] @@ -709,7 +704,8 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): Notes ----- - The view factor at a point x along the row slant height is given by + The view factor to the sky at a point x along the row slant height is + given by .. math :: \\large{f_{sky} = \frac{1}{2} \\left(\\cos\\left(\\psi_t\\right) + @@ -718,8 +714,8 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): where :math:`\\psi_t` is the angle from horizontal of the line from point x to the top of the facing row, and :math:`\\beta` is the surface tilt. - View factors are integrated over shaded and unshaded portions of the row - slant height. + View factors are integrated separately over shaded and unshaded portions + of the row slant height. See Also -------- @@ -728,17 +724,17 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, shade_line, npoints=100): """ cst = cosd(surface_tilt) # shaded portion - x = np.linspace(0, shade_line, npoints) + x = np.linspace(0 * f_x, f_x, num=npoints, axis=0) psi_t_shaded = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_shaded) + cst) # integrate view factors from each point in the discretization. This is an # improvement over the algorithm described in [2] - f_sky_pv_shade = np.trapz(y, x) + f_sky_pv_shade = np.trapz(y, x, axis=0) # unshaded portion - x = np.linspace(shade_line, 1, npoints) + x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) psi_t_unshaded = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_unshaded) + cst) - f_sky_pv_noshade = np.trapz(y, x) + f_sky_pv_noshade = np.trapz(y, x, axis=0) return f_sky_pv_shade, f_sky_pv_noshade @@ -752,17 +748,18 @@ def _poa_sky_diffuse_pv(dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade): dhi : numeric Diffuse horizontal irradiance (DHI). [W/m^2] f_x : numeric - Fraction of row slant height shaded from the bottom of the row. - [unitless] + Fraction of row slant height from the bottom that is shaded. [unitless] f_sky_pv_shade : numeric - Fraction of sky visible from shaded part of PV surface. [unitless] + Integrated (average) view factor to the sky from the shaded part of + the PV surface. [unitless] f_sky_pv_noshade : numeric - Fraction of sky visible from unshaded part of PV surface. [unitless] + Integrated (average) view factor to the sky from the unshaded part of + the PV surface. [unitless] Returns ------- poa_sky_diffuse_pv : numeric - Total sky diffuse irradiance incident on PV surface. [W/m^2] + Total sky diffuse irradiance incident on the PV surface. [W/m^2] """ return dhi * (f_x * f_sky_pv_shade + (1 - f_x) * f_sky_pv_noshade) @@ -771,11 +768,15 @@ def _ground_angle(gcr, surface_tilt, x): """ Angle from horizontal to the line from a point x on the row slant length to the bottom of the facing row. + + The angles returned are measured clockwise from horizontal, rather than + the usual counterclockwise direction. Parameters ---------- gcr : numeric - ratio of module length to row spacing + ground coverage ratio, ratio of row slant length to row spacing. + [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] @@ -792,55 +793,96 @@ def _ground_angle(gcr, surface_tilt, x): """ x1 = x * sind(surface_tilt) x2 = (x * cosd(surface_tilt) + 1 / gcr) - tan_psi = x1 / x2 - psi = np.rad2deg(np.arctan2(x1, x2)) - return psi, tan_psi + psi = np.arctan2(x1, x2) # do this first because it handles 0 / 0 + tan_psi = np.tan(psi) + return np.rad2deg(psi), tan_psi -def _f_ground_pv(surface_tilt, psi_shade, psi_bottom): +def _vf_row_ground(gcr, surface_tilt, x): """ - View factors of ground from shaded and unshaded parts of a row. + View factor from a point x to the ground between rows. Parameters ---------- + gcr : numeric + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] + x : numeric + Fraction of row slant height from the bottom. [unitless] + + Returns + ------- + vf : numeric + View factor from the point at x to the ground. [unitless] + + """ + cst = cosd(surface_tilt) + # angle from each point x on the row slant height to the bottom of the + # facing row + psi_t_shaded = _ground_angle(gcr, surface_tilt, x) + # view factor from the point on the row to the ground + return 0.5 * (cosd(psi_t_shaded) - cst) + + +def _f_ground_pv(gcr, surface_tilt, f_x, npoints=100): + """ + View factors to the ground from shaded and unshaded parts of a row. + + Parameters + ---------- + gcr : numeric + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - psi_shade : numeric - Angle from shade line to bottom of facing row. [degree] - psi_bottom : numeric - Angle from row top to bottom of the facing row. [degree] + f_x : numeric + Fraction of row slant height from the bottom that is shaded. [unitless] + npoints: Returns ------- f_gnd_pv_shade : numeric - View factor of ground from shaded part of row. + View factor from the row to the ground integrated over the shaded + portion of the row slant height. f_gnd_pv_noshade : numeric - View factor of ground from unshaded part of row. + View factor from the row to the ground integrated over the unshaded + portion of the row slant height. Notes ----- - At the bottom of rack, :math:`x = 0`, the angle is zero, and the view - factor to the ground is one. + The view factor to the ground at a point x along the row slant height is + given by - .. math:: - \\large{F_{gnd \\rightarrow shade} = \\frac{1 + \\frac{1 - \\cos - \\left(\\beta - \\psi_b \\right)}{1 - \\cos \\beta}}{2}} + .. math :: + \\large{f_{gr} = \frac{1}{2} \\left(\\cos\\left(\\psi_t\\right) - + \\cos \\left(\\beta\\right) \\right) - Take the average of the shaded and unshaded sections. + where :math:`\\psi_t` is the angle from horizontal of the line from point + x to the bottom of the facing row, and :math:`\\beta` is the surface tilt. - .. math:: - \\large{F_{gnd \\rightarrow no\\ shade} = \\frac{1 - \\frac{\\cos - \\left(\\beta - \\psi_b \\right) + \\cos \\left(\\beta - \\psi_b - \\left(x=1\\right) \\right)}{2}}{1 - \\cos \\beta}} + Each view factor is integrated over the relevant portion of the row + slant height. """ - # TODO: don't average, return fgnd-pv vs. x point on panel - f_gnd_pv_shade = 0.5 * (1 + (1 - cosd(surface_tilt - psi_shade)) - / (1 - cosd(surface_tilt))) - f_gnd_pv_noshade = ( - (1 - (cosd(surface_tilt - psi_shade) - + cosd(surface_tilt - psi_bottom))/2) - / (1 - cosd(surface_tilt))) + # shaded portion of row slant height + x = np.linspace(0 * f_x, f_x, num=npoints, axis=0) + # view factor from the point on the row to the ground + y = _vf_row_ground(gcr, surface_tilt, x) + # integrate view factors along the shaded portion of the row slant height. + # This is an improvement over the algorithm described in [2] + f_gnd_pv_shade = np.trapz(y, x, axis=0) + + # unshaded portion of row slant height + x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) + # view factor from the point on the row to the ground + y = _vf_row_ground(gcr, surface_tilt, x) + # integrate view factors along the unshaded portion. + # This is an improvement over the algorithm described in [2] + f_gnd_pv_noshade = np.trapz(y, x, axis=0) + return f_gnd_pv_shade, f_gnd_pv_noshade @@ -854,14 +896,18 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): poa_gnd_sky : numeric diffuse ground POA accounting for ground shade but not adjacent rows f_x : numeric - shade line fraction from bottom of module + Fraction of row slant height from the bottom that is shaded. [unitless] f_gnd_pv_shade : numeric fraction of ground visible from shaded part of PV surface f_gnd_pv_noshade : numeric fraction of ground visible from unshaded part of PV surface + Returns + ------- + """ - return poa_gnd_sky * (f_x*f_gnd_pv_shade + (1 - f_x)*f_gnd_pv_noshade) + # TODO: what is this weighting + return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) def _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): @@ -874,11 +920,6 @@ def _poa_direct_pv(poa_direct, iam, f_x): return poa_direct * iam * (1 - f_x) -def _poa_global_pv(poa_dir_pv, poa_dif_pv): - """global incident on PV surface""" - return poa_dir_pv + poa_dif_pv - - def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): """total global incident on bifacial PV surfaces""" @@ -890,8 +931,8 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, # TODO: rework output to basics + optional # TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, - tilt, pitch, ghi, dhi, poa_ground, poa_sky_diffuse, - poa_direct, iam, npoints=100, all_output=False): + tilt, pitch, ghi, dhi, dni, albedo, iam, + npoints=100, all_output=False): r""" Get irradiance from infinite sheds model. @@ -905,48 +946,69 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, ------- """ - # calculate solar projection + # Calculate some geometric quantities + # solar projection tan_phi = utils.solar_projection_tangent( solar_zenith, solar_azimuth, system_azimuth) - # fraction of ground illuminated accounting from shade from panels + # fraction of ground between rows that is illuminated accounting for + # shade from panels f_gnd_beam = utils.unshaded_ground_fraction(gcr, tilt, system_azimuth, solar_zenith, solar_azimuth) - # diffuse fraction - df = _diffuse_fraction(ghi, dhi) - # TODO: move to bifacial.util - # view factor from the ground in between infinite central rows to the sky + # integrated view factor from the ground to the sky, integrated between + # adjacent rows interior to the array vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, tilt, pitch, npoints) - # diffuse from sky reflected from ground accounting from shade from panels - # considering the fraction of ground blocked by infinite adjacent rows - poa_gnd_sky = _poa_ground_sky(poa_ground, f_gnd_beam, df, vf_gnd_sky) - # fraction of panel shaded + + # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, tilt, system_azimuth, gcr) - # angles from shadeline to top of next row + # angle from the shadeline to top of next row _, tan_psi_top = _sky_angle(gcr, tilt, f_x) - # angles from tops of next row to bottom of current row + # angle from top of next row to bottom of current row _, tan_psi_top_0 = _sky_angle(gcr, tilt, 0.0) - # fraction of sky visible from shaded and unshaded parts of PV surfaces + # fractions of the sky visible from the shaded and unshaded parts of the + # row slant height f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( gcr, tilt, f_x) - # total sky diffuse over both shaded and unshaded portions - poa_sky_pv = _poa_sky_diffuse_pv( - dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade) - # angles from shadeline to bottom of next row + # angle from shadeline to bottom of facing row psi_shade, _ = _ground_angle(gcr, tilt, f_x) - # angles from top of row to bottom of facing row + # angle from top of row to bottom of facing row psi_bottom, _ = _ground_angle(gcr, tilt, 1.0) - f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv( - tilt, psi_shade, psi_bottom) + # view factors from the ground to shaded and unshaded portions of the row + # slant height + f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv(gcr, tilt, f_x) + + # Calculate some preliminary irradiance quantities + # diffuse fraction + df = _diffuse_fraction(ghi, dhi) + # sky diffuse reflected from the ground to an array consisting of a single + # row + poa_ground = get_ground_diffuse(tilt, ghi, albedo) + poa_beam = beam_component(tilt, system_azimuth, solar_zenith, solar_azimuth, + dni) + # Total sky diffuse recieved by both shaded and unshaded portions + poa_sky_pv = _poa_sky_diffuse_pv( + dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade) + + # Reduce ground-reflected irradiance because other rows in the array + # block irradiance from reaching the ground. + # [2], Eq. 9 + poa_gnd_sky = _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky) + + # Further reduce ground-reflected irradiance because adjacent rows block + # the view to the ground. poa_gnd_pv = _poa_ground_pv( poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) - poa_dif_pv = _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv) - poa_dir_pv = _poa_direct_pv(poa_direct, iam, f_x) - poa_glo_pv = _poa_global_pv(poa_dir_pv, poa_dif_pv) + + # add sky and ground-reflected irradiance on the row by irradiance + # component + poa_diffuse = poa_gnd_pv + poa_sky_pv + poa_direct = _poa_direct_pv(poa_beam, iam, f_x) + poa_global = poa_direct + poa_diffuse + output = OrderedDict( - poa_global_pv=poa_glo_pv, poa_direct_pv=poa_dir_pv, - poa_diffuse_pv=poa_dif_pv, poa_ground_diffuse_pv=poa_gnd_pv, - poa_sky_diffuse_pv=poa_sky_pv) + poa_global=poa_global, poa_direct=poa_direct, + poa_diffuse=poa_diffuse, poa_ground_diffuse=poa_gnd_pv, + poa_sky_diffuse=poa_sky_pv) if all_output: output.update( solar_projection=tan_phi, ground_illumination=f_gnd_beam, @@ -958,7 +1020,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, ground_angle_bottom=psi_bottom, f_ground_diffuse_pv_shade=f_gnd_pv_shade, f_ground_diffuse_pv_noshade=f_gnd_pv_noshade) - if isinstance(poa_glo_pv, pd.Series): + if isinstance(poa_global, pd.Series): output = pd.DataFrame(output) return output @@ -1007,80 +1069,3 @@ def _backside(tilt, system_azimuth): backside_tilt = np.pi - tilt backside_sysaz = (np.pi + system_azimuth) % (2*np.pi) return backside_tilt, backside_sysaz - - -class InfiniteSheds(object): - """An infinite sheds model""" - def __init__(self, system_azimuth, gcr, height, tilt, pitch, npoints=100, - is_bifacial=True, bifaciality=0.8, shade_factor=-0.02, - transmission_factor=0): - self.system_azimuth = system_azimuth - self.gcr = gcr - self.height = height - self.tilt = tilt - self.pitch = pitch - self.npoints = npoints - self.is_bifacial = is_bifacial - self.bifaciality = bifaciality if is_bifacial else 0.0 - self.shade_factor = shade_factor - self.transmission_factor = transmission_factor - # backside angles - self.backside_tilt, self.backside_sysaz = _backside( - self.tilt, self.system_azimuth) - # sheds parameters - self.tan_phi = None - self.f_gnd_beam = None - self.df = None - self.front_side = None - self.back_side = None - self.poa_global_bifacial = None - - def get_irradiance(self, solar_zenith, solar_azimuth, ghi, dhi, poa_ground, - poa_sky_diffuse, poa_direct, iam): - self.front_side = _PVSurface(*get_irradiance( - solar_zenith, solar_azimuth, self.system_azimuth, - self.gcr, self.height, self.tilt, self.pitch, ghi, dhi, poa_ground, - poa_sky_diffuse, poa_direct, iam, npoints=self.npoints, - all_output=True)) - self.tan_phi = self.front_side.tan_phi - self.f_gnd_beam = self.front_side.f_gnd_beam - self.df = self.front_side.df - if self.bifaciality > 0: - self.back_side = _PVSurface(*get_irradiance( - solar_zenith, solar_azimuth, self.backside_sysaz, - self.gcr, self.height, self.backside_tilt, self.pitch, ghi, - dhi, poa_ground, poa_sky_diffuse, poa_direct, iam, - self.npoints, all_output=True)) - self.poa_global_bifacial = poa_global_bifacial( - self.front_side.poa_global_pv, self.back_side.poa_global_pv, - self.bifaciality, self.shade_factor, self.transmission_factor) - return self.poa_global_bifacial - else: - return self.front_side.poa_global_pv - - -class _PVSurface(object): - """A PV surface in an infinite shed""" - def __init__(self, poa_glo_pv, poa_dir_pv, poa_dif_pv, poa_gnd_pv, - poa_sky_pv, tan_phi, f_gnd_beam, df, poa_gnd_sky, f_x, - tan_psi_top, tan_psi_top_0, f_sky_pv_shade, f_sky_pv_noshade, - tan_psi_bottom, tan_psi_bottom_1, f_gnd_pv_shade, - f_gnd_pv_noshade): - self.poa_global_pv = poa_glo_pv - self.poa_direct_pv = poa_dir_pv - self.poa_diffuse_pv = poa_dif_pv - self.poa_ground_pv = poa_gnd_pv - self.poa_sky_diffuse_pv = poa_sky_pv - self.tan_phi = tan_phi - self.f_gnd_beam = f_gnd_beam - self.df = df - self.poa_ground_sky = poa_gnd_sky - self.f_x = f_x - self.tan_psi_top = tan_psi_top - self.tan_psi_top_0 = tan_psi_top_0 - self.f_sky_pv_shade = f_sky_pv_shade - self.f_sky_pv_noshade = f_sky_pv_noshade - self.tan_psi_bottom = tan_psi_bottom - self.tan_psi_bottom_1 = tan_psi_bottom_1 - self.f_gnd_pv_shade = f_gnd_pv_shade - self.f_gnd_pv_noshade = f_gnd_pv_noshade From e62d4a6789d1be78accaa3a2532542667b7d93db Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 6 Dec 2021 11:50:29 -0700 Subject: [PATCH 053/115] rework public functions --- pvlib/bifacial/infinite_sheds.py | 218 +++++++++++++++++++------------ 1 file changed, 138 insertions(+), 80 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index c88fd8e957..18cc737996 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -124,12 +124,12 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): ground coverage ratio, ratio of row slant length to row spacing. [unitless] height : numeric - height of module lower edge above the ground + height of module lower edge above the ground. surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] pitch : numeric - row spacing + row spacing. Returns ------- @@ -144,6 +144,8 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. + + Parameters `height` and `pitch` must have the same unit. See Also -------- @@ -906,20 +908,9 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): ------- """ - # TODO: what is this weighting return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def _poa_diffuse_pv(poa_gnd_pv, poa_sky_pv): - """diffuse incident on PV surface from sky and ground""" - return poa_gnd_pv + poa_sky_pv - - -def _poa_direct_pv(poa_direct, iam, f_x): - """direct incident on PV surface""" - return poa_direct * iam * (1 - f_x) - - def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0): """total global incident on bifacial PV surfaces""" @@ -930,60 +921,133 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, # TODO: rename to pvlib.bifacial.infinite_sheds? # TODO: rework output to basics + optional # TODO: not tested -def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, - tilt, pitch, ghi, dhi, dni, albedo, iam, - npoints=100, all_output=False): +def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, iam=1.0, npoints=100, all_output=False): r""" - Get irradiance from infinite sheds model. + Get irradiance on one side of an infinite row of modules using the infinite + sheds model. + + Plane-of-array (POA) irradiance components include direct, diffuse and + global (total). Irradiance values are not reduced by reflections, adjusted + for solar spectrum, or reduced by a module's light collecting aperature, + which is quantified by the module's bifaciality factor. Parameters ---------- + solar_zenith : array-like + True (not refraction-corrected) solar zenith angles in decimal + degrees. + + solar_azimuth : array-like + Solar azimuth angles in decimal degrees. + + surface_tilt : numeric + Surface tilt angles in decimal degrees. Tilt must be >=0 and + <=180. The tilt angle is defined as degrees from horizontal + (e.g. surface facing up = 0, surface facing horizon = 90). + + surface_azimuth : numeric + Surface azimuth angles in decimal degrees. surface_azimuth must + be >=0 and <=360. The Azimuth convention is defined as degrees + east of north (e.g. North = 0, South=180 East = 90, West = 270). + surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] + gcr : numeric + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] + + height : numeric + height of module lower edge above the ground. + + pitch : numeric + row spacing. + + dni : numeric + Direct normal irradiance. [W/m2] + + ghi : numeric + Global horizontal irradiance. [W/m2] + + dhi : numeric + Diffuse horizontal irradiance. [W/m2] + + albedo : numeric + Surface albedo. [unitless] + + iam : numeric, default 1.0 + Incidence angle modifier, the fraction of direct irradiance incident + on the surface that is not reflected away. [unitless] + + npoints : int, default 100 + Number of points used to discretize distance along the ground. + + all_ouputs : boolean, default False + If True then detailed output is returned. If False, only plane-of-array + irradiance components are returned. + Returns ------- + output : OrderedDict or DataFrame + Output is a DataFrame when input ghi is a Series. See Notes for + descriptions of content. + + Notes + ----- + Input parameters `height` and `pitch` must have the same unit. + + Output always includes: + + - poa_global : total POA irradiance. [W/m^2] + - poa_diffuse : total diffuse POA irradiance from all sources. [W/m^2] + - poa_direct : total direct POA irradiance. [W/m^2] + + Optionally, output includes: + + - poa_diffuse_sky : total sky diffuse irradiance on the plane of array. + [W/m^2] + - poa_diffuse_ground : total ground-reflected diffuse irradiance on the + plane of array. [W/m^2] """ # Calculate some geometric quantities - # solar projection - tan_phi = utils.solar_projection_tangent( - solar_zenith, solar_azimuth, system_azimuth) # fraction of ground between rows that is illuminated accounting for # shade from panels - f_gnd_beam = utils.unshaded_ground_fraction(gcr, tilt, system_azimuth, + f_gnd_beam = utils.unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array - vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, tilt, pitch, npoints) + vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints) # fraction of row slant height that is shaded - f_x = shaded_fraction(solar_zenith, solar_azimuth, tilt, system_azimuth, + f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) # angle from the shadeline to top of next row - _, tan_psi_top = _sky_angle(gcr, tilt, f_x) + _, tan_psi_top = _sky_angle(gcr, surface_tilt, f_x) # angle from top of next row to bottom of current row - _, tan_psi_top_0 = _sky_angle(gcr, tilt, 0.0) + _, tan_psi_top_0 = _sky_angle(gcr, surface_tilt, 0.0) # fractions of the sky visible from the shaded and unshaded parts of the # row slant height f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( - gcr, tilt, f_x) + gcr, surface_tilt, f_x) # angle from shadeline to bottom of facing row - psi_shade, _ = _ground_angle(gcr, tilt, f_x) + psi_shade, _ = _ground_angle(gcr, surface_tilt, f_x) # angle from top of row to bottom of facing row - psi_bottom, _ = _ground_angle(gcr, tilt, 1.0) + psi_bottom, _ = _ground_angle(gcr, surface_tilt, 1.0) # view factors from the ground to shaded and unshaded portions of the row # slant height - f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv(gcr, tilt, f_x) + f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv(gcr, surface_tilt, f_x) # Calculate some preliminary irradiance quantities # diffuse fraction df = _diffuse_fraction(ghi, dhi) # sky diffuse reflected from the ground to an array consisting of a single # row - poa_ground = get_ground_diffuse(tilt, ghi, albedo) - poa_beam = beam_component(tilt, system_azimuth, solar_zenith, solar_azimuth, + poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) + poa_beam = beam_component(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni) # Total sky diffuse recieved by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( @@ -1002,7 +1066,7 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, # add sky and ground-reflected irradiance on the row by irradiance # component poa_diffuse = poa_gnd_pv + poa_sky_pv - poa_direct = _poa_direct_pv(poa_beam, iam, f_x) + poa_direct = poa_beam * (1 - f_x) * iam # direct only on the unshaded part poa_global = poa_direct + poa_diffuse output = OrderedDict( @@ -1010,59 +1074,53 @@ def get_irradiance(solar_zenith, solar_azimuth, system_azimuth, gcr, height, poa_diffuse=poa_diffuse, poa_ground_diffuse=poa_gnd_pv, poa_sky_diffuse=poa_sky_pv) if all_output: - output.update( - solar_projection=tan_phi, ground_illumination=f_gnd_beam, - diffuse_fraction=df, poa_ground_sky=poa_gnd_sky, shade_line=f_x, - sky_angle_tangent=tan_psi_top, sky_angle_0_tangent=tan_psi_top_0, - f_sky_diffuse_pv_shade=f_sky_pv_shade, - f_sky_diffuse_pv_noshade=f_sky_pv_noshade, - ground_angle=psi_shade, - ground_angle_bottom=psi_bottom, - f_ground_diffuse_pv_shade=f_gnd_pv_shade, - f_ground_diffuse_pv_noshade=f_gnd_pv_noshade) - if isinstance(poa_global, pd.Series): + output.update(poa_diffuse_sky=poa_sky_pv, + poa_diffuse_ground=poa_gnd_pv) + if isinstance(ghi, pd.Series): output = pd.DataFrame(output) return output -def get_poa_global_bifacial(solar_zenith, solar_azimuth, system_azimuth, gcr, - height, tilt, pitch, ghi, dhi, dni, dni_extra, - am_rel, iam_b0_front=0.05, iam_b0_back=0.05, - bifaciality=0.8, shade_factor=-0.02, - transmission_factor=0, method='haydavies'): - """Get global bifacial irradiance from infinite sheds model.""" +def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, dni_extra, iam_front=1.0, iam_back=1.0, + bifaciality=0.8, shade_factor=-0.02, + transmission_factor=0): + """ + Get bifacial irradiance using the infinite sheds model. + + Parameters + ---------- + iam_front : numeric, default 1.0 + Incidence angle modifier, the fraction of direct irradiance incident + on the front surface that is not reflected away. [unitless] + + iam_back : numeric, default 1.0 + Incidence angle modifier, the fraction of direct irradiance incident + on the back surface that is not reflected away. [unitless] + + """ # backside is rotated and flipped relative to front - backside_tilt, backside_sysaz = _backside(tilt, system_azimuth) - # AOI - aoi_front = irradiance.aoi( - tilt, system_azimuth, solar_zenith, solar_azimuth) - aoi_back = irradiance.aoi( - backside_tilt, backside_sysaz, solar_zenith, solar_azimuth) - # transposition - irrad_front = irradiance.get_total_irradiance( - tilt, system_azimuth, solar_zenith, solar_azimuth, - dni, ghi, dhi, dni_extra, am_rel, model=method) - irrad_back = irradiance.get_total_irradiance( - backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, - dni, ghi, dhi, dni_extra, am_rel, model=method) - # iam - iam_front = iam.ashrae(aoi_front, iam_b0_front) - iam_back = iam.ashrae(aoi_back, iam_b0_back) - # get front side - poa_global_front = get_irradiance( - solar_zenith, solar_azimuth, system_azimuth, gcr, height, tilt, pitch, - ghi, dhi, irrad_front['poa_ground_diffuse'], - irrad_front['poa_sky_diffuse'], irrad_front['poa_direct'], iam_front) - # get backside - poa_global_back = get_irradiance( - solar_zenith, solar_azimuth, backside_sysaz, gcr, height, - backside_tilt, pitch, ghi, dhi, irrad_back['poa_ground_diffuse'], - irrad_back['poa_sky_diffuse'], irrad_back['poa_direct'], iam_back) - # get bifacial - poa_glo_bifi = poa_global_bifacial( - poa_global_front['poa_global_pv'], poa_global_back['poa_global_pv'], - bifaciality, shade_factor, transmission_factor) - return poa_glo_bifi + backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) + # front side POA irradiance + irrad_front = get_poa_irradiance( + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, + height, pitch, ghi, dhi, dni, albedo, iam_front) + irrad_front.rename(columns={'poa_global': 'poa_front', + 'poa_diffuse': 'poa_front_diffuse', + 'poa_direct': 'poa_front_direct'}) + # back side POA irradiance + irrad_back = get_poa_irradiance( + solar_zenith, solar_azimuth, backside_tilt, backside_sysaz, gcr, + height, pitch, ghi, dhi, dni, albedo, iam_back) + irrad_back.rename(columns={'poa_global': 'poa_back', + 'poa_diffuse': 'poa_back_diffuse', + 'poa_direct': 'poa_back_direct'}) + effects = (1 + shade_factor) * (1 + transmission_factor) + output = pd.concat([irrad_front, irrad_back], axis=1) + output['poa_global'] = output['poa_front'] + \ + output['poa_back'] * bifaciality * effects + return output def _backside(tilt, system_azimuth): From cdc41530d34f723029e1cbb4a72a4c0b1647feae Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 7 Dec 2021 08:50:57 -0700 Subject: [PATCH 054/115] formatting --- pvlib/bifacial/infinite_sheds.py | 54 ++++++++++++++++---------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 18cc737996..7294ed565f 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -55,7 +55,6 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib import irradiance, iam from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils from pvlib.shading import shaded_fraction @@ -105,7 +104,7 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): """ Angles from point z on ground to tops of next and previous rows. - + The point z lies between the extension to the ground of the previous row and the extension to the ground of the next row. @@ -146,7 +145,7 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): toward the front of the array and next rows are toward the back. Parameters `height` and `pitch` must have the same unit. - + See Also -------- _ground_sky_angles_prev @@ -186,7 +185,7 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): The point z lies between the extension to the ground of the previous row and the extension to the ground of the next row. - + The function _ground_sky_angles_prev applies when the sky is visible between the bottom of the previous row, and the top of the row in front of the previous row. @@ -227,7 +226,7 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. - + See Also -------- _ground_sky_angles @@ -298,7 +297,7 @@ def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): The point z lies between the extension to the ground of the previous row and the extension to the ground of the next row. - + The function _ground_sky_angles_next applies when the sky is visible between the bottom of the next row, and the top of the row behind of the next row. @@ -337,7 +336,7 @@ def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. - + See Also -------- _ground_sky_angles @@ -434,7 +433,7 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, """ Calculate the view factor from each point on the ground between adjacent, interior rows, to the sky. - + The view factor is equal to the fraction of sky hemisphere visible at each point on the ground. @@ -459,7 +458,7 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, fz_sky : ndarray View factors at discrete points between adjacent, interior rows. [unitless] - + """ args = gcr, height, surface_tilt, pitch fz0_limit = _f_z0_limit(*args) @@ -534,7 +533,7 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): """ args = gcr, height, surface_tilt, pitch - # calculate the view factor from the ground to the sky. Accounts for + # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back z_star, fz_sky = _ground_sky_diffuse_view_factor(*args, npoints=npoints) @@ -710,7 +709,7 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, f_x, npoints=100): given by .. math :: - \\large{f_{sky} = \frac{1}{2} \\left(\\cos\\left(\\psi_t\\right) + + \\large{f_{sky} = \frac{1}{2} \\left(\\cos\\left(\\psi_t\\right) + \\cos \\left(\\beta\\right) \\right) where :math:`\\psi_t` is the angle from horizontal of the line from point @@ -770,7 +769,7 @@ def _ground_angle(gcr, surface_tilt, x): """ Angle from horizontal to the line from a point x on the row slant length to the bottom of the facing row. - + The angles returned are measured clockwise from horizontal, rather than the usual counterclockwise direction. @@ -906,7 +905,7 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): Returns ------- - + """ return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) @@ -974,7 +973,7 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, dhi : numeric Diffuse horizontal irradiance. [W/m2] - + albedo : numeric Surface albedo. [unitless] @@ -994,13 +993,13 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, output : OrderedDict or DataFrame Output is a DataFrame when input ghi is a Series. See Notes for descriptions of content. - + Notes ----- Input parameters `height` and `pitch` must have the same unit. Output always includes: - + - poa_global : total POA irradiance. [W/m^2] - poa_diffuse : total diffuse POA irradiance from all sources. [W/m^2] - poa_direct : total direct POA irradiance. [W/m^2] @@ -1016,15 +1015,16 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, # Calculate some geometric quantities # fraction of ground between rows that is illuminated accounting for # shade from panels - f_gnd_beam = utils.unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, - solar_zenith, solar_azimuth) + f_gnd_beam = utils.unshaded_ground_fraction( + gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array - vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints) + vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, surface_tilt, pitch, + npoints) # fraction of row slant height that is shaded - f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, - gcr) + f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr) # angle from the shadeline to top of next row _, tan_psi_top = _sky_angle(gcr, surface_tilt, f_x) # angle from top of next row to bottom of current row @@ -1047,8 +1047,8 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, # sky diffuse reflected from the ground to an array consisting of a single # row poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) - poa_beam = beam_component(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - dni) + poa_beam = beam_component(surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, dni) # Total sky diffuse recieved by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade) @@ -1088,17 +1088,17 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, transmission_factor=0): """ Get bifacial irradiance using the infinite sheds model. - + Parameters - ---------- + ---------- iam_front : numeric, default 1.0 Incidence angle modifier, the fraction of direct irradiance incident on the front surface that is not reflected away. [unitless] - + iam_back : numeric, default 1.0 Incidence angle modifier, the fraction of direct irradiance incident on the back surface that is not reflected away. [unitless] - + """ # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) From d1d40051718d18bb7327458d5cf5cd3d83b66d33 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 7 Dec 2021 08:55:15 -0700 Subject: [PATCH 055/115] remove old test file --- pvlib/tests/test_infinite_sheds.py | 299 ----------------------------- 1 file changed, 299 deletions(-) delete mode 100644 pvlib/tests/test_infinite_sheds.py diff --git a/pvlib/tests/test_infinite_sheds.py b/pvlib/tests/test_infinite_sheds.py deleted file mode 100644 index 899a535d47..0000000000 --- a/pvlib/tests/test_infinite_sheds.py +++ /dev/null @@ -1,299 +0,0 @@ -""" -test infinite sheds -""" - -import os -import numpy as np -import pandas as pd -import pvlib - -BASEDIR = os.path.dirname(__file__) -PROJDIR = os.path.dirname(BASEDIR) -DATADIR = os.path.join(PROJDIR, 'data') -TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') - -# location and irradiance -LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates - -# PV module orientation -# tilt: positive = facing toward sun, negative = backward -# system-azimuth: positive counter-clockwise from north -TILT, SYSAZ = 20.0, 250.0 -GCR = 0.5 # ground coverage ratio -HEIGHT = 1 # height above ground -PITCH = 4 # row spacing - -# IAM parameters -B0 = 0.05 -MAXAOI = 85 - -# backside -BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} - -# TESTDATA -TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) -GHI, DHI = TESTDATA.ghi, TESTDATA.dhi -# convert #DIV/0 to np.inf, 0/0 to NaN, then convert to float -DF = np.where(GHI > 0, TESTDATA.df, np.inf) -DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) -TESTDATA.df = DF -F_GND_BEAM = TESTDATA['Fsky-gnd'] -BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] -FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] -BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) -FRONT_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_f) - -TAN_PSI_TOP0_F = np.tan(0.312029739) # GCR*SIN(TILT_f)/(1-GCR*COS(TILT_f)) -TAN_PSI_TOP0_B = np.tan(0.115824807) # GCR*SIN(TILT_b)/(1-GCR*COS(TILT_b)) -TAN_PSI_BOT1_F = np.tan(0.115824807) # SIN(TILT_f) / (COS(TILT_f) + 1/GCR) -TAN_PSI_BOT1_B = np.tan(0.312029739) # SIN(TILT_b) / (COS(TILT_b) + 1/GCR) - -# radians -SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) -SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) -SYSAZ_RAD = np.radians(SYSAZ) -BACK_SYSAZ_RAD = np.radians(BACKSIDE['sysaz']) -TILT_RAD = np.radians(TILT) -BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) - - -def test_solar_projection_tangent(): - tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi_f, -tan_phi_b) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - - -def test_solar_projection(): - # frontside - phi_f, tan_phi_f = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(np.tan(phi_f), tan_phi_f) - # backside - phi_b, tan_phi_b = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - assert np.allclose(np.tan(phi_b), tan_phi_b) - - -def test_unshaded_ground_fraction(): - # frontside, same for both sides - f_sky_beam_f = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(f_sky_beam_f, F_GND_BEAM) - # backside, should be the same as frontside - f_sky_beam_b = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_sky_beam_b, F_GND_BEAM) - - -ARGS = (GCR, HEIGHT, TILT_RAD, PITCH) - - -def test_gcr_prime(): - assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), - 1.2309511000407718) - - -# calculated ground-sky angles at panel edges -# gcr_prime = pvlib.infinite_sheds._gcr_prime(*ARGS) -# back_tilt_rad = np.pi - tilt_rad -# psi_0_x0 = back_tilt_rad -# psi_1_x0 = np.arctan2( -# gcr_prime * np.sin(back_tilt_rad), 1 - gcr_prime * np.cos(back_tilt_rad)) -PSI_0_X0, PSI_1_X0 = 2.792526803190927, 0.19278450775754705 -# psi_0_x1 = np.arctan2( -# gcr_prime * np.sin(tilt_rad), 1 - gcr_prime * np.cos(tilt_rad)) -# psi_1_x1 = tilt_rad -PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 - - -def test_ground_sky_angles(): - assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) - # check limit at x=0, these are the same as the back edge of the row beyond - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) - - -FZ0_LIMIT = 1.4619022000815438 # pvlib.infinite_sheds.f_z0_limit(*ARGS) -# np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) -PSI_TOP = 0.3120297392978313 - - -def test_ground_sky_angles_prev(): - if HEIGHT > 0: - # check limit at z=0, these are the same as z=1 of the previous row - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_prev(0, *ARGS), - (PSI_0_X1, PSI_1_X1)) - # check limit at z=z0_limit, angles must sum to 180 - assert np.isclose( - sum(pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), - np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], - PSI_TOP) - - -FZ1_LIMIT = 1.4619022000815427 # pvlib.infinite_sheds.f_z1_limit(*ARGS) -# np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) -PSI_TOP_BACK = 0.11582480672702507 - - -def test_ground_sky_angles_next(): - if HEIGHT > 0: - # check limit at z=1, these are the same as z=0 of the next row beyond - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), - (PSI_0_X0, PSI_1_X0)) - # check limit at zprime=z1_limit, angles must sum to 180 - sum_angles_z1_limit = sum( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) - assert np.isclose(sum_angles_z1_limit, np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], - PSI_TOP_BACK) - - -def test_diffuse_fraction(): - df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) - assert np.allclose(df, DF, equal_nan=True) - - -VF_GND_SKY = 0.5184093800689326 -FZ_SKY = np.array([ - 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, - 0.40760977, 0.41546240, 0.42363368, 0.43209234, 0.44079809, - 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, - 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, - 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, - 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, - 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.65683590, - 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, - 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, - 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, - 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, - 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, - 0.61025517, 0.59900195, 0.58719184, 0.57481610, 0.56199241, - 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, - 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, - 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, - 0.37191014, 0.36503340, 0.35906878, 0.35388625, 0.34959679, - 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, - 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, - 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) - - -def test_vf_ground_sky(): - vf_gnd_sky, fz_sky = pvlib.infinite_sheds.vf_ground_sky(*ARGS) - assert np.isclose(vf_gnd_sky, VF_GND_SKY) - assert np.allclose(fz_sky, FZ_SKY) - - -def test_poa_ground_sky(): - # front side - poa_gnd_sky_f = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) - # CSV file decimals are truncated - assert np.allclose( - poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) - # backside - poa_gnd_sky_b = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) - assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) - - -def test_shade_line(): - # front side - fx_f = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(fx_f, TESTDATA.Fx_f) - # backside - fx_b = pvlib.infinite_sheds.shade_line( - GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(fx_b, TESTDATA.Fx_b) - - -def test_sky_angles(): - # frontside - psi_top_f, tan_psi_top_f = pvlib.infinite_sheds.sky_angle( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(psi_top_f, TESTDATA.psi_top_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - psi_top_b, tan_psi_top_b = pvlib.infinite_sheds.sky_angle( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(psi_top_b, TESTDATA.psi_top_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - -def test_sky_angle_tangent(): - # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_tangent( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_tangent( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - -def test_sky_angle_0_tangent(): - # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) - assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) - # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_0_tangent( - GCR, BACK_TILT_RAD) - assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) - - -if __name__ == '__main__': - from matplotlib import pyplot as plt - plt.ion() - plt.plot(*pvlib.infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) - plt.title( - 'combined sky view factor, not including horizon and first/last row') - plt.xlabel('fraction of pitch from front to back') - plt.ylabel('view factor') - plt.grid() - fig, ax = plt.subplots(2, 1, figsize=(6, 8)) - fx = np.linspace(0, 1, 100) - fskyz = [pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) - ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) - ax[0].grid() - ax[0].set_title('frontside integrated ground reflected') - ax[0].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[0].legend(('blocked', 'all sky')) - fskyz = [ - pvlib.infinite_sheds.calc_fgndpv_zsky( - x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].plot(fx, fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].grid() - ax[1].set_title('backside integrated ground reflected') - ax[1].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[1].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[1].legend(('blocked', 'all sky')) - plt.tight_layout() From 56eb655757b364f1b2c5f732ad5e9399ef07b60a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 8 Dec 2021 14:03:33 -0700 Subject: [PATCH 056/115] add tests for sky_angle functions, remove diffuse_ratio --- pvlib/bifacial/infinite_sheds.py | 72 +++++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 112 +++++++++----------- 2 files changed, 87 insertions(+), 97 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 7294ed565f..de8446515d 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -93,7 +93,7 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # : \ \ h = height above ground # : \ tilt \ : # +----------\<---------P----------->\---- ground - # TODO convert to degrees + return gcr + height / sind(surface_tilt) / pitch @@ -103,10 +103,11 @@ def _gcr_prime(gcr, height, surface_tilt, pitch): # of the next row? def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): """ - Angles from point z on ground to tops of next and previous rows. + Angles from a point z on the ground to the tops of the previous and next + rows. - The point z lies between the extension to the ground of the previous row - and the extension to the ground of the next row. + The point z is the fraction of distance from the extension to the ground of + the previous row and the extension to the ground of the next row. .. math:: \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} @@ -118,7 +119,7 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): Parameters ---------- f_z : numeric - fraction of ground from previous to next row + fraction of distance along the ground from the previous to the next row gcr : numeric ground coverage ratio, ratio of row slant length to row spacing. [unitless] @@ -136,8 +137,8 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): Angle from horizontal of the line between a point on the ground and the top of the previous row. [degree] psi_1 : numeric - Angle from horizontal of the line between a point on the ground and - the top of the next row. [degree] + Complement of the angle from horizontal of the line between a point on + the ground and the top of the next row. [degree] Notes ----- @@ -165,13 +166,12 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): # 1<-----1-fz-----><--fz--0---- fraction of ground gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) - tilt_prime = 180. - surface_tilt - opposite_side = sind(tilt_prime) - adjacent_side = f_z/gcr_prime + cosd(tilt_prime) + opposite_side = sind(surface_tilt) + adjacent_side = f_z/gcr_prime - cosd(surface_tilt) # tan_psi_0 = opposite_side / adjacent_side psi_0 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) f_z_prime = 1 - f_z - opposite_side = np.sin(surface_tilt) + opposite_side = sind(surface_tilt) adjacent_side = f_z_prime/gcr_prime + cosd(surface_tilt) # tan_psi_1 = opposite_side / adjacent_side psi_1 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) @@ -180,11 +180,11 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): """ - Angles from point z on ground to bottom of previous row and to the top of - the row beyond the previous row. + Angles from a point z on the ground to the tops of the previous and next + rows. - The point z lies between the extension to the ground of the previous row - and the extension to the ground of the next row. + The point z is the fraction of distance from the extension to the ground of + the previous row and the extension to the ground of the next row. The function _ground_sky_angles_prev applies when the sky is visible between the bottom of the previous row, and the top of the row in front @@ -204,7 +204,8 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): f_z : numeric fraction of ground from previous to next row gcr : numeric - ground coverage ratio + ground coverage ratio, ratio of row slant length to row spacing. + [unitless] height : numeric height of module lower edge above the ground surface_tilt : numeric @@ -216,17 +217,20 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): Returns ------- psi_0 : numeric - Angle from horizontal of the line between a point on the ground and - the bottom of the previous row. [degree] - psi_1 : numeric Angle from horizontal of the line between a point on the ground and the top of the row in front of the previous row. [degree] + psi_1 : numeric + Complement of the angle from horizontal of the line between a point on + the ground and the bottom of the previous row. + [degree] Notes ----- Assuming the first row is in the front of the array then previous rows are toward the front of the array and next rows are toward the back. + Parameters `height` and `pitch` must have the same unit. + See Also -------- _ground_sky_angles @@ -246,12 +250,11 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): # <-1+fz-1<---------fz=1---------0---- fraction of ground gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) - tilt_prime = 180. - surface_tilt - # angle to top of previous panel beyond the current row + # angle to top of previous panel in front of the current row psi_0 = np.rad2deg(np.arctan2( - sind(tilt_prime), (1+f_z)/gcr_prime + cosd(tilt_prime))) + sind(surface_tilt), (1 + f_z)/gcr_prime - cosd(surface_tilt))) # angle to bottom of previous panel - z = f_z*pitch + z = f_z * pitch # other forms raise division by zero errors # avoid division by zero errors psi_1 = np.rad2deg(np.arctan2(height, height/tand(surface_tilt) - z)) @@ -269,7 +272,8 @@ def _f_z0_limit(gcr, height, surface_tilt, pitch): Parameters ---------- gcr : numeric - ground coverage ratio + ground coverage ratio, ratio of row slant length to row spacing. + [unitless] height : numeric height of module lower edge above the ground surface_tilt : numeric @@ -295,12 +299,12 @@ def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): Angles from point z on the ground to bottom of the next row and to the top of the row behind the next row. - The point z lies between the extension to the ground of the previous row - and the extension to the ground of the next row. + The point z is the fraction of distance from the extension to the ground of + the previous row and the extension to the ground of the next row. The function _ground_sky_angles_next applies when the sky is visible - between the bottom of the next row, and the top of the row behind - of the next row. + between the bottom of the next row, and the top of the row behind the + next row. .. math:: \\tan \\psi_0 = \\frac{h}{\\frac{h}{\\tan\\beta^\\prime} @@ -358,14 +362,14 @@ def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) tilt_prime = 180. - surface_tilt # angle to bottom of next panel - fzprime = 1 - f_z - zprime = fzprime*pitch + fzprime = 1. - f_z + zprime = fzprime * pitch # other forms raise division by zero errors # avoid division by zero errors psi_0 = np.rad2deg(np.arctan2(height, height/tand(tilt_prime) - zprime)) # angle to top of next panel beyond the current row psi_1 = np.rad2deg(np.arctan2( - cosd(surface_tilt), (1 + fzprime)/gcr_prime + cosd(surface_tilt))) + sind(surface_tilt), (1 + fzprime)/gcr_prime + cosd(surface_tilt))) return psi_0, psi_1 @@ -639,8 +643,8 @@ def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): def _sky_angle(gcr, surface_tilt, x): """ - Angle from a point x along the module slant height to the - top of the facing row. + Angle from a point x along the module slant height to the top of the + facing row. Parameters ---------- @@ -1043,7 +1047,7 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, # Calculate some preliminary irradiance quantities # diffuse fraction - df = _diffuse_fraction(ghi, dhi) + df = dhi / ghi # sky diffuse reflected from the ground to an array consisting of a single # row poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index d77071d2dc..dfb2b490d6 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -55,12 +55,15 @@ TILT_RAD = np.radians(TILT) BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) -ARGS = (GCR, HEIGHT, np.radians(TILT), PITCH) +ARGS = (GCR, HEIGHT, TILT, PITCH) +gcr, height, surface_tilt, pitch = ARGS + def test__gcr_prime(): - assert np.isclose(infinite_sheds._gcr_prime(*ARGS), - 1.2309511000407718) + result = infinite_sheds._gcr_prime(gcr = 0.5, height=1, surface_tilt=20, + pitch=4) + assert np.isclose(result, 1.2309511000407718) # calculated ground-sky angles at panel edges @@ -77,12 +80,17 @@ def test__gcr_prime(): def test__ground_sky_angles(): - assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) - # check limit at x=0, these are the same as the back edge of the row beyond - assert np.allclose( - infinite_sheds._ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) - assert np.allclose( - infinite_sheds._ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) + x = np.array([0.0, 0.5, 1.0]) + height = 1. + pitch = 4. + gcr = 2. / pitch + surface_tilt = 30. # angle from horizontal to the back of the module + psi0, psi1 = infinite_sheds._ground_sky_angles(x, gcr, height, + surface_tilt, pitch) + expected_psi0 = np.array([150., 126.2060231, 75.]) + expected_psi1 = np.array([15., 20.10390936, 30.]) + assert np.allclose(psi0, expected_psi0) + assert np.allclose(psi1, expected_psi1) FZ0_LIMIT = 1.4619022000815438 # infinite_sheds.f_z0_limit(*ARGS) @@ -91,24 +99,17 @@ def test__ground_sky_angles(): def test__ground_sky_angles_prev(): - if HEIGHT > 0: - # check limit at z=0, these are the same as z=1 of the previous row - assert np.allclose( - infinite_sheds._ground_sky_angles_prev(0, *ARGS), - (PSI_0_X1, PSI_1_X1)) - # check limit at z=z0_limit, angles must sum to 180 - assert np.isclose( - sum(infinite_sheds._ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), - np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - infinite_sheds._ground_sky_angles_prev(z_panel, *ARGS)[1], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - infinite_sheds._ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], - PSI_TOP) + height = 1. + pitch = 4. + gcr = 2. / pitch + surface_tilt = 30. # angle from horizontal to the back of the module + x = np.array([0.0, 1.0]) + psi0, psi1 = infinite_sheds._ground_sky_angles_prev( + x, gcr, height, surface_tilt, pitch) + expected_psi0 = np.array([75., 23.7939769]) + expected_psi1 = np.array([30., 180. - 23.7939769]) + assert np.allclose(psi0, expected_psi0) + assert np.allclose(psi1, expected_psi1) FZ1_LIMIT = 1.4619022000815427 # infinite_sheds.f_z1_limit(*ARGS) @@ -117,29 +118,27 @@ def test__ground_sky_angles_prev(): def test__ground_sky_angles_next(): - if HEIGHT > 0: - # check limit at z=1, these are the same as z=0 of the next row beyond - assert np.allclose( - infinite_sheds._ground_sky_angles_next(1, *ARGS), - (PSI_0_X0, PSI_1_X0)) - # check limit at zprime=z1_limit, angles must sum to 180 - sum_angles_z1_limit = sum( - infinite_sheds._ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) - assert np.isclose(sum_angles_z1_limit, np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - infinite_sheds._ground_sky_angles_next(z_panel, *ARGS)[0], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - infinite_sheds._ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], - PSI_TOP_BACK) - - -def test__diffuse_fraction(): - df = infinite_sheds._diffuse_fraction(GHI, DHI) - assert np.allclose(df, DF, equal_nan=True) + height = 1. + pitch = 4. + gcr = 2. / pitch + surface_tilt = 30. # angle from horizontal to the back of the module + x = np.array([0., 1.0]) + psi0, psi1 = infinite_sheds._ground_sky_angles_next( + x, gcr, height, surface_tilt, pitch) + expected_psi0 = np.array([180 - 9.8960906389, 150.]) + expected_psi1 = np.array([9.8960906389, 15.]) + assert np.allclose(psi0, expected_psi0) + assert np.allclose(psi1, expected_psi1) + + +def test__sky_angle(gcr, surface_tilt, x): + pitch = 4. + gcr = 2. / pitch + surface_tilt = 30. # angle from horizontal to the back of the module + x = np.array([0., 1.0]) + result = infinite_sheds._sky_angle(gcr, surface_tilt, x) + expected = np.array([np.rad2deg(np.arctan2(1, 4 - np.sqrt(3))), 0.]) + assert np.allclose(result, expected) VF_GND_SKY = 0.5184093800689326 @@ -185,19 +184,6 @@ def test__poa_ground_sky(): assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) -def test__sky_angle(): - # frontside - psi_top_f, tan_psi_top_f = infinite_sheds._sky_angle( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(psi_top_f, TESTDATA.psi_top_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - psi_top_b, tan_psi_top_b = infinite_sheds._sky_angle( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(psi_top_b, TESTDATA.psi_top_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - def test__sky_angle_tangent(): # frontside tan_psi_top_f = infinite_sheds._sky_angle_tangent( From b6c60b18e504d1c92ac3f321c34ebd54c3cb4152 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 8 Dec 2021 17:06:52 -0700 Subject: [PATCH 057/115] more tests, fix error in _sky_angle --- pvlib/bifacial/infinite_sheds.py | 2 +- pvlib/tests/bifacial/test_infinite_sheds.py | 62 +++++++++++---------- 2 files changed, 33 insertions(+), 31 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index de8446515d..e1b92f2873 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -675,7 +675,7 @@ def _sky_angle(gcr, surface_tilt, x): y = 1.0 - x x1 = y * sind(surface_tilt) - x2 = (1/gcr - y * sind(surface_tilt)) + x2 = (1/gcr - y * cosd(surface_tilt)) tan_psi_top = x1 / x2 psi_top = np.rad2deg(np.arctan2(x1, x2)) return psi_top, tan_psi_top diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index dfb2b490d6..98e6d48ad1 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -7,8 +7,10 @@ import pandas as pd from pvlib.bifacial import infinite_sheds - +import pytest from ..conftest import DATA_DIR + + TESTDATA = os.path.join(DATA_DIR, 'infinite_sheds.csv') # location and irradiance @@ -61,7 +63,7 @@ gcr, height, surface_tilt, pitch = ARGS def test__gcr_prime(): - result = infinite_sheds._gcr_prime(gcr = 0.5, height=1, surface_tilt=20, + result = infinite_sheds._gcr_prime(gcr=0.5, height=1, surface_tilt=20, pitch=4) assert np.isclose(result, 1.2309511000407718) @@ -79,14 +81,18 @@ def test__gcr_prime(): PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 -def test__ground_sky_angles(): +@pytest.fixture +def test_system(): + syst = {'height': 1., + 'pitch': 4., + 'surface_tilt': 30} + syst['gcr'] = 2.0 / syst['pitch'] + return syst + + +def test__ground_sky_angles(test_system): x = np.array([0.0, 0.5, 1.0]) - height = 1. - pitch = 4. - gcr = 2. / pitch - surface_tilt = 30. # angle from horizontal to the back of the module - psi0, psi1 = infinite_sheds._ground_sky_angles(x, gcr, height, - surface_tilt, pitch) + psi0, psi1 = infinite_sheds._ground_sky_angles(x, **test_system) expected_psi0 = np.array([150., 126.2060231, 75.]) expected_psi1 = np.array([15., 20.10390936, 30.]) assert np.allclose(psi0, expected_psi0) @@ -98,14 +104,9 @@ def test__ground_sky_angles(): PSI_TOP = 0.3120297392978313 -def test__ground_sky_angles_prev(): - height = 1. - pitch = 4. - gcr = 2. / pitch - surface_tilt = 30. # angle from horizontal to the back of the module +def test__ground_sky_angles_prev(test_system): x = np.array([0.0, 1.0]) - psi0, psi1 = infinite_sheds._ground_sky_angles_prev( - x, gcr, height, surface_tilt, pitch) + psi0, psi1 = infinite_sheds._ground_sky_angles_prev(x, **test_system) expected_psi0 = np.array([75., 23.7939769]) expected_psi1 = np.array([30., 180. - 23.7939769]) assert np.allclose(psi0, expected_psi0) @@ -117,30 +118,31 @@ def test__ground_sky_angles_prev(): PSI_TOP_BACK = 0.11582480672702507 -def test__ground_sky_angles_next(): - height = 1. - pitch = 4. - gcr = 2. / pitch - surface_tilt = 30. # angle from horizontal to the back of the module +def test__ground_sky_angles_next(test_system): x = np.array([0., 1.0]) - psi0, psi1 = infinite_sheds._ground_sky_angles_next( - x, gcr, height, surface_tilt, pitch) + psi0, psi1 = infinite_sheds._ground_sky_angles_next(x, **test_system) expected_psi0 = np.array([180 - 9.8960906389, 150.]) expected_psi1 = np.array([9.8960906389, 15.]) assert np.allclose(psi0, expected_psi0) assert np.allclose(psi1, expected_psi1) -def test__sky_angle(gcr, surface_tilt, x): - pitch = 4. - gcr = 2. / pitch - surface_tilt = 30. # angle from horizontal to the back of the module +def test__sky_angle(test_system): x = np.array([0., 1.0]) - result = infinite_sheds._sky_angle(gcr, surface_tilt, x) - expected = np.array([np.rad2deg(np.arctan2(1, 4 - np.sqrt(3))), 0.]) - assert np.allclose(result, expected) + angle, tan_angle = infinite_sheds._sky_angle( + test_system['gcr'], test_system['surface_tilt'], x) + exp_tan_angle = np.array([1. / (4 - np.sqrt(3)), 0.]) + exp_angle = np.array([23.79397689, 0.]) + assert np.allclose(angle, exp_angle) + assert np.allclose(tan_angle, exp_tan_angle) + +def test__f_z0_limit(test_system): + result = infinite_sheds._f_z0_limit(**test_system) + expected = 1.0 + assert np.isclose(result, expected) + VF_GND_SKY = 0.5184093800689326 FZ_SKY = np.array([ 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, From 66f0350c50cd97dc303a01631a425cf348f9d860 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 12 Dec 2021 21:08:23 -0700 Subject: [PATCH 058/115] more tests and docstring work --- pvlib/bifacial/infinite_sheds.py | 170 ++++++++++--------- pvlib/tests/bifacial/test_infinite_sheds.py | 171 +++++++++++++++++--- 2 files changed, 230 insertions(+), 111 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index e1b92f2873..4e7cf9c185 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -269,6 +269,12 @@ def _f_z0_limit(gcr, height, surface_tilt, pitch): F_{z0,limit} = \\frac{h}{P} \\left( \\frac{1}{\\tan \\beta} + \\frac{1}{\\tan \\psi_t}\\right) + The limit position, :math:`z_0`, is at the intersection with the ground + of the line tangent to the bottom of the previous row and the top of the + row in front of the previous row. The position is the distance from the + previous row's projection to the ground to the intersection point, divided + by the row pitch. :math:`z_0` is positive toward the back of the array. + Parameters ---------- gcr : numeric @@ -284,10 +290,8 @@ def _f_z0_limit(gcr, height, surface_tilt, pitch): Returns ------- - z1 : numeric - The point on the ground, :math:`z_0`, which is on the line - tangent to the bottom of the previous row and the top of the row in - front of the previous row. + z0 : numeric + Limit position on the ground. [unitless] """ _, tan_psi_t_x0 = _sky_angle(gcr, surface_tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) @@ -382,6 +386,12 @@ def _f_z1_limit(gcr, height, surface_tilt, pitch): F_{z1,limit} = \\frac{h}{P} \\left( \\frac{1}{\\tan \\psi_t} - \\frac{1}{\\tan \\beta}\\right) + The limit position, :math:`z_1`, is at the intersection with the ground + of the line tangent to the bottom of the next row and the top of the row + behind the next row. The position is the distance from the next row's + projection to the ground to the intersection point, divided by the row + pitch. :math:`z_1` is positive toward the front of the array. + Parameters ---------- gcr : numeric @@ -397,34 +407,35 @@ def _f_z1_limit(gcr, height, surface_tilt, pitch): Returns ------- z1 : numeric - The point on the ground, :math:`z_1^\\prime`, which is on the line - tangent to the bottom of the next row and the top of the row behind - the next row. + Limit position on the ground. [unitless] """ - tan_psi_t_x1 = _sky_angle(gcr, 180. - surface_tilt, 0.0) + _, tan_psi_t_x1 = _sky_angle(gcr, 180. - surface_tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) # TODO: make sure that it is clear psi_1 is a supplement (angle from negative # x axis) -def _calc_fz_sky(psi_0, psi_1): +def _vf_sky(psi_0, psi_1): """ - Calculate the view factor for point "z" on the ground to the visible - diffuse sky subtended by the angles :math:`\\psi_0` and :math:`\\psi_1`. + Calculate the view factor from the ground to the wedge of the visible + sky bounded by the angles :math:`\\psi_0` and :math:`\\psi_1`. + + Angle :math:`\\psi_0` is expected to be counterclockwise from the + positive x-axis, and angle :math:`\\psi_1` is expected to be clockwise + from the negative x-axis. Parameters ---------- psi_0 : numeric - angle from ground to sky before point "z". [degree] + angle from ground to sky, anti-clockwise from positive x-axis. [degree] psi_1 : numeric - angle from ground to sky after point "z". [degree] + angle from ground to sky, clockwise from positive x-axis. [degree] Returns ------- fz_sky : numeric - fraction of energy from the diffuse sky dome that is incident on the - ground at point "z" + fraction of the sky dome that bounded by the input angles. """ return (cosd(psi_0) + cosd(psi_1)) / 2. @@ -432,10 +443,9 @@ def _calc_fz_sky(psi_0, psi_1): # TODO: move to util # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row -def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, - npoints=100): +def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): """ - Calculate the view factor from each point on the ground between adjacent, + View factors from an array of points on the ground between adjacent, interior rows, to the sky. The view factor is equal to the fraction of sky hemisphere visible at each @@ -473,12 +483,13 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, 0.0 if (1 - fz1_limit) > 0 else (1 - fz1_limit), 1.0 if fz0_limit < 1 else fz0_limit, 3*npoints) - # calculate the angles psi_0 and psi_1 that subtend the sky visible - # from between rows - psi_z = _ground_sky_angles(fz, *args) - # front edge - psi_z0 = _ground_sky_angles_prev(fz, *args) - fz_sky_next = _calc_fz_sky(*psi_z0) + # calculate the angles psi_0 and psi_1 that bound the sky visible + # from between the previous and next rows + psi_0, psi_1 = _ground_sky_angles(fz, *args) + # angles for portions of sky visible between rows in front of previous + # row + psi_0_front, psi_1_front = _ground_sky_angles_prev(fz, *args) + fz_sky_next = _vf_sky(psi_0_front, psi_1_front) fz0_sky_next = [] prev_row = 0.0 # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) @@ -486,18 +497,18 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, while (fz0_limit - prev_row) > 0: fz0_sky_next.append(np.interp(fz + prev_row, fz, fz_sky_next)) prev_row += 1.0 - # back edge - psi_z1 = _ground_sky_angles_next(fz, *args) - fz_sky_prev = _calc_fz_sky(*psi_z1) + # angles for portions of the sky visible between rows behind the next row + psi_0_back, psi_1_back = _ground_sky_angles_next(fz, *args) + fz_sky_prev = _vf_sky(psi_0_back, psi_1_back) fz1_sky_prev = [] next_row = 0.0 - # loop over rows by subtracting 1.0 to fz until next_row < ceil(fz1_limit) + # loop over rows, subtracting 1.0 from fz until next_row < ceil(fz1_limit) while (fz1_limit - next_row) > 0: fz1_sky_prev.append(np.interp(fz - next_row, fz, fz_sky_prev)) next_row += 1.0 # calculate the view factor of the sky from the ground at point z fz_sky = ( - _calc_fz_sky(*psi_z) # current row + _vf_sky(psi_0, psi_1) # current row + np.sum(fz0_sky_next, axis=0) # sum of all next rows + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows # we just need one row, fz in range [0, 1] @@ -505,7 +516,7 @@ def _ground_sky_diffuse_view_factor(gcr, height, surface_tilt, pitch, return fz_row, np.interp(fz_row, fz, fz_sky) -def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): +def _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, npoints=100): """ Integrated and per-point view factors from the ground to the sky at points between interior rows of the array. @@ -539,7 +550,7 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): args = gcr, height, surface_tilt, pitch # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back - z_star, fz_sky = _ground_sky_diffuse_view_factor(*args, npoints=npoints) + z_star, fz_sky = _vf_ground_sky(*args, npoints=npoints) # calculate the integrated view factor for all of the ground between rows fgnd_sky = np.trapz(fz_sky, z_star) @@ -573,7 +584,7 @@ def _calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): # calculate the view factor of the diffuse sky from the ground between rows # and integrate the view factor for all of the ground between rows - fgnd_sky, _, _ = _vf_ground_sky(*args, npoints=npoints) + fgnd_sky, _, _ = _vf_ground_sky_integ(*args, npoints=npoints) # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, # and all of the ground is visible, so the view factor is just @@ -592,25 +603,7 @@ def _calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): return fskyz, fgnd_pv -def _diffuse_fraction(ghi, dhi): - """ - ratio of DHI to GHI - - Parameters - ---------- - ghi : numeric - Global horizontal irradiance (GHI). [W/m^2] - dhi : numeric - Diffuse horizontal irradiance (DHI). [W/m^2] - - Returns - ------- - df : numeric - diffuse fraction - """ - return dhi / ghi - - +# TODO: not tested def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ Reduce ground-reflected irradiance to the tilted plane (poa_ground) to @@ -681,10 +674,10 @@ def _sky_angle(gcr, surface_tilt, x): return psi_top, tan_psi_top -def _f_sky_diffuse_pv(gcr, surface_tilt, f_x, npoints=100): +def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): """ - Integrated view factors of the sky from the shaded and unshaded parts of - the row slant height. + Integrated view factors from the shaded and unshaded parts of + the row slant height to the sky. Parameters ---------- @@ -700,10 +693,10 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, f_x, npoints=100): Returns ------- - f_sky_pv_shade : numeric + vf_shade_sky_integ : numeric Integrated view factor from the shaded part of the row to the sky. [unitless] - f_sky_pv_noshade : numeric + vf_noshade_sky_integ : numeric Integrated view factor from the unshaded part of the row to the sky. [unitless] @@ -730,20 +723,20 @@ def _f_sky_diffuse_pv(gcr, surface_tilt, f_x, npoints=100): cst = cosd(surface_tilt) # shaded portion x = np.linspace(0 * f_x, f_x, num=npoints, axis=0) - psi_t_shaded = _sky_angle(gcr, surface_tilt, x) + psi_t_shaded, _ = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_shaded) + cst) # integrate view factors from each point in the discretization. This is an # improvement over the algorithm described in [2] - f_sky_pv_shade = np.trapz(y, x, axis=0) + vf_shade_sky_integ = np.trapz(y, x, axis=0) # unshaded portion x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) - psi_t_unshaded = _sky_angle(gcr, surface_tilt, x) + psi_t_unshaded, _ = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_unshaded) + cst) - f_sky_pv_noshade = np.trapz(y, x, axis=0) - return f_sky_pv_shade, f_sky_pv_noshade + vf_noshade_sky_integ = np.trapz(y, x, axis=0) + return vf_shade_sky_integ, vf_noshade_sky_integ -def _poa_sky_diffuse_pv(dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade): +def _poa_sky_diffuse_pv(dhi, f_x, vf_shade_sky_integ, vf_noshade_sky_integ): """ Sky diffuse POA from integrated view factors combined for both shaded and unshaded parts of the surface. @@ -754,24 +747,24 @@ def _poa_sky_diffuse_pv(dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade): Diffuse horizontal irradiance (DHI). [W/m^2] f_x : numeric Fraction of row slant height from the bottom that is shaded. [unitless] - f_sky_pv_shade : numeric - Integrated (average) view factor to the sky from the shaded part of - the PV surface. [unitless] - f_sky_pv_noshade : numeric - Integrated (average) view factor to the sky from the unshaded part of - the PV surface. [unitless] + vf_shade_sky_integ : numeric + Integrated view factor from the shaded part of the row to the sky. + [unitless] + vf_noshade_sky_integ : numeric + Integrated view factor from the unshaded part of the row to the sky. + [unitless] Returns ------- poa_sky_diffuse_pv : numeric Total sky diffuse irradiance incident on the PV surface. [W/m^2] """ - return dhi * (f_x * f_sky_pv_shade + (1 - f_x) * f_sky_pv_noshade) + return dhi * (f_x * vf_shade_sky_integ + (1 - f_x) * vf_noshade_sky_integ) def _ground_angle(gcr, surface_tilt, x): """ - Angle from horizontal to the line from a point x on the row slant length + Angle from horizontal of the line from a point x on the row slant length to the bottom of the facing row. The angles returned are measured clockwise from horizontal, rather than @@ -827,12 +820,12 @@ def _vf_row_ground(gcr, surface_tilt, x): cst = cosd(surface_tilt) # angle from each point x on the row slant height to the bottom of the # facing row - psi_t_shaded = _ground_angle(gcr, surface_tilt, x) + psi_t_shaded, _ = _ground_angle(gcr, surface_tilt, x) # view factor from the point on the row to the ground return 0.5 * (cosd(psi_t_shaded) - cst) -def _f_ground_pv(gcr, surface_tilt, f_x, npoints=100): +def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): """ View factors to the ground from shaded and unshaded parts of a row. @@ -850,12 +843,12 @@ def _f_ground_pv(gcr, surface_tilt, f_x, npoints=100): Returns ------- - f_gnd_pv_shade : numeric - View factor from the row to the ground integrated over the shaded - portion of the row slant height. - f_gnd_pv_noshade : numeric - View factor from the row to the ground integrated over the unshaded - portion of the row slant height. + vf_shade_ground_integ : numeric + View factor from the shaded portion of the row to the ground. + [unitless] + vf_noshade_ground_integ : numeric + View factor from the unshaded portion of the row to the ground. + [unitless] Notes ----- @@ -878,7 +871,7 @@ def _f_ground_pv(gcr, surface_tilt, f_x, npoints=100): y = _vf_row_ground(gcr, surface_tilt, x) # integrate view factors along the shaded portion of the row slant height. # This is an improvement over the algorithm described in [2] - f_gnd_pv_shade = np.trapz(y, x, axis=0) + vf_shade_ground_integ = np.trapz(y, x, axis=0) # unshaded portion of row slant height x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) @@ -886,9 +879,9 @@ def _f_ground_pv(gcr, surface_tilt, f_x, npoints=100): y = _vf_row_ground(gcr, surface_tilt, x) # integrate view factors along the unshaded portion. # This is an improvement over the algorithm described in [2] - f_gnd_pv_noshade = np.trapz(y, x, axis=0) + vf_noshade_ground_integ = np.trapz(y, x, axis=0) - return f_gnd_pv_shade, f_gnd_pv_noshade + return vf_shade_ground_integ, vf_noshade_ground_integ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): @@ -1023,8 +1016,8 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array - vf_gnd_sky, _, _ = _vf_ground_sky(gcr, height, surface_tilt, pitch, - npoints) + vf_gnd_sky, _, _ = _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, + npoints) # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, @@ -1033,9 +1026,9 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, _, tan_psi_top = _sky_angle(gcr, surface_tilt, f_x) # angle from top of next row to bottom of current row _, tan_psi_top_0 = _sky_angle(gcr, surface_tilt, 0.0) - # fractions of the sky visible from the shaded and unshaded parts of the - # row slant height - f_sky_pv_shade, f_sky_pv_noshade = _f_sky_diffuse_pv( + # Integrated view factors to the sky from the shaded and unshaded parts of + # the row slant height + vf_shade_sky, vf_noshade_sky = _vf_row_sky_integ( gcr, surface_tilt, f_x) # angle from shadeline to bottom of facing row psi_shade, _ = _ground_angle(gcr, surface_tilt, f_x) @@ -1043,7 +1036,8 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, psi_bottom, _ = _ground_angle(gcr, surface_tilt, 1.0) # view factors from the ground to shaded and unshaded portions of the row # slant height - f_gnd_pv_shade, f_gnd_pv_noshade = _f_ground_pv(gcr, surface_tilt, f_x) + f_gnd_pv_shade, f_gnd_pv_noshade = _vf_row_ground_integ( + gcr, surface_tilt, f_x) # Calculate some preliminary irradiance quantities # diffuse fraction @@ -1055,7 +1049,7 @@ def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, solar_azimuth, dni) # Total sky diffuse recieved by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( - dhi, f_x, f_sky_pv_shade, f_sky_pv_noshade) + dhi, f_x, vf_shade_sky, vf_noshade_sky) # Reduce ground-reflected irradiance because other rows in the array # block irradiance from reaching the ground. diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 98e6d48ad1..edf348ddde 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,6 +6,7 @@ import numpy as np import pandas as pd from pvlib.bifacial import infinite_sheds +from pvlib.tools import cosd import pytest from ..conftest import DATA_DIR @@ -143,6 +144,153 @@ def test__f_z0_limit(test_system): assert np.isclose(result, expected) +def test__f_z1_limit(test_system): + result = infinite_sheds._f_z1_limit(**test_system) + expected = 1.0 + assert np.isclose(result, expected) + + +def test__vf_sky(): + result = infinite_sheds._vf_sky(np.array([0.0, 30.0, 90.]), + np.array([0.0, 30.0, 90.])) + expected = np.array([1., np.sqrt(3) / 2, 0.]) + assert np.allclose(result, expected) + + +def test__vf_ground_sky(test_system): + pts, vfs = infinite_sheds._vf_ground_sky(**test_system, npoints=3) + expected_pts = np.linspace(0, 1, num=3) + sqr3 = np.sqrt(3) + # at f_z=0 + vf_0 = 0.5 * ((2 + sqr3) / np.sqrt(8 + 4 * sqr3) - sqr3 / 2) + # at f_z=0.5 + vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) + - np.sqrt(2 - sqr3) / 2) + vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) + - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) + vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) + - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) + vf_05 = vf_05_pre + vf_05_mid + vf_05_nex + # at f_z=1.0 + vf_1 = 0.5 * ((4 - 2 * sqr3) / 4 / np.sqrt(2 - sqr3) + sqr3 / 2) + expected_vfs = np.array([vf_0 + vf_1, vf_05, vf_0 + vf_1]) + assert np.allclose(vfs, expected_vfs, rtol=0.1) # middle point vf is off + assert np.allclose(pts, expected_pts) + + +def test__vf_ground_sky_integ(test_system): + vf_integ, pts, vf_pts = infinite_sheds._vf_ground_sky_integ( + **test_system, npoints=3) + expected_pts = np.linspace(0, 1, num=3) + sqr3 = np.sqrt(3) + # at f_z=0 + vf_0 = 0.5 * ((2 + sqr3) / np.sqrt(8 + 4 * sqr3) - sqr3 / 2) + # at f_z=0.5 + vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) + - np.sqrt(2 - sqr3) / 2) + vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) + - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) + vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) + - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) + vf_05 = vf_05_pre + vf_05_mid + vf_05_nex + # at f_z=1.0 + vf_1 = 0.5 * ((4 - 2 * sqr3) / 4 / np.sqrt(2 - sqr3) + sqr3 / 2) + expected_vfs = np.array([vf_0 + vf_1, vf_05, vf_0 + vf_1]) + expected_vf_integ = np.trapz(expected_vfs, pts) + assert np.allclose(pts, expected_pts) + assert np.allclose(vf_pts, expected_vfs, rtol=0.1) + assert np.isclose(vf_integ, expected_vf_integ, rtol=0.1) + + +def test__vf_row_sky_integ(test_system): + gcr = test_system['gcr'] + surface_tilt = test_system['surface_tilt'] + f_x = np.array([0., 0.5, 1.]) + shaded = [] + noshade = [] + for x in f_x: + s, ns = infinite_sheds._vf_row_sky_integ(gcr, surface_tilt, x, + npoints=100) + shaded.append(s) + noshade.append(ns) + def analytic(gcr, surface_tilt, x): + c = cosd(surface_tilt) + a = 1. / gcr + dx = np.sqrt(a**2 - 2 * a * c * x + x**2) + return - a * (c**2 - 1) * np.arctanh((x - a * c) / dx) - c * dx + expected_shade = 0.5 * (f_x * cosd(surface_tilt) + - analytic(gcr, surface_tilt, 1 - f_x) + + analytic(gcr, surface_tilt, 1.)) + expected_noshade = 0.5 * ((1 - f_x) * cosd(surface_tilt) + + analytic(gcr, surface_tilt, 1. - f_x) + - analytic(gcr, surface_tilt, 0.)) + shaded = np.array(shaded) + noshade = np.array(noshade) + assert np.allclose(shaded, expected_shade) + assert np.allclose(noshade, expected_noshade) + + +def test__poa_sky_diffuse_pv(): + dhi = np.array([np.nan, 0.0, 500.]) + f_x = np.array([0.2, 0.2, 0.5]) + vf_shade_sky_integ = np.array([1.0, 0.5, 0.2]) + vf_noshade_sky_integ = np.array([0.0, 0.5, 0.8]) + poa = infinite_sheds._poa_sky_diffuse_pv( + dhi, f_x, vf_shade_sky_integ, vf_noshade_sky_integ) + expected_poa = np.array([np.nan, 0.0, 500 * (0.5 * 0.2 + 0.5 * 0.8)]) + assert np.allclose(poa, expected_poa, equal_nan=True) + + +def test__ground_angle(test_system): + x = np.array([0., 0.5, 1.0]) + angles, tan_angles = infinite_sheds._ground_angle( + test_system['gcr'], test_system['surface_tilt'], x) + expected_angles = np.array([0., 5.866738789543952, 9.896090638982903]) + expected_tan_angles = np.array([0., 0.5 / (4 + np.sqrt(3) / 2.), + 1. / (4 + np.sqrt(3))]) + assert np.allclose(angles, expected_angles) + assert np.allclose(tan_angles, expected_tan_angles) + + +def test__vf_row_ground(gcr, surface_tilt, x): + x = np.array([0., 0.5, 1.0]) + sqr3 = np.sqrt(3) + vfs = infinite_sheds._vf_row_ground( + test_system['gcr'], test_system['surface_tilt'], x) + expected_vfs = np.array([ + 1., 0.5 * ((4 + sqr3 / 2) / np.sqrt(17 + 4 * sqr3) - sqr3 / 2), + 0.5 * ((4 + sqr3) / np.sqrt(20 + 8 * sqr3) - sqr3 / 2)]) + assert np.allclose(vfs, expected_vfs) + + +def test__vf_row_ground_integ(test_system): + gcr = test_system['gcr'] + surface_tilt = test_system['surface_tilt'] + f_x = np.array([0., 0.5, 1.0]) + shaded = [] + noshade = [] + for x in f_x: + s, ns = infinite_sheds._vf_row_ground_integ( + gcr, surface_tilt, x) + shaded.append(s) + noshade.append(ns) + def analytic(gcr, surface_tilt, x): + c = cosd(surface_tilt) + a = 1. / gcr + dx = np.sqrt(a**2 + 2 * a * c * x + x**2) + return c * dx - a * (c**2 - 1) * np.arctanh((a * c + x) / dx) + shaded = np.array(shaded) + noshade = np.array(noshade) + expected_shade = 0.5 * (analytic(gcr, surface_tilt, f_x) + - analytic(gcr, surface_tilt, 0.) + - f_x * cosd(surface_tilt)) + expected_noshade = 0.5 * (analytic(gcr, surface_tilt, 1.) + - analytic(gcr, surface_tilt, f_x) + - (1. - f_x) * cosd(surface_tilt)) + assert np.allclose(shaded, expected_shade) + assert np.allclose(noshade, expected_noshade) + + VF_GND_SKY = 0.5184093800689326 FZ_SKY = np.array([ 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, @@ -167,12 +315,6 @@ def test__f_z0_limit(test_system): 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) -def test__vf_ground_sky(): - vf_gnd_sky, fz_sky = infinite_sheds._vf_ground_sky(*ARGS) - assert np.isclose(vf_gnd_sky, VF_GND_SKY) - assert np.allclose(fz_sky, FZ_SKY) - - def test__poa_ground_sky(): # front side poa_gnd_sky_f = infinite_sheds._poa_ground_sky( @@ -186,23 +328,6 @@ def test__poa_ground_sky(): assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) -def test__sky_angle_tangent(): - # frontside - tan_psi_top_f = infinite_sheds._sky_angle_tangent( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - tan_psi_top_b = infinite_sheds._sky_angle_tangent( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - tan_psi_top_f = infinite_sheds._sky_angle_tangent(GCR, TILT_RAD, 0.0) - assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) - # backside - tan_psi_top_b = infinite_sheds._sky_angle_tangent( - GCR, BACK_TILT_RAD, 0.0) - assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) - - if __name__ == '__main__': from matplotlib import pyplot as plt plt.ion() From aae4d1267847df4ece40ccaf477c1bef2951fe5d Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 08:49:46 -0700 Subject: [PATCH 059/115] stickler --- pvlib/bifacial/infinite_sheds.py | 2 +- pvlib/tests/bifacial/test_infinite_sheds.py | 29 ++++++++++++--------- pvlib/tests/bifacial/test_pvfactors.py | 12 ++++++--- 3 files changed, 26 insertions(+), 17 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 4e7cf9c185..fb40b2184d 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -420,7 +420,7 @@ def _vf_sky(psi_0, psi_1): """ Calculate the view factor from the ground to the wedge of the visible sky bounded by the angles :math:`\\psi_0` and :math:`\\psi_1`. - + Angle :math:`\\psi_0` is expected to be counterclockwise from the positive x-axis, and angle :math:`\\psi_1` is expected to be clockwise from the negative x-axis. diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index edf348ddde..79f765f4d7 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -63,6 +63,7 @@ gcr, height, surface_tilt, pitch = ARGS + def test__gcr_prime(): result = infinite_sheds._gcr_prime(gcr=0.5, height=1, surface_tilt=20, pitch=4) @@ -85,8 +86,8 @@ def test__gcr_prime(): @pytest.fixture def test_system(): syst = {'height': 1., - 'pitch': 4., - 'surface_tilt': 30} + 'pitch': 4., + 'surface_tilt': 30} syst['gcr'] = 2.0 / syst['pitch'] return syst @@ -143,7 +144,7 @@ def test__f_z0_limit(test_system): expected = 1.0 assert np.isclose(result, expected) - + def test__f_z1_limit(test_system): result = infinite_sheds._f_z1_limit(**test_system) expected = 1.0 @@ -166,9 +167,9 @@ def test__vf_ground_sky(test_system): # at f_z=0.5 vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) - np.sqrt(2 - sqr3) / 2) - vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) + vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) - vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) + vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) vf_05 = vf_05_pre + vf_05_mid + vf_05_nex # at f_z=1.0 @@ -188,9 +189,9 @@ def test__vf_ground_sky_integ(test_system): # at f_z=0.5 vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) - np.sqrt(2 - sqr3) / 2) - vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) + vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) - vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) + vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) vf_05 = vf_05_pre + vf_05_mid + vf_05_nex # at f_z=1.0 @@ -200,7 +201,7 @@ def test__vf_ground_sky_integ(test_system): assert np.allclose(pts, expected_pts) assert np.allclose(vf_pts, expected_vfs, rtol=0.1) assert np.isclose(vf_integ, expected_vf_integ, rtol=0.1) - + def test__vf_row_sky_integ(test_system): gcr = test_system['gcr'] @@ -213,17 +214,19 @@ def test__vf_row_sky_integ(test_system): npoints=100) shaded.append(s) noshade.append(ns) + def analytic(gcr, surface_tilt, x): c = cosd(surface_tilt) a = 1. / gcr dx = np.sqrt(a**2 - 2 * a * c * x + x**2) return - a * (c**2 - 1) * np.arctanh((x - a * c) / dx) - c * dx + expected_shade = 0.5 * (f_x * cosd(surface_tilt) - analytic(gcr, surface_tilt, 1 - f_x) - + analytic(gcr, surface_tilt, 1.)) - expected_noshade = 0.5 * ((1 - f_x) * cosd(surface_tilt) + + analytic(gcr, surface_tilt, 1.)) + expected_noshade = 0.5 * ((1 - f_x) * cosd(surface_tilt) + analytic(gcr, surface_tilt, 1. - f_x) - - analytic(gcr, surface_tilt, 0.)) + - analytic(gcr, surface_tilt, 0.)) shaded = np.array(shaded) noshade = np.array(noshade) assert np.allclose(shaded, expected_shade) @@ -274,11 +277,13 @@ def test__vf_row_ground_integ(test_system): gcr, surface_tilt, x) shaded.append(s) noshade.append(ns) + def analytic(gcr, surface_tilt, x): c = cosd(surface_tilt) a = 1. / gcr dx = np.sqrt(a**2 + 2 * a * c * x + x**2) return c * dx - a * (c**2 - 1) * np.arctanh((a * c + x) / dx) + shaded = np.array(shaded) noshade = np.array(noshade) expected_shade = 0.5 * (analytic(gcr, surface_tilt, f_x) @@ -290,7 +295,7 @@ def analytic(gcr, surface_tilt, x): assert np.allclose(shaded, expected_shade) assert np.allclose(noshade, expected_noshade) - + VF_GND_SKY = 0.5184093800689326 FZ_SKY = np.array([ 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, diff --git a/pvlib/tests/bifacial/test_pvfactors.py b/pvlib/tests/bifacial/test_pvfactors.py index e9daf54bbd..2f68c656e4 100644 --- a/pvlib/tests/bifacial/test_pvfactors.py +++ b/pvlib/tests/bifacial/test_pvfactors.py @@ -6,9 +6,11 @@ @requires_pvfactors def test_pvfactors_timeseries(): - """ Test that pvfactors is functional, using the TLDR section inputs of the + """ + Test that pvfactors is functional, using the TLDR section inputs of the package github repo README.md file: - https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start""" + https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start + """ # noqa: E501 # Create some inputs timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), @@ -54,9 +56,11 @@ def test_pvfactors_timeseries(): @requires_pvfactors def test_pvfactors_timeseries_pandas_inputs(): - """ Test that pvfactors is functional, using the TLDR section inputs of the + """ + Test that pvfactors is functional, using the TLDR section inputs of the package github repo README.md file, but converted to pandas Series: - https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start""" + https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start + """ # noqa: E501 # Create some inputs timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), From e87cc035cf5e35b18b5d3d60c4776f05822948d7 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 11:22:15 -0700 Subject: [PATCH 060/115] remove old test file, test fixes --- pvlib/bifacial/utils.py | 3 + pvlib/tests/bifacial/test_infinite_sheds.py | 2 +- pvlib/tests/bifacial/test_utils.py | 2 +- pvlib/tests/test_infinite_sheds_old.py | 299 -------------------- 4 files changed, 5 insertions(+), 301 deletions(-) delete mode 100644 pvlib/tests/test_infinite_sheds_old.py diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index b8f80643f9..3a34bec397 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -12,6 +12,9 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Tangent of the angle between the sun vector projected to the YZ-plane (vertical and perpendicular to rows) and the zenith vector. + Tangent is positive when the projection of the sun vector is in the same + hemisphere as the system azimuth. + .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} \\right)\\tan\\left(\\text{solar zenith}\\right) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 2b74dc6b24..792223d857 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -255,7 +255,7 @@ def test__ground_angle(test_system): assert np.allclose(tan_angles, expected_tan_angles) -def test__vf_row_ground(gcr, surface_tilt, x): +def test__vf_row_ground(test_system): x = np.array([0., 0.5, 1.0]) sqr3 = np.sqrt(3) vfs = infinite_sheds._vf_row_ground( diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index a35329429e..7e62775f68 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -19,7 +19,7 @@ def test_solar_projection_tangent(): tan_phi_b = utils.solar_projection_tangent( 30, 150, 0) assert np.allclose(tan_phi_f, 0.5) - assert np.allclose(tan_phi_b, 0.5) + assert np.allclose(tan_phi_b, -0.5) assert np.allclose(tan_phi_f, -tan_phi_b) diff --git a/pvlib/tests/test_infinite_sheds_old.py b/pvlib/tests/test_infinite_sheds_old.py deleted file mode 100644 index 899a535d47..0000000000 --- a/pvlib/tests/test_infinite_sheds_old.py +++ /dev/null @@ -1,299 +0,0 @@ -""" -test infinite sheds -""" - -import os -import numpy as np -import pandas as pd -import pvlib - -BASEDIR = os.path.dirname(__file__) -PROJDIR = os.path.dirname(BASEDIR) -DATADIR = os.path.join(PROJDIR, 'data') -TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') - -# location and irradiance -LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates - -# PV module orientation -# tilt: positive = facing toward sun, negative = backward -# system-azimuth: positive counter-clockwise from north -TILT, SYSAZ = 20.0, 250.0 -GCR = 0.5 # ground coverage ratio -HEIGHT = 1 # height above ground -PITCH = 4 # row spacing - -# IAM parameters -B0 = 0.05 -MAXAOI = 85 - -# backside -BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} - -# TESTDATA -TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) -GHI, DHI = TESTDATA.ghi, TESTDATA.dhi -# convert #DIV/0 to np.inf, 0/0 to NaN, then convert to float -DF = np.where(GHI > 0, TESTDATA.df, np.inf) -DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) -TESTDATA.df = DF -F_GND_BEAM = TESTDATA['Fsky-gnd'] -BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] -FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] -BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) -FRONT_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_f) - -TAN_PSI_TOP0_F = np.tan(0.312029739) # GCR*SIN(TILT_f)/(1-GCR*COS(TILT_f)) -TAN_PSI_TOP0_B = np.tan(0.115824807) # GCR*SIN(TILT_b)/(1-GCR*COS(TILT_b)) -TAN_PSI_BOT1_F = np.tan(0.115824807) # SIN(TILT_f) / (COS(TILT_f) + 1/GCR) -TAN_PSI_BOT1_B = np.tan(0.312029739) # SIN(TILT_b) / (COS(TILT_b) + 1/GCR) - -# radians -SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) -SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) -SYSAZ_RAD = np.radians(SYSAZ) -BACK_SYSAZ_RAD = np.radians(BACKSIDE['sysaz']) -TILT_RAD = np.radians(TILT) -BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) - - -def test_solar_projection_tangent(): - tan_phi_f = pvlib.infinite_sheds.solar_projection_tangent( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - tan_phi_b = pvlib.infinite_sheds.solar_projection_tangent( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi_f, -tan_phi_b) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - - -def test_solar_projection(): - # frontside - phi_f, tan_phi_f = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, SYSAZ_RAD) - assert np.allclose(tan_phi_f, TESTDATA.tan_phi_f) - assert np.allclose(np.tan(phi_f), tan_phi_f) - # backside - phi_b, tan_phi_b = pvlib.infinite_sheds.solar_projection( - SOLAR_ZENITH_RAD, SOLAR_AZIMUTH_RAD, BACK_SYSAZ_RAD) - assert np.allclose(tan_phi_b, TESTDATA.tan_phi_b) - assert np.allclose(np.tan(phi_b), tan_phi_b) - - -def test_unshaded_ground_fraction(): - # frontside, same for both sides - f_sky_beam_f = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(f_sky_beam_f, F_GND_BEAM) - # backside, should be the same as frontside - f_sky_beam_b = pvlib.infinite_sheds.unshaded_ground_fraction( - GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(f_sky_beam_b, F_GND_BEAM) - - -ARGS = (GCR, HEIGHT, TILT_RAD, PITCH) - - -def test_gcr_prime(): - assert np.isclose(pvlib.infinite_sheds._gcr_prime(*ARGS), - 1.2309511000407718) - - -# calculated ground-sky angles at panel edges -# gcr_prime = pvlib.infinite_sheds._gcr_prime(*ARGS) -# back_tilt_rad = np.pi - tilt_rad -# psi_0_x0 = back_tilt_rad -# psi_1_x0 = np.arctan2( -# gcr_prime * np.sin(back_tilt_rad), 1 - gcr_prime * np.cos(back_tilt_rad)) -PSI_0_X0, PSI_1_X0 = 2.792526803190927, 0.19278450775754705 -# psi_0_x1 = np.arctan2( -# gcr_prime * np.sin(tilt_rad), 1 - gcr_prime * np.cos(tilt_rad)) -# psi_1_x1 = tilt_rad -PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 - - -def test_ground_sky_angles(): - assert np.isclose(PSI_0_X0, np.pi - PSI_1_X1) - # check limit at x=0, these are the same as the back edge of the row beyond - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(0, *ARGS), (PSI_0_X0, PSI_1_X0)) - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles(1, *ARGS), (PSI_0_X1, PSI_1_X1)) - - -FZ0_LIMIT = 1.4619022000815438 # pvlib.infinite_sheds.f_z0_limit(*ARGS) -# np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) -PSI_TOP = 0.3120297392978313 - - -def test_ground_sky_angles_prev(): - if HEIGHT > 0: - # check limit at z=0, these are the same as z=1 of the previous row - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_prev(0, *ARGS), - (PSI_0_X1, PSI_1_X1)) - # check limit at z=z0_limit, angles must sum to 180 - assert np.isclose( - sum(pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)), - np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(z_panel, *ARGS)[1], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_prev(FZ0_LIMIT, *ARGS)[0], - PSI_TOP) - - -FZ1_LIMIT = 1.4619022000815427 # pvlib.infinite_sheds.f_z1_limit(*ARGS) -# np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) -PSI_TOP_BACK = 0.11582480672702507 - - -def test_ground_sky_angles_next(): - if HEIGHT > 0: - # check limit at z=1, these are the same as z=0 of the next row beyond - assert np.allclose( - pvlib.infinite_sheds.ground_sky_angles_next(1, *ARGS), - (PSI_0_X0, PSI_1_X0)) - # check limit at zprime=z1_limit, angles must sum to 180 - sum_angles_z1_limit = sum( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)) - assert np.isclose(sum_angles_z1_limit, np.pi) - # directly under panel, angle should be 90 straight upward! - z_panel = 1 + HEIGHT / PITCH / np.tan(TILT_RAD) - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(z_panel, *ARGS)[0], - np.pi / 2.) - # angles must be the same as psi_top - assert np.isclose( - pvlib.infinite_sheds.ground_sky_angles_next(1 - FZ1_LIMIT, *ARGS)[1], - PSI_TOP_BACK) - - -def test_diffuse_fraction(): - df = pvlib.infinite_sheds.diffuse_fraction(GHI, DHI) - assert np.allclose(df, DF, equal_nan=True) - - -VF_GND_SKY = 0.5184093800689326 -FZ_SKY = np.array([ - 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, - 0.40760977, 0.41546240, 0.42363368, 0.43209234, 0.44079809, - 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, - 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, - 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, - 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, - 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.65683590, - 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, - 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, - 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, - 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, - 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, - 0.61025517, 0.59900195, 0.58719184, 0.57481610, 0.56199241, - 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, - 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, - 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, - 0.37191014, 0.36503340, 0.35906878, 0.35388625, 0.34959679, - 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, - 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, - 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) - - -def test_vf_ground_sky(): - vf_gnd_sky, fz_sky = pvlib.infinite_sheds.vf_ground_sky(*ARGS) - assert np.isclose(vf_gnd_sky, VF_GND_SKY) - assert np.allclose(fz_sky, FZ_SKY) - - -def test_poa_ground_sky(): - # front side - poa_gnd_sky_f = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) - # CSV file decimals are truncated - assert np.allclose( - poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) - # backside - poa_gnd_sky_b = pvlib.infinite_sheds.poa_ground_sky( - TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) - assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) - - -def test_shade_line(): - # front side - fx_f = pvlib.infinite_sheds.shade_line(GCR, TILT_RAD, TESTDATA.tan_phi_f) - assert np.allclose(fx_f, TESTDATA.Fx_f) - # backside - fx_b = pvlib.infinite_sheds.shade_line( - GCR, BACK_TILT_RAD, TESTDATA.tan_phi_b) - assert np.allclose(fx_b, TESTDATA.Fx_b) - - -def test_sky_angles(): - # frontside - psi_top_f, tan_psi_top_f = pvlib.infinite_sheds.sky_angle( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(psi_top_f, TESTDATA.psi_top_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - psi_top_b, tan_psi_top_b = pvlib.infinite_sheds.sky_angle( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(psi_top_b, TESTDATA.psi_top_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - -def test_sky_angle_tangent(): - # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_tangent( - GCR, TILT_RAD, TESTDATA.Fx_f) - assert np.allclose(tan_psi_top_f, FRONT_TAN_PSI_TOP) - # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_tangent( - GCR, BACK_TILT_RAD, TESTDATA.Fx_b) - assert np.allclose(tan_psi_top_b, BACK_TAN_PSI_TOP) - - -def test_sky_angle_0_tangent(): - # frontside - tan_psi_top_f = pvlib.infinite_sheds.sky_angle_0_tangent(GCR, TILT_RAD) - assert np.allclose(tan_psi_top_f, TAN_PSI_TOP0_F) - # backside - tan_psi_top_b = pvlib.infinite_sheds.sky_angle_0_tangent( - GCR, BACK_TILT_RAD) - assert np.allclose(tan_psi_top_b, TAN_PSI_TOP0_B) - - -if __name__ == '__main__': - from matplotlib import pyplot as plt - plt.ion() - plt.plot(*pvlib.infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) - plt.title( - 'combined sky view factor, not including horizon and first/last row') - plt.xlabel('fraction of pitch from front to back') - plt.ylabel('view factor') - plt.grid() - fig, ax = plt.subplots(2, 1, figsize=(6, 8)) - fx = np.linspace(0, 1, 100) - fskyz = [pvlib.infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) - ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) - ax[0].grid() - ax[0].set_title('frontside integrated ground reflected') - ax[0].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[0].legend(('blocked', 'all sky')) - fskyz = [ - pvlib.infinite_sheds.calc_fgndpv_zsky( - x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].plot(fx, fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].grid() - ax[1].set_title('backside integrated ground reflected') - ax[1].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[1].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[1].legend(('blocked', 'all sky')) - plt.tight_layout() From 2ac66394e7bc702408cead00de7f98f92fd7b63f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 11:47:14 -0700 Subject: [PATCH 061/115] test fixes --- pvlib/bifacial/infinite_sheds.py | 6 +- pvlib/tests/bifacial/test_infinite_sheds.py | 142 +------------------- 2 files changed, 5 insertions(+), 143 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index fb40b2184d..7a29d085d6 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -798,7 +798,7 @@ def _ground_angle(gcr, surface_tilt, x): def _vf_row_ground(gcr, surface_tilt, x): """ - View factor from a point x to the ground between rows. + View factor from a point x on the row to the ground between rows. Parameters ---------- @@ -818,8 +818,8 @@ def _vf_row_ground(gcr, surface_tilt, x): """ cst = cosd(surface_tilt) - # angle from each point x on the row slant height to the bottom of the - # facing row + # angle from horizontal at the point x on the row slant height to the + # bottom of the facing row psi_t_shaded, _ = _ground_angle(gcr, surface_tilt, x) # view factor from the point on the row to the ground return 0.5 * (cosd(psi_t_shaded) - cst) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 792223d857..90a03d1a7b 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -2,66 +2,11 @@ test infinite sheds """ -import os import numpy as np -import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd import pytest -from ..conftest import DATA_DIR - - -TESTDATA = os.path.join(DATA_DIR, 'infinite_sheds.csv') - -# location and irradiance -LAT, LON, TZ = 37.85, -122.25, -8 # global coordinates - -# PV module orientation -# tilt: positive = facing toward sun, negative = backward -# system-azimuth: positive counter-clockwise from north -TILT, SYSAZ = 20.0, 250.0 -GCR = 0.5 # ground coverage ratio -HEIGHT = 1 # height above ground -PITCH = 4 # row spacing - -# IAM parameters -B0 = 0.05 -MAXAOI = 85 - -# backside -BACKSIDE = {'tilt': 180.0 - TILT, 'sysaz': (180.0 + SYSAZ) % 360.0} - -# TESTDATA -TESTDATA = pd.read_csv(TESTDATA, parse_dates=True) -GHI, DHI = TESTDATA.ghi, TESTDATA.dhi -# convert #DIV/0 to np.inf, 0/0 to NaN, then convert to float -DF = np.where(GHI > 0, TESTDATA.df, np.inf) -DF = np.where(DHI > 0, DF, np.nan).astype(np.float64) -TESTDATA.df = DF -F_GND_BEAM = TESTDATA['Fsky-gnd'] -BACK_POA_GND_SKY = TESTDATA['POA_gnd-sky_b'] -FRONT_POA_GND_SKY = TESTDATA['POA_gnd-sky_f'] -BACK_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_b) -FRONT_TAN_PSI_TOP = np.tan(TESTDATA.psi_top_f) - -TAN_PSI_TOP0_F = np.tan(0.312029739) # GCR*SIN(TILT_f)/(1-GCR*COS(TILT_f)) -TAN_PSI_TOP0_B = np.tan(0.115824807) # GCR*SIN(TILT_b)/(1-GCR*COS(TILT_b)) -TAN_PSI_BOT1_F = np.tan(0.115824807) # SIN(TILT_f) / (COS(TILT_f) + 1/GCR) -TAN_PSI_BOT1_B = np.tan(0.312029739) # SIN(TILT_b) / (COS(TILT_b) + 1/GCR) - -# radians -SOLAR_ZENITH_RAD = np.radians(TESTDATA.apparent_zenith) -SOLAR_AZIMUTH_RAD = np.radians(TESTDATA.azimuth) -SYSAZ_RAD = np.radians(SYSAZ) -BACK_SYSAZ_RAD = np.radians(BACKSIDE['sysaz']) -TILT_RAD = np.radians(TILT) -BACK_TILT_RAD = np.radians(BACKSIDE['tilt']) - -ARGS = (GCR, HEIGHT, TILT, PITCH) - - -gcr, height, surface_tilt, pitch = ARGS def test__gcr_prime(): @@ -70,19 +15,6 @@ def test__gcr_prime(): assert np.isclose(result, 1.2309511000407718) -# calculated ground-sky angles at panel edges -# gcr_prime = infinite_sheds._gcr_prime(*ARGS) -# back_tilt_rad = np.pi - tilt_rad -# psi_0_x0 = back_tilt_rad -# psi_1_x0 = np.arctan2( -# gcr_prime * np.sin(back_tilt_rad), 1 - gcr_prime * np.cos(back_tilt_rad)) -PSI_0_X0, PSI_1_X0 = 2.792526803190927, 0.19278450775754705 -# psi_0_x1 = np.arctan2( -# gcr_prime * np.sin(tilt_rad), 1 - gcr_prime * np.cos(tilt_rad)) -# psi_1_x1 = tilt_rad -PSI_0_X1, PSI_1_X1 = 1.9271427336418656, 0.3490658503988659 - - @pytest.fixture def test_system(): syst = {'height': 1., @@ -261,7 +193,8 @@ def test__vf_row_ground(test_system): vfs = infinite_sheds._vf_row_ground( test_system['gcr'], test_system['surface_tilt'], x) expected_vfs = np.array([ - 1., 0.5 * ((4 + sqr3 / 2) / np.sqrt(17 + 4 * sqr3) - sqr3 / 2), + 0.5 * (1. - sqr3 / 2), + 0.5 * ((4 + sqr3 / 2) / np.sqrt(17 + 4 * sqr3) - sqr3 / 2), 0.5 * ((4 + sqr3) / np.sqrt(20 + 8 * sqr3) - sqr3 / 2)]) assert np.allclose(vfs, expected_vfs) @@ -294,74 +227,3 @@ def analytic(gcr, surface_tilt, x): - (1. - f_x) * cosd(surface_tilt)) assert np.allclose(shaded, expected_shade) assert np.allclose(noshade, expected_noshade) - - -VF_GND_SKY = 0.5184093800689326 -FZ_SKY = np.array([ - 0.37395996, 0.37985504, 0.38617593, 0.39294621, 0.40008092, - 0.40760977, 0.41546240, 0.42363368, 0.43209234, 0.44079809, - 0.44974664, 0.45887908, 0.46819346, 0.47763848, 0.48719477, - 0.49682853, 0.50650894, 0.51620703, 0.52589332, 0.53553353, - 0.54510461, 0.55457309, 0.56391157, 0.57309977, 0.58209408, - 0.59089589, 0.59944489, 0.60775144, 0.61577071, 0.62348812, - 0.63089212, 0.63793327, 0.64463809, 0.65092556, 0.65683590, - 0.66231217, 0.66735168, 0.67194521, 0.67603859, 0.67967459, - 0.68274901, 0.68532628, 0.68733124, 0.68876957, 0.68962743, - 0.68984316, 0.68953528, 0.68867052, 0.68716547, 0.68492226, - 0.68196156, 0.67826724, 0.67378014, 0.66857561, 0.66252116, - 0.65574207, 0.64814205, 0.63978082, 0.63066636, 0.62078878, - 0.61025517, 0.59900195, 0.58719184, 0.57481610, 0.56199241, - 0.54879229, 0.53530254, 0.52163859, 0.50789053, 0.49417189, - 0.48059555, 0.46725727, 0.45425705, 0.44170686, 0.42964414, - 0.41822953, 0.40742909, 0.39738731, 0.38808373, 0.37957663, - 0.37191014, 0.36503340, 0.35906878, 0.35388625, 0.34959679, - 0.34610681, 0.34343945, 0.34158818, 0.34047992, 0.34019127, - 0.34058737, 0.34174947, 0.34357674, 0.34608321, 0.34924749, - 0.35300886, 0.35741583, 0.36235918, 0.36789933, 0.37394838]) - - -def test__poa_ground_sky(): - # front side - poa_gnd_sky_f = infinite_sheds._poa_ground_sky( - TESTDATA.poa_ground_diffuse_f, F_GND_BEAM, DF, 1.0) - # CSV file decimals are truncated - assert np.allclose( - poa_gnd_sky_f, FRONT_POA_GND_SKY, equal_nan=True, atol=1e-6) - # backside - poa_gnd_sky_b = infinite_sheds._poa_ground_sky( - TESTDATA.poa_ground_diffuse_b, F_GND_BEAM, DF, 1.0) - assert np.allclose(poa_gnd_sky_b, BACK_POA_GND_SKY, equal_nan=True) - - -if __name__ == '__main__': - from matplotlib import pyplot as plt - plt.ion() - plt.plot(*infinite_sheds.ground_sky_diffuse_view_factor(*ARGS)) - plt.title( - 'combined sky view factor, not including horizon and first/last row') - plt.xlabel('fraction of pitch from front to back') - plt.ylabel('view factor') - plt.grid() - fig, ax = plt.subplots(2, 1, figsize=(6, 8)) - fx = np.linspace(0, 1, 100) - fskyz = [infinite_sheds.calc_fgndpv_zsky(x, *ARGS) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[0].plot(fx, fskyz/(1-np.cos(TILT_RAD))*2) - ax[0].plot(fx, fgnd_pv/(1-np.cos(TILT_RAD))*2) - ax[0].grid() - ax[0].set_title('frontside integrated ground reflected') - ax[0].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[0].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[0].legend(('blocked', 'all sky')) - fskyz = [ - infinite_sheds.calc_fgndpv_zsky( - x, GCR, HEIGHT, BACK_TILT_RAD, PITCH) for x in fx] - fskyz, fgnd_pv = zip(*fskyz) - ax[1].plot(fx, fskyz/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].plot(fx, fgnd_pv/(1-np.cos(BACK_TILT_RAD))*2) - ax[1].grid() - ax[1].set_title('backside integrated ground reflected') - ax[1].set_xlabel('fraction of PV surface from bottom ($F_x$)') - ax[1].set_ylabel('adjustment to $\\frac{1-\\cos(\\beta)}{2}$') - ax[1].legend(('blocked', 'all sky')) - plt.tight_layout() From b556c556fed6057ec32338bb51afb5b0c382877c Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 12:47:09 -0700 Subject: [PATCH 062/115] remove axis from linspace usage --- pvlib/bifacial/infinite_sheds.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 7a29d085d6..ad8886aa29 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -722,14 +722,14 @@ def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): """ cst = cosd(surface_tilt) # shaded portion - x = np.linspace(0 * f_x, f_x, num=npoints, axis=0) + x = np.linspace(0 * f_x, f_x, num=npoints) psi_t_shaded, _ = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_shaded) + cst) # integrate view factors from each point in the discretization. This is an # improvement over the algorithm described in [2] vf_shade_sky_integ = np.trapz(y, x, axis=0) # unshaded portion - x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) + x = np.linspace(f_x, np.ones_like(f_x), num=npoints) psi_t_unshaded, _ = _sky_angle(gcr, surface_tilt, x) y = 0.5 * (cosd(psi_t_unshaded) + cst) vf_noshade_sky_integ = np.trapz(y, x, axis=0) @@ -866,7 +866,7 @@ def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): slant height. """ # shaded portion of row slant height - x = np.linspace(0 * f_x, f_x, num=npoints, axis=0) + x = np.linspace(0 * f_x, f_x, num=npoints) # view factor from the point on the row to the ground y = _vf_row_ground(gcr, surface_tilt, x) # integrate view factors along the shaded portion of the row slant height. @@ -874,7 +874,7 @@ def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): vf_shade_ground_integ = np.trapz(y, x, axis=0) # unshaded portion of row slant height - x = np.linspace(f_x, np.ones_like(f_x), num=npoints, axis=0) + x = np.linspace(f_x, np.ones_like(f_x), num=npoints) # view factor from the point on the row to the ground y = _vf_row_ground(gcr, surface_tilt, x) # integrate view factors along the unshaded portion. From a7ee9238e60ed5f37d4afe73ba9560aba9487fc7 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 14:32:43 -0700 Subject: [PATCH 063/115] documentation --- docs/sphinx/source/reference/bifacial.rst | 14 ++++++-- pvlib/bifacial/infinite_sheds.py | 40 ++++++++++++++++++++--- 2 files changed, 47 insertions(+), 7 deletions(-) diff --git a/docs/sphinx/source/reference/bifacial.rst b/docs/sphinx/source/reference/bifacial.rst index f19195429f..8efede2ac3 100644 --- a/docs/sphinx/source/reference/bifacial.rst +++ b/docs/sphinx/source/reference/bifacial.rst @@ -3,9 +3,19 @@ Bifacial ======== -Methods for calculating back surface irradiance +Functions for calculating front and back surface irradiance .. autosummary:: :toctree: generated/ - bifacial.pvfactors_timeseries + bifacial.pvfactors.pvfactors_timeseries + bifacial.infinite_sheds.get_irradiance + bifacial.infinite_sheds.get_irradiance_poa + +Utility functions for bifacial irradiance calculations + +.. autosummary:: + :toctree: generated/ + + bifacial.utils.solar_projection_tangent + bifacial.utils.unshaded_ground_fraction diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index ad8886aa29..fe1a692a4d 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -907,9 +907,39 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, - shade_factor=-0.02, transmission_factor=0): - """total global incident on bifacial PV surfaces""" +def get_irradiance(poa_global_front, poa_global_back, bifaciality=0.8, + shade_factor=-0.02, transmission_factor=0): + r""" + Total irradiance on both sides of an infinite row of modules using the + infinite sheds model. + + Parameters + ---------- + poa_global_front : array-like + Total irradiance on the front surface of the array. [W/m^2] + + poa_global_back : array-like + Total irradiance on the back surface of the array. [W/m^2] + + bifaciality : numeric, default 0.8 + Ratio of the efficiency of the module's rear surface to the efficiency + of the front surface. [unitless] + + shade_factor : numeric, default -0.02 + Fraction of back surface irradiance that is blocked by array mounting + structures. Negative value is a reduction in back irradiance. + [unitless] + + transmission_factor : numeric, default 0.0 + Fraction of irradiance on the back surface that does not reach the + module's cells due to module structures. Negative value is a reduction + in back irradiance. [unitless] + + Returns + ------- + output : array-like + Total irradiance on front and back module surfaces. [W/m^2] + """ effects = (1 + shade_factor) * (1 + transmission_factor) return poa_global_front + poa_global_back * bifaciality * effects @@ -917,11 +947,11 @@ def poa_global_bifacial(poa_global_front, poa_global_back, bifaciality=0.8, # TODO: rename to pvlib.bifacial.infinite_sheds? # TODO: rework output to basics + optional # TODO: not tested -def get_poa_irradiance(solar_zenith, solar_azimuth, surface_tilt, +def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, npoints=100, all_output=False): r""" - Get irradiance on one side of an infinite row of modules using the infinite + Irradiance on one side of an infinite row of modules using the infinite sheds model. Plane-of-array (POA) irradiance components include direct, diffuse and From 682f23ca2ca514fec3aa34a1a4e3437be66b90ee Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 13 Dec 2021 14:59:43 -0700 Subject: [PATCH 064/115] docstrings --- pvlib/bifacial/infinite_sheds.py | 127 +++++++++++++++++++------------ 1 file changed, 78 insertions(+), 49 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index fe1a692a4d..9893dec3ee 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -907,45 +907,6 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def get_irradiance(poa_global_front, poa_global_back, bifaciality=0.8, - shade_factor=-0.02, transmission_factor=0): - r""" - Total irradiance on both sides of an infinite row of modules using the - infinite sheds model. - - Parameters - ---------- - poa_global_front : array-like - Total irradiance on the front surface of the array. [W/m^2] - - poa_global_back : array-like - Total irradiance on the back surface of the array. [W/m^2] - - bifaciality : numeric, default 0.8 - Ratio of the efficiency of the module's rear surface to the efficiency - of the front surface. [unitless] - - shade_factor : numeric, default -0.02 - Fraction of back surface irradiance that is blocked by array mounting - structures. Negative value is a reduction in back irradiance. - [unitless] - - transmission_factor : numeric, default 0.0 - Fraction of irradiance on the back surface that does not reach the - module's cells due to module structures. Negative value is a reduction - in back irradiance. [unitless] - - Returns - ------- - output : array-like - Total irradiance on front and back module surfaces. [W/m^2] - """ - effects = (1 + shade_factor) * (1 + transmission_factor) - return poa_global_front + poa_global_back * bifaciality * effects - - -# TODO: rename to pvlib.bifacial.infinite_sheds? -# TODO: rework output to basics + optional # TODO: not tested def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, @@ -978,10 +939,6 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, be >=0 and <=360. The Azimuth convention is defined as degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - gcr : numeric Ground coverage ratio, ratio of row slant length to row spacing. [unitless] @@ -992,15 +949,15 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, pitch : numeric row spacing. - dni : numeric - Direct normal irradiance. [W/m2] - ghi : numeric Global horizontal irradiance. [W/m2] dhi : numeric Diffuse horizontal irradiance. [W/m2] + dni : numeric + Direct normal irradiance. [W/m2] + albedo : numeric Surface albedo. [unitless] @@ -1037,7 +994,6 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, [W/m^2] - poa_diffuse_ground : total ground-reflected diffuse irradiance on the plane of array. [W/m^2] - """ # Calculate some geometric quantities # fraction of ground between rows that is illuminated accounting for @@ -1109,6 +1065,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, return output +# TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, dni_extra, iam_front=1.0, iam_back=1.0, @@ -1119,6 +1076,45 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, Parameters ---------- + solar_zenith : array-like + True (not refraction-corrected) solar zenith angles in decimal + degrees. + + solar_azimuth : array-like + Solar azimuth angles in decimal degrees. + + surface_tilt : numeric + Surface tilt angles in decimal degrees. Tilt must be >=0 and + <=180. The tilt angle is defined as degrees from horizontal + (e.g. surface facing up = 0, surface facing horizon = 90). + + surface_azimuth : numeric + Surface azimuth angles in decimal degrees. surface_azimuth must + be >=0 and <=360. The Azimuth convention is defined as degrees + east of north (e.g. North = 0, South=180 East = 90, West = 270). + + gcr : numeric + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] + + height : numeric + height of module lower edge above the ground. + + pitch : numeric + row spacing. + + ghi : numeric + Global horizontal irradiance. [W/m2] + + dhi : numeric + Diffuse horizontal irradiance. [W/m2] + + dni : numeric + Direct normal irradiance. [W/m2] + + albedo : numeric + Surface albedo. [unitless] + iam_front : numeric, default 1.0 Incidence angle modifier, the fraction of direct irradiance incident on the front surface that is not reflected away. [unitless] @@ -1127,18 +1123,51 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, Incidence angle modifier, the fraction of direct irradiance incident on the back surface that is not reflected away. [unitless] + bifaciality : numeric, default 0.8 + Ratio of the efficiency of the module's rear surface to the efficiency + of the front surface. [unitless] + + shade_factor : numeric, default -0.02 + Fraction of back surface irradiance that is blocked by array mounting + structures. Negative value is a reduction in back irradiance. + [unitless] + + transmission_factor : numeric, default 0.0 + Fraction of irradiance on the back surface that does not reach the + module's cells due to module structures. Negative value is a reduction + in back irradiance. [unitless] + + Returns + ------- + output : OrderedDict or DataFrame + Output is a DataFrame when input ghi is a Series. See Notes for + descriptions of content. + + Notes + ----- + Input parameters `height` and `pitch` must have the same unit. + + Output includes: + + - poa_global : total irradiance reaching the module cells from both front + and back surfaces. [W/m^2] + - poa_front : total irradiance reaching the module cells from the front + surface. [W/m^2] + - poa_back : total irradiance reaching the module cells from the front + surface. [W/m^2] + """ # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) # front side POA irradiance - irrad_front = get_poa_irradiance( + irrad_front = get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front) irrad_front.rename(columns={'poa_global': 'poa_front', 'poa_diffuse': 'poa_front_diffuse', 'poa_direct': 'poa_front_direct'}) # back side POA irradiance - irrad_back = get_poa_irradiance( + irrad_back = get_irradiance_poa( solar_zenith, solar_azimuth, backside_tilt, backside_sysaz, gcr, height, pitch, ghi, dhi, dni, albedo, iam_back) irrad_back.rename(columns={'poa_global': 'poa_back', From 4b035da0b94749d41753bd8921982732b9062b90 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 14 Dec 2021 13:04:58 -0700 Subject: [PATCH 065/115] height = 0 and surface_tilt = 0 cases --- pvlib/bifacial/infinite_sheds.py | 39 ++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 9893dec3ee..75220eae8a 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -60,6 +60,8 @@ from pvlib.shading import shaded_fraction from pvlib.irradiance import get_ground_diffuse, beam_component +EPS = 1e-9 + def _gcr_prime(gcr, height, surface_tilt, pitch): """ @@ -165,6 +167,9 @@ def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): # +----------\<---------P----*+----->\---- ground # 1<-----1-fz-----><--fz--0---- fraction of ground + if height < EPS: # row is on the ground + return 0. * f_z, 0. * f_z + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) opposite_side = sind(surface_tilt) adjacent_side = f_z/gcr_prime - cosd(surface_tilt) @@ -249,6 +254,9 @@ def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): # +---+*-----\<---------P----------->\---- ground # <-1+fz-1<---------fz=1---------0---- fraction of ground + if height < EPS: # row is on the ground + return 0. * f_z, 0. * f_z + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) # angle to top of previous panel in front of the current row psi_0 = np.rad2deg(np.arctan2( @@ -293,9 +301,12 @@ def _f_z0_limit(gcr, height, surface_tilt, pitch): z0 : numeric Limit position on the ground. [unitless] """ + if height < EPS: + return 0. # limit position is the bottom of the previous row _, tan_psi_t_x0 = _sky_angle(gcr, surface_tilt, 0.0) # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) - return height / pitch * (1. / tand(surface_tilt) + 1. / tan_psi_t_x0) + with np.errstate(divide='ignore'): + return height / pitch * (1. / tand(surface_tilt) + 1. / tan_psi_t_x0) def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): @@ -363,6 +374,9 @@ def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): # +----------\<---------P----------->\------*----- ground # 1<---------fz=1---------0-1-fz->----- fraction of ground + if height < EPS: # row is on the ground + return 0. * f_z, 0. * f_z + gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) tilt_prime = 180. - surface_tilt # angle to bottom of next panel @@ -409,9 +423,12 @@ def _f_z1_limit(gcr, height, surface_tilt, pitch): z1 : numeric Limit position on the ground. [unitless] """ + if height < EPS: + return 0. # limit position is the bottom of the next row _, tan_psi_t_x1 = _sky_angle(gcr, 180. - surface_tilt, 0.0) # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) - return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) + with np.errstate(divide='ignore'): + return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) # TODO: make sure that it is clear psi_1 is a supplement (angle from negative @@ -443,7 +460,7 @@ def _vf_sky(psi_0, psi_1): # TODO: move to util # TODO: add argument to set number of rows, default is infinite # TODO: add option for first or last row, default is middle row -def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): +def _vf_ground_sky(gcr, height, surface_tilt, pitch, max_rows=3, npoints=100): """ View factors from an array of points on the ground between adjacent, interior rows, to the sky. @@ -462,6 +479,9 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): = 0, surface facing horizon = 90. [degree] pitch : numeric row spacing + max_rows : int, default 3 + Number of rows to consider in front or behind the current previous and + next row. npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -475,8 +495,8 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, npoints=100): """ args = gcr, height, surface_tilt, pitch - fz0_limit = _f_z0_limit(*args) - fz1_limit = _f_z1_limit(*args) + fz0_limit = np.minimum(pitch * max_rows, _f_z0_limit(*args)) + fz1_limit = np.minimum(pitch * max_rows, _f_z1_limit(*args)) # include extra space to account for sky visible from adjacent rows # divide ground between visible limits into 3x npoints fz = np.linspace( @@ -669,8 +689,8 @@ def _sky_angle(gcr, surface_tilt, x): y = 1.0 - x x1 = y * sind(surface_tilt) x2 = (1/gcr - y * cosd(surface_tilt)) - tan_psi_top = x1 / x2 psi_top = np.rad2deg(np.arctan2(x1, x2)) + tan_psi_top = tand(psi_top) # avoids div by 0 return psi_top, tan_psi_top @@ -1148,13 +1168,12 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, Input parameters `height` and `pitch` must have the same unit. Output includes: - - poa_global : total irradiance reaching the module cells from both front - and back surfaces. [W/m^2] + and back surfaces. [W/m^2] - poa_front : total irradiance reaching the module cells from the front - surface. [W/m^2] + surface. [W/m^2] - poa_back : total irradiance reaching the module cells from the front - surface. [W/m^2] + surface. [W/m^2] """ # backside is rotated and flipped relative to front From 64a7f953a958e375dc1e6876c3f5ddbfee0c500e Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 16 Dec 2021 16:31:34 -0700 Subject: [PATCH 066/115] vectorize _vf_ground_sky --- pvlib/bifacial/infinite_sheds.py | 72 +++++++++++++-------- pvlib/tests/bifacial/test_infinite_sheds.py | 41 ++++++++++++ 2 files changed, 86 insertions(+), 27 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 75220eae8a..46d463c6b3 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -54,6 +54,7 @@ from collections import OrderedDict import numpy as np +from scipy.interpolate import interp1d import pandas as pd from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils @@ -483,7 +484,7 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, max_rows=3, npoints=100): Number of rows to consider in front or behind the current previous and next row. npoints : int, default 100 - Number of points used to discretize distance along the ground. + Number of points used per row to discretize distance along the ground. Returns ------- @@ -493,47 +494,64 @@ def _vf_ground_sky(gcr, height, surface_tilt, pitch, max_rows=3, npoints=100): View factors at discrete points between adjacent, interior rows. [unitless] + Notes + ----- + height and pitch must be in the same units. """ args = gcr, height, surface_tilt, pitch - fz0_limit = np.minimum(pitch * max_rows, _f_z0_limit(*args)) - fz1_limit = np.minimum(pitch * max_rows, _f_z1_limit(*args)) + # view limit behind previous row to gaps between previous rows + # in fraction of pitch + fz0_limit = _f_z0_limit(*args) + fz0_limit = np.where(fz0_limit > max_rows, max_rows, fz0_limit) + next_limit = np.maximum(fz0_limit.max(), 1.0) + # view limit in front of next row to gaps between next rows + fz1_limit = _f_z1_limit(*args) + fz1_limit = np.where(fz1_limit > max_rows, max_rows, fz0_limit) + prev_limit = np.minimum((1 - fz1_limit).min(), 0.) # include extra space to account for sky visible from adjacent rows # divide ground between visible limits into 3x npoints - fz = np.linspace( - 0.0 if (1 - fz1_limit) > 0 else (1 - fz1_limit), - 1.0 if fz0_limit < 1 else fz0_limit, - 3*npoints) + # need one discretization because interp1d can accept only one x vector + fz = np.linspace(prev_limit, next_limit, 3*max_rows*npoints) + # tile fz with one row for each surface_tilt so we can vectorize angle + # calculations + fz_vec = np.tile(fz, [len(surface_tilt), 1]) + # tile surface_tilt to match fz_vec dimensions + st_vec = np.tile(surface_tilt, [len(fz), 1]).T # calculate the angles psi_0 and psi_1 that bound the sky visible - # from between the previous and next rows - psi_0, psi_1 = _ground_sky_angles(fz, *args) + # from between the previous and next rows. Use same fz for every + # surface_tilt + psi_0, psi_1 = _ground_sky_angles(fz_vec, gcr, height, st_vec, pitch) # angles for portions of sky visible between rows in front of previous # row - psi_0_front, psi_1_front = _ground_sky_angles_prev(fz, *args) - fz_sky_next = _vf_sky(psi_0_front, psi_1_front) - fz0_sky_next = [] - prev_row = 0.0 + psi_0_front, psi_1_front = _ground_sky_angles_prev( + fz_vec, gcr, height, st_vec, pitch) + vf_sky_front = _vf_sky(psi_0_front, psi_1_front) + f_front = interp1d(fz, vf_sky_front, axis=1, fill_value=0, + bounds_error=False, assume_sorted=True) + vf_front = 0. * fz_vec # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) # TODO: explain this loop over rows in front of current row - while (fz0_limit - prev_row) > 0: - fz0_sky_next.append(np.interp(fz + prev_row, fz, fz_sky_next)) - prev_row += 1.0 + for row in np.arange(max_rows): + vf_front += f_front(fz + row) # angles for portions of the sky visible between rows behind the next row - psi_0_back, psi_1_back = _ground_sky_angles_next(fz, *args) - fz_sky_prev = _vf_sky(psi_0_back, psi_1_back) - fz1_sky_prev = [] - next_row = 0.0 - # loop over rows, subtracting 1.0 from fz until next_row < ceil(fz1_limit) - while (fz1_limit - next_row) > 0: - fz1_sky_prev.append(np.interp(fz - next_row, fz, fz_sky_prev)) - next_row += 1.0 + psi_0_back, psi_1_back = _ground_sky_angles_next( + fz_vec, gcr, height, st_vec, pitch) + vf_sky_back = _vf_sky(psi_0_back, psi_1_back) + f_back = interp1d(fz, vf_sky_back, axis=1, fill_value=0, + bounds_error=False, assume_sorted=True) + vf_back = 0. * fz_vec + for row in np.arange(max_rows): + vf_back += f_back(fz - row) # calculate the view factor of the sky from the ground at point z fz_sky = ( _vf_sky(psi_0, psi_1) # current row - + np.sum(fz0_sky_next, axis=0) # sum of all next rows - + np.sum(fz1_sky_prev, axis=0)) # sum of all previous rows + + vf_front # sum of all next rows + + vf_back) # sum of all previous rows # we just need one row, fz in range [0, 1] fz_row = np.linspace(0, 1, npoints) - return fz_row, np.interp(fz_row, fz, fz_sky) + f_all = interp1d(fz, fz_sky, axis=1, fill_value=0, bounds_error=False, + assume_sorted=True) + return fz_row, f_all(fz_row) def _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, npoints=100): diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 90a03d1a7b..6a8f143d47 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -227,3 +227,44 @@ def analytic(gcr, surface_tilt, x): - (1. - f_x) * cosd(surface_tilt)) assert np.allclose(shaded, expected_shade) assert np.allclose(noshade, expected_noshade) + + +def test_get_irradiance_poa(): + # front side irradiance + surface_tilt = np.array([0., 0., 0., 0.]) + height = 1. + surface_azimuth = np.array([180., 180., 180., 180.]) + gcr = 0.5 + pitch = 1 + solar_zenith = np.array([0., 45., 45., 90.]) + solar_azimuth = np.array([180., 180., 135., 180.]) + ghi = 1000 + dhi = 300 + dni = 700 + albedo = 0 + iam = 1.0 + npoints = 100 + all_output = True + res = infinite_sheds.get_irradiance_poa( + solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, iam, npoints, all_output) + expected_diffuse = np.array([300., 300., 300., 300.]) + expected_direct = np.array( + [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) + expected_global = expected_diffuse + expected_direct + assert np.allclose(res['poa_global'], expected_global) + assert np.allclose(res['poa_diffuse'], expected_diffuse) + assert np.allclose(res['poa_direct'], expected_direct) + # horizontal and elevated but gcr=1, so expect no rear irradiance + height = 1 + gcr = 1.0 + res = infinite_sheds.get_irradiance_poa( + solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, iam, npoints, all_output) + assert np.allclose(res['poa_global'], expected_global) + assert np.allclose(res['poa_diffuse'], expected_diffuse) + assert np.allclose(res['poa_direct'], expected_direct) + +test_get_irradiance_poa() From 336ad621bc070458d4af4075bf0ced7788e81863 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 31 Dec 2021 13:54:31 -0700 Subject: [PATCH 067/115] overhaul ground to sky view factors, add function to utils --- pvlib/bifacial/infinite_sheds.py | 630 ++++---------------- pvlib/bifacial/utils.py | 52 ++ pvlib/tests/bifacial/test_infinite_sheds.py | 140 ++--- pvlib/tests/bifacial/test_utils.py | 43 +- 4 files changed, 262 insertions(+), 603 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 46d463c6b3..aeb6e47f8a 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -54,7 +54,6 @@ from collections import OrderedDict import numpy as np -from scipy.interpolate import interp1d import pandas as pd from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils @@ -64,497 +63,127 @@ EPS = 1e-9 -def _gcr_prime(gcr, height, surface_tilt, pitch): +def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): """ - Slant length from the ground to the top of a row divided by the row pitch. + Convert surface tilt to rotation angle. + + Surface tilt angles are positive by definition. A positive rotation + angle is counterclockwise in a right hand coordinate system with the + axis of rotation positive in the direction of axis_azimuth. A positive + rotation elevates the left (bottom) edge of the row. Parameters ---------- - gcr : numeric - Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). - height : numeric - height of module lower edge above the ground surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - - Returns - ------- - gcr_prime : numeric - ground coverage ratio including height above ground - """ - - # : \\ \\ - # : \\ \\ - # : \\ H = module length \\ - # : \\ \\ - # :.....\\......................\\........ module lower edge - # : \ \ : - # : \ \ h = height above ground - # : \ tilt \ : - # +----------\<---------P----------->\---- ground - - return gcr + height / sind(surface_tilt) / pitch - - -# TODO: overlaps with ground_sky_angles_prev in that both return -# angle to top of previous row. Could the three ground_sky_angle_xxx functions -# be combined and handle the cases of points behind the "previous" row or ahead -# of the next row? -def _ground_sky_angles(f_z, gcr, height, surface_tilt, pitch): - """ - Angles from a point z on the ground to the tops of the previous and next - rows. - - The point z is the fraction of distance from the extension to the ground of - the previous row and the extension to the ground of the next row. - - .. math:: - \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} - {\\text{GCR}^\\prime} + \\cos{\\beta^\\prime}} - - \\tan{\\psi_1} = \\frac{\\sin{\\beta}}{\\frac{F_z^\\prime} - {\\text{GCR}^\\prime} + \\cos{\\beta}} - - Parameters - ---------- - f_z : numeric - fraction of distance along the ground from the previous to the next row - gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing. - [unitless] - height : numeric - height of module lower edge above the ground. - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing. + surface_azimuth : numeric + Surface azimuth angles in decimal degrees east of north + (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must + be >=0 and <=360. + axis_azimuth : float or None, default None + The azimuth of the axis of rotation. Decimal degrees east of north. + For fixed tilt, set axis_azimuth = None. Returns ------- - psi_0 : numeric - Angle from horizontal of the line between a point on the ground and - the top of the previous row. [degree] - psi_1 : numeric - Complement of the angle from horizontal of the line between a point on - the ground and the top of the next row. [degree] + float or np.ndarray + Calculated rotation angle(s) in [deg] Notes ----- - Assuming the first row is in the front of the array then previous rows are - toward the front of the array and next rows are toward the back. - - Parameters `height` and `pitch` must have the same unit. - - See Also - -------- - _ground_sky_angles_prev - _ground_sky_angles_next - - """ - - # : \\* |\\ front of array - # : \\ ** | \\ - # next \\ ** | \\ previous row - # row \\ ** | \\ - # :.....\\.......**..........|..\\........ module lower edge - # : \ ** | \ : - # : \ ** | \ h = height above ground - # : tilt \ psi1 ** |psi0 \ : - # +----------\<---------P----*+----->\---- ground - # 1<-----1-fz-----><--fz--0---- fraction of ground - - if height < EPS: # row is on the ground - return 0. * f_z, 0. * f_z - - gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) - opposite_side = sind(surface_tilt) - adjacent_side = f_z/gcr_prime - cosd(surface_tilt) - # tan_psi_0 = opposite_side / adjacent_side - psi_0 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) - f_z_prime = 1 - f_z - opposite_side = sind(surface_tilt) - adjacent_side = f_z_prime/gcr_prime + cosd(surface_tilt) - # tan_psi_1 = opposite_side / adjacent_side - psi_1 = np.rad2deg(np.arctan2(opposite_side, adjacent_side)) - return psi_0, psi_1 - - -def _ground_sky_angles_prev(f_z, gcr, height, surface_tilt, pitch): + Based on pvfactors.geometry.base._get_rotation_from_tilt_azimuth """ - Angles from a point z on the ground to the tops of the previous and next - rows. - - The point z is the fraction of distance from the extension to the ground of - the previous row and the extension to the ground of the next row. - - The function _ground_sky_angles_prev applies when the sky is visible - between the bottom of the previous row, and the top of the row in front - of the previous row. - - .. math:: + if axis_azimuth is None: + # Assume fixed tilt. Place axis_azimuth 90 degrees clockwise so that + # tilt becomes a negative rotation (lowers left/bottom edge) + axis_azimuth = ((surface_azimuth + 90.) + 360) % 360 + # Calculate rotation of PV row (signed tilt angle) + is_pointing_right = ((surface_azimuth - axis_azimuth) % 360.) < 180. + rotation = np.where(is_pointing_right, surface_tilt, -surface_tilt) + rotation[surface_tilt == 0] = -0.0 # pvfactors GH 125 + return rotation - \\tan{\\psi_0} = \\frac{\\sin{\\beta^\\prime}}{\\frac{F_z} - {\\text{GCR}^\\prime} + \\cos{\\beta^\\prime}} - 0 < F_z < F_{z0,limit} - - \\tan \\psi_1 = \\frac{h}{\\frac{h}{\\tan\\beta} - z} +def _calc_phi_top(z, gcr, rotation, height, pitch, max_rows=5): + ''' + Angle from z to the top (left) edge of each row. Parameters ---------- - f_z : numeric - fraction of ground from previous to next row - gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing. - [unitless] - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing + z : array-like + Position on the ground between two rows, as a fraction of the pitch. + z = 0 corresponds to the center point of a row. + gcr : float + Ratio of row slant length to row spacing (pitch). [unitless] + rotation : float + Rotation of lower (right) edge relative to row center. [degree] + height : float + Height of center point of the row above the ground. Must be in the same + units as pitch. + pitch : float + Distance between two rows. Must be in the same units as height. + max_rows : int, default 5 + Maximum number of rows to consider in front and behind the current row. Returns ------- - psi_0 : numeric - Angle from horizontal of the line between a point on the ground and - the top of the row in front of the previous row. [degree] - psi_1 : numeric - Complement of the angle from horizontal of the line between a point on - the ground and the bottom of the previous row. + ndarray or float + Angle to line from z to the top (left) edge of each row. Rows are + ordered from max_row down to -max_row, column order corresponds to z. [degree] - Notes - ----- - Assuming the first row is in the front of the array then previous rows are - toward the front of the array and next rows are toward the back. - - Parameters `height` and `pitch` must have the same unit. - - See Also - -------- - _ground_sky_angles - _ground_sky_angles_next - - """ - - # : \\ | *\\ top of previous row - # : \\ | ** \\ - # prev \\ | * \\ front of array - # row \\ | ** \\ - # bottom.\\|......*..............\\........ module lower edge - # : |\ ** \ : - # psi1 | \* psi0 \ h = height above ground - # : | ** \ \ : - # +---+*-----\<---------P----------->\---- ground - # <-1+fz-1<---------fz=1---------0---- fraction of ground - - if height < EPS: # row is on the ground - return 0. * f_z, 0. * f_z - - gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) - # angle to top of previous panel in front of the current row - psi_0 = np.rad2deg(np.arctan2( - sind(surface_tilt), (1 + f_z)/gcr_prime - cosd(surface_tilt))) - # angle to bottom of previous panel - z = f_z * pitch - # other forms raise division by zero errors - # avoid division by zero errors - psi_1 = np.rad2deg(np.arctan2(height, height/tand(surface_tilt) - z)) - return psi_0, psi_1 - - -def _f_z0_limit(gcr, height, surface_tilt, pitch): - """ - Limit from the ground where sky is visible between previous rows. - - .. math:: - F_{z0,limit} = \\frac{h}{P} \\left( - \\frac{1}{\\tan \\beta} + \\frac{1}{\\tan \\psi_t}\\right) - - The limit position, :math:`z_0`, is at the intersection with the ground - of the line tangent to the bottom of the previous row and the top of the - row in front of the previous row. The position is the distance from the - previous row's projection to the ground to the intersection point, divided - by the row pitch. :math:`z_0` is positive toward the back of the array. - - Parameters - ---------- - gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing. - [unitless] - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - - Returns - ------- - z0 : numeric - Limit position on the ground. [unitless] - """ - if height < EPS: - return 0. # limit position is the bottom of the previous row - _, tan_psi_t_x0 = _sky_angle(gcr, surface_tilt, 0.0) - # tan_psi_t_x0 = gcr * np.sin(tilt) / (1.0 - gcr * np.cos(tilt)) - with np.errstate(divide='ignore'): - return height / pitch * (1. / tand(surface_tilt) + 1. / tan_psi_t_x0) - - -def _ground_sky_angles_next(f_z, gcr, height, surface_tilt, pitch): - """ - Angles from point z on the ground to bottom of the next row and to the top - of the row behind the next row. - - The point z is the fraction of distance from the extension to the ground of - the previous row and the extension to the ground of the next row. - - The function _ground_sky_angles_next applies when the sky is visible - between the bottom of the next row, and the top of the row behind the - next row. - - .. math:: - \\tan \\psi_0 = \\frac{h}{\\frac{h}{\\tan\\beta^\\prime} - - \\left(P-z\\right)} - - \\tan{\\psi_1} = \\frac{\\sin{\\beta}} - {\\frac{F_z^\\prime}{\\text{GCR}^\\prime} + \\cos{\\beta}} - - Parameters - ---------- - f_z : numeric - fraction of ground from previous to next row - gcr : numeric - ground coverage ratio - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - - Returns - ------- - psi_0 : numeric - Angle from horizontal of the line between a point on the ground and - the bottom of the previous row. [degree] - psi_1 : numeric - Angle from horizontal of the line between a point on the ground and - the top of the row in front of the previous row. [degree] + ''' + length = pitch * gcr + # order from front to back + k = np.arange(max_rows, -max_rows-1, -1) + b = (k - z[:, np.newaxis]) * pitch - 0.5 * length * cosd(rotation) + a = height + 0.5 * length * sind(rotation) + phi = np.rad2deg(np.arctan2(a, b)) + # transpose so that rows are in columns + return phi.T - Notes - ----- - Assuming the first row is in the front of the array then previous rows are - toward the front of the array and next rows are toward the back. - See Also - -------- - _ground_sky_angles - _ground_sky_angles_prev - - """ - - # : \\+ _ \\ - # : \\ `*+ - _ \\ - # next \\ `*+ _ \\ - # row \\ `*+ -_ \\ next row bottom - # top....\\..............`*+...-.\\_ - # : \ `*+ \ -_ psi0 - # : \ psi1 `*+ -_ - # : \ \ `*+ _ - # +----------\<---------P----------->\------*----- ground - # 1<---------fz=1---------0-1-fz->----- fraction of ground - - if height < EPS: # row is on the ground - return 0. * f_z, 0. * f_z - - gcr_prime = _gcr_prime(gcr, height, surface_tilt, pitch) - tilt_prime = 180. - surface_tilt - # angle to bottom of next panel - fzprime = 1. - f_z - zprime = fzprime * pitch - # other forms raise division by zero errors - # avoid division by zero errors - psi_0 = np.rad2deg(np.arctan2(height, height/tand(tilt_prime) - zprime)) - # angle to top of next panel beyond the current row - psi_1 = np.rad2deg(np.arctan2( - sind(surface_tilt), (1 + fzprime)/gcr_prime + cosd(surface_tilt))) - return psi_0, psi_1 - - -def _f_z1_limit(gcr, height, surface_tilt, pitch): - """ - Limit from the ground where sky is visible between the next row and the - row behind the next row. - - .. math:: - F_{z1,limit} = \\frac{h}{P} \\left( - \\frac{1}{\\tan \\psi_t} - \\frac{1}{\\tan \\beta}\\right) - - The limit position, :math:`z_1`, is at the intersection with the ground - of the line tangent to the bottom of the next row and the top of the row - behind the next row. The position is the distance from the next row's - projection to the ground to the intersection point, divided by the row - pitch. :math:`z_1` is positive toward the front of the array. +def _calc_phi_bottom(z, gcr, rotation, height, pitch, max_rows=5): + ''' + Angle from z to the bottom (right) edge of each row. Parameters ---------- - gcr : numeric - ground coverage ratio - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - - Returns - ------- - z1 : numeric - Limit position on the ground. [unitless] - """ - if height < EPS: - return 0. # limit position is the bottom of the next row - _, tan_psi_t_x1 = _sky_angle(gcr, 180. - surface_tilt, 0.0) - # tan_psi_t_x1 = gcr * np.sin(pi-tilt) / (1.0 - gcr * np.cos(pi-tilt)) - with np.errstate(divide='ignore'): - return height / pitch * (1. / tan_psi_t_x1 - 1. / tand(surface_tilt)) - - -# TODO: make sure that it is clear psi_1 is a supplement (angle from negative -# x axis) -def _vf_sky(psi_0, psi_1): - """ - Calculate the view factor from the ground to the wedge of the visible - sky bounded by the angles :math:`\\psi_0` and :math:`\\psi_1`. - - Angle :math:`\\psi_0` is expected to be counterclockwise from the - positive x-axis, and angle :math:`\\psi_1` is expected to be clockwise - from the negative x-axis. - - Parameters - ---------- - psi_0 : numeric - angle from ground to sky, anti-clockwise from positive x-axis. [degree] - psi_1 : numeric - angle from ground to sky, clockwise from positive x-axis. [degree] + z : array-like + Position on the ground between two rows, as a fraction of the pitch. + z = 0 corresponds to the center point of a row. + gcr : float + Ratio of row slant length to row spacing (pitch). [unitless] + rotation : float + Rotation of lower (right) edge relative to row center. [degree] + height : float + Height of center point of the row above the ground. Must be in the same + units as pitch. + pitch : float + Distance between two rows. Must be in the same units as height. + max_rows : int, default 5 + Maximum number of rows to consider in front and behind the current row. Returns ------- - fz_sky : numeric - fraction of the sky dome that bounded by the input angles. - """ - return (cosd(psi_0) + cosd(psi_1)) / 2. - + ndarray or float + Angle to line from z to the bottom (right) edge of each row. [degree] -# TODO: move to util -# TODO: add argument to set number of rows, default is infinite -# TODO: add option for first or last row, default is middle row -def _vf_ground_sky(gcr, height, surface_tilt, pitch, max_rows=3, npoints=100): - """ - View factors from an array of points on the ground between adjacent, - interior rows, to the sky. - - The view factor is equal to the fraction of sky hemisphere visible at each - point on the ground. - - Parameters - ---------- - gcr : numeric - ground coverage ratio - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - max_rows : int, default 3 - Number of rows to consider in front or behind the current previous and - next row. - npoints : int, default 100 - Number of points used per row to discretize distance along the ground. + ''' + length = pitch * gcr + # calculate height of left/bottom edge + h = height + 0.5 * length * sind(rotation) + # order from front to back + k = np.arange(max_rows, -max_rows-1, -1) + b = (k - z[:, np.newaxis]) * pitch + 0.5 * length * cosd(rotation) + phi = np.rad2deg(np.arctan2(h, b)) + # transpose so that rows are in columns + return phi.T - Returns - ------- - fz : ndarray - Fraction of distance from the previous row to the next row. [unitless] - fz_sky : ndarray - View factors at discrete points between adjacent, interior rows. - [unitless] - Notes - ----- - height and pitch must be in the same units. - """ - args = gcr, height, surface_tilt, pitch - # view limit behind previous row to gaps between previous rows - # in fraction of pitch - fz0_limit = _f_z0_limit(*args) - fz0_limit = np.where(fz0_limit > max_rows, max_rows, fz0_limit) - next_limit = np.maximum(fz0_limit.max(), 1.0) - # view limit in front of next row to gaps between next rows - fz1_limit = _f_z1_limit(*args) - fz1_limit = np.where(fz1_limit > max_rows, max_rows, fz0_limit) - prev_limit = np.minimum((1 - fz1_limit).min(), 0.) - # include extra space to account for sky visible from adjacent rows - # divide ground between visible limits into 3x npoints - # need one discretization because interp1d can accept only one x vector - fz = np.linspace(prev_limit, next_limit, 3*max_rows*npoints) - # tile fz with one row for each surface_tilt so we can vectorize angle - # calculations - fz_vec = np.tile(fz, [len(surface_tilt), 1]) - # tile surface_tilt to match fz_vec dimensions - st_vec = np.tile(surface_tilt, [len(fz), 1]).T - # calculate the angles psi_0 and psi_1 that bound the sky visible - # from between the previous and next rows. Use same fz for every - # surface_tilt - psi_0, psi_1 = _ground_sky_angles(fz_vec, gcr, height, st_vec, pitch) - # angles for portions of sky visible between rows in front of previous - # row - psi_0_front, psi_1_front = _ground_sky_angles_prev( - fz_vec, gcr, height, st_vec, pitch) - vf_sky_front = _vf_sky(psi_0_front, psi_1_front) - f_front = interp1d(fz, vf_sky_front, axis=1, fill_value=0, - bounds_error=False, assume_sorted=True) - vf_front = 0. * fz_vec - # loop over rows by adding 1.0 to fz until prev_row < ceil(fz0_limit) - # TODO: explain this loop over rows in front of current row - for row in np.arange(max_rows): - vf_front += f_front(fz + row) - # angles for portions of the sky visible between rows behind the next row - psi_0_back, psi_1_back = _ground_sky_angles_next( - fz_vec, gcr, height, st_vec, pitch) - vf_sky_back = _vf_sky(psi_0_back, psi_1_back) - f_back = interp1d(fz, vf_sky_back, axis=1, fill_value=0, - bounds_error=False, assume_sorted=True) - vf_back = 0. * fz_vec - for row in np.arange(max_rows): - vf_back += f_back(fz - row) - # calculate the view factor of the sky from the ground at point z - fz_sky = ( - _vf_sky(psi_0, psi_1) # current row - + vf_front # sum of all next rows - + vf_back) # sum of all previous rows - # we just need one row, fz in range [0, 1] - fz_row = np.linspace(0, 1, npoints) - f_all = interp1d(fz, fz_sky, axis=1, fill_value=0, bounds_error=False, - assume_sorted=True) - return fz_row, f_all(fz_row) - - -def _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, npoints=100): +def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, + pitch, axis_azimuth=None, max_rows=5, npoints=100): """ Integrated and per-point view factors from the ground to the sky at points between interior rows of the array. @@ -562,14 +191,23 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, npoints=100): Parameters ---------- gcr : numeric - ground coverage ratio + Ratio of row slant length to row spacing (pitch). [unitless] height : numeric height of module lower edge above the ground surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing + surface_azimuth : numeric + Surface azimuth angles in decimal degrees east of north + (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must + be >=0 and <=360. + pitch : float + Distance between two rows. Must be in the same units as height. + axis_azimuth : numeric, default None + The compass direction of the axis of rotation lies for a single-axis + tracking system. Decimal degrees east of north. + max_rows : int, default 5 + Maximum number of rows to consider in front and behind the current row. npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -585,60 +223,16 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, npoints=100): [unitless] """ - args = gcr, height, surface_tilt, pitch + z = np.linspace(0, 1, npoints) + rotation = _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth) # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back - z_star, fz_sky = _vf_ground_sky(*args, npoints=npoints) + fz_sky = utils._vf_ground_sky_2d(z, rotation, gcr, pitch, height, max_rows) # calculate the integrated view factor for all of the ground between rows - fgnd_sky = np.trapz(fz_sky, z_star) + fgnd_sky = np.trapz(fz_sky, z) - return fgnd_sky, z_star, fz_sky - - -# TODO: not used -def _calc_fgndpv_zsky(fx, gcr, height, tilt, pitch, npoints=100): - """ - Calculate the fraction of diffuse irradiance from the sky, reflecting from - the ground, incident at a point "x" on the PV surface. - - Parameters - ---------- - fx : numeric - fraction of PV surface from bottom - gcr : numeric - ground coverage ratio - height : numeric - height of module lower edge above the ground - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - pitch : numeric - row spacing - npoints : int - divide the ground into discrete points - """ - args = gcr, height, tilt, pitch - - # calculate the view factor of the diffuse sky from the ground between rows - # and integrate the view factor for all of the ground between rows - fgnd_sky, _, _ = _vf_ground_sky_integ(*args, npoints=npoints) - - # if fx is zero, point x is at the bottom of the row, psi_x_bottom is zero, - # and all of the ground is visible, so the view factor is just - # Fgnd_pv = (1 - cos(tilt)) / 2 - if fx == 0: - psi_x_bottom = 0.0 - else: - # how far on the ground can the point x see? - psi_x_bottom, _ = _ground_angle(gcr, tilt, fx) - - # max angle from pv surface perspective - psi_max = tilt - psi_x_bottom - - fgnd_pv = (1 - np.cos(psi_max)) / 2 - fskyz = fgnd_sky * fgnd_pv - return fskyz, fgnd_pv + return fgnd_sky, z, fz_sky # TODO: not tested @@ -948,7 +542,8 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): # TODO: not tested def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam=1.0, npoints=100, all_output=False): + albedo, iam=1.0, axis_azimuth=None, max_rows=5, + npoints=100, all_output=False): r""" Irradiance on one side of an infinite row of modules using the infinite sheds model. @@ -973,9 +568,9 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, (e.g. surface facing up = 0, surface facing horizon = 90). surface_azimuth : numeric - Surface azimuth angles in decimal degrees. surface_azimuth must - be >=0 and <=360. The Azimuth convention is defined as degrees - east of north (e.g. North = 0, South=180 East = 90, West = 270). + Surface azimuth angles in decimal degrees east of north + (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must + be >=0 and <=360. gcr : numeric Ground coverage ratio, ratio of row slant length to row spacing. @@ -1003,6 +598,13 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, Incidence angle modifier, the fraction of direct irradiance incident on the surface that is not reflected away. [unitless] + axis_azimuth : numeric, default None + The compass direction of the axis of rotation lies for a single-axis + tracking system. Decimal degrees east of north. + + max_rows : int, default 5 + Maximum number of rows to consider in front and behind the current row. + npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -1041,7 +643,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array vf_gnd_sky, _, _ = _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, - npoints) + axis_azimuth, max_rows, npoints) # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 3a34bec397..5002f8992d 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -81,3 +81,55 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) return f_gnd_beam # 1 - min(1, abs()) < 1 always + + +def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): + """ + Calculate the fraction of the sky dome visible from pointx on the ground, + accounting for obstructions by infinitely long rows. + + Parameters + ---------- + x : array-like + Position on the ground between two rows, as a fraction of the pitch. + x = 0 corresponds to the center point of a row. + rotation : float + Rotation of left edge relative to row center. [degree] + gcr : float + Ratio of row slant length to row spacing (pitch). [unitless] + height : float + Height of center point of the row above the ground. Must be in the same + units as pitch. + pitch : float + Distance between two rows. Must be in the same units as height. + max_rows : int, default 10 + Maximum number of rows to consider in front and behind the current row. + + Returns + ------- + vf : array-like + Fraction of sky dome visible from each point on the ground. [unitless] + wedge_angles : array + Bounding angles of each wedge of visible sky. + Shape is (2, len(x), 2*max_rows+1). wedge_angles[0,:,:] is the + starting angle of each wedge, wedge_angles[1,:,:] is the end angle. + [degrees] + """ + all_k = np.arange(-max_rows, max_rows + 1) + width = gcr * pitch / 2. + # angles from x to left edge of each row + a1 = height + width * sind(rotation) + b1 = (all_k - x[:, np.newaxis]) * pitch + width * cosd(rotation) + phi_1 = np.degrees(np.arctan2(a1, b1)) + # angles from x to right edge of each row + a2 = height - width * sind(rotation) + b2 = (all_k - x[:, np.newaxis]) * pitch - width * cosd(rotation) + phi_2 = np.degrees(np.arctan2(a2, b2)) + phi = np.stack([phi_1, phi_2]) + swap = phi[0, :, :] > phi[1, :, :] + # swap where phi_1 > phi_2 so that phi_1[0,:,:] is the left edge + phi = np.where(swap, phi[::-1], phi) + # right edge of next row - left edge of previous row + wedge_vfs = 0.5 * (cosd(phi[1,:,1:]) - cosd(phi[0,:,:-1])) + vf = np.sum(np.where(wedge_vfs > 0, wedge_vfs, 0.), axis=1) + return vf, phi \ No newline at end of file diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 6a8f143d47..fd252c9626 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -9,56 +9,56 @@ import pytest -def test__gcr_prime(): - result = infinite_sheds._gcr_prime(gcr=0.5, height=1, surface_tilt=20, - pitch=4) - assert np.isclose(result, 1.2309511000407718) - - @pytest.fixture def test_system(): - syst = {'height': 1., + syst = {'height': 1.5, 'pitch': 4., - 'surface_tilt': 30} + 'surface_tilt': 30., + 'surface_azimuth': 180., + 'axis_azimuth': None, + 'rotation': -30.} syst['gcr'] = 2.0 / syst['pitch'] return syst -def test__ground_sky_angles(test_system): - x = np.array([0.0, 0.5, 1.0]) - psi0, psi1 = infinite_sheds._ground_sky_angles(x, **test_system) - expected_psi0 = np.array([150., 126.2060231, 75.]) - expected_psi1 = np.array([15., 20.10390936, 30.]) - assert np.allclose(psi0, expected_psi0) - assert np.allclose(psi1, expected_psi1) - - -FZ0_LIMIT = 1.4619022000815438 # infinite_sheds.f_z0_limit(*ARGS) -# np.arctan2(GCR * np.sin(TILT_RAD), (1.0 - GCR * np.cos(TILT_RAD))) -PSI_TOP = 0.3120297392978313 +def test__tilt_to_rotation(): + surface_tilt = np.array([0., 20., 90.]) + surface_azimuth = np.array([180., 90., 270.]) + result = infinite_sheds._tilt_to_rotation( + surface_tilt, surface_azimuth, 180.) + assert np.allclose(result, np.array([0., -20., 90.])) + res = infinite_sheds._tilt_to_rotation(surface_tilt, 180., None) + assert np.allclose(res, np.array([0., -20., -90.])) -def test__ground_sky_angles_prev(test_system): - x = np.array([0.0, 1.0]) - psi0, psi1 = infinite_sheds._ground_sky_angles_prev(x, **test_system) - expected_psi0 = np.array([75., 23.7939769]) - expected_psi1 = np.array([30., 180. - 23.7939769]) - assert np.allclose(psi0, expected_psi0) - assert np.allclose(psi1, expected_psi1) - - -FZ1_LIMIT = 1.4619022000815427 # infinite_sheds.f_z1_limit(*ARGS) -# np.arctan2(GCR * np.sin(BACK_TILT_RAD), (1.0 - GCR * np.cos(BACK_TILT_RAD))) -PSI_TOP_BACK = 0.11582480672702507 +def test__calc_phi_top(): + rotation = 0. + z = np.linspace(0., 1., 3) + height = 1. + pitch = 2. + gcr = 0.5 + result = infinite_sheds._calc_phi_top( + z, gcr, rotation, height, pitch, max_rows=1) + expected = np.array( + [[33.690067525979785, 63.43494882292201, 116.56505117707799], + [116.56505117707799, 146.30993247402023, 158.19859051364818], + [158.19859051364818, 164.05460409907712, 167.47119229084848]]) + assert np.allclose(result, expected) -def test__ground_sky_angles_next(test_system): - x = np.array([0., 1.0]) - psi0, psi1 = infinite_sheds._ground_sky_angles_next(x, **test_system) - expected_psi0 = np.array([180 - 9.8960906389, 150.]) - expected_psi1 = np.array([9.8960906389, 15.]) - assert np.allclose(psi0, expected_psi0) - assert np.allclose(psi1, expected_psi1) +def test__calc_phi_bottom(): + rotation = 0. + z = np.linspace(0., 1., 3) + height = 1. + pitch = 2. + gcr = 0.5 + result = infinite_sheds._calc_phi_bottom( + z, gcr, rotation, height, pitch, max_rows=1) + expected = np.array( + [[21.80140948635181, 33.690067525979785, 63.43494882292201], + [63.43494882292201, 116.56505117707799, 146.30993247402023], + [146.30993247402023, 158.19859051364818, 164.05460409907712]]) + assert np.allclose(result, expected) def test__sky_angle(test_system): @@ -71,46 +71,6 @@ def test__sky_angle(test_system): assert np.allclose(tan_angle, exp_tan_angle) -def test__f_z0_limit(test_system): - result = infinite_sheds._f_z0_limit(**test_system) - expected = 1.0 - assert np.isclose(result, expected) - - -def test__f_z1_limit(test_system): - result = infinite_sheds._f_z1_limit(**test_system) - expected = 1.0 - assert np.isclose(result, expected) - - -def test__vf_sky(): - result = infinite_sheds._vf_sky(np.array([0.0, 30.0, 90.]), - np.array([0.0, 30.0, 90.])) - expected = np.array([1., np.sqrt(3) / 2, 0.]) - assert np.allclose(result, expected) - - -def test__vf_ground_sky(test_system): - pts, vfs = infinite_sheds._vf_ground_sky(**test_system, npoints=3) - expected_pts = np.linspace(0, 1, num=3) - sqr3 = np.sqrt(3) - # at f_z=0 - vf_0 = 0.5 * ((2 + sqr3) / np.sqrt(8 + 4 * sqr3) - sqr3 / 2) - # at f_z=0.5 - vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) - - np.sqrt(2 - sqr3) / 2) - vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) - - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) - vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) - - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) - vf_05 = vf_05_pre + vf_05_mid + vf_05_nex - # at f_z=1.0 - vf_1 = 0.5 * ((4 - 2 * sqr3) / 4 / np.sqrt(2 - sqr3) + sqr3 / 2) - expected_vfs = np.array([vf_0 + vf_1, vf_05, vf_0 + vf_1]) - assert np.allclose(vfs, expected_vfs, rtol=0.1) # middle point vf is off - assert np.allclose(pts, expected_pts) - - def test__vf_ground_sky_integ(test_system): vf_integ, pts, vf_pts = infinite_sheds._vf_ground_sky_integ( **test_system, npoints=3) @@ -230,14 +190,14 @@ def analytic(gcr, surface_tilt, x): def test_get_irradiance_poa(): - # front side irradiance - surface_tilt = np.array([0., 0., 0., 0.]) + # singleton inputs + surface_tilt = 0. height = 1. - surface_azimuth = np.array([180., 180., 180., 180.]) + surface_azimuth = 180. gcr = 0.5 pitch = 1 - solar_zenith = np.array([0., 45., 45., 90.]) - solar_azimuth = np.array([180., 180., 135., 180.]) + solar_zenith = 0. + solar_azimuth = 180. ghi = 1000 dhi = 300 dni = 700 @@ -256,6 +216,14 @@ def test_get_irradiance_poa(): assert np.allclose(res['poa_global'], expected_global) assert np.allclose(res['poa_diffuse'], expected_diffuse) assert np.allclose(res['poa_direct'], expected_direct) + surface_tilt = np.array([0., 0., 0., 0.]) + height = 1. + surface_azimuth = np.array([180., 180., 180., 180.]) + gcr = 0.5 + pitch = 1 + solar_zenith = np.array([0., 45., 45., 90.]) + solar_azimuth = np.array([180., 180., 135., 180.]) + # horizontal and elevated but gcr=1, so expect no rear irradiance height = 1 gcr = 1.0 @@ -267,4 +235,6 @@ def test_get_irradiance_poa(): assert np.allclose(res['poa_diffuse'], expected_diffuse) assert np.allclose(res['poa_direct'], expected_direct) -test_get_irradiance_poa() +#test_get_irradiance_poa() +#ts = test_system() +#test__vf_ground_sky_vec() diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 7e62775f68..d3a92814ff 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -7,10 +7,17 @@ import pytest from pvlib.bifacial import utils -BASEDIR = os.path.dirname(__file__) -PROJDIR = os.path.dirname(BASEDIR) -DATADIR = os.path.join(PROJDIR, 'data') -TESTDATA = os.path.join(DATADIR, 'infinite_sheds.csv') + +@pytest.fixture +def test_system_fixed_tilt(): + syst = {'height': 1.0, + 'pitch': 2., + 'surface_tilt': 30., + 'surface_azimuth': 180., + 'axis_azimuth': None, + 'rotation': -30.} + syst['gcr'] = 1.0 / syst['pitch'] + return syst def test_solar_projection_tangent(): @@ -43,3 +50,31 @@ def test_unshaded_ground_fraction( gcr, surface_tilt + 90, surface_azimuth - 180, solar_zenith, solar_azimuth) assert np.allclose(f_sky_beam_b, expected) + + +def test__vf_ground_sky(test_system_fixed_tilt): + # singleton inputs + pts = np.linspace(0, 1, num=3) + vfs, _ = utils.vf_ground_sky_2d( + pts, test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], + test_system_fixed_tilt['pitch'], test_system_fixed_tilt['height'], + max_rows=1) + sqr3 = np.sqrt(3) / 4 + # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 + c00 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row -1 + c01 = -sqr3 / np.sqrt(1.25**2 + sqr3**2) # right edge row 0 + c02 = sqr3 / np.sqrt(0.75**2 + sqr3**2) # left edge of row 0 + c03 = (2 - sqr3) / np.sqrt(1.25**2 + (2 - sqr3)**2) # right edge of row 1 + vf_0 = 0.5 * (c03 - c02 + c01 - c00) # vf at point 0 + c10 = (-3 - sqr3) / np.sqrt(1.25**2 + (3 + sqr3)**2) # right edge row -1 + c11 = (-1 - sqr3) / np.sqrt(1.25**2 + (1 + sqr3)**2) # right edge row 0 + c12 = (-1 + sqr3) / np.sqrt(0.75**2 + (-1 + sqr3)**2) # left edge row 0 + c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row + vf_1 = 0.5 * (c13 - c12 + c11 - c10) # vf at point 1 + c20 = -(4 + sqr3) / np.sqrt(1.25**2 + (4 + sqr3)**2) # right edge row -1 + c21 = (-2 + sqr3) / np.sqrt(0.75**2 + (-2 + sqr3)**2) # left edge row 0 + c22 = (-2 - sqr3) / np.sqrt(1.75**2 + (2 + sqr3)**2) # right edge row 0 + c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 + vf_2 = 0.5 * (c23 - c22 + c21 - c20) # vf at point 1 + expected_vfs = np.array([vf_0, vf_1, vf_2]) + assert np.allclose(vfs, expected_vfs, rtol=0.1) # middle point vf is off From ea5ea20934c5ef20797b595bfda063fffe7b8102 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 31 Dec 2021 14:34:01 -0700 Subject: [PATCH 068/115] lint, handle floats --- pvlib/bifacial/infinite_sheds.py | 8 ++++---- pvlib/bifacial/utils.py | 9 +++++---- pvlib/tests/bifacial/test_infinite_sheds.py | 4 ---- pvlib/tests/bifacial/test_utils.py | 20 ++++++++++++-------- 4 files changed, 21 insertions(+), 20 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index aeb6e47f8a..c6a873ba3f 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -66,7 +66,7 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): """ Convert surface tilt to rotation angle. - + Surface tilt angles are positive by definition. A positive rotation angle is counterclockwise in a right hand coordinate system with the axis of rotation positive in the direction of axis_azimuth. A positive @@ -78,7 +78,7 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] surface_azimuth : numeric - Surface azimuth angles in decimal degrees east of north + Surface azimuth angles in decimal degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. axis_azimuth : float or None, default None @@ -198,7 +198,7 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] surface_azimuth : numeric - Surface azimuth angles in decimal degrees east of north + Surface azimuth angles in decimal degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. pitch : float @@ -568,7 +568,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, (e.g. surface facing up = 0, surface facing horizon = 90). surface_azimuth : numeric - Surface azimuth angles in decimal degrees east of north + Surface azimuth angles in decimal degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 5002f8992d..f72d27dc72 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -90,7 +90,7 @@ def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): Parameters ---------- - x : array-like + x : numeric Position on the ground between two rows, as a fraction of the pitch. x = 0 corresponds to the center point of a row. rotation : float @@ -110,11 +110,12 @@ def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): vf : array-like Fraction of sky dome visible from each point on the ground. [unitless] wedge_angles : array - Bounding angles of each wedge of visible sky. + Bounding angles of each wedge of visible sky. Shape is (2, len(x), 2*max_rows+1). wedge_angles[0,:,:] is the starting angle of each wedge, wedge_angles[1,:,:] is the end angle. [degrees] """ + x = np.atleast_1d(x) # handle float all_k = np.arange(-max_rows, max_rows + 1) width = gcr * pitch / 2. # angles from x to left edge of each row @@ -123,7 +124,7 @@ def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): phi_1 = np.degrees(np.arctan2(a1, b1)) # angles from x to right edge of each row a2 = height - width * sind(rotation) - b2 = (all_k - x[:, np.newaxis]) * pitch - width * cosd(rotation) + b2 = (all_k - x[:, np.newaxis]) * pitch - width * cosd(rotation) phi_2 = np.degrees(np.arctan2(a2, b2)) phi = np.stack([phi_1, phi_2]) swap = phi[0, :, :] > phi[1, :, :] @@ -132,4 +133,4 @@ def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): # right edge of next row - left edge of previous row wedge_vfs = 0.5 * (cosd(phi[1,:,1:]) - cosd(phi[0,:,:-1])) vf = np.sum(np.where(wedge_vfs > 0, wedge_vfs, 0.), axis=1) - return vf, phi \ No newline at end of file + return vf, phi diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index fd252c9626..aea53d27ec 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -234,7 +234,3 @@ def test_get_irradiance_poa(): assert np.allclose(res['poa_global'], expected_global) assert np.allclose(res['poa_diffuse'], expected_diffuse) assert np.allclose(res['poa_direct'], expected_direct) - -#test_get_irradiance_poa() -#ts = test_system() -#test__vf_ground_sky_vec() diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index d3a92814ff..871f55c403 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -1,8 +1,6 @@ """ -test infinite sheds +test bifical.utils """ - -import os import numpy as np import pytest from pvlib.bifacial import utils @@ -53,10 +51,10 @@ def test_unshaded_ground_fraction( def test__vf_ground_sky(test_system_fixed_tilt): - # singleton inputs + # vect0r input pts = np.linspace(0, 1, num=3) vfs, _ = utils.vf_ground_sky_2d( - pts, test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], + pts, test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], test_system_fixed_tilt['pitch'], test_system_fixed_tilt['height'], max_rows=1) sqr3 = np.sqrt(3) / 4 @@ -69,12 +67,18 @@ def test__vf_ground_sky(test_system_fixed_tilt): c10 = (-3 - sqr3) / np.sqrt(1.25**2 + (3 + sqr3)**2) # right edge row -1 c11 = (-1 - sqr3) / np.sqrt(1.25**2 + (1 + sqr3)**2) # right edge row 0 c12 = (-1 + sqr3) / np.sqrt(0.75**2 + (-1 + sqr3)**2) # left edge row 0 - c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row + c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row vf_1 = 0.5 * (c13 - c12 + c11 - c10) # vf at point 1 c20 = -(4 + sqr3) / np.sqrt(1.25**2 + (4 + sqr3)**2) # right edge row -1 c21 = (-2 + sqr3) / np.sqrt(0.75**2 + (-2 + sqr3)**2) # left edge row 0 - c22 = (-2 - sqr3) / np.sqrt(1.75**2 + (2 + sqr3)**2) # right edge row 0 - c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 + c22 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row 0 + c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 vf_2 = 0.5 * (c23 - c22 + c21 - c20) # vf at point 1 expected_vfs = np.array([vf_0, vf_1, vf_2]) assert np.allclose(vfs, expected_vfs, rtol=0.1) # middle point vf is off + # test with singleton x + vf, _ = utils.vf_ground_sky_2d( + pts[0], test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], + test_system_fixed_tilt['pitch'], test_system_fixed_tilt['height'], + max_rows=1) + assert np.isclose(vf, expected_vfs[0]) From c5a9d615a027e924ca7a4899806445ccb6ce91aa Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 10:24:30 -0700 Subject: [PATCH 069/115] improve test fixture, remove unused --- pvlib/bifacial/infinite_sheds.py | 79 +-------------- pvlib/bifacial/utils.py | 2 +- pvlib/tests/bifacial/test_infinite_sheds.py | 105 ++++++++------------ pvlib/tests/bifacial/test_utils.py | 60 ++++++----- 4 files changed, 75 insertions(+), 171 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index c6a873ba3f..e26efb40ff 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -105,83 +105,6 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): return rotation -def _calc_phi_top(z, gcr, rotation, height, pitch, max_rows=5): - ''' - Angle from z to the top (left) edge of each row. - - Parameters - ---------- - z : array-like - Position on the ground between two rows, as a fraction of the pitch. - z = 0 corresponds to the center point of a row. - gcr : float - Ratio of row slant length to row spacing (pitch). [unitless] - rotation : float - Rotation of lower (right) edge relative to row center. [degree] - height : float - Height of center point of the row above the ground. Must be in the same - units as pitch. - pitch : float - Distance between two rows. Must be in the same units as height. - max_rows : int, default 5 - Maximum number of rows to consider in front and behind the current row. - - Returns - ------- - ndarray or float - Angle to line from z to the top (left) edge of each row. Rows are - ordered from max_row down to -max_row, column order corresponds to z. - [degree] - - ''' - length = pitch * gcr - # order from front to back - k = np.arange(max_rows, -max_rows-1, -1) - b = (k - z[:, np.newaxis]) * pitch - 0.5 * length * cosd(rotation) - a = height + 0.5 * length * sind(rotation) - phi = np.rad2deg(np.arctan2(a, b)) - # transpose so that rows are in columns - return phi.T - - -def _calc_phi_bottom(z, gcr, rotation, height, pitch, max_rows=5): - ''' - Angle from z to the bottom (right) edge of each row. - - Parameters - ---------- - z : array-like - Position on the ground between two rows, as a fraction of the pitch. - z = 0 corresponds to the center point of a row. - gcr : float - Ratio of row slant length to row spacing (pitch). [unitless] - rotation : float - Rotation of lower (right) edge relative to row center. [degree] - height : float - Height of center point of the row above the ground. Must be in the same - units as pitch. - pitch : float - Distance between two rows. Must be in the same units as height. - max_rows : int, default 5 - Maximum number of rows to consider in front and behind the current row. - - Returns - ------- - ndarray or float - Angle to line from z to the bottom (right) edge of each row. [degree] - - ''' - length = pitch * gcr - # calculate height of left/bottom edge - h = height + 0.5 * length * sind(rotation) - # order from front to back - k = np.arange(max_rows, -max_rows-1, -1) - b = (k - z[:, np.newaxis]) * pitch + 0.5 * length * cosd(rotation) - phi = np.rad2deg(np.arctan2(h, b)) - # transpose so that rows are in columns - return phi.T - - def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, pitch, axis_azimuth=None, max_rows=5, npoints=100): """ @@ -227,7 +150,7 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, rotation = _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth) # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back - fz_sky = utils._vf_ground_sky_2d(z, rotation, gcr, pitch, height, max_rows) + fz_sky, _ = utils.vf_ground_sky_2d(z, rotation, gcr, pitch, height, max_rows) # calculate the integrated view factor for all of the ground between rows fgnd_sky = np.trapz(fz_sky, z) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index f72d27dc72..9230a7f7f5 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -131,6 +131,6 @@ def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): # swap where phi_1 > phi_2 so that phi_1[0,:,:] is the left edge phi = np.where(swap, phi[::-1], phi) # right edge of next row - left edge of previous row - wedge_vfs = 0.5 * (cosd(phi[1,:,1:]) - cosd(phi[0,:,:-1])) + wedge_vfs = 0.5 * (cosd(phi[1, :, 1:]) - cosd(phi[0, :, :-1])) vf = np.sum(np.where(wedge_vfs > 0, wedge_vfs, 0.), axis=1) return vf, phi diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index aea53d27ec..493f67fd5c 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -11,14 +11,34 @@ @pytest.fixture def test_system(): - syst = {'height': 1.5, - 'pitch': 4., + syst = {'height': 1.0, + 'pitch': 2., 'surface_tilt': 30., 'surface_azimuth': 180., 'axis_azimuth': None, 'rotation': -30.} - syst['gcr'] = 2.0 / syst['pitch'] - return syst + syst['gcr'] = 1.0 / syst['pitch'] + pts = np.linspace(0, 1, num=3) + sqr3 = np.sqrt(3) / 4 + # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 + # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 + c00 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row -1 + c01 = -sqr3 / np.sqrt(1.25**2 + sqr3**2) # right edge row 0 + c02 = sqr3 / np.sqrt(0.75**2 + sqr3**2) # left edge of row 0 + c03 = (2 - sqr3) / np.sqrt(1.25**2 + (2 - sqr3)**2) # right edge of row 1 + vf_0 = 0.5 * (c03 - c02 + c01 - c00) # vf at point 0 + c10 = (-3 - sqr3) / np.sqrt(1.25**2 + (3 + sqr3)**2) # right edge row -1 + c11 = (-1 - sqr3) / np.sqrt(1.25**2 + (1 + sqr3)**2) # right edge row 0 + c12 = (-1 + sqr3) / np.sqrt(0.75**2 + (-1 + sqr3)**2) # left edge row 0 + c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row + vf_1 = 0.5 * (c13 - c12 + c11 - c10) # vf at point 1 + c20 = -(4 + sqr3) / np.sqrt(1.25**2 + (4 + sqr3)**2) # right edge row -1 + c21 = (-2 + sqr3) / np.sqrt(0.75**2 + (-2 + sqr3)**2) # left edge row 0 + c22 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row 0 + c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 + vf_2 = 0.5 * (c23 - c22 + c21 - c20) # vf at point 1 + vfs_ground_sky = np.array([vf_0, vf_1, vf_2]) + return syst, pts, vfs_ground_sky def test__tilt_to_rotation(): @@ -31,40 +51,11 @@ def test__tilt_to_rotation(): assert np.allclose(res, np.array([0., -20., -90.])) -def test__calc_phi_top(): - rotation = 0. - z = np.linspace(0., 1., 3) - height = 1. - pitch = 2. - gcr = 0.5 - result = infinite_sheds._calc_phi_top( - z, gcr, rotation, height, pitch, max_rows=1) - expected = np.array( - [[33.690067525979785, 63.43494882292201, 116.56505117707799], - [116.56505117707799, 146.30993247402023, 158.19859051364818], - [158.19859051364818, 164.05460409907712, 167.47119229084848]]) - assert np.allclose(result, expected) - - -def test__calc_phi_bottom(): - rotation = 0. - z = np.linspace(0., 1., 3) - height = 1. - pitch = 2. - gcr = 0.5 - result = infinite_sheds._calc_phi_bottom( - z, gcr, rotation, height, pitch, max_rows=1) - expected = np.array( - [[21.80140948635181, 33.690067525979785, 63.43494882292201], - [63.43494882292201, 116.56505117707799, 146.30993247402023], - [146.30993247402023, 158.19859051364818, 164.05460409907712]]) - assert np.allclose(result, expected) - - def test__sky_angle(test_system): + ts, _, _ = test_system x = np.array([0., 1.0]) angle, tan_angle = infinite_sheds._sky_angle( - test_system['gcr'], test_system['surface_tilt'], x) + ts['gcr'], ts['surface_tilt'], x) exp_tan_angle = np.array([1. / (4 - np.sqrt(3)), 0.]) exp_angle = np.array([23.79397689, 0.]) assert np.allclose(angle, exp_angle) @@ -72,32 +63,21 @@ def test__sky_angle(test_system): def test__vf_ground_sky_integ(test_system): - vf_integ, pts, vf_pts = infinite_sheds._vf_ground_sky_integ( - **test_system, npoints=3) - expected_pts = np.linspace(0, 1, num=3) - sqr3 = np.sqrt(3) - # at f_z=0 - vf_0 = 0.5 * ((2 + sqr3) / np.sqrt(8 + 4 * sqr3) - sqr3 / 2) - # at f_z=0.5 - vf_05_pre = 0.5 * ((3 - sqr3) / np.sqrt(13 - 6 * sqr3) - - np.sqrt(2 - sqr3) / 2) - vf_05_mid = 0.5 * ((sqr3 + 1) / np.sqrt(5 + 2 * sqr3) - - (sqr3 - 1) / np.sqrt(5 - 2 * sqr3)) - vf_05_nex = 0.5 * ((2 + sqr3) / (2 * np.sqrt(2 + sqr3)) - - (3 + sqr3) / np.sqrt(13 + 6 * sqr3)) - vf_05 = vf_05_pre + vf_05_mid + vf_05_nex - # at f_z=1.0 - vf_1 = 0.5 * ((4 - 2 * sqr3) / 4 / np.sqrt(2 - sqr3) + sqr3 / 2) - expected_vfs = np.array([vf_0 + vf_1, vf_05, vf_0 + vf_1]) - expected_vf_integ = np.trapz(expected_vfs, pts) - assert np.allclose(pts, expected_pts) - assert np.allclose(vf_pts, expected_vfs, rtol=0.1) + ts, pts, vfs_gnd_sky = test_system + vf_integ, z, vfs = infinite_sheds._vf_ground_sky_integ( + ts['gcr'], ts['height'], ts['surface_tilt'], + ts['surface_azimuth'], ts['pitch'], + ts['axis_azimuth'], max_rows=1, npoints=3) + expected_vf_integ = np.trapz(vfs_gnd_sky, pts) + assert np.allclose(z, pts) + assert np.allclose(vfs, vfs_gnd_sky, rtol=0.1) assert np.isclose(vf_integ, expected_vf_integ, rtol=0.1) def test__vf_row_sky_integ(test_system): - gcr = test_system['gcr'] - surface_tilt = test_system['surface_tilt'] + ts, _, _ = test_system + gcr = ts['gcr'] + surface_tilt = ts['surface_tilt'] f_x = np.array([0., 0.5, 1.]) shaded = [] noshade = [] @@ -137,9 +117,10 @@ def test__poa_sky_diffuse_pv(): def test__ground_angle(test_system): + ts, _, _ = test_system x = np.array([0., 0.5, 1.0]) angles, tan_angles = infinite_sheds._ground_angle( - test_system['gcr'], test_system['surface_tilt'], x) + ts['gcr'], ts['surface_tilt'], x) expected_angles = np.array([0., 5.866738789543952, 9.896090638982903]) expected_tan_angles = np.array([0., 0.5 / (4 + np.sqrt(3) / 2.), 1. / (4 + np.sqrt(3))]) @@ -148,10 +129,11 @@ def test__ground_angle(test_system): def test__vf_row_ground(test_system): + ts, _, _ = test_system x = np.array([0., 0.5, 1.0]) sqr3 = np.sqrt(3) vfs = infinite_sheds._vf_row_ground( - test_system['gcr'], test_system['surface_tilt'], x) + ts['gcr'], ts['surface_tilt'], x) expected_vfs = np.array([ 0.5 * (1. - sqr3 / 2), 0.5 * ((4 + sqr3 / 2) / np.sqrt(17 + 4 * sqr3) - sqr3 / 2), @@ -160,8 +142,9 @@ def test__vf_row_ground(test_system): def test__vf_row_ground_integ(test_system): - gcr = test_system['gcr'] - surface_tilt = test_system['surface_tilt'] + ts, _, _ = test_system + gcr = ts['gcr'] + surface_tilt = ts['surface_tilt'] f_x = np.array([0., 0.5, 1.0]) shaded = [] noshade = [] diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 871f55c403..6a4470103b 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -15,7 +15,27 @@ def test_system_fixed_tilt(): 'axis_azimuth': None, 'rotation': -30.} syst['gcr'] = 1.0 / syst['pitch'] - return syst + pts = np.linspace(0, 1, num=3) + sqr3 = np.sqrt(3) / 4 + # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 + # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 + c00 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row -1 + c01 = -sqr3 / np.sqrt(1.25**2 + sqr3**2) # right edge row 0 + c02 = sqr3 / np.sqrt(0.75**2 + sqr3**2) # left edge of row 0 + c03 = (2 - sqr3) / np.sqrt(1.25**2 + (2 - sqr3)**2) # right edge of row 1 + vf_0 = 0.5 * (c03 - c02 + c01 - c00) # vf at point 0 + c10 = (-3 - sqr3) / np.sqrt(1.25**2 + (3 + sqr3)**2) # right edge row -1 + c11 = (-1 - sqr3) / np.sqrt(1.25**2 + (1 + sqr3)**2) # right edge row 0 + c12 = (-1 + sqr3) / np.sqrt(0.75**2 + (-1 + sqr3)**2) # left edge row 0 + c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row + vf_1 = 0.5 * (c13 - c12 + c11 - c10) # vf at point 1 + c20 = -(4 + sqr3) / np.sqrt(1.25**2 + (4 + sqr3)**2) # right edge row -1 + c21 = (-2 + sqr3) / np.sqrt(0.75**2 + (-2 + sqr3)**2) # left edge row 0 + c22 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row 0 + c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 + vf_2 = 0.5 * (c23 - c22 + c21 - c20) # vf at point 1 + vfs_ground_sky = np.array([vf_0, vf_1, vf_2]) + return syst, pts, vfs_ground_sky def test_solar_projection_tangent(): @@ -51,34 +71,12 @@ def test_unshaded_ground_fraction( def test__vf_ground_sky(test_system_fixed_tilt): - # vect0r input - pts = np.linspace(0, 1, num=3) - vfs, _ = utils.vf_ground_sky_2d( - pts, test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], - test_system_fixed_tilt['pitch'], test_system_fixed_tilt['height'], - max_rows=1) - sqr3 = np.sqrt(3) / 4 - # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 - c00 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row -1 - c01 = -sqr3 / np.sqrt(1.25**2 + sqr3**2) # right edge row 0 - c02 = sqr3 / np.sqrt(0.75**2 + sqr3**2) # left edge of row 0 - c03 = (2 - sqr3) / np.sqrt(1.25**2 + (2 - sqr3)**2) # right edge of row 1 - vf_0 = 0.5 * (c03 - c02 + c01 - c00) # vf at point 0 - c10 = (-3 - sqr3) / np.sqrt(1.25**2 + (3 + sqr3)**2) # right edge row -1 - c11 = (-1 - sqr3) / np.sqrt(1.25**2 + (1 + sqr3)**2) # right edge row 0 - c12 = (-1 + sqr3) / np.sqrt(0.75**2 + (-1 + sqr3)**2) # left edge row 0 - c13 = (1 - sqr3) / np.sqrt(1.25**2 + (1 - sqr3)**2) # right edge row - vf_1 = 0.5 * (c13 - c12 + c11 - c10) # vf at point 1 - c20 = -(4 + sqr3) / np.sqrt(1.25**2 + (4 + sqr3)**2) # right edge row -1 - c21 = (-2 + sqr3) / np.sqrt(0.75**2 + (-2 + sqr3)**2) # left edge row 0 - c22 = (-2 - sqr3) / np.sqrt(1.25**2 + (2 + sqr3)**2) # right edge row 0 - c23 = (0 - sqr3) / np.sqrt(1.25**2 + (0 - sqr3)**2) # right edge row 1 - vf_2 = 0.5 * (c23 - c22 + c21 - c20) # vf at point 1 - expected_vfs = np.array([vf_0, vf_1, vf_2]) - assert np.allclose(vfs, expected_vfs, rtol=0.1) # middle point vf is off + # vector input + ts, pts, vfs_gnd_sky = test_system_fixed_tilt + vfs, _ = utils.vf_ground_sky_2d(pts, ts['rotation'], ts['gcr'], + ts['pitch'], ts['height'], max_rows=1) + assert np.allclose(vfs, vfs_gnd_sky, rtol=0.1) # middle point vf is off # test with singleton x - vf, _ = utils.vf_ground_sky_2d( - pts[0], test_system_fixed_tilt['rotation'], test_system_fixed_tilt['gcr'], - test_system_fixed_tilt['pitch'], test_system_fixed_tilt['height'], - max_rows=1) - assert np.isclose(vf, expected_vfs[0]) + vf, _ = utils.vf_ground_sky_2d(pts[0], ts['rotation'], ts['gcr'], + ts['pitch'], ts['height'], max_rows=1) + assert np.isclose(vf, vfs_gnd_sky[0]) From 6156dca8106b5c498373745169e9b5c592c85a6f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 11:14:35 -0700 Subject: [PATCH 070/115] loop over rotations in _vf_ground_sky_integ, test get_irradiance_poa --- pvlib/bifacial/infinite_sheds.py | 12 ++++++++---- pvlib/tests/bifacial/test_infinite_sheds.py | 20 ++++++++++---------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index e26efb40ff..f285fa1f82 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -147,13 +147,17 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, """ z = np.linspace(0, 1, npoints) - rotation = _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth) + rotation = np.atleast_1d(_tilt_to_rotation( + surface_tilt, surface_azimuth, axis_azimuth)) # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back - fz_sky, _ = utils.vf_ground_sky_2d(z, rotation, gcr, pitch, height, max_rows) - + # TODO: vectorize over rotation + fz_sky = np.zeros((len(rotation), npoints)) + for k, r in enumerate(rotation): + vf, _ = utils.vf_ground_sky_2d(z, r, gcr, pitch, height, max_rows) + fz_sky[k, :] = vf # calculate the integrated view factor for all of the ground between rows - fgnd_sky = np.trapz(fz_sky, z) + fgnd_sky = np.trapz(fz_sky, z, axis=1) return fgnd_sky, z, fz_sky diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 493f67fd5c..df0d93f30e 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -192,13 +192,13 @@ def test_get_irradiance_poa(): solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam, npoints, all_output) - expected_diffuse = np.array([300., 300., 300., 300.]) - expected_direct = np.array( - [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) + expected_diffuse = np.array([300.]) + expected_direct = np.array([700.]) expected_global = expected_diffuse + expected_direct - assert np.allclose(res['poa_global'], expected_global) - assert np.allclose(res['poa_diffuse'], expected_diffuse) - assert np.allclose(res['poa_direct'], expected_direct) + assert np.isclose(res['poa_global'], expected_global) + assert np.isclose(res['poa_diffuse'], expected_diffuse) + assert np.isclose(res['poa_direct'], expected_direct) + # vector inputs surface_tilt = np.array([0., 0., 0., 0.]) height = 1. surface_azimuth = np.array([180., 180., 180., 180.]) @@ -206,10 +206,10 @@ def test_get_irradiance_poa(): pitch = 1 solar_zenith = np.array([0., 45., 45., 90.]) solar_azimuth = np.array([180., 180., 135., 180.]) - - # horizontal and elevated but gcr=1, so expect no rear irradiance - height = 1 - gcr = 1.0 + expected_diffuse = np.array([300., 300., 300., 300.]) + expected_direct = np.array( + [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) + expected_global = expected_diffuse + expected_direct res = infinite_sheds.get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, From c574262bb7f4ab88a97e8e970eccd182298876ff Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 11:25:37 -0700 Subject: [PATCH 071/115] more tests --- pvlib/bifacial/infinite_sheds.py | 1 - pvlib/tests/bifacial/test_infinite_sheds.py | 17 +++++++++++++++++ pvlib/tests/bifacial/test_utils.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index f285fa1f82..4de330dcec 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -466,7 +466,6 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -# TODO: not tested def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, axis_azimuth=None, max_rows=5, diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index df0d93f30e..e1000ce775 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -172,6 +172,23 @@ def analytic(gcr, surface_tilt, x): assert np.allclose(noshade, expected_noshade) +def test__poa_ground_shadows(): + poa_ground, f_gnd_beam, df, vf_gnd_sky = (300., 0.5, 0.5, 0.2) + result = infinite_sheds._poa_ground_shadows( + poa_ground, f_gnd_beam, df, vf_gnd_sky) + expected = 300. * (0.5 * 0.5 + 0.5 * 0.2) + assert np.isclose(result, expected) + # vector inputs + poa_ground = np.array([300., 300.]) + f_gnd_beam = np.array([0.5, 0.5]) + df = np.array([0.5, np.inf]) + vf_gnd_sky = np.array([0.2, 0.2]) + result = infinite_sheds._poa_ground_shadows( + poa_ground, f_gnd_beam, df, vf_gnd_sky) + expected_vec = np.array([expected, 300. * 0.5]) + assert np.allclose(result, expected_vec) + + def test_get_irradiance_poa(): # singleton inputs surface_tilt = 0. diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 6a4470103b..3de2f622f2 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -74,7 +74,7 @@ def test__vf_ground_sky(test_system_fixed_tilt): # vector input ts, pts, vfs_gnd_sky = test_system_fixed_tilt vfs, _ = utils.vf_ground_sky_2d(pts, ts['rotation'], ts['gcr'], - ts['pitch'], ts['height'], max_rows=1) + ts['pitch'], ts['height'], max_rows=1) assert np.allclose(vfs, vfs_gnd_sky, rtol=0.1) # middle point vf is off # test with singleton x vf, _ = utils.vf_ground_sky_2d(pts[0], ts['rotation'], ts['gcr'], From c581c8883d061dbca143c0ca308c978dbbf89198 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 11:26:38 -0700 Subject: [PATCH 072/115] lint --- pvlib/bifacial/infinite_sheds.py | 1 - pvlib/tests/bifacial/test_infinite_sheds.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 4de330dcec..c5d0af0928 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -162,7 +162,6 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, return fgnd_sky, z, fz_sky -# TODO: not tested def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): """ Reduce ground-reflected irradiance to the tilted plane (poa_ground) to diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index e1000ce775..f66798838e 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -185,7 +185,7 @@ def test__poa_ground_shadows(): vf_gnd_sky = np.array([0.2, 0.2]) result = infinite_sheds._poa_ground_shadows( poa_ground, f_gnd_beam, df, vf_gnd_sky) - expected_vec = np.array([expected, 300. * 0.5]) + expected_vec = np.array([expected, 300. * 0.5]) assert np.allclose(result, expected_vec) From b0ba9f545a1204d3b1988d59644f9e4e547af812 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 14:26:49 -0700 Subject: [PATCH 073/115] complete coverage --- pvlib/bifacial/infinite_sheds.py | 6 +++++- pvlib/tests/bifacial/test_infinite_sheds.py | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index c5d0af0928..70448b4935 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -278,6 +278,8 @@ def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): _sky_angle """ + # handle Series inputs + surface_tilt = np.array(surface_tilt) cst = cosd(surface_tilt) # shaded portion x = np.linspace(0 * f_x, f_x, num=npoints) @@ -423,6 +425,8 @@ def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): Each view factor is integrated over the relevant portion of the row slant height. """ + # handle Series inputs + surface_tilt = np.array(surface_tilt) # shaded portion of row slant height x = np.linspace(0 * f_x, f_x, num=npoints) # view factor from the point on the row to the ground @@ -625,7 +629,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, if all_output: output.update(poa_diffuse_sky=poa_sky_pv, poa_diffuse_ground=poa_gnd_pv) - if isinstance(ghi, pd.Series): + if isinstance(poa_global, pd.Series): output = pd.DataFrame(output) return output diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index f66798838e..751af5a682 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -3,8 +3,10 @@ """ import numpy as np +import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd +from ..conftest import assert_series_equal import pytest @@ -234,3 +236,20 @@ def test_get_irradiance_poa(): assert np.allclose(res['poa_global'], expected_global) assert np.allclose(res['poa_diffuse'], expected_diffuse) assert np.allclose(res['poa_direct'], expected_direct) + # series inputs + surface_tilt = pd.Series(surface_tilt) + surface_azimuth = pd.Series(data=surface_azimuth, index=surface_tilt.index) + solar_zenith = pd.Series(solar_zenith, index=surface_tilt.index) + solar_azimuth = pd.Series(data=solar_azimuth, index=surface_tilt.index) + expected_diffuse = pd.Series( + data=expected_diffuse, index=surface_tilt.index) + expected_direct = pd.Series( + data=expected_direct, index=surface_tilt.index) + expected_global = expected_diffuse + expected_direct + expected_global.name = 'poa_global' # to match output Series + res = infinite_sheds.get_irradiance_poa( + solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, iam, npoints, all_output) + assert isinstance(res, pd.DataFrame) + assert_series_equal(res['poa_global'], expected_global) From 6127c4fdb7b4fa7109be47d2fe798d651aa6ea48 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 1 Jan 2022 15:35:29 -0700 Subject: [PATCH 074/115] progress on testing get_irradiance --- pvlib/bifacial/infinite_sheds.py | 51 +++++++++++++-------- pvlib/tests/bifacial/test_infinite_sheds.py | 51 +++++++++++++++++---- 2 files changed, 75 insertions(+), 27 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 70448b4935..c1278195c1 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -571,9 +571,9 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array - vf_gnd_sky, _, _ = _vf_ground_sky_integ(gcr, height, surface_tilt, pitch, - axis_azimuth, max_rows, npoints) - + vf_gnd_sky, _, _ = _vf_ground_sky_integ( + gcr, height, surface_tilt, surface_azimuth, pitch, axis_azimuth, + max_rows, npoints) # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) @@ -624,11 +624,10 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, output = OrderedDict( poa_global=poa_global, poa_direct=poa_direct, - poa_diffuse=poa_diffuse, poa_ground_diffuse=poa_gnd_pv, - poa_sky_diffuse=poa_sky_pv) + poa_diffuse=poa_diffuse) if all_output: - output.update(poa_diffuse_sky=poa_sky_pv, - poa_diffuse_ground=poa_gnd_pv) + output.update( + poa_ground_diffuse=poa_gnd_pv, poa_sky_diffuse=poa_sky_pv) if isinstance(poa_global, pd.Series): output = pd.DataFrame(output) return output @@ -637,9 +636,9 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, dni_extra, iam_front=1.0, iam_back=1.0, + albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, - transmission_factor=0): + transmission_factor=0, max_rows=5, npoints=100): """ Get bifacial irradiance using the infinite sheds model. @@ -672,13 +671,13 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, pitch : numeric row spacing. - ghi : numeric + ghi : array-like Global horizontal irradiance. [W/m2] - dhi : numeric + dhi : array-like Diffuse horizontal irradiance. [W/m2] - dni : numeric + dni : array-like Direct normal irradiance. [W/m2] albedo : numeric @@ -706,6 +705,12 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, module's cells due to module structures. Negative value is a reduction in back irradiance. [unitless] + max_rows : int, default 5 + Maximum number of rows to consider in front and behind the current row. + + npoints : int, default 100 + Number of points used to discretize distance along the ground. + Returns ------- output : OrderedDict or DataFrame @@ -731,18 +736,26 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, irrad_front = get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front) - irrad_front.rename(columns={'poa_global': 'poa_front', - 'poa_diffuse': 'poa_front_diffuse', - 'poa_direct': 'poa_front_direct'}) # back side POA irradiance irrad_back = get_irradiance_poa( solar_zenith, solar_azimuth, backside_tilt, backside_sysaz, gcr, height, pitch, ghi, dhi, dni, albedo, iam_back) - irrad_back.rename(columns={'poa_global': 'poa_back', - 'poa_diffuse': 'poa_back_diffuse', - 'poa_direct': 'poa_back_direct'}) + if isinstance(ghi, pd.Series): + irrad_front.rename(columns={'poa_global': 'poa_front', + 'poa_diffuse': 'poa_front_diffuse', + 'poa_direct': 'poa_front_direct'}) + irrad_back.rename(columns={'poa_global': 'poa_back', + 'poa_diffuse': 'poa_back_diffuse', + 'poa_direct': 'poa_back_direct'}) + output = pd.concat([irrad_front, irrad_back], axis=1) + else: + front = ['poa_front', 'poa_front_diffuse', 'poa_front_direct'] + back = ['poa_back', 'poa_back_diffuse', 'poa_back_direct'] + irrad_front = OrderedDict(zip(front, irrad_front.values())) + irrad_back = OrderedDict(zip(back, irrad_back.values())) + irrad_front.update(irrad_back) + output = irrad_front effects = (1 + shade_factor) * (1 + transmission_factor) - output = pd.concat([irrad_front, irrad_back], axis=1) output['poa_global'] = output['poa_front'] + \ output['poa_back'] * bifaciality * effects return output diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 751af5a682..3080c1e50b 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd -from ..conftest import assert_series_equal +#from ..conftest import assert_series_equal import pytest @@ -193,24 +193,23 @@ def test__poa_ground_shadows(): def test_get_irradiance_poa(): # singleton inputs + solar_zenith = 0. + solar_azimuth = 180. surface_tilt = 0. - height = 1. surface_azimuth = 180. gcr = 0.5 + height = 1. pitch = 1 - solar_zenith = 0. - solar_azimuth = 180. ghi = 1000 dhi = 300 dni = 700 albedo = 0 iam = 1.0 npoints = 100 - all_output = True res = infinite_sheds.get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam, npoints, all_output) + albedo, iam=iam, npoints=npoints) expected_diffuse = np.array([300.]) expected_direct = np.array([700.]) expected_global = expected_diffuse + expected_direct @@ -232,7 +231,7 @@ def test_get_irradiance_poa(): res = infinite_sheds.get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam, npoints, all_output) + albedo, iam=iam, npoints=npoints) assert np.allclose(res['poa_global'], expected_global) assert np.allclose(res['poa_diffuse'], expected_diffuse) assert np.allclose(res['poa_direct'], expected_direct) @@ -250,6 +249,42 @@ def test_get_irradiance_poa(): res = infinite_sheds.get_irradiance_poa( solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam, npoints, all_output) + albedo, iam=iam, npoints=npoints, all_output=True) assert isinstance(res, pd.DataFrame) assert_series_equal(res['poa_global'], expected_global) + assert all(k in res.columns for k in [ + 'poa_global', 'poa_diffuse', 'poa_direct', 'poa_ground_diffuse', + 'poa_sky_diffuse']) + + +def test_get_irradiance(): + # singleton inputs + # singleton inputs + solar_zenith = 0. + solar_azimuth = 180. + surface_tilt = 0. + surface_azimuth = 180. + gcr = 0.5 + height = 1. + pitch = 1 + ghi = 1000 + dhi = 300 + dni = 700 + albedo = 0 + iam_front = 1.0 + iam_back = 1.0 + npoints = 100 + result = infinite_sheds.get_irradiance( + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, + height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, + bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, + npoints=npoints) + expected_diffuse = np.array([300.]) + expected_direct = np.array([700.]) + expected_global = expected_diffuse + expected_direct + assert np.isclose(result['poa_global'], expected_global) + assert np.isclose(result['poa_diffuse'], expected_diffuse) + assert np.isclose(result['poa_direct'], expected_direct) + + +test_get_irradiance() From 186d6701be923a222f10134223e01925931d4c45 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 2 Jan 2022 10:50:38 -0700 Subject: [PATCH 075/115] more testing --- pvlib/bifacial/infinite_sheds.py | 17 +++++++++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 14 +++++++++++--- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index c1278195c1..fbdaa8336b 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -600,8 +600,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # sky diffuse reflected from the ground to an array consisting of a single # row poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) - poa_beam = beam_component(surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth, dni) + # Total sky diffuse recieved by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( dhi, f_x, vf_shade_sky, vf_noshade_sky) @@ -619,6 +618,9 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # add sky and ground-reflected irradiance on the row by irradiance # component poa_diffuse = poa_gnd_pv + poa_sky_pv + # beam on plane, make an array for consistency with poa_diffuse + poa_beam = np.atleast_1d(beam_component( + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni)) poa_direct = poa_beam * (1 - f_x) * iam # direct only on the unshaded part poa_global = poa_direct + poa_diffuse @@ -749,10 +751,13 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, 'poa_direct': 'poa_back_direct'}) output = pd.concat([irrad_front, irrad_back], axis=1) else: + old = ['poa_global', 'poa_diffuse', 'poa_direct'] front = ['poa_front', 'poa_front_diffuse', 'poa_front_direct'] back = ['poa_back', 'poa_back_diffuse', 'poa_back_direct'] - irrad_front = OrderedDict(zip(front, irrad_front.values())) - irrad_back = OrderedDict(zip(back, irrad_back.values())) + for old_key, new_key in zip(old, front): + irrad_front[new_key] = irrad_front.pop(old_key) + for old_key, new_key in zip(old, back): + irrad_back[new_key] = irrad_back.pop(old_key) irrad_front.update(irrad_back) output = irrad_front effects = (1 + shade_factor) * (1 + transmission_factor) @@ -762,6 +767,6 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, def _backside(tilt, system_azimuth): - backside_tilt = np.pi - tilt - backside_sysaz = (np.pi + system_azimuth) % (2*np.pi) + backside_tilt = 180. - tilt + backside_sysaz = (180. + system_azimuth) % 360. return backside_tilt, backside_sysaz diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 3080c1e50b..5d90e52ea8 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd -#from ..conftest import assert_series_equal +from ..conftest import assert_series_equal import pytest @@ -257,6 +257,14 @@ def test_get_irradiance_poa(): 'poa_sky_diffuse']) +def test__backside_tilt(): + tilt = np.array([0., 30., 30., 180.]) + system_azimuth = np.array([180., 150., 270., 0.]) + back_tilt, back_az = infinite_sheds._backside(tilt, system_azimuth) + assert np.allclose(back_tilt, np.array([180., 150., 150., 0.])) + assert np.allclose(back_az, np.array([0., 330., 90., 180.])) + + def test_get_irradiance(): # singleton inputs # singleton inputs @@ -283,8 +291,8 @@ def test_get_irradiance(): expected_direct = np.array([700.]) expected_global = expected_diffuse + expected_direct assert np.isclose(result['poa_global'], expected_global) - assert np.isclose(result['poa_diffuse'], expected_diffuse) - assert np.isclose(result['poa_direct'], expected_direct) + assert np.isclose(result['poa_front_diffuse'], expected_diffuse) + assert np.isclose(result['poa_front_direct'], expected_direct) test_get_irradiance() From e25a113bfb8e9d22cdd6c26fc66fa88e24abb2ab Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 2 Jan 2022 10:51:13 -0700 Subject: [PATCH 076/115] whoops --- pvlib/tests/bifacial/test_infinite_sheds.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 5d90e52ea8..be0ecf8dc5 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -293,6 +293,3 @@ def test_get_irradiance(): assert np.isclose(result['poa_global'], expected_global) assert np.isclose(result['poa_front_diffuse'], expected_diffuse) assert np.isclose(result['poa_front_direct'], expected_direct) - - -test_get_irradiance() From 460714afac98825e2b4028f3d739c2335c35ee0a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 4 Jan 2022 09:26:50 -0700 Subject: [PATCH 077/115] merge upstream --- pvlib/tests/bifacial/test_infinite_sheds.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index be0ecf8dc5..d795b03c66 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd -from ..conftest import assert_series_equal +#from ..conftest import assert_series_equal import pytest @@ -293,3 +293,6 @@ def test_get_irradiance(): assert np.isclose(result['poa_global'], expected_global) assert np.isclose(result['poa_front_diffuse'], expected_diffuse) assert np.isclose(result['poa_front_direct'], expected_direct) + + +test_get_irradiance_poa() From f0eb1721fa8a8a864ead56ddc993da0d55c2c2c7 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 4 Jan 2022 09:28:40 -0700 Subject: [PATCH 078/115] remove local test hack --- pvlib/tests/bifacial/test_infinite_sheds.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index d795b03c66..be0ecf8dc5 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -6,7 +6,7 @@ import pandas as pd from pvlib.bifacial import infinite_sheds from pvlib.tools import cosd -#from ..conftest import assert_series_equal +from ..conftest import assert_series_equal import pytest @@ -293,6 +293,3 @@ def test_get_irradiance(): assert np.isclose(result['poa_global'], expected_global) assert np.isclose(result['poa_front_diffuse'], expected_diffuse) assert np.isclose(result['poa_front_direct'], expected_direct) - - -test_get_irradiance_poa() From 3dbed5fd2a5f5e2d7561f3f87ceaefa69757f1b8 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 5 Jan 2022 12:35:49 -0700 Subject: [PATCH 079/115] correction to unshaded_ground_fraction --- pvlib/bifacial/utils.py | 2 +- pvlib/tests/bifacial/test_utils.py | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 9230a7f7f5..669eb54194 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -79,7 +79,7 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( - 1.0, gcr * np.abs(sind(surface_tilt) + cosd(surface_tilt) * tan_phi)) + 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) return f_gnd_beam # 1 - min(1, abs()) < 1 always diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 3de2f622f2..19c6eae268 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -50,7 +50,10 @@ def test_solar_projection_tangent(): @pytest.mark.parametrize( "gcr,surface_tilt,surface_azimuth,solar_zenith,solar_azimuth,expected", - [(np.sqrt(2) / 2, 45, 180, 0, 180, 0.5), + [(0.5, 0., 180., 0., 180., 0.5), + (1.0, 0., 180., 0., 180., 0.0), + (1.0, 90., 180., 0., 180., 1.0), + (np.sqrt(2) / 2, 45, 180, 0, 180, 0.5), (np.sqrt(2) / 2, 45, 180, 45, 180, 0.0), (np.sqrt(2) / 2, 45, 180, 45, 90, 0.5), (np.sqrt(2) / 2, 45, 180, 45, 0, 1.0), @@ -65,7 +68,7 @@ def test_unshaded_ground_fraction( assert np.allclose(f_sky_beam_f, expected) # backside, should be the same as frontside f_sky_beam_b = utils.unshaded_ground_fraction( - gcr, surface_tilt + 90, surface_azimuth - 180, solar_zenith, + gcr, 180. - surface_tilt, surface_azimuth - 180, solar_zenith, solar_azimuth) assert np.allclose(f_sky_beam_b, expected) From 296b137cc8dcdd1c7fbbe2f9e25d3e8f23065d16 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 6 Jan 2022 10:01:03 -0700 Subject: [PATCH 080/115] move pvfactors tests --- pvlib/tests/bifacial/test_pvfactors.py | 154 +++++++++++-------------- pvlib/tests/test_bifacial.py | 81 ------------- 2 files changed, 66 insertions(+), 169 deletions(-) delete mode 100644 pvlib/tests/test_bifacial.py diff --git a/pvlib/tests/bifacial/test_pvfactors.py b/pvlib/tests/bifacial/test_pvfactors.py index 2f68c656e4..a199999364 100644 --- a/pvlib/tests/bifacial/test_pvfactors.py +++ b/pvlib/tests/bifacial/test_pvfactors.py @@ -2,103 +2,81 @@ from datetime import datetime from pvlib.bifacial.pvfactors import pvfactors_timeseries from ..conftest import requires_pvfactors, assert_series_equal +import pytest -@requires_pvfactors -def test_pvfactors_timeseries(): +@pytest.fixture +def example_values(): """ - Test that pvfactors is functional, using the TLDR section inputs of the - package github repo README.md file: - https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start - """ # noqa: E501 - - # Create some inputs - timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), - datetime(2017, 8, 31, 12)] - ).set_names('timestamps') - solar_zenith = [20., 10.] - solar_azimuth = [110., 140.] - surface_tilt = [10., 0.] - surface_azimuth = [90., 90.] - axis_azimuth = 0. - dni = [1000., 300.] - dhi = [50., 500.] - gcr = 0.4 - pvrow_height = 1.75 - pvrow_width = 2.44 - albedo = 0.2 - n_pvrows = 3 - index_observed_pvrow = 1 - rho_front_pvrow = 0.03 - rho_back_pvrow = 0.05 - horizon_band_angle = 15. - - # Expected values - expected_ipoa_front = pd.Series([1034.95474708997, 795.4423259036623], - index=timestamps, - name=('total_inc_front')) - expected_ipoa_back = pd.Series([92.12563846416197, 78.05831585685098], - index=timestamps, - name=('total_inc_back')) + Example values from the pvfactors github repo README file: + https://github.com/SunPower/pvfactors/blob/master/README.rst#quick-start + """ + inputs = dict( + timestamps=pd.DatetimeIndex([datetime(2017, 8, 31, 11), + datetime(2017, 8, 31, 12)]), + solar_zenith=[20., 10.], + solar_azimuth=[110., 140.], + surface_tilt=[10., 0.], + surface_azimuth=[90., 90.], + axis_azimuth=0., + dni=[1000., 300.], + dhi=[50., 500.], + gcr=0.4, + pvrow_height=1.75, + pvrow_width=2.44, + albedo=0.2, + n_pvrows=3, + index_observed_pvrow=1, + rho_front_pvrow=0.03, + rho_back_pvrow=0.05, + horizon_band_angle=15., + ) + outputs = dict( + expected_ipoa_front=pd.Series([1034.95474708997, 795.4423259036623], + index=inputs['timestamps'], + name=('total_inc_front')), + expected_ipoa_back=pd.Series([92.12563846416197, 78.05831585685098], + index=inputs['timestamps'], + name=('total_inc_back')), + ) + return inputs, outputs - # Run calculation - ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries( - solar_azimuth, solar_zenith, surface_azimuth, surface_tilt, - axis_azimuth, - timestamps, dni, dhi, gcr, pvrow_height, pvrow_width, albedo, - n_pvrows=n_pvrows, index_observed_pvrow=index_observed_pvrow, - rho_front_pvrow=rho_front_pvrow, rho_back_pvrow=rho_back_pvrow, - horizon_band_angle=horizon_band_angle) - assert_series_equal(ipoa_inc_front, expected_ipoa_front) - assert_series_equal(ipoa_inc_back, expected_ipoa_back) +@requires_pvfactors +def test_pvfactors_timeseries_list(example_values): + """Test basic pvfactors functionality with list inputs""" + inputs, outputs = example_values + ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) + assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) + assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) @requires_pvfactors -def test_pvfactors_timeseries_pandas_inputs(): - """ - Test that pvfactors is functional, using the TLDR section inputs of the - package github repo README.md file, but converted to pandas Series: - https://github.com/SunPower/pvfactors/blob/master/README.md#tldr---quick-start - """ # noqa: E501 +def test_pvfactors_timeseries_pandas(example_values): + """Test basic pvfactors functionality with Series inputs""" - # Create some inputs - timestamps = pd.DatetimeIndex([datetime(2017, 8, 31, 11), - datetime(2017, 8, 31, 12)] - ).set_names('timestamps') - solar_zenith = pd.Series([20., 10.]) - solar_azimuth = pd.Series([110., 140.]) - surface_tilt = pd.Series([10., 0.]) - surface_azimuth = pd.Series([90., 90.]) - axis_azimuth = 0. - dni = pd.Series([1000., 300.]) - dhi = pd.Series([50., 500.]) - gcr = 0.4 - pvrow_height = 1.75 - pvrow_width = 2.44 - albedo = 0.2 - n_pvrows = 3 - index_observed_pvrow = 1 - rho_front_pvrow = 0.03 - rho_back_pvrow = 0.05 - horizon_band_angle = 15. + inputs, outputs = example_values + for key in ['solar_zenith', 'solar_azimuth', 'surface_tilt', + 'surface_azimuth', 'dni', 'dhi']: + inputs[key] = pd.Series(inputs[key], index=inputs['timestamps']) - # Expected values - expected_ipoa_front = pd.Series([1034.95474708997, 795.4423259036623], - index=timestamps, - name=('total_inc_front')) - expected_ipoa_back = pd.Series([92.12563846416197, 78.05831585685098], - index=timestamps, - name=('total_inc_back')) + ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) + assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) + assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) - # Run calculation - ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries( - solar_azimuth, solar_zenith, surface_azimuth, surface_tilt, - axis_azimuth, - timestamps, dni, dhi, gcr, pvrow_height, pvrow_width, albedo, - n_pvrows=n_pvrows, index_observed_pvrow=index_observed_pvrow, - rho_front_pvrow=rho_front_pvrow, rho_back_pvrow=rho_back_pvrow, - horizon_band_angle=horizon_band_angle) - assert_series_equal(ipoa_inc_front, expected_ipoa_front) - assert_series_equal(ipoa_inc_back, expected_ipoa_back) +@requires_pvfactors +def test_pvfactors_scalar_orientation(example_values): + """test that surface_tilt and surface_azimuth inputs can be scalars""" + # GH 1127, GH 1332 + inputs, outputs = example_values + inputs['surface_tilt'] = 10. + inputs['surface_azimuth'] = 90. + # the second tilt is supposed to be zero, so we need to + # update the expected irradiances too: + outputs['expected_ipoa_front'].iloc[1] = 800.6524022701132 + outputs['expected_ipoa_back'].iloc[1] = 81.72135884745822 + + ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) + assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) + assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) diff --git a/pvlib/tests/test_bifacial.py b/pvlib/tests/test_bifacial.py deleted file mode 100644 index 92eb4a0a88..0000000000 --- a/pvlib/tests/test_bifacial.py +++ /dev/null @@ -1,81 +0,0 @@ -import pandas as pd -from datetime import datetime -from pvlib.bifacial.pvfactors import pvfactors_timeseries -from .conftest import requires_pvfactors, assert_series_equal - - -@pytest.fixture -def example_values(): - """ - Example values from the pvfactors github repo README file: - https://github.com/SunPower/pvfactors/blob/master/README.rst#quick-start - """ - inputs = dict( - timestamps=pd.DatetimeIndex([datetime(2017, 8, 31, 11), - datetime(2017, 8, 31, 12)]), - solar_zenith=[20., 10.], - solar_azimuth=[110., 140.], - surface_tilt=[10., 0.], - surface_azimuth=[90., 90.], - axis_azimuth=0., - dni=[1000., 300.], - dhi=[50., 500.], - gcr=0.4, - pvrow_height=1.75, - pvrow_width=2.44, - albedo=0.2, - n_pvrows=3, - index_observed_pvrow=1, - rho_front_pvrow=0.03, - rho_back_pvrow=0.05, - horizon_band_angle=15., - ) - outputs = dict( - expected_ipoa_front=pd.Series([1034.95474708997, 795.4423259036623], - index=inputs['timestamps'], - name=('total_inc_front')), - expected_ipoa_back=pd.Series([92.12563846416197, 78.05831585685098], - index=inputs['timestamps'], - name=('total_inc_back')), - ) - return inputs, outputs - - -@requires_pvfactors -def test_pvfactors_timeseries_list(example_values): - """Test basic pvfactors functionality with list inputs""" - inputs, outputs = example_values - ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) - assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) - assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) - - -@requires_pvfactors -def test_pvfactors_timeseries_pandas(example_values): - """Test basic pvfactors functionality with Series inputs""" - - inputs, outputs = example_values - for key in ['solar_zenith', 'solar_azimuth', 'surface_tilt', - 'surface_azimuth', 'dni', 'dhi']: - inputs[key] = pd.Series(inputs[key], index=inputs['timestamps']) - - ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) - assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) - assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) - - -@requires_pvfactors -def test_pvfactors_scalar_orientation(example_values): - """test that surface_tilt and surface_azimuth inputs can be scalars""" - # GH 1127, GH 1332 - inputs, outputs = example_values - inputs['surface_tilt'] = 10. - inputs['surface_azimuth'] = 90. - # the second tilt is supposed to be zero, so we need to - # update the expected irradiances too: - outputs['expected_ipoa_front'].iloc[1] = 800.6524022701132 - outputs['expected_ipoa_back'].iloc[1] = 81.72135884745822 - - ipoa_inc_front, ipoa_inc_back, _, _ = pvfactors_timeseries(**inputs) - assert_series_equal(ipoa_inc_front, outputs['expected_ipoa_front']) - assert_series_equal(ipoa_inc_back, outputs['expected_ipoa_back']) From a9e139afd25926d9ac4d668e82155e3fa91cb944 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 7 Jan 2022 14:07:18 -0700 Subject: [PATCH 081/115] additional testing --- pvlib/bifacial/infinite_sheds.py | 14 ++++++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 21 ++++++++++++++++++++- pvlib/tests/bifacial/test_utils.py | 2 ++ 3 files changed, 30 insertions(+), 7 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index fbdaa8336b..9f761991a4 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -743,12 +743,14 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, solar_zenith, solar_azimuth, backside_tilt, backside_sysaz, gcr, height, pitch, ghi, dhi, dni, albedo, iam_back) if isinstance(ghi, pd.Series): - irrad_front.rename(columns={'poa_global': 'poa_front', - 'poa_diffuse': 'poa_front_diffuse', - 'poa_direct': 'poa_front_direct'}) - irrad_back.rename(columns={'poa_global': 'poa_back', - 'poa_diffuse': 'poa_back_diffuse', - 'poa_direct': 'poa_back_direct'}) + irrad_front = irrad_front.rename( + columns={'poa_global': 'poa_front', + 'poa_diffuse': 'poa_front_diffuse', + 'poa_direct': 'poa_front_direct'}) + irrad_back = irrad_back.rename( + columns={'poa_global': 'poa_back', + 'poa_diffuse': 'poa_back_diffuse', + 'poa_direct': 'poa_back_direct'}) output = pd.concat([irrad_front, irrad_back], axis=1) else: old = ['poa_global', 'poa_diffuse', 'poa_direct'] diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index be0ecf8dc5..cdd4a19a87 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -266,7 +266,6 @@ def test__backside_tilt(): def test_get_irradiance(): - # singleton inputs # singleton inputs solar_zenith = 0. solar_azimuth = 180. @@ -293,3 +292,23 @@ def test_get_irradiance(): assert np.isclose(result['poa_global'], expected_global) assert np.isclose(result['poa_front_diffuse'], expected_diffuse) assert np.isclose(result['poa_front_direct'], expected_direct) + # series inputs + ghi = pd.Series([1000., 500., 500., np.nan]) + dhi = pd.Series([300., 500., 500., 500.], index=ghi.index) + dni = pd.Series([700., 0., 0., 700.], index=ghi.index) + solar_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) + surface_tilt = pd.Series([0., 0., 90., 0.], index=ghi.index) + result = infinite_sheds.get_irradiance( + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, + height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, + bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, + npoints=npoints) + result_front = infinite_sheds.get_irradiance_poa( + solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + albedo, iam=iam_front) + assert isinstance(result, pd.DataFrame) + expected_poa_global = pd.Series( + [1000., 500., result_front['poa_global'][2] * (1 + 0.8 * 0.98), + np.nan], index=ghi.index, name='poa_global') + assert_series_equal(result['poa_global'], expected_poa_global) diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 19c6eae268..fdd1516c36 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -15,6 +15,7 @@ def test_system_fixed_tilt(): 'axis_azimuth': None, 'rotation': -30.} syst['gcr'] = 1.0 / syst['pitch'] + # view factors from points on the ground to the sky pts = np.linspace(0, 1, num=3) sqr3 = np.sqrt(3) / 4 # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 @@ -53,6 +54,7 @@ def test_solar_projection_tangent(): [(0.5, 0., 180., 0., 180., 0.5), (1.0, 0., 180., 0., 180., 0.0), (1.0, 90., 180., 0., 180., 1.0), + (0.5, 45., 180., 45., 270., 1.0 - np.sqrt(2) / 4), (np.sqrt(2) / 2, 45, 180, 0, 180, 0.5), (np.sqrt(2) / 2, 45, 180, 45, 180, 0.0), (np.sqrt(2) / 2, 45, 180, 45, 90, 0.5), From 992d428d2f7df6fb8d2c274622b8a58ea115d09e Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Fri, 7 Jan 2022 14:34:10 -0700 Subject: [PATCH 082/115] add max_zenith to unshaded_ground_fraction --- pvlib/bifacial/utils.py | 39 ++++++++++++++++-------------- pvlib/tests/bifacial/test_utils.py | 1 + 2 files changed, 22 insertions(+), 18 deletions(-) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 669eb54194..6b2b053728 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -7,7 +7,7 @@ # TODO: make private? -def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): +def solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): """ Tangent of the angle between the sun vector projected to the YZ-plane (vertical and perpendicular to rows) and the zenith vector. @@ -22,11 +22,12 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Parameters ---------- solar_zenith : numeric - apparent zenith in degrees + Solar zenith angle. [degree]. solar_azimuth : numeric - azimuth in degrees - system_azimuth : numeric - system rotation from north in degrees + Solar azimuth. [degree]. + surface_azimuth: numeric + Azimuth of the module surface, i.e., North=0, East=90, South=180, + West=270. [degree] Returns ------- @@ -34,15 +35,13 @@ def solar_projection_tangent(solar_zenith, solar_azimuth, system_azimuth): Tangent of the angle between vertical and the projection of the sun direction onto the YZ plane. """ - rotation = solar_azimuth - system_azimuth - # TODO: I don't think tan_phi should ever be negative, but it could be if - # rotation > 90 (e.g. sun north of along-row azimuth) + rotation = solar_azimuth - surface_azimuth tan_phi = cosd(rotation) * tand(solar_zenith) return tan_phi def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth): + solar_azimuth, max_zenith=87): """ Calculate the fraction of the ground with incident direct irradiance. @@ -56,30 +55,34 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, ---------- gcr : numeric Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). + spacing (pitch). [unitless] surface_tilt: numeric - Surface tilt angle in decimal degrees. The tilt angle is defined as + Surface tilt angle. The tilt angle is defined as degrees from horizontal, e.g., surface facing up = 0, surface facing - horizon = 90. + horizon = 90. [degree] surface_azimuth: numeric - Azimuth angle of the module surface in degrees. - North=0, East=90, South=180, West=270. + Azimuth of the module surface, i.e., North=0, East=90, South=180, + West=270. [degree] solar_zenith : numeric - Solar zenith angle in degrees. + Solar zenith angle. [degree]. solar_azimuth : numeric - Solar azimuth angle in degrees. + Solar azimuth. [degree]. + max_zenith : numeric, default 87 + Maximum zenith angle. For solar_zenith > max_zenith, unshaded ground + fraction is set to 0. [degree] Returns ------- f_gnd_beam : numeric - Fraction of distance betwen rows (pitch) that has direct irradiance - (unshaded). + Fraction of distance betwen rows (pitch) with direct irradiance + (unshaded). [unitless] """ # TODO: why np.abs? All angles should be <=90 tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) + np.where(solar_zenith > max_zenith, 0., f_gnd_beam) return f_gnd_beam # 1 - min(1, abs()) < 1 always diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index fdd1516c36..bf82063f08 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -55,6 +55,7 @@ def test_solar_projection_tangent(): (1.0, 0., 180., 0., 180., 0.0), (1.0, 90., 180., 0., 180., 1.0), (0.5, 45., 180., 45., 270., 1.0 - np.sqrt(2) / 4), + (0.5, 45., 180., 90., 180., 0.), (np.sqrt(2) / 2, 45, 180, 0, 180, 0.5), (np.sqrt(2) / 2, 45, 180, 45, 180, 0.0), (np.sqrt(2) / 2, 45, 180, 45, 90, 0.5), From 0b81a92ef6b23325692bc5fce648a337d09b2320 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 13 Jan 2022 13:48:09 -0700 Subject: [PATCH 083/115] docstring work --- pvlib/bifacial/infinite_sheds.py | 128 ++++++++++++++++------------- pvlib/bifacial/utils.py | 36 ++++---- pvlib/tests/bifacial/test_utils.py | 10 +-- 3 files changed, 97 insertions(+), 77 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 9f761991a4..668c9c078f 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -2,44 +2,55 @@ Infinite Sheds ============== -The "infinite sheds" model is a 2-dimensional model of an array that assumes -rows are long enough that edge effects are negligible and therefore can be -treated as infinite. The infinite sheds model considers an array of adjacent -rows of PV modules versus just a single row. It is also capable of considering -both mono and bifacial modules. Sheds are defined as either fixed tilt or -trackers with uniform GCR on a horizontal plane. To consider arrays on an -non-horizontal planes, rotate the solar vector into the reference frame of the -sloped plane. The main purpose of the infinite shdes model is to modify the -plane of array irradiance components to account for adjancent rows that reduce -incident irradiance on the front and back sides versus a single isolated row -that can see the entire sky as :math:`(1+cos(\beta))/2` and ground as -:math:`(1-cos(\beta))/2`. - -Therefore the model picks up after the transposition of diffuse and direct onto -front and back surfaces with the following steps: -1. Find the fraction of unshaded ground between rows, ``f_gnd_beam``. We assume +The "infinite sheds" model is a 2-dimensional model of irradiance on the front +and rear surfaces of a PV array. The model assumes that the array comprises +parallel, equally spaced rows (sheds) and calculates irradiance in the middle +of a shed which is long enough that end-of-row effects are negligible. Rows +can be at fixed tilt or on single-axis trackers. + +The ground is assumed to be flat and level. To consider arrays on an +non-level ground, rotate the solar vector into the reference frame of the +ground plane. + +The infinite shdes model accounts for the following effects: + - limited view from the row surfaces to the sky due to blocking of the + sky by nearby rows; + - reduction of irradiance reaching the ground due to shadows cast by + rows and due to blocking of the sky by nearby rows. +The model operates in the following steps: +1. Find the fraction of unshaded ground between rows, ``f_gnd_beam`` where + both direct and diffuse irradiance is recieved. The model assumes that there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. -2. Calculate the view factor,``fz_sky``, of diffuse sky incident on ground - between rows and not blocked by adjacent rows. This differs from the single - row model which assumes ``f_gnd_beam = 1`` or that the ground can see the - entire sky, and therefore, the ground reflected is just the product of GHI - and albedo. Note ``f_gnd_beam`` also considers the diffuse sky visible - between neighboring rows in front and behind the current row. If rows are - higher off the ground, then the sky might be visible between multiple rows! -3. Calculate the view factor of the ground reflected irradiance incident on PV - surface. -4. Find the fraction of PV surface shaded. We assume only diffuse in the shaded - fraction. We treat these two sections differently and assume that the view - factors of the sky and ground are linear in each section. -5. Sum up components of diffuse sky, diffuse ground, and direct on the front - and back PV surfaces. -6. Apply the bifaciality factor to the backside and combine with the front. -7. Treat the first and last row differently, because they aren't blocked on the - front side for 1st row, or the backside for last row. - -# TODO: explain geometry: primary axes and orientation, what is meant by -"previous" and "next rows", etc. - +2. Calculate the view factor,``fz_sky``, from the ground to the sky accounting + for the parts of the sky that are blocked from view by the array's rows. + The view factor is multipled by the sky diffuse irradiance to calculate + the diffuse irradiance reaching the ground. Sky diffuse irradiance is thus + assumed to be isotropic. +3. Calculate the view factor from the row surface to the ground which + determines the fraction of ground-reflected irradiance that reaches the row + surface. +4. Find the fraction of the row surface that is shaded from direct irradiance. + Only sky and ground-reflected irradiance reach the the shaded fraction of + the row surface. +5. For the front and rear surfaces, apply the incidence angle modifier to + the direct irradiance and sum the diffuse sky, diffuse ground, and direct + irradiance to compute the plane-of-array (POA) irradiance on each surface. +6. Apply the bifaciality factor, shade factor and transmission factor to + the rear surface POA irradiance and add the result to the front surface + POA irradiance to calculate the total POA irradiance on the row. + +Array geometry is defined by the following: + - ground coverage ratio (GCR), ``gcr``, the ratio of row slant height to + the spacing between rows (pitch). + - height of row center above ground, ``height``. + - tilt of the row from horizontal, ``surface_tilt``. + - azimuth of the row's normal vector, ``surface_azimuth``. + - azimuth of the tracking axis, ``axis_azimuth``, when the array is on + single axis trackers. +View factors from the ground to the sky are calculated at points spaced along +a one-dimensional axis on the ground, with the origin under the center of a +row and the positive direction toward the right. The positive direction is +considered to be towards the "front" of the array. That's it folks! This model is influenced by the 2D model published by Marion, *et al.* in [1]. @@ -327,8 +338,8 @@ def _ground_angle(gcr, surface_tilt, x): Angle from horizontal of the line from a point x on the row slant length to the bottom of the facing row. - The angles returned are measured clockwise from horizontal, rather than - the usual counterclockwise direction. + The angles are clockwise from horizontal, rather than the usual + counterclockwise direction. Parameters ---------- @@ -358,7 +369,7 @@ def _ground_angle(gcr, surface_tilt, x): def _vf_row_ground(gcr, surface_tilt, x): """ - View factor from a point x on the row to the ground between rows. + View factor from a point x on the row to the ground. Parameters ---------- @@ -448,23 +459,26 @@ def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): """ - Ground diffuse POA from average view factor weighted by shaded and unshaded - parts of the surface. + Reduce ground-reflected irradiance to account for limited view of the + ground from the row surface. Parameters ---------- poa_gnd_sky : numeric - diffuse ground POA accounting for ground shade but not adjacent rows + Ground-reflected irradiance that would reach the row surface if the + full ground was visible. poa_gnd_sky accounts for limited view of the + sky from the ground. [W/m^2] f_x : numeric Fraction of row slant height from the bottom that is shaded. [unitless] f_gnd_pv_shade : numeric - fraction of ground visible from shaded part of PV surface + fraction of ground visible from shaded part of PV surface. [unitless] f_gnd_pv_noshade : numeric - fraction of ground visible from unshaded part of PV surface + fraction of ground visible from unshaded part of PV surface. [unitless] Returns ------- - + mumeric + Ground diffuse irradiance on the row plane. [W/m^2] """ return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) @@ -474,12 +488,11 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, albedo, iam=1.0, axis_azimuth=None, max_rows=5, npoints=100, all_output=False): r""" - Irradiance on one side of an infinite row of modules using the infinite - sheds model. + Calculate plane-of-array (POA) irradiance on one side of a row of modules. - Plane-of-array (POA) irradiance components include direct, diffuse and - global (total). Irradiance values are not reduced by reflections, adjusted - for solar spectrum, or reduced by a module's light collecting aperature, + POA irradiance components include direct, diffuse and global (total). + Irradiance values are not reduced by reflections, adjusted for solar + spectrum, or reduced by a module's aperture for light, which is quantified by the module's bifaciality factor. Parameters @@ -563,6 +576,10 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, [W/m^2] - poa_diffuse_ground : total ground-reflected diffuse irradiance on the plane of array. [W/m^2] + + See also + -------- + get_irradiance """ # Calculate some geometric quantities # fraction of ground between rows that is illuminated accounting for @@ -635,7 +652,6 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, return output -# TODO: not tested def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front=1.0, iam_back=1.0, @@ -653,12 +669,12 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, solar_azimuth : array-like Solar azimuth angles in decimal degrees. - surface_tilt : numeric + surface_tilt : array-like Surface tilt angles in decimal degrees. Tilt must be >=0 and <=180. The tilt angle is defined as degrees from horizontal (e.g. surface facing up = 0, surface facing horizon = 90). - surface_azimuth : numeric + surface_azimuth : array-like Surface azimuth angles in decimal degrees. surface_azimuth must be >=0 and <=360. The Azimuth convention is defined as degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). @@ -682,7 +698,7 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, dni : array-like Direct normal irradiance. [W/m2] - albedo : numeric + albedo : array-like Surface albedo. [unitless] iam_front : numeric, default 1.0 @@ -721,7 +737,7 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, Notes ----- - Input parameters `height` and `pitch` must have the same unit. + Input parameters ``height`` and ``pitch`` must have the same unit. Output includes: - poa_global : total irradiance reaching the module cells from both front diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 6b2b053728..839d40f4fa 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -6,8 +6,7 @@ from pvlib.tools import sind, cosd, tand -# TODO: make private? -def solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): +def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): """ Tangent of the angle between the sun vector projected to the YZ-plane (vertical and perpendicular to rows) and the zenith vector. @@ -78,8 +77,8 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, (unshaded). [unitless] """ # TODO: why np.abs? All angles should be <=90 - tan_phi = solar_projection_tangent(solar_zenith, solar_azimuth, - surface_azimuth) + tan_phi = _solar_projection_tangent(solar_zenith, solar_azimuth, + surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) np.where(solar_zenith > max_zenith, 0., f_gnd_beam) @@ -88,34 +87,39 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): """ - Calculate the fraction of the sky dome visible from pointx on the ground, - accounting for obstructions by infinitely long rows. + Calculate the fraction of the sky dome visible from point x on the ground. + + The view factor accounts for the obstruction of the sky by array rows that + are assumed to be infinitely long. View factors are thus calculated in + a 2D geometry. The ground is assumed to be flat and level. Parameters ---------- x : numeric Position on the ground between two rows, as a fraction of the pitch. - x = 0 corresponds to the center point of a row. + x = 0 corresponds to the point on the ground directly below the + center point of a row. Positive x is towards the right. rotation : float - Rotation of left edge relative to row center. [degree] + Rotation angle of the row's left edge relative to row center. [degree] gcr : float - Ratio of row slant length to row spacing (pitch). [unitless] + Ratio of the row slant length to the row spacing (pitch). [unitless] height : float - Height of center point of the row above the ground. Must be in the same - units as pitch. + Height of the center point of the row above the ground; must be in the + same units as ``pitch``. pitch : float - Distance between two rows. Must be in the same units as height. + Distance between two rows; must be in the same units as ``height``. max_rows : int, default 10 - Maximum number of rows to consider in front and behind the current row. + Maximum number of rows to consider on either side of the current + row. [unitless] Returns ------- vf : array-like Fraction of sky dome visible from each point on the ground. [unitless] wedge_angles : array - Bounding angles of each wedge of visible sky. - Shape is (2, len(x), 2*max_rows+1). wedge_angles[0,:,:] is the - starting angle of each wedge, wedge_angles[1,:,:] is the end angle. + Angles defining each wedge of visible sky. Shape is + (2, len(x), 2*max_rows+1). ``wedge_angles[0,:,:]`` is the + starting angle of each wedge, ``wedge_angles[1,:,:]`` is the end angle. [degrees] """ x = np.atleast_1d(x) # handle float diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index bf82063f08..489eed978e 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -15,7 +15,7 @@ def test_system_fixed_tilt(): 'axis_azimuth': None, 'rotation': -30.} syst['gcr'] = 1.0 / syst['pitch'] - # view factors from points on the ground to the sky + # view factors from 3 points on the ground between rows to the sky pts = np.linspace(0, 1, num=3) sqr3 = np.sqrt(3) / 4 # c_i,j = cos(angle from point i to edge of row j), j=0 is row = -1 @@ -39,10 +39,10 @@ def test_system_fixed_tilt(): return syst, pts, vfs_ground_sky -def test_solar_projection_tangent(): - tan_phi_f = utils.solar_projection_tangent( +def test__solar_projection_tangent(): + tan_phi_f = utils._solar_projection_tangent( 30, 150, 180) - tan_phi_b = utils.solar_projection_tangent( + tan_phi_b = utils._solar_projection_tangent( 30, 150, 0) assert np.allclose(tan_phi_f, 0.5) assert np.allclose(tan_phi_b, -0.5) @@ -76,7 +76,7 @@ def test_unshaded_ground_fraction( assert np.allclose(f_sky_beam_b, expected) -def test__vf_ground_sky(test_system_fixed_tilt): +def test_vf_ground_sky_2d(test_system_fixed_tilt): # vector input ts, pts, vfs_gnd_sky = test_system_fixed_tilt vfs, _ = utils.vf_ground_sky_2d(pts, ts['rotation'], ts['gcr'], From 2bc3a101b7ab268266bd59820d5154cf7eaf8d71 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 13 Jan 2022 15:20:20 -0700 Subject: [PATCH 084/115] use shading function, extend shading.shaded_fraction --- pvlib/bifacial/infinite_sheds.py | 25 +++++----- pvlib/shading.py | 55 +++++++++++++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 11 ----- 3 files changed, 53 insertions(+), 38 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 668c9c078f..72af2acdb5 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -68,7 +68,7 @@ import pandas as pd from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils -from pvlib.shading import shaded_fraction +from pvlib.shading import shaded_fraction, masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component EPS = 1e-9 @@ -284,24 +284,20 @@ def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): View factors are integrated separately over shaded and unshaded portions of the row slant height. - See Also - -------- - _sky_angle - """ # handle Series inputs surface_tilt = np.array(surface_tilt) cst = cosd(surface_tilt) # shaded portion x = np.linspace(0 * f_x, f_x, num=npoints) - psi_t_shaded, _ = _sky_angle(gcr, surface_tilt, x) + psi_t_shaded = masking_angle(surface_tilt, gcr, x) y = 0.5 * (cosd(psi_t_shaded) + cst) # integrate view factors from each point in the discretization. This is an # improvement over the algorithm described in [2] vf_shade_sky_integ = np.trapz(y, x, axis=0) # unshaded portion x = np.linspace(f_x, np.ones_like(f_x), num=npoints) - psi_t_unshaded, _ = _sky_angle(gcr, surface_tilt, x) + psi_t_unshaded = masking_angle(surface_tilt, gcr, x) y = 0.5 * (cosd(psi_t_unshaded) + cst) vf_noshade_sky_integ = np.trapz(y, x, axis=0) return vf_shade_sky_integ, vf_noshade_sky_integ @@ -360,6 +356,16 @@ def _ground_angle(gcr, surface_tilt, x): tan_psi : numeric Tangent of angle [unitless] """ + # : \\ \ + # : \\ \ + # : \\ \ + # : \\ \ facing row + # : \\.___________\ + # : \ ^*-. psi \ + # : \ x *-. \ + # : \ v *-.\ + # : \<-----P---->\ + x1 = x * sind(surface_tilt) x2 = (x * cosd(surface_tilt) + 1 / gcr) psi = np.arctan2(x1, x2) # do this first because it handles 0 / 0 @@ -594,10 +600,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) - # angle from the shadeline to top of next row - _, tan_psi_top = _sky_angle(gcr, surface_tilt, f_x) - # angle from top of next row to bottom of current row - _, tan_psi_top_0 = _sky_angle(gcr, surface_tilt, 0.0) + # Integrated view factors to the sky from the shaded and unshaded parts of # the row slant height vf_shade_sky, vf_noshade_sky = _vf_row_sky_integ( diff --git a/pvlib/shading.py b/pvlib/shading.py index 6bd8bc89f3..fc984d56d9 100644 --- a/pvlib/shading.py +++ b/pvlib/shading.py @@ -5,7 +5,7 @@ import numpy as np import pandas as pd -from pvlib.tools import sind, cosd +from pvlib.tools import sind, cosd, tand from pvlib import bifacial @@ -195,37 +195,60 @@ def sky_diffuse_passias(masking_angle): def shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, - gcr): + gcr, cross_axis_tilt=0.): """ Calculate fraction (from the bottom) of row slant height that is shaded by the row in front toward the sun. + See [1], Eq. 32. + .. math:: - F_x = \\max \\left( 0, \\min \\left(1 - \\frac{1}{\\text{GCR} \\left( - \\cos \\beta + \\sin \\beta \\tan \\phi \\right)}, 1 \\right) \\right) + F_x = \\max \\left( 0, \\min \\left(\\frac{\\text{GCR} \\cos \\theta + + \\left( \\text{GCR} \\sin \\theta - \\tan \\beta_{c} \\right) + \\tan Z - 1} + {\\text{GCR} \\left( \\cos \\theta + \\sin \\theta \\tan Z \\right)}, + 1 \\right) \\right) Parameters ---------- solar_zenith : numeric - apparent zenith in degrees + Apparent solar zenith. [degrees] solar_azimuth : numeric - azimuth in degrees - Surface tilt angles in decimal degrees. - The tilt angle is defined as degrees from horizontal - (e.g. surface facing up = 0, surface facing horizon = 90) - surface_azimuth: float or array-like, default 180 - Azimuth angle of the module surface. - North=0, East=90, South=180, West=270. + Solar azimuth. [degrees] + surface_tilt : numeric + Row tilt from horizontal, e.g. surface facing up = 0, surface facing + horizon = 90. [degrees] + surface_azimuth : numeric + Azimuth angle of the row surface. North=0, East=90, South=180, + West=270. [degrees] gcr : numeric Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). - + spacing (pitch). [unitless] + cross_axis_tilt : float, default 0.0 + The angle, relative to horizontal, of the line formed by the + intersection between the slope containing the tracker axes and a plane + perpendicular to the tracker axes. Cross-axis tilt should be specified + using a right-handed convention. For example, trackers with axis + azimuth of 180 degrees (heading south) will have a negative cross-axis + tilt if the tracker axes plane slopes down to the east and positive + cross-axis tilt if the tracker axes plane slopes up to the east. Use + :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate + `cross_axis_tilt`. [degrees] Returns ------- f_x : numeric Fraction of row slant height shaded from the bottom. + + References + ---------- + .. [1] Kevin Anderson and Mark Mikofski, "Slope-Aware Backtracking for + Single-Axis Trackers", Technical Report NREL/TP-5K00-76626, July 2020. + https://www.nrel.gov/docs/fy20osti/76626.pdf """ - tan_phi = bifacial.utils.solar_projection_tangent( + tan_phi = bifacial.utils._solar_projection_tangent( solar_zenith, solar_azimuth, surface_azimuth) - f_x = 1.0 - 1.0 / gcr / (cosd(surface_tilt) + sind(surface_tilt) * tan_phi) + numerator = gcr * cosd(surface_tilt) \ + + gcr * (sind(surface_tilt) - tand(cross_axis_tilt)) * tan_phi - 1 + denominator = gcr * (cosd(surface_tilt) + sind(surface_tilt) * tan_phi) + f_x = numerator / denominator return np.maximum(0.0, np.minimum(f_x, 1.0)) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index cdd4a19a87..3b68f509e5 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -53,17 +53,6 @@ def test__tilt_to_rotation(): assert np.allclose(res, np.array([0., -20., -90.])) -def test__sky_angle(test_system): - ts, _, _ = test_system - x = np.array([0., 1.0]) - angle, tan_angle = infinite_sheds._sky_angle( - ts['gcr'], ts['surface_tilt'], x) - exp_tan_angle = np.array([1. / (4 - np.sqrt(3)), 0.]) - exp_angle = np.array([23.79397689, 0.]) - assert np.allclose(angle, exp_angle) - assert np.allclose(tan_angle, exp_tan_angle) - - def test__vf_ground_sky_integ(test_system): ts, pts, vfs_gnd_sky = test_system vf_integ, z, vfs = infinite_sheds._vf_ground_sky_integ( From 49958df1ad146e54ff11ac3b6b900bb40201bcad Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 13 Jan 2022 16:12:37 -0700 Subject: [PATCH 085/115] documentation --- docs/sphinx/source/reference/bifacial.rst | 1 - .../reference/effects_on_pv_system_output.rst | 1 + pvlib/bifacial/infinite_sheds.py | 27 ++++++++++--------- pvlib/bifacial/utils.py | 2 +- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/docs/sphinx/source/reference/bifacial.rst b/docs/sphinx/source/reference/bifacial.rst index 8efede2ac3..d6bba77bb9 100644 --- a/docs/sphinx/source/reference/bifacial.rst +++ b/docs/sphinx/source/reference/bifacial.rst @@ -17,5 +17,4 @@ Utility functions for bifacial irradiance calculations .. autosummary:: :toctree: generated/ - bifacial.utils.solar_projection_tangent bifacial.utils.unshaded_ground_fraction diff --git a/docs/sphinx/source/reference/effects_on_pv_system_output.rst b/docs/sphinx/source/reference/effects_on_pv_system_output.rst index 92efa946b4..9215f3668b 100644 --- a/docs/sphinx/source/reference/effects_on_pv_system_output.rst +++ b/docs/sphinx/source/reference/effects_on_pv_system_output.rst @@ -40,6 +40,7 @@ Shading shading.masking_angle shading.masking_angle_passias shading.sky_diffuse_passias + shading.shaded_fraction Spectrum -------- diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 72af2acdb5..92bdccdddc 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -568,19 +568,19 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, Notes ----- - Input parameters `height` and `pitch` must have the same unit. + Input parameters ``height`` and ``pitch`` must have the same unit. - Output always includes: + ``output`` always includes: - - poa_global : total POA irradiance. [W/m^2] - - poa_diffuse : total diffuse POA irradiance from all sources. [W/m^2] - - poa_direct : total direct POA irradiance. [W/m^2] + - ``poa_global`` : total POA irradiance. [W/m^2] + - ``poa_diffuse`` : total diffuse POA irradiance from all sources. [W/m^2] + - ``poa_direct`` : total direct POA irradiance. [W/m^2] - Optionally, output includes: + Optionally, ``output`` includes: - - poa_diffuse_sky : total sky diffuse irradiance on the plane of array. + - ``poa_diffuse_sky`` : total sky diffuse irradiance on the plane of array. [W/m^2] - - poa_diffuse_ground : total ground-reflected diffuse irradiance on the + - ``poa_diffuse_ground`` : total ground-reflected diffuse irradiance on the plane of array. [W/m^2] See also @@ -742,12 +742,13 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, ----- Input parameters ``height`` and ``pitch`` must have the same unit. - Output includes: - - poa_global : total irradiance reaching the module cells from both front - and back surfaces. [W/m^2] - - poa_front : total irradiance reaching the module cells from the front + ``output`` includes: + + - ``poa_global`` : total irradiance reaching the module cells from both + front and back surfaces. [W/m^2] + - ``poa_front`` : total irradiance reaching the module cells from the front surface. [W/m^2] - - poa_back : total irradiance reaching the module cells from the front + - ``poa_back`` : total irradiance reaching the module cells from the front surface. [W/m^2] """ diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 839d40f4fa..ae9bf1b5c8 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -48,7 +48,7 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + \\sin \\beta \\tan \\phi \\right|\\right)} \\newline - \\beta &= \\text{tilt} + where :math:`\\beta` is the surface tilt. Parameters ---------- From 224e5b4c2c5e4b544fec22af96f8b894100e9197 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sat, 15 Jan 2022 15:11:54 -0700 Subject: [PATCH 086/115] clarifications, consistent argument order --- pvlib/bifacial/__init__.py | 8 +- pvlib/bifacial/infinite_sheds.py | 220 ++++++++------------ pvlib/bifacial/utils.py | 22 +- pvlib/tests/bifacial/test_infinite_sheds.py | 66 +++--- pvlib/tests/bifacial/test_utils.py | 16 +- 5 files changed, 149 insertions(+), 183 deletions(-) diff --git a/pvlib/bifacial/__init__.py b/pvlib/bifacial/__init__.py index 4f75f37c47..9539ea90de 100644 --- a/pvlib/bifacial/__init__.py +++ b/pvlib/bifacial/__init__.py @@ -3,5 +3,11 @@ modules. """ - +from pvlib._deprecation import deprecated from pvlib.bifacial import pvfactors, infinite_sheds, utils # noqa: F401 + +pvfactors_timeseries = deprecated( + since='0.9', + name='pvlib.bifacial.pvfactors_timeseries', + alternative='pvlib.bifacial.pvfactors.pvfactors_timeseries' +)(pvfactors.pvfactors_timeseries) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 92bdccdddc..953992f87a 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -66,12 +66,13 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib.tools import cosd, sind, tand +from pvlib.tools import cosd, sind from pvlib.bifacial import utils from pvlib.shading import shaded_fraction, masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component -EPS = 1e-9 +# TODO: document deviations from PVSC paper +# TODO: add reference to docstrings for public functions def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): @@ -112,11 +113,10 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): # Calculate rotation of PV row (signed tilt angle) is_pointing_right = ((surface_azimuth - axis_azimuth) % 360.) < 180. rotation = np.where(is_pointing_right, surface_tilt, -surface_tilt) - rotation[surface_tilt == 0] = -0.0 # pvfactors GH 125 return rotation -def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, +def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth=None, max_rows=5, npoints=100): """ Integrated and per-point view factors from the ground to the sky at points @@ -124,10 +124,6 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, Parameters ---------- - gcr : numeric - Ratio of row slant length to row spacing (pitch). [unitless] - height : numeric - height of module lower edge above the ground surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] @@ -135,8 +131,13 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, Surface azimuth angles in decimal degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. + gcr : float + Ratio of row slant length to row spacing (pitch). [unitless] + height : float + Height of the center point of the row above the ground; must be in the + same units as ``pitch``. pitch : float - Distance between two rows. Must be in the same units as height. + Distance between two rows. Must be in the same units as ``height``. axis_azimuth : numeric, default None The compass direction of the axis of rotation lies for a single-axis tracking system. Decimal degrees east of north. @@ -165,7 +166,7 @@ def _vf_ground_sky_integ(gcr, height, surface_tilt, surface_azimuth, # TODO: vectorize over rotation fz_sky = np.zeros((len(rotation), npoints)) for k, r in enumerate(rotation): - vf, _ = utils.vf_ground_sky_2d(z, r, gcr, pitch, height, max_rows) + vf, _ = utils._vf_ground_sky_2d(z, r, gcr, pitch, height, max_rows) fz_sky[k, :] = vf # calculate the integrated view factor for all of the ground between rows fgnd_sky = np.trapz(fz_sky, z, axis=1) @@ -203,60 +204,20 @@ def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) -def _sky_angle(gcr, surface_tilt, x): - """ - Angle from a point x along the module slant height to the top of the - facing row. - - Parameters - ---------- - gcr : numeric - Ratio of row slant length to row spacing (pitch). [unitless] - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - x : numeric - Fraction of slant length from row bottom edge. [unitless] - - Returns - ------- - psi : numeric - Angle. [degree] - tan_psi - Tangent of angle. [unitless] - """ - # : \\ .*\\ - # : \\ .-* \\ - # : \\ .-* \\ - # : \\ . .*+ psi \\ facing row - # : \\.-*__________________ \\ - # : \ ^ \ - # : \ x \ - # : \ v \ - # : \<---------P----------->\ - - y = 1.0 - x - x1 = y * sind(surface_tilt) - x2 = (1/gcr - y * cosd(surface_tilt)) - psi_top = np.rad2deg(np.arctan2(x1, x2)) - tan_psi_top = tand(psi_top) # avoids div by 0 - return psi_top, tan_psi_top - - -def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): +def _vf_row_sky_integ(f_x, surface_tilt, gcr, npoints=100): """ Integrated view factors from the shaded and unshaded parts of the row slant height to the sky. Parameters ---------- - gcr : numeric - Ratio of row slant length to row spacing (pitch). [unitless] + f_x : numeric + Fraction of row slant height from the bottom that is shaded. [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - f_x : numeric - Fraction of row slant height from the bottom that is shaded. [unitless] + gcr : float + Ratio of row slant length to row spacing (pitch). [unitless] npoints : int, default 100 Number of points for integration. [unitless] @@ -303,17 +264,17 @@ def _vf_row_sky_integ(gcr, surface_tilt, f_x, npoints=100): return vf_shade_sky_integ, vf_noshade_sky_integ -def _poa_sky_diffuse_pv(dhi, f_x, vf_shade_sky_integ, vf_noshade_sky_integ): +def _poa_sky_diffuse_pv(f_x, dhi, vf_shade_sky_integ, vf_noshade_sky_integ): """ Sky diffuse POA from integrated view factors combined for both shaded and unshaded parts of the surface. Parameters ---------- - dhi : numeric - Diffuse horizontal irradiance (DHI). [W/m^2] f_x : numeric Fraction of row slant height from the bottom that is shaded. [unitless] + dhi : numeric + Diffuse horizontal irradiance (DHI). [W/m^2] vf_shade_sky_integ : numeric Integrated view factor from the shaded part of the row to the sky. [unitless] @@ -329,7 +290,7 @@ def _poa_sky_diffuse_pv(dhi, f_x, vf_shade_sky_integ, vf_noshade_sky_integ): return dhi * (f_x * vf_shade_sky_integ + (1 - f_x) * vf_noshade_sky_integ) -def _ground_angle(gcr, surface_tilt, x): +def _ground_angle(x, surface_tilt, gcr): """ Angle from horizontal of the line from a point x on the row slant length to the bottom of the facing row. @@ -339,15 +300,15 @@ def _ground_angle(gcr, surface_tilt, x): Parameters ---------- - gcr : numeric - ground coverage ratio, ratio of row slant length to row spacing. - [unitless] - surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] x : numeric fraction of row slant length from bottom, ``x = 0`` is at the row bottom, ``x = 1`` is at the top of the row. + surface_tilt : numeric + Surface tilt angle in degrees from horizontal, e.g., surface facing up + = 0, surface facing horizon = 90. [degree] + gcr : float + ground coverage ratio, ratio of row slant length to row spacing. + [unitless] Returns ------- @@ -373,20 +334,20 @@ def _ground_angle(gcr, surface_tilt, x): return np.rad2deg(psi), tan_psi -def _vf_row_ground(gcr, surface_tilt, x): +def _vf_row_ground(x, surface_tilt, gcr): """ View factor from a point x on the row to the ground. Parameters ---------- - gcr : numeric - Ground coverage ratio, ratio of row slant length to row spacing. - [unitless] + x : numeric + Fraction of row slant height from the bottom. [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - x : numeric - Fraction of row slant height from the bottom. [unitless] + gcr : float + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] Returns ------- @@ -397,26 +358,27 @@ def _vf_row_ground(gcr, surface_tilt, x): cst = cosd(surface_tilt) # angle from horizontal at the point x on the row slant height to the # bottom of the facing row - psi_t_shaded, _ = _ground_angle(gcr, surface_tilt, x) + psi_t_shaded, _ = _ground_angle(x, surface_tilt, gcr) # view factor from the point on the row to the ground return 0.5 * (cosd(psi_t_shaded) - cst) -def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): +def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): """ View factors to the ground from shaded and unshaded parts of a row. Parameters ---------- - gcr : numeric - Ground coverage ratio, ratio of row slant length to row spacing. - [unitless] + f_x : numeric + Fraction of row slant height from the bottom that is shaded. [unitless] surface_tilt : numeric Surface tilt angle in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - f_x : numeric - Fraction of row slant height from the bottom that is shaded. [unitless] - npoints: + gcr : float + Ground coverage ratio, ratio of row slant length to row spacing. + [unitless] + npoints : int, default 100 + Number of points for integration. [unitless] Returns ------- @@ -463,19 +425,19 @@ def _vf_row_ground_integ(gcr, surface_tilt, f_x, npoints=100): return vf_shade_ground_integ, vf_noshade_ground_integ -def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): +def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): """ Reduce ground-reflected irradiance to account for limited view of the ground from the row surface. Parameters ---------- + f_x : numeric + Fraction of row slant height from the bottom that is shaded. [unitless] poa_gnd_sky : numeric Ground-reflected irradiance that would reach the row surface if the full ground was visible. poa_gnd_sky accounts for limited view of the sky from the ground. [W/m^2] - f_x : numeric - Fraction of row slant height from the bottom that is shaded. [unitless] f_gnd_pv_shade : numeric fraction of ground visible from shaded part of PV surface. [unitless] f_gnd_pv_noshade : numeric @@ -489,27 +451,20 @@ def _poa_ground_pv(poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, +def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, axis_azimuth=None, max_rows=5, - npoints=100, all_output=False): + npoints=100): r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. POA irradiance components include direct, diffuse and global (total). - Irradiance values are not reduced by reflections, adjusted for solar - spectrum, or reduced by a module's aperture for light, - which is quantified by the module's bifaciality factor. + Irradiance values are not adjusted for solar spectrum or reduced + by a module's aperture for light, which is quantified by the module's + bifaciality factor. Parameters ---------- - solar_zenith : array-like - True (not refraction-corrected) solar zenith angles in decimal - degrees. - - solar_azimuth : array-like - Solar azimuth angles in decimal degrees. - surface_tilt : numeric Surface tilt angles in decimal degrees. Tilt must be >=0 and <=180. The tilt angle is defined as degrees from horizontal @@ -520,15 +475,23 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. - gcr : numeric + solar_zenith : array-like + True (not refraction-corrected) solar zenith angles in decimal + degrees. + + solar_azimuth : array-like + Solar azimuth angles in decimal degrees. + + gcr : float Ground coverage ratio, ratio of row slant length to row spacing. [unitless] - height : numeric - height of module lower edge above the ground. + height : float + Height of the center point of the row above the ground; must be in the + same units as ``pitch``. - pitch : numeric - row spacing. + pitch : float + Distance between two rows; must be in the same units as ``height``. ghi : numeric Global horizontal irradiance. [W/m2] @@ -556,9 +519,6 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, npoints : int, default 100 Number of points used to discretize distance along the ground. - all_ouputs : boolean, default False - If True then detailed output is returned. If False, only plane-of-array - irradiance components are returned. Returns ------- @@ -575,9 +535,6 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, - ``poa_global`` : total POA irradiance. [W/m^2] - ``poa_diffuse`` : total diffuse POA irradiance from all sources. [W/m^2] - ``poa_direct`` : total direct POA irradiance. [W/m^2] - - Optionally, ``output`` includes: - - ``poa_diffuse_sky`` : total sky diffuse irradiance on the plane of array. [W/m^2] - ``poa_diffuse_ground`` : total ground-reflected diffuse irradiance on the @@ -590,12 +547,12 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # Calculate some geometric quantities # fraction of ground between rows that is illuminated accounting for # shade from panels - f_gnd_beam = utils.unshaded_ground_fraction( + f_gnd_beam = utils._unshaded_ground_fraction( gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array vf_gnd_sky, _, _ = _vf_ground_sky_integ( - gcr, height, surface_tilt, surface_azimuth, pitch, axis_azimuth, + surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth, max_rows, npoints) # fraction of row slant height that is shaded f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, @@ -604,15 +561,15 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # Integrated view factors to the sky from the shaded and unshaded parts of # the row slant height vf_shade_sky, vf_noshade_sky = _vf_row_sky_integ( - gcr, surface_tilt, f_x) + f_x, surface_tilt, gcr) # angle from shadeline to bottom of facing row - psi_shade, _ = _ground_angle(gcr, surface_tilt, f_x) + psi_shade, _ = _ground_angle(f_x, surface_tilt, gcr) # angle from top of row to bottom of facing row - psi_bottom, _ = _ground_angle(gcr, surface_tilt, 1.0) + psi_bottom, _ = _ground_angle(1.0, surface_tilt, gcr) # view factors from the ground to shaded and unshaded portions of the row # slant height f_gnd_pv_shade, f_gnd_pv_noshade = _vf_row_ground_integ( - gcr, surface_tilt, f_x) + f_x, surface_tilt, gcr) # Calculate some preliminary irradiance quantities # diffuse fraction @@ -623,7 +580,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # Total sky diffuse recieved by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( - dhi, f_x, vf_shade_sky, vf_noshade_sky) + f_x, dhi, vf_shade_sky, vf_noshade_sky) # Reduce ground-reflected irradiance because other rows in the array # block irradiance from reaching the ground. @@ -633,7 +590,7 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, # Further reduce ground-reflected irradiance because adjacent rows block # the view to the ground. poa_gnd_pv = _poa_ground_pv( - poa_gnd_sky, f_x, f_gnd_pv_shade, f_gnd_pv_noshade) + f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade) # add sky and ground-reflected irradiance on the row by irradiance # component @@ -646,17 +603,15 @@ def get_irradiance_poa(solar_zenith, solar_azimuth, surface_tilt, output = OrderedDict( poa_global=poa_global, poa_direct=poa_direct, - poa_diffuse=poa_diffuse) - if all_output: - output.update( - poa_ground_diffuse=poa_gnd_pv, poa_sky_diffuse=poa_sky_pv) + poa_diffuse=poa_diffuse, poa_ground_diffuse=poa_gnd_pv, + poa_sky_diffuse=poa_sky_pv) if isinstance(poa_global, pd.Series): output = pd.DataFrame(output) return output -def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, +def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, max_rows=5, npoints=100): @@ -665,13 +620,6 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, Parameters ---------- - solar_zenith : array-like - True (not refraction-corrected) solar zenith angles in decimal - degrees. - - solar_azimuth : array-like - Solar azimuth angles in decimal degrees. - surface_tilt : array-like Surface tilt angles in decimal degrees. Tilt must be >=0 and <=180. The tilt angle is defined as degrees from horizontal @@ -682,15 +630,23 @@ def get_irradiance(solar_zenith, solar_azimuth, surface_tilt, be >=0 and <=360. The Azimuth convention is defined as degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). - gcr : numeric + solar_zenith : array-like + True (not refraction-corrected) solar zenith angles in decimal + degrees. + + solar_azimuth : array-like + Solar azimuth angles in decimal degrees. + + gcr : float Ground coverage ratio, ratio of row slant length to row spacing. [unitless] - height : numeric - height of module lower edge above the ground. + height : float + Height of the center point of the row above the ground; must be in the + same units as ``pitch``. - pitch : numeric - row spacing. + pitch : float + Distance between two rows; must be in the same units as ``height``. ghi : array-like Global horizontal irradiance. [W/m2] diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index ae9bf1b5c8..fe5a46896c 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -12,7 +12,7 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): (vertical and perpendicular to rows) and the zenith vector. Tangent is positive when the projection of the sun vector is in the same - hemisphere as the system azimuth. + hemisphere as the surface azimuth. .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} @@ -39,20 +39,22 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): return tan_phi -def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth, max_zenith=87): - """ +def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, max_zenith=87): + r""" Calculate the fraction of the ground with incident direct irradiance. .. math:: - F_{gnd,sky} &= 1 - \\min{\\left(1, \\text{GCR} \\left|\\cos \\beta + - \\sin \\beta \\tan \\phi \\right|\\right)} \\newline + F_{gnd,sky} = 1 - \min{\left(1, \text{GCR} \left|\cos \beta + + \sin \beta \tan \phi \right|\right)} - where :math:`\\beta` is the surface tilt. + where :math:`\beta` is the surface tilt and :math:`\phi` is the angle + from vertical of the sun vector projected to a vertical plane that + contains the row azimuth `surface_azimuth`. Parameters ---------- - gcr : numeric + gcr : float Ground coverage ratio, which is the ratio of row slant length to row spacing (pitch). [unitless] surface_tilt: numeric @@ -85,8 +87,8 @@ def unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, return f_gnd_beam # 1 - min(1, abs()) < 1 always -def vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): - """ +def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): + r""" Calculate the fraction of the sky dome visible from point x on the ground. The view factor accounts for the obstruction of the sky by array rows that diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 3b68f509e5..412d51a08a 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -56,8 +56,8 @@ def test__tilt_to_rotation(): def test__vf_ground_sky_integ(test_system): ts, pts, vfs_gnd_sky = test_system vf_integ, z, vfs = infinite_sheds._vf_ground_sky_integ( - ts['gcr'], ts['height'], ts['surface_tilt'], - ts['surface_azimuth'], ts['pitch'], + ts['surface_tilt'], ts['surface_azimuth'], + ts['gcr'], ts['height'], ts['pitch'], ts['axis_azimuth'], max_rows=1, npoints=3) expected_vf_integ = np.trapz(vfs_gnd_sky, pts) assert np.allclose(z, pts) @@ -73,8 +73,8 @@ def test__vf_row_sky_integ(test_system): shaded = [] noshade = [] for x in f_x: - s, ns = infinite_sheds._vf_row_sky_integ(gcr, surface_tilt, x, - npoints=100) + s, ns = infinite_sheds._vf_row_sky_integ( + x, surface_tilt, gcr, npoints=100) shaded.append(s) noshade.append(ns) @@ -102,7 +102,7 @@ def test__poa_sky_diffuse_pv(): vf_shade_sky_integ = np.array([1.0, 0.5, 0.2]) vf_noshade_sky_integ = np.array([0.0, 0.5, 0.8]) poa = infinite_sheds._poa_sky_diffuse_pv( - dhi, f_x, vf_shade_sky_integ, vf_noshade_sky_integ) + f_x, dhi, vf_shade_sky_integ, vf_noshade_sky_integ) expected_poa = np.array([np.nan, 0.0, 500 * (0.5 * 0.2 + 0.5 * 0.8)]) assert np.allclose(poa, expected_poa, equal_nan=True) @@ -111,7 +111,7 @@ def test__ground_angle(test_system): ts, _, _ = test_system x = np.array([0., 0.5, 1.0]) angles, tan_angles = infinite_sheds._ground_angle( - ts['gcr'], ts['surface_tilt'], x) + x, ts['surface_tilt'], ts['gcr']) expected_angles = np.array([0., 5.866738789543952, 9.896090638982903]) expected_tan_angles = np.array([0., 0.5 / (4 + np.sqrt(3) / 2.), 1. / (4 + np.sqrt(3))]) @@ -124,7 +124,7 @@ def test__vf_row_ground(test_system): x = np.array([0., 0.5, 1.0]) sqr3 = np.sqrt(3) vfs = infinite_sheds._vf_row_ground( - ts['gcr'], ts['surface_tilt'], x) + x, ts['surface_tilt'], ts['gcr']) expected_vfs = np.array([ 0.5 * (1. - sqr3 / 2), 0.5 * ((4 + sqr3 / 2) / np.sqrt(17 + 4 * sqr3) - sqr3 / 2), @@ -141,7 +141,7 @@ def test__vf_row_ground_integ(test_system): noshade = [] for x in f_x: s, ns = infinite_sheds._vf_row_ground_integ( - gcr, surface_tilt, x) + x, surface_tilt, gcr) shaded.append(s) noshade.append(ns) @@ -196,8 +196,8 @@ def test_get_irradiance_poa(): iam = 1.0 npoints = 100 res = infinite_sheds.get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) expected_diffuse = np.array([300.]) expected_direct = np.array([700.]) @@ -218,8 +218,8 @@ def test_get_irradiance_poa(): [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) expected_global = expected_diffuse + expected_direct res = infinite_sheds.get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) assert np.allclose(res['poa_global'], expected_global) assert np.allclose(res['poa_diffuse'], expected_diffuse) @@ -236,9 +236,9 @@ def test_get_irradiance_poa(): expected_global = expected_diffuse + expected_direct expected_global.name = 'poa_global' # to match output Series res = infinite_sheds.get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam=iam, npoints=npoints, all_output=True) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, + albedo, iam=iam, npoints=npoints) assert isinstance(res, pd.DataFrame) assert_series_equal(res['poa_global'], expected_global) assert all(k in res.columns for k in [ @@ -262,25 +262,27 @@ def test_get_irradiance(): surface_azimuth = 180. gcr = 0.5 height = 1. - pitch = 1 - ghi = 1000 - dhi = 300 - dni = 700 - albedo = 0 + pitch = 1. + ghi = 1000. + dhi = 300. + dni = 700. + albedo = 0. iam_front = 1.0 iam_back = 1.0 npoints = 100 result = infinite_sheds.get_irradiance( - solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, - height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) - expected_diffuse = np.array([300.]) - expected_direct = np.array([700.]) - expected_global = expected_diffuse + expected_direct - assert np.isclose(result['poa_global'], expected_global) - assert np.isclose(result['poa_front_diffuse'], expected_diffuse) - assert np.isclose(result['poa_front_direct'], expected_direct) + expected_front_diffuse = np.array([300.]) + expected_front_direct = np.array([700.]) + expected_front_global = expected_diffuse + expected_direct + expected_global + assert np.isclose(result['poa_front'], expected_front_global) + assert np.isclose(result['poa_front_diffuse'], expected_front_diffuse) + assert np.isclose(result['poa_front_direct'], expected_front_direct) + assert np.isclose(result['poa_global']) # series inputs ghi = pd.Series([1000., 500., 500., np.nan]) dhi = pd.Series([300., 500., 500., 500.], index=ghi.index) @@ -288,13 +290,13 @@ def test_get_irradiance(): solar_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) surface_tilt = pd.Series([0., 0., 90., 0.], index=ghi.index) result = infinite_sheds.get_irradiance( - solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, - height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) result_front = infinite_sheds.get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr, height, pitch, ghi, dhi, dni, + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam_front) assert isinstance(result, pd.DataFrame) expected_poa_global = pd.Series( diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 489eed978e..6297ee98c4 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -62,27 +62,27 @@ def test__solar_projection_tangent(): (np.sqrt(2) / 2, 45, 180, 45, 0, 1.0), (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), ]) -def test_unshaded_ground_fraction( +def test__unshaded_ground_fraction( gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, expected): # frontside, same for both sides - f_sky_beam_f = utils.unshaded_ground_fraction( + f_sky_beam_f = utils._unshaded_ground_fraction( gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) assert np.allclose(f_sky_beam_f, expected) # backside, should be the same as frontside - f_sky_beam_b = utils.unshaded_ground_fraction( + f_sky_beam_b = utils._unshaded_ground_fraction( gcr, 180. - surface_tilt, surface_azimuth - 180, solar_zenith, solar_azimuth) assert np.allclose(f_sky_beam_b, expected) -def test_vf_ground_sky_2d(test_system_fixed_tilt): +def test__vf_ground_sky_2d(test_system_fixed_tilt): # vector input ts, pts, vfs_gnd_sky = test_system_fixed_tilt - vfs, _ = utils.vf_ground_sky_2d(pts, ts['rotation'], ts['gcr'], - ts['pitch'], ts['height'], max_rows=1) + vfs, _ = utils._vf_ground_sky_2d(pts, ts['rotation'], ts['gcr'], + ts['pitch'], ts['height'], max_rows=1) assert np.allclose(vfs, vfs_gnd_sky, rtol=0.1) # middle point vf is off # test with singleton x - vf, _ = utils.vf_ground_sky_2d(pts[0], ts['rotation'], ts['gcr'], - ts['pitch'], ts['height'], max_rows=1) + vf, _ = utils._vf_ground_sky_2d(pts[0], ts['rotation'], ts['gcr'], + ts['pitch'], ts['height'], max_rows=1) assert np.isclose(vf, vfs_gnd_sky[0]) From d71c9cdbdeb6f7380b4e4d773e24fea8ab1f1172 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 16 Jan 2022 09:01:03 -0700 Subject: [PATCH 087/115] fix errors --- pvlib/bifacial/infinite_sheds.py | 8 ++++---- pvlib/tests/bifacial/test_infinite_sheds.py | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 953992f87a..b8295503ca 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -712,12 +712,12 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) # front side POA irradiance irrad_front = get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr, - height, pitch, ghi, dhi, dni, albedo, iam_front) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front) # back side POA irradiance irrad_back = get_irradiance_poa( - solar_zenith, solar_azimuth, backside_tilt, backside_sysaz, gcr, - height, pitch, ghi, dhi, dni, albedo, iam_back) + backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_back) if isinstance(ghi, pd.Series): irrad_front = irrad_front.rename( columns={'poa_global': 'poa_front', diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 412d51a08a..dcc856f3a4 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -277,12 +277,11 @@ def test_get_irradiance(): npoints=npoints) expected_front_diffuse = np.array([300.]) expected_front_direct = np.array([700.]) - expected_front_global = expected_diffuse + expected_direct - expected_global + expected_front_global = expected_front_diffuse + expected_front_direct assert np.isclose(result['poa_front'], expected_front_global) assert np.isclose(result['poa_front_diffuse'], expected_front_diffuse) assert np.isclose(result['poa_front_direct'], expected_front_direct) - assert np.isclose(result['poa_global']) + assert np.isclose(result['poa_global'], result['poa_front']) # series inputs ghi = pd.Series([1000., 500., 500., np.nan]) dhi = pd.Series([300., 500., 500., 500.], index=ghi.index) @@ -295,7 +294,7 @@ def test_get_irradiance(): bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) result_front = infinite_sheds.get_irradiance_poa( - solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam_front) assert isinstance(result, pd.DataFrame) From b084c34fd15067f83363ea1bab2e2748c02e17ab Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 16 Jan 2022 13:37:20 -0700 Subject: [PATCH 088/115] use numeric instead of array-like --- pvlib/bifacial/infinite_sheds.py | 20 ++++++++++---------- pvlib/bifacial/utils.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index b8295503ca..f5441417f8 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -475,11 +475,11 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. - solar_zenith : array-like + solar_zenith : numeric True (not refraction-corrected) solar zenith angles in decimal degrees. - solar_azimuth : array-like + solar_azimuth : numeric Solar azimuth angles in decimal degrees. gcr : float @@ -620,21 +620,21 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, Parameters ---------- - surface_tilt : array-like + surface_tilt : numeric Surface tilt angles in decimal degrees. Tilt must be >=0 and <=180. The tilt angle is defined as degrees from horizontal (e.g. surface facing up = 0, surface facing horizon = 90). - surface_azimuth : array-like + surface_azimuth : numeric Surface azimuth angles in decimal degrees. surface_azimuth must be >=0 and <=360. The Azimuth convention is defined as degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). - solar_zenith : array-like + solar_zenith : numeric True (not refraction-corrected) solar zenith angles in decimal degrees. - solar_azimuth : array-like + solar_azimuth : numeric Solar azimuth angles in decimal degrees. gcr : float @@ -648,16 +648,16 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, pitch : float Distance between two rows; must be in the same units as ``height``. - ghi : array-like + ghi : numeric Global horizontal irradiance. [W/m2] - dhi : array-like + dhi : numeric Diffuse horizontal irradiance. [W/m2] - dni : array-like + dni : numeric Direct normal irradiance. [W/m2] - albedo : array-like + albedo : numeric Surface albedo. [unitless] iam_front : numeric, default 1.0 diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index fe5a46896c..c9902a54b5 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -116,7 +116,7 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): Returns ------- - vf : array-like + vf : numeric Fraction of sky dome visible from each point on the ground. [unitless] wedge_angles : array Angles defining each wedge of visible sky. Shape is From 3ccd302064240f9298987f23b17f8abfc2e43d12 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 17 Jan 2022 11:21:23 -0700 Subject: [PATCH 089/115] docstring sanding --- pvlib/bifacial/infinite_sheds.py | 72 ++++++++++++++++++++------------ pvlib/bifacial/utils.py | 1 - 2 files changed, 46 insertions(+), 27 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index f5441417f8..e0388f80d1 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -59,8 +59,6 @@ ---------- [1] A Practical Irradiance Model for Bifacial PV Modules, Bill Marion, et al., IEEE PVSC 2017 -[2] Bifacial Performance Modeling in Large Arrays, Mikofski, et al., IEEE PVSC -2018 """ from collections import OrderedDict @@ -459,28 +457,27 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, Calculate plane-of-array (POA) irradiance on one side of a row of modules. POA irradiance components include direct, diffuse and global (total). - Irradiance values are not adjusted for solar spectrum or reduced - by a module's aperture for light, which is quantified by the module's + Irradiance values are reduced to account for reflection of direct light, + but are not adjusted for solar spectrum or reduced by a module's bifaciality factor. Parameters ---------- surface_tilt : numeric - Surface tilt angles in decimal degrees. Tilt must be >=0 and - <=180. The tilt angle is defined as degrees from horizontal - (e.g. surface facing up = 0, surface facing horizon = 90). + Tilt of the surface from horizontal. Must be between 0 and 180. For + example, for a fixed tilt module mounted at 30 degrees from + horizontal, use ``surface_tilt``=30 to get front-side irradiance and + ``surface_tilt``=150 to get rear-side irradiance. [degree] surface_azimuth : numeric - Surface azimuth angles in decimal degrees east of north - (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must - be >=0 and <=360. + Surface azimuth in decimal degrees east of north + (e.g. North = 0, South=180 East = 90, West = 270). [degree] solar_zenith : numeric - True (not refraction-corrected) solar zenith angles in decimal - degrees. + True (not refraction-corrected) solar zenith. [degree] solar_azimuth : numeric - Solar azimuth angles in decimal degrees. + Solar azimuth. [degree] gcr : float Ground coverage ratio, ratio of row slant length to row spacing. @@ -616,26 +613,40 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, max_rows=5, npoints=100): """ - Get bifacial irradiance using the infinite sheds model. + Get front and rear irradiance using the infinite sheds model. + + The infinite sheds model [1] assumes the PV system comprises parallel, + evenly spaced rows on a level, horizontal surface. Rows can be on fixed + racking or single axis trackers. The model calculates irradiance at a + location far from the ends of any rows, in effect, assuming that the + rows (sheds) are infinitely long. + + The model accounts for the following effects: + + - restricted views of the sky from module surfaces due to the nearby rows. + - restricted views of the ground from module surfaces due to nearby rows. + - shading of module surfaces by nearby rows. + - shading of rear cells of a module by mounting structure and by + module features. + + The model implicitly assumes that diffuse irradiance from the sky is + isotropic, and that module surfaces do not allow irradiance to transmit + through the module to the ground through gaps between cells. Parameters ---------- surface_tilt : numeric - Surface tilt angles in decimal degrees. Tilt must be >=0 and - <=180. The tilt angle is defined as degrees from horizontal - (e.g. surface facing up = 0, surface facing horizon = 90). + Tilt from horizontal of the front-side surface. [degree] surface_azimuth : numeric - Surface azimuth angles in decimal degrees. surface_azimuth must - be >=0 and <=360. The Azimuth convention is defined as degrees - east of north (e.g. North = 0, South=180 East = 90, West = 270). + Surface azimuth in decimal degrees east of north + (e.g. North = 0, South=180 East = 90, West = 270). [degree] solar_zenith : numeric - True (not refraction-corrected) solar zenith angles in decimal - degrees. + True (not refraction-corrected) solar zenith. [degree] solar_azimuth : numeric - Solar azimuth angles in decimal degrees. + Solar azimuth. [degree] gcr : float Ground coverage ratio, ratio of row slant length to row spacing. @@ -679,8 +690,8 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, transmission_factor : numeric, default 0.0 Fraction of irradiance on the back surface that does not reach the - module's cells due to module structures. Negative value is a reduction - in back irradiance. [unitless] + module's cells due to module structures. A negative value is a + reduction in back irradiance. [unitless] max_rows : int, default 5 Maximum number of rows to consider in front and behind the current row. @@ -696,7 +707,6 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, Notes ----- - Input parameters ``height`` and ``pitch`` must have the same unit. ``output`` includes: @@ -707,6 +717,16 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - ``poa_back`` : total irradiance reaching the module cells from the front surface. [W/m^2] + References + ---------- + .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. + + See Also + -------- + get_irradiance_poa """ # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index c9902a54b5..7034d7eba3 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -78,7 +78,6 @@ def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, Fraction of distance betwen rows (pitch) with direct irradiance (unshaded). [unitless] """ - # TODO: why np.abs? All angles should be <=90 tan_phi = _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( From 3e16964eab09232727c56620a92c2bacdfb6624c Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 17 Jan 2022 11:40:15 -0700 Subject: [PATCH 090/115] more docstring work, reorder arguments for consistency --- pvlib/bifacial/infinite_sheds.py | 56 ++++++++++++++++++++++-------- pvlib/bifacial/utils.py | 23 +++++++----- pvlib/tests/bifacial/test_utils.py | 8 ++--- 3 files changed, 60 insertions(+), 27 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index e0388f80d1..7e5c7e7373 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -2,11 +2,11 @@ Infinite Sheds ============== -The "infinite sheds" model is a 2-dimensional model of irradiance on the front -and rear surfaces of a PV array. The model assumes that the array comprises -parallel, equally spaced rows (sheds) and calculates irradiance in the middle -of a shed which is long enough that end-of-row effects are negligible. Rows -can be at fixed tilt or on single-axis trackers. +The "infinite sheds" model [1] is a 2-dimensional model of irradiance on the +front and rear surfaces of a PV array. The model assumes that the array +comprises parallel, equally spaced rows (sheds) and calculates irradiance in +the middle of a shed which is long enough that end-of-row effects can be +neglected. Rows can be at fixed tilt or on single-axis trackers. The ground is assumed to be flat and level. To consider arrays on an non-level ground, rotate the solar vector into the reference frame of the @@ -50,15 +50,23 @@ View factors from the ground to the sky are calculated at points spaced along a one-dimensional axis on the ground, with the origin under the center of a row and the positive direction toward the right. The positive direction is -considered to be towards the "front" of the array. +considered to be towards the "front" of the array. Array height differs in this +code from the description in [1], where array height is described at the row's +lower edge. That's it folks! This model is influenced by the 2D model published by Marion, -*et al.* in [1]. +*et al.* in [2]. References ---------- -[1] A Practical Irradiance Model for Bifacial PV Modules, Bill Marion, et al., -IEEE PVSC 2017 + .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. + .. [2] Marion. B., MacAlpine, S., Deline, C., Asgharzadeh, A., Toor, F., + Riley, D., Stein, J. and Hansen, C. "A Practical Irradiance Model for + Bifacial PV Modules".2017 IEEE 44th Photovoltaic Specialists Conference + (PVSC), 2017, pp. 1537-1543. doi: 10.1109/PVSC.2017.8366263 """ from collections import OrderedDict @@ -69,9 +77,6 @@ from pvlib.shading import shaded_fraction, masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component -# TODO: document deviations from PVSC paper -# TODO: add reference to docstrings for public functions - def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): """ @@ -456,6 +461,12 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. + The infinite sheds model [1] assumes the PV system comprises parallel, + evenly spaced rows on a level, horizontal surface. Rows can be on fixed + racking or single axis trackers. The model calculates irradiance at a + location far from the ends of any rows, in effect, assuming that the + rows (sheds) are infinitely long. + POA irradiance components include direct, diffuse and global (total). Irradiance values are reduced to account for reflection of direct light, but are not adjusted for solar spectrum or reduced by a module's @@ -537,17 +548,26 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, - ``poa_diffuse_ground`` : total ground-reflected diffuse irradiance on the plane of array. [W/m^2] + References + ---------- + .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. + See also -------- get_irradiance """ # Calculate some geometric quantities # fraction of ground between rows that is illuminated accounting for - # shade from panels + # shade from panels. [1], Eq. 4 f_gnd_beam = utils._unshaded_ground_fraction( - gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array + # method differs from [1], Eq. 7 and Eq. 8; height is defined at row + # center rather than at row lower edge as in [1]. vf_gnd_sky, _, _ = _vf_ground_sky_integ( surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth, max_rows, npoints) @@ -557,6 +577,9 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # Integrated view factors to the sky from the shaded and unshaded parts of # the row slant height + # Differs from [1] Eq. 15 and Eq. 16. Here, we integrate over each + # interval (shaded or unshaded) rather than averaging values at each + # interval's end points. vf_shade_sky, vf_noshade_sky = _vf_row_sky_integ( f_x, surface_tilt, gcr) # angle from shadeline to bottom of facing row @@ -565,6 +588,9 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, psi_bottom, _ = _ground_angle(1.0, surface_tilt, gcr) # view factors from the ground to shaded and unshaded portions of the row # slant height + # Differs from [1] Eq. 17 and Eq. 18. Here, we integrate over each + # interval (shaded or unshaded) rather than averaging values at each + # interval's end points. f_gnd_pv_shade, f_gnd_pv_noshade = _vf_row_ground_integ( f_x, surface_tilt, gcr) @@ -724,7 +750,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. - See Also + See also -------- get_irradiance_poa """ diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 7034d7eba3..7c33c2719c 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -39,8 +39,8 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): return tan_phi -def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth, max_zenith=87): +def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, gcr, max_zenith=87): r""" Calculate the fraction of the ground with incident direct irradiance. @@ -54,9 +54,6 @@ def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, Parameters ---------- - gcr : float - Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). [unitless] surface_tilt: numeric Surface tilt angle. The tilt angle is defined as degrees from horizontal, e.g., surface facing up = 0, surface facing @@ -68,6 +65,9 @@ def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, Solar zenith angle. [degree]. solar_azimuth : numeric Solar azimuth. [degree]. + gcr : float + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). [unitless] max_zenith : numeric, default 87 Maximum zenith angle. For solar_zenith > max_zenith, unshaded ground fraction is set to 0. [degree] @@ -77,12 +77,19 @@ def _unshaded_ground_fraction(gcr, surface_tilt, surface_azimuth, solar_zenith, f_gnd_beam : numeric Fraction of distance betwen rows (pitch) with direct irradiance (unshaded). [unitless] + + References + ---------- + .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. """ tan_phi = _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) - np.where(solar_zenith > max_zenith, 0., f_gnd_beam) + np.where(solar_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4 return f_gnd_beam # 1 - min(1, abs()) < 1 always @@ -99,7 +106,7 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): x : numeric Position on the ground between two rows, as a fraction of the pitch. x = 0 corresponds to the point on the ground directly below the - center point of a row. Positive x is towards the right. + center point of a row. Positive x is towards the right. [unitless] rotation : float Rotation angle of the row's left edge relative to row center. [degree] gcr : float @@ -121,7 +128,7 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): Angles defining each wedge of visible sky. Shape is (2, len(x), 2*max_rows+1). ``wedge_angles[0,:,:]`` is the starting angle of each wedge, ``wedge_angles[1,:,:]`` is the end angle. - [degrees] + [degree] """ x = np.atleast_1d(x) # handle float all_k = np.arange(-max_rows, max_rows + 1) diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 6297ee98c4..388a222394 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -63,16 +63,16 @@ def test__solar_projection_tangent(): (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), ]) def test__unshaded_ground_fraction( - gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, expected): # frontside, same for both sides f_sky_beam_f = utils._unshaded_ground_fraction( - gcr, surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) assert np.allclose(f_sky_beam_f, expected) # backside, should be the same as frontside f_sky_beam_b = utils._unshaded_ground_fraction( - gcr, 180. - surface_tilt, surface_azimuth - 180, solar_zenith, - solar_azimuth) + 180. - surface_tilt, surface_azimuth - 180., solar_zenith, + solar_azimuth, gcr) assert np.allclose(f_sky_beam_b, expected) From 8adf64e5f484375f1fcba76c514c7254d134d35c Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 23 Jan 2022 14:37:56 -0700 Subject: [PATCH 091/115] edits from review --- docs/sphinx/source/reference/bifacial.rst | 7 - pvlib/bifacial/infinite_sheds.py | 87 +- pvlib/bifacial/utils.py | 2 +- pvlib/data/infinite_sheds.csv | 8761 --------------------- 4 files changed, 43 insertions(+), 8814 deletions(-) delete mode 100644 pvlib/data/infinite_sheds.csv diff --git a/docs/sphinx/source/reference/bifacial.rst b/docs/sphinx/source/reference/bifacial.rst index d6bba77bb9..2f70d0d883 100644 --- a/docs/sphinx/source/reference/bifacial.rst +++ b/docs/sphinx/source/reference/bifacial.rst @@ -11,10 +11,3 @@ Functions for calculating front and back surface irradiance bifacial.pvfactors.pvfactors_timeseries bifacial.infinite_sheds.get_irradiance bifacial.infinite_sheds.get_irradiance_poa - -Utility functions for bifacial irradiance calculations - -.. autosummary:: - :toctree: generated/ - - bifacial.utils.unshaded_ground_fraction diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 7e5c7e7373..afb9c8ef21 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -6,24 +6,21 @@ front and rear surfaces of a PV array. The model assumes that the array comprises parallel, equally spaced rows (sheds) and calculates irradiance in the middle of a shed which is long enough that end-of-row effects can be -neglected. Rows can be at fixed tilt or on single-axis trackers. +neglected. Rows can be at fixed tilt or on single-axis trackers. The ground +is assumed to be flat and level. -The ground is assumed to be flat and level. To consider arrays on an -non-level ground, rotate the solar vector into the reference frame of the -ground plane. - -The infinite shdes model accounts for the following effects: +The infinite sheds model accounts for the following effects: - limited view from the row surfaces to the sky due to blocking of the sky by nearby rows; - reduction of irradiance reaching the ground due to shadows cast by rows and due to blocking of the sky by nearby rows. The model operates in the following steps: 1. Find the fraction of unshaded ground between rows, ``f_gnd_beam`` where - both direct and diffuse irradiance is recieved. The model assumes that + both direct and diffuse irradiance is received. The model assumes that there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. 2. Calculate the view factor,``fz_sky``, from the ground to the sky accounting for the parts of the sky that are blocked from view by the array's rows. - The view factor is multipled by the sky diffuse irradiance to calculate + The view factor is multiplied by the sky diffuse irradiance to calculate the diffuse irradiance reaching the ground. Sky diffuse irradiance is thus assumed to be isotropic. 3. Calculate the view factor from the row surface to the ground which @@ -172,9 +169,7 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, vf, _ = utils._vf_ground_sky_2d(z, r, gcr, pitch, height, max_rows) fz_sky[k, :] = vf # calculate the integrated view factor for all of the ground between rows - fgnd_sky = np.trapz(fz_sky, z, axis=1) - - return fgnd_sky, z, fz_sky + return np.trapz(fz_sky, z, axis=1) def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): @@ -253,14 +248,14 @@ def _vf_row_sky_integ(f_x, surface_tilt, gcr, npoints=100): surface_tilt = np.array(surface_tilt) cst = cosd(surface_tilt) # shaded portion - x = np.linspace(0 * f_x, f_x, num=npoints) + x = np.linspace(0, f_x, num=npoints) psi_t_shaded = masking_angle(surface_tilt, gcr, x) y = 0.5 * (cosd(psi_t_shaded) + cst) # integrate view factors from each point in the discretization. This is an # improvement over the algorithm described in [2] vf_shade_sky_integ = np.trapz(y, x, axis=0) # unshaded portion - x = np.linspace(f_x, np.ones_like(f_x), num=npoints) + x = np.linspace(f_x, 1., num=npoints) psi_t_unshaded = masking_angle(surface_tilt, gcr, x) y = 0.5 * (cosd(psi_t_unshaded) + cst) vf_noshade_sky_integ = np.trapz(y, x, axis=0) @@ -333,8 +328,7 @@ def _ground_angle(x, surface_tilt, gcr): x1 = x * sind(surface_tilt) x2 = (x * cosd(surface_tilt) + 1 / gcr) psi = np.arctan2(x1, x2) # do this first because it handles 0 / 0 - tan_psi = np.tan(psi) - return np.rad2deg(psi), tan_psi + return np.rad2deg(psi) def _vf_row_ground(x, surface_tilt, gcr): @@ -361,7 +355,7 @@ def _vf_row_ground(x, surface_tilt, gcr): cst = cosd(surface_tilt) # angle from horizontal at the point x on the row slant height to the # bottom of the facing row - psi_t_shaded, _ = _ground_angle(x, surface_tilt, gcr) + psi_t_shaded = _ground_angle(x, surface_tilt, gcr) # view factor from the point on the row to the ground return 0.5 * (cosd(psi_t_shaded) - cst) @@ -418,7 +412,7 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): vf_shade_ground_integ = np.trapz(y, x, axis=0) # unshaded portion of row slant height - x = np.linspace(f_x, np.ones_like(f_x), num=npoints) + x = np.linspace(f_x, 1., num=npoints) # view factor from the point on the row to the ground y = _vf_row_ground(gcr, surface_tilt, x) # integrate view factors along the unshaded portion. @@ -448,7 +442,7 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): Returns ------- - mumeric + numeric Ground diffuse irradiance on the row plane. [W/m^2] """ return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) @@ -477,8 +471,8 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, surface_tilt : numeric Tilt of the surface from horizontal. Must be between 0 and 180. For example, for a fixed tilt module mounted at 30 degrees from - horizontal, use ``surface_tilt``=30 to get front-side irradiance and - ``surface_tilt``=150 to get rear-side irradiance. [degree] + horizontal, use ``surface_tilt=30`` to get front-side irradiance and + ``surface_tilt=150`` to get rear-side irradiance. [degree] surface_azimuth : numeric Surface azimuth in decimal degrees east of north @@ -568,7 +562,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # adjacent rows interior to the array # method differs from [1], Eq. 7 and Eq. 8; height is defined at row # center rather than at row lower edge as in [1]. - vf_gnd_sky, _, _ = _vf_ground_sky_integ( + vf_gnd_sky = _vf_ground_sky_integ( surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth, max_rows, npoints) # fraction of row slant height that is shaded @@ -581,18 +575,15 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # interval (shaded or unshaded) rather than averaging values at each # interval's end points. vf_shade_sky, vf_noshade_sky = _vf_row_sky_integ( - f_x, surface_tilt, gcr) - # angle from shadeline to bottom of facing row - psi_shade, _ = _ground_angle(f_x, surface_tilt, gcr) - # angle from top of row to bottom of facing row - psi_bottom, _ = _ground_angle(1.0, surface_tilt, gcr) + f_x, surface_tilt, gcr, npoints) + # view factors from the ground to shaded and unshaded portions of the row # slant height # Differs from [1] Eq. 17 and Eq. 18. Here, we integrate over each # interval (shaded or unshaded) rather than averaging values at each # interval's end points. f_gnd_pv_shade, f_gnd_pv_noshade = _vf_row_ground_integ( - f_x, surface_tilt, gcr) + f_x, surface_tilt, gcr, npoints) # Calculate some preliminary irradiance quantities # diffuse fraction @@ -601,7 +592,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # row poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) - # Total sky diffuse recieved by both shaded and unshaded portions + # Total sky diffuse received by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( f_x, dhi, vf_shade_sky, vf_noshade_sky) @@ -759,38 +750,44 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, # front side POA irradiance irrad_front = get_irradiance_poa( surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, iam_front) + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, max_rows, + npoints) # back side POA irradiance irrad_back = get_irradiance_poa( backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, iam_back) + gcr, height, pitch, ghi, dhi, dni, albedo, iam_back, max_rows, + npoints) + + colmap_front = { + 'poa_global': 'poa_front', + 'poa_diffuse': 'poa_front_diffuse', + 'poa_direct': 'poa_front_direct', + } + colmap_back = { + 'poa_global': 'poa_back', + 'poa_diffuse': 'poa_back_diffuse', + 'poa_direct': 'poa_back_direct', + } + if isinstance(ghi, pd.Series): - irrad_front = irrad_front.rename( - columns={'poa_global': 'poa_front', - 'poa_diffuse': 'poa_front_diffuse', - 'poa_direct': 'poa_front_direct'}) - irrad_back = irrad_back.rename( - columns={'poa_global': 'poa_back', - 'poa_diffuse': 'poa_back_diffuse', - 'poa_direct': 'poa_back_direct'}) + irrad_front = irrad_front.rename(columns=colmap_front) + irrad_back = irrad_back.rename(columns=colmap_back) output = pd.concat([irrad_front, irrad_back], axis=1) else: - old = ['poa_global', 'poa_diffuse', 'poa_direct'] - front = ['poa_front', 'poa_front_diffuse', 'poa_front_direct'] - back = ['poa_back', 'poa_back_diffuse', 'poa_back_direct'] - for old_key, new_key in zip(old, front): + for old_key, new_key in colmap_front.items(): irrad_front[new_key] = irrad_front.pop(old_key) - for old_key, new_key in zip(old, back): + for old_key, new_key in colmap_back.items(): irrad_back[new_key] = irrad_back.pop(old_key) irrad_front.update(irrad_back) output = irrad_front + effects = (1 + shade_factor) * (1 + transmission_factor) output['poa_global'] = output['poa_front'] + \ output['poa_back'] * bifaciality * effects return output -def _backside(tilt, system_azimuth): +def _backside(tilt, surface_azimuth): backside_tilt = 180. - tilt - backside_sysaz = (180. + system_azimuth) % 360. + backside_sysaz = (180. + surface_azimuth) % 360. return backside_tilt, backside_sysaz diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 7c33c2719c..2061d59807 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -93,7 +93,7 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, return f_gnd_beam # 1 - min(1, abs()) < 1 always -def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): +def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=5): r""" Calculate the fraction of the sky dome visible from point x on the ground. diff --git a/pvlib/data/infinite_sheds.csv b/pvlib/data/infinite_sheds.csv deleted file mode 100644 index 56c978bf52..0000000000 --- a/pvlib/data/infinite_sheds.csv +++ /dev/null @@ -1,8761 +0,0 @@ -timestamp UTC,apparent_zenith,azimuth,ghi,dni,dhi,poa_global_f,poa_direct_f,poa_diffuse_f,poa_sky_diffuse_f,poa_ground_diffuse_f,poa_global_b,poa_direct_b,poa_diffuse_b,poa_sky_diffuse_b,poa_ground_diffuse_b,solar_zenith,solar_azimuth,tan_phi_f,tan_phi_b,Fsky-gnd,df,POA_gnd-sky_f,POA_gnd-sky_b,Fx_f,Fx_b,psi_top_f,psi_top_b,Fnextrow-sky-front-shade,Fnextrow-sky-front-Noshade,Fnextrow-sky-back-shade,Fnextrow-sky-back-NOshade,POAsky-nextrow-f,POAsky-nextrow-b,psi_bot_f,psi_bot_b,Fnextrow-gnd-front-shade,Fnextrow-gnd-front-Noshade,Fnextrow-gnd-back-shade,Fnextrow-gnd-back-NOshade,POAgnd-nextrow-f,POAgnd-nextrow-b,poa_diffuse_sheds_f,poa_diffuse_sheds_b,poa_beam_sheds_f,poa_beam_sheds_b,cos_aoi_f,AOI_f,cos_aoi_b,AOI_b,iam_f,iam_b,poa_global_sheds_f,poa_global_sheds_b,poa_bifacial_sheds,month,hour,BG -1/1/2018 8:00,164.9034207,348.9030137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.87810764,6.089506359,0.041748175,-0.041748175,0.523014331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921048053,157.0797842,0.921048053,22.92021583,0,0.995714016,0,0,0,1,0,0% -1/1/2018 9:00,161.989496,37.77591193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827250058,0.659314041,0.275043485,-0.275043485,0.483118483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983108488,169.4540642,0.983108488,10.54593582,0,0.999140913,0,0,0,1,1,0% -1/1/2018 10:00,152.631317,64.82517022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663919024,1.131412658,0.515547605,-0.515547605,0.441989857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991100555,172.3503474,0.991100555,7.649652595,0,0.999551032,0,0,0,1,2,0% -1/1/2018 11:00,141.3494297,79.63235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467012944,1.389846708,0.788460715,-0.788460715,0.395318966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944474914,160.8171758,0.944474914,19.18282416,0,0.997060531,0,0,0,1,3,0% -1/1/2018 12:00,129.5681988,89.95619044,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261391675,1.570031706,1.137493917,-1.137493917,0.335630773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846401384,147.8223949,0.846401384,32.17760508,0,0.990926373,0,0,0,1,4,0% -1/1/2018 13:00,117.7715194,98.59677328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055500778,1.720838326,1.667302389,-1.667302389,0.245028189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703553512,134.7128026,0.703553512,45.28719739,0,0.9789322,0,0,0,1,5,0% -1/1/2018 14:00,106.2283483,106.7743418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854034437,1.863563821,2.751975557,-2.751975557,0.059538152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525654593,121.7123206,0.525654593,58.28767944,0,0.954880504,0,0,0,1,6,0% -1/1/2018 15:00,95.17804736,115.2018541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661170302,2.010651659,7.775378981,-7.775378981,0,#DIV/0!,0,0,0.444294536,1,0.127908939,0,0.94801306,0.986775023,0.724496596,1,0,0,0.062774769,0.312029739,0.837455753,0.561952349,0.961238037,0.922476074,0,0,0,0,0,0,-0.32481597,108.954426,0.32481597,71.04557404,0,0.896066682,0,0,0,1,7,0% -1/1/2018 16:00,84.74625363,124.4289979,33.60029708,180.2608368,17.0944016,16.83223555,0,16.83223555,16.57894232,0.253293232,28.8652617,20.20302138,8.662240318,0.51545928,8.146781038,1.479101155,2.171695698,-6.326179519,6.326179519,0.388005898,0.508757454,0.177143778,5.69755282,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93630997,0.373448494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128340064,5.476704488,16.06465003,5.850152981,0,20.20302138,-0.112076598,96.43503624,0.112076598,83.56496376,0,0.603876538,16.06465003,18.05028359,27.87819964,1,8,74% -1/1/2018 17:00,75.72216628,134.9503073,181.926759,537.8365704,49.28329531,98.3329472,49.16428432,49.16866288,47.79722212,1.371440756,45.59632219,0,45.59632219,1.48607319,44.110249,1.321601118,2.355327188,-1.66376966,1.66376966,0.814675058,0.270896352,1.186130185,38.15002403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.94450796,1.076654967,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859347281,36.67125421,46.80385524,37.74790917,49.16428432,0,0.091411196,84.75520262,-0.091411196,95.24479738,0.503021052,0,71.53452526,37.74790917,96.23977686,1,9,35% -1/1/2018 18:00,68.28948118,147.1721957,318.5970414,685.4430997,65.03976102,255.3886295,189.9083382,65.48029133,63.07857226,2.401719074,79.20873004,0,79.20873004,1.961188766,77.24754127,1.191876291,2.568639382,-0.557617858,0.557617858,0.625511959,0.204144272,1.685914438,54.22480363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63352296,1.420874585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221439272,52.12294379,61.85496224,53.54381838,189.9083382,0,0.277059231,73.91523144,-0.277059231,106.0847686,0.869533174,0,226.9865623,53.54381838,262.0299206,1,10,15% -1/1/2018 19:00,63.12703546,161.2212777,412.2249719,749.6649375,73.36603173,397.5592473,323.2979461,74.26130115,71.15377518,3.107525963,102.1609736,0,102.1609736,2.212256549,99.94871701,1.101774616,2.813842119,0.042060779,-0.042060779,0.522960873,0.177975709,1.888947723,60.75505198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39571517,1.602772339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368536195,58.40006689,69.76425137,60.00283923,323.2979461,0,0.431256592,64.4526669,-0.431256592,115.5473331,0.934059743,0,371.7438479,60.00283923,411.0145062,1,11,11% -1/1/2018 20:00,60.8451321,176.6473821,452.6684664,771.9194992,76.6109743,497.1436819,419.4304051,77.71327687,74.30087076,3.412406107,112.064814,0,112.064814,2.31010354,109.7547105,1.061947889,3.083078433,0.513546466,-0.513546466,0.442332072,0.169243011,1.831484327,58.90683163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42082315,1.673662151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32690416,56.6234872,72.74772731,58.29714935,419.4304051,0,0.543360293,57.08731715,-0.543360293,122.9126828,0.957980026,0,474.5536777,58.29714935,512.707996,1,12,8% -1/1/2018 21:00,61.77319689,192.3533458,436.3035114,763.2413046,75.31862258,538.6339794,462.2974511,76.33652838,73.04748822,3.289040164,108.0579721,0,108.0579721,2.271134367,105.7868377,1.078145675,3.357199212,0.996910125,-0.996910125,0.359672018,0.172628963,1.546543434,49.74215304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.21602417,1.645429118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.120465453,47.81404953,71.33648962,49.45947865,462.2974511,0,0.605702873,52.72056293,-0.605702873,127.2794371,0.967451275,0,518.586748,49.45947865,550.9569876,1,13,6% -1/1/2018 22:00,65.77211302,207.0874781,364.5618841,719.5252163,69.29252857,511.7750416,441.823717,69.95132465,67.20310317,2.748221474,90.48167496,0,90.48167496,2.089425399,88.39224956,1.147939928,3.614358332,1.627531715,-1.627531715,0.251829374,0.190070689,1.082894571,34.82961184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59817896,1.513781589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.784553431,33.47954771,65.38273239,34.9933293,441.823717,0,0.614048969,52.11715089,-0.614048969,127.8828491,0.968573269,0,493.3213744,34.9933293,516.2238085,1,14,5% -1/1/2018 23:00,72.31836992,220.1019037,244.3836152,616.186029,57.23090706,407.2827856,349.9353346,57.34745098,55.50518406,1.842266919,60.97935989,0,60.97935989,1.725723008,59.25363688,1.262193665,3.84150291,2.719408319,-2.719408319,0.065107478,0.234184714,0.523286737,16.83070024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.35369416,1.250280444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379119459,16.17830926,53.73281362,17.4285897,349.9353346,0,0.567905337,55.39571266,-0.567905337,124.6042873,0.961957158,0,390.3556135,17.4285897,401.7622769,1,15,3% -1/1/2018 0:00,80.75202477,231.3117387,93.44204989,370.5499601,33.89182317,208.0262619,174.4519966,33.5742653,32.86985966,0.704405642,23.67807035,0,23.67807035,1.021963516,22.65610683,1.40938871,4.037151438,5.817788295,-5.817788295,0,0.362704192,0.255490879,8.217464915,0.317288103,1,0.170223218,0,0.94280202,0.981563983,0.724496596,1,31.8596135,0.740409089,0.047185005,0.312029739,0.874921185,0.599417781,0.961238037,0.922476074,0.175479243,7.898939842,32.03509274,8.639348931,119.1004534,0,0.470792107,61.91427378,-0.470792107,118.0857262,0.943796011,0,144.4416255,8.639348931,150.0959066,1,16,4% -1/1/2018 1:00,90.09314715,241.0375941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572422051,4.206899639,-607.5998407,607.5998407,0,#DIV/0!,0,0,1,0.990332172,0,0.001645819,0.961238037,1,0.719840199,0.995343603,0,0,0.115824807,0.306738104,0.724496596,0.448993192,0.96207268,0.923310717,0,0,0,0,0,0,0.336316214,70.34740387,-0.336316214,109.6525961,0.901330391,0,0,0,0,1,17,0% -1/1/2018 2:00,101.4413707,249.7496077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770485917,4.35895296,-4.940984311,4.940984311,0.624888229,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148818167,81.44155619,-0.148818167,98.55844381,0.714019514,0,0,0,0,1,18,0% -1/1/2018 3:00,112.8041787,257.9702063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968804328,4.502429472,-2.355445598,2.355445598,0.93295861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.051968182,92.97889936,0.051968182,87.02110064,0,0,0,0,0,1,19,0% -1/1/2018 4:00,124.519822,266.3210234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173280878,4.648178725,-1.395341032,1.395341032,0.768771059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.262070866,105.1929755,0.262070866,74.80702446,0,0.85921191,0,0,0,1,20,0% -1/1/2018 5:00,136.3433689,275.7410052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3796407,4.812588423,-0.859487583,0.859487583,0.677134723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467179527,117.8513687,0.467179527,62.1486313,0,0.942974762,0,0,0,1,21,0% -1/1/2018 6:00,147.918875,288.1381007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581671394,5.028958557,-0.493024919,0.493024919,0.614465916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653323694,130.7926655,0.653323694,49.20733454,0,0.973468259,0,0,0,1,22,0% -1/1/2018 7:00,158.3845602,308.5232861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764332059,5.384747161,-0.206897381,0.206897381,0.565535226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807824035,143.8838753,0.807824035,36.11612471,0,0.988105333,0,0,0,1,23,0% -1/2/2018 8:00,164.7999617,348.5531096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876301938,6.083399381,0.040408095,-0.040408095,0.523243498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920155609,156.9488414,0.920155609,23.05115855,0,0.995661365,0,0,0,1,0,0% -1/2/2018 9:00,161.9714827,37.33285705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826935667,0.651581275,0.273987347,-0.273987347,0.483299094,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982664464,169.3159561,0.982664464,10.68404388,0,0.999117932,0,0,0,1,1,0% -1/2/2018 10:00,152.6593763,64.53023968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664408751,1.12626515,0.514682463,-0.514682463,0.442137805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991088848,172.3453105,0.991088848,7.654689473,0,0.999550436,0,0,0,1,2,0% -1/2/2018 11:00,141.392809,79.42156246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467770056,1.386167762,0.787723822,-0.787723822,0.395444982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944849564,160.8826119,0.944849564,19.11738814,0,0.997081523,0,0,0,1,3,0% -1/2/2018 12:00,129.6149205,89.78669813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262207123,1.567073507,1.136821617,-1.136821617,0.335745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847089735,147.8965298,0.847089735,32.10347024,0,0.990974376,0,0,0,1,4,0% -1/2/2018 13:00,117.81565,98.44791913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056271003,1.718240331,1.666543386,-1.666543386,0.245157986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704461203,134.7860318,0.704461203,45.21396816,0,0.97902377,0,0,0,1,5,0% -1/2/2018 14:00,106.2658112,106.6348717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854688288,1.861129609,2.750271181,-2.750271181,0.059829618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526672046,121.7808729,0.526672046,58.21912707,0,0.955064261,0,0,0,1,6,0% -1/2/2018 15:00,95.20514452,115.064749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661643237,2.008258722,7.753297076,-7.753297076,0,#DIV/0!,0,0,0.443125952,1,0.128269255,0,0.947970405,0.986732368,0.724496596,1,0,0,0.062638469,0.312029739,0.837774948,0.562271544,0.961238037,0.922476074,0,0,0,0,0,0,-0.325825919,109.0156205,0.325825919,70.98437946,0,0.896543823,0,0,0,1,7,0% -1/2/2018 16:00,84.75870568,124.2896642,33.31948709,178.0651046,17.05318418,16.79014413,0,16.79014413,16.53896776,0.251176368,28.70661784,20.11370601,8.592911827,0.514216423,8.078695404,1.479318484,2.169263867,-6.362837498,6.362837498,0.381737014,0.511808124,0.175363562,5.640294958,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.8978849,0.372548048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.127050304,5.421666053,16.02493521,5.794214101,0,20.11370601,-0.112957034,96.48580386,0.112957034,83.51419614,0,0.607353815,16.02493521,18.01035019,27.8123492,1,8,74% -1/2/2018 17:00,75.716093,134.8065037,181.7651625,536.1289453,49.48776739,98.02391348,48.65816229,49.36575119,47.99552861,1.370222573,45.56330682,0,45.56330682,1.492238777,44.07106805,1.32149512,2.352817343,-1.671957684,1.671957684,0.816075293,0.272262114,1.186819682,38.17220065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.1351277,1.081121914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85984682,36.69257121,46.99497452,37.77369313,48.65816229,0,0.09075832,84.79276583,-0.09075832,95.20723417,0.49908632,0,71.27959767,37.77369313,96.00172435,1,9,35% -1/2/2018 18:00,68.25984601,147.0252969,318.8201375,684.2786325,65.36482332,255.1585645,189.3613309,65.7972336,63.39383273,2.403400866,79.27262409,0,79.27262409,1.970990594,77.3016335,1.19135906,2.566075514,-0.563047023,0.563047023,0.626440401,0.205021,1.689658017,54.34520999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.93656332,1.427975976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.224151482,52.23868296,62.1607148,53.66665894,189.3613309,0,0.276731322,73.93478372,-0.276731322,106.0652163,0.869319333,0,226.7761806,53.66665894,261.8999355,1,10,15% -1/2/2018 19:00,63.07009543,161.0781124,412.9019959,748.8230515,73.75995617,397.6340556,322.9856046,74.648451,71.53582135,3.112629656,102.3370041,0,102.3370041,2.224134824,100.1128693,1.100780825,2.811343415,0.037039453,-0.037039453,0.52381957,0.178637926,1.895228697,60.9570697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.76295248,1.611378109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.373086739,58.59425401,70.13603922,60.20563212,322.9856046,0,0.431324335,64.44836485,-0.431324335,115.5516352,0.934077953,0,371.8297715,60.20563212,411.2331536,1,11,11% -1/2/2018 20:00,60.76033469,176.5198616,453.8106807,771.3161758,77.05060605,497.6416729,419.4934103,78.14826259,74.72724599,3.421016602,112.3550136,0,112.3550136,2.323360059,110.0316536,1.060467895,3.08085278,0.50795425,-0.50795425,0.443288397,0.169785792,1.839857341,59.17613655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83067123,1.683266454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.33297038,56.88235333,73.16364161,58.56561978,419.4934103,0,0.543866994,57.05272805,-0.543866994,122.947272,0.958065758,0,475.0659136,58.56561978,513.3959405,1,12,8% -1/2/2018 21:00,61.66455981,192.2529528,437.8807517,762.8858595,75.79014913,539.6193237,462.8135971,76.80572657,73.5047965,3.300930068,108.4546105,0,108.4546105,2.285352632,106.1692579,1.076249601,3.355447022,0.989643683,-0.989643683,0.360914653,0.173083993,1.556487874,50.06200041,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65560629,1.655730202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.127670166,48.12149899,71.78327645,49.7772292,462.8135971,0,0.606661654,52.65149175,-0.606661654,127.3485083,0.967581737,0,519.5932604,49.7772292,552.1714614,1,13,6% -1/2/2018 22:00,65.64680223,207.0186025,366.5047533,719.5592694,69.78700703,513.2922835,442.8467446,70.44553892,67.68267128,2.762867643,90.96765644,0,90.96765644,2.104335748,88.86332069,1.145752842,3.613156226,1.616256386,-1.616256386,0.253757569,0.190412284,1.093684733,35.17666053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05915807,1.524584086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792370866,33.81314411,65.85152893,35.3377282,442.8467446,0,0.615441651,52.01598157,-0.615441651,127.9840184,0.96875753,0,494.8626473,35.3377282,517.9904836,1,14,5% -1/2/2018 23:00,72.18364054,220.0614603,246.5689245,617.1195706,57.75060794,409.4302592,351.5623044,57.86795474,56.00921403,1.858740704,61.52488434,0,61.52488434,1.741393906,59.78349043,1.259842193,3.840797039,2.696376922,-2.696376922,0.069046079,0.234216895,0.533628129,17.16331495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.83818694,1.261633957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386611763,16.49803117,54.2247987,17.75966513,351.5623044,0,0.569682637,55.27190195,-0.569682637,124.728098,0.962231834,0,392.5092398,17.75966513,404.1325855,1,15,3% -1/2/2018 0:00,80.61380137,231.293595,95.53561455,374.2670527,34.49703247,211.1560583,176.9790509,34.17700747,33.45681966,0.720187817,24.20392863,0,24.20392863,1.040212809,23.16371582,1.406976257,4.036834772,5.72998241,-5.72998241,0,0.36109081,0.260053202,8.364204914,0.310216867,1,0.172780479,0,0.942474156,0.981236119,0.724496596,1,32.42673449,0.753630639,0.046268514,0.312029739,0.877183667,0.601680263,0.961238037,0.922476074,0.178694535,8.039991911,32.60542903,8.793622551,122.0771642,0,0.472868369,61.77934974,-0.472868369,118.2206503,0.944262329,0,147.8782964,8.793622551,153.6335465,1,16,4% -1/2/2018 1:00,89.97613348,241.0361034,0.005689293,1.032316604,0.005259282,0.354308523,0.349164939,0.005143583,0.005100695,4.29E-05,0.001538022,0,0.001538022,0.000158587,0.001379435,1.570379777,4.206873621,2371.35595,-2371.35595,0,0.924417538,3.96E-05,0.001275174,0.997536919,1,0.0004217,0,0.961200837,0.9999628,0.724496596,1,0.004903279,0.000114896,0.11563229,0.312029739,0.724865662,0.449362258,0.961238037,0.922476074,2.87E-05,0.001225746,0.004931991,0.001340641,0.000860021,0,0.338234354,70.23066218,-0.338234354,109.7693378,0.902173502,0,0.00570788,0.001340641,0.006585302,1,17,15% -1/2/2018 2:00,101.3007827,249.760765,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768032193,4.359147692,-5.004111721,5.004111721,0.614092806,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151244393,81.30095218,-0.151244393,98.69904782,0.719409232,0,0,0,0,1,18,0% -1/2/2018 3:00,112.6643712,257.9914856,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966364227,4.502800866,-2.371502606,2.371502606,0.93570452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04955025,92.84018321,0.04955025,87.15981679,0,0,0,0,0,1,19,0% -1/2/2018 4:00,124.3805974,266.3505953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17085095,4.648694852,-1.402416301,1.402416301,0.769981002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.259777731,105.0568739,0.259777731,74.94312608,0,0.857527767,0,0,0,1,20,0% -1/2/2018 5:00,136.2039063,275.7757088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.37720662,4.813194116,-0.863433685,0.863433685,0.677809546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465118918,117.7179185,0.465118918,62.28208152,0,0.94250061,0,0,0,1,21,0% -1/2/2018 6:00,147.7779449,288.1654077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5792117,5.029435155,-0.495538296,0.495538296,0.614895729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651587169,130.6613748,0.651587169,49.33862521,0,0.973264296,0,0,0,1,22,0% -1/2/2018 7:00,158.2436012,308.4804519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.761871862,5.383999564,-0.208639517,0.208639517,0.565833148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806480699,143.7534976,0.806480699,36.24650244,0,0.988002236,0,0,0,1,23,0% -1/3/2018 8:00,164.6887868,348.217291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.874361571,6.07753824,0.039130641,-0.039130641,0.523461956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919247375,156.8163002,0.919247375,23.18369985,0,0.995607677,0,0,0,1,0,0% -1/3/2018 9:00,161.9454058,36.88155813,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826480539,0.643704623,0.273016763,-0.273016763,0.483465073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982203186,169.1743255,0.982203186,10.82567453,0,0.999094036,0,0,0,1,1,0% -1/3/2018 10:00,152.6811078,64.22381544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664788037,1.120917038,0.513933382,-0.513933382,0.442265905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991055509,172.330983,0.991055509,7.669016976,0,0.999548739,0,0,0,1,2,0% -1/3/2018 11:00,141.4307357,79.2012994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468432001,1.382323446,0.787151012,-0.787151012,0.395542939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945195592,160.9432406,0.945195592,19.05675937,0,0.997100896,0,0,0,1,3,0% -1/3/2018 12:00,129.6564834,89.60944613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262932531,1.563979876,1.136402133,-1.136402133,0.335817479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847740343,147.9667406,0.847740343,32.03325937,0,0.991019676,0,0,0,1,4,0% -1/3/2018 13:00,117.8546078,98.29248608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056950945,1.715527512,1.666240531,-1.666240531,0.245209777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705320532,134.8554452,0.705320532,45.1445548,0,0.979110245,0,0,0,1,5,0% -1/3/2018 14:00,106.2979008,106.4896593,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855248357,1.858595175,2.749717125,-2.749717125,0.059924367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.527629752,121.8454461,0.527629752,58.15455386,0,0.95523658,0,0,0,1,6,0% -1/3/2018 15:00,95.22653801,114.9225606,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662016623,2.005777068,7.740566681,-7.740566681,0,#DIV/0!,0,0,0.442450018,1,0.128477899,0,0.947945691,0.986707654,0.724496596,1,0,0,0.062559572,0.312029739,0.83795978,0.562456376,0.961238037,0.922476074,0,0,0,0,0,0,-0.326764748,109.0725261,0.326764748,70.92747393,0,0.896984718,0,0,0,1,7,0% -1/3/2018 16:00,84.76517326,124.1458739,33.11498782,176.1985456,17.03900199,16.77484798,0,16.77484798,16.52521322,0.249634766,28.58691977,20.0440188,8.542900967,0.513788777,8.02911219,1.479431364,2.166754252,-6.392963985,6.392963985,0.376585081,0.514540488,0.174084626,5.59915998,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.88466351,0.37223822,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126123719,5.382125547,16.01078723,5.754363767,0,20.0440188,-0.11375814,96.53200165,0.11375814,83.46799835,0,0.610471013,16.01078723,17.99065623,27.78531192,1,8,74% -1/3/2018 17:00,75.70344125,134.6589925,181.7234434,534.6023316,49.70830944,97.79815425,48.21882567,49.57932858,48.2094205,1.369908077,45.5598417,0,45.5598417,1.498888934,44.06095277,1.321274305,2.350242786,-1.679551262,1.679551262,0.817373871,0.273538232,1.188161139,38.2153465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.34072872,1.08593993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.8608187,36.73404465,47.20154742,37.81998458,48.21882567,0,0.090195689,84.82513497,-0.090195689,95.17486503,0.495649781,0,71.10119779,37.81998458,95.8536213,1,9,35% -1/3/2018 18:00,68.22315532,146.8757403,319.1725962,683.2232005,65.70186511,255.0385271,188.9117578,66.12676931,63.72071146,2.406057849,79.36824485,0,79.36824485,1.981153647,77.3870912,1.190718686,2.56346526,-0.568365748,0.568365748,0.627349957,0.205850583,1.694009536,54.48516979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.25077159,1.435339073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227304142,52.37321765,62.47807573,53.80855672,188.9117578,0,0.276500795,73.9485283,-0.276500795,106.0514717,0.869168693,0,226.6742614,53.80855672,261.8908856,1,10,16% -1/3/2018 19:00,63.00577216,160.9337883,413.7103397,748.0621341,74.1643875,397.8309514,322.7841705,75.04678087,71.92805758,3.118723293,102.5451916,0,102.5451916,2.236329921,100.3088616,1.099658172,2.808824484,0.031992552,-0.031992552,0.524682641,0.179266459,1.902081582,61.17748204,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.13998486,1.620213415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378051631,58.80612274,70.51803649,60.42633615,322.7841705,0,0.431493797,64.43760235,-0.431493797,115.5623977,0.934123479,0,372.0383088,60.42633615,411.5861373,1,11,11% -1/3/2018 20:00,60.6681226,176.3930915,455.0817144,770.7829737,77.50013574,498.2672565,419.6734377,78.59381889,75.1632207,3.430598191,112.6767455,0,112.6767455,2.336915038,110.3398304,1.05885849,3.078640225,0.502265452,-0.502265452,0.444261239,0.170299384,1.848760369,59.46248854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.24974671,1.69308699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339420594,57.15760575,73.5891673,58.85069274,419.6734377,0,0.544476788,57.0110836,-0.544476788,122.9889164,0.958168721,0,475.7071282,58.85069274,514.2237295,1,12,8% -1/3/2018 21:00,61.54886564,192.1552841,439.580686,762.5993652,76.27142918,540.7336174,463.4483084,77.28530907,73.97156418,3.313744891,108.8812916,0,108.8812916,2.299865001,106.5814266,1.074230356,3.353742383,0.982216162,-0.982216162,0.362184833,0.173509509,1.566910336,50.39722263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.10428114,1.666244365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.135221205,48.44372734,72.23950234,50.1099717,463.4483084,0,0.607721865,52.57503938,-0.607721865,127.4249606,0.967725521,0,520.7302579,50.1099717,553.5262321,1,13,6% -1/3/2018 22:00,65.51511894,206.9540478,368.5609988,719.6697298,70.29163963,514.9371562,443.9867004,70.95045583,68.17208734,2.77836849,91.48143349,0,91.48143349,2.119552283,89.3618812,1.143454535,3.612029535,1.604730504,-1.604730504,0.255728611,0.190719148,1.104888845,35.5370233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5296034,1.535608414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800488207,34.15953851,66.33009161,35.69514692,443.9867004,0,0.616931187,51.90762185,-0.616931187,128.0923782,0.968953684,0,496.5326405,35.69514692,519.8944003,1,14,5% -1/3/2018 23:00,72.04337504,220.0263865,248.8552109,618.1482791,58.28199999,411.7029638,353.3024055,58.40055835,56.52458265,1.875975697,62.09524438,0,62.09524438,1.757417337,60.33782704,1.257394099,3.840184886,2.672944069,-2.672944069,0.073053333,0.23420044,0.544304313,17.50669774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.33357886,1.273242878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394346622,16.82810376,54.72792548,18.10134664,353.3024055,0,0.571549606,55.14164465,-0.571549606,124.8583553,0.96251853,0,394.7880373,18.10134664,406.6350066,1,15,3% -1/3/2018 0:00,80.47086276,231.2814521,97.71462829,378.1119137,35.11852199,214.4088205,179.6126374,34.79618312,34.05956898,0.736614143,24.75099594,0,24.75099594,1.058953012,23.69204293,1.404481507,4.036622838,5.642057499,-5.642057499,0,0.359398819,0.264738253,8.514892245,0.302987727,1,0.175418572,0,0.942134397,0.98089636,0.724496596,1,33.00889805,0.767207852,0.045325966,0.312029739,0.879517409,0.604014005,0.961238037,0.922476074,0.182004413,8.184838306,33.19090247,8.952046158,125.1922126,0,0.475025068,61.63901781,-0.475025068,118.3609822,0.944742397,0,151.4652935,8.952046158,157.3242287,1,16,4% -1/3/2018 1:00,89.85522564,241.0410517,0.04180317,1.380137223,0.038315858,0.507027124,0.4695515,0.037475623,0.037160493,0.00031513,0.011291027,0,0.011291027,0.001155364,0.010135663,1.568269538,4.206959985,390.9301487,-390.9301487,0,0.916577807,0.000288841,0.009290123,0.9851462,1,0.002557996,0,0.961011723,0.999773686,0.724496596,1,0.035733065,0.000837058,0.114659066,0.312029739,0.726735965,0.45123256,0.961238037,0.922476074,0.000208729,0.00893002,0.035941794,0.009767078,0.006974624,0,0.34022088,70.10966816,-0.34022088,109.8903318,0.903036651,0,0.042240136,0.009767078,0.048632493,1,17,15% -1/3/2018 2:00,101.1567586,249.7788025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765518498,4.359462506,-5.070412186,5.070412186,0.602754759,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153729113,81.15690359,-0.153729113,98.84309641,0.724752563,0,0,0,0,1,18,0% -1/3/2018 3:00,112.5215388,258.0202501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963871332,4.503302901,-2.388060151,2.388060151,0.938536027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047085179,92.69877985,0.047085179,87.30122015,0,0,0,0,0,1,19,0% -1/3/2018 4:00,124.2385698,266.3885933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168372101,4.649358043,-1.409628218,1.409628218,0.771214312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.257447966,104.9186872,0.257447966,75.0813128,0,0.855785997,0,0,0,1,20,0% -1/3/2018 5:00,136.0616047,275.8203721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374722988,4.813973638,-0.867409729,0.867409729,0.67848949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463030618,117.5828413,0.463030618,62.41715869,0,0.94201578,0,0,0,1,21,0% -1/3/2018 6:00,147.6337028,288.2052425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576694201,5.030130404,-0.498035894,0.498035894,0.615322843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649829709,130.5287639,0.649829709,49.47123609,0,0.973056765,0,0,0,1,22,0% -1/3/2018 7:00,158.0979508,308.4541204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759329782,5.383539993,-0.210339209,0.210339209,0.566123813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805120536,143.6218977,0.805120536,36.37810226,0,0.987897498,0,0,0,1,23,0% -1/4/2018 8:00,164.5700037,347.8960104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.872288415,6.071930836,0.037916926,-0.037916926,0.523669513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918323494,156.6822059,0.918323494,23.3177941,0,0.995552956,0,0,0,1,0,0% -1/4/2018 9:00,161.9111996,36.42290178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82588353,0.635699559,0.272132661,-0.272132661,0.483616264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981724429,169.0292391,0.981724429,10.97076094,0,0.999069211,0,0,0,1,1,0% -1/4/2018 10:00,152.6964019,63.90624456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665054969,1.11537438,0.513301138,-0.513301138,0.442374025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990999977,172.3071778,0.990999977,7.692822192,0,0.999545912,0,0,0,1,2,0% -1/4/2018 11:00,141.4631114,78.97174068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468997064,1.378316891,0.786742918,-0.786742918,0.395612727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945512157,160.9988704,0.945512157,19.00112964,0,0.997118607,0,0,0,1,3,0% -1/4/2018 12:00,129.6928042,89.42455949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263566449,1.560752995,1.136235909,-1.136235909,0.335845905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848352162,148.0328913,0.848352162,31.96710873,0,0.991062212,0,0,0,1,4,0% -1/4/2018 13:00,117.8883239,98.13057701,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057539402,1.712701666,1.666393834,-1.666393834,0.245183561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706130334,134.9209345,0.706130334,45.0790655,0,0.979191542,0,0,0,1,5,0% -1/4/2018 14:00,106.3245622,106.338797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855713686,1.85596213,2.750310972,-2.750310972,0.059822813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.528526516,121.9059514,0.528526516,58.0940486,0,0.955397367,0,0,0,1,6,0% -1/4/2018 15:00,95.24218731,114.7753758,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662289755,2.003208208,7.73707592,-7.73707592,0,#DIV/0!,0,0,0.442264385,1,0.128535229,0,0.947938899,0.986700862,0.724496596,1,0,0,0.062537897,0.312029739,0.838010566,0.562507162,0.961238037,0.922476074,0,0,0,0,0,0,-0.327631337,109.1250702,0.327631337,70.87492978,0,0.897389446,0,0,0,1,7,0% -1/4/2018 16:00,84.76563236,123.9977095,32.98641981,174.658629,17.05232643,16.78680144,0,16.78680144,16.53813588,0.248665566,28.50687218,19.99474224,8.512129945,0.514190558,7.997939386,1.479439377,2.164168295,-6.41638496,6.41638496,0.372579859,0.5169499,0.17330116,5.573961013,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89708526,0.372529309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.1255561,5.357903342,16.02264136,5.730432651,0,19.99474224,-0.114478983,96.57357452,0.114478983,83.42642548,0,0.613238608,16.02264136,17.99198055,27.7980328,1,8,73% -1/4/2018 17:00,75.68420123,134.5078522,181.8016326,533.2570039,49.94519945,97.65562477,47.84595986,49.80966491,48.43916741,1.3704975,45.58594269,0,45.58594269,1.506032042,44.07991065,1.320938503,2.34760489,-1.686533902,1.686533902,0.818567973,0.274723603,1.190155972,38.27950719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.56157019,1.091115087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86226395,36.79571835,47.42383414,37.88683343,47.84595986,0,0.089724016,84.85226987,-0.089724016,95.14773013,0.492735598,0,70.9992418,37.88683343,95.79541655,1,9,35% -1/4/2018 18:00,68.17941492,146.7235996,319.6541678,682.2765992,66.05100367,255.0284635,188.5594531,66.46901035,64.05932221,2.409688139,79.49553527,0,79.49553527,1.991681463,77.50385381,1.189955272,2.560809903,-0.573565431,0.573565431,0.628239155,0.2066327,1.698967737,54.64464257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57625712,1.44296644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230896342,52.52650895,62.80715347,53.96947539,188.5594531,0,0.27636805,73.95644241,-0.27636805,106.0435576,0.869081837,0,226.6807493,53.96947539,262.0026915,1,10,16% -1/4/2018 19:00,62.93408622,160.7883747,414.6493912,747.3816437,74.57936508,398.1495797,322.6932554,75.45632432,72.33052206,3.125802259,102.7853886,0,102.7853886,2.248843026,100.5365455,1.098407016,2.806286537,0.026927519,-0.026927519,0.525548813,0.179861268,1.909503227,61.41618764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52684903,1.629279117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383428588,59.03557564,70.91027761,60.66485476,322.6932554,0,0.431765027,64.42037458,-0.431765027,115.5796254,0.934196271,0,372.3691135,60.66485476,412.0730477,1,11,11% -1/4/2018 20:00,60.56853062,176.2671409,456.4805993,770.3190243,77.95955105,499.0196543,419.9697278,79.04992652,75.60878294,3.441143575,113.0297743,0,113.0297743,2.350768104,110.6790062,1.057120282,3.076441971,0.496488389,-0.496488389,0.445249175,0.170783931,1.858188973,59.76574487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.67803809,1.703123489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346251586,57.44910727,74.02428967,59.15223076,419.9697278,0,0.54518935,56.96239594,-0.54518935,123.0376041,0.958288744,0,476.4765526,59.15223076,515.1905046,1,12,8% -1/4/2018 21:00,61.42616384,192.0604105,441.4020402,762.3804869,76.76240507,541.9755894,464.2003791,77.77521036,74.44773533,3.327475028,109.3377048,0,109.3377048,2.314669736,107.023035,1.072088806,3.352086526,0.97463883,-0.97463883,0.363480633,0.173905868,1.57780576,50.7476569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56199496,1.676970344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143114902,48.78057809,72.70510986,50.45754844,464.2003791,0,0.608882818,52.49123282,-0.608882818,127.5087672,0.967882393,0,521.9964836,50.45754844,555.0199399,1,13,6% -1/4/2018 22:00,65.37712713,206.8938814,370.7291354,719.8543974,70.80631247,516.7078158,445.2418621,71.46595372,68.6712409,2.794712819,92.02264259,0,92.02264259,2.135071569,89.88757102,1.141046124,3.610979432,1.59297291,-1.59297291,0.257739278,0.190992036,1.116502205,35.91054888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.0094088,1.546852083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.808902047,34.5185855,66.81831084,36.06543759,445.2418621,0,0.618516555,51.79211379,-0.618516555,128.2078862,0.96916142,0,498.3295462,36.06543759,521.9336537,1,14,5% -1/4/2018 23:00,71.89764921,219.9967383,251.2409695,619.2679711,58.82485673,414.0982777,355.1532469,58.94503081,57.05107026,1.893960553,62.69006829,0,62.69006829,1.773786471,60.91628182,1.254850703,3.839667426,2.649152889,-2.649152889,0.077121864,0.234137198,0.555312956,17.86077355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.83965877,1.28510226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.402322347,17.16845491,55.24198112,18.45355717,355.1532469,0,0.57350495,55.00499997,-0.57350495,124.995,0.962816794,0,397.1894918,18.45355717,409.2669759,1,15,3% -1/4/2018 0:00,80.32329068,231.2753494,99.97827746,382.0754033,35.75572798,217.7808275,182.3495882,35.43123935,34.67756086,0.753678486,25.319058,0,25.319058,1.078167123,24.24089088,1.401905888,4.036516326,5.554194386,-5.554194386,0,0.357634967,0.269541781,8.669390215,0.295610699,1,0.178135666,0,0.94178284,0.980544803,0.724496596,1,33.60555095,0.781128411,0.044358257,0.312029739,0.881920763,0.606417359,0.961238037,0.922476074,0.18540677,8.333347631,33.79095772,9.114476042,128.4450989,0,0.477260736,61.49335133,-0.477260736,118.5066487,0.945235463,0,155.2018203,9.114476042,161.1670626,1,16,4% -1/4/2018 1:00,89.73022431,241.0524608,0.093913342,1.833349125,0.085281097,0.710934259,0.627516744,0.083417516,0.082709557,0.000707958,0.025341917,0,0.025341917,0.00257154,0.022770377,1.566087853,4.207159111,209.7970269,-209.7970269,0,0.908082869,0.000642885,0.020677389,0.972487603,1,0.004766476,0,0.960815058,0.999577021,0.724496596,1,0.079556792,0.001863072,0.113656543,0.312029739,0.728670561,0.453167157,0.961238037,0.922476074,0.000463578,0.019875893,0.080020371,0.021738965,0.01726449,0,0.342278912,69.98422134,-0.342278912,110.0157787,0.903920302,0,0.095626094,0.021738965,0.109853811,1,17,15% -1/4/2018 2:00,101.0093871,249.803724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76294638,4.359897468,-5.140027668,5.140027668,0.590849811,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.156270675,81.00950136,-0.156270675,98.99049864,0.730042336,0,0,0,0,1,18,0% -1/4/2018 3:00,112.3757682,258.0564845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961327155,4.50393531,-2.405123004,2.405123004,0.941453947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.044574544,92.55477976,0.044574544,87.44522024,0,0,0,0,0,1,19,0% -1/4/2018 4:00,124.0938225,266.4349787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165845784,4.650167621,-1.416975028,1.416975028,0.772470691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255082977,104.778502,0.255082977,75.22149799,0,0.853985352,0,0,0,1,20,0% -1/4/2018 5:00,135.9165434,275.8749209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372191191,4.814925693,-0.871413711,0.871413711,0.679174211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.460915784,117.4462172,0.460915784,62.55378282,0,0.941520313,0,0,0,1,21,0% -1/4/2018 6:00,147.4862275,288.2574694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574120271,5.031041934,-0.50051604,0.50051604,0.615746973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648052157,130.3949033,0.648052157,49.60509667,0,0.972845716,0,0,0,1,22,0% -1/4/2018 7:00,157.9477024,308.4440799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756707452,5.383364752,-0.211995099,0.211995099,0.566406987,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803744033,143.4891333,0.803744033,36.51086666,0,0.98779114,0,0,0,1,23,0% -1/5/2018 8:00,164.4437219,347.5896562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.870084382,6.066583946,0.036768063,-0.036768063,0.523865981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917384077,156.5465991,0.917384077,23.45340087,0,0.995497201,0,0,0,1,0,0% -1/5/2018 9:00,161.8688051,35.95779358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825143606,0.62758189,0.271335969,-0.271335969,0.483752506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981227938,168.8807536,0.981227938,11.11924638,0,0.99904344,0,0,0,1,1,0% -1/5/2018 10:00,152.7051504,63.57789562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66520766,1.10964361,0.512786517,-0.512786517,0.442462031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990921664,172.2737305,0.990921664,7.726269483,0,0.999541925,0,0,0,1,2,0% -1/5/2018 11:00,141.4898383,78.73307702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469463537,1.374151424,0.786500203,-0.786500203,0.395654233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945798391,161.0493056,0.945798391,18.95069444,0,0.997134611,0,0,0,1,3,0% -1/5/2018 12:00,129.7238001,89.23216997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264107431,1.557395165,1.136323488,-1.136323488,0.335830929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848924122,148.0948431,0.848924122,31.90515689,0,0.991101921,0,0,0,1,4,0% -1/5/2018 13:00,117.9167301,97.96229917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058035184,1.709764663,1.667003659,-1.667003659,0.245079274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706889423,134.9823905,0.706889423,45.01760953,0,0.979267579,0,0,0,1,5,0% -1/5/2018 14:00,106.3457416,106.1823801,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856083336,1.85323214,2.752052243,-2.752052243,0.059525038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529361139,121.9622997,0.529361139,58.03770031,0,0.955546523,0,0,0,1,6,0% -1/5/2018 15:00,95.25205334,114.6232832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66246195,2.000553691,7.742772304,-7.742772304,0,#DIV/0!,0,0,0.442567245,1,0.128441702,0,0.947949979,0.986711943,0.724496596,1,0,0,0.062573258,0.312029739,0.837927714,0.56242431,0.961238037,0.922476074,0,0,0,0,0,0,-0.328424568,109.1731811,0.328424568,70.82681893,0,0.89775804,0,0,0,1,7,0% -1/5/2018 16:00,84.76005988,123.8452551,32.93356966,173.442703,17.09360682,16.82643866,0,16.82643866,16.5781715,0.248267159,28.46704718,19.96648661,8.500560571,0.515435314,7.985125257,1.479342119,2.161507465,-6.432972264,6.432972264,0.369743263,0.51903292,0.173009254,5.564572336,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.93556903,0.373431131,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125344616,5.348878588,16.06091365,5.722309718,0,19.96648661,-0.115118631,96.61046757,0.115118631,83.38953243,0,0.615665441,16.06091365,18.01498551,27.85136136,1,8,73% -1/5/2018 17:00,75.65836489,134.3531621,181.9997472,532.0928822,50.19868975,97.59630501,47.5393,50.05700501,48.68501404,1.371990971,45.64162154,0,45.64162154,1.513675709,44.12794583,1.320487574,2.34490504,-1.69289093,1.69289093,0.819655089,0.27581736,1.192805309,38.36471899,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.79788732,1.096652899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864183386,36.87762717,47.6620707,37.97428006,47.5393,0,0.089343988,84.87413167,-0.089343988,95.12586833,0.490365253,0,70.97369159,37.97428006,95.82709841,1,9,35% -1/5/2018 18:00,68.12863247,146.5689486,320.2645589,681.4384348,66.41234133,255.1282905,188.3042368,66.82405373,64.4097642,2.414289525,79.65442733,0,79.65442733,2.002577126,77.6518502,1.189068951,2.558110734,-0.578637764,0.578637764,0.629106575,0.207367127,1.704531087,54.82357904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.9131153,1.450860311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23492697,52.69850949,63.14804227,54.1493698,188.3042368,0,0.276333455,73.95850488,-0.276333455,106.0414951,0.869059187,0,226.7955692,54.1493698,262.2352487,1,10,16% -1/5/2018 19:00,62.85506021,160.6419413,415.7184825,746.7809118,75.00491658,398.5895339,322.7124308,75.87710312,72.7432416,3.133861521,103.0574341,0,103.0574341,2.261674973,100.7957591,1.097027752,2.803730792,0.021851776,-0.021851776,0.526416816,0.180422377,1.917490212,61.67307655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.92357075,1.638575819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.389215131,59.28250703,71.31278588,60.92108285,322.7124308,0,0.432138028,64.3966785,-0.432138028,115.6033215,0.934296228,0,372.8217926,60.92108285,412.6934229,1,11,11% -1/5/2018 20:00,60.46159571,176.1420794,458.0063055,769.9233591,78.42882889,499.8980227,420.3814674,79.51655532,76.06391033,3.452644993,113.4138499,0,113.4138499,2.364918563,111.0489314,1.055253916,3.074259237,0.490631425,-0.490631425,0.446250774,0.171239627,1.868138458,60.08575448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.11552384,1.713375448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353459953,57.75671268,74.46898379,59.47008813,420.3814674,0,0.546004303,56.90667904,-0.546004303,123.093321,0.95842563,0,477.3733566,59.47008813,516.2953399,1,12,8% -1/5/2018 21:00,61.2965063,191.9684037,443.3434767,762.2278023,77.26300828,543.3438958,465.0685419,78.27535391,74.93324351,3.342110396,109.8235235,0,109.8235235,2.32976477,107.4937588,1.069825855,3.350480705,0.96692301,-0.96692301,0.364800116,0.174273475,1.589168839,51.1131326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.02868389,1.687906645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.151347414,49.13188724,73.1800313,50.81979389,465.0685419,0,0.610143766,52.40010109,-0.610143766,127.5998989,0.968052101,0,523.3906102,50.81979389,556.6511489,1,13,6% -1/5/2018 22:00,65.23289351,206.8381713,373.0076166,720.1109939,71.33089992,518.6023433,446.6104442,71.99189907,69.1800101,2.811888973,92.590905,0,92.590905,2.150889815,90.44001519,1.138528772,3.610007109,1.581002405,-1.581002405,0.259786355,0.191231752,1.128519885,36.29707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.4984571,1.558312349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817608815,34.89013272,67.31606591,36.44844507,446.6104442,0,0.620196675,51.66950183,-0.620196675,128.3304982,0.969380413,0,500.2514826,36.44844507,524.106261,1,14,5% -1/5/2018 23:00,71.74654157,219.9725714,253.7246369,620.474417,59.37893841,416.6135126,357.1123847,59.50112782,57.58844433,1.912683487,63.30896982,0,63.30896982,1.790494078,61.51847574,1.252213377,3.839245635,2.625045718,-2.625045718,0.081244433,0.234029061,0.566651486,18.22545965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.35620318,1.297206865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410537073,17.51900505,55.76674025,18.81621192,357.1123847,0,0.575547315,54.86202998,-0.575547315,125.13797,0.963126169,0,399.7110234,18.81621192,412.0258577,1,15,3% -1/5/2018 0:00,80.17116955,231.2753255,102.3256649,386.1484389,36.40807162,221.268301,185.186693,36.08160802,35.31023393,0.771374085,25.90787984,0,25.90787984,1.097837691,24.81004215,1.399250874,4.036515909,5.46656136,-5.46656136,0,0.355805864,0.274459423,8.827558483,0.288095789,1,0.180929871,0,0.941419591,0.980181554,0.724496596,1,34.21612499,0.79537967,0.043366299,0.312029739,0.884392027,0.608888623,0.961238037,0.922476074,0.18889944,8.485384986,34.40502443,9.280764656,131.8351866,0,0.479573849,61.3424269,-0.479573849,118.6575731,0.94574077,0,159.0869354,9.280764656,165.1610103,1,16,4% -1/5/2018 1:00,89.60098229,241.0703508,0.166578814,2.417409262,0.149743695,0.979065687,0.832581576,0.146484111,0.14522837,0.001255741,0.044904287,0,0.044904287,0.004515325,0.040388962,1.563832154,4.207471351,141.849397,-141.849397,0,0.89893601,0.001128831,0.036307092,0.959559231,1,0.007049614,0,0.960610504,0.999372468,0.724496596,1,0.139735552,0.003271338,0.11262393,0.312029739,0.730671694,0.45516829,0.961238037,0.922476074,0.000812228,0.034899758,0.14054778,0.038171096,0.033670239,0,0.344410683,69.85417415,-0.344410683,110.1458258,0.90482448,0,0.171013437,0.038171096,0.195995656,1,17,15% -1/5/2018 2:00,100.8587585,249.8355312,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760317416,4.360452608,-5.213110692,5.213110692,0.578351877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158867383,80.85883882,-0.158867383,99.14116118,0.735272085,0,0,0,0,1,18,0% -1/5/2018 3:00,112.2271471,258.1001708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958733228,4.504697781,-2.42269599,2.42269599,0.944459104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.042019956,92.40827522,0.042019956,87.59172478,0,0,0,0,0,1,19,0% -1/5/2018 4:00,123.946439,266.4897092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163273457,4.651122848,-1.424454869,1.424454869,0.773749819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.252684194,104.636406,0.252684194,75.36359399,0,0.852124545,0,0,0,1,20,0% -1/5/2018 5:00,135.7688013,275.9392764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369612604,4.816048909,-0.875443561,0.875443561,0.679863356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.458775583,117.3081263,0.458775583,62.69187368,0,0.941014252,0,0,0,1,21,0% -1/5/2018 6:00,147.3355959,288.3219452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571491254,5.032167249,-0.502977023,0.502977023,0.616167826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.646255354,130.259863,0.646255354,49.74013703,0,0.972631202,0,0,0,1,22,0% -1/5/2018 7:00,157.7929473,308.4501006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754006467,5.383469834,-0.213605809,0.213605809,0.566682434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802351663,143.3552601,0.802351663,36.6447399,0,0.987683185,0,0,0,1,23,0% -1/6/2018 8:00,164.3100537,347.2985568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86775143,6.061503303,0.035685176,-0.035685176,0.524051165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916429214,156.4095167,0.916429214,23.59048327,0,0.995440412,0,0,0,1,0,0% -1/6/2018 9:00,161.8181703,35.48715831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824259861,0.619367755,0.270627625,-0.270627625,0.48387364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980713431,168.728918,0.980713431,11.27108197,0,0.999016707,0,0,0,1,1,0% -1/6/2018 10:00,152.7072468,63.23916161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665244249,1.103731586,0.512390315,-0.512390315,0.442529785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.99081995,172.230502,0.99081995,7.769498012,0,0.999536745,0,0,0,1,2,0% -1/6/2018 11:00,141.5108189,78.48551289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469829717,1.369830615,0.786423564,-0.786423564,0.395667339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946053397,161.0943473,0.946053397,18.90565274,0,0.997148861,0,0,0,1,3,0% -1/6/2018 12:00,129.7493889,89.03241804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264554038,1.553908836,1.136665512,-1.136665512,0.335772439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849455123,148.152455,0.849455123,31.84754504,0,0.991138739,0,0,0,1,4,0% -1/6/2018 13:00,117.9397589,97.78776591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058437112,1.706718483,1.668070718,-1.668070718,0.244896797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707596591,135.0397023,0.707596591,44.96029766,0,0.979338269,0,0,0,1,5,0% -1/6/2018 14:00,106.3613862,106.0205085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856356386,1.850406947,2.754942387,-2.754942387,0.059030795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530132405,122.0144013,0.530132405,57.98559866,0,0.955683939,0,0,0,1,6,0% -1/6/2018 15:00,95.2560984,114.4663751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66253255,1.997815128,7.757661821,-7.757661821,0,#DIV/0!,0,0,0.443357326,1,0.128197875,0,0.947978857,0.98674082,0.724496596,1,0,0,0.062665466,0.312029739,0.837711714,0.56220831,0.961238037,0.922476074,0,0,0,0,0,0,-0.329143319,109.2167867,0.329143319,70.78321327,0,0.898090491,0,0,0,1,7,0% -1/6/2018 16:00,84.74843366,123.6885977,32.95639302,172.548032,17.16327151,16.89417476,0,16.89417476,16.64573555,0.248439211,28.46788691,19.9596919,8.508195006,0.517535962,7.990659044,1.479139203,2.158773278,-6.442645278,6.442645278,0.36808908,0.520787317,0.173206917,5.570929851,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.00051416,0.374953042,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.125487822,5.354989673,16.12600198,5.729942716,0,19.9596919,-0.115676149,96.64262583,0.115676149,83.35737417,0,0.617758779,16.12600198,18.06021761,27.9460532,1,8,73% -1/6/2018 17:00,75.6259262,134.1950041,182.3177854,531.109529,50.46900553,97.62020171,47.29863443,50.32156728,48.94717881,1.374388477,45.72688459,0,45.72688459,1.521826728,44.20505786,1.319921412,2.342144661,-1.698609499,1.698609499,0.820633022,0.276818882,1.196109935,38.4710071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.04989006,1.102558284,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866577576,36.97979534,47.91646764,38.08235363,47.29863443,0,0.089056272,84.89068258,-0.089056272,95.10931742,0.488557228,0,71.02455735,38.08235363,95.94869615,1,9,35% -1/6/2018 18:00,68.07081807,146.4118636,321.0034229,680.7081191,66.78596418,255.3378939,188.1459135,67.19198034,64.77212095,2.419859394,79.84483956,0,79.84483956,2.013843234,77.83099633,1.1880599,2.555369083,-0.583574701,0.583574701,0.629950841,0.208053745,1.710697709,55.02191882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.26142638,1.459022568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239394667,52.88916123,63.50082105,54.3481838,188.1459135,0,0.27639734,73.95469617,-0.27639734,106.0453038,0.869101009,0,227.0186243,54.3481838,262.5884236,1,10,16% -1/6/2018 19:00,62.76871948,160.4945602,416.9168759,746.2591385,75.44105666,399.1503488,322.8412228,76.30912597,73.16623045,3.142895517,103.3611497,0,103.3611497,2.274826206,101.0863235,1.095520822,2.801158507,0.01677274,-0.01677274,0.527285382,0.180949875,1.926038764,61.94802736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33016372,1.648103843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395408528,59.5468002,71.72557225,61.19490405,322.8412228,0,0.432612756,64.36651314,-0.432612756,115.6334869,0.934423195,0,373.3958993,61.19490405,413.4467401,1,11,11% -1/6/2018 20:00,60.3473581,176.0179794,459.657723,769.5949041,78.907934,500.9014413,420.9077785,79.99366273,76.52856865,3.465094076,113.828702,0,113.828702,2.379365349,111.4493367,1.053260094,3.072093283,0.484703006,-0.484703006,0.447264594,0.171666721,1.878603763,60.42235467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.56217109,1.723842096,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361042031,58.08026558,74.92321312,59.80410768,420.9077785,0,0.546921213,56.84394936,-0.546921213,123.1560506,0.958579154,0,478.3966354,59.80410768,517.5372278,1,12,8% -1/6/2018 21:00,61.1599487,191.8793378,445.403572,762.1397942,77.77315779,544.8371022,466.0514518,78.7856504,75.42801013,3.357640265,110.3384004,0,110.3384004,2.34514766,107.9932527,1.067442475,3.348926211,0.959080125,-0.959080125,0.366141329,0.174612784,1.600993913,51.49346763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50427238,1.699051496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15991464,49.49747973,73.66418702,51.19653123,466.0514518,0,0.611503894,52.30167611,-0.611503894,127.6983239,0.968234372,0,524.9112217,51.19653123,558.4183274,1,13,6% -1/6/2018 22:00,65.08248889,206.7869873,375.3948084,720.4371532,71.86526259,520.6187215,448.0905771,72.5281444,69.69825977,2.829884633,93.18582029,0,93.18582029,2.167002822,91.01881747,1.135903717,3.609113779,1.568837809,-1.568837809,0.261866623,0.191439149,1.140936611,36.69644335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99661839,1.569986167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.826604691,35.27401717,67.82322308,36.84400334,448.0905771,0,0.62197039,51.53983401,-0.62197039,128.460166,0.969610321,0,502.2964714,36.84400334,526.4101347,1,14,5% -1/6/2018 23:00,71.59013487,219.9539423,256.3045631,621.7633251,59.9439897,419.2458845,359.1772952,60.0685893,58.13645724,1.93213206,63.95154117,0,63.95154117,1.807532459,62.14400871,1.249483565,3.838920496,2.600664206,-2.600664206,0.085413917,0.233877965,0.578316976,18.60066189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.88297403,1.309551114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.41898868,17.87966372,56.30196271,19.18921484,359.1772952,0,0.577675268,54.71280109,-0.577675268,125.2871989,0.963446182,0,402.3499564,19.18921484,414.9089138,1,15,3% -1/6/2018 0:00,80.01458792,231.2814184,104.7557819,390.3219609,37.07495586,224.8673673,188.1206648,36.74670249,35.95700915,0.789693333,26.51719885,0,26.51719885,1.117946711,25.39925214,1.396518009,4.03662225,5.379315057,-5.379315057,0,0.353917991,0.279486678,8.989252288,0.280453043,1,0.183799207,0,0.941044767,0.979806731,0.724496596,1,34.84003415,0.809948587,0.04235103,0.312029739,0.886929421,0.611426017,0.961238037,0.922476074,0.192480179,8.640811222,35.03251433,9.450759809,135.361652,0,0.481962799,61.18632583,-0.481962799,118.8136742,0.946257553,0,163.1195,9.450759809,169.3048333,1,16,4% -1/6/2018 1:00,89.46740452,241.0947402,0.265086942,3.161149751,0.235702757,1.326303757,1.095709971,0.230593786,0.228595449,0.001998337,0.071380706,0,0.071380706,0.007107308,0.064273398,1.561500782,4.207897026,106.278571,-106.278571,0,0.889152648,0.001776827,0.057148862,0.94636503,1,0.009408957,0,0.960397801,0.999159764,0.724496596,1,0.220017816,0.00514922,0.111560879,0.312029739,0.73274079,0.457237386,0.961238037,0.922476074,0.001275698,0.05493366,0.221293514,0.06008288,0.058768371,0,0.346617547,69.71943186,-0.346617547,110.2805681,0.905748791,0,0.274522895,0.06008288,0.313845938,1,17,14% -1/6/2018 2:00,100.7049662,249.8742233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757633233,4.361127913,-5.289824476,5.289824476,0.565233048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.161517474,80.70501319,-0.161517474,99.29498681,0.740435971,0,0,0,0,1,18,0% -1/6/2018 3:00,112.0757656,258.1512879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956091121,4.505589943,-2.440783806,2.440783806,0.947552303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039423081,92.25936164,0.039423081,87.74063836,0,0,0,0,0,1,19,0% -1/6/2018 4:00,123.7965045,266.5527384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160656605,4.652222915,-1.432065692,1.432065692,0.775051346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25025309,104.4924893,0.25025309,75.50751072,0,0.850202268,0,0,0,1,20,0% -1/6/2018 5:00,135.618458,276.0133549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366988618,4.817341822,-0.879497099,0.879497099,0.680556551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456611214,117.1686506,0.456611214,62.83134944,0,0.940497652,0,0,0,1,21,0% -1/6/2018 6:00,147.1818854,288.3985194,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568808499,5.033503722,-0.505417069,0.505417069,0.616585099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644440158,130.1237134,0.644440158,49.87628658,0,0.972413277,0,0,0,1,22,0% -1/6/2018 7:00,157.6337764,308.4719371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75122841,5.383850953,-0.215169925,0.215169925,0.566949914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800943904,143.2203334,0.800943904,36.77966664,0,0.987573656,0,0,0,1,23,0% -1/7/2018 8:00,164.1691149,347.0229849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.865291586,6.056693666,0.034669413,-0.034669413,0.524224871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915458987,156.2709935,0.915458987,23.72900646,0,0.995382589,0,0,0,1,0,0% -1/7/2018 9:00,161.7592512,35.01193932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823231529,0.611073619,0.270008582,-0.270008582,0.483979503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980180603,168.5737754,0.980180603,11.42622459,0,0.998988993,0,0,0,1,1,0% -1/7/2018 10:00,152.7025865,62.89046222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665162911,1.097645634,0.51211335,-0.51211335,0.442577149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990694185,172.1773804,0.990694185,7.822619616,0,0.999530339,0,0,0,1,2,0% -1/7/2018 11:00,141.525956,78.22926865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470093908,1.365358309,0.786513736,-0.786513736,0.395651919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946276242,161.1337933,0.946276242,18.86620671,0,0.997161307,0,0,0,1,3,0% -1/7/2018 12:00,129.7694881,88.82545444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264904836,1.55029664,1.137262725,-1.137262725,0.335670309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849944034,148.2055827,0.849944034,31.79441727,0,0.991172597,0,0,0,1,4,0% -1/7/2018 13:00,117.9573432,97.60709806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058744016,1.703565234,1.669596079,-1.669596079,0.244635944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708250605,135.0927574,0.708250605,44.90724258,0,0.97940352,0,0,0,1,5,0% -1/7/2018 14:00,106.3714441,105.8532879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856531929,1.847488398,2.758984798,-2.758984798,0.058339502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53083908,122.0621656,0.53083908,57.93783439,0,0.955809497,0,0,0,1,6,0% -1/7/2018 15:00,95.25428606,114.3047486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662500918,1.994994214,7.781809069,-7.781809069,0,#DIV/0!,0,0,0.444633897,1,0.127804396,0,0.948025431,0.986787394,0.724496596,1,0,0,0.062814328,0.312029739,0.837363141,0.561859737,0.961238037,0.922476074,0,0,0,0,0,0,-0.32978646,109.255815,0.32978646,70.74418501,0,0.898386741,0,0,0,1,7,0% -1/7/2018 16:00,84.73073254,123.5278284,33.05501679,171.971828,17.26172888,16.99040674,0,16.99040674,16.74122406,0.249182679,28.5097059,19.97462957,8.535076334,0.520504815,8.014571519,1.47883026,2.155967323,-6.445371749,6.445371749,0.367622826,0.522212074,0.173894082,5.59303142,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.09230135,0.377103966,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.12598567,5.376234543,16.21828702,5.753338509,0,19.97462957,-0.116150592,96.66999385,0.116150592,83.33000615,0,0.619524362,16.21828702,18.12810816,28.08277125,1,8,73% -1/7/2018 17:00,75.58688133,134.0334634,182.7557235,530.3061505,50.75634393,97.72735113,47.12380839,50.60354273,49.22585289,1.37768984,45.84173208,0,45.84173208,1.530491041,44.31124104,1.319239951,2.339325244,-1.703678587,1.703678587,0.821499887,0.277727794,1.200070254,38.59838458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.3177622,1.108835549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869446814,37.10223542,48.18720901,38.21107097,47.12380839,0,0.088861516,84.90188568,-0.088861516,95.09811432,0.487326727,0,71.1519003,38.21107097,96.16028203,1,9,35% -1/7/2018 18:00,68.00598458,146.2524239,321.8703534,680.0848694,67.17194138,255.6571275,188.0842733,67.5728542,65.14645951,2.426394683,80.06667554,0,80.06667554,2.025481871,78.04119367,1.186928342,2.552586336,-0.58836845,0.58836845,0.63077062,0.208692539,1.717465333,55.23958886,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62125485,1.46745472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244297787,53.09839395,63.86555264,54.56584867,188.0842733,0,0.276560003,73.94499827,-0.276560003,106.0550017,0.869207407,0,227.3497962,54.56584867,263.0620528,1,10,16% -1/7/2018 19:00,62.67509277,160.3463066,418.2437543,745.8153906,75.88778623,399.8314967,323.0791092,76.75238757,73.59948948,3.152898086,103.6963372,0,103.6963372,2.288296751,101.4080405,1.093886728,2.798570993,0.011697852,-0.011697852,0.528153239,0.18144392,1.935144689,62.24090523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.74662878,1.657863206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.40200574,59.82832555,72.14863452,61.48618876,323.0791092,0,0.433189115,64.32987967,-0.433189115,115.6701203,0.934576971,0,374.0909296,61.48618876,414.3324104,1,11,11% -1/7/2018 20:00,60.22586197,175.8949162,461.4336487,769.3324775,79.39681799,502.0289051,421.5477124,80.48119274,77.00271099,3.478481754,114.2740374,0,114.2740374,2.394107006,111.8799304,1.051139586,3.069945425,0.478711674,-0.478711674,0.448289172,0.172065514,1.889579395,60.77536873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01793474,1.734522376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368993839,58.41959612,75.38692858,60.1541185,421.5477124,0,0.547939577,56.77422614,-0.547939577,123.2257739,0.958749063,0,479.5454027,60.1541185,518.9150702,1,12,8% -1/7/2018 21:00,61.01655136,191.7932897,447.5808009,762.114849,78.29275898,546.453673,467.1476765,79.30599656,75.93194342,3.374053136,110.8819627,0,110.8819627,2.360815553,108.5211471,1.064939719,3.347424389,0.951121714,-0.951121714,0.367502297,0.174924302,1.613274882,51.88846579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.98867223,1.710402831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16881216,49.877167,74.15748439,51.58756983,467.1476765,0,0.612962308,52.19599332,-0.612962308,127.8040067,0.968428916,0,526.5568022,51.58756983,560.3198349,1,13,6% -1/7/2018 22:00,64.92598927,206.740401,377.8889709,720.830419,72.40924622,522.7548205,449.6802935,73.07452697,70.22584029,2.848686684,93.80696198,0,93.80696198,2.183405935,91.62355605,1.133172283,3.608300694,1.556497982,-1.556497982,0.263976858,0.191615135,1.153746685,37.10845936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.50374885,1.581870167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.835885546,35.67006262,68.3396344,37.25193279,449.6802935,0,0.623836455,51.40316276,-0.623836455,128.5968372,0.969850789,0,504.4624217,37.25193279,528.8430666,1,14,5% -1/7/2018 23:00,71.42851716,219.9409078,258.9789915,623.1303371,60.51973835,421.9924956,361.3453576,60.64713798,58.69484495,1.952293031,64.61734825,0,64.61734825,1.824893405,62.79245485,1.246662804,3.838693,2.576049349,-2.576049349,0.089623306,0.233685899,0.590306062,18.98627211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41971753,1.32212906,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427674732,18.25032693,56.84739226,19.57245599,361.3453576,0,0.579887282,54.55738494,-0.579887282,125.4426151,0.963776347,0,405.1035009,19.57245599,417.9132819,1,15,3% -1/7/2018 0:00,79.85363949,231.2936652,107.2674875,394.5869204,37.75576418,228.5740344,191.1481182,37.42591622,36.61728859,0.808627631,27.14671985,0,27.14671985,1.138475594,26.00824425,1.393708929,4.036835997,5.292601031,-5.292601031,0,0.351977706,0.284618898,9.154322147,0.272692569,1,0.186741592,0,0.940658503,0.979420466,0.724496596,1,35.47667348,0.824821692,0.041313418,0.312029739,0.889531072,0.614027668,0.961238037,0.922476074,0.196146651,8.799482649,35.67282013,9.624304341,139.0234467,0,0.484425885,61.02513519,-0.484425885,118.9748648,0.946785037,0,167.2981392,9.624304341,173.5970539,1,16,4% -1/7/2018 1:00,89.32944531,241.1256458,0.395408044,4.096264308,0.347468971,1.769158946,1.429186693,0.339972253,0.3369915,0.002980753,0.10634873,0,0.10634873,0.010477472,0.095871258,1.55909294,4.20843643,84.41862944,-84.41862944,0,0.878760502,0.002619368,0.084247875,0.932914191,1,0.011845173,0,0.960176756,0.99893872,0.724496596,1,0.324447711,0.007590892,0.110467455,0.312029739,0.734878506,0.459375102,0.961238037,0.922476074,0.001876505,0.080982262,0.326324216,0.088573154,0.095878146,0,0.348900019,69.57994991,-0.348900019,110.4200501,0.90669247,0,0.413256208,0.088573154,0.471225566,1,17,14% -1/7/2018 2:00,100.5481073,249.9197971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75489553,4.361923325,-5.370343274,5.370343274,0.551463522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164219102,80.54812648,-0.164219102,99.45187352,0.745528721,0,0,0,0,1,18,0% -1/7/2018 3:00,111.921717,258.2098116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953402466,4.506611373,-2.459390878,2.459390878,0.9507343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036785657,92.10813855,0.036785657,87.89186145,0,0,0,0,0,1,19,0% -1/7/2018 4:00,123.6441066,266.6240164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15799676,4.653466951,-1.439805205,1.439805205,0.776374881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.2477912,104.3468452,0.2477912,75.65315484,0,0.848217208,0,0,0,1,20,0% -1/7/2018 5:00,135.4655952,276.0970677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364320659,4.818802887,-0.88357201,0.88357201,0.681253402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454423918,117.0278742,0.454423918,62.9721258,0,0.93997058,0,0,0,1,21,0% -1/7/2018 6:00,147.0251741,288.4870349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566073372,5.035048608,-0.507834327,0.507834327,0.616998474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642607456,129.9865268,0.642607456,50.01347316,0,0.972192001,0,0,0,1,22,0% -1/7/2018 7:00,157.4702805,308.5093297,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748374869,5.384503576,-0.216685985,0.216685985,0.567209175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799521245,143.0844089,0.799521245,36.91559111,0,0.987462575,0,0,0,1,23,0% -1/8/2018 8:00,164.0210256,346.7631608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862706939,6.052158881,0.03372195,-0.03372195,0.524386897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914473471,156.1310633,0.914473471,23.86893666,0,0.995323728,0,0,0,1,0,0% -1/8/2018 9:00,161.6920126,34.5330959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822057994,0.602716224,0.269479818,-0.269479818,0.484069927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979629136,168.4153646,0.979629136,11.58463538,0,0.998960277,0,0,0,1,1,0% -1/8/2018 10:00,152.6910672,62.53224456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664961861,1.091393556,0.511956465,-0.511956465,0.442603978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990543695,172.1142826,0.990543695,7.885717355,0,0.999522671,0,0,0,1,2,0% -1/8/2018 11:00,141.5351526,77.96458139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470254421,1.360738645,0.786771498,-0.786771498,0.395607839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946465964,161.1674388,0.946465964,18.83256117,0,0.997171899,0,0,0,1,3,0% -1/8/2018 12:00,129.7840158,88.61144102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265158391,1.546561401,1.138115985,-1.138115985,0.335524394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850389689,148.2540794,0.850389689,31.74592056,0,0.991203426,0,0,0,1,4,0% -1/8/2018 13:00,117.9694163,97.42042454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058954731,1.700307167,1.671581179,-1.671581179,0.244296472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708850197,135.141441,0.708850197,44.85855898,0,0.979463235,0,0,0,1,5,0% -1/8/2018 14:00,106.3758639,105.6808306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856609071,1.844478451,2.764184862,-2.764184862,0.057450238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531479903,122.1055005,0.531479903,57.89449948,0,0.955923065,0,0,0,1,6,0% -1/8/2018 15:00,95.24658107,114.1385063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662366441,1.992092738,7.815338533,-7.815338533,0,#DIV/0!,0,0,0.446396792,1,0.127262001,0,0.948089572,0.986851535,0.724496596,1,0,0,0.063019653,0.312029739,0.836882643,0.561379239,0.961238037,0.922476074,0,0,0,0,0,0,-0.330352844,109.2901931,0.330352844,70.70980691,0,0.898646679,0,0,0,1,7,0% -1/8/2018 16:00,84.70693626,123.3630427,33.22974127,171.7112787,17.3893683,17.11551451,0,17.11551451,16.86501468,0.250499826,28.5926934,20.0114043,8.581289107,0.524353614,8.056935492,1.478414937,2.15309127,-6.441167715,6.441167715,0.368341758,0.523307364,0.175072617,5.630937165,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.21129361,0.379892408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.126839515,5.412670986,16.33813312,5.792563394,0,20.0114043,-0.116541001,96.69251561,0.116541001,83.30748439,0,0.620966445,16.33813312,18.21897397,28.26208721,1,8,73% -1/8/2018 17:00,75.54122856,133.8686296,183.3135175,529.6816065,51.06087377,97.91782252,47.01472777,50.90309476,49.52120003,1.381894727,45.98615838,0,45.98615838,1.539673739,44.44648464,1.318443159,2.336448351,-1.708088988,1.708088988,0.82225411,0.278543964,1.204686288,38.74685211,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.6016611,1.115488382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872791115,37.24494805,48.47445222,38.36043644,47.01472777,0,0.088760356,84.90770472,-0.088760356,95.09229528,0.486685448,0,71.35583605,38.36043644,96.46197449,1,9,35% -1/8/2018 18:00,67.93414759,146.0907128,322.8648846,679.5677134,67.57032504,256.0858169,188.1190945,67.96672232,65.53283044,2.433891879,80.31982389,0,80.31982389,2.037494608,78.28232928,1.18567455,2.549763946,-0.593011468,0.593011468,0.631564623,0.209283599,1.724831281,55.47650306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.99264928,1.476157908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.249634391,53.3261249,64.24228367,54.8022828,188.1190945,0,0.276821707,73.92939452,-0.276821707,106.0706055,0.869378327,0,227.7889473,54.8022828,263.6559453,1,10,16% -1/8/2018 19:00,62.57421218,160.1972594,419.6982195,745.448606,76.34509234,400.6323896,323.425521,77.20686858,74.04300612,3.16386246,104.0627786,0,104.0627786,2.302086217,101.7606924,1.092126029,2.79596963,0.006634562,-0.006634562,0.529019113,0.181904732,1.944803363,62.55156138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17295384,1.667853628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409003416,60.12694006,72.58195726,61.79479369,323.425521,0,0.433866961,64.28678128,-0.433866961,115.7132187,0.9347573,0,374.9063241,61.79479369,415.3497806,1,11,11% -1/8/2018 20:00,60.09715568,175.7729691,463.3327839,769.1347944,79.8954193,503.2793258,422.3002499,80.97907586,77.48627763,3.492798237,114.7495394,0,114.7495394,2.409141675,112.3403977,1.048893238,3.067817046,0.472666059,-0.472666059,0.449323033,0.172436361,1.901059405,61.14460532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48275739,1.745414942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.377311068,58.77452038,75.86006846,60.51993532,422.3002499,0,0.549058829,56.69753133,-0.549058829,123.3024687,0.958935077,0,480.8185912,60.51993532,520.4276784,1,12,8% -1/8/2018 21:00,60.86637949,191.71034,449.8735329,762.1512606,78.82170358,548.1919711,468.355696,79.83627512,76.4449384,3.391336718,111.4538117,0,111.4538117,2.376765184,109.0770465,1.062318726,3.345976643,0.943059418,-0.943059418,0.368881031,0.175208582,1.626005183,52.29791605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.48178251,1.721958285,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17803522,50.27074615,74.65981773,51.99270444,468.355696,0,0.614518036,52.08309171,-0.614518036,127.9169083,0.968635423,0,528.3257355,51.99270444,562.3539207,1,13,6% -1/8/2018 22:00,64.76347604,206.6984863,380.4882543,721.2882502,72.96268167,525.0083961,451.3775274,73.63086879,70.76258761,2.86828118,94.45387645,0,94.45387645,2.200094056,92.25378239,1.130335892,3.607569145,1.544001788,-1.544001788,0.266113833,0.191760668,1.166943948,37.5329287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0196908,1.593960654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.845446918,36.0780787,68.86513772,37.67203936,451.3775274,0,0.62579354,51.2595451,-0.62579354,128.7404549,0.970101444,0,506.7471289,37.67203936,531.4027252,1,14,5% -1/8/2018 23:00,71.26178205,219.9335256,261.7460534,624.5710369,61.10589557,424.8503319,363.6138522,61.23647967,59.26332736,1.973152313,65.30592925,0,65.30592925,1.842568208,63.46336104,1.243752728,3.838564157,2.551241403,-2.551241403,0.093865714,0.233454888,0.602614908,19.38216692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.96616445,1.334934394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.43659245,18.63087608,57.4027569,19.96581048,363.6138522,0,0.582181739,54.39585872,-0.582181739,125.6041413,0.964116166,0,407.9687499,19.96581048,421.0359735,1,15,3% -1/8/2018 0:00,79.68842342,231.3121026,109.859502,398.9342969,38.44986196,232.3841903,194.2655662,38.11862409,37.29045676,0.828167331,27.79611337,0,27.79611337,1.159405203,26.63670817,1.390825364,4.03715779,5.206553953,-5.206553953,0,0.349991228,0.289851301,9.32261419,0.264824524,1,0.189754836,0,0.940260948,0.979022911,0.724496596,1,36.12542059,0.839985123,0.040254462,0.312029739,0.892195013,0.616691609,0.961238037,0.922476074,0.199896433,8.961251363,36.32531702,9.801236486,142.8192801,0,0.486961306,60.85894806,-0.486961306,119.1410519,0.947322437,0,171.6212255,9.801236486,178.0359388,1,16,4% -1/8/2018 1:00,89.18710369,241.1630825,0.564104898,5.256501261,0.489529647,2.325408369,1.846387387,0.479020983,0.474768522,0.004252461,0.151534888,0,0.151534888,0.014761125,0.136773763,1.55660861,4.209089825,69.64216276,-69.64216276,0,0.867798966,0.003690281,0.11869213,0.919220364,1,0.014358131,0,0.95994725,0.998709213,0.724496596,1,0.457239321,0.010694385,0.109344087,0.312029739,0.737084795,0.461581391,0.961238037,0.922476074,0.002637923,0.11409139,0.459877244,0.124785775,0.149150501,0,0.35125786,69.43572921,-0.35125786,110.5642708,0.907654431,0,0.595254357,0.124785775,0.676924152,1,17,14% -1/8/2018 2:00,100.3882835,249.9722468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752106077,4.362838745,-5.454853098,5.454853098,0.537011491,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.166970332,80.38828576,-0.166970332,99.61171424,0.750545604,0,0,0,0,1,18,0% -1/8/2018 3:00,111.7650981,258.2757144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950668951,4.507761594,-2.478521297,2.478521297,0.954005794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.034109503,91.95470974,0.034109503,88.04529026,0,0,0,0,0,1,19,0% -1/8/2018 4:00,123.4893359,266.7034894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155295502,4.654854017,-1.447670851,1.447670851,0.777719986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245300119,104.1995705,0.245300119,75.80042947,0,0.846168057,0,0,0,1,20,0% -1/8/2018 5:00,135.3102964,276.1903219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361610185,4.820430479,-0.887665831,0.887665831,0.681953487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452214986,116.8858842,0.452214986,63.11411579,0,0.93943312,0,0,0,1,21,0% -1/8/2018 6:00,146.8655415,288.5873282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563287257,5.036799056,-0.510226861,0.510226861,0.617407622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640758164,129.8483771,0.640758164,50.15162286,0,0.97196744,0,0,0,1,22,0% -1/8/2018 7:00,157.3025512,308.5620065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.74544744,5.385422961,-0.218152477,0.218152477,0.56745996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798084188,142.9475432,0.798084188,37.05245678,0,0.987349968,0,0,0,1,23,0% -1/9/2018 8:00,163.8659091,346.5192554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.859999646,6.047901929,0.032844,-0.032844,0.524537035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913472745,155.9897592,0.913472745,24.01024076,0,0.995263829,0,0,0,1,0,0% -1/9/2018 9:00,161.6164279,34.05159827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820738793,0.594312505,0.269042336,-0.269042336,0.48414474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979058696,168.253721,0.979058696,11.746279,0,0.998930539,0,0,0,1,1,0% -1/9/2018 10:00,152.6725893,62.16498216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66463936,1.084983618,0.511920532,-0.511920532,0.442610123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990367781,172.0411553,0.990367781,7.958844748,0,0.999513705,0,0,0,1,2,0% -1/9/2018 11:00,141.5383126,77.69170466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470309573,1.355976048,0.787197681,-0.787197681,0.395534958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946621568,161.1950772,0.946621568,18.80492278,0,0.997180582,0,0,0,1,3,0% -1/9/2018 12:00,129.7928898,88.39055048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265313273,1.542706134,1.139226268,-1.139226268,0.335334524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85079089,148.2977954,0.85079089,31.70220455,0,0.991231153,0,0,0,1,4,0% -1/9/2018 13:00,117.9759117,97.22788223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059068097,1.69694667,1.674027844,-1.674027844,0.243878068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709394069,135.1856365,0.709394069,44.8143635,0,0.979517313,0,0,0,1,5,0% -1/9/2018 14:00,106.3745952,105.503255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856586928,1.841379171,2.770550027,-2.770550027,0.056361731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532053589,122.1443129,0.532053589,57.85568712,0,0.956024504,0,0,0,1,6,0% -1/9/2018 15:00,95.23294924,113.9677557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662128521,1.989112578,7.858436857,-7.858436857,0,#DIV/0!,0,0,0.44864642,1,0.126571504,0,0.94817113,0.986933093,0.724496596,1,0,0,0.063281253,0.312029739,0.836270939,0.560767535,0.961238037,0.922476074,0,0,0,0,0,0,-0.330841313,109.3198477,0.330841313,70.6801523,0,0.898870144,0,0,0,1,7,0% -1/9/2018 16:00,84.67702532,123.1943407,33.48104073,171.7635666,17.54656049,17.26986118,0,17.26986118,17.01746695,0.252394227,28.71691494,20.06995545,8.646959493,0.529093539,8.117865955,1.477892893,2.150146866,-6.430096694,6.430096694,0.370235014,0.524074524,0.176746327,5.684769424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.35783652,0.383326468,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.128052112,5.464416601,16.48588864,5.847743069,0,20.06995545,-0.116846406,96.7101344,0.116846406,83.2898656,0,0.622087823,16.48588864,18.33301796,28.48448223,1,8,73% -1/9/2018 17:00,75.4889681,133.700596,183.9911047,529.2344227,51.3827357,98.19172066,46.97136136,51.2203593,49.83335664,1.387002666,46.16015258,0,46.16015258,1.549379064,44.61077352,1.317531042,2.333515612,-1.711833335,1.711833335,0.822894431,0.279267499,1.209957684,38.91639833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.90171791,1.122519857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876610223,37.40792233,48.77832813,38.53044219,46.97136136,0,0.088753413,84.90810408,-0.088753413,95.09189592,0.486641384,0,71.63653642,38.53044219,96.85394022,1,9,35% -1/9/2018 18:00,67.85532525,145.9268174,323.9864947,679.1554977,67.98115054,256.6237619,188.2501469,68.37361508,65.93126803,2.44234705,80.60415915,0,80.60415915,2.049882513,78.55427664,1.184298841,2.546903431,-0.59749649,0.59749649,0.632331607,0.209827112,1.732792488,55.73256284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.37564265,1.485132902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.255402259,53.57225929,64.63104491,55.05739219,188.2501469,0,0.277182689,73.90786952,-0.277182689,106.0921305,0.869613554,0,228.3359242,55.05739219,264.3698863,1,10,16% -1/9/2018 19:00,62.46611297,160.0475015,421.2792975,745.1576014,76.8129486,401.5523834,323.8798473,77.67253609,74.49675479,3.175781294,104.4602369,0,104.4602369,2.31619381,102.1440431,1.090239342,2.79335586,0.001590307,-0.001590307,0.529881731,0.182332598,1.955009746,62.87983372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60911433,1.678074531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416397906,60.44248793,73.02551224,62.12056246,323.8798473,0,0.434646103,64.23722302,-0.434646103,115.762777,0.934963883,0,375.8414718,62.12056246,416.4981375,1,11,11% -1/9/2018 20:00,59.96129141,175.652221,465.3537399,769.0004742,80.40366372,504.651537,423.1643073,81.48722966,77.9791966,3.508033057,115.254869,0,115.254869,2.424467119,112.8304019,1.046521959,3.065709594,0.466574844,-0.466574844,0.450364692,0.172779666,1.91303741,61.52985914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.95656985,1.756518175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385989092,59.14484101,76.34255895,60.90135918,423.1643073,0,0.550278344,56.61388939,-0.550278344,123.3861106,0.959136893,0,482.2150579,60.90135918,522.0737795,1,12,8% -1/9/2018 21:00,60.70950288,191.6305724,452.2800383,762.2472402,79.35987042,550.0502645,469.673909,80.3763555,76.96687752,3.409477973,112.0535245,0,112.0535245,2.3929929,109.6605316,1.059580713,3.344584435,0.934904924,-0.934904924,0.370275531,0.175466224,1.639177814,52.72159313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.98349025,1.73371521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.187578746,50.67800068,75.171069,52.41171589,469.673909,0,0.616170036,51.96301357,-0.616170036,128.0369864,0.968853568,0,530.2163115,52.41171589,564.5187313,1,13,6% -1/9/2018 22:00,64.59503569,206.6613197,383.1907049,721.8080344,73.52538591,527.3770993,453.1801217,74.19697764,71.30832424,2.888653394,95.12608449,0,95.12608449,2.217061665,92.90902282,1.127396053,3.606920466,1.531368007,-1.531368007,0.268274337,0.191876747,1.180521803,37.9696392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54427361,1.606253629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.855284028,36.49786145,69.39955763,38.10411508,453.1801217,0,0.627840229,51.1090423,-0.627840229,128.8909577,0.970361905,0,509.1482837,38.10411508,534.0866649,1,14,5% -1/9/2018 23:00,71.09002834,219.9318544,264.6037741,626.0809723,61.70215763,427.8162752,365.9799702,61.83630494,59.84160992,1.994695018,66.01679622,0,66.01679622,1.860547709,64.15624851,1.24075506,3.83853499,2.526279714,-2.526279714,0.098134415,0.23318699,0.615239215,19.78820803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.52203164,1.347960482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.445738717,19.02117824,57.96777036,20.36913872,365.9799702,0,0.584556929,54.22830478,-0.584556929,125.7716952,0.964465132,0,410.9426905,20.36913872,424.2738844,1,15,3% -1/9/2018 0:00,79.51904391,231.3367667,112.5304103,403.35514,39.15660023,236.2936198,197.4694337,38.82418603,37.97588426,0.848301766,28.46501677,0,28.46501677,1.180715969,27.2843008,1.387869134,4.03758826,5.121297542,-5.121297542,0,0.347964609,0.295178992,9.493971066,0.256859063,1,0.192836645,0,0.939852269,0.978614232,0.724496596,1,36.78563918,0.855424701,0.039175185,0.312029739,0.894919188,0.619415784,0.961238037,0.922476074,0.20372703,9.125966109,36.98936621,9.98139081,146.7476201,0,0.489567168,60.68786323,-0.489567168,119.3121368,0.947868968,0,176.0868814,9.98139081,182.6195021,1,16,4% -1/9/2018 1:00,89.04041755,241.2070643,0.778200675,6.676598171,0.666387083,3.013606645,2.361447186,0.652159459,0.646293053,0.005866405,0.208777793,0,0.208777793,0.020094029,0.188683763,1.554048454,4.20985745,59.00181009,-59.00181009,0,0.85631779,0.005023507,0.161573263,0.905300789,1,0.01694701,0,0.959709218,0.998471181,0.724496596,1,0.622625766,0.014558056,0.108191518,0.312029739,0.739358997,0.463855593,0.961238037,0.922476074,0.003583112,0.155310366,0.626208879,0.169868422,0.223627185,0,0.353690177,69.28681033,-0.353690177,110.7131897,0.908633337,0,0.829403994,0.169868422,0.940579479,1,17,13% -1/9/2018 2:00,100.2255998,250.0315646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749266711,4.363874037,-5.543552853,5.543552853,0.52184294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16976915,80.22560278,-0.16976915,99.77439722,0.755482415,0,0,0,0,1,18,0% -1/9/2018 3:00,111.6060091,258.3489664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947892323,4.509040082,-2.498178829,2.498178829,0.95736743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.031396506,91.79918294,0.031396506,88.20081706,0,0,0,0,0,1,19,0% -1/9/2018 4:00,123.3322854,266.7911005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152554454,4.65638312,-1.455659815,1.455659815,0.779086179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242781504,104.0507653,0.242781504,75.94923466,0,0.844053504,0,0,0,1,20,0% -1/9/2018 5:00,135.1526471,276.2930204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358858684,4.822222907,-0.891775964,0.891775964,0.682656361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449985752,116.7427698,0.449985752,63.25723018,0,0.938885371,0,0,0,1,21,0% -1/9/2018 6:00,146.7030677,288.6992308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560451555,5.038752125,-0.512592657,0.512592657,0.617812197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638893228,129.7093397,0.638893228,50.29066032,0,0.971739662,0,0,0,1,22,0% -1/9/2018 7:00,157.1306797,308.6296854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742447717,5.386604179,-0.219567842,0.219567842,0.567702002,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796633247,142.8097933,0.796633247,37.19020673,0,0.987235861,0,0,0,1,23,0% -1/10/2018 8:00,163.7038918,346.2913909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85717191,6.043924942,0.032036805,-0.032036805,0.524675073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.912456881,155.8471134,0.912456881,24.15288656,0,0.99520289,0,0,0,1,0,0% -1/10/2018 9:00,161.5324797,33.56842073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.819273619,0.585879466,0.268697165,-0.268697165,0.484203768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978468934,168.0888765,0.978468934,11.91112347,0,0.998899757,0,0,0,1,1,0% -1/10/2018 10:00,152.6470562,61.78917268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.664193724,1.078424505,0.512006452,-0.512006452,0.442595429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990165721,171.9579744,0.990165721,8.042025613,0,0.999503402,0,0,0,1,2,0% -1/10/2018 11:00,141.5353406,77.41090734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470257702,1.35107521,0.787793167,-0.787793167,0.395433124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946742033,161.2165011,0.946742033,18.78349888,0,0.997187303,0,0,0,1,3,0% -1/10/2018 12:00,129.7960289,88.16296554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26536806,1.538734027,1.14059468,-1.14059468,0.335100512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851146411,148.3365791,0.851146411,31.66342087,0,0.9912557,0,0,0,1,4,0% -1/10/2018 13:00,117.9767636,97.02961513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059082966,1.693486256,1.676938303,-1.676938303,0.24338035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709880899,135.2252258,0.709880899,44.77477422,0,0.97956565,0,0,0,1,5,0% -1/10/2018 14:00,106.3675882,105.3206849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856464632,1.838192721,2.778089857,-2.778089857,0.055072344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532558837,122.1785087,0.532558837,57.82149129,0,0.95611366,0,0,0,1,6,0% -1/10/2018 15:00,95.21335757,113.7926088,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661786581,1.986055688,7.911355927,-7.911355927,0,#DIV/0!,0,0,0.451383786,1,0.125733791,0,0.948269929,0.987031892,0.724496596,1,0,0,0.063598943,0.312029739,0.835528811,0.560025407,0.961238037,0.922476074,0,0,0,0,0,0,-0.331250697,109.3447053,0.331250697,70.6552947,0,0.899056921,0,0,0,1,7,0% -1/10/2018 16:00,84.64098107,123.0218263,33.80956019,172.1258697,17.73365648,17.45379205,0,17.45379205,17.1989213,0.254870746,28.88231177,20.1500573,8.732254474,0.534735173,8.197519301,1.477263802,2.147135921,-6.412268354,6.412268354,0.37328384,0.524516036,0.178920924,5.75471196,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.53225735,0.387413813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129627601,5.531648027,16.66188495,5.91906184,0,20.1500573,-0.117065827,96.72279318,0.117065827,83.27720682,0,0.622889875,16.66188495,18.47032851,28.75034555,1,8,73% -1/10/2018 17:00,75.43010208,133.5294593,184.7884052,528.9628026,51.72204221,98.54918507,46.99374021,51.55544486,50.16243181,1.393013053,46.36369865,0,46.36369865,1.559610407,44.80408824,1.316503636,2.330528713,-1.714906142,1.714906142,0.823419912,0.279898742,1.215883721,39.10700005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.21803747,1.129932431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880903617,37.59113595,49.09894109,38.72106838,46.99374021,0,0.088841295,84.90304887,-0.088841295,95.09695113,0.487198656,0,71.99422818,38.72106838,97.33639301,1,9,35% -1/10/2018 18:00,67.76953802,145.7608276,325.2346088,678.8468974,68.40443687,257.2707385,188.4771919,68.79354657,66.34179071,2.451755861,80.91954251,0,80.91954251,2.062646157,78.85689635,1.182801571,2.544006362,-0.601816578,0.601816578,0.633070386,0.210323364,1.741345518,56.0076577,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.77025266,1.494380119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2615989,53.83669094,65.03185156,55.33107106,188.4771919,0,0.277643151,73.88040915,-0.277643151,106.1195909,0.86991272,0,228.9905582,55.33107106,265.2036376,1,10,16% -1/10/2018 19:00,62.35083325,159.8971184,422.9859434,744.9410805,77.29131581,402.5907811,324.4414369,78.14934417,74.96069746,3.188646712,104.8884575,0,104.8884575,2.330618346,102.5578391,1.088227332,2.79073118,-0.003427541,0.003427541,0.530739834,0.182727859,1.965758413,63.22554783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.05507367,1.688525058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424185279,60.77480147,73.47925895,62.46332653,324.4414369,0,0.435526306,64.18121173,-0.435526306,115.8187883,0.935196372,0,376.8957137,62.46332653,417.7767116,1,11,11% -1/10/2018 20:00,59.81832477,175.532758,467.4950458,768.92805,80.92146519,506.1443006,424.1387411,82.00555957,78.48138445,3.524175126,115.7896671,0,115.7896671,2.440080744,113.3495863,1.04402672,3.063624573,0.460446711,-0.460446711,0.451412665,0.173095878,1.925506633,61.93091219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43929192,1.767830193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395023001,59.53034845,76.83431492,61.29817865,424.1387411,0,0.551597436,56.52332706,-0.551597436,123.4766729,0.959354183,0,483.7335905,61.29817865,523.8520225,1,12,8% -1/10/2018 21:00,60.54599534,191.5540737,454.7984985,762.4009278,79.90712647,552.0267367,471.1006417,80.92609497,77.49763178,3.428463189,112.6806561,0,112.6806561,2.409494689,110.2711614,1.056726968,3.343249282,0.926669899,-0.926669899,0.371683804,0.175697868,1.652785374,53.15925903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.49367143,1.7456707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197437377,51.09870179,75.69110881,52.84437249,471.1006417,0,0.617917194,51.83580406,-0.617917194,128.1641959,0.969083009,0,532.2267363,52.84437249,566.8123212,1,13,6% -1/10/2018 22:00,64.42075918,206.6289795,385.9942772,722.3871044,74.09716357,529.8584894,455.0858408,74.77264861,71.8628607,2.909787906,95.82308427,0,95.82308427,2.234302871,93.5887814,1.124354354,3.606356022,1.518615229,-1.518615229,0.27045519,0.19196441,1.194473258,38.41836595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.07731514,1.618744824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.865391809,36.92919467,69.94270695,38.54793949,455.0858408,0,0.629975034,50.95171938,-0.629975034,129.0482806,0.970631775,0,511.6634845,38.54793949,536.89234,1,14,5% -1/10/2018 23:00,70.91335936,219.9359536,267.5500854,627.6556814,62.3082083,430.8871215,368.4408301,62.44629148,60.42938592,2.016905557,66.74943817,0,66.74943817,1.878822373,64.8706158,1.237671605,3.838606534,2.501202505,-2.501202505,0.10242287,0.232884277,0.628174254,20.20424334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.08702429,1.361200413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455110109,19.4210872,58.5421344,20.78228762,368.4408301,0,0.587011065,54.05481004,-0.587011065,125.94519,0.96482273,0,414.0222219,20.78228762,427.6238135,1,15,3% -1/10/2018 0:00,79.34560952,231.3676932,115.2786732,407.8406216,39.87532043,240.2980308,200.7560791,39.54195173,38.6729324,0.869019332,29.153037,0,29.153037,1.202388035,27.95064897,1.384842133,4.038128028,5.036944437,-5.036944437,0,0.345903707,0.300597009,9.668233099,0.248806282,1,0.195984645,0,0.939432647,0.97819461,0.724496596,1,37.45668375,0.871126039,0.03807663,0.312029739,0.897701466,0.622198061,0.961238037,0.922476074,0.207635893,9.293473404,37.66431965,10.16459944,150.8067055,0,0.492241499,60.51198441,-0.492241499,119.4880156,0.948423843,0,180.6929948,10.16459944,187.3455218,1,16,4% -1/10/2018 1:00,88.88945727,241.2576031,1.045013542,8.391028373,0.882383551,3.852500903,2.988846717,0.863654185,0.855776432,0.007877753,0.279982752,0,0.279982752,0.02660712,0.253375632,1.5514137,4.21073952,50.98678846,-50.98678846,0,0.844375231,0.00665178,0.213944108,0.891175422,1,0.01961041,0,0.959462651,0.998224614,0.724496596,1,0.824695406,0.019276768,0.107010746,0.312029739,0.741699939,0.466196535,0.961238037,0.922476074,0.004734194,0.205651214,0.8294296,0.224927982,0.325259982,0,0.35619552,69.13326714,-0.35619552,110.8667329,0.909627656,0,1.125295075,0.224927982,1.272505941,1,17,13% -1/10/2018 2:00,100.0601646,250.0977407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746379323,4.365029026,-5.636655794,5.636655794,0.505921399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.172613474,80.06019315,-0.172613474,99.93980685,0.760335475,0,0,0,0,1,18,0% -1/10/2018 3:00,111.4445521,258.4295349,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945074368,4.510446269,-2.518366973,2.518366973,0.960819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028648608,91.64166896,0.028648608,88.35833104,0,0,0,0,0,1,19,0% -1/10/2018 4:00,123.1730496,266.8867898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149775266,4.658053213,-1.463769058,1.463769058,0.780472941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.240237054,103.9005319,0.240237054,76.09946812,0,0.841872239,0,0,0,1,20,0% -1/10/2018 5:00,134.9927333,276.4050628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356067662,4.824178414,-0.89589969,0.89589969,0.68336156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44773758,116.5986218,0.44773758,63.4013782,0,0.938327444,0,0,0,1,21,0% -1/10/2018 6:00,146.5378332,288.8225695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557567667,5.040904791,-0.51492964,0.51492964,0.618211844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637013608,129.5694905,0.637013608,50.43050951,0,0.971508741,0,0,0,1,22,0% -1/10/2018 7:00,156.9547569,308.7120744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739377284,5.38804214,-0.220930485,0.220930485,0.567935028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795168944,142.6712157,0.795168944,37.32878429,0,0.987120281,0,0,0,1,23,0% -1/11/2018 8:00,163.5351017,346.0796414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.854225968,6.040229217,0.031301628,-0.031301628,0.524800796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911425947,155.7031567,0.911425947,24.29684331,0,0.995140908,0,0,0,1,0,0% -1/11/2018 9:00,161.4401593,33.08453395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817662325,0.577434049,0.26844535,-0.26844535,0.484246831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977859488,167.9208597,0.977859488,12.0791403,0,0.998867909,0,0,0,1,1,0% -1/11/2018 10:00,152.6143752,61.40533487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663623334,1.071725272,0.51221515,-0.51221515,0.44255974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989936773,171.8647457,0.989936773,8.135254346,0,0.999491724,0,0,0,1,2,0% -1/11/2018 11:00,141.5261429,77.12247209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470097171,1.346041065,0.788558884,-0.788558884,0.395302178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946826314,161.231504,0.946826314,18.76849602,0,0.997192004,0,0,0,1,3,0% -1/11/2018 12:00,129.7933526,87.92887781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265321349,1.534648425,1.142222443,-1.142222443,0.334822148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851455002,148.3702778,0.851455002,31.62972218,0,0.991276991,0,0,0,1,4,0% -1/11/2018 13:00,117.9719073,96.8257735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058998207,1.689928548,1.680315182,-1.680315182,0.24280287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710309346,135.2600902,0.710309346,44.73990984,0,0.979608134,0,0,0,1,5,0% -1/11/2018 14:00,106.3547944,105.1332488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856241338,1.834921345,2.786816053,-2.786816053,0.053580077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532994331,122.2079939,0.532994331,57.79200611,0,0.956190372,0,0,0,1,6,0% -1/11/2018 15:00,95.18777462,113.6131813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661340075,1.982924087,7.974416756,-7.974416756,0,#DIV/0!,0,0,0.454610472,1,0.124749826,0,0.948385772,0.987147735,0.724496596,1,0,0,0.06397254,0.312029739,0.834657109,0.559153705,0.961238037,0.922476074,0,0,0,0,0,0,-0.331579829,109.3646927,0.331579829,70.63530725,0,0.89920675,0,0,0,1,7,0% -1/11/2018 16:00,84.59878601,122.8456061,34.21610787,172.7953416,17.95098478,17.66763183,0,17.66763183,17.40969635,0.257935474,29.0886976,20.25131768,8.837379917,0.541288423,8.296091494,1.476527359,2.144060298,-6.387836696,6.387836696,0.377461899,0.524635498,0.181603981,5.841008277,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73486235,0.39216162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.131571466,5.61459933,16.86643381,6.00676095,0,20.25131768,-0.117198285,96.73043506,0.117198285,83.26956494,0,0.623372597,16.86643381,18.63087744,29.05997048,1,8,72% -1/11/2018 17:00,75.36463463,133.3553185,185.7053173,528.864634,52.07887719,98.99038574,47.08195373,51.90843202,50.50850689,1.399925124,46.59677449,0,46.59677449,1.570370298,45.02640419,1.315361014,2.327489383,-1.717303874,1.717303874,0.823829948,0.280438266,1.222463296,39.3186218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.55069801,1.137727935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885670497,37.79455483,49.43636851,38.93228277,47.08195373,0,0.089024583,84.89250542,-0.089024583,95.10749458,0.488357383,0,72.42918822,38.93228277,97.90958864,1,9,35% -1/11/2018 18:00,67.67680875,145.5928353,326.6085988,678.6404221,68.84018669,258.0264948,188.7999801,69.22651464,66.76440107,2.462113578,81.26582173,0,81.26582173,2.075785622,79.19003611,1.18118314,2.541074344,-0.605965167,0.605965167,0.633779836,0.210772732,1.750486578,56.3016656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17648181,1.503899617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.268221567,54.11930251,65.44470338,55.62320213,188.7999801,0,0.278203263,73.84700091,-0.278203263,106.1529991,0.870275293,0,229.7526614,55.62320213,266.1569347,1,10,16% -1/11/2018 19:00,62.22841376,159.7461979,424.8170448,744.7976419,77.78014227,403.7468331,325.1095988,78.63723433,75.434784,3.202450327,105.3471691,0,105.3471691,2.345358268,103.0018109,1.086090708,2.788097121,-0.008411722,0.008411722,0.531592179,0.183090917,1.977043586,63.58851775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.51078368,1.699204081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.432361348,61.12370197,73.94314503,62.82290605,325.1095988,0,0.436507288,64.1187562,-0.436507288,115.8812438,0.935454375,0,378.0683417,62.82290605,419.1846772,1,11,11% -1/11/2018 20:00,59.66831442,175.4146687,469.7551552,768.915978,81.44872654,507.7563108,425.2223511,82.5339597,78.99274692,3.541212785,116.3535556,0,116.3535556,2.455979619,113.897576,1.041408546,3.061563524,0.454290281,-0.454290281,0.452465476,0.173385487,1.938459937,62.34753498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93083297,1.779348873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404407625,59.93082212,77.3352406,61.710171,425.2223511,0,0.553015366,56.42587337,-0.553015366,123.5741266,0.959586599,0,485.3729103,61.710171,525.760983,1,12,8% -1/11/2018 21:00,60.37593419,191.480933,457.4270155,762.6104042,80.46332789,554.1194942,472.6341545,81.48533974,78.03706168,3.448278061,113.334742,0,113.334742,2.426266214,110.9084758,1.053758841,3.341972736,0.918365912,-0.918365912,0.373103869,0.175904188,1.666820112,53.61066446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01219197,1.757821613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207605497,51.53260986,76.21979747,53.29043148,472.6341545,0,0.619758335,51.70151103,-0.619758335,128.298489,0.969323392,0,534.3551395,53.29043148,569.2326611,1,13,7% -1/11/2018 22:00,64.24074124,206.6015454,388.8968464,723.0227545,74.6778085,532.4500473,457.0923816,75.35766574,72.42599704,2.931668699,96.54435435,0,96.54435435,2.251811458,94.29254289,1.121212449,3.605877208,1.50576174,-1.50576174,0.272653266,0.192024721,1.208790974,38.87887292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.61862321,1.631429736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.875764946,37.37185148,70.49438816,39.00328121,457.0923816,0,0.632196399,50.78764461,-0.632196399,129.2123554,0.970910654,0,514.2902511,39.00328121,539.8171186,1,14,5% -1/11/2018 23:00,70.73188221,219.9458825,270.5828395,629.2907188,62.92372128,434.0596,370.9934933,63.06610666,61.02633892,2.039767739,67.50332449,0,67.50332449,1.89738236,65.60594213,1.234504231,3.838779826,2.476046679,-2.476046679,0.10672477,0.232548825,0.641414908,20.63010829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.66083822,1.374647061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.464702917,19.8304448,59.12554113,21.20509186,370.9934933,0,0.589542293,53.87546535,-0.589542293,126.1245347,0.965188443,0,417.2041732,21.20509186,431.0824817,1,15,3% -1/11/2018 0:00,79.16823231,231.4049167,118.1026407,412.382087,40.60535938,244.3930823,204.1218167,40.27126557,39.38095798,0.890307592,29.85975398,0,29.85975398,1.224401403,28.63535258,1.381746317,4.038777701,4.953596164,-4.953596164,0,0.343814153,0.306100351,9.845239495,0.240676156,1,0.199196391,0,0.939002276,0.977764239,0.724496596,1,38.1379043,0.887074649,0.036959854,0.312029739,0.900539657,0.625036253,0.961238037,0.922476074,0.211620443,9.463618685,38.34952474,10.35069333,154.9945626,0,0.494982258,60.33141956,-0.494982258,119.6685804,0.948986278,0,185.4372379,10.35069333,192.2115597,1,16,4% -1/11/2018 1:00,88.73431956,241.3147095,1.371969522,10.43265572,1.141527866,4.860393802,3.742944727,1.117449075,1.107106589,0.010342486,0.367071172,0,0.367071172,0.034421277,0.332649895,1.548706036,4.211736214,44.74236634,-44.74236634,0,0.832035878,0.008605319,0.276776647,0.876866118,1,0.022346461,0,0.959207582,0.997969545,0.724496596,1,1.067229155,0.024938098,0.105802971,0.312029739,0.744106026,0.468602622,0.961238037,0.922476074,0.006111345,0.266048241,1.0733405,0.290986339,0.460883313,0,0.358771997,68.97520069,-0.358771997,111.0247993,0.910635723,0,1.493037308,0.290986339,1.683482048,1,17,13% -1/11/2018 2:00,99.89208839,250.1707626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743445839,4.3663035,-5.734391238,5.734391238,0.489207654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175501172,79.89217548,-0.175501172,100.1078245,0.765101617,0,0,0,0,1,18,0% -1/11/2018 3:00,111.2808311,258.5173848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942216897,4.511979538,-2.539089041,2.539089041,0.964363489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025867795,91.48228085,0.025867795,88.51771915,0,0,0,0,0,1,19,0% -1/11/2018 4:00,123.011724,266.9904943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146959603,4.659863198,-1.471995355,1.471995355,0.781879721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.237668496,103.7489738,0.237668496,76.25102616,0,0.839622937,0,0,0,1,20,0% -1/11/2018 5:00,134.8306412,276.5263448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353238622,4.826295186,-0.900034203,0.900034203,0.684068603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445471851,116.4535316,0.445471851,63.54646842,0,0.937759462,0,0,0,1,21,0% -1/11/2018 6:00,146.3699173,288.9571664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554636984,5.043253951,-0.51723569,0.51723569,0.618606202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635120273,129.4289054,0.635120273,50.57109457,0,0.971274754,0,0,0,1,22,0% -1/11/2018 7:00,156.7748719,308.8088728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.736237699,5.38973159,-0.222238791,0.222238791,0.568158761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793691792,142.5318662,0.793691792,37.46813383,0,0.987003254,0,0,0,1,23,0% -1/12/2018 8:00,163.3596684,345.8840337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.851164079,6.036815219,0.030639744,-0.030639744,0.524913985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91038,155.5579176,0.91038,24.44208238,0,0.99507788,0,0,0,1,0,0% -1/12/2018 9:00,161.3394679,32.60089719,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815904928,0.568992995,0.268287944,-0.268287944,0.484273749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977229978,167.7496952,0.977229978,12.25030477,0,0.998834971,0,0,0,1,1,0% -1/12/2018 10:00,152.5744584,61.01400544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662926654,1.064895285,0.512547563,-0.512547563,0.442502894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989680176,171.7615033,0.989680176,8.238496656,0,0.999478628,0,0,0,1,2,0% -1/12/2018 11:00,141.510628,76.82669379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469826385,1.34087876,0.789495798,-0.789495798,0.395141957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946873349,161.2398817,0.946873349,18.76011832,0,0.997194627,0,0,0,1,3,0% -1/12/2018 12:00,129.7847823,87.68848672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26517177,1.530452809,1.144110891,-1.144110891,0.334499204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851715401,148.3987389,0.851715401,31.60126108,0,0.991294944,0,0,0,1,4,0% -1/12/2018 13:00,117.9612798,96.61651287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058812722,1.686276261,1.684161492,-1.684161492,0.242145112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710678063,135.2901112,0.710678063,44.70988879,0,0.979644655,0,0,0,1,5,0% -1/12/2018 14:00,106.3361674,104.9410791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855916234,1.83156735,2.796742462,-2.796742462,0.051882561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533358762,122.232675,0.533358762,57.76732495,0,0.95625447,0,0,0,1,6,0% -1/12/2018 15:00,95.156171,113.4295915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660788488,1.979719841,8.048014373,-8.048014373,0,#DIV/0!,0,0,0.458328633,1,0.123620652,0,0.948518437,0.9872804,0.724496596,1,0,0,0.064401865,0.312029739,0.833656752,0.558153348,0.961238037,0.922476074,0,0,0,0,0,0,-0.331827551,109.379738,0.331827551,70.62026198,0,0.899319323,0,0,0,1,7,0% -1/12/2018 16:00,84.55042421,122.6657886,34.70164419,173.7690768,18.19884733,17.91168059,0,17.91168059,17.65008494,0.261595652,29.33575321,20.37317542,8.962577789,0.548762394,8.413815396,1.475683287,2.140921891,-6.356997701,6.356997701,0.382735678,0.52443761,0.184804851,5.943959269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.965933,0.397576486,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.133890485,5.713559739,17.09982348,6.111136225,0,20.37317542,-0.117242813,96.73300406,0.117242813,83.26699594,0,0.623534628,17.09982348,18.81451658,29.41354829,1,8,72% -1/12/2018 17:00,75.29257223,133.1782739,186.741712,528.9374944,52.45329525,99.51551663,47.23614386,52.27937277,50.87163487,1.407737905,46.85935049,0,46.85935049,1.581660384,45.2776901,1.314103288,2.324399372,-1.719025014,1.719025014,0.82412428,0.280886871,1.229694903,39.55121512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.89975043,1.145907564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890909771,38.01813238,49.7906602,39.16403994,47.23614386,0,0.08930383,84.87644181,-0.08930383,95.12355819,0.490113596,0,72.94173653,39.16403994,98.57381739,1,9,35% -1/12/2018 18:00,67.57716273,145.4229338,328.1077803,678.5344217,69.28838627,258.8907466,189.2182457,69.67250082,67.19908578,2.473415041,81.64283053,0,81.64283053,2.089300493,79.55353003,1.179443989,2.538109002,-0.609936137,0.609936137,0.634458912,0.211175688,1.76021151,56.61445285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59431729,1.513691095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.275267247,54.41996551,65.86958454,55.93365661,189.2182457,0,0.278863149,73.80763437,-0.278863149,106.1923656,0.870700583,0,230.6220215,55.93365661,267.2294811,1,10,16% -1/12/2018 19:00,62.09889789,159.5948288,426.7714224,744.725785,78.27936412,405.0197346,325.8835989,79.13613572,75.91895247,3.217183251,105.836084,0,105.836084,2.360411648,103.4756723,1.08383023,2.785455232,-0.013355141,0.013355141,0.532437553,0.183422226,1.98885914,63.96854659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.97618483,1.710110204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440921676,61.48900014,74.41710651,63.19911035,325.8835989,0,0.437588714,64.04986744,-0.437588714,115.9501326,0.935737455,0,379.3585961,63.19911035,420.7211498,1,11,11% -1/12/2018 20:00,59.51132182,175.2980426,472.1324504,768.9626449,81.98534002,509.4861949,426.4138816,83.07231337,79.51317952,3.559133841,116.9461393,0,116.9461393,2.472160495,114.4739788,1.038668508,3.059528015,0.448114064,-0.448114064,0.453521671,0.173649026,1.951889862,62.77948754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.43109259,1.791071863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414137561,60.34603136,77.84523015,62.13710323,426.4138816,0,0.554531334,56.32155967,-0.554531334,123.6784403,0.95983377,0,487.1316736,62.13710323,527.7991649,1,12,8% -1/12/2018 21:00,60.19939982,191.4112406,460.1636203,762.8737006,81.02832105,556.3265731,474.2726471,82.05392595,78.5850182,3.468907743,114.0153002,0,114.0153002,2.443302842,111.5719973,1.050677735,3.340756373,0.91000437,-0.91000437,0.374533777,0.176085891,1.68127397,54.07555021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.53890862,1.770164592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218077268,51.97947572,76.75698589,53.74964031,474.2726471,0,0.621692223,51.56018483,-0.621692223,128.4398152,0.969574352,0,536.5995803,53.74964031,571.7776449,1,13,7% -1/12/2018 22:00,64.05507984,206.579098,391.8962187,723.7122551,75.26710516,535.149187,459.1973835,75.95180346,72.99752423,2.954279234,97.28935637,0,97.28935637,2.269580927,95.01977545,1.117972046,3.605485425,1.492825423,-1.492825423,0.274865507,0.192058769,1.223467313,39.35091443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16799689,1.644303655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886397904,37.82559574,71.05439479,39.46989939,459.1973835,0,0.634502705,50.61688922,-0.634502705,129.3831108,0.971198129,0,517.0260347,39.46989939,542.8582945,1,14,5% -1/12/2018 23:00,70.54570703,219.9617003,273.6998216,630.9816786,63.5483625,437.3303894,373.6349796,63.69540977,61.63214491,2.063264866,68.27790813,0,68.27790813,1.916217598,66.36169053,1.231254861,3.839055899,2.450847647,-2.450847647,0.111034058,0.232182696,0.654955716,21.06562723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24316198,1.388293127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474513187,20.24908216,59.71767516,21.63737529,373.6349796,0,0.592148698,53.69036493,-0.592148698,126.3096351,0.96556175,0,420.4853198,21.63737529,434.6465492,1,15,3% -1/12/2018 0:00,78.98702706,231.4484705,121.0005649,416.9711009,41.34605383,248.57441,207.5629389,41.01147113,40.09931776,0.912153369,30.58472392,0,30.58472392,1.246736074,29.33798785,1.378583689,4.039537859,4.871343236,-4.871343236,0,0.341701329,0.311684018,10.02482944,0.232478481,1,0.20246939,0,0.938561363,0.977323326,0.724496596,1,38.82865074,0.903256041,0.035825917,0.312029739,0.90343153,0.627928126,0.961238037,0.922476074,0.215678091,9.636247371,39.04432883,10.53950341,159.3090221,0,0.497787349,60.14628017,-0.497787349,119.8537198,0.949555503,0,190.3170874,10.53950341,197.2149816,1,16,4% -1/12/2018 1:00,88.57512179,241.3783918,1.76640703,12.83140655,1.447338029,6.054504442,4.637493072,1.41701137,1.403695447,0.013315922,0.471928417,0,0.471928417,0.043642582,0.428285835,1.545927511,4.21284768,39.74841724,-39.74841724,0,0.819368359,0.010910645,0.350923862,0.862395913,1,0.025152929,0,0.95894408,0.997706043,0.724496596,1,1.353552476,0.031618902,0.104569543,0.312029739,0.746575333,0.471071929,0.961238037,0.922476074,0.007731992,0.337321364,1.361284468,0.368940266,0.638138002,0,0.361417359,68.81273355,-0.361417359,111.1872664,0.911655787,0,1.94304667,0.368940266,2.184510696,1,17,12% -1/12/2018 2:00,99.72148274,250.2506157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740468209,4.367697199,-5.837006481,5.837006481,0.471659414,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178430075,79.72167053,-0.178430075,100.2783295,0.769778182,0,0,0,0,1,18,0% -1/12/2018 3:00,111.1149503,258.6124779,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939321732,4.513639225,-2.560348241,2.560348241,0.967999026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023056077,91.32113296,0.023056077,88.67886704,0,0,0,0,0,1,19,0% -1/12/2018 4:00,122.8484039,267.1021479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144109129,4.66181192,-1.480335339,1.480335339,0.783305942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235077573,103.5961955,0.235077573,76.40380451,0,0.837304253,0,0,0,1,20,0% -1/12/2018 5:00,134.6664564,276.656759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350373057,4.828571343,-0.904176631,0.904176631,0.684777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443189951,116.3075904,0.443189951,63.69240964,0,0.937181557,0,0,0,1,21,0% -1/12/2018 6:00,146.1993985,289.1028391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.551660868,5.04579642,-0.519508665,0.519508665,0.618994904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633214185,129.2876594,0.633214185,50.71234058,0,0.971037777,0,0,0,1,22,0% -1/12/2018 7:00,156.5911122,308.9197707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.733030487,5.391667123,-0.223491141,0.223491141,0.568372926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792202297,142.3917985,0.792202297,37.60820153,0,0.986884808,0,0,0,1,23,0% -1/13/2018 8:00,163.1777218,345.7045474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.847988512,6.033682592,0.030052421,-0.030052421,0.525014423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909319078,155.4114221,0.909319078,24.58857787,0,0.995013801,0,0,0,1,0,0% -1/13/2018 9:00,161.2304158,32.11845091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81400161,0.560572719,0.268225995,-0.268225995,0.484284343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976580006,167.575404,0.976580006,12.42459603,0,0.998800918,0,0,0,1,1,0% -1/13/2018 10:00,152.5272233,60.61573589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662102245,1.05794417,0.513004628,-0.513004628,0.442424731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989395152,171.6483092,0.989395152,8.351690771,0,0.999464074,0,0,0,1,2,0% -1/13/2018 11:00,141.4887078,76.52387804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469443805,1.335593628,0.790604898,-0.790604898,0.394952289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946882063,161.2414342,0.946882063,18.75856582,0,0.997195113,0,0,0,1,3,0% -1/13/2018 12:00,129.7702421,87.44199843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264917996,1.526150777,1.146261454,-1.146261454,0.334131436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85192634,148.421811,0.85192634,31.578189,0,0.99130948,0,0,0,1,4,0% -1/13/2018 13:00,117.9448205,96.40199324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058525453,1.682532188,1.688480612,-1.688480612,0.241406499,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710985705,135.3151717,0.710985705,44.6848283,0,0.979675098,0,0,0,1,5,0% -1/13/2018 14:00,106.3116629,104.7443109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85548855,1.828133099,2.807885085,-2.807885085,0.04997706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533650831,122.2524603,0.533650831,57.74753969,0,0.956305777,0,0,0,1,6,0% -1/13/2018 15:00,95.11851991,113.2419598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660131352,1.976445049,8.132624083,-8.132624083,0,#DIV/0!,0,0,0.46254097,1,0.122347397,0,0.948667678,0.987429642,0.724496596,1,0,0,0.064886733,0.312029739,0.832528739,0.557025335,0.961238037,0.922476074,0,0,0,0,0,0,-0.331992732,109.3897709,0.331992732,70.61022905,0,0.899394294,0,0,0,1,7,0% -1/13/2018 16:00,84.49588178,122.4824838,35.26726887,175.0440687,18.47751479,18.18620911,0,18.18620911,17.92034954,0.26585957,29.62301983,20.51489694,9.108122893,0.557165246,8.550957647,1.474731341,2.137722618,-6.319986323,6.319986323,0.389064996,0.523928146,0.18853459,6.063920509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.22572161,0.403664324,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.136592669,5.828871046,17.36231428,6.23253537,0,20.51489694,-0.117198469,96.73044571,0.117198469,83.26955429,0,0.623373268,17.36231428,19.02097372,29.81116116,1,8,72% -1/13/2018 17:00,75.21392392,132.9984267,187.8974264,529.1786559,52.84532117,100.1247888,47.45649891,52.66828993,51.25183976,1.416450169,47.15138785,0,47.15138785,1.593481412,45.55790644,1.312730616,2.321260446,-1.720070108,1.720070108,0.824303002,0.281245583,1.237576602,39.80471765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.26521784,1.154471858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896620035,38.26180865,50.16183787,39.41628051,47.45649891,0,0.089679541,84.85482841,-0.089679541,95.14517159,0.492459233,0,73.53222894,39.41628051,99.3293962,1,9,35% -1/13/2018 18:00,67.4706279,145.2512162,329.73141,678.5270921,69.74900535,259.8631715,189.7317014,70.13147014,67.6458155,2.485654648,82.05038772,0,82.05038772,2.103189858,79.94719786,1.177584605,2.535111965,-0.613723852,0.613723852,0.63510665,0.211532791,1.770515794,56.94587404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02373089,1.523753892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282732666,54.73854017,66.30646355,56.26229406,189.7317014,0,0.279622883,73.76230154,-0.279622883,106.2376985,0.871187738,0,231.5983954,56.26229406,268.4209416,1,10,16% -1/13/2018 19:00,61.96233158,159.4431002,428.8478307,744.7239168,78.78890551,406.4086228,326.7626574,79.6459654,76.41312931,3.232836094,106.3548978,0,106.3548978,2.375776201,103.9791216,1.081446698,2.782807068,-0.018250918,0.018250918,0.53327478,0.18372229,2.001198626,64.36542687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.4512064,1.72124177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449861592,61.87049657,74.90106799,63.59173834,326.7626574,0,0.438770194,63.97455902,-0.438770194,116.025441,0.936045131,0,380.7656625,63.59173834,422.3851834,1,11,11% -1/13/2018 20:00,59.34741104,175.18297,474.6252468,769.0663753,82.53118789,511.3325155,427.7120219,83.62049366,80.04256807,3.577925593,117.5670059,0,117.5670059,2.488619822,115.0783861,1.035807725,3.057519619,0.441926406,-0.441926406,0.454579823,0.173887058,1.965788649,63.22652032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.93996099,1.80299659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424207185,60.77573627,78.36416818,62.57873286,427.7120219,0,0.556144483,56.21041983,-0.556144483,123.7895802,0.960095305,0,489.0084724,62.57873286,529.9650014,1,12,8% -1/13/2018 21:00,60.01647532,191.3450873,463.0062793,763.1888087,81.60194331,558.6459439,476.0142634,82.63168055,79.14134364,3.490336908,114.7218326,0,114.7218326,2.46059967,112.2612329,1.0474851,3.33960178,0.901596454,-0.901596454,0.375971615,0.176243708,1.696138615,54.55364829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.0736698,1.782696085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228846653,52.43904179,77.30251645,54.22173787,476.0142634,0,0.623717562,51.41187828,-0.623717562,128.5881217,0.96983551,0,538.9580526,54.22173787,574.4450956,1,13,7% -1/13/2018 22:00,63.86387564,206.5617175,394.9901419,724.4528663,75.86483001,537.9532647,461.3984367,76.554828,73.57722547,2.977602534,98.05753748,0,98.05753748,2.287604536,95.76993294,1.114634903,3.605182078,1.479823672,-1.479823672,0.277088937,0.192067654,1.238494379,39.83423651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72522777,1.657361699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897284961,38.2901833,71.62251273,39.947545,461.3984367,0,0.636892278,50.43952706,-0.636892278,129.5604729,0.971493788,0,519.8682279,39.947545,546.0130972,1,14,5% -1/13/2018 23:00,70.35494643,219.983465,276.8987616,632.7242154,64.18179224,440.6961335,376.3622792,64.33385422,62.2464744,2.087379828,69.07262842,0,69.07262842,1.935317842,67.13731058,1.22792546,3.839435765,2.425639193,-2.425639193,0.115344957,0.231787935,0.668790909,21.51061459,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83367885,1.402131188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.484536737,20.67682094,60.31821559,22.07895213,376.3622792,0,0.594828316,53.49960593,-0.594828316,126.5003941,0.965942132,0,423.862398,22.07895213,438.3126306,1,15,3% -1/13/2018 0:00,78.8021106,231.498386,123.9706123,421.5994856,42.09674449,252.8376492,211.0757341,41.76191516,40.82737232,0.934542841,31.32748241,0,31.32748241,1.269372167,30.05811025,1.375356287,4.040409049,4.790265405,-4.790265405,0,0.339570352,0.317343042,10.20684308,0.22422283,1,0.205801111,0,0.938110124,0.976872087,0.724496596,1,39.52827677,0.919655814,0.034675879,0.312029739,0.906374823,0.630871419,0.961238037,0.922476074,0.219806252,9.811205805,39.74808302,10.73086162,163.7477357,0,0.500654629,59.95668063,-0.500654629,120.0433194,0.950130755,0,195.3298427,10.73086162,202.352977,1,16,4% -1/13/2018 1:00,88.4119969,241.4486559,2.235386435,15.61306487,1.80271196,7.45037592,5.685171089,1.765204831,1.748353543,0.016851287,0.596353738,0,0.596353738,0.054358417,0.541995322,1.543080444,4.214074021,35.67015345,-35.67015345,0,0.806443097,0.013589604,0.437088386,0.847788407,1,0.028027301,0,0.958672244,0.997434207,0.724496596,1,1.686413335,0.039382488,0.103311918,0.312029739,0.749105684,0.47360228,0.961238037,0.922476074,0.009610172,0.420145982,1.696023507,0.45952847,0.865348949,0,0.364129089,68.64600481,-0.364129089,111.3539952,0.91268606,0,2.48581543,0.45952847,2.786567623,1,17,12% -1/13/2018 2:00,99.54845993,250.3372824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737448391,4.369209819,-5.944768911,5.944768911,0.453230953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.181397994,79.54880042,-0.181397994,100.4511996,0.774362994,0,0,0,0,1,18,0% -1/13/2018 3:00,110.9470142,258.714773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936390693,4.515424612,-2.582147751,2.582147751,0.971726962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.020215474,91.15834023,0.020215474,88.84165977,0,0,0,0,0,1,19,0% -1/13/2018 4:00,122.6831837,267.2216812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141225493,4.66389817,-1.488785537,1.488785537,0.784751011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.23246603,103.4423009,0.23246603,76.55769915,0,0.834914811,0,0,0,1,20,0% -1/13/2018 5:00,134.500263,276.7961941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347472434,4.831004943,-0.908324064,0.908324064,0.685486253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440893258,116.1608884,0.440893258,63.83911162,0,0.936593866,0,0,0,1,21,0% -1/13/2018 6:00,146.0263527,289.2594007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548640649,5.048528935,-0.521746414,0.521746414,0.619377581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631296294,129.1458257,0.631296294,50.85417432,0,0.970797888,0,0,0,1,22,0% -1/13/2018 7:00,156.4035625,309.0444499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.729757127,5.393843185,-0.224685923,0.224685923,0.568577245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790700943,142.251064,0.790700943,37.74893599,0,0.986764967,0,0,0,1,23,0% -1/14/2018 8:00,162.9893918,345.5411162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.844701532,6.030830179,0.029540916,-0.029540916,0.525101895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908243202,155.2636929,0.908243202,24.73630709,0,0.994948666,0,0,0,1,0,0% -1/14/2018 9:00,161.1130232,31.63811009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811952723,0.55218919,0.268260536,-0.268260536,0.484278436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975909157,167.3980028,0.975909157,12.60199724,0,0.998765723,0,0,0,1,1,0% -1/14/2018 10:00,152.4725935,60.21108946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661148775,1.050881757,0.513587279,-0.513587279,0.442325092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989080908,171.5252509,0.989080908,8.474749147,0,0.999448018,0,0,0,1,2,0% -1/14/2018 11:00,141.4602981,76.21433971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468947962,1.330191165,0.791887189,-0.791887189,0.394733005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946851374,161.235967,0.946851374,18.76403299,0,0.997193402,0,0,0,1,3,0% -1/14/2018 12:00,129.7496592,87.18962496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264558756,1.521746029,1.148675648,-1.148675648,0.333718585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852086552,148.4393447,0.852086552,31.56065526,0,0.991320515,0,0,0,1,4,0% -1/14/2018 13:00,117.9224719,96.18237826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058135396,1.678699183,1.693276284,-1.693276284,0.240586391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71123094,135.3351564,0.71123094,44.66484359,0,0.979699346,0,0,0,1,5,0% -1/14/2018 14:00,106.2812398,104.543082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854957568,1.824620992,2.820262113,-2.820262113,0.047860464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533869262,122.26726,0.533869262,57.73273998,0,0.956344112,0,0,0,1,6,0% -1/14/2018 15:00,95.07479748,113.0504077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659368252,1.973101836,8.22880945,-8.22880945,0,#DIV/0!,0,0,0.467250732,1,0.120931279,0,0.948833228,0.987595191,0.724496596,1,0,0,0.065426958,0.312029739,0.831274144,0.555770739,0.961238037,0.922476074,0,0,0,0,0,0,-0.332074272,109.3947238,0.332074272,70.60527619,0,0.899431274,0,0,0,1,7,0% -1/14/2018 16:00,84.4351472,122.2958019,35.91420767,176.6171652,18.78722174,18.49145415,0,18.49145415,18.22071769,0.270736468,29.94989222,20.67557272,9.274319503,0.566504053,8.70781545,1.473671323,2.134464405,-6.277072803,6.277072803,0.39640364,0.523113914,0.192805867,6.201299461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.5144469,0.410430258,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.139687195,5.96092492,17.65413409,6.371355178,0,20.67557272,-0.117064345,96.72270766,0.117064345,83.27729234,0,0.622884467,17.65413409,19.24984827,30.25277479,1,8,71% -1/14/2018 17:00,75.12870161,132.8158777,189.1722581,529.5850944,53.25494961,100.818425,47.74324822,53.07517678,51.64911639,1.426060388,47.47283735,0,47.47283735,1.605833221,45.86700413,1.311243206,2.318074365,-1.720441784,1.720441784,0.824366562,0.281515642,1.246106002,40.07905249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.64709524,1.163420702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902799557,38.52550973,50.5498948,39.68893044,47.74324822,0,0.090152175,84.82763832,-0.090152175,95.17236168,0.495382212,0,74.20105071,39.68893044,100.1766619,1,9,35% -1/14/2018 18:00,67.3572349,145.0777755,331.4786833,678.6164822,70.22199723,260.9434054,190.3400341,70.60337126,68.10454493,2.498826332,82.4882968,0,82.4882968,2.117452308,80.37084449,1.175605524,2.532084854,-0.617323211,0.617323211,0.635722176,0.211844685,1.781394543,57.29577201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46467907,1.534086989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.290614282,55.07487541,66.75529335,56.6089624,190.3400341,0,0.28048248,73.71099726,-0.28048248,106.2890027,0.871735746,0,232.6815051,56.6089624,269.7309388,1,10,16% -1/14/2018 19:00,61.81876333,159.2911005,431.0449588,744.790358,79.30867895,407.9125759,327.7459473,80.16662863,76.91722966,3.249398974,106.90329,0,106.90329,2.391449288,104.5118407,1.07894096,2.780154173,-0.023092425,0.023092425,0.534102727,0.183991663,2.014055278,64.77894102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93576684,1.732596868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.459176193,62.2679821,75.39494303,64.00057896,327.7459473,0,0.440051276,63.89284722,-0.440051276,116.1071528,0.936376878,0,382.2886698,64.00057896,424.1757687,1,11,11% -1/14/2018 20:00,59.17664859,175.0695408,477.2317961,769.2254396,83.08614293,513.293771,429.115407,84.17836403,80.58078916,3.597574862,118.2157279,0,118.2157279,2.505353765,115.7103742,1.032827358,3.055539906,0.435735449,-0.435735449,0.455638539,0.174100183,1.980148264,63.68837488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45731958,1.815120274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.434610677,61.21968844,78.89193026,63.03480872,429.115407,0,0.557853894,56.09249022,-0.557853894,123.9075098,0.960370797,0,491.0018356,63.03480872,532.2568572,1,12,8% -1/14/2018 21:00,59.82724615,191.2825639,465.9529015,763.5536894,82.18402394,561.0755172,477.857095,83.21842218,79.70587239,3.512549791,115.4538271,0,115.4538271,2.478151548,112.9756756,1.044182428,3.338510542,0.893153072,-0.893153072,0.377415519,0.176378393,1.711405476,55.04468302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.6163163,1.795412361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.239907441,52.91104304,77.85622374,54.7064554,477.857095,0,0.625832999,51.25664652,-0.625832999,128.7433535,0.970106482,0,541.428489,54.7064554,577.23277,1,13,7% -1/14/2018 22:00,63.66723157,206.5494838,398.1763131,725.2418498,76.47075266,540.8595884,463.6930898,77.16649856,74.16487732,3.001621238,98.84833237,0,98.84833237,2.30587534,96.54245703,1.111202817,3.604968561,1.466773321,-1.466773321,0.279320679,0.192052491,1.253864051,40.32857799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.29010108,1.670598834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908420236,38.76536314,72.19852131,40.43596197,463.6930898,0,0.639363393,50.25563432,-0.639363393,129.7443657,0.971797212,0,522.8141731,40.43596197,549.2787015,1,14,5% -1/14/2018 23:00,70.15971491,220.0112334,280.1773438,634.5140611,64.82366687,444.1534533,379.172364,64.98108931,62.86899414,2.112095165,69.88691352,0,69.88691352,1.95467273,67.93224078,1.224518027,3.839920414,2.40045338,-2.40045338,0.119651985,0.231366555,0.682914444,21.96487601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.43206851,1.416153739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.49476919,21.1134743,60.9268377,22.52962804,379.172364,0,0.597579135,53.30328798,-0.597579135,126.696712,0.966329073,0,427.3321168,22.52962804,442.0773077,1,15,3% -1/14/2018 0:00,78.61360119,231.5546926,127.0108751,426.2593506,42.8567794,257.1784537,214.6565027,42.521951,41.56448938,0.957461626,32.08754717,0,32.08754717,1.292290024,30.79525714,1.372066178,4.041391784,4.71043205,-4.71043205,0,0.337426062,0.323072506,10.39112234,0.215918506,1,0.209189004,0,0.937648783,0.976410746,0.724496596,1,40.23614321,0.936259723,0.033510796,0.312029739,0.909367255,0.63386385,0.961238037,0.922476074,0.224002365,9.988342043,40.46014557,10.92460177,168.3081913,0,0.503581921,59.76273771,-0.503581921,120.2372623,0.950711289,0,200.4726431,10.92460177,207.6225764,1,16,4% -1/14/2018 1:00,88.2450892,241.5255052,2.785516342,18.79827896,2.209834411,9.061370731,6.897172581,2.164198149,2.14319975,0.020998399,0.742015348,0,0.742015348,0.066634661,0.675380687,1.540167355,4.215415294,32.28225421,-32.28225421,0,0.793330263,0.016658665,0.535799938,0.833067268,1,0.030966869,0,0.958392194,0.997154157,0.724496596,1,2.067893785,0.048276585,0.10203162,0.312029739,0.751694716,0.476191312,0.961238037,0.922476074,0.01175609,0.51503128,2.079649875,0.563307865,1.151363862,0,0.36690447,68.47516586,-0.36690447,111.5248341,0.913724746,0,3.131679527,0.563307865,3.500353258,1,17,12% -1/14/2018 2:00,99.37313212,250.4307424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734388344,4.370841003,-6.057968316,6.057968316,0.433872715,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184402725,79.37368803,-0.184402725,100.626312,0.778854332,0,0,0,0,1,18,0% -1/14/2018 3:00,110.7771261,258.8242261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933425587,4.517334929,-2.604490783,2.604490783,0.975547845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017348008,90.99401752,0.017348008,89.00598248,0,0,0,0,0,1,19,0% -1/14/2018 4:00,122.5161567,267.3490218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138310321,4.666120682,-1.4973424,1.4973424,0.786214321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229835602,103.2873931,0.229835602,76.71260686,0,0.832453199,0,0,0,1,20,0% -1/14/2018 5:00,134.332143,276.9445352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344538186,4.833593984,-0.912473572,0.912473572,0.686195861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438583133,116.0135144,0.438583133,63.98648562,0,0.935996528,0,0,0,1,21,0% -1/14/2018 6:00,145.8508536,289.42666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.545577613,5.05144816,-0.523946796,0.523946796,0.619753869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629367527,129.0034752,0.629367527,50.99652476,0,0.970555164,0,0,0,1,22,0% -1/14/2018 7:00,156.2123047,309.1825844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726419049,5.396254088,-0.225821545,0.225821545,0.568771448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789188191,142.1097113,0.789188191,37.89028869,0,0.986643756,0,0,0,1,23,0% -1/15/2018 8:00,162.7948075,345.3936301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.841305396,6.028256061,0.029106463,-0.029106463,0.525176191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907152367,155.1147491,0.907152367,24.88525093,0,0.994882468,0,0,0,1,0,0% -1/15/2018 9:00,160.9873199,31.16075854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.809758787,0.543857834,0.26839258,-0.26839258,0.484255855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975216994,167.2175045,0.975216994,12.7824955,0,0.998729359,0,0,0,1,1,0% -1/15/2018 10:00,152.4104995,59.80063827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660065031,1.043718033,0.514296436,-0.514296436,0.442203819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98873664,171.3924394,0.98873664,8.607560591,0,0.999430417,0,0,0,1,2,0% -1/15/2018 11:00,141.425319,75.89840165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.468337463,1.324677006,0.793343691,-0.793343691,0.394483928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946780193,161.2232926,0.946780193,18.77670742,0,0.997189432,0,0,0,1,3,0% -1/15/2018 12:00,129.7229643,86.93158325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264092842,1.517242352,1.151355074,-1.151355074,0.333260376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852194776,148.4511938,0.852194776,31.54880622,0,0.991327967,0,0,0,1,4,0% -1/15/2018 13:00,117.8941797,95.9578346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057641606,1.674780157,1.698552611,-1.698552611,0.239684086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71141245,135.3499527,0.71141245,44.65004733,0,0.979717283,0,0,0,1,5,0% -1/15/2018 14:00,106.2448605,104.3375317,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854322629,1.821033461,2.833893995,-2.833893995,0.045529274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534012807,122.2769872,0.534012807,57.72301281,0,0.956369287,0,0,0,1,6,0% -1/15/2018 15:00,95.02498308,112.8550579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658498826,1.969692337,8.337232337,-8.337232337,0,#DIV/0!,0,0,0.472461713,1,0.119373603,0,0.949014794,0.987776757,0.724496596,1,0,0,0.066022351,0.312029739,0.829894121,0.554390717,0.961238037,0.922476074,0,0,0,0,0,0,-0.33207111,109.3945317,0.33207111,70.60546827,0,0.89942984,0,0,0,1,7,0% -1/15/2018 16:00,84.36821161,122.1058535,36.64379893,178.4850259,19.12816221,18.82761398,0,18.82761398,18.55137754,0.276236435,30.31561181,20.85411385,9.461497965,0.576784666,8.884713299,1.472503077,2.131149179,-6.228558397,6.228558397,0.404700093,0.522002706,0.197632875,6.356552628,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.83228973,0.417878527,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143184345,6.110160169,17.97547407,6.528038696,0,20.85411385,-0.116839571,96.70974008,0.116839571,83.29025992,0,0.62206279,17.97547407,19.50060694,30.7382313,1,8,71% -1/15/2018 17:00,75.0369201,132.6307272,190.5659614,530.1535019,53.68214524,101.5966551,48.09665787,53.49999721,52.0634305,1.436566712,47.82363837,0,47.82363837,1.618714745,46.20492363,1.309641316,2.31484288,-1.720144723,1.720144723,0.824315762,0.281698499,1.255280251,40.37412786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.04534972,1.172753322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909446268,38.8091474,50.95479599,39.98190072,48.09665787,0,0.090722136,84.79484763,-0.090722136,95.20515237,0.498866589,0,74.94861166,39.98190072,101.115966,1,9,35% -1/15/2018 18:00,67.23701709,144.9027035,333.348733,678.8005017,70.70729899,262.1310395,191.0429029,71.0881366,68.57521304,2.512923556,82.95634564,0,82.95634564,2.132085947,80.82425969,1.173507328,2.52902927,-0.620729665,0.620729665,0.636304714,0.212112098,1.792842507,57.66397788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91710316,1.54468901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298908293,55.42880889,67.21601145,56.9734979,191.0429029,0,0.2814419,73.65371934,-0.2814419,106.3462807,0.872343439,0,233.8710344,56.9734979,271.1590493,1,10,16% -1/15/2018 19:00,61.66824409,159.138917,433.3614313,744.9233505,79.83858564,409.5306123,328.832593,80.69801924,77.43115771,3.266861522,107.4809242,0,107.4809242,2.40742793,105.0734963,1.076313903,2.777498071,-0.027873314,0.027873314,0.534920307,0.184230944,2.027422029,65.20886168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.42977403,1.74417334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468860359,62.68123818,75.89863439,64.42541152,328.832593,0,0.441431448,63.80475115,-0.441431448,116.1952488,0.93673213,0,383.9266895,64.42541152,426.0918329,1,11,11% -1/15/2018 20:00,58.99910318,174.9578442,479.9502897,769.4380604,83.65006897,515.3683983,430.6226195,84.74577877,81.12771076,3.618068015,118.8918626,0,118.8918626,2.522358215,116.3695044,1.029728606,3.053590433,0.429549097,-0.429549097,0.456696468,0.174289027,1.994960415,64.16478456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98304142,1.827439941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445342029,61.67763155,79.42838345,63.50507149,430.6226195,0,0.559658589,55.96780979,-0.559658589,124.0321902,0.960659818,0,493.1102309,63.50507149,534.6730301,1,12,8% -1/15/2018 21:00,59.63179991,191.2237608,469.0013425,763.966281,82.77438474,563.6131474,479.7991855,83.81396186,80.27843164,3.535530227,116.2107585,0,116.2107585,2.495953105,113.7148054,1.040771247,3.337484235,0.884684815,-0.884684815,0.378863676,0.17649072,1.727065763,55.54837168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16668203,1.808309528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.251253266,53.39520774,78.41793529,55.20351727,479.7991855,0,0.628037123,51.09454693,-0.628037123,128.9054531,0.970386872,0,544.008766,55.20351727,580.138364,1,13,7% -1/15/2018 22:00,63.4652525,206.5424762,401.4523851,726.0764784,77.08463687,543.8654239,466.0788556,77.78656831,74.76025066,3.026317653,99.66116484,0,99.66116484,2.324386214,97.33677862,1.107677617,3.604846254,1.453690595,-1.453690595,0.281557957,0.192014395,1.26956801,40.83367131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.86239658,1.684009899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.919797701,39.25087805,72.78219428,40.93488795,466.0788556,0,0.641914274,50.06528934,-0.641914274,129.9347107,0.972107979,0,525.8611688,40.93488795,552.6522342,1,14,5% -1/15/2018 23:00,69.96012854,220.0450604,283.5332136,636.347038,65.47364038,447.6989563,382.0621947,65.63676168,63.49936855,2.137393129,70.72018209,0,70.72018209,1.974271829,68.74591026,1.221034588,3.840510807,2.375320491,-2.375320491,0.123949962,0.230920532,0.697320025,22.42820903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.03800836,1.43035322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.505205984,21.55884762,61.54321435,22.98920084,382.0621947,0,0.600399109,53.10151292,-0.600399109,126.8984871,0.966722062,0,430.8911668,22.98920084,445.937139,1,15,3% -1/15/2018 0:00,78.42161818,231.6174172,130.1193784,430.9431138,43.62551651,261.5925087,218.3015676,43.29094106,42.31004623,0.980894837,32.86442004,0,32.86442004,1.315470284,31.54894976,1.368715442,4.042486535,4.63190269,-4.63190269,0,0.335273017,0.328867571,10.57751156,0.207574523,1,0.212630504,0,0.937177573,0.975939536,0.724496596,1,40.95162043,0.953053743,0.032331713,0.312029739,0.912406536,0.636903132,0.961238037,0.922476074,0.228263896,10.16750644,41.17988432,11.12056019,172.9877237,0,0.506567017,59.56457022,-0.506567017,120.4354298,0.951296377,0,205.7424791,11.12056019,213.0206634,1,16,4% -1/15/2018 1:00,88.07455087,241.6089403,3.422805322,22.40183972,2.670123624,10.89828276,8.282870665,2.615412097,2.589609545,0.025802552,0.910412857,0,0.910412857,0.080514079,0.829898778,1.5371909,4.21687151,29.4274695,-29.4274695,0,0.780098011,0.02012852,0.647402386,0.818255837,1,0.033968784,0,0.958104069,0.996866032,0.724496596,1,2.499358622,0.058332176,0.100730216,0.312029739,0.754339936,0.478836532,0.961238037,0.922476074,0.014175888,0.622307799,2.51353451,0.680639975,1.505363397,0,0.369740645,68.30037693,-0.369740645,111.6996231,0.914770074,0,3.890595897,0.680639975,4.336061147,1,17,11% -1/15/2018 2:00,99.19561099,250.5309722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731290015,4.372590344,-6.176919376,6.176919376,0.413530885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.187442062,79.19645663,-0.187442062,100.8035434,0.783250907,0,0,0,0,1,18,0% -1/15/2018 3:00,110.6053886,258.94079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930428202,4.519369354,-2.627380623,2.627380623,0.979462238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014455696,90.82827922,0.014455696,89.17172078,0,0,0,0,0,1,19,0% -1/15/2018 4:00,122.3474142,267.4840939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13536521,4.668478135,-1.506002323,1.506002323,0.787695255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227188008,103.1315744,0.227188008,76.86842564,0,0.829917961,0,0,0,1,20,0% -1/15/2018 5:00,134.1621762,277.1016643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341571707,4.836336404,-0.916622218,0.916622218,0.686905321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436260918,115.8655552,0.436260918,64.13444478,0,0.935389688,0,0,0,1,21,0% -1/15/2018 6:00,145.6729722,289.6044216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.542472995,5.054550684,-0.526107683,0.526107683,0.620123402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627428785,128.8606767,0.627428785,51.13932333,0,0.970309681,0,0,0,1,22,0% -1/15/2018 7:00,156.0174177,309.3338415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72301763,5.398894022,-0.226896436,0.226896436,0.568955265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787664477,141.9677858,0.787664477,38.03221423,0,0.986521195,0,0,0,1,23,0% -1/16/2018 8:00,162.5940972,345.2619385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.837802341,6.025957609,0.028750269,-0.028750269,0.525237104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906046546,154.9646061,0.906046546,25.03539392,0,0.994815197,0,0,0,1,0,0% -1/16/2018 9:00,160.853345,30.68724429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807420483,0.535593451,0.268623117,-0.268623117,0.484216431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974503063,167.0339185,0.974503063,12.96608155,0,0.998691798,0,0,0,1,1,0% -1/16/2018 10:00,152.3408791,59.38496081,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658849925,1.036463092,0.515133004,-0.515133004,0.442060758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98836153,171.2500073,0.98836153,8.749992654,0,0.999411224,0,0,0,1,2,0% -1/16/2018 11:00,141.3836957,75.57639365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467610998,1.319056906,0.794975431,-0.794975431,0.394204884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946667434,161.2032314,0.946667434,18.79676864,0,0.997183141,0,0,0,1,3,0% -1/16/2018 12:00,129.6900923,86.66809467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263519117,1.512643608,1.154301417,-1.154301417,0.332756522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852249759,148.4572153,0.852249759,31.54278472,0,0.991331752,0,0,0,1,4,0% -1/16/2018 13:00,117.8598935,95.72853151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057043198,1.670778063,1.704314064,-1.704314064,0.238698819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711528943,135.3594508,0.711528943,44.64054916,0,0.97972879,0,0,0,1,5,0% -1/16/2018 14:00,106.2024904,104.1278005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85358313,1.817372961,2.848803526,-2.848803526,0.042979594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534080253,122.2815579,0.534080253,57.71844211,0,0.956381111,0,0,0,1,6,0% -1/16/2018 15:00,94.96905946,112.6560331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657522775,1.966218699,8.458665305,-8.458665305,0,#DIV/0!,0,0,0.478178268,1,0.11767576,0,0.949212062,0.987974025,0.724496596,1,0,0,0.066672717,0.312029739,0.828389904,0.5528865,0.961238037,0.922476074,0,0,0,0,0,0,-0.331982229,109.3891329,0.331982229,70.61086706,0,0.899389528,0,0,0,1,7,0% -1/16/2018 16:00,84.29506898,121.9127485,37.53364287,181.4994346,19.49162145,19.1868216,0,19.1868216,18.90387714,0.282944454,30.83712812,21.14891755,9.688210565,0.587744303,9.100466262,1.471226497,2.127778862,-6.174770668,6.174770668,0.413898336,0.519310676,0.203229717,6.536566305,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.17112576,0.425818747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.147239238,6.283196163,18.31836499,6.70901491,0,21.14891755,-0.116523325,96.69149589,0.116523325,83.30850411,0,0.620901361,18.31836499,19.84040661,31.30351431,1,8,71% -1/16/2018 17:00,74.93859723,132.4430748,192.2388515,531.9131911,54.0190491,102.4507759,48.61142282,53.83935312,52.39017546,1.449177664,48.23940884,0,48.23940884,1.628873639,46.6105352,1.307925258,2.311567727,-1.719185601,1.719185601,0.824151742,0.280999645,1.265950945,40.71733407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.35942941,1.180113407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91717715,39.13905027,51.27660656,40.31916367,48.61142282,0,0.091389767,84.75643557,-0.091389767,95.24356443,0.502892797,0,75.72294097,40.31916367,102.1110272,1,9,35% -1/16/2018 18:00,67.11001063,144.7260906,335.5294061,679.9662852,71.04768249,263.525876,192.0911808,71.43469512,68.90533273,2.529362391,83.49533889,0,83.49533889,2.142349765,81.35298913,1.171290647,2.525946795,-0.623939233,0.623939233,0.636853582,0.211748005,1.805330161,58.06562376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.23442676,1.552125112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.307955556,55.81488619,67.54238232,57.3670113,192.0911808,0,0.282501037,73.59046871,-0.282501037,106.4095313,0.873009499,0,235.2398079,57.3670113,272.7853695,1,10,16% -1/16/2018 19:00,61.51082727,158.986636,435.9962596,745.9183505,80.19866627,411.441902,330.3747975,81.06710455,77.78038058,3.286723971,108.1306266,0,108.1306266,2.41828569,105.7123409,1.073566461,2.774840265,-0.032587537,0.032587537,0.535726487,0.183943473,2.041471584,65.66074364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.76546033,1.75203975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479039213,63.11560431,76.24449955,64.86764406,330.3747975,0,0.442910135,63.71029285,-0.442910135,116.2897072,0.937110283,0,385.8421194,64.86764406,428.2966951,1,11,11% -1/16/2018 20:00,58.81484574,174.8479685,482.9835368,770.4615136,84.03443454,517.7998857,432.6584655,85.14142019,81.50048628,3.640933914,119.6388985,0,119.6388985,2.533948255,117.1049503,1.026512707,3.051672741,0.423374998,-0.423374998,0.457752301,0.173990267,2.010152779,64.65342323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.34136743,1.835836885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.456348846,62.14732962,79.79771628,63.98316651,432.6584655,0,0.561557531,55.83642001,-0.561557531,124.16358,0.960961928,0,495.5660294,63.98316651,537.4417322,1,12,8% -1/16/2018 21:00,59.4302262,191.1687678,472.353182,765.1919728,83.18629065,566.5610037,482.3222888,84.23871487,80.67791706,3.560797809,117.0358713,0,117.0358713,2.508373588,114.5274977,1.037253122,3.336524425,0.876201937,-0.876201937,0.380314334,0.176110364,1.742823235,56.05518617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55068261,1.817308126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262669501,53.88237711,78.81335211,55.69968523,482.3222888,0,0.630328474,50.92563906,-0.630328474,129.0743609,0.970676279,0,546.9921567,55.69968523,583.4464867,1,13,7% -1/16/2018 22:00,63.2580451,206.5407725,405.0132568,727.7782189,77.53267171,547.3323674,469.0844308,78.2479366,75.1947756,3.053161008,100.5380493,0,100.5380493,2.337896117,98.2001532,1.104061165,3.604816519,1.44059108,-1.44059108,0.283798106,0.191432429,1.285082718,41.33267764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.28007848,1.693797778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.931038054,39.73054191,73.21111653,41.42433969,469.0844308,0,0.644543102,49.86857254,-0.644543102,130.1314275,0.972425669,0,529.3608579,41.42433969,556.4722597,1,14,5% -1/16/2018 23:00,69.75630476,220.0849996,287.1452836,639.1571895,65.98806451,451.7575851,385.5946817,66.16290333,63.99828089,2.164622439,71.61148209,0,71.61148209,1.989783615,69.62169847,1.217477192,3.841207877,2.350269024,-2.350269024,0.128234015,0.229807238,0.711234645,22.87575105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.51758189,1.441591456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.515287079,21.98904203,62.03286897,23.43063348,385.5946817,0,0.603286153,52.89438469,-0.603286153,127.1056153,0.967120591,0,434.9494253,23.43063348,450.2843063,1,15,4% -1/16/2018 0:00,78.22628174,231.6865843,133.4347931,436.7137269,44.32465807,266.546664,222.55267,43.99399392,42.98810609,1.005887833,33.68936242,0,33.68936242,1.336551981,32.35281044,1.365306178,4.043693729,4.554727608,-4.554727608,0,0.332182162,0.334137995,10.74702652,0.199199587,1,0.21612304,0,0.936696733,0.975458697,0.724496596,1,41.60119499,0.968327361,0.031139664,0.312029739,0.915490375,0.639986971,0.961238037,0.922476074,0.232181512,10.33045068,41.8333765,11.29877804,178.22027,0,0.509607682,59.36229883,-0.509607682,120.6377012,0.951885309,0,211.4786334,11.29877804,218.8734576,1,16,3% -1/16/2018 1:00,87.90053926,241.6989589,4.1698659,26.68937807,3.192119132,13.07268649,9.945387318,3.127299173,3.095864963,0.031434211,1.107286434,0,1.107286434,0.096254169,1.011032265,1.534153824,4.218442632,26.99270496,-26.99270496,0,0.765520813,0.024063542,0.773966241,0.803376835,1,0.037030112,0,0.957808023,0.996569987,0.724496596,1,2.988839435,0.069735818,0.099409284,0.312029739,0.757038766,0.481535361,0.961238037,0.922476074,0.016913504,0.74396579,3.005752939,0.813701608,1.955493536,0,0.37263466,68.12180438,-0.37263466,111.8781956,0.915820318,0,4.796633652,0.813701608,5.32918508,1,17,11% -1/16/2018 2:00,99.01600756,250.6379458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728155344,4.374457385,-6.301964342,6.301964342,0.392146937,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190513798,79.01722962,-0.190513798,100.9827704,0.787551818,0,0,0,0,1,18,0% -1/16/2018 3:00,110.4319027,259.0644147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927400302,4.521527011,-2.650820639,2.650820639,0.983470717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011540543,90.66123909,0.011540543,89.33876091,0,0,0,0,0,1,19,0% -1/16/2018 4:00,122.177046,267.626819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132391723,4.670969157,-1.514761649,1.514761649,0.789193188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224524951,102.9749452,0.224524951,77.02505483,0,0.827307601,0,0,0,1,20,0% -1/16/2018 5:00,133.9904403,277.26746,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33857435,4.839230086,-0.920767063,0.920767063,0.687614131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433927926,115.7170958,0.433927926,64.28290424,0,0.934773491,0,0,0,1,21,0% -1/16/2018 6:00,145.4927764,289.7924865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539327985,5.057833038,-0.528226967,0.528226967,0.620485821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548094,128.7174959,0.62548094,51.2825041,0,0.970061513,0,0,0,1,22,0% -1/16/2018 7:00,155.8189774,309.4978824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719554192,5.401757076,-0.227909054,0.227909054,0.569128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786130206,141.8253297,0.786130206,38.17467035,0,0.986397305,0,0,0,1,23,0% -1/17/2018 8:00,162.3873879,345.145853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.834194583,6.023931535,0.028473515,-0.028473515,0.525284432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904925685,154.8132759,0.904925685,25.18672412,0,0.994746844,0,0,0,1,0,0% -1/17/2018 9:00,160.7111467,30.21837601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804938655,0.527410156,0.268953113,-0.268953113,0.484159998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973766888,166.8472506,0.973766888,13.15274942,0,0.998653009,0,0,0,1,1,0% -1/17/2018 10:00,152.2636773,58.96463983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6575025,1.029127107,0.516097873,-0.516097873,0.441895755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987954751,171.0981059,0.987954751,8.901894142,0,0.999390395,0,0,0,1,2,0% -1/17/2018 11:00,141.3353581,75.2486516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.466767349,1.313336728,0.796783449,-0.796783449,0.393895695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946512006,161.1756128,0.946512006,18.8243872,0,0.997174468,0,0,0,1,3,0% -1/17/2018 12:00,129.650982,86.39938447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262836514,1.507953731,1.157516447,-1.157516447,0.332206719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852250263,148.4572704,0.852250263,31.54272956,0,0.991331787,0,0,0,1,4,0% -1/17/2018 13:00,117.8195664,95.49464054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056339358,1.666695895,1.710565495,-1.710565495,0.237629762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711579146,135.3635446,0.711579146,44.63645536,0,0.979733747,0,0,0,1,5,0% -1/17/2018 14:00,106.1540987,103.9140303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852738537,1.813641968,2.865015961,-2.865015961,0.040207105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.534070418,122.2808914,0.534070418,57.7191086,0,0.956379387,0,0,0,1,6,0% -1/17/2018 15:00,94.90701281,112.4534566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656439857,1.962683072,8.594006788,-8.594006788,0,#DIV/0!,0,0,0.484405331,1,0.115839225,0,0.949424698,0.988186661,0.724496596,1,0,0,0.067377861,0.312029739,0.826762798,0.551259394,0.961238037,0.922476074,0,0,0,0,0,0,-0.331806657,109.378469,0.331806657,70.62153103,0,0.899309835,0,0,0,1,7,0% -1/17/2018 16:00,84.21571619,121.7165968,38.58847537,185.6728907,19.87573048,19.5673001,0,19.5673001,19.27640388,0.290896227,31.51492557,21.55937635,9.955549223,0.599326608,9.356222615,1.46984153,2.124355369,-6.116058555,6.116058555,0.423938699,0.515069079,0.209634384,6.742562415,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.52921262,0.434210087,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151879398,6.481207459,18.68109202,6.915417546,0,21.55937635,-0.116114831,96.66793097,0.116114831,83.33206903,0,0.619391786,18.68109202,20.26911818,31.94682448,1,8,71% -1/17/2018 17:00,74.83375383,132.2530189,194.1918901,534.8510544,54.26382188,103.3808578,49.28938992,54.09146793,52.62756743,1.463900494,48.72032646,0,48.72032646,1.636254442,47.08407202,1.306095396,2.308250626,-1.717573005,1.717573005,0.823875972,0.279434027,1.278118374,41.1086804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5876196,1.185460773,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.925992411,39.51522725,51.51361202,40.70068802,49.28938992,0,0.092155357,84.71238461,-0.092155357,95.28761539,0.507437944,0,76.52491871,40.70068802,103.162705,1,9,35% -1/17/2018 18:00,66.97625439,144.5480262,338.0204998,682.1018902,71.24186414,265.1266351,193.4848347,71.64180038,69.09365908,2.548141308,84.10518869,0,84.10518869,2.148205058,81.95698363,1.16895616,2.522838984,-0.626948503,0.626948503,0.637368198,0.210761963,1.818856101,58.5006645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.41545321,1.556367252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317755054,56.2330639,67.73320826,57.78943115,193.4848347,0,0.283659725,73.52124943,-0.283659725,106.4787506,0.873732467,0,236.7871902,57.78943115,274.6092171,1,10,16% -1/17/2018 19:00,61.34656868,158.8343421,438.9485847,747.7643616,80.38778548,413.6440915,332.3713146,81.27277699,77.96379715,3.308979844,108.8521547,0,108.8521547,2.423988331,106.4281663,1.070699608,2.772182234,-0.037229356,0.037229356,0.536520284,0.183137133,2.056202163,66.1345297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94176731,1.756171295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489711467,63.5710255,76.43147878,65.3271968,332.3713146,0,0.444486701,63.60949725,-0.444486701,116.3905028,0.937510695,0,388.033141,65.3271968,430.7884847,1,11,11% -1/17/2018 20:00,58.62394929,174.7400012,486.3302498,772.2847136,84.23804561,520.58488,435.2207594,85.36412058,81.69795773,3.666162849,120.4564875,0,120.4564875,2.54008788,117.9163996,1.023180936,3.049788355,0.417220524,-0.417220524,0.458804778,0.17321161,2.025723888,65.15424362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.5311845,1.840285023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467630061,62.62873723,79.99881456,64.46902226,435.2207594,0,0.563549623,55.69836494,-0.563549623,124.3016351,0.961276669,0,498.3663763,64.46902226,540.560062,1,12,8% -1/17/2018 21:00,59.22261658,191.1176738,476.0069169,767.2185299,83.41830696,569.9146896,485.4234112,84.49127843,80.90293722,3.588341206,117.9287578,0,117.9287578,2.515369736,115.413388,1.033629651,3.335632667,0.867714335,-0.867714335,0.381765799,0.175245997,1.758677847,56.56512499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76698055,1.822376811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.274156114,54.3725497,79.04113666,56.19492651,485.4234112,0,0.632705536,50.74998465,-0.632705536,129.2500153,0.970974297,0,550.3747919,56.19492651,587.1532474,1,13,7% -1/17/2018 22:00,63.04571779,206.5444498,408.8575134,730.3323699,77.81289642,551.2548656,472.7061745,78.54869113,75.46655049,3.082140638,101.4785836,0,101.4785836,2.346345926,99.13223772,1.100355355,3.6048807,1.427489705,-1.427489705,0.286038573,0.190317883,1.300411231,41.82569532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.54131884,1.699919636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.94214351,40.20444926,73.48346235,41.9043689,472.7061745,0,0.647248012,49.66556632,-0.647248012,130.3344337,0.972749859,0,533.308327,41.9043689,560.7338984,1,14,5% -1/17/2018 23:00,69.54836232,220.1311022,291.0128331,642.9259451,66.36381683,456.3227143,389.7662338,66.55648056,64.3627029,2.19377766,72.56054454,0,72.56054454,2.001113934,70.5594306,1.213847912,3.84201252,2.325325696,-2.325325696,0.132499576,0.228044297,0.724666406,23.30776264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.86787818,1.449800233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525018344,22.404308,62.39289652,23.85410823,389.7662338,0,0.606238147,52.68200926,-0.606238147,127.3179907,0.967524161,0,439.5011447,23.85410823,455.1131815,1,15,4% -1/17/2018 0:00,78.02771282,231.7622162,136.9589654,443.555929,44.94836396,272.0373196,227.4118602,44.62545947,43.59300494,1.032454533,34.56264584,0,34.56264584,1.355359015,33.20728683,1.361840496,4.045013754,4.478948521,-4.478948521,0,0.328188548,0.338839754,10.89825124,0.190802085,1,0.219664039,0,0.936206511,0.974968474,0.724496596,1,42.17939759,0.981952993,0.029935668,0.312029739,0.918616478,0.643113074,0.961238037,0.922476074,0.235723938,10.47581362,42.41512153,11.45776662,184.021203,0,0.512701658,59.15604603,-0.512701658,120.843954,0.952477397,0,217.691158,11.45776662,225.1900371,1,16,3% -1/17/2018 1:00,87.72321479,241.7955562,5.038915104,31.75974138,3.77719773,15.62972161,11.92843485,3.701286753,3.663301282,0.037985471,1.335639754,0,1.335639754,0.113896448,1.221743306,1.531058929,4.220128572,24.89453737,-24.89453737,0,0.749605352,0.028474112,0.915825321,0.78845215,1,0.04014787,0,0.95750422,0.996266184,0.724496596,1,3.537665545,0.082517589,0.098070403,0.312029739,0.759788573,0.484285168,0.961238037,0.922476074,0.019974772,0.880326133,3.557640318,0.962843722,2.523434748,0,0.375583501,67.93961866,-0.375583501,112.0603813,0.916873811,0,5.871311553,0.962843722,6.501473512,1,17,11% -1/17/2018 2:00,98.83443212,250.7516339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724986255,4.376441617,-6.433476012,6.433476012,0.369657117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193615727,78.83613044,-0.193615727,101.1638696,0.791756516,0,0,0,0,1,18,0% -1/17/2018 3:00,110.2567683,259.195047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92434363,4.523806975,-2.674814288,2.674814288,0.987573873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008604544,90.49301011,0.008604544,89.50698989,0,0,0,0,0,1,19,0% -1/17/2018 4:00,122.0051397,267.7771153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129391392,4.673592324,-1.523616674,1.523616674,0.790707486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221848112,102.8176047,0.221848112,77.18239527,0,0.824620575,0,0,0,1,20,0% -1/17/2018 5:00,133.8170104,277.441798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335547426,4.842272858,-0.924905166,0.924905166,0.688321788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431585448,115.5682188,0.431585448,64.4317812,0,0.934148086,0,0,0,1,21,0% -1/17/2018 6:00,145.3103316,289.9906526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536143724,5.061291688,-0.53030256,0.53030256,0.620840768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623524839,128.5739963,0.623524839,51.4260037,0,0.969810733,0,0,0,1,22,0% -1/17/2018 7:00,155.6170565,309.6743634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.716030009,5.404837251,-0.228857886,0.228857886,0.569290693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784585758,141.6823821,0.784585758,38.31761787,0,0.986272103,0,0,0,1,23,0% -1/18/2018 8:00,162.1748052,345.0451515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.830484315,6.022173961,0.028277351,-0.028277351,0.525317978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903789707,154.660767,0.903789707,25.33923298,0,0.994677396,0,0,0,1,0,0% -1/18/2018 9:00,160.5607822,29.75492013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802314299,0.519321325,0.269383507,-0.269383507,0.484086397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973007979,166.6575041,0.973007979,13.34249592,0,0.99861296,0,0,0,1,1,0% -1/18/2018 10:00,152.1788471,58.54026023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656021933,1.021720286,0.517191921,-0.517191921,0.441708662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987515466,170.9369024,0.987515466,9.063097642,0,0.999367882,0,0,0,1,2,0% -1/18/2018 11:00,141.2802419,74.91551677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465805389,1.307522428,0.798768793,-0.798768793,0.393556181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946312825,161.1402764,0.946312825,18.85972363,0,0.997163349,0,0,0,1,3,0% -1/18/2018 12:00,129.6055767,86.1256815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262044043,1.503176713,1.161002022,-1.161002022,0.331610651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852195061,148.451225,0.852195061,31.548775,0,0.991327987,0,0,0,1,4,0% -1/18/2018 13:00,117.7731557,95.25633529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055529337,1.662536684,1.717312151,-1.717312151,0.236476016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711561815,135.3621314,0.711561815,44.63786862,0,0.979732036,0,0,0,1,5,0% -1/18/2018 14:00,106.0996585,103.696364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851788377,1.809842974,2.882559131,-2.882559131,0.037207046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533982163,122.2749105,0.533982163,57.7250895,0,0.956363913,0,0,0,1,6,0% -1/18/2018 15:00,94.8388329,112.2474517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655249893,1.959087609,8.744299524,-8.744299524,0,#DIV/0!,0,0,0.491148425,1,0.11386555,0,0.949652345,0.988414308,0.724496596,1,0,0,0.068137584,0.312029739,0.825014185,0.549510781,0.961238037,0.922476074,0,0,0,0,0,0,-0.331543472,109.3624848,0.331543472,70.63751524,0,0.899190214,0,0,0,1,7,0% -1/18/2018 16:00,84.13015324,121.5175076,39.73519789,190.1534608,20.28838658,19.97615757,0,19.97615757,19.67661687,0.299540706,32.23031026,21.98428179,10.24602848,0.611769711,9.634258765,1.468348174,2.120880607,-6.052787416,6.052787416,0.434758701,0.510589796,0.216677305,6.969086943,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.91391257,0.443225073,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15698197,6.698951452,19.07089454,7.142176525,0,21.98428179,-0.115613367,96.63900435,0.115613367,83.36099565,0,0.617524055,19.07089454,20.71799936,32.63041076,1,8,71% -1/18/2018 17:00,74.72241387,132.0606569,196.2646497,537.92655,54.52331738,104.3962237,50.03745964,54.35876403,52.8792382,1.479525832,49.23071578,0,49.23071578,1.644079189,47.58663659,1.304152147,2.304893275,-1.715317341,1.715317341,0.823490231,0.277805083,1.290924079,41.52055589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82953511,1.191129776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.9352701,39.91113763,51.76480521,41.10226741,50.03745964,0,0.09301913,84.66268058,-0.09301913,95.33731942,0.512476159,0,77.40781034,41.10226741,104.3084223,1,9,35% -1/18/2018 18:00,66.83579007,144.3685978,340.6325115,684.3118277,71.44634816,266.8323838,194.9725749,71.85980891,69.29197716,2.567831755,84.74466712,0,84.74466712,2.154371006,82.59029612,1.166504595,2.519707368,-0.629754631,0.629754631,0.637848074,0.209746122,1.832938942,58.95361707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60608409,1.56083446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.327958024,56.66845914,67.93404212,58.2292936,194.9725749,0,0.284917733,73.44606882,-0.284917733,106.5539312,0.874510748,0,238.4396543,58.2292936,276.5495624,1,10,16% -1/18/2018 19:00,61.17552659,158.6821185,442.016649,749.6587373,80.58522839,415.9554716,334.4680769,81.48739463,78.15528642,3.332108209,109.601996,0,109.601996,2.429941964,107.172054,1.067714361,2.769525431,-0.041793355,0.041793355,0.537300774,0.182312654,2.071427387,66.62422524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.12583409,1.760484681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.50074209,64.04173948,76.62657618,65.80222416,334.4680769,0,0.446160446,63.50239228,-0.446160446,116.4976077,0.937932692,0,390.3351201,65.80222416,433.4013597,1,11,11% -1/18/2018 20:00,58.42648905,174.6340283,489.7840152,774.1433149,84.44870775,523.476021,437.8815546,85.59446642,81.90226763,3.692198792,121.3002451,0,121.3002451,2.546440121,118.753805,1.019734604,3.047938779,0.411092764,-0.411092764,0.459852687,0.172420302,2.041730732,65.66907873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72757495,1.844887199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479226965,63.12361632,80.20680191,64.96850352,437.8815546,0,0.565633709,55.55369122,-0.565633709,124.4463088,0.961603571,0,501.2752685,64.96850352,543.7958547,1,12,8% -1/18/2018 21:00,59.00906458,191.0705672,479.7567547,769.2727768,83.65631043,573.3668549,488.6164818,84.75037308,81.13376401,3.616609067,118.845126,0,118.845126,2.522546418,116.3225796,1.029902465,3.334810501,0.859231536,-0.859231536,0.383216443,0.174372345,1.774910351,57.08721809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.98886004,1.827576293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285916507,54.87440545,79.27477655,56.70198174,488.6164818,0,0.63516674,50.56764764,-0.63516674,129.4323524,0.971280513,0,553.8584436,56.70198174,590.9687566,1,13,7% -1/18/2018 22:00,62.82838069,206.5535838,412.7857613,732.90791,78.09800615,555.2648168,476.4100002,78.85481655,75.74306312,3.11175343,102.4396299,0,102.4396299,2.354943036,100.0846869,1.096562107,3.605040119,1.41440073,-1.41440073,0.288276919,0.189197432,1.316063521,42.32912677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.8071133,1.706148213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953483541,40.68836671,73.76059684,42.39451493,476.4100002,0,0.650027096,49.45635519,-0.650027096,130.5436448,0.97308013,0,537.3457016,42.39451493,565.0920637,1,14,5% -1/18/2018 23:00,69.33642122,220.1834179,294.9526821,646.7062689,66.7428843,460.9615147,394.0076967,66.95381799,64.73034009,2.223477906,73.52723683,0,73.52723683,2.012544217,71.51469261,1.210148842,3.842925601,2.300515474,-2.300515474,0.136742374,0.226283361,0.738379682,23.74882875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.22126503,1.458081434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534953566,22.82827752,62.7562186,24.28635895,394.0076967,0,0.609252942,52.46449464,-0.609252942,127.5355054,0.96793228,0,444.1289867,24.28635895,460.0239229,1,15,4% -1/18/2018 0:00,77.82603301,231.8443323,140.5503089,450.3892131,45.57192799,277.5890669,232.3317731,45.25729381,44.19776621,1.059527597,35.4522114,0,35.4522114,1.374161771,34.07804963,1.35832052,4.04644695,4.404599231,-4.404599231,0,0.324239259,0.343540443,11.04944155,0.182390082,1,0.22325093,0,0.935707158,0.974469122,0.724496596,1,42.75688916,0.995575525,0.028720732,0.312029739,0.921782555,0.646279151,0.961238037,0.922476074,0.23928562,10.62114351,42.99617478,11.61671903,189.9567618,0,0.515846664,58.94593601,-0.515846664,121.054064,0.953071972,0,224.0386403,11.61671903,231.6415506,1,16,3% -1/18/2018 1:00,87.54273934,241.8987242,6.019584559,37.38935631,4.416547945,18.48376748,14.15501658,4.3287509,4.283372729,0.045378171,1.592693184,0,1.592693184,0.133175216,1.459517969,1.527909038,4.221929194,23.0700862,-23.0700862,0,0.733696471,0.033293804,1.070843182,0.773502687,1,0.043319058,0,0.957192833,0.995954796,0.724496596,1,4.137619464,0.096484991,0.096715134,0.312029739,0.7625867,0.487083296,0.961238037,0.922476074,0.023311853,1.029335198,4.160931317,1.125820189,3.206073227,0,0.378584121,67.75399263,-0.378584121,112.2460074,0.917928956,0,7.103878767,1.125820189,7.840705565,1,17,10% -1/18/2018 2:00,98.6509941,250.8720045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721784657,4.37854248,-6.571861101,6.571861101,0.345991873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196745647,78.6532825,-0.196745647,101.3467175,0.795864771,0,0,0,0,1,18,0% -1/18/2018 3:00,110.0800837,259.3326311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921259901,4.52620827,-2.699365115,2.699365115,0.991772311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.005649678,90.32370442,0.005649678,89.67629558,0,0,0,0,0,1,19,0% -1/18/2018 4:00,121.8317811,267.9348984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126365713,4.676346158,-1.532563652,1.532563652,0.792237509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219159151,102.6596507,0.219159151,77.34034931,0,0.821855294,0,0,0,1,20,0% -1/18/2018 5:00,133.6419592,277.6245509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.332492207,4.845462497,-0.929033596,0.929033596,0.689027791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429234746,115.419005,0.429234746,64.58099501,0,0.933513624,0,0,0,1,21,0% -1/18/2018 6:00,145.1257006,290.1987143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.532921304,5.064923049,-0.532332402,0.532332402,0.621187892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621561298,128.4302386,0.621561298,51.56976144,0,0.969557411,0,0,0,1,22,0% -1/18/2018 7:00,155.4117253,309.8629368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712446302,5.408128478,-0.229741448,0.229741448,0.569441791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783031483,141.5389793,0.783031483,38.46102071,0,0.986145607,0,0,0,1,23,0% -1/19/2018 8:00,161.9564732,344.9595807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826673703,6.02068047,0.028162897,-0.028162897,0.525337551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902638511,154.5070848,0.902638511,25.49291524,0,0.994606839,0,0,0,1,0,0% -1/19/2018 9:00,160.4023174,29.29759821,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799548566,0.511339552,0.26991521,-0.26991521,0.48399547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972225827,166.4646797,0.972225827,13.53532025,0,0.998571619,0,0,0,1,1,0% -1/19/2018 10:00,152.0863493,58.11240693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654407543,1.014252837,0.518416004,-0.518416004,0.441499332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987042835,170.766578,0.987042835,9.233421983,0,0.999343637,0,0,0,1,2,0% -1/19/2018 11:00,141.2182881,74.57733489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464724092,1.301620041,0.800932522,-0.800932522,0.393186162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946068807,161.0970724,0.946068807,18.90292755,0,0.997149721,0,0,0,1,3,0% -1/19/2018 12:00,129.5538245,85.84721772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261140797,1.498316603,1.16476009,-1.16476009,0.330967983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852082944,148.4389498,0.852082944,31.56105019,0,0.991320267,0,0,0,1,4,0% -1/19/2018 13:00,117.7206225,95.01379111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05461246,1.65830349,1.724559675,-1.724559675,0.235236616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711475736,135.3551124,0.711475736,44.64488757,0,0.979723534,0,0,0,1,5,0% -1/19/2018 14:00,106.0391467,103.4749451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850732245,1.805978485,2.901463566,-2.901463566,0.033974197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533814387,122.2635417,0.533814387,57.73645829,0,0.956334484,0,0,0,1,6,0% -1/19/2018 15:00,94.76451321,112.0381419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65395277,1.955434463,8.910752857,-8.910752857,0,#DIV/0!,0,0,0.498413682,1,0.111756367,0,0.949894629,0.988656592,0.724496596,1,0,0,0.068951684,0.312029739,0.823145517,0.547642112,0.961238037,0.922476074,0,0,0,0,0,0,-0.331191802,109.341129,0.331191802,70.65887104,0,0.899030079,0,0,0,1,7,0% -1/19/2018 16:00,84.03838343,121.3155894,40.97591598,194.9388344,20.72914124,20.41297491,0,20.41297491,20.10408115,0.308893763,32.98167171,22.42152638,10.56014532,0.625060091,9.935085232,1.466746489,2.117356469,-5.985334231,5.985334231,0.446293875,0.505885976,0.224382295,7.216905902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.3248075,0.452853908,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162564209,6.937164461,19.4873717,7.390018369,0,22.42152638,-0.115018264,96.60467851,0.115018264,83.39532149,0,0.615286433,19.4873717,21.18567935,33.35297513,1,8,71% -1/19/2018 17:00,74.60460451,131.8660849,198.4568394,541.1347932,54.79711143,105.4973503,50.85652246,54.64082782,53.14477634,1.496051484,49.77049345,0,49.77049345,1.652335089,48.11815836,1.302095986,2.301497354,-1.712430742,1.712430742,0.822996593,0.276116014,1.30436251,41.95278202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.08478048,1.197111148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.945006198,40.32660983,52.02978668,41.52372098,50.85652246,0,0.093981247,84.6073128,-0.093981247,95.3926872,0.517978966,0,78.3723956,41.52372098,105.5488405,1,9,35% -1/19/2018 18:00,66.6886623,144.1878916,343.3643944,686.5929844,71.66084961,268.6426811,196.5542447,72.08843644,69.5000106,2.588425842,85.41351177,0,85.41351177,2.160839016,83.25267275,1.163936731,2.51655345,-0.632355344,0.632355344,0.638292822,0.20870204,1.847571382,59.42424663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.80605375,1.565520511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338559177,57.12084617,68.14461292,58.68636668,196.5542447,0,0.286274764,73.36493756,-0.286274764,106.6350624,0.875342621,0,240.1969206,58.68636668,278.6059739,1,10,16% -1/19/2018 19:00,60.99776182,158.5300467,445.1988714,751.5990454,80.79074486,418.3749178,336.6642148,81.71070296,78.35460582,3.356097145,110.3797597,0,110.3797597,2.436139044,107.9436207,1.06461178,2.766871278,-0.046274452,0.046274452,0.538067087,0.181471136,2.087138616,67.12955237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.31742747,1.764974444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.512124822,64.52747914,76.8295523,66.29245358,336.6642148,0,0.447930605,63.38900899,-0.447930605,116.610991,0.938375566,0,392.7470256,66.29245358,436.1341106,1,11,11% -1/19/2018 20:00,58.2225424,174.5301348,493.3428301,776.0350817,84.66616939,526.4715704,440.6393718,85.83219864,82.113172,3.719026643,122.1696783,0,122.1696783,2.552997392,119.6166809,1.016175064,3.046125496,0.404998506,-0.404998506,0.460894866,0.17161731,2.058163787,66.19762228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93030425,1.84963792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491132657,63.63167248,80.42143691,65.4813104,440.6393718,0,0.567808572,55.40244822,-0.567808572,124.5975518,0.961942154,0,504.2910232,65.4813104,547.1472312,1,12,8% -1/19/2018 21:00,58.78966569,191.0275349,483.6003853,771.3523632,83.90002955,576.9151926,491.8994745,85.01571808,81.3701341,3.645583978,119.7844078,0,119.7844078,2.529895449,117.2545123,1.026073232,3.334059447,0.850762681,-0.850762681,0.384664703,0.173490411,1.791510969,57.62115103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.21606796,1.832900641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297943598,55.3876421,79.51401156,57.22054274,491.8994745,0,0.637710465,50.37869424,-0.637710465,129.6213058,0.971594512,0,557.4408417,57.22054274,594.8905425,1,13,7% -1/19/2018 22:00,62.60614558,206.568249,416.7955205,735.5020216,78.38769045,559.3593784,480.1933853,79.16599305,76.02401237,3.141980689,103.4205775,0,103.4205775,2.363678087,101.0568994,1.092683372,3.605296075,1.401337733,-1.401337733,0.290510823,0.188072296,1.332030402,42.84267655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.0771724,1.712476728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965051492,41.1820103,74.04222389,42.89448703,480.1933853,0,0.652878403,49.24102567,-0.652878403,130.7589743,0.973416061,0,541.4701774,42.89448703,569.5437613,1,14,5% -1/19/2018 23:00,69.12060255,220.2419939,298.9623541,650.4942182,67.12487935,465.6705747,398.3160537,67.35452108,65.10081658,2.253704507,74.51094678,0,74.51094678,2.024062777,72.48688401,1.206382096,3.843947946,2.275861589,-2.275861589,0.140958436,0.224526193,0.752367176,24.19871463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.57738112,1.466426592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.545087458,23.26072494,63.12246858,24.72715154,398.3160537,0,0.612328354,52.24195083,-0.612328354,127.7580492,0.968344464,0,448.829614,24.72715154,465.0130402,1,15,4% -1/19/2018 0:00,77.62136443,231.9329493,144.2065629,457.2062482,46.19474235,283.1974044,237.308514,45.88889041,44.80180043,1.087089984,36.35749266,0,36.35749266,1.392941922,34.96455074,1.354748379,4.047993609,4.33170623,-4.33170623,0,0.320337309,0.348235481,11.20045011,0.173971309,1,0.226881147,0,0.935198936,0.973960899,0.724496596,1,43.33308224,1.009181681,0.027495844,0.312029739,0.924986326,0.649482922,0.961238037,0.922476074,0.242863815,10.76629867,43.57594606,11.77548035,196.0236411,0,0.5190404,58.73209459,-0.5190404,121.2679054,0.953668385,0,230.5174953,11.77548035,238.2243116,1,16,3% -1/19/2018 1:00,87.3592748,242.0084522,7.115412542,43.57256374,5.107892345,21.63625787,16.62874834,5.00750953,4.953870545,0.053638985,1.87923595,0,1.87923595,0.1540218,1.72521415,1.524706977,4.223844308,21.47106228,-21.47106228,0,0.717863134,0.03850545,1.238467636,0.75854825,1,0.046540682,0,0.95687404,0.995636003,0.724496596,1,4.786594109,0.11158827,0.095345008,0.312029739,0.76543049,0.489927086,0.961238037,0.922476074,0.026911833,1.190462199,4.813505942,1.302050469,4.015040392,0,0.381633462,67.5651002,-0.381633462,112.4348998,0.918984235,0,8.503264765,1.302050469,9.355430756,1,17,10% -1/19/2018 2:00,98.46580188,250.9990224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718552443,4.380759359,-6.717564185,6.717564185,0.321075178,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.199901363,78.46880891,-0.199901363,101.5311911,0.799876643,0,0,0,0,1,18,0% -1/19/2018 3:00,109.9019456,259.4771078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918150805,4.528729864,-2.724476784,2.724476784,0.99606666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002677908,90.15343303,0.002677908,89.84656697,0,0,0,0,0,1,19,0% -1/19/2018 4:00,121.6570538,268.1000807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123316148,4.679229133,-1.541598805,1.541598805,0.793782612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216459701,102.5011789,0.216459701,77.49882113,0,0.819010122,0,0,0,1,20,0% -1/19/2018 5:00,133.4653569,277.8155883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329409916,4.84879673,-0.933149435,0.933149435,0.689731641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426877051,115.2695326,0.426877051,64.73046739,0,0.932870255,0,0,0,1,21,0% -1/19/2018 6:00,144.9389431,290.4164629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529661772,5.06872348,-0.534314465,0.534314465,0.621526845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619591099,128.2862805,0.619591099,51.71371949,0,0.969301617,0,0,0,1,22,0% -1/19/2018 7:00,155.2030509,310.0632509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.708804247,5.411624618,-0.230558297,0.230558297,0.569581481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781467702,141.3951539,0.781467702,38.60484605,0,0.986017829,0,0,0,1,23,0% -1/20/2018 8:00,161.7325144,344.8888593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822764884,6.019446148,0.028131233,-0.028131233,0.525342965,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901471972,154.3522311,0.901471972,25.64776892,0,0.994535159,0,0,0,1,0,0% -1/20/2018 9:00,160.2358264,28.84708434,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796642751,0.503476601,0.270549102,-0.270549102,0.483887068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971419909,166.2687762,0.971419909,13.73122375,0,0.998528953,0,0,0,1,1,0% -1/20/2018 10:00,151.9861536,57.6816624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652658798,1.006734927,0.519770958,-0.519770958,0.441267621,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986536008,170.5873255,0.986536008,9.412674549,0,0.999317613,0,0,0,1,2,0% -1/20/2018 11:00,141.1494443,74.23445516,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463522541,1.295635661,0.8032757,-0.8032757,0.392785455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94577888,161.0458635,0.94577888,18.95413654,0,0.99713352,0,0,0,1,3,0% -1/20/2018 12:00,129.4956784,85.56422764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260125956,1.493377494,1.168792677,-1.168792677,0.33027837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851912726,148.4203215,0.851912726,31.5796785,0,0.991308542,0,0,0,1,4,0% -1/20/2018 13:00,117.6619329,94.76718476,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053588134,1.653999397,1.732314105,-1.732314105,0.23391053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711319728,135.3423937,0.711319728,44.65760628,0,0.979708121,0,0,0,1,5,0% -1/20/2018 14:00,105.9725443,103.2499176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849569815,1.802051015,2.921762592,-2.921762592,0.030502859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533566038,122.2467158,0.533566038,57.7532842,0,0.956290887,0,0,0,1,6,0% -1/20/2018 15:00,94.6840513,111.8256501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652548444,1.951725782,9.094769737,-9.094769737,0,#DIV/0!,0,0,0.50620784,1,0.109513391,0,0.950151155,0.988913118,0.724496596,1,0,0,0.069819957,0.312029739,0.821158322,0.545654917,0.961238037,0.922476074,0,0,0,0,0,0,-0.330750833,109.3143543,0.330750833,70.68564567,0,0.898828801,0,0,0,1,7,0% -1/20/2018 16:00,83.94041374,121.1109497,42.31274179,200.0258695,21.19747376,20.87726304,0,20.87726304,20.55829172,0.318971321,33.76713809,22.86874192,10.89839617,0.639182044,10.25921413,1.465036595,2.113784833,-5.914083126,5.914083126,0.458478531,0.500971406,0.232774202,7.486818506,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.76141197,0.463085215,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.168644117,7.196614723,19.93005609,7.659699939,0,22.86874192,-0.114328921,96.56491979,0.114328921,83.43508021,0,0.61266534,19.93005609,21.67058547,34.11302087,1,8,71% -1/20/2018 17:00,74.48035646,131.6693976,200.7680961,544.4706841,55.08476352,106.6847017,51.74747233,54.93722937,53.42375465,1.513474713,50.33955818,0,50.33955818,1.661008861,48.67854932,1.299927448,2.298064512,-1.708926992,1.708926992,0.822397417,0.274370105,1.318427561,42.40516243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.35294505,1.203395266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95519628,40.76145509,52.30814133,41.96485035,51.74747233,0,0.095041797,84.5462745,-0.095041797,95.4537255,0.523915672,0,79.41945306,41.96485035,106.8846083,1,9,35% -1/20/2018 18:00,66.53491881,144.0059915,346.2150251,688.942173,71.88507628,270.5570312,198.2296401,72.3273911,69.717476,2.609915101,86.11144146,0,86.11144146,2.167600277,83.94384118,1.161253401,2.513378694,-0.634748946,0.634748946,0.638702152,0.207631302,1.862745721,59.91230555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01508977,1.570419022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349552934,57.58998697,68.3646427,59.16040599,198.2296401,0,0.287730448,73.27787006,-0.287730448,106.7221299,0.876226246,0,242.0586561,59.16040599,280.7779586,1,10,16% -1/20/2018 19:00,60.81333784,158.3782062,448.4936001,753.5828296,81.00408085,420.9012425,338.9587994,81.94244314,78.56150894,3.380934202,111.1850377,0,111.1850377,2.442571911,108.7424658,1.061392974,2.764221161,-0.050667913,0.050667913,0.538818413,0.180613683,2.103326899,67.6502232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.51631062,1.769635035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.523853178,65.02796774,77.0401638,66.79760277,338.9587994,0,0.449796341,63.26938185,-0.449796341,116.7306182,0.93883858,0,395.2677617,66.79760277,438.9854568,1,11,11% -1/20/2018 20:00,58.01218899,174.4284038,497.0046307,777.9577826,84.89017731,529.5697309,443.4926748,86.07705609,82.33042525,3.746630842,123.0642789,0,123.0642789,2.559752057,120.5045268,1.012503704,3.044349956,0.39894422,-0.39894422,0.46193021,0.170803594,2.075013284,66.73956004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13913634,1.854531652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503340061,64.15260367,80.6424764,66.00713532,443.4926748,0,0.570072933,55.24468825,-0.570072933,124.7553117,0.962291924,0,507.4118958,66.00713532,550.6122458,1,12,9% -1/20/2018 21:00,58.5645173,190.9886629,487.5354497,773.4549693,84.1491935,580.5573499,495.2703169,85.28703299,81.61178484,3.675248156,120.7460229,0,120.7460229,2.537408661,118.2086143,1.022143652,3.333381001,0.842316505,-0.842316505,0.386109084,0.172601179,1.80846973,58.16660309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.44835184,1.838343938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310230163,55.91195136,79.758582,57.7502953,495.2703169,0,0.640335038,50.18319305,-0.640335038,129.8168069,0.971915877,0,561.1196663,57.7502953,598.9160795,1,13,7% -1/20/2018 22:00,62.37912574,206.5885177,420.8842744,738.1119565,78.68164309,563.5356826,484.0537779,79.48190469,76.30910124,3.172803443,104.420807,0,104.420807,2.372541843,102.0482652,1.088721129,3.605649832,1.388313589,-1.388313589,0.292738083,0.186943651,1.348302521,43.36604385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.35121067,1.718898489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976840587,41.68509085,74.32805126,43.40398934,484.0537779,0,0.655799942,49.01966638,-0.655799942,130.9803336,0.973757236,0,545.6789202,43.40398934,574.0859632,1,14,5% -1/20/2018 23:00,68.90102833,220.306875,303.0393426,654.2860024,67.50942587,470.4464909,402.6882848,67.75820617,65.4737676,2.284438569,75.51105536,0,75.51105536,2.035658273,73.47539709,1.202549802,3.845080333,2.251385549,-2.251385549,0.145144085,0.22277446,0.766621376,24.65717869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93587583,1.474827489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.555414577,23.70141803,63.49129041,25.17624552,402.6882848,0,0.615462173,52.01448973,-0.615462173,127.9855103,0.968760239,0,453.5996893,25.17624552,470.0770385,1,15,4% -1/20/2018 0:00,77.41382936,232.0280807,147.9254155,464.0000885,46.81623268,288.8578968,242.338222,46.5196748,45.40455053,1.115124266,37.27791177,0,37.27791177,1.411682149,35.86622962,1.351126209,4.049653966,4.260289233,-4.260289233,0,0.316485389,0.352920537,11.35113763,0.165553151,1,0.23055214,0,0.934682107,0.97344407,0.724496596,1,43.90742199,1.022758911,0.026261972,0.312029739,0.928225527,0.652722123,0.961238037,0.922476074,0.246455909,10.91114525,44.1538779,11.93390417,202.2183657,0,0.522280551,58.51464894,-0.522280551,121.4853511,0.954266012,0,237.1239913,11.93390417,244.9344929,1,16,3% -1/20/2018 1:00,87.17298196,242.1247256,8.328936296,50.29595203,5.848301963,25.08502615,19.35028503,5.734741121,5.671954081,0.06278704,2.195794916,0,2.195794916,0.176347882,2.019447034,1.521455554,4.225873663,20.05977303,-20.05977303,0,0.70216673,0.044086971,1.41798852,0.743607463,1,0.049809779,0,0.956548026,0.995309989,0.724496596,1,5.481865937,0.12776344,0.09396152,0.312029739,0.768317302,0.492813898,0.961238037,0.922476074,0.03075861,1.363024501,5.512624547,1.490787942,4.961268666,0,0.384728477,67.37311517,-0.384728477,112.6268848,0.920038214,0,10.07718131,1.490787942,11.0528722,1,17,10% -1/20/2018 2:00,98.27896244,251.1326488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.71529148,4.383091581,-6.871072334,6.871072334,0.294823738,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.203080697,78.28283211,-0.203080697,101.7171679,0.803792454,0,0,0,0,1,18,0% -1/20/2018 3:00,109.7224487,259.6284148,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915017993,4.53137067,-2.750153125,2.750153125,0.999542427,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000308829,89.98230542,-0.000308829,90.01769458,0,0,0,0,0,1,19,0% -1/20/2018 4:00,121.4810391,268.2725714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120244111,4.682239664,-1.550718355,1.550718355,0.795342147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213751363,102.3422829,0.213751363,77.65771715,0,0.816083363,0,0,0,1,20,0% -1/20/2018 5:00,133.2872711,278.0147766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326301731,4.85227322,-0.9372498,0.9372498,0.690432845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424513558,115.1198771,0.424513558,64.88012287,0,0.932218132,0,0,0,1,21,0% -1/20/2018 6:00,144.7501161,290.6436864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526366118,5.072689277,-0.53624677,0.53624677,0.621857288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617614989,128.1421767,0.617614989,51.85782326,0,0.969043416,0,0,0,1,22,0% -1/20/2018 7:00,154.9910976,310.2749501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.705104965,5.415319466,-0.231307038,0.231307038,0.569709523,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779894701,141.2509354,0.779894701,38.74906463,0,0.985888781,0,0,0,1,23,0% -1/21/2018 8:00,161.5030495,344.8326791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818759966,6.018465619,0.028183394,-0.028183394,0.525334045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900289938,154.1962045,0.900289938,25.80379555,0,0.994462336,0,0,0,1,0,0% -1/21/2018 9:00,160.061392,28.40400254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793598295,0.495743365,0.271286018,-0.271286018,0.483761048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970589684,166.0697902,0.970589684,13.93020977,0,0.998484925,0,0,0,1,1,0% -1/21/2018 10:00,151.8782382,57.24860402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650775319,0.999176632,0.521257587,-0.521257587,0.441013392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985994135,170.3993466,0.985994135,9.600653384,0,0.999289759,0,0,0,1,2,0% -1/21/2018 11:00,141.0736646,73.88722901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462199935,1.289575421,0.80579938,-0.80579938,0.39235388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945441982,160.986525,0.945441982,19.01347496,0,0.997114682,0,0,0,1,3,0% -1/21/2018 12:00,129.4310971,85.27694762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2589988,1.488363512,1.173101876,-1.173101876,0.329541454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851683249,148.3952235,0.851683249,31.60477652,0,0.991292728,0,0,0,1,4,0% -1/21/2018 13:00,117.597058,94.51669384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052455852,1.649627506,1.740581859,-1.740581859,0.232496661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711092656,135.3238865,0.711092656,44.67611347,0,0.979685675,0,0,0,1,5,0% -1/21/2018 14:00,105.8998374,103.0214257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84830084,1.798063078,2.943492421,-2.943492421,0.02678684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533236122,122.2243685,0.533236122,57.77563155,0,0.956232909,0,0,0,1,6,0% -1/21/2018 15:00,94.59744929,111.6100987,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651036954,1.9479637,9.297979486,-9.297979486,0,#DIV/0!,0,0,0.514538232,1,0.107138423,0,0.95042151,0.989183473,0.724496596,1,0,0,0.070742189,0.312029739,0.819054211,0.543550807,0.961238037,0.922476074,0,0,0,0,0,0,-0.330219823,109.2821184,0.330219823,70.71788163,0,0.89858571,0,0,0,1,7,0% -1/21/2018 16:00,83.83625537,120.9036947,43.74776824,205.4105205,21.69278732,21.3684589,0,21.3684589,21.03866975,0.329789156,34.58456913,23.32329865,11.26127048,0.654117576,10.6071529,1.463218689,2.110167551,-5.839421297,5.839421297,0.471246456,0.495860433,0.241878718,7.779651011,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.22316961,0.473905957,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.175240308,7.478096465,20.39840991,7.952002422,0,23.32329865,-0.113544811,96.51969907,0.113544811,83.48030093,0,0.609645221,20.39840991,22.17093998,34.90884671,1,8,71% -1/21/2018 17:00,74.3497043,131.4706873,203.1979749,547.9289188,55.38581747,107.9587183,52.71119537,55.24752288,53.71573072,1.531792166,50.93778832,0,50.93778832,1.670086749,49.26770157,1.297647138,2.294596364,-1.704821473,1.704821473,0.821695332,0.272570716,1.333112538,42.87748177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.63360354,1.209972164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965835496,41.21546641,52.59943904,42.42543857,52.71119537,0,0.096200791,84.47956336,-0.096200791,95.52043664,0.530253754,0,80.54974824,42.42543857,108.3163493,1,9,34% -1/21/2018 18:00,66.37461082,143.822979,349.1831973,691.356139,72.11872888,272.5748743,199.9985007,72.57637355,69.94408311,2.632290437,86.83815465,0,86.83815465,2.174645765,84.66350888,1.158455499,2.510184523,-0.63693434,0.63693434,0.639075877,0.206535508,1.878453848,60.41753288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.23291314,1.575523454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360933418,58.0756307,68.59384656,59.65115415,199.9985007,0,0.289284335,73.18488496,-0.289284335,106.815115,0.87715967,0,244.0244654,59.65115415,283.0649527,1,10,16% -1/21/2018 19:00,60.62232105,158.2266736,451.8991084,755.6076144,81.22497851,423.5331883,341.3508362,82.18235208,78.77574572,3.406606362,112.0174035,0,112.0174035,2.44923279,109.5681707,1.058059103,2.761576419,-0.054969375,0.054969375,0.539554006,0.1797414,2.119982967,68.18593962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.72224317,1.774460819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535920443,65.54291874,77.25816361,67.31737956,341.3508362,0,0.451756745,63.14354915,-0.451756745,116.8564508,0.939320966,0,397.8961609,67.31737956,441.9540395,1,11,11% -1/21/2018 20:00,57.79551084,174.3289161,500.7672906,779.9091945,85.1204768,532.7686425,446.4398668,86.32877572,82.55378036,3.774995362,123.9835237,0,123.9835237,2.566696437,121.4168273,1.008721957,3.042613568,0.392936036,-0.392936036,0.46295767,0.169980105,2.092269215,67.29457009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.35383377,1.859562831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515841924,64.68610044,80.86967569,66.54566328,446.4398668,0,0.572425444,55.0804669,-0.572425444,124.9195331,0.96265238,0,510.6360761,66.54566328,554.1888818,1,12,9% -1/21/2018 21:00,58.33371869,190.9540344,491.5595417,775.5783101,84.40353252,584.290927,498.7268889,85.56403806,81.85845459,3.705583461,121.7293799,0,121.7293799,2.545077921,119.184302,1.018115456,3.33277662,0.833901313,-0.833901313,0.387548166,0.171705613,1.825776486,58.72324784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.68546019,1.84390029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.322768849,56.44701947,80.00822904,58.29091976,498.7268889,0,0.643038727,49.98121529,-0.643038727,130.0187847,0.972244185,0,564.8925469,58.29091976,603.042788,1,13,7% -1/21/2018 22:00,62.14743577,206.6144598,425.0494739,740.7350409,78.97956257,567.7908391,487.9885992,79.80223983,76.59803735,3.204202476,105.4396912,0,105.4396912,2.381525215,103.058166,1.084677376,3.606102606,1.375340448,-1.375340448,0.294956621,0.185812635,1.364870382,43.89892319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62894705,1.725406911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988843945,42.19731474,74.617791,43.92272166,487.9885992,0,0.658789678,48.79236803,-0.658789678,131.207632,0.974103243,0,549.9690682,43.92272166,578.715611,1,14,5% -1/21/2018 23:00,68.67782114,220.3781023,307.1811186,658.0779895,67.89615983,475.2858741,407.121373,68.16450113,65.8488401,2.315661026,76.52693836,0,76.52693836,2.047319729,74.47961863,1.198654102,3.846323484,2.227107141,-2.227107141,0.149295938,0.22102973,0.781134587,25.12397345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.29640979,1.483276174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.565929349,24.15011892,63.86233914,25.63339509,407.121373,0,0.618652165,51.78222491,-0.618652165,128.2177751,0.96917914,0,458.4358813,25.63339509,475.2124257,1,15,4% -1/21/2018 0:00,77.20354986,232.1297364,151.7045146,470.7641865,47.43585868,294.5661881,247.4170829,47.14910523,46.00549252,1.143612711,38.21288209,0,38.21288209,1.430366159,36.78251593,1.347456139,4.051428192,4.19036166,-4.19036166,0,0.312685874,0.35759154,11.50137313,0.15714263,1,0.234261385,0,0.934156941,0.972918905,0.724496596,1,44.47938671,1.036295413,0.025020061,0.312029739,0.931497918,0.655994514,0.961238037,0.922476074,0.250059417,11.05555733,44.72944613,12.09185274,208.5373118,0,0.525564794,58.29372728,-0.525564794,121.7062727,0.954864252,0,243.8542703,12.09185274,251.7681461,1,16,3% -1/21/2018 1:00,86.98401932,242.2475265,9.66172333,57.53920222,6.634327699,28.8246211,22.31750871,6.507112393,6.434278241,0.072834152,2.542646139,0,2.542646139,0.200049458,2.342596681,1.518157534,4.228016942,18.8063722,-18.8063722,0,0.686660906,0.050012365,1.60856956,0.728697708,1,0.053123437,0,0.956214978,0.994976941,0.724496596,1,6.220217442,0.144935151,0.092566115,0.312029739,0.771244533,0.495741129,0.961238037,0.922476074,0.034833603,1.546218246,6.255051045,1.691153398,6.054791262,0,0.387866148,67.17821012,-0.387866148,112.8217899,0.921089549,0,11.832056,1.691153398,12.93888207,1,17,9% -1/21/2018 2:00,98.09058083,251.2728415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712003601,4.385538405,-7.032920587,7.032920587,0.267146057,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.206281492,78.09547334,-0.206281492,101.9045267,0.807612767,0,0,0,0,1,18,0% -1/21/2018 3:00,109.5416852,259.7864861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911863075,4.534129535,-2.776398224,2.776398224,0.995054251,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.003308633,89.81042897,-0.003308633,90.18957103,0,0,0,0,0,1,19,0% -1/21/2018 4:00,121.3038151,268.452276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117150969,4.685376101,-1.559918559,1.559918559,0.796915474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.211035694,102.1830534,0.211035694,77.81694657,0,0.813073255,0,0,0,1,20,0% -1/21/2018 5:00,133.1077656,278.2219782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32316877,4.85588957,-0.941331869,0.941331869,0.69113092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422145413,114.9701107,0.422145413,65.02988934,0,0.931557401,0,0,0,1,21,0% -1/21/2018 6:00,144.5592728,290.8801685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523035275,5.076816669,-0.538127398,0.538127398,0.622178895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615633666,127.997978,0.615633666,52.00202198,0,0.968782869,0,0,0,1,22,0% -1/21/2018 7:00,154.7759268,310.4976744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701349525,5.419206738,-0.231986338,0.231986338,0.56982569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778312726,141.1063487,0.778312726,38.89365129,0,0.98575847,0,0,0,1,23,0% -1/22/2018 8:00,161.2681976,344.7907066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814661027,6.017733061,0.028320355,-0.028320355,0.525310624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899092224,154.0389995,0.899092224,25.96100055,0,0.994388352,0,0,0,1,0,0% -1/22/2018 9:00,159.8791047,27.96892399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790416782,0.488149812,0.27212674,-0.27212674,0.483617276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969734595,165.8677163,0.969734595,14.1322837,0,0.998439501,0,0,0,1,1,0% -1/22/2018 10:00,151.7625912,56.81380108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648756898,0.991587889,0.522876649,-0.522876649,0.440736516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985416366,170.2028509,0.985416366,9.797149102,0,0.999260027,0,0,0,1,2,0% -1/22/2018 11:00,140.9909107,73.5360086,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460755607,1.283445469,0.808504593,-0.808504593,0.391891261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945057069,160.9189473,0.945057069,19.08105273,0,0.997093142,0,0,0,1,3,0% -1/22/2018 12:00,129.3600459,84.98561497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257758721,1.483278798,1.177689827,-1.177689827,0.328756868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851393388,148.3635469,0.851393388,31.63645305,0,0.991272741,0,0,0,1,4,0% -1/22/2018 13:00,117.5259746,94.26249617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051215214,1.645190919,1.749369709,-1.749369709,0.23099385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710793439,135.2995084,0.710793439,44.70049158,0,0.979656076,0,0,0,1,5,0% -1/22/2018 14:00,105.8210175,102.7896127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846925174,1.794017179,2.966692211,-2.966692211,0.022819442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532823715,122.1964411,0.532823715,57.80355887,0,0.956160333,0,0,0,1,6,0% -1/22/2018 15:00,94.50471454,111.3916087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649418427,1.944150331,9.522277887,-9.522277887,0,#DIV/0!,0,0,0.523412761,1,0.104633362,0,0.950705258,0.989467221,0.724496596,1,0,0,0.071718155,0.312029739,0.816834889,0.541331485,0.961238037,0.922476074,0,0,0,0,0,0,-0.329598108,109.2443841,0.329598108,70.7556159,0,0.8983001,0,0,0,1,7,0% -1/22/2018 16:00,83.7259244,120.6939287,45.28304072,211.087769,22.21440546,21.88592186,0,21.88592186,21.54455917,0.341362689,35.43155165,23.78230787,11.64924378,0.669846287,10.97939749,1.46129305,2.106506442,-5.761735333,5.761735333,0.484531538,0.490567884,0.251722147,8.09624955,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.70944976,0.485301355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.182371839,7.782423023,20.8918216,8.267724378,0,23.78230787,-0.112665494,96.46899258,0.112665494,83.53100742,0,0.6062084,20.8918216,22.68475919,35.7385428,1,8,71% -1/22/2018 17:00,74.2126871,131.2700441,205.7459363,551.5039973,55.6998018,109.3198033,53.74855621,55.57124704,54.02024727,1.550999775,51.56503883,0,51.56503883,1.679554535,49.8854843,1.295255737,2.291094478,-1.70013111,1.70013111,0.820893233,0.270721273,1.348410115,43.36950443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.92631643,1.216831543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.976918538,41.6884173,52.90323497,42.90524884,53.74855621,0,0.097458144,84.40718219,-0.097458144,95.59281781,0.536959245,0,81.76401912,42.90524884,109.8446464,1,9,34% -1/22/2018 18:00,66.20779346,143.6389322,352.2676128,693.8315651,72.36150109,274.6955758,201.8604989,72.83507691,70.17953484,2.655542064,87.59332738,0,87.59332738,2.181966243,85.41136114,1.155543986,2.506972301,-0.638911046,0.638911046,0.639413913,0.205416276,1.89468721,60.93965363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4592383,1.580827116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372694434,58.57751302,68.83193273,60.15834014,201.8604989,0,0.290935883,73.08600574,-0.290935883,106.9139943,0.878140828,0,246.0938783,60.15834014,285.4663088,1,10,16% -1/22/2018 19:00,60.42478106,158.075522,455.41359,757.6709091,81.45317629,426.2694192,343.8392567,82.4301625,78.99706249,3.433100009,112.8764113,0,112.8764113,2.456113795,110.4202975,1.054611379,2.758938325,-0.059174875,0.059174875,0.540273189,0.178855392,2.137097231,68.73639317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.93498126,1.779446084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.548319669,66.07203563,77.48330093,67.85148172,343.8392567,0,0.45381082,63.01155362,-0.45381082,116.9884464,0.939821931,0,400.6309751,67.85148172,445.0384128,1,11,11% -1/22/2018 20:00,57.5725924,174.2317489,504.6286203,781.887107,85.35681192,536.066378,449.4792851,86.58709281,82.78298911,3.804103696,124.9268742,0,124.9268742,2.573822813,122.3530514,1.004831296,3.04091768,0.386979716,-0.386979716,0.463976261,0.169147782,2.10992134,67.8623231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.57415794,1.864725866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.528630828,65.23184623,81.10278877,67.0965721,449.4792851,0,0.574864685,54.90984347,-0.574864685,125.0901565,0.96302301,0,513.9616828,67.0965721,557.8750473,1,12,9% -1/22/2018 21:00,58.09737091,190.9237297,495.6702103,777.7201395,84.6627783,588.1134767,502.2670221,85.84645458,82.10988317,3.736571417,122.7338763,0,122.7338763,2.552895138,120.1809811,1.013990409,3.332247704,0.825524953,-0.825524953,0.388980608,0.170804653,1.843420931,59.29075387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9271429,1.849563837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335552189,56.99252785,80.26269509,58.84209169,502.2670221,0,0.645819745,49.77283502,-0.645819745,130.227165,0.972579016,0,568.7570613,58.84209169,607.2680335,1,13,7% -1/22/2018 22:00,61.91119132,206.6461415,429.2885432,743.3686809,79.28115276,572.1219386,491.9952467,80.12669186,76.89053349,3.236158371,106.4765967,0,106.4765967,2.390619272,104.0859774,1.080554132,3.606655555,1.362429704,-1.362429704,0.297164488,0.184680337,1.381724376,44.44100558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91010547,1.731995525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001054607,42.71838496,74.91116007,44.45038049,491.9952467,0,0.661845541,48.55922342,-0.661845541,131.4407766,0.974453672,0,554.3377351,44.45038049,583.4296201,1,14,5% -1/22/2018 23:00,68.45110368,220.455713,311.3851393,661.866713,68.28473004,480.1853576,411.6123114,68.57304619,66.22569348,2.347352709,77.55796866,0,77.55796866,2.059036554,75.49893211,1.194697136,3.847678047,2.203044428,-2.203044428,0.153410904,0.219293478,0.795898975,25.59884692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.65865559,1.491764975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576626098,24.60658536,64.23528169,26.09835033,411.6123114,0,0.621896076,51.54527145,-0.621896076,128.4547285,0.969600715,0,463.334873,26.09835033,480.4157213,1,15,4% -1/22/2018 0:00,76.99064717,232.2379216,155.541481,477.4924071,48.05311496,300.3180174,252.5413438,47.77667363,46.60413625,1.172537384,39.16181157,0,39.16181157,1.448978713,37.71283286,1.343740286,4.05331638,4.121931054,-4.121931054,0,0.308940835,0.362244678,11.65103406,0.148746384,1,0.238006396,0,0.933623709,0.972385672,0.724496596,1,45.04848878,1.049780145,0.02377103,0.312029739,0.934801297,0.659297893,0.961238037,0.922476074,0.253671989,11.19941711,45.30216077,12.24919725,214.976732,0,0.528890805,58.06945838,-0.528890805,121.9305416,0.955462527,0,250.7043725,12.24919725,258.7212271,1,16,3% -1/22/2018 1:00,86.79254207,242.376832,11.11442757,65.27610144,7.462133931,32.84670351,25.5257952,7.320908311,7.237123061,0.08378525,2.919832512,0,2.919832512,0.22501087,2.694821642,1.514815625,4.230273749,17.68692347,-17.68692347,0,0.671391656,0.056252718,1.809280765,0.713835075,1,0.056478816,0,0.955875082,0.994637045,0.724496596,1,6.998062042,0.16301961,0.091160183,0.312029739,0.774209639,0.498706235,0.961238037,0.922476074,0.039116465,1.739149491,7.037178507,1.902169101,7.304587271,0,0.3910435,66.98055537,-0.3910435,113.0194446,0.922136987,0,13.77300861,1.902169101,15.01794024,1,17,9% -1/22/2018 2:00,97.90075949,251.4195537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.708690593,4.388099016,-7.203698461,7.203698461,0.23794132,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.20950163,77.90685191,-0.20950163,102.0931481,0.811338372,0,0,0,0,1,18,0% -1/22/2018 3:00,109.3597441,259.9512514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.908687604,4.537005232,-2.80321654,2.80321654,0.990468049,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006319652,89.6379082,-0.006319652,90.3620918,0,0,0,0,0,1,19,0% -1/22/2018 4:00,121.1254562,268.6390959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114038019,4.688636724,-1.569195761,1.569195761,0.798501969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208314191,102.0235778,0.208314191,77.97642222,0,0.809977945,0,0,0,1,20,0% -1/22/2018 5:00,132.9269006,278.4370514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320012081,4.859643306,-0.945392908,0.945392908,0.691825398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419773701,114.8203011,0.419773701,65.17969887,0,0.930888203,0,0,0,1,21,0% -1/22/2018 6:00,144.3664628,291.1256885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519670106,5.081101802,-0.539954524,0.539954524,0.622491351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613647772,127.8537306,0.613647772,52.14626945,0,0.968520033,0,0,0,1,22,0% -1/22/2018 7:00,154.5575959,310.7310585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697538932,5.423280059,-0.232594949,0.232594949,0.569929769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776721972,140.9614144,0.776721972,39.03858564,0,0.985626901,0,0,0,1,23,0% -1/23/2018 8:00,161.0280756,344.7625833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810470107,6.017242217,0.028543013,-0.028543013,0.525272547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897878611,153.8806062,0.897878611,26.11939379,0,0.994313185,0,0,0,1,0,0% -1/23/2018 9:00,159.6890636,27.54236435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787099939,0.480704942,0.27307198,-0.27307198,0.483455631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968854066,165.6625468,0.968854066,14.33745318,0,0.998392641,0,0,0,1,1,0% -1/23/2018 10:00,151.639211,56.37781149,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646603507,0.983978436,0.524628837,-0.524628837,0.440436875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984801853,169.9980534,0.984801853,10.00194663,0,0.999228365,0,0,0,1,2,0% -1/23/2018 11:00,140.901153,73.18114514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459189039,1.277251933,0.811392323,-0.811392323,0.39139743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944623122,160.843036,0.944623122,19.15696396,0,0.997068837,0,0,0,1,3,0% -1/23/2018 12:00,129.2824973,84.69046689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256405242,1.478127492,1.182558686,-1.182558686,0.327924244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85104207,148.3251921,0.85104207,31.67480786,0,0.991248498,0,0,0,1,4,0% -1/23/2018 13:00,117.4486666,94.00476896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049865935,1.640692731,1.758684739,-1.758684739,0.229400886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71042106,135.2691843,0.71042106,44.7308157,0,0.979619204,0,0,0,1,5,0% -1/23/2018 14:00,105.7360826,102.554621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845442779,1.789915799,2.991404122,-2.991404122,0.018593456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532327975,122.1628821,0.532327975,57.83711794,0,0.956072943,0,0,0,1,6,0% -1/23/2018 15:00,94.40586039,111.1702993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647693097,1.940287754,9.769876647,-9.769876647,0,#DIV/0!,0,0,0.532839866,1,0.102000221,0,0.951001947,0.989763911,0.724496596,1,0,0,0.072747612,0.312029739,0.814502161,0.538998757,0.961238037,0.922476074,0,0,0,0,0,0,-0.328885125,109.2011211,0.328885125,70.79887894,0,0.897971233,0,0,0,1,7,0% -1/23/2018 16:00,83.60944252,120.481753,46.92052726,217.0515641,22.76156935,22.4289308,0,22.4289308,22.07522405,0.353706754,36.30539869,24.24262833,12.06277036,0.686345297,11.37642506,1.459260058,2.102803278,-5.681407916,5.681407916,0.498268335,0.485108985,0.262331168,8.437472106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.21954503,0.497254831,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190058038,8.110419123,21.40960307,8.607673955,0,24.24262833,-0.111690641,96.4127828,0.111690641,83.5872172,0,0.602334918,21.40960307,23.2098555,36.59998929,1,8,71% -1/23/2018 17:00,74.06934898,131.0675541,208.411333,555.190233,56.02623006,110.7683078,54.86038267,55.90792517,54.33683251,1.571092661,52.22113814,0,52.22113814,1.689397551,50.53174059,1.292754014,2.287560361,-1.694874342,1.694874342,0.819994272,0.268825257,1.364312293,43.88097312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.23063021,1.223962775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.988439612,42.18006046,53.21906982,43.40402323,54.86038267,0,0.098813667,84.32913976,-0.098813667,95.67086024,0.54399712,0,83.06295997,43.40402323,111.4700251,1,9,34% -1/23/2018 18:00,66.03452623,143.4539251,355.4668733,696.3650766,72.61307953,276.9184143,203.8152275,73.10318671,70.42352727,2.679659441,88.37661115,0,88.37661115,2.189552262,86.18705889,1.152519903,2.503743318,-0.640679235,0.640679235,0.639716292,0.204275236,1.911436802,61.47837808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.6937731,1.58632316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384829457,59.09535546,69.07860256,60.68167862,203.8152275,0,0.292684447,72.98126149,-0.292684447,107.0187385,0.879167554,0,248.2663376,60.68167862,287.9812827,1,10,16% -1/23/2018 19:00,60.22079099,157.9248196,459.0351538,759.7702117,81.68840896,429.1085127,346.4229098,82.68560292,79.22520203,3.460400887,113.7615945,0,113.7615945,2.463206928,111.2983876,1.051051081,2.756308073,-0.063280877,0.063280877,0.540975357,0.177956761,2.154659775,69.30126496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.15427767,1.784585035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.561043672,66.61501188,77.71532134,68.39959692,346.4229098,0,0.455957478,62.873443,-0.455957478,117.126557,0.940340652,0,403.4708661,68.39959692,448.2370342,1,11,11% -1/23/2018 20:00,57.3435207,174.1369748,508.5863665,783.8893257,85.59892575,539.4609377,452.6091965,86.85174117,83.01780231,3.833938858,125.8937762,0,125.8937762,2.581123438,123.3126528,1.000833241,3.039263559,0.381080625,-0.381080625,0.464985065,0.168307551,2.127959205,68.44248285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79986931,1.870015144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.5416992,65.78951786,81.34156851,67.659533,452.6091965,0,0.577389156,54.73288145,-0.577389156,125.2671186,0.963403292,0,517.3867585,67.659533,561.6685697,1,12,9% -1/23/2018 21:00,57.85557662,190.8978246,499.8649634,779.8782559,84.9266645,592.0225045,505.888499,86.13400546,82.36581222,3.768193238,123.7588999,0,123.7588999,2.560852281,121.1980476,1.009770303,3.331795575,0.817194782,-0.817194782,0.390405151,0.169899214,1.861392641,59.86878583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.17315164,1.85532876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348572632,57.54815416,80.52172427,59.40348292,505.888499,0,0.648676246,49.55812934,-0.648676246,130.4418707,0.972919946,0,572.7107355,59.40348292,611.589127,1,13,7% -1/23/2018 22:00,61.67050865,206.6836242,433.5988883,746.0103683,79.5861236,576.5260582,496.0710983,80.4549599,77.18630833,3.268651573,107.5308858,0,107.5308858,2.399815268,105.1310705,1.076353427,3.607309753,1.349591966,-1.349591966,0.299359871,0.183547804,1.398854833,44.99197995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.19441549,1.738657992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013465564,43.24800248,75.20788106,44.98666047,496.0710983,0,0.664965421,48.32032739,-0.664965421,131.6796726,0.97480812,0,558.7820159,44.98666047,588.2248854,1,14,5% -1/23/2018 23:00,68.22099821,220.5397393,315.6488601,665.6488799,68.67479909,485.1416079,416.1581129,68.98349495,66.60400051,2.379494438,78.60351916,0,78.60351916,2.070798575,76.53272058,1.190681038,3.849144581,2.179213735,-2.179213735,0.157486193,0.217567075,0.810906617,26.08154429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.0222987,1.500286519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587499084,25.07057243,64.60979778,26.57085895,416.1581129,0,0.625191637,51.30374551,-0.625191637,128.6962545,0.970024522,0,468.2933724,26.57085895,485.6834681,1,15,4% -1/23/2018 0:00,76.77524104,232.3526363,159.4339253,484.179042,48.66753209,306.1092376,257.7073309,48.40190671,47.20002643,1.201880274,40.12410672,0,40.12410672,1.467505657,38.65660106,1.33998074,4.055318529,4.054999451,-4.054999451,0,0.305252047,0.366876414,11.80000661,0.140370646,1,0.241784745,0,0.933082679,0.971844642,0.724496596,1,45.61427547,1.063202853,0.022515764,0.312029739,0.938133516,0.662630112,0.961238037,0.922476074,0.257291421,11.34261519,45.8715669,12.40581804,221.5327865,0,0.53225627,57.84197096,-0.53225627,122.158029,0.956060289,0,257.6702669,12.40581804,265.7896266,1,16,3% -1/23/2018 1:00,86.59870099,242.5126144,12.68686474,73.47564957,8.327627515,37.14049289,28.96833513,8.172157765,8.07651882,0.095638945,3.327185935,0,3.327185935,0.251108695,3.07607724,1.51143246,4.232643598,16.6820102,-16.6820102,0,0.656397596,0.062777174,2.019129705,0.699034328,1,0.059873167,0,0.955528525,0.994290488,0.724496596,1,7.811564946,0.181927395,0.089745053,0.312029739,0.777210149,0.501706745,0.961238037,0.922476074,0.043585757,1.940864274,7.855150704,2.122791669,8.718474453,0,0.394257625,66.7803179,-0.394257625,113.2196821,0.923179371,0,15.90386647,2.122791669,17.29319116,1,17,9% -1/23/2018 2:00,97.70959745,251.5727337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705354186,4.390772511,-7.384057679,7.384057679,0.207098078,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.212739043,77.71708435,-0.212739043,102.2829157,0.81497027,0,0,0,0,1,18,0% -1/23/2018 3:00,109.1767103,260.1226358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.905493061,4.539996453,-2.830613073,2.830613073,0.985782966,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009340101,89.46484386,-0.009340101,90.53515614,0,0,0,0,0,1,19,0% -1/23/2018 4:00,120.9460325,268.8329278,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110906485,4.692019729,-1.578546463,1.578546463,0.800101033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.20558828,101.8639386,0.20558828,78.13606144,0,0.806795475,0,0,0,1,20,0% -1/23/2018 5:00,132.7447316,278.6598495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316832631,4.863531867,-0.949430314,0.949430314,0.692515836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.417399434,114.6705114,0.417399434,65.32948856,0,0.930210667,0,0,0,1,21,0% -1/23/2018 6:00,144.1717309,291.3800201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516271392,5.085540725,-0.541726434,0.541726434,0.622794366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611657878,127.7094751,0.611657878,52.2905249,0,0.968254956,0,0,0,1,22,0% -1/23/2018 7:00,154.3361588,310.9747308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.693674126,5.427532942,-0.233131723,0.233131723,0.570021562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775122577,140.8161471,0.775122577,39.18385289,0,0.985494073,0,0,0,1,23,0% -1/24/2018 8:00,160.7827981,344.747926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806189208,6.016986398,0.028852174,-0.028852174,0.525219677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89664884,153.7210098,0.89664884,26.27899022,0,0.99423681,0,0,0,1,0,0% -1/24/2018 9:00,159.4913754,27.12478121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783649629,0.473416741,0.274122361,-0.274122361,0.483276005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967947501,165.4542716,0.967947501,14.54572839,0,0.998344306,0,0,0,1,1,0% -1/24/2018 10:00,151.5081068,55.94117834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315307,0.97635775,0.526514766,-0.526514766,0.440114362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98414975,169.7851732,0.98414975,10.21482681,0,0.999194724,0,0,0,1,2,0% -1/24/2018 11:00,140.8043708,72.82298695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.457499872,1.271000893,0.814463492,-0.814463492,0.390872229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944139153,160.7587142,0.944139153,19.24128582,0,0.997041705,0,0,0,1,3,0% -1/24/2018 12:00,129.198432,84.39173924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254938027,1.472913711,1.187710602,-1.187710602,0.327043214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850628272,148.2800695,0.850628272,31.71993045,0,0.991219917,0,0,0,1,4,0% -1/24/2018 13:00,117.3651253,93.74368789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048407863,1.636136007,1.768534314,-1.768534314,0.22771651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709974585,135.2328475,0.709974585,44.76715249,0,0.979574944,0,0,0,1,5,0% -1/24/2018 14:00,105.6450375,102.3165906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843853743,1.785761386,3.017673372,-3.017673372,0.01410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531748161,122.1236473,0.531748161,57.87635274,0,0.955970526,0,0,0,1,6,0% -1/24/2018 15:00,94.30090694,110.9462869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645861314,1.936378,10.04336501,-10.04336501,0,#DIV/0!,0,0,0.542828486,1,0.099241132,0,0.951311102,0.990073065,0.724496596,1,0,0,0.073830291,0.312029739,0.812057951,0.536554547,0.961238037,0.922476074,0,0,0,0,0,0,-0.32808042,109.1523062,0.32808042,70.84769383,0,0.897598342,0,0,0,1,7,0% -1/24/2018 16:00,83.4868378,120.2672657,48.66208809,223.2947753,23.33343621,22.9966824,0,22.9966824,22.62984702,0.366835375,37.20315304,24.7008772,12.50227584,0.703589193,11.79868665,1.457120202,2.099059768,-5.598814861,5.598814861,0.51239258,0.47949928,0.273732552,8.804179821,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.75266972,0.509747975,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.198318302,8.462912527,21.95098803,8.972660502,0,24.7008772,-0.110620041,96.35105944,0.110620041,83.64894056,0,0.598002337,21.95098803,23.7438428,37.49085826,1,8,71% -1/24/2018 17:00,73.91973972,130.8632994,211.1933966,558.9817622,56.36460119,112.3045152,56.0474497,56.25706553,54.6650005,1.592065032,52.90588482,0,52.90588482,1.699600689,51.20628413,1.29014284,2.283995445,-1.689071071,1.689071071,0.819001854,0.266886191,1.380810357,44.41160759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.54607776,1.231354914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.000392403,42.69012649,53.54647017,43.92148141,56.0474497,0,0.100267045,84.24545166,-0.100267045,95.75454834,0.551331671,0,84.44720424,43.92148141,113.1929354,1,9,34% -1/24/2018 18:00,65.85487348,143.2680262,358.7794714,698.9532466,72.87314382,279.2425685,205.8621876,73.38038087,70.67574966,2.704631204,89.1876308,0,89.1876308,2.19739416,86.99023664,1.149384371,2.50049877,-0.642239753,0.642239753,0.639983156,0.203114029,1.928693141,62.03340126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93621886,1.592004588,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397331615,59.62886484,69.33355047,61.22086943,205.8621876,0,0.294529267,72.87068767,-0.294529267,107.1293123,0.880237584,0,250.5411851,61.22086943,290.6090197,1,10,16% -1/24/2018 19:00,60.01042772,157.7746291,462.7618206,761.9030129,81.93040777,432.04895,349.1005523,82.94839776,79.45990369,3.488494075,114.6724652,0,114.6724652,2.470504085,112.2019611,1.047379549,2.753686753,-0.067284304,0.067284304,0.541659983,0.177046602,2.172660364,69.88022576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.37988183,1.7898718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574085037,67.17153103,77.95396687,68.96140283,349.1005523,0,0.458195527,62.7292707,-0.458195527,117.2707293,0.940876281,0,406.4143961,68.96140283,451.548255,1,11,11% -1/24/2018 20:00,57.10838533,174.0446605,512.6382125,785.9136773,85.84656062,542.9502455,455.827792,87.12245347,83.25797008,3.864483385,126.8836603,0,126.8836603,2.588590543,124.2950698,0.996729355,3.037652371,0.375243698,-0.375243698,0.465983238,0.167460323,2.146372166,69.03470696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.03072771,1.875425036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555039328,66.3587862,81.58576704,68.23421123,455.827792,0,0.579997276,54.54964895,-0.579997276,125.450351,0.963792699,0,520.9092648,68.23421123,565.5671914,1,12,9% -1/24/2018 21:00,57.60843985,190.8763894,504.1412735,782.0505061,85.19492721,596.0154688,509.5890531,86.42641569,82.62598582,3.80042987,124.8038299,0,124.8038299,2.568941391,122.2348885,1.005456952,3.331421459,0.808917639,-0.808917639,0.391820626,0.168990185,1.879681103,60.45700563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.4232404,1.861189293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36182256,58.1135734,80.78506296,59.9747627,509.5890531,0,0.651606321,49.33717864,-0.651606321,130.6628214,0.973266552,0,576.7510434,59.9747627,616.0033261,1,13,7% -1/24/2018 22:00,61.42550422,206.726964,437.9779059,748.6576869,79.89419183,581.0002673,500.2135177,80.78674963,77.48508717,3.301662457,108.6019187,0,108.6019187,2.409104662,106.192814,1.072077293,3.608066174,1.33683702,-1.33683702,0.301541095,0.182416032,1.416252064,45.5515347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48161308,1.745388127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.026069799,43.78586779,75.50768288,45.53125592,500.2135177,0,0.668147174,48.07577664,-0.668147174,131.9242234,0.975166188,0,563.2989921,45.53125592,593.0982885,1,14,5% -1/24/2018 23:00,67.98762586,220.6302071,319.9697476,669.4213779,69.06604427,490.1513358,420.7558205,69.39551533,66.98344821,2.412067113,79.66296585,0,79.66296585,2.082596061,77.58036979,1.186607922,3.850723543,2.155629641,-2.155629641,0.16151931,0.215851795,0.826149562,26.57180978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.38703826,1.508833757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.598542545,25.54183427,64.98558081,27.05066802,420.7558205,0,0.628536576,51.05776392,-0.628536576,128.9422361,0.970450135,0,473.3081235,27.05066802,491.0122447,1,15,4% -1/24/2018 0:00,76.55744891,232.4738745,163.3794653,490.8188217,49.27867742,311.9358339,262.911467,49.0243669,47.79274348,1.231623421,41.09917685,0,41.09917685,1.485933943,39.61324291,1.33617955,4.057434535,3.989563737,-3.989563737,0,0.301620998,0.371483486,11.94818587,0.132021215,1,0.245594072,0,0.932534119,0.971296083,0.724496596,1,46.17632986,1.076554084,0.02125511,0.312029739,0.941492489,0.665989085,0.961238037,0.922476074,0.260915653,11.48505073,46.43724552,12.56160481,228.2015758,0,0.535658894,57.61139301,-0.535658894,122.388607,0.956657015,0,264.7478838,12.56160481,272.969203,1,16,3% -1/24/2018 1:00,86.40264148,242.6548401,14.37810101,82.10318981,9.226576761,41.69323497,32.63648534,9.056749628,8.948361429,0.108388199,3.764352385,0,3.764352385,0.278215332,3.486137053,1.508010576,4.235125905,15.77571978,-15.77571978,0,0.641710387,0.069553833,2.237090357,0.684308884,1,0.063303853,0,0.955175489,0.993937452,0.724496596,1,8.656754881,0.201566061,0.088321978,0.312029739,0.780243684,0.50474028,0.961238037,0.922476074,0.048219565,2.150376343,8.704974446,2.351942404,10.30304849,0,0.397505693,66.57766039,-0.397505693,113.4223396,0.924215638,0,18.22721298,2.351942404,19.76651224,1,17,8% -1/24/2018 2:00,97.51718943,251.7323244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701996033,4.393557895,-7.574721288,7.574721288,0.17449268,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.215991731,77.52628349,-0.215991731,102.4737165,0.818509657,0,0,0,0,1,18,0% -1/24/2018 3:00,108.9926638,260.300559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902280843,4.543101799,-2.858593536,2.858593536,0.980998025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012368275,89.29133198,-0.012368275,90.70866802,0,0,0,0,0,1,19,0% -1/24/2018 4:00,120.7656087,269.0336632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107757494,4.695523222,-1.587967387,1.587967387,0.801712106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202859298,101.704213,0.202859298,78.295787,0,0.803523745,0,0,0,1,20,0% -1/24/2018 5:00,132.5613083,278.8902204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313631291,4.867552598,-0.953441657,0.953441657,0.693201816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415023533,114.5207985,0.415023533,65.47920151,0,0.929524904,0,0,0,1,21,0% -1/24/2018 6:00,143.9751166,291.6429307,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512839826,5.090129381,-0.543441557,0.543441557,0.623087669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609664473,127.5652461,0.609664473,52.43475386,0,0.967987676,0,0,0,1,22,0% -1/24/2018 7:00,154.1116647,311.2283126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689755965,5.431958781,-0.233595637,0.233595637,0.570100896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77351461,140.6705554,0.77351461,39.32944462,0,0.98535998,0,0,0,1,23,0% -1/25/2018 8:00,160.5324774,344.7463271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801820287,6.016958492,0.029248528,-0.029248528,0.525151897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895402601,153.5601895,0.895402601,26.43981052,0,0.994159197,0,0,0,1,0,0% -1/25/2018 9:00,159.2861546,26.71657215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780067851,0.466292149,0.275278402,-0.275278402,0.48307831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967014283,165.2428777,0.967014283,14.7571223,0,0.998294456,0,0,0,1,1,0% -1/25/2018 10:00,151.3692994,55.50442655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641892661,0.968734993,0.528534951,-0.528534951,0.43976889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983459219,169.5644321,0.983459219,10.43556792,0,0.999159051,0,0,0,1,2,0% -1/25/2018 11:00,140.700554,72.46187754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455687928,1.264698345,0.817718935,-0.817718935,0.390315516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943604206,160.6659225,0.943604206,19.3340775,0,0.997011682,0,0,0,1,3,0% -1/25/2018 12:00,129.10784,84.08966531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253356898,1.467641527,1.193147687,-1.193147687,0.326113418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.850151039,148.228101,0.850151039,31.77189898,0,0.991186921,0,0,0,1,4,0% -1/25/2018 13:00,117.2753503,93.47942618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046840994,1.63152377,1.778926036,-1.778926036,0.225939421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709453167,135.1904409,0.709453167,44.80955909,0,0.979523184,0,0,0,1,5,0% -1/25/2018 14:00,105.5478953,102.075659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842158291,1.781556337,3.045548309,-3.045548309,0.009334255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531083643,122.0787015,0.531083643,57.92129852,0,0.955852871,0,0,0,1,6,0% -1/25/2018 15:00,94.18988174,110.7196844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643923558,1.93242304,10.34578721,-10.34578721,0,#DIV/0!,0,0,0.553388023,1,0.096358362,0,0.951632226,0.990394189,0.724496596,1,0,0,0.074965898,0.312029739,0.809504306,0.534000902,0.961238037,0.922476074,0,0,0,0,0,0,-0.327183672,109.0979247,0.327183672,70.9020753,0,0.897180638,0,0,0,1,7,0% -1/25/2018 16:00,83.35814536,120.0505606,50.50944607,229.8091638,23.92907934,23.58829085,0,23.58829085,23.20752931,0.38076154,38.12159551,25.1534455,12.96815001,0.721550031,12.24659998,1.454874095,2.095277551,-5.514322414,5.514322414,0.526841639,0.473754539,0.285952891,9.197227937,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.30795991,0.522760541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.207171896,8.840725327,22.51513181,9.363485868,0,25.1534455,-0.109453623,96.28382028,0.109453623,83.71617972,0,0.593185517,22.51513181,24.28414545,38.40861933,1,8,71% -1/25/2018 17:00,73.76391533,130.6573568,214.0912255,562.8725568,56.71440012,113.9286255,57.31046369,56.61816179,55.0042517,1.61391009,53.6190447,0,53.6190447,1.710148417,51.90889628,1.287423192,2.280401069,-1.682742599,1.682742599,0.817919622,0.264907635,1.397894849,44.96110356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.87217892,1.238996707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.012770059,43.21832292,53.88494898,44.45731963,57.31046369,0,0.101817832,84.15614101,-0.101817832,95.84385899,0.558926887,0,85.91730802,44.45731963,115.0137346,1,9,34% -1/25/2018 18:00,65.66890483,143.081298,362.203783,701.5926023,73.14136666,281.6671062,208.0007765,73.66632971,70.9358846,2.730445112,90.02598271,0,90.02598271,2.205482068,87.82050064,1.146138605,2.497239748,-0.643594136,0.643594136,0.640214769,0.201934298,1.946446255,62.60440243,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.18627045,1.59786425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410193686,60.17773289,69.59646414,61.77559714,208.0007765,0,0.296469455,72.75432673,-0.296469455,107.2456733,0.881348562,0,252.9176493,61.77559714,293.3485422,1,10,16% -1/25/2018 19:00,59.79377216,157.6250058,466.5915189,764.0668011,82.17890053,435.0891085,351.8708411,83.21826742,79.70090347,3.517363958,115.6085128,0,115.6085128,2.477997059,113.1305158,1.043598196,2.751075334,-0.071182562,0.071182562,0.542326625,0.176126006,2.191088443,70.47293614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.61153998,1.795300434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587436118,67.74126679,78.1989761,69.53656722,351.8708411,0,0.460523662,62.5790964,-0.460523662,117.4209036,0.941427946,0,409.4600192,69.53656722,454.9703117,1,11,11% -1/25/2018 20:00,56.86727847,173.9548659,516.7817792,787.9580131,86.09945849,546.5321448,459.1331833,87.39896148,83.50324214,3.895719341,127.8959418,0,127.8959418,2.596216347,125.2997255,0.992521246,3.036085159,0.369473421,-0.369473421,0.466970013,0.166606993,2.165149404,69.63864748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.26649254,1.880949905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.568643373,66.93931679,81.83513592,68.8202667,459.1331833,0,0.582687371,54.36021914,-0.582687371,125.6397809,0.964190692,0,524.5270778,68.8202667,569.5685659,1,12,9% -1/25/2018 21:00,57.35606584,190.8594875,508.4965816,784.2347901,85.46730544,600.0897818,513.3663689,86.72341286,82.89015084,3.833262022,125.868038,0,125.868038,2.5771546,123.2908834,1.001052195,3.331126465,0.800699817,-0.800699817,0.393225956,0.168078427,1.898275754,61.05507354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.67716587,1.867139735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375294322,58.68845903,81.05246019,60.55559876,513.3663689,0,0.654608002,49.11006674,-0.654608002,130.8899333,0.97361841,0,580.8754081,60.55559876,620.5078363,1,13,7% -1/25/2018 22:00,61.17629423,206.7762099,442.4229915,751.3083163,80.20508165,585.5416321,504.4198582,81.12177391,77.78660252,3.335171391,109.6890556,0,109.6890556,2.418479137,107.2705765,1.067727759,3.608925677,1.324173817,-1.324173817,0.30370663,0.181285971,1.433906411,46.1193592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.7714411,1.752179902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038860314,44.3316823,75.81030141,46.0838622,504.4198582,0,0.671388626,47.82566971,-0.671388626,132.1743303,0.975527484,0,567.8857367,46.0838622,598.0467028,1,14,5% -1/25/2018 23:00,67.75110612,220.7271358,324.3452907,673.1812801,69.45815827,495.2113058,425.4025154,69.80879033,67.36373853,2.445051806,80.73569063,0,80.73569063,2.094419745,78.64127088,1.182479874,3.852415267,2.132304994,-2.132304994,0.16550806,0.214148811,0.84161988,27.06938838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.75258778,1.517399976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.609750738,26.02012574,65.36233852,27.53752572,425.4025154,0,0.631928617,50.80744382,-0.631928617,129.1925562,0.970877139,0,478.3759157,27.53752572,496.3986755,1,15,4% -1/25/2018 0:00,76.33738529,232.6016236,167.3757409,497.4069204,49.88615541,317.7939383,268.1502855,49.6436528,48.38190377,1.261749035,42.08643784,0,42.08643784,1.504251646,40.58218619,1.332338716,4.059664178,3.92561604,-3.92561604,0,0.2980489,0.376062912,12.09547594,0.123703446,1,0.249432106,0,0.931978293,0.970740256,0.724496596,1,46.73427097,1.089825197,0.019989874,0.312029739,0.944876214,0.66937281,0.961238037,0.922476074,0.264542783,11.62663155,46.99881376,12.71645675,234.979171,0,0.539096411,57.37785123,-0.539096411,122.6221488,0.957252211,0,271.9331448,12.71645675,280.2558114,1,16,3% -1/25/2018 1:00,86.20450273,242.8034691,16.18654825,91.12150108,10.15471625,46.49066267,36.52012754,9.970535131,9.848514093,0.122021038,4.230818188,0,4.230818188,0.306202162,3.924616026,1.504552403,4.237719972,14.95489055,-14.95489055,0,0.627355264,0.07655054,2.462128523,0.669670814,1,0.066768362,0,0.954816152,0.993578115,0.724496596,1,9.52962275,0.221842424,0.086892141,0.312029739,0.783307974,0.50780457,0.961238037,0.922476074,0.052996028,2.366691588,9.582618778,2.588534012,12.063664,0,0.400784964,66.37274045,-0.400784964,113.6272596,0.925244821,0,20.74446141,2.588534012,22.43860515,1,17,8% -1/25/2018 2:00,97.32362519,251.8982628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6986177,4.396454066,-7.776494252,7.776494252,0.139987471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.219257774,77.33455776,-0.219257774,102.6654422,0.821957915,0,0,0,0,1,18,0% -1/25/2018 3:00,108.8076789,260.4849353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899052249,4.546319772,-2.887164532,2.887164532,0.976112097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015402565,89.11746315,-0.015402565,90.88253685,0,0,0,0,0,1,19,0% -1/25/2018 4:00,120.5842434,269.241188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104592073,4.699145213,-1.597455544,1.597455544,0.803334677,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200128477,101.5444721,0.200128477,78.45552788,0,0.800160493,0,0,0,1,20,0% -1/25/2018 5:00,132.3766747,279.128006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310408827,4.871702739,-0.957424706,0.957424706,0.693882957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412646817,114.3712125,0.412646817,65.62878748,0,0.928831005,0,0,0,1,21,0% -1/25/2018 6:00,143.7766538,291.9141812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509375996,5.094863595,-0.545098485,0.545098485,0.623371021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607667954,127.4210712,0.607667954,52.57892883,0,0.967718221,0,0,0,1,22,0% -1/25/2018 7:00,153.8841584,311.4914177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685785231,5.436550831,-0.233985808,0.233985808,0.570167619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771898064,140.5246407,0.771898064,39.47535934,0,0.985224608,0,0,0,1,23,0% -1/26/2018 8:00,160.2772231,344.7573559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.797365259,6.01715098,0.029732643,-0.029732643,0.525069108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.894139533,153.3981185,0.894139533,26.60188147,0,0.994080316,0,0,0,1,0,0% -1/26/2018 9:00,159.0735232,26.31807388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776356733,0.459337042,0.276540504,-0.276540504,0.482862478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966053769,165.0283493,0.966053769,14.97165071,0,0.998243046,0,0,0,1,1,0% -1/26/2018 10:00,151.2228213,55.06806004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.639336136,0.96111896,0.530689798,-0.530689798,0.439400389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982729432,169.3360531,0.982729432,10.66394695,0,0.999121296,0,0,0,1,2,0% -1/26/2018 11:00,140.5897029,72.09815399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45375321,1.258350172,0.821159386,-0.821159386,0.389727164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943017372,160.5646205,0.943017372,19.43537953,0,0.996978707,0,0,0,1,3,0% -1/26/2018 12:00,129.0107207,83.78447483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251661846,1.462314948,1.198871996,-1.198871996,0.325134504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849609489,148.1692207,0.849609489,31.83077933,0,0.991149433,0,0,0,1,4,0% -1/26/2018 13:00,117.1793503,93.21215388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045165479,1.626858988,1.789867719,-1.789867719,0.224068283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708856064,135.1419176,0.708856064,44.85808243,0,0.979463818,0,0,0,1,5,0% -1/26/2018 14:00,105.4446774,101.8319601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840356799,1.777302987,3.075080517,-3.075080517,0.00428395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.530333915,122.0280189,0.530333915,57.97198111,0,0.955719777,0,0,0,1,6,0% -1/26/2018 15:00,94.07282031,110.4906009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641880451,1.928424778,10.68074096,-10.68074096,0,#DIV/0!,0,0,0.564528321,1,0.093354319,0,0.951964802,0.990726765,0.724496596,1,0,0,0.076154099,0.312029739,0.80684341,0.531340005,0.961238037,0.922476074,0,0,0,0,0,0,-0.326194693,109.0379708,0.326194693,70.96202917,0,0.89671731,0,0,0,1,7,0% -1/26/2018 16:00,83.22340787,119.8317266,52.46415993,236.5853794,24.54749019,24.20278979,0,24.20278979,23.80729279,0.395496999,39.05725865,25.59651826,13.46074038,0.7401974,12.72054298,1.452522482,2.091458178,-5.428284745,5.428284745,0.541554947,0.467890656,0.299018315,9.617456884,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88447539,0.536270497,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216637751,9.244665375,23.10111314,9.780935871,0,25.59651826,-0.108191463,96.2110718,0.108191463,83.7889282,0,0.587856327,23.10111314,24.82801108,39.35054983,1,8,70% -1/26/2018 17:00,73.60193839,130.4497974,217.1037753,566.8564421,57.07509888,115.6407431,58.65004904,56.99069402,55.35407406,1.636619963,54.36034867,0,54.36034867,1.721024816,52.63932386,1.284596161,2.276778473,-1.675911527,1.675911527,0.81675144,0.262893166,1.415555541,45.52913215,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.20844148,1.24687662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025565171,43.7643336,54.23400665,45.01121023,58.65004904,0,0.103465436,84.06123903,-0.103465436,95.93876097,0.56674683,0,87.47373604,45.01121023,116.9326729,1,9,34% -1/26/2018 18:00,65.47669541,142.893796,365.7380622,704.279633,73.4174142,284.1909758,210.2302796,73.96069629,71.20360828,2.757088001,90.89123347,0,90.89123347,2.21380592,88.67742755,1.142783918,2.493967221,-0.644744614,0.644744614,0.640411512,0.200737691,1.964685677,63.19104493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.44361664,1.603894853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423408085,60.74163598,69.86702473,62.34553083,210.2302796,0,0.298503989,72.63222865,-0.298503989,107.3677714,0.882498051,0,255.3948366,62.34553083,296.1987396,1,10,16% -1/26/2018 19:00,59.57090941,157.4759977,470.5220827,766.2590667,82.43361184,438.2272563,354.7323277,83.49492851,79.9479343,3.546994209,116.569204,0,116.569204,2.485677545,114.0835265,1.039708508,2.748474653,-0.074973548,0.074973548,0.542974921,0.175196053,2.209933146,71.07904657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84899541,1.80086492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601089041,68.32388318,78.45008445,70.1247481,354.7323277,0,0.462940464,62.42298637,-0.462940464,117.5770136,0.941994751,0,412.6060753,70.1247481,458.5013204,1,11,11% -1/26/2018 20:00,56.62029492,173.867643,521.014625,790.0202126,86.3573611,550.2043959,462.5233995,87.68099636,83.75336804,3.927628321,128.930021,0,128.930021,2.603993062,126.3260279,0.98821057,3.034562833,0.363773819,-0.363773819,0.467944703,0.16574844,2.184279943,70.25395138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.50692307,1.886584109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582503383,67.5307703,82.08942646,69.41735441,462.5233995,0,0.585457678,54.16467053,-0.585457678,125.8353295,0.96459673,0,528.2379853,69.41735441,573.6702554,1,12,9% -1/26/2018 21:00,57.09856084,190.847175,512.9283008,786.4290636,85.74354144,604.2428095,517.218082,87.0247275,83.1580573,3.866670193,126.9508891,0,126.9508891,2.585484134,124.365405,0.996557885,3.330911573,0.792547057,-0.792547057,0.394620161,0.16716477,1.917166005,61.66264894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93468775,1.873174454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.388980244,59.27248361,81.32366799,61.14565806,517.218082,0,0.657679257,48.87688103,-0.657679257,131.123119,0.9739751,0,585.0812009,61.14565806,625.0998112,1,13,7% -1/26/2018 22:00,60.92299442,206.8314036,446.9315452,753.9600351,80.51852504,590.1472192,508.687466,81.4597532,78.09059443,3.369158772,110.7916581,0,110.7916581,2.427930612,108.3637275,1.063306843,3.60988899,1.311610467,-1.311610467,0.30585509,0.180158518,1.451808277,46.69514476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06364969,1.759027463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051830155,44.88514928,76.11547984,46.64417675,508.687466,0,0.674687573,47.57010686,-0.674687573,132.4298931,0.975891624,0,572.5393174,46.64417675,603.0669982,1,14,5% -1/26/2018 23:00,67.51155649,220.8305371,328.7730082,676.9258457,69.85084936,500.3183409,430.0953225,70.22301834,67.74458853,2.47842981,81.82108307,0,81.82108307,2.10626083,79.71482224,1.178298944,3.854219961,2.109250959,-2.109250959,0.169450532,0.212459197,0.857309703,27.57402702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.11867529,1.525978802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.621117961,26.5052036,65.73979325,28.03118241,430.0953225,0,0.635365491,50.55290245,-0.635365491,129.4470975,0.971305137,0,483.4935896,28.03118241,501.8394379,1,15,4% -1/26/2018 0:00,76.11516132,232.7358638,171.4204257,503.9389509,50.48960704,323.6798376,273.420439,50.25939868,48.9671591,1.292239577,43.08531479,0,43.08531479,1.522447939,41.56286685,1.328460176,4.062007111,3.863144186,-3.863144186,0,0.294536703,0.380611985,12.24178978,0.115422248,1,0.253296671,0,0.931415454,0.970177417,0.724496596,1,47.28775322,1.103008349,0.018720818,0.312029739,0.948282772,0.672779368,0.961238037,0.922476074,0.268171056,11.76727397,47.55592428,12.87028232,241.8616373,0,0.542566592,57.14147063,-0.542566592,122.8585294,0.957845413,0,279.2219842,12.87028232,287.6453266,1,16,3% -1/26/2018 1:00,86.00441732,242.9584552,18.11006005,100.4918033,11.10783494,51.51742838,40.60801436,10.90941402,10.77289274,0.136521282,4.725935937,0,4.725935937,0.334942207,4.39099373,1.501060253,4.240424988,14.20854575,-14.20854575,0,0.613351635,0.083735552,2.693223184,0.655130879,1,0.070264317,0,0.954450685,0.993212648,0.724496596,1,10.42620477,0.242664489,0.085456644,0.312029739,0.786400864,0.51089746,0.961238037,0.922476074,0.057893776,2.588828566,10.48409854,2.831493055,14.00445021,0,0.404092802,66.16571007,-0.404092802,113.8342899,0.926266046,0,23.45594527,2.831493055,25.30910084,1,17,8% -1/26/2018 2:00,97.12898908,252.0704799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695220659,4.399459821,-7.990275646,7.990275646,0.103428699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.222535337,77.14201066,-0.222535337,102.8579893,0.825316583,0,0,0,0,1,18,0% -1/26/2018 3:00,108.6218243,260.6756731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895808474,4.549648775,-2.916333689,2.916333689,0.971123877,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.018441464,88.94332204,-0.018441464,91.05667796,0,0,0,0,0,1,19,0% -1/26/2018 4:00,120.4019891,269.4553824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101411137,4.702883611,-1.60700827,1.60700827,0.804968289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.197396942,101.3847804,0.197396942,78.61521962,0,0.796703269,0,0,0,1,20,0% -1/26/2018 5:00,132.1908683,279.3730421,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307165894,4.875979425,-0.961377456,0.961377456,0.694558917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410269998,114.2217968,0.410269998,65.77820324,0,0.928129036,0,0,0,1,21,0% -1/26/2018 6:00,143.5763706,292.1935253,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505880394,5.099739069,-0.546695987,0.546695987,0.62364421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605668618,127.2769705,0.605668618,52.72302952,0,0.967446606,0,0,0,1,22,0% -1/26/2018 7:00,153.65368,311.7636522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.681762623,5.441302219,-0.234301502,0.234301502,0.570221606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770272855,140.3783973,0.770272855,39.62160267,0,0.985087937,0,0,0,1,23,0% -1/27/2018 8:00,160.0171421,344.7805604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79282599,6.017555977,0.030304952,-0.030304952,0.524971238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892859223,153.2347641,0.892859223,26.76523595,0,0.99400013,0,0,0,1,0,0% -1/27/2018 9:00,158.85361,25.92956302,0,0,0,0,0,0,0,0,0,0,0,0,0,2.772518523,0.452556248,0.277908946,-0.277908946,0.482628461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965065295,164.810668,0.965065295,15.18933205,0,0.998190034,0,0,0,1,1,0% -1/27/2018 10:00,151.0687168,54.63255973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636646505,0.953518046,0.532979593,-0.532979593,0.439008811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981959568,169.1002591,0.981959568,10.89974091,0,0.999081407,0,0,0,1,2,0% -1/27/2018 11:00,140.4718286,71.73214569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451695915,1.251962122,0.824785469,-0.824785469,0.389107068,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942377782,160.4547864,0.942377782,19.54521359,0,0.996942722,0,0,0,1,3,0% -1/27/2018 12:00,128.9070835,83.4763932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249853036,1.456937909,1.204885518,-1.204885518,0.324106131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849002816,148.1033752,0.849002816,31.89662476,0,0.99110738,0,0,0,1,4,0% -1/27/2018 13:00,117.0771433,92.94203736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04338163,1.622144565,1.801367385,-1.801367385,0.222101724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708182634,135.0872411,0.708182634,44.91275887,0,0.979396744,0,0,0,1,5,0% -1/27/2018 14:00,105.3354138,101.5856238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838449789,1.773003608,3.106325016,-3.106325016,0,#DIV/0!,0,0,0.001058053,1,0.311447084,0,0.922568255,0.961330218,0.724496596,1,0,0,0.000180848,0.312029739,0.999487308,0.723983904,0.961238037,0.922476074,0,0,0,0,0,0,-0.529498598,121.9715833,0.529498598,58.02841666,0,0.955571044,0,0,0,1,6,0% -1/27/2018 15:00,93.94976623,110.2591409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639732752,1.924385039,11.05250431,-11.05250431,0,#DIV/0!,0,0,0.576259671,1,0.090231552,0,0.952308293,0.991070256,0.724496596,1,0,0,0.07739453,0.312029739,0.804077575,0.528574171,0.961238037,0.922476074,0,0,0,0,0,0,-0.32511344,108.9724479,0.32511344,71.02755212,0,0.896207527,0,0,0,1,7,0% -1/27/2018 16:00,83.08267565,119.610848,54.52760378,243.6129906,25.1875835,24.83913704,0,24.83913704,24.42808493,0.41105211,40.00644646,26.02609905,13.98034741,0.759498575,13.22084884,1.450066241,2.087603118,-5.341041507,5.341041507,0.55647442,0.461923535,0.312954246,10.06568432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.4812044,0.550254132,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.226734286,9.675518634,23.70793869,10.22577277,0,26.02609905,-0.10683379,96.13282935,0.10683379,83.86717065,0,0.581983279,23.70793869,25.37252724,40.31375031,1,8,70% -1/27/2018 17:00,73.4338781,130.2406862,220.2298568,570.9271228,57.4461585,117.4408701,60.06673952,57.37413055,55.71394486,1.660185686,55.12949215,0,55.12949215,1.732213632,53.39727852,1.281662955,2.273128795,-1.668601591,1.668601591,0.815501367,0.260846369,1.433781459,46.1153403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.55436299,1.25498288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.038769786,44.32781918,54.59313277,45.58280206,60.06673952,0,0.105209119,83.96078508,-0.105209119,96.03921492,0.574756024,0,89.11685313,45.58280206,118.9498854,1,9,33% -1/27/2018 18:00,65.27832595,142.705569,369.3804418,707.0108019,73.7009469,286.8130045,212.5498673,74.26313722,71.47859142,2.784545797,91.78292012,0,91.78292012,2.222355476,89.56056464,1.139321718,2.490682039,-0.645694076,0.645694076,0.64057388,0.199525851,1.983400456,63.79297657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.70794089,1.610088978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436966879,61.32023557,70.14490777,62.93032454,212.5498673,0,0.300631711,72.50445089,-0.300631711,107.4955491,0.883683547,0,257.9717283,62.93032454,299.1583671,1,10,16% -1/27/2018 19:00,59.34192869,157.327645,474.5512542,768.4773094,82.69426371,441.4615526,357.6834582,83.77809435,80.20072655,3.577367805,117.5539829,0,117.5539829,2.49353716,115.0604457,1.03571204,2.745885409,-0.078655644,0.078655644,0.543604597,0.174257813,2.229183308,71.69819796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.09198894,1.806559184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615035718,68.91903505,78.70702466,70.72559424,357.6834582,0,0.465444397,62.26101352,-0.465444397,117.7389865,0.942575783,0,415.8507903,70.72559424,462.1392772,1,11,11% -1/27/2018 20:00,56.36753199,173.783036,525.3342498,792.0981884,86.62001051,553.964678,465.9963889,87.96828907,84.0080976,3.960191477,129.9852839,0,129.9852839,2.611912911,127.373371,0.983799024,3.033086162,0.358148454,-0.358148454,0.468906697,0.164885519,2.203752668,70.88026116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75177881,1.892322012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.596611306,68.13280309,82.34839012,70.0251251,465.9963889,0,0.588306343,53.96308691,-0.588306343,126.0369131,0.965010265,0,532.039689,70.0251251,577.8697329,1,12,9% -1/27/2018 21:00,56.83603203,190.8395006,517.4338197,788.6313415,86.02338105,608.4718753,521.1417819,87.33009342,83.42945872,3.900634698,128.0517426,0,128.0517426,2.593922331,125.4578202,0.991975893,3.330777628,0.784464551,-0.784464551,0.396002351,0.166250016,1.936341257,62.27939094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19556911,1.879287899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402872649,59.86531949,81.59844176,61.74460739,521.1417819,0,0.660817995,48.63771239,-0.660817995,131.3622876,0.974336201,0,589.3657457,61.74460739,629.7763563,1,13,7% -1/27/2018 22:00,60.66571981,206.8925796,451.5009755,756.6107213,80.834262,594.8140993,513.0136835,81.80041582,78.39681075,3.403605068,111.90909,0,111.90909,2.437451246,109.4716388,1.058816554,3.610956712,1.299154259,-1.299154259,0.307985227,0.179034523,1.469948146,47.27858529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.35799646,1.76592513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064972428,45.44597451,76.42296889,47.21189964,513.0136835,0,0.678041784,47.30918998,-0.678041784,132.69081,0.976258232,0,577.2568005,47.21189964,608.1560445,1,14,5% -1/27/2018 23:00,67.26909221,220.9404155,333.2504534,680.6525173,70.24384131,505.4693266,434.8314136,70.63791301,68.12573032,2.512182683,82.91854164,0,82.91854164,2.118110988,80.80043065,1.174067144,3.856137701,2.086477098,-2.086477098,0.173345092,0.210783933,0.873211248,28.0854754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48504328,1.5345642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632638577,26.99682723,66.11768185,28.53139143,434.8314136,0,0.638844936,50.29425692,-0.638844936,129.7057431,0.971733746,0,488.6580402,28.53139143,507.3312653,1,15,4% -1/27/2018 0:00,75.8908846,232.8765683,175.5112338,510.4109521,51.0887085,329.5899757,278.7187024,50.87127325,49.54819544,1.323077816,44.09524368,0,44.09524368,1.540513058,42.55473062,1.324545808,4.064462868,3.802132201,-3.802132201,0,0.29108512,0.385128265,12.38704886,0.107182086,1,0.257185691,0,0.930845851,0.969607814,0.724496596,1,47.83646514,1.116096467,0.017448657,0.312029739,0.95171034,0.676206936,0.961238037,0.922476074,0.271798868,11.90690253,48.10826401,13.02299899,248.8450505,0,0.546067245,56.90237437,-0.546067245,123.0976256,0.958436185,0,286.610365,13.02299899,295.1336574,1,16,3% -1/27/2018 1:00,85.80251099,243.1197452,20.14602408,110.1746471,12.08184701,56.75749373,44.88808974,11.86940399,11.71753475,0.151869239,5.248949046,0,5.248949046,0.364312265,4.884636782,1.497536323,4.24324003,13.52746212,-13.52746212,0,0.599713718,0.091078066,2.929383686,0.640698585,1,0.073789479,0,0.95407925,0.992841213,0.724496596,1,11.34264954,0.263942996,0.08401651,0.312029739,0.789520315,0.514016911,0.961238037,0.922476074,0.062892278,2.815835024,11.40554182,3.07977802,16.12835415,0,0.407426671,65.9567155,-0.407426671,114.0432845,0.92727853,0,26.36101835,3.07977802,28.37667147,1,17,8% -1/27/2018 2:00,96.93335998,252.2489005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691806287,4.402573847,-8.217072759,8.217072759,0.064644109,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.225822679,76.94874066,-0.225822679,103.0512593,0.82858734,0,0,0,0,1,18,0% -1/27/2018 3:00,108.4351623,260.8726752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892550608,4.553087111,-2.946109749,2.946109749,0.966031871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021483571,88.76898733,-0.021483571,91.23101267,0,0,0,0,0,1,19,0% -1/27/2018 4:00,120.2188922,269.6761212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098215492,4.706736229,-1.61662325,1.61662325,0.806612547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194665704,101.2251956,0.194665704,78.77480439,0,0.793149415,0,0,0,1,20,0% -1/27/2018 5:00,132.0039206,279.6251587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.30390304,4.88037969,-0.965298134,0.965298134,0.695229393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407893678,114.0725874,0.407893678,65.92741257,0,0.927419037,0,0,0,1,21,0% -1/27/2018 6:00,143.3742892,292.4807106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502353409,5.104751398,-0.54823301,0.54823301,0.623907056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603666668,127.1329573,0.603666668,52.86704274,0,0.967172833,0,0,0,1,22,0% -1/27/2018 7:00,153.4202649,312.0446161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.677688761,5.446205964,-0.234542132,0.234542132,0.570262756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768638819,140.2318128,0.768638819,39.76818716,0,0.984949942,0,0,0,1,23,0% -1/28/2018 8:00,159.7523387,344.8154714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788204298,6.018165288,0.030965761,-0.030965761,0.524858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891561204,153.0700874,0.891561204,26.92991265,0,0.993918601,0,0,0,1,0,0% -1/28/2018 9:00,158.6265497,25.55125817,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768555574,0.445953583,0.279383889,-0.279383889,0.482376231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964048174,164.5898131,0.964048174,15.41018693,0,0.998135372,0,0,0,1,1,0% -1/28/2018 10:00,150.9070413,54.19838199,0,0,0,0,0,0,0,0,0,0,0,0,0,2.633824735,0.945940215,0.535404512,-0.535404512,0.438594126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981148818,168.8572718,0.981148818,11.14272821,0,0.999039331,0,0,0,1,2,0% -1/28/2018 11:00,140.3469526,71.36417329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449516419,1.245539792,0.828597711,-0.828597711,0.388455136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941684611,160.336417,0.941684611,19.66358303,0,0.996903667,0,0,0,1,3,0% -1/28/2018 12:00,128.7969471,83.16564088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247930794,1.451514258,1.211190191,-1.211190191,0.323027968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848330286,148.0305239,0.848330286,31.9694761,0,0.991060692,0,0,0,1,4,0% -1/28/2018 13:00,116.9687558,92.6692389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041489912,1.617383334,1.813433301,-1.813433301,0.220038331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707432339,135.0263855,0.707432339,44.9736145,0,0.979321863,0,0,0,1,5,0% -1/28/2018 14:00,105.2201427,101.3367763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.836437929,1.768660399,3.139340577,-3.139340577,0,#DIV/0!,0,0,0.006660508,1,0.308376396,0,0.923052921,0.961814885,0.724496596,1,0,0,0.00113546,0.312029739,0.996785266,0.721281862,0.961238037,0.922476074,0,0,0,0,0,0,-0.528577433,121.909388,0.528577433,58.09061201,0,0.95540648,0,0,0,1,6,0% -1/28/2018 15:00,93.82077064,110.0254048,0,0,0,0,0,0,0,0,0,0,0,0,0,1.637481354,1.920305574,11.4662011,-11.4662011,0,#DIV/0!,0,0,0.588592862,1,0.086992731,0,0.952662146,0.991424109,0.724496596,1,0,0,0.078686793,0.312029739,0.801209238,0.525705834,0.961238037,0.922476074,0,0,0,0,0,0,-0.323940005,108.9013679,0.323940005,71.09863212,0,0.895650431,0,0,0,1,7,0% -1/28/2018 16:00,82.93600623,119.3880035,56.70095584,250.8805569,25.84820585,25.49622283,0,25.49622283,25.06878708,0.427435756,40.96526037,26.43803839,14.52722198,0.779418776,13.7478032,1.447506377,2.083713748,-5.252915445,5.252915445,0.571544864,0.455868962,0.327785205,10.54269895,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.09707168,0.56468625,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.237479265,10.13404325,24.33455094,10.6987295,0,26.43803839,-0.105380978,96.04911676,0.105380978,83.95088324,0,0.575531068,24.33455094,25.91464196,41.29516581,1,8,70% -1/28/2018 17:00,73.25980978,130.0300824,223.4681436,575.0782205,57.82703223,119.3289077,61.56097658,57.76793111,56.08333385,1.68459726,55.92613701,0,55.92613701,1.743698381,54.18243863,1.27862489,2.269453065,-1.660837438,1.660837438,0.814173619,0.258770809,1.452560937,46.71935288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90943373,1.263303541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.052375454,44.90841905,54.96180918,46.17172259,61.56097658,0,0.107048006,83.8548262,-0.107048006,96.1451738,0.582919836,0,90.84692356,46.17172259,121.0653926,1,9,33% -1/28/2018 18:00,65.07388212,142.5166584,373.1289429,709.7825642,73.99162118,289.5319059,214.9586015,74.57330439,71.76050081,2.812803582,92.70055252,0,92.70055252,2.231120379,90.46943215,1.1357535,2.487384927,-0.646446023,0.646446023,0.64070247,0.198300407,2.002579213,64.40983133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97892292,1.616439119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450861823,61.91317982,70.42978474,63.52961894,214.9586015,0,0.302851341,72.37105795,-0.302851341,107.628942,0.884902498,0,260.6471881,63.52961894,302.2260531,1,10,16% -1/28/2018 19:00,59.10692285,157.1799799,478.676693,770.7190484,82.96057663,444.7900576,360.7225813,84.06747626,80.45900915,3.608467106,118.5622736,0,118.5622736,2.501567477,116.0607062,1.031610414,2.743308167,-0.082227694,0.082227694,0.544215454,0.173312338,2.248827512,72.33002309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34026,1.812377122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629267877,69.5263694,78.96952788,71.33874652,360.7225813,0,0.468033821,62.09325687,-0.468033821,117.9067431,0.943170113,0,419.1922858,71.33874652,465.8820686,1,11,11% -1/28/2018 20:00,56.10908903,173.7010814,529.7381036,794.1898931,86.88714988,557.8105994,469.550028,88.26057132,84.26718173,3.993389587,131.0611045,0,131.0611045,2.619968148,128.4411363,0.979288344,3.031655784,0.352600443,-0.352600443,0.469855463,0.164019068,2.223556362,71.51721604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.00082034,1.898158005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610959015,68.74506834,82.61177935,70.64322635,469.550028,0,0.591231432,53.75555685,-0.591231432,126.2444432,0.965430748,0,535.9298141,70.64322635,582.1643929,1,12,9% -1/28/2018 21:00,56.56858703,190.8365055,522.0105115,790.8397022,86.30657435,612.7742687,525.1350202,87.63924843,83.7041127,3.935135734,129.1699538,0,129.1699538,2.602461654,126.5674921,0.987308097,3.330725354,0.776456959,-0.776456959,0.397371729,0.165334936,1.955790934,62.90495941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45957697,1.885474609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416963874,60.46663969,81.87654084,62.3521143,525.1350202,0,0.664022075,48.39265466,-0.664022075,131.6073453,0.974701299,0,593.726327,62.3521143,634.5345387,1,13,7% -1/28/2018 22:00,60.40458441,206.9597651,456.1287066,759.2583552,81.15204092,599.539354,517.3958557,82.14349832,78.70500747,3.43849086,113.0407192,0,113.0407192,2.447033453,110.5936858,1.054258881,3.61212932,1.286811692,-1.286811692,0.31009593,0.177914785,1.488316605,47.86937808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.65424687,1.772867407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078280314,46.01386701,76.73252718,47.78673442,517.3958557,0,0.681449012,47.04302205,-0.681449012,132.956978,0.976626939,0,582.0352579,47.78673442,613.3107198,1,14,5% -1/28/2018 23:00,67.02382608,221.0567688,337.7752197,684.3589184,70.6368733,510.661215,439.6080117,71.05320323,68.50691095,2.546292283,84.02747499,0,84.02747499,2.129962352,81.89751264,1.169786442,3.858168449,2.063991456,-2.063991456,0.177190363,0.209123906,0.889316841,28.60348661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.85144859,1.543150474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.644307024,27.49475932,66.49575562,29.03790979,439.6080117,0,0.642364701,50.03162387,-0.642364701,129.9683761,0.972162597,0,493.866222,29.03790979,512.8709532,1,15,4% -1/28/2018 0:00,75.66465903,233.023704,179.6459257,516.8193733,51.68316968,335.5209536,284.0419753,51.4789783,50.12473143,1.354246871,45.11567282,0,45.11567282,1.558438256,43.55723456,1.320597427,4.06703087,3.742560799,-3.742560799,0,0.287694639,0.389609564,12.53118286,0.098987001,1,0.261097197,0,0.930269723,0.969031686,0.724496596,1,48.38012792,1.129083212,0.016174064,0.312029739,0.955157187,0.679653782,0.961238037,0.922476074,0.275424756,12.04544961,48.65555267,13.17453282,255.9255121,0,0.549596223,56.66068344,-0.549596223,123.3393166,0.95902412,0,294.0942917,13.17453282,302.7167599,1,16,3% -1/28/2018 1:00,85.59890273,243.2872805,22.29144937,120.1306783,13.07284664,62.19447202,49.34777757,12.84669444,12.67865208,0.168042361,5.799014541,0,5.799014541,0.39419456,5.404819981,1.493982689,4.246164073,12.90383694,-12.90383694,0,0.586451173,0.09854864,3.16966302,0.626382253,1,0.077341747,0,0.953702005,0.992463968,0.724496596,1,12.27527014,0.285592617,0.082572689,0.312029739,0.792664414,0.51716101,0.961238037,0.922476074,0.067972097,3.046800659,12.34324224,3.332393276,18.43720546,0,0.410784142,65.74589713,-0.410784142,114.2541029,0.928281572,0,29.4581603,3.332393276,31.63914505,1,17,7% -1/28/2018 2:00,96.73681131,252.4334444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688375865,4.405794748,-8.458017615,8.458017615,0.023440112,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.229118145,76.7548412,-0.229118145,103.2451588,0.831771976,0,0,0,0,1,18,0% -1/28/2018 3:00,108.2477496,261.0758399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889279639,4.556633003,-2.976502639,2.976502639,0.960834381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024527587,88.59453184,-0.024527587,91.40546816,0,0,0,0,0,1,19,0% -1/28/2018 4:00,120.0349926,269.9032745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095005839,4.710700801,-1.626298515,1.626298515,0.808267115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.191935669,101.0657692,0.191935669,78.93423076,0,0.78949605,0,0,0,1,20,0% -1/28/2018 5:00,131.8158569,279.8841814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300620709,4.884900489,-0.969185189,0.969185189,0.695894118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.405518356,113.9236141,0.405518356,66.0763859,0,0.926701019,0,0,0,1,21,0% -1/28/2018 6:00,143.1704266,292.77548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498795336,5.109896094,-0.549708668,0.549708668,0.624159408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601662214,126.9890379,0.601662214,53.01096208,0,0.966896892,0,0,0,1,22,0% -1/28/2018 7:00,153.1839445,312.3339056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673564192,5.451255018,-0.234707244,0.234707244,0.570290992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766995719,140.0848682,0.766995719,39.91513177,0,0.984810588,0,0,0,1,23,0% -1/29/2018 8:00,159.4829138,344.8616066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783501947,6.018970498,0.03171526,-0.03171526,0.524730061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890244959,152.9040445,0.890244959,27.09595549,0,0.993835683,0,0,0,1,0,0% -1/29/2018 9:00,158.3924819,25.18332312,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764470319,0.439531905,0.280965391,-0.280965391,0.482105778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963001699,164.3657622,0.963001699,15.63423776,0,0.998079012,0,0,0,1,1,0% -1/29/2018 10:00,150.7378603,53.76595756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630871969,0.938392985,0.537964641,-0.537964641,0.438156318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980296383,168.6073096,0.980296383,11.39269036,0,0.998995017,0,0,0,1,2,0% -1/29/2018 11:00,140.2151062,70.99454764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447215264,1.239088607,0.832596567,-0.832596567,0.387771291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940937074,160.209526,0.940937074,19.79047404,0,0.996861484,0,0,0,1,3,0% -1/29/2018 12:00,128.6803389,82.85243261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245895597,1.446047742,1.217787944,-1.217787944,0.321899686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847591236,147.9506375,0.847591236,32.04936253,0,0.9910093,0,0,0,1,4,0% -1/29/2018 13:00,116.8542222,92.39391616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039490923,1.612578046,1.826074066,-1.826074066,0.217876633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706604731,134.9593341,0.706604731,45.04066593,0,0.979239081,0,0,0,1,5,0% -1/29/2018 14:00,105.0989093,101.085539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834322008,1.764275481,3.174190209,-3.174190209,0,#DIV/0!,0,0,0.012506414,1,0.305198107,0,0.923552545,0.962314508,0.724496596,1,0,0,0.002126226,0.312029739,0.993988403,0.718484999,0.961238037,0.922476074,0,0,0,0,0,0,-0.527570272,121.8414344,0.527570272,58.15856558,0,0.955225896,0,0,0,1,6,0% -1/29/2018 15:00,93.68589123,109.789488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635127265,1.91618805,11.92801912,-11.92801912,0,#DIV/0!,0,0,0.601539288,1,0.083640627,0,0.953025795,0.991787758,0.724496596,1,0,0,0.080030469,0.312029739,0.798240933,0.522737529,0.961238037,0.922476074,0,0,0,0,0,0,-0.322674598,108.8247506,0.322674598,71.17524939,0,0.895045131,0,0,0,1,7,0% -1/29/2018 16:00,82.78346332,119.1632668,58.98519752,258.3757406,26.52814755,26.17288136,0,26.17288136,25.72822602,0.444655334,41.92963053,26.82806496,15.10156557,0.799921527,14.30164404,1.444844001,2.079791354,-5.164210131,5.164210131,0.586714366,0.449742455,0.343534691,11.04925657,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.73094947,0.579540423,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.248889714,10.62096569,24.97983919,11.20050612,0,26.82806496,-0.103833529,95.95996535,0.103833529,84.04003465,0,0.568459977,24.97983919,26.45118729,42.29161225,1,8,69% -1/29/2018 17:00,73.07981377,129.8180392,226.81719,579.3033232,58.21716991,121.304666,63.13311483,58.17155122,56.46170744,1.709843786,56.74991618,0,56.74991618,1.755462471,54.99445371,1.275483367,2.265752213,-1.652644341,1.652644341,0.812772517,0.256670008,1.471881742,47.3407764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.27314082,1.271826585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066373312,45.50575497,55.33951413,46.77758155,63.13311483,0,0.108981102,83.74341607,-0.108981102,96.25658393,0.591204862,0,92.66411853,46.77758155,123.2791101,1,9,33% -1/29/2018 18:00,64.86345359,142.327099,376.9814951,712.59139,74.289092,292.3462976,217.45545,74.89084753,72.04900178,2.841845748,93.64361825,0,93.64361825,2.240090221,91.40352803,1.132080829,2.484076493,-0.64700448,0.64700448,0.640797972,0.197062967,2.02221023,65.0412323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.25624103,1.62293774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465084428,62.52010645,70.72132545,64.14304419,217.45545,0,0.30516149,72.23212023,-0.30516149,107.7678798,0.886152327,0,263.4199785,64.14304419,305.4003181,1,10,16% -1/29/2018 19:00,58.8659873,157.0330276,482.8959957,772.9818364,83.2322714,448.2107511,363.8479658,84.36278532,80.72251133,3.640273992,119.593485,0,119.593485,2.509760077,117.0837249,1.027405296,2.740743366,-0.085688974,0.085688974,0.544807367,0.172360658,2.268854163,72.97414903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.59354832,1.818312632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643777118,70.14552776,79.23732544,71.96384039,363.8479658,0,0.470707006,61.91980039,-0.470707006,118.0801996,0.943776809,0,422.6285977,71.96384039,469.727492,1,11,11% -1/29/2018 20:00,55.84506646,173.6218087,534.2236039,796.2933281,87.1585249,561.7397154,473.1821384,88.55757697,84.53037379,4.027203183,132.1568489,0,132.1568489,2.628151106,129.5286978,0.974680281,3.030272215,0.347132478,-0.347132478,0.47079054,0.163149895,2.243679767,72.16445391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25381056,1.90408653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.625538353,69.367218,82.87934891,71.27130453,473.1821384,0,0.594230947,53.54217255,-0.594230947,126.4578275,0.96585763,0,539.9059279,71.27130453,586.5515713,1,12,9% -1/29/2018 21:00,56.29633317,190.838225,526.6557469,793.0522943,86.59287668,617.1472614,529.195326,87.95193543,83.98178195,3.97015348,130.304878,0,130.304878,2.611094726,127.6937832,0.982556371,3.330755365,0.768528423,-0.768528423,0.398727589,0.164420264,1.97550453,63.53901644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.72648322,1.89172924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431246307,61.07611943,82.15772952,62.96784867,529.195326,0,0.66728932,48.14180364,-0.66728932,131.8581964,0.975069983,0,598.1602071,62.96784867,639.3714047,1,13,7% -1/29/2018 22:00,60.13970065,207.0329818,460.8121888,761.9010224,81.47161926,604.3200892,521.8313429,82.48874627,79.01494934,3.473796927,114.1859202,0,114.1859202,2.456669919,111.7292503,1.049635788,3.613407192,1.2745885,-1.2745885,0.312186219,0.176800053,1.506904384,48.46722495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95217478,1.779848993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.091747097,46.58854016,77.04392188,48.36838916,521.8313429,0,0.684906999,46.7717064,-0.684906999,133.2282936,0.976997388,0,586.8717809,48.36838916,618.5279242,1,14,5% -1/29/2018 23:00,66.77586806,221.179589,342.3449482,688.0428519,71.02970003,515.8910333,444.4223999,71.46863333,68.8878925,2.580740826,85.14730374,0,85.14730374,2.141807528,83.00549622,1.165458759,3.860312067,2.041800652,-2.041800652,0.180985214,0.207479913,0.905618939,29.12781811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.21766255,1.551732263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.656117838,27.9987667,66.87378039,29.55049896,444.4223999,0,0.645922559,49.7651189,-0.645922559,130.2348811,0.97259134,0,499.1151577,29.55049896,518.4553683,1,15,4% -1/29/2018 0:00,75.43658462,233.1772326,183.8223154,523.1610594,52.27273287,341.4695325,289.3872852,52.08224737,50.69651711,1.38573026,46.14606434,0,46.14606434,1.576215762,44.56984858,1.316616778,4.06971045,3.684407819,-3.684407819,0,0.284365545,0.39405394,12.67412928,0.090840619,1,0.265029323,0,0.929687301,0.968449264,0.724496596,1,48.91849408,1.141962954,0.014897662,0.312029739,0.958621678,0.683118274,0.961238037,0.922476074,0.279047396,12.18285514,49.19754148,13.3248181,263.099165,0,0.553151424,56.41651636,-0.553151424,123.5834836,0.959608838,0,301.6698255,13.3248181,310.3906524,1,16,3% -1/29/2018 1:00,85.39370473,243.460998,24.54304733,130.3212763,14.07714851,67.81192254,53.97423614,13.83768641,13.65267055,0.185015858,6.375223941,0,6.375223941,0.424477967,5.950745974,1.490401308,4.249196015,12.33102772,-12.33102772,0,0.573569709,0.106119492,3.413167637,0.61218909,1,0.08091916,0,0.953319096,0.992081059,0.724496596,1,13.22058275,0.307532842,0.081126053,0.312029739,0.795831364,0.52032796,0.961238037,0.922476074,0.073115071,3.280866559,13.29369782,3.588399401,20.93179763,0,0.414162888,65.5333894,-0.414162888,114.4666106,0.929274552,0,32.74508469,3.588399401,35.09362033,1,17,7% -1/29/2018 2:00,96.53941116,252.6240278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684930583,4.409121055,-8.714386598,8.714386598,0,#DIV/0!,0,0,1,0.019993664,0,0.114253017,0.961238037,1,0.452015149,0.727518553,0,0,0.115824807,0.003451528,0.724496596,0.448993192,0.999694259,0.960932296,0,0,0,0,0,0,0.232420171,76.56040071,-0.232420171,103.4395993,0.834872372,0,0,0,0,1,18,0% -1/29/2018 3:00,108.0596371,261.2850618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885996457,4.560284615,-3.007523517,3.007523517,0.955529498,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.027572311,88.4200227,-0.027572311,91.5799773,0,0,0,0,0,1,19,0% -1/29/2018 4:00,119.8503249,270.1367095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091782779,4.714775012,-1.636032438,1.636032438,0.809931714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189207641,100.9065466,0.189207641,79.09345336,0,0.785740059,0,0,0,1,20,0% -1/29/2018 5:00,131.6266969,280.1499328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297319245,4.889538727,-0.973037277,0.973037277,0.696552864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403144436,113.7749001,0.403144436,66.22509992,0,0.925974972,0,0,0,1,21,0% -1/29/2018 6:00,142.9647946,293.0775738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49520638,5.115168626,-0.551122225,0.551122225,0.624401141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599655278,126.8452127,0.599655278,53.15478729,0,0.966618761,0,0,0,1,22,0% -1/29/2018 7:00,152.9447457,312.6311165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669389386,5.456442328,-0.234796505,0.234796505,0.570306257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765343249,139.9375386,0.765343249,40.06246137,0,0.984669836,0,0,0,1,23,0% -1/30/2018 8:00,159.2089649,344.9184764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778720637,6.019963064,0.032553542,-0.032553542,0.524586706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888909928,152.7365869,0.888909928,27.26341306,0,0.993751331,0,0,0,1,0,0% -1/30/2018 9:00,158.1515487,24.82587067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760265242,0.433293183,0.282653431,-0.282653431,0.481817106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96192514,164.1384916,0.96192514,15.86150844,0,0.998020903,0,0,0,1,1,0% -1/30/2018 10:00,150.5612474,53.33569062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627789492,0.93088341,0.540660002,-0.540660002,0.437695384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979401469,168.3505863,0.979401469,11.64941371,0,0.998948412,0,0,0,1,2,0% -1/30/2018 11:00,140.0763282,70.6235687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444793131,1.232613803,0.836782455,-0.836782455,0.387055462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940134419,160.0741427,0.940134419,19.92585733,0,0.996816116,0,0,0,1,3,0% -1/30/2018 12:00,128.5572933,82.53697668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243748045,1.440541998,1.224680754,-1.224680754,0.320720946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.846785056,147.8636972,0.846785056,32.13630277,0,0.990953138,0,0,0,1,4,0% -1/30/2018 13:00,116.7335833,92.1162216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037385376,1.607731361,1.839298727,-1.839298727,0.215615082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70569944,134.8860785,0.70569944,45.11392153,0,0.979148307,0,0,0,1,5,0% -1/30/2018 14:00,104.9717649,100.8320286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832102919,1.759850891,3.210941756,-3.210941756,0,#DIV/0!,0,0,0.018597277,1,0.301914426,0,0.924066566,0.962828529,0.724496596,1,0,0,0.003152763,0.312029739,0.991098632,0.715595228,0.961238037,0.922476074,0,0,0,0,0,0,-0.526477059,121.7677314,0.526477059,58.23226857,0,0.9550291,0,0,0,1,6,0% -1/30/2018 15:00,93.54519084,109.5514812,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632671579,1.912034048,12.44550052,-12.44550052,0,#DIV/0!,0,0,0.615111085,1,0.080178072,0,0.953398665,0.992160628,0.724496596,1,0,0,0.081425129,0.312029739,0.795175261,0.519671857,0.961238037,0.922476074,0,0,0,0,0,0,-0.321317532,108.7426224,0.321317532,71.25737764,0,0.894390688,0,0,0,1,7,0% -1/30/2018 16:00,82.62511545,118.9367064,61.38112005,266.0854434,27.22615632,26.86790406,0,26.86790406,26.40518725,0.46271681,42.89535009,27.19181782,15.70353227,0.820969067,14.8825632,1.442080309,2.075837129,-5.075208088,5.075208088,0.601934612,0.443559132,0.360225106,11.58607768,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38167035,0.594789294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.260981863,11.13697856,25.64265222,11.73176786,0,27.19181782,-0.102192053,95.86541269,0.102192053,84.13458731,0,0.560725165,25.64265222,26.9789044,43.29980557,1,8,69% -1/30/2018 17:00,72.89397406,129.6046038,230.2754553,583.5960369,58.61602284,123.3678789,64.7834318,58.58444713,56.84853348,1.735913651,57.60043954,0,57.60043954,1.767489359,55.83295018,1.272239852,2.262027062,-1.644047912,1.644047912,0.811302441,0.254547419,1.491731214,47.97920364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64497272,1.280540024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080754187,46.11943552,55.72572691,47.39997554,64.7834318,0,0.11100732,83.62661362,-0.11100732,96.37338638,0.599579251,0,94.56852846,47.39997554,125.5908644,1,9,33% -1/30/2018 18:00,64.64713258,142.1369194,380.9359607,715.4337899,74.59301559,295.2547232,220.0393061,75.21541713,72.34376095,2.87165618,94.61158864,0,94.61158864,2.249254639,92.362334,1.128305315,2.480757233,-0.64737392,0.64737392,0.64086115,0.195815106,2.042281563,65.68679536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.53957475,1.629577329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.47962604,63.14064622,71.01920079,64.77022355,220.0393061,0,0.307560684,72.08771266,-0.307560684,107.9122873,0.887430457,0,266.2887827,64.77022355,308.6795986,1,10,16% -1/30/2018 19:00,58.61921882,156.8868067,487.2067176,775.2632745,83.50907114,451.7215562,367.0578216,84.66373457,80.99096453,3.672770034,120.647016,0,120.647016,2.518106611,118.1289094,1.023098373,2.73819133,-0.089039147,0.089039147,0.54538028,0.171403776,2.289251581,73.63020011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85159575,1.824359667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658554978,70.77614901,79.51015073,72.60050868,367.0578216,0,0.473462156,61.74073168,-0.473462156,118.2592683,0.944394939,0,426.1576997,72.60050868,473.6732806,1,11,11% -1/30/2018 20:00,55.57556477,173.5452417,538.7881543,798.4065541,87.43388524,565.7495501,476.8905064,88.8590437,84.79743101,4.061612692,133.2718801,0,133.2718801,2.636454237,130.6354259,0.969976589,3.028935868,0.341746847,-0.341746847,0.471711537,0.162278782,2.264111654,72.82161363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51051611,1.91010212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640341186,69.99890492,83.1508573,71.90900704,476.8905064,0,0.597302845,53.3230286,-0.597302845,126.6769714,0.96629037,0,543.9655613,71.90900704,591.0285682,1,12,9% -1/30/2018 21:00,56.01937667,190.8446895,531.3669098,795.2673423,86.88204971,621.5881257,533.3202222,88.26790357,84.26223535,4.005668216,131.4558736,0,131.4558736,2.619814359,128.8360592,0.977722568,3.330868192,0.760682593,-0.760682593,0.400069305,0.1635067,1.995471661,64.18122801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.99606569,1.898046585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445712426,61.69343761,82.44177812,63.5914842,533.3202222,0,0.670617532,47.8852559,-0.670617532,132.1147441,0.975441854,0,602.6646443,63.5914842,644.2839989,1,13,7% -1/30/2018 22:00,59.8711788,207.1122469,465.5489094,764.5369172,81.79276418,609.1534482,526.3175333,82.83591489,79.32641056,3.509504328,115.3440767,0,115.3440767,2.466353623,112.877723,1.044949197,3.614790629,1.262489688,-1.262489688,0.314255238,0.175691023,1.525702386,49.07183331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25156315,1.786864804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105366185,47.16971272,77.35692934,48.95657752,526.3175333,0,0.688413498,46.4953457,-0.688413498,133.5046543,0.977369234,0,591.7634934,48.95657752,623.8045943,1,14,5% -1/30/2018 23:00,66.52532499,221.3088643,346.9573344,691.7022983,71.4220917,521.1558913,449.2719283,71.88396306,69.26845212,2.615510942,86.27746224,0,86.27746224,2.153639584,84.12382265,1.161085957,3.862568346,2.019909968,-2.019909968,0.184728741,0.205852664,0.922110158,29.6582324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58347093,1.560304548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.66806567,28.50862109,67.2515366,30.06892564,449.2719283,0,0.649516316,49.49485593,-0.649516316,130.5051441,0.97301964,0,504.4019464,30.06892564,524.0814568,1,15,4% -1/30/2018 0:00,75.20675738,233.3371123,188.0382748,529.4332334,52.85717112,347.4326336,294.7517893,52.68084433,51.26333239,1.417511943,47.18589548,0,47.18589548,1.593838731,45.59205675,1.312605536,4.072500876,3.627648654,-3.627648654,0,0.281097937,0.398459683,12.8158331,0.082746171,1,0.268980312,0,0.929098803,0.967860766,0.724496596,1,49.45134594,1.154730735,0.013620034,0.312029739,0.96210228,0.686598876,0.961238037,0.922476074,0.282665597,12.31906625,49.73401153,13.47379698,270.3622073,0,0.556730803,56.16998885,-0.556730803,123.8300111,0.960189988,0,309.3330962,13.47379698,318.1514268,1,16,3% -1/30/2018 1:00,85.18702256,243.6408313,26.89730479,140.7090662,15.0913152,73.59359415,58.75457454,14.83901961,14.63625637,0.202763245,6.976621786,0,6.976621786,0.455058834,6.521562951,1.486794024,4.252334699,11.80334717,-11.80334717,0,0.561071651,0.113764709,3.659064092,0.598125263,1,0.084519895,0,0.952930663,0.991692626,0.724496596,1,14.17533309,0.329688576,0.079677403,0.312029739,0.799019491,0.523516087,0.961238037,0.922476074,0.078304435,3.517231584,14.25363752,3.846920161,23.61197917,0,0.417560688,65.31932093,-0.417560688,114.6806791,0.930256927,0,36.2188447,3.846920161,38.73657701,1,17,7% -1/30/2018 2:00,96.34122248,252.820564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681471538,4.412551258,-8.987623738,8.987623738,0,#DIV/0!,0,0,1,0.062905179,0,0.110808356,0.961238037,1,0.458707584,0.734210988,0,0,0.115824807,0.011084592,0.724496596,0.448993192,0.999007883,0.96024592,0,0,0,0,0,0,0.235727278,76.36550282,-0.235727278,103.6344972,0.837890479,0,0,0,0,1,18,0% -1/30/2018 3:00,107.8708704,261.500234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882701856,4.564040078,-3.039184815,3.039184815,0.950115097,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030616638,88.24552171,-0.030616638,91.75447829,0,0,0,0,0,1,19,0% -1/30/2018 4:00,119.6649179,270.3762922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088546817,4.718956518,-1.645823711,1.645823711,0.81160612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.186482328,100.7475676,0.186482328,79.2524324,0,0.781878078,0,0,0,1,20,0% -1/30/2018 5:00,131.4364552,280.4222348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293998901,4.894291293,-0.976853243,0.976853243,0.697205433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.400772228,113.626463,0.400772228,66.37353695,0,0.925240856,0,0,0,1,21,0% -1/30/2018 6:00,142.7573999,293.3867323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.49158666,5.12056446,-0.552473072,0.552473072,0.624632149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597645806,126.7014763,0.597645806,53.29852369,0,0.966338407,0,0,0,1,22,0% -1/30/2018 7:00,152.7026914,312.9358478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665164742,5.461760891,-0.234809673,0.234809673,0.570308509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763681042,139.789794,0.763681042,40.21020598,0,0.98452764,0,0,0,1,23,0% -1/31/2018 8:00,158.9305852,344.9855893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773861994,6.021134405,0.033480632,-0.033480632,0.524428164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887555506,152.5676621,0.887555506,27.4323379,0,0.993665495,0,0,0,1,0,0% -1/31/2018 9:00,157.9038938,24.4789671,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755942848,0.427238573,0.284447937,-0.284447937,0.481510228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960817749,163.907976,0.960817749,16.092024,0,0.997960995,0,0,0,1,1,0% -1/31/2018 10:00,150.377283,52.90795863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624578709,0.923418079,0.543490587,-0.543490587,0.437211325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978463287,168.087309,0.978463287,11.912691,0,0.998899462,0,0,0,1,2,0% -1/31/2018 11:00,139.9306643,70.25152497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442250817,1.226120415,0.841155802,-0.841155802,0.386307576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93927592,159.9303101,0.93927592,20.06968991,0,0.996767506,0,0,0,1,3,0% -1/31/2018 12:00,128.4278503,82.21947444,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241488839,1.435000538,1.231870706,-1.231870706,0.319491392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845911185,147.7696936,0.845911185,32.23030641,0,0.99089214,0,0,0,1,4,0% -1/31/2018 13:00,116.6068847,91.83630222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035174069,1.602845847,1.853116898,-1.853116898,0.213252036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704716157,134.8066173,0.704716157,45.19338267,0,0.979049448,0,0,0,1,5,0% -1/31/2018 14:00,104.8387648,100.5763569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82978163,1.755388578,3.249668547,-3.249668547,0,#DIV/0!,0,0,0.024934722,1,0.2985276,0,0.924594417,0.96335638,0.724496596,1,0,0,0.004214686,0.312029739,0.988117895,0.712614491,0.961238037,0.922476074,0,0,0,0,0,0,-0.525297808,121.6882937,0.525297808,58.31170628,0,0.954815898,0,0,0,1,6,0% -1/31/2018 15:00,93.39873612,109.31147,0,0,0,0,0,0,0,0,0,0,0,0,0,1.630115462,1.907845062,13.02793227,-13.02793227,0,#DIV/0!,0,0,0.629321272,1,0.076607934,0,0.953780177,0.992542141,0.724496596,1,0,0,0.082870344,0.312029739,0.792014868,0.516511464,0.961238037,0.922476074,0,0,0,0,0,0,-0.319869196,108.6550146,0.319869196,71.34498538,0,0.893686105,0,0,0,1,7,0% -1/31/2018 16:00,82.46103476,118.7083855,63.88933283,273.9959466,27.94095074,27.58005276,0,27.58005276,27.09842798,0.481624778,43.85810933,27.52487815,16.33323119,0.842522756,15.49070843,1.439216561,2.071852177,-4.986169543,4.986169543,0.6171611,0.437333581,0.377877699,12.15384574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.04803971,0.610404869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.273771106,11.68273882,26.32181082,12.29314369,0,27.52487815,-0.100457246,95.76550132,0.100457246,84.23449868,0,0.552275823,26.32181082,27.49446841,44.31639051,1,8,68% -1/31/2018 17:00,72.70237706,129.389818,233.8413255,587.9500321,59.02304797,125.5182177,66.51213775,59.00607999,57.2432853,1.762794686,58.47729935,0,58.47729935,1.779762668,56.69753668,1.268895854,2.258278343,-1.635073821,1.635073821,0.809767781,0.252406404,1.512096392,48.63421776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02442319,1.289431995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095508689,46.74906,56.11993188,48.038492,66.51213775,0,0.113125494,83.50448181,-0.113125494,96.49551819,0.608012979,0,96.56017491,48.038492,128.0004072,1,9,33% -1/31/2018 18:00,64.4250128,141.9461421,384.9901558,718.3063355,74.90305185,298.2556724,222.7090055,75.54666689,72.64444847,2.902218415,95.60392391,0,95.60392391,2.258603376,93.34532053,1.124428594,2.47742754,-0.647559164,0.647559164,0.640892829,0.194558356,2.062781137,66.34613212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82860704,1.636350457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.494477912,63.77442579,71.32308495,65.41077625,222.7090055,0,0.310047391,71.93791347,-0.310047391,108.0620865,0.888734331,0,269.2522239,65.41077625,312.0622688,1,10,16% -1/31/2018 19:00,58.36671453,156.7413299,491.606391,777.5610234,83.7907028,455.3203582,370.3503176,84.97004059,81.26410396,3.705936631,121.72226,0,121.72226,2.526598844,119.1956611,1.018691342,2.735652281,-0.092278221,0.092278221,0.545934195,0.170442664,2.310008065,74.29779998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.11414776,1.830512262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67359298,71.41787139,79.78774074,73.24838365,370.3503176,0,0.476297431,61.55614073,-0.476297431,118.4438593,0.945023578,0,429.7775231,73.24838365,477.7171252,1,11,11% -1/31/2018 20:00,55.30068366,173.4713992,543.4291582,800.5276967,87.71298563,569.8376125,480.6728985,89.16471403,85.06811549,4.09659854,134.4055611,0,134.4055611,2.644870143,131.760691,0.965179008,3.027647074,0.33644547,-0.33644547,0.472618126,0.161406476,2.284840867,73.48833637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.77070833,1.916199415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65535943,70.63978418,83.42606776,72.55598359,480.6728985,0,0.600445057,53.09822084,-0.600445057,126.9017792,0.966728434,0,548.1062264,72.55598359,595.5926665,1,12,9% -1/31/2018 21:00,55.73782212,190.8559259,536.1414058,797.4831502,87.17386202,626.0941463,537.5072375,88.58690883,84.54524844,4.041660384,132.6223046,0,132.6223046,2.628613577,129.9936911,0.972808514,3.331064304,0.75292266,-0.75292266,0.401396332,0.162594907,2.015682084,64.83126468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.26810864,1.904421589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460354808,62.31827759,82.72846344,64.22269918,537.5072375,0,0.674004507,47.62310791,-0.674004507,132.3768921,0.97581652,0,607.2369053,64.22269918,649.2693774,1,13,7% -1/31/2018 22:00,59.59912678,207.1975747,470.3363965,767.1643414,82.11525259,614.036618,530.8518488,83.18476918,79.63917475,3.545594428,116.5145825,0,116.5145825,2.476077838,114.0385047,1.040200994,3.616279881,1.250519588,-1.250519588,0.316302245,0.174588344,1.544701693,49.68291633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55220399,1.793909965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.119131118,47.75710895,77.67133511,49.55101892,530.8518488,0,0.691966271,46.21404147,-0.691966271,133.7859585,0.977742143,0,596.7075593,49.55101892,629.1377101,1,14,5% -1/31/2018 23:00,66.27230057,221.4445797,351.6101279,695.3354064,71.81383333,526.4529812,454.1540143,72.29896695,69.64838129,2.650585665,87.41739835,0,87.41739835,2.16545204,85.25194631,1.156669848,3.864937026,1.998323476,-1.998323476,0.188420249,0.204242789,0.938783267,30.19449693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.9486733,1.568862631,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680145281,29.02409895,67.62881858,30.59296158,454.1540143,0,0.653143807,49.22094705,-0.653143807,130.779053,0.97344718,0,509.7237632,30.59296158,529.7462447,1,15,4% -1/31/2018 0:00,74.97526956,233.5032985,192.2917321,535.6334684,53.43628571,353.4073282,300.1327674,53.27456084,51.82498454,1.449576301,48.23465789,0,48.23465789,1.611301173,46.62335672,1.308565311,4.075401373,3.572256728,-3.572256728,0,0.277891749,0.402825293,12.95624613,0.07470652,1,0.272948509,0,0.928504441,0.967266404,0.724496596,1,49.97849314,1.167382215,0.012341717,0.312029739,0.965597547,0.690094142,0.961238037,0.922476074,0.286278285,12.4540366,50.26477142,13.62141881,277.7108927,0,0.560332364,55.92121398,-0.560332364,124.078786,0.960767246,0,317.080301,13.62141881,325.9952472,1,16,3% -1/31/2018 1:00,84.97895572,243.8267124,29.35054478,151.2582967,16.11217193,79.52361222,63.67602492,15.84758731,15.6263305,0.221256804,7.602220823,0,7.602220823,0.485841431,7.116379392,1.483162572,4.255578935,11.31590061,-11.31590061,0,0.548956486,0.121460358,3.906582626,0.584196003,1,0.088142253,0,0.952536837,0.9912988,0.724496596,1,15.13651093,0.351990463,0.078227471,0.312029739,0.802227232,0.526723828,0.961238037,0.922476074,0.083524865,3.755155814,15.22003579,4.107146277,26.4767457,0,0.42097542,65.10381487,-0.42097542,114.8961851,0.93122822,0,39.87592855,4.107146277,42.56397365,1,17,7% -1/31/2018 2:00,96.14230362,253.0229651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677999749,4.416083825,-9.279368127,9.279368127,0,#DIV/0!,0,0,1,0.104760159,0,0.107351661,0.961238037,1,0.465519499,0.741022903,0,0,0.115824807,0.018840262,0.724496596,0.448993192,0.998296086,0.959534123,0,0,0,0,0,0,0.239038064,76.17022691,-0.239038064,103.8297731,0.840828293,0,0,0,0,1,18,0% -1/31/2018 3:00,107.6814903,261.7212485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879396549,4.567897508,-3.071500201,3.071500201,0.944588841,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03365954,88.07108607,-0.03365954,91.92891393,0,0,0,0,0,1,19,0% -1/31/2018 4:00,119.4787959,270.6218878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085298375,4.723242971,-1.655671309,1.655671309,0.813290159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.183760358,100.5888671,0.183760358,79.41113287,0,0.777906494,0,0,0,1,20,0% -1/31/2018 5:00,131.2451417,280.7009093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290659851,4.89915508,-0.980632086,0.980632086,0.697851653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398401971,113.4783159,0.398401971,66.5216841,0,0.924498613,0,0,0,1,21,0% -1/31/2018 6:00,142.5482455,293.7026973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.487936226,5.126079089,-0.553760707,0.553760707,0.624852348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595633678,126.5578188,0.595633678,53.44218122,0,0.966055788,0,0,0,1,22,0% -1/31/2018 7:00,152.4578011,313.2477036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660890599,5.467203801,-0.23474658,0.23474658,0.570297719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762008681,139.6416002,0.762008681,40.35839978,0,0.98438395,0,0,0,1,23,0% -2/1/2018 8:00,158.6478637,345.0624562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768927573,6.022475986,0.0344965,-0.0344965,0.524254441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886181055,152.3972146,0.886181055,27.60278544,0,0.993578121,0,0,0,2,0,0% -2/1/2018 9:00,157.649661,24.14263751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.751505649,0.421368515,0.286348801,-0.286348801,0.481185161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.959678764,163.6741903,0.959678764,16.32580975,0,0.997899233,0,0,0,2,1,0% -2/1/2018 10:00,150.1860531,52.48311328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621241118,0.916003128,0.546456378,-0.546456378,0.436704145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97748105,167.817678,0.97748105,12.18232202,0,0.998848113,0,0,0,2,2,0% -2/1/2018 11:00,139.7781655,69.87869381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43958921,1.219613284,0.845717065,-0.845717065,0.385527554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938360872,159.7780834,0.938360872,20.22191657,0,0.996715596,0,0,0,2,3,0% -2/1/2018 12:00,128.2920548,81.90012069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23911876,1.429426764,1.239360031,-1.239360031,0.318210642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844969097,147.668625,0.844969097,32.33137498,0,0.990826238,0,0,0,2,4,0% -2/1/2018 13:00,116.4741764,91.55429998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.032857871,1.597923979,1.867538854,-1.867538854,0.210785736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703654621,134.7209552,0.703654621,45.27904483,0,0.978942412,0,0,0,2,5,0% -2/1/2018 14:00,104.6999681,100.318631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82735917,1.750890413,3.290450021,-3.290450021,0,#DIV/0!,0,0,0.031520524,1,0.295039894,0,0.925135526,0.963897489,0.724496596,1,0,0,0.005311613,0.312029739,0.985048147,0.709544743,0.961238037,0.922476074,0,0,0,0,0,0,-0.524032595,121.6031408,0.524032595,58.39685917,0,0.954586088,0,0,0,2,6,0% -2/1/2018 15:00,93.24659662,109.0695356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627460127,1.903622511,13.68687793,-13.68687793,0,#DIV/0!,0,0,0.644183865,1,0.072933089,0,0.954169754,0.992931717,0.724496596,1,0,0,0.084365696,0.312029739,0.788762425,0.513259021,0.961238037,0.922476074,0,0,0,0,0,0,-0.318330043,108.561963,0.318330043,71.43803701,0,0.892930314,0,0,0,2,7,0% -2/1/2018 16:00,82.29129608,118.4783628,66.51026786,282.0930354,28.67123163,28.30807071,0,28.30807071,27.80668821,0.501382493,44.81352724,27.82279935,16.99072789,0.864543419,16.12618447,1.436254062,2.067837524,-4.897331942,4.897331942,0.632353224,0.43107978,0.396512486,12.75320456,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.72884639,0.626358764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.287271946,12.25886531,27.01611833,12.88522408,0,27.82279935,-0.09862987,95.66027775,0.09862987,84.33972225,0,0.543054182,27.01611833,27.99451163,45.3379663,2,8,68% -2/1/2018 17:00,72.50511092,129.173719,237.5131252,592.3590757,59.43771066,127.7553,68.31938139,59.43591865,57.64544439,1.790474264,59.38007331,0,59.38007331,1.792266278,57.58780703,1.26545291,2.254506704,-1.62574757,1.62574757,0.808172898,0.250250215,1.532964086,49.30539454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.4109938,1.298490818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110627262,47.39422065,56.52162106,48.69271147,68.31938139,0,0.115334405,83.37708663,-0.115334405,96.62291337,0.616478016,0,98.63901774,48.69271147,130.5074235,2,9,32% -2/1/2018 18:00,64.1971889,141.7547847,389.1418598,721.2056717,75.21886556,301.3475925,225.4633375,75.88425495,72.95073924,2.933515714,96.62007557,0,96.62007557,2.268126325,94.35194925,1.120452317,2.474087723,-0.647565306,0.647565306,0.640893879,0.193294203,2.083696776,67.01885099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.12302537,1.643249801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.509631221,64.42106876,71.63265659,66.06431856,225.4633375,0,0.312620028,71.78280329,-0.312620028,108.2171967,0.890061431,0,272.3088774,66.06431856,315.5466526,2,10,16% -2/1/2018 19:00,58.10857163,156.5966056,496.0925304,779.8728081,84.07689772,459.0050147,373.7235906,85.28142409,81.54166904,3.739755044,122.8186062,0,122.8186062,2.535228677,120.2833775,1.014185899,2.733126365,-0.095406497,0.095406497,0.546469162,0.169478258,2.3311119,74.97657186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.38095387,1.836764546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.688882636,72.07033274,80.06983651,73.90709729,373.7235906,0,0.479210952,61.36611929,-0.479210952,118.6338807,0.945661817,0,433.4859663,73.90709729,481.8566833,2,11,11% -2/1/2018 20:00,55.02052215,173.4002967,548.1440191,802.6549473,87.99558579,574.0014024,484.527067,89.47433536,85.34219421,4.132141153,135.5572552,0,135.5572552,2.653391581,132.9038636,0.960289268,3.026406102,0.331229945,-0.331229945,0.473510033,0.160533697,2.305856305,74.1642651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.03416322,1.922373168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.670585044,71.28951259,83.70474826,73.21188576,484.527067,0,0.603655492,52.86784596,-0.603655492,127.132154,0.967171299,0,552.3254213,73.21188576,600.2411363,2,12,9% -2/1/2018 21:00,55.45177284,190.8719586,540.9766575,799.6980977,87.46808858,630.6626196,541.753906,88.90871354,84.83060299,4.078110553,133.8035394,0,133.8035394,2.637485594,131.1660538,0.967816012,3.331344128,0.745251413,-0.745251413,0.402708192,0.161685513,2.036125663,65.48880045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.54240228,1.910849334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475166111,62.95032598,83.01756839,64.86117531,541.753906,0,0.677448036,47.35545597,-0.677448036,132.644544,0.976193601,0,611.8742648,64.86117531,654.3246068,2,13,7% -2/1/2018 22:00,59.32365074,207.2889776,475.172209,769.7816958,82.43887005,618.9668223,535.4317395,83.53508277,79.95303395,3.582048825,117.6968395,0,117.6968395,2.485836099,115.2110034,1.03539303,3.617875162,1.238681943,-1.238681943,0.318326602,0.173492617,1.563893515,50.30019129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85389739,1.800979792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.133035528,48.35045713,77.98693292,50.15143692,535.4317395,0,0.695563096,45.92789432,-0.695563096,134.0721057,0.978115795,0,601.7011746,50.15143692,634.5242871,2,14,5% -2/1/2018 23:00,66.01689626,221.5867185,356.3011186,698.9404763,72.20472274,531.7795617,459.0661294,72.71343228,70.02748394,2.685948334,88.56657012,0,88.56657012,2.177238798,86.38933132,1.152212202,3.867417816,1.977044217,-1.977044217,0.192059216,0.202650845,0.955631137,30.73638234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.31308119,1.577402097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692351506,29.54497982,68.00543269,31.12238192,459.0661294,0,0.656802897,48.94350309,-0.656802897,131.0564969,0.973873661,0,515.0778448,31.12238192,535.4468213,2,15,4% -2/1/2018 0:00,74.74221063,233.675745,196.5806568,541.7596449,54.00990195,359.3908117,305.5275995,53.86321215,52.38130413,1.481908027,49.291854,0,49.291854,1.628597819,47.66325618,1.304497666,4.078411132,3.51820407,-3.51820407,0,0.274746777,0.407149455,13.09532603,0.066724217,1,0.276932343,0,0.927904419,0.966666382,0.724496596,1,50.49976876,1.179913576,0.011063214,0.312029739,0.969106112,0.693602708,0.961238037,0.922476074,0.28988449,12.58772549,50.78965325,13.76763906,285.1415097,0,0.563954149,55.67030297,-0.563954149,124.329697,0.96134031,0,324.9076806,13.76763906,333.918325,2,16,3% -2/1/2018 1:00,84.76959875,244.0185715,31.89897151,161.9350851,17.13680955,85.58660504,68.7260656,16.86053943,16.62007151,0.240467921,8.251012992,0,8.251012992,0.516738036,7.734274956,1.479508604,4.258927508,10.8644565,-10.8644565,0,0.537221382,0.129184509,4.155017878,0.570405731,1,0.091784645,0,0.952137743,0.990899707,0.724496596,1,16.10135344,0.374374948,0.076776933,0.312029739,0.805453118,0.529949714,0.961238037,0.922476074,0.088762474,3.993961228,16.19011591,4.368336176,29.52432392,0,0.424405036,64.88699007,-0.424405036,115.1130099,0.932188014,0,43.7123368,4.368336176,46.57132546,2,17,7% -2/1/2018 2:00,95.94270954,253.2311424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674516175,4.419717204,-9.591486005,9.591486005,0,#DIV/0!,0,0,1,0.145587162,0,0.103883812,0.961238037,1,0.472450048,0.747953452,0,0,0.115824807,0.026718594,0.724496596,0.448993192,0.99755822,0.958796257,0,0,0,0,0,0,0.242351184,75.97464918,-0.242351184,104.0253508,0.843687825,0,0,0,0,2,18,0% -2/1/2018 3:00,107.4915342,261.9479968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876081189,4.571855014,-3.10448446,3.10448446,0.9389482,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036700053,87.89676951,-0.036700053,92.10323049,0,0,0,0,0,2,19,0% -2/1/2018 4:00,119.2919798,270.873362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082037819,4.727632024,-1.665574413,1.665574413,0.814983689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1810423,100.4304767,0.1810423,79.56952331,0,0.773821449,0,0,0,2,20,0% -2/1/2018 5:00,131.0527633,280.9857789,0,0,0,0,0,0,0,0,0,0,0,0,0,2.287302213,4.904126993,-0.984372921,0.984372921,0.698491373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.396033847,113.3304681,0.396033847,66.66953195,0,0.923748165,0,0,0,2,21,0% -2/1/2018 6:00,142.3373314,294.0252126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484255081,5.131708044,-0.554984699,0.554984699,0.625061663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593618729,126.414227,0.593618729,53.58577304,0,0.965770852,0,0,0,2,22,0% -2/1/2018 7:00,152.2100918,313.566295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656567257,5.472764271,-0.23460711,0.23460711,0.570273868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760325711,139.4929203,0.760325711,40.50707969,0,0.984238709,0,0,0,2,23,0% -2/2/2018 8:00,158.3608865,345.148595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.763918875,6.023979391,0.035601087,-0.035601087,0.524065545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884785915,152.2251875,0.884785915,27.77481255,0,0.993489155,0,0,0,2,0,0% -2/2/2018 9:00,157.3889941,23.81687197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746956154,0.415682833,0.288355904,-0.288355904,0.480841926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958507412,163.4371101,0.958507412,16.56288987,0,0.997835562,0,0,0,2,1,0% -2/2/2018 10:00,149.9876484,52.06148291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617778303,0.90864429,0.549557364,-0.549557364,0.436173845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976453977,167.5418867,0.976453977,12.45811333,0,0.99879431,0,0,0,2,2,0% -2/2/2018 11:00,139.6188876,69.50534298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436809286,1.213097083,0.850466751,-0.850466751,0.384715309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937388588,159.617529,0.937388588,20.38247096,0,0.996660328,0,0,0,2,3,0% -2/2/2018 12:00,128.1499556,81.57910501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236638661,1.423823983,1.247151133,-1.247151133,0.316878285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843958298,147.5604973,0.843958298,32.43950274,0,0.990755367,0,0,0,2,4,0% -2/2/2018 13:00,116.3355115,91.27035309,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030437712,1.592968171,1.88257558,-1.88257558,0.208214305,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702514614,134.6291017,0.702514614,45.37089834,0,0.978827103,0,0,0,2,5,0% -2/2/2018 14:00,104.5554366,100.0589549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824836619,1.746358209,3.333372273,-3.333372273,0,#DIV/0!,0,0,0.038356628,1,0.291453579,0,0.925689319,0.964451282,0.724496596,1,0,0,0.006443162,0.312029739,0.981891348,0.706387944,0.961238037,0.922476074,0,0,0,0,0,0,-0.522681539,121.5122964,0.522681539,58.48770364,0,0.954339457,0,0,0,2,6,0% -2/2/2018 15:00,93.08884432,108.8257563,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62470683,1.899367759,14.43691444,-14.43691444,0,#DIV/0!,0,0,0.659713952,1,0.069156418,0,0.954566816,0.993328779,0.724496596,1,0,0,0.085910775,0.312029739,0.785420619,0.509917214,0.961238037,0.922476074,0,0,0,0,0,0,-0.316700575,108.4635065,0.316700575,71.5364935,0,0.892122168,0,0,0,2,7,0% -2/2/2018 16:00,82.11597672,118.2466942,69.24417885,290.3621024,29.41569107,29.05069132,0,29.05069132,28.52869945,0.521991869,45.75717999,28.08113553,17.67604446,0.886991618,16.78905284,1.433194162,2.063794144,-4.808910132,4.808910132,0.647474244,0.424811032,0.416148138,13.38475463,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.42287105,0.642622408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.30149791,12.86593527,27.72436896,13.50855767,0,28.08113553,-0.096710746,95.54979179,0.096710746,84.45020821,0,0.532994372,27.72436896,28.47564486,46.36110901,2,8,67% -2/2/2018 17:00,72.30226534,128.9563408,241.2891197,596.8170474,59.85948588,130.0786918,70.20525102,59.87344083,58.05450152,1.818939305,60.30832498,0,60.30832498,1.804984357,58.50334063,1.261912587,2.250712739,-1.616094318,1.616094318,0.806522095,0.248081994,1.554320887,49.99230267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.80419507,1.307705022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.126100191,48.05450287,56.93029526,49.3622079,70.20525102,0,0.117632784,83.24449656,-0.117632784,96.75550344,0.624948427,0,100.8049565,49.3622079,133.1115343,2,9,32% -2/2/2018 18:00,63.96375661,141.5628619,393.3888139,724.1285202,75.54012646,304.5288913,228.3010473,76.22784398,73.26231293,2.965531047,97.65948594,0,97.65948594,2.277813526,95.38167242,1.116378155,2.470738038,-0.647397623,0.647397623,0.640865204,0.192024084,2.105016182,67.70455637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42252186,1.650268146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.525077058,65.08019485,71.94759891,66.730463,228.3010473,0,0.315276972,71.62246485,-0.315276972,108.3775352,0.891409286,0,275.4572725,66.730463,319.131026,2,10,16% -2/2/2018 19:00,57.84488789,156.452639,500.6626253,782.1964164,84.3673911,462.7733545,377.1757452,85.59760933,81.82340298,3.77420635,123.9354381,0,123.9354381,2.543988124,121.39145,1.009583749,2.730613673,-0.098424505,0.098424505,0.546985271,0.168511462,2.352551307,75.66613687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65176725,1.843110736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.704415413,72.73316886,80.35618266,74.5762796,377.1757452,0,0.48220081,61.17076073,-0.48220081,118.8292393,0.94630876,0,437.2808943,74.5762796,486.0895778,2,11,11% -2/2/2018 20:00,54.73517934,173.3319478,552.9301282,804.7865582,88.28144953,578.2384032,488.4507442,89.78765897,85.6194381,4.168220865,136.7263226,0,136.7263226,2.662011427,134.0643112,0.955309096,3.025213187,0.326101611,-0.326101611,0.47438703,0.159661131,2.327146849,74.84904217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.3006606,1.928618217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.68600997,71.94774636,83.98667057,73.87636458,488.4507442,0,0.606932036,52.63200175,-0.606932036,127.3679982,0.967618453,0,556.6206241,73.87636458,604.9712272,2,12,9% -2/2/2018 21:00,55.161332,190.8928114,545.8700861,801.9106322,87.76450934,635.290841,546.0577562,89.23308485,85.11808557,4.114999285,134.998946,0,134.998946,2.646423773,132.3525222,0.962746863,3.331708077,0.737671313,-0.737671313,0.404004465,0.160779115,2.056792274,66.15350972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.81874147,1.917325015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490139001,63.58926981,83.30888047,65.50659483,546.0577562,0,0.680945899,47.0823968,-0.680945899,132.9176032,0.976572728,0,616.5739929,65.50659483,659.446749,2,13,7% -2/2/2018 22:00,59.04485649,207.3864668,480.0539143,772.3874667,82.76340876,623.941301,540.0546652,83.8866358,80.26778662,3.618849182,118.8902515,0,118.8902515,2.495622138,116.3946294,1.030527152,3.619576669,1.226980023,-1.226980023,0.320327748,0.172404404,1.583269088,50.92337634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15644963,1.808069744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.147073065,48.9494863,78.3035227,50.75755604,540.0546652,0,0.699201746,45.63700501,-0.699201746,134.362995,0.978489881,0,606.7415478,50.75755604,639.9613531,2,14,5% -2/2/2018 23:00,65.75921269,221.7352624,361.0281106,702.515934,72.59456756,537.1329296,464.0057737,73.1271559,70.40557351,2.721582397,89.72443932,0,89.72443932,2.188994057,87.53544526,1.147714775,3.870010396,1.956074423,-1.956074423,0.195645262,0.201077327,0.972646637,31.28365931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67651526,1.585918743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704679178,30.07104326,68.38119444,31.656962,464.0057737,0,0.660491458,48.66263503,-0.660491458,131.337365,0.974298794,0,520.4614601,31.656962,541.1803086,2,15,4% -2/2/2018 0:00,74.5076688,233.854404,200.9030337,547.809895,54.57786371,365.3803623,310.9337306,54.44663168,52.93213975,1.51449193,50.35699047,0,50.35699047,1.645723962,48.71126651,1.300404139,4.08152932,3.46546195,-3.46546195,0,0.271662716,0.41143099,13.23303494,0.058801567,1,0.280930298,0,0.927298937,0.9660609,0.724496596,1,51.01502423,1.192321408,0.009785002,0.312029739,0.97262666,0.697123256,0.961238037,0.922476074,0.293483307,12.72009652,51.30850754,13.91241793,292.6503401,0,0.567594221,55.41736672,-0.567594221,124.5826333,0.961908899,0,332.8114739,13.91241793,341.9168732,2,16,3% -2/2/2018 1:00,84.55904292,244.2163376,34.53869883,172.707543,18.16257778,91.76777475,73.8924984,17.87527635,17.61490905,0.260367301,8.92197614,0,8.92197614,0.547668733,8.374307408,1.475833711,4.262379178,10.44534225,-10.44534225,0,0.525861668,0.136917183,4.403727261,0.556758225,1,0.09544556,0,0.951733504,0.990495467,0.724496596,1,17.06733947,0.396784133,0.075326419,0.312029739,0.808695752,0.533192347,0.961238037,0.922476074,0.094004755,4.233030148,17.16134422,4.62981428,32.75224211,0,0.427847546,64.66896265,-0.427847546,115.3310373,0.933135943,0,47.72363855,4.62981428,50.7537594,2,17,6% -2/2/2018 2:00,95.74249339,253.445006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671021744,4.423449827,-9.926108548,9.926108548,0,#DIV/0!,0,0,1,0.185414504,0,0.100405643,0.961238037,1,0.479498376,0.75500178,0,0,0.115824807,0.034719654,0.724496596,0.448993192,0.996793627,0.958031664,0,0,0,0,0,0,0.245665324,75.77884431,-0.245665324,104.2211557,0.846471072,0,0,0,0,2,18,0% -2/2/2018 3:00,107.3010376,262.18037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872756397,4.57591069,-3.138153256,3.138153256,0.933190497,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039737245,87.72262394,-0.039737245,92.27737606,0,0,0,0,0,2,19,0% -2/2/2018 4:00,119.1044888,271.13058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078765483,4.732121324,-1.675532315,1.675532315,0.816686591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17832869,100.2724258,0.17832869,79.72757417,0,0.769618868,0,0,0,2,20,0% -2/2/2018 5:00,130.8593252,281.2766667,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283926081,4.909203944,-0.988074922,0.988074922,0.699124453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39366801,113.1829271,0.39366801,66.8170729,0,0.922989426,0,0,0,2,21,0% -2/2/2018 6:00,142.1246569,294.3540241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480543211,5.137446887,-0.556144662,0.556144662,0.625260028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591600769,126.2706861,0.591600769,53.72931393,0,0.965483545,0,0,0,2,22,0% -2/2/2018 7:00,151.9595806,313.8912407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652195011,5.478435643,-0.234391173,0.234391173,0.570236941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758631662,139.3437163,0.758631662,40.65628369,0,0.984091862,0,0,0,2,23,0% -2/3/2018 8:00,158.069738,345.2435331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.758837377,6.025636374,0.036794313,-0.036794313,0.523861491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883369417,152.0515243,0.883369417,27.94847565,0,0.993398539,0,0,0,2,0,0% -2/3/2018 9:00,157.1220378,23.50163206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.742296886,0.410180859,0.29046912,-0.29046912,0.480480545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957302922,163.1967145,0.957302922,16.80328551,0,0.997769929,0,0,0,2,1,0% -2/3/2018 10:00,149.7821645,51.64337581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614191932,0.901346945,0.552793547,-0.552793547,0.435620425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975381297,167.2601228,0.975381297,12.73987725,0,0.998737996,0,0,0,2,2,0% -2/3/2018 11:00,139.452891,69.1317329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433912099,1.206576357,0.855405425,-0.855405425,0.383870747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9363584,159.4487238,0.9363584,20.55127615,0,0.996601643,0,0,0,2,3,0% -2/3/2018 12:00,128.0016053,81.25661374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23404946,1.418195449,1.255246589,-1.255246589,0.31549388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842878319,147.4453229,0.842878319,32.5546771,0,0.990679457,0,0,0,2,4,0% -2/3/2018 13:00,116.1909462,90.98459781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027914572,1.5879808,1.898238796,-1.898238796,0.205535737,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701295951,134.531071,0.701295951,45.468929,0,0.978703424,0,0,0,2,5,0% -2/3/2018 14:00,104.4052347,99.79743107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822215101,1.741793757,3.37852861,-3.37852861,0,#DIV/0!,0,0,0.045445145,1,0.28777094,0,0.92625522,0.965017183,0.724496596,1,0,0,0.007608959,0.312029739,0.978649462,0.703146058,0.961238037,0.922476074,0,0,0,0,0,0,-0.521244801,121.4157874,0.521244801,58.58421262,0,0.954075782,0,0,0,2,6,0% -2/3/2018 15:00,92.92555345,108.5802091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621856867,1.895082152,15.29667385,-15.29667385,0,#DIV/0!,0,0,0.675927745,1,0.065280798,0,0.954970789,0.993732752,0.724496596,1,0,0,0.087505185,0.312029739,0.781992153,0.506488749,0.961238037,0.922476074,0,0,0,0,0,0,-0.314981335,108.359687,0.314981335,71.640313,0,0.891260435,0,0,0,2,7,0% -2/3/2018 16:00,81.93515638,118.0134343,72.0911374,298.7882408,30.17301991,29.80664548,0,29.80664548,29.26319203,0.543453445,46.68462758,28.2954688,18.38915878,0.909827877,17.4793309,1.430038252,2.059722989,-4.72109697,4.72109697,0.662491179,0.418539934,0.436801847,14.0490489,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.12889326,0.6591672,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316461451,13.50448019,28.44535471,14.16364739,0,28.2954688,-0.094700744,95.43409607,0.094700744,84.56590393,0,0.522021045,28.44535471,28.93447758,47.3823916,2,8,67% -2/3/2018 17:00,72.09393189,128.7377163,245.1675108,601.3179498,60.28785851,132.4879063,72.16977294,60.31813339,58.46995714,1.848176255,61.26160281,0,61.26160281,1.817901373,59.44370144,1.258276482,2.246897021,-1.606138732,1.606138732,0.804819589,0.245904762,1.576153139,50.69450294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.20354681,1.317063356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141917584,48.72948448,57.3454644,50.04654784,72.16977294,0,0.120019322,83.10678226,-0.120019322,96.89321774,0.633400415,0,103.0578285,50.04654784,135.8122931,2,9,32% -2/3/2018 18:00,63.72481323,141.3703869,397.7287118,727.071678,75.86650873,307.797935,231.2208344,76.5771006,73.57885357,2.998247031,98.72158607,0,98.72158607,2.287655156,96.43393092,1.112207806,2.467378716,-0.647061507,0.647061507,0.640807724,0.190749389,2.126726872,68.40284678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72679276,1.657398373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.540806379,65.75141816,72.26759914,67.40881653,231.2208344,0,0.318016561,71.45698279,-0.318016561,108.5430172,0.892775483,0,278.6958913,67.40881653,322.8136136,2,10,16% -2/3/2018 19:00,57.57576243,156.3094345,505.3141271,784.5296938,84.66192111,466.6231716,380.7048484,85.91832316,82.10905182,3.809271335,125.0721297,0,125.0721297,2.552869291,122.5192604,1.004886624,2.728114283,-0.101332944,0.101332944,0.547482644,0.167543151,2.374314357,76.36611136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.92634378,1.849545111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.720182669,73.40601097,80.64652645,75.25555608,380.7048484,0,0.485265059,60.97016017,-0.485265059,119.0298398,0.946963527,0,441.1601326,75.25555608,490.4133889,2,11,11% -2/3/2018 20:00,54.44475564,173.2663656,557.7848455,806.920835,88.57034337,582.5460711,492.4416326,90.1044385,85.89962072,4.204817775,137.9121162,0,137.9121162,2.670722642,135.2413936,0.950240246,3.024068562,0.321061608,-0.321061608,0.475248921,0.15878944,2.348701257,75.54230605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.56998279,1.934929463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701626066,72.61413796,84.27160886,74.54906742,492.4416326,0,0.610272546,52.39078756,-0.610272546,127.6092124,0.968069393,0,560.9892813,74.54906742,609.7801549,2,12,9% -2/3/2018 21:00,54.86660411,190.9185079,550.8190884,804.1192577,88.06290739,639.9760873,550.4162945,89.55979277,85.40748581,4.152306955,136.2078867,0,136.2078867,2.655421575,133.5524651,0.957602891,3.332156566,0.730184576,-0.730184576,0.405284773,0.159876281,2.077671693,66.8250636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.096924,1.923843892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505266069,64.23479294,83.60219007,66.15863684,550.4162945,0,0.68449585,46.80402853,-0.68449585,133.1959715,0.976953538,0,621.3333364,66.15863684,664.6328411,2,13,7% -2/3/2018 22:00,58.76285105,207.4900533,484.9790604,774.9802098,83.08866517,628.9572854,544.7180731,84.23921236,80.58323535,3.655977013,120.0942179,0,120.0942179,2.505429819,117.5887881,1.025605229,3.621384595,1.215416737,-1.215416737,0.322305186,0.171324232,1.602819551,51.55218641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.45967095,1.815175375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161237308,49.55392246,78.62090826,51.36909784,544.7180731,0,0.702879978,45.34147581,-0.702879978,134.6585242,0.9788641,0,611.8258745,51.36909784,645.4459216,2,14,5% -2/3/2018 23:00,65.49935145,221.8901918,365.7888917,706.0603046,72.98318195,542.5103869,468.970446,73.53994091,70.78246973,2.757471176,90.89046397,0,90.89046397,2.200712215,88.68975175,1.143179341,3.872714426,1.935415734,-1.935415734,0.199178106,0.199522685,0.989822518,31.83609466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03880225,1.594408508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717123045,30.60206513,68.75592529,32.19647364,468.970446,0,0.664207353,48.37845562,-0.664207353,131.6215444,0.974722303,0,525.8718784,32.19647364,546.9438264,2,15,4% -2/3/2018 0:00,74.27173281,234.0392261,205.2568327,553.7825479,55.14002788,371.3732974,316.3486321,55.0246653,53.47735259,1.547312706,51.42957075,0,51.42957075,1.662675286,49.76689546,1.296286279,4.084755074,3.414001463,-3.414001463,0,0.268639183,0.415668821,13.36933815,0.050940706,1,0.284940885,0,0.926688197,0.96545016,0.724496596,1,51.52412428,1.204602584,0.008507541,0.312029739,0.976157901,0.700654497,0.961238037,0.922476074,0.297073866,12.85111636,51.82119815,14.05571894,300.2336096,0,0.571250635,55.16251755,-0.571250635,124.8374825,0.962472745,0,340.7878645,14.05571894,349.9870514,2,16,3% -2/3/2018 1:00,84.34737808,244.4199382,37.26576704,183.5458199,19.18707261,98.05292901,79.16349234,18.88943667,18.60851158,0.280925093,9.614077698,0,9.614077698,0.578561032,9.035516667,1.472139463,4.265932678,10.05535899,-10.05535899,0,0.514871265,0.144640258,4.652127894,0.543256774,1,0.099123532,0,0.95132424,0.990086203,0.724496596,1,18.03217813,0.419165498,0.073876529,0.312029739,0.811953775,0.536450371,0.961238037,0.922476074,0.099240496,4.471802284,18.13141863,4.890967782,36.15738886,0,0.431300982,64.44984791,-0.431300982,115.5501521,0.934071676,0,51.90501144,4.890967782,55.10605203,2,17,6% -2/3/2018 2:00,95.54170827,253.6644646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667517382,4.427280103,-10.28567726,10.28567726,0,#DIV/0!,0,0,1,0.224269862,0,0.096917974,0.961238037,1,0.486663567,0.762166971,0,0,0.115824807,0.042843452,0.724496596,0.448993192,0.99600165,0.957239687,0,0,0,0,0,0,0.248979169,75.58288711,-0.248979169,104.4171129,0.849179987,0,0,0,0,2,18,0% -2/3/2018 3:00,107.110036,262.4182578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869422791,4.580062617,-3.17252286,3.17252286,0.927312949,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042770186,87.54870111,-0.042770186,92.45129889,0,0,0,0,0,2,19,0% -2/3/2018 4:00,118.9163419,271.3934063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075481701,4.736708508,-1.685544308,1.685544308,0.818398743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.175620062,100.1147439,0.175620062,79.88525613,0,0.765294485,0,0,0,2,20,0% -2/3/2018 5:00,130.6648333,281.5733957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280531557,4.914382841,-0.991737276,0.991737276,0.699750752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.39130461,113.0357004,0.39130461,66.96429956,0,0.922222308,0,0,0,2,21,0% -2/3/2018 6:00,141.9102223,294.6888794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.476800621,5.143291215,-0.557240222,0.557240222,0.62544738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589579606,126.1271814,0.589579606,53.87281857,0,0.96519381,0,0,0,2,22,0% -2/3/2018 7:00,151.7062859,314.2221672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.647774185,5.4842114,-0.234098692,0.234098692,0.570186924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756926066,139.193951,0.756926066,40.80604904,0,0.98394335,0,0,0,2,23,0% -2/4/2018 8:00,157.7745032,345.3468111,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753684556,6.027438916,0.038076097,-0.038076097,0.523642293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.881930899,151.8761711,0.881930899,28.12382891,0,0.993306216,0,0,0,2,0,0% -2/4/2018 9:00,156.8489375,23.19685693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737530387,0.404861529,0.292688327,-0.292688327,0.480101038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956064534,162.952987,0.956064534,17.04701298,0,0.997702275,0,0,0,2,1,0% -2/4/2018 10:00,149.5697017,51.22908336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610483755,0.894116177,0.556164953,-0.556164953,0.435043881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974262257,166.9725693,0.974262257,13.02743066,0,0.998679116,0,0,0,2,2,0% -2/4/2018 11:00,139.2802406,68.75811886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430898781,1.200055562,0.860533705,-0.860533705,0.382993759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935269664,159.2717548,0.935269664,20.72824518,0,0.996539483,0,0,0,2,3,0% -2/4/2018 12:00,127.8470598,80.93283183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231352133,1.412544388,1.263649153,-1.263649153,0.314056957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84172872,147.3231209,0.84172872,32.67687912,0,0.990598439,0,0,0,2,4,0% -2/4/2018 13:00,116.0405396,90.69717014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025289483,1.582964241,1.914540985,-1.914540985,0.202747899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699998473,134.4268815,0.699998473,45.57311851,0,0.978571273,0,0,0,2,5,0% -2/4/2018 14:00,104.2494291,99.53416219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819495782,1.737198848,3.426020148,-3.426020148,0,#DIV/0!,0,0,0.052788353,1,0.283994267,0,0.926832651,0.965594614,0.724496596,1,0,0,0.008808631,0.312029739,0.97532446,0.699821056,0.961238037,0.922476074,0,0,0,0,0,0,-0.519722571,121.3136439,0.519722571,58.68635607,0,0.953794827,0,0,0,2,6,0% -2/4/2018 15:00,92.75680037,108.3329712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61891157,1.890767037,16.29035016,-16.29035016,0,#DIV/0!,0,0,0.692842643,1,0.061309103,0,0.955381098,0.994143061,0.724496596,1,0,0,0.089148539,0.312029739,0.778479748,0.502976344,0.961238037,0.922476074,0,0,0,0,0,0,-0.313172901,108.2505487,0.313172901,71.7494513,0,0.890343785,0,0,0,2,7,0% -2/4/2018 16:00,81.74891713,117.7786379,75.05103113,307.3563398,30.94191522,30.57466869,0,30.57466869,30.00890232,0.565766374,47.59144015,28.46143584,19.13000431,0.933012908,18.19699141,1.426787764,2.05562502,-4.634064118,4.634064118,0.677374674,0.412278349,0.458489212,14.74658909,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.84569835,0.675964675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.332173873,14.17498235,29.17787222,14.85094702,0,28.46143584,-0.092600777,95.31324565,0.092600777,84.68675435,0,0.510047726,29.17787222,29.36763766,48.39840372,2,8,66% -2/4/2018 17:00,71.88020404,128.5178787,249.1464336,605.8559176,60.72232382,134.9824033,74.21291057,60.76949277,58.89132171,1.878171057,62.23943946,0,62.23943946,1.831002105,60.40843735,1.254546227,2.243060131,-1.59590486,1.59590486,0.803069494,0.243721425,1.598446923,51.41154767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.60857847,1.326554792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158069354,49.41873515,57.76664782,50.74528994,74.21291057,0,0.122492673,82.96401627,-0.122492673,97.03598373,0.641812319,0,105.397408,50.74528994,138.6091854,2,9,32% -2/4/2018 18:00,63.48045803,141.1773736,402.1591945,730.0320184,76.19769071,311.1530476,234.2213526,76.93169507,73.90004919,3.031645881,99.80579426,0,99.80579426,2.297641514,97.50815274,1.107943003,2.464009998,-0.646562393,0.646562393,0.640722371,0.189471462,2.148816135,69.11331342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03553821,1.664633456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.556809975,66.43434571,72.59234819,68.09897916,234.2213526,0,0.320837096,71.28644357,-0.320837096,108.7135564,0.894157672,0,282.0231675,68.09897916,326.5925874,2,10,16% -2/4/2018 19:00,57.30129644,156.166997,510.0444384,786.870541,84.96022811,470.5522211,384.308927,86.24329418,82.39836376,3.84493042,126.2280435,0,126.2280435,2.561864347,123.6661792,1.000096289,2.725628281,-0.104132632,0.104132632,0.547961418,0.166574168,2.396388908,77.07610482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.20444142,1.856061999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736175606,74.08848369,80.94061703,75.94454569,384.308927,0,0.488401722,60.76441459,-0.488401722,119.2355854,0.947625259,0,445.1214633,75.94454569,494.8256496,2,11,11% -2/4/2018 20:00,54.14935367,173.2035645,562.7054856,809.0561314,88.86203547,586.9218263,496.4973974,90.42442888,86.18251724,4.241911638,139.113978,0,139.113978,2.679518236,136.4344598,0.945084509,3.022972477,0.316110934,-0.316110934,0.476095536,0.157919263,2.370508087,76.24368863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.84191368,1.94130184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717425039,73.28833358,84.55933872,75.22963542,496.4973974,0,0.613674847,52.14430473,-0.613674847,127.8556953,0.968523628,0,565.4287994,75.22963542,614.6650912,2,12,9% -2/4/2018 21:00,54.56769619,190.9490732,555.8210183,806.3225275,88.36306758,644.7156027,554.826994,89.88860868,85.69859506,4.190013616,137.4297135,0,137.4297135,2.664472512,134.765241,0.952385964,3.332690032,0.72279323,-0.72279323,0.406548768,0.158977557,2.098753496,67.50312684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.37674928,1.930401265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520539763,64.88657312,83.89728904,66.81697439,554.826994,0,0.688095613,46.52045143,-0.688095613,133.4795486,0.97733568,0,626.1495064,66.81697439,669.8798798,2,13,7% -2/4/2018 22:00,58.47774409,207.5997482,489.9451541,777.5585384,83.41443814,634.0119794,549.4193808,84.59259859,80.89918506,3.693413525,121.3081281,0,121.3081281,2.515253076,118.792875,1.020629174,3.623299133,1.203994733,-1.203994733,0.324258464,0.170252604,1.622535841,52.18633008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.76337383,1.822292292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.175521694,50.16348548,78.93889553,51.98577777,549.4193808,0,0.706595521,45.04141164,-0.706595521,134.9585884,0.979238159,0,616.9513184,51.98577777,650.9749703,2,14,6% -2/4/2018 23:00,65.23741643,222.0514866,370.5812093,709.5721924,73.370384,547.9092154,473.9576215,73.95159391,71.15799622,2.79359769,92.06409243,0,92.06409243,2.212387786,89.85170464,1.138607712,3.87552955,1.91506937,-1.91506937,0.202657539,0.19798733,1.007151314,32.39344833,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39977259,1.602867419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729677699,31.13781468,69.12945029,32.7406821,473.9576215,0,0.667948415,48.09108069,-0.667948415,131.9089193,0.97514392,0,531.3063433,32.7406821,552.7344649,2,15,4% -2/4/2018 0:00,74.03449329,234.2301603,209.6399844,559.6760875,55.69626009,377.3669389,321.7697718,55.59716711,54.01681235,1.580354755,52.50908908,0,52.50908908,1.679447739,50.82964134,1.292145668,4.088087504,3.363793948,-3.363793948,0,0.26567575,0.419861935,13.50420309,0.043143652,1,0.288962613,0,0.926072406,0.964834369,0.724496596,1,52.02694298,1.21675417,0.007231286,0.312029739,0.979698546,0.704195141,0.961238037,0.922476074,0.300655307,12.98075367,52.32759829,14.19750784,307.8874486,0,0.574921421,54.90587053,-0.574921421,125.0941295,0.963031593,0,348.8329385,14.19750784,358.1249234,2,16,3% -2/4/2018 1:00,84.13469419,244.6292991,40.07615506,194.4221045,20.20812176,104.4284943,84.52761104,19.90088331,19.59877233,0.302110985,10.32627721,0,10.32627721,0.609349431,9.716927779,1.468427429,4.269586715,9.691710565,-9.691710565,0,0.504243028,0.152337358,4.899693081,0.529904299,1,0.102817116,0,0.950910076,0.989672039,0.724496596,1,18.99379562,0.441471588,0.072427842,0.312029739,0.815225849,0.539722445,0.961238037,0.922476074,0.104459689,4.709771359,19.09825531,5.151242947,39.7360666,0,0.434763379,64.22976174,-0.434763379,115.7702383,0.934994913,0,56.25127546,5.151242947,59.62266094,2,17,6% -2/4/2018 2:00,95.34040868,253.8894257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664004042,4.431206414,-10.67299974,10.67299974,0,#DIV/0!,0,0,1,0.26218001,0,0.093421637,0.961238037,1,0.493944593,0.769447997,0,0,0.115824807,0.051089877,0.724496596,0.448993192,0.995181638,0.956419675,0,0,0,0,0,0,0.252291385,75.3868539,-0.252291385,104.6131461,0.851816459,0,0,0,0,2,18,0% -2/4/2018 3:00,106.9185663,262.6615491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866081013,4.584308851,-3.207609904,3.207609904,0.921312711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045797926,87.37505394,-0.045797926,92.62494606,0,0,0,0,0,2,19,0% -2/4/2018 4:00,118.7275599,271.6617046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072186834,4.741391197,-1.695609598,1.695609598,0.820120008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172916966,99.95746116,0.172916966,80.04253884,0,0.760843875,0,0,0,2,20,0% -2/4/2018 5:00,130.4692951,281.8757885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.277118771,4.919660591,-0.995359132,0.995359132,0.700370126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.388943817,112.8887966,0.388943817,67.11120341,0,0.921446729,0,0,0,2,21,0% -2/4/2018 6:00,141.6940302,295.029528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473027357,5.149236654,-0.55827099,0.55827099,0.625623652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587555069,125.9836997,0.587555069,54.01630027,0,0.964901594,0,0,0,2,22,0% -2/4/2018 7:00,151.4502291,314.5587096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.643305151,5.490085174,-0.233729579,0.233729579,0.570123802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755208474,139.0435891,0.755208474,40.95641093,0,0.983793116,0,0,0,2,23,0% -2/5/2018 8:00,157.4752679,345.4579848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748461915,6.029379262,0.039446364,-0.039446364,0.523407964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880469718,151.6990773,0.880469718,28.30092275,0,0.99321213,0,0,0,2,0,0% -2/5/2018 9:00,156.5698405,22.90246801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732659225,0.399723474,0.295013416,-0.295013416,0.479703424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954791508,162.7059176,0.954791508,17.29408238,0,0.997632546,0,0,0,2,1,0% -2/5/2018 10:00,149.3503649,50.81888221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606655607,0.886956817,0.559671632,-0.559671632,0.434444204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973096121,166.6794058,0.973096121,13.32059423,0,0.998617615,0,0,0,2,2,0% -2/5/2018 11:00,139.1010053,68.3847523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427770535,1.193539086,0.865852278,-0.865852278,0.382084229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934121755,159.0867184,0.934121755,20.91328161,0,0.996473787,0,0,0,2,3,0% -2/5/2018 12:00,127.6863786,80.60794393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228547716,1.406874025,1.272361771,-1.272361771,0.312567012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840509079,147.1939162,0.840509079,32.80608377,0,0.990512243,0,0,0,2,4,0% -2/5/2018 13:00,115.8843534,90.40820684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022563519,1.57792088,1.931495438,-1.931495438,0.199848516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698622049,134.3165551,0.698622049,45.68344492,0,0.978430544,0,0,0,2,5,0% -2/5/2018 14:00,104.0880889,99.26925201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816679864,1.732575294,3.475956543,-3.475956543,0,#DIV/0!,0,0,0.060388712,1,0.280125856,0,0.927421036,0.966182999,0.724496596,1,0,0,0.01004181,0.312029739,0.971918314,0.69641491,0.961238037,0.922476074,0,0,0,0,0,0,-0.518115066,121.2058986,0.518115066,58.79410145,0,0.95349634,0,0,0,2,6,0% -2/5/2018 15:00,92.58266323,108.0841213,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615872304,1.886423786,17.44993418,-17.44993418,0,#DIV/0!,0,0,0.710477317,1,0.057244197,0,0.955797176,0.994559139,0.724496596,1,0,0,0.090840467,0.312029739,0.774886132,0.499382728,0.961238037,0.922476074,0,0,0,0,0,0,-0.311275879,108.1361377,0.311275879,71.86386227,0,0.889370785,0,0,0,2,7,0% -2/5/2018 16:00,81.5573432,117.5423615,78.12356626,316.051187,31.72108811,31.3535087,0,31.3535087,30.76458026,0.588928442,48.47322466,28.57475369,19.89847097,0.956507845,18.94196312,1.423444168,2.051501218,-4.547962952,4.547962952,0.69209884,0.406037379,0.48122416,15.47782319,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.57208474,0.692986677,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.348645266,14.87787238,29.92073,15.57085906,0,28.57475369,-0.09041179,95.18729753,0.09041179,84.81270247,0,0.496974783,29.92073,29.77179109,49.40577183,2,8,65% -2/5/2018 17:00,71.66117714,128.2968626,253.2239594,610.4252311,61.16238832,137.5615911,76.33456527,61.22702582,59.31811665,1.908909168,63.24135235,0,63.24135235,1.844271673,61.39708067,1.250723487,2.239202673,-1.585416021,1.585416021,0.801275797,0.24153476,1.62118807,52.14298111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.01883,1.336168549,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.174545238,50.1218168,58.19337523,51.45798535,76.33456527,0,0.125051458,82.81627256,-0.125051458,97.18372744,0.650164598,0,107.8234072,51.45798535,141.5016295,2,9,31% -2/5/2018 18:00,63.23079229,140.9838371,406.6778501,733.0064946,76.53335509,314.5925144,237.3012129,77.29130147,74.22559206,3.065709415,100.9115161,0,100.9115161,2.307763034,98.6037531,1.103585514,2.460632149,-0.645905711,0.645905711,0.640610071,0.1881916,2.171271025,69.83553987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.34846239,1.671966462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573078467,67.12857725,72.92154086,68.80054371,237.3012129,0,0.323736849,71.11093507,-0.323736849,108.8890649,0.895553572,0,285.4374897,68.80054371,330.4660695,2,10,16% -2/5/2018 19:00,57.02159336,156.0253332,514.8509116,789.2169144,85.2620546,474.5582219,387.9859692,86.57225271,82.69108907,3.881163646,127.4025298,0,127.4025298,2.57096553,124.8315643,0.995214549,2.723155782,-0.106824467,0.106824467,0.548421749,0.165605329,2.418762585,77.79571918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48582012,1.862655774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.752385259,74.78020438,81.23820538,76.64286015,387.9859692,0,0.491608786,60.55362264,-0.491608786,119.4463774,0.948293111,0,449.1626273,76.64286015,499.3238464,2,11,11% -2/5/2018 20:00,53.84907868,173.1435612,567.6893131,811.1908485,89.15629537,591.363053,500.615667,90.74738595,86.46790411,4.279481835,140.3312377,0,140.3312377,2.688391257,137.6428464,0.939843722,3.021925221,0.311250476,-0.311250476,0.476926723,0.157051213,2.392555656,76.95281424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.1162384,1.947730314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.733398428,73.96997209,84.84963683,75.91770241,500.615667,0,0.617136729,51.89265657,-0.617136729,128.1073434,0.968980677,0,569.9365448,75.91770241,619.6231626,2,12,9% -2/5/2018 21:00,54.26471836,190.9845346,560.8731796,808.5190412,88.66477595,649.5065959,559.2872911,90.21930475,85.99120581,4.228098941,138.6637661,0,138.6637661,2.673570133,135.9901959,0.947098003,3.333308949,0.715499161,-0.715499161,0.407796127,0.158083466,2.120027019,68.18735648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.65801786,1.93699246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535952359,65.54428068,84.19397022,67.48127314,559.2872911,0,0.691742881,46.23176815,-0.691742881,133.7682319,0.977718808,0,631.0196738,67.48127314,675.1848175,2,13,7% -2/5/2018 22:00,58.18964853,207.7155637,494.9496517,780.1211181,83.74052813,639.1025522,554.1559704,84.94658178,81.21544224,3.731139542,122.5313593,0,122.5313593,2.525085893,120.0062734,1.015600957,3.625320494,1.192716442,-1.192716442,0.326187165,0.169189993,1.642408651,52.82550797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06737226,1.829416134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.189919477,50.77788758,79.25729174,52.60730371,554.1559704,0,0.71034607,44.73692048,-0.71034607,135.2630795,0.979611774,0,622.1150048,52.60730371,656.5454329,2,14,6% -2/5/2018 23:00,64.97351457,222.2191256,375.4027595,713.0502712,73.75599458,553.3266661,478.9647424,74.36192378,71.53197921,2.829944572,93.24476066,0,93.24476066,2.224015367,91.0207453,1.134001756,3.878455402,1.895036223,-1.895036223,0.206083409,0.196471637,1.0246253,32.95547177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75925927,1.611291563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742337542,31.67805299,69.50159681,33.28934455,478.9647424,0,0.671712447,47.80062976,-0.671712447,132.1993702,0.975563386,0,536.7620627,33.28934455,558.549273,2,15,4% -2/5/2018 0:00,73.79604346,234.4271544,214.0503691,565.4891304,56.24643246,383.3585967,327.1945996,56.16399709,54.55039499,1.613602098,53.59502765,0,53.59502765,1.696037466,51.89899018,1.287983933,4.0915257,3.314811205,-3.314811205,0,0.262771948,0.424009366,13.63759875,0.03541234,1,0.29299398,0,0.925451778,0.964213741,0.724496596,1,52.52336173,1.22877337,0.005956686,0.312029739,0.983247296,0.707743892,0.961238037,0.922476074,0.304226768,13.10897865,52.8275885,14.33775202,315.6078733,0,0.578604578,54.64754417,-0.578604578,125.3524558,0.963585198,0,356.9426636,14.33775202,366.3264356,2,16,3% -2/5/2018 1:00,83.92108207,244.8443447,42.96579448,205.3106129,21.22377098,110.881527,89.97383672,20.90769029,20.58379598,0.323894308,11.05752932,0,11.05752932,0.639975002,10.41755431,1.464699194,4.27333997,9.351943762,-9.351943762,0,0.49396901,0.159993751,5.145948995,0.516703426,1,0.106524873,0,0.950491141,0.989253104,0.724496596,1,19.95032276,0.463659711,0.07098092,0.312029739,0.818510641,0.543007237,0.961238037,0.922476074,0.109653443,4.946481909,20.0599762,5.41014162,43.48404701,0,0.438232761,64.00882141,-0.438232761,115.9911786,0.935905381,0,60.75692977,5.41014162,64.29775926,2,17,6% -2/5/2018 2:00,95.13865114,254.1197953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660482708,4.435227122,-11.09131936,11.09131936,0,#DIV/0!,0,0,1,0.299170712,0,0.089917481,0.961238037,1,0.501340285,0.77684369,0,0,0.115824807,0.059458663,0.724496596,0.448993192,0.994332954,0.955570991,0,0,0,0,0,0,0.255600607,75.19082317,-0.255600607,104.8091768,0.854382311,0,0,0,0,2,18,0% -2/5/2018 3:00,106.7266672,262.9101315,0,0,0,0,0,0,0,0,0,0,0,0,0,1.862731742,4.588647431,-3.243431238,3.243431238,0.915186902,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.048819486,87.20173721,-0.048819486,92.79826279,0,0,0,0,0,2,19,0% -2/5/2018 4:00,118.5381657,271.935338,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06888128,4.746167,-1.705727246,1.705727246,0.821850228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.170219987,99.80060979,0.170219987,80.19939021,0,0.756262461,0,0,0,2,20,0% -2/5/2018 5:00,130.2727206,282.1836681,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2736879,4.925034103,-0.998939577,0.998939577,0.700982418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38658583,112.7422259,0.38658583,67.25777411,0,0.920662616,0,0,0,2,21,0% -2/5/2018 6:00,141.4760864,295.3757216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46922352,5.155278872,-0.559236548,0.559236548,0.625788772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585527013,125.8402298,0.585527013,54.1597702,0,0.964606843,0,0,0,2,22,0% -2/5/2018 7:00,151.1914353,314.9005128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638788347,5.496050765,-0.23328373,0.23328373,0.570047557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753478463,138.8925982,0.753478463,41.10740178,0,0.983641103,0,0,0,2,23,0% -2/6/2018 8:00,157.1721199,345.5766263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743170984,6.031449948,0.040905057,-0.040905057,0.523158513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878985257,151.5201968,0.878985257,28.47980318,0,0.993116225,0,0,0,2,0,0% -2/6/2018 9:00,156.2848951,22.61837215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727685991,0.394765065,0.297444302,-0.297444302,0.479287718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953483128,162.4555029,0.953483128,17.54449715,0,0.997560687,0,0,0,2,1,0% -2/6/2018 10:00,149.1242634,50.41303498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602709392,0.879873446,0.563313673,-0.563313673,0.433821378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971882182,166.3808079,0.971882182,13.61919209,0,0.998553435,0,0,0,2,2,0% -2/6/2018 11:00,138.915258,68.01188104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424528634,1.187031255,0.87136191,-0.87136191,0.381142027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93291407,158.8937198,0.93291407,21.1062802,0,0.996404496,0,0,0,2,3,0% -2/6/2018 12:00,127.5196236,80.2821346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225637293,1.401187579,1.281387596,-1.281387596,0.311023505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839219001,147.0577397,0.839219001,32.94226029,0,0.990420796,0,0,0,2,4,0% -2/6/2018 13:00,115.7224512,90.11784563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019737792,1.572853121,1.949116315,-1.949116315,0.196835169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697166568,134.2001171,0.697166568,45.7998829,0,0.978281128,0,0,0,2,5,0% -2/6/2018 14:00,103.9212846,99.00280561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813768579,1.727924927,3.528456849,-3.528456849,0,#DIV/0!,0,0,0.068248877,1,0.276167999,0,0.928019797,0.96678176,0.724496596,1,0,0,0.011308136,0.312029739,0.96843299,0.692929585,0.961238037,0.922476074,0,0,0,0,0,0,-0.516422524,121.0925859,0.516422524,58.90741406,0,0.953180056,0,0,0,2,6,0% -2/6/2018 15:00,92.4032217,107.8337393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612740458,1.882053796,18.81862167,-18.81862167,0,#DIV/0!,0,0,0.728851807,1,0.053088922,0,0.95621846,0.994980423,0.724496596,1,0,0,0.092580613,0.312029739,0.771214039,0.495710635,0.961238037,0.922476074,0,0,0,0,0,0,-0.309290895,108.0165017,0.309290895,71.98349828,0,0.88833989,0,0,0,2,7,0% -2/6/2018 16:00,81.36052062,117.304663,81.3082737,324.8575746,32.50927152,32.14193315,0,32.14193315,31.52899704,0.612936112,49.32565124,28.63124444,20.69440679,0.980274483,19.71413231,1.420008966,2.047352598,-4.462925579,4.462925579,0.706641087,0.399827349,0.505018905,16.24314396,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.30687122,0.710205526,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365884477,15.61352782,30.6727557,16.32373334,0,28.63124444,-0.08813476,95.05631027,0.08813476,84.94368973,0,0.482686946,30.6727557,30.14366128,50.40117913,2,8,64% -2/6/2018 17:00,71.43694806,128.0747046,257.398101,615.0203331,61.60757106,140.2248293,78.53457816,61.69025109,59.74987548,1.940375611,64.26684521,0,64.26684521,1.857695575,62.40914964,1.246809951,2.235325283,-1.574694725,1.574694725,0.799442347,0.239347419,1.644362199,52.88834078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.43385301,1.34589412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.191334816,50.83828486,58.62518783,52.18417898,78.53457816,0,0.127694279,82.66362623,-0.127694279,97.33637377,0.658439781,0,110.3354782,52.18417898,144.4889797,2,9,31% -2/6/2018 18:00,62.97591896,140.7897945,411.2822199,735.9921464,76.87318962,318.1145868,240.4589884,77.65559842,74.55517932,3.1004191,102.0381462,0,102.0381462,2.318010299,99.72013587,1.099137135,2.457245467,-0.645096847,0.645096847,0.640471748,0.186911045,2.194078387,70.56910303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.66527421,1.679390571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.589602323,67.83370606,73.25487653,69.51309663,240.4589884,0,0.326714068,70.93054631,-0.326714068,109.0694537,0.896960983,0,288.9372071,69.51309663,334.4321385,2,10,16% -2/6/2018 19:00,56.73675862,155.8844519,519.730854,791.5668296,85.56714569,478.6388617,391.7339305,86.90493125,82.98698054,3.917950713,128.5949279,0,128.5949279,2.580165152,126.0147628,0.990243245,2.720696939,-0.109409411,0.109409411,0.548863801,0.164637418,2.441422794,78.52454941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77024226,1.869320869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768802504,75.48078372,81.53904476,77.35010458,391.7339305,0,0.494884217,60.33788425,-0.494884217,119.6621157,0.948966267,0,453.2813303,77.35010458,503.9054267,2,11,11% -2/6/2018 20:00,53.54403839,173.0863747,572.7335473,813.3234363,89.45289424,595.8671046,504.7940378,91.07306684,86.75555943,4.317507403,141.5632142,0,141.5632142,2.697334807,138.8658794,0.934519765,3.020927129,0.30648102,-0.30648102,0.477742348,0.156185882,2.414832062,77.66930004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39274364,1.954209886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749537608,74.65868549,85.14228124,76.61289538,504.7940378,0,0.62065596,51.63594805,-0.62065596,128.364052,0.969440071,0,574.5098491,76.61289538,624.6514568,2,12,9% -2/6/2018 21:00,53.95778372,191.0249217,565.9728293,810.707446,88.96781998,654.3462446,563.7945904,90.5516542,86.28511195,4.266542255,139.9093731,0,139.9093731,2.682708029,137.2266651,0.941740983,3.334013837,0.708304117,-0.708304117,0.409026552,0.157194507,2.14148137,68.87740217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.94053162,1.943612834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551495963,66.20757884,84.49202758,68.15119168,563.7945904,0,0.695435318,45.93808343,-0.695435318,134.0619166,0.978102587,0,635.9409752,68.15119168,680.5445671,2,13,7% -2/6/2018 22:00,57.89868049,207.837513,499.9899616,782.6666676,84.06673731,644.2261428,558.9251923,85.30095053,81.53181501,3.769135528,123.7632772,0,123.7632772,2.534922303,121.2283549,1.010522607,3.627448911,1.181584102,-1.181584102,0.328090908,0.16813685,1.662428432,53.46941295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.3714818,1.836542579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.20442374,51.39683353,79.57590554,53.23337611,558.9251923,0,0.714129291,44.42811324,-0.714129291,135.5718868,0.979984667,0,627.314024,53.23337611,662.154204,2,14,6% -2/6/2018 23:00,64.7077558,222.3930876,380.2511884,716.4932835,74.13983722,558.7599617,483.9892201,74.77074166,71.90424758,2.866494077,94.43189266,0,94.43189266,2.235589639,92.19630302,1.12936339,3.881491613,1.875316887,-1.875316887,0.209455614,0.194975951,1.042236487,33.5219081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11709779,1.619677083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.755096787,32.22253313,69.87219458,33.84221021,483.9892201,0,0.675497219,47.50722601,-0.675497219,132.492774,0.97598045,0,542.2362115,33.84221021,564.3852612,2,15,4% -2/6/2018 0:00,73.55647918,234.6301553,218.4858177,571.2204207,56.79042315,389.3455701,332.6205493,56.72502074,55.07798236,1.647038382,54.68685682,0,54.68685682,1.712440792,52.97441603,1.283802748,4.095068734,3.267025522,-3.267025522,0,0.259927275,0.428110198,13.76949559,0.027748617,1,0.297033468,0,0.924826534,0.963588498,0.724496596,1,53.0132689,1.240657525,0.004684188,0.312029739,0.986802846,0.711299442,0.961238037,0.922476074,0.307787378,13.23576291,53.32105627,14.47642043,323.390789,0,0.582298071,54.3876604,-0.582298071,125.6123396,0.964133324,0,365.1128925,14.47642043,374.5874202,2,16,3% -2/6/2018 1:00,83.70663362,245.0649984,45.93058785,216.1875758,22.23227203,117.3997274,95.49159625,21.90813117,21.561887,0.346244172,11.80678782,0,11.80678782,0.67038503,11.13640279,1.460956362,4.277191103,9.033897739,-9.033897739,0,0.484040659,0.167596258,5.39047175,0.503656515,1,0.110245366,0,0.950067568,0.988829531,0.724496596,1,20.90008403,0.485691672,0.069536316,0.312029739,0.821806823,0.546303419,0.961238037,0.922476074,0.114813912,5.181526483,21.01489795,5.667218155,47.39663164,0,0.441707142,63.78714567,-0.441707142,116.2128543,0.936802826,0,65.41619643,5.667218155,69.12527737,2,17,6% -2/6/2018 2:00,94.93649429,254.3554785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.656954406,4.439340571,-11.544403,11.544403,0,#DIV/0!,0,0,1,0.335266765,0,0.08640638,0.961238037,1,0.508849333,0.784352737,0,0,0.115824807,0.067949374,0.724496596,0.448993192,0.993454974,0.954693011,0,0,0,0,0,0,0.258905434,74.99487559,-0.258905434,105.0051244,0.856879295,0,0,0,0,2,18,0% -2/6/2018 3:00,106.5343797,263.1638919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859375692,4.593076386,-3.280003904,3.280003904,0.908932608,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051833852,87.02880758,-0.051833852,92.97119242,0,0,0,0,0,2,19,0% -2/6/2018 4:00,118.3481841,272.2141692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065565477,4.751033522,-1.715896158,1.715896158,0.823589215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167529737,99.64422366,0.167529737,80.35577634,0,0.751545522,0,0,0,2,20,0% -2/6/2018 5:00,130.0751226,282.4968579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270239164,4.930500296,-1.002477635,1.002477635,0.701587462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384230879,112.5960006,0.384230879,67.40399942,0,0.919869907,0,0,0,2,21,0% -2/6/2018 6:00,141.2563997,295.7272151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465389264,5.161413591,-0.560136442,0.560136442,0.625942663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583495326,125.6967626,0.583495326,54.30323736,0,0.964309511,0,0,0,2,22,0% -2/6/2018 7:00,150.929933,315.2472318,0,0,0,0,0,0,0,0,0,0,0,0,0,2.634224271,5.502102153,-0.232761016,0.232761016,0.569958168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75173564,138.7409489,0.75173564,41.25905112,0,0.983487256,0,0,0,2,23,0% -2/7/2018 8:00,156.8651485,345.7023252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737813323,6.033643806,0.04245214,-0.04245214,0.522893946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877476926,151.3394883,0.877476926,28.66051165,0,0.993018445,0,0,0,2,0,0% -2/7/2018 9:00,155.9942509,22.34446304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.722613292,0.38998445,0.299980926,-0.299980926,0.47885393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952138707,162.2017458,0.952138707,17.79825422,0,0.997486643,0,0,0,2,1,0% -2/7/2018 10:00,148.8915104,50.01178995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598647085,0.872870399,0.567091207,-0.567091207,0.433175382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970619752,166.0769481,0.970619752,13.92305187,0,0.998486521,0,0,0,2,2,0% -2/7/2018 11:00,138.7230753,67.63974853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421174412,1.180536317,0.877063447,-0.877063447,0.380167007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931646032,158.6928724,0.931646032,21.30712757,0,0.996331548,0,0,0,2,3,0% -2/7/2018 12:00,127.3468597,79.95558772,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222621993,1.395488261,1.290730009,-1.290730009,0.309425858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83785811,146.9146277,0.83785811,33.08537234,0,0.990324025,0,0,0,2,4,0% -2/7/2018 13:00,115.5548987,89.8262247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01681345,1.567763376,1.96741871,-1.96741871,0.193705275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69563194,134.0775961,0.69563194,45.9224039,0,0.978122909,0,0,0,2,5,0% -2/7/2018 14:00,103.7490882,98.73492902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810763185,1.723249598,3.583650464,-3.583650464,0,#DIV/0!,0,0,0.076371713,1,0.272122979,0,0.928628362,0.967390325,0.724496596,1,0,0,0.012607254,0.312029739,0.964870443,0.689367039,0.961238037,0.922476074,0,0,0,0,0,0,-0.514645204,120.9737429,0.514645204,59.02625711,0,0.952845689,0,0,0,2,6,0% -2/7/2018 15:00,92.21855666,107.5819066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609517445,1.877658486,20.45618035,-20.45618035,0,#DIV/0!,0,0,0.747987629,1,0.048846097,0,0.956644394,0.995406357,0.724496596,1,0,0,0.094368642,0.312029739,0.767466199,0.491962795,0.961238037,0.922476074,0,0,0,0,0,0,-0.307218594,107.8916897,0.307218594,72.10831026,0,0.887249434,0,0,0,2,7,0% -2/7/2018 16:00,81.15853693,117.0656019,84.60451542,333.760397,33.30522718,32.93873627,0,32.93873627,32.30095169,0.637784574,50.14447829,28.62685853,21.51761976,1.004275483,20.51334428,1.416483686,2.043180193,-4.37906604,4.37906604,0.720981913,0.393657797,0.529883899,17.04288764,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.04890339,0.727594168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383899081,16.38227186,31.43280247,17.10986603,0,28.62685853,-0.085770687,94.92034383,0.085770687,85.07965617,0,0,31.43280247,17.10986603,42.63086759,2,8,36% -2/7/2018 17:00,71.20761488,127.8514424,261.6668195,619.6358424,62.05740462,142.9714304,80.81273044,62.15869992,60.18614491,1.972555014,65.31540957,0,65.31540957,1.871259717,63.44414985,1.242807332,2.231428624,-1.563762628,1.563762628,0.797572849,0.237161917,1.667954765,53.64715879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.85321177,1.355721295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.208427549,51.5676896,59.06163932,52.9234109,80.81273044,0,0.130419716,82.50615325,-0.130419716,97.49384675,0.666622382,0,112.9332142,52.9234109,147.5705281,2,9,31% -2/7/2018 18:00,62.71594236,140.5952645,415.9698058,738.9861075,77.21688779,321.7174878,243.6932179,78.02426983,74.88851373,3.135756102,103.1850694,0,103.1850694,2.328374067,100.8566953,1.094599688,2.453850278,-0.644141138,0.644141138,0.640308312,0.185630992,2.217224896,71.31357431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.98568792,1.686899085,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606371889,68.54932017,73.59205981,70.23621925,243.6932179,0,0.329766981,70.74536718,-0.329766981,109.2546328,0.898377785,0,292.5206333,70.23621925,338.488834,2,10,16% -2/7/2018 19:00,56.44689928,155.7443637,524.6815357,793.9183665,85.87524971,482.7918039,395.5507388,87.24106513,83.28579409,3.955271043,129.8045685,0,129.8045685,2.589455625,127.2151129,0.985184245,2.718251938,-0.111888488,0.111888488,0.549287748,0.163671187,2.464356768,79.26218482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0574732,1.876051785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785418089,76.18982693,81.84289129,78.06587871,395.5507388,0,0.498225958,60.11730042,-0.498225958,119.8826996,0.949643928,0,457.4752487,78.06587871,508.567805,2,11,11% -2/7/2018 20:00,53.23434255,173.0320269,577.8353706,815.452398,89.75160555,600.4313117,509.0300811,91.4012306,87.04526349,4.355967102,142.8092176,0,142.8092176,2.706342055,140.1028755,0.929114553,3.019978581,0.301803252,-0.301803252,0.478542294,0.155323835,2.437325219,78.39275729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.6712182,1.960735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765833824,75.35410012,85.43705202,77.31483573,509.0300811,0,0.624230283,51.37428546,-0.624230283,128.6257145,0.969901355,0,579.1460172,77.31483573,629.7470309,2,12,9% -2/7/2018 21:00,53.64700791,191.0702667,571.1171877,812.8864399,89.27198918,659.2317044,568.3462725,90.88543193,86.58010933,4.305322602,141.1658542,0,141.1658542,2.691879852,138.4739743,0.936316922,3.334805257,0.701209705,-0.701209705,0.410239768,0.156311158,2.163105466,69.5729074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.22409432,1.95025779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567162546,66.87612492,84.79125687,68.82638271,568.3462725,0,0.699170566,45.63950376,-0.699170566,134.3604962,0.978486692,0,640.910521,68.82638271,685.956012,2,13,7% -2/7/2018 22:00,57.60495889,207.9656105,505.063454,785.1939618,84.39287019,649.3798692,563.7243737,85.65549543,81.84811377,3.807381656,125.0032383,0,125.0032383,2.544756413,122.4584818,1.005396198,3.629684634,1.170599736,-1.170599736,0.329969345,0.167093599,1.682585432,54.11773135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.6755202,1.843667358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219027418,52.02002184,79.89454762,53.8636892,563.7243737,0,0.717942828,44.11510332,-0.717942828,135.8848967,0.980356572,0,632.5454419,53.8636892,667.7981492,2,14,6% -2/7/2018 23:00,64.4402526,222.5733514,385.1241023,719.9000447,74.52173889,564.2063074,489.0284457,75.17786167,72.27463351,2.90322816,95.62490279,0,95.62490279,2.247105383,93.37779741,1.124694579,3.884637809,1.85591164,-1.85591164,0.212774107,0.193500584,1.059976665,34.09249319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.47312682,1.628020201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.767949485,32.77100122,70.24107631,34.39902142,489.0284457,0,0.67930048,47.21099579,-0.67930048,132.7890042,0.97639487,0,547.7259421,34.39902142,570.2394136,2,15,4% -2/7/2018 0:00,73.31589844,234.8391089,222.944121,576.8688357,57.32811709,395.3251585,338.0450487,57.2801098,55.59946284,1.680646956,55.78403753,0,55.78403753,1.728654249,54.05538328,1.279603822,4.098715662,3.220409607,-3.220409607,0,0.257141192,0.432163562,13.89986571,0.02015424,1,0.301079559,0,0.924196902,0.962958866,0.724496596,1,53.49656037,1.252404119,0.003414234,0.312029739,0.990363887,0.714860482,0.961238037,0.922476074,0.311336267,13.36107963,53.80789664,14.61348375,331.2320077,0,0.585999846,54.12634404,-0.585999846,125.873656,0.964675745,0,373.3393806,14.61348375,382.9036134,2,16,3% -2/7/2018 1:00,83.49144143,245.2911825,48.96642986,227.0312194,23.23207164,123.9714555,101.0707869,22.9006686,22.53153897,0.369129632,12.57301051,0,12.57301051,0.700532677,11.87247783,1.45720055,4.281138761,8.735661543,-8.735661543,0,0.474448958,0.175133169,5.632884742,0.49076565,1,0.11397717,0,0.949639495,0.988401458,0.724496596,1,21.8415876,0.50753354,0.068094565,0.312029739,0.825113077,0.549609673,0.961238037,0.922476074,0.119934221,5.414543071,21.96152182,5.922076611,51.46871644,0,0.445184531,63.56485439,-0.445184531,116.4351456,0.937687023,0,70.22306931,5.922076611,74.09895001,2,17,6% -2/7/2018 2:00,94.73399848,254.5963798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653420187,4.443545092,-12.03665212,12.03665212,0,#DIV/0!,0,0,1,0.370492106,0,0.082889223,0.961238037,1,0.516470291,0.791973695,0,0,0.115824807,0.076561418,0.724496596,0.448993192,0.992547092,0.953785128,0,0,0,0,0,0,0.262204446,74.79909355,-0.262204446,105.2009064,0.859309107,0,0,0,0,2,18,0% -2/7/2018 3:00,106.3417463,263.422717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856013606,4.597593736,-3.317345197,3.317345197,0.902546871,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.054839986,86.85632316,-0.054839986,93.14367684,0,0,0,0,0,2,19,0% -2/7/2018 4:00,118.1576422,272.4980611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062239893,4.755988372,-1.726115106,1.726115106,0.825336758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164846855,99.48833808,0.164846855,80.51166192,0,0.746688178,0,0,0,2,20,0% -2/7/2018 5:00,129.8765158,282.8151824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266772822,4.936056108,-1.005972271,1.005972271,0.70218508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381879218,112.4501344,0.381879218,67.54986558,0,0.919068549,0,0,0,2,21,0% -2/7/2018 6:00,141.0349819,296.0837668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461524794,5.167636592,-0.560970192,0.560970192,0.626085242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581459918,125.5532912,0.581459918,54.44670885,0,0.96400955,0,0,0,2,22,0% -2/7/2018 7:00,150.6657538,315.5985321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629613475,5.508233499,-0.232161288,0.232161288,0.569855608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749979638,138.5886141,0.749979638,41.41138586,0,0.983331523,0,0,0,2,23,0% -2/8/2018 8:00,156.5544441,345.8346871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.732390508,6.035953958,0.044087596,-0.044087596,0.522614267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875944162,151.1569146,0.875944162,28.84308537,0,0.992918736,0,0,0,2,0,0% -2/8/2018 9:00,155.6980576,22.08062182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.717443744,0.385379552,0.302623254,-0.302623254,0.478402065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95075758,161.9446555,0.95075758,18.05534451,0,0.997410359,0,0,0,2,1,0% -2/8/2018 10:00,148.6522224,49.61538005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.594470722,0.865951742,0.571004409,-0.571004409,0.432506185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969308173,165.7679952,0.969308173,14.23200477,0,0.998416818,0,0,0,2,2,0% -2/8/2018 11:00,138.5245369,67.26859276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417709264,1.174058427,0.882957828,-0.882957828,0.379159008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930317089,158.4842973,0.930317089,21.51570265,0,0.996254884,0,0,0,2,3,0% -2/8/2018 12:00,127.1681542,79.62848561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219502994,1.389779252,1.300392622,-1.300392622,0.307773454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836426056,146.7646222,0.836426056,33.23537784,0,0.990221853,0,0,0,2,4,0% -2/8/2018 13:00,115.3817636,89.53348204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013791672,1.562654052,1.986418697,-1.986418697,0.190456086,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694018101,133.9490241,0.694018101,46.05097589,0,0.97795577,0,0,0,2,5,0% -2/8/2018 14:00,103.5715734,98.46572853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807664967,1.718551163,3.641678137,-3.641678137,0,#DIV/0!,0,0,0.084760302,1,0.267993066,0,0.92924616,0.968008123,0.724496596,1,0,0,0.013938823,0.312029739,0.961232618,0.685729214,0.961238037,0.922476074,0,0,0,0,0,0,-0.512783389,120.8494084,0.512783389,59.15059162,0,0.952492941,0,0,0,2,6,0% -2/8/2018 15:00,92.02875021,107.3287049,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606204698,1.873239282,22.44772694,-22.44772694,0,#DIV/0!,0,0,0.767907864,1,0.044518507,0,0.957074431,0.995836394,0.724496596,1,0,0,0.096204235,0.312029739,0.763645344,0.48814194,0.961238037,0.922476074,0,0,0,0,0,0,-0.305059646,107.7617524,0.305059646,72.2382476,0,0.886097627,0,0,0,2,7,0% -2/8/2018 16:00,80.9514811,116.8252381,88.01148877,342.7447349,34.10775092,33.74274417,0,33.74274417,33.07927639,0.663467779,50.92557554,28.55769659,22.36787895,1.028474535,21.33940441,1.41286988,2.038985054,-4.296481668,4.296481668,0.735104672,0.387537484,0.555827789,17.87733233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.7970587,0.745126299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.402695341,17.18437183,32.19975404,17.92949813,0,28.55769659,-0.083320599,94.77945967,0.083320599,85.22054033,0,0,32.19975404,17.92949813,43.93425198,2,8,36% -2/8/2018 17:00,70.97327679,127.627115,266.0280264,624.2665632,62.51143572,145.8006578,83.16874091,62.63191692,60.62648529,2.005431634,66.38652541,0,66.38652541,1.88495043,64.50157498,1.238717361,2.227513372,-1.552640528,1.552640528,0.795670858,0.234980639,1.691951084,54.41896291,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.2764837,1.36564017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.225812801,52.30957708,59.5022965,53.67521725,83.16874091,0,0.133226326,82.34393057,-0.133226326,97.65606943,0.674698801,0,115.6161463,53.67521725,150.7455025,2,9,30% -2/8/2018 18:00,62.45096798,140.4002668,420.7380744,741.9856093,77.56414927,325.3994118,247.0024065,78.39700531,75.22530399,3.171701326,104.3516626,0,104.3516626,2.338845282,102.0128173,1.089975012,2.450446926,-0.643043865,0.643043865,0.640120667,0.184352579,2.240697088,72.0685207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.30942352,1.694485445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623377413,69.27500336,73.93280094,70.96948881,247.0024065,0,0.332893797,70.5554884,-0.332893797,109.4445116,0.899801947,0,296.1860473,70.96948881,342.6341584,2,10,16% -2/8/2018 19:00,56.15212372,155.6050806,529.7001965,796.2696717,86.18611869,487.0146907,399.4342976,87.58039304,83.58728921,3.993103827,131.0307748,0,131.0307748,2.598829471,128.4319453,0.980039441,2.715820989,-0.114262792,0.114262792,0.549693778,0.162707356,2.487551599,80.00821031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.34728179,1.882843105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.802222665,76.90693501,82.14950446,78.78977812,399.4342976,0,0.501631937,59.89197307,-0.501631937,120.1080269,0.950325326,0,461.7420334,78.78977812,513.3083674,2,11,11% -2/8/2018 20:00,52.92010256,172.9805415,582.9919373,817.5762925,90.0522056,605.0529872,513.3213484,91.73163882,87.33679934,4.39483948,144.0685511,0,144.0685511,2.715406256,141.3531449,0.92363003,3.019079991,0.297217744,-0.297217744,0.479326462,0.154465611,2.460022904,79.12279288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95145354,1.967302589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.78227822,76.0558381,85.73373176,78.02314069,513.3213484,0,0.627857428,51.10777622,-0.627857428,128.8922238,0.970364086,0,583.8423329,78.02314069,634.9069181,2,12,9% -2/8/2018 21:00,53.33250864,191.1206041,576.3034477,815.0547754,89.57707579,664.160117,572.9397017,91.22041527,86.87599645,4.344418821,142.4325225,0,142.4325225,2.701079339,139.7314431,0.930827874,3.335683811,0.694217375,-0.694217375,0.411435527,0.155433871,2.18488808,70.27351114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.50851227,1.956922786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582943976,67.54957189,85.09145625,69.50649468,572.9397017,0,0.702946255,45.33613702,-0.702946255,134.663863,0.978870807,0,645.9254043,69.50649468,691.4160149,2,13,7% -2/8/2018 22:00,57.30860481,208.0998715,510.1674722,787.7018361,84.7187344,654.5608389,568.550829,86.01000988,82.16415198,3.845857901,126.2505926,0,126.2505926,2.554582421,123.6960101,1.000223844,3.632027931,1.159765141,-1.159765141,0.33182217,0.166060635,1.702869748,54.77014467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97930815,1.850786268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.233723336,52.64714634,80.21303148,54.49793261,568.550829,0,0.721784314,43.79800617,-0.721784314,136.2019938,0.980727228,0,637.8063102,54.49793261,673.4741171,2,14,6% -2/8/2018 23:00,64.17111935,222.7598949,390.0190801,723.2694491,74.9015308,569.6629035,494.0798017,75.58310186,72.64297329,2.940128571,96.82319897,0,96.82319897,2.258557511,94.56464145,1.119997317,3.887893608,1.836820413,-1.836820413,0.216038899,0.192045812,1.077837448,34.66695737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82718903,1.636317228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780889562,33.32319804,70.6080786,34.95951527,494.0798017,0,0.683119966,46.91206806,-0.683119966,133.0879319,0.976806414,0,553.2283979,34.95951527,576.1087015,2,15,4% -2/8/2018 0:00,73.07440073,235.0539602,227.4230432,582.4333936,57.85940695,401.2946771,343.4655338,57.82914332,56.11473235,1.714410964,56.88602444,0,56.88602444,1.744674598,55.14134985,1.275388892,4.102465525,3.174936496,-3.174936496,0,0.254413124,0.43616865,14.02868309,0.012630849,1,0.305130739,0,0.923563113,0.962325076,0.724496596,1,53.97314051,1.264010807,0.002147256,0.312029739,0.993929118,0.718425714,0.961238037,0.922476074,0.314872571,13.48490379,54.28801308,14.7489146,339.1272726,0,0.589707832,53.86372218,-0.589707832,126.1362778,0.96521225,0,381.617811,14.7489146,391.2706806,2,16,3% -2/8/2018 1:00,83.27559828,245.5228186,52.06922946,237.8217332,24.22180079,130.5857424,106.7017985,23.88394397,23.49142412,0.392519846,13.35516418,0,13.35516418,0.730376663,12.62478752,1.453433377,4.285181573,8.455538542,-8.455538542,0,0.465184544,0.182594166,5.872856031,0.478032628,1,0.117718875,0,0.949207061,0.987969024,0.724496596,1,22.77351542,0.529155406,0.066656184,0.312029739,0.828428101,0.552924697,0.961238037,0.922476074,0.125008405,5.645212602,22.89852383,6.174368008,55.69485734,0,0.448662942,63.342068,-0.448662942,116.657932,0.938557767,0,75.17136478,6.174368008,79.21236515,2,17,5% -2/8/2018 2:00,94.53122507,254.8424029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649881123,4.447839005,-12.57324383,12.57324383,0,#DIV/0!,0,0,1,0.404869956,0,0.079366902,0.961238037,1,0.524201605,0.799705009,0,0,0.115824807,0.085294062,0.724496596,0.448993192,0.991608716,0.952846753,0,0,0,0,0,0,0.265496206,74.60356049,-0.265496206,105.3964395,0.861673392,0,0,0,0,2,18,0% -2/8/2018 3:00,106.1488108,263.6864931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852646246,4.602197497,-3.355472792,3.355472792,0.896026668,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.05783684,86.68434288,-0.05783684,93.31565712,0,0,0,0,0,2,19,0% -2/8/2018 4:00,117.9665681,272.786877,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058905021,4.761029159,-1.736382765,1.736382765,0.827092631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162171996,99.33298915,0.162171996,80.66701085,0,0.741685363,0,0,0,2,20,0% -2/8/2018 5:00,129.6769167,283.1384674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26328916,4.941698495,-1.009422416,1.009422416,0.702775089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.379531119,112.3046421,0.379531119,67.69535787,0,0.918258497,0,0,0,2,21,0% -2/8/2018 6:00,140.8118467,296.4451384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45763035,5.173943717,-0.561737305,0.561737305,0.626216426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.579420721,125.4098095,0.579420721,54.59019046,0,0.963706918,0,0,0,2,22,0% -2/8/2018 7:00,150.3989319,315.9540891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624956554,5.51443914,-0.231484391,0.231484391,0.569739852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748210111,138.4355691,0.748210111,41.56443085,0,0.983173851,0,0,0,2,23,0% -2/9/2018 8:00,156.2400979,345.9733334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726904132,6.038373792,0.045811421,-0.045811421,0.522319475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874386425,150.9724422,0.874386425,29.02755782,0,0.992817045,0,0,0,2,0,0% -2/9/2018 9:00,155.3964654,21.82671708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.712179967,0.380948078,0.305371273,-0.305371273,0.477932126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949339109,161.6842464,0.949339109,18.31575362,0,0.997331781,0,0,0,2,1,0% -2/9/2018 10:00,148.4065196,49.22402174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590182398,0.85912125,0.575053491,-0.575053491,0.431813751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967946812,165.4541144,0.967946812,14.54588559,0,0.998344269,0,0,0,2,2,0% -2/9/2018 11:00,138.3197266,66.89864497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414134649,1.16760162,0.889046073,-0.889046073,0.378117857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928926716,158.2681229,0.928926716,21.73187705,0,0.996174441,0,0,0,2,3,0% -2/9/2018 12:00,126.9835774,79.30100801,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216281522,1.38406369,1.310379281,-1.310379281,0.306065635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834922519,146.6077712,0.834922519,33.3922288,0,0.990114204,0,0,0,2,4,0% -2/9/2018 13:00,115.2031157,89.23975458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010673677,1.557527541,2.006133374,-2.006133374,0.187084678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692325015,133.8144369,0.692325015,46.18556307,0,0.977779585,0,0,0,2,5,0% -2/9/2018 14:00,103.3888154,98.19531004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804475239,1.71383147,3.702693051,-3.702693051,0,#DIV/0!,0,0,0.093417945,1,0.263780522,0,0.929872625,0.968634588,0.724496596,1,0,0,0.015302504,0.312029739,0.957521449,0.682018045,0.961238037,0.922476074,0,0,0,0,0,0,-0.510837391,120.719624,0.510837391,59.28037596,0,0.952121495,0,0,0,2,6,0% -2/9/2018 15:00,91.83388588,107.0742158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602803673,1.86879761,24.91874235,-24.91874235,0,#DIV/0!,0,0,0.788637232,1,0.040108914,0,0.957508031,0.996269994,0.724496596,1,0,0,0.098087093,0.312029739,0.759754207,0.484250803,0.961238037,0.922476074,0,0,0,0,0,0,-0.302814749,107.6267422,0.302814749,72.37325782,0,0.884882547,0,0,0,2,7,0% -2/9/2018 16:00,80.73944364,116.5836318,91.5282287,351.7959254,34.91567685,34.55281882,0,34.55281882,33.86284037,0.68997845,51.66494502,28.42002982,23.24491521,1.052836482,22.19207873,1.409169128,2.034768229,-4.215254538,4.215254538,0.74899533,0.381474408,0.582857355,18.74669609,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.5502502,0.762776447,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.42227817,18.02003735,32.97252837,18.7828138,0,28.42002982,-0.080785557,94.633721,0.080785557,85.366279,0,0,32.97252837,18.7828138,45.26550434,2,8,37% -2/9/2018 17:00,70.73403411,127.4017613,270.4795843,628.9074889,62.96922525,148.7117217,85.60226153,63.10946013,61.07047077,2.038989357,67.47966119,0,67.47966119,1.898754473,65.58090672,1.234541788,2.223580208,-1.541348385,1.541348385,0.793739787,0.232805834,1.716336354,55.20327703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.70325944,1.375641152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243479846,53.06348964,59.94673928,54.43913079,85.60226153,0,0.136112645,82.17703635,-0.136112645,97.82296365,0.6826572,0,118.3837395,54.43913079,154.0130618,2,9,30% -2/9/2018 18:00,62.18110238,140.2048213,425.5844595,744.987983,77.91468006,329.1585238,250.3850234,78.7735004,75.56526498,3.208235424,105.5372945,0,105.5372945,2.349415078,103.1878795,1.085264969,2.447035759,-0.641810271,0.641810271,0.63990971,0.183076892,2.264481389,72.83350557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63620696,1.702143227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640609058,70.01033591,74.27681602,71.71247914,250.3850234,0,0.336092701,70.36100178,-0.336092701,109.6389982,0.901231521,0,299.9316914,71.71247914,346.8660748,2,10,16% -2/9/2018 19:00,55.85254148,155.4666151,534.7840499,798.618961,86.49950863,491.3051435,403.3824861,87.92265736,83.8912293,4.031428062,132.2728638,0,132.2728638,2.608279334,129.6645844,0.974810744,2.71340431,-0.1165335,0.1165335,0.550082092,0.161746613,2.510994277,80.76220743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.63944056,1.889689499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.819206806,77.63170572,82.45864737,79.52139522,403.3824861,0,0.505100061,59.66200512,-0.505100061,120.3379949,0.951009713,0,466.0793098,79.52139522,518.1244725,2,11,11% -2/9/2018 20:00,52.60143112,172.9319435,588.2003806,819.6937368,90.35447395,609.7294304,517.6653743,92.06405612,87.62995319,4.434102926,145.340513,0,145.340513,2.724520762,142.6159922,0.918068164,3.018231796,0.292724938,-0.292724938,0.480094777,0.153611723,2.482912799,79.85901057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.23324417,1.973906018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.798861871,76.76351854,86.03210604,78.73742456,517.6653743,0,0.63153511,50.8365288,-0.63153511,129.1634712,0.970827838,0,588.5960622,78.73742456,640.1281318,2,12,9% -2/9/2018 21:00,53.01440519,191.1759697,581.5287849,817.2112613,89.88287527,669.1286161,577.5722315,91.55638457,87.17257495,4.383809619,143.7086869,0,143.7086869,2.710300322,140.9983866,0.925275922,3.336650122,0.687328401,-0.687328401,0.412613611,0.154563072,2.206817895,70.97884939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.79359481,1.963603357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598832053,68.22756985,85.39242686,70.1911732,577.5722315,0,0.706760001,45.02809221,-0.706760001,134.9719078,0.979254627,0,650.9827069,70.1911732,696.9214259,2,13,7% -2/9/2018 22:00,57.00974098,208.2403119,515.2993445,790.1891898,85.0441414,659.766159,573.4018681,86.36429088,82.47974676,3.884544122,127.5046866,0,127.5046866,2.564394643,124.940292,0.995007686,3.634479078,1.149081862,-1.149081862,0.333649118,0.165038326,1.723271378,55.42633124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.28266985,1.857895189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.248504247,53.27789783,80.5311741,55.13579302,573.4018681,0,0.72565137,43.47693886,-0.72565137,136.5230611,0.981096389,0,643.0936761,55.13579302,679.1789499,2,14,6% -2/9/2018 23:00,63.90047173,222.9526957,394.9336864,726.600474,75.27904932,575.1269586,499.1406735,75.98628518,73.00910823,2.977176949,98.02618574,0,98.02618574,2.269941087,95.75624465,1.115273625,3.891258617,1.818042764,-1.818042764,0.219250066,0.190611872,1.095810332,35.24502709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17913187,1.64456459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.793910855,33.87886065,70.97304272,35.52342524,499.1406735,0,0.68695341,46.6105739,-0.68695341,133.3894261,0.97721486,0,558.7407262,35.52342524,581.9900975,2,15,4% -2/9/2018 0:00,72.83208639,235.274653,231.9203356,587.91326,58.38419416,407.2514721,348.8794634,58.37200874,56.62369529,1.748313453,57.99226932,0,57.99226932,1.760498869,56.23177045,1.271159709,4.106317342,3.13057946,-3.13057946,0,0.251742453,0.440124717,14.15592382,0.005179957,1,0.309185516,0,0.922925399,0.961687362,0.724496596,1,54.44292297,1.275475437,0.000883674,0.312029739,0.99749726,0.721993856,0.961238037,0.922476074,0.318395442,13.60721243,54.76131841,14.88268786,347.0722829,0,0.59341996,53.59992357,-0.59341996,126.4000764,0.965742639,0,389.9438207,14.88268786,399.6842423,2,16,2% -2/9/2018 1:00,83.05919654,245.7598269,55.23493077,248.5412229,25.20026365,137.2322957,112.3755287,24.85676696,24.44038272,0.416384239,14.15222938,0,14.15222938,0.759880928,13.39234845,1.449656454,4.289318149,8.192016734,-8.192016734,0,0.456237806,0.189970232,6.110095681,0.46545894,1,0.121469101,0,0.948770409,0.987532372,0.724496596,1,23.69471324,0.550531146,0.065221669,0.312029739,0.831750623,0.556247219,0.961238037,0.922476074,0.130031345,5.873256378,23.82474458,6.423787523,60.06933423,0,0.452140403,63.11890686,-0.452140403,116.8810931,0.939414882,0,80.25477109,6.423787523,84.45901155,2,17,5% -2/9/2018 2:00,94.32823585,255.0934508,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646338293,4.452220616,-13.16031157,13.16031157,0,#DIV/0!,0,0,1,0.438422939,0,0.075840303,0.961238037,1,0.532041636,0.80754504,0,0,0.115824807,0.094146452,0.724496596,0.448993192,0.990639272,0.951877309,0,0,0,0,0,0,0.26877928,74.4083602,-0.26877928,105.5916398,0.863973756,0,0,0,0,2,18,0% -2/9/2018 3:00,105.9556173,263.9551061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849274383,4.606885679,-3.394404887,3.394404887,0.889368887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.060823361,86.51292581,-0.060823361,93.48707419,0,0,0,0,0,2,19,0% -2/9/2018 4:00,117.7749906,273.0804799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055561362,4.766153498,-1.746697757,1.746697757,0.828856598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159505814,99.1782131,0.159505814,80.8217869,0,0.736531803,0,0,0,2,20,0% -2/9/2018 5:00,129.4763427,283.4665395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259788483,4.947424433,-1.012826991,1.012826991,0.703357306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377186859,112.1595387,0.377186859,67.84046126,0,0.917439709,0,0,0,2,21,0% -2/9/2018 6:00,140.5870097,296.8110951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453706204,5.180330867,-0.562437286,0.562437286,0.62633613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577377673,125.2663127,0.577377673,54.73368729,0,0.96340157,0,0,0,2,22,0% -2/9/2018 7:00,150.1295035,316.3135878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62025414,5.520713576,-0.230730165,0.230730165,0.569610872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746426724,138.2817905,0.746426724,41.71820946,0,0.983014188,0,0,0,2,23,0% -2/10/2018 8:00,155.9222015,346.1178991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.721355792,6.04089694,0.047623614,-0.047623614,0.522009572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872803191,150.7860407,0.872803191,29.2139593,0,0.992713317,0,0,0,2,0,0% -2/10/2018 9:00,155.0896245,21.58260489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.706824583,0.376687516,0.308224984,-0.308224984,0.477444113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.94788268,161.4205376,0.94788268,18.57946242,0,0.997250856,0,0,0,2,1,0% -2/10/2018 10:00,148.1545253,48.83791403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585784268,0.8523824,0.579238698,-0.579238698,0.431098038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966535065,165.1354673,0.966535065,14.86453267,0,0.998268819,0,0,0,2,2,0% -2/10/2018 11:00,138.1087314,66.53012851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410452089,1.161169794,0.895329279,-0.895329279,0.377043365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927474421,158.0444846,0.927474421,21.95551537,0,0.996090157,0,0,0,2,3,0% -2/10/2018 12:00,126.7932027,78.97333117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212958857,1.37834465,1.320694065,-1.320694065,0.304301703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833347214,146.444129,0.833347214,33.55587097,0,0.990000999,0,0,0,2,4,0% -2/10/2018 13:00,115.0190272,88.94517743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007460727,1.5523862,2.026580889,-2.026580889,0.183587947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690552685,133.6738746,0.690552685,46.32612541,0,0.977594228,0,0,0,2,5,0% -2/10/2018 14:00,103.2008917,97.92377835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801195351,1.709092348,3.766862024,-3.766862024,0,#DIV/0!,0,0,0.102348158,1,0.259487602,0,0.930507193,0.969269157,0.724496596,1,0,0,0.016697969,0.312029739,0.953738864,0.67823546,0.961238037,0.922476074,0,0,0,0,0,0,-0.508807559,120.5844345,0.508807559,59.41556554,0,0.95173102,0,0,0,2,6,0% -2/10/2018 15:00,91.63404878,106.8185205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599315858,1.864334884,28.06219485,-28.06219485,0,#DIV/0!,0,0,0.810202175,1,0.035620059,0,0.957944661,0.996706624,0.724496596,1,0,0,0.10001693,0.312029739,0.755795527,0.480292123,0.961238037,0.922476074,0,0,0,0,0,0,-0.300484637,107.4867139,0.300484637,72.51328615,0,0.883602142,0,0,0,2,7,0% -2/10/2018 16:00,80.52251671,116.3408426,95.15360998,360.8996253,35.72788056,35.36786125,0,35.36786125,34.65055314,0.717308105,52.35874035,28.21031854,24.14842181,1.077327421,23.07109439,1.405383039,2.030530759,-4.135452869,4.135452869,0.762642219,0.375475829,0.610977456,19.65113522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.30742968,0.780520049,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442651087,18.88941864,33.75008077,19.66993869,0,28.21031854,-0.078166661,94.48319309,0.078166661,85.51680691,0,0,33.75008077,19.66993869,46.62366224,2,8,38% -2/10/2018 17:00,70.48998843,127.1754198,275.0193051,633.5538053,63.43034824,151.7037735,88.11287255,63.5909009,61.51768921,2.07321169,68.59427361,0,68.59427361,1.912659032,66.68161458,1.230282388,2.219629804,-1.529905348,1.529905348,0.791782913,0.230639621,1.741095664,55.99962154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.13314281,1.385714958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261417882,53.82896627,60.39456069,55.21468123,88.11287255,0,0.139077174,82.00555021,-0.139077174,97.99444979,0.690487373,0,121.2353866,55.21468123,157.3722912,2,9,30% -2/10/2018 18:00,61.90645324,140.0089476,430.506363,747.9906616,78.26819258,332.9929558,253.8394992,79.15345661,75.9081178,3.245338811,106.7413267,0,106.7413267,2.360074785,104.3812519,1.080471437,2.443617118,-0.640445567,0.640445567,0.639676332,0.181804961,2.288564127,73.60808922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96577013,1.709866148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65805692,70.75489517,74.62382705,72.46476132,253.8394992,0,0.339361856,70.16200033,-0.339361856,109.8379997,0.902664644,0,303.7557681,72.46476132,351.1825051,2,10,16% -2/10/2018 19:00,55.54826307,155.3289796,539.9302874,800.9645205,86.81517976,495.6607633,407.3931589,88.26760435,84.19738177,4.070222574,133.5301473,0,133.5301473,2.617797984,130.9123493,0.969500084,2.711002117,-0.118701882,0.118701882,0.550452907,0.160789609,2.534671716,81.52375528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.93372597,1.896585728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.83636103,78.36373448,82.770087,80.26032021,407.3931589,0,0.508628221,59.42750066,-0.508628221,120.5724993,0.951696371,0,470.4846778,80.26032021,523.0134522,2,11,11% -2/10/2018 20:00,52.27844194,172.8862586,593.4578185,821.8034071,90.65819379,614.4579293,522.0596788,92.39825047,87.92451476,4.473735713,146.6243979,0,146.6243979,2.733679036,143.8907189,0.91243094,3.017434444,0.288325137,-0.288325137,0.480847187,0.152762658,2.505982524,80.60101223,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.51638796,1.980541156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815575808,77.47675877,86.33196376,79.45729992,522.0596788,0,0.63526103,50.56065274,-0.63526103,129.4393473,0.971292197,0,593.4044562,79.45729992,645.4076698,2,12,9% -2/10/2018 21:00,52.69281804,191.2364003,586.7903655,819.3547651,90.18918687,674.1343339,582.2412101,91.89312376,87.46965013,4.423473637,144.9936545,0,144.9936545,2.719536747,142.2741178,0.919663167,3.337704835,0.680543869,-0.680543869,0.413773834,0.153699161,2.228883546,71.68855657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.07915477,1.970295115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614818542,68.90976739,85.69397331,70.8800625,582.2412101,0,0.710609415,44.71547936,-0.710609415,135.2845206,0.979637859,0,656.0795057,70.8800625,702.469089,2,13,7% -2/10/2018 22:00,56.7084912,208.3869471,520.4563944,792.654988,85.36890707,664.9929438,578.2748041,86.71813969,82.79471955,3.923420142,128.764866,0,128.764866,2.574187526,126.1906784,0.989749885,3.637038346,1.138551175,-1.138551175,0.335449972,0.164027012,1.743780273,56.0859678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.58543368,1.8649901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263362872,53.91196558,80.84879655,55.77695568,578.2748041,0,0.72954162,43.15201979,-0.72954162,136.8479802,0.981463814,0,648.4045915,55.77695568,684.9094935,2,14,6% -2/10/2018 23:00,63.62842607,223.15173,399.8654832,729.8921837,75.65413667,580.5957001,504.2084599,76.38724023,73.37288532,3.014354916,99.23326724,0,99.23326724,2.281251355,96.95201589,1.110525533,3.894732421,1.799577856,-1.799577856,0.222407751,0.189198968,1.113886742,35.82642658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.52880824,1.652758841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807007153,34.43772395,71.33581539,36.09048279,504.2084599,0,0.690798547,46.30664594,-0.690798547,133.6933541,0.977619998,0,564.2600891,36.09048279,587.8805883,2,15,4% -2/10/2018 0:00,72.58905593,235.5011299,236.4337488,593.3077531,58.90238964,413.192934,354.2843313,58.90860274,57.12626527,1.782337469,59.10222412,0,59.10222412,1.776124374,57.32609974,1.266918027,4.110270108,3.087311946,-3.087311946,0.002192252,0.249128519,0.446964999,14.3759308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.91193908,1.286796063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.32382462,13.8186915,55.2357637,15.10548757,354.2843313,0,0.597134168,53.33507793,-0.597134168,126.6649221,0.966266724,0,397.5689239,15.10548757,407.4551634,2,16,2% -2/10/2018 1:00,82.84232763,246.0021268,58.45953197,259.173645,26.16642629,143.9014965,118.0833919,25.81810464,25.37741199,0.440692645,14.96320464,0,14.96320464,0.789014296,14.17419035,1.445871377,4.29354708,7.943743921,-7.943743921,0,0.44759897,0.197253574,6.344352997,0.453045764,1,0.125226507,0,0.94832968,0.987091643,0.724496596,1,24.60418001,0.571638172,0.063791492,0.312029739,0.835079405,0.559576001,0.961238037,0.922476074,0.134998699,6.09843342,24.73917871,6.670071592,64.58621138,0,0.455614968,62.8954907,-0.455614968,117.1045093,0.940258215,0,85.4668945,6.670071592,89.83232296,2,17,5% -2/10/2018 2:00,94.12509235,255.3494256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64279277,4.45668822,-13.80517839,13.80517839,0,#DIV/0!,0,0,1,0.471173184,0,0.072310291,0.961238037,1,0.539988684,0.815492088,0,0,0.115824807,0.103117644,0.724496596,0.448993192,0.989638201,0.950876238,0,0,0,0,0,0,0.272052243,74.21357614,-0.272052243,105.7864239,0.866211771,0,0,0,0,2,18,0% -2/10/2018 3:00,105.7622097,264.2284417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.845898783,4.611656284,-3.434160354,3.434160354,0.882570302,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063798508,86.34213049,-0.063798508,93.65786951,0,0,0,0,0,2,19,0% -2/10/2018 4:00,117.5829384,273.3787335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052209419,4.771359004,-1.757058696,1.757058696,0.830628423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.15684896,99.02404567,0.15684896,80.97595433,0,0.731221987,0,0,0,2,20,0% -2/10/2018 5:00,129.2748117,283.7992263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256271104,4.953230913,-1.016184927,1.016184927,0.703931547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374846712,112.014839,0.374846712,67.98516095,0,0.916612142,0,0,0,2,21,0% -2/10/2018 6:00,140.3604874,297.1814052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449752644,5.186793997,-0.563069654,0.563069654,0.626444272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575330716,125.1227958,0.575330716,54.87720424,0,0.963093463,0,0,0,2,22,0% -2/10/2018 7:00,149.8575062,316.6767222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615506892,5.527051467,-0.229898466,0.229898466,0.569468643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744629154,138.127256,0.744629154,41.87274402,0,0.982852481,0,0,0,2,23,0% -2/11/2018 8:00,155.6008465,346.2680322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.71574709,6.043517256,0.049524172,-0.049524172,0.521684557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.871193955,150.5976826,0.871193955,29.4023174,0,0.992607499,0,0,0,2,0,0% -2/11/2018 9:00,154.7776847,21.348129,0,0,0,0,0,0,0,0,0,0,0,0,0,2.701380206,0.37259514,0.311184392,-0.311184392,0.476938024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9463877,161.1535524,0.9463877,18.84644764,0,0.99716753,0,0,0,2,1,0% -2/11/2018 10:00,147.8963662,48.45723773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581278542,0.845738345,0.583560297,-0.583560297,0.430359001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965072356,164.8122122,0.965072356,15.18778785,0,0.998190413,0,0,0,2,2,0% -2/11/2018 11:00,137.8916427,66.16325787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406663176,1.154766694,0.901808616,-0.901808616,0.375935334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925959747,157.8135244,0.925959747,22.18647556,0,0.996001972,0,0,0,2,3,0% -2/11/2018 12:00,126.5971068,78.64562703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209536337,1.372625134,1.331341277,-1.331341277,0.302480922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831699894,146.2737563,0.831699894,33.72624371,0,0.989882161,0,0,0,2,4,0% -2/11/2018 13:00,114.8295732,88.64988326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004154131,1.547232344,2.047780484,-2.047780484,0.179962602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688701153,133.5273816,0.688701153,46.47261842,0,0.97739957,0,0,0,2,5,0% -2/11/2018 14:00,103.0078815,97.65123661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797826688,1.704335597,3.834366872,-3.834366872,0,#DIV/0!,0,0,0.111554674,1,0.255116553,0,0.931149305,0.969911269,0.724496596,1,0,0,0.018124894,0.312029739,0.949886784,0.674383379,0.961238037,0.922476074,0,0,0,0,0,0,-0.506694285,120.4438875,0.506694285,59.55611247,0,0.951321169,0,0,0,2,6,0% -2/11/2018 15:00,91.42932581,106.5616985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595742768,1.859852495,32.19093342,-32.19093342,0,#DIV/0!,0,0,0.832630945,1,0.031054661,0,0.958383798,0.997145761,0.724496596,1,0,0,0.101993474,0.312029739,0.751772058,0.476268654,0.961238037,0.922476074,0,0,0,0,0,0,-0.298070084,107.3417247,0.298070084,72.65827529,0,0.882254216,0,0,0,2,7,0% -2/11/2018 16:00,80.30079427,116.0969292,98.88635056,370.0418691,36.54328205,36.18681434,0,36.18681434,35.44136726,0.74544708,53.00328403,27.92522868,25.07805534,1.101914784,23.97614056,1.401513252,2.026273666,-4.057132341,4.057132341,0.776035818,0.369548293,0.640190996,20.59074306,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.06759029,0.79833351,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.463816197,19.79260544,34.53140649,20.59093895,0,27.92522868,-0.075465051,94.32794352,0.075465051,85.67205648,0,0,34.53140649,20.59093895,48.00776421,2,8,39% -2/11/2018 17:00,70.24124259,126.9481281,279.6449506,638.200893,63.89439379,154.7759026,90.70007879,64.07582383,61.96774207,2.10808176,69.72980761,0,69.72980761,1.926651718,67.80315589,1.225940954,2.215662814,-1.518329772,1.518329772,0.789803373,0.228483989,1.766214007,56.8075138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.56575073,1.395852611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.279616036,54.60554304,60.84536677,56.00139565,90.70007879,0,0.142118383,81.82955348,-0.142118383,98.17044652,0.698180629,0,124.1704048,56.00139565,160.8221983,2,9,30% -2/11/2018 18:00,61.62712931,139.8126641,435.5011563,750.9911797,78.62440572,336.9008056,257.3642242,79.53658146,76.25358979,3.282991672,107.9631133,0,107.9631133,2.370815926,105.5922974,1.075596315,2.440191325,-0.63895494,0.63895494,0.63942142,0.180537766,2.312931556,74.39182949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29785095,1.717648067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675711039,71.50825614,74.97356199,73.2259042,257.3642242,0,0.342699397,69.95857851,-0.342699397,110.0414215,0.904099539,0,307.6564384,73.2259042,355.5813282,2,10,16% -2/11/2018 19:00,55.23939992,155.1921857,545.1360817,803.3047074,87.13289665,500.0791306,411.4641462,88.61498438,84.50551833,4.10946605,134.8019327,0,134.8019327,2.62737832,132.1745544,0.964109405,2.708614613,-0.120769308,0.120769308,0.550806458,0.159836965,2.558570781,82.29243136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.22991855,1.903526649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853675821,79.10261517,83.08359437,81.00614182,411.4641462,0,0.512214285,59.18856498,-0.512214285,120.811435,0.952384604,0,474.9557125,81.00614182,527.9726122,2,11,11% -2/11/2018 20:00,51.95124956,172.8435125,598.7613595,823.9040403,90.9631522,619.2357635,526.50177,92.73399359,88.22027754,4.513716046,147.9194985,0,147.9194985,2.742874657,145.1766238,0.906720355,3.016688383,0.284018497,-0.284018497,0.481583666,0.151918875,2.529219677,81.34839896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.8006864,1.987203352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.832411046,78.19517531,86.63309744,80.18237867,526.50177,0,0.639032878,50.28025862,-0.639032878,129.7197414,0.971756764,0,598.2647539,80.18237867,650.7425171,2,12,9% -2/11/2018 21:00,52.36786852,191.301933,592.0853543,821.4842141,90.49581395,679.1744055,586.9439848,92.23042077,87.76703127,4.463389498,146.2867318,0,146.2867318,2.728782685,143.5579491,0.913991728,3.338848597,0.673864669,-0.673864669,0.414916044,0.152842514,2.251073657,72.40226681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36500884,1.976993766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630895201,69.59581282,85.99590404,71.57280658,586.9439848,0,0.714492104,44.39840929,-0.714492104,135.6015907,0.98002022,0,661.2128773,71.57280658,708.0558478,2,13,7% -2/11/2018 22:00,56.40497998,208.5397924,525.6359492,795.0982635,85.69285218,670.238323,583.1669607,87.07136233,83.10889651,3.962465815,130.0304772,0,130.0304772,2.583955666,127.4465215,0.984452615,3.639705999,1.128174085,-1.128174085,0.337224559,0.163027001,1.764386374,56.74873084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88743253,1.872067084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278291922,54.54903863,81.16572445,56.42110571,583.1669607,0,0.733452691,42.82336831,-0.733452691,137.1766317,0.981829277,0,653.73612,56.42110571,690.6626053,2,14,6% -2/11/2018 23:00,63.3550989,223.3569726,404.81204,733.1437311,76.02664144,586.0663839,509.280582,76.78580184,73.73415769,3.051644151,100.4438496,0,100.4438496,2.292483748,98.15136585,1.105755074,3.898314579,1.781424451,-1.781424451,0.225512167,0.187807263,1.132058077,36.41087917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.87607699,1.660896671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820172223,34.99952202,71.69624921,36.66041869,509.280582,0,0.694653123,46.000418,-0.694653123,133.999582,0.978021629,0,569.7836738,36.66041869,593.7771846,2,15,4% -2/11/2018 0:00,72.34540958,235.7333314,240.9610439,598.6163438,59.41391426,419.1165081,359.6776765,59.43883166,57.62236553,1.816466132,60.21534358,0,60.21534358,1.791548729,58.42379485,1.262665596,4.114322789,3.045107542,-3.045107542,0.009409631,0.246570621,0.460765005,14.81978642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.38880952,1.297970955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333822677,14.24534241,55.7226322,15.54331336,359.6776765,0,0.600848407,53.0693155,-0.600848407,126.9306845,0.966784335,0,403.4533753,15.54331336,413.626163,2,16,3% -2/11/2018 1:00,82.62508159,246.249636,61.7391009,269.7047262,27.11940472,150.5843886,123.8173186,26.76707003,26.30165461,0.465415421,15.78710992,0,15.78710992,0.817750112,14.9693598,1.442079718,4.297866931,7.709506922,-7.709506922,0,0.439258174,0.204437528,6.575413651,0.44079396,1,0.128989795,0,0.947885016,0.986646979,0.724496596,1,25.50105696,0.592457173,0.062366094,0.312029739,0.838413251,0.562909847,0.961238037,0.922476074,0.139906839,6.32053771,25.6409638,6.912994882,69.23939237,0,0.45908472,62.67193812,-0.45908472,117.3280619,0.941087641,0,90.80130019,6.912994882,95.32571708,2,17,5% -2/11/2018 2:00,93.92185542,255.6102287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639245617,4.461240093,-14.51666178,14.51666178,0,#DIV/0!,0,0,1,0.503142391,0,0.068777707,0.961238037,1,0.548041012,0.823544416,0,0,0.115824807,0.112206609,0.724496596,0.448993192,0.988604959,0.949842996,0,0,0,0,0,0,0.275313692,74.01929096,-0.275313692,105.980709,0.868388982,0,0,0,0,2,18,0% -2/11/2018 3:00,105.5686312,264.5063849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842520202,4.61650731,-3.474758879,3.474758879,0.875627546,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.066761258,86.17201448,-0.066761258,93.82798552,0,0,0,0,0,2,19,0% -2/11/2018 4:00,117.39044,273.6815011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048849689,4.776643296,-1.767464221,1.767464221,0.832407873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.154202067,98.87052172,0.154202067,81.12947828,0,0.725750132,0,0,0,2,20,0% -2/11/2018 5:00,129.0723419,284.1363566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252737339,4.959114948,-1.019495186,1.019495186,0.704497634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.372510942,111.8705572,0.372510942,68.12944284,0,0.915775755,0,0,0,2,21,0% -2/11/2018 6:00,140.1322972,297.5558401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445769975,5.193329118,-0.563633956,0.563633956,0.626540773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.57327979,124.9792536,0.57327979,55.02074639,0,0.962782552,0,0,0,2,22,0% -2/11/2018 7:00,149.582979,317.0431947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610715489,5.533447618,-0.228989163,0.228989163,0.569313143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742817081,137.9719438,0.742817081,42.02805621,0,0.982688678,0,0,0,2,23,0% -2/12/2018 8:00,155.2761246,346.4233923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.710079623,6.046228802,0.051513083,-0.051513083,0.521344434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869558223,150.4073427,0.869558223,29.59265732,0,0.992499537,0,0,0,2,0,0% -2/12/2018 9:00,154.4607955,21.12312151,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695849447,0.368668019,0.314249506,-0.314249506,0.476413859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944853599,160.8833177,0.944853599,19.11668232,0,0.997081749,0,0,0,2,1,0% -2/12/2018 10:00,147.632172,48.08215515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576667484,0.839191919,0.588018582,-0.588018582,0.42959659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.96355814,164.4845036,0.96355814,15.51549639,0,0.998108995,0,0,0,2,2,0% -2/12/2018 11:00,137.6685552,65.7982379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402769565,1.148395893,0.908485322,-0.908485322,0.37479355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924382272,157.5753905,0.924382272,22.42460947,0,0.995909824,0,0,0,2,3,0% -2/12/2018 12:00,126.3953695,78.31806264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206015356,1.366908057,1.342325449,-1.342325449,0.300602518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829980355,146.0967201,0.829980355,33.90327993,0,0.98975761,0,0,0,2,4,0% -2/12/2018 13:00,114.6348313,88.35400175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000755244,1.542068238,2.069752542,-2.069752542,0.176205159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686770507,133.375007,0.686770507,46.62499296,0,0.977195476,0,0,0,2,5,0% -2/12/2018 14:00,102.8098667,97.37778589,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794370677,1.699562982,3.905405968,-3.905405968,0,#DIV/0!,0,0,0.12104144,1,0.250669624,0,0.931798405,0.970560368,0.724496596,1,0,0,0.019582959,0.312029739,0.945967128,0.670463724,0.961238037,0.922476074,0,0,0,0,0,0,-0.504498007,120.2980346,0.504498007,59.70196539,0,0.950891581,0,0,0,2,6,0% -2/12/2018 15:00,91.21980573,106.3038279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592085953,1.855351804,37.84786815,-37.84786815,0,#DIV/0!,0,0,0.855953713,1,0.026415422,0,0.958824927,0.99758689,0.724496596,1,0,0,0.104016463,0.312029739,0.747686566,0.472183162,0.961238037,0.922476074,0,0,0,0,0,0,-0.29557191,107.1918347,0.29557191,72.80816525,0,0.880836428,0,0,0,2,7,0% -2/12/2018 16:00,80.07437205,115.8519486,102.7250168,379.2091238,37.36084826,37.00866541,0,37.00866541,36.23428084,0.774384568,53.59508279,27.56164574,26.03343704,1.126567422,24.90686962,1.397561439,2.021997947,-3.980337302,3.980337302,0.789168543,0.36369766,0.670498904,21.56554957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.82976898,0.816194262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.485774173,20.72962653,35.31554315,21.54582079,0,27.56164574,-0.072681916,94.16804228,0.072681916,85.83195772,0,0,35.31554315,21.54582079,49.41685195,2,8,40% -2/12/2018 17:00,69.98790076,126.7199222,284.3542334,642.8443292,64.36096502,157.9271341,93.3633073,64.56382678,62.42024446,2.143582323,70.88569658,0,70.88569658,1.940720562,68.94497602,1.221519305,2.21167987,-1.50663923,1.50663923,0.787804172,0.226340801,1.791676299,57.62646863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.00071324,1.406045441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29806338,55.39275358,61.29877662,56.79879902,93.3633073,0,0.145234706,81.64912926,-0.145234706,98.35087074,0.705729672,0,127.1880328,56.79879902,164.3617108,2,9,29% -2/12/2018 18:00,61.34324036,139.615988,440.5661829,753.9871753,78.98304487,340.8801364,260.9575477,79.92258863,76.60141465,3.321173982,109.202002,0,109.202002,2.381630219,106.8203717,1.070641518,2.436758679,-0.637343549,0.637343549,0.639145856,0.179276231,2.337569871,75.18428238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.63219344,1.725482986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693561414,72.269992,75.32575485,73.99547498,260.9575477,0,0.34610343,69.7508322,-0.34610343,110.2491678,0.905534515,0,311.6318212,73.99547498,360.0603797,2,10,16% -2/12/2018 19:00,54.9260642,155.0562438,550.3985899,805.6379505,87.45242842,504.5578071,415.593255,88.9645521,84.81541504,4.14913706,136.0875238,0,136.0875238,2.637013382,133.4505104,0.958640665,2.706241981,-0.122737247,0.122737247,0.551142995,0.158889267,2.582678308,83.06781229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52780305,1.910507219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.871141643,79.84794081,83.39894469,81.75844803,415.593255,0,0.515856105,58.9453046,-0.515856105,121.0546954,0.953073746,0,479.4899649,81.75844803,532.999234,2,11,11% -2/12/2018 20:00,51.61996912,172.8037306,604.1081075,825.9944336,91.26914035,624.060207,530.9891458,93.07106111,88.51703902,4.554022091,149.2251061,0,149.2251061,2.752101329,146.4730048,0.900938421,3.015994059,0.279805023,-0.279805023,0.482304213,0.151080807,2.552611855,82.1007718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.08594482,1.993888044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849358599,78.91838471,86.93530342,80.91227275,530.9891458,0,0.642848334,49.99545799,-0.642848334,130.004542,0.972221156,0,603.1741849,80.91227275,656.1296491,2,12,9% -2/12/2018 21:00,52.03967854,191.3726053,597.4109195,823.5985952,90.80256424,684.2459733,591.6779055,92.56806776,88.0645319,4.503535858,147.5872263,0,147.5872263,2.738032338,144.849194,0.908263732,3.34008206,0.667291496,-0.667291496,0.416040123,0.151993479,2.27337687,73.11961481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.65097776,1.983695108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647053803,70.285355,86.29803156,72.26905011,591.6779055,0,0.718405676,44.07699351,-0.718405676,135.9230065,0.980401441,0,666.3799026,72.26905011,713.6785505,2,13,7% -2/12/2018 22:00,56.09933218,208.698862,530.8353469,797.5181167,86.01580262,675.4994461,588.0756762,87.42376987,83.4221088,4.001661071,131.3008695,0,131.3008695,2.593693813,128.7071757,0.979118055,3.642482286,1.117951319,-1.117951319,0.338972754,0.162038574,1.785079645,57.41429755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1885041,1.879122339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.293284126,55.18880667,81.48178822,57.06792901,588.0756762,0,0.737382216,42.4911046,-0.737382216,137.5088954,0.982192561,0,659.0853424,57.06792901,696.4351606,2,14,6% -2/12/2018 23:00,63.08060663,223.5683966,409.7709404,736.3543564,76.39641878,591.5362998,514.3544885,77.18181132,74.09278488,3.089026437,101.6573426,0,101.6573426,2.303633899,99.35370867,1.10096428,3.902004623,1.763580922,-1.763580922,0.22856359,0.186436888,1.150315738,36.99810831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.22080308,1.668974918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.833399836,35.563989,72.05420292,37.23296391,514.3544885,0,0.698514898,45.6920248,-0.698514898,134.3079752,0.978419565,0,575.308698,37.23296391,599.6769282,2,15,4% -2/12/2018 0:00,72.10124693,235.9711967,245.4999991,603.8386517,59.9186987,425.0197003,365.0570888,59.96261155,58.11192886,1.850682693,61.33108693,0,61.33108693,1.806769842,59.52431709,1.258404154,4.118474322,3.003939992,-3.003939992,0.016449696,0.24406802,0.474705425,15.26815826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.85939641,1.3089986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343922464,14.67633447,56.20331888,15.98533307,365.0570888,0,0.604560652,52.80276667,-0.604560652,127.1972333,0.967295312,0,409.3213295,15.98533307,419.7834103,2,16,3% -2/12/2018 1:00,82.40754684,246.5022712,65.06978635,280.1218663,28.05845257,157.2726574,129.5697472,27.70291023,27.2123867,0.490523535,16.62298892,0,16.62298892,0.84606587,15.77692305,1.438283021,4.302276245,7.488214144,-7.488214144,0,0.431205543,0.211516467,6.803096675,0.428704083,1,0.132757717,0,0.947436557,0.98619852,0.724496596,1,26.38461605,0.612971842,0.060945894,0.312029739,0.841751011,0.566247607,0.961238037,0.922476074,0.144752784,6.539395292,26.52936883,7.152367135,74.02266756,0,0.462547779,62.44836637,-0.462547779,117.5516336,0.941903059,0,96.25154584,7.152367135,100.9326271,2,17,5% -2/12/2018 2:00,93.71858491,255.8757605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635697877,4.465874497,-15.30547616,15.30547616,0,#DIV/0!,0,0,1,0.534351857,0,0.06524336,0.961238037,1,0.556196858,0.831700262,0,0,0.115824807,0.121412256,0.724496596,0.448993192,0.987539015,0.948777052,0,0,0,0,0,0,0.278562247,73.82558614,-0.278562247,106.1744139,0.870506905,0,0,0,0,2,18,0% -2/12/2018 3:00,105.3749245,264.7888207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839139381,4.621436744,-3.51622106,3.51622106,0.868537095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069710613,86.00263406,-0.069710613,93.99736594,0,0,0,0,0,2,19,0% -2/12/2018 4:00,117.1975235,273.9886466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04548266,4.782003996,-1.777913019,1.777913019,0.834194722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.151565749,98.71767491,0.151565749,81.28232509,0,0.720110164,0,0,0,2,20,0% -2/12/2018 5:00,128.8689511,284.4777601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249187501,4.965073563,-1.022756766,1.022756766,0.705055397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370179798,111.7267063,0.370179798,68.27329368,0,0.914930501,0,0,0,2,21,0% -2/12/2018 6:00,139.9024572,297.9341742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44175851,5.199932293,-0.564129764,0.564129764,0.626625561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571224826,124.8356808,0.571224826,55.1643192,0,0.96246879,0,0,0,2,22,0% -2/12/2018 7:00,149.305962,317.4127161,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60588063,5.539896984,-0.228002147,0.228002147,0.569144353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740990188,137.8158328,0.740990188,42.18416717,0,0.982522723,0,0,0,2,23,0% -2/13/2018 8:00,154.948127,346.5836509,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704354987,6.049025843,0.053590321,-0.053590321,0.520989205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867895514,150.214998,0.867895514,29.78500195,0,0.992389378,0,0,0,2,0,0% -2/13/2018 9:00,154.139106,20.9074039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690234906,0.364903036,0.317420337,-0.317420337,0.475871615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943279829,160.609864,0.943279829,19.39013598,0,0.99699346,0,0,0,2,1,0% -2/13/2018 10:00,147.3620753,47.71281025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571953406,0.832745634,0.592613864,-0.592613864,0.42881075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961991901,164.1524931,0.961991901,15.84750686,0,0.99802451,0,0,0,2,2,0% -2/13/2018 11:00,137.4395678,65.43526355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39877298,1.142060796,0.915360703,-0.915360703,0.37361779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922741615,157.3302367,0.922741615,22.6697633,0,0.99581365,0,0,0,2,3,0% -2/13/2018 12:00,126.1880741,77.99079976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20239737,1.361196242,1.35365135,-1.35365135,0.298665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828188436,145.9130938,0.828188436,34.08690619,0,0.989627266,0,0,0,2,4,0% -2/13/2018 13:00,114.434882,88.0576594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99726547,1.536896088,2.092518643,-2.092518643,0.172311926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684760882,133.2168048,0.684760882,46.78319519,0,0.97698181,0,0,0,2,5,0% -2/13/2018 14:00,102.6069311,97.10352499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790828783,1.694776226,3.98019603,-3.98019603,0,#DIV/0!,0,0,0.130812629,1,0.246149056,0,0.932453941,0.971215904,0.724496596,1,0,0,0.021071851,0.312029739,0.941981814,0.66647841,0.961238037,0.922476074,0,0,0,0,0,0,-0.502219209,120.1469306,0.502219209,59.85306941,0,0.95044188,0,0,0,2,6,0% -2/13/2018 15:00,91.00557915,106.044985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588346994,1.850834144,46.06504278,-46.06504278,0,#DIV/0!,0,0,0.880202686,1,0.021705026,0,0.959267541,0.998029504,0.724496596,1,0,0,0.106085649,0.312029739,0.743541833,0.468038429,0.961238037,0.922476074,0,0,0,0,0,0,-0.292990979,107.0371067,0.292990979,72.96289328,0,0.879346282,0,0,0,2,7,0% -2/13/2018 16:00,79.84334756,115.6059563,106.6680292,388.3883376,38.17959519,37.83244819,0,37.83244819,37.02833953,0.804108661,54.13084044,27.11668614,27.01415431,1.151255663,25.86289864,1.393529301,2.017704573,-3.905101876,3.905101876,0.802034559,0.357929133,0.701900144,22.57552139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.59304839,0.834080809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.508524265,21.70044987,36.10157266,22.53453068,0,27.11668614,-0.069818487,94.00356179,0.069818487,85.99643821,0,0,36.10157266,22.53453068,50.8499723,2,8,41% -2/13/2018 17:00,69.7300684,126.4908367,289.1448179,647.4798898,64.82967907,161.1564271,96.10190625,65.05452082,62.87482505,2.179695772,72.06136272,0,72.06136272,1.95485402,70.1065087,1.217019281,2.207681575,-1.494850522,1.494850522,0.785788185,0.224211797,1.817467391,58.4559988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.4376734,1.416285083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316748938,56.19012953,61.75442234,57.60641461,96.10190625,0,0.148424542,81.4643625,-0.148424542,98.5356375,0.713128488,0,130.2874294,57.60641461,167.9896756,2,9,29% -2/13/2018 18:00,61.05489716,139.4189348,445.6987596,756.9763893,79.343842,344.9289761,264.6177782,80.31119793,76.95133241,3.359865514,110.457334,0,110.457334,2.392509584,108.0648244,1.06560898,2.433319452,-0.635616524,0.635616524,0.638850517,0.178021231,2.36246522,75.9850024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.9685477,1.733365049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71159801,73.03967453,75.68014571,74.77303958,264.6177782,0,0.349572037,69.53885879,-0.349572037,110.4611412,0.906967964,0,315.6799934,74.77303958,364.6174523,2,10,16% -2/13/2018 19:00,54.60836883,154.9211633,555.7149561,807.9627497,87.77354872,509.0943359,419.7782695,89.31606645,85.12685238,4.189214074,137.3862213,0,137.3862213,2.646696344,134.739525,0.953095835,2.70388438,-0.124607265,0.124607265,0.551462787,0.157947069,2.606981119,83.84947423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.82716846,1.917522491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888748946,80.599304,83.71591741,82.51682649,419.7782695,0,0.519551514,58.69782728,-0.519551514,121.3021727,0.953763152,0,484.0849629,82.51682649,538.0905755,2,11,11% -2/13/2018 20:00,51.28471631,172.7669381,609.495164,828.0734446,91.57595357,628.9285292,535.5192965,93.40923269,88.81460069,4.594631998,150.5405119,0,150.5405119,2.761352879,147.779159,0.895087155,3.015351908,0.27568458,-0.27568458,0.48300885,0.15024886,2.576146667,82.85773226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.37197241,2.000590761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.866409491,79.6460039,87.2383819,81.64659466,535.5192965,0,0.646705072,49.7063634,-0.646705072,130.2936366,0.972685004,0,608.129971,81.64659466,661.5660343,2,12,9% -2/13/2018 21:00,51.70837055,191.4484544,602.7642363,825.6969541,91.10924987,689.3461886,596.4403273,92.90586125,88.36196982,4.543891422,148.8944477,0,148.8944477,2.747280041,146.1471677,0.902481317,3.341405877,0.660824854,-0.660824854,0.417145984,0.151152382,2.29578186,73.84023631,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.93688641,1.990395037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.663286142,70.97804379,86.60017255,72.96843882,596.4403273,0,0.722347738,43.75134421,-0.722347738,136.2486558,0.98078126,0,671.5776685,72.96843882,719.3340524,2,13,7% -2/13/2018 22:00,55.79167297,208.8641693,536.0519387,799.9137133,86.33758941,680.773485,592.9983065,87.77517848,83.73419254,4.040985943,132.5753956,0,132.5753956,2.603396873,129.9719987,0.973748389,3.645367443,1.107883346,-1.107883346,0.340694479,0.161061985,1.805850084,58.08234627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48849085,1.886152172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308332238,55.8309605,81.79682309,57.71711267,592.9983065,0,0.741327842,42.15534954,-0.741327842,137.8446505,0.982553457,0,664.4493593,57.71711267,702.2240552,2,14,6% -2/13/2018 23:00,62.8050654,223.7859734,414.7397854,739.5233849,76.76333028,597.0027744,519.427658,77.57511634,74.44863265,3.126483689,102.8731603,0,102.8731603,2.314697635,100.5584627,1.096155178,3.905802055,1.746045278,-1.746045278,0.231562361,0.185087935,1.168651142,37.58783794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.56285749,1.676990557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.846683774,36.13085956,72.40954127,37.80785011,519.427658,0,0.702381654,45.38160189,-0.702381654,134.6183981,0.97881363,0,580.832413,37.80785011,605.5768947,2,15,4% -2/13/2018 0:00,71.85666682,236.214663,250.048413,608.9744369,60.41668299,430.9000779,370.4202102,60.47986765,58.59489709,1.884970558,62.4489186,0,62.4489186,1.821785906,60.62713269,1.254135426,4.122723611,2.963783247,-2.963783247,0.023316904,0.241619942,0.488778553,15.72079842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.32364385,1.319877687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.354118397,15.11142941,56.67776224,16.43130709,370.4202102,0,0.608268899,52.53556193,-0.608268899,127.4644381,0.967799513,0,415.1702612,16.43130709,425.924223,2,16,3% -2/13/2018 1:00,82.18981017,246.7599473,68.44782485,290.414028,28.98294828,163.9586002,135.3336062,28.62499407,28.10900546,0.515988616,17.46991042,0,17.46991042,0.873942826,16.5959676,1.434482799,4.306773543,7.278880892,-7.278880892,0,0.423431254,0.218485707,7.027251364,0.416776399,1,0.136529074,0,0.946984442,0.985746405,0.724496596,1,27.25424808,0.633168603,0.05953128,0.312029739,0.845091582,0.569588178,0.961238037,0.922476074,0.149534129,6.754861306,27.40378221,7.388029908,78.92975314,0,0.466002304,62.22489126,-0.466002304,117.7751087,0.942704393,0,101.8112072,7.388029908,106.6465251,2,17,5% -2/13/2018 2:00,93.51533964,256.1459206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632150578,4.47058968,-16.18477216,16.18477216,0,#DIV/0!,0,0,1,0.564822465,0,0.061708029,0.961238037,1,0.564454441,0.839957846,0,0,0.115824807,0.130733423,0.724496596,0.448993192,0.986439855,0.947677892,0,0,0,0,0,0,0.281796556,73.63254192,-0.281796556,106.3674581,0.872567029,0,0,0,0,2,18,0% -2/13/2018 3:00,105.181131,265.0756335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835757047,4.626442571,-3.558568472,3.558568472,0.861295261,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.072645597,85.83404417,-0.072645597,94.16595583,0,0,0,0,0,2,19,0% -2/13/2018 4:00,117.0042161,274.3000337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042108809,4.787438727,-1.788403828,1.788403828,0.835988756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148940599,98.56553772,0.148940599,81.43446228,0,0.714295697,0,0,0,2,20,0% -2/13/2018 5:00,128.6646574,284.8232676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245621902,4.971103806,-1.025968706,1.025968706,0.705604672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367853518,111.5832989,0.367853518,68.41670108,0,0.91407633,0,0,0,2,21,0% -2/13/2018 6:00,139.670986,298.3161851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437718575,5.206599643,-0.564556686,0.564556686,0.626698569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569165751,124.6920715,0.569165751,55.30792847,0,0.962152128,0,0,0,2,22,0% -2/13/2018 7:00,149.0264963,317.7850055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601003033,5.54639466,-0.22693733,0.22693733,0.568962259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739148163,137.6589026,0.739148163,42.34109742,0,0.982354564,0,0,0,2,23,0% -2/14/2018 8:00,154.6169452,346.7484906,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698574774,6.051902837,0.055755853,-0.055755853,0.520618877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866205362,150.0206282,0.866205362,29.97937183,0,0.992276968,0,0,0,2,0,0% -2/14/2018 9:00,153.8127645,20.70078849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.684539173,0.361296917,0.320696893,-0.320696893,0.475311291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941665865,160.3332253,0.941665865,19.66677471,0,0.99690261,0,0,0,2,1,0% -2/14/2018 10:00,147.0862112,47.34932923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567138669,0.826401694,0.597346475,-0.597346475,0.428001426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960373158,163.8163291,0.960373158,16.18367086,0,0.997936904,0,0,0,2,2,0% -2/14/2018 11:00,137.2047825,65.07451974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394675205,1.135764629,0.922436132,-0.922436132,0.372407821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921037432,157.0782217,0.921037432,22.92177825,0,0.99571339,0,0,0,2,3,0% -2/14/2018 12:00,125.9753072,77.66399488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198683887,1.355492421,1.365323982,-1.365323982,0.296669538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82632402,145.7229571,0.82632402,34.27704289,0,0.989491049,0,0,0,2,4,0% -2/14/2018 13:00,114.2298085,87.76097946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993686261,1.531718046,2.116101628,-2.116101628,0.168278999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682672463,133.0528333,0.682672463,46.94716667,0,0.976758434,0,0,0,2,5,0% -2/14/2018 14:00,102.399161,96.82855045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787202511,1.689977015,4.058974152,-4.058974152,0,#DIV/0!,0,0,0.140872635,1,0.241557088,0,0.933115364,0.971877327,0.724496596,1,0,0,0.02259126,0.312029739,0.937932755,0.662429351,0.961238037,0.922476074,0,0,0,0,0,0,-0.499858424,119.9906339,0.499858424,60.00936613,0,0.949971677,0,0,0,2,6,0% -2/14/2018 15:00,90.17882918,105.7852444,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573917485,1.846300815,259.9073142,-259.9073142,0,#DIV/0!,0,0,0.977736523,1,0.003847506,0,0.960897035,0.999658998,0.724496596,1,0,0,0.114073262,0.312029739,0.727865424,0.45236202,0.961238037,0.922476074,0,0,0,0,0,0,-0.280383252,106.2830797,0.280383252,73.71692032,0,0.871672658,0,0,0,2,7,0% -2/14/2018 16:00,79.60782004,115.3590065,110.7136699,397.566982,38.99858944,38.65724449,0,38.65724449,37.82263808,0.834606409,54.60746842,26.58770599,28.01976243,1.175951361,26.84381107,1.38941857,2.013394485,-3.831450989,3.831450989,0.814629602,0.352247283,0.73439173,23.6205625,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.35655838,0.851972758,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.532064309,22.70498312,36.88862269,23.55695588,0,26.58770599,-0.066876042,93.83457686,0.066876042,86.16542314,0,0,36.88862269,23.55695588,52.30617917,2,8,42% -2/14/2018 17:00,69.4678522,126.260905,294.0143223,652.1035499,65.30016696,164.4626748,98.91514468,65.54753014,63.33112599,2.216404154,73.25621739,0,73.25621739,1.969040966,71.28717642,1.212442745,2.203668509,-1.482979668,1.482979668,0.783758149,0.222098592,1.843572082,59.29561541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.87628722,1.426563477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335661698,56.99720095,62.21194892,58.42376442,98.91514468,0,0.151686254,81.2753399,-0.151686254,98.7246601,0.720372241,0,133.4676733,58.42376442,171.7048587,2,9,29% -2/14/2018 18:00,60.76221148,139.2215187,450.8961781,759.9566651,79.70653556,349.0453189,268.3431836,80.70213527,77.30308942,3.39904585,111.7284448,0,111.7284448,2.403446133,109.3249987,1.060500651,2.429873891,-0.633778946,0.633778946,0.638536273,0.176773589,2.387603717,76.79354287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.30666992,1.741288542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729810765,73.81687439,76.03648068,75.55816293,268.3431836,0,0.35310327,69.32275711,-0.35310327,110.6772429,0.908398366,0,319.7989902,75.55816293,369.2502967,2,10,15% -2/14/2018 19:00,54.28642744,154.7869519,561.0823128,810.2776756,88.09603576,513.6862433,424.0169526,89.66929072,85.43961524,4.229675476,138.6973233,0,138.6973233,2.656420518,136.0409027,0.947476898,2.701541949,-0.126381012,0.126381012,0.551766115,0.157010894,2.631466029,84.6369931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12780802,1.924567622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.90648818,81.35629709,84.0342962,83.28086472,424.0169526,0,0.523298328,58.446242,-0.523298328,121.553758,0.954452208,0,488.7382127,83.28086472,543.243873,2,11,11% -2/14/2018 20:00,50.94560738,172.7331596,614.9196296,830.1399896,91.8833913,633.837997,540.089705,93.74829195,89.11276804,4.635523911,151.8650067,0,151.8650067,2.770623261,149.0943835,0.889168588,3.014762362,0.271656898,-0.271656898,0.483697624,0.149423415,2.599811745,83.61888252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.6585822,2.007307121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.883554759,80.37765048,87.54213696,82.3849576,540.089705,0,0.650600756,49.41308836,-0.650600756,130.5869116,0.973147953,0,613.1293278,82.3849576,667.0486348,2,12,9% -2/14/2018 21:00,51.37406753,191.5295178,608.1424881,827.7783938,91.4156873,694.4722135,601.2286115,93.243602,88.65916704,4.584434955,150.2077073,0,150.2077073,2.75652026,147.4511871,0.896646628,3.342820701,0.654465072,-0.654465072,0.418233571,0.150319521,2.318277339,74.56376824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22256368,1.997089545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67958404,71.67353021,86.90214772,73.67061975,601.2286115,0,0.726315903,43.42157421,-0.726315903,136.5784258,0.981159431,0,676.8032701,73.67061975,725.0192173,2,13,7% -2/14/2018 22:00,55.48212779,209.0357268,541.2830902,802.2842828,86.65804857,686.0576351,597.9322259,88.12540925,84.04498867,4.080420573,133.8534119,0,133.8534119,2.613059899,131.240352,0.968345806,3.648361686,1.097970395,-1.097970395,0.342389694,0.160097461,1.82668773,58.7525566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.78723992,1.893153001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.323429042,56.47519216,82.11066896,58.36834516,597.9322259,0,0.745287224,41.81622479,-0.745287224,138.1837752,0.982911771,0,669.825292,58.36834516,708.0262065,2,14,6% -2/14/2018 23:00,62.52859114,224.0096726,419.7161939,742.6502214,77.12724368,602.4631706,524.4976,77.96557067,74.80157271,3.163997959,104.0907215,0,104.0907215,2.325670966,101.7650505,1.091329792,3.909706344,1.728815203,-1.728815203,0.234508878,0.183760467,1.18705573,38.17979276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.90211691,1.684940698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860017836,36.69986904,72.76213474,38.38480973,524.4976,0,0.706251186,45.06928566,-0.706251186,134.9307143,0.979203659,0,586.3521036,38.38480973,611.4741939,2,15,4% -2/14/2018 0:00,71.61176739,236.4636659,254.6041054,614.0235894,60.90781571,436.7552678,375.7647342,60.99053363,59.07122034,1.919313292,63.56830844,0,63.56830844,1.836595369,61.73171307,1.249861124,4.127069532,2.924611523,-2.924611523,0.030015663,0.239225584,0.502976647,16.17745794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78150387,1.330607093,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364404869,15.55038791,57.14590874,16.88099501,375.7647342,0,0.61197117,52.26783177,-0.61197117,127.7321682,0.968296805,0,420.9977001,16.88099501,432.0459738,2,16,3% -2/14/2018 1:00,81.97195677,247.0225784,71.86954426,300.5716215,29.89238256,170.6350919,141.102292,29.53279992,28.99101694,0.541782982,18.32696871,0,18.32696871,0.901365625,17.42560308,1.43068054,4.311357319,7.080616848,-7.080616848,0,0.41592559,0.225341406,7.247754235,0.405010917,1,0.140302713,0,0.946528807,0.985290771,0.724496596,1,28.10945091,0.653036327,0.058122615,0.312029739,0.848433903,0.572930499,0.961238037,0.922476074,0.154248983,6.966817052,28.2636999,7.619853379,83.95432338,0,0.469446488,62.00162716,-0.469446488,117.9983728,0.943491588,0,107.4738978,7.619853379,112.4609394,2,17,5% -2/14/2018 2:00,93.31217745,256.4206077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.628604729,4.475383874,-17.1708702,17.1708702,0,#DIV/0!,0,0,1,0.594574668,0,0.058172458,0.961238037,1,0.572811966,0.848315371,0,0,0.115824807,0.140168879,0.724496596,0.448993192,0.985306985,0.946545022,0,0,0,0,0,0,0.285015293,73.44023728,-0.285015293,106.5597627,0.874570817,0,0,0,0,2,18,0% -2/14/2018 3:00,104.9872916,265.3667073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832373911,4.631522767,-3.601823706,3.601823706,0.85389818,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075565262,85.66629842,-0.075565262,94.33370158,0,0,0,0,0,2,19,0% -2/14/2018 4:00,116.8105447,274.6155267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038728605,4.792945117,-1.798935436,1.798935436,0.837789767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146327192,98.41414148,0.146327192,81.58585852,0,0.70830001,0,0,0,2,20,0% -2/14/2018 5:00,128.4594786,285.1727108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242040857,4.977202741,-1.029130084,1.029130084,0.706145299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365532325,111.4403465,0.365532325,68.55965347,0,0.913213192,0,0,0,2,21,0% -2/14/2018 6:00,139.437903,298.7016537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.433650509,5.213327339,-0.564914355,0.564914355,0.626759734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567102491,124.5484198,0.567102491,55.45158021,0,0.961832516,0,0,0,2,22,0% -2/14/2018 7:00,148.7446243,318.1597901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596083438,5.552935885,-0.225794644,0.225794644,0.568766848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737290699,137.5011332,0.737290699,42.49886675,0,0.982184144,0,0,0,2,23,0% -2/15/2018 8:00,154.2826704,346.9176052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.692740576,6.054854443,0.058009633,-0.058009633,0.520233458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864487317,149.824215,0.864487317,30.17578497,0,0.992162252,0,0,0,2,0,0% -2/15/2018 9:00,153.4819188,20.50307992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.678764825,0.357846251,0.324079186,-0.324079186,0.474732885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940011209,160.0534388,0.940011209,19.94656117,0,0.996809145,0,0,0,2,1,0% -2/15/2018 10:00,146.8047173,46.99182125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.562225674,0.820162002,0.602216765,-0.602216765,0.427168557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958701463,163.4761572,0.958701463,16.52384281,0,0.997846121,0,0,0,2,2,0% -2/15/2018 11:00,136.9643052,64.71618152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390478084,1.129510447,0.929713052,-0.929713052,0.371163394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919269422,156.819509,0.919269422,23.18049099,0,0.995608982,0,0,0,2,3,0% -2/15/2018 12:00,125.7571585,77.3377991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194876474,1.349799231,1.377348597,-1.377348597,0.294613207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824387038,145.5263956,0.824387038,34.47360445,0,0.989348877,0,0,0,2,4,0% -2/15/2018 13:00,114.0196964,87.46408189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990019115,1.526536206,2.140525667,-2.140525667,0.164102242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680505479,132.8831556,0.680505479,47.1168444,0,0.976525206,0,0,0,2,5,0% -2/15/2018 14:00,102.1866447,96.55295654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783493402,1.685166994,4.142000138,-4.142000138,0,#DIV/0!,0,0,0.151226091,1,0.236895954,0,0.933782133,0.972544096,0.724496596,1,0,0,0.024140878,0.312029739,0.933821863,0.658318459,0.961238037,0.922476074,0,0,0,0,0,0,-0.497416235,119.8292062,0.497416235,60.17079377,0,0.949480563,0,0,0,2,6,0% -2/15/2018 15:00,89.99346212,105.5246787,0.00134681,0.752284014,0.001260969,0.001233099,0,0.001233099,0.001222946,1.02E-05,0.209688431,0.209323858,0.000364573,3.80E-05,0.00032655,1.570682219,1.841753085,-7132.440047,7132.440047,0,0.936263261,9.51E-06,0.000305737,1,0.999179823,0,0.000140204,0.961238037,1,0.724099103,0.999602507,0.001175542,2.75E-05,0.115824807,0.311578003,0.724496596,0.448993192,0.961309511,0.922547548,6.89E-06,0.000293898,0.001182429,0.000321439,0,0.000171683,-0.278251105,106.1558529,0.278251105,73.84414709,0,0.870306195,0.001182429,0.000470855,0.001490594,2,7,26% -2/15/2018 16:00,79.36789038,115.1111517,114.8600895,406.7330876,39.81694937,39.48218531,0,39.48218531,38.61632143,0.865863872,55.02209403,25.9723076,29.04978643,1.200627932,27.8491585,1.385231007,2.009068603,-3.759401323,3.759401323,0.826950821,0.346656089,0.767968759,24.70051516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.11947701,0.86985085,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556390752,23.7430747,37.67586776,24.61292555,0,25.9723076,-0.063855901,93.66116459,0.063855901,86.33883541,0,0,37.67586776,24.61292555,53.78453527,2,8,43% -2/15/2018 17:00,69.20136012,126.0301589,298.9603205,656.7114844,65.77207349,167.8447049,101.8022129,66.04249198,63.7888028,2.253689177,74.46966163,0,74.46966163,1.983270689,72.48639094,1.207791581,2.199641229,-1.471041913,1.471041913,0.781716673,0.220002686,1.869975136,60.14482837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.31622358,1.436872863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35479062,57.81349675,62.6710142,59.25036961,101.8022129,0,0.155018171,81.08214991,-0.155018171,98.91785009,0.727457166,0,136.7277635,59.25036961,175.5059454,2,9,28% -2/15/2018 18:00,60.46529605,139.0237524,456.1557071,762.9259487,80.0708705,353.2271255,272.1319927,81.09513272,77.65643832,3.438694401,113.0146646,0,113.0146646,2.414432176,110.6002324,1.055318499,2.426422218,-0.63183584,0.63183584,0.638203982,0.175534076,2.412971446,77.60945624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64632232,1.749247892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.748189599,74.60116136,76.39451192,76.35040925,272.1319927,0,0.356695159,69.10262741,-0.356695159,110.8973726,0.909824282,0,323.9868069,76.35040925,373.9566227,2,10,15% -2/15/2018 19:00,53.96035441,154.6536164,566.4977825,812.5813685,88.41967225,518.3310397,428.3070472,90.02399248,85.7534929,4.270499574,140.0201254,0,140.0201254,2.666179352,137.3539461,0.94178585,2.699214807,-0.12806021,0.12806021,0.552053275,0.156081233,2.656119855,85.42994487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.42951917,1.931637865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924349793,82.1185125,84.35386896,84.05015036,428.3070472,0,0.527094349,58.19065892,-0.527094349,121.8093411,0.955140322,0,493.4472001,84.05015036,548.4563425,2,11,11% -2/15/2018 20:00,50.60275917,172.7024194,620.378606,832.193043,92.19125706,638.7858757,544.6978492,94.08802649,89.41135051,4.676675981,153.1978821,0,153.1978821,2.77990655,150.4179755,0.883184758,3.014225845,0.267721584,-0.267721584,0.484370602,0.14860483,2.623594747,84.38382561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.94559104,2.014032832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.900785463,81.11294287,87.8463765,83.1269757,544.6978492,0,0.654533048,49.11574732,-0.654533048,130.8842527,0.973609663,0,618.169466,83.1269757,672.574409,2,12,9% -2/15/2018 21:00,51.03689301,191.6158331,613.5428675,829.842073,91.72169729,699.6212217,606.0401267,93.581095,88.9559497,4.625145297,151.5263192,0,151.5263192,2.76574759,148.7605716,0.890761823,3.344327186,0.648212312,-0.648212312,0.419302856,0.149495173,2.340852063,75.28984897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50784246,2.003774714,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.695939351,72.37146662,87.20378181,74.37524134,606.0401267,0,0.730307786,43.08779699,-0.730307786,136.912203,0.981535716,0,682.0538112,74.37524134,730.7309191,2,13,7% -2/15/2018 22:00,55.1708224,209.213546,546.5261831,804.6291152,86.97702096,691.3491161,602.874828,88.47428809,84.35434286,4.119945222,135.1342787,0,135.1342787,2.622678093,132.5116006,0.962912502,3.651465217,1.088212469,-1.088212469,0.344058397,0.159145204,1.847582668,59.42460962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.08460293,1.90012135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338567353,57.12119509,82.42317029,59.02131644,602.874828,0,0.749258033,41.47385278,-0.749258033,138.5261472,0.983267315,0,675.2102839,59.02131644,713.8385551,2,14,6% -2/15/2018 23:00,62.2512995,224.2394621,424.6978044,745.7343471,77.48803255,607.9148886,529.5618547,78.35303392,75.15148247,3.201551442,105.3094497,0,105.3094497,2.336550082,102.9728996,1.08649014,3.913716927,1.71188809,-1.71188809,0.237403585,0.182454517,1.205520968,38.77369828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23846348,1.69282258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.873395838,37.27075362,73.11185932,38.9635762,529.5618547,0,0.710121314,44.75521335,-0.710121314,135.2447867,0.979589495,0,591.8650894,38.9635762,617.3659708,2,15,4% -2/15/2018 0:00,71.36664602,236.7181391,259.1649185,618.986119,61.39205325,442.5829552,381.0884042,61.49455095,59.54085633,1.953694627,64.68873191,0,64.68873191,1.851196918,62.83753499,1.245582949,4.131510926,2.88639936,-2.88639936,0.036550328,0.236884118,0.517291946,16.63788715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23293585,1.341185865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374776254,15.99296998,57.6077121,17.33415585,381.0884042,0,0.615665509,51.99970669,-0.615665509,128.0002933,0.96878707,0,426.8012306,17.33415585,438.1460889,2,16,3% -2/15/2018 1:00,81.75407035,247.2900767,75.33136607,310.5863906,30.78634666,177.2955496,146.8696452,30.42590438,29.85802472,0.567879658,19.1932838,0,19.1932838,0.928321941,18.26496186,1.426877704,4.316026045,6.892615247,-6.892615247,0,0.408678991,0.232080485,7.464506179,0.393407408,1,0.144077527,0,0.94606979,0.984831753,0.724496596,1,28.94981854,0.672566086,0.05672024,0.312029739,0.851776956,0.576273552,0.961238037,0.922476074,0.158895908,7.175167266,29.10871444,7.847733352,89.09003883,0,0.47287856,61.77868706,-0.47287856,118.2213129,0.944264608,0,113.233285,7.847733352,118.3694695,2,17,5% -2/15/2018 2:00,93.10915521,256.6997196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625061322,4.480255297,-18.28427629,18.28427629,0,#DIV/0!,0,0,1,0.623628467,0,0.054637367,0.961238037,1,0.581267622,0.856771027,0,0,0.115824807,0.149717319,0.724496596,0.448993192,0.984139928,0.945377965,0,0,0,0,0,0,0.28821716,73.24874996,-0.28821716,106.75125,0.876519698,0,0,0,0,2,18,0% -2/15/2018 3:00,104.7934462,265.6619258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82899067,4.636675302,-3.646010419,3.646010419,0.846341807,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.07846868,85.49944916,-0.07846868,94.50055084,0,0,0,0,0,2,19,0% -2/15/2018 4:00,116.6165357,274.9349896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03534251,4.798520797,-1.80950668,1.80950668,0.839597557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143726083,98.26351642,0.143726083,81.73648358,0,0.702116032,0,0,0,2,20,0% -2/15/2018 5:00,128.2534329,285.5259226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238444682,4.983367449,-1.032240018,1.032240018,0.706677129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.363216432,111.29786,0.363216432,68.70213997,0,0.91234103,0,0,0,2,21,0% -2/15/2018 6:00,139.2032286,299.0903639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429554668,5.22011161,-0.565202437,0.565202437,0.626808999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565034966,124.4047194,0.565034966,55.59528055,0,0.961509901,0,0,0,2,22,0% -2/15/2018 7:00,148.4603897,318.5368052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591122608,5.559516039,-0.22457404,0.22457404,0.568558112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735417498,137.3425059,0.735417498,42.65749408,0,0.982011408,0,0,0,2,23,0% -2/16/2018 8:00,153.9453938,347.0906996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68685399,6.057875512,0.060351604,-0.060351604,0.519832957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862740945,149.6257432,0.862740945,30.37425678,0,0.992045176,0,0,0,2,0,0% -2/16/2018 9:00,153.1467158,20.31407644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.672914429,0.354547518,0.327567226,-0.327567226,0.474136395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938315388,159.7705454,0.938315388,20.22945459,0,0.996713013,0,0,0,2,1,0% -2/16/2018 10:00,146.5177334,46.64037918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.55721686,0.814028181,0.607225108,-0.607225108,0.42631208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.956976403,163.1321203,0.956976403,16.86787973,0,0.997752108,0,0,0,2,2,0% -2/16/2018 11:00,136.7182449,64.36041403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386183522,1.123301133,0.937192977,-0.937192977,0.369884251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917437325,156.5542658,0.917437325,23.44573422,0,0.995500364,0,0,0,2,3,0% -2/16/2018 12:00,125.5337208,77.01235814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19097675,1.344119214,1.389730697,-1.389730697,0.292495743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822377468,145.3235005,0.822377468,34.67649951,0,0.989200669,0,0,0,2,4,0% -2/16/2018 13:00,113.8046344,87.16708338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986265574,1.521352604,2.165816337,-2.165816337,0.159777283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678260213,132.7078391,0.678260213,47.29216093,0,0.97628198,0,0,0,2,5,0% -2/16/2018 14:00,101.9694728,96.27683525,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779703036,1.680347769,4.229559151,-4.229559151,0,#DIV/0!,0,0,0.161877863,1,0.232167883,0,0.93445371,0.973215673,0.724496596,1,0,0,0.025720405,0.312029739,0.929651046,0.654147642,0.961238037,0.922476074,0,0,0,0,0,0,-0.494893273,119.6627129,0.494893273,60.33728712,0,0.948968115,0,0,0,2,6,0% -2/16/2018 15:00,89.80314844,105.263359,0.056440208,1.27341709,0.052065128,0.050920642,0,0.050920642,0.050495172,0.00042547,0.366757994,0.351503457,0.015254538,0.001569956,0.013684582,1.567360619,1.837192197,-237.6522626,237.6522626,0,0.922482913,0.000392489,0.012623793,1,0.975106472,0,0.004207804,0.961238037,1,0.712633781,0.988137185,0.04853788,0.001129571,0.115824807,0.298549518,0.724496596,0.448993192,0.963352972,0.924591009,0.000284357,0.012148988,0.048822237,0.013278558,0,0.008750161,-0.276031678,106.0235049,0.276031678,73.97649511,0,0.86886137,0.048822237,0.020881235,0.062488588,2,7,28% -2/16/2018 16:00,79.12366108,114.8624431,119.1053146,415.875272,40.63384553,40.30645134,0,40.30645134,39.40858517,0.897866172,55.37206681,25.26834397,30.10372285,1.225260366,28.87846248,1.380968402,2.004727819,-3.688962218,3.688962218,0.838996617,0.341158962,0.802624447,25.81516121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.88103104,0.887696964,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.581498679,24.81451488,38.46252972,25.70221185,0,25.26834397,-0.060759429,93.48340437,0.060759429,86.51659563,0,0,38.46252972,25.70221185,55.28411333,2,8,44% -2/16/2018 17:00,68.9307013,125.7986287,303.980344,661.3000668,66.2450571,171.3012793,104.7622228,66.53905645,64.24752421,2.291532235,75.70108664,0,75.70108664,1.99753289,73.70355375,1.203067693,2.195600266,-1.459051742,1.459051742,0.779666233,0.217925463,1.896661291,61.00314685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75716405,1.447205779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.374124649,58.63854512,63.1312887,60.08575089,104.7622228,0,0.158418588,80.88488268,-0.158418588,99.11511732,0.734380472,0,140.0666193,60.08575089,179.3915416,2,9,28% -2/16/2018 18:00,60.16426456,138.8256472,461.4745937,765.882287,80.43659821,357.4723242,275.9823958,81.48992841,78.011138,3.478790415,114.3153182,0,114.3153182,2.425460216,111.889858,1.050064509,2.42296463,-0.629792168,0.629792168,0.637854493,0.174303416,2.438554477,78.43229446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98727314,1.75723767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.766724418,75.39210476,76.75399756,77.14934243,275.9823958,0,0.360345709,68.87857128,-0.360345709,111.1214287,0.911244359,0,328.2413988,77.14934243,378.7341004,2,10,15% -2/16/2018 19:00,53.63026478,154.5211624,571.95848,814.8725376,88.74424546,523.026221,432.6462773,90.37994364,86.06827902,4.311664618,141.3539218,0,141.3539218,2.675966432,138.6779554,0.936024699,2.696903048,-0.129646654,0.129646654,0.552324573,0.155158545,2.680929424,86.2279059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.73210356,1.938728571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942324241,82.88554299,84.6744278,84.82427156,432.6462773,0,0.530937364,57.93118935,-0.530937364,122.0688107,0.955826933,0,498.2093921,84.82427156,553.7251814,2,11,11% -2/16/2018 20:00,50.25628902,172.6747418,625.8691981,834.2316359,92.49935849,643.7694308,549.3412029,94.42822793,89.71016155,4.718066384,154.5384301,0,154.5384301,2.789196945,151.7492331,0.877137713,3.013742779,0.26387813,-0.26387813,0.485027872,0.147793435,2.647483369,85.1521658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.23281957,2.020763692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918092688,81.85150068,88.15091226,83.87226438,549.3412029,0,0.658499605,48.8144557,-0.658499605,131.1855443,0.97406981,0,623.2475935,83.87226438,678.1403131,2,12,9% -2/16/2018 21:00,50.69697106,191.7074376,618.9625794,831.8872046,92.02710485,704.7904008,610.8722513,93.91814947,89.25214809,4.666001375,152.8496002,0,152.8496002,2.774956755,150.0746435,0.884829066,3.345925987,0.642066581,-0.642066581,0.420353838,0.148679594,2.363494843,76.0181186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.79255962,2.010446723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712343968,73.07150709,87.50490358,75.08195381,610.8722513,0,0.734321009,42.75012666,-0.734321009,137.2498733,0.981909888,0,687.3264073,75.08195381,736.4660444,2,13,7% -2/16/2018 22:00,54.85788276,209.3976373,551.7786172,806.9475594,87.29435223,696.6451739,607.8235282,88.82164571,84.66210542,4.159540289,136.4173608,0,136.4173608,2.632246801,133.785114,0.957450675,3.654678216,1.078609362,-1.078609362,0.345700625,0.158205392,1.868525038,60.09818824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.38043601,1.907053847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.35374003,57.76866448,82.73417604,59.67571833,607.8235282,0,0.753237953,41.12835669,-0.753237953,138.8716433,0.983619914,0,680.6015027,59.67571833,719.6580668,2,14,6% -2/16/2018 23:00,61.97330582,224.4753077,429.6822767,748.7753155,77.84557623,613.3553672,534.6179958,78.73737139,75.49824489,3.2391265,106.528774,0,106.528774,2.347331343,104.1814427,1.081638235,3.917833209,1.695261062,-1.695261062,0.240246974,0.181170089,1.224038362,39.36928134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.5717847,1.700633567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886811627,37.84325071,73.45859633,39.54388427,534.6179958,0,0.713989878,44.43952299,-0.713989878,135.560477,0.979970996,0,597.3687262,39.54388427,623.2494075,2,15,4% -2/16/2018 0:00,71.12139927,236.9780142,263.7287192,623.8621481,61.86935943,448.3808841,386.3890157,61.99186845,60.00376997,1.988098485,65.80967077,0,65.80967077,1.86558946,63.94408131,1.241302586,4.136046602,2.849121647,-2.849121647,0.042925193,0.234594699,0.531716679,17.10183615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.67790605,1.351613213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385226924,16.43893541,58.06313297,17.79054862,386.3890157,0,0.619349991,51.73131712,-0.619349991,128.2686829,0.969270201,0,432.578492,17.79054862,444.2220503,2,16,3% -2/16/2018 1:00,81.53623303,247.5623532,78.82980868,320.4513078,31.66452193,183.9339014,152.6299292,31.30397216,30.70971976,0.594252396,20.06800194,0,20.06800194,0.954802166,19.11319977,1.423075726,4.320778168,6.714143393,-6.714143393,0,0.401682085,0.238700541,7.677429941,0.381965425,1,0.147852454,0,0.945607523,0.984369486,0.724496596,1,29.77503125,0.691750919,0.055324469,0.312029739,0.855119768,0.579616364,0.961238037,0.922476074,0.16347386,7.379837685,29.93850512,8.071588604,94.33057349,0,0.47629679,61.55618247,-0.47629679,118.4438175,0.945023437,0,119.0831079,8.071588604,124.3658012,2,17,4% -2/16/2018 2:00,92.90632877,256.9831535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621521333,4.48520215,-19.55111607,19.55111607,0,#DIV/0!,0,0,1,0.652003419,0,0.051103442,0.961238037,1,0.589819592,0.865322996,0,0,0.115824807,0.159377366,0.724496596,0.448993192,0.982938229,0.944176265,0,0,0,0,0,0,0.291400887,73.05815632,-0.291400887,106.9418437,0.878415073,0,0,0,0,2,18,0% -2/16/2018 3:00,104.599634,265.9611723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825608009,4.64189814,-3.691153409,3.691153409,0.838621901,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081354952,85.33354732,-0.081354952,94.66645268,0,0,0,0,0,2,19,0% -2/16/2018 4:00,116.4222153,275.2582869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031950979,4.804163401,-1.820116459,1.820116459,0.841411936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141137808,98.11369161,0.141137808,81.88630839,0,0.695736314,0,0,0,2,20,0% -2/16/2018 5:00,128.0465386,285.8827369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234833695,4.989595033,-1.035297669,1.035297669,0.707200018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36090604,111.1558495,0.36090604,68.84415053,0,0.911459786,0,0,0,2,21,0% -2/16/2018 6:00,138.966984,299.4821026,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425431422,5.226948741,-0.565420629,0.565420629,0.626846312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562963094,124.2609642,0.562963094,55.73903583,0,0.961184231,0,0,0,2,22,0% -2/16/2018 7:00,148.1738375,318.9157939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586121329,5.56613064,-0.223275494,0.223275494,0.568336048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733528267,137.1830025,0.733528267,42.81699752,0,0.981836301,0,0,0,2,23,0% -2/17/2018 8:00,153.6052069,347.2674896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680916608,6.060961079,0.062781698,-0.062781698,0.519417387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860965831,149.4251999,0.860965831,30.5748001,0,0.991925686,0,0,0,2,0,0% -2/17/2018 9:00,152.8073019,20.1335708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66699054,0.351397101,0.331161023,-0.331161023,0.473521819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936577959,159.484589,0.936577959,20.51541101,0,0.996614161,0,0,0,2,1,0% -2/17/2018 10:00,146.2254013,46.29507994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552114703,0.808001573,0.612371894,-0.612371894,0.425431928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955197602,162.7843589,0.955197602,17.21564106,0,0.99765481,0,0,0,2,2,0% -2/17/2018 11:00,136.4667139,64.00737243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381793477,1.117139394,0.944877487,-0.944877487,0.368570123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915540926,156.2826629,0.915540926,23.71733709,0,0.995387477,0,0,0,2,3,0% -2/17/2018 12:00,125.3050898,76.68781209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186986386,1.338454817,1.40247604,-1.40247604,0.290316161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820295336,145.1143689,0.820295336,34.88563108,0,0.989046344,0,0,0,2,4,0% -2/17/2018 13:00,113.5847133,86.87009712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982427227,1.516169216,2.192000689,-2.192000689,0.155299495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675936996,132.5269557,0.675936996,47.47304433,0,0.976028609,0,0,0,2,5,0% -2/17/2018 14:00,101.7477378,96.00027616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775833032,1.675520902,4.321964721,-4.321964721,0,#DIV/0!,0,0,0.172833063,1,0.227375101,0,0.935129563,0.973891526,0.724496596,1,0,0,0.027329541,0.312029739,0.925422213,0.649918809,0.961238037,0.922476074,0,0,0,0,0,0,-0.492290219,119.4912225,0.492290219,60.50877751,0,0.948433895,0,0,0,2,6,0% -2/17/2018 15:00,89.60706012,105.0013545,0.153322184,2.079611245,0.139060125,0.136022756,0,0.136022756,0.134866949,0.001155807,0.61058002,0.569212105,0.041367914,0.004193176,0.037174739,1.563938232,1.832619355,-119.4392436,119.4392436,0,0.906979808,0.001048294,0.033716737,1,0.94988842,0,0.008372262,0.961238037,1,0.701029192,0.976532597,0.129639241,0.002997429,0.115824807,0.285366471,0.724496596,0.448993192,0.965385155,0.926623192,0.000759485,0.032484145,0.130398726,0.035481575,0,0.028524118,-0.273710823,105.8852024,0.273710823,74.11479765,0,0.867325455,0.130398726,0.060221268,0.169812342,2,7,30% -2/17/2018 16:00,78.87523633,114.6129302,123.4472534,424.9827566,41.44850041,41.12927273,0,41.12927273,40.19867519,0.93059754,55.65496323,24.47392221,31.18104101,1.249825216,29.9312158,1.376632572,2.000372997,-3.620136562,3.620136562,0.850766497,0.33575879,0.838350158,26.9642229,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.64049562,0.905494114,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607381836,25.91903669,39.24787746,26.8245308,0,24.47392221,-0.057588036,93.30137789,0.057588036,86.69862211,0,0,39.24787746,26.8245308,56.80399638,2,8,45% -2/17/2018 17:00,68.65598616,125.5663435,309.0718819,665.8658665,66.71878939,174.8310925,107.7942064,67.03688613,64.70697173,2.329914398,76.94987375,0,76.94987375,2.011817666,74.93805608,1.19827301,2.191546124,-1.447022898,1.447022898,0.777609179,0.215868195,1.923615268,61.87007941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19880247,1.457555051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393652714,59.47187367,63.59245519,60.92942872,107.7942064,0,0.161885767,80.68363015,-0.161885767,99.31636985,0.741140234,0,143.4830786,60.92942872,183.3601711,2,9,28% -2/17/2018 18:00,59.85923168,138.6272128,466.8500639,768.8238266,80.80347636,361.7788098,279.8925434,81.88626639,78.36695341,3.51931298,115.6297259,0,115.6297259,2.436522945,113.193203,1.04474068,2.419501296,-0.627652827,0.627652827,0.637488644,0.173082286,2.46433887,79.26160916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32929645,1.76525258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.785405122,76.18927359,77.11470157,77.95452617,279.8925434,0,0.3640529,68.65069184,-0.3640529,111.3493082,0.912657322,0,332.5606809,77.95452617,383.5803591,2,10,15% -2/17/2018 19:00,53.29627433,154.389594,577.4615132,817.1499593,89.06954705,527.7692681,437.0323477,90.73692039,86.38377158,4.353148807,142.698005,0,142.698005,2.685775475,140.0122295,0.930195466,2.694606746,-0.131142201,0.131142201,0.552580327,0.154243261,2.705881587,87.03045324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03536701,1.945835189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960401999,83.65698202,84.99576901,85.60281721,437.0323477,0,0.534825148,57.66794586,-0.534825148,122.3320541,0.956511502,0,503.0222361,85.60281721,559.0475679,2,11,11% -2/17/2018 20:00,49.9063148,172.6501501,631.3885159,836.2548548,92.80750729,648.7859288,554.0172369,94.76869185,90.00901852,4.759673333,155.8859444,0,155.8859444,2.798488768,153.0874556,0.871029511,3.013313573,0.260125911,-0.260125911,0.485669539,0.14698954,2.671465358,85.92350901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.52009226,2.027495586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.935467558,82.59294512,88.45555982,84.6204407,554.0172369,0,0.662498081,48.50932989,-0.662498081,131.4906701,0.974528083,0,628.3609158,84.6204407,683.7433019,2,12,9% -2/17/2018 21:00,50.35442613,191.8043687,624.3988437,833.9130546,92.33173927,709.9769537,615.7223748,94.2545789,89.54759666,4.706982231,154.1768713,0,154.1768713,2.784142607,151.3927287,0.878850529,3.347617754,0.636027732,-0.636027732,0.421386542,0.147873015,2.386194559,76.74821952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07655602,2.017101841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728789835,73.77330786,87.80534586,75.7904097,615.7223748,0,0.738353203,42.40867798,-0.738353203,137.591322,0.982281732,0,692.6181866,75.7904097,742.221494,2,13,7% -2/17/2018 22:00,54.54343494,209.5880097,557.0378144,809.2390221,87.60989291,701.9430838,612.7757661,89.16731773,84.96813139,4.199186339,137.7020288,0,137.7020288,2.641761517,135.0602673,0.951962525,3.658000841,1.069160661,-1.069160661,0.347316448,0.157278179,1.889505058,60.77297778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67459981,1.913947226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368939982,58.41729786,83.04353979,60.33124508,612.7757661,0,0.757224688,40.77986037,-0.757224688,139.2201396,0.983969401,0,685.9961431,60.33124508,725.4817364,2,14,6% -2/17/2018 23:00,61.69472484,224.717173,434.6672974,751.7727508,78.19975977,618.7820876,539.6636334,79.11845418,75.84174849,3.276705692,107.7481299,0,107.7481299,2.358011283,105.3901187,1.07677608,3.922054555,1.678930989,-1.678930989,0.243039581,0.179907162,1.24259948,39.96627069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90197343,1.708371148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900259093,38.41709958,73.80223252,40.12547073,539.6636334,0,0.717854741,44.12235325,-0.717854741,135.8776467,0.980348026,0,602.8604101,40.12547073,629.1217282,2,15,4% -2/17/2018 0:00,70.87612263,237.243221,268.2934045,628.6519065,62.33970532,454.1468615,391.6644193,62.48244221,60.4599332,2.022509011,66.93061425,0,66.93061425,1.879772124,65.05084212,1.237021701,4.140675334,2.812753627,-2.812753627,0.04914449,0.232356459,0.546243095,17.56905563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.1163875,1.361888505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.395751263,16.88804454,58.51213876,18.24993305,391.6644193,0,0.623022718,51.4627931,-0.623022718,128.5372069,0.969746105,0,438.3271837,18.24993305,450.2713999,2,16,3% -2/17/2018 1:00,81.3185252,247.8393175,82.36149185,330.1604786,32.52667076,190.5445593,158.3778119,32.16674734,31.54587163,0.620875715,20.95029638,0,20.95029638,0.980799134,19.96949725,1.419276008,4.325612106,6.544534337,-6.544534337,0,0.394925711,0.245199784,7.886467907,0.370684309,1,0.151626479,0,0.945142139,0.983904102,0.724496596,1,30.58484717,0.710585634,0.053935595,0.312029739,0.858461409,0.582958005,0.961238037,0.922476074,0.167982153,7.580772929,30.75282932,8.291358563,99.66964218,0,0.479699486,61.33422317,-0.479699486,118.6657768,0.945768077,0,125.0171951,8.291358563,130.4437235,2,17,4% -2/17/2018 2:00,92.70375269,257.2708051,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617985713,4.490222619,-21.00520288,21.00520288,0,#DIV/0!,0,0,1,0.679718659,0,0.047571335,0.961238037,1,0.598466065,0.873969469,0,0,0.115824807,0.169147582,0.724496596,0.448993192,0.981701452,0.942939489,0,0,0,0,0,0,0.294565237,72.86853106,-0.294565237,107.1314689,0.880258314,0,0,0,0,2,18,0% -2/17/2018 3:00,104.4058931,266.2643298,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822226594,4.647189236,-3.737278753,3.737278753,0.830734003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084223209,85.16864218,-0.084223209,94.83135782,0,0,0,0,0,2,19,0% -2/17/2018 4:00,116.2276087,275.5852832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028554454,4.809870561,-1.830763752,1.830763752,0.84323273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.138562877,97.96469465,0.138562877,82.03530535,0,0.689152988,0,0,0,2,20,0% -2/17/2018 5:00,127.8388139,286.2429884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231208214,4.995882608,-1.038302252,1.038302252,0.707713832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358601333,111.0143239,0.358601333,68.98567611,0,0.910569397,0,0,0,2,21,0% -2/17/2018 6:00,138.729191,299.8766598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421281152,5.233835064,-0.565568668,0.565568668,0.626871628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560886787,124.1171472,0.560886787,55.88285279,0,0.96085545,0,0,0,2,22,0% -2/17/2018 7:00,147.8850137,319.2965066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581080404,5.572775331,-0.221899007,0.221899007,0.568100655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73162272,137.0226055,0.73162272,42.97739455,0,0.981658765,0,0,0,2,23,0% -2/18/2018 8:00,153.2622012,347.4477004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674930029,6.064106351,0.065299825,-0.065299825,0.518986762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859161576,149.2225746,0.859161576,30.7774254,0,0.991803729,0,0,0,2,0,0% -2/18/2018 9:00,152.4638229,19.96135058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660995699,0.348391291,0.334860577,-0.334860577,0.472889158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934798506,159.1956166,0.934798506,20.80438345,0,0.996512538,0,0,0,2,1,0% -2/18/2018 10:00,145.9278651,45.95598483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546921716,0.802083246,0.617657522,-0.617657522,0.424528032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953364723,162.4330116,0.953364723,17.56698839,0,0.997554174,0,0,0,2,2,0% -2/18/2018 11:00,136.2098278,63.65720162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377309968,1.111027761,0.952768219,-0.952768219,0.367220728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913580058,156.0048746,0.913580058,23.99512544,0,0.995270259,0,0,0,2,3,0% -2/18/2018 12:00,125.0713648,76.36429514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182907115,1.332808381,1.41559063,-1.41559063,0.288073434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818140721,144.8991036,0.818140721,35.1008964,0,0.988885819,0,0,0,2,4,0% -2/18/2018 13:00,113.3600271,86.57323255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978505713,1.510987952,2.219107301,-2.219107301,0.150663991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673536219,132.3405821,0.673536219,47.65941789,0,0.975764942,0,0,0,2,5,0% -2/18/2018 14:00,101.5215351,95.72336615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771885049,1.67068791,4.419562111,-4.419562111,0,#DIV/0!,0,0,0.184097035,1,0.222519835,0,0.935809165,0.974571128,0.724496596,1,0,0,0.028967988,0.312029739,0.921137276,0.645633872,0.961238037,0.922476074,0,0,0,0,0,0,-0.489607813,119.3148075,0.489607813,60.6851925,0,0.947877447,0,0,0,2,6,0% -2/18/2018 15:00,89.40473756,104.7387322,0.309134119,3.277611903,0.275082673,0.269118299,0,0.269118299,0.266787915,0.002330384,0.972399791,0.889151887,0.083247904,0.008294758,0.074953146,1.560407037,1.828035731,-79.09390202,79.09390202,0,0.889848954,0.002073689,0.066696979,1,0.923406907,0,0.012642526,0.961238037,1,0.689270498,0.964773902,0.256446692,0.005892365,0.115824807,0.272013372,0.724496596,0.448993192,0.967406768,0.928644805,0.001502381,0.064325092,0.257949073,0.070217457,0,0.068102893,-0.271280406,105.7404727,0.271280406,74.25952734,0,0.865688863,0.257949073,0.129173373,0.342490462,2,7,33% -2/18/2018 16:00,78.62272225,114.3626607,127.8836967,434.0453701,42.26018688,41.94992765,0,41.94992765,40.98588632,0.964041324,55.86859024,23.58740682,32.28118342,1.274300558,31.00688286,1.37222537,1.99600497,-3.552921672,3.552921672,0.862260921,0.330457971,0.875135406,28.14736292,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.39719291,0.923226416,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.634032623,27.05631588,40.03122553,27.97954229,0,23.58740682,-0.054343183,93.11516957,0.054343183,86.88483043,0,0,40.03122553,27.97954229,58.34327637,2,8,46% -2/18/2018 17:00,68.37732667,125.3333304,314.2323778,670.4056419,67.19295435,178.4327669,110.8971116,67.53565525,65.16683886,2.368816396,78.21539355,0,78.21539355,2.026115489,76.18927806,1.193409484,2.187479277,-1.434968435,1.434968435,0.775547744,0.213832053,1.950821761,62.74513375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.64084425,1.467913775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.413363725,60.31300918,64.05420798,61.78092296,110.8971116,0,0.165417927,80.47848644,-0.165417927,99.52151356,0.747735301,0,146.9758931,61.78092296,187.4102716,2,9,28% -2/18/2018 18:00,59.55031335,138.4284569,472.2793202,771.7488098,81.17126842,366.1444385,283.8605423,82.28389619,78.72365518,3.560241007,116.9572023,0,116.9572023,2.447613233,114.509589,1.039349039,2.416032351,-0.62542266,0.62542266,0.637107264,0.171871316,2.490310672,80.09695158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67217176,1.773287455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804221604,76.9922365,77.47639337,78.76552395,283.8605423,0,0.367814681,68.41909401,-0.367814681,111.580906,0.914061979,0,336.9425223,78.76552395,388.4929824,2,10,15% -2/18/2018 19:00,52.95849973,154.2589132,583.0039825,819.4124752,89.39537295,532.5576436,441.4629407,91.09470291,86.69977263,4.394930282,144.0516657,0,144.0516657,2.695600328,141.3560653,0.924300187,2.692325936,-0.132548783,0.132548783,0.552820866,0.153335784,2.730963221,87.83716482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.33911923,1.952953262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978573557,84.43242387,85.31769279,86.38537713,441.4629407,0,0.538755455,57.40104262,-0.538755455,122.5989574,0.957193515,0,507.8831567,86.38537713,564.4206584,2,11,11% -2/18/2018 20:00,49.55295497,172.6286666,636.9336755,838.2618405,93.11551914,653.8326349,558.7234171,95.10921776,90.30774268,4.801475088,157.2397202,0,157.2397202,2.807776462,154.4319438,0.864862218,3.012938615,0.256464186,-0.256464186,0.486295731,0.146193431,2.695528526,86.69746321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80723728,2.034224488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.952901241,83.33689933,88.76013852,85.37112382,558.7234171,0,0.666526126,48.20048761,-0.666526126,131.7995124,0.974984186,0,633.5066345,85.37112382,689.3803276,2,12,9% -2/18/2018 21:00,50.00938307,191.9066626,629.8488975,835.9189408,92.63543419,715.1780987,620.5878976,94.5902011,89.84213406,4.748067039,155.5074575,0,155.5074575,2.793300129,152.7141573,0.872828391,3.349403119,0.630095463,-0.630095463,0.422401019,0.147075647,2.408940184,77.47979699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.35967657,2.023736435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745268963,74.47652795,88.10494553,76.50026439,620.5878976,0,0.742402005,42.0635665,-0.742402005,137.9364335,0.982651044,0,697.926291,76.50026439,747.994184,2,13,7% -2/18/2018 22:00,54.22760486,209.78467,562.3012231,811.5029661,87.92349848,707.2401522,617.7290075,89.51114474,85.2722806,4.238864137,138.9876595,0,138.9876595,2.651217882,136.3364416,0.94645025,3.661433212,1.059865751,-1.059865751,0.348905972,0.156363698,1.910513043,61.4486668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.9669596,1.920798331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384160196,59.06679584,83.3511198,60.98759417,617.7290075,0,0.761215958,40.42848839,-0.761215958,139.5715116,0.984315618,0,691.3914293,60.98759417,731.30659,2,14,6% -2/18/2018 23:00,61.41567051,224.9650188,439.6505851,754.7263463,78.55047415,624.1925779,544.6964185,79.49615936,76.18188754,3.31427182,108.9669611,0,108.9669611,2.368586616,106.5983745,1.071905663,3.92638028,1.662894488,-1.662894488,0.245781984,0.178665688,1.261195978,40.56439798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.22892802,1.71603294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913732193,38.99204228,74.14266021,40.70807522,544.6964185,0,0.721713799,43.80384329,-0.721713799,136.1961567,0.98072046,0,608.3375824,40.70807522,634.9802034,2,15,4% -2/18/2018 0:00,70.63091018,237.5136866,272.856909,633.3557289,62.80306934,459.8787626,396.9125268,62.96623572,60.90932508,2.056910635,68.05106086,0,68.05106086,1.893744259,66.1573166,1.232741936,4.145395849,2.777270877,-2.777270877,0.055212398,0.230168514,0.560863493,18.03929789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54836007,1.372011269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.406343691,17.34005929,58.95470376,18.71207056,396.9125268,0,0.626681829,51.194264,-0.626681829,128.805736,0.970214696,0,444.0450705,18.71207056,456.2917464,2,16,3% -2/18/2018 1:00,81.10102513,248.1208769,85.92314318,339.7090562,33.37262876,197.1223971,164.1083512,33.01404582,32.36632087,0.647724947,21.83936874,0,21.83936874,1.006307889,20.83306085,1.415479915,4.330526246,6.383179525,-6.383179525,0,0.38840093,0.251576972,8.091580217,0.359563191,1,0.155398642,0,0.944673766,0.983435729,0.724496596,1,31.37909479,0.72906664,0.052553884,0.312029739,0.861800999,0.586297595,0.961238037,0.922476074,0.172420411,7.777934683,31.55151521,8.507001323,105.1010288,0,0.483085005,61.11291682,-0.483085005,118.8870832,0.946498547,0,131.0294863,8.507001323,136.5971485,2,17,4% -2/18/2018 2:00,92.5014799,257.5625693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614455387,4.495314863,-22.69109313,22.69109313,0,#DIV/0!,0,0,1,0.706792946,0,0.044041658,0.961238037,1,0.607205256,0.88270866,0,0,0.115824807,0.179026487,0.724496596,0.448993192,0.980429184,0.941667221,0,0,0,0,0,0,0.297709017,72.67994677,-0.297709017,107.3200532,0.882050771,0,0,0,0,2,18,0% -2/18/2018 3:00,104.2122603,266.5712802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818847063,4.65254653,-3.784414003,3.784414003,0.822673401,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087072618,85.00478087,-0.087072618,94.99521913,0,0,0,0,0,2,19,0% -2/18/2018 4:00,116.0327404,275.9158423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02515336,4.815639906,-1.841447671,1.841447671,0.845059788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.136001768,97.81655126,0.136001768,82.18344874,0,0.682357721,0,0,0,2,20,0% -2/18/2018 5:00,127.6302764,286.6065122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227568549,5.002227295,-1.041253066,1.041253066,0.708218451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356302469,110.8732909,0.356302469,69.12670915,0,0.909669791,0,0,0,2,21,0% -2/18/2018 6:00,138.489872,300.2738275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417104246,5.240766948,-0.565646349,0.565646349,0.626884912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558805944,123.973261,0.558805944,56.02673901,0,0.9605235,0,0,0,2,22,0% -2/18/2018 7:00,147.5939655,319.6786999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.576000655,5.579445863,-0.220444625,0.220444625,0.567851941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729700569,136.8612976,0.729700569,43.13870242,0,0.981478743,0,0,0,2,23,0% -2/19/2018 8:00,152.9164682,347.6310655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66889585,6.067306675,0.067905866,-0.067905866,0.518541103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857327795,149.0178589,0.857327795,30.98214112,0,0.99167925,0,0,0,2,0,0% -2/19/2018 9:00,152.1164238,19.7971981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654932442,0.345526289,0.338665869,-0.338665869,0.472238415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932976641,158.9036777,0.932976641,21.09632226,0,0.99640809,0,0,0,2,1,0% -2/19/2018 10:00,145.6252709,45.62313934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541640452,0.796273997,0.623082388,-0.623082388,0.423600326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951477471,162.0782148,0.951477471,17.92178519,0,0.997450148,0,0,0,2,2,0% -2/19/2018 11:00,135.9477059,63.3100358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372735079,1.104968574,0.960866853,-0.960866853,0.36583578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911554605,155.7210782,0.911554605,24.27892177,0,0.995148651,0,0,0,2,3,0% -2/19/2018 12:00,124.8326486,76.04193513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178740732,1.327182138,1.429080696,-1.429080696,0.285766497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815913765,144.6778133,0.815913765,35.32218665,0,0.988719014,0,0,0,2,4,0% -2/19/2018 13:00,113.1306731,86.276595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97450273,1.50581065,2.247166311,-2.247166311,0.145865618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671058336,132.1488003,0.671058336,47.85119967,0,0.975490829,0,0,0,2,5,0% -2/19/2018 14:00,101.2909627,95.4461891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767860801,1.665850258,4.522732093,-4.522732093,0,#DIV/0!,0,0,0.195675339,1,0.217604326,0,0.936491993,0.975253956,0.724496596,1,0,0,0.030635444,0.312029739,0.916798164,0.64129476,0.961238037,0.922476074,0,0,0,0,0,0,-0.486846861,119.1335447,0.486846861,60.8664553,0,0.9472983,0,0,0,2,6,0% -2/19/2018 15:00,89.19599459,104.4755567,0.543708202,4.98874576,0.473705716,0.463520443,0,0.463520443,0.459421741,0.004098702,1.486771766,1.340659443,0.146112323,0.014283975,0.131828348,1.556763785,1.823442452,-58.74300328,58.74300328,0,0.8712499,0.003570994,0.114855435,1,0.895570071,0,0.01702166,0.961238037,1,0.677360234,0.952863638,0.441613653,0.010086358,0.115824807,0.258494395,0.724496596,0.448993192,0.969415415,0.930653452,0.002587173,0.110877705,0.444200825,0.120964063,0,0.140004971,-0.268736774,105.5891114,0.268736774,74.41088862,0,0.863944332,0.444200825,0.241920564,0.602532996,2,7,36% -2/19/2018 16:00,78.36622737,114.11168,132.4123165,443.0535409,43.06822596,42.76774002,0,42.76774002,41.76956004,0.998179973,56.01098835,22.60742328,33.40356507,1.298665918,32.10489915,1.36774869,1.991624532,-3.487310164,3.487310164,0.873481149,0.325258459,0.91296782,29.36418339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1504899,0.940879036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.661442078,28.22597,40.81193197,29.16684903,0,22.60742328,-0.051026391,92.92486704,0.051026391,87.07513296,0,0,40.81193197,29.16684903,59.90105133,2,8,47% -2/19/2018 17:00,68.09483682,125.0996141,319.4592225,674.9163306,67.66724715,182.1048433,114.0697947,68.03504854,65.62682999,2.408218559,79.49700423,0,79.49700423,2.040417167,77.45658706,1.188479106,2.183400158,-1.422900783,1.422900783,0.773484054,0.211818105,1.978265411,63.62781587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.08300522,1.478275292,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433246556,61.16147681,64.51625178,62.63975211,114.0697947,0,0.169013238,80.26954838,-0.169013238,99.73045162,0.754165186,0,150.5437197,62.63975211,191.5401847,2,9,27% -2/19/2018 18:00,59.23762716,138.2293845,477.7595361,774.6555698,81.53974308,370.5670198,287.8844476,82.68257217,79.08101898,3.601553189,118.2970549,0,118.2970549,2.458724104,115.8383308,1.033891635,2.412557882,-0.623106478,0.623106478,0.636711173,0.170671095,2.516455905,80.93787217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01568344,1.781337243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823163737,77.80056135,77.83884717,79.58189859,287.8844476,0,0.371628965,68.1838851,-0.371628965,111.8161149,0.915457204,0,341.3847387,79.58189859,393.4694997,2,10,15% -2/19/2018 19:00,52.61705886,154.1291193,588.5829776,821.6589892,89.7215229,537.3887852,445.9357102,91.45307505,87.01608794,4.436987104,145.4141922,0,145.4141922,2.705434952,142.7087573,0.91834092,2.690060605,-0.133868412,0.133868412,0.553046536,0.15243649,2.75616123,88.64761939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.64317355,1.960078413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996829429,85.21146364,85.64000298,87.17154205,445.9357102,0,0.542726017,57.13059588,-0.542726017,122.8694041,0.957872484,0,512.7895492,87.17154205,569.8415801,2,11,11% -2/19/2018 20:00,49.19632868,172.6103115,642.5017986,840.2517854,93.42321355,658.9068096,563.4572007,95.44960891,90.60615896,4.843449952,158.5990543,0,158.5990543,2.817054583,155.7819997,0.858637915,3.012618258,0.252892086,-0.252892086,0.486906596,0.145405373,2.71966076,87.4736388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.09408637,2.040946456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970384962,84.08298884,89.06447133,86.12393529,563.4572007,0,0.670581379,47.88804824,-0.670581379,132.1119518,0.975437834,0,638.6819428,86.12393529,695.048336,2,12,9% -2/19/2018 21:00,49.661967,192.0143536,635.3099985,837.9042312,92.93802753,720.3910692,625.466231,94.92483822,90.13560309,4.789235124,156.8406889,0,156.8406889,2.802424435,154.0382645,0.866764837,3.351282682,0.624269308,-0.624269308,0.42339735,0.146287683,2.431720801,78.21249994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.64177017,2.030346963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761773442,75.1808299,88.40354361,77.21117687,625.466231,0,0.746465059,41.71490884,-0.746465059,138.2850912,0.983017628,0,703.2478746,77.21117687,753.7810456,2,13,7% -2/19/2018 22:00,53.91051806,209.9876223,567.5663237,813.7389094,88.23502956,712.5337195,622.680747,89.85297256,85.57441787,4.278554689,140.2736379,0,140.2736379,2.660611694,137.6130262,0.940916042,3.664975397,1.050723805,-1.050723805,0.350469336,0.155462059,1.931539443,62.1249481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.25738544,1.927604115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.399393751,59.71686315,83.65677919,61.64446726,622.680747,0,0.765209504,40.07436601,-0.765209504,139.925634,0.984658417,0,696.7846181,61.64446726,737.129689,2,14,6% -2/19/2018 23:00,61.13625547,225.2188022,444.6298989,757.6358644,78.89761657,629.5844189,549.7140486,79.87037032,76.51856233,3.35180799,110.184721,0,110.184721,2.379054241,107.8056667,1.06702895,3.930809636,1.647147917,-1.647147917,0.248474806,0.177445594,1.279819641,41.16339901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55255263,1.723616699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927224973,39.56782485,74.47977761,41.29144155,549.7140486,0,0.725564977,43.48413243,-0.725564977,136.5158676,0.981088184,0,613.7977354,41.29144155,640.8221581,2,15,4% -2/19/2018 0:00,70.38585406,237.7893348,277.4172139,637.9740542,63.25943765,465.5745401,402.1313197,63.44322034,61.3519322,2.09128814,69.17052078,0,69.17052078,1.907505448,67.26301533,1.2284649,4.150206818,2.742649265,-2.742649265,0.061133042,0.228029965,0.575570265,18.51231824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.97381087,1.381981203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.416998698,17.79474444,59.39080956,19.17672565,402.1313197,0,0.630325508,50.925858,-0.630325508,129.074142,0.970675906,0,449.7299926,19.17672565,462.280776,2,16,3% -2/19/2018 1:00,80.88380852,248.4069365,89.51160676,349.0931667,34.2022982,203.6627341,169.8169851,33.84574901,33.17097271,0.674776302,22.73445087,0,22.73445087,1.031325484,21.70312539,1.41168877,4.335518927,6.229522315,-6.229522315,0,0.382099031,0.257831371,8.292743178,0.348600983,1,0.159168044,0,0.944202528,0.982964491,0.724496596,1,32.15766692,0.747191802,0.051179574,0.312029739,0.865137715,0.589634311,0.961238037,0.922476074,0.176788543,7.971300172,32.33445546,8.718491975,110.6186171,0,0.486451759,60.89236842,-0.486451759,119.1076316,0.947214885,0,137.1140562,8.718491975,142.8201348,2,17,4% -2/19/2018 2:00,92.2995611,257.8583386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610931239,4.500477012,-24.66872668,24.66872668,0,#DIV/0!,0,0,1,0.733244728,0,0.040514973,0.961238037,1,0.616035439,0.891538843,0,0,0.115824807,0.189012588,0.724496596,0.448993192,0.979121027,0.940359064,0,0,0,0,0,0,0.300831082,72.49247333,-0.300831082,107.5075267,0.88379377,0,0,0,0,2,18,0% -2/19/2018 3:00,104.0187702,266.881904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815470024,4.657967938,-3.832588456,3.832588456,0.814435084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089902399,84.84200779,-0.089902399,95.15799221,0.493841316,0,0,0,0,2,19,0% -2/19/2018 4:00,115.837633,276.2498273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021748093,4.821469045,-1.852167513,1.852167513,0.846892989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.133454916,97.66928463,0.133454916,82.33071537,0,0.675341639,0,0,0,2,20,0% -2/19/2018 5:00,127.4209431,286.973143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223914993,5.00862621,-1.044149517,1.044149517,0.708713773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.354009576,110.7327558,0.354009576,69.2672442,0,0.908760883,0,0,0,2,21,0% -2/19/2018 6:00,138.249049,300.6733989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412901093,5.247740784,-0.565653545,0.565653545,0.626886143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556720442,123.8292965,0.556720442,56.17070349,0,0.960188317,0,0,0,2,22,0% -2/19/2018 7:00,147.3007405,320.0621351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570882912,5.586138068,-0.218912452,0.218912452,0.567589924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727761521,136.6990613,0.727761521,43.30093873,0,0.981296175,0,0,0,2,23,0% -2/20/2018 8:00,152.5680995,347.8173247,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662815671,6.070557511,0.070599657,-0.070599657,0.518080437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855464113,148.8110458,0.855464113,31.18895418,0,0.991552195,0,0,0,2,0,0% -2/20/2018 9:00,151.7652499,19.64088971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648803301,0.342798194,0.342576844,-0.342576844,0.471569599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931112002,158.6088245,0.931112002,21.39117554,0,0.996300767,0,0,0,2,1,0% -2/20/2018 10:00,145.3177677,45.29657288,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536273509,0.790574337,0.628646865,-0.628646865,0.422648744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.949535591,161.7201036,0.949535591,18.27989641,0,0.997342679,0,0,0,2,2,0% -2/20/2018 11:00,135.680472,62.96599784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368070967,1.098963979,0.969175083,-0.969175083,0.364414989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909464506,155.4314548,0.909464506,24.56854518,0,0.995022593,0,0,0,2,3,0% -2/20/2018 12:00,124.5890485,75.72085293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174489107,1.321578196,1.442952662,-1.442952662,0.283394251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813614675,144.4506135,0.813614675,35.54938649,0,0.988545848,0,0,0,2,4,0% -2/20/2018 13:00,112.8967526,85.98028511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970420048,1.500639067,2.276209433,-2.276209433,0.140898951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668503878,131.9516982,0.668503878,48.04830184,0,0.975206118,0,0,0,2,5,0% -2/20/2018 14:00,101.0561224,95.16882538,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763762064,1.661009348,4.631895234,-4.631895234,0,#DIV/0!,0,0,0.207573723,1,0.212630836,0,0.937177527,0.975939491,0.724496596,1,0,0,0.032331599,0.312029739,0.91240683,0.636903426,0.961238037,0.922476074,0,0,0,0,0,0,-0.484008248,118.9475159,0.484008248,61.05248408,0,0.946695975,0,0,0,2,6,0% -2/20/2018 15:00,88.98083659,104.2118896,0.878666358,7.341151821,0.748090618,0.732156684,0,0.732156684,0.725532926,0.006623758,2.188930018,1.953329494,0.235600524,0.022557692,0.213042831,1.55300857,1.818840593,-46.48572003,46.48572003,0,0.851393264,0.005639423,0.181383232,1,0.866304441,0,0.021508665,0.961238037,1,0.665312492,0.940815896,0.697409846,0.015838795,0.115824807,0.244826714,0.724496596,0.448993192,0.971406835,0.932644872,0.004085743,0.175256928,0.701495588,0.191095723,0,0.261151479,-0.26607943,105.4311026,0.26607943,74.56889741,0,0.862086188,0.701495588,0.416230806,0.973910326,2,7,39% -2/20/2018 16:00,78.10586328,113.8600309,137.0306601,451.9982812,43.8719838,43.58207661,0,43.58207661,42.54908161,1.032994998,56.08043459,21.53286237,34.54757221,1.322902182,33.22467003,1.363204479,1.987232426,-3.423290776,3.423290776,0.884429109,0.320161807,0.951833092,30.61422414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.89979568,0.958438127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.689599835,29.42755671,41.58939552,30.38599484,0,21.53286237,-0.047639257,92.73056188,0.047639257,87.26943812,0,0,41.58939552,30.38599484,61.47642142,2,8,48% -2/20/2018 17:00,67.80863319,124.8652164,324.7497451,679.395039,68.1413729,185.8457708,117.3110109,68.53475985,66.08665909,2.448100753,80.79404932,0,80.79404932,2.054713808,78.73933552,1.18348391,2.179309148,-1.410831826,1.410831826,0.771420141,0.209827333,2.005930777,64.51762912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52501045,1.488633159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453290019,62.01679916,64.97830047,63.50543232,117.3110109,0,0.172669808,80.05691624,-0.172669808,99.94308376,0.760429979,0,154.18511,63.50543232,195.7481454,2,9,27% -2/20/2018 18:00,58.92129282,138.0299973,483.2878493,777.5425249,81.90867352,375.044306,291.9622533,83.08205275,79.4388248,3.64322795,119.6485831,0,119.6485831,2.469848717,117.1787344,1.028370559,2.409077919,-0.620709086,0.620709086,0.636301195,0.16948217,2.542760554,81.78392011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35962,1.789396988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842221366,78.61381481,78.20184136,80.4032118,291.9622533,0,0.375493615,67.94517548,-0.375493615,112.0548245,0.916841943,0,345.8850811,80.4032118,398.5073751,2,10,15% -2/20/2018 19:00,52.27207106,154.0002078,594.1955741,823.888464,90.04780007,542.2600982,450.4482743,91.81182388,87.33252666,4.479297227,146.7848697,0,146.7848697,2.715273413,144.0695963,0.912319747,2.687810674,-0.135103203,0.135103203,0.553257698,0.151545727,2.781462546,89.4613967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.94734648,1.967206345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.015160146,85.99369734,85.96250662,87.96090368,450.4482743,0,0.546734533,56.8567246,-0.546734533,123.1432754,0.958547939,0,517.7387714,87.96090368,575.3074236,2,11,11% -2/20/2018 20:00,48.83655586,172.5951014,648.0900134,842.2239321,93.7304137,664.0057046,568.2160325,95.78967218,90.9040959,4.885576275,159.9632449,0,159.9632449,2.826317802,157.1369271,0.852358695,3.012352793,0.249408603,-0.249408603,0.487502306,0.14462561,2.743850041,88.25164925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.38047469,2.047657626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987910014,84.83084207,89.3683847,86.8784997,568.2160325,0,0.674661466,47.57213341,-0.674661466,132.4278666,0.975888757,0,643.8840222,86.8784997,700.7442627,2,12,9% -2/20/2018 21:00,49.31230319,192.127473,640.7794288,839.8683433,93.23936168,725.6131133,630.3547964,95.25831691,90.42785091,4.830466,158.175902,0,158.175902,2.811510771,155.3643912,0.860662052,3.353256987,0.618548627,-0.618548627,0.424375645,0.145509293,2.454525641,78.945982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.92268988,2.036929983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.778295472,75.88588076,88.70098535,77.92281074,630.3547964,0,0.750540012,41.36282294,-0.750540012,138.6371771,0.9833813,0,708.5801044,77.92281074,759.5790255,2,13,7% -2/20/2018 22:00,53.59229928,210.196866,572.8306365,815.9464258,88.54435223,717.8211647,627.6285121,90.19265262,85.87441332,4.318239302,141.5593587,0,141.5593587,2.669938914,138.8894198,0.935362076,3.668627389,1.041733766,-1.041733766,0.352006724,0.154573353,1.952574885,62.80152022,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.54575247,1.934361654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414633857,60.36721001,83.96038633,62.30157166,627.6285121,0,0.76920309,39.71761912,-0.76920309,140.2823809,0.984997661,0,702.1730027,62.30157166,742.9481353,2,14,6% -2/20/2018 23:00,60.85659052,225.478476,449.6030491,760.5011373,79.24109097,634.9552531,554.7142756,80.24097741,76.85167971,3.389297697,111.4008758,0,111.4008758,2.389411261,109.0114646,1.062147876,3.935341798,1.631687353,-1.631687353,0.251118718,0.176246783,1.298462436,41.76301538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.87275774,1.731120325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940731615,40.14419891,74.81348935,41.87531924,554.7142756,0,0.729406241,43.16335981,-0.729406241,136.8366402,0.981451094,0,619.2384219,41.87531924,646.6449808,2,15,4% -2/20/2018 0:00,70.14104382,238.0700856,281.9723612,642.5074284,63.70880488,471.2322367,407.3188606,63.91337611,61.78774935,2.125626764,70.28851907,0,70.28851907,1.921055528,68.36746354,1.224192155,4.155106844,2.70886489,-2.70886489,0.066910511,0.225939892,0.590355953,18.98787677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.39273489,1.39179819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427710878,18.25186939,59.82044576,19.64366758,407.3188606,0,0.633951987,50.65770146,-0.633951987,129.3422985,0.971129674,0,455.379878,19.64366758,468.2362656,2,16,3% -2/20/2018 1:00,80.66694772,248.697398,93.12385499,358.3098454,35.0156428,210.1613257,175.4995268,34.66179893,33.95979197,0.702006955,23.63480762,0,23.63480762,1.055850824,22.57895679,1.407903835,4.340588437,6.083052194,-6.083052194,0,0.376011526,0.263962706,8.489947993,0.337796366,1,0.162933856,0,0.943728544,0.982490507,0.724496596,1,32.92051559,0.764960328,0.049812874,0.312029739,0.868470803,0.592967399,0.961238037,0.922476074,0.181086717,8.160860942,33.10160231,8.92582127,116.2164244,0,0.489798226,60.67267956,-0.489798226,119.3273204,0.947917148,0,143.2651438,8.92582127,149.1069153,2,17,4% -2/20/2018 2:00,92.09804405,258.1580033,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607414103,4.505707148,-27.02070235,27.02070235,0,#DIV/0!,0,0,1,0.759092217,0,0.036991778,0.961238037,1,0.624954983,0.900458387,0,0,0.115824807,0.199104418,0.724496596,0.448993192,0.977776595,0.939014632,0,0,0,0,0,0,0.303930353,72.30617701,-0.303930353,107.693823,0.885488626,0,0,0,0,2,18,0% -2/20/2018 3:00,103.8254548,267.1960798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812096034,4.66345134,-3.881833518,3.881833518,0.806013682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092711834,84.68036372,-0.092711834,95.31963628,0.510694524,0,0,0,0,2,19,0% -2/20/2018 4:00,115.6423071,276.5870999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018339013,4.827355561,-1.862922855,1.862922855,0.84873226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130922695,97.52291457,0.130922695,82.47708543,0,0.668095243,0,0,0,2,20,0% -2/20/2018 5:00,127.2108291,287.3427145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.220247812,5.015076449,-1.046991168,1.046991168,0.709199724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35172273,110.5927212,0.35172273,69.40727875,0,0.907842568,0,0,0,2,21,0% -2/20/2018 6:00,138.0067438,301.0751675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40867207,5.254752969,-0.565590235,0.565590235,0.626875316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554630125,123.6852425,0.554630125,56.31475749,0,0.95984983,0,0,0,2,22,0% -2/20/2018 7:00,147.0053864,320.4465764,0,0,0,0,0,0,0,0,0,0,0,0,0,2.565728011,5.592847835,-0.217302671,0.217302671,0.567314635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725805267,136.5358778,0.725805267,43.46412215,0,0.981110999,0,0,0,2,23,0% -2/21/2018 8:00,152.2171868,348.006222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656691088,6.073854391,0.073380965,-0.073380965,0.517604806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853570159,148.6021293,0.853570159,31.39787069,0,0.991422507,0,0,0,2,0,0% -2/21/2018 9:00,151.4104461,19.49219491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642610806,0.34020298,0.346593388,-0.346593388,0.470882729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929204253,158.3111104,0.929204253,21.68888963,0,0.996190517,0,0,0,2,1,0% -2/21/2018 10:00,145.0055073,44.97629803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530823536,0.784984486,0.634351282,-0.634351282,0.421673231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947538874,161.3588117,0.947538874,18.64118834,0,0.997231716,0,0,0,2,2,0% -2/21/2018 11:00,135.4082541,62.6251984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363319869,1.093015907,0.977694593,-0.977694593,0.362958067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907309766,155.1361888,0.907309766,24.86381117,0,0.994892029,0,0,0,2,3,0% -2/21/2018 12:00,124.3406765,75.40116165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170154199,1.315998531,1.457213111,-1.457213111,0.280955571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811243737,144.2176265,0.811243737,35.78237354,0,0.988366242,0,0,0,2,4,0% -2/21/2018 13:00,112.6583717,85.68439815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966259517,1.495474865,2.306269964,-2.306269964,0.135758298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873463,131.74937,0.665873463,48.25063,0,0.974910658,0,0,0,2,5,0% -2/21/2018 14:00,100.8171203,94.89135116,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759590692,1.656166509,4.747516814,-4.747516814,0,#DIV/0!,0,0,0.219798092,1,0.207601666,0,0.937865249,0.976627212,0.724496596,1,0,0,0.034056133,0.312029739,0.907965264,0.63246186,0.961238037,0.922476074,0,0,0,0,0,0,-0.481092952,118.7568088,0.481092952,61.2431912,0,0.94606998,0,0,0,2,6,0% -2/21/2018 15:00,88.7593964,103.9477889,1.336285321,10.46004439,1.109815677,1.086424123,0,1.086424123,1.076350639,0.010073483,3.11169709,2.754234205,0.357462884,0.033465037,0.323997847,1.549143709,1.814231167,-38.30562968,38.30562968,0,0.830522987,0.008366259,0.26908766,1,0.835548013,0,0.026099895,0.961238037,1,0.653148501,0.928651905,1.034629176,0.023373842,0.115824807,0.231035402,0.724496596,0.448993192,0.973375817,0.934613853,0.006061326,0.260208126,1.040690502,0.283581968,0,0.452939288,-0.263309992,105.2665564,0.263309992,74.7334436,0,0.860109751,1.040690502,0.673159467,1.48125991,2,7,42% -2/21/2018 16:00,77.84174525,113.6077524,141.7361453,460.8711696,44.6708687,44.39234412,0,44.39234412,43.32387719,1.068466933,56.07544567,20.36288476,35.71256091,1.346991509,34.3655694,1.35859475,1.982829336,-3.360849102,3.360849102,0.895107265,0.315169208,0.99171492,31.89696082,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.64455866,0.975890763,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.718494083,30.660572,42.36305274,31.63646276,0,20.36288476,-0.044183464,92.53235041,0.044183464,87.46764959,0,0,42.36305274,31.63646276,63.06848489,2,8,49% -2/21/2018 17:00,67.51883554,124.6301555,330.1012047,683.8390317,68.61504531,189.653895,120.6194042,69.03449085,66.54604854,2.488442316,82.10585563,0,82.10585563,2.068996779,80.03685885,1.178425987,2.17520656,-1.398772977,1.398772977,0.769357957,0.207860633,2.033802307,65.41407334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.96659305,1.498981123,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473482848,62.87849544,65.4400759,64.37747656,120.6194042,0,0.176385668,79.84069451,-0.176385668,100.1593055,0.766530256,0,157.8984987,64.37747656,200.0322696,2,9,27% -2/21/2018 18:00,58.60143265,137.8302922,488.8613563,780.4081744,82.2778367,379.5739827,296.0918829,83.48209976,79.79685636,3.6852434,121.011076,0,121.011076,2.48098035,118.5300957,1.022787946,2.405592407,-0.618235312,0.618235312,0.635878155,0.168305053,2.569210558,82.63464315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.70377355,1.797461818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861384303,79.43156216,78.56515785,81.22902398,296.0918829,0,0.379406435,67.7030793,-0.379406435,112.2969207,0.918215203,0,350.4412262,81.22902398,403.6039978,2,10,15% -2/21/2018 19:00,51.92365749,153.8721688,599.8388319,826.0999185,90.37401084,547.1689477,454.9982083,92.17073945,87.64890097,4.521838488,148.1629794,0,148.1629794,2.725109871,145.4378695,0.906238783,2.685575973,-0.136255391,0.136255391,0.553454734,0.150663822,2.806854145,90.2780778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.2514575,1.974332825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033556273,86.77872228,86.28501377,88.7530551,454.9982083,0,0.550778663,56.57955111,-0.550778663,123.4204489,0.959219432,0,522.7281365,88.7530551,580.815236,2,11,11% -2/21/2018 20:00,48.47375726,172.5830484,653.6954565,844.1775718,94.03694651,669.1265593,572.9973412,96.12921809,91.20138561,4.927832473,161.3315926,0,161.3315926,2.835560897,158.4960317,0.846026665,3.012142427,0.24601257,-0.24601257,0.488083062,0.143854368,2.768084477,89.031112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.66624086,2.054354217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005467781,85.58009132,89.67170864,87.63444554,572.9973412,0,0.678763995,47.2528674,-0.678763995,132.7471326,0.976336694,0,649.1100383,87.63444554,706.4650302,2,12,9% -2/21/2018 21:00,48.96051666,192.2460471,646.2545017,841.8107438,93.53928371,730.8414953,635.2510267,95.5904686,90.71872919,4.871739413,159.5124405,0,159.5124405,2.820554527,156.691886,0.854522219,3.355326496,0.612932583,-0.612932583,0.425336045,0.14474063,2.477344127,79.67990295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.20229315,2.043482153,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794827387,76.59135349,88.99712054,78.63483564,635.2510267,0,0.754624518,41.00742821,-0.754624518,138.9925718,0.983741882,0,713.9201614,78.63483564,765.3850887,2,13,7% -2/21/2018 22:00,53.27307186,210.4123954,578.0917322,818.1251448,88.85133854,723.0999112,632.5698687,90.53004252,86.17214286,4.357899665,142.8442291,0,142.8442291,2.679195684,140.1650334,0.929790507,3.672389087,1.032894335,-1.032894335,0.353518355,0.153697646,1.97361023,63.47808925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.83194143,1.941068152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.429873893,61.01755389,84.26181533,62.95862204,632.5698687,0,0.773194508,39.35837403,-0.773194508,140.641626,0.985333219,0,707.5539202,62.95862204,748.7590791,2,14,6% -2/21/2018 23:00,60.57678382,225.7439871,454.5679112,763.3220696,79.58080885,640.3027955,559.6949167,80.60787877,77.18115384,3.426724925,112.6149079,0,112.6149079,2.399655009,110.2152529,1.057264328,3.939975842,1.616508569,-1.616508569,0.253714443,0.17506913,1.317116576,42.36299663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.1894608,1.738541885,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.954246475,40.72092371,75.14370728,42.4594656,559.6949167,0,0.733235601,42.84166376,-0.733235601,137.1583362,0.981809094,0,624.6572664,42.4594656,652.4461374,2,15,4% -2/21/2018 0:00,69.89656552,238.3558542,286.5204694,646.9565084,64.15117516,476.8500012,412.4733083,64.37669286,62.21678053,2.159912325,71.40459965,0,71.40459965,1.934394624,69.47020502,1.219925204,4.160094447,2.675893995,-2.675893995,0.072548866,0.223897355,0.605213311,19.4657405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.80513598,1.40146232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.438474984,18.71121018,60.24361096,20.1126725,412.4733083,0,0.637559562,50.38991802,-0.637559562,129.610082,0.971575955,0,460.9927593,20.1126725,474.1561012,2,16,3% -2/21/2018 1:00,80.45051097,248.9921595,96.75700309,367.3569827,35.81268353,216.6143587,181.1521645,35.46219415,34.73279899,0.72939516,24.53974016,0,24.53974016,1.079884543,23.45985561,1.404126301,4.345732996,5.943299663,-5.943299663,0,0.370130144,0.269971136,8.683199747,0.327147763,1,0.166695339,0,0.943251923,0.982013887,0.724496596,1,33.66764814,0.782372676,0.048453956,0.312029739,0.871799584,0.59629618,0.961238037,0.922476074,0.185315342,8.346621879,33.85296348,9.128994554,121.8886391,0,0.493122965,60.45394749,-0.493122965,119.5460525,0.948605412,0,149.4771862,9.128994554,155.4519305,2,17,4% -2/21/2018 2:00,91.89697262,258.4614507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603904745,4.511003305,-29.86411641,29.86411641,0,#DIV/0!,0,0,1,0.784353481,0,0.033472496,0.961238037,1,0.633962404,0.909465808,0,0,0.115824807,0.209300591,0.724496596,0.448993192,0.976395508,0.937633545,0,0,0,0,0,0,0.307005833,72.12111959,-0.307005833,107.8788804,0.887136645,0,0,0,0,2,18,0% -2/21/2018 3:00,103.6323425,267.5136837,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808725588,4.668994575,-3.932183161,3.932183161,0.797403386,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095500288,84.51988487,-0.095500288,95.48011513,0.52644137,0,0,0,0,2,19,0% -2/21/2018 4:00,115.4467799,276.9275192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01492642,4.833297,-1.873713643,1.873713643,0.850577594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.128405407,97.37745657,0.128405407,82.62254343,0,0.660608297,0,0,0,2,20,0% -2/21/2018 5:00,126.9999472,287.7150585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216567229,5.021575079,-1.049777781,1.049777781,0.709676263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.349441946,110.4531858,0.349441946,69.54681416,0,0.906914716,0,0,0,2,21,0% -2/21/2018 6:00,137.7629765,301.478926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404417527,5.261799884,-0.565456531,0.565456531,0.626852451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55253479,123.5410846,0.55253479,56.45891542,0,0.959507961,0,0,0,2,22,0% -2/21/2018 7:00,146.7079507,320.8317901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560536778,5.599571083,-0.215615569,0.215615569,0.567026124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723831472,136.3717267,0.723831472,43.62827331,0,0.980923147,0,0,0,2,23,0% -2/22/2018 8:00,151.8638212,348.1975036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.650523695,6.077192885,0.076249474,-0.076249474,0.517114262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851645561,148.3911033,0.851645561,31.60889669,0,0.99129013,0,0,0,2,0,0% -2/22/2018 9:00,151.0521575,19.3508752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636357491,0.337736485,0.350715315,-0.350715315,0.470177838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927253079,158.0105902,0.927253079,21.98940981,0,0.996077289,0,0,0,2,1,0% -2/22/2018 10:00,144.6886445,44.66230979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525293238,0.779504357,0.640195902,-0.640195902,0.420673742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945487157,160.9944716,0.945487157,19.00552843,0,0.997117209,0,0,0,2,2,0% -2/22/2018 11:00,135.1311857,62.28773491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.358484113,1.087126058,0.98642703,-0.98642703,0.361464733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905090453,154.8354684,0.905090453,25.16453163,0,0.994756903,0,0,0,2,3,0% -2/22/2018 12:00,124.0876503,75.0829657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165738059,1.310444964,1.471868748,-1.471868748,0.278449309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80880132,143.978982,0.80880132,36.02101804,0,0.988180121,0,0,0,2,4,0% -2/22/2018 13:00,112.4156417,85.38902318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962023078,1.4903196,2.337382803,-2.337382803,0.130437689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663167805,131.5419175,0.663167805,48.45808254,0,0.974604301,0,0,0,2,5,0% -2/22/2018 14:00,100.5740677,94.61383766,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755348623,1.651322985,4.870112536,-4.870112536,0,#DIV/0!,0,0,0.23235448,1,0.202519167,0,0.938554639,0.977316602,0.724496596,1,0,0,0.035808703,0.312029739,0.903475508,0.627972104,0.961238037,0.922476074,0,0,0,0,0,0,-0.478102056,118.5615175,0.478102056,61.43848251,0,0.945419818,0,0,0,2,6,0% -2/22/2018 15:00,88.53188727,103.6833082,1.938302494,14.45765255,1.567888802,1.535222912,0,1.535222912,1.520611169,0.014611743,4.282468654,3.765227142,0.517241513,0.047277632,0.469963881,1.545172926,1.809615108,-32.46772782,32.46772782,0,0.808897892,0.011819408,0.380152792,1,0.803244969,0,0.030790081,0.961238037,1,0.640893466,0.91639687,1.461669295,0.032862689,0.115824807,0.217149783,0.724496596,0.448993192,0.975316833,0.93655487,0.008563121,0.36787014,1.470232416,0.400732829,0,0.740827384,-0.260431431,105.0956633,0.260431431,74.90433673,0,0.858010885,1.470232416,1.036370789,2.14851637,2,7,46% -2/22/2018 16:00,77.57399274,113.3548794,146.5260554,469.6643332,45.46432831,45.19798637,0,45.19798637,44.09341107,1.104575299,55.99478104,19.09692524,36.8978558,1.370917244,35.52693856,1.353921587,1.978415868,-3.299968215,3.299968215,0.905518509,0.310281528,1.032594954,33.21180325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.38426389,0.993224877,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.748111529,31.92444855,43.13237542,32.91767343,0,19.09692524,-0.040660795,92.33033438,0.040660795,87.66966562,0,0,43.13237542,32.91767343,64.67633433,2,8,50% -2/22/2018 17:00,67.22556726,124.3944444,335.5107834,688.2457227,69.08798571,193.527448,123.993498,69.53395004,67.00472803,2.529222006,83.43173153,0,83.43173153,2.083257677,81.34847385,1.17330749,2.171092626,-1.386735253,1.386735253,0.767299385,0.205918823,2.061864325,66.31664429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40749323,1.509313095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493813684,63.74608097,65.90130692,65.25539406,123.993498,0,0.180158763,79.62099257,-0.180158763,100.3790074,0.772467011,0,161.6821936,65.25539406,204.3905439,2,9,26% -2/22/2018 18:00,58.27817188,137.6302606,494.4771081,783.2510936,82.64701299,384.1536589,300.271181,83.88247792,80.15490061,3.727577309,122.3838121,0,122.3838121,2.492112377,119.8916997,1.017145981,2.402101198,-0.615690038,0.615690038,0.635442887,0.167140221,2.59579181,83.4895876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.04793931,1.805526933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88064233,80.25336728,78.92858164,82.05889421,300.271181,0,0.38336516,67.45771515,-0.38336516,112.5422848,0.919576046,0,355.050767,82.05889421,408.7566721,2,10,15% -2/22/2018 19:00,51.57194118,153.7449862,605.5097948,828.2924266,90.69996456,552.1126539,459.5830393,92.52961459,87.96502599,4.564588602,149.5477987,0,149.5477987,2.734938579,146.8128601,0.900100175,2.683356218,-0.137327353,0.137327353,0.55363805,0.149791077,2.832323063,91.09724574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55532889,1.98145369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052008417,87.56613766,86.60733731,89.54759135,459.5830393,0,0.55485602,56.29920162,-0.55485602,123.7007984,0.959886532,0,527.7549072,89.54759135,586.3620148,2,11,11% -2/22/2018 20:00,48.1080542,172.574158,659.3152773,846.1120441,94.34264267,674.2665993,577.7985384,96.46806096,91.49786391,4.970197056,162.703401,0,162.703401,2.844778764,159.8586223,0.839643943,3.01198726,0.242702645,-0.242702645,0.488649093,0.14309185,2.792352334,89.8116497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.95122708,2.06103253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02304976,86.33037384,89.97427684,88.39140637,577.7985384,0,0.682886554,46.93037754,-0.682886554,133.0696225,0.976781396,0,654.3571399,88.39140637,712.2075476,2,12,9% -2/22/2018 21:00,48.60673179,192.3700966,651.7325698,843.7309488,93.83764579,736.0734991,640.1523692,95.92112995,91.00809455,4.913035404,160.8496583,0,160.8496583,2.829551245,158.020107,0.848347508,3.357491568,0.607420131,-0.607420131,0.42627873,0.143981827,2.500165924,80.41393038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.48044214,2.050000245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.811361701,77.29692857,89.29180384,79.34692882,640.1523692,0,0.758716235,40.64884562,-0.758716235,139.3511544,0.984099209,0,719.2652441,79.34692882,771.196222,2,13,7% -2/22/2018 22:00,52.95295703,210.6341982,583.347244,820.2747537,89.15586714,728.3674352,637.5024284,90.86500673,86.4674888,4.397517932,144.1276714,0,144.1276714,2.688378344,141.4392931,0.924203449,3.676260276,1.024203943,-1.024203943,0.3550045,0.152834985,1.994636638,64.15437081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.11583918,1.947720959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445107455,61.66762145,84.56094664,63.61534241,637.5024284,0,0.777181579,38.99675711,-0.777181579,141.0032429,0.98566497,0,712.9247588,63.61534241,754.5597281,2,14,6% -2/22/2018 23:00,60.29694009,226.0152764,459.5224408,766.0986403,79.91669001,645.6248466,564.6538654,80.9709812,77.50690694,3.464074262,113.826319,0,113.826319,2.409783065,111.4165359,1.052380133,3.944710732,1.601607,-1.601607,0.256262762,0.173912486,1.335774588,42.96310244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50258707,1.745879627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.967764142,41.29776824,75.47035121,43.04364787,564.6538654,0,0.737051126,42.5191811,-0.737051126,137.4808189,0.982162101,0,630.0519779,43.04364787,658.2231846,2,15,4% -2/22/2018 0:00,69.65250086,238.6465504,291.0597504,651.3220669,64.58656314,482.4261041,417.5929328,64.8331713,62.63903996,2.194131343,72.51832944,0,72.51832944,1.947523178,70.57080626,1.215665472,4.165168053,2.643712898,-2.643712898,0.078052157,0.22190139,0.620135383,19.94568562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.2110278,1.410973913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.449285974,19.17255169,60.66031378,20.5835256,417.5929328,0,0.641146606,50.12262772,-0.641146606,129.8773723,0.972014716,0,466.5667899,20.5835256,480.0382957,2,16,3% -2/22/2018 1:00,80.23456142,249.2911149,100.4083239,376.2332727,36.59349485,223.0184486,186.7714623,36.24698633,35.49006597,0.756920358,25.44858951,0,25.44858951,1.103428885,24.34516062,1.400357271,4.350950751,5.80983177,-5.80983177,0,0.364446825,0.275857221,8.872516492,0.316653323,1,0.170451851,0,0.942772766,0.98153473,0.724496596,1,34.39912353,0.799430471,0.047102952,0.312029739,0.875123473,0.599620069,0.961238037,0.922476074,0.189475053,8.528600335,34.58859858,9.328030806,127.6296581,0,0.496424628,60.23626416,-0.496424628,119.7637358,0.949279775,0,155.7448518,9.328030806,161.8498614,2,17,4% -2/22/2018 2:00,91.69638594,258.7685649,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600403847,4.516363458,-33.37068974,33.37068974,0,#DIV/0!,0,0,1,0.809046525,0,0.029957452,0.961238037,1,0.643056413,0.918559817,0,0,0.115824807,0.219599853,0.724496596,0.448993192,0.974977384,0.936215421,0,0,0,0,0,0,0.31005662,71.93735727,-0.31005662,108.0626427,0.888739131,0,0,0,0,2,18,0% -2/22/2018 3:00,103.439457,267.8345892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805359102,4.674595432,-3.983674425,3.983674425,0.788597861,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098267221,84.36060191,-0.098267221,95.63939809,0.541183333,0,0,0,0,2,19,0% -2/22/2018 4:00,115.2510649,277.2709422,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011510548,4.839290862,-1.884540302,1.884540302,0.852429062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12590326,97.23292086,0.12590326,82.76707914,0,0.652869694,0,0,0,2,20,0% -2/22/2018 5:00,126.7883072,288.0900048,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212873414,5.028119126,-1.052509364,1.052509364,0.710143391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347167159,110.3141435,0.347167159,69.68585655,0,0.90597716,0,0,0,2,21,0% -2/22/2018 6:00,137.5177652,301.8844658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400137782,5.268877889,-0.565252708,0.565252708,0.626817596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550434176,123.3968043,0.550434176,56.60319567,0,0.959162617,0,0,0,2,22,0% -2/22/2018 7:00,146.4084796,321.2175428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.555310022,5.606303737,-0.213851554,0.213851554,0.566724459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721839765,136.2065845,0.721839765,43.79341553,0,0.98073255,0,0,0,2,23,0% -2/23/2018 8:00,151.5080933,348.3909162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644315072,6.080568571,0.079204766,-0.079204766,0.516608877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849689936,148.1779611,0.849689936,31.82203889,0,0.991155005,0,0,0,2,0,0% -2/23/2018 9:00,150.6905292,19.21668324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.630045887,0.335394394,0.354942348,-0.354942348,0.469454973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925258184,157.7073191,0.925258184,22.29268085,0,0.995961029,0,0,0,2,1,0% -2/23/2018 10:00,144.3673377,44.35458493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.519685375,0.774133545,0.646180905,-0.646180905,0.419650247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943380323,160.6272146,0.943380323,19.37278537,0,0.996999107,0,0,0,2,2,0% -2/23/2018 11:00,134.8494054,61.9536907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353566118,1.081295887,0.99537398,-0.99537398,0.359934714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902806711,154.5294851,0.902806711,25.47051491,0,0.99461716,0,0,0,2,3,0% -2/23/2018 12:00,123.8300934,74.7663599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161242842,1.30491915,1.486926374,-1.486926374,0.275874304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806287887,143.7348174,0.806287887,36.26518256,0,0.98798741,0,0,0,2,4,0% -2/23/2018 13:00,112.1686796,85.09424223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957712777,1.485174701,2.369584467,-2.369584467,0.12493088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660387728,131.3294498,0.660387728,48.67055017,0,0.974286903,0,0,0,2,5,0% -2/23/2018 14:00,100.3270809,94.33635039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75103789,1.646479919,5.000255203,-5.000255203,0,#DIV/0!,0,0,0.245249019,1,0.197385745,0,0.93924518,0.978007143,0.724496596,1,0,0,0.037588948,0.312029739,0.898939658,0.623436254,0.961238037,0.922476074,0,0,0,0,0,0,-0.475036756,118.3617432,0.475036756,61.63825677,0,0.944744987,0,0,0,2,6,0% -2/23/2018 15:00,88.29857003,103.418496,2.704825784,19.42447624,2.128089955,2.08431031,0,2.08431031,2.063920191,0.020390119,5.720769713,5.000783623,0.719986091,0.064169764,0.655816327,1.541100772,1.804993262,-28.09931517,28.09931517,0,0.78677524,0.016042441,0.515980048,1,0.769341818,0,0.035573043,0.961238037,1,0.628574411,0.904077815,1.983918592,0.044413275,0.115824807,0.20320092,0.724496596,0.448993192,0.977224458,0.938462495,0.011622694,0.499615067,1.995541286,0.544028342,0,1.153471658,-0.25744754,104.9186619,0.25744754,75.08133807,0,0.855785676,1.995541286,1.531152864,2.997650213,2,7,50% -2/23/2018 16:00,77.30272987,113.1014415,151.3975368,478.3704335,46.25184721,45.99848195,0,45.99848195,44.85718336,1.141298583,55.83744532,17.73469587,38.10274945,1.394663844,36.70808561,1.349187157,1.973992542,-3.240629179,3.240629179,0.915666082,0.305499338,1.074452768,34.55809444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.11843087,1.010429208,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.778437373,33.21855485,43.89686825,34.22898406,0,17.73469587,-0.037073144,92.12462155,0.037073144,87.87537845,0,0,43.89686825,34.22898406,66.29905374,2,8,51% -2/23/2018 17:00,66.92895575,124.1580908,340.975582,692.6126694,69.5599222,197.4645401,127.4316882,70.03285186,67.46243389,2.570417966,84.77096584,0,84.77096584,2.097488303,82.67347753,1.168130643,2.166967477,-1.374729321,1.374729321,0.765246249,0.20400265,2.090101019,67.22483345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84745752,1.519623135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514271073,64.61906693,66.36172859,66.13869007,127.4316882,0,0.183986944,79.39792525,-0.183986944,100.6020747,0.778241586,0,165.5343678,66.13869007,208.8208176,2,9,26% -2/23/2018 18:00,57.95163893,137.4298872,500.1321087,786.0699319,83.0159857,388.7808616,304.4979071,84.28295453,80.51274744,3.770207092,123.7660583,0,123.7660583,2.503238265,121.2628201,1.011446906,2.398604022,-0.613078216,0.613078216,0.634996239,0.165988114,2.62249017,84.34829861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.39191529,1.813587602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899985201,81.07879297,79.29190049,82.89238057,304.4979071,0,0.387367453,67.20920653,-0.387367453,112.7907935,0.92092359,0,359.7112064,82.89238057,413.9626116,2,10,15% -2/23/2018 19:00,51.21704714,153.6186359,611.2054922,830.4651147,91.02547357,557.0884877,464.2002428,92.88824487,88.28071969,4.607525174,150.9386018,0,150.9386018,2.744753876,148.1938479,0.893906106,2.68115099,-0.13832162,0.13832162,0.55380808,0.148927774,2.85785642,91.91848628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85878569,1.98856484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.070507248,88.3555453,86.92929294,90.34411014,464.2002428,0,0.558964169,56.01580664,-0.558964169,123.9841934,0.960548828,0,532.8162922,90.34411014,591.9447054,2,11,11% -2/23/2018 20:00,47.7395685,172.5684282,664.9466425,848.0267358,94.64733687,679.4230369,582.6170177,96.80601912,91.79337045,5.012648666,164.0779784,0,164.0779784,2.853966418,161.224012,0.833212654,3.011887257,0.239477296,-0.239477296,0.48920066,0.142338243,2.816642077,90.59289134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.23527921,2.067688955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.040647597,87.08133302,90.2759268,89.14902198,582.6170177,0,0.687026709,46.60479445,-0.687026709,133.3952055,0.977222626,0,659.6224586,89.14902198,717.9687105,2,12,9% -2/23/2018 21:00,48.25107188,192.4996348,657.211033,845.6285236,94.13430549,741.3064314,645.0562882,96.25014324,91.29580886,4.954334374,162.1869205,0,162.1869205,2.838496629,159.3484239,0.842140072,3.359752436,0.602009998,-0.602009998,0.427203917,0.143232996,2.522980987,81.14774123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.75700409,2.056481145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827891137,78.00229548,89.58489522,80.05877662,645.0562882,0,0.762812831,40.28719768,-0.762812831,139.7128023,0.984453121,0,724.6125716,80.05877662,777.0094398,2,13,7% -2/23/2018 22:00,52.63207327,210.8622545,588.5948778,822.3949972,89.45782376,733.6212725,642.4238554,91.19741712,86.76034031,4.437076813,145.4091261,0,145.4091261,2.69748345,142.7116426,0.918602971,3.680240609,1.015660741,-1.015660741,0.356465474,0.151985393,2.015645621,64.83009191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.39733919,1.954317577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.460328391,62.31715027,84.85766758,64.27146785,642.4238554,0,0.781162164,38.63289449,-0.781162164,141.3671055,0.985992804,0,718.2829659,64.27146785,760.3473562,2,14,6% -2/23/2018 23:00,60.01715978,226.2922774,464.4646867,768.8309048,80.24866325,650.9193028,569.5891019,81.33020097,77.82886997,3.501330999,115.034634,0,115.034634,2.419793283,112.6148407,1.047497046,3.949545312,1.586977732,-1.586977732,0.258764514,0.172776673,1.354429377,43.56310458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.81207018,1.753131996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.981279473,41.87451312,75.79334965,43.62764512,569.5891019,0,0.740850944,42.1960465,-0.740850944,137.8039535,0.982510041,0,635.4203614,43.62764512,663.9737825,2,15,4% -2/23/2018 0:00,69.40892641,238.9420784,295.5885245,655.6049939,65.01499474,487.9589523,422.6761284,65.28282392,63.05455277,2.228271154,73.62930193,0,73.62930193,1.960441971,71.66885996,1.211414296,4.170325989,2.612297944,-2.612297944,0.083424431,0.219951011,0.635115557,20.4274995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.61043452,1.420333534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.460139059,19.63568952,61.07057357,21.05602306,422.6761284,0,0.644711575,49.85594617,-0.644711575,130.1440538,0.97244594,0,472.1002587,21.05602306,485.8810047,2,16,3% -2/23/2018 1:00,80.01915645,249.5941536,104.0752609,384.9381596,37.35820084,229.370634,192.3543575,37.01627653,36.23171325,0.784563278,26.36073954,0,26.36073954,1.126487592,25.23425194,1.396597745,4.356239774,5.682248298,-5.682248298,0,0.358953708,0.281621898,9.057928312,0.306310905,1,0.174202864,0,0.94229116,0.981053123,0.724496596,1,35.11504863,0.816136426,0.045759953,0.312029739,0.878441987,0.602938583,0.961238037,0.922476074,0.193566695,8.706825228,35.30861533,9.522961654,133.4341201,0,0.499701972,60.01971541,-0.499701972,119.9802846,0.949940359,0,162.0630712,9.522961654,168.2956592,2,17,4% -2/23/2018 2:00,91.49631763,259.079226,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596911996,4.521785518,-37.80284422,37.80284422,0,#DIV/0!,0,0,1,0.833189342,0,0.026446868,0.961238037,1,0.652235964,0.927739368,0,0,0.115824807,0.230001135,0.724496596,0.448993192,0.97352183,0.934759867,0,0,0,0,0,0,0.313081924,71.75493993,-0.313081924,108.2450601,0.890297391,0,0,0,0,2,18,0% -2/23/2018 3:00,103.2468172,268.1586664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801996901,4.680251646,-4.036347942,4.036347942,0.779590159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101012207,84.20253918,-0.101012207,95.79746082,0.55501032,0,0,0,0,2,19,0% -2/23/2018 4:00,115.0551706,277.6172229,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008091549,4.8453346,-1.895403825,1.895403825,0.854286834,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123416358,97.08931167,0.123416358,82.91068833,0,0.64486732,0,0,0,2,20,0% -2/23/2018 5:00,126.5759148,288.4673803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209166468,5.034705571,-1.05518621,1.05518621,0.710601159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344898214,110.1755825,0.344898214,69.82441748,0,0.905029693,0,0,0,2,21,0% -2/23/2018 6:00,137.2711253,302.2915763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395833104,5.275983308,-0.564979229,0.564979229,0.626770828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548327949,123.2523788,0.548327949,56.74762125,0,0.958813694,0,0,0,2,22,0% -2/23/2018 7:00,146.1070182,321.6036007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550048527,5.613041718,-0.212011173,0.212011173,0.566409735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719829731,136.0404245,0.719829731,43.95957546,0,0.980539129,0,0,0,2,23,0% -2/24/2018 8:00,151.1500927,348.5862058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638066782,6.083977019,0.082246311,-0.082246311,0.516088742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847702887,147.9626948,0.847702887,32.03730521,0,0.99101707,0,0,0,2,0,0% -2/24/2018 9:00,150.3257063,19.08936257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623678526,0.333172229,0.359274105,-0.359274105,0.468714199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923219288,157.4013525,0.923219288,22.5986475,0,0.995841686,0,0,0,2,1,0% -2/24/2018 10:00,144.041748,44.05308178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514002763,0.768871323,0.652306372,-0.652306372,0.41860273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9412183,160.2571709,0.9412183,19.74282909,0,0.996877361,0,0,0,2,2,0% -2/24/2018 11:00,134.5630571,61.6231344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348568399,1.075526591,1.004536952,-1.004536952,0.358367753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900458753,154.2184339,0.900458753,25.78156611,0,0.994472748,0,0,0,2,3,0% -2/24/2018 12:00,123.5681351,74.45142882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156670808,1.299422566,1.502392857,-1.502392857,0.273229379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803703996,143.485278,0.803703996,36.51472203,0,0.987788041,0,0,0,2,4,0% -2/24/2018 13:00,111.9176084,84.80012975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953330758,1.48004147,2.40291314,-2.40291314,0.119231341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657534165,131.1120842,0.657534165,48.88791576,0,0.973958324,0,0,0,2,5,0% -2/24/2018 14:00,100.0762822,94.05894863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746660627,1.641638345,5.1385826,-5.1385826,0,#DIV/0!,0,0,0.258487916,1,0.192203869,0,0.939936353,0.978698316,0.724496596,1,0,0,0.039396479,0.312029739,0.894359875,0.618856471,0.961238037,0.922476074,0,0,0,0,0,0,-0.47189837,118.1575946,0.47189837,61.84240541,0,0.944044983,0,0,0,2,6,0% -2/24/2018 15:00,88.05973092,103.153395,3.653464878,25.42306588,2.792700581,2.736031716,0,2.736031716,2.708490355,0.027541361,7.436711504,6.46667642,0.970035085,0.084210226,0.885824858,1.536932243,1.800366377,-24.71318515,24.71318515,0,0.764397818,0.021052557,0.677122589,1,0.73378464,0,0.040442167,0.961238037,1,0.616218767,0.891722171,2.603503952,0.058068173,0.115824807,0.189219963,0.724496596,0.448993192,0.979093627,0.940331664,0.015252506,0.655979163,2.618756457,0.714047336,0,1.721528593,-0.254362572,104.7358178,0.254362572,75.26418217,0,0.853430199,2.618756457,2.183251827,4.047651113,2,7,55% -2/24/2018 16:00,77.02808556,112.8474627,156.3476,486.9826555,47.03294503,46.79334245,0,46.79334245,45.6147282,1.17861425,55.60268943,16.27618685,39.32650258,1.418216826,37.90828575,1.34439371,1.969559776,-3.182811426,3.182811426,0.9255535,0.300822942,1.117265865,35.93511078,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.84661179,1.027493262,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.809455316,34.54219534,44.6560671,35.5696886,0,16.27618685,-0.033422519,91.91532596,0.033422519,88.08467404,0,0,44.6560671,35.5696886,67.9357169,2,8,52% -2/24/2018 17:00,66.62913258,123.921096,346.492619,696.9375683,70.03058927,201.463156,130.9322397,70.53091633,67.91890861,2.612007721,86.12282767,0,86.12282767,2.111680652,84.01114702,1.162897741,2.162831138,-1.362765533,1.362765533,0.763200321,0.202112788,2.118496456,68.13812832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28623838,1.529905444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.534843471,65.49696071,66.82108185,67.02686615,130.9322397,0,0.187867961,79.1716131,-0.187867961,100.8283869,0.78385563,0,169.4530551,67.02686615,213.3207985,2,9,26% -2/24/2018 18:00,57.62196549,137.2291492,505.8233158,788.8634108,83.38454112,393.4530328,308.7697334,84.68329936,80.87018954,3.813109816,125.1570707,0,125.1570707,2.514351571,122.6427191,1.005693019,2.395100483,-0.61040488,0.61040488,0.634539072,0.164849145,2.649291478,85.2103208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.73550224,1.821639154,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919402657,81.90740149,79.65490489,83.72904064,308.7697334,0,0.391410895,66.95768208,-0.391410895,113.0423179,0.922257005,0,364.4199545,83.72904064,419.218937,2,10,15% -2/24/2018 19:00,50.85910226,153.4930853,616.922942,832.617162,91.3503532,562.093671,468.8472423,93.24642873,88.59580301,4.650625726,152.33466,0,152.33466,2.754550196,149.5801098,0.887658789,2.678959717,-0.13924088,0.13924088,0.553965283,0.148074171,2.883441449,92.74138877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.16165576,1.99566224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089043514,89.14655047,87.25069927,91.14221271,468.8472423,0,0.563100623,55.72950116,-0.563100623,124.2704988,0.961205923,0,537.9094456,91.14221271,597.560201,2,11,11% -2/24/2018 20:00,47.36842211,172.5658485,670.5867418,849.9210808,94.95086797,684.5930722,587.4501571,97.14291509,92.08774897,5.055166117,165.4546383,0,165.4546383,2.863119001,162.5915193,0.826734927,3.011842233,0.2363348,-0.2363348,0.489738059,0.141593715,2.840942405,91.37447341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51824704,2.07431997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058253101,87.83261943,90.57650014,89.9069394,587.4501571,0,0.691182006,46.27625217,-0.691182006,133.7237478,0.977660154,0,664.9031111,89.9069394,723.7454048,2,12,9% -2/24/2018 21:00,47.89365866,192.634667,662.6873458,847.5030827,94.42912612,746.5376265,649.9602698,96.5773567,91.58173957,4.995617133,163.5236059,0,163.5236059,2.847386559,160.6762193,0.835902034,3.362109193,0.596700686,-0.596700686,0.428111862,0.142494235,2.545779604,81.88102312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.03185155,2.062921869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844408657,78.70715392,89.87626021,80.77007579,649.9602698,0,0.766911983,39.9226083,-0.766911983,140.0773917,0.98480347,0,729.9593893,80.77007579,782.8217885,2,13,7% -2/24/2018 22:00,52.31053578,211.0965363,593.8324221,824.4856779,89.75710161,738.8590259,647.3318725,91.52715346,87.05059383,4.476559633,146.6880537,0,146.6880537,2.706507782,143.9815459,0.912991083,3.684329597,1.007262597,-1.007262597,0.357901641,0.151148873,2.036629089,65.50499237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.67634192,1.960855675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475530842,62.96589027,85.15187276,64.92674594,647.3318725,0,0.785134163,38.26691161,-0.785134163,141.7330884,0.986316616,0,723.626055,64.92674594,766.1193117,2,14,6% -2/24/2018 23:00,59.73753853,226.5749165,469.3928014,771.5189936,80.57666679,656.184165,574.4987008,81.6854642,78.14698299,3.538481209,116.2394029,0,116.2394029,2.4296838,113.8097191,1.042616734,3.954478296,1.572615498,-1.572615498,0.261220601,0.171661488,1.373074271,44.16278847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.11785251,1.760297642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994787635,42.45095209,76.11264015,44.21124973,574.4987008,0,0.744633257,41.87239188,-0.744633257,138.1276081,0.982852851,0,640.7603263,44.21124973,669.695705,2,15,5% -2/24/2018 0:00,69.16591295,239.2423364,300.1052308,659.8062941,65.43650747,493.4470976,427.7214223,65.72567533,63.46335534,2.262319995,74.73713984,0,74.73713984,1.973152135,72.76398771,1.207172911,4.175566481,2.58162549,-2.58162549,0.088669729,0.218045208,0.650147619,20.9109823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.0033911,1.429542005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.471029737,20.10043158,61.47442083,21.52997358,427.7214223,0,0.648253019,49.58998386,-0.648253019,130.4100161,0.972869623,0,477.5915995,21.52997358,491.6825366,2,16,3% -2/24/2018 1:00,79.80434712,249.9011604,107.7554369,393.4717782,38.10697089,235.6683649,197.8981538,37.77021112,36.95790512,0.812305999,27.27561899,0,27.27561899,1.149065772,26.12655322,1.392848615,4.361598053,5.560178529,-5.560178529,0,0.353643139,0.287266443,9.239476279,0.296118082,1,0.177947971,0,0.941807178,0.980569141,0.724496596,1,35.81557408,0.83249424,0.044425006,0.312029739,0.88175475,0.606251346,0.961238037,0.922476074,0.197591306,8.88133604,36.01316538,9.71383028,139.296932,0,0.50295387,59.80438032,-0.50295387,120.1956197,0.950587304,0,168.4270605,9.71383028,174.7845681,2,17,4% -2/24/2018 2:00,91.29679532,259.3933109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593429675,4.527267333,-43.58271473,43.58271473,0,#DIV/0!,0,0,1,0.856799931,0,0.022940851,0.961238037,1,0.661500293,0.937003697,0,0,0.115824807,0.24050359,0.724496596,0.448993192,0.972028436,0.933266473,0,0,0,0,0,0,0.316081072,71.57391052,-0.316081072,108.4260895,0.891812736,0,0,0,0,2,18,0% -2/24/2018 3:00,103.0544358,268.4857824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798639213,4.685960898,-4.090248432,4.090248432,0.770372633,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103734937,84.04571421,-0.103734937,95.95428579,0.568002312,0,0,0,0,2,19,0% -2/24/2018 4:00,114.8591008,277.9662123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004669485,4.851425615,-1.906305847,1.906305847,0.856151189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120944695,96.94662676,0.120944695,83.05337324,0,0.636587904,0,0,0,2,20,0% -2/24/2018 5:00,126.3627717,288.8470093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205446419,5.041331347,-1.057808925,1.057808925,0.71104967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.342634861,110.0374856,0.342634861,69.96251441,0,0.904072058,0,0,0,2,21,0% -2/24/2018 6:00,137.0230695,302.7000448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391503713,5.283112428,-0.564636749,0.564636749,0.626712261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546215704,123.1077798,0.546215704,56.89222018,0,0.958461072,0,0,0,2,22,0% -2/24/2018 7:00,145.8036095,321.9897294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544753047,5.619780936,-0.210095116,0.210095116,0.56608207,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717800909,135.8732166,0.717800909,44.12678339,0,0.980342802,0,0,0,2,23,0% -2/25/2018 8:00,150.7899079,348.7831178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631780371,6.087413781,0.085373454,-0.085373454,0.515553969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845683999,147.745295,0.845683999,32.25470502,0,0.990876261,0,0,0,2,0,0% -2/25/2018 9:00,149.9578334,18.96864794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617257931,0.331065361,0.363710097,-0.363710097,0.4679556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921136127,157.0927452,0.921136127,22.90725482,0,0.995719206,0,0,0,2,1,0% -2/25/2018 10:00,143.7120396,43.75774049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.508248266,0.763716645,0.658572283,-0.658572283,0.417531196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939001063,159.884469,0.939001063,20.11553097,0,0.996751924,0,0,0,2,2,0% -2/25/2018 11:00,134.2722901,61.29611961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343493557,1.069819106,1.013917369,-1.013917369,0.356763608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898046866,153.9025124,0.898046866,26.09748758,0,0.994323618,0,0,0,2,3,0% -2/25/2018 12:00,123.3019108,74.1382464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152024317,1.293956501,1.518275131,-1.518275131,0.270513351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801050299,143.2305159,0.801050299,36.76948414,0,0.987581947,0,0,0,2,4,0% -2/25/2018 13:00,111.6625571,84.50675214,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948879272,1.474921065,2.437408757,-2.437408757,0.113332243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654608163,130.8899455,0.654608163,49.11005454,0,0.973618429,0,0,0,2,5,0% -2/25/2018 14:00,99.82179929,93.781685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742219063,1.636799181,5.285806923,-5.285806923,0,#DIV/0!,0,0,0.272077453,1,0.186976069,0,0.940627639,0.979389603,0.724496596,1,0,0,0.041230883,0.312029739,0.889738381,0.614234977,0.961238037,0.922476074,0,0,0,0,0,0,-0.468688338,117.9491873,0.468688338,62.05081266,0,0.9433193,0,0,0,2,6,0% -2/25/2018 15:00,87.81566694,102.8880419,4.798743149,32.48488824,3.560595621,3.489405478,0,3.489405478,3.453230525,0.036174953,9.430462738,8.159586809,1.27087593,0.107365095,1.163510834,1.532672523,1.795735092,-22.01580794,22.01580794,0,0.741985039,0.026841274,0.863307631,1,0.696517101,0,0.045390709,0.961238037,1,0.603853478,0.879356882,3.319376531,0.073809643,0.115824807,0.175237101,0.724496596,0.448993192,0.980919781,0.942157818,0.019446411,0.836679933,3.338822943,0.910489576,0,2.476295057,-0.251181003,104.5474089,0.251181003,75.45259114,0,0.85094036,3.338822943,3.017668984,5.313826939,2,7,59% -2/25/2018 16:00,76.75019342,112.592961,161.3731278,495.4947063,47.80717563,47.5821117,0,47.5821117,46.36561289,1.216498802,55.29000967,14.72166379,40.56834589,1.441562735,39.12678315,1.339543577,1.965117884,-3.126493001,3.126493001,0.935184518,0.296252395,1.161009742,37.34206424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.56839072,1.044407294,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841147606,35.89461252,45.40953832,36.93901981,0,14.72166379,-0.029711042,91.70256784,0.029711042,88.29743216,0,0,45.40953832,36.93901981,69.58538801,2,8,53% -2/25/2018 17:00,66.32623329,123.6834547,352.0588368,701.2182562,70.49972797,205.5211574,134.4932881,71.02786928,68.37390106,2.653968222,87.4865679,0,87.4865679,2.125826915,85.36074098,1.157611151,2.158683514,-1.350853921,1.350853921,0.761163315,0.200249846,2.147034614,69.05601357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.72359442,1.540154363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.555519269,66.37926692,67.27911369,67.91942128,134.4932881,0,0.191799468,78.94218228,-0.191799468,101.0578177,0.789311059,0,173.4361534,67.91942128,217.8880563,2,9,26% -2/25/2018 18:00,57.28928623,137.0280159,511.5476482,791.6303246,83.75246873,398.1675336,313.0842486,85.08328503,81.22702278,3.856262251,126.5560957,0,126.5560957,2.525445946,124.0306498,0.999886671,2.391590046,-0.607675132,0.607675132,0.634072257,0.16372369,2.676181594,86.07519938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.07850392,1.829676991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938884455,82.73875567,80.01738837,84.56843266,313.0842486,0,0.395492996,66.70327551,-0.395492996,113.2967245,0.923575511,0,369.1743332,84.56843266,424.522681,2,10,15% -2/25/2018 19:00,50.49823502,153.3682924,622.6591588,834.7478002,91.67442219,567.125382,473.5214142,93.60396787,88.91010012,4.693867751,153.735244,0,153.735244,2.764322072,150.9709219,0.881360468,2.67678167,-0.140087981,0.140087981,0.554110145,0.147230505,2.909065533,93.56554739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.4637701,2.002741931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107608076,89.93876309,87.57137817,91.94150502,473.5214142,0,0.567262848,55.4404245,-0.567262848,124.5595755,0.961857439,0,543.031473,91.94150502,603.2053492,2,11,11% -2/25/2018 20:00,46.99473676,172.5663995,676.232796,851.7945602,95.25307941,689.7739009,592.2953248,97.47857608,92.38084762,5.097728458,166.8327023,0,166.8327023,2.872231791,163.9604705,0.820212888,3.011851849,0.233273246,-0.233273246,0.490261615,0.140858414,2.865242286,92.15604112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79998461,2.080922155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.075858282,88.58389205,90.87584289,90.6648142,592.2953248,0,0.695349973,45.94488787,-0.695349973,134.0551121,0.978093763,0,670.1962059,90.6648142,729.5345135,2,12,9% -2/25/2018 21:00,47.53461181,192.7751904,668.1590262,849.3542896,94.7219771,751.7644533,654.8618283,96.90262498,91.86576,5.036864971,164.8591087,0,164.8591087,2.856217096,162.0028916,0.829635485,3.364561789,0.591490473,-0.591490473,0.429002861,0.141765618,2.568552433,82.61347558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.3048628,2.069319563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.860907494,79.41121508,90.16577029,81.48053465,654.8618283,0,0.771011386,39.55520247,-0.771011386,140.4447975,0.985150115,0,735.3029756,81.48053465,788.6303559,2,13,7% -2/25/2018 22:00,51.98845589,211.3370073,599.0577559,826.5466553,90.05360172,744.078372,652.2242682,91.85410377,87.33815337,4.515950407,147.9639369,0,147.9639369,2.715448354,145.2484886,0.907369728,3.688526609,0.999007102,-0.999007102,0.359313413,0.150325408,2.05757939,66.17882606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95275508,1.967333089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490709264,63.61360485,85.44346435,65.58093794,652.2242682,0,0.789095527,37.89893278,-0.789095527,142.1010672,0.986636315,0,728.9516132,65.58093794,771.8730255,2,14,6% -2/25/2018 23:00,59.45816664,226.8631129,474.3050488,774.1631114,80.90064849,661.4175459,579.3808386,82.03670725,78.46119544,3.575511805,117.4402034,0,117.4402034,2.439453043,115.0007504,1.037740775,3.959508271,1.558514694,-1.558514694,0.26363198,0.170566703,1.391703059,44.76195431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.41988548,1.767375426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.008284128,43.02689309,76.4281696,44.79426852,579.3808386,0,0.748396339,41.54834584,-0.748396339,138.4516542,0.98319048,0,646.0698946,44.79426852,675.3868474,2,15,5% -2/25/2018 0:00,68.92352511,239.5472172,304.6084357,663.9270827,65.85115045,498.8892427,432.7274804,66.16176236,63.8654953,2.296267056,75.84149703,0,75.84149703,1.985655151,73.85584188,1.202942445,4.180887655,2.551671923,-2.551671923,0.093792091,0.216182951,0.66522579,21.3959481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.38994333,1.438600398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48195382,20.56659914,61.87189715,22.00519954,432.7274804,0,0.651769587,49.32484562,-0.651769587,130.6751544,0.973285773,0,483.0393974,22.00519954,497.4413604,2,16,3% -2/25/2018 1:00,79.59017782,250.212016,111.4466597,401.8348907,38.84001517,241.9094867,203.4005093,38.5089774,37.6688454,0.840131996,28.1927027,0,28.1927027,1.171169762,27.02153294,1.389110655,4.367023508,5.443278503,-5.443278503,0,0.348507665,0.29279244,9.417211351,0.286072146,1,0.181686888,0,0.941320879,0.980082842,0.724496596,1,36.50088985,0.848508505,0.04309811,0.312029739,0.8850615,0.609558096,0.961238037,0.922476074,0.201550102,9.052181752,36.70243995,9.900690257,145.2132891,0,0.506179314,59.59033082,-0.506179314,120.4096692,0.951220776,0,174.8323375,9.900690257,181.3121412,2,17,4% -2/25/2018 2:00,91.09784032,259.7106931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589957255,4.532806697,-51.43547157,51.43547157,0,#DIV/0!,0,0,1,0.879896289,0,0.019439387,0.961238037,1,0.670848943,0.946352347,0,0,0.115824807,0.251106627,0.724496596,0.448993192,0.970496767,0.931734804,0,0,0,0,0,0,0.319053517,71.39430476,-0.319053517,108.6056952,0.893286479,0,0,0,0,2,18,0% -2/25/2018 3:00,102.8623201,268.8158018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795286162,4.691720823,-4.145425176,4.145425176,0.760936854,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106435229,83.89013748,-0.106435229,96.10986252,0.580230727,0,0,0,0,2,19,0% -2/25/2018 4:00,114.6628538,278.3177594,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001244329,4.857561268,-1.917248687,1.917248687,0.858022525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118488148,96.80485732,0.118488148,83.19514268,0,0.628016865,0,0,0,2,20,0% -2/25/2018 5:00,126.1488753,289.228714,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201713221,5.04799335,-1.060378437,1.060378437,0.711489082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340376748,109.8998293,0.340376748,70.10017072,0,0.90310395,0,0,0,2,21,0% -2/25/2018 6:00,136.773607,303.1096572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387149772,5.290261513,-0.564226127,0.564226127,0.62664204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544096957,122.9629744,0.544096957,57.03702555,0,0.958104614,0,0,0,2,22,0% -2/25/2018 7:00,145.4982947,322.3756948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.539424298,5.626517302,-0.20810422,0.20810422,0.565741607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715752786,135.7049268,0.715752786,44.29507324,0,0.980143478,0,0,0,2,23,0% -2/26/2018 8:00,150.4276257,348.981397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.625457355,6.090874406,0.088585429,-0.088585429,0.515004689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843632841,147.5257507,0.843632841,32.47424934,0,0.990732511,0,0,0,2,0,0% -2/26/2018 9:00,149.5870541,18.85426639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610786612,0.329069027,0.368249731,-0.368249731,0.467179277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919008448,156.7815515,0.919008448,23.21844847,0,0.995593536,0,0,0,2,1,0% -2/26/2018 10:00,143.3783786,43.46848372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502424783,0.758668162,0.664978522,-0.664978522,0.416435665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936728629,159.5092358,0.936728629,20.49076424,0,0.996622748,0,0,0,2,2,0% -2/26/2018 11:00,133.9772578,60.97268498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338344272,1.064174107,1.023516578,-1.023516578,0.355122046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895571409,153.5819201,0.895571409,26.41807992,0,0.994169723,0,0,0,2,3,0% -2/26/2018 12:00,123.0315608,73.82687563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14730582,1.288522056,1.534580212,-1.534580212,0.267725018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798327541,142.9706898,0.798327541,37.02931023,0,0.987369065,0,0,0,2,4,0% -2/26/2018 13:00,111.4036594,84.21416746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944360655,1.469814499,2.473113153,-2.473113153,0.107226432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651610873,130.6631652,0.651610873,49.33683479,0,0.973267088,0,0,0,2,5,0% -2/26/2018 14:00,99.56376482,93.50460518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737715512,1.631963226,5.442726138,-5.442726138,0,#DIV/0!,0,0,0.286023997,1,0.181704924,0,0.941318525,0.980080489,0.724496596,1,0,0,0.043091724,0.312029739,0.885077449,0.609574045,0.961238037,0.922476074,0,0,0,0,0,0,-0.465408209,117.7366439,0.465408209,62.26335614,0,0.94256743,0,0,0,2,6,0% -2/26/2018 15:00,87.56667645,102.6224673,6.151796397,40.61021795,4.427618847,4.340484643,0,4.340484643,4.294109803,0.04637484,11.69265594,10.06757263,1.625083304,0.133509044,1.49157426,1.528326819,1.791099941,-19.81974075,19.81974075,0,0.719727794,0.033377261,1.073527451,1,0.657478995,0,0.050411998,0.961238037,1,0.591504442,0.867007846,4.127661677,0.091569868,0.115824807,0.161280904,0.724496596,0.448993192,0.982698949,0.943936986,0.024181712,1.040701302,4.151843389,1.13227117,0,3.4483551,-0.247907378,104.353716,0.247907378,75.64628395,0,0.848311771,4.151843389,4.057551391,6.807429623,2,7,64% -2/26/2018 16:00,76.4691911,112.3379481,166.4708905,503.9008224,48.5741273,48.36436603,0,48.36436603,47.10943814,1.25492789,54.89914378,13.07165988,41.8274839,1.464689158,40.36279474,1.334639161,1.960667069,-3.071650668,3.071650668,0.94456311,0.291787514,1.205658044,38.7781071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.28338384,1.061162309,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.873495148,37.27499154,46.15687899,38.33615385,0,13.07165988,-0.025940938,91.486473,0.025940938,88.513527,0,0,46.15687899,38.33615385,71.24712496,2,8,54% -2/26/2018 17:00,66.02039672,123.4451547,357.6711157,705.4527158,70.9670868,209.6362929,138.1128496,71.52344324,68.82716729,2.696275951,88.86142247,0,88.86142247,2.139919508,86.72150297,1.152273296,2.154524395,-1.339004162,1.339004162,0.759136887,0.198414364,2.175699451,69.97797326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.15929117,1.550364399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576286846,67.26548964,67.73557801,68.81585404,138.1128496,0,0.195779032,78.70976396,-0.195779032,101.290236,0.794610035,0,177.4814343,68.81585404,222.5200345,2,9,25% -2/26/2018 18:00,56.95373817,136.8264486,517.3019986,794.3695441,84.11956208,402.9216563,317.4389684,85.48268789,81.58304691,3.899640975,127.9623738,0,127.9623738,2.536515165,125.4258587,0.994030252,2.388072032,-0.604894123,0.604894123,0.633596677,0.162612096,2.703146459,86.94248213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.42072785,1.837696602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958420408,83.57242084,80.37914826,85.41011745,317.4389684,0,0.399611202,66.4461249,-0.399611202,113.5538751,0.924878382,0,373.9715879,85.41011745,429.8708016,2,10,15% -2/26/2018 19:00,50.13457478,153.2442061,628.4111661,836.856316,91.99750338,572.1807673,478.2200993,93.96066803,89.22343921,4.737228812,155.1396269,0,155.1396269,2.774064161,152.3655627,0.875013399,2.674615957,-0.140865904,0.140865904,0.554243178,0.14639699,2.934716257,94.39056286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.76496355,2.009800042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126191938,90.73179934,87.89115549,92.74159938,478.2200993,0,0.571448276,55.14871967,-0.571448276,124.8512803,0.962503017,0,548.1794439,92.74159938,608.8769659,2,11,11% -2/26/2018 20:00,46.61863325,172.5700526,681.8820689,853.6467036,95.55381977,694.9627247,597.1498901,97.81283461,92.67251955,5.140315063,168.2115024,0,168.2115024,2.881300222,165.3302022,0.813648643,3.011915608,0.230290544,-0.230290544,0.490771687,0.140132472,2.889531009,92.93724995,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.08035076,2.087492203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.09345538,89.33481969,91.17380614,91.42231189,597.1498901,0,0.699528139,45.61084121,-0.699528139,134.3891588,0.978523247,0,675.4988556,91.42231189,735.3329303,2,12,9% -2/26/2018 21:00,47.17404831,192.9211941,673.6236658,851.181857,95.01273443,756.9843263,659.7585166,97.22580966,92.14774992,5.078059732,166.1928412,0,166.1928412,2.864984503,163.3278567,0.823342464,3.367110034,0.586377421,-0.586377421,0.429877245,0.141047204,2.591290542,83.34481132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57592224,2.075671519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877381176,80.11420282,90.45330341,82.18987434,659.7585166,0,0.775108763,39.18510552,-0.775108763,140.8148945,0.985492924,0,740.640653,82.18987434,794.432282,2,13,7% -2/26/2018 22:00,51.66594049,211.5836239,604.2688579,828.5778455,90.34723328,749.2770704,657.0989056,92.17816475,87.62293085,4.555233895,149.236283,0,149.236283,2.724302429,146.5119806,0.901740773,3.692830881,0.990891584,-0.990891584,0.360701249,0.149514959,2.07848934,66.85136194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22649403,1.973747836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505858451,64.26007191,85.73235249,66.23381974,657.0989056,0,0.793044262,37.52908045,-0.793044262,142.4709196,0.986951817,0,734.2573111,66.23381974,777.6060215,2,14,6% -2/26/2018 23:00,59.17912863,227.1567793,479.1998118,776.7635342,81.22056601,666.6176763,584.2337995,82.38387686,78.77146627,3.612410596,118.6366421,0,118.6366421,2.449099737,116.1875424,1.032870643,3.964633717,1.544669399,-1.544669399,0.265999665,0.169492066,1.410310015,45.360418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.7181296,1.774364422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.021764805,43.60215915,76.7398944,45.37652358,584.2337995,0,0.752138552,41.22403305,-0.752138552,138.7759669,0.983522886,0,651.3472071,45.37652358,681.0452343,2,15,5% -2/26/2018 0:00,68.68182106,239.8566088,309.0968375,667.968578,66.25898415,504.2842448,437.693111,66.59113383,64.26103131,2.330102524,76.94205968,0,76.94205968,1.997952842,74.94410684,1.198723914,4.186287556,2.522413688,-2.522413688,0.098795544,0.21436319,0.680344747,21.88222575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.77014758,1.447510033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.492907454,21.03402772,62.26305504,22.48153775,437.693111,0,0.655260031,49.06063019,-0.655260031,130.9393698,0.973694415,0,488.4423927,22.48153775,503.1561095,2,16,3% -2/26/2018 1:00,79.37668614,250.5265979,115.1469244,410.0288225,39.55757991,248.0922206,208.8594216,39.23279908,38.36477292,0.868026155,29.11151194,0,29.11151194,1.192806986,27.91870495,1.385384523,4.372513997,5.331228642,-5.331228642,0,0.343540048,0.298201747,9.591193231,0.276170125,1,0.185419457,0,0.940832305,0.979594268,0.724496596,1,37.17122075,0.864184601,0.041779223,0.312029739,0.888362086,0.612858682,0.961238037,0.922476074,0.205444451,9.219419752,37.3766652,10.08360435,151.1786891,0,0.509377415,59.37763146,-0.509377415,120.6223685,0.951840956,0,181.2747331,10.08360435,187.8742505,2,17,4% -2/26/2018 2:00,90.89946759,260.0312437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586494998,4.53840136,-62.72072451,62.72072451,0,#DIV/0!,0,0,1,0.902496378,0,0.015942343,0.961238037,1,0.680281787,0.955785191,0,0,0.115824807,0.261809925,0.724496596,0.448993192,0.96892636,0.930164397,0,0,0,0,0,0,0.321998833,71.21615101,-0.321998833,108.783849,0.894719934,0,0,0,0,2,18,0% -2/26/2018 3:00,102.6704712,269.1485873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791937767,4.697529025,-4.201932464,4.201932464,0.751273539,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.10911302,83.7358124,-0.10911302,96.2641876,0.591759544,0,0,0,0,2,19,0% -2/26/2018 4:00,114.4664228,278.6717113,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997815961,4.863738894,-1.928235381,1.928235381,0.85990136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.116046479,96.663988,0.116046479,83.336012,0,0.619138154,0,0,0,2,20,0% -2/26/2018 5:00,125.9342184,289.6123153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197966752,5.054688456,-1.062895991,1.062895991,0.711919609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338123428,109.7625843,0.338123428,70.23741566,0,0.902125006,0,0,0,2,21,0% -2/26/2018 6:00,136.5227441,303.5201991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382771389,5.297426821,-0.56374841,0.56374841,0.626560346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.54197115,122.8179247,0.54197115,57.18207534,0,0.957744167,0,0,0,2,22,0% -2/26/2018 7:00,145.1911126,322.7612638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53406296,5.633246751,-0.206039452,0.206039452,0.565388511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713684804,135.5355175,0.713684804,44.46448251,0,0.979941061,0,0,0,2,23,0% -2/27/2018 8:00,150.063331,349.1807895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619099212,6.094354462,0.091881363,-0.091881363,0.514441051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.84154896,147.3040493,0.84154896,32.69595073,0,0.99058575,0,0,0,2,0,0% -2/27/2018 9:00,149.2135104,18.74593886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604267045,0.327178354,0.372892325,-0.372892325,0.466385346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916836008,156.4678249,0.916836008,23.53217507,0,0.99546462,0,0,0,2,1,0% -2/27/2018 10:00,143.040932,43.18521778,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496535228,0.753724238,0.671524894,-0.671524894,0.415316169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934401052,159.1315953,0.934401052,20.86840474,0,0.996489786,0,0,0,2,2,0% -2/27/2018 11:00,133.6781168,60.65285439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333123275,1.05859201,1.033335877,-1.033335877,0.353442847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893032801,153.2568567,0.893032801,26.74314329,0,0.994011015,0,0,0,2,3,0% -2/27/2018 12:00,122.7572295,73.51736854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142517835,1.283120138,1.551315246,-1.551315246,0.264863158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795536549,142.7059635,0.795536549,37.29403654,0,0.987149336,0,0,0,2,4,0% -2/27/2018 13:00,111.1410535,83.92242526,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939777318,1.464722637,2.510070272,-2.510070272,0.100906393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648543543,130.431881,0.648543543,49.56811898,0,0.972904174,0,0,0,2,5,0% -2/27/2018 14:00,99.30231529,93.22774773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733152357,1.627131152,5.610237735,-5.610237735,0,#DIV/0!,0,0,0.30033404,1,0.176393046,0,0.942008502,0.980770465,0.724496596,1,0,0,0.044978546,0.312029739,0.880379393,0.604875989,0.961238037,0.922476074,0,0,0,0,0,0,-0.462059635,117.5200921,0.462059635,62.47990793,0,0.94178886,0,0,0,2,6,0% -2/27/2018 15:00,87.31305292,102.356695,7.720326106,49.77053679,5.387138787,5.282895755,0,5.282895755,5.224696676,0.058199079,14.20552051,12.17119596,2.034324558,0.162442111,1.871882447,1.523900253,1.786461339,-17.99965884,17.99965884,0,0.697786429,0.040610528,1.306174169,1,0.616605085,0,0.055499555,0.961238037,1,0.579196192,0.854699596,5.022177176,0.111244061,0.115824807,0.147377945,0.724496596,0.448993192,0.984427771,0.945665808,0.029422189,1.266422889,5.051599365,1.377666949,0,4.666374638,-0.244546206,104.1550175,0.244546206,75.84498248,0,0.845539662,5.051599365,5.323271783,8.535574282,2,7,69% -2/27/2018 16:00,76.18521925,112.0824293,171.637569,512.1957822,49.33342371,49.13971546,0,49.13971546,47.84583896,1.293876495,54.43006361,11.32696312,43.10310049,1.487584746,41.61551575,1.329682917,1.956207426,-3.018259939,3.018259939,0.953693462,0.287427887,1.251182779,40.24233907,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.99124031,1.077750084,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.906477664,38.68246701,46.89771798,39.76021709,0,11.32696312,-0.022114519,91.26717188,0.022114519,88.73282812,0,0,46.89771798,39.76021709,72.91998486,2,8,55% -2/27/2018 17:00,65.7117641,123.206177,363.3262936,709.6390839,71.43242303,213.8062149,141.7888359,72.01737899,69.27847192,2.738907071,90.24661744,0,90.24661744,2.153951112,88.09266633,1.146886641,2.150353448,-1.327225526,1.327225526,0.757122622,0.196606809,2.204475002,70.9034939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.59310235,1.560530248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597134635,68.15513529,68.19023698,69.71566553,141.7888359,0,0.199804153,78.47449334,-0.199804153,101.5255067,0.799754951,0,181.5865605,69.71566553,227.2140693,2,9,25% -2/27/2018 18:00,56.61545973,136.6244006,523.0832528,797.0800215,84.48561987,407.7126419,321.8313527,85.88128923,81.93806672,3.943222511,129.3751439,0,129.3751439,2.547553158,126.8275907,0.98812618,2.384545628,-0.602067015,0.602067015,0.633113213,0.161514672,2.730172172,87.81172195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.76198639,1.845693591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978000445,84.40796722,80.73998684,86.25366081,321.8313527,0,0.403762915,66.18637179,-0.403762915,113.8136282,0.926164952,0,378.8089061,86.25366081,435.260202,2,10,15% -2/27/2018 19:00,49.76825088,153.1207664,634.1760134,838.942054,92.31942459,577.2569589,482.940619,94.31633998,89.53565331,4.780686666,156.547088,0,156.547088,2.783771274,153.7633167,0.868619841,2.672461527,-0.141577748,0.141577748,0.55436491,0.14557382,2.960381476,95.21604451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06507562,2.016832811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144786302,91.5252837,88.20986192,93.54211651,482.940619,0,0.575654322,54.85453238,-0.575654322,125.1454676,0.963142318,0,553.3504091,93.54211651,614.5718535,2,11,11% -2/27/2018 20:00,46.24023056,172.5767711,687.5318806,855.4770905,95.8529435,700.1567676,602.0112383,98.14552932,92.96262359,5.182905731,169.5903843,0,169.5903843,2.890319906,166.7000644,0.80704427,3.012032869,0.227384448,-0.227384448,0.491268659,0.139415998,2.913798228,93.71776713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.3592098,2.094026933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.111036897,90.0850825,91.4702467,92.17910943,602.0112383,0,0.703714039,45.27425341,-0.703714039,134.7257466,0.978948412,0,680.8081924,92.17910943,741.1375759,2,12,9% -2/27/2018 21:00,46.81208171,193.0726604,679.0789399,852.9855475,95.30128117,762.1947172,664.6479374,97.54677981,92.42759591,5.119183893,167.5242363,0,167.5242363,2.873685251,164.6505511,0.817024956,3.369753619,0.581359399,-0.581359399,0.430735377,0.140339032,2.613985443,84.07475735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84492085,2.081975182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893823555,80.8158547,90.7387444,82.89782988,664.6479374,0,0.779201874,38.81244225,-0.779201874,141.1875578,0.985831777,0,745.9698013,82.89782988,800.224773,2,13,7% -2/27/2018 22:00,51.34309161,211.836336,609.4638127,830.5792199,90.63791385,754.452972,661.95373,92.49924198,87.90484632,4.594395659,150.504625,0,150.504625,2.733067521,147.7715575,0.896105997,3.697241539,0.982913127,-0.982913127,0.362065645,0.148717466,2.099352245,67.52238468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.49748191,1.980098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.520973555,64.9050845,86.01845547,66.88518261,661.95373,0,0.796978439,37.15747443,-0.796978439,142.8425256,0.987263046,0,739.540911,66.88518261,783.3159253,2,14,6% -2/27/2018 23:00,58.900503,227.4558232,484.0755953,779.3206061,81.5363867,671.7829097,589.0559796,82.72693012,79.0777638,3.649166312,119.8283554,0,119.8283554,2.458622896,117.3697325,1.028007708,3.969853017,1.531073411,-1.531073411,0.268324716,0.168437301,1.428889916,45.95801146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01255444,1.781263919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03522588,44.17658871,77.04778032,45.95785263,589.0559796,0,0.75585834,40.89957377,-0.75585834,139.1004262,0.983850039,0,656.5905286,45.95785263,686.669024,2,15,5% -2/27/2018 0:00,68.44085244,240.1703954,313.5692672,671.9320916,66.66007977,509.6311137,442.6172637,67.01385,64.65003241,2.363817588,78.03854657,0,78.03854657,2.010047355,76.02849921,1.194518218,4.191764165,2.493827356,-2.493827356,0.103684095,0.212584863,0.69549964,22.36965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14407024,1.456272466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.503887122,21.50256729,62.64795736,22.95883975,442.6172637,0,0.658723209,48.79742998,-0.658723209,131.20257,0.974095585,0,493.7994797,22.95883975,508.8255811,2,16,3% -2/27/2018 1:00,79.16390298,250.8447811,118.8544107,418.0553933,40.2599424,254.2151386,214.2732072,39.94193135,39.04595659,0.895974752,30.03161373,0,30.03161373,1.213985807,28.81762792,1.381670756,4.378067341,5.223731748,-5.223731748,0,0.338733263,0.303496452,9.761489149,0.266408812,1,0.189145643,0,0.940341485,0.979103448,0.724496596,1,37.82682154,0.879528584,0.040468257,0.312029739,0.89165647,0.616153066,0.961238037,0.922476074,0.209275857,9.383114666,38.03609739,10.26264325,157.1889366,0,0.512547405,59.16633939,-0.512547405,120.8336606,0.952448048,0,187.7503932,10.26264325,194.4670879,2,17,4% -2/27/2018 2:00,90.10831854,260.3548324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572686842,4.54404905,-520.3408909,520.3408909,0,#DIV/0!,0,0,1,0.988702312,0,0.001921815,0.961238037,1,0.71906141,0.994564814,0,0,0.115824807,0.305853113,0.724496596,0.448993192,0.962211711,0.923449748,0,0,0,0,0,0,0.33467272,70.44736257,-0.33467272,109.5526374,0.900600312,0,0,0,0,2,18,0% -2/27/2018 3:00,102.4788847,269.4840006,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788593952,4.703383092,-4.259829986,4.259829986,0.741372479,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111768368,83.58273573,-0.111768368,96.41726427,0.602646236,0,0,0,0,2,19,0% -2/27/2018 4:00,114.2697959,279.0279149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994384174,4.869955819,-1.93926967,1.93926967,0.861788335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113619344,96.52399736,0.113619344,83.47600264,0,0.609934092,0,0,0,2,20,0% -2/27/2018 5:00,125.71879,289.9976342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194206817,5.06141354,-1.065363135,1.065363135,0.712341516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335874362,109.6257162,0.335874362,70.37428381,0,0.901134812,0,0,0,2,21,0% -2/27/2018 6:00,136.2704838,303.9314573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378368616,5.304604631,-0.563204817,0.563204817,0.626467386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539837656,122.672588,0.539837656,57.32741195,0,0.957379562,0,0,0,2,22,0% -2/27/2018 7:00,144.8820998,323.1462068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.528669668,5.639965274,-0.203901895,0.203901895,0.565022967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711596358,135.3649482,0.711596358,44.63505175,0,0.979735447,0,0,0,2,23,0% -2/28/2018 8:00,149.6971059,349.3810446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612707378,6.097849573,0.095260299,-0.095260299,0.513863219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839431888,147.0801769,0.839431888,32.91982306,0,0.990435906,0,0,0,2,0,0% -2/28/2018 9:00,148.8373415,18.64338241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59770166,0.325388407,0.377637133,-0.377637133,0.465573936,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914618576,156.1516177,0.914618576,23.84838232,0,0.995332403,0,0,0,2,1,0% -2/28/2018 10:00,142.6998663,42.90783431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490582509,0.748882984,0.678211152,-0.678211152,0.414172752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932018424,158.7516686,0.932018424,21.24833144,0,0.996352992,0,0,0,2,2,0% -2/28/2018 11:00,133.3750255,60.3366378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.327833335,1.053072989,1.043376547,-1.043376547,0.351725791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890431517,152.9275213,0.890431517,27.07247875,0,0.99384745,0,0,0,2,3,0% -2/28/2018 12:00,122.479064,73.20976645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137662932,1.277751469,1.56848757,-1.56848757,0.261926518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792678218,142.4365043,0.792678218,37.56349572,0,0.986922702,0,0,0,2,4,0% -2/28/2018 13:00,110.8748805,83.63156675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935131723,1.459646198,2.548326422,-2.548326422,0.094364206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645407495,130.1962349,0.645407495,49.8037651,0,0.972529564,0,0,0,2,5,0% -2/28/2018 14:00,99.03758994,92.95114425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728532028,1.622303511,5.789355277,-5.789355277,0,#DIV/0!,0,0,0.315014244,1,0.171043056,0,0.942697068,0.981459031,0.724496596,1,0,0,0.046890881,0.312029739,0.875646545,0.600143141,0.961238037,0.922476074,0,0,0,0,0,0,-0.458644346,117.2996642,0.458644346,62.70033581,0,0.940983067,0,0,0,2,6,0% -2/28/2018 15:00,87.05508114,102.0907428,9.508752828,59.91268536,6.430684549,6.308456679,0,6.308456679,6.236775683,0.071680995,16.94447846,14.44506238,2.499416078,0.193908866,2.305507212,1.519397796,1.781819598,-16.46859506,16.46859506,0,0.676291062,0.048477216,1.559193921,1,0.573824163,0,0.060647169,0.961238037,1,0.566951712,0.842455116,5.995026014,0.132704365,0.115824807,0.133552597,0.724496596,0.448993192,0.986103499,0.947341536,0.035121578,1.511769614,6.030147593,1.644473978,0,6.156136557,-0.241101902,103.9515846,0.241101902,76.04841538,0,0.842618807,6.030147593,6.831750421,10.50139161,2,7,74% -2/28/2018 16:00,75.8984205,111.826404,176.8697793,520.3749162,50.08472477,49.90780463,0,49.90780463,48.57448553,1.333319107,53.88296454,9.488599569,44.39436497,1.510239245,42.88412572,1.324677335,1.95173894,-2.966295081,2.966295081,0.962579976,0.28317288,1.297554571,41.73381531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.69164311,1.094163192,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.94007387,40.1161307,47.63171698,41.21029389,0,9.488599569,-0.01823416,91.04479832,0.01823416,88.95520168,0,0,47.63171698,41.21029389,74.60303013,2,8,57% -2/28/2018 17:00,65.40047792,122.9664961,369.0211878,713.7756596,71.8955041,218.0284993,145.5190724,72.50942698,69.72758939,2.781837589,91.64137407,0,91.64137407,2.167914715,89.47345935,1.141453672,2.146170227,-1.315526809,1.315526809,0.755122024,0.194827578,2.233345471,71.83206743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02481114,1.570646831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.618051191,69.04771548,68.64286233,70.61836231,145.5190724,0,0.203872282,78.23650854,-0.203872282,101.7634915,0.804748416,0,185.7491053,70.61836231,231.9674111,2,9,25% -2/28/2018 18:00,56.27458974,136.4218176,528.8883079,799.7607948,84.85044707,412.5376997,326.2588232,86.27887649,82.29189302,3.986983468,130.7936475,0,130.7936475,2.558554044,128.2350935,0.982176876,2.381009888,-0.599198935,0.599198935,0.632622742,0.160431694,2.757245057,88.68247902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.1020977,1.853663695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997614658,85.24497203,81.09971236,87.09863573,326.2588232,0,0.407945507,65.92416003,-0.407945507,114.07584,0.927434611,0,383.683437,87.09863573,440.6877521,2,10,15% -2/28/2018 19:00,49.39939177,152.9979048,639.9507901,841.0044183,92.64001944,582.351092,487.6802916,94.67080043,89.84658105,4.824219372,157.9569165,0,157.9569165,2.793438392,155.1634781,0.862182035,2.670317188,-0.142226694,0.142226694,0.554475887,0.144761161,2.986049354,96.04161171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36395119,2.023836605,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163382592,92.3188503,88.52733378,94.3426869,487.6802916,0,0.579878394,54.55801001,-0.579878394,125.44199,0.963775025,0,558.541419,94.3426869,620.2868208,2,11,11% -2/28/2018 20:00,45.85964528,172.5865111,693.1796178,857.2853506,96.15031136,705.3532887,606.8767833,98.47650548,93.25102472,5.225480759,170.9687103,0,170.9687103,2.899286644,168.0694237,0.800401804,3.012202864,0.22455258,-0.22455258,0.491752937,0.138709086,2.93803399,94.49727255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63643194,2.100523304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.128595624,90.83437275,91.76502756,92.93489606,606.8767833,0,0.70790523,44.93526634,-0.70790523,135.0647337,0.979369077,0,686.1213824,92.93489606,746.9454132,2,12,9% -2/28/2018 21:00,46.44882184,193.2295657,684.522613,854.7651716,95.58750758,767.3931643,669.5277522,97.86541215,92.70519155,5.1602206,168.8527487,0,168.8527487,2.882316034,165.9704326,0.810684875,3.372492134,0.576434112,-0.576434112,0.431577651,0.139641125,2.636629097,84.80305513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.11175633,2.088228155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.910228806,81.51592223,91.02198514,83.60415038,669.5277522,0,0.783288527,38.43733616,-0.783288527,141.5626638,0.986166562,0,751.2878663,83.60415038,806.0051107,2,13,7% -2/28/2018 22:00,51.02000629,212.0950883,614.6408117,832.5508015,90.92556913,759.6040224,666.7867726,92.81724981,88.18382774,4.633422064,151.7685223,0,151.7685223,2.741741389,149.0267809,0.890467094,3.701757617,0.975068615,-0.975068615,0.363407136,0.147932853,2.120161892,68.19169447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.76564946,1.986382303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.536050074,65.54845052,86.30169954,67.53483282,666.7867726,0,0.800896199,36.78423149,-0.800896199,143.2157685,0.987569937,0,744.8002707,67.53483282,789.0004681,2,14,6% -2/28/2018 23:00,58.62236239,227.7601481,488.9310226,781.8347321,81.84808697,676.9117187,593.845885,83.06583373,79.38006516,3.685768573,121.0150089,0,121.0150089,2.468021809,118.5469871,1.023153239,3.975164489,1.517720308,-1.517720308,0.270608231,0.167402114,1.447438012,46.554582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.303138,1.788073399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048663912,44.75003501,77.35180191,46.53810841,593.845885,0,0.759554239,40.57508367,-0.759554239,139.4249163,0.984171916,0,661.7982446,46.53810841,692.2565058,2,15,5% -2/28/2018 0:00,68.20066474,240.4884591,318.0246818,675.8190129,67.05451786,514.929002,447.4990208,67.42998112,65.03257674,2.397404386,79.13070719,0,79.13070719,2.021941118,77.10876607,1.190326152,4.197315424,2.465889721,-2.465889721,0.108461712,0.210846899,0.710686064,22.85810679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.5117864,1.464889457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.514889634,21.9720817,63.02667603,23.43697116,447.4990208,0,0.662158081,48.53533125,-0.662158081,131.4646687,0.974489331,0,499.1096973,23.43697116,514.4487262,2,16,3% -2/28/2018 1:00,78.95185303,251.1664396,122.5674726,425.9168396,40.94740501,260.2771266,219.6404716,40.63665505,39.71268967,0.923965381,30.9526181,0,30.9526181,1.234715341,29.71790276,1.377969786,4.383681341,5.120511381,-5.120511381,0,0.33408052,0.308678835,9.928172418,0.256784809,1,0.192865523,0,0.939848429,0.978610393,0.724496596,1,38.46797124,0.894547061,0.039165089,0.312029739,0.894944713,0.619441309,0.961238037,0.922476074,0.213045933,9.543336965,38.68101717,10.43788403,163.2401351,0,0.51568863,58.9565049,-0.51568863,121.0434951,0.953042268,0,194.2557657,10.43788403,201.0871521,2,17,4% -2/28/2018 2:00,89.94443293,260.6813289,0.012896529,0.93048872,0.011994115,0.325309231,0.313579563,0.011729668,0.011632448,9.72E-05,0.00348858,0,0.00348858,0.000361667,0.003126913,1.569826498,4.549747488,1013.244234,-1013.244234,0,0.930026589,9.04E-05,0.002908112,0.994244433,1,0.000986929,0,0.961150908,0.999912871,0.724496596,1,0.011183134,0.000262026,0.115374458,0.312029739,0.72536041,0.449857006,0.961238037,0.922476074,6.54E-05,0.002795388,0.011248575,0.003057414,0.001804828,0,0.337005227,70.30547899,-0.337005227,109.694521,0.901634349,0,0.01287587,0.003057414,0.014876887,2,18,16% -2/28/2018 3:00,102.2875512,269.8219039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785254551,4.709280617,-4.319183101,4.319183101,0.731222499,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114401432,83.43089824,-0.114401432,96.56910176,0.612942533,0,0,0,0,2,19,0% -2/28/2018 4:00,114.072957,279.3862176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990948687,4.876209381,-1.950355964,1.950355964,0.863684203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111206309,96.38485868,0.111206309,83.61514132,0,0.600385223,0,0,0,2,20,0% -2/28/2018 5:00,125.5025755,290.3844929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.190433163,5.068165498,-1.067781681,1.067781681,0.712755111,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.333628935,109.4891858,0.333628935,70.51081425,0,0.900132903,0,0,0,2,21,0% -2/28/2018 6:00,136.0168267,304.3432211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373941464,5.311791264,-0.56259671,0.56259671,0.626363393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537695791,122.5269187,0.537695791,57.47308131,0,0.957010617,0,0,0,2,22,0% -2/28/2018 7:00,144.5712905,323.5302988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523245023,5.646668943,-0.20169272,0.20169272,0.564645176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709486812,135.1931762,0.709486812,44.80682377,0,0.979526527,0,0,0,2,23,0% -3/1/2018 8:00,149.3290301,349.5819168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606283243,6.101355453,0.09872122,-0.09872122,0.513271367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837281145,146.8541192,0.837281145,33.14588081,0,0.990282902,0,0,0,3,0,0% -3/1/2018 9:00,148.4586836,18.54631295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591092832,0.323694225,0.382483362,-0.382483362,0.464745182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91235593,155.8329813,0.91235593,24.16701869,0,0.995196827,0,0,0,3,1,0% -3/1/2018 10:00,142.355347,42.63621265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484569513,0.744142291,0.685037023,-0.685037023,0.413005459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929580863,158.3695732,0.929580863,21.63042676,0,0.996212318,0,0,0,3,2,0% -3/1/2018 11:00,133.0681433,60.02403266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32247723,1.047617,1.053639885,-1.053639885,0.349970657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887768077,152.5941106,0.887768077,27.4058894,0,0.993678984,0,0,0,3,3,0% -3/1/2018 12:00,122.1972131,72.90410101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132743706,1.272416601,1.586104759,-1.586104759,0.258913801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789753502,142.1624818,0.789753502,37.83751818,0,0.986689106,0,0,0,3,4,0% -3/1/2018 13:00,110.605283,83.34162561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930426359,1.454585771,2.587930534,-2.587930534,0.087591503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642204117,129.956372,0.642204117,50.04362798,0,0.972143134,0,0,0,3,5,0% -3/1/2018 14:00,98.76972962,92.67482009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723856983,1.617480744,5.98122823,-5.98122823,0,#DIV/0!,0,0,0.330071486,1,0.165657572,0,0.943383737,0.9821457,0.724496596,1,0,0,0.048828256,0.312029739,0.870881245,0.595377841,0.961238037,0.922476074,0,0,0,0,0,0,-0.455164135,117.0754955,0.455164135,62.92450451,0,0.940149517,0,0,0,3,6,0% -3/1/2018 15:00,86.79303509,101.8246229,11.51850761,70.96397096,7.548579015,7.407792882,0,7.407792882,7.320961506,0.086831376,19.87994384,16.85953081,3.020413036,0.227617509,2.792795527,1.51482423,1.77717493,-15.16431796,15.16431796,0,0.655343493,0.056904377,1.830240377,1,0.529058235,0,0.065848937,0.961238037,1,0.55479237,0.830295774,7.037186666,0.155812932,0.115824807,0.11982696,0.724496596,0.448993192,0.98772397,0.948962007,0.041227028,1.774361935,7.078413694,1.930174867,0,7.939857194,-0.23757874,103.7436796,0.23757874,76.25632042,0,0.839543458,7.078413694,8.596030035,12.70434343,3,7,79% -3/1/2018 16:00,75.60893845,111.5698659,182.1640943,528.4341046,50.82772667,50.66831307,0,50.66831307,49.29508318,1.373229889,53.2582523,7.557815118,45.70043718,1.532643494,44.16779369,1.31962492,1.947261507,-2.915729165,2.915729165,0.971227257,0.279021653,1.344742888,43.2515538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.38430898,1.110394994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.974261645,41.57503867,48.35857063,42.68543366,0,7.557815118,-0.014302285,90.8194885,0.014302285,89.1805115,0,0,48.35857063,42.68543366,76.29533325,3,8,58% -3/1/2018 17:00,65.08668121,122.726081,374.7526108,717.8609065,72.35610835,222.3006626,149.3013144,72.9993482,70.17430472,2.825043476,93.04491285,0,93.04491285,2.181803632,90.86310922,1.135976886,2.141974192,-1.303916278,1.303916278,0.753136506,0.193076996,2.26229529,72.7631931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.45421091,1.580709305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639025236,69.94274889,69.09323614,71.5234582,149.3013144,0,0.20798084,77.99594949,-0.20798084,102.0040505,0.80959324,0,189.966571,71.5234582,236.7772439,3,9,25% -3/1/2018 18:00,55.93126689,136.2186393,534.7140837,802.4109879,85.21385539,417.3940229,330.718779,86.67524387,82.64434325,4.030900627,132.2171324,0,132.2171324,2.569512146,129.6476203,0.976184762,2.377463758,-0.596294927,0.596294927,0.632126128,0.159363402,2.784351701,89.55432184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44088626,1.861602803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.017253329,86.08302052,81.45813959,87.94462332,330.718779,0,0.412156344,65.65963489,-0.412156344,114.3403651,0.928686812,0,388.5923081,87.94462332,446.1503052,3,10,15% -3/1/2018 19:00,49.02812473,152.875546,645.7326322,843.0428719,92.95912756,587.4603164,492.4364442,95.02387223,90.15606689,4.86780534,159.3684134,0,159.3684134,2.803060679,156.5653527,0.855702203,2.668181623,-0.142815962,0.142815962,0.554576657,0.14395916,3.011708379,96.86689415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.66144074,2.03080792,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181972468,93.11214317,88.84341321,95.14295109,492.4364442,0,0.584117914,54.25930087,-0.584117914,125.7406991,0.964400845,0,563.749536,95.14295109,626.0186946,3,11,11% -3/1/2018 20:00,45.47699154,172.5992227,698.8227345,859.0711611,96.44579034,710.5495894,611.7439745,98.80561487,93.53759391,5.268020956,172.3458591,0,172.3458591,2.908196426,169.4376627,0.793723236,3.012424723,0.221792473,-0.221792473,0.492224943,0.13801181,2.962228716,95.27545809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.91189315,2.106978411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.146124621,91.5823943,92.05801777,93.68937271,611.7439745,0,0.712099302,44.59402195,-0.712099302,135.405978,0.979785074,0,691.4356329,93.68937271,752.7534536,3,12,9% -3/1/2018 21:00,46.084375,193.3918825,689.9525338,856.5205843,95.87131064,772.5772725,674.395682,98.18159053,92.9804369,5.201153637,170.1778536,0,170.1778536,2.890873743,167.2869798,0.804324078,3.375325097,0.57159914,-0.57159914,0.43240448,0.138953487,2.659213878,85.52945932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37633263,2.094428186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.926591403,82.21416957,91.30292403,84.30859775,674.395682,0,0.787366579,38.05990928,-0.787366579,141.9400907,0.986497178,0,756.5923609,84.30859775,811.7706519,3,13,7% -3/1/2018 22:00,50.69677719,212.3598215,619.7981428,834.4926584,91.21013209,764.7282557,671.5961454,93.13211028,88.45981007,4.672300204,153.0275575,0,153.0275575,2.750322012,150.2772355,0.884825682,3.706378084,0.967354785,-0.967354785,0.364726279,0.147161028,2.140912491,68.85910504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03093418,1.992598935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551083812,66.18999094,86.58201799,68.18258988,671.5961454,0,0.804795751,36.40946555,-0.804795751,143.5905345,0.987872435,0,750.0333377,68.18258988,794.6574791,3,14,6% -3/1/2018 23:00,58.34477439,228.0696546,493.7648202,784.3063661,82.15565078,682.0026818,598.6021192,83.40056257,79.67835479,3.722207782,122.1962933,0,122.1962933,2.477295993,119.7189973,1.018308414,3.980566397,1.504603536,-1.504603536,0.272851331,0.166386197,1.465949969,47.14999017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.58986534,1.794792514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062075762,45.32236399,77.6519411,47.1171565,598.6021192,0,0.763224864,40.25067449,-0.763224864,139.7493255,0.984488507,0,666.968848,47.1171565,697.8060846,3,15,5% -3/1/2018 0:00,67.96129827,240.8106802,322.4621454,679.6307859,67.44238595,520.1771816,452.3375766,67.83960503,65.40874917,2.430855861,80.21831727,0,80.21831727,2.033636772,78.18468049,1.186148419,4.202939243,2.438577965,-2.438577965,0.113132297,0.209148227,0.725900001,23.34743928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.87337765,1.473362919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.525912079,22.4424467,63.39928973,23.91580962,452.3375766,0,0.665563694,48.27441498,-0.665563694,131.725585,0.97487571,0,504.3722058,23.91580962,520.0246249,3,16,3% -3/1/2018 1:00,78.74055594,251.4914468,126.2846175,433.6157236,41.62028801,266.2773356,224.960066,41.31726956,40.36528277,0.95198679,31.87417284,0,31.87417284,1.255005246,30.61916759,1.374281956,4.389353788,5.021310624,-5.021310624,0,0.329575279,0.313751312,10.09132069,0.247294589,1,0.196579266,0,0.939353139,0.978115103,0.724496596,1,39.09496628,0.909247029,0.037869566,0.312029739,0.898226959,0.622723555,0.961238037,0.922476074,0.216756366,9.700161291,39.31172265,10.60940832,169.3286591,0,0.518800527,58.74817242,-0.518800527,121.2518276,0.953623845,0,200.7875696,10.60940832,207.7312151,3,17,3% -3/1/2018 2:00,89.77988219,261.0106027,0.067528919,1.449170305,0.061961538,0.55235179,0.49174956,0.060602231,0.060093169,0.000509062,0.018241537,0,0.018241537,0.001868369,0.016373168,1.566954546,4.555494399,255.5031448,-255.5031448,0,0.917555607,0.000467092,0.015023292,0.977356845,1,0.003913826,0,0.960891126,0.999653089,0.724496596,1,0.057795736,0.001353627,0.114043167,0.312029739,0.727923522,0.452420118,0.961238037,0.922476074,0.000337094,0.01444096,0.05813283,0.015794587,0.011134761,0,0.339331794,70.1638314,-0.339331794,109.8361686,0.902651591,0,0.06818364,0.015794587,0.078520881,3,18,15% -3/1/2018 3:00,102.0964574,270.1621598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781919336,4.715219204,-4.380062934,4.380062934,0.720811434,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117012454,83.28028604,-0.117012454,96.71971396,0.622695057,0,0,0,0,3,19,0% -3/1/2018 4:00,113.875887,279.7464679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987509167,4.882496935,-1.961499249,1.961499249,0.865589817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108806868,96.2465413,0.108806868,83.7534587,0,0.590470183,0,0,0,3,20,0% -3/1/2018 5:00,125.2855583,290.7727153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186645497,5.074941257,-1.070153657,1.070153657,0.713160743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.33138648,109.3529508,0.33138648,70.64704922,0,0.899118769,0,0,0,3,21,0% -3/1/2018 6:00,135.761772,304.7552831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36948992,5.318983104,-0.56192556,0.56192556,0.62624862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535544837,122.3808685,0.535544837,57.61913153,0,0.956637136,0,0,0,3,22,0% -3/1/2018 7:00,144.2587183,323.913321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517789609,5.653353942,-0.199413163,0.199413163,0.564255349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707355511,135.0201578,0.707355511,44.97984222,0,0.979314186,0,0,0,3,23,0% -3/2/2018 8:00,148.9591814,349.7831678,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599828166,6.104867946,0.102263066,-0.102263066,0.512665675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835096255,146.6258622,0.835096255,33.37413777,0,0.990126662,0,0,0,3,0,0% -3/2/2018 9:00,148.0776698,18.45444845,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584442887,0.322090887,0.387430191,-0.387430191,0.463899225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910047869,155.5119676,0.910047869,24.48803243,0,0.995057835,0,0,0,3,1,0% -3/2/2018 10:00,142.0075379,42.37022304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478499099,0.739499897,0.692002222,-0.692002222,0.41181434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927088525,157.985424,0.927088525,22.01457599,0,0.996067718,0,0,0,3,2,0% -3/2/2018 11:00,132.7576295,59.71502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317057742,1.042223821,1.064127219,-1.064127219,0.348177218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885043047,152.2568191,0.885043047,27.74318088,0,0.993505573,0,0,0,3,3,0% -3/2/2018 12:00,121.9118264,72.60039595,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127762768,1.267115948,1.604174671,-1.604174671,0.255823664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786763404,141.884067,0.786763404,38.11593299,0,0.986448493,0,0,0,3,4,0% -3/2/2018 13:00,110.3324049,83.05262949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.925663738,1.449541837,2.628934396,-2.628934396,0.08057943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63893485,129.7124398,0.63893485,50.28756024,0,0.97174476,0,0,0,3,5,0% -3/2/2018 14:00,98.49887614,92.39879584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719129698,1.612663212,6.187165732,-6.187165732,0,#DIV/0!,0,0,0.345512887,1,0.160239193,0,0.944068032,0.982829995,0.724496596,1,0,0,0.050790192,0.312029739,0.866085828,0.590582423,0.961238037,0.922476074,0,0,0,0,0,0,-0.451620845,116.8477233,0.451620845,63.15227667,0,0.939287661,0,0,0,3,6,0% -3/2/2018 15:00,86.52717714,101.5583434,13.74840313,82.83753773,8.730512096,8.570896214,0,8.570896214,8.467254944,0.10364127,22.97911343,19.38239676,3.596716665,0.263257152,3.333459513,1.510184134,1.772527476,-14.04113376,14.04113376,0,0.635020083,0.065814288,2.116813736,1,0.482221822,0,0.071099273,0.961238037,1,0.542737927,0.818241331,8.13904752,0.180433182,0.115824807,0.106220891,0.724496596,0.448993192,0.98928757,0.950525607,0.047682228,2.051652857,8.186729747,2.232086039,0,10.03578207,-0.233980841,103.5315545,0.233980841,76.46844552,0,0.83630729,8.186729747,10.62508375,15.14063456,3,7,85% -3/2/2018 16:00,75.31691723,111.3128055,187.5170577,536.3697626,51.56216059,51.420954,0,51.420954,50.00737121,1.413582788,52.55652851,5.536057492,47.02047102,1.554789386,45.46568163,1.314528188,1.942774956,-2.866534177,2.866534177,0.979640095,0.274973174,1.392716218,44.79454102,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.06898733,1.126439617,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.009018159,43.05821667,49.07800549,44.18465629,0,5.536057492,-0.010321345,90.59138002,0.010321345,89.40861998,0,0,49.07800549,44.18465629,77.99597933,3,8,59% -3/2/2018 17:00,64.77051716,122.484897,380.5173786,721.8934488,72.81402504,226.6201746,153.1332603,73.48691426,70.61841353,2.868500731,94.45645543,0,94.45645543,2.19561151,92.26084392,1.130458783,2.137764736,-1.292401629,1.292401629,0.751167385,0.191355321,2.291309131,73.69637797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.88110519,1.590713065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660045665,70.83976169,69.54115085,72.43047475,153.1332603,0,0.212127234,77.75295723,-0.212127234,102.2470428,0.814292405,0,194.2364018,72.43047475,241.6406989,3,9,24% -3/2/2018 18:00,55.58562961,136.0148007,540.5575259,805.0298079,85.57566324,422.278798,335.2086058,87.07019221,82.99524125,4.074950963,133.6448525,0,133.6448525,2.580421987,131.0644305,0.970152253,2.373906104,-0.593359911,0.593359911,0.63162421,0.158310002,2.811478931,90.42682683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.77818277,1.869506946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036906915,86.9217055,81.81508968,88.79121244,335.2086058,0,0.416392788,65.39294238,-0.416392788,114.6070576,0.929921071,0,393.5326354,88.79121244,451.6447081,3,10,15% -3/2/2018 19:00,48.65457607,152.7536096,651.5187198,845.0569325,93.27659415,592.5818014,497.2064174,95.37538399,90.46396068,4.911423312,160.7808901,0,160.7808901,2.812633467,157.9682566,0.849182549,2.666053432,-0.143348773,0.143348773,0.554667774,0.143167942,3.037347315,97.69153045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95739997,2.037743373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.20054779,93.90481495,89.15794776,95.94255832,497.2064174,0,0.58837032,53.95855378,-0.58837032,126.0414462,0.965019507,0,568.9718394,95.94255832,631.764325,3,11,11% -3/2/2018 20:00,45.09238166,172.6148521,704.458743,860.8342419,96.73925282,715.7430117,616.6102968,99.13271499,93.82220742,5.31050757,173.7212236,0,173.7212236,2.917045402,170.8041782,0.787010528,3.012697507,0.219101616,-0.219101616,0.492685107,0.137324228,2.986373132,96.05202553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.18547447,2.113389464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163617168,92.32886046,92.34909164,94.44224992,616.6102968,0,0.716293877,44.25066231,-0.716293877,135.7493377,0.980196248,0,696.7481911,94.44224992,758.5587549,3,12,9% -3/2/2018 21:00,45.7188451,193.5595803,695.36662,858.2516773,96.15259281,777.7447054,679.2495008,98.49520468,93.25323738,5.241967306,171.4990431,0,171.4990431,2.899355439,168.5996877,0.797944377,3.378251976,0.566852,-0.566852,0.433216288,0.138276112,2.681732479,86.25373493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.63855883,2.100573146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942906052,82.91037084,91.58146488,85.01094398,679.2495008,0,0.791433933,37.68028257,-0.791433933,142.3197174,0.986823533,0,761.8808568,85.01094398,817.5188194,3,13,7% -3/2/2018 22:00,50.37349384,212.6304738,624.934169,836.4048937,91.49154124,769.8237779,676.3800264,93.44375144,88.7327337,4.711017739,154.281332,0,154.281332,2.758807536,151.5225245,0.879183323,3.711101857,0.959768299,-0.959768299,0.366023644,0.146401886,2.161598567,69.52444037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.29327875,1.998746669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.566070804,66.82953658,86.85934955,68.82828325,676.3800264,0,0.808675358,36.03328856,-0.808675358,143.9667114,0.988170491,0,755.2381326,68.82828325,800.2848675,3,14,6% -3/2/2018 23:00,58.06780304,228.384241,498.5757921,786.7359954,82.45906744,687.0544585,603.3233613,83.73109724,79.97262232,3.75847492,123.3719182,0,123.3719182,2.486445125,120.8854731,1.013474352,3.986056966,1.491716523,-1.491716523,0.27505514,0.165389232,1.484421749,47.74410611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.87272648,1.801421029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075458504,45.89345083,77.94818498,47.69487186,603.3233613,0,0.766868892,39.92645529,-0.766868892,140.0735447,0.984799807,0,672.1009146,47.69487186,703.3162543,3,15,5% -3/2/2018 0:00,67.72278978,241.1369379,326.8807999,683.3688794,67.82377526,525.3750102,457.1322065,68.24280374,65.77863819,2.464165544,81.30117149,0,81.30117149,2.045137067,79.25603442,1.18198566,4.208633515,2.411869866,-2.411869866,0.117699651,0.207487792,0.741137711,23.83753644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.22892904,1.481694843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.536951749,22.91354674,63.76588079,24.39524158,457.1322065,0,0.668939163,48.01475837,-0.668939163,131.9852416,0.975254787,0,509.5862536,24.39524158,525.5524513,3,16,3% -3/2/2018 1:00,78.53002793,251.8196761,130.0044756,441.1548339,42.27892137,272.2151184,230.2310338,41.98408455,41.0040559,0.980028651,32.79595572,0,32.79595572,1.274865472,31.52109025,1.370607549,4.395082469,4.925891139,-4.925891139,0,0.325211276,0.318716368,10.25101397,0.237934584,1,0.200287102,0,0.938855606,0.977617569,0.724496596,1,39.70811275,0.923635695,0.036581513,0.312029739,0.90150341,0.626000006,0.961238037,0.922476074,0.220408876,9.853664548,39.92852163,10.77730024,175.4511085,0,0.521882605,58.54138217,-0.521882605,121.4586178,0.954193013,0,207.3427434,10.77730024,214.3962709,3,17,3% -3/2/2018 2:00,89.61421392,261.3425237,0.153153769,2.181909373,0.138462567,0.880912359,0.745470412,0.135441947,0.134287409,0.001154538,0.041309062,0,0.041309062,0.004175157,0.037133905,1.564063089,4.561287515,145.6140765,-145.6140765,0,0.904075474,0.001043789,0.033571852,0.960585417,1,0.00686736,0,0.960626879,0.999388843,0.724496596,1,0.129205258,0.003024887,0.112706218,0.312029739,0.73051191,0.455008506,0.961238037,0.922476074,0.000751166,0.032270541,0.129956424,0.035295429,0.029382406,0,0.341659659,70.02197825,-0.341659659,109.9780217,0.903655535,0,0.156507997,0.035295429,0.179608149,3,18,15% -3/2/2018 3:00,101.9055881,270.5046319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778588039,4.721196469,-4.442546269,4.442546269,0.710126155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119601728,83.13088226,-0.119601728,96.86911774,0.63194584,0,0,0,0,3,19,0% -3/2/2018 4:00,113.6785655,280.1085154,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984065257,4.888815857,-1.972704952,1.972704952,0.867506105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.106420474,96.1090123,0.106420474,83.8909877,0,0.580165595,0,0,0,3,20,0% -3/2/2018 5:00,125.0677211,291.1621272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18284352,5.081737777,-1.072481236,1.072481236,0.713558783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.329146301,109.2169676,0.329146301,70.78303236,0,0.898091867,0,0,0,3,21,0% -3/2/2018 6:00,135.5053195,305.16744,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365013978,5.326176598,-0.561192908,0.561192908,0.626123329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533384064,122.2343888,0.533384064,57.76561116,0,0.956258917,0,0,0,3,22,0% -3/2/2018 7:00,143.9444172,324.2950618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512304021,5.660016577,-0.1970645,0.1970645,0.563853704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705201808,134.8458501,0.705201808,45.1541499,0,0.97909831,0,0,0,3,23,0% -3/3/2018 8:00,148.5876371,349.9845688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593343496,6.108383057,0.105884755,-0.105884755,0.51204633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832876757,146.3953947,0.832876757,33.60460534,0,0.989967109,0,0,0,3,0,0% -3/3/2018 9:00,147.6944311,18.36751221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57775411,0.320573563,0.392476789,-0.392476789,0.463036206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907694222,155.1886299,0.907694222,24.81137011,0,0.99491537,0,0,0,3,1,0% -3/3/2018 10:00,141.6566012,42.10973021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472374097,0.734953439,0.699106463,-0.699106463,0.410599443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924541602,157.5993337,0.924541602,22.4006663,0,0.995919145,0,0,0,3,2,0% -3/3/2018 11:00,132.4436434,59.40959851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.311577651,1.036893101,1.074839927,-1.074839927,0.346345237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882257037,151.9158386,0.882257037,28.08416139,0,0.993327173,0,0,0,3,3,0% -3/3/2018 12:00,121.6230541,72.2986694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12272274,1.261849826,1.622705458,-1.622705458,0.252654713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783708976,141.6014314,0.783708976,38.39856855,0,0.986200807,0,0,0,3,4,0% -3/3/2018 13:00,110.0563906,82.76460199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920846379,1.444514809,2.671392862,-2.671392862,0.073318605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635601177,129.4645869,0.635601177,50.53541307,0,0.971334318,0,0,0,3,5,0% -3/3/2018 14:00,98.22517179,92.12308909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714352656,1.607851222,6.408665273,-6.408665273,0,#DIV/0!,0,0,0.36134582,1,0.154790502,0,0.944749493,0.983511456,0.724496596,1,0,0,0.052776206,0.312029739,0.861262625,0.585759221,0.961238037,0.922476074,0,0,0,0,0,0,-0.448016355,116.6164864,0.448016355,63.38351357,0,0.938396932,0,0,0,3,6,0% -3/3/2018 15:00,86.25775809,101.2919103,16.19503721,95.43748329,9.966022184,9.787594876,0,9.787594876,9.665509844,0.122085031,26.20759993,21.98041332,4.227186612,0.30051234,3.926674272,1.505481884,1.76787734,-13.0647473,13.0647473,0,0.615375072,0.075128085,2.416377461,1,0.433221301,0,0.076392901,0.961238037,1,0.530806584,0.806309988,9.290855708,0.206438768,0.115824807,0.092752081,0.724496596,0.448993192,0.990793185,0.952031222,0.054430042,2.341043826,9.34528575,2.547482594,0,12.45803006,-0.230312164,103.3154508,0.230312164,76.68454915,0,0.832903347,9.34528575,12.92381753,17.80366584,3,7,91% -3/3/2018 16:00,75.02250122,111.0552112,192.9251925,544.1788137,52.2877906,52.16547239,0,52.16547239,50.71112079,1.454351593,51.77857571,3.424959359,48.35361635,1.576669808,46.77694654,1.309389659,1.938279087,-2.818681175,2.818681175,0.987823441,0.271026246,1.441442198,46.36173602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.7454582,1.142291909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.044319966,44.56466411,49.78977816,45.70695602,0,3.424959359,-0.006293812,90.36061127,0.006293812,89.63938873,0,0,49.78977816,45.70695602,79.70406674,3,8,60% -3/3/2018 17:00,64.45212917,122.2429072,386.3123126,725.8720636,73.26905378,230.9844669,157.01256,73.97190687,71.05972148,2.912185391,95.87522506,0,95.87522506,2.209332306,93.66589276,1.124901864,2.133541219,-1.280989958,1.280989958,0.749215874,0.189662745,2.320371892,74.63113626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.30530717,1.600653735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101537,71.73828691,69.98640871,73.33894064,157.01256,0,0.216308862,77.50767331,-0.216308862,102.4923267,0.818849045,0,198.5559935,73.33894064,246.5548634,3,9,24% -3/3/2018 18:00,55.23781637,135.8102348,546.415603,807.616539,85.93569508,427.1892098,339.7256814,87.46352843,83.3444168,4.119111622,135.0760674,0,135.0760674,2.591278276,132.4847891,0.964081767,2.370335754,-0.590398631,0.590398631,0.631117802,0.157271671,2.838613779,91.29957681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.11382359,1.87737229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05656602,87.76062597,82.17038961,89.63799826,339.7256814,0,0.420652209,65.12422897,-0.420652209,114.875771,0.931136961,0,398.5015281,89.63799826,457.1678052,3,10,15% -3/3/2018 19:00,48.27887185,152.6320122,657.3062675,847.0461667,93.59226916,597.7127359,501.9875667,95.72516922,90.77011693,4.955052292,162.1936668,0,162.1936668,2.822152234,159.3715146,0.842625273,2.663931158,-0.143828299,0.143828299,0.554749777,0.142387611,3.062955133,98.51516592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.251689,2.044639687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.219100567,94.69652469,89.47078957,96.74116438,501.9875667,0,0.592633066,53.65591797,-0.592633066,126.344082,0.965630762,0,574.2054262,96.74116438,637.5205835,3,11,11% -3/3/2018 20:00,44.70592725,172.6333433,710.0851991,862.5743486,97.03057548,720.9309327,621.4732649,99.45766779,94.10474562,5.352922172,175.0942075,0,175.0942075,2.925829855,172.1683776,0.780265626,3.01302024,0.216477498,-0.216477498,0.493133857,0.136646385,3.010458181,96.82668348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.45706094,2.11975377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181066704,93.07349114,92.63812764,95.19324491,621.4732649,0,0.720486606,43.90532985,-0.720486606,136.0946702,0.980602457,0,702.0563383,95.19324491,764.3584133,3,12,9% -3/3/2018 21:00,45.35233499,193.7326274,700.7628374,859.9583712,96.4312606,782.8931721,684.0870235,98.80614857,93.5235023,5.282646272,172.8158214,0,172.8158214,2.9077583,169.9080631,0.791547569,3.381272217,0.562190197,-0.562190197,0.434013504,0.137608982,2.7041778,86.97565361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.89834775,2.10666099,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.959167611,83.60430653,91.85751536,85.71096752,684.0870235,0,0.795488533,37.29857677,-0.795488533,142.7014232,0.987145543,0,767.1509715,85.71096752,823.2470855,3,13,7% -3/3/2018 22:00,50.05024436,212.9069811,630.0473023,838.2876341,91.76973877,774.8887469,681.1366416,93.75210524,89.00254255,4.749562698,155.5294591,0,155.5294591,2.767196218,152.7622629,0.873541555,3.71592782,0.952305824,-0.952305824,0.367299802,0.145655316,2.182214838,70.18753052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55262927,2.00482424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581007222,67.46692405,87.13363649,69.47174829,681.1366416,0,0.812533329,35.6558119,-0.812533329,144.3441881,0.988464063,0,760.4127285,69.47174829,805.8805983,3,14,6% -3/3/2018 23:00,57.79151055,228.7038038,503.3627888,789.1241236,82.75832908,692.0657611,608.0083396,84.05742143,80.26286011,3.794561323,124.5416048,0,124.5416048,2.495468967,122.0461359,1.008652139,3.991634388,1.479052799,-1.479052799,0.277220764,0.1644109,1.502849479,48.33680526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.15171409,1.807958772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088809332,46.46317579,78.24052342,48.27113456,608.0083396,0,0.77048505,39.60253411,-0.77048505,140.3974659,0.985105814,0,677.1930738,48.27113456,708.785566,3,15,5% -3/3/2018 0:00,67.48517421,241.4671103,331.2798312,687.0347568,68.19877723,530.5218924,461.8822326,68.63965977,66.14233247,2.497327301,82.37907526,0,82.37907526,2.05644476,80.3226305,1.177838486,4.214396111,2.385744011,-2.385744011,0.122167435,0.205864562,0.756395616,24.32828311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57852582,1.489887228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.548006049,23.38527109,64.12653187,24.87515832,461.8822326,0,0.672283648,47.75643653,-0.672283648,132.2435635,0.975626631,0,514.7511383,24.87515832,531.0314319,3,16,3% -3/3/2018 1:00,78.32028365,252.1510002,133.725764,448.5370891,42.92363681,278.0899656,235.4525535,42.63741208,41.62933078,1.008081295,33.71766572,0,33.71766572,1.294306021,32.4233597,1.366946821,4.400865165,4.834032326,-4.834032326,0,0.320982551,0.323576505,10.4073327,0.228701275,1,0.203989291,0,0.938355814,0.977117777,0.724496596,1,40.30771887,0.937720306,0.035300752,0.312029739,0.904774292,0.629270888,0.961238037,0.922476074,0.224005177,10.00392405,40.53172405,10.94164436,181.6042543,0,0.524934413,58.33617193,-0.524934413,121.6638281,0.954750005,0,213.9183869,10.94164436,221.0794743,3,17,3% -3/3/2018 2:00,89.4472017,261.6769622,0.278371665,3.182470962,0.247667183,1.33704326,1.094745673,0.242297587,0.240199103,0.002098483,0.074962512,0,0.074962512,0.007468079,0.067494433,1.561148176,4.567124567,101.4986117,-101.4986117,0,0.889699685,0.00186702,0.060049776,0.943905725,1,0.009852033,0,0.960357706,0.999119669,0.724496596,1,0.231199331,0.005410598,0.111361697,0.312029739,0.733129488,0.457626084,0.961238037,0.922476074,0.001339914,0.057722129,0.232539245,0.063132727,0.061408965,0,0.343992353,69.87970264,-0.343992353,110.1202974,0.904647931,0,0.288092738,0.063132727,0.329411845,3,18,14% -3/3/2018 3:00,101.7149281,270.849184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775260393,4.727210037,-4.506715341,4.506715341,0.699152597,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122169569,82.98266884,-0.122169569,97.01733116,0.640732779,0,0,0,0,3,19,0% -3/3/2018 4:00,113.4809727,280.4722106,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980616612,4.895163536,-1.983978797,1.983978797,0.869434046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104046573,95.97223834,0.104046573,84.02776166,0,0.56944597,0,0,0,3,20,0% -3/3/2018 5:00,124.8490482,291.5525561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17902696,5.088552047,-1.074766671,1.074766671,0.713949615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.326907709,109.0811931,0.326907709,70.91880693,0,0.897051634,0,0,0,3,21,0% -3/3/2018 6:00,135.2474709,305.5794922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360513672,5.333368265,-0.560400327,0.560400327,0.62598779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531212758,122.0874327,0.531212758,57.91256732,0,0.955875755,0,0,0,3,22,0% -3/3/2018 7:00,143.6284237,324.6753175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506788893,5.66665329,-0.19464802,0.19464802,0.563440462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703025078,134.6702132,0.703025078,45.32978684,0,0.978878782,0,0,0,3,23,0% -3/4/2018 8:00,148.2144756,350.1859022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586830598,6.111896987,0.109585194,-0.109585194,0.511413518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830622231,146.1627093,0.830622231,33.83729073,0,0.989804163,0,0,0,3,0,0% -3/4/2018 9:00,147.3090975,18.28523597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.57102877,0.319137572,0.39762232,-0.39762232,0.462156268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90529486,154.8630251,0.90529486,25.13697492,0,0.994769376,0,0,0,3,1,0% -3/4/2018 10:00,141.3026979,41.85459688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46619732,0.730500523,0.706349469,-0.706349469,0.409360816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921940335,157.2114145,0.921940335,22.78858548,0,0.995766555,0,0,0,3,2,0% -3/4/2018 11:00,132.1263441,59.10772498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306039733,1.031624414,1.085779429,-1.085779429,0.344474472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879410704,151.5713585,0.879410704,28.42864147,0,0.993143744,0,0,0,3,3,0% -3/4/2018 12:00,121.3310464,71.99893613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117626245,1.256618493,1.64170558,-1.64170558,0.249405501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78059131,141.3147471,0.78059131,38.68525286,0,0.985945995,0,0,0,3,4,0% -3/4/2018 13:00,109.7773847,82.47756471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915976808,1.439505063,2.715364063,-2.715364063,0.065799087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63220462,129.2129633,0.63220462,50.78703667,0,0.970911682,0,0,0,3,5,0% -3/4/2018 14:00,97.94875911,91.8477164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709528345,1.603045062,6.647447707,-6.647447707,0,#DIV/0!,0,0,0.377577924,1,0.149314054,0,0.945427672,0.984189635,0.724496596,1,0,0,0.054785813,0.312029739,0.856413961,0.580910557,0.961238037,0.922476074,0,0,0,0,0,0,-0.444352577,116.3819243,0.444352577,63.61807572,0,0.937476741,0,0,0,3,6,0% -3/4/2018 15:00,85.98501769,101.0253289,18.85319495,108.6633965,11.2448746,11.04792349,0,11.04792349,10.90580014,0.142123347,29.53082278,24.62057293,4.910249849,0.339074458,4.571175391,1.500721666,1.763224617,-12.20892701,12.20892701,0,0.596443978,0.084768615,2.726450036,1,0.38195424,0,0.081724847,0.961238037,1,0.519015061,0.794518465,10.48306992,0.233720217,0.115824807,0.079436176,0.724496596,0.448993192,0.992240155,0.953478191,0.061414573,2.63997655,10.54448449,2.873696767,0,15.2166407,-0.226576508,103.0955998,0.226576508,76.90440016,0,0.829323989,10.54448449,15.49322193,20.68448838,3,7,96% -3/4/2018 16:00,74.72583499,110.7970714,198.3850078,551.858661,53.0044113,52.90164272,0,52.90164272,51.40613273,1.495509987,50.92534253,1.226322012,49.69902052,1.598278566,48.10074196,1.304211857,1.933773697,-2.772140447,2.772140447,0.995782374,0.267179521,1.49088772,47.95207397,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.41353011,1.15794738,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.080143078,46.09335745,50.49367319,47.25130483,0,1.226322012,-0.002222167,90.12732089,0.002222167,89.87267911,0,0,50.49367319,47.25130483,81.41870717,3,8,61% -3/4/2018 17:00,64.13166088,122.0000754,392.1342403,729.7956717,73.72100389,235.3909403,160.9368231,74.45411717,71.49804363,2.956073541,97.3004468,0,97.3004468,2.222960269,95.07748653,1.119308637,2.129303004,-1.269687749,1.269687749,0.747283083,0.187999405,2.349468665,75.56698851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72663909,1.610527148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.70218205,72.63786369,70.42882114,74.24839084,160.9368231,0,0.220523126,77.26023943,-0.220523126,102.7397606,0.823266411,0,202.9227018,74.24839084,251.5167887,3,9,24% -3/4/2018 18:00,54.88796606,135.6048738,552.2853019,810.1705367,86.29378089,432.1224448,344.2673799,87.8550649,83.69170501,4.163359892,136.5100415,0,136.5100415,2.602075884,133.9079656,0.957975728,2.36675153,-0.587415627,0.587415627,0.630607678,0.156248556,2.865743428,92.17215957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.44765022,1.88519512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076221358,88.59938571,82.52387158,90.48458083,344.2673799,0,0.424931992,64.8536412,-0.424931992,115.1463588,0.932334112,0,403.4960937,90.48458083,462.7164421,3,10,15% -3/4/2018 19:00,47.90113855,152.5106698,663.0925162,849.0101847,93.90600659,602.8503274,506.7772619,96.07306549,91.07439401,4.998671479,163.6060701,0,163.6060701,2.831612575,160.7744576,0.836032583,2.661813332,-0.144257626,0.144257626,0.554823197,0.141618257,3.088520947,99.33745037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.54417171,2.051493671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237622912,95.48693578,89.78179462,97.53842945,506.7772619,0,0.596903631,53.35154307,-0.596903631,126.6484569,0.966234385,0,579.4474103,97.53842945,643.2843616,3,11,11% -3/4/2018 20:00,44.31774026,172.6546402,715.6996874,864.2912671,97.31963825,726.1107575,626.3304189,99.78033864,94.38509208,5.395246557,176.4642215,0,176.4642215,2.934546164,173.5296753,0.773490485,3.013391941,0.21391766,-0.21391766,0.493571615,0.135978316,3.034474926,97.59914457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.72654062,2.126068707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198466754,93.81601012,92.92500738,95.94207883,626.3304189,0,0.724675168,43.55816768,-0.724675168,136.4418323,0.981003569,0,707.3573839,95.94207883,770.1495556,3,12,9% -3/4/2018 21:00,44.98494791,193.910992,706.1391803,861.6406085,96.70722314,788.0204147,688.9060957,99.11431896,93.79114355,5.323175415,174.1276992,0,174.1276992,2.916079589,171.2116197,0.785135455,3.384385267,0.557611279,-0.557611279,0.434796545,0.136952071,2.726542843,87.69499026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.1556147,2.112689736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975371008,84.29576028,92.13098571,86.40845002,688.9060957,0,0.799528352,36.91491314,-0.799528352,143.0850869,0.987463131,0,772.4003558,86.40845002,828.9529581,3,13,7% -3/4/2018 22:00,49.72711696,213.189278,635.1359797,840.1410207,92.04466878,779.9213537,685.864248,94.05710571,89.26918241,4.787923298,156.771558,0,156.771558,2.775486372,153.9960716,0.867901918,3.720854831,0.944964102,-0.944964102,0.368555311,0.144921201,2.202756092,70.84820783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.80893365,2.010830429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59588929,68.10199221,87.40482294,70.11282264,685.864248,0,0.816368004,35.27714756,-0.816368004,144.7228524,0.988753112,0,765.5552323,70.11282264,811.4426725,3,14,6% -3/4/2018 23:00,57.51595896,229.0282376,508.1246795,791.4712565,83.05342846,697.0353289,612.6558093,84.37951962,80.54906116,3.830458467,125.7050787,0,125.7050787,2.504367303,123.2007114,1.003842856,3.997296826,1.466606094,-1.466606094,0.279349276,0.163450885,1.521229328,48.92796439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.42682142,1.814405586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.10212547,47.03142044,78.52894689,48.84582602,612.6558093,0,0.774072089,39.27901942,-0.774072089,140.7209806,0.985406533,0,682.2439838,48.84582602,714.2126,3,15,5% -3/4/2018 0:00,67.2484864,241.8010746,335.6584397,690.6298517,68.56748056,535.6172471,466.586994,69.03025313,66.49991803,2.530335101,83.45183736,0,83.45183736,2.067562526,81.38427483,1.173707505,4.220224886,2.36017995,-2.36017995,0.126539147,0.204277541,0.771670178,24.81956551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.92225066,1.497942012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559072417,23.85751042,64.48132307,25.35545244,466.586994,0,0.675596331,47.49952413,-0.675596331,132.5004759,0.975991309,0,519.8661742,25.35545244,536.4608107,3,16,3% -3/4/2018 1:00,78.11133783,252.4852914,137.447255,455.7654593,43.55476132,283.90145,240.6238899,43.27756004,42.24142457,1.036135466,34.63901504,0,34.63901504,1.313336754,33.32567829,1.363300028,4.406699648,4.745530386,-4.745530386,0,0.316883457,0.328334188,10.56035614,0.219591257,1,0.207686089,0,0.93785375,0.976615713,0.724496596,1,40.89408892,0.951508007,0.034027105,0.312029739,0.908039832,0.632536428,0.961238037,0.922476074,0.227546942,10.15101601,41.12163586,11.10252401,187.7849874,0,0.52795552,58.13257867,-0.52795552,121.8674213,0.955295052,0,220.5117052,11.10252401,227.7780851,3,17,3% -3/4/2018 2:00,89.27877098,262.013788,0.452160512,4.505959375,0.3954418,1.947479437,1.560553089,0.386926347,0.383517771,0.003408577,0.12155558,0,0.12155558,0.011924029,0.109631551,1.558208506,4.573003287,77.69778998,-77.69778998,0,0.874560668,0.002981007,0.095879443,0.927309474,1,0.012869668,0,0.960083374,0.998845337,0.724496596,1,0.369289645,0.008638919,0.110008925,0.312029739,0.735777829,0.460274425,0.961238037,0.922476074,0.00213366,0.092162967,0.371423305,0.100801886,0.113437425,0,0.346330927,69.73693829,-0.346330927,110.2630617,0.905629411,0,0.474155573,0.100801886,0.540128392,3,18,14% -3/4/2018 3:00,101.5244632,271.1956802,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771936155,4.733257536,-4.57265765,4.57265765,0.687875798,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124716284,82.83562814,-0.124716284,97.16437186,0.649090045,0,0,0,0,3,19,0% -3/4/2018 4:00,113.283091,280.8374047,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977162924,4.901537375,-1.99532666,1.99532666,0.871374645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101684629,95.83618718,0.101684629,84.16381282,0,0.558283598,0,0,0,3,20,0% -3/4/2018 5:00,124.6295271,291.9438314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175195594,5.095381088,-1.07701223,1.07701223,0.714333628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.324670041,108.9455857,0.324670041,71.05441427,0,0.895997494,0,0,0,3,21,0% -3/4/2018 6:00,134.9882321,305.9912443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355989102,5.340554695,-0.55954939,0.55954939,0.625842271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529030245,121.9399558,0.529030245,58.06004422,0,0.955487445,0,0,0,3,22,0% -3/4/2018 7:00,143.3107779,325.0538927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501244928,5.673260674,-0.19216501,0.19216501,0.563015842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700824749,134.4932112,0.700824749,45.50678879,0,0.978655488,0,0,0,3,23,0% -3/5/2018 8:00,147.8397772,350.3869624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580290877,6.115406149,0.113363299,-0.113363299,0.510767424,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828332304,145.9278045,0.828332304,34.07219545,0,0.989637752,0,0,0,3,0,0% -3/5/2018 9:00,146.9217985,18.20736216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564269126,0.317778418,0.402865953,-0.402865953,0.461259554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90284971,154.5352145,0.90284971,25.46478554,0,0.994619797,0,0,0,3,1,0% -3/5/2018 10:00,140.9459884,41.60468647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459971565,0.726138763,0.713730973,-0.713730973,0.408098505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919285016,156.821779,0.919285016,23.17822103,0,0.995609904,0,0,0,3,2,0% -3/5/2018 11:00,131.8058904,58.80937891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300446761,1.026417293,1.0969472,-1.0969472,0.34256467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876504755,151.2235662,0.876504755,28.77643376,0,0.992955244,0,0,0,3,3,0% -3/5/2018 12:00,121.0359539,71.70120942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112475909,1.251422182,1.661183816,-1.661183816,0.246074526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777411546,141.0241861,0.777411546,38.97581389,0,0.985684001,0,0,0,3,4,0% -3/5/2018 13:00,109.495532,82.19153873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911057549,1.434512968,2.760909647,-2.760909647,0.058010333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628746734,128.9577192,0.628746734,51.04228076,0,0.970476724,0,0,0,3,5,0% -3/5/2018 14:00,97.66978056,91.57269464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70465925,1.598245026,6.905500451,-6.905500451,0,#DIV/0!,0,0,0.394217113,1,0.143812383,0,0.946102137,0.9848641,0.724496596,1,0,0,0.056818525,0.312029739,0.85154215,0.576038746,0.961238037,0.922476074,0,0,0,0,0,0,-0.440631443,116.1441766,0.440631443,63.85582336,0,0.936526482,0,0,0,3,6,0% -3/5/2018 15:00,85.7091853,100.7586059,21.71622771,122.4141525,12.55733996,12.34239592,0,12.34239592,12.17868983,0.163706097,32.91512204,27.27112108,5.644000961,0.378650131,5.265350829,1.495907483,1.758569422,-11.45327511,11.45327511,0,0.578246836,0.094662533,3.044672456,1,0.328308673,0,0.087090414,0.961238037,1,0.507378673,0.782882077,11.7066199,0.262189437,0.115824807,0.066286894,0.724496596,0.448993192,0.993628222,0.954866259,0.068582683,2.946001162,11.77520258,3.208190599,0,18.3177755,-0.222777518,102.8722226,0.222777518,77.12777743,0,0.825560836,11.77520258,18.33062865,23.77223242,3,7,102% -3/5/2018 16:00,74.42706304,110.5383761,203.8930057,559.4071601,53.71184575,54.68716789,1.057900863,53.62926703,52.09223543,1.537031602,51.05583016,0,51.05583016,1.619610325,49.43621983,1.298997303,1.929258613,-2.726881659,2.726881659,0.996477918,0.263431527,1.53304415,49.30796968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.07303812,1.173402167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.110685268,47.39669597,51.18372338,48.57009814,1.057900863,0,0.001891111,89.89164727,-0.001891111,90.10835273,0,0,51.18372338,48.57009814,82.97188121,3,8,62% -3/5/2018 17:00,63.80925611,121.7563668,397.9799982,733.6633303,74.16969397,239.8369729,164.9036275,74.93334537,71.93320404,3.000141334,98.73134815,0,98.73134815,2.23648993,96.49485822,1.113681612,2.125049486,-1.258500863,1.258500863,0.745370012,0.186365381,2.378584734,76.50346139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14493183,1.620329341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723276543,73.53803704,70.86820837,75.15836638,164.9036275,0,0.224767439,77.01079691,-0.224767439,102.9892031,0.82754785,0,207.3338507,75.15836638,256.5234984,3,9,24% -3/5/2018 18:00,54.53621808,135.3986519,558.163628,812.6912236,86.64975584,437.075697,348.8310778,88.2446192,84.036946,4.207673197,137.9460436,0,137.9460436,2.612809842,135.3332338,0.951836567,2.363152279,-0.584415206,0.584415206,0.630094576,0.155240778,2.892855192,93.04416709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77950899,1.892971836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.095863739,89.43759251,82.87537273,91.33056435,348.8310778,0,0.429229537,64.58132543,-0.429229537,115.4186746,0.93351221,0,408.5134432,91.33056435,468.287471,3,10,15% -3/5/2018 19:00,47.52150344,152.3894987,668.8747284,850.9486368,94.21766396,607.9918044,511.5728904,96.418914,91.37665377,5.042260237,165.0174321,0,165.0174321,2.841010195,162.1764219,0.829406701,2.659698498,-0.144639726,0.144639726,0.55488854,0.140859955,3.114033968,100.1580368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.83471528,2.058302215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.256107009,96.2757147,90.09082229,98.33401692,511.5728904,0,0.601179517,53.04557889,-0.601179517,126.9544211,0.966830167,0,584.6949253,98.33401692,649.0525727,3,11,11% -3/5/2018 20:00,43.92793365,172.6786878,721.2998143,865.9848093,97.60632369,731.2799189,631.1793233,100.1005956,94.66313291,5.437462679,177.8306817,0,177.8306817,2.943190788,174.8874909,0.766687076,3.01381165,0.211419716,-0.211419716,0.493998789,0.135320046,3.058414503,98.36912366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.99380404,2.132331707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.215810896,94.55614331,93.20961493,96.68847502,631.1793233,0,0.728857269,43.20931974,-0.728857269,136.7906803,0.981399463,0,712.648664,96.68847502,775.9293371,3,12,9% -3/5/2018 21:00,44.61678834,194.0946433,711.4936605,863.2983486,96.98039141,793.1242031,693.7045886,99.41961454,94.05607479,5.363539749,175.434192,0,175.434192,2.924316621,172.5098754,0.778709858,3.387590587,0.55311287,-0.55311287,0.435565818,0.136305349,2.748820644,88.41152091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.41027669,2.118657437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.991511199,84.98451679,92.40178789,87.10317423,693.7045886,0,0.803551391,36.52941392,-0.803551391,143.4705861,0.987776226,0,777.6266885,87.10317423,834.6339739,3,13,7% -3/5/2018 22:00,49.40420093,213.4772982,640.1986485,841.9652028,92.31627625,784.919812,690.5611242,94.35868774,89.53259991,4.826087834,158.0072506,0,158.0072506,2.78367634,155.2235743,0.862265971,3.725881733,0.937739984,-0.937739984,0.369790708,0.144199424,2.223217109,71.5063045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06214057,2.016764032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.610713228,68.73457976,87.6728538,70.75134379,690.5611242,0,0.820177748,34.897409,-0.820177748,145.102591,0.989037605,0,770.6637741,70.75134379,816.9691136,3,14,6% -3/5/2018 23:00,57.24121113,229.3574359,512.860335,793.7778935,83.34435764,701.9619135,617.2645379,84.69737558,80.83121775,3.866157838,126.8620658,0,126.8620658,2.513139891,124.3489259,0.999047602,4.00304242,1.454370398,-1.454370398,0.281441704,0.162508878,1.539557428,49.51745907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69804106,1.820761296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115404116,47.59806515,78.81344518,49.41882645,617.2645379,0,0.777628784,38.95602113,-0.777628784,141.0439789,0.985701969,0,687.2523153,49.41882645,719.5959489,3,15,5% -3/5/2018 0:00,67.0127621,242.1387067,340.0158201,694.1555535,68.92996941,540.6604865,471.2458271,69.41465938,66.85147651,2.563182875,84.51926504,0,84.51926504,2.078492902,82.44077214,1.169593339,4.226117678,2.335158283,-2.335158283,0.130818104,0.202725771,0.786957825,25.3112688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26018204,1.505861032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.570148265,24.33015433,64.83033031,25.83601536,471.2458271,0,0.678876406,47.24409631,-0.678876406,132.7559037,0.976348891,0,524.9306711,25.83601536,541.8398265,3,16,3% -3/5/2018 1:00,77.90320634,252.8224218,141.1677535,462.8429134,44.17261308,289.6491881,245.7443602,43.90482797,42.84064582,1.064182155,35.55972349,0,35.55972349,1.331967264,34.22775622,1.359667448,4.412583683,4.660197217,-4.660197217,0,0.312908664,0.332991816,10.71016145,0.21060129,1,0.211377735,0,0.937349401,0.976111365,0.724496596,1,41.46751937,0.965005749,0.032760406,0.312029739,0.911300241,0.635796837,0.961238037,0.922476074,0.231035785,10.29501457,41.69855516,11.26002032,193.9902809,0,0.530945496,57.93063954,-0.530945496,122.0693605,0.955828375,0,227.1199701,11.26002032,234.4894282,3,17,3% -3/5/2018 2:00,89.108945,262.3528713,0.683471252,6.205628546,0.586966178,2.738165894,2.163746618,0.574419277,0.569266982,0.005152295,0.183414714,0,0.183414714,0.017699196,0.165715518,1.555244483,4.578921406,62.80733315,-62.80733315,0,0.85880156,0.004424799,0.142316745,0.910798174,1,0.015920363,0,0.959803805,0.998565768,0.724496596,1,0.548352934,0.012823007,0.108648008,0.312029739,0.738456989,0.462953585,0.961238037,0.922476074,0.003158782,0.136800269,0.551511717,0.149623276,0.193010149,0,0.348674852,69.59371542,-0.348674852,110.4062846,0.906599925,0,0.726494703,0.149623276,0.824420145,3,18,13% -3/5/2018 3:00,101.3341822,271.543985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768615124,4.739336601,-4.640465928,4.640465928,0.6762799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127242158,82.68974392,-0.127242158,97.31025608,0.657048475,0,0,0,0,3,19,0% -3/5/2018 4:00,113.0849059,281.2039496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973703943,4.907934791,-2.006754477,2.006754477,0.873328917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099334142,95.70082872,0.099334142,84.29917128,0,0.546648394,0,0,0,3,20,0% -3/5/2018 5:00,124.4091492,292.3357841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171349273,5.102221954,-1.079220156,1.079220156,0.714711206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322432684,108.8101073,0.322432684,71.18989275,0,0.894928872,0,0,0,3,21,0% -3/5/2018 6:00,134.7276136,306.4025056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35144045,5.347732559,-0.558641642,0.558641642,0.625687037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526835905,121.7919179,0.526835905,58.20808209,0,0.955093788,0,0,0,3,22,0% -3/5/2018 7:00,142.9915245,325.4306012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495672905,5.679835478,-0.189616735,0.189616735,0.562580061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698600303,134.3148137,0.698600303,45.68518627,0,0.978428316,0,0,0,3,23,0% -3/6/2018 8:00,147.4636249,350.5875571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573725782,6.118907187,0.117217998,-0.117217998,0.510108231,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826006671,145.6906854,0.826006671,34.30931455,0,0.989467801,0,0,0,3,0,0% -3/6/2018 9:00,146.5326634,18.13364519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557477437,0.316491814,0.408206872,-0.408206872,0.460346203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900358758,154.2052645,0.900358758,25.7947355,0,0.994466581,0,0,0,3,1,0% -3/6/2018 10:00,140.586632,41.35986475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453699613,0.721865818,0.721250729,-0.721250729,0.406812551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916575997,156.4305403,0.916575997,23.5694597,0,0.99544915,0,0,0,3,2,0% -3/6/2018 11:00,131.4824407,58.51453266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294801499,1.021271255,1.108344773,-1.108344773,0.340615571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873539946,150.8726469,0.873539946,29.12735307,0,0.992761633,0,0,0,3,3,0% -3/6/2018 12:00,120.7379266,71.40550204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107274351,1.246261115,1.681149282,-1.681149282,0.24266023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774170858,140.7299201,0.774170858,39.27007991,0,0.985414774,0,0,0,3,4,0% -3/6/2018 13:00,109.2109768,81.90654551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906091125,1.429538898,2.808095059,-2.808095059,0.049941152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625229103,128.699005,0.625229103,51.30099502,0,0.970029314,0,0,0,3,5,0% -3/6/2018 14:00,97.38837819,91.29804177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699747853,1.59345143,7.185131203,-7.185131203,0,#DIV/0!,0,0,0.411271598,1,0.138287988,0,0.946772472,0.985534435,0.724496596,1,0,0,0.058873851,0.312029739,0.846649492,0.571146088,0.961238037,0.922476074,0,0,0,0,0,0,-0.436854903,115.9033831,0.436854903,64.09661691,0,0.935545522,0,0,0,3,6,0% -3/6/2018 15:00,85.4304805,100.4917493,24.77639593,136.5909177,13.89438307,13.66219109,0,13.66219109,13.47541616,0.186774938,36.3285962,29.90230525,6.426290958,0.418966914,6.007324043,1.491043166,1.753911897,-10.781698,10.781698,0,0.56079113,0.104741729,3.368854039,1,0.272162279,0,0.092485173,0.961238037,1,0.495911405,0.771414809,12.95308257,0.291782458,0.115824807,0.053316155,0.724496596,0.448993192,0.994957491,0.956195528,0.075885026,3.25682304,13.0289676,3.548605499,0,21.76402571,-0.218918693,102.6455306,0.218918693,77.35446939,0,0.821604703,13.0289676,21.43003138,27.05449453,3,7,108% -3/6/2018 16:00,74.12632958,110.2791175,209.4456914,566.822594,54.40994373,57.77379232,3.425619051,54.34817327,52.76928317,1.578890092,52.42319332,0,52.42319332,1.640660555,50.78253276,1.293748514,1.924733697,-2.682873996,2.682873996,0.988952164,0.259780678,1.56597821,50.36724226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.72384216,1.188652987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.134545883,48.41490907,51.85838805,49.60356206,3.425619051,0,0.006043547,89.65372815,-0.006043547,90.34627185,0,0,51.85838805,49.60356206,84.32292734,3,8,63% -3/6/2018 17:00,63.48505864,121.5117491,403.8464383,737.4742285,74.61495172,244.3199283,168.9105277,75.40940067,72.36503563,3.044365037,100.1671606,0,100.1671606,2.249916094,97.91724454,1.108023299,2.120780101,-1.247434549,1.247434549,0.743477561,0.184760703,2.407705585,77.44008803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56002478,1.630056551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.7443745,74.43835819,71.30439928,76.06841475,168.9105277,0,0.229039228,76.75948633,-0.229039228,103.2405137,0.831696784,0,211.7867419,76.06841475,261.571998,3,9,24% -3/6/2018 18:00,54.1827122,135.1915051,564.0476089,815.1780875,87.00346026,442.0461743,353.4141602,88.63201406,84.37998493,4.252029131,139.3833484,0,139.3833484,2.623475336,136.7598731,0.945666726,2.359536884,-0.581401429,0.581401429,0.62957919,0.154248434,2.91993652,93.91519568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10925106,1.90069895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115484069,90.27485833,83.22473513,92.17555728,353.4141602,0,0.433542272,64.3074274,-0.433542272,115.6925726,0.934670992,0,413.550699,92.17555728,473.8777577,3,10,15% -3/6/2018 19:00,47.14009461,152.2684172,674.6501906,852.8612114,94.52710236,613.1344216,516.3718621,96.76255957,91.67676146,5.08579811,166.4270905,0,166.4270905,2.850340904,163.5767495,0.822749861,2.657585226,-0.144977445,0.144977445,0.554946293,0.140112763,3.139483504,100.9765814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12319021,2.065062282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274545111,97.06253087,90.39773532,99.12759315,516.3718621,0,0.605458256,52.73817512,-0.605458256,127.2618249,0.967417924,0,589.9451299,99.12759315,654.8221571,3,11,11% -3/6/2018 20:00,43.53662152,172.705433,726.883207,867.6548116,97.89051689,736.4358793,636.01757,100.4183093,94.93875663,5.479552651,179.1930094,0,179.1930094,2.951760262,176.2412491,0.759857391,3.014278442,0.208981374,-0.208981374,0.49441577,0.13467159,3.082268102,99.13633739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.25874404,2.138540262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.233092747,95.29361833,93.49183679,97.43215859,636.01757,0,0.733030649,42.85893054,-0.733030649,137.1410695,0.981790028,0,717.9275447,97.43215859,781.6949439,3,12,9% -3/6/2018 21:00,44.24796228,194.283552,716.8243044,864.9315664,97.25067798,798.2023352,698.4803996,99.72193562,94.31821123,5.403724394,176.7348185,0,176.7348185,2.932466758,173.8023517,0.772272629,3.390887665,0.548692686,-0.548692686,0.436321714,0.135668779,2.771004249,89.1250219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.6622522,2.124562184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.007583145,85.67036109,92.66983534,87.79492327,698.4803996,0,0.80755568,36.14220235,-0.80755568,143.8577976,0.988084765,0,782.8276766,87.79492327,840.287698,3,13,7% -3/6/2018 22:00,49.08158705,213.7709752,645.2337614,843.7603358,92.58450663,789.8823559,695.2255691,94.6567868,89.79274215,4.864044641,159.2361602,0,159.2361602,2.791764475,156.4443957,0.856635296,3.731007362,0.930630459,-0.930630459,0.371006508,0.143489867,2.243592639,72.16165157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.31219919,2.022623859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62547523,69.3645243,87.93767442,71.38714815,695.2255691,0,0.823960952,34.51671129,-0.823960952,145.4832887,0.989317513,0,775.7365052,71.38714815,822.4579659,3,14,6% -3/6/2018 23:00,56.96733119,229.691291,517.5686205,796.0445245,83.63110746,706.8442739,621.833302,85.01097188,81.109321,3.901650883,128.0122907,0,128.0122907,2.521786456,125.4905042,0.994267495,4.008869291,1.442339985,-1.442339985,0.283499025,0.161584579,1.557829836,50.10516254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.96536449,1.827025703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128642413,48.16298808,79.0940069,49.99001378,621.833302,0,0.781153921,38.63365089,-0.781153921,141.3663491,0.985992128,0,692.2167477,49.99001378,724.934212,3,15,5% -3/6/2018 0:00,66.77803842,242.4798822,344.3511533,697.6132025,69.28632288,545.6510091,475.8580601,69.79294905,67.1970846,2.595864448,85.58116216,0,85.58116216,2.089238274,83.49192389,1.165496638,4.232072314,2.310660648,-2.310660648,0.135007447,0.201208337,0.802254918,25.80327591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.59239369,1.513646018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.581230957,24.80309028,65.17362464,26.31673629,475.8580601,0,0.682123071,46.9902291,-0.682123071,133.0097709,0.976699445,0,529.9439276,26.31673629,547.1677052,3,16,3% -3/6/2018 1:00,77.69590667,253.1622631,144.8860849,469.772393,44.77749965,295.332822,250.8133166,44.51950533,43.42729282,1.092212508,36.47951555,0,36.47951555,1.350206826,35.12930872,1.356049387,4.418515032,4.577859133,-4.577859133,0,0.309053141,0.337551706,10.85682321,0.201728308,1,0.215064433,0,0.936842759,0.975604722,0.724496596,1,42.02829723,0.978220249,0.031500503,0.312029739,0.914555702,0.639052297,0.961238037,0.922476074,0.234473249,10.43599143,42.26277048,11.41421167,200.2171705,0,0.533903908,57.73039233,-0.533903908,122.2696077,0.956350189,0,233.7404994,11.41421167,241.2108726,3,17,3% -3/6/2018 2:00,88.93780672,262.6940821,0.980842013,8.329807774,0.826426468,3.732851786,2.923951124,0.808900662,0.801506661,0.007394001,0.262736309,0,0.262736309,0.024919807,0.237816502,1.552257557,4.584876658,52.61651569,-52.61651569,0,0.842568382,0.006229952,0.200376665,0.894378847,1,0.019003152,0,0.959519018,0.998280981,0.724496596,1,0.772342319,0.018054315,0.107279522,0.312029739,0.74116609,0.465662686,0.961238037,0.922476074,0.004436144,0.192609672,0.776778463,0.210663988,0.30883109,0,0.351022641,69.45012284,-0.351022641,110.5498772,0.907559046,0,1.057060912,0.210663988,1.194936279,3,18,13% -3/6/2018 3:00,101.1440764,271.8939633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765297153,4.745444876,-4.710238322,4.710238322,0.664348117,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129747442,82.54500182,-0.129747442,97.45499818,0.664635947,0,0,0,0,3,19,0% -3/6/2018 4:00,112.8864068,281.5716985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97023948,4.914353219,-2.018268192,2.018268192,0.875297878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096994656,95.56613544,0.096994656,84.43386456,0,0.53450768,0,0,0,3,20,0% -3/6/2018 5:00,124.1879101,292.7282478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167487923,5.109071738,-1.081392646,1.081392646,0.715082723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320195075,108.6747226,0.320195075,71.32527737,0,0.893845194,0,0,0,3,21,0% -3/6/2018 6:00,134.4656306,306.8130904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346867985,5.354898615,-0.557678593,0.557678593,0.625522346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52462918,121.6432832,0.52462918,58.35671683,0,0.954694588,0,0,0,3,22,0% -3/6/2018 7:00,142.6707128,325.8052664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490073685,5.686374619,-0.187004431,0.187004431,0.562133331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696351292,134.1349958,0.696351292,45.8650042,0,0.978197161,0,0,0,3,23,0% -3/7/2018 8:00,147.0861047,350.7875071,0,0,0,0,0,0,0,0,0,0,0,0,0,2.567136811,6.122396973,0.121148245,-0.121148245,0.50943612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823645089,145.4513636,0.823645089,34.54863637,0,0.989294241,0,0,0,3,0,0% -3/7/2018 9:00,146.1418217,18.06385171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550655963,0.315273688,0.413644279,-0.413644279,0.459416352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.897822056,153.8732468,0.897822056,26.12675324,0,0.994309677,0,0,0,3,1,0% -3/7/2018 10:00,140.2247872,41.12000056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447384229,0.717679398,0.728908512,-0.728908512,0.405502993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913813685,156.0378125,0.913813685,23.96218752,0,0.995284251,0,0,0,3,2,0% -3/7/2018 11:00,131.1561529,58.22315819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289106703,1.016185811,1.119973747,-1.119973747,0.338626899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870517083,150.5187835,0.870517083,29.48121645,0,0.992562873,0,0,0,3,3,0% -3/7/2018 12:00,120.4371142,71.11182652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102024184,1.24113551,1.701611461,-1.701611461,0.239160992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770870463,140.4321202,0.770870463,39.56787982,0,0.985138259,0,0,0,3,4,0% -3/7/2018 13:00,108.9238631,81.62260705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901080044,1.424583237,2.856989845,-2.856989845,0.041579651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621653337,128.4369706,0.621653337,51.56302935,0,0.969569321,0,0,0,3,5,0% -3/7/2018 14:00,97.10469335,91.02377704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694796618,1.588664607,7.489035195,-7.489035195,0,#DIV/0!,0,0,0.428749905,1,0.132743333,0,0.947438275,0.986200238,0.724496596,1,0,0,0.060951302,0.312029739,0.84173827,0.566234865,0.961238037,0.922476074,0,0,0,0,0,0,-0.433024918,115.6596828,0.433024918,64.34031724,0,0.934533204,0,0,0,3,6,0% -3/7/2018 15:00,85.14911374,100.2247694,28.02516852,151.0993928,15.24777653,14.99926537,0,14.99926537,14.78799981,0.211265558,39.74168598,32.48688269,7.254803293,0.459776721,6.795026572,1.48613239,1.749252217,-10.1813333,10.1813333,0,0.544074392,0.11494418,3.696999953,1,0.213381468,0,0.09790494,0.961238037,1,0.484625997,0.760129401,14.21478791,0.322460762,0.115824807,0.040534211,0.724496596,0.448993192,0.996228376,0.957466413,0.083276667,3.570331482,14.29806457,3.892792243,0,25.55478398,-0.215003397,102.4157266,0.215003397,77.58427342,0,0.817445534,14.29806457,24.78243629,30.51767348,3,7,113% -3/7/2018 16:00,73.82377816,110.0192902,215.0395812,574.1036483,55.09857998,60.9328341,5.874620402,55.05821369,53.4371545,1.621059196,53.80026158,0,53.80026158,1.661425478,52.1388361,1.288467995,1.920198856,-2.640086314,2.640086314,0.981635039,0.256225294,1.598916511,51.42665124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.36582548,1.203697103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.158409569,49.43325328,52.52423505,50.63695038,5.874620402,0,0.010232683,89.41370024,-0.010232683,90.58629976,0,0,52.52423505,50.63695038,85.66510634,3,8,63% -3/7/2018 17:00,63.15921191,121.2661927,409.7304342,741.2276818,75.05661393,248.8371635,172.9550623,75.88210118,72.79338009,3.088721084,101.6071213,0,101.6071213,2.26323384,99.34388746,1.102336201,2.116494334,-1.236493466,1.236493466,0.741606526,0.183185352,2.436816926,78.37640884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.97176578,1.639705212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.765465567,75.33838536,71.73723134,76.97809058,172.9550623,0,0.233335946,76.50644724,-0.233335946,103.4935528,0.835716685,0,216.2786626,76.97809058,266.6592834,3,9,23% -3/7/2018 18:00,53.82758834,134.9833719,569.9343006,817.6306791,87.35473984,447.0311053,358.0140276,89.01707763,84.72067213,4.296405499,140.8212374,0,140.8212374,2.634067711,138.1871697,0.939468645,2.355904274,-0.578378116,0.578378116,0.629062173,0.153271596,2.946975016,94.78484668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.43673256,1.90837309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.135073367,91.11079995,83.57180593,93.01917304,358.0140276,0,0.437867654,64.03209195,-0.437867654,115.9679081,0.935810245,0,418.605001,93.01917304,479.4841894,3,10,15% -3/7/2018 19:00,46.7570407,152.1473451,680.4162184,854.7476346,94.83418658,618.2754659,521.1716151,97.10385082,91.97458596,5.129264864,167.8343904,0,167.8343904,2.859600626,164.9747897,0.816064309,2.655472121,-0.145273495,0.145273495,0.55499692,0.139376729,3.164858975,101.7927438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40947044,2.071770919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292929553,97.84705717,90.7024,99.91882809,521.1716151,0,0.609737417,52.42948106,-0.609737417,127.5705189,0.967997488,0,595.1952141,99.91882809,660.5900887,3,11,11% -3/7/2018 20:00,43.14391896,172.734825,732.4475181,869.3011348,98.17210559,741.5761365,640.8427833,100.7333532,95.21185439,5.521498779,180.550632,0,180.550632,2.9602512,177.5903808,0.753003438,3.014791429,0.206600435,-0.206600435,0.494822934,0.134032955,3.106026982,99.90050464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.521256,2.144691917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.250305975,96.02816496,93.77156198,98.17285687,640.8427833,0,0.737193083,42.50714498,-0.737193083,137.492855,0.982175164,0,723.1914277,98.17285687,787.4435991,3,12,9% -3/7/2018 21:00,43.87857714,194.4776907,722.1291566,866.5402517,97.51799716,803.2526413,703.2314569,100.0211844,94.57746974,5.443714611,178.029102,0,178.029102,2.940527417,175.0885745,0.765825642,3.394276025,0.544348538,-0.544348538,0.437064607,0.135042321,2.793086727,89.83527031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.91146134,2.130402104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.023581826,86.35307888,92.93504317,88.48348098,703.2314569,0,0.811539286,35.75340243,-0.811539286,144.2465976,0.988388688,0,788.0010603,88.48348098,845.911729,3,13,7% -3/7/2018 22:00,48.75936741,214.0702419,650.2397794,845.5265811,92.84930602,794.8072443,699.8559053,94.95133899,90.04955687,4.901782119,160.4579119,0,160.4579119,2.799749154,157.6581627,0.851011502,3.736230551,0.923632643,-0.923632643,0.372203205,0.142792411,2.263877402,72.81407928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.55905926,2.028408731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.640171471,69.99166262,88.19923073,72.02007135,699.8559053,0,0.82771603,34.13517101,-0.82771603,145.864829,0.989592809,0,780.7716022,72.02007135,827.9072985,3,14,6% -3/7/2018 23:00,56.69438444,230.0296943,522.2483983,798.2716308,83.91366773,711.6811794,626.3608894,85.32029006,81.38336104,3.936929025,129.1554772,0,129.1554772,2.53030669,126.6251706,0.989503676,4.014775543,1.430509394,-1.430509394,0.285522176,0.160677693,1.576042545,50.69094586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22878219,1.833198584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141837459,48.72606529,79.37061965,50.55926387,626.3608894,0,0.78464631,38.31202193,-0.78464631,141.6879781,0.986277021,0,697.135972,50.55926387,730.225999,3,15,5% -3/7/2018 0:00,66.54435377,242.8244761,348.6636085,701.0040934,69.63661525,550.5882027,480.4230148,70.16518792,67.53681437,2.628373557,86.63732945,0,86.63732945,2.099800881,84.53752857,1.161418072,4.238086612,2.286669665,-2.286669665,0.139110146,0.199724358,0.817557748,26.29546753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.91895486,1.521298591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.592317806,25.27620358,65.51127266,26.79750217,480.4230148,0,0.685335534,46.73799927,-0.685335534,133.2620007,0.977043036,0,534.9052335,26.79750217,552.4436628,3,16,3% -3/7/2018 1:00,77.48945786,253.5046871,148.6010928,476.5568051,45.36971801,300.9520141,255.8301427,45.12187142,44.00165361,1.120217807,37.39811979,0,37.39811979,1.368064394,36.0300554,1.352446175,4.424491459,4.498355528,-4.498355528,0,0.305312142,0.342016099,11.0004134,0.192969415,1,0.21874636,0,0.936333818,0.975095781,0.724496596,1,42.57669999,0.991157997,0.030247253,0.312029739,0.917806373,0.642302969,0.961238037,0.922476074,0.237860807,10.57401578,42.8145608,11.56517378,206.4627496,0,0.536830321,57.53187538,-0.536830321,122.4681246,0.956860701,0,240.3706521,11.56517378,247.939827,3,17,3% -3/7/2018 2:00,88.76547291,263.0372911,1.352069018,10.91930806,1.11681367,4.951910869,3.858580784,1.093330085,1.083137617,0.010192467,0.36150084,0,0.36150084,0.033676053,0.327824787,1.549249764,4.590866786,45.20779994,-45.20779994,0,0.826003447,0.008419013,0.270784404,0.878061204,1,0.02211647,0,0.959229092,0.997991055,0.724496596,1,1.044096657,0.024398186,0.105904294,0.312029739,0.743903722,0.468400318,0.961238037,0.922476074,0.005980102,0.260288269,1.050076759,0.284686455,0.470510697,0,0.35337228,69.3062819,-0.35337228,110.6937181,0.908506162,0,1.477538627,0.284686455,1.663860218,3,18,13% -3/7/2018 3:00,100.9541403,272.2454809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761982142,4.751580015,-4.7820788,4.7820788,0.652062672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132232355,82.40138931,-0.132232355,97.59861069,0.671877717,0,0,0,0,3,19,0% -3/7/2018 4:00,112.6875865,281.9405056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966769411,4.920790118,-2.029873753,2.029873753,0.877282546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094665756,95.43208235,0.094665756,84.56791765,0,0.521825906,0,0,0,3,20,0% -3/7/2018 5:00,123.96581,293.1210587,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163611545,5.115927581,-1.083531842,1.083531842,0.715448548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.317956708,108.5394002,0.317956708,71.46059982,0,0.892745887,0,0,0,3,21,0% -3/7/2018 6:00,134.2023035,307.2228183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34227206,5.362049717,-0.556661713,0.556661713,0.625348449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52240957,121.4940199,0.52240957,58.50598006,0,0.954289655,0,0,0,3,22,0% -3/7/2018 7:00,142.3483964,326.177721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.484448203,5.692875177,-0.184329309,0.184329309,0.561675858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694077331,133.953738,0.694077331,46.04626202,0,0.977961918,0,0,0,3,23,0% -3/8/2018 8:00,146.7073046,350.9866458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560525502,6.1258726,0.125153014,-0.125153014,0.508751264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821247383,145.2098572,0.821247383,34.79014284,0,0.989117005,0,0,0,3,0,0% -3/8/2018 9:00,145.7494026,17.9977601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543806957,0.314120172,0.419177398,-0.419177398,0.458470133,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895239718,153.5392375,0.895239718,26.46076255,0,0.994149037,0,0,0,3,1,0% -3/8/2018 10:00,139.8606111,40.88496573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441028158,0.713577267,0.736704127,-0.736704127,0.404169864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910998546,155.64371,0.910998546,24.35628998,0,0.99511517,0,0,0,3,2,0% -3/8/2018 11:00,130.8271838,57.93522698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283365109,1.011160464,1.131835793,-1.131835793,0.33659837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867437017,150.1621566,0.867437017,29.83784335,0,0.992358927,0,0,0,3,3,0% -3/8/2018 12:00,120.1336656,70.82019508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096728007,1.236045581,1.722580214,-1.722580214,0.235575124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767511612,140.1309566,0.767511612,39.86904335,0,0.984854406,0,0,0,3,4,0% -3/8/2018 13:00,108.6343338,81.33974573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896026805,1.419646376,2.907667975,-2.907667975,0.032913181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618021067,128.1717659,0.618021067,51.82823409,0,0.969096609,0,0,0,3,5,0% -3/8/2018 14:00,96.81886657,90.74992071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689808,1.583884912,7.820380011,-7.820380011,0,#DIV/0!,0,0,0.446660892,1,0.127180843,0,0.948099164,0.986861127,0.724496596,1,0,0,0.063050388,0.312029739,0.836810746,0.561307342,0.961238037,0.922476074,0,0,0,0,0,0,-0.429143459,115.4132142,0.429143459,64.58678585,0,0.933488845,0,0,0,3,6,0% -3/8/2018 15:00,84.8652871,99.95767771,31.45347604,165.8513699,16.61015386,16.34640602,0,16.34640602,16.10929643,0.237109588,43.12753851,35.00042167,8.127116844,0.500857424,7.626259421,1.481178681,1.744590589,-9.641782188,9.641782188,0,0.52808643,0.125214356,4.027324108,1,0.15182038,0,0.103345764,0.961238037,1,0.473534014,0.749037418,15.48486848,0.354211572,0.115824807,0.027949773,0.724496596,0.448993192,0.997441565,0.958679602,0.090717375,3.884613694,15.57558585,4.238825266,0,29.68664436,-0.211034866,102.1830049,0.211034866,77.81699506,0,0.813072326,15.57558585,28.37621425,34.14725055,3,7,119% -3/8/2018 16:00,73.51955156,109.758891,220.6712094,581.2493828,55.77765226,64.16184634,8.402583303,55.75926304,54.09575025,1.663512788,55.18619156,0,55.18619156,1.681902013,53.50428955,1.283158239,1.915654032,-2.598487304,2.598487304,0.97452119,0.252763613,1.631841677,52.48563775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.99889277,1.218532283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.18226374,50.45119139,53.18115651,51.66972368,8.402583303,0,0.014456073,89.1716992,-0.014456073,90.8283008,0,0,53.18115651,51.66972368,86.99795726,3,8,64% -3/8/2018 17:00,62.83185886,121.0196705,415.6288867,744.9231265,75.49452619,253.3860327,177.0347589,76.35127379,73.21808768,3.13318611,103.0504741,0,103.0504741,2.27643851,100.7740356,1.096622812,2.112191711,-1.225681719,1.225681719,0.739757608,0.181639267,2.465904714,79.31197208,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.38001086,1.649271951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786539571,76.23768434,72.16655043,77.88695629,177.0347589,0,0.237655072,76.25181799,-0.237655072,103.748182,0.839611054,0,220.806891,77.88695629,271.7823462,3,9,23% -3/8/2018 18:00,53.4709863,134.7741931,575.8207926,820.0486108,87.70344568,452.0277434,362.6280998,89.39964357,85.05886321,4.340780363,142.2590003,0,142.2590003,2.644582479,139.6144178,0.933244765,2.352253416,-0.575348851,0.575348851,0.628544138,0.152310314,2.973958467,95.65272721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.76181468,1.915991003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.154622786,91.94503972,83.91643747,93.86103073,362.6280998,0,0.442203176,63.75546289,-0.442203176,116.2445371,0.936929803,0,423.6735118,93.86103073,485.1036791,3,10,14% -3/8/2018 19:00,46.37247071,152.0262042,686.170162,856.6076694,95.13878535,623.4122602,525.9696198,97.44264047,92.26999995,5.172640521,169.2386854,0,169.2386854,2.868785403,166.3699,0.809352296,2.653357813,-0.145530468,0.145530468,0.555040865,0.138651883,3.190149939,102.6061881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.69343361,2.078425259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311252771,98.62897082,91.00468638,100.7073961,525.9696198,0,0.614014605,52.11964542,-0.614014605,127.8803546,0.968568712,0,600.4424037,100.7073961,666.3533802,3,11,11% -3/8/2018 20:00,42.74994174,172.7668151,737.9904321,870.9236639,98.45098052,746.6982287,645.6526248,101.0456038,95.48232021,5.563283605,181.9029847,0,181.9029847,2.968660308,178.9343244,0.746127238,3.015349761,0.204274784,-0.204274784,0.495220644,0.133404142,3.1296825,100.6613474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78123803,2.150784288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267444317,96.75951597,94.04868235,98.91030026,645.6526248,0,0.741342384,42.15410807,-0.741342384,137.8458919,0.98255478,0,728.4377552,98.91030026,793.1725686,3,12,9% -3/8/2018 21:00,43.50874135,194.6770336,727.4062867,868.1244106,97.78226532,808.27299,707.9557249,100.3172651,94.83376924,5.483495847,179.3165719,0,179.3165719,2.948496078,176.3680758,0.75937079,3.397755214,0.540078318,-0.540078318,0.437794858,0.134425928,2.815061199,90.54204486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.15782618,2.136175371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.039502256,87.03245745,93.19732843,89.16863282,707.9557249,0,0.815500309,35.36313864,-0.815500309,144.6368614,0.988687945,0,793.144619,89.16863282,851.5037058,3,13,7% -3/8/2018 22:00,48.43763503,214.3750308,655.2151786,847.264108,93.11062157,799.6927667,704.4504851,95.24228157,90.30299279,4.939288781,161.6721347,0,161.6721347,2.807628782,158.8645059,0.845396213,3.741550122,0.916743769,-0.916743769,0.373381272,0.142106936,2.284066122,73.46341789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.80267151,2.034117495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.65479813,70.6158316,88.45746964,72.64994909,704.4504851,0,0.831441434,33.75290588,-0.831441434,146.2470941,0.989863473,0,785.7672736,72.64994909,833.3152123,3,14,6% -3/8/2018 23:00,56.4224369,230.3725364,526.8985348,800.4596882,84.19202775,716.4714179,630.8461067,85.6253112,81.65332748,3.971983718,130.2913502,0,130.2913502,2.538700272,127.75265,0.984757296,4.020759266,1.41887341,-1.41887341,0.287512046,0.159787933,1.594191506,51.27467884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.48828421,1.839279705,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.15498632,49.28717163,79.64327053,51.12645133,630.8461067,0,0.78810478,37.99124866,-0.78810478,142.0087513,0.986556659,0,702.0086982,51.12645133,735.4699381,3,15,5% -3/8/2018 0:00,66.31174746,243.172363,352.9523492,704.3294815,69.98091685,555.4714532,484.9400153,70.5314379,67.870734,2.660703896,87.68756625,0,87.68756625,2.110182845,85.5773834,1.157358326,4.244158385,2.263168845,-2.263168845,0.143129023,0.198272988,0.832862559,26.78772283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.23993111,1.528820288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.603406089,25.74937811,65.8433372,27.2781984,484.9400153,0,0.688513016,46.48748387,-0.688513016,133.5125161,0.977379732,0,539.8138791,27.2781984,557.6669144,3,16,3% -3/8/2018 1:00,77.28388017,253.8495659,152.3116421,483.1990252,45.94955545,306.5064527,260.7942564,45.71219631,44.56400682,1.148189495,38.31526966,0,38.31526966,1.385548633,36.92972102,1.348858168,4.43051073,4.421537579,-4.421537579,0,0.301681177,0.346387158,11.1410017,0.184321863,1,0.222423665,0,0.935822575,0.974584538,0.724496596,1,43.11299654,1.003825268,0.029000527,0.312029739,0.921052392,0.645548988,0.961238037,0.922476074,0.24119987,10.70915461,43.35419641,11.71297987,212.7241733,0,0.539724302,57.33512717,-0.539724302,122.6648728,0.95736011,0,247.0078343,11.71297987,254.6737454,3,17,3% -3/8/2018 2:00,88.5920768,263.3823695,1.803957425,14.00555052,1.459835132,6.411490322,4.982075612,1.42941471,1.415815716,0.013598993,0.481409779,0,0.481409779,0.044019415,0.437390363,1.546223431,4.596889539,39.58228407,-39.58228407,0,0.809240347,0.011004854,0.353953929,0.861855853,1,0.025258455,0,0.958934135,0.997696098,0.724496596,1,1.365255342,0.031891917,0.104523272,0.312029739,0.746668206,0.471164802,0.961238037,0.922476074,0.007798139,0.34023398,1.373053481,0.372125897,0.688244587,0,0.355721512,69.16232931,-0.355721512,110.8376707,0.909440607,0,1.998971055,0.372125897,2.242520012,3,18,12% -3/8/2018 3:00,100.7643708,272.5984045,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758670039,4.757739694,-4.856097728,4.856097728,0.63940469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.134697094,82.25889534,-0.134697094,97.74110466,0.678796742,0,0,0,0,3,19,0% -3/8/2018 4:00,112.488441,282.310227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963293665,4.927242973,-2.041577143,2.041577143,0.879283943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092347068,95.29864668,0.092347068,84.70135332,0,0.508564296,0,0,0,3,20,0% -3/8/2018 5:00,123.7428528,293.5140554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159720207,5.122786668,-1.085639853,1.085639853,0.715809039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.315717122,108.4041112,0.315717122,71.59588876,0,0.891630382,0,0,0,3,21,0% -3/8/2018 6:00,133.9376567,307.6315145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337653101,5.369182811,-0.555592442,0.555592442,0.625165593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520176635,121.3441005,0.520176635,58.65589945,0,0.953878804,0,0,0,3,22,0% -3/8/2018 7:00,142.0246329,326.5478068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478797462,5.699334394,-0.181592551,0.181592551,0.561207845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691778096,133.7710259,0.691778096,46.22897411,0,0.977722487,0,0,0,3,23,0% -3/9/2018 8:00,146.3273148,351.1848185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553893429,6.129331366,0.129231297,-0.129231297,0.508053836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818813437,144.96619,0.818813437,35.03380997,0,0.988936029,0,0,0,3,0,0% -3/9/2018 9:00,145.3555347,17.93515954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536932667,0.313027586,0.424805467,-0.424805467,0.457507676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892611918,153.2033169,0.892611918,26.79668314,0,0.993984615,0,0,0,3,1,0% -3/9/2018 10:00,139.4942597,40.65463467,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434634119,0.709557231,0.744637397,-0.744637397,0.402813195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9081311,155.2483477,0.9081311,24.75165228,0,0.99494187,0,0,0,3,2,0% -3/9/2018 11:00,130.4956894,57.65070969,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27757944,1.0061947,1.143932648,-1.143932648,0.334529686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86430065,149.8029443,0.86430065,30.19705566,0,0.99214976,0,0,0,3,3,0% -3/9/2018 12:00,119.827729,70.53061918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091388407,1.230991528,1.744065793,-1.744065793,0.231900873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764095593,139.8265989,0.764095593,40.17340109,0,0.984563161,0,0,0,3,4,0% -3/9/2018 13:00,108.3425312,81.05798389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890933889,1.414728704,2.960208173,-2.960208173,0.023928278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614333953,127.90354,0.614333953,52.09645995,0,0.968611042,0,0,0,3,5,0% -3/9/2018 14:00,96.5310375,90.47649371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.684784435,1.579112711,8.182913511,-8.182913511,0,#DIV/0!,0,0,0.465013755,1,0.121602904,0,0.94875477,0.987516733,0.724496596,1,0,0,0.065170619,0.312029739,0.831869165,0.556365761,0.961238037,0.922476074,0,0,0,0,0,0,-0.425212508,115.1641152,0.425212508,64.83588477,0,0.932411738,0,0,0,3,6,0% -3/9/2018 15:00,84.57919509,99.69048732,35.05191886,180.7657075,17.97501686,17.69723995,0,17.69723995,17.43300378,0.26423617,46.46219212,37.4214355,9.040756625,0.542013079,8.498743546,1.476185433,1.739927237,-9.154550418,9.154550418,0,0.512811208,0.13550327,4.358250944,1,0.087319779,0,0.1088039,0.961238037,1,0.462645934,0.738149338,16.75726633,0.387047443,0.115824807,0.01557015,0.724496596,0.448993192,0.998597976,0.959836013,0.098171658,4.19795752,16.85543798,4.585004962,0,34.15380402,-0.207016231,101.9475528,0.207016231,78.05244717,0,0.808473045,16.85543798,32.19743489,37.92801517,3,7,125% -3/9/2018 16:00,73.21379173,109.4979184,226.3371318,588.2592027,56.44707925,67.45830358,11.00708713,56.45121645,54.74499155,1.706224905,56.58014575,0,56.58014575,1.702087707,54.87805805,1.277821724,1.9110992,-2.55804567,2.55804567,0.967605263,0.249393808,1.664736869,53.54366019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.6229682,1.23315675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.206096194,51.46820281,53.8290644,52.70135956,11.00708713,0,0.018711288,88.92785962,-0.018711288,91.07214038,0,0,53.8290644,52.70135956,88.3210502,3,8,64% -3/9/2018 17:00,62.50314183,120.7721576,421.5387265,748.560113,75.92854252,257.9638906,181.1471368,76.8167538,73.63901682,3.177736979,104.4964703,0,104.4964703,2.289525704,102.2069446,1.090885618,2.107871795,-1.215002914,1.215002914,0.737931425,0.180122342,2.494955162,80.24633435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.78462396,1.658753578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.807586521,77.1358289,72.59221049,78.79458247,181.1471368,0,0.241994108,75.99573583,-0.241994108,104.0042642,0.843383399,0,225.3686985,78.79458247,276.9381769,3,9,23% -3/9/2018 18:00,53.11304569,134.5639113,581.7042116,822.4315537,88.04943429,457.0333686,367.2538175,89.77955104,85.39441898,4.38513206,143.6959362,0,143.6959362,2.655015312,141.0409208,0.926997523,2.348583306,-0.57231701,0.57231701,0.628025662,0.151364615,3.000874857,96.51845086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.08436366,1.923549555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.174123619,92.77720622,84.25848728,94.70075578,367.2538175,0,0.446546361,63.47768298,-0.446546361,116.522317,0.938029543,0,428.753418,94.70075578,490.7331686,3,10,14% -3/9/2018 19:00,45.98651371,151.904917,691.909411,858.4411153,95.44077147,628.542167,530.7633816,97.77878548,92.56288008,5.215905404,170.6393388,0,170.6393388,2.877891399,167.7614474,0.802616076,2.651240952,-0.145750845,0.145750845,0.555078552,0.137938247,3.215346121,103.4165839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97496113,2.085022522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.32950732,99.40795413,91.30446845,101.4929767,530.7633816,0,0.618287466,51.80881629,-0.618287466,128.1911837,0.969131468,0,605.6839633,101.4929767,672.1090867,3,11,11% -3/9/2018 20:00,42.35480595,172.8013559,743.5096704,872.5223084,98.72703562,751.7997381,650.4447969,101.3549412,95.75005123,5.604889956,183.249512,0,183.249512,2.976984388,180.2725277,0.739230818,3.015952613,0.202002384,-0.202002384,0.495609247,0.13278514,3.153226142,101.4185919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.03859128,2.156815055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284501606,97.48740813,94.32309288,99.64422319,650.4447969,0,0.745476409,41.79996485,-0.745476409,138.2000351,0.982928796,0,733.6640142,99.64422319,798.8791654,3,12,9% -3/9/2018 21:00,43.13856398,194.881556,732.6537957,869.6840655,98.04340133,813.2612935,712.6512086,100.6100848,95.08703103,5.523053787,180.5967654,0,180.5967654,2.956370292,177.6403951,0.752909976,3.401324803,0.535879988,-0.535879988,0.438512814,0.13381955,2.836920869,91.24512699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.40127104,2.141880212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055339512,87.70828674,93.45661055,89.85016695,712.6512086,0,0.819436893,34.97153574,-0.819436893,145.0284643,0.988982489,0,798.2561764,89.85016695,857.0613136,3,13,7% -3/9/2018 22:00,48.11648342,214.685274,660.1584586,848.973095,93.36840197,804.5372506,709.0076971,95.52955347,90.55300016,4.976553313,162.8784632,0,162.8784632,2.815401812,160.0630613,0.83979106,3.746964887,0.909961169,-0.909961169,0.374541165,0.141433319,2.30415356,74.10949895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.0429881,2.039749029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66935141,71.23686929,88.71233951,73.27661832,709.0076971,0,0.83513565,33.37003441,-0.83513565,146.6299656,0.990129487,0,790.7217668,73.27661832,838.6798479,3,14,6% -3/9/2018 23:00,56.15155485,230.7197067,531.5179088,802.6091698,84.46617695,721.2138036,635.287787,85.92601658,81.91921007,4.00680651,131.4196376,0,131.4196376,2.546966882,128.8726707,0.980029512,4.026818531,1.407427024,-1.407427024,0.289469493,0.158915016,1.612272668,51.85623114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.74386067,1.845268836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.168086059,49.84618182,79.91194673,51.69145066,635.287787,0,0.791528194,37.67144616,-0.791528194,142.3285538,0.986831056,0,706.8336646,51.69145066,740.6646852,3,15,5% -3/9/2018 0:00,66.08025921,243.5234172,357.2165427,707.5905904,70.31929499,560.300155,489.4083971,70.89175798,68.19890879,2.692849188,88.73167267,0,88.73167267,2.120386194,86.61128648,1.153318094,4.250285436,2.240142491,-2.240142491,0.147066762,0.196853411,0.848165576,27.27992046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.55538521,1.53621258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614493072,26.22249719,66.16987828,27.75870977,489.4083971,0,0.691654756,46.23875971,-0.691654756,133.7612403,0.977709599,0,544.6691657,27.75870977,562.836686,3,16,3% -3/9/2018 1:00,77.07919462,254.1967715,156.0166243,489.7019039,46.51729087,311.9958591,265.7051169,46.29074214,45.11462292,1.176119215,39.2307048,0,39.2307048,1.40266795,37.82803685,1.345285731,4.436570611,4.347267051,-4.347267051,0,0.298155989,0.350666988,11.27865573,0.175783029,1,0.226096479,0,0.935309029,0.974070992,0.724496596,1,43.63744823,1.016228155,0.027760203,0.312029739,0.924293881,0.648790477,0.961238037,0.922476074,0.244491791,10.84147289,43.88194002,11.85770105,218.9986668,0,0.542585428,57.14018585,-0.542585428,122.8598142,0.957848612,0,253.6495091,11.85770105,261.4101373,3,17,3% -3/9/2018 2:00,88.41775692,263.7291889,2.342160178,17.60951479,1.855929046,8.123026295,6.305404165,1.81762213,1.799965937,0.017656193,0.62384696,0,0.62384696,0.055963108,0.567883852,1.543180975,4.60294268,35.16817053,-35.16817053,0,0.792400564,0.013990777,0.449991484,0.845773207,1,0.028427143,0,0.958634273,0.997396236,0.724496596,1,1.736269473,0.040545082,0.103137424,0.312029739,0.749457771,0.473954367,0.961238037,0.922476074,0.009891028,0.432548931,1.746160502,0.473094013,0.972462265,0,0.358068024,69.01840593,-0.358068024,110.9815941,0.910361728,0,2.63145293,0.473094013,2.941083499,3,18,12% -3/9/2018 3:00,100.5747667,272.9526016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755360824,4.763921601,-4.932412566,4.932412566,0.626354084,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137141834,82.11750991,-0.137141834,97.88249009,0.685413948,0,0,0,0,3,19,0% -3/9/2018 4:00,112.2889689,282.6807201,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959812221,4.933709297,-2.053384414,2.053384414,0.881303105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090038247,95.16580741,0.090038247,84.83419259,0,0.494680436,0,0,0,3,20,0% -3/9/2018 5:00,123.5190457,293.9070797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155814037,5.129646236,-1.08771876,1.08771876,0.716164553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313475899,108.2688297,0.313475899,71.7311703,0,0.890498105,0,0,0,3,21,0% -3/9/2018 6:00,133.6717185,308.0390092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333011604,5.376294935,-0.554472195,0.554472195,0.624974019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51792998,121.1935008,0.51792998,58.80649919,0,0.953461854,0,0,0,3,22,0% -3/9/2018 7:00,141.6994829,326.9153745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473122524,5.70574966,-0.178795325,0.178795325,0.560729491,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689453317,133.5868497,0.689453317,46.41315025,0,0.977478774,0,0,0,3,23,0% -3/10/2018 8:00,145.9462272,351.3818809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547242196,6.132770753,0.133382104,-0.133382104,0.507344006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816343197,144.7203915,0.816343197,35.27960849,0,0.988751251,0,0,0,3,0,0% -3/10/2018 9:00,144.9603462,17.87584893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530035327,0.31199242,0.430527738,-0.430527738,0.45652911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889938889,152.8655687,0.889938889,27.1344313,0,0.993816367,0,0,0,3,1,0% -3/10/2018 10:00,139.1258876,40.42888387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428204813,0.705617136,0.752708167,-0.752708167,0.401433012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905211921,154.8518404,0.905211921,25.14815956,0,0.994764316,0,0,0,3,2,0% -3/10/2018 11:00,130.1618247,57.36957573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271752401,1.001287987,1.15626611,-1.15626611,0.332420539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861108929,149.4413223,0.861108929,30.55867769,0,0.991935337,0,0,0,3,3,0% -3/10/2018 12:00,119.519452,70.24310911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086007957,1.225973531,1.766078844,-1.766078844,0.22813642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760623731,139.5192155,0.760623731,40.48078448,0,0.984264475,0,0,0,3,4,0% -3/10/2018 13:00,108.048597,80.77734345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88580377,1.409830604,3.014694259,-3.014694259,0.014610608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610593676,127.632442,0.610593676,52.367558,0,0.968112483,0,0,0,3,5,0% -3/10/2018 14:00,96.24134506,90.20351724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679728348,1.574348373,8.581102677,-8.581102677,0,#DIV/0!,0,0,0.483818029,1,0.116011864,0,0.949404743,0.988166706,0.724496596,1,0,0,0.067311502,0.312029739,0.826915751,0.551412347,0.961238037,0.922476074,0,0,0,0,0,0,-0.421234062,114.9125235,0.421234062,65.08747645,0,0.931301147,0,0,0,3,6,0% -3/10/2018 15:00,84.29102546,99.42321205,38.81093472,195.7688372,19.33671035,19.04621041,0,19.04621041,18.75363719,0.29257322,49.72462189,39.73138827,9.993233623,0.583073162,9.410160461,1.471155924,1.735262403,-8.712634523,8.712634523,0,0.498228411,0.14576829,4.688409297,1,0.019705818,0,0.114275793,0.961238037,1,0.451971217,0.727474621,18.02670939,0.421005411,0.115824807,0.003401373,0.724496596,0.448993192,0.999698722,0.960936759,0.10560863,4.508846013,18.13231803,4.929851425,0,38.94844875,-0.202950525,101.709551,0.202950525,78.29044903,0,0.803634537,18.13231803,36.23017001,41.84423969,3,7,131% -3/10/2018 16:00,72.90663981,109.2363722,232.0339282,595.1328275,57.10679833,70.8196087,13.68562128,57.13398742,55.38481766,1.749169763,57.98129297,0,57.98129297,1.721980671,56.25931229,1.272460911,1.906534357,-2.518730285,2.518730285,0.960881936,0.246114001,1.697585766,54.60019363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.2379934,1.247569135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.229895108,52.48378294,54.46788851,53.73135207,13.68562128,0,0.022995911,88.68231523,-0.022995911,91.31768477,0,0,54.46788851,53.73135207,89.63398381,3,8,65% -3/10/2018 17:00,62.17320257,120.5236304,427.456916,752.1382974,76.35852493,262.5680924,185.2897079,77.27838446,74.05603367,3.222350791,105.9443695,0,105.9443695,2.30249126,103.6418782,1.085127091,2.103534177,-1.204460199,1.204460199,0.736128515,0.178634436,2.523954749,81.17906076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18547642,1.66814708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828596624,78.032401,73.01407305,79.70054808,185.2897079,0,0.246350583,75.73833697,-0.246350583,104.261663,0.847037217,0,229.9613515,79.70054808,282.1237662,3,9,23% -3/10/2018 18:00,52.75390579,134.3524703,587.581724,824.7792347,88.39256749,462.0452881,371.8886434,90.15664468,85.72720545,4.429439231,145.1313538,0,145.1313538,2.665362044,142.4659918,0.920729349,2.344892965,-0.569285771,0.569285771,0.62750729,0.150434508,3.027712391,97.38163819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40425067,1.931045727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193567321,93.60693471,84.59781799,95.53798044,371.8886434,0,0.45089477,63.19889403,-0.45089477,116.801106,0.939109381,0,433.8419318,95.53798044,496.3696292,3,10,14% -3/10/2018 19:00,45.59929874,151.7834067,697.6313983,860.2478063,95.74002193,633.6625894,535.5504422,98.11214718,92.85310702,5.259040161,172.0357243,0,172.0357243,2.886914904,169.1488094,0.7958579,2.649120196,-0.145937007,0.145937007,0.555110388,0.137235827,3.240437435,104.2236069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.25393831,2.091560021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.347685891,100.1836952,91.6016242,102.2752553,535.5504422,0,0.622553685,51.49714113,-0.622553685,128.5028589,0.969685641,0,610.9171982,102.2752553,677.8543073,3,11,11% -3/10/2018 20:00,41.95862779,172.8384013,749.0029974,874.0970019,99.00016831,756.8782943,655.2170453,101.6612489,96.01494796,5.646300975,184.5896687,0,184.5896687,2.985220346,181.6044484,0.732316205,3.016599177,0.199781261,-0.199781261,0.495989082,0.132175931,3.176649548,102.1719691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.29322009,2.162781979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301471784,98.21158303,94.59469187,100.374365,655.2170453,0,0.749593059,41.44486033,-0.749593059,138.5551397,0.983297141,0,738.8677394,100.374365,804.5607538,3,12,9% -3/10/2018 21:00,42.76815433,195.091234,737.8698233,871.2192561,98.30132679,818.215512,717.3159585,100.8995535,95.3371791,5.562374406,181.8692291,0,181.8692291,2.964147696,178.9050814,0.746445108,3.404984374,0.531751572,-0.531751572,0.439218815,0.133223129,2.85865906,91.94430195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.64172288,2.147514916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.071088758,88.38036031,93.71281163,90.52787522,717.3159585,0,0.823347227,34.57871853,-0.823347227,145.4212815,0.98927228,0,803.3336053,90.52787522,862.5822891,3,13,7% -3/10/2018 22:00,47.79600607,215.0009021,665.0681495,850.6537314,93.62259786,809.3390674,713.5259717,95.81309574,90.7995311,5.013564637,164.0765395,0,164.0765395,2.823066756,161.2534727,0.834197675,3.752473636,0.903282254,-0.903282254,0.375683327,0.140771435,2.324134552,74.75215636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.27996302,2.045302255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.683827572,71.85461603,88.9637906,73.89991829,713.5259717,0,0.838797204,32.98667553,-0.838797204,147.0133245,0.990390836,0,795.6333743,73.89991829,843.9993928,3,14,6% -3/10/2018 23:00,55.88180436,231.0710935,536.1054204,804.72055,84.73610545,725.9071854,639.6847971,86.22238834,82.18099923,4.041389111,132.5400722,0,132.5400722,2.555106222,129.984966,0.975321478,4.032951387,1.396165408,-1.396165408,0.291395343,0.158058662,1.630282009,52.43547346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.99550237,1.85116576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181133766,50.40297157,80.17663613,52.25413733,639.6847971,0,0.794915449,37.35272971,-0.794915449,142.6472703,0.987100229,0,711.6096456,52.25413733,745.8089334,3,15,5% -3/10/2018 0:00,65.84992868,243.8775123,361.4553683,710.7886185,70.65181485,565.0737218,493.8275165,71.2462052,68.52140196,2.724803245,89.76945172,0,89.76945172,2.130412895,87.63903882,1.149298068,4.256465562,2.217575616,-2.217575616,0.150925925,0.195464838,0.863463039,27.77193946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.8653779,1.54347689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625576032,26.69544457,66.49095393,28.23892146,493.8275165,0,0.694760022,45.99190281,-0.694760022,134.0080972,0.978032704,0,549.4704154,28.23892146,567.9522247,3,16,3% -3/10/2018 1:00,76.87542248,254.5461763,159.7149634,496.0682737,47.07319592,317.4199957,270.5622314,46.85776424,45.65376538,1.203998858,40.14417253,0,40.14417253,1.419430539,38.724742,1.341729236,4.442668875,4.275415246,-4.275415246,0,0.294732534,0.354857635,11.41344135,0.167350395,1,0.229764921,0,0.934793182,0.973555146,0.724496596,1,44.15031,1.028372593,0.026526165,0.312029739,0.92753095,0.652027546,0.961238037,0.922476074,0.247737878,10.97103395,44.39804788,11.99940655,225.283535,0,0.545413294,56.94708875,-0.545413294,123.0529112,0.9583264,0,260.293207,11.99940655,268.1465786,3,17,3% -3/10/2018 2:00,88.24265005,264.0776216,2.971100867,21.74147892,2.304360716,10.09310988,7.835836733,2.257273152,2.234875738,0.022397413,0.789862781,0,0.789862781,0.069484978,0.720377803,1.540124784,4.609023978,31.61441587,-31.61441587,0,0.775591546,0.017371244,0.558718935,0.829822858,1,0.031620597,0,0.958329632,0.997091596,0.724496596,1,2.156489779,0.05034163,0.101747695,0.312029739,0.752270659,0.476767255,0.961238037,0.922476074,0.012253437,0.537061892,2.168743217,0.587403522,1.333480302,0,0.360409555,68.8746497,-0.360409555,111.1253503,0.911268939,0,3.383902396,0.587403522,3.768346253,3,18,11% -3/10/2018 3:00,100.3853287,273.307941,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752054506,4.770123442,-5.011148651,5.011148651,0.61288942,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139566745,81.97722359,-0.139566745,98.02277641,0.691748469,0,0,0,0,3,19,0% -3/10/2018 4:00,112.0891713,283.0518438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956325094,4.940186629,-2.065301739,2.065301739,0.883341088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087738968,95.03354486,0.087738968,84.96645514,0,0.480127787,0,0,0,3,20,0% -3/10/2018 5:00,123.294399,294.299976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151893212,5.13650357,-1.089770644,1.089770644,0.716515446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311232652,108.1335315,0.311232652,71.86646845,0,0.889348476,0,0,0,3,21,0% -3/10/2018 6:00,133.4045205,308.445138,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32834812,5.38338322,-0.553302378,0.553302378,0.624773969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515669257,121.0421996,0.515669257,58.95780042,0,0.953038625,0,0,0,3,22,0% -3/10/2018 7:00,141.3730101,327.2802826,0,0,0,0,0,0,0,0,0,0,0,0,0,2.467424499,5.712118509,-0.175938786,0.175938786,0.560240994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687102777,133.4012039,0.687102777,46.5987961,0,0.977230683,0,0,0,3,23,0% -3/11/2018 8:00,145.5641348,351.5776982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540573425,6.13618841,0.137604449,-0.137604449,0.506621943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813836663,144.4724957,0.813836663,35.52750433,0,0.988562611,0,0,0,3,0,0% -3/11/2018 9:00,144.5639645,17.8196359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523117161,0.311011318,0.436343469,-0.436343469,0.455534562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.887220918,152.5260796,0.887220918,27.47392038,0,0.99364425,0,0,0,3,1,0% -3/11/2018 10:00,138.755648,40.2075914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421742913,0.701754854,0.76091629,-0.76091629,0.40002934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902241637,154.4543029,0.902241637,25.54569708,0,0.994582473,0,0,0,3,2,0% -3/11/2018 11:00,129.8257438,57.09179295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265886684,0.996439763,1.168838033,-1.168838033,0.330270614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857862848,149.0774639,0.857862848,30.92253614,0,0.991715625,0,0,0,3,3,0% -3/11/2018 12:00,119.2089813,69.9576737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080589222,1.220991743,1.788630408,-1.788630408,0.224279875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757097391,139.2089742,0.757097391,40.79102585,0,0.983958298,0,0,0,3,4,0% -3/11/2018 13:00,107.7526723,80.49784555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880638909,1.404952446,3.071215522,-3.071215522,0.004944903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606801948,127.3586205,0.606801948,52.64137952,0,0.967600792,0,0,0,3,5,0% -3/11/2018 14:00,95.94992744,89.9310124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674642151,1.569592266,9.020314329,-9.020314329,0,#DIV/0!,0,0,0.503083592,1,0.110410037,0,0.950048747,0.98881071,0.724496596,1,0,0,0.069472545,0.312029739,0.821952715,0.546449311,0.961238037,0.922476074,0,0,0,0,0,0,-0.417210132,114.6585763,0.417210132,65.34142369,0,0.930156314,0,0,0,3,6,0% -3/11/2018 15:00,84.00095996,99.15586623,42.72093092,210.7949108,20.69037524,20.38853251,0,20.38853251,20.06648408,0.322048423,52.89668267,41.91460721,10.98207546,0.623891153,10.35818431,1.466093326,1.730596338,-8.310211048,8.310211048,0.048716524,0.484314709,0.164063416,5.276843414,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.28866777,0.452007016,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118863386,5.072302604,19.40753115,5.524309621,0,41.91460721,-0.198840698,101.4691744,0.198840698,78.5308256,0,0.798542424,19.40753115,38.99490165,44.92891438,3,7,132% -3/11/2018 16:00,72.5982362,108.9742533,237.7582039,601.8702627,57.75676358,74.24309954,16.43559371,57.80750583,56.01518406,1.792321771,59.38880874,0,59.38880874,1.741579522,57.64722922,1.267078253,1.90195952,-2.480510327,2.480510327,0.954345938,0.242922274,1.730372547,55.65472923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.84392556,1.261768435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.25364902,53.49744266,55.09757458,54.7592111,16.43559371,0,0.027307536,88.43519893,-0.027307536,91.56480107,0,0,55.09757458,54.7592111,90.93638306,3,8,65% -3/11/2018 17:00,61.8421822,120.2740668,433.3804507,755.6574352,76.78434292,267.1959951,189.4599785,77.73601657,74.46901168,3.267004898,107.393439,0,107.393439,2.315331243,105.0781078,1.079349696,2.09917847,-1.194056317,1.194056317,0.734349346,0.177175373,2.552890225,82.10972513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58244659,1.677449604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.849560277,78.92699099,73.43200687,80.60444059,189.4599785,0,0.250722046,75.47975673,-0.250722046,104.5202433,0.850575974,0,234.5821126,80.60444059,287.3361068,3,9,22% -3/11/2018 18:00,52.39370555,134.1398148,593.450538,827.0914342,88.73271232,467.060837,376.5300625,90.53077449,86.05709366,4.47368083,146.5645723,0,146.5645723,2.675618665,143.8889537,0.914442669,2.341181426,-0.566258137,0.566258137,0.626989534,0.14951998,3.054459501,98.24191719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72135176,1.938476615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.212945511,94.43386761,84.93429728,96.37234423,376.5300625,0,0.455245995,62.91923694,-0.455245995,117.0807631,0.94016927,0,438.9362912,96.37234423,502.010063,3,10,14% -3/11/2018 19:00,45.21095468,151.6615964,703.3336027,862.0276104,96.0364179,638.7709724,540.3283811,98.44259135,93.14056556,5.302025787,173.4272272,0,173.4272272,2.895852336,170.5313749,0.789080017,2.646994206,-0.146091249,0.146091249,0.555136765,0.136544618,3.265414001,105.0269391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.53025439,2.09803516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365781328,100.9558887,91.89603572,103.0539239,540.3283811,0,0.626810991,51.18476681,-0.626810991,128.8152332,0.970231137,0,616.1394553,103.0539239,683.5861874,3,11,11% -3/11/2018 20:00,41.56152334,172.8779055,754.4682239,875.6477017,99.27027957,761.9315762,659.9671617,101.9644145,96.27691437,5.68750016,185.922921,0,185.922921,2.993365197,182.9295558,0.725385424,3.017288655,0.197609494,-0.197609494,0.496360476,0.131576488,3.199944542,102.9212162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54503217,2.168682896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318348928,98.93178783,94.8633811,101.1004707,659.9671617,0,0.75369028,41.08893943,-0.75369028,138.9110606,0.983659752,0,744.0465157,101.1004707,810.2147518,3,12,9% -3/11/2018 21:00,42.39762167,195.3060439,743.0525522,872.7300394,98.55596638,823.1336577,721.9480733,101.1855844,95.58414036,5.601444005,183.1335201,0,183.1335201,2.971826019,180.161694,0.739978093,3.408733516,0.527691139,-0.527691139,0.43991319,0.132636603,2.88026924,92.63935963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87911143,2.153077834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08674526,89.04847619,93.96585669,91.20155402,721.9480733,0,0.827229545,34.18481176,-0.827229545,145.8151882,0.989557285,0,808.3748317,91.20155402,868.0644248,3,13,7% -3/11/2018 22:00,47.4762961,215.3218444,669.9428181,852.3062182,93.87316219,814.0966374,718.0037855,96.09285194,91.04253999,5.050311948,165.2660148,0,165.2660148,2.830622195,162.4353926,0.828617684,3.758075136,0.896704505,-0.896704505,0.376808188,0.140121156,2.344004037,75.3912273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.51355241,2.050776145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.698222946,72.46891533,89.21177536,74.51969147,718.0037855,0,0.842424671,32.60294841,-0.842424671,147.3970516,0.990647512,0,800.5004392,74.51969147,849.2720869,3,14,6% -3/11/2018 23:00,55.61325083,231.4265835,540.6599974,806.7943056,85.00180453,730.5504531,644.0360432,86.51440994,82.4386865,4.075723436,133.6523939,0,133.6523939,2.56311803,131.0892759,0.970634335,4.039155858,1.385083888,-1.385083888,0.293290395,0.157218594,1.648215568,53.01227838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24320118,1.856970288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194126568,50.9574184,80.43732774,52.81438868,644.0360432,0,0.79826548,37.03521439,-0.79826548,142.9647856,0.987364196,0,716.3354578,52.81438868,750.9014189,3,15,5% -3/11/2018 0:00,65.62079509,244.2345215,365.6680242,713.924744,70.97854015,569.7915932,498.1967578,71.59483531,68.83827528,2.756560026,90.8007109,0,90.8007109,2.140264869,88.66044603,1.145298932,4.262696547,2.195453874,-2.195453874,0.154708965,0.194106499,0.878751226,28.2636601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.16996859,1.550614612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.636652272,27.16810515,66.80662087,28.71871976,498.1967578,0,0.697828114,45.746988,-0.697828114,134.253012,0.978349118,0,554.2169794,28.71871976,573.0128071,3,16,3% -3/11/2018 1:00,76.67258502,254.8976526,163.4056201,502.300952,47.61753582,322.7786709,275.3651588,47.41351201,46.18169142,1.231820587,41.05542884,0,41.05542884,1.435844395,39.61958444,1.338189055,4.448803294,4.205862106,-4.205862106,0,0.291406965,0.358961099,11.54542286,0.159021535,1,0.233429105,0,0.934275036,0.973036999,0.724496596,1,44.65183109,1.040264376,0.025298302,0.312029739,0.930763708,0.655260304,0.961238037,0.922476074,0.250939394,11.0978996,44.90277048,12.13816398,231.5761686,0,0.548207519,56.75587199,-0.548207519,123.244128,0.958793663,0,266.9365333,12.13816398,274.8807189,3,17,3% -3/11/2018 2:00,88.06688716,264.4275406,3.6939685,26.40143138,2.803374742,12.32364929,9.576959946,2.746689345,2.71884265,0.027846695,0.980177522,0,0.980177522,0.084532092,0.89564543,1.537057143,4.615131216,28.69352177,-28.69352177,0,0.758905968,0.021133023,0.679710663,0.814013265,1,0.034836973,0,0.958020339,0.996782302,0.724496596,1,2.624307266,0.061243213,0.100354965,0.312029739,0.755105195,0.479601791,0.961238037,0.922476074,0.0148748,0.653363743,2.639182066,0.714606956,1.781187516,0,0.362743967,68.73119165,-0.362743967,111.2688083,0.912161732,0,4.263913156,0.714606956,4.731609117,3,18,11% -3/11/2018 3:00,100.1960584,273.6642922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748751117,4.776342943,-5.092440017,5.092440017,0.598987778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141971988,81.8380272,-0.141971988,98.1619728,0.69781785,0,0,0,0,3,19,0% -3/11/2018 4:00,111.889051,283.423459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952832337,4.946672537,-2.077335439,2.077335439,0.885398972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085448926,94.90184038,0.085448926,85.09815962,0,0,0,0,0,3,20,0% -3/11/2018 5:00,123.0689255,294.6925914,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147957958,5.143356002,-1.091797593,1.091797593,0.716862074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.308987027,107.9981946,0.308987027,72.00180536,0,0.888180908,0,0,0,3,21,0% -3/11/2018 6:00,133.1360974,308.8497413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323663252,5.39044488,-0.552084392,0.552084392,0.624565681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513394157,120.8901785,0.513394157,59.10982151,0,0.952608942,0,0,0,3,22,0% -3/11/2018 7:00,141.0452806,327.6423975,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46170454,5.718438605,-0.173024086,0.173024086,0.559742551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684726306,133.2140865,0.684726306,46.78591351,0,0.976978123,0,0,0,3,23,0% -3/12/2018 8:00,145.1811316,351.7721445,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533888758,6.139582137,0.141897349,-0.141897349,0.505887814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811293886,144.2225409,0.811293886,35.7774591,0,0.988370052,0,0,0,3,0,0% -3/12/2018 9:00,144.1665162,17.76633612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516180379,0.310081061,0.442251919,-0.442251919,0.454524157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.884458346,152.1849388,0.884458346,27.81506124,0,0.993468225,0,0,0,3,1,0% -3/12/2018 10:00,138.3836927,39.99063676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415251069,0.697968281,0.769261626,-0.769261626,0.398602204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899220926,154.0558497,0.899220926,25.94415033,0,0.994396312,0,0,0,3,2,0% -3/12/2018 11:00,129.4876,56.8173275,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25998496,0.991649437,1.18165032,-1.18165032,0.328079584,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854563449,148.7115399,0.854563449,31.28846008,0,0.991490594,0,0,0,3,3,0% -3/12/2018 12:00,118.8964632,69.67432008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075134752,1.216046289,1.811731927,-1.811731927,0.220329283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753517975,138.8960416,0.753517975,41.10395836,0,0.983644582,0,0,0,3,4,0% -3/12/2018 13:00,107.4548973,80.21951037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875441755,1.40009458,3.129867137,-3.129867137,0,#DIV/0!,0,0,0.005059386,1,0.309251483,0,0.922914997,0.96167696,0.724496596,1,0,0,0.000863154,0.312029739,0.997555308,0.722051904,0.961238037,0.922476074,0,0,0,0,0,0,-0.602960507,127.0822239,0.602960507,52.91777608,0,0.967075829,0,0,0,3,5,0% -3/12/2018 14:00,95.65692218,89.65900003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669528244,1.564844755,9.507053289,-9.507053289,0,#DIV/0!,0,0,0.522820666,1,0.104799699,0,0.950686462,0.989448425,0.724496596,1,0,0,0.071653248,0.312029739,0.816982251,0.541478847,0.961238037,0.922476074,0,0,0,0,0,0,-0.413142743,114.4024105,0.413142743,65.59758951,0,0.928976453,0,0,0,3,6,0% -3/12/2018 15:00,83.70917495,98.88846455,46.77238697,225.7856823,22.03188841,21.7201357,0,21.7201357,21.36754569,0.35259001,55.96298018,43.95813072,12.00484946,0.664342725,11.34050673,1.461000717,1.725929299,-7.942400058,7.942400058,0.111615907,0.471044773,0.186902531,6.011427871,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.53929767,0.481314043,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135410247,5.778413125,20.67470792,6.259727168,0,43.95813072,-0.194689629,101.2265932,0.194689629,78.77340684,0,0.793180979,20.67470792,41.12648031,47.59116675,3,7,130% -3/12/2018 16:00,72.28872051,108.7115635,243.5065921,608.4717738,58.39694396,77.72605584,19.25433965,58.47171618,56.63606064,1.835655549,60.80187579,0,60.80187579,1.760883322,59.04099247,1.261676185,1.897374718,-2.443355384,2.443355384,0.947992069,0.239816686,1.763081876,56.70677368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44073574,1.275753973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.277346817,54.50870781,55.71808256,55.78446178,19.25433965,0,0.031643768,88.18664293,-0.031643768,91.81335707,0,0,55.71808256,55.78446178,92.22789711,3,8,66% -3/12/2018 17:00,61.51022127,120.0234456,439.3063605,759.1173737,77.20587308,271.8449592,193.6554512,78.18950805,74.87783115,3.311676909,108.8429552,0,108.8429552,2.328041933,106.5149132,1.073555885,2.094804305,-1.183793636,1.183793636,0.732594324,0.175744947,2.581748614,83.03791012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97541941,1.686658455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870468082,79.81919771,73.8458875,81.50585616,193.6554512,0,0.255106072,75.22012951,-0.255106072,104.7798705,0.854003097,0,239.2282426,81.50585616,292.5721953,3,9,22% -3/12/2018 18:00,52.03258357,133.9258901,599.3079055,829.367982,89.06974089,472.0773795,381.1755838,90.90179571,86.38395957,4.51783614,147.9949216,0,147.9949216,2.68578132,145.3091402,0.908139902,2.337447736,-0.563236948,0.563236948,0.626472881,0.148621001,3.081104861,99.09892354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.03554771,1.945839424,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.232249983,95.25765472,85.2677977,97.20349415,381.1755838,0,0.45959766,62.63885172,-0.45959766,117.3611483,0.941209194,0,444.0337616,97.20349415,507.6515044,3,10,14% -3/12/2018 19:00,44.82161017,151.5394091,709.0135521,863.7804277,96.32984481,643.8648046,545.0948164,98.76998821,93.42514457,5.344843644,174.8132446,0,174.8132446,2.90470024,171.9085444,0.782284674,2.644861635,-0.146215784,0.146215784,0.555158061,0.135864603,3.290266157,105.8262698,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.80380256,2.104445436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.38378663,101.7242359,92.18758919,103.8286813,545.0948164,0,0.631057152,50.87183959,-0.631057152,129.1281604,0.970767874,0,621.348125,103.8286813,689.3019203,3,11,11% -3/12/2018 20:00,41.16360841,172.9198228,759.9032101,877.1743876,99.53727409,766.9573143,664.6929849,102.2643294,96.53585803,5.728471382,187.2487472,0,187.2487472,3.001416067,184.2473311,0.718440499,3.018020249,0.195485214,-0.195485214,0.496723749,0.130986779,3.223103139,103.6660763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79393866,2.174515724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335127252,99.64777565,95.12906591,101.8222914,664.6929849,0,0.757766066,40.73234697,-0.757766066,139.267653,0.984016576,0,749.1979806,101.8222914,815.8386339,3,12,9% -3/12/2018 21:00,42.02707502,195.5259622,748.2002115,874.2164892,98.80724787,828.0137965,726.5457025,101.468094,95.82784479,5.640249235,184.3892067,0,184.3892067,2.979403083,181.4098036,0.733510834,3.412571813,0.523696801,-0.523696801,0.440596262,0.132059904,2.901745035,93.33009502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.1133694,2.158567392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1023044,89.71243732,94.2156738,91.87100471,726.5457025,0,0.831082131,33.78994003,-0.831082131,146.21006,0.989837474,0,813.3778369,91.87100471,873.5055721,3,13,7% -3/12/2018 22:00,47.15744603,215.6480285,674.7810713,853.9307678,94.12005035,818.8084327,722.4396644,96.36876831,91.28198357,5.086784744,166.4465499,0,166.4465499,2.838066784,163.6084831,0.8230527,3.763768123,0.890225463,-0.890225463,0.377916169,0.139482351,2.363757069,76.0265527,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.74371468,2.056169724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.71253395,73.07961427,89.45624863,75.13578399,722.4396644,0,0.84601667,32.21897221,-0.84601667,147.7810278,0.99089951,0,805.3213578,75.13578399,854.4962257,3,14,6% -3/12/2018 23:00,55.34595887,231.786062,545.1805983,808.8309167,85.26326681,735.1425406,648.3404742,86.80206636,82.69226473,4.109801635,134.75635,0,134.75635,2.571002082,132.1853479,0.96596921,4.045429942,1.374177934,-1.374177934,0.295155423,0.156394536,1.666069458,53.58652084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.48695021,1.862682257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.207061651,51.5094021,80.69401186,53.37208435,648.3404742,0,0.801577265,36.71901485,-0.801577265,143.2809851,0.987622981,0,721.0099639,53.37208435,755.9409257,3,15,5% -3/12/2018 0:00,65.39289705,244.5943172,369.8537307,717.0001269,71.29953346,574.4532394,502.5155363,71.93770311,69.14958946,2.788113649,91.82526304,0,91.82526304,2.149944001,89.67531903,1.141321361,4.268976168,2.173763513,-2.173763513,0.158418236,0.192777651,0.894026461,28.75496419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.46921562,1.55762711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.647719128,27.64036533,67.11693475,29.19799244,502.5155363,0,0.700858364,45.50408867,-0.700858364,134.4959113,0.97865891,0,558.9082415,29.19799244,578.0177436,3,16,3% -3/12/2018 1:00,76.47070327,255.251073,167.0875922,508.4027378,48.15056962,328.0717392,280.1135101,47.95822914,46.69865229,1.259576848,41.96423854,0,41.96423854,1.451917331,40.51232121,1.334665553,4.454971643,4.138495471,-4.138495471,0,0.288175615,0.362979333,11.67466307,0.150794101,1,0.237089137,0,0.933754591,0.972516554,0.724496596,1,45.14225527,1.051909164,0.024076505,0.312029739,0.933992258,0.658488854,0.961238037,0.922476074,0.254097563,11.22213021,45.39635283,12.27403938,237.8740452,0,0.550967745,56.56657031,-0.550967745,123.4334297,0.959250586,0,273.5771701,12.27403938,281.6102834,3,17,3% -3/12/2018 2:00,87.89059127,264.7788192,4.512768053,31.57998856,3.350377797,14.81225436,11.52888366,3.283370697,3.249351545,0.034019152,1.195199114,0,1.195199114,0.101026252,1.094172862,1.533980199,4.621262185,26.25156193,-26.25156193,0,0.742421892,0.025256563,0.812337886,0.798351637,1,0.038074562,0,0.957706508,0.996468471,0.724496596,1,3.137322983,0.073193176,0.098960042,0.312029739,0.757959818,0.482456413,0.961238037,0.922476074,0.017740336,0.780850075,3.155063319,0.854043251,2.324780512,0,0.365069279,68.58815367,-0.365069279,111.4118463,0.913039695,0,5.277680208,0.854043251,5.836634435,3,18,11% -3/12/2018 3:00,100.006959,274.0215257,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745450709,4.782577844,-5.176430208,5.176430208,0.58462461,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.144357726,81.69991171,-0.144357726,98.30008829,0.703638212,0,0,0,0,3,19,0% -3/12/2018 4:00,111.6886129,283.7954277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949334032,4.953164616,-2.089491999,2.089491999,0.887477866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08316783,94.77067619,0.08316783,85.22932381,0,0,0,0,0,3,20,0% -3/12/2018 5:00,122.8426405,295.0847759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144008539,5.150200911,-1.093801705,1.093801705,0.717204798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306738694,107.8627985,0.306738694,72.13720147,0,0.886994807,0,0,0,3,21,0% -3/12/2018 6:00,132.8664864,309.2526647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.318957654,5.397477219,-0.550819635,0.550819635,0.624349395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511104407,120.7374218,0.511104407,59.26257821,0,0.95217263,0,0,0,3,22,0% -3/12/2018 7:00,140.7163627,328.0015926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455963841,5.724707743,-0.170052375,0.170052375,0.559234359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682323779,133.0254993,0.682323779,46.97450071,0,0.976721006,0,0,0,3,23,0% -3/13/2018 8:00,144.7973126,351.9651018,0,0,0,0,0,0,0,0,0,0,0,0,0,2.527189852,6.142949879,0.146259825,-0.146259825,0.505141786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808714969,143.9705698,0.808714969,36.02943024,0,0.98817352,0,0,0,3,0,0% -3/13/2018 9:00,143.7681269,17.71577289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509227174,0.309198566,0.448252345,-0.448252345,0.453498024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88165157,151.8422375,0.88165157,28.15776246,0,0.993288254,0,0,0,3,1,0% -3/13/2018 10:00,138.0101723,39.7779009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408731909,0.69425534,0.777744038,-0.777744038,0.397151626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89615052,153.656595,0.89615052,26.34340505,0,0.994205801,0,0,0,3,2,0% -3/13/2018 11:00,129.1475454,56.54614395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254049887,0.986916391,1.194704914,-1.194704914,0.325847117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851211819,148.3437191,0.851211819,31.6562809,0,0.991260214,0,0,0,3,3,0% -3/13/2018 12:00,118.5820433,69.39305383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06964709,1.211137267,1.835395247,-1.835395247,0.216282617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749886924,138.5805839,0.749886924,41.41941611,0,0.983323281,0,0,0,3,4,0% -3/13/2018 13:00,107.1554118,79.94235719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870214748,1.395257345,3.190750617,-3.190750617,0,#DIV/0!,0,0,0.015260316,1,0.30370994,0,0.923785774,0.962547737,0.724496596,1,0,0,0.002591084,0.312029739,0.992678778,0.717175374,0.961238037,0.922476074,0,0,0,0,0,0,-0.599071121,126.8034005,0.599071121,53.19659948,0,0.966537456,0,0,0,3,5,0% -3/13/2018 14:00,95.36246613,89.38750075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664389017,1.560106198,10.04928049,-10.04928049,0,#DIV/0!,0,0,0.54303982,1,0.099183096,0,0.951317586,0.990079549,0.724496596,1,0,0,0.073853109,0.312029739,0.81200654,0.536503136,0.961238037,0.922476074,0,0,0,0,0,0,-0.409033938,114.1441627,0.409033938,65.85583728,0,0.927760754,0,0,0,3,6,0% -3/13/2018 15:00,83.41584196,98.62102207,50.95593264,240.6902032,23.35779601,23.03759962,0,23.03759962,22.65347228,0.384127344,58.91069504,45.8515155,13.05917955,0.704323731,12.35485582,1.45588109,1.721261547,-7.60508301,7.60508301,0.16930052,0.458392081,0.211303298,6.796240424,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.77537922,0.510280145,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15308852,6.532804803,21.92846774,7.043084948,0,45.8515155,-0.190500132,100.9819728,0.190500132,79.01802724,0,0.78753299,21.92846774,43.15266606,50.17102462,3,7,129% -3/13/2018 16:00,71.97823163,108.4483054,249.2757559,614.9378613,59.02732169,81.26570655,22.13913045,59.1265761,57.24743016,1.879145943,62.21968458,0,62.21968458,1.779891537,60.43979304,1.256257132,1.892779997,-2.407235529,2.407235529,0.94181521,0.236795277,1.795698884,57.7558488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.02840738,1.289525359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.300977729,55.51711871,56.32938511,56.80664407,22.13913045,0,0.036002224,87.93677865,-0.036002224,92.06322135,0,0,56.32938511,56.80664407,93.50819752,3,8,66% -3/13/2018 17:00,61.17745968,119.7717468,445.2317119,762.5180456,77.62299871,276.5123513,197.8736277,78.63872361,75.2823789,3.356344711,110.2922031,0,110.2922031,2.34061981,107.9515833,1.067748099,2.090411332,-1.173674181,1.173674181,0.730863795,0.174342924,2.610517217,83.96320731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36428611,1.695771084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.891310838,80.70862856,74.25559694,82.40439964,197.8736277,0,0.259500256,74.95958885,-0.259500256,105.0404111,0.857321962,0,243.8970037,82.40439964,297.8290352,3,9,22% -3/13/2018 18:00,51.67067804,133.7106423,605.1511236,831.6087555,89.40353026,477.0923103,385.8227416,91.26956874,86.70768396,4.561884786,149.4217424,0,149.4217424,2.695846301,146.7258961,0.901823458,2.333690953,-0.560224887,0.560224887,0.625957788,0.147737527,3.107637387,99.9523008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.34672391,1.953131468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.251472708,96.0779534,85.59819661,98.03108487,385.8227416,0,0.463947426,62.35787748,-0.463947426,117.6421225,0.942229168,0,449.1316375,98.03108487,513.2910219,3,10,14% -3/13/2018 19:00,44.43139362,151.4167674,714.6688239,865.5061884,96.62019222,648.9416194,549.847407,99.0942124,93.70673693,5.387475472,176.1931858,0,176.1931858,2.913455286,173.2797305,0.77547411,2.642721133,-0.146312745,0.146312745,0.555174643,0.135195756,3.314984467,106.6212956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.07447985,2.110788437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401694961,102.4884449,92.47617481,104.5992333,549.847407,0,0.635289977,50.55850513,-0.635289977,129.4414949,0.971295783,0,626.5406427,104.5992333,694.9987489,3,11,11% -3/13/2018 20:00,40.76499858,172.9641077,765.3058669,878.6770613,99.80106018,771.9532915,669.3924026,102.5608889,96.79168999,5.769198891,188.566638,0,188.566638,3.009370191,185.5572678,0.711483445,3.018793166,0.193406602,-0.193406602,0.497079213,0.130406762,3.246117549,104.4062988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.03985407,2.180278459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351801114,100.3593057,95.39165519,102.5395842,669.3924026,0,0.761818456,40.37522768,-0.761818456,139.6247723,0.984367565,0,754.3198248,102.5395842,821.4299319,3,12,9% -3/13/2018 21:00,41.65662317,195.7509649,753.3110777,875.6786952,99.05510216,832.8540495,731.107047,101.7470025,96.06822536,5.678777104,185.6358691,0,185.6358691,2.986876805,182.6489923,0.72704523,3.416498852,0.519766719,-0.519766719,0.441268346,0.131492958,2.923080233,94.01630831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.34443235,2.163982077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.117761678,90.37205164,94.46219403,92.53603371,731.107047,0,0.834903317,33.39422779,-0.834903317,146.6057722,0.990112826,0,818.3406586,92.53603371,878.903642,3,13,7% -3/13/2018 22:00,46.83954777,215.9793802,679.5815564,855.5276036,94.36322016,823.4729776,726.8321839,96.64079374,91.51782091,5.122972828,167.6178155,0,167.6178155,2.845399251,164.7724163,0.817504329,3.769551302,0.883842732,-0.883842732,0.379007681,0.138854887,2.38338882,76.65797729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.97041051,2.061482071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726757087,73.6865636,89.6971676,75.74804567,726.8321839,0,0.849571867,31.83486617,-0.849571867,148.1651338,0.991146827,0,810.0945805,75.74804567,859.6701614,3,14,6% -3/13/2018 23:00,55.07999221,232.1494127,549.666213,810.8308664,85.52048621,739.6824261,652.597082,87.08534411,82.94172802,4.143616093,135.8516954,0,135.8516954,2.578758196,133.2729372,0.961327216,4.051771608,1.363443159,-1.363443159,0.296991177,0.155586216,1.683839862,54.15807814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72674381,1.868301535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219936248,52.05880471,80.94668006,53.92710624,652.597082,0,0.804849826,36.40424528,-0.804849826,143.5957547,0.98787661,0,725.6320728,53.92710624,760.9262853,3,15,5% -3/13/2018 0:00,65.16627255,244.9567715,374.0117295,720.0159089,71.6148562,579.0581607,506.7832982,72.27486245,69.45540405,2.819458401,92.84292613,0,92.84292613,2.159452145,90.68347399,1.137366017,4.275302187,2.152491356,-2.152491356,0.162055988,0.191477568,0.909285116,29.24573499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.76317624,1.564515728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.658773972,28.11211289,67.42195021,29.67662862,506.7832982,0,0.70385014,45.2632767,-0.70385014,134.7367233,0.978962151,0,563.5436179,29.67662862,582.9663778,3,16,3% -3/13/2018 1:00,76.26979811,255.60631,170.7599125,514.3764053,48.67254999,333.2990972,284.8069438,48.49215337,47.20489302,1.28726035,42.87037473,0,42.87037473,1.467656965,41.40271777,1.331159097,4.461171698,4.073210475,-4.073210475,0,0.28503499,0.366914241,11.80122326,0.142665829,1,0.240745117,0,0.93323185,0.971993814,0.724496596,1,45.62182057,1.063312475,0.02286067,0.312029739,0.937216699,0.661713295,0.961238037,0.922476074,0.257213567,11.34378468,45.87903414,12.40709715,244.174725,0,0.553693639,56.37921704,-0.553693639,123.620783,0.959697355,0,280.2128719,12.40709715,288.3330689,3,17,3% -3/13/2018 2:00,87.71387663,265.1313316,5.428409904,37.25963976,3.942130563,17.55276599,13.68858356,3.864182428,3.823260782,0.040921647,1.43505061,0,1.43505061,0.118869781,1.316180829,1.530895947,4.627414686,24.18066439,-24.18066439,0,0.726203554,0.029717445,0.955815195,0.782843954,1,0.041331805,0,0.957388247,0.99615021,0.724496596,1,3.692526832,0.086120752,0.097563656,0.312029739,0.760833091,0.485329687,0.961238037,0.922476074,0.020832103,0.918765922,3.713358936,1.004886674,2.972558681,0,0.36738368,68.44564775,-0.36738368,111.5543523,0.913902501,0,6.429987749,1.004886674,7.087665979,3,18,10% -3/13/2018 3:00,99.81803445,274.3795132,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742153354,4.788825905,-5.263273086,5.263273086,0.569773603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146724116,81.56286827,-0.146724116,98.43713173,0.709224392,0,0,0,0,3,19,0% -3/13/2018 4:00,111.4878635,284.1676139,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945830294,4.959660489,-2.101778067,2.101778067,0.889578907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080895406,94.64003552,0.080895406,85.35996448,0,0,0,0,0,3,20,0% -3/13/2018 5:00,122.6155617,295.4763819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140045265,5.157035727,-1.095785091,1.095785091,0.717543977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304487354,107.7273246,0.304487354,72.27267542,0,0.885789568,0,0,0,3,21,0% -3/13/2018 6:00,132.5957279,309.6537583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314232026,5.404477624,-0.549509505,0.549509505,0.624125349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508799776,120.5839164,0.508799776,59.41608356,0,0.951729516,0,0,0,3,22,0% -3/13/2018 7:00,140.3863271,328.3577487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450203633,5.730923839,-0.167024799,0.167024799,0.558716612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679895119,132.8354478,0.679895119,47.16455219,0,0.976459246,0,0,0,3,23,0% -3/14/2018 8:00,144.4127736,352.1564602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52047838,6.146289714,0.150690895,-0.150690895,0.504384029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806100068,143.7166289,0.806100068,36.28337112,0,0.987972961,0,0,0,3,0,0% -3/14/2018 9:00,143.3689218,17.66777709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50225973,0.308360882,0.454344003,-0.454344003,0.452456289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878801036,151.4980696,0.878801036,28.50193039,0,0.9931043,0,0,0,3,1,0% -3/14/2018 10:00,137.6352359,39.56926661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.402188034,0.690613985,0.786363388,-0.786363388,0.39567763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.8930312,153.2566529,0.8930312,26.74334715,0,0.994010915,0,0,0,3,2,0% -3/14/2018 11:00,128.8057312,56.27820564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248084106,0.982239986,1.208003804,-1.208003804,0.323572872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847809092,147.9741678,0.847809092,32.02583223,0,0.991024459,0,0,0,3,3,0% -3/14/2018 12:00,118.2658665,69.11387917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064128763,1.20626475,1.859632632,-1.859632632,0.21213778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746205718,138.2627658,0.746205718,41.73723422,0,0.982994349,0,0,0,3,4,0% -3/14/2018 13:00,106.8543551,79.66640457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864960317,1.390441063,3.253974324,-3.253974324,0,#DIV/0!,0,0,0.025634288,1,0.29815559,0,0.924652253,0.963414216,0.724496596,1,0,0,0.004331524,0.312029739,0.987790477,0.712287073,0.961238037,0.922476074,0,0,0,0,0,0,-0.595135582,126.522298,0.595135582,53.47770196,0,0.965985531,0,0,0,3,5,0% -3/14/2018 14:00,95.06669541,89.11653511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659226844,1.555376956,10.65684426,-10.65684426,0,#DIV/0!,0,0,0.56375198,1,0.093562437,0,0.951941829,0.990703792,0.724496596,1,0,0,0.076071622,0.312029739,0.807027748,0.531524344,0.961238037,0.922476074,0,0,0,0,0,0,-0.404885772,113.8839692,0.404885772,66.11603076,0,0.92650838,0,0,0,3,6,0% -3/14/2018 15:00,83.12112802,98.35355438,55.26240618,255.4643954,24.66524447,24.3380877,0,24.3380877,23.92149634,0.416591361,61.72937904,47.58662073,14.14275831,0.743748126,13.39901018,1.450737362,1.716593355,-7.294761001,7.294761001,0.222368709,0.446329543,0.237227337,7.630046616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.99425218,0.538842985,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.171870398,7.33429103,23.16612258,7.873134015,0,47.58662073,-0.186274963,100.7354746,0.186274963,79.26452542,0,0.7815796,23.16612258,45.06586602,52.66083057,3,7,127% -3/14/2018 16:00,71.66690757,108.1844826,255.0623925,621.2692388,59.6478909,84.85923786,25.08718289,59.77205497,57.84928691,1.922768054,63.64143407,0,63.64143407,1.798603988,61.84283008,1.250823502,1.88817542,-2.372121368,2.372121368,0.935810335,0.233856079,1.828209163,58.80149111,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.60693499,1.303082467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324531315,56.52222988,56.9314663,57.82531235,25.08718289,0,0.040380533,87.68573667,-0.040380533,92.31426333,0,0,56.9314663,57.82531235,94.77697673,3,8,66% -3/14/2018 17:00,60.84403666,119.5189518,451.1536098,765.8594636,78.03560953,281.1955472,202.1120128,79.08353446,75.68254798,3.400986479,111.7404775,0,111.7404775,2.353061548,109.387416,1.06192877,2.085999228,-1.163699655,1.163699655,0.729158051,0.172969046,2.639183616,84.88521724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.74894384,1.704785081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912079546,81.59489958,74.66102339,83.29968466,202.1120128,0,0.26390222,74.69826725,-0.26390222,105.3017327,0.860535887,0,248.5856636,83.29968466,303.1036412,3,9,22% -3/14/2018 18:00,51.30812674,133.4940184,610.9775359,833.8136762,89.73396231,482.1030575,390.4690985,91.633959,87.02815226,4.605806744,150.8443873,0,150.8443873,2.705810047,148.1385772,0.895495745,2.329910153,-0.557224482,0.557224482,0.625444688,0.146869495,3.134046244,100.8017004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65477023,1.960350168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270605835,96.89442862,85.92537606,98.85477878,390.4690985,0,0.468292989,62.07645231,-0.468292989,117.9235477,0.943229236,0,454.2272457,98.85477878,518.9257213,3,10,14% -3/14/2018 19:00,44.0404332,151.2935939,720.2970463,867.2048516,96.90735378,653.9989968,554.5838539,99.4151429,93.98523951,5.42990339,177.5664724,0,177.5664724,2.922114266,174.6443582,0.768650563,2.64057135,-0.146384184,0.146384184,0.555186859,0.134538041,3.339559716,107.4117201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.34218712,2.117061839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419499646,103.248231,92.76168677,105.3652928,554.5838539,0,0.639507324,50.24490832,-0.639507324,129.7550917,0.971814813,0,631.7144907,105.3652928,700.6739676,3,11,11% -3/14/2018 20:00,40.36580921,173.010715,770.6741556,880.1557444,100.0615497,776.9173446,674.0633525,102.8539921,97.0443248,5.809667319,189.8760965,0,189.8760965,3.017224912,186.8588716,0.704516276,3.019606619,0.191371893,-0.191371893,0.497427168,0.129836389,3.268980181,105.1416397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.28269626,2.185969177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368365013,101.0661433,95.65106127,103.2521125,674.0633525,0,0.765845541,40.01772613,-0.765845541,139.9822739,0.984712684,0,759.4097942,103.2521125,826.9862368,3,12,9% -3/14/2018 21:00,41.28637474,195.9810283,758.383474,877.1167618,99.29946316,837.6525932,735.6303603,102.0222329,96.30521797,5.717014969,186.8730987,0,186.8730987,2.99424519,183.8788535,0.720583175,3.420514215,0.515899099,-0.515899099,0.441929748,0.13093569,2.944268775,94.69780468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.57223866,2.169320448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133112705,91.02713186,94.70535136,93.19645231,735.6303603,0,0.838691486,32.99779938,-0.838691486,147.0022006,0.990383322,0,823.2613916,93.19645231,884.2566057,3,13,7% -3/14/2018 22:00,46.52269271,216.3158236,684.3429599,857.0969581,94.60263171,828.0888485,731.1799688,96.90887962,91.75001332,5.158866299,168.7794921,0,168.7794921,2.852618393,165.9268737,0.811974165,3.775423346,0.877553985,-0.877553985,0.38008312,0.138238628,2.402894571,77.28534929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19360268,2.066712315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740888937,74.28961743,89.93449162,76.35632975,731.1799688,0,0.853088979,31.45074966,-0.853088979,148.5492503,0.991389467,0,814.818611,76.35632975,864.7923017,3,14,6% -3/14/2018 23:00,54.81541384,232.5165177,554.1158601,812.7946385,85.77345779,744.1691308,656.8048999,87.36423098,83.18707157,4.177159413,136.9381918,0,136.9381918,2.586386223,134.3518056,0.956709452,4.0581788,1.352875328,-1.352875328,0.298798383,0.154793364,1.701523028,54.72682953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.96257737,1.873828014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.232747642,52.60551018,81.19532501,54.47933819,656.8048999,0,0.808082225,36.09101943,-0.808082225,143.9089806,0.988125108,0,730.2007379,54.47933819,765.8563752,3,15,5% -3/14/2018 0:00,64.94095911,245.3217555,378.1412811,722.9732108,71.92456843,583.6058849,510.9995189,72.60636602,69.75577732,2.850588705,93.85352269,0,93.85352269,2.168791112,91.68473158,1.133433556,4.281672361,2.131624797,-2.131624797,0.16562438,0.190205545,0.924523594,29.73585683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.05190645,1.571281777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.669814197,28.58323664,67.72172065,30.15451842,510.9995189,0,0.70680284,45.02462258,-0.70680284,134.9753774,0.979258915,0,568.1225549,30.15451842,587.8580841,3,16,3% -3/14/2018 1:00,76.06989041,255.9632365,174.4216435,520.2246934,49.18372261,338.460675,289.4451591,49.01551593,47.7006519,1.314864025,43.77361755,0,43.77361755,1.483070705,42.29054685,1.327670049,4.46740124,4.009909032,-4.009909032,0,0.281981763,0.370767676,11.92516298,0.134634545,1,0.244397135,0,0.932706818,0.971468781,0.724496596,1,46.0907588,1.074479677,0.021650696,0.312029739,0.940437119,0.664933715,0.961238037,0.922476074,0.260288545,11.46292025,46.35104734,12.53739993,250.4758418,0,0.556384891,56.19384433,-0.556384891,123.8061557,0.960134152,0,286.8414573,12.53739993,295.0469348,3,17,3% -3/14/2018 2:00,87.53684879,265.4849524,6.440823024,43.41615964,4.574932904,20.53586111,16.05032567,4.485535441,4.436981797,0.048553645,1.699603218,0,1.699603218,0.137951107,1.561652112,1.527806228,4.633586533,22.40299221,-22.40299221,0,0.710302532,0.034487777,1.109245449,0.767495045,1,0.044607284,0,0.957065654,0.995827617,0.724496596,1,4.286470511,0.099945107,0.096166457,0.312029739,0.763723706,0.488220302,0.961238037,0.922476074,0.024129987,1.066248918,4.310600498,1.166194025,3.731780241,0,0.369685523,68.30377604,-0.369685523,111.696224,0.914749911,0,7.72424614,1.166194025,8.487496806,3,18,10% -3/14/2018 3:00,99.62929038,274.7381272,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738859149,4.795084901,-5.353133641,5.353133641,0.554406543,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.149071312,81.42688841,-0.149071312,98.57311159,0.714590059,0,0,0,0,3,19,0% -3/14/2018 4:00,111.2868114,284.5398828,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942321273,4.966157807,-2.114200431,2.114200431,0.891703257,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078631398,94.50990277,0.078631398,85.49009723,0,0,0,0,0,3,20,0% -3/14/2018 5:00,122.3877094,295.8672651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136068493,5.163857925,-1.097749858,1.097749858,0.717879971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30223274,107.5917561,0.30223274,72.40824385,0,0.884564581,0,0,0,3,21,0% -3/14/2018 6:00,132.3238648,310.0528776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309487121,5.411443569,-0.548155388,0.548155388,0.623893782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506480074,120.4296523,0.506480074,59.57034767,0,0.951279433,0,0,0,3,22,0% -3/14/2018 7:00,140.0552469,328.7107533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444425193,5.737084932,-0.163942498,0.163942498,0.558189508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6774403,132.6439414,0.6774403,47.35605859,0,0.976192758,0,0,0,3,23,0% -3/15/2018 8:00,144.0276114,352.3461175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513756033,6.149599857,0.155189581,-0.155189581,0.503614708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803449392,143.4607691,0.803449392,36.53923092,0,0.987768327,0,0,0,3,0,0% -3/15/2018 9:00,142.9690252,17.62218726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495280218,0.307565189,0.460526148,-0.460526148,0.45139908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87590725,151.1525308,0.87590725,28.84746917,0,0.99291633,0,0,0,3,1,0% -3/15/2018 10:00,137.2590313,39.36461893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395622024,0.687042209,0.795119539,-0.795119539,0.39418024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889863803,152.8561374,0.889863803,27.14386264,0,0.993811626,0,0,0,3,2,0% -3/15/2018 11:00,128.4623078,56.01347515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242090236,0.977619567,1.221549016,-1.221549016,0.321256505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844356448,147.60305,0.844356448,32.39694997,0,0.990783303,0,0,0,3,3,0% -3/15/2018 12:00,117.9480767,68.83679936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058582284,1.201428795,1.884456771,-1.884456771,0.207892602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742475871,137.9427511,0.742475871,42.05724891,0,0.982657744,0,0,0,3,4,0% -3/15/2018 13:00,106.5518654,79.39167062,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859680875,1.385646051,3.319654039,-3.319654039,0,#DIV/0!,0,0,0.036182281,1,0.292590546,0,0.925514038,0.964276001,0.724496596,1,0,0,0.006084029,0.312029739,0.982892175,0.707388771,0.961238037,0.922476074,0,0,0,0,0,0,-0.591155708,126.2390637,0.591155708,53.76093628,0,0.965419915,0,0,0,3,5,0% -3/15/2018 14:00,94.76974523,88.84612387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654044086,1.550657389,11.34207465,-11.34207465,0,#DIV/0!,0,0,0.584968438,1,0.087939896,0,0.952558918,0.991320881,0.724496596,1,0,0,0.078308274,0.312029739,0.802048025,0.526544621,0.961238037,0.922476074,0,0,0,0,0,0,-0.400700313,113.6219657,0.400700313,66.37803428,0,0.925218465,0,0,0,3,6,0% -3/15/2018 15:00,82.82519604,98.08607791,59.68289672,270.0705493,25.95191281,25.61928177,0,25.61928177,25.16936688,0.449914886,64.41073829,49.15738307,15.25335522,0.782545924,14.47080929,1.445572374,1.71192501,-7.00844334,7.00844334,0.271331913,0.43482998,0.264630327,8.51142097,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.19375281,0.566951858,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191723771,8.181501584,24.38547658,8.748453442,0,49.15738307,-0.182016822,100.4872561,0.182016822,79.51274393,0,0.775300115,24.38547658,46.8601782,55.05452601,3,7,126% -3/15/2018 16:00,71.3548854,107.9201001,260.8632363,627.4668138,60.25865641,88.50380171,28.09566886,60.40813286,58.44163559,1.966497264,65.06633263,0,65.06633263,1.817020822,63.24931181,1.245377688,1.883561076,-2.337984075,2.337984075,0.929972514,0.23099712,1.860598755,59.84325171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.17632307,1.3164254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.347997464,57.52360979,57.52432053,58.84003519,28.09566886,0,0.044776342,87.43364652,-0.044776342,92.56635348,0,0,57.52432053,58.84003519,96.03394676,3,8,67% -3/15/2018 17:00,60.51009065,119.2650437,457.0692007,769.1417146,78.44360141,285.891937,206.3681189,79.5238181,76.0782374,3.445580702,113.1870835,0,113.1870835,2.365364009,110.8217195,1.056100312,2.081567696,-1.153871453,1.153871453,0.72747733,0.171623031,2.667735677,85.80354964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.12929557,1.713698172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932765416,82.47763561,75.06206098,84.19133379,206.3681189,0,0.268309617,74.43629605,-0.268309617,105.5637039,0.863648126,0,253.2915001,84.19133379,308.3930442,3,9,22% -3/15/2018 18:00,50.94506696,133.2759669,616.7845353,835.9827072,90.06092369,487.1070857,395.1122488,91.9948369,87.34525455,4.649582358,152.2622206,0,152.2622206,2.715669139,149.5465515,0.889159156,2.326104435,-0.554238107,0.554238107,0.624933988,0.146016832,3.160320844,101.6467819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95958101,1.967493046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289641693,97.70675306,86.2492227,99.67424611,395.1122488,0,0.472632084,61.79471313,-0.472632084,118.2052869,0.944209467,0,459.3179486,99.67424611,524.5527492,3,10,14% -3/15/2018 19:00,43.64885687,151.1698115,725.8958998,868.876403,97.19122718,659.0345662,559.3019032,99.732663,94.26055308,5.472109913,178.9325391,0,178.9325391,2.930674097,176.001865,0.761816267,2.638410941,-0.146432069,0.146432069,0.555195048,0.133891412,3.363982914,108.1972541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.606829,2.123263407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.43719417,104.0033162,93.04402317,106.1265796,559.3019032,0,0.643707093,49.93119321,-0.643707093,130.0688068,0.97232492,0,636.8672014,106.1265796,706.3249252,3,11,11% -3/15/2018 20:00,39.96615551,173.0596004,776.0060891,881.6104776,100.318658,781.847366,678.7038239,103.143542,97.29368035,5.849861686,191.1766383,0,191.1766383,3.024977676,188.1516606,0.697541003,3.020459829,0.189379381,-0.189379381,0.497767908,0.129275607,3.29168363,105.8718606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.5223863,2.191586029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384813585,101.7680595,95.90719988,103.9596455,678.7038239,0,0.76984546,39.65998665,-0.76984546,140.3400133,0.9850519,0,764.4656911,103.9596455,832.5051999,3,12,9% -3/15/2018 21:00,40.91643828,196.2161285,763.4157694,878.5308067,99.54026765,842.4076603,740.1139484,102.2937119,96.53876132,5.754950538,188.1004982,0,188.1004982,3.001506334,185.0989918,0.714126566,3.424617488,0.512092203,-0.512092203,0.442580765,0.130388016,2.965304754,95.37439405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.79672941,2.174581122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1483532,91.67749531,94.94508261,93.85207643,740.1139484,0,0.842445072,32.60077901,-0.842445072,147.399221,0.990648949,0,828.1381881,93.85207643,889.5624951,3,13,7% -3/15/2018 22:00,46.20697181,216.6572809,689.0640058,858.6390722,94.83824719,832.6546728,735.4816931,97.17297966,91.97852412,5.194455538,169.931269,0,169.931269,2.859723069,167.0715459,0.806463795,3.781382899,0.87135697,-0.87135697,0.381142872,0.137633437,2.422269702,77.90852011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.41325596,2.071859628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.754926153,74.88863293,90.16818211,76.96049256,735.4816931,0,0.856566766,31.06674224,-0.856566766,148.9332578,0.991627434,0,819.4920063,76.96049256,869.8611095,3,14,6% -3/15/2018 23:00,54.55228617,232.8872578,558.528585,814.7227167,86.02217752,748.6017172,660.9630013,87.63871587,83.42829148,4.210424398,138.0156079,0,138.0156079,2.59388604,135.4217219,0.952117008,4.064649435,1.342470358,-1.342470358,0.300577737,0.154015712,1.71911525,55.29265585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.19444712,1.879261606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245493146,53.14940396,81.43994026,55.02866557,660.9630013,0,0.811273563,35.77945075,-0.811273563,144.2205492,0.988368508,0,734.7149558,55.02866557,770.7301168,3,15,5% -3/15/2018 0:00,64.71699397,245.6891402,382.2416615,725.8731313,72.22872861,588.0959644,515.1636993,72.93226505,70.05076595,2.881499104,94.85687893,0,94.85687893,2.177962663,92.67891626,1.129524627,4.288084434,2.11115179,-2.11115179,0.169125471,0.188960901,0.939738318,30.22521464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.33546074,1.577926535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.680837212,29.05362598,68.01629795,30.63155252,515.1636993,0,0.709715895,44.7881955,-0.709715895,135.2118045,0.979549274,0,572.6445257,30.63155252,592.6922641,3,16,4% -3/15/2018 1:00,75.87100126,256.3217254,178.0718729,525.9502966,49.68432571,343.5564301,294.0278891,49.52854097,48.18615998,1.342380996,44.67375296,0,44.67375296,1.498165736,43.17558722,1.324198779,4.473658052,3.948499371,-3.948499371,0,0.279012766,0.374541434,12.04653999,0.126698168,1,0.248045263,0,0.932179499,0.970941462,0.724496596,1,46.54929502,1.085415976,0.020446491,0.312029739,0.943653596,0.668150192,0.961238037,0.922476074,0.263323591,11.57959246,46.81261861,12.66500843,256.7750943,0,0.559041208,56.01048321,-0.559041208,123.9895168,0.960561155,0,293.4607998,12.66500843,301.7497945,3,17,3% -3/15/2018 2:00,87.35960511,265.8395568,7.549079877,50.0200598,5.244792031,23.74967809,18.60612774,5.143550353,5.0866422,0.056908153,1.988511647,0,1.988511647,0.158149831,1.830361816,1.524712742,4.639775549,20.86097854,-20.86097854,0,0.694759112,0.039537458,1.27166055,0.752308715,1,0.047899723,0,0.956738817,0.99550078,0.724496596,1,4.915424894,0.114579014,0.094769028,0.312029739,0.766630474,0.491127069,0.961238037,0.922476074,0.027612592,1.222368491,4.943037486,1.336947505,4.608575693,0,0.371973321,68.16263135,-0.371973321,111.8373687,0.915581758,0,9.162565319,1.336947505,10.03757072,3,18,10% -3/15/2018 3:00,99.44073386,275.0972415,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735568217,4.801352628,-5.446188881,5.446188881,0.53849316,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151399455,81.29196425,-0.151399455,98.70803575,0.719747821,0,0,0,0,3,19,0% -3/15/2018 4:00,111.0854676,284.9121016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938807161,4.972654252,-2.126765997,2.126765997,0.893852095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076375575,94.38026369,0.076375575,85.61973631,0,0,0,0,0,3,20,0% -3/15/2018 5:00,122.1591069,296.2572839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132078627,5.170665036,-1.099698103,1.099698103,0.718213141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299974621,107.4560788,0.299974621,72.54392121,0,0.883319233,0,0,0,3,21,0% -3/15/2018 6:00,132.0509435,310.4498828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304723744,5.418372617,-0.546758659,0.546758659,0.623654927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504145157,120.2746224,0.504145157,59.72537758,0,0.950822215,0,0,0,3,22,0% -3/15/2018 7:00,139.7231974,329.0605014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438629836,5.743189187,-0.160806602,0.160806602,0.557653238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674959348,132.4509934,0.674959348,47.54900657,0,0.975921465,0,0,0,3,23,0% -3/16/2018 8:00,143.6419239,352.533979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507024517,6.152878658,0.159754907,-0.159754907,0.502833991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800763209,143.2030453,0.800763209,36.79695466,0,0.987559569,0,0,0,3,0,0% -3/16/2018 9:00,142.5685608,17.57884963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.488290795,0.306808805,0.466798033,-0.466798033,0.450326525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872970771,150.8057193,0.872970771,29.19428074,0,0.992724314,0,0,0,3,1,0% -3/16/2018 10:00,136.8817048,39.16384554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389036435,0.683538052,0.804012353,-0.804012353,0.392659479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886649214,152.4551624,0.886649214,27.54483761,0,0.993607913,0,0,0,3,2,0% -3/16/2018 11:00,128.1174241,55.75191465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23607088,0.973054475,1.235342615,-1.235342615,0.31889766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840855112,147.2305278,0.840855112,32.76947224,0,0.990536724,0,0,0,3,3,0% -3/16/2018 12:00,117.628817,68.56181695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053010152,1.196629447,1.9098808,-1.9098808,0.203544837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738698933,137.6207023,0.738698933,42.37929771,0,0.982313426,0,0,0,3,4,0% -3/16/2018 13:00,106.2480801,79.11817327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854378821,1.380872622,3.387913601,-3.387913601,0,#DIV/0!,0,0,0.046905278,1,0.287016893,0,0.926370746,0.965132709,0.724496596,1,0,0,0.007848151,0.312029739,0.977985623,0.702482219,0.961238037,0.922476074,0,0,0,0,0,0,-0.587133339,125.953844,0.587133339,54.04615598,0,0.964840469,0,0,0,3,5,0% -3/16/2018 14:00,94.4717498,88.57628816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648843084,1.545947868,12.1206176,-12.1206176,0,#DIV/0!,0,0,0.606700872,1,0.082317608,0,0.953168597,0.991930561,0.724496596,1,0,0,0.08056255,0.312029739,0.797069504,0.5215661,0.961238037,0.922476074,0,0,0,0,0,0,-0.396479634,113.3582871,0.396479634,66.64171293,0,0.923890118,0,0,0,3,6,0% -3/16/2018 15:00,82.52820496,97.81861001,64.17857432,284.1657218,27.22619852,26.88903338,0,26.88903338,26.40522818,0.483805202,66.8861158,50.50430708,16.38180872,0.820970339,15.56083838,1.440388902,1.707256814,-6.743559188,6.743559188,0.31662977,0.424225667,0.293443802,9.438161393,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.38170969,0.594790216,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.212599036,9.072319728,25.59430873,9.667109945,0,50.50430708,-0.177728358,100.2374709,0.177728358,79.76252906,0,0.768671794,25.59430873,48.48834629,57.32896161,3,7,124% -3/16/2018 16:00,71.04230106,107.6551645,266.622529,633.2414625,60.90137743,92.22233977,31.14745032,61.07488945,59.0649762,2.009913245,66.48212023,0,66.48212023,1.836401232,64.645719,1.239922062,1.878937077,-2.304795412,2.304795412,0.924296918,0.228417972,1.892511927,60.86968903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.77550177,1.330466441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371118448,58.51026038,58.14662022,59.84072683,31.14745032,0,0.04918732,87.18063653,-0.04918732,92.81936347,0,0,58.14662022,59.84072683,97.31117911,3,8,67% -3/16/2018 17:00,60.17575914,119.0100074,462.9157942,772.1326509,78.90252841,290.589098,210.5761171,80.01298085,76.52332606,3.489654793,114.6184961,0,114.6184961,2.379202351,112.2392938,1.050265127,2.077116473,-1.144190678,1.144190678,0.725821819,0.170446827,2.695948934,86.71098498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55713172,1.723724004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.953205825,83.34989698,75.51033754,85.07362098,210.5761171,0,0.27272013,74.17380523,-0.27272013,105.8261948,0.866661865,0,258.008628,85.07362098,313.6876114,3,9,22% -3/16/2018 18:00,50.58163542,133.0564376,622.5064097,837.9181379,90.44669316,492.067628,399.6555201,92.41210791,87.71939165,4.692716264,153.6611877,0,153.6611877,2.727301511,150.9338862,0.882816079,2.322272927,-0.551267987,0.551267987,0.624426068,0.145294397,3.186330201,102.4833322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.31921582,1.975920661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308485384,98.51087707,86.6277012,100.4867977,399.6555201,0,0.476962488,61.51279546,-0.476962488,118.4872045,0.945169953,0,464.3700904,100.4867977,530.1366898,3,10,14% -3/16/2018 19:00,43.25679227,151.0453439,731.3983912,870.3417175,97.53744974,663.9932143,563.8832886,100.1099258,94.59633575,5.513590017,180.2771218,0,180.2771218,2.941113984,177.3360078,0.754973449,2.63623857,-0.14645828,0.14645828,0.555199531,0.133357485,3.38819481,108.9759919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92959607,2.13082707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454735606,104.7518685,93.38433168,106.8826956,563.8832886,0,0.647887235,49.61750283,-0.647887235,130.3824972,0.972826076,0,641.9446988,106.8826956,711.8972854,3,11,11% -3/16/2018 20:00,39.56615253,173.11072,781.2344038,882.8696187,100.639338,786.6729607,683.1789952,103.4939655,97.6046906,5.889274931,192.4539734,0,192.4539734,3.034647359,189.419326,0.690559634,3.021352035,0.18742742,-0.18742742,0.498101713,0.128820924,3.31422901,106.5969975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82134118,2.198591681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401147636,102.4650887,96.22248881,104.6636803,683.1789952,0,0.773816406,39.30215325,-0.773816406,140.6978467,0.98538519,0,769.4169528,104.6636803,837.9172383,3,12,9% -3/16/2018 21:00,40.54692227,196.4562421,768.3412009,879.747393,99.84416545,847.0348816,744.4093056,102.625576,96.83349548,5.792080521,189.3038897,0,189.3038897,3.010669974,186.2932197,0.707677295,3.428808261,0.508344354,-0.508344354,0.443221685,0.129947692,2.986244628,96.04789238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.08003909,2.181220148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.163524067,92.32488752,95.24356316,94.50610767,744.4093056,0,0.846162559,32.20329075,-0.846162559,147.7967093,0.990909699,0,832.8859644,94.50610767,894.7383217,3,13,7% -3/16/2018 22:00,45.89247562,217.0036725,693.6792274,859.9690078,95.13469335,837.0720978,739.5768194,97.49527837,92.26603134,5.229247028,171.0592218,0,171.0592218,2.868662014,168.1905598,0.800974802,3.787428575,0.865249514,-0.865249514,0.382187308,0.13714508,2.441625796,78.53107863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68961883,2.078335864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768949578,75.48705986,90.45856841,77.56539572,739.5768194,0,0.860004038,30.68296371,-0.860004038,149.3170363,0.991860738,0,824.0157784,77.56539572,874.7807786,3,14,6% -3/16/2018 23:00,54.29067105,233.2615122,562.8413597,816.4060909,86.32681821,752.8665663,664.8998843,87.96668204,83.72374613,4.242935915,139.0704761,0,139.0704761,2.603072081,136.467404,0.947550963,4.071181406,1.332224327,-1.332224327,0.302329912,0.153376821,1.736787823,55.86106657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47844936,1.885916862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.258296866,53.69578197,81.73674623,55.58169883,664.8998843,0,0.814422983,35.4696523,-0.814422983,144.5303477,0.988606841,0,739.0613202,55.58169883,775.4384304,3,15,5% -3/16/2018 0:00,64.49441413,246.0587961,386.2545208,728.4639137,72.57862283,592.3970599,519.0952006,73.3018593,70.39010957,2.911749732,95.84039373,0,95.84039373,2.188513265,93.65188047,1.125639876,4.294536145,2.091060835,-2.091060835,0.172561226,0.18790362,0.955170288,30.72155983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66165074,1.585570411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.692017622,29.53073186,68.35366836,31.11630227,519.0952006,0,0.712588765,44.55406338,-0.712588765,135.4459366,0.979833303,0,576.9804333,31.11630227,597.3454308,3,16,4% -3/16/2018 1:00,75.67315202,256.68165,181.6630252,531.238316,50.2064823,348.4385681,298.3765439,50.06202423,48.69257161,1.369452619,45.56021436,0,45.56021436,1.513910683,44.04630368,1.320745658,4.479939921,3.888895581,-3.888895581,0,0.276371497,0.378477671,12.1731429,0.118854712,1,0.251689557,0,0.931649901,0.970411864,0.724496596,1,47.02752049,1.096823137,0.01924797,0.312029739,0.946866191,0.671362787,0.961238037,0.922476074,0.266489029,11.70128799,47.29400952,12.79811112,262.9130858,0,0.561662318,55.82916377,-0.561662318,124.1708362,0.960978539,0,299.9478426,12.79811112,308.3239504,3,17,3% -3/16/2018 2:00,87.18223536,266.1950212,8.742609045,56.90295171,5.945291311,27.12761121,21.29568689,5.831924322,5.766018842,0.06590548,2.29901925,0,2.29901925,0.179272469,2.119746781,1.521617056,4.645979572,19.51113921,-19.51113921,0,0.680036278,0.044818117,1.44150471,0.73728786,1,0.051207966,0,0.956407815,0.995169778,0.724496596,1,5.573382227,0.129882293,0.093371885,0.312029739,0.769552311,0.494048907,0.961238037,0.922476074,0.031246036,1.385629158,5.604628263,1.515511451,5.594635468,0,0.374245733,68.02229777,-0.374245733,111.9777022,0.916397942,0,10.73154069,1.515511451,11.72341263,3,18,9% -3/16/2018 3:00,99.25237365,275.4567311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.732280711,4.807626904,-5.542628864,5.542628864,0.522000951,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153708677,81.15808857,-0.153708677,98.84191143,0.72470932,0,0,0,0,3,19,0% -3/16/2018 4:00,110.8838452,285.2841395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935288185,4.979147539,-2.13948178,2.13948178,0.896026622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074127733,94.25110556,0.074127733,85.74889444,0,0,0,0,0,3,20,0% -3/16/2018 5:00,121.9297802,296.6462996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128076121,5.177454642,-1.101631904,1.101631904,0.71854384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297712801,107.3202803,0.297712801,72.67971966,0,0.882052905,0,0,0,3,21,0% -3/16/2018 6:00,131.7770129,310.8446395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299942753,5.425262421,-0.545320673,0.545320673,0.623409017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50179493,120.1188228,0.50179493,59.88117717,0,0.950357702,0,0,0,3,22,0% -3/16/2018 7:00,139.3902563,329.4068946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432818918,5.74923489,-0.157618233,0.157618233,0.557107995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672452344,132.2566212,0.672452344,47.7433788,0,0.975645289,0,0,0,3,23,0% -3/17/2018 8:00,143.25581,352.7199575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.500285556,6.156124596,0.164385905,-0.164385905,0.502042044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798041841,142.9435167,0.798041841,37.05648329,0,0.987346643,0,0,0,3,0,0% -3/17/2018 9:00,142.1676517,17.53761803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.481293612,0.306089178,0.473158909,-0.473158909,0.449238751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869992216,150.457735,0.869992216,29.542265,0,0.992528221,0,0,0,3,1,0% -3/17/2018 10:00,136.5034015,38.96683697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382433797,0.680099604,0.813041692,-0.813041692,0.391115372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883388373,152.0538417,0.883388373,27.94615826,0,0.993399753,0,0,0,3,2,0% -3/17/2018 11:00,127.771228,55.49348614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230028617,0.968544047,1.249386709,-1.249386709,0.316495979,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837306351,146.8567606,0.837306351,33.14323941,0,0.9902847,0,0,0,3,3,0% -3/17/2018 12:00,117.3082295,68.28893395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047414845,1.19186674,1.935918313,-1.935918313,0.19909216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734876487,137.2967804,0.734876487,42.70321957,0,0.981961356,0,0,0,3,4,0% -3/17/2018 13:00,105.9431354,78.84593031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849056532,1.376121086,3.458885599,-3.458885599,0,#DIV/0!,0,0,0.057804259,1,0.281436692,0,0.927222007,0.96598397,0.724496596,1,0,0,0.009623441,0.312029739,0.973072553,0.697569149,0.961238037,0.922476074,0,0,0,0,0,0,-0.583070333,125.6667846,0.583070333,54.33321543,0,0.964247052,0,0,0,3,5,0% -3/17/2018 14:00,94.17284219,88.30704957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643626162,1.541248768,13.01262958,-13.01262958,0,#DIV/0!,0,0,0.628961352,1,0.076697671,0,0.953770625,0.992532588,0.724496596,1,0,0,0.082833928,0.312029739,0.792094299,0.516590895,0.961238037,0.922476074,0,0,0,0,0,0,-0.392225817,113.0930673,0.392225817,66.90693267,0,0.922522415,0,0,0,3,6,0% -3/17/2018 15:00,82.23031002,97.55116913,68.73797992,297.7116063,28.48991967,28.1490194,0,28.1490194,27.63084347,0.518175928,69.15221085,51.6268156,17.52539525,0.859076195,16.66631905,1.435189655,1.702589091,-6.497886996,6.497886996,0.35864219,0.414471297,0.323583556,10.40755947,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.55981773,0.622397779,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234435185,10.00414204,26.79425292,10.62653982,0,51.6268156,-0.17341217,99.98626943,0.17341217,80.01373057,0,0.761669601,26.79425292,49.94911588,59.48495028,3,7,122% -3/17/2018 16:00,70.7292893,107.389684,272.3361573,638.6001591,61.57774404,96.01002507,34.23609222,61.77393285,59.72094786,2.052984989,67.88785053,0,67.88785053,1.85679618,66.03105435,1.234458976,1.874303569,-2.272527758,2.272527758,0.918778824,0.226109323,1.923941927,61.88058588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.40604668,1.345242512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.393889377,59.48197289,58.79993605,60.8272154,34.23609222,0,0.053611155,86.92683375,-0.053611155,93.07316625,0,0,58.79993605,60.8272154,98.61013199,3,8,68% -3/17/2018 17:00,59.84117864,118.7538299,468.6901839,774.8368385,79.41319453,295.2834564,214.7316781,80.55177829,77.01859371,3.533184582,116.0339622,0,116.0339622,2.394600819,113.6393614,1.044425596,2.072645332,-1.134658161,1.134658161,0.724191663,0.169436436,2.723815535,87.60727067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.03320182,1.734880142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973395083,84.21144087,76.0065969,85.94632102,214.7316781,0,0.277131478,73.91092331,-0.277131478,106.0890767,0.869580221,0,262.733017,85.94632102,318.9831652,3,9,21% -3/17/2018 18:00,50.21796816,132.8353824,628.1403789,839.6231881,90.89175457,496.981768,404.0955477,92.88622032,88.15103282,4.735187504,155.040629,0,155.040629,2.740721755,152.2999072,0.876468888,2.318414785,-0.548316199,0.548316199,0.623921282,0.144699748,3.212066039,103.3110852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73412573,1.985643582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.327130911,99.30654476,87.06125664,101.2921883,404.0955477,0,0.481282024,61.23083343,-0.481282024,118.7691666,0.946110809,0,469.3804223,101.2921883,535.6741337,3,10,14% -3/17/2018 19:00,42.86436669,150.920115,736.8021036,871.6033663,97.94637464,668.8725276,568.325272,100.5472555,94.99293007,5.554325483,181.599645,0,181.599645,2.953444579,178.6462004,0.74812433,2.634052913,-0.146464615,0.146464615,0.555200614,0.132934439,3.412187502,109.7476794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.31081761,2.139760544,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.47211823,105.4936439,93.78293584,107.6334044,568.325272,0,0.652045752,49.30397906,-0.652045752,130.6960209,0.973318264,0,646.9443032,107.6334044,717.3882137,3,11,11% -3/17/2018 20:00,39.16591506,173.164031,786.3570417,883.9354618,101.0238969,791.392206,687.4866608,103.9055452,97.97765368,5.927891539,193.7076121,0,193.7076121,3.04624323,190.6613689,0.683574172,3.022282488,0.185514424,-0.185514424,0.498428855,0.128470773,3.336609116,107.3168187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.17984748,2.206992851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.417361947,103.1570081,96.59720942,105.364001,687.4866608,0,0.777756624,38.94436953,-0.777756624,141.0556305,0.985712537,0,774.2614302,105.364001,843.2200615,3,12,9% -3/17/2018 21:00,40.17793506,196.7013457,773.1580605,880.7687945,100.2114707,851.5328605,748.5147433,103.0181172,97.18972516,5.828392044,190.4828687,0,190.4828687,3.021745584,187.4611231,0.701237253,3.433086126,0.504653928,-0.504653928,0.443852785,0.129613175,3.007081889,96.71809034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.42246061,2.189244389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178620592,92.96910728,95.60108121,95.15835167,748.5147433,0,0.849842488,31.80545841,-0.849842488,148.1945416,0.991165568,0,837.5031219,95.15835167,899.7823599,3,13,7% -3/17/2018 22:00,45.57929423,217.3549174,698.1872355,861.0892788,95.49234128,841.3403105,743.4641853,97.87612516,92.61289486,5.263230297,172.163025,0,172.163025,2.879446419,169.2835786,0.795508755,3.793558954,0.859229518,-0.859229518,0.383216788,0.136771823,2.460956762,79.15282895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.02303725,2.086149129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782954797,76.08470991,90.80599204,78.17085904,743.4641853,0,0.863399654,30.29953401,-0.863399654,149.700466,0.992089391,0,828.3889227,78.17085904,879.5501865,3,14,6% -3/17/2018 23:00,54.0306297,233.6391588,567.0530372,817.8478972,86.68788576,756.9635326,668.6149211,88.34861148,84.07392616,4.274685319,140.1025336,0,140.1025336,2.6139596,137.488574,0.943012385,4.077772582,1.322133464,-1.322133464,0.304055551,0.152874388,1.754534469,56.4318597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.81505573,1.893804832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27115425,54.24445004,82.08620998,56.13825487,668.6149211,0,0.81752967,35.16173669,-0.81752967,144.8382633,0.98884014,0,743.2394823,56.13825487,779.9808473,3,15,5% -3/17/2018 0:00,64.27325632,246.4305931,390.1787686,730.7500131,72.97507417,596.5097995,522.7938607,73.7159388,70.77460643,2.94133237,96.80382751,0,96.80382751,2.200467735,94.60335978,1.121779944,4.301025228,2.071340952,-2.071340952,0.175933525,0.187029844,0.970811894,31.22464767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.03124374,1.594231384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703349913,30.01431903,68.73459366,31.60855041,522.7938607,0,0.715420939,44.32229272,-0.715420939,135.6777073,0.980111076,0,581.1306467,31.60855041,601.8178108,3,16,4% -3/17/2018 1:00,75.4763643,257.0428839,185.1933091,536.0944391,50.7518867,353.1077923,302.4901969,50.61759545,49.22153006,1.39606539,46.43261852,0,46.43261852,1.530356639,44.90226188,1.317311064,4.486244643,3.831017161,-3.831017161,0,0.274048166,0.38258916,12.30538252,0.111102285,1,0.255330053,0,0.931118036,0.969879999,0.724496596,1,47.52700292,1.108738175,0.018055053,0.312029739,0.950074951,0.674571546,0.961238037,0.922476074,0.269794455,11.82840173,47.79679738,12.93713991,268.8828448,0,0.564247966,55.64991499,-0.564247966,124.350085,0.961386477,0,306.2971283,12.93713991,314.7642276,3,17,3% -3/17/2018 2:00,87.00482238,266.5512222,10.01645306,63.9956901,6.672556344,30.6413394,24.09447699,6.546862406,6.471354152,0.075508254,2.629807203,0,2.629807203,0.201202193,2.42860501,1.518520616,4.652196453,18.32002073,-18.32002073,0,0.666159598,0.050300548,1.617838538,0.722434588,1,0.054530975,0,0.956072721,0.994834684,0.724496596,1,6.256710341,0.145770304,0.091975486,0.312029739,0.772488237,0.496984833,0.961238037,0.922476074,0.035010088,1.55512794,6.291720429,1.700898244,6.687793428,0,0.376501557,67.8828513,-0.376501557,112.1171487,0.917198425,0,12.42575402,1.700898244,13.53895791,3,18,9% -3/17/2018 3:00,99.06422006,275.8164718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728996811,4.813905565,-5.642657938,5.642657938,0.504894972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155999097,81.02525483,-0.155999097,98.97474517,0.729485324,0,0,0,0,3,19,0% -3/17/2018 4:00,110.6819594,285.6558673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931764615,4.985635412,-2.152354905,2.152354905,0.898228056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071887688,94.12241702,0.071887688,85.87758298,0,0,0,0,0,3,20,0% -3/17/2018 5:00,121.6997581,297.0341769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124061477,5.184224378,-1.103553323,1.103553323,0.718872423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295447125,107.1843509,0.295447125,72.81564914,0,0.88076498,0,0,0,3,21,0% -3/17/2018 6:00,131.5021251,311.2370181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295145056,5.43211072,-0.543842774,0.543842774,0.623156281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499429342,119.9622527,0.499429342,60.03774727,0,0.949885738,0,0,0,3,22,0% -3/17/2018 7:00,139.0565036,329.7498414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426993834,5.75522044,-0.154378503,0.154378503,0.556553968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66991942,132.0608459,0.66991942,47.9391541,0,0.975364158,0,0,0,3,23,0% -3/18/2018 8:00,142.8693691,352.9039728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.493540891,6.159336268,0.169081604,-0.169081604,0.501239032,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795285669,142.6822461,0.795285669,37.31775391,0,0.98712951,0,0,0,3,0,0% -3/18/2018 9:00,141.7664203,17.49835339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474290804,0.30540388,0.479608025,-0.479608025,0.448135887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866972257,150.10868,0.866972257,29.89132001,0,0.992328028,0,0,0,3,1,0% -3/18/2018 10:00,136.124265,38.77348649,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375816617,0.676725002,0.82220741,-0.82220741,0.389547941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880082269,151.6522891,0.880082269,28.3477109,0,0.993187129,0,0,0,3,2,0% -3/18/2018 11:00,127.4238659,55.23815148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223966006,0.964087616,1.263683432,-1.263683432,0.314051095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833711479,146.481906,0.833711479,33.51809397,0,0.990027214,0,0,0,3,3,0% -3/18/2018 12:00,116.9864552,68.01815179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041798824,1.1871407,1.962583364,-1.962583364,0.194532168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731010147,136.9711453,0.731010147,43.02885475,0,0.981601497,0,0,0,3,4,0% -3/18/2018 13:00,105.6371668,78.57495937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843716372,1.371391751,3.5327121,-3.5327121,0,#DIV/0!,0,0,0.068880201,1,0.275851976,0,0.928067466,0.966829429,0.724496596,1,0,0,0.011409452,0.312029739,0.968154678,0.692651274,0.961238037,0.922476074,0,0,0,0,0,0,-0.578968573,125.3780302,0.578968573,54.6219698,0,0.963639527,0,0,0,3,5,0% -3/18/2018 14:00,93.87315444,88.03843009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638395624,1.536560473,14.04452823,-14.04452823,0,#DIV/0!,0,0,0.651762337,1,0.071082146,0,0.954364773,0.993126736,0.724496596,1,0,0,0.085121881,0.312029739,0.787124507,0.511621103,0.961238037,0.922476074,0,0,0,0,0,0,-0.387940949,112.8264398,0.387940949,67.17356022,0,0.921114405,0,0,0,3,6,0% -3/18/2018 15:00,81.93166314,97.28377466,73.38242654,310.9963347,29.73281663,29.38945023,0,29.38945023,28.8362625,0.553187728,71.26937645,52.58040342,18.68897303,0.896554124,17.79241891,1.429977283,1.697922177,-6.269497781,6.269497781,0.397699046,0.405176253,0.355001083,11.41805512,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.71851236,0.649550411,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.257197076,10.97546889,27.97570944,11.6250193,0,52.58040342,-0.169070814,99.73379862,0.169070814,80.26620138,0,0.754265929,27.97570944,51.28462616,61.54047156,3,7,120% -3/18/2018 16:00,70.41598377,107.1236683,278.053251,643.8363754,62.24654009,99.83750249,37.37184239,62.4656601,60.36957724,2.096082856,69.29419274,0,69.29419274,1.876962849,67.41722989,1.228990763,1.869660719,-2.24115416,2.24115416,0.913413623,0.223865536,1.955220489,62.88661196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.02953392,1.359853195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.416550589,60.44900342,59.4460845,61.80885662,37.37184239,0,0.058045559,86.67236403,-0.058045559,93.32763597,0,0,59.4460845,61.80885662,99.89874498,3,8,68% -3/18/2018 17:00,59.50648473,118.4965001,474.449405,777.4882145,79.92013191,299.9819737,218.8951286,81.08684508,77.51024506,3.576600023,117.4456381,0,117.4456381,2.409886851,115.0357512,1.038584085,2.068154079,-1.125274496,1.125274496,0.722586962,0.168448166,2.751538053,88.49892213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.50579579,1.74595482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993479953,85.06853017,76.49927575,86.81448499,218.8951286,0,0.281541411,73.64777753,-0.281541411,106.3522225,0.872406232,0,267.4647501,86.81448499,324.2830942,3,9,21% -3/18/2018 18:00,49.85420063,132.6127544,633.7470669,841.2966283,91.33379993,501.8812169,408.5240149,93.35720197,88.57974888,4.777453086,156.4133647,0,156.4133647,2.754051054,153.6593136,0.870119947,2.314529195,-0.545384688,0.545384688,0.623419964,0.144117117,3.237639793,104.1336251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14622392,1.995300613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345659009,100.0972013,87.49188293,102.0925019,408.5240149,0,0.485588556,60.94895981,-0.485588556,119.0510402,0.94703217,0,474.3772671,102.0925019,541.1947678,3,10,14% -3/18/2018 19:00,42.47170713,150.7940493,742.1695485,872.8413244,98.35231217,673.7230409,572.7416263,100.9814146,95.38662708,5.594787551,182.9132847,0,182.9132847,2.965685093,179.9475996,0.741271128,2.631852652,-0.146452793,0.146452793,0.555198592,0.132520005,3.436003398,110.5136805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68925415,2.148628755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.489372765,106.2299532,94.17862692,108.378582,572.7416263,0,0.656180694,48.99076281,-0.656180694,131.0092372,0.973801477,0,651.9152683,108.378582,722.8468826,3,11,11% -3/18/2018 20:00,38.76555772,173.219491,791.4374505,884.9804783,101.4053436,796.0715355,691.7577473,104.3137881,98.34759834,5.966189806,194.9509181,0,194.9509181,3.057745255,191.8931728,0.676586619,3.023250447,0.183638865,-0.183638865,0.498749594,0.128128058,3.358808757,108.0308355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.53545235,2.215326028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433445511,103.8433482,96.96889787,106.0586742,691.7577473,0,0.781664414,38.58677877,-0.781664414,141.4132212,0.986033931,0,779.0655086,106.0586742,848.4787897,3,12,9% -3/18/2018 21:00,39.80958482,196.9514155,777.9299886,881.7693826,100.5755313,855.9827454,752.5755727,103.4071728,97.54280792,5.864364853,191.6508556,0,191.6508556,3.032723352,188.6181323,0.694808329,3.437450667,0.501019357,-0.501019357,0.444474334,0.129286096,3.027748575,97.38280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.7618572,2.197197745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.193593536,93.6080534,95.95545073,95.80525115,752.5755727,0,0.853483448,31.4074057,-0.853483448,148.5925943,0.991416556,0,842.0713329,95.80525115,904.7739537,3,13,7% -3/18/2018 22:00,45.26751707,217.7109319,702.651042,862.1860206,95.84661908,845.5552773,747.301907,98.25337023,92.95648987,5.296880355,173.2560093,0,173.2560093,2.890129201,170.3658801,0.790067217,3.799772579,0.853294957,-0.853294957,0.384231658,0.13640714,2.480141637,79.76988047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.35331384,2.093888768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796854173,76.6778433,91.15016801,78.77173207,747.301907,0,0.866752521,29.91657326,-0.866752521,150.0834267,0.992313407,0,832.7078694,78.77173207,884.2623926,3,14,6% -3/18/2018 23:00,53.77222252,234.0200737,571.2247707,819.258918,87.04535582,761.004759,672.2780082,88.72675078,84.42061718,4.306133608,141.1247977,0,141.1247977,2.624738641,138.5000591,0.938502329,4.084420801,1.312194137,-1.312194137,0.305755276,0.152383721,1.772175809,56.99926583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.14830832,1.901614211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283935341,54.78986239,82.43224367,56.6914766,672.2780082,0,0.820592847,34.85581586,-0.820592847,145.1441841,0.989068443,0,747.3612064,56.6914766,784.464644,3,15,5% -3/18/2018 0:00,64.05355677,246.8044008,394.0712509,732.9863457,73.36713777,600.5650697,526.4395463,74.12552341,71.15484787,2.970675545,97.75942707,0,97.75942707,2.2122899,95.54713717,1.117945463,4.307549402,2.051981642,-2.051981642,0.179244162,0.186177341,0.986413711,31.72645572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.39674627,1.602796501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714653376,30.49667601,69.11139965,32.09947251,526.4395463,0,0.718211941,44.09294836,-0.718211941,135.9070516,0.980382667,0,585.2236059,32.09947251,606.2320687,3,16,4% -3/18/2018 1:00,75.28065973,257.405301,188.7082958,540.8398668,51.28930507,357.7122175,306.5469114,51.16530613,49.74274328,1.422562844,47.30107289,0,47.30107289,1.546561785,45.7545111,1.313895375,4.492570014,3.774788562,-3.774788562,0,0.27179147,0.386640446,12.43568582,0.103439078,1,0.258966774,0,0.930583916,0.969345879,0.724496596,1,48.0184796,1.120478749,0.01686767,0.312029739,0.953279908,0.677776504,0.961238037,0.922476074,0.273074219,11.95365423,48.29155382,13.07413297,274.8379815,0,0.56679792,55.47276457,-0.56679792,124.5272354,0.961785138,0,312.6266399,13.07413297,321.1833984,3,17,3% -3/18/2018 2:00,86.82744253,266.9080375,11.3758336,71.3858868,7.425104265,34.3236364,27.03667058,7.286965815,7.201209976,0.085755839,2.98209685,0,2.98209685,0.223894289,2.758202561,1.515424753,4.658424054,17.26147024,-17.26147024,0,0.652708586,0.055973572,1.800302494,0.707750307,1,0.057867812,0,0.955733597,0.994495561,0.724496596,1,6.96401486,0.16221065,0.090580238,0.312029739,0.77543736,0.499933956,0.961238037,0.922476074,0.038897243,1.730519235,7.002912103,1.892729885,7.901458665,0,0.378739717,67.74436033,-0.378739717,112.2556397,0.917983215,0,14.25631853,1.892729885,15.49507238,3,18,9% -3/18/2018 3:00,98.87628478,276.176341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725716721,4.820186467,-5.746496243,5.746496243,0.487137576,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.158270829,80.89345681,-0.158270829,99.10654319,0.734085815,0,0,0,0,3,19,0% -3/18/2018 4:00,110.4798278,286.0271573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928236752,4.992115645,-2.165392641,2.165392641,0.90045764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.069655281,93.99418792,0.069655281,86.00581208,0,0,0,0,0,3,20,0% -3/18/2018 5:00,121.4690716,297.4207829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120035239,5.190971926,-1.105464421,1.105464421,0.719199239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.293177465,107.0482823,0.293177465,72.95171767,0,0.879454832,0,0,0,3,21,0% -3/18/2018 6:00,131.2263346,311.6268937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290331604,5.438915333,-0.542326299,0.542326299,0.622896949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497048384,119.804914,0.497048384,60.19508596,0,0.949406171,0,0,0,3,22,0% -3/18/2018 7:00,138.7220211,330.0892559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421156013,5.761144341,-0.151088525,0.151088525,0.555991349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667360759,131.8636922,0.667360759,48.13630776,0,0.975078004,0,0,0,3,23,0% -3/19/2018 8:00,142.4827018,353.0859505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486792274,6.162512378,0.173841028,-0.173841028,0.500425123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.792495124,142.4192999,0.792495124,37.5807001,0,0.986908129,0,0,0,3,0,0% -3/19/2018 9:00,141.3649887,17.46092295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4672845,0.304750596,0.486144613,-0.486144613,0.447018065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86391162,149.7586578,0.86391162,30.24134216,0,0.992123709,0,0,0,3,1,0% -3/19/2018 10:00,135.7444378,38.58368973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369187382,0.673412423,0.83150934,-0.83150934,0.387957218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876731945,151.2506182,0.876731945,28.74938184,0,0.992970026,0,0,0,3,2,0% -3/19/2018 11:00,127.0754837,54.98587216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217885589,0.959684511,1.27823493,-1.27823493,0.311562643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830071853,146.1061197,0.830071853,33.89388026,0,0.989764251,0,0,0,3,3,0% -3/19/2018 12:00,116.6636344,67.74947119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036164538,1.182451339,1.989890442,-1.989890442,0.189862382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727101568,136.6439555,0.727101568,43.35604453,0,0.981233816,0,0,0,3,4,0% -3/19/2018 13:00,105.3303089,78.30527778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838360692,1.366684919,3.609545382,-3.609545382,0,#DIV/0!,0,0,0.080134053,1,0.270264763,0,0.928906778,0.967668741,0.724496596,1,0,0,0.013205729,0.312029739,0.963233703,0.687730299,0.961238037,0.922476074,0,0,0,0,0,0,-0.574829963,125.0877253,0.574829963,54.91227471,0,0.963017756,0,0,0,3,5,0% -3/19/2018 14:00,93.57281793,87.77045196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.633153763,1.531883373,15.25162583,-15.25162583,0,#DIV/0!,0,0,0.675116659,1,0.065473065,0,0.954950831,0.993712794,0.724496596,1,0,0,0.087425874,0.312029739,0.782162214,0.50665881,0.961238037,0.922476074,0,0,0,0,0,0,-0.383627131,112.5585373,0.383627131,67.44146269,0,0.91966511,0,0,0,3,6,0% -3/19/2018 15:00,81.63241352,97.01644682,78.10440436,324.0053106,30.95406567,30.60947037,0,30.60947037,30.02068638,0.588783991,73.23657877,53.36588239,19.87069639,0.933379288,18.9373171,1.424754392,1.693256426,-6.056709253,6.056709253,0.434088027,0.396316519,0.38763671,12.46772908,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.85702564,0.676230117,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.280841477,11.98445543,29.13786712,12.66068554,0,53.36588239,-0.164706814,99.48020312,0.164706814,80.51979688,0,0.746430288,29.13786712,52.49459652,63.49453065,3,7,118% -3/19/2018 16:00,70.10251738,106.8571285,283.7707622,648.9515582,62.90773309,103.7018681,40.55185137,63.1500167,61.01083283,2.139183871,70.70040695,0,70.70040695,1.896900257,68.80350669,1.223519742,1.865008722,-2.210648409,2.210648409,0.908196832,0.221685041,1.986335379,63.88737376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64593318,1.374297779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43909322,61.41097373,60.0850264,62.78527151,40.55185137,0,0.062488256,86.41735248,-0.062488256,93.58264752,0,0,60.0850264,62.78527151,101.1767309,3,8,68% -3/19/2018 17:00,59.17181244,118.2380085,480.1908037,780.0869926,80.42322526,304.6821348,223.0640854,81.6180494,77.99816829,3.619881112,118.8528768,0,118.8528768,2.425056972,116.4278198,1.032742951,2.06364255,-1.116040081,1.116040081,0.721007784,0.167481811,2.779105463,89.38558479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.97480616,1.756945521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013452447,85.92082405,76.98825861,87.67776957,223.0640854,0,0.285947705,73.3844942,-0.285947705,106.6155058,0.875142853,0,272.2011986,87.67776957,329.5845453,3,9,21% -3/19/2018 18:00,49.49046807,132.3885084,639.3240844,842.9384693,91.77271329,506.7636059,412.9386836,93.82492238,89.00542738,4.819495,157.778812,0,157.778812,2.767285911,155.0115261,0.863771616,2.310615363,-0.542475289,0.542475289,0.622922428,0.143546467,3.263041888,104.9506438,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55540228,2.004889222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.36406274,100.8825508,87.91946502,102.88744,412.9386836,0,0.489879984,60.66730645,-0.489879984,119.3326936,0.947934185,0,479.3581593,102.88744,546.695931,3,10,14% -3/19/2018 19:00,42.07894058,150.6670711,747.4986332,874.0555916,98.75516006,678.542593,577.1303049,101.4122881,95.77732762,5.634960442,184.2175303,0,184.2175303,2.977832444,181.2396979,0.734416059,2.629636465,-0.146424469,0.146424469,0.555193749,0.132114168,3.459634432,111.2737358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.06481038,2.157429469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506493369,106.9605473,94.57130374,109.1179768,577.1303049,0,0.660290158,48.67799433,-0.660290158,131.3220057,0.974275715,0,656.8553443,109.1179768,728.2708778,3,11,11% -3/19/2018 20:00,38.36519502,173.2770571,796.4738635,886.0047018,101.7835934,800.7090711,695.9904722,104.7185989,98.71444251,6.004156415,196.1834603,0,196.1834603,3.069150882,193.1143095,0.669598971,3.024255165,0.181799256,-0.181799256,0.499064186,0.12779276,3.380821331,108.7388355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.88807693,2.223589366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449393546,104.5239048,97.33747047,106.7474941,695.9904722,0,0.785538125,38.22952433,-0.785538125,141.7704757,0.986349366,0,783.8272312,106.7474941,853.6913312,3,12,9% -3/19/2018 21:00,39.44197945,197.2064265,782.6555544,882.7492491,100.9362818,860.382999,756.5903303,103.7926686,97.89268047,5.899988164,192.8075017,0,192.8075017,3.043601311,189.7639004,0.688392405,3.441901448,0.497439111,-0.497439111,0.445086592,0.128966416,3.048239416,98.04185788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.098168,2.205078789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208439081,94.241563,96.30660708,96.44664179,756.5903303,0,0.857084083,31.00925641,-0.857084083,148.9907436,0.991662666,0,846.5889915,96.44664179,909.7113896,3,13,7% -3/19/2018 22:00,44.95723271,218.0716294,707.0695382,863.2594241,96.19748235,849.7158357,751.0888735,98.62696217,93.29677332,5.330188846,174.3379047,0,174.3379047,2.900709024,171.4371957,0.784651733,3.806067937,0.847443861,-0.847443861,0.385232254,0.13605095,2.499176251,80.3820991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.68040723,2.101553813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810644687,77.26633114,91.49105192,79.36788495,751.0888735,0,0.870061597,29.5342017,-0.870061597,150.4657983,0.992532804,0,836.9713979,79.36788495,888.9160912,3,14,6% -3/19/2018 23:00,53.51550877,234.4041306,575.3557316,820.6395451,87.39920904,764.9894777,675.8884028,89.10107495,84.76380042,4.337274536,142.137067,0,142.137067,2.635408621,139.5016584,0.934021829,4.091123859,1.302402835,-1.302402835,0.307429687,0.151904647,1.789708398,57.56317416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.47818911,1.909344575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.296637642,55.33191253,82.77482675,57.2412571,675.8884028,0,0.823611788,34.55200077,-0.823611788,145.4479992,0.989291787,0,751.4256724,57.2412571,788.8889304,3,15,5% -3/19/2018 0:00,63.83535089,247.1800873,397.9313326,735.1738299,73.75483705,604.5625343,530.0319032,74.53063106,71.53085659,2.999774472,98.70703914,0,98.70703914,2.223980464,96.48305867,1.114137052,4.31410637,2.032972836,-2.032972836,0.182494859,0.185345639,1.001972286,32.22687296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75818016,1.611266275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.72592551,30.9776961,69.48410567,32.58896237,530.0319032,0,0.720961331,43.86609313,-0.720961331,136.1339069,0.980648153,0,589.2589125,32.58896237,610.5877366,3,16,4% -3/19/2018 1:00,75.08605962,257.7687744,192.2072144,545.4771851,51.81889125,362.2519925,310.5466928,51.70529966,50.25636049,1.448939171,48.16539519,0,48.16539519,1.562530763,46.60286443,1.310498963,4.498913822,3.720138737,-3.720138737,0,0.269599096,0.390632691,12.56409012,0.095863351,1,0.262599728,0,0.930047555,0.968809518,0.724496596,1,48.5020952,1.132048218,0.015685751,0.312029739,0.956481088,0.680977684,0.961238037,0.922476074,0.27632902,12.07708132,48.77842422,13.20912954,280.7766463,0,0.569311974,55.29773849,-0.569311974,124.7022615,0.962174691,0,318.9346071,13.20912954,327.5797182,3,17,3% -3/19/2018 2:00,86.650166,267.2653444,12.81759888,79.03733206,8.199263395,38.15865341,30.11000359,8.048649826,7.952025351,0.096624475,3.355013288,0,3.355013288,0.247238043,3.107775245,1.512330694,4.664660236,16.31474993,-16.31474993,0,0.639687938,0.061809511,1.988006338,0.693235806,1,0.06121764,0,0.955390503,0.994152466,0.724496596,1,7.691845302,0.179123121,0.089186497,0.312029739,0.778398875,0.502895471,0.961238037,0.922476074,0.042888649,1.910947309,7.734733951,2.09007043,9.236670967,0,0.380959261,67.60688587,-0.380959261,112.3931141,0.91875237,0,16.2209473,2.09007043,17.58885659,3,18,8% -3/19/2018 3:00,98.68858044,276.5362161,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722440663,4.826467472,-5.854381534,5.854381534,0.468688105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160523989,80.76268826,-0.160523989,99.23731174,0.738520076,0,0,0,0,3,19,0% -3/19/2018 4:00,110.277469,286.3978832,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924704925,4.998586033,-2.178602459,2.178602459,0.902716652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067430359,93.86640875,0.067430359,86.13359125,0,0,0,0,0,3,20,0% -3/19/2018 5:00,121.2377542,297.8059871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115997988,5.197695007,-1.107367282,1.107367282,0.719524648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290903721,106.9120682,0.290903721,73.0879318,0,0.878121827,0,0,0,3,21,0% -3/19/2018 6:00,130.9496983,312.0141451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28550339,5.445674145,-0.540772601,0.540772601,0.622631251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494652084,119.646811,0.494652084,60.35318903,0,0.948918853,0,0,0,3,22,0% -3/19/2018 7:00,138.3868923,330.425057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415306913,5.767005177,-0.14774943,0.14774943,0.55542033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664776586,131.665188,0.664776586,48.33481201,0,0.974786761,0,0,0,3,23,0% -3/20/2018 8:00,142.0959094,353.2658207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.480041473,6.165651706,0.178663176,-0.178663176,0.499600487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78967069,142.1547476,0.78967069,37.84525238,0,0.986682467,0,0,0,3,0,0% -3/20/2018 9:00,140.9634786,17.42519904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460276826,0.304127096,0.492767868,-0.492767868,0.445885421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.860811083,149.4077736,0.860811083,30.59222642,0,0.991915246,0,0,0,3,1,0% -3/20/2018 10:00,135.3640619,38.39734404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362548568,0.670160078,0.840947269,-0.840947269,0.386343237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873338495,150.8489428,0.873338495,29.15105719,0,0.99274843,0,0,0,3,2,0% -3/20/2018 11:00,126.7262267,54.73660893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211789904,0.955334047,1.293043319,-1.293043319,0.309030259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82638888,145.7295561,0.82638888,34.27044389,0,0.989495798,0,0,0,3,3,0% -3/20/2018 12:00,116.3399075,67.48289185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030514437,1.177798652,2.017854427,-2.017854427,0.185080259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723152446,136.3153693,0.723152446,43.68463069,0,0.980858285,0,0,0,3,4,0% -3/20/2018 13:00,105.0226965,78.03690227,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832991844,1.362000883,3.689548678,-3.689548678,0,#DIV/0!,0,0,0.091566709,1,0.26467706,0,0.92973961,0.968501574,0.724496596,1,0,0,0.015011811,0.312029739,0.95831133,0.682807926,0.961238037,0.922476074,0,0,0,0,0,0,-0.570656445,124.7960144,0.570656445,55.20398563,0,0.962381608,0,0,0,3,5,0% -3/20/2018 14:00,93.27196401,87.50313738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627902872,1.527217853,16.68221282,-16.68221282,0,#DIV/0!,0,0,0.699037466,1,0.059872442,0,0.955528599,0.994290562,0.724496596,1,0,0,0.089745354,0.312029739,0.777209507,0.501706103,0.961238037,0.922476074,0,0,0,0,0,0,-0.379286487,112.289493,0.379286487,67.71050696,0,0.918173527,0,0,0,3,6,0% -3/20/2018 15:00,81.33270847,96.74920634,82.89668714,336.7272572,32.15307016,31.80844671,0,31.80844671,31.18353647,0.624910243,75.05380978,53.98501454,21.06879524,0.969533698,20.09926154,1.419523552,1.688592199,-5.858048413,5.858048413,0.468061032,0.387869181,0.421429322,13.55461564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.97480137,0.702423864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.305324109,13.02921213,30.28012548,13.731636,0,53.98501454,-0.160322675,99.22562591,0.160322675,80.77437409,0,0.738128956,30.28012548,53.5795384,65.34686178,3,7,116% -3/20/2018 16:00,69.7890229,106.5900767,289.4856712,653.9472255,63.56129476,107.6002015,43.77324905,63.82695247,61.6446872,2.182265269,72.10576008,0,72.10576008,1.916607553,70.18915253,1.218048231,1.860347788,-2.180985126,2.180985126,0.903124112,0.21956629,2.017274648,64.88248702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.25521811,1.388575648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.461508615,62.36751445,60.71672673,63.75609009,43.77324905,0,0.066936975,86.16192407,-0.066936975,93.83807593,0,0,60.71672673,63.75609009,102.4438126,3,8,69% -3/20/2018 17:00,58.8372968,117.9783471,485.9117586,782.6334249,80.92236305,309.3814334,227.2361701,82.14526331,78.48225523,3.663008086,120.2550394,0,120.2550394,2.440107818,117.8149316,1.026904552,2.059110603,-1.106955171,1.106955171,0.719454173,0.166537157,2.806506969,90.26691142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44012894,1.767849807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033304745,86.76798873,77.47343369,88.53583854,227.2361701,0,0.290348154,73.12119937,-0.290348154,106.8788006,0.877792947,0,276.939741,88.53583854,334.8846766,3,9,21% -3/20/2018 18:00,49.12690596,132.1625994,644.8690844,844.5487462,92.2083821,511.6265944,417.3373397,94.28925472,89.42795916,4.861295552,159.1363985,0,159.1363985,2.780422933,156.3559756,0.85742626,2.306672508,-0.53958975,0.53958975,0.622428971,0.142987754,3.288262977,105.7618407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96155591,2.01440695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.382335333,101.6623041,88.34389124,103.676711,417.3373397,0,0.494154235,60.3860049,-0.494154235,119.6139951,0.948817016,0,484.3206606,103.676711,552.1749945,3,10,14% -3/20/2018 19:00,41.6861944,150.5391035,752.7873134,875.2461845,99.15481939,683.3290642,581.4892997,101.8397645,96.16493574,5.674828747,185.5118832,0,185.5118832,2.989883647,182.5219996,0.727561345,2.627403008,-0.146381255,0.146381255,0.555186359,0.131716911,3.483072765,112.0275931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.43739405,2.166160524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523474362,107.6851837,94.96086841,109.8513442,581.4892997,0,0.664372276,48.36581387,-0.664372276,131.6341861,0.97474099,0,661.7623238,109.8513442,733.6578316,3,11,11% -3/20/2018 20:00,37.96494155,173.3366848,801.464566,887.0081787,102.1585649,805.3029862,700.1831005,105.1198857,99.07810727,6.041778438,197.4048207,0,197.4048207,3.080457658,194.3243631,0.66261323,3.025295865,0.179994141,-0.179994141,0.499372879,0.127464855,3.402640453,109.4406135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.23764533,2.231781087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465201425,105.1984804,97.70284676,107.4302615,700.1831005,0,0.789376149,37.87275015,-0.789376149,142.1272498,0.986658841,0,788.5446934,107.4302615,858.8556509,3,12,9% -3/20/2018 21:00,39.07522648,197.4663508,787.3333792,883.7084966,101.2936601,864.73214,760.5576059,104.1745341,98.23928247,5.935251584,193.9524708,0,193.9524708,3.054377585,190.8980932,0.681991358,3.446437983,0.493911691,-0.493911691,0.445689816,0.128654091,3.068549336,98.69509473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.43133503,2.212886163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223153549,94.8694791,96.65448857,97.08236527,760.5576059,0,0.860643084,30.61113481,-0.860643084,149.3888652,0.991903908,0,851.05455,97.08236527,914.5930164,3,13,7% -3/20/2018 22:00,44.64852852,218.4369188,711.4416639,864.3096883,96.54488948,853.8208808,754.8240282,98.99685263,93.63370485,5.363147777,175.4084528,0,175.4084528,2.911184631,172.4972682,0.779263829,3.81244344,0.8416743,-0.8416743,0.386218907,0.135703171,2.518056595,80.98935586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.00427863,2.109143355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824323431,77.85004943,91.82860206,79.95919279,754.8240282,0,0.873325891,29.15253972,-0.873325891,150.8474603,0.992747604,0,841.1783473,79.95919279,893.5100398,3,14,6% -3/20/2018 23:00,53.2605461,234.7912001,579.4451334,821.9901737,87.74942829,768.916975,679.4454135,89.47156144,85.10345926,4.368102175,143.1391502,0,143.1391502,2.645969024,140.4931812,0.929571891,4.097879496,1.292756142,-1.292756142,0.309079369,0.151436992,1.807128911,58.12347776,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.80468211,1.916995551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309258745,55.87049765,83.11394086,57.7874932,679.4454135,0,0.82658581,34.25040102,-0.82658581,145.749599,0.989510212,0,755.4321164,57.7874932,793.2528749,3,15,5% -3/20/2018 0:00,63.61867268,247.5575193,401.7584123,737.313374,74.13819637,608.5019014,533.5706206,74.93128082,71.90265621,3.028624616,99.64651863,0,99.64651863,2.235540161,97.41097847,1.110355304,4.320693799,2.014304828,-2.014304828,0.185687277,0.184534273,1.017484256,32.72579125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1155681,1.619641237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.73716388,31.45727534,69.85273198,33.07691658,533.5706206,0,0.723668713,43.64178716,-0.723668713,136.3582128,0.980907611,0,593.2362149,33.07691658,614.8843952,3,16,4% -3/20/2018 1:00,74.89258436,258.1331767,195.6893308,550.0089356,52.34079611,366.7273038,314.4895869,52.23771682,50.76252799,1.475188835,49.02541198,0,49.02541198,1.57826812,47.44714386,1.307122182,4.505273842,3.667000693,-3.667000693,0,0.267468829,0.39456703,12.690632,0.088373411,1,0.266228926,0,0.929508968,0.968270931,0.724496596,1,48.97799181,1.14344988,0.014509232,0.312029739,0.959678515,0.684175111,0.961238037,0.922476074,0.279559534,12.19871819,49.25755135,13.34216807,286.6970693,0,0.571789959,55.12486038,-0.571789959,124.8751396,0.962555303,0,325.2193357,13.34216807,333.9515178,3,17,3% -3/20/2018 2:00,86.47305695,267.6230202,14.3383484,86.91452546,8.991549262,42.13062317,33.30211377,8.828509403,8.720420877,0.108088527,3.747626959,0,3.747626959,0.271128386,3.476498574,1.509239558,4.670902856,15.46320606,-15.46320606,0,0.627097976,0.067782096,2.180105219,0.678891305,1,0.064579715,0,0.955043487,0.99380545,0.724496596,1,8.436922526,0.196431592,0.087794573,0.312029739,0.781372063,0.505868659,0.961238037,0.922476074,0.046966589,2.095600061,8.483889115,2.292031653,10.69359828,0,0.383159358,67.47048161,-0.383159358,112.5295184,0.919505993,0,18.31671682,2.292031653,19.8168057,3,18,8% -3/20/2018 3:00,98.50112004,276.8959747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719168862,4.832746444,-5.966571404,5.966571404,0.449502507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162758707,80.63294214,-0.162758707,99.36705786,0.742796773,0,0,0,0,3,19,0% -3/20/2018 4:00,110.074903,286.7679189,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921169481,5.005044374,-2.191992122,2.191992122,0.90500642,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065212773,93.73907004,0.065212773,86.26092996,0,0,0,0,0,3,20,0% -3/20/2018 5:00,121.0058404,298.18966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11195033,5.204391362,-1.109264057,1.109264057,0.719849016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288625803,106.7757027,0.288625803,73.2242973,0,0.876765315,0,0,0,3,21,0% -3/20/2018 6:00,130.6722748,312.3986537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280661437,5.452385086,-0.539183073,0.539183073,0.622359425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492240493,119.4879494,0.492240493,60.51205063,0,0.948423635,0,0,0,3,22,0% -3/20/2018 7:00,138.0512024,330.757167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409448018,5.772801589,-0.144362392,0.144362392,0.554841113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662167166,131.4653633,0.662167166,48.53463666,0,0.974490366,0,0,0,3,23,0% -3/21/2018 8:00,141.709094,353.4435166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.473290271,6.168753085,0.183546999,-0.183546999,0.498765304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786812896,141.8886612,0.786812896,38.11133879,0,0.98645249,0,0,0,3,0,0% -3/21/2018 9:00,140.5620118,17.39105761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45326991,0.303531216,0.499476928,-0.499476928,0.444738104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857671478,149.0561334,0.857671478,30.94386661,0,0.99170262,0,0,0,3,1,0% -3/21/2018 10:00,134.9832788,38.21434747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355902651,0.666966185,0.850520908,-0.850520908,0.384706048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869903068,150.4473774,0.869903068,29.55262264,0,0.992522332,0,0,0,3,2,0% -3/21/2018 11:00,126.3762404,54.49032113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205681492,0.951035514,1.308110645,-1.308110645,0.306453595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822664023,145.3523688,0.822664023,34.64763124,0,0.989221847,0,0,0,3,3,0% -3/21/2018 12:00,116.0154152,67.21841187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024850978,1.173182605,2.046490515,-2.046490515,0.1801832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719164526,135.9855452,0.719164526,44.01445481,0,0.98047488,0,0,0,3,4,0% -3/21/2018 13:00,104.7144651,77.7698485,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82761219,1.357339915,3.772896932,-3.772896932,0,#DIV/0!,0,0,0.103178976,1,0.259090881,0,0.930565639,0.969327602,0.724496596,1,0,0,0.016827224,0.312029739,0.953389273,0.677885869,0.961238037,0.922476074,0,0,0,0,0,0,-0.566450003,124.5030428,0.566450003,55.49695717,0,0.961730956,0,0,0,3,5,0% -3/21/2018 14:00,92.97072467,87.23650804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622645253,1.522564293,18.40411745,-18.40411745,0,#DIV/0!,0,0,0.723538162,1,0.054282289,0,0.956097889,0.994859852,0.724496596,1,0,0,0.092079749,0.312029739,0.772268484,0.49676508,0.961238037,0.922476074,0,0,0,0,0,0,-0.374921175,112.0194411,0.374921175,67.98055891,0,0.916638634,0,0,0,3,6,0% -3/21/2018 15:00,81.03269435,96.48207397,87.75231223,349.1537566,33.32942259,32.98593153,0,32.98593153,32.32441753,0.661513996,76.72193703,54.44036791,22.28156912,1.005005064,21.27656406,1.414287318,1.68392986,-5.672220819,5.672220819,0.499839422,0.379812472,0.456316752,14.67671532,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07145965,0.728122747,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330599933,14.10781702,31.40205958,14.83593977,0,54.44036791,-0.1559209,98.97020932,0.1559209,81.02979068,0,0.72932458,31.40205958,54.54063824,67.0978165,3,7,114% -3/21/2018 16:00,69.47563372,106.3225253,295.1949732,658.8249442,64.20719912,111.529558,47.03313841,64.49641957,62.27111517,2.225304399,73.50952286,0,73.50952286,1.936083953,71.57343891,1.212578558,1.855678136,-2.152139863,2.152139863,0.898191282,0.217507766,2.048026567,65.87157444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.8573645,1.402686233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.483788276,63.3182629,61.34115277,64.72094913,47.03313841,0,0.071389432,85.90620452,-0.071389432,94.09379548,0,0,61.34115277,64.72094913,103.6997196,3,8,69% -3/21/2018 17:00,58.50307353,117.7175082,491.6096702,785.1277927,81.41743643,314.07736,231.4089983,82.66836167,78.96240032,3.705961351,121.6514923,0,121.6514923,2.455036107,119.1964562,1.021071256,2.054558106,-1.098019942,1.098019942,0.717926159,0.165613985,2.833731963,91.14256081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.90166267,1.778665302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053029161,87.60969623,77.95469183,89.38836153,231.4089983,0,0.294740551,72.85801966,-0.294740551,107.1419803,0.880359278,0,281.6777504,89.38836153,340.1806453,3,9,21% -3/21/2018 18:00,48.76365062,131.9349825,650.3797541,846.1275141,92.64069661,516.467858,421.7177829,94.7500751,89.8472378,4.902837308,160.48556,0,160.48556,2.79345881,157.6921012,0.851086259,2.302699843,-0.536729772,0.536729772,0.621939886,0.142440929,3.313293917,106.5669217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.36458248,2.023851399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.400470164,102.4361786,88.76505264,104.46003,421.7177829,0,0.498409254,60.10518724,-0.498409254,119.8948128,0.949680835,0,489.262349,104.46003,557.6293495,3,10,14% -3/21/2018 19:00,41.29359671,150.410067,758.0335892,876.4131348,99.55119416,688.0803676,585.8166319,102.2637357,96.54935835,5.71437739,186.7958557,0,186.7958557,3.001835809,183.7940199,0.720709223,2.625150897,-0.146324741,0.146324741,0.555176694,0.13132821,3.50631078,112.7750075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80691568,2.174819825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540310224,108.4036269,95.34722591,110.5784467,585.8166319,0,0.668425208,48.05436235,-0.668425208,131.9456376,0.975197315,0,666.6340326,110.5784467,739.0054144,3,11,11% -3/21/2018 20:00,37.56491213,173.3983263,806.4078949,887.9909676,102.53018,809.8514999,704.3339398,105.5175601,99.43851675,6.07904334,198.6145936,0,198.6145936,3.091663222,195.5229304,0.6556314,3.026371711,0.178222072,-0.178222072,0.49967592,0.127144316,3.424259965,110.1359713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58408463,2.23989948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.480864688,105.8668848,98.06494932,108.1067843,704.3339398,0,0.793176919,37.51660139,-0.793176919,142.4833986,0.986962361,0,793.2160377,108.1067843,863.9697659,3,12,9% -3/21/2018 21:00,38.7094328,197.731156,791.9621401,884.6472379,101.6476072,869.0287431,764.4760412,104.5527019,98.58255677,5.970145138,195.0854403,0,195.0854403,3.065050396,192.0203899,0.675607054,3.451059706,0.490435599,-0.490435599,0.446284263,0.128349074,3.088673481,99.34235639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.76130334,2.220618578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.237733423,95.49165164,96.99903676,97.71227021,764.4760412,0,0.864159191,30.21316593,-0.864159191,149.7868341,0.99214029,0,855.4665181,97.71227021,919.4172447,3,13,7% -3/21/2018 22:00,44.34149005,218.8067033,715.7664149,865.3370215,96.88880209,857.8693693,758.5063725,99.3629968,93.96724722,5.395749576,176.467409,0,176.467409,2.921554865,173.5458541,0.773904997,3.818897398,0.835984357,-0.835984357,0.387191945,0.135363717,2.536778861,81.5915283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32489225,2.116656554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.837887649,78.42888048,92.1627799,80.54553704,758.5063725,0,0.87654446,28.77170768,-0.87654446,151.2282923,0.992957828,0,845.3276199,80.54553704,898.043063,3,14,6% -3/21/2018 23:00,53.00738984,235.1811482,583.4922422,823.3112062,88.09599938,772.7865996,682.9484086,89.83819095,85.43957996,4.39861099,144.130869,0,144.130869,2.656419421,141.4744495,0.925153481,4.104685375,1.283250692,-1.283250692,0.310704897,0.150980584,1.824434198,58.68007526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.12777411,1.924566828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321796366,56.40552035,83.44957048,58.33008717,682.9484086,0,0.829514288,33.95112413,-0.829514288,146.0488759,0.989723763,0,759.3798392,58.33008717,797.5557147,3,15,5% -3/21/2018 0:00,63.40355401,247.9365603,405.5519358,739.4058846,74.51724211,612.3829377,537.0554435,75.32749412,72.27027232,3.057221798,100.5777319,0,100.5777319,2.246969789,98.33076215,1.106600775,4.327309313,1.995968204,-1.995968204,0.188823024,0.183742785,1.032946405,33.2231071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.46893469,1.627921963,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748366154,31.93531425,70.21730084,33.56323621,537.0554435,0,0.726333743,43.42008713,-0.726333743,136.5799129,0.981161122,0,597.1552223,33.56323621,619.1216892,3,16,4% -3/21/2018 1:00,74.7002526,258.4983786,199.1539613,554.437634,52.85516949,371.1383941,318.3756963,52.7626978,51.26139112,1.501306683,49.88096202,0,49.88096202,1.593778375,48.28718364,1.30376536,4.511647818,3.615311024,-3.615311024,0,0.265398535,0.398444594,12.81534778,0.08096759,1,0.269854386,0,0.928968167,0.96773013,0.724496596,1,49.44631071,1.154687007,0.013338042,0.312029739,0.962872223,0.687368819,0.961238037,0.922476074,0.282766432,12.31859974,49.72907715,13.47328675,292.5975836,0,0.574231756,54.95415065,-0.574231756,125.0458494,0.962927142,0,331.4792322,13.47328675,340.2972289,3,17,3% -3/21/2018 2:00,86.29617325,267.9809408,15.93451841,94.9832365,9.79870027,46.22412878,36.60077435,9.623354434,9.503233303,0.120121131,4.158975437,0,4.158975437,0.295466966,3.863508471,1.506152355,4.677149749,14.69331087,-14.69331087,0,0.614935451,0.073866742,2.375808326,0.664716485,1,0.067953391,0,0.954692592,0.993454555,0.724496596,1,9.196172801,0.214064811,0.086404729,0.312029739,0.784356291,0.508852887,0.961238037,0.922476074,0.051114643,2.283717331,9.247287445,2.497782142,12.27163627,0,0.385339305,67.33519365,-0.385339305,112.6648063,0.920244225,0,20.54018986,2.497782142,22.17493832,3,18,8% -3/21/2018 3:00,98.31391607,277.2554936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715901536,4.839021233,-6.083346011,6.083346011,0.429532873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164975139,80.50420978,-0.164975139,99.49579022,0.746924031,0,0,0,0,3,19,0% -3/21/2018 4:00,109.8721497,287.1371381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917630769,5.011488464,-2.205569815,2.205569815,0.907328342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063002355,93.61216138,0.063002355,86.38783862,0,0,0,0,0,3,20,0% -3/21/2018 5:00,120.773366,298.5716728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107892886,5.211058743,-1.111157015,1.111157015,0.72017273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286343619,106.6391799,0.286343619,73.36082008,0,0.87538462,0,0,0,3,21,0% -3/21/2018 6:00,130.3941238,312.7803024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275806786,5.459046112,-0.537559185,0.537559185,0.622081724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489813676,119.3283358,0.489813676,60.67166424,0,0.947920368,0,0,0,3,22,0% -3/21/2018 7:00,137.7150373,331.0855096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40358083,5.778532248,-0.140928646,0.140928646,0.554253907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659532784,131.26425,0.659532784,48.73575,0,0.974188757,0,0,0,3,23,0% -3/22/2018 8:00,141.3223584,353.6189723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46654046,6.171815364,0.188491378,-0.188491378,0.497919765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783922306,141.6211143,0.783922306,38.37888568,0,0.986218169,0,0,0,3,0,0% -3/22/2018 9:00,140.1607107,17.35837642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446265884,0.302960821,0.506270846,-0.506270846,0.443576276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854493684,148.7038441,0.854493684,31.29615589,0,0.991485817,0,0,0,3,1,0% -3/22/2018 10:00,134.6022308,38.03459754,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349252108,0.663828957,0.860229858,-0.860229858,0.38304572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866426869,150.0460366,0.866426869,29.95396343,0,0.992291725,0,0,0,3,2,0% -3/22/2018 11:00,126.0256714,54.24696572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199562908,0.946788161,1.323438828,-1.323438828,0.303832321,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818898802,144.9747111,0.818898802,35.02528895,0,0.988942394,0,0,0,3,3,0% -3/22/2018 12:00,115.6902996,66.95602697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019176641,1.168603125,2.075814143,-2.075814143,0.175168564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715139616,135.6546423,0.715139616,44.34535765,0,0.980083582,0,0,0,3,4,0% -3/22/2018 13:00,104.4057514,77.50413031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822224119,1.352702258,3.85977761,-3.85977761,0,#DIV/0!,0,0,0.114971531,1,0.25350826,0,0.931384546,0.970146509,0.724496596,1,0,0,0.018651477,0.312029739,0.948469269,0.672965865,0.961238037,0.922476074,0,0,0,0,0,0,-0.562212678,124.2089577,0.562212678,55.7910423,0,0.961065684,0,0,0,3,5,0% -3/22/2018 14:00,92.66923337,86.97058443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617383238,1.517923051,20.51569146,-20.51569146,0,#DIV/0!,0,0,0.74863232,1,0.04870463,0,0.956658522,0.995420486,0.724496596,1,0,0,0.094428456,0.312029739,0.767341267,0.491837863,0.961238037,0.922476074,0,0,0,0,0,0,-0.370533404,111.7485174,0.370533404,68.25148258,0,0.915059399,0,0,0,3,6,0% -3/22/2018 15:00,80.73251747,96.21506976,92.66455784,361.2788338,34.48287121,34.14163,0,34.14163,33.44308542,0.698544579,78.24257191,54.73519124,23.50738068,1.039785795,22.46759488,1.409048243,1.679269757,-5.498085081,5.498085081,0.529618387,0.372125784,0.492236083,15.83200447,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.14676577,0.753321269,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.356623366,15.2183249,32.50338914,15.97164617,0,54.73519124,-0.151504008,98.71409607,0.151504008,81.28590393,0,0.719975727,32.50338914,55.37965528,68.74826593,3,7,112% -3/22/2018 16:00,69.16248447,106.0544867,300.8956671,663.5863101,64.84542069,115.4869587,50.32858801,65.15837064,62.890092,2.268278637,74.91096682,0,74.91096682,1.955328688,72.95563813,1.207113073,1.85099998,-2.124089182,2.124089182,0.893394333,0.215507991,2.07857956,66.85426371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.45234858,1.416628978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505923815,64.2628612,61.95827239,65.67949018,50.32858801,0,0.075843319,85.65032107,-0.075843319,94.34967893,0,0,61.95827239,65.67949018,104.9441851,3,8,69% -3/22/2018 17:00,58.16927966,117.4554841,497.2819512,787.5703992,81.90833833,318.7673898,235.5801687,83.18722112,79.43849972,3.748721401,123.041605,0,123.041605,2.46983861,120.5717664,1.015245454,2.049984922,-1.089234545,1.089234545,0.716423767,0.164712068,2.86076999,92.01219672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.35930752,1.789389665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072618119,88.44562334,78.43192564,90.235013,235.5801687,0,0.29912268,72.59508311,-0.29912268,107.4049169,0.882844504,0,286.4125828,90.235013,345.4695941,3,9,21% -3/22/2018 18:00,48.40083974,131.7056111,655.8538079,847.6748445,93.06954929,521.285078,426.0778159,95.20726203,90.26315899,4.944103037,161.8257392,0,161.8257392,2.806390301,159.0193489,0.844754014,2.298696557,-0.533897039,0.533897039,0.621455461,0.141905937,3.338125761,107.3655992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76438175,2.03322022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418460751,103.2038978,89.1828425,105.237118,426.0778159,0,0.502642987,59.82498679,-0.502642987,120.1750132,0.950525818,0,494.180807,105.237118,563.056396,3,10,14% -3/22/2018 19:00,40.90127673,150.279878,763.2355028,877.5564869,99.94419114,692.7944412,590.1103445,102.6840966,96.93050502,5.753591612,188.0689702,0,188.0689702,3.013686118,185.0552841,0.713861947,2.622878671,-0.146256521,0.146256521,0.555165028,0.130948037,3.529341092,113.5157415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.17328835,2.183405333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556995607,109.1156485,95.73028396,111.2990539,590.1103445,0,0.672447134,47.74378211,-0.672447134,132.2562179,0.975644712,0,671.4683214,111.2990539,744.3113262,3,11,11% -3/22/2018 20:00,37.16522162,173.4619281,811.3022407,888.9531388,102.8983635,814.3528731,708.4413359,105.9115372,99.79559819,6.115938986,199.8123865,0,199.8123865,3.102765314,196.7096212,0.648655485,3.027481773,0.176481585,-0.176481585,0.499973561,0.12683111,3.445673967,110.8247192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.92732489,2.247942908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49637906,106.5289355,98.42370395,108.7768784,708.4413359,0,0.796938899,37.16122496,-0.796938899,142.838775,0.987259933,0,797.8394498,108.7768784,869.0317411,3,12,9% -3/22/2018 21:00,38.34470416,198.0008034,796.5405758,885.5655973,101.9980678,873.2714394,768.3443304,104.927109,98.9224497,6.004659321,196.2061027,0,196.2061027,3.075618076,193.1304846,0.669241338,3.455765941,0.487009322,-0.487009322,0.44687019,0.128051314,3.108607265,99.9834954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.08802135,2.228274826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252175381,96.10793883,97.34019673,98.33621366,768.3443304,0,0.867631187,29.81547583,-0.867631187,150.1845242,0.992371827,0,859.8234637,98.33621366,924.1825489,3,13,7% -3/22/2018 22:00,44.03620028,219.180879,720.0428532,866.3416435,97.22918564,861.8603252,762.134971,99.72535413,94.29736696,5.427987175,177.5145448,0,177.5145448,2.931818685,174.5827261,0.768576685,3.825427996,0.830372101,-0.830372101,0.388151697,0.135032499,2.555339506,82.18850242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.64221589,2.124092657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851334773,79.00271472,92.49355067,81.12680738,762.134971,0,0.879716422,28.39182549,-0.879716422,151.6081745,0.993163503,0,849.4181881,81.12680738,902.514061,3,14,6% -3/22/2018 23:00,52.75609205,235.573836,587.4963909,824.6030569,88.43891205,776.5977748,686.3968263,90.2009485,85.77215255,4.428795954,145.1120613,0,145.1120613,2.666759503,142.4453018,0.920767507,4.111539069,1.273883137,-1.273883137,0.312306843,0.150535243,1.841621348,59.2328731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.44745553,1.932058182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334248398,56.93689065,83.78170393,58.86894884,686.3968263,0,0.832396655,33.65427465,-0.832396655,146.3457253,0.989932483,0,763.2682187,58.86894884,801.7967683,3,15,5% -3/22/2018 0:00,63.19002358,248.317071,409.3114129,741.4522757,74.89200417,616.2054852,540.486189,75.71929624,72.63373392,3.085562325,101.5005612,0,101.5005612,2.258270248,99.24229091,1.102873966,4.333950477,1.977953749,-1.977953749,0.191903677,0.182970721,1.048355727,33.71872389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8183078,1.636109107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.759530156,32.41171995,70.57783796,34.04782906,540.486189,0,0.72895614,43.20104516,-0.72895614,136.7989548,0.981408768,0,601.0157226,34.04782906,623.2993458,3,16,4% -3/22/2018 1:00,74.5090803,258.8642487,202.6004903,558.7657915,53.36216263,375.4855857,322.2052011,53.28038462,51.75309655,1.527288075,50.73190059,0,50.73190059,1.609066089,49.1228345,1.300428774,4.518033455,3.565009457,-3.565009457,0,0.263386148,0.402266522,12.93827414,0.073644205,1,0.273476154,0,0.928425161,0.967187124,0.724496596,1,49.90719454,1.165762904,0.012172106,0.312029739,0.966062271,0.690558866,0.961238037,0.922476074,0.285950391,12.43676123,50.19314494,13.60252414,298.4766553,0,0.576637307,54.7856254,-0.576637307,125.2143746,0.963290383,0,337.7128366,13.60252414,346.6154165,3,17,3% -3/22/2018 2:00,86.1195661,268.3389806,17.60245909,103.2109406,10.61770155,50.42432139,39.99408794,10.43023345,10.29753868,0.132694772,4.588082878,0,4.588082878,0.320162877,4.267920001,1.503069979,4.683398723,13.9939613,-13.9939613,0,0.603194218,0.080040719,2.574384669,0.650710497,1,0.071338131,0,0.95433785,0.993099813,0.724496596,1,9.96675081,0.231956914,0.08501718,0.312029739,0.787351019,0.511847615,0.961238037,0.922476074,0.055317788,2.474596465,10.0220686,2.70655338,13.96951508,0,0.387498532,67.20105998,-0.387498532,112.79894,0.920967253,0,22.88753453,2.70655338,24.65891958,3,18,8% -3/22/2018 3:00,98.12697956,277.6146484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712638878,4.845289666,-6.205011361,6.205011361,0.408726873,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16717349,80.37647972,-0.16717349,99.62352028,0.750909517,0,0,0,0,3,19,0% -3/22/2018 4:00,109.6692284,287.5054135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.914089123,5.017916083,-2.219344296,2.219344296,0.909683917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.060798905,93.48567036,0.060798905,86.51432964,0,0,0,0,0,3,20,0% -3/22/2018 5:00,120.5403662,298.9518963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103826273,5.217694896,-1.113048604,1.113048604,0.720496211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28405706,106.5024928,0.28405706,73.49750725,0,0.873979027,0,0,0,3,21,0% -3/22/2018 6:00,130.1153052,313.1589745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270940483,5.465655188,-0.535902519,0.535902519,0.621798418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487371691,119.1679763,0.487371691,60.83202367,0,0.947408896,0,0,0,3,22,0% -3/22/2018 7:00,137.3784831,331.4100087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397706851,5.784195827,-0.137449526,0.137449526,0.553658943,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656873743,131.0618802,0.656873743,48.9381198,0,0.973881871,0,0,0,3,23,0% -3/23/2018 8:00,140.9358055,353.7921209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.459793839,6.174837377,0.1934951,-0.1934951,0.497064079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780999515,141.3521814,0.780999515,38.64781863,0,0.985979474,0,0,0,3,0,0% -3/23/2018 9:00,139.7596978,17.32703328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.439266888,0.30241378,0.513148563,-0.513148563,0.442400117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.85127862,148.3510127,0.85127862,31.64898735,0,0.991264823,0,0,0,3,1,0% -3/23/2018 10:00,134.2210604,37.85798979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34259943,0.66074657,0.870073577,-0.870073577,0.381362345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862911155,149.6450356,0.862911155,30.35496445,0,0.992056607,0,0,0,3,2,0% -3/23/2018 11:00,125.6746673,54.00649618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193436731,0.942591176,1.339029618,-1.339029618,0.301166139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815094799,144.5967364,0.815094799,35.40326357,0,0.988657442,0,0,0,3,3,0% -3/23/2018 12:00,115.3647048,66.69572956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013493939,1.164060078,2.105840905,-2.105840905,0.170033685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711079585,135.3228214,0.711079585,44.67717863,0,0.979684383,0,0,0,3,4,0% -3/23/2018 13:00,104.0966943,77.23975883,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816830057,1.348088105,3.950391596,-3.950391596,0,#DIV/0!,0,0,0.126944885,1,0.24793126,0,0.93219602,0.970957983,0.724496596,1,0,0,0.020484055,0.312029739,0.94355309,0.668049686,0.961238037,0.922476074,0,0,0,0,0,0,-0.557946574,123.9139082,0.557946574,56.08609175,0,0.960385685,0,0,0,3,5,0% -3/23/2018 14:00,92.36762567,86.70538494,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61211919,1.513294446,23.16514815,-23.16514815,0,#DIV/0!,0,0,0.774333605,1,0.043141512,0,0.95721033,0.995972293,0.724496596,1,0,0,0.096790838,0.312029739,0.76243001,0.486926606,0.961238037,0.922476074,0,0,0,0,0,0,-0.366125439,111.4768606,0.366125439,68.52313945,0,0.913434783,0,0,0,3,6,0% -3/23/2018 15:00,80.43232491,95.9482122,97.62692045,373.0985907,35.61329151,35.27537233,0,35.27537233,34.53941937,0.735952964,79.61795559,54.8733063,24.74464929,1.073872138,23.67077715,1.403808895,1.674612214,-5.33463152,5.33463152,0.557570592,0.364789664,0.529123883,17.01844294,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.20060367,0.778016708,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.383348452,16.35877468,33.58395212,17.13679139,0,54.8733063,-0.147074547,98.45743014,0.147074547,81.54256986,0,0.710036349,33.58395212,56.09883347,70.29951665,3,7,109% -3/23/2018 16:00,68.84971174,105.7859718,306.5847448,668.2329312,65.47593307,119.4693825,53.65662512,65.81275741,63.50159211,2.311165308,76.30936185,0,76.30936185,1.974340962,74.33502089,1.201654159,1.846313511,-2.096810712,2.096810712,0.88872944,0.213565529,2.108922156,67.8301859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.04014573,1.430403306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.527906923,65.20095473,62.56805266,66.63135804,53.65662512,0,0.08029629,85.39440332,-0.08029629,94.60559668,0,0,62.56805266,66.63135804,106.1769439,3,8,70% -3/23/2018 17:00,57.83605407,117.1922653,502.9260185,789.9615628,82.3949627,323.4489725,239.7472532,83.70171933,79.91045057,3.791268765,124.424748,0,124.424748,2.48451213,121.9402359,1.00942957,2.045390887,-1.080599162,1.080599162,0.71494703,0.163831179,2.887610733,92.87548725,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.81296463,1.800020581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092064146,89.27545104,78.90502877,91.07547162,239.7472532,0,0.303492302,72.33251984,-0.303492302,107.6674802,0.885251175,0,291.1415665,91.07547162,350.7486411,3,9,20% -3/23/2018 18:00,48.03861274,131.4744358,661.2889837,849.1908221,93.49483452,526.0759321,430.4152361,95.66069598,90.6756203,4.985075689,163.1563844,0,163.1563844,2.81921422,160.3371702,0.83843196,2.294661788,-0.531093254,0.531093254,0.620975985,0.141382719,3.36274976,108.1575916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16085524,2.042511105,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436300754,103.9651911,89.597156,106.0077022,430.4152361,0,0.506853377,59.54553886,-0.506853377,120.4544611,0.951352142,0,499.0736128,106.0077022,568.4535337,3,10,14% -3/23/2018 19:00,40.50936481,150.148447,768.3911376,878.6762975,100.3337197,697.4692416,594.3684967,103.1007449,97.30828789,5.792456965,189.3307593,0,189.3307593,3.025431842,186.3053274,0.707021794,2.620584767,-0.14617822,0.14617822,0.555151638,0.130576363,3.55215657,114.2495657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.53642762,2.191915071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.573525343,109.8210283,96.10995296,112.0129433,594.3684967,0,0.676436247,47.43421744,-0.676436247,132.5657826,0.976083204,0,676.2630597,112.0129433,749.5732908,3,11,11% -3/23/2018 20:00,36.76598475,173.5274294,816.1460517,889.8947742,103.2630439,818.8054073,712.5036715,106.3017358,100.1492822,6.152453679,200.997821,0,200.997821,3.113761774,197.8840592,0.641687487,3.028624985,0.174771178,-0.174771178,0.500266058,0.126525202,3.46687686,111.5066771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.26729937,2.255909806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511740483,107.1844594,98.77903985,109.4403692,712.5036715,0,0.800660586,36.80676993,-0.800660586,143.1932301,0.987551566,0,802.4131562,109.4403692,874.039689,3,12,9% -3/23/2018 21:00,37.98114443,198.2752458,801.067496,886.4637117,102.3449907,877.4589196,772.1612228,105.2976967,99.25891157,6.038785157,197.3141679,0,197.3141679,3.086079081,194.2280888,0.662896024,3.460555864,0.483631302,-0.483631302,0.447447866,0.127760758,3.128346427,100.6183747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4114413,2.235853789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266476337,96.71820898,97.67791763,98.95406277,772.1612228,0,0.871057904,29.41819154,-0.871057904,150.5818085,0.992598535,0,864.124016,98.95406277,928.887471,3,13,7% -3/23/2018 22:00,43.7327386,219.5593333,724.2701206,867.3237888,97.56601025,865.7928485,765.7089593,100.0838892,94.62403506,5.459854102,178.5496512,0,178.5496512,2.941975189,175.6076761,0.763280279,3.83203327,0.824835555,-0.824835555,0.389098502,0.134709423,2.573735316,82.78017493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.9562217,2.13145101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864662475,79.57145284,92.82088417,81.70290385,765.7089593,0,0.882840952,28.01301202,-0.882840952,151.986988,0.993364657,0,853.449102,81.70290385,906.9220185,3,14,6% -3/23/2018 23:00,52.50670046,235.9691183,591.4569965,825.8661567,88.77816104,780.3500118,689.7901872,90.5598246,86.10117192,4.458652672,146.0825856,0,146.0825856,2.676989112,143.4055964,0.916414802,4.118438048,1.264650091,-1.264650091,0.313885787,0.150100788,1.858687772,59.78178794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.76372147,1.939469499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346612964,57.46452848,84.11033443,59.40399798,689.7901872,0,0.835232418,33.35995307,-0.835232418,146.6400469,0.990136423,0,767.0967231,59.40399798,805.9754517,3,15,5% -3/23/2018 0:00,62.97810589,248.698908,413.0364369,743.4534792,75.26251743,619.9694808,543.8627629,76.10671796,72.99307484,3.113643128,102.4149087,0,102.4149087,2.26944259,100.1454661,1.099175304,4.340614791,1.960252359,-1.960252359,0.194930793,0.182217622,1.063709511,34.21255435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.16371996,1.644203431,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.77065392,32.88640858,70.93437388,34.53061201,543.8627629,0,0.731535702,42.98470766,-0.731535702,137.0152923,0.981650636,0,604.8176009,34.53061201,627.4171959,3,16,4% -3/23/2018 1:00,74.31907964,259.2306529,206.0283891,562.9959366,53.86193058,379.7693044,325.9783807,53.79092367,52.23779465,1.553129024,51.57810419,0,51.57810419,1.624135936,49.95396826,1.297112637,4.524428416,3.516038424,-3.516038424,0,0.261429654,0.406033984,13.05944866,0.066401531,1,0.277094319,0,0.927879953,0.966641916,0.724496596,1,50.36078946,1.176680957,0.011011334,0.312029739,0.969248755,0.693745351,0.961238037,0.922476074,0.289112113,12.55323879,50.64990157,13.72991975,304.3329171,0,0.579006631,54.61929533,-0.579006631,125.3807047,0.963645203,0,343.9188573,13.72991975,352.9048152,3,17,3% -3/23/2018 2:00,85.94327945,268.6970122,19.33850372,111.5671434,11.44579904,54.71709126,43.47064348,11.24644778,11.10066597,0.14578181,5.033977192,0,5.033977192,0.345133072,4.688844121,1.499993196,4.689647553,13.35595782,-13.35595782,0,0.591865803,0.086283268,2.775166492,0.636871965,1,0.07473351,0,0.953979285,0.992741248,0.724496596,1,10.74605342,0.250047735,0.083632089,0.312029739,0.790355812,0.514852408,0.961238037,0.922476074,0.059562444,2.667595591,10.80561586,2.917643326,15.78540937,0,0.38963661,67.06810992,-0.38963661,112.9318901,0.921675303,0,25.35463782,2.917643326,27.26417702,3,18,8% -3/23/2018 3:00,97.94031899,277.973313,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709381037,4.851549545,-6.331903172,6.331903172,0.387027095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.169354033,80.24973669,-0.169354033,99.75026331,0.7547605,0,0,0,0,3,19,0% -3/23/2018 4:00,109.4661562,287.8726169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910544845,5.024324991,-2.233325074,2.233325074,0.912074771,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058602165,93.35958151,0.058602165,86.64041849,0,0,0,0,0,3,20,0% -3/23/2018 5:00,120.3068752,299.3302006,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099751085,5.224297551,-1.114941515,1.114941515,0.720819918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281765973,106.3656318,0.281765973,73.63436822,0,0.872547771,0,0,0,3,21,0% -3/23/2018 6:00,129.8358782,313.5345532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.266063561,5.472210272,-0.534214805,0.534214805,0.621509802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484914577,119.0068759,0.484914577,60.99312411,0,0.946889056,0,0,0,3,22,0% -3/23/2018 7:00,137.0416255,331.7305874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391827577,5.789790979,-0.133926484,0.133926484,0.553056467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654190339,130.8582856,0.654190339,49.14171438,0,0.973569645,0,0,0,3,23,0% -3/24/2018 8:00,140.549538,353.9628934,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4530522,6.17781792,0.198556832,-0.198556832,0.496198471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778045134,141.0819365,0.778045134,38.91806346,0,0.985736376,0,0,0,3,0,0% -3/24/2018 9:00,139.3590956,17.29690438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432275061,0.301887932,0.520108888,-0.520108888,0.441209831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848027242,147.9977452,0.848027242,32.00225476,0,0.99103963,0,0,0,3,1,0% -3/24/2018 10:00,133.8399111,37.68441648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.335947119,0.657717144,0.880051355,-0.880051355,0.379656044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859357233,149.2444894,0.859357233,30.75551055,0,0.991816979,0,0,0,3,2,0% -3/24/2018 11:00,125.3233774,53.7688614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187305566,0.938443666,1.354884551,-1.354884551,0.298454785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811253656,144.2185985,0.811253656,35.78140153,0,0.988366996,0,0,0,3,3,0% -3/24/2018 12:00,115.0387767,66.43750766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007805421,1.159553256,2.136586482,-2.136586482,0.164775882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706986374,134.9902444,0.706986374,45.00975555,0,0.979277279,0,0,0,3,4,0% -3/24/2018 13:00,103.7874353,76.97674158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811432468,1.343497588,4.044954208,-4.044954208,0,#DIV/0!,0,0,0.13909935,1,0.242361982,0,0.932999754,0.971761717,0.724496596,1,0,0,0.022324419,0.312029739,0.938642546,0.663139142,0.961238037,0.922476074,0,0,0,0,0,0,-0.553653866,123.6180464,0.553653866,56.38195361,0,0.959690868,0,0,0,3,5,0% -3/24/2018 14:00,92.06603958,86.440925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60685552,1.50867875,26.58673811,-26.58673811,0,#DIV/0!,0,0,0.800655695,1,0.037595015,0,0.95775315,0.996515113,0.724496596,1,0,0,0.099166216,0.312029739,0.75753691,0.482033506,0.961238037,0.922476074,0,0,0,0,0,0,-0.361699616,111.204612,0.361699616,68.79538801,0,0.911763746,0,0,0,3,6,0% -3/24/2018 15:00,80.13226498,95.68151723,102.633095,384.6108889,36.72066225,36.38709042,0,36.38709042,35.61339879,0.773691622,80.85086126,54.85901569,25.99184557,1.107263452,24.88458212,1.398571861,1.669957509,-5.180964166,5.180964166,0.583849257,0.357785783,0.566916406,18.23398037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.23295354,0.802208601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.410729006,17.5271955,34.64368255,18.3294041,0,54.85901569,-0.142635108,98.20035742,0.142635108,81.79964258,0,0.699455168,34.64368255,56.70082613,71.75323924,3,7,107% -3/24/2018 16:00,68.53745431,105.5169893,312.2591862,672.7664176,66.09870803,123.4737607,57.01423092,66.45952975,64.10558811,2.353941644,77.70397483,0,77.70397483,1.993119925,75.71085491,1.196204239,1.841618879,-2.070283174,2.070283174,0.884192964,0.211678986,2.139042967,68.79897472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.62072966,1.444008601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549729348,66.13219139,63.17045901,67.5762,57.01423092,0,0.084745953,85.13858369,-0.084745953,94.86141631,0,0,63.17045901,67.5762,107.3977304,3,8,70% -3/24/2018 17:00,57.50353774,116.9278399,508.5392906,792.3016138,82.87720414,328.1195255,243.9077909,84.21173463,80.37815065,3.833583981,125.8002922,0,125.8002922,2.499053489,123.3012387,1.003626065,2.040775793,-1.072114039,1.072114039,0.713495988,0.162971093,2.914244003,93.7321048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.26253574,1.810555746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.11135986,90.09886441,79.3738956,91.90942015,243.9077909,0,0.307847146,72.07046267,-0.307847146,107.9295373,0.887581733,0,295.8619953,91.90942015,356.0148726,3,9,20% -3/24/2018 18:00,47.67711088,131.2414032,666.6830423,850.6755435,93.91644839,530.8380896,434.7278302,96.11025934,91.08452096,5.025738381,164.4769496,0,164.4769496,2.831927434,161.6450222,0.832122563,2.2905946,-0.528320163,0.528320163,0.620501759,0.140871212,3.387157374,108.9426244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55390611,2.051721786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.453983987,104.7197944,90.0078901,106.7715162,434.7278302,0,0.511038355,59.26698119,-0.511038355,120.7330188,0.952159986,0,503.9383347,106.7715162,573.8181566,3,10,14% -3/24/2018 19:00,40.11799241,150.0156765,773.4986217,879.7726346,100.7196922,702.102742,598.5891609,103.5135812,97.68262182,5.830959338,190.5807664,0,190.5807664,3.037070335,187.5436961,0.700191057,2.618267484,-0.146091518,0.146091518,0.555136811,0.13021315,3.574750368,114.97626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.89625163,2.200347119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.589894473,110.5195544,96.48614611,112.7199015,598.5891609,0,0.680390748,47.12581499,-0.680390748,132.874185,0.976512816,0,681.0161333,112.7199015,754.7890544,3,11,11% -3/24/2018 20:00,36.36731551,173.5947595,820.9378403,890.815968,103.6241534,823.2074449,716.5193658,106.6880791,100.4995029,6.188576206,202.1705344,0,202.1705344,3.124650558,199.0458839,0.634729396,3.029800117,0.173089291,-0.173089291,0.500553678,0.126226553,3.487863386,112.1816759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.60394485,2.263798693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.52694515,107.833294,99.13089,110.0970927,716.5193658,0,0.804340505,36.45338772,-0.804340505,143.5466123,0.987837272,0,806.9354257,110.0970927,878.9917709,3,12,9% -3/24/2018 21:00,37.61885473,198.554426,805.5417907,887.3417319,102.6883292,881.5899387,775.9255272,105.6644115,99.59189722,6.072514281,198.4093654,0,198.4093654,3.096432006,195.3129334,0.656572876,3.465428477,0.480299913,-0.480299913,0.448017567,0.127477346,3.147887092,101.2468697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.73151977,2.243354447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280633483,97.32234225,98.01215325,99.56569669,775.9255272,0,0.874438223,29.02144093,-0.874438223,150.9785591,0.992820432,0,868.3668702,99.56569669,933.5306274,3,13,8% -3/24/2018 22:00,43.43117978,219.9419445,728.4474514,868.2837086,97.89925145,869.6661239,769.2275515,100.4385724,94.94722781,5.491344586,179.5725419,0,179.5725419,2.952023641,176.6205183,0.758017085,3.838711094,0.819372664,-0.819372664,0.390032712,0.134394391,2.591963483,83.36645543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26688686,2.138731079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87786872,80.13500795,93.14475558,82.27373903,769.2275515,0,0.885917292,27.63538425,-0.885917292,152.3646157,0.993561323,0,857.4194993,82.27373903,911.266016,3,14,6% -3/24/2018 23:00,52.25925737,236.3668439,595.3735749,827.1009583,89.11374712,784.0429226,693.1281063,90.91481634,86.42663885,4.488177494,147.0423245,0,147.0423245,2.68710827,144.3552162,0.912096106,4.125379669,1.255548094,-1.255548094,0.31544232,0.149677028,1.875631272,60.32674916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.07657266,1.946800795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.358888472,57.98836593,84.43546113,59.93516672,693.1281063,0,0.838021162,33.0682546,-0.838021162,146.9317454,0.990335636,0,770.8649248,59.93516672,810.0912928,3,15,5% -3/24/2018 0:00,62.76782013,249.0819242,416.7267018,745.4104533,75.62882321,623.6749733,547.1851763,76.48979705,73.34833515,3.141461904,103.3207016,0,103.3207016,2.28048806,101.0402135,1.095505126,4.347299685,1.942854964,-1.942854964,0.197905923,0.181483027,1.079005409,34.70452301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.50520968,1.652205837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781735746,33.35930757,71.28694543,35.0115134,547.1851763,0,0.734072314,42.77111414,-0.734072314,137.2288859,0.98188682,0,608.5608578,35.0115134,631.4751931,3,16,4% -3/24/2018 1:00,74.13025794,259.5974549,209.4372343,567.130633,54.35463437,383.9901015,329.6956335,54.29446794,52.7156416,1.578826339,52.419475,0,52.419475,1.638992774,50.78048223,1.293817076,4.530830317,3.468342696,-3.468342696,0,0.259527082,0.409748193,13.1789104,0.059237769,1,0.280709033,0,0.927332534,0.966094497,0.724496596,1,50.80724708,1.187444685,0.009855619,0.312029739,0.972431828,0.696928424,0.961238037,0.922476074,0.292252338,12.66806996,51.09949942,13.85551465,310.1651998,0,0.581339844,54.45516461,-0.581339844,125.5448354,0.963991789,0,350.0962052,13.85551465,359.1643624,3,17,3% -3/24/2018 2:00,85.76734947,269.0549061,21.13902897,120.0236034,12.28050518,59.0891956,47.01963803,12.06955757,11.91020264,0.15935493,5.495704853,0,5.495704853,0.370302542,5.125402312,1.496922639,4.69589398,12.77161221,-12.77161221,0,0.580939891,0.092575635,2.977550661,0.62319898,1,0.078139228,0,0.953616906,0.992378869,0.724496596,1,11.53172562,0.268282931,0.082249563,0.312029739,0.793370345,0.517866941,0.961238037,0.922476074,0.06383649,2.862134952,11.59556211,3.130417883,17.71704756,0,0.391753261,66.9363635,-0.391753261,113.0636365,0.922368644,0,27.93721125,3.130417883,29.98600714,3,18,7% -3/24/2018 3:00,97.75393932,278.33136,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706128098,4.857798643,-6.46439132,6.46439132,0.364370288,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171517122,80.12396057,-0.171517122,99.87603943,0.758483914,0,0,0,0,3,19,0% -3/24/2018 4:00,109.2629477,288.2386183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906998188,5.030712921,-2.247522574,2.247522574,0.914502686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056411809,93.23387529,0.056411809,86.76612471,0,0,0,0,0,3,20,0% -3/24/2018 5:00,120.0729248,299.7064546,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09566788,5.230864421,-1.116838739,1.116838739,0.721144362,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279470153,106.2285844,0.279470153,73.77141564,0,0.871090018,0,0,0,3,21,0% -3/24/2018 6:00,129.5559002,313.9069205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.261177024,5.478709307,-0.532497947,0.532497947,0.621216202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482442338,118.8450368,0.482442338,61.15496316,0,0.946360671,0,0,0,3,22,0% -3/24/2018 7:00,136.7045487,332.0471666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385944477,5.795316328,-0.130361108,0.130361108,0.552446752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651482857,130.6534964,0.651482857,49.34650356,0,0.97325201,0,0,0,3,23,0% -3/25/2018 8:00,140.1636579,354.1312174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446317321,6.180755728,0.203675112,-0.203675112,0.495323194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77505978,140.8104528,0.77505978,39.18954721,0,0.985488847,0,0,0,3,0,0% -3/25/2018 9:00,138.9590265,17.26786313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.425292539,0.301381066,0.527150479,-0.527150479,0.440005648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844740532,147.6441466,0.844740532,32.35585336,0,0.990810227,0,0,0,3,1,0% -3/25/2018 10:00,133.4589264,37.51376547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329297682,0.654738722,0.890162291,-0.890162291,0.377926972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855766456,148.8445129,0.855766456,31.15548708,0,0.991572844,0,0,0,3,2,0% -3/25/2018 11:00,124.9719524,53.53400471,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181172041,0.934344644,1.371004916,-1.371004916,0.295698041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807377077,143.8404507,0.807377077,36.15954933,0,0.988071068,0,0,0,3,3,0% -3/25/2018 12:00,114.7126636,66.18134407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002113674,1.155082357,2.168066585,-2.168066585,0.159392468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702861991,134.6570753,0.702861991,45.34292469,0,0.978862279,0,0,0,3,4,0% -3/25/2018 13:00,103.4781181,76.71508155,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806033865,1.338930759,4.143696396,-4.143696396,0,#DIV/0!,0,0,0.151435016,1,0.236802564,0,0.933795445,0.972557408,0.724496596,1,0,0,0.024172002,0.312029739,0.933739489,0.658236085,0.961238037,0.922476074,0,0,0,0,0,0,-0.549336803,123.3215268,0.549336803,56.67847322,0,0.958981157,0,0,0,3,5,0% -3/25/2018 14:00,91.76461575,86.17721622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601594682,1.504076163,31.17377137,-31.17377137,0,#DIV/0!,0,0,0.827612219,1,0.032067253,0,0.958286829,0.997048792,0.724496596,1,0,0,0.10155387,0.312029739,0.752664204,0.4771608,0.961238037,0.922476074,0,0,0,0,0,0,-0.357258339,110.9319164,0.357258339,69.06808358,0,0.910045254,0,0,0,3,6,0% -3/25/2018 15:00,79.83248755,95.41499748,107.6769595,395.8150807,37.80504593,37.47679871,0,37.47679871,36.66508431,0.811714404,81.94451068,54.69702359,27.24748709,1.13996162,26.10752547,1.393339758,1.665305862,-5.036285469,5.036285469,0.608590771,0.351096893,0.60554977,19.47656216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.24387366,0.825898313,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.438718747,18.72161237,35.68259241,19.54751069,0,54.69702359,-0.138188326,97.94302604,0.138188326,82.05697396,0,0.688174936,35.68259241,57.18863142,73.1114079,3,7,105% -3/25/2018 16:00,68.22585332,105.2475445,317.9159586,677.1883759,66.71371527,127.4969749,60.39833953,67.09863539,64.70205061,2.396584784,79.09406952,0,79.09406952,2.011664663,77.08240486,1.190765775,1.836916181,-2.044486361,2.044486361,0.879781449,0.209847016,2.168930686,69.76026652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.19407211,1.4574442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.571382899,67.05622164,63.76545501,68.51366584,60.39833953,0,0.089189865,84.88299768,-0.089189865,95.11700232,0.489398185,0,93.32429272,68.51366584,138.1651167,3,8,48% -3/25/2018 17:00,57.17187377,116.6621925,514.1191883,794.5908923,83.35495788,332.7764324,248.0592864,84.71714596,80.84149835,3.875647607,127.167609,0,127.167609,2.513459527,124.6541495,0.997837437,2.036139371,-1.063779513,1.063779513,0.7120707,0.162131583,2.940659766,94.58172652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.70792317,1.820992871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.13049799,90.91555312,79.83842116,92.73654599,248.0592864,0,0.31218491,71.80904723,-0.31218491,108.1909528,0.889838511,0,300.5711273,92.73654599,361.2653419,3,9,20% -3/25/2018 18:00,47.31647717,131.0064542,672.0337704,852.129117,94.33428894,535.5692105,439.013374,96.5558365,91.48976207,5.06607443,165.786895,0,165.786895,2.844526868,162.9423682,0.825828317,2.286493967,-0.525579571,0.525579571,0.62003309,0.140371352,3.411340303,109.7204305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.94343928,2.060850033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.471504437,105.4674513,90.41494372,107.5283013,439.013374,0,0.515195837,58.98945407,-0.515195837,121.0105459,0.952949526,0,508.7725306,107.5283013,579.1476532,3,10,14% -3/25/2018 19:00,39.72729171,149.8814599,778.5561331,880.8455786,101.1020237,706.6929332,602.7704236,103.9225096,98.05342464,5.869084995,191.8185473,0,191.8185473,3.048599041,188.7699483,0.693372043,2.615924962,-0.145998157,0.145998157,0.555120845,0.129858361,3.597115962,115.6956144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.25268141,2.208699627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60609827,111.2110252,96.85877968,113.4197248,602.7704236,0,0.684308849,46.81872378,-0.684308849,133.1812762,0.976933577,0,685.7254455,113.4197248,759.956387,3,11,11% -3/25/2018 20:00,35.96932664,173.6638369,825.6761907,891.7168278,103.9816284,827.5573731,720.4868786,107.0704945,100.8461986,6.224295893,203.3301815,0,203.3301815,3.135429747,200.1947518,0.62778318,3.031005746,0.171434286,-0.171434286,0.5008367,0.125935118,3.50862868,112.8495592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.93720201,2.271608179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541989535,108.4752887,99.47919154,110.7468969,720.4868786,0,0.807977214,36.10123201,-0.807977214,143.898768,0.988117067,0,811.4045727,110.7468969,883.8862018,3,12,9% -3/25/2018 21:00,37.25793259,198.8382759,809.9624406,888.1998244,103.0280421,885.6633225,779.6361169,106.0272055,99.92136654,6.105839007,199.4914467,0,199.4914467,3.106675604,196.3847711,0.650273596,3.470382593,0.477013444,-0.477013444,0.448579586,0.127201012,3.167225822,101.8688697,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.04821821,2.250775899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294644327,97.92023234,98.34286254,100.1710082,779.6361169,0,0.877771078,28.62535228,-0.877771078,151.3746477,0.99303754,0,872.5507941,100.1710082,938.1107156,3,13,8% -3/25/2018 22:00,43.13159296,220.3285809,732.5741843,869.2216736,98.22889091,873.4794298,772.6900487,100.7893811,95.26692742,5.522453642,180.5830559,0,180.5830559,2.961963487,177.6210924,0.752788309,3.845459173,0.813981281,-0.813981281,0.390954692,0.134087295,2.610021656,83.94726834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.57419429,2.145932463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890951805,80.69330742,93.4651461,82.83923988,772.6900487,0,0.888944756,27.2590565,-0.888944756,152.7409435,0.993753535,0,861.3286136,82.83923988,915.5452393,3,14,6% -3/25/2018 23:00,52.01379876,236.7668552,599.2457553,828.3079394,89.44567801,787.6762319,696.4103035,91.26592842,86.74856079,4.517367626,147.9911884,0,147.9911884,2.697117211,145.2940712,0.907812045,4.132361182,1.246573583,-1.246573583,0.316977052,0.149263766,1.892450109,60.86770078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38601628,1.954052238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371073662,58.5083492,84.75708994,60.46240144,696.4103035,0,0.84076256,32.77926812,-0.84076256,147.2207319,0.990530178,0,774.5725116,60.46240144,814.1439441,3,15,5% -3/25/2018 0:00,62.55917937,249.4659688,420.3820176,747.3241895,75.99097036,627.3221377,550.4535582,76.86857945,73.69956223,3.169017219,104.2178953,0,104.2178953,2.291408133,101.9264872,1.091863657,4.354002528,1.92575247,-1.92575247,0.200830622,0.180766463,1.094241502,35.19456813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.84282251,1.660117392,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.792774243,33.83035758,71.63559676,35.49047497,550.4535582,0,0.736565959,42.56029627,-0.736565959,137.4397037,0.982117417,0,612.2456234,35.49047497,635.4734295,3,16,4% -3/25/2018 1:00,73.94261695,259.9645156,212.8267216,571.1724923,54.8404426,388.1486701,333.3574915,54.79117864,53.18680092,1.604377726,53.25594435,0,53.25594435,1.653641684,51.60230267,1.290542123,4.537236735,3.421869101,-3.421869101,0,0.25767649,0.413410421,13.29670023,0.052151021,1,0.28432052,0,0.926782886,0.965544849,0.724496596,1,51.24672583,1.198057771,0.00870483,0.312029739,0.975611709,0.700108305,0.961238037,0.922476074,0.295371861,12.78129403,51.54209769,13.9793518,315.9725579,0,0.58363716,54.29323012,-0.58363716,125.7067699,0.964330335,0,356.2440203,13.9793518,365.3932265,3,17,3% -3/25/2018 2:00,85.59180415,269.4125312,23.00050569,128.5544624,13.11959755,63.52834555,50.63096474,12.89738081,12.72399328,0.173387527,5.972343169,0,5.972343169,0.395604272,5.576738896,1.493858795,4.702135715,12.23444888,-12.23444888,0,0.570404744,0.098901068,3.18099832,0.609689122,1,0.081555119,0,0.953250712,0.992012675,0.724496596,1,12.3216597,0.286613949,0.080869655,0.312029739,0.796394412,0.520891008,0.961238037,0.922476074,0.068129231,3.057696581,12.38978893,3.344310529,19.76181628,0,0.393848364,66.80583117,-0.393848364,113.1941688,0.923047588,0,30.63088577,3.344310529,32.81967012,3,18,7% -3/25/2018 3:00,97.5678412,278.6886602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.702880073,4.864034708,-6.60288483,6.60288483,0.340686502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173663206,79.99912568,-0.173663206,100.0008743,0.762086392,0,0,0,0,3,19,0% -3/25/2018 4:00,109.0596137,288.6032868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903449339,5.037077586,-2.261948285,2.261948285,0.916969628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054227426,93.10852742,0.054227426,86.89147258,0,0,0,0,0,3,20,0% -3/25/2018 5:00,119.8385441,300.0805263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091577165,5.237393204,-1.118743605,1.118743605,0.721470114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277169331,106.0913339,0.277169331,73.90866607,0,0.869604861,0,0,0,3,21,0% -3/25/2018 6:00,129.2754263,314.2759578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256281832,5.485150224,-0.530754046,0.530754046,0.620917977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.479954931,118.6824585,0.479954931,61.31754146,0,0.945823552,0,0,0,3,22,0% -3/25/2018 7:00,136.3673348,332.3596654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380058985,5.800770461,-0.126755138,0.126755138,0.551830095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648751557,130.4475406,0.648751557,49.55245941,0,0.972928894,0,0,0,3,23,0% -3/26/2018 8:00,139.7782652,354.2970165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43959095,6.183649468,0.208848337,-0.208848337,0.49443852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044071,140.5378012,0.772044071,39.46219883,0,0.985236858,0,0,0,3,0,0% -3/26/2018 9:00,138.559612,17.2397795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418321439,0.300890915,0.534271843,-0.534271843,0.438787823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841419492,147.2903194,0.841419492,32.70968057,0,0.990576608,0,0,0,3,1,0% -3/26/2018 10:00,133.0782502,37.34591965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322653628,0.65180926,0.900405291,-0.900405291,0.376175316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.852140214,148.4452195,0.852140214,31.55478046,0,0.99132421,0,0,0,3,2,0% -3/26/2018 11:00,124.6205439,53.30186326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175038806,0.930293011,1.387391746,-1.387391746,0.292895728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803466817,143.462446,0.803466817,36.53755397,0,0.987769676,0,0,0,3,3,0% -3/26/2018 12:00,114.3865156,65.92721569,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996421316,1.150646981,2.200296935,-2.200296935,0.153880753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.698708506,134.3234789,0.698708506,45.67652114,0,0.9784394,0,0,0,3,4,0% -3/26/2018 13:00,103.1688888,76.45477664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800636796,1.334387581,4.246866153,-4.246866153,0,#DIV/0!,0,0,0.163951736,1,0.231255181,0,0.934582796,0.973344759,0.724496596,1,0,0,0.026026213,0.312029739,0.928845811,0.653342407,0.961238037,0.922476074,0,0,0,0,0,0,-0.5449977,123.0245065,0.5449977,56.97549352,0,0.958256494,0,0,0,3,5,0% -3/26/2018 14:00,91.46349716,85.91426574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596339171,1.499486812,37.64122394,-37.64122394,0,#DIV/0!,0,0,0.855216716,1,0.02656037,0,0.958811222,0.997573185,0.724496596,1,0,0,0.103953034,0.312029739,0.747814164,0.47231076,0.961238037,0.922476074,0,0,0,0,0,0,-0.352804082,110.6589215,0.352804082,69.3410785,0,0.908278284,0,0,0,3,6,0% -3/26/2018 15:00,79.53314383,95.14866155,112.7525663,406.711786,38.86657318,38.54457907,0,38.54457907,37.6946026,0.849976472,82.90250241,54.39236671,28.5101357,1.171970584,27.33816511,1.388115224,1.660657423,-4.899883232,4.899883232,0.631916928,0.344706772,0.644960154,20.74413559,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.2334858,0.849088698,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467271436,19.94005217,36.70075724,20.78914087,0,54.39236671,-0.133736883,97.68558633,0.133736883,82.31441367,0,0.67613156,36.70075724,57.56553662,74.37624964,3,7,103% -3/26/2018 16:00,67.91505198,104.9776392,323.5520223,681.500409,67.32092272,131.535862,63.80584167,67.73002033,65.29094851,2.439071813,80.47890798,0,80.47890798,2.029974208,78.44893377,1.185341269,1.832205446,-2.019401082,2.019401082,0.875491613,0.208068311,2.19857412,70.71370125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.76014317,1.470709403,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592859466,67.97269937,64.35300264,69.44340877,63.80584167,0,0.093625537,84.62778373,-0.093625537,95.37221627,0.515957668,0,97.27411594,69.44340877,142.7234381,3,8,47% -3/26/2018 17:00,56.84120706,116.3953034,519.6631415,796.8297496,83.82812012,337.4170474,252.1992141,85.21783327,81.300393,3.917440267,128.5260722,0,128.5260722,2.527727114,125.9983451,0.992066214,2.031481277,-1.055596006,1.055596006,0.710671238,0.161312422,2.966848165,95.42403545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.14903017,1.83132969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.149471396,91.72521251,80.29850156,93.5565422,252.1992141,0,0.316503261,71.54841185,-0.316503261,108.4515882,0.892023745,0,305.2661889,93.5565422,366.4970746,3,9,20% -3/26/2018 18:00,46.95685598,130.7695238,677.338988,853.5516631,94.74825646,540.266951,443.2696366,96.99731435,91.89124695,5.106067401,167.0856891,0,167.0856891,2.857009516,164.2286796,0.819551743,2.282358752,-0.522873347,0.522873347,0.619570298,0.139883069,3.435290521,110.4907519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32936182,2.069893669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488856288,106.2079134,90.81821811,108.2778071,443.2696366,0,0.519323734,58.71310018,-0.519323734,121.2868998,0.953720942,0,513.5737534,108.2778071,584.4394126,3,10,14% -3/26/2018 19:00,39.33739515,149.7456803,783.5619069,881.8952224,101.4806331,711.2378291,606.9103909,104.3274382,98.42061755,5.906820632,193.0436716,0,193.0436716,3.060015511,189.9836561,0.686567065,2.613555162,-0.145899954,0.145899954,0.555104051,0.129511953,3.619247189,116.4074307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.6056412,2.216970821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.622132268,111.8952501,97.22777347,114.112221,606.9103909,0,0.688188773,46.51309499,-0.688188773,133.486905,0.977345516,0,690.3889228,114.112221,765.0730892,3,11,11% -3/26/2018 20:00,35.57212885,173.734568,830.3597671,892.5974753,104.3354098,831.8536298,724.4047149,107.4489149,101.1893122,6.25960267,204.4764367,0,204.4764367,3.146097562,201.3303391,0.62085077,3.032240236,0.169804448,-0.169804448,0.501115419,0.125650849,3.529168304,113.5101841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26701584,2.279336974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556870423,109.1103065,99.82388627,111.3896435,724.4047149,0,0.811569308,35.75045841,-0.811569308,144.2495416,0.988390967,0,815.8189631,111.3896435,888.721257,3,12,9% -3/26/2018 21:00,36.89847106,199.126716,814.3285252,889.0381724,103.3640938,889.6779734,783.291936,106.3860374,100.247285,6.138752396,200.5601877,0,200.5601877,3.1168088,197.4433789,0.643999809,3.475416823,0.473770097,-0.473770097,0.449134231,0.126931687,3.186359658,102.4842796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.36150339,2.258117365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308506725,98.51178776,98.67001012,100.7699051,783.291936,0,0.88105546,28.2300538,-0.88105546,151.7699462,0.993249884,0,876.6746343,100.7699051,942.6265218,3,13,8% -3/26/2018 22:00,42.83404088,220.7191016,736.6497713,870.1379751,98.55491693,877.2321446,776.0958449,101.1362997,95.58312256,5.553177138,181.5810601,0,181.5810601,2.971794374,178.6092657,0.747595045,3.852275045,0.80865915,-0.80865915,0.39186483,0.133788024,2.627907987,84.52255423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87813308,2.153054908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.903910391,81.2462941,93.78204347,83.39934901,776.0958449,0,0.891922738,26.88413947,-0.891922738,153.1158605,0.993941333,0,865.1757819,83.39934901,919.7589878,3,14,6% -3/26/2018 23:00,51.77035356,237.1689888,603.0732885,829.4876046,89.77396884,791.2497836,699.63661,91.61317363,87.06695245,4.546221188,148.9291173,0,148.9291173,2.707016391,146.2221009,0.903563125,4.139379738,1.237722873,-1.237722873,0.318490612,0.148860794,1.909143041,61.40460284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.69206644,1.96122416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383167634,59.02443989,85.07523408,60.98566405,699.63661,0,0.843456377,32.49307528,-0.843456377,147.5069247,0.990720111,0,778.2192943,60.98566405,818.1331917,3,15,5% -3/26/2018 0:00,62.35218999,249.8508878,424.0023185,749.1957148,76.34901584,630.9112825,553.6681626,77.24311989,74.04681132,3.196308576,105.1064756,0,105.1064756,2.302204526,102.8042711,1.088251011,4.360720631,1.90893573,-1.90893573,0.203706454,0.180067449,1.109416336,35.68264297,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.17661155,1.667939342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.803768359,34.29951368,71.9803799,35.96745302,553.6681626,0,0.739016724,42.35227725,-0.739016724,137.6477228,0.982342532,0,615.8721649,35.96745302,639.4121435,3,16,4% -3/26/2018 1:00,73.75615229,260.3316944,216.1966743,575.1241772,55.31953212,392.2458527,336.9646267,55.28122597,53.65144412,1.629781852,54.08747472,0,54.08747472,1.668088001,52.41938671,1.287287701,4.543645214,3.376566339,-3.376566339,0,0.255875962,0.417022,13.41286103,0.045139285,1,0.287929088,0,0.926230975,0.964992938,0.724496596,1,51.67939146,1.208524078,0.007558814,0.312029739,0.978788689,0.703285284,0.961238037,0.922476074,0.298471533,12.8929522,51.97786299,14.10147628,321.7542843,0,0.585898907,54.13348093,-0.585898907,125.8665191,0.964661046,0,362.3616874,14.10147628,371.5908216,3,17,3% -3/26/2018 2:00,85.41666324,269.7697551,24.91953917,137.136292,13.9611112,68.0232546,54.2952684,13.7279862,13.54013219,0.187854012,6.463009795,0,6.463009795,0.420979014,6.042030781,1.49080201,4.708370448,11.73897493,-11.73897493,0,0.560247567,0.105244753,3.385033047,0.596339486,1,0.084981149,0,0.952880685,0.991642649,0.724496596,1,13.11398848,0.304997862,0.079492364,0.312029739,0.799427925,0.523924521,0.961238037,0.922476074,0.072431342,3.253822521,13.18641982,3.558820384,21.91685594,0,0.395921952,66.67651375,-0.395921952,113.3234863,0.923712484,0,33.43129325,3.558820384,35.76047001,3,18,7% -3/26/2018 3:00,97.38202058,279.0450838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699636891,4.870255474,-6.747837389,6.747837389,0.315898155,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175792835,79.87520049,-0.175792835,100.1247995,0.765574301,0,0,0,0,3,19,0% -3/26/2018 4:00,108.8561609,288.9664906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89989842,5.043416689,-2.276614863,2.276614863,0.91947776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.052048519,92.98350859,0.052048519,87.01649141,0,0,0,0,0,3,20,0% -3/26/2018 5:00,119.6037587,300.4522832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087479387,5.243881587,-1.120659805,1.120659805,0.721797803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274863162,105.9538597,0.274863162,74.04614035,0,0.868091301,0,0,0,3,21,0% -3/26/2018 6:00,128.9945088,314.6415462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378896,5.491530944,-0.528985402,0.528985402,0.620615521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477452261,118.5191369,0.477452261,61.48086305,0,0.945277488,0,0,0,3,22,0% -3/26/2018 7:00,136.0300633,332.668001,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374172486,5.806151934,-0.123110459,0.123110459,0.551206818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645996668,130.2404434,0.645996668,49.75955662,0,0.97260022,0,0,0,3,23,0% -3/27/2018 8:00,139.3934581,354.4602108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432874799,6.186497747,0.214074769,-0.214074769,0.493544748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768998614,140.2640502,0.768998614,39.73594976,0,0.984980377,0,0,0,3,0,0% -3/27/2018 9:00,138.1609718,17.21252008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.411363856,0.300415148,0.541471338,-0.541471338,0.437556637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838065138,146.9363635,0.838065138,33.06363654,0,0.990338766,0,0,0,3,1,0% -3/27/2018 10:00,132.6980254,37.18075686,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316017454,0.648926626,0.910779069,-0.910779069,0.374401296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848479931,148.0467212,0.848479931,31.95327883,0,0.991071087,0,0,0,3,2,0% -3/27/2018 11:00,124.269304,53.07236793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168908514,0.926287562,1.404045813,-1.404045813,0.290047714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799524678,143.0847364,0.799524678,36.91526365,0,0.987462843,0,0,0,3,3,0% -3/27/2018 12:00,114.0604838,65.67509336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990730989,1.146246616,2.233293262,-2.233293262,0.148238049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694528046,133.9896205,0.694528046,46.01037948,0,0.978008667,0,0,0,3,4,0% -3/27/2018 13:00,102.8598952,76.19581933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79524384,1.329867924,4.354730187,-4.354730187,0,#DIV/0!,0,0,0.176649132,1,0.225722033,0,0.935361519,0.974123482,0.724496596,1,0,0,0.027886433,0.312029739,0.923963435,0.648460031,0.961238037,0.922476074,0,0,0,0,0,0,-0.540638933,122.7271444,0.540638933,57.27285562,0,0.957516834,0,0,0,3,5,0% -3/27/2018 14:00,91.16282862,85.65207597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591091515,1.494910737,47.43910411,-47.43910411,0,#DIV/0!,0,0,0.883482624,1,0.021076535,0,0.959326194,0.998088158,0.724496596,1,0,0,0.106362902,0.312029739,0.742989092,0.467485688,0.961238037,0.922476074,0,0,0,0,0,0,-0.348339372,110.3857773,0.348339372,69.61422273,0,0.906461818,0,0,0,3,6,0% -3/27/2018 15:00,79.23438594,94.88251376,117.8541391,417.3027075,39.90543057,39.59056889,0,39.59056889,38.7021346,0.888434283,83.72874957,53.95035311,29.77839647,1.203295967,28.5751005,1.382900915,1.656012268,-4.771119411,4.771119411,0.653936838,0.338600162,0.685084007,22.03465664,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.20196389,0.871783832,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.496341031,21.18055009,37.69830492,22.05233392,0,53.95035311,-0.129283496,97.42819029,0.129283496,82.57180971,0,0.663253034,37.69830492,57.8350693,75.55020108,3,7,100% -3/27/2018 16:00,67.60519499,104.707271,329.1643423,685.7041207,67.92029742,135.587223,67.23359334,68.3536297,65.87224985,2.481379852,81.85775328,0,81.85775328,2.048047566,79.80970571,1.179933244,1.82748663,-1.995009067,1.995009067,0.871320333,0.206341601,2.227962238,71.65892416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.31891213,1.48380349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614151058,68.88128358,64.93306319,70.36508707,67.23359334,0,0.098050444,84.37308262,-0.098050444,95.62691738,0.540058402,0,101.2431302,70.36508707,147.2956723,3,8,45% -3/27/2018 17:00,56.51168372,116.1271484,525.1686001,799.0185506,84.29658875,342.0387056,256.3250273,85.71367832,81.75473558,3.95894274,129.8750605,0,129.8750605,2.541853172,127.3332073,0.986314947,2.02680109,-1.047564013,1.047564013,0.709297687,0.160513383,2.992799576,96.25872205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58576153,1.84156397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.168273105,92.52754501,80.75403464,94.36910898,256.3250273,0,0.320799845,71.28869699,-0.320799845,108.711303,0.894139576,0,309.9443857,94.36910898,371.7070802,3,9,20% -3/27/2018 18:00,46.59839244,130.5305407,682.5965578,854.9433167,95.15825413,544.9289724,447.4943895,97.43458286,92.28888167,5.145701183,168.3728107,0,168.3728107,2.869372459,165.5034383,0.813295374,2.278187709,-0.520203411,0.520203411,0.619113712,0.139406291,3.459000317,111.2533404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71158344,2.078850579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.506033955,106.9409426,91.2176174,109.0197931,447.4943895,0,0.523419952,58.43806404,-0.523419952,121.561936,0.954474409,0,518.3395606,109.0197931,589.6908348,3,10,14% -3/27/2018 19:00,38.9484348,149.6082105,788.5142444,882.9216731,101.855443,715.7354754,611.0071964,104.728279,98.78412558,5.944153444,194.2557251,0,194.2557251,3.071317413,191.1844077,0.679778426,2.611155861,-0.14579879,0.14579879,0.555086751,0.129173878,3.641138276,117.1115233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.95505894,2.22515901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.637992286,112.5720507,97.59305123,114.7972097,611.0071964,0,0.692028767,46.20908135,-0.692028767,133.7909186,0.977748668,0,695.0045238,114.7972097,770.1370016,3,11,11% -3/27/2018 20:00,35.1758302,173.8068469,834.9873203,893.4580471,104.6854437,836.0947109,728.2714325,107.8232784,101.5287913,6.29448712,205.6089953,0,205.6089953,3.156652374,202.452343,0.613934054,3.033501741,0.168197984,-0.168197984,0.50139014,0.125373693,3.54947828,114.1634227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.59333601,2.2869839,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.571584931,109.7382243,100.1649209,112.0252082,728.2714325,0,0.815115421,35.40122391,-0.815115421,144.5987761,0.988658994,0,820.1770227,112.0252082,893.495281,3,12,9% -3/27/2018 21:00,36.54055812,199.4196558,818.6392279,889.8569757,103.6964544,893.6328765,786.8920045,106.740872,100.5696237,6.171248295,201.6153894,0,201.6153894,3.126830698,198.4885587,0.63775305,3.480529587,0.470567983,-0.470567983,0.449681825,0.126669296,3.205286137,103.0930203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.67134761,2.265378197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322218895,99.09693243,98.9935665,101.3623106,786.8920045,0,0.884290426,27.83567297,-0.884290426,152.164327,0.99345749,0,880.7373225,101.3623106,947.0769275,3,13,8% -3/27/2018 22:00,42.53857941,221.1133569,740.673781,871.0329249,98.8773246,880.923751,779.4444307,101.4793203,95.89580844,5.583511823,182.5664496,0,182.5664496,2.981516155,179.5849334,0.74243827,3.859156098,0.803403913,-0.803403913,0.392763529,0.133496456,2.645621144,85.09227026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.17869865,2.160098305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.916743513,81.79392682,94.09544216,83.95402512,779.4444307,0,0.894850709,26.51073968,-0.894850709,153.4892603,0.994124758,0,868.9604482,83.95402512,923.9066785,3,14,6% -3/27/2018 23:00,51.52894349,237.5730766,606.8560491,830.6404849,90.09864227,794.7635431,702.8069701,91.95657302,87.38183578,4.574737235,149.8560815,0,149.8560815,2.716806493,147.139275,0.899349724,4.146432402,1.228992166,-1.228992166,0.319983651,0.148467898,1.925709332,61.93743169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.99474428,1.968317056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395169855,59.53661524,85.38991414,61.5049323,702.8069701,0,0.846102475,32.20974995,-0.846102475,147.79025,0.990905503,0,781.8052085,61.5049323,822.0589566,3,15,5% -3/27/2018 0:00,62.14685155,250.236525,427.5876639,751.0260898,76.70302467,634.4428497,556.8293678,77.6134819,74.39014548,3.223336424,105.9864587,0,105.9864587,2.312879198,103.6735795,1.084667179,4.36745127,1.892395558,-1.892395558,0.20653499,0.179385495,1.124528934,36.16871606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5066374,1.675673106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814717385,34.76674562,72.32135478,36.44241873,556.8293678,0,0.741424799,42.14707156,-0.741424799,137.8529284,0.982562277,0,619.4408865,36.44241873,643.2917207,3,16,4% -3/27/2018 1:00,73.57085347,260.6988495,219.547043,578.9883946,55.79208765,396.2826371,340.5178484,55.7647887,54.10975035,1.655038347,54.91405969,0,54.91405969,1.682337293,53.23172239,1.284053627,4.550053281,3.332384906,-3.332384906,0,0.254123612,0.420584323,13.52743759,0.038200458,1,0.291535125,0,0.925676756,0.964438719,0.724496596,1,52.10541668,1.218847642,0.006417392,0.312029739,0.981963131,0.706459727,0.961238037,0.922476074,0.301552265,13.00308755,52.40696895,14.22193519,327.5099106,0,0.588125516,53.97589833,-0.588125516,126.0241017,0.964984134,0,368.4488365,14.22193519,377.7568086,3,17,3% -3/27/2018 2:00,85.24193856,270.126445,26.89289747,145.7480629,14.80332563,72.5636502,58.00396944,14.55968077,14.35695075,0.202730021,6.966869234,0,6.966869234,0.446374886,6.520494348,1.487752489,4.714595861,11.28050168,-11.28050168,0,0.550454842,0.111593722,3.589237686,0.583146741,1,0.088417412,0,0.952506796,0.991268759,0.724496596,1,13.9070735,0.323397086,0.078117634,0.312029739,0.802470913,0.526967509,0.961238037,0.922476074,0.076734791,3.450111788,13.98380829,3.773508873,24.17914368,0,0.397974205,66.54840281,-0.397974205,113.4515972,0.924363717,0,36.33413141,3.773508873,38.80381749,3,18,7% -3/27/2018 3:00,97.19646873,279.4005008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696398401,4.87645867,-6.899753346,6.899753346,0.289918996,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177906659,79.75214773,-0.177906659,100.2478523,0.768953746,0,0,0,0,3,19,0% -3/27/2018 4:00,108.6525923,289.3280981,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896345477,5.04972793,-2.291536185,2.291536185,0.922029457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.049874504,92.85878459,0.049874504,87.14121541,0,0,0,0,0,3,20,0% -3/27/2018 5:00,119.3685908,300.8215933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083374932,5.250327265,-1.122591387,1.122591387,0.722128123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.272551233,105.8161367,0.272551233,74.18386334,0,0.866548253,0,0,0,3,21,0% -3/27/2018 6:00,128.7131966,315.0035668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246469072,5.497849396,-0.527194505,0.527194505,0.62030926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.474934182,118.3550647,0.474934182,61.64493527,0,0.944722254,0,0,0,3,22,0% -3/27/2018 7:00,135.6928104,332.9720899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368286313,5.811459286,-0.119429094,0.119429094,0.550577268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64321839,130.0322275,0.64321839,49.9677725,0,0.972265904,0,0,0,3,23,0% -3/28/2018 8:00,139.0093318,354.6207178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.426170532,6.189299122,0.219352547,-0.219352547,0.492642195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765924008,139.989266,0.765924008,40.01073398,0,0.984719372,0,0,0,3,0,0% -3/28/2018 9:00,137.7632238,17.18594892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404421844,0.299951394,0.548747182,-0.548747182,0.436312395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834678494,146.5823756,0.834678494,33.41762443,0,0.990096695,0,0,0,3,1,0% -3/28/2018 10:00,132.3183936,37.01815061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309391629,0.646088611,0.921282161,-0.921282161,0.372605161,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844787052,147.6491274,0.844787052,32.35087257,0,0.990813487,0,0,0,3,2,0% -3/28/2018 11:00,123.9183844,52.84544375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162783812,0.922326988,1.420967648,-1.420967648,0.28715391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795552497,142.7074716,0.795552497,37.29252845,0,0.987150596,0,0,0,3,3,0% -3/28/2018 12:00,113.7347201,65.42494209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98504534,1.141880652,2.26707133,-2.26707133,0.142461659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690322783,133.6556653,0.690322783,46.34433465,0,0.977570115,0,0,0,3,4,0% -3/28/2018 13:00,102.5512859,75.93819688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789857591,1.325371564,4.467575881,-4.467575881,0,#DIV/0!,0,0,0.189526597,1,0.220205335,0,0.936131333,0.974893296,0.724496596,1,0,0,0.029752024,0.312029739,0.919094303,0.643590899,0.961238037,0.922476074,0,0,0,0,0,0,-0.536262922,122.4296003,0.536262922,57.57039973,0,0.956762154,0,0,0,3,5,0% -3/28/2018 14:00,90.86275588,85.39064471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585854258,1.490347901,64.02379548,-64.02379548,0,#DIV/0!,0,0,0.912423284,1,0.015617923,0,0.959831621,0.998593584,0.724496596,1,0,0,0.108782629,0.312029739,0.738191304,0.462687899,0.961238037,0.922476074,0,0,0,0,0,0,-0.343866782,110.1126353,0.343866782,69.88736473,0,0.904594853,0,0,0,3,6,0% -3/28/2018 15:00,78.93636624,94.61655432,122.9760747,427.5904763,40.92185099,40.6149518,0,40.6149518,39.6879062,0.927045596,84.42742447,53.3765066,31.05091787,1.233944793,29.81697308,1.37769949,1.6513704,-4.649420522,4.649420522,0.674748574,0.332762703,0.72585827,23.34609708,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.14952504,0.893988802,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525881846,22.44115653,38.67540689,23.33514533,0,53.3765066,-0.124830906,97.17099093,0.124830906,82.82900907,0,0.649458167,38.67540689,58.00095344,76.6358709,3,7,98% -3/28/2018 16:00,67.29642779,104.4364335,334.7499023,689.8011213,68.51180666,139.6478375,70.67842841,68.96940907,66.44592291,2.523486163,83.22987318,0,83.22987318,2.065883752,81.16398942,1.17454424,1.822759623,-1.971292856,1.971292856,0.867264622,0.204665651,2.257084239,72.5955878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87034849,1.496725746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.635249848,69.7816403,65.50559834,71.27836604,70.67842841,0,0.102462038,84.11903673,-0.102462038,95.88096327,0.562014389,0,105.2278921,71.27836604,151.8781571,3,8,44% -3/28/2018 17:00,56.18345038,115.8576992,530.6330473,801.1576771,84.76026417,346.6387371,260.4341716,86.20456552,82.20442947,4.000136051,131.2139605,0,131.2139605,2.555834697,128.6581258,0.980586194,2.022098314,-1.039684063,1.039684063,0.707950136,0.159734236,3.018504654,97.08548572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0180244,1.851693537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.186896346,93.3222617,81.20492075,95.17395523,260.4341716,0,0.325072304,71.03004447,-0.325072304,108.9699555,0.896188065,0,314.6029171,95.17395523,376.8923673,3,9,20% -3/28/2018 18:00,46.24123179,130.2894274,687.8043963,856.3042279,95.56418856,549.5529549,451.6854191,97.86753575,92.68257568,5.184960069,169.6477519,0,169.6477519,2.881612879,166.766139,0.807061745,2.273979489,-0.517571718,0.517571718,0.618663666,0.138940939,3.482462328,112.0079593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.0900171,2.087718722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523032102,107.666311,91.6130492,109.7540297,451.6854191,0,0.527482411,58.1644912,-0.527482411,121.8355088,0.95521011,0,523.0675279,109.7540297,594.8993452,3,10,14% -3/28/2018 19:00,38.56054181,149.4689132,793.41152,883.9250524,102.2263805,720.1839603,615.0590111,105.1249491,99.14387796,5.981071176,195.4543114,0,195.4543114,3.082502547,192.3718088,0.673008416,2.608724664,-0.145696594,0.145696594,0.555069275,0.128844084,3.662783862,117.8077197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.30086661,2.233262602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.65367444,113.2412613,97.95454105,115.4745239,615.0590111,0,0.695827106,45.90683644,-0.695827106,134.0931636,0.978143069,0,699.5702501,115.4745239,775.1460165,3,11,11% -3/28/2018 20:00,34.78053569,173.8805563,839.5576916,894.2986944,105.0316811,840.2791773,732.0856484,108.1935289,101.8645884,6.32894051,206.7275751,0,206.7275751,3.167092711,203.5604824,0.607034863,3.034788213,0.166613041,-0.166613041,0.501661182,0.12510359,3.569555084,114.8091618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.91611699,2.294547888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.586130507,110.3589333,100.5022475,112.6534812,732.0856484,0,0.818614243,35.05368625,-0.818614243,144.9463138,0.98892117,0,824.4772436,112.6534812,898.206694,3,12,9% -3/28/2018 21:00,36.18427647,199.7169947,822.8938366,890.6564506,104.0251002,897.5271027,790.4354218,107.0916809,100.8883596,6.203321332,202.6568784,0,202.6568784,3.136740581,199.5201378,0.631534762,3.485719131,0.467405141,-0.467405141,0.450222703,0.126413755,3.224003287,103.6950281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97772869,2.272557873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335779406,99.67560529,99.3135081,101.9481632,790.4354218,0,0.887475099,27.44233611,-0.887475099,152.5576639,0.993660391,0,884.7378784,101.9481632,951.4609122,3,13,8% -3/28/2018 22:00,42.24525763,221.5111895,744.6458951,871.9068538,99.19611553,884.5538344,782.7353925,101.818442,96.20498666,5.613455297,183.5391474,0,183.5391474,2.991128878,180.5480185,0.737318839,3.866099587,0.798213132,-0.798213132,0.393651205,0.133212465,2.663160288,85.65638943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.47589251,2.16706269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929450563,82.33617962,94.40534307,84.50324231,782.7353925,0,0.897728225,26.13895908,-0.897728225,153.8610409,0.994303857,0,872.6821625,84.50324231,927.9878445,3,14,6% -3/28/2018 23:00,51.28958327,237.978947,610.5940288,831.767134,90.41972797,798.2175914,705.9214361,92.29615526,87.69323956,4.602915705,150.7720799,0,150.7720799,2.726488412,148.0455915,0.8951721,4.153516176,1.220377582,-1.220377582,0.321456832,0.148084855,1.942148721,62.46617896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.29407744,1.975331573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407080137,60.04486723,85.70115757,62.02019881,705.9214361,0,0.848700805,31.9293583,-0.848700805,148.0706417,0.991086423,0,785.3303088,62.02019881,825.9212885,3,15,5% -3/28/2018 0:00,61.94315728,250.6227229,431.1382293,752.8164022,77.05306909,637.9174044,559.9376676,77.97973684,74.72963476,3.250102086,106.8578896,0,106.8578896,2.323434328,104.5344552,1.081112044,4.374191695,1.876122777,-1.876122777,0.209317799,0.178720104,1.139578757,36.65277012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.83296741,1.683320262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825620931,35.23203679,72.65858834,36.91535705,559.9376676,0,0.743790473,41.94468538,-0.743790473,138.0553146,0.982776767,0,622.9523192,36.91535705,647.1126821,3,16,4% -3/28/2018 1:00,73.38670444,261.0658391,222.8778952,582.7678777,56.25830019,400.2601405,344.0180879,56.24205259,54.56190487,1.680147718,55.73572139,0,55.73572139,1.696395322,54.03932607,1.28083962,4.556458458,3.289277137,-3.289277137,0,0.252417586,0.42409883,13.64047622,0.031332358,1,0.295139096,0,0.92512017,0.963882133,0.724496596,1,52.52497959,1.229032636,0.005280365,0.312029739,0.985135465,0.70963206,0.961238037,0.922476074,0.304615021,13.11174458,52.82959461,14.34077722,333.2391899,0,0.590317519,53.82045643,-0.590317519,126.1795436,0.96529982,0,374.5053248,14.34077722,383.8910766,3,17,3% -3/28/2018 2:00,85.06763479,270.4824683,28.91752705,154.3710464,15.64474701,77.14025053,61.74925783,15.3909927,15.17300017,0.217992534,7.483136075,0,7.483136075,0.471746845,7.011389229,1.484710314,4.720809641,10.8550046,-10.8550046,0,0.541012618,0.117936711,3.793250042,0.570107221,1,0.091864117,0,0.952129001,0.990890964,0.724496596,1,14.6994886,0.341778984,0.076745366,0.312029739,0.805523507,0.530020102,0.961238037,0.922476074,0.081032732,3.646216224,14.78052133,3.987995207,26.54556008,0,0.400005437,66.42148165,-0.400005437,113.5785184,0.925001699,0,39.3352095,3.987995207,41.94527261,3,18,7% -3/28/2018 3:00,97.01117283,279.7547813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693164377,4.882642033,-7.059194149,7.059194149,0.262653013,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.180005409,79.62992516,-0.180005409,100.3700748,0.772230569,0,0,0,0,3,19,0% -3/28/2018 4:00,108.4489072,289.6879783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892790501,5.056009024,-2.306727323,2.306727323,0.924627294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047704723,92.73431707,0.047704723,87.26568293,0,0,0,0,0,3,20,0% -3/28/2018 5:00,119.1330595,301.1883255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079264137,5.256727948,-1.124542723,1.124542723,0.722461821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.270233076,105.6781367,0.270233076,74.32186328,0,0.864974537,0,0,0,3,21,0% -3/28/2018 6:00,128.4315363,315.3619023,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241553171,5.504103531,-0.525384009,0.525384009,0.619999647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47240051,118.190232,0.47240051,61.80976802,0,0.944157608,0,0,0,3,22,0% -3/28/2018 7:00,135.35565,333.2718488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362401754,5.816691065,-0.115713183,0.115713183,0.549941809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640416899,129.8229137,0.640416899,50.17708633,0,0.971925858,0,0,0,3,23,0% -3/29/2018 8:00,138.6259793,354.7784537,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419479767,6.192052132,0.224679701,-0.224679701,0.491731198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762820845,139.7135124,0.762820845,40.2864876,0,0.98445381,0,0,0,3,0,0% -3/29/2018 9:00,137.3664834,17.15992895,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397497418,0.29949726,0.556097478,-0.556097478,0.43505542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831260591,146.2284498,0.831260591,33.77155019,0,0.98985039,0,0,0,3,1,0% -3/29/2018 10:00,131.9394945,36.85797137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.302778592,0.643292956,0.931912945,-0.931912945,0.37078719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841063046,147.2525455,0.841063046,32.74745453,0,0.990551424,0,0,0,3,2,0% -3/29/2018 11:00,123.5679358,52.62101102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156667329,0.918409898,1.438157559,-1.438157559,0.284214262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791552142,142.3307991,0.791552142,37.66920092,0,0.986832967,0,0,0,3,3,0% -3/29/2018 12:00,113.4093756,65.17672199,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979367007,1.137548394,2.301646979,-2.301646979,0.136548875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686094918,133.3217772,0.686094918,46.67822277,0,0.977123786,0,0,0,3,4,0% -3/29/2018 13:00,102.2432094,75.68189215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784480642,1.320898202,4.585713516,-4.585713516,0,#DIV/0!,0,0,0.202583316,1,0.214707298,0,0.936891968,0.975653931,0.724496596,1,0,0,0.03162233,0.312029739,0.914240366,0.638736962,0.961238037,0.922476074,0,0,0,0,0,0,-0.53187212,122.1320339,0.53187212,57.86796605,0,0.955992441,0,0,0,3,5,0% -3/29/2018 14:00,89.99350105,85.1299659,0.001390979,0.822295724,0.001297707,0.001269063,0,0.001269063,0.001258577,1.05E-05,0.271781552,0.271405162,0.00037639,3.91E-05,0.000337259,1.570682899,1.485798197,-8510.562092,8510.562092,0,0.932945506,9.78E-06,0.000314644,1,0.999312678,0,0.000117501,0.961238037,1,0.724163459,0.999666863,0.001209792,2.83E-05,0.115824807,0.311651141,0.724496596,0.448993192,0.961297942,0.922535979,7.09E-06,0.000302458,0.001216879,0.000330803,0,0.000186543,-0.330057854,109.2722871,0.330057854,70.72771295,0,0.898511407,0.001216879,0.000498414,0.001543081,3,6,27% -3/29/2018 15:00,78.6392365,94.35078005,128.1129472,437.5785187,41.91610579,41.61795006,0,41.61795006,40.65218054,0.965769511,85.00290848,52.67651594,32.32639253,1.263925243,31.06246729,1.372513598,1.646731764,-4.534269448,4.534269448,0.694440567,0.327180872,0.767220597,24.67645171,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.07642222,0.915709536,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.555848711,23.719944,39.63227093,24.63565353,0,52.67651594,-0.12038186,96.91414131,0.12038186,83.08585869,0,0.63465503,39.63227093,58.06706934,77.63600647,3,7,96% -3/29/2018 16:00,66.98889577,104.1651172,340.305721,693.7930339,69.09541916,143.7144791,74.13717348,69.5773056,67.01193733,2.56536827,84.59454379,0,84.59454379,2.083481823,82.51106197,1.169176793,1.818024262,-1.948235678,1.948235678,0.863321612,0.203039252,2.285929606,73.52335395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41442309,1.509475488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.656148218,70.67344442,66.07057131,72.1829199,74.13717348,0,0.106857766,83.86578903,-0.106857766,96.13421097,0.582088289,0,109.2249518,72.1829199,156.4672292,3,8,43% -3/29/2018 17:00,55.85665346,115.5869242,536.0540119,803.2475303,85.21905004,351.214483,264.5241002,86.69038283,82.64938126,4.041001572,132.5421702,0,132.5421702,2.569668784,129.9725014,0.974882512,2.0173724,-1.031956678,1.031956678,0.706628675,0.158974745,3.04395437,97.90403607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44572899,1.861716286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.205334579,94.10908343,81.65106357,95.97079972,264.5241002,0,0.329318286,70.77259652,-0.329318286,109.2274035,0.898171201,0,319.2389923,95.97079972,382.0499613,3,9,20% -3/29/2018 18:00,45.88551882,130.0461023,692.9604818,857.6345641,95.9659703,554.1366105,455.8405394,98.29607104,93.07224222,5.223828819,170.9100197,0,170.9100197,2.893728081,168.0162916,0.800853382,2.269732664,-0.51498022,0.51498022,0.618220494,0.138486931,3.505669552,112.7543835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.4645794,2.096496144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539845657,108.3838022,92.00442506,110.4802984,455.8405394,0,0.531509058,57.89252738,-0.531509058,122.1074726,0.955928226,0,527.7552633,110.4802984,600.0624089,3,10,14% -3/29/2018 19:00,38.17384611,149.3276426,798.252185,884.9054962,102.5933771,724.5814237,619.0640533,105.5173704,99.49980829,6.017562153,196.6390529,0,196.6390529,3.09356885,193.5454841,0.666259303,2.606259028,-0.145595315,0.145595315,0.555051955,0.128522513,3.68417899,118.4958606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.64300039,2.241280101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669175137,113.9027284,98.31217552,116.1440085,619.0640533,0,0.699582109,45.60651385,-0.699582109,134.3934861,0.978528761,0,704.0841566,116.1440085,780.0980873,3,11,11% -3/29/2018 20:00,34.38634725,173.955569,844.0698114,895.1195823,105.3740784,844.4056601,735.8460441,108.5596159,102.1966612,6.362954775,207.8319153,0,207.8319153,3.177417253,204.6544981,0.600154977,3.036097431,0.165047732,-0.165047732,0.501928865,0.124840478,3.589395624,115.4473017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.23531795,2.302027984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600504911,110.9723377,100.8358229,113.2743657,735.8460441,0,0.822064514,34.70800331,-0.822064514,145.2919967,0.989177523,0,828.7181901,113.2743657,902.8539969,3,12,9% -3/29/2018 21:00,35.82970386,200.0186237,827.0917362,891.4368272,104.3500128,901.3598073,793.9213655,107.4384418,101.2034749,6.234966873,203.6845051,0,203.6845051,3.146537897,200.5379672,0.625346302,3.49098355,0.46427957,-0.46427957,0.450757207,0.126164981,3.242509569,104.2902538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.28062957,2.279655995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.349187145,100.2477588,99.62981671,102.5274148,793.9213655,0,0.890608668,27.05016822,-0.890608668,152.9498318,0.99385862,0,888.6754092,102.5274148,955.7775516,3,13,8% -3/29/2018 22:00,41.95411846,221.9124363,748.565897,872.7601073,99.51129711,888.122076,785.9684058,102.1536703,96.51066434,5.643005927,184.4991011,0,184.4991011,3.000632765,181.4984683,0.732237502,3.873102665,0.79308432,-0.79308432,0.394528283,0.132935921,2.680525008,86.21489852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.76972153,2.173948224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.942031244,82.8730398,94.71175277,85.04698802,785.9684058,0,0.900554917,25.7688953,-0.900554917,154.2311047,0.994478677,0,876.3405735,85.04698802,932.0021262,3,14,6% -3/29/2018 23:00,51.05228154,238.3864257,614.2873203,832.8681219,90.73726142,801.6121113,708.9801558,92.6319555,88.0011982,4.630757297,151.677136,0,151.677136,2.736063217,148.9410728,0.891030404,4.16062802,1.211875204,-1.211875204,0.322910824,0.147711435,1.958461352,62.99084925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.590099,1.982268486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.418898583,60.54920027,86.00899758,62.53146876,708.9801558,0,0.851251401,31.65195935,-0.851251401,148.3480407,0.991262945,0,788.7947551,62.53146876,829.7203508,3,15,5% -3/29/2018 0:00,61.74109507,251.0093236,434.6542872,754.5677538,77.39922684,641.3356141,562.9936519,78.34196219,75.06535458,3.276607616,107.7208364,0,107.7208364,2.333872262,105.3869642,1.077585393,4.38093915,1.860108307,-1.860108307,0.212056435,0.178070777,1.154565637,37.13479968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.15567407,1.690882509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836478874,35.69538194,72.99215294,37.38626445,562.9936519,0,0.746114115,41.74511757,-0.746114115,138.2548824,0.982986122,0,626.4070997,37.38626445,650.8756621,3,16,4% -3/29/2018 1:00,73.20368463,261.4325217,226.1893945,586.4653569,56.71836419,404.1795798,347.4663723,56.71320744,55.00809624,1.705111199,56.55250538,0,56.55250538,1.710267949,54.84223743,1.277645321,4.562858275,3.247197342,-3.247197342,0,0.250756072,0.427566987,13.75202406,0.024532767,1,0.298741515,0,0.924561147,0.96332311,0.724496596,1,52.93826107,1.239083307,0.004147519,0.312029739,0.988306167,0.712802763,0.961238037,0.922476074,0.307660796,13.21896861,53.24592187,14.45805192,338.9420607,0,0.592475529,53.66712328,-0.592475529,126.3328767,0.965608329,0,380.5311986,14.45805192,389.9937045,3,17,2% -3/29/2018 2:00,84.89375085,270.8376933,30.99055512,162.9886576,16.48408659,81.7447099,65.52405945,16.22065045,15.98703056,0.233619895,8.011074914,0,8.011074914,0.49705603,7.514018884,1.481675467,4.727009487,10.45901271,-10.45901271,0,0.531906787,0.124264008,3.99675764,0.557217039,1,0.095321562,0,0.951747247,0.99050921,0.724496596,1,15.48999991,0.360115402,0.075375429,0.312029739,0.808585917,0.533082513,0.961238037,0.922476074,0.085319382,3.841835467,15.57531929,4.201950869,29.01293705,0,0.402016069,66.29572666,-0.402016069,113.7042733,0.925626862,0,42.43047318,4.201950869,45.18056598,3,18,6% -3/29/2018 3:00,96.82611709,280.107797,0,0,0,0,0,0,0,0,0,0,0,0,0,1.689934545,4.888803319,-7.226785208,7.226785208,0.233993254,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182089882,79.50848674,-0.182089882,100.4915133,0.775410334,0,0,0,0,3,19,0% -3/29/2018 4:00,108.2451026,290.0460015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889233439,5.062257709,-2.322204448,2.322204448,0.927274039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04553847,92.61006479,0.04553847,87.38993521,0,0,0,0,0,3,20,0% -3/29/2018 5:00,118.8971824,301.5523504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075147305,5.263081381,-1.126518451,1.126518451,0.722799691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267908184,105.5398295,0.267908184,74.46017054,0,0.863368897,0,0,0,3,21,0% -3/29/2018 6:00,128.1495724,315.7164377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236631973,5.51029134,-0.523556698,0.523556698,0.619687158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469851036,118.0246274,0.469851036,61.9753726,0,0.943583293,0,0,0,3,22,0% -3/29/2018 7:00,135.0186538,333.567196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356520061,5.821845846,-0.111964955,0.111964955,0.549300825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637592366,129.6125217,0.637592366,50.38747831,0,0.97157999,0,0,0,3,23,0% -3/30/2018 8:00,138.2434909,354.9333353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412804085,6.194755327,0.230054182,-0.230054182,0.490812107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759689722,139.4368521,0.759689722,40.56314789,0,0.984183656,0,0,0,3,0,0% -3/30/2018 9:00,136.9708635,17.13432409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.390592548,0.299050371,0.563520227,-0.563520227,0.433786055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827812479,145.8746781,0.827812479,34.12532187,0,0.989599847,0,0,0,3,1,0% -3/30/2018 10:00,131.5614654,36.70008863,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296180739,0.640537382,0.942669662,-0.942669662,0.368947683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837309402,146.8570803,0.837309402,33.14291974,0,0.990284917,0,0,0,3,2,0% -3/30/2018 11:00,123.2181069,52.39898715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150561664,0.914534851,1.455615651,-1.455615651,0.281228753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787525505,141.9548636,0.787525505,38.04513635,0,0.986509993,0,0,0,3,3,0% -3/30/2018 12:00,113.0846006,64.93038983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973698613,1.133249087,2.337036151,-2.337036151,0.13049697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68184668,132.9881182,0.68184668,47.01188177,0,0.976669732,0,0,0,3,4,0% -3/30/2018 13:00,101.9358136,75.42688492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779115573,1.316447486,4.709478762,-4.709478762,0,#DIV/0!,0,0,0.21581827,1,0.209230123,0,0.937643168,0.976405131,0.724496596,1,0,0,0.033496682,0.312029739,0.909403571,0.633900167,0.961238037,0.922476074,0,0,0,0,0,0,-0.527469,121.8346043,0.527469,58.16539567,0,0.955207699,0,0,0,3,5,0% -3/30/2018 14:00,89.74375083,84.87003092,0.083368873,1.591475725,0.076251194,0.074580409,0,0.074580409,0.073951939,0.00062847,0.54190714,0.519394136,0.022513003,0.002299255,0.020213748,1.566323935,1.481261476,-216.1045065,216.1045065,0,0.914624262,0.000574814,0.018487985,1,0.972592378,0,0.004627358,0.961238037,1,0.711458528,0.986961932,0.071085417,0.001653186,0.115824807,0.297214216,0.724496596,0.448993192,0.963560442,0.924798479,0.000416451,0.01779465,0.071501867,0.019447835,0,0.014235358,-0.326360075,109.0479951,0.326360075,70.95200492,0,0.896794985,0.071501867,0.032214033,0.092585308,3,6,29% -3/30/2018 15:00,78.34314727,94.08518571,133.2595112,447.2709368,42.88849785,42.59981789,0,42.59981789,41.5952514,1.004566485,85.45974604,51.85618827,33.60355778,1.293246452,32.31031133,1.367345866,1.642096268,-4.425198469,4.425198469,0.713092803,0.321841927,0.809109559,26.02374472,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.9829378,0.936952652,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.586197121,25.01501329,40.56913492,25.95196594,0,51.85618827,-0.115939096,96.65779364,0.115939096,83.34220636,0,0.618739092,40.56913492,58.03741678,78.55346345,3,7,94% -3/30/2018 16:00,66.68274358,103.8933113,345.8288638,697.6814975,69.6711059,147.7839316,77.60666256,70.17726905,67.570265,2.607004054,85.9510528,0,85.9510528,2.100840902,83.8502119,1.16383343,1.813280354,-1.925821337,1.925821337,0.859488534,0.201461223,2.314488152,74.44189498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95110888,1.522052082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676838788,71.55638099,66.62794766,73.07843308,77.60666256,0,0.111235088,83.61348215,-0.111235088,96.38651785,0.600501546,0,113.2308685,73.07843308,161.0592414,3,8,42% -3/30/2018 17:00,55.53143859,115.3147906,541.4290782,805.2885327,85.67285387,355.7633104,268.5922881,87.17102232,83.08950123,4.081521092,133.8591011,0,133.8591011,2.583352643,131.2757485,0.969206442,2.012622773,-1.024382327,1.024382327,0.705333385,0.158234674,3.069140032,98.71409352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86878904,1.871630196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.223581505,94.88774146,82.09237055,96.75937166,268.5922881,0,0.333535469,70.51649487,-0.333535469,109.4835051,0.900090906,0,323.8498464,96.75937166,387.1769199,3,9,20% -3/30/2018 18:00,45.53139756,129.8004807,698.0628597,858.9345087,96.36351406,558.6776954,459.9576041,98.72009127,93.45779857,5.2622927,172.1591377,0,172.1591377,2.905715493,169.2534222,0.7946728,2.265445759,-0.512430836,0.512430836,0.617784524,0.138044179,3.528615346,113.4923991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.83519083,2.105180983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556469806,109.0932109,92.39166063,111.1983919,459.9576041,0,0.535497875,57.62231763,-0.535497875,122.3776824,0.956628948,0,532.4004195,111.1983919,605.177543,3,10,14% -3/30/2018 19:00,37.78847646,149.1842468,803.0347668,885.8631542,102.9563688,728.926065,623.0205953,105.9054697,99.85185446,6.053615275,197.8095908,0,197.8095908,3.104514389,194.7050764,0.659533333,2.603756298,-0.145496894,0.145496894,0.555035124,0.128209105,3.705319069,119.1757982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98140056,2.249210107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684491052,114.5563103,98.66589161,116.8055204,623.0205953,0,0.703292142,45.30826657,-0.703292142,134.6917334,0.978905789,0,708.544359,116.8055204,784.991236,3,11,11% -3/30/2018 20:00,33.9933642,174.0317497,848.5226921,895.9208872,105.7125963,848.4728608,739.5513669,108.921494,102.5249715,6.39652247,208.9217754,0,208.9217754,3.187624817,205.7341505,0.593296129,3.037427036,0.163500168,-0.163500168,0.502193514,0.124584289,3.608997175,116.077755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.55090234,2.309423329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614706168,111.5783533,101.1656085,113.8877767,739.5513669,0,0.825465035,34.36433286,-0.825465035,145.6356671,0.989428083,0,832.8984993,113.8877767,907.4357714,3,12,9% -3/30/2018 21:00,35.47691398,200.324427,831.2323959,892.1983458,104.6711787,905.1302248,797.3490874,107.7811374,101.5149565,6.266180914,204.6981403,0,204.6981403,3.156222233,201.5419181,0.619188957,3.496320823,0.461189263,-0.461189263,0.451285681,0.125922882,3.260803803,104.8786592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.58003746,2.286672264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.362441255,100.8133565,99.94247872,103.1000288,797.3490874,0,0.89369039,26.65929316,-0.89369039,153.3407068,0.994052213,0,892.5491032,103.1000288,960.0260101,3,13,8% -3/30/2018 22:00,41.66519987,222.3169291,752.4336521,873.5930405,99.82288119,891.6282393,789.1432235,102.4850157,96.81285302,5.672162699,185.4462785,0,185.4462785,3.010028175,182.4362503,0.727194921,3.880162396,0.788014994,-0.788014994,0.395395189,0.132666689,2.697715221,86.76779485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.06019678,2.180755166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954485495,83.40450479,95.01468227,85.58525995,789.1432235,0,0.903330483,25.40064243,-0.903330483,154.5993576,0.994649272,0,879.935415,85.58525995,935.9492559,3,14,6% -3/30/2018 23:00,50.81704233,238.7953366,617.9360934,833.9440259,91.05128226,804.9473669,711.9833534,92.96401345,88.30575016,4.658263289,152.5712922,0,152.5712922,2.745532104,149.8257601,0.886924705,4.167764863,1.203481154,-1.203481154,0.324346291,0.147347409,1.974647658,63.5114565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.88284593,1.989128663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430625507,61.04962777,86.31347143,63.03875643,711.9833534,0,0.853754366,31.3776062,-0.853754366,148.6223938,0.991435146,0,792.1987912,63.03875643,833.4563966,3,15,5% -3/30/2018 0:00,61.54064905,251.3961693,438.136179,756.2812449,77.74157891,644.69822,565.997981,78.70023905,75.39738347,3.302855587,108.5753846,0,108.5753846,2.34419544,106.2311892,1.07408695,4.387690881,1.844343287,-1.844343287,0.214752412,0.177437022,1.169489658,37.61480748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.47483287,1.698361616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847291276,36.1567837,73.32212414,37.85514532,565.997981,0,0.748396162,41.54836117,-0.748396162,138.4516388,0.983190464,0,629.8059419,37.85514532,654.5813774,3,16,4% -3/30/2018 1:00,73.02177057,261.7987566,229.4817712,590.0835238,57.17247381,408.0422326,350.8637893,57.17844331,55.44851278,1.729930525,57.36447331,0,57.36447331,1.723961029,55.64051228,1.274470322,4.56925028,3.206102025,-3.206102025,0,0.249137322,0.430990257,13.8621282,0.017799484,1,0.302342925,0,0.923999615,0.962761578,0.724496596,1,53.34544137,1.249003897,0.003018637,0.312029739,0.991475738,0.715972334,0.961238037,0.922476074,0.310690599,13.32480489,53.65613197,14.57380879,344.6185948,0,0.594600214,53.51586252,-0.594600214,126.4841375,0.965909886,0,386.5266394,14.57380879,396.0649058,3,17,2% -3/30/2018 2:00,84.72028167,271.1919894,33.10927993,171.5862549,17.32023652,86.36953931,69.32198009,17.04755922,16.79796749,0.249591738,8.54999728,0,8.54999728,0.522269036,8.027728244,1.478647858,4.733193119,10.08952006,-10.08952006,0,0.523123323,0.130567259,4.199491871,0.544472233,1,0.098790102,0,0.951361471,0.990123435,0.724496596,1,16.2775433,0.378382139,0.074007668,0.312029739,0.811658406,0.536155002,0.961238037,0.922476074,0.089589894,4.036711322,16.3671332,4.415093461,31.57808681,0,0.404006604,66.17110921,-0.404006604,113.8288908,0.926239647,0,45.61600917,4.415093461,48.50559954,3,18,6% -3/30/2018 3:00,96.64128436,280.4594206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686708605,4.894940308,-7.40322331,7.40322331,0.203820562,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.184160911,79.38778436,-0.184160911,100.6122156,0.778498303,0,0,0,0,3,19,0% -3/30/2018 4:00,108.0411746,290.4020399,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885674225,5.068471751,-2.337984665,2.337984665,0.929972615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.043375015,92.48598523,0.043375015,87.51401477,0,0,0,0,0,3,20,0% -3/30/2018 5:00,118.6609765,301.9135412,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071024734,5.269385351,-1.128523398,1.128523398,0.723142557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265576041,105.401184,0.265576041,74.59881597,0,0.861730004,0,0,0,3,21,0% -3/30/2018 6:00,127.8673493,316.067061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231706251,5.516410871,-0.521715441,0.521715441,0.619372285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467285556,117.8582399,0.467285556,62.14176013,0,0.942999047,0,0,0,3,22,0% -3/30/2018 7:00,134.6818927,333.8580529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.350642471,5.826922257,-0.108186702,0.108186702,0.548654705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634744971,129.401072,0.634744971,50.59892797,0,0.971228206,0,0,0,3,23,0% -3/31/2018 8:00,137.861956,355.0852822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406145045,6.197407299,0.235473873,-0.235473873,0.489885286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756531257,139.1593481,0.756531257,40.84065188,0,0.983908877,0,0,0,3,0,0% -3/31/2018 9:00,136.5764754,17.10900144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383709177,0.298608407,0.571013349,-0.571013349,0.432504656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824335229,145.5211515,0.824335229,34.47884847,0,0.989345065,0,0,0,3,1,0% -3/31/2018 10:00,131.1844415,36.54437317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289600432,0.637819635,0.953550421,-0.953550421,0.367086964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833527634,146.4628352,0.833527634,33.53716482,0,0.990013986,0,0,0,3,2,0% -3/31/2018 11:00,122.8690448,52.17928873,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144469381,0.91070039,1.473341832,-1.473341832,0.278197397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783474499,141.5798073,0.783474499,38.42019266,0,0.986181714,0,0,0,3,3,0% -3/31/2018 12:00,112.7605436,64.68590089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968042752,1.12898195,2.373254908,-2.373254908,0.124303198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677580311,132.6548482,0.677580311,47.34515182,0,0.976208009,0,0,0,3,4,0% -3/31/2018 13:00,101.6292448,75.17315363,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773764939,1.31201904,4.839235415,-4.839235415,0,#DIV/0!,0,0,0.229230244,1,0.203775988,0,0.938384691,0.977146654,0.724496596,1,0,0,0.035374399,0.312029739,0.904585855,0.629082451,0.961238037,0.922476074,0,0,0,0,0,0,-0.523056041,121.5374689,0.523056041,58.46253114,0,0.954407949,0,0,0,3,5,0% -3/31/2018 14:00,89.49104778,84.61083024,0.240174788,2.861066754,0.214760575,0.21009529,0,0.21009529,0.208284751,0.001810539,0.987687948,0.922978966,0.064708982,0.006475824,0.058233158,1.561913435,1.476737571,-108.9325476,108.9325476,0,0.89418451,0.001618956,0.052071188,1,0.944930028,0,0.009179735,0.961238037,1,0.698794786,0.97429819,0.200211225,0.004623523,0.115824807,0.282828669,0.724496596,0.448993192,0.965772229,0.927010266,0.001172928,0.050177755,0.201384153,0.054801278,0,0.050828425,-0.322599592,108.8202102,0.322599592,71.17978977,0,0.895009103,0.201384153,0.100293181,0.267024035,3,6,33% -3/31/2018 15:00,78.04824736,93.81976573,138.410703,456.6723982,43.83935535,43.56083538,0,43.56083538,42.51743703,1.043398344,85.80260275,50.92140703,34.88119572,1.321918314,33.55927741,1.362198892,1.637463815,-4.321783355,4.321783355,0.730777829,0.316733854,0.851464806,27.38603507,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.86937771,0.957725318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.616883354,26.32449858,41.48626106,27.2822239,0,50.92140703,-0.111505331,96.40209859,0.111505331,83.59790141,0,0.601590947,41.48626106,57.91608137,79.391178,3,7,91% -3/31/2018 16:00,66.37811464,103.621005,351.3164533,701.468167,70.23884069,151.8530028,81.08375047,70.76925231,68.12088049,2.648371822,87.2987017,0,87.2987017,2.117960201,85.1807415,1.158516652,1.808527712,-1.904034129,1.904034129,0.855762702,0.199930405,2.342750041,75.35089447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48038143,1.534454955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69731443,72.43014588,67.17769586,73.96460083,81.08375047,0,0.11559149,83.36225756,-0.11559149,96.63774244,0.617442205,0,117.2422255,73.96460083,165.6505775,3,8,41% -3/31/2018 17:00,55.20795031,115.0412661,546.7558919,807.2811273,86.12158723,360.2826247,272.6362442,87.64638048,83.52470362,4.121676864,135.1641797,0,135.1641797,2.59688361,132.5672961,0.963560506,2.00784887,-1.016961385,1.016961385,0.704064329,0.15751378,3.094053279,99.51538918,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.28712214,1.881433335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.241631068,95.65797733,82.5287532,97.53941067,272.6362442,0,0.337721563,70.26187996,-0.337721563,109.73812,0.901949045,0,328.4327532,97.53941067,392.2703467,3,9,19% -3/31/2018 18:00,45.17901118,129.5524781,703.1096431,860.204261,96.75673867,563.174019,464.0345155,99.13950349,93.83916601,5.300337485,173.394646,0,173.394646,2.917572665,170.4770733,0.788522498,2.261117296,-0.509925412,0.509925412,0.617356071,0.137612589,3.551293391,114.221803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.20177571,2.113771464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.572899973,109.7943416,92.77467569,111.9081131,464.0345155,0,0.539446893,57.35400564,-0.539446893,122.6459944,0.95731247,0,537.0007039,111.9081131,610.2423258,3,10,14% -3/31/2018 19:00,37.40456079,149.0385699,807.7578639,886.7981868,103.3152956,733.2161471,626.9269689,106.2891782,100.1999583,6.089219976,198.9655834,0,198.9655834,3.115337356,195.850246,0.652832741,2.601213757,-0.145403222,0.145403222,0.555019105,0.127903794,3.726199823,119.847395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.31601117,2.257051309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.699619087,115.2018747,99.01563026,117.458926,626.9269689,0,0.706955628,45.01224642,-0.706955628,134.9877536,0.979274203,0,712.9490383,117.458926,789.8235562,3,11,11% -3/31/2018 20:00,33.60168417,174.1089577,852.9154165,896.7027938,106.0471995,852.4795507,743.2004288,109.2791218,102.8494852,6.429636682,209.9969318,0,209.9969318,3.197714338,206.7992174,0.586460023,3.038774569,0.161968497,-0.161968497,0.502455445,0.124334955,3.628357301,116.7004432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86283721,2.316733152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.628732514,112.1769049,101.4915697,114.4936381,743.2004288,0,0.828814669,34.02283234,-0.828814669,145.9771677,0.989672882,0,837.0168803,114.4936381,911.9506766,3,12,9% -3/31/2018 21:00,35.12597776,200.6342835,835.3153512,892.9412529,104.9885876,908.8376595,800.7179052,108.1197543,101.8227943,6.296959956,205.6976711,0,205.6976711,3.165793283,202.5318778,0.613063965,3.50172884,0.458132249,-0.458132249,0.451808461,0.125687368,3.278885059,105.4602146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.87594293,2.293606457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375541064,101.3723696,100.251484,103.6659761,800.7179052,0,0.89671958,26.26983419,-0.89671958,153.7301658,0.994241209,0,896.3582218,103.6659761,964.2055299,3,13,8% -3/31/2018 22:00,41.3785365,222.724496,756.2490847,874.4060116,100.1308827,895.0721537,792.2596615,102.8124922,97.11156714,5.700925041,186.3806617,0,186.3806617,3.019315557,183.3613461,0.722191702,3.88727578,0.783002725,-0.783002725,0.396252338,0.132404633,2.714731051,87.31508244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34733215,2.187483843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966813405,83.93057843,95.31414556,86.11806227,792.2596615,0,0.906054683,25.03429219,-0.906054683,154.9657078,0.994815693,0,883.4664895,86.11806227,939.8290389,3,14,6% -3/31/2018 23:00,50.58386673,239.2055028,621.5405659,834.9954206,91.36183237,808.223679,714.9313076,93.29237136,88.60693603,4.685435326,153.4546025,0,153.4546025,2.754896335,150.6997062,0.882855023,4.174923612,1.195191667,-1.195191667,0.325763877,0.146992549,1.990708233,64.0280198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.17235724,1.995913017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442261338,61.54616805,86.61461858,63.54208107,714.9313076,0,0.856209855,31.10634758,-0.856209855,148.8936524,0.991603101,0,795.5427206,63.54208107,837.1297418,3,15,5% -3/31/2018 0:00,61.34180131,251.7831024,441.5842831,757.9579562,78.08020686,648.0060049,568.9513555,79.05464939,75.72580054,3.328848852,109.4216282,0,109.4216282,2.354406322,107.0672219,1.070616402,4.394444138,1.828819204,-1.828819204,0.217407186,0.176818356,1.18435103,38.0928003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.79051985,1.705759366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.858058289,36.61624858,73.64857814,38.32200794,568.9513555,0,0.750637091,41.35440513,-0.750637091,138.6455949,0.983389916,0,633.1496036,38.32200794,658.2305914,3,16,4% -3/31/2018 1:00,72.84093768,262.164404,232.7552882,593.6249927,57.6208189,411.8493943,354.211448,57.63794629,55.88333861,1.754607678,58.17169465,0,58.17169465,1.737480288,56.43421436,1.271314193,4.575632031,3.165950101,-3.165950101,0,0.247559655,0.434370072,13.97083465,0.011130384,1,0.305943863,0,0.923435498,0.962197462,0.724496596,1,53.7466965,1.258798554,0.001893503,0.312029739,0.994644674,0.71914127,0.961238037,0.922476074,0.313705423,13.42929768,54.06040192,14.68809623,350.2689385,0,0.596692276,53.36663513,-0.596692276,126.6333649,0.966204714,0,392.4919014,14.68809623,402.1049666,3,17,2% -3/31/2018 2:00,84.54722012,271.545227,35.27115258,180.1509201,18.15224517,91.00801304,73.1372362,17.87077685,17.604888,0.265888847,9.099256464,0,9.099256464,0.547357166,8.551899298,1.475627365,4.739358279,9.743913992,-9.743913992,0,0.514648483,0.136839292,4.401222,0.5318689,1,0.102270112,0,0.950971611,0.989733575,0.724496596,1,17.06120138,0.396558404,0.072641924,0.312029739,0.814741257,0.539237853,0.961238037,0.922476074,0.093840219,4.230621995,17.1550416,4.627180399,34.23781482,0,0.405977589,66.04759758,-0.405977589,113.9524024,0.926840492,0,48.88803475,4.627180399,51.91643177,3,18,6% -3/31/2018 3:00,96.45665787,280.8095262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683486265,4.901050803,-7.589284879,7.589284879,0.172002159,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186219333,79.26776954,-0.186219333,100.7322305,0.781499414,0,0,0,0,3,19,0% -3/31/2018 4:00,107.8371206,290.7559673,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882112811,5.07464895,-2.354085816,2.354085816,0.932726074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041213636,92.36203639,0.041213636,87.63796361,0,0,0,0,0,3,20,0% -3/31/2018 5:00,118.4244601,302.2717738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066896744,5.275637688,-1.130562492,1.130562492,0.723491262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.26323615,105.2621709,0.26323615,74.73782915,0,0.860056484,0,0,0,3,21,0% -3/31/2018 6:00,127.5849128,316.4136639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.226776805,5.522460233,-0.519863146,0.519863146,0.619055524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464703894,117.6910603,0.464703894,62.30893975,0,0.942404603,0,0,0,3,22,0% -3/31/2018 7:00,134.3454385,334.1443448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.344770237,5.831918995,-0.104380749,0.104380749,0.548003849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631874932,129.1885875,0.631874932,50.81141251,0,0.970870417,0,0,0,3,23,0% -4/1/2018 8:00,137.4814638,355.2342179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399504203,6.200006719,0.240936613,-0.240936613,0.488951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753346106,138.8810652,0.753346106,41.11893476,0,0.983629444,0,0,0,4,0,0% -4/1/2018 9:00,136.1834291,17.08383349,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376849225,0.298169143,0.578574689,-0.578574689,0.431211591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82082995,145.1679615,0.82082995,34.83203853,0,0.989086043,0,0,0,4,1,0% -4/1/2018 10:00,130.8085564,36.39069943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.283039999,0.635137522,0.964553214,-0.964553214,0.365205375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829719289,146.069913,0.829719289,33.93008701,0,0.989738655,0,0,0,4,2,0% -4/1/2018 11:00,122.5208946,51.96183379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138393013,0.906905085,1.491335812,-1.491335812,0.275120245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779401063,141.20577,0.779401063,38.79423005,0,0.985848176,0,0,0,4,3,0% -4/1/2018 12:00,112.4373515,64.443211,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962401986,1.124746212,2.410319417,-2.410319417,0.117964793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67329807,132.3221246,0.67329807,47.67787537,0,0.975738685,0,0,0,4,4,0% -4/1/2018 13:00,101.3236481,74.92067727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768431269,1.307612496,4.975378433,-4.975378433,0,#DIV/0!,0,0,0.242817824,1,0.198347048,0,0.939116308,0.977878271,0.724496596,1,0,0,0.037254791,0.312029739,0.899789142,0.624285738,0.961238037,0.922476074,0,0,0,0,0,0,-0.518635725,121.240783,0.518635725,58.75921696,0,0.95359322,0,0,0,4,5,0% -4/1/2018 14:00,89.23496753,84.35235526,0.501686497,4.807879523,0.437491984,0.428081911,0,0.428081911,0.424299987,0.003781925,1.667436145,1.532604448,0.134831697,0.013191997,0.121639699,1.557443991,1.472226331,-72.55150665,72.55150665,0,0.872042575,0.003297999,0.106074997,1,0.916228205,0,0.013782439,0.961238037,1,0.686155734,0.961659138,0.407853286,0.009356228,0.115824807,0.26847725,0.724496596,0.448993192,0.967935879,0.929173916,0.002389389,0.102329353,0.410242676,0.111685581,0,0.128389025,-0.318769312,108.5885144,0.318769312,71.41148558,0,0.893146758,0.410242676,0.226355823,0.558388034,4,6,36% -4/1/2018 15:00,77.75468349,93.55451599,143.5616388,465.7880342,44.76902594,44.5013029,0,44.5013029,43.41907463,1.082228274,86.03622757,49.87809484,36.15813273,1.349951312,34.80818142,1.357075236,1.632834334,-4.223638328,4.223638328,0.747561617,0.311845325,0.8942272,28.76142064,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.73606606,0.97803513,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.647864562,27.64657151,42.38393062,28.62460664,0,49.87809484,-0.107083246,96.14720462,0.107083246,83.85279538,0,0.583073551,42.38393062,57.70720451,80.15214183,4,7,89% -4/1/2018 16:00,66.07515081,103.3481898,356.7656748,705.1547118,70.79860036,155.9185358,84.56532409,71.35321169,68.66376134,2.689450355,88.63680736,0,88.63680736,2.13483902,86.50196834,1.153228935,1.803766188,-1.882858767,1.882858767,0.852141502,0.198445662,2.370705788,76.2500474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.00221915,1.546683603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.717568273,73.29444587,67.71978743,74.84112947,84.56532409,0,0.119924497,83.11225489,-0.119924497,96.88774511,0.633071005,0,121.2556421,74.84112947,170.2376645,4,8,40% -4/1/2018 17:00,54.88633186,114.7663214,552.032163,809.2257761,86.56516586,364.7698799,276.6535216,88.11635835,83.95490672,4.161451624,136.4568483,0,136.4568483,2.610259142,133.8465891,0.957947205,2.003050178,-1.009694099,1.009694099,0.70282155,0.156811816,3.118686072,100.3076645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.70064972,1.891123863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259477443,96.41954249,82.96012716,98.31066635,276.6535216,0,0.341874332,70.00889029,-0.341874332,109.9911097,0.903747429,0,332.985036,98.31066635,397.3274009,4,9,19% -4/1/2018 18:00,44.82850211,129.3020123,708.0990117,861.4440337,97.14556693,567.6234511,468.0692319,99.55421911,94.21626966,5.337949453,174.6161007,0,174.6161007,2.929297272,171.6868035,0.782404961,2.256745843,-0.507465694,0.507465694,0.616935434,0.137192067,3.573697661,114.9424013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56426209,2.122265902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.58913179,110.4870082,93.15339388,112.6092741,468.0692319,0,0.543354198,57.08773313,-0.543354198,122.9122669,0.957978994,0,541.5538857,112.6092741,615.2544034,4,10,14% -4/1/2018 19:00,37.02222674,148.8904553,812.4201397,887.7107639,103.6701011,737.449999,630.7815678,106.6684312,100.544065,6.124366181,200.1067048,0,200.1067048,3.126036049,196.9806687,0.646159753,2.59862867,-0.145316117,0.145316117,0.555004209,0.127606513,3.74681723,120.5105217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64677967,2.264802476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.714556329,115.8392973,99.361336,118.1040998,630.7815678,0,0.710571048,44.71860363,-0.710571048,135.2813964,0.97963406,0,717.296444,118.1040998,794.5932152,4,11,11% -4/1/2018 20:00,33.21140402,174.1870489,857.2471265,897.4654923,106.3778557,856.4245669,746.792105,109.6324618,103.1701709,6.462290942,211.0571755,0,211.0571755,3.207684843,207.8494907,0.579648349,3.040137518,0.160450935,-0.160450935,0.502714964,0.124092403,3.647473775,117.3152947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.17109254,2.323956749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642582334,112.7679236,101.8136749,115.0918803,746.792105,0,0.832112333,33.68365888,-0.832112333,146.3163411,0.989911959,0,841.0721105,115.0918803,916.3974444,4,12,9% -4/1/2018 21:00,34.77696476,200.9480687,839.3401867,893.665797,105.3022319,912.4814766,804.0271946,108.4542819,102.1269811,6.327300866,206.6829966,0,206.6829966,3.175250815,203.5077458,0.606972539,3.507205424,0.455106635,-0.455106635,0.452325871,0.125458346,3.296752559,106.0348948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1683388,2.300458407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388486006,101.9247741,100.5568248,104.2252325,804.0271946,0,0.89969561,25.88191464,-0.89969561,154.1180854,0.994425649,0,900.1020893,104.2252325,968.3154195,4,13,8% -4/1/2018 22:00,41.09416123,223.1349619,760.0121554,875.1993761,100.4353181,898.453699,795.3175836,103.1361154,97.40682271,5.729292658,187.3022416,0,187.3022416,3.028495408,184.2737462,0.717228417,3.894439762,0.778045187,-0.778045187,0.397100126,0.132149621,2.731572713,87.85676818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63114304,2.194134614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979015132,84.45126737,95.61015817,86.64540198,795.3175836,0,0.90872732,24.66993515,-0.90872732,155.3300649,0.994977994,0,886.9336521,86.64540198,943.6413348,4,14,6% -4/1/2018 23:00,50.3527546,239.6167462,625.1009774,836.0228689,91.66895396,811.4414027,717.8243307,93.61707198,88.90479677,4.712275211,154.3271263,0,154.3271263,2.764157184,151.5629691,0.878821355,4.182101164,1.18700316,-1.18700316,0.327164194,0.146646634,2.006643704,64.54055931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.45867232,2.00262247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453806533,62.03884053,86.91247885,64.041463,717.8243307,0,0.858618056,30.83822937,-0.858618056,149.1617706,0.99176689,0,798.8268826,64.041463,840.7407393,4,15,5% -4/1/2018 0:00,61.14453365,252.169966,444.9989842,759.5989342,78.4151905,651.2597629,571.8544894,79.4052735,76.05068319,3.354590311,110.2596631,0,110.2596631,2.364507315,107.8951557,1.067173432,4.401196181,1.813528007,-1.813528007,0.220022135,0.176214313,1.199149965,38.56878491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.10280941,1.713077501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.868780067,37.07378309,73.97158948,38.78686059,571.8544894,0,0.752837404,41.16323602,-0.752837404,138.836764,0.983584596,0,636.4388567,38.78686059,661.8240812,4,16,4% -4/1/2018 1:00,72.6611619,262.5293251,236.0102096,597.0922694,58.06358145,415.602339,357.5104441,58.09189489,56.31275024,1.779144651,58.97423895,0,58.97423895,1.750831213,57.22340774,1.268176513,4.582001106,3.126703062,-3.126703062,0,0.246021482,0.437707803,14.07818756,0.00452347,1,0.309544828,0,0.922868727,0.96163069,0.724496596,1,54.14219506,1.268471253,0.000771918,0.312029739,0.997813438,0.722310034,0.961238037,0.922476074,0.316706224,13.53248937,54.45890128,14.80096063,355.8932562,0,0.598752425,53.2194012,-0.598752425,126.7805988,0.966493031,0,398.4272533,14.80096063,408.114186,4,17,2% -4/1/2018 2:00,84.37455884,271.8972778,37.47375514,188.6712421,18.97929383,95.65407388,76.96458279,18.68949109,18.4069981,0.282492995,9.658241525,0,9.658241525,0.572295735,9.08594579,1.472613857,4.745502724,9.419915946,-9.419915946,0,0.506468961,0.143073934,4.601749524,0.519403325,1,0.105761951,0,0.950577603,0.989339566,0.724496596,1,17.84018171,0.414626312,0.071278049,0.312029739,0.817834739,0.542331335,0.961238037,0.922476074,0.098066983,4.423376678,17.93824869,4.83800299,36.98892262,0,0.407929592,65.9251588,-0.407929592,114.0748412,0.927429829,0,52.24287885,4.83800299,55.40925505,4,18,6% -4/1/2018 3:00,96.27222289,281.1579892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680267268,4.907132631,-7.78583559,7.78583559,0.138390008,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.18826596,79.14839511,-0.18826596,100.8516049,0.784418267,0,0,0,0,4,19,0% -4/1/2018 4:00,107.6329404,291.1076596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878549193,5.080787137,-2.370526284,2.370526284,0.935537559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.039053648,92.23817836,0.039053648,87.76182164,0,0,0,0,0,4,20,0% -4/1/2018 5:00,118.1876545,302.6269266,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062763707,5.281836275,-1.13264069,1.13264069,0.723846655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260888063,105.1227632,0.260888063,74.87723682,0,0.858346923,0,0,0,4,21,0% -4/1/2018 6:00,127.3023113,316.7561425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221844478,5.528437612,-0.518002726,0.518002726,0.618737373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462105928,117.5230829,0.462105928,62.47691712,0,0.9417997,0,0,0,4,22,0% -4/1/2018 7:00,134.0093649,334.4260024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338904646,5.836834845,-0.100549437,0.100549437,0.547348656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628982522,128.9750947,0.628982522,51.02490528,0,0.970506535,0,0,0,4,23,0% -4/2/2018 8:00,137.1021045,355.380072,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392883134,6.202552353,0.246440206,-0.246440206,0.488009932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750134978,138.6020715,0.750134978,41.39792852,0,0.983345329,0,0,0,4,0,0% -4/2/2018 9:00,135.7918344,17.05869986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370014608,0.297730479,0.586202029,-0.586202029,0.429907239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817297802,144.815201,0.817297802,35.18479897,0,0.988822789,0,0,0,4,1,0% -4/2/2018 10:00,130.433942,36.23894743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276501744,0.63248895,0.975675911,-0.975675911,0.363303282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825885955,145.6784166,0.825885955,34.32158342,0,0.989458953,0,0,0,4,2,0% -4/2/2018 11:00,122.1737995,51.74654361,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132335061,0.903147563,1.509597096,-1.509597096,0.271997382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775307163,140.8328894,0.775307163,39.16711063,0,0.985509431,0,0,0,4,3,0% -4/2/2018 12:00,112.1151694,64.20227823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956778847,1.120541142,2.448245933,-2.448245933,0.111478977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669002225,131.9901027,0.669002225,48.00989728,0,0.975261833,0,0,0,4,4,0% -4/2/2018 13:00,101.0191662,74.6694369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763117059,1.303227524,5.118337319,-5.118337319,0,#DIV/0!,0,0,0.256579389,1,0.192945427,0,0.939837805,0.978599768,0.724496596,1,0,0,0.039137158,0.312029739,0.895015339,0.619511935,0.961238037,0.922476074,0,0,0,0,0,0,-0.514210529,120.9447002,0.514210529,59.05529979,0,0.952763562,0,0,0,4,5,0% -4/2/2018 14:00,88.97569254,84.0945997,0.89795958,7.600972365,0.762080148,0.745869819,0,0.745869819,0.73910062,0.006769199,2.634034454,2.393334229,0.240700225,0.022979528,0.217720696,1.552918789,1.467727648,-54.24637655,54.24637655,0,0.84867979,0.005744882,0.184775155,1,0.886451771,0,0.018432323,0.961238037,1,0.673555542,0.949058947,0.710451629,0.016196855,0.115824807,0.254177287,0.724496596,0.448993192,0.970048719,0.931286756,0.004162147,0.178427642,0.714613776,0.194624497,0,0.271758864,-0.314872113,108.3530935,0.314872113,71.64690645,0,0.891205372,0.714613776,0.436817456,1.000502065,4,6,40% -4/2/2018 15:00,77.4626,93.28943536,148.7076126,474.6233497,45.67787174,45.42153617,0,45.42153617,44.30051538,1.121020798,86.16541974,48.73218104,37.43323871,1.377356366,36.05588234,1.351977417,1.628207804,-4.130411747,4.130411747,0.763504302,0.307165659,0.937338915,30.14804159,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.58334043,0.997889999,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.679098853,28.97944432,43.26243928,29.97733431,0,48.73218104,-0.102675482,95.89325756,0.102675482,84.10674244,0,0.563028824,43.26243928,57.41495692,80.83938029,4,7,87% -4/2/2018 16:00,65.77399211,103.0748609,362.1737817,708.7428129,71.35036488,159.9774189,88.04831179,71.92910707,69.19888812,2.730218949,89.96470322,0,89.96470322,2.151476756,87.81322647,1.147972724,1.798995699,-1.862280332,1.862280332,0.848622383,0.197005881,2.398346266,77.13906018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.51660337,1.558737586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.737593705,74.14899877,68.25419708,75.70773636,88.04831179,0,0.124231682,82.86361144,-0.124231682,97.13638856,0.647526177,0,125.2677838,75.70773636,174.8169831,4,8,40% -4/2/2018 17:00,54.566725,114.4899316,557.2556684,811.1229591,87.00350969,369.2225867,280.6417252,88.58086148,84.38003287,4.200828614,137.7365653,0,137.7365653,2.623476826,135.1130885,0.952369013,1.998226267,-1.002580568,1.002580568,0.701605064,0.156128532,3.14303068,101.0906708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.10929714,1.90070003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.277115028,97.1721979,83.38641217,99.07289793,280.6417252,0,0.345991594,69.75766192,-0.345991594,110.2423381,0.905487818,0,337.5040757,99.07289793,402.345306,4,9,19% -4/2/2018 18:00,44.48001204,129.0490058,713.0292107,862.6540517,97.52992548,572.023927,472.0597733,99.96415375,94.58903838,5.375115375,175.8230744,0,175.8230744,2.9408871,172.8821873,0.776322661,2.252330048,-0.505053301,0.505053301,0.616522891,0.13678251,3.59582239,115.6540086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92258156,2.130662693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605161081,111.1710322,93.52774264,113.3016949,472.0597733,0,0.54721794,56.8236394,-0.54721794,123.1763606,0.958628727,0,546.057802,113.3016949,620.2114953,4,10,14% -4/2/2018 19:00,36.64160202,148.7397476,817.0203173,888.6010623,104.0207321,741.6260178,634.5828503,107.0431674,100.8841232,6.159044262,201.2326439,0,201.2326439,3.136608867,198.0960351,0.639516598,2.595998325,-0.145237294,0.145237294,0.55499073,0.127317191,3.767167475,121.1650556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.97365652,2.272462447,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.729300012,116.4684601,99.70295653,118.7409226,634.5828503,0,0.714136948,44.42748653,-0.714136948,135.5725135,0.979985418,0,721.5848963,118.7409226,799.2984553,4,11,11% -4/2/2018 20:00,32.82262072,174.2658777,861.5170133,898.2091762,106.7045354,860.3068106,750.3253315,109.9814791,103.4869999,6.494479153,212.1023096,0,212.1023096,3.217535439,208.8847742,0.572862801,3.041513339,0.158945791,-0.158945791,0.502972358,0.123856562,3.666344509,117.9222424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47564065,2.331093473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.656254116,113.3513448,102.1318948,115.6824382,750.3253315,0,0.83535701,33.34696921,-0.83535701,146.6530308,0.990145352,0,845.063034,115.6824382,920.7748762,4,12,9% -4/2/2018 21:00,34.42994425,201.2656552,843.3065225,894.3722255,105.6121055,916.061095,807.2763833,108.7847116,102.4275109,6.357200781,207.6540245,0,207.6540245,3.184594648,204.4694299,0.600915888,3.512748355,0.452110631,-0.452110631,0.452838218,0.125235727,3.314405595,106.6026771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45721947,2.307227982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401275571,102.4705481,100.858495,104.7777761,807.2763833,0,0.902617904,25.49565842,-0.902617904,154.5043416,0.994605575,0,903.7800862,104.7777761,972.3550451,4,13,8% -4/2/2018 22:00,40.81210639,223.5481494,763.7228432,875.9734825,100.7362045,901.7727929,798.3168912,103.4559016,97.69863626,5.75726539,188.2110137,0,188.2110137,3.037568243,185.1734454,0.712305631,3.901651243,0.773140196,-0.773140196,0.397938929,0.131901521,2.748240422,88.39285898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.91164532,2.200707852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.99109083,84.96657824,95.90273615,87.16728609,798.3168912,0,0.91134824,24.30766176,-0.91134824,155.6923382,0.99513623,0,890.3367978,87.16728609,947.3860432,4,14,6% -4/2/2018 23:00,50.12370585,240.0288884,628.6175678,837.026916,91.97268828,814.60091,720.6627529,93.93815714,89.19937238,4.738784756,155.1889231,0,155.1889231,2.773315895,152.4156072,0.8748237,4.189294402,1.178912281,-1.178912281,0.328547816,0.146309446,2.022454635,65.04909322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.7418296,2.009257925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465261499,62.52766266,87.2070911,64.53692059,720.6627529,0,0.860979186,30.57329575,-0.860979186,149.4267043,0.991926587,0,802.0516358,64.53692059,844.2897596,4,15,5% -4/2/2018 0:00,60.94882885,252.5566034,448.3806511,761.2051796,78.74660609,654.4602774,574.7080893,79.75218811,76.37210537,3.380082744,111.0895807,0,111.0895807,2.374500718,108.71508,1.063757739,4.407944277,1.798462174,-1.798462174,0.222598544,0.175624452,1.213886577,39.04276503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.41177263,1.720317687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.879456693,37.52939081,74.29122933,39.24970849,574.7080893,0,0.754997607,40.9748393,-0.754997607,139.0251607,0.983774625,0,639.6744641,39.24970849,665.3626133,4,16,4% -4/2/2018 1:00,72.48242101,262.8933818,239.2467767,600.4877292,58.50093312,419.3022915,360.7618341,58.54045741,56.73691414,1.803543261,59.77216988,0,59.77216988,1.764018979,58.0081509,1.265056897,4.588355094,3.088325039,-3.088325039,0.002019003,0.244521301,0.443755715,14.27270919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.53767997,1.278025745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321499505,13.71947096,54.85917947,14.9974967,360.7618341,0,0.600781359,53.07412111,-0.600781359,126.9258789,0.966775048,0,403.6347188,14.9974967,413.4502805,4,17,2% -4/2/2018 2:00,84.20229163,272.2480142,39.71477995,197.1371241,19.8006766,100.3022476,80.79924767,19.50299993,19.20361314,0.299386787,10.22637166,0,10.22637166,0.597063456,9.6293082,1.469607227,4.751624231,9.115532013,-9.115532013,0,0.498571983,0.149265864,4.800903286,0.50707206,1,0.109265937,0,0.950179385,0.988941348,0.724496596,1,18.61379797,0.432570442,0.069915909,0.312029739,0.820939088,0.545435684,0.961238037,0.922476074,0.102267382,4.61481085,18.71606535,5.047381291,39.8282067,0,0.409863175,65.80376001,-0.409863175,114.19624,0.92800807,0,55.67696256,5.047381291,58.98037267,4,18,6% -4/2/2018 3:00,96.08796793,281.5046866,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677051412,4.913183641,-7.993841939,7.993841939,0.102818827,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190301563,79.02961641,-0.190301563,100.9703836,0.787259121,0,0,0,0,4,19,0% -4/2/2018 4:00,107.4286374,291.4569943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874983433,5.086884179,-2.387324834,2.387324834,0.938410281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036894422,92.11437454,0.036894422,87.88562546,0,0,0,0,0,4,20,0% -4/2/2018 5:00,117.950585,302.9788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058626064,5.287979046,-1.13476291,1.13476291,0.724209576,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258531397,104.9829383,0.258531397,75.01706175,0,0.856599892,0,0,0,4,21,0% -4/2/2018 6:00,127.0195971,317.0943973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216910183,5.534341272,-0.516137064,0.516137064,0.618418326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459491607,117.3543067,0.459491607,62.64569332,0,0.941184084,0,0,0,4,22,0% -4/2/2018 7:00,133.6737485,334.7029614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333047035,5.841668692,-0.096695103,0.096695103,0.546689526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626068087,128.7606252,0.626068087,51.2393748,0,0.970136482,0,0,0,4,23,0% -4/3/2018 8:00,136.7239699,355.5227806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38628344,6.205043087,0.251982434,-0.251982434,0.487062156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746898652,138.322439,0.746898652,41.67756102,0,0.983056513,0,0,0,4,0,0% -4/3/2018 9:00,135.4018012,17.03348841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363207244,0.297290456,0.593893092,-0.593893092,0.428591989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813739999,144.4629657,0.813739999,35.53703434,0,0.988555312,0,0,0,4,1,0% -4/3/2018 10:00,130.0607291,36.08900393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269987949,0.629871942,0.986916263,-0.986916263,0.361381069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822029261,145.2884495,0.822029261,34.71155047,0,0.989174915,0,0,0,4,2,0% -4/3/2018 11:00,121.8279011,51.53334401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126297995,0.899426527,1.52812497,-1.52812497,0.268828929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.771194794,140.4613018,0.771194794,39.53869816,0,0.985165537,0,0,0,4,3,0% -4/3/2018 12:00,111.7941402,63.96306401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951175831,1.116366067,2.487050778,-2.487050778,0.104842958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664695057,131.6589352,0.664695057,48.34106476,0,0.974777536,0,0,0,4,4,0% -4/3/2018 13:00,100.7159402,74.41941669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757824765,1.298863849,5.268579969,-5.268579969,0,#DIV/0!,0,0,0.270513107,1,0.187573217,0,0.940548983,0.979310946,0.724496596,1,0,0,0.04102079,0.312029739,0.89026633,0.614762926,0.961238037,0.922476074,0,0,0,0,0,0,-0.509782921,120.6493713,0.509782921,59.35062871,0,0.951919037,0,0,0,4,5,0% -4/3/2018 14:00,88.71369196,83.83756069,1.456187572,11.37900161,1.200746912,1.17551732,0,1.17551732,1.164539963,0.010977357,3.927185893,3.537909407,0.389276486,0.03620695,0.353069536,1.548346016,1.463241471,-43.24281244,43.24281244,0,0.824582585,0.009051737,0.291134991,1,0.855597965,0,0.023121109,0.961238037,1,0.661021622,0.936525026,1.119400108,0.025374007,0.115824807,0.239960824,0.724496596,0.448993192,0.972106195,0.933344232,0.006557953,0.281384556,1.125958061,0.306758563,0,0.510881319,-0.310915626,108.114419,0.310915626,71.88558099,0,0.889184667,1.125958061,0.761026399,1.624034618,4,6,44% -4/3/2018 15:00,77.17213867,93.02452665,153.8440934,483.1841433,46.566265,46.32186206,0,46.32186206,45.1621203,1.15974176,86.19500005,47.48957376,38.70542629,1.404144701,37.30128159,1.346907911,1.623584275,-4.041782373,4.041782373,0.778660817,0.302684776,0.980743527,31.5440831,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.41154786,1.017298056,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.710545346,30.32137251,44.1220932,31.33867057,0,47.48957376,-0.098284628,95.64040027,0.098284628,84.35959973,0,0.541273447,44.1220932,57.04351586,81.45593346,4,7,85% -4/3/2018 16:00,65.47477649,102.8010185,367.5380998,712.2341599,71.89411746,164.0265934,91.52969142,72.496902,69.72624456,2.770657445,91.2817404,0,91.2817404,2.167872902,89.1138675,1.142750427,1.794216248,-1.842284246,1.842284246,0.845202851,0.195609972,2.425662707,78.01765081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02351843,1.570616538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757384374,74.9935335,68.78090281,76.56415004,91.52969142,0,0.128510673,82.6164617,-0.128510673,97.3835383,0.660927258,0,129.2753708,76.56415004,179.3850757,4,8,39% -4/3/2018 17:00,54.24926986,114.2120782,562.424255,812.9731725,87.4365429,373.6383192,284.5985191,89.03980012,84.80000852,4.239791603,139.0028065,0,139.0028065,2.636534375,136.3662721,0.946828376,1.993376811,-0.995620727,0.995620727,0.700414861,0.155463677,3.167079677,101.8641692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.51299372,1.910160179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294538445,97.91571401,83.80753216,99.82587419,284.5985191,0,0.350071231,69.50832803,-0.350071231,110.491672,0.907171925,0,341.9873186,99.82587419,407.3213568,4,9,19% -4/3/2018 18:00,44.13368188,128.7933873,717.8985517,863.8345511,97.90974476,576.3734534,476.0042262,100.3692272,94.95740471,5.411822524,177.0151555,0,177.0151555,2.952340053,174.0628154,0.77027806,2.247868664,-0.502689714,0.502689714,0.616118694,0.136383817,3.617662063,116.3564476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.27666929,2.138960318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62098385,111.8462432,93.89765314,113.9852036,476.0042262,0,0.551036336,56.56186094,-0.551036336,123.4381391,0.959261882,0,550.5103631,113.9852036,625.1113991,4,10,14% -4/3/2018 19:00,36.2628146,148.5862945,821.5571774,889.4692652,104.3671386,745.7426717,638.3293424,107.4133293,101.2200843,6.19324503,202.3431036,0,202.3431036,3.147054302,199.1960493,0.632905511,2.593320062,-0.145168354,0.145168354,0.55497894,0.127035758,3.787246923,121.8108796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.2965951,2.280030129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743847504,117.0892508,100.0404426,119.3692809,638.3293424,0,0.717651938,44.13904115,-0.717651938,135.8609589,0.980328343,0,725.8127888,119.3692809,803.9375958,4,11,11% -4/3/2018 20:00,32.43543173,174.3452982,865.724313,898.9340408,107.027211,864.1252469,753.7991057,110.3261412,103.7999457,6.526195555,213.132148,0,213.132148,3.227265299,209.9048827,0.566105078,3.042899488,0.157451486,-0.157451486,0.5032279,0.12362736,3.684967522,118.5212225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.77645601,2.338142723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.669746426,113.9271072,102.4462024,116.26525,753.7991057,0,0.838547737,33.01291951,-0.838547737,146.9870805,0.990373102,0,848.9885614,116.26525,925.0818422,4,12,9% -4/3/2018 21:00,34.0849858,201.5869139,847.2140065,895.060783,105.9182037,919.5759841,810.4649481,109.1110361,102.724379,6.386657046,208.6106692,0,208.6106692,3.193824637,205.4168446,0.594895228,3.518355376,0.44914257,-0.44914257,0.453345787,0.12501942,3.331843485,107.1635396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.74258042,2.313915077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.413909263,103.0096705,101.1564897,105.3235855,810.4649481,0,0.905485933,25.11119023,-0.905485933,154.8888098,0.994781031,0,907.391646,105.3235855,976.3238263,4,13,8% -4/3/2018 22:00,40.5324045,223.9638786,767.3811361,876.7286702,101.0335588,905.0293845,801.2575172,103.7718673,97.9870242,5.784843147,189.1069755,0,189.1069755,3.046534571,186.0604409,0.707423912,3.908907086,0.768285726,-0.768285726,0.398769093,0.131660206,2.764734339,88.92336005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.18885478,2.207203926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003040617,85.47651604,96.19189539,87.68371997,801.2575172,0,0.913917321,23.94756287,-0.913917321,156.0524371,0.995290456,0,893.6758549,87.68371997,951.063096,4,14,6% -4/3/2018 23:00,49.89672121,240.4417504,632.090566,838.0080855,92.27307481,817.7025803,723.4469134,94.25566684,89.49070116,4.764965683,156.0400495,0,156.0400495,2.782373657,153.2576758,0.870862071,4.196500204,1.170915933,-1.170915933,0.329915272,0.145980782,2.038141473,65.55363585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0218659,2.015820243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476626559,63.01264823,87.49849246,65.02846847,723.4469134,0,0.863293476,30.31158986,-0.863293476,149.6884101,0.992082268,0,805.2173473,65.02846847,847.7771793,4,15,5% -4/3/2018 0:00,60.7546714,252.9428586,451.7296225,762.7776434,79.0745254,657.6083084,577.512843,80.09546541,76.6901367,3.405328706,111.9114656,0,111.9114656,2.384388695,109.5270769,1.060369052,4.414685702,1.783614748,-1.783614748,0.225137604,0.175048351,1.228560829,39.51473942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.71747645,1.727481493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890088139,37.98307055,74.60756459,39.71055204,577.512843,0,0.757118209,40.78920004,-0.757118209,139.2108,0.983960114,0,642.8571676,39.71055204,668.8469297,4,16,4% -4/3/2018 1:00,72.30469537,263.2564369,242.4651935,603.8136093,58.93303409,422.950412,363.9666213,58.98379072,57.15598567,1.827805046,60.56554174,0,60.56554174,1.777048418,58.78849332,1.261954999,4.594691601,3.050782746,-3.050782746,0.008439114,0.243057708,0.45593798,14.66453273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.94050746,1.287465529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330325515,14.09610665,55.27083298,15.38357218,363.9666213,0,0.602779758,52.93075636,-0.602779758,127.0692436,0.967050964,0,407.2451049,15.38357218,417.3133452,4,17,2% -4/3/2018 2:00,84.03041428,272.5973101,41.99201343,205.5396251,20.61578405,104.9475732,84.63687754,20.31069564,19.9941421,0.316553535,10.80309178,0,10.80309178,0.621641953,10.18144982,1.466607401,4.757720594,8.829011148,-8.829011148,0,0.490945358,0.155410488,4.998535525,0.494871976,1,0.11278233,0,0.949776904,0.988538867,0.724496596,1,19.38145477,0.450377479,0.068555397,0.312029739,0.824054486,0.548551082,0.961238037,0.922476074,0.106439089,4.804782475,19.48789385,5.255159955,42.75245875,0,0.411778885,65.68336937,-0.411778885,114.3166306,0.92857561,0,59.1867843,5.255159955,62.62618139,4,18,6% -4/3/2018 3:00,95.90388539,281.8494964,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673838566,4.919201707,-8.214385428,8.214385428,0.06510367,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.192326855,78.91139197,-0.192326855,101.088608,0.790025905,0,0,0,0,4,19,0% -4/3/2018 4:00,107.2242195,291.8038514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871415668,5.092937977,-2.404500526,2.404500526,0.941347497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0347354,91.99059225,0.0347354,88.00940775,0,0,0,0,0,4,20,0% -4/3/2018 5:00,117.7132815,303.3275234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054484335,5.294063996,-1.136933998,1.136933998,0.724580854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256165845,104.8426779,0.256165845,75.15732207,0,0.854813948,0,0,0,4,21,0% -4/3/2018 6:00,126.7368265,317.4283336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211974906,5.540169561,-0.514269001,0.514269001,0.618098868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45686096,117.1847358,0.45686096,62.81526424,0,0.940557512,0,0,0,4,22,0% -4/3/2018 7:00,133.3386693,334.9751637,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3271988,5.84641952,-0.09282007,0.09282007,0.546026856,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623132049,128.5452158,0.623132049,51.45478421,0,0.969760186,0,0,0,4,23,0% -4/4/2018 8:00,136.3471537,355.6622865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379706758,6.207477925,0.25756106,-0.25756106,0.486108154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743637975,138.0422443,0.743637975,41.95775565,0,0.982762982,0,0,0,4,0,0% -4/4/2018 9:00,135.0134397,17.0080956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356429058,0.296847268,0.601645541,-0.601645541,0.427266243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810157817,144.1113535,0.810157817,35.88864653,0,0.98828363,0,0,0,4,1,0% -4/4/2018 10:00,129.6890473,35.94076305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26350088,0.627284651,0.998271902,-0.998271902,0.35943914,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818150885,144.9001163,0.818150885,35.09988371,0,0.988886578,0,0,0,4,2,0% -4/4/2018 11:00,121.4833391,51.32216584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284254,0.895740773,1.546918499,-1.546918499,0.265615046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767065974,140.091142,0.767065974,39.90885797,0,0.984816559,0,0,0,4,3,0% -4/4/2018 12:00,111.4744049,63.72553366,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945595397,1.11222038,2.526750317,-2.526750317,0.098053937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660378851,131.3287725,0.660378851,48.6712275,0,0.974285885,0,0,0,4,4,0% -4/4/2018 13:00,100.4141085,74.17060443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752556808,1.294521255,5.426617032,-5.426617032,0,#DIV/0!,0,0,0.284616928,1,0.182232476,0,0.941249657,0.98001162,0.724496596,1,0,0,0.042904972,0.312029739,0.885543979,0.610040575,0.961238037,0.922476074,0,0,0,0,0,0,-0.505355357,120.3549446,0.505355357,59.64505543,0,0.951059721,0,0,0,4,5,0% -4/4/2018 14:00,88.44954255,83.58123916,2.198414126,16.23402859,1.75916539,1.722692637,0,1.722692637,1.706120063,0.016572574,5.568450768,4.982374483,0.586076284,0.053045327,0.533030957,1.543735739,1.458767816,-35.91203145,35.91203145,0,0.800197456,0.013261332,0.426530016,1,0.823678956,0,0.027838627,0.961238037,1,0.648585162,0.924088566,1.6399875,0.036981198,0.115824807,0.225863825,0.724496596,0.448993192,0.974103609,0.935341646,0.00960779,0.412569287,1.64959529,0.449550485,0,0.878497472,-0.306909308,107.8730694,0.306909308,72.1269306,0,0.887085423,1.64959529,1.228852787,2.453854861,4,6,49% -4/4/2018 15:00,76.88343849,92.75979709,158.9667228,491.4764382,47.43458449,47.20261506,0,47.20261506,46.00425675,1.198358304,86.12978637,46.15613624,39.97365014,1.430327737,38.5433224,1.341869142,1.618963873,-3.957456142,3.957456142,0.793081452,0.298393171,1.024386079,32.94777759,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22104145,1.036267577,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.742164227,31.67065705,44.96320567,32.70692463,0,46.15613624,-0.093913223,95.38877241,0.093913223,84.61122759,0,0.517593609,44.96320567,56.59704577,82.00484019,4,7,82% -4/4/2018 16:00,65.17763956,102.5266682,372.8560319,715.6304489,72.42984465,168.0630607,95.00649688,73.05656386,70.2458176,2.810746263,92.58728876,0,92.58728876,2.184027054,90.40326171,1.137564409,1.789427931,-1.822856247,1.822856247,0.841880467,0.194256867,2.452646711,78.88554915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.5229518,1.582320166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776934193,75.8277904,69.299886,77.41011057,95.00649688,0,0.132759159,82.37093717,-0.132759159,97.62906283,0.673378152,0,133.2751853,77.41011057,183.9385544,4,8,38% -4/4/2018 17:00,53.93410461,113.9327491,567.5358432,814.7769278,87.86419403,378.0147206,288.5216313,89.49308931,85.2147644,4.278324914,140.2550655,0,140.2550655,2.649429634,137.6056359,0.941327705,1.988501598,-0.988814349,0.988814349,0.699250902,0.154816995,3.19082595,102.6279309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.91167284,1.919502751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.311742538,98.64987085,84.22341538,100.5693736,288.5216313,0,0.354111195,69.26101861,-0.354111195,110.7389814,0.908801414,0,346.4322818,100.5693736,412.2529255,4,9,19% -4/4/2018 18:00,43.78965155,128.5350925,722.7054147,864.9857787,98.28495913,580.6701121,479.9007484,100.7693637,95.32130498,5.448058688,178.1919491,0,178.1919491,2.963654151,175.228295,0.764273598,2.243360569,-0.500376276,0.500376276,0.615723072,0.13599588,3.639211412,117.0495487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.62646406,2.147157343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.636596279,112.5124784,94.26306034,114.6596358,479.9007484,0,0.554807675,56.30253109,-0.554807675,123.6974689,0.95987868,0,554.9095573,114.6596358,629.9519957,4,10,14% -4/4/2018 19:00,35.88599265,148.4299472,826.0295595,890.3155613,104.7092738,749.7985027,642.0196401,107.7788626,101.5519029,6.226959736,203.4378011,0,203.4378011,3.157370941,200.2804301,0.626328727,2.590591288,-0.145110779,0.145110779,0.554969094,0.126762139,3.807052117,122.4478827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.61555174,2.287504499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758196299,117.7015624,100.373748,119.9890669,642.0196401,0,0.721114701,43.85341091,-0.721114701,136.1465891,0.980662903,0,729.9785921,119.9890669,808.5090366,4,11,11% -4/4/2018 20:00,32.0499351,174.4251649,869.8683054,899.6402827,107.3458574,867.8789063,757.2124879,110.6664184,104.1089837,6.55743472,214.1465153,0,214.1465153,3.236873663,210.9096416,0.559376893,3.044293426,0.155966551,-0.155966551,0.503481839,0.123404723,3.703340929,119.1121744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0735151,2.34510395,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683057897,114.4951527,102.756573,116.8402567,757.2124879,0,0.841683618,32.68166513,-0.841683618,147.3183349,0.990595256,0,852.8476712,116.8402567,929.3172823,4,12,9% -4/4/2018 21:00,33.74215952,201.9117138,851.0623126,895.7317111,106.2205226,923.0256639,813.5924148,109.4332491,103.0175819,6.415667202,209.5528516,0,209.5528516,3.202940667,206.3499109,0.58891178,3.524024204,0.446200908,-0.446200908,0.45384884,0.124809337,3.34906556,107.7174607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02441817,2.32051961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.426386597,103.5421205,101.4508048,105.8626401,813.5924148,0,0.90829922,24.72863559,-0.90829922,155.2713644,0.994952061,0,910.9362547,105.8626401,980.2212354,4,13,8% -4/4/2018 22:00,40.2550885,224.3819678,770.9870278,877.4652689,101.3273976,908.2234532,804.1394246,104.0840286,98.2720027,5.812025882,189.990126,0,189.990126,3.055394896,186.9347311,0.702583835,3.91620412,0.763479912,-0.763479912,0.399590935,0.131425554,2.781054555,89.44827431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46278696,2.213623201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014864558,85.9810836,96.47765151,88.1947068,804.1394246,0,0.916434477,23.58972983,-0.916434477,156.4102702,0.995440726,0,896.9507839,88.1947068,954.6724556,4,14,6% -4/4/2018 23:00,49.67180249,240.8551531,635.5201856,838.9668796,92.57015108,820.7467974,726.1771583,94.56963908,89.77881948,4.790819604,156.8805584,0,156.8805584,2.791331603,154.0892268,0.866936499,4.203715442,1.163011274,-1.163011274,0.331267048,0.145660442,2.053704525,66.05419707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.29881618,2.022310244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487901937,63.49380672,87.78671812,65.51611696,726.1771583,0,0.865561175,30.05315397,-0.865561175,149.946846,0.992234008,0,808.3243904,65.51611696,851.2033786,4,15,5% -4/4/2018 0:00,60.56204783,253.3285762,455.0462035,764.3172262,79.39901553,660.7045892,580.2694164,80.43517276,77.00484226,3.430330494,112.7253936,0,112.7253936,2.39417327,110.3312204,1.057007136,4.421417743,1.768979318,-1.768979318,0.22764041,0.174485613,1.24317251,39.9847013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.01998341,1.734570384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.900674252,38.43481578,74.92065766,40.16938617,580.2694164,0,0.75919971,40.60630321,-0.75919971,139.3936968,0.984141176,0,645.9876836,40.16938617,672.2777435,4,16,4% -4/4/2018 1:00,72.12796808,263.6183542,245.6656217,607.0720106,59.360033,426.547792,367.1257518,59.42204021,57.57010899,1.851931226,61.35439821,0,61.35439821,1.78992401,59.5644742,1.258870526,4.60100825,3.014045334,-3.014045334,0.014721581,0.241629385,0.46815673,15.05752973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.33857855,1.296793852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339177958,14.47387032,55.6777565,15.77066417,367.1257518,0,0.604748276,52.78926982,-0.604748276,127.2107302,0.967320971,0,410.8061953,15.77066417,421.1277796,4,17,3% -4/4/2018 2:00,83.85892492,272.9450402,44.30332515,213.8708341,21.42409056,109.5855488,88.47349644,21.11205236,20.77807518,0.333977179,11.38786948,0,11.38786948,0.646015377,10.74185411,1.463614347,4.763789628,8.558809824,-8.558809824,0,0.483577485,0.161503844,5.194518795,0.482800262,1,0.116311322,0,0.949370112,0.988132075,0.724496596,1,20.14263571,0.468035941,0.067196434,0.312029739,0.827181061,0.551677657,0.961238037,0.922476074,0.110580192,4.993169049,20.2532159,5.46120499,45.75846918,0,0.41367724,65.5639564,-0.41367724,114.4360436,0.929132824,0,62.76891157,5.46120499,66.34316101,4,18,6% -4/4/2018 3:00,95.71997174,282.1922984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670628667,4.925184731,-8.448679911,8.448679911,0.025036953,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.19434249,78.79368375,-0.19434249,101.2063163,0.792722243,0,0,0,0,4,19,0% -4/4/2018 4:00,107.0196991,292.1481128,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867846113,5.098946473,-2.422072672,2.422072672,0.944352511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032576093,91.86680294,0.032576093,88.13319706,0,0,0,0,0,4,20,0% -4/4/2018 5:00,117.4757783,303.6727408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050339122,5.300089175,-1.139158709,1.139158709,0.724961302,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.253791182,104.7019688,0.253791182,75.29803117,0,0.852987639,0,0,0,4,21,0% -4/4/2018 6:00,126.4540602,317.757862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207039704,5.545920916,-0.512401323,0.512401323,0.617779477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.4542141,117.0143795,0.4542141,62.98562053,0,0.939919754,0,0,0,4,22,0% -4/4/2018 7:00,133.0042103,335.2425575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321361388,5.851086421,-0.088926647,0.088926647,0.545361042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620174913,128.3289086,0.620174913,51.67109136,0,0.969377584,0,0,0,4,23,0% -4/5/2018 8:00,135.9717516,355.79854,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373154755,6.209855997,0.26317383,-0.26317383,0.485148314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.740353869,137.7615685,0.740353869,42.23843146,0,0.982464728,0,0,0,4,0,0% -4/5/2018 9:00,134.6268603,16.98242644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349681974,0.296399256,0.609456984,-0.609456984,0.425930407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806552593,143.7604651,0.806552593,36.23953494,0,0.988007762,0,0,0,4,1,0% -4/5/2018 10:00,129.3190252,35.79412617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257042776,0.624725355,1.009740336,-1.009740336,0.357477922,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814252543,144.513522,0.814252543,35.48647801,0,0.98859399,0,0,0,4,2,0% -4/5/2018 11:00,121.1402513,51.1129451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114296241,0.892089182,1.56597651,-1.56597651,0.262355934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762922749,139.722543,0.762922749,40.27745705,0,0.984462565,0,0,0,4,3,0% -4/5/2018 12:00,111.1561021,63.48965644,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940039966,1.108103546,2.567360931,-2.567360931,0.091109113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656055898,130.9997623,0.656055898,49.00023773,0,0.973786982,0,0,0,4,4,0% -4/5/2018 13:00,100.1138073,73.92299149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747315563,1.290199594,5.593006888,-5.593006888,0,#DIV/0!,0,0,0.29888858,1,0.176925221,0,0.941939659,0.980701622,0.724496596,1,0,0,0.044788982,0.312029739,0.880850122,0.605346718,0.961238037,0.922476074,0,0,0,0,0,0,-0.500930276,120.0615657,0.500930276,59.93843433,0,0.95018571,0,0,0,4,5,0% -4/5/2018 14:00,88.1838356,83.32563987,3.140286268,22.20453631,2.436563659,2.386765079,0,2.386765079,2.363092275,0.023672804,7.559800737,6.72493059,0.834870147,0.073471384,0.761398763,1.539098278,1.454306767,-30.68800596,30.68800596,0,0.77590495,0.018367846,0.590773069,1,0.790712306,0,0.032574494,0.961238037,1,0.636276428,0.911779832,2.271494179,0.050984431,0.115824807,0.211920814,0.724496596,0.448993192,0.976036918,0.937274955,0.013307442,0.571823737,2.284801621,0.622808168,0,1.407445219,-0.302862915,107.6296378,0.302862915,72.37036216,0,0.884908807,2.284801621,1.868268837,3.507546209,4,6,54% -4/5/2018 15:00,76.59663548,92.49525835,164.0713118,499.5064219,48.28321241,48.06413426,0,48.06413426,46.82729541,1.236838852,85.97457287,44.73766678,41.23690609,1.455917,39.78098909,1.336863485,1.614346801,-3.877163352,3.877163352,0.806812328,0.29428187,1.068213137,34.35740645,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.01217751,1.05480691,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.773916782,33.02564593,45.78609429,34.08045284,0,44.73766678,-0.089563747,95.13851028,0.089563747,84.86148972,0,0.491738408,45.78609429,56.07968187,82.48912448,4,7,80% -4/5/2018 16:00,64.88271437,102.2518209,378.1250614,718.9333799,72.95753639,172.0838869,98.47582294,73.60806392,70.75759748,2.850466433,93.88073781,0,93.88073781,2.199938907,91.68079891,1.132416993,1.784630941,-1.803982385,1.803982385,0.838652847,0.192945519,2.479290258,79.74249721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.0148941,1.593848249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.796237352,76.65152147,69.81113145,78.24536972,98.47582294,0,0.136974893,82.12716606,-0.136974893,97.87283394,0.6849696,0,137.2640765,78.24536972,188.4741061,4,8,37% -4/5/2018 17:00,53.62136533,113.651939,572.5884299,816.5347516,88.28639614,382.3495067,292.4088577,89.940649,85.62423556,4.316413447,141.4928546,0,141.4928546,2.662160586,138.830694,0.935869374,1.983600537,-0.982161057,0.982161057,0.698113122,0.154188229,3.214262705,103.3817376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.30527209,1.928726282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.328722388,99.37445846,84.63399448,101.3031847,292.4088577,0,0.358109507,69.01586029,-0.358109507,110.9841397,0.910377904,0,350.8365574,101.3031847,417.1374658,4,9,19% -4/5/2018 18:00,43.44805975,128.2740643,727.4482511,866.1079918,98.65550693,584.9120632,483.7475716,101.1644916,95.68067939,5.483812192,179.3530781,0,179.3530781,2.974827534,176.3782506,0.758311696,2.238804767,-0.498114189,0.498114189,0.615336233,0.135618591,3.660465427,117.7331509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.97190842,2.155252422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651994741,113.1695828,94.62390316,115.3248353,483.7475716,0,0.558530317,56.04577978,-0.558530317,123.9542202,0.960479345,0,559.2534537,115.3248353,634.7312519,4,10,13% -4/5/2018 19:00,35.51126431,148.2705615,830.436364,891.1401456,105.0470941,753.7921293,645.6524126,108.1397167,101.8795366,6.260180089,204.5164684,0,204.5164684,3.167557469,201.3489109,0.619788484,2.587809482,-0.145065937,0.145065937,0.554961426,0.12649626,3.826579784,123.0759596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.93048576,2.294884603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.772344027,118.3052938,100.7028298,120.6001784,645.6524126,0,0.724523989,43.57073632,-0.724523989,136.4292637,0.980989172,0,734.0808558,120.6001784,813.0112605,4,11,11% -4/5/2018 20:00,31.6662293,174.5053329,873.9483167,900.3281007,107.6604516,871.5668865,760.5646032,111.0022833,104.4140918,6.588191569,215.1452475,0,215.1452475,3.24635984,211.8988876,0.552679963,3.045692621,0.154489628,-0.154489628,0.503734407,0.123188579,3.721462948,119.6950408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3667966,2.351976653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696187237,115.0554261,103.0629838,117.4074027,760.5646032,0,0.844763817,32.35336032,-0.844763817,147.6466397,0.990811859,0,856.6394121,117.4074027,933.4802091,4,12,9% -4/5/2018 21:00,33.4015358,202.2399225,854.8511425,896.385249,106.5190597,926.4097061,816.6583601,109.751346,103.307117,6.444229003,210.4804993,0,210.4804993,3.211942662,207.2685566,0.582966775,3.529752527,0.443284224,-0.443284224,0.454347623,0.12460539,3.366071165,108.2644195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30273034,2.327041525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.4387071,104.067878,101.7414374,106.3949195,816.6583601,0,0.911057339,24.34812061,-0.911057339,155.6518794,0.995118712,0,914.4134531,106.3949195,984.0468,4,13,8% -4/5/2018 22:00,39.98019157,224.8022335,774.5405191,878.1835996,101.6177375,911.3550095,806.9626081,104.3924014,98.55358782,5.8388136,190.8604659,0,190.8604659,3.064149716,187.7963162,0.697785978,3.92353914,0.758721046,-0.758721046,0.400404749,0.131197445,2.797201099,89.96760267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.73345728,2.219966039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.026562674,86.48028177,96.76001996,88.70024781,806.9626081,0,0.918899657,23.23425432,-0.918899657,156.7657457,0.995587095,0,900.1615784,88.70024781,958.2141166,4,14,6% -4/5/2018 23:00,49.44895245,241.2689173,638.9066267,839.9037802,92.86395279,823.7339515,728.8538415,94.88011001,90.06376198,4.816348028,157.7104995,0,157.7104995,2.800190808,154.9103087,0.863047032,4.21093699,1.155195706,-1.155195706,0.332603589,0.145348239,2.069143964,66.55078253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.57271376,2.028728708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499087759,63.97114355,88.07180152,65.99987226,728.8538415,0,0.867782547,29.79802924,-0.867782547,150.2019708,0.992381879,0,811.3731461,65.99987226,854.5687425,4,15,5% -4/5/2018 0:00,60.37094652,253.7136015,458.3306667,765.8247815,79.72013919,663.7498285,582.9784554,80.77137303,77.31628286,3.455090165,113.5314328,0,113.5314328,2.403856333,111.1275765,1.053671789,4.428137704,1.754549993,-1.754549993,0.23010797,0.173935861,1.257721241,40.4526385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31935195,1.74158573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911214758,38.88461482,75.23056671,40.62620055,582.9784554,0,0.76124261,40.42613357,-0.76124261,139.5738664,0.984317917,0,649.0667058,40.62620055,675.6557416,4,16,4% -4/5/2018 1:00,71.95222499,263.9789987,248.8481821,610.2649072,59.78206769,430.0954587,370.2401182,59.85534049,57.97941778,1.87592271,62.13877272,0,62.13877272,1.802649913,60.33612281,1.25580323,4.607302683,2.978084192,-2.978084192,0.020871298,0.240235099,0.48040951,15.45162124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.73202172,1.306013726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.348055055,14.85268606,56.08007678,16.15869979,370.2401182,0,0.606687545,52.64962566,-0.606687545,127.3503743,0.967585254,0,414.3189555,16.15869979,424.8945014,4,17,3% -4/5/2018 2:00,83.68782406,273.2910807,46.64666119,222.1237701,22.22514432,114.2120904,92.30547396,21.90661645,21.55497422,0.351642236,11.98019316,0,11.98019316,0.670170103,11.31002306,1.460628074,4.769829174,8.303562219,-8.303562219,0,0.476457345,0.167542526,5.388743555,0.470854418,1,0.119853038,0,0.948958969,0.987720933,0.724496596,1,20.89689419,0.485535959,0.065838965,0.312029739,0.830318878,0.554815474,0.961238037,0.922476074,0.114689137,5.179865276,21.01158333,5.665401234,48.84303373,0,0.41555874,65.4454921,-0.41555874,114.5545079,0.929680066,0,66.41997817,5.665401234,70.12786997,4,18,6% -4/5/2018 3:00,95.53622734,282.5329741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667421722,4.931130644,-8.698092739,8.698092739,0,#DIV/0!,0,0,1,0.01731023,0,0.11446518,0.961238037,1,0.451606075,0.72710948,0,0,0.115824807,0.002984488,0.724496596,0.448993192,0.999735799,0.960973836,0,0,0,0,0,0,0.196349065,78.676457,-0.196349065,101.323543,0.795351474,0,0,0,0,4,19,0% -4/5/2018 4:00,106.8150928,292.4896631,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864275059,5.104907649,-2.440060859,2.440060859,0.947428672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.030416084,91.74298207,0.030416084,88.25701793,0,0,0,0,0,4,20,0% -4/5/2018 5:00,117.2381141,304.0144257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0461911,5.306052702,-1.141441711,1.141441711,0.725351718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251407258,104.5608021,0.251407258,75.43919788,0,0.851119505,0,0,0,4,21,0% -4/5/2018 6:00,126.1713629,318.0828978,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202105704,5.551593862,-0.51053677,0.51053677,0.617460619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451551218,116.8432521,0.451551218,63.15674786,0,0.93927059,0,0,0,4,22,0% -4/5/2018 7:00,132.6704573,335.5050963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3155363,5.855668588,-0.085017127,0.085017127,0.544692475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617197257,128.1117509,0.617197257,51.88824907,0,0.968988622,0,0,0,4,23,0% -4/6/2018 8:00,135.5978606,355.9314977,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366629126,6.212176546,0.268818473,-0.268818473,0.484183023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737047323,137.4804965,0.737047323,42.51950349,0,0.982161751,0,0,0,4,0,0% -4/6/2018 9:00,134.2421733,16.9563939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.34296792,0.295944903,0.617324971,-0.617324971,0.424584902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802925718,143.4104031,0.802925718,36.58959686,0,0.987727739,0,0,0,4,1,0% -4/6/2018 10:00,128.9507899,35.64900153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.250615856,0.622192452,1.021318945,-1.021318945,0.355497864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810335997,144.1287722,0.810335997,35.87122778,0,0.9882972,0,0,0,4,2,0% -4/6/2018 11:00,120.7987732,50.90562259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108336324,0.888470722,1.585297582,-1.585297582,0.259051836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758767185,139.3556359,0.758767185,40.64436411,0,0.984103634,0,0,0,4,3,0% -4/6/2018 12:00,110.8393682,63.2554053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.934511915,1.104015092,2.608898981,-2.608898981,0.084005688,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651728489,130.6720497,0.651728489,49.32795033,0,0.973280935,0,0,0,4,4,0% -4/6/2018 13:00,99.81517012,73.67657268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742103362,1.285898775,5.768361274,-5.768361274,0,#DIV/0!,0,0,0.313325556,1,0.171653434,0,0.942618833,0.981380796,0.724496596,1,0,0,0.04667209,0.312029739,0.876186567,0.600683163,0.961238037,0.922476074,0,0,0,0,0,0,-0.496510099,119.7693774,0.496510099,60.23062262,0,0.949297114,0,0,0,4,5,0% -4/6/2018 14:00,87.91713276,83.07077117,4.29078647,29.27708465,3.2267142,3.161762622,0,3.161762622,3.129416861,0.032345761,9.885224364,8.747576169,1.137648195,0.097297338,1.040350857,1.534443436,1.449858469,-26.78362836,26.78362836,0,0.752009969,0.024324335,0.782354215,1,0.756716089,0,0.037318907,0.961238037,1,0.624122678,0.899626082,3.00811452,0.067246883,0.115824807,0.19816252,0.724496596,0.448993192,0.977903025,0.939141062,0.017622898,0.757688827,3.025737418,0.824935709,0,2.12814454,-0.298785766,107.384688,0.298785766,72.61531198,0,0.882656018,3.025737418,2.703355294,4.795029391,4,6,58% -4/6/2018 15:00,76.31186264,92.23092628,169.1538361,507.280391,49.11253158,48.90676061,0,48.90676061,47.63160755,1.275153067,85.73411253,43.23988254,42.49422999,1.480924033,41.01330595,1.331893261,1.609733336,-3.800656234,3.800656234,0.819895815,0.290342405,1.112172818,35.77130089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.78531293,1.072924421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.80576542,34.38473504,46.59107835,35.45765946,0,43.23988254,-0.085238624,94.88974682,0.085238624,85.11025318,0,0,46.59107835,35.45765946,69.79740731,4,7,50% -4/6/2018 16:00,64.59013131,101.9764929,383.3427538,722.1446528,73.4771859,176.0862054,101.9348281,74.15137724,71.26157764,2.889799603,95.16149711,0,95.16149711,2.215608257,92.94588886,1.127310456,1.77982556,-1.785649034,1.785649034,0.835517659,0.191674905,2.505585707,80.58824924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.499339,1.60520064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.815288315,77.46449049,70.31462731,79.06969113,101.9348281,0,0.141155692,81.88527333,-0.141155692,98.11472667,0.695781199,0,141.2389642,79.06969113,192.9884957,4,8,37% -4/6/2018 17:00,53.31118576,113.369649,577.5800907,818.2471831,88.70308674,386.640468,296.2580639,90.38240409,86.0283614,4.354042695,142.7157053,0,142.7157053,2.674725345,140.04098,0.93045572,1.978673646,-0.975660329,0.975660329,0.697001432,0.15357712,3.237383482,104.1253812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.69373322,1.937829407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.345473312,100.089277,85.03920654,102.0271064,296.2580639,0,0.362064264,68.77297624,-0.362064264,111.2270238,0.911902969,0,355.1978144,102.0271064,421.9725151,4,9,19% -4/6/2018 18:00,43.10904377,128.0102527,732.1255853,867.2014576,99.02133059,589.0975465,487.5430024,101.554544,96.03547212,5.519071913,180.4981829,0,180.4981829,2.985858467,177.5123244,0.752394751,2.234200386,-0.49590453,0.49590453,0.614958359,0.135251837,3.681419367,118.4071016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.31294869,2.163244295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6671758,113.8174099,94.98012449,115.9806542,487.5430024,0,0.562202702,55.79173346,-0.562202702,124.2082665,0.961064106,0,563.5402042,115.9806542,639.4472228,4,10,13% -4/6/2018 19:00,35.13875753,148.1079969,834.7765541,891.9432188,105.3805592,757.7222476,649.2264029,108.4958448,102.2029465,6.292898276,205.5788529,0,205.5788529,3.177612671,202.4012403,0.613287014,2.584972194,-0.145035088,0.145035088,0.55495615,0.126238044,3.845826847,123.6950113,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.24135964,2.302169563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786288459,118.9003499,101.0276481,121.2025194,649.2264029,0,0.727878624,43.2911548,-0.727878624,136.7088452,0.981307229,0,738.1182102,121.2025194,817.4428351,4,11,11% -4/6/2018 20:00,31.28441301,174.5856573,877.9637217,900.9976955,107.9709733,875.1883541,763.8546427,111.3337114,104.7152501,6.618461387,216.1281922,0,216.1281922,3.255723215,212.872469,0.546016012,3.047094546,0.153019462,-0.153019462,0.50398582,0.122978855,3.739331912,120.2697682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6562814,2.358760386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.709133241,115.6078758,103.3654146,117.9666362,763.8546427,0,0.847787565,32.02815796,-0.847787565,147.971842,0.991022961,0,860.3629047,117.9666362,937.5697088,4,12,9% -4/6/2018 21:00,33.0631851,202.5714056,858.5802289,897.0216336,106.8138138,929.7277369,819.6624132,110.0653236,103.5929832,6.472340431,211.3935474,0,211.3935474,3.220830587,208.1727168,0.577061441,3.535537998,0.440391209,-0.440391209,0.454842357,0.124407493,3.382859683,108.8043959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.57751582,2.333480796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.450870324,104.5869239,102.0283861,106.9204047,819.6624132,0,0.913759917,23.96977187,-0.913759917,156.0302281,0.995281032,0,917.8228383,106.9204047,987.8001048,4,13,8% -4/6/2018 22:00,39.70774687,225.2244902,778.0416223,878.8839753,101.9045952,914.4240985,809.7270963,104.6970021,98.83179571,5.865206395,191.7179987,0,191.7179987,3.072799535,188.6451992,0.693030921,3.93090891,0.754007564,-0.754007564,0.401210802,0.130975763,2.813173954,90.48134458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00088129,2.226232803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038134953,86.97411004,97.03901624,89.20034284,809.7270963,0,0.921312846,22.88122806,-0.921312846,157.1187719,0.995729618,0,903.3082686,89.20034284,961.688109,4,14,6% -4/6/2018 23:00,49.22817455,241.6828638,642.2500808,840.819251,93.15451419,826.6644429,731.4773286,95.18711428,90.34556189,4.841552397,158.5299201,0,158.5299201,2.808952306,155.7209678,0.859193731,4.218161719,1.147466852,-1.147466852,0.333925301,0.14504399,2.084459857,67.04339428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.84359055,2.035076384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51018407,64.4446607,88.35377462,66.47973708,731.4773286,0,0.869957875,29.54625536,-0.869957875,150.4537446,0.992525953,0,814.3640071,66.47973708,857.8736654,4,15,5% -4/6/2018 0:00,60.18135751,254.0977811,461.5832575,767.3011204,80.03795519,666.7447158,585.6405907,81.1041251,77.62451553,3.479609569,114.3296445,0,114.3296445,2.413439658,111.9162048,1.050362837,4.434842902,1.740321344,-1.740321344,0.232541212,0.17339874,1.272206494,40.91853404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.61563692,1.748528816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921709274,39.33245133,75.5373462,41.08098015,585.6405907,0,0.763247407,40.24867539,-0.763247407,139.7513246,0.984490442,0,652.0949104,41.08098015,678.9815903,4,16,4% -4/6/2018 1:00,71.77745432,264.3382364,252.012959,613.3941581,60.19926627,433.5943829,373.3105665,60.28381641,58.38403628,1.899780136,62.9186896,0,62.9186896,1.81522999,61.10345961,1.252752907,4.613572564,2.94287274,-2.94287274,0.026892811,0.238873693,0.492693767,15.84672516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.12095641,1.315127948,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356954957,15.23247499,56.47791137,16.54760294,373.3105665,0,0.608598177,52.51178907,-0.608598177,127.4882109,0.967843987,0,417.7842983,16.54760294,428.6143735,4,17,3% -4/6/2018 2:00,83.51711431,273.6353092,49.02004021,230.2922993,23.01855937,118.8234984,96.12949972,22.69399864,22.32446488,0.369533769,12.57957078,0,12.57957078,0.694094494,11.88547628,1.457648627,4.775837095,8.06205516,-8.06205516,0,0.469574469,0.173523624,5.581116219,0.459032224,1,0.123407536,0,0.948543443,0.987305406,0.724496596,1,21.64384587,0.502869098,0.064482965,0.312029739,0.833467948,0.557964544,0.961238037,0.922476074,0.118764684,5.364781198,21.76261055,5.867650296,52.00296168,0,0.417423857,65.32794871,-0.417423857,114.6720513,0.930217675,0,70.13668467,5.867650296,73.97694443,4,18,5% -4/6/2018 3:00,95.35265615,282.8714068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6642178,4.937037408,-8.964170354,8.964170354,0,#DIV/0!,0,0,1,0.059369851,0,0.111095893,0.961238037,1,0.458145287,0.733648691,0,0,0.115824807,0.0104438,0.724496596,0.448993192,0.999066045,0.960304082,0,0,0,0,0,0,0.198347124,78.55968003,-0.198347124,101.44032,0.797916688,0,0,0,0,4,19,0% -4/6/2018 4:00,106.610421,292.8283892,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860702864,5.110819535,-2.45848498,2.45848498,0.950579382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.028255019,91.61910881,0.028255019,88.38089119,0,0,0,0,0,4,20,0% -4/6/2018 5:00,117.0003317,304.3524739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042041014,5.311952757,-1.14378759,1.14378759,0.725752887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249013997,104.4191733,0.249013997,75.58082674,0,0.849208074,0,0,0,4,21,0% -4/6/2018 6:00,125.8888024,318.4033616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197174093,5.55718701,-0.508678032,0.508678032,0.617142756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448872579,116.6713728,0.448872579,63.32862723,0,0.938609814,0,0,0,4,22,0% -4/6/2018 7:00,132.3374987,335.7627396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309725077,5.860165312,-0.081093795,0.081093795,0.544021545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614199732,127.8937944,0.614199732,52.10620561,0,0.968593257,0,0,0,4,23,0% -4/7/2018 8:00,135.2255789,356.0611222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360131585,6.21443892,0.274492695,-0.274492695,0.483212674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73371939,137.1991167,0.73371939,42.80088332,0,0.981854057,0,0,0,4,0,0% -4/7/2018 9:00,133.8594889,16.92991829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336288816,0.295482816,0.625246984,-0.625246984,0.423230158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799278635,143.0612722,0.799278635,36.93872784,0,0.987443592,0,0,0,4,1,0% -4/7/2018 10:00,128.5844668,35.50530368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244222313,0.619684451,1.033004975,-1.033004975,0.353499435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80640304,143.7459728,0.80640304,36.2540272,0,0.987996266,0,0,0,4,2,0% -4/7/2018 11:00,120.4590385,50.70014351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102406835,0.884884436,1.604880023,-1.604880023,0.255703042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754601367,138.9905503,0.754601367,41.00944968,0,0.98373985,0,0,0,4,3,0% -4/7/2018 12:00,110.5243369,63.02275656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929013583,1.099954606,2.651380755,-2.651380755,0.076740877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647398917,130.3457772,0.647398917,49.65422276,0,0.972767866,0,0,0,4,4,0% -4/7/2018 13:00,99.51832813,73.43134586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736922492,1.281618759,5.953351679,-5.953351679,0,#DIV/0!,0,0,0.327925105,1,0.166419052,0,0.94328704,0.982049003,0.724496596,1,0,0,0.048553561,0.312029739,0.871555096,0.596051692,0.961238037,0.922476074,0,0,0,0,0,0,-0.492097229,119.4785198,0.492097229,60.52148022,0,0.948394063,0,0,0,4,5,0% -4/7/2018 14:00,87.64994819,82.81664473,5.652689605,37.39405252,4.119359862,4.037758326,0,4.037758326,3.995145964,0.042612362,12.51429447,11.01952053,1.494773938,0.124213899,1.370560039,1.529780185,1.445423126,-23.75986746,23.75986746,0,0.728743333,0.031053475,0.998786491,1,0.721706632,0,0.042062952,0.961238037,1,0.612147473,0.887650878,3.840286263,0.0855608,0.115824807,0.184615112,0.724496596,0.448993192,0.979699814,0.940937851,0.022498137,0.967736833,3.8627844,1.053297632,0,3.066659485,-0.294686448,107.1387364,0.294686448,72.8612636,0,0.880328133,3.8627844,3.75296425,6.319024442,4,6,64% -4/7/2018 15:00,76.02924997,91.96682063,174.2104308,514.8047025,49.92292295,49.73083444,0,49.73083444,48.41756263,1.313271815,85.41310266,41.66840644,43.74469622,1.505360323,42.2393359,1.32696074,1.605123823,-3.727706826,3.727706826,0.832370899,0.286566784,1.15621479,37.18784212,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.54080285,1.09062843,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.83767368,35.74636835,47.37847653,36.83699678,0,41.66840644,-0.080940221,94.64261171,0.080940221,85.35738829,0,0,47.37847653,36.83699678,71.48755418,4,7,51% -4/7/2018 16:00,64.30001806,101.7007051,388.5067575,725.2659639,73.98878948,180.0672186,105.3807361,74.68648253,71.75775449,2.928728044,96.42899632,0,96.42899632,2.231034992,94.19796133,1.122247024,1.775012155,-1.767842895,1.767842895,0.83247263,0.190444022,2.531525793,81.42257156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.97628305,1.616377257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.834081819,78.26647284,70.81036487,79.8828501,105.3807361,0,0.145299437,81.64538071,-0.145299437,98.35461929,0.705883043,0,145.1968396,79.8828501,197.4785673,4,8,36% -4/7/2018 17:00,53.00369728,113.0858865,582.5089801,819.9147732,89.11420776,390.8854695,300.0671852,90.81828435,86.4270856,4.391198745,143.9231684,0,143.9231684,2.68712216,141.2360463,0.925089033,1.973721057,-0.969311526,0.969311526,0.695915723,0.152983406,3.260182149,104.8586647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0770021,1.946810858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361990869,100.794137,85.43899296,102.7409479,300.0671852,0,0.365973629,68.53248621,-0.365973629,111.4675138,0.913378134,0,359.5137987,102.7409479,426.7556943,4,9,19% -4/7/2018 18:00,42.77273934,127.7436149,736.7360157,868.2664525,99.38237661,593.2248813,491.2854227,101.9394586,96.38563127,5.553827285,181.626922,0,181.626922,2.996745337,178.6301766,0.746525132,2.229546679,-0.493748261,0.493748261,0.614589615,0.134895505,3.702068767,119.0712573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.64953498,2.171131795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682136219,114.4558216,95.3316712,116.6269534,491.2854227,0,0.565823338,55.54051506,-0.565823338,124.4594849,0.961633196,0,567.7680424,116.6269534,644.0980509,4,10,13% -4/7/2018 19:00,34.7685999,147.9421169,839.0491578,892.7249871,105.7096322,761.5876314,652.7404277,108.8472037,102.5220968,6.325106968,206.6247179,0,206.6247179,3.187535438,203.4371825,0.606826544,2.582077042,-0.145019393,0.145019393,0.554953466,0.125987412,3.864790436,124.3049456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.54813902,2.309358574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.800027515,119.4866418,101.3481665,121.7960004,652.7404277,0,0.731177504,43.01480061,-0.731177504,136.9851994,0.981617152,0,742.0893662,121.7960004,821.8024126,4,11,11% -4/7/2018 20:00,30.90458485,174.6659929,881.9139456,901.6492701,108.2774045,878.7425453,767.0818642,111.6606811,105.0124412,6.648239844,217.0952098,0,217.0952098,3.264963246,213.8302466,0.53938676,3.048496667,0.151554892,-0.151554892,0.504236277,0.122775476,3.75694629,120.8363071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9419529,2.365454758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721894798,116.1524546,103.6638477,118.5179094,767.0818642,0,0.850754156,31.70620943,-0.850754156,148.2937906,0.991228615,0,864.0173416,118.5179094,941.5849429,4,12,9% -4/7/2018 21:00,32.7271776,202.9060262,862.2493383,897.6411006,107.1047854,932.9794377,822.6042571,110.3751806,103.8751809,6.499999727,212.2919393,0,212.2919393,3.229604453,209.0623348,0.571197004,3.54137823,0.437520654,-0.437520654,0.455333251,0.124215561,3.399430548,109.3373719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.84877498,2.339837433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.46287586,105.0992407,102.3116508,107.4390781,822.6042571,0,0.916406631,23.59371624,-0.916406631,156.4062838,0.995439068,0,921.1640657,107.4390781,991.4807936,4,13,8% -4/7/2018 22:00,39.43778719,225.6485503,781.4903646,879.566703,102.1879878,917.4308019,812.4329546,104.9978474,99.10664289,5.891204471,192.5627315,0,192.5627315,3.081344864,189.4813867,0.688319236,3.938310155,0.749338032,-0.749338032,0.402009339,0.130760394,2.828973079,90.98949875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.26507485,2.232423865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.049581366,87.46256715,97.31465622,89.69499102,812.4329546,0,0.923674068,22.53074247,-0.923674068,157.4692575,0.995868351,0,906.3909234,89.69499102,965.0945011,4,14,6% -4/7/2018 23:00,49.00947264,242.0968134,645.5507349,841.71374,93.44186844,829.5386857,734.0480002,95.49068546,90.62425134,4.866434121,159.3388667,0,159.3388667,2.817617097,156.5212496,0.855376662,4.225386502,1.139822538,-1.139822538,0.335232556,0.144747521,2.099652177,67.53203151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.11147745,2.041353995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.521190855,64.91435739,88.6326683,66.95571139,734.0480002,0,0.872087463,29.2978702,-0.872087463,150.7021298,0.992666301,0,817.2973816,66.95571139,861.1185556,4,15,5% -4/7/2018 0:00,59.99327215,254.4809621,464.8041995,768.7470163,80.35251899,669.6899273,588.2564428,81.43348446,77.92959407,3.50389039,115.1200844,0,115.1200844,2.422924917,112.6971595,1.047080128,4.441530672,1.726288371,-1.726288371,0.234940992,0.172873909,1.286627616,41.38236689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.90889002,1.755400854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.932157328,39.77830511,75.84104734,41.53370597,588.2564428,0,0.765214603,40.07391218,-0.765214603,139.9260878,0.984658853,0,655.0729615,41.53370597,682.2559414,4,16,4% -4/7/2018 1:00,71.6036464,264.6959348,255.1600056,616.461519,60.61174813,437.0454874,376.3379032,60.70758419,58.78408029,1.923503902,63.69416534,0,63.69416534,1.82766784,61.8664975,1.249719386,4.619815579,2.908386229,-2.908386229,0.032790352,0.237544077,0.505006862,16.24275664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.50549394,1.324139128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.365875753,15.6131555,56.87136969,16.93729463,376.3379032,0,0.610480771,52.37572607,-0.610480771,127.6242739,0.968097338,0,421.2030921,16.93729463,432.2882127,4,17,3% -4/7/2018 2:00,83.34680026,273.9776048,51.42155033,238.3710604,23.80400849,123.4164279,99.94256068,23.47386718,23.08622981,0.387637367,13.1855289,0,13.1855289,0.717778684,12.46775022,1.454676086,4.781811281,7.833207146,-7.833207146,0,0.462918919,0.179444671,5.771557453,0.447331714,1,0.126974813,0,0.948123506,0.98688547,0.724496596,1,22.38316209,0.520028213,0.063128428,0.312029739,0.836628227,0.561124823,0.961238037,0.922476074,0.122805873,5.547840555,22.50596797,6.067868768,55.23508368,0,0.419273046,65.21129962,-0.419273046,114.7887004,0.930745971,0,73.91579956,6.067868768,77.88709831,4,18,5% -4/7/2018 3:00,95.16926533,283.2074815,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661017027,4.942903019,-9.24866922,9.24866922,0,#DIV/0!,0,0,1,0.100532798,0,0.107705247,0.961238037,1,0.464818291,0.740321695,0,0,0.115824807,0.018042492,0.724496596,0.448993192,0.998369972,0.959608009,0,0,0,0,0,0,0.200337163,78.44332391,-0.200337163,101.5566761,0.800420744,0,0,0,0,4,19,0% -4/7/2018 4:00,106.4057079,293.1641807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857129945,5.116680202,-2.477365288,2.477365288,0.953808105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.026092603,91.4951657,0.026092603,88.5048343,0,0,0,0,0,4,20,0% -4/7/2018 5:00,116.7624772,304.6867848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03788967,5.317787582,-1.146200863,1.146200863,0.726165581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.246611385,104.2770816,0.246611385,75.72291842,0,0.847251858,0,0,0,4,21,0% -4/7/2018 6:00,125.6064498,318.7191785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19224611,5.562699055,-0.506827768,0.506827768,0.616826342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446178517,116.4987646,0.446178517,63.50123541,0,0.937937231,0,0,0,4,22,0% -4/7/2018 7:00,132.0054248,336.0154519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303929294,5.864575973,-0.07715893,0.07715893,0.543348644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611183057,127.6750949,0.611183057,52.3249051,0,0.968191449,0,0,0,4,23,0% -4/8/2018 8:00,134.8550056,356.1873818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353663861,6.216642566,0.280194172,-0.280194172,0.482237664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.730371181,136.9175205,0.730371181,43.08247951,0,0.981541658,0,0,0,4,0,0% -4/8/2018 9:00,133.4789167,16.90292658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329646578,0.295011722,0.633220437,-0.633220437,0.421866617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795612835,142.7131779,0.795612835,37.28682213,0,0.987155363,0,0,0,4,1,0% -4/8/2018 10:00,128.2201802,35.36295294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.237864311,0.617199962,1.044795523,-1.044795523,0.351483132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802455503,143.3652296,0.802455503,36.63477044,0,0.987691249,0,0,0,4,2,0% -4/8/2018 11:00,120.1211787,50.49645711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096510069,0.881329437,1.624721847,-1.624721847,0.25230989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750427397,138.6274139,0.750427397,41.37258611,0,0.983371303,0,0,0,4,3,0% -4/8/2018 12:00,110.21114,62.79168959,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923547265,1.095921726,2.694822405,-2.694822405,0.069311917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643069472,130.021085,0.643069472,49.97891504,0,0.972247903,0,0,0,4,4,0% -4/8/2018 13:00,99.22340987,73.18731175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731775197,1.277359561,6.148716649,-6.148716649,0,#DIV/0!,0,0,0.342684214,1,0.161223978,0,0.943944153,0.982706116,0.724496596,1,0,0,0.050432653,0.312029739,0.866957462,0.591454058,0.961238037,0.922476074,0,0,0,0,0,0,-0.487694046,119.1891303,0.487694046,60.81086972,0,0.947476706,0,0,0,4,5,0% -4/8/2018 14:00,87.38274423,82.56327525,7.223447791,46.46444686,5.101702439,5.002320688,0,5.002320688,4.947867288,0.054453401,15.40654504,13.50130134,1.905243699,0.153835152,1.751408547,1.525116596,1.441000994,-21.35252078,21.35252078,0,0.706269719,0.038458788,1.236966822,1,0.685697653,0,0.046798683,0.961238037,1,0.600370659,0.875874063,4.756078238,0.105678907,0.115824807,0.171300213,0.724496596,0.448993192,0.981426081,0.942664117,0.027863261,1.198921563,4.783941499,1.30460047,0,4.243490703,-0.290572734,106.8922479,0.290572734,73.10775214,0,0.877926043,4.783941499,5.030071472,8.076022676,4,6,69% -4/8/2018 15:00,75.74892448,91.7029648,179.2373842,522.0857317,50.71476343,50.53669331,0,50.53669331,49.1855262,1.351167112,85.01617287,40.0287567,44.98741617,1.529237235,43.45817894,1.322068137,1.60051867,-3.658105092,3.658105092,0.844273497,0.282947465,1.200290274,38.60546119,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.27899864,1.107927171,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.869606218,37.10903773,48.14860486,38.2169649,0,40.0287567,-0.07667085,94.39723143,0.07667085,85.60276857,0,0,48.14860486,38.2169649,73.16084405,4,7,52% -4/8/2018 16:00,64.01249957,101.4244834,393.6148023,728.2990011,74.49234627,184.0241982,108.8108364,75.21336183,72.24612718,2.967234644,97.68268503,0,97.68268503,2.246219088,95.43646594,1.11722888,1.770191177,-1.750551016,1.750551016,0.829515544,0.189251893,2.55710362,82.24524241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44572547,1.627378083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.852612868,79.05725536,71.29833833,80.68463344,108.8108364,0,0.149404072,81.40760675,-0.149404072,98.59239325,0.7153371,0,149.1347665,80.68463344,201.9412454,4,8,35% -4/8/2018 17:00,52.69902882,112.8006652,587.3733309,821.5380825,89.5197054,395.0824504,303.8342262,91.24822427,86.82035599,4.427868276,145.1148139,0,145.1148139,2.69934941,142.4154644,0.919771566,1.968743007,-0.9631139,0.9631139,0.694855867,0.152406827,3.282652907,105.5814015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.45502855,1.955669459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378270857,101.4888591,85.83329941,103.4445286,303.8342262,0,0.369835839,68.29450658,-0.369835839,111.7054934,0.914804882,0,363.7823328,103.4445286,431.4847079,4,9,19% -4/8/2018 18:00,42.43928059,127.4741151,741.2782146,869.3032614,99.7385955,597.2924654,494.9732883,102.3191771,96.73110885,5.588068299,182.738972,0,182.738972,3.00748665,179.7314853,0.740705178,2.224843019,-0.491646236,0.491646236,0.614230148,0.134549476,3.722409436,119.7254832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.98162117,2.17891384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696872965,115.0846884,95.67849413,117.2636022,494.9732883,0,0.56939081,55.29224398,-0.56939081,124.707756,0.962186851,0,571.9352838,117.2636022,648.6819662,4,10,13% -4/8/2018 19:00,34.40091853,147.772789,843.2532677,893.4856624,106.0342798,765.3871314,656.1933771,109.1937543,102.836955,6.356799324,207.6538424,0,207.6538424,3.19732476,204.4565176,0.600409294,2.579121712,-0.145019921,0.145019921,0.554953557,0.125744286,3.883467897,124.9056769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.85079275,2.316450905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.813559272,120.0640877,101.664352,122.3805386,656.1933771,0,0.734419594,42.74180475,-0.734419594,137.2581953,0.981919028,0,745.9931148,122.3805386,826.0887297,4,11,11% -4/8/2018 20:00,30.52684333,174.7461939,885.798466,902.2830302,108.57973,882.2287654,770.2455919,111.9831735,105.3056505,6.677523,218.046173,0,218.046173,3.274079477,214.7720935,0.532793926,3.049896439,0.150094842,-0.150094842,0.50448596,0.122578368,3.774304688,121.3946128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2237968,2.372059436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.734470898,116.6891193,103.9582677,119.0611788,770.2455919,0,0.853662948,31.38766449,-0.853662948,148.6123355,0.991428874,0,867.6019876,119.0611788,945.5251479,4,12,9% -4/8/2018 21:00,32.39358298,203.2436447,865.8582729,898.2438851,107.3919764,936.1645465,825.483629,110.6809175,104.1537121,6.527205401,213.1756271,0,213.1756271,3.238264323,209.9373628,0.565374679,3.547270785,0.434671449,-0.434671449,0.455820494,0.124029509,3.41578326,109.8633313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1165097,2.346111479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.474723344,105.6048129,102.5912331,107.9509244,825.483629,0,0.918997215,23.22008085,-0.918997215,156.7799192,0.995592871,0,924.4368493,107.9509244,995.0885703,4,13,8% -4/8/2018 22:00,39.17034474,226.0742241,784.886791,880.2320838,102.4679326,920.3752402,815.0802857,105.2949546,99.37814641,5.916808168,193.3946758,0,193.3946758,3.089786236,190.3048896,0.683651485,3.945739564,0.744711134,-0.744711134,0.402800585,0.130551226,2.844598425,91.49206361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.52605436,2.23853961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060901876,87.94565161,97.58695623,90.18419122,815.0802857,0,0.925983386,22.18288852,-0.925983386,157.8171115,0.996003351,0,909.409652,90.18419122,968.4334015,4,14,6% -4/8/2018 23:00,48.7928507,242.5105868,648.808775,842.587681,93.72604782,832.3571109,736.5662546,95.79085627,90.89986167,4.890994604,160.1373853,0,160.1373853,2.826186154,157.3111991,0.851595896,4.232608211,1.132260772,-1.132260772,0.336525694,0.144458662,2.114720827,68.0166911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37640458,2.047562248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53210804,65.38023063,88.90851262,67.42779288,736.5662546,0,0.87417164,29.05290947,-0.87417164,150.9470905,0.992802995,0,820.1736959,67.42779288,864.3038378,4,15,5% -4/8/2018 0:00,59.80668289,254.8629928,467.993698,770.1632083,80.66388311,672.5861296,590.826626,81.7595036,78.23156942,3.527934177,115.902804,0,115.902804,2.432313694,113.4704903,1.043823531,4.448198367,1.712446455,-1.712446455,0.237308099,0.172361046,1.300983841,41.84411242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.19916021,1.762202991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.942558364,40.22215247,76.14171857,41.98435546,590.826626,0,0.767144703,39.90182646,-0.767144703,140.0981735,0.984823248,0,658.0015155,41.98435546,685.4794365,4,16,4% -4/8/2018 1:00,71.43079343,265.0519625,258.2893477,619.4686517,61.01962483,440.4496528,379.3229006,61.12675221,59.17965801,1.947094205,64.46520955,0,64.46520955,1.839966827,62.62524272,1.246702533,4.626029435,2.874601578,-2.874601578,0.038567868,0.236245224,0.517346079,16.63962828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.88573828,1.333049703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374815473,15.99464362,57.26055376,17.32769332,379.3229006,0,0.61233591,52.24140321,-0.61233591,127.7585968,0.968345472,0,424.5761668,17.32769332,435.9167955,4,17,3% -4/8/2018 2:00,83.17688825,274.3178482,53.84934552,246.3553942,24.58121677,127.9878602,103.7419187,24.2459415,23.84000239,0.405939113,13.79761165,0,13.79761165,0.741214381,13.05639727,1.451710562,4.787749649,7.616050806,-7.616050806,0,0.456481254,0.185303595,5.960000596,0.435751158,1,0.130554803,0,0.947699142,0.986461105,0.724496596,1,23.11456387,0.537007295,0.061775374,0.312029739,0.839799617,0.564296213,0.961238037,0.922476074,0.126811985,5.728979273,23.24137586,6.265986568,58.53625751,0,0.421106747,65.09551919,-0.421106747,114.9044808,0.93126526,0,77.75415895,6.265986568,81.85512184,4,18,5% -4/8/2018 3:00,94.98606503,283.5410853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657819578,4.948725504,-9.553593221,9.553593221,0,#DIV/0!,0,0,1,0.140830252,0,0.104292875,0.961238037,1,0.471627496,0.7471309,0,0,0.115824807,0.025784155,0.724496596,0.448993192,0.997646516,0.958884553,0,0,0,0,0,0,0.202319634,78.3273622,-0.202319634,101.6726378,0.802866299,0,0,0,0,4,19,0% -4/8/2018 4:00,106.2009806,293.4969297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853556781,5.122487767,-2.496722428,2.496722428,0.957118371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023928596,91.37113842,0.023928596,88.62886158,0,0,0,0,0,4,20,0% -4/8/2018 5:00,116.5246,305.0172612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03373793,5.323555484,-1.148685988,1.148685988,0.726590563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.244199474,104.1345301,0.244199474,75.86546992,0,0.845249354,0,0,0,4,21,0% -4/8/2018 6:00,125.3243788,319.0302784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187323043,5.568128772,-0.504988599,0.504988599,0.616511826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443469429,116.3254548,0.443469429,63.6745452,0,0.937252657,0,0,0,4,22,0% -4/8/2018 7:00,131.6743277,336.2632024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298150559,5.868900035,-0.073214813,0.073214813,0.54267416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60814801,127.4557121,0.60814801,52.54428786,0,0.967783173,0,0,0,4,23,0% -4/9/2018 8:00,134.4862405,356.3102497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347227696,6.218787015,0.285920551,-0.285920551,0.481258396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727003866,136.6358021,0.727003866,43.3641979,0,0.981224575,0,0,0,4,0,0% -4/9/2018 9:00,133.100566,16.87535191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323043112,0.294530453,0.641242664,-0.641242664,0.420494736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791929857,142.3662271,0.791929857,37.63377288,0,0.986863095,0,0,0,4,1,0% -4/9/2018 10:00,127.8580525,35.22187505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231543991,0.614737688,1.05668753,-1.05668753,0.349449479,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798495246,142.9866482,0.798495246,37.0133518,0,0.98738222,0,0,0,4,2,0% -4/9/2018 11:00,119.7853232,50.29451642,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090648285,0.877804907,1.64482075,-1.64482075,0.248872775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.74624739,138.2663525,0.74624739,41.73364753,0,0.982998091,0,0,0,4,3,0% -4/9/2018 12:00,109.8999067,62.56218664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918115219,1.091916144,2.739239878,-2.739239878,0.061716082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638742441,129.6981103,0.638742441,50.30188969,0,0.971721187,0,0,0,4,4,0% -4/9/2018 13:00,98.93054145,72.94447371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726663679,1.273121237,6.355270185,-6.355270185,0,#DIV/0!,0,0,0.357599589,1,0.156070075,0,0.94459006,0.983352023,0.724496596,1,0,0,0.052308617,0.312029739,0.862395391,0.586891987,0.961238037,0.922476074,0,0,0,0,0,0,-0.483302914,118.9013437,0.483302914,61.09865634,0,0.946545213,0,0,0,4,5,0% -4/9/2018 14:00,87.11593331,82.31068035,8.996251336,56.37526895,6.159718097,6.041797412,0,6.041797412,5.973979869,0.067817543,18.5157699,16.14878638,2.366983519,0.185738228,2.181245291,1.520459867,1.436592382,-19.39311091,19.39311091,0,0.684698311,0.046434557,1.493494967,1,0.648700135,0,0.051519073,0.961238037,1,0.588808641,0.864312046,5.742416682,0.127340819,0.115824807,0.15823526,0.724496596,0.448993192,0.983081403,0.94431944,0.033641678,1.447890098,5.77605836,1.575230918,0,5.673066479,-0.286451607,106.6456377,0.286451607,73.35436234,0,0.875450447,5.77605836,6.541719501,10.05748294,4,6,74% -4/9/2018 15:00,75.47101027,91.43938571,184.2311322,529.1298365,51.48842427,51.3246704,0,51.3246704,49.93585831,1.388812094,84.54787507,38.32633815,46.22153692,1.552565964,44.66897095,1.317217619,1.595918347,-3.591657246,3.591657246,0.855636747,0.279477326,1.244352031,40.02263875,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.00024641,1.124828756,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.90152881,38.4712827,48.90177522,39.59611145,0,38.32633815,-0.072432767,94.15372935,0.072432767,85.84627065,0,0,48.90177522,39.59611145,74.81663824,4,7,53% -4/9/2018 16:00,63.72769808,101.147858,398.6647002,731.2454414,74.98785805,187.954486,112.2224857,75.73200036,72.72669746,3.005302907,98.92203275,0,98.92203275,2.261160596,96.66087215,1.112258156,1.765363153,-1.73376079,1.73376079,0.826644247,0.188097562,2.582312657,83.05605169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.90766789,1.638203155,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.87087673,79.83663608,71.77854462,81.47483923,112.2224857,0,0.153467604,81.17206689,-0.153467604,98.82793311,0.72419834,0,153.0498825,81.47483923,206.3735353,4,8,35% -4/9/2018 17:00,52.39730685,112.5140047,592.1714545,823.1176791,89.91953005,399.2294242,307.5572611,91.67216301,87.20812445,4.464038558,146.2902307,0,146.2902307,2.711405599,143.5788251,0.914505524,1.963739837,-0.957066612,0.957066612,0.69382172,0.15184712,3.304790284,106.2934157,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.82776634,1.964404126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.394309311,102.1732742,86.22207565,104.1376784,307.5572611,0,0.373649199,68.05915036,-0.373649199,111.9408496,0.916184645,0,368.0013159,104.1376784,436.1573436,4,9,19% -4/9/2018 18:00,42.1087999,127.2017243,745.7509281,870.3121765,100.0899417,601.2987754,498.6051292,102.6936462,97.07186071,5.621785503,183.8340276,0,183.8340276,3.018081036,180.8159465,0.734937202,2.220088903,-0.489599212,0.489599212,0.613880086,0.134213634,3.742437465,120.3696534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.30916482,2.186589437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711383203,115.7038893,96.02054803,117.8904788,498.6051292,0,0.572903773,55.04703611,-0.572903773,124.9529639,0.962725309,0,576.0403249,117.8904788,653.1972854,4,10,13% -4/9/2018 19:00,34.03584003,147.5998843,847.3880417,894.2254616,106.3544719,769.1196754,659.5842143,109.5354611,103.1474921,6.387968997,208.6660212,0,208.6660212,3.206979733,205.4590414,0.594037472,2.576103956,-0.145037656,0.145037656,0.55495659,0.125508582,3.901856788,125.4971269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.14929284,2.323445899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826881961,120.6326118,101.9761748,122.9560577,659.5842143,0,0.737603929,42.47229486,-0.737603929,137.5277051,0.982212942,0,749.8283267,122.9560577,830.3006074,4,11,11% -4/9/2018 20:00,30.15128666,174.8261136,889.6168126,902.8991836,108.8779373,885.6463892,773.3452161,112.3011731,105.5948657,6.706307309,218.9809674,0,218.9809674,3.283071526,215.6978958,0.526239226,3.0512913,0.148638321,-0.148638321,0.50473504,0.122387455,3.791405858,121.9446453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5018015,2.378574144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.746860638,117.2178314,104.2486621,119.5964056,773.3452161,0,0.856513363,31.07267109,-0.856513363,148.9273289,0.991623795,0,871.1161798,119.5964056,949.3896354,4,12,9% -4/9/2018 21:00,32.06247032,203.5841184,869.4068715,898.8302212,107.6753907,939.2828574,828.3003207,110.9825367,104.4285804,6.553956236,214.0445719,0,214.0445719,3.246810311,210.7977616,0.559595673,3.553213171,0.431842569,-0.431842569,0.456304261,0.123849252,3.43191739,110.3822604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3807236,2.352303018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.486412466,106.1036273,102.8671361,108.4559303,828.3003207,0,0.921531454,22.84899301,-0.921531454,157.151007,0.995742492,0,927.6409618,108.4559303,998.6231991,4,13,8% -4/9/2018 22:00,38.90545101,226.5013194,788.230965,880.8804137,102.7444481,923.2575725,817.6692306,105.5883419,99.64632391,5.942017964,194.2138475,0,194.2138475,3.098124197,191.1157233,0.679028217,3.953193783,0.740125671,-0.740125671,0.403584746,0.13034815,2.860049941,91.98903748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.78383678,2.244580434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072096447,88.4233618,97.85593322,90.66794223,817.6692306,0,0.928240903,21.83775651,-0.928240903,158.1622435,0.996134673,0,912.3646047,90.66794223,971.7049595,4,14,7% -4/9/2018 23:00,48.57831281,242.9240048,652.0243877,843.4414947,94.00708392,835.1201666,739.0325078,96.08765874,91.17242349,4.915235251,160.9255221,0,160.9255221,2.834660429,158.0908617,0.847851504,4.239823715,1.124779738,-1.124779738,0.337805026,0.144177251,2.129665644,68.4973678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.63840137,2.053701832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.54293551,65.84227535,89.18133688,67.89597718,739.0325078,0,0.876210754,28.8114066,-0.876210754,151.1885934,0.992936103,0,822.9933954,67.89597718,867.4299545,4,15,5% -4/9/2018 0:00,59.62158321,255.2437225,471.1519421,771.5504031,80.97209735,675.4339814,593.3517492,82.08223222,78.53048986,3.551742355,116.6778507,0,116.6778507,2.44160749,114.2362432,1.040592932,4.454843352,1.698791342,-1.698791342,0.23964326,0.17185984,1.315274296,42.30374258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.48649391,1.768936315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.95291175,40.66396646,76.43940566,42.43290278,593.3517492,0,0.769038221,39.73239971,-0.769038221,140.2676003,0.984983726,0,660.8812221,42.43290278,688.6527083,4,16,4% -4/9/2018 1:00,71.25888942,265.4061895,261.4009847,622.41713,61.42300053,443.8077205,382.2662991,61.54142148,59.57087044,1.970551039,65.23182522,0,65.23182522,1.852130093,63.37969513,1.243702242,4.632211862,2.841497247,-2.841497247,0.044229042,0.234976164,0.529708622,17.03725016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.26178656,1.341861947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.383772094,16.3768529,57.64555865,17.71871484,382.2662991,0,0.614164168,52.10878765,-0.614164168,127.8912124,0.968588543,0,427.9043162,17.71871484,439.5008606,4,17,3% -4/9/2018 2:00,83.00738638,274.6559215,56.3016401,254.241272,25.34995508,132.5350724,107.5250865,25.00998595,24.5855604,0.424425545,14.41537916,0,14.41537916,0.764394677,13.65098448,1.448752196,4.79365014,7.409718249,-7.409718249,0,0.450252515,0.191098669,6.146390101,0.424289047,1,0.134147379,0,0.94727034,0.986032303,0.724496596,1,23.83781583,0.553801341,0.060423843,0.312029739,0.842981967,0.567478563,0.961238037,0.922476074,0.13078251,5.908143954,23.96859834,6.461945296,61.90337004,0,0.42292538,64.98058281,-0.42292538,115.0194172,0.931775835,0,81.64866263,6.461945296,85.87787658,4,18,5% -4/9/2018 3:00,94.80306827,283.8721071,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654625682,4.954502923,-9.881239006,9.881239006,0,#DIV/0!,0,0,1,0.180290969,0,0.100858494,0.961238037,1,0.47857519,0.754078594,0,0,0.115824807,0.033672263,0.724496596,0.448993192,0.996894588,0.958132625,0,0,0,0,0,0,0.204294948,78.21177093,-0.204294948,101.7882291,0.805255817,0,0,0,0,4,19,0% -4/9/2018 4:00,105.9962696,293.8265306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8499839,5.128240389,-2.516577452,2.516577452,0.96051378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.021762812,91.24701573,0.021762812,88.75298427,0,0,0,0,0,4,20,0% -4/9/2018 5:00,116.2867528,305.3438096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029586712,5.329254829,-1.151247359,1.151247359,0.727028583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.241778375,103.9915253,0.241778375,76.00847471,0,0.84319904,0,0,0,4,21,0% -4/9/2018 6:00,125.0426658,319.3365957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182406223,5.573475016,-0.50316312,0.50316312,0.616199651,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440745779,116.1514744,0.440745779,63.84852557,0,0.936555919,0,0,0,4,22,0% -4/9/2018 7:00,131.344301,336.5059651,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292390506,5.873137044,-0.069263726,0.069263726,0.541998484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605095432,127.2357094,0.605095432,52.76429058,0,0.967368406,0,0,0,4,23,0% -4/10/2018 8:00,134.119384,356.4297039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340824842,6.220871885,0.291669441,-0.291669441,0.480275278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723618666,136.3540581,0.723618666,43.64594188,0,0.980902833,0,0,0,4,0,0% -4/10/2018 9:00,132.7245455,16.84713332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316480317,0.294037946,0.649310922,-0.649310922,0.419114982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78823128,142.0205277,0.78823128,37.97947228,0,0.986566841,0,0,0,4,1,0% -4/10/2018 10:00,127.4982049,35.08200099,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225263465,0.612296425,1.068677773,-1.068677773,0.347399027,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794524158,142.6103343,0.794524158,37.38966573,0,0.987069251,0,0,0,4,2,0% -4/10/2018 11:00,119.4515994,50.09427824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084823706,0.874310092,1.665174087,-1.665174087,0.24539215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742063478,137.9074901,0.742063478,42.09250987,0,0.98262032,0,0,0,4,3,0% -4/10/2018 12:00,109.5907639,62.33423288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912719659,1.0879376,2.784648849,-2.784648849,0.05395069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634420108,129.3769883,0.634420108,50.62301174,0,0.97118787,0,0,0,4,4,0% -4/10/2018 13:00,98.63984647,72.70283783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721590095,1.268903896,6.573911496,-6.573911496,0,#DIV/0!,0,0,0.372667651,1,0.150959168,0,0.945224661,0.983986624,0.724496596,1,0,0,0.054180697,0.312029739,0.857870579,0.582367175,0.961238037,0.922476074,0,0,0,0,0,0,-0.478926171,118.615292,0.478926171,61.38470796,0,0.945599775,0,0,0,4,5,0% -4/10/2018 14:00,86.8498827,82.0588806,10.96109032,67.00179962,7.279192413,7.142327233,0,7.142327233,7.059697904,0.082629329,21.79371136,18.9165736,2.877137759,0.219494509,2.657643251,1.515816408,1.432197647,-17.76917616,17.76917616,0,0.664093827,0.054873627,1.764924476,1,0.610722535,0,0.05621793,0.961238037,1,0.577474782,0.852978186,6.786050154,0.15029273,0.115824807,0.14543399,0.724496596,0.448993192,0.984666016,0.945904053,0.039755756,1.711229928,6.82580591,1.861522657,0,7.36379581,-0.282329336,106.3992761,0.282329336,73.60072393,0,0.872901861,6.82580591,8.289393723,12.25104831,4,6,79% -4/10/2018 15:00,75.19562839,91.17611384,189.1882551,535.9433307,52.24426993,52.09509341,0,52.09509341,50.66891243,1.42618098,84.01267483,36.56643453,47.4462403,1.575357499,45.8708828,1.312411299,1.591323386,-3.528184232,3.528184232,0.866491272,0.276149647,1.288354366,41.43790509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.70488592,1.141341146,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.933408352,39.83169054,49.63829427,40.97303169,0,36.56643453,-0.068228173,93.91222569,0.068228173,86.08777431,0,0,49.63829427,40.97303169,76.45432405,4,7,54% -4/10/2018 16:00,63.44573295,100.8708639,403.6543459,734.1069482,75.47532922,191.8554967,115.6131102,76.24238654,73.19946957,3.042916964,100.1465292,0,100.1465292,2.27585965,97.87066951,1.107336936,1.760528695,-1.71745995,1.71745995,0.823856639,0.186980098,2.607146734,83.85480097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.36211443,1.648852569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.888868934,80.60442426,72.25098336,82.25327683,115.6131102,0,0.157488102,80.93887335,-0.157488102,99.06112665,0.732515699,0,156.9394016,82.25327683,210.7725262,4,8,34% -4/10/2018 17:00,52.09865521,112.2259309,596.9017416,824.6541385,90.31363624,403.32448,311.2344357,92.09004435,87.59034689,4.499697461,147.4490273,0,147.4490273,2.723289355,144.7257379,0.909293069,1.958712,-0.951168736,0.951168736,0.692813123,0.151304025,3.32658914,106.9945418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.19517309,1.973013867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410102508,102.8472233,86.6052756,104.8202372,311.2344357,0,0.377412082,67.82652707,-0.377412082,112.1734729,0.917518815,0,372.1687261,104.8202372,440.771475,4,9,18% -4/10/2018 18:00,41.78142783,126.9264212,750.1529768,871.2934975,100.4363738,605.2423672,502.1795506,103.0628166,97.40784657,5.654970005,184.9118014,0,184.9118014,3.028527241,181.8832742,0.729223482,2.215283957,-0.48760785,0.48760785,0.613539543,0.133887856,3.762149218,121.0036512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.63212721,2.194157677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.725664302,116.3133121,96.35779152,118.5074698,502.1795506,0,0.576360953,54.80500362,-0.576360953,125.1949964,0.963248807,0,580.0816447,118.5074698,657.6424136,4,10,13% -4/10/2018 19:00,33.67349036,147.4232785,851.4527026,894.9446061,106.6701818,772.7842684,662.911976,109.8722924,103.4536823,6.418610127,209.6610651,0,209.6610651,3.216499553,206.4445655,0.587713277,2.573021605,-0.145073499,0.145073499,0.554962719,0.12528022,3.919954882,126.0792238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.44361446,2.330342977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839993968,121.1921455,102.2836084,123.5224885,662.911976,0,0.740729618,42.20639505,-0.740729618,137.7936049,0.982498986,0,753.5939529,123.5224885,834.4369512,4,11,11% -4/10/2018 20:00,29.77801286,174.9056044,893.3685669,903.4979403,109.1720163,888.9948605,776.3801937,112.6146668,105.8800772,6.734589618,219.8994912,0,219.8994912,3.291939092,216.6075521,0.519724369,3.052678676,0.147184416,-0.147184416,0.504983672,0.122202661,3.808248695,122.4863688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7759575,2.384998666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.759063216,117.7385567,104.5350207,120.1235554,776.3801937,0,0.859304885,30.76137521,-0.859304885,149.2386248,0.991813434,0,874.5593272,120.1235554,953.1777917,4,12,9% -4/10/2018 21:00,31.73390813,203.9273014,872.8950084,899.4003421,107.9550338,942.3342202,831.0541777,111.2800425,104.6997912,6.580251286,214.8987434,0,214.8987434,3.25524258,211.6435008,0.553861181,3.559202844,0.429033081,-0.429033081,0.456784712,0.123674706,3.447832571,110.8941473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6414218,2.358412168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.49794296,106.5956725,103.1393647,108.9540846,831.0541777,0,0.924009186,22.48058023,-0.924009186,157.5194198,0.995887984,0,930.7762342,108.9540846,1002.084504,4,13,8% -4/10/2018 22:00,38.64313685,226.9296419,791.5229675,881.5119834,103.0175529,926.0779955,820.1999674,105.8780281,99.91119358,5.96683447,195.0202667,0,195.0202667,3.106359314,191.9139074,0.674449971,3.960669422,0.735580553,-0.735580553,0.404362006,0.13015106,2.875327566,92.48041839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.03843958,2.250546749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083165033,88.89569582,98.12160461,91.14624257,820.1999674,0,0.930446758,21.49543616,-0.930446758,158.5045638,0.996262374,0,915.2559712,91.14624257,974.9093641,4,14,7% -4/10/2018 23:00,48.36586323,243.3368881,655.1977579,844.2755881,94.28500746,837.828317,741.4471929,96.38112406,91.44196661,4.939157456,161.7033229,0,161.7033229,2.843040849,158.860282,0.844143559,4.247029888,1.117377789,-1.117377789,0.339070834,0.143903129,2.144486391,68.97405397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89749647,2.059773417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553673091,66.30048423,89.45116956,68.36025765,741.4471929,0,0.878205178,28.57339274,-0.878205178,151.4266073,0.993065697,0,825.7569427,68.36025765,870.4973641,4,15,5% -4/10/2018 0:00,59.43796773,255.6230012,474.2791016,772.9092758,81.27720866,678.2341313,595.8324141,82.40171714,78.82640093,3.575316204,117.4452669,0,117.4452669,2.450807722,114.9944592,1.037388238,4.461463014,1.685319128,-1.685319128,0.241947145,0.171369998,1.329497995,42.76122563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77093489,1.775601852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.963216772,41.10371658,76.73415166,42.87931843,595.8324141,0,0.77089567,39.56561249,-0.77089567,140.4343875,0.98514038,0,663.7127227,42.87931843,691.776379,4,16,4% -4/10/2018 1:00,71.08793027,265.758487,264.4948868,625.3084414,61.82197204,447.1204909,385.1688053,61.95168566,59.95781148,1.99387418,65.99400808,0,65.99400808,1.864160556,64.12984753,1.240718442,4.638360614,2.809053155,-2.809053155,0.049777308,0.233735982,0.542091605,17.43552944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.633729,1.350577977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.392743522,16.75969409,58.02647253,18.11027207,385.1688053,0,0.615966105,51.97784719,-0.615966105,128.0221528,0.968826702,0,431.188296,18.11027207,443.0411069,4,17,3% -4/10/2018 2:00,82.83830468,274.9917082,58.77670087,262.025222,26.11003363,137.0556039,111.2898005,25.76580338,25.32271978,0.443083599,15.03840547,0,15.03840547,0.78731385,14.25109162,1.445801163,4.799510723,7.213428782,-7.213428782,0,0.444224212,0.196828462,6.330679945,0.412944095,1,0.137752347,0,0.946837097,0.98559906,0.724496596,1,24.5527201,0.570406204,0.059073901,0.312029739,0.846175069,0.570671665,0.961238037,0.922476074,0.134717109,6.085290362,24.68743721,6.655696566,65.33333449,0,0.424729343,64.86646706,-0.424729343,115.1335329,0.932277971,0,85.59626574,6.655696566,89.95228603,4,18,5% -4/10/2018 3:00,94.62029102,284.2004375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651435618,4.960233371,-10.23425126,10.23425126,0,#DIV/0!,0,0,1,0.218941439,0,0.09740191,0.961238037,1,0.485663515,0.761166919,0,0,0.115824807,0.04171015,0.724496596,0.448993192,0.996113079,0.957351115,0,0,0,0,0,0,0.206263468,78.09652874,-0.206263468,101.9034713,0.807591587,0,0,0,0,4,19,0% -4/10/2018 4:00,105.7916085,294.1528809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84641189,5.133936276,-2.536951792,2.536951792,0.963997997,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.019595121,91.12278959,0.019595121,88.87721041,0,0,0,0,0,4,20,0% -4/10/2018 5:00,116.048991,305.6663401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025436987,5.334884048,-1.153889293,1.153889293,0.72748038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239348261,103.8480774,0.239348261,76.15192258,0,0.841099381,0,0,0,4,21,0% -4/10/2018 6:00,124.7613896,319.6380691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177497028,5.57873672,-0.501353885,0.501353885,0.615890253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438008091,115.9768584,0.438008091,64.02314161,0,0.935846857,0,0,0,4,22,0% -4/10/2018 7:00,131.01544,336.7437187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2866508,5.877286627,-0.06530795,0.06530795,0.541322007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602026227,127.0151537,0.602026227,52.98484631,0,0.96694714,0,0,0,4,23,0% -4/11/2018 8:00,133.7545371,356.5457274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334457061,6.222896877,0.297438418,-0.297438418,0.479288724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720216859,136.0723877,0.720216859,43.92761235,0,0.980576465,0,0,0,4,0,0% -4/11/2018 9:00,132.3509635,16.8182158,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309960081,0.29353324,0.657422384,-0.657422384,0.417727841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784518728,141.6761884,0.784518728,38.32381163,0,0.986266659,0,0,0,4,1,0% -4/11/2018 10:00,127.1407567,34.94326713,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219024818,0.609875063,1.080762859,-1.080762859,0.345332356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790544159,142.2363931,0.790544159,37.76360687,0,0.986752426,0,0,0,4,2,0% -4/11/2018 11:00,119.1201324,49.89570332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079038516,0.870844306,1.68577886,-1.68577886,0.241868526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7378778,137.5509491,0.7378778,42.44905086,0,0.982238102,0,0,0,4,3,0% -4/11/2018 12:00,109.2838361,62.10781657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907362759,1.08398589,2.831064661,-2.831064661,0.046013119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63010475,129.0578512,0.63010475,50.94214881,0,0.970648114,0,0,0,4,4,0% -4/11/2018 13:00,98.35144589,72.46241306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716556555,1.264707692,6.805636336,-6.805636336,0,#DIV/0!,0,0,0.387884521,1,0.145893042,0,0.945847871,0.984609834,0.724496596,1,0,0,0.056048133,0.312029739,0.853384694,0.57788129,0.961238037,0.922476074,0,0,0,0,0,0,-0.474566134,118.3311048,0.474566134,61.66889522,0,0.944640607,0,0,0,4,5,0% -4/11/2018 14:00,86.58491975,81.80789967,13.1057144,78.215987,8.446457803,8.290562348,0,8.290562348,8.191765936,0.098796411,25.19291536,21.7605913,3.432324057,0.254691867,3.17763219,1.511191932,1.427817203,-16.40281304,16.40281304,0,0.644486637,0.063672967,2.047941484,1,0.57177114,0,0.06088979,0.961238037,1,0.566379792,0.841883196,7.874237007,0.174300493,0.115824807,0.132906943,0.724496596,0.448993192,0.986180692,0.947418729,0.046130848,1.985646588,7.920367855,2.159947081,0,9.3185132,-0.278211554,106.1534936,0.278211554,73.84650637,0,0.870280649,7.920367855,10.26966879,14.64166069,4,6,85% -4/11/2018 15:00,74.92289676,90.91318345,194.1054758,542.5324631,52.98265747,52.84828393,0,52.84828393,51.38503487,1.463249067,83.41494384,34.75420134,48.6607425,1.597622608,47.06311989,1.307651234,1.586734385,-3.467520344,3.467520344,0.876865408,0.272958077,1.332253142,42.84984065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.39325004,1.157472141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.965212867,41.18889671,50.3584629,42.34636885,0,34.75420134,-0.064059211,93.6728373,0.064059211,86.3271627,0,0,50.3584629,42.34636885,78.07331439,4,7,55% -4/11/2018 16:00,63.16672055,100.5935411,408.5817194,736.8851705,75.95476688,195.7247216,118.9802096,76.744512,73.66445041,3.080061586,101.3556847,0,101.3556847,2.290316465,99.06536825,1.102467251,1.755688498,-1.701636553,1.701636553,0.821150678,0.185898593,2.631600048,84.6413036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.8090717,1.659326482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906585276,81.36044051,72.71565698,83.01976699,118.9802096,0,0.161463705,80.70813491,-0.161463705,99.29186509,0.740332883,0,160.8006185,83.01976699,215.1353956,4,8,34% -4/11/2018 17:00,51.80319493,111.9364761,601.5626642,826.1480418,90.70198274,407.3657866,314.8639699,92.50181677,87.9669833,4.534833464,148.590832,0,148.590832,2.734999434,145.8558326,0.904136315,1.953660061,-0.945419258,0.945419258,0.691829905,0.150777281,3.348044662,107.6846252,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.55721034,1.98149778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.425646961,103.5105577,86.9828573,105.4920555,314.8639699,0,0.381122939,67.59674255,-0.381122939,112.4032574,0.918808736,0,376.2826235,105.4920555,445.325064,4,9,18% -4/11/2018 18:00,41.45729289,126.6481923,754.4832564,872.2475301,100.7778541,609.1218786,505.6952351,103.4266435,97.73903,5.687613482,185.9720248,0,185.9720248,3.038824133,182.9332006,0.72356626,2.210427948,-0.485672716,0.485672716,0.613208616,0.133572022,3.781541337,121.6273684,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.95047332,2.20161774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.739713826,116.9128528,96.69018714,119.1144705,505.6952351,0,0.579761155,54.56625473,-0.579761155,125.4337453,0.963757589,0,584.0578075,119.1144705,662.0158462,4,10,13% -4/11/2018 19:00,33.31399482,147.2428527,855.4465382,895.643322,106.9813864,776.3799942,666.1757739,110.2042202,103.7555029,6.448717347,210.6388007,0,210.6388007,3.22588352,207.4129172,0.581438897,2.56987258,-0.14512826,0.14512826,0.554972084,0.125059114,3.937760159,126.6519027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.73373591,2.337141629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85289383,121.7426263,102.5866297,124.0797679,666.1757739,0,0.743795837,41.94422559,-0.743795837,138.0557744,0.982777252,0,757.2890263,124.0797679,838.4967528,4,11,11% -4/11/2018 20:00,29.40711973,174.9845187,897.053361,904.0795122,109.4619595,892.2736927,779.350048,112.9236447,106.1612776,6.762367152,220.8016551,0,220.8016551,3.300681951,217.5009731,0.513251063,3.054055991,0.145732302,-0.145732302,0.505231998,0.122023911,3.824832222,123.019752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.046258,2.391332838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771077925,118.2512649,104.817336,120.6425978,779.350048,0,0.862037064,30.45392053,-0.862037064,149.5460795,0.991997854,0,877.9309108,120.6425978,956.8890782,4,12,9% -4/11/2018 21:00,31.40796446,204.273045,876.322591,899.9544798,108.2309125,945.3185394,833.7450984,111.573441,104.9673512,6.606089851,215.7381192,0,215.7381192,3.263561342,212.4745579,0.548172391,3.565237209,0.426242145,-0.426242145,0.45726199,0.123505788,3.463528488,111.398982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8986106,2.364439083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509314599,107.0809387,103.4079252,109.4453778,833.7450984,0,0.9264303,22.1149702,-0.9264303,157.8850298,0.996029399,0,933.8425545,109.4453778,1005.472365,4,13,8% -4/11/2018 22:00,38.38343268,227.3589954,794.7628934,882.127078,103.2872661,928.8367412,822.6727089,106.1640323,100.1727739,5.9912584,195.8139571,0,195.8139571,3.114492162,192.6994649,0.669917279,3.968163054,0.731074812,-0.731074812,0.405132534,0.12995985,2.890431211,92.96620352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.28988057,2.25643897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.094107573,89.36265097,98.38398814,91.61908994,822.6727089,0,0.932601129,21.15601666,-0.932601129,158.8439833,0.996386511,0,918.0839786,91.61908994,978.0468406,4,14,7% -4/11/2018 23:00,48.15550669,243.7490577,658.329065,845.0903544,94.55984811,840.4820383,743.810756,96.67128237,91.7085198,4.962762571,162.470832,0,162.470832,2.851328309,159.6195037,0.840472145,4.254223606,1.110053457,-1.110053457,0.340323368,0.143636144,2.159182738,69.44673901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.15371753,2.065777654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.564320544,66.75484707,89.71803808,68.82062472,743.810756,0,0.880155302,28.33889693,-0.880155302,151.6611031,0.993191844,0,828.4648141,68.82062472,873.5065366,4,15,5% -4/11/2018 0:00,59.25583252,256.0006802,477.375323,774.2404684,81.57926085,680.9872134,598.2692115,82.71800197,79.11934514,3.598656829,118.2050896,0,118.2050896,2.45991571,115.7451739,1.034209379,4.468054757,1.67202626,-1.67202626,0.244220359,0.17089124,1.343653816,43.21652551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.052524,1.782200558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973472616,41.54136814,77.02599662,43.3235687,598.2692115,0,0.772717568,39.4014448,-0.772717568,140.5985552,0.985293305,0,666.4966452,43.3235687,694.8510545,4,16,4% -4/11/2018 1:00,70.9179141,266.1087278,267.5709902,628.1439865,62.21662852,450.3887178,388.0310871,62.35763076,60.34056762,2.017063147,66.75174532,0,66.75174532,1.876060905,64.87568441,1.2377511,4.644473468,2.777250618,-2.777250618,0.055215862,0.232523819,0.554492027,17.83436965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.00164876,1.359199739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401727586,17.14307447,58.40337634,18.50227421,388.0310871,0,0.617742262,51.84855071,-0.617742262,128.1514493,0.969060095,0,434.4288184,18.50227421,446.5381869,4,17,3% -4/11/2018 2:00,82.66965545,275.3250937,61.27283712,269.7042553,26.86129541,141.5472212,115.0339924,26.51322877,26.05132824,0.461900528,15.66627592,0,15.66627592,0.809967164,14.85630875,1.442857679,4.805329398,7.026478539,-7.026478539,0,0.438388308,0.202491791,6.51283206,0.40171525,1,0.14136944,0,0.946399422,0.985161385,0.724496596,1,25.2591103,0.586818453,0.057725638,0.312029739,0.849378651,0.573875246,0.961238037,0.922476074,0.138615586,6.260381904,25.39772588,6.847200357,68.82308343,0,0.426519012,64.75315016,-0.426519012,115.2468498,0.932771931,0,89.59396633,6.847200357,94.07532202,4,18,5% -4/11/2018 3:00,94.43775247,284.5259696,0,0,0,0,0,0,0,0,0,0,0,0,0,1.648249719,4.965914978,-10.6156906,10.6156906,0,#DIV/0!,0,0,1,0.256806004,0,0.093923023,0.961238037,1,0.492894444,0.768397848,0,0,0.115824807,0.049900974,0.724496596,0.448993192,0.995300858,0.956538895,0,0,0,0,0,0,0.20822551,77.98161717,-0.20822551,102.0183828,0.809875723,0,0,0,0,4,19,0% -4/11/2018 4:00,105.5870343,294.4758805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842841396,5.139573682,-2.557867209,2.557867209,0.967574744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.017425453,90.99845544,0.017425453,89.00154456,0,0,0,0,0,4,20,0% -4/11/2018 5:00,115.8113737,305.9847665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021289782,5.340441637,-1.156616005,1.156616005,0.727946675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.236909373,103.7042006,0.236909373,76.29579943,0,0.838948832,0,0,0,4,21,0% -4/11/2018 6:00,124.4806319,319.9346424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172596882,5.583912901,-0.499563401,0.499563401,0.615584063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435256959,115.8016457,0.435256959,64.19835428,0,0.935125329,0,0,0,4,22,0% -4/11/2018 7:00,130.6878418,336.9764466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280933131,5.881348495,-0.06134976,0.06134976,0.540645116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59894136,126.7941157,0.59894136,53.20588431,0,0.966519373,0,0,0,4,23,0% -4/12/2018 8:00,133.3918012,356.658308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328126125,6.22486178,0.303225028,-0.303225028,0.478299156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716799779,135.7908924,0.716799779,44.20910763,0,0.980245514,0,0,0,4,0,0% -4/12/2018 9:00,131.9799276,16.78855047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303484283,0.293015482,0.665574143,-0.665574143,0.416333808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780793868,141.3333188,0.780793868,38.6666812,0,0.985962612,0,0,0,4,1,0% -4/12/2018 10:00,126.7858259,34.80561548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212830107,0.607472588,1.092939226,-1.092939226,0.343250074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786557194,141.86493,0.786557194,38.13507004,0,0.986431832,0,0,0,4,2,0% -4/12/2018 11:00,118.7910453,49.69875665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073294862,0.867406938,1.706631702,-1.706631702,0.23830248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733692508,137.1968499,0.733692508,42.80315006,0,0.98185156,0,0,0,4,3,0% -4/12/2018 12:00,108.9792453,61.88292936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902046647,1.080060868,2.878502266,-2.878502266,0.037900811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625798631,128.7408289,0.625798631,51.25917113,0,0.970102094,0,0,0,4,4,0% -4/12/2018 13:00,98.06545783,72.22321156,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711565122,1.260532838,7.051550279,-7.051550279,0,#DIV/0!,0,0,0.403246018,1,0.140873437,0,0.946459615,0.985221578,0.724496596,1,0,0,0.057910157,0.312029739,0.848939368,0.573435964,0.961238037,0.922476074,0,0,0,0,0,0,-0.470225086,118.0489083,0.470225086,61.95109166,0,0.943667944,0,0,0,4,5,0% -4/12/2018 14:00,86.32133711,81.5577647,15.41644412,89.89272151,9.648866234,9.474132984,0,9.474132984,9.357917317,0.116215668,28.6687396,24.63989532,4.028844279,0.290948917,3.737895362,1.506591547,1.423451525,-15.23837669,15.23837669,0,0.625881439,0.072737229,2.339479329,1,0.531850456,0,0.065529828,0.961238037,1,0.555532102,0.831035507,8.99518607,0.199157122,0.115824807,0.12066192,0.724496596,0.448993192,0.987626628,0.948864665,0.052697875,2.268078964,9.047883946,2.467236086,0,11.53515577,-0.274103341,105.9085863,0.274103341,74.09141371,0,0.867587047,9.047883946,12.47498781,17.21251397,4,6,90% -4/12/2018 15:00,74.6529299,90.65063285,198.9796595,548.9034024,53.70393633,53.58455722,0,53.58455722,52.0845645,1.499992723,82.7589531,32.89465912,49.86429398,1.619371827,48.24492215,1.302939423,1.582152012,-3.409511977,3.409511977,0.886785423,0.269896614,1.376005805,44.25707668,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.06566453,1.173229376,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.996911522,42.54158551,51.06257605,43.71481488,0,32.89465912,-0.059927956,93.43567753,0.059927956,86.56432247,0,0,51.06257605,43.71481488,79.6730481,4,7,56% -4/12/2018 16:00,62.89077394,100.3159344,413.4448896,739.5817427,76.426181,199.5597337,122.3213618,77.23837188,74.12164966,3.116722218,102.5490315,0,102.5490315,2.30453134,100.2445002,1.097651074,1.750843348,-1.686278955,1.686278955,0.818524375,0.18485216,2.65566717,85.415385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.24854901,1.669625111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.924021825,82.10451699,73.17257083,83.7741421,122.3213618,0,0.16539262,80.47995671,-0.16539262,99.52004329,0.74768905,0,164.6309136,83.7741421,219.4594141,4,8,33% -4/12/2018 17:00,51.51104395,111.64568,606.1527781,827.5999766,91.08453263,411.3515963,318.4441627,92.90743358,88.3379979,4.569435681,149.7152936,0,149.7152936,2.746534725,146.9687588,0.899037318,1.948584711,-0.939817071,0.939817071,0.690871874,0.150266626,3.369152377,108.3635218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.91384368,1.989855059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440939428,104.163139,87.35478311,106.152994,318.4441627,0,0.384780294,67.36989865,-0.384780294,112.6301014,0.920055716,0,380.3411551,106.152994,449.8161666,4,9,18% -4/12/2018 18:00,41.13652134,126.3670333,758.7407395,873.1745869,101.1143492,612.936033,509.1509463,103.7850867,98.06537847,5.719708187,187.0144474,0,187.0144474,3.0489707,183.9654767,0.71796774,2.205520797,-0.483794272,0.483794272,0.612887383,0.133266008,3.800610738,122.2407058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.26417189,2.208968893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753529542,117.5024161,97.01770143,119.711385,509.1509463,0,0.583103258,54.33089341,-0.583103258,125.6691066,0.964251894,0,587.9674657,119.711385,666.316173,4,10,13% -4/12/2018 19:00,32.95747793,147.058494,859.3689014,896.3218392,107.2880657,779.9060172,669.3747968,110.5312204,104.0529347,6.478285778,211.5990706,0,211.5990706,3.235131031,208.3639396,0.575216503,2.566654914,-0.145202659,0.145202659,0.554984807,0.124845181,3.955270796,127.215105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0196386,2.343841419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865580228,122.2839977,102.8852189,124.6278392,669.3747968,0,0.746801838,41.68590253,-0.746801838,138.3140975,0.983047835,0,760.9126636,124.6278392,842.4790917,4,11,11% -4/12/2018 20:00,29.03870501,175.0627093,900.6708762,904.6441124,109.7477621,895.482469,782.2543694,113.2280996,106.4384621,6.78963751,221.6873815,0,221.6873815,3.309299952,218.3780815,0.506821013,3.055420674,0.144281244,-0.144281244,0.505480144,0.121851128,3.841155579,123.5447673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3126984,2.39757655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.782904141,118.7559296,105.0956025,121.1535061,782.2543694,0,0.864709512,30.15044809,-0.864709512,149.8495519,0.992177113,0,881.2304848,121.1535061,960.5230315,4,12,9% -4/12/2018 21:00,31.08470712,204.621198,879.6895571,900.4928644,108.5030353,948.235773,836.3730331,111.8627399,105.2312685,6.631471464,216.5626847,0,216.5626847,3.271766848,213.2909178,0.542530486,3.571313625,0.423469019,-0.423469019,0.457736222,0.123342416,3.479004859,111.8967553,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1522979,2.370383944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520527178,107.5594174,103.6728251,109.9298013,836.3730331,0,0.928794737,21.75229073,-0.928794737,158.2477093,0.996166792,0,936.8398666,109.9298013,1008.786723,4,13,8% -4/12/2018 22:00,38.12636881,227.7891819,797.9508471,882.7259754,103.5536069,931.5340745,825.0877003,106.4463741,100.4310836,6.015290541,196.5949446,0,196.5949446,3.122523321,193.4724212,0.665430668,3.975671225,0.726607599,-0.726607599,0.405896472,0.129774418,2.90536074,93.4463885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.53817764,2.262257516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.104923966,89.82422303,98.6431016,92.08648055,825.0877003,0,0.934704227,20.81958683,-0.934704227,159.1804132,0.996507143,0,920.8488882,92.08648055,981.117648,4,14,7% -4/12/2018 23:00,47.94724871,244.1603353,661.4184774,845.8861714,94.83163414,843.081815,746.1236526,96.95816235,91.97211048,4.986051867,163.2280911,0,163.2280911,2.859523661,160.3685675,0.836837357,4.261401754,1.102805454,-1.102805454,0.34156285,0.143376149,2.173754238,69.91540853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.40709092,2.071715158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.574877546,67.20535004,89.98196847,69.2770652,746.1236526,0,0.882061532,28.10794641,-0.882061532,151.8920536,0.993314612,0,831.1174952,69.2770652,876.4579488,4,15,5% -4/12/2018 0:00,59.07517542,256.3766123,480.4407235,775.5445884,81.87829427,683.693842,600.6627153,83.03112671,79.4093616,3.621765113,118.9573484,0,118.9573484,2.468932671,116.4884158,1.031056317,4.474616009,1.658909539,-1.658909539,0.246463451,0.170423302,1.357740478,43.66960098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33129885,1.788733316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.983678354,41.97688151,77.31497721,43.76561483,600.6627153,0,0.774504425,39.23987641,-0.774504425,140.7601236,0.98544259,0,669.2335989,43.76561483,697.8773185,4,16,4% -4/12/2018 1:00,70.74884155,266.456786,270.6291901,630.9250769,62.60705109,453.613102,390.8537674,62.75933466,60.71921751,2.040117149,67.50501396,0,67.50501396,1.887833586,65.61718037,1.234800227,4.65054823,2.746072307,-2.746072307,0.060547668,0.23133887,0.566906751,18.23366985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.36562144,1.367729007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410722011,17.52689701,58.77634345,18.89462602,390.8537674,0,0.619493157,51.72086848,-0.619493157,128.2791315,0.969288858,0,437.6265454,18.89462602,449.9927002,4,17,3% -4/12/2018 2:00,82.50145359,275.6559651,63.78838974,277.2757964,27.60361014,146.0078842,118.7557609,27.25212328,26.77125945,0.480863826,16.2985843,0,16.2985843,0.832350692,15.46623361,1.439922003,4.811104193,6.848231611,-6.848231611,0,0.432737215,0.208087673,6.692814863,0.390601697,1,0.144998307,0,0.945957332,0.984719295,0.724496596,1,25.95684579,0.603035243,0.056379174,0.312029739,0.852592367,0.577088963,0.961238037,0.922476074,0.14247785,6.43338822,26.09932364,7.036423463,72.36955919,0,0.428294725,64.64061231,-0.428294725,115.3593877,0.93325796,0,93.6387908,7.036423463,98.24398923,4,18,5% -4/12/2018 3:00,94.25547529,284.8485985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645068382,4.971545914,-11.02911795,11.02911795,0,#DIV/0!,0,0,1,0.293906952,0,0.09042184,0.961238037,1,0.500269745,0.775773149,0,0,0.115824807,0.05824768,0.724496596,0.448993192,0.994456787,0.955694824,0,0,0,0,0,0,0.210181333,77.86702098,-0.210181333,102.132979,0.812110177,0,0,0,0,4,19,0% -4/12/2018 4:00,105.3825877,294.7954323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839273129,5.145150914,-2.579345719,2.579345719,0.971247786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.015253804,90.87401247,0.015253804,89.12598753,0,0,0,0,0,4,20,0% -4/12/2018 5:00,115.5739632,306.2990067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017146187,5.345926163,-1.159431579,1.159431579,0.728428167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234462023,103.559913,0.234462023,76.44008698,0,0.836745848,0,0,0,4,21,0% -4/12/2018 6:00,124.2004771,320.226264,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167707258,5.589002659,-0.497794115,0.497794115,0.615281497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432493051,115.6258798,0.432493051,64.37412023,0,0.934391206,0,0,0,4,22,0% -4/12/2018 7:00,130.3616049,337.2041373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275239224,5.885322447,-0.057391417,0.057391417,0.5399682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595841866,126.5726701,0.595841866,53.42732988,0,0.966085118,0,0,0,4,23,0% -4/13/2018 8:00,133.0312786,356.767439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321833819,6.226766474,0.309026791,-0.309026791,0.477306996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713368814,135.5096766,0.713368814,44.49032343,0,0.979910028,0,0,0,4,0,0% -4/13/2018 9:00,131.6115449,16.75809483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297054792,0.292483931,0.673763218,-0.673763218,0.414933393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777058411,140.9920298,0.777058411,39.00797025,0,0.985654773,0,0,0,4,1,0% -4/13/2018 10:00,126.4335287,34.66899396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20668136,0.605088093,1.105203145,-1.105203145,0.341152821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782565236,141.4960498,0.782565236,38.50395024,0,0.986107563,0,0,0,4,2,0% -4/13/2018 11:00,118.4644585,49.50340781,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067594848,0.863997457,1.727728868,-1.727728868,0.234694652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729509758,136.8453111,0.729509758,43.15468889,0,0.981460821,0,0,0,4,3,0% -4/13/2018 12:00,108.6771106,61.65956665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896773401,1.076162453,2.926976178,-2.926976178,0.029611284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621504005,128.4260482,0.621504005,51.57395177,0,0.969549995,0,0,0,4,4,0% -4/13/2018 13:00,97.78199737,71.98524896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706617803,1.256379607,7.312884281,-7.312884281,0,#DIV/0!,0,0,0.418747658,1,0.135902048,0,0.947059835,0.985821798,0.724496596,1,0,0,0.059766,0.312029739,0.844536196,0.569032792,0.961238037,0.922476074,0,0,0,0,0,0,-0.46590528,117.768826,0.46590528,62.23117402,0,0.942682049,0,0,0,4,5,0% -4/13/2018 14:00,86.05939739,81.30850648,17.87882304,101.914144,10.87505052,10.68190575,0,10.68190575,10.54712763,0.13477812,32.18061679,27.51776625,4.662850538,0.327922898,4.33492764,1.502019837,1.419101148,-14.23508154,14.23508154,0,0.608264342,0.081980724,2.636781907,1,0.490963587,0,0.070133766,0.961238037,1,0.544938188,0.820441592,10.13830025,0.224686032,0.115824807,0.108704402,0.724496596,0.448993192,0.989005356,0.950243393,0.059394756,2.555764424,10.19769501,2.780450455,0,14.00754503,-0.270009296,105.66482,0.270009296,74.33517999,0,0.86482119,10.19769501,14.89447222,19.94582919,4,6,96% -4/13/2018 15:00,74.38583869,90.38850472,203.8078143,555.0622262,54.40844832,54.30422225,0,54.30422225,52.76783286,1.536389393,82.04886694,30.99268728,51.05617966,1.640615463,49.41556419,1.298277802,1.577577013,-3.354016509,3.354016509,0.896275707,0.266959579,1.419571409,45.65829627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.72244807,1.188620318,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.028474654,43.88849107,51.75092272,45.07711139,0,30.99268728,-0.055836419,93.20085587,0.055836419,86.79914413,0,0,51.75092272,45.07711139,81.25299058,4,7,57% -4/13/2018 16:00,62.6180026,100.0380947,418.2420187,742.1982856,76.88958475,203.3581936,125.6342285,77.72396508,74.57108008,3.152885003,103.7261243,0,103.7261243,2.318504673,101.4076197,1.092890316,1.745994131,-1.671375791,1.671375791,0.815975783,0.183839933,2.679343062,86.17688305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.68055862,1.679748743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.941174927,82.83649788,73.62173355,84.51624662,125.6342285,0,0.169273132,80.25443987,-0.169273132,99.74556013,0.754619396,0,168.4277592,84.51624662,223.7419523,4,8,33% -4/13/2018 17:00,51.22231684,111.3535896,610.6707262,829.0105362,91.4612535,415.2802498,321.9733967,93.30685313,88.70335925,4.603493883,150.8220819,0,150.8220819,2.757894249,148.0641877,0.893998079,1.943486772,-0.934360973,0.934360973,0.689938827,0.149771799,3.38990815,109.0310988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.2650429,1.998084995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.455976915,104.8048394,87.72101982,106.8029244,321.9733967,0,0.388382756,67.14609288,-0.388382756,112.8539071,0.92126102,0,384.3425596,106.8029244,454.2429375,4,9,18% -4/13/2018 18:00,40.81923688,126.0829493,762.9244772,874.0749864,101.4458296,616.6836429,512.5455324,104.1381105,98.38686351,5.75124697,188.0388384,0,188.0388384,3.058966057,184.9798723,0.712430082,2.200562596,-0.481972874,0.481972874,0.612575905,0.132969688,3.819354608,122.8435732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57319553,2.216210495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.767109412,118.0819151,97.34030494,120.2981256,512.5455324,0,0.586386226,54.09901901,-0.586386226,125.900981,0.964731967,0,591.8093646,120.2981256,670.5420819,4,10,13% -4/13/2018 19:00,32.60406324,146.8700972,863.2192106,896.9803918,107.5902031,783.3615856,672.508313,110.8532726,104.3459615,6.507311035,212.5417332,0,212.5417332,3.24424159,209.2974916,0.569048253,2.56336677,-0.145297322,0.145297322,0.555000995,0.124638333,3.972485169,127.7687784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3013072,2.350441988,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.878051982,122.8162097,103.1793592,125.1666517,672.508313,0,0.74974695,41.43153733,-0.74974695,138.5684627,0.983310832,0,764.4640683,125.1666517,846.3831384,4,11,11% -4/13/2018 20:00,28.67286634,175.1400304,904.2208423,905.1919554,110.0294212,898.6208436,785.0928167,113.5280269,106.7116282,6.816398654,222.5566049,0,222.5566049,3.317793016,219.2388119,0.500435924,3.056770183,0.142830598,-0.142830598,0.505728219,0.121684235,3.857218015,124.0613905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.575276,2.403729746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794541322,119.2525274,105.3698174,121.6562572,785.0928167,0,0.867321911,29.8510959,-0.867321911,150.1489041,0.992351278,0,884.4576771,121.6562572,964.0792643,4,12,9% -4/13/2018 21:00,30.76420384,204.9716071,882.9958726,901.0157236,108.7714117,951.085932,838.9379838,112.1479482,105.4915523,6.656395867,217.3724317,0,217.3724317,3.279859386,214.0925723,0.536936649,3.577429417,0.420713063,-0.420713063,0.458207518,0.123184507,3.494261421,112.3874587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4024926,2.37624696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531580505,108.0311002,103.9340731,110.4073472,838.9379838,0,0.93110249,21.39266966,-0.93110249,158.6073303,0.996300219,0,939.76817,110.4073472,1012.027571,4,13,8% -4/13/2018 22:00,37.87197565,228.2200021,801.0869398,883.3089468,103.8165945,934.1702902,827.4452174,106.7250728,100.6861411,6.038931733,197.3632566,0,197.3632566,3.130453366,194.2328032,0.660990669,3.983190455,0.722178194,-0.722178194,0.406653945,0.129594666,2.920115951,93.92096683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.78334862,2.268002807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.115614066,90.28040577,98.89896268,92.54840858,827.4452174,0,0.936756296,20.48623524,-0.936756296,159.5137648,0.996624325,0,923.5509936,92.54840858,984.1220761,4,14,7% -4/13/2018 23:00,47.74109589,244.5705431,664.4661486,846.663401,95.1003922,845.6281356,748.3863446,97.24179099,92.23276449,5.0090265,163.9751384,0,163.9751384,2.867627708,161.1075106,0.833239312,4.26856123,1.095632678,-1.095632678,0.342789467,0.143123005,2.188200307,70.38004377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65764147,2.077586513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.585343674,67.65197511,90.24298515,69.72956162,748.3863446,0,0.883924289,27.88056678,-0.883924289,152.1194332,0.993434069,0,833.7154769,69.72956162,879.3520804,4,15,5% -4/13/2018 0:00,58.89599633,256.7506514,483.4753856,776.8222081,82.17434543,686.3546064,603.013479,83.34112741,79.69648573,3.644641678,119.7020644,0,119.7020644,2.477859706,117.2242047,1.027929052,4.481144223,1.645966122,-1.645966122,0.248676905,0.169965934,1.371756518,44.12040501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.60729349,1.795200922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993832928,42.4102115,77.60112641,44.20541242,603.013479,0,0.776256745,39.08088721,-0.776256745,140.9191128,0.985588321,0,671.924169,44.20541242,700.8557273,4,16,4% -4/13/2018 1:00,70.58071604,266.8025376,273.6693355,633.6529348,62.99331255,456.7942862,393.6374194,63.15686681,61.09383176,2.06303505,68.25377963,0,68.25377963,1.899480794,66.35429883,1.231865883,4.656582734,2.715502195,-2.715502195,0.065775465,0.230180383,0.57933248,18.63332398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.72571491,1.376167369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.419724409,17.91105977,59.14543931,19.28722713,393.6374194,0,0.621219279,51.59477253,-0.621219279,128.4052275,0.969513123,0,440.7820829,19.28722713,453.4051873,4,17,3% -4/13/2018 2:00,82.33371689,275.9842115,66.3217216,284.7376226,28.3368692,150.4357158,122.4533466,27.98236919,27.48240804,0.499961152,16.93493041,0,16.93493041,0.854461158,16.08046925,1.436994445,4.816833175,6.678112282,-6.678112282,0,0.427263776,0.21361529,6.87060201,0.37960287,1,0.14863851,0,0.945510858,0.984272822,0.724496596,1,26.64580696,0.6190542,0.055034655,0.312029739,0.855815799,0.580312395,0.961238037,0.922476074,0.146303889,6.604283988,26.79211085,7.223338188,75.96970481,0,0.430056785,64.52883607,-0.430056785,115.4711639,0.933736284,0,97.7277807,7.223338188,102.4553111,4,18,5% -4/13/2018 3:00,94.07348585,285.1682217,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641892067,4.97712439,-11.47870037,11.47870037,0,#DIV/0!,0,0,1,0.330264634,0,0.08689848,0.961238037,1,0.507790949,0.783294353,0,0,0.115824807,0.066752964,0.724496596,0.448993192,0.993579719,0.954817755,0,0,0,0,0,0,0.212131135,77.75272847,-0.212131135,102.2472715,0.814296741,0,0,0,0,4,19,0% -4/13/2018 4:00,105.1783131,295.1114426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835707865,5.150666333,-2.601409523,2.601409523,0.975020919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.013080241,90.74946396,0.013080241,89.25053604,0,0,0,0,0,4,20,0% -4/13/2018 5:00,115.3368256,306.6089827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013007355,5.351336264,-1.162339944,1.162339944,0.728925527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232006599,103.4152374,0.232006599,76.58476256,0,0.834488888,0,0,0,4,21,0% -4/13/2018 6:00,123.9210125,320.5128878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.162829681,5.594005186,-0.496048397,0.496048397,0.614982961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429717107,115.4496084,0.429717107,64.55039161,0,0.933644381,0,0,0,4,22,0% -4/13/2018 7:00,130.0368299,337.4267846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269570831,5.889208375,-0.053435158,0.053435158,0.53929164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592728849,126.3508957,0.592728849,53.64910431,0,0.965644396,0,0,0,4,23,0% -4/14/2018 8:00,132.6730721,356.8731189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315581937,6.228610936,0.31484121,-0.31484121,0.476312672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709925415,135.2288472,0.709925415,44.7711528,0,0.979570066,0,0,0,4,0,0% -4/14/2018 9:00,131.245922,16.72681292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290673468,0.291937959,0.681986557,-0.681986557,0.41352712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77331411,140.652433,0.77331411,39.34756702,0,0.98534322,0,0,0,4,1,0% -4/14/2018 10:00,126.0839794,34.53335658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200580574,0.602720774,1.117550719,-1.117550719,0.339041261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778570279,141.1298573,0.778570279,38.87014272,0,0.985779722,0,0,0,4,2,0% -4/14/2018 11:00,118.1404902,49.30963115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061940534,0.860615416,1.749066232,-1.749066232,0.231045748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72533171,136.4964492,0.72533171,43.50355078,0,0.981066022,0,0,0,4,3,0% -4/14/2018 12:00,108.3775481,61.43772771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89154505,1.072290634,2.97650042,-2.97650042,0.021142139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617223105,128.1136332,0.617223105,51.88636677,0,0.968992015,0,0,0,4,4,0% -4/14/2018 13:00,97.50117629,71.74854451,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701716551,1.252248335,7.591012997,-7.591012997,0,#DIV/0!,0,0,0.434384657,1,0.130980518,0,0.947648484,0.986410447,0.724496596,1,0,0,0.061614892,0.312029739,0.840176732,0.564673327,0.961238037,0.922476074,0,0,0,0,0,0,-0.46160893,117.4909777,0.46160893,62.50902234,0,0.941683205,0,0,0,4,5,0% -4/14/2018 14:00,85.7993371,81.06015964,20.47812084,114.1723036,12.11502976,11.90408964,0,11.90408964,11.74971691,0.154372725,35.69272192,30.36225159,5.330470332,0.365312847,4.965157485,1.497480928,1.414766678,-13.36236658,13.36236658,0,0.591608471,0.091328212,2.937429228,1,0.44911259,0,0.0746978,0.961238037,1,0.534602847,0.810106251,11.29427482,0.250741314,0.115824807,0.097037903,0.724496596,0.448993192,0.990318666,0.951556703,0.066166979,2.846266666,11.3604418,3.09700798,0,16.72618216,-0.265933599,105.4224348,0.265933599,74.57756523,0,0.861983141,11.3604418,17.51469501,22.82345939,4,6,101% -4/14/2018 15:00,74.12173009,90.12684619,208.5870928,561.0149124,55.09652784,55.00758186,0,55.00758186,53.43516424,1.572417613,81.2887378,29.05301862,52.23571918,1.661363599,50.57435558,1.293668237,1.57301021,-3.300901298,3.300901298,0.905358943,0.264141597,1.46291065,47.05223521,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.36391238,1.203652272,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.059873786,45.2283982,52.42378616,46.43205048,0,29.05301862,-0.051786535,92.96847776,0.051786535,87.03152224,0,0,52.42378616,46.43205048,82.81263456,4,7,58% -4/14/2018 16:00,62.34851215,99.76007839,422.9713661,744.7364059,77.34499469,207.1178543,128.9165598,78.20129455,75.01275772,3.188536822,104.8865417,0,104.8865417,2.332236962,102.5543047,1.088186821,1.74114183,-1.656915946,1.656915946,0.813503004,0.182861066,2.70262308,86.92564847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10511597,1.68969774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.958041222,83.55623969,74.06315719,85.24593743,128.9165598,0,0.173103609,80.03168126,-0.173103609,99.96831874,0.761155647,0,172.1887247,85.24593743,227.9804858,4,8,32% -4/14/2018 17:00,50.93712447,111.0602599,615.1152423,830.38032,91.83211761,419.1501815,325.4501425,93.70003896,89.06304044,4.636998522,151.9108892,0,151.9108892,2.76907717,149.1418121,0.889020534,1.938367203,-0.929049662,0.929049662,0.689030539,0.149292541,3.4103082,109.6872346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.61078215,2.006186984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.470756682,105.435542,88.08153883,107.441729,325.4501425,0,0.391929017,66.92541816,-0.391929017,113.0745818,0.922425879,0,388.2851725,107.441729,458.6036353,4,9,18% -4/14/2018 18:00,40.50556033,125.7959558,767.0336022,874.9490537,101.7722702,620.3636135,515.8779295,104.485684,98.70346073,5.78222329,189.0449867,0,189.0449867,3.068809445,185.9761773,0.706955393,2.195553614,-0.480208772,0.480208772,0.612274226,0.132682936,3.83777042,123.4358889,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.87752082,2.223341997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780451605,118.6512716,97.65797243,120.8746136,515.8779295,0,0.589609106,53.87072591,-0.589609106,126.1292741,0.965198053,0,595.5823457,120.8746136,674.6923628,4,10,13% -4/14/2018 19:00,32.2538731,146.6775654,866.9969512,897.6192178,107.8877856,786.7460327,675.5756726,111.1703601,104.6345708,6.535789239,213.4666634,0,213.4666634,3.2532148,210.2134486,0.562936282,2.560006454,-0.145412771,0.145412771,0.555020738,0.124438483,3.989401847,128.3128769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5787294,2.356943048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890308058,123.3392179,103.4690375,125.6961609,675.5756726,0,0.75263058,41.18123643,-0.75263058,138.8187636,0.983566345,0,767.9425329,125.6961609,850.2081563,4,11,11% -4/14/2018 20:00,28.30970123,175.2163384,907.7030374,905.7232567,110.3069369,901.6885427,787.8651181,113.8234246,106.9807757,6.842648911,223.4092716,0,223.4092716,3.326161136,220.0831104,0.494097497,3.058102008,0.141379822,-0.141379822,0.505976316,0.121523155,3.873018883,124.5696007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8339909,2.40979242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805988997,119.7410384,105.6399798,122.1508309,787.8651181,0,0.869874006,29.55599846,-0.869874006,150.4440015,0.992520411,0,887.612191,122.1508309,967.5574668,4,12,9% -4/14/2018 21:00,30.44652227,205.3241173,886.2415307,901.5232831,109.0360524,953.8690801,841.440004,112.4290762,105.7482131,6.680863008,218.1673589,0,218.1673589,3.287839281,214.8795197,0.531392059,3.583581881,0.417973745,-0.417973745,0.45867597,0.123031982,3.509297921,112.8710843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6492048,2.382028367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542474397,108.4959794,104.1916792,110.8780078,841.440004,0,0.933353602,21.03623473,-0.933353602,158.9637653,0.996429735,0,942.6275192,110.8780078,1015.194958,4,13,8% -4/14/2018 22:00,37.62028382,228.6512557,804.1712873,883.876256,104.0762477,936.7457129,829.7455652,107.0001477,100.9379648,6.062182847,198.1189218,0,198.1189218,3.138282869,194.980639,0.656597818,3.990717251,0.717786005,-0.717786005,0.407405053,0.129420497,2.934696569,94.3899296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.02541116,2.273675255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126177674,90.73119063,99.15158883,93.00486589,829.7455652,0,0.938757614,20.1560502,-0.938757614,159.8439498,0.996738115,0,926.1906195,93.00486589,987.0604441,4,14,7% -4/14/2018 23:00,47.53705609,244.9795043,667.4722148,847.422389,95.36614716,848.1214912,750.5992978,97.52219345,92.49050596,5.031687497,164.7120074,0,164.7120074,2.8756412,161.8363662,0.829678145,4.27569895,1.088534211,-1.088534211,0.344003376,0.14287658,2.202520216,70.84062127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90539237,2.083392261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.595718399,68.09469971,90.50111077,70.17809198,750.5992978,0,0.885744002,27.65678213,-0.885744002,152.3432179,0.993550281,0,836.259254,70.17809198,882.1894116,4,15,5% -4/14/2018 0:00,58.71829738,257.1226535,486.4793554,778.0738641,82.46744696,688.9700689,605.3220328,83.64803603,79.98074916,3.667286871,120.4392498,0,120.4392498,2.486697798,117.952552,1.024827621,4.487636885,1.633193512,-1.633193512,0.25086115,0.169518904,1.385700284,44.56888445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.88053831,1.80160409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.003935139,42.841307,77.88447345,44.64291109,605.3220328,0,0.777975024,38.92445743,-0.777975024,141.0755426,0.985730585,0,674.5689147,44.64291109,703.7868072,4,16,4% -4/14/2018 1:00,70.41354397,267.1458606,276.6912269,636.3286948,63.37547741,459.9328526,396.3825643,63.55028827,61.46447293,2.085815343,68.99799586,0,68.99799586,1.911004474,67.08699139,1.22894818,4.662574851,2.68552548,-2.68552548,0.070901785,0.229047658,0.591765742,19.03322045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.0819893,1.384516236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.428732266,18.29545546,59.51072156,19.6799717,396.3825643,0,0.62292109,51.47023684,-0.62292109,128.5297632,0.969733011,0,443.8959794,19.6799717,456.7761273,4,17,3% -4/14/2018 2:00,82.16646619,276.3097243,68.87121016,292.0878168,29.06098157,154.8289782,126.1251121,28.70386602,28.18468575,0.519180274,17.57491808,0,17.57491808,0.876295818,16.69862227,1.43407537,4.822514444,6.515598199,-6.515598199,0,0.421961245,0.219073954,7.046171437,0.368718443,1,0.15228952,0,0.945060045,0.983822008,0.724496596,1,27.32589153,0.634873337,0.053692262,0.312029739,0.859048445,0.583545041,0.961238037,0.922476074,0.15009375,6.773048,27.47598528,7.407921337,79.62045719,0,0.431805453,64.41780658,-0.431805453,115.5821934,0.934207113,0,101.8579827,7.407921337,106.7063191,4,18,5% -4/14/2018 3:00,93.89181429,285.4847393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6387213,4.982648665,-11.96934562,11.96934562,0,#DIV/0!,0,0,1,0.365897595,0,0.083353179,0.961238037,1,0.515459326,0.79096273,0,0,0.115824807,0.075419237,0.724496596,0.448993192,0.992668503,0.95390654,0,0,0,0,0,0,0.214075054,77.63873159,-0.214075054,102.3612684,0.816437055,0,0,0,0,4,19,0% -4/14/2018 4:00,104.9742588,295.4238208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832146447,5.156118361,-2.624080955,2.624080955,0.978897962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010904903,90.62481729,0.010904903,89.37518271,0,0,0,0,0,4,20,0% -4/14/2018 5:00,115.1000304,306.914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008874499,5.356670658,-1.16534485,1.16534485,0.729439396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229543564,103.270201,0.229543564,76.72979905,0,0.832176424,0,0,0,4,21,0% -4/14/2018 6:00,123.6423282,320.7944725,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157965722,5.598919768,-0.494328536,0.494328536,0.614688848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426929944,115.2728839,0.426929944,64.72711612,0,0.932884767,0,0,0,4,22,0% -4/14/2018 7:00,129.7136189,337.6443875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263929735,5.893006263,-0.049483195,0.049483195,0.538615814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58960348,126.128875,0.58960348,53.87112499,0,0.965197244,0,0,0,4,23,0% -4/15/2018 8:00,132.3172851,356.9753519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309372282,6.230395239,0.320665769,-0.320665769,0.475316613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706471086,134.9485137,0.706471086,45.0514863,0,0.979225695,0,0,0,4,0,0% -4/15/2018 9:00,130.8831644,16.69467524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284342155,0.29137705,0.690241038,-0.690241038,0.41211552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769562757,140.3146411,0.769562757,39.68535893,0,0.985028041,0,0,0,4,1,0% -4/15/2018 10:00,125.7372904,34.39866342,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194529711,0.600369935,1.129977888,-1.129977888,0.33691609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774574341,140.7664568,0.774574341,39.23354318,0,0.985448417,0,0,0,4,2,0% -4/15/2018 11:00,117.8192556,49.11740578,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056333933,0.857260451,1.770639276,-1.770639276,0.22735654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721160524,136.1503788,0.721160524,43.84962125,0,0.980667309,0,0,0,4,3,0% -4/15/2018 12:00,108.0806708,61.21741575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886363564,1.068445464,3.027088467,-3.027088467,0.012491074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612958144,127.8037047,0.612958144,52.19629525,0,0.968428362,0,0,0,4,4,0% -4/15/2018 13:00,97.2231029,71.51312111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696863255,1.248139422,7.887476326,-7.887476326,0,#DIV/0!,0,0,0.450151929,1,0.126110437,0,0.948225528,0.986987491,0.724496596,1,0,0,0.063456063,0.312029739,0.835862482,0.560359078,0.961238037,0.922476074,0,0,0,0,0,0,-0.457338207,117.2154798,0.457338207,62.78452019,0,0.940671719,0,0,0,4,5,0% -4/15/2018 14:00,85.54137017,80.81276263,23.19970612,126.5705293,13.36020741,13.13223705,0,13.13223705,12.95734786,0.174889184,39.17419563,33.14629874,6.027896892,0.402859547,5.625037345,1.492978556,1.410448786,-12.5968912,12.5968912,0,0.575878304,0.100714887,3.239336966,1,0.406298798,0,0.079218535,0.961238037,1,0.524529441,0.800032845,12.45509562,0.277206101,0.115824807,0.085664283,0.724496596,0.448993192,0.991568539,0.952806575,0.072967593,3.137477682,12.52806322,3.414683782,0,19.67899741,-0.261880067,105.181648,0.261880067,74.81835202,0,0.859072907,12.52806322,20.32037729,25.82734375,4,6,106% -4/15/2018 15:00,73.860707,89.86570888,213.3147906,566.7673304,55.76850184,55.69493274,0,55.69493274,54.08687575,1.608056996,80.48250236,27.0802356,53.40226676,1.681626094,51.72064066,1.289112525,1.568452505,-3.250042809,3.250042809,0.914056257,0.261437576,1.505985869,48.43768234,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.99036226,1.218332381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091081636,46.56014268,53.0814439,47.77847506,0,27.0802356,-0.047780163,92.73864441,0.047780163,87.26135559,0,0,53.0814439,47.77847506,84.35150026,4,7,59% -4/15/2018 16:00,62.08240412,99.48194751,427.6312906,747.1976968,77.7924309,210.8365644,132.1661971,78.67036738,75.44670208,3.223665301,106.0298862,0,106.0298862,2.345728815,103.6841574,1.08354236,1.73628753,-1.642888556,1.642888556,0.811104179,0.18191473,2.72550299,87.66154503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52223979,1.699472541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.974617639,84.26361145,74.49685743,85.96308399,132.1661971,0,0.176882501,79.81177334,-0.176882501,100.1882267,0.767326475,0,175.9114795,85.96308399,232.1725987,4,8,32% -4/15/2018 17:00,50.65557377,110.7657538,619.4851521,831.7099331,92.19710194,422.9599207,328.8729608,94.08695989,89.41701914,4.669940748,152.9814301,0,152.9814301,2.780082795,150.2013473,0.884106547,1.933227102,-0.92388174,0.92388174,0.688146772,0.14882859,3.4303491,110.3318188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95103994,2.014160521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485276246,106.0551409,88.43631619,108.0693014,328.8729608,0,0.395417859,66.70796261,-0.395417859,113.2920374,0.923551488,0,392.1674284,108.0693014,462.8966248,4,9,18% -4/15/2018 18:00,40.19560941,125.5060785,771.0673287,875.7971201,102.0936502,623.9749444,519.1471632,104.8277812,99.01514993,5.812631224,190.0327012,0,190.0327012,3.078500238,186.9542009,0.701545729,2.190494302,-0.478502109,0.478502109,0.611982369,0.132405623,3.855855921,124.0175808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17712834,2.230362943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793554489,119.2104159,97.97068283,121.4407789,519.1471632,0,0.592771033,53.64610334,-0.592771033,126.3538967,0.965650399,0,599.2853482,121.4407789,678.7659092,4,10,13% -4/15/2018 19:00,31.90702853,146.4808104,870.7016756,898.2385589,108.1808035,790.0587786,678.5763084,111.4824702,104.9187531,6.563717016,214.3737522,0,214.3737522,3.262050371,211.1117019,0.556882702,2.556572433,-0.145549434,0.145549434,0.555044109,0.124245544,4.006019594,128.8473607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8518963,2.363344389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902347559,123.8529841,103.7542439,126.2163285,678.5763084,0,0.755452214,40.93510102,-0.755452214,139.064899,0.983814477,0,771.3474398,126.2163285,853.9535024,4,11,11% -4/15/2018 20:00,27.94930697,175.2914916,911.1172881,906.2382328,110.5803111,904.6853648,790.5710711,114.1142937,107.2459067,6.868386975,224.2453394,0,224.2453394,3.334404378,220.910935,0.48780743,3.059413679,0.139928463,-0.139928463,0.506224513,0.121367811,3.888557639,125.0693805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0888448,2.415764621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.817246772,120.2214458,105.9060916,122.6372104,790.5710711,0,0.872365613,29.26528644,-0.872365613,150.7347136,0.992684582,0,890.6938046,122.6372104,970.9574061,4,12,9% -4/15/2018 21:00,30.13172997,205.678572,889.4265518,902.0157661,109.2969695,956.5853339,843.8791983,112.7061356,106.0012626,6.704873043,218.9474718,0,218.9474718,3.295706893,215.6517649,0.525897897,3.589768283,0.415250631,-0.415250631,0.459141649,0.122884761,3.524114116,113.347624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8924456,2.387728425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.553208681,108.9540476,104.4456542,111.341776,843.8791983,0,0.935548169,20.68311337,-0.935548169,159.3168866,0.996555398,0,945.4180241,111.341776,1018.28899,4,13,8% -4/15/2018 22:00,37.37132417,229.0827417,807.2040101,884.4281594,104.3325854,939.2606957,831.9890779,107.2716178,101.186573,6.085044793,198.8619701,0,198.8619701,3.146012396,195.7159577,0.652252653,3.998248103,0.713430566,-0.713430566,0.408149877,0.129251817,2.949102241,94.85326556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.26438277,2.279275271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136614535,91.17656677,99.40099731,93.45584204,831.9890779,0,0.940708489,19.82911964,-0.940708489,160.1708804,0.996848572,0,928.7681211,93.45584204,989.9331006,4,14,7% -4/15/2018 23:00,47.33513838,245.3870436,670.4367951,848.1634655,95.62892218,850.5623754,752.7629823,97.7993931,92.74535734,5.054035755,165.4387279,0,165.4387279,2.883564837,162.555163,0.826154017,4.282811852,1.081509314,-1.081509314,0.345204704,0.142636745,2.216713091,71.29711289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.15036522,2.089132908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.606001088,68.53349683,90.75636631,70.62262974,752.7629823,0,0.887521112,27.43661497,-0.887521112,152.563385,0.993663312,0,838.7493245,70.62262974,884.9704232,4,15,6% -4/15/2018 0:00,58.54208293,257.4924761,489.4526424,779.3000599,82.75762767,691.5407651,607.5888845,83.95188062,80.26217986,3.689700764,121.1689076,0,121.1689076,2.495447817,118.6734598,1.021752098,4.494091507,1.620589534,-1.620589534,0.253016557,0.169081992,1.399569935,45.0149801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.1510602,1.807943449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.013983654,43.2701111,78.16504385,45.07805455,607.5888845,0,0.779659743,38.77056765,-0.779659743,141.2294324,0.98586946,0,677.1683696,45.07805455,706.6710547,4,16,4% -4/15/2018 1:00,70.2473346,267.4866349,279.6946164,638.9534089,63.75360221,463.0293252,399.0896732,63.93965204,61.83119588,2.108456162,69.73760428,0,69.73760428,1.922406332,67.81519795,1.22604728,4.668522485,2.656128499,-2.656128499,0.075928965,0.227940041,0.604202896,19.43324207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.43449734,1.392776844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437742941,18.67997146,59.87224029,20.0727483,399.0896732,0,0.62459902,51.34723735,-0.62459902,128.6527627,0.969948642,0,446.9687267,20.0727483,460.105939,4,17,3% -4/15/2018 2:00,81.99972536,276.6323968,71.43524309,299.3247321,29.7758711,159.1860559,129.7695282,29.41652776,28.87801873,0.538509037,18.21815411,0,18.21815411,0.897852375,17.32030173,1.431165193,4.828146143,6.360214306,-6.360214306,0,0.416823263,0.224463094,7.219504682,0.357948317,1,0.155950712,0,0.944604948,0.983366911,0.724496596,1,27.99701193,0.650490989,0.052352204,0.312029739,0.862289724,0.58678632,0.961238037,0.922476074,0.153847521,6.939662507,28.15085945,7.590153496,83.31874397,0,0.433540948,64.30751157,-0.433540948,115.6924884,0.93467064,0,106.0264432,7.590153496,110.9940469,4,18,5% -4/15/2018 3:00,93.7104944,285.7980542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635556671,4.988117042,-12.50687453,12.50687453,0,#DIV/0!,0,0,1,0.400822742,0,0.079786292,0.961238037,1,0.523275864,0.798779268,0,0,0.115824807,0.084248601,0.724496596,0.448993192,0.991721998,0.952960035,0,0,0,0,0,0,0.216013162,77.52502591,-0.216013162,102.4749741,0.818532623,0,0,0,0,4,19,0% -4/15/2018 4:00,104.770477,295.7324798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828589782,5.161505478,-2.647382457,2.647382457,0.982882753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.008728,90.50008392,0.008728,89.49991608,0,0,0,0,0,4,20,0% -4/15/2018 5:00,114.8636506,307.2158523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004748893,5.361928137,-1.168449862,1.168449862,0.729970384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.227073458,103.124835,0.227073458,76.87516503,0,0.829806938,0,0,0,4,21,0% -4/15/2018 6:00,123.3645168,321.0709825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153116999,5.603745778,-0.49263674,0.49263674,0.614399534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.424132452,115.0957628,0.424132452,64.90423717,0,0.932112298,0,0,0,4,22,0% -4/15/2018 7:00,129.3920755,337.8569503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258317744,5.896716183,-0.045537713,0.045537713,0.537941097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586466998,125.9066944,0.586466998,54.09330557,0,0.964743711,0,0,0,4,23,0% -4/16/2018 8:00,131.964021,357.0741473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303206661,6.232119544,0.326497936,-0.326497936,0.474319254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703007386,134.6687878,0.703007386,45.33121223,0,0.978876992,0,0,0,4,0,0% -4/16/2018 9:00,130.5233772,16.66165841,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278062683,0.290800798,0.698523468,-0.698523468,0.410699141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765806186,139.9787673,0.765806186,40.02123271,0,0.984709329,0,0,0,4,1,0% -4/16/2018 10:00,125.3935724,34.26488035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188530699,0.59803498,1.142480419,-1.142480419,0.334778031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770579458,140.4059522,0.770579458,39.59404777,0,0.985113765,0,0,0,4,2,0% -4/16/2018 11:00,117.5008674,48.92671543,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05077701,0.853932276,1.792443066,-1.792443066,0.223627872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716998358,135.8072121,0.716998358,44.1927879,0,0.980264833,0,0,0,4,3,0% -4/16/2018 12:00,107.7865887,60.99863775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881230863,1.064627068,3.078753137,-3.078753137,0.003655895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608711312,127.4963807,0.608711312,52.50361935,0,0.967859256,0,0,0,4,4,0% -4/16/2018 13:00,96.94788214,71.27900518,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692059746,1.244053328,8.204004687,-8.204004687,0,#DIV/0!,0,0,0.466044071,1,0.121293343,0,0.948790945,0.987552908,0.724496596,1,0,0,0.065288741,0.312029739,0.831594912,0.556091508,0.961238037,0.922476074,0,0,0,0,0,0,-0.453095241,116.9424455,0.453095241,63.05755452,0,0.939647925,0,0,0,4,5,0% -4/16/2018 14:00,85.28569104,80.56635764,25.97580475,138.3601655,14.60434184,14.35978364,0,14.35978364,14.16396705,0.195816588,42.41498313,35.67647374,6.738509391,0.440374791,6.2981346,1.488516114,1.406148207,-11.92053032,11.92053032,0,0.562228658,0.110093698,3.540991762,1,0.362523157,0,0.083692927,0.961238037,1,0.514720104,0.790223508,13.61494388,0.304011479,0.115824807,0.074584023,0.724496596,0.448993192,0.992757091,0.953995128,0.079762509,3.427847293,13.69470639,3.731858772,0,22.74292583,-0.257852205,104.9426577,0.257852205,75.05734234,0,0.856090469,13.69470639,23.20186082,28.87986026,4,6,111% -4/16/2018 15:00,73.60286831,89.60514875,217.8430171,571.4382974,56.52973911,56.46735158,0,56.46735158,54.8251589,1.64219268,79.56304679,25.03990498,54.52314181,1.704580207,52.8185616,1.284612391,1.563904872,-3.201325889,3.201325889,0.922387341,0.259497595,1.54781199,49.78295417,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.70002811,1.234962557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.121384518,47.85326914,53.82141263,49.08823169,0,25.03990498,-0.043819088,92.51145295,0.043819088,87.48854705,0,0,53.82141263,49.08823169,85.94867851,4,7,60% -4/16/2018 16:00,61.81977605,99.20376986,432.0466592,748.8838074,78.38886594,214.5367624,135.2546597,79.28210262,76.02515241,3.256950215,107.1184281,0,107.1184281,2.363713532,104.7547146,1.078958635,1.731432414,-1.629283004,1.629283004,0.808777493,0.181436112,2.747146836,88.3576855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.07826825,1.712502408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990298531,84.93276815,75.06856678,86.64527056,135.2546597,0,0.180608338,79.59480424,-0.180608338,100.4051958,0.773157853,0,179.6417691,86.64527056,236.3493658,4,8,32% -4/16/2018 17:00,50.37776778,110.4701419,623.5935154,832.4229058,92.73834886,426.6531903,332.0103335,94.6428568,89.94194548,4.700911326,153.9938709,0,153.9938709,2.796403386,151.1974675,0.879257918,1.928067701,-0.918855725,0.918855725,0.687287273,0.148716025,3.449494258,110.9475929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.4556191,2.025984734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.499146848,106.6470464,88.95476595,108.6730311,332.0103335,0,0.398848147,66.49380969,-0.398848147,113.5061903,0.924639006,0,395.9444708,108.6730311,467.0687962,4,9,18% -4/16/2018 18:00,39.88949871,125.2133543,774.8328997,876.1144274,102.6054518,627.4039113,522.0513748,105.3525366,99.51151888,5.841017688,190.9611402,0,190.9611402,3.093932946,187.8672072,0.69620309,2.185385299,-0.476852928,0.476852928,0.611700343,0.132422683,3.873295799,124.5785073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.65425705,2.241543887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806189621,119.7495998,98.46044667,121.9911436,522.0513748,0,0.595871222,53.42523549,-0.595871222,126.5747645,0.966089252,0,602.8086688,121.9911436,682.6494325,4,10,13% -4/16/2018 19:00,31.56364916,146.2797536,874.1378466,898.3721605,108.6715811,793.1403797,681.1560274,111.9843523,105.394732,6.589620325,215.2216905,0,215.2216905,3.276849126,211.9448413,0.550889602,2.55306333,-0.145707649,0.145707649,0.555071165,0.124318586,4.022199397,129.3677588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3094253,2.374066037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.914069771,124.3532105,104.223495,126.7272766,681.1560274,0,0.758211415,40.69322706,-0.758211415,139.3067729,0.984055332,0,774.5187158,126.7272766,857.4591838,4,11,11% -4/16/2018 20:00,27.59178066,175.3653508,914.267218,906.2846256,111.0543138,907.4124653,792.8147164,114.5977489,107.7056164,6.892132477,225.0233693,0,225.0233693,3.348697306,221.674672,0.481567419,3.060702765,0.13847616,-0.13847616,0.506472871,0.121468113,3.903846368,125.5611186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5307353,2.426119799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.828323404,120.6941231,106.3590587,123.1202429,792.8147164,0,0.874796608,28.97908661,-0.874796608,151.0209134,0.992843857,0,893.5002797,123.1202429,974.0800163,4,12,9% -4/16/2018 21:00,29.81989436,206.0348123,892.3553208,902.0333633,109.7576327,958.9993435,845.824357,113.1749865,106.4480352,6.726951341,219.6714765,0,219.6714765,3.30959759,216.3618789,0.520455339,3.595985849,0.412543386,-0.412543386,0.459604616,0.122997678,3.5388607,113.8219249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3219003,2.397792188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563892531,109.4099636,104.8857929,111.8077558,845.824357,0,0.937686333,20.33343285,-0.937686333,159.6665672,0.996677265,0,947.8996995,111.8077558,1021.07564,4,13,8% -4/16/2018 22:00,37.12512767,229.5142579,809.9920136,884.4741593,104.7836882,941.4436701,833.7135347,107.7301353,101.6240734,6.106061941,199.5515563,0,199.5515563,3.159614809,196.3919415,0.647955713,4.005779481,0.709111525,-0.709111525,0.408888477,0.129363853,2.963619547,95.32019202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68492479,2.289130174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147132274,91.62539425,99.83205706,93.91452442,833.7135347,0,0.942609262,19.50553112,-0.942609262,160.4944689,0.996955751,0,931.0075606,93.91452442,992.4727385,4,14,7% -4/16/2018 23:00,47.13535299,245.7929861,673.1718649,848.335494,96.07574625,852.6408529,754.387491,98.25336189,93.17870802,5.074653867,166.1153506,0,166.1153506,2.897038231,163.2183124,0.822667104,4.289896886,1.07455741,-1.07455741,0.34639355,0.142720977,2.231208086,71.76332177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.56691837,2.098894337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.616502663,68.98163454,91.18342104,71.08052888,754.387491,0,0.889256074,27.22008613,-0.889256074,152.7799139,0.993773226,0,840.8735119,71.08052888,887.3942964,4,15,6% -4/16/2018 0:00,58.36735938,257.8599785,492.2170197,779.8445137,83.21115807,693.7139667,609.3013923,84.41257444,80.70203464,3.710539807,121.8528385,0,121.8528385,2.509123432,119.3437151,1.018702597,4.500505634,1.608152314,-1.608152314,0.255143447,0.169053801,1.413954175,45.4776267,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.57386534,1.817851385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.024404986,43.71482461,78.59827033,45.532676,609.3013923,0,0.781311379,38.61919868,-0.781311379,141.3808013,0.986005028,0,679.3725066,45.532676,709.1727323,4,16,4% -4/16/2018 1:00,70.08209993,267.8247422,282.5224532,640.7010185,64.25272686,465.6862809,401.2412372,64.44504366,62.31527007,2.12977359,70.43829649,0,70.43829649,1.937456782,68.50083971,1.223163391,4.67442357,2.627298619,-2.627298619,0.080859165,0.227425205,0.617410625,19.85804802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.89980787,1.403680843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.447311896,19.08831109,60.34711977,20.49199194,401.2412372,0,0.626253472,51.2257518,-0.626253472,128.7742482,0.970160123,0,449.6153679,20.49199194,463.0269668,4,17,3% -4/16/2018 2:00,81.83352108,276.9521247,73.91747953,305.5355122,30.51620963,163.1416958,132.9884413,30.1532545,29.59603332,0.557221184,18.84232501,0,18.84232501,0.920176313,17.9221487,1.428264381,4.833726447,6.211527481,-6.211527481,0,0.412841588,0.230044078,7.399008329,0.347292599,1,0.159621373,0,0.944145639,0.982907602,0.724496596,1,28.69175194,0.666664607,0.051014719,0.312029739,0.865538977,0.590035573,0.961238037,0.922476074,0.157744875,7.112208241,28.84949681,7.778872848,86.8025398,0,0.43526345,64.19794119,-0.43526345,115.8020588,0.935127042,0,110.0208991,7.778872848,115.1120158,4,18,5% -4/16/2018 3:00,93.52956339,286.1080717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632398829,4.993527868,-13.09824463,13.09824463,0,#DIV/0!,0,0,1,0.43505552,0,0.076198291,0.961238037,1,0.531241258,0.806744662,0,0,0.115824807,0.093242833,0.724496596,0.448993192,0.990739067,0.951977104,0,0,0,0,0,0,0.217945479,77.41161034,-0.217945479,102.5883897,0.820584825,0,0,0,0,4,19,0% -4/16/2018 4:00,104.5670229,296.0373357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825038839,5.166826218,-2.671336594,2.671336594,0.986979152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006549808,90.37527904,0.006549808,89.62472096,0,0,0,0,0,4,20,0% -4/16/2018 5:00,114.6277622,307.5126116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000631864,5.367107564,-1.171658368,1.171658368,0.730519071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.224596889,102.9791749,0.224596889,77.02082507,0,0.827378929,0,0,0,4,21,0% -4/16/2018 6:00,123.0876735,321.3423864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148285171,5.608482669,-0.490975141,0.490975141,0.614115384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.421325589,114.9183058,0.421325589,65.08169421,0,0.931326933,0,0,0,4,22,0% -4/16/2018 7:00,129.0723045,338.0644816,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252736687,5.900338287,-0.041600884,0.041600884,0.53726786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583320701,125.6844436,0.583320701,54.31555637,0,0.964283858,0,0,0,4,23,0% -4/17/2018 8:00,131.6133839,357.1695188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.297086888,6.233784091,0.332335146,-0.332335146,0.473321033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699535926,134.3897831,0.699535926,45.61021689,0,0.978524043,0,0,0,4,0,0% -4/17/2018 9:00,130.1666645,16.62774452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271836872,0.290208889,0.706830563,-0.706830563,0.409278544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762046263,139.6449255,0.762046263,40.3550745,0,0.984387186,0,0,0,4,1,0% -4/17/2018 10:00,125.052934,34.13197849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182585438,0.595715405,1.155053878,-1.155053878,0.332627843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766587685,140.048447,0.766587685,39.95155299,0,0.984775889,0,0,0,4,2,0% -4/17/2018 11:00,117.185436,48.73754809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045271693,0.850630683,1.814472197,-1.814472197,0.219860669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.71284737,135.4670599,0.71284737,44.53294005,0,0.979858758,0,0,0,4,3,0% -4/17/2018 12:00,107.4954091,60.78140425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876148819,1.060835628,3.131506411,-3.131506411,0,#DIV/0!,0,0,0.005336812,1,0.309099715,0,0.922938928,0.961700892,0.724496596,1,0,0,0.000910366,0.312029739,0.997421759,0.721918355,0.961238037,0.922476074,0,0,0,0,0,0,-0.604484781,127.1917762,0.604484781,52.80822376,0,0.967284932,0,0,0,4,4,0% -4/17/2018 13:00,96.67561599,71.04622647,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687307805,1.239990573,8.542548608,-8.542548608,0,#DIV/0!,0,0,0.48205533,1,0.11653073,0,0.949344726,0.988106689,0.724496596,1,0,0,0.067112154,0.312029739,0.827375449,0.551872045,0.961238037,0.922476074,0,0,0,0,0,0,-0.448882124,116.6719848,0.448882124,63.32801523,0,0.938612183,0,0,0,4,5,0% -4/17/2018 14:00,85.03247764,80.32099035,28.83923423,150.0759239,15.8440033,15.58365048,0,15.58365048,15.36624815,0.217402329,45.56742224,38.09726086,7.470161386,0.477755158,6.992406228,1.484096706,1.40186574,-11.31900182,11.31900182,0,0.549390569,0.119438789,3.841562036,1,0.3177866,0,0.088118228,0.961238037,1,0.505175937,0.780679341,14.7706222,0.331145502,0.115824807,0.063796467,0.724496596,0.448993192,0.993886531,0.955124568,0.086532996,3.716490767,14.8571552,4.047636269,0,25.99046185,-0.253853249,104.7056454,0.253853249,75.29435461,0,0.853035808,14.8571552,26.2184309,32.01659385,4,6,115% -4/17/2018 15:00,73.34830939,89.34522593,222.3129045,575.931026,57.27824359,57.22698179,0,57.22698179,55.55109322,1.675888579,78.6120316,22.98254368,55.62948792,1.727150379,53.90233754,1.2801695,1.559368363,-3.154643175,3.154643175,0.930370555,0.257646958,1.589262518,51.11614564,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.39782379,1.25131457,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.151415284,49.13478349,54.54923907,50.38609806,0,22.98254368,-0.039905028,92.28699693,0.039905028,87.71300307,0,0,54.54923907,50.38609806,87.52593253,4,7,60% -4/17/2018 16:00,61.5607219,98.92561861,436.388954,750.5041816,78.97850548,218.1894005,138.3027041,79.88669641,76.59701214,3.289684267,108.1890476,0,108.1890476,2.38149334,105.8075542,1.074437287,1.726577759,-1.616088965,1.616088965,0.806521179,0.180981908,2.768392165,89.04100832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.62796158,1.725383818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.0056907,85.58960403,75.63365228,87.31498785,138.3027041,0,0.184279725,79.38085831,-0.184279725,100.6191417,0.778673352,0,183.3262825,87.31498785,240.4721958,4,8,31% -4/17/2018 17:00,50.10380608,110.1735026,627.6248619,833.1021837,93.27423063,430.2823501,335.0893803,95.19296975,90.46166843,4.731301319,154.9874764,0,154.9874764,2.812562199,152.1749142,0.874476384,1.922890369,-0.913970079,0.913970079,0.686451778,0.14861462,3.468278673,111.5517643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.95519658,2.037691739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.512756092,107.2277989,89.46795267,109.2654906,335.0893803,0,0.402218824,66.28303866,-0.402218824,113.7169613,0.925689557,0,399.6566928,109.2654906,471.1687711,4,9,18% -4/17/2018 18:00,39.58734009,124.91783,778.5215408,876.4101897,103.1124635,630.7619881,524.8899216,105.8720665,100.0032422,5.868824224,191.8707822,0,191.8707822,3.109221218,188.761561,0.690929427,2.180227428,-0.475261197,0.475261197,0.611428141,0.132446513,3.890403252,125.1287418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.12692026,2.252620188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818583913,120.2785061,98.94550417,122.5311263,524.8899216,0,0.598908967,53.20820192,-0.598908967,126.7917981,0.966514858,0,606.2594124,122.5311263,686.4535839,4,10,13% -4/17/2018 19:00,31.22385363,146.0743252,877.5001649,898.4897717,109.1579675,796.1493078,683.6678889,112.4814189,105.866452,6.614966901,216.0515898,0,216.0515898,3.29151547,212.7600743,0.544959051,2.549477928,-0.145887674,0.145887674,0.555101951,0.124396521,4.038078236,129.8784769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7628605,2.384691754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925573936,124.8441321,104.6884345,127.2288239,683.6678889,0,0.760907815,40.45570567,-0.760907815,139.5442943,0.984289018,0,777.6152292,127.2288239,860.8839498,4,11,11% -4/17/2018 20:00,27.23721944,175.4377777,917.3488902,906.3177659,111.5243143,910.0687815,794.9919734,115.0768082,108.1614447,6.915363424,225.7847287,0,225.7847287,3.362869557,222.4218591,0.475379158,3.061966853,0.137022631,-0.137022631,0.50672144,0.121572409,3.918870774,126.0443551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9688948,2.436387546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.839208535,121.1586285,106.8081033,123.595016,794.9919734,0,0.877166931,28.69752212,-0.877166931,151.3024779,0.992998307,0,896.2337871,123.595016,977.1242532,4,12,9% -4/17/2018 21:00,29.51108268,206.3926757,895.223474,902.0389,110.2147125,961.3474559,847.707551,113.639905,106.8913323,6.748572691,220.380676,0,220.380676,3.323380231,217.0572958,0.515065559,3.602231744,0.409851758,-0.409851758,0.460064911,0.12311419,3.553383895,114.2890407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7480144,2.407777664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574414536,109.8589732,105.3224289,112.2667508,847.707551,0,0.939768286,19.98732059,-0.939768286,160.0126794,0.996795395,0,950.3134124,112.2667508,1023.789756,4,13,8% -4/17/2018 22:00,36.88172522,229.9455998,812.728537,884.5080698,105.2316497,943.5679773,835.382759,108.1852183,102.0585272,6.12669101,200.2285657,0,200.2285657,3.173122503,197.0554432,0.643707539,4.013307817,0.704828634,-0.704828634,0.409620894,0.129479457,2.977956958,95.78133242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.10253837,2.298916452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.157519679,92.06865994,100.2600581,94.3675764,835.382759,0,0.944460302,19.18537183,-0.944460302,160.8146282,0.997059712,0,933.1865515,94.3675764,994.9482429,4,14,7% -4/17/2018 23:00,46.937711,246.1971574,675.8654794,848.4937334,96.51985812,854.6693303,755.9649425,98.70438775,93.60942828,5.09495947,166.7818402,0,166.7818402,2.910429843,163.8714104,0.8192176,4.296951006,1.067678067,-1.067678067,0.347569987,0.142809274,2.245567942,72.22518409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.98094307,2.108596514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.62690633,69.42559417,91.6078494,71.53419068,755.9649425,0,0.890949353,27.00721442,-0.890949353,152.9927856,0.993880087,0,842.9463524,71.53419068,889.7640495,4,15,6% -4/17/2018 0:00,58.19413485,258.2250207,494.9503338,780.3693678,83.66228254,695.8456028,610.9749021,84.87070072,81.13955604,3.731144684,122.5291653,0,122.5291653,2.5227265,120.0064388,1.015679258,4.506876821,1.595880239,-1.595880239,0.257242096,0.169031672,1.428251239,45.93746944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.99442756,1.827706761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.034763161,44.15684294,79.02919072,45.98454971,610.9749021,0,0.782930401,38.47033123,-0.782930401,141.5296688,0.986137363,0,681.5343695,45.98454971,711.6303376,4,16,4% -4/17/2018 1:00,69.91785426,268.1600653,285.3304067,642.40682,64.7490775,468.3050896,403.3574946,64.94759505,62.79665392,2.150941129,71.13408412,0,71.13408412,1.952423585,69.18166053,1.220296763,4.680276061,2.599024127,-2.599024127,0.085694387,0.226926665,0.630601543,20.2823133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.36253233,1.414524241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456868671,19.49613102,60.819401,20.91065526,403.3574946,0,0.627884826,51.10575932,-0.627884826,128.8942407,0.970367561,0,452.2244293,20.91065526,465.9100349,4,17,3% -4/17/2018 2:00,81.66788249,277.2688049,76.40810461,311.6251308,31.2502379,167.0557266,136.1718021,30.8839245,30.30792793,0.575996567,19.46833956,0,19.46833956,0.942309974,18.52602958,1.425373443,4.839253558,6.069141769,-6.069141769,0,0.408991141,0.235577493,7.576981983,0.336751574,1,0.163300703,0,0.9436822,0.982444163,0.724496596,1,29.38023291,0.682700368,0.049680071,0.312029739,0.868795471,0.593292066,0.961238037,0.922476074,0.161622244,7.283283286,29.54185515,7.965983655,90.3157334,0,0.436973108,64.08908756,-0.436973108,115.9109124,0.935576483,0,114.0391313,7.965983655,119.2527083,4,18,5% -4/17/2018 3:00,93.34906148,286.4146988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629248476,4.998879521,-13.75184354,13.75184354,0,#DIV/0!,0,0,1,0.468610119,0,0.072589755,0.961238037,1,0.539355907,0.814859312,0,0,0.115824807,0.102403372,0.724496596,0.448993192,0.98971859,0.950956627,0,0,0,0,0,0,0.219871971,77.29848665,-0.219871971,102.7015133,0.822594934,0,0,0,0,4,19,0% -4/17/2018 4:00,104.3639552,296.338307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821494638,5.172079158,-2.695966106,2.695966106,0.991191047,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.004370659,90.25042112,0.004370659,89.74957888,0,0,0,0,0,4,20,0% -4/17/2018 5:00,114.392444,307.8048369,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996524786,5.372207857,-1.174973605,1.174973605,0.73108601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.222114526,102.8332597,0.222114526,77.16674027,0,0.824890905,0,0,0,4,21,0% -4/17/2018 6:00,122.8118953,321.6086567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143471933,5.613129962,-0.489345823,0.489345823,0.613836754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.418510373,114.7405768,0.418510373,65.25942324,0,0.930528648,0,0,0,4,22,0% -4/17/2018 7:00,128.7544121,338.2669932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247188418,5.903872783,-0.037674885,0.037674885,0.536596474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580165946,125.4622152,0.580165946,54.53778477,0,0.963817761,0,0,0,4,23,0% -4/18/2018 8:00,131.2654781,357.2614835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291014788,6.235389178,0.338174782,-0.338174782,0.472322396,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696058363,134.1116152,0.696058363,45.88838483,0,0.978166943,0,0,0,4,0,0% -4/18/2018 9:00,129.8131304,16.59291999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265666537,0.289601086,0.715158926,-0.715158926,0.40785431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758284892,139.3132302,0.758284892,40.68676979,0,0.984061722,0,0,0,4,1,0% -4/18/2018 10:00,124.7154833,33.9999334,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176695811,0.593410783,1.167693595,-1.167693595,0.330466324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762601098,139.6940447,0.762601098,40.30595533,0,0.984434923,0,0,0,4,2,0% -4/18/2018 11:00,116.8730702,48.54989538,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039819881,0.847355526,1.836720711,-1.836720711,0.216055949,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708709727,135.1300319,0.708709727,44.86996812,0,0.979449254,0,0,0,4,3,0% -4/18/2018 12:00,107.2072371,60.5657289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87111927,1.057071383,3.185359163,-3.185359163,0,#DIV/0!,0,0,0.014365436,1,0.304192885,0,0.923710135,0.962472098,0.724496596,1,0,0,0.002440159,0.312029739,0.993103786,0.717600382,0.961238037,0.922476074,0,0,0,0,0,0,-0.600280715,126.890005,0.600280715,53.10999501,0,0.966705637,0,0,0,4,4,0% -4/18/2018 13:00,96.40640427,70.81481772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682609175,1.235951728,8.905313414,-8.905313414,0,#DIV/0!,0,0,0.498179545,1,0.111824061,0,0.949886869,0.988648832,0.724496596,1,0,0,0.06892552,0.312029739,0.823205491,0.547702087,0.961238037,0.922476074,0,0,0,0,0,0,-0.444700926,116.4042057,0.444700926,63.59579432,0,0.937564884,0,0,0,4,5,0% -4/18/2018 14:00,84.78189429,80.07670968,31.7772563,161.6626767,17.07447568,16.79916762,0,16.79916762,16.55961724,0.239550381,48.61689704,40.39727491,8.219622134,0.51485844,7.704763694,1.479723201,1.397602238,-10.78090546,10.78090546,0,0.537317493,0.12871461,4.139904311,1,0.272090474,0,0.092491933,0.961238037,1,0.495897182,0.771400586,15.91773397,0.35856736,0.115824807,0.053300058,0.724496596,0.448993192,0.994959116,0.956197153,0.093253297,4.002227295,16.01098727,4.360794655,0,29.40556123,-0.249886218,104.4707793,0.249886218,75.52922073,0,0.849908933,16.01098727,29.35284383,35.2218365,4,6,120% -4/18/2018 15:00,73.09712287,89.08600439,226.7222241,580.2507801,58.01417056,57.97395716,0,57.97395716,56.26482926,1.709127893,77.63280511,20.91203569,56.72076942,1.749341292,54.97142813,1.275785468,1.554844094,-3.109894629,3.109894629,0.938023007,0.255882152,1.630306014,52.43624555,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.08389402,1.267391811,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.181151157,50.40371373,55.26504518,51.67110554,0,20.91203569,-0.036039651,92.06536717,0.036039651,87.93463283,0,0,55.26504518,51.67110554,89.08275034,4,7,61% -4/18/2018 16:00,61.30533284,98.64757197,440.6568241,752.0600513,79.56131651,221.7926725,141.3085659,80.48410654,77.16224927,3.321857275,109.241416,0,109.241416,2.399067243,106.8423488,1.069979907,1.72172493,-1.603296453,1.603296453,0.804333531,0.18055165,2.789235445,89.71139985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.17128901,1.738116051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020791585,86.23400987,76.19208059,87.97212592,141.3085659,0,0.187895323,79.17001696,-0.187895323,100.829983,0.783894387,0,186.9630723,87.97212592,244.5390692,4,8,31% -4/18/2018 17:00,49.8337855,109.8759214,631.5782722,833.7481778,93.80470346,433.8462241,338.1089748,95.73724934,90.97614555,4.761103796,155.9620222,0,155.9620222,2.828557912,153.1334643,0.869763636,1.917696597,-0.909223244,0.909223244,0.685640022,0.148524273,3.486699661,112.1442465,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.44973155,2.049280578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.526102035,107.7973154,89.97583358,109.846596,338.1089748,0,0.405528892,66.07572552,-0.405528892,113.9242745,0.926704223,0,403.3028482,109.846596,475.1952483,4,9,18% -4/18/2018 18:00,39.28924329,124.6195627,782.1326907,876.6846084,103.6146541,634.0484431,527.6621065,106.3863365,100.4902899,5.896046597,192.7614902,0,192.7614902,3.124364117,189.6371261,0.685726656,2.175021682,-0.473726825,0.473726825,0.611165748,0.132477079,3.907176674,125.6682327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.59508903,2.263591167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.8307362,120.7970853,99.42582523,123.0606764,527.6621065,0,0.601883621,52.99507849,-0.601883621,127.0049215,0.966927462,0,609.6368067,123.0606764,690.1775582,4,10,13% -4/18/2018 19:00,30.88776008,145.8644639,880.7883682,898.5915323,109.6399463,799.0852216,686.1115695,112.9736521,106.3338974,6.639754766,216.8633862,0,216.8633862,3.306048909,213.5573373,0.539093112,2.545815157,-0.146089711,0.146089711,0.555136502,0.12447933,4.053655353,130.3794905,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2121868,2.39522118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.936859504,125.3257255,105.1490463,127.7209467,686.1115695,0,0.763541103,40.22262389,-0.763541103,139.7773761,0.984515641,0,780.6366176,127.7209467,864.2274228,4,11,11% -4/18/2018 20:00,26.88572083,175.5086332,920.3622699,906.3377793,111.9903082,912.6543095,797.1028427,115.5514668,108.6133872,6.938079553,226.5294089,0,226.5294089,3.376920993,223.1524879,0.46924435,3.063203516,0.135567651,-0.135567651,0.506970256,0.121680681,3.93363059,126.5190815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4033191,2.446567764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.849901972,121.6149536,107.2532211,124.0615213,797.1028427,0,0.879476571,28.42071313,-0.879476571,151.5792869,0.993148002,0,898.8943169,124.0615213,980.0901014,4,12,9% -4/18/2018 21:00,29.20536194,206.751994,898.0311173,902.0325087,110.6682123,963.6299326,849.5290374,114.1008952,107.3311574,6.769737892,221.0750964,0,221.0750964,3.337054922,217.7380414,0.509729725,3.60850303,0.407175564,-0.407175564,0.460522567,0.123234273,3.567683529,114.7489661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.170791,2.417684931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.584774572,110.3010709,105.7555656,112.7187559,849.5290374,0,0.941794258,19.64490475,-0.941794258,160.3550953,0.996909848,0,952.6594294,112.7187559,1026.431601,4,13,8% -4/18/2018 22:00,36.64114734,230.3765592,815.4137313,884.5300455,105.6764771,945.6340525,836.9971779,108.6368745,102.4899414,6.146933139,200.8930354,0,200.8930354,3.186535689,197.7064997,0.639508663,4.020829477,0.700581728,-0.700581728,0.410347158,0.129598599,2.992114,96.23667158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.51723006,2.308634259,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167776408,92.50634926,100.6850065,94.81498352,836.9971779,0,0.946262009,18.86872848,-0.946262009,161.1312715,0.997160512,0,935.305541,94.81498352,997.3600514,4,14,7% -4/18/2018 23:00,46.74222383,246.5993819,678.517735,848.6383831,96.96126374,856.6483109,757.4958337,99.15247718,94.03752389,5.114953293,167.4382203,0,167.4382203,2.923739851,164.5144804,0.815805706,4.303971148,1.060870972,-1.060870972,0.348734069,0.142901591,2.259791512,72.68266302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.39244485,2.118239569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.637211258,69.86534031,92.02965611,71.98357988,757.4958337,0,0.892601429,26.79801617,-0.892601429,153.2019838,0.993983957,0,844.9683623,71.98357988,892.0801757,4,15,6% -4/18/2018 0:00,58.02241856,258.5874626,497.6525271,780.8749298,84.11100229,697.9361372,612.609877,85.32626019,81.57474523,3.751514959,123.1978739,0,123.1978739,2.536257055,120.6616168,1.012682244,4.513202627,1.583771914,-1.583771914,0.259312741,0.169015523,1.442458949,46.39443821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.41274796,1.837509603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.045056598,44.59609871,79.45780456,46.43360831,612.609877,0,0.784517281,38.32394529,-0.784517281,141.6760547,0.986266541,0,683.6544289,46.43360831,714.0442969,4,16,4% -4/18/2018 1:00,69.75461359,268.4924873,288.1181449,644.0715432,65.24265516,470.8861244,405.4388198,65.44730466,63.27534839,2.171956278,71.82488672,0,71.82488672,1.967306773,69.85757995,1.217447676,4.68607792,2.571294091,-2.571294091,0.090436503,0.226444104,0.643771737,20.70591202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.82267166,1.42530706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466410432,19.90331022,61.2890821,21.32861728,405.4388198,0,0.629493453,50.98723969,-0.629493453,129.0127603,0.970571056,0,454.7962657,21.32861728,468.7554191,4,17,3% -4/18/2018 2:00,81.50284054,277.5823347,78.90565545,317.593832,31.97787055,170.9273466,139.3189027,31.60844393,31.01361976,0.594824161,20.09584048,0,20.09584048,0.964250783,19.1315897,1.422492917,4.844725686,5.932694075,-5.932694075,0,0.405267156,0.241062696,7.753404941,0.32632566,1,0.166987828,0,0.943214729,0.981976692,0.724496596,1,30.06235975,0.69859641,0.048348545,0.312029739,0.872058406,0.596555002,0.961238037,0.922476074,0.165479617,7.452867745,30.22783937,8.151464154,93.8555698,0,0.438670052,63.98094404,-0.438670052,116.019056,0.936019117,0,118.0784469,8.151464154,123.4134172,4,18,5% -4/18/2018 3:00,93.16903118,286.7178437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626106355,5.004170396,-14.47787929,14.47787929,0,#DIV/0!,0,0,1,0.501499704,0,0.068961362,0.961238037,1,0.54761993,0.823123334,0,0,0.115824807,0.11173133,0.724496596,0.448993192,0.988659462,0.949897499,0,0,0,0,0,0,0.221792574,77.18565867,-0.221792574,102.8143413,0.824564138,0,0,0,0,4,19,0% -4/18/2018 4:00,104.1613345,296.6353137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817958241,5.177262902,-2.721294037,2.721294037,0.995522378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002190928,90.12553105,0.002190928,89.87446895,0,0,0,0,0,4,20,0% -4/18/2018 5:00,114.157777,308.0924682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992429075,5.377227971,-1.178398713,1.178398713,0.731671738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.219627087,102.687131,0.219627087,77.31286905,0,0.822341378,0,0,0,4,21,0% -4/18/2018 6:00,122.5372811,321.8697679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138679011,5.617687213,-0.487750856,0.487750856,0.613563998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41568787,114.5626424,0.41568787,65.4373576,0,0.929717443,0,0,0,4,22,0% -4/18/2018 7:00,128.4385055,338.4644989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241674807,5.907319907,-0.033761934,0.033761934,0.53592732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577004134,125.2401041,0.577004134,54.7598959,0,0.963345508,0,0,0,4,23,0% -4/19/2018 8:00,130.920409,357.3500602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284992195,6.236935132,0.344014141,-0.344014141,0.471323807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692576397,133.8344006,0.692576397,46.16559935,0,0.977805798,0,0,0,4,0,0% -4/19/2018 9:00,129.4628789,16.55717415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259553496,0.288977204,0.723505001,-0.723505001,0.406427048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754524013,138.9837965,0.754524013,41.01620354,0,0.983733057,0,0,0,4,1,0% -4/19/2018 10:00,124.3813276,33.86872385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170863694,0.591120745,1.180394599,-1.180394599,0.328294325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758621801,139.3428491,0.758621801,40.65715092,0,0.984091006,0,0,0,4,2,0% -4/19/2018 11:00,116.563878,48.36375171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03442346,0.844106706,1.85918198,-1.85918198,0.212214846,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704587607,134.7962371,0.704587607,45.20376293,0,0.979036504,0,0,0,4,3,0% -4/19/2018 12:00,106.9221773,60.35162772,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866144037,1.053334613,3.240320804,-3.240320804,0,#DIV/0!,0,0,0.023412516,1,0.299338335,0,0.924468275,0.963230238,0.724496596,1,0,0,0.003960192,0.312029739,0.98883144,0.713328035,0.961238037,0.922476074,0,0,0,0,0,0,-0.596101276,126.5911795,0.596101276,53.40882054,0,0.966121636,0,0,0,4,4,0% -4/19/2018 13:00,96.14034564,70.584814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677965575,1.231937406,9.294800242,-9.294800242,0,#DIV/0!,0,0,0.514410067,1,0.107174789,0,0.95041738,0.989179343,0.724496596,1,0,0,0.070728045,0.312029739,0.81908643,0.543583026,0.961238037,0.922476074,0,0,0,0,0,0,-0.440553706,116.1392151,0.440553706,63.86078491,0,0.936506459,0,0,0,4,5,0% -4/19/2018 14:00,84.53409447,79.83356717,34.77783799,173.0746391,18.29188767,18.0024898,0,18.0024898,17.74031977,0.262170033,51.55224992,42.56839256,8.983857367,0.551567903,8.432289464,1.475398279,1.393358601,-10.29703635,10.29703635,0,0.525963911,0.137891976,4.435079942,1,0.225437028,0,0.096811727,0.961238037,1,0.486883378,0.762386782,17.05267015,0.386250931,0.115824807,0.043092529,0.724496596,0.448993192,0.995977119,0.957215156,0.099902267,4.284081159,17.15257241,4.67033209,0,32.97190063,-0.245953958,104.2382167,0.245953958,75.7617833,0,0.846709919,17.15257241,32.58796742,38.48074533,4,6,124% -4/19/2018 15:00,72.84939971,88.8275513,231.068829,584.4026142,58.7376667,58.70840376,0,58.70840376,56.96650933,1.741894437,76.6286067,18.83213652,57.79647018,1.77115737,56.02531281,1.271461883,1.550333237,-3.066987152,3.066987152,0.945360618,0.254199872,1.670912137,53.74227804,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.75837559,1.283197485,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.210570155,51.65912184,55.96894575,52.94231933,0,18.83213652,-0.032224593,91.84665288,0.032224593,88.15334712,0,0,55.96894575,52.94231933,90.6186349,4,7,62% -4/19/2018 16:00,61.05369829,98.36971251,444.8489719,753.5526112,80.13726715,225.3448259,144.2705335,81.07429233,77.72083287,3.353459455,110.2752178,0,110.2752178,2.41643428,107.8587835,1.065588056,1.716875368,-1.590895891,1.590895891,0.80221291,0.180144886,2.809673344,90.36875294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70822081,1.75069841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035598773,86.86588267,76.74381959,88.61658108,144.2705335,0,0.19145383,78.96235978,-0.19145383,101.0376402,0.78884043,0,190.5502492,88.61658108,248.5480292,4,8,30% -4/19/2018 17:00,49.56780107,109.5774901,635.4528784,834.3612927,94.32972596,437.3436872,341.0680383,96.2756489,91.48533668,4.790312214,156.9172967,0,156.9172967,2.844389277,154.0729074,0.865121332,1.912487989,-0.904613689,0.904613689,0.684851741,0.148444879,3.504754744,112.7249601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.93918543,2.060750349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.539182881,108.3555193,90.47836832,110.4162697,341.0680383,0,0.408777398,65.87194403,-0.408777398,114.128056,0.92768404,0,406.8817439,110.4162697,479.1469841,4,9,18% -4/19/2018 18:00,38.99531679,124.3186186,785.665837,876.9378845,104.1119951,637.2625971,530.3672819,106.8953152,100.9726343,5.922680946,193.6331391,0,193.6331391,3.139360784,190.4937783,0.680596671,2.169769217,-0.472249702,0.472249702,0.610913145,0.132514347,3.923614647,126.1969344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.05873677,2.274456201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842645455,121.3052935,99.90138223,123.5797497,530.3672819,0,0.604794583,52.78593836,-0.604794583,127.2140616,0.967327302,0,612.940134,123.5797497,693.8206085,4,10,13% -4/19/2018 19:00,30.5554868,145.6501151,884.0022392,898.6775833,110.1175032,801.9478314,688.4867949,113.4610365,106.7970542,6.663982283,217.6570265,0,217.6570265,3.320449013,214.3365775,0.533293849,2.542074064,-0.14631393,0.14631393,0.555174845,0.124566996,4.068930144,130.8707803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6573907,2.405654007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.947926038,125.7979719,105.6053168,128.2036259,688.4867949,0,0.766111014,39.99406571,-0.766111014,140.0059343,0.984735307,0,783.5825723,128.2036259,867.4892814,4,11,11% -4/19/2018 20:00,26.53738294,175.5777752,923.3073599,906.3447926,112.452293,915.1690928,799.1473705,116.0217224,109.0614415,6.960280886,227.2574106,0,227.2574106,3.390851539,223.8665591,0.463164707,3.064410271,0.134111034,-0.134111034,0.507219352,0.121792913,3.948125666,126.985293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8340059,2.456660397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860403605,122.0630938,107.6944095,124.5197541,799.1473705,0,0.881725561,28.14877751,-0.881725561,151.8512225,0.993293013,0,901.4819089,124.5197541,982.9775976,4,12,9% -4/19/2018 21:00,28.9027985,207.1125903,900.778386,902.0143221,111.1181371,965.8470759,851.2891127,114.5579632,107.7675153,6.790447964,221.7547703,0,221.7547703,3.350621816,218.4041485,0.504448997,3.614796624,0.404514664,-0.404514664,0.460977608,0.123357908,3.581759505,115.2016979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5902348,2.4275141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.594972569,110.7362539,106.1852074,113.163768,851.2891127,0,0.943764519,19.30631476,-0.943764519,160.6936852,0.997020683,0,954.9380596,113.163768,1029.001482,4,13,8% -4/19/2018 22:00,36.40342337,230.8069223,818.047767,884.5402398,106.1181782,947.6423627,838.5572495,109.0851132,102.9183236,6.166789612,201.5450067,0,201.5450067,3.199854607,198.3451521,0.635359597,4.028340731,0.6963707,-0.6963707,0.411067286,0.129721249,3.006090235,96.68619532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92900733,2.31828377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.177902142,92.93844858,101.1069095,95.25673235,838.5572495,0,0.948014812,18.55568695,-0.948014812,161.4443131,0.997258208,0,937.3650094,95.25673235,999.7086356,4,14,7% -4/19/2018 23:00,46.54890237,246.9994816,681.1287374,848.7696387,97.39996944,858.5783185,758.9806814,99.59763713,94.46300099,5.134636132,168.0845167,0,168.0845167,2.936968446,165.1475482,0.81243161,4.310954205,1.054135895,-1.054135895,0.349885835,0.142997886,2.273877647,73.13572152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80142963,2.127823642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.647416614,70.30083738,92.44884625,72.42866102,758.9806814,0,0.894212807,26.59250427,-0.894212807,153.4074957,0.994084898,0,846.9400798,72.42866102,894.3431898,4,15,6% -4/19/2018 0:00,57.85221993,258.9471632,500.3235414,781.3614965,84.5573181,699.9860416,614.2067884,85.77925317,82.00760298,3.771650193,123.8589503,0,123.8589503,2.549715124,121.3092352,1.009711717,4.519480587,1.571826097,-1.571826097,0.261355596,0.169005276,1.456575086,46.84846172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.82882729,1.847259928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055283692,45.03252337,79.88411099,46.8797833,614.2067884,0,0.786072504,38.18001911,-0.786072504,141.8199809,0.986392636,0,685.733164,46.8797833,716.4150446,4,16,4% -4/19/2018 1:00,69.59239456,268.8218908,290.8853276,645.695885,65.73345892,473.4297506,407.4855815,65.94416908,63.75135261,2.19281647,72.51062175,0,72.51062175,1.982106317,70.52851543,1.214616419,4.691827096,2.544098188,-2.544098188,0.095087276,0.225977224,0.656917252,21.12871695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.28022502,1.436029279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.475934313,20.30972641,61.75615934,21.74575569,407.4855815,0,0.631079725,50.87017231,-0.631079725,129.1298277,0.970770708,0,457.3312257,21.74575569,471.5633879,4,17,3% -4/19/2018 2:00,81.33842699,277.8926117,81.40869639,323.4420109,32.69903283,174.7558443,142.4291148,32.32672948,31.71303634,0.613693141,20.72447744,0,20.72447744,0.985996486,19.73848096,1.419623359,4.85014104,5.80185021,-5.80185021,0,0.401665108,0.246499122,7.928259086,0.316015358,1,0.170681815,0,0.942743331,0.981505294,0.724496596,1,30.73804817,0.714351098,0.047020444,0.312029739,0.875326937,0.599823533,0.961238037,0.922476074,0.169317003,7.620944199,30.90736517,8.335295297,97.41932712,0,0.440354407,63.87350414,-0.440354407,116.1264959,0.936455093,0,122.1361902,8.335295297,127.5914743,4,18,4% -4/19/2018 3:00,92.98951632,287.0174144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62297323,5.009398892,-15.28890766,15.28890766,0,#DIV/0!,0,0,1,0.533736688,0,0.065313864,0.961238037,1,0.556033193,0.831536597,0,0,0.115824807,0.121227521,0.724496596,0.448993192,0.987560597,0.948798634,0,0,0,0,0,0,0.223707206,77.07313112,-0.223707206,102.9268689,0.826493566,0,0,0,0,4,19,0% -4/19/2018 4:00,103.9592232,296.9282763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814430734,5.182376063,-2.74734394,2.74734394,0.999977174,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-1.10E-05,90.00063099,1.10E-05,89.99936901,0,0,0,0,0,4,20,0% -4/19/2018 5:00,113.9238435,308.3754467,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988346165,5.382166877,-1.181936805,1.181936805,0.732276787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217135314,102.5408317,0.217135314,77.45916831,0,0.819728843,0,0,0,4,21,0% -4/19/2018 6:00,122.2639306,322.1256958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133908146,5.622153997,-0.486192344,0.486192344,0.613297477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.412859179,114.384571,0.412859179,65.61542901,0,0.928893331,0,0,0,4,22,0% -4/19/2018 7:00,128.1246924,338.6570123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236197736,5.9106799,-0.029864322,0.029864322,0.53526079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573836702,125.0182064,0.573836702,54.98179364,0,0.962867198,0,0,0,4,23,0% -4/20/2018 8:00,130.578282,357.4352672,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279020952,6.238422276,0.349850395,-0.349850395,0.470325748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68909176,133.5582568,0.68909176,46.44174324,0,0.977440723,0,0,0,4,0,0% -4/20/2018 9:00,129.1160148,16.52049738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253499576,0.288337073,0.731865035,-0.731865035,0.404997398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750765593,138.6567395,0.750765593,41.34326052,0,0.983401317,0,0,0,4,1,0% -4/20/2018 10:00,124.0505746,33.7383303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165090966,0.588844948,1.193151564,-1.193151564,0.326112755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754651919,138.9949645,0.754651919,41.00503545,0,0.983744288,0,0,0,4,2,0% -4/20/2018 11:00,116.2579676,48.17911287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029084316,0.84088415,1.8818486,-1.8818486,0.208338626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700483209,134.4657848,0.700483209,45.53421522,0,0.978620702,0,0,0,4,3,0% -4/20/2018 12:00,106.6403339,60.139118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861224941,1.049625618,3.296398897,-3.296398897,0,#DIV/0!,0,0,0.032473781,1,0.294537736,0,0.925213228,0.963975191,0.724496596,1,0,0,0.005469831,0.312029739,0.984606147,0.709102743,0.961238037,0.922476074,0,0,0,0,0,0,-0.591948643,126.2954121,0.591948643,53.70458794,0,0.965533213,0,0,0,4,4,0% -4/20/2018 13:00,95.8775385,70.35625176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673378726,1.227948243,9.713855104,-9.713855104,0,#DIV/0!,0,0,0.530739687,1,0.102584368,0,0.950936267,0.989698231,0.724496596,1,0,0,0.072518913,0.312029739,0.815019656,0.539516252,0.961238037,0.922476074,0,0,0,0,0,0,-0.436442527,115.8771197,0.436442527,64.1228803,0,0.935437379,0,0,0,4,5,0% -4/20/2018 14:00,84.28922321,79.591616,37.82965531,184.274272,19.49309219,19.19047946,0,19.19047946,18.90530354,0.285175921,54.36530595,44.60527939,9.760026557,0.587788651,9.172237906,1.471124469,1.389135756,-9.85988509,9.85988509,0,0.515286011,0.146947163,4.726325884,1,0.177829918,0,0.101075444,0.961238037,1,0.478133498,0.753636902,18.17249686,0.414181837,0.115824807,0.033171087,0.724496596,0.448993192,0.996942806,0.958180843,0.106462719,4.561253657,18.27895958,4.975435494,0,36.67312623,-0.242059181,104.0081068,0.242059181,75.99189317,0,0.843438944,18.27895958,35.90697837,41.77935878,4,6,129% -4/20/2018 15:00,72.60523011,88.56993611,235.3506332,588.3913581,59.44886818,59.43043795,0,59.43043795,57.65626547,1.774172485,75.60257538,16.74648686,58.85608852,1.792602719,57.0634858,1.26720032,1.545837003,-3.025834217,3.025834217,0.952398184,0.252597018,1.711051439,55.03329599,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.42139543,1.298734567,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.239650943,52.9000974,56.66104637,54.19883197,0,16.74648686,-0.028461477,91.63094273,0.028461477,88.36905727,0,0,56.66104637,54.19883197,92.13309792,4,7,63% -4/20/2018 16:00,60.80590679,98.09212606,448.964135,754.9830105,80.70632527,228.8441445,147.1869314,81.65721308,78.27273179,3.384481293,111.2901459,0,111.2901459,2.433593481,108.8565525,1.061263278,1.71203057,-1.578878176,1.578878176,0.80015776,0.179761186,2.829702662,91.01296466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.23872704,1.763130193,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050109946,87.48512348,77.28883699,89.24825367,147.1869314,0,0.194953965,78.75796563,-0.194953965,101.2420344,0.793529197,0,194.0859644,89.24825367,252.4971615,4,8,30% -4/20/2018 17:00,49.30594684,109.2783057,639.2478496,834.9419216,94.84925817,440.773647,343.9655236,96.80812339,91.98920308,4.81892031,157.8530972,0,157.8530972,2.86005509,154.9930421,0.860551113,1.907266236,-0.900139959,0.900139959,0.684086688,0.148376343,3.522441605,113.2938303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.42352098,2.072100177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.551996952,108.9023391,90.97551793,110.9744392,343.9655236,0,0.411963413,65.67176686,-0.411963413,114.3282331,0.928629999,0,410.3922217,110.9744392,483.0227727,4,9,18% -4/20/2018 18:00,38.70566842,124.0150712,789.1205068,877.1702165,104.6044599,640.4038071,533.0048339,107.3989732,101.4502494,5.948723706,194.4856134,0,194.4856134,3.154210414,191.331403,0.675541353,2.164471314,-0.470829727,0.470829727,0.610670315,0.132558284,3.939715916,126.7148065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.51783861,2.285214708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85431077,121.8030919,100.3721494,124.0883066,533.0048339,0,0.607641281,52.58085307,-0.607641281,127.4191469,0.96771461,0,616.1687142,124.0883066,697.3820291,4,10,13% -4/20/2018 19:00,30.22715255,145.4312291,887.1416003,898.7480657,110.5906263,804.7368868,690.7933278,113.943559,107.2559109,6.687648114,218.4324674,0,218.4324674,3.334715419,215.097752,0.527563335,2.538253783,-0.146560494,0.146560494,0.55521701,0.124659498,4.083902165,131.3523319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0984612,2.415989969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.958773216,126.2608577,106.0572344,128.6768477,690.7933278,0,0.768617318,39.77011293,-0.768617318,140.2298871,0.984948122,0,786.4528254,128.6768477,870.6692486,4,11,11% -4/20/2018 20:00,26.19230422,175.6450546,926.1842023,906.3389337,112.9102683,917.6132163,801.1256415,116.4875748,109.5056071,6.981967739,227.968744,0,227.968744,3.404661183,224.5640828,0.457141947,3.065584517,0.132652605,-0.132652605,0.507468758,0.121909085,3.962355998,127.4429894,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2609548,2.466665437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870713432,122.5030489,108.1316682,124.9697144,801.1256415,0,0.883913966,27.88183152,-0.883913966,152.1181685,0.993433409,0,903.9966451,124.9697144,985.7868238,4,12,9% -4/20/2018 21:00,28.60345731,207.4742768,903.4654518,901.9844748,111.564494,967.9992287,852.9881116,115.0111171,108.2004129,6.810704201,222.4197399,0,222.4197399,3.364081124,219.0556587,0.499224507,3.621109243,0.401868934,-0.401868934,0.461430054,0.123485069,3.595611856,115.6472371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0063525,2.437265322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.60500855,111.1645232,106.611361,113.6017885,852.9881116,0,0.945679372,18.97168161,-0.945679372,161.0283184,0.997127957,0,957.1496545,113.6017885,1031.499753,4,13,8% -4/20/2018 22:00,36.16858042,231.2364684,820.6308472,884.5388084,106.556763,949.5934133,840.0634679,109.5299454,103.3436834,6.186261962,202.1845294,0,202.1845294,3.213079556,198.9714498,0.631260814,4.035837724,0.692195463,-0.692195463,0.411781294,0.129847377,3.019885329,97.12989298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33787937,2.327865201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.187896641,93.36494765,101.525776,95.69281285,840.0634679,0,0.949719176,18.24633145,-0.949719176,161.7536685,0.997352858,0,939.3654769,95.69281285,1001.994509,4,14,7% -4/20/2018 23:00,46.35775576,247.3972755,683.6986196,848.8876976,97.83598319,860.4599114,760.4200351,100.0398763,94.88586732,5.15400899,168.7207618,0,168.7207618,2.950115869,165.7706459,0.809095472,4.317897018,1.047472636,-1.047472636,0.351025319,0.143098114,2.287825276,73.58432523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.20790482,2.137348905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657521625,70.73205233,92.86542645,72.86940124,760.4200351,0,0.895784021,26.39068694,-0.895784021,153.6093131,0.994182974,0,848.8620784,72.86940124,896.5536441,4,15,6% -4/20/2018 0:00,57.6835472,259.3039798,502.9633396,781.8293647,85.0012321,701.9958161,615.7661347,86.22968144,82.43813133,3.791550107,124.5123856,0,124.5123856,2.563100769,121.9492848,1.006767823,4.525708211,1.560041616,-1.560041616,0.263370861,0.16900085,1.470597495,47.29947057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.24266752,1.856957782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065442879,45.46605024,80.3081104,47.32300802,615.7661347,0,0.787596581,38.03852788,-0.787596581,141.9614721,0.986515722,0,687.7710836,47.32300802,718.7430459,4,16,5% -4/20/2018 1:00,69.43121319,269.1481573,293.6316305,647.280533,66.22148868,475.9363545,409.4981688,66.43818572,64.22466646,2.213519261,73.19121058,0,73.19121058,1.996822215,71.19438836,1.211803274,4.69752152,2.517426503,-2.517426503,0.099648403,0.225525733,0.670034177,21.55060235,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.73519231,1.446690897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.48543748,20.7152587,62.22062979,22.16194959,409.4981688,0,0.632644036,50.75453477,-0.632644036,129.2454652,0.970966614,0,459.8296803,22.16194959,474.3342331,4,17,3% -4/20/2018 2:00,81.1746731,278.1995322,83.91583812,329.170248,33.41366451,178.5406252,145.5019129,33.03871227,32.40611924,0.632593034,21.35391176,0,21.35391176,1.007545268,20.3463665,1.416765315,4.855497814,5.676301257,-5.676301257,0,0.398180668,0.251886317,8.101529809,0.305821173,1,0.1743817,0,0.94226812,0.981030083,0.724496596,1,31.4072283,0.729963117,0.045696073,0.312029739,0.87860019,0.603096786,0.961238037,0.922476074,0.173134453,7.787498609,31.58036275,8.517461726,101.0043472,0,0.442026319,63.76676013,-0.442026319,116.2332399,0.936884563,0,126.2097765,8.517461726,131.7842849,4,18,4% -4/20/2018 3:00,92.81056066,287.3133188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619849864,5.014563399,-16.20055576,16.20055576,0,#DIV/0!,0,0,1,0.56533303,0,0.061648061,0.961238037,1,0.564595367,0.840098771,0,0,0.115824807,0.13089251,0.724496596,0.448993192,0.986420923,0.94765896,0,0,0,0,0,0,0.225615796,76.96090818,-0.225615796,103.0390918,0.828384311,0,0,0,0,4,19,0% -4/20/2018 4:00,103.7576837,297.2171152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810913204,5.187417253,-2.774140176,2.774140176,0.9954404,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.002168693,89.87574295,-0.002168693,90.12425705,0,0,0,0,0,4,20,0% -4/20/2018 5:00,113.6907258,308.6537133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984277494,5.387023546,-1.185591063,1.185591063,0.732901702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.214639955,102.3944051,0.214639955,77.60559486,0,0.817051759,0,0,0,4,21,0% -4/20/2018 6:00,121.9919436,322.3764155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129161077,5.626529882,-0.484672475,0.484672475,0.613037564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.410025408,114.2064309,0.410025408,65.79356909,0,0.928056337,0,0,0,4,22,0% -4/20/2018 7:00,127.8130805,338.8445457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230759082,5.913952976,-0.025984457,0.025984457,0.534597293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570665097,124.796618,0.570665097,55.20338198,0,0.962382937,0,0,0,4,23,0% -4/21/2018 8:00,130.2392028,357.5171214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.273102904,6.239850901,0.355680565,-0.355680565,0.469328731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685606201,133.2833001,0.685606201,46.71669991,0,0.977071838,0,0,0,4,0,0% -4/21/2018 9:00,128.7726429,16.48287925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247506605,0.287680513,0.740235045,-0.740235045,0.403566042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.747011618,138.3321739,0.747011618,41.66782613,0,0.983066637,0,0,0,4,1,0% -4/21/2018 10:00,123.7233324,33.60873303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159379512,0.586583049,1.205958761,-1.205958761,0.323922595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750693601,138.6504955,0.750693601,41.34950451,0,0.98339493,0,0,0,4,2,0% -4/21/2018 11:00,115.9554473,47.99597453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023804341,0.837687783,1.904712283,-1.904712283,0.204428706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69639875,134.1387845,0.69639875,45.86121545,0,0.978202054,0,0,0,4,3,0% -4/21/2018 12:00,106.3618114,59.92821687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856363808,1.045944699,3.353598779,-3.353598779,0,#DIV/0!,0,0,0.041544703,1,0.289792784,0,0.925944876,0.964706839,0.724496596,1,0,0,0.006968427,0.312029739,0.980429362,0.704925958,0.961238037,0.922476074,0,0,0,0,0,0,-0.587825007,126.0028155,0.587825007,53.99718445,0,0.964940672,0,0,0,4,4,0% -4/21/2018 13:00,95.61808164,70.12916745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668850349,1.223984874,10.16572828,-10.16572828,0,#DIV/0!,0,0,0.547160563,1,0.09805427,0,0.951443545,0.990205509,0.724496596,1,0,0,0.074297284,0.312029739,0.811006575,0.535503171,0.961238037,0.922476074,0,0,0,0,0,0,-0.432369466,115.6180267,0.432369466,64.38197332,0,0.934358162,0,0,0,4,5,0% -4/21/2018 14:00,84.04741901,79.35090973,40.92207666,195.2312167,20.67555628,20.36059988,0,20.36059988,20.05211198,0.308487899,57.05042954,46.50495397,10.54547557,0.623444307,9.922031264,1.46690419,1.384934639,-9.463267914,9.463267914,0,0.505242108,0.155861077,5.013027994,1,0.129274684,0,0.105281027,0.961238037,1,0.469646053,0.745149457,19.27485275,0.442354834,0.115824807,0.02353254,0.724496596,0.448993192,0.997858413,0.95909645,0.112920819,4.833097339,19.38777357,5.275452173,0,40.49304074,-0.238204498,103.7805926,0.238204498,76.21940742,0,0.840096323,19.38777357,39.29350681,45.10458791,4,6,133% -4/21/2018 15:00,72.36470427,88.31322909,239.5655961,592.2216102,60.14789939,60.14016496,0,60.14016496,58.3342183,1.805946656,74.55775839,14.65862493,59.89913346,1.813681089,58.08545237,1.263002352,1.541356621,-2.986355484,2.986355484,0.959149445,0.251070689,1.750695203,56.30837571,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.07306948,1.314005775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.268372715,54.12575253,57.34144219,55.4397583,0,14.65862493,-0.024751925,91.41832569,0.024751925,88.58167431,0,0,57.34144219,55.4397583,93.62565521,4,7,63% -4/21/2018 16:00,60.56204667,97.81490018,453.0010743,756.3523474,81.26845748,232.2889343,150.0561072,82.23282708,78.81791364,3.414913447,112.285899,0,112.285899,2.450543842,109.8353551,1.057007116,1.707192066,-1.567234722,1.567234722,0.798166612,0.179400143,2.849320287,91.64393489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.76277657,1.775410671,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064322848,88.09163606,77.82709942,89.86704673,150.0561072,0,0.198394449,78.55691354,-0.198394449,101.4430865,0.79797682,0,197.5683946,89.86704673,256.3845794,4,8,30% -4/21/2018 17:00,49.04831643,108.9784684,642.9623823,835.4904436,95.36326089,444.13503,346.8004012,97.33462875,92.48770672,4.846922026,158.7692277,0,158.7692277,2.875554169,155.8936736,0.856054614,1.902033088,-0.89580071,0.89580071,0.683344633,0.14831857,3.53975807,113.8507874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90270164,2.083329207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564542672,109.4377073,91.46724432,111.5210365,346.8004012,0,0.415086018,65.47526645,-0.415086018,114.5247336,0.92954304,0,413.8331434,111.5210365,486.8214314,4,9,18% -4/21/2018 18:00,38.42040567,123.7089991,792.4962606,877.3817982,105.0920233,643.4714541,535.5741715,107.8972826,101.923111,5.974171564,195.3188058,0,195.3188058,3.168912249,192.1498936,0.670562579,2.159129348,-0.469466848,0.469466848,0.610437249,0.132608857,3.955479398,127.2218143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97237113,2.295866137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865731359,122.290447,100.8381025,124.5863132,535.5741715,0,0.610423162,52.37989338,-0.610423162,127.6201066,0.968089609,0,619.3218927,124.5863132,700.8611429,4,10,13% -4/21/2018 19:00,29.90287649,145.2077586,890.2063136,898.8031203,111.0593053,807.4521684,693.0309597,114.4212087,107.7104575,6.710751216,219.189675,0,219.189675,3.34884782,215.8408272,0.521903651,2.534353487,-0.146829598,0.146829598,0.55526303,0.124756816,4.09857116,131.8241373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5353887,2.426228846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.969400854,126.7143749,106.5047895,129.1406038,693.0309597,0,0.771059806,39.55084586,-0.771059806,140.4491541,0.985154187,0,789.2471412,129.1406038,873.7670836,4,11,11% -4/21/2018 20:00,25.85058292,175.7103126,928.992883,906.3203328,113.3642358,919.9868021,803.0377755,116.9490266,109.9458858,7.00314076,228.66343,0,228.66343,3.41834998,225.24508,0.451177785,3.066723484,0.131192168,-0.131192168,0.507718508,0.122029176,3.976321782,127.892177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6841675,2.476582924,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.880831595,122.9348252,108.5649991,125.4114081,803.0377755,0,0.886041884,27.61999013,-0.886041884,152.3800099,0.993569259,0,906.4386467,125.4114081,988.517905,4,12,9% -4/21/2018 21:00,28.30740059,207.8368516,906.0925335,901.9431053,112.0072927,970.086777,854.6264093,115.4603678,108.6298595,6.830508253,223.0700583,0,223.0700583,3.377433137,219.6926251,0.494057343,3.627437368,0.399238232,-0.399238232,0.461879931,0.123615733,3.609240818,116.0855914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4191529,2.44693881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614882687,111.585886,107.0340356,114.0328248,854.6264093,0,0.947539157,18.64113772,-0.947539157,161.3588623,0.997231732,0,959.2946101,114.0328248,1033.926813,4,13,8% -4/21/2018 22:00,35.93664192,231.6649686,823.1632235,884.5259128,106.9922441,951.487757,841.5163718,109.9713852,103.7660331,6.205352084,202.8116647,0,202.8116647,3.226210918,199.5854538,0.627212724,4.043316463,0.688055912,-0.688055912,0.412489199,0.129976949,3.03349915,97.56776024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74385799,2.337378827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.197759808,93.78584231,101.9416178,96.12322114,841.5163718,0,0.951375601,17.94074323,-0.951375601,162.0592568,0.997444521,0,941.3075126,96.12322114,1004.218238,4,14,7% -4/21/2018 23:00,46.1687899,247.7925788,686.2275629,848.9927652,98.26931593,862.2936978,761.8144911,100.4792067,95.30613348,5.173073233,169.3469999,0,169.3469999,2.96318245,166.3838175,0.805797395,4.324796362,1.040880976,-1.040880976,0.352152559,0.143202228,2.30163352,74.02844581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.61188065,2.146815598,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.66752565,71.15895792,93.2794063,73.30577352,761.8144911,0,0.897315646,26.19256613,-0.897315646,153.8074339,0.994278248,0,850.7349837,73.30577352,898.7121464,4,15,6% -4/21/2018 0:00,57.51640602,259.6577675,505.5719309,782.2788425,85.44274963,703.9660126,617.2884624,86.67755025,82.86633548,3.81121477,125.1581821,0,125.1581821,2.576414151,122.581768,1.003850659,4.531882971,1.548417278,-1.548417278,0.26535874,0.169002163,1.484524183,47.74740076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65427363,1.866603282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075532717,45.89661777,80.72980635,47.76322105,617.2884624,0,0.789090065,37.89944225,-0.789090065,142.1005577,0.986635877,0,689.7687497,47.76322105,721.0288226,4,16,5% -4/21/2018 1:00,69.2710833,269.471167,296.3567724,648.8261892,66.70674799,478.4063743,411.4770183,66.92935595,64.69529342,2.234062532,73.86658514,0,73.86658514,2.011454574,71.85513057,1.20900848,4.703159103,2.49126932,-2.49126932,0.104121545,0.225089332,0.683118746,21.97144707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.18757684,1.457291991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.494917206,21.11979065,62.68249405,22.57708264,411.4770183,0,0.634186821,50.64030144,-0.634186821,129.3596986,0.971158879,0,462.2920538,22.57708264,477.0683029,4,17,3% -4/21/2018 2:00,81.01160815,278.5029919,86.42576003,334.779349,34.12172411,182.2812437,148.5369016,33.74434212,33.09282823,0.651513885,21.983822,0,21.983822,1.028895878,20.95492612,1.413919295,4.860794186,5.555760349,-5.555760349,0,0.39480965,0.257223969,8.273207058,0.295743544,1,0.178086511,0,0.941789214,0.980551178,0.724496596,1,32.06984874,0.745431561,0.044375736,0.312029739,0.881877287,0.606373882,0.961238037,0.922476074,0.176932082,7.952521311,32.24678082,8.697952872,104.6080718,0,0.443685974,63.66070162,-0.443685974,116.3392984,0.937307684,0,130.2967304,8.697952872,135.9893666,4,18,4% -4/21/2018 3:00,92.63220642,287.605464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616736995,5.019662294,-17.23253168,17.23253168,0,#DIV/0!,0,0,1,0.596300525,0,0.057964772,0.961238037,1,0.573305992,0.848809396,0,0,0.115824807,0.140726684,0.724496596,0.448993192,0.985239377,0.946477414,0,0,0,0,0,0,0.227518306,76.84899205,-0.227518306,103.151008,0.830237464,0,0,0,0,4,19,0% -4/21/2018 4:00,103.5567766,297.5017503,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807406715,5.192385073,-2.80170826,2.80170826,0.99072598,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004347824,89.75088726,-0.004347824,90.24911274,0,0,0,0,0,4,20,0% -4/21/2018 5:00,113.4585047,308.9272089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980224471,5.391796944,-1.189364831,1.189364831,0.733547055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212141736,102.2478931,0.212141736,77.75210695,0,0.814308519,0,0,0,4,21,0% -4/21/2018 6:00,121.721418,322.6219012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124439515,5.630814415,-0.483193572,0.483193572,0.612784657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407187648,114.0282892,0.407187648,65.97171077,0,0.927206491,0,0,0,4,22,0% -4/21/2018 7:00,127.5037757,339.0271087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.225360695,5.917139301,-0.022124888,0.022124888,0.533937268,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56749076,124.5754335,0.56749076,55.42456646,0,0.961892839,0,0,0,4,23,0% -4/22/2018 8:00,129.903276,357.5956358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.267239875,6.241221235,0.361501492,-0.361501492,0.468333294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682121467,133.0096452,0.682121467,46.99035478,0,0.976699272,0,0,0,4,0,0% -4/22/2018 9:00,128.4328676,16.44430676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241576408,0.287007296,0.748610791,-0.748610791,0.402133705,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743264081,138.0102126,0.743264081,41.98978744,0,0.982729159,0,0,0,4,1,0% -4/22/2018 10:00,123.3997088,33.47991047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153731215,0.584334671,1.218810022,-1.218810022,0.3217249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746749002,138.3095457,0.746749002,41.69045426,0,0.983043098,0,0,0,4,2,0% -4/22/2018 11:00,115.656426,47.81433058,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018585434,0.834517498,1.927763787,-1.927763787,0.200486666,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692336462,133.8153458,0.692336462,46.18465419,0,0.977780779,0,0,0,4,3,0% -4/22/2018 12:00,106.0867153,59.71893982,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851562474,1.042292126,3.411923221,-3.411923221,0,#DIV/0!,0,0,0.050620484,1,0.285105195,0,0.926663104,0.965425067,0.724496596,1,0,0,0.008455307,0.312029739,0.976302564,0.70079916,0.961238037,0.922476074,0,0,0,0,0,0,-0.583732581,125.713503,0.583732581,54.28649699,0,0.964344339,0,0,0,4,4,0% -4/22/2018 13:00,95.3620745,69.90359612,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664382182,1.220047911,10.6541469,-10.6541469,0,#DIV/0!,0,0,0.563664175,1,0.093585987,0,0.951939229,0.990701192,0.724496596,1,0,0,0.07606229,0.312029739,0.807048607,0.531545203,0.961238037,0.922476074,0,0,0,0,0,0,-0.428336617,115.3620439,0.428336617,64.63795606,0,0.933269377,0,0,0,4,5,0% -4/22/2018 14:00,83.8088152,79.11150083,44.04513536,205.9213056,21.83726385,21.51082061,0,21.51082061,21.17878977,0.332030835,59.60412473,48.26639765,11.33772708,0.658474076,10.679253,1.462739767,1.380756166,-9.10204885,9.10204885,0,0.495792865,0.164618519,5.294697443,1,0.079779201,0,0.109426508,0.961238037,1,0.46141917,0.736922574,20.3578583,0.470771519,0.115824807,0.014173409,0.724496596,0.448993192,0.998726135,0.959964172,0.119265557,5.099093161,20.47712386,5.569864679,0,44.41574302,-0.234392442,103.555812,0.234392442,76.44418798,0,0.836682541,20.47712386,42.73174143,48.44419399,4,6,137% -4/22/2018 15:00,72.1279127,88.05749995,243.7117138,595.8977385,60.83487249,60.83767847,0,60.83767847,59.00047663,1.837201843,73.49711835,12.57199588,60.92512248,1.834395862,59.09072661,1.258869559,1.536893305,-2.94847639,2.94847639,0.965627152,0.249618172,1.789815335,57.56661364,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.71350233,1.329013558,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.296715118,55.33521868,58.01021745,56.66423224,0,12.57199588,-0.021097573,91.20889157,0.021097573,88.79110843,0,0,58.01021745,56.66423224,95.09582416,4,7,64% -4/22/2018 16:00,60.32220638,97.53812257,456.9585676,757.6616676,81.82362871,235.6775146,152.8764235,82.80109111,79.3563444,3.444746703,113.2621795,0,113.2621795,2.467284303,110.7948952,1.052821113,1.702361385,-1.55595748,1.55595748,0.79623809,0.179061373,2.868523175,92.26156578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.28033671,1.787539078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.078235275,88.68532637,78.35857198,90.47286545,152.8764235,0,0.201773998,78.35928321,-0.201773998,101.6407168,0.802198001,0,200.9957333,90.47286545,260.2084143,4,8,29% -4/22/2018 17:00,48.79500325,108.6780799,646.5956964,836.0072224,95.87169541,447.4267726,349.571651,97.85512154,92.98081006,4.874311482,159.665498,0,159.665498,2.890885345,156.7746126,0.851633465,1.89679032,-0.891594746,0.891594746,0.682625371,0.148271472,3.5567021,114.3957656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.37669133,2.094436592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.576818564,109.9615612,91.95350989,112.0559978,349.571651,0,0.418144295,65.28251557,-0.418144295,114.7174844,0.930424053,0,417.2033824,112.0559978,490.5417918,4,9,18% -4/22/2018 18:00,38.13963571,123.4004845,795.7926912,877.5728195,105.5746616,646.4649363,538.0747188,108.3902174,102.391196,5.99902145,196.1326169,0,196.1326169,3.183465575,192.9491513,0.665662219,2.153744754,-0.468161083,0.468161083,0.61021395,0.132666036,3.970904193,127.7179287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.42231222,2.306409972,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87690657,122.7673311,101.2992188,125.0737411,538.0747188,0,0.613139681,52.18312976,-0.613139681,127.8168702,0.968452513,0,622.3990326,125.0737411,704.2572947,4,10,13% -4/22/2018 19:00,29.58277789,144.9796561,893.1962823,898.8428884,111.5235323,810.0934833,695.1995061,114.8939772,108.1606863,6.733290864,219.9286257,0,219.9286257,3.362845976,216.5657797,0.516316876,2.530372348,-0.147121484,0.147121484,0.555312945,0.12485893,4.112937098,132.2861952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9681658,2.436370462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.979808927,127.1585226,106.9479747,129.594893,695.1995061,0,0.773438289,39.33634372,-0.773438289,140.6636563,0.985353601,0,791.9653117,129.594893,876.7825773,4,11,11% -4/22/2018 20:00,25.51231615,175.7733775,931.7335383,906.2891235,113.8142003,922.2900091,804.8839259,117.4060832,110.3822823,7.023800978,229.3415017,0,229.3415017,3.43191807,225.9095836,0.445273917,3.067824174,0.129729482,-0.129729482,0.507968642,0.122153165,3.990023469,128.3328704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1036483,2.486412959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.890758421,123.3584364,108.9944067,125.8448493,804.8839259,0,0.88810944,27.36336701,-0.88810944,152.636633,0.993700632,0,908.8080727,125.8448493,991.1710097,4,12,9% -4/22/2018 21:00,28.01468657,208.2000977,908.659908,901.8903583,112.446546,972.1101541,856.2044241,115.9057299,109.0558677,6.849862206,223.705793,0,223.705793,3.390678245,220.3151148,0.48894852,3.633777208,0.396622369,-0.396622369,0.46232727,0.123749871,3.6226469,116.5167771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8286482,2.456534846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.624595347,112.0003581,107.4532436,114.4568929,856.2044241,0,0.949344248,18.31481656,-0.949344248,161.6851834,0.997332066,0,961.373371,114.4568929,1036.283118,4,13,8% -4/22/2018 22:00,35.70762616,232.0921858,825.6452113,884.5017236,107.4246379,953.3260032,842.9165521,110.4094511,104.1853887,6.224062356,203.4264896,0,203.4264896,3.239249188,200.1872405,0.623215645,4.050772811,0.683951887,-0.683951887,0.413191028,0.130109927,3.046931847,97.99980196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1469585,2.34682501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.207491751,94.20113724,102.3544503,96.54796225,842.9165521,0,0.952984635,17.63899914,-0.952984635,162.3610009,0.997533257,0,943.1917438,96.54796225,1006.380454,4,14,7% -4/22/2018 23:00,45.98200607,248.1852033,688.7158161,849.0850607,98.69998292,864.0803509,763.1647059,100.915645,95.72381427,5.191830737,169.9632919,0,169.9632919,2.976168649,166.9871233,0.802537403,4.331648952,1.034360626,-1.034360626,0.353267605,0.143310173,2.315301779,74.46806401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.01337131,2.156224055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.677428257,71.58153566,93.69079957,73.73775971,763.1647059,0,0.898808307,25.99813604,-0.898808307,154.001864,0.994370786,0,852.5594877,73.73775971,900.8193767,4,15,6% -4/22/2018 0:00,57.35079807,260.0083801,508.1493934,782.7102594,85.88188099,705.8972545,618.7743844,87.12287017,83.2922254,3.83064477,125.7963592,0,125.7963592,2.589655582,123.2067036,1.000960255,4.538002315,1.536951798,-1.536951798,0.267319452,0.169009118,1.49835343,48.19219686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.06365523,1.876196654,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085551959,46.32417271,81.14920719,48.20036936,618.7743844,0,0.790553563,37.76272706,-0.790553563,142.2372729,0.986753179,0,691.7267978,48.20036936,723.2729755,4,16,5% -4/22/2018 1:00,69.11201529,269.7907992,299.0605396,650.3335907,67.18924668,480.8403267,413.422639,67.41768766,65.16324299,2.254444671,74.53669392,0,74.53669392,2.026003689,72.51069023,1.20623222,4.708737738,2.465616948,-2.465616948,0.108508359,0.22466771,0.696167429,22.39113759,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.63738777,1.467832776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.504370933,21.52321314,63.1417587,22.99104592,413.422639,0,0.635708573,50.52744215,-0.635708573,129.4725579,0.971347608,0,464.7188502,22.99104592,479.7660299,4,17,3% -4/22/2018 2:00,80.84925814,278.8028859,88.93723101,340.2703743,34.82319254,185.977429,151.5338378,34.44359121,33.7731448,0.670446415,22.61390908,0,22.61390908,1.050047739,21.56386134,1.411085752,4.866028323,5.439959968,-5.439959968,0,0.391547973,0.262511935,8.4432862,0.285782776,1,0.181795297,0,0.941306732,0.980068695,0.724496596,1,32.7258799,0.760756012,0.043059724,0.312029739,0.88515737,0.609653966,0.961238037,0.922476074,0.18071009,8.116007851,32.90658999,8.876763864,108.2280769,0,0.445333621,63.5553143,-0.445333621,116.4446857,0.937724623,0,134.3947227,8.876763864,140.2043871,4,18,4% -4/22/2018 3:00,92.45449292,287.8937567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363531,5.02469395,-18.41005926,18.41005926,0,#DIV/0!,0,0,1,0.62665103,0,0.054264804,0.961238037,1,0.582164542,0.857667947,0,0,0.115824807,0.150730309,0.724496596,0.448993192,0.984014903,0.94525294,0,0,0,0,0,0,0.229414755,76.73738163,-0.229414755,103.2626184,0.832054123,0,0,0,0,4,19,0% -4/22/2018 4:00,103.3565602,297.7821013,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80391228,5.197278121,-2.830075203,2.830075203,0.985874947,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.006526066,89.62608133,-0.006526066,90.37391867,0,0,0,0,0,4,20,0% -4/22/2018 5:00,113.2272584,309.1958732,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976188461,5.396486021,-1.1932617,1.1932617,0.734213458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.209641336,102.1013345,0.209641336,77.89866552,0,0.811497418,0,0,0,4,21,0% -4/22/2018 6:00,121.4524492,322.8621254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119745122,5.635007118,-0.481758125,0.481758125,0.612539181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.404346953,113.8502103,0.404346953,66.14978969,0,0.926343819,0,0,0,4,22,0% -4/22/2018 7:00,127.1968815,339.2047075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22000438,5.920238983,-0.018288328,0.018288328,0.533281178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564315104,124.3547444,0.564315104,55.64525557,0,0.96139702,0,0,0,4,23,0% -4/23/2018 8:00,129.5706044,357.6708191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26143366,6.242533432,0.367309824,-0.367309824,0.46734001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678639288,132.7374035,0.678639288,47.2625965,0,0.976323157,0,0,0,4,0,0% -4/23/2018 9:00,128.0967924,16.40476313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235710789,0.28631713,0.756987766,-0.756987766,0.400701157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739524966,137.6909657,0.739524966,42.30903429,0,0.98238903,0,0,0,4,1,0% -4/23/2018 10:00,123.0798115,33.35183782,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148147953,0.582099381,1.231698727,-1.231698727,0.319520802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742820282,137.9722177,0.742820282,42.0277823,0,0.982688968,0,0,0,4,2,0% -4/23/2018 11:00,115.3610123,47.63417185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013429494,0.831373135,1.950992867,-1.950992867,0.19651426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688298583,133.4955774,0.688298583,46.50442255,0,0.977357107,0,0,0,4,3,0% -4/23/2018 12:00,105.815151,59.51129944,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846822783,1.038668117,3.471372133,-3.471372133,0,#DIV/0!,0,0,0.05969605,1,0.280476712,0,0.927367799,0.966129762,0.724496596,1,0,0,0.00992978,0.312029739,0.97222726,0.696723856,0.961238037,0.922476074,0,0,0,0,0,0,-0.579673585,125.4275876,0.579673585,54.57241237,0,0.96374456,0,0,0,4,4,0% -4/23/2018 13:00,95.10961712,69.67957021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659975969,1.216137922,11.18340428,-11.18340428,0,#DIV/0!,0,0,0.580241299,1,0.08918103,0,0.952423335,0.991185298,0.724496596,1,0,0,0.077813037,0.312029739,0.803147186,0.527643782,0.961238037,0.922476074,0,0,0,0,0,0,-0.42434609,115.10928,0.42434609,64.89071997,0,0.932171649,0,0,0,4,5,0% -4/23/2018 14:00,83.57354073,78.87343954,47.18949737,216.3256714,22.97663144,22.63953559,0,22.63953559,22.28380123,0.355734364,62.02468236,49.89021217,12.13447019,0.692830213,11.44163998,1.458633453,1.376601212,-8.771928316,8.771928316,0,0.486901381,0.173207553,5.570950307,1,0.029354061,0,0.113509987,0.961238037,1,0.453450649,0.728954053,21.42003735,0.499438374,0.115824807,0.005089997,0.724496596,0.448993192,0.999548112,0.960786149,0.125488283,5.358830636,21.54552563,5.858269011,0,48.42573186,-0.230625482,103.3338993,0.230625482,76.66610075,0,0.833198285,21.54552563,46.20650574,51.7867595,4,6,140% -4/23/2018 15:00,71.89494629,87.80281653,247.787016,599.423889,61.50988788,61.52306101,0,61.52306101,59.65513782,1.867923192,72.42353839,10.48995751,61.93358088,1.854750067,60.07883081,1.254803528,1.532448241,-2.912127714,2.912127714,0.971843141,0.248236929,1.828384327,58.80712499,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.34278756,1.34376011,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.324658221,56.52764538,58.66744578,57.87140549,0,10.48995751,-0.017500066,91.0027311,0.017500066,88.9972689,0,0,58.66744578,57.87140549,96.54312325,4,7,65% -4/23/2018 16:00,60.08647449,97.26187972,460.8354088,758.9119659,82.37180217,239.0082154,155.646255,83.36196039,79.88798842,3.473971969,114.218694,0,114.218694,2.483813755,111.7348802,1.048706816,1.697540038,-1.545038936,1.545038936,0.794370909,0.178744516,2.887308361,92.86576196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79137315,1.79951461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.091845079,89.26610272,78.88321823,91.06561733,155.646255,0,0.205091318,78.16515526,-0.205091318,101.8348447,0.806206159,0,204.3661877,91.06561733,263.9668129,4,8,29% -4/23/2018 17:00,48.54610037,108.3772419,650.1470349,836.4926068,96.37452349,450.6478186,352.2782597,98.36955899,93.46847602,4.901082972,160.5417232,0,160.5417232,2.906047467,157.6356757,0.847289291,1.891539705,-0.887521021,0.887521021,0.681928723,0.148234966,3.57327181,114.9287044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.8454544,2.105421497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588823262,110.4738422,92.43427766,112.5792637,352.2782597,0,0.421137326,65.09358752,-0.421137326,114.9064125,0.931273882,0,420.50182,112.5792637,494.1826965,4,9,18% -4/23/2018 18:00,37.86346508,123.0896112,799.0094253,877.7434662,106.0523526,649.3836666,540.5059131,108.8777535,102.8544829,6.023270551,196.9269555,0,196.9269555,3.197869724,193.7290858,0.660842132,2.14831899,-0.466912534,0.466912534,0.610000435,0.132729789,3.985989609,128.2031276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.86764124,2.316845729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887835903,123.2337227,101.7554771,125.5505684,540.5059131,0,0.615790301,51.99063258,-0.615790301,128.0093674,0.968803528,0,625.3995126,125.5505684,707.5698486,4,10,13% -4/23/2018 19:00,29.26697555,144.7468724,896.1114552,898.8675126,111.9833016,812.6606642,697.2988057,115.3618585,108.6065919,6.755266668,220.6493069,0,220.6493069,3.376709717,217.2725971,0.510805085,2.526309505,-0.147436461,0.147436461,0.555366809,0.124965819,4.1270002,132.7385129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3967871,2.446414695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989997596,127.5933076,107.3867847,130.0397222,697.2988057,0,0.775752595,39.12668464,-0.775752595,140.8733154,0.985546461,0,794.607155,130.0397222,879.7155525,4,11,11% -4/23/2018 20:00,25.17759907,175.8340627,934.4063609,906.2454442,114.2601695,924.5230344,806.6642807,117.8587537,110.8148038,7.043949843,230.0030061,0,230.0030061,3.445365686,226.5576404,0.439432001,3.068883331,0.128264245,-0.128264245,0.508219212,0.122281027,4.003461801,128.7650933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5194045,2.496155711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900494446,123.7739055,109.4198989,126.2700612,806.6642807,0,0.890116784,27.11207437,-0.890116784,152.8879256,0.993827596,0,911.1051215,126.2700612,993.7463512,4,12,9% -4/23/2018 21:00,27.72536829,208.5637819,911.1679184,901.8263865,112.8822706,974.0698435,857.7226211,116.3472223,109.4784537,6.868768648,224.3270279,0,224.3270279,3.403816951,220.923211,0.483898963,3.640124694,0.394021091,-0.394021091,0.462772115,0.123887451,3.635830937,116.940821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2348539,2.466053794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634147137,112.4079652,107.869001,114.874019,857.7226211,0,0.95109506,17.99285213,-0.95109506,162.0071479,0.997429019,0,963.3864339,114.874019,1038.569182,4,13,8% -4/23/2018 22:00,35.48154529,232.5178751,828.0772008,884.4664231,107.8539654,955.1088236,844.2646575,110.8441662,104.6017704,6.242395721,204.0290995,0,204.0290995,3.252194997,200.7769045,0.619269789,4.058202491,0.679883153,-0.679883153,0.413886823,0.130246269,3.060183917,98.4260341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5472005,2.356204204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.217092831,94.61084779,102.7642933,96.96705199,844.2646575,0,0.954546872,17.34117035,-0.954546872,162.6588297,0.997619125,0,945.0188625,96.96705199,1008.481859,4,14,7% -4/23/2018 23:00,45.79740001,248.5749581,691.1637089,849.1648207,99.12800458,865.8206177,764.4714042,101.3492135,96.1389295,5.210283986,170.5697183,0,170.5697183,2.989075081,167.5806432,0.799315419,4.338451456,1.027911192,-1.027911192,0.354370523,0.143421889,2.328829807,74.90317188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.41239586,2.165574721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687229267,71.99977789,94.09962512,74.16535262,764.4714042,0,0.900262688,25.80738207,-0.900262688,154.1926179,0.994460655,0,854.3363585,74.16535262,902.8760985,4,15,6% -4/23/2018 0:00,57.18672012,260.3556699,510.6958886,783.1239726,86.3186426,707.7902499,620.2245915,87.56565837,83.71581704,3.849841327,126.4269564,0,126.4269564,2.602825556,123.8241308,0.998096554,4.544063667,1.525643741,-1.525643741,0.269253244,0.169021613,1.51208385,48.63381436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.47082763,1.885738255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095499602,46.74867224,81.56632723,48.63441049,620.2245915,0,0.791987748,37.62834042,-0.791987748,142.3716596,0.98686771,0,693.6459497,48.63441049,725.4761987,4,16,5% -4/23/2018 1:00,68.95401514,270.1069326,301.742802,651.803522,67.66900245,483.2388237,415.3356266,67.90319705,65.62853235,2.274664698,75.20150589,0,75.20150589,2.040470096,73.1610358,1.203474597,4.714255306,2.440459612,-2.440459612,0.112810516,0.224260536,0.709177002,22.80957017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.0846416,1.478313638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.513796324,21.92542645,63.59843792,23.40374009,415.3356266,0,0.637209853,50.41592147,-0.637209853,129.5840785,0.971532915,0,467.1106698,23.40374009,482.4279496,4,17,3% -4/23/2018 2:00,80.68764492,279.0991089,91.4491236,345.6446495,35.51807476,189.6290988,154.492643,35.13645588,34.44707376,0.689382122,23.24389978,0,23.24389978,1.071001002,22.17289878,1.40826507,4.871198389,5.32864986,-5.32864986,0,0.388391636,0.26775025,8.61176844,0.275938999,1,0.185507146,0,0.94082079,0.979582753,0.724496596,1,33.37531561,0.77593658,0.041748307,0.312029739,0.88843962,0.612936216,0.961238037,0.922476074,0.184468771,8.277959389,33.55978438,9.053895969,111.8620977,0,0.446969577,63.45057922,-0.446969577,116.5494208,0.938135563,0,138.5015964,9.053895969,144.4271902,4,18,4% -4/23/2018 3:00,92.27745568,288.1781032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610545427,5.029656733,-19.76596002,19.76596002,0,#DIV/0!,0,0,1,0.656396581,0,0.05054893,0.961238037,1,0.591170479,0.866673883,0,0,0.115824807,0.160903582,0.724496596,0.448993192,0.982746444,0.943984481,0,0,0,0,0,0,0.231305229,76.62607178,-0.231305229,103.3739282,0.83383541,0,0,0,0,4,19,0% -4/23/2018 4:00,103.157089,298.0580874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80043085,5.202094988,-2.859269794,2.859269794,0.980882378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00870317,89.50133882,-0.00870317,90.49866118,0,0,0,0,0,4,20,0% -4/23/2018 5:00,112.9970612,309.4596459,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972170762,5.401089722,-1.19728556,1.19728556,0.734901579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.207139377,101.9547649,0.207139377,78.04523511,0,0.808616634,0,0,0,4,21,0% -4/23/2018 6:00,121.1851285,323.097059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115079496,5.639107483,-0.480368813,0.480368813,0.612301595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.401504327,113.6722549,0.401504327,66.32774505,0,0.925468341,0,0,0,4,22,0% -4/23/2018 7:00,126.8924976,339.3773446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21469188,5.92325207,-0.014477663,0.014477663,0.532629516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.5611395,124.1346384,0.5611395,55.86536155,0,0.960895597,0,0,0,4,23,0% -4/24/2018 8:00,129.2412878,357.7426753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255686001,6.243787558,0.373102017,-0.373102017,0.466349487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675161362,132.4666821,0.675161362,47.53331786,0,0.975943629,0,0,0,4,0,0% -4/24/2018 9:00,127.7645188,16.36422718,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22991152,0.285609644,0.7653612,-0.7653612,0.399269216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735796236,137.3745399,0.735796236,42.62546012,0,0.982046404,0,0,0,4,1,0% -4/24/2018 10:00,122.7637468,33.22448641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142631584,0.57987668,1.244617801,-1.244617801,0.31731151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738909585,137.6386116,0.738909585,42.36138838,0,0.982332722,0,0,0,4,2,0% -4/24/2018 11:00,115.0693148,47.45548539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008338411,0.828254468,1.974388252,-1.974388252,0.192513413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684287352,133.1795872,0.684287352,46.82041283,0,0.976931281,0,0,0,4,3,0% -4/24/2018 12:00,105.5472242,59.30530474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842146578,1.035072832,3.531942302,-3.531942302,0,#DIV/0!,0,0,0.068766055,1,0.275909094,0,0.928058852,0.966820815,0.724496596,1,0,0,0.011391138,0.312029739,0.96820498,0.692701576,0.961238037,0.922476074,0,0,0,0,0,0,-0.575650249,125.1451822,0.575650249,54.85481777,0,0.963141703,0,0,0,4,4,0% -4/24/2018 13:00,94.86080981,69.45711889,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655633462,1.212255414,11.7584705,-11.7584705,0,#DIV/0!,0,0,0.596881994,1,0.084840926,0,0.952895884,0.991657847,0.724496596,1,0,0,0.079548603,0.312029739,0.799303759,0.523800354,0.961238037,0.922476074,0,0,0,0,0,0,-0.420400001,114.8598438,0.420400001,65.14015618,0,0.931065652,0,0,0,4,5,0% -4/24/2018 14:00,83.3417207,78.63677312,50.34642764,226.4299589,24.09243645,23.74549324,0,23.74549324,23.3659606,0.379532638,64.31187306,51.37832294,12.93355012,0.726475851,12.20707427,1.45458743,1.372470604,-8.469280462,8.469280462,0.021514052,0.478533187,0.185876888,5.978439656,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.4602501,0.526329281,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.134667172,5.746703598,22.59491727,6.273032879,0,51.37832294,-0.22690603,103.1149849,0.22690603,76.88501509,0,0.829644463,22.59491727,48.89877402,54.59818689,4,6,142% -4/24/2018 15:00,71.66589602,87.54924411,251.7895684,602.8039991,62.1730351,62.19638482,0,62.19638482,60.2982887,1.898096123,71.33982496,8.415782585,62.92404238,1.874746402,61.04929597,1.250805847,1.528022567,-2.877245123,2.877245123,0.977808416,0.246924587,1.866375261,60.02904401,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.96100865,1.358247387,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.352182523,57.70220042,59.31319118,59.06044781,0,8.415782585,-0.01396106,90.79993578,0.01396106,89.20006422,0,0,59.31319118,59.06044781,97.96707306,4,7,65% -4/24/2018 16:00,59.85493941,96.98625611,464.6304115,760.1041893,82.91293975,242.2793792,158.3639902,83.915389,80.4128087,3.502580302,115.1551536,0,115.1551536,2.50013105,112.6550226,1.044665766,1.692729498,-1.53447208,1.53447208,0.79256387,0.178449231,2.905672977,93.45643112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.29585037,1.811336435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.10515018,89.83387638,79.40100055,91.64521281,158.3639902,0,0.208345109,77.97461098,-0.208345109,102.025389,0.810013565,0,207.6779808,91.64521281,267.6579397,4,8,29% -4/24/2018 17:00,48.30170029,108.0760551,653.6156677,836.9469321,96.87170763,453.7971216,354.9192224,98.87789922,93.95066822,4.927230991,161.3977253,0,161.3977253,2.921039403,158.4766859,0.843023704,1.886283004,-0.883578646,0.883578646,0.681254537,0.148208974,3.589465483,115.4495486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30895588,2.116283104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.600555523,110.9744975,92.90951141,113.0907806,354.9192224,0,0.424064189,64.90855598,-0.424064189,115.091444,0.932093322,0,423.7273483,113.0907806,497.7430024,4,9,17% -4/24/2018 18:00,37.59199939,122.7764635,802.1461267,877.8939214,106.5250761,652.2270745,542.8672061,109.3598683,103.312952,6.046916331,197.7017394,0,197.7017394,3.21212408,194.4896153,0.656104162,2.142853532,-0.465721391,0.465721391,0.609796738,0.132800088,4.000735177,128.6773957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.30833917,2.327172961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.898519017,123.6896073,102.2068582,126.0167802,542.8672061,0,0.61837449,51.80247193,-0.61837449,128.1975281,0.969142848,0,628.3227286,126.0167802,710.7981909,4,10,13% -4/24/2018 19:00,28.95558735,144.5093557,898.9518294,898.8771374,112.4386101,815.153571,699.3287212,115.8248498,109.0481712,6.776678609,221.3517177,0,221.3517177,3.39043895,217.9612787,0.505370336,2.522164057,-0.147774907,0.147774907,0.555424687,0.125077459,4.14076096,133.1811062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.82125,2.456361478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99996722,128.0187451,107.8212172,130.4751066,699.3287212,0,0.778002568,38.92194552,-0.778002568,141.0780545,0.98573286,0,797.1725177,130.4751066,882.5658654,4,11,11% -4/24/2018 20:00,24.8465242,175.8921658,937.0116029,906.1894384,114.7021544,926.6861142,808.3790637,118.3070505,111.2434612,7.063589258,230.6480046,0,230.6480046,3.45869316,227.1893115,0.433653655,3.069897421,0.126796089,-0.126796089,0.508470281,0.122412736,4.016637836,129.1888799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9314463,2.505811421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.910040439,124.1812653,109.8414867,126.6870767,808.3790637,0,0.892064098,26.86622252,-0.892064098,153.1337775,0.993950216,0,913.3300317,126.6870767,996.2441896,4,12,9% -4/24/2018 21:00,27.43949293,208.9276546,913.6169779,901.7513507,113.3144874,975.9663808,859.1815126,116.7848682,109.8976375,6.887230693,224.9338637,0,224.9338637,3.416849881,221.5170138,0.478909497,3.646475472,0.391434076,-0.391434076,0.46321452,0.124028439,3.648794112,117.3577613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6377893,2.475496107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.643538913,112.8087441,108.2813282,115.2842402,859.1815126,0,0.952792044,17.67537855,-0.952792044,162.3246214,0.997522652,0,965.334349,115.2842402,1040.785578,4,13,8% -4/24/2018 22:00,35.25840473,232.9417844,830.4596607,884.4202062,108.2802522,956.8369549,845.5613961,111.2755588,105.0152031,6.26035571,204.6196086,0,204.6196086,3.265049117,201.3545595,0.615375251,4.065601103,0.67584939,-0.67584939,0.414576637,0.130385926,3.073256225,98.84648445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9446077,2.36551697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.226563673,95.01500066,103.1711714,97.38051763,845.5613961,0,0.956062955,17.04732151,-0.956062955,162.9526785,0.997702189,0,946.7896269,97.38051763,1010.523228,4,14,7% -4/24/2018 23:00,45.61496145,248.96165,693.5716554,849.2323006,99.55340677,867.5153213,765.735381,101.7799403,96.55150424,5.228436104,171.1663803,0,171.1663803,3.001902527,168.1644777,0.796131265,4.345200503,1.021532171,-1.021532171,0.3554614,0.143537306,2.342217729,75.3337735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.80897839,2.174868162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696928772,72.41368854,94.50590716,74.58855671,765.735381,0,0.901679529,25.62028036,-0.901679529,154.3797196,0.994547926,0,856.0664422,74.58855671,904.8831608,4,15,6% -4/24/2018 0:00,57.02416376,260.6994892,513.2116665,783.5203681,86.75305733,709.6457936,621.6398547,88.00593889,84.13713256,3.868806324,127.0500351,0,127.0500351,2.615924763,124.4341103,0.995259411,4.550064445,1.514491511,-1.514491511,0.271160388,0.169039527,1.525714421,49.07222037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.87581213,1.895228586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105374904,47.17008477,81.98118704,49.06531336,621.6398547,0,0.793393356,37.49623357,-0.793393356,142.5037664,0.986979558,0,695.5270161,49.06531336,727.6392824,4,16,5% -4/24/2018 1:00,68.79708417,270.419446,304.4035179,653.2368165,68.1460413,485.6025752,417.2166662,68.38590902,66.09118672,2.294722298,75.86101175,0,75.86101175,2.054854577,73.80615717,1.200735635,4.719709694,2.415787431,-2.415787431,0.117029708,0.223867457,0.722144567,23.22665163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.52936258,1.488735146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.52319128,22.32634101,64.05255386,23.81507616,417.2166662,0,0.638691292,50.3056985,-0.638691292,129.6943015,0.971714918,0,469.4682125,23.81507616,485.0547036,4,17,3% -4/24/2018 2:00,80.52678589,279.3915557,93.96041838,350.9037505,36.20639915,193.2363564,157.4134004,35.82295595,35.11464263,0.708313323,23.87354779,0,23.87354779,1.091756522,22.78179127,1.40545755,4.87630255,5.221595537,-5.221595537,0,0.385336717,0.27293913,8.778660657,0.266212164,1,0.189221191,0,0.940331502,0.979093465,0.724496596,1,34.01817241,0.790973884,0.040441735,0.312029739,0.891723257,0.616219853,0.961238037,0.922476074,0.18820851,8.438382536,34.20638092,9.22935642,115.5080385,0,0.448594238,63.3464726,-0.448594238,116.6535274,0.938540699,0,142.6153761,9.22935642,148.6558053,4,18,4% -4/24/2018 3:00,92.10112614,288.4584104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607467896,5.034549016,-21.34374903,21.34374903,0,#DIV/0!,0,0,1,0.685549398,0,0.046817888,0.961238037,1,0.600323261,0.875826665,0,0,0.115824807,0.17124664,0.724496596,0.448993192,0.981432946,0.942670983,0,0,0,0,0,0,0.233189888,76.51505316,-0.233189888,103.4849468,0.835582469,0,0,0,0,4,19,0% -4/24/2018 4:00,102.9584133,298.3296284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796963304,5.206834272,-2.889322768,2.889322768,0.975743017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.010878955,89.37666951,-0.010878955,90.62333049,0,0,0,0,0,4,20,0% -4/24/2018 5:00,112.7679835,309.7184662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968172603,5.40560699,-1.201440617,1.201440617,0.735612136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204636416,101.808216,0.204636416,78.19178399,0,0.805664212,0,0,0,4,21,0% -4/24/2018 6:00,120.9195434,323.3266717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110444162,5.643114981,-0.479028507,0.479028507,0.612072389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398660718,113.4944802,0.398660718,66.50551982,0,0.924580068,0,0,0,4,22,0% -4/24/2018 7:00,126.5907202,339.5450197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209424871,5.926178553,-0.010695943,0.010695943,0.531982804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557965272,123.9151993,0.557965272,56.08480075,0,0.960388688,0,0,0,4,23,0% -4/25/2018 8:00,128.915423,357.8112037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249998588,6.244983605,0.378874343,-0.378874343,0.465362361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671689351,132.197584,0.671689351,47.80241604,0,0.975560827,0,0,0,4,0,0% -4/25/2018 9:00,127.436146,16.32267365,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224180333,0.284884398,0.773726062,-0.773726062,0.39783874,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732079826,137.0610377,0.732079826,42.93896227,0,0.981701437,0,0,0,4,1,0% -4/25/2018 10:00,122.4516197,33.09782384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137183938,0.577666001,1.257559725,-1.257559725,0.315098311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735019042,137.3088252,0.735019042,42.69117485,0,0.981974551,0,0,0,4,2,0% -4/25/2018 11:00,114.7814407,47.27825454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00331406,0.825161206,1.997937633,-1.997937633,0.188486232,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680304995,132.867481,0.680304995,47.13251897,0,0.976503553,0,0,0,4,3,0% -4/25/2018 12:00,105.28304,59.10096111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837535695,1.031506362,3.59362716,-3.59362716,0,#DIV/0!,0,0,0.077824892,1,0.271404109,0,0.928736156,0.967498119,0.724496596,1,0,0,0.012838654,0.312029739,0.964237266,0.688733862,0.961238037,0.922476074,0,0,0,0,0,0,-0.571664795,124.8663988,0.571664795,55.13360125,0,0.962536157,0,0,0,4,4,0% -4/25/2018 13:00,94.61575266,69.23626796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651356408,1.208400838,12.38513035,-12.38513035,0,#DIV/0!,0,0,0.613575605,1,0.080567208,0,0.9533569,0.992118863,0.724496596,1,0,0,0.081268049,0.312029739,0.795519769,0.520016365,0.961238037,0.922476074,0,0,0,0,0,0,-0.416500472,114.613844,0.416500472,65.38615605,0,0.929952117,0,0,0,4,5,0% -4/25/2018 14:00,83.1134764,78.40154579,53.50775748,236.2236371,25.18375644,24.82773734,0,24.82773734,24.42437326,0.403364078,66.46668259,52.73372413,13.73295847,0.759383175,12.97357529,1.450603816,1.368365113,-8.19102667,8.19102667,0.069098253,0.470656174,0.204599534,6.58062432,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.47763661,0.550170525,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.148231666,6.325546402,23.62586827,6.875716927,0,52.73372413,-0.223236441,102.8991962,0.223236441,77.10080378,0,0.826022232,23.62586827,50.43494541,56.63453134,4,6,140% -4/25/2018 15:00,71.44085252,87.29684529,255.717479,606.0418139,62.8243942,62.85771329,0,62.85771329,60.93000692,1.927706372,70.24870832,6.352657656,63.89605066,1.894387282,62.00166338,1.246878097,1.523617377,-2.843768732,2.843768732,0.983533216,0.245678921,1.903761864,61.23152568,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56824023,1.372477137,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.37926899,58.85807154,59.94750922,60.23054868,0,6.352657656,-0.01048221,90.6005974,0.01048221,89.3994026,0,0,59.94750922,60.23054868,99.36719872,4,7,66% -4/25/2018 16:00,59.62768895,96.71133415,468.3424162,761.2392424,83.44700257,245.4893685,161.028038,84.46133051,80.93076755,3.530562962,116.0712761,0,116.0712761,2.516235014,113.5550411,1.040699498,1.687931205,-1.524250357,1.524250357,0.790815852,0.178175198,2.923614277,94.03348502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.79373212,1.823003702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.118148592,90.38856254,79.91188071,92.21156624,161.028038,0,0.211534074,77.78773196,-0.211534074,102.212268,0.813631461,0,210.9293585,92.21156624,271.2799843,4,8,29% -4/25/2018 17:00,48.06189439,107.7746193,657.0008971,837.3705225,97.36321145,456.8736511,357.4935494,99.38010167,94.42735139,4.952750281,162.2333341,0,162.2333341,2.935860057,159.297474,0.838838302,1.881021957,-0.879766864,0.879766864,0.680602684,0.148193422,3.60528159,115.958249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.76716188,2.127020617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.612014239,111.4634796,93.37917611,113.5905003,357.4935494,0,0.426923972,64.72749454,-0.426923972,115.2725055,0.932883128,0,426.8788769,113.5905003,501.2215875,4,9,17% -4/25/2018 18:00,37.32534277,122.4611269,805.2025001,878.0243658,106.9928135,654.9946117,545.1580697,109.8365419,103.7665854,6.069956565,198.4568966,0,198.4568966,3.226228088,195.2306685,0.651450126,2.13734987,-0.464587919,0.464587919,0.609602903,0.132876902,4.015140662,129.1407257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.74438882,2.337391267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.908955742,124.1349776,102.6533446,126.4723689,545.1580697,0,0.620891733,51.61871721,-0.620891733,128.3812828,0.969470662,0,631.1680995,126.4723689,713.9417355,4,10,13% -4/25/2018 19:00,28.64872983,144.2670526,901.7174522,898.8719096,112.8894576,817.5720948,701.2891438,116.282951,109.4854239,6.797527042,222.0358697,0,222.0358697,3.404033664,218.631836,0.500014662,2.51793507,-0.148137261,0.148137261,0.555486653,0.125193826,4.154220146,133.6139999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2415539,2.466210802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.009718354,128.434859,108.2512723,130.9010698,701.2891438,0,0.780188074,38.7222015,-0.780188074,141.2777985,0.985912889,0,799.6612778,130.9010698,885.33341,4,11,11% -4/25/2018 20:00,24.51918119,175.9474689,939.549576,906.1212551,115.1401692,928.7795257,810.0285358,118.7509899,111.6682683,7.082721571,231.2765733,0,231.2765733,3.471900924,227.8046724,0.427940442,3.070862642,0.125324586,-0.125324586,0.508721923,0.122548264,4.029552941,129.6042741,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.339787,2.5153804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919397389,124.580558,110.2591844,127.0959384,810.0285358,0,0.893951589,26.62591934,-0.893951589,153.3740807,0.99406856,0,915.4830842,127.0959384,998.664834,4,12,9% -4/25/2018 21:00,27.15710169,209.2914515,916.0075671,901.6654202,113.7432208,977.8003533,860.5816583,117.218695,110.313443,6.905251964,225.5264176,0,225.5264176,3.429777774,222.0966398,0.47398084,3.652824925,0.388860934,-0.388860934,0.463654553,0.124172796,3.661537938,117.7676466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0374774,2.484862322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652771772,113.2027414,108.6902492,115.6876037,860.5816583,0,0.954435691,17.36252976,-0.954435691,162.6374702,0.997613024,0,967.2177194,115.6876037,1042.932942,4,13,8% -4/25/2018 22:00,35.03820339,233.3636557,832.793134,884.3632793,108.7035284,958.5111947,846.8075324,111.7036623,105.4257159,6.277946417,205.1981495,0,205.1981495,3.277812454,201.9203371,0.611532013,4.072964146,0.671850202,-0.671850202,0.415260538,0.130528848,3.086149981,99.26119197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3392082,2.374763965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235905156,95.41363331,103.5751134,97.78839727,846.8075324,0,0.957533575,16.75751051,-0.957533575,163.2424895,0.99778251,0,948.5048584,97.78839727,1012.505409,4,14,7% -4/25/2018 23:00,45.43467452,249.3450847,695.940149,849.2877719,99.97622042,869.1653555,766.9574962,102.2078593,96.9615685,5.24629081,171.7533984,0,171.7533984,3.014651919,168.7387464,0.792984665,4.351892702,1.015222963,-1.015222963,0.356540338,0.143656348,2.355466024,75.75988421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.20314776,2.184105053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706527116,72.82328237,94.90967487,75.00738742,766.9574962,0,0.903059624,25.43679804,-0.903059624,154.563202,0.99463267,0,857.7506573,75.00738742,906.8414922,4,15,6% -4/25/2018 0:00,56.86311575,261.0396901,515.6970583,783.8998575,87.18515396,711.4647595,623.0210174,88.44374215,84.55619989,3.887542257,127.6656764,0,127.6656764,2.628954071,125.0367223,0.992448593,4.556002071,1.503493379,-1.503493379,0.273041179,0.169062733,1.53924446,49.50739294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.27863558,1.904668275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115177371,47.5883892,82.39381296,49.49305747,623.0210174,0,0.794771183,37.36635132,-0.794771183,142.6336487,0.987088811,0,697.3708884,49.49305747,729.7631046,4,16,5% -4/25/2018 1:00,68.64121943,270.7282187,307.0427267,654.6343484,68.62039668,487.9323788,419.0665225,68.86585631,66.55123854,2.31461777,76.51522206,0,76.51522206,2.069158142,74.44606392,1.198015282,4.725098795,2.391590478,-2.391590478,0.121167631,0.223488103,0.735067539,23.64229884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.97158188,1.49909803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53255393,22.72587692,64.50413581,24.22497495,419.0665225,0,0.640153581,50.19672739,-0.640153581,129.8032726,0.971893743,0,471.792267,24.22497495,487.6470286,4,17,3% -4/25/2018 2:00,80.3666944,279.6801222,96.47019763,356.0494638,36.88821439,196.79947,160.2963382,36.50313172,35.77589862,0.727233099,24.50263207,0,24.50263207,1.112315767,23.39031631,1.402663426,4.881338985,5.118577277,-5.118577277,0,0.38237938,0.278078942,8.943974656,0.256602067,1,0.192936605,0,0.939838978,0.978600941,0.724496596,1,34.65448667,0.805868987,0.039140242,0.312029739,0.895007541,0.619504137,0.961238037,0.922476074,0.191929774,8.59728864,34.84641645,9.403157626,119.1639665,0,0.45020806,63.24296638,-0.45020806,116.7570336,0.938940238,0,146.7342595,9.403157626,152.8884381,4,18,4% -4/25/2018 3:00,91.92553202,288.7345859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6044032,5.039369188,-23.20237115,23.20237115,0,#DIV/0!,0,0,1,0.714121771,0,0.043072387,0.961238037,1,0.609622338,0.885125742,0,0,0.115824807,0.181759533,0.724496596,0.448993192,0.980073363,0.9413114,0,0,0,0,0,0,0.235068952,76.40431271,-0.235068952,103.5956873,0.837296452,0,0,0,0,4,19,0% -4/25/2018 4:00,102.7605799,298.5966446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79351046,5.211494584,-2.92026683,2.92026683,0.970451271,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013053301,89.25207971,-0.013053301,90.74792029,0,0,0,0,0,4,20,0% -4/25/2018 5:00,112.540092,309.9722741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964195146,5.410036772,-1.205731361,1.205731361,0.736345896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202132956,101.6617163,0.202132956,78.33828372,0,0.802638061,0,0,0,4,21,0% -4/25/2018 6:00,120.6557774,323.5509328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.105840577,5.647029075,-0.477740241,0.477740241,0.611852082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395817027,113.3169397,0.395817027,66.68306034,0,0.923679007,0,0,0,4,22,0% -4/25/2018 7:00,126.2916415,339.7077298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204204961,5.92901838,-0.006946368,0.006946368,0.531341589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554793704,123.6965068,0.554793704,56.30349322,0,0.959876411,0,0,0,4,23,0% -4/26/2018 8:00,128.5931037,357.8764004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244373055,6.246121502,0.384622901,-0.384622901,0.4643793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66822488,131.9302076,0.66822488,48.0697924,0,0.97517489,0,0,0,4,0,0% -4/26/2018 9:00,127.1117707,16.28007408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218518917,0.284140895,0.782077088,-0.782077088,0.396410631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728377643,136.7505581,0.728377643,43.24944194,0,0.981354291,0,0,0,4,1,0% -4/26/2018 10:00,122.143533,32.97181473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13180681,0.575466727,1.270516554,-1.270516554,0.312882563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731150759,136.9829532,0.731150759,43.01704681,0,0.981614651,0,0,0,4,2,0% -4/26/2018 11:00,114.4974959,47.10245962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998358289,0.822093006,2.021627676,-2.021627676,0.184434996,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676353723,132.559363,0.676353723,47.44063701,0,0.976074185,0,0,0,4,3,0% -4/26/2018 12:00,105.0227026,58.89827097,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83299195,1.027968752,3.656416578,-3.656416578,0,#DIV/0!,0,0,0.086866709,1,0.266963522,0,0.929399613,0.968161576,0.724496596,1,0,0,0.014271593,0.312029739,0.960325663,0.684822259,0.961238037,0.922476074,0,0,0,0,0,0,-0.567719436,124.5913477,0.567719436,55.40865229,0,0.961928328,0,0,0,4,4,0% -4/26/2018 13:00,94.37454494,69.01704041,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647146539,1.204574595,13.07015687,-13.07015687,0,#DIV/0!,0,0,0.630310785,1,0.076361406,0,0.953806412,0.992568375,0.724496596,1,0,0,0.082970413,0.312029739,0.791796656,0.516293252,0.961238037,0.922476074,0,0,0,0,0,0,-0.412649611,114.3713882,0.412649611,65.62861176,0,0.928831826,0,0,0,4,5,0% -4/26/2018 14:00,82.88892528,78.16779925,56.66585426,245.6994056,26.2499183,25.88555755,0,25.88555755,25.45838641,0.427171145,68.49108542,53.96026111,14.53082431,0.791531889,13.73929242,1.44668466,1.364285466,-7.934536238,7.934536238,0.1129607,0.463240494,0.223783525,7.197647402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.47156937,0.573462159,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.162130402,6.918652458,24.63369977,7.492114617,0,53.96026111,-0.219619014,102.6866568,0.219619014,77.31334317,0,0.822333009,24.63369977,51.86541851,58.57857888,4,6,138% -4/26/2018 15:00,71.21990546,87.04568053,259.568908,609.1409051,63.46403745,63.50710263,0,63.50710263,61.55036256,1.956740071,69.1528407,4.303678874,64.84916182,1.913674886,62.93548694,1.243021843,1.519233725,-2.811642655,2.811642655,0.989027098,0.24449784,1.940518596,62.41374855,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.16454967,1.386450941,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.405899117,59.99446913,60.57044879,61.38092007,0,4.303678874,-0.007065162,90.4048073,0.007065162,89.5951927,0,0,60.57044879,61.38092007,100.7430334,4,7,66% -4/26/2018 16:00,59.40480969,96.43719471,471.9703001,762.3179937,83.97395188,248.6365764,163.6368375,84.99973888,81.4418274,3.557911483,116.966788,0,116.966788,2.53212448,114.4346635,1.036809521,1.683146569,-1.514367604,1.514367604,0.789125802,0.17792211,2.941129682,94.59684065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28498229,1.834515566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.130838443,90.9300814,80.41582073,92.76459697,163.6368375,0,0.214656926,77.60459928,-0.214656926,102.3954007,0.817070176,0,214.1186004,92.76459697,274.8311738,4,8,28% -4/26/2018 17:00,47.82677243,107.4730342,660.3020656,837.7636932,97.8490002,459.8764042,360.0002765,99.8761277,94.89849182,4.977635883,163.0483889,0,163.0483889,2.95050838,160.0978805,0.834734649,1.875758303,-0.876085019,0.876085019,0.679973051,0.148188239,3.620718809,116.454763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22003997,2.137633278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.623198452,111.9407478,93.84323843,114.0783811,360.0002765,0,0.429715777,64.550476,-0.429715777,115.449524,0.933644021,0,429.9553441,114.0783811,504.6173629,4,9,17% -4/26/2018 18:00,37.06359736,122.1436889,808.1782959,878.1349796,107.4555487,657.6857609,547.3780042,110.3077568,104.2153674,6.09238937,199.1923659,0,199.1923659,3.240181261,195.9521846,0.646881807,2.131809531,-0.463512437,0.463512437,0.609418985,0.132960201,4.029206066,129.5931174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1757752,2.347500294,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919146079,124.5698337,103.0949213,126.917334,547.3780042,0,0.623341533,51.43943637,-0.623341533,128.5605636,0.969787151,0,633.9350766,126.917334,716.9999334,4,10,13% -4/26/2018 19:00,28.34651787,144.0199096,904.4084219,898.8519786,113.3358462,819.9161629,703.1799979,116.736165,109.9183523,6.817812708,222.7017867,0,222.7017867,3.417493928,219.2842928,0.494740068,2.513621612,-0.148524005,0.148524005,0.55555279,0.125314895,4.167378784,134.037227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6577011,2.475962717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.019251743,128.8416809,108.6769529,131.3176436,703.1799979,0,0.782309006,38.52752531,-0.782309006,141.4724747,0.986086636,0,802.0733517,131.3176436,888.0181231,4,11,11% -4/26/2018 20:00,24.1956569,175.9997404,942.0206479,906.0410477,115.5742314,930.8035889,811.6129974,119.1905915,112.0892419,7.101349555,231.8888019,0,231.8888019,3.484989502,228.4038124,0.422293878,3.071774953,0.12384927,-0.12384927,0.508974217,0.122687578,4.042208755,130.0113285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7444429,2.524863031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928566482,124.9718342,110.6730094,127.4966973,811.6129974,0,0.895779501,26.3912696,-0.895779501,153.6087304,0.994182692,0,917.5646042,127.4966973,1001.008643,4,12,9% -4/26/2018 21:00,26.87823025,209.6548942,918.340227,901.5687708,114.1684989,979.5723962,861.9236623,117.6487339,110.7258974,6.922836539,226.1048217,0,226.1048217,3.442601478,222.6622202,0.469113615,3.659168197,0.386301235,-0.386301235,0.464092288,0.124320481,3.674064217,118.1705347,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4339442,2.494153052,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.661847018,113.5900128,109.0957913,116.0841659,861.9236623,0,0.956026529,17.05443934,-0.956026529,162.9455607,0.997700196,0,969.0371981,116.0841659,1045.011963,4,13,8% -4/26/2018 22:00,34.82093437,233.7832264,835.0782268,884.2958578,109.1238277,960.1323945,848.0038804,112.1285141,105.8333417,6.295172412,205.7648703,0,205.7648703,3.290486029,202.4743843,0.607739953,4.080287036,0.667885143,-0.667885143,0.415938603,0.130674977,3.098866688,99.67020496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7310336,2.383945927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245118366,95.80679215,103.9761519,98.19073807,848.0038804,0,0.958959462,16.47178864,-0.958959462,163.5282114,0.997860153,0,950.1654335,98.19073807,1014.429308,4,14,7% -4/26/2018 23:00,45.25651855,249.7250679,698.2697478,849.3315189,100.3964806,870.771672,768.1386634,102.6330086,97.36915633,5.263852309,172.3309089,0,172.3309089,3.027324315,169.3035846,0.789875257,4.35852466,1.0089829,-1.0089829,0.357607452,0.143778935,2.368575455,76.18152856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.59493668,2.193286161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716024854,73.22858296,95.31096153,75.42186912,768.1386634,0,0.904403812,25.25689411,-0.904403812,154.7431059,0.994714961,0,859.3899822,75.42186912,908.7520871,4,15,6% -4/26/2018 0:00,56.70355894,261.3761258,518.1524597,784.2628696,87.61496592,713.2480836,624.36898,88.87910354,84.97305143,3.90605211,128.2739773,0,128.2739773,2.641914487,125.6320628,0.989663801,4.561873981,1.492647535,-1.492647535,0.274895928,0.169091093,1.552673557,49.93931887,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.67932914,1.914058053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.124906706,48.00357283,82.80423585,49.91763088,624.36898,0,0.796122071,37.23863309,-0.796122071,142.7613669,0.987195561,0,699.1785214,49.91763088,731.8486125,4,16,5% -4/26/2018 1:00,68.48641463,271.0331314,309.6605317,655.9970154,69.09210754,490.2290974,420.8860199,69.34307746,67.00872557,2.334351889,77.164163,0,77.164163,2.083381965,75.08078104,1.195313428,4.730420525,2.367858898,-2.367858898,0.12522597,0.223122098,0.747943589,24.05643685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41133582,1.509403142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.541882584,23.12396213,64.9532184,24.63336527,420.8860199,0,0.641597462,50.08895841,-0.641597462,129.9110416,0.972069517,0,474.0836886,24.63336527,490.2057335,4,17,3% -4/26/2018 2:00,80.20738072,279.9647052,98.97762927,361.0837287,37.56358445,200.3188386,163.1417996,37.17703896,36.43090378,0.746135178,25.13095281,0,25.13095281,1.132680666,23.99827214,1.399882878,4.886305896,5.019389476,-5.019389476,0,0.379515904,0.283170166,9.107725946,0.247108406,1,0.196652581,0,0.939343331,0.978105294,0.724496596,1,35.28430984,0.820623287,0.037844045,0.312029739,0.89829175,0.622788346,0.961238037,0.922476074,0.19563308,8.754692608,35.47994292,9.575315895,122.8280896,0,0.451811551,63.14002926,-0.451811551,116.8599707,0.939334392,0,150.8565918,9.575315895,157.1234446,4,18,4% -4/26/2018 3:00,91.75069824,289.0065385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601351775,5.044115656,-25.42369128,25.42369128,0,#DIV/0!,0,0,1,0.742125875,0,0.039313126,0.961238037,1,0.619067098,0.894570502,0,0,0.115824807,0.192442158,0.724496596,0.448993192,0.978666662,0.939904699,0,0,0,0,0,0,0.236942688,76.29383471,-0.236942688,103.7061653,0.838978506,0,0,0,0,4,19,0% -4/26/2018 4:00,102.5636329,298.8590577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790073086,5.216074557,-2.952136552,2.952136552,0.965001227,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.015226129,89.12757335,-0.015226129,90.87242665,0,0,0,0,0,4,20,0% -4/26/2018 5:00,112.3134503,310.2210103,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960239503,5.414378039,-1.2101625,1.2101625,0.737103665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.199629461,101.5152918,0.199629461,78.48470822,0,0.799535967,0,0,0,4,21,0% -4/26/2018 6:00,120.3939109,323.7698115,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101270145,5.65084923,-0.47650718,0.47650718,0.611641217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.392974115,113.1396846,0.392974115,66.86031543,0,0.922765157,0,0,0,4,22,0% -4/26/2018 7:00,125.9953503,339.8654709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199033704,5.931771482,-0.003232259,0.003232259,0.530706439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551626045,123.4786381,0.551626045,56.5213619,0,0.959358885,0,0,0,4,23,0% -4/27/2018 8:00,128.2744203,357.9382592,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238810981,6.247201142,0.390343648,-0.390343648,0.463400994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664769549,131.6646483,0.664769549,48.33535173,0,0.974785965,0,0,0,4,0,0% -4/27/2018 9:00,126.7914873,16.23639833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212928916,0.28337861,0.790408794,-0.790408794,0.394985825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724691572,136.4431963,0.724691572,43.55680366,0,0.981005131,0,0,0,4,1,0% -4/27/2018 10:00,121.8395874,32.84642223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12650196,0.573278215,1.283479941,-1.283479941,0.310665693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727306821,136.661088,0.727306821,43.33891203,0,0.981253223,0,0,0,4,2,0% -4/27/2018 11:00,114.2175846,46.9280792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993472916,0.819049494,2.045444031,-2.045444031,0.180362159,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672435725,132.2553347,0.672435725,47.74466525,0,0.975643451,0,0,0,4,3,0% -4/27/2018 12:00,104.7663144,58.69723484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828517131,1.02446001,3.720296676,-3.720296676,0,#DIV/0!,0,0,0.095885429,1,0.262589086,0,0.93004913,0.968811093,0.724496596,1,0,0,0.015689208,0.312029739,0.956471711,0.680968307,0.961238037,0.922476074,0,0,0,0,0,0,-0.563816362,124.3201377,0.563816362,55.67986233,0,0.961318643,0,0,0,4,4,0% -4/27/2018 13:00,94.13728441,68.79945744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643005562,1.200777056,13.82153132,-13.82153132,0,#DIV/0!,0,0,0.64707552,1,0.072225035,0,0.954244451,0.993006414,0.724496596,1,0,0,0.084654726,0.312029739,0.788135838,0.512632434,0.961238037,0.922476074,0,0,0,0,0,0,-0.408849505,114.132583,0.408849505,65.86741704,0,0.927705612,0,0,0,4,5,0% -4/27/2018 14:00,82.66818055,77.93557363,59.81359382,254.8526847,27.29045587,26.91844807,0,26.91844807,26.46754794,0.450900136,70.38785167,55.06244541,15.32540625,0.822907936,14.50249832,1.442831937,1.360232364,-7.697547749,7.697547749,0.153488118,0.456258421,0.24335815,7.827234629,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.44161382,0.596193998,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176312151,7.523835649,25.61792597,8.120029647,0,55.06244541,-0.216055976,102.4774864,0.216055976,77.52251357,0,0.81857849,25.61792597,53.19296309,60.43165646,4,6,136% -4/27/2018 15:00,71.00314278,86.79580913,263.3420791,612.1046897,64.09203113,64.14460374,0,64.14460374,62.15941991,1.985183828,68.0547929,2.271845743,65.78294716,1.932611213,63.85033595,1.239238621,1.514872646,-2.780814589,2.780814589,0.994299008,0.243379377,1.976620762,63.57491829,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.74999877,1.400170245,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.432055013,61.11062965,61.18205378,62.5107999,0,2.271845743,-0.003711531,90.21265557,0.003711531,89.78734443,0,0,61.18205378,62.5107999,102.0941221,4,7,67% -4/27/2018 16:00,59.18638624,96.16391829,475.5129886,763.3412822,84.49374997,251.7194401,166.1888707,85.53056942,81.94595166,3.584617765,117.8414277,0,117.8414277,2.54779831,115.2936294,1.032997312,1.678376996,-1.504817971,1.504817971,0.787492719,0.177689678,2.958216813,95.14642149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.7695657,1.845871203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.143218011,91.45835941,80.91278371,93.30423061,166.1888707,0,0.217712411,77.4252927,-0.217712411,102.5747073,0.820339229,0,217.2440338,93.30423061,278.3097867,4,8,28% -4/27/2018 17:00,47.59642178,107.1714005,663.5185639,838.1267538,98.32904133,462.8044178,362.4384766,100.3659411,95.36405794,5.001883206,163.8427412,0,163.8427412,2.964983392,160.8777578,0.830714272,1.870493803,-0.87253252,0.87253252,0.679365538,0.148193354,3.63577604,116.9390554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66755984,2.148120374,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.634107365,112.406268,94.3016672,114.5543884,362.4384766,0,0.432438739,64.3775715,-0.432438739,115.6224285,0.934376686,0,432.95573,114.5543884,507.9292861,4,9,17% -4/27/2018 18:00,36.80686279,121.8242411,811.0733138,878.2259433,107.9132681,660.3000463,549.5265482,110.7734981,104.6592849,6.114213238,199.9080984,0,199.9080984,3.25398319,196.6541152,0.642400943,2.126234115,-0.462495289,0.462495289,0.609245042,0.133049955,4.042931618,130.0345783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6024855,2.357499744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.929090194,124.9941828,103.5315757,127.3516825,549.5265482,0,0.625723429,51.2646951,-0.625723429,128.7353049,0.970092492,0,636.6231542,127.3516825,719.9722834,4,10,13% -4/27/2018 19:00,28.04906446,143.7678766,907.0248874,898.8174964,113.777781,822.1857458,705.001248,117.1844979,110.3469611,6.83753673,223.349505,0,223.349505,3.430819893,219.9186851,0.489548527,2.509222805,-0.148935635,0.148935635,0.555623183,0.125440639,4.180238129,134.4508277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0696963,2.485617333,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.028568295,129.2392497,109.0982646,131.724867,705.001248,0,0.784365292,38.33798642,-0.784365292,141.6620136,0.986254191,0,804.4087001,131.724867,890.6199911,4,11,11% -4/27/2018 20:00,23.87603575,176.0487379,944.4252366,905.9489737,116.0043613,932.7586677,813.1327895,119.6258781,112.5064018,7.119476361,232.4847923,0,232.4847923,3.497959503,228.9868328,0.416715436,3.072630121,0.122369658,-0.122369658,0.509227246,0.122830645,4.054607142,130.4101033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1454328,2.534259752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937549072,125.3551517,111.0829818,127.8894115,813.1327895,0,0.89754811,26.1623742,-0.89754811,153.8376258,0.99429268,0,919.5749622,127.8894115,1003.276024,4,12,9% -4/27/2018 21:00,26.60290961,210.0176931,920.6155476,901.461583,114.5903525,981.2831892,863.2081698,118.0750194,111.1350306,6.939988868,226.66922,0,226.66922,3.455321921,223.213898,0.464308363,3.665500231,0.383754532,-0.383754532,0.4645278,0.12447145,3.686374965,118.5664907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8272186,2.503368969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.670766114,113.9706208,109.4979847,116.4739897,863.2081698,0,0.957565121,16.75124048,-0.957565121,163.2487595,0.99778423,0,970.7934839,116.4739897,1047.023381,4,13,8% -4/27/2018 22:00,34.60658624,234.2002309,837.3155925,884.2181626,109.5411868,961.7014488,849.1512943,112.5501545,106.2381159,6.31203862,206.3199304,0,206.3199304,3.303070947,203.0168595,0.603998873,4.087565139,0.663953748,-0.663953748,0.416610912,0.130824253,3.11140805,100.0735783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.120118,2.393063657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.254204541,96.19452993,104.3743225,98.58759359,849.1512943,0,0.960341384,16.19020136,-0.960341384,163.8097986,0.997935181,0,951.7722733,98.58759359,1016.295882,4,14,7% -4/27/2018 23:00,45.0804695,250.1014055,700.561054,849.3638321,100.8142253,872.3352639,769.2798343,103.0554296,97.77430447,5.281125143,172.8990592,0,172.8990592,3.039920859,169.8591384,0.786802621,4.36509299,1.002811297,-1.002811297,0.358662858,0.143904981,2.381546975,76.59873724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.98438048,2.202412314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725422676,73.62961981,95.70980316,75.83203212,769.2798343,0,0.905712965,25.08052077,-0.905712965,154.9194792,0.994794872,0,860.9854376,75.83203212,910.615986,4,15,6% -4/27/2018 0:00,56.54547364,261.7086508,520.5783077,784.6098398,88.04252946,714.9967402,625.6846787,89.31206153,85.38772236,3.924339177,128.8750449,0,128.8750449,2.654807106,126.2202378,0.986904692,4.567677637,1.481952164,-1.481952164,0.276724944,0.169124468,1.566001478,50.36799062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07792661,1.923398711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.13456274,48.41562842,83.21248935,50.33902713,625.6846787,0,0.797446893,37.11301445,-0.797446893,142.8869856,0.9872999,0,700.95091,50.33902713,733.8967964,4,16,5% -4/27/2018 1:00,68.33266148,271.334066,312.2570742,657.3257165,69.56121559,492.4936291,422.6760151,69.81761401,67.46368828,2.353925723,77.80787012,0,77.80787012,2.097527304,75.71034282,1.192629929,4.735672824,2.344583072,-2.344583072,0.12920637,0.222769062,0.760770552,24.4689961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.84866329,1.519651391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.551175676,23.52052977,65.39983896,25.04018117,422.6760151,0,0.643023701,49.98233942,-0.643023701,130.0176606,0.972242368,0,476.343369,25.04018117,492.7316667,4,17,3% -4/27/2018 2:00,80.04885331,280.2452033,101.4819437,366.0085681,38.23258232,203.7949478,165.9502052,37.84474265,37.0797289,0.765013758,25.75832558,0,25.75832558,1.15285342,24.60547216,1.397116053,4.891201511,4.9238402,-4.9238402,0,0.376742708,0.288213355,9.269932224,0.237730845,1,0.200368314,0,0.938844674,0.977606638,0.724496596,1,35.90770256,0.835238378,0.036553361,0.312029739,0.901575167,0.626071762,0.961238037,0.922476074,0.199318966,8.910611453,36.10702153,9.745849831,126.4987227,0,0.453405247,63.03762813,-0.453405247,116.9623719,0.939723376,0,154.9808283,9.745849831,161.3592921,4,18,4% -4/27/2018 3:00,91.57664824,289.2741788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59831403,5.048786861,-28.12481014,28.12481014,0,#DIV/0!,0,0,1,0.769573546,0,0.035540824,0.961238037,1,0.628656793,0.904160197,0,0,0.115824807,0.20329417,0.724496596,0.448993192,0.977211847,0.938449884,0,0,0,0,0,0,0.238811383,76.18360214,-0.238811383,103.8163979,0.840629746,0,0,0,0,4,19,0% -4/27/2018 4:00,102.3676146,299.1167912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786651923,5.220572855,-2.984968143,2.984968143,0.959386694,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017397379,89.0031533,-0.017397379,90.9968467,0,0,0,0,0,4,20,0% -4/27/2018 5:00,112.0881206,310.4646176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956306757,5.418629789,-1.214738869,1.214738869,0.737886271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.19712638,101.3689676,0.19712638,78.63103235,0,0.796355612,0,0,0,4,21,0% -4/27/2018 6:00,120.1340222,323.9832787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096734231,5.654574934,-0.475332572,0.475332572,0.611440347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.390132834,112.962765,0.390132834,67.03723502,0,0.921838524,0,0,0,4,22,0% -4/27/2018 7:00,125.7019333,340.018239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193912612,5.934437788,0.000442973,-0.000442973,0.530077937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548463533,123.2616686,0.548463533,56.73833138,0,0.958836236,0,0,0,4,23,0% -4/28/2018 8:00,127.9594613,357.9967737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.233313909,6.248222412,0.39603242,-0.39603242,0.462428157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661324942,131.4009989,0.661324942,48.59900115,0,0.974394202,0,0,0,4,0,0% -4/28/2018 9:00,126.4753875,16.19161638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207411934,0.282597017,0.798715506,-0.798715506,0.393565294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721023479,136.1390455,0.721023479,43.86095449,0,0.980654131,0,0,0,4,1,0% -4/28/2018 10:00,121.5398815,32.72160968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121271105,0.571099826,1.296441163,-1.296441163,0.308449193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723489293,136.3433195,0.723489293,43.65668053,0,0.980890477,0,0,0,4,2,0% -4/28/2018 11:00,113.9418086,46.75509171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988659715,0.816030292,2.069371359,-2.069371359,0.176270345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668553168,131.9554956,0.668553168,48.04450438,0,0.975211633,0,0,0,4,3,0% -4/28/2018 12:00,104.5139756,58.49785288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824112989,1.020980138,3.785249634,-3.785249634,0,#DIV/0!,0,0,0.104874771,1,0.25828253,0,0.930684624,0.969446587,0.724496596,1,0,0,0.017090749,0.312029739,0.952676936,0.677173531,0.961238037,0.922476074,0,0,0,0,0,0,-0.559957735,124.0528749,0.559957735,55.94712512,0,0.960707547,0,0,0,4,4,0% -4/28/2018 13:00,93.90406673,68.58353984,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638935146,1.197008583,14.64872461,-14.64872461,0,#DIV/0!,0,0,0.663857157,1,0.068159582,0,0.954671059,0.993433022,0.724496596,1,0,0,0.086320007,0.312029739,0.784538703,0.509035299,0.961238037,0.922476074,0,0,0,0,0,0,-0.405102209,113.8975322,0.405102209,66.10246777,0,0.926574358,0,0,0,4,5,0% -4/28/2018 14:00,82.45135094,77.70490887,62.94433434,263.6811755,28.30507428,27.92607284,0,27.92607284,27.45157186,0.47450098,72.1603823,56.04529727,16.11508503,0.853502424,15.2615826,1.439047547,1.356206505,-7.47810638,7.47810638,0.191014803,0.449684226,0.263254418,8.467167008,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.38749504,0.618359601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19072693,8.138962992,26.57822197,8.757322593,0,56.04529727,-0.212549482,102.2718004,0.212549482,77.72819961,0,0.814760659,26.57822197,54.42082595,62.19556414,4,6,134% -4/28/2018 15:00,70.79065001,86.54729063,267.0352906,614.9364479,64.70843725,64.77026393,0,64.77026393,62.75723911,2.013024817,66.95705011,0.26005415,66.69699597,1.951198132,64.74579783,1.235529922,1.51053518,-2.751235435,2.751235435,0.999357341,0.242321669,2.012044618,64.71427126,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.32464532,1.413636404,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.457719476,62.20581907,61.7823648,63.61945547,0,0.26005415,-0.000422896,90.02423016,0.000422896,89.97576984,0,0,61.7823648,63.61945547,103.420026,4,7,67% -4/28/2018 16:00,58.97250059,95.89158646,478.9694657,764.309923,85.00636105,254.7364545,168.6826747,86.05377977,82.44310563,3.61067415,118.6949477,0,118.6949477,2.563255426,116.1316923,1.029264303,1.673623909,-1.495595858,1.495595858,0.785915645,0.17747762,2.974873523,95.68215856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.247449,1.85706983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.155285741,91.97333026,81.40273474,93.83040009,168.6826747,0,0.220699313,77.2498897,-0.220699313,102.7501103,0.823447414,0,220.304047,93.83040009,281.7141673,4,8,28% -4/28/2018 17:00,47.3709269,106.8698221,666.6498388,838.4600103,98.80330501,465.6567821,364.8072732,100.8495089,95.82402082,5.025488079,164.6162558,0,164.6162558,2.979284192,161.6369716,0.826778644,1.865230267,-0.869108798,0.869108798,0.678780047,0.148208699,3.650452418,117.4110981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.10969366,2.158481255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.644740351,112.8600135,94.75443401,115.0184947,364.8072732,0,0.435092036,64.20884957,-0.435092036,115.7911504,0.935081785,0,435.8790704,115.0184947,511.1563748,4,9,17% -4/28/2018 18:00,36.55523572,121.5028816,813.8874067,878.2974381,108.3659608,662.8370437,551.6032894,111.2337543,105.0983273,6.135427059,200.6040582,0,200.6040582,3.267633546,197.3364246,0.638009222,2.120625335,-0.461536809,0.461536809,0.609081132,0.133146133,4.056317762,130.4651227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0245098,2.367389381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93878841,125.4080384,103.9632982,127.7754278,551.6032894,0,0.628037001,51.0945559,-0.628037001,128.9054441,0.970386856,0,639.2318802,127.7754278,722.8583422,4,10,13% -4/28/2018 19:00,27.75648068,143.5109098,909.5670457,898.7686171,114.2152696,824.3808633,706.7529049,117.6279584,110.7712579,6.856700593,223.9790726,0,223.9790726,3.444011789,220.5350608,0.484441977,2.504737888,-0.149372637,0.149372637,0.555697915,0.125571029,4.192799628,134.8548487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4775464,2.495174817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.037669058,129.62761,109.5152155,132.1227848,706.7529049,0,0.786356901,38.15365021,-0.786356901,141.8463498,0.98641564,0,806.6673348,132.1227848,893.139055,4,11,11% -4/28/2018 20:00,23.56040037,176.094211,946.7638027,905.8451929,116.4305812,934.6451706,814.5882955,120.056875,112.9197696,7.137105459,233.0646568,0,233.0646568,3.510811606,229.5538452,0.41120656,3.073423775,0.120885283,-0.120885283,0.509481089,0.122977432,4.066750132,130.8006636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5427776,2.543571057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946346627,125.7305731,111.4891243,128.2741442,814.5882955,0,0.899257734,25.93932943,-0.899257734,154.0606706,0.994398588,0,921.5145749,128.2741442,1005.467437,4,12,9% -4/28/2018 21:00,26.33116732,210.3795489,922.8341549,901.3440394,115.0088145,982.9334502,864.4358621,118.4975881,111.5408744,6.956713666,227.2197651,0,227.2197651,3.467940095,223.751825,0.459565566,3.671815807,0.381220396,-0.381220396,0.464961162,0.124625659,3.698472332,118.9555836,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2173312,2.512510794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679530615,114.3446317,109.8968618,116.8571425,864.4358621,0,0.959052065,16.45306606,-0.959052065,163.5469339,0.997865187,0,972.487315,116.8571425,1048.967978,4,13,8% -4/28/2018 22:00,34.39514448,234.6144018,839.5059125,884.1304161,109.9556441,963.2192827,850.2506567,112.968626,106.6400758,6.328550177,206.8634963,0,206.8634963,3.315568364,203.5479279,0.600308518,4.094793784,0.660055576,-0.660055576,0.417277538,0.130976617,3.123775878,100.4713702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5064971,2.402117993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.26316499,96.57690261,104.7696621,98.9790206,850.2506567,0,0.961680134,15.9127893,-0.961680134,164.0872107,0.998007661,0,953.3263308,98.9790206,1018.10612,4,14,7% -4/28/2018 23:00,44.90650149,250.4739048,702.8146907,849.3850014,101.2294936,873.857146,770.3819811,103.4751649,98.17705091,5.298114009,173.4580014,0,173.4580014,3.05244273,170.4055587,0.783766306,4.371594329,0.996707506,-0.996707506,0.359706668,0.144034402,2.394381617,77.01154343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.37151568,2.211484367,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.734721331,74.02642482,96.10623701,76.23790919,770.3819811,0,0.906987973,24.90762511,-0.906987973,155.0923749,0.994872477,0,862.5380671,76.23790919,912.4342539,4,15,6% -4/28/2018 0:00,56.38883925,262.0371213,522.975053,784.9411984,88.4678816,716.7117163,626.9690609,89.74265542,85.80024856,3.942406855,129.4689894,0,129.4689894,2.667633042,126.8013564,0.984170906,4.573410529,1.471405535,-1.471405535,0.278528524,0.169162718,1.579228048,50.79340259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.47446249,1.932691058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144145345,48.82455059,83.61860783,50.75724164,626.9690609,0,0.798746533,36.98942876,-0.798746533,143.0105712,0.987401919,0,702.6890618,50.75724164,735.9086613,4,16,5% -4/28/2018 1:00,68.17995132,271.6309064,314.8325049,658.6213281,70.02776231,494.7268737,424.4373664,70.28950731,67.9161669,2.373340408,78.44638122,0,78.44638122,2.111595409,76.33478581,1.189964634,4.740853668,2.321753782,-2.321753782,0.133110409,0.222428629,0.773546332,24.87990909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.28360294,1.529843685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.560431684,23.91551497,65.84403463,25.44535866,424.4373664,0,0.644433073,49.87681748,-0.644433073,130.1231825,0.972412424,0,478.5722029,25.44535866,495.2256812,4,17,3% -4/28/2018 2:00,79.89112043,280.5215168,103.9824064,370.8260177,38.89528334,207.228322,168.7220117,38.50631034,37.72244704,0.783863302,26.3845746,0,26.3845746,1.172836301,25.2117383,1.394363095,4.896024091,4.831750805,-4.831750805,0,0.374056388,0.293209075,9.43061176,0.228469096,1,0.204082961,0,0.938343129,0.977105093,0.724496596,1,36.52472849,0.849715908,0.035268415,0.312029739,0.904857042,0.629353638,0.961238037,0.922476074,0.202987954,9.065062735,36.72771644,9.914778643,130.1742461,0,0.454989681,62.93572968,-0.454989681,117.0642703,0.940107398,0,159.1054882,9.914778643,165.5945125,4,18,4% -4/28/2018 3:00,91.40340547,289.5374194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595290373,5.053381277,-31.47927297,31.47927297,0,#DIV/0!,0,0,1,0.79647604,0,0.031756255,0.961238037,1,0.638390448,0.913893852,0,0,0.115824807,0.214314858,0.724496596,0.448993192,0.975707972,0.936946009,0,0,0,0,0,0,0.240675319,76.07359835,-0.240675319,103.9264016,0.842251236,0,0,0,0,4,19,0% -4/28/2018 4:00,102.1725677,299.3697709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783247712,5.224988183,-3.018799126,3.018799126,0.953601256,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.019566982,88.87882298,-0.019566982,91.12117702,0,0,0,0,0,4,20,0% -4/28/2018 5:00,111.8641644,310.7030411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952397983,5.422791063,-1.219465311,1.219465311,0.73869454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.194624171,101.2227696,0.194624171,78.77723043,0,0.793094603,0,0,0,4,21,0% -4/28/2018 6:00,119.8761887,324.1913069,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092234188,5.658205711,-0.474219689,0.474219689,0.611250033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387294042,112.7862313,0.387294042,67.21376874,0,0.920899124,0,0,0,4,22,0% -4/28/2018 7:00,125.4114759,340.1660316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188843174,5.937017255,0.004075863,-0.004075863,0.529456676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545307411,123.0456735,0.545307411,56.95432647,0,0.9583086,0,0,0,4,23,0% -4/29/2018 8:00,127.6483134,358.0519386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227883354,6.249185221,0.401684956,-0.401684956,0.461461517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657892643,131.1393511,0.657892643,48.86064886,0,0.973999758,0,0,0,4,0,0% -4/29/2018 9:00,126.1635616,16.14570012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201969546,0.281795627,0.80699138,-0.80699138,0.392150036,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717375223,135.838197,0.717375223,44.16180302,0,0.980301468,0,0,0,4,1,0% -4/29/2018 10:00,121.2445116,32.59734245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116115927,0.568930953,1.309391144,-1.309391144,0.306234616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719700225,136.029736,0.719700225,43.97026401,0,0.98052663,0,0,0,4,2,0% -4/29/2018 11:00,113.6702672,46.58347712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983920424,0.813035053,2.093393339,-2.093393339,0.172162345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664708194,131.6599427,0.664708194,48.34005727,0,0.974779023,0,0,0,4,3,0% -4/29/2018 12:00,104.2657842,58.30012638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819781231,1.01752916,3.851253471,-3.851253471,0,#DIV/0!,0,0,0.113828265,1,0.254045553,0,0.931306019,0.970067982,0.724496596,1,0,0,0.018475464,0.312029739,0.948942838,0.673439434,0.961238037,0.922476074,0,0,0,0,0,0,-0.556145685,123.789663,0.556145685,56.21033695,0,0.9600955,0,0,0,4,4,0% -4/29/2018 13:00,93.67498494,68.3693095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634936914,1.193269558,15.56306077,-15.56306077,0,#DIV/0!,0,0,0.68064244,1,0.064166502,0,0.955086281,0.993848244,0.724496596,1,0,0,0.087965275,0.312029739,0.781006604,0.5055032,0.961238037,0.922476074,0,0,0,0,0,0,-0.401409736,113.6663375,0.401409736,66.33366246,0,0.925438995,0,0,0,4,5,0% -4/29/2018 14:00,82.23854041,77.47584613,66.05189072,272.184478,29.29361967,28.90823601,0,28.90823601,28.41030895,0.497927053,73.81256825,56.91421191,16.89835634,0.883310715,16.01504563,1.435333302,1.352208606,-7.274513607,7.274513607,0.225831217,0.443494037,0.283405368,9.115290822,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.3090696,0.639955606,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205326224,8.761964255,27.51439583,9.401919861,0,56.91421191,-0.209101608,102.0697094,0.209101608,77.93029064,0,0.8108818,27.51439583,55.55261847,63.87247356,4,6,132% -4/29/2018 15:00,70.58250967,86.30018624,270.6469245,617.6393368,65.31331487,67.11303804,1.728909759,65.38412829,63.34387745,2.040250839,67.59091772,0,67.59091772,1.969437424,65.62148029,1.231897188,1.506222395,-2.722858975,2.722858975,0.995789998,0.241322952,2.033734213,65.4118832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8885444,1.426850709,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.473433514,62.87639019,62.36197792,64.3032409,1.728909759,0,0.002799222,89.83961617,-0.002799222,90.16038383,0,0,62.36197792,64.3032409,104.447163,4,7,67% -4/29/2018 16:00,58.76323146,95.62028348,482.3387828,765.2247127,85.51175195,257.6861834,171.1168528,86.56933061,82.93325713,3.636073485,119.527117,0,119.527117,2.578494826,116.9486222,1.025611868,1.668888778,-1.486695849,1.486695849,0.784393653,0.177285665,2.991097927,96.20399117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.71860127,1.868110724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.167040266,92.47493561,81.88564154,94.34304634,171.1168528,0,0.223616475,77.07846475,-0.223616475,102.9215352,0.826402879,0,223.2971013,94.34304634,285.0427383,4,8,28% -4/29/2018 17:00,47.15036872,106.5684075,669.6953987,838.7637673,99.27176452,468.4326519,367.1058505,101.3268013,96.27835454,5.048446796,165.3688129,0,165.3688129,2.993409974,162.3754029,0.822929178,1.859969589,-0.865813272,0.865813272,0.678216479,0.148234204,3.664747312,117.870871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.54641651,2.168715336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.655096952,113.3019647,95.20151347,115.47068,367.1058505,0,0.437674903,64.04437535,-0.437674903,115.9556247,0.935759956,0,438.7244681,115.47068,514.2977188,4,9,17% -4/29/2018 18:00,36.30880945,121.1797177,816.6204817,878.3496471,108.8136189,665.2963896,553.6078726,111.688517,105.5324868,6.156030133,201.2802224,0,201.2802224,3.28113209,197.9990903,0.633708272,2.114985061,-0.460637295,0.460637295,0.608927306,0.133248702,4.069365138,130.8847712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4418405,2.37716903,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.94824119,125.8114205,104.3900817,128.1885895,553.6078726,0,0.630281887,50.92907732,-0.630281887,129.0709227,0.970670416,0,641.7608656,128.1885895,725.6577336,4,10,13% -4/29/2018 19:00,27.46887577,143.2489763,912.0351391,898.7054965,114.6483221,826.5015888,708.4350305,118.0665583,111.1912521,6.875306124,224.5905486,0,224.5905486,3.457069917,221.1334787,0.479422324,2.500166287,-0.149835453,0.149835453,0.555777061,0.125706036,4.205064872,135.2493411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8812609,2.504635387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046555185,130.0068111,109.9278161,132.5114465,708.4350305,0,0.788283852,37.97457723,-0.788283852,142.0254228,0.986571072,0,808.8493233,132.5114465,895.5754148,4,11,11% -4/29/2018 20:00,23.24883246,176.1359048,949.0368405,905.7298659,116.8529156,936.4635502,815.9799406,120.4836096,113.329369,7.154240579,233.6285161,0,233.6285161,3.523546545,230.1049696,0.405768674,3.074151469,0.119395719,-0.119395719,0.509735819,0.123127902,4.078639847,131.1830777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9365002,2.552797477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.954960685,126.0981641,111.8914609,128.6509616,815.9799406,0,0.900908727,25.72222635,-0.900908727,154.2777736,0.994500482,0,923.3839052,128.6509616,1007.583387,4,12,9% -4/29/2018 21:00,26.06302883,210.7401549,924.996696,901.2163223,115.423919,984.5239289,865.6074511,118.9164778,111.943462,6.973015815,227.7566152,0,227.7566152,3.480457027,224.2761582,0.454885666,3.678109569,0.378698443,-0.378698443,0.465392442,0.124783061,3.710358515,119.3378841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6043136,2.521579268,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.688142113,114.7121134,110.2924558,117.2336927,865.6074511,0,0.960487987,16.16004886,-0.960487987,163.8399511,0.997943128,0,974.1194633,117.2336927,1050.84657,4,13,8% -4/29/2018 22:00,34.18659312,235.0254705,841.6498774,884.0328379,110.3672384,964.6868393,851.302868,113.3839713,107.039259,6.34471229,207.3957365,0,207.3957365,3.32797945,204.0677571,0.59666861,4.101968286,0.656190244,-0.656190244,0.417938549,0.131132008,3.135971985,100.8636389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8902072,2.411109783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.272001028,96.95396621,105.1622082,99.365076,851.302868,0,0.962976523,15.63958942,-0.962976523,164.3604106,0.998077654,0,954.8285777,99.365076,1019.861033,4,14,7% -4/29/2018 23:00,44.73458841,250.8423745,705.0312782,849.39531,101.6423245,875.3383361,771.4460791,103.8922569,98.57743336,5.314823581,174.0078871,0,174.0078871,3.064891103,170.942996,0.780765857,4.378025339,0.990670962,-0.990670962,0.360738977,0.144167114,2.407080379,77.41997927,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.75637852,2.220503171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743921541,74.41902889,96.50030006,76.63953206,771.4460791,0,0.908229737,24.7381507,-0.908229737,155.2618493,0.99494785,0,864.0489177,76.63953206,914.2079586,4,15,6% -4/29/2018 0:00,56.2336358,262.3613955,525.3431333,785.2573587,88.89105807,718.3939858,628.2230627,90.17092314,86.2106647,3.960258444,130.0559182,0,130.0559182,2.680393374,127.3755249,0.981462095,4.579070181,1.461006076,-1.461006076,0.280306936,0.16920571,1.59235304,51.21554744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86897009,1.941935875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153654357,49.23033228,84.02262445,51.17226815,628.2230627,0,0.800021873,36.8678089,-0.800021873,143.1321911,0.987501709,0,704.3939723,51.17226815,737.8851984,4,16,5% -4/29/2018 1:00,68.02827662,271.9235384,317.3869558,659.8846812,70.49178599,496.9297004,426.1709049,70.75879549,68.36619856,2.392596937,79.07972944,0,79.07972944,2.125587435,76.954142,1.187317411,4.745961059,2.299362372,-2.299362372,0.136939566,0.222100451,0.786268789,25.28910703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71619049,1.539980861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.569649061,24.3088516,66.28583955,25.84883246,426.1709049,0,0.645826335,49.77234049,-0.645826335,130.2276595,0.972579806,0,480.7710557,25.84883246,497.6885995,4,17,4% -4/29/2018 2:00,79.73419163,280.7935481,106.478291,375.5380614,39.55175904,210.6194791,171.4576732,39.16180591,38.35912757,0.802678334,27.00952588,0,27.00952588,1.192631465,25.81689441,1.39162417,4.900771932,4.742955518,-4.742955518,0,0.371453736,0.298157866,9.589781893,0.219322989,1,0.207795622,0,0.937838829,0.976600792,0.724496596,1,37.13544847,0.864057437,0.033989447,0.312029739,0.908136578,0.632633174,0.961238037,0.922476074,0.206640517,9.21806312,37.34208899,10.08212056,133.8530639,0,0.456565368,62.83430193,-0.456565368,117.1656981,0.940486656,0,163.2291095,10.08212056,169.8276558,4,18,4% -4/29/2018 3:00,91.23099491,289.796175,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592281241,5.057897414,-35.75569464,35.75569464,0,#DIV/0!,0,0,1,0.822843846,0,0.027960284,0.961238037,1,0.64826676,0.923770165,0,0,0.115824807,0.225503031,0.724496596,0.448993192,0.974154168,0.935392205,0,0,0,0,0,0,0.242534745,75.96380849,-0.242534745,104.0361915,0.843843971,0,0,0,0,4,19,0% -4/29/2018 4:00,101.978536,299.6179249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77986122,5.229319288,-3.053667992,3.053667992,0.947638328,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021734832,88.75458779,-0.021734832,91.24541221,0,0,0,0,0,4,20,0% -4/29/2018 5:00,111.6416444,310.9362286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948514278,5.426860952,-1.224346572,1.224346572,0.739529285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192123328,101.0767252,0.192123328,78.92327478,0,0.789750501,0,0,0,4,21,0% -4/29/2018 6:00,119.6204886,324.3938717,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087771378,5.661741135,-0.473171784,0.473171784,0.61107083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.384458631,112.6101355,0.384458631,67.38986447,0,0.919946996,0,0,0,4,22,0% -4/29/2018 7:00,125.1240634,340.3088485,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183826879,5.93950988,0.007662916,-0.007662916,0.528843254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542158949,122.8307291,0.542158949,57.16927089,0,0.957776123,0,0,0,4,23,0% -4/30/2018 8:00,127.3410628,358.1037512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222520819,6.250089523,0.407296921,-0.407296921,0.460501814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654474254,130.8797971,0.654474254,49.12020288,0,0.973602801,0,0,0,4,0,0% -4/30/2018 9:00,125.8560986,16.09862498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196603303,0.280974011,0.815230419,-0.815230419,0.390741077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713748669,135.5407417,0.713748669,44.45925832,0,0.97994733,0,0,0,4,1,0% -4/30/2018 10:00,120.953572,32.47358956,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111038073,0.566771058,1.322320466,-1.322320466,0.304023572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715941659,135.7204248,0.715941659,44.27957522,0,0.980161907,0,0,0,4,2,0% -4/30/2018 11:00,113.4030576,46.41321853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979256737,0.81006348,2.117492673,-2.117492673,0.168041116,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660902923,131.3687712,0.660902923,48.63122876,0,0.974345924,0,0,0,4,3,0% -4/30/2018 12:00,104.0218352,58.10405929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815523518,1.014107143,3.918281789,-3.918281789,0,#DIV/0!,0,0,0.122739268,1,0.249879817,0,0.93191325,0.970675214,0.724496596,1,0,0,0.019842601,0.312029739,0.945270893,0.669767489,0.961238037,0.922476074,0,0,0,0,0,0,-0.552382308,123.5306033,0.552382308,56.46939675,0,0.959482981,0,0,0,4,4,0% -4/30/2018 13:00,93.45012916,68.15679073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63101244,1.189560406,16.57819149,-16.57819149,0,#DIV/0!,0,0,0.697417521,1,0.060247211,0,0.955490169,0.994252132,0.724496596,1,0,0,0.089589546,0.312029739,0.777540849,0.502037445,0.961238037,0.922476074,0,0,0,0,0,0,-0.397774055,113.4390975,0.397774055,66.56090255,0,0.9243005,0,0,0,4,5,0% -4/30/2018 14:00,82.02984801,77.24842915,69.13050896,280.3637601,30.25605336,29.8648567,0,29.8648567,29.34372172,0.521134977,75.34867033,57.67484643,17.6738239,0.912331642,16.76149226,1.431690933,1.348239431,-7.085286584,7.085286584,0.258190944,0.437665711,0.3037463,9.769525136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.20630146,0.660981169,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.220063161,9.390839163,28.42636462,10.05182033,0,57.67484643,-0.205714342,101.8713191,0.205714342,78.12868086,0,0.806944511,28.42636462,56.59222108,65.46484147,4,6,130% -4/30/2018 15:00,70.37880084,86.05456024,274.1754527,620.2164008,65.90672112,69.67861493,3.692374241,65.98624069,63.91939031,2.066850374,68.46434361,0,68.46434361,1.987330812,66.4770128,1.228341798,1.501935413,-2.695641602,2.695641602,0.991135553,0.240381553,2.052933036,66.02938335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.44174926,1.439814408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487342996,63.46995483,62.92909226,64.90976924,3.692374241,0,0.005953364,89.65889533,-0.005953364,90.34110467,0,0,62.92909226,64.90976924,105.411238,4,7,68% -4/30/2018 16:00,58.55865395,95.35009778,485.6200646,766.0864323,86.00989261,260.567269,173.4900828,87.07718618,83.41637701,3.660809174,120.3377226,0,120.3377226,2.593515605,117.744207,1.022041317,1.664173148,-1.478112666,1.478112666,0.782925843,0.177113548,3.00688841,96.71186738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.18299447,1.878993227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178480417,92.96312554,82.36147489,94.84211877,173.4900828,0,0.226462806,76.91108869,-0.226462806,103.0889113,0.829213192,0,226.2217402,94.84211877,288.2940101,4,8,27% -4/30/2018 17:00,46.93482433,106.2672719,672.6548173,839.0383289,99.73439646,471.1312545,369.3334619,101.7977926,96.72703643,5.070756143,166.1003082,0,166.1003082,3.007360034,163.0929482,0.819167218,1.854713782,-0.862645317,0.862645317,0.677674727,0.148269802,3.678660322,118.3183613,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.97770661,2.178822107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66517688,113.7321093,95.64288349,115.9109314,369.3334619,0,0.440186639,63.88420996,-0.440186639,116.11579,0.936411818,0,441.4911021,115.9109314,517.3524885,4,9,17% -4/30/2018 18:00,36.06767367,120.8548682,819.2725008,878.3827547,109.2562372,667.6777872,555.5400064,112.1377808,105.9617586,6.176022173,201.9365817,0,201.9365817,3.294478666,198.642103,0.629499659,2.109315367,-0.459796984,0.459796984,0.608783605,0.133357628,4.082074558,131.2935498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8544728,2.386838578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957449122,126.2043541,104.8119219,128.5911927,555.5400064,0,0.632457779,50.76831329,-0.632457779,129.2316867,0.970943339,0,644.2097909,128.5911927,728.3701547,4,10,13% -4/30/2018 19:00,27.18635714,142.9820574,914.4294513,898.6282915,115.0769505,828.5480526,710.0477413,118.5003113,111.6069558,6.89335546,225.184002,0,225.184002,3.469994645,221.7140074,0.474491444,2.495507672,-0.150324463,0.150324463,0.555860687,0.12584563,4.217035561,135.6343596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2808511,2.513999308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.055227908,130.3769055,110.336079,132.8909049,710.0477413,0,0.790146213,37.80082259,-0.790146213,142.1991774,0.986720572,0,810.9547928,132.8909049,897.9292322,4,11,11% -4/30/2018 20:00,22.94141351,176.1735632,951.2448705,905.6031531,117.2713901,938.2143025,817.3081918,120.9061106,113.735225,7.170885641,234.1764971,0,234.1764971,3.536165096,230.640332,0.400403201,3.074808732,0.11790061,-0.11790061,0.509991498,0.123282021,4.09027845,131.5574152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3266244,2.561939575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.963392813,126.4579915,112.2900172,129.0199311,817.3081918,0,0.902501486,25.51115021,-0.902501486,154.4888498,0.994598429,0,925.183461,129.0199311,1009.624425,4,12,9% -4/30/2018 21:00,25.79851868,211.0991981,927.1038279,901.0786114,115.8357005,986.0554015,866.7236745,119.331727,112.3428267,6.988900265,228.2799305,0,228.2799305,3.492873758,224.7870567,0.450269093,3.684376056,0.376188367,-0.376188367,0.46582169,0.124943611,3.722035683,119.713462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9881982,2.530575147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696602182,115.0731332,110.6848004,117.6037083,866.7236745,0,0.961873541,15.87232171,-0.961873541,164.1276783,0.998018115,0,975.690728,117.6037083,1052.660003,4,13,8% -4/30/2018 22:00,33.98091607,235.4331681,843.7481707,883.9256416,110.7760079,966.1050689,852.3088362,113.7962327,107.4357026,6.360530111,207.9168179,0,207.9168179,3.340305359,204.5765126,0.593078868,4.109083952,0.652357462,-0.652357462,0.418593993,0.131290368,3.147998099,101.25044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2712838,2.420039862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280713907,97.32577421,105.5519977,99.74581408,852.3088362,0,0.964231374,15.37063609,-0.964231374,164.6293639,0.998145226,0,956.2799937,99.74581408,1021.561634,4,14,7% -4/30/2018 23:00,44.56470536,251.2066252,707.2114141,849.3950284,102.0527551,876.7798388,772.4730925,104.3067463,98.97548797,5.331258367,174.5488623,0,174.5488623,3.0772671,171.4715952,0.777800839,4.384382712,0.98470123,-0.98470123,0.361759862,0.144303037,2.419644134,77.82407283,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.13900375,2.229469538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753023938,74.80745898,96.89202769,77.03692852,772.4730925,0,0.90943915,24.5720391,-0.90943915,155.4279609,0.99502106,0,865.5190234,77.03692852,915.9381524,4,15,6% -4/30/2018 0:00,56.0798453,262.6813333,527.6829514,785.5587081,89.31209164,720.0444891,629.4475896,90.59689954,86.61900255,3.977896982,130.63593,0,130.63593,2.69308909,127.9428409,0.978777944,4.584654149,1.450752438,-1.450752438,0.282060411,0.16925332,1.605376077,51.63441308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.26147997,1.951133878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.163089503,49.63296186,84.42456947,51.58409574,629.4475896,0,0.801273773,36.7480886,-0.801273773,143.2519114,0.987599355,0,706.0666031,51.58409574,739.8273621,4,16,5% -4/30/2018 1:00,67.87763226,272.2118494,319.9205164,661.1165443,70.95331937,499.1029224,427.8774114,71.22551099,68.813815,2.411695988,79.70793748,0,79.70793748,2.139504369,77.56843311,1.184688171,4.750993034,2.27740085,-2.27740085,0.140695207,0.221784211,0.798935656,25.69651702,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14645644,1.550063632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.578826163,24.70046957,66.7252826,26.2505332,427.8774114,0,0.647204211,49.66885848,-0.647204211,130.3311415,0.972744631,0,482.9407374,26.2505332,500.1211864,4,17,4% -4/30/2018 2:00,79.57807898,281.0612012,108.9688559,380.1465832,40.20207224,213.9688945,174.1576098,39.8112847,38.98983143,0.821453264,27.63300152,0,27.63300152,1.212240808,26.42076071,1.388899491,4.905443361,4.65730086,-4.65730086,0,0.368931764,0.303060202,9.747457858,0.210292519,1,0.211505305,0,0.93733192,0.976093883,0.724496596,1,37.73991616,0.878264339,0.032716725,0.312029739,0.911412899,0.635909495,0.961238037,0.922476074,0.210277048,9.369627256,37.95019321,10.24789159,137.5335673,0,0.458132777,62.7333155,-0.458132777,117.2666845,0.940861334,0,167.3502089,10.24789159,174.057249,4,18,4% -4/30/2018 3:00,91.05944423,290.0503625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589287117,5.062333822,-41.39314194,41.39314194,0,#DIV/0!,0,0,1,0.848686551,0,0.024153893,0.961238037,1,0.658284013,0.933787417,0,0,0.115824807,0.236856901,0.724496596,0.448993192,0.972549663,0.9337877,0,0,0,0,0,0,0.244389861,75.85422072,-0.244389861,104.1457793,0.845408861,0,0,0,0,4,19,0% -4/30/2018 4:00,101.7855658,299.8611841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776493255,5.233564962,-3.089613857,3.089613857,0.941491223,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02390077,88.63045632,-0.02390077,91.36954368,0,0,0,0,0,4,20,0% -4/30/2018 5:00,111.4206256,311.1641308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944656772,5.430838597,-1.229387199,1.229387199,0.740391283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.1896244,100.9308654,0.1896244,79.06913457,0,0.786320853,0,0,0,4,21,0% -4/30/2018 6:00,119.3670011,324.590952,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083347187,5.665180835,-0.472192047,0.472192047,0.610903285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381627541,112.4345328,0.381627541,67.56546723,0,0.918982202,0,0,0,4,22,0% -4/30/2018 7:00,124.8397818,340.4466928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178865229,5.941915716,0.011200631,-0.011200631,0.528238269,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539019454,122.6169138,0.539019454,57.38308622,0,0.95723897,0,0,0,4,23,0% -5/1/2018 8:00,127.0377956,358.1522128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.217227808,6.250935337,0.412863919,-0.412863919,0.459549801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651071403,130.6224299,0.651071403,49.37757013,0,0.973203508,0,0,0,5,0,0% -5/1/2018 9:00,125.5530864,16.05037104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191314744,0.280131821,0.823426482,-0.823426482,0.389339468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710145696,135.2467708,0.710145696,44.75322924,0,0.979591913,0,0,0,5,1,0% -5/1/2018 10:00,120.6671554,32.35032484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106039161,0.564619683,1.33521938,-1.33521938,0.301817728,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712215634,135.4154726,0.712215634,44.58452744,0,0.979796543,0,0,0,5,2,0% -5/1/2018 11:00,113.1402745,46.24430329,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974670306,0.807115353,2.141651082,-2.141651082,0.163909785,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657139456,131.0820746,0.657139456,48.91792539,0,0.97391265,0,0,0,5,3,0% -5/1/2018 12:00,103.7822209,57.90965927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81134146,1.010714223,3.986303505,-3.986303505,0,#DIV/0!,0,0,0.131600973,1,0.245786944,0,0.932506263,0.971268226,0.724496596,1,0,0,0.021191411,0.312029739,0.941662544,0.66615914,0.961238037,0.922476074,0,0,0,0,0,0,-0.548669661,123.275794,0.548669661,56.72420603,0,0.958870485,0,0,0,5,4,0% -5/1/2018 13:00,93.22958637,67.94601129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627163242,1.185881611,17.71072386,-17.71072386,0,#DIV/0!,0,0,0.71416799,1,0.056403078,0,0.955882783,0.994644747,0.724496596,1,0,0,0.09119184,0.312029739,0.7741427,0.498639296,0.961238037,0.922476074,0,0,0,0,0,0,-0.39419708,113.2159074,0.39419708,66.78409258,0,0.923159893,0,0,0,5,5,0% -5/1/2018 14:00,81.82536781,77.02270518,72.1748412,288.2214712,31.19243003,30.79594761,0,30.79594761,30.25186317,0.54408444,76.77321752,58.33302481,18.44019271,0.940566853,17.49962586,1.42812208,1.344299804,-6.909125056,6.909125056,0.288316339,0.432178714,0.324214949,10.42786725,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.07924157,0.681437483,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234892627,10.02366264,29.31413419,10.70510013,0,58.33302481,-0.202389588,101.6767305,0.202389588,78.32326947,0,0.802951718,29.31413419,57.54370262,66.97533668,5,6,128% -5/1/2018 15:00,70.17959884,85.81048094,277.6194409,622.6705797,66.48871192,72.20442975,5.627785206,66.57664455,64.48383194,2.092812613,69.3169276,0,69.3169276,2.004879982,67.31204762,1.224865067,1.497675425,-2.669542089,2.669542089,0.986672274,0.239495879,2.071600302,66.62978678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.98431202,1.452528722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500867367,64.04708544,63.48517938,65.49961417,5.627785206,0,0.009038142,89.48214555,-0.009038142,90.51785445,0,0,63.48517938,65.49961417,106.3533669,5,7,68% -5/1/2018 16:00,58.35883911,95.08112301,488.8125133,766.8958494,86.5007564,263.378438,175.8011234,87.57731465,83.89243945,3.6848752,121.1265701,0,121.1265701,2.608316959,118.5182531,1.01855389,1.659478653,-1.469841135,1.469841135,0.781511328,0.176961011,3.022243637,97.20574426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.6406038,1.889716758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189605227,93.43785878,82.83020903,95.32757554,175.8011234,0,0.229237286,76.74782823,-0.229237286,103.2521718,0.831885396,0,229.0765961,95.32757554,291.4665877,5,8,27% -5/1/2018 17:00,46.72436664,105.9665384,675.5277361,839.2839998,100.191181,473.7518966,371.489436,102.2624606,97.17004722,5.092413419,166.8106544,0,166.8106544,3.021133773,163.7895206,0.815494039,1.849464991,-0.859604247,0.859604247,0.677154673,0.148315422,3.692191276,118.7535632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.40354543,2.188801134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67498001,114.150442,96.07852544,116.3392431,371.489436,0,0.442626615,63.72841001,-0.442626615,116.27159,0.937037972,0,444.1782333,116.3392431,520.3199411,5,9,17% -5/1/2018 18:00,35.83191422,120.5284649,821.843481,878.3969474,109.6938136,669.9810113,557.3994676,112.5815437,106.3861404,6.195403308,202.5731402,0,202.5731402,3.307673206,199.265467,0.62538488,2.103618554,-0.459016032,0.459016032,0.608650054,0.133472877,4.094446991,131.6914898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2624047,2.396397978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.966412907,126.5868691,105.2288176,128.9832671,557.3994676,0,0.634564441,50.61231267,-0.634564441,129.3876873,0.971205796,0,646.5784113,128.9832671,730.9953799,5,10,13% -5/1/2018 19:00,26.90903046,142.7101511,916.7503046,898.5371595,115.5011691,830.5204443,711.5912106,118.9292337,112.0183827,6.910851033,225.7595115,0,225.7595115,3.482786402,222.2767251,0.46965118,2.490762013,-0.150839969,0.150839969,0.555948843,0.12598978,4.228713472,136.0099614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6763303,2.523266892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063688515,130.7379482,110.7400188,133.2612151,711.5912106,0,0.791944109,37.63243549,-0.791944109,142.3675645,0.986864231,0,812.983932,133.2612151,900.200732,5,11,11% -5/1/2018 20:00,22.63822538,176.206931,953.3884335,905.4652137,117.6860315,939.8979655,818.5735573,121.3244082,114.1373635,7.187044724,234.7087317,0,234.7087317,3.548668066,231.1600636,0.39511157,3.075391111,0.116399677,-0.116399677,0.510248172,0.123439752,4.101668103,131.9237456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7131752,2.570997934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971644578,126.8101222,112.6848198,129.3811202,818.5735573,0,0.90403645,25.30617988,-0.90403645,154.6938201,0.994692496,0,926.9137942,129.3811202,1011.59115,5,12,9% -5/1/2018 21:00,25.53766137,211.4563607,929.1562082,900.9310824,116.2441934,987.5286662,867.7852921,119.7433741,112.7390021,7.004371975,228.7898714,0,228.7898714,3.505191327,225.2846801,0.445716274,3.690609719,0.373689951,-0.373689951,0.466248944,0.125107267,3.733505932,120.0823846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.369017,2.539499184,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.704912338,115.4277556,111.0739294,117.9672548,867.7852921,0,0.963209405,15.59001751,-0.963209405,164.4099825,0.998090208,0,977.201932,117.9672548,1054.409141,5,13,8% -5/1/2018 22:00,33.77809815,235.8372259,845.8014574,883.8090325,111.1819899,967.4749217,853.2694704,114.2054513,107.8294426,6.376008654,208.4269029,0,208.4269029,3.352547212,205.0743557,0.589539028,4.11613609,0.648557048,-0.648557048,0.419243902,0.131451641,3.159855808,101.6318247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6497618,2.428909043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.289304777,97.69237568,105.9390665,100.1212847,853.2694704,0,0.965445519,15.10596181,-0.965445519,164.8940382,0.998210439,0,957.6815588,100.1212847,1023.208937,5,14,7% -5/1/2018 23:00,44.39682952,251.5664689,709.3556606,849.3844114,102.4608203,878.1826355,773.4639643,104.7186711,99.37124854,5.347422603,175.0810643,0,175.0810643,3.089571772,171.9914926,0.774870853,4.390663169,0.978798027,-0.978798027,0.362769369,0.144442099,2.432073565,78.22384605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.51942386,2.238384232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762029019,75.19173621,97.28145288,77.43012044,773.4639643,0,0.910617094,24.40923089,-0.910617094,155.5907691,0.995092179,0,866.9493949,77.43012044,917.6258601,5,15,6% -5/1/2018 0:00,55.92745262,262.9967964,529.9948604,785.8456028,89.73101102,721.6641191,630.643504,91.02061509,87.02528996,3.995325129,131.209111,0,131.209111,2.705721054,128.50339,0.97611819,4.59016002,1.440643532,-1.440643532,0.283789136,0.169305436,1.618296569,52.04998053,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65201888,1.960285693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.172450356,50.0324211,84.82446924,51.9927068,630.643504,0,0.802503064,36.63020345,-0.802503064,143.3697966,0.987694942,0,707.7078683,51.9927068,741.7360551,5,16,5% -5/1/2018 1:00,67.72801639,272.4957286,322.4332187,662.3176136,71.41238812,501.2472798,429.5576009,71.68967894,69.25904114,2.430637799,80.33101386,0,80.33101386,2.153346986,78.17766687,1.182076882,4.755947662,2.255861948,-2.255861948,0.144378576,0.221479624,0.811544478,26.10206009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.57442474,1.560092561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.587961212,25.090293,67.16238595,26.65038556,429.5576009,0,0.648567382,49.56632448,-0.648567382,130.4336755,0.972907008,0,485.0819862,26.65038556,502.5241305,5,17,4% -5/1/2018 2:00,79.42279788,281.3243824,111.4533285,384.6533379,40.84627414,217.2769777,176.8221872,40.45479053,39.61460827,0.840182269,28.25481574,0,28.25481574,1.231665872,27.02314987,1.386189324,4.910036738,4.574644901,-4.574644901,0,0.366487701,0.307916468,9.903652066,0.201377887,1,0.21521092,0,0.936822567,0.97558453,0.724496596,1,38.3381752,0.892337731,0.031450546,0.312029739,0.914685042,0.639181638,0.961238037,0.922476074,0.213897848,9.51976707,38.55207305,10.4121048,141.2141088,0,0.459692325,62.63274442,-0.459692325,117.3672556,0.941231597,0,171.4672542,10.4121048,178.2817686,5,18,4% -5/1/2018 3:00,90.88878459,290.2999009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586308544,5.066689089,-49.16178332,49.16178332,0,#DIV/0!,0,0,1,0.874012792,0,0.020338199,0.961238037,1,0.668440003,0.943943407,0,0,0.115824807,0.248373994,0.724496596,0.448993192,0.970893806,0.932131843,0,0,0,0,0,0,0.246240799,75.74482705,-0.246240799,104.255173,0.846946728,0,0,0,0,5,19,0% -5/1/2018 4:00,101.5937069,300.099482,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773144685,5.237724045,-3.126676189,3.126676189,0.935153191,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.026064569,88.50644107,-0.026064569,91.49355893,0,0,0,0,0,5,20,0% -5/1/2018 5:00,111.2011757,311.3867021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940826647,5.434723199,-1.234591472,1.234591472,0.741281266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.187128001,100.7852248,0.187128001,79.21477516,0,0.782803216,0,0,0,5,21,0% -5/1/2018 6:00,119.1158079,324.7825301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078963039,5.668524503,-0.471283573,0.471283573,0.610747927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378801772,112.2594814,0.378801772,67.74051858,0,0.918004841,0,0,0,5,22,0% -5/1/2018 7:00,124.5587183,340.5795712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173959746,5.944234882,0.014685519,-0.014685519,0.527642318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535890288,122.4043087,0.535890288,57.5956913,0,0.95669732,0,0,0,5,23,0% -5/2/2018 8:00,126.7385986,358.1973287,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212005834,6.251722757,0.418381504,-0.418381504,0.458606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647685755,130.3673442,0.647685755,49.63265585,0,0.972802069,0,0,0,5,0,0% -5/2/2018 9:00,125.2546128,16.00092372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186105396,0.279268802,0.831573299,-0.831573299,0.38794628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706568199,134.9563761,0.706568199,45.04362391,0,0.979235423,0,0,0,5,1,0% -5/2/2018 10:00,120.3853531,32.22752761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101120783,0.562476467,1.348077822,-1.348077822,0.299618805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708524188,135.1149658,0.708524188,44.88503425,0,0.979430779,0,0,0,5,2,0% -5/2/2018 11:00,112.8820101,46.07672361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970162743,0.804190536,2.165849307,-2.165849307,0.159771644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653419873,130.7999446,0.653419873,49.20005535,0,0.973479524,0,0,0,5,3,0% -5/2/2018 12:00,103.5470308,57.71693825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807236618,1.007350607,4.055282568,-4.055282568,0,#DIV/0!,0,0,0.140406422,1,0.241768515,0,0.933085009,0.971846973,0.724496596,1,0,0,0.022521145,0.312029739,0.938119204,0.662615799,0.961238037,0.922476074,0,0,0,0,0,0,-0.545009765,123.025331,0.545009765,56.97466903,0,0.958258525,0,0,0,5,4,0% -5/2/2018 13:00,93.01344018,67.73700295,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62339078,1.182233727,18.98106241,-18.98106241,0,#DIV/0!,0,0,0.730878888,1,0.052635427,0,0.95626419,0.995026153,0.724496596,1,0,0,0.092771183,0.312029739,0.770813369,0.495309965,0.961238037,0.922476074,0,0,0,0,0,0,-0.390680675,112.9968596,0.390680675,67.00314041,0,0.922018241,0,0,0,5,5,0% -5/2/2018 14:00,81.62518884,76.79872553,75.17992212,295.7610987,32.10287929,31.70159704,0,31.70159704,31.13485903,0.566738009,78.0909218,58.89465902,19.19626278,0.968020258,18.22824252,1.424628298,1.340390622,-6.744884202,6.744884202,0.31640318,0.427014,0.344751601,11.08839655,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.92801077,0.701327381,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.249771361,10.65858853,30.17778214,11.35991591,0,58.89465902,-0.19912916,101.4860393,0.19912916,78.51396072,0,0.798906689,30.17778214,58.41125295,68.40677896,5,6,127% -5/2/2018 15:00,69.98497496,85.56802114,280.9775524,625.0047159,67.05934253,74.68809173,7.532708326,67.15538341,65.03725593,2.118127475,70.14834722,0,70.14834722,2.0220866,68.12626062,1.22146824,1.493443703,-2.644521408,2.644521408,0.982393485,0.238664413,2.089735107,67.21306445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.51628421,1.464994858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.514005971,64.60775412,64.03029018,66.07274898,7.532708326,0,0.012052242,89.30944066,-0.012052242,90.69055934,0,0,64.03029018,66.07274898,107.2735829,5,7,68% -5/2/2018 16:00,58.16385376,94.81345847,491.9154117,767.6537204,86.98432042,266.1185064,178.048818,88.06968838,84.36142222,3.708266159,121.893485,0,121.893485,2.622898199,119.2705868,1.015150754,1.654807025,-1.461876169,1.461876169,0.780149238,0.176827801,3.03716256,97.68558811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.09140788,1.900280816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.200413936,93.89910295,83.29182182,95.79938376,178.048818,0,0.231938976,76.5887457,-0.231938976,103.4112543,0.834426055,0,231.8603947,95.79938376,294.5591754,5,8,27% -5/2/2018 17:00,46.51906406,105.6663382,678.3138664,839.5010857,100.6421019,476.2939678,373.5731802,102.7207877,97.60737122,5.113416446,167.4997809,0,167.4997809,3.034730703,164.4650502,0.811910833,1.84422551,-0.856689302,0.856689302,0.676656189,0.148370993,3.705340231,119.1764789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.82391789,2.198652064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.684506384,114.5569646,96.50842427,116.7556166,373.5731802,0,0.444994279,63.57702728,-0.444994279,116.4229727,0.937639005,0,446.7852092,116.7556166,523.1994251,5,9,17% -5/2/2018 18:00,35.60161281,120.2006539,824.3334948,878.3924134,110.1263486,672.2059112,559.1861042,113.019807,106.8056329,6.214174084,203.1899153,0,203.1899153,3.320715734,199.8691996,0.621365363,2.097897173,-0.458294511,0.458294511,0.608526667,0.133594412,4.106483556,132.0786271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6656369,2.405847245,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.975133358,126.9590002,105.6407702,129.3648475,559.1861042,0,0.636601701,50.4611189,-0.636601701,129.5388811,0.971457954,0,648.866559,129.3648475,733.5332644,5,10,13% -5/2/2018 19:00,26.63699944,142.4332749,918.9980594,898.4322588,115.9209941,832.4190142,713.0656702,119.353344,112.4255484,6.927795559,226.317165,0,226.317165,3.495445675,222.8217193,0.464903343,2.485929612,-0.151382183,0.151382183,0.556041568,0.126138454,4.240100448,136.3762056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0677135,2.532438493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.07193834,131.0899962,111.1396518,133.6224347,713.0656702,0,0.793677724,37.46945887,-0.793677724,142.5305411,0.987002138,0,814.9369925,133.6224347,902.3902036,5,11,11% -5/2/2018 20:00,22.33935048,176.235756,955.4680878,905.316205,118.0968676,941.5151196,819.7765863,121.7385333,114.5358113,7.202722037,235.2253562,0,235.2253562,3.561056289,231.6642999,0.389895219,3.075894202,0.114892736,-0.114892736,0.510505875,0.123601059,4.112810946,132.2821377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0961784,2.579973159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97971753,127.1546224,113.0758959,129.7345955,819.7765863,0,0.905514097,25.10738742,-0.905514097,154.8926126,0.994782748,0,928.5755012,129.7345955,1013.484199,5,12,9% -5/2/2018 21:00,25.28048183,211.8113203,931.1544912,900.7739062,116.649432,988.9445414,868.7930843,120.1514571,113.1320212,7.019435876,229.2865977,0,229.2865977,3.517410766,225.7691869,0.441227644,3.696804933,0.371203077,-0.371203077,0.466674225,0.125273983,3.744771251,120.444716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.746802,2.548352126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.713074024,115.7760424,111.459876,118.3243945,868.7930843,0,0.964496283,15.31326899,-0.964496283,164.686731,0.998159468,0,978.6539192,118.3243945,1056.094869,5,13,8% -5/2/2018 22:00,33.57812553,236.2373754,847.8103788,883.6832066,111.5852197,968.7973437,854.1856772,114.6116664,108.2205137,6.391152752,208.926148,0,208.926148,3.364706081,205.5614419,0.586048847,4.123120016,0.644788942,-0.644788942,0.419888286,0.131615775,3.17154653,102.0078385,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0256741,2.437718101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297774664,98.05381443,106.3234488,100.4915325,854.1856772,0,0.966619792,14.84559752,-0.966619792,165.1544025,0.998273354,0,959.0342495,100.4915325,1024.803948,5,14,7% -5/2/2018 23:00,44.2309407,251.9217197,711.4645376,849.3636962,102.8665521,879.547678,774.4196117,105.1280663,99.76474605,5.363320208,175.6046203,0,175.6046203,3.101806084,172.5028142,0.771975546,4.396863467,0.972961232,-0.972961232,0.36376752,0.14458423,2.444369134,78.6193138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.89766864,2.247247949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770937116,75.57187486,97.66860576,77.81912281,774.4196117,0,0.911764436,24.24966621,-0.911764436,155.7503338,0.995161274,0,868.3410132,77.81912281,919.2720727,5,15,6% -5/2/2018 0:00,55.77644595,263.3076486,532.2791564,786.1183649,90.1478403,723.2537144,631.811619,91.44209542,87.4295503,4.012545116,131.775534,0,131.775534,2.718289995,129.057244,0.973482627,4.595585415,1.430678537,-1.430678537,0.285493251,0.169361958,1.631113685,52.46222303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.0406093,1.969391848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.181736312,50.42868428,85.22234561,52.39807613,631.811619,0,0.803710544,36.51409144,-0.803710544,143.4859086,0.987788548,0,709.3186273,52.39807613,743.6121202,5,16,5% -5/2/2018 1:00,67.57943085,272.7750674,324.9250296,663.48851,71.86901025,503.3634324,431.2121158,72.15131655,69.70189442,2.449422122,80.9489511,0,80.9489511,2.167115827,78.78183528,1.179483575,4.760823044,2.234739107,-2.234739107,0.147990795,0.221186439,0.824092585,26.50565034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.00011216,1.57006804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.597052273,25.4782393,67.59716443,27.04830734,431.2121158,0,0.649916478,49.46469501,-0.649916478,130.535305,0.973067038,0,487.1954605,27.04830734,504.8980367,5,17,4% -5/2/2018 2:00,79.26836744,281.5829997,113.9308967,389.0599408,41.48440303,220.5440606,179.4517062,41.09235445,40.23349522,0.858859224,28.87477277,0,28.87477277,1.250907813,27.62386495,1.383494004,4.914550462,4.494856357,-4.494856357,0,0.36411899,0.312726953,10.05837381,0.192579494,1,0.218911264,0,0.936310955,0.975072918,0.724496596,1,38.93025822,0.906278452,0.030191239,0.312029739,0.917951949,0.642448545,0.961238037,0.922476074,0.217503113,9.66849149,39.14776134,10.57476994,144.8929874,0,0.461244367,62.53256657,-0.461244367,117.4674334,0.941597592,0,175.5786494,10.57476994,182.4996248,5,18,4% -5/2/2018 3:00,90.1227182,290.5447119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572938163,5.070961847,-354.7879087,354.7879087,0,#DIV/0!,0,0,1,0.983389383,0,0.002818578,0.961238037,1,0.716535078,0.992038483,0,0,0.115824807,0.302982367,0.724496596,0.448993192,0.962661598,0.923899635,0,0,0,0,0,0,0.257887476,75.05525069,-0.257887476,104.9447493,0.856116991,0,0,0,0,5,19,0% -5/2/2018 4:00,101.4030124,300.3327551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769816438,5.241795428,-3.164894612,3.164894612,0.928617456,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.028225926,88.38255877,-0.028225926,91.61744123,0,0,0,0,0,5,20,0% -5/2/2018 5:00,110.9833651,311.6039001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.937025137,5.438514018,-1.239963349,1.239963349,0.742199911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184634818,100.6398422,0.184634818,79.36015776,0,0.779195173,0,0,0,5,21,0% -5/2/2018 6:00,118.8669928,324.9685922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074620396,5.671771899,-0.47044935,0.47044935,0.610605267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.375982391,112.0850436,0.375982391,67.91495638,0,0.917015049,0,0,0,5,22,0% -5/2/2018 7:00,124.2809615,340.7074944,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169111976,5.946467563,0.018114113,-0.018114113,0.527055994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.532772859,122.1929979,0.532772859,57.80700207,0,0.956151376,0,0,0,5,23,0% -5/3/2018 8:00,126.4435585,358.2391087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206856414,6.252451957,0.423845189,-0.423845189,0.457671894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644319011,130.1146364,0.644319011,49.88536358,0,0.972398689,0,0,0,5,0,0% -5/3/2018 9:00,124.9607645,15.95027396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180976776,0.278384797,0.839664475,-0.839664475,0.386562608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703018091,134.6696502,0.703018091,45.33034978,0,0.978878075,0,0,0,5,1,0% -5/3/2018 10:00,120.1082545,32.10518285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0962845,0.560341148,1.360885417,-1.360885417,0.297428577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704869356,134.8189905,0.704869356,45.18100952,0,0.979064869,0,0,0,5,2,0% -5/3/2018 11:00,112.6283544,45.91047679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965735616,0.801288981,2.190067119,-2.190067119,0.155630155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64974623,130.5224714,0.64974623,49.47752856,0,0.973046879,0,0,0,5,3,0% -5/3/2018 12:00,103.316351,57.52591261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803210497,1.00401658,4.125177696,-4.125177696,0,#DIV/0!,0,0,0.149148517,1,0.237826064,0,0.933649454,0.972411417,0.724496596,1,0,0,0.023831063,0.312029739,0.934642244,0.65913884,0.961238037,0.922476074,0,0,0,0,0,0,-0.541404599,122.7793072,0.541404599,57.22069275,0,0.957647626,0,0,0,5,4,0% -5/3/2018 13:00,92.8017707,67.52980157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61969645,1.178617381,20.41455603,-20.41455603,0,#DIV/0!,0,0,0.74753474,1,0.048945533,0,0.956634461,0.995396424,0.724496596,1,0,0,0.094326606,0.312029739,0.767554015,0.49205061,0.961238037,0.922476074,0,0,0,0,0,0,-0.387226642,112.7820427,0.387226642,67.21795733,0,0.920876653,0,0,0,5,5,0% -5/3/2018 14:00,81.42939505,76.57654561,78.14114664,302.9869594,32.98759038,32.58195379,0,32.58195379,31.99289282,0.58906097,79.30660694,59.36568369,19.94092325,0.994697561,18.94622569,1.421211052,1.336512851,-6.591552207,6.591552207,0.342624495,0.422153907,0.36529917,11.74927703,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.75278549,0.720654997,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264658005,11.29385199,31.01744349,12.01450698,0,59.36568369,-0.195934781,101.2993361,0.195934781,78.70066391,0,0.794813046,31.01744349,59.19912689,69.76208806,5,6,125% -5/3/2018 15:00,69.79499626,85.32725821,284.2485491,627.2215587,67.61866804,77.12733138,9.404830041,67.72250134,65.57971571,2.14278563,70.95830397,0,70.95830397,2.038952328,68.91935164,1.218152486,1.489241597,-2.62054256,2.62054256,0.978292861,0.23788571,2.107336839,67.77919667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.03771719,1.477214021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526758366,65.15194195,64.56447555,66.62915597,9.404830041,0,0.01499443,89.14085022,-0.01499443,90.85914978,0,0,64.56447555,66.62915597,108.1719256,5,7,68% -5/3/2018 16:00,57.97376018,94.54720919,494.9281254,768.3607914,87.46056562,268.7863816,180.2320975,88.55428414,84.82330687,3.730977268,122.6383128,0,122.6383128,2.637258749,120.0010541,1.011832995,1.650160099,-1.454212748,1.454212748,0.778838716,0.17671367,3.051644427,98.15137474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.53538897,1.910684986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.210905999,94.34683476,83.74629497,96.25751975,180.2320975,0,0.234567015,76.43389881,-0.234567015,103.5661012,0.8368413,0,234.5719578,96.25751975,297.5705793,5,8,27% -5/3/2018 17:00,46.3189803,105.3668112,681.0129908,839.689894,101.0871468,478.7569428,375.5841829,103.17276,98.03899637,5.133763585,168.1676346,0,168.1676346,3.048150448,165.1194841,0.808418712,1.838997778,-0.853899649,0.853899649,0.67617913,0.148436444,3.718107477,119.5871174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.2388124,2.208374624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69375621,114.9516859,96.93256861,117.1600605,375.5841829,0,0.447289155,63.43010851,-0.447289155,116.5698915,0.938215488,0,449.3114659,117.1600605,525.9903823,5,9,17% -5/3/2018 18:00,35.37684668,119.8715956,826.7426705,878.3693434,110.5538461,674.3524117,560.8998365,113.4525752,107.2202397,6.232335468,203.7869385,0,203.7869385,3.33360636,200.4533322,0.617442454,2.092154023,-0.457632404,0.457632404,0.60841344,0.133722197,4.118185522,132.4550025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0641727,2.41518646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.983611392,127.3207866,106.0477841,129.7359731,560.8998365,0,0.638569459,50.31476981,-0.638569459,129.6852302,0.971699982,0,651.0741453,129.7359731,735.9837449,5,10,13% -5/3/2018 19:00,26.37036552,142.1514664,921.1731135,898.3137482,116.3364437,834.2440732,714.4714105,119.7726627,112.8284707,6.944192034,226.8570593,0,226.8570593,3.507973014,223.3490863,0.460249703,2.481011126,-0.151951231,0.151951231,0.556138881,0.126291619,4.251198391,136.7331537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4550177,2.541514507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.079978763,131.4331082,111.5349965,133.9746227,714.4714105,0,0.795347296,37.31192908,-0.795347296,142.6880709,0.987134381,0,816.81429,133.9746227,904.4980011,5,11,11% -5/3/2018 20:00,22.04487178,176.2597898,957.4844089,905.1562832,118.5039267,943.0663868,820.9178688,122.148518,114.9305961,7.217921918,235.7265109,0,235.7265109,3.573330623,232.1531803,0.384755596,3.076313672,0.11337969,-0.11337969,0.510764621,0.123765907,4.123709092,132.6326595,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4756606,2.588865873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.987613199,127.4915573,113.4632738,130.0804232,820.9178688,0,0.90693495,24.91483759,-0.90693495,155.0851624,0.994869254,0,930.1692218,130.0804232,1015.304257,5,12,9% -5/3/2018 21:00,25.02700547,212.1637509,933.0993266,900.6072494,117.0514501,990.3038645,869.7478506,120.5560139,113.5219171,7.034096867,229.7702679,0,229.7702679,3.529533096,226.2407348,0.436803647,3.702956006,0.368727727,-0.368727727,0.467097535,0.125443719,3.755833527,120.8005168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1215847,2.557134713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.721088605,116.1180516,111.8426733,118.6751863,869.7478506,0,0.965734899,15.04220839,-0.965734899,164.9577916,0.998225957,0,980.047554,118.6751863,1057.71809,5,13,8% -5/3/2018 22:00,33.38098596,236.6333491,849.775551,883.5483504,111.9857316,970.0732753,855.0583596,115.0149156,108.6089486,6.40596705,209.4147037,0,209.4147037,3.37678299,206.0379207,0.582608113,4.130031062,0.6410532,-0.6410532,0.420527136,0.131782718,3.183071504,102.3785213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3990525,2.446467781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306124469,98.41012883,106.705177,100.8565966,855.0583596,0,0.967755029,14.58957258,-0.967755029,165.4104274,0.998334032,0,960.3390371,100.8565966,1026.347662,5,14,7% -5/3/2018 23:00,44.06702143,252.272194,713.5385214,849.333103,103.2699796,880.8758877,775.3409243,105.5349634,100.1560086,5.378954774,176.1196465,0,176.1196465,3.113970909,173.0056756,0.769114616,4.402980397,0.967190879,-0.967190879,0.364754308,0.144729368,2.456531078,79.01048373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.27376513,2.256061323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779748403,75.94788227,98.05351353,78.20394359,775.3409243,0,0.912882027,24.09328504,-0.912882027,155.906715,0.99522841,0,869.6948288,78.20394359,920.8777459,5,15,6% -5/3/2018 0:00,55.62681691,263.6137557,534.5360776,786.3772836,90.56259893,724.8140584,632.9526973,91.86136118,87.83180244,4.029558742,132.3352572,0,132.3352572,2.730796498,129.6044607,0.970871107,4.600927991,1.420856885,-1.420856885,0.287172852,0.1694228,1.643826346,52.8711059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.42726935,1.978452767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190946592,50.82171804,85.61821594,52.8001708,632.9526973,0,0.804896976,36.39969313,-0.804896976,143.6003069,0.987880249,0,710.8996839,52.8001708,745.4563397,5,16,5% -5/3/2018 1:00,67.43188117,273.0497589,327.3958505,664.6297816,72.32319611,505.4519593,432.8415262,72.61043312,70.14238491,2.468048214,81.56172562,0,81.56172562,2.180811207,79.38091442,1.176908347,4.765617315,2.214026439,-2.214026439,0.15153287,0.220904437,0.836577085,26.90719477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.42352837,1.579990296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.60609725,25.86421908,68.02962562,27.44420937,432.8415262,0,0.651252078,49.36393018,-0.651252078,130.6360698,0.973224813,0,489.2817391,27.44420937,507.2434252,5,17,4% -5/3/2018 2:00,79.11481047,281.8369635,116.4007063,393.367872,42.11648453,223.7703964,182.0464016,41.72399482,40.84651713,0.877477692,29.49266629,0,29.49266629,1.269967402,28.22269889,1.38081393,4.918982968,4.417813637,-4.417813637,0,0.361823273,0.31749185,10.21162928,0.183897939,1,0.222605024,0,0.935797285,0.974559248,0.724496596,1,39.51618703,0.92008706,0.028939167,0.312029739,0.921212466,0.645709062,0.961238037,0.922476074,0.221092933,9.815806484,39.73727996,10.73589354,148.5684436,0,0.462789197,62.43276375,-0.462789197,117.5672362,0.941959449,0,179.6827291,10.73589354,186.7091568,5,18,4% -5/3/2018 3:00,89.98256512,290.7847194,0.003076372,0.517228902,0.002918981,0.136947342,0.134093187,0.002854154,0.002830963,2.32E-05,0.00083392,0,0.00083392,8.80E-05,0.000745902,1.570492031,5.075150769,2488.265213,-2488.265213,0,0.948838857,2.20E-05,0.000707741,0.997652517,1,0.000401886,0,0.961202586,0.999964549,0.724496596,1,0.002721387,6.38E-05,0.115641332,0.312029739,0.724848321,0.449344917,0.961238037,0.922476074,1.59E-05,0.000680307,0.002737322,0.000744076,0.000314781,0,0.259253083,74.97425264,-0.259253083,105.0257474,0.857138263,0,0.003007134,0.000744076,0.003494117,5,19,16% -5/3/2018 4:00,101.2135389,300.5609428,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766509501,5.245778055,-3.204308782,3.204308782,0.921877236,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.030384465,88.25883039,-0.030384465,91.74116961,0,0,0,0,0,5,20,0% -5/3/2018 5:00,110.7672676,311.8156858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933253523,5.442210377,-1.24550644,1.24550644,0.743147835,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.182145608,100.4947604,0.182145608,79.50523959,0,0.775494342,0,0,0,5,21,0% -5/3/2018 6:00,118.6206415,325.1491282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070320755,5.674922848,-0.469692243,0.469692243,0.610475794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.373170524,111.9112851,0.373170524,68.08871491,0,0.916012997,0,0,0,5,22,0% -5/3/2018 7:00,124.0066012,340.8304769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164323485,5.948614013,0.021482972,-0.021482972,0.526479885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52966863,121.9830682,0.52966863,58.01693179,0,0.955601357,0,0,0,5,23,0% -5/4/2018 8:00,126.1527628,358.2775673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201781072,6.253123186,0.429250455,-0.429250455,0.456747539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640972903,129.8644047,0.640972903,50.13559529,0,0.971993582,0,0,0,5,0,0% -5/4/2018 9:00,124.6716278,15.89841806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175930388,0.277479741,0.847693504,-0.847693504,0.385189563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6994973,134.3866862,0.6994973,45.61331375,0,0.978520096,0,0,0,5,1,0% -5/4/2018 10:00,119.8359473,31.98328103,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091531842,0.55821356,1.373631498,-1.373631498,0.295248869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701253166,134.5276324,0.701253166,45.47236763,0,0.978699074,0,0,0,5,2,0% -5/4/2018 11:00,112.3793945,45.74556501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961390446,0.798410728,2.214283321,-2.214283321,0.15148894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64612056,130.2497433,0.64612056,49.75025672,0,0.972615061,0,0,0,5,3,0% -5/4/2018 12:00,103.0902647,57.33660304,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799264547,1.000712505,4.195942095,-4.195942095,0,#DIV/0!,0,0,0.157820036,1,0.233961079,0,0.93419957,0.972961533,0.724496596,1,0,0,0.025120429,0.312029739,0.931233001,0.655729597,0.961238037,0.922476074,0,0,0,0,0,0,-0.537856096,122.5378129,0.537856096,57.4621871,0,0.957038332,0,0,0,5,4,0% -5/4/2018 13:00,92.5946544,67.32444697,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616081589,1.175033267,22.04308641,-22.04308641,0,#DIV/0!,0,0,0.764119572,1,0.045334615,0,0.956993675,0.995755638,0.724496596,1,0,0,0.095857151,0.312029739,0.764365739,0.488862335,0.961238037,0.922476074,0,0,0,0,0,0,-0.383836728,112.5715419,0.383836728,67.42845815,0,0.91973628,0,0,0,5,5,0% -5/4/2018 14:00,81.23806541,76.35622479,81.05424811,309.9040208,33.84679902,33.43721431,0,33.43721431,32.82619315,0.61102116,80.42514911,59.75200237,20.67314674,1.020605872,19.65254087,1.417871719,1.332667527,-6.448231661,6.448231661,0.367133752,0.417582049,0.385803243,12.40875849,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.55378546,0.73942548,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.279513136,11.92777065,31.8332986,12.66719613,0,59.75200237,-0.19280809,101.1167067,0.19280809,78.88329332,0,0.790674782,31.8332986,59.91159758,71.04424098,5,6,123% -5/4/2018 15:00,69.60972547,85.08827385,287.4312923,629.323769,68.16674353,79.52000038,11.24195718,68.2780432,66.11126471,2.166778493,71.7465234,0,71.7465234,2.055478826,69.69104457,1.214918901,1.485070533,-2.597570451,2.597570451,0.974364399,0.237158394,2.124405182,68.32817324,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.5486623,1.489187412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.539124322,65.6796391,65.08778662,67.16882651,11.24195718,0,0.017863551,88.97643948,-0.017863551,91.02356052,0,0,65.08778662,67.16882651,109.0484402,5,7,68% -5/4/2018 16:00,57.78861606,94.28248563,497.8501028,769.0177987,87.92947687,271.3810636,182.3499805,89.03108308,85.27807872,3.753004368,123.3609195,0,123.3609195,2.651398153,120.7095213,1.00860162,1.645539801,-1.446845927,1.446845927,0.777578915,0.176618376,3.065688779,98.60308936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97253297,1.920928936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221081084,94.78104005,84.19361405,96.70196898,182.3499805,0,0.237120624,76.28334064,-0.237120624,103.7166594,0.839136857,0,237.2102037,96.70196898,300.4997083,5,8,27% -5/4/2018 17:00,46.12417421,105.0681052,683.6249626,839.8507339,101.526307,481.1403813,377.5220133,103.618368,98.46491427,5.153453732,168.8141797,0,168.8141797,3.061392749,165.7527869,0.805018705,1.833784375,-0.85123438,0.85123438,0.675723342,0.148511702,3.730493531,119.9854954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.64822089,2.217968625,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.702729864,115.3346221,97.35095075,117.5525907,377.5220133,0,0.449510845,63.28769537,-0.449510845,116.7123046,0.938767979,0,451.7565281,117.5525907,528.6923476,5,9,17% -5/4/2018 18:00,35.15768842,119.5414647,829.0711923,878.3279304,110.9763126,676.4205128,562.5406566,113.8798562,107.6299673,6.249888849,204.3642545,0,204.3642545,3.346345285,201.0179092,0.61361742,2.086392152,-0.457029606,0.457029606,0.608310355,0.133856192,4.129554305,132.8206617,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4580185,2.424415768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.991848036,127.6722721,106.4498666,130.0966879,562.5406566,0,0.640467685,50.17329753,-0.640467685,129.8267025,0.971932049,0,653.2011595,130.0966879,738.3468397,5,10,13% -5/4/2018 19:00,26.10922764,141.8647842,923.2759016,898.1817875,116.7475381,835.9959928,715.80878,120.1872128,113.2271691,6.96004374,227.3793007,0,227.3793007,3.520369027,223.8589317,0.455691987,2.476007577,-0.152547154,0.152547154,0.556240789,0.126449242,4.262009269,137.0808686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8382617,2.550495376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.087811207,131.7673451,111.9260729,134.3178404,715.80878,0,0.796953122,37.15987587,-0.796953122,142.8401241,0.987261053,0,818.6162026,134.3178404,906.5245428,5,11,11% -5/4/2018 20:00,21.75487263,176.2787887,959.4379889,904.9856026,118.9072383,944.55243,821.9980348,122.5543952,115.3217464,7.232648829,236.2123404,0,236.2123404,3.585491957,232.6268484,0.379694156,3.076645264,0.111860528,-0.111860528,0.511024413,0.123934261,4.134364629,132.9753782,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8516491,2.597676717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9953331,127.8209915,113.8469822,130.4186683,821.9980348,0,0.908299571,24.72858751,-0.908299571,155.2714125,0.994952082,0,931.6956386,130.4186683,1017.052049,5,12,9% -5/4/2018 21:00,24.77725814,212.5133226,934.9913601,900.4312736,117.4502814,991.6074916,870.6504097,120.9570818,113.908722,7.048359814,230.2410395,0,230.2410395,3.541559328,226.6994802,0.432444734,3.709057184,0.366263976,-0.366263976,0.467518861,0.125616435,3.766694538,121.1498443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4933963,2.565847677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728957371,116.4538385,112.2223537,119.0196861,870.6504097,0,0.966926,14.77696701,-0.966926,165.223033,0.998289735,0,981.3837203,119.0196861,1059.279724,5,13,8% -5/4/2018 22:00,33.18666867,237.0248805,851.6975659,883.4046414,112.3835578,971.3036515,855.8884166,115.4152349,108.9947789,6.42045601,209.8927144,0,209.8927144,3.388778919,206.5039355,0.579216636,4.136864573,0.63734999,-0.63734999,0.421160422,0.131952423,3.194431804,102.7439076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7699273,2.455158791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.314354968,98.76135204,107.0842823,101.2165108,855.8884166,0,0.968852071,14.33791465,-0.968852071,165.6620854,0.998392534,0,961.5968876,101.2165108,1027.84107,5,14,7% -5/4/2018 23:00,43.90505692,252.6177102,715.5780463,849.292835,103.6711287,882.1681561,776.2287648,105.9393912,100.5450616,5.394329575,176.626249,0,176.626249,3.126067035,173.500182,0.766287802,4.409010792,0.961487151,-0.961487151,0.365729703,0.144877458,2.46855942,79.39735656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.64773767,2.264824926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.788462896,76.31975915,98.43620057,78.58458408,776.2287648,0,0.913970698,23.94002721,-0.913970698,156.0599728,0.995293651,0,871.0117619,78.58458408,922.4438005,5,15,6% -5/4/2018 0:00,55.47856036,263.9149856,536.7658068,786.6226165,90.97530191,726.345881,634.0674527,92.27842828,88.2320609,4.046367382,132.8883253,0,132.8883253,2.743241016,130.1450843,0.968283543,4.606185445,1.411178245,-1.411178245,0.288827997,0.169487886,1.656433237,53.27658687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.812013,1.987468778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.200080242,51.21148177,86.01209324,53.19895055,634.0674527,0,0.806063085,36.28695163,-0.806063085,143.7130484,0.987970116,0,712.4517878,53.19895055,747.2694369,5,16,5% -5/4/2018 1:00,67.28537645,273.3196985,329.8455202,665.7419085,72.77494884,507.5133632,434.4463327,73.06703048,70.58051562,2.486514859,82.16929841,0,82.16929841,2.194433218,79.97486519,1.174351358,4.770328649,2.19371866,-2.19371866,0.155005704,0.220633431,0.848994875,27.30659358,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.84467627,1.589859397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.615093897,26.24813641,68.45977017,27.83799581,434.4463327,0,0.65257471,49.26399359,-0.65257471,130.7360064,0.97338042,0,491.3413241,27.83799581,509.5607356,5,17,4% -5/4/2018 2:00,78.96215332,282.0861865,118.8618623,397.5784856,42.74253233,226.9561629,184.6064447,42.3497182,41.45368728,0.896030925,30.1082797,0,30.1082797,1.288845053,28.81943464,1.37814956,4.92333273,4.343403908,-4.343403908,0,0.359598373,0.322211263,10.36342182,0.175333992,1,0.226290783,0,0.93528178,0.974043743,0.724496596,1,40.09597344,0.933763853,0.02769472,0.312029739,0.924465351,0.648961946,0.961238037,0.922476074,0.2246673,9.961715245,40.32064074,10.8954791,152.2386599,0,0.464327048,62.33332154,-0.464327048,117.6666785,0.942317279,0,183.7777605,10.8954791,190.9086336,5,18,4% -5/4/2018 3:00,89.84250683,291.0198502,0.035452415,0.761353658,0.033359628,0.231052685,0.198431718,0.032620967,0.032353712,0.000267255,0.009601764,0,0.009601764,0.001005916,0.008595848,1.568047552,5.079254575,274.4788135,-274.4788135,0,0.940969132,0.000251479,0.008088428,0.978906731,1,0.003643252,0,0.960915228,0.999677191,0.724496596,1,0.031115628,0.000728783,0.114165968,0.312029739,0.727686496,0.452183092,0.961238037,0.922476074,0.000181536,0.007774905,0.031297164,0.008503687,0.004185574,0,0.260630149,74.89254374,-0.260630149,105.1074563,0.858157268,0,0.034889045,0.008503687,0.040454538,5,19,16% -5/4/2018 4:00,101.0253462,300.7839878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.763224919,5.249670925,-3.244958288,3.244958288,0.914925761,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032539743,88.13528087,-0.032539743,91.86471913,0,0,0,0,0,5,20,0% -5/4/2018 5:00,110.5529591,312.0220241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929513134,5.445811659,-1.251223997,1.251223997,0.744125595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.179661194,100.3500259,0.179661194,79.64997406,0,0.771698387,0,0,0,5,21,0% -5/4/2018 6:00,118.3768417,325.3241321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066065645,5.677977242,-0.469014996,0.469014996,0.610359978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.370367356,111.7382748,0.370367356,68.26172515,0,0.914998901,0,0,0,5,22,0% -5/4/2018 7:00,123.7357279,340.9485372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159595855,5.950674554,0.024788687,-0.024788687,0.525914575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.526579104,121.7746087,0.526579104,58.22539127,0,0.955047505,0,0,0,5,23,0% -5/5/2018 8:00,125.8662988,358.312723,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196781331,6.253736769,0.43459275,-0.43459275,0.455833952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637649194,129.6167483,0.637649194,50.38325169,0,0.971586978,0,0,0,5,0,0% -5/5/2018 9:00,124.3872878,15.84535741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17096772,0.276553658,0.855653772,-0.855653772,0.383828277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696007765,134.1075775,0.696007765,45.89242245,0,0.978161721,0,0,0,5,1,0% -5/5/2018 10:00,119.5685171,31.86181779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086864306,0.556093626,1.386305108,-1.386305108,0.293081554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69767764,134.2409764,0.69767764,45.75902359,0,0.978333664,0,0,0,5,2,0% -5/5/2018 11:00,112.135215,45.58199509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957128708,0.795555894,2.238475756,-2.238475756,0.14735179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642544866,129.9818466,0.642544866,50.01815344,0,0.972184422,0,0,0,5,3,0% -5/5/2018 12:00,102.8688518,57.14903424,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795400162,0.997438812,4.267523158,-4.267523158,0,#DIV/0!,0,0,0.166413639,1,0.230174997,0,0.934735338,0.973497301,0.724496596,1,0,0,0.026388515,0.312029739,0.927892771,0.652389367,0.961238037,0.922476074,0,0,0,0,0,0,-0.534366145,122.3009351,0.534366145,57.69906486,0,0.956431198,0,0,0,5,4,0% -5/5/2018 13:00,92.39216415,67.12098268,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612547468,1.171482145,23.9073092,-23.9073092,0,#DIV/0!,0,0,0.780616934,1,0.041803843,0,0.957341915,0.996103878,0.724496596,1,0,0,0.09736187,0.312029739,0.76124959,0.485746186,0.961238037,0.922476074,0,0,0,0,0,0,-0.380512615,112.3654388,0.380512615,67.63456116,0,0.918598312,0,0,0,5,5,0% -5/5/2018 14:00,81.05127395,76.13782609,83.91527674,316.5177472,34.68077627,34.26761171,0,34.26761171,33.63502291,0.632588802,81.45142738,60.05944364,21.39198375,1.045753363,20.34623038,1.414611593,1.328855751,-6.314124057,6.314124057,0.390067503,0.413283226,0.406212074,13.06517666,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.33126339,0.757644752,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.294299265,12.55874476,32.62556265,13.31638951,0,60.05944364,-0.189750635,100.9382319,0.189750635,79.06176807,0,0.786496271,32.62556265,60.55291797,72.25623641,5,6,121% -5/5/2018 15:00,69.42922104,84.85115376,290.5247403,631.31392,68.70362411,81.86406983,13.04201527,68.82205457,66.63195635,2.190098211,72.51275462,0,72.51275462,2.071667756,70.44108687,1.211768504,1.480932007,-2.575571776,2.575571776,0.970602404,0.236481148,2.140940101,68.85999307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.04917092,1.500916237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551103815,66.19084456,65.60027473,67.69176079,13.04201527,0,0.020658526,88.81626942,-0.020658526,91.18373058,0,0,65.60027473,67.69176079,109.9031783,5,7,68% -5/5/2018 16:00,57.6084745,94.01940325,500.6808736,769.6254686,88.39104282,273.9016426,184.4015719,89.50007066,85.72572675,3.774343913,124.0611905,0,124.0611905,2.665316069,121.3958745,1.005457557,1.640948148,-1.439770832,1.439770832,0.776369003,0.176541681,3.079295443,99.04072645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40282929,1.931012419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.230939066,95.20171347,84.63376835,97.13272588,184.4015719,0,0.239599103,76.13711969,-0.239599103,103.8628803,0.841318084,0,239.7741455,97.13272588,303.3455719,5,8,27% -5/5/2018 17:00,45.93469973,104.7703757,686.1497046,839.9839156,101.9595775,483.443926,379.3863197,104.0576064,98.88512006,5.172486304,169.4393973,0,169.4393973,3.074457453,166.3649399,0.801711751,1.828588014,-0.848692522,0.848692522,0.675288659,0.148596694,3.742499139,120.3716371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05213868,2.227433959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.711427886,115.7057961,97.76356657,117.9332301,379.3863197,0,0.451659029,63.14982455,-0.451659029,116.8501754,0.939297021,0,454.1200065,117.9332301,531.3049469,5,9,17% -5/5/2018 18:00,34.94420581,119.2104495,831.3192985,878.2683692,111.3937578,678.4102873,564.1086262,114.3016611,108.034825,6.266836023,204.9219214,0,204.9219214,3.358932798,201.5629886,0.609891446,2.080614847,-0.456485935,0.456485935,0.608217382,0.133996357,4.140591471,133.1756549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.8471831,2.433535378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999844425,128.0135051,106.8470276,130.4470404,564.1086262,0,0.642296416,50.03672859,-0.642296416,129.9632714,0.972154322,0,655.2476666,130.4470404,740.6226457,5,10,13% -5/5/2018 19:00,25.85368195,141.5733082,925.3068952,898.036537,117.1542994,837.6752024,717.0781831,120.5970192,113.621665,6.975354227,227.8840039,0,227.8840039,3.532634379,224.3513696,0.451231874,2.470920361,-0.153169911,0.153169911,0.556347287,0.12661129,4.272535107,137.4194158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2174662,2.559381582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.095437141,132.0927695,112.3129033,134.652151,717.0781831,0,0.798495555,37.01332235,-0.798495555,142.9866777,0.987382244,0,820.3431688,134.652151,908.4703086,5,11,11% -5/5/2018 20:00,21.4694367,176.2925138,961.3294363,904.8043164,119.3068326,945.9739513,823.0177525,122.9561988,115.7092914,7.246907358,236.6829929,0,236.6829929,3.597541199,233.0854517,0.374712359,3.076884812,0.110335323,-0.110335323,0.511285238,0.124106085,4.144779626,133.3103604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2241721,2.606406352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.00287873,128.1429891,114.2270509,130.7493955,823.0177525,0,0.909608561,24.54868647,-0.909608561,155.4513135,0.9950313,0,933.1554752,130.7493955,1018.72834,5,12,9% -5/5/2018 21:00,24.53126603,212.8597021,936.8312334,900.2461367,117.8459589,992.8562961,871.5015981,121.354698,114.2924684,7.062229557,230.6990693,0,230.6990693,3.553490466,227.1455788,0.428151362,3.715102647,0.363811985,-0.363811985,0.467938176,0.12579209,3.777355972,121.4927526,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.862268,2.574491746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681543,116.783455,112.5989495,119.3579468,871.5015981,0,0.968070356,14.51767486,-0.968070356,165.4823251,0.998350861,0,982.6633207,119.3579468,1060.78071,5,13,8% -5/5/2018 22:00,32.99516432,237.411704,853.5769925,883.2522491,112.7787295,972.4894019,856.6767433,115.8126586,109.3780347,6.434623922,210.360319,0,210.360319,3.400694803,206.9596242,0.575874255,4.143615918,0.633679579,-0.633679579,0.421788099,0.132124847,3.205628345,103.1040269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1383273,2.463791808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.322466824,99.10751236,107.4607941,101.5713042,856.6767433,0,0.96991176,14.09064944,-0.96991176,165.9093506,0.998448919,0,962.8087622,101.5713042,1029.285149,5,14,7% -5/5/2018 23:00,43.7450349,252.958089,717.5835076,849.2430804,104.070023,883.4253461,777.0839707,106.3413754,100.9319278,5.409447589,177.1245245,0,177.1245245,3.13809517,173.9864293,0.76349489,4.414951523,0.955850364,-0.955850364,0.36669365,0.145028449,2.480453982,79.77992658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.01960815,2.273539269,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.797080466,76.6875,98.81668861,78.96103927,777.0839707,0,0.915031266,23.78983242,-0.915031266,156.2101676,0.995357058,0,872.2927039,78.96103927,923.9711248,5,15,6% -5/5/2018 0:00,55.33167432,264.2112085,538.9684746,786.8545924,91.38596003,727.8498615,635.1565533,92.69330818,88.63033616,4.062972023,133.4347705,0,133.4347705,2.755623873,130.6791466,0.965719898,4.611355509,1.401642497,-1.401642497,0.290458706,0.169557153,1.668932828,53.67861666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.19485033,1.996440116,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.209136152,51.5979281,86.40398649,53.59436821,635.1565533,0,0.807209565,36.17581253,-0.807209565,143.8241875,0.988058217,0,713.9756378,53.59436821,749.0520799,5,16,5% -5/5/2018 1:00,67.13992915,273.5847836,332.2738187,666.8253093,73.22426483,509.5480745,436.0269711,73.52110348,71.01628308,2.504820398,82.77161603,0,82.77161603,2.207981754,80.56363427,1.171812823,4.774955257,2.173811027,-2.173811027,0.15841011,0.220373261,0.861342655,27.70374064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.26355253,1.599675264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.624039822,26.62988926,68.88759235,28.22956453,436.0269711,0,0.653884856,49.16485221,-0.653884856,130.8351478,0.973533938,0,493.3746465,28.22956453,511.8503319,5,17,4% -5/5/2018 2:00,78.81042564,282.3305836,121.3134308,401.6930221,43.36254926,230.1014679,187.1319476,42.9695203,42.05500841,0.914511885,30.72138667,0,30.72138667,1.307540851,29.41384582,1.375501412,4.927598263,4.271522251,-4.271522251,0,0.35744228,0.326885213,10.5137521,0.166888577,1,0.229967023,0,0.934764679,0.973526642,0.724496596,1,40.66962027,0.947308896,0.026458318,0.312029739,0.927709271,0.652205867,0.961238037,0.922476074,0.228226103,10.10621843,40.89784637,11.05352733,155.9017631,0,0.465858099,62.23422912,-0.465858099,117.7657709,0.94267118,0,187.8619454,11.05352733,195.0962579,5,18,4% -5/5/2018 3:00,89.70226016,291.2500336,0.08412785,1.092477178,0.078450774,0.362974497,0.286255113,0.076719385,0.076085193,0.000634191,0.022763351,0,0.022763351,0.00236558,0.020397771,1.565599786,5.083272032,144.6794567,-144.6794567,0,0.932518466,0.000591395,0.019021298,0.960335546,1,0.006911721,0,0.960622894,0.999384858,0.724496596,1,0.073206157,0.001713855,0.112686186,0.312029739,0.730550801,0.455047397,0.961238037,0.922476074,0.000425582,0.018283995,0.073631739,0.01999785,0.011354153,0,0.262023883,74.80981382,-0.262023883,105.1901862,0.8591777,0,0.083386974,0.01999785,0.096475167,5,19,16% -5/5/2018 4:00,100.8384969,301.0018357,0,0,0,0,0,0,0,0,0,0,0,0,0,1.759963784,5.253473087,-3.286882565,3.286882565,0.907756287,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03469125,88.01193891,-0.03469125,91.98806109,0,0,0,0,0,5,20,0% -5/5/2018 5:00,110.3405181,312.2228831,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92580534,5.449317311,-1.257118897,1.257118897,0.745133682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177182461,100.2056889,0.177182461,79.79431108,0,0.767805025,0,0,0,5,21,0% -5/5/2018 6:00,118.1356824,325.4936012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061856622,5.680935035,-0.46842023,0.46842023,0.610258267,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.367574125,111.5660849,0.367574125,68.43391512,0,0.913973015,0,0,0,5,22,0% -5/5/2018 7:00,123.4684329,341.061697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154930677,5.952649565,0.028027876,-0.028027876,0.52536064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523505829,121.5677108,0.523505829,58.43228923,0,0.95449008,0,0,0,5,23,0% -5/6/2018 8:00,125.5842534,358.3445983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191858711,6.254293097,0.439867495,-0.439867495,0.454931918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634349672,129.3717675,0.634349672,50.62823251,0,0.971179119,0,0,0,5,0,0% -5/6/2018 9:00,124.1078289,15.79109807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166090242,0.275606654,0.863538557,-0.863538557,0.382479899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69255143,133.8324176,0.69255143,46.16758241,0,0.977803196,0,0,0,5,1,0% -5/6/2018 10:00,119.306048,31.74079363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082283354,0.553981356,1.398895011,-1.398895011,0.290928554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694144786,133.9591068,0.694144786,46.04089316,0,0.977968918,0,0,0,5,2,0% -5/6/2018 11:00,111.8958976,45.41977816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952951832,0.792724674,2.262621304,-2.262621304,0.143222658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639021123,129.7188657,0.639021123,50.28113426,0,0.971755325,0,0,0,5,3,0% -5/6/2018 12:00,102.6521889,56.96323471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79161868,0.994195998,4.339862153,-4.339862153,0,#DIV/0!,0,0,0.174921881,1,0.226469211,0,0.935256749,0.974018712,0.724496596,1,0,0,0.0276346,0.312029739,0.924622809,0.649119405,0.961238037,0.922476074,0,0,0,0,0,0,-0.53093659,122.0687583,0.53093659,57.93124167,0,0.955826796,0,0,0,5,4,0% -5/6/2018 13:00,92.19436924,66.91945566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609095295,1.167964835,26.05988469,-26.05988469,0,#DIV/0!,0,0,0.797009918,1,0.038354337,0,0.957679271,0.996441234,0.724496596,1,0,0,0.098839828,0.312029739,0.758206561,0.482703157,0.961238037,0.922476074,0,0,0,0,0,0,-0.37725593,112.1638119,0.37725593,67.83618812,0,0.917463979,0,0,0,5,5,0% -5/6/2018 14:00,80.86909,75.92141592,86.72057895,322.8339684,35.48981906,35.07340643,0,35.07340643,34.41967007,0.653736355,82.39028313,60.29372576,22.09655737,1.070148988,21.02640838,1.411431884,1.325078681,-6.188516769,6.188516769,0.411547614,0.409243336,0.426476569,13.71695245,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.08549609,0.775319299,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.308980822,13.18525644,33.39447691,13.96057574,0,60.29372576,-0.186763884,100.7639881,0.186763884,79.23601193,0,0.782282286,33.39447691,61.12728937,73.40106526,5,6,120% -5/6/2018 15:00,69.25353715,84.61598738,293.5279461,633.1944993,69.22936479,84.15762793,14.80304627,69.35458166,67.14184401,2.212737645,73.25676967,0,73.25676967,2.087520778,71.16924889,1.208702242,1.47682758,-2.554514934,2.554514934,0.967001471,0.235852721,2.156941837,69.37466391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.53929433,1.512401697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562697018,66.68556575,66.10199135,68.19796744,14.80304627,0,0.023378356,88.66039684,-0.023378356,91.33960316,0,0,66.10199135,68.19796744,110.7361971,5,7,68% -5/6/2018 16:00,57.433384,93.75808222,503.4200461,770.1845165,88.84525575,276.3472975,186.3860611,89.96123644,86.16624349,3.794992953,124.7390308,0,124.7390308,2.679012265,122.0600186,1.002401651,1.636387235,-1.432982669,1.432982669,0.775208159,0.176483349,3.092464524,99.46428936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.82627073,1.940935266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24048002,95.60885824,85.06675075,97.54979351,186.3860611,0,0.242001828,75.99527994,-0.242001828,104.0047201,0.843389991,0,242.2628891,97.54979351,306.1072779,5,8,26% -5/6/2018 17:00,45.75060589,104.473785,688.5872067,840.0897506,102.3869568,485.6673,381.1768265,104.4904735,99.29961232,5.190861225,170.043285,0,170.043285,3.087344516,166.9559405,0.798498708,1.82341153,-0.84627304,0.84627304,0.674874903,0.148691343,3.754125261,120.7455731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.45056441,2.236770592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.719850972,116.0652377,98.17041538,118.3020082,381.1768265,0,0.453733457,63.01652783,-0.453733457,116.9834722,0.939803145,0,456.4015956,118.3020082,533.827894,5,9,17% -5/6/2018 18:00,34.73646173,118.8787516,833.4872798,878.1908569,111.8061941,680.3218781,565.6038741,114.718004,108.4348248,6.283179182,205.46001,0,205.46001,3.371369272,202.0886408,0.606265628,2.074825626,-0.456001131,0.456001131,0.608134476,0.134142652,4.151298724,133.520037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2316781,2.442545561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007601794,128.3445382,107.2392799,130.7870838,565.6038741,0,0.644055754,49.90508402,-0.644055754,130.094916,0.972366969,0,657.2138049,130.7870838,742.8113355,5,10,13% -5/6/2018 19:00,25.60382164,141.2771401,927.2666001,897.8781579,117.5567514,839.2821868,718.2800778,121.0021089,114.0119816,6.990127311,228.3712925,0,228.3712925,3.544769793,224.8265227,0.446870989,2.465751253,-0.153819388,0.153819388,0.556458354,0.126777726,4.282777996,137.7488623,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5926534,2.568173648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102858079,132.409446,112.6955115,134.9776196,718.2800778,0,0.799974998,36.87228507,-0.799974998,143.1277149,0.987498047,0,821.9956853,134.9776196,910.3358378,5,11,11% -5/6/2018 20:00,21.18864783,176.3007318,963.1593755,904.6125767,119.7027407,947.3316903,823.9777266,123.3539636,116.0932614,7.260702213,237.1386209,0,237.1386209,3.609479288,233.5291417,0.369811669,3.077028244,0.108804224,-0.108804224,0.511547072,0.124281343,4.154956136,133.6376719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5932587,2.615055457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.010251577,128.4576134,114.6035103,131.0726689,823.9777266,0,0.910862559,24.37517573,-0.910862559,155.6248243,0.995106976,0,934.5494944,131.0726689,1020.333935,5,12,9% -5/6/2018 21:00,24.28905561,213.2025523,938.6195851,900.0519925,118.2385158,994.0511679,872.3022687,121.7488992,114.6731883,7.075710907,231.1445129,0,231.1445129,3.565327505,227.5791854,0.423923993,3.721086512,0.361372001,-0.361372001,0.468355438,0.125970646,3.787819425,121.8292933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2282304,2.583067641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.744262279,117.1069507,112.9724927,119.6900183,872.3022687,0,0.969168755,14.26446029,-0.969168755,165.7355397,0.998409397,0,983.8872752,119.6900183,1062.221998,5,13,8% -5/6/2018 22:00,32.80646487,237.7935555,855.4143782,883.0913346,113.1712761,973.6314504,857.4242309,116.2072195,109.7587446,6.448474911,210.8176512,0,210.8176512,3.412531533,207.4051196,0.572580828,4.150280483,0.630042334,-0.630042334,0.422410105,0.132299946,3.216661896,103.4589038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5042802,2.472367479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.330460594,99.44863356,107.8347408,101.921001,857.4242309,0,0.970934939,13.8478006,-0.970934939,166.1521994,0.998503244,0,963.9756165,101.921001,1030.680873,5,14,7% -5/6/2018 23:00,43.58694551,253.2931535,719.5552629,849.1840125,104.4666834,884.6482934,777.9073544,106.7409389,101.3166274,5.424311513,177.6145602,0,177.6145602,3.150055944,174.4645042,0.76073571,4.420799502,0.950280955,-0.950280955,0.367646075,0.145182293,2.4922144,80.15818202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.38939603,2.282204808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805600849,77.05109353,99.19499688,79.33329834,777.9073544,0,0.916064531,23.6426402,-0.916064531,156.3573598,0.995418692,0,873.5385184,79.33329834,925.4605755,5,15,6% -5/6/2018 0:00,55.18615975,264.5022967,541.1441624,787.0734126,91.79458013,729.326631,636.2206228,93.10600813,89.02663486,4.079373276,133.9746126,0,133.9746126,2.767945277,131.2066673,0.963180189,4.616435957,1.39224971,-1.39224971,0.292064967,0.169630547,1.681323379,54.07713937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.57578772,2.005366931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218113064,51.98100328,86.79390078,53.98637021,636.2206228,0,0.808337078,36.06622379,-0.808337078,143.9337762,0.988144616,0,715.4718841,53.98637021,750.8048837,5,16,5% -5/6/2018 1:00,66.99555489,273.844914,334.6804707,667.880345,73.67113423,511.556456,437.5838156,73.97264047,71.44967772,2.522962757,83.36861142,0,83.36861142,2.221456515,81.14715491,1.169293017,4.779495389,2.154299287,-2.154299287,0.161746814,0.220123792,0.873616938,28.09852378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68014794,1.609437683,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.632932498,27.00936984,69.31308044,28.61880752,437.5838156,0,0.655182951,49.06647625,-0.655182951,130.9335237,0.973685438,0,495.3820695,28.61880752,514.1125067,5,17,4% -5/6/2018 2:00,78.65966019,282.5700719,123.7544413,405.7126181,43.97652809,233.2063532,189.6229664,43.58338677,42.65047352,0.932913252,31.33175164,0,31.33175164,1.326054578,30.00569706,1.372870059,4.931778122,4.202070916,-4.202070916,0,0.35535313,0.331513645,10.66261838,0.158562756,1,0.233632132,0,0.934246242,0.973008205,0.724496596,1,41.23712217,0.960722028,0.025230406,0.312029739,0.930942815,0.655439411,0.961238037,0.922476074,0.231769142,10.24931436,41.46889131,11.21003639,159.5558263,0,0.467382472,62.13547915,-0.467382472,117.8645208,0.943021234,0,191.9334236,11.21003639,199.2701682,5,18,4% -5/6/2018 3:00,89.56168815,291.4752013,0.153080726,1.5300769,0.141375775,0.541345743,0.403078982,0.138266761,0.137112774,0.001153987,0.041379196,0,0.041379196,0.004263001,0.037116194,1.563146342,5.08720195,97.93847081,-97.93847081,0,0.923537395,0.00106575,0.034278193,0.941922295,1,0.010210137,0,0.960325266,0.999087229,0.724496596,1,0.13198153,0.00308853,0.111200817,0.312029739,0.733443673,0.457940268,0.961238037,0.922476074,0.000764615,0.032949503,0.132746145,0.036038033,0.023409902,0,0.263437075,74.72589582,-0.263437075,105.2741042,0.860201354,0,0.152883375,0.036038033,0.176469547,5,19,15% -5/6/2018 4:00,100.6530565,301.214435,0,0,0,0,0,0,0,0,0,0,0,0,0,1.756727238,5.257183646,-3.330120774,3.330120774,0.900362118,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036838413,87.88883675,-0.036838413,92.11116325,0,0,0,0,0,5,20,0% -5/6/2018 5:00,110.1300251,312.4182345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.922131543,5.452726835,-1.263193628,1.263193628,0.746172522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17471035,100.0618027,0.17471035,79.93819729,0,0.763812032,0,0,0,5,21,0% -5/6/2018 6:00,117.897254,325.6575363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057695262,5.683796243,-0.467910436,0.467910436,0.610171087,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.364792119,111.3947899,0.364792119,68.60521009,0,0.912935635,0,0,0,5,22,0% -5/6/2018 7:00,123.204808,341.1699815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150329554,5.954539485,0.031197192,-0.031197192,0.524818656,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520450388,121.3624675,0.520450388,58.63753254,0,0.953929364,0,0,0,5,23,0% -5/7/2018 8:00,125.3067137,358.3732192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187014729,6.254792626,0.445070081,-0.445070081,0.454042223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631076145,129.1295633,0.631076145,50.87043671,0,0.970770258,0,0,0,5,0,0% -5/7/2018 9:00,123.8333341,15.73565053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161299403,0.274638912,0.871341039,-0.871341039,0.381145596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689130247,133.5612997,0.689130247,46.43870028,0,0.977444775,0,0,0,5,1,0% -5/7/2018 10:00,119.0486216,31.62021357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077790417,0.551876837,1.411389698,-1.411389698,0.288791836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690656601,133.682107,0.690656601,46.31789301,0,0.977605122,0,0,0,5,2,0% -5/7/2018 11:00,111.6615216,45.25892946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9488612,0.789917335,2.286695894,-2.286695894,0.139105661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635551272,129.4608833,0.635551272,50.53911668,0,0.971328141,0,0,0,5,3,0% -5/7/2018 12:00,102.4403494,56.7792365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787921385,0.990984624,4.412893949,-4.412893949,0,#DIV/0!,0,0,0.183337218,1,0.222845063,0,0.935763802,0.974525765,0.724496596,1,0,0,0.028857972,0.312029739,0.921424332,0.645920927,0.961238037,0.922476074,0,0,0,0,0,0,-0.527569227,121.8413639,0.527569227,58.15863606,0,0.955225708,0,0,0,5,4,0% -5/7/2018 13:00,92.00133539,66.71991613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605726219,1.164482213,28.57024864,-28.57024864,0,#DIV/0!,0,0,0.813281182,1,0.034987163,0,0.958005836,0.996767799,0.724496596,1,0,0,0.1002901,0.312029739,0.755237589,0.479734185,0.961238037,0.922476074,0,0,0,0,0,0,-0.374068236,111.9667358,0.374068236,68.03326417,0,0.916334548,0,0,0,5,5,0% -5/7/2018 14:00,80.69157824,75.7070639,89.46677914,328.8587728,36.27424267,35.85487879,0,35.85487879,35.18044042,0.674438372,83.2464875,60.46042883,22.78605867,1.093802254,21.69225641,1.408333719,1.321337532,-6.070771994,6.070771994,0.431683157,0.405449297,0.446550247,14.36259093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.81677749,0.79245601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.323524133,13.80586871,34.14030162,14.59832472,0,60.46042883,-0.18384922,100.5940468,0.18384922,79.40595319,0,0.778038008,34.14030162,61.63883636,74.48168724,5,6,118% -5/7/2018 15:00,69.08272373,84.3828676,296.4400556,634.9679108,69.74402058,86.39887849,16.5232071,69.87567139,67.64098103,2.234690356,73.9783631,0,73.9783631,2.103039548,71.87532355,1.205720985,1.472758872,-2.534369918,2.534369918,0.963556471,0.235271918,2.172410899,69.87220212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.01908381,1.523644994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573904301,67.1638184,66.59298812,68.68746339,16.5232071,0,0.026022114,88.5088744,-0.026022114,91.4911256,0,0,66.59298812,68.68746339,111.5475592,5,7,68% -5/7/2018 16:00,57.26338852,93.49864706,506.0673065,770.695647,89.2921115,278.7172947,188.3027207,90.414574,86.59962488,3.81494912,125.3943641,0,125.3943641,2.692486614,122.7018775,0.999434671,1.631859237,-1.426476722,1.426476722,0.774095576,0.176443154,3.105196396,99.87379013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.24285341,1.950697387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249704218,96.00248596,85.49255763,97.95318335,188.3027207,0,0.244328253,75.85786097,-0.244328253,104.142139,0.845357273,0,244.675632,97.95318335,308.7840314,5,8,26% -5/7/2018 17:00,45.57193678,104.1785025,690.9375244,840.1685507,102.808447,487.8103052,382.8933334,104.9169719,99.70839296,5.208578912,170.6258562,0,170.6258562,3.100053999,167.5258022,0.795380343,1.818257879,-0.843974845,0.843974845,0.674481888,0.148795576,3.765373072,121.1073414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.84349991,2.245978569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.727999973,116.4129831,98.57149988,118.6589616,382.8933334,0,0.455733951,62.8878321,-0.455733951,117.1121679,0.940286866,0,458.6010724,118.6589616,536.2609896,5,9,17% -5/7/2018 18:00,34.53451404,118.5465855,835.5754779,878.0955921,112.2136364,682.1554968,567.0265946,115.1289021,108.8299812,6.298920901,205.9786037,0,205.9786037,3.383655162,202.5949486,0.602740976,2.069028234,-0.455574865,0.455574865,0.60806158,0.134295033,4.161677909,133.8538672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6115175,2.451446646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015121478,128.6654286,107.626639,131.1168752,567.0265946,0,0.645745862,49.77837934,-0.645745862,130.2216207,0.972570158,0,659.0997838,131.1168752,744.9131563,5,10,13% -5/7/2018 19:00,25.3597367,140.976404,929.1555564,897.706812,117.95492,840.817485,719.414974,121.402511,114.398144,7.004367061,228.8412981,0,228.8412981,3.556776045,225.284522,0.442610903,2.460502418,-0.154495397,0.154495397,0.556573959,0.126948517,4.292740083,138.0692773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9638473,2.576872137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110075577,132.717441,113.0739229,135.2943132,719.414974,0,0.801391907,36.736774,-0.801391907,143.263226,0.987608554,0,823.574305,135.2943132,912.1217271,5,11,11% -5/7/2018 20:00,20.91259,176.3032159,964.9284461,904.4105341,120.0949943,948.6264221,824.8786967,123.7477254,116.4736872,7.274038214,237.5793805,0,237.5793805,3.621307183,233.9580733,0.364993551,3.077071599,0.107267451,-0.107267451,0.511809875,0.12446,4.164896191,133.9573783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9589384,2.623624726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.017453113,128.7649273,114.9763915,131.388552,824.8786967,0,0.912062239,24.20808834,-0.912062239,155.7919117,0.99517918,0,935.8784963,131.388552,1021.869676,5,12,9% -5/7/2018 21:00,24.0506536,213.5415327,940.3570498,899.8489907,118.6279848,995.1930126,873.0532906,122.139722,115.0509133,7.08880865,231.5775252,0,231.5775252,3.577071431,228.0004538,0.419763093,3.727002836,0.358944346,-0.358944346,0.468770591,0.126152066,3.798086408,122.1595147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5913141,2.591576075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.751700673,117.4243721,113.3430147,120.0159482,873.0532906,0,0.970222004,14.01744953,-0.970222004,165.9825505,0.998465403,0,985.0565203,120.0159482,1063.604558,5,13,8% -5/7/2018 22:00,32.62056366,238.1701717,857.2102489,882.9220514,113.5612261,974.7307146,858.1317655,116.5989491,110.1369361,6.462012944,211.2648393,0,211.2648393,3.424289963,207.8405493,0.56933624,4.156853677,0.626438709,-0.626438709,0.423026361,0.132477681,3.227533081,103.8085585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8678123,2.480886421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33833673,99.78473494,108.206149,102.2656214,858.1317655,0,0.971922452,13.60938962,-0.971922452,166.3906104,0.998555566,0,965.0984002,102.2656214,1032.029204,5,14,7% -5/7/2018 23:00,43.43078132,253.6227291,721.4936332,849.1157907,104.8611282,885.8378056,778.6997035,107.138102,101.6991783,5.438923767,178.0964344,0,178.0964344,3.161949911,174.9344845,0.758010131,4.426551681,0.944779477,-0.944779477,0.368586883,0.145338952,2.503840123,80.53210524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.75711847,2.290821947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.814023646,77.41052274,99.57114212,79.70134469,778.6997035,0,0.917071278,23.49839008,-0.917071278,156.5016099,0.995478611,0,874.7500413,79.70134469,926.9129774,5,15,6% -5/7/2018 0:00,55.04202054,264.788125,543.2929033,787.2792526,92.20116518,730.7767729,637.2602417,93.51653126,89.42095987,4.095571393,134.5078597,0,134.5078597,2.780205316,131.7276544,0.960664485,4.621424601,1.383000134,-1.383000134,0.293646738,0.169708024,1.693602952,54.47209266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.95482791,2.014249287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.227009573,52.36064741,87.18183749,54.3748967,637.2602417,0,0.809446254,35.95813585,-0.809446254,144.0418641,0.988229376,0,716.9411286,54.3748967,752.528411,5,16,5% -5/7/2018 1:00,66.85227242,274.0999915,337.0651468,668.9073228,74.11554106,513.5388043,439.1171808,74.4216235,71.88068404,2.540939453,83.96020426,0,83.96020426,2.23485702,81.72534723,1.166792266,4.783947331,2.135179628,-2.135179628,0.165016468,0.219884915,0.885814057,28.49082503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.09444762,1.619146303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.641769269,27.38646472,69.73621689,29.00561103,439.1171808,0,0.656469388,48.96883915,-0.656469388,131.0311609,0.973834986,0,497.3638906,29.00561103,516.3474829,5,17,4% -5/7/2018 2:00,78.50989276,282.804571,126.1838859,409.6383114,44.58445194,236.2707955,192.0795019,44.19129365,43.24006621,0.951227433,31.93912978,0,31.93912978,1.344385725,30.59474405,1.370256124,4.935870903,4.134958709,-4.134958709,0,0.353329204,0.336096431,10.81001655,0.150357709,1,0.237284403,0,0.933726744,0.972488707,0.724496596,1,41.79846606,0.974002881,0.024011452,0.312029739,0.93416449,0.658661085,0.961238037,0.922476074,0.235296119,10.39099909,42.03376218,11.36500197,163.198868,0,0.468900238,62.03706772,-0.468900238,117.9629323,0.94336751,0,195.9902719,11.36500197,203.4284384,5,18,4% -5/7/2018 3:00,89.42075828,291.695288,0.246433862,2.094261994,0.225261914,0.775035974,0.554708815,0.220327159,0.218469437,0.001857723,0.066543221,0,0.066543221,0.006792478,0.059750743,1.560686652,5.091043188,73.85671988,-73.85671988,0,0.914086694,0.001698119,0.054617359,0.923664642,1,0.013538902,0,0.960022236,0.9987842,0.724496596,1,0.210381948,0.004921127,0.109709807,0.312029739,0.736365406,0.460862002,0.961238037,0.922476074,0.001214724,0.052500283,0.211596672,0.05742141,0.042343896,0,0.264870783,74.64072513,-0.264870783,105.3592749,0.861228708,0,0.248064451,0.05742141,0.285645615,5,19,15% -5/7/2018 4:00,100.4690927,301.4217377,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753516464,5.260801759,-3.374711623,3.374711623,0.892736634,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.038980601,87.7660101,-0.038980601,92.2339899,0,0,0,0,0,5,20,0% -5/7/2018 5:00,109.9215624,312.6080531,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918493183,5.456039795,-1.269450263,1.269450263,0.74724247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.17224586,99.91842382,0.17224586,80.08157618,0,0.75971726,0,0,0,5,21,0% -5/7/2018 6:00,117.6616481,325.8159418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053583163,5.686560941,-0.467487974,0.467487974,0.610098841,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.362022671,111.2244673,0.362022671,68.77553274,0,0.911887103,0,0,0,5,22,0% -5/7/2018 7:00,122.9449452,341.273419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145794092,5.956344811,0.034293323,-0.034293323,0.524289186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.517414397,121.1589736,0.517414397,58.84102636,0,0.953365658,0,0,0,5,23,0% -5/8/2018 8:00,125.033766,358.3986155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.182250893,6.255235875,0.450195883,-0.450195883,0.453165659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627830443,128.8902374,0.627830443,51.10976265,0,0.970360663,0,0,0,5,0,0% -5/8/2018 9:00,123.5638852,15.67902958,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156596634,0.27365069,0.879054311,-0.879054311,0.379826549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685746165,133.2943171,0.685746165,46.70568289,0,0.977086723,0,0,0,5,1,0% -5/8/2018 10:00,118.7963179,31.50008715,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073386886,0.549780235,1.423777408,-1.423777408,0.286673413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687215063,133.4100592,0.687215063,46.58994075,0,0.977242573,0,0,0,5,2,0% -5/8/2018 11:00,111.4321635,45.09946826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944858145,0.787134212,2.310674533,-2.310674533,0.135005072,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632137225,129.2079797,0.632137225,50.79202026,0,0.97090325,0,0,0,5,3,0% -5/8/2018 12:00,102.2334037,56.59707519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784309501,0.987805309,4.48654678,-4.48654678,0,#DIV/0!,0,0,0.191652027,1,0.219303847,0,0.936256501,0.975018464,0.724496596,1,0,0,0.03005793,0.312029739,0.918298514,0.642795109,0.961238037,0.922476074,0,0,0,0,0,0,-0.524265802,121.6188305,0.524265802,58.38116948,0,0.95462853,0,0,0,5,4,0% -5/8/2018 13:00,91.81312464,66.52241747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.602441322,1.161035211,31.53185541,-31.53185541,0,#DIV/0!,0,0,0.829412993,1,0.031703334,0,0.958321707,0.99708367,0.724496596,1,0,0,0.101711781,0.312029739,0.752343556,0.476840152,0.961238037,0.922476074,0,0,0,0,0,0,-0.370951034,111.774282,0.370951034,68.225718,0,0.915211321,0,0,0,5,5,0% -5/8/2018 14:00,80.51879866,75.49484272,92.15076495,334.5984226,37.03437504,36.61232338,0,36.61232338,35.91765199,0.694671391,84.02471602,60.56497312,23.4597429,1.11672305,22.34301985,1.405318146,1.317633574,-5.960317288,5.960317288,0.450572024,0.401888959,0.466389216,15.00068038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.52541329,0.809062048,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337897399,14.41922456,34.86331069,15.22828661,0,60.56497312,-0.181007946,100.4284753,0.181007946,79.57152471,0,0.773769032,34.86331069,62.09158726,75.50101272,5,6,117% -5/8/2018 15:00,68.91682634,84.15189064,299.2603084,636.6364793,70.24764676,88.58614113,18.2007695,70.38537163,68.12942102,2.255950613,74.67735222,0,74.67735222,2.118225736,72.55912648,1.20282553,1.468727563,-2.515108215,2.515108215,0.960262526,0.234737601,2.187348068,70.35263284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.48859091,1.534647335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58472623,67.62562668,67.07331714,69.16027401,18.2007695,0,0.028588952,88.36175052,-0.028588952,91.63824948,0,0,67.07331714,69.16027401,112.3373333,5,7,67% -5/8/2018 16:00,57.09852727,93.24122645,508.6224192,771.1595548,89.73160954,281.0109889,190.1509079,90.86008108,87.02587044,3.834210639,126.0271333,0,126.0271333,2.705739102,123.3213942,0.996557299,1.6273664,-1.420248346,1.420248346,0.773030461,0.17642087,3.117491707,100.2692496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.65257685,1.960298769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.258612129,96.38261665,85.91118898,98.34291542,190.1509079,0,0.246577906,75.72489777,-0.246577906,104.2751022,0.84722433,0,247.0116645,98.34291542,311.3751358,5,8,26% -5/8/2018 17:00,45.39873136,103.884704,693.2007795,840.2206288,103.2240533,489.8728237,384.5357161,105.3371076,100.1114673,5.225640285,171.1871407,0,171.1871407,3.112586065,168.0745546,0.792357339,1.813130127,-0.84179679,0.84179679,0.674109419,0.148909315,3.776243957,121.4569864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.23095028,2.255058008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.735875892,116.7490752,98.96682617,119.0041332,384.5357161,0,0.457660408,62.76375933,-0.457660408,117.2362407,0.940748688,0,460.7182966,119.0041332,538.6041217,5,9,17% -5/8/2018 18:00,34.3384153,118.2141785,837.5842854,877.9827754,112.6161027,683.9114238,568.3770479,115.5343758,109.2203117,6.314064141,206.4777982,0,206.4777982,3.395791005,203.0820072,0.599318407,2.063226637,-0.455206733,0.455206733,0.607998626,0.134453457,4.171731005,134.1772094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.986718,2.460239024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.022404912,128.9762373,108.0091229,131.4364763,568.3770479,0,0.647366969,49.65662449,-0.647366969,130.3433755,0.972764054,0,660.9058845,131.4364763,746.9284295,5,10,13% -5/8/2018 19:00,25.1215136,140.6712471,930.9743372,897.5226618,118.3488327,842.2816899,720.4834334,121.7982565,114.7801787,7.018077799,229.2941605,0,229.2941605,3.568653967,225.7255065,0.438453125,2.455176425,-0.155197678,0.155197678,0.556694056,0.127123625,4.302423572,138.3807316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3310737,2.585477651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.117091232,133.0168227,113.4481649,135.6023004,720.4834334,0,0.802746787,36.60679239,-0.802746787,143.3932076,0.987713858,0,825.0796369,135.6023004,913.8286304,5,11,11% -5/8/2018 20:00,20.64134722,176.2997466,966.6373019,904.198338,120.4836261,949.8589573,825.7214367,124.1375206,116.8506003,7.286920291,238.0054311,0,238.0054311,3.633025866,234.3724052,0.360259471,3.077011049,0.105725301,-0.105725301,0.512073598,0.12464202,4.174601803,134.2695441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3212416,2.632114872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024484796,129.064993,115.3457264,131.6971078,825.7214367,0,0.913208311,24.04744878,-0.913208311,155.9525512,0.99524798,0,937.143318,131.6971078,1023.336441,5,12,9% -5/8/2018 21:00,23.81608709,213.8763,942.0442571,899.6372772,119.0143982,996.2827494,873.7555469,122.5272025,115.4256749,7.101527531,231.99826,0,231.99826,3.588723221,228.4095367,0.415669135,3.732845628,0.356529422,-0.356529422,0.469183568,0.126336313,3.808158337,122.4834626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9515492,2.600017757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758997751,117.7357631,113.7105469,120.3357809,873.7555469,0,0.971230927,13.77676611,-0.971230927,166.2232339,0.998518938,0,986.1720073,120.3357809,1064.929369,5,13,8% -5/8/2018 22:00,32.43745556,238.5412916,858.9651076,882.7445451,113.9486061,975.7881041,858.8002271,116.987877,110.5126352,6.47524181,211.702006,0,211.702006,3.435970899,208.2660351,0.5661404,4.163330941,0.622869248,-0.622869248,0.423636775,0.132658015,3.238242374,104.1530061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2289485,2.48934922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346095577,100.1158312,108.5750441,102.6051804,858.8002271,0,0.972875145,13.37543589,-0.972875145,166.6245641,0.998605944,0,966.1780553,102.6051804,1033.331094,5,14,7% -5/8/2018 23:00,43.27653745,253.9466439,723.3989009,849.0385598,105.2533732,886.9946609,779.4617787,107.5328822,102.0795957,5.45328648,178.5702163,0,178.5702163,3.173777546,175.3964387,0.755318067,4.43220506,0.939346599,-0.939346599,0.36951596,0.145498387,2.515330413,80.90167246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.12279014,2.299391028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.822348321,77.76576481,99.94513847,80.06515584,779.4617787,0,0.918052272,23.35702189,-0.918052272,156.6429781,0.99553687,0,875.9280781,80.06515584,928.3291213,5,15,6% -5/8/2018 0:00,54.89926364,265.0685704,545.4146801,787.4722611,92.60571413,732.200821,638.2759446,93.92487641,89.81331017,4.111566243,135.0345077,0,135.0345077,2.79240396,132.2421038,0.958172907,4.626319296,1.373894186,-1.373894186,0.295203946,0.169789552,1.705769403,54.86340755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.33196995,2.023087163,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235824126,52.73679417,87.56779407,54.75988134,638.2759446,0,0.810537686,35.85150186,-0.810537686,144.1484981,0.988312554,0,718.3839228,54.75988134,754.22317,5,16,5% -5/8/2018 1:00,66.71010371,274.3499204,339.4274616,669.9064963,74.55746316,515.4953475,440.6273194,74.86802814,72.30928056,2.558747581,84.54630043,0,84.54630043,2.248182602,82.29811783,1.164310954,4.788309414,2.116448668,-2.116448668,0.168219651,0.219656544,0.897930153,28.88052033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50643089,1.628800642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.650547339,27.76105467,70.15697823,29.38985531,440.6273194,0,0.657744509,48.87191777,-0.657744509,131.1280822,0.973982642,0,499.3203388,29.38985531,518.5554113,5,17,4% -5/8/2018 2:00,78.36116229,283.0340031,128.6007175,413.4710408,45.18629404,239.2947033,194.5014962,44.79320709,43.82376056,0.969446529,32.54326632,0,32.54326632,1.362533485,31.18073284,1.367660288,4.939875249,4.07010049,-4.07010049,0,0.351368911,0.340633371,10.95594014,0.142274738,1,0.240922038,0,0.933206481,0.971968444,0.724496596,1,42.35363099,0.987150872,0.022801948,0.312029739,0.937372723,0.661869319,0.961238037,0.922476074,0.238806643,10.53126639,42.59243763,11.51841726,166.8288469,0,0.470411412,61.93899449,-0.470411412,118.0610055,0.943710062,0,200.030499,11.51841726,207.5690727,5,18,4% -5/8/2018 3:00,89.27951054,291.9102311,0.368291823,2.804837932,0.333022158,1.072754745,0.746998095,0.325756651,0.322980312,0.002776339,0.099338463,0,0.099338463,0.010041847,0.089296616,1.558221414,5.094794653,59.17758955,-59.17758955,0,0.904234463,0.002510462,0.080745078,0.905569601,1,0.016896681,0,0.959713861,0.998475824,0.724496596,1,0.311150889,0.007275284,0.108213879,0.312029739,0.739314773,0.463811369,0.961238037,0.922476074,0.00179071,0.07761524,0.312941599,0.084890524,0.070539328,0,0.266324869,74.55430841,-0.266324869,105.4456916,0.862259365,0,0.373764795,0.084890524,0.429323945,5,19,15% -5/8/2018 4:00,100.2866759,301.6236985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750332691,5.26432664,-3.4206931,3.4206931,0.884873338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041117121,87.6434982,-0.041117121,92.3565018,0,0,0,0,0,5,20,0% -5/8/2018 5:00,109.7152144,312.7923176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91489173,5.459255817,-1.275890415,1.275890415,0.748343801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169790044,99.77561202,0.169790044,80.22438798,0,0.755518659,0,0,0,5,21,0% -5/8/2018 6:00,117.4289573,325.9688256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049521942,5.689229266,-0.467155049,0.467155049,0.610041908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.359267164,111.0551969,0.359267164,68.94480309,0,0.910827805,0,0,0,5,22,0% -5/8/2018 7:00,122.6889367,341.3720415,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141325902,5.958066098,0.037313009,-0.037313009,0.523772789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51439951,120.9573259,0.51439951,59.04267415,0,0.952799285,0,0,0,5,23,0% -5/9/2018 8:00,124.7654963,358.4208205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177568704,6.255623426,0.455240268,-0.455240268,0.452303019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624614413,128.653892,0.624614413,51.34610805,0,0.969950614,0,0,0,5,0,0% -5/9/2018 9:00,123.2995629,15.62125456,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151983339,0.272642325,0.886671393,-0.886671393,0.378523951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682401139,133.0315626,0.682401139,46.96843738,0,0.976729313,0,0,0,5,1,0% -5/9/2018 10:00,118.5492143,31.38042852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069074114,0.547691798,1.436046154,-1.436046154,0.284575334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683822133,133.1430449,0.683822133,46.85695512,0,0.976881571,0,0,0,5,2,0% -5/9/2018 11:00,111.2078965,44.94141799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940943949,0.784375715,2.334531353,-2.334531353,0.130925316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628780853,128.9602333,0.628780853,51.03976674,0,0.970481039,0,0,0,5,3,0% -5/9/2018 12:00,102.0314185,56.41678999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780784193,0.984658739,4.560742089,-4.560742089,0,#DIV/0!,0,0,0.199858626,1,0.215846804,0,0.936734861,0.975496825,0.724496596,1,0,0,0.031233782,0.312029739,0.915246483,0.639743079,0.961238037,0.922476074,0,0,0,0,0,0,-0.521028007,121.4012335,0.521028007,58.59876653,0,0.954035869,0,0,0,5,4,0% -5/9/2018 13:00,91.62979514,66.32701636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599241618,1.157624819,35.07352946,-35.07352946,0,#DIV/0!,0,0,0.845387279,1,0.028503808,0,0.958626988,0.997388951,0.724496596,1,0,0,0.10310398,0.312029739,0.749525282,0.474021878,0.961238037,0.922476074,0,0,0,0,0,0,-0.367905761,111.586518,0.367905761,68.413482,0,0.914095632,0,0,0,5,5,0% -5/9/2018 14:00,80.35080645,75.28482824,94.76967566,340.0592891,37.7705526,37.34604493,0,37.34604493,36.63163108,0.714413846,84.72952886,60.61260227,24.11692659,1.138921519,22.97800507,1.402386129,1.31396813,-5.856637416,5.856637416,0.468302326,0.398551038,0.485952147,15.62989148,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.21171715,0.825144764,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.352070676,15.02404621,35.56378782,15.84919097,0,60.61260227,-0.178241278,100.267336,0.178241278,79.73266405,0,0.769481365,35.56378782,62.4894589,76.46188888,5,6,115% -5/9/2018 15:00,68.75588593,83.92315612,301.9880405,638.2024565,70.74029944,90.71785328,19.83412147,70.88373181,68.6072184,2.276513409,75.35357774,0,75.35357774,2.133081032,73.22049671,1.20001659,1.464735393,-2.496702682,2.496702682,0.957114994,0.234248679,2.201754417,70.81599052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94786793,1.545409946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.59516358,68.07102371,67.54303151,69.61643365,19.83412147,0,0.031078103,88.21906912,-0.031078103,91.78093088,0,0,67.54303151,69.61643365,113.105595,5,7,67% -5/9/2018 16:00,56.93883451,92.9859533,511.0852299,771.5769269,90.16375327,283.2278271,191.9300673,91.29775978,87.44498344,3.852776347,126.637301,0,126.637301,2.71876983,123.9185311,0.993770134,1.622911043,-1.41429295,1.41429295,0.772012028,0.176416277,3.129351387,100.6506977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.05544421,1.969739487,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267204427,96.74927905,86.32264864,98.71901853,191.9300673,0,0.248750398,75.59642052,-0.248750398,104.4035795,0.848995296,0,249.270373,98.71901853,313.8799963,5,8,26% -5/9/2018 17:00,45.23102319,103.5925716,695.3771618,840.2462999,103.6337851,491.85482,386.1039291,105.7508909,100.5088441,5.242046774,171.7271847,0,171.7271847,3.124940989,168.6022437,0.789430279,1.808031455,-0.839737661,0.839737661,0.673757287,0.149032483,3.78673952,121.7945598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.61292402,2.264009109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.743479892,117.0735636,99.35640391,119.3375727,386.1039291,0,0.459512799,62.64432622,-0.459512799,117.3556738,0.941189103,0,462.7532144,119.3375727,540.857269,5,9,17% -5/9/2018 18:00,34.14821249,117.8817707,839.5141471,877.8526097,113.0136136,685.5900106,569.6555622,115.9344484,109.6058361,6.328612253,206.9577019,0,206.9577019,3.407777425,203.5499245,0.595998742,2.057425027,-0.454896255,0.454896255,0.607945531,0.134617879,4.181460127,134.4901314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3572988,2.468923144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.029453628,129.2770299,108.3867524,131.745953,569.6555622,0,0.64891937,49.53982356,-0.64891937,130.4601764,0.972948825,0,662.6324622,131.745953,748.8575535,5,10,13% -5/9/2018 19:00,24.88923493,140.3618409,932.7235487,897.3258706,118.7385188,843.6754492,721.4860707,122.1893785,115.1581144,7.031264094,229.7300275,0,229.7300275,3.580404441,226.1496231,0.434399098,2.449776268,-0.155925891,0.155925891,0.556818587,0.127303014,4.311830715,138.6832976,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6943598,2.59399083,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123906675,133.3076608,113.8182665,135.9016516,721.4860707,0,0.804040198,36.48233651,-0.804040198,143.5176635,0.987814054,0,826.5123472,135.9016516,915.4572601,5,11,11% -5/9/2018 20:00,20.37500357,176.2901143,968.2866093,903.9761364,120.8686694,951.0301413,826.5067548,124.5233865,117.224033,7.299353467,238.4169352,0,238.4169352,3.644636339,234.7722989,0.355610897,3.076842934,0.104178148,-0.104178148,0.512338177,0.124827368,4.184074949,134.574233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6801994,2.640526621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031348057,129.3578716,115.7115474,131.9983982,826.5067548,0,0.914301519,23.89327253,-0.914301519,156.1067275,0.995313445,0,938.3448332,131.9983982,1024.735145,5,12,9% -5/9/2018 21:00,23.58538385,214.2065092,943.6818288,899.4169936,119.3977879,997.3213103,874.4099341,122.9113763,115.797504,7.113872239,232.4068688,0,232.4068688,3.600283835,228.806585,0.411642604,3.738608864,0.354127714,-0.354127714,0.469594284,0.126523352,3.818036521,122.8011789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3089654,2.608393383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766154462,118.0411642,114.0751199,120.6495575,874.4099341,0,0.972196368,13.54253028,-0.972196368,166.4574697,0.998570061,0,987.234701,120.6495575,1066.197423,5,13,8% -5/9/2018 22:00,32.25713732,238.9066561,860.6794303,882.5589526,114.3334412,976.8045179,859.4304866,117.3740312,110.8858661,6.488165098,212.1292676,0,212.1292676,3.447575099,208.6816925,0.562993254,4.169707754,0.619334589,-0.619334589,0.424241237,0.132840913,3.248790081,104.4922567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5877123,2.497756423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353737355,100.4419317,108.9414496,102.9396881,859.4304866,0,0.973793857,13.14595689,-0.973793857,166.8540431,0.998654431,0,967.215513,102.9396881,1034.58748,5,14,7% -5/9/2018 23:00,43.12421197,254.2647287,725.2713051,848.9524492,105.6434313,888.1196037,780.1943102,107.9252935,102.457892,5.467401454,179.0359641,0,179.0359641,3.185539235,175.8504248,0.752659486,4.437756688,0.933983105,-0.933983105,0.370433172,0.145660569,2.526684321,81.26685318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.486423,2.307912332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830574189,78.11679041,100.3169972,80.42470274,780.1943102,0,0.919008256,23.21847625,-0.919008256,156.7815237,0.995593525,0,877.0734004,80.42470274,929.7097599,5,15,6% -5/9/2018 0:00,54.75789942,265.3435127,547.5094206,787.6525594,93.00822152,733.5992539,639.2682161,94.33103776,90.20368048,4.127357282,135.5545389,0,135.5545389,2.804541043,132.7499979,0.955705636,4.631117945,1.364932464,-1.364932464,0.296736491,0.169875107,1.717820361,55.25100778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70720874,2.031880438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.244555004,53.10937025,87.95176374,55.14125069,639.2682161,0,0.811611933,35.74627809,-0.811611933,144.2537219,0.988394203,0,719.8007627,55.14125069,755.8896084,5,16,5% -5/9/2018 1:00,66.56907427,274.5946078,341.7669687,670.8780627,74.99687165,517.42624,442.114417,75.31182304,72.73543926,2.576383773,85.12679079,0,85.12679079,2.261432389,82.8653584,1.161849526,4.792580013,2.098103446,-2.098103446,0.171356869,0.219438619,0.909961161,29.2674789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.91607085,1.638400068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.659263763,28.13301396,70.57533461,29.77141403,442.114417,0,0.659008606,48.77569278,-0.659008606,131.2243072,0.974128457,0,501.2515693,29.77141403,520.7363643,5,17,4% -5/9/2018 2:00,78.2135111,283.258293,131.0038427,417.2116393,45.78201693,242.2779088,196.8888262,45.38908251,44.40152021,0.987562303,33.1438951,0,33.1438951,1.380496728,31.76339838,1.365083288,4.943789847,4.007416779,-4.007416779,0,0.349470794,0.345124182,11.10038005,0.134315264,1,0.244543142,0,0.932685768,0.971447731,0.724496596,1,42.90258738,1.00016518,0.021602415,0.312029739,0.940565861,0.665062456,0.961238037,0.922476074,0.242300219,10.67010753,43.1448876,11.67027271,170.4436516,0,0.471915948,61.8412631,-0.471915948,118.1587369,0.944048929,0,204.0520343,11.67027271,211.6899944,5,18,4% -5/9/2018 3:00,89.13803387,292.119971,0.522578501,3.680346093,0.467212922,1.442654853,0.985590707,0.457064146,0.453124729,0.003939417,0.140793401,0,0.140793401,0.014088193,0.126705208,1.55575218,5.098455305,49.30064508,-49.30064508,0,0.894053087,0.003522048,0.113281182,0.887649957,1,0.020280929,0,0.959400308,0.998162271,0.724496596,1,0.436701321,0.010206848,0.106714272,0.312029739,0.742289476,0.466786072,0.961238037,0.922476074,0.002505362,0.108890181,0.439206683,0.119097029,0.110731158,0,0.267798376,74.46670069,-0.267798376,105.5332993,0.86329237,0,0.534800047,0.119097029,0.612746671,5,19,15% -5/9/2018 4:00,100.1058795,301.8202759,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747177198,5.267757563,-3.468102098,3.468102098,0.876765922,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.043247213,87.52134416,-0.043247213,92.47865584,0,0,0,0,0,5,20,0% -5/9/2018 5:00,109.5110674,312.9710102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911328694,5.462374592,-1.282515171,1.282515171,0.749476701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.167344021,99.63343056,0.167344021,80.36656944,0,0.751214302,0,0,0,5,21,0% -5/9/2018 6:00,117.1992755,326.1161995,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045513238,5.691801425,-0.466913689,0.466913689,0.610000633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356527032,110.8870617,0.356527032,69.11293832,0,0.909758179,0,0,0,5,22,0% -5/9/2018 7:00,122.4368755,341.4658847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136926603,5.959703971,0.040253058,-0.040253058,0.523270011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.511407416,120.7576226,0.511407416,59.24237745,0,0.952230593,0,0,0,5,23,0% -5/10/2018 8:00,124.5019901,358.439872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172969653,6.255955937,0.460198616,-0.460198616,0.451455091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621429919,128.4206301,0.621429919,51.5793699,0,0.969540404,0,0,0,5,0,0% -5/10/2018 9:00,123.0404463,15.56234962,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147460901,0.27161424,0.894185255,-0.894185255,0.377239005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679097119,132.7731289,0.679097119,47.22687106,0,0.976372829,0,0,0,5,1,0% -5/10/2018 10:00,118.307386,31.26125682,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064853416,0.54561186,1.448183761,-1.448183761,0.282499681,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680479753,132.8811441,0.680479753,47.11885594,0,0.976522428,0,0,0,5,2,0% -5/10/2018 11:00,110.9887912,44.7848066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93711984,0.78164233,2.358239674,-2.358239674,0.126870954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62548399,128.7177198,0.62548399,51.28228017,0,0.970061903,0,0,0,5,3,0% -5/10/2018 12:00,101.8344567,56.23842405,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777346561,0.981545666,4.635394441,-4.635394441,0,#DIV/0!,0,0,0.207949303,1,0.212475112,0,0.937198905,0.975960868,0.724496596,1,0,0,0.032384856,0.312029739,0.912269317,0.636765913,0.961238037,0.922476074,0,0,0,0,0,0,-0.51785748,121.1886449,0.51785748,58.81135508,0,0.953448339,0,0,0,5,4,0% -5/10/2018 13:00,91.45140087,66.133773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596128051,1.154252086,39.3779269,-39.3779269,0,#DIV/0!,0,0,0.861185693,1,0.025389481,0,0.958921783,0.997683746,0.724496596,1,0,0,0.104465829,0.312029739,0.746783525,0.471280121,0.961238037,0.922476074,0,0,0,0,0,0,-0.36493378,111.4035075,0.36493378,68.59649251,0,0.912988842,0,0,0,5,5,0% -5/10/2018 14:00,80.18765169,75.07709974,97.32089326,345.247803,38.48311742,38.05635544,0,38.05635544,37.32270944,0.733646002,85.36535571,60.60837042,24.75698529,1.160407978,23.59657731,1.399538541,1.310342583,-5.759267338,5.759267338,0.48495359,0.395425033,0.505200253,16.24897676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.87600795,0.84071163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.366015864,15.61913452,36.24202382,16.45984615,0,60.60837042,-0.175550344,100.1106863,0.175550344,79.88931372,0,0.765181418,36.24202382,62.83624494,77.36708941,5,6,113% -5/10/2018 15:00,68.59993851,83.69676725,304.6226889,639.668029,71.22203626,92.7925734,21.42176981,71.37080359,69.07442909,2.296374502,76.00690489,0,76.00690489,2.147607175,73.85929771,1.197294794,1.460784162,-2.479127421,2.479127421,0.954109447,0.233804109,2.215631327,71.26231966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39696861,1.555934087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.605217354,68.50005225,68.00218597,70.05598634,21.42176981,0,0.033488886,88.08086933,-0.033488886,91.91913067,0,0,68.00218597,70.05598634,113.8524279,5,7,67% -5/10/2018 16:00,56.78433918,92.73296483,513.4556696,771.9484447,90.58855034,285.3673528,193.6397358,91.72761703,87.85697131,3.870645722,127.2248507,0,127.2248507,2.731579029,124.4932717,0.991073682,1.618495561,-1.408605973,1.408605973,0.771039498,0.176429156,3.140776661,101.0181738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.45146262,1.979019708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275481999,97.10251104,86.72694462,99.08153075,193.6397358,0,0.250845425,75.47245428,-0.250845425,104.5275457,0.850674061,0,251.4512449,99.08153075,316.2981252,5,8,26% -5/10/2018 17:00,45.06884009,103.3022941,697.4669321,840.2458818,104.0376553,493.7563462,387.5980097,106.1583365,100.9005361,5.257800346,172.2460519,0,172.2460519,3.137119165,169.1089327,0.78659965,1.802965157,-0.837796164,0.837796164,0.673425272,0.149165001,3.796861586,122.1201202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.98943326,2.272832156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.750813294,117.3865046,99.74024655,119.6593368,387.5980097,0,0.461291175,62.52954393,-0.461291175,117.4704561,0.941608592,0,464.7058627,119.6593368,543.0205054,5,9,17% -5/10/2018 18:00,33.9639466,117.5496154,841.3655609,877.7053009,113.4061926,687.1916833,570.8625369,116.3291465,109.9865775,6.342568992,207.4184364,0,207.4184364,3.419615132,203.9988212,0.592782695,2.051627823,-0.45464286,0.45464286,0.607902198,0.134788251,4.190867524,134.7927056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7232818,2.477499522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036269255,129.5678757,108.7595511,132.0453752,570.8625369,0,0.650403428,49.42797444,-0.650403428,130.5720256,0.973124636,0,664.2799497,132.0453752,750.7010069,5,10,13% -5/10/2018 19:00,24.66297905,140.0483831,934.4038302,897.1166027,119.1240095,844.9994676,722.4235557,122.5759119,115.5319811,7.043930766,230.1490552,0,230.1490552,3.592028407,226.5570268,0.430450188,2.444305397,-0.156679613,0.156679613,0.556947482,0.127486645,4.320963808,138.9770493,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0537347,2.602412353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13052357,133.590026,114.1842583,136.1924384,722.4235557,0,0.805272752,36.36339529,-0.805272752,143.6366047,0.987909237,0,827.8731616,136.1924384,917.0083887,5,11,11% -5/10/2018 20:00,20.11364319,176.2741218,969.8770456,903.7440757,121.2501578,952.140855,827.235494,124.905361,117.5940182,7.311342848,238.8140582,0,238.8140582,3.656139623,235.1579186,0.351049298,3.076563812,0.102626451,-0.102626451,0.512603533,0.125016009,4.193317558,134.8715071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0358432,2.648860711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.038044296,129.6436227,116.0738875,132.2924834,827.235494,0,0.915342647,23.74556566,-0.915342647,156.2544343,0.995375647,0,939.4839524,132.2924834,1026.066737,5,12,9% -5/10/2018 21:00,23.35857269,214.5318146,945.2703758,899.1882765,119.778185,998.3096387,875.0173605,123.2922782,116.1664308,7.125847377,232.8035008,0,232.8035008,3.611754213,229.1917466,0.407684002,3.744286515,0.351739796,-0.351739796,0.470002642,0.126713148,3.827722141,123.1127018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6635919,2.616703633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.773171661,118.3406117,114.4367636,120.9573154,875.0173605,0,0.973119182,13.31485822,-0.973119182,166.6851418,0.998618832,0,988.2455782,120.9573154,1067.409722,5,13,8% -5/10/2018 22:00,32.07960812,239.2660092,862.3536612,882.3654014,114.7157546,977.7808405,860.0234029,117.7574375,111.2566514,6.500786158,212.5467324,0,212.5467324,3.459103258,209.0876291,0.559894784,4.175979648,0.615835473,-0.615835473,0.424839621,0.133026344,3.259176314,104.8263136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9441251,2.506108535,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.361262145,100.7630399,109.3053873,103.2691484,860.0234029,0,0.974679426,12.92096855,-0.974679426,167.0790315,0.998701082,0,968.2116903,103.2691484,1035.799283,5,14,7% -5/10/2018 23:00,42.97380637,254.5768179,727.1110359,848.8575717,106.0313118,889.2133394,780.8979928,108.3153467,102.8340765,5.481270122,179.4937241,0,179.4937241,3.197235264,176.2964889,0.750034413,4.443203672,0.928689904,-0.928689904,0.371338363,0.145825474,2.537900661,81.62760923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.84802584,2.316386065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.838700389,78.46356284,100.6867262,80.77994891,780.8979928,0,0.919939951,23.08269527,-0.919939951,156.9173047,0.995648626,0,878.18674,80.77994891,931.055601,5,15,6% -5/10/2018 0:00,54.61794206,265.6128347,549.5769901,787.8202381,93.40867698,734.9724884,640.2374841,94.73500422,90.59206073,4.142943494,136.0679203,0,136.0679203,2.816616252,133.251304,0.95326292,4.635818501,1.356115748,-1.356115748,0.298244238,0.169964679,1.729753198,55.63480882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.08053461,2.040628887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253200303,53.47829441,88.33373491,55.5189233,640.2374841,0,0.812669507,35.64242453,-0.812669507,144.3575755,0.988474374,0,721.1920814,55.5189233,757.5281063,5,16,5% -5/10/2018 1:00,66.42921356,274.8339632,344.0831526,671.8221599,75.43373026,519.3315535,443.5785844,75.75296912,73.15912497,2.593844146,85.7015493,0,85.7015493,2.274605288,83.42694401,1.159408496,4.796757554,2.080141436,-2.080141436,0.174428554,0.219231106,0.921902777,29.65156233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.32333367,1.647943788,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.667915424,28.50220956,70.99124909,30.15015335,443.5785844,0,0.660261913,48.68014918,-0.660261913,131.3198508,0.974272476,0,503.1576547,30.15015335,522.8903271,5,17,4% -5/10/2018 2:00,78.06698532,283.4773687,133.3921149,420.8608246,46.37157121,245.2201569,199.2412936,45.97886336,44.97329725,1.005566107,33.74073658,0,33.74073658,1.398273965,32.34246261,1.362525931,4.947613438,3.946833444,-3.946833444,0,0.347633526,0.349568491,11.24332431,0.12648084,1,0.248145716,0,0.932164939,0.970926902,0.724496596,1,43.44529601,1.013044728,0.020413395,0.312029739,0.943742157,0.668238752,0.961238037,0.922476074,0.245776242,10.80751099,43.69107226,11.82055572,174.0410873,0,0.473413732,61.74388158,-0.473413732,118.2561184,0.944384137,0,208.0527143,11.82055572,215.7890316,5,18,4% -5/10/2018 3:00,88.99644932,292.3244516,0.712888563,4.737169902,0.629920026,1.891971258,1.27567159,0.616299668,0.610925613,0.005374055,0.191842499,0,0.191842499,0.018994413,0.172848086,1.553281063,5.102024165,42.20708433,-42.20708433,0,0.883616401,0.004748603,0.152731403,0.869921793,1,0.023688273,0,0.959081833,0.997843797,0.724496596,1,0.589007997,0.013761388,0.105212569,0.312029739,0.745286477,0.469783073,0.961238037,0.922476074,0.003368894,0.146811234,0.592376891,0.160572622,0.165937073,0,0.269289811,74.37798912,-0.269289811,105.6220109,0.864326432,0,0.73580069,0.160572622,0.840892259,5,19,14% -5/10/2018 4:00,99.92677966,302.0114321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744051316,5.271093868,-3.516973951,3.516973951,0.868408343,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.045370044,87.39959532,-0.045370044,92.60040468,0,0,0,0,0,5,20,0% -5/10/2018 5:00,109.3092105,313.1441176,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907805625,5.465395885,-1.289325018,1.289325018,0.750641253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164908972,99.49194651,0.164908972,80.50805349,0,0.746802428,0,0,0,5,21,0% -5/10/2018 6:00,116.9726979,326.2580796,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041558714,5.694277701,-0.466765713,0.466765713,0.609975328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.353803763,110.7201476,0.353803763,69.27985244,0,0.908678722,0,0,0,5,22,0% -5/10/2018 7:00,122.1888546,341.5549885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132597821,5.961259126,0.043110368,-0.043110368,0.522781383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508439844,120.5599643,0.508439844,59.44003567,0,0.951659949,0,0,0,5,23,0% -5/11/2018 8:00,124.2433325,358.4558122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.168455225,6.256234146,0.465066336,-0.465066336,0.450622662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618278852,128.1905557,0.618278852,51.80944425,0,0.969130341,0,0,0,5,0,0% -5/11/2018 9:00,122.7866131,15.50234428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143030675,0.27056695,0.901588846,-0.901588846,0.375972916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675836059,132.5191087,0.675836059,47.48089133,0,0.976017561,0,0,0,5,1,0% -5/11/2018 10:00,118.0709059,31.14259658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060726059,0.543540848,1.460177899,-1.460177899,0.280448563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677189843,132.6244358,0.677189843,47.37556418,0,0.976165461,0,0,0,5,2,0% -5/11/2018 11:00,110.7749145,44.62966689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933386986,0.778934631,2.381772088,-2.381772088,0.122846674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622248426,128.480513,0.622248426,51.51948703,0,0.969646241,0,0,0,5,3,0% -5/11/2018 12:00,101.6425773,56.06202475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773997635,0.978466917,4.710411506,-4.710411506,0,#DIV/0!,0,0,0.215916346,1,0.20918989,0,0.937648662,0.976410625,0.724496596,1,0,0,0.033510492,0.312029739,0.909368037,0.633864633,0.961238037,0.922476074,0,0,0,0,0,0,-0.514755796,120.9811334,0.514755796,59.01886658,0,0.952866562,0,0,0,5,4,0% -5/11/2018 13:00,91.27799131,65.94275142,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593101483,1.15091813,44.71290923,-44.71290923,0,#DIV/0!,0,0,0.876789693,1,0.022361178,0,0.959206205,0.997968168,0.724496596,1,0,0,0.105796489,0.312029739,0.744118971,0.468615567,0.961238037,0.922476074,0,0,0,0,0,0,-0.362036379,111.2253098,0.362036379,68.77469018,0,0.911892332,0,0,0,5,5,0% -5/11/2018 14:00,80.0293791,74.8717401,99.80203593,350.1704177,39.17241528,38.74357233,0,38.74357233,37.99122243,0.752349903,85.93648432,60.55713238,25.37935193,1.181192852,24.19815908,1.396776164,1.306758381,-5.667786143,5.667786143,0.500597796,0.392501164,0.524097282,16.85677015,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.51860807,0.8557702,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.379706697,16.20336865,36.89831476,17.05913885,0,60.55713238,-0.172936174,99.95857852,0.172936174,80.04142148,0,0.760875991,36.89831476,63.13560697,78.21930681,5,6,112% -5/11/2018 15:00,68.4490148,83.47283097,307.1637967,641.0353256,71.69291723,94.80898517,22.96234347,71.8466417,69.53111126,2.315530446,76.63722471,0,76.63722471,2.161805973,74.47541874,1.194660678,1.456875736,-2.462357659,2.462357659,0.951241649,0.233402888,2.228980524,71.69167573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.83594888,1.566221068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614888802,68.91276564,68.45083768,70.4789867,22.96234347,0,0.035820715,87.94718507,-0.035820715,92.05281493,0,0,68.45083768,70.4789867,114.5779249,5,7,67% -5/11/2018 16:00,56.63506454,92.48240281,515.7337595,772.2747875,91.00601313,287.4292121,195.2795471,92.14966499,88.26184606,3.887818926,127.789788,0,127.789788,2.744167072,125.045621,0.988468348,1.614122429,-1.403182859,1.403182859,0.770112091,0.17645929,3.15176907,101.3717274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.84064364,1.988139702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.283445962,97.44236026,87.1240896,99.43049996,195.2795471,0,0.252862777,75.35301854,-0.252862777,104.6469815,0.852264293,0,253.5538747,99.43049996,318.6291483,5,8,26% -5/11/2018 17:00,44.91220374,103.0140671,699.4704265,840.219697,104.435681,495.5775472,389.0180838,106.5594634,101.2865599,5.272903532,172.7438242,0,172.7438242,3.149121109,169.5947031,0.78386583,1.797934647,-0.835970917,0.835970917,0.673113136,0.149306786,3.806612214,122.4337339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.36049399,2.281527523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757877591,117.6879621,100.1183716,119.9694896,389.0180838,0,0.462995673,62.41941764,-0.462995673,117.5805824,0.94200763,0,466.5763747,119.9694896,545.0940062,5,9,17% -5/11/2018 18:00,33.7856522,117.2179793,843.1390807,877.5410585,113.7938665,688.7169472,571.9984471,116.7185001,110.3625616,6.355938534,207.8601366,0,207.8601366,3.43130493,204.4288316,0.589670871,2.045839681,-0.454445884,0.454445884,0.607868513,0.134964526,4.19995558,135.0850087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.084692,2.485968741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.042853521,129.8488486,109.1275455,132.3348173,571.9984471,0,0.651819583,49.32106845,-0.651819583,130.6789316,0.973291657,0,665.8488621,132.3348173,752.4593533,5,10,13% -5/11/2018 19:00,24.44281956,139.7310987,936.0158544,896.8950238,119.5053377,846.2545096,723.2966159,122.9578937,115.9018108,7.056082886,230.5514076,0,230.5514076,3.603526859,226.9478807,0.42660768,2.438767739,-0.157458326,0.157458326,0.557080649,0.12767448,4.329825179,139.2620614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4092291,2.610742942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136943603,133.8639906,114.5461727,136.4747335,723.2966159,0,0.806445121,36.24994994,-0.806445121,143.7500501,0.987999501,0,829.1628682,136.4747335,918.4828517,5,11,11% -5/11/2018 20:00,19.85735027,176.2515868,971.4092979,903.5023008,121.6281257,953.1920156,827.908533,125.2834826,117.960589,7.322893613,239.1969676,0,239.1969676,3.66753675,235.5294309,0.346576143,3.076170502,0.101070761,-0.101070761,0.512869572,0.125207908,4.202331497,135.1614264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.388205,2.657117891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044574864,129.9223041,116.4327798,132.579422,827.908533,0,0.916332512,23.60432419,-0.916332512,156.3956758,0.995434655,0,940.5616244,132.579422,1027.332205,5,12,9% -5/11/2018 21:00,23.13568384,214.8518719,946.8104944,898.9512573,120.1556199,999.2486873,875.5787452,123.6699421,116.5324847,7.137457441,233.1883014,0,233.1883014,3.623135268,229.5651662,0.403793858,3.749872569,0.349366338,-0.349366338,0.470408527,0.12690567,3.837216228,123.4180642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0154568,2.624949168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.780050095,118.6341378,114.7955069,121.2590869,875.5787452,0,0.974000245,13.09386127,-0.974000245,166.9061387,0.998665311,0,989.2056265,121.2590869,1068.567274,5,13,8% -5/11/2018 22:00,31.90487001,239.6190986,863.9882081,882.1640085,115.095567,978.717939,860.5798199,118.1381191,111.625011,6.513108063,212.9545,0,212.9545,3.470556003,209.483944,0.556845029,4.182142222,0.612372746,-0.612372746,0.425431782,0.13321428,3.269400966,105.1551736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2982065,2.51440601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.368669871,101.0791526,109.6668763,103.5935586,860.5798199,0,0.975532681,12.70048562,-0.975532681,167.2995144,0.998745951,0,969.1674868,103.5935586,1036.967399,5,14,7% -5/11/2018 23:00,42.82532601,254.8827495,728.918228,848.7540214,106.4170205,890.2765292,781.573481,108.7030482,103.2081547,5.494893499,179.9435293,0,179.9435293,3.208865805,176.7346635,0.747442942,4.448543185,0.923468043,-0.923468043,0.372231353,0.145993085,2.54897798,81.98389389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.207604,2.324812352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.84672587,78.80603722,101.0543299,81.13084957,781.573481,0,0.920848045,22.94962317,-0.920848045,157.0503768,0.995702225,0,879.2687838,81.13084957,932.3673023,5,15,6% -5/11/2018 0:00,54.47941007,265.8764225,551.6171849,787.9753555,93.80706466,736.3208728,641.1841139,95.13675889,90.97843555,4.158323344,136.574602,0,136.574602,2.828629111,133.7459729,0.95084508,4.640418977,1.347445017,-1.347445017,0.299727021,0.170058271,1.741565,56.014717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.45193278,2.049332162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.261757914,53.84347661,88.7136907,55.89280877,641.1841139,0,0.813710872,35.53990543,-0.813710872,144.4600946,0.988553113,0,722.5582425,55.89280877,759.138968,5,16,5% -5/11/2018 1:00,66.29055539,275.0678997,346.3754222,672.738862,75.86799465,521.2112699,445.019851,76.19141893,73.58029469,2.611124242,86.27043128,0,86.27043128,2.287699962,83.98273132,1.156988455,4.800840516,2.062560552,-2.062560552,0.177435062,0.219034001,0.933750436,30.03262375,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.72817801,1.657430835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.676499012,28.8685003,71.40467703,30.52593113,445.019851,0,0.661504599,48.58527677,-0.661504599,131.4147232,0.974414736,0,505.0385774,30.52593113,525.0171888,5,17,4% -5/11/2018 2:00,77.92163525,283.6911612,135.7643262,424.4191909,46.95489449,248.1210959,201.5586159,46.56248001,45.53903118,1.023448838,34.33349602,0,34.33349602,1.415863314,32.91763271,1.359989094,4.951344821,3.888281384,-3.888281384,0,0.345855909,0.353965828,11.38475779,0.118773154,1,0.251727656,0,0.93164435,0.970406313,0.724496596,1,43.98170707,1.025788151,0.019235463,0.312029739,0.946899774,0.67139637,0.961238037,0.922476074,0.249233987,10.94346223,44.23094106,11.96925038,177.6188634,0,0.474904576,61.64686283,-0.474904576,118.3531372,0.944715691,0,212.0302684,11.96925038,219.8639034,5,18,4% -5/11/2018 3:00,88.85489834,292.5236203,0.942362412,5.988782386,0.822679807,2.426723209,1.621746307,0.804976902,0.797872976,0.007103926,0.253293509,0,0.253293509,0.024806832,0.228486677,1.550810533,5.105500314,36.8712208,-36.8712208,0,0.872997264,0.006201708,0.199468244,0.852402803,1,0.027114777,0,0.958758758,0.997520721,0.724496596,1,0.76953246,0.017972465,0.103710559,0.312029739,0.748302238,0.472798833,0.961238037,0.922476074,0.004388569,0.191736463,0.773921028,0.209708928,0.239365209,0,0.270797335,74.2882816,-0.270797335,105.7117184,0.865360073,0,0.981058123,0.209708928,1.118308423,5,19,14% -5/11/2018 4:00,99.74945611,302.1971333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740956436,5.274334967,-3.567341906,3.567341906,0.859794915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0474847,87.27830365,-0.0474847,92.72169635,0,0,0,0,0,5,20,0% -5/11/2018 5:00,109.1097348,313.3116307,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904324118,5.46831954,-1.296319764,1.296319764,0.751837425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162486156,99.35123115,0.162486156,80.64876885,0,0.742281476,0,0,0,5,21,0% -5/11/2018 6:00,116.7493217,326.3944868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037660063,5.696658455,-0.4667127,0.4667127,0.609966262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351098908,110.554544,0.351098908,69.44545603,0,0.907589987,0,0,0,5,22,0% -5/11/2018 7:00,121.9449678,341.6393976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128341194,5.962732343,0.045881947,-0.045881947,0.522307415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50549857,120.3644541,0.50549857,59.63554588,0,0.951087752,0,0,0,5,23,0% -5/12/2018 8:00,123.9896078,358.4686886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164026895,6.256458881,0.469838895,-0.469838895,0.449806506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61516312,127.9637739,0.61516312,52.03622613,0,0.968720745,0,0,0,5,0,0% -5/12/2018 9:00,122.5381392,15.44127384,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138693988,0.269501069,0.90887512,-0.90887512,0.37472689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672619911,132.2695943,0.672619911,47.73040574,0,0.975663812,0,0,0,5,1,0% -5/12/2018 10:00,117.8398438,31.02447814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056693264,0.541479292,1.472016141,-1.472016141,0.278424104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673954296,132.3729979,0.673954296,47.62700212,0,0.975810993,0,0,0,5,2,0% -5/12/2018 11:00,110.5663295,44.47603686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929746491,0.776253281,2.405100556,-2.405100556,0.118857271,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619075904,128.2486834,0.619075904,51.75131655,0,0.969234459,0,0,0,5,3,0% -5/12/2018 12:00,101.455835,55.88764398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770738366,0.975423399,4.785694153,-4.785694153,0,#DIV/0!,0,0,0.223752075,1,0.205992179,0,0.938084172,0.976846136,0.724496596,1,0,0,0.034610055,0.312029739,0.906543601,0.631040197,0.961238037,0.922476074,0,0,0,0,0,0,-0.511724461,120.7787636,0.511724461,59.22123637,0,0.952291167,0,0,0,5,4,0% -5/12/2018 13:00,91.109611,65.75401962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590162692,1.147624139,51.48775639,-51.48775639,0,#DIV/0!,0,0,0.892180629,1,0.019419652,0,0.959480367,0.99824233,0.724496596,1,0,0,0.107095148,0.312029739,0.741532234,0.46602883,0.961238037,0.922476074,0,0,0,0,0,0,-0.359214761,111.0519797,0.359214761,68.94802033,0,0.910807502,0,0,0,5,5,0% -5/12/2018 14:00,79.87602763,74.66883594,102.2109537,354.8335836,39.83879468,39.40801737,0,39.40801737,38.63750803,0.770509343,86.44705201,60.46353629,25.98351572,1.201286649,24.78222907,1.394099675,1.303217036,-5.581811781,5.581811781,0.515300278,0.389770306,0.542609505,17.45218688,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.13984237,0.870328088,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.393118739,16.77570585,37.53296111,17.64603394,0,60.46353629,-0.1703997,99.81105928,0.1703997,80.18894072,0,0.756572254,37.53296111,63.39106786,79.0211472,5,6,111% -5/12/2018 15:00,68.30313976,83.25145809,309.6110204,642.3064271,72.15300562,96.76590249,24.45459755,72.31130494,69.97732629,2.333978652,77.24445578,0,77.24445578,2.175679336,75.06877645,1.192114678,1.453012051,-2.446369622,2.446369622,0.948507534,0.233044048,2.241804109,72.1041263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.26486775,1.576272273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.624179446,69.30922881,68.88904719,70.88550108,24.45459755,0,0.038073101,87.81804463,-0.038073101,92.18195537,0,0,68.88904719,70.88550108,115.2821899,5,7,67% -5/12/2018 16:00,56.4910277,92.23441348,517.9196176,772.5566356,91.41615931,289.4131604,196.8492387,92.56392166,88.65962482,3.904296847,128.332142,0,128.332142,2.756534493,125.5756075,0.985954431,1.609794199,-1.398019029,1.398019029,0.769229024,0.176506462,3.162330492,101.7114191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.22300371,1.997099857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.291097676,97.76888478,87.51410138,99.76598464,196.8492387,0,0.25480234,75.2381268,-0.25480234,104.7618732,0.853769463,0,255.5779702,99.76598464,320.8728119,5,8,26% -5/12/2018 17:00,44.76112918,102.7280928,701.3880606,840.1680744,104.827884,497.3186666,390.3643707,106.954296,101.6669365,5.287359468,173.2206031,0,173.2206031,3.160947475,170.0596557,0.781229081,1.792943454,-0.834260431,0.834260431,0.672820626,0.149457754,3.81599371,122.7354751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.72612644,2.290095685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764674453,117.9780071,100.4908009,120.2681028,390.3643707,0,0.464626522,62.3139461,-0.464626522,117.6860539,0.942386686,0,468.3649864,120.2681028,547.0780543,5,9,17% -5/12/2018 18:00,33.6133569,116.8871424,844.8353194,877.3600966,114.1766652,690.1663911,573.0638481,117.102543,110.7338175,6.368725497,208.2829521,0,208.2829521,3.442847723,204.8401043,0.586663751,2.040065487,-0.454304553,0.454304553,0.607844344,0.135146652,4.208726822,135.367122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4415573,2.494331455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.049208256,130.1200266,109.4907656,132.6143581,573.0638481,0,0.653168352,49.21908984,-0.653168352,130.7809102,0.973450057,0,667.3398013,132.6143581,754.1332463,5,10,13% -5/12/2018 19:00,24.2288248,139.4102417,937.5603289,896.6613011,119.8825383,847.4414027,724.1060395,123.3353632,116.2676374,7.067725787,230.9372573,0,230.9372573,3.614900848,227.3223564,0.422872767,2.433167728,-0.158261412,0.158261412,0.557217985,0.127866479,4.338417192,139.5384101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7608755,2.618983359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.143168487,134.1296274,114.904044,136.7486108,724.1060395,0,0.807558036,36.14197349,-0.807558036,143.8580265,0.988084945,0,830.3823204,136.7486108,919.8815512,5,11,11% -5/12/2018 20:00,19.6062089,176.2223453,972.8840623,903.250955,122.0026079,954.1845776,828.5267874,125.6577902,118.3237791,7.334011009,239.5658333,0,239.5658333,3.67882877,235.8870046,0.342192899,3.075660141,0.099511728,-0.099511728,0.513136182,0.125403029,4.211118562,135.4440486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7373172,2.665298921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.050941063,130.1939714,116.7882582,132.8592703,828.5267874,0,0.917271975,23.46953362,-0.917271975,156.5304664,0.99549054,0,941.5788373,132.8592703,1028.532572,5,12,9% -5/12/2018 21:00,22.91674921,215.1663394,948.3027648,898.7060618,120.5301218,1000.139419,876.0950177,124.0444008,116.895694,7.148706805,233.5614123,0,233.5614123,3.634427882,229.9269844,0.399972728,3.755361062,0.347008113,-0.347008113,0.470811807,0.127100886,3.846519652,123.7172943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3645874,2.633130629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.786790394,118.9217691,115.1513778,121.5548997,876.0950177,0,0.974840446,12.87964483,-0.974840446,167.1203552,0.998709555,0,990.1158433,121.5548997,1069.671094,5,13,8% -5/12/2018 22:00,31.7329283,239.9656769,865.5834391,881.95488,115.4728967,979.6166607,861.1005642,118.5160964,111.9909629,6.525133588,213.3526601,0,213.3526601,3.481933887,209.8707262,0.55384408,4.188191153,0.608947369,-0.608947369,0.426017556,0.133404697,3.279463696,105.4788256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6499733,2.522649248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375960284,101.3902592,110.0259336,103.9129085,861.1005642,0,0.976354441,12.48452188,-0.976354441,167.5154781,0.998789089,0,970.083782,103.9129085,1038.092702,5,14,7% -5/12/2018 23:00,42.67878053,255.1823657,730.6929566,848.6418733,106.800559,891.3097863,782.221386,109.0884003,103.5801281,5.508272153,180.3853979,0,180.3853979,3.220430907,177.164967,0.744885241,4.453772475,0.9183187,-0.9183187,0.373111943,0.146163389,2.559914544,82.33565137,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.56515901,2.333191229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.854649373,79.14415989,101.4198084,81.47735111,782.221386,0,0.921733196,22.81920684,-0.921733196,157.1807932,0.995754368,0,880.32017,81.47735111,933.6454668,5,15,6% -5/12/2018 0:00,54.34232653,266.134166,553.6297277,788.1179361,94.20336292,737.6446819,642.1084032,95.5362787,91.36278396,4.173494742,137.0745162,0,137.0745162,2.840578966,134.2339372,0.948452521,4.644917449,1.338921443,-1.338921443,0.301184638,0.170155897,1.753252556,56.39062898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.82138309,2.057989791,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270225509,54.20481749,89.0916086,56.26280728,642.1084032,0,0.814736442,35.43868979,-0.814736442,144.5613102,0.988630461,0,723.8995351,56.26280728,760.7224172,5,16,5% -5/12/2018 1:00,66.15313821,275.2963338,348.6431061,673.6281788,76.299612,523.0652753,446.4381592,76.62711619,73.99889719,2.628219001,86.83327234,0,86.83327234,2.300714817,84.53255753,1.154590072,4.804827443,2.045359136,-2.045359136,0.180376677,0.218847327,0.945499291,30.41050734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.13055466,1.666860053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685011018,29.23173638,71.81556568,30.89859643,446.4381592,0,0.662736764,48.49107055,-0.662736764,131.5089295,0.974555264,0,506.8942239,30.89859643,527.1167372,5,17,4% -5/12/2018 2:00,77.77751557,283.8996055,138.1192031,427.8872063,47.53191086,250.9802711,203.8404219,47.13984926,46.09864837,1.041200895,34.92186237,0,34.92186237,1.433262486,33.48859988,1.357473731,4.954982861,3.831696189,-3.831696189,0,0.344136874,0.358315622,11.52466209,0.111194027,1,0.255286746,0,0.93112438,0.969886343,0.724496596,1,44.51175975,1.038393792,0.018069219,0.312029739,0.950036782,0.674533378,0.961238037,0.922476074,0.252672607,11.07794357,44.76443236,12.11633736,181.1745845,0,0.476388214,61.55022498,-0.476388214,118.449775,0.945043583,0,215.9823108,12.11633736,223.9122113,5,18,4% -5/12/2018 3:00,88.71353461,292.7174285,1.213590404,7.445185379,1.04643728,3.051496509,2.027464617,1.024031892,1.014883335,0.009148557,0.325802989,0,0.325802989,0.031553945,0.294249044,1.54834327,5.108882906,32.71647218,-32.71647218,0,0.862265618,0.007888486,0.253720834,0.83511118,1,0.030556129,0,0.958431449,0.997193412,0.724496596,1,0.979182645,0.022860726,0.10221016,0.312029739,0.75133288,0.475829476,0.961238037,0.922476074,0.005568525,0.243886116,0.984751171,0.266746842,0.334306248,0,0.27231889,74.19769898,-0.27231889,105.802301,0.866391731,0,1.27439134,0.266746842,1.448971813,5,19,14% -5/12/2018 4:00,99.57399196,302.3773505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737894009,5.27748035,-3.619236589,3.619236589,0.850920402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049590184,87.15752594,-0.049590184,92.84247406,0,0,0,0,0,5,20,0% -5/12/2018 5:00,108.9127344,313.4735456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.900885813,5.471145488,-1.303498463,1.303498463,0.753065055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.160076904,99.21136002,0.160076904,80.78863998,0,0.737650131,0,0,0,5,21,0% -5/12/2018 6:00,116.5292451,326.525447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033819002,5.698944142,-0.466755956,0.466755956,0.609973659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34841408,110.3903438,0.34841408,69.6096562,0,0.906492596,0,0,0,5,22,0% -5/12/2018 7:00,121.7053092,341.7191621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124158363,5.964124495,0.048564941,-0.048564941,0.521848596,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502585408,120.1711971,0.502585408,59.82880287,0,0.950514422,0,0,0,5,23,0% -5/13/2018 8:00,123.7409001,358.4785541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159686126,6.256631067,0.474511839,-0.474511839,0.449007386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612084657,127.7403904,0.612084657,52.25960963,0,0.968311953,0,0,0,5,0,0% -5/13/2018 9:00,122.2950988,15.37917965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134452134,0.268417321,0.916037073,-0.916037073,0.373502124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669450624,132.0246778,0.669450624,47.97532218,0,0.975311893,0,0,0,5,1,0% -5/13/2018 10:00,117.6142665,30.90693776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052756197,0.539427826,1.483686017,-1.483686017,0.276428437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67077498,132.1269064,0.67077498,47.87309363,0,0.975459355,0,0,0,5,2,0% -5/13/2018 11:00,110.3630954,44.32395978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926199387,0.773599036,2.428196534,-2.428196534,0.114907626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615968115,128.022299,0.615968115,51.977701,0,0.968826967,0,0,0,5,3,0% -5/13/2018 12:00,101.2742795,55.7153382,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767569624,0.972416095,4.861136634,-4.861136634,0,#DIV/0!,0,0,0.231448887,1,0.202882943,0,0.938505485,0.977267448,0.724496596,1,0,0,0.035682935,0.312029739,0.903796895,0.628293491,0.961238037,0.922476074,0,0,0,0,0,0,-0.508764909,120.5815959,0.508764909,59.41840407,0,0.951722782,0,0,0,5,4,0% -5/13/2018 13:00,90.94629915,65.5676496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587312363,1.144371368,60.36064782,-60.36064782,0,#DIV/0!,0,0,0.907339843,1,0.01656557,0,0.95974439,0.998506353,0.724496596,1,0,0,0.108361034,0.312029739,0.739023843,0.463520439,0.961238037,0.922476074,0,0,0,0,0,0,-0.356470039,110.8835666,0.356470039,69.11643337,0,0.909735758,0,0,0,5,5,0% -5/13/2018 14:00,79.72763006,74.46847757,104.545725,359.2437293,40.48260628,40.05001617,0,40.05001617,39.26190633,0.788109836,86.90103951,60.33201814,26.56902137,1.220699944,25.34832142,1.391509649,1.299720123,-5.500996504,5.500996504,0.529120504,0.387223928,0.560705717,18.03422328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.74003777,0.884392954,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.406229383,17.33518138,38.14626715,18.21957433,0,60.33201814,-0.167941743,99.66816917,0.167941743,80.33183083,0,0.752277712,38.14626715,63.60600691,79.77512655,5,6,109% -5/13/2018 15:00,68.16233217,83.03276307,311.9641354,643.4833744,72.60236895,98.66227414,25.89741706,72.76485708,70.41313965,2.351717427,77.82854572,0,77.82854572,2.189229298,75.63931642,1.189657122,1.449195103,-2.431140424,2.431140424,0.945903188,0.232726653,2.254104592,72.49975213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68378813,1.586089174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.633091104,69.68951941,69.31687923,71.27560858,25.89741706,0,0.040245666,87.69347025,-0.040245666,92.30652975,0,0,69.31687923,71.27560858,115.9653395,5,7,67% -5/13/2018 16:00,56.3522392,91.98914734,520.0134639,772.7946738,91.81901228,291.3190679,198.3486565,92.97041143,89.05033028,3.920081145,128.8519668,0,128.8519668,2.768681996,126.0832848,0.983532115,1.605513497,-1.393109859,1.393109859,0.768389506,0.176570452,3.172463168,102.0373207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.59856466,2.005900681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298438765,98.08215387,87.89700343,100.0880546,198.3486565,0,0.256664109,75.12778616,-0.256664109,104.8722138,0.855192864,0,257.5233591,100.0880546,323.028989,5,8,25% -5/13/2018 17:00,44.61562442,102.4445796,703.2203344,840.0913508,105.2142907,498.9800524,391.6371888,107.3428636,102.0416917,5.301171922,173.6765107,0,173.6765107,3.172599065,170.5039117,0.778689544,1.787995215,-0.832663099,0.832663099,0.672547466,0.149617816,3.825008643,123.0254263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.08635536,2.298537222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.771205741,118.2567193,100.8575611,120.5552565,391.6371888,0,0.466184051,62.21312128,-0.466184051,117.7868787,0.942746223,0,470.0720418,120.5552565,548.9730461,5,9,17% -5/13/2018 18:00,33.44708087,116.5573976,846.4549516,877.1626348,114.5546222,691.5406918,574.0593791,117.4813127,111.1003777,6.38093497,208.6870475,0,208.6870475,3.454244522,205.2328029,0.583761686,2.034310355,-0.454217981,0.454217981,0.607829539,0.135334576,4.217183928,135.6391316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.793909,2.502588398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.0553354,130.3814926,109.8492444,132.884081,574.0593791,0,0.654450334,49.12201552,-0.654450334,130.8779845,0.973600008,0,668.7534607,132.884081,755.723434,5,10,13% -5/13/2018 19:00,24.02105715,139.0860954,939.0379979,896.4156042,120.2556482,848.56104,724.8526782,123.7083618,116.6294967,7.078865079,231.3067859,0,231.3067859,3.62615149,227.6806344,0.419246537,2.427510308,-0.159088147,0.159088147,0.557359365,0.128062601,4.346742245,139.8061724,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1087085,2.62713441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14919996,134.3870107,115.2579084,137.0141451,724.8526782,0,0.808612294,36.03943046,-0.808612294,143.9605695,0.988165669,0,831.5324403,137.0141451,921.2054581,5,11,11% -5/13/2018 20:00,19.36030272,176.1862537,974.3020446,902.99018,122.3736397,955.1195343,829.091211,126.0283233,118.6836229,7.344700359,239.9208275,0,239.9208275,3.690016747,236.2308108,0.337901027,3.075030225,0.097950103,-0.097950103,0.513403235,0.125601337,4.21968048,135.7194293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0832127,2.673404572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057144143,130.4586778,117.1403569,133.1320823,829.091211,0,0.918161935,23.34116844,-0.918161935,156.6588316,0.995543375,0,942.5366194,133.1320823,1029.668905,5,12,9% -5/13/2018 21:00,22.70180247,215.4748797,949.7477502,898.4528103,120.9017189,1000.982804,876.567118,124.4156858,117.256086,7.159599716,233.9229707,0,233.9229707,3.645632906,230.2773378,0.396221199,3.760746106,0.344665994,-0.344665994,0.471212333,0.127298768,3.855633117,124.0104147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.71101,2.64124863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793393068,119.2035276,115.504403,121.8447762,876.567118,0,0.975640688,12.67230728,-0.975640688,167.3276927,0.998751625,0,990.9772365,121.8447762,1070.722206,5,13,8% -5/13/2018 22:00,31.56379174,240.305502,867.1396815,881.738111,115.8477595,980.4778317,861.5864444,118.8913873,112.3545221,6.536865201,213.7412926,0,213.7412926,3.493237381,210.2480552,0.55089209,4.194122221,0.605560412,-0.605560412,0.42659676,0.133597576,3.289363924,105.7972509,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9994402,2.530838591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383132965,101.6963418,110.3825732,104.2271804,861.5864444,0,0.977145519,12.27309023,-0.977145519,167.7269098,0.998830549,0,970.9614343,104.2271804,1039.176039,5,14,7% -5/13/2018 23:00,42.53418394,255.475514,732.4352363,848.5211829,107.1819249,892.313674,782.8422734,109.4714006,103.9499944,5.521406193,180.8193334,0,180.8193334,3.231930495,177.5874029,0.742361554,4.458888878,0.913243191,-0.913243191,0.373979906,0.146336385,2.570708328,82.68281657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.92068855,2.341522642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862469432,79.47786828,101.783158,81.81939092,782.8422734,0,0.922596028,22.69139621,-0.922596028,157.3086038,0.995805099,0,881.3414859,81.81939092,934.8906409,5,15,6% -5/13/2018 0:00,54.20671926,266.3859593,555.614266,788.2479703,94.5975442,738.9441151,643.0105808,95.93353424,91.74507921,4.18845503,137.5675765,0,137.5675765,2.852464985,134.7151115,0.946085728,4.64931207,1.330546385,-1.330546385,0.302616857,0.170257587,1.764812346,56.76243155,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.18885984,2.066601172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.278600537,54.56220827,89.46746037,56.62880944,643.0105808,0,0.815746574,35.3387516,-0.815746574,144.6612484,0.988706454,0,725.2161717,56.62880944,762.2785949,5,16,5% -5/13/2018 1:00,66.01700514,275.519186,350.8854514,674.4900562,76.72852099,524.8933593,447.8333635,77.05999573,74.41487298,2.645122747,87.3898881,0,87.3898881,2.313648006,85.07624009,1.152214102,4.808716948,2.028535929,-2.028535929,0.183253615,0.218671138,0.957144217,30.78504818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53040642,1.676230104,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.693447727,29.59175927,72.22385415,31.26798938,447.8333635,0,0.663958437,48.39753094,-0.663958437,131.6024691,0.974694081,0,508.7243831,31.26798938,529.1886567,5,17,4% -5/13/2018 2:00,77.63468538,284.1026406,140.4554048,431.265216,48.10253097,253.7971234,206.086249,47.71087435,46.65206218,1.05881217,35.50550782,0,35.50550782,1.450468788,34.05503904,1.354980874,4.958526492,3.777017776,-3.777017776,0,0.342475471,0.362617197,11.66301555,0.103745405,1,0.258820667,0,0.930605428,0.969367392,0.724496596,1,45.03538237,1.0508597,0.016915291,0.312029739,0.953151157,0.677647753,0.961238037,0.922476074,0.25609113,11.21093417,45.2914735,12.26179387,184.7057477,0,0.477864296,61.45399149,-0.477864296,118.5460085,0.945367785,0,219.906337,12.26179387,227.9314359,5,18,4% -5/13/2018 3:00,88.57251853,292.9058323,1.528548268,9.112563415,1.301539056,3.769312104,2.49549641,1.273815694,1.262292852,0.011522843,0.409860429,0,0.409860429,0.039246205,0.370614225,1.545882075,5.112171171,29.39370012,-29.39370012,0,0.85148705,0.009811551,0.315573213,0.818064886,1,0.034007779,0,0.958100312,0.996862275,0.724496596,1,1.218305069,0.028433742,0.10071335,0.312029739,0.754374306,0.478870902,0.961238037,0.922476074,0.00690979,0.303340976,1.22521486,0.331774717,0.454018424,0,0.273852296,74.10636985,-0.273852296,105.8936302,0.867419825,0,1.619039442,0.331774717,1.836179359,5,19,13% -5/13/2018 4:00,99.4004737,302.5520592,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734865544,5.280529592,-3.672685467,3.672685467,0.841780105,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.051685414,87.03732384,-0.051685414,92.96267616,0,0,0,0,0,5,20,0% -5/13/2018 5:00,108.7183057,313.6298634,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897492392,5.47387375,-1.310859357,1.310859357,0.754323842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.157682625,99.07241299,0.157682625,80.92758701,0,0.732907359,0,0,0,5,21,0% -5/13/2018 6:00,116.3125681,326.6509918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.030037274,5.701135311,-0.466896495,0.466896495,0.609997693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.345750952,110.2276434,0.345750952,69.77235663,0,0.905387238,0,0,0,5,22,0% -5/13/2018 7:00,121.4699732,341.794337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120050974,5.965436546,0.05115665,-0.05115665,0.521405387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499702217,119.9803008,0.499702217,60.01969922,0,0.949940408,0,0,0,5,23,0% -5/14/2018 8:00,123.4972919,358.4854673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15543436,6.256751726,0.479080815,-0.479080815,0.448226045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60904541,127.5205119,0.60904541,52.47948814,0,0.967904315,0,0,0,5,0,0% -5/14/2018 9:00,122.0575638,15.31610916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130306365,0.267316533,0.923067772,-0.923067772,0.372299804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666330136,131.7844509,0.666330136,48.2155491,0,0.974962121,0,0,0,5,1,0% -5/14/2018 10:00,117.3942373,30.79001769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048915964,0.537387185,1.495175065,-1.495175065,0.274463695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667653727,131.8862356,0.667653727,48.11376445,0,0.97511088,0,0,0,5,2,0% -5/14/2018 11:00,110.165267,44.17348418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92274663,0.770972741,2.451031082,-2.451031082,0.111002689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612926692,127.801424,0.612926692,52.19857599,0,0.968424176,0,0,0,5,3,0% -5/14/2018 12:00,101.0979554,55.54516829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764492188,0.96944607,4.93662679,-4.93662679,0,#DIV/0!,0,0,0.238999285,1,0.199863058,0,0.938912659,0.977674622,0.724496596,1,0,0,0.036728548,0.312029739,0.90112873,0.625625326,0.961238037,0.922476074,0,0,0,0,0,0,-0.505878495,120.3896862,0.505878495,59.61031382,0,0.951162037,0,0,0,5,4,0% -5/14/2018 13:00,90.17994887,65.3837172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573937027,1.141161142,317.3664179,-317.3664179,0,#DIV/0!,0,0,0.981732724,1,0.003150922,0,0.960959039,0.999721002,0.724496596,1,0,0,0.114389556,0.312029739,0.727255251,0.451751847,0.961238037,0.922476074,0,0,0,0,0,0,-0.343860252,110.1122369,0.343860252,69.88776313,0,0.904592092,0,0,0,5,5,0% -5/14/2018 14:00,79.58421287,74.27075877,106.8046516,363.4072421,41.10420208,40.66989731,0,40.66989731,39.86475873,0.805138578,87.3022657,60.16679802,27.13546767,1.239443351,25.89602432,1.389006547,1.296269278,-5.425023008,5.425023008,0.542112737,0.384854044,0.578357209,18.60195594,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.31952242,0.897972489,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419017829,17.88090761,38.73854025,18.7788801,0,60.16679802,-0.165563013,99.5299426,0.165563013,80.4700574,0,0.748000181,38.73854025,63.78365591,80.48366737,5,6,108% -5/14/2018 15:00,68.02660442,82.8168638,314.2230392,644.5681734,73.04107938,100.4971854,27.28981801,73.20736734,70.83862135,2.368745997,78.38947183,0,78.38947183,2.202458036,76.18701379,1.187288226,1.44542695,-2.416647991,2.416647991,0.943424836,0.23244979,2.26588491,72.87864763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.09277732,1.59567335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641625904,70.05372817,69.73440322,71.64940152,27.28981801,0,0.042338141,87.57347793,-0.042338141,92.42652207,0,0,69.73440322,71.64940152,116.6275035,5,7,67% -5/14/2018 16:00,56.21870281,91.74675879,522.0156229,772.9895928,92.21460144,293.1469222,199.7777569,93.36916524,89.43399097,3.935174266,129.3493419,0,129.3493419,2.780610469,126.5687315,0.981201465,1.601283019,-1.388450671,1.388450671,0.767592738,0.176651038,3.182169707,102.3495164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.96735391,2.014542819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.30547112,98.38224822,88.27282503,100.396791,199.7777569,0,0.258448185,75.02199719,-0.258448185,104.9780028,0.856537623,0,259.3899901,100.396791,325.0976819,5,8,25% -5/14/2018 17:00,44.4756902,102.1637418,704.9678333,839.9898716,105.5949328,500.5621576,392.8369564,107.7252013,102.410856,5.314345307,174.1116899,0,174.1116899,3.184076828,170.927613,0.776247231,1.78309367,-0.831177199,0.831177199,0.672293362,0.149786881,3.833659851,123.3036789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.44121015,2.306852823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.777473512,118.5241863,101.2186837,120.8310391,392.8369564,0,0.467668682,62.11692823,-0.467668682,117.8830718,0.943086705,0,471.6979943,120.8310391,550.7794927,5,9,17% -5/14/2018 18:00,33.28683657,116.2290501,847.9987148,876.9488987,114.9277747,692.8406143,574.9857635,117.8548508,111.4622783,6.392572508,209.0726026,0,209.0726026,3.465496446,205.6071062,0.580964896,2.02857961,-0.45418517,0.45418517,0.607823928,0.135528242,4.225329728,135.9011285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1417815,2.510740378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061237004,130.633334,110.2030186,133.1440744,574.9857635,0,0.655666213,49.02981492,-0.655666213,130.9701851,0.973741686,0,670.0906253,133.1440744,757.2307591,5,10,13% -5/14/2018 19:00,23.81957266,138.7589727,940.4496418,896.158105,120.6247065,849.6143799,725.5374467,124.0769332,116.9874266,7.089506647,231.6601838,0,231.6601838,3.63727996,228.0229038,0.415729969,2.42180094,-0.159937705,0.159937705,0.557504648,0.128262802,4.354802777,140.0654268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4527643,2.635196949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155039787,134.6362159,115.607804,137.2714129,725.5374467,0,0.809608754,35.94227679,-0.809608754,144.0577232,0.988241774,0,832.6142178,137.2714129,922.4556121,5,11,11% -5/14/2018 20:00,19.11971473,176.1431915,975.6639599,902.7201165,122.7412568,955.9979172,829.602795,126.3951221,119.0401551,7.354967052,240.2621247,0,240.2621247,3.70110176,236.5610229,0.333701974,3.074278647,0.096386736,-0.096386736,0.513670587,0.125802799,4.228018905,135.9876217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.425925,2.681435626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.063185304,130.7164745,117.4891103,133.3979101,829.602795,0,0.919003332,23.21919191,-0.919003332,156.7808081,0.995593233,0,943.4360392,133.3979101,1030.742303,5,12,9% -5/14/2018 21:00,22.49087909,215.7771609,951.1459969,898.1916176,121.2704384,1001.779823,876.9959952,124.7838275,117.6136872,7.17014029,234.2731101,0,234.2731101,3.656751158,230.6163589,0.392539892,3.766021908,0.342340956,-0.342340956,0.471609938,0.127499289,3.864557162,124.2974427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0547498,2.649303766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.799858508,119.4794298,115.8546083,122.1287335,876.9959952,0,0.976401893,12.47193908,-0.976401893,167.5280609,0.998791578,0,991.7908225,122.1287335,1071.721636,5,13,8% -5/14/2018 22:00,31.39747261,240.6383381,868.6572212,881.5137854,116.2201683,981.3022564,862.0382499,119.2640065,112.7157014,6.548305056,214.1204671,0,214.1204671,3.50446688,210.6160002,0.547989274,4.199931307,0.602213054,-0.602213054,0.427169192,0.133792899,3.299100829,106.1104232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3466195,2.538974325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39018732,101.9973749,110.7368069,104.5363492,862.0382499,0,0.977906715,12.06620283,-0.977906715,167.9337972,0.998870379,0,971.80128,104.5363492,1040.21823,5,14,7% -5/14/2018 23:00,42.39155472,255.7620468,734.1450205,848.3919866,107.5611115,893.2887053,783.4366629,109.8520424,104.3177471,5.534295269,181.2453242,0,181.2453242,3.243364369,178.0019599,0.739872205,4.463889818,0.908242955,-0.908242955,0.374834997,0.146512077,2.581357023,83.02531523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2741864,2.349806444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.870184376,79.80709102,102.1443708,82.15689747,783.4366629,0,0.923437132,22.56614452,-0.923437132,157.4338555,0.995854462,0,882.3332675,82.15689747,936.1033138,5,15,6% -5/14/2018 0:00,54.0726208,266.6317008,557.5703729,788.3654157,94.98957505,740.2192965,643.8908066,96.32848988,92.12528889,4.203200989,138.0536784,0,138.0536784,2.864286162,135.1893922,0.943745268,4.653601069,1.322321375,-1.322321375,0.304023416,0.170363383,1.776240549,57.13000185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.55433183,2.075165574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286880231,54.91553082,89.84121207,56.99069639,643.8908066,0,0.816741569,35.24006996,-0.816741569,144.75993,0.988781125,0,726.5082882,56.99069639,763.8075592,5,16,5% -5/14/2018 1:00,65.88220399,275.736381,353.1016247,675.3243789,77.1546519,526.6952153,449.2052316,77.48998367,74.82815448,2.661829198,87.9400744,0,87.9400744,2.326497425,85.61357698,1.149861378,4.812507716,2.012090042,-2.012090042,0.186066027,0.218505514,0.968679807,31.15607242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92766831,1.685539465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701805223,29.94840188,72.62947353,31.63394135,449.2052316,0,0.665169577,48.30466379,-0.665169577,131.6953362,0.974831198,0,510.5287478,31.63394135,531.2325297,5,17,4% -5/14/2018 2:00,77.49320811,284.3002097,142.7715239,434.5534488,48.66665255,256.5709913,208.2955458,48.27544547,47.19917341,1.076272054,36.08408806,0,36.08408806,1.467479135,34.61660892,1.352511629,4.961974723,3.724190036,-3.724190036,0,0.340870863,0.366869784,11.79979335,0.096429345,1,0.262326996,0,0.930087917,0.96884988,0.724496596,1,45.55249288,1.063183638,0.015774334,0.312029739,0.956240786,0.680737382,0.961238037,0.922476074,0.259488464,11.3424102,45.81198134,12.40559384,188.2097427,0,0.479332396,61.35819118,-0.479332396,118.6418088,0.945688252,0,223.799724,12.40559384,231.918937,5,18,4% -5/14/2018 3:00,88.43201347,293.0887919,1.888562583,10.99315009,1.587755788,4.58157779,3.027461915,1.554115876,1.539879093,0.014236782,0.505780559,0,0.505780559,0.047876695,0.457903863,1.543429799,5.11536442,26.6790735,-26.6790735,0,0.840721829,0.011969174,0.384969773,0.801281203,1,0.037465022,0,0.957765784,0.996527747,0.724496596,1,1.48670478,0.034686503,0.099222131,0.312029739,0.757422276,0.481918872,0.961238037,0.922476074,0.008410434,0.370047589,1.495115215,0.404734092,0.60161359,0,0.275395304,74.0144269,-0.275395304,105.9855731,0.868442801,0,2.017582206,0.404734092,2.282472574,5,19,13% -5/14/2018 4:00,99.22899103,302.7212401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731872607,5.283482356,-3.727712306,3.727712306,0.832369962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.053769228,86.91776376,-0.053769228,93.08223624,0,0,0,0,0,5,20,0% -5/14/2018 5:00,108.5265475,313.7805909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894145579,5.47650444,-1.318399834,1.318399834,0.75561334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155304799,98.93447404,0.155304799,81.06552596,0,0.728052448,0,0,0,5,21,0% -5/14/2018 6:00,116.0993915,326.7711577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026316641,5.703232602,-0.467135022,0.467135022,0.610038483,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343111253,110.0665422,0.343111253,69.93345779,0,0.904274672,0,0,0,5,22,0% -5/14/2018 7:00,121.2390539,341.8649831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116020673,5.966669552,0.053654534,-0.053654534,0.520978224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496850892,119.7918745,0.496850892,60.20812554,0,0.949366186,0,0,0,5,23,0% -5/15/2018 8:00,123.2588649,358.4894925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151273024,6.256821978,0.483541583,-0.483541583,0.447463209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606047343,127.3042456,0.606047343,52.69575441,0,0.967498195,0,0,0,5,0,0% -5/15/2018 9:00,121.8256036,15.25211574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126257896,0.266199638,0.92996037,-0.92996037,0.3711211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663260379,131.5490044,0.663260379,48.45099558,0,0.974614825,0,0,0,5,1,0% -5/15/2018 10:00,117.1798163,30.67376589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045173611,0.535358209,1.506470855,-1.506470855,0.272532001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664592332,131.6510578,0.664592332,48.34894217,0,0.974765909,0,0,0,5,2,0% -5/15/2018 11:00,109.9728947,44.02466364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9193891,0.768375333,2.473574938,-2.473574938,0.107147462,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609953207,127.5861196,0.609953207,52.41388038,0,0.968026499,0,0,0,5,3,0% -5/15/2018 12:00,100.9269024,55.37719942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761506751,0.96651446,5.012046149,-5.012046149,0,#DIV/0!,0,0,0.246395897,1,0.196933317,0,0.939305762,0.978067725,0.724496596,1,0,0,0.03774634,0.312029739,0.898539844,0.62303644,0.961238037,0.922476074,0,0,0,0,0,0,-0.503066494,120.2030858,0.503066494,59.79691419,0,0.95060956,0,0,0,5,4,0% -5/15/2018 13:00,90.05299245,65.20230193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571721219,1.137994849,1077.417909,-1077.417909,0,#DIV/0!,0,0,0.994586376,1,0.000928145,0,0.961156104,0.999918067,0.724496596,1,0,0,0.115401261,0.312029739,0.725308953,0.449805548,0.961238037,0.922476074,0,0,0,0,0,0,-0.341690749,109.9799172,0.341690749,70.02008284,0,0.903668851,0,0,0,5,5,0% -5/15/2018 14:00,79.44579639,74.07577662,108.9862457,367.3304373,41.70393325,41.26799015,0,41.26799015,40.44640579,0.821584356,87.65438253,59.97187801,27.68250452,1.257527459,26.42497706,1.386590724,1.292866198,-5.353601295,5.353601295,0.554326569,0.382653178,0.595537681,19.15453898,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.8786237,0.911074363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.431465023,18.41207145,39.31008872,19.32314581,0,59.97187801,-0.163264113,99.39640808,0.163264113,80.60359192,0,0.743747762,39.31008872,63.92709586,81.14909442,5,6,106% -5/15/2018 15:00,67.89596278,82.6038814,316.3877453,645.5627937,73.46921339,102.2698533,28.63094335,73.63891,71.25384553,2.385064467,78.92723971,0,78.92723971,2.215367856,76.71187185,1.185008099,1.441709705,-2.40287103,2.40287103,0.941068837,0.232212576,2.277148394,73.24092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.4919066,1.60502647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.64978626,70.40195816,70.14169286,72.00698463,28.63094335,0,0.044350362,87.45807769,-0.044350362,92.54192231,0,0,70.14169286,72.00698463,117.2688242,5,7,67% -5/15/2018 16:00,56.09041579,91.50740583,523.9265176,773.1420876,92.60296179,294.8968221,201.1366018,93.76022022,89.81064082,3.949579397,129.824371,0,129.824371,2.792320967,127.03205,0.978962434,1.597105522,-1.384036741,1.384036741,0.766837912,0.176747996,3.191453065,102.6481011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.32940407,2.023027035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.312196881,98.66925919,88.64160096,100.6922862,201.1366018,0,0.26015477,74.92075417,-0.26015477,105.0792458,0.857806714,0,261.1779285,100.6922862,327.079016,5,8,25% -5/15/2018 17:00,44.34132025,101.8857988,706.6312227,839.8639896,105.9698464,502.0655351,393.9641859,108.1013492,102.7744645,5.326884639,174.5263029,0,174.5263029,3.195381855,171.330921,0.773902033,1.778242649,-0.829800895,0.829800895,0.672058,0.149964852,3.841950416,123.570332,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.79072451,2.315043277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.783479998,118.7805034,101.5742045,121.0955466,393.9641859,0,0.469080935,62.02534541,-0.469080935,117.9746546,0.943408586,0,473.2434002,121.0955466,552.4980136,5,9,17% -5/15/2018 18:00,33.13262894,115.9024164,849.4674033,876.7191188,115.296163,694.0670061,575.8438037,118.2232024,111.8195583,6.403644103,209.4398114,0,209.4398114,3.476604712,205.9632067,0.578273465,2.022878778,-0.454205013,0.454205013,0.607827321,0.135727589,4.233167188,136.1532082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.4852127,2.518788279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066915218,130.8756425,110.5521279,133.3944308,575.8438037,0,0.656816752,48.94245035,-0.656816752,131.0575497,0.973875267,0,671.3521658,133.3944308,758.6561529,5,10,13% -5/15/2018 19:00,23.62442106,138.4292158,941.7960736,895.8889773,120.9897541,850.6024407,726.1613175,124.4411232,117.3414666,7.099656619,231.9976493,0,231.9976493,3.648287489,228.3493618,0.412323931,2.416045597,-0.160809158,0.160809158,0.557653675,0.12846704,4.362601248,140.3162525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.793081,2.643171867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160689753,134.8773191,115.9537707,137.5204909,726.1613175,0,0.810548333,35.85046028,-0.810548333,144.1495397,0.988313364,0,833.6287052,137.5204909,923.6331161,5,11,11% -5/15/2018 20:00,18.88452739,176.0930618,976.9705297,902.4409035,123.1054954,956.8207911,830.062564,126.758227,119.3934105,7.364816527,240.5899008,0,240.5899008,3.712084898,236.8778159,0.329597181,3.073403718,0.094822569,-0.094822569,0.513938075,0.126007379,4.236135413,136.2486765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7654875,2.689392872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069065687,130.9674103,117.8345532,133.6568032,830.062564,0,0.919797142,23.10355649,-0.919797142,156.8964435,0.995640188,0,944.2782003,133.6568032,1031.753905,5,12,9% -5/15/2018 21:00,22.28401654,216.072856,952.4980322,897.9225927,121.6363062,1002.53146,877.3826051,125.1488553,117.9685228,7.180332504,234.611959,0,234.611959,3.667783422,230.9441756,0.388929459,3.771182762,0.340034065,-0.340034065,0.47200444,0.127702423,3.873292161,124.5783903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3958312,2.657296604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806186986,119.7494873,116.2020182,122.4067839,877.3826051,0,0.977124991,12.27862222,-0.977124991,167.7213778,0.998829474,0,992.5576239,122.4067839,1072.670416,5,13,8% -5/15/2018 22:00,31.23398676,240.9639549,870.1363033,881.2819764,116.5901337,982.0907158,862.4567498,119.633966,113.074511,6.559455001,214.4902435,0,214.4902435,3.515622702,210.9746208,0.545135907,4.205614392,0.598906574,-0.598906574,0.427734634,0.133990656,3.30867336,106.4183087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6915209,2.54705668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397122586,102.2933262,111.0886435,104.8403829,862.4567498,0,0.978638816,11.86387127,-0.978638816,168.1361287,0.998908628,0,972.604132,104.8403829,1041.220066,5,14,7% -5/15/2018 23:00,42.25091572,256.0418211,735.8222038,848.2543022,107.938108,894.2353436,784.0050292,110.2303144,104.6833758,5.546938585,181.6633446,0,181.6633446,3.254732206,178.4086124,0.737417591,4.468772801,0.90331955,-0.90331955,0.375676949,0.146690474,2.591858047,83.36306426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6256427,2.358042404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.877792332,80.13174824,102.503435,82.48979064,784.0050292,0,0.924257062,22.44340839,-0.924257062,157.5565916,0.995902496,0,883.2960005,82.48979064,937.2839187,5,15,6% -5/15/2018 0:00,53.94006824,266.8712931,559.49755,788.4701985,95.37941637,741.4702777,644.7491737,96.72110392,92.50337506,4.217728865,138.5326999,0,138.5326999,2.876041316,135.6566586,0.94143179,4.657782744,1.314248108,-1.314248108,0.305404026,0.170473341,1.787533057,57.49320772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91776264,2.083682143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295061615,55.26465812,90.21282426,57.34834027,644.7491737,0,0.817721678,35.14262897,-0.817721678,144.857371,0.988854501,0,727.7759468,57.34834027,765.3092885,5,16,5% -5/15/2018 1:00,65.74878701,275.9478473,355.2907164,676.1309751,77.57792708,528.4704464,450.5534486,77.91699785,75.23866635,2.678331496,88.48360835,0,88.48360835,2.339260734,86.14434761,1.147532812,4.816198499,1.996020921,-1.996020921,0.188814009,0.218350561,0.980100391,31.52339765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32226794,1.694786438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710079397,30.30148887,73.03234733,31.99627531,450.5534486,0,0.666370075,48.21248016,-0.666370075,131.7875198,0.974966619,0,512.3069196,31.99627531,533.2478418,5,17,4% -5/15/2018 2:00,77.35315131,284.4922597,145.0660892,437.7520273,49.22416119,259.3011167,210.4676761,48.83344056,47.73987111,1.093569457,36.65724292,0,36.65724292,1.484290078,35.17295284,1.350067177,4.965326628,3.673160503,-3.673160503,0,0.339322315,0.371072519,11.93496778,0.089248004,1,0.265803216,0,0.929572288,0.968334251,0.724496596,1,46.06299971,1.075363108,0.014647025,0.312029739,0.959303475,0.683800071,0.961238037,0.922476074,0.262863394,11.472345,46.32586311,12.5477081,191.683856,0,0.480792008,61.26285792,-0.480792008,118.7371421,0.946004927,0,227.6597353,12.5477081,235.8719593,5,18,4% -5/15/2018 3:00,88.29218336,293.266272,2.294303096,13.08528606,1.90432742,5.488113325,3.623912977,1.864200348,1.846904922,0.017295426,0.613702846,0,0.613702846,0.057422498,0.556280348,1.540989303,5.118462031,24.42245487,-24.42245487,0,0.830024343,0.014355624,0.46172623,0.784776468,1,0.040923065,0,0.957428323,0.996190286,0.724496596,1,1.783686862,0.041602404,0.097738501,0.312029739,0.760472464,0.48496906,0.961238037,0.922476074,0.010065843,0.443828815,1.793752705,0.48543122,0.779951352,0,0.276945644,73.92200453,-0.276945644,106.0779955,0.869459157,0,2.47188855,0.48543122,2.789593575,5,19,13% -5/15/2018 4:00,99.0596367,302.8848781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728916816,5.286338377,-3.784336634,3.784336634,0.822686631,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055840385,86.79891657,-0.055840385,93.20108343,0,0,0,0,0,5,20,0% -5/15/2018 5:00,108.3375605,313.9257389,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890847135,5.479037751,-1.326116408,1.326116408,0.756932952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152944976,98.79763101,0.152944976,81.20236899,0,0.723085045,0,0,0,5,21,0% -5/15/2018 6:00,115.8898175,326.8859862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022658885,5.705236737,-0.467471946,0.467471946,0.610096101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.340496769,109.9071428,0.340496769,70.09285717,0,0.903155729,0,0,0,5,22,0% -5/15/2018 7:00,121.0126459,341.9311652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112069107,5.967824648,0.056056209,-0.056056209,0.520567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494033363,119.6060294,0.494033363,60.3939706,0,0.94879226,0,0,0,5,23,0% -5/16/2018 8:00,123.0257,358.4906984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147203529,6.256843025,0.487890002,-0.487890002,0.446719585,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603092433,127.0916994,0.603092433,52.9083006,0,0.967093969,0,0,0,5,0,0% -5/16/2018 9:00,121.5992862,15.18725799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122307912,0.265067656,0.936708093,-0.936708093,0.369967171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660243274,131.3184289,0.660243274,48.68157112,0,0.974270338,0,0,0,5,1,0% -5/16/2018 10:00,116.9710606,30.5582356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041530138,0.533341825,1.517560988,-1.517560988,0.270635476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661592564,131.4214442,0.661592564,48.57855581,0,0.974424785,0,0,0,5,2,0% -5/16/2018 11:00,109.7860253,43.87755648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916127615,0.765807828,2.495798509,-2.495798509,0.103347008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607049186,127.3764443,0.607049186,52.62355565,0,0.967634351,0,0,0,5,3,0% -5/16/2018 12:00,100.7611562,55.21150086,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758613933,0.963622475,5.087269801,-5.087269801,0,#DIV/0!,0,0,0.253631466,1,0.194094443,0,0.939684869,0.978446832,0.724496596,1,0,0,0.038735781,0.312029739,0.896030909,0.620527505,0.961238037,0.922476074,0,0,0,0,0,0,-0.500330115,120.0218426,0.500330115,59.97815739,0,0.950065979,0,0,0,5,4,0% -5/16/2018 13:00,89.92991213,65.02348684,0.012122212,0.460790512,0.011558544,0.011301394,0,0.011301394,0.011210011,9.14E-05,0.159763451,0.156475748,0.003287703,0.000348533,0.002939171,1.569573063,1.134873936,-814.4029336,814.4029336,0,0.953501199,8.71E-05,0.002802503,1,0.992795454,0,0.001227893,0.961238037,1,0.721020607,0.996524011,0.010775489,0.000251991,0.115824807,0.308079505,0.724496596,0.448993192,0.961861643,0.92309968,6.31E-05,0.002694837,0.010838617,0.002946828,0,0.001127337,-0.339581097,109.8513543,0.339581097,70.14864568,0,0.902759767,0.010838617,0.003964543,0.013433331,5,5,24% -5/16/2018 14:00,79.31239568,73.88363136,111.1632386,371.5947592,42.24949407,41.81351139,0,41.81351139,40.97551594,0.837995448,88.07047544,59.8436831,28.22679234,1.27397813,26.95281421,1.384262442,1.28951263,-5.286466195,5.286466195,0.565807348,0.380067139,0.612431968,19.69791731,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.3872245,0.922992819,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.443704876,18.93438736,39.83092938,19.85738018,0,59.8436831,-0.161045552,99.26758899,0.161045552,80.73241101,0,0.739528836,39.83092938,64.11350947,81.79193905,5,6,105% -5/16/2018 15:00,67.77040815,82.39394,318.5645962,646.9707664,73.80331095,103.9226106,29.94326729,73.97934331,71.57786882,2.401474488,79.46511668,0,79.46511668,2.22544213,77.23967455,1.182816758,1.438045537,-2.389789084,2.389789084,0.938831692,0.231674555,2.28861199,73.60962864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80337011,1.612325248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658091596,70.75637493,70.4614617,72.36870018,29.94326729,0,0.046282257,87.34727439,-0.046282257,92.65272561,0,0,70.4614617,72.36870018,117.8253286,5,7,67% -5/16/2018 16:00,55.96736975,91.27124981,525.8656072,773.6597792,92.87534251,296.5708778,202.5318725,94.03900534,90.07480826,3.964197074,130.302739,0,130.302739,2.80053425,127.5022047,0.976814876,1.592983822,-1.379863346,1.379863346,0.766124219,0.176614217,3.200811672,102.9491061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58333186,2.028977531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.31897716,98.95859663,88.90230902,100.9875742,202.5318725,0,0.261784156,74.82404597,-0.261784156,105.175954,0.859002956,0,262.8777861,100.9875742,328.9721337,5,8,25% -5/16/2018 17:00,44.21250221,101.6109749,708.3364789,840.0594533,106.216754,503.5356166,395.1819501,108.3536665,103.0139269,5.33973958,174.9472072,0,174.9472072,3.20282703,171.7443801,0.771653734,1.773446068,-0.828532272,0.828532272,0.671841053,0.149952399,3.850215348,123.8361606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.02090489,2.32043728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789467913,119.0360279,101.8103728,121.3564652,395.1819501,0,0.470421407,61.93834554,-0.470421407,118.0616545,0.94371232,0,474.7484477,121.3564652,554.173827,5,9,17% -5/16/2018 18:00,32.98445627,115.5778238,850.9904868,876.7817004,115.5299586,695.2985446,576.8371148,118.4614299,112.0463041,6.41512575,209.8161505,0,209.8161505,3.483654512,206.332496,0.575687364,2.017213567,-0.454276317,0.454276317,0.607839515,0.135759401,4.240904835,136.4020775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7031694,2.523895835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.072521117,131.1148652,110.7756905,133.6387611,576.8371148,0,0.657902776,48.85987796,-0.657902776,131.140122,0.974000929,0,672.615576,133.6387611,760.0794723,5,10,13% -5/16/2018 19:00,23.43564642,138.0971952,943.2084963,895.8963376,121.2170095,851.6311295,726.958956,124.6721735,117.5618695,7.110304058,232.3469601,0,232.3469601,3.655140081,228.69182,0.409029192,2.410250743,-0.161701498,0.161701498,0.557806274,0.128515604,4.370242218,140.5620124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0049406,2.648136546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16622561,135.1135528,116.1711662,137.7616894,726.958956,0,0.811431999,35.76392155,-0.811431999,144.2360785,0.988380542,0,834.6832531,137.7616894,924.8455236,5,11,11% -5/16/2018 20:00,18.65482312,176.0357909,978.3534338,902.4335699,123.3312131,957.7177052,830.7301418,126.9875634,119.612322,7.375241442,240.9320081,0,240.9320081,3.718891119,237.213117,0.325588085,3.072404152,0.093258628,-0.093258628,0.514205525,0.126059979,4.244044087,136.5030466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9759136,2.694323956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074795494,131.2119206,118.0507091,133.9062445,830.7301418,0,0.92054437,22.99420476,-0.92054437,157.0057952,0.995684313,0,945.1956794,133.9062445,1032.834638,5,12,9% -5/16/2018 21:00,22.08125447,216.3616417,953.9349138,897.9315937,121.865102,1003.388903,878.0073195,125.3815839,118.1904196,7.191164324,234.9672466,0,234.9672466,3.67468246,231.2925641,0.385390593,3.776223024,0.337746474,-0.337746474,0.472395641,0.127749913,3.881769301,124.8510442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6091269,2.662294933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.812328645,120.0115726,116.4214555,122.6738676,878.0073195,0,0.977810922,12.09243037,-0.977810922,167.9075696,0.99886537,0,993.4325613,122.6738676,1073.720154,5,13,8% -5/16/2018 22:00,31.0733535,241.2821261,871.7061789,881.3461407,116.8268498,983.0151975,863.1398189,119.8753786,113.3040892,6.571289386,214.8780159,0,214.8780159,3.522760565,211.3552553,0.542332328,4.211167526,0.595642339,-0.595642339,0.428292851,0.134020904,3.317933113,106.7161342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9122003,2.552228038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403831246,102.5796074,111.3160315,105.1318354,863.1398189,0,0.979342598,11.66610681,-0.979342598,168.3338932,0.998945343,0,973.5455343,105.1318354,1042.352218,5,14,7% -5/16/2018 23:00,42.11229386,256.3146975,737.5926504,848.4452172,108.1888622,895.3464828,784.859629,110.4868537,104.9265688,5.560284959,182.100171,0,182.100171,3.262293368,178.8378776,0.734998183,4.473535392,0.898474638,-0.898474638,0.376505477,0.146678335,2.601983254,83.68872572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.859409,2.36352044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88512801,80.44478641,102.744537,82.80830685,784.859629,0,0.925056342,22.32314758,-0.925056342,157.6768524,0.995949238,0,884.4248866,82.80830685,938.6212673,5,15,6% -5/16/2018 0:00,53.80910285,267.1046415,561.5156584,788.9556515,95.65513349,742.9115363,645.9078158,97.00372051,92.77077829,4.232942218,139.0303276,0,139.0303276,2.884355205,136.1459724,0.939146012,4.661855442,1.306328415,-1.306328415,0.306758374,0.170351676,1.798379244,57.84205838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.1748008,2.089705527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302919641,55.59998665,90.47772044,57.68969217,645.9078158,0,0.818687102,35.04641725,-0.818687102,144.9535828,0.988926606,0,729.2331445,57.68969217,766.9898942,5,16,5% -5/16/2018 1:00,65.61681045,276.1535158,357.5611281,677.3914251,77.90873558,530.4542047,452.1992581,78.25494657,75.55949975,2.695446818,89.04407103,0,89.04407103,2.34923583,86.6948352,1.145229387,4.819788092,1.9803283,-1.9803283,0.191497605,0.217889277,0.991012309,31.87436244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.63066521,1.702013362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.717985044,30.63884957,73.34865025,32.34086294,452.1992581,0,0.667559761,48.12099575,-0.667559761,131.8790042,0.975100339,0,514.2883,32.34086294,535.454748,5,17,4% -5/16/2018 2:00,77.21458622,284.6787405,147.4205253,441.4384262,49.73009596,262.2222656,212.8803973,49.34186827,48.23055008,1.11131819,37.24335901,0,37.24335901,1.499545878,35.74381313,1.34764876,4.968581332,3.623880008,-3.623880008,0,0.337334953,0.374886469,12.05763752,0.082203617,1,0.269246719,0,0.929059004,0.967820967,0.724496596,1,46.52485705,1.086415884,0.013534061,0.312029739,0.962336952,0.686833548,0.961238037,0.922476074,0.265974799,11.59025982,46.79083185,12.6766757,195.3808586,0,0.482242561,61.16803005,-0.482242561,118.8319699,0.946317737,0,231.6832039,12.6766757,239.9798346,5,18,4% -5/16/2018 3:00,88.15319094,293.4382398,2.752872179,15.47596808,2.25412324,6.51697879,4.31007337,2.206905421,2.186153107,0.020752313,0.735435864,0,0.735435864,0.067970133,0.667465731,1.538563428,5.121463436,22.51936627,-22.51936627,0,0.818825973,0.016992533,0.546538277,0.768565917,1,0.044377069,0,0.957088411,0.995850374,0.724496596,1,2.111953432,0.04924413,0.096264431,0.312029739,0.763520502,0.488017098,0.961238037,0.922476074,0.011890689,0.52535338,2.12384412,0.57459751,0.997497878,0,0.278501051,73.82923691,-0.278501051,106.1707631,0.870467464,0,2.992133568,0.57459751,3.368196147,5,19,13% -5/16/2018 4:00,98.89250616,303.0429613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725999838,5.28909745,-3.842573276,3.842573276,0.812727579,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.057897579,86.68085695,-0.057897579,93.31914305,0,0,0,0,0,5,20,0% -5/16/2018 5:00,108.1514477,314.065322,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887598854,5.481473936,-1.334004738,1.334004738,0.758281935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150604762,98.66197503,0.150604762,81.33802497,0,0.718005186,0,0,0,5,21,0% -5/16/2018 6:00,115.6839494,326.9955218,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019065808,5.707148494,-0.467907405,0.467907405,0.610170568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.337909331,109.7495503,0.337909331,70.25044971,0,0.902031313,0,0,0,5,22,0% -5/16/2018 7:00,120.790844,341.9929515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108197934,5.968903023,0.058359411,-0.058359411,0.520173643,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491251593,119.4228784,0.491251593,60.57712157,0,0.94821916,0,0,0,5,23,0% -5/17/2018 8:00,122.7978778,358.4891573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.143227281,6.256816128,0.492122001,-0.492122001,0.445995871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600182673,126.8829817,0.600182673,53.11701826,0,0.96669203,0,0,0,5,0,0% -5/17/2018 9:00,121.3786782,15.12159862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118457576,0.263921684,0.943304208,-0.943304208,0.368839169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657280739,131.0928147,0.657280739,48.90718527,0,0.973929005,0,0,0,5,1,0% -5/17/2018 10:00,116.7680257,30.44348439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03798651,0.531339038,1.528433038,-1.528433038,0.268776246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658656168,131.1974649,0.658656168,48.80253509,0,0.974087859,0,0,0,5,2,0% -5/17/2018 11:00,109.6047033,43.73222502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912962948,0.763271316,2.517671804,-2.517671804,0.099606454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604216113,127.172455,0.604216113,52.82754497,0,0.967248152,0,0,0,5,3,0% -5/17/2018 12:00,100.600749,55.04814537,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755814301,0.960771384,5.16216606,-5.16216606,0,#DIV/0!,0,0,0.260698815,1,0.191347106,0,0.940050059,0.978812022,0.724496596,1,0,0,0.03969636,0.312029739,0.893602554,0.61809915,0.961238037,0.922476074,0,0,0,0,0,0,-0.497670515,119.8460018,0.497670515,60.15399819,0,0.949531922,0,0,0,5,4,0% -5/17/2018 13:00,89.81048423,64.84735804,0.04068495,0.655554009,0.038516595,0.037661878,0,0.037661878,0.037355177,0.0003067,0.232293772,0.221267817,0.011025955,0.001161417,0.009864537,1.567488653,1.131799909,-301.1044255,301.1044255,0,0.946703753,0.000290354,0.009338794,1,0.980400628,0,0.003321095,0.961238037,1,0.715122146,0.99062555,0.035907217,0.000836827,0.115824807,0.301376877,0.724496596,0.448993192,0.962912466,0.924150503,0.000210361,0.008985347,0.036117578,0.009822173,0,0.00433671,-0.337527975,109.7263363,0.337527975,70.27366366,0,0.901864131,0.036117578,0.013733297,0.045105746,5,5,25% -5/17/2018 14:00,79.18402181,73.694426,113.3361728,376.2056143,42.73921808,42.3048489,0,42.3048489,41.45047296,0.854375944,88.55040703,59.78199467,28.76841237,1.288745116,27.47966725,1.382021896,1.286210374,-5.223375421,5.223375421,0.576596505,0.3771013,0.62904498,20.23224888,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.84377125,0.933691449,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.455740947,19.4480072,40.2995122,20.38169865,0,59.78199467,-0.158907769,99.1435049,0.158907769,80.8564951,0,0.735352073,40.2995122,64.34251233,82.41039967,5,6,104% -5/17/2018 15:00,67.64993745,82.18716637,320.7542456,648.7894062,74.04271673,105.4567511,31.22871446,74.22803662,71.81005563,2.41798099,80.0032415,0,80.0032415,2.232661098,77.77058041,1.180714147,1.434436656,-2.377382624,2.377382624,0.936710063,0.230839397,2.30027337,73.98469872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.0265569,1.617555365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666540226,71.11690655,70.69309713,72.73446192,31.22871446,0,0.048133823,87.24106904,-0.048133823,92.75893096,0,0,70.69309713,72.73446192,118.2963478,5,7,67% -5/17/2018 16:00,55.84955197,91.03845488,527.8336326,774.5404141,93.03152917,298.1702342,203.964916,94.2053182,90.22628532,3.979032881,130.7846191,0,130.7846191,2.805243854,127.9793753,0.974758568,1.588920784,-1.375925823,1.375925823,0.765450863,0.176251613,3.210246035,103.2525476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.72893737,2.032389623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.325812324,99.25027618,89.0547497,101.2826658,203.964916,0,0.263336699,74.73185741,-0.263336699,105.2681426,0.860129009,0,264.4908908,101.2826658,330.7783699,5,8,25% -5/17/2018 17:00,44.0892189,101.3394984,710.084457,840.5746724,106.3356195,504.9734234,396.4912986,108.4821248,103.1292082,5.352916578,175.3746089,0,175.3746089,3.206411265,172.1681977,0.769502034,1.76870791,-0.827369369,0.827369369,0.671642185,0.149750665,3.858457134,124.1012448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.13171768,2.323034046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.795439059,119.2908369,101.9271567,121.613871,396.4912986,0,0.471690751,61.85589707,-0.471690751,118.1441029,0.943998346,0,476.2142866,121.613871,555.8081329,5,9,17% -5/17/2018 18:00,32.8423114,115.2556083,852.568875,877.1354447,115.6292011,696.5361917,577.9666133,118.5695784,112.1425541,6.427024306,210.2018415,0,210.2018415,3.48664704,206.7151944,0.573206468,2.011589846,-0.454397827,0.454397827,0.607860295,0.135624469,4.248546074,136.647846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7956885,2.526063912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.078057168,131.3511072,110.8737457,133.8771712,577.9666133,0,0.65892516,48.78204918,-0.65892516,131.2179508,0.974118848,0,673.8819175,133.8771712,761.5018484,5,10,13% -5/17/2018 19:00,23.25328798,137.7633073,944.6877831,896.1791707,121.3065406,852.7013207,727.9311643,124.7701564,117.6487008,7.121455546,232.70833,0,232.70833,3.657839772,229.0504902,0.405846437,2.404423301,-0.162613651,0.162613651,0.557962262,0.128409134,4.377729248,140.802821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0884062,2.650092463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171649938,135.3450272,116.2600562,137.9951197,727.9311643,0,0.812260749,35.68259554,-0.812260749,144.3174045,0.988443412,0,835.7788202,137.9951197,926.0938661,5,11,11% -5/17/2018 20:00,18.43068477,175.9713265,979.8134106,902.6971308,123.4184776,958.6893563,831.6061538,127.0832025,119.6969551,7.386247364,241.2886278,0,241.2886278,3.721522464,237.5671053,0.321676133,3.071279037,0.091696001,-0.091696001,0.51447275,0.125961205,4.251748135,136.7508353,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0572661,2.696230357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.08037705,131.4501045,118.1376432,134.1463348,831.6061538,0,0.921246036,22.89107089,-0.921246036,157.1089291,0.995725682,0,946.1892481,134.1463348,1033.985341,5,12,9% -5/17/2018 21:00,21.8826346,216.6431949,955.457154,898.2175227,121.9568706,1004.352542,878.8704809,125.4820606,118.279421,7.202639614,235.3390985,0,235.3390985,3.677449622,231.6616489,0.381924023,3.781137053,0.335479396,-0.335479396,0.472783334,0.127642428,3.889991153,125.1154872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6946785,2.664299733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818285349,120.2657653,116.5129638,122.9300651,878.8704809,0,0.978460627,11.91342915,-0.978460627,168.0865709,0.998899323,0,994.4160926,122.9300651,1074.871362,5,13,8% -5/17/2018 22:00,30.91559505,241.5926269,873.3670622,881.704889,116.9303109,984.0756277,864.0873873,119.9882404,113.4044306,6.583809827,215.283836,0,215.283836,3.525880301,211.7579557,0.539578924,4.216586788,0.592421787,-0.592421787,0.428843597,0.133884498,3.326881968,107.0039602,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0086522,2.554488275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.41031466,102.8562766,111.4189669,105.4107649,864.0873873,0,0.980018823,11.47292021,-0.980018823,168.5270798,0.998980572,0,974.6254791,105.4107649,1043.614717,5,14,7% -5/17/2018 23:00,41.97571935,256.580538,739.4562369,848.9627693,108.3132707,896.6214032,785.9998438,110.6215594,105.0472259,5.574333461,182.5557705,0,182.5557705,3.266044744,179.2897258,0.732614509,4.478175185,0.893709958,-0.893709958,0.377320286,0.146476918,2.611734046,84.00234469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9753892,2.366238299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.892192426,80.7462489,102.8675816,83.1124872,785.9998438,0,0.925835469,22.20532432,-0.925835469,157.7946757,0.995994724,0,885.7192792,83.1124872,940.1147398,5,15,6% -5/17/2018 0:00,53.67976916,267.3316528,563.6242563,789.8187444,95.81642204,744.5415011,647.36546,97.17604111,92.92720339,4.24883772,139.546445,0,139.546445,2.889218649,136.6572264,0.936888714,4.665817536,1.298564227,-1.298564227,0.308086128,0.17000053,1.808780577,58.17660101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.32516255,2.093229076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.310455371,55.92156175,90.63561792,58.01479082,647.36546,0,0.819638005,34.95142693,-0.819638005,145.0485731,0.98899746,0,730.8784137,58.01479082,768.847934,5,16,5% -5/17/2018 1:00,65.48633369,276.3533192,359.9122557,679.1009402,78.1462966,532.6439596,454.1408915,78.50306804,75.78989743,2.713170611,89.62129248,0,89.62129248,2.356399172,87.26489331,1.142952138,4.823275319,1.965012128,-1.965012128,0.194116825,0.217125967,1.001417676,32.2090348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.85213222,1.707203178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725523697,30.96054938,73.57765592,32.66775256,454.1408915,0,0.668738423,48.03022982,-0.668738423,131.9697702,0.97523235,0,516.470545,32.66775256,537.8509357,5,17,4% -5/17/2018 2:00,77.07758685,284.8596033,149.8346652,445.6092282,50.18244557,265.3325798,215.5338031,49.79877668,48.66925968,1.129516997,37.8423352,0,37.8423352,1.513185888,36.32914931,1.34525767,4.971737984,3.576302263,-3.576302263,0,0.334918795,0.378296472,12.16731492,0.075298462,1,0.272654832,0,0.928548542,0.967310505,0.724496596,1,46.93623439,1.096298024,0.012436156,0.312029739,0.965338887,0.689835483,0.961238037,0.922476074,0.268810083,11.69568591,47.20504448,12.79198393,199.3044393,0,0.483683437,61.07374925,-0.483683437,118.9262508,0.946626603,0,235.8719288,12.79198393,244.2440265,5,18,4% -5/17/2018 3:00,88.01519626,293.6046646,3.266643914,18.19110234,2.636605414,7.676314681,5.094587307,2.581727374,2.557102033,0.024625342,0.871539018,0,0.871539018,0.079503381,0.792035637,1.536154967,5.124368097,20.89485043,-20.89485043,0,0.807129728,0.019875845,0.639275508,0.752663577,1,0.047822193,0,0.956746543,0.995508506,0.724496596,1,2.471014094,0.057599929,0.094801855,0.312029739,0.766562012,0.491058608,0.961238037,0.922476074,0.013881688,0.614495934,2.484895782,0.672095864,1.260077001,0,0.280059296,73.73625631,-0.280059296,106.2637437,0.871466379,0,3.583010523,0.672095864,4.022883824,5,19,12% -5/17/2018 4:00,98.72769675,303.1954798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723123371,5.291759399,-3.902432066,3.902432066,0.802491123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059939457,86.56366236,-0.059939457,93.43633764,0,0,0,0,0,5,20,0% -5/17/2018 5:00,107.9683133,314.1993566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884402555,5.48381328,-1.342059696,1.342059696,0.759659414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.148285804,98.52759946,0.148285804,81.47240054,0,0.712813307,0,0,0,5,21,0% -5/17/2018 6:00,115.4818912,327.0998106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015539228,5.708968678,-0.46844132,0.46844132,0.610261873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335350799,109.5938713,0.335350799,70.40612874,0,0.900902398,0,0,0,5,22,0% -5/17/2018 7:00,120.5737434,342.0504114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104408813,5.969905887,0.060561959,-0.060561959,0.519796985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488507564,119.2425352,0.488507564,60.75746477,0,0.94764744,0,0,0,5,23,0% -5/18/2018 8:00,122.5754788,358.4849432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139345688,6.256742577,0.49623354,-0.49623354,0.445292756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597320061,126.6782013,0.597320061,53.32179867,0,0.966292783,0,0,0,5,0,0% -5/18/2018 9:00,121.1638461,15.05520274,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114708048,0.262762857,0.949741974,-0.949741974,0.367738247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654374687,130.8722524,0.654374687,49.1277476,0,0.973591176,0,0,0,5,1,0% -5/18/2018 10:00,116.570766,30.32957271,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034543678,0.529350905,1.5390745,-1.5390745,0.266956449,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655784873,130.97919,0.655784873,49.02080999,0,0.973755484,0,0,0,5,2,0% -5/18/2018 11:00,109.4289715,43.5887344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909895849,0.760766932,2.539164334,-2.539164334,0.095931015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601455448,126.9742077,0.601455448,53.02579229,0,0.966868323,0,0,0,5,3,0% -5/18/2018 12:00,100.4457117,54.88720824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753108389,0.957962501,5.236596043,-5.236596043,0,#DIV/0!,0,0,0.267590807,1,0.188691949,0,0.940401411,0.979163374,0.724496596,1,0,0,0.040627577,0.312029739,0.891255382,0.615751977,0.961238037,0.922476074,0,0,0,0,0,0,-0.495088817,119.6756072,0.495088817,60.32439277,0,0.94900802,0,0,0,5,4,0% -5/18/2018 13:00,89.69462252,64.67400384,0.079856995,0.904480653,0.075036278,0.073375653,0,0.073375653,0.072773658,0.000601996,0.325105545,0.303480672,0.021624874,0.002262621,0.019362253,1.565466484,1.128774307,-186.8110074,186.8110074,0,0.939633132,0.000565655,0.018193414,1,0.968230487,0,0.005352952,0.961238037,1,0.709429237,0.984932641,0.069952808,0.001624973,0.115824807,0.294908666,0.724496596,0.448993192,0.9639178,0.925155837,0.000409815,0.017514552,0.070362623,0.019139525,0,0.009641433,-0.335530308,109.6047889,0.335530308,70.39521109,0,0.900982165,0.070362623,0.027826284,0.08857437,5,5,26% -5/18/2018 14:00,79.06068326,73.50826546,115.43041,380.5929105,43.20558833,42.77294361,0,42.77294361,41.90278043,0.870163188,88.98668477,59.69643756,29.29024721,1.3028079,27.98743931,1.379869232,1.28296126,-5.164107918,5.164107918,0.586731845,0.374299878,0.645154707,20.75039309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.2785464,0.943879888,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.467412389,19.94606712,40.74595878,20.88994701,0,59.69643756,-0.156851155,99.02417298,0.156851155,80.97582702,0,0.731226447,40.74595878,64.54156092,82.98711958,5,6,104% -5/18/2018 15:00,67.53454497,81.98368899,322.8508095,650.5176437,74.27088707,106.929278,32.46414645,74.46513157,72.03134579,2.433785775,80.51845789,0,80.51845789,2.239541275,78.27891661,1.178700169,1.430885306,-2.365633169,2.365633169,0.934700787,0.230047083,2.311421551,74.34326253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23926942,1.62254003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674617045,71.46157173,70.91388647,73.08411176,32.46414645,0,0.049905098,87.13946033,-0.049905098,92.86053967,0,0,70.91388647,73.08411176,118.7459759,5,7,67% -5/18/2018 16:00,55.73694683,90.80918691,529.7122791,775.3769421,93.18031194,299.69351,205.3297333,94.36377665,90.37058174,3.993194911,131.2446051,0,131.2446051,2.809730204,128.4348749,0.972793237,1.584919303,-1.372219654,1.372219654,0.764817071,0.175907404,3.21926378,103.5425893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.86764058,2.035639968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.33234565,99.52907529,89.19998623,101.5647153,205.3297333,0,0.264812793,74.6441708,-0.264812793,105.3558292,0.861187369,0,266.0273591,101.5647153,332.4994339,5,8,25% -5/18/2018 17:00,43.97144976,101.0716002,711.7507284,841.0640844,106.4488027,506.3349597,397.7305035,108.6044562,103.2389786,5.365477635,175.7820286,0,175.7820286,3.209824156,172.5722045,0.767446575,1.764032203,-0.826310235,0.826310235,0.671461062,0.149559106,3.866347367,124.3550218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.23723307,2.325506674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801155506,119.534777,102.0383886,121.8602837,397.7305035,0,0.472889654,61.77796571,-0.472889654,118.2220343,0.944267088,0,477.6022131,121.8602837,557.3573315,5,9,17% -5/18/2018 18:00,32.70618308,114.9361127,854.07483,877.4720235,115.7238223,697.7031507,579.0304518,118.6726989,112.2343221,6.438376831,210.5698309,0,210.5698309,3.489500219,207.0803307,0.57083058,2.006013596,-0.454568267,0.454568267,0.607889442,0.135496116,4.255888766,136.8840123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8838995,2.52813103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.083376924,131.5781192,110.9672764,134.1062502,579.0304518,0,0.659884801,48.70891233,-0.659884801,131.2910877,0.974229199,0,675.0756496,134.1062502,762.8455082,5,10,13% -5/18/2018 19:00,23.07738109,137.4279712,946.104425,896.4493776,121.3922342,853.709201,728.8452558,124.8639452,117.7318105,7.132134791,233.0543952,0,233.0543952,3.660423751,229.3939714,0.402776283,2.398570581,-0.163544516,0.163544516,0.558121449,0.128307437,4.38496309,141.0354862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1682944,2.651964547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176890831,135.5686739,116.3451852,138.2206384,728.8452558,0,0.813035598,35.60641321,-0.813035598,144.3935868,0.988502078,0,836.8102349,138.2206384,927.2728783,5,11,11% -5/18/2018 20:00,18.21219568,175.8996339,981.2202197,902.9505074,123.5025231,959.6082549,832.432936,127.1753189,119.7784664,7.396852485,241.6322592,0,241.6322592,3.724056749,237.9082024,0.317862779,3.070027765,0.090135808,-0.090135808,0.514739559,0.125866264,4.259236939,136.991701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1356179,2.698066437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085802663,131.6816337,118.2214206,134.3797002,832.432936,0,0.921903171,22.79408224,-0.921903171,157.2059178,0.995764369,0,947.128478,134.3797002,1035.077304,5,12,9% -5/18/2018 21:00,21.68820007,216.9171894,956.9346816,898.4943703,122.0458955,1005.272956,879.693417,125.5795393,118.3657614,7.213777841,235.7000266,0,235.7000266,3.680134051,232.0198926,0.3785305,3.78591916,0.333234079,-0.333234079,0.473167306,0.127538376,3.89802756,125.3739657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7776722,2.666244592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824107698,120.5142247,116.6017799,123.1804693,879.693417,0,0.979075046,11.7416764,-0.979075046,168.2583236,0.998931392,0,995.3551492,123.1804693,1075.974303,5,13,8% -5/18/2018 22:00,30.76073546,241.8952324,874.9900708,882.0544448,117.0313402,985.1012404,865.0027821,120.0984582,113.5024135,6.596044751,215.6803996,0,215.6803996,3.528926706,212.1514729,0.536876114,4.221868251,0.589246387,-0.589246387,0.429386623,0.133751621,3.335666576,107.2865034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1028371,2.556695386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.416679079,103.1278679,111.5195162,105.6845632,865.0027821,0,0.980668242,11.28432102,-0.980668242,168.715679,0.999014358,0,975.6697152,105.6845632,1044.838148,5,14,7% -5/18/2018 23:00,41.8412244,256.8392053,741.2867339,849.4692589,108.4353337,897.8676437,787.1139029,110.7537408,105.1656083,5.588132521,183.0032763,0,183.0032763,3.269725394,179.733551,0.730267129,4.48268978,0.889027283,-0.889027283,0.37812107,0.146279879,2.621333982,84.31111163,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0891829,2.368904918,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899147546,81.04304743,102.9883304,83.41195235,787.1139029,0,0.926594923,22.08990201,-0.926594923,157.910098,0.996038988,0,886.9844655,83.41195235,941.5759201,5,15,6% -5/18/2018 0:00,53.55211362,267.5522342,565.7023308,790.6650181,95.97505158,746.1451281,648.7995753,97.34555279,93.08104966,4.264503123,140.0550815,0,140.0550815,2.894001915,137.1610796,0.934660704,4.669667408,1.290957513,-1.290957513,0.309386953,0.169656454,1.819040496,58.50659528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.47304545,2.096694536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.317888647,56.23876479,90.79093409,58.33545932,648.7995753,0,0.82057453,34.85765221,-0.82057453,145.1423478,0.989067083,0,732.4972373,58.33545932,770.6766287,5,16,5% -5/18/2018 1:00,65.35741771,276.5471905,362.2337899,680.7760494,78.37984378,534.8029114,456.0558377,78.74707362,76.0164023,2.730671316,90.19121764,0,90.19121764,2.363441481,87.82777616,1.14070213,4.826659012,1.950072441,-1.950072441,0.196671662,0.216379162,1.011700545,32.53976721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.06985732,1.712305307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732973601,31.27846195,73.80283092,32.99076726,456.0558377,0,0.66990582,47.94020362,-0.66990582,132.0597964,0.975362643,0,518.6226581,32.99076726,540.2144554,5,17,4% -5/18/2018 2:00,76.94222852,285.0348002,152.2243747,449.685683,50.62535959,268.3951664,218.1488165,50.24634984,49.09881821,1.147531637,38.43510343,0,38.43510343,1.526541379,36.90856205,1.342895221,4.974795747,3.530383332,-3.530383332,0,0.332570652,0.381635345,12.27470455,0.068534803,1,0.276024838,0,0.928041394,0.966803357,0.724496596,1,47.33846913,1.105974033,0.011354029,0.312029739,0.968306913,0.692803509,0.961238037,0.922476074,0.271604181,11.79891291,47.61007331,12.90488694,203.1980303,0,0.485113991,60.98005892,-0.485113991,119.0199411,0.946931441,0,240.024677,12.90488694,248.4706674,5,18,4% -5/18/2018 3:00,87.87835509,293.7655164,3.828581657,21.13991978,3.045955883,8.93635707,5.95338653,2.98297054,2.954109075,0.028861466,1.020130757,0,1.020130757,0.091846808,0.928283949,1.533766638,5.12717549,19.49372432,-19.49372432,0,0.795583366,0.022961702,0.738527269,0.737082156,1,0.051253633,0,0.956403228,0.995165191,0.724496596,1,2.855425405,0.0665427,0.093352647,0.312029739,0.769592652,0.494089248,0.961238037,0.922476074,0.016007932,0.709900502,2.871433337,0.776443202,1.565251549,0,0.281618218,73.64319124,-0.281618218,106.3568088,0.872454668,0,4.237044357,0.776443202,4.745210904,5,19,12% -5/18/2018 4:00,98.56530641,303.3424244,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720289125,5.294324066,-3.963917824,3.963917824,0.791976439,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061964647,86.44741136,-0.061964647,93.55258864,0,0,0,0,0,5,20,0% -5/18/2018 5:00,107.7882615,314.3278594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881260058,5.486056077,-1.350275485,1.350275485,0.761064397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.145989764,98.3945984,0.145989764,81.6054016,0,0.707510234,0,0,0,5,21,0% -5/18/2018 6:00,115.2837467,327.1988989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012080954,5.710698095,-0.469073466,0.469073466,0.610369977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.332823043,109.4402126,0.332823043,70.55978743,0,0.899770017,0,0,0,5,22,0% -5/18/2018 7:00,120.3614389,342.1036137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100703401,5.970834442,0.062661704,-0.062661704,0.519437907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.485803258,119.0651131,0.485803258,60.93488688,0,0.947077677,0,0,0,5,23,0% -5/19/2018 8:00,122.3585834,358.4781293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135560149,6.256623652,0.500220566,-0.500220566,0.444610935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594506592,126.4774661,0.594506592,53.52253386,0,0.965896643,0,0,0,5,0,0% -5/19/2018 9:00,120.9548558,14.98813576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11106048,0.261592318,0.956014604,-0.956014604,0.366665564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651527019,130.6568318,0.651527019,49.34316824,0,0.973257212,0,0,0,5,1,0% -5/19/2018 10:00,116.3793354,30.21656193,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031202583,0.527378494,1.549472739,-1.549472739,0.265178245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65298039,130.7666893,0.65298039,49.23331074,0,0.973428022,0,0,0,5,2,0% -5/19/2018 11:00,109.2588721,43.44715084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.906927055,0.758295833,2.560245042,-2.560245042,0.092326001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59876863,126.7817581,0.59876863,53.21824193,0,0.966495291,0,0,0,5,3,0% -5/19/2018 12:00,100.296074,54.72876567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750496718,0.955197157,5.310413355,-5.310413355,0,#DIV/0!,0,0,0.274300315,1,0.186129609,0,0.940739,0.979500963,0.724496596,1,0,0,0.041528939,0.312029739,0.888989987,0.613486583,0.961238037,0.922476074,0,0,0,0,0,0,-0.492586123,119.5107021,0.492586123,60.48929789,0,0.948494907,0,0,0,5,4,0% -5/19/2018 13:00,89.58232988,64.50351322,0.130773049,1.2133622,0.121928058,0.1192373,0,0.1192373,0.118251477,0.000985822,0.440147673,0.404763652,0.035384021,0.003676581,0.03170744,1.563506608,1.125798685,-136.5463419,136.5463419,0,0.932363809,0.000919145,0.029562869,1,0.956295527,0,0.00732339,0.961238037,1,0.703939196,0.9794426,0.113667818,0.002632358,0.115824807,0.288671877,0.724496596,0.448993192,0.964878998,0.926117035,0.000665918,0.02847451,0.114333736,0.031106868,0,0.017689982,-0.33358848,109.486727,0.33358848,70.51327302,0,0.900114728,0.114333736,0.047029881,0.145113852,5,5,27% -5/19/2018 14:00,78.94238713,73.32525507,117.4448595,384.7617263,43.64911538,43.21828246,0,43.21828246,42.33293351,0.88534896,89.38243524,59.59038745,29.79204779,1.316181877,28.47586591,1.377804575,1.279767126,-5.108462313,5.108462313,0.596247804,0.371656244,0.660740204,21.25167624,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.6920259,0.953569289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478704028,20.42791955,41.17072993,21.38148884,0,59.59038745,-0.154876079,98.9096093,0.154876079,81.0903907,0,0.727161248,41.17072993,64.71330934,83.52429662,5,6,103% -5/19/2018 15:00,67.42422374,81.7836365,324.8544944,652.1574871,74.48799396,108.3396031,33.64880661,74.69079651,72.24190611,2.448890398,81.01082104,0,81.01082104,2.246087849,78.7647332,1.1767747,1.427393731,-2.354523375,2.354523375,0.932800901,0.229296486,2.322060939,74.68546183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.44166801,1.627283001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.682325246,71.79050671,71.12399325,73.41778971,33.64880661,0,0.051596136,87.04244591,-0.051596136,92.95755409,0,0,71.12399325,73.41778971,119.1744683,5,7,68% -5/19/2018 16:00,55.62953715,90.58361172,531.5021363,776.1702244,93.32178284,301.140957,206.6264826,94.51447437,90.50778676,4.006687611,131.6828425,0,131.6828425,2.813996073,128.8688465,0.970918585,1.580982273,-1.368740527,1.368740527,0.764222105,0.1755812,3.227868758,103.819355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.99952727,2.038730576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.338579927,99.79511298,89.3381072,101.8338436,206.6264826,0,0.266212844,74.56096738,-0.266212844,105.4390326,0.862180362,0,267.4874027,101.8338436,334.1356166,5,8,25% -5/19/2018 17:00,43.85917217,100.8075109,713.3360885,841.5281772,106.5563762,507.6209222,398.9001851,108.7207371,103.3433083,5.377428749,176.1696613,0,176.1696613,3.213067894,172.9565934,0.765486962,1.759422977,-0.825352976,0.825352976,0.671297361,0.149377521,3.873889703,124.5976093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.33751881,2.327856752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806619903,119.7679613,102.1441387,122.0958181,398.9001851,0,0.47401881,61.70451594,-0.47401881,118.2954841,0.944518954,0,478.9129243,122.0958181,558.8221953,5,9,17% -5/19/2018 18:00,32.57605697,114.6196829,855.5092304,877.7917671,115.8138871,698.8003886,580.0295276,118.770861,112.3216711,6.449189947,210.9203337,0,210.9203337,3.492216003,207.4281177,0.568559451,2.000490854,-0.454786381,0.454786381,0.607926741,0.135374211,4.262936155,137.1106805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9678626,2.530098607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.088482733,131.7960013,111.0563453,134.3261,580.0295276,0,0.660782602,48.64041421,-0.660782602,131.3595858,0.974332148,0,676.197761,134.3261,764.1115069,5,10,13% -5/19/2018 19:00,22.90795762,137.0916232,947.4592686,896.7072054,121.4741477,854.6558703,729.7022682,124.9536021,117.8112539,7.142348175,233.3853627,0,233.3853627,3.662893744,229.722469,0.399819285,2.392700203,-0.164492994,0.164492994,0.558283648,0.128210417,4.391946212,141.2600874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.2446584,2.653754049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18195008,135.7845691,116.4266085,138.4383231,729.7022682,0,0.813757561,35.53530308,-0.813757561,144.4646969,0.988556638,0,837.7786299,138.4383231,928.3837436,5,11,11% -5/19/2018 20:00,17.99943923,175.8206916,982.574566,903.1938933,123.5833967,960.4755021,833.2115387,127.2639634,119.8569013,7.40706212,241.9630748,0,241.9630748,3.726495384,238.2365794,0.314149478,3.068649962,0.088579167,-0.088579167,0.51500576,0.125775082,4.266511855,137.2256873,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2110125,2.69983322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.091073315,131.9065503,118.3020858,134.6063835,833.2115387,0,0.922516798,22.70316091,-0.922516798,157.2968391,0.995800445,0,948.0145068,134.6063835,1036.111693,5,12,9% -5/19/2018 21:00,21.49799412,217.1832934,958.3679617,898.7622869,122.1322091,1006.151122,880.4770675,125.6740549,118.4494724,7.224582512,236.0501446,0,236.0501446,3.682736725,232.3674079,0.37521078,3.790563551,0.33101177,-0.33101177,0.473547343,0.1274377,3.905878487,125.6264785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8581383,2.668130221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.829795668,120.7569496,116.687934,123.4250798,880.4770675,0,0.979655111,11.57722212,-0.979655111,168.4227779,0.99896163,0,996.2507405,123.4250798,1077.029987,5,13,8% -5/19/2018 22:00,30.60879891,242.1897162,876.5753494,882.3949133,117.1299519,986.0927647,865.8867178,120.206047,113.5980517,6.607995251,216.0677423,0,216.0677423,3.531900214,212.5358421,0.534224321,4.227007962,0.586117601,-0.586117601,0.429921677,0.133622229,3.344285335,107.5637123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1947682,2.558849682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.422923341,103.3943316,111.6176916,105.9531813,865.8867178,0,0.981291602,11.10031614,-0.981291602,168.8996839,0.999046746,0,976.6789996,105.9531813,1046.023238,5,14,7% -5/19/2018 23:00,41.70884142,257.0905613,743.0839075,849.9647323,108.5550437,899.0855855,788.2021965,110.883389,105.2817086,5.601680375,183.4426316,0,183.4426316,3.273335094,180.1692965,0.72795661,4.48707677,0.884428364,-0.884428364,0.378907532,0.146087195,2.630779827,84.61492248,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2007829,2.371520133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.905991029,81.33508198,103.106774,83.70660211,788.2021965,0,0.927335178,21.97684358,-0.927335178,158.0231564,0.996082063,0,888.2208437,83.70660211,943.0051406,5,15,6% -5/19/2018 0:00,53.4261827,267.7662929,567.7492369,791.4944333,96.13098976,747.7223744,650.2101551,97.5122193,93.23228574,4.279933566,140.5560797,0,140.5560797,2.898704027,137.6573757,0.932462795,4.673403437,1.283510194,-1.283510194,0.310660519,0.169319452,1.829154166,58.83188567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.61841931,2.1001012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325215967,56.55144628,90.94363528,58.65154748,650.2101551,0,0.821496814,34.76508753,-0.821496814,145.2349125,0.989135491,0,734.0895765,58.65154748,772.4758413,5,16,5% -5/19/2018 1:00,65.23012335,276.735063,364.524663,682.4166258,78.60932174,536.9305728,457.9436713,78.98690154,76.23896065,2.747940886,90.75358596,0,90.75358596,2.370361088,88.38322487,1.138480424,4.829938005,1.935509212,-1.935509212,0.19916212,0.215648843,1.021854471,32.86635238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.28378887,1.717318539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.740330085,31.59238804,74.02411895,33.30970658,457.9436713,0,0.671061715,47.85093855,-0.671061715,132.1490615,0.975491205,0,520.7441425,33.30970658,542.5446793,5,17,4% -5/19/2018 2:00,76.80858605,285.2042835,154.5880087,453.6676436,51.05879682,271.4090801,220.7245447,50.68453541,49.51918571,1.165349708,39.02126358,0,39.02126358,1.539611111,37.48165247,1.34056272,4.977753788,3.486081045,-3.486081045,0,0.330289505,0.384902778,12.37979643,0.061914822,1,0.279354022,0,0.927538059,0.966300022,0.724496596,1,47.73154715,1.115443009,0.010288391,0.312029739,0.971238665,0.69573526,0.961238037,0.922476074,0.274356007,11.89993121,48.00590316,13.01537422,207.0584238,0,0.486533584,60.88700237,-0.486533584,119.1129976,0.947232171,0,244.1383035,13.01537422,252.6566056,5,18,3% -5/19/2018 3:00,87.74281712,293.9207654,4.43723351,24.3097136,3.479793404,10.29223598,6.883921441,3.408314534,3.374864794,0.03344974,1.180787247,0,1.180787247,0.10492861,1.075858637,1.531401054,5.129885096,18.27445353,-18.27445353,0,0.784225891,0.026232153,0.843716198,0.721832937,1,0.054666677,0,0.956058981,0.994820944,0.724496596,1,3.262958604,0.076020421,0.091918609,0.312029739,0.772608153,0.497104749,0.961238037,0.922476074,0.018256848,0.811012102,3.281215453,0.887032523,1.914880213,0,0.283175752,73.55016466,-0.283175752,106.4498353,0.87343121,0,4.953731593,0.887032523,5.534276639,5,19,12% -5/19/2018 4:00,98.40543185,303.483786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717498788,5.296791291,-4.027030567,4.027030567,0.781183525,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.063971791,86.33218179,-0.063971791,93.66781821,0,0,0,0,0,5,20,0% -5/19/2018 5:00,107.6113951,314.4508468,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878173158,5.488202612,-1.358645795,1.358645795,0.762495804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.143718281,98.26306474,0.143718281,81.73693526,0,0.702097148,0,0,0,5,21,0% -5/19/2018 6:00,115.0896181,327.2928313,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00869277,5.712337524,-0.469803536,0.469803536,0.610494826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.330327908,109.2886794,0.330327908,70.7113206,0,0.898635254,0,0,0,5,22,0% -5/19/2018 7:00,120.1540237,342.1526248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097083322,5.971689847,0.064656492,-0.064656492,0.519096778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.483140631,118.8907233,0.483140631,61.10927673,0,0.946510463,0,0,0,5,23,0% -5/20/2018 8:00,122.1472707,358.4687866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.131872045,6.256460592,0.504078992,-0.504078992,0.443951105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591744229,126.280882,0.591744229,53.71911805,0,0.965504034,0,0,0,5,0,0% -5/20/2018 9:00,120.7517728,14.92046131,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107516012,0.260411176,0.962115247,-0.962115247,0.365622292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648739608,130.446641,0.648739608,49.553359,0,0.972927474,0,0,0,5,1,0% -5/20/2018 10:00,116.1937874,30.10451223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02796416,0.525422858,1.559614981,-1.559614981,0.26344382,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650244405,130.5600315,0.650244405,49.4399685,0,0.973105836,0,0,0,5,2,0% -5/20/2018 11:00,109.0944469,43.30753958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904057295,0.755859157,2.580882306,-2.580882306,0.088796821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596157074,126.5951613,0.596157074,53.4048387,0,0.966129486,0,0,0,5,3,0% -5/20/2018 12:00,100.1518653,54.57289289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.747979802,0.952476663,5.383464039,-5.383464039,0,#DIV/0!,0,0,0.280820206,1,0.18366072,0,0.9410629,0.979824863,0.724496596,1,0,0,0.042399953,0.312029739,0.886806962,0.611303558,0.961238037,0.922476074,0,0,0,0,0,0,-0.490163513,119.3513293,0.490163513,60.64867065,0,0.947993223,0,0,0,5,4,0% -5/20/2018 13:00,89.47366439,64.33597401,0.194224646,1.586368132,0.179652014,0.175698991,0,0.175698991,0.174234843,0.001464147,0.578713494,0.526204309,0.052509185,0.005417171,0.047092014,1.561610037,1.122874574,-108.3233615,108.3233615,0,0.924970224,0.001354293,0.043558711,1,0.944612268,0,0.009231357,0.961238037,1,0.698652113,0.974155517,0.167481159,0.003867381,0.115824807,0.28266663,0.724496596,0.448993192,0.965796899,0.927034935,0.000981181,0.04197535,0.168462339,0.045842731,0,0.029145263,-0.331703782,109.3722208,0.331703782,70.6277792,0,0.8992631,0.168462339,0.072051991,0.215618926,5,5,28% -5/20/2018 14:00,78.82913998,73.14549871,119.3785212,388.7169241,44.07028323,43.6413273,0,43.6413273,42.74140158,0.899925718,89.74062744,59.46704122,30.27358621,1.328881641,28.94470457,1.375828039,1.276629786,-5.056255338,5.056255338,0.605175723,0.369164258,0.67578188,21.73546826,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.08466095,0.962770225,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.489601672,20.89295884,41.57426262,21.85572906,0,59.46704122,-0.152982897,98.79982959,0.152982897,81.20017041,0,0.72316608,41.57426262,64.86027614,84.02401615,5,6,102% -5/20/2018 15:00,67.31896627,81.58713568,326.7655164,653.710835,74.69420067,109.6871817,34.7819903,74.90519142,72.44189493,2.463296489,81.48038836,0,81.48038836,2.252305742,79.22808262,1.17493761,1.423964145,-2.344037084,2.344037084,0.931007639,0.228586546,2.332195822,75.0114345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.63390487,1.631787843,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.689667934,72.10384404,71.3235728,73.73563188,34.7819903,0,0.053206997,86.95002341,-0.053206997,93.04997659,0,0,71.3235728,73.73563188,119.5820692,5,7,68% -5/20/2018 16:00,55.52730505,90.36189275,533.2037928,776.9210816,93.45603075,302.5128362,207.8553342,94.65750203,90.63798661,4.019515416,132.0994769,0,132.0994769,2.818044143,129.2814328,0.969134298,1.577112547,-1.365484392,1.365484392,0.763665273,0.175272629,3.236064762,104.0829667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.12468031,2.041663389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.344517904,100.0485065,89.46919822,102.0901699,207.8553342,0,0.267537256,74.48222837,-0.267537256,105.5177716,0.863110141,0,268.871245,102.0901699,335.6872195,5,8,25% -5/20/2018 17:00,43.75236219,100.547459,714.8413278,841.9674201,106.6584111,508.8320041,400.0009618,108.8310424,103.4422665,5.388775879,176.5377007,0,176.5377007,3.216144622,173.3215561,0.763622776,1.754884213,-0.824495797,0.824495797,0.671150775,0.149205715,3.881087774,124.829124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.43264116,2.330085831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81183488,119.9905021,102.244476,122.3205879,400.0009618,0,0.475078907,61.63551221,-0.475078907,118.3644878,0.944754326,0,480.1471149,122.3205879,560.2034932,5,9,17% -5/20/2018 18:00,32.45191632,114.3066639,856.8729496,878.0949954,115.8994592,699.8288634,580.9647302,118.8641332,112.4046629,6.459470238,211.2535635,0,211.2535635,3.494796319,207.7587671,0.566392788,1.995027641,-0.455050961,0.455050961,0.607971987,0.135258628,4.26969147,137.3279546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0476375,2.531968037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093376935,132.0048535,111.1410144,134.5368216,580.9647302,0,0.661619453,48.57650129,-0.661619453,131.4234987,0.974427857,0,677.2492314,134.5368216,765.3008904,5,10,13% -5/20/2018 19:00,22.74504596,136.7547119,948.753157,896.9528949,121.5523377,855.5424177,730.5032294,125.0391883,117.8870862,7.152102052,233.7014387,0,233.7014387,3.665251462,230.0361872,0.396975941,2.386819991,-0.165458027,0.165458027,0.558448679,0.12811798,4.398681098,141.4767045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3175513,2.655462207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.186829482,135.9927897,116.5043808,138.6482519,730.5032294,0,0.81442764,35.46919252,-0.81442764,144.5308075,0.988607192,0,838.685127,138.6482519,929.4276348,5,11,11% -5/20/2018 20:00,17.79249781,175.7344874,983.8771553,903.4274784,123.6611448,961.2921898,833.9430032,127.3491866,119.932305,7.416881588,242.281247,0,242.281247,3.728839775,238.5524072,0.310537669,3.067145414,0.087027161,-0.087027161,0.515271169,0.125687586,4.27357428,137.4528392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2834934,2.701531724,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.096190018,132.1248973,118.3796834,134.826429,833.9430032,0,0.923087933,22.61822482,-0.923087933,157.3817752,0.995833979,0,948.8484629,134.826429,1037.089664,5,12,9% -5/20/2018 21:00,21.31205849,217.4411677,959.7574667,899.0214208,122.2158442,1006.988009,881.2223667,125.7656428,118.5305856,7.235057187,236.3895681,0,236.3895681,3.685258632,232.7043095,0.371965591,3.795064305,0.328813674,-0.328813674,0.47392324,0.127340342,3.913543972,125.8730269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9361074,2.669957334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.835349286,120.9939412,116.7714567,123.6638986,881.2223667,0,0.980201746,11.42010797,-0.980201746,168.579892,0.998990093,0,997.1038707,123.6638986,1078.039419,5,13,8% -5/20/2018 22:00,30.45980805,242.4758499,878.1230573,882.7264002,117.2261612,987.0509324,866.7399099,120.3110224,113.6913599,6.619662527,216.4459031,0,216.4459031,3.534801279,212.9111018,0.53162394,4.232001938,0.58303684,-0.58303684,0.430448518,0.13349628,3.35273675,107.8355388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2844596,2.560951493,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.429046362,103.6556217,111.713506,106.2165731,866.7399099,0,0.981889643,10.92090826,-0.981889643,169.0790917,0.99907778,0,977.6540914,106.2165731,1047.170714,5,14,7% -5/20/2018 23:00,41.57860128,257.3344679,744.847547,850.4492399,108.6723947,900.275622,789.2651255,111.0104965,105.395521,5.614975434,183.873785,0,183.873785,3.276873659,180.5969113,0.725683491,4.491333744,0.879914877,-0.879914877,0.379679383,0.145898842,2.640068483,84.91367758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3101837,2.374083811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912720629,81.62225674,103.2229044,83.99634055,789.2651255,0,0.928056712,21.8661098,-0.928056712,158.1338902,0.996123982,0,889.4288241,83.99634055,944.4027491,5,15,6% -5/20/2018 0:00,53.30202116,267.9737361,569.7643622,792.3069626,96.2842066,749.2732214,651.5972144,97.67600695,93.38088252,4.295124431,141.0492902,0,141.0492902,2.90332408,138.1459661,0.930295767,4.677024004,1.276224061,-1.276224061,0.311906522,0.168989521,1.839116912,59.15232182,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.76125619,2.103448413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.332433942,56.85946171,91.09369014,58.96291012,651.5972144,0,0.822405009,34.67372591,-0.822405009,145.3262741,0.989202705,0,735.6554172,58.96291012,774.2454626,5,16,5% -5/20/2018 1:00,65.10450944,276.9168701,366.7838476,684.0225737,78.83467922,539.026497,459.8040027,79.22249435,76.45752277,2.764971573,91.30814678,0,91.30814678,2.377156448,88.93099033,1.136288048,4.833111137,1.921322194,-1.921322194,0.201588243,0.214934981,1.031873176,33.18858839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49387909,1.722241754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747588604,31.90213355,74.2414677,33.62437531,459.8040027,0,0.67220589,47.76245444,-0.67220589,132.2375456,0.975618027,0,522.8345418,33.62437531,544.841023,5,17,4% -5/20/2018 2:00,76.67673198,285.3680056,156.9239721,457.5550727,51.48272555,274.373448,223.2601574,51.11329061,49.93033143,1.182959187,39.60042796,0,39.60042796,1.552394126,38.04803384,1.338261433,4.980611278,3.443354461,-3.443354461,0,0.328074321,0.388098532,12.48258286,0.055440543,1,0.282639707,0,0.927039034,0.965800997,0.724496596,1,48.11546437,1.12470426,0.009239935,0.312029739,0.974131812,0.698628407,0.961238037,0.922476074,0.277064499,11.99873344,48.39252887,13.1234377,210.8824931,0,0.487941607,60.79462108,-0.487941607,119.2053789,0.947528722,0,248.2097481,13.1234377,256.7987756,5,18,3% -5/20/2018 3:00,87.60872437,294.0703819,5.090670196,27.68519572,3.935546438,11.73805543,7.882804618,3.855250814,3.816875192,0.038375622,1.352963172,0,1.352963172,0.118671246,1.234291927,1.529060694,5.132496397,17.20517153,-17.20517153,0,0.773090042,0.029667811,0.954218798,0.706925691,1,0.058056743,0,0.955714318,0.994476281,0.724496596,1,3.691202489,0.085976914,0.090501446,0.312029739,0.775604366,0.500100962,0.961238037,0.922476074,0.020615017,0.917231404,3.711817506,1.003208318,2.310247516,0,0.284729958,73.45729244,-0.284729958,106.5427076,0.874395015,0,5.731886417,1.003208318,6.388466197,5,19,11% -5/20/2018 4:00,98.24816682,303.6195552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714753995,5.299160911,-4.091765818,4.091765818,0.770113145,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.065959577,86.2180489,-0.065959577,93.7819511,0,0,0,0,0,5,20,0% -5/20/2018 5:00,107.4378136,314.5683342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875143589,5.490253154,-1.367163943,1.367163943,0.763952493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141472948,98.13308839,0.141472948,81.86691161,0,0.696575543,0,0,0,5,21,0% -5/20/2018 6:00,114.899604,327.3816504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005376399,5.71388771,-0.470631205,0.470631205,0.610636366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.327867187,109.1393734,0.327867187,70.86062655,0,0.897499225,0,0,0,5,22,0% -5/20/2018 7:00,119.951588,342.1975078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093550153,5.972473203,0.066544138,-0.066544138,0.518773972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480521584,118.719473,0.480521584,61.28052696,0,0.945946401,0,0,0,5,23,0% -5/21/2018 8:00,121.9416173,358.4569823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.128282717,6.256254567,0.507804686,-0.507804686,0.443313974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589034888,126.0885508,0.589034888,53.91144924,0,0.965115384,0,0,0,5,0,0% -5/21/2018 9:00,120.5546605,14.85223945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104075755,0.25922048,0.968036991,-0.968036991,0.364609614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.64601428,130.2417653,0.64601428,49.75823466,0,0.97260233,0,0,0,5,1,0% -5/21/2018 10:00,116.0141743,29.99348076,0,0,0,0,0,0,0,0,0,0,0,0,0,2.024829321,0.523484993,1.569488328,-1.569488328,0.261755378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647578563,130.3592837,0.647578563,49.64071631,0,0.972789291,0,0,0,5,2,0% -5/21/2018 11:00,108.9357372,43.16996311,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901287288,0.753457994,2.601044004,-2.601044004,0.085348968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593622164,126.4144715,0.593622164,53.58552847,0,0.965771339,0,0,0,5,3,0% -5/21/2018 12:00,100.0131148,54.41966239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745558149,0.949802286,5.455586816,-5.455586816,0,#DIV/0!,0,0,0.287143361,1,0.181285918,0,0.94137318,0.980135143,0.724496596,1,0,0,0.043240133,0.312029739,0.884706902,0.609203498,0.961238037,0.922476074,0,0,0,0,0,0,-0.487822048,119.1975313,0.487822048,60.80246867,0,0.947503608,0,0,0,5,4,0% -5/21/2018 13:00,89.36871612,64.17147117,0.270611574,2.025716025,0.248292722,0.242845765,0,0.242845765,0.24080578,0.002039984,0.741339065,0.668239214,0.073099851,0.007486942,0.065612909,1.559778345,1.120003458,-90.28785819,90.28785819,0,0.917524402,0.001871735,0.060201445,1,0.933201013,0,0.011075234,0.961238037,1,0.693569664,0.969073068,0.231471676,0.0053305,0.115824807,0.276894821,0.724496596,0.448993192,0.966672049,0.927910086,0.001356066,0.058039177,0.232827742,0.063369678,0,0.044637703,-0.329878031,109.2613727,0.329878031,70.73862735,0,0.898428827,0.232827742,0.103473477,0.300549063,5,5,29% -5/21/2018 14:00,78.7209481,72.96909715,121.2304733,392.4631349,44.46954859,44.04251414,0,44.04251414,43.12862762,0.913886516,90.06407494,59.32942216,30.73465278,1.340920965,29.39373182,1.373939735,1.273550997,-5.007320252,5.007320252,0.613544115,0.366818238,0.690261393,22.20117917,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.45687735,0.971492675,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.50009203,21.34061788,41.95696938,22.31211055,0,59.32942216,-0.151171962,98.69484958,0.151171962,81.30515042,0,0.719250837,41.95696938,64.98484708,84.48825209,5,6,101% -5/21/2018 15:00,67.21876503,81.39430968,328.584094,655.1794751,74.88966135,110.9715041,35.86303668,75.10846744,72.63146175,2.477005695,81.9272174,0,81.9272174,2.258199603,79.66901779,1.173188769,1.420598696,-2.334159305,2.334159305,0.92931844,0.227916271,2.341830335,75.32131357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.8161237,1.636057925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.696648106,72.40171159,71.51277181,74.03776951,35.86303668,0,0.054737729,86.86219088,-0.054737729,93.13780912,0,0,71.51277181,74.03776951,119.9690112,5,7,68% -5/21/2018 16:00,55.43023235,90.14418907,534.8178282,777.630293,93.58314099,303.8094078,209.0164611,94.79294671,90.76126401,4.031682697,132.4946513,0,132.4946513,2.821876986,129.6727744,0.96744006,1.573312901,-1.362447488,1.362447488,0.763145932,0.174981341,3.243855511,104.3335439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.24317924,2.04444027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.350162275,100.2893709,89.59334151,102.3338112,209.0164611,0,0.268786418,74.40793558,-0.268786418,105.5920644,0.863978696,0,270.179111,102.3338112,337.1545438,5,8,25% -5/21/2018 17:00,43.65099504,100.2916671,716.2672261,842.3822625,106.7549765,509.9688849,401.03344,108.935445,103.5359201,5.399524903,176.8863381,0,176.8863381,3.219056425,173.6672816,0.761853585,1.750419804,-0.823737024,0.823737024,0.671021017,0.149043503,3.887945169,125.0496814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.52266453,2.332195422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81680304,120.2025102,102.3394676,122.5347056,401.03344,0,0.476070613,61.57091956,-0.476070613,118.4290804,0.944973563,0,481.3054664,122.5347056,561.5019806,5,9,17% -5/21/2018 18:00,32.33374221,113.997396,858.166852,878.3820177,115.9806014,700.7895145,581.8369319,118.9525826,112.4833584,6.469224222,211.5697318,0,211.5697318,3.497243056,208.0724888,0.564330261,1.989629899,-0.455360878,0.455360878,0.608024986,0.135149244,4.276157941,137.5359386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1232826,2.533740689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.098061871,132.2047756,111.2213445,134.7385163,581.8369319,0,0.662396224,48.51712047,-0.662396224,131.4828795,0.974516478,0,678.2310221,134.7385163,766.4146862,5,10,13% -5/21/2018 19:00,22.58867074,136.4176925,949.9869302,897.1866812,121.6268604,856.3699145,731.24915,125.1207645,117.9593618,7.161402756,234.0028284,0,234.0028284,3.667498595,230.3353298,0.394246678,2.380937892,-0.166438617,0.166438617,0.558616369,0.128030035,4.405170269,141.6854185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3870253,2.657090248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.191530864,136.1934136,116.5785562,138.8505038,731.24915,0,0.815046818,35.40800856,-0.815046818,144.5919914,0.988653831,0,839.5308296,138.8505038,930.4057074,5,11,11% -5/21/2018 20:00,17.5914517,175.641015,985.1286988,903.6514495,123.735814,962.0593971,834.6283582,127.4310389,120.0047226,7.426316252,242.5869498,0,242.5869498,3.731091328,238.8558585,0.307028752,3.065514014,0.085480815,-0.085480815,0.515535609,0.125603704,4.280425696,137.6732042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.353104,2.703162966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.101153845,132.3367206,118.4542579,135.0398835,834.6283582,0,0.923617573,22.53918858,-0.923617573,157.4608114,0.99586504,0,949.6314615,135.0398835,1038.012364,5,12,9% -5/21/2018 21:00,21.13043201,217.6904652,961.1036848,899.2719206,122.2968343,1007.784583,881.9302445,125.854339,118.6091335,7.245205548,236.7184164,0,236.7184164,3.687700781,233.0307157,0.368795611,3.799415368,0.326640928,-0.326640928,0.474294801,0.127246244,3.921024192,126.1136164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0116106,2.671726662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840768679,121.2252051,116.8523793,123.8969318,881.9302445,0,0.980715871,11.27036667,-0.980715871,168.7296333,0.999016834,0,997.91554,123.8969318,1079.003604,5,13,8% -5/21/2018 22:00,30.3137825,242.7534043,879.6333824,883.0490147,117.3199846,987.9764836,867.5630814,120.4134022,113.7823542,6.631047995,216.814928,0,216.814928,3.537630401,213.2772976,0.529075313,4.236846176,0.580005427,-0.580005427,0.43096692,0.133373729,3.361019511,108.1019409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3719268,2.563001183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.435047195,103.9116975,111.806974,106.4746986,867.5630814,0,0.98246311,10.74609436,-0.98246311,169.2539056,0.999107504,0,978.5957587,106.4746986,1048.281319,5,14,7% -5/21/2018 23:00,41.45053191,257.5707875,746.5774831,850.9228415,108.7873831,901.4381704,790.3031118,111.1350586,105.5070421,5.628016424,184.2966953,0,184.2966953,3.280340984,181.0163544,0.723448258,4.495458299,0.875488374,-0.875488374,0.38043636,0.145714793,2.649197082,85.20728473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4173821,2.376595876,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919334268,81.9044831,103.3367163,84.28107897,790.3031118,0,0.928760016,21.75765815,-0.928760016,158.2423419,0.99616478,0,890.6088416,84.28107897,945.7691222,5,15,6% -5/21/2018 0:00,53.17967065,268.1744721,571.7471481,793.1025992,96.43467609,750.7976929,652.9608066,97.83688631,93.5268148,4.31007151,141.5345768,0,141.5345768,2.90786129,138.6267155,0.928160348,4.680527507,1.269100709,-1.269100709,0.313124686,0.16866665,1.848924324,59.46776189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90153185,2.106735606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.339539379,57.1626747,91.24107123,59.2694103,652.9608066,0,0.82329929,34.58355773,-0.82329929,145.4164423,0.989268744,0,737.1947882,59.2694103,775.9854318,5,16,5% -5/21/2018 1:00,64.98063144,277.0925461,369.010381,685.5938442,79.0558714,541.0903013,461.6365,79.45380131,76.67204519,2.781756123,91.85466534,0,91.85466534,2.383826208,89.47083913,1.134125969,4.836177262,1.907510812,-1.907510812,0.203950129,0.214237527,1.041750656,33.50628209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7000862,1.727073973,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754744804,32.20751282,74.454831,33.93458679,461.6365,0,0.673338164,47.67476835,-0.673338164,132.3252316,0.975743107,0,524.8934638,33.93458679,547.1029722,5,17,4% -5/21/2018 2:00,76.54673511,285.5259198,159.2307447,461.3480735,51.89712717,277.2874983,225.7549124,51.53258592,50.33223731,1.200348613,40.17222743,0,40.17222743,1.564889864,38.60733757,1.335992559,4.983367401,3.402163497,-3.402163497,0,0.325924037,0.391222466,12.58305933,0.049113781,1,0.28587929,0,0.926544812,0.965306775,0.724496596,1,48.49022987,1.13375738,0.008209325,0.312029739,0.976984088,0.701480684,0.961238037,0.922476074,0.27972864,12.09531525,48.76995851,13.22907263,214.6672351,0,0.489337499,60.7029534,-0.489337499,119.2970466,0.947821033,0,252.2360791,13.22907263,260.8942425,5,18,3% -5/21/2018 3:00,87.47621011,294.2143367,5.786561469,31.24908984,4.410532785,13.26711968,8.945959188,4.321160493,4.277538948,0.043621545,1.536012659,0,1.536012659,0.132993837,1.403018823,1.526747884,5.135008882,16.26101793,-16.26101793,0,0.762202702,0.033248459,1.069384737,0.692368665,1,0.061419417,0,0.955369752,0.994131715,0.724496596,1,4.137638386,0.096353582,0.089102765,0.312029739,0.77857729,0.503073886,0.961238037,0.922476074,0.023068573,1.027933285,4.160706958,1.124286867,2.752057367,0,0.286279032,73.36468235,-0.286279032,106.6353176,0.875345225,0,6.569707233,1.124286867,7.305530502,5,19,11% -5/21/2018 4:00,98.09360065,303.7497225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712056306,5.30143276,-4.158114808,4.158114808,0.758766799,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.067926761,86.10508413,-0.067926761,93.89491587,0,0,0,0,0,5,20,0% -5/21/2018 5:00,107.2676119,314.6803359,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872173009,5.492207953,-1.375822991,1.375822991,0.765433278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.139255283,98.00475496,0.139255283,81.99524504,0,0.690947194,0,0,0,5,21,0% -5/21/2018 6:00,114.7137986,327.4653963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002133483,5.715349352,-0.471556162,0.471556162,0.610794543,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325442595,108.9923916,0.325442595,71.00760836,0,0.896363074,0,0,0,5,22,0% -5/21/2018 7:00,119.7542177,342.2383219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.090105393,5.973185543,0.068322416,-0.068322416,0.518469868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477947946,118.5514647,0.477947946,61.44853533,0,0.945386097,0,0,0,5,23,0% -5/22/2018 8:00,121.7416967,358.4427785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.124793444,6.256006665,0.511393477,-0.511393477,0.442700254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586380409,125.9005696,0.586380409,54.09943042,0,0.964731121,0,0,0,5,0,0% -5/22/2018 9:00,120.3635803,14.7835257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100740776,0.258021198,0.973772886,-0.973772886,0.363628719,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643352797,130.0422859,0.643352797,49.95771408,0,0.972282144,0,0,0,5,1,0% -5/22/2018 10:00,115.840547,29.88352052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021798952,0.521565825,1.579079809,-1.579079809,0.260115138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644984456,130.1645101,0.644984456,49.83548993,0,0.972478752,0,0,0,5,2,0% -5/22/2018 11:00,108.782783,43.03447998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898617733,0.751093368,2.620697631,-2.620697631,0.081988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591165245,126.2397412,0.591165245,53.76025879,0,0.96542128,0,0,0,5,3,0% -5/22/2018 12:00,99.87985098,54.26914275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743232256,0.947175223,5.526613569,-5.526613569,0,#DIV/0!,0,0,0.293262691,1,0.179005836,0,0.941669903,0.980431866,0.724496596,1,0,0,0.044048993,0.312029739,0.882690395,0.607186991,0.961238037,0.922476074,0,0,0,0,0,0,-0.485562761,119.0493495,0.485562761,60.95065046,0,0.9470267,0,0,0,5,4,0% -5/22/2018 13:00,89.26759153,64.01008567,0.359920486,2.531486949,0.327561523,0.320397567,0,0.320397567,0.317684335,0.002713233,0.927758644,0.830614567,0.097144077,0.009877188,0.087266889,1.558013388,1.117186749,-77.79792192,77.79792192,0,0.910094135,0.002469297,0.079421084,1,0.922084288,0,0.012853106,0.961238037,1,0.688694332,0.964197736,0.305370266,0.007014388,0.115824807,0.271359229,0.724496596,0.448993192,0.967504845,0.928742882,0.001788997,0.076600418,0.307159264,0.083614806,0,0.064717925,-0.328113312,109.1543011,0.328113312,70.84569886,0,0.897613619,0.307159264,0.141706497,0.399903332,5,5,30% -5/22/2018 14:00,78.61781756,72.79614678,122.9998667,396.0047567,44.84734159,44.42225372,0,44.42225372,43.49502877,0.927224951,90.35543942,59.18038487,31.17505455,1.352312818,29.82274173,1.372139767,1.270532444,-4.961505301,4.961505301,0.621378933,0.364612928,0.704161581,22.64825699,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.80907607,0.979746033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.510162669,21.77036609,42.31923874,22.75011212,0,59.18038487,-0.149443621,98.59468498,0.149443621,81.40531502,0,0.715425666,42.31923874,65.0892784,84.91886966,5,6,101% -5/22/2018 15:00,67.12361246,81.20527674,330.3104453,656.5650879,75.07452128,112.1920924,36.89132531,75.30076713,72.81074747,2.490019661,82.35136548,0,82.35136548,2.263773812,80.08759167,1.171528043,1.417299449,-2.324876175,2.324876175,0.927730931,0.227284733,2.350968464,75.61522721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.98845996,1.640096421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703268649,72.68423256,71.69172861,74.32432898,36.89132531,0,0.056188375,86.77894686,-0.056188375,93.22105314,0,0,71.69172861,74.32432898,120.3355154,5,7,68% -5/22/2018 16:00,55.33830072,89.93065386,536.3448117,778.2985964,93.70319526,305.0309274,210.1100355,94.92089193,90.87769819,4.043193744,132.8685063,0,132.8685063,2.825497065,130.0430092,0.96583555,1.569586008,-1.359626338,1.359626338,0.762663487,0.174707004,3.251244645,104.5712038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.3551002,2.047063005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355515677,100.5178187,89.71061588,102.5648817,210.1100355,0,0.269960702,74.33807159,-0.269960702,105.6619284,0.864787858,0,271.4112233,102.5648817,338.5378871,5,8,25% -5/22/2018 17:00,43.55504517,100.0403512,717.6145506,842.7731343,106.8461394,511.0322264,401.9982107,109.0340157,103.6243341,5.409681604,177.2157614,0,177.2157614,3.221805324,173.993956,0.760178944,1.746033514,-0.823075116,0.823075116,0.670907824,0.148890709,3.894465445,125.2593959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.60765147,2.33418699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.821526958,120.4040958,102.4291784,122.7382828,401.9982107,0,0.476994572,61.51070394,-0.476994572,118.4892961,0.945177004,0,482.3886429,122.7382828,562.7183942,5,9,17% -5/22/2018 18:00,32.22151359,113.6922127,859.3917928,878.6531326,116.0573752,701.6832596,582.6469842,119.0362754,112.5578171,6.478458342,211.8690479,0,211.8690479,3.499558067,208.3694898,0.562371502,1.984303446,-0.455715091,0.455715091,0.60808556,0.135045943,4.282338804,137.7347364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1948551,2.535417907,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.102539886,132.3958676,111.297395,134.9312855,582.6469842,0,0.663113762,48.46221944,-0.663113762,131.5377806,0.974598157,0,679.1440718,134.9312855,767.4538995,5,10,13% -5/22/2018 19:00,22.43885254,136.0810237,951.1614256,897.4087935,121.6977713,857.1394117,731.9410206,125.1983911,118.0281345,7.170256599,234.2897366,0,234.2897366,3.669636821,230.6200998,0.391631857,2.375061912,-0.167433839,0.167433839,0.558786562,0.127946496,4.411416305,141.8863125,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4531323,2.658639385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196056096,136.3865205,116.6491884,139.0451599,731.9410206,0,0.815616056,35.35167829,-0.815616056,144.6483217,0.988696646,0,840.3168203,139.0451599,931.3190966,5,11,11% -5/22/2018 20:00,17.39637828,175.5402737,986.3299153,903.8659913,123.8074512,962.7781891,835.2686178,127.5095712,120.0741997,7.435371529,242.8803588,0,242.8803588,3.733251454,239.1471073,0.303624079,3.063755746,0.083941079,-0.083941079,0.51579892,0.125523366,4.287067699,137.8868339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.419888,2.70472797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.105965954,132.5420695,118.525854,135.2467975,835.2686178,0,0.924106699,22.46596393,-0.924106699,157.5340361,0.995893694,0,950.3646031,135.2467975,1038.880927,5,12,9% -5/22/2018 21:00,20.95314976,217.9308323,962.407125,899.5139356,122.3752137,1008.541807,882.6016263,125.940181,118.6851495,7.25503143,237.036814,0,237.036814,3.690064211,233.3467498,0.365701452,3.803610565,0.32449459,-0.32449459,0.474661846,0.127155349,3.928319495,126.3482585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0846801,2.673438959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846054102,121.4507519,116.9307342,124.1241909,882.6016263,0,0.981198391,11.12802133,-0.981198391,168.8719787,0.999041906,0,998.686745,124.1241909,1079.923545,5,13,8% -5/22/2018 22:00,30.17073819,243.02215,881.1065475,883.3628711,117.4114408,988.8701699,868.3569639,120.513206,113.8710527,6.642153336,217.1748717,0,217.1748717,3.540388143,213.6344835,0.526578719,4.241536673,0.577024584,-0.577024584,0.431476674,0.133254532,3.369132541,108.3628838,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4571871,2.564999157,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.440925057,104.1625257,111.8981122,106.7275249,868.3569639,0,0.983012748,10.57586508,-0.983012748,169.4241349,0.99913596,0,979.5047807,106.7275249,1049.355811,5,14,7% -5/22/2018 23:00,41.32465757,257.7993838,748.2735968,851.3856081,108.9000086,902.5736772,791.3166032,111.257074,105.6162716,5.640802445,184.7113338,0,184.7113338,3.283737059,181.4275968,0.721251337,4.499448056,0.871150264,-0.871150264,0.381178221,0.145535014,2.658163041,85.49566076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5223776,2.379056321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.925830074,82.18168111,103.4482076,84.56073743,791.3166032,0,0.929445595,21.65144231,-0.929445595,158.3485577,0.99620449,0,891.7613605,84.56073743,947.104672,5,15,6% -5/22/2018 0:00,53.05916903,268.3684101,573.6971006,793.8813601,96.58237697,752.2958625,654.3010295,97.99483302,93.67006195,4.324771075,142.0118191,0,142.0118191,2.912315017,139.0995041,0.926057198,4.683912365,1.262141513,-1.262141513,0.314314779,0.168350819,1.858572306,59.77807417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.03922646,2.109962316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346529309,57.46095866,91.38575577,59.57092098,654.3010295,0,0.824179862,34.49457024,-0.824179862,145.5054298,0.989333631,0,738.7077687,59.57092098,777.6957451,5,16,5% -5/22/2018 1:00,64.85854076,277.2620266,371.2033768,687.1304412,79.27286082,543.1216772,463.4408978,79.68077943,76.88249158,2.798287852,92.3929256,0,92.3929256,2.39036924,90.00255636,1.131995084,4.839135255,1.89407412,-1.89407412,0.206247939,0.213556411,1.051481229,33.81925076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.90237528,1.731814377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761794571,32.50835021,74.66416985,34.24016458,463.4408978,0,0.6744584,47.58789406,-0.6744584,132.4121059,0.975866443,0,526.9205905,34.24016458,549.3300934,5,17,4% -5/22/2018 2:00,76.41865992,285.6779804,161.5068934,465.0468979,52.30199741,280.1505723,228.2081659,51.94240639,50.72489921,1.217507183,40.73631436,0,40.73631436,1.577098196,39.15921617,1.333757226,4.986021359,3.362468784,-3.362468784,0,0.323837555,0.394274549,12.6812248,0.042936123,1,0.289070257,0,0.926055878,0.964817841,0.724496596,1,48.85586687,1.142602274,0.007197191,0.312029739,0.979793307,0.704289903,0.961238037,0.922476074,0.282347477,12.18967563,49.13821435,13.33227791,218.409792,0,0.490720757,60.61203412,-0.490720757,119.3879659,0.948109058,0,256.2145166,13.33227791,264.9402258,5,18,3% -5/22/2018 3:00,87.34539843,294.3526013,6.522250653,34.98269552,4.902028387,14.87214703,10.06876541,4.803381625,4.754214144,0.04916748,1.729209425,0,1.729209425,0.147814242,1.581395183,1.524464789,5.137422055,15.42231399,-15.42231399,0,0.751585403,0.036953561,1.188553536,0.678168633,1,0.064750469,0,0.955025791,0.993787755,0.724496596,1,4.59970507,0.107090915,0.087724062,0.312029739,0.781523088,0.506019684,0.961238037,0.922476074,0.02560355,1.142482868,4.62530862,1.249573783,3.240444533,0,0.287821314,73.27243383,-0.287821314,106.7275662,0.876281107,0,7.464848943,1.249573783,8.282669993,5,19,11% -5/22/2018 4:00,97.94181765,303.8742787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709407193,5.303606676,-4.226064407,4.226064407,0.747146733,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.069872176,85.99335452,-0.069872176,94.00664548,0,0,0,0,0,5,20,0% -5/22/2018 5:00,107.1008795,314.7868655,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869262979,5.494067245,-1.384615792,1.384615792,0.766936935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137066718,97.87814518,0.137066718,82.12185482,0,0.685214143,0,0,0,5,21,0% -5/22/2018 6:00,114.5322906,327.5441068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998965571,5.716723109,-0.472578121,0.472578121,0.610969308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.323055763,108.8478255,0.323055763,71.15217446,0,0.895227959,0,0,0,5,22,0% -5/22/2018 7:00,119.5619942,342.2751222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086750459,5.97382783,0.069989067,-0.069989067,0.518184854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475421458,118.3867946,0.475421458,61.61320535,0,0.944830157,0,0,0,5,23,0% -5/23/2018 8:00,121.5475782,358.4262328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121405438,6.255717888,0.514841176,-0.514841176,0.442110663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583782559,125.7170298,0.583782559,54.28297015,0,0.964351672,0,0,0,5,0,0% -5/23/2018 9:00,120.1785904,14.71437074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097512093,0.256814217,0.979315968,-0.979315968,0.362680796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640756852,129.8482793,0.640756852,50.15172074,0,0.97196728,0,0,0,5,1,0% -5/23/2018 10:00,115.6729538,29.77468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0188739,0.5196662,1.588376434,-1.588376434,0.258525322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642463618,129.9757716,0.642463618,50.02422842,0,0.972174581,0,0,0,5,2,0% -5/23/2018 11:00,108.6356229,42.90114441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896049305,0.748766223,2.639810449,-2.639810449,0.078719516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588787612,126.0710206,0.588787612,53.92897937,0,0.965079735,0,0,0,5,3,0% -5/23/2018 12:00,99.75210136,54.12139827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741002605,0.944596596,5.596370021,-5.596370021,0,#DIV/0!,0,0,0.299171175,1,0.176821101,0,0.941953133,0.980715096,0.724496596,1,0,0,0.04482606,0.312029739,0.880758025,0.605254621,0.961238037,0.922476074,0,0,0,0,0,0,-0.483386652,118.9068242,0.483386652,61.0931758,0,0.946563135,0,0,0,5,4,0% -5/23/2018 13:00,89.17040323,63.85189397,0.461728446,3.101586056,0.416821546,0.407733542,0,0.407733542,0.404252838,0.003480704,1.13691443,1.012394315,0.124520115,0.012568708,0.111951408,1.556317132,1.114425783,-68.66257964,68.66257964,0,0.90274175,0.003142177,0.10106321,1,0.911285751,0,0.014562944,0.961238037,1,0.684028901,0.959532305,0.388583204,0.008904552,0.115824807,0.266062962,0.724496596,0.448993192,0.968295621,0.929533658,0.002276496,0.097511533,0.390859701,0.106416085,0,0.089813801,-0.326411809,109.051131,0.326411809,70.94886905,0,0.896819267,0.390859701,0.186962833,0.513223136,5,5,31% -5/23/2018 14:00,78.51975399,72.62673919,124.6859226,399.3459618,45.20406714,44.78093288,0,44.78093288,43.84099773,0.939935152,90.61723458,59.02261967,31.59461491,1.36306941,30.2315455,1.370428235,1.267575724,-4.918672268,4.918672268,0.628703813,0.362543471,0.717466433,23.07618676,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.14163459,0.987539147,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.519801988,22.18170846,42.66143658,23.1692476,0,59.02261967,-0.147798213,98.49935129,0.147798213,81.50064871,0,0.711700917,42.66143658,65.17570017,85.31762883,5,6,100% -5/23/2018 15:00,67.03350085,81.02014964,331.9447916,657.8692535,75.24891757,113.3485015,37.86627642,75.48222512,72.97988507,2.502340053,82.75289034,0,82.75289034,2.269032504,80.48385784,1.169955299,1.414068372,-2.316174867,2.316174867,0.92624292,0.226691063,2.35961406,75.89329928,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15104145,1.643906325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709532354,72.95152601,71.86057381,74.59543234,37.86627642,0,0.05755897,86.70029024,-0.05755897,93.29970976,0,0,71.86057381,74.59543234,120.6817924,5,7,68% -5/23/2018 16:00,55.25149153,89.72143387,537.7853036,778.9266914,93.81627191,306.1776483,211.1362304,95.04141795,90.98736517,4.05405278,133.2211799,0,133.2211799,2.828906743,130.3922731,0.964320444,1.565934431,-1.357017736,1.357017736,0.76221739,0.174449304,3.258235735,104.7960614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.46051627,2.049533306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.360580699,100.7339603,89.82109697,102.7834936,211.1362304,0,0.271060464,74.27261962,-0.271060464,105.7273804,0.865539311,0,272.5678043,102.7834936,339.8375452,5,8,25% -5/23/2018 17:00,43.4644862,99.79371919,718.8840572,843.1404469,106.9319651,512.022674,402.8958505,109.1268235,103.7075718,5.419251681,177.5261559,0,177.5261559,3.224393286,174.3017626,0.758598392,1.741728973,-0.822508659,0.822508659,0.670810954,0.148747165,3.900652129,125.4583809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.68766277,2.336061959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826009189,120.5953677,102.513672,122.9314297,402.8958505,0,0.477851409,61.45483208,-0.477851409,118.5451679,0.945364963,0,483.3972926,122.9314297,563.8534547,5,9,17% -5/23/2018 18:00,32.1152072,113.3914389,860.5486181,878.9086288,116.1298407,702.5109947,583.3957182,119.1152765,112.6280975,6.487178981,212.1517187,0,212.1517187,3.501743171,208.6499756,0.560516106,1.979053953,-0.45611264,0.45611264,0.608153545,0.134948611,4.288237305,137.9244525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2624114,2.537001007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10681333,132.5782299,111.3692247,135.1152309,583.3957182,0,0.663772887,48.41174662,-0.663772887,131.5882534,0.974673031,0,679.9892974,135.1152309,768.4195137,5,10,13% -5/23/2018 19:00,22.2956076,135.7451658,952.2774783,897.6194555,121.7651255,857.8519393,732.5798117,125.2721276,118.0934577,7.178669875,234.5623675,0,234.5623675,3.6716678,230.8906997,0.389131761,2.369200086,-0.168442839,0.168442839,0.558959112,0.127867274,4.417421843,142.0794713,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5159235,2.660110822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.200407088,136.572192,116.7163306,139.2323029,732.5798117,0,0.816136289,35.30012896,-0.816136289,144.699871,0.988735723,0,841.0441601,139.2323029,932.1689177,5,11,11% -5/23/2018 20:00,17.20735166,175.4322684,987.4815311,904.0712863,123.8761033,963.4496159,835.8647812,127.5848347,120.1407818,7.444052895,243.1616514,0,243.1616514,3.73532157,239.4263299,0.300324942,3.061870697,0.08240883,-0.08240883,0.51606095,0.125446501,4.293501999,138.0937831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4838892,2.706227762,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110627583,132.740997,118.5945168,135.4472247,835.8647812,0,0.924556276,22.39846003,-0.924556276,157.60154,0.995920004,0,951.0489728,135.4472247,1039.696472,5,12,9% -5/23/2018 21:00,20.78024298,218.1619099,963.6683157,899.747616,122.4510181,1009.260639,883.2374317,126.0232069,118.7586681,7.264538819,237.3448901,0,237.3448901,3.692349992,233.6525401,0.362683659,3.807643631,0.322375633,-0.322375633,0.475024209,0.127067598,3.935430399,126.5769696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.155349,2.675095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851205927,121.6705977,117.0065549,124.3456927,883.2374317,0,0.981650205,10.993085,-0.981650205,169.006915,0.99906536,0,999.4184774,124.3456927,1080.800246,5,13,8% -5/23/2018 22:00,30.03068737,243.2818586,882.5428091,883.6680882,117.5005503,989.732752,869.1222964,120.6104557,113.9574752,6.652980482,217.5257969,0,217.5257969,3.543075123,213.9827218,0.524134371,4.246069442,0.574095429,-0.574095429,0.431977589,0.133138641,3.377074988,108.6183402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5402597,2.566945866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446679333,104.4080801,111.9869391,106.975026,869.1222964,0,0.983539304,10.41020465,-0.983539304,169.5897953,0.999163191,0,980.3819458,106.975026,1050.394961,5,14,7% -5/23/2018 23:00,41.20099898,258.0201223,749.9358172,851.8376216,109.0102739,903.6826153,792.3060704,111.3765449,105.723212,5.653332964,185.1176833,0,185.1176833,3.287061964,181.8306213,0.719093087,4.503300671,0.866901816,-0.866901816,0.381904748,0.145359471,2.666964049,85.77873146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6251727,2.381465203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932206375,82.45377943,103.5573791,84.83524463,792.3060704,0,0.930113968,21.5474125,-0.930113968,158.4525875,0.996243147,0,892.8868719,84.83524463,948.4098428,5,15,6% -5/23/2018 0:00,52.94055045,268.5554617,575.6137881,794.6432848,96.72729249,753.7678507,655.6180231,98.14982761,93.81060774,4.339219875,142.4809119,0,142.4809119,2.916684754,139.5642272,0.923986913,4.687177031,1.25534763,-1.25534763,0.315476601,0.168042001,1.868057079,60.08313708,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.17432442,2.113128176,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353400995,57.75419673,91.52772541,59.86732491,655.6180231,0,0.825046956,34.40674779,-0.825046956,145.5932522,0.989397389,0,740.1944854,59.86732491,779.3764522,5,16,5% -5/23/2018 1:00,64.73828487,277.4252489,373.3620235,688.6324176,79.4856171,545.1203864,465.2169933,79.90339311,77.08883247,2.814560642,92.92272987,0,92.92272987,2.396784626,90.52594524,1.129896223,4.841984022,1.881010824,-1.881010824,0.208481894,0.212891542,1.06105954,34.12732218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.10071799,1.736462303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768734025,32.80448017,74.86945201,34.54094248,465.2169933,0,0.675566502,47.50184222,-0.675566502,132.4981578,0.975988041,0,528.9156741,34.54094248,551.5220301,5,17,4% -5/23/2018 2:00,76.29256661,285.8241432,163.7510713,468.6519343,52.69734521,282.9621182,230.6193676,52.34275057,51.10832582,1.234424744,41.29236247,0,41.29236247,1.589019391,39.70334308,1.331556482,4.98857238,3.324231705,-3.324231705,0,0.321813743,0.397254848,12.77708146,0.036908936,1,0.292210192,0,0.925572705,0.964334668,0.724496596,1,49.21241163,1.151239139,0.00620413,0.312029739,0.982557368,0.707053964,0.961238037,0.922476074,0.284920116,12.2818167,49.49733175,13.43305583,222.1074521,0,0.492090933,60.52189457,-0.492090933,119.4781054,0.948392763,0,260.142432,13.43305583,268.9340984,5,18,3% -5/23/2018 3:00,87.21640464,294.4851484,7.294823115,38.86639473,5.4073235,16.5454608,11.2461966,5.299264203,5.244272745,0.054991458,1.931765075,0,1.931765075,0.163050754,1.768714321,1.522213423,5.139735438,14.67328327,-14.67328327,0,0.741254917,0.040762689,1.311068186,0.66433103,1,0.068045855,0,0.954682937,0.9934449,0.724496596,1,5.074851926,0.118129717,0.086366733,0.312029739,0.784438091,0.508934687,0.961238037,0.922476074,0.028206156,1.26024861,5.103058082,1.378378326,3.77499923,0,0.289355282,73.18063838,-0.289355282,106.8193616,0.877202048,0,8.414495138,1.378378326,9.316616185,5,19,11% -5/23/2018 4:00,97.79289714,303.9932149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70680804,5.305682504,-4.295596703,4.295596703,0.73525601,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.071794731,85.88292283,-0.071794731,94.11707717,0,0,0,0,0,5,20,0% -5/23/2018 5:00,106.9377007,314.8879358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866414972,5.495831255,-1.393534977,1.393534977,0.768462206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134908606,97.75333503,0.134908606,82.24666497,0,0.679378721,0,0,0,5,21,0% -5/23/2018 6:00,114.3551637,327.6178177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995874123,5.718009606,-0.473696803,0.473696803,0.611160614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320708237,108.7057615,0.320708237,71.29423855,0,0.894095055,0,0,0,5,22,0% -5/23/2018 7:00,119.3749936,342.3079605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083486683,5.974400966,0.07154182,-0.07154182,0.517919318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472943779,118.2255539,0.472943779,61.77444611,0,0.944279189,0,0,0,5,23,0% -5/24/2018 8:00,121.3593273,358.4073983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11811984,6.255389165,0.518143594,-0.518143594,0.441545916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581243018,125.5380175,0.581243018,54.46198251,0,0.963977461,0,0,0,5,0,0% -5/24/2018 9:00,119.9997458,14.64482096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094390665,0.255600344,0.984659304,-0.984659304,0.361767031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638228063,129.6598172,0.638228063,50.34018281,0,0.971658099,0,0,0,5,1,0% -5/24/2018 10:00,115.5114411,29.6670036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016054971,0.517786892,1.597365259,-1.597365259,0.256988142,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640017517,129.7931257,0.640017517,50.20687431,0,0.971877138,0,0,0,5,2,0% -5/24/2018 11:00,108.4942938,42.77000664,0,0,0,0,0,0,0,0,0,0,0,0,0,1.893582646,0.746477437,2.658349645,-2.658349645,0.075549126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58649051,125.9083577,0.58649051,54.09164232,0,0.964747129,0,0,0,5,3,0% -5/24/2018 12:00,99.62989228,53.97648917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738869654,0.942067455,5.66467658,-5.66467658,0,#DIV/0!,0,0,0.304861894,1,0.174732323,0,0.942222928,0.980984891,0.724496596,1,0,0,0.045570869,0.312029739,0.878910356,0.603406952,0.961238037,0.922476074,0,0,0,0,0,0,-0.481294681,118.7699939,0.481294681,61.23000612,0,0.946113541,0,0,0,5,4,0% -5/24/2018 13:00,89.07726335,63.69696833,0.575227223,3.73183264,0.51512943,0.503932683,0,0.503932683,0.499596377,0.004336306,1.367012098,1.212008545,0.155003553,0.015533053,0.1394705,1.554691534,1.111721821,-61.71263644,61.71263644,0,0.895523385,0.003883263,0.124899094,1,0.900829424,0,0.016202719,0.961238037,1,0.679576151,0.955079556,0.480231041,0.010980284,0.115824807,0.261009094,0.724496596,0.448993192,0.969044699,0.930282736,0.002813411,0.120552687,0.483044452,0.131532971,0,0.120195586,-0.324775697,108.9519862,0.324775697,71.04801381,0,0.896047594,0.483044452,0.239233937,0.639618279,5,5,32% -5/24/2018 14:00,78.42676223,72.46096138,126.2879338,402.4907084,45.54010689,45.11891643,0,45.11891643,44.16690464,0.95201179,90.85183021,58.85865629,31.99317392,1.373202248,30.61997167,1.368805223,1.264682355,-4.878695122,4.878695122,0.635540308,0.360605368,0.730161083,23.48449034,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.45490871,0.994880354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528999219,22.57418539,42.98390793,23.56906575,0,58.85865629,-0.146236062,98.40886337,0.146236062,81.59113663,0,0.708087074,42.98390793,65.24611943,85.68618818,5,6,99% -5/24/2018 15:00,66.94842191,80.83903595,333.4873619,659.0934603,75.41298014,114.4403231,38.78735395,75.65296914,73.13900054,2.5139686,83.13185148,0,83.13185148,2.273979595,80.85787189,1.168470391,1.410907341,-2.308043504,2.308043504,0.924852375,0.226134447,2.367770871,76.15565037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.3039893,1.647490476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715441936,73.20370786,72.01943123,74.85119833,38.78735395,0,0.058849551,86.62621982,-0.058849551,93.37378018,0,0,72.01943123,74.85119833,121.0080435,5,7,68% -5/24/2018 16:00,55.16978551,89.5166696,539.1398608,779.5152427,93.92244652,307.2498271,212.0952249,95.15460223,91.09033822,4.064264004,133.5528095,0,133.5528095,2.8321083,130.7207012,0.962894405,1.56236062,-1.354618713,1.354618713,0.761807133,0.174207944,3.264832307,105.0082298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.55949789,2.051852822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.365359893,100.9379046,89.92485778,102.9897575,212.0952249,0,0.272086052,74.21156312,-0.272086052,105.7884369,0.866234608,0,273.6490818,102.9897575,341.0538182,5,8,25% -5/24/2018 17:00,43.37929065,99.55197118,720.0764947,843.484595,107.0125173,512.9408627,403.7269269,109.2139358,103.785695,5.428240779,177.8177051,0,177.8177051,3.22682223,174.5908829,0.757111449,1.737509674,-0.822036342,0.822036342,0.670730183,0.148612707,3.906508724,125.6467491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76275775,2.337821721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830252272,120.7764344,102.59301,123.1142562,403.7269269,0,0.478641731,61.40327113,-0.478641731,118.5967289,0.945537734,0,484.3320535,123.1142562,564.9078719,5,9,17% -5/24/2018 18:00,32.01479738,113.0953911,861.6381675,879.1487857,116.1980575,703.273599,584.0839492,119.1896498,112.6942573,6.495392464,212.4179496,0,212.4179496,3.503800158,208.9141494,0.558763624,1.973886944,-0.456552638,0.456552638,0.608228789,0.134857138,4.2938567,138.1051915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3260067,2.538491287,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.110884563,132.7519632,111.4368912,135.2904545,584.0839492,0,0.664374403,48.36565085,-0.664374403,131.6343491,0.974741231,0,680.7675987,135.2904545,769.3124953,5,10,13% -5/24/2018 19:00,22.15894773,135.4105805,953.3359205,897.8188859,121.8289777,858.5085098,733.1664764,125.3420334,118.1553845,7.186648859,234.8209244,0,234.8209244,3.673593178,231.1473313,0.386746597,2.363360472,-0.169464826,0.169464826,0.559133882,0.127792287,4.423189564,142.264981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5754498,2.661505752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204585782,136.7505111,116.7800356,139.4120168,733.1664764,0,0.816608436,35.25328774,-0.816608436,144.7467123,0.988771144,0,841.7138915,139.4120168,932.9562683,5,11,11% -5/24/2018 20:00,17.02444266,175.3170126,988.5842768,904.2675144,123.9418175,964.0747133,836.417833,127.6568803,120.2045144,7.452365858,243.4310064,0,243.4310064,3.737303096,239.6937033,0.297132578,3.059859105,0.080884887,-0.080884887,0.516321559,0.125373041,4.299730394,138.2941097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5451515,2.70766337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115140033,132.9335585,118.6602915,135.6412219,836.417833,0,0.924967247,22.33658342,-0.924967247,157.6634166,0.995944032,0,951.6856404,135.6412219,1040.460107,5,12,9% -5/24/2018 21:00,20.61173954,218.3833363,964.8878001,899.973112,122.5242835,1009.942029,883.8385724,126.1034561,118.8297243,7.273731807,237.6427774,0,237.6427774,3.694559214,233.9482182,0.35974272,3.811508249,0.320284961,-0.320284961,0.475381735,0.126982934,3.94235756,126.7997709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2236509,2.676695574,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.856224632,121.8847629,117.0798755,124.5614584,883.8385724,0,0.982072198,10.86556023,-0.982072198,169.1344398,0.999087246,0,1000.111721,124.5614584,1081.634704,5,13,8% -5/24/2018 22:00,29.89363923,243.5323039,883.9424499,883.9647877,117.5873351,990.5649947,869.8598201,120.7051747,114.0416431,6.663531566,217.8677729,0,217.8677729,3.545692004,214.3220809,0.52174243,4.250440539,0.571218992,-0.571218992,0.432469489,0.133026008,3.384846189,108.8682888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6211651,2.568841787,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.452309541,104.6483402,112.0734747,107.217182,869.8598201,0,0.984043519,10.24909161,-0.984043519,169.7509084,0.999189239,0,981.2280464,107.217182,1051.399548,5,14,7% -5/24/2018 23:00,41.07957395,258.2328715,751.5641124,852.2789714,109.1181841,904.7654758,793.2719998,111.493476,105.8278682,5.665607741,185.5157362,0,185.5157362,3.290315853,182.2254204,0.716973821,4.507013845,0.862744175,-0.862744175,0.382615746,0.145188125,2.675598034,86.05643009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7257723,2.383822635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938461668,82.72071392,103.664234,85.10453655,793.2719998,0,0.930765661,21.44551631,-0.930765661,158.5544837,0.996280786,0,893.9858852,85.10453655,949.6851023,5,15,6% -5/24/2018 0:00,52.82384603,268.7355407,577.4968305,795.3884305,96.86940959,755.2138129,656.9119584,98.30185453,93.94843948,4.353415044,142.9417627,0,142.9417627,2.920970109,140.0207926,0.921950037,4.690320002,1.248720032,-1.248720032,0.316609987,0.167740158,1.877375132,60.38283769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.30681353,2.116232901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.360151893,58.04228036,91.66696543,60.15851326,656.9119584,0,0.825900822,34.32007263,-0.825900822,145.6799274,0.989460043,0,741.6551002,60.15851326,781.0276439,5,16,5% -5/24/2018 1:00,64.61990794,277.5821524,375.4855722,690.0998649,79.69411552,547.0862461,466.9646333,80.12161275,77.2910439,2.830568849,93.44389581,0,93.44389581,2.403071623,91.04082419,1.127830156,4.844722505,1.868319349,-1.868319349,0.210652264,0.212242817,1.070480522,34.43033335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.29509131,1.741017211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775559494,33.09574604,75.0706508,34.83676325,466.9646333,0,0.676662404,47.41662118,-0.676662404,132.5833788,0.976107909,0,530.8785225,34.83676325,553.6784874,5,17,4% -5/24/2018 2:00,76.16851171,285.9643657,165.9620067,472.1636795,53.08319004,285.7216714,232.9880437,52.73362771,51.482536,1.251091709,41.84006401,0,41.84006401,1.600654036,40.23940997,1.329391316,4.991019725,3.287414576,-3.287414576,0,0.319851459,0.400163509,12.870634,0.031033396,1,0.295296763,0,0.925095759,0.963857722,0.724496596,1,49.55991073,1.1596684,0.005230706,0.312029739,0.985274242,0.709770838,0.961238037,0.922476074,0.28744571,12.37174296,49.84735644,13.53141136,225.7576334,0,0.49344762,60.43256339,-0.49344762,119.5674366,0.948672122,0,264.0173296,13.53141136,272.8733677,5,18,3% -5/24/2018 3:00,87.08933609,294.611952,8.101166279,42.88008545,5.923766089,18.27915174,12.47293904,5.806212698,5.745142685,0.061070013,2.14284496,0,2.14284496,0.178623404,1.964221556,1.519995658,5.141948578,14.001136,-14.001136,0,0.731223861,0.044655851,1.436285671,0.650860125,1,0.071301699,0,0.954341683,0.993103646,0.724496596,1,5.560580147,0.129412048,0.085032079,0.312029739,0.787318781,0.511815377,0.961238037,0.922476074,0.030862979,1.380612419,5.591443126,1.510024467,4.35480038,0,0.290879529,73.08938055,-0.290879529,106.9106194,0.878107532,0,9.415426141,1.510024467,10.40370695,5,19,10% -5/24/2018 4:00,97.64691408,304.1065232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.704260155,5.307660106,-4.366688258,4.366688258,0.723098638,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073693398,85.77384827,-0.073693398,94.22615173,0,0,0,0,0,5,20,0% -5/24/2018 5:00,106.7781552,314.9835599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863630377,5.49750021,-1.402572894,1.402572894,0.770007781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132782229,97.63039642,0.132782229,82.36960358,0,0.673443586,0,0,0,5,21,0% -5/24/2018 6:00,114.1824966,327.6865633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992860514,5.719209445,-0.474911904,0.474911904,0.611368408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.318401487,108.5662811,0.318401487,71.4337189,0,0.892965557,0,0,0,5,22,0% -5/24/2018 7:00,119.1932878,342.3368857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080315318,5.974905807,0.072978422,-0.072978422,0.517673644,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470516491,118.0678283,0.470516491,61.93217169,0,0.943733799,0,0,0,5,23,0% -5/25/2018 8:00,121.1770054,358.3863249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114937722,6.255021364,0.521296583,-0.521296583,0.441006724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578763397,125.3636135,0.578763397,54.63638653,0,0.963608911,0,0,0,5,0,0% -5/25/2018 9:00,119.8270983,14.57491942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091377399,0.254380332,0.989796031,-0.989796031,0.360888599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635767978,129.4769673,0.635767978,50.5230327,0,0.971354957,0,0,0,5,1,0% -5/25/2018 10:00,115.3560524,29.56053257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013342926,0.515928622,1.60603346,-1.60603346,0.255505792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637647557,129.6166266,0.637647557,50.3833734,0,0.971586777,0,0,0,5,2,0% -5/25/2018 11:00,108.3588305,42.64111376,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891218366,0.744227832,2.676282516,-2.676282516,0.072482425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584275129,125.7517977,0.584275129,54.24820231,0,0.964423878,0,0,0,5,3,0% -5/25/2018 12:00,99.5132484,53.83447242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736833834,0.939588795,5.731349354,-5.731349354,0,#DIV/0!,0,0,0.310328073,1,0.172740086,0,0.942479346,0.981241309,0.724496596,1,0,0,0.046282969,0.312029739,0.877147932,0.601644527,0.961238037,0.922476074,0,0,0,0,0,0,-0.479287766,118.6388952,0.479287766,61.36110479,0,0.945678539,0,0,0,5,4,0% -5/25/2018 13:00,88.98827939,63.54537748,0.699263309,4.416154275,0.621287546,0.607824777,0,0.607824777,0.602553435,0.005271342,1.61561088,1.427332283,0.188278597,0.018734112,0.169544485,1.553138471,1.109076061,-56.26718981,56.26718981,0,0.888488697,0.004683528,0.150638359,1,0.890739159,0,0.017770476,0.961238037,1,0.675338664,0.950842069,0.579197281,0.013215799,0.115824807,0.256200467,0.724496596,0.448993192,0.969752418,0.930990455,0.0033932,0.145443934,0.582590481,0.158659734,0,0.155951526,-0.32320707,108.8569862,0.32320707,71.14301381,0,0.895300414,0.582590481,0.298283199,0.777810869,5,5,34% -5/25/2018 14:00,78.33884588,72.29889642,127.8052687,405.4427578,45.85582153,45.43654942,0,45.43654942,44.47309932,0.963450101,91.06145618,58.69086688,32.37058929,1.382722209,30.98786708,1.367270793,1.261853788,-4.841458778,4.841458778,0.641908098,0.358794453,0.742231828,23.872727,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.74923468,1.001777533,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537744433,22.94737323,43.28697911,23.94915077,0,58.69086688,-0.144757468,98.32323493,0.144757468,81.67676507,0,0.704594676,43.28697911,65.3024231,86.02610899,5,6,99% -5/25/2018 15:00,66.86836639,80.66203866,334.9384023,660.2391158,75.56683293,115.4671922,39.65407089,75.81312126,73.2882141,2.524907155,83.48831225,0,83.48831225,2.278618825,81.20969343,1.167073159,1.407818156,-2.300471037,2.300471037,0.923557406,0.22561412,2.375442587,76.40239913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44741905,1.650851582,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.721000068,73.44089215,72.16841912,75.09174373,39.65407089,0,0.060060166,86.55673375,-0.060060166,93.44326625,0,0,72.16841912,75.09174373,121.3144636,5,7,68% -5/25/2018 16:00,55.09316235,89.31649599,540.4090443,780.0648848,94.02179255,308.2477325,212.9872122,95.26052025,91.18668861,4.073831645,133.8635334,0,133.8635334,2.835103949,131.0284294,0.961557078,1.558866931,-1.352426495,1.352426495,0.761432241,0.173982641,3.271037859,105.2078217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.65211354,2.05402316,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.369855794,101.12976,90.02196934,103.1837831,212.9872122,0,0.273037816,74.15488514,-0.273037816,105.8451149,0.866875183,0,274.6552979,103.1837831,342.1870203,5,8,25% -5/25/2018 17:00,43.2994295,99.31530042,721.19261,843.8059587,107.0878583,513.7874257,404.4920069,109.2954188,103.8587643,5.436654527,178.090592,0,178.090592,3.22909404,174.861498,0.755717609,1.73337899,-0.821656936,0.821656936,0.670665301,0.148487182,3.912038724,125.8246129,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.83299468,2.33946764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.834258738,120.9474039,102.6672534,123.2868715,404.4920069,0,0.479366142,61.35598808,-0.479366142,118.6440119,0.945695595,0,485.1935627,123.2868715,565.8823544,5,9,17% -5/25/2018 18:00,31.92025576,112.8043782,862.6612763,879.3738746,116.262084,703.9719422,584.7124839,119.2594583,112.7563532,6.50310509,212.6679448,0,212.6679448,3.505730793,209.162214,0.557113561,1.968807811,-0.457034248,0.457034248,0.608311149,0.134771419,4.299200247,138.2770583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3856956,2.539890026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114755944,132.9171681,111.5004515,135.4570581,584.7124839,0,0.664919098,48.32388086,-0.664919098,131.6761191,0.974802882,0,681.4798659,135.4570581,770.1338013,5,10,13% -5/25/2018 19:00,22.02888006,135.077732,954.3375813,898.0072981,121.8893818,859.1101218,733.7019548,125.4081671,118.2139673,7.194199802,235.0656101,0,235.0656101,3.675414586,231.3901955,0.384476488,2.35755117,-0.17049905,0.17049905,0.559310744,0.127721452,4.428722175,142.4429288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6317618,2.662825356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.20859414,136.9215612,116.8403559,139.5843866,733.7019548,0,0.817033399,35.21108124,-0.817033399,144.7889188,0.988802991,0,842.3270436,139.5843866,933.6822329,5,11,11% -5/25/2018 20:00,16.84771901,175.1945322,989.6388836,904.4548524,124.0046406,964.6545034,836.9287443,127.7257591,120.2654432,7.46031593,243.6886024,0,243.6886024,3.739197442,239.949405,0.294048168,3.057721419,0.079370022,-0.079370022,0.516580616,0.125302919,4.305754733,138.4878731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6037185,2.709035818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119504647,133.1198113,118.7232231,135.8288471,836.9287443,0,0.925340543,22.28023788,-0.925340543,157.7197621,0.995965839,0,952.275662,135.8288471,1041.172926,5,12,9% -5/25/2018 21:00,20.44766486,218.5947491,966.0661275,900.1905723,122.5950463,1010.586918,884.40595,126.1809678,118.8983533,7.282614537,237.9306103,0,237.9306103,3.696692973,234.2339173,0.356879076,3.8151981,0.318223428,-0.318223428,0.475734278,0.126901299,3.949101724,127.0166864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2896197,2.678241475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861110756,122.0932703,117.1507305,124.7715118,884.40595,0,0.982465244,10.74543872,-0.982465244,169.2545613,0.999107614,0,1000.767449,124.7715118,1082.427908,5,13,8% -5/25/2018 22:00,29.759601,243.7732633,885.305767,884.2530918,117.6718178,991.3676591,870.5702719,120.7973872,114.1235784,6.673808826,218.2008724,0,218.2008724,3.548239471,214.6526329,0.519403022,4.254646074,0.568396239,-0.568396239,0.432952208,0.132916583,3.392445606,109.1127122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6999244,2.570687418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.457815293,104.8832892,112.1577397,107.4539766,870.5702719,0,0.984526127,10.09249995,-0.984526127,169.9075001,0.999214146,0,982.0438707,107.4539766,1052.370349,5,14,7% -5/25/2018 23:00,40.96039844,258.437503,753.1584742,852.7097513,109.2237455,905.8227555,794.2148822,111.6078733,105.9302466,5.677626714,185.9054908,0,185.9054908,3.29349892,182.6119918,0.714893816,4.510585338,0.858678397,-0.858678397,0.383311035,0.145020934,2.684063084,86.32869519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8241823,2.386128756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.944594568,82.98242549,103.7687768,85.36855425,794.2148822,0,0.931401196,21.34570006,-0.931401196,158.6542999,0.996317441,0,895.0589156,85.36855425,950.930927,5,15,6% -5/25/2018 0:00,52.70908487,268.9085636,579.3458813,796.1168641,97.00871749,756.6339233,658.1830226,98.4509007,94.08354673,4.36735397,143.3942871,0,143.3942871,2.925170756,140.4691164,0.919947077,4.693339822,1.242259557,-1.242259557,0.317714794,0.167445253,1.886523149,60.67706936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.43668376,2.119276255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3667796,58.32510703,91.80346336,60.44438329,658.1830226,0,0.826741716,34.23452607,-0.826741716,145.7654739,0.98952162,0,743.0897939,60.44438329,782.6494339,5,16,5% -5/25/2018 1:00,64.50345185,277.732679,377.5733176,691.5328987,79.89833513,549.0191073,468.6836946,80.33541268,77.48910553,2.846307156,93.95625185,0,93.95625185,2.409229598,91.54702225,1.125797614,4.847349688,1.855997945,-1.855997945,0.212759348,0.21161012,1.079739325,34.72812826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.48547568,1.745478642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782267465,33.38199783,75.26774314,35.12747648,468.6836946,0,0.677746056,47.33223802,-0.677746056,132.667762,0.976226055,0,532.8089775,35.12747648,555.7992083,5,17,4% -5/25/2018 2:00,76.04654915,286.0986077,168.1384855,475.5827018,53.459558,288.4288267,235.3137727,53.11505401,51.84755508,1.267498925,42.37912536,0,42.37912536,1.612002918,40.76712244,1.327262668,4.99336269,3.251980887,-3.251980887,0,0.317949563,0.40300073,12.96188877,0.025310536,1,0.298327707,0,0.924625498,0.963387461,0.724496596,1,49.89841752,1.167890627,0.004277462,0.312029739,0.987941963,0.712438559,0.961238037,0.922476074,0.289923439,12.45946052,50.18834096,13.62735114,229.3578549,0,0.494790437,60.34406756,-0.494790437,119.6559324,0.948947117,0,267.8368162,13.62735114,276.755645,5,18,3% -5/25/2018 3:00,86.96429353,294.7329879,8.938020154,47.00353715,6.44879332,20.0652103,13.74349332,6.321716979,6.254338408,0.067378571,2.361581379,0,2.361581379,0.194454912,2.167126467,1.517813254,5.144061054,13.39540104,-13.39540104,0,0.721501318,0.048613728,1.563584602,0.637759225,1,0.074514269,0,0.954002519,0.992764482,0.724496596,1,6.054472786,0.140881922,0.08372132,0.312029739,0.790161773,0.514658369,0.961238037,0.922476074,0.033561129,1.502976993,6.088033915,1.643858915,4.978453669,0,0.292392746,72.99873931,-0.292392746,107.0012607,0.878997126,0,10.46408038,1.643858915,11.53995316,5,19,10% -5/25/2018 4:00,97.50393997,304.2141968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701764786,5.309539365,-4.439309063,4.439309063,0.710679749,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075567191,85.66618755,-0.075567191,94.33381245,0,0,0,0,0,5,20,0% -5/25/2018 5:00,106.6223188,315.073751,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860910519,5.499074341,-1.411721497,1.411721497,0.771572284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.130688817,97.50939824,0.130688817,82.49060176,0,0.667411795,0,0,0,5,21,0% -5/25/2018 6:00,114.0143642,327.7503777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98992605,5.720323215,-0.476223039,0.476223039,0.611592626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316136926,108.4294626,0.316136926,71.57053737,0,0.891840684,0,0,0,5,22,0% -5/25/2018 7:00,119.0169448,342.3619453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077237552,5.975343179,0.074296673,-0.074296673,0.51744821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468141115,117.9136998,0.468141115,62.08630021,0,0.943194598,0,0,0,5,23,0% -5/26/2018 8:00,121.0006707,358.3630603,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1118601,6.254615319,0.524296067,-0.524296067,0.440493782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576345239,125.1938946,0.576345239,54.80610539,0,0.963246442,0,0,0,5,0,0% -5/26/2018 9:00,119.6606971,14.50470716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088473149,0.253154897,0.994719398,-0.994719398,0.360046654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633378082,129.2997934,0.633378082,50.70020659,0,0.971058209,0,0,0,5,1,0% -5/26/2018 10:00,115.2068287,29.45530628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010738481,0.514092077,1.614368405,-1.614368405,0.254080433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635355085,129.4463254,0.635355085,50.55367458,0,0.971303849,0,0,0,5,2,0% -5/26/2018 11:00,108.2292655,42.5145109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88895703,0.742018195,2.693576657,-2.693576657,0.069524952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582142602,125.6013834,0.582142602,54.39861659,0,0.964110392,0,0,0,5,3,0% -5/26/2018 12:00,99.40219234,53.69540279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73489554,0.937161572,5.796201322,-5.796201322,0,#DIV/0!,0,0,0.315563123,1,0.170844943,0,0.942722444,0.981484407,0.724496596,1,0,0,0.04696193,0.312029739,0.875471265,0.599967861,0.961238037,0.922476074,0,0,0,0,0,0,-0.477366773,118.5135626,0.477366773,61.48643742,0,0.945258734,0,0,0,5,4,0% -5/26/2018 13:00,88.90355154,63.39718763,0.8323886,5.146855478,0.733901113,0.718046184,0,0.718046184,0.711771287,0.006274897,1.879736144,1.655784065,0.223952079,0.022129826,0.201822253,1.551659691,1.106489661,-51.90284631,51.90284631,0,0.88168088,0.005532457,0.177942822,1,0.881038248,0,0.019264383,0.961238037,1,0.671318716,0.946822121,0.684181634,0.015581458,0.115824807,0.25163956,0.724496596,0.448993192,0.970419149,0.931657186,0.004008246,0.171858593,0.68818988,0.187440051,0,0.196974973,-0.321707899,108.7662429,0.321707899,71.23375711,0,0.894579508,0.68818988,0.363649826,0.926191418,5,5,35% -5/26/2018 14:00,78.25600676,72.14062442,129.2373764,408.2056933,46.15155328,45.7341596,0,45.7341596,44.75991367,0.974245934,91.24820621,58.52146842,32.72673779,1.391639612,31.33509818,1.365824977,1.259091421,-4.806857954,4.806857954,0.647825187,0.357106857,0.753666159,24.2404944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.02493154,1.008238162,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.546028567,23.30088525,43.57096011,24.30912341,0,58.52146842,-0.143362695,98.24247798,0.143362695,81.75752202,0,0.701234236,43.57096011,65.34638058,86.33885928,5,6,98% -5/26/2018 15:00,66.79332342,80.48925719,336.298185,661.3075575,75.71059528,116.4287953,40.465996,75.96279926,73.42764149,2.535157772,83.82234227,0,83.82234227,2.28295379,81.53938848,1.165763412,1.40480255,-2.293447136,2.293447136,0.922356249,0.22512936,2.382632886,76.63366387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58144195,1.653992249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.726209415,73.66319261,72.30765137,75.31718486,40.465996,0,0.061190887,86.49182882,-0.061190887,93.50817118,0,0,72.30765137,75.31718486,121.6012425,5,7,68% -5/26/2018 16:00,55.02160006,89.12104344,541.5934283,780.5762272,94.11438217,309.1716565,213.8124101,95.35924633,91.2764863,4.082760032,134.1534929,0,134.1534929,2.837895867,131.315597,0.960308081,1.555455641,-1.35043845,1.35043845,0.761092266,0.173773124,3.276855901,105.3949499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.7384305,2.056045895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.374070946,101.3096347,90.11250145,103.3656806,213.8124101,0,0.273916118,74.10256769,-0.273916118,105.8974323,0.867462367,0,275.5867207,103.3656806,343.2374914,5,8,25% -5/26/2018 17:00,43.22487173,99.08389427,722.2331551,844.1049063,107.1580501,514.5630049,405.1916668,109.3713382,103.9268396,5.444498595,178.3450008,0,178.3450008,3.231210583,175.1137902,0.75441633,1.729340191,-0.82136926,0.82136926,0.670616106,0.148370439,3.917245627,125.9920848,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89843124,2.341001068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838031122,121.1083842,102.7364624,123.4493853,405.1916668,0,0.480025248,61.312949,-0.480025248,118.687051,0.945838812,0,485.9824671,123.4493853,566.7776208,5,9,17% -5/26/2018 18:00,31.83155094,112.5187027,863.6187795,879.5841596,116.3219783,704.6068931,585.2821285,119.3247646,112.8144414,6.510323154,212.9019086,0,212.9019086,3.507536827,209.3943717,0.55556537,1.963821832,-0.457556655,0.457556655,0.608400486,0.134691349,4.3042712,138.4401576,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4415322,2.541198491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118429832,133.0739453,111.5599621,135.6151438,585.2821285,0,0.665407763,48.2863845,-0.665407763,131.7136155,0.974858105,0,682.126989,135.6151438,770.8843883,5,10,13% -5/26/2018 19:00,21.90540697,134.7470882,955.2832864,898.1849005,121.9463915,859.6577671,734.1871803,125.4705868,118.2692579,7.201328926,235.2966263,0,235.2966263,3.677133639,231.6194927,0.382321476,2.351780347,-0.171544779,0.171544779,0.559489574,0.12765469,4.434022383,142.6134017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6849093,2.664070804,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212434122,137.0854263,116.8973434,139.7494971,734.1871803,0,0.817412072,35.17343498,-0.817412072,144.826565,0.988831341,0,842.8846377,139.7494971,934.3478885,5,11,11% -5/26/2018 20:00,16.67724579,175.0648699,990.6460785,904.6334731,124.0646189,965.1899968,837.3984753,127.7915214,120.3236129,7.46790859,243.934617,0,243.934617,3.741006008,240.193611,0.291072849,3.055458385,0.077864987,-0.077864987,0.516837993,0.125236067,4.311576878,138.6751333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6596334,2.710346118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.123722771,133.2998129,118.7833562,136.010159,837.3984753,0,0.925677084,22.2293241,-0.925677084,157.7706759,0.995985484,0,952.8200816,136.010159,1041.836011,5,12,9% -5/26/2018 21:00,20.28804303,218.7957891,967.2038444,900.4001422,122.6633424,1011.196234,884.9404528,126.2557812,118.9645901,7.291191128,238.2085223,0,238.2085223,3.698752353,234.50977,0.35409315,3.81870691,0.316191858,-0.316191858,0.476081697,0.126822637,3.955663661,127.2277409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.353289,2.679733489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865864857,122.2961439,117.2191539,124.9758773,884.9404528,0,0.982830201,10.63270089,-0.982830201,169.3672991,0.999126512,0,1001.386622,124.9758773,1083.180834,5,13,8% -5/26/2018 22:00,29.62857924,244.0045184,886.6330583,884.5331207,117.7540211,992.1414944,871.254377,120.8871174,114.2033029,6.683814509,218.5251683,0,218.5251683,3.550718202,214.9744501,0.51711626,4.258682237,0.565628099,-0.565628099,0.433425588,0.132810321,3.399872752,109.3515947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7765587,2.57248325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.463196236,105.1129122,112.2397549,107.6853955,871.254377,0,0.98498785,9.94040052,-0.98498785,170.0595995,0.999237953,0,982.8301947,107.6853955,1053.308132,5,14,7% -5/26/2018 23:00,40.84348788,258.633892,754.7189008,853.1300534,109.3269649,906.8549439,795.1352005,111.7197434,106.0303535,5.689389869,186.2869467,0,186.2869467,3.296611365,182.9903353,0.712853341,4.514012973,0.854705485,-0.854705485,0.383990443,0.14485786,2.692357365,86.59546777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9204089,2.388383712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950603746,83.23885744,103.8710126,85.62724115,795.1352005,0,0.932021088,21.24791024,-0.932021088,158.7520898,0.996353145,0,896.1064705,85.62724115,952.1477873,5,15,6% -5/26/2018 0:00,52.59629536,269.0744502,581.1606077,796.8286545,97.14520612,758.0283553,659.4314014,98.59695387,94.21591973,4.381034144,143.8384042,0,143.8384042,2.929286392,140.9091178,0.917978528,4.696235088,1.235966964,-1.235966964,0.31879089,0.167157245,1.89549792,60.96572882,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.56392572,2.122258019,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37328179,58.60257749,91.93720751,60.72483551,659.4314014,0,0.827569889,34.15008984,-0.827569889,145.8499102,0.989582142,0,744.4987463,60.72483551,784.2419366,5,16,5% -5/26/2018 1:00,64.38895745,277.876773,379.6245762,692.9316423,80.09825637,550.9188299,470.3740611,80.54476882,77.68299841,2.86177041,94.45963161,0,94.45963161,2.415257961,92.04437365,1.123799309,4.849864603,1.844044789,-1.844044789,0.214803458,0.210993338,1.08883123,35.02055519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.67185289,1.749846171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.78885452,33.66308972,75.46070741,35.41293589,470.3740611,0,0.678817408,47.24869992,-0.678817408,132.7513001,0.97634249,0,534.7068895,35.41293589,557.8839477,5,17,4% -5/26/2018 2:00,75.92673144,286.2268313,170.2793288,478.9096013,53.82647771,291.0832058,237.5961575,53.48704831,52.20341081,1.283637507,42.90926159,0,42.90926159,1.623066901,41.28619468,1.325171454,4.995600613,3.217895557,-3.217895557,0,0.316106941,0.405766725,13.0508527,0.019741293,1,0.301300809,0,0.924162376,0.962924339,0.724496596,1,50.2279882,1.175906445,0.003344922,0.312029739,0.990558604,0.7150552,0.961238037,0.922476074,0.292352488,12.54497603,50.52034069,13.72088248,232.9057021,0,0.49611901,60.25643375,-0.49611901,119.7435663,0.94921773,0,271.5985626,13.72088248,280.5786057,5,18,3% -5/26/2018 3:00,86.84137248,294.8482342,9.802018468,51.21667088,6.979952734,21.89562994,15.05225678,6.843373162,6.769481406,0.073891756,2.58708419,0,2.58708419,0.210471328,2.376612862,1.515667877,5.14607248,12.84743026,-12.84743026,0,0.712093408,0.052617832,1.692370351,0.625030881,1,0.077679955,0,0.953665933,0.992427896,0.724496596,1,6.554215094,0.152485761,0.082435608,0.312029739,0.792963792,0.517460388,0.961238037,0.922476074,0.036288336,1.626770754,6.590503431,1.779256515,5.644131469,0,0.293893697,72.90878951,-0.293893697,107.0912105,0.879870458,0,11.55660797,1.779256515,12.72109578,5,19,10% -5/26/2018 4:00,97.36404413,304.3162308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.699323143,5.311320195,-4.513421252,4.513421252,0.698005819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077415151,85.55999611,-0.077415151,94.44000389,0,0,0,0,0,5,20,0% -5/26/2018 5:00,106.4702647,315.1585237,0,0,0,0,0,0,0,0,0,0,0,0,0,1.858256675,5.500553904,-1.420972221,1.420972221,0.773154251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.12862957,97.39040758,0.12862957,82.60959242,0,0.661286891,0,0,0,5,21,0% -5/26/2018 6:00,113.8508385,327.8092948,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987071987,5.721351513,-0.477629689,0.477629689,0.611833177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.313915928,108.2953818,0.313915928,71.70461821,0,0.890721685,0,0,0,5,22,0% -5/26/2018 7:00,118.8460296,342.3831861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07425452,5.975713901,0.075494471,-0.075494471,0.517243375,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465819124,117.7632473,0.465819124,62.23675273,0,0.9426622,0,0,0,5,23,0% -5/27/2018 8:00,120.8303783,358.3376513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108887938,6.254171849,0.527138083,-0.527138083,0.440007768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573990038,125.0289346,0.573990038,54.97106542,0,0.962890474,0,0,0,5,0,0% -5/27/2018 9:00,119.5005883,14.43422466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085678723,0.251924745,0.999422818,-0.999422818,0.359242322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631059806,129.1283564,0.631059806,50.87164358,0,0.970768207,0,0,0,5,1,0% -5/27/2018 10:00,115.0638084,29.35136364,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008242307,0.512277936,1.622357734,-1.622357734,0.252714177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633141388,129.2822706,0.633141388,50.71772941,0,0.971028698,0,0,0,5,2,0% -5/27/2018 11:00,108.1056288,42.39024256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886799163,0.739849303,2.710200169,-2.710200169,0.066682164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580094009,125.457155,0.580094009,54.54284496,0,0.963807074,0,0,0,5,3,0% -5/27/2018 12:00,99.29674428,53.55933408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733055124,0.934786725,5.859043648,-5.859043648,0,#DIV/0!,0,0,0.320560683,1,0.169047406,0,0.942952279,0.981714242,0.724496596,1,0,0,0.04760734,0.312029739,0.873880831,0.598377427,0.961238037,0.922476074,0,0,0,0,0,0,-0.475532518,118.3940279,0.475532518,61.60597211,0,0.94485472,0,0,0,5,4,0% -5/27/2018 13:00,88.82317119,63.2524636,0.972917079,5.91493151,0.851435664,0.833095997,0,0.833095997,0.825761737,0.00733426,2.156003244,1.894434307,0.261568937,0.025673927,0.23589501,1.550256789,1.10396375,-48.34256183,48.34256183,0,0.875136928,0.006418482,0.206440434,1,0.87174914,0,0.020682756,0.961238037,1,0.667518222,0.943021626,0.793753591,0.018044965,0.115824807,0.247328437,0.724496596,0.448993192,0.9710453,0.932283337,0.004650168,0.199436745,0.798403759,0.21748171,0,0.24296283,-0.320280007,108.6798594,0.320280007,71.32014062,0,0.893886603,0.798403759,0.434662929,1.082881953,5,5,36% -5/27/2018 14:00,78.17824436,71.98622363,130.5837928,410.7829396,46.42762841,46.0120599,0,46.0120599,45.02766411,0.984395789,91.41404135,58.35252463,33.06151671,1.399964296,31.66155242,1.364467768,1.256396618,-4.774796148,4.774796148,0.653308079,0.355538979,0.7644528,24.58742983,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.28230345,1.014269367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.553843451,23.63437278,43.8361469,24.64864215,0,58.35252463,-0.142051967,98.16660219,0.142051967,81.83339781,0,0.698016138,43.8361469,65.37964603,86.62581764,5,6,98% -5/27/2018 15:00,66.72327997,80.32078847,337.5670188,662.3000639,75.84438322,117.3248788,41.22276084,76.102118,73.55739523,2.544722777,84.13401991,0,84.13401991,2.28698799,81.84703192,1.164540923,1.401862217,-2.286962076,2.286962076,0.921247238,0.224679483,2.389345485,76.84956411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.70616619,1.656915014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.73107267,73.87072414,72.43723886,75.52763915,41.22276084,0,0.062241819,86.43149983,-0.062241819,93.56850017,0,0,72.43723886,75.52763915,121.8685681,5,7,68% -5/27/2018 16:00,54.95507443,88.93043902,542.6936095,781.0498591,94.20028702,310.0219252,214.5710707,95.45085447,91.35980081,4.091053663,134.4228349,0,134.4228349,2.840486216,131.5823487,0.95914699,1.552128966,-1.348652043,1.348652043,0.760786772,0.173579134,3.28228998,105.5697286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.81851557,2.057922594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378007917,101.4776386,90.19652349,103.5355612,214.5710707,0,0.274721349,74.05459094,-0.274721349,105.9454091,0.867997399,0,276.4436548,103.5355612,344.2056089,5,8,25% -5/27/2018 17:00,43.15558382,98.85793562,723.1988944,844.3817968,107.2231545,515.2682628,405.8265032,109.4417595,103.9899808,5.451778746,178.5811186,0,178.5811186,3.23317372,175.3479448,0.753207028,1.725396468,-0.821172146,0.821172146,0.670582397,0.148262332,3.922132945,126.1492777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.95912498,2.342423354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.841571967,121.2594841,102.8006969,123.6019074,405.8265032,0,0.480619673,61.27411833,-0.480619673,118.7258817,0.945967638,0,486.6994355,123.6019074,567.5944119,5,9,17% -5/27/2018 18:00,31.74864811,112.2386621,864.5115158,879.7798989,116.3777981,705.1793295,585.7936984,119.3856311,112.8685781,6.517052977,213.120046,0,213.120046,3.509220002,209.610826,0.554118443,1.958934202,-0.458119044,0.458119044,0.60849666,0.134616828,4.309072808,138.5945939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4935705,2.542417946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121908581,133.2223953,111.615479,135.7648133,585.7936984,0,0.665841194,48.2531081,-0.665841194,131.7468919,0.974907019,0,682.7098674,135.7648133,771.5652224,5,10,13% -5/27/2018 19:00,21.78852592,134.4191227,956.1738576,898.3518969,122.0000598,860.1524357,734.6230855,125.5293503,118.3213079,7.208042428,235.5141739,0,235.5141739,3.678751935,231.835422,0.380281516,2.346056268,-0.172601278,0.172601278,0.559670247,0.127591922,4.439092866,142.7764858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7349417,2.665243254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.21610767,137.242189,116.9510494,139.9074322,734.6230855,0,0.817745349,35.14027272,-0.817745349,144.8597273,0.988856271,0,843.3876942,139.9074322,934.9543105,5,11,11% -5/27/2018 20:00,16.5130858,174.9280904,991.6065791,904.8035449,124.1217979,965.6821944,837.8279774,127.854217,120.3790678,7.475149249,244.1692257,0,244.1692257,3.742730169,240.4264955,0.288207717,3.053071132,0.076370537,-0.076370537,0.517093559,0.125172423,4.317198653,138.8559489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7129388,2.711595266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127795728,133.4736198,118.8407345,136.185215,837.8279774,0,0.925977779,22.18373935,-0.925977779,157.8162606,0.996003024,0,953.3199335,136.185215,1042.450433,5,12,9% -5/27/2018 21:00,20.13289807,218.9861027,968.3014852,900.6019627,122.729207,1011.770888,885.4429542,126.3279342,119.0284686,7.299465608,238.4766441,0,238.4766441,3.700738413,234.7759057,0.351385359,3.822028509,0.314191077,-0.314191077,0.476423851,0.126746895,3.962044107,127.4329579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4146914,2.681172382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870487468,122.4934063,117.2851789,125.1745787,885.4429542,0,0.983167915,10.52731565,-0.983167915,169.4726844,0.999143987,0,1001.970183,125.1745787,1083.894441,5,13,8% -5/27/2018 22:00,29.50058123,244.2258564,887.9246084,884.8049889,117.8339664,992.8872294,871.9128411,120.9743883,114.2808375,6.693550759,218.8407302,0,218.8407302,3.553128848,215.2876013,0.514882274,4.262545313,0.562915491,-0.562915491,0.433889471,0.132707175,3.407127112,109.5849198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8510879,2.574229755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.468451994,105.3371932,112.3195399,107.911423,871.9128411,0,0.985429391,9.792762653,-0.985429391,170.2072373,0.999260697,0,983.5877737,107.911423,1054.213642,5,14,7% -5/27/2018 23:00,40.72885849,258.8219181,756.2453783,853.5399645,109.4278479,907.8625083,796.0334167,111.8290916,106.1281945,5.700897101,186.6601008,0,186.6601008,3.29965336,183.3604475,0.710852681,4.517294648,0.850826425,-0.850826425,0.384653802,0.144698865,2.700479031,86.85668846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.0144574,2.390587627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956487865,83.4899527,103.9709452,85.88054033,796.0334167,0,0.932625829,21.15209515,-0.932625829,158.8479049,0.996387931,0,897.1290345,85.88054033,953.3361305,5,15,6% -5/27/2018 0:00,52.48550646,269.2331232,582.9406683,797.5238637,97.27886454,759.3972618,660.657261,98.74000085,94.34554786,4.394452993,144.2740308,0,144.2740308,2.933316687,141.3407141,0.916044897,4.699004456,1.229842995,-1.229842995,0.319838151,0.166876099,1.904296245,61.24871321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68852921,2.125177954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379656147,58.87459284,92.06818535,60.9997708,660.657261,0,0.828385571,34.06674751,-0.828385571,145.9332525,0.989641633,0,745.8821162,60.9997708,785.8052462,5,16,5% -5/27/2018 1:00,64.27646585,278.0143818,381.6386624,694.2962099,80.29385886,552.7852577,472.0356015,80.7496562,77.87270276,2.876953442,94.95386825,0,94.95386825,2.421156097,92.53271216,1.121835961,4.85226633,1.832458098,-1.832458098,0.216784899,0.21039236,1.097751565,35.30746384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.85420393,1.754119351,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.795317272,33.93887723,75.6495212,35.69299658,472.0356015,0,0.679876391,47.16601544,-0.679876391,132.8339846,0.97645722,0,536.5720923,35.69299658,559.9324447,5,17,4% -5/27/2018 2:00,75.80911093,286.349001,172.3833709,482.1449706,54.18397615,293.6844255,239.8347974,53.84962802,52.55012935,1.299498665,43.43019086,0,43.43019086,1.633846799,41.79634407,1.323118589,4.997732878,3.185125175,-3.185125175,0,0.314322523,0.4084617,13.13753234,0.014326561,1,0.304213879,0,0.923706846,0.962468809,0.724496596,1,50.54867799,1.183716444,0.0024336,0.312029739,0.993122261,0.717618857,0.961238037,0.922476074,0.294732023,12.62829579,50.84341001,13.81201224,236.3987895,0,0.497432955,60.1696895,-0.497432955,119.8303105,0.949483941,0,275.3002645,13.81201224,284.3399502,5,18,3% -5/27/2018 3:00,86.72066478,294.957671,10.68972127,55.49977137,7.51491497,23.76248466,16.39358847,7.368896191,7.288312557,0.080583634,2.818449098,0,2.818449098,0.226602413,2.591846684,1.51356113,5.147982512,12.35002507,-12.35002507,0,0.703003827,0.056650603,1.822078139,0.612677077,1,0.080795228,0,0.953332411,0.992094374,0.724496596,1,7.057606912,0.164172677,0.081176046,0.312029739,0.795721643,0.520218238,0.961238037,0.922476074,0.039032994,1.751450813,7.096639906,1.915623491,6.349612609,0,0.295381189,72.81960345,-0.295381189,107.1803965,0.880727203,0,12.68891646,1.915623491,13.94265372,5,19,10% -5/27/2018 4:00,97.22729476,304.4126223,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696936416,5.313002544,-4.588977648,4.588977648,0.685084914,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.079236318,85.45532938,-0.079236318,94.54467062,0,0,0,0,0,5,20,0% -5/27/2018 5:00,106.3220647,315.2378942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.855670096,5.50193918,-1.430315846,1.430315846,0.774752105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126605675,97.27349092,0.126605675,82.72650908,0,0.655072994,0,0,0,5,21,0% -5/27/2018 6:00,113.6919893,327.8633499,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984299547,5.722294953,-0.479131139,0.479131139,0.61208994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.311739848,108.1641131,0.311739848,71.83588687,0,0.889609853,0,0,0,5,22,0% -5/27/2018 7:00,118.6806053,342.4006555,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071367321,5.9760188,0.076569847,-0.076569847,0.517059475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463551965,117.6165479,0.463551965,62.38345207,0,0.942137228,0,0,0,5,23,0% -5/28/2018 8:00,120.6661814,358.3101454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106022162,6.25369178,0.529818812,-0.529818812,0.439549337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571699251,124.8688049,0.571699251,55.13119513,0,0.962541428,0,0,0,5,0,0% -5/28/2018 9:00,119.3468158,14.36351319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082994888,0.250690597,1.003899909,-1.003899909,0.358476694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628814533,128.962715,0.628814533,51.037285,0,0.970485298,0,0,0,5,1,0% -5/28/2018 10:00,114.9270276,29.24874446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005855031,0.510486893,1.629989432,-1.629989432,0.25140908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631007704,129.1245083,0.631007704,50.87549166,0,0.970761665,0,0,0,5,2,0% -5/28/2018 11:00,107.9879478,42.26835384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884745241,0.737721944,2.726121851,-2.726121851,0.063959397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578130375,125.3191503,0.578130375,54.6808497,0,0.963514318,0,0,0,5,3,0% -5/28/2018 12:00,99.19692173,53.42632025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731312892,0.932465196,5.919687066,-5.919687066,0,#DIV/0!,0,0,0.325314662,1,0.167347936,0,0.943168909,0.981930872,0.724496596,1,0,0,0.048218817,0.312029739,0.87237706,0.596873656,0.961238037,0.922476074,0,0,0,0,0,0,-0.47378576,118.2803204,0.47378576,61.71967963,0,0.944467069,0,0,0,5,4,0% -5/28/2018 13:00,88.74722008,63.11126991,1.118983594,6.710400967,0.972271466,0.951389265,0,0.951389265,0.942953894,0.008435371,2.440743076,2.140114977,0.300628099,0.029317572,0.271310527,1.548931192,1.101499455,-45.39751379,45.39751379,0,0.868888044,0.007329393,0.235738474,1,0.862893228,0,0.022024076,0.961238037,1,0.663938713,0.939442117,0.90640315,0.020572495,0.115824807,0.243268721,0.724496596,0.448993192,0.971631312,0.932869349,0.00531012,0.227798044,0.91171327,0.248370539,0,0.293424256,-0.318925052,108.597929,0.318925052,71.40207096,0,0.893223354,0.91171327,0.510463936,1.245801707,5,5,37% -5/28/2018 14:00,78.10555538,71.83577145,131.8441457,413.1777792,46.68435933,46.27055051,0,46.27055051,45.27665365,0.993896861,91.560793,58.18594776,33.37484524,1.407705681,31.96713955,1.363199106,1.253770733,-4.745184758,4.745184758,0.658371925,0.354087465,0.774581735,24.91321121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52164167,1.019877974,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56118183,23.94752624,44.0828235,24.96740421,0,58.18594776,-0.140825453,98.09561444,0.140825453,81.90438556,0,0.694950546,44.0828235,65.4037604,86.8882766,5,6,97% -5/28/2018 15:00,66.65822033,80.15672799,338.7452576,663.2178643,75.96831068,118.1552567,41.92406602,76.23119066,73.67758582,2.553604839,84.42343443,0,84.42343443,2.29072486,82.13270957,1.163405418,1.398998821,-2.281006635,2.281006635,0.920228798,0.224263835,2.395584179,77.05022198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.82169795,1.659622363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.735592583,74.06360411,72.55729053,75.72322648,41.92406602,0,0.063213113,86.37573896,-0.063213113,93.62426104,0,0,72.55729053,75.72322648,122.1166278,5,7,68% -5/28/2018 16:00,54.89355858,88.74480756,543.7102154,781.4863547,94.27957901,310.798909,215.2634899,95.53541912,91.43670185,4.098717268,134.6717137,0,134.6717137,2.842877162,131.8288366,0.958073335,1.548889086,-1.347064791,1.347064791,0.760515336,0.173400419,3.287343711,105.7322739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89243578,2.059654826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381669328,101.6338834,90.27410511,103.6935382,215.2634899,0,0.275453933,74.01093258,-0.275453933,105.9890674,0.868481444,0,277.2264517,103.6935382,345.0917986,5,8,24% -5/28/2018 17:00,43.09152928,98.63760405,724.0906106,844.6369818,107.2832335,515.9038914,406.3971424,109.506749,104.0482481,5.45850088,178.7991371,0,178.7991371,3.234985322,175.5641518,0.752089066,1.721550957,-0.821064414,0.821064414,0.670563974,0.148162719,3.926704219,126.2963056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0151338,2.343735853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.844883839,121.4008129,102.8600176,123.7445487,406.3971424,0,0.481150069,61.23945817,-0.481150069,118.7605418,0.946082318,0,487.3451681,123.7445487,568.3335003,5,9,17% -5/28/2018 18:00,31.67150879,111.9645505,865.3403304,879.9613456,116.4296013,705.6901461,586.248026,119.4421201,112.9188192,6.523300932,213.3225637,0,213.3225637,3.510782058,209.8117817,0.552772107,1.954150053,-0.458720574,0.458720574,0.608599528,0.134547758,4.313608306,138.740471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5418641,2.54354965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.125194533,133.362618,111.6670586,135.9061677,586.248026,0,0.666220203,48.22399577,-0.666220203,131.7760042,0.974949739,0,683.2294186,135.9061677,772.1772873,5,10,13% -5/28/2018 19:00,21.67822938,134.0943163,957.0101125,898.508486,122.0504391,860.5951223,735.0106077,125.5845146,118.3701681,7.214346471,235.7184527,0,235.7184527,3.680271058,232.0381817,0.378356479,2.340387328,-0.173667788,0.173667788,0.559852631,0.127533072,4.443936256,142.9322659,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.781908,2.666343854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219616689,137.3919307,117.0015247,140.0582745,735.0106077,0,0.81803413,35.11151593,-0.81803413,144.8884841,0.988877856,0,843.8372385,140.0582745,935.502578,5,11,11% -5/28/2018 20:00,16.35529999,174.7842851,992.5210893,904.9652309,124.1762224,966.1320891,838.2181947,127.9138944,120.4318512,7.482043214,244.3926004,0,244.3926004,3.744371268,240.6482291,0.285453835,3.050561256,0.074887449,-0.074887449,0.517347182,0.125111923,4.322621806,139.0303762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7636762,2.712784237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131724783,133.6412859,118.895401,136.3540701,838.2181947,0,0.926243535,22.14337722,-0.926243535,157.8566228,0.996018517,0,953.7762439,136.3540701,1043.017256,5,12,9% -5/28/2018 21:00,19.98225509,219.1653449,969.3595627,900.7961681,122.7926736,1012.311774,885.9143104,126.3974632,119.0900214,7.307441843,238.735101,0,238.735101,3.702652165,235.0324488,0.348756143,3.825156875,0.312221929,-0.312221929,0.476760595,0.126674021,3.968243701,127.6323582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4738584,2.682558889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.874979053,122.6850774,117.3488374,125.3676363,885.9143104,0,0.983479217,10.42924007,-0.983479217,169.5707599,0.999160085,0,1002.519055,125.3676363,1084.569666,5,13,8% -5/28/2018 22:00,29.37561621,244.4370708,889.1806755,885.0688035,117.9116735,993.6055652,872.5463442,121.059221,114.3562015,6.703019524,219.1476214,0,219.1476214,3.555472004,215.5921494,0.512701223,4.266231699,0.560259354,-0.560259354,0.434343697,0.132607103,3.41420807,109.8126678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9235306,2.575927364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.473582124,105.5561132,112.3971128,108.1320406,872.5463442,0,0.985851428,9.649555665,-0.985851428,170.3504443,0.999282419,0,984.317334,108.1320406,1055.087592,5,14,7% -5/28/2018 23:00,40.61652852,259.0014651,757.7378649,853.9395608,109.5263981,908.845882,796.9099608,111.9359212,106.2237731,5.712148095,187.0249431,0,187.0249431,3.302625013,183.7223181,0.708892153,4.520428334,0.847042223,-0.847042223,0.385300938,0.144543916,2.708426145,87.11229497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1063311,2.39274058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962245522,83.7356514,104.0685767,86.12839198,796.9099608,0,0.933215882,21.05820621,-0.933215882,158.9417938,0.996421829,0,898.1270575,86.12839198,954.4963675,5,15,6% -5/28/2018 0:00,52.37674891,269.3845093,584.6856951,798.20254,97.40967953,760.7407585,661.8607325,98.88002603,94.47241829,4.407607742,144.7010773,0,144.7010773,2.937261241,141.763816,0.91414672,4.701646641,1.223888418,-1.223888418,0.320856443,0.166601783,1.912914856,61.52591737,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.81048189,2.128035771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385900301,59.14105203,92.19638219,61.2690878,661.8607325,0,0.829188958,33.98448568,-0.829188958,146.0155143,0.989700114,0,747.2400243,61.2690878,787.3394169,5,16,5% -5/28/2018 1:00,64.16601954,278.1454557,383.6148685,695.6266933,80.4851194,554.6181961,473.6681491,80.95004701,78.05819609,2.891850918,95.43878951,0,95.43878951,2.426923308,93.0118662,1.119908309,4.854554002,1.821236219,-1.821236219,0.218703953,0.20980709,1.106495625,35.58870285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03250717,1.758297675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.801652314,34.20921486,75.83415948,35.96751254,473.6681491,0,0.680922905,47.08419571,-0.680922905,132.9158043,0.976570248,0,538.4043814,35.96751254,561.944399,5,17,4% -5/28/2018 2:00,75.69374091,286.4650844,174.4494393,485.2893631,54.53207524,296.2320693,242.0292637,54.20280554,52.88773197,1.315073562,43.94162955,0,43.94162955,1.644343271,42.29728627,1.321105002,4.999758915,3.153638166,-3.153638166,0,0.312595302,0.411085818,13.22193299,0.009067232,1,0.307064733,0,0.923259364,0.962021327,0.724496596,1,50.86053796,1.191321102,0.001544009,0.312029739,0.995631033,0.720127629,0.961238037,0.922476074,0.29706117,12.70942491,51.15759913,13.90074602,239.8347282,0,0.498731854,60.08386446,-0.498731854,119.9161355,0.949745726,0,278.9396072,13.90074602,288.0373674,5,18,3% -5/28/2018 3:00,86.60225988,295.0612813,11.59764089,59.83364423,8.051480268,25.65798608,17.76185974,7.896126347,7.808698431,0.087427916,3.054764145,0,3.054764145,0.242781837,2.811982308,1.511494575,5.149790854,11.89715071,-11.89715071,0,0.694234314,0.060695459,1.952174608,0.6006994,1,0.083856626,0,0.953002442,0.991764405,0.724496596,1,7.562569169,0.175894614,0.079943694,0.312029739,0.79843219,0.522928786,0.961238037,0.922476074,0.041784181,1.876504487,7.60435335,2.052399102,7.092321254,0,0.296854052,72.7312522,-0.296854052,107.2687478,0.881567062,0,13.85671016,2.052399102,15.19996433,5,19,10% -5/28/2018 4:00,97.09376006,304.5033709,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694605796,5.314586405,-4.665920244,4.665920244,0.671926955,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.081029714,85.35224384,-0.081029714,94.64775616,0,0,0,0,0,5,20,0% -5/28/2018 5:00,106.1777897,315.3118806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853152023,5.503230488,-1.439742367,1.439742367,0.776364135,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124618328,97.15871525,0.124618328,82.84128475,0,0.648774909,0,0,0,5,21,0% -5/28/2018 6:00,113.5378858,327.9125798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981609933,5.723154177,-0.480726424,0.480726424,0.61236275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309610036,108.035731,0.309610036,71.96426898,0,0.888506527,0,0,0,5,22,0% -5/28/2018 7:00,118.5207334,342.4144024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068577029,5.976258727,0.077521005,-0.077521005,0.516896817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461341068,117.4736781,0.461341068,62.52632191,0,0.941620314,0,0,0,5,23,0% -5/29/2018 8:00,120.5081314,358.2805915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103263669,6.253175967,0.532334621,-0.532334621,0.439119108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569474306,124.7135756,0.569474306,55.28642435,0,0.962199726,0,0,0,5,0,0% -5/29/2018 9:00,119.1994216,14.29261598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080422374,0.249453208,1.008144534,-1.008144534,0.357750821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626643613,128.8029262,0.626643613,51.19707379,0,0.970209831,0,0,0,5,1,0% -5/29/2018 10:00,114.7965196,29.14749052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003577237,0.508719678,1.637251899,-1.637251899,0.250167125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628955226,128.973083,0.628955226,51.02691701,0,0.970503085,0,0,0,5,2,0% -5/29/2018 11:00,107.876247,42.1488915,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882795694,0.735636933,2.741311392,-2.741311392,0.061361832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576252668,125.1874046,0.576252668,54.81259542,0,0.963232506,0,0,0,5,3,0% -5/29/2018 12:00,99.10273922,53.29641639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729669097,0.930197946,5.977943344,-5.977943344,0,#DIV/0!,0,0,0.329819276,1,0.165746943,0,0.943372395,0.982134358,0.724496596,1,0,0,0.048796003,0.312029739,0.870960333,0.595456928,0.961238037,0.922476074,0,0,0,0,0,0,-0.472127199,118.1724664,0.472127199,61.82753356,0,0.944096336,0,0,0,5,4,0% -5/29/2018 13:00,88.67576999,62.97367164,1.268601631,7.522635783,1.094752645,1.071305068,0,1.071305068,1.061741813,0.009563255,2.730122042,2.389524057,0.340597984,0.033010831,0.307587153,1.547684153,1.099097912,-42.93465995,42.93465995,0,0.862960143,0.008252708,0.265435453,1,0.8544907,0,0.023286995,0.961238037,1,0.660581341,0.936084745,1.020586616,0.023129688,0.115824807,0.239461601,0.724496596,0.448993192,0.97217766,0.933415697,0.005979059,0.256553302,1.026565675,0.27968299,0,0.347697973,-0.317644523,108.5205353,0.317644523,71.4794647,0,0.892591336,1.026565675,0.590035188,1.412731905,5,5,38% -5/29/2018 14:00,78.03793337,71.68934533,133.0181582,415.3933666,46.92204643,46.50992067,0,46.50992067,45.50717361,1.002747064,91.69016569,58.02350036,33.66666532,1.414872824,32.2517925,1.362018879,1.251215115,-4.717942312,4.717942312,0.663030658,0.352749181,0.784044236,25.21755778,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.74322622,1.025070544,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.56803738,24.24007573,44.3112636,25.26514628,0,58.02350036,-0.139683262,98.02951839,0.139683262,81.97048161,0,0.692047305,44.3112636,65.42015333,87.12744555,5,6,97% -5/29/2018 15:00,66.5981257,79.99717064,339.8333076,664.0621466,76.08249038,118.9198155,42.56968593,76.3501296,73.78832258,2.561807019,84.69068768,0,84.69068768,2.2941678,82.39651988,1.162356569,1.39621402,-2.275572019,2.275572019,0.919299424,0.223881793,2.401352882,77.23576327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.92814234,1.662116761,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.739771988,74.24195346,72.66791433,75.90407023,42.56968593,0,0.064104973,86.32453531,-0.064104973,93.67546469,0,0,72.66791433,75.90407023,122.3456102,5,7,68% -5/29/2018 16:00,54.83702248,88.5642725,544.6439102,781.8862759,94.3523308,311.5030299,215.8900142,95.61301576,91.5072599,4.105755854,134.9002926,0,134.9002926,2.845070897,132.0552217,0.957086594,1.545738155,-1.345674227,1.345674227,0.760277536,0.173236731,3.292020794,105.882705,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96025887,2.06124418,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.385057859,101.7784835,90.34531673,103.8397277,215.8900142,0,0.276114341,73.97156736,-0.276114341,106.0284326,0.868915599,0,277.9355178,103.8397277,345.8965428,5,8,24% -5/29/2018 17:00,43.03266836,98.42307677,724.9091095,844.8708078,107.3383498,516.4706209,406.9042473,109.5663735,104.1017025,5.46467107,178.9992536,0,178.9992536,3.236647282,175.7626063,0.751061749,1.71780675,-0.821044845,0.821044845,0.670560627,0.148071459,3.930963024,126.4332834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0665161,2.344939938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.847969329,121.5324812,102.9144854,123.8774211,406.9042473,0,0.481617122,61.20892781,-0.481617122,118.7910722,0.946183093,0,487.9204048,123.8774211,568.9956993,5,9,17% -5/29/2018 18:00,31.60009055,111.6966593,866.1060774,880.1287486,116.4774455,706.1402611,586.6459669,119.4942942,112.9652208,6.529073456,213.5096706,0,213.5096706,3.512224738,209.9974459,0.551525624,1.949474469,-0.459360362,0.459360362,0.608708938,0.134484041,4.317880907,138.8778926,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5864671,2.544594867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128290018,133.4947128,111.7147571,136.0393077,586.6459669,0,0.666545625,48.19898894,-0.666545625,131.8010111,0.97498638,0,683.6865849,136.0393077,772.721591,5,10,13% -5/29/2018 19:00,21.57450474,133.7731582,957.7928641,898.6548621,122.0975815,860.9868295,735.3506934,125.6361361,118.4158889,7.220247183,235.9096614,0,235.9096614,3.681692574,232.2279688,0.376546142,2.334782061,-0.174743508,0.174743508,0.560036589,0.127478066,4.448555113,143.0808242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8258566,2.667373737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222963036,137.5347306,117.0488196,140.2021043,735.3506934,0,0.818279324,35.08708338,-0.818279324,144.9129166,0.988896171,0,844.2343046,140.2021043,935.9937779,5,11,11% -5/29/2018 20:00,16.20394768,174.6335761,993.3902961,905.1186882,124.2279357,966.5406671,838.5700664,127.9706007,120.4820051,7.488595662,244.604909,0,244.604909,3.745930613,240.8589784,0.282812239,3.047930888,0.073416537,-0.073416537,0.517598722,0.125054509,4.327847975,139.1984677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.811886,2.713913977,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.135511125,133.8028619,118.9473971,136.5167758,838.5700664,0,0.926475254,22.10812746,-0.926475254,157.8918725,0.996032018,0,954.1900324,136.5167758,1043.537532,5,12,9% -5/29/2018 21:00,19.83614122,219.3331818,970.3785624,900.9828856,122.853774,1012.819761,886.3553583,126.4644029,119.1492794,7.315123493,238.9840117,0,238.9840117,3.704494568,235.2795171,0.346205975,3.828086182,0.310285294,-0.310285294,0.477091779,0.126603965,3.974262948,127.8259579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5308195,2.683893704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.879339977,122.8711728,117.4101594,125.5550665,886.3553583,0,0.983764922,10.3384193,-0.983764922,169.6615807,0.99917485,0,1003.034141,125.5550665,1085.207421,5,13,8% -5/29/2018 22:00,29.25369635,244.6379619,890.4014829,885.3246618,117.9871599,994.2971694,873.1555353,121.1416342,114.4294117,6.712222485,219.4458964,0,219.4458964,3.557748196,215.8881482,0.51057332,4.269737911,0.557660665,-0.557660665,0.434788099,0.132510067,3.421114862,110.034814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.993903,2.577576457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478586071,105.7696486,112.4724891,108.347225,873.1555353,0,0.986254617,9.510750176,-0.986254617,170.4892498,0.999303152,0,985.019568,108.347225,1055.93066,5,14,7% -5/29/2018 23:00,40.50651914,259.1724216,759.1962788,854.328906,109.6226165,909.8054552,797.7652229,112.0402323,106.3170901,5.723142235,187.3814538,0,187.3814538,3.305526351,184.0759275,0.706972127,4.523412087,0.843353928,-0.843353928,0.385931674,0.144392984,2.716196621,87.36222021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.196031,2.394842589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967875206,83.97588905,104.1639062,86.37073164,797.7652229,0,0.933791678,20.96619915,-0.933791678,159.0338008,0.996454867,0,899.1009449,86.37073164,955.6288614,5,15,6% -5/29/2018 0:00,52.27005601,269.5285382,586.3952796,798.8647124,97.53763456,762.0589111,663.0419008,99.01701032,94.596515,4.420495312,145.1194441,0,145.1194441,2.941119558,142.1783246,0.912284578,4.70416042,1.218104068,-1.218104068,0.321845626,0.166334276,1.921350353,61.79723195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92976838,2.130831108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39201179,59.40184992,92.32178017,61.53268103,663.0419008,0,0.829980209,33.90329497,-0.829980209,146.096705,0.9897576,0,748.5725404,61.53268103,788.8444495,5,16,5% -5/29/2018 1:00,64.05766322,278.2699483,385.55245,696.9231523,80.67201058,556.4173967,475.2714877,81.14590904,78.23945181,2.906457226,95.91421405,0,95.91421405,2.432558767,93.48165528,1.118017134,4.856726807,1.810377684,-1.810377684,0.220560872,0.209237448,1.115058611,35.86411793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.20673706,1.762380546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.807856168,34.47395432,76.01459323,36.23633486,475.2714877,0,0.681956807,47.00325526,-0.681956807,132.9967447,0.976681574,0,540.2034977,36.23633486,563.9194541,5,17,4% -5/29/2018 2:00,75.58067638,286.5750518,176.4763402,488.3432705,54.8707895,298.7256681,244.1790822,54.54658594,53.21623274,1.330353196,44.4432886,0,44.4432886,1.654556755,42.78873185,1.319131654,5.001678208,3.123404879,-3.123404879,0,0.310924339,0.413639189,13.30405819,0.003964225,1,0.309851181,0,0.922820386,0.961582349,0.724496596,1,51.16361284,1.198720737,0.000676662,0.312029739,0.998083013,0.722579609,0.961238037,0.922476074,0.299339003,12.78836677,51.46295185,13.98708751,243.2111014,0,0.500015249,59.99899111,-0.500015249,120.0010089,0.95000305,0,282.5142399,13.98708751,291.6685089,5,18,3% -5/29/2018 3:00,86.48624585,295.1590508,12.52226344,64.19973269,8.587580901,27.57452603,19.15149427,8.423031763,8.328633652,0.094398111,3.295114998,0,3.295114998,0.258947249,3.036167749,1.509469748,5.151497253,11.48371471,-11.48371471,0,0.685785037,0.064736812,2.082158413,0.58909916,1,0.086860727,0,0.952676516,0.991438479,0.724496596,1,8.067146532,0.1876064,0.078739586,0.312029739,0.801092341,0.525588937,0.961238037,0.922476074,0.044531661,2.001449865,8.111678193,2.189056266,7.869365082,0,0.298311122,72.64380662,-0.298311122,107.3561934,0.882389756,0,15.05552532,2.189056266,16.48821887,5,19,10% -5/29/2018 4:00,96.96350887,304.5884787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692332484,5.316071817,-4.744178758,4.744178758,0.658543961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082794332,85.25079778,-0.082794332,94.74920222,0,0,0,0,0,5,20,0% -5/29/2018 5:00,106.0375111,315.3805039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850703699,5.504428189,-1.449240907,1.449240907,0.777988481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.122668747,97.04614871,0.122668747,82.95385129,0,0.642398217,0,0,0,5,21,0% -5/29/2018 6:00,113.3885964,327.9570236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979004341,5.723929867,-0.482414295,0.482414295,0.612651393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307527851,107.9103103,0.307527851,72.0896897,0,0.8874131,0,0,0,5,22,0% -5/29/2018 7:00,118.3664743,342.4244774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065884701,5.976434569,0.078346348,-0.078346348,0.516755675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459187858,117.3347139,0.459187858,62.66528613,0,0.941112103,0,0,0,5,23,0% -5/30/2018 8:00,120.3562783,358.2490409,0,0,0,0,0,0,0,0,0,0,0,0,0,2.100613332,6.252625305,0.534682082,-0.534682082,0.438717668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567316614,124.5633163,0.567316614,55.43668372,0,0.961865793,0,0,0,5,0,0% -5/30/2018 9:00,119.0584458,14.22157892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077961881,0.248213377,1.01215084,-1.01215084,0.357065702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62454836,128.649046,0.62454836,51.35095404,0,0.969942148,0,0,0,5,1,0% -5/30/2018 10:00,114.6723156,29.04764632,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001409468,0.506977068,1.644134014,-1.644134014,0.248990214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626985099,128.8280372,0.626985099,51.1719628,0,0.970253288,0,0,0,5,2,0% -5/30/2018 11:00,107.7705481,42.0319046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880950902,0.733595126,2.755739558,-2.755739558,0.05889447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574461807,125.0619509,0.574461807,54.93804911,0,0.962962012,0,0,0,5,3,0% -5/30/2018 12:00,99.01420815,53.16967932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728123939,0.927985966,6.033626791,-6.033626791,0,#DIV/0!,0,0,0.334069081,1,0.164244774,0,0.943562797,0.98232476,0.724496596,1,0,0,0.049338575,0.312029739,0.869630975,0.594127571,0.961238037,0.922476074,0,0,0,0,0,0,-0.470557476,118.0704896,0.470557476,61.92951042,0,0.943743055,0,0,0,5,4,0% -5/30/2018 13:00,88.60888273,62.83973499,1.419717906,8.340672922,1.217229794,1.191228258,0,1.191228258,1.180525825,0.010702433,3.020251404,2.639320392,0.380931013,0.036703969,0.344227043,1.54651675,1.096760277,-40.85764853,40.85764853,0,0.857374405,0.009175992,0.295131456,1,0.846560416,0,0.024470336,0.961238037,1,0.657446891,0.932950295,1.134766326,0.025682502,0.115824807,0.235907853,0.724496596,0.448993192,0.972684844,0.933922881,0.006647975,0.285314565,1.141414302,0.310997067,0,0.404976223,-0.316439743,108.4477516,0.316439743,71.55224837,0,0.891992034,1.141414302,0.672232632,1.581377115,5,5,39% -5/30/2018 14:00,77.97536844,71.54702318,134.1056514,417.4327383,47.14097942,46.73045001,0,46.73045001,45.71950496,1.010945047,91.80373955,57.86679729,33.93694227,1.421474461,32.5154678,1.360926915,1.248731125,-4.692993831,4.692993831,0.667297099,0.351521199,0.792832866,25.50023032,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.94732719,1.029853408,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574404713,24.51179134,44.52173191,25.54164474,0,57.86679729,-0.138625441,97.96831423,0.138625441,82.03168577,0,0.689315844,44.52173191,65.43014498,87.34445319,5,6,96% -5/30/2018 15:00,66.54297397,79.84221114,340.8316313,664.8340628,76.18703457,119.6185189,43.15947172,76.45904718,73.88971437,2.569332804,84.93589521,0,84.93589521,2.297320192,82.63857501,1.16139399,1.393509466,-2.270649799,2.270649799,0.918457674,0.223532758,2.40665564,77.40631821,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.02560399,1.664400659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743613819,74.40589736,72.76921781,76.07029802,43.15947172,0,0.06491766,86.27787457,-0.06491766,93.72212543,0,0,72.76921781,76.07029802,122.5557065,5,7,68% -5/30/2018 16:00,54.78543276,88.38895632,545.4953993,782.2501754,94.41861623,312.1347668,216.4510455,95.68372132,91.57154658,4.112174738,135.1087447,0,135.1087447,2.847069647,132.2616751,0.956186184,1.54267831,-1.344477879,1.344477879,0.760072948,0.173087832,3.296325033,106.0211441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.02205367,2.062692267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388176265,101.9115564,90.41022993,103.9742487,216.4510455,0,0.276703096,73.93646668,-0.276703096,106.0635333,0.869300902,0,278.5713189,103.9742487,346.6203852,5,8,24% -5/30/2018 17:00,42.9789578,98.21452901,725.655223,845.083617,107.3885671,516.9692234,407.3485222,109.6207011,104.1504056,5.470295589,179.1816717,0,179.1816717,3.238161519,175.9435102,0.750124323,1.714166904,-0.821112169,0.821112169,0.67057214,0.147988416,3.934912977,126.5603275,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1133314,2.346036997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.850831057,121.6546008,102.9641624,124.0006378,407.3485222,0,0.482021559,61.18248337,-0.482021559,118.8175166,0.9462702,0,488.4259299,124.0006378,569.5818673,5,9,17% -5/30/2018 18:00,31.53434695,111.4352775,866.8096216,880.2823532,116.521389,706.5306199,586.9884036,119.5422162,113.0078392,6.53437707,213.6815781,0,213.6815781,3.513549795,210.1680283,0.550378182,1.944912496,-0.46003747,0.46003747,0.60882473,0.134425583,4.321893804,139.0069612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6274335,2.545554866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.131197349,133.6187784,111.7586308,136.1643333,586.9884036,0,0.666818324,48.17802607,-0.666818324,131.8219739,0.975017058,0,684.082337,136.1643333,773.1991698,5,10,13% -5/30/2018 19:00,21.47733423,133.456145,958.5229204,898.7912149,122.1415382,861.3285711,735.6443002,125.6842709,118.4585202,7.225750656,236.0879975,0,236.0879975,3.683018032,232.4049794,0.374850197,2.329249137,-0.175827586,0.175827586,0.560221978,0.127426831,4.452951919,143.2222407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8668354,2.668334027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.226148507,137.6706654,117.0929839,140.3389995,735.6443002,0,0.818481854,35.06689096,-0.818481854,144.933109,0.988911291,0,844.5799384,140.3389995,936.4290068,5,11,11% -5/30/2018 20:00,16.05908664,174.4761191,994.2148669,905.2640684,124.2769797,966.9089084,838.8845265,128.0243819,120.5295703,7.494811624,244.8063146,0,244.8063146,3.747409472,241.0589051,0.280283937,3.045182745,0.071958665,-0.071958665,0.517848033,0.125000122,4.332878671,139.3602722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8576075,2.714985406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139155847,133.9583945,118.9967634,136.6733799,838.8845265,0,0.926673836,22.07787602,-0.926673836,157.922124,0.996043583,0,954.5623128,136.6733799,1044.012306,5,12,9% -5/30/2018 21:00,19.69458615,219.4892928,971.358938,901.1622345,122.912538,1013.2957,886.7669148,126.5287855,119.2062715,7.322513978,239.223487,0,239.223487,3.70626652,235.5172205,0.343735373,3.830810832,0.308382099,-0.308382099,0.477417245,0.126536683,3.98010219,128.0137679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5856024,2.685177477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.883570488,123.051703,117.4691729,125.7368805,886.7669148,0,0.984025829,10.25478647,-0.984025829,169.7452135,0.999188326,0,1003.516322,125.7368805,1085.808595,5,13,8% -5/30/2018 22:00,29.13483737,244.828338,891.5872126,885.5726506,118.0604402,994.9626728,873.7410295,121.2216434,114.5004823,6.721161017,219.7356,0,219.7356,3.559957869,216.1756421,0.508498839,4.273060601,0.555120445,-0.555120445,0.435222503,0.132416031,3.427846542,110.2513279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0622189,2.579177358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.483463151,105.97777,112.545682,108.5569474,873.7410295,0,0.986639582,9.376319093,-0.986639582,170.6236809,0.999322933,0,985.6951304,108.5569474,1056.743481,5,14,7% -5/30/2018 23:00,40.39885496,259.3346811,760.6204917,854.7080486,109.7165004,910.7415695,798.5995478,112.1420217,106.4081431,5.733878554,187.7296017,0,187.7296017,3.308357299,184.4212444,0.705093033,4.52624405,0.83976264,-0.83976264,0.38654582,0.144246049,2.723788193,87.60639124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2835546,2.396893601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.973375274,84.21059554,104.2569299,86.60748914,798.5995478,0,0.934353607,20.8760347,-0.934353607,159.1239653,0.996487069,0,900.0510527,86.60748914,956.7339222,5,15,6% -5/30/2018 0:00,52.16546419,269.6651439,588.0689649,799.5103885,97.66270928,763.3517285,664.200798,99.15093052,94.71781826,4.433112259,145.52902,0,145.52902,2.944891022,142.584129,0.910459106,4.706544639,1.212490859,-1.212490859,0.322805541,0.166073565,1.929599171,62.0625423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.04636968,2.13356352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397988031,59.65687633,92.44435771,61.79043985,664.200798,0,0.830759434,33.82317053,-0.830759434,146.1768295,0.989814105,0,749.8796762,61.79043985,790.3202833,5,16,5% -5/30/2018 1:00,63.9514442,278.3878161,387.4506179,698.1856097,80.85450007,558.1825485,476.8453435,81.33720499,78.41643857,2.920766418,96.37994957,0,96.37994957,2.438061499,93.94188807,1.116163263,4.858783988,1.799881246,-1.799881246,0.222355869,0.208683368,1.123435608,36.13355094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37686347,1.766367256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813925274,34.73294357,76.19078875,36.49931083,476.8453435,0,0.682977903,46.92321256,-0.682977903,133.0767874,0.976791189,0,541.9691189,36.49931083,565.8571879,5,17,4% -5/30/2018 2:00,75.46997446,286.6788764,178.4628506,491.3071122,55.20012485,301.1646894,246.2837236,54.88096577,53.53563742,1.345328351,44.93487173,0,44.93487173,1.664487431,43.2703843,1.317199541,5.00349029,3.094397571,-3.094397571,0.000980539,0.30930877,0.417032981,13.41321422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46049102,1.205915478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.302138975,12.8932917,51.76262999,14.09920718,246.2837236,0,0.501282635,59.91510523,-0.501282635,120.0848948,0.950255871,0,285.7951842,14.09920718,295.0228333,5,18,3% -5/30/2018 3:00,86.37270998,295.250968,13.46006763,68.58020481,9.121281084,29.50470913,20.55700065,8.947708481,8.846240806,0.101467675,3.538589511,0,3.538589511,0.275040279,3.263549233,1.507488173,5.153101512,11.10539326,-11.10539326,0,0.677654922,0.06876007,2.211560201,0.577877471,1,0.08980414,0,0.952355129,0.991117093,0.724496596,1,8.569507635,0.199265746,0.077564728,0.312029739,0.803699037,0.528195633,0.961238037,0.922476074,0.047265867,2.125835786,8.616773503,2.325101532,8.677573097,0,0.299751229,72.55733805,-0.299751229,107.442662,0.883195012,0,16.28076278,2.325101532,17.80249523,5,19,9% -5/30/2018 4:00,96.83661105,304.6679507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690117699,5.317458866,-4.823669332,4.823669332,0.644950272,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.084529126,85.15105167,-0.084529126,94.84894833,0,0,0,0,0,5,20,0% -5/30/2018 5:00,105.9013003,315.4437871,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848326372,5.50553269,-1.458799652,1.458799652,0.779623123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.120758174,96.93586097,0.120758174,83.06413903,0,0.635949354,0,0,0,5,21,0% -5/30/2018 6:00,113.2441893,327.9967225,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976483961,5.724622744,-0.484193186,0.484193186,0.612955601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305494666,107.7879267,0.305494666,72.21207335,0,0.886331021,0,0,0,5,22,0% -5/30/2018 7:00,118.217888,342.4309337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063291381,5.976547253,0.079044502,-0.079044502,0.516636284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457093758,117.1997314,0.457093758,62.80026856,0,0.940613251,0,0,0,5,23,0% -5/31/2018 8:00,120.2106707,358.2155474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098072,6.252040734,0.536858001,-0.536858001,0.438345564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565227569,124.4180956,0.565227569,55.58190441,0,0.961540054,0,0,0,5,0,0% -5/31/2018 9:00,118.9239264,14.15045095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075614075,0.24697196,1.015913289,-1.015913289,0.356422285,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622530059,128.5011291,0.622530059,51.49887092,0,0.969682593,0,0,0,5,1,0% -5/31/2018 10:00,114.5544442,28.94925937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999352223,0.505259892,1.650625195,-1.650625195,0.247880157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625098426,128.689412,0.625098426,51.31058799,0,0.970012597,0,0,0,5,2,0% -5/31/2018 11:00,107.67087,41.91744476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879211191,0.731597425,2.769378367,-2.769378367,0.056562097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572758652,124.9428199,0.572758652,55.05718014,0,0.962703196,0,0,0,5,3,0% -5/31/2018 12:00,98.93133665,53.04616776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726677558,0.925830283,6.086555794,-6.086555794,0,#DIV/0!,0,0,0.338058998,1,0.162841716,0,0.943740179,0.982502142,0.724496596,1,0,0,0.049846239,0.312029739,0.868389256,0.592885852,0.961238037,0.922476074,0,0,0,0,0,0,-0.469077169,117.9744103,0.469077169,62.02558975,0,0.943407731,0,0,0,5,4,0% -5/31/2018 13:00,88.5466104,62.7095274,1.570262243,9.153496891,1.338095569,1.309584351,0,1.309584351,1.297747051,0.0118373,3.307282952,2.886206173,0.421076779,0.040348518,0.380728261,1.545429893,1.094487725,-39.09508138,39.09508138,0,0.852147834,0.01008713,0.324436763,1,0.839119827,0,0.025573089,0.961238037,1,0.654535808,0.930039212,1.247443828,0.028197919,0.115824807,0.232607867,0.724496596,0.448993192,0.973153381,0.934391417,0.007308091,0.313703535,1.254751919,0.341901454,0,0.464333347,-0.315311865,108.3796418,0.315311865,71.6203582,0,0.891426836,1.254751919,0.75582066,1.749421424,5,5,39% -5/31/2018 14:00,77.91784714,71.40888353,135.1065437,419.2988194,47.34143828,46.93240944,0,46.93240944,45.91391925,1.018490195,91.90297272,57.71730797,34.18566476,1.427519035,32.75814572,1.359922979,1.246320133,-4.670270291,4.670270291,0.671183053,0.35040078,0.800941472,25.76103095,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.1342056,1.034232682,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.58027937,24.76248282,44.71448497,25.7967155,0,57.71730797,-0.137651969,97.91199849,0.137651969,82.08800151,0,0.686765093,44.71448497,65.43494789,87.54034967,5,6,96% -5/31/2018 15:00,66.49273951,79.69194411,341.7407499,665.5347335,76.28205536,120.2514084,43.69335231,76.55805607,73.98186994,2.576186125,85.15918677,0,85.15918677,2.30018542,82.85900135,1.160517233,1.390886812,-2.266231868,2.266231868,0.917702164,0.223216153,2.411496652,77.56202179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.11418743,1.666476507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121115,74.55556555,72.86130854,76.22204206,43.69335231,0,0.065651498,86.23573886,-0.065651498,93.76426114,0,0,72.86130854,76.22204206,122.7471106,5,7,68% -5/31/2018 16:00,54.73875261,88.21898058,546.2654308,782.5785984,94.47851049,312.6946572,216.9470428,95.74761437,91.62963481,4.117979561,135.2972538,0,135.2972538,2.84887568,132.4483781,0.955371462,1.539711674,-1.343473253,1.343473253,0.759901147,0.172953486,3.300260337,106.147717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.07789028,2.064000732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39102738,102.0332231,90.46891766,104.0972239,216.9470428,0,0.277220771,73.90559854,-0.277220771,106.0944015,0.869638335,0,279.1343827,104.0972239,347.2639337,5,8,24% -5/31/2018 17:00,42.9303508,98.01213396,726.3298102,845.2757484,107.4339501,517.4005155,407.7307145,109.669801,104.1944201,5.475380912,179.3466016,0,179.3466016,3.239529984,176.1070716,0.749275971,1.710634445,-0.821265056,0.821265056,0.670598286,0.147913453,3.938557736,126.6775555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1556398,2.347028445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853471673,121.7672848,103.0091115,124.1143132,407.7307145,0,0.482364146,61.16007771,-0.482364146,118.8399223,0.946343871,0,488.8625743,124.1143132,570.09291,5,9,17% -5/31/2018 18:00,31.47422748,111.1806914,867.4518387,880.4224013,116.5614899,706.8621961,587.2762468,119.5859493,113.0467309,6.539218373,213.8385003,0,213.8385003,3.514758987,210.3237413,0.549328899,1.940469129,-0.460750899,0.460750899,0.608946734,0.13437229,4.325650166,139.1277787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6648177,2.546430921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.13391882,133.7349128,111.7987365,136.2813437,587.2762468,0,0.667039192,48.16104258,-0.667039192,131.8389574,0.975041886,0,684.4176756,136.2813437,773.6110895,5,10,13% -5/31/2018 19:00,21.3866949,133.1437803,959.201084,898.9177297,122.1823602,861.6213719,735.8923977,125.7289742,118.4981113,7.230862939,236.253657,0,236.253657,3.684248966,232.5694081,0.373268242,2.323797345,-0.176919116,0.176919116,0.56040864,0.127379297,4.457129071,143.3565922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9048918,2.669225834,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.229174839,137.7998093,117.1340667,140.4690351,735.8923977,0,0.818642656,35.05085167,-0.818642656,144.9491483,0.98892329,0,844.8751978,140.4690351,936.8093719,5,11,11% -5/31/2018 20:00,15.92077293,174.312105,994.9954488,905.4015166,124.3233953,967.2377867,839.1625046,128.0752822,120.5745862,7.500695981,244.9969753,0,244.9969753,3.748809072,241.2481662,0.277869907,3.042320158,0.070514744,-0.070514744,0.518094958,0.124948707,4.337715269,139.5158339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9008785,2.715999411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142659946,134.1079262,119.0435385,136.8239257,839.1625046,0,0.92684018,22.05250522,-0.92684018,157.9474948,0.996053267,0,954.8940924,136.8239257,1044.442615,5,12,9% -5/31/2018 21:00,19.5576224,219.6333721,972.3011099,901.334326,122.9689933,1013.740417,887.1497757,126.5906409,119.2610244,7.329616468,239.4536299,0,239.4536299,3.707968854,235.745661,0.341344905,3.83332549,0.306513319,-0.306513319,0.477736825,0.126472131,3.985761597,128.1957939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.638233,2.686410812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.887670709,123.2266733,117.5259037,125.9130841,887.1497757,0,0.98426272,10.17826284,-0.98426272,169.8217372,0.999200555,0,1003.966452,125.9130841,1086.374047,5,13,8% -5/31/2018 22:00,29.01905876,245.0080155,892.7380036,885.8128457,118.1315265,995.6026678,874.3034065,121.2992613,114.5694251,6.729836165,220.0167661,0,220.0167661,3.562101382,216.4546647,0.506478121,4.276196564,0.552639766,-0.552639766,0.435646724,0.132324967,3.434401973,110.4621731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1284893,2.580730325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.488212538,106.1804424,112.6167018,108.7611728,874.3034065,0,0.987006918,9.246238315,-0.987006918,170.7537617,0.999341794,0,986.3446364,108.7611728,1057.526649,5,14,7% -5/31/2018 23:00,40.29356427,259.4881424,762.0103261,855.0770222,109.8080443,911.6545158,799.4132335,112.2412823,106.4969266,5.744355713,188.0693435,0,188.0693435,3.311117683,184.7582258,0.703255364,4.528922455,0.836269517,-0.836269517,0.38714318,0.144103092,2.731198399,87.84472895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3688966,2.39889349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.978743943,84.4396948,104.3476406,86.83858829,799.4132335,0,0.934902018,20.78767897,-0.934902018,159.212321,0.99651846,0,900.9776847,86.83858829,957.8118039,5,15,6% -5/31/2018 0:00,52.06301312,269.7942641,589.7062438,800.1395534,97.78487933,764.6191602,665.337401,99.28175919,94.83630443,4.445454758,145.9296811,0,145.9296811,2.9485749,142.9811062,0.908670997,4.708798211,1.20704979,-1.20704979,0.323736018,0.165819644,1.937657574,62.32172824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.16026309,2.136232477,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.403826316,59.90601571,92.56408941,62.04224818,665.337401,0,0.831526698,33.74411229,-0.831526698,146.2558877,0.98986964,0,751.1613828,62.04224818,791.7667934,5,16,5% -5/31/2018 1:00,63.84741259,278.4990193,389.3085363,699.414051,81.03255048,559.9132755,478.3893832,81.5238923,78.58912011,2.934772191,96.83579226,0,96.83579226,2.443430375,94.39236189,1.114347569,4.86072485,1.789745874,-1.789745874,0.224089119,0.208144808,1.13162157,36.3968396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54285153,1.770256989,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.819855975,34.98602665,76.36270751,36.75628364,478.3893832,0,0.683985949,46.84409014,-0.683985949,133.1559099,0.976899083,0,543.7008574,36.75628364,567.7571099,5,17,4% -5/31/2018 2:00,75.36169449,286.7765349,180.4077167,494.1812324,55.52007848,303.5485341,248.3426012,55.20593284,53.84594327,1.359989573,45.41607481,0,45.41607481,1.674135214,43.7419396,1.315309699,5.005194752,3.066590335,-3.066590335,0.005735857,0.307747803,0.423933859,13.63517016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.7587688,1.212905263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307138637,13.10664419,52.06590744,14.31954946,248.3426012,0,0.502533453,59.83224606,-0.502533453,120.1677539,0.950504136,0,288.1165771,14.31954946,297.4884359,5,18,3% -5/31/2018 3:00,86.26173909,295.3370247,14.40754179,72.95801842,9.650775238,31.44137822,21.97299933,9.468378893,9.359768757,0.108610136,3.784281794,0,3.784281794,0.291006481,3.493275313,1.505551366,5.154603483,10.75849378,-10.75849378,0,0.669841905,0.07275162,2.339942189,0.567035298,1,0.092683508,0,0.95203878,0.990800743,0.724496596,1,9.067943724,0.210833205,0.076420105,0.312029739,0.806249252,0.530745848,0.961238037,0.922476074,0.04997789,2.249241436,9.117921614,2.460074641,9.51353311,0,0.301173193,72.47191859,-0.301173193,107.5280814,0.883982568,0,17.52771904,2.460074641,19.13778869,5,19,9% -5/31/2018 4:00,96.7131375,304.7417949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687962679,5.318747689,-4.904293395,4.904293395,0.631162745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086233015,85.05306823,-0.086233015,94.94693177,0,0,0,0,0,5,20,0% -5/31/2018 5:00,105.7692293,315.5017566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846021299,5.506544448,-1.468405836,1.468405836,0.781265877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118887879,96.8279233,0.118887879,83.1720767,0,0.629435681,0,0,0,5,21,0% -5/31/2018 6:00,113.1047326,328.0317206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974049983,5.725233576,-0.486061207,0.486061207,0.613275051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303511865,107.6686565,0.303511865,72.33134345,0,0.885261795,0,0,0,5,22,0% -5/31/2018 7:00,118.0750336,342.4338268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060798101,5.976597748,0.079614324,-0.079614324,0.516538838,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.455060191,117.0688071,0.455060191,62.93119293,0,0.940124425,0,0,0,5,23,0% -6/1/2018 8:00,120.0713562,358.1801677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095640503,6.251423242,0.538859433,-0.538859433,0.438003299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563208546,124.2779818,0.563208546,55.72201819,0,0.961222938,0,0,0,6,0,0% -6/1/2018 9:00,118.7958997,14.07928407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073379587,0.245729863,1.019426685,-1.019426685,0.355821459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620589961,128.3592293,0.620589961,51.64077066,0,0.969431504,0,0,0,6,1,0% -6/1/2018 10:00,114.4429314,28.85238025,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997405958,0.503569032,1.656715456,-1.656715456,0.246838661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623296265,128.5572468,0.623296265,51.44275321,0,0.969781326,0,0,0,6,2,0% -6/1/2018 11:00,107.5772285,41.80556617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877576837,0.729644775,2.78220125,-2.78220125,0.054369254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571144011,124.8300397,0.571144011,55.1699603,0,0.962456405,0,0,0,6,3,0% -6/1/2018 12:00,98.85412954,52.92594234,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72533004,0.923731954,6.136554333,-6.136554333,0,#DIV/0!,0,0,0.341784343,1,0.161537991,0,0.943904607,0.98266657,0.724496596,1,0,0,0.050318736,0.312029739,0.867235389,0.591731985,0.961238037,0.922476074,0,0,0,0,0,0,-0.467686795,117.8842458,0.467686795,62.11575415,0,0.943090845,0,0,0,6,4,0% -6/1/2018 13:00,88.48899574,62.58311751,1.718191845,9.950286669,1.455813308,1.424867621,0,1.424867621,1.411915166,0.012952456,3.587489497,3.126995849,0.460493648,0.043898143,0.416595505,1.544424328,1.092281457,-37.5930266,37.5930266,0,0.847293806,0.010974536,0.352978791,1,0.832184915,0,0.026594407,0.961238037,1,0.651848226,0.927351631,1.357186562,0.030644497,0.115824807,0.229561689,0.724496596,0.448993192,0.9735838,0.934821837,0.007951014,0.341358362,1.365137576,0.372002858,0,0.524757074,-0.314261885,108.3162602,0.314261885,71.68373975,0,0.890897028,1.365137576,0.839507376,1.914578363,6,5,40% -6/1/2018 14:00,77.86535249,71.27500542,136.0208492,420.9944266,47.52369374,47.11606165,0,47.11606165,46.09067903,1.025382617,91.98920352,57.57635912,34.41284439,1.43301471,32.97982968,1.359006774,1.243983519,-4.649708189,4.649708189,0.67469938,0.349385363,0.808365159,25.99980225,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.30411383,1.038214279,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585657806,24.99199887,44.88977164,26.03021315,0,57.57635912,-0.136762759,97.86056405,0.136762759,82.13943595,0,0.684403397,44.88977164,65.4356689,87.71610822,6,6,95% -6/1/2018 15:00,66.44739325,79.546464,342.5612427,666.1652492,76.36766495,120.8186029,44.17133346,76.64726943,74.06489809,2.582371346,85.36070621,0,85.36070621,2.302766865,83.05793934,1.159725792,1.388347705,-2.262310421,2.262310421,0.917031557,0.222931422,2.415880261,77.70301374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19399724,1.668346755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750297025,74.69109239,72.94429426,76.35943914,44.17133346,0,0.066306871,86.19810674,-0.066306871,93.80189326,0,0,72.94429426,76.35943914,122.92002,6,7,69% -6/1/2018 16:00,54.69694178,88.05446574,546.954795,782.8720826,94.53209018,313.1832966,217.3785214,95.80477516,91.68159888,4.123176279,135.4660138,0,135.4660138,2.850491305,132.6155225,0.954641725,1.536840348,-1.342657832,1.342657832,0.759761702,0.172833461,3.303830721,106.2625528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12784012,2.065171247,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393614111,102.1436077,90.52145423,104.2087789,217.3785214,0,0.277667995,73.87892746,-0.277667995,106.1210725,0.869928833,0,279.6252976,104.2087789,347.8278592,6,8,24% -6/1/2018 17:00,42.88679707,97.81606249,726.9337564,845.4475378,107.4745644,517.7653572,408.0516137,109.7137435,104.2338098,5.479933714,179.49426,0,179.49426,3.240754657,176.2535054,0.748515815,1.707212352,-0.821502118,0.821502118,0.670638826,0.147846435,3.941901,126.7850864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1935027,2.347915717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855893856,121.8706475,103.0493965,124.2185632,408.0516137,0,0.482645694,61.14166049,-0.482645694,118.8583395,0.946404338,0,489.2312141,124.2185632,570.5297793,6,9,17% -6/1/2018 18:00,31.41967771,110.9331836,868.033614,880.5491316,116.5978069,707.1359912,587.5104343,119.6255569,113.0819529,6.543604041,213.9806535,0,213.9806535,3.515854079,210.4647995,0.548376826,1.936149304,-0.461499593,0.461499593,0.609074768,0.134324069,4.329153132,139.2404461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6986744,2.547224312,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.136456707,133.843213,111.8351311,136.3904374,587.5104343,0,0.667209146,48.14797093,-0.667209146,131.8520291,0.975060979,0,684.6936305,136.3904374,773.9584439,6,10,13% -6/1/2018 19:00,21.30255867,132.8365727,959.8281511,899.0345873,122.2200977,861.866267,736.0959662,125.7703008,118.5347108,7.235590036,236.4068346,0,236.4068346,3.685386889,232.7214477,0.371799788,2.31843556,-0.178017138,0.178017138,0.560596413,0.127335396,4.461088876,143.4839531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9400727,2.670050255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.232043704,137.9222334,117.1721164,140.5922837,736.0959662,0,0.818762678,35.03887581,-0.818762678,144.9611242,0.988932243,0,845.1211515,140.5922837,937.1359894,6,11,11% -6/1/2018 20:00,15.78906073,174.1417608,995.7326677,905.5311722,124.3672215,967.5282682,839.4049239,128.1233444,120.6170909,7.506253448,245.1770441,0,245.1770441,3.750130594,241.4269135,0.275571096,3.039347091,0.069085735,-0.069085735,0.518339333,0.124900212,4.342359007,139.6651924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9417357,2.71695685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146024319,134.2514954,119.08776,136.9684522,839.4049239,0,0.926975183,22.03189421,-0.926975183,157.9681058,0.996061123,0,955.1863714,136.9684522,1044.829484,6,12,9% -6/1/2018 21:00,19.42528543,219.7651304,973.205465,901.499263,123.0231652,1014.154712,887.504715,126.6499967,119.3135628,7.336433879,239.6745347,0,239.6745347,3.709602337,235.9649324,0.339035189,3.835625107,0.304679972,-0.304679972,0.478050346,0.12641027,3.991241166,128.3720357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6887349,2.687594265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891640638,123.3960836,117.5803755,126.0836778,887.504715,0,0.984476362,10.10875813,-0.984476362,169.8912419,0.999211579,0,1004.385363,126.0836778,1086.904609,6,13,8% -6/1/2018 22:00,28.90638386,245.1768192,893.853952,886.0453119,118.2004278,996.2177077,874.8432103,121.3744974,114.6362488,6.738248655,220.2894183,0,220.2894183,3.564179011,216.7252393,0.504511573,4.279142744,0.550219746,-0.550219746,0.436060571,0.132236846,3.440779828,110.6673069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1927227,2.582235561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492833273,106.3776248,112.685556,108.9598604,874.8432103,0,0.987357191,9.120487272,-0.987357191,170.8795127,0.999359765,0,986.9686612,108.9598604,1058.280711,6,14,7% -6/1/2018 23:00,40.190679,259.6327096,763.3655563,855.4358457,109.8972388,912.5445345,800.2065309,112.3380036,106.5834316,5.754572011,188.4006243,0,188.4006243,3.313807227,185.0868171,0.701459677,4.531445629,0.832875772,-0.832875772,0.387723544,0.143964105,2.738424591,88.07714813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.4520485,2.400842055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983979294,84.66310496,104.4360278,87.06394701,800.2065309,0,0.935437222,20.70110366,-0.935437222,159.2988963,0.996549059,0,901.881093,87.06394701,958.862705,6,15,6% -6/1/2018 0:00,51.96274564,269.9158405,591.3065593,800.7521709,97.90411648,765.861097,666.4516322,99.40946475,94.95194614,4.457518613,146.3212915,0,146.3212915,2.95217034,143.3691212,0.906921,4.71092012,1.201781939,-1.201781939,0.324636874,0.165572519,1.945521656,62.57466413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.2714223,2.138837361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409523817,60.14914731,92.68094612,62.28798467,666.4516322,0,0.832282017,33.66612502,-0.832282017,146.333875,0.98992421,0,752.4175514,62.28798467,793.1837916,6,16,5% -6/1/2018 1:00,63.74562117,278.6035213,391.1253236,700.6084253,81.20611951,561.6091381,479.9032148,81.70592329,78.75745539,2.948467901,97.28152712,0,97.28152712,2.448664122,94.832863,1.112570973,4.862548755,1.779970743,-1.779970743,0.225760765,0.207621738,1.139611329,36.65381772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.70466181,1.774048821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.825644528,35.23304379,76.53030633,37.00709261,479.9032148,0,0.68498065,46.76591457,-0.68498065,133.2340854,0.977005237,0,545.3982606,37.00709261,569.6186626,6,17,4% -6/1/2018 2:00,75.25589793,286.8680069,182.3096547,496.9659035,55.83063915,305.8765381,250.3550715,55.52146657,54.14713939,1.374327185,45.88658624,0,45.88658624,1.683499763,44.20308648,1.313463201,5.006791238,3.039958992,-3.039958992,0.010290084,0.306240716,0.430686045,13.85234368,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.04828996,1.219689848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312030574,13.31539965,52.36032054,14.53508949,250.3550715,0,0.503767099,59.7504562,-0.503767099,120.2495438,0.950747786,0,290.3848504,14.53508949,299.8977758,6,18,3% -6/1/2018 3:00,86.15341965,295.4172153,15.361199,77.31696533,10.17438485,33.37763303,23.39424422,9.983388813,9.867589606,0.115799207,4.031295785,0,4.031295785,0.306795243,3.724500542,1.503660835,5.156003075,10.43984571,-10.43984571,0,0.662343145,0.076698811,2.466897402,0.55657348,1,0.095495506,0,0.951727967,0.99048993,0.724496596,1,9.560865938,0.222272109,0.07530668,0.312029739,0.808739994,0.53323659,0.961238037,0.922476074,0.052659446,2.371275615,9.613525384,2.593547724,10.37362829,0,0.30257582,72.38762126,-0.30257582,107.6123787,0.884752162,0,18.79161545,2.593547724,20.48904056,6,19,9% -6/1/2018 4:00,96.59316006,304.810022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685868678,5.319938477,-4.985936652,4.985936652,0.617200926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087904878,84.95691234,-0.087904878,95.04308766,0.481203351,0,0,0,0,6,20,0% -6/1/2018 5:00,105.6413704,315.5544408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84378974,5.507463962,-1.478045738,1.478045738,0.782914397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117059157,96.72240838,0.117059157,83.27759162,0,0.622865539,0,0,0,6,21,0% -6/1/2018 6:00,112.970294,328.0620641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971703587,5.72576317,-0.488016139,0.488016139,0.613609364,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301580846,107.5525772,0.301580846,72.44742282,0,0.884206978,0,0,0,6,22,0% -6/1/2018 7:00,117.9379692,342.4332147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058405876,5.976587064,0.080054916,-0.080054916,0.516463493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453088573,116.9420169,0.453088573,63.05798305,0,0.939646301,0,0,0,6,23,0% -6/2/2018 8:00,119.9383808,358.1429609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093319644,6.25077386,0.540683696,-0.540683696,0.437691332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561260903,124.1430425,0.561260903,55.85695748,0,0.960914871,0,0,0,6,0,0% -6/2/2018 9:00,118.6744001,14.00813321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071259019,0.244488047,1.022686196,-1.022686196,0.35526405,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618729285,128.2233994,0.618729285,51.77660062,0,0.969189214,0,0,0,6,1,0% -6/2/2018 10:00,114.3378008,28.75706238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995571083,0.501905422,1.662395443,-1.662395443,0.245867326,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621579627,128.4315792,0.621579627,51.56842081,0,0.969559783,0,0,0,6,2,0% -6/2/2018 11:00,107.4896363,41.69632541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876048064,0.727738164,2.79418319,-2.79418319,0.052320222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.569618633,124.7236362,0.569618633,55.27636381,0,0.962221973,0,0,0,6,3,0% -6/2/2018 12:00,98.78258841,52.80906541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724081411,0.921692066,6.183453441,-6.183453441,0,#DIV/0!,0,0,0.345240839,1,0.160333755,0,0.944056147,0.98281811,0.724496596,1,0,0,0.050755842,0.312029739,0.866169525,0.590666121,0.961238037,0.922476074,0,0,0,0,0,0,-0.466386806,117.8000107,0.466386806,62.19998929,0,0.94279285,0,0,0,6,4,0% -6/2/2018 13:00,88.43607272,62.46057503,1.861529544,10.72062437,1.568939145,1.535662837,0,1.535662837,1.521629841,0.014032996,3.857330053,3.358671359,0.498658694,0.047309304,0.45134939,1.543500647,1.090142687,-36.3100896,36.3100896,0,0.842822586,0.011827326,0.38040746,1,0.825770153,0,0.027533595,0.961238037,1,0.649384007,0.924887411,1.462648481,0.032992795,0.115824807,0.226769056,0.724496596,0.448993192,0.973976634,0.935214671,0.008568857,0.367938899,1.471217339,0.400931695,0,0.585180799,-0.313290648,108.2576526,0.313290648,71.74234742,0,0.89040379,1.471217339,0.921978896,2.074634086,6,5,41% -6/2/2018 14:00,77.81786401,71.14546826,136.848674,422.5222679,47.68800741,47.28166115,0,47.28166115,46.25003804,1.03162311,92.06365266,57.44513789,34.61851477,1.437969374,33.1805454,1.358177944,1.241722669,-4.631249191,4.631249191,0.677856054,0.348472557,0.815100253,26.21642602,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.45729577,1.041803916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.590537358,25.20022588,45.04783313,26.24202979,0,57.44513789,-0.135957658,97.81400023,0.135957658,82.18599977,0,0.682238442,45.04783313,65.43331118,87.87262663,6,6,95% -6/2/2018 15:00,66.40690278,79.40586483,343.2937446,666.7266708,76.44397548,121.3202962,44.59349535,76.72680083,74.13890757,2.587893254,85.54061079,0,85.54061079,2.305067909,83.23554288,1.1590191,1.385893787,-2.258877941,2.258877941,0.916444568,0.222678032,2.419810952,77.82943827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26513797,1.670013853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.753144798,74.81261645,73.01828277,76.4826303,44.59349535,0,0.066884223,86.16495333,-0.066884223,93.83504667,0,0,73.01828277,76.4826303,123.0746346,6,7,69% -6/2/2018 16:00,54.65995677,87.89553087,547.5643215,783.1311586,94.57943312,313.6013361,217.7460507,95.8552854,91.72751425,4.127771148,135.6152281,0,135.6152281,2.85191887,132.7633092,0.953996215,1.534066411,-1.342029076,1.342029076,0.759654178,0.172727531,3.307040294,106.3657837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.17197573,2.066205513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395939436,102.2428372,90.56791516,104.3090427,217.7460507,0,0.278045444,73.85641472,-0.278045444,106.1435853,0.870173281,0,280.0447105,104.3090427,348.3128927,6,8,24% -6/2/2018 17:00,42.84824305,97.62648265,727.4679707,845.5993173,107.5104767,518.064649,408.312049,109.7526,104.2686391,5.483960847,179.6248694,0,179.6248694,3.241837543,176.3830318,0.74784292,1.703903559,-0.821821907,0.821821907,0.670693513,0.147787231,3.944946498,126.88304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.226982,2.348700264,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858100309,121.9648043,103.0850823,124.3135046,408.312049,0,0.482867051,61.12717831,-0.482867051,118.8728217,0.946451829,0,489.5327679,124.3135046,570.8934703,6,9,17% -6/2/2018 18:00,31.37063952,110.6930327,868.5558408,880.6627793,116.6303987,707.353031,587.6919283,119.6611027,113.1135619,6.547540808,214.1082562,0,214.1082562,3.516836842,210.5914194,0.547520948,1.93195788,-0.462282439,0.462282439,0.609208643,0.134280829,4.332405809,139.3450634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7290582,2.54793632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.138813261,133.9437752,111.8678714,136.4917115,587.6919283,0,0.667329132,48.13874088,-0.667329132,131.8612591,0.975074453,0,684.9112572,136.4917115,774.2423525,6,10,13% -6/2/2018 19:00,21.22489248,132.5350331,960.4049104,899.1419638,122.2548001,862.0642992,736.2559945,125.8083046,118.5683668,7.239937891,236.547723,0,236.547723,3.686433294,232.8612897,0.370444257,2.313172702,-0.179120642,0.179120642,0.560785123,0.127295059,4.46483355,143.6043947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9724241,2.670808372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234756708,138.0380065,117.2071808,140.7088148,736.2559945,0,0.818842879,35.03087128,-0.818842879,144.9691287,0.988938225,0,845.3188769,140.7088148,937.409982,6,11,11% -6/2/2018 20:00,15.66400212,173.9653496,996.4271274,905.6531683,124.4084962,967.7813097,839.6127001,128.1686096,120.657121,7.511488579,245.3466685,0,245.3466685,3.751375179,241.5952933,0.273388411,3.036268135,0.067672646,-0.067672646,0.518580986,0.124854586,4.346810986,139.8083834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9802141,2.717858547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149249762,134.389136,119.1294639,137.1069945,839.6127001,0,0.927079736,22.01591939,-0.927079736,157.9840806,0.996067206,0,955.4401406,137.1069945,1045.173926,6,12,9% -6/2/2018 21:00,19.29761358,219.8842959,974.072356,901.6571406,123.075077,1014.539362,887.8324836,126.7068782,119.3639094,7.34296887,239.8862878,0,239.8862878,3.711167671,236.1751201,0.336806895,3.837704937,0.302883124,-0.302883124,0.478357625,0.126351062,3.996540728,128.5424878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7371299,2.688728344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.895480153,123.5599287,117.6326101,126.248657,887.8324836,0,0.984667501,10.04617105,-0.984667501,169.953829,0.999221438,0,1004.773861,126.248657,1087.401082,6,13,8% -6/2/2018 22:00,28.79683982,245.334583,894.9351112,886.2701039,118.2671506,996.8083069,875.3609483,121.4473586,114.7009597,6.746398891,220.5535699,0,220.5535699,3.56619095,216.9873789,0.502599669,4.281896242,0.547861544,-0.547861544,0.436463848,0.132151649,3.446978599,110.8666807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2549253,2.583693204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497324261,106.5692705,112.7522496,109.1529637,875.3609483,0,0.987690936,8.999049404,-0.987690936,171.0009506,0.999376877,0,987.5677401,109.1529637,1059.006172,6,14,7% -6/2/2018 23:00,40.09023463,259.7682924,764.6859094,855.7845235,109.9840716,913.4118161,800.9796446,112.4321715,106.6676461,5.76452539,188.7233775,0,188.7233775,3.316425558,185.406952,0.699706592,4.533811994,0.829582662,-0.829582662,0.388286699,0.143829081,2.745463942,88.30355783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.5329987,2.402739027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.98907928,84.88073858,104.522078,87.2834776,800.9796446,0,0.935959488,20.61628612,-0.935959488,159.3837139,0.996578884,0,902.7614786,87.2834776,959.8867691,6,15,6% -6/2/2018 0:00,51.8647077,270.029819,592.8693073,801.3481843,98.02038877,767.0773729,667.5433612,99.53401166,95.06471239,4.469299267,146.7037039,0,146.7037039,2.955676378,143.7480276,0.905209915,4.71290942,1.196688454,-1.196688454,0.325507911,0.165332203,1.953187353,62.82121932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37981751,2.141377474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.415077589,60.38614553,92.7948951,62.52752301,667.5433612,0,0.833025362,33.58921821,-0.833025362,146.4107818,0.989977818,0,753.6480152,62.52752301,794.5710284,6,16,5% -6/2/2018 1:00,63.64612523,278.7012894,392.9000557,701.7686482,81.37516027,563.2696356,481.38639,81.88324553,78.92139895,2.961846581,97.71692867,0,97.71692867,2.453761325,95.26316734,1.110834441,4.864255129,1.77055522,-1.77055522,0.227370915,0.207114148,1.147399608,36.90431556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.86225059,1.777741727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83128711,35.47383184,76.6935377,37.25157357,481.38639,0,0.685961665,46.68871638,-0.685961665,133.3112836,0.977109629,0,547.0608148,37.25157357,571.4412247,6,17,4% -6/2/2018 2:00,75.15264821,286.9532751,184.1673536,499.6613297,56.13178775,308.1479756,252.320437,55.82753855,54.43920724,1.388331304,46.34608761,0,46.34608761,1.692580505,44.6535071,1.311661153,5.00827945,3.014480979,-3.014480979,0.014647081,0.304786851,0.437282287,14.06450149,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3290367,1.226268814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316809528,13.5193338,52.64584623,14.74560262,252.320437,0,0.504982919,59.66978147,-0.504982919,120.3302185,0.95098675,0,292.5992386,14.74560262,302.2499406,6,18,3% -6/2/2018 3:00,86.04783779,295.4915377,16.31759022,81.64169706,10.69055411,35.30684264,24.81563929,10.49120334,10.36819446,0.123008888,4.278748318,0,4.278748318,0.32235965,3.956388668,1.501818084,5.157300244,10.14671303,-10.14671303,0,0.655155201,0.080589913,2.592048614,0.546492754,1,0.098236848,0,0.951423193,0.990185156,0.724496596,1,10.04680141,0.233548469,0.074225396,0.312029739,0.811168309,0.535664905,0.961238037,0.922476074,0.055302855,2.491575721,10.10210426,2.72512419,11.25407223,0,0.303957906,72.30451996,-0.303957906,107.69548,0.885503539,0,20.06762505,2.72512419,21.85116433,6,19,9% -6/2/2018 4:00,96.47675133,304.8726455,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683836962,5.321031464,-5.068468172,5.068468172,0.603087205,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089543564,84.8626508,-0.089543564,95.1373492,0.491612575,0,0,0,0,6,20,0% -6/2/2018 5:00,105.5177959,315.6018713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841632959,5.508291779,-1.487704702,1.487704702,0.784566177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115273324,96.61939018,0.115273324,83.38060982,0,0.616248301,0,0,0,6,21,0% -6/2/2018 6:00,112.8409408,328.0878016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969445948,5.726212374,-0.490055437,0.490055437,0.613958105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299703013,107.4397663,0.299703013,72.56023374,0,0.883168177,0,0,0,6,22,0% -6/2/2018 7:00,117.8067521,342.4291572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056115705,5.976516248,0.080365624,-0.080365624,0.516410358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.451180317,116.8194371,0.451180317,63.18056291,0,0.939179563,0,0,0,6,23,0% -6/3/2018 8:00,119.8117891,358.1039885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091110202,6.250093664,0.542328378,-0.542328378,0.437410075,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559385976,124.0133445,0.559385976,55.98665551,0,0.960616279,0,0,0,6,0,0% -6/3/2018 9:00,118.5594599,13.93705601,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069252934,0.243247515,1.025687368,-1.025687368,0.354750819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616949214,128.0936906,0.616949214,51.90630941,0,0.968956052,0,0,0,6,1,0% -6/3/2018 10:00,114.2390735,28.66336184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993847967,0.500270039,1.667656477,-1.667656477,0.244967636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619949477,128.3124451,0.619949477,51.68755486,0,0.969348267,0,0,0,6,2,0% -6/3/2018 11:00,107.4081033,41.58978124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.874625045,0.725878618,2.805300854,-2.805300854,0.05041899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568183214,124.6236327,0.568183214,55.3763673,0,0.962000216,0,0,0,6,3,0% -6/3/2018 12:00,98.71671165,52.69560084,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722931645,0.919711736,6.227092646,-6.227092646,0,#DIV/0!,0,0,0.348424631,1,0.159229103,0,0.944194868,0.982956831,0.724496596,1,0,0,0.051157364,0.312029739,0.865191762,0.589688358,0.961238037,0.922476074,0,0,0,0,0,0,-0.465177593,117.7217162,0.465177593,62.2782838,0,0.942514169,0,0,0,6,4,0% -6/3/2018 13:00,88.38786703,62.34197046,1.998396158,11.4546666,1.676138405,1.640661402,0,1.640661402,1.625596648,0.015064754,4.113500755,3.578424712,0.535076042,0.050541757,0.484534285,1.542659298,1.088072647,-35.21407849,35.21407849,0,0.838741807,0.012635439,0.406399162,1,0.819888482,0,0.028390103,0.961238037,1,0.647142769,0.922646174,1.56258533,0.035215682,0.115824807,0.224229441,0.724496596,0.448993192,0.974332413,0.93557045,0.009154333,0.39313061,1.571739663,0.428346292,0,0.644515507,-0.312398853,108.2038562,0.312398853,71.79614385,0,0.889948196,1.571739663,1.001931705,2.227483925,6,5,42% -6/3/2018 14:00,77.77535796,71.02035156,137.5902117,423.8849416,47.83463179,47.42945429,0,47.42945429,46.39224115,1.037213134,92.12742556,57.32469513,34.80273043,1.44239064,33.3603398,1.357436073,1.239538971,-4.614839827,4.614839827,0.680662221,0.347660137,0.821144251,26.41082179,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.59398681,1.045007108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.594916215,25.38708649,45.18890303,26.43209359,0,57.32469513,-0.135236451,97.77229292,0.135236451,82.22770708,0,0.680277195,45.18890303,65.4287764,88.0107286,6,6,95% -6/3/2018 15:00,66.37123253,79.27023994,343.9389423,667.2200293,76.51109892,121.7567537,44.95998971,76.79676402,74.20400699,2.592757028,85.69907048,0,85.69907048,2.307091928,83.39197856,1.158396536,1.383526686,-2.255927198,2.255927198,0.915939961,0.22245547,2.423293331,77.94144354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32771401,1.671480248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755667769,74.92028018,73.08338178,76.59176042,44.95998971,0,0.067384053,86.13625043,-0.067384053,93.86374957,0,0,73.08338178,76.59176042,123.2111571,6,7,69% -6/3/2018 16:00,54.62775102,87.74229333,548.0948766,783.356349,94.62061821,313.949479,218.0502508,95.89922815,91.76745746,4.131770696,135.7451092,0,135.7451092,2.853160752,132.8919485,0.953434118,1.531391912,-1.341584425,1.341584425,0.759578138,0.172635473,3.309893248,106.4575445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21037065,2.067105252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.398006391,102.3310411,90.60837704,104.3981464,218.0502508,0,0.278353844,73.83801849,-0.278353844,106.1619815,0.870372518,0,280.393323,104.3981464,348.7198218,6,8,24% -6/3/2018 17:00,42.81463214,97.44355926,727.9333836,845.7314155,107.541754,518.2993287,408.512886,109.7864427,104.2989734,5.487469326,179.7386572,0,179.7386572,3.242780671,176.4958766,0.747256299,1.700710944,-0.822222924,0.822222924,0.670762091,0.147735708,3.94769798,126.9715372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2561404,2.349383557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.860093748,122.0498711,103.1162341,124.3992547,408.512886,0,0.483029102,61.11657497,-0.483029102,118.883425,0.946486568,0,489.7681937,124.3992547,571.1850179,6,9,17% -6/3/2018 18:00,31.32705133,110.4605119,869.0194182,880.7635757,116.6593239,707.5143633,587.821713,119.6926503,113.1416149,6.551035449,214.2215281,0,214.2215281,3.517709044,210.7038191,0.546760191,1.927899626,-0.463098272,0.463098272,0.609348158,0.134242482,4.335411265,139.4417292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7560238,2.548568227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140990703,134.036694,111.8970145,136.5852622,587.821713,0,0.667400116,48.13327972,-0.667400116,131.8667203,0.975082422,0,685.0716343,136.5852622,774.4639567,6,10,13% -6/3/2018 19:00,21.15365852,132.2396733,960.9321409,899.2400309,122.2865162,862.2165166,736.3734777,125.8430389,118.5991265,7.243912378,236.6765125,0,236.6765125,3.687389651,232.9891229,0.36920099,2.308017701,-0.180228571,0.180228571,0.56097459,0.127258222,4.468365218,143.7179853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0019915,2.67150125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.237315389,138.1471941,117.2393069,140.8186953,736.3734777,0,0.818884227,35.02674392,-0.818884227,144.9732561,0.988941308,0,845.469457,140.8186953,937.6324767,6,11,11% -6/3/2018 20:00,15.54564689,173.7831705,997.0794093,905.7676321,124.4472556,967.9978571,839.7867397,128.2111175,120.6947117,7.516405756,245.5059905,0,245.5059905,3.752543919,241.7534466,0.271322723,3.03308851,0.066276525,-0.066276525,0.518819736,0.12481178,4.35107217,139.9454377,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0163477,2.718705295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152336976,134.5208778,119.1686847,137.2395831,839.7867397,0,0.927154725,22.00445494,-0.927154725,157.9955451,0.996071569,0,955.6563798,137.2395831,1045.476942,6,12,9% -6/3/2018 21:00,19.17464809,219.9906152,974.9021025,901.8080461,123.12475,1014.895117,888.1338087,126.7613084,119.4120845,7.349223849,240.0889673,0,240.0889673,3.712665496,236.3763018,0.334660742,3.839560559,0.301123873,-0.301123873,0.478658475,0.126294476,4.00165995,128.7071396,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7834377,2.689813513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.899189011,123.7181982,117.6826267,126.4080117,888.1338087,0,0.984836865,9.99038995,-0.984836865,170.0096101,0.99923017,0,1005.132724,126.4080117,1087.864239,6,13,8% -6/3/2018 22:00,28.69045749,245.4811498,895.9814939,886.4872658,118.3316987,997.3749405,875.8570922,121.5178483,114.7635614,6.754286965,220.8092238,0,220.8092238,3.568137312,217.2410865,0.500742947,4.284454315,0.545566359,-0.545566359,0.436856347,0.132069356,3.452996603,111.0602403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3151004,2.585103336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.501684284,106.7553274,112.8167847,109.3404307,875.8570922,0,0.988008656,8.881912623,-0.988008656,171.1180874,0.999393156,0,988.1423682,109.3404307,1059.703493,6,14,7% -6/3/2018 23:00,39.99227004,259.8948058,765.9710674,856.1230466,110.0685274,914.2565023,801.7327337,112.5237686,106.7495552,5.774213453,189.0375256,0,189.0375256,3.318972211,185.7185534,0.697996788,4.53602007,0.826391489,-0.826391489,0.388832422,0.143698022,2.752313454,88.52386168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6117329,2.404584068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.994041728,85.09250302,104.6057746,87.49708709,801.7327337,0,0.936469047,20.53320938,-0.936469047,159.4667906,0.996607952,0,903.6189926,87.49708709,960.8840862,6,15,6% -6/3/2018 0:00,51.76894811,270.1361496,594.3938391,801.9275175,98.13366077,768.2677671,668.6124064,99.65536065,95.17456882,4.480791832,147.0767599,0,147.0767599,2.959091947,144.1176679,0.903538595,4.714765239,1.191770542,-1.191770542,0.326348924,0.165098718,1.96065046,63.0612585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48541569,2.143852042,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.420484584,60.61688032,92.90590027,62.76073236,668.6124064,0,0.833756657,33.51340603,-0.833756657,146.486594,0.990030464,0,754.8525511,62.76073236,795.9281953,6,16,5% -6/3/2018 1:00,63.54898244,278.7922938,394.6317688,702.8946036,81.53962162,564.8942095,482.8384073,82.05580215,79.08090118,2.974900967,98.14176168,0,98.14176168,2.458720441,95.68304124,1.10913898,4.865843456,1.761498844,-1.761498844,0.228919646,0.206622041,1.154981034,37.14816026,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.01557021,1.78133459,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.836779827,35.70822464,76.85235003,37.48955923,482.8384073,0,0.686928602,46.61252985,-0.686928602,133.3874702,0.977212232,0,548.6879475,37.48955923,573.2241143,6,17,4% -6/3/2018 2:00,75.05201048,287.0323257,185.9794786,502.2676521,56.42349787,310.3620628,254.2379497,56.12411309,54.72212122,1.401991868,46.79425442,0,46.79425442,1.701376641,45.09287778,1.309904693,5.009659143,2.990135247,-2.990135247,0.018810447,0.303385612,0.44371534,14.2714106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.60098438,1.232641585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321470253,13.7182227,52.92245463,14.95086429,254.2379497,0,0.506180218,59.59027075,-0.506180218,120.4097293,0.951220952,0,294.7589192,14.95086429,304.5439608,6,18,3% -6/3/2018 3:00,85.94507925,295.5599922,17.2733155,85.91773344,11.1978445,37.22265212,26.2322504,10.99040172,10.86018817,0.130213549,4.525771654,0,4.525771654,0.337656327,4.188115326,1.500024609,5.158495001,9.87672392,-9.87672392,0,0.648274183,0.084414082,2.715047043,0.536793763,1,0.100904289,0,0.951124958,0.989886921,0.724496596,1,10.52438834,0.24463086,0.073177171,0.312029739,0.813531289,0.538027884,0.961238037,0.922476074,0.057901003,2.60980649,10.58228934,2.854437349,12.150942,0,0.305318231,72.22268953,-0.305318231,107.7773105,0.886236442,0,21.35089694,2.854437349,23.2190691,6,19,9% -6/3/2018 4:00,96.36398447,304.9296819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.681868809,5.322026936,-5.151739548,5.151739548,0.588846961,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091147891,84.77035217,-0.091147891,95.22964783,0.501440953,0,0,0,0,6,20,0% -6/3/2018 5:00,105.3985782,315.6440816,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839552217,5.509028489,-1.497367158,1.497367158,0.786218555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113531712,96.51894371,0.113531712,83.48105629,0,0.609594417,0,0,0,6,21,0% -6/3/2018 6:00,112.7167397,328.1089838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96727823,5.726582073,-0.492176231,0.492176231,0.614320782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297879774,107.3303018,0.297879774,72.66969815,0,0.882147046,0,0,0,6,22,0% -6/3/2018 7:00,117.6814385,342.4217164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053928571,5.976386382,0.080546049,-0.080546049,0.516379504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.449336823,116.7011432,0.449336823,63.29885685,0,0.9387249,0,0,0,6,23,0% -6/4/2018 8:00,119.6916242,358.0633142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08901293,6.249383764,0.543791351,-0.543791351,0.437159892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557585076,123.8889536,0.557585076,56.1110464,0,0.960327586,0,0,0,6,0,0% -6/4/2018 9:00,118.4511094,13.86611261,0,0,0,0,0,0,0,0,0,0,0,0,0,2.067361862,0.242009319,1.02842615,-1.02842615,0.35428246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615250896,127.9701531,0.615250896,52.02984692,0,0.968732341,0,0,0,6,1,0% -6/4/2018 10:00,114.1467681,28.57133718,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992236934,0.498663906,1.672490592,-1.672490592,0.244140954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618406732,128.1998788,0.618406732,51.80012124,0,0.969147064,0,0,0,6,2,0% -6/4/2018 11:00,107.3326365,41.48599442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873307901,0.724067196,2.815532718,-2.815532718,0.048669238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566838392,124.5300502,0.566838392,55.46994984,0,0.961791437,0,0,0,6,3,0% -6/4/2018 12:00,98.65649454,52.58561384,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721880658,0.917792101,6.267321414,-6.267321414,0,#DIV/0!,0,0,0.351332303,1,0.158224068,0,0.944320841,0.983082804,0.724496596,1,0,0,0.051523149,0.312029739,0.864302139,0.588798734,0.961238037,0.922476074,0,0,0,0,0,0,-0.464059488,117.6493707,0.464059488,62.35062927,0,0.942255193,0,0,0,6,4,0% -6/4/2018 13:00,88.34439658,62.22737493,2.127037505,12.14328218,1.77619732,1.738672924,0,1.738672924,1.722638417,0.016034507,4.352973428,3.783689656,0.569283772,0.053558903,0.515724869,1.541900596,1.086072577,-34.27969326,34.27969326,0,0.835056888,0.013389726,0.430659604,1,0.814551288,0,0.029163519,0.961238037,1,0.645123921,0.920627325,1.65586557,0.037288547,0.115824807,0.221942084,0.724496596,0.448993192,0.974651657,0.935889694,0.009700811,0.416647362,1.665566381,0.45393591,0,0.701680372,-0.311587065,108.1549005,0.311587065,71.84509954,0,0.889531208,1.665566381,1.078102498,2.371162904,6,5,42% -6/4/2018 14:00,77.73780733,70.89973473,138.2457404,425.0849377,47.96381053,47.55967946,0,47.55967946,46.51752468,1.042154786,92.18151481,57.21594864,34.96556617,1.446285855,33.51928032,1.356780691,1.23743381,-4.60043119,4.60043119,0.683126243,0.346946028,0.826495792,26.58294573,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7144141,1.047829179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.598793388,25.55253857,45.31320749,26.60036775,0,57.21594864,-0.134598861,97.73542464,0.134598861,82.26457536,0,0.678525833,45.31320749,65.42286694,88.13116544,6,6,94% -6/4/2018 15:00,66.34034384,79.13968176,344.4975735,667.6463269,76.56914706,122.1283108,45.27103784,76.85727299,74.26030477,2.596968226,85.83626745,0,85.83626745,2.308842294,83.52742516,1.157857427,1.381248016,-2.25345123,2.25345123,0.915516546,0.222263241,2.426332123,78.03918153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38182957,1.672748382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.757869363,75.01422965,73.13969893,76.68697804,45.27103784,0,0.067806915,86.11196666,-0.067806915,93.88803334,0,0,73.13969893,76.68697804,123.3297923,6,7,69% -6/4/2018 16:00,54.60027502,87.5948685,548.5473613,783.5481686,94.65572535,314.2284789,218.2917912,95.93668771,91.80150599,4.135181717,135.855878,0,135.855878,2.854219362,133.0016586,0.952954572,1.528818863,-1.341321304,1.341321304,0.759533142,0.17255707,3.312393853,106.5379726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2430994,2.067872211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39981807,102.4083516,90.64291747,104.4762238,218.2917912,0,0.278593965,73.82369393,-0.278593965,106.1763061,0.87052734,0,280.6718898,104.4762238,349.0494887,6,8,24% -6/4/2018 17:00,42.78590482,97.2674535,728.330945,845.844157,107.5684643,518.4703697,408.6550251,109.8153446,104.3248783,5.490466312,179.835856,0,179.835856,3.243586085,176.5922699,0.746754913,1.697637319,-0.822703617,0.822703617,0.670844294,0.14769174,3.950159214,127.0506989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2810412,2.349967077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861876904,122.1259644,103.1429181,124.4759315,408.6550251,0,0.483132764,61.10979157,-0.483132764,118.8902084,0.946508778,0,489.9384866,124.4759315,571.4054942,6,9,17% -6/4/2018 18:00,31.28884835,110.2358883,869.4252492,880.8517485,116.6846412,707.6210559,587.9007924,119.7202635,113.1661687,6.554094776,214.32069,0,214.32069,3.518472452,210.8022175,0.546093423,1.923979205,-0.463945874,0.463945874,0.609493107,0.13420894,4.338172524,139.5305407,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7796259,2.549121314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142991226,134.1220631,111.9226171,136.6711844,587.9007924,0,0.667423086,48.13151244,-0.667423086,131.8684876,0.975085001,0,685.1758617,136.6711844,774.6244185,6,10,13% -6/4/2018 19:00,21.08881429,131.9510031,961.4106118,899.3289553,122.3152939,862.3239711,736.4494153,125.8745558,118.6270365,7.247519293,236.7933911,0,236.7933911,3.688257407,233.1051337,0.368069245,2.302979455,-0.181339824,0.181339824,0.561164626,0.127224822,4.471685908,143.8247901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0288197,2.672129936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239721218,138.2498589,117.2685409,140.9219888,736.4494153,0,0.818887695,35.02639773,-0.818887695,144.9736023,0.988941566,0,845.5739792,140.9219888,937.8046025,6,11,11% -6/4/2018 20:00,15.43404231,173.5955581,997.6900714,905.8746845,124.4835346,968.178844,839.9279381,128.2509059,120.7298967,7.521009184,245.6551465,0,245.6551465,3.753637863,241.9015087,0.269374855,3.029814055,0.064898459,-0.064898459,0.519055399,0.124771748,4.355143392,140.0763822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0501689,2.719497854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155286562,134.6467466,119.2054555,137.3662445,839.9279381,0,0.927201027,21.99737329,-0.927201027,158.0026267,0.996074262,0,955.8360563,137.3662445,1045.739516,6,12,9% -6/4/2018 21:00,19.05643307,220.0838551,975.6949904,901.952059,123.1722032,1015.222701,888.4093927,126.8133078,119.4581069,7.355200973,240.282643,0,240.282643,3.714096385,236.5685466,0.332597501,3.841187903,0.299403357,-0.299403357,0.4789527,0.126240479,4.006598338,128.8659752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8276761,2.690850187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.902766857,123.870877,117.730443,126.5617272,888.4093927,0,0.98498516,9.941293564,-0.98498516,170.0587064,0.999237814,0,1005.462702,126.5617272,1088.294822,6,13,8% -6/4/2018 22:00,28.58727143,245.6163722,896.9930717,886.6968321,118.3940731,997.9180447,876.3320771,121.5859676,114.824055,6.761912666,221.0563734,0,221.0563734,3.570018131,217.4863553,0.498942011,4.286814391,0.543335422,-0.543335422,0.43723786,0.131989953,3.458831985,111.2479263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3732492,2.586465983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505911999,106.9357383,112.8791612,109.5222043,876.3320771,0,0.988310824,8.769069808,-0.988310824,171.2309302,0.999408629,0,988.6930005,109.5222043,1060.373093,6,14,7% -6/4/2018 23:00,39.89682748,260.0121708,767.2206686,856.4513929,110.1505876,915.0786868,802.4659123,112.6127744,106.829141,5.783633475,189.3429803,0,189.3429803,3.321446628,186.0215337,0.696331001,4.538068476,0.823303588,-0.823303588,0.389360484,0.143570934,2.75896997,88.73795813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6882337,2.406376775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.998864351,85.29830066,104.6870981,87.70467744,802.4659123,0,0.936966089,20.4518623,-0.936966089,159.5481377,0.996636276,0,904.4537364,87.70467744,961.8546937,6,15,6% -6/4/2018 0:00,51.67551852,270.2347865,595.8794626,802.4900761,98.24389366,769.432005,669.6585362,99.77346888,95.28147779,4.49199109,147.4402904,0,147.4402904,2.962415875,144.4778746,0.901907941,4.716486777,1.18702947,-1.18702947,0.327159695,0.164872092,1.967906634,63.294642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.58818066,2.146260217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.425741658,60.84121742,93.01392231,62.98747763,669.6585362,0,0.834475785,33.43870727,-0.834475785,146.5612927,0.990082144,0,756.0308815,62.98747763,797.2549258,6,16,5% -6/4/2018 1:00,63.4542527,278.8765087,396.3194616,703.9861453,81.69944834,566.482245,484.258713,82.22353204,79.23590854,2.987623508,98.5557817,0,98.5557817,2.463539806,96.0922419,1.107485634,4.867313284,1.752801317,-1.752801317,0.230407011,0.206145436,1.162350143,37.38517614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.16456917,1.784826204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842118721,35.93605332,77.00668789,37.72087952,484.258713,0,0.687881027,46.53739299,-0.687881027,133.462607,0.977313012,0,550.2790293,37.72087952,574.9665905,6,17,4% -6/4/2018 2:00,74.95405157,287.1051477,187.7446722,504.7849503,56.7057361,312.5179594,256.1068118,56.41114757,54.99584893,1.415298643,47.23075657,0,47.23075657,1.709887165,45.52086941,1.308194988,5.010930127,2.966902181,-2.966902181,0.022783535,0.30203646,0.449977979,14.47283859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.86410186,1.23880743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326007514,13.91184296,53.19010937,15.15065039,256.1068118,0,0.507358256,59.51197587,-0.507358256,120.4880241,0.951450308,0,296.8630143,15.15065039,306.778812,6,18,3% -6/4/2018 3:00,85.84522946,295.6225825,18.22503262,90.13145489,11.69492836,39.11898315,27.63931204,11.47967112,11.34228312,0.137387994,4.771515399,0,4.771515399,0.35264524,4.41887016,1.498281901,5.159587408,9.62781385,-9.62781385,0,0.641695881,0.08816131,2.835570781,0.527477077,1,0.103494634,0,0.950833762,0.989595725,0.724496596,1,10.99237003,0.255490276,0.0721629,0.312029739,0.815826068,0.540322664,0.961238037,0.922476074,0.060447308,2.725658491,11.05281734,2.981148766,13.06020851,0,0.306655563,72.1422057,-0.306655563,107.8577943,0.886950618,0,22.63657735,2.981148766,24.58767959,6,19,9% -6/4/2018 4:00,96.25493309,304.9811501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679965504,5.322925226,-5.23558409,5.23558409,0.5745087,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.092716649,84.68008669,-0.092716649,95.31991331,0.510722528,0,0,0,0,6,20,0% -6/4/2018 5:00,105.2837894,315.6811081,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837548775,5.509674723,-1.507016641,1.507016641,0.787868713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111835674,96.42114494,0.111835674,83.57885506,0,0.602915466,0,0,0,6,21,0% -6/4/2018 6:00,112.5977566,328.1256636,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965201583,5.72687319,-0.494375328,0.494375328,0.61469685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296112541,107.2242622,0.296112541,72.77573781,0,0.881145281,0,0,0,6,22,0% -6/4/2018 7:00,117.5620834,342.4109562,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051845431,5.976198581,0.080596051,-0.080596051,0.516370953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447559481,116.5872103,0.447559481,63.41278972,0,0.938283006,0,0,0,6,23,0% -6/5/2018 8:00,119.5779278,358.021004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087028552,6.248645311,0.545070786,-0.545070786,0.436941095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.555859489,123.7699347,0.555859489,56.23006534,0,0.96004921,0,0,0,6,0,0% -6/5/2018 9:00,118.349377,13.79536563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065586297,0.240774552,1.030898913,-1.030898913,0.353859593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613635437,127.8528355,0.613635437,52.14716453,0,0.968518395,0,0,0,6,1,0% -6/5/2018 10:00,114.0609006,28.48104933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990738263,0.497088085,1.676890587,-1.676890587,0.24338851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616952259,128.0939123,0.616952259,51.90608773,0,0.968956452,0,0,0,6,2,0% -6/5/2018 11:00,107.2632398,41.38502761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872096701,0.722304993,2.824859219,-2.824859219,0.047074312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565584746,124.442907,0.565584746,55.55709305,0,0.961595918,0,0,0,6,3,0% -6/5/2018 12:00,98.60192913,52.47917083,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720928312,0.91593432,6.304000644,-6.304000644,0,#DIV/0!,0,0,0.353960894,1,0.157318614,0,0.944434138,0.983196101,0.724496596,1,0,0,0.051853076,0.312029739,0.863500634,0.58799723,0.961238037,0.922476074,0,0,0,0,0,0,-0.463032757,117.5829796,0.463032757,62.41702038,0,0.942016279,0,0,0,6,4,0% -6/5/2018 13:00,88.30567182,62.1168601,2.245846721,12.77816085,1.868031062,1.828633175,0,1.828633175,1.811703033,0.016930141,4.573023916,3.972164348,0.600859568,0.056328029,0.544531539,1.541224721,1.08414373,-33.48689046,33.48689046,0,0.831771396,0.014082007,0.452925758,1,0.809768365,0,0.02985356,0.961238037,1,0.643326679,0.918830083,1.741477867,0.039189445,0.115824807,0.219906016,0.724496596,0.448993192,0.974934875,0.936172912,0.010202366,0.438233355,1.751680233,0.477422801,0,0.755631318,-0.310855717,108.1108075,0.310855717,71.8891925,0,0.889153674,1.751680233,1.149295163,2.503870932,6,5,43% -6/5/2018 14:00,77.70518184,70.78369696,138.8156224,426.1246447,48.07577917,47.67256785,0,47.67256785,46.62611705,1.046450797,92.22680293,57.11968601,35.10711691,1.449662123,33.65745479,1.356211269,1.235408569,-4.587978609,4.587978609,0.68525576,0.346328305,0.831154637,26.7327902,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.81879722,1.050275273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.602168705,25.69657477,45.42096592,26.74685004,0,57.11968601,-0.134044549,97.70337445,0.134044549,82.29662555,0,0.676989682,45.42096592,65.41628812,88.23461817,6,6,94% -6/5/2018 15:00,66.31419496,79.01428166,344.9704269,668.0065397,76.6182318,122.4353727,45.5269305,76.90844221,74.30790942,2.600532794,85.9523963,0,85.9523963,2.31032238,83.64207392,1.157401043,1.379059371,-2.251443319,2.251443319,0.915173173,0.22210087,2.428932177,78.12280823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.42758897,1.6738207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759753094,75.09461481,73.18734206,76.76843551,45.5269305,0,0.06815342,86.09206734,-0.06815342,93.90793266,0,0,73.18734206,76.76843551,123.4307477,6,7,69% -6/5/2018 16:00,54.57747629,87.45336955,548.922712,783.7071257,94.68483557,314.4391402,218.4713905,95.9677497,91.82973843,4.138011269,135.9477639,0,135.9477639,2.855097142,133.0926667,0.952556659,1.526349241,-1.341237108,1.341237108,0.759518744,0.172492108,3.314546457,106.6072077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.2702375,2.068508161,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401377625,102.4749031,90.67161512,104.5434112,218.4713905,0,0.278766625,73.81339316,-0.278766625,106.1866068,0.8706385,0,280.8812189,104.5434112,349.3027907,6,8,24% -6/5/2018 17:00,42.76199869,97.09832256,728.6616251,845.9378632,107.5906762,518.5787813,408.7394019,109.8393794,104.3464203,5.492959118,179.916703,0,179.916703,3.244255854,176.6724472,0.746337672,1.694685427,-0.823262378,0.823262378,0.670939848,0.147655197,3.952333986,127.1206471,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3017482,2.350452322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.863452519,122.1932012,103.1652007,124.5436535,408.7394019,0,0.483178989,61.1067665,-0.483178989,118.8932335,0.946518679,0,490.0446796,124.5436535,571.5560099,6,9,17% -6/5/2018 18:00,31.25596256,110.0194225,869.774242,880.9275218,116.706409,707.6741968,587.930191,119.7440058,113.1872802,6.556725631,214.4059637,0,214.4059637,3.519128832,210.8868349,0.545519458,1.920201164,-0.46482398,0.46482398,0.609643272,0.134180116,4.340692569,139.6115941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.799919,2.549596859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14481699,134.1999746,111.944736,136.7495715,587.930191,0,0.66739905,48.13336178,-0.66739905,131.8666382,0.975082303,0,685.2250605,136.7495715,774.72492,6,10,13% -6/5/2018 19:00,21.03031269,131.6695289,961.8410818,899.4088993,122.3411805,862.3877186,736.4848118,125.9029068,118.6521425,7.250764358,236.8985441,0,236.8985441,3.689037982,233.2095061,0.367048199,2.298066804,-0.182453255,0.182453255,0.561355034,0.127194796,4.474797556,143.9248714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0529525,2.67269546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241975597,138.3460609,117.2949281,141.0187563,736.4848118,0,0.818854263,35.02973496,-0.818854263,144.970265,0.988939073,0,845.6335355,141.0187563,937.9274911,6,11,11% -6/5/2018 20:00,15.32923282,173.4028828,998.2596485,905.9744407,124.5173662,968.3251916,840.0371805,128.2880111,120.7627082,7.525302897,245.7942672,0,245.7942672,3.754658012,242.0396092,0.267545585,3.026451237,0.063539575,-0.063539575,0.519287782,0.124734448,4.359025347,140.2012392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0817086,2.720236949,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158099025,134.766764,119.2398076,137.4870009,840.0371805,0,0.927219514,21.9945453,-0.927219514,158.0054547,0.996075337,0,955.9801251,137.4870009,1045.962617,6,12,9% -6/5/2018 21:00,18.94301547,220.1638042,976.4512715,902.0892511,123.2174535,1015.522808,888.6599133,126.8628948,119.5019927,7.360902139,240.4673766,0,240.4673766,3.715460848,236.7519157,0.33061799,3.842583277,0.297722747,-0.297722747,0.479240101,0.126189045,4.01135524,129.0189735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8698608,2.691838736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.906213216,124.0179448,117.7760741,126.7097835,888.6599133,0,0.985113072,9.898751618,-0.985113072,170.1012484,0.999244405,0,1005.76452,126.7097835,1088.69354,6,13,8% -6/5/2018 22:00,28.48731999,245.7401131,897.9697754,886.8988271,118.4542724,998.4380155,876.786301,121.6517145,114.882439,6.769275471,221.2950017,0,221.2950017,3.571833362,217.7231684,0.497197529,4.288974078,0.541169997,-0.541169997,0.43760817,0.131913429,3.464482725,111.4296735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4293702,2.587781112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51000594,107.1104406,112.9393761,109.6982217,876.786301,0,0.988597881,8.660519404,-0.988597881,171.3394806,0.999423319,0,989.2200508,109.6982217,1061.015343,6,14,7% -6/5/2018 23:00,39.80395262,260.1203146,768.4343064,856.769527,110.2302307,915.8784136,803.1792487,112.6991649,106.9063826,5.792782389,189.6396424,0,189.6396424,3.323848162,186.3157942,0.694710029,4.539955941,0.820320332,-0.820320332,0.389870651,0.143447826,2.765430169,88.94574034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7624813,2.408116679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003544744,85.49802883,104.766026,87.90614551,803.1792487,0,0.937450765,20.37223978,-0.937450765,159.6277602,0.996663866,0,905.2657608,87.90614551,962.7985749,6,15,6% -6/5/2018 0:00,51.5844734,270.3256885,597.3254421,803.0357472,98.35104523,770.5697572,670.6814674,99.88828984,95.38539834,4.502891494,147.7941159,0,147.7941159,2.965646891,144.828469,0.900318904,4.718073318,1.182466557,-1.182466557,0.327939999,0.164652363,1.974951395,63.5212257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.68807305,2.148601077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430845562,61.05901829,93.11891861,63.20761937,670.6814674,0,0.83518258,33.36514551,-0.83518258,146.6348545,0.990132851,0,757.182672,63.20761937,798.5507947,6,16,5% -6/5/2018 1:00,63.36199819,278.9539121,397.9620941,705.0430968,81.85458108,568.0330698,485.6467,82.38636982,79.38636345,3.000006365,98.95873478,0,98.95873478,2.468217631,96.49051715,1.105875489,4.868664228,1.744462506,-1.744462506,0.231833031,0.205684366,1.169501384,37.61518464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30919216,1.788215271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847299771,36.15714624,77.15649193,37.94536151,485.6467,0,0.68881846,46.46334766,-0.68881846,133.5366523,0.977411934,0,551.8333721,37.94536151,576.6678523,6,17,5% -6/5/2018 2:00,74.85883998,287.171734,189.461554,507.2132411,56.97846191,314.614767,257.9261747,56.68859228,55.26035106,1.428241223,47.65525812,0,47.65525812,1.718110855,45.93714727,1.306533232,5.012092277,2.944763551,-2.944763551,0.026569464,0.300738914,0.456062996,14.66855366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.11835137,1.244765466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.330416088,14.09997172,53.44876746,15.34473719,257.9261747,0,0.508516249,59.43495173,-0.508516249,120.5650483,0.951674725,0,298.9105888,15.34473719,308.9534124,6,18,3% -6/5/2018 3:00,85.74837363,295.6793153,19.16946292,94.27007761,12.18058126,40.99002805,29.03222874,11.95779931,11.8132918,0.144507509,5.015147688,0,5.015147688,0.367289467,4.647858222,1.496591448,5.160577583,9.398179394,-9.398179394,0,0.635415886,0.091822367,2.953322949,0.518543222,1,0.106004736,0,0.950550102,0.989312066,0.724496596,1,11.44958786,0.266099968,0.07118346,0.312029739,0.818049831,0.542546427,0.961238037,0.922476074,0.062935679,2.838846354,11.51252354,3.104946322,13.97776332,0,0.307968652,72.0631454,-0.307968652,107.9368546,0.887645813,0,23.91982663,3.104946322,25.9519519,6,19,8% -6/5/2018 4:00,96.14967125,305.0270723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678128338,5.323726719,-5.319816013,5.319816013,0.560104193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.0942486,84.59192627,-0.0942486,95.40807373,0.519488142,0,0,0,0,6,20,0% -6/5/2018 5:00,105.1735016,315.7129896,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835623888,5.510231161,-1.516635795,1.516635795,0.789513686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.110186574,96.32607083,0.110186574,83.67392917,0,0.596224205,0,0,0,6,21,0% -6/5/2018 6:00,112.4840567,328.1378963,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963217146,5.72708669,-0.496649194,0.496649194,0.615085704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294402728,107.1217258,0.294402728,72.8782742,0,0.880164617,0,0,0,6,22,0% -6/5/2018 7:00,117.4487405,342.3969429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049867225,5.975954003,0.080515767,-0.080515767,0.516384683,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445849669,116.4777132,0.445849669,63.52228682,0,0.937854576,0,0,0,6,23,0% -6/6/2018 8:00,119.4707394,357.9771262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085157763,6.2478795,0.546165171,-0.546165171,0.436753945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554210475,123.6563515,0.554210475,56.34364855,0,0.959781568,0,0,0,6,0,0% -6/6/2018 9:00,118.2542886,13.72488037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063926691,0.239544352,1.033102485,-1.033102485,0.35348276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612103904,127.7417849,0.612103904,52.25821509,0,0.968314522,0,0,0,6,1,0% -6/6/2018 10:00,113.9814839,28.39256178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989352181,0.495543686,1.680850075,-1.680850075,0.242711398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615586872,127.9945758,0.615586872,52.00542419,0,0.968776695,0,0,0,6,2,0% -6/6/2018 11:00,107.1999141,41.28694546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870991459,0.720593136,2.833262912,-2.833262912,0.045637196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564422795,124.3622187,0.564422795,55.63778125,0,0.961413925,0,0,0,6,3,0% -6/6/2018 12:00,98.55300404,52.37633954,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720074408,0.914139575,6.337004194,-6.337004194,0,#DIV/0!,0,0,0.356307927,1,0.156512636,0,0.944534831,0.983296794,0.724496596,1,0,0,0.052147065,0.312029739,0.862787164,0.58728376,0.961238037,0.922476074,0,0,0,0,0,0,-0.462097601,117.5225449,0.462097601,62.47745509,0,0.94179775,0,0,0,6,4,0% -6/6/2018 13:00,88.27169591,62.01049816,2.353382493,13.35189745,1.950688964,1.909609286,0,1.909609286,1.891868495,0.017740791,4.77125214,4.141826839,0.629425301,0.05882047,0.570604832,1.54063173,1.082287364,-32.81970525,32.81970525,0,0.828887344,0.014705117,0.472967124,1,0.805547869,0,0.030460076,0.961238037,1,0.641750078,0.917253482,1.818535958,0.040899184,0.115824807,0.218120073,0.724496596,0.448993192,0.975182559,0.936420596,0.010653807,0.457664373,1.829189765,0.498563557,0,0.805387057,-0.310205112,108.0715919,0.310205112,71.9284081,0,0.888816325,1.829189765,1.214404721,2.623993367,6,5,43% -6/6/2018 14:00,77.67744768,70.67231721,139.3003063,427.0063611,48.17076644,47.76834465,0,47.76834465,46.7182401,1.050104549,92.26406527,57.03656691,35.22749836,1.452526339,33.77497202,1.355727217,1.233464625,-4.577441288,4.577441288,0.687057748,0.345805172,0.835121683,26.86038402,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9073494,1.052350388,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.605042816,25.81922281,45.51239222,26.8715732,0,57.03656691,-0.133573108,97.67611775,0.133573108,82.32388225,0,0.675673157,45.51239222,65.4096504,88.32170021,6,6,94% -6/6/2018 15:00,66.29274078,78.8941299,345.358346,668.3016228,76.65846568,122.6784171,45.72802985,76.9503872,74.3469301,2.603457092,86.04766498,0,86.04766498,2.31153558,83.7361294,1.157026597,1.376962327,-2.249896941,2.249896941,0.914908727,0.221967897,2.43109849,78.19248427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.46509714,1.674699659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.76132258,75.16159008,73.22641972,76.83628974,45.72802985,0,0.068424239,86.07651428,-0.068424239,93.92348572,0,0,73.22641972,76.83628974,123.5142346,6,7,69% -6/6/2018 16:00,54.5592992,87.31790741,549.2219041,783.8337246,94.70803137,314.5823221,218.5898206,95.9925015,91.85223479,4.140266706,136.0210059,0,136.0210059,2.855796581,133.1652093,0.952239409,1.52398498,-1.341329186,1.341329186,0.75953449,0.172440375,3.316355505,106.6653929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29186185,2.069014902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402688274,102.5308329,90.69455012,104.5998478,218.5898206,0,0.278872692,73.80706505,-0.278872692,106.192935,0.870706719,0,281.0221756,104.5998478,349.480684,6,8,24% -6/6/2018 17:00,42.74284828,96.93631958,728.926417,846.0128532,107.608459,518.6256127,408.7669905,109.8586221,104.3636669,5.494955231,179.9814411,0,179.9814411,3.244792071,176.736649,0.746003434,1.691857941,-0.823897536,0.823897536,0.671048466,0.147625956,3.954226112,127.1815043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3183263,2.35084081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864823358,122.2516995,103.1831497,124.6025404,408.7669905,0,0.483168771,61.10743522,-0.483168771,118.8925648,0.946516491,0,490.087847,124.6025404,571.6377176,6,9,17% -6/6/2018 18:00,31.22832264,109.8113681,870.067311,880.9911169,116.7246861,707.6748975,587.9109564,119.763941,113.2050061,6.558934908,214.4775728,0,214.4775728,3.519679954,210.9578928,0.54503705,1.91656993,-0.46573126,0.46573126,0.609798426,0.134155926,4.342974346,139.6849839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8169579,2.549996145,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.14647013,134.2705197,111.963428,136.8205158,587.9109564,0,0.66732904,48.13874796,-0.66732904,131.861252,0.975074443,0,685.2203764,136.8205158,774.7666676,6,10,13% -6/6/2018 19:00,20.97810192,131.3957522,962.2243005,899.4800209,122.3642222,862.4088207,736.4806781,125.9281426,118.6744894,7.253653222,236.9921547,0,236.9921547,3.689732775,233.3024219,0.366136949,2.2932885,-0.183567665,0.183567665,0.561545609,0.127168086,4.477702001,144.0182884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0744332,2.673198835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.244079857,138.4358568,117.3185131,141.1090556,736.4806781,0,0.818784921,35.03665596,-0.818784921,144.963344,0.988933902,0,845.649224,141.1090556,938.0022788,6,11,11% -6/6/2018 20:00,15.23125978,173.2055515,998.7886518,906.0670097,124.5487824,968.4378097,840.1153419,128.3224678,120.793177,7.529290747,245.9234775,0,245.9234775,3.755605324,242.1678722,0.265835632,3.023007157,0.062201044,-0.062201044,0.519516685,0.124699837,4.36271859,140.3200266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1109964,2.720923273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.160774768,134.8809469,119.2717711,137.6018702,840.1153419,0,0.927211048,21.99584037,-0.927211048,158.0041596,0.996074844,0,956.0895296,137.6018702,1046.147202,6,12,9% -6/6/2018 21:00,18.83444535,220.2302754,977.1711625,902.2196862,123.2605156,1015.796108,888.8860227,126.9100853,119.5437563,7.366328982,240.643221,0,240.643221,3.716759329,236.9264616,0.328723084,3.843743419,0.296083255,-0.296083255,0.479520471,0.126140149,4.015929829,129.166108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9100056,2.692779481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90952749,124.159376,117.8195331,126.8521555,888.8860227,0,0.985221267,9.862625466,-0.985221267,170.1373745,0.999249979,0,1006.038873,126.8521555,1089.061071,6,13,8% -6/6/2018 22:00,28.39064557,245.8522468,898.9114917,887.0932647,118.5122923,998.9352074,877.2201235,121.7150839,114.9387094,6.776374526,221.5250813,0,221.5250813,3.573582875,217.9514984,0.495510242,4.29093118,0.539071386,-0.539071386,0.437967053,0.131839779,3.469946611,111.6054109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4834594,2.589048628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513964508,107.2793661,112.9974239,109.8684147,877.2201235,0,0.988870233,8.556266204,-0.988870233,171.4437338,0.999437248,0,989.7238903,109.8684147,1061.63057,6,14,7% -6/6/2018 23:00,39.71369482,260.2191711,769.611526,857.0773995,110.307432,916.6556746,803.8727619,112.7829127,106.9812559,5.801656769,189.9274008,0,189.9274008,3.326176066,186.6012247,0.693134733,4.541681313,0.817443138,-0.817443138,0.39036268,0.143328716,2.77169055,89.14709572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8344524,2.409803237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008080368,85.69157928,104.8425328,88.10138252,803.8727619,0,0.937923182,20.29434331,-0.937923182,159.7056567,0.99669073,0,906.0550629,88.10138252,963.7156557,6,15,6% -6/6/2018 0:00,51.49587041,270.4088196,598.7309932,803.5643974,98.45506953,771.6806346,671.6808616,99.99977305,95.48628592,4.513487132,148.1380448,0,148.1380448,2.968783607,145.1692612,0.89877249,4.719524229,1.178083187,-1.178083187,0.328689599,0.164439574,1.981780105,63.74086051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.78505002,2.150873617,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43579294,61.27013962,93.22084296,63.42101324,671.6808616,0,0.83587683,33.29274953,-0.83587683,146.7072505,0.990182575,0,758.3075277,63.42101324,799.8153125,6,16,5% -6/6/2018 1:00,63.27228364,279.024486,399.5585829,706.0652481,82.00495592,569.5459478,487.0017025,82.5442453,79.53220393,3.012041372,99.35035635,0,99.35035635,2.472751987,96.87760436,1.104309675,4.869895974,1.736482452,-1.736482452,0.233197701,0.20523888,1.1764291,37.83800382,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.44937957,1.791500397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.852318879,36.37132851,77.30169845,38.16282891,487.0017025,0,0.689740366,46.39043991,-0.689740366,133.6095601,0.977508955,0,553.3502237,38.16282891,578.327032,6,17,5% -6/6/2018 2:00,74.76644613,287.2320808,191.1287155,509.5524711,57.24162693,316.6515215,259.6951318,56.95638967,55.51558068,1.44080899,48.06741613,0,48.06741613,1.726046251,46.34136988,1.304920655,5.013145528,2.923702509,-2.923702509,0.030171114,0.299492553,0.461963191,14.8583242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.36368779,1.250514633,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334690759,14.28238638,53.69837855,15.53290101,259.6951318,0,0.509653366,59.35925664,-0.509653366,120.6407434,0.951894104,0,300.9006434,15.53290101,311.0666165,6,18,3% -6/6/2018 3:00,85.65459717,295.7302009,20.10339359,98.32161121,12.65367311,42.83023642,30.40657038,12.42366605,12.27211818,0.151547873,5.255855456,0,5.255855456,0.381554931,4.874300525,1.49495474,5.161465703,9.186240696,-9.186240696,0,0.629429706,0.095388733,3.068029544,0.509992716,1,0.108431493,0,0.950274475,0.989036438,0.724496596,1,11.8949729,0.276435249,0.070239706,0.312029739,0.820199807,0.544696403,0.961238037,0.922476074,0.065360468,2.949106696,11.96033337,3.225541945,14.89944096,0,0.309256226,71.98558708,-0.309256226,108.0144129,0.888321767,0,25.1958311,3.225541945,27.30688379,6,19,8% -6/6/2018 4:00,96.0482737,305.0674737,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676358617,5.324431856,-5.404229545,5.404229545,0.545668629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095742473,84.50594484,-0.095742473,95.49405516,0.527765733,0,0,0,0,6,20,0% -6/6/2018 5:00,105.0677866,315.7397681,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833778814,5.510698533,-1.526206351,1.526206351,0.791150347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.108585801,96.2337996,0.108585801,83.7662004,0,0.589534639,0,0,0,6,21,0% -6/6/2018 6:00,112.3757046,328.1457398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961326044,5.727223585,-0.49899394,0.49899394,0.615486679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292751756,107.0227717,0.292751756,72.97722831,0,0.879206832,0,0,0,6,22,0% -6/6/2018 7:00,117.3414624,342.3797454,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047994869,5.975653849,0.080305635,-0.080305635,0.516420617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.444208755,116.3727263,0.444208755,63.62727372,0,0.93744031,0,0,0,6,23,0% -6/7/2018 8:00,119.3700972,357.9317521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083401225,6.247087572,0.547073339,-0.547073339,0.436598639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.552639267,123.5482668,0.552639267,56.45173317,0,0.959525068,0,0,0,6,0,0% -6/7/2018 9:00,118.1658677,13.65472522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062383455,0.238319914,1.035034184,-1.035034184,0.35315242,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610657326,127.6370471,0.610657326,52.36295292,0,0.968121018,0,0,0,6,1,0% -6/7/2018 10:00,113.9085284,28.30594092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988078867,0.494031867,1.684363553,-1.684363553,0.242110558,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614311331,127.9018974,0.614311331,52.09810259,0,0.968608045,0,0,0,6,2,0% -6/7/2018 11:00,107.1426566,41.19181501,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869992127,0.718932797,2.840728637,-2.840728637,0.044360482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.563352994,124.2879983,0.563352994,55.71200173,0,0.961245701,0,0,0,6,3,0% -6/7/2018 12:00,98.50970411,52.27718927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719318682,0.912409076,6.366220401,-6.366220401,0,#DIV/0!,0,0,0.358371441,1,0.155805954,0,0.944622999,0.983384962,0.724496596,1,0,0,0.052405073,0.312029739,0.862161577,0.586658172,0.961238037,0.922476074,0,0,0,0,0,0,-0.461254149,117.4680651,0.461254149,62.53193493,0,0.941599891,0,0,0,6,4,0% -6/7/2018 13:00,88.24246471,61.90836209,2.448383666,13.85805519,2.023357569,1.980802823,0,1.980802823,1.962345872,0.01845695,4.94559547,4.290944808,0.654650662,0.061011696,0.593638966,1.540121549,1.080504753,-32.26539025,32.26539025,0,0.826405435,0.015252924,0.490586468,1,0.801896264,0,0.030983044,0.961238037,1,0.64039298,0.915896384,1.886281494,0.042401374,0.115824807,0.2165829,0.724496596,0.448993192,0.975395187,0.936633224,0.011050692,0.47474852,1.897332186,0.517149894,0,0.850052196,-0.309635425,108.0372609,0.309635425,71.96273911,0,0.888519769,1.897332186,1.272438075,2.730117457,6,5,44% -6/7/2018 14:00,77.65456723,70.56567443,139.7003321,427.7323106,48.24899593,47.8472308,0,47.8472308,46.79411069,1.053120113,92.29397319,56.96712503,35.32684816,1.454885247,33.87196291,1.355327877,1.231603358,-4.568781928,4.568781928,0.688538586,0.345374955,0.838398987,26.96579341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.98027909,1.054059409,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.607417212,25.92054632,45.5876963,26.97460573,0,56.96712503,-0.133184058,97.65362587,0.133184058,82.34637413,0,0.674579694,45.5876963,65.40347148,88.39296032,6,6,94% -6/7/2018 15:00,66.27593253,78.77931586,345.6622358,668.5325173,76.68996279,122.8579988,45.87477338,76.9832254,74.37747746,2.605747942,86.12229633,0,86.12229633,2.312485334,83.809811,1.156733238,1.374958444,-2.248805706,2.248805706,0.914722115,0.221863874,2.432836232,78.24837604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49446042,1.675387753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.762581568,75.21531537,73.25704199,76.89070312,45.87477338,0,0.068620108,86.06526538,-0.068620108,93.93473462,0,0,73.25704199,76.89070312,123.5804694,6,7,69% -6/7/2018 16:00,54.54568459,87.18859095,549.4459578,783.9284681,94.72539721,314.658944,218.6479113,96.0110327,91.86907698,4.141955717,136.075854,0,136.075854,2.856320225,133.2195337,0.952001789,1.521727982,-1.341594817,1.341594817,0.759579915,0.172401664,3.317825561,106.712675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30805121,2.06939428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403753324,102.5762822,90.71180453,104.6456765,218.6479113,0,0.27891309,73.80465476,-0.27891309,106.1953452,0.870732688,0,281.095688,104.6456765,349.5841904,6,8,24% -6/7/2018 17:00,42.72838476,96.78159382,729.1263415,846.069446,107.6218835,518.6119581,408.7388091,109.873149,104.3766866,5.496462346,180.0303199,0,180.0303199,3.24519687,176.785123,0.745750998,1.689157467,-0.824607337,0.824607337,0.671169849,0.147603889,3.955839449,127.2333948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3308414,2.351134086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865992215,122.3015786,103.1968336,124.6527127,408.7388091,0,0.483103144,61.11172988,-0.483103144,118.8882701,0.946502433,0,490.0691109,124.6527127,571.6518183,6,9,17% -6/7/2018 18:00,31.20585375,109.6119717,870.3053806,881.042753,116.7395314,707.6242978,587.8441644,119.7801334,113.2194038,6.560729577,214.5357432,0,214.5357432,3.520127596,211.0156156,0.544644894,1.913089806,-0.466666318,0.466666318,0.60995833,0.134136286,4.345020769,139.7508038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8307975,2.55032046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147952756,134.3337883,111.9787502,136.8841088,587.8441644,0,0.667214119,48.1475884,-0.667214119,131.8524116,0.975061538,0,685.1629852,136.8841088,774.7508967,6,10,13% -6/7/2018 19:00,20.93212538,131.1301691,962.5610096,899.542474,122.3844648,862.3883492,736.438036,125.9503132,118.6941217,7.256191478,237.0744041,0,237.0744041,3.690343166,233.3840609,0.365334507,2.2886532,-0.184681798,0.184681798,0.561736137,0.127144631,4.480400984,144.1050969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0933045,2.673641061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.246035261,138.5193005,117.3393398,141.1929415,736.438036,0,0.818680671,35.04705891,-0.818680671,144.9529411,0.988926126,0,845.6221539,141.1929415,938.0301103,6,11,11% -6/7/2018 20:00,15.14016121,173.0040088,999.2775684,906.1524948,124.5778131,968.5175986,840.1632899,128.3543088,120.8213324,7.532976407,246.0428964,0,246.0428964,3.756480708,242.2864157,0.264245662,3.019489573,0.060884089,-0.060884089,0.519741897,0.124667877,4.366223524,140.4327573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1380603,2.721557485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16331408,134.989308,119.3013744,137.7108655,840.1632899,0,0.92717649,22.00112632,-0.92717649,157.9988737,0.996072835,0,956.165204,137.7108655,1046.294211,6,12,9% -6/7/2018 21:00,18.73077615,220.2831088,977.8548422,902.3434199,123.3014018,1016.04324,889.0883479,126.9548925,119.5834096,7.371482848,240.8102199,0,240.8102199,3.717992198,237.0922277,0.326913715,3.844665536,0.294486138,-0.294486138,0.479793594,0.126093768,4.020321088,129.307346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9481219,2.693672691,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912708943,124.2951394,117.8608308,126.9888121,889.0883479,0,0.985310391,9.832768645,-0.985310391,170.1672314,0.999254569,0,1006.286425,126.9888121,1089.398063,6,13,8% -6/7/2018 22:00,28.29729509,245.9526601,899.8180593,887.2801476,118.5681253,999.4099308,877.6338633,121.7760675,114.9928589,6.783208616,221.7465727,0,221.7465727,3.575266448,218.1713062,0.493880969,4.292683722,0.53704094,-0.53704094,0.43831428,0.131768999,3.475221228,111.7750607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5355099,2.590268371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.51778595,107.4424399,113.0532959,110.0327083,877.6338633,0,0.989128254,8.456322279,-0.989128254,171.5436777,0.999450438,0,990.2048449,110.0327083,1062.219052,6,14,7% -6/7/2018 23:00,39.62610759,260.3086817,770.7518186,857.3749453,110.3821631,917.4104046,804.5464183,112.8639863,107.0537336,5.810252776,190.2061314,0,190.2061314,3.328429483,186.8777019,0.691606047,4.543243567,0.814673473,-0.814673473,0.390836321,0.143213626,2.777747404,89.34190497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9041207,2.41143583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012468539,85.87883734,104.9165892,88.29027317,804.5464183,0,0.938383402,20.21818161,-0.938383402,159.7818184,0.996716875,0,906.8215812,88.29027317,964.6057991,6,15,6% -6/7/2018 0:00,51.40977075,270.4841489,600.0952766,804.0758708,98.55591635,772.7641821,672.6563186,100.1078635,95.58409184,4.523771676,148.471872,0,148.471872,2.97182451,145.5000475,0.897269767,4.720838973,1.173880823,-1.173880823,0.329408246,0.164233781,1.988387946,63.95339138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.87906479,2.153076741,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.440580298,61.47443238,93.31964509,63.62750912,672.6563186,0,0.836558269,33.22155384,-0.836558269,146.7784462,0.9902313,0,759.4049861,63.62750912,801.0479183,6,16,5% -6/7/2018 1:00,63.18517674,279.088217,401.1077941,707.0523507,82.15050364,571.0200712,488.3229884,82.69708284,79.67336286,3.02371998,99.73036933,0,99.73036933,2.477140788,97.25322854,1.102789373,4.87100829,1.728861403,-1.728861403,0.234500977,0.204809043,1.183127503,38.05344747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.5850669,1.794680068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.857171848,36.57842115,77.44223875,38.37310121,488.3229884,0,0.690646156,46.31872047,-0.690646156,133.6812795,0.977604028,0,554.828759,38.37310121,579.9431863,6,17,5% -6/7/2018 2:00,74.67694278,287.2861888,192.7447127,511.8025052,57.49517371,318.6271827,261.4127096,57.21447315,55.76148209,1.45299106,48.46687875,0,48.46687875,1.733691622,46.73318713,1.303358527,5.01408989,2.903703619,-2.903703619,0.033591126,0.298297021,0.467671347,15.04191814,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.60005758,1.256053678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338826299,14.45886387,53.93888388,15.71491755,261.4127096,0,0.510768718,59.28495275,-0.510768718,120.7150473,0.952108336,0,302.8321037,15.71491755,313.1172029,6,18,3% -6/7/2018 3:00,85.56398606,295.7752533,21.02367691,102.2748029,13.11315841,44.63429625,31.75806259,12.87623366,12.7177483,0.158485357,5.492843979,0,5.492843979,0.395410108,5.09743387,1.493373278,5.162252016,8.990610688,-8.990610688,0,0.623732873,0.098852527,3.179437075,0.501826128,1,0.110771843,0,0.950007371,0.988769334,0.724496596,1,12.32753686,0.286473278,0.069332478,0.312029739,0.822273262,0.546769858,0.961238037,0.922476074,0.067716419,3.056195852,12.39525327,3.34266913,15.821037,0,0.310516977,71.90961133,-0.310516977,108.0903887,0.888978208,0,26.4598104,3.34266913,28.64752049,6,19,8% -6/7/2018 4:00,95.95081617,305.1023833,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674657662,5.325041144,-5.488598027,5.488598027,0.531240768,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097196953,84.42221877,-0.097196953,95.57778123,0.535580579,0,0,0,0,6,20,0% -6/7/2018 5:00,104.9667168,315.761489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832014814,5.511077634,-1.535709097,1.535709097,0.792775412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107034771,96.14441115,0.107034771,83.85558885,0,0.582862085,0,0,0,6,21,0% -6/7/2018 6:00,112.2727644,328.1492554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959529398,5.727284946,-0.501405288,0.501405288,0.615899044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291161059,106.9274797,0.291161059,73.07252026,0,0.878273739,0,0,0,6,22,0% -6/7/2018 7:00,117.2403006,342.3594358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046229261,5.97529938,0.079966419,-0.079966419,0.516478627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.442638104,116.2723241,0.442638104,63.72767594,0,0.937040904,0,0,0,6,23,0% -6/8/2018 8:00,119.2760374,357.8849564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081759572,6.246270833,0.547794499,-0.547794499,0.436475313,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551147078,123.445743,0.551147078,56.55425705,0,0.959280114,0,0,0,6,0,0% -6/8/2018 9:00,118.0841354,13.58497233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060956958,0.237102496,1.036691859,-1.036691859,0.35286894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609296687,127.5386662,0.609296687,52.46133376,0,0.967938172,0,0,0,6,1,0% -6/8/2018 10:00,113.8420408,28.22125666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986918439,0.492553848,1.687426466,-1.687426466,0.241586769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613126343,127.8159029,0.613126343,52.18409713,0,0.968450739,0,0,0,6,2,0% -6/8/2018 11:00,107.0914608,41.09970605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869098591,0.717325192,2.847243696,-2.847243696,0.043246341,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56237573,124.2202551,0.56237573,55.77974492,0,0.961091469,0,0,0,6,3,0% -6/8/2018 12:00,98.47201007,52.18179127,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718660797,0.910744067,6.391553563,-6.391553563,0,#DIV/0!,0,0,0.360150019,1,0.155198299,0,0.944698722,0.983460685,0.724496596,1,0,0,0.052627106,0.312029739,0.86162364,0.586120236,0.961238037,0.922476074,0,0,0,0,0,0,-0.460502453,117.4195347,0.460502453,62.58046534,0,0.941422945,0,0,0,6,4,0% -6/8/2018 13:00,88.21796667,61.81052594,2.529780668,14.29121153,2.08536208,2.041551275,0,2.041551275,2.02248072,0.019070555,5.094336871,4.418080898,0.676255973,0.062881361,0.613374612,1.539693978,1.07879719,-31.81377828,31.81377828,0,0.82432525,0.01572034,0.50562018,1,0.798818266,0,0.031422576,0.961238037,1,0.639254064,0.914757468,1.944085396,0.043682444,0.115824807,0.215292948,0.724496596,0.448993192,0.975573221,0.936811258,0.011389333,0.489326581,1.955474729,0.533009025,0,0.888837175,-0.309146701,108.0078143,0.309146701,71.99218573,0,0.888264488,1.955474729,1.322531522,2.82104516,6,5,44% -6/8/2018 14:00,77.63649853,70.4638478,140.0163377,428.3046623,48.31068821,47.90944501,0,47.90944501,46.85394272,1.055502296,92.31709726,56.91176965,35.40532761,1.456745497,33.94858212,1.355012519,1.229826148,-4.561966315,4.561966315,0.689704124,0.34503608,0.840989817,27.04912339,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.03779191,1.055407154,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.609294259,26.00064627,45.64708617,27.05605342,0,56.91176965,-0.132876839,97.63586564,0.132876839,82.36413436,0,0.673711699,45.64708617,65.39817844,88.448886,6,6,94% -6/8/2018 15:00,66.26371731,78.66992823,345.8830708,668.7001591,76.71283974,122.9747563,45.96767908,77.00707727,74.39966458,2.607412689,86.17653016,0,86.17653016,2.313175158,83.863355,1.156520042,1.37304927,-2.24816328,2.24816328,0.914612253,0.221788362,2.434150798,78.29065701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51578752,1.675887528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763533967,75.25595745,73.27932149,76.93184498,45.96767908,0,0.06874184,86.05827415,-0.06874184,93.94172585,0,0,73.27932149,76.93184498,123.6296754,6,7,69% -6/8/2018 16:00,54.5365694,87.06552721,549.595946,783.9918629,94.7370202,314.6699941,218.6465582,96.02343589,91.8803495,4.143086391,136.1125708,0,136.1125708,2.856670701,133.2559001,0.951842699,1.519580115,-1.342031175,1.342031175,0.759654537,0.172375762,3.318961335,106.7492054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31888678,2.069648199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404576189,102.6113966,90.72346296,104.6810448,218.6465582,0,0.278888811,73.80610334,-0.278888811,106.1938967,0.870717081,0,281.1027559,104.6810448,349.6144062,6,8,24% -6/8/2018 17:00,42.71853555,96.63429088,729.2624535,846.1079622,107.6310222,518.5389658,408.6559276,109.8830382,104.3855498,5.497488416,180.0635974,0,180.0635974,3.245472436,176.8181249,0.745579097,1.686586546,-0.825389926,0.825389926,0.67130368,0.147588871,3.957177916,127.2764445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3393609,2.351333732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866961929,122.3429596,103.2063229,124.6942934,408.6559276,0,0.482983196,61.11957882,-0.482983196,118.8804212,0.94647673,0,489.9896488,124.6942934,571.5995699,6,9,17% -6/8/2018 18:00,31.18847718,109.4214733,870.4893895,881.0826488,116.7510046,707.5235732,587.7309254,119.7926478,113.2305311,6.562116715,214.5807042,0,214.5807042,3.520473555,211.0602307,0.544341615,1.909764981,-0.467627673,0.467627673,0.610122731,0.134121112,4.346834727,139.809147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8414934,2.550571107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.149266963,134.38987,111.9907604,136.9404411,587.7309254,0,0.667055385,48.15979723,-0.667055385,131.8402028,0.975043705,0,685.0540996,136.9404411,774.6788795,6,10,13% -6/8/2018 19:00,20.89232139,130.8732694,962.8519456,899.5964093,122.4019537,862.3273903,736.3579224,125.9694679,118.7110832,7.258384676,237.1454722,0,237.1454722,3.69087052,233.4546017,0.364639797,2.284169455,-0.185794328,0.185794328,0.561926391,0.127124377,4.482896147,144.18535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1096086,2.674023127,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247842998,138.5964427,117.3574516,141.2704659,736.3579224,0,0.818542532,35.0608394,-0.818542532,144.9391606,0.988915819,0,845.5534497,141.2704659,938.0121442,6,11,11% -6/8/2018 20:00,15.05597156,172.7987381,999.7268614,906.2309932,124.6044871,968.5654522,840.1818868,128.3835654,120.847202,7.536363368,246.152637,0,246.152637,3.757285026,242.395352,0.262776276,3.015906923,0.059589992,-0.059589992,0.519963201,0.124638531,4.369540389,140.5394391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1629272,2.722140211,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.165717137,135.0918545,119.3286444,137.8139948,840.1818868,0,0.927116699,22.01026913,-0.927116699,157.9897309,0.996069357,0,956.2080759,137.8139948,1046.404579,6,12,9% -6/8/2018 21:00,18.632065,220.3221749,978.5024492,902.4604992,123.3401219,1016.264818,889.267491,126.997327,119.6209622,7.376364783,240.9684073,0,240.9684073,3.719159753,237.2492475,0.325190881,3.845347368,0.292932711,-0.292932711,0.480059246,0.126049886,4.024527795,129.4426481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9842188,2.69451858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.915756688,124.425197,117.8999755,127.1197155,889.267491,0,0.985381068,9.809027375,-0.985381068,170.1909726,0.999258209,0,1006.507816,127.1197155,1089.705128,6,13,8% -6/8/2018 22:00,28.2073205,246.0412535,900.6892643,887.4594664,118.6217609,999.8624496,878.0277963,121.8346533,115.0448772,6.789776127,221.9594237,0,221.9594237,3.576883759,218.38254,0.492310616,4.29422997,0.535080062,-0.535080062,0.43864961,0.131701093,3.480303923,111.9385376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5855119,2.591440107,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.521468345,107.5995802,113.1069802,110.1910203,878.0277963,0,0.989372281,8.360707903,-0.989372281,171.6392921,0.999462906,0,990.663193,110.1910203,1062.781012,6,14,7% -6/8/2018 23:00,39.54124909,260.3887958,771.8546149,857.6620824,110.4543914,918.1424763,805.2001262,112.9423501,107.1237839,5.81856612,190.475695,0,190.475695,3.330607433,187.1450876,0.690124987,4.544641822,0.812012868,-0.812012868,0.391291311,0.143102586,2.783596785,89.53004117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9714558,2.413013748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016706395,86.05968101,104.9881622,88.47269476,805.2001262,0,0.938831438,20.14377131,-0.938831438,159.8562287,0.996742303,0,907.5651906,88.47269476,965.4687999,6,15,6% -6/8/2018 0:00,51.32623967,270.5516517,601.4173899,804.5699863,98.65353072,773.8198711,673.60737,100.2125011,95.67876277,4.533738325,148.7953771,0,148.7953771,2.974767944,145.8206092,0.895811875,4.72201712,1.169861022,-1.169861022,0.330095672,0.164035048,1.994769881,64.15865635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.9700661,2.155209249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445203988,61.67174087,93.41527009,63.82695012,673.60737,0,0.83722657,33.15159927,-0.83722657,146.8484007,0.99027901,0,760.4745093,63.82695012,802.2479716,6,16,5% -6/8/2018 1:00,63.10074862,279.1450969,402.6085344,708.0041132,82.29114902,572.4545505,489.60975,82.84480045,79.80976726,3.035033195,100.0984822,0,100.0984822,2.481381765,97.6171004,1.101315824,4.872001031,1.721599836,-1.721599836,0.235742778,0.204394944,1.189590641,38.2613242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.716184,1.797752642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.86185437,36.77824016,77.57803837,38.5759928,489.60975,0,0.691535177,46.24824535,-0.691535177,133.7517546,0.977697098,0,556.2680703,38.5759928,581.515286,6,17,5% -6/8/2018 2:00,74.59040544,287.334063,194.3080587,513.963116,57.73903456,320.5406228,263.077857,57.46276586,55.99798963,1.464776222,48.85328337,0,48.85328337,1.741044926,47.11223844,1.301848165,5.014925452,2.884752882,-2.884752882,0.036831892,0.297152032,0.473180217,15.21910233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.82739762,1.261381122,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.342817456,14.62918004,54.17021508,15.89056116,263.077857,0,0.511861355,59.21210661,-0.511861355,120.7878934,0.952317298,0,304.7038091,15.89056116,315.1038636,6,18,3% -6/8/2018 3:00,85.47662738,295.8144909,21.92722839,106.1190768,13.55806666,46.39711283,33.08257519,13.31453764,13.14924093,0.16529671,5.725336121,0,5.725336121,0.408825734,5.316510388,1.491848581,5.162936842,8.810069451,-8.810069451,0,0.61832104,0.102206433,3.287310232,0.49404412,1,0.113022755,0,0.949749281,0.988511244,0.724496596,1,12.74636297,0.296192852,0.068462609,0.312029739,0.824267495,0.548764091,0.961238037,0.922476074,0.069998624,3.159887634,12.81636159,3.456080486,16.73832345,0,0.311749557,71.83530141,-0.311749557,108.1646986,0.889614848,0,27.70702267,3.456080486,29.96895823,6,19,8% -6/8/2018 4:00,95.85737572,305.1318342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673026819,5.32555516,-5.572673162,5.572673162,0.516863074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.098610677,84.3408273,-0.098610677,95.6591727,0.542955514,0,0,0,0,6,20,0% -6/8/2018 5:00,104.8703651,315.7782016,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830333159,5.511369325,-1.545123839,1.545123839,0.794385428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105534937,96.05798746,0.105534937,83.94201254,0,0.576223247,0,0,0,6,21,0% -6/8/2018 6:00,112.1753,328.1485085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957828324,5.727271909,-0.503878544,0.503878544,0.616321995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289632089,106.835931,0.289632089,73.16406899,0,0.877367195,0,0,0,6,22,0% -6/8/2018 7:00,117.1453054,342.3360903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044571283,5.974891924,0.079499239,-0.079499239,0.516558519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441139077,116.1765813,0.441139077,63.82341869,0,0.93665706,0,0,0,6,23,0% -6/9/2018 8:00,119.1885943,357.8368182,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080233401,6.245430662,0.548328268,-0.548328268,0.436384033,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549735097,123.3488414,0.549735097,56.65115859,0,0.959047102,0,0,0,6,0,0% -6/9/2018 9:00,118.00911,13.51569819,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059647517,0.235893434,1.038073937,-1.038073937,0.352632591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608022936,127.4466852,0.608022936,52.55331477,0,0.96776626,0,0,0,6,1,0% -6/9/2018 10:00,113.7820243,28.13858289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985870953,0.491110918,1.690035282,-1.690035282,0.241140635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612032556,127.7366155,0.612032556,52.26338448,0,0.968304999,0,0,0,6,2,0% -6/9/2018 11:00,107.0463157,41.0106916,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868310662,0.715771597,2.852798038,-2.852798038,0.042296493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561491318,124.1589952,0.561491318,55.84100481,0,0.960951428,0,0,0,6,3,0% -6/9/2018 12:00,98.43989794,52.090219,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718100334,0.90914583,6.412925389,-6.412925389,0,#DIV/0!,0,0,0.361642831,1,0.154689307,0,0.944762086,0.983524049,0.724496596,1,0,0,0.052813217,0.312029739,0.861173039,0.585669635,0.961238037,0.922476074,0,0,0,0,0,0,-0.459842485,117.3769438,0.459842485,62.62305621,0,0.941267115,0,0,0,6,4,0% -6/9/2018 13:00,88.19818257,61.71706506,2.596704188,14.6469902,2.136166733,2.091328478,0,2.091328478,2.071753424,0.019575053,5.216109189,4.522094886,0.694014303,0.064413309,0.629600994,1.53934868,1.07716599,-31.45680557,31.45680557,0,0.822645391,0.016103327,0.517938356,1,0.796316766,0,0.031778921,0.961238037,1,0.638331817,0.913835221,1.991448195,0.044731644,0.115824807,0.214248457,0.724496596,0.448993192,0.975717113,0.93695515,0.011666806,0.50127211,2.003115,0.546003755,0,0.92107491,-0.308738848,107.9832441,0.308738848,72.01675594,0,0.888050831,2.003115,1.363965094,2.895802875,6,5,45% -6/9/2018 14:00,77.62319478,70.36691689,140.2490674,428.7255531,48.35606326,47.95520625,0,47.95520625,46.89794953,1.057256712,92.33391075,56.87078688,35.46312387,1.458113722,34.00501015,1.354780325,1.228134384,-4.556962901,4.556962901,0.690559758,0.344787057,0.842898705,27.11051979,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.08009294,1.056398428,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610677242,26.05966282,45.69077018,27.11606125,0,56.87078688,-0.132650798,97.62279879,0.132650798,82.37720121,0,0.673070493,45.69077018,65.39410983,88.48990718,6,6,94% -6/9/2018 15:00,66.25603752,78.56605514,346.0219053,668.8054884,76.72721692,123.0294195,46.00735195,77.02206752,74.41360824,2.608459282,86.21062573,0,86.21062573,2.313608684,83.89701704,1.156386004,1.371236342,-2.247963304,2.247963304,0.914578055,0.221740924,2.435047856,78.31950948,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5291907,1.676201615,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764183883,75.28369154,73.29337458,76.95989315,46.00735195,0,0.068790333,86.05548912,-0.068790333,93.94451088,0,0,73.29337458,76.95989315,123.6620855,6,7,69% -6/9/2018 16:00,54.53188606,86.94882143,549.6730032,784.0244231,94.74299089,314.6165383,218.5867309,96.02980743,91.88614015,4.143667281,136.1314343,0,136.1314343,2.85685074,133.2745835,0.951760959,1.517543215,-1.342635294,1.342635294,0.759757847,0.17236246,3.319767727,106.7751417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32445297,2.069778636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405160417,102.6363276,90.72961338,104.7061062,218.5867309,0,0.278800921,73.81134706,-0.278800921,106.1886529,0.870660563,0,281.0444596,104.7061062,349.5725121,6,8,24% -6/9/2018 17:00,42.71322376,96.49455272,729.3358498,846.1287271,107.6359498,518.4078465,408.519476,109.8883705,104.3903288,5.498041708,180.0815418,0,180.0815418,3.24562102,176.8359207,0.745486389,1.684147655,-0.82624333,0.82624333,0.671449621,0.147580775,3.958245524,127.3107824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3439547,2.351441381,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867735407,122.3759666,103.2116901,124.7274079,408.519476,0,0.482810077,61.13090602,-0.482810077,118.869094,0.94643961,0,489.8507035,124.7274079,571.4822975,6,9,17% -6/9/2018 18:00,31.17610992,109.240106,870.6202968,881.1110235,116.7591663,707.3739421,587.5723919,119.8015502,113.2384467,6.563103549,214.6126903,0,214.6126903,3.52071966,211.0919706,0.544125766,1.906599524,-0.468613746,0.468613746,0.61029136,0.13411032,4.348419108,139.8601061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8491022,2.550749409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150414841,134.4388538,111.999517,136.9896032,587.5723919,0,0.666853979,48.17528473,-0.666853979,131.8247153,0.975021067,0,684.8949773,136.9896032,774.5519328,6,10,13% -6/9/2018 19:00,20.8586229,130.6255362,963.0978428,899.6419752,122.4167338,862.2270514,736.2413954,125.985656,118.7254176,7.260238353,237.2055385,0,237.2055385,3.691316194,233.5142223,0.364051647,2.279845694,-0.186903846,0.186903846,0.56211613,0.127107266,4.485189039,144.2590972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1233873,2.674346017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.249504191,138.6673314,117.3728915,141.3416774,736.2413954,0,0.818371547,35.07788991,-0.818371547,144.9221101,0.988903057,0,845.4442579,141.3416774,937.949559,6,11,11% -6/9/2018 20:00,14.97872114,172.5902627,1000.136971,906.3025967,124.6288314,968.5822609,840.1719936,128.4102673,120.8708123,7.539454947,246.2528069,0,246.2528069,3.758019098,242.4947878,0.261428002,3.012268341,0.058320106,-0.058320106,0.520180364,0.124611763,4.372669258,140.6400743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1856223,2.722672044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.167983992,135.1885889,119.3536063,137.911261,840.1719936,0,0.927032535,22.02313265,-0.927032535,157.9768673,0.99606446,0,956.2190698,137.911261,1046.479232,6,12,9% -6/9/2018 21:00,18.53837282,220.347378,979.1140809,902.5709624,123.3766833,1016.461427,889.4240303,127.0373966,119.656421,7.380975522,241.1178069,0,241.1178069,3.720262212,237.3975447,0.323555644,3.845787245,0.291424352,-0.291424352,0.48031719,0.126008486,4.028548504,129.5719679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0183033,2.695317308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.918669677,124.5495041,117.9369729,127.2448214,889.4240303,0,0.985433908,9.791240973,-0.985433908,170.208759,0.99926093,0,1006.703657,127.2448214,1089.982847,6,13,8% -6/9/2018 22:00,28.12077905,246.1179434,901.5248374,887.6311991,118.6731848,1000.29298,878.4021541,121.8908255,115.0947504,6.79607503,222.1635687,0,222.1635687,3.578434379,218.5851343,0.490800183,4.295568461,0.53319022,-0.53319022,0.438972792,0.131636068,3.485191792,112.0957483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.633452,2.592563527,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525009589,107.750697,113.1584615,110.3432605,878.4021541,0,0.989602613,8.269452295,-0.989602613,171.7305477,0.999474669,0,991.0991634,110.3432605,1063.316621,6,14,7% -6/9/2018 23:00,39.45918247,260.4594724,772.9192808,857.9387109,110.5240802,918.8516965,805.8337331,113.0179634,107.1913714,5.826592021,190.735937,0,190.735937,3.332708808,187.4032282,0.688692654,4.545875361,0.809462927,-0.809462927,0.391727376,0.142995631,2.789234489,89.71136908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0364234,2.414536186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.020790892,86.2339803,105.0572143,88.64851649,805.8337331,0,0.939267249,20.07113762,-0.939267249,159.9288624,0.996767014,0,908.2856985,88.64851649,966.3043795,6,15,6% -6/9/2018 0:00,51.24534682,270.6113102,602.6963627,805.0465353,98.7478525,774.8470937,674.5334736,100.3136202,95.7702404,4.543379762,149.108323,0,149.108323,2.977612094,146.1307109,0.894400028,4.723058357,1.166025445,-1.166025445,0.330751595,0.163843452,2.000920638,64.35648584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.05799787,2.157269826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449660191,61.86190211,93.50765806,64.01917193,674.5334736,0,0.837881345,33.08293353,-0.837881345,146.9170665,0.990325679,0,761.5154785,64.01917193,803.4147462,6,16,6% -6/9/2018 1:00,63.01907412,279.195123,404.0595461,708.9201973,82.42681028,573.8484078,490.8610985,82.98730937,79.94133783,3.045971534,100.4543874,0,100.4543874,2.485472453,97.96891498,1.099890335,4.872874153,1.714698472,-1.714698472,0.236922981,0.203996691,1.195812383,38.46143683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.84265464,1.800716331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866362001,36.97059603,77.70901664,38.77131236,490.8610985,0,0.692406706,46.17907628,-0.692406706,133.8209237,0.977788105,0,557.6671602,38.77131236,583.0422087,6,17,5% -6/9/2018 2:00,74.5069126,287.3757137,195.8172176,516.0339763,57.97313077,322.3906186,264.6894387,57.70117988,56.22502698,1.4761529,49.2262553,0,49.2262553,1.748103791,47.47815151,1.30039094,5.015652394,2.866837733,-2.866837733,0.039895563,0.296057372,0.478482503,15.38964207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.04563456,1.266495246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346658945,14.79310933,54.3922935,16.05960458,264.6894387,0,0.512930254,59.14078962,-0.512930254,120.8592104,0.95252086,0,306.5145053,16.05960458,317.0251953,6,18,3% -6/9/2018 3:00,85.39260961,295.8479372,22.81102537,109.8444775,13.98749367,48.11378948,34.3761112,13.73767827,13.56571913,0.171959145,5.95257174,0,5.95257174,0.421774543,5.530797197,1.490382195,5.16352059,8.643542487,-8.643542487,0,0.613190045,0.105443636,3.391429782,0.486647478,1,0.115181229,0,0.949500692,0.988262655,0.724496596,1,13.15059786,0.30557422,0.06763092,0.312029739,0.826179835,0.550676431,0.961238037,0.922476074,0.072202473,3.259971306,13.22280034,3.565545526,17.64706339,0,0.312952567,71.7627437,-0.312952567,108.2372563,0.890231379,0,28.93276992,3.565545526,31.26634816,6,19,8% -6/9/2018 4:00,95.7680309,305.1558645,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671467457,5.325974566,-5.656184593,5.656184593,0.502581778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099982228,84.26185289,-0.099982228,95.73814711,0.549911126,0,0,0,0,6,20,0% -6/9/2018 5:00,104.7788048,315.7899602,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82873513,5.51157455,-1.554429394,1.554429394,0.795976772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.10408779,95.97461281,0.10408779,84.02538719,0,0.569636262,0,0,0,6,21,0% -6/9/2018 6:00,112.083375,328.1435689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956223931,5.727185696,-0.506408568,0.506408568,0.616754655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288166318,106.748208,0.288166318,73.25179205,0,0.87648909,0,0,0,6,22,0% -6/9/2018 7:00,117.0565261,342.3097898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043021791,5.974432893,0.078905603,-0.078905603,0.516660037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.439713036,116.0855732,0.439713036,63.91442684,0,0.936289475,0,0,0,6,23,0% -6/10/2018 8:00,119.1078,357.7874212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078823274,6.244568522,0.548674707,-0.548674707,0.436324789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548404491,123.2576231,0.548404491,56.74237688,0,0.958826421,0,0,0,6,0,0% -6/10/2018 9:00,117.9408063,13.44698419,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058455393,0.234694149,1.039179467,-1.039179467,0.352443534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606836972,127.3611452,0.606836972,52.63885483,0,0.967605548,0,0,0,6,1,0% -6/10/2018 10:00,113.7284779,28.05799785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984936393,0.489704444,1.692187573,-1.692187573,0.240772571,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61103055,127.6640558,0.61103055,52.33594419,0,0.968171031,0,0,0,6,2,0% -6/10/2018 11:00,107.0072058,40.92484807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867628064,0.714273345,2.857384447,-2.857384447,0.041512171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560699989,124.1042205,0.560699989,55.89577951,0,0.960825752,0,0,0,6,3,0% -6/10/2018 12:00,98.41333843,52.00254829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717636784,0.907615687,6.430276348,-6.430276348,0,#DIV/0!,0,0,0.362849674,1,0.154278506,0,0.944813184,0.983575147,0.724496596,1,0,0,0.052963509,0.312029739,0.860809358,0.585305954,0.961238037,0.922476074,0,0,0,0,0,0,-0.459274118,117.3402776,0.459274118,62.65972245,0,0.941132554,0,0,0,6,4,0% -6/10/2018 13:00,88.18308515,61.62805609,2.64849126,14.92208081,2.175374275,2.12974416,0,2.12974416,2.109778714,0.019965446,5.309896248,4.602143318,0.70775293,0.065595561,0.642157369,1.53908518,1.07561249,-31.18815339,31.18815339,0,0.821363584,0.01639889,0.527444678,1,0.794392763,0,0.032052476,0.961238037,1,0.637624518,0.913127922,2.027999549,0.045541031,0.115824807,0.213447441,0.724496596,0.448993192,0.975827302,0.937065338,0.01188094,0.51049132,2.039880489,0.556032351,0,0.946233971,-0.308411633,107.9635342,0.308411633,72.0364658,0,0.887879008,2.039880489,1.39617363,2.953648207,6,5,45% -6/10/2018 14:00,77.61460371,70.27496158,140.3993821,428.9971124,48.38534307,47.98473631,0,47.98473631,46.92634646,1.058389847,92.34479322,56.84434092,35.50045229,1.458996617,34.04145568,1.354630382,1.226529461,-4.553742375,4.553742375,0.6911105,0.344626467,0.844131521,27.15017139,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10738915,1.057038082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611570413,26.09777745,45.71895956,27.15481553,0,56.84434092,-0.132505183,97.61438135,0.132505183,82.38561865,0,0.67265627,45.71895956,65.39151788,88.51640018,6,6,94% -6/10/2018 15:00,66.25283028,78.467784,346.0798842,668.8494605,76.73321983,123.022817,45.99449054,77.02832649,74.41943014,2.608896352,86.22486438,0,86.22486438,2.313789693,83.91107469,1.156330027,1.369521187,-2.248199308,2.248199308,0.914618414,0.221721121,2.435533403,78.33512632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53478693,1.676332756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764535659,75.29870304,73.29932259,76.9750358,45.99449054,0,0.068766581,86.05685322,-0.068766581,93.94314678,0,0,73.29932259,76.9750358,123.677944,6,7,69% -6/10/2018 16:00,54.53156194,86.83857689,549.6783359,784.0266762,94.74340406,314.4997299,218.4694815,96.03024835,91.88654086,4.143707481,136.1327397,0,136.1327397,2.856863198,133.2758765,0.951755302,1.515619084,-1.343404031,1.343404031,0.759889309,0.172361539,3.320249864,106.7906489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32483815,2.069787662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405509724,102.6512337,90.73034788,104.7210214,218.4694815,0,0.278650572,73.82031688,-0.278650572,106.1796831,0.870563799,0,280.9219697,104.7210214,349.4597838,6,8,24% -6/10/2018 17:00,42.71236775,96.36251738,729.3476772,846.132073,107.6367438,518.2198822,408.3306525,109.8892297,104.3910989,5.498130868,180.0844334,0,180.0844334,3.245644963,176.8387884,0.745471449,1.681843204,-0.827165432,0.827165432,0.671607309,0.14757947,3.9590464,127.3365413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3446949,2.351458727,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868315639,122.400727,103.2130106,124.7521857,408.3306525,0,0.482585007,61.14563056,-0.482585007,118.8543694,0.946391311,0,489.653592,124.7521857,571.3014025,6,9,17% -6/10/2018 18:00,31.16866418,109.0680956,870.6990874,881.1280986,116.7640785,707.1766738,587.3697657,119.8069082,113.2432107,6.563697506,214.6319421,0,214.6319421,3.520867779,211.1110743,0.543995813,1.903597377,-0.46962285,0.46962285,0.610463927,0.134103825,4.349776806,139.9037743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8536815,2.55085672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151398489,134.4808294,112.00508,137.0316861,587.3697657,0,0.666611094,48.19395686,-0.666611094,131.8060431,0.974993748,0,684.686929,137.0316861,774.3714269,6,10,13% -6/10/2018 19:00,20.83095699,130.3874441,963.2994374,899.679318,122.42885,862.0884656,736.0895391,125.9989265,118.7371685,7.261758059,237.2547828,0,237.2547828,3.691681543,233.5631013,0.363568786,2.275690203,-0.188008857,0.188008857,0.562305098,0.127093244,4.487281123,144.3263859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1346827,2.674610711,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251019899,138.7320118,117.3857026,141.4066225,736.0895391,0,0.81816879,35.09809948,-0.81816879,144.9019005,0.988887916,0,845.2957528,141.4066225,937.8435591,6,11,11% -6/10/2018 20:00,14.90843555,172.3791457,1000.508316,906.3673918,124.6508719,968.5689154,840.1344729,128.4344425,120.8921882,7.542254306,246.3435085,0,246.3435085,3.758683701,242.5848248,0.260201287,3.008583654,0.05707586,-0.05707586,0.520393143,0.124587542,4.37561004,140.73466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2061697,2.723153547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.170114579,135.2795083,119.3762843,138.0026618,840.1344729,0,0.926924866,22.03957831,-0.926924866,157.9604217,0.996058195,0,956.1991112,138.0026618,1046.519093,6,12,9% -6/10/2018 21:00,18.44976428,220.3586599,979.6897938,902.674839,123.4110905,1016.633628,889.5585214,127.0751063,119.6897908,7.385315488,241.2584327,0,241.2584327,3.721299718,237.537133,0.322009133,3.84598415,0.289962504,-0.289962504,0.480567181,0.125969558,4.032381545,129.6952517,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0503795,2.696068978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.921446703,124.6680091,117.9718262,127.3640781,889.5585214,0,0.985469499,9.779242276,-0.985469499,170.2207577,0.999262763,0,1006.874532,127.3640781,1090.231774,6,13,8% -6/10/2018 22:00,28.03773347,246.1826634,902.3244522,887.7953109,118.7223793,1000.701688,878.7571235,121.9445643,115.1424615,6.802102864,222.358928,0,222.358928,3.579917773,218.7790102,0.489350764,4.296698037,0.531372948,-0.531372948,0.439283564,0.131573935,3.489881671,112.2465909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6793136,2.59363824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.528407391,107.8956927,113.207721,110.4893309,878.7571235,0,0.989819514,8.182594127,-0.989819514,171.8174059,0.99948574,0,991.5129352,110.4893309,1063.825993,6,14,7% -6/10/2018 23:00,39.37997609,260.5206806,773.9451151,858.204712,110.5911882,919.5378037,806.4470227,113.090781,107.2564558,5.834325193,190.9866859,0,190.9866859,3.334732362,187.6519536,0.687310242,4.546943646,0.807025324,-0.807025324,0.392144231,0.142892805,2.794656043,89.8857449,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.098985,2.416002244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02471879,86.40159697,105.1237038,88.81759921,806.4470227,0,0.939690742,20.00031472,-0.939690742,159.9996853,0.996791005,0,908.982842,88.81759921,967.1121843,6,15,6% -6/10/2018 0:00,51.16716641,270.6631142,603.9311536,805.5052813,98.83881617,775.8451593,675.43401,100.4111493,95.85846119,4.552688138,149.4104553,0,149.4104553,2.980354984,146.4301003,0.893035523,4.723962507,1.162375857,-1.162375857,0.331375711,0.163659079,2.006834702,64.54670246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.14279905,2.15925704,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45394491,62.04474555,93.59674396,64.20400259,675.43401,0,0.838522137,33.01561156,-0.838522137,146.9843884,0.990371282,0,762.5271904,64.20400259,804.547426,6,16,6% -6/10/2018 1:00,62.94023194,279.2382994,405.4595044,709.8002165,82.55739888,575.2005728,492.076059,83.12451371,80.0679887,3.056525011,100.7977613,0,100.7977613,2.489410181,98.30835108,1.098514279,4.873627723,1.708158274,-1.708158274,0.238041421,0.203614413,1.201786417,38.65358229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.96439627,1.803569202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870690168,37.15529356,77.83508644,38.95886276,492.076059,0,0.693259945,46.11128101,-0.693259945,133.888719,0.977876981,0,559.0249376,38.95886276,584.5227341,6,17,5% -6/10/2018 2:00,74.42654589,287.4111571,197.2706038,518.0146558,58.19737234,324.1758471,266.2462311,57.92961597,56.44250683,1.487109139,49.58540732,0,49.58540732,1.754865501,47.83054182,1.298988277,5.016270998,2.849947001,-2.849947001,0.042784049,0.295012897,0.483570862,15.5533012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.25468446,1.271394082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350345444,14.95042471,54.60502991,16.2218188,266.2462311,0,0.513974321,59.07107819,-0.513974321,120.9289218,0.952718875,0,308.2628398,16.2218188,318.8796958,6,18,3% -6/10/2018 3:00,85.31202266,295.8756211,23.67210691,113.4416184,14.40059407,49.77961111,35.63479775,14.14481336,13.96636302,0.178450341,6.173807429,0,6.173807429,0.434231044,5.739576385,1.488975687,5.164003764,8.490082218,-8.490082218,0,0.608335968,0.108557761,3.491590756,0.479637129,1,0.117244297,0,0.949262087,0.98802405,0.724496596,1,13.53944446,0.314598913,0.066838225,0.312029739,0.828007643,0.552504239,0.961238037,0.922476074,0.074323626,3.356249843,13.61376808,3.670848756,18.54302568,0,0.314124554,71.69202801,-0.314124554,108.307972,0.89082747,0,30.13240473,3.670848756,32.53490182,6,19,8% -6/10/2018 4:00,95.68286169,305.1745173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669980974,5.32630012,-5.738839919,5.738839919,0.488446885,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.101310132,84.18538132,-0.101310132,95.81461868,0.556465947,0,0,0,0,6,20,0% -6/10/2018 5:00,104.6921099,315.796824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827222018,5.511694346,-1.563603604,1.563603604,0.797545654,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102694862,95.89437388,0.102694862,84.10562612,0,0.563120725,0,0,0,6,21,0% -6/10/2018 6:00,111.9970526,328.1345114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95471732,5.727027614,-0.508989759,0.508989759,0.617196065,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286765239,106.6643944,0.286765239,73.33560564,0,0.87564135,0,0,0,6,22,0% -6/10/2018 7:00,116.9740102,342.2806202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041581617,5.973923788,0.078187429,-0.078187429,0.516782852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438361342,115.999375,0.438361342,64.000625,0,0.935938847,0,0,0,6,23,0% -6/11/2018 8:00,119.0336839,357.7368547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077529705,6.243685971,0.548834355,-0.548834355,0.436297487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547156402,123.1721481,0.547156402,56.82785186,0,0.95861845,0,0,0,6,0,0% -6/11/2018 9:00,117.8792357,13.37891689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057380782,0.23350615,1.040008166,-1.040008166,0.352301819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605739648,127.2820852,0.605739648,52.71791484,0,0.967456286,0,0,0,6,1,0% -6/11/2018 10:00,113.681396,27.97958433,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984114658,0.48833587,1.693882083,-1.693882083,0.240482793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610120838,127.5982409,0.610120838,52.40175914,0,0.968049021,0,0,0,6,2,0% -6/11/2018 11:00,106.9741096,40.84225534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867050428,0.71283183,2.860998705,-2.860998705,0.040894096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560001887,124.0559283,0.560001887,55.94407173,0,0.960714587,0,0,0,6,3,0% -6/11/2018 12:00,98.39229646,51.91885723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717269532,0.906155003,6.443566756,-6.443566756,0,#DIV/0!,0,0,0.363771005,1,0.153965304,0,0.944852116,0.983614079,0.724496596,1,0,0,0.053078146,0.312029739,0.860532077,0.585028673,0.961238037,0.922476074,0,0,0,0,0,0,-0.458797127,117.3095155,0.458797127,62.69048452,0,0.94101937,0,0,0,6,4,0% -6/11/2018 13:00,88.17263884,61.54357686,2.68468838,15.1142449,2.2027244,2.156542447,0,2.156542447,2.136304132,0.020238315,5.375030451,4.657676403,0.717354048,0.066420268,0.65093378,1.538902858,1.07413805,-31.00298057,31.00298057,0,0.820476751,0.016605067,0.534076033,1,0.793045313,0,0.032243784,0.961238037,1,0.637130222,0.912633626,2.05349679,0.046105426,0.115824807,0.212887669,0.724496596,0.448993192,0.975904221,0.937142258,0.012030314,0.516922713,2.065527104,0.563028139,0,0.96392796,-0.308164677,107.9486602,0.308164677,72.05133981,0,0.887749088,2.065527104,1.418754307,2.994073423,6,5,45% -6/11/2018 14:00,77.61066715,70.1880619,140.4682656,429.1214834,48.39875388,47.998262,0,47.998262,46.93935288,1.05890912,92.35003418,56.83247589,35.51755829,1.459401002,34.05815729,1.354561676,1.225012776,-4.552277292,4.552277292,0.691361044,0.34455294,0.844695516,27.16831141,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11989141,1.057331058,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611979026,26.11521432,45.73187044,27.17254538,0,56.83247589,-0.13243913,97.61056313,0.13243913,82.38943687,0,0.672468072,45.73187044,65.39057089,88.52869128,6,6,94% -6/11/2018 15:00,66.254027,78.37520129,346.0582505,668.8330542,76.73098005,122.9558827,45.92989151,77.02599116,74.4172579,2.608733268,86.21955152,0,86.21955152,2.313722156,83.90582937,1.156350914,1.367905314,-2.24886464,2.24886464,0.914732193,0.221728509,2.435613807,78.33771239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.53269889,1.676283826,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764593912,75.30118887,73.2972928,76.97747269,45.92989151,0,0.068671683,86.06230335,-0.068671683,93.93769665,0,0,73.2972928,76.97747269,123.6775091,6,7,69% -6/11/2018 16:00,54.53551901,86.73489461,549.6132288,783.9991662,94.73835938,314.3208158,218.2959509,96.02486498,91.8816483,4.143216677,136.1168016,0,136.1168016,2.856711083,133.2600905,0.951824366,1.513809487,-1.34433404,1.34433404,0.76004835,0.172372779,3.320413134,106.7959002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32013523,2.069677455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405628012,102.6562815,90.72576325,104.7259589,218.2959509,0,0.278439009,73.83293804,-0.278439009,106.167062,0.87042746,0,280.7365533,104.7259589,349.2775989,6,8,24% -6/11/2018 17:00,42.7158807,96.23831867,729.2991381,846.1183412,107.6334851,517.9764327,408.0907293,109.8857034,104.3879384,5.49776496,180.0725663,0,180.0725663,3.245546702,176.8270196,0.745532761,1.679675527,-0.828153963,0.828153963,0.671776358,0.147584824,3.959584812,127.3538585,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.341657,2.351387537,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868705718,122.417373,103.2103627,124.7687605,408.0907293,0,0.482309282,61.16366624,-0.482309282,118.8363338,0.94633208,0,489.3997114,124.7687605,571.0583698,6,9,17% -6/11/2018 18:00,31.16604714,108.9056602,870.7267768,881.1340987,116.7658047,706.9330931,587.124302,119.8087911,113.2448849,6.56390624,214.6387078,0,214.6387078,3.520919831,211.117788,0.543950138,1.900762345,-0.470653179,0.470653179,0.610640124,0.134101543,4.350910745,139.9402457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8552908,2.550894432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152220024,134.5158871,112.0075108,137.0667815,587.124302,0,0.666327978,48.21571497,-0.666327978,131.784285,0.974961878,0,684.431323,137.0667815,774.1387901,6,10,13% -6/11/2018 19:00,20.80924475,130.159458,963.4574706,899.7085829,122.4383475,861.9127962,735.9034672,126.009329,118.7463796,7.26294938,237.2933862,0,237.2933862,3.691967927,233.6014183,0.363189836,2.271711094,-0.189107774,0.189107774,0.562493024,0.127082255,4.489173788,144.3872605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1435368,2.674818195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.252391128,138.7905268,117.3959279,141.465345,735.9034672,0,0.817935364,35.12135336,-0.817935364,144.8786466,0.988870475,0,845.1091394,141.465345,937.6953784,6,11,11% -6/11/2018 20:00,14.84513509,172.1659893,1000.841297,906.4254602,124.6706332,968.5263087,840.0701907,128.4561181,120.9113536,7.544764455,246.4248394,0,246.4248394,3.759279576,242.6655598,0.259096485,3.004863374,0.055858758,-0.055858758,0.520601279,0.124565836,4.378362483,140.823188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2245922,2.723585256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.172108715,135.3646048,119.3967009,138.08819,840.0701907,0,0.926794566,22.05946506,-0.926794566,157.9405349,0.996050612,0,956.1491281,138.08819,1046.525087,6,12,9% -6/11/2018 21:00,18.36630756,220.3560025,980.2296034,902.77215,123.4433459,1016.781956,889.6714981,127.1104584,119.7210736,7.389384801,241.3902884,0,241.3902884,3.722272337,237.668016,0.320552538,3.84593777,0.288548682,-0.288548682,0.480808959,0.125933093,4.036025026,129.8124386,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0804497,2.696773637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.924086392,124.7806536,118.0045361,127.4774272,889.6714981,0,0.985488418,9.772858305,-0.985488418,170.2271417,0.999263737,0,1007.021002,127.4774272,1090.452428,6,13,8% -6/11/2018 22:00,27.95825198,246.2353659,903.0877254,887.951754,118.7693229,1001.088692,879.0928462,121.9958463,115.1879896,6.80785674,222.5454079,0,222.5454079,3.581333297,218.9640746,0.48796355,4.297617869,0.529629841,-0.529629841,0.439581652,0.131514713,3.494370137,112.3909554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.723077,2.594663782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531659269,108.0344614,113.2547362,110.6291251,879.0928462,0,0.99002321,8.100181892,-0.99002321,171.8998181,0.999496134,0,991.904637,110.6291251,1064.309187,6,14,7% -6/11/2018 23:00,39.30370348,260.572401,774.931349,858.4599483,110.6556696,920.2004673,807.0397146,113.1607527,107.3189929,5.841759841,191.2277541,0,191.2277541,3.336676714,187.8910774,0.685979034,4.547846337,0.804701806,-0.804701806,0.392541576,0.142794158,2.799856709,90.05301621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.159098,2.417410921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.028486655,86.56238451,105.1875847,88.97979543,807.0397146,0,0.940101767,19.93134607,-0.940101767,160.0686539,0.996814269,0,909.6562876,88.97979543,967.8917841,6,15,6% -6/11/2018 0:00,51.09177722,270.7070619,605.1206499,805.9459592,98.92635085,776.8132933,676.3082819,100.5050114,95.94335637,4.561655063,149.7015019,0,149.7015019,2.982994477,146.7185074,0.891719733,4.724729539,1.158914126,-1.158914126,0.331967702,0.163482028,2.012506312,64.72912093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22440353,2.161169344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458053972,62.22009313,93.6824575,64.38126248,676.3082819,0,0.839148425,32.94969569,-0.839148425,147.0503043,0.990415785,0,763.5088555,64.38126248,805.6451042,6,16,6% -6/11/2018 1:00,62.86430466,279.2746369,406.8070169,710.6437358,82.68281946,576.5098808,493.2535703,83.25631052,80.18962739,3.066683129,101.1282632,0,101.1282632,2.493192074,98.63507109,1.097189098,4.874261931,1.701980445,-1.701980445,0.239097892,0.203248263,1.207506247,38.83755168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.08132001,1.80630917,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.874834165,37.33213193,77.95615417,39.1384411,493.2535703,0,0.694094024,46.04493346,-0.694094024,133.9550665,0.97796365,0,560.3402162,39.1384411,585.9555432,6,17,5% -6/11/2018 2:00,74.34939001,287.4404156,198.6665809,519.9046206,58.41165789,325.8948845,267.746921,58.14796349,56.65033089,1.497632604,49.93033962,0,49.93033962,1.761327001,48.16901262,1.297641653,5.016781656,2.834070872,-2.834070872,0.045499027,0.294018539,0.48843791,15.70984218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.45445285,1.276075417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.353871603,15.10089786,54.80832445,16.37697327,267.746921,0,0.514992386,59.00305395,-0.514992386,120.9969461,0.952911186,0,309.9473605,16.37697327,320.665762,6,18,3% -6/11/2018 3:00,85.234958,295.8975773,24.5075741,116.901635,14.79657453,51.39002948,36.85487782,14.53515166,14.35040321,0.184748446,6.388316394,0,6.388316394,0.446171315,5.942145078,1.487630655,5.164386972,8.348852383,-8.348852383,0,0.603755168,0.111542829,3.587600802,0.473014149,1,0.119209028,0,0.949033945,0.987795908,0.724496596,1,13.91215554,0.323249599,0.066085328,0.312029739,0.829748315,0.554244911,0.961238037,0.922476074,0.076357973,3.448538352,13.98851351,3.771787952,19.42199914,0,0.315264007,71.62324764,-0.315264007,108.3767524,0.891402764,0,31.30133723,3.771787952,33.76989701,6,19,8% -6/11/2018 4:00,95.60194945,305.1878418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.668568789,5.326532676,-5.820325112,5.820325112,0.474512096,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102592855,84.11150174,-0.102592855,95.88849826,0.562636625,0,0,0,0,6,20,0% -6/11/2018 5:00,104.6103547,315.798858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82579512,5.511729846,-1.572623379,1.572623379,0.799088126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.101357726,95.81735975,0.101357726,84.18264025,0,0.556697695,0,0,0,6,21,0% -6/11/2018 6:00,111.9163952,328.1214168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953309582,5.726799069,-0.511616052,0.511616052,0.617645187,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285430366,106.5845753,0.285430366,73.41542466,0,0.874825926,0,0,0,6,22,0% -6/11/2018 7:00,116.8978037,342.248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040251563,5.973366205,0.077347057,-0.077347057,0.516926564,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437085351,115.9180624,0.437085351,64.08193758,0,0.935605867,0,0,0,6,23,0% -6/12/2018 8:00,118.9662728,357.6852135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076353159,6.24278466,0.548808239,-0.548808239,0.436301953,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545991942,123.0924756,0.545991942,56.90752444,0,0.958423557,0,0,0,6,0,0% -6/12/2018 9:00,117.8244053,13.31158818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056423812,0.232331042,1.04056044,-1.04056044,0.352207374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604731762,127.2095421,0.604731762,52.79045788,0,0.967318714,0,0,0,6,1,0% -6/12/2018 10:00,113.6407678,27.90342971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983405562,0.487006721,1.69511876,-1.69511876,0.240271309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609303857,127.5391843,0.609303857,52.46081568,0,0.967939138,0,0,0,6,2,0% -6/12/2018 11:00,106.9470006,40.76299678,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866577286,0.711448507,2.86363966,-2.86363966,0.040442466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559397065,124.014111,0.559397065,55.98588896,0,0.960618051,0,0,0,6,3,0% -6/12/2018 12:00,98.37673096,51.83922618,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716997863,0.904765179,6.452777337,-6.452777337,0,#DIV/0!,0,0,0.364407948,1,0.153748986,0,0.944878992,0.983640955,0.724496596,1,0,0,0.053157347,0.312029739,0.860340568,0.584837164,0.961238037,0.922476074,0,0,0,0,0,0,-0.458411182,117.2846314,0.458411182,62.7153686,0,0.940927617,0,0,0,6,4,0% -6/12/2018 13:00,88.16679987,61.46370632,2.705050814,15.22230454,2.218090519,2.171598721,0,2.171598721,2.151206906,0.020391816,5.411185568,4.688431067,0.722754501,0.066883613,0.655870888,1.538800949,1.072744046,-30.89773017,30.89773017,0,0.819981091,0.016720903,0.537801726,1,0.792271535,0,0.032353544,0.961238037,1,0.636846761,0.912350165,2.067821903,0.046422355,0.115824807,0.212566667,0.724496596,0.448993192,0.9759483,0.937186337,0.012114237,0.520536321,2.07993614,0.566958676,0,0.97392059,-0.307997456,107.9385892,0.307997456,72.06141076,0,0.887660997,2.07993614,1.431469997,3.016804624,6,5,45% -6/12/2018 14:00,77.61132093,70.10629794,140.4568252,429.1008306,48.39652686,47.99601589,0,47.99601589,46.93719301,1.058822877,92.34983657,56.83511931,35.51471726,1.459333849,34.05538342,1.354573087,1.223585725,-4.552541871,4.552541871,0.691315799,0.344565149,0.844599309,27.16521707,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.11781527,1.057282406,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611909324,26.11223993,45.72972459,27.16952233,0,56.83511931,-0.132451665,97.6112877,0.132451665,82.3887123,0,0.672503801,45.72972459,65.39135607,88.52705932,6,6,94% -6/12/2018 15:00,66.2595534,78.28839251,345.9583463,668.7572743,76.72063547,122.8296542,45.81444876,77.01520539,74.40722525,2.607980148,86.19501665,0,86.19501665,2.313410229,83.88160642,1.156447368,1.366390215,-2.249952439,2.249952439,0.914918217,0.221762638,2.435295814,78.32748466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52305512,1.676057835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.764363527,75.29135758,73.28741865,76.96741542,45.81444876,0,0.068506842,86.07177035,-0.068506842,93.92822965,0,0,73.28741865,76.96741542,123.6610527,6,7,69% -6/12/2018 16:00,54.54367385,86.63787329,549.4790454,783.9424551,94.72796141,314.0811364,218.0673674,96.01376901,91.87156386,4.142205145,136.0839538,0,136.0839538,2.856397545,133.2275562,0.951966695,1.512116146,-1.345421766,1.345421766,0.760234362,0.172395949,3.320263182,106.7910772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.31044169,2.069450298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405519372,102.6516454,90.71596106,104.7210957,218.0673674,0,0.27816757,73.84913007,-0.27816757,106.1508699,0.870252231,0,280.4895741,104.7210957,349.0274369,6,8,24% -6/12/2018 17:00,42.72367079,96.12208597,729.1914897,846.0878826,107.6262577,517.6789344,407.801052,109.8778824,104.380929,5.496953461,180.0462477,0,180.0462477,3.245328769,176.800919,0.745668724,1.677646884,-0.829206498,0.829206498,0.671956352,0.1475967,3.959865169,127.3628758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3349192,2.351229646,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868908835,122.4260407,103.2038281,124.7772703,407.801052,0,0.481984272,61.18492168,-0.481984272,118.8150783,0.946262175,0,489.0905385,124.7772703,570.7547664,6,9,17% -6/12/2018 18:00,31.16816113,108.7530097,870.7044101,881.129252,116.7644103,706.6445791,586.837309,119.8072701,113.2435325,6.563737631,214.6332427,0,214.6332427,3.520877785,211.1123649,0.543987033,1.898098091,-0.471702813,0.471702813,0.610819622,0.134103387,4.351823873,139.969615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8539909,2.55086397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152881582,134.544118,112.0068725,137.0949819,586.837309,0,0.666005932,48.24045588,-0.666005932,131.7595441,0.974925594,0,684.1295843,137.0949819,773.855508,6,10,13% -6/12/2018 19:00,20.79340146,129.9420313,963.5726873,899.7299143,122.4452715,861.701235,735.6843223,126.0169127,118.7530948,7.263817931,237.3215306,0,237.3215306,3.692176711,233.6293539,0.362913318,2.267916284,-0.190198916,0.190198916,0.56267962,0.127074245,4.490868344,144.4417632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1499917,2.674969458,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253618827,138.8429169,117.4036105,141.5178863,735.6843223,0,0.817672404,35.1475333,-0.817672404,144.8524667,0.988850816,0,844.8856532,141.5178863,937.5062795,6,11,11% -6/12/2018 20:00,14.78883469,171.9514321,1001.136293,906.4768787,124.6881384,968.4553353,839.9800161,128.4753192,120.928331,7.546988258,246.4968924,0,246.4968924,3.759807423,242.737085,0.258113858,3.001118644,0.05467038,-0.05467038,0.520804504,0.124546617,4.380926172,140.905645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2409115,2.723967679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173966099,135.4438656,119.4148776,138.1678333,839.9800161,0,0.926642517,22.0826497,-0.926642517,157.9173503,0.996041759,0,956.0700505,138.1678333,1046.498134,6,12,9% -6/12/2018 21:00,18.28807435,220.3394292,980.7334846,902.8629078,123.4734492,1016.906924,889.7634714,127.1434524,119.7502691,7.393183271,241.5133679,0,241.5133679,3.72318006,237.7901879,0.319187111,3.845648512,0.287184463,-0.287184463,0.481042254,0.125899086,4.039476828,129.9234604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1085136,2.69743128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.926587211,124.887372,118.0351008,127.5848033,889.7634714,0,0.985491223,9.771911441,-0.985491223,170.2280886,0.999263881,0,1007.1436,127.5848033,1090.645302,6,13,8% -6/12/2018 22:00,27.88240832,246.2760226,903.8142166,888.100468,118.8139907,1001.454062,879.4094183,122.0446438,115.2313105,6.813333337,222.722901,0,222.722901,3.582680196,219.1402208,0.486639829,4.298327462,0.527962564,-0.527962564,0.439866774,0.131458422,3.498653508,112.5287233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7647187,2.595639606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534762556,108.1668891,113.2994812,110.7625287,879.4094183,0,0.990213889,8.022274281,-0.990213889,171.9777257,0.999505859,0,992.2743471,110.7625287,1064.766207,6,14,7% -6/12/2018 23:00,39.2304434,260.6146254,775.8771462,858.704264,110.7174741,920.8392877,807.6114643,113.2278234,107.3789338,5.84888966,191.4589372,0,191.4589372,3.338540348,188.1203969,0.684700404,4.548583292,0.802494192,-0.802494192,0.3929191,0.142699749,2.804831483,90.21302203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2167155,2.418761117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.032090861,86.71618819,105.2488063,89.13494931,807.6114643,0,0.940500121,19.86428447,-0.940500121,160.1357155,0.996836796,0,910.3056307,89.13494931,968.6426723,6,15,6% -6/12/2018 0:00,51.01926261,270.7431596,606.2636679,806.3682762,99.01038026,777.7506377,677.1555141,100.5951236,96.02485199,4.570271616,149.9811736,0,149.9811736,2.985528274,146.9956454,0.890454115,4.725359562,1.155642225,-1.155642225,0.33252723,0.163312409,2.017929467,64.90354825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.30274021,2.163005072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.46198303,62.3877593,93.76472324,64.55076437,677.1555141,0,0.839759616,32.88525561,-0.839759616,147.1147444,0.990459152,0,764.4595993,64.55076437,806.7067835,6,16,6% -6/12/2018 1:00,62.79137872,279.3041531,408.1006244,711.4502721,82.80296994,577.7750747,494.3924849,83.38258978,80.30615489,3.076434889,101.4455363,0,101.4455363,2.496815054,98.94872122,1.0959163,4.874777087,1.696166433,-1.696166433,0.240092146,0.202898415,1.212965198,39.0131303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.19333067,1.808934007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.878789157,37.50090478,78.07211983,39.30983879,494.3924849,0,0.694907999,45.98011364,-0.694907999,134.0198864,0.978048029,0,561.6117153,39.30983879,587.3392186,6,17,5% -6/12/2018 2:00,74.27553275,287.4635179,200.0034627,521.7032327,58.61587478,327.5462066,269.1901062,58.35610047,56.84838989,1.507710584,50.26063998,0,50.26063998,1.767484894,48.49315509,1.2963526,5.017184866,2.819200876,-2.819200876,0.048041946,0.2930743,0.49307622,15.85902618,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.64483469,1.280536789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.357232043,15.24429919,55.00206674,16.52483598,269.1901062,0,0.515983205,58.93680354,-0.515983205,121.0631965,0.953097621,0,311.5665166,16.52483598,322.3816912,6,18,3% -6/12/2018 3:00,85.16150863,295.9138463,25.31459024,120.2161367,15.17468736,52.94064885,38.03270222,14.90794663,14.71711455,0.190832074,6.5953883,0,6.5953883,0.457572813,6.137815487,1.486348721,5.16467092,8.219115005,-8.219115005,0,0.599444321,0.114393203,3.679278638,0.466779782,1,0.121072528,0,0.948816736,0.987578699,0.724496596,1,14.26802767,0.331509945,0.065373029,0.312029739,0.831399283,0.555895879,0.961238037,0.922476074,0.07830161,3.536662575,14.34632928,3.86817252,20.27980576,0,0.31636936,71.55649939,-0.31636936,108.4435006,0.891956882,0,32.4350416,3.86817252,34.96668315,6,19,8% -6/12/2018 4:00,95.52537694,305.1958922,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667232347,5.326673183,-5.900305334,5.900305334,0.460834672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103828809,84.04030657,-0.103828809,95.95969343,0.568438085,0,0,0,0,6,20,0% -6/12/2018 5:00,104.5336139,315.7961323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824455742,5.511682273,-1.581464763,1.581464763,0.800600092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100077995,95.74366181,0.100077995,84.25633819,0,0.550389673,0,0,0,6,21,0% -6/12/2018 6:00,111.8414647,328.1043704,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952001799,5.726501553,-0.514280934,0.514280934,0.618100909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284163231,106.5088374,0.284163231,73.49116265,0,0.874044793,0,0,0,6,22,0% -6/12/2018 7:00,116.8279511,342.2140449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039032404,5.97276183,0.076387241,-0.076387241,0.517090702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.435886415,115.8417113,0.435886415,64.15828873,0,0.935291217,0,0,0,6,23,0% -6/13/2018 8:00,118.9055907,357.6325972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075294057,6.241866334,0.548597867,-0.548597867,0.436337929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544912197,123.0186637,0.544912197,56.98133632,0,0.958242098,0,0,0,6,0,0% -6/13/2018 9:00,117.7763191,13.24509502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055584549,0.231170518,1.040837364,-1.040837364,0.352160017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603814066,127.1435511,0.603814066,52.85644886,0,0.967193052,0,0,0,6,1,0% -6/13/2018 10:00,113.6065783,27.82962578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982808842,0.4857186,1.695898728,-1.695898728,0.240137927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608579977,127.4868968,0.608579977,52.51310324,0,0.96784153,0,0,0,6,2,0% -6/13/2018 11:00,106.9258469,40.68715911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866208084,0.71012489,2.865309155,-2.865309155,0.040156966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558885492,123.9787571,0.558885492,56.02124295,0,0.960536236,0,0,0,6,3,0% -6/13/2018 12:00,98.3665955,51.76373774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716820965,0.903447657,6.457909014,-6.457909014,0,#DIV/0!,0,0,0.364762268,1,0.153628726,0,0.944893929,0.983655892,0.724496596,1,0,0,0.053201388,0.312029739,0.860234099,0.584730695,0.961238037,0.922476074,0,0,0,0,0,0,-0.458115859,117.265594,0.458115859,62.734406,0,0.940857304,0,0,0,6,4,0% -6/13/2018 13:00,88.16551693,61.38852457,2.709537381,15.24610996,2.221474342,2.174914331,0,2.174914331,2.154488694,0.020425637,5.418363549,4.694419193,0.723944356,0.066985648,0.656958708,1.538778557,1.071431877,-30.8699993,30.8699993,0,0.819872188,0.016746412,0.538622173,1,0.792066699,0,0.032382587,0.961238037,1,0.636771771,0.912275175,2.070976483,0.046491932,0.115824807,0.212481746,0.724496596,0.448993192,0.975959958,0.937197994,0.012132718,0.521332431,2.083109201,0.567824363,0,0.976126078,-0.30790931,107.9332809,0.30790931,72.06671914,0,0.887614523,2.083109201,1.434248046,3.021795862,6,5,45% -6/13/2018 14:00,77.61649558,70.02974995,140.366279,428.9373274,48.37889673,47.9782348,0,47.9782348,46.9200945,1.058140302,92.34431976,56.85208807,35.4922317,1.458802236,34.03342946,1.354663402,1.222249711,-4.554512048,4.554512048,0.690978879,0.344661817,0.843852775,27.14120598,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.10137952,1.056897254,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.611368463,26.08915955,45.71274799,27.14605681,0,56.85208807,-0.132541713,97.61649298,0.132541713,82.38350702,0,0.67276027,45.71274799,65.39388291,88.51173647,6,6,94% -6/13/2018 15:00,66.26933013,78.20744223,345.7816,668.6231454,76.70232932,122.6452631,45.64914425,76.99611885,74.38947109,2.606647759,86.15161046,0,86.15161046,2.31285823,83.83875223,1.156618004,1.364977367,-2.251455677,2.251455677,0.915175286,0.221823051,2.434586494,78.30467047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.50598915,1.675657915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763849627,75.26942772,73.26983878,76.94508563,45.64914425,0,0.068273353,86.08517965,-0.068273353,93.91482035,0,0,73.26983878,76.94508563,123.6288584,6,7,69% -6/13/2018 16:00,54.55593836,86.54760945,549.2772162,783.8571188,94.71231884,313.7821141,217.7850375,95.99707665,91.85639298,4.140683671,136.0345462,0,136.0345462,2.855925864,133.1786204,0.952180751,1.510540745,-1.346663466,1.346663466,0.760446705,0.172430816,3.319805869,106.7763685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.29585886,2.069108567,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.405188051,102.6375068,90.70104691,104.7066154,217.7850375,0,0.277837673,73.86880745,-0.277837673,106.1311925,0.870038803,0,280.1824803,104.7066154,348.710866,6,8,24% -6/13/2018 17:00,42.73564194,96.01394453,729.0260346,846.0410549,107.6151483,517.3288897,407.4630289,109.8658607,104.3701545,5.495706191,180.0057962,0,180.0057962,3.244993779,176.7608025,0.74587766,1.67575946,-0.830320474,0.830320474,0.672146853,0.147614959,3.959891978,127.3637381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3245625,2.350986947,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868928258,122.4268695,103.1934907,124.7778565,407.4630289,0,0.481611414,61.209301,-0.481611414,118.790699,0.946181863,0,488.7276183,124.7778565,570.3922298,6,9,17% -6/13/2018 18:00,31.17490448,108.6103459,870.6330538,881.1137883,116.7599617,706.3125562,586.5101385,119.8024177,113.239218,6.563199716,214.6158074,0,214.6158074,3.520743642,211.0950637,0.544104727,1.895608138,-0.472769725,0.472769725,0.611002074,0.134109268,4.352519133,139.991977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8498436,2.550766784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153385295,134.5656131,112.0032289,137.1163799,586.5101385,0,0.665646306,48.26807264,-0.665646306,131.7319274,0.974885033,0,683.7831849,137.1163799,773.5231132,6,10,13% -6/13/2018 19:00,20.78333768,129.735605,963.6458304,899.743454,122.4496669,861.4549948,735.4332678,126.021727,118.7573577,7.264369315,237.3393975,0,237.3393975,3.692309248,233.6470883,0.362737672,2.264313465,-0.19128052,0.19128052,0.562864585,0.127069161,4.492366004,144.4899331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1540893,2.675065481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254703878,138.8892196,117.4087932,141.5642851,735.4332678,0,0.817381071,35.17651829,-0.817381071,144.8234817,0.988829021,0,844.6265517,141.5642851,937.2775451,6,11,11% -6/13/2018 20:00,14.73954437,171.7361447,1001.393659,906.5217187,124.7034093,968.3568856,839.8648158,128.4920698,120.9431414,7.548928394,246.5597543,0,246.5597543,3.760267897,242.7994864,0.25725358,2.99736117,0.053512376,-0.053512376,0.521002534,0.124529857,4.383300523,140.9820123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2551478,2.724301291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.175686308,135.5172728,119.4308341,138.241574,839.8648158,0,0.926469602,22.10898788,-0.926469602,157.8910121,0.996031689,0,955.9628048,138.241574,1046.43915,6,12,9% -6/13/2018 21:00,18.2151399,220.3090035,981.2013699,902.9471162,123.5013973,1017.009012,889.8349275,127.1740849,119.7773745,7.396710388,241.6276549,0,241.6276549,3.7240228,237.9036321,0.317914165,3.845117483,0.28587149,-0.28587149,0.481266786,0.125867535,4.042734612,130.0282419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1345683,2.698041841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928947464,124.988092,118.0635158,127.6861338,889.8349275,0,0.985478453,9.776221304,-0.985478453,170.2237787,0.999263224,0,1007.242834,127.6861338,1090.810855,6,13,8% -6/13/2018 22:00,27.81028159,246.3046229,904.5034291,888.24138,118.8563543,1001.797816,879.7068908,122.0909256,115.2723966,6.818528913,222.891286,0,222.891286,3.583957614,219.3073284,0.48538098,4.298826632,0.526372838,-0.526372838,0.440138633,0.13140509,3.502727846,112.6597681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8042123,2.596565091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.537714401,108.2928543,113.3419267,110.8894194,879.7068908,0,0.990391701,7.948940477,-0.990391701,172.0510595,0.999514924,0,992.622093,110.8894194,1065.197,6,14,7% -6/13/2018 23:00,39.16027958,260.6473557,776.7816059,858.9374854,110.7765472,921.453799,808.1618656,113.2919334,107.4362256,5.855707859,191.6800152,0,191.6800152,3.340321619,188.3396936,0.683475815,4.549154544,0.800404369,-0.800404369,0.393276481,0.142609643,2.809575103,90.36559317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2717865,2.420051642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.035527598,86.86284538,105.3073141,89.28289702,808.1618656,0,0.940885547,19.79919183,-0.940885547,160.2008082,0.996858574,0,910.9303988,89.28289702,969.3642692,6,15,6% -6/13/2018 0:00,50.94971022,270.7714209,607.3589568,806.7719126,99.09082308,778.6562556,677.9748581,100.6813975,96.10286915,4.578528366,150.2491648,0,150.2491648,2.987953922,147.2612108,0.889240196,4.725852814,1.152562229,-1.152562229,0.33305394,0.163150345,2.023097937,65.069784,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37773328,2.164762445,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.465727568,62.54755143,93.84346085,64.71231387,677.9748581,0,0.840355059,32.82236802,-0.840355059,147.177632,0.99050134,0,765.3784662,64.71231387,807.7313814,6,16,6% -6/13/2018 1:00,62.7215441,279.3268716,409.3388053,712.2192965,82.91774184,578.9948096,495.4915748,83.50323481,80.41746599,3.08576882,101.7492083,0,101.7492083,2.50027585,99.2489325,1.094697456,4.875173598,1.690717933,-1.690717933,0.241023895,0.202565065,1.218156426,39.18009805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.30032714,1.811441342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.882550184,37.66140053,78.18287732,39.47284187,495.4915748,0,0.695700857,45.91690723,-0.695700857,134.0830928,0.97813003,0,562.838066,39.47284187,588.6722515,6,17,5% -6/13/2018 2:00,74.2050647,287.4804973,201.2795168,523.4097534,58.80989951,329.1281943,270.5743002,58.55389407,57.03656405,1.517330019,50.57588464,0,50.57588464,1.773335456,48.80254919,1.295122701,5.017481212,2.80532987,-2.80532987,0.050414027,0.29218025,0.497478336,16.00061334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.82571486,1.284775501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.360421361,15.38039816,55.18613622,16.66517366,270.5743002,0,0.516945469,58.87241831,-0.516945469,121.1275817,0.953277999,0,313.1186638,16.66517366,324.0256866,6,18,3% -6/13/2018 3:00,85.09176898,295.9244732,26.09038231,123.3771664,15.53422509,54.42721524,39.16472403,15.26249121,15.06581089,0.196680322,6.794329456,0,6.794329456,0.468414202,6.325915254,1.485131535,5.164856395,8.100219344,-8.100219344,0,0.59540044,0.11710355,3.766452723,0.460935448,1,0.122831946,0,0.948610927,0.98737289,0.724496596,1,14.60639597,0.339364495,0.064702116,0.312029739,0.832958017,0.557454613,0.961238037,0.922476074,0.08015081,3.620457621,14.68654678,3.959822116,21.11231443,0,0.317438998,71.49188319,-0.317438998,108.5081168,0.892489422,0,33.52906408,3.959822116,36.12068846,6,19,8% -6/13/2018 4:00,95.45322827,305.1987274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665973115,5.326722667,-5.97842633,5.97842633,0.447475195,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105016354,83.9718912,-0.105016354,96.0281088,0.573883681,0,0,0,0,6,20,0% -6/13/2018 5:00,104.4619631,315.788721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823205199,5.511552923,-1.590103062,1.590103062,0.802077328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098857318,95.67337355,0.098857318,84.32662645,0,0.544220547,0,0,0,6,21,0% -6/13/2018 6:00,111.772323,328.0834617,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950795048,5.726136628,-0.516977493,0.516977493,0.618562048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.282965383,106.437268,0.282965383,73.56273196,0,0.87329994,0,0,0,6,22,0% -6/13/2018 7:00,116.7644958,342.1768363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037924902,5.972112417,0.075311107,-0.075311107,0.517274732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434765886,115.7703978,0.434765886,64.22960224,0,0.934995577,0,0,0,6,23,0% -6/14/2018 8:00,118.8516602,357.5791102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074352792,6.240932809,0.548205183,-0.548205183,0.436405082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543918232,122.9507704,0.543918232,57.04922962,0,0.958074418,0,0,0,6,0,0% -6/14/2018 9:00,117.7349781,13.17953865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054863012,0.230026343,1.040840627,-1.040840627,0.352159459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60298727,127.0841461,0.60298727,52.91585394,0,0.96707951,0,0,0,6,1,0% -6/14/2018 10:00,113.578809,27.75826823,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982324177,0.484473175,1.696224186,-1.696224186,0.24008227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607949512,127.4413866,0.607949512,52.55861342,0,0.967756328,0,0,0,6,2,0% -6/14/2018 11:00,106.9106127,40.6148321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865942197,0.708862545,2.86601181,-2.86601181,0.040036805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558467067,123.9498513,0.558467067,56.05014866,0,0.960469206,0,0,0,6,3,0% -6/14/2018 12:00,98.36183947,51.69247654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716737957,0.902203914,6.458981913,-6.458981913,0,#DIV/0!,0,0,0.364836297,1,0.153603606,0,0.944897048,0.983659011,0.724496596,1,0,0,0.053210588,0.312029739,0.86021186,0.584708456,0.961238037,0.922476074,0,0,0,0,0,0,-0.457910657,117.252368,0.457910657,62.74763202,0,0.940808394,0,0,0,6,4,0% -6/14/2018 13:00,88.16873247,61.31811281,2.698300855,15.18648703,2.212998342,2.166609208,0,2.166609208,2.146268277,0.020340932,5.396875637,4.67591129,0.720964347,0.066730065,0.654234282,1.538834679,1.07020296,-30.91846279,30.91846279,0,0.820145143,0.016682516,0.536567069,1,0.792424414,0,0.032331864,0.961238037,1,0.636902743,0.912406147,2.063074705,0.046316706,0.115824807,0.212630063,0.724496596,0.448993192,0.975939597,0.937177634,0.012086426,0.519339811,2.075161131,0.565656516,0,0.970605027,-0.307899469,107.9326882,0.307899469,72.06731176,0,0.887609333,2.075161131,1.427174597,3.009218361,6,5,45% -6/14/2018 14:00,77.62611759,69.95849837,140.1979328,428.6331221,48.34609793,47.94515594,0,47.94515594,46.8882847,1.056871237,92.33352207,56.88309688,35.45042519,1.457813231,33.99261196,1.354831337,1.221006136,-4.558165787,4.558165787,0.690354052,0.344841732,0.842466831,27.09662926,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.07080274,1.056180723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.610364351,26.04631071,45.68116709,27.10249144,0,56.88309688,-0.132708122,97.62611252,0.132708122,82.37388748,0,0.67323331,45.68116709,65.39808705,88.4829071,6,6,94% -6/14/2018 15:00,66.28327419,78.1324343,345.5295027,668.4316962,76.6762078,122.4039145,45.43502991,76.96888457,74.36413723,2.604747343,86.08969889,0,86.08969889,2.31207057,83.77762832,1.156861374,1.363668231,-2.253367275,2.253367275,0.915502189,0.221909293,2.43349312,78.26950381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.48163728,1.675087257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763057481,75.23562419,73.24469476,76.91071144,45.43502991,0,0.067972584,86.10245256,-0.067972584,93.89754744,0,0,73.24469476,76.91071144,123.5812172,6,7,69% -6/14/2018 16:00,54.57222119,86.46419762,549.0092165,783.7437385,94.69154283,313.425231,217.4503242,95.97490681,91.83624344,4.138663376,135.9689401,0,135.9689401,2.855299391,133.1136407,0.95246494,1.509084934,-1.348055271,1.348055271,0.760684718,0.172477146,3.319047178,106.7519664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.27649035,2.068654689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.404638382,102.6140506,90.68112873,104.6827053,217.4503242,0,0.277450796,73.891881,-0.277450796,106.108119,0.869787866,0,279.8167822,104.6827053,348.3295192,6,8,24% -6/14/2018 17:00,42.75169532,95.91401556,728.8041011,845.9782179,107.6002449,516.9278453,407.0781116,109.8497337,104.3557005,5.494033162,179.9515365,0,179.9515365,3.244544386,176.7069921,0.746157844,1.67401537,-0.831493219,0.831493219,0.672347405,0.147639461,3.959669784,127.3565915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3106687,2.350661363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868767279,122.42,103.179436,124.7706614,407.0781116,0,0.48119219,61.23670517,-0.48119219,118.7632948,0.946091414,0,488.3125423,124.7706614,569.9724447,6,9,17% -6/14/2018 18:00,31.18617318,108.4778625,870.5137808,881.0879362,116.7525254,705.9384749,586.1441683,119.7943066,113.232006,6.562300586,214.586664,0,214.586664,3.520519412,211.0661446,0.544301403,1.893295866,-0.473851804,0.473851804,0.611187121,0.134119101,4.352999422,140.0074247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8429111,2.55060433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153733263,134.5804621,111.9966444,137.1310664,586.1441683,0,0.665250475,48.29845596,-0.665250475,131.701544,0.974840339,0,683.3936243,137.1310664,773.1431647,6,10,13% -6/14/2018 19:00,20.77896082,129.5406051,963.6776306,899.7493401,122.4515778,861.1752947,735.1514747,126.02382,118.759211,7.264609039,237.3471655,0,237.3471655,3.69236687,233.6547986,0.362661282,2.260910075,-0.192350757,0.192350757,0.563047606,0.127066951,4.493667866,144.5318054,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1558708,2.675107228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255647072,138.9294689,117.4115179,141.6045762,735.1514747,0,0.817062533,35.20818608,-0.817062533,144.7918139,0.988805173,0,844.3330993,141.6045762,937.0104623,6,11,11% -6/14/2018 20:00,14.69727012,171.5208227,1001.613723,906.560045,124.7164659,968.2318363,839.7254446,128.5063916,120.9558043,7.550587327,246.613505,0,246.613505,3.760661601,242.8528434,0.256515755,2.993603092,0.052386453,-0.052386453,0.521195079,0.124515532,4.385484776,141.0522654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2673198,2.724586528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.177268791,135.5848027,119.4445886,138.3093892,839.7254446,0,0.926276698,22.13833572,-0.926276698,157.8616643,0.996020449,0,955.8283033,138.3093892,1046.349032,6,12,9% -6/14/2018 21:00,18.14758292,220.2648257,981.6331492,903.0247701,123.5271848,1017.088673,889.8863233,127.2023497,119.8023844,7.399965323,241.7331224,0,241.7331224,3.724800388,238.008322,0.316735073,3.844346434,0.284611455,-0.284611455,0.481482264,0.125838441,4.045795825,130.1267011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1586088,2.698605201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931165303,125.0827347,118.0897741,127.7813399,889.8863233,0,0.985450624,9.78560725,-0.985450624,170.2143927,0.999261791,0,1007.319175,127.7813399,1090.949506,6,13,8% -6/14/2018 22:00,27.74195579,246.3211717,905.1548143,888.3744052,118.8963818,1002.119927,879.9852705,122.1346565,115.3112172,6.823439329,223.0504288,0,223.0504288,3.585164592,219.4652643,0.484188469,4.299115463,0.524862437,-0.524862437,0.440396927,0.131354747,3.506588991,112.7839558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8415281,2.597439543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.540511787,108.4122282,113.3820398,111.0096678,879.9852705,0,0.990556758,7.880260097,-0.990556758,172.1197399,0.999523337,0,992.9478536,111.0096678,1065.601461,6,14,7% -6/14/2018 23:00,39.09330012,260.6706022,777.6437703,859.1594228,110.8328304,922.0434754,808.6904566,113.3530188,107.4908116,5.862207219,191.8907541,0,191.8907541,3.342018766,188.5487354,0.682306803,4.549560272,0.798434283,-0.798434283,0.393613386,0.14252391,2.814082092,90.51055341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3242567,2.421281219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.038792896,87.00218667,105.3630496,89.42346789,808.6904566,0,0.94125774,19.73613842,-0.94125774,160.2638616,0.996879587,0,911.5300579,89.42346789,970.0559292,6,15,6% -6/14/2018 0:00,50.88321131,270.7918649,608.4052092,807.1565258,99.16759364,779.5291428,678.7654025,100.7637403,96.1773248,4.586415458,150.5051557,0,150.5051557,2.990268838,147.5148868,0.888079571,4.726209629,1.149676306,-1.149676306,0.333547462,0.162995964,2.0280053,65.22762168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.44930288,2.166439594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469282937,62.69927101,93.91858582,64.86571061,678.7654025,0,0.840934045,32.76111567,-0.840934045,147.2388843,0.990542305,0,766.2644322,64.86571061,808.7177424,6,16,6% -6/14/2018 1:00,62.6548937,279.34282,410.5199869,712.950241,83.02702138,580.1676684,496.549545,83.61812342,80.52345035,3.094673065,102.0388947,0,102.0388947,2.503571032,99.53532365,1.093534188,4.875451952,1.685636869,-1.685636869,0.241892808,0.202248426,1.223072959,39.33823063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.40220334,1.81382869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886112195,37.81340359,78.28831553,39.62723228,496.549545,0,0.69647153,45.8554046,-0.69647153,134.1445954,0.978209557,0,564.0178257,39.62723228,589.9530567,6,17,5% -6/14/2018 2:00,74.13807868,287.4913911,202.4929759,525.0233562,58.99359929,330.6391498,271.8979476,58.7412022,57.21472461,1.526477586,50.87564108,0,50.87564108,1.778874682,49.0967664,1.293953574,5.017671345,2.79245198,-2.79245198,0.052616276,0.291336522,0.501636797,16.13436374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.99696956,1.288788652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363434151,15.50896413,55.36040372,16.79775278,271.8979476,0,0.517877813,58.80999324,-0.517877813,121.1900068,0.95345213,0,314.6020808,16.79775278,325.5958741,6,18,3% -6/14/2018 3:00,85.02583451,295.9295063,26.83224681,126.3771787,15.87451734,55.84561501,40.24750013,15.59811488,15.39584207,0.20227281,6.984464161,0,6.984464161,0.478675269,6.505788893,1.483980761,5.164944239,7.991592048,-7.991592048,0,0.591620875,0.119668817,3.848960519,0.455482729,1,0.124484482,0,0.948416973,0.987178936,0.724496596,1,14.92663118,0.346798603,0.06407337,0.312029739,0.834422036,0.558918632,0.961238037,0.922476074,0.081902018,3.699767253,15.0085332,4.046565855,21.91545894,0,0.318471266,71.42950129,-0.318471266,108.5704987,0.892999965,0,34.57903726,4.046565855,37.22743368,6,19,8% -6/14/2018 4:00,95.38558851,305.1964089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664792578,5.3266822,-6.054316787,6.054316787,0.434497163,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106153816,83.9063531,-0.106153816,96.0936469,0.578985373,0,0,0,0,6,20,0% -6/14/2018 5:00,104.3954778,315.7767009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822044812,5.511343132,-1.598513041,1.598513041,0.803515519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.097697365,95.60658986,0.097697365,84.39341014,0,0.53821547,0,0,0,6,21,0% -6/14/2018 6:00,111.7090317,328.0587824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949690407,5.725705893,-0.519698507,0.519698507,0.619027368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281838382,106.3699558,0.281838382,73.6300442,0,0.872593362,0,0,0,6,22,0% -6/14/2018 7:00,116.707481,342.1371498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036929805,5.971419758,0.074122085,-0.074122085,0.517478066,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433725108,115.7041982,0.433725108,64.29580176,0,0.934719609,0,0,0,6,23,0% -6/15/2018 8:00,118.8045027,357.5248588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073529738,6.239985944,0.547632498,-0.547632498,0.436503017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543011093,122.8888532,0.543011093,57.11114677,0,0.95792085,0,0,0,6,0,0% -6/15/2018 9:00,117.700382,13.11502314,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054259197,0.228900335,1.04057244,-1.04057244,0.352205322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602252055,127.03136,0.602252055,52.96863998,0,0.966978282,0,0,0,6,1,0% -6/15/2018 10:00,113.5574395,27.6894554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981951209,0.483272165,1.69609827,-1.69609827,0.240103803,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607412733,127.4026609,0.607412733,52.59733905,0,0.967683649,0,0,0,6,2,0% -6/15/2018 11:00,106.9012598,40.54610763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865778959,0.707663077,2.865754707,-2.865754707,0.040080772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558141642,123.9273771,0.558141642,56.07262294,0,0.960417005,0,0,0,6,3,0% -6/15/2018 12:00,98.36240977,51.62552858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716747911,0.901035452,6.456033817,-6.456033817,0,#DIV/0!,0,0,0.36463284,1,0.153672649,0,0.944888474,0.983650437,0.724496596,1,0,0,0.053185302,0.312029739,0.860272985,0.584769581,0.961238037,0.922476074,0,0,0,0,0,0,-0.457795023,117.2449157,0.457795023,62.75508435,0,0.940780814,0,0,0,6,4,0% -6/15/2018 13:00,88.17638445,61.2525528,2.671675297,15.04517147,2.192896987,2.146913269,0,2.146913269,2.126773052,0.020140217,5.347320035,4.633417492,0.713902542,0.066123935,0.647778607,1.538968231,1.069058722,-31.04284118,31.04284118,0,0.820794724,0.016530984,0.531693263,1,0.793336857,0,0.03220241,0.961238037,1,0.637237098,0.912740502,2.044335153,0.045901483,0.115824807,0.213008701,0.724496596,0.448993192,0.975887596,0.937125633,0.011976641,0.514613641,2.056311795,0.560515124,0,0.957556621,-0.307967078,107.9367598,0.307967078,72.06324022,0,0.887644983,2.056311795,1.410485455,2.979446315,6,5,45% -6/15/2018 14:00,77.64011122,69.89262339,139.9531475,428.1902909,48.29835937,47.89701158,0,47.89701158,46.84198564,1.055025942,92.31740288,56.92776821,35.38963467,1.456373737,33.93326093,1.355075572,1.219856401,-4.563483572,4.563483572,0.689444658,0.345103774,0.840453161,27.03186269,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.02629831,1.055137815,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.608905454,25.98405462,45.63520377,27.03919244,0,56.92776821,-0.132949694,97.6400773,0.132949694,82.3599227,0,0.673917901,45.63520377,65.40383452,88.44070538,6,6,94% -6/15/2018 15:00,66.30130073,78.06345142,345.2035753,668.1839377,76.642417,122.1068595,45.17320377,76.93365571,74.33136534,2.602290365,86.00965511,0,86.00965511,2.311051653,83.69860346,1.157175996,1.362464253,-2.255680271,2.255680271,0.915897734,0.222020925,2.43202302,78.22222033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4501357,1.674349055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.761992399,75.19017351,73.2121281,76.86452257,45.17320377,0,0.067605941,86.12350813,-0.067605941,93.87649187,0,0,73.2121281,76.86452257,123.5184208,6,7,69% -6/15/2018 16:00,54.59242961,86.38773,548.6765365,783.6028896,94.66574476,313.0119986,217.0646198,95.94737877,91.81122327,4.136155494,135.8875001,0,135.8875001,2.854521484,133.0329786,0.952817643,1.507750322,-1.349593268,1.349593268,0.760947731,0.172534706,3.317993098,106.7180636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.25244002,2.068091098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403874705,102.5814619,90.65631472,104.649553,217.0646198,0,0.277008447,73.91825966,-0.277008447,106.0817403,0.869500089,0,279.394021,104.649553,347.8850605,6,8,25% -6/15/2018 17:00,42.77173121,95.82241582,728.5270183,845.8997267,107.5816352,516.4773632,406.6477669,109.8295963,104.3376519,5.491944395,179.8837934,0,179.8837934,3.243983234,176.6398102,0.746507536,1.672416653,-0.832722012,0.832722012,0.672557541,0.147670069,3.959203077,127.3415806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2933197,2.35025481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.868429152,122.405571,103.1617489,124.7558258,406.6477669,0,0.480728098,61.26703394,-0.480728098,118.7329661,0.945991101,0,487.8469177,124.7558258,569.4971106,6,9,17% -6/15/2018 18:00,31.20186273,108.355744,870.3476515,881.0519191,116.7421672,705.5237862,585.7407779,119.7830083,113.2219601,6.561048234,214.5460717,0,214.5460717,3.520207073,211.0258646,0.544575237,1.891164496,-0.474946899,0.474946899,0.611374393,0.1341328,4.353267533,140.0160481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8332546,2.550378041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153927508,134.5887512,111.9871822,137.1391293,585.7407779,0,0.66481982,48.33149607,-0.66481982,131.6685039,0.974791653,0,682.962403,137.1391293,772.7172203,6,10,13% -6/15/2018 19:00,20.78017711,129.3574396,963.6687943,899.7477046,122.4510469,860.8633404,734.840102,126.0232384,118.758696,7.264542427,237.345007,0,237.345007,3.692350859,233.6526561,0.36268251,2.257713232,-0.193407762,0.193407762,0.563228365,0.127067565,4.494774883,144.5674109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1553758,2.675095628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256449102,138.9636943,117.4118249,141.6387899,734.840102,0,0.816717951,35.2424151,-0.816717951,144.7575849,0.988779355,0,844.0065468,141.6387899,936.706302,6,11,11% -6/15/2018 20:00,14.66201467,171.3061768,1001.796777,906.5919155,124.7273259,968.081038,839.5627339,128.5183041,120.9663369,7.551967268,246.6582161,0,246.6582161,3.760989072,242.8972271,0.255900431,2.989856815,0.051294345,-0.051294345,0.52138184,0.124503621,4.387478007,141.1163746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2774442,2.72482378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178712881,135.6464269,119.4561571,138.3712506,839.5627339,0,0.92606466,22.1705519,-0.92606466,157.8294481,0.99600809,0,955.6674319,138.3712506,1046.228648,6,12,9% -6/15/2018 21:00,18.08548496,220.2070277,982.028673,903.0958562,123.5508036,1017.14632,889.9180818,127.228238,119.8252911,7.402946948,241.8297339,0,241.8297339,3.725512584,238.1042213,0.315651259,3.84333767,0.283406074,-0.283406074,0.481688397,0.125811809,4.048657746,130.2187503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1806275,2.699121185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933238755,125.1712159,118.1138663,127.8703371,889.9180818,0,0.985408222,9.799891145,-0.985408222,170.2001089,0.999259607,0,1007.373059,127.8703371,1091.061638,6,13,8% -6/15/2018 22:00,27.67751875,246.3256864,905.7677815,888.4994493,118.9340389,1002.420322,880.2445232,122.1757989,115.3477388,6.828060135,223.2001853,0,223.2001853,3.586300092,219.6138852,0.483063831,4.299194259,0.523433156,-0.523433156,0.440641348,0.131307429,3.510232619,112.9011474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.876634,2.598262209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543151583,108.5248772,113.4197856,111.1231395,880.2445232,0,0.990709138,7.81632245,-0.990709138,172.1836776,0.9995311,0,993.2515624,111.1231395,1065.979435,6,14,7% -6/15/2018 23:00,39.02959617,260.6843812,778.4626409,859.369875,110.8862626,922.6077441,809.1967312,113.4110129,107.5426327,5.868380211,192.09091,0,192.09091,3.343629945,188.74728,0.681194959,4.549800761,0.796585912,-0.796585912,0.393929476,0.142442626,2.818346828,90.647722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3740691,2.422448513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041882683,87.13403834,105.4159518,89.55648686,809.1967312,0,0.941616357,19.67520141,-0.941616357,160.3247986,0.996899818,0,912.1040258,89.55648686,970.7169553,6,15,6% -6/15/2018 0:00,50.81985941,270.8045146,609.4010819,807.5217579,99.24060349,780.3682473,679.5261914,100.8420559,96.24813314,4.593922767,150.7488181,0,150.7488181,2.992470354,147.7563477,0.886973872,4.726430409,1.146986681,-1.146986681,0.334007415,0.162849405,2.032645035,65.37685151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.51736655,2.168034585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472644409,62.8427164,93.99001096,65.01075099,679.5261914,0,0.841495829,32.70158578,-0.841495829,147.2984142,0.990581999,0,767.116424,65.01075099,809.6646603,6,16,6% -6/15/2018 1:00,62.591522,279.3520291,411.6425691,713.6425124,83.13069155,581.2921877,497.5650576,83.72713005,80.62399448,3.103135565,102.3142038,0,102.3142038,2.50669707,99.80750672,1.092428143,4.87561268,1.680925339,-1.680925339,0.242698527,0.201948724,1.227707776,39.48730231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49885018,1.816093494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889470105,37.95669695,78.38832029,39.77279044,497.5650576,0,0.697218914,45.79569922,-0.697218914,134.2043008,0.978286512,0,565.1495052,39.77279044,591.1800011,6,17,5% -6/15/2018 2:00,74.07466846,287.4962386,203.6420606,526.5431544,59.16683531,332.077327,273.1594502,58.9178768,57.38273693,1.535139872,51.15947367,0,51.15947367,1.784098387,49.37537528,1.292846857,5.01775595,2.780562429,-2.780562429,0.054649509,0.290543295,0.505544212,16.26003966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.15846939,1.292573208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366265061,15.6297686,55.52473445,16.92234181,273.1594502,0,0.518778846,58.74962548,-0.518778846,121.2503745,0.953619817,0,316.0149995,16.92234181,327.0903337,6,18,4% -6/15/2018 3:00,84.9638005,295.9289954,27.53756353,129.209049,16.19493145,57.19188871,41.27770441,15.9141843,15.70659452,0.207589786,7.165138034,0,7.165138034,0.488336936,6.676801098,1.482898064,5.164935321,7.892727865,-7.892727865,0,0.588103281,0.122084234,3.92664863,0.45042331,1,0.126027414,0,0.948235318,0.986997281,0.724496596,1,15.22814007,0.353798448,0.063487551,0.312029739,0.835788932,0.560285528,0.961238037,0.922476074,0.083551847,3.77444402,15.31169191,4.128242468,22.68526416,0,0.319464501,71.36945671,-0.319464501,108.6305433,0.893488088,0,35.58070521,4.128242468,38.28255734,6,19,8% -6/15/2018 4:00,95.32254264,305.1889991,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66369222,5.326552875,-6.127592001,6.127592001,0.421966363,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107239507,83.84379044,-0.107239507,96.15620956,0.583753919,0,0,0,0,6,20,0% -6/15/2018 5:00,104.3342335,315.7601491,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820975897,5.511054248,-1.606669224,1.606669224,0.804910309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096599809,95.54340566,0.096599809,84.45659434,0,0.532400633,0,0,0,6,21,0% -6/15/2018 6:00,111.6516518,328.0304242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94868894,5.725210949,-0.522436554,0.522436554,0.619495602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280783777,106.3069886,0.280783777,73.69301145,0,0.871927034,0,0,0,6,22,0% -6/15/2018 7:00,116.6569487,342.0950883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03604785,5.970685645,0.072823838,-0.072823838,0.51770008,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432765408,115.6431883,0.432765408,64.35681169,0,0.934463963,0,0,0,6,23,0% -6/16/2018 8:00,118.7641387,357.4699501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072825254,6.239027607,0.546882417,-0.546882417,0.436631288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542191797,122.832969,0.542191797,57.16703105,0,0.957781711,0,0,0,6,0,0% -6/16/2018 9:00,117.6725296,13.05165327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053773081,0.227794322,1.040035452,-1.040035452,0.352297152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601609064,126.9852255,0.601609064,53.01477452,0,0.96688955,0,0,0,6,1,0% -6/16/2018 10:00,113.5424482,27.62328652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981689562,0.4821173,1.695524913,-1.695524913,0.240201853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606969876,127.3707263,0.606969876,52.62927369,0,0.967623589,0,0,0,6,2,0% -6/16/2018 11:00,106.8977492,40.48107813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865717686,0.706528098,2.864547076,-2.864547076,0.040287289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557909033,123.9113164,0.557909033,56.08868359,0,0.960379655,0,0,0,6,3,0% -6/16/2018 12:00,98.36825225,51.56297985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716849881,0.899943771,6.449118483,-6.449118483,0,#DIV/0!,0,0,0.364155078,1,0.153834845,0,0.944868326,0.983630289,0.724496596,1,0,0,0.053125909,0.312029739,0.86041658,0.584913176,0.961238037,0.922476074,0,0,0,0,0,0,-0.457768373,117.2431982,0.457768373,62.75680182,0,0.940774455,0,0,0,6,4,0% -6/16/2018 13:00,88.18840787,61.19192566,2.623335802,14.73541198,2.157505525,2.112224587,0,2.112224587,2.092448774,0.019775813,5.24126067,4.540145781,0.701114889,0.065056752,0.636058137,1.539178079,1.068000578,-31.24390387,31.24390387,0,0.82242827,0.016264188,0.523112193,1,0.794795014,0,0.031995321,0.961238037,1,0.637772246,0.91327565,2.011341351,0.045169353,0.115824807,0.213614741,0.724496596,0.448993192,0.975804299,0.937042336,0.011783349,0.506294215,2.0231247,0.551463568,0,0.931660553,-0.308111221,107.9454407,0.308111221,72.05455928,0,0.887720938,2.0231247,1.378518148,2.925337258,6,5,45% -6/16/2018 14:00,77.65840022,69.83220387,139.5520738,427.0324744,48.27827353,47.87450794,0,47.87450794,46.82250546,1.052002479,92.20035681,56.90857277,35.29178405,1.455768075,33.83601597,1.355394776,1.218801881,-4.570448907,4.570448907,0.688253515,0.345951674,0.837502049,26.9369448,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.00757323,1.054699015,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.606767384,25.89281594,45.61434061,26.94751496,0,56.90857277,-0.133265211,97.65831739,0.133265211,82.34168261,0,0.674808308,45.61434061,65.34989264,88.38453835,6,6,94% -6/16/2018 15:00,66.32332484,78.00057408,344.6969348,667.3926383,76.6887485,121.8067615,44.83199067,76.97477088,74.37629978,2.598471095,85.88821133,0,85.88821133,2.312448719,83.57576261,1.157560389,1.361366836,-2.258387988,2.258387988,0.916360781,0.222481667,2.429489854,78.14074502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.49332839,1.675361225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.760157129,75.11185634,73.25348552,76.78721757,44.83199067,0,0.067174835,86.14826493,-0.067174835,93.85173507,0,0,73.25348552,76.78721757,123.5091837,6,7,69% -6/16/2018 16:00,54.61647134,86.31829528,548.1607571,783.036777,94.74580438,312.5403031,216.519167,96.02113614,91.8888688,4.132267331,135.7648575,0,135.7648575,2.856935577,132.9079219,0.953237251,1.506538457,-1.35127359,1.35127359,0.761235083,0.1728431,3.316160862,106.6591325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.32707586,2.0698401,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.402547256,102.5248152,90.72962311,104.5946553,216.519167,0,0.27651213,73.94785248,-0.27651213,106.0521475,0.869176106,0,278.9229096,104.5946553,347.3780196,6,8,25% -6/16/2018 17:00,42.79565092,95.73925618,728.070312,845.4662119,107.682901,515.9346765,406.0103107,109.9243658,104.4358643,5.48850155,179.7761132,0,179.7761132,3.247036774,176.5290764,0.746925014,1.670965244,-0.834004141,0.834004141,0.672776798,0.147901788,3.958162939,127.3081262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3877251,2.352467089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.867675575,122.3734133,103.2554007,124.7258804,406.0103107,0,0.480220623,61.30018778,-0.480220623,118.6998122,0.94588119,0,487.2929164,124.7258804,568.9235106,6,9,17% -6/16/2018 18:00,31.22187004,108.2441637,870.0066812,880.7022003,116.8596941,704.9939453,585.0995243,119.894421,113.3359432,6.558477856,214.4669434,0,214.4669434,3.523750944,210.9431925,0.544924431,1.889217053,-0.47605286,0.47605286,0.611563523,0.134320456,4.353114175,140.0111156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9428195,2.552945564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153816401,134.5840099,112.0966359,137.1369555,585.0995243,0,0.664355697,48.36708479,-0.664355697,131.6329152,0.974739112,0,682.4160264,137.1369555,772.169421,6,10,13% -6/16/2018 19:00,20.78689318,129.1864929,963.4892797,899.4548646,122.5827339,860.4181937,734.2685924,126.1496014,118.8864122,7.26318917,237.3054525,0,237.3054525,3.69632171,233.6091308,0.362799727,2.254729651,-0.194449676,0.194449676,0.563406543,0.127227917,4.495575767,144.5931701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2781415,2.677972496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25702934,138.988455,117.5351708,141.6664275,734.2685924,0,0.816348459,35.27908655,-0.816348459,144.7209135,0.988751645,0,843.5444496,141.6664275,936.262293,6,11,11% -6/16/2018 20:00,14.63377768,171.0929217,1001.811746,906.3410349,124.8720522,967.7804076,839.1216283,128.6587792,121.1066991,7.552080108,246.6662095,0,246.6662095,3.765353104,242.9008564,0.255407603,2.98613481,0.050237779,-0.050237779,0.521562523,0.124646225,4.389253468,141.1734795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4123657,2.727985506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179999196,135.7013183,119.5923649,138.4293038,839.1216283,0,0.925834312,22.20549979,-0.925834312,157.7945002,0.995994657,0,955.3530229,138.4293038,1045.952234,6,12,9% -6/16/2018 21:00,18.02892899,220.1357691,982.2567372,902.8802497,123.7075732,1017.036587,889.6545876,127.3819996,119.9773335,7.404666192,241.8897579,0,241.8897579,3.730239765,238.1595181,0.314664172,3.842093972,0.282257052,-0.282257052,0.481884891,0.125942199,4.051370155,130.3059907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3267765,2.702546011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.935203886,125.2550747,118.2619804,127.9576207,889.6545876,0,0.985351698,9.818899948,-0.985351698,170.1811001,0.999256697,0,1007.255285,127.9576207,1091.000988,6,13,8% -6/16/2018 22:00,27.61706033,246.3181947,906.2120079,888.3206968,119.101606,1002.533234,880.1915718,122.3416621,115.5102532,6.831408901,223.3129459,0,223.3129459,3.59135286,219.7215931,0.482008633,4.299063505,0.52208678,-0.52208678,0.440871592,0.131427972,3.51378097,113.0152745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.032849,2.601922922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.545722351,108.6345806,113.5785714,111.2365035,880.1915718,0,0.990848885,7.757225016,-0.990848885,172.242775,0.999538218,0,993.3636869,111.2365035,1066.165754,6,14,7% -6/16/2018 23:00,38.96926008,260.688714,779.1101512,859.2427435,111.0631059,922.9605824,809.3731775,113.5874049,107.7141435,5.873261417,192.2532388,0,192.2532388,3.348962423,188.9042764,0.680141895,4.549876382,0.794861215,-0.794861215,0.394224416,0.142551224,2.822562971,90.78332763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.5389318,2.426311875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.044937264,87.26438763,105.5838691,89.69069951,809.3731775,0,0.941961028,19.61646298,-0.941961028,160.383537,0.996919248,0,912.4635683,89.69069951,971.1643373,6,15,6% -6/16/2018 0:00,50.75974843,270.8093959,610.2230011,807.4910664,99.42550047,780.9670642,679.9394907,101.0275735,96.42745479,4.600118742,150.9536772,0,150.9536772,2.99804568,147.9556315,0.885924738,4.726515604,1.144495568,-1.144495568,0.33443342,0.162933059,2.037283198,65.52603075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.68973734,2.17207389,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.476004741,62.98611316,94.16574208,65.15818705,679.9394907,0,0.842039645,32.64386804,-0.842039645,147.356132,0.990620373,0,767.727654,65.15818705,810.3723842,6,16,6% -6/16/2018 1:00,62.53152316,279.3545312,412.5918401,713.8402915,83.32549237,582.1422596,498.2190467,83.9232129,80.81292133,3.11029157,102.5502395,0,102.5502395,2.512571033,100.0376685,1.091380965,4.875656349,1.676585504,-1.676585504,0.243440682,0.20195623,1.232398759,39.63818043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.68045385,1.82034916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.892868706,38.10172674,78.57332256,39.92207591,498.2190467,0,0.697941896,45.73788561,-0.697941896,134.2621144,0.978360799,0,566.011307,39.92207591,592.1395072,6,17,5% -6/16/2018 2:00,74.01492686,287.4950802,204.6317899,527.4093068,59.39016755,333.2086932,274.0667574,59.14193575,57.59933488,1.542600869,51.40617928,0,51.40617928,1.790832678,49.61534661,1.291804169,5.017735733,2.769657258,-2.769657258,0.056514403,0.290229429,0.509585377,16.39001742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.36667158,1.297452179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369192871,15.75470817,55.73586445,17.05216035,274.0667574,0,0.519647177,58.69141219,-0.519647177,121.3085878,0.953780869,0,317.1354944,17.05216035,328.2957923,6,18,4% -6/16/2018 3:00,84.90576037,295.9229908,28.16752176,131.4718064,16.49359355,58.33439897,42.12580945,16.20858952,15.99625085,0.212338677,7.326884463,0,7.326884463,0.4973427,6.829541763,1.481885072,5.164830521,7.803180831,-7.803180831,0,0.585553592,0.124335675,3.999062711,0.445758865,1,0.127458142,0,0.948066385,0.986828348,0.724496596,1,15.50916276,0.360323093,0.062945387,0.312029739,0.837056401,0.561552997,0.961238037,0.922476074,0.085090497,3.84405119,15.59425325,4.204374283,23.34785643,0,0.320417058,71.31185134,-0.320417058,108.6881487,0.893953377,0,36.46614835,4.204374283,39.21782723,6,19,8% -6/16/2018 4:00,95.26417392,305.1765605,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662673494,5.326335781,-6.197858931,6.197858931,0.40995001,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108271765,83.78430001,-0.108271765,96.21569999,0.588199088,0,0,0,0,6,20,0% -6/16/2018 5:00,104.2783035,315.7391418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819999734,5.510687602,-1.61454627,1.61454627,0.806257363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095566288,95.48391405,0.095566288,84.51608595,0,0.526802952,0,0,0,6,21,0% -6/16/2018 6:00,111.6002426,327.9984773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947791679,5.72465337,-0.525184149,0.525184149,0.619965469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279803076,106.248452,0.279803076,73.75154798,0,0.871302894,0,0,0,6,22,0% -6/16/2018 7:00,116.6129397,342.0507522,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035279749,5.969911835,0.071420176,-0.071420176,0.51794012,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431888064,115.5874412,0.431888064,64.41255876,0,0.934229262,0,0,0,6,23,0% -6/17/2018 8:00,118.7305879,357.4144889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072239682,6.238059626,0.545957776,-0.545957776,0.436789411,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541461313,122.7831722,0.541461313,57.21682775,0,0.957657299,0,0,0,6,0,0% -6/17/2018 9:00,117.6514188,12.98953222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053404628,0.226710106,1.039232675,-1.039232675,0.352434435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601058898,126.9457734,0.601058898,53.05422664,0,0.966813477,0,0,0,6,1,0% -6/17/2018 10:00,113.5338131,27.55985937,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981538851,0.481010287,1.694508738,-1.694508738,0.240375629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606621138,127.3455882,0.606621138,52.65441184,0,0.967576232,0,0,0,6,2,0% -6/17/2018 11:00,106.900041,40.41983447,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865757687,0.705459195,2.862400051,-2.862400051,0.040654452,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557769026,123.901651,0.557769026,56.09834902,0,0.960357159,0,0,0,6,3,0% -6/17/2018 12:00,98.37931278,51.50491443,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717042924,0.898930338,6.438304179,-6.438304179,0,#DIV/0!,0,0,0.363406506,1,0.154089171,0,0.944836721,0.983598684,0.724496596,1,0,0,0.053032803,0.312029739,0.860641738,0.585138334,0.961238037,0.922476074,0,0,0,0,0,0,-0.457830103,117.2471764,0.457830103,62.75282361,0,0.940789182,0,0,0,6,4,0% -6/17/2018 13:00,88.20473597,61.13631009,2.561009757,14.35318087,2.111351275,2.066992217,0,2.066992217,2.047686244,0.019305973,5.110141281,4.425529784,0.684611497,0.063665031,0.620946466,1.539463058,1.067029904,-31.52350184,31.52350184,0,0.82442141,0.015916258,0.511921561,1,0.796788857,0,0.03171173,0.961238037,1,0.638505636,0.914009041,1.968313905,0.044214791,0.115824807,0.214445313,0.724496596,0.448993192,0.975690012,0.936928049,0.011531275,0.495444418,1.97984518,0.539659209,0,0.899316964,-0.308330942,107.9586741,0.308330942,72.04132592,0,0.88783658,1.97984518,1.338105706,2.855608603,6,5,44% -6/17/2018 14:00,77.68090918,69.77731561,139.0775577,425.7405164,48.24329653,47.83700852,0,47.83700852,46.78858314,1.048425376,92.07737095,56.90169352,35.17567743,1.454713389,33.72096404,1.355787631,1.217843901,-4.579048677,4.579048677,0.686782868,0.346880527,0.833950876,26.82272685,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.9749658,1.053934898,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.604194571,25.7830253,45.57916037,26.8369602,0,56.90169352,-0.133653461,97.68076328,0.133653461,82.31923672,0,0.675898203,45.57916037,65.29671258,88.31455282,6,6,94% -6/17/2018 15:00,66.34926303,77.94387881,344.1195803,666.5467983,76.72744028,121.4537258,44.44578218,77.00794361,74.41382486,2.594118753,85.74939173,0,85.74939173,2.313615419,83.43577631,1.158013096,1.360377317,-2.261484175,2.261484175,0.916890261,0.222967377,2.426593213,78.04757908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.52939892,1.676206495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758058522,75.0223017,73.28745745,76.69850819,44.44578218,0,0.066680663,86.17664257,-0.066680663,93.82335743,0,0,73.28745745,76.69850819,123.4850971,6,7,68% -6/17/2018 16:00,54.64425607,86.2559767,547.5832725,782.4441426,94.820887,312.015483,215.9258815,96.08960141,91.96168741,4.127914008,135.6271037,0,135.6271037,2.859199595,132.7679041,0.953722186,1.505450793,-1.3530925,1.3530925,0.761546135,0.173162497,3.314043757,106.5910392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.39707187,2.071480373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401013421,102.4593612,90.79808529,104.5308416,215.9258815,0,0.275963318,73.98057017,-0.275963318,106.0194298,0.868816499,0,278.3980538,104.5308416,346.811399,6,8,25% -6/17/2018 17:00,42.82335826,95.66463927,727.5610638,845.0176341,107.7805057,515.3458195,405.3306311,110.0151884,104.5305258,5.484662622,179.6555833,0,179.6555833,3.249979916,176.4056033,0.747408598,1.669662933,-0.835336958,0.835336958,0.673004723,0.148139464,3.956885868,127.2670512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4787174,2.354599385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866750341,122.3339305,103.3454678,124.6885298,405.3306311,0,0.47967121,61.33606957,-0.47967121,118.6639304,0.945761932,0,486.6917487,124.6885298,568.2978977,6,9,17% -6/17/2018 18:00,31.24609487,108.1432803,869.6208979,880.3427211,116.9743298,704.4265017,584.4238099,120.0026918,113.4471222,6.555569658,214.3768625,0,214.3768625,3.527207633,210.8496548,0.545347234,1.887456305,-0.477167583,0.477167583,0.611754152,0.134511866,4.352752888,139.9994954,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.049689,2.555449923,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.15355465,134.5728401,112.2032437,137.12829,584.4238099,0,0.663859422,48.40511726,-0.663859422,131.5948827,0.974682849,0,681.831108,137.12829,771.5788312,6,10,13% -6/17/2018 19:00,20.79901723,129.0281206,963.2704516,899.1547962,122.7119844,859.9432832,733.6699784,126.2733049,119.0117653,7.261539551,237.2562924,0,237.2562924,3.70021909,233.5560733,0.363011332,2.251965533,-0.19547468,0.19547468,0.563581829,0.127390998,4.496182451,144.6126832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3986357,2.680796134,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.25746888,139.0072117,117.6561046,141.6880078,733.6699784,0,0.815955141,35.31808619,-0.815955141,144.6819138,0.988722121,0,843.051842,141.6880078,935.7838094,6,11,11% -6/17/2018 20:00,14.61255538,170.8817637,1001.790202,906.0839186,125.014555,967.4558042,838.6589815,128.7968227,121.244905,7.551917702,246.6652829,0,246.6652829,3.769650089,242.8956328,0.255037204,2.982449409,0.049218438,-0.049218438,0.521736841,0.124791154,4.390834875,141.224343,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5452144,2.731098657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18114492,135.7502102,119.7263593,138.4813089,838.6589815,0,0.925586432,22.24304927,-0.925586432,157.7569507,0.995980193,0,955.014094,138.4813089,1045.647341,6,12,9% -6/17/2018 21:00,17.9779976,220.0512327,982.4481677,902.6582426,123.8621118,1016.90576,889.3724384,127.5333214,120.1272121,7.406109276,241.9408323,0,241.9408323,3.734899672,238.2059327,0.313775251,3.840618534,0.281166047,-0.281166047,0.482071464,0.126074958,4.05387672,130.3866104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4708455,2.705922098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937019884,125.3325694,118.4078654,128.0384915,889.3724384,0,0.985281468,9.842467786,-0.985281468,170.1575322,0.99925308,0,1007.116014,128.0384915,1090.914646,6,13,8% -6/17/2018 22:00,27.56067036,246.298734,906.6165744,888.1340885,119.2667064,1002.624414,880.1195805,122.5048339,115.6703752,6.834458694,223.4160161,0,223.4160161,3.596331246,219.8196849,0.481024442,4.298723852,0.52082503,-0.52082503,0.441087364,0.13155143,3.517102113,113.1220939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1867644,2.605529745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548128508,108.7372595,113.7348929,111.3427892,880.1195805,0,0.990976016,7.703071425,-0.990976016,172.2969286,0.999544692,0,993.4537479,111.3427892,1066.325377,6,14,7% -6/17/2018 23:00,38.9123833,260.6836262,779.7123314,859.1042162,111.2369755,923.2870554,809.5264842,113.7605712,107.8827703,5.877800906,192.4044872,0,192.4044872,3.354205234,189.050282,0.679149208,4.549787583,0.793262079,-0.793262079,0.394497885,0.142664122,2.826524614,90.91074772,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7010223,2.430110274,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.047807461,87.38686866,105.7488298,89.81697894,809.5264842,0,0.942291365,19.56000822,-0.942291365,160.4399918,0.996937856,0,912.7964274,89.81697894,971.5798438,6,15,6% -6/17/2018 0:00,50.70297053,270.8065371,610.9918298,807.441053,99.60650644,781.5302658,680.3213486,101.2089173,96.60300276,4.605914497,151.1455466,0,151.1455466,3.003503678,148.142043,0.884933776,4.726465708,1.142205099,-1.142205099,0.334825114,0.163024285,2.04163965,65.66614923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.85848073,2.17602819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479160976,63.12080038,94.33764171,65.29682857,680.3213486,0,0.842564725,32.58805252,-0.842564725,147.4119475,0.990657378,0,768.3030051,65.29682857,811.0384734,6,16,6% -6/17/2018 1:00,62.4749889,279.3503601,413.4792734,713.9994317,83.51459437,582.9414212,498.8281186,84.11330263,80.99632121,3.116981417,102.7711101,0,102.7711101,2.518273156,100.2528369,1.090394256,4.87558355,1.67261946,-1.67261946,0.244118916,0.201980123,1.236792885,39.77951064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85674479,1.824480329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896052235,38.23757871,78.75279703,40.06205904,498.8281186,0,0.698639378,45.68205724,-0.698639378,134.3179428,0.978432319,0,566.82235,40.06205904,593.0421664,6,17,5% -6/17/2018 2:00,73.95894376,287.4879571,205.5534263,528.1813491,59.60313767,334.2640238,274.9085921,59.35543171,57.80588316,1.549548553,51.63606253,0,51.63606253,1.797254513,49.83880801,1.29082708,5.017611412,2.759733007,-2.759733007,0.05821155,0.289964214,0.513360009,16.51142255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.56521365,1.302104777,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.371927579,15.8714074,55.93714122,17.17351218,274.9085921,0,0.520481446,58.63544855,-0.520481446,121.3645515,0.953935096,0,318.1820954,17.17351218,329.4218157,6,18,4% -6/17/2018 3:00,84.85180375,295.9115428,28.75511213,133.5469318,16.77166305,59.39498474,42.91228104,16.48270371,16.26593553,0.216768181,7.477737372,0,7.477737372,0.505727522,6.972009851,1.480943352,5.164630716,7.722556315,-7.722556315,0,0.583258482,0.12643188,4.066483882,0.44149093,1,0.128774235,0,0.947910574,0.986672537,0.724496596,1,15.77079202,0.366397868,0.062447553,0.312029739,0.838222294,0.56271889,0.961238037,0.922476074,0.086523802,3.908858984,15.85731582,4.275256852,23.96689816,0,0.321327345,71.2567839,-0.321327345,108.7432161,0.89439544,0,37.29320025,4.275256852,40.09127036,6,19,8% -6/17/2018 4:00,95.21056189,305.1591547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661737788,5.326031991,-6.264722238,6.264722238,0.398515711,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109248986,83.72797525,-0.109248986,96.27202475,0.59232985,0,0,0,0,6,20,0% -6/17/2018 5:00,104.2277574,315.7137535,0,0,0,0,0,0,0,0,0,0,0,0,0,1.819117539,5.510244492,-1.622119366,1.622119366,0.807552439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094598374,95.42820421,0.094598374,84.57179579,0,0.521449687,0,0,0,6,21,0% -6/17/2018 6:00,111.5548595,327.9630287,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946999595,5.724034676,-0.527933858,0.527933858,0.620435696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278897712,106.1944277,0.278897712,73.80557225,0,0.870722803,0,0,0,6,22,0% -6/17/2018 7:00,116.5754916,342.0042386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034626156,5.969100019,0.069915005,-0.069915005,0.51819752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431094283,115.5370262,0.431094283,64.46297384,0,0.934016091,0,0,0,6,23,0% -6/18/2018 8:00,118.7038673,357.3585762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071773319,6.237083765,0.544861602,-0.544861602,0.436976868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540820541,122.7395141,0.540820541,57.26048586,0,0.95754789,0,0,0,6,0,0% -6/18/2018 9:00,117.637046,12.92875942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053153776,0.22564942,1.038167447,-1.038167447,0.3526166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600602097,126.9130319,0.600602097,53.08696814,0,0.966750207,0,0,0,6,1,0% -6/18/2018 10:00,113.5315111,27.49926818,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981498674,0.479952772,1.693055001,-1.693055001,0.240624233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606366664,127.3272502,0.606366664,52.67274976,0,0.967541641,0,0,0,6,2,0% -6/18/2018 11:00,106.9080957,40.36246391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865898267,0.704457889,2.859326531,-2.859326531,0.041180055,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557721371,123.8983614,0.557721371,56.1016386,0,0.9603495,0,0,0,6,3,0% -6/18/2018 12:00,98.3955376,51.45141249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7173261,0.897996553,6.42367257,-6.42367257,0,#DIV/0!,0,0,0.362390888,1,0.154434602,0,0.944793772,0.983555735,0.724496596,1,0,0,0.052906392,0.312029739,0.860947549,0.585444145,0.961238037,0.922476074,0,0,0,0,0,0,-0.457979591,117.2568108,0.457979591,62.74318915,0,0.940824829,0,0,0,6,4,0% -6/18/2018 13:00,88.22530082,61.08578048,2.485580343,13.9035685,2.054995291,2.011766955,0,2.011766955,1.9930296,0.018737355,4.955615724,4.290992302,0.664623421,0.06196569,0.602657731,1.539821983,1.066147996,-31.88462952,31.88462952,0,0.826766794,0.015491423,0.4982574,1,0.799307469,0,0.031352797,0.961238037,1,0.639434773,0.914938177,1.91577586,0.043049191,0.115824807,0.215497616,0.724496596,0.448993192,0.975544998,0.936783035,0.011223483,0.482196452,1.926999343,0.525245644,0,0.861170105,-0.30862525,107.9764012,0.30862525,72.02359881,0,0.887991221,1.926999343,1.289957137,2.77125049,6,5,44% -6/18/2018 14:00,77.70756429,69.72802947,138.5310213,424.3160414,48.19354494,47.7846371,0,47.7846371,46.74033175,1.044305354,91.94806679,56.90640362,35.04166317,1.453213195,33.58844997,1.35625285,1.216983695,-4.589273316,4.589273316,0.685034352,0.347889913,0.8298131,26.68964178,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.92858473,1.052848013,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.601196767,25.65509886,45.5297815,26.70794688,0,56.90640362,-0.134113251,97.70734661,0.134113251,82.29265339,0,0.677180761,45.5297815,65.24386861,88.23058863,6,6,94% -6/18/2018 15:00,66.37903404,77.89343625,343.4729747,665.6471618,76.75859045,121.0490539,44.01577376,77.03328011,74.44403574,2.589244367,85.59355402,0,85.59355402,2.314554711,83.2789993,1.158532698,1.359496928,-2.264963087,2.264963087,0.917485189,0.223477817,2.423339619,77.94293233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55843877,1.676887009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.755701305,74.92171126,73.31414007,76.59859827,44.01577376,0,0.066124782,86.20856261,-0.066124782,93.79143739,0,0,73.31414007,76.59859827,123.4463907,6,7,68% -6/18/2018 16:00,54.67569636,86.20085002,546.9454732,781.8254164,94.89107747,311.4390018,215.2861344,96.15286738,92.02976137,4.123106008,135.4745784,0,135.4745784,2.861316096,132.6132623,0.954270922,1.504488651,-1.355046436,1.355046436,0.761880278,0.173492756,3.311647099,106.5139544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.46250715,2.073013772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.39927705,102.3852644,90.8617842,104.4582782,215.2861344,0,0.275363438,74.01632616,-0.275363438,105.9836738,0.86842179,0,277.8209545,104.4582782,346.1868084,6,8,25% -6/18/2018 17:00,42.85476049,95.59865709,727.0004829,844.5542575,107.8745186,514.7122507,404.61011,110.1021406,104.6217039,5.480436726,179.5224987,0,179.5224987,3.252814752,176.269684,0.747956671,1.668511327,-0.836717916,0.836717916,0.67324088,0.148383008,3.955375767,127.2184812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5663613,2.356653215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.865656279,122.2872431,103.4320175,124.6438963,404.61011,0,0.479081251,61.37458577,-0.479081251,118.6254142,0.94563357,0,486.0449202,124.6438963,567.6218575,6,9,17% -6/18/2018 18:00,31.27444062,108.0532345,869.1912365,879.9736407,117.0861255,703.8227705,583.714893,120.1078775,113.5555468,6.552330689,214.2760571,0,214.2760571,3.530578684,210.7454784,0.545841961,1.88588471,-0.478289047,0.478289047,0.611945934,0.134706979,4.352185976,139.9812615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1539109,2.557892238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.153143924,134.555313,112.3070548,137.1132053,583.714893,0,0.663332248,48.44549316,-0.663332248,131.5545068,0.974622992,0,681.2090104,137.1132053,770.946861,6,10,13% -6/18/2018 19:00,20.81645952,128.8826431,963.0128993,898.8475819,122.838829,859.4396641,733.045281,126.3943831,119.1347851,7.259598013,237.1976707,0,237.1976707,3.704043922,233.4936268,0.363315757,2.24942647,-0.196481032,0.196481032,0.563753925,0.127556785,4.496595529,144.6259692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5168869,2.683567212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257768154,139.0199827,117.7746551,141.7035499,733.045281,0,0.815539025,35.35930558,-0.815539025,144.6406944,0.988690855,0,842.529821,141.7035499,935.2719603,6,11,11% -6/18/2018 20:00,14.59833975,170.6733914,1001.732343,905.8205832,125.1548423,967.1079294,838.1754859,128.9324436,121.380962,7.551481537,246.6554846,0,246.6554846,3.773880267,242.8816043,0.254789094,2.978812625,0.048237929,-0.048237929,0.521904518,0.124938406,4.392221108,141.268929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6759976,2.734163407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.182149241,135.793068,119.8581469,138.5272314,838.1754859,0,0.925321749,22.28307798,-0.925321749,157.716922,0.995964741,0,954.6513779,138.5272314,1045.31468,6,12,9% -6/18/2018 21:00,17.932771,219.9536238,982.602752,902.4297848,124.0144031,1016.754119,889.0719329,127.6821859,120.2749113,7.407274598,241.9829052,0,241.9829052,3.739491818,238.2434134,0.312985898,3.838914937,0.280134629,-0.280134629,0.482247847,0.126210112,4.05617471,130.4605217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6128196,2.709249092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93868477,125.4036157,118.5515044,128.1128648,889.0719329,0,0.985197904,9.870437405,-0.985197904,170.1295626,0.999248776,0,1006.955545,128.1128648,1090.802852,6,13,8% -6/18/2018 22:00,27.50843673,246.2673515,906.9808689,887.939495,119.4292989,1002.693688,880.0284179,122.6652698,115.8280649,6.8372049,223.5092463,0,223.5092463,3.601234008,219.9080123,0.480112793,4.298176124,0.519649532,-0.519649532,0.441288386,0.131677859,3.52019193,113.2214731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.3383417,2.60908178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55036707,108.8327865,113.8887087,111.4418683,880.0284179,0,0.991090522,7.65396946,-0.991090522,172.3460305,0.999550521,0,993.5215728,111.4418683,1066.458047,6,14,7% -6/18/2018 23:00,38.8590545,260.6691484,780.2682099,858.9540561,111.4078043,923.5865247,809.6560854,113.9304393,108.0484479,5.881991353,192.5444175,0,192.5444175,3.35935635,189.1850611,0.678218445,4.549534899,0.791790274,-0.791790274,0.394749578,0.142781422,2.830226567,91.02981524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.860278,2.43384224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050489513,87.5013209,105.9107675,89.93516314,809.6560854,0,0.942606976,19.50592341,-0.942606976,160.4940766,0.996955623,0,913.1019543,89.93516314,971.9627199,6,15,6% -6/18/2018 0:00,50.64961435,270.7959695,611.7063034,807.3713188,99.78352529,782.0567786,680.6707942,101.3859843,96.77468384,4.611300501,151.3241168,0,151.3241168,3.008841449,148.3152753,0.884002535,4.726281269,1.14011725,-1.14011725,0.335182157,0.163123258,2.045708519,65.79701805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.02350711,2.179895388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482108858,63.24659646,94.50561597,65.42649185,680.6707942,0,0.843070318,32.53422795,-0.843070318,147.4657721,0.990692966,0,768.841384,65.42649185,811.6617144,6,16,6% -6/18/2018 1:00,62.42200675,279.3395515,414.3034021,714.1192881,83.69786522,583.6882306,499.3909708,84.29725982,81.17406577,3.123194048,102.9764559,0,102.9764559,2.523799449,100.4526565,1.089469544,4.875394906,1.669029126,-1.669029126,0.244732899,0.202020705,1.240884007,39.91109518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02759962,1.828484109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899016239,38.36406278,78.92661586,40.19254688,499.3909708,0,0.699310296,45.62830488,-0.699310296,134.3716951,0.978500981,0,567.5811708,40.19254688,593.8863889,6,17,5% -6/18/2018 2:00,73.90680426,287.4749114,206.4053948,528.8583647,59.80556399,335.2416493,275.6834727,59.55817663,58.00220558,1.555971052,51.84873607,0,51.84873607,1.803358413,50.04537766,1.289917074,5.01738372,2.750786431,-2.750786431,0.059741505,0.289748066,0.516861819,16.62405281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.75392622,1.306527032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374464629,15.97967189,56.12839085,17.28619892,275.6834727,0,0.521280348,58.58182601,-0.521280348,121.418174,0.954082323,0,319.1531189,17.28619892,330.4665904,6,18,4% -6/18/2018 3:00,84.80201475,295.8947017,29.29821926,135.4298875,17.02860179,60.37066595,43.63467698,16.73598897,16.51512662,0.220862352,7.617167636,0,7.617167636,0.513475173,7.103692463,1.48007437,5.164336783,7.650504494,-7.650504494,0,0.581216272,0.128368793,4.128781654,0.437620795,1,0.12997347,0,0.947768252,0.986530215,0.724496596,1,16.01252464,0.372011015,0.061994661,0.312029739,0.839284645,0.563781241,0.961238037,0.922476074,0.087848832,3.968741972,16.10037347,4.340752987,24.53923494,0,0.322193851,71.20434832,-0.322193851,108.7956517,0.894813922,0,38.05842254,4.340752987,40.89935855,6,19,7% -6/18/2018 4:00,95.16178068,305.136842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660886395,5.325642561,-6.327790633,6.327790633,0.387730381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110169655,83.67490446,-0.110169655,96.32509554,0.596154521,0,0,0,0,6,20,0% -6/18/2018 5:00,104.1826595,315.6840561,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818330432,5.509726175,-1.629364576,1.629364576,0.808791443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093697537,95.37635978,0.093697537,84.62364022,0,0.516368042,0,0,0,6,21,0% -6/18/2018 6:00,111.5155532,327.9241622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94631357,5.723356327,-0.530678395,0.530678395,0.62090504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278069018,106.1449914,0.278069018,73.85500856,0,0.870188526,0,0,0,6,22,0% -6/18/2018 7:00,116.5446377,341.9556395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034087654,5.968251806,0.068312279,-0.068312279,0.518471602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430385169,115.4920064,0.430385169,64.50799356,0,0.933824993,0,0,0,6,23,0% -6/19/2018 8:00,118.6839907,357.3023077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071426408,6.236101694,0.54359709,-0.54359709,0.437193112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540270289,122.7020405,0.540270289,57.29795948,0,0.95745373,0,0,0,6,0,0% -6/19/2018 9:00,117.6294052,12.86942907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053020418,0.22461391,1.03684342,-1.03684342,0.352843022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600239118,126.8870252,0.600239118,53.11297484,0,0.966699864,0,0,0,6,1,0% -6/19/2018 10:00,113.535518,27.44160202,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981568607,0.478946307,1.691169576,-1.691169576,0.240946659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606206539,127.3157136,0.606206539,52.68428642,0,0.96751986,0,0,0,6,2,0% -6/19/2018 11:00,106.9218728,40.30904848,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866138723,0.703525614,2.855341111,-2.855341111,0.041861602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557765778,123.9014268,0.557765778,56.09857321,0,0.960356637,0,0,0,6,3,0% -6/19/2018 12:00,98.41687331,51.40254879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717698479,0.89714372,6.405317853,-6.405317853,0,#DIV/0!,0,0,0.361112248,1,0.154870108,0,0.944739585,0.983501548,0.724496596,1,0,0,0.052747094,0.312029739,0.8613331,0.585829696,0.961238037,0.922476074,0,0,0,0,0,0,-0.458216196,117.2720617,0.458216196,62.72793835,0,0.940881203,0,0,0,6,4,0% -6/19/2018 13:00,88.25003347,61.04040541,2.39805746,13.39227541,1.989085099,1.947184414,0,1.947184414,1.929106844,0.01807757,4.779536003,4.138120954,0.641415049,0.059978255,0.581436795,1.540253649,1.065356051,-32.33152128,32.33152128,0,0.829456814,0.014994564,0.482276711,1,0.802339098,0,0.030919711,0.961238037,1,0.640557213,0.916060617,1.854330876,0.041685695,0.115824807,0.216768919,0.724496596,0.448993192,0.975369483,0.93660752,0.01086351,0.466702915,1.865194386,0.50838861,0,0.817944721,-0.308993119,107.9985617,0.308993119,72.00143833,0,0.888184099,1.865194386,1.234874105,2.67339479,6,5,43% -6/19/2018 14:00,77.73829356,69.6844099,137.9138679,422.7605064,48.1291196,47.71750206,0,47.71750206,46.67784907,1.039652991,91.81199979,56.92191527,34.89008452,1.451270533,33.43881398,1.356789177,1.21622239,-4.601116813,4.601116813,0.683008995,0.34897955,0.825102271,26.53812529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.868524,1.051440561,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.597783786,25.50945546,45.46630779,26.56089602,0,56.92191527,-0.134643408,97.7380004,0.134643408,82.2619996,0,0.678648734,45.46630779,65.19088174,88.13243606,6,6,94% -6/19/2018 15:00,66.41255924,77.84930965,342.7585313,664.6944068,76.78229007,120.5940223,43.54314293,77.05087932,74.46702073,2.583858591,85.42104358,0,85.42104358,2.315269342,83.10577424,1.159117823,1.358726774,-2.268819505,2.268819505,0.918144676,0.224012776,2.419735289,77.82700467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58053281,1.677404757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75308998,74.81027719,73.33362279,76.48768194,43.54314293,0,0.065508514,86.24394891,-0.065508514,93.75605109,0,0,73.33362279,76.48768194,123.3932809,6,7,68% -6/19/2018 16:00,54.71070805,86.15298186,546.2486901,781.1809963,94.95645569,310.8122696,214.601248,96.21102156,92.0931682,4.117853363,135.3076067,0,135.3076067,2.863287491,132.4443192,0.954881992,1.503653194,-1.357132039,1.357132039,0.762236937,0.173833745,3.308975935,106.4280406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.52345621,2.07444204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.397341801,102.3026808,90.92079801,104.3771228,214.601248,0,0.274713862,74.05503709,-0.274713862,105.9449629,0.867992439,0,277.1930586,104.3771228,345.505798,6,8,25% -6/19/2018 17:00,42.88976869,95.54138911,726.3897171,844.0763266,107.965005,514.0353608,403.8500665,110.1852943,104.7094618,5.475832516,179.37714,0,179.37714,3.25554325,176.1215968,0.748567679,1.667511812,-0.838144596,0.838144596,0.673484857,0.148632342,3.953636322,127.1625346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6507175,2.358630002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864396056,122.2334652,103.5151135,124.5920952,403.8500665,0,0.478452071,61.41564695,-0.478452071,118.584353,0.945496324,0,485.353867,124.5920952,566.8969015,6,9,17% -6/19/2018 18:00,31.30681476,107.9741472,868.7185766,879.5951053,117.1951289,703.1839946,582.9739637,120.2100309,113.6612634,6.548767579,214.1647421,0,214.1647421,3.533865541,210.6308766,0.546406996,1.884504375,-0.479415331,0.479415331,0.61213854,0.134905747,4.351415585,139.9564831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2555297,2.560273554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152585779,134.5314951,112.4081154,137.0917686,582.9739637,0,0.662775361,48.48811732,-0.662775361,131.5118827,0.974559658,0,680.551022,137.0917686,770.2748428,6,10,13% -6/19/2018 19:00,20.83913265,128.7503418,962.7171687,898.5332951,122.9632957,858.9083227,732.3954554,126.5128673,119.2554986,7.257368671,237.1297206,0,237.1297206,3.70779705,233.4219235,0.363711478,2.247117378,-0.197467084,0.197467084,0.56392255,0.127725255,4.496815517,144.6330447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6329214,2.686286341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257927534,139.026784,117.8908489,141.7130703,732.3954554,0,0.815101076,35.40264275,-0.815101076,144.5973572,0.988657914,0,841.9794123,141.7130703,934.7277826,6,11,11% -6/19/2018 20:00,14.5911179,170.4684673,1001.638341,905.5510399,125.2929203,966.7374274,837.671778,129.0656494,121.5148765,7.550772908,246.6368562,0,246.6368562,3.778043829,242.8588123,0.254663049,2.975236024,0.04729776,-0.04729776,0.522065296,0.125087984,4.39341106,141.3072019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8047213,2.737179893,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183011357,135.8298574,119.9877327,138.5670373,837.671778,0,0.925040932,22.32547199,-0.925040932,157.674528,0.995948338,0,954.2655476,138.5670373,1044.954902,6,12,10% -6/19/2018 21:00,17.89332569,219.843169,982.7202729,902.1948246,124.1644307,1016.581906,888.7533304,127.8285755,120.420415,7.40816052,242.0159234,0,242.0159234,3.744015703,238.2719077,0.312297447,3.836987137,0.279164262,-0.279164262,0.482413789,0.126347684,4.058261513,130.5276404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7526833,2.712526632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940196651,125.4681328,118.69288,128.1806595,888.7533304,0,0.98510134,9.902661134,-0.98510134,170.0973389,0.999243801,0,1006.774136,128.1806595,1090.665814,6,13,8% -6/19/2018 22:00,27.4604441,246.2241052,907.3042997,887.7367895,119.5893432,1002.740862,879.9179357,122.8229264,115.9832833,6.839643058,223.5924918,0,223.5924918,3.606059937,219.9864319,0.479275164,4.297421334,0.518561788,-0.518561788,0.441474401,0.131807315,3.523046519,113.3132864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4875436,2.612578149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55243521,108.921041,114.0399788,111.5336192,879.9179357,0,0.991192374,7.610029531,-0.991192374,172.3899705,0.999555706,0,993.5669718,111.5336192,1066.563495,6,14,7% -6/19/2018 23:00,38.80935842,260.6453172,780.7768608,858.7920346,111.5755275,923.8583638,809.7614243,114.0969394,108.2111137,5.885825778,192.6728032,0,192.6728032,3.364413823,189.3083894,0.677351085,4.549118965,0.790447414,-0.790447414,0.394979221,0.14290322,2.833663948,91.14037321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0166385,2.437506362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.052979884,87.60759342,106.0696183,90.04509979,809.7614243,0,0.94290747,19.45429502,-0.94290747,160.545705,0.996972527,0,913.3795121,90.04509979,972.3122291,6,15,6% -6/19/2018 0:00,50.59976383,270.7777279,612.3652278,807.2814847,99.9564654,782.5455713,680.9868943,101.5586769,96.94240917,4.616267751,151.4890954,0,151.4890954,3.014056232,148.4750392,0.88313248,4.725962894,1.138233802,-1.138233802,0.335504245,0.163230146,2.049484321,65.91846083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.18473108,2.18367348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484844414,63.36333188,94.66957549,65.54700536,680.9868943,0,0.843555696,32.48248077,-0.843555696,147.5175192,0.990727091,0,769.3417403,65.54700536,812.2409444,6,16,6% -6/19/2018 1:00,62.37265895,279.3221435,415.0628519,714.1992556,83.87517943,584.381319,499.9063666,84.4749524,81.3460333,3.128919101,103.16594,0,103.16594,2.529146126,100.6367939,1.088608262,4.875091077,1.665816178,-1.665816178,0.245282346,0.202078261,1.244666425,40.03275073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.19290136,1.832357759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901756588,38.48100272,79.09465795,40.31336048,499.9063666,0,0.699953637,45.57671558,-0.699953637,134.4232844,0.978566697,0,568.2863801,40.31336048,594.6706683,6,17,5% -6/19/2018 2:00,73.85858766,287.4559861,207.1862314,529.4395114,59.99727464,336.1399999,276.3900072,59.74999277,58.18813544,1.561857328,52.04383972,0,52.04383972,1.809139197,50.23470053,1.289075535,5.017053413,2.742814358,-2.742814358,0.06110481,0.289581379,0.520085017,16.72772194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.93264908,1.31071519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.376799825,16.0793226,56.30944891,17.39003779,276.3900072,0,0.522042653,58.53063137,-0.522042653,121.4693686,0.954222385,0,320.0469808,17.39003779,331.4284128,6,18,4% -6/19/2018 3:00,84.75647095,295.8725179,29.79489687,137.1166802,17.26391968,61.25872152,44.29076619,16.96795532,16.74334881,0.224606518,7.744688575,0,7.744688575,0.520570875,7.2241177,1.47927948,5.163949604,7.586715606,-7.586715606,0,0.579425388,0.130142719,4.185837201,0.434149451,1,0.131053864,0,0.947639752,0.986401715,0.724496596,1,16.23390278,0.377151827,0.061587252,0.312029739,0.840241704,0.5647383,0.961238037,0.922476074,0.089062903,4.023585934,16.32296569,4.400737761,25.06195438,0,0.323015159,71.15463274,-0.323015159,108.8453673,0.895208503,0,38.75864035,4.400737761,41.6388352,6,19,7% -6/19/2018 4:00,95.11789797,305.109682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660120497,5.32516853,-6.386682919,6.386682919,0.377659207,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111032361,83.62516991,-0.111032361,96.37483009,0.599680838,0,0,0,0,6,20,0% -6/19/2018 5:00,104.1430675,315.6501195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817639421,5.50913387,-1.636259101,1.636259101,0.809970476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092865135,95.32845782,0.092865135,84.67154218,0,0.511584804,0,0,0,6,21,0% -6/19/2018 6:00,111.482368,327.8819574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94573438,5.722619715,-0.533410684,0.533410684,0.621372289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277318208,106.100212,0.277318208,73.899788,0,0.869701705,0,0,0,6,22,0% -6/19/2018 7:00,116.520406,341.9050423,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03366473,5.967368718,0.066615988,-0.066615988,0.518761685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429761713,115.4524388,0.429761713,64.54756121,0,0.933656458,0,0,0,6,23,0% -6/20/2018 8:00,118.6709679,357.2457733,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071199116,6.235114984,0.542167595,-0.542167595,0.43743757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539811258,122.6707913,0.539811258,57.32920874,0,0.957375033,0,0,0,6,0,0% -6/20/2018 9:00,117.6284873,12.81162942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053004398,0.223605116,1.035264553,-1.035264553,0.353113024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599970329,126.8677726,0.599970329,53.13222736,0,0.966662545,0,0,0,6,1,0% -6/20/2018 10:00,113.5458074,27.38694402,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98174819,0.477992345,1.688858945,-1.688858945,0.2413418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606140774,127.3109758,0.606140774,52.68902415,0,0.967510911,0,0,0,6,2,0% -6/20/2018 11:00,106.9413312,40.25966421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866478336,0.702663696,2.850460037,-2.850460037,0.042696314,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557901904,123.9108243,0.557901904,56.08917574,0,0.96037851,0,0,0,6,3,0% -6/20/2018 12:00,98.44326665,51.35839187,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718159129,0.896373037,6.383345922,-6.383345922,0,#DIV/0!,0,0,0.359574862,1,0.155394656,0,0.944674262,0.983436225,0.724496596,1,0,0,0.052555341,0.312029739,0.86179747,0.586294066,0.961238037,0.922476074,0,0,0,0,0,0,-0.45853925,117.2928881,0.45853925,62.7071119,0,0.940958081,0,0,0,6,4,0% -6/20/2018 13:00,88.27886381,61.00024689,2.299566205,12.82555653,1.914350924,1.873961282,0,1.873961282,1.856626181,0.017335101,4.583937911,3.968656717,0.615281193,0.057724744,0.55755645,1.540756833,1.064655153,-32.86979229,32.86979229,0,0.832483501,0.014431186,0.464156545,1,0.805871201,0,0.030413689,0.961238037,1,0.641870555,0.917373959,1.784659705,0.040139114,0.115824807,0.218256541,0.724496596,0.448993192,0.975163657,0.936401694,0.010455345,0.449135903,1.79511505,0.489275017,0,0.770430561,-0.30943349,108.0250933,0.30943349,71.97490671,0,0.888414387,1.79511505,1.173736612,2.563302188,6,5,43% -6/20/2018 14:00,77.77302687,69.64651423,137.2274814,421.0752081,48.05010595,47.63569669,0,47.63569669,46.60121797,1.03447872,91.66866208,56.94738247,34.72127961,1.44888798,33.27239163,1.357395388,1.215560986,-4.614576631,4.614576631,0.68070723,0.350149296,0.819832008,26.36861553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.79486327,1.04971441,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.593965499,25.34651623,45.38882877,26.39623064,0,56.94738247,-0.135242782,97.77265901,0.135242782,82.22734099,0,0.680294502,45.38882877,65.13722183,88.01983772,6,6,94% -6/20/2018 15:00,66.44976265,77.81155413,341.9776129,663.6891464,76.79862313,120.0898811,43.02904814,77.06083298,74.48286128,2.577971698,85.23219338,0,85.23219338,2.315761844,82.91643153,1.159767145,1.358067816,-2.273048731,2.273048731,0.918867916,0.224572078,2.415786128,77.69998608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.59575936,1.677761573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.750228826,74.68818209,73.34598818,76.36594366,43.02904814,0,0.064833135,86.28272772,-0.064833135,93.71727228,0,0,73.34598818,76.36594366,123.325971,6,7,68% -6/20/2018 16:00,54.74921033,86.11242897,545.4941938,780.5112476,95.01709658,310.1366412,213.872495,96.26414619,92.15198054,4.11216565,135.1264988,0,135.1264988,2.865116038,132.2613828,0.955553983,1.502945413,-1.359346156,1.359346156,0.762615573,0.174185349,3.306035047,106.3334515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.57998887,2.075766816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.395211137,102.2117582,90.9752,104.287525,213.872495,0,0.274015904,74.09662295,-0.274015904,105.9033771,0.867528839,0,276.5157574,104.287525,344.7698567,6,8,25% -6/20/2018 17:00,42.92829789,95.49290153,725.729853,843.5840662,108.0520259,513.3164711,403.0517543,110.2647168,104.7938586,5.470858182,179.2197723,0,179.2197723,3.25816725,175.9616051,0.74924014,1.666665544,-0.83961471,0.83961471,0.673736261,0.148887393,3.951670995,127.099323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.731843,2.360531082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.862972184,122.1727037,103.5948151,124.5332348,403.0517543,0,0.47778493,61.45916801,-0.47778493,118.540832,0.945350404,0,484.6199539,124.5332348,566.1244654,6,9,17% -6/20/2018 18:00,31.3431289,107.9061177,868.2037424,879.207248,117.3013845,702.511343,582.2021415,120.3092015,113.764315,6.544886541,214.0431186,0,214.0431186,3.537069539,210.5060491,0.547040797,1.883317037,-0.480544622,0.480544622,0.61233166,0.13510813,4.350443708,139.9252242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.3545868,2.56259484,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151881657,134.5014478,112.5064684,137.0640427,582.2021415,0,0.662189879,48.53289994,-0.662189879,131.4671001,0.974492957,0,679.8583546,137.0640427,769.5640292,6,10,13% -6/20/2018 19:00,20.86695162,128.631458,962.3837632,898.2120009,123.0854098,858.3501756,731.7213897,126.6287859,119.3739305,7.254855319,237.0525647,0,237.0525647,3.711479242,233.3410855,0.364197011,2.245042464,-0.19843129,0.19843129,0.564087439,0.127896391,4.496842861,144.6339242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7467626,2.688954076,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257947345,139.0276294,118.00471,141.7165835,731.7213897,0,0.814642188,35.4480024,-0.814642188,144.5519976,0.98862336,0,841.4015691,141.7165835,934.1522387,6,11,11% -6/20/2018 20:00,14.59087179,170.2676232,1001.508342,905.2752947,125.4287939,966.3448841,837.1484381,129.1964459,121.646653,7.549792923,246.6094336,0,246.6094336,3.78214092,242.8272926,0.254658753,2.971730635,0.046399337,-0.046399337,0.522218936,0.125239889,4.394403653,141.3391271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9313899,2.740148221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183730487,135.8605451,120.1151204,138.6006933,837.1484381,0,0.924744598,22.37012604,-0.924744598,157.629874,0.995931017,0,953.8572157,138.6006933,1044.568597,6,12,10% -6/20/2018 21:00,17.8597337,219.7201167,982.800512,901.9533082,124.3121778,1016.389324,888.4168515,127.9724724,120.563707,7.408765396,242.0398334,0,242.0398334,3.748470825,238.2913626,0.311711157,3.834839469,0.278256299,-0.278256299,0.48256906,0.126487702,4.060134648,130.5878869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.890421,2.715754352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941553731,125.5260441,118.8319748,128.2417984,888.4168515,0,0.984992065,9.939001542,-0.984992065,170.0609985,0.99923817,0,1006.572003,128.2417984,1090.503696,6,13,8% -6/20/2018 22:00,27.41677341,246.1690644,907.5862986,887.5258482,119.7468007,1002.765731,879.7879696,122.9777618,116.1359929,6.841768885,223.6656136,0,223.6656136,3.610807861,220.0548058,0.478512966,4.296460691,0.517563168,-0.517563168,0.441645175,0.131939851,3.525662215,113.3974162,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6343338,2.616018003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554330273,109.0019098,114.1886641,111.6179278,879.7879696,0,0.991281518,7.571363852,-0.991281518,172.4286361,0.999560242,0,993.5897398,111.6179278,1066.641441,6,14,7% -6/20/2018 23:00,38.76337542,260.612175,781.2374083,858.6179334,111.7400835,924.1019608,809.8419555,114.2600053,108.3707077,5.88929758,192.7894303,0,192.7894303,3.369375794,189.4200545,0.67654853,4.548540524,0.789234955,-0.789234955,0.395186563,0.143029612,2.83683221,91.24227542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1700463,2.441101293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055275279,87.7055457,106.2253216,90.14664699,809.8419555,0,0.943192454,19.40520936,-0.943192454,160.5947906,0.99698855,0,913.6284782,90.14664699,972.6276557,6,15,6% -6/20/2018 0:00,50.55349787,270.7518512,612.9674843,807.1711931,100.12524,782.9956586,681.2687562,101.7269024,97.10609462,4.620807815,151.6402087,0,151.6402087,3.01914541,148.6210633,0.882324986,4.725511259,1.136556334,-1.136556334,0.335791109,0.163345108,2.052961989,66.03031456,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.34207176,2.187360572,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.487363972,63.47084994,94.82943573,65.65821052,681.2687562,0,0.844020156,32.43289483,-0.844020156,147.5671052,0.990759709,0,769.8030701,65.65821052,812.7750557,6,16,6% -6/20/2018 1:00,62.32702209,279.2981762,415.756346,714.2387704,84.04641873,585.019395,500.3731389,84.64625606,81.51210911,3.134146953,103.3392492,0,103.3392492,2.534309623,100.8049396,1.087811748,4.87467277,1.662982036,-1.662982036,0.245767012,0.202153063,1.248134913,40.14430923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.35253974,1.836098695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904269495,38.58823699,79.25680923,40.42433569,500.3731389,0,0.700568437,45.52737243,-0.700568437,134.4726276,0.978629385,0,568.9366666,40.42433569,595.3935858,6,17,5% -6/20/2018 2:00,73.81436712,287.4312261,207.8945881,529.924022,60.1781079,336.9576102,277.0268971,59.93071313,58.36351591,1.56719722,52.2210418,0,52.2210418,1.814591987,50.40644981,1.288303742,5.016621269,2.735813676,-2.735813676,0.062301997,0.289464524,0.523024337,16.82226056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.10123146,1.314665717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378929352,16.17019671,56.48016081,17.48486243,277.0268971,0,0.5227672,58.4819465,-0.5227672,121.5180535,0.954355132,0,320.8622017,17.48486243,332.3056944,6,18,4% -6/20/2018 3:00,84.71524314,295.8450424,30.24337413,138.6038432,17.47717308,62.0566907,44.87853154,17.17815916,16.95017183,0.227987329,7.859857456,0,7.859857456,0.527001252,7.332856204,1.478559919,5.163470066,7.530916873,-7.530916873,0,0.577884366,0.131750313,4.237542958,0.431077595,1,0.132013678,0,0.94752537,0.986287333,0.724496596,1,16.43451233,0.381810613,0.061225789,0.312029739,0.841091932,0.565588528,0.961238037,0.922476074,0.090163574,4.073287474,16.5246759,4.455098087,25.53240209,0,0.32378995,71.10771938,-0.32378995,108.8922806,0.895578901,0,39.39095651,4.455098087,42.30672911,6,19,7% -6/20/2018 4:00,95.07897475,305.0777333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659441159,5.324610921,-6.441033356,6.441033356,0.368364735,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111835804,83.57884755,-0.111835804,96.42115245,0.602915986,0,0,0,0,6,20,0% -6/20/2018 5:00,104.1090325,315.6120114,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817045398,5.508468758,-1.642781438,1.642781438,0.811085861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092102408,95.28456868,0.092102408,84.71543132,0,0.50712603,0,0,0,6,21,0% -6/20/2018 6:00,111.4553423,327.8364907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945262692,5.72182617,-0.536123883,0.536123883,0.621836273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276646374,106.0601514,0.276646374,73.93984862,0,0.869263852,0,0,0,6,22,0% -6/20/2018 7:00,116.502819,341.8525292,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033357779,5.966452191,0.064830145,-0.064830145,0.519067082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429224785,115.4183731,0.429224785,64.58162692,0,0.933510921,0,0,0,6,23,0% -6/21/2018 8:00,118.6648039,357.1890576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071091534,6.234125107,0.540576636,-0.540576636,0.43770964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539444037,122.6458001,0.539444037,57.35419994,0,0.957311979,0,0,0,6,0,0% -6/21/2018 9:00,117.6342804,12.75544285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053105506,0.222624475,1.033435111,-1.033435111,0.353425877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599796001,126.8552887,0.599796001,53.1447113,0,0.966638324,0,0,0,6,1,0% -6/21/2018 10:00,113.5623511,27.33537137,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982036932,0.477092233,1.686130188,-1.686130188,0.241808445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606169305,127.3130312,0.606169305,52.68696879,0,0.967514794,0,0,0,6,2,0% -6/21/2018 11:00,106.9664289,40.21438108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866916374,0.701873356,2.844701145,-2.844701145,0.043681143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558129357,123.9265288,0.558129357,56.07347124,0,0.960415033,0,0,0,6,3,0% -6/21/2018 12:00,98.47466442,51.31900404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718707124,0.895685589,6.35787346,-6.35787346,0,#DIV/0!,0,0,0.357783255,1,0.156007203,0,0.944597902,0.983359865,0.724496596,1,0,0,0.052331575,0.312029739,0.862339733,0.586836329,0.961238037,0.922476074,0,0,0,0,0,0,-0.45894806,117.3192485,0.45894806,62.68075146,0,0.94105521,0,0,0,6,4,0% -6/21/2018 13:00,88.31172048,60.96536037,2.19133473,12.21016203,1.831601714,1.792891371,0,1.792891371,1.776372164,0.016519207,4.371025899,3.784481874,0.586544025,0.05522955,0.531314476,1.541330291,1.064046268,-33.50663566,33.50663566,0,0.8358384,0.013807387,0.444093041,1,0.80989048,0,0.029835978,0.961238037,1,0.643372425,0.918875829,1.707516492,0.038425862,0.115824807,0.219957839,0.724496596,0.448993192,0.974927677,0.936165714,0.010003405,0.429686067,1.717519897,0.46811193,0,0.719466031,-0.309945262,108.0559318,0.309945262,71.94406821,0,0.888681193,1.717519897,1.107487861,2.442348552,6,5,42% -6/21/2018 14:00,77.81169586,69.61439265,136.4732284,419.261291,47.95657473,47.53929991,0,47.53929991,46.51050706,1.028792842,91.51748506,56.98190314,34.53558192,1.446067669,33.08951425,1.358070289,1.215000359,-4.629653624,4.629653624,0.678128912,0.351399137,0.814016014,26.18155318,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.7076685,1.047671104,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.589751831,25.16670478,45.29742033,26.21437589,0,56.98190314,-0.135910241,97.811258,0.135910241,82.188742,0,0.682110137,45.29742033,65.08230963,87.89249034,6,6,94% -6/21/2018 15:00,66.49057083,77.7802168,341.1315338,662.6319316,76.8076668,119.5378556,42.4746297,77.06322586,74.49163226,2.571593596,85.0273244,0,85.0273244,2.316034544,82.71128986,1.160479383,1.357520876,-2.277646562,2.277646562,0.919654191,0.225155575,2.411497746,77.56205699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60419036,1.677959143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.747121908,74.5555994,73.35131226,76.23355854,42.4746297,0,0.064099884,86.32482751,-0.064099884,93.67517249,0,0,73.35131226,76.23355854,123.2446517,6,7,68% -6/21/2018 16:00,54.79112566,86.0792384,544.683196,779.8165047,95.07307017,309.4134177,213.1010994,96.31231833,92.20626632,4.106052006,134.9315508,0,134.9315508,2.866803848,132.064747,0.956285544,1.502366128,-1.361685827,1.361685827,0.763015681,0.174547463,3.302828956,106.2303326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.63217042,2.076989629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392888335,102.1126364,91.02505876,104.189626,213.1010994,0,0.273270825,74.14100692,-0.273270825,105.8589931,0.867031328,0,275.7903879,104.189626,343.9804143,6,8,25% -6/21/2018 17:00,42.97026702,95.4532475,725.0219168,843.0776822,108.1356383,512.5568353,402.2163641,110.3404712,104.8749498,5.46552146,179.0506462,0,179.0506462,3.260688471,175.7899577,0.74997264,1.665973451,-0.841126093,0.841126093,0.673994723,0.149148096,3.949483035,127.0289507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8097908,2.362357698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.861387014,122.1050592,103.6711779,124.4674169,402.2163641,0,0.477081024,61.505068,-0.477081024,118.494932,0.945195999,0,483.844476,124.4674169,565.305911,6,9,17% -6/21/2018 18:00,31.38329882,107.8492251,867.6475032,878.8101891,117.4049332,701.8059121,581.4004775,120.4054346,113.8647412,6.540693375,213.9113743,0,213.9113743,3.540191913,210.3711824,0.547741894,1.882324073,-0.481675208,0.481675208,0.612525001,0.135314091,4.349272183,139.8875439,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4511203,2.56485699,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.151032891,134.4652281,112.6021532,137.0300851,581.4004775,0,0.661576851,48.57975643,-0.661576851,131.4202436,0.97442299,0,679.1321451,137.0300851,768.8155952,6,10,13% -6/21/2018 19:00,20.89983408,128.5261932,962.0131432,897.8837551,123.2051942,857.7660703,731.0239058,126.7421644,119.490103,7.252061429,236.9663155,0,236.9663155,3.715091184,233.2512244,0.364770918,2.243205246,-0.199372201,0.199372201,0.564248344,0.128070178,4.496677935,144.6286196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.858432,2.691570916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257827857,139.0225304,118.1162599,141.7141013,731.0239058,0,0.814163194,35.49529576,-0.814163194,144.5047042,0.988587251,0,840.7971733,141.7141013,933.5462183,6,11,11% -6/21/2018 20:00,14.59757848,170.0714582,1001.342469,904.9933482,125.5624664,965.9308277,836.6059904,129.3248372,121.7762947,7.548542501,246.5732464,0,246.5732464,3.786171638,242.7870748,0.254775807,2.968306909,0.045543965,-0.045543965,0.522365213,0.125394129,4.395197831,141.3646706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0560065,2.743068463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184305867,135.8850985,120.2403124,138.6281669,836.6059904,0,0.924433303,22.41694346,-0.924433303,157.5830565,0.99591281,0,953.4269349,138.6281669,1044.156298,6,12,10% -6/21/2018 21:00,17.8320627,219.584737,982.8432469,901.7051804,124.4576274,1016.176536,888.0626772,128.1138583,120.7047707,7.40908755,242.0545808,0,242.0545808,3.752856666,238.3017242,0.311228206,3.832476647,0.277411983,-0.277411983,0.482713447,0.12663019,4.06179176,130.6411853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0260169,2.718931879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942754303,125.5772765,118.9687712,128.2962084,888.0626772,0,0.984870328,9.979331896,-0.984870328,170.0206681,0.999231895,0,1006.349323,128.2962084,1090.316626,6,13,8% -6/21/2018 22:00,27.37750202,246.1023106,907.8263184,887.3065495,119.9016335,1002.768073,879.6383378,123.1297351,116.2861569,6.843578256,223.728478,0,223.728478,3.615476641,220.1130014,0.477827551,4.295295616,0.516654917,-0.516654917,0.441800495,0.13207552,3.52803558,113.4737518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7786772,2.619400519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556049768,109.0752864,114.3347269,111.6946869,879.6383378,0,0.991357878,7.538086181,-0.991357878,172.4619138,0.999564127,0,993.5896542,111.6946869,1066.691593,6,14,7% -6/21/2018 23:00,38.72118172,260.5697709,781.6490226,858.4315426,111.9014133,924.316715,809.8971417,114.4195733,108.5271728,5.892400502,192.8940956,0,192.8940956,3.374240483,189.5198551,0.675812111,4.547800434,0.788154203,-0.788154203,0.395371383,0.14316069,2.839727124,91.33538581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.3204465,2.444625744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.057372635,87.79504695,106.3778192,90.23967269,809.8971417,0,0.943461536,19.35875283,-0.943461536,160.6412472,0.997003669,0,913.8482408,90.23967269,972.9083018,6,15,6% -6/21/2018 0:00,50.51089055,270.718382,613.5120247,807.0401047,100.2897669,783.4060963,681.5155231,101.8905732,97.26566037,4.624912791,151.7771999,0,151.7771999,3.024106501,148.7530934,0.881581348,4.724927111,1.135086236,-1.135086236,0.336042511,0.163468299,2.056136847,66.13242893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49545242,2.190954865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.489664147,63.56900616,94.98511657,65.75996103,681.5155231,0,0.844463019,32.38555165,-0.844463019,147.6144484,0.990790776,0,770.2244106,65.75996103,813.2629899,6,16,6% -6/21/2018 1:00,62.28516739,279.2676929,416.3826995,714.2373045,84.21147142,585.6012374,500.7901839,84.81105352,81.67218485,3.13886867,103.4960928,0,103.4960928,2.539286571,100.9568062,1.087081246,4.874140735,1.660527908,-1.660527908,0.246186693,0.202245366,1.251284699,40.2456172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.50641063,1.839704476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.906551505,38.68561806,79.41296214,40.52532254,500.7901839,0,0.701153777,45.48035484,-0.701153777,134.5196452,0.978688967,0,569.53079,40.52532254,596.0538031,6,17,5% -6/21/2018 2:00,73.77421001,287.4006775,208.5292275,530.3111914,60.34791091,337.6931099,277.5929298,60.10018013,58.52819873,1.5719814,52.38003765,0,52.38003765,1.819712174,50.56032547,1.287602868,5.016088095,2.729781443,-2.729781443,0.063333569,0.289397854,0.52567502,16.90751563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.25953085,1.318375275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.380849762,16.25214713,56.64038061,17.57052241,277.5929298,0,0.523452898,58.43584864,-0.523452898,121.5641514,0.954480422,0,321.5973973,17.57052241,333.0969528,6,18,4% -6/21/2018 3:00,84.67839565,295.8123265,30.64205425,139.8883945,17.66796019,62.76236093,45.39616217,17.36619876,17.13520601,0.230992748,7.962275001,0,7.962275001,0.532754188,7.429520813,1.477916809,5.162899065,7.482870703,-7.482870703,0,0.576591897,0.133188547,4.283801502,0.428405688,1,0.132851407,0,0.947425365,0.986187328,0.724496596,1,16.61397844,0.385978595,0.060910668,0.312029739,0.841834002,0.566330598,0.961238037,0.922476074,0.091148624,4.117752946,16.70512706,4.503731541,25.9481881,0,0.324517,71.06368482,-0.324517,108.9363152,0.895924867,0,39.95275403,4.503731541,42.90035625,6,19,7% -6/21/2018 4:00,95.04506567,305.0410541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658849334,5.323970748,-6.490496328,6.490496328,0.359906068,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112578782,83.53600747,-0.112578782,96.46399253,0.605866576,0,0,0,0,6,20,0% -6/21/2018 5:00,104.0805995,315.5697973,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816549148,5.507731983,-1.648911454,1.648911454,0.812134156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091410484,95.24475637,0.091410484,84.75524363,0,0.503016788,0,0,0,6,21,0% -6/21/2018 6:00,111.4345083,327.7878347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944899071,5.720976964,-0.538811391,0.538811391,0.622295864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276054494,106.024865,0.276054494,73.97513505,0,0.868876341,0,0,0,6,22,0% -6/21/2018 7:00,116.4918942,341.7981779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033167106,5.965503581,0.062958786,-0.062958786,0.519387103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428775143,115.3898528,0.428775143,64.61014724,0,0.933388763,0,0,0,6,23,0% -6/22/2018 8:00,118.6655,357.1322395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071103683,6.233133445,0.538827885,-0.538827885,0.438008694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539169116,122.6270949,0.539169116,57.37290513,0,0.957264718,0,0,0,6,0,0% -6/22/2018 9:00,117.6467691,12.7009464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053323475,0.221673333,1.03135966,-1.03135966,0.3537808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599716318,126.8495831,0.599716318,53.15041688,0,0.966627248,0,0,0,6,1,0% -6/22/2018 10:00,113.5851189,27.2869559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982434305,0.476247223,1.682990965,-1.682990965,0.242345284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606291998,127.3218705,0.606291998,52.67812953,0,0.967531486,0,0,0,6,2,0% -6/22/2018 11:00,106.9971228,40.17326361,0,0,0,0,0,0,0,0,0,0,0,0,0,1.867452083,0.701155721,2.838083784,-2.838083784,0.044812778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558447692,123.9485131,0.558447692,56.05148689,0,0.9604661,0,0,0,6,3,0% -6/22/2018 12:00,98.51101337,51.2844419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719341533,0.895082366,6.329026932,-6.329026932,0,#DIV/0!,0,0,0.355742192,1,0.156706697,0,0.9445106,0.983272563,0.724496596,1,0,0,0.052076252,0.312029739,0.862958953,0.587455549,0.961238037,0.922476074,0,0,0,0,0,0,-0.459441902,117.3511004,0.459441902,62.64889965,0,0.941172312,0,0,0,6,4,0% -6/22/2018 13:00,88.34853068,60.93579529,2.074681232,11.55327317,1.741720681,1.704841199,0,1.704841199,1.689201376,0.015639823,4.143156476,3.587606686,0.555549789,0.052519305,0.503030485,1.54197275,1.06353026,-34.25108997,34.25108997,0,0.839512429,0.013129826,0.422300344,1,0.814382913,0,0.02918786,0.961238037,1,0.645060461,0.920563865,1.623724614,0.036563866,0.115824807,0.221870187,0.724496596,0.448993192,0.974661673,0.93589971,0.009512514,0.408561559,1.633237129,0.445125425,0,0.665921103,-0.310527297,108.0910107,0.310527297,71.90898929,0,0.88898356,1.633237129,1.037118338,2.312010339,6,5,42% -6/22/2018 14:00,77.85423373,69.58808883,135.6524608,417.3197594,47.84858289,47.42837712,0,47.42837712,46.40577157,1.022605549,91.35784187,57.02452091,34.33332096,1.442811317,32.89050964,1.358812715,1.21454127,-4.646351925,4.646351925,0.675273335,0.352729192,0.807668086,25.97738199,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.60699277,1.045311887,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.585152779,24.97044767,45.19214555,26.01575956,0,57.02452091,-0.13664467,97.85373397,0.13664467,82.14626603,0,0.684087448,45.19214555,65.02551854,87.75004692,6,6,94% -6/22/2018 15:00,66.53491274,77.75533731,340.2215636,661.5232554,76.80949192,118.9391486,41.88101237,77.0581362,74.49340234,2.564733857,84.80674663,0,84.80674663,2.316089578,82.49065705,1.161253295,1.357086647,-2.282609248,2.282609248,0.920502861,0.22576315,2.406875476,77.41338888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.60589183,1.677999015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.743773089,74.41269396,73.34966491,76.09069297,41.88101237,0,0.063309962,86.37017879,-0.063309962,93.62982121,0,0,73.34966491,76.09069297,123.1495016,6,7,68% -6/22/2018 16:00,54.83637962,86.05344821,543.8168537,779.0970726,95.12444193,308.6438514,212.2882412,96.35561018,92.25608903,4.099521152,134.7230452,0,134.7230452,2.868352896,131.8546923,0.957075374,1.501916004,-1.364148267,1.364148267,0.763436782,0.174919996,3.299361936,106.1188213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68006191,2.078111909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390376491,102.0054475,91.0704384,104.0835594,212.2882412,0,0.272479834,74.18811512,-0.272479834,105.8118849,0.866500182,0,275.0182381,104.0835594,343.138846,6,8,25% -6/22/2018 17:00,43.01559872,95.42246816,724.2668775,842.5573622,108.2158952,511.7576442,401.3450279,110.4126163,104.9527866,5.459829654,178.8699982,0,178.8699982,3.263108513,175.6068897,0.750763827,1.66543625,-0.842676693,0.842676693,0.674259891,0.149414392,3.947075479,126.9515154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8846106,2.36411101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.859642748,122.0306254,103.7442533,124.3947364,401.3450279,0,0.476341488,61.55326981,-0.476341488,118.4467302,0.945033288,0,483.0286646,124.3947364,564.4425317,6,9,17% -6/22/2018 18:00,31.42724436,107.8035291,867.0505757,878.4040363,117.5058125,701.0687304,580.5699582,120.4987722,113.9625787,6.536193483,213.7696842,0,213.7696842,3.543233797,210.2264504,0.548508889,1.881526528,-0.482805472,0.482805472,0.612718288,0.135523597,4.347902694,139.8434964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5451654,2.567060824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.150040701,134.422888,112.6952061,136.9899488,580.5699582,0,0.660937261,48.6286071,-0.660937261,131.3713929,0.974349854,0,678.3734604,136.9899488,768.0306421,6,10,13% -6/22/2018 19:00,20.93770044,128.434711,961.6057266,897.5486052,123.3226691,857.1567888,730.3037631,126.8530257,119.6040356,7.248990151,236.871075,0,236.871075,3.718633485,233.1524415,0.365431811,2.24160858,-0.200288452,0.200288452,0.564405032,0.128246604,4.496321028,144.6171403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9679484,2.694137301,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257569278,139.011496,118.2255177,141.7056333,730.3037631,0,0.813664863,35.54444029,-0.813664863,144.4555597,0.988549638,0,840.1670386,141.7056333,932.9105415,6,11,11% -6/22/2018 20:00,14.61121064,169.8805371,1001.140816,904.7051954,125.6939393,965.4957303,836.0449047,129.4508256,121.9038032,7.547022356,246.5283177,0,246.5283177,3.79013603,242.7381817,0.255013733,2.964974708,0.044732863,-0.044732863,0.52250392,0.125550709,4.395792537,141.3837984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1785725,2.745940652,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184736729,135.9034848,120.3633092,138.6494255,836.0449047,0,0.924107553,22.46583587,-0.924107553,157.5341641,0.995893744,0,952.9751994,138.6494255,1043.718475,6,12,10% -6/22/2018 21:00,17.81037635,219.4373223,982.8482475,901.450383,124.6007618,1015.943663,887.6909485,128.2527143,120.8435891,7.409125246,242.0601093,0,242.0601093,3.757172695,238.3029366,0.310849708,3.829903775,0.276632461,-0.276632461,0.482846753,0.126775178,4.06323058,130.6874627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1594543,2.722058828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943796724,125.6217601,119.103251,128.3438189,887.6909485,0,0.984736337,10.02353639,-0.984736337,169.9764636,0.999224987,0,1006.106228,128.3438189,1090.10469,6,13,8% -6/22/2018 22:00,27.34270433,246.0239371,908.0238257,887.0787729,120.0538045,1002.747644,879.4688378,123.2788065,116.4337394,6.845067149,223.7809544,0,223.7809544,3.620065158,220.1608893,0.477220217,4.293927741,0.515838174,-0.515838174,0.441940166,0.132214377,3.530163355,113.5421884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9205391,2.622724884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557591334,109.1410702,114.4781304,111.7637951,879.4688378,0,0.991421354,7.510311921,-0.991421354,172.4896881,0.999567356,0,993.5664714,111.7637951,1066.71364,6,14,7% -6/22/2018 23:00,38.68285007,260.5181606,782.0109106,858.2326582,112.0594599,924.50203,809.9264477,114.5755823,108.6804537,5.895128567,192.9866053,0,192.9866053,3.379006171,189.6075991,0.675143098,4.546899664,0.787206339,-0.787206339,0.395533477,0.143296543,2.842344728,91.41957696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.467786,2.448078468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.05926908,87.87597469,106.5270551,90.32405316,809.9264477,0,0.943714318,19.31501261,-0.943714318,160.6849874,0.997017864,0,914.0381922,90.32405316,973.1534785,6,15,6% -6/22/2018 0:00,50.4720119,270.6773671,613.9978594,806.8878946,100.4499672,783.7759707,681.7263654,102.0496053,97.42103004,4.628575218,151.8998268,0,151.8998268,3.028937131,148.8708896,0.880902788,4.724211266,1.133824748,-1.133824748,0.336258238,0.163599865,2.059004565,66.22466461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.64479966,2.194454641,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.491741799,63.6576666,95.13654146,65.85212124,681.7263654,0,0.84488362,32.34053111,-0.84488362,147.6594689,0.990820252,0,770.6048305,65.85212124,813.7037268,6,16,6% -6/22/2018 1:00,62.24716148,279.230739,416.9408063,714.1943565,84.3702311,586.1256821,501.1564489,84.96923326,81.82615734,3.143075915,103.6361994,0,103.6361994,2.544073761,101.0921257,1.086417918,4.873495768,1.658454853,-1.658454853,0.246541206,0.202355418,1.254111414,40.33653406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65441485,1.843172779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90859945,38.77301081,79.5630143,40.61618359,501.1564489,0,0.701708778,45.43573926,-0.701708778,134.5642607,0.978745369,0,570.0675678,40.61618359,596.6500476,6,17,5% -6/22/2018 2:00,73.7381786,287.3643879,209.0890092,530.6003541,60.50653729,338.3452057,278.0869625,60.25824321,58.68204194,1.576201271,52.52054637,0,52.52054637,1.824495345,50.69605103,1.286974001,5.015454722,2.724715055,-2.724715055,0.064199973,0.289381721,0.528032777,16.98334921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.4074108,1.321840666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382557949,16.32504125,56.78996875,17.64688192,278.0869625,0,0.524098713,58.39241117,-0.524098713,121.6075888,0.954598125,0,322.2512617,17.64688192,333.8007929,6,18,4% -6/22/2018 3:00,84.64598712,295.7744218,30.98950792,140.9677778,17.83591473,63.37374748,45.84203938,17.5317081,17.2980961,0.233612001,8.051583617,0,8.051583617,0.537818637,7.51376498,1.477351174,5.162237504,7.442373713,-7.442373713,0,0.575546884,0.134454659,4.324524024,0.42613403,1,0.133565761,0,0.947339961,0.986101924,0.724496596,1,16.77195949,0.389647771,0.060642225,0.312029739,0.842466777,0.566963373,0.961238037,0.922476074,0.092016029,4.156896983,16.86397552,4.546544755,26.30718638,0,0.325195162,71.02260075,-0.325195162,108.9773993,0.896246175,0,40.4416907,4.546544755,43.41731331,6,19,7% -6/22/2018 4:00,95.01621981,304.9997017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658345878,5.323249013,-6.534750396,6.534750396,0.352338177,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113260187,83.49671457,-0.113260187,96.50328543,0.608538604,0,0,0,0,6,20,0% -6/22/2018 5:00,104.0578077,315.5235411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816151356,5.50692466,-1.654630402,1.654630402,0.813112153,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090790391,95.20907935,0.090790391,84.79092065,0,0.499280929,0,0,0,6,21,0% -6/22/2018 6:00,111.4198933,327.7360594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944643991,5.720073315,-0.541466835,0.541466835,0.622749972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275543442,105.9944024,0.275543442,74.00559763,0,0.86854041,0,0,0,6,22,0% -6/22/2018 7:00,116.4876446,341.7420622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033092936,5.964524178,0.061005982,-0.061005982,0.519721052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428413448,115.3669156,0.428413448,64.63308435,0,0.933290312,0,0,0,6,23,0% -6/23/2018 8:00,118.6730537,357.075394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071235521,6.232141302,0.536925177,-0.536925177,0.438334077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538986888,122.6146985,0.538986888,57.38530146,0,0.957233365,0,0,0,6,0,0% -6/23/2018 9:00,117.6659357,12.64821265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053657995,0.220752955,1.029043061,-1.029043061,0.354176962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59973138,126.8506616,0.59973138,53.14933844,0,0.966629342,0,0,0,6,1,0% -6/23/2018 10:00,113.6140787,27.24176498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98293975,0.475458493,1.679449499,-1.679449499,0.24295091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60650865,127.3374815,0.60650865,52.66251851,0,0.967560945,0,0,0,6,2,0% -6/23/2018 11:00,107.0333689,40.13637171,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868084696,0.700511836,2.830628745,-2.830628745,0.046087665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558856417,123.9767482,0.558856417,56.0232518,0,0.960531581,0,0,0,6,3,0% -6/23/2018 12:00,98.55226005,51.25475722,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720061423,0.894564271,6.296941586,-6.296941586,0,#DIV/0!,0,0,0.353456668,1,0.157492072,0,0.944412448,0.983174411,0.724496596,1,0,0,0.051789844,0.312029739,0.863654181,0.588150777,0.961238037,0.922476074,0,0,0,0,0,0,-0.460020027,117.3883998,0.460020027,62.61160015,0,0.94130908,0,0,0,6,4,0% -6/23/2018 13:00,88.38921987,60.91159588,1.951000161,10.86243297,1.64566028,1.610745014,0,1.610745014,1.596037551,0.014707463,3.902819898,3.380154592,0.522665306,0.049622729,0.473042577,1.54268291,1.063107901,-35.11439537,35.11439537,0,0.843495717,0.012405682,0.399009388,1,0.819333777,0,0.028470654,0.961238037,1,0.646932288,0.922435692,1.534172002,0.034572475,0.115824807,0.223990954,0.724496596,0.448993192,0.974365751,0.935603788,0.008987875,0.385986828,1.543159877,0.420559304,0,0.610679762,-0.311178407,108.1302611,0.311178407,71.86973886,0,0.889320471,1.543159877,0.963649317,2.173849082,6,5,41% -6/23/2018 14:00,77.90057497,69.56764073,134.7665212,415.2514916,47.72617482,47.30298152,0,47.30298152,46.28705456,1.015926963,91.18905004,57.07422644,34.11482361,1.439120262,32.67570334,1.359621522,1.214184384,-4.664678824,4.664678824,0.67213925,0.354139696,0.800802149,25.75654985,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.49287745,1.042637731,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.580178431,24.75817542,45.07305588,25.80081315,0,57.07422644,-0.137444964,97.90002419,0.137444964,82.09997581,0,0.686218029,45.07305588,64.96617633,87.59211897,6,6,94% -6/23/2018 15:00,66.58271937,77.73694886,339.2489336,660.3635586,76.80416362,118.2949462,41.24930975,77.04563647,74.48823471,2.557401761,84.57076056,0,84.57076056,2.31592891,82.25483165,1.162087678,1.356765708,-2.287933442,2.287933442,0.921413352,0.226394709,2.401924401,77.25414529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.6009245,1.677882612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.740186052,74.25962295,73.34111055,75.93750557,41.24930975,0,0.062464546,86.41871365,-0.062464546,93.58128635,0,0,73.34111055,75.93750557,123.0406892,6,7,68% -6/23/2018 16:00,54.88490046,86.03508857,542.8962754,778.3532297,95.17127325,307.8291528,211.4350632,96.39408967,92.30150822,4.092581444,134.5012524,0,134.5012524,2.869765033,131.6314874,0.957922223,1.501595568,-1.366730834,1.366730834,0.763878427,0.175302866,3.295638036,105.9990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.72372056,2.079134998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.387678538,101.8903167,91.1113991,103.9694517,211.4350632,0,0.271644101,74.23787613,-0.271644101,105.7621239,0.865935631,0,274.2005539,103.9694517,342.2464807,6,8,25% -6/23/2018 17:00,43.06421901,95.40059393,723.4656522,842.0232772,108.2928461,510.9200337,400.4388268,110.481207,105.0274173,5.453789679,178.6780522,0,178.6780522,3.265428869,175.4126234,0.751612411,1.665054472,-0.844264546,0.844264546,0.67453143,0.14968623,3.944451168,126.8671085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9563484,2.3657921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.857741444,121.9494903,103.8140898,124.3152824,400.4388268,0,0.475567407,61.60369971,-0.475567407,118.3963003,0.944862433,0,482.1736941,124.3152824,563.5355602,6,9,17% -6/23/2018 18:00,31.47488917,107.7690724,866.4136269,877.9888858,117.604057,700.3007656,579.7115129,120.5892527,114.0578608,6.531391894,213.6182111,0,213.6182111,3.546196231,210.0720148,0.549340448,1.880925145,-0.483933869,0.483933869,0.612911255,0.13573662,4.346336766,139.7931308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6367542,2.569207098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148906192,134.3744747,112.7856604,136.9436818,579.7115129,0,0.66027204,48.67937658,-0.66027204,131.3206234,0.974273637,0,677.5833047,136.9436818,767.2102055,6,10,13% -6/23/2018 19:00,20.98047395,128.3571404,961.1618898,897.2065899,123.4378521,856.523053,729.5616633,126.9613898,119.7157454,7.245644322,236.7669348,0,236.7669348,3.722106678,233.0448281,0.366178349,2.240254719,-0.201178751,0.201178751,0.564557282,0.128425662,4.495772329,144.5994922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0753281,2.696653618,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.257171748,138.994532,118.3324999,141.6911856,729.5616633,0,0.81314791,35.59535909,-0.81314791,144.4046409,0.988510572,0,839.5119168,141.6911856,932.245964,6,11,11% -6/23/2018 20:00,14.63173707,169.695392,1000.903449,904.410825,125.8232123,965.0400106,835.4655994,129.5744112,122.0291782,7.545232979,246.4746633,0,246.4746633,3.79403409,242.6806292,0.255371987,2.961743316,0.043967175,-0.043967175,0.52263486,0.12570964,4.396186684,141.3964756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2990877,2.748764783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185022287,135.9156706,120.48411,138.6644354,835.4655994,0,0.923767801,22.51672261,-0.923767801,157.4832774,0.995873844,0,952.5024481,138.6644354,1043.255548,6,12,10% -6/23/2018 21:00,17.79473502,219.278188,982.8152701,901.1888541,124.7415623,1015.690787,887.3017663,128.3890206,120.9801439,7.408876649,242.0563592,0,242.0563592,3.761418349,238.2949409,0.310576716,3.827126358,0.275918805,-0.275918805,0.482968795,0.126922694,4.064448893,130.7266478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.290716,2.72513479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944679387,125.6594263,119.2353954,128.3845611,887.3017663,0,0.984590258,10.07151013,-0.984590258,169.9284899,0.999217454,0,1005.842807,128.3845611,1089.867935,6,13,8% -6/23/2018 22:00,27.31245259,245.9340503,908.1782919,886.8423967,120.2032767,1002.704178,879.2792423,123.424936,116.5787044,6.846231581,223.8229137,0,223.8229137,3.624572295,220.1983414,0.476692225,4.29235892,0.515113993,-0.515113993,0.442064009,0.132356474,3.532042412,113.6026253,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.059885,2.625990289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558952704,109.1991645,114.6188377,111.8251548,879.2792423,0,0.991471817,7.488158328,-0.991471817,172.5118417,0.999569923,0,993.5199223,111.8251548,1066.70725,6,14,7% -6/23/2018 23:00,38.64845058,260.4574064,782.3223037,858.0210789,112.2141675,924.6573051,809.9293327,114.7279723,108.8304964,5.89747598,193.0667711,0,193.0667711,3.383671178,189.6831,0.674542713,4.545839304,0.786392443,-0.786392443,0.395672662,0.14343726,2.844681267,91.49472808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6120127,2.45145825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060961894,87.9482128,106.6729746,90.39967105,809.9293327,0,0.943950391,19.27407747,-0.943950391,160.7259225,0.997031115,0,914.19772,90.39967105,973.3624967,6,15,6% -6/23/2018 0:00,50.4369287,270.6288574,614.4240429,806.7142455,100.6057647,784.1043861,681.9004684,102.2039176,97.57212967,4.631787969,152.0078578,0,152.0078578,3.033635,148.9742228,0.88029047,4.723364613,1.132773001,-1.132773001,0.336438098,0.163739954,2.061561086,66.30689109,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.79004237,2.197858231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493593989,63.73670582,95.28363636,65.93456405,681.9004684,0,0.845281303,32.29791232,-0.845281303,147.7020877,0.990848094,0,770.9434159,65.93456405,814.0962694,6,16,6% -6/23/2018 1:00,62.21306722,279.1873627,417.4296224,714.10944,84.522595,586.5916039,501.4709162,85.12068772,81.9739269,3.146760816,103.7593129,0,103.7593129,2.548668094,101.2106448,1.085822861,4.87273871,1.656763858,-1.656763858,0.246830384,0.202483462,1.256611022,40.41693004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.79645657,1.846501358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.910410408,38.85029049,79.70686698,40.69679185,501.4709162,0,0.702232582,45.39360002,-0.702232582,134.6064,0.978798519,0,570.545857,40.69679185,597.1810933,6,17,5% -6/23/2018 2:00,73.70633103,287.3224066,209.5728734,530.7908588,60.65384432,338.9126592,278.5079032,60.40475597,58.82490712,1.579848843,52.64230669,0,52.64230669,1.828937195,50.8133695,1.286418156,5.014722009,2.720612442,-2.720612442,0.064901561,0.289416485,0.530093735,17.0496367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.54473824,1.325058772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.384051107,16.38875931,56.92878935,17.71381809,278.5079032,0,0.524703654,58.35170445,-0.524703654,121.6482955,0.954708116,0,322.8225448,17.71381809,334.4158845,6,18,4% -6/23/2018 3:00,84.61807138,295.731381,31.28446416,141.8397995,17.98069897,63.88906936,46.2147193,17.67435006,17.43851455,0.235835505,8.12746495,0,8.12746495,0.542184416,7.585280534,1.476863952,5.1614863,7.409256236,-7.409256236,0,0.574748504,0.135546104,4.359628638,0.424262859,1,0.134155644,0,0.94726935,0.986031313,0.724496596,1,16.90814048,0.392810763,0.060420741,0.312029739,0.842989288,0.567485884,0.961238037,0.922476074,0.092763924,4.190640874,17.0009044,4.583451637,26.60753038,0,0.325823355,70.98453487,-0.325823355,109.0154651,0.896542615,0,40.85568926,4.583451637,43.85546669,6,19,7% -6/23/2018 4:00,94.99248159,304.9537334,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657931568,5.322446713,-6.573501865,6.573501865,0.345711285,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113878977,83.46102959,-0.113878977,96.53897041,0.610937399,0,0,0,0,6,20,0% -6/23/2018 5:00,104.0406918,315.4733055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815852628,5.506047883,-1.659920896,1.659920896,0.814016881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09024308,95.17759148,0.09024308,84.82240852,0,0.495940899,0,0,0,6,21,0% -6/23/2018 6:00,111.4115201,327.6812324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94449785,5.719116402,-0.544084046,0.544084046,0.623197541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275114009,105.9688085,0.275114009,74.03119153,0,0.868257165,0,0,0,6,22,0% -6/23/2018 7:00,116.4900792,341.6842529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033135428,5.963515216,0.058975851,-0.058975851,0.520068225,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428140271,115.3495948,0.428140271,64.65040515,0,0.933215844,0,0,0,6,23,0% -6/24/2018 8:00,118.6874594,357.0185923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071486948,6.231149926,0.534872516,-0.534872516,0.438685102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538897666,122.6086297,0.538897666,57.39137033,0,0.957218006,0,0,0,6,0,0% -6/24/2018 9:00,117.6917598,12.59731082,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054108712,0.219864551,1.026490477,-1.026490477,0.35461348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599841214,126.8585263,0.599841214,53.14147374,0,0.966644607,0,0,0,6,1,0% -6/24/2018 10:00,113.6491968,27.19986259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983552676,0.474727158,1.675514568,-1.675514568,0.243623823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606818998,127.3598495,0.606818998,52.64015049,0,0.967603107,0,0,0,6,2,0% -6/24/2018 11:00,107.0751219,40.10376172,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868813425,0.699942684,2.822358206,-2.822358206,0.04750201,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559354994,124.011203,0.559354994,55.98879701,0,0.960611328,0,0,0,6,3,0% -6/24/2018 12:00,98.59835058,51.22999787,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720865855,0.894132139,6.261760512,-6.261760512,0,#DIV/0!,0,0,0.350931916,1,0.158362246,0,0.944303535,0.983065498,0.724496596,1,0,0,0.051472832,0.312029739,0.864424451,0.588921047,0.961238037,0.922476074,0,0,0,0,0,0,-0.460681654,117.4311021,0.460681654,62.56889785,0,0.941465181,0,0,0,6,4,0% -6/24/2018 13:00,88.43371135,60.89280208,1.821747514,10.14547055,1.544436403,1.511599049,0,1.511599049,1.497865947,0.013733102,3.652619686,3.164345454,0.488274232,0.046570456,0.441703776,1.543459433,1.062779887,-36.11046509,36.11046509,0,0.847777418,0.011642614,0.374466487,1,0.824727664,0,0.027685727,0.961238037,1,0.648985498,0.924488902,1.439805723,0.032472351,0.115824807,0.226317471,0.724496596,0.448993192,0.974039999,0.935278036,0.008435034,0.362201249,1.448240757,0.394673599,0,0.554622221,-0.311897357,108.1736113,0.311897357,71.82638868,0,0.889690851,1.448240757,0.888115915,2.029494861,6,5,40% -6/24/2018 14:00,77.95065492,69.55308152,133.8167507,413.057259,47.58938418,47.16315585,0,47.16315585,46.15438866,1.008767191,91.01037428,57.12995829,33.880416,1.434995519,32.44542048,1.360495582,1.213930278,-4.684644588,4.684644588,0.668724904,0.355630995,0.793432312,25.51951057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.36535395,1.039649369,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.574839009,24.53032424,44.94019296,25.56997361,0,57.12995829,-0.138310021,97.95006625,0.138310021,82.04993375,0,0.688493295,44.94019296,64.90356686,87.4182794,6,6,95% -6/24/2018 15:00,66.63392323,77.72507907,338.214846,659.1532379,76.79174238,117.606425,40.58063066,77.02579438,74.47618801,2.549606371,84.31965948,0,84.31965948,2.315554364,82.00410512,1.162981354,1.356558541,-2.293616132,2.293616132,0.922385149,0.227050182,2.396649404,77.08448325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58934476,1.677611254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.736364335,74.09653736,73.32570909,75.77414861,40.58063066,0,0.06156479,86.47036528,-0.06156479,93.52963472,0,0,73.32570909,75.77414861,122.9183739,6,7,68% -6/24/2018 16:00,54.93661866,86.02418282,541.9225298,777.5852325,95.21362217,306.9705006,210.5426795,96.4278211,92.34258016,4.085240938,134.2664335,0,134.2664335,2.871042009,131.3953915,0.958824876,1.501405226,-1.369430996,1.369430996,0.764340182,0.175696003,3.291661113,105.8711364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.76320047,2.080060162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.384797271,101.7673633,91.14799774,103.8474235,210.5426795,0,0.270764761,74.29022037,-0.270764761,105.7097796,0.865337861,0,273.3385496,103.8474235,341.3046113,6,8,25% -6/24/2018 17:00,43.11605673,95.38764591,722.6191136,841.4755837,108.3665377,510.0450951,399.4988003,110.5462949,105.0988868,5.447408114,178.4750212,0,178.4750212,3.267650942,175.2073703,0.75251715,1.664828487,-0.845887754,0.845887754,0.674809015,0.149963564,3.941612761,126.7758156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0250476,2.367401984,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.855685028,121.8617361,103.8807326,124.2291381,399.4988003,0,0.474759824,61.65628664,-0.474759824,118.3437134,0.944683591,0,481.2806937,124.2291381,562.58618,6,9,17% -6/24/2018 18:00,31.52616031,107.7458823,865.7372798,877.5648231,117.6996984,699.502934,578.8260224,120.6769115,114.1506182,6.526293304,213.4571068,0,213.4571068,3.549080173,209.9080266,0.550235298,1.880520401,-0.485058908,0.485058908,0.613103648,0.135953136,4.344575777,139.7364914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7259162,2.571296503,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.147630361,134.3200306,112.8735465,136.8913271,578.8260224,0,0.65958207,48.73199315,-0.65958207,131.2680068,0.974194422,0,676.7626289,136.8913271,766.3552647,6,10,13% -6/24/2018 19:00,21.02808053,128.2935789,960.6819692,896.8577397,123.5507585,855.8655317,728.798258,127.0672738,119.8252473,7.242026477,236.653977,0,236.653977,3.725511223,232.9284658,0.367009241,2.239145362,-0.202041858,0.202041858,0.564704882,0.128607346,4.49503192,144.5756781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1805855,2.699120199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.256635325,138.971641,118.4372208,141.6707612,728.798258,0,0.812613,35.64798015,-0.812613,144.3520199,0.988470096,0,838.8325047,141.6707612,931.5531845,6,11,11% -6/24/2018 20:00,14.65912321,169.5165229,1000.630401,904.1102193,125.9502834,964.5640376,834.8684453,129.6955923,122.1524176,7.543174629,246.4122913,0,246.4122913,3.797865751,242.6144256,0.255849965,2.958621461,0.043247996,-0.043247996,0.522757847,0.125870934,4.396379133,141.4026654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4175501,2.751540808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185161716,135.9216205,120.6027118,138.6731613,834.8684453,0,0.923414455,22.56953009,-0.923414455,157.4304699,0.995853133,0,952.0090684,138.6731613,1042.767879,6,12,10% -6/24/2018 21:00,17.78519639,219.1076736,982.744052,900.9205269,124.880009,1015.417947,886.8951914,128.5227558,121.114416,7.408339776,242.0432662,0,242.0432662,3.76559303,238.2776732,0.310410235,3.82415032,0.27527203,-0.27527203,0.4830794,0.12707277,4.065444487,130.7586696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4197835,2.728159332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945400692,125.6902068,119.3651842,128.4183662,886.8951914,0,0.984432217,10.12315881,-0.984432217,169.8768412,0.999209301,0,1005.559109,128.4183662,1089.606361,6,13,8% -6/24/2018 22:00,27.28681776,245.8327695,908.2891841,886.5972963,120.3500125,1002.637379,879.0692959,123.5680831,116.7210156,6.847067532,223.8542254,0,223.8542254,3.628996921,220.2252285,0.476244812,4.290591237,0.514483361,-0.514483361,0.442171853,0.132501867,3.533669696,113.6549643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.1966799,2.629195916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560131666,109.2494748,114.7568115,111.8786707,879.0692959,0,0.99150911,7.471744639,-0.99150911,172.5282554,0.99957182,0,993.4497074,111.8786707,1066.67206,6,14,7% -6/24/2018 23:00,38.61805168,260.3875776,782.5824451,857.7966029,112.3654809,924.7819262,809.9052422,114.8766841,108.977247,5.899437035,193.1344081,0,193.1344081,3.388233832,189.7461742,0.674012153,4.544620561,0.785713528,-0.785713528,0.395788763,0.143582931,2.846733125,91.56072288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.753075,2.454763877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.062448458,88.01164951,106.8155234,90.46641339,809.9052422,0,0.944169328,19.23603874,-0.944169328,160.7639613,0.997043397,0,914.3261976,90.46641339,973.5346558,6,15,6% -6/24/2018 0:00,50.40570551,270.5729082,614.7896579,806.5188426,100.7570843,784.3904506,682.0370199,102.3534306,97.7188865,4.634544129,152.1010682,0,152.1010682,3.038197847,149.0628703,0.879745523,4.722388114,1.131932063,-1.131932063,0.336581906,0.163888711,2.063802554,66.37898442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.93111062,2.201163998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495217925,63.80600468,95.42632855,66.00716867,682.0370199,0,0.845655407,32.25777456,-0.845655407,147.7422254,0.990874262,0,771.2392574,66.00716867,814.4396291,6,16,6% -6/24/2018 1:00,62.18294476,279.1376152,417.8481481,713.9820716,84.66846228,586.9978984,501.7325868,85.26531159,82.11539575,3.14991584,103.8651877,0,103.8651877,2.553066531,101.3121212,1.085297125,4.871870451,1.655455914,-1.655455914,0.247054055,0.202629742,1.258779754,40.48668393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.93244181,1.849688011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911981647,38.91734058,79.84442345,40.76702859,501.7325868,0,0.702724349,45.35401034,-0.702724349,134.6459897,0.978848346,0,570.964536,40.76702859,597.6457408,6,17,5% -6/24/2018 2:00,73.67872223,287.2747845,209.9798228,530.8820414,60.78968996,339.3942631,278.8546899,60.53957312,58.95665652,1.5829166,52.74507254,0,52.74507254,1.833033442,50.91203909,1.285936292,5.013890848,2.717472266,-2.717472266,0.065438563,0.28950253,0.531854379,17.10626507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.67138077,1.328026489,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385326687,16.44319266,57.05670746,17.77121915,278.8546899,0,0.52526676,58.31379685,-0.52526676,121.6862032,0.954810272,0,323.3100298,17.77121915,334.9409373,6,18,4% -6/24/2018 3:00,84.59469843,295.6832574,31.52580028,142.5025669,18.1019969,64.30672499,46.51291529,17.7938097,17.5561549,0.237654799,8.189637267,0,8.189637267,0.545841996,7.643795271,1.476456017,5.160646384,7.383382105,-7.383382105,0,0.574196269,0.136460499,4.389038725,0.422792431,1,0.134620126,0,0.947213694,0.985975658,0.724496596,1,17.02222646,0.395460668,0.06024646,0.312029739,0.843400717,0.567897312,0.961238037,0.922476074,0.093390572,4.218910968,17.11561703,4.614371636,26.84760677,0,0.326400543,70.9495519,-0.326400543,109.0504481,0.896813981,0,41.19292613,4.614371636,44.21294008,6,19,7% -6/24/2018 4:00,94.97389173,304.9032063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657607114,5.32156485,-6.606487967,6.606487967,0.34007033,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11443417,83.42901005,-0.11443417,96.57098995,0.613067572,0,0,0,0,6,20,0% -6/24/2018 5:00,104.0292829,315.4191522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815653504,5.505102729,-1.664766875,1.664766875,0.814845592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089769435,95.15034303,0.089769435,84.84965697,0,0.493017551,0,0,0,6,21,0% -6/24/2018 6:00,111.4094078,327.6234195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944460984,5.718107377,-0.546657024,0.546657024,0.623637547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274766914,105.9481243,0.274766914,74.05187575,0,0.868027581,0,0,0,6,22,0% -6/24/2018 7:00,116.4992039,341.6248186,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033294684,5.962477891,0.056872575,-0.056872575,0.520427907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427956112,115.3379196,0.427956112,64.66208037,0,0.93316559,0,0,0,6,23,0% -6/25/2018 8:00,118.7087088,356.9619036,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071857819,6.230160522,0.532674086,-0.532674086,0.439061056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.53890169,122.6089034,0.53890169,57.39109663,0,0.957218699,0,0,0,6,0,0% -6/25/2018 9:00,117.724219,12.54830795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054675231,0.219009289,1.023707376,-1.023707376,0.355089418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60004578,126.8731765,0.60004578,53.12682351,0,0.966673025,0,0,0,6,1,0% -6/25/2018 10:00,113.6904375,27.16131046,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984272462,0.474054297,1.671195506,-1.671195506,0.244362426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607222721,127.3889574,0.607222721,52.61104261,0,0.96765789,0,0,0,6,2,0% -6/25/2018 11:00,107.1223355,40.07548744,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869637458,0.699449205,2.813295685,-2.813295685,0.049051793,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.559942836,124.0518446,0.559942836,55.94815545,0,0.960705171,0,0,0,6,3,0% -6/25/2018 12:00,98.64923027,51.21020879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721753873,0.893786754,6.223633733,-6.223633733,0,#DIV/0!,0,0,0.348173409,1,0.159316109,0,0.944183952,0.982945915,0.724496596,1,0,0,0.05112572,0.312029739,0.865268775,0.589765371,0.961238037,0.922476074,0,0,0,0,0,0,-0.461425967,117.4791609,0.461425967,62.52083909,0,0.941640255,0,0,0,6,4,0% -6/25/2018 13:00,88.48192577,60.87945047,1.688424884,9.410416984,1.439121353,1.408454595,0,1.408454595,1.395726535,0.01272806,3.39524899,2.94247601,0.45277298,0.043394819,0.409378161,1.544300933,1.062546858,-37.25651261,37.25651261,0,0.852345501,0.010848705,0.348931634,1,0.83054847,0,0.026834502,0.961238037,1,0.65121761,0.926721014,1.341625434,0.030285334,0.115824807,0.228846994,0.724496596,0.448993192,0.973684495,0.934922532,0.00785985,0.337457443,1.349485284,0.367742777,0,0.498607061,-0.312682851,108.2209861,0.312682851,71.77901385,0,0.890093565,1.349485284,0.811549714,1.88062834,6,5,39% -6/25/2018 14:00,78.00440926,69.5444405,132.8044976,410.7377488,47.43823606,47.00893461,0,47.00893461,46.00779821,1.0011364,90.82102952,57.19060368,33.63042584,1.430437846,32.19998799,1.361433773,1.213779463,-4.706262257,4.706262257,0.665028065,0.357203535,0.785572936,25.266726,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.22444563,1.03634735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.569144918,24.2873381,44.79359055,25.32368545,0,57.19060368,-0.139238733,98.0037974,0.139238733,81.9962026,0,0.690904517,44.79359055,64.83693187,87.22806572,6,6,95% -6/25/2018 15:00,66.68845782,77.71975098,337.1204841,657.892655,76.77228516,116.8747603,39.87608623,76.99867411,74.4573175,2.541356609,84.05373207,0,84.05373207,2.314967657,81.73876441,1.163933162,1.356465548,-2.299654554,2.299654554,0.92341778,0.227729517,2.391055218,76.90455502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.5712057,1.677186187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732311366,73.9235835,73.30351707,75.60076968,39.87608623,0,0.060611843,86.5250673,-0.060611843,93.4749327,0,0,73.30351707,75.60076968,122.7827088,6,7,67% -6/25/2018 16:00,54.99146633,86.02074852,540.8966559,776.7933196,95.25154411,306.0690522,209.6121861,96.45686608,92.37935861,4.077507468,134.018842,0,134.018842,2.872185496,131.1466565,0.959782148,1.501345287,-1.372246286,1.372246286,0.764821625,0.17609934,3.287434868,105.7352059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.79855332,2.080888614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.381735371,101.6367017,91.18028869,103.7175903,209.6121861,0,0.269842931,74.34507946,-0.269842931,105.6549205,0.864707023,0,272.4334181,103.7175903,340.3145066,6,8,25% -6/25/2018 17:00,43.17104305,95.38363717,721.7280987,840.9144265,108.4370138,509.1338862,398.5259572,110.607929,105.1672378,5.440691267,178.2611095,0,178.2611095,3.269776057,174.9913334,0.753476843,1.664758521,-0.847544458,0.847544458,0.675092328,0.150246352,3.938562765,126.6777173,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0907492,2.368941623,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.853475316,121.7674403,103.9442245,124.1363819,398.5259572,0,0.473919753,61.71096148,-0.473919753,118.2890385,0.944496906,0,480.3507582,124.1363819,561.5955374,6,9,17% -6/25/2018 18:00,31.58098771,107.7339726,865.0221189,877.1319243,117.792766,698.6761101,577.9143285,120.7617816,114.2408795,6.520902119,213.2865141,0,213.2865141,3.551886503,209.7346276,0.551192217,1.880312539,-0.486179131,0.486179131,0.613295218,0.136173126,4.342620959,139.6736177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8126787,2.57332968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146214102,134.2595941,112.9588928,136.8329238,577.9143285,0,0.658868196,48.786388,-0.658868196,131.213612,0.974112288,0,675.9123415,136.8329238,765.4667535,6,10,13% -6/25/2018 19:00,21.08044862,128.2440953,960.1662643,896.5020774,123.6614012,855.1848483,728.0141557,127.1706926,119.9325537,7.238138876,236.5322747,0,236.5322747,3.728847508,232.8034272,0.367923236,2.23828171,-0.202876562,0.202876562,0.564847625,0.128791654,4.494099766,144.5456968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2837325,2.701537326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255959982,138.9428219,118.5396924,141.6443592,728.0141557,0,0.812060757,35.70223562,-0.812060757,144.2977644,0.988428252,0,838.1294521,141.6443592,930.8328523,6,11,11% -6/25/2018 20:00,14.69333149,169.3443996,1000.321675,903.8033539,126.0751483,964.0681351,834.2537704,129.8143647,122.2735174,7.540847321,246.3412022,0,246.3412022,3.801630887,242.5395713,0.256447013,2.955617343,0.042576383,-0.042576383,0.522872699,0.126034606,4.396368665,141.4023287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5339558,2.754268637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.185154132,135.9212968,120.7191099,138.6755655,834.2537704,0,0.923047881,22.62419097,-0.923047881,157.375809,0.995831629,0,951.4954012,138.6755655,1042.255785,6,12,10% -6/25/2018 21:00,17.78181606,218.9261435,982.6343067,900.6453289,125.0160806,1015.125142,886.4712454,128.653897,121.2463845,7.40751247,242.0207603,0,242.0207603,3.769696091,238.2510642,0.310351237,3.820982022,0.27469311,-0.27469311,0.483178401,0.127225439,4.066215123,130.7834559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5466366,2.731131985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945959014,125.7140324,119.4925957,128.4451644,886.4712454,0,0.984262303,10.17839826,-0.984262303,169.8216017,0.999200533,0,1005.255137,128.4451644,1089.319928,6,13,8% -6/25/2018 22:00,27.26587029,245.7202284,908.3559563,886.3433422,120.4939734,1002.546917,878.838711,123.7082064,116.8606355,6.847570889,223.874756,0,223.874756,3.633337873,220.2414182,0.47587921,4.288627025,0.513947229,-0.513947229,0.442263537,0.132650612,3.535042176,113.699108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3308879,2.632340921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561126023,109.2919074,114.8920139,111.9242483,878.838711,0,0.991533043,7.46119203,-0.991533043,172.538808,0.999573037,0,993.3554934,111.9242483,1066.607675,6,14,7% -6/25/2018 23:00,38.59172102,260.3087508,782.7905775,857.5590239,112.513344,924.8752574,809.8535998,115.0216576,109.1206516,5.901006026,193.1893308,0,193.1893308,3.392692453,189.7966384,0.673552596,4.543244774,0.785170566,-0.785170566,0.395881615,0.143733646,2.848496766,91.61744764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8909209,2.457994133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06372621,88.06617551,106.9546471,90.52416965,809.8535998,0,0.944370681,19.20099109,-0.944370681,160.7990089,0.997054688,0,914.4229757,90.52416965,973.6692343,6,15,6% -6/25/2018 0:00,50.37840553,270.509579,615.0938007,806.3013668,100.9038514,784.6332634,682.1351985,102.4980648,97.86122796,4.636836887,152.1792367,0,152.1792367,3.042623414,149.1366133,0.879269048,4.721282812,1.131302976,-1.131302976,0.336689487,0.164046282,2.065725256,66.44082512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.06793464,2.204370306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496610916,63.8654483,95.56454556,66.06981861,682.1351985,0,0.846005261,32.2201982,-0.846005261,147.7798018,0.990898713,0,771.4914357,66.06981861,814.7328105,6,16,6% -6/25/2018 1:00,62.15685237,279.0815504,418.1954123,713.8117602,84.80773247,587.3434643,501.9404642,85.40300009,82.25046643,3.152533664,103.9535854,0,103.9535854,2.557266041,101.3963194,1.084841727,4.870891937,1.654532094,-1.654532094,0.247212038,0.202794507,1.260614044,40.54568099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.06227688,1.852730542,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913310584,38.9740508,79.97558746,40.82678134,501.9404642,0,0.703183237,45.31704322,-0.703183237,134.6829568,0.978894778,0,571.3224869,40.82678134,598.0427987,6,17,5% -6/25/2018 2:00,73.65540485,287.2215749,210.3089069,530.873202,60.91393019,339.7888198,279.126272,60.66254782,59.07715044,1.585397375,52.8286091,0,52.8286091,1.836779744,50.99182935,1.285529326,5.012962165,2.715294089,-2.715294089,0.065811053,0.289640278,0.533311504,17.15313122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.78720411,1.330740672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386382369,16.48824218,57.17358648,17.81898285,279.126272,0,0.525787082,58.27875562,-0.525787082,121.7212444,0.954904472,0,323.712512,17.81898285,335.3746799,6,18,4% -6/25/2018 3:00,84.57591528,295.6301056,31.71253298,142.954434,18.1995082,64.62527075,46.7354824,17.88978835,17.65072588,0.239062469,8.237853097,0,8.237853097,0.548782321,7.689070776,1.47612819,5.159718711,7.364648571,-7.364648571,0,0.573890084,0.13719558,4.41268147,0.421723107,1,0.134958423,0,0.947173128,0.985935091,0.724496596,1,17.11393686,0.397590924,0.060119591,0.312029739,0.84370037,0.568196966,0.961238037,0.922476074,0.093894339,4.241637273,17.2078312,4.639228197,27.02604956,0,0.326925728,70.91771447,-0.326925728,109.0822855,0.897060064,0,41.45182094,4.639228197,44.48810301,6,19,7% -6/25/2018 4:00,94.96048805,304.8481783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657373176,5.320604429,-6.633479732,6.633479732,0.335454466,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11492482,83.40071119,-0.11492482,96.59928881,0.614932971,0,0,0,0,6,20,0% -6/25/2018 5:00,104.0236088,315.3611427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815554473,5.504090273,-1.669153559,1.669153559,0.815595759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089370293,95.12738155,0.089370293,84.87261845,0,0.490529975,0,0,0,6,21,0% -6/25/2018 6:00,111.4135729,327.5626858,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944533678,5.717047373,-0.549179916,0.549179916,0.624068986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274502821,105.9323877,0.274502821,74.06761227,0,0.867852509,0,0,0,6,22,0% -6/25/2018 7:00,116.5150219,341.5638265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033570761,5.961413378,0.05470042,-0.05470042,0.520799367,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.42786141,115.3319162,0.42786141,64.66808381,0,0.93313973,0,0,0,6,23,0% -6/26/2018 8:00,118.7367911,356.9053957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072347948,6.229174273,0.530334262,-0.530334262,0.43946119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.538999139,122.6155319,0.538999139,57.38446814,0,0.957235473,0,0,0,6,0,0% -6/26/2018 9:00,117.7632886,12.50126987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.055357123,0.21818832,1.020699537,-1.020699537,0.355603789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60034498,126.894609,0.60034498,53.10539098,0,0.966714553,0,0,0,6,1,0% -6/26/2018 10:00,113.7377633,27.12616905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985098453,0.473440963,1.666502198,-1.666502198,0.245165029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607719442,127.4247858,0.607719442,52.57521419,0,0.967725193,0,0,0,6,2,0% -6/26/2018 11:00,107.1749616,40.05160102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870555956,0.699032308,2.803465992,-2.803465992,0.050732769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56061931,124.0986379,0.56061931,55.90136205,0,0.960812919,0,0,0,6,3,0% -6/26/2018 12:00,98.7048433,51.1954328,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722724503,0.893528864,6.182717273,-6.182717273,0,#DIV/0!,0,0,0.345186863,1,0.16035252,0,0.944053788,0.982815751,0.724496596,1,0,0,0.050749025,0.312029739,0.866186135,0.59068273,0.961238037,0.922476074,0,0,0,0,0,0,-0.462252114,117.5325281,0.462252114,62.46747193,0,0.941833918,0,0,0,6,4,0% -6/26/2018 13:00,88.5337806,60.87157501,1.552561769,8.665409857,1.330835048,1.302409327,0,1.302409327,1.290705461,0.011703866,3.133462664,2.716896501,0.416566163,0.040129587,0.376436576,1.545205971,1.062409405,-38.57389426,38.57389426,0,0.857186538,0.010032397,0.322676365,1,0.836779413,0,0.025918463,0.961238037,1,0.653626043,0.929129447,1.240675184,0.028034283,0.115824807,0.231576666,0.724496596,0.448993192,0.973299311,0.934537348,0.007268437,0.312019191,1.247943621,0.340053475,0,0.443453443,-0.313533525,108.2723067,0.313533525,71.72769326,0,0.890527421,1.247943621,0.734960925,1.728960847,6,5,39% -6/26/2018 14:00,78.06177352,69.54174376,131.7311265,408.2935847,47.27274896,46.84034603,0,46.84034603,45.84730116,0.993044875,90.62018408,57.25499953,33.36518454,1.425447799,31.93973675,1.362434968,1.213732396,-4.729547458,4.729547458,0.661046061,0.358857851,0.777238689,24.99866799,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.07016976,1.032732078,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.563106785,24.02967054,44.63327654,25.06240262,0,57.25499953,-0.140229976,98.06115417,0.140229976,81.93884583,0,0.693442854,44.63327654,64.76547289,87.02098324,6,6,95% -6/26/2018 15:00,66.74625712,77.72098373,335.9670225,656.5821454,76.74584649,116.1011337,39.13679634,76.96433739,74.43167606,2.532661329,83.77326473,0,83.77326473,2.314170434,81.4590943,1.16494195,1.356487064,-2.306046132,2.306046132,0.924510804,0.228432677,2.385146477,76.7145096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54655817,1.676608602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.728030504,73.74090461,73.27458868,75.41751321,39.13679634,0,0.059606854,86.58275321,-0.059606854,93.41724679,0,0,73.27458868,75.41751321,122.6338427,6,7,67% -6/26/2018 16:00,55.04937663,86.02479832,539.8196726,775.9777164,95.28509267,305.1259539,208.6446696,96.48128427,92.41189556,4.069388713,133.7587265,0,133.7587265,2.873197109,130.8855294,0.960792873,1.501415969,-1.375174272,1.375174272,0.76532234,0.17651282,3.282962887,105.5913716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.82982907,2.081621524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378495436,101.4984427,91.20832451,103.5800642,208.6446696,0,0.268879718,74.40238557,-0.268879718,105.5976144,0.864043244,0,271.4863418,103.5800642,339.2774222,6,8,25% -6/26/2018 17:00,43.22911089,95.38857381,720.793416,840.3399407,108.5043166,508.1874411,397.5212848,110.6661563,105.2325111,5.433645234,178.0365142,0,178.0365142,3.271805484,174.7647088,0.754490318,1.664844682,-0.849232811,0.849232811,0.675381053,0.150534556,3.935303555,126.5728898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1534924,2.370411935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.851114029,121.6666761,104.0046064,124.0370881,397.5212848,0,0.473048186,61.76765647,-0.473048186,118.2323435,0.944302523,0,479.3849584,124.0370881,560.5647518,6,9,17% -6/26/2018 18:00,31.63930374,107.7333456,864.2686957,876.6902576,117.8832869,697.8211361,576.9772427,120.8438933,114.3286708,6.515222497,213.1065675,0,213.1065675,3.554616042,209.5519514,0.552210023,1.880301596,-0.487293095,0.487293095,0.613485717,0.136396571,4.340473411,139.6045452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8970671,2.575307222,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.144658211,134.1931989,113.0417253,136.7685062,576.9772427,0,0.658131236,48.84249452,-0.658131236,131.1575055,0.974027311,0,675.0333173,136.7685062,764.5455692,6,10,13% -6/26/2018 19:00,21.13750887,128.2087325,959.6150405,896.1396184,123.769791,854.4815873,727.2099287,127.2716586,120.0376751,7.233983519,236.4018925,0,236.4018925,3.73211586,232.6697766,0.368919125,2.237664512,-0.203681674,0.203681674,0.564985307,0.128978586,4.49297571,144.5095433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3847792,2.703905236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.255145607,138.9080697,118.6399248,141.611975,727.2099287,0,0.811491774,35.75806113,-0.811491774,144.2419389,0.988385081,0,837.403369,141.611975,930.0855744,6,11,11% -6/26/2018 20:00,14.73432161,169.1794632,999.9772401,903.4901978,126.1978007,963.5525857,833.6218635,129.9307222,122.3924714,7.538250828,246.2613885,0,246.2613885,3.805329312,242.4560592,0.257162425,2.952738659,0.041953372,-0.041953372,0.522979241,0.126200673,4.396153963,141.3954231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.648299,2.756948133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184998581,135.9146589,120.8332975,138.6716071,833.6218635,0,0.922668409,22.68064352,-0.922668409,157.3193565,0.995809351,0,950.9617443,138.6716071,1041.719538,6,12,10% -6/26/2018 21:00,17.7846479,218.7339879,982.4857203,900.3631813,125.1497538,1014.812331,886.0299115,128.7824193,121.3760269,7.406392363,241.9887645,0,241.9887645,3.77372683,238.2150377,0.310400662,3.817628275,0.274182997,-0.274182997,0.483265636,0.127380736,4.066758496,130.8009326,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6712539,2.734052242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946352687,125.7308317,119.6176065,128.4648839,886.0299115,0,0.984080569,10.23715399,-0.984080569,169.762846,0.999191152,0,1004.930855,128.4648839,1089.008552,6,13,8% -6/26/2018 22:00,27.24968075,245.5965752,908.378043,886.0803985,120.6351194,1002.432429,878.5871659,123.8452628,116.9975254,6.847737389,223.8843673,0,223.8843673,3.637593945,220.2467734,0.475596649,4.286468869,0.513506519,-0.513506519,0.442338903,0.132802769,3.536156802,113.7349582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.4624716,2.63542443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561933565,109.3263679,115.0244052,111.9617924,878.5871659,0,0.991543394,7.456623296,-0.991543394,172.5433767,0.999573564,0,993.2369095,111.9617924,1066.513663,6,14,7% -6/26/2018 23:00,38.56952608,260.2210106,782.9459345,857.3081296,112.6577003,924.9366341,809.773802,115.1628321,109.2606549,5.902177172,193.2313518,0,193.2313518,3.397045325,189.8343064,0.673165221,4.541713418,0.78476451,-0.78476451,0.395951055,0.143889502,2.849968687,91.66478968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.0254974,2.461147774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064792612,88.11168248,107.0902901,90.57283026,809.773802,0,0.944553975,19.16903324,-0.944553975,160.8309668,0.997064963,0,914.4873757,90.57283026,973.7654816,6,15,6% -6/26/2018 0:00,50.35509129,270.4389344,615.3355702,806.061491,101.0459902,784.8319045,682.1941643,102.6377402,97.99908077,4.638659447,152.2421425,0,152.2421425,3.046909424,149.1952331,0.878862138,4.720049831,1.130886788,-1.130886788,0.336760659,0.164212822,2.067325562,66.49229646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20044401,2.207475506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497770332,63.91492451,95.69821435,66.12240002,682.1941643,0,0.846330177,32.18526536,-0.846330177,147.8147346,0.990921402,0,771.6990123,66.12240002,814.9748006,6,16,6% -6/26/2018 1:00,62.13484716,279.0192258,418.4704592,713.597998,84.94030418,587.6271906,502.0935429,85.53364769,82.37904061,3.154607084,104.0242713,0,104.0242713,2.561263567,101.4630077,1.084457663,4.869804167,1.653993596,-1.653993596,0.247304126,0.202978017,1.262110478,40.59381145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.18586727,1.855626736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914394745,39.02031563,80.10026202,40.87594237,502.0935429,0,0.703608396,45.28277215,-0.703608396,134.7172279,0.978937744,0,571.6185822,40.87594237,598.3710689,6,17,5% -6/26/2018 2:00,73.63642992,287.1628331,210.5592095,530.7635849,61.02641679,340.0951252,279.3215957,60.77352942,59.18624516,1.587284262,52.89268974,0,52.89268974,1.84017163,51.05251811,1.285198152,5.011936928,2.714078511,-2.714078511,0.066018929,0.289830195,0.534462174,17.19014073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.89207011,1.333198082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387216026,16.52381713,57.27928613,17.85701521,279.3215957,0,0.526263677,58.24664762,-0.526263677,121.7533524,0.954990593,0,324.0287824,17.85701521,335.7158417,6,18,4% -6/26/2018 3:00,84.56176661,295.5719819,31.84381164,143.1939601,18.27294354,64.84340483,46.88140586,17.96199898,17.72194687,0.240052103,8.271897475,0,8.271897475,0.550996668,7.720900807,1.475881249,5.158704261,7.35298629,-7.35298629,0,0.573830286,0.137749167,4.430486718,0.421055412,1,0.135169879,0,0.947147758,0.985909721,0.724496596,1,17.18300096,0.39919521,0.060040318,0.312029739,0.843887672,0.568384268,0.961238037,0.922476074,0.094273666,4.258752356,17.27727463,4.657947566,27.1417362,0,0.327397928,70.88908379,-0.327397928,109.1109162,0.897280646,0,41.63102923,4.657947566,44.67956275,6,19,7% -6/26/2018 4:00,94.95230614,304.7887079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657230375,5.319566475,-6.654284641,6.654284641,0.331896617,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115350007,83.37618667,-0.115350007,96.62381333,0.616536654,0,0,0,0,6,20,0% -6/26/2018 5:00,104.0236951,315.2993388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815555979,5.503011592,-1.673067432,1.673067432,0.816265071,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089046452,95.10875258,0.089046452,84.89124742,0,0.488495317,0,0,0,6,21,0% -6/26/2018 6:00,111.4240291,327.4990958,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944716173,5.715937519,-0.551646991,0.551646991,0.624490881,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274322347,105.9216346,0.274322347,74.07836542,0,0.867732677,0,0,0,6,22,0% -6/26/2018 7:00,116.5375342,341.5013432,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033963674,5.96032284,0.052463744,-0.052463744,0.521181861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427856552,115.3316083,0.427856552,64.66839173,0,0.933138403,0,0,0,6,23,0% -6/27/2018 8:00,118.7716935,356.8491358,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072957109,6.228192353,0.527857614,-0.527857614,0.439884721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539190137,122.628525,0.539190137,57.37147504,0,0.957268333,0,0,0,6,0,0% -6/27/2018 9:00,117.8089417,12.45626204,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056153921,0.217402785,1.017473053,-1.017473053,0.35615555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600738658,126.9228184,0.600738658,53.07718156,0,0.966769132,0,0,0,6,1,0% -6/27/2018 10:00,113.7911348,27.09449826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986029961,0.472888204,1.66144507,-1.66144507,0.246029849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608308731,127.4673134,0.608308731,52.53268662,0,0.967804895,0,0,0,6,2,0% -6/27/2018 11:00,107.2329503,40.03215362,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87156805,0.698692887,2.792895156,-2.792895156,0.052540489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561383733,124.1515462,0.561383733,55.84845381,0,0.960934363,0,0,0,6,3,0% -6/27/2018 12:00,98.76513239,51.18571117,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723776746,0.89335919,6.139172134,-6.139172134,0,#DIV/0!,0,0,0.341978238,1,0.161470301,0,0.943913133,0.982675096,0.724496596,1,0,0,0.050343289,0.312029739,0.867175478,0.591672074,0.961238037,0.922476074,0,0,0,0,0,0,-0.463159202,117.5911537,0.463159202,62.40884635,0,0.942045759,0,0,0,6,4,0% -6/27/2018 13:00,88.58918975,60.86920754,1.41569588,7.918585091,1.220734013,1.194596492,0,1.194596492,1.183924378,0.010672114,2.870044307,2.489982816,0.380061491,0.036809635,0.343251857,1.546173043,1.062368085,-40.0892551,40.0892551,0,0.862285488,0.009202409,0.295981095,1,0.843403042,0,0.024939168,0.961238037,1,0.656208085,0.931711489,1.138033145,0.025742858,0.115824807,0.234503489,0.724496596,0.448993192,0.972884524,0.934122561,0.006667114,0.286158819,1.144700259,0.311901677,0,0.389923735,-0.314447946,108.32749,0.314447946,71.67250998,0,0.89099117,1.144700259,0.659320282,1.576212197,6,5,38% -6/27/2018 14:00,78.1226827,69.54501477,130.5980241,405.725344,47.09293641,46.6574137,0,46.6574137,45.67291063,0.984503071,90.40696282,57.32193408,33.08502875,1.420025787,31.66500296,1.363498034,1.213789486,-4.75451828,4.75451828,0.656775799,0.360594555,0.768444595,24.71581967,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.90253895,1.028803849,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.556735493,23.75778598,44.45927444,24.78658983,0,57.32193408,-0.141282606,98.12207194,0.141282606,81.87792806,0,0.696099394,44.45927444,64.68835341,86.79650798,6,6,95% -6/27/2018 15:00,66.80725516,77.7287932,334.7556335,655.2220244,76.71247928,115.2867382,38.36389385,76.92284435,74.39931499,2.523529366,83.47854329,0,83.47854329,2.313164289,81.165379,1.166006567,1.356623365,-2.312788416,2.312788416,0.925663802,0.229159636,2.378927748,76.51449389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.51545148,1.675879653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.723525055,73.5486419,73.23897654,75.22452155,38.36389385,0,0.058550983,86.64335602,-0.058550983,93.35664398,0,0,73.23897654,75.22452155,122.4719214,6,7,67% -6/27/2018 16:00,55.11028347,86.03634053,538.6925846,775.1386378,95.31432011,304.1423472,207.6412133,96.50113393,92.44024168,4.060892247,133.4863323,0,133.4863323,2.874078424,130.6122539,0.961855898,1.501617419,-1.378212524,1.378212524,0.765841912,0.176936388,3.27824866,105.4397458,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.85707644,2.082260034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375079995,101.3526943,91.23215644,103.4349543,207.6412133,0,0.267876226,74.46207105,-0.267876226,105.537929,0.863346632,0,270.4984985,103.4349543,338.1946074,6,8,25% -6/27/2018 17:00,43.29019458,95.40245575,719.8158512,839.7522531,108.5684864,507.2067775,396.4857555,110.7210219,105.294746,5.426275938,177.8014273,0,177.8014273,3.273740441,174.5276869,0.755556429,1.665086967,-0.850950966,0.850950966,0.675674875,0.150828141,3.931837387,126.461406,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2133149,2.371813805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.848602803,121.5595136,104.0619177,123.9313274,396.4857555,0,0.472146105,61.82630473,-0.472146105,118.1736953,0.944100577,0,478.3843484,123.9313274,559.4949236,6,9,17% -6/27/2018 18:00,31.70104291,107.7439927,863.4775329,876.2398837,117.9712864,696.9388272,576.0155519,120.9232753,114.4140169,6.509258377,212.9173944,0,212.9173944,3.557269554,209.3601248,0.553287575,1.880487422,-0.488399359,0.488399359,0.613674899,0.136623458,4.338134107,139.5293051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.979105,2.577229682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.142963393,134.1208753,113.1220684,136.698105,576.0155519,0,0.657371985,48.90024791,-0.657371985,131.0997521,0.973939564,0,674.1264037,136.698105,763.5925795,6,10,13% -6/27/2018 19:00,21.19919408,128.1875096,959.0285306,895.7703713,123.8759367,853.7562993,726.3861171,127.3701823,120.1406201,7.229562159,236.262887,0,236.262887,3.735316545,232.5275705,0.369995735,2.237294102,-0.204456012,0.204456012,0.565117727,0.129168145,4.491659471,144.4672086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4837338,2.706224121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.254191996,138.8673759,118.7379258,141.5736001,726.3861171,0,0.810906612,35.81539532,-0.810906612,144.1846047,0.988340619,0,836.6548302,141.5736001,929.3119199,6,11,11% -6/27/2018 20:00,14.78205085,169.0221259,999.5970342,903.170713,126.3182326,963.0176334,832.9729769,130.0446565,122.5092718,7.535384675,246.1728347,0,246.1728347,3.808960777,242.3638739,0.257995458,2.949992605,0.041379989,-0.041379989,0.523077295,0.126369155,4.395733601,141.3819028,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7605719,2.759579117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18469403,135.9016627,120.945266,138.6612418,832.9729769,0,0.922276337,22.73883113,-0.922276337,157.2611689,0.995786314,0,950.4083561,138.6612418,1041.159366,6,12,10% -6/27/2018 21:00,17.79374424,218.5316227,982.2979492,900.0739981,125.2810033,1014.479431,885.5711352,128.9082957,121.5033188,7.404976865,241.9471949,0,241.9471949,3.777684488,238.1695104,0.310559423,3.814096335,0.273742632,-0.273742632,0.483340942,0.1275387,4.067072224,130.8110232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7936117,2.736919552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946579981,125.7405311,119.7401916,128.4774507,885.5711352,0,0.983887033,10.2993608,-0.983887033,169.7006392,0.999181158,0,1004.586184,128.4774507,1088.672106,6,13,8% -6/27/2018 22:00,27.23832016,245.4619734,908.3548549,885.8083224,120.7734087,1002.29351,878.3143026,123.9792074,117.1316448,6.847562587,223.882915,0,223.882915,3.641763878,220.2411511,0.47539837,4.284119624,0.513162144,-0.513162144,0.442397795,0.132958401,3.537010479,113.7624154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5913923,2.638445533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562552052,109.3527609,115.1539444,111.9912064,878.3143026,0,0.991539908,7.458162216,-0.991539908,172.5418378,0.999573386,0,993.093546,111.9912064,1066.389551,6,14,7% -6/27/2018 23:00,38.55153459,260.1244494,783.0477338,857.0436989,112.7984912,924.9653589,809.6652138,115.3001451,109.3972005,5.902944578,193.2602796,0,193.2602796,3.401290692,189.8589889,0.67285121,4.540028106,0.784496307,-0.784496307,0.39599692,0.144050594,2.851145385,91.70263633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1567503,2.464223528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065645126,88.14806212,107.2223954,90.61228565,809.6652138,0,0.944718706,19.14026826,-0.944718706,160.8597317,0.997074193,0,914.518685,90.61228565,973.8226137,6,15,6% -6/27/2018 0:00,50.3358251,270.3610439,615.5140601,805.7988767,101.183424,784.9854283,682.2130529,102.7723754,98.13237044,4.640004979,152.2895636,0,152.2895636,3.051053561,149.23851,0.87852588,4.718690386,1.130684576,-1.130684576,0.336795239,0.164388485,2.068599899,66.5332835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.32856711,2.210477919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498693585,63.95432282,95.8272607,66.16480074,682.2130529,0,0.846629442,32.15306038,-0.846629442,147.8469396,0.990942285,0,771.8610224,66.16480074,815.1645612,6,16,6% -6/27/2018 1:00,62.11698552,278.9507021,418.6723409,713.3402548,85.06607426,587.8479473,502.1908001,85.65714722,82.50101826,3.156128953,104.0770123,0,104.0770123,2.565055999,101.5119563,1.084145919,4.868608202,1.653841794,-1.653841794,0.247330086,0.203180545,1.263265765,40.63096944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.30311683,1.85837434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915231746,39.0560333,80.21834858,40.91440764,502.1908001,0,0.703998964,45.25127153,-0.703998964,134.7487285,0.978977168,0,571.8516759,40.91440764,598.6293374,6,17,5% -6/27/2018 2:00,73.6218473,287.098617,210.7298406,530.5523664,61.12699595,340.3119569,279.4395948,60.87236204,59.28379149,1.588570551,52.93709406,0,52.93709406,1.843204462,51.09388959,1.284943637,5.010816145,2.71382727,-2.71382727,0.066061894,0.290072805,0.5353037,17.21720709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.98583534,1.335395359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387825709,16.54983434,57.37366105,17.8852297,279.4395948,0,0.526695596,58.21753977,-0.526695596,121.7824602,0.955068506,0,324.2576173,17.8852297,335.9631424,6,18,4% -6/27/2018 3:00,84.5522952,295.5089441,31.91891487,143.219883,18.32202143,64.95995786,46.94979472,18.01016315,17.76954488,0.240618263,8.291587002,0,8.291587002,0.552476547,7.739110455,1.475715941,5.157604044,7.348359323,-7.348359323,0,0.574017679,0.138119137,4.442386221,0.420790079,1,0.135253957,0,0.947137668,0.985899631,0.724496596,1,17.22915492,0.400267378,0.060008804,0.312029739,0.843962144,0.56845874,0.961238037,0.922476074,0.094527058,4.27019061,17.32368198,4.670457987,27.19378688,0,0.327816178,70.86372011,-0.327816178,109.1362799,0.897475496,0,41.72943935,4.670457987,44.78616069,6,19,7% -6/27/2018 4:00,94.94937977,304.7248547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6571793,5.318452028,-6.668749062,6.668749062,0.329423055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115708831,83.35548898,-0.115708831,96.64451102,0.617880865,0,0,0,0,6,20,0% -6/27/2018 5:00,104.0295653,315.2338027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815658434,5.50186777,-1.676496252,1.676496252,0.816851434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088798684,95.09450003,0.088798684,84.90549997,0,0.486928592,0,0,0,6,21,0% -6/27/2018 6:00,111.4407883,327.4327143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945008677,5.714778943,-0.554052642,0.554052642,0.624902272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274226073,105.9158985,0.274226073,74.08410149,0,0.867668687,0,0,0,6,22,0% -6/27/2018 7:00,116.5667395,341.4374353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034473403,5.959207436,0.050166999,-0.050166999,0.521574628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.427941881,115.3370175,0.427941881,64.66298251,0,0.933161704,0,0,0,6,23,0% -6/28/2018 8:00,118.813401,356.7931912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073685043,6.227215936,0.525248908,-0.525248908,0.440330836,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539474757,122.6478904,0.539474757,57.35210956,0,0.957317257,0,0,0,6,0,0% -6/28/2018 9:00,117.8611497,12.41334998,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057065123,0.216653828,1.014034316,-1.014034316,0.356743609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601226605,126.9577974,0.601226605,53.04220261,0,0.966836681,0,0,0,6,1,0% -6/28/2018 10:00,113.8505105,27.06635788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987066263,0.472397062,1.656035054,-1.656035054,0.246955016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608990105,127.5165167,0.608990105,52.48348325,0,0.96789686,0,0,0,6,2,0% -6/28/2018 11:00,107.29625,40.01719578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.872672838,0.698431824,2.78161032,-2.78161032,0.054470309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562235375,124.2105302,0.562235375,55.78946977,0,0.961069274,0,0,0,6,3,0% -6/28/2018 12:00,98.83003877,51.18108395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724909576,0.89327843,6.093163162,-6.093163162,0,#DIV/0!,0,0,0.338553723,1,0.162668233,0,0.943762081,0.982524044,0.724496596,1,0,0,0.04990907,0.312029739,0.868235717,0.592732313,0.961238037,0.922476074,0,0,0,0,0,0,-0.464146294,117.6549856,0.464146294,62.34501437,0,0.942275344,0,0,0,6,4,0% -6/28/2018 13:00,88.6480633,60.87237816,1.279351471,7.177956285,1.109997948,1.086171707,0,1.086171707,1.076527415,0.009644292,2.60776811,2.264104,0.343664109,0.033470534,0.310193576,1.54720058,1.062423422,-41.83610783,41.83610783,0,0.867625491,0.008367633,0.269131854,1,0.850401287,0,0.023898246,0.961238037,1,0.658960877,0.934464281,1.034799099,0.023435259,0.115824807,0.237624295,0.724496596,0.448993192,0.972440215,0.933678252,0.006062322,0.260154012,1.040861421,0.283589271,0,0.338707044,-0.315424601,108.3864485,0.315424601,71.61355151,0,0.891483512,1.040861421,0.585541016,1.424086305,6,5,37% -6/28/2018 14:00,78.18707119,69.55427467,129.4066022,403.033569,46.89880795,46.46015748,0,46.46015748,45.48463585,0.975521629,90.18045015,57.39014913,32.79030102,1.414172098,31.37612892,1.364621825,1.213951102,-4.781195228,4.781195228,0.652213772,0.362414337,0.759206036,24.41867588,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.72156207,1.024562871,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.550042189,23.47216006,44.27160426,24.49672293,0,57.39014913,-0.142395457,98.1864848,0.142395457,81.8135152,0,0.698865201,44.27160426,64.60470107,86.55408901,6,6,96% -6/28/2018 15:00,66.87138594,77.74319224,333.4874905,653.8125915,76.67223519,114.4327803,37.55852631,76.87425398,74.36028441,2.513969569,83.16985383,0,83.16985383,2.311950781,80.85790305,1.16712586,1.356874676,-2.31987905,2.31987905,0.926876372,0.229910379,2.372403551,76.30465328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4779338,1.675000471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.718798297,73.34693512,73.1967321,75.02193559,37.55852631,0,0.057445401,86.70680805,-0.057445401,93.29319195,0,0,73.1967321,75.02193559,122.2970885,6,7,67% -6/28/2018 16:00,55.1741213,86.05537956,537.5163857,774.2762903,95.33927764,303.1193722,206.6029,96.51647222,92.46444665,4.052025563,133.2019019,0,133.2019019,2.874830985,130.3270709,0.962970079,1.501949712,-1.381358602,1.381358602,0.766379923,0.177369993,3.273295599,105.2804383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88034318,2.082805263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371491519,101.1995619,91.2518347,103.2823671,206.6029,0,0.266833561,74.52406818,-0.266833561,105.4759318,0.862617274,0,269.4710652,103.2823671,337.0673088,6,8,25% -6/28/2018 17:00,43.35422971,95.42527727,718.79617,839.1514838,108.6295624,506.1928992,395.4203298,110.7725695,105.3539803,5.41858915,177.5560355,0,177.5560355,3.275582107,174.2804533,0.756674053,1.665485278,-0.852697066,0.852697066,0.675973476,0.151127075,3.928166414,126.3433349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2702532,2.373148086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845943195,121.4460192,104.1161964,123.8191673,395.4203298,0,0.47121448,61.88684005,-0.47121448,118.11316,0.943891206,0,477.3499685,123.8191673,558.3871371,6,9,17% -6/28/2018 18:00,31.76614173,107.7658955,862.6491256,875.7808565,118.0567882,696.0299751,575.0300211,120.999954,114.4969405,6.503013494,212.7191157,0,212.7191157,3.559847749,209.1592679,0.554423764,1.880869698,-0.489496479,0.489496479,0.613862518,0.136853774,4.335603897,139.4479249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0588143,2.579097576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141130265,134.0426496,113.1999446,136.6217471,575.0300211,0,0.65659122,48.95958491,-0.65659122,131.0404151,0.973849119,0,673.1924239,136.6217471,762.608625,6,10,13% -6/28/2018 19:00,21.26543913,128.1804232,958.4069359,895.3943377,123.9798451,853.0095031,725.5432315,127.4662716,120.2413953,7.224876316,236.1153074,0,236.1153074,3.738449766,232.3768577,0.37115193,2.237170422,-0.205198392,0.205198392,0.565244681,0.129360338,4.490150641,144.4186794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5806028,2.70849413,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.253098854,138.8207279,118.8337016,141.529222,725.5432315,0,0.810305807,35.87417963,-0.810305807,144.1258204,0.988294901,0,835.8843778,141.529222,928.512423,6,11,11% -6/28/2018 20:00,14.83647424,168.8727712,999.1809615,902.8448544,126.4364335,962.4634847,832.3073281,130.1561567,122.6239085,7.532248143,246.0755172,0,246.0755172,3.812524971,242.2629922,0.258945325,2.947385874,0.040857254,-0.040857254,0.523166688,0.126540075,4.39510604,141.3617183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8707651,2.762161363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.184239365,135.8822606,121.0550045,138.644422,832.3073281,0,0.92187193,22.79870211,-0.92187193,157.2012979,0.995762531,0,949.8354562,138.644422,1040.575458,6,12,10% -6/28/2018 21:00,17.80915589,218.3194884,982.0706191,899.7776865,125.409802,1014.126321,885.0948244,129.031497,121.6282338,7.403263155,241.8959599,0,241.8959599,3.781568245,238.1143916,0.310828407,3.810393894,0.273372946,-0.273372946,0.483404163,0.127699373,4.067153829,130.8136479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9136847,2.73973332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946639104,125.7430541,119.8603238,128.4827874,885.0948244,0,0.983681678,10.36496251,-0.983681678,169.6350375,0.999170549,0,1004.221005,128.4827874,1088.31042,6,13,8% -6/28/2018 22:00,27.23186008,245.3166015,908.2857766,885.5269628,120.9087978,1002.12972,878.0197267,124.1099933,117.2629514,6.847041846,223.8702487,0,223.8702487,3.645846359,220.2244023,0.47528562,4.281582406,0.512915009,-0.512915009,0.442440057,0.133117573,3.537600057,113.7813783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7176092,2.641403276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562979199,109.3709887,115.2805884,112.0123919,878.0197267,0,0.991522295,7.465932649,-0.991522295,172.5340674,0.99957249,0,992.9249534,112.0123919,1066.234824,6,14,7% -6/28/2018 23:00,38.53781474,260.0191676,783.0951751,856.7655017,112.935657,924.9606998,809.5271674,115.4335324,109.5302302,5.903302211,193.2759183,0,193.2759183,3.405426745,189.8704916,0.672611754,4.538190593,0.78436691,-0.78436691,0.396019048,0.144217026,2.852023344,91.73087451,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2846235,2.467220084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066281204,88.17520573,107.3509047,90.64242581,809.5271674,0,0.944864337,19.11480364,-0.944864337,160.8851964,0.99708235,0,914.5161554,90.64242581,973.8398102,6,15,6% -6/28/2018 0:00,50.32066919,270.275982,615.6283557,805.513172,101.3160744,785.0928608,682.1909733,102.9018875,98.26102094,4.640866588,152.3212758,0,152.3212758,3.05505346,149.2662223,0.878261359,4.717205775,1.13069746,-1.13069746,0.336793036,0.164573437,2.06954473,66.56367254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.45223087,2.213375832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499378112,63.98353392,95.95160898,66.19690975,682.1909733,0,0.846902319,32.1236699,-0.846902319,147.8763301,0.990961314,0,771.9764723,66.19690975,815.3010258,6,16,6% -6/28/2018 1:00,62.10332328,278.8760434,418.8001132,713.0379745,85.18493739,588.0045817,502.2311923,85.77338939,82.61629723,3.157092156,104.1115763,0,104.1115763,2.568640161,101.5429362,1.083907468,4.867305162,1.654078254,-1.654078254,0.247289649,0.203402374,1.26407672,40.65705255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41392736,1.860971053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915819281,39.08110538,80.32974664,40.94207643,502.2311923,0,0.70435406,45.22261686,-0.70435406,134.7773831,0.979012974,0,572.0205998,40.94207643,598.81637,6,17,5% -6/28/2018 2:00,73.61170584,287.0289867,210.8199333,530.2386476,61.21550735,340.4380701,279.4791864,60.95888365,59.36963395,1.589249708,52.96160703,0,52.96160703,1.845873408,51.11573362,1.284766635,5.009600867,2.714543304,-2.714543304,0.065939445,0.290368688,0.535833628,17.2342514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.06835038,1.337329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38820964,16.56621798,57.45656002,17.90354698,279.4791864,0,0.527081886,58.19149917,-0.527081886,121.8085008,0.955138079,0,324.3977734,17.90354698,336.1152868,6,18,4% -6/28/2018 3:00,84.54754208,295.4410518,31.93725004,143.0311069,18.34646661,64.97388989,46.93988046,18.03400943,17.79325295,0.240756481,8.29676969,0,8.29676969,0.55321366,7.74355603,1.475632984,5.1564191,7.350765238,-7.350765238,0,0.574453548,0.138303415,4.448313238,0.420928076,1,0.135210225,0,0.947142916,0.985904879,0.724496596,1,17.25214021,0.400801413,0.060025195,0.312029739,0.843923409,0.568420005,0.961238037,0.922476074,0.094653076,4.275887884,17.34679329,4.676689297,27.18156687,0,0.328179523,70.84168286,-0.328179523,109.1583171,0.897644364,0,41.74617359,4.676689297,44.8069732,6,19,7% -6/28/2018 4:00,94.95174104,304.6566795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657220512,5.317262146,-6.676760396,6.676760396,0.328053037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116000407,83.33866963,-0.116000407,96.66133037,0.618967031,0,0,0,0,6,20,0% -6/28/2018 5:00,104.0412412,315.1645968,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815862216,5.5006599,-1.67942908,1.67942908,0.817352977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088627731,95.0846664,0.088627731,84.9153336,0,0.485842493,0,0,0,6,21,0% -6/28/2018 6:00,111.4638605,327.3636058,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945411362,5.713572773,-0.556391392,0.556391392,0.625302221,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274214543,105.9152115,0.274214543,74.08478849,0,0.86766102,0,0,0,6,22,0% -6/28/2018 7:00,116.6026349,341.372169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035099896,5.958068324,0.04781472,-0.04781472,0.521976891,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428117695,115.3481635,0.428117695,64.65183645,0,0.933209686,0,0,0,6,23,0% -6/29/2018 8:00,118.8618969,356.7376291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074531456,6.226246194,0.522513085,-0.522513085,0.44079869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.539853024,122.6736341,0.539853024,57.32636588,0,0.957382199,0,0,0,6,0,0% -6/29/2018 9:00,117.9198819,12.37259947,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058090193,0.215942598,1.010390001,-1.010390001,0.357366823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601808564,126.9995366,0.601808564,53.00046337,0,0.966917101,0,0,0,6,1,0% -6/29/2018 10:00,113.915847,27.04180776,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9882066,0.471968581,1.650283558,-1.650283558,0.24793858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609763033,127.5723707,0.609763033,52.42762933,0,0.968000933,0,0,0,6,2,0% -6/29/2018 11:00,107.3648073,40.00677761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.873869389,0.698249992,2.769639617,-2.769639617,0.05651742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56317346,124.275549,0.56317346,55.72445099,0,0.961217407,0,0,0,6,3,0% -6/29/2018 12:00,98.89950211,51.18159015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72612194,0.893287265,6.044857862,-6.044857862,0,#DIV/0!,0,0,0.334919721,1,0.163945059,0,0.943600726,0.982362689,0.724496596,1,0,0,0.049446948,0.312029739,0.869365729,0.593862325,0.961238037,0.922476074,0,0,0,0,0,0,-0.465212414,117.72397,0.465212414,62.27602999,0,0.942522215,0,0,0,6,4,0% -6/29/2018 13:00,88.71030747,60.88111531,1.145015984,6.45128353,0.999813848,0.978297386,0,0.978297386,0.969665772,0.008631614,2.349355926,2.041585468,0.307770458,0.030148076,0.277622382,1.548286946,1.062575914,-43.85704194,43.85704194,0,0.873187678,0.007537019,0.242416443,1,0.857755516,0,0.022797405,0.961238037,1,0.661881392,0.937384796,0.932079623,0.021135919,0.115824807,0.240935728,0.724496596,0.448993192,0.971966481,0.933204518,0.005460545,0.234284051,0.937540167,0.25541997,0,0.290404272,-0.316461904,108.4490902,0.316461904,71.55090983,0,0.892003099,0.937540167,0.514461481,1.274244917,6,5,36% -6/29/2018 14:00,78.25487269,69.5695424,128.1582977,400.2187727,46.69036948,46.24859395,0,46.24859395,45.28248257,0.966111383,89.93969278,57.45834282,32.48134996,1.407886909,31.07346305,1.365805184,1.214217574,-4.809601241,4.809601241,0.647356057,0.364317959,0.749538753,24.10774283,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.52724465,1.020009273,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.543038275,23.17327939,44.07028293,24.19328866,0,57.45834282,-0.143567336,98.25432556,0.143567336,81.74567444,0,0.701731365,44.07028293,64.51360999,86.29315039,6,6,96% -6/29/2018 15:00,66.93858336,77.76419094,332.1637683,652.3541312,76.6251648,113.5404797,36.7218555,76.81862415,74.31463336,2.503990792,82.84748273,0,82.84748273,2.310531435,80.53695129,1.168298676,1.357241172,-2.327315764,2.327315764,0.928148125,0.230684897,2.365578363,76.08513179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.43405228,1.67397216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.713853471,73.13592271,73.14790575,74.80989487,36.7218555,0,0.05629129,86.77304092,-0.05629129,93.22695908,0,0,73.14790575,74.80989487,122.1094857,6,7,67% -6/29/2018 16:00,55.24082512,86.08191613,536.2920595,773.390872,95.36001545,302.0581674,205.5308122,96.52735522,92.48455914,4.042796075,132.9056751,0,132.9056751,2.875456307,130.0302188,0.96413428,1.502412863,-1.384610055,1.384610055,0.766935954,0.177813588,3.268107036,105.1135563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89967607,2.083258306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367732423,101.0391485,91.26740849,103.1224068,205.5308122,0,0.265752829,74.58830919,-0.265752829,105.4116908,0.861855248,0,268.4052177,103.1224068,335.8967705,6,8,25% -6/29/2018 17:00,43.42115313,95.45702727,717.7351179,838.5377456,108.6875822,505.1467975,394.3259564,110.8208411,105.4102506,5.410590491,177.3005206,0,177.3005206,3.277331617,174.023189,0.757842087,1.66603942,-0.85446924,0.85446924,0.676276536,0.151431328,3.924292679,126.2187422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.3243423,2.3744156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.843136687,121.326256,104.167479,123.7006716,394.3259564,0,0.470254271,61.94919691,-0.470254271,118.0508031,0.943674544,0,476.282846,123.7006716,557.2424615,6,9,17% -6/29/2018 18:00,31.83453874,107.7990263,861.7839423,875.3132232,118.1398141,695.0953483,574.0213941,121.0739542,114.5774628,6.496491376,212.5118455,0,212.5118455,3.562351285,208.9494942,0.555617517,1.881447939,-0.490583007,0.490583007,0.614048325,0.137087509,4.332883508,139.3604278,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1362154,2.58091138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.139159352,133.958544,113.2753748,136.5394554,574.0213941,0,0.655789698,49.02044382,-0.655789698,130.9795562,0.973756045,0,672.2321775,136.5394554,761.5945202,6,10,13% -6/29/2018 19:00,21.33618113,128.1874488,957.7504266,895.0115124,124.0815211,852.241686,724.6817534,127.5599327,120.3400054,7.219927271,235.959195,0,235.959195,3.741515672,232.2176794,0.37238661,2.237293042,-0.205907637,0.205907637,0.565365969,0.129555172,4.488448689,144.3639388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6753905,2.710715368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.251865796,138.7681091,118.9272563,141.4788245,724.6817534,0,0.809689868,35.93435825,-0.809689868,144.0656417,0.988247961,0,835.0925218,141.4788245,927.6875828,6,11,11% -6/29/2018 20:00,14.89754485,168.7317527,998.7288938,902.5125704,126.5523912,961.8903096,831.6250997,130.2652099,122.7363696,7.528840266,245.9694047,0,245.9694047,3.816021522,242.1533832,0.260011208,2.944924636,0.040386182,-0.040386182,0.523247246,0.126713457,4.394269625,141.3348164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.978867,2.764694602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183633385,135.8564014,121.1625004,138.621096,831.6250997,0,0.92145542,22.86020954,-0.92145542,157.1397905,0.995738015,0,949.2432265,138.621096,1039.967961,6,12,10% -6/29/2018 21:00,17.83093195,218.098049,981.8033247,899.4741461,125.5361208,1013.752842,884.6008502,129.1519917,121.7507435,7.401248177,241.8349602,0,241.8349602,3.78537722,238.049583,0.311208471,3.806529047,0.273074864,-0.273074864,0.483455138,0.127862799,4.067000744,130.8087241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0314457,2.74249291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946528194,125.7383212,119.9779739,128.4808141,884.6008502,0,0.983464454,10.4339118,-0.983464454,169.5660882,0.999159322,0,1003.835159,128.4808141,1087.923283,6,13,8% -6/29/2018 22:00,27.23037248,245.1606533,908.170167,885.236161,121.0412412,1001.940579,877.7030073,124.2375715,117.3914012,6.846170331,223.8462114,0,223.8462114,3.649840016,220.1963714,0.475259656,4.278860596,0.512766018,-0.512766018,0.442465536,0.133280354,3.537922325,113.7917435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.84108,2.644296667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563212681,109.3809521,115.4042927,112.0252488,877.7030073,0,0.991490233,7.480057424,-0.991490233,172.5199426,0.99957086,0,992.7306423,112.0252488,1066.048927,6,14,7% -6/29/2018 23:00,38.52843507,259.905274,783.0874396,856.4732984,113.0691358,924.9218901,809.358962,115.5629281,109.6596842,5.903243897,193.2780676,0,193.2780676,3.409451626,189.868616,0.672448048,4.536202774,0.784377279,-0.784377279,0.396017275,0.144388902,2.852599032,91.74939061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4090596,2.470136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066698288,88.19300411,107.4757579,90.66314021,809.358962,0,0.944990303,19.0927511,-0.944990303,160.9072489,0.997089404,0,914.4790031,90.66314021,973.8162151,6,15,6% -6/29/2018 0:00,50.30968574,270.183828,615.6775339,805.2040116,101.4438614,785.1531989,682.1270069,103.026192,98.38495465,4.641237314,152.3370529,0,152.3370529,3.058906708,149.2781462,0.878069662,4.715597385,1.130926603,-1.130926603,0.33675385,0.164767846,2.070156559,66.58335106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.57136066,2.216167497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49982138,64.00244966,96.07118204,66.21861715,682.1270069,0,0.847148048,32.09718286,-0.847148048,147.9028171,0.990978439,0,772.0443387,66.21861715,815.3830993,6,16,6% -6/29/2018 1:00,62.09391576,278.7953172,418.8528358,712.6905739,85.2967859,588.0959179,502.2136552,85.8822627,82.7247731,3.157489601,104.1277322,0,104.1277322,2.572012807,101.5557194,1.083743275,4.865896224,1.654704748,-1.654704748,0.247182512,0.203643807,1.264540266,40.67196179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.51819849,1.863414523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916155118,39.0954367,80.43435361,40.95885123,502.2136552,0,0.70467279,45.19688468,-0.70467279,134.8031153,0.979045082,0,572.1241629,40.95885123,598.9309119,6,17,5% -6/29/2018 2:00,73.60605345,286.9540049,210.8286436,529.8214503,61.29178385,340.4721961,279.4392703,61.0329258,59.44361043,1.58931537,52.96601896,0,52.96601896,1.848173426,51.11784554,1.284667982,5.008292187,2.716230789,-2.716230789,0.065650868,0.290718485,0.536049742,17.24120237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.13945939,1.338995356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388366214,16.57289952,57.5278256,17.91189488,279.4392703,0,0.527421587,58.16859316,-0.527421587,121.8314068,0.955199178,0,324.4479869,17.91189488,336.1709639,6,18,4% -6/29/2018 3:00,84.54754662,295.3683662,31.89835524,142.6267007,18.34600964,64.88429257,46.85101954,18.03327304,17.79280976,0.240463276,8.287325415,0,8.287325415,0.55319988,7.734125535,1.475633063,5.155150496,7.360235377,-7.360235377,0,0.575139674,0.13829997,4.44820244,0.421470622,1,0.135038364,0,0.947163538,0.985925501,0.724496596,1,17.25170323,0.40079143,0.060089619,0.312029739,0.84377118,0.568267776,0.961238037,0.922476074,0.094650337,4.275781381,17.34635357,4.676572811,27.10469121,0,0.328487018,70.82303067,-0.328487018,109.1769693,0.897786983,0,41.68059251,4.676572811,44.74131589,6,19,7% -6/29/2018 4:00,94.95942048,304.5842439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657354543,5.315997905,-6.678248788,6.678248788,0.327798507,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116223866,83.32577918,-0.116223866,96.67422082,0.619795761,0,0,0,0,6,20,0% -6/29/2018 5:00,104.0587426,315.0917844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816167674,5.499389083,-1.681856339,1.681856339,0.817768063,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088534313,95.0792928,0.088534313,84.9207072,0,0.485247213,0,0,0,6,21,0% -6/29/2018 6:00,111.4932536,327.2918351,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945924368,5.712320137,-0.558657913,0.558657913,0.625689819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274288264,105.9196039,0.274288264,74.08039614,0,0.867710028,0,0,0,6,22,0% -6/29/2018 7:00,116.6452155,341.3056107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035843067,5.956906662,0.045411512,-0.045411512,0.522387864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428384251,115.3650643,0.428384251,64.63493573,0,0.933282357,0,0,0,6,23,0% -6/30/2018 8:00,118.9171626,356.6825169,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075496024,6.225284305,0.519655253,-0.519655253,0.441287408,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540324915,122.70576,0.540324915,57.29424003,0,0.957463086,0,0,0,6,0,0% -6/30/2018 9:00,117.9851059,12.33407654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059228566,0.215270246,1.006547036,-1.006547036,0.358024009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602484226,127.0480252,0.602484226,52.9519748,0,0.967010275,0,0,0,6,1,0% -6/30/2018 10:00,113.9870991,27.02090781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989450185,0.471603808,1.644202407,-1.644202407,0.248978518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610626933,127.6348481,0.610626933,52.36515189,0,0.968116943,0,0,0,6,2,0% -6/30/2018 11:00,107.438567,40.00094875,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875156738,0.69814826,2.757012021,-2.757012021,0.058676866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564197164,124.3465595,0.564197164,55.6534405,0,0.961378498,0,0,0,6,3,0% -6/30/2018 12:00,98.97346068,51.18726774,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727412761,0.893386357,5.994425171,-5.994425171,0,#DIV/0!,0,0,0.331082823,1,0.165299485,0,0.943429164,0.982191127,0.724496596,1,0,0,0.048957519,0.312029739,0.870564358,0.595060954,0.961238037,0.922476074,0,0,0,0,0,0,-0.466356548,117.7980509,0.466356548,62.20194915,0,0.942785895,0,0,0,6,4,0% -6/30/2018 13:00,88.7758246,60.89544584,1.014115472,5.74593478,0.891357793,0.872124898,0,0.872124898,0.864480067,0.007644831,2.097430402,1.824668638,0.272761763,0.026877726,0.245884037,1.549430435,1.062826029,-46.20687046,46.20687046,0,0.878950986,0.006719432,0.216120017,1,0.865446607,0,0.021638425,0.961238037,1,0.664966432,0.940469836,0.830971123,0.018869141,0.115824807,0.24443424,0.724496596,0.448993192,0.971463432,0.932701469,0.004868205,0.208825508,0.835839328,0.227694648,0,0.245515357,-0.317558188,108.5153186,0.317558188,71.48468144,0,0.892548541,0.835839328,0.446829022,1.128279986,6,5,35% -6/30/2018 14:00,78.32602035,69.5908348,126.8545711,397.2814419,46.46762338,46.02273643,0,46.02273643,45.06645309,0.956283341,89.68370238,57.52517265,32.15852973,1.401170292,30.75735944,1.367046945,1.214589196,-4.839761772,4.839761772,0.642198303,0.366306259,0.739458816,23.78353738,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.31958889,1.015143107,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.535735395,22.86164078,43.85532429,23.87678389,0,57.52517265,-0.144797029,98.32552579,0.144797029,81.67447421,0,0.704689049,43.85532429,64.41414307,86.01309264,6,6,96% -6/30/2018 15:00,67.00878138,77.79179663,330.7856415,650.8469129,76.57131743,112.611067,35.85505545,76.75601158,74.26240969,2.49360189,82.51171622,0,82.51171622,2.308907739,80.20280848,1.169523863,1.357722982,-2.335096373,2.335096373,0.929478688,0.231483196,2.358456613,75.85607183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.38385291,1.672795797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708693788,72.91574157,73.09254669,74.58853737,35.85505545,0,0.055089845,86.84198565,-0.055089845,93.15801435,0,0,73.09254669,74.58853737,121.9092526,6,7,67% -6/30/2018 16:00,55.3103306,86.11594736,535.0205774,772.4825729,95.37658262,300.9598683,204.4260305,96.53383786,92.50062675,4.033211106,132.5978891,0,132.5978891,2.875955868,129.7219332,0.965347379,1.50300682,-1.387964417,1.387964417,0.767509584,0.17826713,3.262686222,104.9392043,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91512087,2.083620236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363805062,100.8715548,91.27892593,102.955175,204.4260305,0,0.264635136,74.65472637,-0.264635136,105.3452736,0.861060614,0,267.3021293,102.955175,334.6842322,6,8,25% -6/30/2018 17:00,43.49090308,95.49768952,716.6334194,837.911144,108.7425819,504.0694486,393.2035713,110.8658773,105.4635919,5.402285422,177.0350595,0,177.0350595,3.278990062,173.7560694,0.759059453,1.66674911,-0.856265608,0.856265608,0.676583733,0.151740875,3.920218117,126.0876903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.375616,2.375617138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.840184681,121.2002839,104.2158007,123.575901,393.2035713,0,0.46926643,62.01331054,-0.46926643,117.9866895,0.943450721,0,475.1839934,123.575901,556.0619491,6,9,17% -6/30/2018 18:00,31.90617466,107.8433484,860.8824234,874.8370239,118.2203841,694.1356908,572.9903922,121.1452987,114.6556033,6.489695346,212.2956913,0,212.2956913,3.564780767,208.7309105,0.5568678,1.882221505,-0.491657489,0.491657489,0.614232072,0.137324658,4.329973542,139.2668333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2113271,2.582671531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137051091,133.8685774,113.3483782,136.451249,572.9903922,0,0.654968156,49.08276459,-0.654968156,130.9172354,0.973660411,0,671.2464387,136.451249,760.5510521,6,10,13% -6/30/2018 19:00,21.41135951,128.208541,957.0591409,894.6218833,124.1809674,851.4533032,723.802134,127.6511692,120.4364531,7.214716067,235.7945835,0,235.7945835,3.744514347,232.0500692,0.373698721,2.23766117,-0.206582566,0.206582566,0.565481389,0.129752658,4.486552957,144.3029655,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7680997,2.712887898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.250492344,138.7094993,119.0185921,141.4223872,723.802134,0,0.809059277,35.99587821,-0.809059277,144.0041218,0.988199831,0,834.2797386,141.4223872,926.8378626,6,11,11% -6/30/2018 20:00,14.96521398,168.5993928,998.2406703,902.1738018,126.6660911,961.2982404,830.9264395,130.3718009,122.8466411,7.525159831,245.8544577,0,245.8544577,3.819449994,242.0350077,0.261192257,2.942614521,0.039967784,-0.039967784,0.523318796,0.126889331,4.393222588,141.3011401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0848641,2.767178519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.18287481,135.8240305,121.2677389,138.591209,830.9264395,0,0.92102701,22.92331136,-0.92102701,157.0766886,0.995712776,0,948.6318103,138.591209,1039.336985,6,12,10% -6/30/2018 21:00,17.85911961,217.8677894,981.4956305,899.1632693,125.6599282,1013.358793,884.0890464,129.2697464,121.8708177,7.398928648,241.7640894,0,241.7640894,3.789110471,237.974979,0.311700439,3.802510259,0.272849306,-0.272849306,0.48349371,0.128029025,4.066610312,130.7961665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1468656,2.745197637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.946245328,125.7262503,120.0931109,128.471448,884.0890464,0,0.983235277,10.50617006,-0.983235277,169.4938299,0.999147471,0,1003.428446,128.471448,1087.510439,6,13,8% -6/30/2018 22:00,27.23392961,244.994337,908.0073595,884.9357502,121.1706915,1001.725568,877.3636774,124.3618911,117.5169481,6.84494302,223.8106403,0,223.8106403,3.653743422,220.1568969,0.47532174,4.275957829,0.512716068,-0.512716068,0.442474078,0.133446817,3.53797402,113.7934062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9617605,2.647124672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563250134,109.3825504,115.5250106,112.029675,877.3636774,0,0.991443364,7.500657119,-0.991443364,172.4993429,0.999568476,0,992.5100844,112.029675,1065.831266,6,14,7% -6/30/2018 23:00,38.52346435,259.7828847,783.023691,856.1668399,113.1988646,924.8481294,809.1598649,115.6882645,109.7855011,5.902763333,193.2665228,0,193.2665228,3.413363426,189.8531594,0.672361292,4.534066678,0.784528383,-0.784528383,0.395991435,0.144566334,2.852868907,91.75807073,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5299996,2.472970182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066893812,88.20134777,107.5968934,90.67431795,809.1598649,0,0.945096011,19.07422632,-0.945096011,160.9257737,0.997095322,0,914.4064096,90.67431795,973.7509372,6,15,6% -6/30/2018 0:00,50.30293673,270.0846662,615.6606642,804.8710165,101.5667033,785.1654122,682.0202097,103.1452026,98.50409242,4.641110143,152.3366668,0,152.3366668,3.062610845,149.2740559,0.877951869,4.713866684,1.131373221,-1.131373221,0.336677474,0.16497189,2.07043193,66.59220792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.68588042,2.218851131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.500020885,64.01096322,96.1859013,66.22981435,682.0202097,0,0.847365846,32.07369026,-0.847365846,147.9263097,0.990993609,0,772.0635706,66.22981435,815.4096595,6,16,6% -6/30/2018 1:00,62.08881762,278.7085942,418.8295733,712.2974425,85.40150981,588.1207583,502.1371048,85.98365343,82.82633919,3.157314238,104.1252497,0,104.1252497,2.575170619,101.5500791,1.083654296,4.864382623,1.655723263,-1.655723263,0.247008336,0.203905157,1.264653438,40.67560178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.61582768,1.865702347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916237111,39.0989356,80.53206479,40.96463795,502.1371048,0,0.704954244,45.17415242,-0.704954244,134.8258476,0.979073411,0,572.1611527,40.96463795,598.971689,6,17,5% -6/30/2018 2:00,73.60493694,286.8737362,210.7551519,529.2997167,61.35565132,340.4130443,279.3187308,61.09431341,59.50555205,1.588761359,52.95012589,0,52.95012589,1.850099266,51.10002663,1.284648495,5.006891234,2.718895165,-2.718895165,0.065195233,0.291122901,0.53595007,17.23799656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.19900004,1.34039062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.388294001,16.56981797,57.58729404,17.91020859,279.3187308,0,0.527713736,58.14888908,-0.527713736,121.8511109,0.955251661,0,324.4069756,17.91020859,336.1288489,6,18,4% -6/30/2018 3:00,84.55234638,295.2909497,31.80190282,142.0059048,18.32038733,64.69039503,46.6826988,18.00769624,17.76796006,0.239736177,8.263166801,0,8.263166801,0.552427273,7.710739528,1.475716835,5.153799323,7.37683541,-7.37683541,0,0.576078338,0.138106818,4.441990015,0.42241919,1,0.134738157,0,0.947199544,0.985961507,0.724496596,1,17.22759571,0.400231679,0.060202189,0.312029739,0.843505265,0.568001861,0.961238037,0.922476074,0.094517515,4.269809762,17.32211322,4.670041441,26.96303096,0,0.32873773,70.80782126,-0.32873773,109.1921787,0.897903068,0,41.53230146,4.670041441,44.58875018,6,19,7% -6/30/2018 4:00,94.97244695,304.5076102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657581898,5.314660396,-6.673188268,6.673188268,0.328663907,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116378356,83.31686712,-0.116378356,96.68313288,0.620366846,0,0,0,0,6,20,0% -6/30/2018 5:00,104.0820878,315.0154286,0,0,0,0,0,0,0,0,0,0,0,0,0,1.816575124,5.498056423,-1.683769862,1.683769862,0.818095294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08851912,95.07841885,0.08851912,84.92158115,0,0.485150279,0,0,0,6,21,0% -6/30/2018 6:00,111.5289738,327.2174666,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946547805,5.711022162,-0.560847046,0.560847046,0.626064183,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274447711,105.929104,0.274447711,74.07089595,0,0.867815933,0,0,0,6,22,0% -6/30/2018 7:00,116.6944745,341.2378262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0367028,5.955723599,0.042962035,-0.042962035,0.522806749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428741761,115.3877356,0.428741761,64.6122644,0,0.933379683,0,0,0,6,23,0% -7/1/2018 8:00,118.9791777,356.6279219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076578392,6.224331442,0.516680662,-0.516680662,0.441796092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540890361,122.7442701,0.540890361,57.25572986,0,0.957559824,0,0,0,7,0,0% -7/1/2018 9:00,118.0567873,12.29784735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060479642,0.214637927,1.002512581,-1.002512581,0.358713941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603253234,127.1032504,0.603253234,52.89674962,0,0.967116068,0,0,0,7,1,0% -7/1/2018 10:00,114.0642199,27.0037179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990796196,0.471303788,1.637803794,-1.637803794,0.250072745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611581176,127.7039203,0.611581176,52.29607972,0,0.968244704,0,0,0,7,2,0% -7/1/2018 11:00,107.5174723,39.99975829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876533895,0.698127482,2.743757195,-2.743757195,0.060943575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565305621,124.4235168,0.565305621,55.57648316,0,0.961552268,0,0,0,7,3,0% -7/1/2018 12:00,99.05185144,51.19815354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728780938,0.89357635,5.942034285,-5.942034285,0,#DIV/0!,0,0,0.327049781,1,0.166730183,0,0.943247493,0.982009457,0.724496596,1,0,0,0.048441396,0.312029739,0.871830418,0.596327013,0.961238037,0.922476074,0,0,0,0,0,0,-0.46757764,117.8771704,0.46757764,62.12282958,0,0.943065887,0,0,0,7,4,0% -7/1/2018 13:00,88.84451321,60.91539494,0.887989325,5.068743652,0.785774653,0.768774687,0,0.768774687,0.762080648,0.006694039,1.854465279,1.615467981,0.238997298,0.023694005,0.215303293,1.550629278,1.063174207,-48.95720723,48.95720723,0,0.884892003,0.005923501,0.190520162,1,0.873455032,0,0.020423162,0.961238037,1,0.668212618,0.943716022,0.732540906,0.016658691,0.115824807,0.248116072,0.724496596,0.448993192,0.970931199,0.932169236,0.004291556,0.184047443,0.736832463,0.200706134,0,0.204429345,-0.318711715,108.5850327,0.318711715,71.41496726,0,0.893118412,0.736832463,0.383285745,0.987685317,7,5,34% -7/1/2018 14:00,78.40044695,69.61816649,125.4969038,394.2220385,46.2305683,45.78259477,0,45.78259477,44.8365461,0.946048671,89.41145812,57.58925862,31.8221995,1.394022207,30.42817729,1.368345934,1.215066224,-4.871704894,4.871704894,0.636735707,0.36838015,0.728982593,23.44658604,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.09859355,1.009964344,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.528145407,22.53775034,43.62673896,23.54771468,0,57.58925862,-0.146083306,98.40001606,0.146083306,81.59998394,0,0.707729542,43.62673896,64.30533431,85.71329415,7,6,96% -7/1/2018 15:00,67.08191414,77.82601392,329.3542815,649.2911899,76.510741,111.6457816,34.95931007,76.68647155,74.20365986,2.482811693,82.16283981,0,82.16283981,2.307081136,79.85575867,1.17080027,1.358320187,-2.343218784,2.343218784,0.930867702,0.232305287,2.35104267,75.61761394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.32738033,1.671472429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.703322411,72.68652677,73.03070274,74.3579992,34.95931007,0,0.053842268,86.91357282,-0.053842268,93.08642718,0,0,73.03070274,74.3579992,121.6965261,7,7,67% -7/1/2018 16:00,55.38257423,86.15746681,533.7028966,771.5515733,95.38902693,299.8256048,203.2896311,96.53597369,92.51269582,4.023277872,132.2787774,0,132.2787774,2.87633111,129.4024463,0.966608269,1.503731471,-1.391419218,1.391419218,0.76810039,0.178730578,3.257036317,104.757484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92672211,2.083892098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.359711724,100.6968782,91.28643384,102.7807703,203.2896311,0,0.263481585,74.72325219,-0.263481585,105.2767478,0.860233417,0,266.1629678,102.7807703,333.4309263,7,8,25% -7/1/2018 17:00,43.56341931,95.54724267,715.4917761,837.2717767,108.7945962,502.9618121,392.0540952,110.907717,105.5140377,5.393679233,176.7598233,0,176.7598233,3.280558485,173.4792648,0.7603251,1.667613976,-0.858084282,0.858084282,0.676894744,0.152055691,3.915944547,125.9502376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4241065,2.376753455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.837088494,121.0681591,104.261195,123.4449126,392.0540952,0,0.468251894,62.07911711,-0.468251894,117.9208829,0.943219866,0,474.0544061,123.4449126,554.8466325,7,9,17% -7/1/2018 18:00,31.98099246,107.8988163,859.9449805,874.3522911,118.2985163,693.1517203,571.9377122,121.2140081,114.7313796,6.482628505,212.0707534,0,212.0707534,3.567136743,208.5036166,0.558173616,1.883189603,-0.492718474,0.492718474,0.614413511,0.137565215,4.326874474,139.1671566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2841661,2.584378427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134805827,133.7727644,113.4189719,136.3571428,571.9377122,0,0.65412731,49.14648894,-0.65412731,130.8535111,0.97356228,0,670.2359552,136.3571428,759.478978,7,10,13% -7/1/2018 19:00,21.49091625,128.2436343,956.333185,894.2254312,124.2781851,850.6447762,722.9047935,127.7399827,120.5307392,7.209243506,235.6214986,0,235.6214986,3.747445817,231.8740528,0.375087248,2.238273662,-0.207222008,0.207222008,0.56559074,0.12995281,4.484462661,144.2357344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8587312,2.715011738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.248977932,138.6448742,119.1077091,141.3598859,722.9047935,0,0.808414487,36.05868946,-0.808414487,143.9413105,0.988150539,0,833.4464707,141.3598859,925.9636889,7,11,11% -7/1/2018 20:00,15.03943143,168.4759818,997.716098,901.8284829,126.7775168,960.687372,830.2114597,130.4759123,122.9547069,7.521205384,245.730629,0,245.730629,3.82280989,241.9078191,0.262487596,2.940460593,0.039603061,-0.039603061,0.523381167,0.127067727,4.391963051,141.260629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1887411,2.769612752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.181962279,135.7850897,121.3707034,138.5547024,830.2114597,0,0.920586869,22.98797043,-0.920586869,157.0120296,0.99568682,0,948.0013119,138.5547024,1038.682594,7,12,10% -7/1/2018 21:00,17.89376382,217.6292136,981.1470715,898.8449413,125.7811912,1012.943935,883.5592102,129.3847252,121.9884242,7.396301063,241.6832338,0,241.6832338,3.792766996,237.8904668,0.312305094,3.798346326,0.272697182,-0.272697182,0.483519725,0.128198101,4.065979791,130.7758868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2599134,2.747846778,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945788518,125.7067567,120.2057019,128.4546035,883.5592102,0,0.982994029,10.58170728,-0.982994029,169.4182927,0.999134991,0,1003.000625,128.4546035,1087.071594,7,13,8% -7/1/2018 22:00,27.24260364,244.8178752,907.796664,884.6255559,121.2970998,1001.484134,877.001235,124.4828994,117.6395447,6.843354708,223.7633664,0,223.7633664,3.657555097,220.1058113,0.47547313,4.272877991,0.512766052,-0.512766052,0.44246553,0.133617036,3.53775183,113.7862598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.079605,2.649886217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.563089158,109.375681,115.6426942,112.0255672,877.001235,0,0.991381302,7.527848792,-0.991381302,172.4721512,0.999565319,0,992.2627131,112.0255672,1065.581206,7,14,7% -7/1/2018 23:00,38.52297135,259.6521239,782.9030777,855.8458677,113.3247783,924.7385851,808.9291129,115.8094722,109.9076181,5.9018541,193.2410755,0,193.2410755,3.417160189,189.8239153,0.672352688,4.531784471,0.784821195,-0.784821195,0.395941361,0.144749435,2.852829427,91.75680089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6473831,2.475720925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066865208,88.20012716,107.7142483,90.67584808,808.9291129,0,0.945180836,19.0593485,-0.945180836,160.9406515,0.99710007,0,914.2975234,90.67584808,973.6430525,7,15,6% -7/1/2018 0:00,50.30048376,269.9785852,615.5768112,804.5137942,101.684517,785.128445,681.8696133,103.2588317,98.61835367,4.640478024,152.3198881,0,152.3198881,3.066163364,149.2537248,0.877909057,4.712015221,1.132038577,-1.132038577,0.336563691,0.16518575,2.07036744,66.5901337,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.79571267,2.22142492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499974162,64.00896939,96.29568684,66.23039431,681.8696133,0,0.847554906,32.0532849,-0.847554906,147.9467151,0.991006772,0,772.0330911,66.23039431,815.3795596,7,16,6% -7/1/2018 1:00,62.08808274,278.6159481,418.7293978,711.8579427,85.49899693,588.0778856,502.0004399,86.07744579,82.92088671,3.156559073,104.1039006,0,104.1039006,2.578110215,101.5257904,1.08364147,4.862765644,1.657135998,-1.657135998,0.246766744,0.204186755,1.264413392,40.66788108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.70671036,1.867832075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.916063198,39.09151418,80.62277356,40.95934625,502.0004399,0,0.705197498,45.15449821,-0.705197498,134.8455018,0.979097877,0,572.1303383,40.95934625,598.9374112,7,17,5% -7/1/2018 2:00,73.60840195,286.7882476,210.5986658,528.6723091,61.40692867,340.2593039,279.116439,61.1428649,59.5552832,1.5875817,52.91373021,0,52.91373021,1.851645467,51.06208475,1.284708971,5.005399176,2.722543161,-2.722543161,0.064571388,0.291582705,0.535532892,17.22457868,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.24680351,1.341510837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387991757,16.55692019,57.63479526,17.89843103,279.116439,0,0.527957365,58.13245421,-0.527957365,121.8675458,0.955295383,0,324.2734408,17.89843103,335.9876059,7,18,4% -7/1/2018 3:00,84.56197705,295.2088664,31.647704,141.1681454,18.26934384,64.39157238,46.4345429,17.95702948,17.71845572,0.238573761,8.224240363,0,8.224240363,0.550888123,7.673352239,1.475884922,5.1523667,7.400666241,-7.400666241,0,0.57727233,0.137722031,4.429613929,0.42377552,1,0.134309495,0,0.947250921,0.986012884,0.724496596,1,17.17957569,0.39911657,0.060363002,0.312029739,0.843125566,0.567622162,0.961238037,0.922476074,0.094253344,4.257913397,17.27382903,4.657029968,26.75672032,0,0.328930743,70.79611123,-0.328930743,109.2038888,0.897992317,0,41.30115831,4.657029968,44.34909129,7,19,7% -7/1/2018 4:00,94.9908476,304.4268417,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65790305,5.31325072,-6.661597219,6.661597219,0.330646093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116463042,83.31198175,-0.116463042,96.68801825,0.620679253,0,0,0,0,7,20,0% -7/1/2018 5:00,104.1112928,314.9355929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817084849,5.496663028,-1.685162946,1.685162946,0.818333526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088582813,95.08208262,0.088582813,84.91791738,0,0.485556422,0,0,0,7,21,0% -7/1/2018 6:00,111.5710256,327.1405646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947281746,5.70967997,-0.56295383,0.56295383,0.626424464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274693318,105.9437387,0.274693318,74.05626126,0,0.867978827,0,0,0,7,22,0% -7/1/2018 7:00,116.7504036,341.1688811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037678946,5.954520281,0.040470977,-0.040470977,0.523232745,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429190395,115.4161915,0.429190395,64.58380848,0,0.933501587,0,0,0,7,23,0% -7/2/2018 8:00,119.0479202,356.5739112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077778176,6.223388778,0.513594685,-0.513594685,0.442323826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541549242,122.7891649,0.541549242,57.21083514,0,0.957672293,0,0,0,7,0,0% -7/2/2018 9:00,118.1348901,12.26397809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061842794,0.214046797,0.998293989,-0.998293989,0.359435363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60411518,127.1651977,0.60411518,52.83480227,0,0.967234326,0,0,0,7,1,0% -7/2/2018 10:00,114.1471607,26.99029773,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992243785,0.471069562,1.63110023,-1.63110023,0.251219122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612625085,127.7795567,0.612625085,52.22044334,0,0.968384015,0,0,0,7,2,0% -7/2/2018 11:00,107.6014648,40.0032547,0,0,0,0,0,0,0,0,0,0,0,0,0,1.877999842,0.698188506,2.729905351,-2.729905351,0.06331238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56649792,124.5063743,0.56649792,55.49362566,0,0.961738423,0,0,0,7,3,0% -7/2/2018 12:00,99.13461012,51.21428319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.730225349,0.893857866,5.887853581,-5.887853581,0,#DIV/0!,0,0,0.322827486,1,0.168235794,0,0.943055815,0.981817778,0.724496596,1,0,0,0.047899206,0.312029739,0.873162692,0.597659288,0.961238037,0.922476074,0,0,0,0,0,0,-0.468874601,117.9612692,0.468874601,62.03873078,0,0.943361679,0,0,0,7,4,0% -7/2/2018 13:00,88.9162682,60.94098607,0.767864995,4.42586851,0.684156064,0.669314725,0,0.669314725,0.663526235,0.005788491,1.622734411,1.415926823,0.206807588,0.02062983,0.186177758,1.551881639,1.063620856,-52.20328843,52.20328843,0,0.890984833,0.005157457,0.165881559,1,0.881760936,0,0.019153539,0.961238037,1,0.671616384,0.947119789,0.637806655,0.014527354,0.115824807,0.251977256,0.724496596,0.448993192,0.970369935,0.931607972,0.00373656,0.160206213,0.641543215,0.174733566,0,0.167417862,-0.319920671,108.6581275,0.319920671,71.34187254,0,0.893711255,0.641543215,0.324356794,0.85382825,7,5,33% -7/2/2018 14:00,78.47808495,69.65154993,124.086797,391.041002,45.97919929,45.52817547,0,45.52817547,44.59275678,0.93541869,89.12190929,57.64918623,31.47272305,1.386442504,30.08628055,1.369700973,1.215648875,-4.905461398,4.905461398,0.630963005,0.370540625,0.718126731,23.09742423,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.86425399,1.004472874,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.520280372,22.20212272,43.38453436,23.2065956,0,57.64918623,-0.147424914,98.47772594,0.147424914,81.52227406,0,0.7108443,43.38453436,64.18619104,85.39311267,7,6,97% -7/2/2018 15:00,67.15791609,77.86684466,327.8708551,647.6871993,76.44348182,110.6458691,34.03581127,76.61005779,74.13842879,2.471628999,81.8011378,0,81.8011378,2.305053023,79.49608478,1.172126755,1.359032817,-2.351680997,2.351680997,0.932314826,0.233151195,2.343340838,75.36989653,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26467775,1.670003069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69774246,72.44841138,72.96242021,74.11841445,34.03581127,0,0.052549767,86.98773268,-0.052549767,93.01226732,0,0,72.96242021,74.11841445,121.4714401,7,7,66% -7/2/2018 16:00,55.45749341,86.20646454,532.3399587,770.5980442,95.3973948,298.656499,202.1226842,96.53381483,92.52081136,4.01300347,131.9485696,0,131.9485696,2.876583432,129.0719862,0.967915855,1.504586643,-1.394971983,1.394971983,0.768707948,0.179203896,3.251160385,104.5684938,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93452308,2.084074904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355454632,100.5152137,91.28997771,102.5992886,202.1226842,0,0.262293274,74.79381946,-0.262293274,105.2061805,0.859373686,0,264.9888939,102.5992886,332.1380763,7,8,25% -7/2/2018 17:00,43.63864319,95.6056604,714.3108661,836.6197336,108.843658,501.8248293,390.8784322,110.9463972,105.5616201,5.384777035,176.4749774,0,176.4749774,3.282037879,173.1929395,0.761638005,1.668633558,-0.859923371,0.859923371,0.677209247,0.152375756,3.91147367,125.8064388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4698445,2.377825271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833849359,120.9299343,104.3036938,123.3077596,390.8784322,0,0.467211585,62.14655378,-0.467211585,117.8534462,0.942982106,0,472.895061,123.3077596,553.5975234,7,9,17% -7/2/2018 18:00,32.05893749,107.965376,858.9719957,873.8590504,118.3742271,692.1441271,570.864026,121.2801011,114.8048074,6.475293735,211.8371249,0,211.8371249,3.569419701,208.2677052,0.559534014,1.884351289,-0.493764511,0.493764511,0.614592394,0.137809181,4.323586654,139.061409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3547477,2.586032423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.132423813,133.6711158,113.4871715,136.2571482,570.864026,0,0.653267853,49.21156045,-0.653267853,130.7884395,0.973461717,0,669.2014463,136.2571482,758.3790246,7,10,13% -7/2/2018 19:00,21.57479585,128.2926436,955.5726331,893.8221296,124.3731726,849.8164929,721.9901201,127.8263728,120.6228626,7.203510144,235.4399582,0,235.4399582,3.750310044,231.6896481,0.376551223,2.239129038,-0.207824796,0.207824796,0.565693823,0.130155645,4.482176896,144.1622164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9472837,2.71708686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.247321903,138.5742058,119.1946056,141.2912927,721.9901201,0,0.807755924,36.122745,-0.807755924,143.877255,0.988100114,0,832.5931252,141.2912927,925.0654505,7,11,11% -7/2/2018 20:00,15.12014564,168.3617769,997.154952,901.4765404,126.8866497,960.0577612,829.4802368,130.5775243,123.0605491,7.516975228,245.5978634,0,245.5978634,3.826100651,241.7717628,0.263896325,2.938467341,0.039293005,-0.039293005,0.52343419,0.127248678,4.390489028,141.2132194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2904806,2.771996897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.180894355,135.7395178,121.471375,138.5115147,829.4802368,0,0.920135133,23.05415448,-0.920135133,156.9458455,0.995660156,0,947.3517966,138.5115147,1038.004813,7,12,10% -7/2/2018 21:00,17.93490704,217.3828424,980.7571542,898.5190401,125.8998745,1012.507992,883.0111019,129.4968905,122.1035288,7.393361702,241.5922726,0,241.5922726,3.796345738,237.7959268,0.313023179,3.794046337,0.272619393,-0.272619393,0.483533028,0.12837008,4.065106366,130.7477944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3705563,2.750439564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.945155724,125.6797532,120.315712,128.4301928,883.0111019,0,0.982740557,10.66050171,-0.982740557,169.3394983,0.999121872,0,1002.551417,128.4301928,1086.60641,7,13,8% -7/2/2018 22:00,27.25646643,244.6315045,907.5373682,884.305396,121.4204151,1001.215686,876.615144,124.6005416,117.7591416,6.841400027,223.7042155,0,223.7042155,3.66127351,220.042942,0.475715082,4.269625208,0.512916858,-0.512916858,0.442439741,0.133791092,3.537252407,113.7701966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.1945661,2.652580194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562727328,109.3602405,115.7572934,112.0128207,876.615144,0,0.991303624,7.561744739,-0.991303624,172.4382553,0.999561367,0,991.9879248,112.0128207,1065.298076,7,14,7% -7/2/2018 23:00,38.52702465,259.513123,782.7247344,855.5101145,113.4468107,924.5923938,808.6659134,115.9264805,110.0259708,5.900509673,193.2015139,0,193.2015139,3.420839917,189.7806739,0.672423431,4.529358449,0.785256699,-0.785256699,0.395866885,0.144938323,2.852477054,91.74546739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7611482,2.478386875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066609916,88.18923296,107.8277581,90.66761984,808.6659134,0,0.945244129,19.04824,-0.945244129,160.95176,0.997103612,0,914.1514614,90.66761984,973.4916052,7,15,6% -7/2/2018 0:00,50.3023879,269.8656784,615.4250362,804.1319391,101.7972182,785.0412177,681.6742273,103.3669904,98.72765648,4.639333879,152.2864869,0,152.2864869,3.06956172,149.2169252,0.87794229,4.710044626,1.132923983,-1.132923983,0.336412278,0.165409615,2.069959747,66.57702089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.9007787,2.223887017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49967879,63.99636486,96.40045749,66.22025188,681.6742273,0,0.847714404,32.03606124,-0.847714404,147.9639388,0.991017871,0,771.9517992,66.22025188,815.2916296,7,16,6% -7/2/2018 1:00,62.09176404,278.5174558,418.5513912,711.3714095,85.58913292,587.9660653,501.8025433,86.16352196,83.00830478,3.155217183,104.0634588,0,104.0634588,2.580828148,101.4826306,1.083705721,4.861046627,1.658945374,-1.658945374,0.246457322,0.204488946,1.263817416,40.64871246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.79073993,1.869801208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.915631416,39.07308856,80.70637134,40.94288977,501.8025433,0,0.705401618,45.1380007,-0.705401618,134.8619993,0.979118393,0,572.0304713,40.94288977,598.8267738,7,17,5% -7/2/2018 2:00,73.61649283,286.6976078,210.3584219,527.9380087,61.44542774,340.0096466,278.8312546,61.17839202,59.59262138,1.58577064,52.8566412,0,52.8566412,1.852806356,51.00383484,1.284850184,5.003817214,2.727182824,-2.727182824,0.063777959,0.292098729,0.534796752,17.20090191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.28269439,1.342351898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.387458427,16.53416118,57.67015282,17.87651308,278.8312546,0,0.528151506,58.11935556,-0.528151506,121.8806444,0.955330195,0,324.0460697,17.87651308,335.74589,7,18,4% -7/2/2018 3:00,84.57647233,295.1221815,31.4357137,140.1130499,18.192632,63.98735515,46.10632244,17.88103271,17.64405702,0.236975688,8.170527715,0,8.170527715,0.548574978,7.621952737,1.476137912,5.150853762,7.431865385,-7.431865385,0,0.578724955,0.137143745,4.411014255,0.425541618,1,0.133752375,0,0.947317631,0.986079594,0.724496596,1,17.10740889,0.397440704,0.060572139,0.312029739,0.842632077,0.567128673,0.961238037,0.922476074,0.093856631,4.240034683,17.20126552,4.637475387,26.48616341,0,0.329065155,70.78795599,-0.329065155,109.212044,0.898054407,0,40.9872813,4.637475387,44.02241619,7,19,7% -7/2/2018 4:00,95.01464776,304.3420023,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658318441,5.311769992,-6.643538042,6.643538042,0.333734394,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116477111,83.31117011,-0.116477111,96.68882989,0.620731112,0,0,0,0,7,20,0% -7/2/2018 5:00,104.1463722,314.8523409,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817697098,5.495210007,-1.686030386,1.686030386,0.818481867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088726025,95.09032051,0.088726025,84.90967949,0,0.486467488,0,0,0,7,21,0% -7/2/2018 6:00,111.6194112,327.0611931,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948126234,5.708294675,-0.564973511,0.564973511,0.62676985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275025482,105.9635327,0.275025482,74.03646729,0,0.868198664,0,0,0,7,22,0% -7/2/2018 7:00,116.8129923,341.0988408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038771325,5.953297846,0.037943049,-0.037943049,0.523665046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.429730276,115.450444,0.429730276,64.54955598,0,0.933647947,0,0,0,7,23,0% -7/3/2018 8:00,119.1233663,356.5205519,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079094957,6.222457481,0.510402802,-0.510402802,0.44286967,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.542301393,122.8404425,0.542301393,57.15955752,0,0.957800347,0,0,0,7,0,0% -7/3/2018 9:00,118.2193766,12.23253499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063317361,0.213498011,0.993898795,-0.993898795,0.360186985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605069608,127.233851,0.605069608,52.76614899,0,0.96736488,0,0,0,7,1,0% -7/3/2018 10:00,114.2358709,26.98070685,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993792072,0.470902169,1.624104498,-1.624104498,0.252415463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613757935,127.861725,0.613757935,52.13827504,0,0.968534658,0,0,0,7,2,0% -7/3/2018 11:00,107.6904848,40.01148575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879553533,0.698332165,2.715487125,-2.715487125,0.065778042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.567773109,124.5950834,0.567773109,55.40491657,0,0.961936654,0,0,0,7,3,0% -7/3/2018 12:00,99.22167125,51.23569104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731744853,0.894231503,5.832049702,-5.832049702,0,#DIV/0!,0,0,0.318422948,1,0.169814928,0,0.942854231,0.981616194,0.724496596,1,0,0,0.04733159,0.312029739,0.874559938,0.599056534,0.961238037,0.922476074,0,0,0,0,0,0,-0.470246306,118.050286,0.470246306,61.94971403,0,0.943672743,0,0,0,7,4,0% -7/3/2018 13:00,88.99098085,60.97224091,0.654833396,3.822658095,0.587517167,0.574737767,0,0.574737767,0.569801356,0.004936411,1.404261203,1.227773455,0.176487749,0.01771581,0.158771938,1.55318562,1.064166356,-56.07443072,56.07443072,0,0.897200983,0.004428953,0.142450339,1,0.890344217,0,0.01783155,0.961238037,1,0.675173977,0.950677381,0.547714737,0.012496458,0.115824807,0.256013601,0.724496596,0.448993192,0.969779821,0.931017858,0.003208761,0.137539983,0.550923498,0.150036441,0,0.134632459,-0.321183173,108.7344932,0.321183173,71.26550676,0,0.894325593,0.550923498,0.270441695,0.727922179,7,5,32% -7/3/2018 14:00,78.55886649,69.69099532,122.6257717,387.7387573,45.71350826,45.25948219,0,45.25948219,44.33507732,0.924404865,88.81397833,57.70350931,31.11046901,1.378430939,29.73203807,1.371110877,1.216337327,-4.94106485,4.94106485,0.624874456,0.372788751,0.706908151,22.73659612,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.61656269,0.998668523,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.512152549,21.85528102,43.12871524,22.85394954,0,57.70350931,-0.148820587,98.55858402,0.148820587,81.44141598,0,0.714024977,43.12871524,64.05569646,85.05188746,7,6,97% -7/3/2018 15:00,67.23672193,77.91428796,326.3365257,646.0351633,76.36958483,109.6125815,33.08575886,76.52682265,74.06676007,2.460062576,81.4268936,0,81.4268936,2.302824756,79.12406884,1.173502176,1.359860859,-2.360481095,2.360481095,0.933819731,0.234020953,2.335355363,75.1130562,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.19578705,1.668388697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69195701,72.20152668,72.88774406,73.86991538,33.08575886,0,0.051213557,87.06439509,-0.051213557,92.93560491,0,0,72.88774406,73.86991538,121.2341263,7,7,66% -7/3/2018 16:00,55.53502644,86.26292705,530.9326909,769.6221478,95.40173135,297.4536666,200.9262546,96.52741204,92.52501715,4.002394891,131.607492,0,131.607492,2.876714195,128.7307778,0.969269061,1.505572099,-1.398620227,1.398620227,0.769331835,0.179687054,3.245061402,104.3723295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93856585,2.084169642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351035939,100.3266531,91.28960178,102.4108228,200.9262546,0,0.2610713,74.86636122,-0.2610713,105.1336388,0.858481438,0,263.7810617,102.4108228,330.806897,7,8,25% -7/3/2018 17:00,43.71651763,95.67291147,713.0913447,835.9550968,108.8897986,500.6594242,389.677471,110.9819532,105.6063694,5.375583767,176.1806816,0,176.1806816,3.283429188,172.8972524,0.76299717,1.66980731,-0.86178098,0.86178098,0.677526917,0.152701052,3.906807079,125.6563452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5128592,2.37883327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830468429,120.7856586,104.3433276,123.1644919,389.677471,0,0.466146414,62.21555872,-0.466146414,117.7844413,0.942737564,0,471.7069174,123.1644919,552.315614,7,9,17% -7/3/2018 18:00,32.13995737,108.0429651,857.9638233,873.3573197,118.4475308,691.1135755,569.7699811,121.3435944,114.8759007,6.467693706,211.5948922,0,211.5948922,3.571630077,208.0232621,0.560948078,1.885705474,-0.494794153,0.494794153,0.614768473,0.138056556,4.320110311,138.9495979,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4230853,2.587633833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.129905214,133.5636387,113.5529905,136.1512725,569.7699811,0,0.652390457,49.27792449,-0.652390457,130.7220755,0.973358781,0,668.1436047,136.1512725,757.2518895,7,10,13% -7/3/2018 19:00,21.66294534,128.3554656,954.7775283,893.411945,124.465927,848.9688079,721.0584715,127.9103364,120.7128201,7.197516308,235.2499727,0,235.2499727,3.75310693,231.4968658,0.378089722,2.240225488,-0.20838977,0.20838977,0.565790439,0.130361182,4.47969464,144.0823785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0337542,2.719113195,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.245523518,138.4974626,119.2792777,141.2165758,721.0584715,0,0.807083984,36.18800069,-0.807083984,143.8119993,0.988048579,0,831.7200756,141.2165758,924.1435001,7,11,11% -7/3/2018 20:00,15.20730373,168.2570023,996.5569765,901.1178946,126.9934694,959.4094279,828.7328128,130.6766152,123.1641477,7.512467437,245.4560984,0,245.4560984,3.829321658,241.6267767,0.265417521,2.936638679,0.039038602,-0.039038602,0.523477695,0.127432222,4.388798436,141.1588441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3900636,2.774330506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.179669527,135.6872502,121.5697331,138.4615807,828.7328128,0,0.919671907,23.12183594,-0.919671907,156.8781641,0.995632785,0,946.6832918,138.4615807,1037.303627,7,12,10% -7/3/2018 21:00,17.98258898,217.1292115,980.3253574,898.1854367,126.0159413,1012.050649,882.4444466,129.6062024,122.2160957,7.390106635,241.4910783,0,241.4910783,3.799845579,237.6912327,0.313855386,3.789619643,0.272616831,-0.272616831,0.483533466,0.128545019,4.063987143,130.7117964,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4787599,2.752975187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.944344851,125.6451505,120.4231048,128.3981257,882.4444466,0,0.982474677,10.74253946,-0.982474677,169.2574605,0.999108103,0,1002.080502,128.3981257,1086.114507,7,13,8% -7/3/2018 22:00,27.27558934,244.4354752,907.2287376,883.9750805,121.540585,1000.919596,876.2048342,124.7147614,117.875688,6.839073439,223.633008,0,223.633008,3.664897076,219.968111,0.476048839,4.26620385,0.513169367,-0.513169367,0.442396559,0.133969064,3.536472363,113.7451078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3065949,2.655205456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562162189,109.3361241,115.8687571,111.9913295,876.2048342,0,0.991209881,7.602451365,-0.991209881,172.3975486,0.999556596,0,991.685079,111.9913295,1064.981164,7,14,7% -7/3/2018 23:00,38.53569256,259.3660214,782.4877822,855.1593035,113.5648941,924.4086615,808.3694446,116.0392169,110.1404935,5.898723426,193.1476227,0,193.1476227,3.424400566,189.7232221,0.672574715,4.526791041,0.785835883,-0.785835883,0.395767839,0.145133121,2.851808261,91.72395671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8712317,2.480966553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.066125377,88.16855608,107.9373571,90.64952263,808.3694446,0,0.945285213,19.04102609,-0.945285213,160.9589739,0.997105911,0,913.9673088,90.64952263,973.2956083,7,15,6% -7/3/2018 0:00,50.30870965,269.7460439,615.2043972,803.7250318,101.9047209,784.9026263,681.4330382,103.4695881,98.83191753,4.63767061,152.236232,0,152.236232,3.072803322,149.1634287,0.878052626,4.70795661,1.134030805,-1.134030805,0.336223,0.165643681,2.06920557,66.55276397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00099839,2.226235547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.499132391,63.97304818,96.50013078,66.19928373,681.4330382,0,0.847843493,32.02211524,-0.847843493,147.9778848,0.991026852,0,771.8185693,66.19928373,815.1446765,7,16,6% -7/3/2018 1:00,62.09991357,278.4131969,418.2946441,710.8371494,85.67180115,587.7840437,501.5422818,86.24176196,83.08848025,3.153281716,104.0037002,0,104.0037002,2.5833209,101.4203793,1.083847957,4.859226967,1.661154043,-1.661154043,0.246079618,0.204812092,1.262862929,40.61801287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.86780764,1.871607198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914939893,39.04357895,80.78274753,40.91518615,501.5422818,0,0.705565659,45.12473908,-0.705565659,134.8752609,0.979134873,0,571.8602859,40.91518615,598.638457,7,17,5% -7/3/2018 2:00,73.62925263,286.601888,210.0336862,527.0955122,61.47095286,339.6627246,278.4620251,61.20069947,59.61737683,1.583322645,52.77867494,0,52.77867494,1.853576032,50.92509891,1.285072884,5.002146588,2.732823569,-2.732823569,0.062813335,0.292671876,0.533740461,17.16692795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30649027,1.342909526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.386693147,16.50150412,57.69318341,17.84441365,278.4620251,0,0.528295193,58.10965993,-0.528295193,121.8903401,0.955355944,0,323.7235342,17.84441365,335.402346,7,18,4% -7/3/2018 3:00,84.59586394,295.0309616,31.16603443,138.8404633,18.09001453,63.47743796,45.69796138,17.77947658,17.54453385,0.234942732,8.102046557,0,8.102046557,0.545480683,7.556565874,1.476476359,5.149261676,7.470608941,-7.470608941,0,0.580440048,0.136370171,4.386133461,0.427719771,1,0.133066898,0,0.947399614,0.986161577,0.724496596,1,17.01086981,0.395198898,0.060829664,0.312029739,0.842024885,0.566521481,0.961238037,0.922476074,0.093326254,4.216118318,17.10419607,4.611317216,26.15203979,0,0.329140081,70.78340976,-0.329140081,109.2165902,0.898088997,0,40.59105525,4.611317216,43.60907014,7,19,7% -7/3/2018 4:00,95.043871,304.2531564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658828483,5.310219339,-6.619115922,6.619115922,0.337910822,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11641977,83.31447799,-0.11641977,96.68552201,0.620519682,0,0,0,0,7,20,0% -7/3/2018 5:00,104.1873382,314.7657365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81841209,5.493698474,-1.686368468,1.686368468,0.818539682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088949359,95.10316736,0.088949359,84.89683264,0,0.487882401,0,0,0,7,21,0% -7/3/2018 6:00,111.6741312,326.9794159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949081278,5.706867393,-0.566901553,0.566901553,0.627099565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275444562,105.9885089,0.275444562,74.01149111,0,0.868475269,0,0,0,7,22,0% -7/3/2018 7:00,116.8822285,341.0277702,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039979724,5.95205743,0.035382977,-0.035382977,0.524102844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430361486,115.4905032,0.430361486,64.50949684,0,0.9338186,0,0,0,7,23,0% -7/4/2018 8:00,119.2054901,356.4679108,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080528288,6.221538722,0.507110591,-0.507110591,0.443432671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.543146598,122.8980994,0.543146598,57.10190058,0,0.957943822,0,0,0,7,0,0% -7/4/2018 9:00,118.310207,12.20358447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064902651,0.21299273,0.989334694,-0.989334694,0.360967493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606116013,127.3091922,0.606116013,52.69080782,0,0.967507542,0,0,0,7,1,0% -7/4/2018 10:00,114.3302984,26.97500481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995440142,0.47080265,1.61682963,-1.61682963,0.253659539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614978953,127.950391,0.614978953,52.049609,0,0.968696405,0,0,0,7,2,0% -7/4/2018 11:00,107.7844706,40.02449867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881193894,0.698559283,2.700533493,-2.700533493,0.068335263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56913019,124.6895935,0.56913019,55.31040648,0,0.962146639,0,0,0,7,3,0% -7/4/2018 12:00,99.31296789,51.26241035,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73333828,0.894697843,5.774786843,-5.774786843,0,#DIV/0!,0,0,0.313843291,1,0.17146616,0,0.942642846,0.981404809,0.724496596,1,0,0,0.046739202,0.312029739,0.876020881,0.600517477,0.961238037,0.922476074,0,0,0,0,0,0,-0.471691589,118.1441574,0.471691589,61.85584261,0,0.943998534,0,0,0,7,4,0% -7/4/2018 13:00,89.06853892,61.00917951,0.549825762,3.263529508,0.496772695,0.485937985,0,0.485937985,0.481793166,0.004144819,1.200770496,1.052479345,0.148291151,0.01497953,0.133311622,1.554539264,1.064811056,-60.75060389,60.75060389,0,0.903509311,0.003744882,0.120448291,1,0.899184593,0,0.016459255,0.961238037,1,0.678881441,0.954384845,0.463117917,0.010585381,0.115824807,0.260220687,0.724496596,0.448993192,0.969161069,0.930399106,0.002713155,0.116263107,0.465831071,0.126848488,0,0.106106133,-0.322497266,108.8140164,0.322497266,71.18598362,0,0.894959926,0.465831071,0.221809225,0.611000773,7,5,31% -7/4/2018 14:00,78.64272315,69.73651075,121.1153743,384.3157297,45.43348544,44.97651707,0,44.97651707,44.06349822,0.913018851,88.48656454,57.75075261,30.73581193,1.369987218,29.36582471,1.372574452,1.217131721,-4.978551554,4.978551554,0.618463852,0.375125666,0.695344067,22.36465542,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.35551053,0.992551076,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.503774409,21.49775747,42.85928494,22.49030855,0,57.75075261,-0.150269032,98.64251766,0.150269032,81.35748234,0,0.717263445,42.85928494,63.9128123,84.68894233,7,6,98% -7/4/2018 15:00,67.31826638,77.96834027,324.7524576,644.3352946,76.28909417,108.5471808,32.11036314,76.4368177,73.9886965,2.448121202,81.04039087,0,81.04039087,2.300397666,78.7399932,1.174925395,1.36080425,-2.3696172,2.3696172,0.935382097,0.234914601,2.327090461,74.84722855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12074937,1.666630278,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.685969117,71.94600304,72.80671849,73.61263332,32.11036314,0,0.049834866,87.1434893,-0.049834866,92.8565107,0,0,72.80671849,73.61263332,120.9847147,7,7,66% -7/4/2018 16:00,55.61511217,86.32683755,529.4820109,768.6240397,95.40208083,296.2182211,199.701406,96.51681515,92.5253561,3.991459052,131.2557684,0,131.2557684,2.876724733,128.3790437,0.970666821,1.506687548,-1.402361442,1.402361442,0.76997162,0.180180023,3.238742276,104.1690847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93889165,2.084177276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.346457754,100.1312865,91.28534941,102.2154638,199.701406,0,0.259816758,74.94081052,-0.259816758,105.0591895,0.857556678,0,262.5406237,102.2154638,329.4386004,7,8,25% -7/4/2018 17:00,43.79698682,95.74895997,711.8338492,835.2779421,108.9330481,499.4665082,388.4520892,111.014419,105.6483148,5.366104235,175.8770914,0,175.8770914,3.28473332,172.5923581,0.764401623,1.671134607,-0.863655196,0.863655196,0.677847427,0.153031565,3.901946269,125.5000049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5531787,2.379778108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826946789,120.6353783,104.3801255,123.0151564,388.4520892,0,0.465057282,62.28607071,-0.465057282,117.7139293,0.942486363,0,470.4909221,123.0151564,551.0018816,7,9,17% -7/4/2018 18:00,32.22400169,108.1315135,856.9207929,872.8471107,118.5184401,690.0607081,568.6562053,121.4045028,114.9446719,6.459830902,211.3441356,0,211.3441356,3.573768257,207.7703673,0.562414928,1.887250935,-0.495805944,0.495805944,0.6149415,0.138307345,4.316445564,138.831727,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4891907,2.589182936,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127250117,133.4503367,113.6164409,136.0395197,568.6562053,0,0.651495776,49.3455279,-0.651495776,130.6544721,0.973253532,0,667.0631009,136.0395197,756.0982457,7,10,13% -7/4/2018 19:00,21.75531391,128.4319793,953.9478854,892.9948376,124.5564431,848.1020473,720.1101784,127.9918689,120.8006068,7.19126211,235.0515456,0,235.0515456,3.755836324,231.2957093,0.379701858,2.241560905,-0.20891577,0.20891577,0.56588039,0.130569442,4.47701476,143.9961843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1181381,2.721090632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.243581953,138.4146095,119.3617201,141.1357001,720.1101784,0,0.806399038,36.25441494,-0.806399038,143.7455851,0.987995958,0,830.8276655,141.1357001,923.1981585,7,11,11% -7/4/2018 20:00,15.30085154,168.1618507,995.9218867,900.7524585,127.0979533,958.7423584,827.9691975,130.7731609,123.2654811,7.507679861,245.3052641,0,245.3052641,3.832472233,241.4727918,0.267050238,2.934977971,0.038840832,-0.038840832,0.523511516,0.127618396,4.386889088,141.0974329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.487469,2.776613087,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178286211,135.6282194,121.6657552,138.4048325,827.9691975,0,0.919197266,23.19099154,-0.919197266,156.8090085,0.995604712,0,945.9957897,138.4048325,1036.578984,7,12,10% -7/4/2018 21:00,18.03684647,216.8688708,979.8511325,897.8439948,126.1293526,1011.571554,881.858935,129.7126189,122.3260872,7.386531728,241.3795167,0,241.3795167,3.803265348,237.5762514,0.314802358,3.78507584,0.272690386,-0.272690386,0.483520887,0.128722975,4.062619152,130.6677971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5844879,2.755452798,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.943353746,125.6028568,120.5278417,128.3583096,881.858935,0,0.982196172,10.82781375,-0.982196172,169.1721862,0.999093673,0,1001.587524,128.3583096,1085.59547,7,13,8% -7/4/2018 22:00,27.30004325,244.2300516,906.870015,883.6344117,121.6575553,1000.595202,875.7697021,124.8255004,117.9891311,6.836369237,223.5495587,0,223.5495587,3.668424161,219.8811345,0.476475641,4.262618533,0.513524462,-0.513524462,0.442335835,0.13415104,3.535408266,113.7108827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4156408,2.657760817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.561391254,109.3032257,115.977032,111.9609865,875.7697021,0,0.991099589,7.650068241,-0.991099589,172.3499318,0.999550983,0,991.3534987,111.9609865,1064.629725,7,14,7% -7/4/2018 23:00,38.54904324,259.2109662,782.1913261,854.7931478,113.6789589,924.1864617,808.0388543,116.1476074,110.2511188,5.896488615,193.0791829,0,193.0791829,3.427840041,189.6513429,0.672807728,4.524084818,0.786559756,-0.786559756,0.395644049,0.145333955,2.850819515,91.69215522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.977569,2.483458441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065409034,88.13798728,108.0429781,90.62144572,808.0388543,0,0.945303383,19.03783485,-0.945303383,160.9621651,0.997106928,0,913.7441177,90.62144572,973.0540415,7,15,6% -7/4/2018 0:00,50.31950916,269.6197848,614.9139458,803.2926371,102.0069373,784.7115398,681.1450069,103.5665329,98.93105182,4.635481064,152.1688909,0,152.1688909,3.075885526,149.0930054,0.878241113,4.705752973,1.135360474,-1.135360474,0.335995614,0.165888151,2.068101675,66.51725891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.09629003,2.228468593,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.498332623,63.93891937,96.59462266,66.16738796,681.1450069,0,0.847941305,32.0115446,-0.847941305,147.9884554,0.991033654,0,771.632248,66.16738796,814.9374801,7,16,6% -7/4/2018 1:00,62.11258263,278.3032549,417.9582527,710.2544362,85.74688212,587.5305442,501.2185011,86.31204311,83.16129725,3.150745855,103.9244022,0,103.9244022,2.585584868,101.3388173,1.084069074,4.857308116,1.663764907,-1.663764907,0.245633134,0.205156571,1.261547466,40.57570306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.93780211,1.873247435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.913986845,39.00290915,80.85178896,40.87615659,501.2185011,0,0.70568866,45.11479329,-0.70568866,134.8852067,0.979147225,0,571.6184933,40.87615659,598.3711203,7,17,5% -7/4/2018 2:00,73.64672338,286.5011616,209.6237498,526.1434225,61.48329982,339.2171645,278.0075806,61.20958385,59.62935148,1.580232371,52.67965341,0,52.67965341,1.853948339,50.82570507,1.285377806,5.00038858,2.739476263,-2.739476263,0.061675657,0.29330312,0.532363084,17.12262678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31800076,1.34317926,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385695242,16.45892015,57.703696,17.80209942,278.0075806,0,0.528387449,58.10343416,-0.528387449,121.8965658,0.955372468,0,323.3044845,17.80209942,334.9556025,7,18,4% -7/4/2018 3:00,84.62018183,294.9352752,30.83891868,137.3504608,17.9612648,62.86168589,45.20954269,17.6521432,17.4196664,0.232476795,8.018851279,0,8.018851279,0.541598404,7.477252875,1.476900786,5.147591632,7.51711434,-7.51711434,0,0.582422004,0.135399601,4.3549166,0.43031258,1,0.132253261,0,0.947496786,0.986258749,0.724496596,1,16.88974253,0.3923862,0.061135633,0.312029739,0.841304158,0.565800754,0.961238037,0.922476074,0.092661168,4.186111483,16.98240369,4.578497683,25.75530775,0,0.329154649,70.78252584,-0.329154649,109.2174742,0.89809572,0,40.11313535,4.578497683,43.10967051,7,19,7% -7/4/2018 4:00,95.07853933,304.16037,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659433559,5.30859991,-6.588476649,6.588476649,0.343150446,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11629024,83.3219503,-0.11629024,96.6780497,0.620041303,0,0,0,0,7,20,0% -7/4/2018 5:00,104.2342016,314.675844,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81923001,5.492129554,-1.686174933,1.686174933,0.818506586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089253391,95.1206567,0.089253391,84.8793433,0,0.489797197,0,0,0,7,21,0% -7/4/2018 6:00,111.7351841,326.8952972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950146853,5.705399245,-0.568733623,0.568733623,0.627412867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.275950884,106.0186886,0.275950884,73.98131138,0,0.868808335,0,0,0,7,22,0% -7/4/2018 7:00,116.958098,340.9557347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041303897,5.950800174,0.032795504,-0.032795504,0.524545328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431084064,115.5363772,0.431084064,64.46362277,0,0.934013342,0,0,0,7,23,0% -7/5/2018 8:00,119.2942639,356.4160558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082077685,6.22063368,0.503723736,-0.503723736,0.444011857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544084596,122.9621303,0.544084596,57.03786968,0,0.958102526,0,0,0,7,0,0% -7/5/2018 9:00,118.4073397,12.17719372,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066597936,0.212532124,0.984609546,-0.984609546,0.361775541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607253838,127.3912014,0.607253838,52.60879863,0,0.96766211,0,0,0,7,1,0% -7/5/2018 10:00,114.4303885,26.97325157,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997187044,0.47077205,1.609288891,-1.609288891,0.254949081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616287315,128.0455186,0.616287315,51.95448143,0,0.96886901,0,0,0,7,2,0% -7/5/2018 11:00,107.8833583,40.04234053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88291981,0.698870682,2.685075712,-2.685075712,0.0709787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570568116,124.7898517,0.570568116,55.21014831,0,0.962368044,0,0,0,7,3,0% -7/5/2018 12:00,99.40843125,51.2944735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.735004429,0.895257451,5.716226221,-5.716226221,0,#DIV/0!,0,0,0.309095752,1,0.173188023,0,0.94242177,0.981183733,0.724496596,1,0,0,0.046122713,0.312029739,0.877544211,0.602040806,0.961238037,0.922476074,0,0,0,0,0,0,-0.473209241,118.2428178,0.473209241,61.75718219,0,0.944338496,0,0,0,7,4,0% -7/5/2018 13:00,89.14882669,61.0518205,0.453592755,2.751864578,0.412713173,0.403687722,0,0.403687722,0.400268348,0.003419374,1.013645059,0.891221419,0.12242364,0.012444825,0.109978815,1.55594055,1.065555282,-66.48974078,66.48974078,0,0.909876024,0.003111206,0.100067087,1,0.90826167,0,0.01503878,0.961238037,1,0.682734615,0.958238019,0.384753161,0.008811046,0.115824807,0.264593849,0.724496596,0.448993192,0.968513926,0.929751963,0.002254058,0.096560533,0.387007219,0.105371579,0,0.081759165,-0.323860929,108.896579,0.323860929,71.10342099,0,0.895612745,0.387007219,0.178596129,0.503894814,7,5,30% -7/5/2018 14:00,78.72958548,69.7881024,119.5571832,380.7723679,45.13912156,44.67928305,0,44.67928305,43.7780105,0.901272548,88.13854877,57.78941444,30.34913432,1.361111061,28.98802326,1.374090485,1.218032166,-5.017960423,5.017960423,0.611724539,0.377552568,0.68345204,21.98216697,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.08108887,0.98612033,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.495158677,21.13009502,42.57624755,22.11621535,0,57.78941444,-0.151768929,98.72945251,0.151768929,81.27054749,0,0.720551803,42.57624755,63.75648212,84.30358997,7,6,98% -7/5/2018 15:00,67.40248366,78.0289957,323.1198256,642.5878043,76.20205424,107.450945,31.11085008,76.34009488,73.90428115,2.435813732,80.64191576,0,80.64191576,2.297773091,78.34414267,1.176395264,1.361862887,-2.379087409,2.379087409,0.937001598,0.235832184,2.318550367,74.57254978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.03960612,1.664728782,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.679781849,71.68197135,72.71938797,73.34670013,31.11085008,0,0.04841494,87.22494342,-0.04841494,92.77505658,0,0,72.71938797,73.34670013,120.7233363,7,7,66% -7/5/2018 16:00,55.69768956,86.39817618,527.9888354,767.6038732,95.39848734,294.9512819,198.4492081,96.50207383,92.52187096,3.980202864,130.8936224,0,130.8936224,2.876616376,128.017006,0.972108069,1.507932642,-1.40619306,1.40619306,0.770626866,0.180682774,3.232205887,103.9588519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.93554161,2.084098772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.341722162,99.92920276,91.27726377,102.0133015,198.4492081,0,0.258530754,75.01709987,-0.258530754,104.9829001,0.856599411,0,261.2687386,102.0133015,328.0344042,7,8,26% -7/5/2018 17:00,43.87999565,95.83376577,710.5390064,834.5883413,108.9734358,498.2469891,387.2031614,111.0438278,105.6874846,5.356343163,175.5643596,0,175.5643596,3.285951157,172.2784084,0.7658504,1.672614747,-0.865544074,0.865544074,0.678170444,0.153367281,3.89689267,125.3374638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5908302,2.380660427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.823285474,120.4791376,104.4141157,122.859798,387.2031614,0,0.463945088,62.35802871,-0.463945088,117.6419713,0.942228625,0,469.2480181,122.859798,549.6572987,7,9,17% -7/5/2018 18:00,32.31102143,108.2309439,855.8432159,872.3284299,118.5869668,688.9861539,567.523314,121.4628399,115.0111322,6.451707671,211.0849309,0,211.0849309,3.575834588,207.5090963,0.563933709,1.888986324,-0.496798412,0.496798412,0.615111222,0.138561555,4.312592439,138.7077973,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5530749,2.590679987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124458542,133.3312108,113.6775335,135.9218907,567.523314,0,0.650584453,49.4143184,-0.650584453,130.5856816,0.973146027,0,665.9605917,135.9218907,754.9187507,7,10,13% -7/5/2018 19:00,21.85185249,128.5220484,953.0836955,892.5707615,124.6447143,847.2165142,719.1455504,128.0709638,120.8862163,7.184747481,234.8446744,0,234.8446744,3.758498027,231.0861764,0.381386774,2.243132907,-0.209401626,0.209401626,0.565963477,0.13078045,4.474136017,143.903594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2004292,2.723019026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.241496314,138.3256082,119.4419256,141.0486273,719.1455504,0,0.805701443,36.32194808,-0.805701443,143.6780519,0.987942273,0,829.9162154,141.0486273,922.229721,7,11,11% -7/5/2018 20:00,15.40073352,168.0764855,995.2493702,900.3801391,127.2000772,958.0565091,827.1893734,130.8671357,123.3645255,7.502610148,245.1452841,0,245.1452841,3.835551646,241.3097324,0.268793507,2.933488067,0.03870068,-0.03870068,0.523535483,0.127807242,4.384758696,141.0289122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5826744,2.778844111,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.176742749,135.5623547,121.7594171,138.3411988,827.1893734,0,0.918711262,23.26160155,-0.918711262,156.7383985,0.995575937,0,945.2892523,138.3411988,1035.8308,7,12,10% -7/5/2018 21:00,18.09771344,216.6023835,979.333903,897.4945708,126.2400675,1011.070322,881.2542256,129.8160963,122.4334637,7.382632633,241.2574469,0,241.2574469,3.806603812,237.4508431,0.315864687,3.780424759,0.27284095,-0.27284095,0.483495139,0.12890401,4.060999335,130.6156982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6877023,2.757871504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942180194,125.5527773,120.6298825,128.3106488,881.2542256,0,0.981904798,10.91632393,-0.981904798,169.0836761,0.999078566,0,1001.072091,128.3106488,1085.048844,7,13,8% -7/5/2018 22:00,27.32989869,244.015513,906.4604176,883.2831827,121.7712697,1000.241808,875.3091098,124.9326981,118.0994166,6.833281519,223.453676,0,223.453676,3.671853068,219.7818229,0.476996716,4.258874128,0.513983037,-0.513983037,0.442257414,0.134337106,3.534056618,113.6674091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5216514,2.660245049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.560411989,109.2614371,116.0820633,111.9216822,875.3091098,0,0.990972235,7.704687353,-0.990972235,172.2953126,0.9995445,0,990.9924694,111.9216822,1064.242972,7,14,7% -7/5/2018 23:00,38.56714497,259.0481135,781.8344508,854.4113488,113.7889337,923.9248323,807.6732565,116.2515759,110.3577775,5.893798338,192.9959705,0,192.9959705,3.431156188,189.5648144,0.673123663,4.521242501,0.787429351,-0.787429351,0.39549534,0.145540956,2.849507253,91.64994839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0800934,2.485860978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.064458305,88.09741647,108.1445517,90.58327744,807.6732565,0,0.945297903,19.03879735,-0.945297903,160.9612027,0.997106621,0,913.4809036,90.58327744,972.765847,7,15,6% -7/5/2018 0:00,50.33484651,269.4870096,614.5527205,802.8343014,102.1037777,784.4667935,680.8090634,103.6577301,99.02497212,4.632757995,152.0842278,0,152.0842278,3.078805622,149.0054221,0.8785088,4.703435609,1.136914505,-1.136914505,0.335729859,0.166143236,2.066644848,66.47040236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.1865698,2.230584192,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497277157,63.89387907,96.68384695,66.12446327,680.8090634,0,0.848006945,32.00444905,-0.848006945,147.995551,0.991038219,0,771.3916484,66.12446327,814.6687871,7,16,6% -7/5/2018 1:00,62.12982222,278.1877168,417.5413111,709.6225053,85.81425276,587.2042582,500.830019,86.37423919,83.22663642,3.147602773,103.8253413,0,103.8253413,2.587616342,101.237725,1.084369961,4.855291596,1.66678116,-1.66678116,0.245117324,0.205522784,1.259868656,40.52170675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.0006086,1.874719231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.912770553,38.95100584,80.91337916,40.82572508,500.830019,0,0.705769638,45.10824444,-0.705769638,134.8917556,0.979155354,0,571.3037738,40.82572508,598.0233944,7,17,5% -7/5/2018 2:00,73.66894641,286.3955047,209.1279226,525.0802365,61.48225435,338.671557,277.4667249,61.20483215,59.62833754,1.576494616,52.55940284,0,52.55940284,1.853916814,50.70548602,1.285765671,4.998544521,2.747153347,-2.747153347,0.060362799,0.293993521,0.530663929,17.0679761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.31702612,1.343156421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38446421,16.40638784,57.70149033,17.74954426,277.4667249,0,0.528427287,58.10074559,-0.528427287,121.8992544,0.955379602,0,322.7875396,17.74954426,334.4042613,7,18,4% -7/5/2018 3:00,84.64945449,294.8351926,30.45477018,135.6433588,17.80616731,62.14013955,44.64131296,17.49882659,17.26924567,0.229580922,7.921033264,0,7.921033264,0.536921642,7.384111622,1.477411691,5.145844862,7.571643881,-7.571643881,0,0.584675806,0.134230411,4.317311417,0.43332299,1,0.131311748,0,0.94760904,0.986371003,0.724496596,1,16.74382116,0.388997902,0.06149009,0.312029739,0.840470145,0.564966741,0.961238037,0.922476074,0.091860407,4.149963951,16.83568157,4.538961853,25.29720573,0,0.329107988,70.78535703,-0.329107988,109.214643,0.898074183,0,39.55444894,4.538961853,42.52510869,7,19,8% -7/5/2018 4:00,95.11867356,304.0637104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660134034,5.306912881,-6.551803624,6.551803624,0.349421903,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116087746,83.33363144,-0.116087746,96.66636856,0.61929132,0,0,0,0,7,20,0% -7/5/2018 5:00,104.2869716,314.5827293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820151021,5.490504395,-1.685448895,1.685448895,0.818382426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089638684,95.14282121,0.089638684,84.85717879,0,0.492205111,0,0,0,7,21,0% -7/5/2018 6:00,111.8025671,326.8089022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951322909,5.703891369,-0.570465571,0.570465571,0.627709048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276544745,106.0540921,0.276544745,73.94590793,0,0.869197432,0,0,0,7,22,0% -7/5/2018 7:00,117.040585,340.8828009,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042743567,5.949527239,0.030185402,-0.030185402,0.524991682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.431898011,115.5880731,0.431898011,64.4119269,0,0.934231928,0,0,0,7,23,0% -7/6/2018 8:00,119.3896582,356.3650557,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083742629,6.219743561,0.500248024,-0.500248024,0.444606239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545115081,123.0325282,0.545115081,56.9674718,0,0.958276249,0,0,0,7,0,0% -7/6/2018 9:00,118.5107304,12.15343144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068402445,0.212117394,0.979731376,-0.979731376,0.362609757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608482477,127.4798569,0.608482477,52.52014314,0,0.967828365,0,0,0,7,1,0% -7/6/2018 10:00,114.5360843,26.97550821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999031783,0.470811436,1.601495786,-1.601495786,0.25628178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617682144,128.1470692,0.617682144,51.85293081,0,0.969052217,0,0,0,7,2,0% -7/6/2018 11:00,107.9870817,40.06505869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.884730125,0.699267189,2.669145295,-2.669145295,0.073702961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.572085784,124.8958023,0.572085784,55.10419773,0,0.96260052,0,0,0,7,3,0% -7/6/2018 12:00,99.50799013,51.33191246,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73674206,0.895910884,5.656525712,-5.656525712,0,#DIV/0!,0,0,0.304187694,1,0.174979002,0,0.942191117,0.98095308,0.724496596,1,0,0,0.045482814,0.312029739,0.879128569,0.603625165,0.961238037,0.922476074,0,0,0,0,0,0,-0.474798,118.3461987,0.474798,61.65380134,0,0.944692059,0,0,0,7,4,0% -7/6/2018 13:00,89.23172513,61.10018144,0.366686761,2.28993114,0.335982164,0.328615301,0,0.328615301,0.325851062,0.00276424,0.843889204,0.744850652,0.099038552,0.010131102,0.08890745,1.557387401,1.06639934,-73.67488962,73.67488962,0,0.916264779,0.002532775,0.081462765,1,0.917555024,0,0.013572312,0.961238037,1,0.686729131,0.962232535,0.313220435,0.007187439,0.115824807,0.269128181,0.724496596,0.448993192,0.967838677,0.929076714,0.001834987,0.078582482,0.315055422,0.085769922,0,0.061409194,-0.325272074,108.9820593,0.325272074,71.01794066,0,0.896282531,0.315055422,0.14080991,0.407212692,7,5,29% -7/6/2018 14:00,78.81938237,69.8457749,117.9528212,377.1091737,44.83041098,44.36778687,0,44.36778687,43.47860868,0.88917819,87.76879913,57.81796971,29.95082941,1.351802298,28.59902712,1.375657737,1.219038741,-5.059332755,5.059332755,0.604649453,0.380070697,0.671250051,21.58970904,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.79329245,0.979376163,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.486318377,20.75284953,42.27961083,21.7322257,0,57.81796971,-0.153318916,98.81931189,0.153318916,81.18068811,0,0.72388238,42.27961083,63.58563521,83.89513736,7,6,98% -7/6/2018 15:00,67.48930687,78.09624627,321.4398268,640.7929142,76.10851119,106.3251766,30.0884686,76.23670796,73.81355877,2.423149191,80.23175994,0,80.23175994,2.294952423,77.93680752,1.177910615,1.363036631,-2.3888897,2.3888897,0.938677888,0.236773744,2.309739399,74.28915874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.95240032,1.662685218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673398332,71.4095651,72.62579865,73.07225032,30.0884686,0,0.046955058,87.30868376,-0.046955058,92.69131624,0,0,72.62579865,73.07225032,120.450125,7,7,66% -7/6/2018 16:00,55.78269699,86.47692038,526.4540919,766.5618051,95.39099578,293.6539859,197.1707472,96.48323862,92.5146053,3.96863332,130.5212801,0,130.5212801,2.876390478,127.6448897,0.973591728,1.509306988,-1.410112418,1.410112418,0.771297115,0.181195278,3.225455131,103.7417244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.92855758,2.08393511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.336831263,99.72049154,91.26538884,101.8044267,197.1707472,0,0.257214416,75.09516057,-0.257214416,104.9048394,0.855609652,0,259.9665832,101.8044267,326.5955443,7,8,26% -7/6/2018 17:00,43.96548903,95.92728498,709.2074431,833.8863654,109.0109909,497.0017823,385.9315697,111.0702126,105.7239073,5.346305276,175.2426391,0,175.2426391,3.287083583,171.9555555,0.767342541,1.674246965,-0.867445611,0.867445611,0.678495626,0.153708188,3.891647681,125.1687669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6258411,2.381480866,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.819485497,120.3169797,104.4453266,122.6984606,385.9315697,0,0.462810745,62.43137103,-0.462810745,117.568629,0.941964479,0,467.9791565,122.6984606,548.282845,7,9,17% -7/6/2018 18:00,32.40096832,108.341173,854.7313933,871.8012805,118.6531216,687.8905385,566.37192,121.5186184,115.0752922,6.443326283,210.8173514,0,210.8173514,3.577829398,207.239522,0.565503578,1.890910184,-0.497770051,0.497770051,0.615277382,0.138819192,4.308550898,138.5778074,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6147479,2.59212522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121530459,133.2062596,113.7362784,135.7983848,566.37192,0,0.649657132,49.48424388,-0.649657132,130.5157561,0.973036326,0,664.8367304,135.7983848,753.7140572,7,10,13% -7/6/2018 19:00,21.95251302,128.625523,952.1849305,892.1396661,124.7307327,846.3124979,718.1648847,128.1476132,120.9696409,7.177972211,234.6293522,0,234.6293522,3.7610918,230.8682604,0.383143631,2.244938878,-0.209846146,0.209846146,0.566039494,0.130994231,4.471057083,143.804565,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2806202,2.724898206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.239265637,138.2304177,119.5198858,140.9553159,718.1648847,0,0.804991541,36.39056159,-0.804991541,143.6094384,0.987887546,0,828.9860314,140.9553159,921.2384666,7,11,11% -7/6/2018 20:00,15.50689252,168.0010435,994.53909,900.0008369,127.2998152,957.3518127,826.3933009,130.9585118,123.4612561,7.497255756,244.9760759,0,244.9760759,3.838559114,241.1375167,0.270646331,2.932171356,0.038619151,-0.038619151,0.523549426,0.127998805,4.38240487,140.953205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6756554,2.781023011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.17503741,135.4895821,121.8506928,138.2706051,826.3933009,0,0.918213925,23.33364897,-0.918213925,156.666351,0.995546459,0,944.5636169,138.2706051,1035.058963,7,12,10% -7/6/2018 21:00,18.16522092,216.3303263,978.7730641,897.1370136,126.3480434,1010.546536,880.6299474,129.9165885,122.5381837,7.378404793,241.1247209,0,241.1247209,3.809859682,237.3148612,0.317042914,3.775676466,0.273069435,-0.273069435,0.483456066,0.12908819,4.059124531,130.5553981,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7883631,2.760230371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.940821905,125.4948145,120.729185,128.2550449,880.6299474,0,0.981600284,11.00807438,-0.981600284,168.9919256,0.999062769,0,1000.533779,128.2550449,1084.474141,7,13,8% -7/6/2018 22:00,27.36522606,243.7921541,905.999134,882.9211772,121.8816697,999.8586765,874.8223847,125.0362918,118.2064877,6.829804168,223.3451614,0,223.3451614,3.675182037,219.6699793,0.477613295,4.25497578,0.514546007,-0.514546007,0.44216114,0.134527358,3.532413837,113.6145716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6245722,2.662656875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5592218,109.2106477,116.183794,111.8733046,874.8223847,0,0.990827276,7.766392434,-0.990827276,172.2336076,0.999537118,0,990.601239,111.8733046,1063.820079,7,14,7% -7/6/2018 23:00,38.59006656,258.8776284,781.4162151,854.0135945,113.8947448,923.6227715,807.271728,116.3510435,110.460398,5.890645501,192.897755,0,192.897755,3.434346782,189.4634083,0.67352372,4.518266976,0.788445747,-0.788445747,0.395321526,0.145754263,2.847867861,91.5972199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1787361,2.488172553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.063270571,88.04673184,108.2420067,90.53490439,807.271728,0,0.945268007,19.04404774,-0.945268007,160.9559523,0.997104948,0,913.1766414,90.53490439,972.4299256,7,15,6% -7/6/2018 0:00,50.35478223,269.3478331,614.1197402,802.3495493,102.1951492,784.1671824,680.4241,103.7430824,99.11358844,4.629494007,151.9820018,0,151.9820018,3.08156081,148.900441,0.878856744,4.701006521,1.138694515,-1.138694515,0.335425459,0.166409159,2.064831868,66.41209067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.27175117,2.232580317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.495963659,63.83782766,96.76771483,66.07040798,680.4241,0,0.848039487,32.00093085,-0.848039487,147.9990692,0.991040481,0,771.0955424,66.07040798,814.337303,7,16,6% -7/6/2018 1:00,62.15168344,278.0666742,417.0429037,708.9405475,85.87378542,586.8038356,500.3756161,86.42821951,83.28437395,3.143845568,103.7062918,0,103.7062918,2.589411471,101.1168804,1.084751512,4.853179006,1.670206318,-1.670206318,0.244531588,0.205911154,1.257824191,40.45594972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05610811,1.876019796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.911289344,38.88779769,80.96739746,40.76381748,500.3756161,0,0.705807586,45.10517536,-0.705807586,134.8948246,0.979159163,0,570.914767,40.76381748,597.5938702,7,17,5% -7/6/2018 2:00,73.69596286,286.2849973,208.5455256,523.9043308,61.46759045,338.0244455,276.8382255,61.18622007,59.61411581,1.572104262,52.41775178,0,52.41775178,1.853474643,50.56427714,1.286237197,4.996615802,2.755868959,-2.755868959,0.058872341,0.29474423,0.528642522,17.00296069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.30335565,1.34283607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.382999707,16.34389256,57.68635535,17.68672863,276.8382255,0,0.528413699,58.1016626,-0.528413699,121.8983374,0.955377169,0,322.1712756,17.68672863,333.7468857,7,18,4% -7/6/2018 3:00,84.68370938,294.7307874,30.01414559,133.7197318,17.6245186,61.31302194,43.9936883,17.31933364,17.09307433,0.226259308,7.808721354,0,7.808721354,0.531444263,7.277277091,1.478009551,5.144022647,7.634509018,-7.634509018,0,0.587207074,0.132861066,4.273268584,0.43675434,1,0.130242718,0,0.947736253,0.986498216,0.724496596,1,16.57291089,0.38502956,0.061893076,0.312029739,0.839523159,0.564019754,0.961238037,0.922476074,0.09092308,4.107628304,16.66383397,4.492657864,24.77925399,0,0.328999226,70.79195614,-0.328999226,109.2080439,0.898023959,0,38.91619774,4.492657864,41.85655246,7,19,8% -7/6/2018 4:00,95.16429364,303.9632473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660930254,5.30515947,-6.509314315,6.509314315,0.356688003,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115811514,83.34956587,-0.115811514,96.65043413,0.618263998,0,0,0,0,7,20,0% -7/6/2018 5:00,104.3456564,314.48646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821175264,5.488824181,-1.684190749,1.684190749,0.81816727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090105791,95.16969317,0.090105791,84.83030683,0,0.495096706,0,0,0,7,21,0% -7/6/2018 6:00,111.8762758,326.7202983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.952609367,5.702344938,-0.572093401,0.572093401,0.627987423,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277226425,106.0947386,0.277226425,73.9052614,0,0.869642013,0,0,0,7,22,0% -7/6/2018 7:00,117.1296719,340.8090373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044298426,5.948239821,0.027557493,-0.027557493,0.525441081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.432803298,115.6455965,0.432803298,64.35440352,0,0.934474078,0,0,0,7,23,0% -7/7/2018 8:00,119.4916409,356.314982,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085522562,6.218869609,0.496689371,-0.496689371,0.445214805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.546237703,123.1092846,0.546237703,56.8907154,0,0.958464759,0,0,0,7,0,0% -7/7/2018 9:00,118.6203324,12.13236859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07031536,0.211749778,0.974708391,-0.974708391,0.363468738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609801272,127.575135,0.609801272,52.424865,0,0.968006075,0,0,0,7,1,0% -7/7/2018 10:00,114.6473254,26.98183751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000973306,0.470921903,1.593464065,-1.593464065,0.257655286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619162503,128.2550018,0.619162503,51.74499821,0,0.969245756,0,0,0,7,2,0% -7/7/2018 11:00,108.0955711,40.09270135,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886623623,0.699749645,2.652774007,-2.652774007,0.076502617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573682034,125.0073864,0.573682034,54.99261364,0,0.962843706,0,0,0,7,3,0% -7/7/2018 12:00,99.61157021,51.37475911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738549873,0.896658699,5.595839602,-5.595839602,0,#DIV/0!,0,0,0.29912662,1,0.176837515,0,0.941951009,0.980712972,0.724496596,1,0,0,0.044820215,0.312029739,0.880772543,0.605269139,0.961238037,0.922476074,0,0,0,0,0,0,-0.476456543,118.4542278,0.476456543,61.5457722,0,0.945058635,0,0,0,7,4,0% -7/7/2018 13:00,89.31711244,61.15427913,0.289448507,1.878836293,0.267055871,0.261185136,0,0.261185136,0.259003151,0.002181985,0.692102335,0.613869474,0.078232862,0.00805272,0.070180142,1.55887769,1.067343523,-82.90035641,82.90035641,0,0.922636891,0.00201318,0.064750788,1,0.927044307,0,0.012062089,0.961238037,1,0.690860426,0.96636383,0.24896368,0.005725161,0.115824807,0.273818548,0.724496596,0.448993192,0.967135647,0.928373684,0.001458542,0.062439686,0.250422222,0.068164847,0,0.044785273,-0.326728559,109.0703321,0.326728559,70.92966788,0,0.89696777,0.250422222,0.108335793,0.321325833,7,5,28% -7/7/2018 14:00,78.91204027,69.90953152,116.3039674,373.3267381,44.5073553,44.04204276,0,44.04204276,43.16529433,0.876748433,87.37617795,57.83487356,29.54130439,1.342060977,28.19924341,1.377274922,1.220151504,-5.10271192,5.10271192,0.597231179,0.382681316,0.65875658,21.18787607,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.49212278,0.972318609,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4772669,20.3665924,41.96938968,21.33891101,0,57.83487356,-0.154917577,98.912016,0.154917577,81.087984,0,0.727247727,41.96938968,63.39919134,83.46289243,7,6,99% -7/7/2018 15:00,67.57866714,78.17008214,319.7136954,638.9508696,76.00851468,105.1712133,29.04449893,76.12671441,73.71657752,2.410136883,79.81022412,0,79.81022412,2.291937159,77.51828696,1.179470246,1.36432531,-2.399021824,2.399021824,0.940410584,0.237739314,2.300662033,73.99719944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85917826,1.66050067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.666821811,71.12892273,72.52600007,72.7894234,29.04449893,0,0.045456545,87.39463405,-0.045456545,92.60536595,0,0,72.52600007,72.7894234,120.1652219,7,7,66% -7/7/2018 16:00,55.8700714,86.56304516,524.8787328,765.4980021,95.37965302,292.3275002,195.8671381,96.46036217,92.50360457,3.956757598,130.1389741,0,130.1389741,2.876048452,127.2629256,0.975116699,1.510810149,-1.414116704,1.414116704,0.771981889,0.181717504,3.218492987,103.517798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.91798326,2.083687313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331787213,99.50524488,91.24977047,101.5889322,195.8671381,0,0.255868908,75.17492186,-0.255868908,104.8250781,0.854587434,0,258.6353653,101.5889322,325.1232897,7,8,26% -7/7/2018 17:00,44.05341109,96.02947028,707.8397978,833.1720881,109.0457435,495.7318239,384.6382165,111.0936074,105.757612,5.335995388,174.9120856,0,174.9120856,3.288131503,171.6239541,0.76887707,1.676030435,-0.869357719,0.869357719,0.678822615,0.15405427,3.886212714,124.9939597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6582394,2.382240081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.815547883,120.1489484,104.4737872,122.5311885,384.6382165,0,0.461655187,62.50603461,-0.461655187,117.4939654,0.941694058,0,466.6853101,122.5311885,546.8795224,7,9,17% -7/7/2018 18:00,32.49379394,108.4621116,853.5856256,871.2656648,118.7169151,686.774496,565.2026449,121.5718511,115.1371621,6.434689002,210.5414704,0,210.5414704,3.57975301,206.9617174,0.567123691,1.893020961,-0.498719299,0.498719299,0.615439713,0.139080265,4.304320862,138.4417549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6742197,2.59351887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.118465812,133.0754807,113.7926855,135.6689996,565.2026449,0,0.648714471,49.55525152,-0.648714471,130.4447485,0.972924488,0,663.6921794,135.6689996,752.4848263,7,10,13% -7/7/2018 19:00,22.05724775,128.7422414,951.2515509,891.701497,124.8144896,845.3902828,717.1684745,128.2218083,121.0508723,7.170936001,234.4055691,0,234.4055691,3.763617379,230.6419517,0.384971597,2.246975999,-0.210248101,0.210248101,0.566108232,0.131210813,4.467776554,143.6990518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3587028,2.726727979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.236888904,138.1289945,119.5955917,140.8557225,717.1684745,0,0.804269677,36.4602172,-0.804269677,143.5397828,0.987831798,0,828.0374151,140.8557225,920.2246684,7,11,11% -7/7/2018 20:00,15.61926948,167.9356384,993.7906878,899.614447,127.3971398,956.6281844,825.5809244,131.04726,123.555646,7.491613984,244.7975518,0,244.7975518,3.841493812,240.956058,0.272607679,2.931029822,0.038597275,-0.038597275,0.523553167,0.128193131,4.379825116,140.8702313,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7663866,2.78314919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173168387,135.4098246,121.939555,138.1929738,825.5809244,0,0.917705276,23.40711856,-0.917705276,156.5928814,0.995516277,0,943.8188033,138.1929738,1034.263341,7,12,10% -7/7/2018 21:00,18.23939685,216.0532898,978.1679835,896.7711643,126.4532354,1009.99975,879.985703,130.0140472,122.6402038,7.37384344,240.981184,0,240.981184,3.81303161,237.1681524,0.318337529,3.770841267,0.273376777,-0.273376777,0.483403507,0.129275582,4.056991471,130.4867915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8864287,2.762528422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93927651,125.4288673,120.8257052,128.1913957,879.985703,0,0.981282336,11.10307324,-0.981282336,168.8969268,0.999046265,0,999.9721352,128.1913957,1083.87084,7,13,8% -7/7/2018 22:00,27.40609572,243.5602864,905.485322,882.5481684,121.9886947,999.4450361,874.3088198,125.1362163,118.3102855,6.825930836,223.2238089,0,223.2238089,3.678409237,219.5453997,0.478326605,4.250928926,0.515214321,-0.515214321,0.442046852,0.134721891,3.530476239,113.5522518,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7243466,2.66499497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.557818017,109.1507436,116.2821646,111.8157386,874.3088198,0,0.990664137,7.835258252,-0.990664137,172.1647417,0.999528808,0,990.1790169,111.8157386,1063.360182,7,14,7% -7/7/2018 23:00,38.61787756,258.6996868,780.9356473,853.5995578,113.9963155,923.2792346,806.8333058,116.4459288,110.558906,5.887022778,192.7842986,0,192.7842986,3.437409514,189.3468891,0.674009113,4.515161309,0.789610074,-0.789610074,0.395122414,0.14597402,2.845897645,91.53385096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2734258,2.490391492,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061843156,87.9858192,108.3352689,90.4762107,806.8333058,0,0.945212891,19.05372338,-0.945212891,160.9462766,0.997101864,0,912.8302621,90.4762107,972.0451325,7,15,6% -7/7/2018 0:00,50.37937755,269.2023771,613.6139976,801.8378805,102.2809557,783.8114553,679.9889663,103.822489,99.1968075,4.625681506,151.8619661,0,151.8619661,3.084148191,148.7778179,0.879286013,4.698467834,1.140702238,-1.140702238,0.335082118,0.166686151,2.062659478,66.34221915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.35174451,2.234454865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49438977,63.77066449,96.84613428,66.00511936,679.9889663,0,0.848037967,32.00109513,-0.848037967,147.9989049,0.991040376,0,770.7426548,66.00511936,813.9416853,7,16,6% -7/7/2018 1:00,62.17821788,277.9402241,416.4620982,708.2077027,85.92534711,586.3278767,499.8540287,86.47384807,83.33438086,3.139467211,103.5670236,0,103.5670236,2.590966246,100.9760573,1.085214625,4.850972034,1.674044253,-1.674044253,0.243875262,0.20632213,1.255411807,40.37835916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.10417666,1.877146225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.909541581,38.81321469,81.01371824,40.69036091,499.8540287,0,0.705801457,45.10567101,-0.705801457,134.894329,0.979158548,0,570.4500632,40.69036091,597.0810906,7,17,5% -7/7/2018 2:00,73.72781397,286.1697232,207.8758856,522.6139489,61.4390689,337.2743161,276.1208056,61.15351052,59.58645428,1.567056233,52.25452978,0,52.25452978,1.852614613,50.40191517,1.286793104,4.99460389,2.765639053,-2.765639053,0.057201557,0.295556499,0.5262986,16.9275721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.27676634,1.342212981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.381301544,16.27142618,57.65806788,17.61363916,276.1208056,0,0.528345648,58.10625506,-0.528345648,121.8937449,0.955364982,0,321.4542163,17.61363916,332.9819909,7,18,4% -7/7/2018 3:00,84.72297313,294.6221362,29.5177585,131.5804396,17.41612947,60.38075033,43.26726409,17.11348624,16.89096891,0.222517332,7.682082854,0,7.682082854,0.525160562,7.156922292,1.478694833,5.142126327,7.706075309,-7.706075309,0,0.590022087,0.131290141,4.222742227,0.440610388,1,0.1290466,0,0.947878279,0.986640242,0.724496596,1,16.37683008,0.38047704,0.062344632,0.312029739,0.838463573,0.562960169,0.961238037,0.922476074,0.089848385,4.059060448,16.46667847,4.439537487,24.20325806,0,0.328827478,70.80237638,-0.328827478,109.1976236,0.897944581,0,38.19986288,4.439537487,41.10545137,7,19,8% -7/7/2018 4:00,95.21541888,303.8590536,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661822558,5.303340948,-6.461256456,6.461256456,0.364906381,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115460756,83.36979853,-0.115460756,96.63020147,0.616952429,0,0,0,0,7,20,0% -7/7/2018 5:00,104.410263,314.3871069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822302862,5.487090142,-1.682402081,1.682402081,0.81786139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09065526,95.20130482,0.09065526,84.79869518,0,0.498460022,0,0,0,7,21,0% -7/7/2018 6:00,111.9563041,326.6295552,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954006125,5.700761172,-0.573613241,0.573613241,0.628247331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277996184,106.1406471,0.277996184,73.85935294,0,0.870141416,0,0,0,7,22,0% -7/7/2018 7:00,117.2253388,340.7345153,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045968128,5.946939167,0.024916664,-0.024916664,0.525892689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433799866,115.7089521,0.433799866,64.29104793,0,0.934739476,0,0,0,7,23,0% -7/8/2018 8:00,119.6001774,356.2659091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087416882,6.218013127,0.493053827,-0.493053827,0.445836519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.547452073,123.1923895,0.547452073,56.80761051,0,0.958667804,0,0,0,7,0,0% -7/8/2018 9:00,118.7360955,12.11407922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072335807,0.211430568,0.969548996,-0.969548996,0.364351046,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611209511,127.6770099,0.611209511,52.32299007,0,0.96819499,0,0,0,7,1,0% -7/8/2018 10:00,114.7640478,26.99230455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003010497,0.471104587,1.585207743,-1.585207743,0.2590672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620727395,128.3692722,0.620727395,51.63072781,0,0.969449342,0,0,0,7,2,0% -7/8/2018 11:00,108.208753,40.12531789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888599019,0.700318911,2.635993865,-2.635993865,0.07937219,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.575355632,125.1245411,0.575355632,54.8754589,0,0.963097227,0,0,0,7,3,0% -7/8/2018 12:00,99.71909327,51.42304551,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740426505,0.897501456,5.534318424,-5.534318424,0,#DIV/0!,0,0,0.293920194,1,0.178761904,0,0.94170158,0.980463543,0.724496596,1,0,0,0.044135657,0.312029739,0.88247465,0.606971245,0.961238037,0.922476074,0,0,0,0,0,0,-0.478183472,118.5668288,0.478183472,61.43317124,0,0.945437624,0,0,0,7,4,0% -7/8/2018 13:00,89.40486495,61.21412973,0.221999245,1.518518354,0.206226578,0.20168161,0,0.20168161,0.200008086,0.001673524,0.558465323,0.498420544,0.060044779,0.006218492,0.053826287,1.560409261,1.068388113,-95.14048796,95.14048796,0,0.928951709,0.001554623,0.050002022,1,0.936709403,0,0.010510385,0.961238037,1,0.695123783,0.970627188,0.19225538,0.004431052,0.115824807,0.278659624,0.724496596,0.448993192,0.966405198,0.927643235,0.001126319,0.048199545,0.193381699,0.052630597,0,0.031545334,-0.328228198,109.1612696,0.328228198,70.83873042,0,0.897666958,0.193381699,0.080947801,0.246360416,7,5,27% -7/8/2018 14:00,79.00748239,69.97937429,114.6123711,369.4257804,44.16996752,43.70207649,0,43.70207649,42.83808003,0.863996466,86.95954983,57.83856603,29.12098381,1.331887491,27.78909632,1.378940701,1.22137049,-5.148143001,5.148143001,0.589462007,0.385385688,0.645990695,20.77728134,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.17759195,0.964947953,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.46801806,19.97191312,41.64561001,20.93686107,0,57.83856603,-0.156563427,99.00748113,0.156563427,80.99251887,0,0.730640612,41.64561001,63.19606638,83.00617153,7,6,99% -7/8/2018 15:00,67.67049289,78.25049168,317.9427174,637.0619548,75.90211978,103.9904384,27.9802611,76.01017732,73.61339082,2.396786504,79.37762182,0,79.37762182,2.28872896,77.08889286,1.181072907,1.365728721,-2.409481185,2.409481185,0.94219924,0.238728914,2.29132299,73.69682373,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.75999127,1.658176341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660055706,70.84019017,72.42004698,72.49836651,27.9802611,0,0.043920785,87.48271463,-0.043920785,92.51728537,0,0,72.42004698,72.49836651,119.8687779,7,7,66% -7/8/2018 16:00,55.95974752,86.65652311,523.263749,764.4126481,95.36450912,290.9730358,194.5395353,96.43350048,92.48891731,3.944583168,129.7469459,0,129.7469459,2.875591808,126.8713541,0.976681843,1.512441647,-1.418202917,1.418202917,0.772680672,0.182249409,3.211322572,103.2871728,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.90386531,2.083356476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.326592272,99.28355918,91.23045758,101.3669157,194.5395353,0,0.254495443,75.25631017,-0.254495443,104.7436898,0.853532828,0,257.2763373,101.3669157,323.6189562,7,8,26% -7/8/2018 17:00,44.1437043,96.14027101,706.4367331,832.44559,109.0777254,494.438084,383.3240359,111.114048,105.7886295,5.325418494,174.5728607,0,174.5728607,3.289095875,171.2837648,0.770452984,1.677964273,-0.871278202,0.871278202,0.679151037,0.154405512,3.880589244,124.8130895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6880546,2.382938765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.811473697,119.9750892,104.4995283,122.3580279,383.3240359,0,0.460479388,62.58195413,-0.460479388,117.4180459,0.941417507,0,465.3674865,122.3580279,545.4483686,7,9,17% -7/8/2018 18:00,32.58944889,108.5936655,852.4062225,870.7215858,118.7783588,685.638681,564.0161298,121.6225512,115.196753,6.425798163,210.2573632,0,210.2573632,3.581605763,206.6757575,0.568793185,1.895317009,-0.499644528,0.499644528,0.615597936,0.139344781,4.299902249,138.2996372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7315007,2.594861183,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.115264542,132.9388717,113.8467653,135.5337329,564.0161298,0,0.647757146,49.627287,-0.647757146,130.372713,0.972810578,0,662.5276223,135.5337329,751.2317398,7,10,13% -7/8/2018 19:00,22.16600829,128.8720316,950.283512,891.2561976,124.8959758,844.4501583,716.1566184,128.2935399,121.1299013,7.163638515,234.173314,0,234.173314,3.766074488,230.4072395,0.386869827,2.249241265,-0.210606216,0.210606216,0.566169474,0.131430225,4.464292967,143.5870077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4346686,2.728508147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.234365058,138.0212934,119.6690336,140.7498016,716.1566184,0,0.8035362,36.5308761,-0.8035362,143.4691239,0.98777505,0,827.0706731,140.7498016,919.1886032,7,11,11% -7/8/2018 20:00,15.73780291,167.8803632,993.0037887,899.2208596,127.4920226,955.885529,824.7521793,131.1333497,123.6476677,7.485682006,244.6096201,0,244.6096201,3.844354877,240.7652652,0.274676478,2.930065088,0.038636121,-0.038636121,0.523546524,0.128390268,4.377016854,140.7799079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8548414,2.785222022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.171133811,135.3230023,122.0259752,138.1082243,824.7521793,0,0.917185328,23.48199592,-0.917185328,156.5180041,0.995485391,0,943.0547205,138.1082243,1033.443791,7,12,10% -7/8/2018 21:00,18.32026585,215.7718782,977.5180032,896.3968569,126.5555971,1009.429495,879.3210727,130.1084225,122.7394789,7.368943614,240.8266754,0,240.8266754,3.816118192,237.0105572,0.319748959,3.765929707,0.273763945,-0.273763945,0.483337298,0.129466257,4.054596777,130.4097699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9818557,2.764764639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.937541563,125.3548312,120.9193973,128.1195959,879.3210727,0,0.980950642,11.20133116,-0.980950642,168.7986688,0.999029036,0,999.3866807,128.1195959,1083.238394,7,13,8% -7/8/2018 22:00,27.45257794,243.3202393,904.9181081,882.1639189,122.0922816,999.0000781,873.7676743,125.2324038,118.4107489,6.821654938,223.0894049,0,223.0894049,3.681532764,219.4078721,0.479137873,4.246739313,0.515988967,-0.515988967,0.441914379,0.134920807,3.528240033,113.4803277,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8209158,2.667257955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.556197893,109.0816074,116.3771137,111.7488654,873.7676743,0,0.990482217,7.911349811,-0.990482217,172.0886502,0.999519538,0,989.7249758,111.7488654,1062.862373,7,14,7% -7/8/2018 23:00,38.6506484,258.5144758,780.3917435,853.1688957,114.0935665,922.8931319,806.3569848,116.5361471,110.6532245,5.882922602,192.6553553,0,192.6553553,3.440341989,189.2150133,0.674581073,4.511928767,0.790923527,-0.790923527,0.394897801,0.146200376,2.843592823,91.45971996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3640883,2.49251606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.06017332,87.91456167,108.4242616,90.40707773,806.3569848,0,0.945131719,19.06796474,-0.945131719,160.9320353,0.997097321,0,912.4406508,90.40707773,971.6102751,7,15,6% -7/8/2018 0:00,50.40869465,269.0507711,613.0344566,801.298768,102.3610972,783.3983102,679.502465,103.8958451,99.27453245,4.621312681,151.7238662,0,151.7238662,3.086564753,148.6373015,0.879797693,4.69582181,1.142939538,-1.142939538,0.334699517,0.16697446,2.060124379,66.26068165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.42645669,2.236205657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.4925531,63.69228755,96.91900979,65.92849321,679.502465,0,0.848001385,32.00505014,-0.848001385,147.9949499,0.991037832,0,770.3316597,65.92849321,813.4805399,7,16,6% -7/8/2018 1:00,62.20947781,277.8084691,415.7979423,707.4230565,85.96879896,585.7749265,499.2639435,86.51098301,83.37652248,3.134460523,103.4073015,0,103.4073015,2.59227648,100.8150251,1.085760214,4.848672476,1.678299212,-1.678299212,0.243147621,0.206756191,1.252629275,40.28886336,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14468479,1.878095485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.907525646,38.72718793,81.05221044,40.60528341,499.2639435,0,0.705750172,45.10981882,-0.705750172,134.8901812,0.9791534,0,569.9081983,40.60528341,596.4835442,7,17,5% -7/8/2018 2:00,73.76454128,286.0497713,207.118332,521.2071927,61.39643616,336.4195912,275.3131387,61.10645256,59.54510708,1.561345474,52.06956662,0,52.06956662,1.851329079,50.21823754,1.287434117,4.992510333,2.776481498,-2.776481498,0.05534739,0.296431685,0.523632108,16.84180857,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.23702183,1.341281616,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.37936968,16.18898701,57.61639151,17.53026862,275.3131387,0,0.528222063,58.11459467,-0.528222063,121.8854053,0.955342841,0,320.6348275,17.53026862,332.1080377,7,18,4% -7/8/2018 3:00,84.76727165,294.5093203,28.96648607,129.2266697,17.18082876,59.34395453,42.46282954,16.88112499,16.66276338,0.218361607,7.541325287,0,7.541325287,0.518065378,7.023259909,1.479467988,5.140157318,7.786768111,-7.786768111,0,0.593127821,0.129516344,4.165690845,0.444895338,1,0.127723886,0,0.948034956,0.986796919,0.724496596,1,16.15541393,0.375336602,0.062844796,0.312029739,0.837291818,0.561788414,0.961238037,0.922476074,0.088635623,4.00422049,16.24404955,4.379557092,23.57131462,0,0.328591843,70.81667164,-0.328591843,109.1833284,0.897835541,0,37.40721357,4.379557092,40.27354609,7,19,8% -7/8/2018 4:00,95.27206807,303.7512061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.662811273,5.301458653,-6.407904129,6.407904129,0.374030166,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115034673,83.39437509,-0.115034673,96.60562491,0.615348439,0,0,0,0,7,20,0% -7/8/2018 5:00,104.4807974,314.2847442,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823533921,5.485303575,-1.6800856,1.6800856,0.817465248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091287644,95.2376886,0.091287644,84.7623114,0,0.502280746,0,0,0,7,21,0% -7/8/2018 6:00,112.0426445,326.5367464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95551305,5.699141354,-0.575021327,0.575021327,0.628488128,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.278854271,106.1918359,0.278854271,73.80816409,0,0.870694874,0,0,0,7,22,0% -7/8/2018 7:00,117.3275638,340.6593102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047752292,5.94562659,0.02226788,-0.02226788,0.526345658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.434887626,115.7781436,0.434887626,64.22185644,0,0.93502777,0,0,0,7,23,0% -7/9/2018 8:00,119.7152302,356.2179156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089424931,6.217175482,0.489347596,-0.489347596,0.446470322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548757751,123.2818312,0.548757751,56.71816883,0,0.958885114,0,0,0,7,0,0% -7/9/2018 9:00,118.8579655,12.09864101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074462841,0.211161121,0.9642618,-0.9642618,0.36525521,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612706422,127.7854532,0.612706422,52.21454678,0,0.968394849,0,0,0,7,1,0% -7/9/2018 10:00,114.886183,27.00697707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005142159,0.471360671,1.57674111,-1.57674111,0.260515079,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622375749,128.4898326,0.622375749,51.51016743,0,0.96966268,0,0,0,7,2,0% -7/9/2018 11:00,108.3265489,40.16295909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890654946,0.700975873,2.618837133,-2.618837133,0.082306164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577105266,125.247199,0.577105266,54.75280102,0,0.963360694,0,0,0,7,3,0% -7/9/2018 12:00,99.83047642,51.47680396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742370507,0.898439718,5.472108777,-5.472108777,0,#DIV/0!,0,0,0.288576254,1,0.180750422,0,0.941442972,0.980204935,0.724496596,1,0,0,0.043429907,0.312029739,0.884233327,0.608729923,0.961238037,0.922476074,0,0,0,0,0,0,-0.479977308,118.68392,0.479977308,61.31608003,0,0.945828409,0,0,0,7,4,0% -7/9/2018 13:00,89.49485892,61.27974875,0.164239757,1.207783142,0.153591625,0.15019838,0,0.15019838,0.148960271,0.001238109,0.442742383,0.398289198,0.044453185,0.004631354,0.03982183,1.561979952,1.06953338,-112.1112411,112.1112411,0,0.935167152,0.001157839,0.037240068,1,0.946530655,0,0.008919476,0.961238037,1,0.699514408,0.975017812,0.143186279,0.003307923,0.115824807,0.283645984,0.724496596,0.448993192,0.965647716,0.926885753,0.00083885,0.035883603,0.144025129,0.039191527,0,0.021296262,-0.3297688,109.2547432,0.3297688,70.74525678,0,0.898378622,0.144025129,0.058323634,0.182196781,7,5,27% -7/9/2018 14:00,79.105628,70.05530393,112.8798638,365.4071853,43.81827592,43.34792933,0,43.34792933,42.49699323,0.850936094,86.51779044,57.8274779,28.69031255,1.321282691,27.36902986,1.380653666,1.222695712,-5.195672422,5.195672422,0.581333997,0.388185053,0.632972117,20.3585591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.84972635,0.957264812,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.458586144,19.56942138,41.30831249,20.52668619,0,57.8274779,-0.158254901,99.10561892,0.158254901,80.89438108,0,0.734054018,41.30831249,62.97517872,82.52430746,7,6,100% -7/9/2018 15:00,67.76470904,78.3374614,316.1282445,635.1265065,75.78938867,102.7842889,26.89712169,75.88716721,73.50405897,2.38310824,78.93428259,0,78.93428259,2.285329701,76.64895289,1.182717289,1.367246629,-2.420264733,2.420264733,0.944043335,0.239742541,2.281727308,73.38819361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.65489734,1.655713589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.653103667,70.54352315,72.30800101,72.19923674,26.89712169,0,0.042349235,87.5728417,-0.042349235,92.4271583,0,0,72.30800101,72.19923674,119.5609575,7,7,65% -7/9/2018 16:00,56.05165714,86.75732436,521.6101829,763.3059506,95.3456184,289.591858,193.1891439,96.40271411,92.47059622,3.932117888,129.34545,0,129.34545,2.875022183,126.4704278,0.978285968,1.51420096,-1.422367814,1.422367814,0.773392911,0.182790945,3.203947203,103.0499555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.88625438,2.082943784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.321248842,99.05553697,91.20750322,101.1384807,193.1891439,0,0.253095294,75.33924837,-0.253095294,104.6607516,0.852445951,0,255.8908067,101.1384807,322.0839196,7,8,26% -7/9/2018 17:00,44.23630881,96.25963323,704.9989467,831.7069616,109.1069707,493.1215777,381.9900049,111.1315728,105.816993,5.314579853,174.2251345,0,174.2251345,3.289977728,170.9351568,0.772069238,1.680047537,-0.873204729,0.873204729,0.679480493,0.154761892,3.874778848,124.6262072,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7153186,2.383577665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.807264085,119.7954508,104.5225827,122.1790284,381.9900049,0,0.459284366,62.65906139,-0.459284366,117.3409386,0.941134984,0,464.0267397,122.1790284,543.9904702,7,9,17% -7/9/2018 18:00,32.68788204,108.7357353,851.1935117,870.1690502,118.8374648,684.4837778,562.8130448,121.670733,115.2540768,6.416656236,209.9651097,0,209.9651097,3.583388027,206.3817217,0.570511167,1.897796596,-0.500544027,0.500544027,0.61575176,0.139612747,4.295295004,138.1514523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7866025,2.596152427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.111926609,132.7964308,113.8985291,135.3925832,562.8130448,0,0.646785868,49.70029382,-0.646785868,130.2997062,0.972694662,0,661.3437737,135.3925832,749.9555115,7,10,13% -7/9/2018 19:00,22.27874496,129.0147124,949.2807713,890.8037104,124.9751821,843.4924264,715.1296276,128.3627987,121.2067193,7.156079432,233.9325762,0,233.9325762,3.768462851,230.1641134,0.388837453,2.251731514,-0.210919158,0.210919158,0.56622299,0.131652495,4.460604829,143.4683845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5085089,2.730238507,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.231693014,137.9072683,119.7402019,140.6375068,715.1296276,0,0.802791478,36.60249816,-0.802791478,143.3975018,0.987717326,0,826.0861254,140.6375068,918.1305609,7,11,11% -7/9/2018 20:00,15.86242843,167.8352925,992.1780055,898.8199608,127.584434,955.1237463,823.9069969,131.2167495,123.7372926,7.479456903,244.4121859,0,244.4121859,3.847141421,240.5650445,0.276851604,2.929278455,0.0387368,-0.0387368,0.523529307,0.128590266,4.373977422,140.6821494,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9409922,2.787240863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168931753,135.2290331,122.1099239,138.0162739,823.9069969,0,0.916654094,23.55826671,-0.916654094,156.4417333,0.995453797,0,942.2712726,138.0162739,1032.600164,7,12,10% -7/9/2018 21:00,18.40784876,215.4867087,976.8224417,896.0139181,126.6550801,1008.835279,878.6356171,130.1996623,122.8359621,7.363700177,240.6610282,0,240.6610282,3.819117971,236.8419102,0.321277569,3.760952562,0.274231951,-0.274231951,0.483257264,0.129660289,4.051936968,130.3242213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0745991,2.766937969,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.93561454,125.2725987,121.0102136,128.0395366,878.6356171,0,0.980604876,11.30286012,-0.980604876,168.6971399,0.999011063,0,998.7769156,128.0395366,1082.576232,7,13,8% -7/9/2018 22:00,27.50474268,243.0723606,904.2965885,881.7681808,122.1923649,998.5229592,873.1981752,125.3247839,118.5078143,6.81696966,222.9417281,0,222.9417281,3.684550644,219.2571775,0.48004832,4.242413014,0.516870976,-0.516870976,0.441763547,0.135124213,3.525701318,113.3986739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9142187,2.669444399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.554358603,109.0031187,116.4685773,111.6725631,873.1981752,0,0.990280886,7.994721593,-0.990280886,172.0052784,0.999509275,0,989.2382523,111.6725631,1062.325711,7,14,7% -7/9/2018 23:00,38.68845039,258.322195,779.7834664,852.7212487,114.1864152,922.4633285,805.8417179,116.6216106,110.7432735,5.878337152,192.5106712,0,192.5106712,3.44314172,189.0675294,0.675240842,4.508572834,0.792387363,-0.792387363,0.39464747,0.146433491,2.840949522,91.37470234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4506468,2.494544456,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.058258258,87.83283949,108.508905,90.32738395,805.8417179,0,0.945023616,19.08691506,-0.945023616,160.9130849,0.997091269,0,912.0066464,90.32738395,971.1241126,7,15,6% -7/9/2018 0:00,50.4427967,268.8931535,612.38005,800.7316566,102.43547,782.9263925,678.9633504,103.9630421,99.34666261,4.616379487,151.5674404,0,151.5674404,3.088807366,148.478633,0.880392886,4.693070865,1.145408414,-1.145408414,0.334277315,0.167274342,2.057223222,66.16737048,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.49579093,2.237830422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.490451221,63.60259331,96.98624215,65.84042373,678.9633504,0,0.847928697,32.01290729,-0.847928697,147.9870927,0.991032778,0,769.8611772,65.84042373,812.9524178,7,16,6% -7/9/2018 1:00,62.24551629,277.6715188,415.0494615,706.5856359,86.00399582,585.1434708,498.6039946,86.53947618,83.41065802,3.128818158,103.226885,0,103.226885,2.593337795,100.6335472,1.086389204,4.846282242,1.682975833,-1.682975833,0.242347872,0.207213848,1.249474397,40.18739165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.17749717,1.878864404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.905239947,38.62964945,81.08273712,40.50851386,498.6039946,0,0.705652605,45.11770884,-0.705652605,134.8822912,0.979143605,0,569.2876497,40.50851386,595.7996618,7,17,5% -7/9/2018 2:00,73.80618673,285.9252359,206.2721962,519.6820147,61.33942348,335.458626,274.4138455,61.04478049,59.48981354,1.554966945,51.86269204,0,51.86269204,1.849609936,50.0130821,1.288160967,4.99033678,2.78841618,-2.78841618,0.053306439,0.297371263,0.520643205,16.74567516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18387158,1.340036103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.377204229,16.09657992,57.56107581,17.43661602,274.4138455,0,0.528041837,58.12675516,-0.528041837,121.8732448,0.955310533,0,319.7115128,17.43661602,331.1234293,7,18,4% -7/9/2018 3:00,84.8166302,294.3924256,28.36137757,126.65999,16.91846833,58.20349995,41.58138581,16.62211414,16.40831409,0.213800044,7.386698592,0,7.386698592,0.510154243,6.876544349,1.480329457,5.13811712,7.877079349,-7.877079349,0,0.596531966,0.127538561,4.102078523,0.449613859,1,0.126275128,0,0.948206103,0.986968066,0.724496596,1,15.9085193,0.369605012,0.063393609,0.312029739,0.836008381,0.560504977,0.961238037,0.922476074,0.087284219,3.943073906,15.99580352,4.312678918,22.88581848,0,0.328291403,70.83489662,-0.328291403,109.1651034,0.897696286,0,36.54031777,4.312678918,39.36287987,7,19,8% -7/9/2018 4:00,95.33425949,303.6397857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.663896718,5.299514001,-6.349553703,6.349553703,0.384008677,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114532444,83.42334213,-0.114532444,96.57665787,0.613442477,0,0,0,0,7,20,0% -7/9/2018 5:00,104.5572646,314.1794502,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824868525,5.483465848,-1.677245063,1.677245063,0.816979488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092003496,95.27887728,0.092003496,84.72112272,0,0.506542392,0,0,0,7,21,0% -7/9/2018 6:00,112.1352879,326.4419498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957129981,5.697486841,-0.576313987,0.576313987,0.628709186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279800919,106.2483233,0.279800919,73.75167671,0,0.871301516,0,0,0,7,22,0% -7/9/2018 7:00,117.4363225,340.5835017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04965049,5.944303482,0.01961619,-0.01961619,0.526799124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436066457,115.8531736,0.436066457,64.14682635,0,0.935338578,0,0,0,7,23,0% -7/10/2018 8:00,119.836758,356.1710844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091545992,6.216358124,0.485577031,-0.485577031,0.447115127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.550154255,123.3775961,0.550154255,56.62240388,0,0.959116399,0,0,0,7,0,0% -7/10/2018 9:00,118.9858843,12.08613575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076695444,0.210942863,0.958855622,-0.958855622,0.366179721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614291173,127.9004337,0.614291173,52.09956633,0,0.968605374,0,0,0,7,1,0% -7/10/2018 10:00,115.0136576,27.02592579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00736701,0.471691388,1.568078718,-1.568078718,0.261996436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.624106421,128.6166311,0.624106421,51.38336888,0,0.969885458,0,0,0,7,2,0% -7/10/2018 11:00,108.4488754,40.20567731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892789945,0.701721447,2.60133627,-2.60133627,0.085298988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578929542,125.3752875,0.578929542,54.62471252,0,0.963633704,0,0,0,7,3,0% -7/10/2018 12:00,99.94563168,51.53606712,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744380346,0.899474055,5.409353002,-5.409353002,0,#DIV/0!,0,0,0.283102811,1,0.182801223,0,0.941175342,0.979937305,0.724496596,1,0,0,0.042703766,0.312029739,0.886046927,0.610543522,0.961238037,0.922476074,0,0,0,0,0,0,-0.481836481,118.8054143,0.481836481,61.19458567,0,0.946230356,0,0,0,7,4,0% -7/10/2018 13:00,89.58697355,61.35115113,0.115857313,0.94438787,0.10904959,0.106634724,0,0.106634724,0.105761342,0.000873381,0.344300424,0.31292123,0.031379194,0.003288247,0.028090947,1.563587655,1.070779587,-137.1419696,137.1419696,0,0.941240455,0.000822062,0.026440336,1,0.956489223,0,0.007291585,0.961238037,1,0.704027572,0.979530976,0.101661825,0.002354434,0.115824807,0.288772265,0.724496596,0.448993192,0.96486359,0.926101627,0.000595581,0.025466724,0.102257406,0.027821158,0,0.013615446,-0.33134821,109.3506268,0.33134821,70.64937321,0,0.899101343,0.102257406,0.040062824,0.128477723,7,5,26% -7/10/2018 14:00,79.20639201,70.13731989,111.1083643,361.2720303,43.45232696,42.97966076,0,42.97966076,42.14207898,0.837581782,86.04979523,57.80003796,28.24975727,1.31024798,26.93950929,1.382412329,1.224127161,-5.245347706,5.245347706,0.572839023,0.391080611,0.619721232,19.93236509,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.50856926,0.949270201,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.448985923,19.15974749,40.95755519,20.10901769,0,57.80003796,-0.159990348,99.206336,0.159990348,80.793664,0,0.737481148,40.95755519,62.73545604,82.01665646,7,6,100% -7/10/2018 15:00,67.86123668,78.430976,314.2717003,633.144923,75.6703918,101.5542595,25.79649643,75.75776312,73.38865029,2.369112826,78.48055376,0,78.48055376,2.281741507,76.19881226,1.184402015,1.368878767,-2.431368886,2.431368886,0.945942257,0.240780165,2.271880383,73.07148265,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.54396213,1.653113954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645969604,70.23908853,72.18993173,71.89220248,25.79649643,0,0.040743431,87.66492701,-0.040743431,92.33507299,0,0,72.18993173,71.89220248,119.2419404,7,7,65% -7/10/2018 16:00,56.14572874,86.86541669,519.9191345,762.1781447,95.32304008,288.1852922,191.8172234,96.36806877,92.44869872,3.919370051,128.9347549,0,128.9347549,2.874341363,126.0604136,0.979927827,1.516087527,-1.426607894,1.426607894,0.774118008,0.18334205,3.196370424,102.8062603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86520567,2.082450533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.315759491,98.82128781,91.18096516,100.9037383,191.8172234,0,0.251669803,75.42365546,-0.251669803,104.5763445,0.851326979,0,254.4801425,100.9037383,320.5196211,7,8,26% -7/10/2018 17:00,44.33116199,96.38749986,703.5271768,830.9563059,109.1335164,491.7833707,380.6371475,111.1462232,105.8427382,5.30348503,173.8690873,0,173.8690873,3.290778179,170.5783092,0.773724738,1.68227923,-0.875134828,0.875134828,0.679810559,0.155123384,3.86878323,124.4333675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7400659,2.384157589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.80292028,119.6100859,104.5429862,121.9942435,380.6371475,0,0.458071194,62.73728493,-0.458071194,117.2627151,0.940846662,0,462.6641757,121.9942435,542.5069682,7,9,17% -7/10/2018 18:00,32.78904018,108.8882173,849.9478434,869.6080686,118.8942468,683.3105062,561.5940937,121.7164125,115.3091466,6.407265863,209.6647952,0,209.6647952,3.585100215,206.079695,0.57227671,1.900457908,-0.501415995,0.501415995,0.615900875,0.139884168,4.290499115,137.9972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8395377,2.597392902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.108452003,132.6481576,113.9479897,135.2455505,561.5940937,0,0.645801383,49.77421294,-0.645801383,130.2257871,0.972576815,0,660.1413847,135.2455505,748.6568926,7,10,13% -7/10/2018 19:00,22.39540637,129.1700944,948.2432915,890.3439774,125.0520996,842.5174063,714.0878305,128.4295758,121.2813174,7.148258471,233.6833466,0,233.6833466,3.770782195,229.9125644,0.390873578,2.254443443,-0.211185534,0.211185534,0.566268543,0.131877653,4.456710622,143.3431335,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5802154,2.731918864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.228871675,137.7868722,119.8090871,140.5187911,714.0878305,0,0.802035897,36.67504165,-0.802035897,143.3249583,0.987658651,0,825.0841102,140.5187911,917.0508486,7,11,11% -7/10/2018 20:00,15.99307873,167.8004839,991.3129411,898.4116327,127.6743436,954.3427347,823.045308,131.2974267,123.824491,7.472935683,244.2051521,0,244.2051521,3.849852527,240.3552996,0.279131881,2.92867093,0.038900471,-0.038900471,0.523501317,0.128793177,4.370704089,140.5768677,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0248107,2.78920505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.166560234,135.1278323,122.1913709,137.9170374,823.045308,0,0.916111589,23.63591617,-0.916111589,156.3640838,0.995421496,0,941.4683627,137.9170374,1031.732305,7,12,10% -7/10/2018 21:00,18.50216254,215.1984103,976.0805954,895.6221676,126.7516345,1008.216593,877.9288798,130.2877129,122.929605,7.358107827,240.4840705,0,240.4840705,3.822029443,236.662041,0.322923655,3.755920805,0.274781846,-0.274781846,0.483163226,0.129857755,4.049008459,130.2300304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1646122,2.769047321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933492845,125.1820588,121.0981051,127.9511061,877.9288798,0,0.980244696,11.40767279,-0.980244696,168.5923272,0.998992328,0,998.1423205,127.9511061,1081.88376,7,13,8% -7/10/2018 22:00,27.56265945,242.8170168,903.6198288,881.3606949,122.2888767,998.012802,872.5995181,125.4132839,118.6014159,6.81186796,222.7805501,0,222.7805501,3.687460831,219.0930892,0.481059158,4.237956423,0.517861428,-0.517861428,0.44159417,0.135332219,3.522856083,113.3071614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0041922,2.67155282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55229724,108.9151533,116.5564894,111.5867062,872.5995181,0,0.990059488,8.085417082,-0.990059488,171.9145829,0.999497984,0,988.7179487,111.5867062,1061.749216,7,14,7% -7/10/2018 23:00,38.73135564,258.1230563,779.1097449,852.2562402,114.2747761,921.9886442,805.2864159,116.7022284,110.82897,5.873258355,192.349984,0,192.349984,3.44580613,188.9041779,0.67598968,4.505097208,0.794002913,-0.794002913,0.394371195,0.146673529,2.837963776,91.27867047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5330216,2.496474811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.056095095,87.74053001,108.5891167,90.23700482,805.2864159,0,0.944887673,19.11072,-0.944887673,160.88928,0.997083657,0,911.5270413,90.23700482,970.5853562,7,15,6% -7/10/2018 0:00,50.48174787,268.7296714,611.6496788,800.1359614,102.5039661,782.3942941,678.3703271,104.023967,99.41309332,4.610873641,151.3924188,0,151.3924188,3.090872777,148.3015461,0.881072713,4.690217564,1.14811101,-1.14811101,0.333815143,0.16758607,2.053952605,66.0621762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.55964666,2.239326805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488081671,63.50147656,97.04772833,65.74080337,678.3703271,0,0.847818821,32.02478108,-0.847818821,147.9752189,0.991025136,0,769.3297738,65.74080337,812.3558148,7,16,6% -7/10/2018 1:00,62.28638719,277.5294893,414.2156578,705.6944072,86.03078586,584.4319348,497.872762,86.55917284,83.43664024,3.122532594,103.0255275,0,103.0255275,2.594145613,100.4313819,1.087102536,4.84380336,1.688079173,-1.688079173,0.241475149,0.207695639,1.245945003,40.0738742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20247227,1.879449666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902682913,38.52053217,81.10515518,40.39998183,497.872762,0,0.705507592,45.12943375,-0.705507592,134.8705662,0.97912904,0,568.5868349,40.39998183,595.027815,7,17,5% -7/10/2018 2:00,73.85279276,285.7962169,205.3368102,518.0362104,61.26774592,334.389705,273.421492,60.96821294,59.42029733,1.54791561,51.63373554,0,51.63373554,1.847448594,49.78628694,1.288974395,4.988084974,2.801465134,-2.801465134,0.051074936,0.298376827,0.51733226,16.63918379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.11704996,1.338470217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.374805461,15.99421636,57.49185542,17.33268658,273.421492,0,0.527803822,58.14281229,-0.527803822,121.8571877,0.955267833,0,318.6826115,17.33268658,330.0265082,7,18,4% -7/10/2018 3:00,84.87107336,294.2715429,27.70366357,123.8824095,16.62892899,56.96051385,40.62416651,16.33634734,16.12750543,0.208841918,7.218497537,0,7.218497537,0.501423563,6.717073973,1.48127967,5.136007318,7.977575716,-7.977575716,0,0.600242959,0.125355891,4.031876357,0.454771111,1,0.124700938,0,0.948391522,0.987153485,0.724496596,1,15.63603041,0.363279665,0.063991115,0.312029739,0.834613798,0.559110394,0.961238037,0.922476074,0.085793745,3.875592914,15.72182415,4.238872578,22.14946915,0,0.327925221,70.85710687,-0.327925221,109.1428931,0.897526214,0,35.60155334,4.238872578,38.37581067,7,19,8% -7/10/2018 4:00,95.40201105,303.5248781,0,0,0,0,0,0,0,0,0,0,0,0,0,1.665079206,5.297508485,-6.286519627,6.286519627,0.394788138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113953232,83.45674726,-0.113953232,96.54325274,0.611223501,0,0,0,0,7,20,0% -7/10/2018 5:00,104.6396686,314.0713077,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826306745,5.481578406,-1.673885229,1.673885229,0.816404923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092803379,95.32490408,0.092803379,84.67509592,0,0.511226512,0,0,0,7,21,0% -7/10/2018 6:00,112.2342232,326.3452474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958856729,5.695799065,-0.577487646,0.577487646,0.628909893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.280836354,106.3101272,0.280836354,73.68987277,0,0.871960372,0,0,0,7,22,0% -7/10/2018 7:00,117.5515881,340.5071738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051662254,5.942971309,0.016966712,-0.016966712,0.527252211,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437336214,115.9340442,0.437336214,64.06595577,0,0.935671485,0,0,0,7,23,0% -7/11/2018 8:00,119.9647168,356.1255032,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093779294,6.215562581,0.48174862,-0.48174862,0.447769824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.551641056,123.4796693,0.551641056,56.52033071,0,0.959361351,0,0,0,7,0,0% -7/11/2018 9:00,119.1197894,12.07664942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.079032529,0.210777295,0.953339451,-0.953339451,0.367123042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.61596287,128.0219175,0.61596287,51.9780825,0,0.968826276,0,0,0,7,1,0% -7/11/2018 10:00,115.1463933,27.04922455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009683685,0.472098029,1.559235319,-1.559235319,0.263508746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625918194,128.7496123,0.625918194,51.25038775,0,0.970117356,0,0,0,7,2,0% -7/11/2018 11:00,108.5756438,40.25352662,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895002472,0.702556575,2.583523773,-2.583523773,0.088345104,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.580826983,125.5087292,0.580826983,54.49127076,0,0.963915845,0,0,0,7,3,0% -7/11/2018 12:00,100.0644662,51.60086814,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7464544,0.900605046,5.346188551,-5.346188551,0,#DIV/0!,0,0,0.277508014,1,0.184912372,0,0.940898862,0.979660825,0.724496596,1,0,0,0.041958064,0.312029739,0.88791372,0.612410316,0.961238037,0.922476074,0,0,0,0,0,0,-0.483759337,118.9312195,0.483759337,61.06878051,0,0.946642822,0,0,0,7,4,0% -7/11/2018 13:00,89.68109583,61.42835146,0.076341471,0.725173027,0.072305231,0.070700455,0,0.070700455,0.070124961,0.000575494,0.262146939,0.241456796,0.020690143,0.002180269,0.018509873,1.565230399,1.072126987,-177.6559253,177.6559253,0,0.947129132,0.000545067,0.01753124,1,0.966567602,0,0.005628799,0.961238037,1,0.708658848,0.984162252,0.06740678,0.001565149,0.115824807,0.294033432,0.724496596,0.448993192,0.964053173,0.92529121,0.000394899,0.016878329,0.067801679,0.018443478,0,0.00807248,-0.332964392,109.4488011,0.332964392,70.55119886,0,0.899833793,0.067801679,0.025707368,0.084626638,7,5,25% -7/11/2018 14:00,79.30968524,70.22542067,109.2998739,357.0215916,43.07218567,42.59734897,0,42.59734897,41.77340036,0.823948618,85.55448652,57.75468134,27.79980518,1.298785318,26.50101986,1.384215136,1.225664809,-5.297217504,5.297217504,0.563968765,0.394073517,0.606259026,19.49937429,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.15418135,0.940965541,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.439232601,18.74354026,40.59341395,19.6845058,0,57.75468134,-0.161768035,99.30953421,0.161768035,80.69046579,0,0.740915452,40.59341395,62.47584163,81.48260278,7,6,101% -7/11/2018 15:00,67.95999333,78.53101873,312.3745763,631.1176637,75.54520764,100.3018976,24.67984523,75.6220524,73.2672409,2.354811504,78.01679932,0,78.01679932,2.277966743,75.73883257,1.186125643,1.370624842,-2.442789532,2.442789532,0.947895302,0.241841729,2.261787955,72.74687547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.42725881,1.650379151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.638657674,69.92706376,72.06591648,71.57744291,24.67984523,0,0.039104983,87.75887811,-0.039104983,92.24112189,0,0,72.06591648,71.57744291,118.9119213,7,7,65% -7/11/2018 16:00,56.24188775,86.98076599,518.1917576,761.0294923,95.29683805,286.7547194,190.4250843,96.32963513,92.42328678,3.906348354,128.5151423,0,128.5151423,2.873551275,125.641591,0.981606119,1.518100752,-1.430919396,1.430919396,0.774855318,0.183902651,3.188595993,102.5562079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.84077874,2.081878117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.310126943,98.58092792,91.15090568,100.662806,190.4250843,0,0.250220374,75.50944683,-0.250220374,104.4905532,0.850176144,0,253.0457696,100.662806,318.9275629,7,8,26% -7/11/2018 17:00,44.42819885,96.52381132,702.0221987,830.1937374,109.1574022,490.4245753,379.2665316,111.1580437,105.8659038,5.29213987,173.5049082,0,173.5049082,3.291498425,170.2134098,0.775418351,1.684658314,-0.877065885,0.877065885,0.680140789,0.155489958,3.86260421,124.234629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7623335,2.384679404,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.798443602,119.4190509,104.5607771,121.8037303,379.2665316,0,0.456840993,62.81655032,-0.456840993,117.1834497,0.940552729,0,461.2809485,121.8037303,540.9990539,7,9,17% -7/11/2018 18:00,32.89286833,109.0510039,848.6695878,869.0386557,118.9487199,682.1196174,560.3600105,121.7596069,115.3619771,6.397629833,209.3565099,0,209.3565099,3.586742778,205.7697671,0.574088853,1.90329907,-0.502258547,0.502258547,0.61604496,0.140159046,4.285514604,137.836881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8903204,2.598582933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104840742,132.4940529,113.9951611,135.0926359,560.3600105,0,0.644804471,49.84898305,-0.644804471,130.1510169,0.972457113,0,658.9212394,135.0926359,747.3366677,7,10,13% -7/11/2018 19:00,22.51593987,129.3379819,947.1710388,889.8769398,125.1267192,841.5254318,713.0315695,128.4938623,121.3536869,7.140175377,233.4256166,0,233.4256166,3.773032251,229.6525843,0.392977285,2.257373631,-0.211403889,0.211403889,0.566305884,0.132105728,4.452608799,143.2112047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6497798,2.733549022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.225899918,137.6600573,119.8756797,140.3936063,713.0315695,0,0.801269858,36.74846344,-0.801269858,143.2515366,0.98759905,0,824.0649806,140.3936063,915.9497881,7,11,11% -7/11/2018 20:00,16.12968414,167.7759785,990.4081873,897.9957535,127.7617202,953.5423897,822.1670415,131.3753482,123.9092329,7.466115266,243.9884188,0,243.9884188,3.852487254,240.1359316,0.281516096,2.92824323,0.03912834,-0.03912834,0.523462349,0.128999055,4.367194044,140.4639726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1062678,2.791113901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.164017219,135.0193133,122.270285,137.8104272,822.1670415,0,0.915557828,23.7149294,-0.915557828,156.2850706,0.995388485,0,940.6458909,137.8104272,1030.840059,7,12,10% -7/11/2018 21:00,18.60322032,214.9076188,975.2917385,895.2214179,126.8452087,1007.572906,877.2003872,130.3725187,123.0203576,7.352161089,240.2956246,0,240.2956246,3.824851051,236.4707735,0.324687446,3.750845536,0.275414727,-0.275414727,0.483054997,0.130058734,4.045807565,130.1270787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2518471,2.771091566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.931173808,125.0830976,121.1830209,127.8541892,877.2003872,0,0.97986975,11.51578251,-0.97986975,168.4842175,0.99897281,0,997.4823565,127.8541892,1081.160366,7,13,8% -7/11/2018 22:00,27.62639717,242.5545903,902.8868649,880.941191,122.3817469,997.4686962,871.970868,125.4978282,118.6914857,6.806342569,222.6056349,0,222.6056349,3.690261209,218.9153737,0.482171591,4.233376217,0.518961457,-0.518961457,0.441406054,0.135544941,3.519700206,113.2056575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0907707,2.673581684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550010818,108.817584,116.6407815,111.4911657,871.970868,0,0.989817342,8.183468696,-0.989817342,171.8165313,0.999485629,0,988.1631333,111.4911657,1061.131871,7,14,7% -7/11/2018 23:00,38.77943697,257.9172828,778.369475,851.7734758,114.3585607,921.4678548,804.6899487,116.7779061,110.9102282,5.867677887,192.1730234,0,192.1730234,3.448332545,188.7246909,0.676828857,4.501505782,0.795771588,-0.795771588,0.394068733,0.146920665,2.834631519,91.17149364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.61113,2.49830519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.053680886,87.63750757,108.6648109,90.13581276,804.6899487,0,0.944722948,19.13952698,-0.944722948,160.860473,0.997074431,0,911.0005832,90.13581276,969.99267,7,15,6% -7/11/2018 0:00,50.52561329,268.5604795,610.8422127,799.5110671,102.5664735,781.8005548,677.7220523,104.0785025,99.47371591,4.60478662,151.1985242,0,151.1985242,3.092757606,148.1057665,0.881838309,4.687264608,1.151049632,-1.151049632,0.33331261,0.167909931,2.050309069,65.94498756,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.6179194,2.240692358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.485441941,63.38883038,97.10336134,65.62952274,677.7220523,0,0.847670633,32.04078874,-0.847670633,147.9592113,0.991014826,0,768.7359629,65.62952274,811.6891729,7,16,6% -7/11/2018 1:00,62.33214524,277.3825027,413.2955102,704.7482731,86.04901038,583.6386842,497.0687728,86.56991136,83.45431523,3.115596132,102.8029766,0,102.8029766,2.59469515,100.2082814,1.087901164,4.841237959,1.693614742,-1.693614742,0.240528511,0.208202142,1.242038946,39.94824199,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.21946214,1.879847803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.899852989,38.39976971,81.11931513,40.27961751,497.0687728,0,0.705313928,45.14508859,-0.705313928,134.8549114,0.979109581,0,567.8041129,40.27961751,594.166317,7,17,5% -7/11/2018 2:00,73.90440233,285.6628189,204.3115075,516.2674112,61.18110154,333.2110424,272.3345904,60.87645204,59.33626559,1.540186445,51.38252638,0,51.38252638,1.844835946,49.53769044,1.289875152,4.98575674,2.815652707,-2.815652707,0.048648718,0.299450101,0.513699857,16.52235323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.03627545,1.336577363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372173798,15.88191438,57.40844925,17.21849175,272.3345904,0,0.527506839,58.16284373,-0.527506839,121.8371563,0.955214499,0,317.5463986,17.21849175,328.815557,7,18,4% -7/11/2018 3:00,84.93062514,294.1467669,26.99476633,120.8964488,16.31212752,55.61641606,39.59266142,16.02375464,15.82025669,0.203497951,7.037064461,0,7.037064461,0.49187083,6.545193631,1.482319044,5.133829566,8.08890858,-8.08890858,0,0.604270002,0.122967707,3.955064172,0.460372785,1,0.123001977,0,0.948591,0.987352963,0.724496596,1,15.33786558,0.356358742,0.064637361,0.312029739,0.833108652,0.557605248,0.961238037,0.922476074,0.084163958,3.80175812,15.42202954,4.158116862,21.36527763,0,0.327492344,70.88335853,-0.327492344,109.1166415,0.897324675,0,34.59362035,4.158116862,37.31502467,7,19,8% -7/11/2018 4:00,95.4753405,303.4065725,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666359046,5.295443662,-6.219130242,6.219130242,0.406312402,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113296178,83.49463908,-0.113296178,96.50536092,0.608678844,0,0,0,0,7,20,0% -7/11/2018 5:00,104.7280128,313.9604029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827848642,5.479642751,-1.670011816,1.670011816,0.81574253,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093687858,95.37580275,0.093687858,84.62419725,0,0.516312911,0,0,0,7,21,0% -7/11/2018 6:00,112.3394387,326.2467245,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960693086,5.694079517,-0.578538854,0.578538854,0.629089661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281960791,106.3772658,0.281960791,73.62273422,0,0.87267038,0,0,0,7,22,0% -7/11/2018 7:00,117.6733321,340.4304144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053787087,5.941631605,0.014324595,-0.014324595,0.52770404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.438696727,116.0207567,0.438696727,63.97924327,0,0.936026047,0,0,0,7,23,0% -7/12/2018 8:00,120.0990598,356.0812635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096124021,6.214790452,0.477868926,-0.477868926,0.44843329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553217593,123.5880345,0.553217593,56.41196547,0,0.959619649,0,0,0,7,0,0% -7/12/2018 9:00,119.2596151,12.07027187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081472949,0.210665986,0.947722377,-0.947722377,0.368083618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617720574,128.1498691,0.617720574,51.8501309,0,0.969057253,0,0,0,7,1,0% -7/12/2018 10:00,115.2843082,27.07695008,0,0,0,0,0,0,0,0,0,0,0,0,0,2.012090754,0.47258193,1.550225743,-1.550225743,0.265049474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627809796,128.8887175,0.627809796,51.11128252,0,0.970358044,0,0,0,7,2,0% -7/12/2018 11:00,108.7067618,40.30656276,0,0,0,0,0,0,0,0,0,0,0,0,0,1.897290913,0.70348223,2.565431913,-2.565431913,0.091438994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.582796048,125.647443,0.582796048,54.35255698,0,0.964206693,0,0,0,7,3,0% -7/12/2018 12:00,100.1868834,51.67124079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748590983,0.90183328,5.282747029,-5.282747029,0,#DIV/0!,0,0,0.27180008,1,0.187081861,0,0.94061371,0.979375673,0.724496596,1,0,0,0.041193652,0.312029739,0.889831915,0.614328511,0.961238037,0.922476074,0,0,0,0,0,0,-0.485744153,119.0612388,0.485744153,60.93876121,0,0.947065153,0,0,0,7,4,0% -7/12/2018 13:00,89.77712768,61.51136416,0.045009074,0.546238513,0.04288429,0.041930468,0,0.041930468,0.04159117,0.000339297,0.19498599,0.1827799,0.012206091,0.00129312,0.010912971,1.566906471,1.073575832,-254.2613973,254.2613973,0,0.952792104,0.00032328,0.010397793,1,0.976750357,0,0.00393294,0.961238037,1,0.713404473,0.988907877,0.039979015,0.0009308,0.115824807,0.299425185,0.724496596,0.448993192,0.963216717,0.924454754,0.000234215,0.010005957,0.04021323,0.010936757,0,0.004249567,-0.334615549,109.5491614,0.334615549,70.45083863,0,0.900574786,0.04021323,0.014763811,0.049875849,7,5,24% -7/12/2018 14:00,79.41541546,70.31960411,107.4564576,352.6573206,42.67793303,42.20108806,0,42.20108806,41.39103589,0.810052167,85.03081751,57.68985813,27.34095938,1.286897146,26.05406223,1.386060477,1.22730862,-5.351332048,5.351332048,0.554714633,0.397164898,0.592606908,19.06027523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.78663808,0.932352601,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.429341687,18.32146154,40.21597977,19.25381414,0,57.68985813,-0.163586164,99.41511168,0.163586164,80.58488832,0,0.744350678,40.21597977,62.19529915,80.92155916,7,6,101% -7/12/2018 15:00,68.060894,78.63757186,310.4384123,629.0452361,75.41392086,99.02878684,23.54865806,75.48012878,73.1399129,2.340215882,77.54339516,0,77.54339516,2.274007962,75.2693872,1.187886692,1.372484545,-2.454522121,2.454522121,0.949901693,0.242927157,2.251456016,72.41456481,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.30486629,1.647511027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.631172219,69.60763411,71.93603851,71.25514514,23.54865806,0,0.037435556,87.85459935,-0.037435556,92.14540065,0,0,71.93603851,71.25514514,118.5711059,7,7,65% -7/12/2018 16:00,56.34005768,87.10333682,516.429242,759.8602747,95.2670795,285.3015589,189.0140716,96.28748732,92.39442556,3.893061767,128.0869027,0,128.0869027,2.872653945,125.2142487,0.983319507,1.520240017,-1.435298351,1.435298351,0.775604163,0.184472667,3.180627811,102.2999237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.81303624,2.081228004,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.304354022,98.33457786,91.11739026,100.4158059,189.0140716,0,0.248748458,75.59653526,-0.248748458,104.4034647,0.848993729,0,251.5891517,100.4158059,317.3092883,7,8,26% -7/12/2018 17:00,44.52735304,96.6685063,700.48481,829.4193778,109.1786695,489.0463338,377.8792537,111.1670801,105.8865297,5.280550384,173.1327918,0,173.1327918,3.29213971,169.8406521,0.777148918,1.687183718,-0.878995175,0.878995175,0.680470717,0.15586158,3.856243668,124.0300521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.78216,2.385144013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79383541,119.2224038,104.5759954,121.6075478,377.8792537,0,0.455594918,62.89678115,-0.455594918,117.1032189,0.940253385,0,459.8782429,121.6075478,539.4679508,7,9,17% -7/12/2018 18:00,32.9993109,109.2239848,847.3591231,868.4608271,119.0008992,680.9118807,559.1115466,121.8003341,115.4125831,6.387750996,209.040346,0,209.040346,3.588316179,205.4520298,0.575946626,1.906318156,-0.503069727,0.503069727,0.61618368,0.140437385,4.280341492,137.670496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9389648,2.599722856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.10109284,132.3341173,114.0400576,134.9338401,559.1115466,0,0.643795931,49.92454158,-0.643795931,130.0754584,0.972335638,0,657.6841402,134.9338401,745.9956399,7,10,13% -7/12/2018 19:00,22.64029275,129.5181731,946.0639741,889.4025364,125.1990315,840.51684,711.9611913,128.5556487,121.4238188,7.131829856,233.1593764,0,233.1593764,3.775212736,229.3841637,0.395147652,2.260518563,-0.211572722,0.211572722,0.566334756,0.13233675,4.448297759,143.0725469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7171932,2.735128776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.222776584,137.5267741,119.9399698,140.2619029,711.9611913,0,0.800493772,36.82271997,-0.800493772,143.17728,0.987538552,0,823.0290939,140.2619029,914.827704,7,11,11% -7/12/2018 20:00,16.27217387,167.7617996,989.4633198,897.5721962,127.8465314,952.722596,821.2721168,131.4504792,123.9914867,7.458992456,243.7618821,0,243.7618821,3.855044624,239.9068375,0.28400301,2.927995762,0.039421653,-0.039421653,0.52341219,0.129207954,4.363444394,140.343371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1853333,2.792966707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.16130061,134.9033864,122.3466339,137.6963531,821.2721168,0,0.914992822,23.79529229,-0.914992822,156.2047077,0.995354763,0,939.8037468,137.6963531,1029.923256,7,12,10% -7/12/2018 21:00,18.71103174,214.614971,974.4551207,894.8114738,126.9357493,1006.903667,876.4496443,130.4540224,123.1081681,7.345854311,240.095507,0,240.095507,3.827581184,236.2679259,0.32656911,3.745737868,0.276131731,-0.276131731,0.482932383,0.13026331,4.042330495,130.0152441,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3362538,2.773069538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.928654683,124.975598,121.2649085,127.7486676,876.4496443,0,0.979479667,11.62720419,-0.979479667,168.3727958,0.998952488,0,996.7964613,127.7486676,1080.405409,7,13,8% -7/12/2018 22:00,27.69602389,242.2854765,902.0967039,880.5093878,122.4709028,996.8896986,871.3113594,125.5783392,118.7779532,6.800386001,222.4167396,0,222.4167396,3.692949588,218.72379,0.483386807,4.228679294,0.520172244,-0.520172244,0.441198997,0.135762499,3.516229466,113.0940266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1738865,2.675529405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.547496278,108.7102801,116.7213828,111.3858095,871.3113594,0,0.989553742,8.288898014,-0.989553742,171.711102,0.999472173,0,987.5728408,111.3858095,1060.472625,7,14,7% -7/12/2018 23:00,38.83276753,257.7051062,777.5615231,851.2725443,114.4376775,920.8996957,804.0511492,116.8485465,110.9869593,5.861587204,191.9795118,0,191.9795118,3.450718206,188.5287936,0.677759651,4.497802602,0.797694879,-0.797694879,0.393739831,0.147175078,2.830948607,91.05303851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6848869,2.500033594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.051012629,87.52364399,108.7358995,90.02367758,804.0511492,0,0.944528465,19.17348421,-0.944528465,160.8265158,0.997063533,0,910.425979,90.02367758,969.3446755,7,15,6% -7/12/2018 0:00,50.57445866,268.3857383,609.9564951,798.8563289,102.6228763,781.143669,677.0171413,104.1265276,99.52841793,4.598109707,150.9854724,0,150.9854724,3.094458358,147.8910141,0.882690821,4.6842148,1.154226752,-1.154226752,0.33276929,0.168246223,2.046289115,65.815692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.67050106,2.241924547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482529498,63.26454657,97.15303056,65.50647112,677.0171413,0,0.847482979,32.0610494,-0.847482979,147.9389506,0.991001765,0,768.0782125,65.50647112,810.9508877,7,16,6% -7/12/2018 1:00,62.38284563,277.2306851,412.2879797,703.7460736,86.05850405,582.7620325,496.1905089,86.57152358,83.46352263,3.108000942,102.5589754,0,102.5589754,2.594981419,99.96399398,1.088786053,4.838588242,1.699588531,-1.699588531,0.239506933,0.208733963,1.237754118,39.8104272,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22831265,1.880055205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.896748645,38.26729688,81.12506129,40.14735209,496.1905089,0,0.705070376,45.16477008,-0.705070376,134.8352299,0.979085093,0,566.9377919,40.14735209,593.2134309,7,17,5% -7/12/2018 2:00,73.96105869,285.5251498,203.1956282,514.3730839,61.07917122,331.9207893,271.151606,60.76918332,59.23740885,1.531774476,51.10889494,0,51.10889494,1.84176237,49.26713257,1.290863992,4.983353961,2.831005717,-2.831005717,0.046023199,0.30059294,0.509746805,16.3952095,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.94125059,1.334350568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.369309825,15.75969899,57.31056041,17.09404956,271.151606,0,0.527149679,58.18692837,-0.527149679,121.8130716,0.955150279,0,316.3010925,17.09404956,327.488806,7,18,4% -7/12/2018 3:00,84.9953087,294.018195,26.23631409,117.7052316,15.96802637,54.17295907,38.4886472,15.68431188,15.48653146,0.197780418,6.842793015,0,6.842793015,0.481494911,6.361298104,1.483447986,5.131585564,8.211825547,-8.211825547,0,0.608623083,0.120373728,3.871632865,0.466425117,1,0.121178953,0,0.948804307,0.98756627,0.724496596,1,15.01398654,0.348841424,0.065332402,0.312029739,0.831493569,0.555990165,0.961238037,0.922476074,0.082394838,3.721560774,15.09638138,4.070402198,20.53657543,0,0.326991814,70.91370781,-0.326991814,109.0862922,0.897090973,0,33.51955783,4.070402198,36.18355466,7,19,8% -7/12/2018 4:00,95.55426545,303.2849601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667736546,5.293321126,-6.147723983,6.147723983,0.418523591,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112560412,83.53706674,-0.112560412,96.46293326,0.605794093,0,0,0,0,7,20,0% -7/12/2018 5:00,104.8223002,313.8468236,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829494268,5.477660419,-1.66563153,1.66563153,0.814993457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094657502,95.43160726,0.094657502,84.56839274,0,0.521779847,0,0,0,7,21,0% -7/12/2018 6:00,112.4509218,326.1464687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962638833,5.692329722,-0.579464349,0.579464349,0.629247929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.28317444,106.4497569,0.28317444,73.55024308,0,0.873430391,0,0,0,7,22,0% -7/12/2018 7:00,117.8015251,340.3533136,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056024477,5.940285942,0.011694951,-0.011694951,0.528153735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440147808,116.1133123,0.440147808,63.88668774,0,0.936401797,0,0,0,7,23,0% -7/13/2018 8:00,120.2397389,356.0384597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098579336,6.214043386,0.473944518,-0.473944518,0.449104404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.554883271,123.7026752,0.554883271,56.29732485,0,0.959890958,0,0,0,7,0,0% -7/13/2018 9:00,119.405294,12.06709577,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084015525,0.210610552,0.942013484,-0.942013484,0.369059896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619563307,128.2842519,0.619563307,51.71574813,0,0.969297997,0,0,0,7,1,0% -7/13/2018 10:00,115.4273181,27.10918134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.014586748,0.473144472,1.541064734,-1.541064734,0.266616099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629779911,129.0338866,0.629779911,50.96611337,0,0.970607185,0,0,0,7,2,0% -7/13/2018 11:00,108.8421346,40.36484275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899653614,0.704499408,2.547092392,-2.547092392,0.094575237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584835153,125.7913452,0.584835153,54.20865479,0,0.964505823,0,0,0,7,3,0% -7/13/2018 12:00,100.3127845,51.7472193,0,0,0,0,0,0,0,0,0,0,0,0,0,1.750788372,0.903159356,5.219153037,-5.219153037,0,#DIV/0!,0,0,0.265987191,1,0.189307644,0,0.940320076,0.979082039,0.724496596,1,0,0,0.040411388,0.312029739,0.891799685,0.616296281,0.961238037,0.922476074,0,0,0,0,0,0,-0.487789163,119.195373,0.487789163,60.80462704,0,0.947496698,0,0,0,7,4,0% -7/13/2018 13:00,89.87499563,61.60020357,0.021037983,0.403155108,0.020158405,0.019709148,0,0.019709148,0.019550555,0.000158593,0.141289927,0.135581174,0.005708753,0.00060785,0.005100903,1.568614589,1.075126372,-453.4327179,453.4327179,0,0.958190953,0.000151963,0.004887639,1,0.987025071,0,0.002205395,0.961238037,1,0.718261838,0.993765242,0.018792737,0.000438769,0.115824807,0.30494452,0.724496596,0.448993192,0.962354283,0.92359232,0.000110096,0.004701182,0.018902833,0.00513995,0,0.001759156,-0.336300276,109.6516265,0.336300276,70.34837353,0,0.901323345,0.018902833,0.006725519,0.023304551,7,5,23% -7/13/2018 14:00,79.52348917,70.41986759,105.5802139,348.180795,42.26966029,41.79098233,0,41.79098233,40.99507408,0.79590825,84.47777285,57.60404139,26.87373145,1.274586216,25.59914524,1.387946719,1.229058548,-5.407743994,5.407743994,0.545067622,0.400355888,0.578786452,18.61576186,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.40602453,0.923433375,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.419328814,17.89417839,39.82535334,18.81761176,0,57.60404139,-0.165442903,99.52296455,0.165442903,80.47703545,0,0.747780931,39.82535334,61.89281548,80.33296321,7,6,102% -7/13/2018 15:00,68.16385293,78.75061693,308.4647651,626.9281714,75.27661888,97.7365219,22.40443313,75.33208877,73.00675108,2.325337695,77.06072138,0,77.06072138,2.2698678,74.79085358,1.189683665,1.374457553,-2.466561853,2.466561853,0.951960609,0.244036361,2.240890655,72.07474648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.17686608,1.644511494,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.623517651,69.28098781,71.80038373,70.92549931,22.40443313,0,0.035736842,87.95199369,-0.035736842,92.04800631,0,0,71.80038373,70.92549931,118.2197045,7,7,65% -7/13/2018 16:00,56.44016184,87.23309285,514.6327846,758.6707803,95.23383262,283.8272395,187.585539,96.2417005,92.36218119,3.879519312,127.6503283,0,127.6503283,2.871651429,124.7786768,0.985066654,1.522504687,-1.439740665,1.439740665,0.776363844,0.185052013,3.172469797,102.037534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.78204172,2.080501685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.298443569,98.08235885,91.08048529,100.1628605,187.585539,0,0.247255521,75.68483272,-0.247255521,104.3151673,0.847780046,0,250.1117623,100.1628605,315.6663512,7,8,26% -7/13/2018 17:00,44.62855867,96.82152221,698.9158053,828.6333487,109.1973594,487.6497913,376.4764126,111.1733787,105.9046561,5.268722564,172.752932,0,172.752932,3.29270328,169.4602288,0.778915289,1.689854349,-0.880919913,0.880919913,0.680799867,0.156238217,3.849703452,123.8196963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7995837,2.385552318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.789097046,119.0202018,104.5886808,121.4057541,376.4764126,0,0.454334131,62.97790076,-0.454334131,117.0220992,0.939948836,0,458.4572466,121.4057541,537.9148845,7,9,17% -7/13/2018 18:00,33.10831341,109.4070474,846.0168161,867.8745955,119.0507996,679.6880588,557.8494479,121.8386108,115.4609787,6.377632119,208.7163928,0,208.7163928,3.589820858,205.1265719,0.577849079,1.909513202,-0.503847548,0.503847548,0.616316695,0.140719188,4.274979731,137.4980433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9854845,2.600812991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.097208263,132.1683492,114.0826928,134.7691622,557.8494479,0,0.642776561,50.00082637,-0.642776561,129.9991736,0.972212472,0,656.4308833,134.7691622,744.6346046,7,10,13% -7/13/2018 19:00,22.76841392,129.7104611,944.9220405,888.9207009,125.2690261,839.4919532,710.8770289,128.6149242,121.4917027,7.123221478,232.884612,0,232.884612,3.77732333,229.1072887,0.397383788,2.263874621,-0.211690509,0.211690509,0.566354899,0.132570753,4.443775818,142.9271057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7824458,2.736657894,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.219500453,137.3869705,120.0019463,140.1236284,710.8770289,0,0.799708037,36.89776901,-0.799708037,143.102231,0.987477182,0,821.9767916,140.1236284,913.6849039,7,11,11% -7/13/2018 20:00,16.42047741,167.7579494,988.4778921,897.1408275,127.9287431,951.8832164,820.360433,131.5227834,124.0712195,7.451563886,243.5254328,0,243.5254328,3.857523612,239.6679092,0.286591396,2.927928563,0.039781677,-0.039781677,0.523350622,0.129419934,4.359452153,140.2149668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2619755,2.794762725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.158408245,134.7799594,122.4203837,137.5747221,820.360433,0,0.914416564,23.87699317,-0.914416564,156.1230068,0.995320326,0,938.941797,137.5747221,1028.981701,7,12,10% -7/13/2018 21:00,18.82560305,214.3210961,973.5699681,894.3921322,127.023201,1006.208295,875.6761307,130.5321645,123.1929828,7.339181657,239.8835285,0,239.8835285,3.830218176,236.0533104,0.328568757,3.740608784,0.276934017,-0.276934017,0.482795183,0.130471569,4.038573377,129.8944023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.417781,2.77498003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925932664,124.8594403,121.3437136,127.6344203,875.6761307,0,0.979074054,11.74195571,-0.979074054,168.2580443,0.99893134,0,996.0840443,127.6344203,1079.61822,7,13,8% -7/13/2018 22:00,27.77160612,242.0100783,901.2483301,880.0649935,122.5562698,996.2748353,870.6200986,125.6547367,118.8607461,6.793990601,222.2136156,0,222.2136156,3.695523719,218.5180919,0.484705965,4.223872689,0.521495009,-0.521495009,0.440972791,0.135985017,3.512439574,112.9721306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2534702,2.677394355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.544750514,108.5931091,116.7982207,111.2705034,870.6200986,0,0.989267957,8.401715964,-0.989267957,171.598284,0.999457577,0,986.9460746,111.2705034,1059.770394,7,14,7% -7/13/2018 23:00,38.89141993,257.4867642,776.6847365,850.7530194,114.5120326,920.2828712,803.3688213,116.9140499,111.0590723,5.854977617,191.7691668,0,191.7691668,3.452960287,188.3162065,0.678783329,4.493991815,0.799774349,-0.799774349,0.393384221,0.147436955,2.826910857,90.9231706,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7542046,2.501657974,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.048087293,87.39881002,108.8022919,89.90046799,803.3688213,0,0.944303227,19.21273916,-0.944303227,160.7872608,0.997050906,0,909.8019033,89.90046799,968.6399616,7,15,6% -7/13/2018 0:00,50.62834936,268.2056121,608.9913571,798.1710762,102.6730555,780.4220997,676.2541815,104.1679182,99.57708408,4.590834089,150.7529766,0,150.7529766,3.095971447,147.6570052,0.883631391,4.681071004,1.157645001,-1.157645001,0.332184735,0.168595259,2.041889253,65.67417734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.71728081,2.243020774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.479341813,63.12851729,97.19662263,65.37153807,676.2541815,0,0.847254682,32.08568278,-0.847254682,147.9143172,0.990985868,0,767.3549594,65.37153807,810.1393236,7,16,6% -7/13/2018 1:00,62.43854321,277.0741648,411.1920252,702.686593,86.05909608,581.80026,495.236424,86.56383598,83.46409681,3.099739174,102.2932664,0,102.2932664,2.594999271,99.69826712,1.089758159,4.835856449,1.706007005,-1.706007005,0.238409309,0.209291744,1.233088498,39.6603648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22886457,1.880068138,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.893368419,38.1230512,81.12223298,40.00311934,495.236424,0,0.704775684,45.18857528,-0.704775684,134.8114247,0.979055441,0,565.9861485,40.00311934,592.16739,7,17,5% -7/13/2018 2:00,74.02280457,285.3833185,201.9885344,512.3505429,60.96162012,330.517054,269.8709768,60.64607724,59.12340235,1.522674893,50.81267648,0,50.81267648,1.838217771,48.97445871,1.291941661,4.980878539,2.847553525,-2.847553525,0.043193357,0.301807329,0.505474184,16.25778732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83166321,1.331782518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.366214326,15.62760356,57.19787753,16.95938608,269.8709768,0,0.526731123,58.21514513,-0.526731123,121.7848549,0.955074909,0,314.944876,16.95938608,326.044455,7,18,4% -7/13/2018 3:00,85.06514568,293.8859253,25.43016213,114.3126106,15.59664765,52.63228395,37.31422947,15.31805448,15.12635118,0.191703304,6.636133701,0,6.636133701,0.470296472,6.165837229,1.484666871,5.129277022,8.347183448,-8.347183448,0,0.613312946,0.117574118,3.781587795,0.472934877,1,0.119232637,0,0.949031198,0.987793161,0.724496596,1,14.66441172,0.340728193,0.066076293,0.312029739,0.829769232,0.554265828,0.961238037,0.922476074,0.080486655,3.635006028,14.74489838,3.975734221,19.66702896,0,0.326422686,70.94820968,-0.326422686,109.0517903,0.896824372,0,32.38276928,3.975734221,34.98480781,7,19,8% -7/13/2018 4:00,95.63880289,303.1601324,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669212003,5.291142471,-6.072646298,6.072646298,0.431362632,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111745071,83.58407893,-0.111745071,96.41592107,0.602552972,0,0,0,0,7,20,0% -7/13/2018 5:00,104.9225333,313.7306578,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831243665,5.475632944,-1.660752152,1.660752152,0.814159034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095712866,95.49235099,0.095712866,84.50764901,0,0.527604191,0,0,0,7,21,0% -7/13/2018 6:00,112.5686595,326.0445669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.964693742,5.690551201,-0.580261141,0.580261141,0.629384189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284477487,106.527618,0.284477487,73.47238201,0,0.874239167,0,0,0,7,22,0% -7/13/2018 7:00,117.9361372,340.2759615,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058373901,5.938935894,0.009082774,-0.009082774,0.528600444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441689244,116.2117113,0.441689244,63.78828867,0,0.93679824,0,0,0,7,23,0% -7/14/2018 8:00,120.3867057,355.997187,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10114439,6.213323041,0.469981874,-0.469981874,0.449782056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.556637471,123.823574,0.556637471,56.17642605,0,0.96017493,0,0,0,7,0,0% -7/14/2018 9:00,119.5567578,12.06721482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086659067,0.21061263,0.936221737,-0.936221737,0.370050343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621490066,128.4250288,0.621490066,51.5749712,0,0.969548191,0,0,0,7,1,0% -7/14/2018 10:00,115.5753379,27.14599804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01717018,0.473787044,1.531766769,-1.531766769,0.268206145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631827198,129.1850589,0.631827198,50.81494111,0,0.970864439,0,0,0,7,2,0% -7/14/2018 11:00,108.9816666,40.42842375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902088907,0.705609106,2.528535988,-2.528535988,0.097748569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586942693,125.9403513,0.586942693,54.05964873,0,0.964812808,0,0,0,7,3,0% -7/14/2018 12:00,100.4420704,51.8288375,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753044837,0.904583862,5.155523115,-5.155523115,0,#DIV/0!,0,0,0.260077388,1,0.191587673,0,0.940018148,0.978780111,0.724496596,1,0,0,0.039612128,0.312029739,0.893815202,0.618311798,0.961238037,0.922476074,0,0,0,0,0,0,-0.489892586,119.3335218,0.489892586,60.66647817,0,0.94793681,0,0,0,7,4,0% -7/14/2018 13:00,89.97466325,61.69488325,0.003507877,0.291196788,0.003379107,0.003303658,0,0.003303658,0.003277214,2.64E-05,0.099382106,0.098429688,0.000952418,0.000101893,0.000850525,1.570354117,1.076778844,-2237.655074,2237.655074,0,0.963291174,2.55E-05,0.000819304,1,0.997383512,0,0.000446896,0.961238037,1,0.723230136,0.99873354,0.003150183,7.38E-05,0.115824807,0.310590465,0.724496596,0.448993192,0.961465617,0.922703654,1.85E-05,0.000787649,0.003168638,0.000861414,0,0.00025754,-0.338017767,109.7561517,0.338017767,70.24384832,0,0.902078782,0.003168638,0.001093736,0.003884467,7,5,23% -7/14/2018 14:00,79.63381352,70.52620753,103.6732418,343.5936583,41.84746211,41.36713941,0,41.36713941,40.58560672,0.781532688,83.89436647,57.49573333,26.39863315,1.261855383,25.13677776,1.389872242,1.23091453,-5.466509495,5.466509495,0.53501813,0.403647666,0.564819126,18.16652466,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.01242893,0.91420993,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.409209534,17.4623545,39.42163847,18.37656443,0,57.49573333,-0.167336422,99.63298895,0.167336422,80.36701105,0,0.751200734,39.42163847,61.56740151,79.7162714,7,6,102% -7/14/2018 15:00,68.26878563,78.87013442,306.4551719,624.7669948,75.13338788,96.42667993,21.24865237,75.17802755,72.86783902,2.310188533,76.5691533,0,76.5691533,2.265548857,74.30360444,1.191515086,1.376543527,-2.47890391,2.47890391,0.954071225,0.245169261,2.230097874,71.72761355,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.04333853,1.641382435,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.615698319,68.94731044,71.65903685,70.58869288,21.24865237,0,0.034010523,88.05096469,-0.034010523,91.94903531,0,0,71.65903685,70.58869288,117.8579246,7,7,64% -7/14/2018 16:00,56.54212533,87.36999647,512.803556,757.461289,95.19716384,282.3331665,186.1408185,96.19234793,92.32661811,3.865729814,127.2057049,0,127.2057049,2.87054573,124.3351592,0.986846253,1.524894106,-1.444242233,1.444242233,0.777133657,0.185640608,3.164125756,101.7691609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.74785714,2.07970061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292398339,97.82438846,91.04025548,99.90408907,186.1408185,0,0.245743012,75.77425234,-0.245743012,104.2257477,0.846535415,0,248.6150505,99.90408907,314.0002787,7,8,26% -7/14/2018 17:00,44.73175225,96.98279475,697.3159487,827.8357633,109.2135112,486.2360628,375.0590798,111.176983,105.9203209,5.256662169,172.3655153,0,172.3655153,3.293190317,169.072325,0.780716357,1.692669086,-0.88283732,0.88283732,0.681127763,0.156619838,3.842985284,123.6036169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8146413,2.385905174,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784229757,118.8124981,104.5988711,121.1984033,375.0590798,0,0.453059769,63.05983431,-0.453059769,116.9401657,0.939639285,0,457.0191167,121.1984033,536.3410476,7,9,17% -7/14/2018 18:00,33.21982449,109.6000762,844.6430012,867.2799652,119.0984333,678.4488799,556.574428,121.8744519,115.5071761,6.367275722,208.3847318,0,208.3847318,3.591257192,204.7934746,0.579795314,1.91288219,-0.50459003,0.50459003,0.616443667,0.141004464,4.269429154,137.3195176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0298912,2.60185361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.093186888,131.9967436,114.1230781,134.5985972,556.574428,0,0.641747129,50.07777776,-0.641747129,129.9222222,0.972087692,0,655.1622293,134.5985972,743.2543191,7,10,13% -7/14/2018 19:00,22.90025566,129.914631,943.7451497,888.4313596,125.33669,838.4510567,709.7793808,128.671676,121.5573264,7.114349578,232.6013015,0,232.6013015,3.779363647,228.8219379,0.399684861,2.267438057,-0.211755737,0.211755737,0.566366053,0.132807771,4.439041186,142.7748236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8455258,2.738136097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.216070228,137.2405912,120.061596,139.9787273,709.7793808,0,0.79891302,36.97357156,-0.79891302,143.0264284,0.987414964,0,820.9083778,139.9787273,912.5216553,7,11,11% -7/14/2018 20:00,16.5745256,167.7644035,987.4514305,896.7015067,128.0083195,951.0240773,819.4318549,131.5922224,124.1483964,7.443825984,243.2789548,0,243.2789548,3.859923134,239.4190316,0.289280044,2.928041209,0.040209668,-0.040209668,0.523277431,0.129635054,4.355214259,140.0786615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.3361608,2.796501171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.155337905,134.6489376,122.4914987,137.4454388,819.4318549,0,0.913829015,23.96002475,-0.913829015,156.0399752,0.995285169,0,938.059871,137.4454388,1028.015162,7,12,10% -7/14/2018 21:00,18.94693659,214.0266075,972.6354861,893.9631824,127.107507,1005.486179,874.8792954,130.6068838,123.2747467,7.332137137,239.6594947,0,239.6594947,3.832760312,235.8267344,0.330686427,3.735468988,0.277822744,-0.277822744,0.482643202,0.1306836,4.034532297,129.7644273,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4963755,2.776821799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.923004915,124.7345033,121.4193804,127.5113251,874.8792954,0,0.978652491,11.86005944,-0.978652491,168.1399406,0.998909342,0,995.3444815,127.5113251,1078.798094,7,13,8% -7/14/2018 22:00,27.85320748,241.7288019,900.3407161,879.6077084,122.6377722,995.6231066,869.8961672,125.7269395,118.9397908,6.787148624,221.9960117,0,221.9960117,3.697981316,218.2980304,0.486130178,4.218963491,0.522930981,-0.522930981,0.440727225,0.136212625,3.508326247,112.8398319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3294511,2.679174875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541770423,108.4659385,116.8712215,111.1451134,869.8961672,0,0.988959236,8.521922608,-0.988959236,171.4780774,0.999441799,0,986.2818116,111.1451134,1059.024065,7,14,7% -7/14/2018 23:00,38.95546475,257.2624971,775.7379618,850.2144643,114.5815312,919.616068,802.6417524,116.9743157,111.1264753,5.847840429,191.5417059,0,191.5417059,3.455055926,188.08665,0.679901121,4.490077616,0.802011595,-0.802011595,0.393001629,0.14770649,2.822514146,90.78175726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8189949,2.503176257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.04490189,87.26287813,108.8638968,89.76605439,802.6417524,0,0.944046221,19.25743651,-0.944046221,160.7425635,0.997036492,0,909.1270136,89.76605439,967.8771009,7,15,6% -7/14/2018 0:00,50.6873489,268.0202664,607.9456404,797.4546205,102.716891,779.6343011,675.4317523,104.2025488,99.61959774,4.582951035,150.5007523,0,150.5007523,3.097293248,147.4034591,0.884661127,4.67783611,1.16130713,-1.16130713,0.331558474,0.168957361,2.037106108,65.52033495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.75814657,2.243978415,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.475876441,62.98063814,97.23402301,65.22461655,675.4317523,0,0.846984562,32.11480716,-0.846984562,147.8851928,0.990967047,0,766.5646319,65.22461655,809.252839,7,16,6% -7/14/2018 1:00,62.49929094,276.9130707,410.0066294,701.5685733,86.05061246,580.7516426,494.2049704,86.54667216,83.455869,3.09080316,102.0055977,0,102.0055977,2.594743459,99.4108542,1.090818407,4.833044825,1.712877046,-1.712877046,0.237234463,0.209876149,1.22804025,39.49799581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.22095568,1.879882803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.889710981,37.96697595,81.11066666,39.84685875,494.2049704,0,0.704428604,45.21659973,-0.704428604,134.7834003,0.979020486,0,564.9474569,39.84685875,591.0264291,7,17,5% -7/14/2018 2:00,74.08968074,285.2374339,200.6896375,510.1969778,60.82810089,328.9979373,268.4911449,60.50679248,58.99390922,1.512883259,50.4937178,0,50.4937178,1.834191674,48.65952612,1.293108871,4.978332371,2.865327999,-2.865327999,0.040153743,0.303095375,0.500883429,16.11013285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.70718948,1.328865624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.362888339,15.48567247,57.07007782,16.8145381,268.4911449,0,0.526249971,58.24757113,-0.526249971,121.7524289,0.954988118,0,313.475931,16.8145381,324.4807099,7,18,4% -7/14/2018 3:00,85.14015469,293.7500547,24.57842151,110.723333,15.19809221,50.9969933,36.07189713,14.92509618,14.73981365,0.185282523,6.417601409,0,6.417601409,0.458278555,5.959322854,1.485976025,5.126905632,8.495962783,-8.495962783,0,0.618351028,0.114569639,3.684953414,0.47990929,1,0.117163886,0,0.949271406,0.988033369,0.724496596,1,14.28923439,0.332021253,0.06686908,0.312029739,0.827936402,0.552432998,0.961238037,0.922476074,0.078440062,3.542117385,14.36767445,3.874138638,18.7606586,0,0.325784061,70.98691613,-0.325784061,109.0130839,0.896524106,0,31.18705713,3.874138638,33.72260339,7,19,8% -7/14/2018 4:00,95.72896799,303.0321793,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670785681,5.288909268,-5.99424736,5.99424736,0.44476964,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.110849325,83.63572226,-0.110849325,96.36427774,0.598937263,0,0,0,0,7,20,0% -7/14/2018 5:00,105.0287129,313.6119913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833096849,5.473561822,-1.655382707,1.655382707,0.813240805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.096854466,95.55806515,0.096854466,84.44193485,0,0.533761542,0,0,0,7,21,0% -7/14/2018 6:00,112.6926372,325.941104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966857562,5.688745433,-0.580926627,0.580926627,0.629497994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285870077,106.6108643,0.285870077,73.38913571,0,0.87509537,0,0,0,7,22,0% -7/14/2018 7:00,118.0771376,340.1984462,0,0,0,0,0,0,0,0,0,0,0,0,0,2.060834823,5.937582996,0.006492853,-0.006492853,0.529043346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.44332078,116.3159527,0.44332078,63.6840473,0,0.937214851,0,0,0,7,23,0% -7/15/2018 8:00,120.539911,355.9575387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103818327,6.212631047,0.465987299,-0.465987299,0.450465168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.558479536,123.9507126,0.558479536,56.04928742,0,0.960471205,0,0,0,7,0,0% -7/15/2018 9:00,119.7139382,12.0707215,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089402382,0.210673833,0.93035588,-0.93035588,0.371053464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623499813,128.5721623,0.623499813,51.42783775,0,0.969807514,0,0,0,7,1,0% -7/15/2018 10:00,115.7282828,27.1874786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019839573,0.474511017,1.522345922,-1.522345922,0.269817204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633950294,129.3421732,0.633950294,50.65782683,0,0.971129463,0,0,0,7,2,0% -7/15/2018 11:00,109.1252632,40.49736133,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904595139,0.706812294,2.509792281,-2.509792281,0.100953932,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589117053,126.0943766,0.589117053,53.90562341,0,0.965127223,0,0,0,7,3,0% -7/15/2018 12:00,100.5746434,51.91612731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75535867,0.906107356,5.091965051,-5.091965051,0,#DIV/0!,0,0,0.254078486,1,0.193919925,0,0.939708117,0.97847008,0.724496596,1,0,0,0.03879671,0.312029739,0.895876663,0.620373259,0.961238037,0.922476074,0,0,0,0,0,0,-0.492052647,119.4755856,0.492052647,60.5244144,0,0.948384857,0,0,0,7,4,0% -7/15/2018 13:00,90.07614619,61.79541474,0,0,0,0,0,0,0,0,0,0,0,0,0,1.572125329,1.07853345,744.7425883,-744.7425883,0,#DIV/0!,0,0,0.992177008,1,0.001342745,0,0.961119437,0.999881401,0.724496596,1,0,0,0.115212273,0.312029739,0.725671896,0.450168492,0.961238037,0.922476074,0,0,0,0,0,0,-0.339768057,109.8627435,0.339768057,70.1372565,0,0.902840787,0,0,0,7,5,0% -7/15/2018 14:00,79.74629804,70.63861821,101.7376121,338.8975673,41.41143041,40.92966409,0,40.92966409,40.16272299,0.766941094,83.2796389,57.36346954,25.91616936,1.248707419,24.66746194,1.391835467,1.232876467,-5.527689259,5.527689259,0.524555774,0.407041502,0.550726062,17.71324328,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.605937,0.904684274,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.398999157,17.02664319,39.00493616,17.93132747,0,57.36346954,-0.16926492,99.7450827,0.16926492,80.2549173,0,0.754605065,39.00493616,61.21809213,79.07095309,7,6,103% -7/15/2018 15:00,68.37561058,78.99610255,304.4111189,622.5621984,74.98430914,95.10079532,20.08276017,75.01803515,72.72325556,2.294779598,76.0690537,0,76.0690537,2.261053583,73.80800012,1.193379533,1.378742086,-2.491543675,2.491543675,0.956232752,0.246325789,2.219083433,71.37335126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.9043594,1.638125624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.607718393,68.60678005,71.5120778,70.24490567,20.08276017,0,0.032258239,88.15141835,-0.032258239,91.84858165,0,0,71.5120778,70.24490567,117.4859637,7,7,64% -7/15/2018 16:00,56.64587685,87.51400756,510.9426709,756.2320583,95.15713544,280.8206912,184.6811928,96.13949839,92.28779672,3.851701677,126.7533048,0,126.7533048,2.869338726,123.8839661,0.988657059,1.527407573,-1.448799043,1.448799043,0.777912918,0.18623838,3.155599256,101.4949194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.71054054,2.078826139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286220919,97.56077705,90.99676146,99.63960319,184.6811928,0,0.24421233,75.86471034,-0.24421233,104.1352897,0.845260133,0,247.100411,99.63960319,312.3125385,7,8,26% -7/15/2018 17:00,44.83687445,97.15225636,695.6859491,827.0267184,109.2271604,484.8062042,373.6282712,111.177933,105.9335585,5.244374543,171.9707146,0,171.9707146,3.29360189,168.6771127,0.782551085,1.695626749,-0.884744685,0.884744685,0.681453942,0.15700642,3.836090679,123.3818627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8273658,2.386203357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779234638,118.5993395,104.6066004,120.9855428,373.6282712,0,0.451772915,63.14251066,-0.451772915,116.8574893,0.939324928,0,455.5649493,120.9855428,534.7475673,7,9,17% -7/15/2018 18:00,33.33379734,109.8029502,843.2379627,866.6769281,119.1438097,677.1950118,555.2871436,121.9078682,115.5511843,6.356683948,208.0454322,0,208.0454322,3.592625457,204.4528067,0.581784516,1.91642301,-0.505295257,0.505295257,0.616564268,0.141293223,4.263689427,137.1349083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0721935,2.602844914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.089028476,131.81929,114.161222,134.422135,555.2871436,0,0.640708349,50.15534041,-0.640708349,129.8446596,0.971961373,0,653.8788764,134.422135,741.8554752,7,10,13% -7/15/2018 19:00,23.03577475,130.1304568,942.5331728,887.9344288,125.402008,837.3943797,708.6684917,128.7258879,121.6206748,7.105213184,232.3094132,0,232.3094132,3.781333225,228.52808,0.402050115,2.271204928,-0.211766944,0.211766944,0.56636797,0.133047846,4.434091967,142.6156398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9064186,2.739563049,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.212484536,137.0875776,120.1189032,139.8271406,708.6684917,0,0.798109037,37.05009381,-0.798109037,142.9499062,0.987351918,0,819.8240981,139.8271406,911.3381651,7,11,11% -7/15/2018 20:00,16.73425095,167.781106,986.3834335,896.2540856,128.0852227,950.1449576,818.4862021,131.6587556,124.2229806,7.435774972,243.0223254,0,243.0223254,3.862242048,239.1600834,0.292067777,2.928332722,0.040706837,-0.040706837,0.52319241,0.12985338,4.350727611,139.9343555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.407854,2.798181216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152087344,134.5102252,122.5599414,137.3084064,818.4862021,0,0.913230093,24.04438585,-0.913230093,155.9556141,0.995249286,0,937.1577492,137.3084064,1027.023355,7,12,10% -7/15/2018 21:00,19.07502974,213.7320956,971.6508683,893.5244081,127.1886092,1004.736672,874.0585542,130.678118,123.3534034,7.324714672,239.4232082,0,239.4232082,3.835205843,235.5880024,0.332922074,3.730328785,0.27879903,-0.27879903,0.482476248,0.130899496,4.030203379,129.6251944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5719833,2.778593578,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.919868629,124.6006674,121.4918519,127.379261,874.0585542,0,0.978214525,11.98154327,-0.978214525,168.0184567,0.998886467,0,994.5771135,127.379261,1077.944292,7,13,8% -7/15/2018 22:00,27.94088688,241.4420533,899.3728405,879.1372276,122.7153336,994.9334951,869.1386292,125.7948659,119.0150136,6.779852368,221.7636778,0,221.7636778,3.700320081,218.0633578,0.487660472,4.213958784,0.52448136,-0.52448136,0.440462095,0.136445452,3.503885312,112.6969962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.401758,2.680869302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.538552981,108.3286394,116.940311,111.0095087,869.1386292,0,0.988626806,8.649506466,-0.988626806,171.3504935,0.999424798,0,985.5790103,111.0095087,1058.232513,7,14,7% -7/15/2018 23:00,39.02496853,257.0325464,774.7200691,849.6564372,114.6460789,918.8979733,801.8687296,117.0292437,111.1890766,5.840167124,191.2968524,0,191.2968524,3.457002277,187.8398501,0.681114191,4.48606422,0.80440821,-0.80440821,0.392591784,0.147983876,2.817754526,90.62867154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8791697,2.504586382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.041453562,87.11572631,108.9206233,89.62031269,801.8687296,0,0.943756434,19.30771572,-0.943756434,160.6922843,0.997020229,0,908.3999675,89.62031269,967.0546697,7,15,6% -7/15/2018 0:00,50.75151698,267.8298667,606.8182278,796.7062656,102.7542633,778.7787457,674.5484504,104.2302953,99.65584318,4.574452122,150.228525,0,150.228525,3.098420163,147.1301048,0.885781072,4.67451301,1.165215942,-1.165215942,0.330890028,0.169332856,2.031936547,65.3540641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.79298706,2.24479486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472131112,62.82081227,97.26511817,65.06560713,674.5484504,0,0.846671452,32.14853721,-0.846671452,147.8514628,0.990945216,0,765.7056778,65.06560713,808.2898164,7,16,6% -7/15/2018 1:00,62.56513798,276.7475307,408.7308333,700.3907334,86.03287896,579.6144876,493.0946317,86.5198559,83.43867023,3.08118567,101.6957314,0,101.6957314,2.594208728,99.10152266,1.091967655,4.830155607,1.720205857,-1.720205857,0.235981163,0.210487861,1.222607861,39.3232715,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20442357,1.879495393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885775234,37.7990243,81.09019881,39.67851969,493.0946317,0,0.704027921,45.24893535,-0.704027921,134.7510647,0.978980089,0,563.8200255,39.67851969,589.788823,7,17,5% -7/15/2018 2:00,74.16172419,285.0876031,199.2984333,507.9094929,60.67825827,327.3615763,267.0105956,60.35098068,58.8485849,1.502395775,50.15188593,0,50.15188593,1.829673366,48.32221256,1.294366266,4.97571733,2.884363357,-2.884363357,0.036898505,0.304459284,0.495976447,15.95230744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.56749822,1.325592125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.359333247,15.33396468,56.92683147,16.65955681,267.0105956,0,0.52570507,58.28427963,-0.52570507,121.7157204,0.954889637,0,311.8924822,16.65955681,322.795829,7,18,3% -7/15/2018 3:00,85.22034953,293.6106781,23.68349236,106.9432354,14.77256304,49.27023671,34.76458478,14.50565193,14.32711576,0.178536169,6.187784201,0,6.187784201,0.445447281,5.74233692,1.487375689,5.124473053,8.659284137,-8.659284137,0,0.623749353,0.11136182,3.581778941,0.487355919,1,0.114973684,0,0.949524642,0.988286605,0.724496596,1,13.88864488,0.322725039,0.067710786,0.312029739,0.825995957,0.550492553,0.961238037,0.922476074,0.076256205,3.442942157,13.96490109,3.765667196,17.82185863,0,0.325075117,71.029874,-0.325075117,108.970126,0.896189396,0,29.93666181,3.765667196,32.40121568,7,19,8% -7/15/2018 4:00,95.82477239,302.9011878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.672457783,5.286623035,-5.912880219,5.912880219,0.45868424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109872412,83.69203924,-0.109872412,96.30796076,0.594926712,0,0,0,0,7,20,0% -7/15/2018 5:00,105.1408366,313.4909063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835053778,5.471448491,-1.649533632,1.649533632,0.812240554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.098082743,95.62877697,0.098082743,84.37122303,0,0.54022633,0,0,0,7,21,0% -7/15/2018 6:00,112.8228382,325.8361608,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969129998,5.686913828,-0.581458685,0.581458685,0.629588981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287352284,106.6995073,0.287352284,73.30049268,0,0.875997555,0,0,0,7,22,0% -7/15/2018 7:00,118.2244939,340.1208513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063406674,5.936228709,0.003929702,-0.003929702,0.529481671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445042093,116.4260319,0.445042093,63.57396812,0,0.937651077,0,0,0,7,23,0% -7/16/2018 8:00,120.6993048,355.9196042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106600274,6.211968966,0.461966866,-0.461966866,0.451152703,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.560408749,124.0840702,0.560408749,55.91592984,0,0.960779409,0,0,0,7,0,0% -7/16/2018 9:00,119.8767665,12.07770478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092244271,0.210795714,0.924424372,-0.924424372,0.372067812,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625591472,128.7256131,0.625591472,51.27438693,0,0.970075637,0,0,0,7,1,0% -7/16/2018 10:00,115.8860684,27.23369804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022593451,0.475317698,1.512815766,-1.512815766,0.271446957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636147813,129.5051677,0.636147813,50.49483229,0,0.971401915,0,0,0,7,2,0% -7/16/2018 11:00,109.2728306,40.57170745,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907170678,0.708109878,2.490889503,-2.490889503,0.104186497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591356611,126.2533366,0.591356611,53.74666337,0,0.96544865,0,0,0,7,3,0% -7/16/2018 12:00,100.7104075,52.00911695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.757728202,0.907730332,5.02857767,-5.02857767,0,#DIV/0!,0,0,0.247998023,1,0.196302427,0,0.939390166,0.978152129,0.724496596,1,0,0,0.037965952,0.312029739,0.897982306,0.622478901,0.961238037,0.922476074,0,0,0,0,0,0,-0.494267581,119.6214654,0.494267581,60.3785346,0,0.94884022,0,0,0,7,4,0% -7/16/2018 13:00,90.17953027,61.90180579,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573929721,1.080390324,315.9592218,-315.9592218,0,#DIV/0!,0,0,0.981652068,1,0.003164955,0,0.960957791,0.999719754,0.724496596,1,0,0,0.11438318,0.312029739,0.727267542,0.451764138,0.961238037,0.922476074,0,0,0,0,0,0,-0.341552312,109.9714776,0.341552312,70.02852242,0,0.90360954,0,0,0,7,5,0% -7/16/2018 14:00,79.86085571,70.75709015,99.81026462,334.3661025,40.94869183,40.46634962,0,40.46634962,39.71393768,0.752411935,82.68729418,57.25238582,25.43490836,1.234754143,24.20015422,1.393834876,1.234944192,-5.5913494,5.5913494,0.513669249,0.410265337,0.536615601,17.25940233,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17454749,0.894575173,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.388776176,16.59039401,38.56332367,17.48496918,0,57.25238582,-0.171226645,99.85914642,0.171226645,80.14085358,0,0.757989372,38.56332367,60.88166917,78.40915851,7,6,103% -7/16/2018 15:00,68.48425041,79.12849563,302.3860088,620.5623155,74.79045548,93.73047223,18.91571146,74.81476077,72.5352473,2.279513463,75.57219692,0,75.57219692,2.25520818,73.31698874,1.195275655,1.381052781,-2.504476888,2.504476888,0.958444462,0.247334378,2.208216151,71.02382212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.72363872,1.63389065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.599845085,68.27079935,71.32348381,69.90469,18.91571146,0,0.030481566,88.25326433,-0.030481566,91.74673567,0,0,71.32348381,69.90469,117.0747053,7,7,64% -7/16/2018 16:00,56.75134979,87.66508164,509.1099435,755.1860492,95.06142408,279.28993,183.2570728,96.03285721,92.19497141,3.837885803,126.3060527,0,126.3060527,2.866452675,123.4396001,0.990497909,1.530044314,-1.453407255,1.453407255,0.778700968,0.186720816,3.147151192,101.2232006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.62131332,2.076735206,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.280100325,97.29959061,90.90141365,99.37632582,183.2570728,0,0.242664802,75.95612735,-0.242664802,104.0438727,0.84395446,0,245.5620376,99.37632582,310.6018553,7,8,26% -7/16/2018 17:00,44.94387114,97.32983412,694.0885845,826.3783339,109.1787045,483.3813258,372.2624291,111.1188966,105.8865637,5.232332934,171.581954,0,171.581954,3.292140767,168.2898132,0.78441853,1.698726066,-0.886639424,0.886639424,0.681777961,0.15729794,3.829197216,123.1601453,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.7821926,2.385144779,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.774240348,118.3862162,104.556433,120.771361,372.2624291,0,0.450474575,63.2258637,-0.450474575,116.7741363,0.939005945,0,454.1130669,120.771361,533.1555072,7,9,17% -7/16/2018 18:00,33.4501907,110.0155405,841.8658907,866.2185148,119.1231973,675.9636134,554.0860793,121.8775341,115.5311934,6.34634069,207.7121359,0,207.7121359,3.592003918,204.120132,0.583815963,1.92013341,-0.505961411,0.505961411,0.616678187,0.141499019,4.257873233,136.9478395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0529776,2.602394611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.084814663,131.6394724,114.1377922,134.241867,554.0860793,0,0.639660859,50.23346474,-0.639660859,129.7665353,0.971833579,0,652.6172498,134.241867,740.4758669,7,10,13% -7/16/2018 19:00,23.17493295,130.3576979,941.3508659,887.5721808,125.3990129,836.3721186,707.6580481,128.7140705,121.61777,7.096300456,232.0226589,0,232.0226589,3.781242913,228.241416,0.404478884,2.275171033,-0.211722758,0.211722758,0.566360414,0.133211768,4.428987814,142.4514726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9036265,2.739497619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.208786595,136.9297739,120.1124131,139.6692715,707.6580481,0,0.797296337,37.12730838,-0.797296337,142.8726916,0.98728806,0,818.7747546,139.6692715,910.1854994,7,11,11% -7/16/2018 20:00,16.89958718,167.8079644,985.33868,895.9364945,128.0925951,949.307291,817.6492611,131.6580299,124.2301308,7.427899179,242.7692352,0,242.7692352,3.862464354,238.9067708,0.294953438,2.92880149,0.041274316,-0.041274316,0.523095366,0.129998545,4.346006426,139.782506,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.414727,2.798342276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.148666861,134.3642616,122.5633939,137.1626039,817.6492611,0,0.912619662,24.13008247,-0.912619662,155.8699175,0.995212664,0,936.2982933,137.1626039,1026.068474,7,12,10% -7/16/2018 21:00,19.20987344,213.4381223,970.6804901,893.2150727,127.1999143,1004.031439,873.3496718,130.6817672,123.3643676,7.317399552,239.1882697,0,239.1882697,3.835546735,235.352723,0.33527554,3.725197984,0.279863917,-0.279863917,0.482294141,0.131042002,4.025560186,129.4758534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5825225,2.778840553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916504652,124.4571151,121.4990272,127.2359557,873.3496718,0,0.977759667,12.10644081,-0.977759667,167.8935592,0.998862689,0,993.8554289,127.2359557,1077.128817,7,13,8% -7/16/2018 22:00,28.03469659,241.1502359,898.4082402,878.8000438,122.7238401,994.28746,868.4916157,125.7958443,119.0232635,6.772580804,221.5300558,0,221.5300558,3.700576581,217.8294792,0.48929776,4.208865609,0.526147275,-0.526147275,0.440177206,0.136601419,3.499052478,112.5415556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4096881,2.681055136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.535051609,108.179224,116.9447398,110.8602791,868.4916157,0,0.988269882,8.784443664,-0.988269882,171.2155563,0.999406533,0,984.920934,110.8602791,1057.476769,7,14,7% -7/16/2018 23:00,39.0999919,256.797154,773.6931691,849.2397981,114.6435994,918.2198295,801.2007317,117.0190978,111.1866719,5.832425918,191.0477939,0,191.0477939,3.456927511,187.5908664,0.682423596,4.481955846,0.806965725,-0.806965725,0.392154423,0.148177086,2.812531146,90.46066967,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8768582,2.504532214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037669241,86.95423653,108.9145274,89.45876874,801.2007317,0,0.94343286,19.36370874,-0.94343286,160.6362913,0.997002058,0,907.7133058,89.45876874,966.2622808,7,15,6% -7/16/2018 0:00,50.82090756,267.6345787,605.668799,796.1109333,102.7285201,777.9566656,673.7600021,104.1966634,99.6308762,4.565787243,149.9490564,0,149.9490564,3.097643909,146.8514125,0.886992166,4.67110459,1.169374226,-1.169374226,0.330178919,0.169611709,2.026243496,65.17095599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.76898785,2.244232468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468006515,62.6448018,97.23699437,64.88903427,673.7600021,0,0.846314218,32.18698192,-0.846314218,147.8130181,0.990920288,0,764.8794499,64.88903427,807.3480251,7,16,6% -7/16/2018 1:00,62.63612781,276.5776718,407.4198028,699.3754576,85.95894998,578.4995949,492.0613218,86.43827306,83.36697049,3.071302569,101.3756276,0,101.3756276,2.591979497,98.78364814,1.093206661,4.82719101,1.728000839,-1.728000839,0.234648142,0.210983731,1.216619523,39.13066596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.13550305,1.877880322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881436703,37.61388453,81.01693975,39.49176485,492.0613218,0,0.703572475,45.28566844,-0.703572475,134.7143316,0.978934116,0,562.7125548,39.49176485,588.559125,7,17,5% -7/16/2018 2:00,74.23896619,284.9339318,197.8601979,505.7565384,60.48367814,325.7218284,265.5704026,60.15142583,58.65987208,1.491553748,49.79730177,0,49.79730177,1.823806057,47.97349572,1.295714393,4.97303526,2.904695989,-2.904695989,0.03342142,0.30568896,0.490562812,15.77818633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.38610028,1.32134128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.355411087,15.16659285,56.74151137,16.48793413,265.5704026,0,0.525095342,58.32533813,-0.525095342,121.6746619,0.954779197,0,310.3026072,16.48793413,321.0936303,7,18,3% -7/16/2018 3:00,85.30573718,293.4678881,22.76375807,103.1444092,14.32255244,47.51150838,33.44923092,14.06227747,13.89067464,0.171602824,5.951214494,0,5.951214494,0.431877801,5.519336693,1.488865985,5.121980897,8.838427829,-8.838427829,0,0.629182247,0.10796945,3.472668661,0.495282529,1,0.112663184,0,0.949790588,0.988552551,0.724496596,1,13.46498697,0.312893996,0.06860139,0.312029739,0.823948926,0.548445522,0.961238037,0.922476074,0.073948011,3.338061206,13.53893499,3.650955202,16.88241125,0,0.324295143,71.0771231,-0.324295143,108.9228769,0.895819461,0,28.66252753,3.650955202,31.05200469,7,19,8% -7/16/2018 4:00,95.92622246,302.7672419,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674228421,5.284285238,-5.82889887,5.82889887,0.473045897,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.108813672,83.75306651,-0.108813672,96.24693349,0.590498918,0,0,0,0,7,20,0% -7/16/2018 5:00,105.2588974,313.3674811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837114327,5.469294313,-1.643216921,1.643216921,0.811160333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.099398037,95.70450783,0.099398037,84.29549217,0,0.546971957,0,0,0,7,21,0% -7/16/2018 6:00,112.9592414,325.729813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971510683,5.685057708,-0.581855755,0.581855755,0.629656884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288924077,106.793553,0.288924077,73.20644695,0,0.876944156,0,0,0,7,22,0% -7/16/2018 7:00,118.3781701,340.043255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066088832,5.9348744,0.00139751,-0.00139751,0.529914701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.446852767,116.5419394,0.446852767,63.45806064,0,0.938106321,0,0,0,7,23,0% -7/17/2018 8:00,120.8648349,355.8834677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.109489319,6.211338264,0.457926376,-0.457926376,0.451843667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.562424317,124.2236218,0.562424317,55.77637821,0,0.96109915,0,0,0,7,0,0% -7/17/2018 9:00,120.0451729,12.08824831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095183519,0.210979734,0.918435355,-0.918435355,0.373091994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627763903,128.8853393,0.627763903,51.11466065,0,0.970352222,0,0,0,7,1,0% -7/17/2018 10:00,116.0486104,27.28472597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025430344,0.476208304,1.503189343,-1.503189343,0.273093172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638418331,129.6739793,0.638418331,50.32602072,0,0.971681447,0,0,0,7,2,0% -7/17/2018 11:00,109.4242767,40.65150861,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90981391,0.709502671,2.47185448,-2.47185448,0.107441678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.593659736,126.4171466,0.593659736,53.58285344,0,0.96577667,0,0,0,7,3,0% -7/17/2018 12:00,100.8492693,52.10782917,0,0,0,0,0,0,0,0,0,0,0,0,0,1.760151798,0.909453185,4.965451005,-4.965451005,0,#DIV/0!,0,0,0.241843243,1,0.198733254,0,0.939064476,0.977826439,0.724496596,1,0,0,0.037120645,0.312029739,0.900130414,0.62462701,0.961238037,0.922476074,0,0,0,0,0,0,-0.496535642,119.7710634,0.496535642,60.22893665,0,0.949302294,0,0,0,7,4,0% -7/17/2018 13:00,90.91474094,62.01405879,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586761568,1.082349508,62.02336921,-62.02336921,0,#DIV/0!,0,0,0.909718506,1,0.016121558,0,0.959785288,0.998547251,0.724496596,1,0,0,0.108558489,0.312029739,0.738633743,0.463130339,0.961238037,0.922476074,0,0,0,0,0,0,-0.353661913,110.7114584,0.353661913,69.28854159,0,0.90862204,0,0,0,7,5,0% -7/17/2018 14:00,79.97740343,70.8816085,97.8922333,329.9982453,40.46047487,39.97839527,0,39.97839527,39.24044227,0.737953004,82.11740156,57.16226364,24.95513792,1.220032601,23.73510532,1.395869017,1.237117448,-5.657562058,5.657562058,0.502346217,0.413316496,0.52249636,16.80527901,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.71940569,0.883909466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.378546834,16.1538734,38.09795253,17.03778287,0,57.16226364,-0.173219902,99.97508401,0.173219902,80.02491599,0,0.761349565,38.09795253,60.55824743,77.73211431,7,6,104% -7/17/2018 15:00,68.59463244,79.26728244,300.3808634,618.7688687,74.5524986,92.31639724,17.74753371,74.56886353,72.3044657,2.26439783,75.07885092,0,75.07885092,2.248032902,72.83081802,1.197202185,1.383475068,-2.517699742,2.517699742,0.960705703,0.248193236,2.197503627,70.67927051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50180266,1.628692185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.592083897,67.93960323,71.09388656,69.56829541,17.74753371,0,0.028682008,88.35641658,-0.028682008,91.64358342,0,0,71.09388656,69.56829541,116.6249445,7,7,64% -7/17/2018 16:00,56.8584828,87.82316824,507.3061837,754.3243212,94.91041012,277.7416526,181.8688532,95.87279937,92.04851107,3.824288299,125.8641567,0,125.8641567,2.861899047,123.0022576,0.992367732,1.532803445,-1.458063251,1.458063251,0.779497191,0.187087036,3.138786181,100.9541531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.48053007,2.073436117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.274039903,97.04097192,90.75456998,99.11440804,181.8688532,0,0.24110167,76.0484291,-0.24110167,103.9515709,0.842618607,0,244.0006498,99.11440804,308.8690476,7,8,27% -7/17/2018 17:00,45.05269386,97.51544774,692.5243303,825.8912267,109.0683781,481.9620913,370.9619863,111.000105,105.779564,5.220540926,171.1993557,0,171.1993557,3.288814018,167.9105417,0.786317845,1.701965635,-0.888519115,0.888519115,0.682099407,0.15749393,3.822306852,122.9385274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6793405,2.382734561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.769248302,118.1731888,104.4485888,120.5559233,370.9619863,0,0.44916567,63.3098332,-0.44916567,116.6901668,0.938682499,0,452.6641131,120.5559233,531.5655538,7,9,17% -7/17/2018 18:00,33.56896909,110.2377075,840.5268875,865.9050679,119.0367475,674.7550891,552.971492,121.7835971,115.4473504,6.336246718,207.3848723,0,207.3848723,3.589397137,203.7954752,0.585889037,1.924010956,-0.506586807,0.506586807,0.616785136,0.141621582,4.251980377,136.758305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9723845,2.600506007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080545309,131.4572846,114.0529298,134.0577906,552.971492,0,0.638605215,50.31210765,-0.638605215,129.6878923,0.971704366,0,651.377743,134.0577906,739.1158858,7,10,13% -7/17/2018 19:00,23.31769683,130.5960954,940.1979675,887.344789,125.327804,835.384343,706.7480253,128.6363177,121.5487083,7.08760942,231.7409782,0,231.7409782,3.779095701,227.9618825,0.406970584,2.279331854,-0.211621919,0.211621919,0.566343169,0.133299378,4.423726847,142.2822619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8372418,2.737941971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.204975042,136.7671221,120.0422168,139.505064,706.7480253,0,0.796475095,37.20519506,-0.796475095,142.7948049,0.987223398,0,817.7604039,139.505064,909.0636782,7,11,11% -7/17/2018 20:00,17.07046857,167.8448483,984.3165872,895.7487976,128.0305025,948.5107963,816.9206916,131.5901047,124.1699105,7.420194212,242.5195446,0,242.5195446,3.860592033,238.6589526,0.297935881,2.929445235,0.04191313,-0.04191313,0.522986122,0.130070451,4.341047591,139.6230128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.356841,2.796985786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.145074202,134.2109507,122.5019152,137.0079365,816.9206916,0,0.911997531,24.21712831,-0.911997531,155.7828717,0.99517529,0,935.4812015,137.0079365,1025.150156,7,12,10% -7/17/2018 21:00,19.35145092,213.1452186,969.723516,893.0351645,127.1414688,1003.369878,872.7520082,130.6178699,123.3076844,7.310185477,238.9544779,0,238.9544779,3.833784385,235.1206935,0.337746534,3.72008585,0.281018346,-0.281018346,0.482096722,0.13111105,4.020598832,129.3162791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5280365,2.777563736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.912910167,124.3037263,121.4409466,127.08129,872.7520082,0,0.977287393,12.23479114,-0.977287393,167.7652089,0.998837977,0,993.178797,127.08129,1076.35096,7,13,8% -7/17/2018 22:00,28.13468069,240.8537496,897.4459147,878.596086,122.6633324,993.684147,867.9542403,125.7299067,118.9645803,6.765326387,221.2949043,0,221.2949043,3.698752051,217.5961523,0.491042812,4.203690946,0.527929753,-0.527929753,0.439872385,0.136680473,3.493823543,112.3733751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.3532797,2.67973327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.531263264,108.0175625,116.8845429,110.6972957,867.9542403,0,0.98788767,8.926697404,-0.98788767,171.0733026,0.999386958,0,984.3066909,110.6972957,1056.755857,7,14,7% -7/17/2018 23:00,39.18058797,256.5565615,772.6561948,848.9644165,114.5741448,917.580623,800.6367026,116.9439204,111.1193116,5.824608768,190.7942731,0,190.7942731,3.4548332,187.3394399,0.683830263,4.477756716,0.809685573,-0.809685573,0.391689302,0.148286063,2.806839941,90.27762094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8121089,2.503014892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.033545982,86.77828312,108.8456549,89.28129802,800.6367026,0,0.943074512,19.42553815,-0.943074512,160.5744619,0.99698192,0,907.0659719,89.28129802,965.4987958,7,15,6% -7/17/2018 0:00,50.8955674,267.4345675,604.4963212,795.668389,102.639749,777.166989,673.0652585,104.1017305,99.54478185,4.55694861,149.6620988,0,149.6620988,3.094967132,146.5671317,0.888295226,4.667613736,1.173784697,-1.173784697,0.329424685,0.169793836,2.020023498,64.97089949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.68623068,2.242293152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463500148,62.45249988,97.14973083,64.69479303,673.0652585,0,0.845911774,32.23024309,-0.845911774,147.7697569,0.990892181,0,764.0848328,64.69479303,806.426281,7,16,6% -7/17/2018 1:00,62.71229679,276.4036203,406.0726361,698.5221475,85.82899008,577.4058809,491.1038044,86.30207641,83.24092935,3.061147057,101.0450727,0,101.0450727,2.588060726,98.45701197,1.09453606,4.824153239,1.736269509,-1.736269509,0.233234116,0.211363639,1.210073096,38.92011038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.01434751,1.875041186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876693839,37.41149049,80.89104135,39.28653168,491.1038044,0,0.703061179,45.3268783,-0.703061179,134.6731217,0.978882434,0,561.6239286,39.28653168,587.3361779,7,17,5% -7/17/2018 2:00,74.32143102,284.776524,196.374309,503.7355123,60.24465281,324.0772853,264.1688786,59.90840673,58.42805424,1.48035249,49.42982331,0,49.42982331,1.816598561,47.61322475,1.297153676,4.970287976,2.926364353,-2.926364353,0.029715912,0.306784799,0.484644194,15.58782322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.16326816,1.316119474,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.351123069,14.98360859,56.51439123,16.29972807,264.1688786,0,0.524419804,58.37080705,-0.524419804,121.6291929,0.954656537,0,308.7049381,16.29972807,319.3727841,7,18,3% -7/17/2018 3:00,85.39631643,293.3217748,21.82101946,99.32386747,13.84898715,45.7215506,32.12566545,13.59588515,13.43138909,0.164496062,5.708356864,0,5.708356864,0.41759806,5.290758804,1.490446891,5.119430738,9.034858417,-9.034858417,0,0.634662701,0.104399515,3.357847273,0.503696985,1,0.110233739,0,0.950068897,0.98883086,0.724496596,1,13.01913377,0.302548373,0.069540819,0.312029739,0.821796522,0.546293118,0.961238037,0.922476074,0.071520282,3.227690521,13.09065405,3.530238894,15.94406462,0,0.323443562,71.12869472,-0.323443562,108.8713053,0.895413525,0,27.36718516,3.530238894,29.67765591,7,19,8% -7/17/2018 4:00,96.03331799,302.6304221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676097591,5.281897282,-5.742655804,5.742655804,0.48779433,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.107672566,83.81883351,-0.107672566,96.18116649,0.585629158,0,0,0,0,7,20,0% -7/17/2018 5:00,105.382882,313.2417893,0,0,0,0,0,0,0,0,0,0,0,0,0,1.839278266,5.467100578,-1.636446156,1.636446156,0.810002464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100800558,95.78527202,0.100800558,84.21472798,0,0.553971,0,0,0,7,21,0% -7/17/2018 6:00,113.1018204,325.6221308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973999156,5.6831783,-0.582116875,0.582116875,0.629701538,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290585305,106.8930006,0.290585305,73.10699938,0,0.877933488,0,0,0,7,22,0% -7/17/2018 7:00,118.5381266,339.9657295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068880598,5.933521323,-0.001099879,0.001099879,0.53034178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.448752276,116.6636594,0.448752276,63.33634056,0,0.938579952,0,0,0,7,23,0% -7/18/2018 8:00,121.0364463,355.8492065,0,0,0,0,0,0,0,0,0,0,0,0,0,2.112484503,6.210740294,0.453871347,-0.453871347,0.452537118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.564525353,124.3693374,0.564525353,55.63066256,0,0.961430019,0,0,0,7,0,0% -7/18/2018 9:00,120.2190864,12.10242924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098218881,0.211227238,0.912396636,-0.912396636,0.374124675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.630015898,129.0512955,0.630015898,50.94870453,0,0.970636923,0,0,0,7,1,0% -7/18/2018 10:00,116.2158241,27.3406255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028348774,0.477183934,1.493479144,-1.493479144,0.274753714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640760379,129.8485424,0.640760379,50.15145756,0,0.97196771,0,0,0,7,2,0% -7/18/2018 11:00,109.5795099,40.73680471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912523241,0.710991369,2.452712631,-2.452712631,0.110715127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596024779,126.5857208,0.596024779,53.41427919,0,0.96611087,0,0,0,7,3,0% -7/18/2018 12:00,100.9911376,52.21228022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.762627866,0.9112762,4.902666636,-4.902666636,0,#DIV/0!,0,0,0.235621087,1,0.201210541,0,0.938731224,0.977493187,0.724496596,1,0,0,0.036261556,0.312029739,0.902319322,0.626815918,0.961238037,0.922476074,0,0,0,0,0,0,-0.498855092,119.9242824,0.498855092,60.07571764,0,0.949770493,0,0,0,7,4,0% -7/18/2018 13:00,91.04428724,62.13216978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589022578,1.084410934,54.34341936,-54.34341936,0,#DIV/0!,0,0,0.897573709,1,0.018399415,0,0.959574971,0.998336934,0.724496596,1,0,0,0.107546996,0.312029739,0.740635403,0.465131999,0.961238037,0.922476074,0,0,0,0,0,0,-0.355870382,110.8467975,0.355870382,69.15320251,0,0.909499406,0,0,0,7,5,0% -7/18/2018 14:00,80.09586224,71.01215212,95.95016382,325.5224494,39.96022376,39.47858844,0,39.47858844,38.75527558,0.723312864,81.51472561,57.04554934,24.46917628,1.204948184,23.26422809,1.397936513,1.239395863,-5.726405919,5.726405919,0.490573224,0.416468531,0.508296141,16.34855115,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.25304501,0.872980857,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.368258824,15.71484921,37.62130384,16.58783007,0,57.04554934,-0.175243058,100.0928029,0.175243058,79.90719714,0,0.764681993,37.62130384,60.2095344,77.02723991,7,6,105% -7/18/2018 15:00,68.70668886,79.41242533,298.3448258,616.9344906,74.3097173,90.88952378,16.57146931,74.31805447,72.06900515,2.249049318,74.57786927,0,74.57786927,2.24071215,72.33715712,1.199157939,1.386008289,-2.531208928,2.531208928,0.96301591,0.249073256,2.18658795,70.32818483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.27546903,1.623388325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.584175527,67.60212632,70.85964456,69.22551465,16.57146931,0,0.026860987,88.46079368,-0.026860987,91.53920632,0,0,70.85964456,69.22551465,116.1663594,7,7,64% -7/18/2018 16:00,56.96721996,87.98820979,505.4734316,753.4446104,94.75663547,276.1779771,180.4681316,95.70984553,91.89937329,3.81047224,125.4151478,0,125.4151478,2.857262174,122.5578856,0.994265554,1.535683964,-1.462763665,1.462763665,0.780301009,0.187461159,3.130249737,100.6795917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.33717317,2.070076719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.267855279,96.77705308,90.60502845,98.8471298,180.4681316,0,0.239524086,76.14154676,-0.239524086,103.8584532,0.841252726,0,242.4243361,98.8471298,307.1178056,7,8,27% -7/18/2018 17:00,45.16329999,97.70900846,690.9314955,825.3935896,108.9559089,480.5290827,369.650063,110.8790197,105.6704862,5.208533464,170.8097631,0,170.8097631,3.285422657,167.5243404,0.788248286,1.705343906,-0.890381511,0.890381511,0.682417896,0.157694228,3.815244306,122.7113717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5744907,2.380277531,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.764131512,117.954838,104.3386222,120.3351156,369.650063,0,0.447847024,63.39436505,-0.447847024,116.6056349,0.938354734,0,451.2015089,120.3351156,529.9584353,7,9,17% -7/18/2018 18:00,33.69010283,110.4693001,839.157061,865.5836237,118.948248,673.5332529,551.8458131,121.6874398,115.3615194,6.325920387,207.0500734,0,207.0500734,3.586728548,203.4633449,0.58800322,1.928053009,-0.507169904,0.507169904,0.616884851,0.1417473,4.245896967,136.5626416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8898805,2.598572624,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.076137899,131.2692056,113.9660183,133.8677782,551.8458131,0,0.637541883,50.39123286,-0.637541883,129.6087671,0.97157378,0,650.1249409,133.8677782,737.7387244,7,10,13% -7/18/2018 19:00,23.46403756,130.8453714,939.0092711,887.1098833,125.2543499,834.3810258,705.8249082,128.5561176,121.4774691,7.078648525,231.45055,0,231.45055,3.776880789,227.6736693,0.409524711,2.283682543,-0.211463297,0.211463297,0.566316043,0.133389897,4.418245375,142.1059589,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7687639,2.736337275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.201003734,136.5976529,119.9697677,139.3339902,705.8249082,0,0.795645412,37.28374105,-0.795645412,142.716259,0.987157936,0,816.7304271,139.3339902,907.921737,7,11,11% -7/18/2018 20:00,17.24682953,167.8915889,983.2512757,895.5528379,127.9657603,947.6934059,816.174122,131.5192839,124.1071205,7.412163443,242.2592953,0,242.2592953,3.858639816,238.4006555,0.301013961,2.930261013,0.042624185,-0.042624185,0.522864525,0.130145532,4.335830801,139.4552229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2964848,2.795571411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.141294656,134.0496647,122.4377795,136.8452361,816.174122,0,0.911363448,24.30554484,-0.911363448,155.6944552,0.995137146,0,934.6429657,136.8452361,1024.205436,7,12,10% -7/18/2018 21:00,19.49973722,212.8538817,968.7139657,892.845071,127.0797898,1002.678959,872.1285185,130.5504403,123.2478652,7.30257506,238.7078409,0,238.7078409,3.831924536,234.8759164,0.340334618,3.715001061,0.282263141,-0.282263141,0.48188385,0.131184017,4.01533848,129.1470881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.470536,2.776216282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.90909906,124.1410935,121.3796351,126.9173098,872.1285185,0,0.976797147,12.36663819,-0.976797147,167.6333618,0.998812299,0,992.4723259,126.9173098,1075.537167,7,13,8% -7/18/2018 22:00,28.24087423,240.5529893,896.4204001,878.3783661,122.5988236,993.0401266,867.3805143,125.6596123,118.9020167,6.757595626,221.0443113,0,221.0443113,3.696806872,217.3475044,0.492896239,4.198441689,0.529829703,-0.529829703,0.439547474,0.136764875,3.488255276,112.1942805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2931411,2.678323995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527229073,107.8454099,116.8203702,110.5237339,867.3805143,0,0.987479369,9.076218166,-0.987479369,170.9237818,0.999366031,0,983.6509919,110.5237339,1055.986565,7,14,7% -7/18/2018 23:00,39.26680159,256.3110107,771.5449952,848.6687155,114.4996719,916.8867022,800.0233857,116.8633164,111.0470844,5.816232076,190.5226043,0,190.5226043,3.452587567,187.0700167,0.685334974,4.473471045,0.812569068,-0.812569068,0.391196195,0.148403104,2.80077497,90.08255062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.7426814,2.501387939,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029151931,86.59077411,108.7718333,89.09216205,800.0233857,0,0.942680425,19.49331608,-0.942680425,160.5066839,0.996959756,0,906.3629525,89.09216205,964.6719908,7,15,6% -7/18/2018 0:00,50.97553534,267.2299981,603.239187,795.1925682,102.5444637,776.3058033,672.3059617,103.9998416,99.45236977,4.547471801,149.3544189,0,149.3544189,3.092093929,146.2623249,0.88969093,4.664043326,1.178449973,-1.178449973,0.328626875,0.169989725,2.013408639,64.75814289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.59740068,2.240211526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.458707705,62.24799014,97.05610838,64.48820166,672.3059617,0,0.845463085,32.27841442,-0.845463085,147.7215856,0.990860812,0,763.2177398,64.48820166,805.423978,7,16,6% -7/18/2018 1:00,62.79367354,276.2255015,404.6326115,697.6062016,85.68975489,576.2196743,490.0634902,86.15618417,83.10589262,3.050291543,100.6917236,0,100.6917236,2.583862272,98.10786134,1.095956353,4.82104448,1.745019462,-1.745019462,0.231737786,0.211771747,1.203138747,38.69707786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.88454507,1.87199942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.871669927,37.19710316,80.756215,39.06910258,490.0634902,0,0.702493024,45.37263654,-0.702493024,134.6273635,0.978824916,0,560.4425696,39.06910258,586.0125159,7,17,5% -7/18/2018 2:00,74.40913525,284.6154821,194.7948529,501.5722381,59.98916322,322.3108485,262.662134,59.6487145,58.18026861,1.468445883,49.03916195,0,49.03916195,1.808894608,47.23026734,1.298684404,4.967477265,2.949409003,-2.949409003,0.025775045,0.30796072,0.478416825,15.38752965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.92508718,1.310537985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.346611361,14.79107879,56.27169855,16.10161678,262.662134,0,0.523677576,58.42073906,-0.523677576,121.5792609,0.954521404,0,306.9883274,16.10161678,317.5265135,7,18,3% -7/18/2018 3:00,85.49207711,293.1724258,20.84249663,95.32168936,13.35050265,43.84820117,30.74314589,13.10505528,12.94793574,0.157119543,5.456071527,0,5.456071527,0.402566913,5.053504614,1.49211823,5.116824106,9.250255822,-9.250255822,0,0.640542392,0.100641728,3.236983934,0.5126072,1,0.107686916,0,0.950359188,0.989121151,0.724496596,1,12.549806,0.291658358,0.070528939,0.312029739,0.819540147,0.544036743,0.961238037,0.922476074,0.068965929,3.111512082,12.61877193,3.40317044,14.98398796,0,0.322519944,71.18461095,-0.322519944,108.815389,0.894970827,0,26.02900403,3.40317044,28.25631102,7,19,9% -7/18/2018 4:00,96.14605164,302.4908055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678065164,5.279460512,-5.654498951,5.654498951,0.50287004,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.106448687,83.88936194,-0.106448687,96.11063806,0.580290122,0,0,0,0,7,20,0% -7/18/2018 5:00,105.5127705,313.1139002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841545248,5.464868493,-1.629236443,1.629236443,0.808769531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.102290383,95.87107624,0.102290383,84.12892376,0,0.561195495,0,0,0,7,21,0% -7/18/2018 6:00,113.2505431,325.5131789,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976594857,5.68127673,-0.582241688,0.582241688,0.629722882,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292335685,106.9978419,0.292335685,73.00215808,0,0.878963747,0,0,0,7,22,0% -7/18/2018 7:00,118.7043186,339.8883401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.071781197,5.932170624,-0.003558977,0.003558977,0.530762311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450739974,116.7911698,0.450739974,63.20883016,0,0.939071299,0,0,0,7,23,0% -7/19/2018 8:00,121.2140806,355.8168913,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115584807,6.210176288,0.449806993,-0.449806993,0.453232164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566710868,124.5211816,0.566710868,55.47881842,0,0.961771588,0,0,0,7,0,0% -7/19/2018 9:00,120.3984337,12.12031787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101349083,0.211539453,0.906315679,-0.906315679,0.37516458,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632346173,129.2234318,0.632346173,50.77656816,0,0.970929386,0,0,0,7,1,0% -7/19/2018 10:00,116.3876247,27.40145276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03134726,0.478245571,1.483697099,-1.483697099,0.276426542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643172442,130.0287894,0.643172442,49.97121063,0,0.972260351,0,0,0,7,2,0% -7/19/2018 11:00,109.7384401,40.82762869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915297096,0.712576546,2.43348796,-2.43348796,0.114002739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.598450077,126.758973,0.598450077,53.24102697,0,0.966450842,0,0,0,7,3,0% -7/19/2018 12:00,101.1359233,52.3224795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765154853,0.91319954,4.840298063,-4.840298063,0,#DIV/0!,0,0,0.229338188,1,0.203732479,0,0.93839058,0.977152543,0.724496596,1,0,0,0.035389424,0.312029739,0.904547417,0.629044013,0.961238037,0.922476074,0,0,0,0,0,0,-0.50122421,120.0810262,0.50122421,59.91897382,0,0.950244244,0,0,0,7,4,0% -7/19/2018 13:00,91.17614039,62.25612813,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591323849,1.086574415,48.26403872,-48.26403872,0,#DIV/0!,0,0,0.885366889,1,0.020716396,0,0.959359761,0.998121725,0.724496596,1,0,0,0.106521898,0.312029739,0.74267239,0.467168986,0.961238037,0.922476074,0,0,0,0,0,0,-0.358117833,110.9846506,0.358117833,69.01534936,0,0.91038115,0,0,0,7,5,0% -7/19/2018 14:00,80.21615733,71.14869336,93.98586485,320.9398723,39.44803605,38.96703737,0,38.96703737,38.25853222,0.708505149,80.87835227,56.90088737,23.9774649,1.189503835,22.78796106,1.400036059,1.241778958,-5.797966751,5.797966751,0.478335601,0.419723073,0.494033687,15.8898216,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.7755564,0.861791479,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.357925724,15.27390092,37.13348213,16.1356924,0,56.90088737,-0.177294541,100.212214,0.177294541,79.78778604,0,0.767983421,37.13348213,59.83463053,76.29405111,7,6,105% -7/19/2018 15:00,68.82035683,79.56388004,296.2790423,615.0594598,74.06218124,89.45110189,15.38869211,74.06240978,71.82893321,2.233476569,74.06953202,0,74.06953202,2.233248025,71.836284,1.201141819,1.388651672,-2.545001669,2.545001669,0.965374607,0.249974418,2.175473339,69.97070071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04470275,1.617980592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.576123028,67.25849899,70.62082578,68.87647958,15.38869211,0,0.025019845,88.56631889,-0.025019845,91.43368111,0,0,70.62082578,68.87647958,115.6991041,7,7,64% -7/19/2018 16:00,57.07751086,88.16014164,503.6124601,752.547062,94.60014661,274.5999099,179.0558633,95.5440466,91.74760315,3.796443451,124.959215,0,124.959215,2.852543458,122.1066716,0.996190493,1.538684741,-1.46750539,1.46750539,0.781111892,0.187843142,3.121544085,100.399588,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19128594,2.066658025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261548064,96.50790289,90.452834,98.57456092,179.0558633,0,0.23793311,76.23541708,-0.23793311,103.7645829,0.839856906,0,240.8341373,98.57456092,305.349216,7,8,27% -7/19/2018 17:00,45.27565269,97.91041901,689.3104754,824.8854497,108.8413173,479.0829939,368.3273304,110.7556635,105.55935,5.196313529,170.4132726,0,170.4132726,3.281967298,167.1313053,0.79020921,1.708859184,-0.892224553,0.892224553,0.682733074,0.15789883,3.80801003,122.4786925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.4676624,2.377774135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.758890304,117.7311779,104.2265527,120.1089521,368.3273304,0,0.446519369,63.47941141,-0.446519369,116.5205886,0.938022775,0,449.7259771,120.1089521,528.3348841,7,9,17% -7/19/2018 18:00,33.81356797,110.7101552,837.7564386,865.2541325,118.8576961,672.2984293,550.7093694,121.5890599,115.273698,6.315361904,206.7077458,0,206.7077458,3.583998075,203.1237477,0.590158093,1.932256723,-0.50770931,0.50770931,0.616977095,0.141876195,4.239621981,136.3608165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8054632,2.596594405,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.071591693,131.0752036,113.8770549,133.671798,550.7093694,0,0.636471239,50.47081091,-0.636471239,129.5291891,0.971441855,0,648.8591861,133.671798,736.3447044,7,10,13% -7/19/2018 19:00,23.6139307,131.10523,937.7844724,886.8673604,125.1786286,833.362105,704.8886584,128.4734465,121.4040311,7.069415475,231.1513001,0,231.1513001,3.774597511,227.3767026,0.41214084,2.28821793,-0.211245891,0.211245891,0.566278865,0.133483367,4.412541248,141.9224946,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6981725,2.734683048,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.196871113,136.4213,119.8950436,139.1559831,704.8886584,0,0.794807307,37.36294089,-0.794807307,142.6370591,0.98709167,0,815.6847669,139.1559831,906.7595748,7,11,11% -7/19/2018 20:00,17.42860465,167.947982,982.1421691,895.3484677,127.8983303,946.8546905,815.4091642,131.4455263,124.0417238,7.403802529,241.9883463,0,241.9883463,3.856606554,238.1317397,0.304186535,2.931245257,0.043408267,-0.043408267,0.522730439,0.130223846,4.330353174,139.2790436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.2336231,2.79409832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.137326134,133.8803144,122.3709492,136.6744127,815.4091642,0,0.910717105,24.39536107,-0.910717105,155.6046389,0.995098209,0,933.7831482,136.6744127,1023.233818,7,12,10% -7/19/2018 21:00,19.65469928,212.5645742,967.6510705,892.644598,127.0148267,1001.957934,871.4785105,130.4794235,123.184861,7.294562507,238.4481708,0,238.4481708,3.829965659,234.6182051,0.343039216,3.709951694,0.283599009,-0.283599009,0.481655403,0.131260979,4.009775944,128.9681779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.409974,2.774797082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905069022,123.9691181,121.315043,126.7439152,871.4785105,0,0.976288337,12.50203017,-0.976288337,167.4979698,0.998785622,0,991.7352491,126.7439152,1074.686607,7,13,8% -7/19/2018 22:00,28.35330322,240.2483442,895.3308295,878.1466279,122.5302536,992.3544069,866.7695106,125.5848963,118.8355144,6.749381982,220.7780646,0,220.7780646,3.694739234,217.0833254,0.494858495,4.193124629,0.531847918,-0.531847918,0.439202339,0.136854724,3.482344634,112.0041739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.2292165,2.676825998,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522946833,107.6626723,116.7521634,110.3394983,866.7695106,0,0.987044171,9.232944683,-0.987044171,170.7670553,0.999343706,0,982.9528181,110.3394983,1055.167813,7,14,7% -7/19/2018 23:00,39.35866931,256.060742,770.3587074,848.3523364,114.4201129,916.1369156,799.3597019,116.7772137,110.9699244,5.807289337,190.2325761,0,190.2325761,3.45018857,186.7823875,0.686938369,4.469103034,0.815617409,-0.815617409,0.390674898,0.148528357,2.794333795,89.87538032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6685122,2.499649874,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.024485323,86.39163414,108.6929976,88.89128401,799.3597019,0,0.942249662,19.56714391,-0.942249662,160.4328561,0.996935508,0,905.6030677,88.89128401,963.7806353,7,15,6% -7/19/2018 0:00,51.06084229,267.0210348,601.8966458,794.6829024,102.4425849,775.371877,671.4809629,103.8909141,99.35356295,4.537351158,149.0258322,0,149.0258322,3.089021906,145.9368103,0.891179817,4.660396229,1.183372577,-1.183372577,0.32778506,0.170199627,2.006397592,64.5326435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.50242381,2.237985856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453628225,62.03123155,96.95605203,64.26921741,671.4809629,0,0.84496717,32.33158144,-0.84496717,147.6684186,0.990826103,0,762.2769179,64.26921741,804.3398353,7,16,6% -7/19/2018 1:00,62.88027897,276.0434396,403.0992163,696.6264996,85.54112867,574.9396903,488.9392101,86.00048019,82.96174803,3.038732162,100.3154526,0,100.3154526,2.579380643,97.73607191,1.097467903,4.817866899,1.754258387,-1.754258387,0.230157837,0.212208621,1.195817015,38.4615858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.74598781,1.868752495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866365357,36.97073923,80.61235316,38.83949172,488.9392101,0,0.701867084,45.42300696,-0.701867084,134.576993,0.978761441,0,559.1671988,38.83949172,584.5868693,7,17,5% -7/19/2018 2:00,74.50208793,284.4509067,193.1218516,499.2638115,59.71693359,320.4210949,261.0490131,59.37208181,57.91624771,1.455834092,48.62531469,0,48.62531469,1.80068588,46.82462881,1.300306734,4.964604882,2.973872773,-2.973872773,0.021591494,0.309218937,0.471885228,15.17745103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.67130025,1.30459079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.341879241,14.58914323,56.01317949,15.89373402,261.0490131,0,0.522867885,58.47517909,-0.522867885,121.5248209,0.954373549,0,305.1514527,15.89373402,315.5535838,7,18,3% -7/19/2018 3:00,85.59300001,293.0199261,19.83183898,91.14825204,12.8279307,41.89697334,29.3063513,12.59062204,12.44112126,0.149500779,5.195268407,0,5.195268407,0.386809441,4.808458966,1.493879667,5.114162484,9.486554706,-9.486554706,0,0.646835158,0.09670236,3.110280315,0.522021134,1,0.105024491,0,0.950661051,0.989423014,0.724496596,1,12.05779103,0.280242123,0.071565553,0.312029739,0.8171814,0.541677996,0.961238037,0.922476074,0.066289139,2.989719744,12.12408017,3.269961867,14.00781656,0,0.321524008,71.24488452,-0.321524008,108.7551155,0.894490617,0,24.65394065,3.269961867,26.79406529,7,19,9% -7/19/2018 4:00,96.26440915,302.3484657,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680130892,5.276976214,-5.564768288,5.564768288,0.518214887,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105141761,83.96466592,-0.105141761,96.03533408,0.574451564,0,0,0,0,7,20,0% -7/19/2018 5:00,105.6485368,312.9838785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843914816,5.462599186,-1.62160426,1.62160426,0.80746435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.103867455,95.96191973,0.103867455,84.03808027,0,0.568617261,0,0,0,7,21,0% -7/19/2018 6:00,113.4053721,325.4030162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979297132,5.679354029,-0.582230415,0.582230415,0.629720955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294174807,107.1080618,0.294174807,72.89193823,0,0.880033032,0,0,0,7,22,0% -7/19/2018 7:00,118.8766975,339.8111458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074789775,5.93082333,-0.005976657,0.005976657,0.531175758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.452815101,116.9244419,0.452815101,63.07555813,0,0.939579654,0,0,0,7,23,0% -7/20/2018 8:00,121.3976767,355.7865861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118789164,6.209647362,0.445738227,-0.445738227,0.453927964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.568979782,124.6791134,0.568979782,55.32088657,0,0.962123415,0,0,0,7,0,0% -7/20/2018 9:00,120.5831404,12.14197777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104572822,0.21191749,0.90019959,-0.90019959,0.376210493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634753375,129.4016952,0.634753375,50.59830485,0,0.971229249,0,0,0,7,1,0% -7/20/2018 10:00,116.5639271,27.46725721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.034424317,0.479394075,1.473854561,-1.473854561,0.278109715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645652965,130.2146502,0.645652965,49.78534981,0,0.972559017,0,0,0,7,2,0% -7/20/2018 11:00,109.9009781,40.92400682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918133919,0.714258662,2.414203053,-2.414203053,0.117300653,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600933952,126.9368164,0.600933952,53.06318364,0,0.966796181,0,0,0,7,3,0% -7/20/2018 12:00,101.2835399,52.43842995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767731249,0.915223257,4.778411049,-4.778411049,0,#DIV/0!,0,0,0.223000869,1,0.20629732,0,0.938042711,0.976804674,0.724496596,1,0,0,0.034504962,0.312029739,0.906813141,0.631309737,0.961238037,0.922476074,0,0,0,0,0,0,-0.50364129,120.2411996,0.50364129,59.75880037,0,0.950722993,0,0,0,7,4,0% -7/20/2018 13:00,91.31022103,62.38591705,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593663998,1.088839659,43.33673632,-43.33673632,0,#DIV/0!,0,0,0.873110371,1,0.023071017,0,0.959139733,0.997901697,0.724496596,1,0,0,0.105484008,0.312029739,0.744743412,0.469240008,0.961238037,0.922476074,0,0,0,0,0,0,-0.360402627,111.1249248,0.360402627,68.8750752,0,0.911266272,0,0,0,7,5,0% -7/20/2018 14:00,80.33821815,71.29119855,92.00109047,316.2516151,38.92399818,38.4438391,0,38.4438391,37.75029602,0.693543081,80.20738383,56.72695214,23.4804317,1.173702159,22.30672954,1.402166422,1.244266142,-5.872337978,5.872337978,0.465617372,0.423081922,0.479727218,15.42967638,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.28702043,0.850343219,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.347560736,14.83159184,36.63458117,15.68193505,0,56.72695214,-0.179372846,100.333232,0.179372846,79.66676802,0,0.771251008,36.63458117,59.43265405,75.53206459,7,6,106% -7/20/2018 15:00,68.93557844,79.72159623,294.1845723,613.1439812,73.80994988,88.00231208,14.20031695,73.80199513,71.58430756,2.21768757,73.55409782,0,73.55409782,2.225642319,71.3284555,1.203152815,1.391404339,-2.559075739,2.559075739,0.967781415,0.250896739,2.164163576,69.60693987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80955927,1.612470283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567929144,66.90883823,70.37748841,68.52130852,14.20031695,0,0.023159841,88.67292022,-0.023159841,91.32707978,0,0,70.37748841,68.52130852,115.2233144,7,7,64% -7/20/2018 16:00,57.18931052,88.33889259,501.7239535,751.631779,94.44098261,273.0083676,177.6329219,95.37544563,91.59323854,3.78220709,124.4965254,0,124.4965254,2.847744076,121.6487813,0.998141766,1.541804533,-1.472285585,1.472285585,0.781929353,0.188232956,3.112671091,100.114202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.0429048,2.063180889,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.25511961,96.23357903,90.29802441,98.29675992,177.6329219,0,0.236329712,76.32998229,-0.236329712,103.6700177,0.838431173,0,239.2310035,98.29675992,303.5642669,7,8,27% -7/20/2018 17:00,45.38972086,98.11957437,687.6615849,824.366808,108.7246179,477.6244228,366.9943698,110.630053,105.4461695,5.183883497,170.0099611,0,170.0099611,3.278448381,166.7315127,0.792200076,1.712509633,-0.894046365,0.894046365,0.683044623,0.158107738,3.800604208,122.2404958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.358869,2.375224692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753524811,117.5022142,104.1123938,119.8774389,366.9943698,0,0.445183341,63.56493054,-0.445183341,116.4350695,0.937686723,0,448.2381417,119.8774389,526.6955279,7,9,18% -7/20/2018 18:00,33.93934614,110.9600993,836.3249837,864.9165276,118.765085,671.0508514,549.5624009,121.4884505,115.1838795,6.304570992,206.3578804,0,206.3578804,3.58120551,202.7766749,0.592353336,1.93661907,-0.50820378,0.50820378,0.617061654,0.142008295,4.233154235,136.1527916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7191262,2.594571201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.066905833,130.8752421,113.7860321,133.4698133,549.5624009,0,0.635393571,50.55081901,-0.635393571,129.449181,0.971308615,0,647.5807266,133.4698133,734.93405,7,10,13% -7/20/2018 19:00,23.76735615,131.3753588,936.5232251,886.6171065,125.1006152,832.3274413,703.9391635,128.3882777,121.3283701,7.05990766,230.8431437,0,230.8431437,3.77224512,227.0708986,0.414818619,2.292932567,-0.210968825,0.210968825,0.566231484,0.133579832,4.40661228,141.7317986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6254443,2.732978748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.192575596,136.2379958,119.8180198,138.9709746,703.9391635,0,0.793960728,37.44279627,-0.793960728,142.5572037,0.987024593,0,814.6232862,138.9709746,905.5770097,7,11,11% -7/20/2018 20:00,17.61572899,168.0137916,980.9886759,895.1355341,127.8281735,945.9941655,814.6253761,131.3687894,123.9736824,7.395107011,241.706553,0,241.706553,3.854491065,237.852062,0.307452471,2.932393852,0.044266047,-0.044266047,0.52258375,0.130305453,4.324611919,139.0943851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1682191,2.792565656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.133166614,133.7028136,122.3013857,136.4953793,814.6253761,0,0.910058137,24.4866132,-0.910058137,155.5133868,0.995058455,0,932.9012539,136.4953793,1022.23475,7,12,10% -7/20/2018 21:00,19.81629678,212.2777237,966.5340762,892.4335502,126.9465294,1001.206029,870.8012641,130.4047653,123.1186232,7.286142132,238.1752832,0,238.1752832,3.827906245,234.3473769,0.345859624,3.704945207,0.285026549,-0.285026549,0.481411279,0.131342011,4.003908254,128.7794528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3463036,2.773305044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.9008179,123.7877084,121.2471215,126.5610134,870.8012641,0,0.97576034,12.64101895,-0.97576034,167.3589811,0.998757909,0,990.9667714,126.5610134,1073.798423,7,13,8% -7/20/2018 22:00,28.47198511,239.9401957,894.1763803,877.9006185,122.4575648,991.6260006,866.1203039,125.5056966,118.7650174,6.740679256,220.4959632,0,220.4959632,3.692547398,216.8034158,0.496929885,4.187746423,0.533985083,-0.533985083,0.438836862,0.136950122,3.476088905,111.8029682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1614522,2.67523802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.518414579,107.4692656,116.6798667,110.1445037,866.1203039,0,0.986581266,9.396805443,-0.986581266,170.6031946,0.999319938,0,982.2111549,110.1445037,1054.29853,7,14,7% -7/20/2018 23:00,39.45621984,255.8059945,769.0965418,848.0149287,114.3354041,915.3301498,798.6446054,116.6855444,110.8877698,5.7977746,189.9239951,0,189.9239951,3.447634286,186.4763608,0.688640947,4.46465685,0.818831692,-0.818831692,0.390125223,0.148661966,2.787514408,89.65604537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5895421,2.497799304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019544699,86.18080104,108.6090868,88.67860034,798.6446054,0,0.941781304,19.64711236,-0.941781304,160.3528876,0.996909118,0,904.785176,88.67860034,962.8235464,7,15,6% -7/20/2018 0:00,51.15151177,266.8078406,600.4680456,794.1388352,102.3340385,774.3640478,670.5891763,103.7748715,99.2482897,4.526581766,148.6761785,0,148.6761785,3.085748834,145.5904296,0.892762298,4.656675289,1.188554967,-1.188554967,0.32689882,0.170423787,1.998989532,64.29437482,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.40123116,2.235614526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.448261111,61.80219863,96.84949227,64.03781316,670.5891763,0,0.844423099,32.3898217,-0.844423099,147.6101783,0.990787977,0,761.2611856,64.03781316,803.1726536,7,16,6% -7/20/2018 1:00,62.97212679,275.8575569,401.4720569,695.5819308,85.38300159,573.5647381,487.7298831,85.83485501,82.80838906,3.026465947,99.91616081,0,99.91616081,2.574612528,97.34154828,1.099070949,4.814622635,1.763994124,-1.763994124,0.228492928,0.21267483,1.188109009,38.21366983,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.59857333,1.865298012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860780933,36.73243297,80.45935427,38.59773098,487.7298831,0,0.701182508,45.47804602,-0.701182508,134.521954,0.978691889,0,557.796635,38.59773098,583.0580779,7,17,5% -7/20/2018 2:00,74.60029109,284.2828962,191.3554736,496.8073002,59.42768921,318.4067119,259.3284684,59.0782435,57.63572511,1.442518389,48.18831411,0,48.18831411,1.791964094,46.39635002,1.302020702,4.961672545,2.999801066,-2.999801066,0.017157494,0.310561742,0.465054621,14.95775523,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.40165126,1.298271886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33693049,14.37796328,55.73858175,15.67623516,259.3284684,0,0.521990052,58.53416485,-0.521990052,121.4658352,0.954212734,0,303.1931086,15.67623516,313.452891,7,18,3% -7/20/2018 3:00,85.6990573,292.864358,18.79306873,86.81580596,12.28230575,39.87423168,27.82061268,12.053619,11.91194891,0.14167009,4.926953927,0,4.926953927,0.370356835,4.556597091,1.495730716,5.111447309,9.745993778,-9.745993778,0,0.653555091,0.092589209,2.977987228,0.53194683,1,0.102248439,0,0.950974048,0.989736011,0.724496596,1,11.54406871,0.268322266,0.07265041,0.312029739,0.814722057,0.539218653,0.961238037,0.922476074,0.06349507,2.862554597,11.60756378,3.130876863,13.02152596,0,0.320455617,71.30951909,-0.320455617,108.6904809,0.893972153,0,23.24844538,3.130876863,25.29754167,7,19,9% -7/20/2018 4:00,96.38836993,302.2034726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682294416,5.274445607,-5.473792495,5.473792495,0.533772664,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.103751632,84.04475251,-0.103751632,95.95524749,0.568079868,0,0,0,0,7,20,0% -7/20/2018 5:00,105.790149,312.8517842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846386416,5.460293704,-1.613567247,1.613567247,0.80608994,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.105531597,96.05779497,0.105531597,83.94220503,0,0.576208248,0,0,0,7,21,0% -7/20/2018 6:00,113.5662648,325.2916961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98210524,5.677411126,-0.582083815,0.582083815,0.629695885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296102146,107.2236386,0.296102146,72.77636139,0,0.881139353,0,0,0,7,22,0% -7/20/2018 7:00,119.0552107,339.7341994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.077905418,5.929480361,-0.008350133,0.008350133,0.531581647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.454976795,117.0634412,0.454976795,62.93655883,0,0.940104285,0,0,0,7,23,0% -7/21/2018 8:00,121.587171,355.7583483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122096463,6.20915452,0.441669656,-0.441669656,0.45462373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.571330928,124.8430877,0.571330928,55.15691235,0,0.962485046,0,0,0,7,0,0% -7/21/2018 9:00,120.7731307,12.1674664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10788878,0.21236235,0.894055114,-0.894055114,0.37726126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637236089,129.586029,0.637236089,50.41397098,0,0.971536145,0,0,0,7,1,0% -7/21/2018 10:00,116.7446464,27.53808224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037578464,0.480630205,1.463962301,-1.463962301,0.279801392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648200355,130.4060534,0.648200355,49.59394662,0,0.972863356,0,0,0,7,2,0% -7/21/2018 11:00,110.0670364,41.02595942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921032183,0.716038071,2.394879084,-2.394879084,0.120605246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.603474722,127.1191637,0.603474722,52.8808363,0,0.967146488,0,0,0,7,3,0% -7/21/2018 12:00,101.4339035,52.56012878,0,0,0,0,0,0,0,0,0,0,0,0,0,1.77035559,0.917347302,4.717064036,-4.717064036,0,#DIV/0!,0,0,0.216615135,1,0.208903381,0,0.937687774,0.976449737,0.724496596,1,0,0,0.033608853,0.312029739,0.909114991,0.633611587,0.961238037,0.922476074,0,0,0,0,0,0,-0.506104647,120.4047088,0.506104647,59.59529124,0,0.951206202,0,0,0,7,4,0% -7/21/2018 13:00,91.44645329,62.52151425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596041699,1.091206277,39.26593527,-39.26593527,0,#DIV/0!,0,0,0.860815668,1,0.025461864,0,0.958914958,0.997676921,0.724496596,1,0,0,0.104434102,0.312029739,0.746847231,0.471343827,0.961238037,0.922476074,0,0,0,0,0,0,-0.362723166,111.2675295,0.362723166,68.73247053,0,0.912153828,0,0,0,7,5,0% -7/21/2018 14:00,80.46197828,71.43962877,89.9975431,311.4587298,38.38818601,37.90908006,0,37.90908006,37.23064056,0.678439495,79.50094057,56.52244885,22.97849173,1.157545446,21.82094628,1.404326444,1.246856738,-5.949621255,5.949621255,0.452401153,0.426547044,0.465394448,14.96868522,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.78750785,0.838637735,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.337176693,14.3884696,36.12468454,15.22710733,0,56.52244885,-0.181476528,100.4557752,0.181476528,79.5442248,0,0.774482276,36.12468454,59.00274213,74.74079921,7,6,107% -7/21/2018 15:00,69.0523006,79.88551833,292.0623911,611.1881865,73.55307274,86.54426815,13.00740226,73.53686589,71.33517622,2.201689672,73.03180463,0,73.03180463,2.217896525,70.8139081,1.205190002,1.394265319,-2.573429465,2.573429465,0.970236047,0.251840275,2.152662025,69.23701046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.57008475,1.606858482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559596309,66.55324802,70.12968106,68.1601065,13.00740226,0,0.021282156,88.78053022,-0.021282156,91.21946978,0,0,70.12968106,68.1601065,114.7391076,7,7,64% -7/21/2018 16:00,57.30257918,88.52438585,499.8085108,750.6988233,94.27917532,271.4041809,176.2001029,95.20407801,91.43631034,3.767767674,124.027225,0,124.027225,2.842864989,121.18436,1.000118677,1.545042001,-1.477101663,1.477101663,0.782752951,0.188630592,3.103632273,99.82348255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.89205944,2.059646007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248571016,95.9541284,90.14063046,98.01377441,176.2001029,0,0.234714772,76.42518986,-0.234714772,103.5748101,0.836975487,0,237.6157974,98.01377441,301.7638524,7,8,27% -7/21/2018 17:00,45.50547888,98.33636293,685.985062,823.8376398,108.6058198,476.1538759,365.6516771,110.5021988,105.3309536,5.171245159,169.5998865,0,169.5998865,3.27486618,166.3250203,0.794220434,1.716293308,-0.895845244,0.895845244,0.683352249,0.158320969,3.793026762,121.9967791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2481191,2.372629399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748034977,117.2679445,103.9961541,119.6405739,365.6516771,0,0.443839489,63.65088651,-0.443839489,116.3491135,0.937346662,0,446.738533,119.6405739,525.0408958,7,9,18% -7/21/2018 18:00,34.06742429,111.2189498,834.8625975,864.570726,118.6704039,669.7906659,548.4050657,121.3856003,115.0920534,6.293546907,206.000453,0,206.000453,3.578350524,202.4221025,0.594588722,1.941136864,-0.508652201,0.508652201,0.617138339,0.142143634,4.226492391,135.9385238,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6308594,2.592502774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.06207935,130.6692797,113.6929388,133.2617825,548.4050657,0,0.634309085,50.63124063,-0.634309085,129.3687594,0.971174076,0,646.2897214,133.2617825,733.5068929,7,10,13% -7/21/2018 19:00,23.92429791,131.6554322,935.2251419,886.3589978,125.0202822,831.2768222,702.9762406,128.3005816,121.2504594,7.05012216,230.5259861,0,230.5259861,3.769822785,226.7561633,0.41755777,2.29782077,-0.210631336,0.210631336,0.566173769,0.133679343,4.40045624,141.5337992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5505536,2.731223775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.188115566,136.0476713,119.7386692,138.778895,702.9762406,0,0.79310555,37.52331548,-0.79310555,142.4766845,0.986956689,0,813.5457719,138.778895,904.3737831,7,11,11% -7/21/2018 20:00,17.8081385,168.0887549,979.7901889,894.9138781,127.7552492,945.1112934,813.8222641,131.2890294,123.9029571,7.386072309,241.413767,0,241.413767,3.85229213,237.5614749,0.31081065,2.933702208,0.045198099,-0.045198099,0.52242436,0.130390415,4.318604316,138.9011599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.1002352,2.790972534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.128814126,133.5170783,122.2290493,136.3080508,813.8222641,0,0.909386125,24.57934403,-0.909386125,155.420656,0.995017855,0,931.9967327,136.3080508,1021.207626,7,12,10% -7/21/2018 21:00,19.98448297,211.9937225,965.3622399,892.2117305,126.8748484,1000.422444,870.0960319,130.3264119,123.0491036,7.277308335,237.8889964,0,237.8889964,3.825744797,234.0632516,0.348795027,3.699988452,0.286546267,-0.286546267,0.481151392,0.131427192,3.997732625,128.5808233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2794788,2.771739082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.896343678,123.5967782,121.1758224,126.3685173,870.0960319,0,0.9752125,12.7836594,-0.9752125,167.2163406,0.998729123,0,990.1660695,126.3685173,1072.871737,7,13,8% -7/21/2018 22:00,28.59692958,239.628917,892.9562689,877.6400869,122.3807014,990.8539225,865.4319693,125.4219533,118.6904717,6.731481541,220.1978154,0,220.1978154,3.690229684,216.5075857,0.499110577,4.182313584,0.536241798,-0.536241798,0.438450941,0.13705117,3.469485669,111.5905854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.089796,2.673558844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.513630557,107.2651152,116.6034266,109.9386741,865.4319693,0,0.986089836,9.567720314,-0.986089836,170.4322797,0.999294681,0,981.42499,109.9386741,1053.377653,7,14,7% -7/21/2018 23:00,39.55947476,255.5470044,767.7577735,847.6561472,114.245485,914.4653235,797.8770789,116.5882445,110.8005621,5.787682399,189.5966839,0,189.5966839,3.444922895,186.151761,0.690443085,4.460136621,0.822212937,-0.822212937,0.389546996,0.148804075,2.780315176,89.42449334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5057148,2.49583491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.014328881,85.95822442,108.5200437,88.45405933,797.8770789,0,0.941274456,19.73330199,-0.941274456,160.266698,0.99688053,0,903.9081692,88.45405933,961.799582,7,15,6% -7/21/2018 0:00,51.24756056,266.5905769,598.9528216,793.5598183,102.2187554,773.2812139,669.6295718,103.6516422,99.13648281,4.515159368,148.3053187,0,148.3053187,3.082272623,145.223046,0.894438665,4.652883322,1.193999563,-1.193999563,0.325967739,0.170662449,1.991184086,64.04332485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.29375812,2.233096023,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442606092,61.56087985,96.73636421,63.79397587,669.6295718,0,0.843829988,32.4532054,-0.843829988,147.5467946,0.990746358,0,760.1694237,63.79397587,801.921305,7,16,5% -7/21/2018 1:00,63.06922429,275.6679743,399.7508466,694.4713852,85.21526847,572.0937093,486.4345049,85.65920446,82.64571372,3.013490737,99.49377567,0,99.49377567,2.569554755,96.92422091,1.100765621,4.811313794,1.774234732,-1.774234732,0.226741681,0.213170952,1.180016353,37.95338219,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44220361,1.861633673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.854917831,36.48223458,80.29712144,38.34386826,486.4345049,0,0.700438514,45.53780339,-0.700438514,134.4621966,0.978616147,0,556.3297823,38.34386826,581.4250772,7,17,5% -7/21/2018 2:00,74.70374051,284.1115467,189.4960221,494.1997238,59.12115391,316.2664813,257.4995472,58.76693404,57.33843298,1.428501058,47.72822539,0,47.72822539,1.782720924,45.94550446,1.303826235,4.958681932,3.0272422,-3.0272422,0.012464784,0.31199153,0.45793088,14.72863124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.11588276,1.291575241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.331769364,14.15772058,55.44765212,15.44929582,257.4995472,0,0.521043487,58.59772741,-0.521043487,121.4022726,0.95403872,0,301.1121905,15.44929582,311.2234456,7,18,3% -7/21/2018 3:00,85.81021296,292.7058008,17.73058073,82.33861596,11.71488645,37.78723642,26.2919364,11.49530001,11.3616394,0.133660607,4.652231625,0,4.652231625,0.35324705,4.298984575,1.497670748,5.108679964,10.03117719,-10.03117719,0,0.660716456,0.088311762,2.840409851,0.542392452,1,0.099360917,0,0.951297717,0.99005968,0.724496596,1,11.00983174,0.255926285,0.073783202,0.312029739,0.812164064,0.53666066,0.961238037,0.922476074,0.060589961,2.730309989,11.0704217,2.986236274,12.03138855,0,0.319314772,71.37850972,-0.319314772,108.6214903,0.893414698,0,21.81944106,2.986236274,23.77387298,7,19,9% -7/21/2018 4:00,96.51790788,302.0558925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68455528,5.27186985,-5.38188602,5.38188602,0.549489596,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.102278251,84.12962252,-0.102278251,95.87037748,0.561137516,0,0,0,0,7,20,0% -7/21/2018 5:00,105.9375702,312.7176727,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848959402,5.457953018,-1.60514398,1.60514398,0.804649477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.107282521,96.15868836,0.107282521,83.84131164,0,0.583940855,0,0,0,7,21,0% -7/21/2018 6:00,113.7331748,325.1792665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985018369,5.67544886,-0.58180313,0.58180313,0.629647885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298117073,107.3445452,0.298117073,72.65545476,0,0.882280656,0,0,0,7,22,0% -7/21/2018 7:00,119.2398027,339.6575479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081127156,5.92814254,-0.010676946,0.010676946,0.531979555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.457224102,117.2081285,0.457224102,62.79187155,0,0.940644435,0,0,0,7,23,0% -7/22/2018 8:00,121.782498,355.73223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125505562,6.20869867,0.437605595,-0.437605595,0.455318725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573763068,125.013055,0.573763068,54.98694498,0,0.962856015,0,0,0,7,0,0% -7/22/2018 9:00,120.9683284,12.1968359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111295622,0.212874945,0.887888643,-0.887888643,0.378315789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639792849,129.7763745,0.639792849,50.22362549,0,0.971849705,0,0,0,7,1,0% -7/22/2018 10:00,116.9296982,27.61396605,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040808226,0.481954627,1.454030516,-1.454030516,0.281499827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650812994,130.6029262,0.650812994,49.39707377,0,0.973173015,0,0,0,7,2,0% -7/22/2018 11:00,110.2365288,41.13350166,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923990384,0.717915037,2.375535866,-2.375535866,0.123913131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.606070698,127.3059279,0.606070698,52.69407205,0,0.967501374,0,0,0,7,3,0% -7/22/2018 12:00,101.5869327,52.68756821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773026453,0.91957154,4.656308648,-4.656308648,0,#DIV/0!,0,0,0.210186687,1,0.211549043,0,0.937325925,0.976087888,0.724496596,1,0,0,0.032701751,0.312029739,0.911451523,0.635948119,0.961238037,0.922476074,0,0,0,0,0,0,-0.508612615,120.5714608,0.508612615,59.42853917,0,0.951693355,0,0,0,7,4,0% -7/22/2018 13:00,91.58476458,62.66289275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598455687,1.093673797,35.8489499,-35.8489499,0,#DIV/0!,0,0,0.848493521,1,0.027887588,0,0.958685502,0.997447466,0.724496596,1,0,0,0.103372915,0.312029739,0.748982663,0.473479259,0.961238037,0.922476074,0,0,0,0,0,0,-0.365077895,111.4123766,0.365077895,68.58762344,0,0.913042927,0,0,0,7,5,0% -7/22/2018 14:00,80.58737513,71.59394058,87.97688034,306.5622371,37.84066661,37.36283778,0,37.36283778,36.69963089,0.663206886,78.75816384,56.28611492,22.47204891,1.141035715,21.3310132,1.406515032,1.249549988,-6.029926935,6.029926935,0.438668073,0.430120578,0.451052631,14.50740309,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.27708115,0.826676492,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.326786096,13.94506767,35.60386725,14.77174416,0,56.28611492,-0.183604202,100.5797652,0.183604202,79.42023479,0,0.777675078,35.60386725,58.54405297,73.91977903,7,6,108% -7/22/2018 15:00,69.17047462,80.05558629,289.9133971,609.1921385,73.29159004,85.07802312,11.81095529,73.26706783,71.08157819,2.185489647,72.50287148,0,72.50287148,2.210011857,70.29285962,1.207252527,1.397233565,-2.588061692,2.588061692,0.972738305,0.252805116,2.140971662,68.8610082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32631667,1.601146067,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.551126681,66.19182033,69.87744335,67.7929664,11.81095529,0,0.019387898,88.88908564,-0.019387898,91.11091436,0,0,69.87744335,67.7929664,114.246584,7,7,63% -7/22/2018 16:00,57.41728186,88.71653992,497.8666529,749.7482183,94.11474995,269.7881028,174.7581307,95.02997213,91.276843,3.753129129,123.551441,0,123.551441,2.837906958,120.7135341,1.002120616,1.548395723,-1.481951269,1.481951269,0.783582282,0.189036059,3.094428826,99.52746806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73877337,2.05605393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.24190315,95.66958801,89.98067652,97.72564194,174.7581307,0,0.233089091,76.52099204,-0.233089091,103.479008,0.835489747,0,235.9893028,97.72564194,299.948781,7,8,27% -7/22/2018 17:00,45.62290605,98.56066751,684.2810738,823.2978967,108.4849269,474.6717769,364.2996711,110.3721059,105.2137061,5.158399776,169.1830895,0,169.1830895,3.271220812,165.9118687,0.796269925,1.720208161,-0.897619641,0.897619641,0.683655689,0.158538547,3.785277375,121.7475322,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1354163,2.369988343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.742420573,117.0283588,103.8778369,119.3983472,364.2996711,0,0.442488281,63.73724865,-0.442488281,116.2627513,0.937002657,0,445.2275966,119.3983472,523.3714269,7,9,18% -7/22/2018 18:00,34.19779417,111.4865167,833.3691245,864.216629,118.5736378,668.5179411,547.2374475,121.2804936,114.9982052,6.282288477,205.6354253,0,205.6354253,3.575432671,202.0599926,0.596864105,1.945806789,-0.509053581,0.509053581,0.617206979,0.142282254,4.21963496,135.7179652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.540649,2.590388799,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.057111164,130.4572705,113.5977601,133.0476592,547.2374475,0,0.63321791,50.71206486,-0.63321791,129.2879351,0.971038241,0,644.9862485,133.0476592,732.0632806,7,10,14% -7/22/2018 19:00,24.08474367,131.9451142,933.8897972,886.0929004,124.9375996,830.2099688,701.9996431,128.2103258,121.17027,7.040055768,230.1997231,0,230.1997231,3.767329599,226.4323935,0.420358076,2.302876674,-0.210232757,0.210232757,0.566105609,0.133781952,4.394070851,141.3284231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4734725,2.72941747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.183489373,135.850256,119.6569619,138.5796734,701.9996431,0,0.792241584,37.60451278,-0.792241584,142.3954872,0.986887938,0,812.451942,138.5796734,903.1495667,7,11,11% -7/22/2018 20:00,18.00577011,168.1725871,978.5460847,894.6833351,127.6795159,944.2054886,812.9992875,131.2062012,123.8295075,7.376693726,241.1098359,0,241.1098359,3.850008493,237.2598274,0.314259973,2.935165357,0.046204906,-0.046204906,0.522252185,0.130478797,4.312327705,138.6992825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,119.0296327,2.789318047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.124266743,133.323026,122.1538994,136.1123441,812.9992875,0,0.908700605,24.67360218,-0.908700605,155.3263978,0.994976376,0,931.0689845,136.1123441,1020.151791,7,12,10% -7/22/2018 21:00,20.15920558,211.7129297,964.1348269,891.9789393,126.799734,999.6063506,869.3620408,130.2443098,122.9762542,7.268055578,237.589131,0,237.589131,3.823479822,233.7656512,0.351844512,3.695087692,0.28815859,-0.28815859,0.480875668,0.1315166,3.991246436,128.3722052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2094532,2.770098115,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891644456,123.3962465,121.1010976,126.1663446,869.3620408,0,0.974644134,12.93000848,-0.974644134,167.0699915,0.998699224,0,989.3322935,126.1663446,1071.905643,7,13,8% -7/22/2018 22:00,28.72813924,239.3148721,891.6697445,877.3647825,122.2996093,990.0371879,864.7035798,125.333608,118.6118248,6.721783177,219.8834374,0,219.8834374,3.687784458,216.195653,0.501400618,4.176832468,0.538618591,-0.538618591,0.438044486,0.137157967,3.462532759,111.3669559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0141977,2.671787286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.508593197,107.0501541,116.5227909,109.7219413,864.7035798,0,0.985569055,9.745602031,-0.985569055,170.254398,0.999267888,0,980.5933106,109.7219413,1052.404127,7,14,7% -7/22/2018 23:00,39.66844927,255.2840057,766.3417336,847.2756497,114.1502983,913.5413821,797.0561288,116.4852533,110.7082456,5.777007692,189.2504784,0,189.2504784,3.442052664,185.8084257,0.692345049,4.455546428,0.825762109,-0.825762109,0.388940052,0.148954824,2.772734803,89.18068249,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4169767,2.493755438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.008836926,85.72386416,108.4258136,88.2176196,797.0561288,0,0.940728238,19.82578376,-0.940728238,160.1742162,0.996849687,0,902.9709664,88.2176196,960.7076341,7,15,6% -7/22/2018 0:00,51.34899955,266.3694035,597.3504854,792.9453064,102.09667,772.1223247,668.6011658,103.5211589,99.01807866,4.503080281,147.9131324,0,147.9131324,3.078591296,144.8345411,0.89620911,4.649023117,1.19970879,-1.19970879,0.324991404,0.170915857,1.982981278,63.77949436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.17994355,2.230428914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436663186,61.30727595,96.61660673,63.53770486,668.6011658,0,0.84318699,32.52179601,-0.84318699,147.478204,0.990701172,0,759.0005655,63.53770486,800.5847225,7,16,5% -7/22/2018 1:00,63.17157312,275.4748106,397.9353921,693.2937436,85.03782739,570.5255637,485.0521355,85.47342821,82.47362313,2.999805074,99.0482472,0,99.0482472,2.564204252,96.48404295,1.102551945,4.807942451,1.784988563,-1.784988563,0.224902668,0.213697573,1.171541132,37.68078996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.27678359,1.857757252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.848777562,36.22020856,80.12556116,38.07796582,485.0521355,0,0.699634376,45.60232273,-0.699634376,134.3976773,0.9785341,0,554.7656162,38.07796582,579.6868833,7,17,4% -7/22/2018 2:00,74.81242654,283.9369521,187.5439221,491.4380322,58.79704749,313.9992623,255.5613774,58.43788487,57.02409957,1.413785304,47.24514315,0,47.24514315,1.77294792,45.47219523,1.305723164,4.955634683,3.056247773,-3.056247773,0.007504539,0.313510813,0.450520498,14.49028786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.81373352,1.284494732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326400567,13.92861585,55.14013409,15.21311059,255.5613774,0,0.520027675,58.66589208,-0.520027675,121.3341079,0.953851271,0,298.9076788,15.21311059,308.8643554,7,18,3% -7/22/2018 3:00,85.92642326,292.5443312,16.64914091,77.73310663,11.1271797,35.6441883,24.72702586,10.91716243,10.79165417,0.125508257,4.372302494,0,4.372302494,0.335525523,4.036776971,1.499699,5.105861788,10.34515113,-10.34515113,0,0.668333565,0.083881381,2.697913544,0.553366325,1,0.09636425,0,0.951631572,0.990393535,0.724496596,1,10.45650824,0.243087099,0.074963574,0.312029739,0.809509522,0.534006118,0.961238037,0.922476074,0.057581248,2.593337118,10.51408949,2.836424217,11.04392243,0,0.318101604,71.4518433,-0.318101604,108.5481567,0.892817517,0,20.37429688,2.836424217,22.2306798,7,19,9% -7/22/2018 4:00,96.65299214,301.9057886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.686912945,5.269250042,-5.289346707,5.289346707,0.565314751,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100721666,84.21927129,-0.100721666,95.78072871,0.553582476,0,0,0,0,7,20,0% -7/22/2018 5:00,106.0907595,312.5815957,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851633059,5.455578027,-1.596353745,1.596353745,0.803146258,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109119847,96.26458112,0.109119847,83.73541888,0,0.591788215,0,0,0,7,21,0% -7/22/2018 6:00,113.906052,325.065771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988035646,5.673467989,-0.581390022,0.581390022,0.629577239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300218873,107.4707496,0.300218873,72.52925041,0,0.883454841,0,0,0,7,22,0% -7/22/2018 7:00,119.4304153,339.5812333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084453974,5.926810599,-0.012954932,0.012954932,0.532369113,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459555991,117.3584601,0.459555991,62.64153986,0,0.941199329,0,0,0,7,23,0% -7/23/2018 8:00,121.9835907,355.7082784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12901529,6.208280635,0.43355008,-0.43355008,0.456012259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.576274897,125.188963,0.576274897,54.81103701,0,0.963235853,0,0,0,7,0,0% -7/23/2018 9:00,121.1686564,12.23013405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114792005,0.213456107,0.881706233,-0.881706233,0.379373043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642422142,129.9726705,0.642422142,50.02732945,0,0.972169557,0,0,0,7,1,0% -7/23/2018 10:00,117.1189982,27.69494255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044112135,0.483367934,1.444068863,-1.444068863,0.28320337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653489237,130.8051949,0.653489237,49.19480507,0,0.973487646,0,0,0,7,2,0% -7/23/2018 11:00,110.4093704,41.24664438,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927007038,0.71988975,2.356191922,-2.356191922,0.12722114,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608720191,127.4970219,0.608720191,52.50297814,0,0.967860454,0,0,0,7,3,0% -7/23/2018 12:00,101.742548,52.82073628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775742452,0.921895761,4.596190288,-4.596190288,0,#DIV/0!,0,0,0.203720943,1,0.214232738,0,0.936957313,0.975719276,0.724496596,1,0,0,0.031784287,0.312029739,0.913821341,0.638317937,0.961238037,0.922476074,0,0,0,0,0,0,-0.511163546,120.7413641,0.511163546,59.25863594,0,0.952183948,0,0,0,7,4,0% -7/23/2018 13:00,91.7250851,62.81002159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600904742,1.09624168,32.942179,-32.942179,0,#DIV/0!,0,0,0.836153962,1,0.0303469,0,0.95845143,0.997213393,0.724496596,1,0,0,0.102301151,0.312029739,0.751148571,0.475645167,0.961238037,0.922476074,0,0,0,0,0,0,-0.367465293,111.55938,0.367465293,68.44061998,0,0.913932728,0,0,0,7,5,0% -7/23/2018 14:00,80.71434937,71.75408677,85.94072523,301.5631527,37.28150087,36.80518355,0,36.80518355,36.15732607,0.647857488,77.97822085,56.01672223,21.96149862,1.124174805,20.83732382,1.40873115,1.252345066,-6.113374453,6.113374453,0.424397707,0.43380482,0.436718631,14.0463724,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.75579713,0.81446082,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316401162,13.50190743,35.07219829,14.31636825,0,56.01672223,-0.185754532,100.7051264,0.185754532,79.29487359,0,0.780827563,35.07219829,58.05576895,73.06853795,7,6,108% -7/23/2018 15:00,69.29005563,80.23173635,287.7384226,607.1558398,73.02553385,83.60457781,10.61193948,72.99263834,70.82354457,2.169093771,71.96750115,0,71.96750115,2.201989281,69.76551187,1.20933961,1.400307964,-2.602971724,2.602971724,0.975288071,0.253791389,2.129095129,68.47901808,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.07828494,1.595333738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.542522174,65.8246369,69.62080711,67.41997064,10.61193948,0,0.017478115,88.99852679,-0.017478115,91.00147321,0,0,69.62080711,67.41997064,113.7458295,7,7,63% -7/23/2018 16:00,57.53338771,88.91526935,495.8988334,748.779953,93.94772589,268.1608188,173.3076686,94.8531502,91.11485532,3.738294875,123.069284,0,123.069284,2.832870566,120.2364135,1.004147045,1.551864205,-1.486832245,1.486832245,0.784416978,0.189449379,3.085061669,99.22618811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.58306466,2.052405081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235116677,95.37998627,89.81818133,97.43239135,173.3076686,0,0.231453404,76.61734521,-0.231453404,103.3826548,0.833973797,0,234.3522357,97.43239135,298.1197872,7,8,27% -7/23/2018 17:00,45.741986,98.79236627,682.5497263,822.7475089,108.3619386,473.1784782,362.9387038,110.2397744,105.0944263,5.145348147,168.7595957,0,168.7595957,3.267512261,165.4920834,0.798348262,1.724252067,-0.899368139,0.899368139,0.6839547,0.158760504,3.777355519,121.4927381,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.02076,2.36730151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.736681215,116.783441,103.7574412,119.1507425,362.9387038,0,0.441130116,63.82399079,-0.441130116,116.1760092,0.936654757,0,443.7057048,119.1507425,521.6874828,7,9,18% -7/23/2018 18:00,34.33045162,111.7626038,831.8443594,863.8541243,118.4747687,667.2326771,546.0595656,121.1731114,114.9023173,6.270794154,205.2627471,0,205.2627471,3.572451401,201.6902957,0.599179414,1.950625417,-0.509407026,0.509407026,0.617267422,0.142424202,4.212580322,135.4910638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.4484779,2.588228879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.052000103,130.2391642,113.500478,132.8273931,546.0595656,0,0.632120112,50.79328567,-0.632120112,129.2067143,0.970901109,0,643.6703157,132.8273931,730.6031879,7,10,14% -7/23/2018 19:00,24.24868416,132.2440604,932.5167321,885.8186711,124.8525351,829.1265442,701.0090687,128.1174755,121.0877705,7.029705023,229.8642426,0,229.8642426,3.76476459,226.099478,0.423219378,2.308094271,-0.209772508,0.209772508,0.566026901,0.133887716,4.38745379,141.1155956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3941708,2.727559129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.178695335,135.6456781,119.5728661,138.3732373,701.0090687,0,0.791368585,37.68640752,-0.791368585,142.3135925,0.986818316,0,811.3414547,138.3732373,901.903971,7,11,11% -7/23/2018 20:00,18.20856171,168.2649864,977.2557255,894.4437347,127.600931,943.2761228,812.1558642,131.1202586,123.7532921,7.366966453,240.7946038,0,240.7946038,3.847638867,236.9469649,0.317799354,2.936778029,0.047286883,-0.047286883,0.522067156,0.130570666,4.305779473,138.4886689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.9563716,2.787601261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.119522571,133.1205762,122.0758942,135.9081775,812.1558642,0,0.908001066,24.76944111,-0.908001066,155.2305589,0.994933985,0,930.1173648,135.9081775,1019.066549,7,12,10% -7/23/2018 21:00,20.34040747,211.4356723,962.8511091,891.7349738,126.721137,998.7568997,868.5984941,130.1584055,122.9000272,7.258378371,237.2755087,0,237.2755087,3.821109831,233.4543989,0.355007082,3.690248638,0.289863884,-0.289863884,0.480584046,0.131610314,3.984447198,128.1535183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1361808,2.768381065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.886718431,123.1860364,121.0228993,125.9544174,868.5984941,0,0.974054534,13.08012416,-0.974054534,166.9198758,0.998668172,0,988.4645694,125.9544174,1070.899217,7,13,8% -7/23/2018 22:00,28.86561039,238.9984166,890.3160837,877.0744538,122.2142355,989.1748103,863.9342062,125.2406041,118.5290254,6.71157871,219.5526523,0,219.5526523,3.685210124,215.8674422,0.503799942,4.171309276,0.541115935,-0.541115935,0.437617415,0.137270614,3.455228223,111.1320169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.9346077,2.66992219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.503301086,106.8243218,116.4379088,109.494244,863.9342062,0,0.985018093,9.930357481,-0.985018093,170.0696425,0.999239511,0,979.7151026,109.494244,1051.376895,7,14,7% -7/23/2018 23:00,39.78315291,255.0172298,764.8478004,846.8730942,114.0497886,912.5572922,796.1807797,116.3765125,110.6107667,5.765745793,188.8852262,0,188.8852262,3.439021925,185.4462043,0.694347005,4.450890309,0.829480138,-0.829480138,0.388304232,0.149114358,2.76477228,88.92458036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.3232762,2.491559678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.003068105,85.47768905,108.3263443,87.96924873,796.1807797,0,0.940141782,19.92461956,-0.940141782,160.0753804,0.996816532,0,901.9725083,87.96924873,959.5466222,7,15,6% -7/23/2018 0:00,51.45583442,266.1444784,595.6606137,792.2947524,101.9677194,770.8863707,667.5030129,103.3833577,98.89301639,4.490341314,147.4995151,0,147.4995151,3.074702959,144.4248121,0.89807373,4.645097433,1.205685101,-1.205685101,0.323969394,0.171184257,1.974381481,63.50289532,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05972894,2.227611827,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.430432662,61.04139843,96.4901616,63.26901026,667.5030129,0,0.84249329,32.59565091,-0.84249329,147.4043491,0.990652346,0,757.7535876,63.26901026,799.1618894,7,16,5% -7/23/2018 1:00,63.27916998,275.2781831,396.0255814,692.0478686,84.8505783,568.8593161,483.5818877,85.27742841,82.2920203,2.985408115,98.57954524,0,98.57954524,2.558558001,96.02098724,1.104429864,4.804510654,1.796264324,-1.796264324,0.222974399,0.214255296,1.162685847,37.39597354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.10222004,1.853666562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.842361938,35.9464322,79.94458198,37.80009876,483.5818877,0,0.69876942,45.67164242,-0.69876942,134.3283576,0.978445638,0,553.1031707,37.80009876,577.8425793,7,17,4% -7/23/2018 2:00,74.92633478,283.7592047,185.4997098,488.5190868,58.45508322,311.603976,253.5131541,58.09082196,56.69244679,1.398375168,46.73918872,0,46.73918872,1.762636436,44.97655228,1.307711238,4.952532405,3.086873039,-3.086873039,0.00226731,0.315122235,0.442830548,14.24295264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.49493626,1.277024097,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.320829225,13.69086784,54.81576548,14.96789194,253.5131541,0,0.518942168,58.73867906,-0.518942168,121.2613209,0.95365015,0,296.5786229,14.96789194,306.3748088,7,18,3% -7/23/2018 3:00,86.04763711,292.3800237,15.55388315,73.01800976,10.52096709,33.45427331,23.13330045,10.32097286,10.20372112,0.117251741,4.088465022,0,4.088465022,0.317245976,3.771219046,1.501814581,5.10299408,10.69150008,-10.69150008,0,0.676420608,0.079311494,2.550930279,0.564876956,1,0.093260918,0,0.951975108,0.990737071,0.724496596,1,9.885786755,0.22984363,0.076191122,0.312029739,0.806760681,0.531257277,0.961238037,0.922476074,0.054477701,2.452051214,9.940264457,2.681894844,10.06583211,0,0.316816365,71.52949902,-0.316816365,108.470501,0.89217987,0,18.92079724,2.681894844,20.67604378,7,19,9% -7/23/2018 4:00,96.7935877,301.753221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6893668,5.266587235,-5.196454013,5.196454013,0.581200337,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.099082002,84.31368945,-0.099082002,95.68631055,0.545367485,0,0,0,0,7,20,0% -7/23/2018 5:00,106.249672,312.4436014,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854406605,5.453169571,-1.587216325,1.587216325,0.801583667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.111043112,96.37544991,0.111043112,83.62455009,0,0.599724437,0,0,0,7,21,0% -7/23/2018 6:00,114.0848434,324.9512489,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991156144,5.671469202,-0.580846513,0.580846513,0.629484293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302406747,107.6022155,0.302406747,72.39778455,0,0.884659774,0,0,0,7,22,0% -7/23/2018 7:00,119.6269881,339.5052936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087884817,5.925485202,-0.015182193,0.015182193,0.532749998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.461971359,117.514389,0.461971359,62.48561096,0,0.941768182,0,0,0,7,23,0% -7/24/2018 8:00,122.1903805,355.6865369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132624453,6.207901174,0.429506895,-0.429506895,0.456703685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578865055,125.3707562,0.578865055,54.62924384,0,0.963624083,0,0,0,7,0,0% -7/24/2018 9:00,121.3740371,12.26740517,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118376573,0.214106611,0.875513628,-0.875513628,0.380432041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645122413,130.1748542,0.645122413,49.82514583,0,0.97249533,0,0,0,7,1,0% -7/24/2018 10:00,117.3124623,27.78104216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047488721,0.484870655,1.434086489,-1.434086489,0.284910456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656227414,131.0127846,0.656227414,48.9872154,0,0.973806901,0,0,0,7,2,0% -7/24/2018 11:00,110.5854771,41.36539486,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93008068,0.721962337,2.336864583,-2.336864583,0.13052631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611421501,127.6923579,0.611421501,52.30764211,0,0.968223353,0,0,0,7,3,0% -7/24/2018 12:00,101.9006717,52.95961746,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778502231,0.924319695,4.536748724,-4.536748724,0,#DIV/0!,0,0,0.197223056,1,0.21695295,0,0.936582084,0.975344047,0.724496596,1,0,0,0.030857068,0.312029739,0.916223093,0.640719689,0.961238037,0.922476074,0,0,0,0,0,0,-0.513755802,120.9143273,0.513755802,59.08567274,0,0.952677498,0,0,0,7,4,0% -7/24/2018 13:00,91.86734735,62.96286639,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603387686,1.098909325,30.44106017,-30.44106017,0,#DIV/0!,0,0,0.823806373,1,0.032838558,0,0.958212802,0.996974765,0.724496596,1,0,0,0.101219483,0.312029739,0.75334386,0.477840456,0.961238037,0.922476074,0,0,0,0,0,0,-0.369883868,111.7084553,0.369883868,68.29154469,0,0.914822437,0,0,0,7,5,0% -7/24/2018 14:00,80.84284439,71.92001687,83.89067701,296.4625171,36.71074662,36.23618552,0,36.23618552,35.60378216,0.632403359,77.16031059,55.71308024,21.44723035,1.106964459,20.34026589,1.410973811,1.255241093,-6.200092712,6.200092712,0.409568011,0.437602222,0.422408993,13.58612523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.22370967,0.801991982,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.306033877,13.05950034,34.52974355,13.86149233,0,55.71308024,-0.18792622,100.8317854,0.18792622,79.16821455,0,0.783938138,34.52974355,57.53710072,72.18662523,7,6,109% -7/24/2018 15:00,69.41100191,80.41390152,285.5382451,605.0792415,72.7549293,82.12488946,9.411281818,72.71360764,70.56109974,2.152507903,71.42588292,0,71.42588292,2.193829555,69.23205337,1.21145052,1.403487346,-2.618159258,2.618159258,0.977885292,0.254799245,2.117034794,68.09111625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.82601299,1.589422045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533784502,65.45177091,69.35979749,67.04119296,9.411281818,0,0.015553801,89.10879694,-0.015553801,90.89120306,0,0,69.35979749,67.04119296,113.2369175,7,7,63% -7/24/2018 16:00,57.65086932,89.12048533,493.9054496,747.7939872,93.77811757,266.5229582,171.849329,94.67362922,90.95036132,3.723267906,122.5808507,0,122.5808507,2.827756249,119.7530945,1.006197486,1.5554459,-1.491742597,1.491742597,0.785256698,0.189870587,3.07553149,98.91966479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.42494676,2.048699776,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.228212095,95.08534439,89.65315886,97.13404416,171.849329,0,0.229808386,76.71420913,-0.229808386,103.2857909,0.832427435,0,232.7052549,97.13404416,296.2775441,7,8,27% -7/24/2018 17:00,45.86270591,99.03133352,680.7910737,822.186388,108.2368504,471.6742718,361.5690711,110.1052007,104.97311,5.132090681,168.3294181,0,168.3294181,3.263740391,165.0656777,0.800455222,1.728422833,-0.90108943,0.90108943,0.684249058,0.158986882,3.769260488,121.232374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9041462,2.364568803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730816393,116.5331692,103.6349626,118.897738,361.5690711,0,0.439765334,63.91109054,-0.439765334,116.0889095,0.936302998,0,442.1731679,118.897738,519.9893595,7,9,18% -7/24/2018 18:00,34.46539587,112.0470098,830.2880551,863.483087,118.3737753,665.9348161,544.8713848,121.0634313,114.8043693,6.259062074,204.8823578,0,204.8823578,3.569406079,201.3129517,0.601534636,1.955589238,-0.509711725,0.509711725,0.617319528,0.142569527,4.205326748,135.2577639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3543265,2.586022553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046744913,130.0149075,113.4010714,132.60093,544.8713848,0,0.6310157,50.87490112,-0.6310157,129.1250989,0.970762669,0,642.3418711,132.60093,729.1265278,7,10,14% -7/24/2018 19:00,24.41611255,132.551921,931.1054586,885.5361586,124.7650543,828.0261615,700.0041677,128.0219938,121.0029276,7.019066247,229.5194251,0,229.5194251,3.762126721,225.7572984,0.426141554,2.313467452,-0.209250072,0.209250072,0.565937559,0.133996695,4.380602698,140.895241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.3126165,2.725648002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.173731742,135.4338648,119.4863483,138.1595128,700.0041677,0,0.790486262,37.76902334,-0.790486262,142.2309767,0.986747794,0,810.2139164,138.1595128,900.6365544,7,11,11% -7/24/2018 20:00,18.41645197,168.3656384,975.9184609,894.194901,127.5194506,942.3225305,811.2913762,131.0311543,123.6742687,7.356885588,240.4679116,0,240.4679116,3.845181933,236.6227296,0.321427723,2.938534738,0.04844439,-0.04844439,0.521869211,0.130666091,4.298957046,138.2692362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.8804113,2.785821221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114579745,132.9096491,121.994991,135.6954703,811.2913762,0,0.907286963,24.86691824,-0.907286963,155.1330818,0.994890644,0,929.1411909,135.6954703,1017.951162,7,12,10% -7/24/2018 21:00,20.52802723,211.1622478,961.5103633,891.4796279,126.6390078,997.8732204,867.8045746,130.0686457,122.8203745,7.248271262,236.9479529,0,236.9479529,3.818633334,233.1293196,0.358281664,3.68547648,0.291662464,-0.291662464,0.480276471,0.131708417,3.977332539,127.9246864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0596157,2.766586851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.881563885,122.9660745,120.9411795,125.7326613,867.8045746,0,0.973442968,13.23406448,-0.973442968,166.7659355,0.998635923,0,987.5620015,125.7326613,1069.851514,7,13,8% -7/24/2018 22:00,29.00933359,238.6798969,888.8945862,876.7688472,122.1245281,988.2658013,863.1229154,125.1428858,118.442023,6.700862861,219.2052888,0,219.2052888,3.682505113,215.5227837,0.506308385,4.165750059,0.54373427,-0.54373427,0.437169653,0.137389214,3.447570301,110.8857118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8509776,2.667962419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.497752947,106.5875639,116.3487306,109.2555264,863.1229154,0,0.984436112,10.12188881,-0.984436112,169.8781112,0.999209502,0,978.7893494,109.2555264,1050.294906,7,14,7% -7/24/2018 23:00,39.90359018,254.7469054,763.2753928,846.4481369,113.9439023,911.5120364,795.2500708,116.2619656,110.5080733,5.753892319,188.5007849,0,188.5007849,3.435829064,185.0649559,0.696449032,4.446172259,0.833367943,-0.833367943,0.387639378,0.149282819,2.756426845,88.6561625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2245634,2.489246461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.997021866,85.2196756,108.2215853,87.70892206,795.2500708,0,0.939514231,20.02986271,-0.939514231,159.9701373,0.996781008,0,900.9117527,87.70892206,958.315488,7,15,6% -7/24/2018 0:00,51.56806628,265.9159584,593.882839,791.6076035,101.831843,769.5723758,666.3341989,103.2381769,98.76123718,4.476939698,147.0643758,0,147.0643758,3.070605785,143.9937701,0.900032545,4.641109008,1.211931013,-1.211931013,0.32290128,0.1714679,1.965385371,63.21354951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.93305775,2.224643438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423915011,60.76326824,96.35697276,62.98791168,666.3341989,0,0.841748103,32.67482199,-0.841748103,147.325178,0.990599807,0,756.4275015,62.98791168,797.6518299,7,16,5% -7/24/2018 1:00,63.39200734,275.0782079,394.0213732,690.7325961,84.65342193,567.0940253,482.0229168,85.07110847,82.10080893,2.970299546,98.08765676,0,98.08765676,2.552613009,95.53504375,1.106399248,4.801020428,1.808071141,-1.808071141,0.220955314,0.214844746,1.153453369,37.09902533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.9184204,1.849359436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.83567304,35.66099427,79.75409344,37.51035371,482.0229168,0,0.697843014,45.74579613,-0.697843014,134.2542039,0.978350648,0,551.3415262,37.51035371,575.8913025,7,17,4% -7/24/2018 2:00,75.04544675,283.578395,183.3640226,485.4396424,58.09496562,309.0795915,251.354128,57.72546352,56.34318806,1.382275455,46.21050775,0,46.21050775,1.751777561,44.45873019,1.309790134,4.94937668,3.11917731,-3.11917731,0,0.316828595,0.43794439,14.08579702,0.003246472,1,0.31024472,0,0.922758261,0.961520224,0.724496596,1,54.16802459,1.26915688,0.000554334,0.312029739,0.998429306,0.722925901,0.961238037,0.922476074,0.316993047,13.53980387,54.48501763,14.80896075,250.5381139,0,0.517786571,58.81610416,-0.517786571,121.1838958,0.953435116,0,293.3568534,14.80896075,303.049022,7,18,3% -7/24/2018 3:00,86.17379617,292.2129506,14.45030373,68.21450769,9.89833387,31.22770493,21.51890986,9.708795076,9.599862583,0.108932493,3.802114727,0,3.802114727,0.298471287,3.50364344,1.504016472,5.100078106,11.07446895,-11.07446895,0,0.684991406,0.074617822,2.399965646,0.576933042,1,0.090053557,0,0.952327803,0.991089766,0.724496596,1,9.299643286,0.216241432,0.077465396,0.312029739,0.803919933,0.528416529,0.961238037,0.922476074,0.051289571,2.306938266,9.350932857,2.523179697,9.103939726,0,0.315459432,71.61144849,-0.315459432,108.3885515,0.891501014,0,17.46710436,2.523179697,19.11847501,7,19,9% -7/24/2018 4:00,96.93965606,301.5982476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691916174,5.263882439,-5.103467804,5.103467804,0.597101915,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.097359457,84.4128636,-0.097359457,95.5871364,0.536439205,0,0,0,0,7,20,0% -7/24/2018 5:00,106.4142598,312.303735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857279205,5.450728442,-1.57775181,1.57775181,0.79996514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.113051783,96.49126759,0.113051783,83.50873241,0,0.607724799,0,0,0,7,21,0% -7/24/2018 6:00,114.2694932,324.8357365,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994378892,5.66945313,-0.580174931,0.580174931,0.629369446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304679834,107.738903,0.304679834,72.26109701,0,0.885893307,0,0,0,7,22,0% -7/24/2018 7:00,119.8294589,339.4297633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091418598,5.924166949,-0.017357071,0.017357071,0.533121924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.464469042,117.6758648,0.464469042,62.32413521,0,0.942350199,0,0,0,7,23,0% -7/25/2018 8:00,122.4027976,355.667046,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136331833,6.207560993,0.425479591,-0.425479591,0.457392394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581532128,125.5583767,0.581532128,54.44162333,0,0.964020228,0,0,0,7,0,0% -7/25/2018 9:00,121.5843919,12.30869091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.122047958,0.214827183,0.869316278,-0.869316278,0.381491851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647892068,130.3828608,0.647892068,49.61713925,0,0.972826652,0,0,0,7,1,0% -7/25/2018 10:00,117.5100065,27.87229257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.050936517,0.486463275,1.424092067,-1.424092067,0.286619603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659025831,131.2256194,0.659025831,48.77438063,0,0.97413044,0,0,0,7,2,0% -7/25/2018 11:00,110.7647655,41.4897574,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933209854,0.724132873,2.317570055,-2.317570055,0.133825868,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614172924,127.891848,0.614172924,52.10815198,0,0.968589703,0,0,0,7,3,0% -7/25/2018 12:00,102.0612272,53.10419326,0,0,0,0,0,0,0,0,0,0,0,0,0,1.781304453,0.926843019,4.478018599,-4.478018599,0,#DIV/0!,0,0,0.190697942,1,0.219708202,0,0.93620038,0.974962343,0.724496596,1,0,0,0.029920681,0.312029739,0.918655463,0.643152059,0.961238037,0.922476074,0,0,0,0,0,0,-0.516387754,121.0902596,0.516387754,58.90974044,0,0.953173536,0,0,0,7,4,0% -7/25/2018 13:00,92.01148568,63.12138992,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605903375,1.101676083,28.26766332,-28.26766332,0,#DIV/0!,0,0,0.811459543,1,0.035361365,0,0.957969677,0.99673164,0.724496596,1,0,0,0.100128555,0.312029739,0.755567466,0.480064062,0.961238037,0.922476074,0,0,0,0,0,0,-0.37233215,111.8595191,0.37233215,68.14048091,0,0.915711301,0,0,0,7,5,0% -7/25/2018 14:00,80.97280579,72.09167769,81.82831988,291.2614221,36.12846128,35.65591131,0,35.65591131,35.03905487,0.61685644,76.30366965,55.37403971,20.92962994,1.089406407,19.84022353,1.413242066,1.258237139,-6.290220568,6.290220568,0.39415524,0.441515374,0.408139989,13.12718502,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.68087232,0.789271234,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.295696033,12.61834955,33.97656835,13.40762079,0,55.37403971,-0.190118002,100.9596708,0.190118002,79.04032925,0,0.787005442,33.97656835,56.98729138,71.27361081,7,6,110% -7/25/2018 15:00,69.53327445,80.60201219,283.3135965,602.9622499,72.4797956,80.63987861,8.209878714,72.4299999,70.29426234,2.135737562,70.87819482,0,70.87819482,2.185533259,68.69266156,1.213584579,1.406770496,-2.63362433,2.63362433,0.980529975,0.255828864,2.104792796,67.69737148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.56951873,1.583411406,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524915215,65.07328847,69.09443395,66.65669987,8.209878714,0,0.013615908,89.21984181,-0.013615908,90.78015819,0,0,69.09443395,66.65669987,112.7199109,7,7,63% -7/25/2018 16:00,57.76970223,89.3320963,491.8868509,746.7902548,93.60593518,264.8751026,170.3836809,94.49142172,90.78337086,3.708050856,122.0862262,0,122.0862262,2.822564315,119.2636619,1.008271512,1.559139208,-1.496680466,1.496680466,0.786101123,0.190299731,3.065838777,98.60791383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.26442919,2.044938238,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.221189758,94.7856775,89.48561894,96.83061574,170.3836809,0,0.228154666,76.81154649,-0.228154666,103.1884535,0.830850416,0,231.0489712,96.83061574,294.4226726,7,8,27% -7/25/2018 17:00,45.98505601,99.27744032,679.0051265,821.614429,108.1096547,470.1593982,360.1910211,109.9683772,104.8497497,5.118627457,167.8925591,0,167.8925591,3.25990497,164.6326542,0.802590634,1.732718206,-0.902782297,0.902782297,0.684538555,0.15921773,3.760991426,120.9664126,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7855676,2.361790054,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724825485,116.2775169,103.510393,118.639307,360.1910211,0,0.438394225,63.9985288,-0.438394225,116.0014712,0.935947403,0,440.6302437,118.639307,518.2772974,7,9,18% -7/25/2018 18:00,34.60262896,112.3395292,828.6999281,863.1033812,118.2706341,664.6242509,543.6728227,120.9514283,114.7043382,6.247090102,204.4941879,0,204.4941879,3.566295992,200.9278919,0.603929805,1.960694664,-0.509966939,0.509966939,0.617363172,0.142718287,4.19787241,135.0180068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2581728,2.583769306,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.041344271,129.7844438,113.2995171,132.3682131,543.6728227,0,0.629904638,50.95691277,-0.629904638,129.0430872,0.970622905,0,641.0008119,132.3682131,727.63316,7,10,14% -7/25/2018 19:00,24.58702388,132.8683422,929.655464,885.2452038,124.6751212,826.9083909,698.984549,127.9238418,120.9157063,7.008135576,229.1651453,0,229.1651453,3.759414906,225.4057304,0.42912452,2.318990043,-0.20866499,0.20866499,0.565837504,0.134108953,4.373515184,140.6672822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2287761,2.723683302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.168596863,135.2147422,119.397373,137.9384255,698.984549,0,0.78959428,37.85238755,-0.78959428,142.1476125,0.98667634,0,809.0688893,137.9384255,899.34683,7,11,11% -7/25/2018 20:00,18.62938029,168.4742199,974.5336293,893.9366527,127.4350302,941.3440138,810.4051739,130.93884,123.5923938,7.346446142,240.1295975,0,240.1295975,3.842636345,236.2869612,0.325144024,2.940429842,0.049677736,-0.049677736,0.521658296,0.130765144,4.291857884,138.0409027,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.80171,2.783976951,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.109436427,132.6901663,121.9111464,135.4741433,810.4051739,0,0.90655772,24.9660942,-0.90655772,155.0339058,0.994846314,0,928.1397463,135.4741433,1016.804864,7,12,10% -7/25/2018 21:00,20.72199972,210.8929253,960.11187,891.2126915,126.553297,996.9544232,866.9794462,129.974977,122.7372481,7.237728829,236.6062875,0,236.6062875,3.816048836,232.7902387,0.361667123,3.680775915,0.293554611,-0.293554611,0.479952895,0.131810991,3.969900189,127.6856365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9797114,2.764714391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.876179173,122.7362906,120.8558906,125.501005,866.9794462,0,0.972808685,13.39188672,-0.972808685,166.6081133,0.998602433,0,986.6236746,125.501005,1068.761572,7,13,8% -7/25/2018 22:00,29.1592942,238.3596509,887.4045713,876.4477058,122.0304356,987.3091688,862.2687706,125.0403982,118.3507677,6.689630499,218.8411802,0,218.8411802,3.679667877,215.1615123,0.508925691,4.160160712,0.546474007,-0.546474007,0.436701131,0.137513869,3.439557391,110.6279891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7632596,2.665906851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491947621,106.3398311,116.2552072,109.0057379,862.2687706,0,0.983822269,10.32009442,-0.983822269,169.6799056,0.999177812,0,977.8150311,109.0057379,1049.157106,7,14,7% -7/25/2018 23:00,40.02976102,254.4732593,761.6239642,846.0004301,113.8325873,910.4046105,794.2630526,116.1415579,110.4001148,5.741443153,188.0970204,0,188.0970204,3.432472505,184.6645479,0.698651129,4.441396232,0.837426441,-0.837426441,0.386945334,0.149460354,2.747697959,88.37541152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1207896,2.486814645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990697818,84.94980707,108.1114874,87.43662172,794.2630526,0,0.938844738,20.14155834,-0.938844738,159.8584417,0.996743058,0,899.7876711,87.43662172,957.0131913,7,15,6% -7/25/2018 0:00,51.68569219,265.6839993,592.0168428,790.8832978,101.6889816,768.1793913,665.0938346,103.0855567,98.62268363,4.46287303,146.6076356,0,146.6076356,3.066297988,143.5413377,0.902085505,4.637060557,1.218449126,-1.218449126,0.321786617,0.171767042,1.955993899,62.91148746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.7998748,2.221522454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.417110921,60.4729147,96.21698573,62.69443716,665.0938346,0,0.840950664,32.75935601,-0.840950664,147.240644,0.99054348,0,755.0213472,62.69443716,796.0536024,7,16,5% -7/25/2018 1:00,63.5100739,274.8749997,391.9227882,689.3467285,84.44625877,565.2287844,480.3744124,84.85437202,81.8998925,2.954479527,97.57258381,0,97.57258381,2.546366276,95.02621753,1.108459898,4.797473776,1.820418618,-1.820418618,0.218843771,0.21546657,1.143846911,36.7900486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72529188,1.844833698,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.828713193,35.36399409,79.55400508,37.20882779,480.3744124,0,0.696854562,45.82481335,-0.696854562,134.1751867,0.978249017,0,549.4798016,37.20882779,573.8322352,7,17,4% -7/25/2018 2:00,75.16974036,283.3946121,181.1375924,482.1963321,57.71638846,306.4251153,249.0835972,57.34151808,55.9760264,1.365491685,45.65926849,0,45.65926849,1.740362063,43.91890643,1.311959467,4.946169063,3.153224356,-3.153224356,0,0.318632856,0.435090516,13.9940066,0.008997739,1,0.307102544,0,0.923253417,0.962015381,0.724496596,1,53.83027557,1.26088639,0.001532225,0.312029739,0.995664306,0.720160902,0.961238037,0.922476074,0.314413728,13.45157143,54.1446893,14.71245782,246.842408,0,0.516560539,58.89817926,-0.516560539,121.1018207,0.953205924,0,289.4363349,14.71245782,299.0653443,7,18,3% -7/25/2018 3:00,86.30483488,292.0431828,13.34425221,63.34636296,9.26169951,28.97576039,19.89274068,9.083019707,8.982425098,0.10059461,3.514742854,0,3.514742854,0.279274412,3.235468442,1.506303529,5.097115099,11.49911952,-11.49911952,0,0.694059088,0.069818603,2.245606274,0.589543466,1,0.086744947,0,0.952689117,0.99145108,0.724496596,1,8.700369922,0.202333361,0.078785899,0.312029739,0.800989811,0.525486407,0.961238037,0.922476074,0.04802875,2.158562167,8.748398673,2.360895528,8.165105392,0,0.3140313,71.69765586,-0.3140313,108.3023441,0.890780202,0,16.02171291,2.360895528,17.56687181,7,19,10% -7/25/2018 4:00,97.09115563,301.4409242,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69456034,5.261136627,-5.01062768,5.01062768,0.612978512,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.095554286,84.51677679,-0.095554286,95.48322321,0.526737235,0,0,0,0,7,20,0% -7/25/2018 5:00,106.5844725,312.1620391,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860249976,5.448255383,-1.567980439,1.567980439,0.798294137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.115145262,96.61200363,0.115145262,83.38799637,0,0.615765895,0,0,0,7,21,0% -7/25/2018 6:00,114.4599436,324.7192669,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997702878,5.667420352,-0.579377861,0.579377861,0.629233139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.307037208,107.8807693,0.307037208,72.1192307,0,0.887153287,0,0,0,7,22,0% -7/25/2018 7:00,120.0377635,339.3546741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0950542,5.922856394,-0.019478125,0.019478125,0.533484645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467047823,117.8428343,0.467047823,62.15716566,0,0.942944582,0,0,0,7,23,0% -7/26/2018 8:00,122.6207713,355.6498435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140136191,6.207260753,0.421471497,-0.421471497,0.458077819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584274659,125.7517645,0.584274659,54.24823546,0,0.964423809,0,0,0,7,0,0% -7/26/2018 9:00,121.799642,12.35403085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125804781,0.215618514,0.863119355,-0.863119355,0.382551587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650729482,130.5966243,0.650729482,49.40337573,0,0.973163155,0,0,0,7,1,0% -7/26/2018 10:00,117.7115462,27.96871927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054454049,0.488146239,1.41409381,-1.41409381,0.288329406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661882775,131.4436225,0.661882775,48.55637754,0,0.974457922,0,0,0,7,2,0% -7/26/2018 11:00,110.9471527,41.61973387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93639311,0.72640139,2.298323478,-2.298323478,0.137117227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616972746,128.0954038,0.616972746,51.90459622,0,0.968959143,0,0,0,7,3,0% -7/26/2018 12:00,102.2241392,53.25444264,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784147804,0.929465365,4.420029861,-4.420029861,0,#DIV/0!,0,0,0.184150281,1,0.222497057,0,0.935812341,0.974574304,0.724496596,1,0,0,0.028975694,0.312029739,0.921117171,0.645613767,0.961238037,0.922476074,0,0,0,0,0,0,-0.519057778,121.2690703,0.519057778,58.73092972,0,0.95367161,0,0,0,7,4,0% -7/26/2018 13:00,92.15743609,63.28555251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60845069,1.10454126,26.36272913,-26.36272913,0,#DIV/0!,0,0,0.7991217,1,0.037914162,0,0.957722115,0.996484078,0.724496596,1,0,0,0.099028987,0.312029739,0.757818359,0.482314955,0.961238037,0.922476074,0,0,0,0,0,0,-0.374808686,112.012489,0.374808686,67.98751103,0,0.916598609,0,0,0,7,5,0% -7/26/2018 14:00,81.10418115,72.26901371,79.75522874,285.9610316,35.5347039,35.06443007,0,35.06443007,34.46320147,0.601228603,75.40757772,54.9984967,20.40908101,1.071502432,19.33757858,1.415534998,1.261332236,-6.383907499,6.383907499,0.378133832,0.445547012,0.393927653,12.67006744,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.12734012,0.776299864,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.285399244,12.17895076,33.41273936,12.95525062,0,54.9984967,-0.192328641,101.0887123,0.192328641,78.91128766,0,0.79002832,33.41273936,56.40562058,70.32908992,7,6,110% -7/26/2018 15:00,69.65683659,80.79599648,281.0651684,600.8047311,72.20014657,79.15043327,7.008599542,72.14183373,70.02304576,2.118787962,70.32460494,0,70.32460494,2.177100809,68.14750413,1.215741145,1.410156161,-2.649367291,2.649367291,0.98322218,0.256880449,2.09237107,67.29784608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.30881504,1.577302125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515915717,64.68924945,68.82473076,66.26655158,7.008599542,0,0.011665353,89.33160932,-0.011665353,90.66839068,0,0,68.82473076,66.26655158,112.1948634,7,7,63% -7/26/2018 16:00,57.88986456,89.55000838,489.8433444,745.768666,93.43118506,263.2177914,168.9112553,94.30653614,90.6138901,3.692646041,121.585485,0,121.585485,2.817294954,118.7681901,1.01036874,1.562942491,-1.501644112,1.501644112,0.786949957,0.190736867,3.055983845,98.29094535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.10151783,2.041120604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.214049893,94.48099534,89.31556773,96.52211595,168.9112553,0,0.226492829,76.90932256,-0.226492829,103.0906774,0.829242459,0,229.3839525,96.52211595,292.5557469,7,8,28% -7/26/2018 17:00,46.1090292,99.53055509,677.1918558,821.0315118,107.9803406,468.6340522,358.804759,109.8292932,104.7243349,5.104958256,167.4490114,0,167.4490114,3.256005674,164.1930057,0.804754374,1.737135893,-0.904445603,0.904445603,0.684822997,0.1594531,3.75254734,120.6948217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.6650141,2.358965027,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718707774,116.0164535,103.3837219,118.3754185,358.804759,0,0.437017038,64.08628928,-0.437017038,115.9137107,0.935587985,0,439.0771432,118.3754185,516.5514872,7,9,18% -7/26/2018 18:00,34.74215539,112.6399534,827.0796628,862.7148605,118.1653192,663.3008297,542.4637551,120.8370747,114.6021988,6.234875858,204.0981602,0,204.0981602,3.563120357,200.5350398,0.606365001,1.965938056,-0.510171984,0.510171984,0.617398237,0.142870541,4.190215397,134.7717309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.1599926,2.581468569,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.035796791,129.5477141,113.1957894,132.1291826,542.4637551,0,0.628786845,51.03932525,-0.628786845,128.9606747,0.970481797,0,639.6469892,132.1291826,726.1228966,7,10,14% -7/26/2018 19:00,24.76141477,133.1929678,928.1662132,884.9456401,124.5826981,825.7727638,697.9497847,127.8229791,120.8260701,6.996908974,228.8012723,0,228.8012723,3.756628009,225.0446443,0.432168215,2.324655828,-0.208016849,0.208016849,0.565726666,0.134224556,4.366188828,140.4316414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1426144,2.721664204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.163288943,134.9882353,119.3059034,137.7098995,697.9497847,0,0.788692269,37.93653061,-0.788692269,142.0634694,0.986603918,0,807.9058953,137.7098995,898.0342703,7,11,11% -7/26/2018 20:00,18.84728676,168.5904015,973.1005588,893.6688029,127.347624,940.3398456,809.4965792,130.8432664,123.5076233,7.335643051,239.7794974,0,239.7794974,3.840000728,235.9394966,0.328947209,2.942457593,0.050987195,-0.050987195,0.521434366,0.130867897,4.284479478,137.8035878,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.7202254,2.782067455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.104090797,132.4620502,121.8243162,135.2441177,809.4965792,0,0.905812731,25.06703229,-0.905812731,154.9329677,0.994800952,0,927.1122842,135.2441177,1015.626854,7,12,10% -7/26/2018 21:00,20.92225654,210.6279469,958.6549136,890.9339503,126.4639548,995.9996014,866.1222558,129.8773456,122.6505999,7.226745677,236.2503376,0,236.2503376,3.813354838,232.4369827,0.365162264,3.67615117,0.295540575,-0.295540575,0.479613275,0.131918121,3.962147969,127.4362985,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8964219,2.762762599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870562716,122.4966174,120.7669846,125.25938,866.1222558,0,0.972150916,13.55364687,-0.972150916,166.4463531,0.998567656,0,985.6486557,125.25938,1067.628415,7,13,8% -7/26/2018 22:00,29.31547272,238.0380071,885.8453758,876.1107693,121.9319072,986.3039179,861.3708309,124.933087,118.2552104,6.677876626,218.4601642,0,218.4601642,3.676696884,214.7834673,0.511651521,4.154546968,0.549335543,-0.549335543,0.436211779,0.137644684,3.431188042,110.358802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6714062,2.663754376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485884056,106.0810782,116.1572903,108.7448326,861.3708309,0,0.983175714,10.52486983,-0.983175714,169.4751302,0.999144391,0,976.7911243,108.7448326,1047.962442,7,14,7% -7/26/2018 23:00,40.16166115,254.1965151,759.8929995,845.5296212,113.7157923,909.2340214,793.2187854,116.015236,110.2868416,5.728394411,187.6738062,0,187.6738062,3.428950704,184.2448555,0.70095322,4.436566135,0.841656566,-0.841656566,0.38622194,0.149647111,2.73858528,88.08231643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0119071,2.484263112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984095713,84.66807292,107.9960028,87.15233604,793.2187854,0,0.938132462,20.25974364,-0.938132462,159.7402564,0.996702622,0,898.5992464,87.15233604,955.6387073,7,15,6% -7/26/2018 0:00,51.80870552,265.448755,590.0623503,790.1212617,101.5390772,766.7064917,663.7810531,102.9254386,98.47729939,4.44813924,146.1292261,0,146.1292261,3.061777817,143.0674483,0.904232492,4.632954769,1.225242143,-1.225242143,0.320624943,0.172081946,1.94620826,62.59674767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.66012594,2.218247606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.410021259,60.17037485,96.0701472,62.38862245,663.7810531,0,0.840100229,32.84929491,-0.840100229,147.1507051,0.990483292,0,753.5341898,62.38862245,794.3662955,7,16,5% -7/26/2018 1:00,63.63335494,274.668672,389.7299044,687.8890293,84.22898838,563.2627159,478.6355936,84.62712225,81.68917361,2.937948642,97.03434222,0,97.03434222,2.539814772,94.49452745,1.110611558,4.793872679,1.833316881,-1.833316881,0.216638038,0.216121441,1.133870001,36.46915689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.52274087,1.840087156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.821484956,35.05554077,79.34422583,36.89562793,478.6355936,0,0.695803499,45.90871967,-0.695803499,134.0912803,0.978140632,0,547.5171477,36.89562793,571.6645982,7,17,4% -7/26/2018 2:00,75.2991903,283.2079436,178.8212422,478.785657,57.31903331,303.6395856,246.7009025,56.93868303,55.59065297,1.348030058,45.08566083,0,45.08566083,1.728380339,43.35728049,1.314218795,4.942911084,3.189082837,-3.189082837,0,0.320538168,0.432095085,13.89766324,0.014983669,1,0.303859174,0,0.923762406,0.962524369,0.724496596,1,53.47507131,1.252205672,0.00254444,0.312029739,0.99281011,0.717306705,0.961238037,0.922476074,0.311728413,13.35896253,53.78679973,14.6111682,243.0044178,0,0.51526377,58.98491265,-0.51526377,121.0150874,0.952962322,0,285.3608538,14.6111682,294.9235712,7,18,3% -7/26/2018 3:00,86.44068018,291.8707893,12.24191704,58.44002221,8.613849322,26.71080615,18.26441143,8.446394725,8.354109984,0.092284742,3.227933856,0,3.227933856,0.259739339,2.968194517,1.508674477,5.094106264,11.97153301,-11.97153301,0,0.703635656,0.064934835,2.088527496,0.602717259,1,0.08333802,0,0.953058494,0.991820457,0.724496596,1,8.090604249,0.188180267,0.080152081,0.312029739,0.797972992,0.522469588,0.961238037,0.922476074,0.044708948,2.00757207,8.135313198,2.195752337,7.256135427,0,0.312532589,71.78807748,-0.312532589,108.2119225,0.890016684,0,14.59339479,2.195752337,16.03047078,7,19,10% -7/26/2018 4:00,97.24804212,301.2813043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697298526,5.258350735,-4.918152779,4.918152779,0.628792651,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.093666803,84.62540892,-0.093666803,95.37459108,0.516192947,0,0,0,0,7,20,0% -7/26/2018 5:00,106.7602568,312.0185541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863317992,5.445751096,-1.557922465,1.557922465,0.796574122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.117322899,96.73762449,0.117322899,83.26237551,0,0.623825735,0,0,0,7,21,0% -7/26/2018 6:00,114.6561346,324.6018705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001127057,5.665371399,-0.578458118,0.578458118,0.629075854,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.309477892,108.0277687,0.309477892,71.97223134,0,0.888437571,0,0,0,7,22,0% -7/26/2018 7:00,120.2518365,339.2800547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098790479,5.921554041,-0.02154412,0.02154412,0.533837951,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469706434,118.0152422,0.469706434,61.9847578,0,0.943550532,0,0,0,7,23,0% -7/27/2018 8:00,122.8442297,355.6349652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144036275,6.207001079,0.417485728,-0.417485728,0.458759425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58709115,125.9508579,0.58709115,54.04914207,0,0.964834349,0,0,0,7,0,0% -7/27/2018 9:00,122.0197077,12.40346281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129645652,0.216481265,0.856927757,-0.856927757,0.383610412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653632995,130.8160775,0.653632995,49.18392253,0,0.973504474,0,0,0,7,1,0% -7/27/2018 10:00,117.9169973,28.07034584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058039846,0.489919957,1.404099483,-1.404099483,0.290038536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664796512,131.6667163,0.664796512,48.33328374,0,0.974789016,0,0,0,7,2,0% -7/27/2018 11:00,111.1325561,41.75532393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93962901,0.728767883,2.279138963,-2.279138963,0.140397972,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.619819248,128.3029362,0.619819248,51.69706378,0,0.969331321,0,0,0,7,3,0% -7/27/2018 12:00,102.3893334,53.41034229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787030986,0.932186328,4.362808098,-4.362808098,0,#DIV/0!,0,0,0.177584531,1,0.225318115,0,0.935418107,0.97418007,0.724496596,1,0,0,0.028022655,0.312029739,0.923606973,0.648103569,0.961238037,0.922476074,0,0,0,0,0,0,-0.521764257,121.4506689,0.521764257,58.54933105,0,0.954171282,0,0,0,7,4,0% -7/27/2018 13:00,92.30513616,63.45531228,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611028542,1.107504127,24.68040003,-24.68040003,0,#DIV/0!,0,0,0.786800535,1,0.040495831,0,0.95747017,0.996232133,0.724496596,1,0,0,0.097921374,0.312029739,0.760095541,0.484592137,0.961238037,0.922476074,0,0,0,0,0,0,-0.377312044,112.1672835,0.377312044,67.83271646,0,0.917483689,0,0,0,7,5,0% -7/27/2018 14:00,81.23691987,72.45196739,77.67297233,280.562597,34.92953658,34.46181385,0,34.46181385,33.87628218,0.585531675,74.47136247,54.58539666,19.88596581,1.053254404,18.83271141,1.417851726,1.26452538,-6.481314444,6.481314444,0.361476263,0.449700012,0.379787786,12.21528071,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.56317097,0.76307923,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.275154958,11.74179245,32.83832593,12.50487168,0,54.58539666,-0.194556927,101.2188417,0.194556927,78.78115834,0,0.793005809,32.83832593,55.79140832,69.35268685,7,6,111% -7/27/2018 15:00,69.78165394,80.99578055,278.7936148,598.6065119,71.91599087,77.65741076,5.808288323,71.84912244,69.74745841,2.101664031,69.76527212,0,69.76527212,2.168532467,67.59673966,1.217919619,1.413643051,-2.665388798,2.665388798,0.985962019,0.257954225,2.079771366,66.89259628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.04390999,1.57109439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.506787275,64.29970793,68.55069727,65.87080232,5.808288323,0,0.009703016,89.44404943,-0.009703016,90.55595057,0,0,68.55069727,65.87080232,111.66182,7,7,63% -7/27/2018 16:00,58.0113369,89.77412565,487.7751976,744.7291082,93.25386988,261.551524,167.4325469,94.11897711,90.44192163,3.677055477,121.0786922,0,121.0786922,2.811948247,118.2667439,1.012488832,1.566854076,-1.506631911,1.506631911,0.787802921,0.191182066,3.045966846,97.9687642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9362152,2.037246933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.206792611,94.17130257,89.14300781,96.2085495,167.4325469,0,0.224823422,77.00750501,-0.224823422,102.992495,0.827603243,0,227.7107267,96.2085495,290.6772982,7,8,28% -7/27/2018 17:00,46.23462087,99.79054396,675.351196,820.4375014,107.8488946,467.0983853,357.4104502,109.6879351,104.5968525,5.091082585,166.9987585,0,166.9987585,3.252042091,163.7467164,0.806946363,1.741673554,-0.906078284,0.906078284,0.685102202,0.159693053,3.743927113,120.4175656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.5424731,2.356093425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712462448,115.7499444,103.2549356,118.1060378,357.4104502,0,0.435633975,64.17435843,-0.435633975,115.8256416,0.935224746,0,437.5140332,118.1060378,514.8120729,7,9,18% -7/27/2018 18:00,34.88398188,112.9480711,825.4269132,862.3173683,118.0578023,661.964359,541.2440183,120.7203407,114.497924,6.222416733,203.6941899,0,203.6941899,3.559878326,200.1343116,0.60884034,1.971315724,-0.510326238,0.510326238,0.617424616,0.143026355,4.182353717,134.5188723,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.0597597,2.579119729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.030101031,129.3046567,113.0898607,131.8837765,541.2440183,0,0.627662202,51.12214612,-0.627662202,128.8778539,0.970339317,0,638.2802115,131.8837765,724.5955055,7,10,14% -7/27/2018 19:00,24.93928322,133.5254406,926.6371502,884.6372939,124.4877458,824.6187753,696.899412,127.7193632,120.733981,6.985382252,228.4276702,0,228.4276702,3.753764848,224.6739053,0.435272605,2.330458573,-0.207305282,0.207305282,0.565604981,0.134343573,4.358621182,140.1882399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0540949,2.719589854,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.157806209,134.7542685,119.2119011,137.4738583,696.899412,0,0.787779824,38.02148599,-0.787779824,141.978514,0.986530489,0,806.724419,137.4738583,896.6983098,7,11,11% -7/27/2018 20:00,19.07011221,168.7138498,971.6185683,893.3911595,127.2571859,939.3092711,808.5648877,130.7443834,123.4199122,7.324471181,239.4174446,0,239.4174446,3.837273683,235.5801709,0.332836247,2.944612173,0.052373007,-0.052373007,0.521197378,0.130974428,4.27681935,137.5572118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.6359141,2.780091721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.09854106,132.2252242,121.7344552,135.0053159,808.5648877,0,0.905051364,25.16979816,-0.905051364,154.8302018,0.994754517,0,926.0580293,135.0053159,1014.416308,7,12,10% -7/27/2018 21:00,21.12872638,210.3675284,957.1387819,890.643186,126.3709313,995.0078325,865.2321345,129.7756979,122.5603815,7.215316435,235.8799289,0,235.8799289,3.810549839,232.0693791,0.368765842,3.671606011,0.297620583,-0.297620583,0.479257572,0.132029893,3.954073783,127.1766049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8097005,2.760730387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864712995,122.24699,120.6744135,125.0077204,865.2321345,0,0.971468876,13.71939919,-0.971468876,166.2806008,0.998531547,0,984.6359955,125.0077204,1066.451048,7,13,8% -7/27/2018 22:00,29.47784506,237.7152841,884.2163538,875.7577732,121.8288927,985.2490507,860.4281522,124.8208984,118.1553021,6.665596369,218.0620827,0,218.0620827,3.673590615,214.3884921,0.514485453,4.148914389,0.552319267,-0.552319267,0.435701532,0.137781768,3.42246094,110.0781085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.5753706,2.661503895,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479561301,105.8112649,116.0549319,108.4727688,860.4281522,0,0.982495592,10.73610837,-0.982495592,169.2638916,0.999109186,0,975.7166031,108.4727688,1046.709861,7,14,7% -7/27/2018 23:00,40.2992823,253.9168937,758.0820136,845.0353518,113.593467,907.9992865,792.1163392,115.8829473,110.1682049,5.714742434,187.2310231,0,187.2310231,3.425262147,183.805761,0.703355162,4.431685821,0.84605927,-0.84605927,0.385469033,0.149843243,2.729088656,87.77687236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.897869,2.481590765,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.977215441,84.37446846,107.8750844,86.85605923,792.1163392,0,0.937376569,20.38444794,-0.937376569,159.6155521,0.996659644,0,897.345473,86.85605923,954.1910266,7,15,6% -7/27/2018 0:00,51.93709609,265.210378,588.0191289,789.3209086,101.3820725,765.1527736,662.3950081,102.7577655,98.32502895,4.432736574,145.6290892,0,145.6290892,3.057043546,142.5720456,0.906473331,4.628794307,1.232312886,-1.232312886,0.319415775,0.172412882,1.93602989,62.26937632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.5137578,2.214817642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.402647065,59.85569305,95.91640487,62.07051069,662.3950081,0,0.839196075,32.94467581,-0.839196075,147.0553242,0.990419168,0,751.9651179,62.07051069,792.5890257,7,16,5% -7/27/2018 1:00,63.76183253,274.4593371,387.4428539,686.3582198,84.00150898,561.1949687,476.8057072,84.38926144,81.46855355,2.920707889,96.47296101,0,96.47296101,2.532955428,93.94000559,1.112853915,4.790219094,1.846776621,-1.846776621,0.214336287,0.216810061,1.123526477,36.13647359,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31067248,1.835117585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.813991108,34.73575294,79.12466359,36.57087052,476.8057072,0,0.694689294,45.99753686,-0.694689294,134.0024631,0.978025377,0,545.4527452,36.57087052,569.3876485,7,17,4% -7/27/2018 2:00,75.43376818,283.0184758,176.4158846,475.2039796,56.90256851,300.7220696,244.205426,56.51664358,55.18674613,1.329897456,44.48989607,0,44.48989607,1.715822389,42.77407368,1.316567622,4.939604247,3.226826723,-3.226826723,0,0.322547874,0.428955597,13.79668653,0.021206711,1,0.300516244,0,0.924284764,0.963046727,0.724496596,1,53.10205098,1.24310748,0.003590768,0.312029739,0.989868121,0.714364716,0.961238037,0.922476074,0.308936926,13.26189988,53.4109879,14.50500736,239.0266321,0,0.513896004,59.07630915,-0.513896004,120.9236908,0.95270405,0,281.1326283,14.50500736,290.6258655,7,18,3% -7/27/2018 3:00,86.58125103,291.6958374,11.14980367,53.52467585,7.957965306,24.44630549,16.64425027,7.80205522,7.71800329,0.08405193,2.943361005,0,2.943361005,0.239962016,2.703398989,1.511127901,5.091052777,12.49907537,-12.49907537,0,0.713731429,0.059990504,1.929500822,0.616463545,1,0.079835866,0,0.953435363,0.992197326,0.724496596,1,7.473357937,0.173851664,0.081563337,0.312029739,0.794872305,0.519368901,0.961238037,0.922476074,0.041345858,1.854709583,7.514703795,2.028561246,6.383676738,0,0.310964056,71.88266145,-0.310964056,108.1173386,0.889209712,0,13.19113115,2.028561246,14.51878391,7,19,10% -7/27/2018 4:00,97.41026867,301.1194396,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700129914,5.255525663,-4.826242001,4.826242001,0.64451032,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091697371,84.73873685,-0.091697371,95.26126315,0.504728099,0,0,0,0,7,20,0% -7/27/2018 5:00,106.9415578,311.8733177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.86648229,5.443216243,-1.547598059,1.547598059,0.794808545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.119583985,96.86809379,0.119583985,83.13190621,0,0.631883812,0,0,0,7,21,0% -7/27/2018 6:00,114.8580046,324.4835752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004650352,5.663306756,-0.577418719,0.577418719,0.628898106,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.312000855,108.1798528,0.312000855,71.82014724,0,0.889744029,0,0,0,7,22,0% -7/27/2018 7:00,120.4716113,339.2059317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.102626272,5.92026035,-0.02355402,0.02355402,0.534181664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472443561,118.1930307,0.472443561,61.80696935,0,0.944167253,0,0,0,7,23,0% -7/28/2018 8:00,123.0731,355.6224451,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148030816,6.206782561,0.413525187,-0.413525187,0.459436718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589980061,126.1555933,0.589980061,53.8444067,0,0.965251373,0,0,0,7,0,0% -7/28/2018 9:00,122.2445091,12.45702299,0,0,0,0,0,0,0,0,0,0,0,0,0,2.133569177,0.217416066,0.850746107,-0.850746107,0.384667537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656600921,131.041152,0.656600921,48.95884796,0,0.973850244,0,0,0,7,1,0% -7/28/2018 10:00,118.1262751,28.17719411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.061692434,0.491784811,1.394116406,-1.394116406,0.291745743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.667765294,131.8948225,0.667765294,48.10517749,0,0.975123392,0,0,0,7,2,0% -7/28/2018 11:00,111.3208939,41.89652522,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942916125,0.73123231,2.260029611,-2.260029611,0.143665864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622710708,128.5143561,0.622710708,51.48564393,0,0.969705893,0,0,0,7,3,0% -7/28/2018 12:00,102.5567365,53.57186679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789952722,0.935005462,4.306374839,-4.306374839,0,#DIV/0!,0,0,0.171004922,1,0.228170016,0,0.935017811,0.973779774,0.724496596,1,0,0,0.027062093,0.312029739,0.926123659,0.650620255,0.961238037,0.922476074,0,0,0,0,0,0,-0.524505583,121.6349653,0.524505583,58.36503466,0,0.95467213,0,0,0,7,4,0% -7/28/2018 13:00,92.45452501,63.63062534,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61363587,1.110563917,23.18463847,-23.18463847,0,#DIV/0!,0,0,0.774503213,1,0.04310529,0,0.957213899,0.995975862,0.724496596,1,0,0,0.096806285,0.312029739,0.762398044,0.486894639,0.961238037,0.922476074,0,0,0,0,0,0,-0.379840809,112.3238223,0.379840809,67.67617765,0,0.918365908,0,0,0,7,5,0% -7/28/2018 14:00,81.37097321,72.64047926,75.58311456,275.0674686,34.31302549,33.84813862,0,33.84813862,33.27836117,0.569777444,73.49440402,54.1337385,19.36066552,1.03466432,18.3260012,1.420191398,1.267815533,-6.582614838,6.582614838,0.344152875,0.453977396,0.36573595,11.76332538,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.98842656,0.749610778,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.264974451,11.30735579,32.25340102,12.05696657,0,54.1337385,-0.196801675,101.3499917,0.196801675,78.65000832,0,0.795937121,32.25340102,55.14401857,68.34405829,7,6,112% -7/28/2018 15:00,69.90769433,81.20128877,276.499552,596.3673787,71.62733188,76.16163794,4.609763974,71.55187396,69.46750354,2.084370417,69.20034592,0,69.20034592,2.159828333,67.04051759,1.220119439,1.417229846,-2.681689836,2.681689836,0.988749661,0.259050445,2.066995243,66.48167227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77480673,1.564788275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.497531017,63.90471214,68.27233775,65.46950041,4.609763974,0,0.007729739,89.55711419,-0.007729739,90.44288581,0,0,68.27233775,65.46950041,111.1208164,7,7,63% -7/28/2018 16:00,58.13410221,90.00435039,485.6826387,743.6714453,93.07398863,259.8767604,165.948015,93.92874535,90.26746447,3.661280884,120.565903,0,120.565903,2.806524164,117.7593788,1.014631491,1.570872256,-1.511642354,1.511642354,0.788659757,0.191635404,3.035787767,97.64137003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.76852034,2.033317203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.199417903,93.85659884,88.96793824,95.88991604,165.948015,0,0.22314695,77.10606394,-0.22314695,102.8939361,0.825932407,0,226.0297818,95.88991604,288.787814,7,8,28% -7/28/2018 17:00,46.36182885,100.057271,673.4830453,819.832248,107.7153001,465.5525067,356.0082206,109.5442861,104.4672864,5.076999676,166.5417754,0,166.5417754,3.248013726,163.2937616,0.809166561,1.746328819,-0.907679356,0.907679356,0.685376001,0.159937657,3.735129503,120.1346042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4179293,2.353174888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.70608861,115.4779511,103.1240179,117.831126,356.0082206,0,0.434245203,64.26272533,-0.434245203,115.7372747,0.93485768,0,435.9410371,117.831126,513.0591525,7,9,18% -7/28/2018 18:00,35.02811728,113.2636684,823.7413038,861.9107381,117.9480532,660.6146042,540.0134101,120.6011941,114.3914842,6.209709898,203.282185,0,203.282185,3.556568986,199.7256161,0.611355977,1.976823936,-0.510429129,0.510429129,0.617442212,0.143185795,4.174285304,134.2593644,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9574457,2.576722124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.024255493,129.0552079,112.9817012,131.63193,540.0134101,0,0.626530552,51.20538575,-0.626530552,128.7946142,0.970195432,0,636.9002449,131.63193,723.0507104,7,10,14% -7/28/2018 19:00,25.12062842,133.8654028,925.067699,884.3199841,124.3902237,823.445885,695.8329344,127.6129506,120.6393995,6.973551066,228.0441979,0,228.0441979,3.750824197,224.2933737,0.438437676,2.336392034,-0.206529962,0.206529962,0.565472393,0.134466076,4.350809775,139.9369982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9631796,2.717459362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.152146871,134.5127654,119.1153265,137.2302248,695.8329344,0,0.786856508,38.10728996,-0.786856508,141.89271,0.986456013,0,805.5239084,137.2302248,895.3383459,7,11,11% -7/28/2018 20:00,19.29779818,168.8442292,970.0869683,893.1035251,127.1636684,938.2515092,807.6093692,130.64214,123.3292146,7.312925333,239.0432705,0,239.0432705,3.834453787,235.2088167,0.336810117,2.946887723,0.053835378,-0.053835378,0.520947298,0.131084813,4.268875053,137.3016959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.5487322,2.778048716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092785444,131.9796126,121.6415176,134.7576613,807.6093692,0,0.904272961,25.27445954,-0.904272961,154.7255405,0.994706961,0,924.9761791,134.7576613,1013.172373,7,12,10% -7/28/2018 21:00,21.34133525,210.11186,955.5627671,890.3401755,126.2741767,993.9781788,864.3081987,129.6699801,122.4665444,7.20343577,235.4948883,0,235.4948883,3.80763233,231.687256,0.372476567,3.667143755,0.299794837,-0.299794837,0.478885753,0.132146397,3.945675626,126.9064913,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7195007,2.758616661,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85862856,121.9873466,120.5781293,124.7459632,864.3081987,0,0.970761763,13.88919595,-0.970761763,166.1108041,0.998494057,0,983.5847291,124.7459632,1065.228467,7,13,8% -7/28/2018 22:00,29.64638268,237.39179,882.5168765,875.3884486,121.7213421,984.1435675,859.439788,124.7037795,118.0509945,6.652784991,217.6467817,0,217.6467817,3.670347569,213.9764341,0.517426989,4.143268352,0.555425556,-0.555425556,0.435170326,0.137925229,3.413374916,109.7858707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.4751062,2.659154319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.472978507,105.5303548,115.9480847,108.1895091,859.439788,0,0.981781047,10.95370175,-0.981781047,169.0462983,0.999072148,0,974.5904397,108.1895091,1045.39831,7,14,7% -7/28/2018 23:00,40.4426122,253.6346122,756.1905515,844.5172572,113.4655623,906.6994346,790.9547938,115.7446407,110.0441569,5.700483793,186.7685594,0,186.7685594,3.421405346,183.3471541,0.705856741,4.42675908,0.85063553,-0.85063553,0.384686447,0.150048902,2.719208125,87.45908051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7786294,2.478796526,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.97005703,84.06899485,107.7486864,86.54779138,790.9547938,0,0.936576236,20.51569275,-0.936576236,159.4843073,0.996614063,0,896.0253571,86.54779138,952.6691556,7,15,6% -7/28/2018 0:00,52.07085027,264.969019,585.886988,788.4816383,101.217911,763.5173561,660.9348749,102.5824812,98.16581757,4.416663595,145.1071769,0,145.1071769,3.052093472,142.0550834,0.908807781,4.624581798,1.239664297,-1.239664297,0.318158609,0.172760128,1.925460461,61.92942717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36071776,2.211231331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.39498955,59.52892099,95.75570731,61.74015232,660.9348749,0,0.838237497,33.04553101,-0.838237497,146.954469,0.990351034,0,750.3132441,61.74015232,790.720939,7,16,5% -7/28/2018 1:00,63.89548558,274.2471052,385.0618236,684.752977,83.76371726,559.0247182,474.8840274,84.14069081,81.23793213,2.902758677,95.88848236,0,95.88848236,2.525785131,93.36269723,1.115186601,4.78651495,1.860809123,-1.860809123,0.211936588,0.217533165,1.112820482,35.792132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.0889904,1.829922729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.806234651,34.40475869,78.89522505,36.23468142,474.8840274,0,0.693511446,46.09128291,-0.693511446,133.9087171,0.977903137,0,543.285805,36.23468142,567.0006793,7,17,4% -7/28/2018 2:00,75.57344259,282.8262932,173.9225239,471.4475205,56.46664851,297.6716652,241.596593,56.07507216,54.76397071,1.31110145,43.87220732,0,43.87220732,1.702677792,42.16952953,1.3190054,4.936250028,3.266535753,-3.266535753,0,0.324665531,0.425669448,13.69099268,0.027669439,1,0.29707543,0,0.924820022,0.963581985,0.724496596,1,52.71084006,1.233584264,0.004670994,0.312029739,0.986839778,0.711336374,0.961238037,0.922476074,0.306039051,13.16030292,53.01687911,14.39388719,234.9117508,0,0.512457023,59.17237013,-0.512457023,120.8276299,0.952430843,0,276.7540758,14.39388719,286.1745871,7,18,3% -7/28/2018 3:00,86.72645763,291.5183925,10.07470184,48.63224894,7.297653858,22.19679844,15.04324841,7.153550027,7.077602669,0.075947358,2.662779292,0,2.662779292,0.220051189,2.442728103,1.513662234,5.087955779,13.09074941,-13.09074941,0,0.724354325,0.055012797,1.769400667,0.630791448,1,0.07624175,0,0.953819139,0.992581103,0.724496596,1,6.852042216,0.159426338,0.083018996,0.312029739,0.791690745,0.516187341,0.961238037,0.922476074,0.037957319,1.700815224,6.889999535,1.860241561,5.55409597,0,0.309326604,71.98134678,-0.309326604,108.0186532,0.888358553,0,11.82402819,1.860241561,13.04151909,7,19,10% -7/28/2018 4:00,97.57778599,300.9553796,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703053642,5.252662275,-4.735074529,4.735074529,0.660100876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.089646408,84.85673447,-0.089646408,95.14326553,0.492253168,0,0,0,0,7,20,0% -7/28/2018 5:00,107.1283179,311.7263651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869741869,5.440651437,-1.537027227,1.537027227,0.793000826,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.121927763,97.00337236,0.121927763,82.99662764,0,0.639921125,0,0,0,7,21,0% -7/28/2018 6:00,115.06549,324.3644059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008271656,5.661226859,-0.576262866,0.576262866,0.628700444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.314605018,108.3369707,0.314605018,71.66302926,0,0.891070558,0,0,0,7,22,0% -7/28/2018 7:00,120.6970197,339.1323286,0,0,0,0,0,0,0,0,0,0,0,0,0,2.106560392,5.918975734,-0.025506983,0.025506983,0.534515641,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475257848,118.3761398,0.475257848,61.62386022,0,0.944793952,0,0,0,7,23,0% -7/29/2018 8:00,123.3073091,355.6123147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152118535,6.206605752,0.409592565,-0.409592565,0.460109236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592939821,126.3659055,0.592939821,53.63409448,0,0.96567441,0,0,0,7,0,0% -7/29/2018 9:00,122.4739659,12.51474598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137573953,0.218423522,0.844578754,-0.844578754,0.385722216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659631549,131.2717787,0.659631549,48.72822131,0,0.974200108,0,0,0,7,1,0% -7/29/2018 10:00,118.3392957,28.28928417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.065410344,0.493741152,1.384151457,-1.384151457,0.29344985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670787355,132.1278624,0.670787355,47.87213762,0,0.97546073,0,0,0,7,2,0% -7/29/2018 11:00,111.5120848,42.04333336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.946253036,0.733794596,2.24100754,-2.24100754,0.14691883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6256454,128.7295738,0.6256454,51.27042621,0,0.970082526,0,0,0,7,3,0% -7/29/2018 12:00,102.7262766,53.73898863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792911755,0.937922288,4.250747811,-4.250747811,0,#DIV/0!,0,0,0.164415461,1,0.231051444,0,0.934611587,0.97337355,0.724496596,1,0,0,0.026094516,0.312029739,0.928666059,0.653162655,0.961238037,0.922476074,0,0,0,0,0,0,-0.527280158,121.8218696,0.527280158,58.17813039,0,0.95517375,0,0,0,7,4,0% -7/29/2018 13:00,92.60554352,63.81144583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61627164,1.11371983,21.84673481,-21.84673481,0,#DIV/0!,0,0,0.762236385,1,0.045741502,0,0.956953352,0.995715316,0.724496596,1,0,0,0.095684266,0.312029739,0.764724934,0.48922153,0.961238037,0.922476074,0,0,0,0,0,0,-0.382393588,112.4820261,0.382393588,67.51797394,0,0.91924467,0,0,0,7,5,0% -7/29/2018 14:00,81.50629432,72.83448808,73.48721486,269.4771049,33.6852416,33.22348495,0,33.22348495,32.66950728,0.553977667,72.47613912,53.64257875,18.83356037,1.01573432,17.81782605,1.422553197,1.271201626,-6.687995814,6.687995814,0.326131667,0.458382341,0.351787458,11.31469391,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.40317304,0.735896057,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.254868816,10.87611417,31.65804186,11.61201022,0,53.64257875,-0.19906173,101.4820969,0.19906173,78.51790306,0,0.798821635,31.65804186,54.46286266,67.30289621,7,6,113% -7/29/2018 15:00,70.03492787,81.41244379,274.1835581,594.0870756,71.33416743,74.66391039,3.413819821,71.25009057,69.18317909,2.066911477,68.62996639,0,68.62996639,2.150988343,66.47897805,1.222340083,1.420915196,-2.698271743,2.698271743,0.991585334,0.260169384,2.054044069,66.06511798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.50150325,1.558383732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.488147936,63.50430431,67.98965119,65.06268804,3.413819821,0,0.005746329,89.67075779,-0.005746329,90.32924221,0,0,67.98965119,65.06268804,110.5718793,7,7,63% -7/29/2018 16:00,58.25814592,90.24058314,483.5658555,742.5955171,92.89153651,258.1939199,164.4580822,93.73583763,90.09051395,3.645323678,120.0471628,0,120.0471628,2.801022559,117.2461402,1.016796462,1.574995295,-1.51667406,1.51667406,0.789520229,0.192096972,3.025446432,97.30875717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.59842877,2.029331309,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.191925641,93.53687871,88.79035441,95.56621002,164.4580822,0,0.221463877,77.20497191,-0.221463877,102.7950281,0.824229546,0,224.3415649,95.56621002,286.887738,7,8,28% -7/29/2018 17:00,46.49065338,100.3305983,671.5872653,819.2155864,107.5795379,463.9964821,354.5981557,109.3983264,104.3356179,5.062708486,166.0780278,0,166.0780278,3.243919994,162.8341078,0.811414973,1.75109928,-0.90924791,0.90924791,0.68564424,0.160186983,3.726153145,119.8458937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.2913645,2.350208993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.69958527,115.2004316,102.9909498,117.5506406,354.5981557,0,0.432850841,64.35138179,-0.432850841,115.6486182,0.934486767,0,434.358234,117.5506406,511.2927772,7,9,18% -7/29/2018 18:00,35.17457251,113.5865294,822.0224298,861.4947926,117.8360395,659.2512896,538.7716892,120.4796004,114.2828481,6.196752299,202.8620465,0,202.8620465,3.553191358,199.3088551,0.613912103,1.982458924,-0.510480145,0.510480145,0.617450936,0.143348935,4.166008014,133.9931383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8530206,2.574275044,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018258624,128.7993012,112.8712792,131.3735762,538.7716892,0,0.625391696,51.28905734,-0.625391696,128.7109427,0.970050106,0,635.5068132,131.3735762,721.4881914,7,10,14% -7/29/2018 19:00,25.30545073,134.2124969,923.457264,883.9935224,124.2900896,822.2535176,694.7498218,127.5036958,120.5422848,6.961410926,227.6507099,0,227.6507099,3.747804784,223.9029051,0.441663434,2.342449968,-0.205690606,0.205690606,0.565328855,0.13459214,4.342752116,139.6778362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8698292,2.715271808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.146309125,134.263649,119.0161384,136.9789208,694.7498218,0,0.785921847,38.1939816,-0.785921847,141.8060184,0.986380443,0,804.3037751,136.9789208,893.9537393,7,11,11% -7/29/2018 20:00,19.53028695,168.9812023,968.5050614,892.8056967,127.0670238,937.1657531,806.6292687,130.5364844,123.2354842,7.301000251,238.6568047,0,238.6568047,3.831539594,234.8252651,0.340867811,2.949278354,0.055374483,-0.055374483,0.520684095,0.131199132,4.260644177,137.0369626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.4586349,2.775937393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.086822202,131.7251409,121.5454571,134.5010783,806.6292687,0,0.903476839,25.38108615,-0.903476839,154.6189139,0.994658238,0,923.8659043,134.5010783,1011.89417,7,12,10% -7/29/2018 21:00,21.56000678,209.8611064,953.9261665,890.0246918,126.1736408,992.9096892,863.3495508,129.5601384,122.36904,7.191098383,235.095044,0,235.095044,3.804600802,231.2904432,0.376293105,3.662767279,0.302063521,-0.302063521,0.478497785,0.132267722,3.936951586,126.6258962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6257758,2.756420329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.852308022,121.7176279,120.4780838,124.4740482,863.3495508,0,0.970028763,14.0630872,-0.970028763,165.9369128,0.998455137,0,982.4938775,124.4740482,1063.959653,7,13,8% -7/29/2018 22:00,29.82105263,237.0678215,880.746334,875.0025225,121.6092062,982.9864683,858.4047905,124.5816778,117.9422399,6.639437894,217.2141119,0,217.2141119,3.666966257,213.5471456,0.520475555,4.137614035,0.558654782,-0.558654782,0.434618095,0.138075177,3.403928943,109.4820557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3705672,2.656704571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.466134932,105.2383163,115.8367021,107.8950209,858.4047905,0,0.981031218,11.17754055,-0.981031218,168.8224594,0.999033222,0,973.411606,107.8950209,1044.026739,7,14,7% -7/29/2018 23:00,40.59163466,253.3498837,754.2181895,843.974967,113.3320296,905.3335074,789.7332413,115.6002661,109.9146508,5.685615295,186.2863109,0,186.2863109,3.417378844,182.8689321,0.708457674,4.42178963,0.85538635,-0.85538635,0.383874009,0.150264249,2.708943917,87.12894829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6541431,2.475879339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.962620646,83.75165921,107.6167638,86.22753855,789.7332413,0,0.935730646,20.6534917,-0.935730646,159.3465083,0.99656582,0,894.6379188,86.22753855,951.0721182,7,15,6% -7/29/2018 0:00,52.20995092,264.7248262,583.6657801,787.6028363,101.0465372,761.7993824,659.3998519,102.3995305,97.99961132,4.399919192,144.5634518,0,144.5634518,3.04692592,141.5165258,0.911235546,4.62031983,1.24729945,-1.24729945,0.316852921,0.17312397,1.914501884,61.57696166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.20095399,2.207487457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.387050098,59.19011774,95.58800409,61.3976052,659.3998519,0,0.837223816,33.15188784,-0.837223816,146.8481122,0.990278813,0,748.5777068,61.3976052,788.7612114,7,16,5% -7/29/2018 1:00,64.03428982,274.032085,382.5870557,683.0719326,83.51550831,556.7511676,472.8698572,83.88131042,80.99720759,2.884102831,95.2809618,0,95.2809618,2.518300715,92.76266109,1.117609192,4.78276214,1.875426301,-1.875426301,0.209436903,0.218291516,1.101756469,35.4362753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85759682,1.824500295,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.798218811,34.0626957,78.65581563,35.887196,472.8698572,0,0.692269488,46.1899719,-0.692269488,133.8100281,0.977773792,0,541.015569,35.887196,564.5030211,7,17,4% -7/29/2018 2:00,75.71817916,282.6314785,171.3422591,467.5123577,56.01091334,294.4875034,238.8738754,55.61362797,54.32197764,1.291650325,43.23285016,0,43.23285016,1.688935695,41.54391446,1.32153153,4.93284987,3.308295911,-3.308295911,0,0.326894916,0.422233924,13.58049441,0.034374558,1,0.293538446,0,0.9253677,0.964129663,0.724496596,1,52.30105003,1.223628162,0.005784899,0.312029739,0.983726554,0.70822315,0.961238037,0.922476074,0.303034525,13.05408779,52.60408455,14.27771595,230.6626916,0,0.510946655,59.27309344,-0.510946655,120.7269066,0.952142426,0,272.2278194,14.27771595,281.5722989,7,18,3% -7/29/2018 3:00,86.8762005,291.338518,9.023638125,43.79729249,6.63696686,19.97784202,13.4729802,6.504861817,6.436837821,0.068023996,2.388014574,0,2.388014574,0.200129039,2.187885536,1.51627574,5.084816376,13.75766904,-13.75766904,0,0.735508978,0.05003226,1.609209455,0.645709972,1,0.072559126,0,0.95420922,0.992971184,0.724496596,1,6.230486945,0.144992807,0.084518312,0.312029739,0.788431486,0.512928082,0.961238037,0.922476074,0.034563455,1.546833338,6.2650504,1.691826145,4.773342531,0,0.307621303,72.08406249,-0.307621303,107.9159375,0.887462492,0,10.50121286,1.691826145,11.60847923,7,19,11% -7/29/2018 4:00,97.75054234,300.7891713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706068809,5.249761393,-4.644810556,4.644810556,0.675536924,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.087514382,84.97937269,-0.087514382,95.02062731,0.478665333,0,0,0,0,7,20,0% -7/29/2018 5:00,107.3204777,311.5777291,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87309569,5.438057249,-1.526229747,1.526229747,0.791154348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.124353422,97.14341823,0.124353422,82.85658177,0,0.647920191,0,0,0,7,21,0% -7/29/2018 6:00,115.278526,324.2443846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011989835,5.659132093,-0.574993929,0.574993929,0.628483443,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31728925,108.4990692,0.31728925,71.5009308,0,0.892415084,0,0,0,7,22,0% -7/29/2018 7:00,120.9279929,339.0592663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110591635,5.917700557,-0.027402359,0.027402359,0.534839769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478147891,118.5645075,0.478147891,61.43549246,0,0.945429843,0,0,0,7,23,0% -7/30/2018 8:00,123.5467828,355.6046035,0,0,0,0,0,0,0,0,0,0,0,0,0,2.156298141,6.206471167,0.40569034,-0.40569034,0.460776556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.595968819,126.5817279,0.595968819,53.41827214,0,0.966102993,0,0,0,7,0,0% -7/30/2018 9:00,122.7079976,12.57666468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141658577,0.219504208,0.83842977,-0.83842977,0.386773754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662723142,131.5078873,0.662723142,48.49211274,0,0.974553714,0,0,0,7,1,0% -7/30/2018 10:00,118.5559747,28.40663429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069192107,0.495789298,1.374211071,-1.374211071,0.295149756,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673860921,132.3657566,0.673860921,47.63424345,0,0.975800713,0,0,0,7,2,0% -7/30/2018 11:00,111.7060483,42.19574192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949638338,0.736454627,2.2220839,-2.2220839,0.150154963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6286216,128.9484997,0.6286216,51.05150026,0,0.970460894,0,0,0,7,3,0% -7/30/2018 12:00,102.897883,53.91167825,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795906852,0.940936291,4.195941199,-4.195941199,0,#DIV/0!,0,0,0.157819927,1,0.233961127,0,0.934199563,0.972961526,0.724496596,1,0,0,0.025120413,0.312029739,0.931233044,0.65572964,0.961238037,0.922476074,0,0,0,0,0,0,-0.530086396,122.0112924,0.530086396,57.98870755,0,0.955675753,0,0,0,7,4,0% -7/30/2018 13:00,92.75813429,63.99772598,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618934851,1.116971032,20.64353718,-20.64353718,0,#DIV/0!,0,0,0.750006193,1,0.048403474,0,0.956688583,0.995450546,0.724496596,1,0,0,0.094555833,0.312029739,0.767075316,0.491571912,0.961238037,0.922476074,0,0,0,0,0,0,-0.384969014,112.6418166,0.384969014,67.3581834,0,0.920119417,0,0,0,7,5,0% -7/30/2018 14:00,81.64283838,73.03393083,71.38682883,263.7930835,33.04626156,32.58793892,0,32.58793892,32.04979485,0.53814407,71.41606568,53.11103583,18.30502985,0.996466714,17.30856314,1.42493634,1.274682559,-6.797659546,6.797659546,0.307378064,0.46291819,0.337957358,10.86987037,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.80748188,0.721936742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.244848956,10.44853285,31.05233084,11.1704696,0,53.11103583,-0.201335968,101.6150937,0.201335968,78.38490632,0,0.801658879,31.05233084,53.74740304,66.22893118,7,6,113% -7/30/2018 15:00,70.16332702,81.62916665,271.8461714,591.7653016,71.03648961,73.16499188,2.221223263,70.94376862,68.89447735,2.049291268,68.05426383,0,68.05426383,2.142012259,65.91225157,1.224581071,1.424697724,-2.715136238,2.715136238,0.994469332,0.261311348,2.040919008,65.64297093,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22399216,1.55188059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.478638874,63.09852051,67.70263104,64.6504011,2.221223263,0,0.003753554,89.78493667,-0.003753554,90.21506333,0,0,67.70263104,64.6504011,110.0150255,7,7,62% -7/30/2018 16:00,58.3834559,90.48272279,481.4249955,741.501138,92.7065048,256.5033807,162.9631341,93.5402466,89.91106163,3.629184971,119.5225071,0,119.5225071,2.79544317,116.7270639,1.018983534,1.579221429,-1.521725777,1.521725777,0.790384124,0.192566871,3.0149425,96.97091461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.42593237,2.025289061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.184315578,93.21213159,88.61024795,95.23742065,162.9631341,0,0.219774624,77.30420405,-0.219774624,102.6957959,0.822494208,0,222.6464818,95.23742065,284.9774689,7,8,28% -7/30/2018 17:00,46.62109714,100.610386,669.6636813,818.5873357,107.4415857,462.4303338,353.1803007,109.2500331,104.2018254,5.048207697,165.6074729,0,165.6074729,3.239760225,162.3677126,0.813691646,1.755982498,-0.910783122,0.910783122,0.685906777,0.160441112,3.716996552,119.5513862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.1627581,2.347195254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.692951349,114.9173398,102.8557095,117.264535,353.1803007,0,0.431450971,64.44032231,-0.431450971,115.5596777,0.934111977,0,432.7656584,117.264535,509.5129513,7,9,18% -7/30/2018 18:00,35.32336053,113.9164362,820.2698572,861.0693445,117.7217264,657.8740982,537.5185755,120.3555227,114.171982,6.183540667,202.433668,0,202.433668,3.549744399,198.8839236,0.616508944,1.988216884,-0.510478832,0.510478832,0.617450711,0.143515851,4.157519631,133.7201227,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.7464519,2.571777733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.01210882,128.5368683,112.7585607,131.108646,537.5185755,0,0.624245398,51.37317693,-0.624245398,128.6268231,0.969903294,0,634.0995977,131.108646,719.9075844,7,10,14% -7/30/2018 19:00,25.49375156,134.5663655,921.8052309,883.657713,124.1872999,821.0410626,693.6495108,127.3915518,120.4425946,6.948957202,227.2470558,0,227.2470558,3.744705295,223.5023505,0.444949903,2.348626141,-0.204786974,0.204786974,0.565174325,0.134721843,4.334445697,139.4106732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7740032,2.713026239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.140291152,134.0068418,118.9142944,136.719868,693.6495108,0,0.784975337,38.28160273,-0.784975337,141.7183973,0.986303731,0,803.0633951,136.719868,892.5438143,7,11,11% -7/30/2018 20:00,19.76752151,169.1244313,966.8721437,892.4974658,126.9672031,936.0511709,805.6238067,130.4273641,123.1386735,7.288690628,238.2578749,0,238.2578749,3.828529634,234.4293453,0.345008335,2.951778171,0.056990464,-0.056990464,0.520407746,0.131317469,4.252124352,136.7629357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.3655768,2.773756687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.080649618,131.4617359,121.4462264,134.2354926,805.6238067,0,0.902662291,25.48974949,-0.902662291,154.5102505,0.994608299,0,922.7263502,134.2354926,1010.580795,7,12,10% -7/30/2018 21:00,21.78466235,209.6154077,952.2282842,889.6965032,126.0692736,991.8013994,862.3552806,129.4461188,122.2678198,7.178299029,234.6802258,0,234.6802258,3.801453744,230.878772,0.380214084,3.658479027,0.304426792,-0.304426792,0.478093642,0.13239396,3.927899847,126.3347611,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5284791,2.754140297,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.845750068,121.4377778,120.3742292,124.1919181,862.3552806,0,0.969269046,14.24112058,-0.969269046,165.7588794,0.998414736,0,981.3624486,124.1919181,1062.643575,7,13,8% -7/30/2018 22:00,30.00181771,236.7436634,878.904136,874.5997175,121.4924363,981.7767537,857.322212,124.4545417,117.828991,6.625550628,216.7639286,0,216.7639286,3.663445213,213.1004834,0.523630501,4.131956409,0.562007312,-0.562007312,0.434044779,0.138231727,3.394122144,109.1666354,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.261708,2.654153586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.459029939,104.9351223,115.720738,107.5892759,857.322212,0,0.980245242,11.40751465,-0.980245242,168.5924854,0.998992356,0,972.1790747,107.5892759,1042.594104,7,14,7% -7/30/2018 23:00,40.74632953,253.0629167,752.1645365,843.4081042,113.1928218,903.9005607,788.4507862,115.4497745,109.7796406,5.670133992,185.7841813,0,185.7841813,3.413181213,182.3710001,0.711157608,4.41678111,0.860312761,-0.860312761,0.383031543,0.150489443,2.698296457,86.78648939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.5243662,2.47283817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954906598,83.42247469,107.4792728,85.89531286,788.4507862,0,0.934838997,20.79785064,-0.934838997,159.2021494,0.996514854,0,893.1821931,85.89531286,949.3989574,7,15,6% -7/30/2018 0:00,52.35437746,264.4779453,581.3554017,786.683874,100.8678963,759.9980207,657.789161,102.2088597,97.82635707,4.382502583,143.9978871,0,143.9978871,3.041539237,140.9563478,0.913756264,4.616010945,1.255221552,-1.255221552,0.315498162,0.173504703,1.90315631,61.21204898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.03441542,2.203584823,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378830268,58.8393498,95.41324569,61.04293462,657.789161,0,0.836154373,33.26376863,-0.836154373,146.7362314,0.99020243,0,746.757671,61.04293462,786.7090509,7,16,5% -7/30/2018 1:00,64.17821786,273.8143832,380.0188482,681.3136711,83.25677541,554.3735481,470.762529,83.61101905,80.74627645,2.864742598,94.65046841,0,94.65046841,2.510498963,92.13996944,1.12012121,4.778962527,1.890640723,-1.890640723,0.206835084,0.219085911,1.090339201,35.06905671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.61639226,1.818847953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.789947039,33.70971123,78.4063393,35.52855918,470.762529,0,0.690962987,46.29361397,-0.690962987,133.706386,0.977637224,0,538.6413112,35.52855918,561.8940426,7,17,4% -7/30/2018 2:00,75.86794052,282.4341123,168.6762863,463.3944253,55.53498811,291.168751,236.0367946,55.13195641,53.86040331,1.271553095,42.57210327,0,42.57210327,1.674584794,40.89751847,1.324145359,4.92940518,3.352199973,-3.352199973,0,0.329240045,0.418646198,13.46510083,0.041324906,1,0.289907047,0,0.925927312,0.964689275,0.724496596,1,51.87227798,1.213230983,0.006932263,0.312029739,0.980529949,0.705026545,0.961238037,0.922476074,0.299923034,12.94316709,52.17220101,14.15639807,226.2825963,0,0.509364769,59.37847339,-0.509364769,120.6215266,0.951838519,0,267.5566924,14.15639807,276.8217718,7,18,3% -7/30/2018 3:00,87.03036944,291.1562752,8.003809691,39.05673949,5.980411693,17.80589689,11.94548058,5.860416314,5.800080216,0.060336098,2.120947802,0,2.120947802,0.180331478,1.940616325,1.518966496,5.08163564,14.51370833,-14.51370833,0,0.747195639,0.045082869,1.450020054,0.661227862,1,0.068791659,0,0.954604987,0.993366951,0.724496596,1,5.612949099,0.130649542,0.086060451,0.312029739,0.785097904,0.5095945,0.961238037,0.922476074,0.031186752,1.39381443,5.644135851,1.524463972,4.046795996,0,0.305849406,72.1907265,-0.305849406,107.8092735,0.886520853,0,9.23170489,1.524463972,10.22943607,7,19,11% -7/30/2018 4:00,97.9284836,300.6208595,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70917447,5.246823798,-4.555592119,4.555592119,0.690794176,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.085301813,85.1066195,-0.085301813,94.8933805,0,0,0,0,0,7,20,0% -7/30/2018 5:00,107.5179757,311.4274395,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876542681,5.435434201,-1.515225098,1.515225098,0.789272442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.126860097,97.28818673,0.126860097,82.71181327,0,0.655865033,0,0,0,7,21,0% -7/30/2018 6:00,115.4970458,324.1235305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015803726,5.65702279,-0.573615435,0.573615435,0.628247706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320052374,108.6660923,0.320052374,71.33390773,0,0.893775569,0,0,0,7,22,0% -7/30/2018 7:00,121.1644608,338.986763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114718777,5.916435135,-0.02923968,0.02923968,0.535153969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481112246,118.7580698,0.481112246,61.24193021,0,0.946074148,0,0,0,7,23,0% -7/31/2018 8:00,123.7914469,355.5993391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160568334,6.206379286,0.401820782,-0.401820782,0.461438289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599065414,126.8029921,0.599065414,53.19700787,0,0.966536661,0,0,0,7,0,0% -7/31/2018 9:00,122.9465236,12.64281037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145821641,0.220658668,0.832302958,-0.832302958,0.387821501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665873941,131.7494067,0.665873941,48.25059329,0,0.974910712,0,0,0,7,1,0% -7/31/2018 10:00,118.7762287,28.52926104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073036264,0.497929538,1.36430125,-1.36430125,0.296844435,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676984205,132.6084253,0.676984205,47.3915747,0,0.976143033,0,0,0,7,2,0% -7/31/2018 11:00,111.9027049,42.3537425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953070642,0.739212257,2.203268914,-2.203268914,0.153372515,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631637585,129.1710442,0.631637585,50.82895583,0,0.970840683,0,0,0,7,3,0% -7/31/2018 12:00,103.0714865,54.08990407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798936804,0.944046918,4.141965927,-4.141965927,0,#DIV/0!,0,0,0.151221876,1,0.236897838,0,0.933781864,0.972543828,0.724496596,1,0,0,0.02414025,0.312029739,0.933823525,0.658320121,0.961238037,0.922476074,0,0,0,0,0,0,-0.532922724,122.2031451,0.532922724,57.79685494,0,0.956177767,0,0,0,7,4,0% -7/31/2018 13:00,92.91224174,64.18941613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.621624534,1.120316656,19.55617147,-19.55617147,0,#DIV/0!,0,0,0.73781829,1,0.051090254,0,0.956419637,0.9951816,0.724496596,1,0,0,0.093421478,0.312029739,0.76944833,0.493944926,0.961238037,0.922476074,0,0,0,0,0,0,-0.387565739,112.8031171,0.387565739,67.19688288,0,0.920989628,0,0,0,7,5,0% -7/31/2018 14:00,81.78056243,73.23874283,69.28351087,258.0171177,32.39616931,31.94159364,0,31.94159364,31.41930527,0.52228837,70.31374858,52.5382952,17.77545338,0.976864034,16.79858935,1.427340078,1.278257202,-6.91182465,6.91182465,0.287854682,0.467588448,0.32426044,10.42933038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.20143132,0.707734667,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.234925585,10.02506906,30.43635691,10.73280373,0,52.5382952,-0.203623293,101.7489198,0.203623293,78.2510802,0,0.804448525,30.43635691,52.9971578,65.12193674,7,6,114% -7/31/2018 15:00,70.29286652,81.8513768,269.4878922,589.4017105,70.73428474,71.66561552,1.032716886,70.63289864,68.60138507,2.031513564,67.47335916,0,67.47335916,2.132899667,65.3404595,1.226841961,1.428576022,-2.732285433,2.732285433,0.997402017,0.262476671,2.027621036,65.21526242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.94226071,1.545278548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469004538,62.68739082,67.41126525,64.23266936,1.032716886,0,0.001752144,89.89960947,-0.001752144,90.10039053,0,0,67.41126525,64.23266936,109.4502627,7,7,62% -7/31/2018 16:00,58.51002238,90.73066668,479.260167,740.3880978,92.51888101,254.8054814,161.4635204,93.34196097,89.72909539,3.612865579,118.9919618,0,118.9919618,2.789785621,116.2021762,1.021192536,1.583548866,-1.526796389,1.526796389,0.79125125,0.193045213,3.004275469,96.62782622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.2510195,2.021190185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.176587351,92.88234198,88.42760685,94.90353217,161.4635204,0,0.218079573,77.40373791,-0.218079573,102.5962621,0.82072589,0,220.9448984,94.90353217,283.0573621,7,8,28% -7/31/2018 17:00,46.75316504,100.8964929,667.7120836,817.9472996,107.3014183,460.8540421,351.7546617,109.0993804,104.0658846,5.033495729,165.1300588,0,165.1300588,3.235533662,161.8945252,0.815996666,1.760976004,-0.912284245,0.912284245,0.686163484,0.160700129,3.707658118,119.2510301,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0320867,2.344133124,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.686185685,114.628626,102.7182723,116.9727592,351.7546617,0,0.43004563,64.52954403,-0.43004563,115.470456,0.933733268,0,431.1633021,116.9727592,507.7196336,7,9,18% -7/31/2018 18:00,35.47449609,114.253169,818.483125,860.6341959,117.6050774,656.4826738,536.2537519,120.228922,114.0588504,6.170071525,201.9969367,0,201.9969367,3.546227001,198.4507097,0.619146757,1.994093979,-0.51042479,0.51042479,0.61744147,0.143686624,4.148817877,133.4402444,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.6377055,2.569229391,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.005804429,128.2678386,112.6435099,130.8370679,536.2537519,0,0.623091384,51.45776321,-0.623091384,128.5422368,0.969754949,0,632.6782396,130.8370679,718.3084838,7,10,14% -7/31/2018 19:00,25.68553311,134.9266527,920.1109682,883.3123532,124.0818097,819.8078774,692.531407,127.2764704,120.3402853,6.936185135,226.8330813,0,226.8330813,3.741524375,223.0915569,0.448297123,2.354914339,-0.20381887,0.20381887,0.565008769,0.134855266,4.325887998,139.1354282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6756596,2.710721673,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.134091129,133.7422658,118.8097507,136.4529875,692.531407,0,0.78401644,38.37019768,-0.78401644,141.6298023,0.986225827,0,801.8021104,136.4529875,891.1078617,7,11,11% -7/31/2018 20:00,20.00944545,169.2735794,965.1875062,892.1786187,126.8641572,934.9069079,804.592182,130.3147259,123.0387348,7.275991119,237.8463078,0,237.8463078,3.82542242,234.0208854,0.349230705,2.954381297,0.058683431,-0.058683431,0.520118232,0.131439908,4.243313254,136.4795405,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.2695119,2.771505521,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.074266008,131.1893256,121.3437779,133.9608311,804.592182,0,0.901828586,25.60052254,-0.901828586,154.3994775,0.994557091,0,921.5566381,133.9608311,1009.231323,7,12,10% -7/31/2018 21:00,22.01522132,209.3748805,950.4684318,889.3553737,125.9610249,990.6523345,861.3244668,129.3278678,122.1628352,7.165032518,234.2502651,0,234.2502651,3.798189647,230.4520754,0.384238098,3.654281036,0.306884791,-0.306884791,0.477673299,0.132525206,3.91851869,126.0330309,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.4275639,2.75177547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.838953452,121.1477432,120.2665174,123.8995187,861.3244668,0,0.96848177,14.42334097,-0.96848177,165.576659,0.998372802,0,980.1894388,123.8995187,1061.279196,7,13,8% -7/31/2018 22:00,30.18863653,236.4195884,876.9897129,874.1797519,121.3709842,980.5134263,856.1911062,124.3223201,117.7112012,6.611118898,216.2960923,0,216.2960923,3.659782984,212.6363093,0.526891104,4.126300234,0.565483507,-0.565483507,0.433450314,0.138394992,3.38395379,108.8395862,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.148484,2.651500314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.451663002,104.6207501,115.600147,107.2722504,856.1911062,0,0.979422258,11.64351352,-0.979422258,168.3564865,0.998949496,0,970.8918209,107.2722504,1041.099363,7,14,7% -7/31/2018 23:00,40.90667286,252.773915,750.0292337,842.8162854,113.0478924,902.3996653,787.1065468,115.2931185,109.6390813,5.654037177,185.2620823,0,185.2620823,3.408811057,181.8532712,0.713956128,4.41173708,0.865415825,-0.865415825,0.382158867,0.150724648,2.687266365,86.43172371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3892553,2.469672007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946915333,83.08146042,107.3361706,85.55113243,787.1065468,0,0.933900496,20.94876773,-0.933900496,159.0512323,0.996461106,0,891.6572305,85.55113243,947.6487356,7,15,6% -7/31/2018 0:00,52.50410594,264.2285195,578.9557922,785.7241073,100.6819342,758.1124638,656.1020481,102.0104157,97.64600241,4.364413314,143.4104665,0,143.4104665,3.035931793,140.3745347,0.91636952,4.611657642,1.263433951,-1.263433951,0.314093759,0.173902629,1.891426125,60.83476591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.86105166,2.199522249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.370331789,58.47669096,95.23138345,60.67621321,656.1020481,0,0.835028532,33.38119072,-0.835028532,146.6188093,0.990121807,0,744.8523286,60.67621321,784.5636966,7,16,5% -7/31/2018 1:00,64.32723926,273.5941043,377.3575542,679.4767273,82.98740982,551.8911177,468.5614039,83.32971386,80.48503322,2.84468064,93.99708451,0,93.99708451,2.502376597,91.49470791,1.122722124,4.775117934,1.906465653,-1.906465653,0.204128862,0.219917182,1.078573748,34.69063932,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.36527533,1.812963326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.781423009,33.34596204,78.14669834,35.15892536,468.5614039,0,0.689591542,46.40221546,-0.689591542,133.5977845,0.97749331,0,536.162336,35.15892536,559.1731495,7,17,4% -7/31/2018 2:00,76.02268644,282.2342735,165.9258999,459.0895107,55.0384822,287.7146113,233.0849229,54.62968841,53.37886889,1.250819521,41.89026876,0,41.89026876,1.659613309,40.23065545,1.326846185,4.925917335,3.398348115,-3.398348115,0,0.33170519,0.414903327,13.34471722,0.048523462,1,0.28618302,0,0.926498364,0.965260327,0.724496596,1,51.42410603,1.202384193,0.008112857,0.312029739,0.977251492,0.701748088,0.961238037,0.922476074,0.296704202,12.82744978,51.72081023,14.02983398,221.7748354,0,0.507711279,59.48850089,-0.507711279,120.5114991,0.951518832,0,262.7437425,14.02983398,271.9259882,7,18,3% -7/31/2018 3:00,87.18884229,290.9717234,7.022494759,34.44948629,5.332944672,15.69814518,10.47306993,5.225075245,5.172136714,0.052938532,1.863493116,0,1.863493116,0.160807958,1.702685158,1.521732369,5.078414604,15.37640549,-15.37640549,0,0.75940885,0.04020199,1.293034178,0.677353422,1,0.064943249,0,0.955005805,0.993767768,0.724496596,1,5.004105472,0.116504818,0.087644478,0.312029739,0.781693596,0.506190192,0.961238037,0.922476074,0.027852074,1.242913635,5.031957546,1.359418454,3.379100174,0,0.304012369,72.30124448,-0.304012369,107.6987555,0.885533007,0,8.024262285,1.359418454,8.913974475,7,19,11% -7/31/2018 4:00,98.1115534,300.4504868,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712369641,5.243850234,-4.467543982,4.467543982,0.705851294,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.083009272,85.23844005,-0.083009272,94.76155995,0,0,0,0,0,7,20,0% -7/31/2018 5:00,107.7207485,311.2755238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880081734,5.432782771,-1.504032393,1.504032393,0.787358377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.129446876,97.43763056,0.129446876,82.56236944,0,0.66374116,0,0,0,7,21,0% -7/31/2018 6:00,115.7209813,324.0018598,0,0,0,0,0,0,0,0,0,0,0,0,0,2.019712137,5.654899236,-0.572131033,0.572131033,0.627993859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.322893164,108.8379817,0.322893164,71.16201827,0,0.89515002,0,0,0,7,22,0% -7/31/2018 7:00,121.4063522,338.9148341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.118940578,5.915179739,-0.03101865,0.03101865,0.535458191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48414943,118.9567604,0.48414943,61.04323962,0,0.9467261,0,0,0,7,23,0% -8/1/2018 8:00,124.0412261,355.5965469,0,0,0,0,0,0,0,0,0,0,0,0,0,2.164927803,6.206330553,0.397985965,-0.397985965,0.462094081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.602227931,127.0296286,0.602227931,52.97037138,0,0.966974957,0,0,0,8,0,0% -8/1/2018 9:00,123.1894629,12.71321295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150061732,0.221887424,0.826201862,-0.826201862,0.38886485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669082163,131.9962652,0.669082163,48.0037348,0,0.975270762,0,0,0,8,1,0% -8/1/2018 10:00,118.9999739,28.65717943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.076941354,0.500162135,1.354427589,-1.354427589,0.298532931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680155408,132.8557883,0.680155408,47.14421166,0,0.976487389,0,0,0,8,2,0% -8/1/2018 11:00,112.1019754,42.51732488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.956548569,0.742067308,2.184571938,-2.184571938,0.156569886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634691631,129.3971171,0.634691631,50.60288293,0,0.971221586,0,0,0,8,3,0% -8/1/2018 12:00,103.2470187,54.27363265,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802000419,0.947253587,4.088830008,-4.088830008,0,#DIV/0!,0,0,0.144624659,1,0.239860392,0,0.933358613,0.972120577,0.724496596,1,0,0,0.023154475,0.312029739,0.936436452,0.660933048,0.961238037,0.922476074,0,0,0,0,0,0,-0.535787581,122.397339,0.535787581,57.60266103,0,0.956679435,0,0,0,8,4,0% -8/1/2018 13:00,93.06781177,64.38646492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624339743,1.123755807,18.56910074,-18.56910074,0,#DIV/0!,0,0,0.725677885,1,0.053800934,0,0.956146563,0.994908526,0.724496596,1,0,0,0.092281669,0.312029739,0.771843149,0.496339745,0.961238037,0.922476074,0,0,0,0,0,0,-0.390182439,112.9658518,0.390182439,67.03414823,0,0.921854817,0,0,0,8,5,0% -8/1/2018 14:00,81.91942515,73.44885784,67.17882083,252.1510852,31.73505899,31.2845522,0,31.2845522,30.77812987,0.506422328,69.16882793,51.92361593,17.245212,0.956929119,16.28828288,1.42976369,1.281924401,-7.030727528,7.030727528,0.267521092,0.472396785,0.310711253,9.993541963,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.58510914,0.693291889,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225109245,9.606172657,29.81021838,10.29946455,0,51.92361593,-0.205922635,101.8835146,0.205922635,78.11648544,0,0.807190364,29.81021838,52.21170702,63.98173639,8,6,115% -8/1/2018 15:00,70.42352299,82.07899227,267.1091895,586.9959161,70.42753405,70.31746595,0,70.31746595,68.30388405,2.013581898,67.03834321,0.150977736,66.88736547,2.123650002,64.76371547,1.229122347,1.432548662,-2.749721805,2.749721805,0.999616188,0.26366571,2.013012831,64.74541232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.65629142,1.538577197,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.458420943,62.23575303,67.11471236,63.77433023,0,0.150977736,-0.000257204,90.01473671,0.000257204,89.98526329,0,0,67.11471236,63.77433023,108.853736,8,7,62% -8/1/2018 16:00,58.63783754,90.98431068,477.0714459,739.2561634,92.32864932,253.1005266,159.9595606,93.14096596,89.54459989,3.596366075,118.4555448,0,118.4555448,2.784049433,115.6714954,1.023423331,1.587975789,-1.531884895,1.531884895,0.792121435,0.193532122,2.993444707,96.27947169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.07367541,2.017034337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1687405,92.54749035,88.24241591,94.56452469,159.9595606,0,0.216379069,77.50355315,-0.216379069,102.4964468,0.818924045,0,219.2371464,94.56452469,281.1277365,8,8,28% -8/1/2018 17:00,46.88686383,101.1887756,665.7322342,817.2952682,107.1590084,459.2675517,350.321212,108.9463397,103.9277689,5.018570788,164.6457272,0,164.6457272,3.231239477,161.4144878,0.81833015,1.7660773,-0.913750606,0.913750606,0.686414246,0.160964128,3.698136152,118.9447709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.89932454,2.341022001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.679287053,114.3342381,102.5786116,116.6752601,350.321212,0,0.428634822,64.61904631,-0.428634822,115.3809537,0.933350588,0,429.5511208,116.6752601,505.912745,8,9,18% -8/1/2018 18:00,35.62799527,114.5965065,816.6617506,860.1891399,117.4860541,655.0766273,534.97687,120.0997573,113.9434161,6.156341235,201.5517344,0,201.5517344,3.542638009,198.0090964,0.621825823,2.000086349,-0.510317669,0.510317669,0.617423151,0.14386134,4.139900425,133.1534285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5267456,2.566629178,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999343765,127.9921402,112.5260894,130.5587694,534.97687,0,0.621929347,51.54283711,-0.621929347,128.4571629,0.969605016,0,631.2423459,130.5587694,716.6904492,8,10,14% -8/1/2018 19:00,25.88079791,135.2930045,918.3738319,882.9572335,123.9735729,818.5532919,691.3948898,127.1584021,120.2353123,6.923089868,226.4086288,0,226.4086288,3.738260637,222.6703681,0.451705137,2.361308383,-0.202786128,0.202786128,0.56483216,0.134992493,4.317076505,138.8520203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5747555,2.708357106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.127707232,133.4698434,118.7024627,136.1782005,691.3948898,0,0.783044596,38.45981279,-0.783044596,141.5401872,0.986146676,0,800.5192354,136.1782005,889.645144,8,11,11% -8/1/2018 20:00,20.25600267,169.4283124,963.4504375,891.8489369,126.7578362,933.7320909,803.5335748,130.1985162,122.9356198,7.262896361,237.4219295,0,237.4219295,3.822216449,233.599713,0.35353394,2.957081898,0.060453472,-0.060453472,0.519815537,0.131566536,4.234208611,136.1867039,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.1703938,2.769182806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.067669725,130.9078399,121.2380636,133.6770227,803.5335748,0,0.900974976,25.71347907,-0.900974976,154.2865209,0.994504563,0,920.3558702,133.6770227,1007.844808,8,12,10% -8/1/2018 21:00,22.25160116,209.1396202,948.6459298,889.0010634,125.8488449,989.4615114,860.2561798,129.2053316,122.0540378,7.151293729,233.8049957,0,233.8049957,3.794807005,230.0101887,0.388363704,3.650174969,0.309437645,-0.309437645,0.477236736,0.132661556,3.9088065,125.7206535,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3229837,2.749324757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.831917003,120.8474741,120.1549007,123.5967989,860.2561798,0,0.967666086,14.60978987,-0.967666086,165.3902101,0.998329284,0,978.9738363,123.5967989,1059.865469,8,13,8% -8/1/2018 22:00,30.38146384,236.0958576,875.002515,873.7423394,121.2448025,979.195492,855.0105291,124.1849629,117.5888243,6.59613856,215.8104683,0,215.8104683,3.655978141,212.1544902,0.530256576,4.120650066,0.569083732,-0.569083732,0.43283464,0.13856509,3.373423297,108.5008893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0308507,2.648743718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444033695,104.2951818,115.4748844,106.9439256,855.0105291,0,0.978561403,11.88542653,-0.978561403,168.1145735,0.998904586,0,969.5488229,106.9439256,1039.541483,8,14,7% -8/1/2018 23:00,41.0726371,252.483078,747.8119531,842.1991199,112.897196,900.8299057,785.6996544,115.1302513,109.492929,5.63732238,184.7199329,0,184.7199329,3.404267004,181.3156659,0.71685275,4.406661018,0.870696644,-0.870696644,0.381255794,0.150970034,2.675854442,86.06467704,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2487681,2.466379856,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938647434,82.7286412,107.1874155,85.19502106,785.6996544,0,0.932914362,21.10623377,-0.932914362,158.8937662,0.996404513,0,890.0620966,85.19502106,945.820534,8,15,6% -8/1/2018 0:00,52.65910932,263.9766895,576.466932,784.7228753,100.4885973,756.1419273,654.3377807,101.8041466,97.45849534,4.345651234,142.8011837,0,142.8011837,3.030101972,139.7710818,0.919074839,4.60726238,1.271940153,-1.271940153,0.312639113,0.17431806,1.879313942,60.44519646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.68081273,2.195298564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361556553,58.10222198,95.04236929,60.29752055,654.3377807,0,0.833845681,33.50416672,-0.833845681,146.4958333,0.990036866,0,742.8608952,60.29752055,782.3244165,8,16,5% -8/1/2018 1:00,64.48132082,273.3713512,374.6035787,677.5595822,82.70730016,549.3031575,466.2658676,83.03728991,80.2133699,2.82392001,93.32090492,0,93.32090492,2.493930257,90.82697467,1.125411354,4.771230159,1.922915099,-1.922915099,0.201315841,0.220786199,1.066465479,34.30119575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.10414221,1.806843982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.772650609,32.97161406,77.87679282,34.77845804,466.2658676,0,0.688154783,46.5157791,-0.688154783,133.4842209,0.977341928,0,533.5779747,34.77845804,556.3397799,8,17,4% -8/1/2018 2:00,76.18237407,282.0320394,163.0924925,454.5932496,54.52098804,284.1243218,230.0178827,54.10643919,52.87697909,1.229460099,41.18767199,0,41.18767199,1.644008951,39.54366303,1.329633259,4.922387683,3.44684862,-3.44684862,0,0.334294897,0.411002238,13.21924477,0.05597336,1,0.282368184,0,0.927080358,0.965842321,0.724496596,1,50.95610034,1.191078888,0.009326455,0.312029739,0.973892738,0.698389334,0.961238037,0.922476074,0.293377583,12.70684089,51.24947792,13.89791978,217.143009,0,0.505986138,59.60316371,-0.505986138,120.3968363,0.951183064,0,257.7922304,13.89791978,266.888141,8,18,4% -8/1/2018 3:00,87.35148365,290.7849205,6.086935501,30.01575836,4.699941222,13.67222351,9.068116962,4.604106544,4.558220654,0.045885891,1.617568553,0,1.617568553,0.141720569,1.475847984,1.524570996,5.075154278,16.36824691,-16.36824691,0,0.772135867,0.035430142,1.139555163,0.694094312,1,0.061018057,0,0.955411019,0.994172982,0.724496596,1,4.409023363,0.10267607,0.089269342,0.312029739,0.778222404,0.502719,0.961238037,0.922476074,0.024586547,1.095383768,4.43360991,1.198059838,2.773988558,0,0.302111873,72.41550867,-0.302111873,107.5844913,0.884498394,0,6.887198335,1.198059838,7.671304538,8,19,11% -8/1/2018 4:00,98.29969327,300.278094,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715653301,5.240841412,-4.380774522,4.380774522,0.720689745,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.080637375,85.37479698,-0.080637375,94.62520302,0,0,0,0,0,8,20,0% -8/1/2018 5:00,107.9287308,311.1220074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.883711709,5.430103404,-1.49267029,1.49267029,0.785415343,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132112801,97.59170009,0.132112801,82.40829991,0,0.671535538,0,0,0,8,21,0% -8/1/2018 6:00,115.9502628,323.8793868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023713855,5.65276168,-0.570544463,0.570544463,0.627722539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325810353,109.0146772,0.325810353,70.98532278,0,0.896536491,0,0,0,8,22,0% -8/1/2018 7:00,121.6535949,338.8434932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123255777,5.913934606,-0.032739119,0.032739119,0.535752409,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.487257919,119.1605113,0.487257919,60.83948868,0,0.947384941,0,0,0,8,23,0% -8/2/2018 8:00,124.2960446,355.5962513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169375226,6.206325393,0.394187786,-0.394187786,0.462743608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605454664,127.2615662,0.605454664,52.73843377,0,0.967417434,0,0,0,8,0,0% -8/2/2018 9:00,123.4367342,12.78790147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.154377429,0.223190985,0.820129794,-0.820129794,0.389903235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672346006,132.2483899,0.672346006,47.75161013,0,0.975633529,0,0,0,8,1,0% -8/2/2018 10:00,119.2271264,28.79040333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080905913,0.502487331,1.344595314,-1.344595314,0.300214349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683372718,133.1077646,0.683372718,46.89223538,0,0.976833485,0,0,0,8,2,0% -8/2/2018 11:00,112.303781,42.68647731,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96007074,0.745019575,2.166001552,-2.166001552,0.159745609,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637782011,129.6266277,0.637782011,50.37337226,0,0.971603308,0,0,0,8,3,0% -8/2/2018 12:00,103.4244121,54.46282891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805096519,0.950555684,4.036538958,-4.036538958,0,#DIV/0!,0,0,0.138031444,1,0.242847637,0,0.93292993,0.971691893,0.724496596,1,0,0,0.022163519,0.312029739,0.939070805,0.663567401,0.961238037,0.922476074,0,0,0,0,0,0,-0.538679407,122.5937855,0.538679407,57.40621446,0,0.957180413,0,0,0,8,4,0% -8/2/2018 13:00,93.22479119,64.58881942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627079551,1.127287559,17.66942369,-17.66942369,0,#DIV/0!,0,0,0.713589797,1,0.056534633,0,0.955869405,0.994631368,0.724496596,1,0,0,0.091136855,0.312029739,0.774258973,0.498755568,0.961238037,0.922476074,0,0,0,0,0,0,-0.3928178,113.1299452,0.3928178,66.87005483,0,0.922714526,0,0,0,8,5,0% -8/2/2018 14:00,82.05938623,73.66420818,65.07433485,246.1970714,31.06303957,30.61693214,0,30.61693214,30.12637431,0.490557824,67.98103085,51.2663397,16.71469114,0.936665253,15.77802589,1.432206472,1.285682974,-7.154623585,7.154623585,0.246333618,0.477347016,0.297324162,9.562967089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.9586169,0.678610788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.215410343,9.192287711,29.17402725,9.870898498,0,51.2663397,-0.208232939,102.018818,0.208232939,77.98118198,0,0.80988429,29.17402725,51.39070162,62.80821364,8,6,115% -8/2/2018 15:00,70.55527435,82.31192975,264.7105118,584.5475025,70.11621509,69.99745216,0,69.99745216,68.00195251,1.995499652,67.62554418,1.329153308,66.29639087,2.114262586,64.18212829,1.231421842,1.436614188,-2.767448119,2.767448119,0.996584809,0.264878847,1.990489792,64.02099398,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.36606333,1.531776047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.442103079,61.53941457,66.80816641,63.07119062,0,1.329153308,-0.002273816,90.13028016,0.002273816,89.86971984,0,0,66.80816641,63.07119062,108.0869992,8,7,62% -8/2/2018 16:00,58.76689485,91.24354938,474.858887,738.1050853,92.13579157,251.3887976,158.4515532,92.93724438,89.35755751,3.579686872,117.9132689,0,117.9132689,2.778234061,115.1350349,1.025675806,1.592500358,-1.536990375,1.536990375,0.792994524,0.194027729,2.982449502,95.9258281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89388316,2.012821119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.160774512,92.20755469,88.05465767,94.22037581,158.4515532,0,0.214673434,77.6036309,-0.214673434,102.3963691,0.817088088,0,217.5235343,94.22037581,279.1888858,8,8,28% -8/2/2018 17:00,47.02220136,101.4870899,663.7238767,816.6310208,107.0143267,457.670783,348.8799022,108.7908808,103.7874499,5.003430941,164.154415,0,164.154415,3.22687679,160.9275382,0.820692235,1.771283867,-0.915181579,0.915181579,0.686658957,0.161233203,3.688428906,118.6325525,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.76444457,2.337861249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.672254186,114.0341219,102.4366988,116.3719831,348.8799022,0,0.427218528,64.70883002,-0.427218528,115.29117,0.932963877,0,427.929045,116.3719831,504.0921806,8,9,18% -8/2/2018 18:00,35.78387472,114.9462265,814.8052383,859.7339625,117.3646169,653.6555468,533.68756,119.9679868,113.8256407,6.142346061,201.0979397,0,201.0979397,3.53897623,197.5589635,0.624546433,2.006190116,-0.510157154,0.510157154,0.617395701,0.144040086,4.130764932,132.8595996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4135354,2.563976231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.992725132,127.7097007,112.4062605,130.273677,533.68756,0,0.62075896,51.62842108,-0.62075896,128.3715789,0.969453438,0,629.7915004,130.273677,715.0530165,8,10,14% -8/2/2018 19:00,26.07954805,135.6650697,916.5931722,882.5921394,123.8625428,817.2766179,690.2393213,127.0372967,120.1276302,6.909666502,225.9735392,0,225.9735392,3.734912671,222.2386265,0.455173981,2.367802147,-0.20168861,0.20168861,0.564644473,0.135133608,4.308008721,138.5603692,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4712474,2.705931516,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.121137654,133.1894972,118.5923851,135.8954288,690.2393213,0,0.782059221,38.55049564,-0.782059221,141.4495044,0.986066223,0,799.2140654,135.8954288,888.1549056,8,11,11% -8/2/2018 20:00,20.5071369,169.5883014,961.6602286,891.5081974,126.6481901,932.5258348,802.4471539,130.0786809,122.8292799,7.24940101,236.9845664,0,236.9845664,3.818910213,233.1656561,0.357917059,2.959874232,0.062300657,-0.062300657,0.51949965,0.13169744,4.22480821,135.8843547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,118.0681758,2.766787449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.060859166,130.6172104,121.129035,133.3839978,802.4471539,0,0.900100702,25.82869283,-0.900100702,154.1713072,0.99445066,0,919.1231368,133.3839978,1006.420296,8,12,9% -8/2/2018 21:00,22.49371759,208.9097032,946.7601098,888.6333277,125.7326837,988.2279427,859.1494857,129.078457,121.9413793,7.137077621,233.3442542,0,233.3442542,3.791304316,229.5529498,0.392589433,3.646162161,0.312085473,-0.312085473,0.476783931,0.132803106,3.898761756,125.39758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2146921,2.746787071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.824639621,120.5369236,120.0393317,123.2837107,859.1494857,0,0.966821139,14.80050466,-0.966821139,165.1994953,0.998284126,0,977.7146253,123.2837107,1058.401348,8,13,8% -8/2/2018 22:00,30.58025074,235.7727213,872.9420123,873.2871884,121.1138442,977.821961,853.7795405,124.0424205,117.4618149,6.580605621,215.3069267,0,215.3069267,3.652029264,211.6548975,0.533726062,4.115010273,0.572808363,-0.572808363,0.43219769,0.138742141,3.362530214,108.1505303,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9087644,2.64588277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.436141694,103.9584034,115.3449061,106.6042862,853.7795405,0,0.977661818,12.13314304,-0.977661818,167.866857,0.998857571,0,968.1490641,106.6042862,1037.919437,8,14,7% -8/2/2018 23:00,41.2441914,252.1906015,745.5123947,841.5562081,112.7406876,899.190379,784.2292517,114.9611273,109.3411399,5.619987337,184.1576591,0,184.1576591,3.399547701,180.7581113,0.719846937,4.401556339,0.876156367,-0.876156367,0.380322127,0.151225772,2.664061658,85.68538056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1028627,2.462960737,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.930103602,82.364047,107.0329663,84.82700774,784.2292517,0,0.931879825,21.27023264,-0.931879825,158.7297674,0.996345013,0,888.3958702,84.82700774,943.9134502,8,15,6% -8/2/2018 0:00,52.81935777,263.7225945,573.8888369,783.6794971,100.287832,754.0856442,652.4956438,101.5900004,97.26378389,4.326216465,142.1700409,0,142.1700409,3.024048159,139.1459928,0.921871702,4.602827586,1.280743836,-1.280743836,0.311133594,0.17475132,1.866822575,60.04343118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.49364868,2.190912597,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352506601,57.71602992,94.84615528,59.90694251,652.4956438,0,0.832605225,33.63270489,-0.832605225,146.3672951,0.98994753,0,740.7826064,59.90694251,779.9905022,8,16,5% -8/2/2018 1:00,64.64042691,273.1462257,371.7573725,675.5606564,82.41633165,546.6089638,463.8753245,82.73363927,79.93117516,2.802464105,92.62203551,0,92.62203551,2.485156483,90.13687903,1.128188279,4.767300977,1.940003868,-1.940003868,0.198393489,0.221693873,1.054020036,33.90090753,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.8328859,1.800487412,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763633928,32.5868418,77.59651982,34.38732922,463.8753245,0,0.686652368,46.63430451,-0.686652368,133.3656955,0.97718295,0,530.8875777,34.38732922,553.393397,8,17,4% -8/2/2018 2:00,76.34695829,281.8274862,160.1775524,449.9011168,53.98207955,280.3971494,226.8353426,53.56180672,52.35432068,1.207486049,40.46466091,0,40.46466091,1.627758871,38.83690204,1.332505796,4.918817557,3.497818687,-3.497818687,0,0.337014012,0.406939718,13.08858017,0.063677895,1,0.278464381,0,0.927672789,0.966434752,0.724496596,1,50.46780979,1.179305761,0.010572829,0.312029739,0.970455258,0.694951854,0.961238037,0.922476074,0.289942649,12.58124111,50.75775244,13.76054687,212.3909456,0,0.50418933,59.72244694,-0.50418933,120.2775531,0.950830904,0,252.7056273,13.76054687,261.71163,8,18,4% -8/2/2018 3:00,87.51814349,290.5959232,5.204189367,25.79622088,4.087135024,11.74585589,7.742731689,4.003124201,3.963892823,0.039231378,1.385058165,0,1.385058165,0.123242201,1.261815964,1.527479759,5.071855652,17.51853123,-17.51853123,0,0.785354785,0.03081055,0.990973206,0.711457303,1,0.057020533,0,0.955819956,0.99458192,0.724496596,1,3.833101951,0.089288555,0.090933859,0.312029739,0.774688439,0.499185035,0.961238037,0.922476074,0.021419308,0.952561139,3.854521259,1.041849694,2.234108687,0,0.300149845,72.53339664,-0.300149845,107.4666034,0.883416539,0,5.828169822,1.041849694,6.51003961,8,19,12% -8/2/2018 4:00,98.49284296,300.1037208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.719024399,5.237798026,-4.295376614,4.295376614,0.735293648,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.078186775,85.51565092,-0.078186775,94.48434908,0,0,0,0,0,8,20,0% -8/2/2018 5:00,108.1418557,310.9669144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88743144,5.427396521,-1.481156903,1.481156903,0.783446438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.134856876,97.75034379,0.134856876,82.24965621,0,0.679236554,0,0,0,8,21,0% -8/2/2018 6:00,116.1848193,323.7561244,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027807638,5.650610345,-0.56885951,0.56885951,0.627434395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.328802638,109.1961166,0.328802638,70.8038834,0,0.897933093,0,0,0,8,22,0% -8/2/2018 7:00,121.9061155,338.7727529,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127663094,5.912699955,-0.034401052,0.034401052,0.536036616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.490436158,119.369253,0.490436158,60.63074702,0,0.948049931,0,0,0,8,23,0% -8/3/2018 8:00,124.5558256,355.5984761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173909259,6.206364223,0.390427999,-0.390427999,0.46338657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608743878,127.4987325,0.608743878,52.50126752,0,0.96786365,0,0,0,8,0,0% -8/3/2018 9:00,123.6882548,12.86690495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.158767292,0.224569856,0.814089874,-0.814089874,0.390936122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675663639,132.5057068,0.675663639,47.49429323,0,0.975998682,0,0,0,8,1,0% -8/3/2018 10:00,119.4576014,28.92894614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084928462,0.504905359,1.334809342,-1.334809342,0.301887848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686634304,133.3642718,0.686634304,46.63572816,0,0.977181034,0,0,0,8,2,0% -8/3/2018 11:00,112.5080422,42.86118699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963635771,0.748068834,2.147565678,-2.147565678,0.162898329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640906983,129.8594842,0.640906983,50.14051578,0,0.971985559,0,0,0,8,3,0% -8/3/2018 12:00,103.603599,54.65745648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808223919,0.953952576,3.985096244,-3.985096244,0,#DIV/0!,0,0,0.131445255,1,0.24585844,0,0.932495934,0.971257898,0.724496596,1,0,0,0.021167801,0.312029739,0.941725582,0.666222177,0.961238037,0.922476074,0,0,0,0,0,0,-0.541596639,122.7923953,0.541596639,57.20760472,0,0.957680372,0,0,0,8,4,0% -8/3/2018 13:00,93.38312697,64.7964254,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629843031,1.130910967,16.8463439,-16.8463439,0,#DIV/0!,0,0,0.701558532,1,0.059290487,0,0.955588209,0.994350172,0.724496596,1,0,0,0.08998747,0.312029739,0.776695011,0.501191607,0.961238037,0.922476074,0,0,0,0,0,0,-0.395470507,113.2953216,0.395470507,66.70467838,0,0.923568322,0,0,0,8,5,0% -8/3/2018 14:00,82.20040546,73.88472499,62.97165958,240.1574254,30.38024088,29.93887149,0,29.93887149,29.46416452,0.474706969,66.75018658,50.5659023,16.18428428,0.916076354,15.26820793,1.434667722,1.289531718,-7.283788311,7.283788311,0.224245149,0.482443072,0.284113404,9.138063705,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.32207567,0.6636942,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.205839194,8.783854416,28.52791486,9.447548616,0,50.5659023,-0.210553149,102.1547702,0.210553149,77.84522982,0,0.812530268,28.52791486,50.53387476,61.60132521,8,6,116% -8/3/2018 15:00,70.68809893,82.55010484,262.292304,582.0560395,69.80030371,69.6728372,0,69.6728372,67.69556702,1.97727018,68.20165034,2.501107819,65.70054252,2.104736692,63.59580583,1.233740068,1.440771127,-2.78546731,2.78546731,0.993503346,0.266116476,1.967842977,63.29259455,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,65.07155394,1.524874569,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.425695538,60.83924933,66.49724948,62.3641239,0,2.501107819,-0.004297022,90.246202,0.004297022,89.753798,0,0,66.49724948,62.3641239,107.3133213,8,7,61% -8/3/2018 16:00,58.89718816,91.50827625,472.6225399,736.9346043,91.94028857,249.670567,156.939789,92.73077799,89.16794964,3.562828342,117.3651456,0,117.3651456,2.772338924,114.5928066,1.027949854,1.597120713,-1.542111937,1.542111937,0.793870362,0.194532171,2.971289132,95.56687222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.71162487,2.008550113,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152688861,91.86251264,87.86431373,93.87106276,156.939789,0,0.212962979,77.70395283,-0.212962979,102.2960472,0.815217409,0,215.8043619,93.87106276,277.2410951,8,8,28% -8/3/2018 17:00,47.15918565,101.7912901,661.6867509,815.9543304,106.8673434,456.0636468,347.4306739,108.6329729,103.6448987,4.988074226,163.6560582,0,163.6560582,3.222444701,160.4336135,0.823083062,1.776593162,-0.916576554,0.916576554,0.686897512,0.161507455,3.678534638,118.3143189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.62741893,2.334650217,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.665085823,113.7282236,102.2925048,116.0628738,347.4306739,0,0.425796716,64.79889667,-0.425796716,115.2011033,0.932573073,0,426.2969959,116.0628738,502.2578255,8,9,18% -8/3/2018 18:00,35.94215065,115.3021064,812.9130911,859.2684448,117.2407259,652.2190115,532.3854438,119.8335677,113.7054854,6.128082257,200.635431,0,200.635431,3.535240458,197.1001905,0.627308869,2.01240139,-0.50994294,0.50994294,0.617359068,0.144222952,4.121409079,132.5586832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.2980376,2.561269677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.985946848,127.4204484,112.2839844,129.9817181,532.3854438,0,0.619579885,51.7145381,-0.619579885,128.2854619,0.969300156,0,628.3252782,129.9817181,713.3957131,8,10,14% -8/3/2018 19:00,26.28178426,136.042502,914.7683414,882.2168523,123.7486727,815.9771605,689.0640567,126.9131038,120.0171936,6.895910157,225.5276543,0,225.5276543,3.731479065,221.7961752,0.458703669,2.374389583,-0.200526186,0.200526186,0.564445687,0.135278701,4.298682196,138.2603961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.3650916,2.70344388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.114380618,132.9011517,118.4794722,135.6045956,689.0640567,0,0.78105973,38.64229403,-0.78105973,141.357706,0.985984409,0,797.8858892,135.6045956,886.6363849,8,11,11% -8/3/2018 20:00,20.76279115,169.753225,959.8161777,891.1561737,126.5351688,931.2872511,801.3320848,129.9551663,122.7196666,7.235499775,236.5340468,0,236.5340468,3.815502204,232.7185446,0.362379068,2.962752692,0.064225056,-0.064225056,0.519170558,0.131832711,4.215109906,135.5724239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.9628114,2.764318358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053832778,130.3173706,121.0166442,133.081689,801.3320848,0,0.899204997,25.94623635,-0.899204997,154.0537636,0.994395327,0,917.8575245,133.081689,1004.956828,8,12,9% -8/3/2018 21:00,22.74148466,208.6851907,944.8103159,888.2519185,125.6124918,986.9506422,858.0034512,128.947191,121.8248117,7.12237925,232.8678798,0,232.8678798,3.787680089,229.0801997,0.396913784,3.642243679,0.314828403,-0.314828403,0.476314862,0.132949958,3.888383032,125.0637645,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1026429,2.74416133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.81712027,120.2160475,119.9197631,122.9602088,858.0034512,0,0.965946071,14.99551759,-0.965946071,165.0044824,0.998237276,0,976.410791,122.9602088,1056.885788,8,13,8% -8/3/2018 22:00,30.78494509,235.4504207,870.807693,872.8140017,120.9780627,976.3918491,852.4972052,123.8946439,117.3301277,6.56451622,214.785342,0,214.785342,3.647934951,211.137407,0.537298652,4.109385066,0.576657796,-0.576657796,0.431539399,0.138926268,3.351274206,107.7884984,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.7821816,2.642916454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.427986754,103.6104046,115.2101684,106.253321,852.4972052,0,0.976722651,12.38655248,-0.976722651,167.6134475,0.998808395,0,966.6915338,106.253321,1036.232207,8,14,7% -8/3/2018 23:00,41.42130213,251.8966782,743.1302821,840.8871404,112.5783228,897.480192,782.694491,114.785701,109.183671,5.602029966,183.5751924,0,183.5751924,3.394651803,180.1805406,0.722938103,4.39642641,0.881796209,-0.881796209,0.379357657,0.151492041,2.651889123,85.29387002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9514976,2.459413675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.921284642,81.98771217,106.8727822,84.44712584,782.694491,0,0.930796124,21.44074187,-0.930796124,158.5592581,0.996282544,0,886.6576408,84.44712584,941.9265957,8,15,6% -8/3/2018 0:00,52.98481919,263.4663729,571.2215526,782.5932688,100.0795843,751.9428594,650.5749345,101.3679249,97.06181556,4.306109349,141.5170475,0,141.5170475,3.01776872,138.4992788,0.924759548,4.598355675,1.289848873,-1.289848873,0.309576541,0.175202745,1.853955018,59.62956632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29950904,2.186363165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.3431841,57.31820727,94.64269314,59.50457043,650.5749345,0,0.831306581,33.76680968,-0.831306581,146.2331903,0.989853718,0,738.616711,59.50457043,777.5612622,8,16,5% -8/3/2018 1:00,64.80452001,272.9188293,368.8194252,673.4783025,82.11438506,543.8078389,461.3891889,82.41865,79.63833338,2.780316617,91.90059136,0,91.90059136,2.476051679,89.42453968,1.131052244,4.763332163,1.957747645,-1.957747645,0.195359125,0.222641161,1.041243318,33.48996436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55139524,1.793891013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754377239,32.1918276,77.30577248,33.98571861,461.3891889,0,0.68508397,46.75778876,-0.68508397,133.2422112,0.977016246,0,528.0905057,33.98571861,550.3334788,8,17,4% -8/3/2018 2:00,76.51639218,281.6206902,157.1826593,445.0084157,53.42131009,276.5323824,223.5370127,52.99536977,51.81046049,1.18490928,39.72160515,0,39.72160515,1.610849603,38.11075555,1.335462975,4.915208286,3.551385366,-3.551385366,0,0.339867708,0.402712401,12.95261512,0.071640549,1,0.274473472,0,0.928275152,0.967037115,0.724496596,1,49.95876432,1.167055054,0.011851751,0.312029739,0.966940637,0.691437233,0.961238037,0.922476074,0.286398769,12.45054633,50.24516309,13.61760139,207.5226985,0,0.502320866,59.8463336,-0.502320866,120.1536664,0.950462029,0,247.487608,13.61760139,256.4000558,8,18,4% -8/3/2018 3:00,87.68865551,290.4047881,4.380945858,21.83080321,3.500517622,9.936373779,6.508384258,3.427989521,3.3949641,0.03302542,1.167764566,0,1.167764566,0.105553522,1.062211044,1.530455755,5.068519715,18.86614394,-18.86614394,0,0.799032386,0.02638838,0.848741025,0.729447985,1,0.052955446,0,0.956231925,0.994993888,0.724496596,1,3.281976476,0.076473167,0.09263669,0.312029739,0.771096108,0.495592704,0.961238037,0.922476074,0.01838104,0.815842157,3.300357516,0.892315324,1.760856473,0,0.298128484,72.65476986,-0.298128484,107.3452301,0.882287075,0,4.853938423,0.892315324,5.437940957,8,19,12% -8/3/2018 4:00,98.69094077,299.9274068,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722481858,5.234720766,-4.211428527,4.211428527,0.749649616,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.075658151,85.66096096,-0.075658151,94.33903904,0,0,0,0,0,8,20,0% -8/3/2018 5:00,108.3600549,310.8102688,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891239735,5.424662539,-1.469509702,1.469509702,0.781454649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137678076,97.91350873,0.137678076,82.08649127,0,0.686833973,0,0,0,8,21,0% -8/3/2018 6:00,116.4245784,323.6320852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031992224,5.648445452,-0.567079952,0.567079952,0.627130073,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.331868684,109.3822363,0.331868684,70.61776366,0,0.899337999,0,0,0,8,22,0% -8/3/2018 7:00,122.1638393,338.7026258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132161224,5.911476006,-0.036004491,0.036004491,0.53631082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.493682561,119.5829144,0.493682561,60.41708564,0,0.948720344,0,0,0,8,23,0% -8/4/2018 8:00,124.8204907,355.603246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178528536,6.206447474,0.386708247,-0.386708247,0.464022685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612093811,127.7410536,0.612093811,52.25894643,0,0.968313175,0,0,0,8,0,0% -8/4/2018 9:00,123.9439408,12.95025333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163229854,0.22602456,0.808085067,-0.808085067,0.391963004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679033208,132.7681406,0.679033208,47.23185941,0,0.976365899,0,0,0,8,1,0% -8/4/2018 10:00,119.6913126,29.07282146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089007492,0.507416457,1.325074338,-1.325074338,0.303552632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689938313,133.625226,0.689938313,46.37477401,0,0.977529753,0,0,0,8,2,0% -8/4/2018 11:00,112.7146782,43.04144055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96724225,0.751214852,2.129271705,-2.129271705,0.166026783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644064787,130.0955925,0.644064787,49.90440746,0,0.972368058,0,0,0,8,3,0% -8/4/2018 12:00,103.7845103,54.85747806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.811381417,0.957443611,3.934503734,-3.934503734,0,#DIV/0!,0,0,0.124869007,1,0.248891668,0,0.932056749,0.970818712,0.724496596,1,0,0,0.020167737,0.312029739,0.944399781,0.668896377,0.961238037,0.922476074,0,0,0,0,0,0,-0.544537694,122.9930769,0.544537694,57.00692307,0,0.958178992,0,0,0,8,4,0% -8/4/2018 13:00,93.5427652,65.00922763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632629244,1.134625066,16.0907626,-16.0907626,0,#DIV/0!,0,0,0.689588369,1,0.062067633,0,0.955303023,0.994064986,0.724496596,1,0,0,0.088833942,0.312029739,0.779150473,0.503647069,0.961238037,0.922476074,0,0,0,0,0,0,-0.39813923,113.4619042,0.39813923,66.53809581,0,0.924415792,0,0,0,8,5,0% -8/4/2018 14:00,82.3424418,74.11033844,60.87244789,234.0348256,29.68682087,29.25053591,0,29.25053591,28.79165369,0.458882225,65.47624474,49.82184781,15.65439693,0.895167182,14.75922975,1.437146723,1.293469416,-7.418518273,7.418518273,0.201204969,0.487688961,0.271093158,8.719287839,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.67563267,0.648545576,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.19640607,8.381311125,27.87203874,9.029856701,0,49.82184781,-0.212882197,102.29131,0.212882197,77.70868996,0,0.815128316,27.87203874,49.64105562,60.36111682,8,6,117% -8/4/2018 15:00,70.82197439,82.79343218,259.8550262,579.5211029,69.47977651,69.34360185,0,69.34360185,67.3847049,1.958896951,68.76606576,3.666134538,65.09993122,2.095071615,63.0048596,1.236076636,1.445017991,-2.803782324,2.803782324,0.990371294,0.267378998,1.945078515,62.56041122,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.77274145,1.517872253,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.409202763,60.13544687,66.18194421,61.65331912,0,3.666134538,-0.006326145,90.36246383,0.006326145,89.63753617,0,0,66.18194421,61.65331912,106.5328085,8,7,61% -8/4/2018 16:00,59.02871059,91.77838387,470.3624671,735.7444616,91.74212171,247.9461152,155.424566,92.5215492,88.97575825,3.545790959,116.8111893,0,116.8111893,2.766363462,114.0448258,1.030245353,1.601834981,-1.547248653,1.547248653,0.794748793,0.195045583,2.959962943,95.20258307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.52688318,2.004220911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144483076,91.51234405,87.67136626,93.51656496,155.424566,0,0.211248027,77.80450015,-0.211248027,102.1954999,0.813311399,0,214.0799375,93.51656496,275.284659,8,8,29% -8/4/2018 17:00,47.29782374,102.1012299,659.6206087,815.2649694,106.7180292,454.4460617,345.9734761,108.4725856,103.5000868,4.972498773,163.1505957,0,163.1505957,3.217942326,159.9326534,0.825502753,1.782002632,-0.917934912,0.917934912,0.687129805,0.161786984,3.668451672,117.990016,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.48822027,2.331388261,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657780748,113.4164913,102.146001,115.7478796,345.9734761,0,0.424369363,64.88924729,-0.424369363,115.1107527,0.932178111,0,424.6549025,115.7478796,500.4095747,8,9,18% -8/4/2018 18:00,36.10283775,115.6639234,810.9848244,858.7923668,117.1143415,650.766608,531.0701499,119.6964582,113.582912,6.113546167,200.1640894,0,200.1640894,3.531429503,196.6326599,0.630113388,2.01871629,-0.509674718,0.509674718,0.6173132,0.144410028,4.11183061,132.2506067,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1802154,2.558508653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.97900728,127.1243136,112.1592227,129.6828223,531.0701499,0,0.618391791,51.80121059,-0.618391791,128.1987894,0.96914511,0,626.8432617,129.6828223,711.7180752,8,10,14% -8/4/2018 19:00,26.4875049,136.4249608,912.8987049,881.8311522,123.631916,814.6542314,687.8684578,126.7857736,119.9039575,6.881816048,225.0708186,0,225.0708186,3.72795842,221.3428602,0.462294171,2.381064747,-0.199298715,0.199298715,0.564235777,0.135427858,4.289094552,137.9520244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.2562448,2.700893185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.107434402,132.6047332,118.3636792,135.3056263,687.8684578,0,0.780045541,38.73525476,-0.780045541,141.2647452,0.985901178,0,796.5340022,135.3056263,885.0888286,8,11,11% -8/4/2018 20:00,21.02290702,169.9227725,957.9175966,890.7926369,126.4187228,930.015458,800.1875386,129.8279193,122.6067319,7.221187469,236.0702026,0,236.0702026,3.811990928,232.2582117,0.366918946,2.965711855,0.066226748,-0.066226748,0.518828249,0.13197244,4.205111636,135.2508452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.8542543,2.761774451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.046589065,130.0082569,120.9008433,132.7700313,800.1875386,0,0.898287105,26.06617971,-0.898287105,153.9338203,0.994338509,0,916.558127,132.7700313,1003.453457,8,12,9% -8/4/2018 21:00,22.99481473,208.4661318,942.7959071,887.8565837,125.4882202,985.6286304,856.8171492,128.8114812,121.7042874,7.107193786,232.3757158,0,232.3757158,3.783932842,228.591783,0.401335228,3.638420379,0.317666579,-0.317666579,0.475829505,0.133102212,3.87766899,124.7191641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.9867903,2.741446463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.809357983,119.8848045,119.7961483,122.6262509,856.8171492,0,0.965040036,15.19485474,-0.965040036,164.8051453,0.998188678,0,975.0613257,122.6262509,1055.317754,8,13,8% -8/4/2018 22:00,30.99549179,235.1291893,868.5990621,872.3224759,120.8374117,974.9041795,851.1625949,123.7415845,117.1937179,6.547866628,214.2455927,0,214.2455927,3.643693806,210.6018989,0.540973385,4.10377852,0.580632466,-0.580632466,0.43085969,0.139117594,3.339655041,107.4147861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6510593,2.639843759,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.419568709,103.2511781,115.070628,105.8910219,851.1625949,0,0.975743052,12.64554432,-0.975743052,167.3544557,0.998757001,0,965.1752289,105.8910219,1034.478785,8,14,7% -8/4/2018 23:00,41.6039332,251.6014995,740.6653582,840.1914955,112.4100569,895.6984589,781.0945316,114.6039273,109.020479,5.583448328,182.9724692,0,182.9724692,3.389577965,179.5828912,0.726125616,4.391274569,0.88761746,-0.88761746,0.378362164,0.151769022,2.639338071,84.89018502,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7946312,2.455737697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.912191448,81.5996748,106.7068226,84.0554125,781.0945316,0,0.929662506,21.6177331,-0.929662506,158.3822669,0.996217042,0,884.846506,84.0554125,939.8590924,8,15,6% -8/4/2018 0:00,53.15545968,263.2081632,568.4651475,781.4634596,99.86379872,749.7128233,648.5749562,101.1378671,96.85253673,4.285330402,140.8422185,0,140.8422185,3.01126199,137.8309565,0.927737787,4.593849065,1.299259356,-1.299259356,0.307967254,0.175672685,1.840714413,59.20370293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09834227,2.181649061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333591326,56.90885118,94.4319336,59.09050024,648.5749562,0,0.829949178,33.90648225,-0.829949178,146.0935177,0.989755347,0,736.3624646,59.09050024,775.0360152,8,16,5% -8/4/2018 1:00,64.97356113,272.6892644,365.7902574,671.310797,81.80133569,540.8990819,458.8068768,82.09220507,79.3347236,2.757481471,91.15669497,0,91.15669497,2.466612086,88.69008289,1.134002569,4.759325499,1.976163056,-1.976163056,0.192209904,0.223629072,1.028141452,33.0685633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.25955397,1.787052059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744884982,31.78676087,77.00443895,33.57381293,458.8068768,0,0.683449274,46.88622695,-0.683449274,133.113773,0.976841681,0,525.1861198,33.57381293,547.1595089,8,17,4% -8/4/2018 2:00,76.69062744,281.4117285,154.1094822,439.9102682,52.8382106,272.5293251,220.1226391,52.40668597,51.2449436,1.161742373,38.95889517,0,38.95889517,1.593267002,37.36562817,1.338503954,4.911561217,3.607686596,-3.607686596,0,0.342861515,0.39831675,12.8112359,0.079865006,1,0.270397324,0,0.92888694,0.967648903,0.724496596,1,49.42847325,1.154316519,0.013163,0.312029739,0.963350468,0.687847064,0.961238037,0.922476074,0.282745203,12.31464725,49.71121845,13.46896376,202.5425431,0,0.500380771,59.9748052,-0.500380771,120.0251948,0.950076096,0,242.1420472,13.46896376,250.9572146,8,18,4% -8/4/2018 3:00,87.86283532,290.2115728,3.623307191,18.15722125,2.946189705,8.260115795,5.37545056,2.884665235,2.857351215,0.02731402,0.967351267,0,0.967351267,0.08883849,0.878512778,1.533495766,5.065147472,20.4638062,-20.4638062,0,0.813121701,0.022209622,0.714337804,0.748070426,1,0.048827923,0,0.95664621,0.995408173,0.724496596,1,2.761377058,0.064363184,0.094376325,0.312029739,0.76745015,0.491946745,0.961238037,0.922476074,0.015503265,0.686648668,2.776880323,0.751011852,1.354234971,0,0.296050287,72.77947215,-0.296050287,107.2205279,0.881109774,0,3.970109991,0.751011852,4.461632228,8,19,12% -8/4/2018 4:00,98.89392387,299.7491925,0,0,0,0,0,0,0,0,0,0,0,0,0,1.726024582,5.231610339,-4.128994863,4.128994863,0.763746603,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073052203,85.81068531,-0.073052203,94.18931469,0,0,0,0,0,8,20,0% -8/4/2018 5:00,108.583259,310.6520953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895135382,5.421901892,-1.457745431,1.457745431,0.77944284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.140575357,98.08114105,0.140575357,81.91885895,0,0.694318884,0,0,0,8,21,0% -8/4/2018 6:00,116.6694664,323.5072827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036266325,5.646267237,-0.565209509,0.565209509,0.626810208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.335007137,109.5729719,0.335007137,70.42702807,0,0.900749448,0,0,0,8,22,0% -8/4/2018 7:00,122.4266903,338.6331259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136748837,5.910263002,-0.037549517,0.037549517,0.536575035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496995518,119.8014233,0.496995518,60.19857666,0,0.949395471,0,0,0,8,23,0% -8/5/2018 8:00,125.0899597,355.6105878,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183231658,6.206575612,0.3830301,-0.3830301,0.464651685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.615502671,127.9884544,0.615502671,52.01154565,0,0.968765584,0,0,0,8,0,0% -8/5/2018 9:00,124.2037057,13.03797847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167763607,0.227555652,0.80211823,-0.80211823,0.392983394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682452829,133.0356144,0.682452829,46.96438563,0,0.976734863,0,0,0,8,1,0% -8/5/2018 10:00,119.9281711,29.22204383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093141452,0.510020879,1.315394785,-1.315394785,0.305207933,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693282859,133.8905407,0.693282859,46.10945927,0,0.977879365,0,0,0,8,2,0% -8/5/2018 11:00,112.9236059,43.22722457,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970888725,0.754457395,2.111126606,-2.111126606,0.169129777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647253629,130.3348559,0.647253629,49.66514413,0,0.97275053,0,0,0,8,3,0% -8/5/2018 12:00,103.9670751,55.06285571,0,0,0,0,0,0,0,0,0,0,0,0,0,1.814567775,0.961028128,3.884762124,-3.884762124,0,#DIV/0!,0,0,0.118305549,1,0.251946175,0,0.931612502,0.970374466,0.724496596,1,0,0,0.019163739,0.312029739,0.947092392,0.671588988,0.961238037,0.922476074,0,0,0,0,0,0,-0.547500957,123.1957366,0.547500957,56.80426344,0,0.958675959,0,0,0,8,4,0% -8/5/2018 13:00,93.70365011,65.22717008,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635437216,1.13842888,15.39496247,-15.39496247,0,#DIV/0!,0,0,0.677683441,1,0.064865186,0,0.955013899,0.993775862,0.724496596,1,0,0,0.087676702,0.312029739,0.781624552,0.506121148,0.961238037,0.922476074,0,0,0,0,0,0,-0.400822607,113.6296137,0.400822607,66.37038632,0,0.925256537,0,0,0,8,5,0% -8/5/2018 14:00,82.48545228,74.34097782,58.77841448,227.8323489,28.98297346,28.55212639,0,28.55212639,28.10902988,0.443096516,64.15929589,49.0338452,15.12545069,0.873943586,14.2515071,1.439642727,1.297494832,-7.55913207,7.55913207,0.177158593,0.493088725,0.258277598,8.307095373,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.0194687,0.633169153,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.18712124,7.985096048,27.20658994,8.618265201,0,49.0338452,-0.215218978,102.4283746,0.215218978,77.57162545,0,0.81767848,27.20658994,48.71218521,59.08774091,8,6,117% -8/5/2018 15:00,70.95687668,83.04182559,257.3991731,576.942295,69.15461356,69.0097305,0,69.0097305,67.06934681,1.940383692,69.31818838,4.823512056,64.49467633,2.085266752,62.40940957,1.238431125,1.449353273,-2.82239595,2.82239595,0.987188177,0.268666805,1.922202857,61.8246514,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.46960726,1.510768663,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.392629426,59.42820654,65.86223668,60.93897521,0,4.823512056,-0.008360476,90.47902555,0.008360476,89.52097445,0,0,65.86223668,60.93897521,105.7455772,8,7,61% -8/5/2018 16:00,59.16145348,92.05376403,468.0787631,734.5344089,91.54127462,246.2157481,153.9062052,92.30954287,88.78096744,3.528575434,116.2514225,0,116.2514225,2.760307181,113.4911153,1.032562154,1.606641271,-1.552399495,1.552399495,0.795629639,0.195568101,2.948470441,94.83294468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.33964285,1.999833156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.136156797,91.15703357,87.47579965,93.15686673,153.9062052,0,0.209528925,77.9052525,-0.209528925,102.0947475,0.811369463,0,212.3505947,93.15686673,273.3199008,8,8,29% -8/5/2018 17:00,47.43812061,102.4167624,657.5252314,814.5627144,106.5663563,452.8179718,344.5082814,108.3096904,103.3529875,4.956702934,162.6379737,0,162.6379737,3.213368832,159.4246049,0.827951396,1.787509714,-0.919255977,0.919255977,0.68735572,0.162071889,3.658178461,117.6595942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.34682282,2.32807478,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.650337842,113.0988774,101.9971607,115.4269521,344.5082814,0,0.422936473,64.9798814,-0.422936473,115.0201186,0.931778936,0,423.0027204,115.4269521,498.547352,8,9,18% -8/5/2018 18:00,36.265948,116.0314558,809.0199796,858.3055104,116.9854257,649.2979463,529.7413285,119.5566178,113.4578835,6.098734338,199.6838028,0,199.6838028,3.527542215,196.1562606,0.632960199,2.02513094,-0.509352143,0.509352143,0.617258036,0.144601405,4.102027389,131.9353014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0600332,2.555692327,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971904879,126.8212302,112.0319381,129.3769225,529.7413285,0,0.61719437,51.88845929,-0.61719437,128.1115407,0.968988243,0,625.3450575,129.3769225,710.0196657,8,10,14% -8/5/2018 19:00,26.69670486,136.8121127,910.9836513,881.4348192,123.5122274,813.3071627,686.6519051,126.6552576,119.787878,6.867379564,224.6028826,0,224.6028826,3.724349368,220.8785333,0.465945399,2.387821823,-0.198006035,0.198006035,0.564014716,0.135581168,4.279243513,137.6351812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1446647,2.698278439,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.100297358,132.3001713,118.2449621,134.9984498,686.6519051,0,0.779016088,38.82942254,-0.779016088,141.1705775,0.985816473,0,795.1577215,134.9984498,883.5115069,8,11,11% -8/5/2018 20:00,21.28742398,170.0966463,955.9638177,890.4173568,126.2988035,928.7095903,799.0127027,129.6968877,122.4904286,7.206459059,235.5928703,0,235.5928703,3.808374919,231.7844954,0.371535638,2.968746525,0.068305837,-0.068305837,0.518472703,0.132116719,4.19481143,134.9195552,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.7424591,2.759154665,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.039126602,129.6898083,120.7815857,132.448963,799.0127027,0,0.89734628,26.18858927,-0.89734628,153.8114107,0.99428015,0,915.2240557,132.448963,1001.909253,8,12,9% -8/5/2018 21:00,23.25361841,208.2525667,940.716261,887.447068,125.3598205,984.260941,855.5896651,128.6712759,121.5797594,7.091516536,231.8676098,0,231.8676098,3.780061116,228.0875487,0.405852204,3.634692965,0.320600176,-0.320600176,0.475327831,0.13325997,3.866618387,124.3637387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8670892,2.738641411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.801351859,119.5431561,119.6684411,122.2817975,855.5896651,0,0.964102194,15.39853505,-0.964102194,164.601465,0.998138278,0,973.6652361,122.2817975,1053.696227,8,13,8% -8/5/2018 22:00,31.21183304,234.809255,866.3156418,871.8123011,120.6918453,973.3579846,849.7747905,123.5831941,117.0525409,6.530653241,213.6875617,0,213.6875617,3.639304442,210.0482572,0.544749252,4.098194613,0.58473285,-0.58473285,0.430158483,0.139316249,3.327672583,107.0293891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.5153546,2.636663679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410887458,102.8807198,114.9262421,105.5173835,849.7747905,0,0.974722184,12.91000782,-0.974722184,167.0899922,0.998703332,0,963.599157,105.5173835,1032.658174,8,14,7% -8/5/2018 23:00,41.79204645,251.3052563,738.1173826,839.4688385,112.235845,893.8442994,779.4285385,114.4157608,108.8515202,5.564240612,182.3494299,0,182.3494299,3.384324834,178.965105,0.729408812,4.386104149,0.893621501,-0.893621501,0.377335413,0.152056905,2.626409835,84.4743685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.6322216,2.451931822,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.902824984,81.19997614,106.5350466,83.65190797,779.4285385,0,0.928478227,21.80117256,-0.928478227,158.1988274,0.996148441,0,882.9615701,83.65190797,937.7100708,8,15,6% -8/5/2018 0:00,53.33124387,262.948105,565.619708,780.2893091,99.64041849,747.3947865,646.495014,100.8997725,96.63589224,4.263880278,140.145573,0,140.145573,3.004526251,137.1410467,0.9308058,4.589310194,1.308979615,-1.308979615,0.306304992,0.176161504,1.82710403,58.76594622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.89009535,2.176769041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32373065,56.48806278,94.21382599,58.66483182,646.495014,0,0.828532451,34.05172091,-0.828532451,145.9482791,0.989652334,0,734.0191253,58.66483182,772.4140844,8,16,5% -8/5/2018 1:00,65.14751024,272.4576347,362.6704154,669.0563325,81.47705238,537.88198,456.1277986,81.75418142,79.02021864,2.733962784,90.39047481,0,90.39047481,2.456833748,87.93364106,1.137038553,4.755282797,1.995267752,-1.995267752,0.188942808,0.224658668,1.014720776,32.63690824,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.95723983,1.779967687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.735161748,31.37183761,76.69240158,33.1518053,456.1277986,0,0.681747973,47.01961271,-0.681747973,132.9803873,0.976659115,0,522.1737735,33.1518053,543.870967,8,17,4% -8/5/2018 2:00,76.86961476,281.2006798,150.9597774,434.6016069,52.23228777,268.3872931,216.5920029,51.79529015,50.65729158,1.137998567,38.17694196,0,38.17694196,1.574996193,36.60194577,1.341627872,4.907877722,3.666872363,-3.666872363,0,0.346001357,0.393749048,12.6643229,0.088355173,1,0.266237809,0,0.929507646,0.968269609,0.724496596,1,48.87642381,1.14107938,0.014506357,0.312029739,0.959686341,0.684182937,0.961238037,0.922476074,0.278981079,12.17342888,49.15540489,13.31450826,197.4549792,0,0.49836908,60.10784227,-0.49836908,119.8921577,0.949672749,0,236.6730177,13.31450826,245.387097,8,18,4% -8/5/2018 3:00,88.04047834,290.0163366,2.936533967,14.80920946,2.430156179,6.731709296,4.352694459,2.379014837,2.356878004,0.022136833,0.785274834,0,0.785274834,0.073278175,0.711996658,1.536596222,5.061739958,22.38480032,-22.38480032,0,0.827559363,0.018319544,0.589219501,0.767326748,1,0.044643488,0,0.957062074,0.995824037,0.724496596,1,2.276934932,0.053089788,0.096151053,0.312029739,0.763755663,0.488252259,0.961238037,0.922476074,0.012817331,0.566380196,2.289752263,0.619469985,1.012755576,0,0.293918083,72.90732775,-0.293918083,107.0926722,0.879884574,0,3.180860272,0.619469985,3.586290987,8,19,13% -8/5/2018 4:00,99.10172856,299.56912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.729651458,5.228467481,-4.048127561,4.048127561,0.777575726,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.070369638,85.96478171,-0.070369638,94.03521829,0,0,0,0,0,8,20,0% -8/5/2018 5:00,108.8113974,310.4924208,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899117149,5.419115045,-1.445880042,1.445880042,0.777413739,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14354766,98.25318642,0.14354766,81.74681358,0,0.701683628,0,0,0,8,21,0% -8/5/2018 6:00,116.9194082,323.3817325,0,0,0,0,0,0,0,0,0,0,0,0,0,2.040628633,5.644075973,-0.563251805,0.563251805,0.626475421,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338216621,109.7682582,0.338216621,70.23174181,0,0.902165752,0,0,0,8,22,0% -8/5/2018 7:00,122.6945902,338.5642695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141424574,5.909061233,-0.039036218,0.039036218,0.536829276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500373397,120.0247068,0.500373397,59.97529319,0,0.950074624,0,0,0,8,23,0% -8/6/2018 8:00,125.3641501,355.6205311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.188017184,6.206749156,0.379395091,-0.379395091,0.465273308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618968642,128.2408583,0.618968642,51.75914168,0,0.969220464,0,0,0,8,0,0% -8/6/2018 9:00,124.4674601,13.13011505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172366991,0.229163739,0.796192152,-0.796192152,0.393996813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685920587,133.3080491,0.685920587,46.69195087,0,0.977105264,0,0,0,8,1,0% -8/6/2018 10:00,120.1680847,29.37662932,0,0,0,0,0,0,0,0,0,0,0,0,0,2.097328733,0.512718905,1.305775034,-1.305775034,0.306853007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696666021,134.1601267,0.696666021,45.8398733,0,0.978229599,0,0,0,8,2,0% -8/6/2018 11:00,113.1347387,43.4185259,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974573688,0.757796233,2.093137059,-2.093137059,0.172206171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650471676,130.5771737,0.650471676,49.42282635,0,0.973132702,0,0,0,8,3,0% -8/6/2018 12:00,104.1512194,55.2735511,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817781699,0.964705456,3.835871294,-3.835871294,0,#DIV/0!,0,0,0.1117577,1,0.25502078,0,0.931163329,0.969925293,0.724496596,1,0,0,0.018156228,0.312029739,0.949802374,0.67429897,0.961238037,0.922476074,0,0,0,0,0,0,-0.55048477,123.4002766,0.55048477,56.59972339,0,0.959170966,0,0,0,8,4,0% -8/6/2018 13:00,93.86572306,65.45019601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638265922,1.142321416,14.75235908,-14.75235908,0,#DIV/0!,0,0,0.665847804,1,0.067682231,0,0.954720894,0.993482857,0.724496596,1,0,0,0.086516185,0.312029739,0.784116405,0.508613001,0.961238037,0.922476074,0,0,0,0,0,0,-0.40351923,113.7983677,0.40351923,66.20163232,0,0.926090168,0,0,0,8,5,0% -8/6/2018 14:00,82.62939103,74.57657168,56.69134964,221.5535421,28.26893656,27.84388717,0,27.84388717,27.41652383,0.42736334,62.79959357,48.20170676,14.59788681,0.852412739,13.74547407,1.442154932,1.301606721,-7.705971336,7.705971336,0.1520476,0.498646385,0.245680927,7.901943137,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.35380554,0.617570127,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177994995,7.595648308,26.53180053,8.213218436,0,48.20170676,-0.217562339,102.5658976,0.217562339,77.43410236,0,0.820180812,26.53180053,47.74733343,57.78147532,8,6,118% -8/6/2018 15:00,71.09277903,83.29519812,254.9252924,574.3192668,68.82480092,68.67121377,0,68.67121377,66.74947924,1.921734535,69.85740596,5.97249571,63.88491025,2.075321684,61.80958857,1.240803068,1.453775458,-2.841310644,2.841310644,0.983953574,0.269980276,1.899222937,61.0855382,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,64.16213838,1.503563496,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.375980553,58.71774282,65.53811893,60.22130632,0,5.97249571,-0.010399261,90.59584448,0.010399261,89.40415552,0,0,65.53811893,60.22130632,104.9517595,8,7,60% -8/6/2018 16:00,59.29540532,92.33430781,465.7715727,733.3042181,91.33773482,244.4798123,152.3850644,92.09474797,88.58356511,3.511182858,115.68588,0,115.68588,2.754169705,112.9317103,1.034900054,1.611537684,-1.55756327,1.55756327,0.796512696,0.196099848,2.936811366,94.45794876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.14989223,1.995386576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.127709838,90.79657323,87.27760206,92.79195981,152.3850644,0,0.207806065,78.00618702,-0.207806065,101.993813,0.809391046,0,210.6167087,92.79195981,271.3471906,8,8,29% -8/6/2018 17:00,47.58007813,102.7377403,655.4004457,813.8473528,106.4123002,451.1793633,343.0351012,108.1442621,103.2035767,4.940685402,162.1181495,0,162.1181495,3.208723471,158.909426,0.830429022,1.793111834,-0.920538994,0.920538994,0.687575129,0.162362264,3.647713656,117.3230101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.20320349,2.324709232,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.642756127,112.7753399,101.8459596,115.1000492,343.0351012,0,0.421498086,65.07079592,-0.421498086,114.9292041,0.931375499,0,421.3404482,115.1000492,496.6711284,8,9,18% -8/6/2018 18:00,36.43148966,116.4044829,807.0181383,857.8076628,116.8539426,647.8126749,528.3986663,119.4140087,113.330365,6.083643612,199.1944685,0,199.1944685,3.523577513,195.670891,0.635849446,2.03164149,-0.508974821,0.508974821,0.61719351,0.14479717,4.091997441,131.6127038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.9374576,2.552819914,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.964638216,126.5111371,111.9020958,129.063957,528.3986663,0,0.615987347,51.97630225,-0.615987347,128.0236977,0.968829502,0,623.8303123,129.063957,708.3000908,8,10,14% -8/6/2018 19:00,26.90937458,137.2036328,909.0226029,881.0276357,123.3895635,811.9353198,685.4138106,126.5215092,119.6689129,6.852596353,224.123705,0,224.123705,3.720650597,220.4030544,0.469657186,2.394655138,-0.196647942,0.196647942,0.563782468,0.135738719,4.269126941,137.3097975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.0303109,2.695598692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.092967936,131.9874001,118.1232788,134.6829988,685.4138106,0,0.777970841,38.92483887,-0.777970841,141.0751611,0.985730239,0,793.7563981,134.6829988,881.9037272,8,11,11% -8/6/2018 20:00,21.55627868,170.2745635,953.9542015,890.0301031,126.1753635,927.3688098,797.8067893,129.5620205,122.3707108,7.191309723,235.1018934,0,235.1018934,3.804652748,231.2972407,0.376228037,2.971851766,0.070462463,-0.070462463,0.518103899,0.132265641,4.184207436,134.5784943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.6273818,2.756457964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.031444044,129.3619676,120.6588258,132.1184256,797.8067893,0,0.896381804,26.31352656,-0.896381804,153.6864734,0.994220197,0,913.8544494,132.1184256,1000.323317,8,12,9% -8/6/2018 21:00,23.51780437,208.0445299,938.5707777,887.0231134,125.227245,982.8466274,854.320103,128.5265245,121.4511815,7.075342976,231.3434149,0,231.3434149,3.776063475,227.5673514,0.410463119,3.631062037,0.323629408,-0.323629408,0.474809801,0.133423337,3.855230075,123.9974515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7434953,2.735745133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.793101065,119.1910668,119.5365963,121.926812,854.320103,0,0.963131727,15.60656938,-0.963131727,164.3934306,0.998086021,0,972.2215488,121.926812,1052.020209,8,13,8% -8/6/2018 22:00,31.43390841,234.4908413,863.9569721,871.2831605,120.5413178,971.7523096,848.3328847,123.4194249,116.9065523,6.512872592,213.1111359,0,213.1111359,3.634765483,209.4763704,0.548625199,4.092637247,0.588959481,-0.588959481,0.429435687,0.139522362,3.315326781,106.6323056,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3750249,2.633375219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401942967,102.4990281,114.7769678,105.1324034,848.3328847,0,0.973659223,13.17983177,-0.973659223,166.8201682,0.998647331,0,961.9623387,105.1324034,1030.769394,8,14,7% -8/6/2018 23:00,41.9856018,251.0081401,735.4861302,838.718721,112.0556419,891.9168387,777.6956827,114.221156,108.6767509,5.54440512,181.7060185,0,181.7060185,3.378891045,178.3271274,0.73278699,4.380918494,0.899809812,-0.899809812,0.376277149,0.152355887,2.613105841,84.04646635,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4642267,2.44799506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.893186287,80.78866032,106.357413,83.23665538,777.6956827,0,0.927242547,21.99102135,-0.927242547,158.0089786,0.996076676,0,881.0019438,83.23665538,935.47867,8,15,6% -8/6/2018 0:00,53.51213522,262.6863403,562.6853355,779.0700244,99.40938472,744.9879966,644.3344119,100.6535847,96.41182499,4.241759739,139.4271339,0,139.4271339,2.997559731,136.4295741,0.933962949,4.584741539,1.319014237,-1.319014237,0.30458897,0.176669585,1.813127256,58.31640514,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.67471338,2.171721821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.313604525,56.05594679,93.9883179,58.22766862,644.3344119,0,0.827055838,34.2025214,-0.827055838,145.7974786,0.98954459,0,731.5859492,58.22766862,769.6947937,8,16,5% -8/6/2018 1:00,65.32632651,272.2240465,359.4604666,666.7130119,81.14139681,534.7558029,453.3513538,81.40444915,78.69468432,2.709764834,89.60206431,0,89.60206431,2.446712494,87.15535182,1.140159486,4.751205915,2.015080474,-2.015080474,0.185554633,0.225731073,1.000987834,32.1952096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64432386,1.772634873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.725212278,30.94726007,76.36953614,32.71989495,453.3513538,0,0.67997976,47.15793857,-0.67997976,132.8420614,0.9764684,0,519.052807,32.71989495,540.4673238,8,17,4% -8/6/2018 2:00,77.05330408,280.9876255,147.7353902,429.0771722,51.60302272,264.1056136,212.9449206,51.16069296,50.04700119,1.113691775,37.37617732,0,37.37617732,1.55602153,35.82015579,1.344833856,4.904159222,3.729105983,-3.729105983,0,0.349293576,0.389005382,12.5117503,0.097115186,1,0.261996799,0,0.930136763,0.968898726,0.724496596,1,48.30208001,1.127332301,0.015881613,0.312029739,0.955949848,0.680446444,0.961238037,0.922476074,0.275105388,12.02677029,48.57718539,13.15410259,192.264735,0,0.49628583,60.24542477,-0.49628583,119.7545752,0.949251607,0,231.0847941,13.15410259,239.6938911,8,18,4% -8/6/2018 3:00,88.22135758,289.8191414,2.324761031,11.81451628,1.95805994,5.363250954,3.446708715,1.916542239,1.899017208,0.017525031,0.622707959,0,0.622707959,0.059042732,0.563665227,1.53975316,5.058298254,24.73403913,-24.73403913,0,0.842262888,0.014760683,0.474754302,0.787216663,1,0.040408106,0,0.957478757,0.996240721,0.724496596,1,1.833931541,0.042776258,0.097958938,0.312029739,0.760018149,0.484514745,0.961238037,0.922476074,0.010353078,0.456351893,1.844284619,0.499128151,0.733402183,0,0.291735068,73.03813938,-0.291735068,106.9618606,0.878611623,0,2.488660301,0.499128151,2.815329693,8,19,13% -8/6/2018 4:00,99.31429045,299.3872344,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733361363,5.225292979,-3.968866931,3.968866931,0.791130092,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.06761117,86.12320785,-0.06761117,93.87679215,0,0,0,0,0,8,20,0% -8/6/2018 5:00,109.0443987,310.3312747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903183788,5.416302515,-1.433928643,1.433928643,0.77536993,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146593917,98.42959032,0.146593917,81.57040968,0,0.708921728,0,0,0,8,21,0% -8/6/2018 6:00,117.1743273,323.2554535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045077811,5.641871989,-0.561210327,0.561210327,0.626126308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.34149575,109.9680295,0.34149575,70.03197051,0,0.903585294,0,0,0,8,22,0% -8/6/2018 7:00,122.9674592,338.4960769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146187037,5.907871047,-0.040464661,0.040464661,0.537073554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503814544,120.2526908,0.503814544,59.74730925,0,0.950757133,0,0,0,8,23,0% -8/7/2018 8:00,125.6429767,355.6331098,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192883625,6.206968694,0.375804737,-0.375804737,0.465887295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622489879,128.4981875,0.622489879,51.50181253,0,0.969677409,0,0,0,8,0,0% -8/7/2018 9:00,124.7351112,13.2267013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177038383,0.230849487,0.790309583,-0.790309583,0.395002791,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689434529,133.5853636,0.689434529,46.41463639,0,0.977476797,0,0,0,8,1,0% -8/7/2018 10:00,120.4109571,29.536596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101567656,0.51551085,1.296219356,-1.296219356,0.308487125,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700085836,134.433891,0.700085836,45.56610897,0,0.978580186,0,0,0,8,2,0% -8/7/2018 11:00,113.3479862,43.61533195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97829556,0.761231147,2.075309518,-2.075309518,0.17525486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653717045,130.822441,0.653717045,49.17755902,0,0.973514309,0,0,0,8,3,0% -8/7/2018 12:00,104.3368654,55.48952566,0,0,0,0,0,0,0,0,0,0,0,0,0,1.821021832,0.968474923,3.787830564,-3.787830564,0,#DIV/0!,0,0,0.105228275,1,0.258114258,0,0.930709375,0.969471338,0.724496596,1,0,0,0.017145632,0.312029739,0.952528648,0.677025244,0.961238037,0.922476074,0,0,0,0,0,0,-0.553487421,123.6065952,0.553487421,56.39340482,0,0.95966371,0,0,0,8,4,0% -8/7/2018 13:00,94.02892182,65.67824809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641114278,1.146301676,14.15730296,-14.15730296,0,#DIV/0!,0,0,0.654085491,1,0.0705178,0,0.954424073,0.993186037,0.724496596,1,0,0,0.085352843,0.312029739,0.78662515,0.511121746,0.961238037,0.922476074,0,0,0,0,0,0,-0.406227634,113.9680799,0.406227634,66.03192011,0,0.9269163,0,0,0,8,5,0% -8/7/2018 14:00,82.77420852,74.81704785,54.61312797,215.202481,27.54499917,27.12611264,0,27.12611264,26.71441581,0.411696827,61.39757555,47.32540703,14.07216852,0.830583355,13.24158516,1.444682474,1.305803822,-7.859402013,7.859402013,0.125809409,0.504365895,0.233317373,7.50428874,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67891261,0.601754813,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.169037643,7.213407777,25.84795025,7.81516259,0,47.32540703,-0.219911066,102.7038095,0.219911066,77.29619047,0,0.822635362,25.84795025,46.74671592,56.44274089,8,6,118% -8/7/2018 15:00,71.2296512,83.55346211,252.4339988,571.6517347,68.49033277,68.32805065,0,68.32805065,66.42509654,1.902954111,70.38309398,7.11231216,63.27078182,2.065236235,61.20554559,1.243191939,1.458283015,-2.860528388,2.860528388,0.980667146,0.271319763,1.876146305,60.34331437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.85032939,1.496256622,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.359261611,58.00428904,65.209591,59.50054567,0,7.11231216,-0.012441687,90.71287457,0.012441687,89.28712543,0,0,65.209591,59.50054567,104.1515081,8,7,60% -8/7/2018 16:00,59.43055104,92.61990566,463.4411037,732.0536891,91.13149488,242.7387069,150.861548,91.87715886,88.38354407,3.493614798,115.1146119,0,115.1146119,2.74795081,112.3666611,1.037258792,1.616522307,-1.562738569,1.562738569,0.797397724,0.196640941,2.924985761,94.07759666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.95762439,1.990881007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119142227,90.43096432,87.07676661,92.42184533,150.861548,0,0.206079896,78.10727757,-0.206079896,101.8927224,0.807375654,0,208.8787076,92.42184533,269.3669569,8,8,29% -8/7/2018 17:00,47.72369425,103.0640159,653.2461356,813.1186858,106.2558397,449.5302761,341.5539967,107.9762794,103.0518341,4.924445303,161.5910942,0,161.5910942,3.20400561,158.3870886,0.832935596,1.798806417,-0.921783096,0.921783096,0.687787883,0.162658199,3.637056153,116.9802282,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05734273,2.321291158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.635034802,112.4458449,101.6923775,114.767136,341.5539967,0,0.420054295,65.16198457,-0.420054295,114.8380154,0.930967769,0,419.6681397,114.767136,494.7809349,8,9,18% -8/7/2018 18:00,36.59946649,116.7827854,804.9789314,857.2986191,116.7198591,646.3104922,527.0418963,119.2685959,113.2003247,6.06827121,198.6959961,0,198.6959961,3.519534403,195.1764617,0.638781195,2.038244115,-0.50854229,0.50854229,0.617119543,0.144997409,4.081738991,131.2827568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.8124579,2.549890694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.957206004,126.1939795,111.7696639,128.7438701,527.0418963,0,0.614770495,52.06475407,-0.614770495,127.9352459,0.968668836,0,622.298724,128.7438701,706.5590122,8,10,14% -8/7/2018 19:00,27.12549945,137.5992054,907.0150235,880.609388,123.2638828,810.5381105,684.1536262,126.3844843,119.5470219,6.837462372,223.6331544,0,223.6331544,3.716860861,219.9162935,0.473429277,2.401559183,-0.195224187,0.195224187,0.563538992,0.135900597,4.258742861,136.9758097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.9131447,2.692853041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.085444706,131.6663585,117.9985894,134.3592115,684.1536262,0,0.776909303,39.02154127,-0.776909303,140.9784587,0.985642423,0,792.3294275,134.3592115,880.2648443,8,11,11% -8/7/2018 20:00,21.82940458,170.4562575,951.8881413,889.6306464,126.0483571,925.992312,796.5690431,129.4232689,122.247534,7.175734889,234.5971235,0,234.5971235,3.800823035,230.7963004,0.380994984,2.975022924,0.072696805,-0.072696805,0.517721804,0.132419296,4.173297929,134.227607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.5089796,2.75368335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.023540143,129.0246815,120.5325198,131.7783648,796.5690431,0,0.895392988,26.44104739,-0.895392988,153.5589526,0.994158598,0,912.4484827,131.7783648,998.6947869,8,12,9% -8/7/2018 21:00,23.78727933,207.8420517,936.3588824,886.5844596,125.090447,981.3847676,853.0075903,128.3771773,121.3185085,7.058668775,230.8029903,0,230.8029903,3.771938512,227.0310518,0.415166344,3.627528126,0.326754533,-0.326754533,0.474275374,0.133592418,3.843503012,123.6202688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.6159649,2.732756612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.784604848,118.8285045,119.4005698,121.5612611,853.0075903,0,0.962127839,15.81896006,-0.962127839,164.1810399,0.998031854,0,970.7293166,121.5612611,1050.288731,8,13,8% -8/7/2018 22:00,31.661655,234.1741685,861.5226119,870.734731,120.385784,970.0862147,846.835985,123.2502298,116.7557084,6.494521357,212.5162072,0,212.5162072,3.630075563,208.8861316,0.552600126,4.087110263,0.593312953,-0.593312953,0.428691199,0.13973607,3.302617677,106.2235372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2300279,2.629977388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.392735264,102.1061043,114.6227632,104.7360817,846.835985,0,0.972553356,13.45490441,-0.972553356,166.5450956,0.998588939,0,960.2638109,104.7360817,1028.811482,8,14,7% -8/7/2018 23:00,42.18455749,250.7103438,732.7713898,837.9406791,111.8694017,889.9152079,775.8951411,114.0200668,108.4961265,5.52394026,181.0421824,0,181.0421824,3.373275217,177.6689072,0.736259422,4.375720968,0.906183982,-0.906183982,0.375187102,0.15266617,2.599427604,83.60652721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.2906037,2.443926411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.88327645,80.36577408,106.1738801,82.80970049,775.8951411,0,0.925954737,22.18723569,-0.925954737,157.8127643,0.99600168,0,878.9667443,82.80970049,933.1640371,8,15,6% -8/7/2018 0:00,53.69809621,262.4230136,559.662144,777.8047782,99.17063627,742.4916963,642.092451,100.3992453,96.18027569,4.218969644,138.6869269,0,138.6869269,2.990360584,135.6965664,0.937208581,4.580145621,1.329368086,-1.329368086,0.302818358,0.177197328,1.798787586,57.85519205,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45213939,2.166506064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303215483,55.61261122,93.75535487,57.77911729,642.092451,0,0.825518779,34.35887713,-0.825518779,145.6411229,0.989432026,0,729.0621895,57.77911729,766.8774662,8,16,5% -8/7/2018 1:00,65.50996857,271.9886091,356.1609974,664.2788416,80.79422272,531.5197985,450.4769276,81.04287084,78.3579788,2.684892042,88.79160123,0,88.79160123,2.436243914,86.35535731,1.143364644,4.747096756,2.035621139,-2.035621139,0.182041973,0.226847474,0.98694936,31.74368404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.32066972,1.765050422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.715041452,30.51323653,76.03571117,32.27828696,450.4769276,0,0.678144326,47.3011962,-0.678144326,132.6988038,0.976269382,0,515.8225431,32.27828696,536.9480363,8,17,4% -8/7/2018 2:00,77.24164481,280.7726498,144.4382578,423.3315114,50.94986969,259.683628,209.1812483,50.50237974,49.41354314,1.088836598,36.55705442,0,36.55705442,1.536326556,35.02072786,1.348121022,4.900407188,3.794565569,-3.794565569,0,0.352744975,0.384081639,12.35338578,0.106149438,1,0.257676157,0,0.930773788,0.969535751,0.724496596,1,47.70488163,1.11306336,0.017288566,0.312029739,0.952142571,0.676639167,0.961238037,0.922476074,0.271116968,11.8745443,47.9759986,12.98760766,186.9767763,0,0.49413106,60.38753226,-0.49413106,119.6124677,0.94881227,0,225.3818582,12.98760766,233.8819877,8,18,4% -8/7/2018 3:00,88.40522172,289.6200523,1.790695629,9.192780054,1.534855615,4.163427369,2.661354294,1.502073075,1.488574055,0.01349902,0.480456447,0,0.480456447,0.04628156,0.434174887,1.542962195,5.054823493,27.6671527,-27.6671527,0,0.857128141,0.01157039,0.372143514,0.807736975,1,0.036128216,0,0.957895474,0.996657437,0.724496596,1,1.436991937,0.033530833,0.099797793,0.312029739,0.756243538,0.480740134,0.961238037,0.922476074,0.008137159,0.357718501,1.445129096,0.391249333,0.511680028,0,0.289504837,73.17168632,-0.289504837,106.8283137,0.877291314,0,1.89402154,0.391249333,2.150086404,8,19,14% -8/7/2018 4:00,99.53154462,299.2035838,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737153163,5.222087671,-3.891242687,3.891242687,0.80440462,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064777508,86.28592163,-0.064777508,93.71407837,0,0,0,0,0,8,20,0% -8/7/2018 5:00,109.2821904,310.1686899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907334037,5.413464876,-1.42190548,1.42190548,0.773313848,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.14971306,98.61029835,0.14971306,81.38970165,0,0.716027801,0,0,0,8,21,0% -8/7/2018 6:00,117.434146,323.1284679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049612502,5.639655673,-0.559088411,0.559088411,0.625763439,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.344843128,110.17222,0.344843128,69.82778001,0,0.905006535,0,0,0,8,22,0% -8/7/2018 7:00,123.2452154,338.428572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151034795,5.906692865,-0.041834879,0.041834879,0.537307875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507317292,120.4853005,0.507317292,59.51469948,0,0.95144235,0,0,0,8,23,0% -8/8/2018 8:00,125.9263512,355.6483621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.197829443,6.207234898,0.372260554,-0.372260554,0.466493386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626064511,128.7603625,0.626064511,51.23963753,0,0.970136026,0,0,0,8,0,0% -8/8/2018 9:00,125.0065622,13.3277794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181776097,0.232613632,0.784473243,-0.784473243,0.396000864,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692992673,133.8674742,0.692992673,46.13252576,0,0.977849165,0,0,0,8,1,0% -8/8/2018 10:00,120.656688,29.70196424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10585647,0.51839707,1.286731945,-1.286731945,0.310109567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703540298,134.7117372,0.703540298,45.28826276,0,0.978930866,0,0,0,8,2,0% -8/8/2018 11:00,113.5632539,43.8176309,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98205269,0.76476193,2.057650238,-2.057650238,0.178274775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656987807,131.0705484,0.656987807,48.92945161,0,0.973895087,0,0,0,8,3,0% -8/8/2018 12:00,104.5239311,55.71074073,0,0,0,0,0,0,0,0,0,0,0,0,0,1.824286745,0.972335855,3.74063877,-3.74063877,0,#DIV/0!,0,0,0.098720086,1,0.261225336,0,0.930250795,0.969012758,0.724496596,1,0,0,0.016132391,0.312029739,0.955270095,0.67976669,0.961238037,0.922476074,0,0,0,0,0,0,-0.556507143,123.8145859,0.556507143,56.18541409,0,0.960153894,0,0,0,8,4,0% -8/8/2018 13:00,94.19318039,65.9112686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.643981131,1.150368651,13.6049199,-13.6049199,0,#DIV/0!,0,0,0.642400519,1,0.073370879,0,0.95412351,0.992885473,0.724496596,1,0,0,0.084187137,0.312029739,0.789149856,0.513646452,0.961238037,0.922476074,0,0,0,0,0,0,-0.408946295,114.1386599,0.408946295,65.86134011,0,0.927734557,0,0,0,8,5,0% -8/8/2018 14:00,82.91985141,75.06233369,52.54570827,208.7838083,26.81150593,26.39915185,0,26.39915185,26.0030401,0.396111744,59.95388086,46.40509971,13.54878115,0.808465828,12.74031532,1.447224422,1.310084867,-8.019816268,8.019816268,0.098376956,0.510251109,0.221201123,7.11458848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.99511122,0.58573074,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.16025946,6.838813064,25.15537068,7.424543804,0,46.40509971,-0.222263882,102.8420366,0.222263882,77.15796344,0,0.825042173,25.15537068,45.71070809,55.07211491,8,6,119% -8/8/2018 15:00,71.36745933,83.81652944,249.9259762,568.9394882,68.15121208,67.98024916,0,67.98024916,66.09620159,1.884047578,70.89461682,8.24215985,62.65245697,2.055010495,60.59744647,1.245597144,1.462874406,-2.880050625,2.880050625,0.977328647,0.272685589,1.852981136,59.59824293,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.53418306,1.488848108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.342478526,57.28809803,64.87666158,58.77694614,0,8.24215985,-0.014486883,90.8300663,0.014486883,89.1699337,0,0,64.87666158,58.77694614,103.3449973,8,7,59% -8/8/2018 16:00,59.56687182,92.91044776,461.0876302,730.782653,90.92255283,240.9928853,149.3361096,91.65677571,88.18090239,3.475873321,114.5376847,0,114.5376847,2.741650436,111.7960342,1.039638038,1.621593223,-1.567923753,1.567923753,0.798284443,0.197191481,2.912993984,93.69189987,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.7628375,1.986316408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.110454225,90.0602179,86.87329173,92.04653431,149.3361096,0,0.204350923,78.20849466,-0.204350923,101.7915053,0.805322857,0,207.1370742,92.04653431,267.37969,8,8,29% -8/8/2018 17:00,47.86896296,103.3954418,651.0622452,812.3765308,106.0969579,447.8708066,340.0650812,107.8057254,102.8977432,4.907982214,161.0567938,0,161.0567938,3.199214738,157.8575791,0.835471013,1.804590891,-0.922987302,0.922987302,0.687993814,0.162959776,3.626205101,116.631221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.90922467,2.317820187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.627173252,112.110366,101.5363979,114.4281861,340.0650812,0,0.41860525,65.2534376,-0.41860525,114.7465624,0.930555727,0,417.9859066,114.4281861,492.8768659,8,9,18% -8/8/2018 18:00,36.76987766,117.1661465,802.9020424,856.7781828,116.5831456,644.7911487,525.6708004,119.1203483,113.0677336,6.052614743,198.1883078,0,198.1883078,3.515411985,194.6728959,0.641755431,2.044935028,-0.508054017,0.508054017,0.617036043,0.145202203,4.071250474,130.9454101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6850063,2.546904017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949607109,125.8697089,111.6346134,128.4166129,525.6708004,0,0.613543635,52.15382576,-0.613543635,127.8461742,0.968506204,0,620.7500446,128.4166129,704.7961495,8,10,14% -8/8/2018 19:00,27.34505976,137.9985251,904.9604204,880.1798668,123.1351464,809.1149881,682.8708467,126.2441414,119.4221675,6.821973906,223.1311102,0,223.1311102,3.712978986,219.4181312,0.477261327,2.408528626,-0.193734463,0.193734463,0.563284234,0.136066886,4.248089462,136.6331598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.7931298,2.690040636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.077726354,131.3369903,117.8708562,134.0270309,682.8708467,0,0.775831023,39.11956313,-0.775831023,140.8804369,0.985552977,0,790.8762518,134.0270309,878.5942631,8,11,11% -8/8/2018 20:00,22.10673209,170.6414778,949.765065,889.2187583,125.9177401,924.5793286,795.2987426,129.2805859,122.1208557,7.159730243,234.0784205,0,234.0784205,3.796884452,230.281536,0.385835262,2.978255629,0.075009093,-0.075009093,0.517326379,0.132577776,4.162081314,133.8668421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.3872116,2.75082986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.015413744,128.6779005,120.4026253,131.4287304,795.2987426,0,0.894379179,26.57120174,-0.894379179,153.4287983,0.9940953,0,911.0053672,131.4287304,997.0228426,8,12,9% -8/8/2018 21:00,24.06194827,207.6451587,934.0800266,886.1308438,124.9493811,979.8744654,851.6512794,128.223186,121.1816962,7.041489798,230.2462017,0,230.2462017,3.767684853,226.4785169,0.419960222,3.624091696,0.329975859,-0.329975859,0.473724494,0.133767319,3.831436256,123.2321605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4844558,2.72967485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.775862525,118.45544,119.2603183,121.1851149,851.6512794,0,0.961089759,16.03570108,-0.961089759,163.9642989,0.997975723,0,969.1876195,121.1851149,1048.500853,8,13,8% -8/8/2018 22:00,31.89500764,233.8594525,859.0121388,870.1666819,120.2251987,968.3587762,845.2832144,123.0755618,116.5999654,6.47559635,211.9026717,0,211.9026717,3.625233325,208.2774383,0.556672898,4.081617433,0.597793927,-0.597793927,0.427924907,0.139957509,3.289545391,105.8030875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.0803218,2.626469203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383264437,101.7019521,114.4635863,104.3284213,845.2832144,0,0.971403792,13.73511356,-0.971403792,166.2648864,0.998528099,0,958.5026273,104.3284213,1026.783493,8,14,7% -8/8/2018 23:00,42.38887018,250.4120607,729.9729636,837.1342335,111.6770781,887.8385432,774.0260965,113.8124467,108.3096021,5.502844542,180.3578723,0,180.3578723,3.367475948,176.9903964,0.739825351,4.370514947,0.912745719,-0.912745719,0.374064979,0.152987965,2.585376709,83.15460213,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1113093,2.439724861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.873096625,79.9313665,105.9844059,82.37109136,774.0260965,0,0.924614077,22.38976714,-0.924614077,157.6102329,0.995923384,0,876.8550956,82.37109136,930.7653275,8,15,6% -8/8/2018 0:00,53.8890885,262.1582714,556.5502581,776.4927065,98.92410951,739.9051223,639.7684288,100.1366936,95.94118262,4.195510933,137.9249805,0,137.9249805,2.982926893,134.9420536,0.940542025,4.575524997,1.340046322,-1.340046322,0.300992272,0.177745151,1.784088606,57.38242232,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.22231403,2.16112038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.292566122,55.15816698,93.51488016,57.31928736,639.7684288,0,0.823920719,34.52077918,-0.823920719,145.4792208,0.989314549,0,726.447095,57.31928736,763.9614222,8,16,5% -8/8/2018 1:00,65.69839468,271.7514341,352.7726105,661.7517256,80.43537528,528.17319,447.5038891,80.66930089,78.00995194,2.659348949,87.959227,0,87.959227,2.425423339,85.53380366,1.1466533,4.742957272,2.056910931,-2.056910931,0.178401204,0.228009128,0.972612278,31.28255419,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.98613305,1.757210953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704654285,30.06998098,75.69078734,31.82719193,447.5038891,0,0.676241363,47.44937646,-0.676241363,132.5506235,0.976061902,0,512.4822847,31.82719193,533.3125452,8,17,4% -8/8/2018 2:00,77.43458598,280.5558396,141.0704123,417.3589799,50.27225499,255.1206969,205.3008875,49.81980937,48.75636102,1.063448356,35.72004868,0,35.72004868,1.515893973,34.20415471,1.35148848,4.896623137,3.863445713,-3.863445713,0,0.356362856,0.378973493,12.18909025,0.115462594,1,0.253277737,0,0.931418219,0.970180182,0.724496596,1,47.08424337,1.098260023,0.018727023,0.312029739,0.948266083,0.672762679,0.961238037,0.922476074,0.267014497,11.71661719,47.35125786,12.81487721,181.5963146,0,0.491904805,60.53414407,-0.491904805,119.4658559,0.948354317,0,219.5689067,12.81487721,227.9559875,8,18,4% -8/8/2018 3:00,88.59179394,289.4191369,1.335319829,6.953484055,1.16443547,3.136648661,1.997259012,1.139389649,1.129323444,0.010066205,0.358875778,0,0.358875778,0.035112026,0.323763752,1.546218495,5.051316858,31.42530889,-31.42530889,0,0.872027393,0.008778006,0.282330861,0.828881124,1,0.031810751,0,0.958311416,0.997073379,0.724496596,1,1.089734242,0.025438543,0.101665161,0.312029739,0.752438199,0.476934794,0.961238037,0.922476074,0.006191078,0.271387163,1.095925321,0.296825706,0.341768718,0,0.287231407,73.30772319,-0.287231407,106.6922768,0.875924329,0,1.395288856,0.296825706,1.589555344,8,19,14% -8/8/2018 4:00,99.75342594,299.0182192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741025723,5.218852449,-3.815274963,3.815274963,0.817395866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.061869361,86.45288133,-0.061869361,93.54711867,0,0,0,0,0,8,20,0% -8/8/2018 5:00,109.5246998,310.0047024,0,0,0,0,0,0,0,0,0,0,0,0,0,1.911566623,5.410602754,-1.409823934,1.409823934,0.771247782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.152904019,98.7952564,0.152904019,81.2047436,0,0.722997477,0,0,0,8,21,0% -8/8/2018 6:00,117.6987855,323.0008015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054231332,5.637427472,-0.556889238,0.556889238,0.625387358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.348257352,110.380764,0.348257352,69.61923603,0,0.906428013,0,0,0,8,22,0% -8/8/2018 7:00,123.5277751,338.361783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155966393,5.905527175,-0.04314688,0.04314688,0.537532241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510879958,120.7224611,0.510879958,59.27753889,0,0.952129651,0,0,0,8,23,0% -8/9/2018 8:00,126.2141831,355.6663308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.202853058,6.207548511,0.368764039,-0.368764039,0.467091325,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629690652,129.0273031,0.629690652,50.97269689,0,0.970595931,0,0,0,8,0,0% -8/9/2018 9:00,125.2817134,13.43339552,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186578391,0.234456982,0.778685804,-0.778685804,0.396990574,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696593009,134.1542957,0.696593009,45.84570427,0,0.978222076,0,0,0,8,1,0% -8/9/2018 10:00,120.9051735,29.87275674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11019336,0.521377962,1.277316892,-1.277316892,0.311719636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.70702737,134.9935658,0.70702737,45.0064342,0,0.97928138,0,0,0,8,2,0% -8/9/2018 11:00,113.7804437,44.02541183,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985843366,0.768388391,2.040165213,-2.040165213,0.18126489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660281991,131.3213825,0.660281991,48.67861746,0,0.974274778,0,0,0,8,3,0% -8/9/2018 12:00,104.7123316,55.93715786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827574954,0.976287579,3.694294119,-3.694294119,0,#DIV/0!,0,0,0.092235922,1,0.264352702,0,0.929787753,0.968549716,0.724496596,1,0,0,0.015116951,0.312029739,0.958025563,0.682522158,0.961238037,0.922476074,0,0,0,0,0,0,-0.559542126,124.0241386,0.559542126,55.97586142,0,0.960641223,0,0,0,8,4,0% -8/9/2018 13:00,94.35842963,66.14919976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.646865274,1.154521333,13.09098042,-13.09098042,0,#DIV/0!,0,0,0.630796833,1,0.07624041,0,0.953819282,0.992581245,0.724496596,1,0,0,0.08301954,0.312029739,0.791689559,0.516186154,0.961238037,0.922476074,0,0,0,0,0,0,-0.411673643,114.3100139,0.411673643,65.6899861,0,0.928544568,0,0,0,8,5,0% -8/9/2018 14:00,83.06626314,75.31235648,50.49112158,202.3027338,26.06885788,25.66340903,0,25.66340903,25.28278563,0.380623402,58.46935923,45.44112999,13.02822924,0.786072249,12.24215699,1.449779789,1.314448588,-8.187635525,8.187635525,0.069678172,0.516305779,0.209346186,6.73329296,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.30277523,0.569506668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.151670599,6.472297306,24.45444583,7.041803975,0,45.44112999,-0.224619456,102.9805018,0.224619456,77.01949818,0,0.827401295,24.45444583,44.63985377,53.67033732,8,6,119% -8/9/2018 15:00,71.50616655,84.08431206,247.4019667,566.1823803,67.80744942,67.62782516,0,67.62782516,65.76280463,1.865020528,71.39133291,9.361216981,62.03011592,2.044644783,59.98547114,1.248018042,1.467548095,-2.899878327,2.899878327,0.97393791,0.274078053,1.829736124,58.85060342,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,63.21370922,1.481338185,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.325637593,56.5694385,64.53934682,58.05077669,0,9.361216981,-0.016533925,90.94736729,0.016533925,89.05263271,0,0,64.53934682,58.05077669,102.5324191,8,7,59% -8/9/2018 16:00,59.70434577,93.20582458,458.711482,729.4909665,90.71091126,239.2428456,147.8092421,91.43360351,87.9756426,3.457960912,113.9551783,0,113.9551783,2.735268662,111.2199096,1.042037412,1.626748521,-1.573116979,1.573116979,0.799172537,0.19775156,2.900836661,93.30087858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.56553398,1.981692835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.101646286,89.68435337,86.66718027,91.6660462,147.8092421,0,0.202619702,78.30980598,-0.202619702,101.690194,0.803232289,0,205.3923361,91.6660462,265.38593,8,8,29% -8/9/2018 17:00,48.01587485,103.7318718,648.8487688,811.6207175,105.9356411,446.2010978,338.568511,107.6325868,102.7412907,4.891296094,160.5152466,0,160.5152466,3.194350441,157.3208961,0.838035109,1.810462701,-0.924150534,0.924150534,0.688192739,0.163267076,3.61515987,116.2759685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.75883656,2.31429602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.61917102,111.7688837,101.3780076,114.0831797,338.568511,0,0.417151144,65.34514248,-0.417151144,114.6548575,0.930139368,0,416.2939083,114.0831797,490.9590677,8,9,18% -8/9/2018 18:00,36.94271848,117.5543525,800.7871984,856.2461643,116.4437746,643.2544388,524.2852015,118.9692373,112.9325651,6.036672156,197.6713369,0,197.6713369,3.511209435,194.1601274,0.644772072,2.051710501,-0.507509407,0.507509407,0.61694291,0.145411633,4.060530501,130.6006189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.5550772,2.543859283,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.941840526,125.5382825,111.4969177,128.0821418,524.2852015,0,0.612306628,52.24352529,-0.612306628,127.7564747,0.968341567,0,619.1840712,128.0821418,703.0112713,8,10,14% -8/9/2018 19:00,27.56803166,138.4012971,902.8583377,879.7388656,123.0033174,807.6654434,681.5650023,126.1004411,119.2943136,6.806127518,222.6174608,0,222.6174608,3.709003854,218.9084569,0.481152921,2.415558323,-0.19217842,0.19217842,0.563018135,0.136237671,4.237165077,136.281794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.6702318,2.687160666,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.069811675,130.9992442,117.7400434,133.6864048,681.5650023,0,0.774735582,39.2189343,-0.774735582,140.7810657,0.985461852,0,789.3963526,133.6864048,876.8914308,8,11,11% -8/9/2018 20:00,22.38818948,170.8299895,947.5844301,888.7942104,125.78347,923.129122,793.9951961,129.133926,121.9906343,7.143291695,233.5456515,0,233.5456515,3.792835711,229.7528158,0.39074762,2.981545777,0.077399601,-0.077399601,0.516917578,0.132741174,4.150556109,133.4961519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.2620378,2.747896561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.007063772,128.321579,120.2691016,131.0694755,793.9951961,0,0.893339748,26.70403438,-0.893339748,153.2959656,0.994030253,0,909.5243469,131.0694755,995.3066973,8,12,9% -8/9/2018 21:00,24.34171516,207.4538725,931.7336843,885.6620003,124.8040024,978.3148481,850.2503448,128.0645033,121.0407012,7.023802078,229.6729202,0,229.6729202,3.763301149,225.909619,0.424843075,3.620753121,0.333293749,-0.333293749,0.473157102,0.133948149,3.819028955,122.833099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.348926,2.726498872,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766873478,118.071847,119.1157995,120.7983458,850.2503448,0,0.960016738,16.25677921,-0.960016738,163.7432208,0.997917575,0,967.5955616,120.7983458,1046.655663,8,13,8% -8/9/2018 22:00,32.1338993,233.5469037,856.4251472,869.5786751,120.0595173,966.5690848,843.6737104,122.8953744,116.4392799,6.456094515,211.2704297,0,211.2704297,3.62023742,207.6501923,0.560842344,4.076162427,0.602403138,-0.602403138,0.427136686,0.140186819,3.276110116,105.3709629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9258648,2.622849687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.373530627,101.2865775,114.2993955,103.9094272,843.6737104,0,0.970209752,14.02034739,-0.970209752,165.9796526,0.998464752,0,956.6778576,103.9094272,1024.6845,8,14,7% -8/9/2018 23:00,42.59849519,250.1134833,727.0906661,836.298888,111.4786237,885.6859873,772.0877388,113.5982485,108.1171319,5.481116566,179.6530418,0,179.6530418,3.361491818,176.29155,0.743483998,4.365303788,0.919496864,-0.919496864,0.372910465,0.153321489,2.570954813,82.69074437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9262996,2.435389379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.86264801,79.48548879,105.7889476,81.92087817,772.0877388,0,0.923219856,22.5985629,-0.923219856,157.4014371,0.995841719,0,874.666129,81.92087817,928.2817053,8,15,6% -8/9/2018 0:00,54.08507306,261.892261,553.3498127,775.1329069,98.66973809,737.2275063,637.3616402,99.86586606,95.69448144,4.171384624,137.1413252,0,137.1413252,2.975256656,134.1660685,0.943962601,4.570882239,1.351054433,-1.351054433,0.299109774,0.178313493,1.76903399,56.89821414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.98517547,2.155563319,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.281659104,54.69272766,93.26683458,56.84829098,637.3616402,0,0.822261105,34.68821626,-0.822261105,145.3117837,0.989192065,0,723.7399115,56.84829098,760.945981,8,16,5% -8/9/2018 1:00,65.8915628,271.5126344,349.2959247,659.1294607,80.06469057,524.7151771,444.4315922,80.28358497,77.65044475,2.633140223,87.10508677,0,87.10508677,2.414245828,84.69084095,1.15002472,4.738789432,2.078972413,-2.078972413,0.174628468,0.229217362,0.957983688,30.81204846,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.64056107,1.749112884,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.694055921,29.61771297,75.33461699,31.36682586,444.4315922,0,0.674270562,47.60246922,-0.674270562,132.3975308,0.975845791,0,509.0313157,31.36682586,529.5602759,8,17,4% -8/9/2018 2:00,77.63207639,280.3372832,137.633987,411.153749,49.56957625,250.4162104,201.3037966,49.11241376,48.07487063,1.037543131,34.86565924,0,34.86565924,1.494705616,33.37095363,1.354935338,4.892808608,3.935959409,-3.935959409,0,0.360155056,0.373676404,12.01871766,0.125059614,1,0.24880337,0,0.932069562,0.970831525,0.724496596,1,46.43955433,1.082909131,0.020196805,0.312029739,0.94432194,0.668818536,0.961238037,0.922476074,0.262796483,11.55284857,46.70235081,12.6357577,176.1288216,0,0.489607105,60.68523903,-0.489607105,119.314761,0.947877299,0,213.6508624,12.6357577,221.9207131,8,18,4% -8/9/2018 3:00,88.78077266,289.2164644,0.957631248,5.094278154,0.849235577,2.282304747,1.451457727,0.83084702,0.823627991,0.007219029,0.257796369,0,0.257796369,0.025607586,0.232188783,1.549516795,5.047779554,36.40333407,-36.40333407,0,0.886808548,0.006401896,0.205906998,0.850638886,1,0.027463105,0,0.958725757,0.99748772,0.724496596,1,0.794401788,0.018552609,0.103558323,0.312029739,0.748608914,0.473105509,0.961238037,0.922476074,0.004529082,0.197925638,0.79893087,0.216478247,0.216791342,0,0.284919214,73.44598032,-0.284919214,106.5540197,0.87451166,0,0.988517427,0.216478247,1.13019811,8,19,14% -8/9/2018 4:00,99.97986936,298.8311932,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744977906,5.21558823,-3.740975343,3.740975343,0.830101849,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.058887433,86.62404557,-0.058887433,93.37595443,0,0,0,0,0,8,20,0% -8/9/2018 5:00,109.7718538,309.8393498,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915880276,5.407716807,-1.39769656,1.39769656,0.769173879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.156165726,98.98441077,0.156165726,81.01558923,0,0.729827313,0,0,0,8,21,0% -8/9/2018 6:00,117.9681668,322.8724818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058932923,5.635187871,-0.554615861,0.554615861,0.624998588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.351737022,110.593596,0.351737022,69.40640403,0,0.907848344,0,0,0,8,22,0% -8/9/2018 7:00,123.8150543,338.2957404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160980362,5.904374515,-0.044400671,0.044400671,0.537746652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51450086,120.9640976,0.51450086,59.03590237,0,0.952818433,0,0,0,8,23,0% -8/10/2018 8:00,126.5063807,355.6870623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207952868,6.207910344,0.365316641,-0.365316641,0.467680865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.633366407,129.2989289,0.633366407,50.70107106,0,0.971056754,0,0,0,8,0,0% -8/10/2018 9:00,125.5604629,13.5435992,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191443488,0.236380399,0.772949839,-0.772949839,0.397971482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700233516,134.445742,0.700233516,45.554258,0,0.978595249,0,0,0,8,1,0% -8/10/2018 10:00,121.1563074,30.04899829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114576474,0.524453957,1.267978107,-1.267978107,0.313316663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710545,135.2792754,0.710545,44.72072465,0,0.97963148,0,0,0,8,2,0% -8/10/2018 11:00,113.9994552,44.23866473,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989665838,0.772110356,2.02286005,-2.02286005,0.184224248,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663597609,131.5748275,0.663597609,48.42517249,0,0.974653134,0,0,0,8,3,0% -8/10/2018 12:00,104.9019798,56.16873891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830884939,0.980329431,3.648793873,-3.648793873,0,#DIV/0!,0,0,0.08577849,1,0.267495035,0,0.929320419,0.968082382,0.724496596,1,0,0,0.014099755,0.312029739,0.960793892,0.685290488,0.961238037,0.922476074,0,0,0,0,0,0,-0.562590537,124.2351406,0.562590537,55.76485938,0,0.961125416,0,0,0,8,4,0% -8/10/2018 13:00,94.52459871,66.39198404,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649765472,1.158758718,12.61179268,-12.61179268,0,#DIV/0!,0,0,0.61927821,1,0.079125325,0,0.953511474,0.992273438,0.724496596,1,0,0,0.081850522,0.312029739,0.794243278,0.518739874,0.961238037,0.922476074,0,0,0,0,0,0,-0.414408083,114.4820462,0.414408083,65.51795383,0,0.929345983,0,0,0,8,5,0% -8/10/2018 14:00,83.21338537,75.56704384,48.45144875,195.7650003,25.31750915,24.91934033,0,24.91934033,24.55409284,0.365247487,56.94507174,44.43404072,12.51103101,0.763416313,11.7476147,1.452347556,1.318893721,-8.363314845,8.363314845,0.039635239,0.522533584,0.197766203,6.360840894,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.602328,0.55309252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.143280941,6.114282214,23.74560894,6.667374733,0,44.43404072,-0.226976429,103.1191266,0.226976429,76.88087342,0,0.829712809,23.74560894,43.53486748,52.23830901,8,6,120% -8/10/2018 15:00,71.64573443,84.35672247,244.8627445,563.380304,67.45905971,67.27079896,0,67.27079896,65.42492016,1.845878798,71.87260345,10.46865657,61.40394687,2.034139548,59.36980733,1.250453961,1.472302553,-2.920012191,2.920012191,0.970494816,0.275497442,1.806420221,58.10068383,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.88892182,1.473727178,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.308745301,55.84858727,64.19766712,57.32231444,0,10.46865657,-0.018581865,91.0647237,0.018581865,88.9352763,0,0,64.19766712,57.32231444,101.7139755,8,7,58% -8/10/2018 16:00,59.84294934,93.5059275,456.31302,728.1785,90.49657524,237.4891075,146.2814577,91.20764989,87.7677696,3.439880292,113.3671803,0,113.3671803,2.72880564,110.6383747,1.0444565,1.631986305,-1.578316285,1.578316285,0.800061671,0.198321265,2.888514583,92.9045582,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.36571855,1.977010397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092718983,89.30339514,86.45843753,91.28040554,146.2814577,0,0.200886812,78.41117782,-0.200886812,101.5888222,0.801103622,0,203.6450431,91.28040554,263.3862429,8,8,29% -8/10/2018 17:00,48.16441866,104.0731608,646.6057305,810.8510817,105.7718774,444.5213175,337.0644654,107.4568522,102.5824651,4.874387124,159.9664579,0,159.9664579,3.189412361,156.7770455,0.840627688,1.816419319,-0.925271651,0.925271651,0.688384461,0.163580173,3.603919966,115.9144545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.60616732,2.310718398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.611027747,111.4213827,101.2171951,113.7321011,337.0644654,0,0.415692194,65.43708518,-0.415692194,114.5629148,0.929718694,0,414.5923296,113.7321011,489.0277151,8,9,18% -8/10/2018 18:00,37.11798194,117.9471933,798.6341536,855.7023757,116.3017202,641.7001809,522.8849451,118.8152358,112.7947943,6.020441594,197.1450228,0,197.1450228,3.506925972,193.6380968,0.647830997,2.058566866,-0.506907826,0.506907826,0.616840033,0.145625778,4.049577803,130.2483425,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.4226466,2.540755929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.933905333,125.199661,111.3565519,127.7404169,522.8849451,0,0.611059359,52.33385902,-0.611059359,127.666141,0.968174889,0,617.6006255,127.7404169,701.2041735,8,10,14% -8/10/2018 19:00,27.79438866,138.8072371,900.7083433,879.286178,122.8683598,806.1889897,680.2356443,125.9533453,119.1634254,6.789919953,222.0921003,0,222.0921003,3.704934383,218.3871659,0.485103596,2.422643312,-0.190555672,0.190555672,0.562740629,0.136413036,4.225968143,135.9216621,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.5444171,2.684212348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.061699534,130.6530717,117.6061166,133.337284,680.2356443,0,0.773622583,39.31968242,-0.773622583,140.6803176,0.985369002,0,787.8892343,133.337284,875.1558199,8,11,11% -8/10/2018 20:00,22.67370428,171.0215699,945.3457153,888.3567724,125.6455048,921.6409743,792.6577298,128.9832445,121.8568292,7.126415317,232.998689,0,232.998689,3.788675551,229.2100135,0.395730793,2.984889487,0.079868638,-0.079868638,0.516495348,0.132909583,4.138720924,133.1154917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.1334193,2.74488254,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.99848922,127.9556739,120.1319085,130.7005564,792.6577298,0,0.892274089,26.83958631,-0.892274089,153.1604137,0.993963407,0,908.0046862,130.7005564,993.5455864,8,12,9% -8/10/2018 21:00,24.62648367,207.2682061,929.3193484,885.1776588,124.6542667,976.7050591,848.8039767,127.9010824,120.8954806,7.005601794,229.0830214,0,229.0830214,3.758786066,225.3242353,0.429813223,3.617512631,0.336708608,-0.336708608,0.472573126,0.134135017,3.806280338,122.4230597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.2093345,2.72322771,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.757637148,117.6777015,118.9669716,120.4009293,848.8039767,0,0.958908043,16.48217577,-0.958908043,163.5178242,0.997857357,0,965.9522642,120.4009293,1044.752264,8,13,8% -8/10/2018 22:00,32.37826128,233.2367231,853.7612481,868.970364,119.8886951,964.7162445,842.0066229,122.7096216,116.2736086,6.436012919,210.6193856,0,210.6193856,3.615086501,207.0042991,0.565107265,4.070748755,0.607141389,-0.607141389,0.426326397,0.140424147,3.262312124,104.927172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.7666153,2.619117863,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.363534029,100.8599889,114.1301493,103.4791067,842.0066229,0,0.968970471,14.31049517,-0.968970471,165.6895048,0.99839884,0,954.7885852,103.4791067,1022.513591,8,14,7% -8/10/2018 23:00,42.81338636,249.8148001,724.1243268,835.43413,111.2739909,883.4566909,770.0792664,113.3774246,107.9186695,5.458755047,178.927648,0,178.927648,3.355321384,175.5723266,0.747234556,4.360090782,0.926439385,-0.926439385,0.371723224,0.15366697,2.55616365,82.21500975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7355301,2.430918921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.851931863,79.02819457,105.5874619,81.45911349,770.0792664,0,0.921771375,22.81356579,-0.921771375,157.1864342,0.995756615,0,872.3989851,81.45911349,925.7123457,8,15,6% -8/10/2018 0:00,54.28600987,261.625128,550.0609577,773.7244391,98.40745322,734.4580811,634.8713838,99.58669727,95.44010542,4.146591846,136.3359954,0,136.3359954,2.967347799,133.3686476,0.94746961,4.56621989,1.362398242,-1.362398242,0.297169869,0.178902814,1.753627515,56.40268893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.74065957,2.14983338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270497165,54.21640998,93.01115674,56.36624336,634.8713838,0,0.820539396,34.86117416,-0.820539396,145.1388258,0.989064474,0,720.9398878,56.36624336,757.8304667,8,16,5% -8/10/2018 1:00,66.08943037,271.2723223,345.7315812,656.4097358,79.68199573,521.1449432,441.259383,79.88556026,77.27928956,2.606270696,86.22933076,0,86.22933076,2.402706166,83.82662459,1.153478161,4.734595194,2.101829613,-2.101829613,0.170719657,0.230473581,0.943070888,30.33240153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.28379258,1.740752438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.683251648,29.1566581,74.96704423,30.89741054,441.259383,0,0.672231624,47.76046283,-0.672231624,132.2395372,0.975620875,0,505.4689096,30.89741054,525.6906468,8,17,4% -8/10/2018 2:00,77.83406434,280.1170685,134.1312297,404.7098262,48.84120314,245.5696089,197.1900104,48.37959853,47.36846066,1.011137866,33.99441203,0,33.99441203,1.47274248,32.52166955,1.358460693,4.888965137,4.012340153,-4.012340153,0,0.364129989,0.36818562,11.84211517,0.134945768,1,0.244254873,0,0.932727323,0.971489287,0.724496596,1,45.77017887,1.066996913,0.021697745,0.312029739,0.94031168,0.664808276,0.961238037,0.922476074,0.258461259,11.38309153,46.02864013,12.45008845,170.580053,0,0.48723801,60.84079492,-0.48723801,119.1592051,0.947380748,0,207.6328984,12.45008845,215.7812323,8,18,4% -8/10/2018 3:00,88.97183554,289.0121036,0.654468107,3.600023773,0.589869669,1.594286289,1.01726971,0.577016579,0.572082922,0.004933657,0.176470117,0,0.176470117,0.017786747,0.15868337,1.552851472,5.044212787,43.29539518,-43.29539518,0,0.901296278,0.004446687,0.143020731,0.872996439,1,0.023093039,0,0.959137669,0.997899632,0.724496596,1,0.551522592,0.012886438,0.105474319,0.312029739,0.744762786,0.469259382,0.961238037,0.922476074,0.003156138,0.137476966,0.55467873,0.150363404,0.129196876,0,0.282573053,73.58616722,-0.282573053,106.4138328,0.873054607,0,0.667474658,0.150363404,0.765884498,8,19,15% -8/10/2018 4:00,100.2108099,298.6425583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749008579,5.212295928,-3.668347988,3.668347988,0.842521858,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055832434,86.79937284,-0.055832434,93.20062716,0,0,0,0,0,8,20,0% -8/10/2018 5:00,110.0235799,309.6726698,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920273724,5.404807691,-1.385535169,1.385535169,0.767094158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159497107,99.17770776,0.159497107,80.82229224,0,0.736514691,0,0,0,8,21,0% -8/10/2018 6:00,118.242211,322.7435368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063715897,5.632937356,-0.552271256,0.552271256,0.624597637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.35528073,110.8106507,0.35528073,69.18934933,0,0.90926622,0,0,0,8,22,0% -8/10/2018 7:00,124.106969,338.2304759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166075234,5.903235434,-0.045596312,0.045596312,0.537951118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518178311,121.2101353,0.518178311,58.78986466,0,0.953508119,0,0,0,8,23,0% -8/11/2018 8:00,126.8028521,355.7106049,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213127271,6.208321239,0.361919698,-0.361919698,0.468261776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637089878,129.5751597,0.637089878,50.42484029,0,0.971518138,0,0,0,8,0,0% -8/11/2018 9:00,125.8427086,13.65844205,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196369604,0.238384785,0.767267757,-0.767267757,0.398943175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.703912173,134.741727,0.703912173,45.25827297,0,0.978968411,0,0,0,8,1,0% -8/11/2018 10:00,121.409983,30.23071479,0,0,0,0,0,0,0,0,0,0,0,0,0,2.119003949,0.527625508,1.258719227,-1.258719227,0.314900024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714091137,135.568764,0.714091137,44.431236,0,0.979980926,0,0,0,8,2,0% -8/11/2018 11:00,114.2201879,44.45737988,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99351835,0.775927656,2.005739802,-2.005739802,0.187151982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666932677,131.8307665,0.666932677,48.16923354,0,0.975029914,0,0,0,8,3,0% -8/11/2018 12:00,105.0927886,56.40544584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.834215182,0.984460746,3.60413397,-3.60413397,0,#DIV/0!,0,0,0.07935035,1,0.270651036,0,0.928848962,0.967610925,0.724496596,1,0,0,0.013081234,0.312029739,0.963573946,0.688070542,0.961238037,0.922476074,0,0,0,0,0,0,-0.565650549,124.4474788,0.565650549,55.55252117,0,0.961606203,0,0,0,8,4,0% -8/11/2018 13:00,94.69161693,66.63956406,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652680489,1.163079805,12.16411513,-12.16411513,0,#DIV/0!,0,0,0.607848137,1,0.08202457,0,0.953200172,0.991962135,0.724496596,1,0,0,0.080680536,0.312029739,0.796810052,0.521306648,0.961238037,0.922476074,0,0,0,0,0,0,-0.417148025,114.6546609,0.417148025,65.34533914,0,0.930138471,0,0,0,8,5,0% -8/11/2018 14:00,83.36115972,75.82632381,46.4287932,189.1768277,24.55796134,24.16744805,0,24.16744805,23.8174482,0.349999855,55.38228527,43.38457368,11.99771159,0.740513144,11.25719844,1.454926705,1.32341901,-8.547348603,8.547348603,0.008163613,0.528938179,0.186474234,5.997652356,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.89423715,0.536499252,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135099948,5.765171576,23.0293371,6.301670828,0,43.38457368,-0.229333445,103.2578321,0.229333445,76.74216792,0,0.831976851,23.0293371,42.39663181,50.77708469,8,6,120% -8/11/2018 15:00,71.78612478,84.63367382,242.3090828,560.5331563,67.10605785,66.90919083,0,66.90919083,65.08256261,1.826628218,72.33780264,11.56366493,60.77413772,2.023495239,58.75064248,1.252904235,1.477136266,-2.940452937,2.940452937,0.966999243,0.276944046,1.783042322,57.34877026,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.55983471,1.466015412,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.291808093,55.12581934,63.85164281,56.59183475,0,11.56366493,-0.020629761,91.18208208,0.020629761,88.81791792,0,0,63.85164281,56.59183475,100.8898668,8,7,58% -8/11/2018 16:00,59.98265912,93.81064888,453.8926048,726.8451209,90.27954952,235.7321839,144.7532617,90.97892218,87.557288,3.42163418,112.7737785,0,112.7737785,2.722261514,110.051517,1.046894896,1.637304696,-1.583519698,1.583519698,0.800951507,0.198900684,2.876028565,92.50296492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.16339563,1.9722692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.083672905,88.9173684,86.24706854,90.8896376,144.7532617,0,0.199152828,78.51257687,-0.199152828,101.4874231,0.798936531,0,201.8957373,90.8896376,261.3811873,8,8,29% -8/11/2018 17:00,48.31458304,104.4191658,644.3331561,810.0674555,105.6056547,442.8316288,335.5531187,107.2785101,102.4212546,4.857255498,159.4104337,0,159.4104337,3.184400133,156.2260335,0.843248551,1.822458245,-0.926349516,0.926349516,0.688568787,0.163899147,3.592484925,115.5466643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.45120568,2.307087056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.602743099,111.0678487,101.0539488,113.3749358,335.5531187,0,0.414228613,65.52925203,-0.414228613,114.470748,0.929293708,0,412.8813506,113.3749358,487.0829786,8,9,18% -8/11/2018 18:00,37.29566045,118.3444622,796.4426672,855.1466265,116.1569566,640.1281912,521.4698742,118.658317,112.6543958,6.003921244,196.6093064,0,196.6093064,3.502560815,193.1067455,0.650932071,2.065500516,-0.50624864,0.50624864,0.616727306,0.145844719,4.038391153,129.8885414,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2876902,2.537593387,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.925800643,124.8538065,111.2134909,127.3913999,521.4698742,0,0.609801709,52.42483339,-0.609801709,127.5751666,0.968006133,0,615.9995275,127.3913999,699.3746509,8,10,14% -8/11/2018 19:00,28.02410338,139.2160698,898.5100142,878.8215944,122.7302378,804.6851413,678.882325,125.8028163,119.0294683,6.773348019,221.554925,0,221.554925,3.700769496,217.8541555,0.489112874,2.42977879,-0.188865827,0.188865827,0.562451648,0.136593066,4.214497156,135.5527158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4156524,2.681194902,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.053388843,130.2984264,117.4690413,132.9796213,678.882325,0,0.772491629,39.42183476,-0.772491629,140.5781652,0.98527438,0,786.3544028,132.9796213,873.3869054,8,11,11% -8/11/2018 20:00,22.96320445,171.2160056,943.0484121,887.9062106,125.503803,920.1141727,791.2856752,128.8284976,121.7194003,7.109097275,232.4374085,0,232.4374085,3.784402721,228.6530057,0.400783524,2.98828303,0.082416525,-0.082416525,0.516059634,0.133083097,4.126574445,132.7248192,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,117.0013174,2.741786888,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989689138,127.5801446,119.9910065,130.3219315,791.2856752,0,0.891181597,26.97789654,-0.891181597,153.0221035,0.993894712,0,906.4456549,130.3219315,991.7387527,8,12,9% -8/11/2018 21:00,24.91615766,207.0881608,926.8365285,884.6775445,124.5001303,975.0442513,847.3113741,127.7328772,120.745992,6.986885249,228.4763851,0,228.4763851,3.754138284,224.7222469,0.434868988,3.614370248,0.34022087,-0.34022087,0.471972494,0.134328036,3.793189727,122.0020206,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.0656403,2.719860407,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.748153045,117.2729828,118.8137933,119.9928432,847.3113741,0,0.957762949,16.7118685,-0.957762949,163.2881315,0.997795015,0,964.2568589,119.9928432,1042.789775,8,13,8% -8/11/2018 22:00,32.62802303,232.9290994,851.0200732,868.3413944,119.7126878,962.7993724,840.281115,122.5182574,116.1029086,6.415348784,209.9494487,0,209.9494487,3.60977923,206.3396695,0.56946643,4.065379708,0.612009536,-0.612009536,0.425493895,0.140669641,3.248151793,104.4717271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.6025319,2.615272764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353274917,100.4221979,113.9558068,103.0374706,840.281115,0,0.967685199,14.60544777,-0.967685199,165.3945522,0.998330304,0,952.8339079,103.0374706,1020.269872,8,14,7% -8/11/2018 23:00,43.03349546,249.5161931,721.0737993,834.5394322,111.0631318,881.1498212,767.9998937,113.1499275,107.7141686,5.435758882,178.1816541,0,178.1816541,3.348963204,174.8326909,0.751076184,4.354879107,0.933575369,-0.933575369,0.370502899,0.154024639,2.54100508,81.72745803,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.538956,2.426312441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.840949531,78.55954131,105.3799055,80.98585375,767.9998937,0,0.920267951,23.03471391,-0.920267951,156.9652861,0.995667998,0,870.0528223,80.98585375,923.0564438,8,15,6% -8/11/2018 0:00,54.49185727,261.3570145,546.6838712,772.2663291,98.13718458,731.596094,632.2969736,99.29912032,95.17798638,4.121133941,135.5090321,0,135.5090321,2.959198203,132.5498338,0.951062325,4.561540427,1.374083901,-1.374083901,0.295171503,0.17951359,1.737873106,55.89597298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.48870078,2.143929024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.259083149,53.72933534,92.74778393,55.87326436,632.2969736,0,0.818755072,35.03963487,-0.818755072,144.9603651,0.988931676,0,718.0462898,55.87326436,754.6142238,8,16,5% -8/11/2018 1:00,66.29195345,271.0306073,342.0802587,653.5901388,79.28711003,517.4616738,437.9866172,79.47505661,76.89631112,2.578745485,85.33211809,0,85.33211809,2.390798906,82.94131918,1.157012855,4.730376471,2.125508064,-2.125508064,0.166670403,0.231779262,0.927881422,29.84385609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91565914,1.732125669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.672246931,28.68704964,74.58790607,30.41917531,437.9866172,0,0.670124274,47.92334295,-0.670124274,132.0766571,0.975386974,0,501.7943472,30.41917531,521.7030891,8,17,4% -8/11/2018 2:00,78.04049679,279.8952813,130.5645248,398.0210993,48.08648039,240.5804205,192.9596744,47.62074613,46.63649559,0.984250539,33.10686547,0,33.10686547,1.449984804,31.65688066,1.362063619,4.88509422,4.092844136,-4.092844136,0,0.368296675,0.362496201,11.6591239,0.145126621,1,0.239634052,0,0.933391016,0.972152979,0.724496596,1,45.07545954,1.050509055,0.023229682,0.312029739,0.936236836,0.660733432,0.961238037,0.922476074,0.254007,11.20719337,45.32946654,12.25770242,164.9560888,0,0.484797602,61.00078732,-0.484797602,118.9992127,0.946864176,0,201.5204777,12.25770242,209.5428988,8,18,4% -8/11/2018 3:00,89.16464986,288.8061217,0.420473168,2.442933827,0.384857407,1.060927226,0.684504986,0.37642224,0.373252536,0.003169704,0.113553459,0,0.113553459,0.011604871,0.101948588,1.556216716,5.040617723,53.44558449,-53.44558449,0,0.915295995,0.002901218,0.093313134,0.895937174,1,0.018708437,0,0.959546343,0.998308306,0.724496596,1,0.359658687,0.008407689,0.107410058,0.312029739,0.740907026,0.465403622,0.961238037,0.922476074,0.002066356,0.089696134,0.361725043,0.098103823,0.071231523,0,0.280197923,73.72798225,-0.280197923,106.2720178,0.871554709,0,0.423807212,0.098103823,0.488014202,8,19,15% -8/11/2018 4:00,100.4461821,298.4523648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.753116598,5.208976427,-3.597390864,3.597390864,0.854656241,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.052705099,86.97882047,-0.052705099,93.02117953,0,0,0,0,0,8,20,0% -8/11/2018 5:00,110.2798049,309.5046979,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924745694,5.401876029,-1.373350955,1.373350955,0.765010535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.162897071,99.37509278,0.162897071,80.62490722,0,0.74305771,0,0,0,8,21,0% -8/11/2018 6:00,118.5208395,322.6139924,0,0,0,0,0,0,0,0,0,0,0,0,0,2.068578881,5.63067638,-0.549858383,0.549858383,0.624185011,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.358887057,111.0318621,0.358887057,68.96813792,0,0.910680403,0,0,0,8,22,0% -8/11/2018 7:00,124.4034354,338.1660196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171249549,5.902110461,-0.046733965,0.046733965,0.538145668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.521910613,121.4604991,0.521910613,58.53950086,0,0.954198154,0,0,0,8,23,0% -8/12/2018 8:00,127.103506,355.7370064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21837467,6.208782033,0.358574392,-0.358574392,0.468833857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640859166,129.8559153,0.640859166,50.14408475,0,0.971979738,0,0,0,8,0,0% -8/12/2018 9:00,126.1283487,13.7779759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201354965,0.240471044,0.761641741,-0.761641741,0.399905281,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707626965,135.0421652,0.707626965,44.95783475,0,0.979341302,0,0,0,8,1,0% -8/12/2018 10:00,121.6660944,30.41793177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123473935,0.530893061,1.249543533,-1.249543533,0.31646916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717663744,135.8619301,0.717663744,44.13806985,0,0.980329489,0,0,0,8,2,0% -8/12/2018 11:00,114.4425423,44.68154672,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997399168,0.779840105,1.988808845,-1.988808845,0.190047347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670285231,132.0890829,0.670285231,47.91091712,0,0.975404891,0,0,0,8,3,0% -8/12/2018 12:00,105.2846726,56.64723978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837564189,0.988680846,3.560308742,-3.560308742,0,#DIV/0!,0,0,0.072953862,1,0.273819459,0,0.928373547,0.96713551,0.724496596,1,0,0,0.012061797,0.312029739,0.966364632,0.690861228,0.961238037,0.922476074,0,0,0,0,0,0,-0.568720364,124.661041,0.568720364,55.338959,0,0.962083331,0,0,0,8,4,0% -8/12/2018 13:00,94.85941546,66.8918819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655609126,1.167483582,11.74508618,-11.74508618,0,#DIV/0!,0,0,0.596509702,1,0.084937143,0,0.952885456,0.991647419,0.724496596,1,0,0,0.079510012,0.312029739,0.799388959,0.523885554,0.961238037,0.922476074,0,0,0,0,0,0,-0.419891914,114.8277638,0.419891914,65.17223625,0,0.930921736,0,0,0,8,5,0% -8/12/2018 14:00,83.5095295,76.09012418,44.42525676,182.5448594,23.79075821,23.40827542,0,23.40827542,23.07337907,0.334896351,53.78246584,42.29366886,11.48879698,0.717379139,10.77141784,1.457516247,1.328023195,-8.740277042,8.740277042,0,0.535523257,0.179344785,5.768344768,1,0.024227545,0,0.113917501,0.961238037,1,0.452662799,0.728166203,22.1790096,0.517582902,0.115824807,0.004190835,0.724496596,0.448993192,0.999628395,0.960866432,0.129934686,5.54802595,22.30894429,6.065608852,0,41.2689971,-0.23168918,103.3965413,0.23168918,76.60345872,0,0.834193634,22.30894429,40.49194353,48.81011149,8,6,119% -8/12/2018 15:00,71.9273014,84.91507934,239.7417219,557.6408039,66.74845431,66.5430165,0,66.5430165,64.73574214,1.807274367,72.78632704,12.64545875,60.14086829,2.012712173,58.12815611,1.255368231,1.482047719,-2.961201621,2.961201621,0.963451009,0.278418182,1.759610962,56.59513718,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,62.22645768,1.458203118,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.274832152,54.40139855,63.50128984,55.85960167,0,12.64545875,-0.02267671,91.29939115,0.02267671,88.70060885,0,0,63.50128984,55.85960167,100.0602819,8,7,58% -8/12/2018 16:00,60.1234536,94.1198814,451.4505673,725.4906768,90.05983585,233.9725514,143.2251268,90.74742458,87.34419951,3.40322507,112.1750531,0,112.1750531,2.715636336,109.4594168,1.049352223,1.642701822,-1.588725355,1.588725355,0.801841726,0.199489916,2.863379318,92.09612166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95856687,1.967469281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.074508568,88.52629518,86.03307544,90.49376447,143.2251268,0,0.197418287,78.61397205,-0.197418287,101.3860279,0.796730657,0,200.1449247,90.49376447,259.3712837,8,8,30% -8/12/2018 17:00,48.46635821,104.769744,642.0310486,809.2696588,105.4369589,441.1321612,334.0346144,107.0975468,102.2576456,4.83990124,158.8471742,0,158.8471742,3.179313332,155.6678609,0.845897527,1.828576989,-0.927383061,0.927383061,0.688745533,0.164224081,3.580854229,115.1725811,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.29393849,2.303401686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.5943167,110.7082658,100.8882552,113.0116675,334.0346144,0,0.412760581,65.62163145,-0.412760581,114.3783685,0.928864401,0,411.1611174,113.0116675,485.1249935,8,9,18% -8/12/2018 18:00,37.47574742,118.7459544,794.2124848,854.5787177,116.0094565,638.538259,520.0398064,118.4984526,112.5113434,5.987109187,196.0641252,0,196.0641252,3.498113144,192.566012,0.654075182,2.072507877,-0.50553126,0.50553126,0.616604627,0.146068538,4.026969324,129.5211761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.1501828,2.534371065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.917525567,124.500681,111.0677084,127.0350521,520.0398064,0,0.608533533,52.51645677,-0.608533533,127.4835432,0.967835259,0,614.3805693,127.0350521,697.5224702,8,10,14% -8/12/2018 19:00,28.25714879,139.6275263,896.2629247,878.3448997,122.5889152,803.1533948,677.5045792,125.6488156,118.8924071,6.756408509,221.0058308,0,221.0058308,3.696508098,217.3093227,0.493180284,2.43696006,-0.187108523,0.187108523,0.562151132,0.136777849,4.202750661,135.1749081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.283904,2.678107534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.044878547,129.9352633,117.3287825,132.6133708,677.5045792,0,0.771342305,39.52541988,-0.771342305,140.4745801,0.985177936,0,784.7913457,132.6133708,871.5841446,8,11,11% -8/12/2018 20:00,23.25661897,171.4130872,940.6920212,887.4422865,125.3583233,918.5479977,789.8783566,128.6696411,121.5783073,7.091333806,231.8616875,0,231.8616875,3.78001597,228.0816715,0.405904574,2.991722753,0.085043572,-0.085043572,0.515610382,0.133261812,4.114115457,132.3240953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.8656934,2.738608702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980662643,127.1949536,119.8463561,129.9335623,789.8783566,0,0.890061662,27.11900366,-0.890061662,152.8809963,0.993824117,0,904.8465162,129.9335623,989.885434,8,12,9% -8/12/2018 21:00,25.21064081,206.9137226,924.2847553,884.1613783,124.3415499,973.3315835,845.7717412,127.5598423,120.5921934,6.967648905,227.8528964,0,227.8528964,3.749356501,224.1035399,0.440008689,3.611325727,0.343830966,-0.343830966,0.471355132,0.134527319,3.779756585,121.5699646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.9178033,2.716396022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738420779,116.8576741,118.656224,119.5740701,845.7717412,0,0.956580735,16.9458329,-0.956580735,163.0541671,0.997730497,0,962.5084833,119.5740701,1040.767321,8,13,8% -8/12/2018 22:00,32.88311129,232.6242059,848.2012863,867.6914068,119.5314522,960.8176042,838.4963668,122.3212374,115.9271379,6.394099578,209.2605363,0,209.2605363,3.604314307,205.656222,0.57391856,4.060058313,0.617008459,-0.617008459,0.424639029,0.140923451,3.23362968,104.004646,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4335744,2.611313446,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.342753696,99.97322178,113.7763281,102.5845352,838.4963668,0,0.966353199,14.90509744,-0.966353199,165.0949026,0.998259084,0,950.8129429,102.5845352,1017.95247,8,14,7% -8/12/2018 23:00,43.25877108,249.2178358,717.9389796,833.6142577,110.8459998,878.7645745,765.8488634,112.9157112,107.5035839,5.412127287,177.4150335,0,177.4150335,3.342415871,174.0726176,0.755007986,4.34967179,0.940906981,-0.940906981,0.369249119,0.154394737,2.525481173,81.2281558,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.3365339,2.42156892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.829702513,78.07959302,105.1662364,80.50116194,765.8488634,0,0.918708931,23.26193968,-0.918708931,156.7380603,0.995575798,0,867.6268301,80.50116194,920.3132306,8,15,6% -8/12/2018 0:00,54.70257059,261.0880572,543.218782,770.7575775,97.858862,728.6408287,629.6377598,99.00306889,94.90805625,4.095012635,134.6604886,0,134.6604886,2.95080575,131.7096829,0.954739966,4.556846235,1.386117836,-1.386117836,0.293113579,0.180146315,1.721774939,55.37820059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.22923367,2.137848721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247420082,53.23163282,92.47665376,55.36948154,629.6377598,0,0.816907648,35.22357516,-0.816907648,144.7764248,0.988793571,0,715.0584226,55.36948154,751.2966409,8,16,5% -8/12/2018 1:00,66.49908545,270.787595,338.3426994,650.6681719,78.87984726,513.6645855,434.6126865,79.05189902,76.50132883,2.550570185,84.41362311,0,84.41362311,2.378518431,82.03510468,1.160627991,4.726135106,2.150034785,-2.150034785,0.162476087,0.233135952,0.912423179,29.34666587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.53598714,1.723228506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.661047487,28.20913149,74.19703463,29.93236,434.6126865,0,0.66794828,48.09109108,-0.66794828,131.9089089,0.975143905,0,498.0069468,29.93236,517.5970778,8,17,4% -8/12/2018 2:00,78.25131806,279.6720038,126.9364277,391.0814063,47.30473343,235.4483147,188.6130931,46.83522159,45.87832118,0.95690041,32.20361877,0,32.20361877,1.426412249,30.77720652,1.365743144,4.881197293,4.177752495,-4.177752495,0,0.37266476,0.356603062,11.4695803,0.155607991,1,0.234942729,0,0.934060153,0.972822116,0.724496596,1,44.35472253,1.033430819,0.024792459,0.312029739,0.932098957,0.656595552,0.961238037,0.922476074,0.249431747,11.02499685,44.60415428,12.05842767,159.2633886,0,0.482286015,61.16518799,-0.482286015,118.834812,0.946327079,0,195.3194116,12.05842767,203.2114113,8,18,4% -8/12/2018 3:00,89.35889449,288.5985822,0.248251064,1.584097852,0.230526327,0.665506805,0.440060276,0.225446529,0.223575107,0.001871421,0.067142564,0,0.067142564,0.006951219,0.060191345,1.559606925,5.036995477,69.84316882,-69.84316882,0,0.928601564,0.001737805,0.055893777,0.919444045,1,0.014316814,0,0.959951035,0.998712998,0.724496596,1,0.21531927,0.005036135,0.10936252,0.312029739,0.737048511,0.461545106,0.961238037,0.922476074,0.001242279,0.053727224,0.216561549,0.058763359,0.035449476,0,0.27779867,73.87113372,-0.27779867,106.1288663,0.870013537,0,0.247403073,0.058763359,0.285862516,8,19,16% -8/12/2018 4:00,100.6859186,298.2606601,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75730079,5.205630548,-3.528097013,3.528097013,0.866506187,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.049506211,87.1623431,-0.049506211,92.8376569,0,0,0,0,0,8,20,0% -8/12/2018 5:00,110.5404545,309.3354663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929294887,5.398922381,-1.36115465,1.36115465,0.762924844,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.166364477,99.5765089,0.166364477,80.4234911,0,0.749455071,0,0,0,8,21,0% -8/12/2018 6:00,118.8039725,322.4838709,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073520484,5.628405331,-0.547380255,0.547380255,0.623761226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.36255454,111.2571622,0.36255454,68.74283779,0,0.912089715,0,0,0,8,22,0% -8/12/2018 7:00,124.7043697,338.1023986,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176501843,5.901000064,-0.047813943,0.047813943,0.538330355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.525696044,121.7151124,0.525696044,58.28488761,0,0.954888004,0,0,0,8,23,0% -8/13/2018 8:00,127.4082512,355.7663125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223693478,6.209293522,0.355281706,-0.355281706,0.46939694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644672359,130.1411145,0.644672359,49.85888547,0,0.972441223,0,0,0,8,0,0% -8/13/2018 9:00,126.4172824,13.90225054,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20639781,0.242640045,0.756073706,-0.756073706,0.400857471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711375878,135.3469711,0.711375878,44.65302895,0,0.97971367,0,0,0,8,1,0% -8/13/2018 10:00,121.924537,30.61067237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.127984609,0.534257019,1.240453901,-1.240453901,0.318023579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721260798,136.1586726,0.721260798,43.84132739,0,0.980676948,0,0,0,8,2,0% -8/13/2018 11:00,114.6664213,44.91115209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001306593,0.783847475,1.972070797,-1.972070797,0.192909721,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673653337,132.3496612,0.673653337,47.65033878,0,0.975777849,0,0,0,8,3,0% -8/13/2018 12:00,105.477549,56.89407953,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840930517,0.992989013,3.517310804,-3.517310804,0,#DIV/0!,0,0,0.066591145,1,0.276999131,0,0.927894331,0.966656295,0.724496596,1,0,0,0.011041822,0.312029739,0.969164928,0.693661524,0.961238037,0.922476074,0,0,0,0,0,0,-0.571798225,124.8757169,0.571798225,55.12428312,0,0.962556567,0,0,0,8,4,0% -8/13/2018 13:00,95.02792853,67.14887777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658550234,1.171969006,11.35216797,-11.35216797,0,#DIV/0!,0,0,0.585265541,1,0.087862109,0,0.952567404,0.991329367,0.724496596,1,0,0,0.078339341,0.312029739,0.801979139,0.526475734,0.961238037,0.922476074,0,0,0,0,0,0,-0.422638247,115.0012635,0.422638247,64.99873653,0,0.931695515,0,0,0,8,5,0% -8/13/2018 14:00,83.65844091,76.35837123,42.44292358,175.8761292,23.0164827,22.64240351,0,22.64240351,22.32245083,0.319952686,52.14727511,41.16246503,10.98481009,0.694031875,10.29077821,1.460115241,1.332704989,-8.942693368,8.942693368,0,0.542292584,0.173507969,5.580612707,1,0.056108964,0,0.111360506,0.961238037,1,0.457628408,0.733131812,21.45718881,0.498088356,0.115824807,0.009854682,0.724496596,0.448993192,0.999119429,0.960357466,0.125705933,5.371520316,21.58289474,5.869608672,0,38.85288176,-0.234042364,103.5351801,0.234042364,76.46481986,0,0.836363464,21.58289474,38.36473943,46.69184941,8,6,116% -8/13/2018 15:00,72.06923131,85.20085099,237.161347,554.703056,66.38625186,66.17228384,0,66.17228384,64.38446143,1.787822411,73.21760217,13.7132974,59.50430477,2.001790433,57.50251434,1.257845376,1.487035375,-2.982259893,2.982259893,0.959849832,0.279920201,1.736134097,55.84004048,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.88879331,1.450290354,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.257823243,53.67557089,63.14661655,55.12586124,0,13.7132974,-0.024721871,91.41660319,0.024721871,88.58339681,0,0,63.14661655,55.12586124,99.22539021,8,7,57% -8/13/2018 16:00,60.26531435,94.4335166,448.9871873,724.114983,89.83743105,232.2106295,141.6974734,90.51315611,87.12850104,3.384655071,111.5710718,0,111.5710718,2.708930011,108.8621417,1.05182816,1.648175789,-1.59393161,1.59393161,0.802732049,0.200089075,2.850567367,91.68404528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.75122929,1.962610571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.065226354,88.13019169,85.81645564,90.09280227,141.6974734,0,0.195683664,78.71533587,-0.195683664,101.2846641,0.79448557,0,198.3930535,90.09280227,257.3569907,8,8,30% -8/13/2018 17:00,48.61973711,105.1247519,639.699371,808.4574929,105.2657726,439.4229896,332.5090444,106.9139452,102.0916212,4.822324069,158.2766701,0,158.2766701,3.174151433,155.1025187,0.848574494,1.834773046,-0.928371342,0.928371342,0.688914539,0.164555067,3.569027255,114.792185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.1343495,2.299661908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.585748097,110.3426145,100.7200976,112.6422764,332.5090444,0,0.411288221,65.71421542,-0.411288221,114.2857846,0.928430751,0,409.4317195,112.6422764,483.1538366,8,9,18% -8/13/2018 18:00,37.65823814,119.1514647,791.9433271,853.9984391,115.8591908,636.9301275,518.5945154,118.3356121,112.3656087,5.970003318,195.5094105,0,195.5094105,3.493582078,192.0158284,0.657260246,2.079585367,-0.504755183,0.504755183,0.61647191,0.146297326,4.015311061,129.1462063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0100972,2.531088323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.909079195,124.1402458,110.9191764,126.6713341,518.5945154,0,0.607254641,52.60874075,-0.607254641,127.3912592,0.967662218,0,612.7434956,126.6713341,695.6473503,8,10,14% -8/13/2018 19:00,28.49349872,140.0413403,893.9666416,877.8558716,122.4443548,801.5932148,676.1019109,125.4913039,118.7522057,6.739098158,220.4447113,0,220.4447113,3.692149069,216.7525622,0.497305368,2.444182478,-0.185283461,0.185283461,0.561839028,0.136967476,4.190727262,134.7881943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1491371,2.674949432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.036167636,129.5635393,117.1853048,132.2384887,676.1019109,0,0.770174163,39.6304689,-0.770174163,140.3695311,0.985079619,0,783.1995177,132.2384887,869.7469637,8,11,11% -8/13/2018 20:00,23.55387758,171.6126055,938.2760552,886.9647579,125.2090244,916.9417163,788.4350848,128.5066315,121.4335103,7.073121233,231.2714066,0,231.2714066,3.775514057,227.4958926,0.411092715,2.995205004,0.087750038,-0.087750038,0.515147549,0.133445827,4.101342881,131.9132853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.7265091,2.735347082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.971408956,126.8000674,119.697918,129.5354145,788.4350848,0,0.888913655,27.26294688,-0.888913655,152.7370531,0.993751567,0,903.2065191,129.5354145,987.9848572,8,12,9% -8/13/2018 21:00,25.50983574,206.7448599,921.6635908,883.6288785,124.1784838,971.5662214,844.1842876,127.3819338,120.4340443,6.94788946,227.2124477,0,227.2124477,3.744439456,223.4680082,0.445230625,3.608378517,0.347539294,-0.347539294,0.47072097,0.134732982,3.765980587,121.1268812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.7657843,2.712833639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.728440116,116.4317655,118.4942245,119.1445991,844.1842876,0,0.955360681,17.18404279,-0.955360681,162.8159572,0.997663745,0,960.7062825,119.1445991,1038.68404,8,13,8% -8/13/2018 22:00,33.14344882,232.3221992,845.3046007,867.0200399,119.3449471,958.7701037,836.6515839,122.1185198,115.7462567,6.372263138,208.5525775,0,208.5525775,3.598690493,204.953887,0.578462307,4.054787301,0.622139019,-0.622139019,0.423761651,0.14118573,3.218746617,103.5259556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2597045,2.607239011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331970967,99.5130863,113.5916755,102.1203253,836.6515839,0,0.964973755,15.20933689,-0.964973755,164.7906631,0.998185119,0,948.7248366,102.1203253,1015.560547,8,14,7% -8/13/2018 23:00,43.48915711,248.919892,714.7198288,832.658066,110.6225508,876.3001952,763.6254625,112.6747327,107.2868727,5.387859968,176.6277753,0,176.6277753,3.33567806,173.2920972,0.75902898,4.34447169,0.948436415,-0.948436415,0.36796151,0.154777503,2.509594322,80.71718007,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.1282229,2.416687399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818192543,77.58842371,104.9464155,80.00511111,763.6254625,0,0.917093695,23.49516861,-0.917093695,156.5048314,0.995479944,0,865.1202478,80.00511111,917.4819929,8,15,6% -8/13/2018 0:00,54.91810059,260.8183864,539.6659975,769.1971708,97.57241763,725.5916311,626.8931516,98.69847948,94.63024923,4.068230245,133.7904375,0,133.7904375,2.942168395,130.8482691,0.958501674,4.552139592,1.398506686,-1.398506686,0.290994961,0.180801492,1.705337556,54.84951787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.962195,2.131590987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.235511254,52.72344288,92.19770625,54.85503387,626.8931516,0,0.814996695,35.41296495,-0.814996695,144.587035,0.988650058,0,711.9756569,54.85503387,747.8771795,8,16,5% -8/13/2018 1:00,66.71077545,270.5433863,334.51974,647.6412725,78.46001868,509.7529598,431.137049,78.61591073,76.09415963,2.521751102,83.47404294,0,83.47404294,2.36585905,81.10818389,1.164322678,4.72187286,2.175438198,-2.175438198,0.158131847,0.234545258,0.896704507,28.84109936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.14460062,1.714056828,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.649659363,27.72316173,73.79425998,29.43721855,431.137049,0,0.66570348,48.26368287,-0.66570348,131.7363171,0.974891485,0,494.1060978,29.43721855,513.3721686,8,17,4% -8/13/2018 2:00,78.46646813,279.4473145,123.2497027,383.8846253,46.49527594,230.1731661,184.150786,46.02238014,45.09327182,0.929108319,31.28532146,0,31.28532146,1.402004119,29.88331734,1.369498221,4.877275724,4.267373729,-4.267373729,0,0.377244528,0.35050103,11.27331795,0.166395883,1,0.230182775,0,0.934734241,0.973496204,0.724496596,1,43.60728494,1.015747211,0.026385905,0.312029739,0.927899634,0.652396229,0.961238037,0.922476074,0.24473344,10.83634202,43.85201838,11.85208923,153.5088534,0,0.479703468,61.33396318,-0.479703468,118.6660368,0.945768942,0,189.0359243,11.85208923,196.7928796,8,18,4% -8/13/2018 3:00,89.55430239,288.3895452,0.128758392,0.976472315,0.121162597,0.387379986,0.268900254,0.118479733,0.117509098,0.000970635,0.034872462,0,0.034872462,0.003653499,0.031218963,1.563017436,5.033347092,100.7587061,-100.7587061,0,0.94100738,0.000913375,0.029377274,0.94350474,1,0.009924375,0,0.960351155,0.999113118,0.724496596,1,0.113107327,0.002646948,0.111329189,0.312029739,0.733192956,0.457689551,0.961238037,0.922476074,0.000655464,0.028238554,0.113762791,0.030885501,0.01519159,0,0.275379291,74.01538131,-0.275379291,105.9846187,0.868432244,0,0.126955657,0.030885501,0.1471696,8,19,16% -8/13/2018 4:00,100.929949,298.0674873,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761559923,5.202259047,-3.460455713,3.460455713,0.878073531,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046236637,87.349891,-0.046236637,92.650109,0,0,0,0,0,8,20,0% -8/13/2018 5:00,110.8054514,309.1650027,0,0,0,0,0,0,0,0,0,0,0,0,0,1.933919956,5.395947228,-1.348956661,1.348956661,0.760838865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.169898112,99.78189511,0.169898112,80.21810489,0,0.75570597,0,0,0,8,21,0% -8/13/2018 6:00,119.0915282,322.3531894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078539279,5.62612451,-0.544840001,0.544840001,0.623326817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.366281658,111.4864794,0.366281658,68.51352058,0,0.913493028,0,0,0,8,22,0% -8/13/2018 7:00,125.0096867,338.0396343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181830629,5.899904621,-0.048836741,0.048836741,0.538505264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.529532829,121.9738954,0.529532829,58.02610463,0,0.955577148,0,0,0,8,23,0% -8/14/2018 8:00,127.7169965,355.7985644,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229082099,6.209856423,0.352042398,-0.352042398,0.469950894,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648527512,130.4306743,0.648527512,49.56932566,0,0.972902268,0,0,0,8,0,0% -8/14/2018 9:00,126.7094093,14.03131174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211496386,0.244892588,0.750565279,-0.750565279,0.401799467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715156883,135.6560578,0.715156883,44.34394219,0,0.980085271,0,0,0,8,1,0% -8/14/2018 10:00,122.1852076,30.80895533,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13253417,0.53771771,1.231452784,-1.231452784,0.319562861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724880288,136.4588901,0.724880288,43.54110992,0,0.981023093,0,0,0,8,2,0% -8/14/2018 11:00,114.8917299,45.14617844,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005238971,0.787949459,1.955528518,-1.955528518,0.195738618,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677035091,132.6123868,0.677035091,47.38761317,0,0.976148584,0,0,0,8,3,0% -8/14/2018 12:00,105.6713383,57.14591995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844312777,0.997384457,3.475131106,-3.475131106,0,#DIV/0!,0,0,0.060264072,1,0.280188966,0,0.927411462,0.966173425,0.724496596,1,0,0,0.010021656,0.312029739,0.971973885,0.696470481,0.961238037,0.922476074,0,0,0,0,0,0,-0.574882422,125.0913986,0.574882422,54.90860143,0,0.963025693,0,0,0,8,4,0% -8/14/2018 13:00,95.19709409,67.41048845,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66150273,1.176534974,10.98310114,-10.98310114,0,#DIV/0!,0,0,0.574117815,1,0.090798614,0,0.952246087,0.991008051,0.724496596,1,0,0,0.077168879,0.312029739,0.804579803,0.529076399,0.961238037,0.922476074,0,0,0,0,0,0,-0.425385585,115.1750721,0.425385585,64.8249279,0,0.932459581,0,0,0,8,5,0% -8/14/2018 14:00,83.80784369,76.63098827,40.48385257,169.1780518,22.23575687,21.87045114,0,21.87045114,21.56526676,0.305184381,50.4785717,39.99230282,10.48626887,0.670490111,9.815778762,1.462722811,1.337463054,-9.155251297,9.155251297,0,0.549250021,0.167622528,5.391316689,1,0.087419607,0,0.108795636,0.961238037,1,0.462662237,0.738165641,20.72935468,0.478784411,0.115824807,0.01558871,0.724496596,0.448993192,0.99859627,0.959834307,0.121441951,5.193039492,20.85079663,5.671823903,0,36.49619141,-0.236391792,103.6736784,0.236391792,76.32632165,0,0.838486734,20.85079663,36.27339624,44.591009,8,6,114% -8/14/2018 15:00,72.2118855,85.49089795,234.5685749,551.7196467,66.01944349,65.79699068,0,65.79699068,64.02871368,1.768277,73.63108618,14.76648965,58.86459654,1.990729807,56.87386673,1.260335161,1.49209765,-3.003630192,3.003630192,0.956195296,0.281450503,1.712618982,55.08371354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.54683504,1.442276969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.240786622,52.94856067,62.78762167,54.39083764,0,14.76648965,-0.02676448,91.53367491,0.02676448,88.46632509,0,0,62.78762167,54.39083764,98.38533708,8,7,57% -8/14/2018 16:00,60.40822668,94.75144319,446.5026815,722.7178152,89.61232581,230.4467667,140.1706573,90.27610937,86.91018356,3.365925817,110.9618868,0,110.9618868,2.702142258,108.2597446,1.054322451,1.653724655,-1.599137102,1.599137102,0.80362224,0.200698293,2.837593005,91.26674522,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.54137422,1.957692867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.055826473,87.729067,85.5972007,89.68675987,140.1706573,0,0.193949359,78.81664537,-0.193949359,101.1833546,0.792200747,0,196.6405001,89.68675987,255.3386907,8,8,30% -8/14/2018 17:00,48.77471589,105.4840426,637.3380375,807.630737,105.0920743,437.7041197,330.9764359,106.7276839,101.9231605,4.804523339,157.6988998,0,157.6988998,3.168913789,154.529986,0.851279384,1.841043852,-0.929313588,0.929313588,0.689075673,0.164892205,3.55700325,114.4054516,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.97241874,2.295867253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.577036746,109.9708717,100.5494555,112.266739,330.9764359,0,0.409811589,65.80700032,-0.409811589,114.1929997,0.927992713,0,407.6931763,112.266739,481.1695116,8,9,18% -8/14/2018 18:00,37.84313014,119.5607848,789.634885,853.4055679,115.7061279,635.3034826,517.1337201,118.1697625,112.2171612,5.952601307,194.9450866,0,194.9450866,3.488966666,191.45612,0.66048722,2.086729352,-0.503920025,0.503920025,0.616329089,0.146531175,4.003415097,128.7635912,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.8674038,2.527744473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900460609,123.7724616,110.7678644,126.3002061,517.1337201,0,0.605964783,52.70170104,-0.605964783,127.298299,0.967486954,0,611.0879921,126.3002061,693.7489509,8,10,14% -8/14/2018 19:00,28.73312782,140.4572453,891.6207252,877.3542808,122.2965186,800.0040276,674.6737866,125.330241,118.6088274,6.721413649,219.8714589,0,219.8714589,3.687691262,216.1837677,0.501487685,2.451441389,-0.183390434,0.183390434,0.561515301,0.137162041,4.178425656,134.3925323,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.0113164,2.671719766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.027255164,129.1832139,117.0385715,131.8549337,674.6737866,0,0.768986715,39.73701623,-0.768986715,140.2629838,0.984979371,0,781.5783334,131.8549337,867.8747504,8,11,11% -8/14/2018 20:00,23.85491012,171.8143481,935.8000446,886.473379,125.0558657,915.2945803,786.9551543,128.339426,121.2849699,7.05445602,230.6664509,0,230.6664509,3.770895758,226.8955551,0.416346724,2.998726077,0.090536103,-0.090536103,0.514671104,0.133635242,4.088255838,131.492361,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.5837264,2.73200114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.961927438,126.395459,119.5456539,129.1274601,786.9551543,0,0.887736928,27.40976644,-0.887736928,152.5902336,0.993677008,0,901.524897,129.1274601,986.0362371,8,12,9% -8/14/2018 21:00,25.81364291,206.5815227,918.9726399,883.0797637,124.010892,969.7473419,842.5482319,127.19911,120.2715061,6.927603935,226.554942,0,226.554942,3.739385946,222.815556,0.450533061,3.605527745,0.351346184,-0.351346184,0.470069954,0.134945141,3.751861702,120.6727693,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.6095464,2.709172388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718211031,115.9952558,118.3277574,118.7044282,842.5482319,0,0.954102072,17.42647032,-0.954102072,162.5735297,0.997594706,0,958.8494127,118.7044282,1036.539087,8,13,8% -8/14/2018 22:00,33.40895308,232.0232185,842.3297963,866.3269347,119.153135,956.6560734,834.7460073,121.9100661,115.5602283,6.349837806,207.8255179,0,207.8255179,3.592906647,204.2326113,0.583096231,4.049569104,0.627402025,-0.627402025,0.422861624,0.141456631,3.203503806,103.0356944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.080887,2.603048635,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.320927602,99.04182858,113.4018146,101.6448772,834.7460073,0,0.963546178,15.5180582,-0.963546178,164.4819418,0.998108351,0,946.5687755,101.6448772,1013.093315,8,14,7% -8/14/2018 23:00,43.7245913,248.6225155,711.4163951,831.6703196,110.3927452,873.7559921,761.3290382,112.4269539,107.0639966,5.36295729,175.8198901,0,175.8198901,3.328748573,172.4911415,0.763138082,4.33928149,0.956165844,-0.956165844,0.3666397,0.155173181,2.493347351,80.19462164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.9139859,2.41166701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806421668,77.08612067,104.7204076,79.49778768,761.3290382,0,0.915421676,23.73431817,-0.915421676,156.2656818,0.995380363,0,862.5323817,79.49778768,914.5620938,8,15,6% -8/14/2018 0:00,55.13839204,260.5481264,536.0259288,767.5840921,97.27778789,722.4479333,624.0626398,98.38529354,94.34450367,4.04078987,132.8989766,0,132.8989766,2.933284222,129.9656923,0.962346485,4.547422665,1.411257221,-1.411257221,0.288814491,0.181479631,1.688565978,54.31008626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.68752549,2.125154433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223360303,52.2049207,91.9108858,54.33007513,624.0626398,0,0.813021852,35.60776598,-0.813021852,144.392234,0.988501038,0,708.797453,54.33007513,744.3554005,8,16,5% -8/14/2018 1:00,66.92696681,270.2980774,330.6123386,644.5068332,78.02743573,505.7261739,427.5592578,78.16691611,75.67462065,2.49229546,82.51360427,0,82.51360427,2.352815078,80.16078919,1.168095929,4.717591413,2.201748069,-2.201748069,0.153632595,0.236008844,0.880734316,28.32744311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.7413238,1.704606515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.638089014,27.2294158,73.37941281,28.93402232,427.5592578,0,0.663389798,48.44108666,-0.663389798,131.5589133,0.974629531,0,490.0912918,28.93402232,509.0280307,8,17,4% -8/14/2018 2:00,78.68588121,279.2212876,119.5073582,376.4247707,45.65741776,224.755118,179.5735429,45.18157511,44.28067816,0.900896946,30.3526822,0,30.3526822,1.376739604,28.97594259,1.373327702,4.87333081,4.36204646,-4.36204646,0,0.382046917,0.344184901,11.07016954,0.177496426,1,0.225356138,0,0.935412781,0.974174744,0.724496596,1,42.83246239,0.997443156,0.028009829,0.312029739,0.923640529,0.648137125,0.961238037,0.922476074,0.239909953,10.64106804,43.07237235,11.63851119,147.6998808,0,0.477050282,61.50707219,-0.477050282,118.4929278,0.945189245,0,182.6767112,11.63851119,190.293884,8,18,4% -8/14/2018 3:00,89.75073779,288.1790665,0.05192899,0.569078318,0.049453253,0.203678704,0.155325187,0.048353518,0.047962055,0.000391463,0.014081983,0,0.014081983,0.001491198,0.012590785,1.566445881,5.029673546,180.689008,-180.689008,0,0.952324571,0.0003728,0.011990514,0.968121888,1,0.005534314,0,0.960746405,0.999508368,0.724496596,1,0.046138637,0.001080368,0.113308836,0.312029739,0.729343432,0.453840028,0.961238037,0.922476074,0.000268625,0.011525738,0.046407261,0.012606106,0.004951474,0,0.272941671,74.16061134,-0.272941671,105.8393887,0.866810677,0,0.050699252,0.012606106,0.058949696,8,19,16% -8/14/2018 4:00,101.1781979,297.8728854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765892684,5.198862602,-3.39445338,3.39445338,0.889360595,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.042897346,87.54140868,-0.042897346,92.45859132,0,0,0,0,0,8,20,0% -8/14/2018 5:00,111.0747144,308.9933296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938619482,5.392950968,-1.336767178,1.336767178,0.75875434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.173496663,99.99118502,0.173496663,80.00881498,0,0.761810018,0,0,0,8,21,0% -8/14/2018 6:00,119.3834216,322.2219596,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083633778,5.623834117,-0.542240893,0.542240893,0.622882344,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.3700668,111.7197371,0.3700668,68.28026294,0,0.914889258,0,0,0,8,22,0% -8/14/2018 7:00,125.3192988,337.9777426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18723438,5.898824406,-0.04980306,0.04980306,0.538670514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.533419127,122.2367639,0.533419127,57.76323608,0,0.956265079,0,0,0,8,23,0% -8/15/2018 8:00,128.0296491,355.8337974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234538917,6.210471354,0.348856991,-0.348856991,0.470495631,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652422633,130.724508,0.652422633,49.27549196,0,0.973362561,0,0,0,8,0,0% -8/15/2018 9:00,127.004629,14.16519957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216648941,0.247229372,0.745117796,-0.745117796,0.402731042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718967936,135.9693369,0.718967936,44.03066311,0,0.980455869,0,0,0,8,1,0% -8/15/2018 10:00,122.4480045,31.01279339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137120842,0.541275355,1.222542213,-1.222542213,0.321086658,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728520204,136.7624806,0.728520204,43.23751945,0,0.981367724,0,0,0,8,2,0% -8/15/2018 11:00,115.1183759,45.38660234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.009194689,0.792145647,1.939184126,-1.939184126,0.198533673,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680428618,132.8771459,0.680428618,47.12285414,0,0.976516906,0,0,0,8,3,0% -8/15/2018 12:00,105.8659642,57.40271063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847709642,1.0018663,3.433759063,-3.433759063,0,#DIV/0!,0,0,0.053974263,1,0.283387965,0,0.926925075,0.965687039,0.724496596,1,0,0,0.009001616,0.312029739,0.974790636,0.699287232,0.961238037,0.922476074,0,0,0,0,0,0,-0.577971298,125.3079807,0.577971298,54.69201933,0,0.963490514,0,0,0,8,4,0% -8/15/2018 13:00,95.36685411,67.67664616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664465602,1.181180302,10.63586759,-10.63586759,0,#DIV/0!,0,0,0.563068217,1,0.093745888,0,0.95192157,0.990683533,0.724496596,1,0,0,0.07599894,0.312029739,0.807190239,0.531686835,0.961238037,0.922476074,0,0,0,0,0,0,-0.428132554,115.3491056,0.428132554,64.65089441,0,0.933213739,0,0,0,8,5,0% -8/15/2018 14:00,83.95769144,76.90789452,38.5500747,162.4584281,21.44924352,21.09307643,0,21.09307643,20.80246969,0.290606747,48.77841532,38.78472957,9.993685759,0.646773831,9.346911928,1.465338148,1.34229598,-9.378673399,9.378673399,0,0.556399532,0.161693458,5.200617422,1,0.118166796,0,0.106223554,0.961238037,1,0.467763419,0.743266823,19.99612512,0.45966958,0.115824807,0.021392337,0.724496596,0.448993192,0.998058697,0.959296734,0.11714636,5.012756097,20.11327148,5.472425677,0,34.20166236,-0.238736334,103.8119698,0.238736334,76.18803022,0,0.840563928,20.11327148,34.22110934,42.51030312,8,6,111% -8/15/2018 15:00,72.35523923,85.78512549,231.963948,548.6902239,65.64801112,65.4171236,0,65.4171236,63.66848137,1.748642222,74.02627127,15.80439674,58.22187453,1.979529751,56.24234478,1.262837156,1.497232889,-3.025315885,3.025315885,0.952486824,0.283009544,1.689072113,54.3263653,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,61.20056605,1.434162566,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.223726996,52.22056873,62.42429304,53.65473129,0,15.80439674,-0.028803861,91.65056794,0.028803861,88.34943206,0,0,62.42429304,53.65473129,97.54024158,8,7,56% -8/15/2018 16:00,60.55217999,95.07354584,443.9971981,721.2989044,89.38450409,228.6812333,138.6449633,90.03626992,86.68923149,3.347038425,110.3475337,0,110.3475337,2.695272592,107.6522611,1.05683491,1.659346406,-1.604340807,1.604340807,0.804512126,0.201317721,2.824456276,90.84422284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.3289867,1.952715818,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308957,87.32292242,85.37529565,89.27563824,138.6449633,0,0.192215685,78.91788261,-0.192215685,101.0821174,0.789875547,0,194.8875619,89.27563824,253.3166817,8,8,30% -8/15/2018 17:00,48.93129419,105.8474651,634.9469092,806.7891461,104.9158383,435.9754815,329.4367448,106.5387367,101.7522387,4.786498004,157.1138289,0,157.1138289,3.163599624,153.9502293,0.854012191,1.84738677,-0.930209231,0.930209231,0.689228837,0.165235608,3.544781336,114.0123529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.80812217,2.292017158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.568182011,109.5930102,100.3763042,111.8850274,329.4367448,0,0.40833066,65.89998745,-0.40833066,114.1000125,0.927550219,0,405.9454289,111.8850274,479.1719416,8,9,18% -8/15/2018 18:00,38.03042322,119.9737021,787.2868191,852.7998678,115.5502337,633.6579474,515.657079,118.0008684,112.0659678,5.934900594,194.3710701,0,194.3710701,3.484265881,190.8868042,0.663756101,2.093936118,-0.503025548,0.503025548,0.616176125,0.146770187,3.991280156,128.3732897,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.7220709,2.52433877,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.891668886,123.397289,110.6137398,125.9216278,515.657079,0,0.604663648,52.79535789,-0.604663648,127.2046421,0.9673094,0,609.4136793,125.9216278,691.8268663,8,10,14% -8/15/2018 19:00,28.97601134,140.8749721,889.2247312,876.8398915,122.1453679,798.385217,673.219631,125.165586,118.4622343,6.703351634,219.2859647,0,219.2859647,3.683133509,215.6028312,0.505726802,2.458732097,-0.18142935,0.18142935,0.561179936,0.13736164,4.16584466,133.9878843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.8704056,2.66841769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.018140275,128.7942508,116.8885459,131.4626685,673.219631,0,0.767779429,39.84509988,-0.767779429,140.1549001,0.98487713,0,779.9271639,131.4626685,865.9668512,8,11,11% -8/15/2018 20:00,24.15964592,172.0180979,933.263544,885.9679022,124.8988076,913.6058262,785.4378437,128.1679826,121.1326478,7.035334807,230.0467111,0,230.0467111,3.766159878,226.2805512,0.421665367,3.002282182,0.093401852,-0.093401852,0.514181032,0.133830158,4.074853689,131.0613019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.4373085,2.728570011,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.952217626,125.9811085,119.3895262,128.7096785,785.4378437,0,0.886530812,27.55950379,-0.886530812,152.4404962,0.993600381,0,899.8008669,128.7096785,984.0387773,8,12,9% -8/15/2018 21:00,26.12195987,206.4236423,916.2115597,882.5137538,123.8387373,967.8741374,840.8628052,127.0113322,120.1045424,6.906789747,225.880295,0,225.880295,3.734194845,222.1461002,0.455914207,3.602772213,0.355251877,-0.355251877,0.469402041,0.135163911,3.737400243,120.207639,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.4490546,2.705411454,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.707733753,115.548155,118.1567883,118.2535664,840.8628052,0,0.952804193,17.67308578,-0.952804193,162.3269142,0.997523321,0,956.9370461,118.2535664,1034.33164,8,13,8% -8/15/2018 22:00,33.67953552,231.7273855,839.2767317,865.6117373,118.9559819,954.4747626,832.7789199,121.6958426,115.3690201,6.326822515,207.0793222,0,207.0793222,3.586961754,203.4923604,0.587818785,4.044405843,0.632798202,-0.632798202,0.421938824,0.141736304,3.187902883,102.533915,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.8970904,2.598741581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.309624786,98.55949921,113.2067152,101.1582408,832.7789199,0,0.96206981,15.83115217,-0.96206981,164.1688478,0.998028719,0,944.3439943,101.1582408,1010.55004,8,14,7% -8/15/2018 23:00,43.96500452,248.3258496,708.0288284,830.6504885,110.1565485,871.1313516,758.9590091,112.1723425,106.8349221,5.337420381,174.9914131,0,174.9914131,3.321626372,171.6697867,0.767334085,4.334103693,0.964097385,-0.964097385,0.365283327,0.15558201,2.476743583,79.66058739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6937908,2.406506999,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794392295,76.57278664,104.4881831,78.97929364,758.9590091,0,0.913692365,23.97929724,-0.913692365,156.0207028,0.995276986,0,859.8626182,78.97929364,911.5529863,8,15,6% -8/15/2018 0:00,55.36338284,260.2773948,532.2991075,765.9173288,96.97491486,719.2092697,621.1458108,98.0634589,94.05076338,4.012695517,131.9862328,0,131.9862328,2.924151483,129.0620814,0.966273316,4.542697507,1.424376306,-1.424376306,0.286570996,0.182181246,1.671465769,53.76008476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.40517116,2.118537795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.21097126,51.67623834,91.61614242,53.79477613,621.1458108,0,0.81098284,35.80793099,-0.81098284,144.192069,0.988346414,0,705.5233773,53.79477613,740.7309824,8,16,5% -8/15/2018 1:00,67.14759628,270.0517598,326.6215929,641.2622153,77.58191184,501.5837209,423.8789784,77.70474249,75.24253096,2.462211533,81.53256758,0,81.53256758,2.339380889,79.19318669,1.17194664,4.71329236,2.228995474,-2.228995474,0.148973014,0.237528423,0.86452214,27.80600378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.32598274,1.69487349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626343347,26.72818849,72.95232609,28.42306198,423.8789784,0,0.661007258,48.6232627,-0.661007258,131.3767373,0.974357865,0,485.9621427,28.42306198,504.5644683,8,17,4% -8/15/2018 2:00,78.90948487,278.993993,115.7126728,368.6960832,44.79047175,219.1946345,174.8824697,44.31216477,43.43987377,0.872291005,29.40647518,0,29.40647518,1.350597982,28.0558772,1.377230322,4.869363771,4.462142794,-4.462142794,0,0.387083546,0.337649496,10.85996844,0.188915834,1,0.220464857,0,0.936095266,0.974857229,0.724496596,1,42.02957571,0.978503641,0.029664014,0.312029739,0.919323391,0.643819987,0.961238037,0.922476074,0.234959122,10.43901474,42.26453483,11.41751839,141.8444021,0,0.474326899,61.68446649,-0.474326899,118.3155335,0.944587467,0,176.2489793,11.41751839,183.7215168,8,18,4% -8/15/2018 3:00,89.94832826,287.9671979,0.007477463,0.311757122,0.007196307,0.091360808,0.084325127,0.007035681,0.006979312,5.64E-05,0.002029993,0,0.002029993,0.000216995,0.001812997,1.569894485,5.025975741,874.1696969,-874.1696969,0,0.9623996,5.42E-05,0.001744828,0.993331629,1,0.001143942,0,0.961137024,0.999898988,0.724496596,1,0.006709879,0.000157212,0.115302878,0.312029739,0.725497858,0.449994454,0.961238037,0.922476074,3.93E-05,0.001677195,0.006749137,0.001834407,0.000562311,0,0.270483403,74.30696585,-0.270483403,105.6930341,0.865145774,0,0.007235618,0.001834407,0.008436201,8,19,17% -8/15/2018 4:00,101.4305847,297.6768886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770297665,5.195441813,-3.330074141,3.330074141,0.900370093,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.039489426,87.73683407,-0.039489426,92.26316593,0,0,0,0,0,8,20,0% -8/15/2018 5:00,111.3481571,308.8204646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943391958,5.389933904,-1.324596213,1.324596213,0.756672983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177158706,100.204306,0.177158706,79.79569397,0,0.767767187,0,0,0,8,21,0% -8/15/2018 6:00,119.6795632,322.0901866,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088802425,5.621534244,-0.539586367,0.539586367,0.622428393,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37390826,111.9568527,0.37390826,68.04314729,0,0.916277359,0,0,0,8,22,0% -8/15/2018 7:00,125.6331156,337.916732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192711517,5.897759571,-0.050713809,0.050713809,0.538826262,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.537353023,122.5036288,0.537353023,57.49637121,0,0.9569513,0,0,0,8,23,0% -8/16/2018 8:00,128.346115,355.8720401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240062289,6.211138815,0.345725772,-0.345725772,0.471031101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656355682,131.022525,0.656355682,48.97747498,0,0.973821791,0,0,0,8,0,0% -8/16/2018 9:00,127.3028408,14.30394752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221853719,0.24965098,0.7397323,-0.7397323,0.403652016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.722806961,136.2867173,0.722806961,43.7132827,0,0.980825237,0,0,0,8,1,0% -8/16/2018 10:00,122.7128273,31.22219242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141742871,0.544930057,1.213723807,-1.213723807,0.322594694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.732178541,137.0693411,0.732178541,42.93065886,0,0.981710645,0,0,0,8,2,0% -8/16/2018 11:00,115.3462697,45.63239376,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013172186,0.796435517,1.923039024,-1.923039024,0.201294648,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683832072,133.1438253,0.683832072,46.85617471,0,0.976882634,0,0,0,8,3,0% -8/16/2018 12:00,106.0613547,57.66439533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851119848,1.00643356,3.393182676,-3.393182676,0,#DIV/0!,0,0,0.047723093,1,0.286595226,0,0.926435297,0.96519726,0.724496596,1,0,0,0.00798198,0.312029739,0.977614395,0.702110991,0.961238037,0.922476074,0,0,0,0,0,0,-0.581063247,125.5253606,0.581063247,54.47463942,0,0.963950847,0,0,0,8,4,0% -8/16/2018 13:00,95.53715488,67.94727804,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667437911,1.18590372,10.30865917,-10.30865917,0,#DIV/0!,0,0,0.552117982,1,0.096703254,0,0.951593909,0.990355872,0.724496596,1,0,0,0.074829797,0.312029739,0.809809814,0.53430641,0.961238037,0.922476074,0,0,0,0,0,0,-0.430877857,115.523284,0.430877857,64.47671595,0,0.933957834,0,0,0,8,5,0% -8/16/2018 14:00,84.10794185,77.1890046,36.67492058,156.0352538,20.65717486,20.31075586,0,20.31075586,20.03428482,0.276471043,47.13133831,37.61618917,9.515149141,0.622890039,8.892259102,1.467960512,1.347202277,-9.613760686,9.613760686,0,0.563250705,0.15572251,5.008571205,1,0.148358934,0,0.103644839,0.961238037,1,0.472931201,0.748434605,19.25771661,0.440732832,0.115824807,0.027265125,0.724496596,0.448993192,0.997506481,0.958744517,0.112820428,4.83074289,19.37053704,5.271475722,0,32.03549144,-0.241074938,103.9499928,0.241074938,76.05000724,0,0.842595612,19.37053704,32.26444024,40.48696789,8,6,109% -8/16/2018 15:00,72.49927235,86.08343453,229.419833,546.0122303,65.22417537,64.98688944,0,64.98688944,63.25742583,1.729463608,74.43094852,16.83870434,57.59224418,1.966749539,55.62549464,1.265351008,1.502439364,-3.047321389,3.047321389,0.948723661,0.284300509,1.665994975,53.58412523,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.80544382,1.424903346,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.207007688,51.50709934,62.01245151,52.93200269,0,16.83870434,-0.030839427,91.76724922,0.030839427,88.23275078,0,0,62.01245151,52.93200269,96.65538863,8,7,56% -8/16/2018 16:00,60.69716796,95.3997047,441.5564015,720.1825367,89.08066291,226.9056234,137.1824324,89.72319092,86.39455225,3.328638669,109.7465724,0,109.7465724,2.686110659,107.0604617,1.059365427,1.665038952,-1.609542079,1.609542079,0.805401596,0.201742433,2.811569108,90.42972722,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.0457298,1.946078029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.036972248,86.92449346,85.08270205,88.87057149,137.1824324,0,0.190482864,79.01903506,-0.190482864,100.9809649,0.787509197,0,193.1151293,88.87057149,251.2791409,8,8,30% -8/16/2018 17:00,49.08947526,106.214863,632.6175837,806.2044682,104.6506867,434.2645415,328.0005206,106.2640209,101.4950824,4.768938565,156.5410617,0,156.5410617,3.155604324,153.3854574,0.856772971,1.853799073,-0.931057923,0.931057923,0.689373972,0.165424878,3.532635329,113.6216955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.56093374,2.286224591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.55938227,109.2174956,100.120316,111.5037201,328.0005206,0,0.406845327,65.99318337,-0.406845327,114.0068166,0.927103172,0,404.2106392,111.5037201,477.187594,8,9,18% -8/16/2018 18:00,38.22011951,120.3899987,784.9937575,852.4209765,115.2980062,632.0478836,514.3089232,117.7389604,111.8213459,5.917614527,193.8074851,0,193.8074851,3.47666029,190.3308249,0.667066926,2.101201863,-0.502071667,0.502071667,0.616013001,0.146877609,3.979075573,127.9807484,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.486931,2.518828545,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882826707,123.0199634,110.3697577,125.5387919,514.3089232,0,0.603350853,52.88973635,-0.603350853,127.1102637,0.967129478,0,607.7730782,125.5387919,689.9357067,8,10,14% -8/16/2018 19:00,29.22212508,141.2942489,886.8748541,876.534575,121.8936592,796.8128413,671.9090884,124.9037529,118.2181156,6.685637268,218.7086198,0,218.7086198,3.675543564,215.0330763,0.510022297,2.466049857,-0.17940024,0.17940024,0.560832938,0.137441781,4.153070006,133.5770075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.6357494,2.6629188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,3.008885082,128.3993004,116.6446345,131.0622192,671.9090884,0,0.766551723,39.95476165,-0.766551723,140.0452384,0.984772829,0,778.3224485,131.0622192,864.1000497,8,11,11% -8/16/2018 20:00,24.46801374,172.2236324,930.7633933,885.6632889,124.639188,911.9702842,784.07294,127.8973443,120.8808567,7.016487615,229.4326921,0,229.4326921,3.758331389,225.6743607,0.427047401,3.005869436,0.096347263,-0.096347263,0.513677337,0.133910711,4.061151107,130.6205797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,116.1952773,2.722898298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.942290153,125.5574696,119.1375675,128.2803679,784.07294,0,0.885294615,27.71220151,-0.885294615,152.2877985,0.993521626,0,898.13099,128.2803679,982.0879252,8,12,9% -8/16/2018 21:00,26.43468124,206.2711321,913.4770858,882.1484514,123.5639084,966.0587351,839.3345583,126.7241768,119.8380007,6.886176127,225.2090031,0,225.2090031,3.725907742,221.4830953,0.461372224,3.600110406,0.359256517,-0.359256517,0.468717207,0.135267661,3.722546908,119.7299047,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1928445,2.699407475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696972563,115.0889386,117.8898171,117.7883461,839.3345583,0,0.95146634,17.92385763,-0.95146634,162.0761424,0.997449534,0,955.0836807,117.7883461,1032.173797,8,13,8% -8/16/2018 22:00,33.95510152,231.434804,836.2412154,865.104723,118.6580287,952.3551657,830.9711749,121.3839908,115.0800513,6.303939511,206.3343417,0,206.3343417,3.577977366,202.7563643,0.592628319,4.039299334,0.638328188,-0.638328188,0.42099314,0.141894499,3.171833651,102.0170733,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6193226,2.592232422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.297982683,98.0626913,112.9173053,100.6549237,830.9711749,0,0.960544028,16.14850821,-0.960544028,163.8514918,0.997946165,0,942.1818027,100.6549237,1008.058437,8,14,7% -8/16/2018 23:00,44.21032056,248.0300268,704.6508293,829.8539523,109.8239499,868.5725347,756.7482265,111.8243082,106.5123526,5.311955597,174.162349,0,174.162349,3.311597297,170.8507517,0.771615657,4.328940612,0.97223309,-0.97223309,0.363892039,0.155855844,2.459611706,79.10956731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3837247,2.399240968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.781980308,76.04312518,104.165705,78.44236615,756.7482265,0,0.911905311,24.23000626,-0.911905311,155.7699937,0.995169746,0,857.2586453,78.44236615,908.5976051,8,15,6% -8/16/2018 0:00,55.59300388,260.0063022,528.5750147,764.4946081,96.58376669,716.0400231,618.3839916,97.6560315,93.67140977,3.984621732,131.0714889,0,131.0714889,2.912356922,128.1591319,0.970280959,4.537966049,1.437870881,-1.437870881,0.284263287,0.182724805,1.653801864,53.19195286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.04052203,2.109992676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.198173821,51.13012835,91.23869585,53.24012102,618.3839916,0,0.808879468,36.01340359,-0.808879468,143.9865964,0.988186093,0,702.3171566,53.24012102,737.161751,8,16,5% -8/16/2018 1:00,67.37259387,269.8045197,322.628107,638.2698255,77.06216874,497.5069832,420.3364162,77.17056698,74.73846003,2.432106949,80.54862852,0,80.54862852,2.323708717,78.2249198,1.175873589,4.708977205,2.257212857,-2.257212857,0.144147557,0.23885758,0.847770221,27.2672045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.84145059,1.683519055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.614206639,26.21027412,72.45565723,27.89379318,420.3364162,0,0.658555989,48.81016292,-0.658555989,131.1898371,0.974076311,0,481.895403,27.89379318,500.1513328,8,17,4% -8/16/2018 2:00,79.13719985,278.7654963,111.9242728,361.1061218,43.87098699,213.66562,170.2737726,43.39184731,42.54811486,0.843732445,28.46020787,0,28.46020787,1.322872124,27.13733575,1.381204698,4.865375752,4.568072447,-4.568072447,0,0.391970266,0.330718031,10.63702872,0.200660387,1,0.215511069,0,0.936781179,0.975543143,0.724496596,1,41.17658285,0.958416351,0.031348211,0.312029739,0.914950055,0.639446651,0.961238037,0.922476074,0.229759496,10.2247166,41.40634234,11.18313295,136.1065716,0,0.471533885,61.8660895,-0.471533885,118.1339105,0.943963082,0,169.8859211,11.18313295,177.2050579,8,18,4% -8/16/2018 3:00,90.147677,287.7539867,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573373777,5.022254503,-306.754844,306.754844,0,#DIV/0!,0,0,1,0.980764911,0,0.003259921,0.961238037,1,0.715294045,0.990797449,0,0,0.115824807,0.3015722,0.724496596,0.448993192,0.962881974,0.92412001,0,0,0,0,0,0,0.267994285,74.45505008,-0.267994285,105.5449499,0.863428857,0,0,0,0,8,19,0% -8/16/2018 4:00,101.687023,297.4795266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774773358,5.191997197,-3.267300136,3.267300136,0.91110508,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.036014089,87.9360984,-0.036014089,92.0639016,0,0,0,0,0,8,20,0% -8/16/2018 5:00,111.6256884,308.6464195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948235792,5.386896245,-1.312453597,1.312453597,0.754596473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.180882708,100.4211793,0.180882708,79.57882075,0,0.773577778,0,0,0,8,21,0% -8/16/2018 6:00,119.9798599,321.9578691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09404359,5.619224868,-0.536880014,0.536880014,0.621965579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.377804236,112.1977382,0.377804236,67.80226185,0,0.917656328,0,0,0,8,22,0% -8/16/2018 7:00,125.951044,337.856604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198260414,5.89671014,-0.051570104,0.051570104,0.538972697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.541332523,122.7743956,0.541332523,57.2256044,0,0.95763533,0,0,0,8,23,0% -8/17/2018 8:00,128.6662987,355.9133141,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245650549,6.211859183,0.342648791,-0.342648791,0.471557295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660324566,131.3246307,0.660324566,48.67536928,0,0.974279661,0,0,0,8,0,0% -8/17/2018 9:00,127.6039445,14.44758216,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22710897,0.252157878,0.734409545,-0.734409545,0.404562261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.726671868,136.6081058,0.726671868,43.39189418,0,0.981193153,0,0,0,8,1,0% -8/17/2018 10:00,122.9795771,31.4371513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146398534,0.548681798,1.204998778,-1.204998778,0.324086762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735853304,137.3793684,0.735853304,42.62063157,0,0.982051674,0,0,0,8,2,0% -8/17/2018 11:00,115.5753248,45.88351608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017169952,0.800818428,1.90709392,-1.90709392,0.204021422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687243642,133.4123134,0.687243642,46.58768662,0,0.977245598,0,0,0,8,3,0% -8/17/2018 12:00,106.2574412,57.93091206,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854542204,1.011085154,3.353388639,-3.353388639,0,#DIV/0!,0,0,0.04151169,1,0.289809944,0,0.925942238,0.964704202,0.724496596,1,0,0,0.006962995,0.312029739,0.980444468,0.704941064,0.961238037,0.922476074,0,0,0,0,0,0,-0.584156726,125.7434389,0.584156726,54.25656114,0,0.964406532,0,0,0,8,4,0% -8/17/2018 13:00,95.70794734,68.22230629,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670418801,1.190703868,9.999851012,-9.999851012,0,#DIV/0!,0,0,0.541267895,1,0.099670128,0,0.951263149,0.990025112,0.724496596,1,0,0,0.073661682,0.312029739,0.812437981,0.536934577,0.961238037,0.922476074,0,0,0,0,0,0,-0.433620273,115.6975321,0.433620273,64.30246786,0,0.934691738,0,0,0,8,5,0% -8/17/2018 14:00,84.25855692,77.4742288,34.85762044,149.8986513,19.86183947,19.5257032,0,19.5257032,19.26293173,0.262771467,45.53686772,36.48632634,9.050541385,0.598907743,8.451633643,1.470589241,1.352180378,-9.861403779,9.861403779,0,0.569799063,0.149726936,4.815732933,1,0.178005435,0,0.101059984,0.961238037,1,0.478164961,0.753668365,18.51626268,0.422006723,0.115824807,0.033206789,0.724496596,0.448993192,0.996939373,0.95817741,0.108476655,4.647554296,18.62473934,5.069561018,0,29.99156193,-0.243406635,104.0876904,0.243406635,75.91230964,0,0.844582428,18.62473934,30.39990721,38.52087061,8,6,107% -8/17/2018 15:00,72.64396945,86.38572186,226.9358928,543.6885433,64.74902836,64.50734487,0,64.50734487,62.79660625,1.710738618,74.84707511,17.87141844,56.97565667,1.952422103,55.02323457,1.267876449,1.507715273,-3.069652289,3.069652289,0.944904852,0.285318587,1.643377467,52.85666842,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,60.36248652,1.414523168,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.190621381,50.80784018,61.5531079,52.22236335,0,17.87141844,-0.032870692,91.88369122,0.032870692,88.11630878,0,0,61.5531079,52.22236335,95.73160026,8,7,56% -8/17/2018 16:00,60.84318873,95.72979571,439.1800153,719.3712091,88.70126553,225.1193709,135.7820513,89.33731957,86.0265951,3.310724466,109.1589498,0,109.1589498,2.674670429,106.4842794,1.061913971,1.670800127,-1.614740672,1.614740672,0.806290608,0.201970177,2.798933237,90.02331418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.6920354,1.937789621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.027817602,86.53383379,84.719853,88.47162341,135.7820513,0,0.188751023,79.12009572,-0.188751023,100.8799043,0.785100773,0,191.3224465,88.47162341,249.2253545,8,8,30% -8/17/2018 17:00,49.24926614,106.5860755,630.3496645,805.8784241,104.2968443,432.5709197,326.667168,105.9037517,101.1519097,4.751842031,155.9805088,0,155.9805088,3.144934671,152.8355741,0.859561848,1.860277954,-0.931859545,0.931859545,0.689511057,0.165458713,3.520564483,113.2334556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.23106308,2.278494464,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550636983,108.8443046,99.78170006,111.1227991,326.667168,0,0.405355396,66.08659998,-0.405355396,113.9134,0.926651451,0,402.4883053,111.1227991,475.2159548,8,9,18% -8/17/2018 18:00,38.41222361,120.809452,782.7551994,852.2702015,114.9495741,630.4729353,513.0887756,117.3841597,111.4834204,5.90073933,193.2542143,0,193.2542143,3.466153779,189.7880605,0.670419775,2.108522704,-0.501058457,0.501058457,0.615839732,0.146852521,3.96679937,127.5859035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1621041,2.511216614,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.87393264,122.6404234,110.0360368,125.1516401,513.0887756,0,0.602025947,52.98486634,-0.602025947,127.0151337,0.966947101,0,606.165741,125.1516401,688.0749864,8,10,14% -8/17/2018 19:00,29.47144561,141.7148013,884.5705617,876.4394677,121.5414882,795.286556,670.7417256,124.5448304,117.8765638,6.668266538,218.1392982,0,218.1392982,3.664924308,214.4743739,0.514373761,2.473389881,-0.177303259,0.177303259,0.560474333,0.137401688,4.140099313,133.1598254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3074368,2.655225185,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.999487859,127.9982892,116.3069247,130.6535143,670.7417256,0,0.765302968,40.06604711,-0.765302968,139.9339529,0.984666397,0,776.7637632,130.6535143,862.2738752,8,11,11% -8/17/2018 20:00,24.77994207,172.4307249,928.2991198,885.5606641,124.2771061,910.3876917,782.860088,127.5276037,120.5296928,6.99791088,228.8242824,0,228.8242824,3.747413283,225.0768691,0.432491577,3.009483882,0.099372208,-0.099372208,0.513160041,0.133876143,4.047145868,130.1701231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.8577253,2.714988167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.932143404,125.1244736,118.7898687,127.8394617,782.860088,0,0.884027622,27.86790336,-0.884027622,152.1320966,0.993440681,0,896.5149279,127.8394617,980.1832989,8,12,9% -8/17/2018 21:00,26.75169922,206.1238879,910.7688943,881.9851061,123.1865397,964.3010704,837.9632988,126.3377717,119.472011,6.865760636,224.5409916,0,224.5409916,3.714528682,220.8264629,0.466905232,3.597540512,0.363360153,-0.363360153,0.468015444,0.135255541,3.707299984,119.2395112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8410413,2.691163386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.685926218,114.6175537,117.5269676,117.3087171,837.9632988,0,0.950087811,18.17875271,-0.950087811,161.8212473,0.997373285,0,953.289176,117.3087171,1030.065385,8,13,8% -8/17/2018 22:00,34.23555091,231.1455602,833.2231482,864.8074161,118.2594832,950.2975576,829.3228461,120.9747115,114.6935235,6.281188046,205.5905588,0,205.5905588,3.56595975,202.024599,0.597523085,4.034251077,0.643992533,-0.643992533,0.42002448,0.141930146,3.155295085,101.4851362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2477774,2.5835257,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.286000548,97.55137309,112.5337779,100.1348988,829.3228461,0,0.95896824,16.47001478,-0.95896824,163.5299852,0.99786063,0,940.0823955,100.1348988,1005.618684,8,14,7% -8/17/2018 23:00,44.46045661,247.7351686,701.2825698,829.2827,109.3952942,866.0803066,754.6971199,111.3831867,106.0966225,5.286564234,173.33275,0,173.33275,3.298671746,170.0340782,0.775981355,4.323794365,0.98057495,-0.98057495,0.362465497,0.155993174,2.441951396,78.54155106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9841091,2.389876451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.769185474,75.49712635,103.7532946,77.88700281,754.6971199,0,0.910060128,24.48633794,-0.910060128,155.5136621,0.995058575,0,854.7211355,77.88700281,905.6966211,8,15,6% -8/17/2018 0:00,55.82717943,259.734952,524.8540894,763.3185464,96.10495319,712.9415504,615.7779443,97.16360608,93.20703426,3.956571825,130.1548695,0,130.1548695,2.897918928,127.2569505,0.974368093,4.533230095,1.45174798,-1.45174798,0.281890163,0.183107944,1.6355747,52.60570462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.59414663,2.099532399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184968303,50.56660423,90.77911493,52.66613663,615.7779443,0,0.806711624,36.22411875,-0.806711624,143.7758812,0.988019983,0,699.1800292,52.66613663,733.6489623,8,16,5% -8/17/2018 1:00,67.6018832,269.5564374,318.6325058,635.5320764,76.46937095,493.4975873,416.9320636,76.56552369,74.16353727,2.40198642,79.56197371,0,79.56197371,2.305833676,77.25614004,1.179875442,4.704647353,2.286434132,-2.286434132,0.139150425,0.239992372,0.830481416,26.71113709,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.28881297,1.670568649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.601680959,25.67576098,71.89049393,27.34632963,416.9320636,0,0.656036224,49.00173129,-0.656036224,130.9982687,0.973784696,0,477.8925569,27.34632963,495.7901827,8,17,4% -8/17/2018 2:00,79.3689404,278.5358582,108.1436012,353.6474863,42.90123984,208.1674914,165.7446501,42.42284132,41.60760917,0.815232146,27.51429881,0,27.51429881,1.29363067,26.22066814,1.385249334,4.86136781,4.680287725,-4.680287725,0,0.396706226,0.323407667,10.40190229,0.212736444,1,0.210497,0,0.937469997,0.97623196,0.724496596,1,40.2755781,0.937231017,0.033062143,0.312029739,0.910522441,0.635019037,0.961238037,0.922476074,0.224324824,9.998704139,40.49990292,10.93593516,130.4847226,0,0.46867193,62.05187685,-0.46867193,117.9481232,0.943315565,0,163.5881728,10.93593516,170.7455236,8,18,4% -8/17/2018 3:00,90.99314078,287.5394755,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588129903,5.018510577,-45.74095348,45.74095348,0,#DIV/0!,0,0,1,0.863988462,0,0.021858764,0.961238037,1,0.664379109,0.939882513,0,0,0.115824807,0.243768159,0.724496596,0.448993192,0.971559409,0.932797446,0,0,0,0,0,0,0.254871149,75.23404973,-0.254871149,104.7659503,0.853822441,0,0,0,0,8,19,0% -8/17/2018 4:00,101.9474215,297.2808241,0,0,0,0,0,0,0,0,0,0,0,0,0,1.779318169,5.188529183,-3.206111661,3.206111661,0.921568926,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.032472659,88.13912655,-0.032472659,91.86087345,0,0,0,0,0,8,20,0% -8/17/2018 5:00,111.9072125,308.4712005,0,0,0,0,0,0,0,0,0,0,0,0,0,1.953149315,5.383838097,-1.300348939,1.300348939,0.752526455,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.184667025,100.6417199,0.184667025,79.35828014,0,0.779242403,0,0,0,8,21,0% -8/17/2018 6:00,120.2842147,321.8249989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099355585,5.616905845,-0.534125557,0.534125557,0.621494539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.381752837,112.4422997,0.381752837,67.55770026,0,0.919025204,0,0,0,8,22,0% -8/17/2018 7:00,126.2729885,337.7973526,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203879406,5.895676008,-0.052373255,0.052373255,0.539110044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.545355568,123.0489653,0.545355568,56.95103472,0,0.958316697,0,0,0,8,23,0% -8/18/2018 8:00,128.9901041,355.9576339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25130202,6.212632709,0.339625871,-0.339625871,0.472074245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664327154,131.6307271,0.664327154,48.36927287,0,0.974735878,0,0,0,8,0,0% -8/18/2018 9:00,127.9078404,14.59612341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232412954,0.254750412,0.729150001,-0.729150001,0.405461696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73056055,136.9334076,0.73056055,43.06659243,0,0.981559403,0,0,0,8,1,0% -8/18/2018 10:00,123.2481575,31.65766221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151086146,0.552530439,1.196367935,-1.196367935,0.325562723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.73954251,137.692459,0.73954251,42.307541,0,0.982390634,0,0,0,8,2,0% -8/18/2018 11:00,115.8054583,46.13992652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.021186539,0.805293634,1.891348854,-1.891348854,0.206713986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690661562,133.6825001,0.690661562,46.31749989,0,0.977605643,0,0,0,8,3,0% -8/18/2018 12:00,106.4541599,58.2021936,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857975593,1.01581991,3.314362464,-3.314362464,0,#DIV/0!,0,0,0.035340934,1,0.293031417,0,0.925445999,0.964207962,0.724496596,1,0,0,0.005944871,0.312029739,0.98328025,0.707776846,0.961238037,0.922476074,0,0,0,0,0,0,-0.587250254,125.9621197,0.587250254,54.03788031,0,0.964857423,0,0,0,8,4,0% -8/18/2018 13:00,95.87918721,68.50164876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673407501,1.195579314,9.707979037,-9.707979037,0,#DIV/0!,0,0,0.530518306,1,0.102646025,0,0.95092933,0.989691293,0.724496596,1,0,0,0.072494785,0.312029739,0.815074279,0.539570875,0.961238037,0.922476074,0,0,0,0,0,0,-0.436358665,115.8717794,0.436358665,64.12822063,0,0.935415361,0,0,0,8,5,0% -8/18/2018 14:00,84.409503,77.76347363,33.06779845,143.7401808,19.06494176,18.73934245,0,18.73934245,18.49006342,0.249279033,43.91390118,35.32135227,8.592548916,0.574878336,8.01767058,1.473223747,1.357228653,-10.12259576,10.12259576,0,0.576541005,0.143719584,4.622515855,1,0.207116614,0,0.098469391,0.961238037,1,0.483464218,0.758967622,17.77335226,0.40351072,0.115824807,0.039217211,0.724496596,0.448993192,0.996357112,0.957595149,0.104124349,4.463609457,17.87747661,4.867120177,0,28.00571339,-0.24573054,104.2250105,0.24573054,75.77498952,0,0.846525088,17.87747661,28.57465917,36.57901955,8,6,105% -8/18/2018 15:00,72.78931998,86.69188074,224.4402589,541.3217551,64.27067036,64.02459799,0,64.02459799,62.33267251,1.691925476,75.24678537,18.89064828,56.35613709,1.937997845,54.41813925,1.270413294,1.513058754,-3.092315419,3.092315419,0.941029229,0.286359812,1.620722632,52.12801106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.91653576,1.404072841,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.17420803,50.10742701,61.09074379,51.51149986,0,18.89064828,-0.034897264,91.99987201,0.034897264,88.00012799,0,0,61.09074379,51.51149986,94.80399021,8,7,55% -8/18/2018 16:00,60.99024491,96.06369119,436.7822717,718.5409088,88.31973272,223.3308749,134.3816587,88.94921617,85.65656691,3.292649262,108.5660845,0,108.5660845,2.663165807,105.9029187,1.064480585,1.676627703,-1.619936748,1.619936748,0.807179189,0.202205397,2.786136408,89.61172417,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.33635022,1.929454561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.018546343,86.13819782,84.35489656,88.06765238,134.3816587,0,0.187020192,79.22106316,-0.187020192,100.7789368,0.782649189,0,189.5285928,88.06765238,247.1671099,8,8,30% -8/18/2018 17:00,49.41067756,106.960938,628.0509947,805.5393943,103.9407161,430.8666489,325.3256152,105.5410337,100.80652,4.734513688,155.4124311,0,155.4124311,3.134196091,152.278235,0.862379009,1.866820539,-0.932614205,0.932614205,0.689640112,0.165497256,3.508292735,112.838754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.89906141,2.270714399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.541746144,108.4649024,99.44080756,110.7356168,325.3256152,0,0.40386059,66.18025446,-0.40386059,113.8197455,0.926194902,0,400.7557338,110.7356168,473.2299802,8,9,18% -8/18/2018 18:00,38.60674255,121.2318359,780.4756685,852.1079484,114.5984266,628.8777873,511.8513707,117.0264165,111.1428613,5.883555263,192.6909272,0,192.6909272,3.455565387,189.2353619,0.673814771,2.115894694,-0.499986146,0.499986146,0.615656356,0.146831517,3.954279343,127.1832164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8347458,2.503545359,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.864861923,122.2533453,109.6996077,124.7568906,511.8513707,0,0.600688412,53.08078252,-0.600688412,126.9192175,0.96676217,0,604.5381495,124.7568906,686.1890393,8,10,14% -8/18/2018 19:00,29.7239503,142.1363541,882.2147202,876.3327104,121.1860724,793.7290341,669.5466618,124.1823724,117.5318651,6.65050721,217.55738,0,217.55738,3.65420721,213.9031728,0.518780799,2.480747366,-0.175138676,0.175138676,0.560104167,0.137365734,4.126844433,132.7335029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.9760993,2.647460685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.989884743,127.5884917,115.9659841,130.2359524,669.5466618,0,0.764032489,40.17900542,-0.764032489,139.8209946,0.984557757,0,775.1733434,130.2359524,860.4101696,8,11,11% -8/18/2018 20:00,25.09535943,172.6391457,925.7730603,885.4450787,123.9112049,908.7618297,781.6081364,127.1536933,120.1748249,6.978868377,228.2007767,0,228.2007767,3.736380013,224.4643967,0.437996649,3.01312151,0.102476464,-0.102476464,0.512629182,0.133846199,4.032822234,129.7094258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.5166128,2.7069946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.92176598,124.6816338,118.4383788,127.3886284,781.6081364,0,0.882729099,28.02665403,-0.882729099,151.973346,0.993357481,0,894.8546681,127.3886284,978.2279776,8,12,9% -8/18/2018 21:00,27.07290421,205.9817904,907.9897445,881.8061393,122.8047466,962.4877292,836.5411886,125.9465406,119.1017303,6.84481023,223.8556421,0,223.8556421,3.70301621,220.1526259,0.472511317,3.595060441,0.367562749,-0.367562749,0.467296758,0.135249046,3.691709812,118.7380777,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4851135,2.682822638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.674631192,114.1355567,117.1597446,116.8183794,836.5411886,0,0.948667912,18.43773642,-0.948667912,161.5622636,0.997294518,0,951.4376857,116.8183794,1027.892979,8,13,8% -8/18/2018 22:00,34.52077875,230.8597228,830.1267142,864.4895631,117.8558485,948.1719799,827.6120743,120.5599056,114.3020598,6.257845819,204.8276214,0,204.8276214,3.553788673,201.2738327,0.60250125,4.029262272,0.649791711,-0.649791711,0.419032763,0.141973323,3.138401118,100.9417681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8714876,2.574707796,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.273760927,97.02906705,112.1452485,99.60377484,827.6120743,0,0.957341892,16.79556,-0.957341892,163.20444,0.997772055,0,937.9134484,99.60377484,1003.102127,8,14,7% -8/18/2018 23:00,44.71532394,247.4413849,697.8309894,828.6812749,108.9606921,863.5079437,752.5722738,110.93567,105.6751252,5.260544763,172.4827695,0,172.4827695,3.285566889,169.1972026,0.780429629,4.318666873,0.989124911,-0.989124911,0.361003368,0.156141951,2.42394092,77.96227221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5789499,2.380382026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.756136945,74.94030149,103.3350868,77.32068352,752.5722738,0,0.908156485,24.74817824,-0.908156485,155.2518218,0.994943409,0,852.1019105,77.32068352,902.7067515,8,15,6% -8/18/2018 0:00,56.06582776,259.4634399,521.0482649,762.0907828,95.61867262,709.7495436,613.0862448,96.66329876,92.73541684,3.927881912,129.2174401,0,129.2174401,2.883255775,126.3341843,0.978533292,4.528491314,1.466014761,-1.466014761,0.2794504,0.183512122,1.617030371,52.00925524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.14081003,2.088908994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171532999,49.99327441,90.31234303,52.0821834,613.0862448,0,0.804479281,36.44000347,-0.804479281,143.5599965,0.987847995,0,695.948361,52.0821834,730.0351084,8,16,5% -8/18/2018 1:00,67.83538213,269.3075879,314.5566371,632.6830521,75.86496155,489.3742727,413.4256588,75.94861385,73.57735305,2.3712608,78.55550699,0,78.55550699,2.287608503,76.26789849,1.183950767,4.700304109,2.316694833,-2.316694833,0.13397554,0.24118061,0.812972176,26.14797975,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.7253504,1.657364573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.588995574,25.13443273,71.31434598,26.7917973,413.4256588,0,0.653448291,49.19790442,-0.653448291,130.8020956,0.973482851,0,473.7771352,26.7917973,491.3118306,8,17,4% -8/18/2018 2:00,79.60461479,278.3051342,104.3187564,345.9006244,41.9044738,202.5276906,161.1003925,41.42729815,40.6408993,0.78639885,26.55686474,0,26.55686474,1.263574496,25.29329024,1.389362628,4.857340917,4.799289393,-4.799289393,0,0.401696447,0.315893624,10.16022483,0.225150459,1,0.205424953,0,0.938161192,0.976923155,0.724496596,1,39.3483513,0.915455421,0.034805508,0.312029739,0.906042542,0.630539138,0.961238037,0.922476074,0.218778086,9.766394565,39.56712939,10.68184999,124.8285651,0,0.465741838,62.24175692,-0.465741838,117.7582431,0.942644388,0,157.2360758,10.68184999,164.227133,8,18,4% -8/18/2018 3:00,91.24103492,287.3237021,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592456472,5.014744621,-36.70789558,36.70789558,0,#DIV/0!,0,0,1,0.827811048,0,0.02723536,0.961238037,1,0.650165758,0.925669162,0,0,0.115824807,0.227654953,0.724496596,0.448993192,0.973852199,0.935090236,0,0,0,0,0,0,0.251566105,75.42979445,-0.251566105,104.5702055,0.851245084,0,0,0,0,8,19,0% -8/18/2018 4:00,102.2116841,297.0808004,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783930422,5.185038111,-3.146487262,3.146487262,0.931765298,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02886657,88.34583761,-0.02886657,91.65416239,0,0,0,0,0,8,20,0% -8/18/2018 5:00,112.1926299,308.2948079,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958130789,5.380759464,-1.288291574,1.288291574,0.750464524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.188509922,100.8658377,0.188509922,79.13416229,0,0.784761972,0,0,0,8,21,0% -8/18/2018 6:00,120.592528,321.6915611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104736667,5.614576917,-0.531326825,0.531326825,0.621015928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.385752092,112.690439,0.385752092,67.30956101,0,0.920383075,0,0,0,8,22,0% -8/18/2018 7:00,126.598852,337.7389645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209566797,5.894656944,-0.053124753,0.053124753,0.539238557,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.549420044,123.3272347,0.549420044,56.67276534,0,0.958994947,0,0,0,8,23,0% -8/19/2018 8:00,129.3174348,356.0050073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257015017,6.213459531,0.336656618,-0.336656618,0.472582017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668361281,131.9407133,0.668361281,48.05928665,0,0.975190161,0,0,0,8,0,0% -8/19/2018 9:00,128.2144299,14.74958495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23776395,0.257428821,0.72395387,-0.72395387,0.406350286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734470897,137.2625265,0.734470897,42.73747349,0,0.981923783,0,0,0,8,1,0% -8/19/2018 10:00,123.5184743,31.88371123,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155804064,0.556475739,1.187831715,-1.187831715,0.327022503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743244199,138.0085098,0.743244199,41.99149022,0,0.982727359,0,0,0,8,2,0% -8/19/2018 11:00,116.0365907,46.40157674,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02522056,0.809860292,1.875803251,-1.875803251,0.209372441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69408411,133.9542775,0.69408411,46.04572255,0,0.977962621,0,0,0,8,3,0% -8/19/2018 12:00,106.6514513,58.47816809,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861418978,1.020636574,3.276088653,-3.276088653,0,#DIV/0!,0,0,0.029211479,1,0.296259045,0,0.924946662,0.963708626,0.724496596,1,0,0,0.004927783,0.312029739,0.986121225,0.710617821,0.961238037,0.922476074,0,0,0,0,0,0,-0.590342417,126.1813109,0.590342417,53.81868908,0,0.965303392,0,0,0,8,4,0% -8/19/2018 13:00,96.05083498,68.78521949,0,0,0,0,0,0,0,0,0,0,0,0,0,1.67640332,1.200528557,9.431721114,-9.431721114,0,#DIV/0!,0,0,0.519869162,1,0.105630557,0,0.95059248,0.989354443,0.724496596,1,0,0,0.071329252,0.312029739,0.817718333,0.542214929,0.961238037,0.922476074,0,0,0,0,0,0,-0.439091977,116.04596,0.439091977,63.95403998,0,0.936128641,0,0,0,8,5,0% -8/19/2018 14:00,84.56075057,78.05664235,31.30728638,137.5674777,18.26722628,17.95240955,0,17.95240955,17.716402,0.236007549,42.26468005,34.12304173,8.141638317,0.550824271,7.590814046,1.475863515,1.362345412,-10.39844672,10.39844672,0,0.583481623,0.137706068,4.429100501,1,0.235703534,0,0.095873379,0.961238037,1,0.488828632,0.764332036,17.02967948,0.385243691,0.115824807,0.045296435,0.724496596,0.448993192,0.995759419,0.956997456,0.099767577,4.279103644,17.12944706,4.664347335,0,26.08012021,-0.248045849,104.3619056,0.248045849,75.63809435,0,0.848424363,17.12944706,26.7913567,34.6638542,8,6,102% -8/19/2018 15:00,72.93531794,87.00180147,221.9331218,538.9110906,63.78906686,63.53861676,0,63.53861676,61.86559114,1.673025617,75.62970723,19.89597668,55.73373055,1.923475722,53.81025483,1.272961439,1.518467891,-3.115318905,3.115318905,0.937095401,0.287424727,1.598033479,51.39824988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.46755938,1.393551613,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.157769816,49.40595282,60.62532919,50.79950443,0,19.89597668,-0.036918848,92.115775,0.036918848,87.884225,0,0,60.62532919,50.79950443,93.87258885,8,7,55% -8/19/2018 16:00,61.1383433,96.4012605,434.3630096,717.6912305,87.93603667,221.5400863,132.9812337,88.55885256,85.28444072,3.274411842,107.9679365,0,107.9679365,2.651595955,105.3163406,1.06706539,1.682519399,-1.625130874,1.625130874,0.808067437,0.202448263,2.773177486,89.1949207,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.97864837,1.921072243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.009157649,85.73755047,83.98780602,87.65862271,132.9812337,0,0.185290314,79.32194117,-0.185290314,100.6780588,0.780153191,0,187.7335399,87.65862271,245.1043553,8,8,31% -8/19/2018 17:00,49.57372367,107.3392826,625.721202,805.187089,103.5822705,429.1513546,323.975521,105.1758336,100.4588829,4.716950727,154.8367374,0,154.8367374,3.123387634,151.7133498,0.8652247,1.873423898,-0.933322227,0.933322227,0.689761191,0.165540612,3.495818564,112.4375418,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.56489936,2.262883708,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.53270865,108.079242,99.09760801,110.3421257,323.975521,0,0.402360551,66.27416889,-0.402360551,113.7258311,0.925733345,0,399.0125506,110.3421257,471.229265,8,9,18% -8/19/2018 18:00,38.80368548,121.6569216,778.1546883,851.933983,114.2445307,627.2618199,510.5961245,116.6656953,110.7996366,5.866058734,192.1175075,0,192.1175075,3.444894119,188.6726133,0.677252073,2.12331384,-0.498855104,0.498855104,0.615462937,0.146814679,3.941514103,126.7726424,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.5048252,2.495814062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.85561355,121.8586859,109.3604387,124.3545,510.5961245,0,0.599337665,53.17752386,-0.599337665,126.8224761,0.966574574,0,602.8896703,124.3545,684.2772035,8,10,13% -8/19/2018 19:00,29.97961721,142.5586324,879.8068589,876.2141004,120.8273816,792.1395112,668.3231652,123.816346,117.1839903,6.632355734,216.9627503,0,216.9627503,3.643391362,213.319359,0.523243029,2.488117512,-0.172906868,0.172906868,0.559722506,0.137333985,4.113304574,132.2980145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6417088,2.639624639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.980075162,127.1698837,115.6217839,129.8095084,668.3231652,0,0.762739569,40.29368888,-0.762739569,139.7063111,0.984446826,0,773.5504023,129.8095084,858.5081294,8,11,11% -8/19/2018 20:00,25.41419457,172.8486637,923.1848585,885.3163449,123.5414617,907.0919026,780.3163144,126.7755882,119.8162308,6.959357418,227.5620881,0,227.5620881,3.725230889,223.8368572,0.443561372,3.01677829,0.10565972,-0.10565972,0.512084813,0.133820936,4.018180426,129.2384949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,115.1719185,2.698917098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.91115804,124.2289571,118.0830765,126.9278742,780.3163144,0,0.881398292,28.18849869,-0.881398292,151.8115013,0.993271957,0,893.1493893,126.9278742,976.2211445,8,12,9% -8/19/2018 21:00,27.39818541,205.8447062,905.139495,881.6113595,122.4185175,960.6180006,835.0675293,125.5504714,118.7271475,6.823323846,223.1529199,0,223.1529199,3.691369978,219.4615499,0.478188545,3.592667871,0.371864193,-0.371864193,0.466561167,0.135248233,3.675777961,118.2256546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1250502,2.674384983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.66308862,113.6429962,116.7881388,116.3173812,835.0675293,0,0.947205955,18.70077257,-0.947205955,161.2992274,0.99721317,0,949.5284766,116.3173812,1025.655876,8,13,8% -8/19/2018 22:00,34.81067608,230.5773438,826.9520745,864.1509338,117.447127,945.9779123,825.8383355,120.1395769,113.9056628,6.233914044,204.0455688,0,204.0455688,3.541464214,200.5041046,0.607560912,4.02433383,0.655726135,-0.655726135,0.418017916,0.142024104,3.12115494,100.3870718,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4904557,2.565778767,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.261266129,96.49587178,111.7517218,99.06165055,825.8383355,0,0.95566446,17.12503202,-0.95566446,162.874968,0.997680381,0,935.6744274,99.06165055,1000.508296,8,14,7% -8/19/2018 23:00,44.97482866,247.1487746,694.2966217,828.0493168,108.5201592,860.8551897,750.3734125,110.4817772,105.247876,5.233901206,171.6125374,0,171.6125374,3.272283196,168.3402542,0.784958841,4.313559859,0.997884891,-0.997884891,0.359505323,0.1563023,2.405585335,77.37189352,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.1682617,2.370758036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742838386,74.37280703,102.9111001,76.74356507,750.3734125,0,0.906194109,25.01540733,-0.906194109,154.9845927,0.994824183,0,849.4007174,76.74356507,899.6278458,8,15,6% -8/19/2018 0:00,56.30886185,259.1918539,517.1585105,760.8105182,95.12493804,706.464,610.3088705,96.15512948,92.25657018,3.898559301,128.2594362,0,128.2594362,2.868367855,125.3910683,0.982775037,4.523751246,1.480678532,-1.480678532,0.276942748,0.183937683,1.59817627,51.40284255,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.68052441,2.078122747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.157873267,49.41036746,89.83839768,51.4884902,610.3088705,0,0.802182483,36.66097756,-0.802182483,143.3390224,0.987670043,0,692.6221858,51.4884902,726.3203729,8,16,5% -8/19/2018 1:00,68.0730034,269.0580401,310.4020716,629.7201957,75.24885879,485.1370178,409.8172478,75.31976999,72.97982806,2.33994193,77.52960669,0,77.52960669,2.269030731,75.26057596,1.188098041,4.695948678,2.348032263,-2.348032263,0.128616524,0.242423829,0.795254169,25.57810774,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.15098666,1.643905041,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.576158938,24.58665007,70.7271456,26.23055512,409.8172478,0,0.650792607,49.39861227,-0.650792607,130.6013877,0.973170608,0,469.549246,26.23055512,486.7166197,8,17,4% -8/19/2018 2:00,79.84412594,278.0733751,100.4539554,337.8599122,40.88022642,196.7476235,156.3428224,40.40480111,39.64753676,0.757264348,25.58891417,0,25.58891417,1.232689659,24.35622451,1.393542886,4.853295958,4.925633526,-4.925633526,0,0.40695487,0.308172415,9.91188419,0.237908999,1,0.200297299,0,0.938854233,0.977616196,0.724496596,1,38.39445163,0.893079461,0.036577978,0.312029739,0.90151242,0.626009016,0.961238037,0.922476074,0.213117791,9.5276801,38.60756943,10.42075956,119.147458,0,0.462744518,62.43565145,-0.462744518,117.5643486,0.941949017,0,150.8384004,10.42075956,157.6585791,8,18,5% -8/19/2018 3:00,91.4927437,287.1066997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596849619,5.010957214,-30.60392238,30.60392238,0,#DIV/0!,0,0,1,0.790080579,0,0.032663928,0.961238037,1,0.636045684,0.911549088,0,0,0.115824807,0.211659523,0.724496596,0.448993192,0.976072745,0.937310782,0,0,0,0,0,0,0.248193759,75.62934616,-0.248193759,104.3706538,0.848544491,0,0,0,0,8,19,0% -8/19/2018 4:00,102.4797111,296.8794702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788608375,5.181524236,-3.088403835,3.088403835,0.941698149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.025197347,88.55614555,-0.025197347,91.44385445,0,0,0,0,0,8,20,0% -8/19/2018 5:00,112.4818376,308.1172364,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963178416,5.377660258,-1.276290512,1.276290512,0.748412222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.192409578,101.0934379,0.192409578,78.90656208,0,0.790137676,0,0,0,8,21,0% -8/19/2018 6:00,120.9046974,321.5575344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110185051,5.61223771,-0.528487715,0.528487715,0.620530412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.389799964,112.9420532,0.389799964,67.05794684,0,0.92172908,0,0,0,8,22,0% -8/19/2018 7:00,126.9285361,337.6814197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.215320869,5.893652596,-0.053826235,0.053826235,0.539358518,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.553523786,123.6090969,0.553523786,56.39090308,0,0.959669645,0,0,0,8,23,0% -8/20/2018 8:00,129.6481942,356.055436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262787857,6.214339677,0.333740448,-0.333740448,0.473080712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672424761,132.254486,0.672424761,47.74551404,0,0.975642238,0,0,0,8,0,0% -8/20/2018 9:00,128.5236156,14.90797495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243160259,0.260193248,0.718821111,-0.718821111,0.40722804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738400798,137.5953657,0.738400798,42.40463431,0,0.982286097,0,0,0,8,1,0% -8/20/2018 10:00,123.7904359,32.11527898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160550689,0.560517358,1.179390215,-1.179390215,0.328466084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746956435,138.3274183,0.746956435,41.67258175,0,0.983061692,0,0,0,8,2,0% -8/20/2018 11:00,116.2686461,46.66841348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029270691,0.814517472,1.860455988,-1.860455988,0.211996978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697509607,134.2275394,0.697509607,45.77246064,0,0.9783164,0,0,0,8,3,0% -8/20/2018 12:00,106.8492599,58.75875965,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864871389,1.02553382,3.238550904,-3.238550904,0,#DIV/0!,0,0,0.023123767,1,0.29949232,0,0.924444301,0.963206265,0.724496596,1,0,0,0.003911876,0.312029739,0.988966964,0.71346356,0.961238037,0.922476074,0,0,0,0,0,0,-0.593431866,126.4009239,0.593431866,53.59907605,0,0.965744329,0,0,0,8,4,0% -8/20/2018 13:00,96.22285546,69.0729293,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679405643,1.20555004,9.169881147,-9.169881147,0,#DIV/0!,0,0,0.509320059,1,0.108623424,0,0.950252617,0.989014581,0.724496596,1,0,0,0.070165197,0.312029739,0.820369849,0.544866445,0.961238037,0.922476074,0,0,0,0,0,0,-0.44181923,116.2200129,0.44181923,63.77998711,0,0.936831544,0,0,0,8,5,0% -8/20/2018 14:00,84.71227373,78.35363552,29.57790551,131.3886383,17.46948544,17.16568674,0,17.16568674,16.942716,0.222970746,40.5916609,32.89338583,7.698275074,0.526769441,7.171505633,1.478508093,1.367528921,-10.69020039,10.69020039,0,0.590626183,0.13169236,4.235678999,1,0.263777822,0,0.093272191,0.961238037,1,0.494257994,0.769761398,16.28598306,0.367205557,0.115824807,0.051444659,0.724496596,0.448993192,0.995145997,0.956384034,0.095410667,4.094243662,16.38139373,4.46144922,0,24.21684015,-0.250351828,104.4983325,0.250351828,75.50166746,0,0.850281067,16.38139373,25.0525699,32.77779968,8,6,100% -8/20/2018 15:00,73.08196147,87.31537189,219.4146013,536.455664,63.30417135,63.04935696,0,63.04935696,61.39531701,1.654039946,75.99549036,20.88702565,55.10846471,1.908854334,53.19961038,1.275520851,1.523940727,-3.13867215,3.13867215,0.933101761,0.288513941,1.575312335,50.66745978,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,59.015514,1.382958467,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.141308424,48.70348957,60.15682242,50.08644804,0,20.88702565,-0.038935232,92.23138848,0.038935232,87.76861152,0,0,60.15682242,50.08644804,92.93740093,8,7,54% -8/20/2018 16:00,61.28749432,96.74237051,431.9220045,716.8217204,87.55014319,219.7468859,131.580692,88.16619386,84.91018334,3.256010515,107.3644505,0,107.3644505,2.639959843,104.7244906,1.069668566,1.688472892,-1.630323989,1.630323989,0.808955512,0.202698965,2.760055097,88.77285953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.61889795,1.912641919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.999650522,85.33184922,83.61854847,87.24449114,131.580692,0,0.183561251,79.42273823,-0.183561251,100.5772618,0.777611358,0,185.937189,87.24449114,243.0369636,8,8,31% -8/20/2018 17:00,49.7384215,107.7209389,623.3598676,804.8211949,103.2214722,427.4245954,322.6164814,104.808114,100.108964,4.69914999,154.2533251,0,154.2533251,3.112508235,151.1408169,0.86809922,1.880085057,-0.933984133,0.933984133,0.689874383,0.165588896,3.483140335,112.0297664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.22854403,2.255001621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.523523315,107.6872727,98.75206735,109.9422743,322.6164814,0,0.400854853,66.36836968,-0.400854853,113.6316303,0.925266572,0,397.2583131,109.9422743,469.2133328,8,9,18% -8/20/2018 18:00,39.00306317,122.0844786,775.7917575,851.7480587,113.8878515,625.6243605,509.322402,116.3019586,110.4537126,5.848245964,191.5338323,0,191.5338323,3.434138925,188.0996934,0.680731871,2.130776117,-0.497665828,0.497665828,0.615259559,0.14680209,3.928502262,126.3541369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.1723099,2.488021961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.846186515,121.4564025,109.0184964,123.9444244,509.322402,0,0.59797307,53.27513298,-0.59797307,126.724867,0.966384194,0,601.2196155,123.9444244,682.3387624,8,10,13% -8/20/2018 19:00,30.2384247,142.981363,877.346506,876.0834293,120.4653855,790.5171904,667.0704722,123.4467182,116.8329097,6.613808555,216.3552938,0,216.3552938,3.632475843,212.7228179,0.527760072,2.495495553,-0.170608306,0.170608306,0.559329428,0.137306509,4.099479059,131.8533384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.3042367,2.631716383,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.970058623,126.7424442,115.2742953,129.3741606,667.0704722,0,0.761423456,40.41015219,-0.761423456,139.5898478,0.984333518,0,771.8941197,129.3741606,856.5669203,8,11,11% -8/20/2018 20:00,25.73637635,173.0590487,920.5341814,885.1742736,123.1678546,905.3771073,778.9838425,126.3932648,119.4538893,6.939375495,226.9081351,0,226.9081351,3.713965257,223.1941699,0.449184505,3.020450201,0.10892159,-0.10892159,0.511527001,0.133800414,4.00322087,128.7573442,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.8236221,2.690755186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.900319893,123.7664567,117.723942,126.4572119,778.9838425,0,0.880034436,28.35348232,-0.880034436,151.6465177,0.993184041,0,891.3982629,126.4572119,974.161979,8,12,9% -8/20/2018 21:00,27.72743112,205.7124909,902.2180515,881.400577,122.0278435,958.6911933,833.5416388,125.1495546,118.3482538,6.801300771,222.4328018,0,222.4328018,3.679589717,218.7532121,0.483934966,3.590360279,0.376264312,-0.376264312,0.465808703,0.135253161,3.65950629,117.7023017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7608431,2.665850224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.651299849,113.1399295,116.412143,115.8057797,833.5416388,0,0.945701263,18.96782316,-0.945701263,161.0321768,0.997129181,0,947.5608348,115.8057797,1023.353402,8,13,8% -8/20/2018 22:00,35.10513053,230.2984605,823.6994569,863.7913024,117.0333253,943.7148793,824.0011462,119.7137331,113.5043387,6.209394438,203.2444564,0,203.2444564,3.528986563,199.7154698,0.612700112,4.019466398,0.661796167,-0.661796167,0.41697988,0.142082557,3.103560089,99.82116086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1046877,2.556738752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.248518719,95.95189671,111.3532064,98.50863546,824.0011462,0,0.953935452,17.45831926,-0.953935452,162.5416807,0.997585552,0,933.3648448,98.50863546,997.8367765,8,14,7% -8/20/2018 23:00,45.23887235,246.857426,690.6800829,827.386471,108.0737156,858.1218562,748.1003236,110.0215326,104.8148944,5.206638209,170.7222038,0,170.7222038,3.258821276,167.4633825,0.789567272,4.308474867,1.006856795,-1.006856795,0.357971037,0.156474348,2.38689009,76.77059018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7520633,2.361004921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.729293745,73.79481139,102.481357,76.15581631,748.1003236,0,0.904172778,25.28790046,-0.904172778,154.7120995,0.994700835,0,846.6173733,76.15581631,896.4598319,8,15,6% -8/20/2018 0:00,56.55619004,258.9202753,513.1858902,759.476952,94.62376724,703.0850013,607.4458778,95.63912354,91.77051153,3.868612011,127.2811162,0,127.2811162,2.853255707,124.4278605,0.987091729,4.519011305,1.495746783,-1.495746783,0.274365925,0.184384974,1.579020204,50.78671762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.21330635,2.067174047,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.143994763,48.81812474,89.35730111,50.88529879,607.4458778,0,0.799821346,36.88695449,-0.799821346,143.1130455,0.98748604,0,689.2016252,50.88529879,722.5050355,8,16,5% -8/20/2018 1:00,68.31465529,268.8078577,306.1704877,626.6408941,74.62098194,480.7858861,406.1069597,74.67892647,72.37088401,2.308042464,76.4846774,0,76.4846774,2.250097927,74.23457947,1.192315662,4.691582172,2.380485655,-2.380485655,0.123066667,0.243723628,0.777339562,25.00191242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.56564647,1.630188289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.563179867,24.03278921,70.12882634,25.6629775,406.1069597,0,0.648069674,49.60377886,-0.648069674,130.3962211,0.972847802,0,465.2090893,25.6629775,482.0049948,8,17,4% -8/20/2018 2:00,80.08737187,277.8406272,96.55370869,329.5201628,39.82805939,190.8291118,151.4741527,39.35495909,38.62709645,0.727862641,24.61152747,0,24.61152747,1.200962941,23.41056453,1.397788328,4.84923374,5.0599395,-5.0599395,0,0.412496422,0.300240735,9.656774113,0.251018761,1,0.195116469,0,0.939548591,0.978310554,0.724496596,1,37.41345527,0.870093562,0.038379205,0.312029739,0.896934192,0.621430788,0.961238037,0.922476074,0.207342442,9.282458591,37.62079771,10.15255215,113.4512986,0,0.459680984,62.6334761,-0.459680984,117.3665239,0.941228914,0,144.4044402,10.15255215,151.0490826,8,18,5% -8/20/2018 3:00,91.74816821,286.8884971,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601307618,5.007148861,-26.20528176,26.20528176,0,#DIV/0!,0,0,1,0.750717982,0,0.038141739,0.961238037,1,0.622032896,0.8975363,0,0,0.115824807,0.195797756,0.724496596,0.448993192,0.978219583,0.93945762,0,0,0,0,0,0,0.244755378,75.8326222,-0.244755378,104.1673778,0.845714397,0,0,0,0,8,19,0% -8/20/2018 4:00,102.7513989,296.6768437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793350222,5.177987738,-3.031836745,3.031836745,0.951371691,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.021466602,88.76995982,-0.021466602,91.23004018,0,0,0,0,0,8,20,0% -8/20/2018 5:00,112.7747298,307.938476,0,0,0,0,0,0,0,0,0,0,0,0,0,1.968290348,5.3745403,-1.264354391,1.264354391,0.746371025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.196364099,101.3244215,0.196364099,78.67557852,0,0.79537097,0,0,0,8,21,0% -8/20/2018 6:00,121.2206184,321.4228918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115698912,5.609887754,-0.525612157,0.525612157,0.620038662,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.393894357,113.1970358,0.393894357,66.80296422,0,0.923062411,0,0,0,8,22,0% -8/20/2018 7:00,127.261941,337.624692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221139883,5.892662511,-0.054479467,0.054479467,0.539470227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557664593,123.8944421,0.557664593,56.10555787,0,0.960340372,0,0,0,8,23,0% -8/21/2018 8:00,129.9822858,356.1089162,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268618856,6.215273084,0.330876612,-0.330876612,0.473570456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676515385,132.5719394,0.676515385,47.4280606,0,0.976091851,0,0,0,8,0,0% -8/21/2018 9:00,128.8353012,15.0712968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248600199,0.263043752,0.713751472,-0.713751472,0.408094999,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742348145,137.9318275,0.742348145,42.06817249,0,0.982646158,0,0,0,8,1,0% -8/21/2018 10:00,124.0639526,32.3523413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165324456,0.564654876,1.171043238,-1.171043238,0.329893502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750677306,138.6490824,0.750677306,41.35091764,0,0.983393484,0,0,0,8,2,0% -8/21/2018 11:00,116.5015516,46.94037915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033335659,0.819264168,1.845305479,-1.845305479,0.214587867,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700936421,134.5021816,0.700936421,45.49781844,0,0.978666854,0,0,0,8,3,0% -8/21/2018 12:00,107.0475338,59.04388886,0,0,0,0,0,0,0,0,0,0,0,0,0,1.868331921,1.030510264,3.201732342,-3.201732342,0,#DIV/0!,0,0,0.01707806,1,0.302730821,0,0.923938976,0.962700939,0.724496596,1,0,0,0.002897264,0.312029739,0.991817109,0.716313705,0.961238037,0.922476074,0,0,0,0,0,0,-0.596517309,126.6208734,0.596517309,53.37912664,0,0.966180136,0,0,0,8,4,0% -8/21/2018 13:00,96.39521731,69.3646862,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682413925,1.210642159,8.921375409,-8.921375409,0,#DIV/0!,0,0,0.498870293,1,0.111624404,0,0.949909754,0.988671717,0.724496596,1,0,0,0.069002696,0.312029739,0.823028601,0.547525197,0.961238037,0.922476074,0,0,0,0,0,0,-0.444539515,116.3938808,0.444539515,63.6061192,0,0.937524059,0,0,0,8,5,0% -8/21/2018 14:00,84.86404957,78.6543514,27.88147597,125.2122757,16.67256713,16.38001006,0,16.38001006,16.16982772,0.210182343,38.89753322,31.63460715,7.262926065,0.502739414,6.760186651,1.481157082,1.372777403,-10.9992533,10.9992533,0,0.597980076,0.125684854,4.04245693,1,0.291351475,0,0.090666008,0.961238037,1,0.499752214,0.775255618,15.54305345,0.349397505,0.115824807,0.057662208,0.724496596,0.448993192,0.994516533,0.955754569,0.091058249,3.909249584,15.6341117,4.258647089,0,22.41781768,-0.252647809,104.6342514,0.252647809,75.3657486,0,0.852096048,15.6341117,23.36078093,30.92327561,8,6,98% -8/21/2018 15:00,73.22925214,87.63247777,216.884758,533.9544874,62.81592654,62.55676351,0,62.55676351,60.92179459,1.634968919,76.34380169,21.86344915,54.48035254,1.894131951,52.58622059,1.278091559,1.529475269,-3.162385796,3.162385796,0.929046489,0.289628128,1.552560961,49.93569741,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.56034624,1.372292151,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.124825131,48.00009174,59.68517137,49.3723839,0,21.86344915,-0.040946278,92.346705,0.040946278,87.653295,0,0,59.68517137,49.3723839,91.99840918,8,7,54% -8/21/2018 16:00,61.43771143,97.08688609,429.4589789,715.9318808,87.16201254,217.9510943,130.1798948,87.77119946,84.53375627,3.237443187,106.7555578,0,106.7555578,2.628256272,104.1273015,1.072290349,1.694485823,-1.635517377,1.635517377,0.809843633,0.202957714,2.74676767,88.34549021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25706192,1.904162722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.990023826,84.92104557,83.24708575,86.8252083,130.1798948,0,0.181832795,79.52346685,-0.181832795,100.4765332,0.7750221,0,184.1393812,86.8252083,240.9647436,8,8,31% -8/21/2018 17:00,49.9047903,108.1057345,620.9665352,804.4413775,102.858283,425.6858737,321.2480394,104.4378343,99.75672622,4.68110804,153.6620825,0,153.6620825,3.101556738,150.5605258,0.871002903,1.886801008,-0.934600618,0.934600618,0.689979808,0.165642232,3.470256332,111.6153726,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.88995968,2.247067299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.514188899,107.2889416,98.40414858,109.5360089,321.2480394,0,0.399343008,66.46288684,-0.399343008,113.5371132,0.924794352,0,395.4925211,109.5360089,467.1816482,8,9,18% -8/21/2018 18:00,39.20488739,122.5142753,773.3863572,851.5499186,113.5283528,623.9646937,508.0295266,115.9351671,110.1050541,5.83011304,190.939775,0,190.939775,3.423298712,187.5164763,0.684254368,2.138277485,-0.496418926,0.496418926,0.615046326,0.14679384,3.915242458,125.927656,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.837166,2.480168263,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.836579833,121.0464529,108.6737459,123.5266211,508.0295266,0,0.596593947,53.37365546,-0.596593947,126.6263445,0.966190903,0,599.5272529,123.5266211,680.3729559,8,10,13% -8/21/2018 19:00,30.50035094,143.4042757,874.8331941,875.9404838,120.1000535,788.8612515,665.7877956,123.073456,116.4785938,6.594862148,215.7348961,0,215.7348961,3.621459736,212.1134364,0.532331547,2.502876773,-0.16824354,0.16824354,0.558925029,0.137283375,4.085367331,131.3994567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9636548,2.623735251,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.959834724,126.3061558,114.9234896,128.9298911,665.7877956,0,0.760083371,40.52845177,-0.760083371,139.4715482,0.984217743,0,770.2036508,128.9298911,854.5856859,8,11,11% -8/21/2018 20:00,26.06183362,173.2700729,917.820722,885.0186746,122.7903632,903.6166396,777.6099386,126.006701,119.0877807,6.918920292,226.2388427,0,226.2388427,3.7025825,222.5362602,0.454864806,3.024133267,0.112261627,-0.112261627,0.510955821,0.133784693,3.987944201,128.265994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.4717046,2.682508417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.889251998,123.2941522,117.3609566,125.9766607,777.6099386,0,0.878636757,28.52164897,-0.878636757,151.478351,0.993093662,0,889.6004583,125.9766607,972.0496632,8,12,9% -8/21/2018 21:00,28.06052908,205.5849914,899.2253652,881.1736036,121.6327181,956.7066377,831.9628542,124.7437835,117.9650428,6.778740638,221.6952759,0,221.6952759,3.667675227,218.0276007,0.489748622,3.588134992,0.380762878,-0.380762878,0.465039403,0.135263887,3.642896929,117.1680876,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3924862,2.657218216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.639266424,112.6264225,116.0317526,115.2836407,831.9628542,0,0.944153173,19.23884796,-0.944153173,160.761152,0.997042491,0,945.5340693,115.2836407,1020.984907,8,13,8% -8/21/2018 22:00,35.40402693,230.0230962,820.3691524,863.4104465,116.6144528,941.38245,822.100064,119.282386,113.0980968,6.184289196,202.4243549,0,202.4243549,3.516356013,198.9079989,0.617916838,4.014660385,0.66800213,-0.66800213,0.415918597,0.142148754,3.085620427,99.24415968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7141925,2.547587961,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.235521495,95.39726122,110.949714,97.94484918,822.100064,0,0.95215441,17.79531052,-0.95215441,162.2046895,0.997487509,0,930.9842589,97.94484918,995.0872038,8,14,7% -8/21/2018 23:00,45.50735269,246.567418,686.9820658,826.6923863,107.6213858,855.3078187,745.7528537,109.5549649,104.376204,5.178760994,169.8119373,0,169.8119373,3.245181863,166.5667554,0.794253138,4.303413273,1.016042527,-1.016042527,0.356400184,0.156658217,2.367860985,76.15854874,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.3303774,2.351123213,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.715507223,73.20649388,102.0458846,75.55761709,745.7528537,0,0.902092321,25.56552882,-0.902092321,154.4344712,0.994573301,0,843.7517617,75.55761709,893.2027109,8,15,6% -8/21/2018 0:00,56.80771666,258.6487786,509.1315534,758.0892783,94.11518209,699.6127063,604.4973955,95.11531081,91.2772621,3.838048708,126.2827596,0,126.2827596,2.837919988,123.4448396,0.991481696,4.514272793,1.511227217,-1.511227217,0.271718615,0.184854349,1.559570354,50.16114356,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73917623,2.056063371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.129903412,48.21679916,88.86907964,50.27286253,604.4973955,0,0.797396049,37.11784209,-0.797396049,142.8821579,0.987295902,0,685.686881,50.27286253,718.5894641,8,16,5% -8/21/2018 1:00,68.56024216,268.5570996,301.863663,623.4424701,73.98125012,476.3210158,402.2949975,74.02601827,71.75044247,2.2755758,75.42114761,0,75.42114761,2.230807653,73.19033996,1.196601962,4.687205617,2.414096345,-2.414096345,0.117318901,0.245081668,0.759240989,24.41980008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.96925446,1.616212551,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.550067512,23.47324069,69.51932197,25.08945324,402.2949975,0,0.645280065,49.81332298,-0.645280065,130.186677,0.972514265,0,460.7569459,25.08945324,477.1774912,8,17,4% -8/21/2018 2:00,80.33424629,277.6069325,92.62282832,320.8767341,38.74756554,184.7744364,146.4970229,38.27741348,37.57918347,0.698230004,23.62585914,0,23.62585914,1.168382064,22.45747708,1.4020971,4.845154998,5.202899395,-5.202899395,0,0.418337102,0.292095516,9.394795868,0.264486585,1,0.189884941,0,0.940243737,0.9790057,0.724496596,1,36.40497233,0.846488828,0.040208821,0.312029739,0.892310029,0.616806624,0.961238037,0.922476074,0.20145056,9.030635137,36.60642289,9.877123965,107.7505256,0,0.456552337,62.83514111,-0.456552337,117.1648589,0.940483531,0,137.9440176,9.877123965,144.4083977,8,18,5% -8/21/2018 3:00,92.00720627,286.6691196,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605828685,5.00332,-22.8865401,22.8865401,0,#DIV/0!,0,0,1,0.709638482,0,0.04366603,0.961238037,1,0.608141082,0.883644486,0,0,0.115824807,0.180084606,0.724496596,0.448993192,0.980291622,0.941529659,0,0,0,0,0,0,0.241252307,76.03953568,-0.241252307,103.9604643,0.842748096,0,0,0,0,8,19,0% -8/21/2018 4:00,103.0266412,296.4729274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798154107,5.174428726,-2.976759952,2.976759952,0.960790378,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.017676019,88.987186,-0.017676019,91.012814,0,0,0,0,0,8,20,0% -8/21/2018 5:00,113.0711979,307.7585122,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973464693,5.371399339,-1.252491433,1.252491433,0.744342339,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.200371528,101.5586858,0.200371528,78.44131417,0,0.800463549,0,0,0,8,21,0% -8/21/2018 6:00,121.5401845,321.2876013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121276394,5.607526489,-0.522704082,0.522704082,0.619541352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.398033127,113.4552772,0.398033127,66.54472282,0,0.924382315,0,0,0,8,22,0% -8/21/2018 7:00,127.5989664,337.5687499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227022085,5.891686138,-0.055086309,0.055086309,0.539574003,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561840229,124.1831576,0.561840229,55.81684241,0,0.961006729,0,0,0,8,23,0% -8/22/2018 8:00,130.3196132,356.1654398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27450633,6.216259607,0.328064221,-0.328064221,0.474051404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680630935,132.8929662,0.680630935,47.10703377,0,0.976538749,0,0,0,8,0,0% -8/22/2018 9:00,129.1493914,15.23954983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254082107,0.265980321,0.708744514,-0.708744514,0.408951239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746310837,138.2718138,0.746310837,41.7281862,0,0.983003787,0,0,0,8,1,0% -8/22/2018 10:00,124.3389369,32.59486989,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170123837,0.568887799,1.16279033,-1.16279033,0.331304832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754404925,138.9734005,0.754404925,41.02659946,0,0.983722596,0,0,0,8,2,0% -8/22/2018 11:00,116.7352372,47.21741237,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037414243,0.82409931,1.830349745,-1.830349745,0.217145448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704362958,134.7781014,0.704362958,45.22189863,0,0.979013871,0,0,0,8,3,0% -8/22/2018 12:00,107.2462245,59.33347327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.871799728,1.035564465,3.165615702,-3.165615702,0,#DIV/0!,0,0,0.011074461,1,0.305974202,0,0.923430734,0.962192697,0.724496596,1,0,0,0.001884039,0.312029739,0.994671372,0.719167968,0.961238037,0.922476074,0,0,0,0,0,0,-0.599597507,126.8410766,0.599597507,53.15892336,0,0.966610727,0,0,0,8,4,0% -8/22/2018 13:00,96.56789258,69.66039588,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685427677,1.215803266,8.685220486,-8.685220486,0,#DIV/0!,0,0,0.488518909,1,0.114633347,0,0.949563893,0.988325856,0.724496596,1,0,0,0.0678418,0.312029739,0.825694429,0.550191025,0.961238037,0.922476074,0,0,0,0,0,0,-0.447251983,116.5675102,0.447251983,63.43248976,0,0.938206197,0,0,0,8,5,0% -8/22/2018 14:00,85.01605757,78.95868638,26.21982455,119.0475721,15.87738241,15.59627686,0,15.59627686,15.39862075,0.197656113,37.1852371,30.34917542,6.836061686,0.478761661,6.357300025,1.483810122,1.37808905,-11.32717759,11.32717759,0,0.605548766,0.119690415,3.849655186,1,0.318436696,0,0.088054954,0.961238037,1,0.505311297,0.780814701,14.80173998,0.331822194,0.115824807,0.06394952,0.724496596,0.448993192,0.993870699,0.955108736,0.086715298,3.724356483,14.88845527,4.056178677,0,20.68488429,-0.254933174,104.7696254,0.254933174,75.23037456,0,0.85387017,14.88845527,21.71838435,29.10270346,8,6,95% -8/22/2018 15:00,73.37719451,87.95300325,214.3436037,531.4064788,62.32426562,62.06077168,0,62.06077168,60.44495906,1.615812624,76.67432136,22.8249265,53.84939486,1.879306561,51.9700883,1.28067364,1.535069494,-3.186471704,3.186471704,0.924927556,0.290768022,1.529780655,49.20300445,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,58.10199379,1.361551206,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.108320877,47.29579941,59.21031466,48.65735061,0,22.8249265,-0.042951916,92.46172084,0.042951916,87.53827916,0,0,59.21031466,48.65735061,91.05557749,8,7,54% -8/22/2018 16:00,61.58901053,97.43467053,426.9736121,715.0211744,86.77160032,216.1524817,128.7786578,87.37382386,84.15511641,3.218707442,106.1411795,0,106.1411795,2.616483903,103.5246956,1.074931017,1.700555806,-1.640712635,1.640712635,0.810732075,0.203224738,2.733313483,87.91275732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.89309889,1.895633681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.980276314,84.50508626,82.87337521,86.40071994,128.7786578,0,0.180104677,79.62414298,-0.180104677,100.375857,0.772383667,0,182.3399072,86.40071994,238.8874504,8,8,31% -8/22/2018 17:00,50.07285093,108.4934957,618.5407204,804.0472839,102.4926619,423.934645,319.8696938,104.0649512,99.40212994,4.662821223,153.0628908,0,153.0628908,3.090531912,149.9723589,0.873936115,1.893568717,-0.935172533,0.935172533,0.690077611,0.165700751,3.45716479,111.1943036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.54910824,2.23907985,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.504704122,106.8841941,98.05381236,109.1232739,319.8696938,0,0.397824482,66.55775342,-0.397824482,113.4422466,0.924316433,0,393.7146267,109.1232739,465.133627,8,9,18% -8/22/2018 18:00,39.40917036,122.9460803,770.9379579,851.3392966,113.1659974,622.2820701,506.7167891,115.565281,109.753625,5.811655972,190.3352059,0,190.3352059,3.412372358,186.9228335,0.687819778,2.145813903,-0.495115102,0.495115102,0.614823359,0.146790019,3.901733375,125.4931575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.499359,2.472252158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.826792548,120.6287963,108.3261516,123.1010485,506.7167891,0,0.595199577,53.47313921,-0.595199577,126.5268608,0.965994564,0,597.8118153,123.1010485,678.3789895,8,10,13% -8/22/2018 19:00,30.76537357,143.8271044,872.2664639,875.7850467,119.7313555,787.1708576,664.4743311,122.6965265,116.1210134,6.575513052,215.101445,0,215.101445,3.610342131,211.4911029,0.536957064,2.510256526,-0.165813187,0.165813187,0.558509415,0.137264655,4.07096896,130.9363556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.619935,2.615680584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.949403153,125.8610054,114.5693381,128.476686,664.4743311,0,0.758718516,40.64864502,-0.758718516,139.351355,0.984099407,0,768.4781335,128.476686,852.5635549,8,11,11% -8/22/2018 20:00,26.39049507,173.4815123,915.0442005,884.8493569,122.4089685,901.8096985,776.1938223,125.6158762,118.7178865,6.8979897,225.5541425,0,225.5541425,3.691082042,221.8630604,0.46060103,3.027823581,0.115679328,-0.115679328,0.510371359,0.133773831,3.972351251,127.7644711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,114.1161482,2.674176375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.877954959,122.8120694,116.9941031,125.4862457,776.1938223,0,0.877204483,28.69304117,-0.877204483,151.3069588,0.993000747,0,887.7551487,125.4862457,969.8833868,8,12,9% -8/22/2018 21:00,28.3973667,205.4620475,896.1614323,880.9302526,121.2331369,954.6636882,830.3305343,124.3331539,117.5775105,6.755643417,220.940341,0,220.940341,3.65562638,217.2847147,0.495627548,3.585989217,0.385359624,-0.385359624,0.464253313,0.135280467,3.625952267,116.623089,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0199754,2.648488868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.626990074,112.1025491,115.6469654,114.751038,830.3305343,0,0.942561039,19.51380436,-0.942561039,160.4861956,0.996953038,0,943.4475138,114.751038,1018.549773,8,13,8% -8/22/2018 22:00,35.70724782,229.7512623,816.9615114,863.0081463,116.1905225,938.980237,820.1346865,118.8455505,112.6869495,6.158600959,201.5853498,0,201.5853498,3.50357295,198.0817769,0.623209041,4.009915988,0.674344321,-0.674344321,0.414834019,0.142222762,3.067340112,98.65620193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3189821,2.538326676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.22227747,94.83209386,110.5412596,97.37042054,820.1346865,0,0.95032091,18.13589521,-0.95032091,161.8641048,0.997386194,0,928.5322732,97.37042054,992.259266,8,14,7% -8/22/2018 23:00,45.78016409,246.2788203,683.2033335,825.9667135,107.1631977,852.413013,743.3309058,109.0821072,103.9318319,5.150275314,168.8819238,0,168.8819238,3.2313658,165.650558,0.799014595,4.298376292,1.025444011,-1.025444011,0.354792436,0.156854032,2.348504138,75.53596599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.90323003,2.341113522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701483253,72.60804366,101.6047133,74.94915719,743.3309058,0,0.899952618,25.84816027,-0.899952618,154.1518397,0.994441519,0,840.8038288,74.94915719,889.8565531,8,15,6% -8/22/2018 0:00,57.06334255,258.3774322,504.9967276,756.6466832,93.59920792,696.047344,601.4636189,94.5837251,90.77684646,3.806878644,125.2646647,0,125.2646647,2.822361463,122.4423032,0.99594321,4.509536906,1.527127777,-1.527127777,0.268999459,0.185346167,1.539835235,49.5263943,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.25815768,2.044791272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115605386,47.60665403,88.37376307,49.6514453,601.4636189,0,0.794906833,37.3535433,-0.794906833,142.6464567,0.987099547,0,682.0782287,49.6514453,714.5741066,8,16,5% -8/22/2018 1:00,68.80966508,268.30582,297.4834651,620.1221737,73.32958131,471.7426102,398.3816304,73.36097989,71.11842387,2.242556018,74.33946769,0,74.33946769,2.211157434,72.12831026,1.200955213,4.682819962,2.448907957,-2.448907957,0.111365764,0.246499688,0.740971514,23.83219097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36173415,1.601976034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.53683134,22.90840846,68.89856549,24.51038449,398.3816304,0,0.642424424,50.02715882,-0.642424424,129.9728412,0.972169833,0,456.1931687,24.51038449,472.2347251,8,17,4% -8/22/2018 2:00,80.58463892,277.3723295,88.66643937,311.9256602,37.63837783,178.5863912,141.4145443,37.17184694,36.50344187,0.668405073,22.63314073,0,22.63314073,1.134935962,21.49820477,1.406467276,4.841060404,5.355289067,-5.355289067,0,0.424494071,0.283733991,9.125860467,0.278319471,1,0.184605237,0,0.940939146,0.979701109,0.724496596,1,35.36865572,0.822257241,0.042066437,0.312029739,0.887642146,0.612138742,0.961238037,0.922476074,0.195440712,8.7721242,35.56409644,9.594381441,102.0561231,0,0.453359766,63.04055175,-0.453359766,116.9594483,0.939712313,0,131.4674919,9.594381441,137.7468227,8,18,5% -8/22/2018 3:00,92.26975291,286.4485887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610410988,4.999471011,-20.29474471,20.29474471,0,#DIV/0!,0,0,1,0.666751027,0,0.04923402,0.961238037,1,0.59438356,0.869886964,0,0,0.115824807,0.164534034,0.724496596,0.448993192,0.982288135,0.943526172,0,0,0,0,0,0,0.23768596,76.24999602,-0.23768596,103.750004,0.839638395,0,0,0,0,8,19,0% -8/22/2018 4:00,103.3053293,296.267724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803018131,5.170847252,-2.923146162,2.923146162,0.969958876,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.013827344,89.2077263,-0.013827344,90.7922737,0,0,0,0,0,8,20,0% -8/22/2018 5:00,113.3711315,307.5773266,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978699521,5.368237053,-1.24070942,1.24070942,0.742327496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.204429855,101.7961254,0.204429855,78.20387463,0,0.805417329,0,0,0,8,21,0% -8/22/2018 6:00,121.863288,321.151626,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126915613,5.605153272,-0.519767392,0.519767392,0.619039149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.402214087,113.7166649,0.402214087,66.28333506,0,0.925688094,0,0,0,8,22,0% -8/22/2018 7:00,127.9395109,337.5135571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232965709,5.890722842,-0.055648699,0.055648699,0.539670178,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.566048436,124.4751283,0.566048436,55.52487173,0,0.961668336,0,0,0,8,23,0% -8/23/2018 8:00,130.6600803,356.2249945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.280448603,6.217299032,0.325302263,-0.325302263,0.474523726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684769184,133.2174575,0.684769184,46.78254254,0,0.976982695,0,0,0,8,0,0% -8/23/2018 9:00,129.4657919,15.41272991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259604337,0.269002884,0.703799642,-0.703799642,0.409796862,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750286783,138.615226,0.750286783,41.38477399,0,0.983358815,0,0,0,8,1,0% -8/23/2018 10:00,124.615303,32.84283282,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174947335,0.573215568,1.154630815,-1.154630815,0.332700191,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758137429,139.3002717,0.758137429,40.69972828,0,0.984048897,0,0,0,8,2,0% -8/23/2018 11:00,116.9696354,47.49944848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041505263,0.829021769,1.815586472,-1.815586472,0.219670117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.707787665,135.0551976,0.707787665,44.94480241,0,0.979357345,0,0,0,8,3,0% -8/23/2018 12:00,107.4452864,59.62742788,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875274013,1.040694941,3.130183475,-3.130183475,0,#DIV/0!,0,0,0.005112934,1,0.309222184,0,0.922919617,0.96168158,0.724496596,1,0,0,0.000872268,0.312029739,0.997529526,0.722026122,0.961238037,0.922476074,0,0,0,0,0,0,-0.602671272,127.061454,0.602671272,52.93854604,0,0.967036032,0,0,0,8,4,0% -8/23/2018 13:00,96.74085636,69.95996209,0,0,0,0,0,0,0,0,0,0,0,0,0,1.688446465,1.221031683,8.460522529,-8.460522529,0,#DIV/0!,0,0,0.478264737,1,0.117650166,0,0.949215031,0.987976994,0.724496596,1,0,0,0.066682532,0.312029739,0.828367228,0.552863824,0.961238037,0.922476074,0,0,0,0,0,0,-0.449955845,116.740851,0.449955845,63.25914896,0,0.938877985,0,0,0,8,5,0% -8/23/2018 14:00,85.16827918,79.26653534,24.59478964,112.904324,15.08491245,14.8154526,0,14.8154526,14.63004668,0.185405913,35.45797925,29.03982199,6.418157265,0.454865768,5.963291498,1.48646689,1.383462028,-11.67574827,11.67574827,0,0.61333773,0.113716442,3.657511671,1,0.345045765,0,0.085439109,0.961238037,1,0.51093534,0.786438744,14.06295735,0.31448394,0.115824807,0.070307129,0.724496596,0.448993192,0.993208154,0.954446191,0.082387175,3.539816026,14.14534453,3.854299966,0,19.01975438,-0.25720735,104.9044205,0.25720735,75.09557952,0,0.855604311,14.14534453,20.12768381,27.31851103,8,6,93% -8/23/2018 15:00,73.52579565,88.27683116,211.7911083,528.8104661,61.82911296,61.56130792,0,61.56130792,59.96473708,1.596570835,76.98673943,23.77115731,53.21558212,1.864375881,51.35120624,1.283267219,1.540721357,-3.210942941,3.210942941,0.920742728,0.291934413,1.506972323,48.46941009,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.64038615,1.350733979,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.091796318,46.5906406,58.73218247,47.94137458,0,23.77115731,-0.044952131,92.57643558,0.044952131,87.42356442,0,0,58.73218247,47.94137458,90.10885331,8,7,53% -8/23/2018 16:00,61.74140954,97.78558593,424.4655472,714.0890274,86.37885799,214.3507748,127.3767575,86.97401731,83.77421672,3.19980059,105.5212275,0,105.5212275,2.604641273,102.9165862,1.077590881,1.706680435,-1.64591165,1.64591165,0.811621159,0.203500281,2.719690689,87.47460143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.52696362,1.887053735,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.970406646,84.08391415,82.49737026,85.97096789,127.3767575,0,0.178376579,79.72478564,-0.178376579,100.2752144,0.769694141,0,180.5385143,85.97096789,236.8047933,8,8,31% -8/23/2018 17:00,50.24262553,108.8840477,616.0819158,803.6385442,102.124566,422.1703256,318.4809063,103.6894193,99.04513358,4.644285715,152.4556257,0,152.4556257,3.079432466,149.3761932,0.87689924,1.900385136,-0.935700867,0.935700867,0.690167962,0.16576459,3.443863916,110.7665017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.20594976,2.231038339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.495067684,106.4729747,97.70101745,108.704013,318.4809063,0,0.396298695,66.65300501,-0.396298695,113.346995,0.923832539,0,391.9240419,108.704013,463.0686443,8,9,18% -8/23/2018 18:00,39.61592437,123.3796623,768.4460238,851.1159185,112.8007473,620.5757126,505.3834533,115.1922593,109.3993886,5.79287072,189.719994,0,189.719994,3.401358721,186.3186352,0.691428316,2.153381338,-0.493755144,0.493755144,0.614590792,0.146790723,3.887973747,125.0506005,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1588535,2.464272815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.816823745,120.2033938,107.9756773,122.6676666,505.3834533,0,0.593789215,53.57363395,-0.593789215,126.426366,0.965795035,0,596.0725073,122.6676666,676.3560418,8,10,13% -8/23/2018 19:00,31.03346943,144.2495881,869.6458676,875.6168974,119.3592617,785.4451604,663.1292629,122.3158975,115.7601396,6.55575789,214.4548311,0,214.4548311,3.59912213,210.855709,0.54163622,2.517630257,-0.163317924,0.163317924,0.558082699,0.137250421,4.056283644,130.4640254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.2730493,2.607551732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.938763692,125.4069836,114.211813,128.0145354,663.1292629,0,0.757328079,40.77078991,-0.757328079,139.2292101,0.983978415,0,766.7166942,128.0145354,850.4996474,8,11,11% -8/23/2018 20:00,26.7222893,173.6931482,912.2043656,884.6661287,122.0236529,899.9554902,774.7347189,125.2207713,118.3441895,6.876581825,224.8539729,0,224.8539729,3.679463353,221.1745096,0.466391932,3.031517324,0.11917415,-0.11917415,0.50977371,0.13376789,3.956443044,127.2528085,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.7569364,2.665758674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.866429517,122.3202398,116.6233659,124.9859985,774.7347189,0,0.875736839,28.86769945,-0.875736839,151.1323005,0.992905222,0,885.8615143,124.9859985,967.6623506,8,12,9% -8/23/2018 21:00,28.73783136,205.343494,893.0262925,880.6703379,120.829098,952.5617251,828.6440608,123.9176643,117.1856549,6.732009409,220.1680068,0,220.1680068,3.643443117,216.5245637,0.501569777,3.583920067,0.390054248,-0.390054248,0.463450485,0.135302957,3.608674933,116.0673906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6433089,2.639662135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.614472705,111.5683907,115.2577816,114.2080528,828.6440608,0,0.940924231,19.79264723,-0.940924231,160.2073528,0.996860758,0,941.3005286,114.2080528,1016.047415,8,13,8% -8/23/2018 22:00,36.01467391,229.4829586,813.4769407,862.584184,115.7615501,936.5078962,818.1046511,118.4032451,112.2709123,6.132332793,200.7275402,0,200.7275402,3.49063785,197.2369024,0.628574639,4.005233205,0.680823018,-0.680823018,0.413726097,0.142304648,3.048723579,98.05743021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9190713,2.52895524,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208789854,94.25653171,110.1278611,96.78548695,818.1046511,0,0.94843456,18.47996339,-0.94843456,161.5200366,0.99728155,0,926.0085356,96.78548695,989.3527011,8,14,7% -8/23/2018 23:00,46.05719812,245.9916942,679.3447147,825.2091042,106.6991825,849.4374323,740.8344364,108.6029959,103.4818085,5.121187416,167.9323653,0,167.9323653,3.217374032,164.7149913,0.803849751,4.293364996,1.035063198,-1.035063198,0.353147458,0.157061916,2.32882596,74.90304817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.47065047,2.330976534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.687226481,71.99965897,101.1578769,74.33063551,740.8344364,0,0.897753591,26.13565998,-0.897753591,153.86434,0.99430543,0,837.77358,74.33063551,886.4214943,8,15,6% -8/23/2018 0:00,57.3229656,258.1062988,500.7827118,755.1483419,93.07587303,692.3892086,598.344805,94.04440366,90.26929204,3.775111613,124.2271473,0,124.2271473,2.806580985,121.4205663,1.000474487,4.504804735,1.543456671,-1.543456671,0.266207054,0.185860795,1.519823672,48.88275366,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.77027707,2.03335837,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101107077,46.98796216,87.87138415,49.02132053,598.344805,0,0.792353994,37.5939567,-0.792353994,142.4060433,0.986896892,0,678.3760123,49.02132053,710.4594862,8,16,5% -8/23/2018 1:00,69.06282221,268.054069,293.0318455,616.6771762,72.66589137,467.050931,394.3671866,72.68374446,70.47474663,2.208997829,73.24010829,0,73.24010829,2.191144733,71.04896356,1.205373638,4.678426077,2.484966583,-2.484966583,0.105199376,0.247979503,0.722544612,23.23951845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.7430071,1.5874769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523481112,22.33870909,68.26648821,23.92618599,394.3671866,0,0.639503458,50.24519644,-0.639503458,129.7548036,0.97181434,0,451.5181753,23.92618599,467.1773855,8,17,3% -8/23/2018 2:00,80.8384359,277.1368531,84.68999474,302.6638113,36.50018106,172.2683504,136.2303556,36.03799488,35.39956593,0.638428954,21.63468486,0,21.63468486,1.10061513,20.53406973,1.410896869,4.836950565,5.517981245,-5.517981245,0,0.430985752,0.275153783,8.849891483,0.292524585,1,0.179279915,0,0.941634297,0.98039626,0.724496596,1,34.30421247,0.797391915,0.04395165,0.312029739,0.882932802,0.607429398,0.961238037,0.922476074,0.189311558,8.506852315,34.49352403,9.30424423,96.37962736,0,0.45010454,63.24960868,-0.45010454,116.7503913,0.938914695,0,124.9857725,9.30424423,131.0752142,8,18,5% -8/23/2018 3:00,92.53570073,286.2269231,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615052653,4.995602216,-18.2156096,18.2156096,0,#DIV/0!,0,0,1,0.621957665,0,0.05484292,0.961238037,1,0.580773241,0.856276645,0,0,0.115824807,0.149158974,0.724496596,0.448993192,0.984208741,0.945446778,0,0,0,0,0,0,0.234057814,76.46390937,-0.234057814,103.5360906,0.836377565,0,0,0,0,8,19,0% -8/23/2018 4:00,103.5873521,296.0612332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807940357,5.167243308,-2.870967004,2.870967004,0.978882037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.009922382,89.43148003,-0.009922382,90.56851997,0,0,0,0,0,8,20,0% -8/23/2018 5:00,113.6744182,307.3948969,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983992874,5.365053056,-1.229015679,1.229015679,0.740327749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.208537023,102.0366318,0.208537023,77.96336816,0,0.810234422,0,0,0,8,21,0% -8/23/2018 6:00,122.1898197,321.0149248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132614666,5.602767386,-0.516805948,0.516805948,0.618532712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.406435021,113.9810843,0.406435021,66.01891575,0,0.926979105,0,0,0,8,22,0% -8/23/2018 7:00,128.283473,337.4590727,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238968979,5.889771909,-0.056168634,0.056168634,0.539759092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.570286936,124.7702371,0.570286936,55.22976289,0,0.962324837,0,0,0,8,23,0% -8/24/2018 8:00,131.0035913,356.2875643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.286444,6.218391081,0.322589623,-0.322589623,0.474987615,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688927901,133.5453028,0.688927901,46.45469724,0,0.977423465,0,0,0,8,0,0% -8/24/2018 9:00,129.7844094,15.59082981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.265165262,0.272111313,0.698916111,-0.698916111,0.410631995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754273904,138.9619655,0.754273904,41.03803455,0,0.983711083,0,0,0,8,1,0% -8/24/2018 10:00,124.892967,33.09619495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179793487,0.577637572,1.146563814,-1.146563814,0.33407973,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.761872984,139.6295954,0.761872984,40.37040458,0,0.984372263,0,0,0,8,2,0% -8/24/2018 11:00,117.2046812,47.78641991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045607586,0.834030365,1.801013052,-1.801013052,0.222162319,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.711209029,135.3333706,0.711209029,44.66662942,0,0.97969718,0,0,0,8,3,0% -8/24/2018 12:00,107.6446766,59.9256654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.878754029,1.045900168,3.095418007,-3.095418007,0.000806034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605737467,127.2819281,0.605737467,52.71807185,0,0.967455989,0,0,0,8,4,0% -8/24/2018 13:00,96.91408659,70.26328695,0,0,0,0,0,0,0,0,0,0,0,0,0,1.691469903,1.2263257,8.246467637,-8.246467637,0,#DIV/0!,0,0,0.468106419,1,0.120674838,0,0.948863158,0.987625121,0.724496596,1,0,0,0.065524894,0.312029739,0.831046951,0.555543546,0.961238037,0.922476074,0,0,0,0,0,0,-0.452650366,116.9138562,0.452650366,63.08614375,0,0.939539468,0,0,0,8,5,0% -8/24/2018 14:00,85.32069748,79.57779192,23.00822353,106.7929771,14.2962149,14.03857698,0,14.03857698,13.86513127,0.173445708,33.71924671,27.7095529,6.009693801,0.431083627,5.578610174,1.489127091,1.388894481,-12.0469761,12.0469761,0,0.6213524,0.107770907,3.466282819,1,0.371190964,0,0.082818513,0.961238037,1,0.516624519,0.792127923,13.32769157,0.297388881,0.115824807,0.076735658,0.724496596,0.448993192,0.992528543,0.95376658,0.078079655,3.3558979,13.40577122,3.653286781,0,17.42401725,-0.259469805,105.0386046,0.259469805,74.96139543,0,0.85729935,13.40577122,18.59088545,25.57313393,8,6,91% -8/24/2018 15:00,73.67506494,88.60384335,209.227205,526.1651893,61.33038454,61.05829021,0,61.05829021,59.48104716,1.577243049,77.28075343,24.70185784,52.57889559,1.849337379,50.72955821,1.28587246,1.546428796,-3.235813818,3.235813818,0.916489558,0.293128155,1.48413653,47.7349325,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,57.175445,1.339838636,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.075251864,45.8846328,58.25069687,47.22447144,0,24.70185784,-0.046946963,92.69085192,0.046946963,87.30914808,0,0,58.25069687,47.22447144,89.15816893,8,7,53% -8/24/2018 16:00,61.8949282,98.13949347,421.9343954,713.1348303,85.98373325,212.5456609,125.9739347,86.57172614,83.39100645,3.180719698,104.895606,0,104.895606,2.592726804,102.3028792,1.080270287,1.712857287,-1.651116596,1.651116596,0.812511257,0.203784603,2.705897333,87.03095968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.15860733,1.878421743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.960413406,83.65746882,82.11902073,85.53589057,125.9739347,0,0.176648131,79.82541658,-0.176648131,100.1745834,0.766951435,0,178.7349107,85.53589057,234.7164403,8,8,31% -8/24/2018 17:00,50.4141372,109.2772152,613.5895955,803.2147725,101.7539509,420.3922967,317.0811053,103.3111914,98.68569384,4.625497552,151.8401584,0,151.8401584,3.068257052,148.7719013,0.879892684,1.907247203,-0.936186743,0.936186743,0.690251052,0.165833892,3.430351899,110.3319088,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.86044261,2.222941789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.485278273,106.0552274,97.34572089,108.2781692,317.0811053,0,0.394765032,66.74867949,-0.394765032,113.2513205,0.923342378,0,390.1201428,108.2781692,460.986039,8,9,18% -8/24/2018 18:00,39.82516162,123.8147916,765.9100161,850.8795026,112.4325642,618.844821,504.0287602,114.8160608,109.0423076,5.773753223,189.0940075,0,189.0940075,3.390256643,185.7037508,0.695080195,2.160975776,-0.49233992,0.49233992,0.614348775,0.146796049,3.873962375,124.5999466,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8156137,2.456229397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.806672553,119.7702081,107.6222862,122.2264375,504.0287602,0,0.59236209,53.67519097,-0.59236209,126.324809,0.965592168,0,594.3085093,122.2264375,674.3032682,8,10,13% -8/24/2018 19:00,31.30461452,144.6714713,866.9709706,875.4358117,118.983743,783.683304,661.7517665,121.9315375,115.3959441,6.535593387,213.7949481,0,213.7949481,3.587798854,210.2071493,0.546368594,2.524993508,-0.160758482,0.160758482,0.557645009,0.137240746,4.041311216,129.9824606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.9229708,2.599348056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.927916219,124.9440853,113.850887,127.5434333,661.7517665,0,0.755911236,40.89494461,-0.755911236,139.1050554,0.983854668,0,764.9184513,127.5434333,848.3930775,8,11,11% -8/24/2018 20:00,27.05714475,173.9047672,909.3009948,884.4687971,121.6344,898.0532303,773.2318613,124.821369,117.9666741,6.854694989,224.1382797,0,224.1382797,3.667725943,220.4705537,0.472236262,3.035210773,0.122745506,-0.122745506,0.509162972,0.133766927,3.940220797,126.7310452,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.3940542,2.65725496,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.854676554,121.8187011,116.2487307,124.4759561,773.2318613,0,0.874233058,29.04566215,-0.874233058,150.9543379,0.992807013,0,883.9187452,124.4759561,965.385769,8,12,9% -8/24/2018 21:00,29.0818106,205.2291615,889.8200289,880.3936745,120.4206017,950.4001556,826.9028401,123.4973155,116.7894762,6.70783924,219.3782934,0,219.3782934,3.631125445,215.747168,0.507573347,3.581924588,0.39484642,-0.39484642,0.462630975,0.135331413,3.591067792,115.5010844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2624869,2.630738024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.601716391,111.0240356,114.8642032,113.6547737,826.9028401,0,0.939242141,20.07532901,-0.939242141,159.924671,0.996765591,0,939.0925017,113.6547737,1013.477278,8,13,8% -8/24/2018 22:00,36.32618447,229.2181747,809.9159016,862.1383433,115.3275543,933.9651261,816.0096349,117.9554912,111.850003,6.105488176,199.8510385,0,199.8510385,3.477551275,196.3734872,0.634011524,4.000611853,0.687438485,-0.687438485,0.412594785,0.142394481,3.02977552,97.44799551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.5144773,2.519474061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.195062051,93.6707199,109.7095394,96.19019396,816.0096349,0,0.946495004,18.82740596,-0.946495004,161.172594,0.997173519,0,923.4127389,96.19019396,986.367297,8,14,7% -8/24/2018 23:00,46.33834389,245.7060927,675.4071009,824.4192101,106.229375,846.3811256,738.2634542,108.1176714,103.0261674,5.09150402,166.9634788,0,166.9634788,3.2032076,163.7602712,0.808756671,4.288380309,1.044902074,-1.044902074,0.351464911,0.157281993,2.308833139,74.26001032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.03267088,2.320713002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.67274175,71.38154654,100.7054126,73.70225954,738.2634542,0,0.895495211,26.42789096,-0.895495211,153.572109,0.994164972,0,834.661079,73.70225954,882.8977338,8,15,6% -8/24/2018 0:00,57.58648103,257.8354353,496.4908731,753.593417,92.54520839,688.6386571,595.1412702,93.49738683,89.75462891,3.74275792,123.1705398,0,123.1705398,2.790579489,120.3799604,1.005073699,4.500077275,1.560222394,-1.560222394,0.263339946,0.18639861,1.499544778,48.23051472,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.27556329,2.02176534,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.086415087,46.36100529,87.36197837,48.38277063,595.1412702,0,0.789737884,37.83897695,-0.789737884,142.1610231,0.986687854,0,674.5806413,48.38277063,706.246197,8,16,5% -8/24/2018 1:00,69.31960911,267.8018922,288.510836,613.1045652,71.99009353,462.2462936,390.2520505,71.99424314,69.81932659,2.174916549,72.12355938,0,72.12355938,2.170766935,69.95279245,1.209855415,4.674024763,2.522320982,-2.522320982,0.098811398,0.249523015,0.703974149,22.64222853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11299243,1.572713255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510026875,21.7645713,67.6230193,23.33728456,390.2520505,0,0.636517933,50.46734215,-0.636517933,129.5326579,0.971447618,0,446.7324441,23.33728456,462.0062301,8,17,3% -8/24/2018 2:00,81.09551986,276.9005347,80.6992946,293.0890899,35.33272678,165.8243508,130.9486907,34.87566007,34.2673147,0.60834537,20.63189036,0,20.63189036,1.065412076,19.56647828,1.41538383,4.832826031,5.691961057,-5.691961057,0,0.437831916,0.266353019,8.566828675,0.307109257,1,0.173911567,0,0.942328673,0.981090637,0.724496596,1,33.21141808,0.771887422,0.045864034,0.312029739,0.878184296,0.602680892,0.961238037,0.922476074,0.18306191,8.234761578,33.39447999,9.006649,90.73313565,0,0.446788008,63.46220813,-0.446788008,116.5377919,0.938090103,0,118.5103365,9.006649,124.4050082,8,18,5% -8/24/2018 3:00,92.80494018,286.0041381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619751768,4.991713883,-16.51150806,16.51150806,0,#DIV/0!,0,0,1,0.575152878,0,0.060489934,0.961238037,1,0.567322607,0.842826011,0,0,0.115824807,0.133971314,0.724496596,0.448993192,0.986053387,0.947291423,0,0,0,0,0,0,0.230369404,76.68117895,-0.230369404,103.318821,0.832957289,0,0,0,0,8,19,0% -8/24/2018 4:00,103.8725967,295.8534515,0,0,0,0,0,0,0,0,0,0,0,0,0,1.812918815,5.163616831,-2.820193231,2.820193231,0.987564864,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.00596299,89.65834384,-0.00596299,90.34165616,0,0,0,0,0,8,20,0% -8/24/2018 5:00,113.9809442,307.2111976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989342761,5.361846898,-1.217417087,1.217417087,0.738344273,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.212690933,102.2800946,0.212690933,77.7199054,0,0.814917107,0,0,0,8,21,0% -8/24/2018 6:00,122.5196692,320.8774524,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138371626,5.600368039,-0.513823551,0.513823551,0.618022692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.41069368,114.2484181,0.41069368,65.75158187,0,0.928254762,0,0,0,8,22,0% -8/24/2018 7:00,128.6307505,337.4052511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.245030115,5.888832545,-0.056648164,0.056648164,0.539841096,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.574553438,125.0683652,0.574553438,54.93163483,0,0.962975893,0,0,0,8,23,0% -8/25/2018 8:00,131.3500507,356.3531298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292490858,6.219535414,0.31992509,-0.31992509,0.475443277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693104858,133.8763906,0.693104858,46.12360938,0,0.977860843,0,0,0,8,0,0% -8/25/2018 9:00,130.1051519,15.7738394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.270763274,0.275305433,0.694093046,-0.694093046,0.411456788,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758270137,139.3119334,0.758270137,40.68806663,0,0.984060439,0,0,0,8,1,0% -8/25/2018 10:00,125.171847,33.35491803,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184660862,0.582153141,1.138588263,-1.138588263,0.335443629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765609787,139.9612719,0.765609787,40.03872811,0,0.98469258,0,0,0,8,2,0% -8/25/2018 11:00,117.4403122,48.0782563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049720122,0.839123871,1.786626611,-1.786626611,0.224622545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714625577,135.6125222,0.714625577,44.38747776,0,0.980033291,0,0,0,8,3,0% -8/25/2018 12:00,107.8443553,60.22809652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88223908,1.051178586,3.061301569,-3.061301569,0.006640289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.608795003,127.5024247,0.608795003,52.49757527,0,0.967870548,0,0,0,8,4,0% -8/25/2018 13:00,97.08756404,70.5702711,0,0,0,0,0,0,0,0,0,0,0,0,0,1.694497655,1.231683585,8.042313291,-8.042313291,0,#DIV/0!,0,0,0.458042426,1,0.123707394,0,0.948508256,0.987270219,0.724496596,1,0,0,0.064368862,0.312029739,0.833733599,0.558230195,0.961238037,0.922476074,0,0,0,0,0,0,-0.455334866,117.0864821,0.455334866,62.91351785,0,0.940190706,0,0,0,8,5,0% -8/25/2018 14:00,85.473297,79.89234872,21.46199199,100.7246505,13.51242931,13.26676927,0,13.26676927,13.10497971,0.161789561,31.9728179,26.36165986,5.611158035,0.407449599,5.203708436,1.491790455,1.394384532,-12.44314751,12.44314751,0,0.629598097,0.1018624,3.276244927,1,0.396884512,0,0.080193169,0.961238037,1,0.522379087,0.797882492,12.59700497,0.280545126,0.115824807,0.083235809,0.724496596,0.448993192,0.991831496,0.953069533,0.073798962,3.17289105,12.67080393,3.453436176,0,15.89912537,-0.261720043,105.1721479,0.261720043,74.82785207,0,0.858956168,12.67080393,17.11008797,23.8690143,8,6,88% -8/25/2018 15:00,73.82501399,88.93392078,206.6517922,523.4692978,60.82798789,60.55162813,0,60.55162813,58.99379963,1.5578285,77.55606647,25.61675864,51.93930783,1.834188266,50.10511956,1.288489564,1.552189734,-3.261099952,3.261099952,0.912165374,0.294350159,1.461273526,46.9995797,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.70708414,1.328863155,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.058687695,45.17778373,57.76577184,46.50664688,0,25.61675864,-0.048936506,92.80497559,0.048936506,87.19502441,0,0,57.76577184,46.50664688,88.20344209,8,7,53% -8/25/2018 16:00,62.0495879,98.49625361,419.3797376,712.1579376,85.58617007,210.7367897,124.5698969,86.16689287,83.00543126,3.161461609,104.2642116,0,104.2642116,2.580738807,101.6834728,1.082969608,1.719083926,-1.656329932,1.656329932,0.81340279,0.204077981,2.691931358,86.58176593,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.78797779,1.86973648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950295105,83.22568671,81.7382729,85.09542319,124.5698969,0,0.174918919,79.92606025,-0.174918919,100.0739398,0.764153276,0,176.9287677,85.09542319,232.6220203,8,8,31% -8/25/2018 17:00,50.58740991,109.6728225,611.0632161,802.7755669,101.38077,418.5999058,315.6696874,102.9302184,98.32376576,4.606452637,151.2163557,0,151.2163557,3.057004272,148.1593514,0.882916863,1.914151853,-0.936631415,0.936631415,0.690327095,0.165908808,3.416626915,109.8904662,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.51254357,2.214789188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475334569,105.630896,96.98787814,107.8456852,315.6696874,0,0.393222839,66.84481692,-0.393222839,113.1551831,0.922845636,0,388.3022716,107.8456852,458.8851156,8,9,18% -8/25/2018 18:00,40.03689408,124.2512394,763.3293941,850.6297595,112.0614093,617.0885733,502.6519296,114.4366438,108.6823444,5.754299404,188.4571141,0,188.4571141,3.379064953,185.0780491,0.698775624,2.168593228,-0.490870373,0.490870373,0.614097467,0.146806097,3.859698121,124.1411592,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4696033,2.448121056,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.79633815,119.3292042,107.2659415,121.7773252,502.6519296,0,0.590917404,53.77786294,-0.590917404,126.2221371,0.965385806,0,592.5189796,121.7773252,672.2198034,8,10,13% -8/25/2018 19:00,31.57878391,145.0925043,864.2413524,875.2415621,118.6047706,781.884426,660.3410105,121.5434155,115.0283992,6.515016371,213.1216932,0,213.1216932,3.576371439,209.5453217,0.551153753,2.532341919,-0.158135642,0.158135642,0.557196477,0.137235704,4.026051638,129.4916601,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.5696726,2.591068933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.916860707,124.4723092,113.4865333,127.0633781,660.3410105,0,0.754467154,41.02116737,-0.754467154,138.9788326,0.983728063,0,763.0825162,127.0633781,846.2429559,8,11,11% -8/25/2018 20:00,27.39498982,174.1161618,906.3338952,884.2571688,121.2411952,896.1021451,771.6844915,124.4176536,117.5853259,6.832327739,223.4070154,0,223.4070154,3.655869368,219.7511461,0.478132771,3.038900305,0.126392777,-0.126392777,0.508539252,0.133771004,3.92368591,126.1992264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,113.0274878,2.648664912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.842697085,121.3074967,115.8701849,123.9561616,771.6844915,0,0.872692378,29.22696524,-0.872692378,150.7730348,0.992706043,0,881.9260425,123.9561616,963.0528712,8,12,9% -8/25/2018 21:00,29.42919221,205.1188772,886.5427673,880.100078,120.0076504,948.1784144,825.1063036,123.0721108,116.3889769,6.683133857,218.5712314,0,218.5712314,3.61867344,214.952558,0.5136363,3.579999765,0.399735784,-0.399735784,0.461794844,0.13536589,3.573133935,114.9242699,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.8775117,2.621716589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.588723373,110.4695796,114.4662351,113.0912962,825.1063036,0,0.937514181,20.36179982,-0.937514181,159.6382002,0.996667473,0,936.8228499,113.0912962,1010.838841,8,13,8% -8/25/2018 22:00,36.64165751,228.95689,806.2789091,861.6704093,114.8885564,931.3516686,813.849355,117.5023135,111.4242426,6.07807099,198.9559702,0,198.9559702,3.46431387,195.4916563,0.639517567,3.996051576,0.694190975,-0.694190975,0.411440041,0.142492325,3.010500886,96.82805701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.1052202,2.509883606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.181097644,93.07481144,109.2863178,95.58469504,813.849355,0,0.944501919,19.17811467,-0.944501919,160.8218853,0.997062045,0,920.7446201,95.58469504,983.3028913,8,14,7% -8/25/2018 23:00,46.62348829,245.4220608,671.3914447,823.5966824,105.7538126,843.2441971,735.6180199,107.6261772,102.5649449,5.061232307,165.9754965,0,165.9754965,3.188867639,162.7866289,0.813733379,4.283423018,1.054962661,-1.054962661,0.349744449,0.157514388,2.288532627,73.60707606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.58932631,2.310323749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.658034098,70.75392129,100.2473604,73.06424504,735.6180199,0,0.893177493,26.72471437,-0.893177493,153.2752856,0.994020085,0,831.4664471,73.06424504,879.2855342,8,15,6% -8/25/2018 0:00,57.85378158,257.564893,492.1226444,751.9810586,92.00724755,684.7961073,591.8533893,92.94271793,89.23288956,3.709828367,122.0951907,0,122.0951907,2.774357984,119.3208327,1.009738973,4.49535542,1.577433738,-1.577433738,0.260396633,0.186959996,1.479007943,47.56997949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.77404759,2.010012915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.07153622,45.7260737,86.84558381,47.73608661,591.8533893,0,0.787058906,38.08849509,-0.787058906,141.9115049,0.986472353,0,670.6925897,47.73608661,701.9349036,8,16,5% -8/25/2018 1:00,69.57991892,267.5493313,283.9225467,609.4013427,71.30209802,457.3290661,386.0366614,71.29240478,69.15207669,2.140328086,70.99032991,0,70.99032991,2.150021332,68.84030858,1.214398678,4.669616742,2.561022757,-2.561022757,0.092193004,0.251132215,0.685274378,22.04077962,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.47160644,1.557683136,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.496478954,21.18643573,66.9680854,22.74411886,386.0366614,0,0.633468675,50.69349871,-0.633468675,129.3065013,0.971069499,0,441.8365127,22.74411886,456.7220836,8,17,3% -8/25/2018 2:00,81.35576995,276.6634023,76.70050963,283.2006658,34.13585191,159.2591911,125.5744603,33.68473086,33.10653002,0.57820084,19.62624845,0,19.62624845,1.029321883,18.59692657,1.419926051,4.82868729,5.878344544,-5.878344544,0,0.445053782,0.257330471,8.276632506,0.322080977,1,0.168502821,0,0.943021767,0.98178373,0.724496596,1,32.09013437,0.7457402,0.047803148,0.312029739,0.873398968,0.597895564,0.961238037,0.922476074,0.176690813,7.955813982,32.26682518,8.701554182,85.12931545,0,0.4434116,63.67824192,-0.4434116,116.3217581,0.937237952,0,112.0532505,8.701554182,117.7482436,8,18,5% -8/25/2018 3:00,93.07735967,285.7802458,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624506385,4.987806226,-15.0900077,15.0900077,0,#DIV/0!,0,0,1,0.526222852,0,0.066172265,0.961238037,1,0.554043686,0.82954709,0,0,0.115824807,0.1189819,0.724496596,0.448993192,0.987822327,0.949060364,0,0,0,0,0,0,0.226622322,76.90170514,-0.226622322,103.0982949,0.8293686,0,0,0,0,8,19,0% -8/25/2018 4:00,104.1609484,295.6443719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817951502,5.159967705,-2.770794928,2.770794928,0.996012471,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.001951071,89.88821182,-0.001951071,90.11178818,0,0,0,0,0,8,20,0% -8/25/2018 5:00,114.290594,307.0261993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99474717,5.358618068,-1.205920085,1.205920085,0.73637817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.216889447,102.5264007,0.216889447,77.47359933,0,0.819467807,0,0,0,8,21,0% -8/25/2018 6:00,122.8527254,320.7391588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144184553,5.597954362,-0.510823946,0.510823946,0.617509729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.414987789,114.5185475,0.414987789,65.48145247,0,0.929514527,0,0,0,8,22,0% -8/25/2018 7:00,128.9812412,337.3520424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251147331,5.887903878,-0.05708938,0.05708938,0.539916549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.578845636,125.3693917,0.578845636,54.63060825,0,0.963621185,0,0,0,8,23,0% -8/26/2018 8:00,131.6993639,356.4216679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.298587522,6.220731631,0.317307361,-0.317307361,0.475890935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697297829,134.2106085,0.697297829,45.78939153,0,0.978294628,0,0,0,8,0,0% -8/26/2018 9:00,130.4279285,15.96174565,0,0,0,0,0,0,0,0,0,0,0,0,0,2.276396789,0.278585016,0.689329445,-0.689329445,0.412271412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762273437,139.6650311,0.762273437,40.33496891,0,0.98440674,0,0,0,8,1,0% -8/26/2018 10:00,125.451863,33.6189608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189548063,0.586761557,1.130702926,-1.130702926,0.336792101,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769346063,140.2952022,0.769346063,39.70479781,0,0.985009741,0,0,0,8,2,0% -8/26/2018 11:00,117.6764684,48.37488465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053841826,0.844301012,1.772424031,-1.772424031,0.227051329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.718035881,135.8925563,0.718035881,44.10744372,0,0.980365597,0,0,0,8,3,0% -8/26/2018 12:00,108.0442854,60.53462993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885728517,1.056528604,3.02781639,-3.02781639,0.012366592,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611842842,127.7228721,0.611842842,52.27712795,0,0.968279668,0,0,0,8,4,0% -8/26/2018 13:00,97.26127234,70.88081387,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697529437,1.237103578,7.847380737,-7.847380737,0,#DIV/0!,0,0,0.448071063,1,0.126747927,0,0.948150302,0.986912265,0.724496596,1,0,0,0.063214391,0.312029739,0.836427231,0.560923827,0.961238037,0.922476074,0,0,0,0,0,0,-0.458008721,117.2586884,0.458008721,62.74131165,0,0.940831773,0,0,0,8,5,0% -8/26/2018 14:00,85.62606364,80.21009737,19.95797191,94.71115175,12.73478193,12.50123289,0,12.50123289,12.35078126,0.150451623,30.22277095,24.99972893,5.223042017,0.384000661,4.839041356,1.494456736,1.399930292,-12.86687309,12.86687309,0,0.63807996,0.096000165,3.087695316,1,0.422138535,0,0.077563045,0.961238037,1,0.528199375,0.803702779,11.87204074,0.26396289,0.115824807,0.089808365,0.724496596,0.448993192,0.99111663,0.952354667,0.069551793,2.99110475,11.94159253,3.25506764,0,14.44637998,-0.263957607,105.3050228,0.263957607,74.69497718,0,0.860575643,11.94159253,15.68727037,22.20859724,8,6,86% -8/26/2018 15:00,73.97565662,89.26694369,204.0647335,520.7213466,60.32182184,60.0412225,0,60.0412225,58.50289634,1.538326158,77.81238572,26.51560301,51.29678271,1.818925492,49.47785722,1.291118774,1.558002081,-3.286818357,3.286818357,0.907767268,0.295601405,1.438383251,46.26334975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,56.23520923,1.317805327,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.042103769,44.47009149,57.277313,45.78789682,0,26.51560301,-0.050920907,92.91881534,0.050920907,87.08118466,0,0,57.277313,45.78789682,87.24457571,8,7,52% -8/26/2018 16:00,62.20541172,98.85572618,416.8011244,711.1576669,85.18610864,208.9237739,123.1643178,85.7594561,82.61743316,3.142022933,103.6269336,0,103.6269336,2.568675479,101.0582582,1.085689247,1.725357906,-1.661554414,1.661554414,0.814296229,0.204380707,2.677790607,86.12695076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.41501926,1.86099664,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.940050179,82.78850107,81.35506944,84.64949771,123.1643178,0,0.173188483,80.02674375,-0.173188483,99.97325625,0.761297201,0,175.1197198,84.64949771,230.5211231,8,8,32% -8/26/2018 17:00,50.76246851,110.0706936,608.502217,802.3205089,101.0049754,416.7924679,314.2460185,102.5464494,97.95930269,4.587146744,150.5840802,0,150.5840802,3.045672676,147.5384075,0.885972212,1.921096014,-0.937036266,0.937036266,0.690396329,0.165989494,3.402687131,109.4421148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.16220781,2.206579486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.465235244,105.1999236,96.62744305,107.4065031,314.2460185,0,0.391671427,66.94145949,-0.391671427,113.0585405,0.922341977,0,386.469737,107.4065031,456.7651451,8,9,18% -8/26/2018 18:00,40.25113348,124.6887787,760.7036149,850.3663917,111.6872433,615.3061262,501.2521602,114.053966,108.3194608,5.734505172,187.809181,0,187.809181,3.367782467,184.4413986,0.702514807,2.176229729,-0.489347524,0.489347524,0.613837045,0.146820971,3.845179915,123.6742038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1207859,2.439946933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.785819759,118.8803489,106.9066056,121.3202958,501.2521602,0,0.58945434,53.88170393,-0.58945434,126.1182961,0.965175788,0,590.7030543,121.3202958,670.1047615,8,10,13% -8/26/2018 19:00,31.85595187,145.5124432,861.4566063,875.0339179,118.2223166,780.0476583,658.896157,121.1515013,114.6574776,6.494023779,212.4349668,0,212.4349668,3.56483904,208.8701278,0.555991247,2.539671237,-0.155450235,0.155450235,0.556737246,0.137235371,4.010505004,128.9916269,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2131286,2.582713749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.905597223,123.9916583,113.1187259,126.574372,658.896157,0,0.752994991,41.14951645,-0.752994991,138.8504836,0.983598496,0,761.2079948,126.574372,844.0483898,8,11,11% -8/26/2018 20:00,27.73575292,174.32713,903.3029028,884.0310491,120.8440253,894.101472,770.0918611,124.0096109,117.200132,6.809478838,222.6601401,0,222.6601401,3.643893228,219.0162469,0.484080209,3.042582395,0.130115304,-0.130115304,0.507902662,0.13378018,3.90683997,125.6574031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.6572248,2.63998824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.830492259,120.7866755,115.4877171,123.4266637,770.0918611,0,0.871114043,29.41164235,-0.871114043,150.5883577,0.992602234,0,879.8826188,123.4266637,960.6629017,8,12,9% -8/26/2018 21:00,29.77986443,205.0124655,883.194676,879.7893647,119.5902487,945.8959641,823.2539081,122.642056,115.9841615,6.65789453,217.7468617,0,217.7468617,3.60608724,214.1407745,0.519756685,3.57814253,0.404721957,-0.404721957,0.460942159,0.135406442,3.554876679,114.3370538,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.4883877,2.61259793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575496052,109.9051251,114.0638837,112.5177231,823.2539081,0,0.935739782,20.65200766,-0.935739782,159.3479923,0.996566341,0,934.491019,112.5177231,1008.131618,8,13,8% -8/26/2018 22:00,36.96097002,228.6990747,802.5665314,861.1801686,114.4445807,928.6673086,811.6235688,117.0437398,110.9936543,6.050085519,198.0424737,0,198.0424737,3.450926362,194.5915473,0.645090622,3.991551849,0.701080731,-0.701080731,0.410261824,0.142598247,2.990904873,96.19778188,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6913224,2.500184402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.166900399,92.468967,108.8582228,94.9691514,811.6235688,0,0.942455015,19.53198218,-0.942455015,160.4680178,0.99694707,0,918.0039616,94.9691514,980.1593718,8,14,7% -8/26/2018 23:00,46.91251614,245.1396357,667.298759,822.7411723,105.272536,840.0268068,732.8982463,107.1285605,102.0981806,5.030379913,164.9686652,0,164.9686652,3.174355373,161.7943098,0.818777867,4.27849377,1.065247022,-1.065247022,0.34798572,0.157759226,2.267931634,72.94447732,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.14065467,2.299809662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.643108749,70.11700618,99.78376341,72.41681584,732.8982463,0,0.890800498,27.02598989,-0.890800498,152.9740101,0.993870709,0,828.1898634,72.41681584,875.585221,8,15,6% -8/26/2018 0:00,58.12475768,257.2947174,487.6795233,750.3104034,91.4620265,680.8620383,588.4815952,92.38044319,88.70410894,3.676334243,121.0014641,0,121.0014641,2.757917558,118.2435466,1.014468398,4.490639966,1.595099805,-1.595099805,0.257375558,0.187545349,1.458222823,46.9014586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.26576354,1.998101882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056477471,45.08346599,86.32224101,47.08156787,588.4815952,0,0.78431752,38.34239877,-0.78431752,141.6576012,0.986250308,0,666.7123958,47.08156787,697.5263403,8,16,5% -8/26/2018 1:00,69.84364247,267.2964233,279.2691655,605.5644233,70.60181186,452.2996685,381.7215128,70.57815567,68.47290674,2.105248933,69.84094755,0,69.84094755,2.128905121,67.71204243,1.219001523,4.665202666,2.601126565,-2.601126565,0.085334849,0.252809191,0.666459931,21.43564233,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.81876245,1.542384513,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.482847951,20.60475475,66.3016104,22.14713927,381.7215128,0,0.63035657,50.92356547,-0.63035657,129.0764345,0.970679815,0,436.8309777,22.14713927,451.3258374,8,17,3% -8/26/2018 2:00,81.61906176,276.4254802,72.70020699,272.9992534,32.9095014,152.5785484,120.113345,32.46520338,31.91715851,0.548044869,18.61934977,0,18.61934977,0.99234289,17.62700688,1.42452136,4.824534767,6.078400924,-6.078400924,0,0.452674109,0.248085723,7.979289627,0.337447382,1,0.163056338,0,0.943713074,0.982475037,0.724496596,1,30.94033114,0.718949046,0.049768528,0.312029739,0.868579202,0.593075798,0.961238037,0.922476074,0.170197647,7.669996697,31.11052878,8.388945742,79.58141119,0,0.439976826,63.89759744,-0.439976826,116.1024026,0.936357651,0,105.627192,8.388945742,111.1175892,8,18,5% -8/26/2018 3:00,93.3528457,285.5552553,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629314523,4.983879401,-13.88672773,13.88672773,0,#DIV/0!,0,0,1,0.475044672,0,0.071887117,0.961238037,1,0.540948041,0.816451445,0,0,0.115824807,0.104200543,0.724496596,0.448993192,0.9895161,0.950754137,0,0,0,0,0,0,0.222818214,77.1253856,-0.222818214,102.8746144,0.825601828,0,0,0,0,8,19,0% -8/26/2018 4:00,104.4522909,295.4339847,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823036388,5.156295755,-2.722741711,2.722741711,0.995769945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.002111422,90.12097564,0.002111422,89.87902436,0,0,0,0,0,8,20,0% -8/26/2018 5:00,114.6032508,306.839869,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00020406,5.35536599,-1.194530691,1.194530691,0.734430469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.22113039,102.7754349,0.22113039,77.22456511,0,0.823889061,0,0,0,8,21,0% -8/26/2018 6:00,123.1888761,320.59999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.150051489,5.595525408,-0.507810817,0.507810817,0.616994454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419315051,114.7913514,0.419315051,65.20864863,0,0.930757917,0,0,0,8,22,0% -8/26/2018 7:00,129.3348427,337.2993918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257318842,5.886984953,-0.05749442,0.05749442,0.539985815,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583161218,125.6731944,0.583161218,54.32680556,0,0.964260416,0,0,0,8,23,0% -8/27/2018 8:00,132.0514367,356.493152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304732352,6.221979264,0.314735048,-0.314735048,0.476330827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701504593,134.5478427,0.701504593,45.45215729,0,0.978724629,0,0,0,8,0,0% -8/27/2018 9:00,130.75265,16.15453254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282064248,0.281949782,0.684624182,-0.684624182,0.413076059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766281782,140.0211602,0.766281782,39.97883984,0,0.984749852,0,0,0,8,1,0% -8/27/2018 10:00,125.7329373,33.88827896,0,0,0,0,0,0,0,0,0,0,0,0,0,2.194453734,0.591462046,1.122906395,-1.122906395,0.338125387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773080076,140.6312884,0.773080076,39.36871156,0,0.985323647,0,0,0,8,2,0% -8/27/2018 11:00,117.9130929,48.67622936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057971703,0.84956047,1.758401961,-1.758401961,0.229449244,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721438556,136.1733783,0.721438556,43.82662166,0,0.980694028,0,0,0,8,3,0% -8/27/2018 12:00,108.2444328,60.84517252,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889221749,1.061948594,2.994944693,-2.994944693,0.017987983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614880001,127.9432015,0.614880001,52.05679851,0,0.968683321,0,0,0,8,4,0% -8/27/2018 13:00,97.4351981,71.19481335,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700565014,1.242583903,7.661048297,-7.661048297,0,#DIV/0!,0,0,0.438190483,1,0.129796593,0,0.947789264,0.986551227,0.724496596,1,0,0,0.062061415,0.312029739,0.839127959,0.563624555,0.961238037,0.922476074,0,0,0,0,0,0,-0.460671365,117.4304379,0.460671365,62.56956208,0,0.941462757,0,0,0,8,5,0% -8/27/2018 14:00,85.77898458,80.53092865,18.49804741,88.76498282,11.96459002,11.74325958,0,11.74325958,11.60381348,0.139446095,28.47348929,23.627647,4.84584229,0.360776534,4.485065757,1.49712571,1.405529855,-13.32114679,13.32114679,0,0.646802863,0.090194133,2.900953371,1,0.446965041,0,0.074928076,0.961238037,1,0.534085787,0.809589191,11.15402689,0.247654619,0.115824807,0.09645419,0.724496596,0.448993192,0.990383545,0.951621582,0.065345343,2.810869557,11.21937224,3.058524176,0,13.06691478,-0.266182071,105.4372035,0.266182071,74.56279649,0,0.862158649,11.21937224,14.32427776,20.59432555,8,6,84% -8/27/2018 15:00,74.12700892,89.60279165,201.4658576,517.9197907,59.81177605,59.52696506,0,59.52696506,58.00823032,1.518734734,78.04942084,27.39814545,50.6512754,1.80354573,48.84772967,1.29376037,1.563863733,-3.31298755,3.31298755,0.903292072,0.29688294,1.415465337,45.52623088,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.75971744,1.306662742,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.025499819,43.7615448,56.78521725,45.06820754,0,27.39814545,-0.052900364,93.03238304,0.052900364,86.96761696,0,0,56.78521725,45.06820754,86.28145773,8,7,52% -8/27/2018 16:00,62.36242444,99.21777049,414.1980757,710.1332963,84.78348528,207.1061886,121.7568382,85.34935043,82.22695038,3.122400053,102.9836538,0,102.9836538,2.556534899,100.4271189,1.088429636,1.731676772,-1.66679311,1.66679311,0.815192099,0.204693093,2.663472815,85.66644134,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.03967236,1.852200831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929676987,82.3458419,80.96934935,84.19804273,121.7568382,0,0.171456315,80.12749691,-0.171456315,99.87250309,0.758380528,0,173.3073646,84.19804273,228.4132996,8,8,32% -8/27/2018 17:00,50.9393387,110.4706525,605.9060201,801.8491626,100.626517,414.9692644,312.8094326,102.1598318,97.59225627,4.567575516,149.9431903,0,149.9431903,3.034260761,146.9089295,0.889059179,1.928076614,-0.937402818,0.937402818,0.690459013,0.166076114,3.388530699,108.9867953,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.80938883,2.198311592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.454978956,104.7622531,96.26436779,106.9605647,312.8094326,0,0.39011007,67.03865158,-0.39011007,112.9613484,0.921831045,0,384.6218139,106.9605647,454.6253643,8,9,18% -8/27/2018 18:00,40.46789141,125.1271842,758.032134,850.0890938,111.3100265,613.4966153,499.8286304,113.6679849,107.9536185,5.71436642,187.1500751,0,187.1500751,3.356407988,183.7936671,0.706297946,2.183881347,-0.487772468,0.487772468,0.613567694,0.146840776,3.830406748,123.1990479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7691243,2.431706162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.77511665,118.423611,106.5442409,120.8553172,499.8286304,0,0.587972054,53.98676933,-0.587972054,126.0132307,0.964961945,0,588.8598481,120.8553172,667.9572361,8,10,13% -8/27/2018 19:00,32.1360919,145.9310502,858.6163398,874.8126442,117.8363535,778.1721271,657.4163618,120.7557653,114.2831527,6.47261265,211.7346731,0,211.7346731,3.553200829,208.1814723,0.560880612,2.546977308,-0.152703145,0.152703145,0.556267465,0.137239822,3.994671536,128.4823682,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8533133,2.574281905,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.894125929,123.5021394,112.7474393,126.0764213,657.4163618,0,0.751493895,41.28005005,-0.751493895,138.71995,0.98346586,0,759.2939869,126.0764213,841.8084831,8,11,11% -8/27/2018 20:00,28.07936259,174.5374753,900.2078831,883.7902424,120.4428782,892.0504599,768.4532315,123.5972284,116.8110811,6.786147272,221.8976207,0,221.8976207,3.631797166,218.2658235,0.490077329,3.046253612,0.133912391,-0.133912391,0.507253322,0.133794516,3.889684745,125.1056321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,112.2832543,2.631224684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.818063357,120.2562922,115.1013176,122.8875169,768.4532315,0,0.869497302,29.59972477,-0.869497302,150.4002752,0.992495509,0,877.7876986,122.8875169,958.2151206,8,12,9% -8/27/2018 21:00,30.13371599,204.9097482,879.7759656,879.4613512,119.1684035,943.552296,821.3451366,122.2071593,115.5750365,6.632122848,216.9052356,0,216.9052356,3.593367051,213.3118686,0.52593256,3.576349776,0.409804528,-0.409804528,0.460072988,0.135453125,3.536299559,113.7395498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.0951212,2.603382196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.562036992,109.3307815,113.6571582,111.9341637,821.3451366,0,0.933918398,20.94589858,-0.933918398,159.0541014,0.996462132,0,932.0964841,111.9341637,1005.355156,8,13,8% -8/27/2018 22:00,37.28399816,228.4446896,798.779389,860.6674089,113.9956539,925.9118748,809.3320741,116.5798007,110.5582643,6.02153644,197.1107004,0,197.1107004,3.437389563,193.6733108,0.650728526,3.987111992,0.708107984,-0.708107984,0.409060093,0.142712313,2.970992921,95.55734507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2728089,2.490377037,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.152474258,91.85335478,108.4252832,94.34373182,809.3320741,0,0.940354039,19.88890214,-0.940354039,160.1110979,0.996828537,0,915.1905905,94.34373182,976.9366761,8,14,7% -8/27/2018 23:00,47.2053104,244.8588466,663.1301159,821.8523308,104.7855888,836.7291696,730.104298,106.6248716,101.6259167,4.998954921,163.9432462,0,163.9432462,3.159672119,160.783574,0.823888091,4.273593076,1.07575726,-1.07575726,0.346188363,0.158016634,2.247037623,72.27245409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.68669663,2.289171695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.627971108,69.47103188,99.31466774,71.76020358,730.104298,0,0.888364333,27.33157601,-0.888364333,152.668424,0.993716786,0,824.8315641,71.76020358,871.7971822,8,15,6% -8/27/2018 0:00,58.39929761,257.0249484,483.1630706,748.5805751,90.90958366,676.8369897,585.0263781,91.81061161,88.16832429,3.642287315,119.8897397,0,119.8897397,2.741259368,117.1484803,1.019260024,4.48593161,1.61323002,-1.61323002,0.254275108,0.188155075,1.437199338,46.22527104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.75074696,1.986033081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.041246028,44.43348879,85.79199299,46.41952187,585.0263781,0,0.781514239,38.6005725,-0.781514239,141.3994275,0.986021639,0,662.6406613,46.41952187,693.0213099,8,16,5% -8/27/2018 1:00,70.11066842,267.0432013,274.552957,601.5906325,69.88913856,447.158572,377.3071527,69.85141933,67.78172317,2.069696162,68.67595848,0,68.67595848,2.107415391,66.56854309,1.223662005,4.660783108,2.642690328,-2.642690328,0.078227027,0.254556131,0.647545816,20.82729935,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.15437051,1.526815277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.469144739,20.01999234,65.62351525,21.54680762,377.3071527,0,0.62718256,51.15743857,-0.62718256,128.8425614,0.970278395,0,431.7164939,21.54680762,445.8184486,8,17,3% -8/27/2018 2:00,81.8852673,276.1867894,68.70537806,262.4874343,31.6537553,145.7891101,114.5719021,31.21720794,30.69927778,0.517930161,17.61289187,0,17.61289187,0.954477512,16.65841435,1.429167523,4.820368826,6.293579534,-6.293579534,0,0.460717286,0.238619378,7.674819446,0.353216241,1,0.15757482,0,0.944402098,0.983164061,0.724496596,1,29.76211192,0.691515708,0.051759684,0.312029739,0.863727429,0.588224025,0.961238037,0.922476074,0.163582246,7.377328377,29.92569416,8.068844086,74.10324552,0,0.436485283,64.12015752,-0.436485283,115.8798425,0.935448601,0,99.24547149,8.068844086,104.5263686,8,18,5% -8/27/2018 3:00,93.63128296,285.3291724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634174171,4.979933511,-12.85544882,12.85544882,0,#DIV/0!,0,0,1,0.421485423,0,0.077631696,0.961238037,1,0.528046751,0.803550155,0,0,0.115824807,0.089636035,0.724496596,0.448993192,0.991135502,0.952373539,0,0,0,0,0,0,0.218958781,77.35211542,-0.218958781,102.6478846,0.821646519,0,0,0,0,8,19,0% -8/27/2018 4:00,104.7465062,295.2222764,0,0,0,0,0,0,0,0,0,0,0,0,0,1.828171413,5.152600749,-2.676002893,2.676002893,0.987777136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.006222488,90.35652462,0.006222488,89.64347538,0,0,0,0,0,8,20,0% -8/27/2018 5:00,114.9187965,306.6521697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005711372,5.35209002,-1.183254523,1.183254523,0.73250213,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225411551,103.02708,0.225411551,76.97292001,0,0.828183505,0,0,0,8,21,0% -8/27/2018 6:00,123.5280083,320.4598872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.155970463,5.593080152,-0.504787782,0.504787782,0.616477484,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.423673145,115.0667067,0.423673145,64.93329329,0,0.931984496,0,0,0,8,22,0% -8/27/2018 7:00,129.6914526,337.2472399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.26354286,5.886074729,-0.057865455,0.057865455,0.540049265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.587497862,125.9796492,0.587497862,54.02035076,0,0.964893307,0,0,0,8,23,0% -8/28/2018 8:00,132.4061761,356.5675518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310923723,6.223277784,0.312206681,-0.312206681,0.476763203,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.705722939,134.8879788,0.705722939,45.11202116,0,0.979150666,0,0,0,8,0,0% -8/28/2018 9:00,131.0792286,16.35218114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28776412,0.285399401,0.679976019,-0.679976019,0.413870942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770293169,140.3802225,0.770293169,39.61977753,0,0.985089649,0,0,0,8,1,0% -8/28/2018 10:00,126.0149944,34.16282527,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199376558,0.596253783,1.115197108,-1.115197108,0.339443752,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776810121,140.9694339,0.776810121,39.03056611,0,0.985634206,0,0,0,8,2,0% -8/28/2018 11:00,118.1501315,48.98221234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062108807,0.85490088,1.744556843,-1.744556843,0.231816899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724832266,136.4548961,0.724832266,43.5451039,0,0.981018523,0,0,0,8,3,0% -8/28/2018 12:00,108.4447666,61.15962942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892718233,1.067436903,2.962668735,-2.962668735,0.023507497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.617905551,128.1633475,0.617905551,51.83665249,0,0.969081484,0,0,0,8,4,0% -8/28/2018 13:00,97.60933084,71.51216652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703604204,1.248122761,7.482745601,-7.482745601,0,#DIV/0!,0,0,0.428398698,1,0.132853602,0,0.947425102,0.986187065,0.724496596,1,0,0,0.060909843,0.312029739,0.841835947,0.566332543,0.961238037,0.922476074,0,0,0,0,0,0,-0.463322289,117.6016974,0.463322289,62.39830259,0,0.942083759,0,0,0,8,5,0% -8/28/2018 14:00,85.93204806,80.85473265,17.08410568,82.89934104,11.20326617,10.99423357,0,10.99423357,10.86544636,0.128787205,26.72966568,22.24960665,4.480059026,0.337819811,4.142239215,1.499797172,1.4111813,-13.80941811,13.80941811,0,0.655771299,0.084454953,2.716361591,1,0.471375868,0,0.072288168,0.961238037,1,0.540038803,0.815542207,10.44428033,0.231635123,0.115824807,0.103174217,0.724496596,0.448993192,0.989631829,0.950869866,0.061187326,2.632538258,10.50546766,2.864173381,0,11.76167901,-0.268393046,105.5686661,0.268393046,74.43133392,0,0.863706053,10.50546766,13.02280673,19.02863421,8,6,81% -8/28/2018 15:00,74.27908914,89.9413437,198.8549604,515.0629825,59.29773101,59.00873833,0,59.00873833,57.50968564,1.499052688,78.26688196,28.26414916,50.0027328,1.788045375,48.21468742,1.296414671,1.569772581,-3.339627636,3.339627636,0.898736349,0.298195886,1.392519141,44.78820232,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,55.28049732,1.295432788,0.115824807,0,0.724496596,0.448993192,1,0.961238037,1.008875377,43.05212367,56.2893727,44.34755646,0,28.26414916,-0.054875132,93.14569357,0.054875132,86.85430643,0,0,56.2893727,44.34755646,85.31396145,8,7,52% -8/28/2018 16:00,62.52065243,99.58224544,411.5700825,709.0840649,84.37823245,205.2835734,120.3470669,84.93650655,81.83391742,3.10258913,102.3342465,0,102.3342465,2.544315031,99.78993149,1.091191235,1.738038059,-1.672049399,1.672049399,0.816090977,0.205015466,2.648975617,85.20016165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.66187413,1.843347579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.919173817,81.89763612,80.58104795,83.7409837,120.3470669,0,0.169721861,80.22835215,-0.169721861,99.77164785,0.755400354,0,171.4912649,83.7409837,226.2980639,8,8,32% -8/28/2018 17:00,51.11804695,110.8725231,603.2740317,801.3610748,100.2453435,413.1295457,311.3592347,101.770311,97.22257652,4.547734475,149.2935404,0,149.2935404,3.022766972,146.2707735,0.892178227,1.935090579,-0.937732723,0.937732723,0.69051543,0.166168836,3.37415576,108.5244478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.45403859,2.189984382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444564362,104.3178272,95.89860296,106.5078116,311.3592347,0,0.388538007,67.13643954,-0.388538007,112.8635605,0.921312461,0,382.7577457,106.5078116,452.4649782,8,9,18% -8/28/2018 18:00,40.6871791,125.5662322,755.3144062,849.7975518,110.9297187,611.6591569,498.3804995,113.2786574,107.5847784,5.69387904,186.4796628,0,186.4796628,3.344940305,183.1347225,0.710125239,2.191544182,-0.486146377,0.486146377,0.613289616,0.14686562,3.815377679,122.7156614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.4145812,2.423397865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.76422814,117.9589615,106.1788093,120.3823594,498.3804995,0,0.586469681,54.09311574,-0.586469681,125.9068843,0.964744101,0,586.9884562,120.3823594,665.7763027,8,10,13% -8/28/2018 19:00,32.41917669,146.3480935,855.7201755,874.5775026,117.4468545,776.2569551,655.9007765,120.3561787,113.9053985,6.45078014,211.0207197,0,211.0207197,3.541455996,207.4792637,0.565821374,2.554256086,-0.149895302,0.149895302,0.555787296,0.137249136,3.978551587,127.9638952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4902017,2.565772814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.882447081,123.0037634,112.3726487,125.5695362,655.9007765,0,0.74996301,41.41282618,-0.74996301,138.5871738,0.983330045,0,757.3395889,125.5695362,839.522339,8,11,11% -8/28/2018 20:00,28.42574742,174.7470067,897.048731,883.5345519,120.0377438,889.9483707,766.7678755,123.1804952,116.4181629,6.762332249,221.1194314,0,221.1194314,3.619580868,217.4998505,0.496122885,3.049910625,0.137783311,-0.137783311,0.506591356,0.133814072,3.872222185,124.5439761,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.9055664,2.622374018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.805411791,119.7164071,114.7109782,122.3387811,766.7678755,0,0.867841415,29.7912413,-0.867841415,150.2087587,0.992385787,0,875.6405199,122.3387811,955.7088053,8,12,9% -8/28/2018 21:00,30.49063623,204.8105455,876.286889,879.1158549,118.7421238,941.1469303,819.379499,121.7674313,115.1616106,6.605820714,216.0464147,0,216.0464147,3.580513143,212.4659015,0.532161993,3.574618363,0.414983064,-0.414983064,0.459187406,0.135505992,3.517406329,113.1318785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.6977205,2.594069584,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.548348912,108.7466648,113.2460694,111.3407344,819.379499,0,0.932049507,21.24341678,-0.932049507,158.7565832,0.996354781,0,929.6387506,111.3407344,1002.509034,8,13,8% -8/28/2018 22:00,37.61061743,228.1936873,794.9181542,860.1319193,113.5418056,923.0852395,806.9747095,116.11053,110.1181012,5.992428822,196.1608141,0,196.1608141,3.423704363,192.7371097,0.656429108,3.982731176,0.715272955,-0.715272955,0.40783481,0.142834586,2.950770708,94.90692917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.8497074,2.480462156,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.137823333,91.22815028,107.9875308,93.70861243,806.9747095,0,0.938198771,20.24876919,-0.938198771,159.7512308,0.996706389,0,912.3043797,93.70861243,973.6347924,8,14,7% -8/28/2018 23:00,47.50175239,244.5797153,658.8866453,820.9298083,104.2930176,833.3515556,727.2363914,106.1151642,101.1481983,4.966965847,162.8995148,0,162.8995148,3.144819281,159.7546955,0.82906198,4.268721316,1.08649552,-1.08649552,0.344352013,0.158286738,2.225858295,71.5912541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.22749559,2.278410864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.612626758,68.81623655,98.84012234,71.09464741,727.2363914,0,0.88586915,27.64133033,-0.88586915,152.3586697,0.993558256,0,821.3918429,71.09464741,867.9218678,8,15,6% -8/28/2018 0:00,58.67728769,256.7556205,478.5749083,746.7906833,90.3499597,672.72156,581.4882851,91.23327487,87.62557506,3.60769981,118.7604119,0,118.7604119,2.724384641,116.0360273,1.024111866,4.481230951,1.631834144,-1.631834144,0.251093616,0.188789588,1.415947652,45.54174379,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.22903575,1.973807398,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.025849254,43.7764564,85.254885,45.75026379,581.4882851,0,0.778649624,38.86289797,-0.778649624,141.137102,0.985786266,0,658.4780502,45.75026379,688.4206829,8,16,5% -8/28/2018 1:00,70.38088342,266.7896939,269.776261,597.4767047,69.16397781,441.9062976,372.7941815,69.1121161,67.07842869,2.033687409,67.49592695,0,67.49592695,2.085549119,65.41037783,1.228378146,4.65635857,2.685775475,-2.685775475,0.070859033,0.25637533,0.628547405,20.21624515,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.47833711,1.510973237,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.455380455,19.4326238,64.93371757,20.94359704,372.7941815,0,0.623947643,51.39501116,-0.623947643,128.6049888,0.969865071,0,426.4937729,20.94359704,440.2009383,8,17,3% -8/28/2018 2:00,82.15425485,275.9473473,64.72346761,251.6700314,30.36886098,138.898725,108.9576844,29.94104061,29.45312777,0.487912838,16.60868727,0,16.60868727,0.915733208,15.69295406,1.433862242,4.816189773,6.525542656,-6.525542656,0,0.469209424,0.228933302,7.363281943,0.369395434,1,0.152061005,0,0.945088349,0.983850313,0.724496596,1,28.55574458,0.663445592,0.053776103,0.312029739,0.858846127,0.583342722,0.961238037,0.922476074,0.156845049,7.077866679,28.71258963,7.741312271,68.70921326,0,0.432938653,64.34580048,-0.432938653,115.6541995,0.934510196,0,92.92205001,7.741312271,97.98858406,8,18,5% -8/28/2018 3:00,93.91255448,285.1019999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639083285,4.975968602,-11.9621316,11.9621316,0,#DIV/0!,0,0,1,0.365401166,0,0.083403214,0.961238037,1,0.515350402,0.790853806,0,0,0.115824807,0.075296171,0.724496596,0.448993192,0.992681567,0.953919604,0,0,0,0,0,0,0.215045773,77.58178725,-0.215045773,102.4182127,0.817491362,0,0,0,0,8,19,0% -8/28/2018 4:00,105.0434747,295.0092308,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833354491,5.148882401,-2.630547628,2.630547628,0.980003828,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.010380089,90.59474595,0.010380089,89.40525405,0,0,0,0,0,8,20,0% -8/28/2018 5:00,115.2371118,306.4630613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011267022,5.348789456,-1.172096806,1.172096806,0.730594048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.229730688,103.2812168,0.229730688,76.71878324,0,0.832353849,0,0,0,8,21,0% -8/28/2018 6:00,123.8700084,320.3187871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16193949,5.590617492,-0.501758389,0.501758389,0.615959428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.428059733,115.3444888,0.428059733,64.65551119,0,0.933193872,0,0,0,8,22,0% -8/28/2018 7:00,130.0509687,337.1955223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269817599,5.885172086,-0.058204684,0.058204684,0.540107277,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.591853244,126.2886306,0.591853244,53.71136943,0,0.965519598,0,0,0,8,23,0% -8/29/2018 8:00,132.7634898,356.6448331,0,0,0,0,0,0,0,0,0,0,0,0,0,2.317160023,6.224626597,0.309720723,-0.309720723,0.477188327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.709950665,135.2309014,0.709950665,44.76909856,0,0.979572571,0,0,0,8,0,0% -8/29/2018 9:00,131.4075781,16.55466974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.293494899,0.288933494,0.675383617,-0.675383617,0.414656289,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.774305621,140.7421202,0.774305621,39.25787983,0,0.985426014,0,0,0,8,1,0% -8/29/2018 10:00,126.2979609,34.44254968,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204315257,0.601135895,1.107573369,-1.107573369,0.340747488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.780534533,141.3095428,0.780534533,38.69045718,0,0.985941335,0,0,0,8,2,0% -8/29/2018 11:00,118.3875328,49.29275316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06625224,0.86032084,1.730884944,-1.730884944,0.234154931,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.728215718,136.7370192,0.728215718,43.2629808,0,0.981339027,0,0,0,8,3,0% -8/29/2018 12:00,108.6452585,61.47790418,0,0,0,0,0,0,0,0,0,0,0,0,0,1.896217478,1.072991845,2.930970893,-2.930970893,0.028928147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.620918612,128.3832475,0.620918612,51.61675254,0,0.969474148,0,0,0,8,4,0% -8/29/2018 13:00,97.78366277,71.83276935,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70664687,1.253718336,7.311948762,-7.311948762,0,#DIV/0!,0,0,0.418693602,1,0.135919222,0,0.947057771,0.985819735,0.724496596,1,0,0,0.059759568,0.312029739,0.844551409,0.569048004,0.961238037,0.922476074,0,0,0,0,0,0,-0.465961039,117.7724366,0.465961039,62.22756343,0,0.942694891,0,0,0,8,5,0% -8/29/2018 14:00,86.08524288,81.18139873,15.71803341,77.12811815,10.45232306,10.25563613,0,10.25563613,10.13714695,0.118489175,24.99630532,20.87011003,4.126195281,0.315176105,3.811019176,1.502470926,1.416882699,-14.33568025,14.33568025,0,0.664989238,0.078794026,2.534286738,1,0.495382598,0,0.069643207,0.961238037,1,0.546058953,0.821562357,9.744211235,0.215921718,0.115824807,0.109969433,0.724496596,0.448993192,0.988861056,0.950099092,0.057086004,2.456486909,9.801297239,2.672408626,0,10.5314207,-0.270590163,105.699388,0.270590163,74.30061202,0,0.865218707,9.801297239,11.78439083,17.51394535,8,6,79% -8/29/2018 15:00,74.43191737,90.2824784,196.2318121,512.1491759,58.77955869,58.48641641,0,58.48641641,57.00713812,1.479278288,78.46447668,29.11338139,49.35109529,1.772420568,47.57867473,1.299082027,1.575726505,-3.366760338,3.366760338,0.894096384,0.299541436,1.369543805,44.04923654,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.79742953,1.284112668,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.992229824,42.34180165,55.78965936,43.62591432,0,29.11338139,-0.056845511,93.25876452,0.056845511,86.74123548,0,0,55.78965936,43.62591432,84.34194776,8,7,51% -8/29/2018 16:00,62.68012325,99.94900958,408.9166134,708.0091746,83.97027937,203.4554388,118.934587,84.52085179,81.43826563,3.082586159,101.6785809,0,101.6785809,2.53201374,99.1465672,1.093974526,1.744439301,-1.67732696,1.67732696,0.816993493,0.205348173,2.634296582,84.7280334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.28155858,1.834435336,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.908538906,81.44380849,80.19009749,83.27824383,118.934587,0,0.167984528,80.32934412,-0.167984528,99.67065588,0.752353541,0,169.6709551,83.27824383,224.1749001,8,8,32% -8/29/2018 17:00,51.29862005,111.2761295,600.6056484,800.8557771,99.86140197,411.2725378,309.8947065,101.3778313,96.85021225,4.527619074,148.6349827,0,148.6349827,3.011189719,145.623793,0.895329822,1.942134839,-0.93802776,0.93802776,0.690565884,0.166267837,3.359560476,108.0550133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.09610789,2.181596701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.433990128,103.8665889,95.53009802,106.0481856,309.8947065,0,0.38695445,67.2348714,-0.38695445,112.7651286,0.920785825,0,380.8767509,106.0481856,450.2831674,8,9,18% -8/29/2018 18:00,40.90900709,126.0057016,752.5498917,849.491445,110.5462799,609.7928551,496.9069145,112.8859406,107.2129016,5.673038962,185.7978122,0,185.7978122,3.33337821,182.464434,0.713996867,2.19921437,-0.484470489,0.484470489,0.613003023,0.146895616,3.800091854,122.2240167,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.0571191,2.415021166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.753153612,117.4863739,105.8102727,119.9013951,496.9069145,0,0.584946343,54.20080049,-0.584946343,125.7991995,0.964522074,0,585.0879607,119.9013951,663.5610257,8,10,13% -8/29/2018 19:00,32.70517781,146.7633475,852.7677556,874.3282518,117.0537937,774.3012673,654.3485538,119.9527134,113.5241899,6.428523552,210.2930191,0,210.2930191,3.529603761,206.7634153,0.570813035,2.561503634,-0.14702768,0.14702768,0.555296904,0.137263391,3.962145654,127.436224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1237694,2.55718591,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.870561039,122.4965458,111.9943305,125.0537317,654.3485538,0,0.748401476,41.54790214,-0.748401476,138.4520979,0.983190939,0,755.3438994,125.0537317,837.1890657,8,11,11% -8/29/2018 20:00,28.7748359,174.9555394,893.8253744,883.2637803,119.6286132,887.7944843,765.0350819,122.7594024,116.0213692,6.738033226,220.3255545,0,220.3255545,3.607244072,216.7183104,0.502215628,3.053550207,0.141727303,-0.141727303,0.505916893,0.133838909,3.854454426,123.972504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.5241531,2.613436051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.792539111,119.1670863,114.3166922,121.7805224,765.0350819,0,0.866145651,29.98621784,-0.866145651,150.0137822,0.992272988,0,873.4403392,121.7805224,953.1432555,8,12,9% -8/29/2018 21:00,30.85051501,204.714677,872.7277427,878.7526937,118.3114206,938.6794202,817.3565351,121.3228851,114.7438948,6.578990366,215.1704712,0,215.1704712,3.567525854,211.6029453,0.538443063,3.572945141,0.420257111,-0.420257111,0.458285491,0.135565096,3.498200959,112.5141678,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.2961961,2.584660337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.534434686,108.1528978,112.8306308,110.7375581,817.3565351,0,0.930132608,21.54450437,-0.930132608,158.4554956,0.996244224,0,927.117358,110.7375581,999.592875,8,13,8% -8/29/2018 22:00,37.9407028,227.9460131,790.9835511,859.5734902,113.083068,920.1873203,804.5513559,115.6359644,109.6731963,5.962768121,195.1929914,0,195.1929914,3.409871732,191.7831197,0.662190184,3.978408446,0.72257586,-0.72257586,0.40658594,0.142965132,2.930244139,94.24672415,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.4220479,2.470440462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.122951904,90.5935361,107.5449998,93.06397657,804.5513559,0,0.935989028,20.61147873,-0.935989028,159.3885213,0.99658057,0,909.345249,93.06397657,970.2537604,8,14,7% -8/29/2018 23:00,47.80172197,244.3022569,654.5695336,819.973255,103.7948718,829.8942891,724.294794,105.5994951,100.6650734,4.934421636,161.8377601,0,161.8377601,3.129798347,158.7079618,0.834297437,4.263878753,1.097463993,-1.097463993,0.342476294,0.158569665,2.204401585,70.90113256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.76309758,2.267528248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.597081444,68.15286547,98.36017902,70.42039372,724.294794,0,0.883315144,27.9551098,-0.883315144,152.0448902,0.993395061,0,817.87105,70.42039372,863.9597893,8,15,6% -8/29/2018 0:00,58.95861246,256.4867632,473.9167171,744.9398236,89.78319738,668.5164049,577.8679178,90.64848711,87.07590272,3.572584397,117.6138895,0,117.6138895,2.707294666,114.9065949,1.02902191,4.476538505,1.650922288,-1.650922288,0.247829351,0.189449315,1.394478169,44.85121139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.70066978,1.961425769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.010294686,43.11269038,84.71096447,45.07411615,577.8679178,0,0.775724293,39.12925433,-0.775724293,140.8707457,0.98554411,0,654.2252869,45.07411615,683.7253945,8,16,5% -8/29/2018 1:00,70.65417235,266.5359264,264.9414897,593.2192809,68.42622507,436.543413,368.1832502,68.36016278,66.36292192,1.997240861,66.30143472,0,66.30143472,2.063303152,64.23813156,1.233147938,4.65192949,2.730447205,-2.730447205,0.063219717,0.258269194,0.60948043,19.60298572,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79056479,1.49485611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.441566497,18.84313551,64.23213128,20.33799162,368.1832502,0,0.620652872,51.63617369,-0.620652872,128.3638263,0.96943967,0,421.16358,20.33799162,434.4743887,8,17,3% -8/29/2018 2:00,82.42588892,275.7071685,60.76240413,240.5545392,29.05527137,131.9165742,103.2793738,28.6372004,28.17914774,0.458052669,15.608672,0,15.608672,0.876123634,14.73254836,1.438603151,4.811997861,6.776205776,-6.776205776,0,0.478178436,0.219030909,7.044786934,0.385992931,1,0.146517677,0,0.945771345,0.984533309,0.724496596,1,27.32169755,0.634748591,0.055817245,0.312029739,0.853937824,0.57843442,0.961238037,0.922476074,0.149987282,6.771717163,27.47168483,7.406465753,63.41426553,0,0.429338703,64.57440012,-0.429338703,115.4255999,0.933541829,0,86.67155426,7.406465753,91.51893796,8,18,6% -8/29/2018 3:00,94.19654176,284.8737378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644039798,4.971984677,-11.18115291,11.18115291,0,#DIV/0!,0,0,1,0.306635783,0,0.089198891,0.961238037,1,0.502869065,0.778372469,0,0,0.115824807,0.061187776,0.724496596,0.448993192,0.994155537,0.955393573,0,0,0,0,0,0,0.211080987,77.81429166,-0.211080987,102.1857083,0.813124094,0,0,0,0,8,19,0% -8/29/2018 4:00,105.3430757,294.7948288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838583515,5.145140381,-2.586345013,2.586345013,0.972444736,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014582143,90.83552489,0.014582143,89.16447511,0,0,0,0,0,8,20,0% -8/29/2018 5:00,115.5580763,306.2725004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016868908,5.345463541,-1.16106237,1.16106237,0.728707049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.234085533,103.5377242,0.234085533,76.46227578,0,0.836402862,0,0,0,8,21,0% -8/29/2018 6:00,124.2147617,320.176623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167956572,5.588136259,-0.4987261,0.4987261,0.615440876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.43247246,115.6245713,0.43247246,64.37542869,0,0.934385702,0,0,0,8,22,0% -8/29/2018 7:00,130.4132884,337.1441706,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27614127,5.884275831,-0.058514314,0.058514314,0.540160227,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.596225035,126.6000114,0.596225035,53.3999886,0,0.966139046,0,0,0,8,23,0% -8/30/2018 8:00,133.1232859,356.7249591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32343965,6.22602506,0.307275587,-0.307275587,0.477606469,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.714185579,135.5764941,0.714185579,44.42350589,0,0.979990185,0,0,0,8,0,0% -8/30/2018 9:00,131.7376132,16.76197435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299255099,0.292551642,0.670845562,-0.670845562,0.415432342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778317184,141.1067555,0.778317184,38.89324448,0,0.985758838,0,0,0,8,1,0% -8/30/2018 10:00,126.5817655,34.72739965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209268581,0.606107464,1.100033383,-1.100033383,0.342036902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784251675,141.6515202,0.784251675,38.34847978,0,0.986244956,0,0,0,8,2,0% -8/30/2018 11:00,118.6252472,49.60776926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07040114,0.865818908,1.717382426,-1.717382426,0.236463998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731587659,137.0196587,0.731587659,42.98034127,0,0.98165549,0,0,0,8,3,0% -8/30/2018 12:00,108.8458828,61.79989888,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899719031,1.078611713,2.899833794,-2.899833794,0.034252905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623918349,128.6028411,0.623918349,51.39715891,0,0.969861309,0,0,0,8,4,0% -8/30/2018 13:00,97.95818806,72.15651687,0,0,0,0,0,0,0,0,0,0,0,0,0,1.709692911,1.259368796,7.148176385,-7.148176385,0,#DIV/0!,0,0,0.409073022,1,0.138993763,0,0.946687219,0.985449182,0.724496596,1,0,0,0.058610468,0.312029739,0.847274596,0.571771192,0.961238037,0.922476074,0,0,0,0,0,0,-0.468587203,117.9426278,0.468587203,62.05737217,0,0.943296275,0,0,0,8,5,0% -8/30/2018 14:00,86.23855756,81.51081568,14.40171327,71.46589505,9.71337842,9.52905042,0,9.52905042,9.420484222,0.108566198,23.27872747,19.49397116,3.784756318,0.292894198,3.49186212,1.505146772,1.42263211,-14.90457806,14.90457806,0,0.674459923,0.073223549,2.355121056,1,0.518996431,0,0.066993076,0.961238037,1,0.552146788,0.827650192,9.05532776,0.200534379,0.115824807,0.116840837,0.724496596,0.448993192,0.98807079,0.949308827,0.053050212,2.283115931,9.108377972,2.483650311,0,9.376669707,-0.272773064,105.8293472,0.272773064,74.17065283,0,0.866697443,9.108377972,10.61038597,16.05266338,8,6,76% -8/30/2018 15:00,74.58551481,90.6260738,193.5961699,509.176539,58.25712421,57.95986668,0,57.95986668,56.50045697,1.459409704,78.64190643,29.94560641,48.69630002,1.756667241,46.93963278,1.301762808,1.581723376,-3.394408948,3.394408948,0.889368193,0.300920851,1.346538389,43.30930329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,54.31038834,1.272699436,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.975562479,41.63054967,55.28595082,42.90324911,0,29.94560641,-0.058811835,93.37161546,0.058811835,86.62838454,0,0,55.28595082,42.90324911,83.3652693,8,7,51% -8/30/2018 16:00,62.84086496,100.3179211,406.237128,706.9077972,83.55955311,201.6212775,117.5189661,84.10231135,81.03992428,3.062387066,101.0165238,0,101.0165238,2.519628828,98.49689494,1.096779998,1.750878022,-1.682629729,1.682629729,0.81790032,0.205691571,2.619433263,84.24997797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.89865772,1.825462509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.897770482,80.98428343,79.7964282,82.80974594,117.5189661,0,0.166243698,80.43050899,-0.166243698,99.56949101,0.749236719,0,167.8459528,82.80974594,222.0432753,8,8,32% -8/30/2018 17:00,51.48108439,111.681296,597.9002694,800.332789,99.47463929,409.3974542,308.4151176,100.9823367,96.4751119,4.507224785,147.96737,0,147.96737,2.999527397,144.9678426,0.898514425,1.949206329,-0.938289803,0.938289803,0.690610696,0.166373297,3.34474307,107.5784346,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.73554716,2.173147388,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.423254968,103.4084833,95.15880213,105.5816307,308.4151176,0,0.385358593,67.33399604,-0.385358593,112.666004,0.92025072,0,378.9780361,105.5816307,448.0791018,8,9,18% -8/30/2018 18:00,41.13338449,126.4453734,749.7380657,849.1704482,110.1596705,607.8968127,495.4070205,112.4897922,106.83795,5.65184223,185.1043947,0,185.1043947,3.321720511,181.7826742,0.717912992,2.20688809,-0.482746095,0.482746095,0.612708134,0.146930876,3.78454854,121.7240903,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.6967013,2.406575203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.741892534,117.0058256,105.4385938,119.4124008,495.4070205,0,0.583401155,54.30988091,-0.583401155,125.6901191,0.964295679,0,583.1574429,119.4124008,661.310471,8,10,13% -8/30/2018 19:00,32.99406501,147.1765934,849.75875,874.0646494,116.6571464,772.3042007,652.7588572,119.5453434,113.139503,6.405840397,209.5514905,0,209.5514905,3.517643383,206.0338471,0.575855068,2.568716137,-0.144101285,0.144101285,0.554796461,0.137282666,3.945454401,126.899376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7539938,2.548520657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.858468283,121.980507,111.6124621,124.5290277,652.7588572,0,0.74680844,41.68533373,-0.74680844,138.3146663,0.983048427,0,753.3060297,124.5290277,834.8077877,8,11,11% -8/30/2018 20:00,29.12655585,175.1628955,890.5377795,882.9777307,119.2154798,885.588106,763.2541628,122.3339432,115.6206932,6.713249947,219.5159815,0,219.5159815,3.594786574,215.9211949,0.508354299,3.057169254,0.145743586,-0.145743586,0.505230068,0.133869087,3.836383807,123.3912907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,111.1390082,2.604410636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.779447009,118.6084021,113.9184552,121.2128127,763.2541628,0,0.864409301,30.18467658,-0.864409301,149.8153234,0.992157031,0,871.1864396,121.2128127,950.5178012,8,12,9% -8/30/2018 21:00,31.21324245,204.6219635,869.0988699,878.3716873,117.8763078,936.1493564,815.2758199,120.8735366,114.3219022,6.55163439,214.2774887,0,214.2774887,3.554405597,210.7230831,0.544773851,3.571326984,0.425626198,-0.425626198,0.457367323,0.135630493,3.478687638,111.8865524,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.8905608,2.575154755,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.520297352,107.5496099,112.4108582,110.1247647,815.2758199,0,0.928167234,21.84910083,-0.928167234,158.1508992,0.996130397,0,924.5318846,110.1247647,996.6063406,8,13,8% -8/30/2018 22:00,38.27412879,227.7016067,786.9763558,858.9919137,112.6194761,917.2180826,802.061939,115.1561435,109.2235833,5.93256019,194.2074215,0,194.2074215,3.395892725,190.8115288,0.668009566,3.974142749,0.730016912,-0.730016912,0.405313445,0.143104015,2.909419345,93.57692721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9898628,2.460312719,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.107864412,89.94970181,107.0977272,92.41001453,802.061939,0,0.933724668,20.97692668,-0.933724668,159.0230733,0.996451024,0,906.3131676,92.41001453,966.7936739,8,14,7% -8/30/2018 23:00,48.10509775,244.0264812,650.1800215,818.9823204,103.2912035,826.3577488,721.2798245,105.0779242,100.1765926,4.901331639,160.7582846,0,160.7582846,3.114610888,157.6436737,0.839592343,4.259065558,1.108664917,-1.108664917,0.340560823,0.158865545,2.182675646,70.20235166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.29355119,2.256524986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.581341075,67.48117069,97.87489226,69.73769568,721.2798245,0,0.880702558,28.27277097,-0.880702558,151.727229,0.993227143,0,814.269592,69.73769568,859.9115191,8,15,6% -8/30/2018 0:00,59.24315501,256.218402,469.1902325,743.0270755,89.20934131,664.2222343,574.1659296,90.05630469,86.51935053,3.53695416,116.4505948,0,116.4505948,2.689990788,113.760604,1.033988114,4.47185472,1.670504932,-1.670504932,0.244480521,0.190134694,1.372801507,44.15401543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.16569065,1.948889169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.994590018,42.44251911,84.16028067,44.39140828,574.1659296,0,0.772738906,39.39951863,-0.772738906,140.6004814,0.985295092,0,649.8831529,44.39140828,678.9364418,8,16,4% -8/30/2018 1:00,70.93041857,266.281921,260.0511247,588.8149046,67.67577096,431.0705284,363.4750564,67.59547199,65.63509677,1.960375224,65.09308014,0,65.09308014,2.040674191,63.05240595,1.237969344,4.647496259,2.776774771,-2.776774771,0.055297237,0.260240255,0.59036097,18.98803815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.09095157,1.478461505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427714513,18.25202452,63.51866608,19.73048602,363.4750564,0,0.617299347,51.88081438,-0.617299347,128.1191856,0.96900202,0,415.7267301,19.73048602,428.6399386,8,17,3% -8/30/2018 2:00,82.7000302,275.4662654,56.83063054,229.1516157,27.71368996,124.8533628,97.54692951,27.30643326,26.87801996,0.428413298,14.61491434,0,14.61491434,0.835670005,13.77924434,1.443387818,4.807793309,7.047787334,-7.047787334,0,0.4876541,0.208917501,6.71950499,0.403016769,1,0.14094766,0,0.946450611,0.985212574,0.724496596,1,26.06068231,0.605440074,0.057882537,0.312029739,0.849005104,0.573501699,0.961238037,0.922476074,0.143011173,6.459043785,26.20369348,7.064483859,58.23388115,0,0.425687287,64.80582584,-0.425687287,115.1941742,0.932542886,0,80.50928509,7.064483859,85.13284848,8,18,6% -8/30/2018 3:00,94.48312506,284.6443846,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64904162,4.967981709,-10.49285625,10.49285625,0,#DIV/0!,0,0,1,0.245019653,0,0.095015963,0.961238037,1,0.490612285,0.766115689,0,0,0.115824807,0.04731673,0.724496596,0.448993192,0.995558841,0.956796878,0,0,0,0,0,0,0.207066256,78.04951746,-0.207066256,101.9504825,0.808531395,0,0,0,0,8,19,0% -8/30/2018 4:00,105.6451871,294.57905,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843856354,5.14137433,-2.543364163,2.543364163,0.965094577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018826543,91.07874521,0.018826543,88.92125479,0,0,0,0,0,8,20,0% -8/30/2018 5:00,115.8815682,306.0804417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022514907,5.342111484,-1.150155647,1.150155647,0.726841889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.238473795,103.79648,0.238473795,76.20351999,0,0.840333357,0,0,0,8,21,0% -8/30/2018 6:00,124.562153,320.0333249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174019694,5.585635236,-0.495694267,0.495694267,0.614922402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.436908962,115.9068265,0.436908962,64.09317354,0,0.935559683,0,0,0,8,22,0% -8/30/2018 7:00,130.7783087,337.0931134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282512076,5.883384715,-0.058796539,0.058796539,0.54020849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600610909,126.9136633,0.600610909,53.08633671,0,0.966751429,0,0,0,8,23,0% -8/31/2018 8:00,133.4854729,356.8078907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329761005,6.22747249,0.304869664,-0.304869664,0.478017907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7184255,135.9246394,0.7184255,44.07536063,0,0.980403361,0,0,0,8,0,0% -8/31/2018 9:00,132.0692494,16.97406938,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305043243,0.296253398,0.666360402,-0.666360402,0.41619935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78232592,141.4740305,0.78232592,38.52596948,0,0.986088018,0,0,0,8,1,0% -8/31/2018 10:00,126.8663373,35.01732059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214235297,0.61116754,1.092575301,-1.092575301,0.343312309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.787959938,141.9952712,0.787959938,38.00472885,0,0.986544997,0,0,0,8,2,0% -8/31/2018 11:00,118.8632268,49.92717624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074554667,0.871393612,1.704045417,-1.704045417,0.238744761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.734946865,137.3027265,0.734946865,42.69727355,0,0.981967871,0,0,0,8,3,0% -8/31/2018 12:00,109.0466145,62.1255143,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903222461,1.084294774,2.869240484,-2.869240484,0.039484669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.626903956,128.8220696,0.626903956,51.17793037,0,0.970242966,0,0,0,8,4,0% -8/31/2018 13:00,98.13290198,72.48330327,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712742244,1.265072295,6.990986228,-6.990986228,0,#DIV/0!,0,0,0.399534771,1,0.142077558,0,0.94631339,0.985075353,0.724496596,1,0,0,0.057462412,0.312029739,0.850005782,0.574502378,0.961238037,0.922476074,0,0,0,0,0,0,-0.471200399,118.1122453,0.471200399,61.88775472,0,0.943888036,0,0,0,8,5,0% -8/31/2018 14:00,86.39197918,81.84287167,13.13701904,65.92792391,8.988159466,8.816165694,0,8.816165694,8.717133295,0.099032399,21.58256313,18.1263146,3.456248533,0.271026171,3.185222362,1.507824484,1.42842758,-15.52154157,15.52154157,0,0.684185616,0.067756543,2.179283324,1,0.542228007,0,0.064337671,0.961238037,1,0.55830283,0.833806234,8.379240096,0.185495887,0.115824807,0.123789382,0.724496596,0.448993192,0.987260595,0.948498632,0.049089385,2.11285104,8.42832948,2.298346927,0,8.297719154,-0.274941383,105.958521,0.274941383,74.04147898,0,0.868143055,8.42832948,9.501954183,14.64716845,8,6,74% -8/31/2018 15:00,74.73990274,90.97200755,190.9477978,506.1431761,57.73028857,57.42895252,0,57.42895252,55.98950736,1.439445156,78.79886217,30.76057668,48.03828549,1.740781202,46.29750429,1.304457385,1.587761059,-3.422598205,3.422598205,0.884547546,0.302335451,1.323502046,42.56837531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.81924414,1.261190055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.958872727,40.91834152,54.77811687,42.17953157,0,30.76057668,-0.060774457,93.48426701,0.060774457,86.51573299,0,0,54.77811687,42.17953157,82.3837767,8,7,50% -8/31/2018 16:00,63.00290502,100.6888381,403.5310949,705.7790845,83.14598025,199.7805808,116.0997708,83.68081001,80.63882217,3.041987845,100.347944,0,100.347944,2.50715808,97.84078587,1.099608131,1.757351744,-1.687961839,1.687961839,0.818812165,0.20604603,2.604383289,83.76591908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.51310311,1.816427495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.886866827,80.51898761,79.39996994,82.33541511,116.0997708,0,0.164498741,80.53188344,-0.164498741,99.46811656,0.746046306,0,166.015775,82.33541511,219.9026575,8,8,32% -8/31/2018 17:00,51.66546488,112.0878474,595.1573133,799.7916244,99.08500316,407.5035138,306.9197418,100.583772,96.09722473,4.486547223,147.2905595,0,147.2905595,2.98777843,144.3027811,0.901732472,1.956301989,-0.938520795,0.938520795,0.690650198,0.1664854,3.329701894,107.0946587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.37230765,2.164635302,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.412357688,102.9434595,94.78466533,105.1080948,306.9197418,0,0.383749632,67.43386218,-0.383749632,112.5661378,0.919706716,0,377.060813,105.1080948,445.8519589,8,9,18% -8/31/2018 18:00,41.36031791,126.8850316,746.8784333,848.8342349,109.7698526,605.9701479,493.8799762,112.0901717,106.4598866,5.630285113,184.3992893,0,184.3992893,3.309966065,181.0893232,0.721873727,2.214561574,-0.480974517,0.480974517,0.612405176,0.146971512,3.768747175,121.2158641,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3332924,2.398059146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.730444499,116.5172993,105.0637369,118.9153584,493.8799762,0,0.581833244,54.42041321,-0.581833244,125.5795868,0.964064725,0,581.1960001,118.9153584,659.0237239,8,10,13% -8/31/2018 19:00,33.28580543,147.5876204,846.6928672,873.7864538,116.2568903,770.2649187,651.1308742,119.1340446,112.7513161,6.382728477,208.7960625,0,208.7960625,3.505574184,205.2904883,0.580946899,2.575889912,-0.141117143,0.141117143,0.554286142,0.137307039,3.928478693,126.3533788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3808537,2.539776563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.84616944,121.4556738,111.2270232,123.9954504,651.1308742,0,0.745183072,41.82517414,-0.745183072,138.1748259,0.982902394,0,751.2251184,123.9954504,832.3776607,8,11,11% -8/31/2018 20:00,29.48083381,175.3689056,887.185958,882.6762082,118.7983392,883.3285777,761.4244642,121.9041134,115.2161309,6.687982501,218.6907153,0,218.6907153,3.582208245,215.108507,0.514537616,3.060764809,0.149831366,-0.149831366,0.504531017,0.133904666,3.818012881,122.8004186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.7501275,2.59529768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.766137336,118.0404333,113.5162648,120.635731,761.4244642,0,0.862631684,30.38663506,-0.862631684,149.6133649,0.992037835,0,868.8781419,120.635731,947.8318151,8,12,9% -8/31/2018 21:00,31.57870868,204.5322289,865.4006642,877.9726574,117.4368015,933.5563746,813.1369702,120.4194044,113.8956487,6.523755754,213.3675632,0,213.3675632,3.541152862,209.8264103,0.55115244,3.56976082,0.431089848,-0.431089848,0.456432984,0.135702232,3.458870778,111.249174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.4808297,2.565553194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.505940104,106.9369376,111.9867698,109.5024908,813.1369702,0,0.926152954,22.15714226,-0.926152954,157.8428577,0.996013237,0,921.8819556,109.5024908,993.5491458,8,13,8% -8/31/2018 22:00,38.61076953,227.4604044,782.8973965,858.3869839,112.1510674,914.1775423,799.506432,114.6711102,108.769299,5.901811272,193.2043063,0,193.2043063,3.381768477,189.8225379,0.673885055,3.969932975,0.73759633,-0.73759633,0.404017288,0.143251297,2.888302674,92.89774246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.5531874,2.45007975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.092565455,89.29684359,106.6457529,91.74692334,799.506432,0,0.931405586,21.34500898,-0.931405586,158.654991,0.996317694,0,903.2081573,91.74692334,963.2546837,8,14,7% -8/31/2018 23:00,48.41175738,243.7523939,645.7194013,817.9566526,102.7820673,822.7423661,718.1918518,104.5505143,99.68280873,4.8677056,159.6614033,0,159.6614033,3.099258554,156.5621447,0.844944563,4.254281833,1.120100595,-1.120100595,0.338605207,0.159174507,2.160688828,69.49518004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.81890737,2.245402272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.565411701,66.80141043,97.38431907,69.0468127,718.1918518,0,0.878031677,28.5941702,-0.878031677,151.4058298,0.993054446,0,810.5879308,69.0468127,855.7776888,8,15,6% -8/31/2018 0:00,59.53079729,255.9505602,464.3972399,741.0515009,88.62843753,659.8398072,570.3830216,89.45678569,85.95596314,3.500822556,115.2709618,0,115.2709618,2.672474396,112.5984874,1.039008419,4.467179997,1.690592952,-1.690592952,0.241045268,0.190846176,1.350928483,43.4505038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.62414126,1.936198602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.978743087,41.76627697,83.60288435,43.70247557,570.3830216,0,0.769694172,39.67356628,-0.769694172,140.3264337,0.985039134,0,645.4524819,43.70247557,674.0548781,8,16,4% -8/31/2018 1:00,71.20950428,266.0276984,255.1077111,584.2600163,66.91250042,425.4882892,358.6703379,66.81795134,64.89484165,1.923109684,63.87147687,0,63.87147687,2.017658769,61.8538181,1.242840308,4.643059239,2.824831823,-2.824831823,0.047078997,0.262291172,0.57120543,18.37193012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37939019,1.461786909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.413836389,17.65979804,62.79322658,19.12158495,358.6703379,0,0.613888214,52.12881972,-0.613888214,127.8711803,0.968551947,0,410.1840805,19.12158495,422.6987754,8,17,3% -8/31/2018 2:00,82.97653552,275.2246495,52.93713414,217.47564,26.34512346,117.7215331,91.77174984,25.94978326,25.55072078,0.399062478,13.62962373,0,13.62962373,0.794402675,12.83522106,1.448213747,4.803576316,7.342870739,-7.342870739,0,0.497668109,0.198600669,6.387680196,0.420475021,1,0.135353825,0,0.94712568,0.985887643,0.724496596,1,24.77370308,0.575542034,0.059971375,0.312029739,0.844050604,0.5685472,0.961238037,0.922476074,0.135920212,6.140081171,24.90962329,6.715623205,53.18402136,0,0.421986342,65.03994276,-0.421986342,114.9600572,0.931512753,0,74.45121744,6.715623205,78.84645851,8,18,6% -8/31/2018 3:00,94.77218367,284.4139383,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654086644,4.963959662,-9.881910408,9.881910408,0,#DIV/0!,0,0,1,0.180368109,0,0.100851688,0.961238037,1,0.478589053,0.754092457,0,0,0.115824807,0.033687993,0.724496596,0.448993192,0.996893074,0.958131111,0,0,0,0,0,0,0.203003447,78.28735234,-0.203003447,101.7126477,0.803698764,0,0,0,0,8,19,0% -8/31/2018 4:00,105.949686,294.3618733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849170863,5.137583881,-2.501574243,2.501574243,0.95794808,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.023111157,91.32428965,0.023111157,88.67571035,0,0,0,0,0,8,20,0% -8/31/2018 5:00,116.2074651,305.886839,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028202881,5.33873248,-1.139380645,1.139380645,0.724999255,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242893172,104.0573608,0.242893172,75.94263916,0,0.844148186,0,0,0,8,21,0% -8/31/2018 6:00,124.9120659,319.8888219,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180126826,5.583113183,-0.492666105,0.492666105,0.614404556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.441366872,116.1911255,0.441366872,63.8088745,0,0.936715558,0,0,0,8,22,0% -8/31/2018 7:00,131.1459259,337.0422775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288928208,5.88249746,-0.059053506,0.059053506,0.540252434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605008543,127.2294566,0.605008543,52.7705434,0,0.967356539,0,0,0,8,23,0% -9/1/2018 8:00,133.8499586,356.8935882,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33612248,6.228968194,0.302501355,-0.302501355,0.478422911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.72266826,136.2752186,0.72266826,43.72478142,0,0.980811961,0,0,0,9,0,0% -9/1/2018 9:00,132.4024016,17.19092861,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310857845,0.300038306,0.661926678,-0.661926678,0.416957561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78632991,141.8438465,0.78632991,38.15615349,0,0.986413458,0,0,0,9,1,0% -9/1/2018 10:00,127.1516058,35.31225656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21921417,0.616315143,1.085197279,-1.085197279,0.344574025,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791657731,142.3407001,0.791657731,37.65929995,0,0.986841392,0,0,0,9,2,0% -9/1/2018 11:00,119.1014235,50.25088824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078711984,0.877043452,1.690870107,-1.690870107,0.240997871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.738292132,137.5861339,0.738292132,42.41386607,0,0.982276131,0,0,0,9,3,0% -9/1/2018 12:00,109.2474293,62.45465019,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90672734,1.090039279,2.839174609,-2.839174609,0.044626236,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629874647,129.0408748,0.629874647,50.95912519,0,0.970619126,0,0,0,9,4,0% -9/1/2018 13:00,98.30779968,72.81302204,0,0,0,0,0,0,0,0,0,0,0,0,0,1.715794785,1.270826973,6.839972319,-6.839972319,0,#DIV/0!,0,0,0.390076719,1,0.145170945,0,0.945936226,0.984698189,0.724496596,1,0,0,0.056315271,0.312029739,0.852745247,0.577241843,0.961238037,0.922476074,0,0,0,0,0,0,-0.473800258,118.2812636,0.473800258,61.71873636,0,0.944470298,0,0,0,9,5,0% -9/1/2018 14:00,86.545492,82.17745441,11.925807,60.5300861,8.278505155,8.118779451,0,8.118779451,8.02887768,0.089901771,19.91374491,16.77256745,3.141177454,0.249627475,2.89154998,1.510503788,1.43426715,-16.19295262,16.19295262,0,0.694167292,0.062406869,2.00721942,1,0.565087235,0,0.061676934,0.961238037,1,0.564527512,0.840030916,7.717662619,0.170831928,0.115824807,0.130815911,0.724496596,0.448993192,0.98643004,0.947668076,0.045213564,1.946143681,7.762876183,2.11697561,0,7.294603692,-0.277094723,106.086885,0.277094723,73.91311504,0,0.86955629,7.762876183,8.46004413,13.29980587,9,6,71% -9/1/2018 15:00,74.89510136,91.32015695,188.2864878,503.047156,57.19891186,56.8935367,0,56.8935367,55.47415362,1.419383078,78.93502025,31.55802314,47.37699711,1.724758234,45.65223888,1.307166112,1.593837412,-3.451354093,3.451354093,0.87963,0.303786599,1.300434223,41.82643484,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,53.32386652,1.249581469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.942160168,40.20516011,54.26602669,41.45474158,0,31.55802314,-0.062733727,93.59673962,0.062733727,86.40326038,0,0,54.26602669,41.45474158,81.39732596,9,7,50% -9/1/2018 16:00,63.16626913,101.0616183,400.7980137,704.6221811,82.72948891,197.9328581,114.6765838,83.2562743,80.23488958,3.021384725,99.67271802,0,99.67271802,2.49459933,97.17811869,1.102459373,1.763857986,-1.693327529,1.693327529,0.819729752,0.206411923,2.58914446,83.27578598,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.12482774,1.807328723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.875826348,80.04785303,79.00065409,81.85518175,114.6765838,0,0.16274904,80.63350347,-0.16274904,99.36649653,0.742778527,0,164.1799581,81.85518175,217.7525374,9,8,33% -9/1/2018 17:00,51.85178376,112.4956093,592.3762373,799.2317985,98.69244355,405.5899605,305.4078759,100.1820845,95.71650224,4.465582297,146.6044183,0,146.6044183,2.975941309,143.628477,0.90498435,1.963418776,-0.938722701,0.938722701,0.690684726,0.166604326,3.31443551,106.6036393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.00634271,2.156059348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.401297245,102.471473,94.40763995,104.6275323,305.4078759,0,0.382126783,67.53451715,-0.382126783,112.4654828,0.919153375,0,375.1243197,104.6275323,443.6009471,9,9,18% -9/1/2018 18:00,41.58981038,127.3244639,743.9705451,848.4824824,109.3767911,604.0120132,492.3249717,111.6870415,106.0786773,5.608364224,183.6823859,0,183.6823859,3.298113808,180.3842721,0.725879126,2.222231113,-0.479157082,0.479157082,0.612094376,0.147017636,3.752687426,120.6993274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.9668595,2.389472227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.718809265,116.0207845,104.6856688,118.4102567,492.3249717,0,0.580241763,54.53245122,-0.580241763,125.4675488,0.963829022,0,579.2027649,118.4102567,656.6999098,9,10,13% -9/1/2018 19:00,33.58036253,147.9962262,843.5698666,873.4934274,115.8530057,768.1826275,649.4638313,118.7187961,112.3596101,6.35918598,208.0266763,0,208.0266763,3.493395574,204.5332807,0.58608789,2.583021428,-0.138076278,0.138076278,0.553766124,0.137336586,3.911219632,125.7982681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.0043311,2.530953202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.833665309,120.9220803,110.8379964,123.4530335,649.4638313,0,0.743524577,41.96747267,-0.743524577,138.0325273,0.982752727,0,749.1003479,123.4530335,829.8978893,9,11,11% -9/1/2018 20:00,29.83759435,175.5734103,883.7699759,882.3590217,118.37719,881.0152899,759.5453776,121.4699124,114.807681,6.662231384,217.8497716,0,217.8497716,3.569509045,214.2802626,0.520764262,3.064334089,0.153989851,-0.153989851,0.503819874,0.133945702,3.799344439,122.1999773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,110.3575099,2.586097152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.752612113,117.4632663,113.110122,120.0493635,759.5453776,0,0.860812162,30.5921049,-0.860812162,149.4078951,0.991915319,0,866.5148174,120.0493635,945.0847248,9,12,9% -9/1/2018 21:00,31.94680354,204.445303,861.6335733,877.5554293,116.9929211,930.9001629,810.9396522,119.9605107,113.4651529,6.495357831,212.4408037,0,212.4408037,3.52776823,208.9130355,0.557576907,3.568243678,0.436647589,-0.436647589,0.455482554,0.135780365,3.438755011,110.6021818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.0670208,2.555856073,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.491366299,106.3150241,111.5583871,108.8708802,810.9396522,0,0.92408938,22.46856065,-0.92408938,157.5314394,0.99589268,0,919.1672504,108.8708802,990.4210641,9,13,8% -9/1/2018 22:00,38.95049889,227.2223413,778.7475536,857.7584966,111.6778825,911.0657689,796.8848585,114.1809103,108.3103823,5.870528004,192.1838606,0,192.1838606,3.367500206,188.8163604,0.679814451,3.96577799,0.745314348,-0.745314348,0.402697429,0.143407041,2.866900669,92.20938042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.1120593,2.439742436,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.077059775,88.63516382,106.1891191,91.07490625,796.8848585,0,0.929031728,21.71562127,-0.929031728,158.2843787,0.996180525,0,900.0302957,91.07490625,959.6370004,9,14,7% -9/1/2018 23:00,48.72157787,243.4799989,641.189013,816.8958979,102.2675202,819.0486239,715.0312931,104.0173308,99.18377714,4.833553619,158.5474427,0,158.5474427,3.083743061,155.4636996,0.850351951,4.249527643,1.131773398,-1.131773398,0.33660904,0.159496682,2.13844966,68.77989194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.33921922,2.23416135,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.549299499,66.1138483,96.88851872,68.34800965,715.0312931,0,0.875302832,28.91916398,-0.875302832,151.080836,0.992876913,0,806.8265816,68.34800965,851.558987,9,15,6% -9/1/2018 0:00,59.82142054,255.6832594,459.5395675,739.0121411,88.04053297,655.369926,566.5199366,88.84998944,85.38578607,3.46420337,114.0754354,0,114.0754354,2.654746904,111.4206885,1.044080752,4.462514719,1.71119765,-1.71119765,0.237521657,0.191584227,1.328870079,42.74102972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.07606537,1.923355095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.962761849,41.0843035,83.03882722,43.00765859,566.5199366,0,0.766590838,39.95127162,-0.766590838,140.0487284,0.984776158,0,640.9341536,43.00765859,669.081806,9,16,4% -9/1/2018 1:00,71.49131104,265.7732791,250.1138507,579.5509452,66.13629164,419.797367,353.7698647,66.02750229,64.14203843,1.885463855,62.63725203,0,62.63725203,1.99425321,60.64299882,1.247758764,4.638618784,2.874696787,-2.874696787,0.038551586,0.264424747,0.552030518,17.75519907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6557671,1.444829662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.399944231,17.06697269,62.05571133,18.51180236,353.7698647,0,0.61042065,52.38007507,-0.61042065,127.6199249,0.968089272,0,404.536522,18.51180236,416.6521265,9,17,3% -9/1/2018 2:00,83.25525791,274.9823325,49.09147571,205.5453392,24.95094328,110.5355014,85.96684887,24.56865256,24.19858028,0.37007228,12.65515965,0,12.65515965,0.752362999,11.90279665,1.45307837,4.799347087,7.664482288,-7.664482288,0,0.508254089,0.18809075,6.049645071,0.438375775,1,0.129739089,0,0.947796093,0.986558056,0.724496596,1,23.46211466,0.545084432,0.06208312,0.312029739,0.839077019,0.563573615,0.961238037,0.922476074,0.128719459,5.815148951,23.59083412,6.360233383,48.28106487,0,0.418237889,65.27661202,-0.418237889,114.723388,0.930450812,0,68.51399014,6.360233383,72.67663568,9,18,6% -9/1/2018 3:00,95.06359638,284.1823972,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659172756,4.959918507,-9.336181457,9.336181457,0,#DIV/0!,0,0,1,0.112479667,0,0.106703358,0.961238037,1,0.466807788,0.742311192,0,0,0.115824807,0.020305627,0.724496596,0.448993192,0.998159972,0.959398009,0,0,0,0,0,0,0.198894443,78.52768346,-0.198894443,101.4723165,0.798610373,0,0,0,0,9,19,0% -9/1/2018 4:00,106.2564489,294.1432783,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854524884,5.133768679,-2.460944489,2.460944489,0.950999983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.027433842,91.57204061,0.027433842,88.42795939,0,0,0,0,0,9,20,0% -9/1/2018 5:00,116.5356435,305.691647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033930675,5.335325735,-1.128740931,1.128740931,0.723179757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.247341358,104.320243,0.247341358,75.67975699,0,0.847850224,0,0,0,9,21,0% -9/1/2018 6:00,125.2643831,319.7430428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18627592,5.580568856,-0.489644662,0.489644662,0.613887858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.445843825,116.4773391,0.445843825,63.52266091,0,0.937853106,0,0,0,9,22,0% -9/1/2018 7:00,131.5160356,336.9915893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29538784,5.881612785,-0.059287287,0.059287287,0.540292413,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609415624,127.5472608,0.609415624,52.45273921,0,0.967954188,0,0,0,9,23,0% -9/2/2018 8:00,134.2166497,356.9820124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.342522448,6.230511487,0.300169108,-0.300169108,0.478821749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7269117,136.6281119,0.7269117,43.37188809,0,0.981215855,0,0,0,9,0,0% -9/2/2018 9:00,132.7369835,17.41252638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316697401,0.303905916,0.657542975,-0.657542975,0.417707218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790327247,142.2161038,0.790327247,37.7838962,0,0.986735067,0,0,0,9,1,0% -9/2/2018 10:00,127.4374991,35.61215096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22420395,0.621549288,1.07789753,-1.07789753,0.345822356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.795343476,142.6877099,0.795343476,37.31229009,0,0.987134079,0,0,0,9,2,0% -9/2/2018 11:00,119.3397887,50.57881847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.082872241,0.882766914,1.67785283,-1.67785283,0.243223957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741622263,137.8697914,0.741622263,42.13020856,0,0.982580233,0,0,0,9,3,0% -9/2/2018 12:00,109.4483015,62.78720558,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910233222,1.095843465,2.809620585,-2.809620585,0.049680272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632829633,129.2591977,0.632829633,50.74080233,0,0.970989794,0,0,0,9,4,0% -9/2/2018 13:00,98.48287497,73.14556623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718850425,1.276630964,6.694762326,-6.694762326,0,#DIV/0!,0,0,0.380696852,1,0.148274243,0,0.945555671,0.984317634,0.724496596,1,0,0,0.055168923,0.312029739,0.855493253,0.579989849,0.961238037,0.922476074,0,0,0,0,0,0,-0.476386403,118.449657,0.476386403,61.55034299,0,0.945043184,0,0,0,9,5,0% -9/2/2018 14:00,86.69907601,82.5144513,10.7699017,55.28881292,7.586364841,7.438796018,0,7.438796018,7.35760795,0.081188068,18.27848491,15.43844066,2.840044248,0.228756891,2.611287357,1.513184335,1.440148856,-16.9263554,16.9263554,0,0.704404279,0.057189223,1.839401988,1,0.587583107,0,0.059010871,0.961238037,1,0.570821109,0.846324513,7.072412622,0.156571136,0.115824807,0.137921074,0.724496596,0.448993192,0.98557871,0.946816747,0.041433397,1.783470596,7.113846019,1.940041732,0,6.367073724,-0.27923263,106.214411,0.27923263,73.78558897,0,0.870937833,7.113846019,7.485367121,12.01286909,9,6,69% -9/2/2018 15:00,75.0511285,91.67039913,185.6120842,499.886544,56.662857,56.35348509,0,56.35348509,54.9542628,1.399222294,79.05003879,32.33764582,46.71239297,1.708594202,45.00379877,1.3098893,1.599950291,-3.480703614,3.480703614,0.874610936,0.30527569,1.277334877,41.08348046,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.82412769,1.237870683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.92542477,39.4910041,53.74955246,40.72887478,0,32.33764582,-0.064689971,93.7090523,0.064689971,86.2909477,0,0,53.74955246,40.72887478,80.40578643,9,7,50% -9/2/2018 16:00,63.33097992,101.4361198,398.0374383,703.4362392,82.3100109,196.0776573,113.2490226,82.82863473,79.82806038,3.000574342,98.99073575,0,98.99073575,2.48195052,96.50878523,1.105334118,1.770394271,-1.698731058,1.698731058,0.82065381,0.206789621,2.573714857,82.77951689,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73376805,1.798164703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.864647653,79.57082031,78.5984157,81.36898501,113.2490226,0,0.160994012,80.73540305,-0.160994012,99.26459695,0.739429444,0,162.3380775,81.36898501,215.5924508,9,8,33% -9/2/2018 17:00,52.04005932,112.9044083,589.5565586,798.6528358,98.29691429,403.6560857,303.8788597,99.77722601,95.33289965,4.444326369,145.9088279,0,145.9088279,2.964014643,142.9448133,0.908270378,1.970553664,-0.938897461,0.938897461,0.690714612,0.166730253,3.298942767,106.1053394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.6376093,2.147418519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.390072805,101.9924882,94.02768211,104.1399067,303.8788597,0,0.380489302,67.63600559,-0.380489302,112.3639944,0.918590261,0,373.167843,104.1399067,441.3253291,9,9,18% -9/2/2018 18:00,41.82186008,127.7634621,741.0140156,848.1148759,108.9804543,602.0216161,490.7412479,111.2803682,105.6942915,5.586076656,182.95359,0,182.95359,3.286162793,179.6674273,0.729929158,2.229893077,-0.477295094,0.477295094,0.611775958,0.147069356,3.736369247,120.1744787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.5973733,2.380813757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.706986801,115.51628,104.3043601,117.8970937,490.7412479,0,0.578625917,54.6460451,-0.578625917,125.3539549,0.963588385,0,577.1769266,117.8970937,654.3382165,9,10,13% -9/2/2018 19:00,33.87769516,148.4022184,840.3895723,873.1853395,115.4454768,766.0565925,647.7570112,118.2995813,111.9643697,6.335211578,207.2432886,0,207.2432886,3.481107074,203.7621815,0.591277324,2.590107329,-0.134979695,0.134979695,0.553236577,0.137371382,3.893678596,125.2340881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.6244109,2.522050225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.820956888,120.379769,110.4453678,122.9018192,647.7570112,0,0.741832211,42.11227339,-0.741832211,137.8877266,0.982599314,0,746.9309626,122.9018192,827.3677452,9,11,11% -9/2/2018 20:00,30.19675941,175.7762618,880.2899612,882.0259856,117.9520345,878.6476952,757.6163521,121.031343,114.3953455,6.635997564,216.9931818,0,216.9931818,3.556689037,213.4364927,0.527032875,3.067874515,0.158218265,-0.158218265,0.503096773,0.133992252,3.780381524,121.5900648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.9611573,2.5768091,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.738873545,116.8769952,112.7000309,119.4538043,757.6163521,0,0.858950149,30.8010907,-0.858950149,149.1989093,0.991789404,0,864.0959013,119.4538043,942.2760271,9,12,9% -9/2/2018 21:00,32.31741632,204.3610235,857.798103,877.1198322,116.5446889,928.1804703,808.6835893,119.496881,113.0304366,6.466444436,211.4973337,0,211.4973337,3.514252375,207.9830813,0.56404532,3.566772722,0.442298967,-0.442298967,0.454516112,0.135864941,3.418345193,109.9457319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.6491549,2.546063883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.476579456,105.6840195,111.1257344,108.2300834,808.6835893,0,0.921976177,22.78328299,-0.921976177,157.216717,0.995768664,0,916.3875115,108.2300834,987.2219365,9,13,8% -9/2/2018 22:00,39.29319061,226.9873534,774.5277588,857.1062501,111.1999645,907.8828886,794.1972959,113.6855927,107.8468752,5.838717407,191.1463115,0,191.1463115,3.353089213,187.7932223,0.68579555,3.961676678,0.753171232,-0.753171232,0.401353823,0.143571309,2.845220064,91.51205764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6665186,2.42930172,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061352251,87.96487063,105.7278709,90.39417235,794.1972959,0,0.926603085,22.08865843,-0.926603085,157.9113416,0.996039463,0,896.7797191,90.39417235,955.940897,9,14,7% -9/2/2018 23:00,49.03443594,243.2092996,636.5902395,815.799699,101.7476212,815.2770542,711.798613,103.4784411,98.67955501,4.798886122,157.4167399,0,157.4167399,3.068066188,154.3486737,0.855812354,4.24480305,1.143685786,-1.143685786,0.334571901,0.159832204,2.115966817,68.05676642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.85454174,2.222803509,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.533010756,65.41875255,96.38755249,67.64155606,711.798613,0,0.872516396,29.24760913,-0.872516396,150.7523909,0.992694487,0,802.9861112,67.64155606,847.2561568,9,15,6% -9/2/2018 0:00,60.11490576,255.4165218,454.6190795,736.908013,87.44567489,650.8134292,562.5774534,88.23597581,84.80886515,3.427110653,112.864469,0,112.864469,2.636809738,110.2276592,1.049203035,4.457859269,1.732330794,-1.732330794,0.233907676,0.192349329,1.306637414,42.02595078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.52150705,1.910359679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.946654359,40.39694242,82.46816141,42.3073021,562.5774534,0,0.763429687,40.23250842,-0.763429687,139.7674916,0.984506084,0,636.3290868,42.3073021,664.0183699,9,16,4% -9/2/2018 1:00,71.77572018,265.5186843,245.0721946,574.6839014,65.34701488,413.9984504,348.7744314,65.224019,63.37656128,1.847457722,61.39104454,0,61.39104454,1.970453603,59.42059094,1.25272264,4.634175267,2.926453292,-2.926453292,0.029700702,0.266643937,0.532853229,17.13839151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.91996134,1.427586928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.38605035,16.47407381,61.3060117,17.90166074,348.7744314,0,0.606897862,52.63446536,-0.606897862,127.3655346,0.967613814,0,398.7849696,17.90166074,410.5012485,9,17,3% -9/2/2018 2:00,83.53604647,274.7393275,45.30381741,193.3844935,23.53295742,103.3119197,80.1470485,23.16487124,22.82335192,0.341519312,11.69404053,0,11.69404053,0.709605493,10.98443504,1.457979055,4.79510585,8.01618985,-8.01618985,0,0.51944756,0.177401373,5.705837981,0.456727094,1,0.124106415,0,0.948461401,0.987223364,0.724496596,1,22.12768989,0.514106764,0.064217094,0.312029739,0.834087101,0.558583697,0.961238037,0.922476074,0.121415907,5.484668499,22.2491058,5.998775264,43.54171998,0,0.414444028,65.51569082,-0.414444028,114.4843092,0.929356447,0,62.71488398,5.998775264,66.64096242,9,18,6% -9/2/2018 3:00,95.35724189,283.9497616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664297837,4.95585825,-8.845940241,8.845940241,0,#DIV/0!,0,0,1,0.041133976,0,0.112568311,0.961238037,1,0.455276319,0.730779723,0,0,0.115824807,0.00717283,0.724496596,0.448993192,0.999361392,0.960599429,0,0,0,0,0,0,0.194741136,78.77039814,-0.194741136,101.2296019,0.793248904,0,0,0,0,9,19,0% -9/2/2018 4:00,106.5653518,293.9232469,0,0,0,0,0,0,0,0,0,0,0,0,0,1.859916257,5.129928406,-2.421444216,2.421444216,0.944245039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.03179246,91.82188075,0.03179246,88.17811925,0,0,0,0,0,9,20,0% -9/2/2018 5:00,116.8659796,305.494822,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039696128,5.331890493,-1.118239606,1.118239606,0.721383925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.251816056,104.5850031,0.251816056,75.41499694,0,0.851442367,0,0,0,9,21,0% -9/2/2018 6:00,125.6189862,319.595918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192464912,5.578001045,-0.486632785,0.486632785,0.613372797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450337471,116.7653378,0.450337471,63.23466218,0,0.938972153,0,0,0,9,22,0% -9/2/2018 7:00,131.8885316,336.9409768,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301889121,5.88072943,-0.059499846,0.059499846,0.540328763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.613829856,127.8669446,0.613829856,52.13305536,0,0.968544203,0,0,0,9,23,0% -9/3/2018 8:00,134.5854515,357.0731263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348959253,6.232101724,0.297871445,-0.297871445,0.479214672,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731153678,136.9831984,0.731153678,43.01680163,0,0.981614924,0,0,0,9,0,0% -9/3/2018 9:00,133.0729069,17.63883867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322560371,0.307855811,0.653207952,-0.653207952,0.418448551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794316037,142.5907012,0.794316037,37.40929875,0,0.987052763,0,0,0,9,1,0% -9/3/2018 10:00,127.7239435,35.91694728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.229203348,0.626868987,1.070674375,-1.070674375,0.347057588,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799015598,143.0362015,0.799015598,36.96379851,0,0.987422999,0,0,0,9,2,0% -9/3/2018 11:00,119.5782713,50.91087964,0,0,0,0,0,0,0,0,0,0,0,0,0,2.087034548,0.888562475,1.664990145,-1.664990145,0.245423606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744936057,138.153607,0.744936057,41.84639301,0,0.982880145,0,0,0,9,3,0% -9/3/2018 12:00,109.6492035,63.12307904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.913739624,1.101705563,2.780563747,-2.780563747,0.054649284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.635768116,129.4769775,0.635768116,50.52302252,0,0.971354974,0,0,0,9,4,0% -9/3/2018 13:00,98.65811913,73.48082857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.721909013,1.282482396,6.555015111,-6.555015111,0,#DIV/0!,0,0,0.371393336,1,0.151387734,0,0.945171674,0.983933638,0.724496596,1,0,0,0.054023262,0.312029739,0.858250028,0.582746624,0.961238037,0.922476074,0,0,0,0,0,0,-0.478958433,118.6173977,0.478958433,61.38260232,0,0.945606807,0,0,0,9,5,0% -9/3/2018 14:00,86.85270551,82.85374956,9.671074453,50.22095756,6.913791656,6.778219973,0,6.778219973,6.705315328,0.072904644,16.68323636,14.12989607,2.553340297,0.208476328,2.344863969,1.515865675,1.446070728,-17.73072554,17.73072554,0,0.714893851,0.052119082,1.676328832,1,0.609723556,0,0.056339585,0.961238037,1,0.577183669,0.852687073,6.445404143,0.142745025,0.115824807,0.145105252,0.724496596,0.448993192,0.984706221,0.945944258,0.037760097,1.625332126,6.48316424,1.768077151,0,5.514565594,-0.281354573,106.3410665,0.281354573,73.6589335,0,0.872288298,6.48316424,6.578368188,10.78857465,9,6,66% -9/3/2018 15:00,75.20799835,92.0226112,182.9245057,496.6594351,56.12199338,55.8086704,0,55.8086704,54.42970821,1.378962192,79.1435552,33.09910578,46.04444941,1.692285168,44.35216424,1.312627195,1.606097552,-3.510674531,3.510674531,0.869485607,0.306804127,1.254204672,40.33953354,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,52.31990587,1.226054844,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.908667015,38.77589403,53.22857288,40.00194887,0,33.09910578,-0.066643465,93.82122142,0.066643465,86.17877858,0,0,53.22857288,40.00194887,79.40904838,9,7,49% -9/3/2018 16:00,63.49705569,101.812201,395.2489992,702.220433,81.88748386,194.2145841,111.8167561,82.397828,79.41827409,2.97955391,98.30190567,0,98.30190567,2.469209771,95.8326959,1.108232687,1.776958126,-1.704176608,1.704176608,0.821585053,0.207179484,2.558092941,82.27706236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.33986588,1.788934074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.853329627,79.0878419,78.19319551,80.87677597,111.8167561,0,0.159233128,80.83761296,-0.159233128,99.16238704,0.73599499,0,160.4897677,80.87677597,213.4220001,9,8,33% -9/3/2018 17:00,52.23030466,113.3140728,586.6978746,798.0542775,97.89837454,401.7012487,302.332095,99.36915374,94.94637734,4.422776401,145.2036894,0,145.2036894,2.951997199,142.2516922,0.911590786,1.977703659,-0.939046949,0.939046949,0.690740176,0.166863353,3.283222882,105.5997339,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.26606936,2.138711922,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.378683802,101.5064809,93.64475316,103.6451928,302.332095,0,0.378836507,67.73836816,-0.378836507,112.2616318,0.918016944,0,371.190739,103.6451928,439.0244448,9,9,18% -9/3/2018 18:00,42.05645928,128.2018232,738.0085393,847.7311136,108.5808159,599.998238,489.1281141,110.8701238,105.3067037,5.563420106,182.2128269,0,182.2128269,3.274112221,178.9387147,0.734023686,2.237543922,-0.475389808,0.475389808,0.611450135,0.147126774,3.719792939,119.6413276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2248091,2.372083159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.694977322,115.0037949,103.9197865,117.3758781,489.1281141,0,0.576984974,54.76124005,-0.576984974,125.2387599,0.963342631,0,575.1177506,117.3758781,651.9379153,9,10,13% -9/3/2018 19:00,34.17775665,148.8054157,837.1518852,872.8619691,115.0342921,763.8861557,646.0097674,117.8763883,111.5655838,6.310804525,206.4458751,0,206.4458751,3.468708339,202.9771668,0.596514384,2.597144449,-0.131828364,0.131828364,0.552697668,0.137411495,3.875857274,124.6608931,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.2410827,2.513067384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.808045401,119.8287922,110.0491281,122.3418595,646.0097674,0,0.740105298,42.25961392,-0.740105298,137.7403861,0.982442046,0,744.7162854,122.3418595,824.7865857,9,11,11% -9/3/2018 20:00,30.5582476,175.9773253,876.7461136,881.6769219,117.5228788,876.2253201,755.6369072,120.5884129,113.9791304,6.609282543,216.1209943,0,216.1209943,3.543748409,212.5772459,0.533342034,3.071383736,0.162515864,-0.162515864,0.50236184,0.134044368,3.761127449,120.9707875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.5610755,2.567433659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.724924033,116.2817223,112.2859996,118.849156,755.6369072,0,0.857045124,31.01358891,-0.857045124,148.9864111,0.991660015,0,861.620906,118.849156,939.4053017,9,12,9% -9/3/2018 21:00,32.69043541,204.2792377,853.8948213,876.6657008,116.0921308,925.3971145,806.36857,119.0285446,112.5915247,6.43701985,210.5372916,0,210.5372916,3.500606077,207.0366855,0.570555732,3.565345291,0.448043555,-0.448043555,0.453533729,0.135956008,3.397646404,109.2799877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.2272562,2.536177187,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461583254,105.0440808,110.6888394,107.580258,806.36857,0,0.91981307,23.10123062,-0.91981307,156.8987694,0.995641129,0,913.5425528,107.580258,983.9516801,9,13,8% -9/3/2018 22:00,39.63871829,226.7553798,770.2389951,856.430045,110.717359,904.6290875,791.4438784,113.1852091,107.3788222,5.806386896,190.0918988,0,190.0918988,3.338536878,186.7533619,0.691826145,3.957627974,0.761167282,-0.761167282,0.399986418,0.143744162,2.823267764,90.80599622,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2166082,2.418758604,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.045447884,87.28617754,105.2620561,89.70493614,791.4438784,0,0.924119703,22.46401419,-0.924119703,157.5359858,0.995894455,0,893.4566262,89.70493614,952.1667128,9,14,7% -9/3/2018 23:00,49.35020827,242.9403007,631.924504,814.6676951,101.2224311,811.428237,708.4943218,102.9339151,98.17020131,4.763713837,156.2696419,0,156.2696419,3.052229768,153.2174122,0.861323621,4.240108133,1.15584032,-1.15584032,0.332493354,0.160181209,2.093249104,67.32608667,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.36493158,2.211330077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.51655185,64.71639538,95.88148343,66.92772545,708.4943218,0,0.869672783,29.57936296,-0.869672783,150.420637,0.992507112,0,799.0671366,66.92772545,842.8699943,9,15,5% -9/3/2018 0:00,60.41113405,255.150371,449.6376702,734.7381067,86.8439104,646.1711865,558.5563818,87.61480477,84.22524609,3.389558685,111.6385232,0,111.6385232,2.618664319,109.0198589,1.054373194,4.453214061,1.754004656,-1.754004656,0.230201228,0.193141981,1.284241715,41.3056281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.9605102,1.897213385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.930428751,39.70454087,81.89093895,41.60175425,558.5563818,0,0.760211532,40.51715036,-0.760211532,139.4828496,0.984228833,0,631.6382345,41.60175425,658.8657506,9,16,4% -9/3/2018 1:00,72.06261325,265.2639373,239.9854378,569.6549681,64.54453145,408.0922369,343.6848496,64.40738728,62.59827568,1.8091116,60.13350362,0,60.13350362,1.946255767,58.18724785,1.257729869,4.629729092,2.980190639,-2.980190639,0.020511075,0.268951867,0.513690816,16.52206244,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.17184362,1.410055678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.372167247,15.88163486,60.54401087,17.29169054,343.6848496,0,0.603321078,52.89187551,-0.603321078,127.1081245,0.967125388,0,392.9303545,17.29169054,404.2474202,9,17,3% -9/3/2018 2:00,83.81874621,274.4956502,41.58494886,181.0227188,22.09349405,96.06996348,74.32918488,21.7407786,21.42729369,0.31348491,10.74895267,0,10.74895267,0.666200362,10.0827523,1.462913096,4.790852879,8.40222895,-8.40222895,0,0.53128583,0.16655009,5.356823422,0.475536969,1,0.118458819,0,0.949121163,0.987883126,0.724496596,1,20.772698,0.482659894,0.066372581,0.312029739,0.829083663,0.553580259,0.961238037,0.922476074,0.114018912,5.14918243,20.88671691,5.631842325,38.98290962,0,0.410606941,65.75703238,-0.410606941,114.2429676,0.928229044,0,57.07178582,5.631842325,60.75771398,9,18,6% -9/3/2018 3:00,95.6529992,283.7160347,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669459775,4.951778947,-8.403294513,8.403294513,0.032798314,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.190545413,79.01538442,-0.190545413,100.9846156,0.787595363,0,0,0,0,9,19,0% -9/3/2018 4:00,106.876271,293.7017641,0,0,0,0,0,0,0,0,0,0,0,0,0,1.865342822,5.126062802,-2.383042848,2.383042848,0.937678018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.036184879,92.07369354,0.036184879,87.92630646,0,0,0,0,0,9,20,0% -9/3/2018 5:00,117.1983491,305.2963243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045497069,5.328426052,-1.107879298,1.107879298,0.719612208,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.256314986,104.8515182,0.256314986,75.14848179,0,0.85492752,0,0,0,9,21,0% -9/3/2018 6:00,125.9757561,319.4473812,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198691722,5.575408588,-0.483633102,0.483633102,0.612859821,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.45484548,117.0549926,0.45484548,62.94500742,0,0.940072558,0,0,0,9,22,0% -9/3/2018 7:00,132.2633065,336.8903708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308430178,5.879846189,-0.059693019,0.059693019,0.540361797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618248958,128.1883766,0.618248958,51.81162343,0,0.969126431,0,0,0,9,23,0% -9/4/2018 8:00,134.9562668,357.1668963,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355431202,6.233738319,0.295606993,-0.295606993,0.479601917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735392068,137.3403558,0.735392068,42.65964425,0,0.982009057,0,0,0,9,0,0% -9/4/2018 9:00,133.4100808,17.86984407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328445165,0.311887616,0.648920377,-0.648920377,0.419181769,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.798294391,142.9675359,0.798294391,37.03246407,0,0.987366465,0,0,0,9,1,0% -9/4/2018 10:00,128.0108622,36.22658965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234211023,0.632273266,1.063526284,-1.063526284,0.348279984,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802672522,143.3860726,0.802672522,36.61392736,0,0.987708096,0,0,0,9,2,0% -9/4/2018 11:00,119.8168177,51.24698425,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091197968,0.894428607,1.652278898,-1.652278898,0.247597357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.7482323,138.4374854,0.7482323,41.56251457,0,0.983175833,0,0,0,9,3,0% -9/4/2018 12:00,109.8501044,63.4621689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917246005,1.107623798,2.751990448,-2.751990448,0.059535606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638689267,129.6941508,0.638689267,50.30584924,0,0.97171467,0,0,0,9,4,0% -9/4/2018 13:00,98.83351989,73.81870164,0,0,0,0,0,0,0,0,0,0,0,0,0,1.724970333,1.288379393,6.42041828,-6.42041828,0,#DIV/0!,0,0,0.362164559,1,0.15451164,0,0.94478419,0.983546153,0.724496596,1,0,0,0.052878207,0.312029739,0.861015751,0.585512347,0.961238037,0.922476074,0,0,0,0,0,0,-0.481515907,118.7844552,0.481515907,61.2155448,0,0.946161271,0,0,0,9,5,0% -9/4/2018 14:00,87.0063479,83.19523638,8.631012836,45.34360511,6.262928728,6.139142539,0,6.139142539,6.074078319,0.065064221,15.13463414,12.85309474,2.281539397,0.188850409,2.092688988,1.518547241,1.452030797,-18.61681873,18.61681873,0,0.725630798,0.047212602,1.51851958,1,0.631515342,0,0.053663298,0.961238037,1,0.583614946,0.859118351,5.838635119,0.129387784,0.115824807,0.152368477,0.724496596,0.448993192,0.983812225,0.945050262,0.03420537,1.472248825,5.872840488,1.601636609,0,4.736168216,-0.283459921,106.4668127,0.283459921,73.53318735,0,0.87360822,5.872840488,5.739192095,9.629026931,9,6,64% -9/4/2018 15:00,75.36572054,92.37667038,180.2237635,493.3639838,55.57619999,55.25897536,0,55.25897536,53.9003725,1.358602856,79.21518511,33.84201961,45.3731655,1.675827484,43.69733802,1.315379967,1.61227705,-3.541295149,3.541295149,0.864249173,0.308373318,1.231045137,39.59464329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.81108825,1.214131307,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.891888011,38.05987718,52.70297626,39.27400849,0,33.84201961,-0.068594427,93.93325973,0.068594427,86.06674027,0,0,52.70297626,39.27400849,78.40702934,9,7,49% -9/4/2018 16:00,63.66450949,102.1897209,392.4324213,700.9739711,81.46185296,192.3433172,110.3795183,81.96379889,79.00547753,2.958321356,97.60615941,0,97.60615941,2.456375429,95.14978398,1.111155307,1.783547092,-1.709668205,1.709668205,0.822524172,0.207581863,2.54227764,81.76838791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.94307012,1.779635637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841871496,78.59888467,77.78494162,80.37852031,110.3795183,0,0.15746593,80.94015978,-0.15746593,99.05984022,0.732470996,0,158.6347373,80.37852031,211.2408712,9,8,33% -9/4/2018 17:00,52.42252682,113.7244331,583.7998784,797.4356887,97.49679004,399.7248932,300.767061,98.95783218,94.5569021,4.400930081,144.4889275,0,144.4889275,2.939887945,141.5490395,0.914945695,1.984865797,-0.939172933,0.939172933,0.69076172,0.167003786,3.267275506,105.0868115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.89169094,2.129938808,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367129982,101.0134403,93.25882092,103.1433792,300.767061,0,0.377167796,67.84164062,-0.377167796,112.1583594,0.917433008,0,369.1924506,103.1433792,436.6977294,9,9,18% -9/4/2018 18:00,42.29359348,128.6393499,734.9539045,847.3309106,108.1778552,597.9412498,487.4849631,110.4562867,104.9158937,5.540392978,181.4600446,0,181.4600446,3.261961468,178.1980831,0.738162459,2.245180204,-0.473442409,0.473442409,0.61111711,0.147189986,3.702959195,119.0998965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.8491477,2.363279979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.682781331,114.4833507,103.531929,116.8466307,487.4849631,0,0.575318281,54.87807533,-0.575318281,125.1219247,0.963091585,0,573.0245947,116.8466307,649.4983776,9,10,13% -9/4/2018 19:00,34.48049413,149.2056484,833.8567942,872.5231077,114.6194455,761.6707484,644.2215374,117.4492111,111.1632463,6.285964737,205.634433,0,205.634433,3.456199183,202.1782338,0.60179815,2.604129828,-0.1286232,0.1286232,0.552149552,0.137456991,3.857757702,124.0787487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.8543407,2.504004543,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.794932323,119.2692128,109.649273,121.7732173,644.2215374,0,0.738343239,42.40952446,-0.738343239,137.5904755,0.982280818,0,742.4557318,121.7732173,822.1538671,9,11,11% -9/4/2018 20:00,30.92197385,176.1764801,873.1387102,881.3116617,117.0897334,873.7477761,753.6066418,120.1411344,113.559046,6.582088413,215.2332766,0,215.2332766,3.530687478,211.7025891,0.539690255,3.074859642,0.166881945,-0.166881945,0.501615196,0.134102099,3.741585818,120.3422615,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,109.1572744,2.557971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.710766188,115.6775592,111.8680406,118.2355303,753.6066418,0,0.855096641,31.22958707,-0.855096641,148.7704129,0.991527077,0,859.0894314,118.2355303,936.4722212,9,12,9% -9/4/2018 21:00,33.06574815,204.1998041,849.9243621,876.1928763,115.6352762,922.5499888,803.9944541,118.5555348,112.1484459,6.407088851,209.5608319,0,209.5608319,3.486830225,206.0740017,0.577106175,3.563958913,0.453880966,-0.453880966,0.452535473,0.136053608,3.37666395,108.6051198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.801352,2.526196629,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.446381537,104.3953722,110.2477336,106.9215688,803.9944541,0,0.917599853,23.42231879,-0.917599853,156.5776812,0.995510017,0,910.6322665,106.9215688,980.6102948,9,13,8% -9/4/2018 22:00,39.98695551,226.5263637,765.8822978,855.7296847,110.2301149,901.3046147,788.6248002,112.6798145,106.9062702,5.773544271,189.0208748,0,189.0208748,3.32384467,185.6970302,0.697904031,3.953630889,0.769302851,-0.769302851,0.398595154,0.14392566,2.80105084,90.09142357,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7623733,2.408114148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.029351799,86.59930313,104.7917251,89.00741728,788.6248002,0,0.92158168,22.84158088,-0.92158168,157.1584191,0.995745449,0,890.0612811,89.00741728,948.3148556,9,14,7% -9/4/2018 23:00,49.66877172,242.6730093,627.193267,813.499521,100.6920123,807.5027997,705.1189753,102.3838244,97.65577659,4.728047774,155.1065047,0,155.1065047,3.036235684,152.070269,0.866883602,4.235443017,1.168239674,-1.168239674,0.330372939,0.160543835,2.070305435,66.5881394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.87044698,2.199742417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.49992924,64.0070524,95.37037622,66.20679481,705.1189753,0,0.866772453,29.91428338,-0.866772453,150.0857166,0.992314733,0,795.0703243,66.20679481,838.4013473,9,15,5% -9/4/2018 0:00,60.70998689,254.8848331,444.5972592,732.5013829,86.23528608,641.4440947,554.4575588,86.98653596,83.63497403,3.351561939,110.3980649,0,110.3980649,2.600312049,107.7977529,1.05958916,4.44857955,1.776232046,-1.776232046,0.22640012,0.193962703,1.261694298,40.58042566,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.39311824,1.883917228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914093224,39.0074487,81.30721147,40.89136592,554.4575588,0,0.756937218,40.80507131,-0.756937218,139.1949287,0.983944323,0,626.862579,40.89136592,653.6251602,9,16,4% -9/4/2018 1:00,72.3518723,265.0090642,234.8563148,564.4600954,63.72869283,402.0794281,338.5019444,63.57748371,61.8070376,1.770446105,58.86528782,0,58.86528782,1.921655223,56.9436326,1.262778392,4.625280718,3.036004307,-3.036004307,0.010966376,0.271351839,0.494560784,15.90677487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.41127549,1.392232667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.358307605,15.29019704,59.76958309,16.68242971,338.5019444,0,0.599691541,53.15219091,-0.599691541,126.8478091,0.966623803,0,386.97362,16.68242971,397.8919366,9,17,3% -9/4/2018 2:00,84.10319752,274.2513195,37.94630877,168.4963226,20.63549787,88.83164084,68.53232406,20.29931677,20.01326147,0.286055304,9.822758286,0,9.822758286,0.622236398,9.200521889,1.467877708,4.786588503,8.827665522,-8.827665522,0,0.543807778,0.155559099,5.003315368,0.494813254,1,0.112799376,0,0.949774946,0.988536909,0.724496596,1,19.39999462,0.450808152,0.068548817,0.312029739,0.824069589,0.548566185,0.961238037,0.922476074,0.106540704,4.809377042,19.50653532,5.260185194,34.62162181,0,0.406728901,66.00048558,-0.406728901,113.9995144,0.927067993,0,51.60313277,5.260185194,55.04581878,9,18,7% -9/4/2018 3:00,95.95074791,283.4812235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674656471,4.947680718,-8.001774849,8.001774849,0.10146222,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.186309154,79.26253151,-0.186309154,100.7374685,0.78162886,0,0,0,0,9,19,0% -9/4/2018 4:00,107.1890832,293.4788191,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870802423,5.122171677,-2.345709957,2.345709957,0.931293718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04060899,92.3273637,0.04060899,87.6726363,0,0,0,0,0,9,20,0% -9/4/2018 5:00,117.5326274,305.0961178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.051331326,5.32493179,-1.097662156,1.097662156,0.717864974,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.260835892,105.1196668,0.260835892,74.8803332,0,0.85830859,0,0,0,9,21,0% -9/4/2018 6:00,126.3345727,319.2973698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204954252,5.572790395,-0.48064801,0.48064801,0.61234934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459365546,117.3461749,0.459365546,62.65382508,0,0.941154223,0,0,0,9,22,0% -9/4/2018 7:00,132.6402512,336.8397059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315009105,5.878961919,-0.059868494,0.059868494,0.540391805,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.622670677,128.5114249,0.622670677,51.48857515,0,0.969700731,0,0,0,9,23,0% -9/5/2018 8:00,135.3289963,357.2632933,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361936559,6.235420765,0.293374495,-0.293374495,0.479983696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739624761,137.6994608,0.739624761,42.30053923,0,0.982398153,0,0,0,9,0,0% -9/5/2018 9:00,133.7484108,18.10552443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334350137,0.316001014,0.644679139,-0.644679139,0.419907064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.802260431,143.346503,0.802260431,36.65349696,0,0.987676099,0,0,0,9,1,0% -9/5/2018 10:00,128.2981748,36.5410232,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239225575,0.637761167,1.056451893,-1.056451893,0.349489776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806312669,143.7372179,0.806312669,36.26278207,0,0.987989316,0,0,0,9,2,0% -9/5/2018 11:00,120.0553704,51.58704487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.095361498,0.900363784,1.639716245,-1.639716245,0.249745697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.751509763,138.721328,0.751509763,41.27867197,0,0.983467265,0,0,0,9,3,0% -9/5/2018 12:00,110.0509695,63.80437345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920751763,1.113596394,2.723888071,-2.723888071,0.064341395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641592231,129.9106509,0.641592231,50.08934913,0,0.972068882,0,0,0,9,4,0% -9/5/2018 13:00,99.00906093,74.15907806,0,0,0,0,0,0,0,0,0,0,0,0,0,1.728034103,1.294320082,6.29068562,-6.29068562,0,#DIV/0!,0,0,0.353009149,1,0.157646114,0,0.94439318,0.983155143,0.724496596,1,0,0,0.0517337,0.312029739,0.863790539,0.588287135,0.961238037,0.922476074,0,0,0,0,0,0,-0.484058341,118.9507959,0.484058341,61.0492041,0,0.946706666,0,0,0,9,5,0% -9/5/2018 14:00,87.15996295,83.53879905,7.65128014,40.67380957,5.635986347,5.523719145,0,5.523719145,5.466040564,0.057678582,13.63940961,11.61432237,2.025087236,0.169945783,1.855141453,1.521228329,1.458027097,-19.59762948,19.59762948,0,0.736606979,0.042486446,1.366510141,1,0.652964034,0,0.050982362,0.961238037,1,0.590114355,0.865617759,5.254166101,0.116535893,0.115824807,0.159710378,0.724496596,0.448993192,0.982896427,0.944134464,0.030781285,1.32475592,5.284947386,1.441291813,0,4.030587587,-0.285547936,106.5916041,0.285547936,73.40839587,0,0.874898051,5.284947386,4.967645039,8.536171711,9,6,62% -9/5/2018 15:00,75.52429961,92.73245424,177.5099701,489.9984222,55.02536722,54.70429451,0,54.70429451,53.36614937,1.338145135,79.26452327,34.56595804,44.69856523,1.659217844,43.03934739,1.318147693,1.61848665,-3.572594192,3.572594192,0.858896722,0.309984657,1.207858739,38.84888903,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,51.29757266,1.202097679,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.875089545,37.34302982,52.1726622,38.5451275,0,34.56595804,-0.070542999,94.04517585,0.070542999,85.95482415,0,0,52.1726622,38.5451275,77.39967725,9,7,48% -9/5/2018 16:00,63.83334862,102.5685395,389.5875329,699.6961034,81.03307183,190.4636163,108.9371152,81.52650112,78.58962574,2.936875385,96.90345393,0,96.90345393,2.443446096,94.46000784,1.114102106,1.790158723,-1.715209678,1.715209678,0.82347182,0.207997087,2.526268391,81.25347544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.54333756,1.770268379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.830272849,78.10393121,77.37361041,79.87419959,108.9371152,0,0.155692042,81.04306538,-0.155692042,98.95693462,0.728853207,0,156.7727762,79.87419959,209.0488423,9,8,33% -9/5/2018 17:00,52.61672631,114.1353219,580.8623671,796.7966616,97.09213368,397.7265555,299.183322,98.5432335,94.16444762,4.378785881,143.764492,0,143.764492,2.927686062,140.8368059,0.918335116,1.99203716,-0.939277053,0.939277053,0.690779526,0.167151703,3.251100752,104.5665758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.51444877,2.121098586,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.355411428,100.51337,92.8698602,102.6344686,299.183322,0,0.37548265,67.94585331,-0.37548265,112.0541467,0.916838055,0,367.1725152,102.6344686,434.3447222,9,9,18% -9/5/2018 18:00,42.53324112,129.0758514,731.8499992,846.9140007,107.7715577,595.8501196,485.8112776,110.038842,104.5218476,5.516994429,180.6952155,0,180.6952155,3.249710098,177.4455054,0.742345099,2.252798591,-0.471453996,0.471453996,0.610777071,0.14725908,3.685869119,118.550221,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4703756,2.354403904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.67039963,113.9549817,103.1407752,116.3093856,485.8112776,0,0.573625276,54.99658381,-0.573625276,125.0034162,0.962835082,0,570.8969167,116.3093856,647.0190834,9,10,13% -9/5/2018 19:00,34.78584849,149.6027592,830.5043795,872.1685604,114.2009361,759.4098976,642.3918482,117.0180494,110.7573565,6.260692819,204.8089816,0,204.8089816,3.443579581,201.365402,0.607127589,2.611060717,-0.125365059,0.125365059,0.551592377,0.137507928,3.839382269,123.4877316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.464184,2.494861684,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.781619384,118.7011047,109.2458034,121.1959664,642.3918482,0,0.736545523,42.56202741,-0.736545523,137.4379726,0.982115533,0,740.148816,121.1959664,819.469152,9,11,11% -9/5/2018 20:00,31.28784938,176.3736192,869.4681085,880.930046,116.6526137,871.2147634,751.5252385,119.6895248,113.135107,6.554417867,214.330116,0,214.330116,3.517506705,210.8126093,0.546075987,3.078300369,0.17131585,-0.17131585,0.500856954,0.134165489,3.72176052,119.7046118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.7497681,2.548421634,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.696402827,115.064626,111.446171,117.6130477,751.5252385,0,0.853104332,31.44906366,-0.853104332,148.5509363,0.991390522,0,856.5011691,117.6130477,933.4765566,9,12,9% -9/5/2018 21:00,33.44324085,204.1225925,845.8874251,875.7012062,115.1741583,919.6390644,801.5611753,118.0778892,111.7012324,6.376656715,208.5681254,0,208.5681254,3.472925819,205.0951996,0.583694665,3.562611318,0.459810853,-0.459810853,0.451521403,0.136157785,3.355403354,107.921306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.3714734,2.516122933,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.430978308,103.7380643,109.8024517,106.2541872,801.5611753,0,0.915336384,23.74645676,-0.915336384,156.2535432,0.995375273,0,907.6566254,106.2541872,977.1978659,9,13,8% -9/5/2018 22:00,40.33777593,226.3002533,761.4587517,855.0049754,109.7382833,897.9097827,785.7403157,112.1694669,106.4292692,5.740197712,187.9335043,0,187.9335043,3.309014134,184.6244902,0.704027003,3.949684518,0.777578343,-0.777578343,0.397179961,0.144115861,2.778576513,89.36857195,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3038618,2.397369476,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.013069225,85.90447065,104.316931,88.30184013,785.7403157,0,0.918989174,23.22124946,-0.918989174,156.7787505,0.995592395,0,886.5940138,88.30184013,944.3858021,9,14,7% -9/5/2018 23:00,49.99000352,242.407435,622.3980232,812.2948062,100.1564287,803.5014156,701.6731735,101.8282421,97.13634285,4.691899201,153.9276925,0,153.9276925,3.020085864,150.9076066,0.872490155,4.230807872,1.180886644,-1.180886644,0.32821018,0.160920223,2.047144816,65.84321428,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.37114751,2.188041927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48314945,63.29100204,94.85429696,65.47904397,701.6731735,0,0.863815905,30.25222906,-0.863815905,149.7477709,0.992117296,0,790.9963888,65.47904397,833.8511135,9,15,5% -9/5/2018 0:00,61.01134642,254.6199368,439.4997873,730.1967704,85.61984756,636.6330738,550.2818455,86.35122829,83.03809325,3.313135042,109.1435661,0,109.1435661,2.581754307,106.5618118,1.064848876,4.443956238,1.799026354,-1.799026354,0.222502064,0.194812034,1.239006546,39.85070958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81937374,1.870472207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.897656025,38.30601784,80.71702976,40.17649005,550.2818455,0,0.753607614,41.0961456,-0.753607614,138.9038544,0.983652475,0,622.003129,40.17649005,648.2978383,9,16,4% -9/5/2018 1:00,72.64338018,264.7540943,229.6875965,559.0950948,62.89933986,395.9607255,333.2265507,62.73417481,61.00269269,1.731482123,57.58706417,0,57.58706417,1.896647171,55.690417,1.267866164,4.620830653,3.093996524,-3.093996524,0.001049122,0.273847351,0.475480875,15.29309941,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.63810856,1.374114419,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344484276,14.70030885,58.98259284,16.07442327,333.2265507,0,0.596010507,53.4152976,-0.596010507,126.5847024,0.966108861,0,380.9157163,16.07442327,391.4361049,9,17,3% -9/5/2018 2:00,84.38923563,274.0063576,34.39999738,155.8492153,19.16263907,81.62211383,62.77797732,18.84413651,18.5848148,0.259321711,8.918501906,0,8.918501906,0.57782427,8.340677635,1.472870015,4.782313112,9.298608424,-9.298608424,0,0.557053504,0.144456068,4.646203699,0.514563579,1,0.107131231,0,0.950422326,0.989184289,0.724496596,1,18.0131235,0.418631717,0.070744986,0.312029739,0.81904784,0.543544436,0.961238037,0.922476074,0.098996964,4.466107723,18.11212046,4.884739439,30.47471664,0,0.402812277,66.24589435,-0.402812277,113.7541056,0.925872701,0,46.32782866,4.884739439,49.52479293,9,18,7% -9/5/2018 3:00,96.25036856,283.2453386,0,0,0,0,0,0,0,0,0,0,0,0,0,1.679885838,4.94356375,-7.636027769,7.636027769,0.164008654,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182034222,79.51173006,-0.182034222,100.4882699,0.775326373,0,0,0,0,9,19,0% -9/5/2018 4:00,107.5036654,293.2544052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876292919,5.118254917,-2.309415325,2.309415325,0.92508697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045062706,92.58277751,0.045062706,87.41722249,0,0,0,0,0,9,20,0% -9/5/2018 5:00,117.8686902,304.8941712,0,0,0,0,0,0,0,0,0,0,0,0,0,2.057196729,5.321407157,-1.087589879,1.087589879,0.716142513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.265376549,105.3893286,0.265376549,74.61067138,0,0.861588476,0,0,0,9,21,0% -9/5/2018 6:00,126.6953152,319.1458255,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211250397,5.570145449,-0.477679675,0.477679675,0.611841725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.463895397,117.6387575,0.463895397,62.36124254,0,0.942217081,0,0,0,9,22,0% -9/5/2018 7:00,133.0192554,336.7889206,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321623976,5.878075549,-0.060027818,0.060027818,0.540419051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627092789,128.835958,0.627092789,51.164042,0,0.970266983,0,0,0,9,23,0% -9/6/2018 8:00,135.7035382,357.362293,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368473549,6.237148636,0.291172812,-0.291172812,0.480360206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743849672,138.0603894,0.743849672,41.93961061,0,0.982782117,0,0,0,9,0,0% -9/6/2018 9:00,134.0877996,18.34586511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340273589,0.32019575,0.64048325,-0.64048325,0.420624603,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806212296,143.7274962,0.806212296,36.27250385,0,0.987981596,0,0,0,9,1,0% -9/6/2018 10:00,128.5857981,36.86019431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244245548,0.643331754,1.04945,-1.04945,0.35068717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809934465,144.0895289,0.809934465,35.91047108,0,0.98826661,0,0,0,9,2,0% -9/6/2018 11:00,120.2938689,51.93097438,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099524083,0.906366487,1.627299628,-1.627299628,0.251869064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.754767204,139.0050327,0.754767204,40.99496726,0,0.983754408,0,0,0,9,3,0% -9/6/2018 12:00,110.2517609,64.1495912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924256233,1.11962158,2.696244938,-2.696244938,0.069068649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644476122,130.1264082,0.644476122,49.87359176,0,0.972417607,0,0,0,9,4,0% -9/6/2018 13:00,99.18472211,74.50185076,0,0,0,0,0,0,0,0,0,0,0,0,0,1.731099969,1.300302595,6.165554304,-6.165554304,0,#DIV/0!,0,0,0.343925952,1,0.160791247,0,0.943998615,0.982760578,0.724496596,1,0,0,0.050589709,0.312029739,0.866574455,0.591071051,0.961238037,0.922476074,0,0,0,0,0,0,-0.486585206,119.1163831,0.486585206,60.88361694,0,0.947243074,0,0,0,9,5,0% -9/6/2018 14:00,87.31350275,83.88432535,6.73326472,36.22825238,5.035208722,4.934136795,0,4.934136795,4.883378601,0.050758194,12.20427715,10.41988904,1.784388107,0.151830121,1.632557986,1.523908104,1.464057668,-20.68900436,20.68900436,0,0.747810896,0.03795753,1.22084465,1,0.674074073,0,0.048297266,0.961238037,1,0.596680945,0.872184349,4.69408926,0.104227529,0.115824807,0.167130155,0.724496596,0.448993192,0.981958586,0.943196623,0.027500101,1.183395311,4.721589361,1.287622839,0,3.396111997,-0.287617767,106.7153888,0.287617767,73.28461118,0,0.876158166,4.721589361,4.263154099,7.511738456,9,6,59% -9/6/2018 15:00,75.68373524,93.08984109,174.7833355,486.5610603,54.4693966,54.14453393,0,54.14453393,52.82694332,1.317590612,79.291146,35.27044946,44.02069654,1.642453278,42.37824326,1.32093037,1.624724227,-3.604600844,3.604600844,0.853423262,0.31163953,1.184648838,38.10237885,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.77926729,1.189951809,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.858274051,36.62545584,51.63754134,37.81540765,0,35.27044946,-0.072489256,94.15697449,0.072489256,85.84302551,0,0,51.63754134,37.81540765,76.38696934,9,7,48% -9/6/2018 16:00,64.0035749,102.9485179,386.7142613,698.3861204,80.60110224,188.5753183,107.4894212,81.08589708,78.17068163,2.91521545,96.19377048,0,96.19377048,2.430420619,93.76334986,1.117073115,1.796790597,-1.720804657,1.720804657,0.824428617,0.208425472,2.51006512,80.73232254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.14063254,1.760831465,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.818533635,77.60297923,76.95916618,79.3638107,107.4894212,0,0.153911165,81.14634716,-0.153911165,98.85365284,0.725137277,0,154.9037524,79.3638107,206.8457792,9,8,34% -9/6/2018 17:00,52.81289749,114.5465751,577.8852376,796.1368145,96.6843852,395.7058609,297.5805237,98.12533727,93.76899425,4.356343021,143.0303573,0,143.0303573,2.915390941,140.1149664,0.921758949,1.999214882,-0.939360829,0.939360829,0.690793852,0.167307242,3.234699178,104.0390448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13432395,2.112190812,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.343528543,100.0062871,92.4778525,102.1184779,297.5805237,0,0.373780635,68.05103136,-0.373780635,111.9489686,0.9162317,0,365.1305616,102.1184779,431.9650631,9,9,18% -9/6/2018 18:00,42.77537408,129.5111434,728.6968072,846.4801357,107.3619149,593.7244094,484.1066279,109.6177814,104.1245571,5.493224335,179.9183353,0,179.9183353,3.237357859,176.6809775,0.746571117,2.26039587,-0.469425589,0.469425589,0.610430193,0.147334137,3.668524211,117.9923491,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.0884848,2.345454748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.657833303,113.418734,102.7463181,115.7641888,484.1066279,0,0.57190548,55.11679219,-0.57190548,124.8832078,0.962572966,0,568.7342707,115.7641888,644.499617,9,10,13% -9/6/2018 19:00,35.09375496,149.9966027,827.0948089,871.7981452,113.7787684,757.1032223,640.5203136,116.5829087,110.3479187,6.234990036,203.9695619,0,203.9695619,3.430849666,200.5387122,0.612501571,2.617934584,-0.122054739,0.122054739,0.551026279,0.13756436,3.820733696,122.8879293,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.0706168,2.485638904,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.768108556,118.124552,108.8387253,120.6101909,640.5203136,0,0.734711719,42.71713768,-0.734711719,137.2828623,0.981946097,0,737.7951473,120.6101909,816.732105,9,11,11% -9/6/2018 20:00,31.65578233,176.5686492,865.7347417,880.5319251,116.211539,868.6260678,749.3924612,119.2336065,112.7073324,6.526274171,213.4116179,0,213.4116179,3.504206677,209.9074113,0.552497629,3.081704284,0.175816973,-0.175816973,0.500087216,0.13423458,3.701655712,119.0579721,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,108.3385749,2.538785809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.681836963,114.4430513,111.0204119,116.9818372,749.3924612,0,0.851067906,31.67198867,-0.851067906,148.3280113,0.991250281,0,853.8558999,116.9818372,930.4181727,9,12,9% -9/6/2018 21:00,33.82279931,204.0474833,841.7847714,875.1905443,114.7088136,916.6643871,799.0687383,117.5956489,111.2499197,6.345729178,207.5593576,0,207.5593576,3.458893962,204.1004637,0.59031921,3.561300413,0.465832921,-0.465832921,0.450491568,0.136268578,3.333870339,107.2287302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.9376544,2.505956901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.415377712,103.0723341,109.3530321,105.578291,799.0687383,0,0.913022591,24.07354867,-0.913022591,155.9264513,0.995236842,0,904.6156801,105.578291,973.71456,9,13,8% -9/6/2018 22:00,40.69105371,226.0770009,756.9694877,854.2557252,109.2419181,894.4449639,782.7907369,111.6542269,105.9478712,5.706355744,186.8300631,0,186.8300631,3.29404689,183.5360162,0.710192863,3.945788029,0.785994226,-0.785994226,0.395740761,0.144314824,2.75585213,88.63767769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8411237,2.386525758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.996605487,85.20190729,103.8377292,87.58843305,782.7907369,0,0.916342395,23.60291005,-0.916342395,156.39709,0.995435243,0,883.0552167,87.58843305,940.3800944,9,14,6% -9/6/2018 23:00,50.31378166,242.1435896,617.5402965,811.053174,99.61574545,799.4248001,698.1575573,101.2672428,96.61196318,4.655279605,152.7335768,0,152.7335768,3.003782268,149.7297945,0.878141149,4.226202902,1.193784168,-1.193784168,0.326004574,0.161310519,2.02377632,65.09160314,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.86709382,2.176230028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466219055,62.56852482,94.33331288,64.74475485,698.1575573,0,0.860803681,30.59305979,-0.860803681,149.4069402,0.991914747,0,786.8460894,64.74475485,829.2202365,9,15,5% -9/6/2018 0:00,61.3150957,254.3557129,434.3472112,727.8231635,84.99763917,631.7390633,546.0301239,85.70893948,82.43464674,3.274292747,107.8755025,0,107.8755025,2.562992429,105.31251,1.070150301,4.439344661,1.822401598,-1.822401598,0.218504662,0.195690537,1.216189888,39.11684742,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.239318,1.85687929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881125434,37.60060162,80.12044343,39.45748091,546.0301239,0,0.750223614,41.39024829,-0.750223614,138.6097517,0.983353204,0,617.0609153,39.45748091,642.8850474,9,16,4% -9/6/2018 1:00,72.93702075,264.499059,224.4820871,553.5556341,62.05630195,389.7368274,327.8595111,61.87731628,60.18507548,1.692240794,56.29950745,0,56.29950745,1.871226467,54.42828098,1.272991159,4.616379448,3.154276912,-3.154276912,0,0.276442111,0.467806617,15.04626887,0.009174481,1,0.307006387,0,0.923268539,0.962030502,0.724496596,1,57.87847529,1.355697206,0.001562193,0.312029739,0.995579689,0.720076285,0.961238037,0.922476074,0.338038879,14.46304595,58.21651417,15.81874316,324.8515703,0,0.592279242,53.68108253,-0.592279242,126.3189175,0.965580361,0,371.8868106,15.81874316,382.2398616,9,17,3% -9/6/2018 2:00,84.6766897,273.7607897,30.95877457,143.1338453,17.67943447,74.47001694,57.09030233,17.37971461,17.14633429,0.23338032,8.039413502,0,8.039413502,0.533100179,7.506313323,1.477887035,4.778027143,9.822490355,-9.822490355,0,0.571063768,0.133275045,4.286583572,0.534795243,1,0.101457613,0,0.951062886,0.989824849,0.724496596,1,16.61642915,0.386229265,0.07296021,0.312029739,0.81402147,0.538518066,0.961238037,0.922476074,0.091407486,4.120427177,16.70783664,4.506656443,26.55868021,0,0.398859558,66.49309669,-0.398859558,113.5069033,0.924642593,0,41.26512357,4.506656443,44.21464008,9,18,7% -9/6/2018 3:00,96.55174289,283.008394,0,0,0,0,0,0,0,0,0,0,0,0,0,1.685145812,4.939428285,-7.301585077,7.301585077,0.221201723,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.177722462,79.76287234,-0.177722462,100.2371277,0.768662461,0,0,0,0,9,19,0% -9/6/2018 4:00,107.819896,293.0285194,0,0,0,0,0,0,0,0,0,0,0,0,0,1.881812184,5.114312465,-2.274129013,2.274129013,0.919052655,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.04954397,92.83982299,0.04954397,87.16017701,0,0,0,0,0,9,20,0% -9/6/2018 5:00,118.2064137,304.6904568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063091116,5.31785167,-1.07766374,1.07766374,0.714445043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269934767,105.6603851,0.269934767,74.33961488,0,0.864770062,0,0,0,9,21,0% -9/6/2018 6:00,127.057863,318.9926937,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21757805,5.567472794,-0.474730051,0.474730051,0.61133731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.468432799,117.9326141,0.468432799,62.0673859,0,0.943261104,0,0,0,9,22,0% -9/6/2018 7:00,133.400208,336.7379572,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328272852,5.87718607,-0.060172411,0.060172411,0.540443778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631513106,129.1618452,0.631513106,50.83815484,0,0.970825079,0,0,0,9,23,0% -9/7/2018 8:00,136.0797896,357.4638752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375040374,6.238921579,0.2890009,-0.2890009,0.480731625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748064748,138.4230174,0.748064748,41.57698264,0,0.983160866,0,0,0,9,0,0% -9/7/2018 9:00,134.4281479,18.59085475,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346213788,0.324471626,0.636331814,-0.636331814,0.421334541,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810148144,144.110408,0.810148144,35.88959199,0,0.988282893,0,0,0,9,1,0% -9/7/2018 10:00,128.8736463,37.18405057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249269446,0.648984112,1.042519517,-1.042519517,0.351872352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813536345,144.442895,0.813536345,35.55710499,0,0.988539931,0,0,0,9,2,0% -9/7/2018 11:00,120.5322504,52.27868617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103684624,0.912435202,1.615026703,-1.615026703,0.253967857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758003381,139.2884951,0.758003381,40.71150486,0,0.984037234,0,0,0,9,3,0% -9/7/2018 12:00,110.4524378,64.49772119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.927758706,1.125697595,2.669050122,-2.669050122,0.073719237,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647340042,130.3413514,0.647340042,49.65864865,0,0.972760842,0,0,0,9,4,0% -9/7/2018 13:00,99.36048037,74.84691342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734167529,1.306325074,6.044781956,-6.044781956,0,#DIV/0!,0,0,0.334913979,1,0.163947081,0,0.94360047,0.982362433,0.724496596,1,0,0,0.049446217,0.312029739,0.869367519,0.593864115,0.961238037,0.922476074,0,0,0,0,0,0,-0.489095944,119.2811779,0.489095944,60.71882208,0,0.947770569,0,0,0,9,5,0% -9/7/2018 14:00,87.46691232,84.23170401,5.878121575,32.02283001,4.462830355,4.372571317,0,4.372571317,4.328259554,0.044311763,10.8357934,9.276003964,1.559789432,0.134570801,1.42521863,1.526585607,1.47012057,-21.91047428,21.91047428,0,0.759227297,0.0336427,1.082064888,1,0.69484894,0,0.045608621,0.961238037,1,0.603313416,0.87881682,4.160487716,0.092501758,0.115824807,0.174626586,0.724496596,0.448993192,0.980998523,0.942236559,0.024374022,1.048705118,4.184861738,1.141206876,0,2.83058244,-0.289668463,106.8381085,0.289668463,73.16189154,0,0.877388873,4.184861738,3.624728412,6.55717399,9,6,57% -9/7/2018 15:00,75.84402325,93.44871053,172.0441498,483.050266,53.90819833,53.57960872,0,53.57960872,52.28266725,1.296941473,79.29461504,35.95498798,43.33962707,1.62553108,41.71409599,1.323727924,1.630987681,-3.637344989,3.637344989,0.847823683,0.313339328,1.16141953,37.35524443,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,50.25608843,1.177691734,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.841444496,35.90728182,51.09753293,37.08497356,0,35.95498798,-0.074433223,94.26865733,0.074433223,85.73134267,0,0,51.09753293,37.08497356,75.36890642,9,7,48% -9/7/2018 16:00,64.17518573,103.3295194,383.8126155,697.0433431,80.16591251,186.6783225,106.0363665,80.64195608,77.74861446,2.893341619,95.4771103,0,95.4771103,2.417298043,93.05981226,1.120068289,1.803440328,-1.726456635,1.726456635,0.825395163,0.20886732,2.493668159,80.20493991,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.73492553,1.751324203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.806654092,77.09603899,76.54157963,78.84736319,106.0363665,0,0.15212306,81.2500189,-0.15212306,98.7499811,0.721318734,0,153.0275973,78.84736319,204.6316195,9,8,34% -9/7/2018 17:00,53.01102966,114.9580319,574.8684697,795.4557861,96.27353,393.6625088,295.9583796,97.70412921,93.37052786,4.33360135,142.2865182,0,142.2865182,2.903002141,139.3835161,0.925217008,2.006396158,-0.939425682,0.939425682,0.690804943,0.167470535,3.218071711,103.5042483,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.7513029,2.103215169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.331482,99.49222041,92.0827849,101.5954356,295.9583796,0,0.372061383,68.15719562,-0.372061383,111.8428044,0.915613573,0,363.0662941,101.5954356,429.5584748,9,9,18% -9/7/2018 18:00,43.01995889,129.9450491,725.4943932,846.0290819,106.9489236,591.5637597,482.3706575,109.1931021,103.7240189,5.469083186,179.1294197,0,179.1294197,3.224904645,175.9045151,0.750839927,2.267968954,-0.467358139,0.467358139,0.610076638,0.147415231,3.6509263,117.4263398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.70347232,2.336432437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.645083676,112.8746643,102.348556,115.2110968,482.3706575,0,0.570158483,55.23872204,-0.570158483,124.761278,0.962305084,0,566.5362923,115.2110968,641.9396509,9,10,13% -9/7/2018 19:00,35.40414449,150.3870458,823.6283253,871.4116903,113.352951,754.7504208,638.6066213,116.1437995,109.9349413,6.208858218,203.1162328,0,203.1162328,3.418009701,199.6982231,0.61791889,2.624749102,-0.118692983,0.118692983,0.550451385,0.137626339,3.801814988,122.2794387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6736472,2.476336393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.754402017,117.5396476,108.4280492,120.015984,638.6066213,0,0.732841467,42.87486382,-0.732841467,137.1251362,0.98177242,0,735.394417,120.015984,813.9424782,9,11,11% -9/7/2018 20:00,32.02567893,176.7614881,861.9391086,880.1171564,115.7665328,865.9815498,747.208144,118.7734058,112.2757447,6.497661086,212.4779042,0,212.4779042,3.490788096,208.9871161,0.558953543,3.085069958,0.180384753,-0.180384753,0.49930608,0.13430941,3.68127578,118.4024834,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.9237164,2.529064092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.667071771,113.8129707,110.5907882,116.3420348,747.208144,0,0.848987136,31.89832496,-0.848987136,148.101675,0.991106293,0,851.1534816,116.3420348,927.2970165,9,12,9% -9/7/2018 21:00,34.20430952,203.9743649,837.6172156,874.6607485,114.2392818,913.6260688,796.5172105,117.1088584,110.794546,6.314312383,206.5347274,0,206.5347274,3.444735845,203.0899915,0.59697782,3.560024257,0.471946917,-0.471946917,0.449446013,0.136386024,3.312070791,106.5275818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.4999319,2.495699394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.399584014,102.3983636,108.8995159,104.894063,796.5172105,0,0.91065846,24.40349497,-0.91065846,155.596505,0.995094674,0,901.5095494,104.894063,970.1606158,9,13,8% -9/7/2018 22:00,41.04666398,225.8565611,752.4156762,853.4817429,108.7410749,890.910585,779.7764275,111.1341574,105.4621302,5.672027189,185.7108365,0,185.7108365,3.278944619,182.4318919,0.716399433,3.941940628,0.79455103,-0.79455103,0.394277461,0.144522607,2.732885144,87.89898046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.374211,2.375584214,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.979965984,84.49184342,103.354177,86.86742764,779.7764275,0,0.913641603,23.98645273,-0.913641603,156.0135473,0.995273946,0,879.4453388,86.86742764,936.2983328,9,14,6% -9/7/2018 23:00,50.63998508,241.8814855,612.6216364,809.7742401,99.07002841,795.2737075,694.5728053,100.7009022,96.08270152,4.618200668,151.5245353,0,151.5245353,2.987326886,148.5372084,0.883834473,4.221628321,1.206935327,-1.206935327,0.323755593,0.16171487,2.00020907,64.33359937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.35834739,2.16430816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.449144662,61.83990276,93.80749205,64.00421092,694.5728053,0,0.857736355,30.93663679,-0.857736355,149.0633632,0.99170703,0,782.6202257,64.00421092,824.5097016,9,15,5% -9/7/2018 0:00,61.62111888,254.0921927,429.1415011,725.3794201,84.36870363,626.7630203,541.7032945,85.05972584,81.82467593,3.235049905,106.5943531,0,106.5943531,2.544027702,104.0503254,1.075491413,4.434745367,1.846372465,-1.846372465,0.214405402,0.196598799,1.19325578,38.37920769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.65299086,1.84313941,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864509751,36.89155425,79.51750061,38.73469366,541.7032945,0,0.746786136,41.68725525,-0.746786136,138.3127448,0.983046427,0,612.0369888,38.73469366,637.3880711,9,16,4% -9/7/2018 1:00,73.23267906,264.2439909,219.2426247,547.8372353,61.19939666,383.4084306,322.4016781,61.00675256,59.35400905,1.652743513,55.00330027,0,55.00330027,1.845387611,53.15791266,1.27815137,4.61192767,3.216963175,-3.216963175,0,0.279140047,0.461346903,14.83850226,0.019588056,1,0.301382944,0,0.924149556,0.962911519,0.724496596,1,57.1075932,1.336977042,0.003319195,0.312029739,0.990630889,0.715127485,0.961238037,0.922476074,0.332411544,14.26333278,57.44000474,15.60030983,316.0864561,0,0.588499024,53.94943345,-0.588499024,126.0505666,0.965038092,0,362.4754751,15.60030983,372.6855659,9,17,3% -9/7/2018 2:00,84.96538164,273.5146421,27.63603813,130.4121191,16.19137936,67.40775472,51.49627306,15.91148166,15.70314953,0.208332129,7.18890723,0,7.18890723,0.488229828,6.700677403,1.48292566,4.773731058,10.40844386,-10.40844386,0,0.58587918,0.122057457,3.925787384,0.555515066,1,0.095781856,0,0.951696213,0.990458176,0.724496596,1,15.21517922,0.353720848,0.075193542,0.312029739,0.808993639,0.533490235,0.961238037,0.922476074,0.083796903,3.773616158,15.29897612,4.127337006,22.88931753,0,0.394873371,66.74192324,-0.394873371,113.2580768,0.923377129,0,36.43444842,4.127337006,39.13570794,9,18,7% -9/7/2018 3:00,96.85475401,282.7704053,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690434354,4.935274599,-6.994688358,6.994688358,0.273684153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.173375703,80.0158521,-0.173375703,99.9841479,0.761608956,0,0,0,0,9,19,0% -9/7/2018 4:00,108.1376543,292.8011607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887358114,5.110344307,-2.23982147,2.23982147,0.91318572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.05405075,93.09838978,0.05405075,86.90161022,0,0,0,0,0,9,20,0% -9/7/2018 5:00,118.545675,304.4849492,0,0,0,0,0,0,0,0,0,0,0,0,0,2.069012343,5.314264887,-1.067884648,1.067884648,0.71277272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.274508387,105.9327194,0.274508387,74.0672806,0,0.867856203,0,0,0,9,21,0% -9/7/2018 6:00,127.4220959,318.8379214,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223935113,5.564771508,-0.471800917,0.471800917,0.610836398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.472975554,118.2276202,0.472975554,61.7723798,0,0.944286291,0,0,0,9,22,0% -9/7/2018 7:00,133.7829981,336.6867597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334953799,5.876292505,-0.060303596,0.060303596,0.540466212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.63592948,129.4889564,0.63592948,50.5110436,0,0.97137493,0,0,0,9,23,0% -9/8/2018 8:00,136.4576471,357.5680228,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381635231,6.240739298,0.286857776,-0.286857776,0.481098121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.752267977,138.7872208,0.752267977,41.2127792,0,0.983534323,0,0,0,9,0,0% -9/8/2018 9:00,134.7693556,18.84048449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.352168986,0.328828487,0.632223986,-0.632223986,0.42203702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814066172,144.4951314,0.814066172,35.50486855,0,0.988579932,0,0,0,9,1,0% -9/8/2018 10:00,129.1616328,37.51254037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254295759,0.65471734,1.03565942,-1.03565942,0.353045498,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817116775,144.7972047,0.817116775,35.20279529,0,0.988809236,0,0,0,9,2,0% -9/8/2018 11:00,120.770451,52.63009403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.10784201,0.918568426,1.602895244,-1.602895244,0.256042459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76121707,139.5716099,0.76121707,40.42839008,0,0.984315714,0,0,0,9,3,0% -9/8/2018 12:00,110.6529586,64.84866319,0,0,0,0,0,0,0,0,0,0,0,0,0,1.931258455,1.131822688,2.642293198,-2.642293198,0.07829494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6501831,130.5554082,0.6501831,49.44459177,0,0.973098586,0,0,0,9,4,0% -9/8/2018 13:00,99.5363112,75.1941607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737236356,1.312385682,5.928143801,-5.928143801,0,#DIV/0!,0,0,0.325972325,1,0.167113631,0,0.943198725,0.981960688,0.724496596,1,0,0,0.048303219,0.312029739,0.872169728,0.596666323,0.961238037,0.922476074,0,0,0,0,0,0,-0.491589996,119.4451411,0.491589996,60.5548589,0,0.948289224,0,0,0,9,5,0% -9/8/2018 14:00,87.62013074,84.580825,5.086710325,28.07219006,3.921023536,3.84113598,0,3.84113598,3.802790209,0.038345771,9.540194743,8.188629606,1.351565137,0.118233327,1.23333181,1.529259772,1.47621388,-23.28640047,23.28640047,0,0.770836805,0.029558332,0.950697552,1,0.715291362,0,0.042917151,0.961238037,1,0.610010142,0.885513546,3.655386595,0.081397538,0.115824807,0.182198062,0.724496596,0.448993192,0.980016115,0.941254152,0.021414911,0.921207151,3.676801506,1.002604689,0,2.331373579,-0.291698994,106.9596997,0.291698994,73.04030026,0,0.878590427,3.676801506,3.050927198,5.673572338,9,6,54% -9/8/2018 15:00,76.00515697,93.80894372,169.292758,479.4644309,53.34168729,53.00943893,0,53.00943893,51.73323861,1.276200319,79.27448157,36.61904372,42.65543785,1.608448682,41.04698917,1.326540238,1.637274936,-3.670857605,3.670857605,0.842092688,0.315085465,1.138175409,36.60763361,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.72795672,1.165315594,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.82460421,35.18864987,50.55256093,36.35396546,0,36.61904372,-0.076374891,94.38022438,0.076374891,85.61977562,0,0,50.55256093,36.35396546,74.34550424,9,7,47% -9/8/2018 16:00,64.34817549,103.7114095,380.8826607,695.6671065,79.72747505,184.7725692,104.5779173,80.19465189,77.32339751,2.871254382,94.75348833,0,94.75348833,2.404077536,92.3494108,1.12308753,1.810105567,-1.732169069,1.732169069,0.826372046,0.209322931,2.477078125,79.6713474,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.32619083,1.741745991,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.794634669,76.58312957,76.1208255,78.32487556,104.5779173,0,0.150327529,81.35409217,-0.150327529,98.64590783,0.717392924,0,151.1442833,78.32487556,202.4063479,9,8,34% -9/8/2018 17:00,53.21110858,115.3695355,571.8121035,794.753227,95.8595574,391.5962488,294.3166496,97.27959923,92.96903806,4.31056117,141.532984,0,141.532984,2.89051934,138.6424647,0.928709043,2.013578251,-0.939472983,0.939472983,0.690813032,0.167641708,3.201219558,102.9622251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.36537564,2.094171422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.319272673,98.97120714,91.68464831,101.0653786,294.3166496,0,0.370324573,68.26436406,-0.370324573,111.7356359,0.914983305,0,360.979469,101.0653786,427.124738,9,9,18% -9/8/2018 18:00,43.26695828,130.3773989,722.2428828,845.5606144,106.5325838,589.3678688,480.6030635,108.7648052,103.3202333,5.444571927,178.3284992,0,178.3284992,3.212350464,175.1161488,0.755150879,2.275514881,-0.465252558,0.465252558,0.609716563,0.147502435,3.633077477,116.8522603,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.31533822,2.327336976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.632152265,112.3228373,101.9474905,114.6501742,480.6030635,0,0.568383928,55.36239113,-0.568383928,124.6376089,0.962031292,0,564.3026765,114.6501742,639.3389225,9,10,13% -9/8/2018 19:00,35.71694522,150.7739657,820.1052302,871.0090307,112.9234962,752.3512521,636.6505164,115.7007358,109.5184361,6.182299639,202.249068,0,202.249068,3.405060053,198.8440079,0.623378293,2.631502128,-0.115280501,0.115280501,0.549867816,0.137693911,3.782629382,121.6623636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.2732866,2.466954417,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.740502111,116.9464916,108.0137887,119.413446,636.6505164,0,0.730934461,43.03520948,-0.730934461,136.9647905,0.981594414,0,732.9463793,119.413446,811.1000914,9,11,11% -9/8/2018 20:00,32.39744468,176.9520631,858.081762,879.6856022,115.3176211,863.2811303,744.9721782,118.3089521,111.8403693,6.468582777,211.5291095,0,211.5291095,3.477251752,208.0518577,0.565442079,3.088396119,0.185018662,-0.185018662,0.498513635,0.134390015,3.660625298,117.7382929,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.505217,2.519257057,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.652110567,113.1745255,110.1573276,115.6937826,744.9721782,0,0.846861852,32.12802994,-0.846861852,147.8719701,0.990958493,0,848.3938346,115.6937826,924.1131015,9,12,9% -9/8/2018 21:00,34.58765835,203.9031318,833.385619,874.11168,113.7656049,910.5242781,793.9067131,116.6175649,110.3351521,6.282412819,205.4944447,0,205.4944447,3.430452737,202.0639919,0.603668519,3.558781004,0.478152629,-0.478152629,0.448384774,0.136510161,3.290010744,105.8180549,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.058345,2.48535133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.383601584,101.7163393,108.4419466,104.2016906,793.9067131,0,0.908244028,24.73619397,-0.908244028,155.263806,0.994948716,0,898.3384114,104.2016906,966.5363339,9,13,8% -9/8/2018 22:00,41.404483,225.6388887,747.7985241,852.6828374,108.2358113,887.3071219,776.6977985,110.6093234,104.9721022,5.637221146,184.5761189,0,184.5761189,3.263709058,181.3124099,0.722644553,3.938141529,0.803249343,-0.803249343,0.392789962,0.144739268,2.709683104,87.15272311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.9031775,2.364546103,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.963156185,83.77451247,102.8663337,86.13905857,776.6977985,0,0.910887102,24.37176828,-0.910887102,155.6282317,0.995108455,0,875.7648802,86.13905857,932.1411713,9,14,6% -9/8/2018 23:00,50.96849371,241.6211333,607.643618,808.4576132,98.51934446,791.0489307,690.9196337,100.129297,95.54862272,4.580674262,150.300952,0,150.300952,2.970721733,147.3302302,0.88956803,4.217084319,1.220343347,-1.220343347,0.321462686,0.162133431,1.97645224,63.56949805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.84497053,2.152277783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.43193292,61.10541951,93.27690345,63.25769729,690.9196337,0,0.854614543,31.28282279,-0.854614543,148.7171772,0.991494092,0,778.3196381,63.25769729,819.7205359,9,15,5% -9/8/2018 0:00,61.929301,253.8294067,423.8846439,722.8643635,83.73308238,621.7059233,537.3022808,84.4036425,81.208221,3.195421495,105.3006008,0,105.3006008,2.524861376,102.7757395,1.080870206,4.430158885,1.870954335,-1.870954335,0.210201655,0.197537428,1.17021572,37.63816014,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.06043093,1.829253472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.847817306,36.17923117,78.90824824,38.00848464,537.3022808,0,0.743296126,41.98704295,-0.743296126,138.012957,0.982732059,0,606.9324249,38.00848464,631.8082179,9,16,4% -9/8/2018 1:00,73.53024098,263.9889221,213.972088,541.9352824,60.32843028,376.9762411,316.8539236,60.1223175,58.50930552,1.613011981,53.69913478,0,53.69913478,1.819124761,51.88001002,1.283344805,4.607475879,3.282181792,-3.282181792,0,0.281945327,0.45478119,14.62732638,0.030192488,1,0.2957406,0,0.925027014,0.963788977,0.724496596,1,56.32214912,1.317949697,0.005090955,0.312029739,0.985664902,0.710161498,0.961238037,0.922476074,0.326751022,14.06034249,56.64890014,15.37829219,307.2873154,0,0.584671148,54.22023849,-0.584671148,125.7797615,0.964481841,0,353.0219359,15.37829219,363.0867206,9,17,3% -9/8/2018 2:00,85.25512416,273.2679415,24.44577458,117.7562382,14.70508678,60.47174974,46.025793,14.44595673,14.26167416,0.184282575,6.370573693,0,6.370573693,0.443412622,5.92716107,1.487982621,4.76942532,11.06781149,-11.06781149,0,0.601538999,0.110853156,3.56541854,0.57672917,1,0.090107433,0,0.952321898,0.991083862,0.724496596,1,13.81569317,0.321250936,0.077443944,0.312029739,0.803967649,0.528464244,0.961238037,0.922476074,0.076195481,3.427215918,13.89188865,3.748466853,19.48137559,0,0.390856516,66.99219518,-0.390856516,113.0078048,0.922075818,0,31.85519399,3.748466853,34.30849057,9,18,8% -9/8/2018 3:00,97.15928614,282.5313887,0,0,0,0,0,0,0,0,0,0,0,0,0,1.695749442,4.931102973,-6.712154035,6.712154035,0.322000368,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.168995767,80.27056404,-0.168995767,99.72943596,0.754134601,0,0,0,0,9,19,0% -9/8/2018 4:00,108.456821,292.5723289,0,0,0,0,0,0,0,0,0,0,0,0,0,1.892928622,5.10635044,-2.206463683,2.206463683,0.907481202,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058581033,93.35836865,0.058581033,86.64163135,0,0,0,0,0,9,20,0% -9/8/2018 5:00,118.8863522,304.2776238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.074958282,5.310646376,-1.058253221,1.058253221,0.711125649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279095282,106.2062157,0.279095282,73.79378428,0,0.870849712,0,0,0,9,21,0% -9/8/2018 6:00,127.7878944,318.6814561,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230319502,5.562040674,-0.468893919,0.468893919,0.610339272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477521502,118.5236521,0.477521502,61.47634785,0,0.945292673,0,0,0,9,22,0% -9/8/2018 7:00,134.1675154,336.6352722,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341664893,5.875393879,-0.060422636,0.060422636,0.540486569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640339804,129.8171625,0.640339804,50.18283747,0,0.971916458,0,0,0,9,23,0% -9/9/2018 8:00,136.8370078,357.67472,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388256325,6.242601516,0.284742487,-0.284742487,0.481459857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756457385,139.1528763,0.756457385,40.84712369,0,0.983902423,0,0,0,9,0,0% -9/9/2018 9:00,135.1113228,19.09474655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813744,0.333266197,0.628158932,-0.628158932,0.422732186,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817964615,144.8815599,0.817964615,35.11844006,0,0.988872661,0,0,0,9,1,0% -9/9/2018 10:00,129.4496716,37.84561197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259322986,0.660530536,1.028868685,-1.028868685,0.354206782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820674258,145.1523467,0.820674258,34.84765335,0,0.989074487,0,0,0,9,2,0% -9/9/2018 11:00,121.0084077,52.9851116,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111995137,0.924764652,1.590903039,-1.590903039,0.258093247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764407082,139.8542722,0.764407082,40.1457278,0,0.984589826,0,0,0,9,3,0% -9/9/2018 12:00,110.8532821,65.20231724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.93475476,1.137995116,2.615964023,-2.615964023,0.082797495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65300443,130.7685079,0.65300443,49.23149207,0,0.973430841,0,0,0,9,4,0% -9/9/2018 13:00,99.71219011,75.54348798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.740306022,1.318482594,5.815430211,-5.815430211,0,#DIV/0!,0,0,0.317100096,1,0.170290914,0,0.942793359,0.981555322,0.724496596,1,0,0,0.047160707,0.312029739,0.874981082,0.599477678,0.961238037,0.922476074,0,0,0,0,0,0,-0.494066819,119.6082341,0.494066819,60.39176589,0,0.948799114,0,0,0,9,5,0% -9/9/2018 14:00,87.77309222,84.93157934,4.359533987,24.38924107,3.411839098,3.34182357,0,3.34182357,3.308959561,0.032864009,8.323220701,7.163321676,1.159899025,0.102879537,1.057019488,1.531929454,1.482335698,-24.84757703,24.84757703,0,0.782615552,0.025719884,0.82723989,1,0.735403509,0,0.040223666,0.961238037,1,0.616769213,0.892272618,3.180697793,0.070952565,0.115824807,0.189842622,0.724496596,0.448993192,0.979011299,0.940249336,0.018633969,0.801392796,3.199331761,0.872345361,0,1.895389777,-0.293708265,107.0800954,0.293708265,72.91990456,0,0.879763047,3.199331761,2.539839247,4.861605752,9,6,52% -9/9/2018 15:00,76.16712881,94.1704232,166.5295331,475.8019326,52.76977871,52.43394515,0,52.43394515,51.17857518,1.255369963,79.23028993,37.26207308,41.96821685,1.591203528,40.37701332,1.32936718,1.643583943,-3.705171235,3.705171235,0.836224712,0.316879401,1.11492134,35.85970281,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,49.19479314,1.152821539,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.807756715,34.46971033,50.00254985,35.62253187,0,37.26207308,-0.078314253,94.49167553,0.078314253,85.50832447,0,0,50.00254985,35.62253187,73.31678451,9,7,47% -9/9/2018 16:00,64.52253707,104.0940555,377.9244919,694.256743,79.28576394,182.8580155,103.1140554,79.74396008,76.89500562,2.848954456,94.02292683,0,94.02292683,2.390758316,91.63216851,1.126130714,1.816784001,-1.737945497,1.737945497,0.827359874,0.209792606,2.460295803,79.13157023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.91440425,1.732096262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.782475934,76.06427523,75.69688018,77.79637149,103.1140554,0,0.148524385,81.45857784,-0.148524385,98.54142216,0.713354942,0,149.2538012,77.79637149,200.1699705,9,8,34% -9/9/2018 17:00,53.4131179,115.7809324,568.7162158,794.0287903,95.44245892,389.5068572,292.6551175,96.8517397,92.56451664,4.287223062,140.7697732,0,140.7697732,2.877942282,137.8918309,0.932234771,2.020758481,-0.939504111,0.939504111,0.690818355,0.167820885,3.184144115,102.4130202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.97653426,2.085059386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.306901572,98.44329045,91.28343583,100.5283498,292.6551175,0,0.368569907,68.37255324,-0.368569907,111.6274468,0.914340525,0,358.8698696,100.5283498,424.663664,9,9,18% -9/9/2018 18:00,43.51633262,130.8080291,718.9424445,845.074512,106.1128982,587.1364703,478.8035757,108.3328946,102.9132028,5.419691829,177.5156147,0,177.5156147,3.199695396,174.3159193,0.759503283,2.283030796,-0.463109752,0.463109752,0.609350121,0.147595818,3.614980029,116.2701841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.92408504,2.318168422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.619040725,111.7633235,101.5431258,114.081492,478.8035757,0,0.566581489,55.48781502,-0.566581489,124.512185,0.961751441,0,562.0331546,114.081492,636.6972095,9,10,13% -9/9/2018 19:00,36.03208373,151.1572481,816.5258714,870.5900052,112.4904186,749.905518,634.6517837,115.2537343,109.0984174,6.15531692,201.3681521,0,201.3681521,3.392001166,197.9761509,0.628878497,2.638191668,-0.111817993,0.111817993,0.549275693,0.137767121,3.763180309,121.0368146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.8695486,2.457493298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.726411323,116.34519,107.5959599,118.8026833,634.6517837,0,0.728990432,43.19817498,-0.728990432,136.801825,0.981411994,0,730.4508325,118.8026833,808.2048127,9,11,11% -9/9/2018 20:00,32.77098502,177.1403074,854.1633012,879.2371285,114.8648327,860.5247782,742.6845003,117.840278,111.4012342,6.439043764,210.56538,0,210.56538,3.463598512,207.1017815,0.571961588,3.091681603,0.189718182,-0.189718182,0.49770997,0.134476432,3.639709027,117.0655537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,107.0831037,2.509365332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.6369568,112.5278631,109.7200605,115.0372284,742.6845003,0,0.844691922,32.36105708,-0.844691922,147.6389429,0.990806821,0,845.5769293,115.0372284,920.8664946,9,12,9% -9/9/2018 21:00,34.9727336,203.8336812,829.0908874,873.5432027,113.2878271,907.3592336,791.2374151,116.1218185,109.8717812,6.250037318,204.4387305,0,204.4387305,3.416045976,201.0226845,0.61038935,3.557568864,0.484449858,-0.484449858,0.447307885,0.136641023,3.267696391,105.1003486,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.6129352,2.474913681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.367434911,101.0264527,107.9803701,103.5013664,791.2374151,0,0.905779374,25.071543,-0.905779374,154.928457,0.99479892,0,895.1024959,103.5013664,962.8420702,9,13,8% -9/9/2018 22:00,41.76438789,225.4239368,743.1192792,851.858819,107.7261872,883.6351003,773.5553081,110.0797922,104.4778451,5.601947021,183.4262148,0,183.4262148,3.24834201,180.1778728,0.728926079,3.934389911,0.812089787,-0.812089787,0.391278157,0.144964867,2.686253689,86.39915259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4280788,2.353412728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.946181654,83.05015182,102.3742604,85.40356455,773.5553081,0,0.908079239,24.75874836,-0.908079239,155.2412516,0.994938726,0,872.014393,85.40356455,927.9093179,9,14,6% -9/9/2018 23:00,51.29918785,241.3625412,602.6078509,807.1028988,97.96376208,786.7513078,687.1988021,99.55250573,95.0097932,4.542712522,149.0632191,0,149.0632191,2.953968874,146.1092502,0.895339732,4.212571036,1.234011567,-1.234011567,0.319125283,0.162566355,1.9525151,62.79959735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.3270271,2.140140394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414590544,60.36536167,92.74161764,62.50550207,687.1988021,0,0.851438897,31.63148163,-0.851438897,148.3685184,0.99127588,0,773.9452149,62.50550207,814.8538159,9,15,5% -9/9/2018 0:00,62.2395273,253.5673826,418.5786553,720.2767892,83.09081665,616.5687857,532.8280411,83.74074467,80.58532196,3.155422712,103.9947358,0,103.9947358,2.505494695,101.4892411,1.086284676,4.425585702,1.896163248,-1.896163248,0.205890677,0.198507056,1.147081291,36.89407739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46167668,1.815222377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831056491,35.46399053,78.29273317,37.2792129,532.8280411,0,0.739754562,42.28948775,-0.739754562,137.7105123,0.982410015,0,601.7483368,37.2792129,626.1468361,9,16,4% -9/9/2018 1:00,73.82959247,263.7338829,208.6734134,535.8450418,59.4431999,370.4409969,311.2171605,59.22383643,57.6507681,1.573068334,52.38771681,0,52.38771681,1.792431799,50.59528501,1.288569474,4.603024606,3.350068661,-3.350068661,0,0.284862355,0.44810795,14.41269202,0.040989814,1,0.290081315,0,0.925900519,0.964662482,0.724496596,1,55.52193487,1.298610737,0.006877115,0.312029739,0.980683358,0.705179954,0.961238037,0.922476074,0.321057152,13.85402779,55.84299202,15.15263852,298.460427,0,0.58079694,54.49338532,-0.58079694,125.5066147,0.963911392,0,343.5323977,15.15263852,353.4494965,9,17,3% -9/9/2018 2:00,85.54571807,273.0207132,21.40247024,105.249349,13.22842692,53.70259492,40.71171301,12.99088191,12.82954104,0.161340861,5.588162578,0,5.588162578,0.398885879,5.189276698,1.493054441,4.765110372,11.81484885,-11.81484885,0,0.618079445,0.09972147,3.207385261,0.598442674,1,0.084438006,0,0.95293953,0.991701494,0.724496596,1,12.42547055,0.288991462,0.079710266,0.312029739,0.79894698,0.523443576,0.961238037,0.922476074,0.06863994,3.083060712,12.49411049,3.372052174,16.34808663,0,0.386812018,67.24372132,-0.386812018,112.7562787,0.920738246,0,27.54641909,3.372052174,29.7533598,9,18,8% -9/9/2018 3:00,97.46522378,282.2913596,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701089061,4.926913676,-6.451268531,6.451268531,0.366614417,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.164584485,80.52690276,-0.164584485,99.47309724,0.746204658,0,0,0,0,9,19,0% -9/9/2018 4:00,108.7772767,292.3420233,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898521629,5.102330848,-2.174027364,2.174027364,0.901934265,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063132804,93.61965046,0.063132804,86.38034954,0,0,0,0,0,9,20,0% -9/9/2018 5:00,119.2283237,304.068455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08092681,5.306995691,-1.048769877,1.048769877,0.709503901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283693331,106.4807585,0.283693331,73.51924147,0,0.873753347,0,0,0,9,21,0% -9/9/2018 6:00,128.1551394,318.5232436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236729137,5.559279344,-0.466010621,0.466010621,0.609846199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482068502,118.8205865,0.482068502,61.1794135,0,0.946280301,0,0,0,9,22,0% -9/9/2018 7:00,134.5536503,336.5834368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348404217,5.87448918,-0.060530776,0.060530776,0.540505062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.644742,130.1463343,0.644742,49.85366571,0,0.9724496,0,0,0,9,23,0% -9/10/2018 8:00,137.2177698,357.7839503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394901875,6.244507944,0.282654066,-0.282654066,0.481816998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760631038,139.5198604,0.760631038,40.48013958,0,0.984265107,0,0,0,9,0,0% -9/10/2018 9:00,135.4539508,19.3536323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364117427,0.337784606,0.624135786,-0.624135786,0.423420184,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821841753,145.2695875,0.821841753,34.73041246,0,0.989161037,0,0,0,9,1,0% -9/10/2018 10:00,129.7376782,38.18321191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264349649,0.666422767,1.022146243,-1.022146243,0.355356387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824207342,145.5082101,0.824207342,34.49178994,0,0.989335653,0,0,0,9,2,0% -9/10/2018 11:00,121.246059,53.34365118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.116142935,0.931022348,1.579047826,-1.579047826,0.260120608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.76757227,140.1363785,0.76757227,39.86362148,0,0.984859554,0,0,0,9,3,0% -9/10/2018 12:00,111.0533686,65.55858278,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938246927,1.144213122,2.59005257,-2.59005257,0.087228614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65580321,130.9805817,0.65580321,49.01941829,0,0.973757616,0,0,0,9,4,0% -9/10/2018 13:00,99.88809383,75.89479056,0,0,0,0,0,0,0,0,0,0,0,0,0,1.743376121,1.32461398,5.70644477,-5.70644477,0,#DIV/0!,0,0,0.308296354,1,0.173478971,0,0.942384348,0.981146312,0.724496596,1,0,0,0.046018668,0.312029739,0.8778016,0.602298196,0.961238037,0.922476074,0,0,0,0,0,0,-0.496525904,119.7704206,0.496525904,60.2295794,0,0.949300319,0,0,0,9,5,0% -9/10/2018 14:00,87.925727,85.28385826,3.696681729,20.98465855,2.937142313,2.876443784,0,2.876443784,2.848576636,0.027867148,7.1899304,6.205061438,0.984868961,0.088565678,0.896303284,1.534593433,1.488484125,-26.63351357,26.63351357,0,0.79453481,0.022141419,0.712144159,1,0.755187141,0,0.037529051,0.961238037,1,0.623588458,0.899091862,2.738160213,0.061202004,0.115824807,0.197557981,0.724496596,0.448993192,0.977984068,0.939222105,0.016041383,0.689707802,2.754201596,0.750909806,0,1.519078831,-0.295695135,107.1992254,0.295695135,72.80077463,0,0.880906924,2.754201596,2.089076865,4.121460623,9,6,50% -9/10/2018 15:00,76.32993136,94.53303203,163.7548566,472.0611015,52.19238464,51.85304495,0,51.85304495,50.61859167,1.234453279,79.16158037,37.88352654,41.27805383,1.573792966,39.70426087,1.33220862,1.649912661,-3.74032044,3.74032044,0.830213844,0.318722667,1.091662267,35.11161106,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.65651568,1.140207647,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.790905596,33.75061609,49.44742128,34.89082374,0,37.88352654,-0.08025132,94.60301176,0.08025132,85.39698824,0,0,49.44742128,34.89082374,72.2827676,9,7,46% -9/10/2018 16:00,64.69826298,104.477326,374.9382135,692.8115684,78.84075291,180.934617,101.6447611,79.28985595,76.46341332,2.826442628,93.28545035,0,93.28545035,2.377339592,90.90811076,1.129197709,1.823473333,-1.74378965,1.74378965,0.828359283,0.210276654,2.443322056,78.5856362,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49954131,1.722374441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.770178512,75.53950266,75.26971983,77.2618771,101.6447611,0,0.146713429,81.5634873,-0.146713429,98.4365127,0.709199569,0,147.3561405,77.2618771,197.9224939,9,8,34% -9/10/2018 17:00,53.61704027,116.1920709,565.580904,793.2821255,95.02222699,387.3941164,290.9735724,96.42054401,92.15695625,4.263587757,139.996909,0,139.996909,2.865270738,137.1316382,0.935793888,2.027934202,-0.93952051,0.93952051,0.690821159,0.168008195,3.166846908,101.8566825,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.58477171,2.075878896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.294369805,97.90851756,90.87914151,99.98439645,290.9735724,0,0.366797087,68.4817796,-0.366797087,111.5182204,0.91368485,0,356.7372863,99.98439645,422.1750741,9,9,18% -9/10/2018 18:00,43.76804085,131.2367803,715.5932773,844.5705541,105.6898712,584.869316,476.97194,107.897376,102.5029317,5.394444392,176.6908145,0,176.6908145,3.186939571,173.5038749,0.76389642,2.290513916,-0.46093066,0.46093066,0.608977475,0.14769545,3.596636414,115.6801904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.52971679,2.308926871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.605750838,111.1961991,101.1354676,113.505126,476.97194,0,0.564750852,55.61500818,-0.564750852,124.3849918,0.961465384,0,559.7274769,113.505126,634.0143118,9,10,13% -9/10/2018 19:00,36.34948565,151.5367848,812.8906363,870.1544551,112.053735,747.4130504,632.6102359,114.8028145,108.6749015,6.127912983,200.4735796,0,200.4735796,3.378833546,197.0947461,0.634418206,2.644815833,-0.108306183,0.108306183,0.548675138,0.137846015,3.743471396,120.4029082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.462449,2.447953402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.712132283,115.7358551,107.1745813,118.1838085,632.6102359,0,0.727009133,43.36375838,-0.727009133,136.6362416,0.981225073,0,727.9076062,118.1838085,805.2565452,9,11,11% -9/10/2018 20:00,33.14620541,177.3261576,850.1843726,878.7716048,114.408199,857.7125033,740.3450847,117.3674186,110.9583697,6.40904892,209.5868736,0,209.5868736,3.449829322,206.1370442,0.578510419,3.0949253,0.194482777,-0.194482777,0.496895176,0.134568692,3.618531934,116.3844256,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.6574055,2.4993896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.621614069,111.8731368,109.2790195,114.3725264,740.3450847,0,0.84247725,32.59735694,-0.84247725,147.4026431,0.990651216,0,842.7027782,114.3725264,917.5573093,9,12,9% -9/10/2018 21:00,35.35942346,203.7659113,824.7339779,872.9551855,112.805996,904.1312043,788.5095323,115.6216721,109.404479,6.217193095,203.3678184,0,203.3678184,3.401516988,199.9663014,0.617138361,3.556386055,0.490838391,-0.490838391,0.446215381,0.136778645,3.245134134,104.3746688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.1637466,2.464387479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.351088633,100.3289017,107.5148352,102.7932892,788.5095323,0,0.903264618,25.40943887,-0.903264618,154.5905611,0.994645236,0,891.8020848,102.7932892,959.0782367,9,13,8% -9/10/2018 22:00,42.12625573,225.2116552,738.3792419,851.0095036,107.2122652,879.8951025,770.3494681,109.5456344,103.9794198,5.566214618,182.2614412,0,182.2614412,3.232845366,179.0285958,0.735241864,3.930684898,0.821072976,-0.821072976,0.389741941,0.145199457,2.662604774,85.63852218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.94897336,2.342185462,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.929048095,82.31900494,101.8780215,84.6611904,770.3494681,0,0.905218408,25.14728497,-0.905218408,154.852715,0.994764711,0,868.1944877,84.6611904,923.6035436,9,14,6% -9/10/2018 23:00,51.63194711,241.1057131,597.5159961,805.7097055,97.40335264,782.3817371,683.411127,98.97061015,94.46628218,4.50432797,147.8117415,0,147.8117415,2.937070462,144.8746711,0.901147476,4.208088538,1.247943385,-1.247943385,0.316742802,0.163013799,1.928407096,62.02420106,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.80458363,2.127897552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397124376,59.62002126,92.20170801,61.74791881,683.411127,0,0.848210121,31.98247728,-0.848210121,148.0175227,0.991052342,0,769.4979061,61.74791881,809.910684,9,15,5% -9/10/2018 0:00,62.55168202,253.3061453,413.2256008,717.615479,82.44194946,611.3526775,528.2815879,83.07108963,79.9560205,3.115069126,102.67726,0,102.67726,2.485928955,100.1913311,1.091732804,4.42102625,1.922015842,-1.922015842,0.201469623,0.19950833,1.123864248,36.14733747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.85676818,1.801047065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814235822,34.74619571,77.671004,36.54724278,528.2815879,0,0.736162476,42.59446471,-0.736162476,137.4055353,0.982080211,0,596.4858973,36.54724278,620.4053368,9,16,4% -9/10/2018 1:00,74.13061833,263.4789014,203.3496194,529.5616982,58.54349686,363.8035033,305.4923736,58.31112976,56.77819443,1.532935326,51.06977196,0,51.06977196,1.765302433,49.30446953,1.293823366,4.598574339,3.420769685,-3.420769685,0,0.287895778,0.441325608,14.19454861,0.051982078,1,0.284407051,0,0.926769683,0.965531646,0.724496596,1,54.7067396,1.278955603,0.008677305,0.312029739,0.975687895,0.700184491,0.961238037,0.922476074,0.315329676,13.64434004,55.02206927,14.92329564,289.6122451,0,0.576877774,54.76875982,-0.576877774,125.2312402,0.963326527,0,334.0132276,14.92329564,343.7802261,9,17,3% -9/10/2018 2:00,85.83694869,272.7729808,18.52096321,92.98583666,11.77065291,47.14503814,35.589695,11.55534314,11.41572429,0.139618844,4.845550573,0,4.845550573,0.354928614,4.490621958,1.498137374,4.760786625,12.66771124,-12.66771124,0,0.635531358,0.088732154,2.853931073,0.620659278,1,0.078777491,0,0.95354869,0.992310653,0.724496596,1,11.05330566,0.257144573,0.081991214,0.312029739,0.793935357,0.518431953,0.961238037,0.922476074,0.061174227,2.743307102,11.11447988,3.000451675,13.5006206,0,0.382743182,67.49629449,-0.382743182,112.5037055,0.9193641,0,23.5264658,3.000451675,25.49020141,9,18,8% -9/10/2018 3:00,97.77245048,282.050332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706451179,4.92270695,-6.209705868,6.209705868,0.407924065,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.160143723,80.7847615,-0.160143723,99.2152385,0.737780457,0,0,0,0,9,19,0% -9/10/2018 4:00,109.0989013,292.1102416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904135038,5.098285495,-2.142485146,2.142485146,0.896540228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.067704029,93.88212482,0.067704029,86.11787518,0,0,0,0,0,9,20,0% -9/10/2018 5:00,119.5714667,303.8574155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.086915785,5.303312357,-1.039434924,1.039434924,0.707907531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288300406,106.7562311,0.288300406,73.24376886,0,0.87656979,0,0,0,9,21,0% -9/10/2018 6:00,128.5237109,318.3632268,0,0,0,0,0,0,0,0,0,0,0,0,0,2.243161922,5.556486525,-0.463152555,0.463152555,0.609357441,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486614414,119.1182987,0.486614414,60.88170134,0,0.947249242,0,0,0,9,22,0% -9/10/2018 7:00,134.9412926,336.5311916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.355169853,5.873577329,-0.060629269,0.060629269,0.540521905,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649134003,130.4763412,0.649134003,49.5236588,0,0.972974302,0,0,0,9,23,0% -9/11/2018 8:00,137.5998315,357.8956941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401570109,6.246458241,0.280591515,-0.280591515,0.482169715,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.764787026,139.8880486,0.764787026,40.11195142,0,0.984622322,0,0,0,9,0,0% -9/11/2018 9:00,135.7971418,19.61713013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.370107239,0.342383511,0.620153631,-0.620153631,0.424101173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825695898,145.6591083,0.825695898,34.34089172,0,0.989445018,0,0,0,9,1,0% -9/11/2018 10:00,130.0255698,38.52528311,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269374304,0.672393035,1.01549095,-1.01549095,0.35649451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827714617,145.8646847,0.827714617,34.13531532,0,0.989592706,0,0,0,9,2,0% -9/11/2018 11:00,121.4833458,53.70562209,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120284371,0.937339932,1.567327245,-1.567327245,0.262124945,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770711536,140.4178272,0.770711536,39.58217277,0,0.985124884,0,0,0,9,3,0% -9/11/2018 12:00,111.2531806,65.91735726,0,0,0,0,0,0,0,0,0,0,0,0,0,1.941734305,1.150474918,2.564548841,-2.564548841,0.091590009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658578667,131.1915638,0.658578667,48.80843624,0,0.974078926,0,0,0,9,4,0% -9/11/2018 13:00,100.0640011,76.24796239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.746446283,1.330777992,5.601002852,-5.601002852,0,#DIV/0!,0,0,0.299560086,1,0.176677871,0,0.941971664,0.980733627,0.724496596,1,0,0,0.044877074,0.312029739,0.880631333,0.605127929,0.961238037,0.922476074,0,0,0,0,0,0,-0.498966795,119.9316672,0.498966795,60.06833275,0,0.949792931,0,0,0,9,5,0% -9/11/2018 14:00,88.07796194,85.63755204,3.097777075,17.86640398,2.498545011,2.446557012,0,2.446557012,2.42320466,0.023352352,6.14451801,5.318085743,0.826432267,0.075340351,0.751091917,1.537250434,1.494657247,-28.69575925,28.69575925,0,0.806560624,0.018835088,0.605801165,1,0.774643699,0,0.034834258,0.961238037,1,0.630465459,0.905968863,2.32927649,0.052177102,0.115824807,0.205341545,0.724496596,0.448993192,0.976934474,0.938172511,0.013645957,0.586536216,2.342922447,0.638713318,0,1.198464129,-0.297658429,107.3170171,0.297658429,72.6829829,0,0.882022227,2.342922447,1.695785319,3.452780022,9,6,47% -9/11/2018 15:00,76.4935582,94.89665254,160.969104,468.2401978,51.60941135,51.26665028,0,51.26665028,50.05319718,1.213453099,79.06789079,38.48285373,40.58503706,1.556214171,39.02882289,1.335064447,1.656259036,-3.776342209,3.776342209,0.824053759,0.320616877,1.068403096,34.36351618,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,48.113037,1.127471869,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.774054406,33.03151883,48.8870914,34.1589907,0,38.48285373,-0.082186138,94.71423616,0.082186138,85.28576384,0,0,48.8870914,34.1589907,71.24346764,9,7,46% -9/11/2018 16:00,64.8753461,104.861089,371.9239268,691.3308721,78.39241405,179.0023132,100.17,78.83231319,76.02859353,2.803719662,92.54108257,0,92.54108257,2.363820521,90.17726205,1.132288393,1.83017126,-1.749705549,1.749705549,0.829370961,0.210775399,2.426157776,78.03357394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.08157599,1.712579921,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.75774305,75.00883942,74.83931904,76.72141934,100.17,0,0.144894441,81.66883347,-0.144894441,98.33116653,0.704921198,0,145.4512754,76.72141934,195.6639099,9,8,35% -9/11/2018 17:00,53.82285792,116.6028001,562.4062752,792.5128736,94.59885419,385.2578014,289.2717956,95.98600577,91.7463497,4.239656064,139.2144172,0,139.2144172,2.852504486,136.3619127,0.939386084,2.035102779,-0.939523738,0.939523738,0.690821711,0.168203767,3.149329572,101.2932648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.19008108,2.06662979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281678554,97.36693898,90.47175963,99.43356877,289.2717956,0,0.3650058,68.59206034,-0.3650058,111.4079397,0.913015875,0,354.5815014,99.43356877,419.6587835,9,9,18% -9/11/2018 18:00,44.02204089,131.6634955,712.1956054,844.0485191,105.2635084,582.566164,475.1079074,107.4582565,102.0894252,5.368831306,175.8541532,0,175.8541532,3.174083159,172.6800701,0.768329557,2.297961501,-0.458716293,0.458716293,0.608598796,0.147801401,3.57804926,115.0823637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.13223869,2.299612444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.592284509,110.6215453,100.7245232,112.9211578,475.1079074,0,0.562891702,55.74398495,-0.562891702,124.256015,0.961172967,0,557.3854,112.9211578,631.2900394,9,10,13% -9/11/2018 19:00,36.66907574,151.9124708,809.1999519,869.702224,111.6134646,744.8737035,630.5257056,114.3479979,108.2479068,6.100091045,199.5654547,0,199.5654547,3.365557767,196.1998969,0.639996105,2.65137279,-0.10474585,0.10474585,0.548066285,0.137930637,3.723506493,119.7607683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.0520054,2.438335146,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.697667779,115.1186058,106.7496732,117.5569409,630.5257056,0,0.724990334,43.53195628,-0.724990334,136.4680437,0.981033563,0,725.3165529,117.5569409,802.2552196,9,11,11% -9/11/2018 20:00,33.52301083,177.5095506,846.1456744,878.2889057,113.9477542,854.8443543,737.9539418,116.8904125,110.511809,6.378603507,208.5937603,0,208.5937603,3.435945212,205.1578151,0.585086914,3.098126112,0.199311861,-0.199311861,0.496069354,0.134666828,3.597099244,115.6950766,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,106.2281543,2.48933061,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.606086157,111.2105083,108.8342405,113.699839,737.9539418,0,0.840217766,32.83687773,-0.840217766,147.1631223,0.990491618,0,839.7714341,113.699839,914.1857047,9,12,9% -9/11/2018 21:00,35.74761559,203.6997188,820.3159097,872.3475045,112.3201621,900.8405133,785.7233307,115.1171826,108.9332948,6.18388783,202.2819569,0,202.2819569,3.386867304,198.8950896,0.623913592,3.555230778,0.497317962,-0.497317962,0.445107309,0.136923057,3.222330651,103.6412304,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.7108264,2.453773833,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.334567587,99.62389287,107.045394,102.0776667,785.7233307,0,0.900699924,25.74977786,-0.900699924,154.2502221,0.994487616,0,888.4375161,102.0776667,955.2453074,9,13,8% -9/11/2018 22:00,42.48996243,225.0019895,733.579781,850.1347171,106.6941121,876.0877781,767.0808529,109.0069252,103.476891,5.530034254,181.0821321,0,181.0821321,3.217221139,177.864911,0.741589743,3.927025541,0.830199475,-0.830199475,0.388181218,0.145443093,2.638744511,84.87109411,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.46592354,2.330865764,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.911761416,81.58132389,101.377685,83.91218965,767.0808529,0,0.902305055,25.53726966,-0.902305055,154.4627303,0.994586368,0,864.3058447,83.91218965,919.2246945,9,14,6% -9/11/2018 23:00,51.96664922,240.8506482,592.3697863,804.2776545,96.83819195,777.9411941,679.5574973,98.38369684,93.91816317,4.465533667,146.5469417,0,146.5469417,2.920028782,143.6269129,0.90698913,4.203636816,1.262142196,-1.262142196,0.314314662,0.163475914,1.904137937,61.24362148,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.27771079,2.115550913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.379541453,58.86969848,91.65725224,60.9852494,679.5574973,0,0.844928979,32.33567266,-0.844928979,147.6643273,0.990823429,0,764.9787417,60.9852494,804.8923677,9,15,5% -9/11/2018 0:00,62.86564715,253.0457157,407.8276187,714.8792159,81.78652775,606.0587498,523.6640108,82.39473903,79.32036217,3.074376857,101.3486934,0,101.3486934,2.466165572,98.88252781,1.097212529,4.416480897,1.948529254,-1.948529254,0.196935562,0.200541905,1.100576602,35.39832672,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.24574922,1.786728562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797364002,34.02621809,77.04311322,35.81294665,523.6640108,0,0.732520962,42.90184639,-0.732520962,137.0981536,0.981742568,0,591.1463637,35.81294665,614.585221,9,16,4% -9/11/2018 1:00,74.43320087,263.2240028,198.0038331,523.0803976,57.62911092,357.0646713,299.6806541,57.38401712,55.89138059,1.492636531,49.74605208,0,49.74605208,1.737730323,48.00832175,1.299104428,4.594125519,3.494441363,-3.494441363,0,0.291050481,0.434432581,13.97284515,0.063171277,1,0.278719796,0,0.927634125,0.966396088,0.724496596,1,53.87635355,1.258979703,0.010491143,0.312029739,0.970680175,0.695176771,0.961238037,0.922476074,0.309568261,13.43123024,54.18592181,14.69020994,280.7494444,0,0.572915092,55.04624482,-0.572915092,124.9537552,0.962727033,0,324.4710014,14.69020994,334.08545,9,17,3% -9/11/2018 2:00,86.12858177,272.5247656,15.81621176,81.07103308,10.34249087,40.84769977,30.69784387,10.1498559,10.03062661,0.119229285,4.146687915,0,4.146687915,0.311864259,3.834823656,1.503227332,4.756454453,13.64986778,-13.64986778,0,0.653917071,0.077966065,2.507656653,0.643380759,1,0.073130136,0,0.954148945,0.992910908,0.724496596,1,9.709367777,0.225944594,0.084285314,0.312029739,0.788936805,0.513433401,0.961238037,0.922476074,0.053850147,2.410454958,9.763217924,2.636399552,10.94744179,0,0.378653666,67.74968747,-0.378653666,112.2503125,0.917953213,0,19.81245728,2.636399552,21.53792806,9,18,9% -9/11/2018 3:00,98.08084756,281.808318,0,0,0,0,0,0,0,0,0,0,0,0,0,1.711833723,4.918483009,-5.985461999,5.985461999,0.446272025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.155675399,81.04403071,-0.155675399,98.95596929,0.728818874,0,0,0,0,9,19,0% -9/11/2018 4:00,109.4215726,291.8769799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909766715,5.09421431,-2.111810737,2.111810737,0.891294595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072292626,94.14567876,0.072292626,85.85432124,0,0,0,0,0,9,20,0% -9/11/2018 5:00,119.9156565,303.6444756,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092923031,5.299595855,-1.03024864,1.03024864,0.706336583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292914344,107.0325144,0.292914344,72.96748563,0,0.879301634,0,0,0,9,21,0% -9/11/2018 6:00,128.893487,318.2013447,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249615733,5.55366115,-0.460321257,0.460321257,0.608873261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491157081,119.4166616,0.491157081,60.58333845,0,0.948199574,0,0,0,9,22,0% -9/11/2018 7:00,135.3303314,336.4784695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36195986,5.872657154,-0.060719406,0.060719406,0.54053732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653513747,130.8070502,0.653513747,49.19294978,0,0.973490515,0,0,0,9,23,0% -9/12/2018 8:00,137.983091,358.009927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.408259251,6.248451981,0.278553779,-0.278553779,0.482518188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768923452,140.257314,0.768923452,39.74268603,0,0.984974021,0,0,0,9,0,0% -9/12/2018 9:00,136.1407989,19.88522336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.376105188,0.34706262,0.616211479,-0.616211479,0.42477532,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829525394,146.0500153,0.829525394,33.94998469,0,0.98972457,0,0,0,9,1,0% -9/12/2018 10:00,130.3132655,38.87176306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274395542,0.678440251,1.00890157,-1.00890157,0.35762136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831194716,146.2216605,0.831194716,33.77833946,0,0.989845623,0,0,0,9,2,0% -9/12/2018 11:00,121.7202116,54.07092926,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12441846,0.943715745,1.55573882,-1.55573882,0.264106682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773823835,140.6985188,0.773823835,39.30148121,0,0.98538581,0,0,0,9,3,0% -9/12/2018 12:00,111.4526836,66.27853484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945216289,1.156778656,2.539442819,-2.539442819,0.095883391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661330086,131.4013917,0.661330086,48.59860826,0,0.97439479,0,0,0,9,4,0% -9/12/2018 13:00,100.2398934,76.60289492,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749516181,1.336972733,5.498930502,-5.498930502,0,#DIV/0!,0,0,0.290890184,1,0.17988773,0,0.941555273,0.980317236,0.724496596,1,0,0,0.043735885,0.312029739,0.883470367,0.607966963,0.961238037,0.922476074,0,0,0,0,0,0,-0.501389094,120.0919444,0.501389094,59.90805562,0,0.950277049,0,0,0,9,5,0% -9/12/2018 14:00,88.22972087,85.99254891,2.561932558,15.0392734,2.097335057,2.053405596,0,2.053405596,2.034092667,0.01931293,5.190133001,4.505720401,0.6844126,0.06324239,0.62117021,1.539899127,1.500853111,-31.10287128,31.10287128,0,0.818653501,0.015810598,0.508523167,1,0.793774376,0,0.032140301,0.961238037,1,0.637397562,0.912900966,1.955247242,0.043903716,0.115824807,0.21319042,0.724496596,0.448993192,0.975862628,0.937100665,0.011454724,0.492183767,1.966701966,0.536087483,0,0.929195002,-0.299596947,107.4333965,0.299596947,72.56660354,0,0.883109114,1.966701966,1.356668059,2.854614077,9,6,45% -9/12/2018 15:00,76.6580045,95.26116525,158.1726363,464.3373929,51.02075755,50.67466561,0,50.67466561,49.48229347,1.192372145,78.94875737,39.05950635,39.88925103,1.538464087,38.35078694,1.337934577,1.662620983,-3.813276338,3.813276338,0.817737651,0.322563743,1.045148616,33.61557217,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.56426263,1.114611994,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.757206615,32.3125666,48.32146924,33.4271786,0,39.05950635,-0.084118804,94.8253546,0.084118804,85.1746454,0,0,48.32146924,33.4271786,70.19888909,9,7,45% -9/12/2018 16:00,65.0537802,105.2452108,368.8817204,689.8139094,77.94071684,177.0610175,98.68971461,78.37130288,75.59051666,2.780786225,91.78984406,0,91.78984406,2.350200183,89.43964388,1.135402655,1.836875451,-1.75569758,1.75569758,0.830395659,0.211289182,2.408803847,77.47541193,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.66047984,1.702712033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.745170187,74.47231287,74.40565003,76.1750249,98.68971461,0,0.143067157,81.77463151,-0.143067157,98.22536849,0.700513778,0,143.5391549,76.1750249,193.3941852,9,8,35% -9/12/2018 17:00,54.03055313,117.012968,559.1924408,791.7206649,94.17233278,383.097669,287.5495507,95.54811831,91.33268949,4.215428822,138.4223247,0,138.4223247,2.839643292,135.5826814,0.943011049,2.042261558,-0.939515512,0.939515512,0.690820305,0.168407736,3.131593835,100.7228225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.79245514,2.057311899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.268829073,96.81860819,90.06128422,98.87592009,287.5495507,0,0.363195712,68.70341415,-0.363195712,111.2965859,0.912333176,0,352.4022792,98.87592009,417.1145914,9,9,18% -9/12/2018 18:00,44.27828988,132.0880182,708.7496753,843.5081831,104.8338164,580.2267705,473.2112261,107.0155444,101.67269,5.342854429,175.0056908,0,175.0056908,3.161126359,171.8445644,0.772801946,2.30537082,-0.456467762,0.456467762,0.608214274,0.147913742,3.559221376,114.4767942,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.73165693,2.290225286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.578643771,110.0394489,100.3103007,112.3296742,473.2112261,0,0.561003717,55.87476007,-0.561003717,124.1252399,0.960874031,0,555.006679,112.3296742,628.5242041,9,10,13% -9/12/2018 19:00,36.99077787,152.284202,805.4542857,869.2331587,111.1696284,742.2873499,628.3980413,113.8893086,107.817454,6.071854631,198.6438913,0,198.6438913,3.35217447,195.2917168,0.645610867,2.657860723,-0.101137854,0.101137854,0.547449281,0.138021028,3.703289695,119.1105266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.6382378,2.428638992,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.683020778,114.4935687,106.3212586,116.9222077,628.3980413,0,0.722933812,43.70276432,-0.722933812,136.2972357,0.980837375,0,722.677544,116.9222077,799.2007905,9,11,11% -9/12/2018 20:00,33.90130537,177.6904218,842.0479624,877.7889124,113.4835357,851.9204188,735.5111172,116.4093017,110.0615884,6.347713223,207.5862247,0,207.5862247,3.421947312,204.1642774,0.591689399,3.10128291,0.204204768,-0.204204768,0.495232618,0.134770869,3.575416482,114.9976845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.7953852,2.479189179,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.59037707,110.5401485,108.3857623,113.0193376,735.5111172,0,0.837913429,33.07956567,-0.837913429,146.9204343,0.990327964,0,836.7829897,113.0193376,910.7518858,9,12,9% -9/12/2018 21:00,36.13719636,203.6349981,815.8377732,871.7200462,111.8303805,897.4875428,782.8791311,114.6084117,108.4582819,6.150129746,201.1814121,0,201.1814121,3.372098582,197.8093136,0.630713059,3.55410119,0.503888223,-0.503888223,0.443983729,0.137074286,3.199292956,102.900259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.254226,2.443073944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.317876856,98.91164291,106.5721028,101.3547168,782.8791311,0,0.898085497,26.09245555,-0.898085497,153.9075445,0.994326013,0,885.0091882,101.3547168,951.3438233,9,13,7% -9/12/2018 22:00,42.85538178,224.7948805,728.7223473,849.2343004,106.1717998,872.2138542,763.7501091,108.4637452,102.9703283,5.493416867,179.8886414,0,179.8886414,3.201471496,176.68717,0.747967514,3.923410806,0.839469759,-0.839469759,0.386595906,0.14569582,2.614681401,84.09714178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.97899621,2.3194552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.894327775,80.83737147,100.873324,83.15682667,763.7501091,0,0.899339686,25.9285928,-0.899339686,154.0714072,0.994403654,0,860.3492235,83.15682667,914.7737034,9,14,6% -9/12/2018 23:00,52.30316898,240.597341,587.1710419,802.8063866,96.26836156,773.4307466,675.638888,97.7918586,93.36551527,4.426343336,145.2692634,0,145.2692634,2.902846294,142.3664171,0.912862508,4.199215772,1.276611331,-1.276611331,0.311840294,0.163952843,1.879717672,60.4581818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.74648461,2.103102258,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.361849054,58.11470399,91.10833366,60.21780625,675.638888,0,0.841596304,32.69092872,-0.841596304,147.3090713,0.990589093,0,760.3888467,60.21780625,799.8001965,9,15,5% -9/12/2018 0:00,63.18130138,252.7861111,402.386938,712.0667994,81.12460434,600.6882556,518.9764947,81.71176091,78.6783982,3.033362707,100.0095779,0,100.0095779,2.446206139,97.56337178,1.102721735,4.411949941,1.975721039,-1.975721039,0.192285493,0.201608444,1.07723069,34.64744196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.62866903,1.77226802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780449968,33.30443909,76.40911899,35.07670711,518.9764947,0,0.728831193,43.2115019,-0.728831193,136.7884981,0.981397009,0,585.7310985,35.07670711,608.6881017,9,16,4% -9/12/2018 1:00,74.73721893,262.9692093,192.6393109,516.3962896,56.69983393,350.2255512,293.7832299,56.44232124,54.99012474,1.452196497,48.41734041,0,48.41734041,1.709709193,46.70763122,1.304410544,4.589678534,3.571251472,-3.571251472,0,0.294331586,0.427427298,13.74753119,0.074559314,1,0.273021579,0,0.928493466,0.967255429,0.724496596,1,53.03057163,1.23867849,0.012318224,0.312029739,0.965661904,0.690158499,0.961238037,0.922476074,0.303772514,13.21464989,53.33434414,14.45332838,271.8789539,0,0.56891042,55.32571908,-0.56891042,124.6742809,0.962112701,0,314.9125389,14.45332838,324.3719532,9,17,3% -9/12/2018 2:00,86.42035916,272.2760869,13.30295209,69.62004192,8.956163342,34.8624013,26.07601605,8.786385245,8.686101973,0.100283272,3.495516121,0,3.495516121,0.270061369,3.225454751,1.508319808,4.752114191,14.79217653,-14.79217653,0,0.673246305,0.067515342,2.171525493,0.666606376,1,0.067500598,0,0.954739843,0.993501806,0.724496596,1,8.405218051,0.195658543,0.086590867,0.312029739,0.783955724,0.50845232,0.961238037,0.922476074,0.046727682,2.087352902,8.451945733,2.283011445,8.693577502,0,0.374547549,68.00364864,-0.374547549,111.9963514,0.916505601,0,16.41965821,2.283011445,17.91384354,9,18,9% -9/12/2018 3:00,98.39029306,281.5653277,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717234566,4.914242029,-5.776801818,5.776801818,0.481955017,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.151181509,81.30459709,-0.151181509,98.69540291,0.719271722,0,0,0,0,9,19,0% -9/12/2018 4:00,109.745165,291.6422321,0,0,0,0,0,0,0,0,0,0,0,0,0,1.915414468,5.090117188,-2.081979011,2.081979011,0.88619307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076896451,94.4101957,0.076896451,85.5898043,0,0,0,0,0,9,20,0% -9/12/2018 5:00,120.2607654,303.4296028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098946317,5.295845618,-1.021211326,1.021211326,0.704791112,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297532936,107.3094856,0.297532936,72.69051439,0,0.881951377,0,0,0,9,21,0% -9/12/2018 6:00,129.2643432,318.0375317,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256088395,5.550802074,-0.4575183,0.4575183,0.608393927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495694315,119.7155447,0.495694315,60.2844553,0,0.949131383,0,0,0,9,22,0% -9/12/2018 7:00,135.7206535,336.4251966,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368772266,5.871727367,-0.060802531,0.060802531,0.540551535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657879154,131.1383249,0.657879154,48.86167514,0,0.9739982,0,0,0,9,23,0% -9/13/2018 8:00,138.3674463,358.1266181,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414967515,6.250488625,0.276539736,-0.276539736,0.48286261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.773038429,140.6275267,0.773038429,39.37247328,0,0.985320162,0,0,0,9,0,0% -9/13/2018 9:00,136.4848262,20.15788871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382109596,0.351821528,0.612308258,-0.612308258,0.425442811,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833328608,146.4422005,0.833328608,33.55779954,0,0.98999966,0,0,0,9,1,0% -9/13/2018 10:00,130.6006871,39.2225825,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279411995,0.684563206,1.002376765,-1.002376765,0.358737167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834646314,146.5790279,0.834646314,33.4209721,0,0.990094386,0,0,0,9,2,0% -9/13/2018 11:00,121.9566032,54.43947212,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12854427,0.950148032,1.544279941,-1.544279941,0.266066266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776908176,140.9783561,0.776908176,39.02164388,0,0.98564233,0,0,0,9,3,0% -9/13/2018 12:00,111.6518463,66.64200562,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948692334,1.163122418,2.51472443,-2.51472443,0.100110485,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664056813,131.6100073,0.664056813,48.38999268,0,0.974705238,0,0,0,9,4,0% -9/13/2018 13:00,100.415755,76.95947638,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752585546,1.343196253,5.400063477,-5.400063477,0,#DIV/0!,0,0,0.282285431,1,0.183108713,0,0.941135134,0.979897097,0.724496596,1,0,0,0.04259504,0.312029739,0.886318837,0.610815433,0.961238037,0.922476074,0,0,0,0,0,0,-0.50379247,120.2512266,0.50379247,59.74877342,0,0.950752784,0,0,0,9,5,0% -9/13/2018 14:00,88.38092521,86.3487343,2.087712678,12.50449807,1.734405272,1.697844614,0,1.697844614,1.682106553,0.01573806,4.328713469,3.770224641,0.558488828,0.052298718,0.50619011,1.542538141,1.507069718,-33.948067,33.948067,0,0.830768185,0.01307468,0.420526638,1,0.812580183,0,0.029448243,0.961238037,1,0.644381891,0.919885295,1.616904801,0.036400781,0.115824807,0.221101426,0.724496596,0.448993192,0.974768702,0.936006739,0.009472561,0.40686118,1.626377362,0.443261961,0,0.706614814,-0.301509474,107.5482882,0.301509474,72.45171177,0,0.884167732,1.626377362,1.068027978,2.325380313,9,6,43% -9/13/2018 15:00,76.82326742,95.6264481,155.3657928,460.3507524,50.42631256,50.07698616,0,50.07698616,48.90577319,1.171212973,78.80371409,39.61293948,39.19077461,1.520539377,37.67023524,1.340818959,1.668996371,-3.851165816,3.851165816,0.811258168,0.32456509,1.021903438,32.86792734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,47.01008941,1.101625603,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.740365562,31.59390195,47.75045497,32.69552755,0,39.61293948,-0.086049473,94.93637635,0.086049473,85.06362365,0,0,47.75045497,32.69552755,69.14902384,9,7,45% -9/13/2018 16:00,65.23356032,105.6295556,365.8116628,688.2598954,77.48562738,175.1106098,97.20381717,77.90679265,75.14914982,2.757642834,91.03175043,0,91.03175043,2.336477557,88.69527287,1.13854041,1.843583533,-1.761770569,1.761770569,0.831434201,0.211818362,2.391261117,76.91117744,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.23622124,1.692770036,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732460539,73.92994922,73.96868178,75.62271925,97.20381717,0,0.141231267,81.88089937,-0.141231267,98.11910063,0.695970747,0,141.619695,75.62271925,191.1132523,9,8,35% -9/13/2018 17:00,54.24010853,117.4224206,555.9395097,790.9051157,93.7426542,380.91345,285.8065759,95.10687415,90.9159673,4.190906854,137.6206575,0,137.6206575,2.826686898,134.7939706,0.94666848,2.049407855,-0.939497737,0.939497737,0.690817265,0.168620241,3.113641507,100.1454139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.39188592,2.047925035,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.255822673,96.26358109,89.6477086,98.31150613,285.8065759,0,0.361366452,68.81586172,-0.361366452,111.1841383,0.911636298,0,350.1993575,98.31150613,414.542272,9,9,18% -9/13/2018 18:00,44.53674452,132.5101915,705.2557521,842.9493193,104.4008026,577.8508839,471.2816349,106.569249,101.2527332,5.316515761,174.1454917,0,174.1454917,3.148069397,170.9974223,0.77731283,2.312739135,-0.454186303,0.454186303,0.607824122,0.148032543,3.540155744,113.8635779,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.3279785,2.280765562,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.564830785,109.4500021,99.89280929,111.7307677,471.2816349,0,0.55908656,56.00734923,-0.55908656,123.9926508,0.96056841,0,552.59106,111.7307677,625.7166128,9,10,13% -9/13/2018 19:00,37.31451512,152.6518744,801.654145,868.7471085,110.72225,739.6538757,626.2271025,113.4267732,107.3835656,6.043207565,197.709013,0,197.709013,3.338684359,194.3703287,0.651261148,2.664277818,-0.097483156,0.097483156,0.546824291,0.13811723,3.682825356,118.4523231,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.2211678,2.418865453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.668194434,113.8608785,105.8893623,116.2797439,626.2271025,0,0.720839352,43.87617758,-0.720839352,136.1238224,0.980636417,0,719.9904645,116.2797439,796.0932313,9,11,11% -9/13/2018 20:00,34.2809921,177.8687038,837.8920516,877.2715134,113.0155845,848.9408218,733.0166899,115.9241318,109.6077476,6.316384212,206.5644655,0,206.5644655,3.407836855,203.1566287,0.598316183,3.104394518,0.20916074,-0.20916074,0.494385096,0.134880841,3.553489494,114.2924372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,105.3591362,2.468966201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.574491042,109.8622379,107.9336272,112.3312041,733.0166899,0,0.835564222,33.32536533,-0.835564222,146.6746347,0.990160195,0,833.737576,112.3312041,907.2561024,9,12,9% -9/13/2018 21:00,36.52805051,203.5716405,811.3007351,871.072709,111.3367106,894.0727354,779.9773098,114.0954256,107.979498,6.115927636,200.0664688,0,200.0664688,3.357212613,196.7092561,0.637534751,3.55299539,0.510548722,-0.510548722,0.442844716,0.137232355,3.176028424,102.1519916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.7940006,2.43228911,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.301021781,98.1923799,106.0950224,100.624669,779.9773098,0,0.89542159,26.4373669,-0.89542159,153.5626331,0.994160381,0,881.5175623,100.624669,947.3743956,9,13,7% -9/13/2018 22:00,43.22238508,224.5902635,723.8084801,848.3081121,105.6454054,868.2741399,760.3579591,107.9161807,102.4598067,5.456374061,178.6813447,0,178.6813447,3.185598764,175.495746,0.75437293,3.919839566,0.848884184,-0.848884184,0.384985944,0.145957679,2.590424325,83.3169508,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.48826343,2.307955461,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.876753605,80.08742223,100.365017,82.39537769,760.3579591,0,0.896322867,26.32114331,-0.896322867,153.6788567,0.99421653,0,856.3254685,82.39537769,910.2515953,9,14,6% -9/13/2018 23:00,52.64137788,240.3457807,581.9216793,801.2955678,95.69394949,768.8515628,671.6563675,97.19519526,92.80842384,4.386771423,143.979174,0,143.979174,2.88552565,141.0936484,0.918765367,4.194825216,1.291354022,-1.291354022,0.309319146,0.164444723,1.855156719,59.66821716,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.21098714,2.090553511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.344054728,57.35535992,90.55504186,59.44591343,671.6563675,0,0.838213007,33.0481041,-0.838213007,146.9518959,0.990349291,0,755.7294493,59.44591343,794.6356108,9,15,5% -9/13/2018 0:00,63.49851966,252.5273443,396.9058878,709.1770552,80.45623901,595.2425614,514.2203306,81.02223079,78.03018655,2.992044236,98.66048016,0,98.66048016,2.426052458,96.23442771,1.108258238,4.407433609,2.003609115,-2.003609115,0.187516351,0.202708605,1.053839206,33.89509142,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.00558334,1.757666747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763502917,32.58125113,75.76908625,34.33891788,514.2203306,0,0.725094427,43.52329638,-0.725094427,136.4767036,0.981043464,0,580.2415806,34.33891788,602.7157156,9,16,4% -9/13/2018 1:00,75.04254734,262.71454,187.2594494,509.5045634,55.75546268,343.2873567,287.8014861,55.4858706,54.07422977,1.411640829,47.08445445,0,47.08445445,1.681232916,45.40322153,1.30973953,4.585233716,3.651379926,-3.651379926,0,0.297744455,0.420308229,13.51855744,0.086147966,1,0.267314484,0,0.929347327,0.968109291,0.724496596,1,52.16919607,1.218047524,0.014158117,0.312029739,0.96063484,0.685131436,0.961238037,0.922476074,0.297942,12.99455162,52.46713807,14.21259914,263.0079735,0,0.564865375,55.60705678,-0.564865375,124.3929432,0.961483333,0,305.3449212,14.21259914,314.6467831,9,17,3% -9/13/2018 2:00,86.71199437,272.0269609,10.99522042,58.75534811,7.625305572,29.24296994,21.76470885,7.478261091,7.395374475,0.082886616,2.895849587,0,2.895849587,0.229931097,2.665918489,1.513409803,4.747766123,16.13601203,-16.13601203,0,0.693510933,0.057482774,1.848843619,0.690332191,1,0.061894024,0,0.955320905,0.994082868,0.724496596,1,7.15372497,0.166584297,0.088905915,0.312029739,0.778996957,0.503493553,0.961238037,0.922476074,0.03987479,1.77717881,7.19359976,1.943763108,6.739829697,0,0.370429409,68.25789755,-0.370429409,111.7421025,0.915021516,0,13.36068895,1.943763108,14.63284303,9,18,10% -9/13/2018 3:00,98.70066133,281.3213689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722651514,4.909984143,-5.582215929,5.582215929,0.515231164,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.146664125,81.5663431,-0.146664125,98.4336569,0.709085002,0,0,0,0,9,19,0% -9/13/2018 4:00,110.0695496,291.4059895,0,0,0,0,0,0,0,0,0,0,0,0,0,1.921076046,5.085993977,-2.05296602,2.05296602,0.881231556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08151329,94.67555502,0.08151329,85.32444498,0,0,0,0,0,9,20,0% -9/13/2018 5:00,120.6066622,303.2127611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104983355,5.292061015,-1.012323336,1.012323336,0.703271176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302153915,107.5870183,0.302153915,72.41298169,0,0.884521423,0,0,0,9,21,0% -9/13/2018 6:00,129.636152,317.8717167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.262577681,5.547908055,-0.454745305,0.454745305,0.607919717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500223894,120.0148138,0.500223894,59.98518621,0,0.950044759,0,0,0,9,22,0% -9/13/2018 7:00,136.112144,336.3712915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375605065,5.870786546,-0.060880054,0.060880054,0.540564792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66222813,131.4700248,0.66222813,48.52997515,0,0.974497318,0,0,0,9,23,0% -9/14/2018 8:00,138.7527946,358.2457289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.421693112,6.2525675,0.274548186,-0.274548186,0.483203185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.777130075,140.9985537,0.777130075,39.00144634,0,0.985660706,0,0,0,9,0,0% -9/14/2018 9:00,136.8291289,20.4350953,0,0,0,0,0,0,0,0,0,0,0,0,0,2.388118812,0.356659696,0.608442805,-0.608442805,0.426103842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837103936,146.8355542,0.837103936,33.16444576,0,0.990270261,0,0,0,9,1,0% -9/14/2018 10:00,130.8877588,39.57766473,0,0,0,0,0,0,0,0,0,0,0,0,0,2.284422341,0.69076056,0.99591508,-0.99591508,0.35984218,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838068129,146.9366776,0.838068129,33.06332243,0,0.990338979,0,0,0,9,2,0% -9/14/2018 11:00,122.1924708,54.81114427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132660937,0.956634934,1.532947845,-1.532947845,0.268004169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.779963626,141.2572452,0.779963626,38.7427548,0,0.985894446,0,0,0,9,3,0% -9/14/2018 12:00,111.8506413,67.00765532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.95216196,1.169504209,2.490383514,-2.490383514,0.104273026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666758269,131.8173568,0.666758269,48.18264324,0,0.975010304,0,0,0,9,4,0% -9/14/2018 13:00,100.591574,77.31759163,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755654166,1.349446544,5.304246395,-5.304246395,0,#DIV/0!,0,0,0.273744488,1,0.18634104,0,0.940711199,0.979473162,0.724496596,1,0,0,0.041454462,0.312029739,0.889176925,0.613673521,0.961238037,0.922476074,0,0,0,0,0,0,-0.506176665,120.4094932,0.506176665,59.59050677,0,0.951220259,0,0,0,9,5,0% -9/14/2018 14:00,88.53149465,86.70599076,1.673108486,10.25942937,1.4101855,1.380275802,0,1.380275802,1.367663204,0.012612598,3.560844288,3.112657469,0.448186819,0.042522296,0.405664523,1.545166073,1.51330502,-37.36142179,37.36142179,0,0.842853594,0.010630574,0.341915801,1,0.83106205,0,0.026759188,0.961238037,1,0.651415375,0.92691878,1.314649893,0.029678792,0.115824807,0.229071124,0.724496596,0.448993192,0.973652928,0.934890965,0.007701815,0.330668331,1.322351708,0.360347123,0,0.525845972,-0.303394795,107.661617,0.303394795,72.33838304,0,0.885198227,1.322351708,0.825825045,1.862837683,9,6,41% -9/14/2018 15:00,76.98934658,95.99237642,152.5488839,456.2782184,49.82595467,49.47349622,0,49.47349622,48.3235183,1.149977924,78.63229103,40.1426116,38.48967942,1.502436371,36.98724305,1.343717587,1.675383025,-3.890057224,3.890057224,0.804607346,0.326622873,0.998671942,32.12072258,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,46.45040386,1.088510037,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.723534423,30.87566032,47.17393828,31.96417035,0,40.1426116,-0.087978365,95.04731453,0.087978365,84.95268547,0,0.481678458,47.17393828,51.30000162,80.74876334,9,7,71% -9/14/2018 16:00,65.41468325,106.0139851,362.7137948,686.6679971,77.02710746,173.1509297,95.71218394,77.43874577,74.70445597,2.734289796,90.26681039,0,90.26681039,2.32265149,87.9441589,1.141701602,1.850293093,-1.767929835,1.767929835,0.832487497,0.212363325,2.37353036,76.34089534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8087646,1.682753098,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.719614666,73.38177237,73.52837927,75.06452547,95.71218394,0,0.139386406,81.98765825,-0.139386406,98.01234175,0.69128496,0,139.6927726,75.06452547,188.8210032,9,8,35% -9/14/2018 17:00,54.45150755,117.8310024,552.6475824,790.0658251,93.30980855,378.7048424,284.042578,94.66226446,90.49617354,4.166090915,136.8094397,0,136.8094397,2.813635004,133.9958047,0.950358089,2.056538954,-0.939472534,0.939472534,0.690812955,0.168841431,3.095474449,99.5610989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.9883642,2.038468983,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242660701,95.70191525,89.2310249,97.74038423,284.042578,0,0.359517611,68.92942618,-0.359517611,111.0705738,0.910924755,0,347.9724405,97.74038423,411.9415672,9,9,18% -9/14/2018 18:00,44.79736138,132.929858,701.7141146,842.3716961,103.9644751,575.4382377,469.3188577,106.11938,100.8295626,5.289817401,173.2736238,0,173.2736238,3.134912513,170.1387112,0.781861452,2.320063696,-0.451873289,0.451873289,0.607428573,0.148157879,3.520855506,113.2428159,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.92121082,2.271233444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.550847828,108.8533021,99.47205865,111.1245355,469.3188577,0,0.557139871,56.14176941,-0.557139871,123.8582306,0.960255929,0,550.1382744,111.1245355,622.8670604,9,10,13% -9/14/2018 19:00,37.64021016,153.0153833,797.8000732,868.243925,110.2713546,736.9731761,624.0127557,112.9604204,106.9462664,6.014153944,196.7609526,0,196.7609526,3.3250882,193.4358644,0.656945598,2.670622244,-0.093782829,0.093782829,0.546191498,0.138219284,3.662118075,117.7863058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8008192,2.409015082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.653192079,113.2206773,105.4540113,115.6296924,624.0127557,0,0.718706734,44.05219102,-0.718706734,135.947809,0.980430595,0,717.2552085,115.6296924,792.9325296,9,11,11% -9/14/2018 20:00,34.66197331,178.044326,833.6788141,876.7366043,112.5439445,845.9057222,730.4707699,115.4349524,109.1503293,6.284623048,205.5286956,0,205.5286956,3.39361517,202.1350805,0.60496556,3.107459703,0.21417891,-0.21417891,0.493526939,0.134996767,3.53132444,113.5795329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.9194483,2.458662638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.558432536,109.1769672,107.4778808,111.6356298,730.4707699,0,0.833170152,33.57422007,-0.833170152,146.4257799,0.989988249,0,830.635359,111.6356298,903.698646,9,12,9% -9/14/2018 21:00,36.92006136,203.5095331,806.7060369,870.4054036,110.8392162,890.596593,777.0182972,113.5782958,107.4970049,6.08129086,198.9374297,0,198.9374297,3.342211322,195.5952184,0.644376631,3.551911413,0.517298898,-0.517298898,0.441690368,0.137397281,3.152544791,101.3966773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.33021,2.421420726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.284007969,97.46634301,105.6142179,99.88776374,777.0182972,0,0.892708494,26.78440663,-0.892708494,153.2155934,0.993990675,0,877.9631599,99.88776374,943.3377035,9,13,7% -9/14/2018 22:00,43.59084121,224.3880683,718.8398067,847.3560294,105.1150119,864.269526,756.9052014,107.3643246,101.9454065,5.418918102,177.460639,0,177.460639,3.169605443,174.2910336,0.760803703,3.916310594,0.858442982,-0.858442982,0.383351294,0.146228702,2.565982539,82.53081896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.99380239,2.296368353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.859045615,79.3317624,99.85284801,81.62813075,756.9052014,0,0.893255226,26.71480888,-0.893255226,153.2851911,0.994024957,0,852.235508,81.62813075,905.659487,9,14,6% -9/14/2018 23:00,52.9811441,240.0959505,576.6237109,799.7448916,95.11505037,764.2049125,667.6110987,96.59381376,92.24698066,4.346833099,142.6771643,0,142.6771643,2.868069706,139.8090946,0.924695406,4.190464857,1.30637338,-1.30637338,0.306750684,0.164951681,1.830465868,58.8740745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.6713066,2.077906739,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.32616629,56.5919998,89.99747289,58.66990654,667.6110987,0,0.834780073,33.4070552,-0.834780073,146.5929448,0.990103985,0,751.001882,58.66990654,789.4001624,9,15,5% -9/14/2018 0:00,63.81717323,252.2694236,391.3868972,706.2088405,79.78149886,589.7231495,509.3969174,80.32623206,77.37579231,2.950439753,97.30199109,0,97.30199109,2.405706553,94.89628454,1.113819792,4.402932044,2.032211754,-2.032211754,0.182625012,0.20384305,1.030415186,33.14169443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.3765547,1.742926208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.746532295,31.85705729,75.12308699,33.5999835,509.3969174,0,0.721312009,43.83709118,-0.721312009,136.1629088,0.980681869,0,574.6794082,33.5999835,596.6699254,9,16,4% -9/14/2018 1:00,75.34905692,262.4600101,181.8677883,502.4004758,54.7958005,336.2514772,281.7369761,54.51450115,53.14350494,1.370996209,45.74824642,0,45.74824642,1.65229556,44.09595086,1.315089131,4.580791331,3.735019823,-3.735019823,0,0.301294699,0.41307389,13.28587623,0.097938868,1,0.261600649,0,0.930195335,0.968957298,0.724496596,1,51.29203811,1.197082509,0.016010365,0.312029739,0.955600794,0.68009739,0.961238037,0.922476074,0.292076237,12.77088959,51.58411434,13.9679721,254.1439755,0,0.560781667,55.89012756,-0.560781667,124.1098724,0.96083874,0,295.7754916,13.9679721,304.9172499,9,17,3% -9/14/2018 2:00,87.00316793,271.7774011,8.905718907,48.60286339,6.364725189,24.04338299,17.80344268,6.239940312,6.172805241,0.067135071,2.351214604,0,2.351214604,0.191919948,2.159294656,1.51849174,4.743410482,17.73812381,-17.73812381,0,0.714678428,0.047979987,1.54320131,0.714550296,1,0.056316137,0,0.955891623,0.994653586,0.724496596,1,5.968832382,0.139045349,0.091228185,0.312029739,0.77406586,0.498562455,0.961238037,0.922476074,0.03336641,1.483383798,6.002198792,1.622429147,5.081987437,0,0.366304399,68.51212027,-0.366304399,111.4878797,0.913501503,0,10.64460195,1.622429147,11.70644938,9,18,10% -9/14/2018 3:00,99.01182301,281.0764464,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72808231,4.905709439,-5.400385211,5.400385211,0.546326048,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.142125407,81.82914687,-0.142125407,98.17085313,0.698198018,0,0,0,0,9,19,0% -9/14/2018 4:00,110.3945936,291.1682407,0,0,0,0,0,0,0,0,0,0,0,0,0,1.926749134,5.081844477,-2.024748939,2.024748939,0.876406151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08614086,94.94163197,0.08614086,85.05836803,0,0,0,0,0,9,20,0% -9/14/2018 5:00,120.9532123,302.9939106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.111031796,5.288241354,-1.003585084,1.003585084,0.701776847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306774965,107.864982,0.306774965,72.13501801,0,0.88701408,0,0,0,9,21,0% -9/14/2018 6:00,130.0087829,317.7038224,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269081317,5.544977747,-0.452003949,0.452003949,0.607450917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504743559,120.3143307,0.504743559,59.6856693,0,0.950939796,0,0,0,9,22,0% -9/14/2018 7:00,136.5046865,336.3166643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382456224,5.869833122,-0.060953457,0.060953457,0.540577345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666558572,131.8020062,0.666558572,48.19799385,0,0.974987837,0,0,0,9,23,0% -9/15/2018 8:00,139.1390335,358.3672127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.428434252,6.254687793,0.272577849,-0.272577849,0.483540132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781196519,141.3702584,0.781196519,38.62974157,0,0.985995619,0,0,0,9,0,0% -9/15/2018 9:00,137.1736142,20.71680427,0,0,0,0,0,0,0,0,0,0,0,0,0,2.394131214,0.361576445,0.60461386,-0.60461386,0.42675863,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840849806,147.2299661,0.840849806,32.77003386,0,0.990536348,0,0,0,9,1,0% -9/15/2018 10:00,131.1744083,39.93692559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289425319,0.697030845,0.989514939,-0.989514939,0.360936669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841458933,147.2945015,0.841458933,32.70549849,0,0.990579394,0,0,0,9,2,0% -9/15/2018 11:00,122.427769,55.18583357,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136767664,0.963174496,1.521739611,-1.521739611,0.26992089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782989322,141.5350956,0.782989322,38.46490437,0,0.986142169,0,0,0,9,3,0% -9/15/2018 12:00,112.0490452,67.37536559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955624762,1.175921964,2.466409798,-2.466409798,0.108372773,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669433946,132.0233915,0.669433946,47.97660851,0,0.975310032,0,0,0,9,4,0% -9/15/2018 13:00,100.7673423,77.67712238,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758721902,1.355721539,5.21133202,-5.21133202,0,#DIV/0!,0,0,0.265265886,1,0.189584998,0,0.940283409,0.979045372,0.724496596,1,0,0,0.040314051,0.312029739,0.892044873,0.616541469,0.961238037,0.922476074,0,0,0,0,0,0,-0.508541506,120.566729,0.508541506,59.43327104,0,0.951679609,0,0,0,9,5,0% -9/15/2018 14:00,88.68134832,87.06419824,1.315527877,8.297344843,1.12458289,1.100589571,0,1.100589571,1.090672566,0.009917005,2.88565399,2.532778702,0.352875288,0.033910323,0.318964964,1.547781513,1.51955692,-41.53011128,41.53011128,0,0.854852953,0.008477581,0.272668142,1,0.849220947,0,0.024074263,0.961238037,1,0.658494792,0.933998196,1.048395956,0.023738411,0.115824807,0.237095868,0.724496596,0.448993192,0.972515594,0.933753631,0.006141978,0.263580413,1.054537935,0.287318824,0,0.381889974,-0.30525171,107.773308,0.30525171,72.22669198,0,0.886200754,1.054537935,0.625750007,1.464078799,9,6,39% -9/15/2018 15:00,77.15624436,96.35882314,149.7221874,452.1175954,49.21954979,48.86406785,0,48.86406785,47.73539876,1.128669092,78.43401152,40.64798272,37.78602879,1.484151027,36.30187777,1.346630503,1.681778727,-3.930001118,3.930001118,0.797776538,0.328739184,0.97545826,31.37409076,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.88508099,1.075262367,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.706716189,30.15796941,46.59179718,31.23323177,0,40.64798272,-0.089905775,95.15818641,0.089905775,84.84181359,0,0.493862198,46.59179718,51.30773386,80.17168284,9,7,72% -9/15/2018 16:00,65.59714777,106.3983587,359.5881242,685.0373278,76.56511402,171.1817734,94.21465285,76.96712051,74.25639334,2.710727171,89.49502456,0,89.49502456,2.308720683,87.18630388,1.144886209,1.857001677,-1.774181233,1.774181233,0.833556549,0.212924479,2.355612246,75.7645872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.37806976,1.672660276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.706633054,72.82780306,73.08470281,74.50046334,94.21465285,0,0.137532145,82.09493285,-0.137532145,97.90506715,0.686448627,0,137.7582219,74.50046334,186.5172852,9,8,35% -9/15/2018 17:00,54.66473468,118.2385561,549.3167456,789.2023727,92.87378421,376.4715075,282.2572289,94.21427861,90.07329695,4.14098166,135.988692,0,135.988692,2.800487262,133.1882047,0.954079605,2.063652108,-0.939442248,0.939442248,0.690807776,0.16907146,3.077094552,98.96993823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58187913,2.028943488,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.229344528,95.13366913,88.81122366,97.16261262,282.2572289,0,0.357648733,69.04413329,-0.357648733,110.9558667,0.910198023,0,345.7211953,97.16261262,409.312182,9,9,18% -9/15/2018 18:00,45.06009729,133.3468595,698.1250505,841.775076,103.524842,572.9885479,467.3226003,105.6659476,100.4031861,5.26276152,172.390157,0,172.390157,3.121655953,169.2685011,0.786447059,2.327341746,-0.449530235,0.449530235,0.607027887,0.148289826,3.50132394,112.6146136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.51136148,2.261629112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.536697276,108.2494501,99.04805876,110.5110792,467.3226003,0,0.555163266,56.27803914,-0.555163266,123.7219609,0.959936404,0,547.6480353,110.5110792,619.9753264,9,10,13% -9/15/2018 19:00,37.9677856,153.3746232,793.8926455,867.7234608,109.8169694,734.245152,621.7548713,112.4902807,106.5055826,5.984698104,195.7998501,0,195.7998501,3.311386808,192.4884633,0.662662868,2.676892165,-0.090038057,0.090038057,0.545551104,0.138327229,3.641172678,117.1126298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.3772171,2.39908847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.63801721,112.5731143,105.0152343,114.9722028,621.7548713,0,0.716535739,44.23079966,-0.716535739,135.7692003,0.98021981,0,714.4716762,114.9722028,789.7186835,9,11,11% -9/15/2018 20:00,35.04415094,178.2172144,829.4091749,876.1840872,112.0686629,842.8153105,727.8734946,114.941816,108.6893793,6.252436704,204.4791407,0,204.4791407,3.379283677,201.099857,0.611635817,3.110477175,0.219258309,-0.219258309,0.492658311,0.135118668,3.508927776,112.8591791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,104.4763655,2.44827952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.542206229,108.4845358,107.0185718,110.9328153,727.8734946,0,0.830731242,33.82607238,-0.830731242,146.1739276,0.989812063,0,827.4765367,110.9328153,900.0798457,9,12,9% -9/15/2018 21:00,37.31311114,203.4485596,802.0549903,869.7180526,110.3379655,887.0596735,774.0025755,113.057098,107.0108687,6.046229306,197.794615,0,197.794615,3.327096763,194.4675183,0.651236644,3.550847224,0.524138075,-0.524138075,0.4405208,0.137569078,3.128850129,100.6345755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.8629174,2.410470279,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.266841268,96.73378181,105.1297586,99.14425208,774.0025755,0,0.889946544,27.13346956,-0.889946544,152.8665304,0.99381685,0,874.3465603,99.14425208,939.2344904,9,13,7% -9/15/2018 22:00,43.96061707,224.1882187,713.8180379,846.3779486,104.5807073,860.2009825,753.3927075,106.808275,101.4272131,5.381061888,176.2269418,0,176.2269418,3.153494187,173.0734476,0.767257509,3.91282256,0.86814625,-0.86814625,0.381691937,0.146508916,2.541365656,81.73905539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.49569522,2.284695803,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841210767,78.57068914,99.33690598,80.85538494,753.3927075,0,0.890137448,27.10947634,-0.890137448,152.8905237,0.9938289,0,848.0803514,80.85538494,900.9985838,9,14,6% -9/15/2018 23:00,53.32233294,239.8478279,571.2792399,798.1540796,94.5317652,759.4921639,663.504336,95.98782791,91.68128369,4.30654422,141.3637473,0,141.3637473,2.850481506,138.5132658,0.930650275,4.186134301,1.321672392,-1.321672392,0.304134399,0.165473832,1.805656245,58.07611174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.12753715,2.065164148,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.308191803,55.82496764,89.43572895,57.89013179,663.504336,0,0.831298559,33.76763664,-0.831298559,146.2323634,0.989853138,0,746.2075777,57.89013179,784.0955112,9,15,5% -9/15/2018 0:00,64.13712992,252.0123524,385.8324892,703.1610461,79.10045811,584.1316149,504.5077592,79.62385573,76.71528745,2.90856828,95.93472468,0,95.93472468,2.385170662,93.54955402,1.11940409,4.398445304,2.061547582,-2.061547582,0.17760829,0.205012435,1.006971983,32.38768042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.7416523,1.728048025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729547774,31.13227034,74.47120007,32.86031837,504.5077592,0,0.717485364,44.1527442,-0.717485364,135.8472558,0.980312167,0,569.0462949,32.86031837,590.5527161,9,16,4% -9/15/2018 1:00,75.65661483,262.2056309,176.4680059,495.0793754,53.82065833,329.1194841,275.5914268,53.52805728,52.19776691,1.330290368,44.40960252,0,44.40960252,1.622891426,42.78671109,1.32045703,4.576351576,3.822378698,-3.822378698,0,0.304988194,0.405722856,13.04944173,0.109933506,1,0.255882258,0,0.931037115,0.969799078,0.724496596,1,50.3989191,1.175779314,0.017874484,0.312029739,0.950561626,0.675058222,0.961238037,0.922476074,0.2861747,12.54361975,50.6850938,13.71939906,245.294695,0,0.556661094,56.17479679,-0.556661094,123.8252032,0.960178742,0,286.2118454,13.71939906,295.1909177,9,17,3% -9/15/2018 2:00,87.29352242,271.5274175,7.045013642,39.28610321,5.189948209,19.31513595,14.22857554,5.08656041,5.033452121,0.053108289,1.864641209,0,1.864641209,0.156496087,1.708145122,1.523559382,4.739047445,19.67845485,-19.67845485,0,0.736683912,0.039124022,1.25836303,0.739247906,1,0.050773323,0,0.956451451,0.995213414,0.724496596,1,4.865127011,0.113380883,0.093555047,0.312029739,0.769168373,0.493664969,0.961238037,0.922476074,0.027282365,1.209586409,4.892409376,1.322967291,3.710130867,0,0.362178337,68.76596442,-0.362178337,111.2340356,0.911946464,0,8.275850103,1.322967291,9.141705736,9,18,10% -9/15/2018 3:00,99.32364539,280.8305621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733524637,4.90141795,-5.230151685,5.230151685,0.575437696,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.137567589,82.09288257,-0.137567589,97.90711743,0.686542295,0,0,0,0,9,19,0% -9/15/2018 4:00,110.7201612,290.9289708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932431361,5.07766843,-1.997305996,1.997305996,0.871713131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090776811,95.20829802,0.090776811,84.79170198,0,0.49919854,0,0,0,9,20,0% -9/15/2018 5:00,121.3002784,302.7730075,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117089241,5.284385867,-0.994997033,0.994997033,0.700308204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.31139372,108.1432426,0.31139372,71.85675739,0,0.889431572,0,0,0,9,21,0% -9/15/2018 6:00,130.3821031,317.5337657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275596985,5.542009697,-0.449295959,0.449295959,0.606987824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509251026,120.6139538,0.509251026,59.38604617,0,0.951816594,0,0,0,9,22,0% -9/15/2018 7:00,136.8981632,336.2612165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389323687,5.868865374,-0.061024285,0.061024285,0.540589457,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670868369,132.1341213,0.670868369,47.86587866,0,0.975469731,0,0,0,9,23,0% -9/16/2018 8:00,139.526061,358.4910144,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435189156,6.256848539,0.270627361,-0.270627361,0.483873685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785235905,141.7425019,0.785235905,38.25749814,0,0.986324868,0,0,0,9,0,0% -9/16/2018 9:00,137.5181913,21.00296883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40014522,0.366570959,0.600820065,-0.600820065,0.427407407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844564682,147.6253251,0.844564682,32.37467491,0,0.990797903,0,0,0,9,1,0% -9/16/2018 10:00,131.4605671,40.30027368,0,0,0,0,0,0,0,0,0,0,0,0,0,2.294419732,0.703372465,0.983174642,-0.983174642,0.362020924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844817551,147.6523932,0.844817551,32.34760675,0,0.990815624,0,0,0,9,2,0% -9/16/2018 11:00,122.6624565,55.56342263,0,0,0,0,0,0,0,0,0,0,0,0,0,2.140863734,0.969764669,1.510652164,-1.510652164,0.271816955,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785984465,141.8118211,0.785984465,38.18817888,0,0.986385511,0,0,0,9,3,0% -9/16/2018 12:00,112.2470393,67.74501439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959080411,1.182373553,2.44279292,-2.44279292,0.112411497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672083417,132.2280683,0.672083417,47.77193168,0,0.975604473,0,0,0,9,4,0% -9/16/2018 13:00,100.9430561,78.03794763,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761788685,1.362019128,5.121180759,-5.121180759,0,#DIV/0!,0,0,0.256848033,1,0.192840935,0,0.939851699,0.978613662,0.724496596,1,0,0,0.039173685,0.312029739,0.894922979,0.619419575,0.961238037,0.922476074,0,0,0,0,0,0,-0.510886899,120.7229237,0.510886899,59.27707626,0,0.95213098,0,0,0,9,5,0% -9/16/2018 14:00,88.83040613,87.42323443,1.015005443,6.65610746,0.879142002,0.860284166,0,0.860284166,0.852632627,0.00765154,2.316560432,2.043951236,0.272609196,0.026509375,0.246099821,1.550383063,1.525823284,-46.73365606,46.73365606,0,0.86614511,0.006627344,0.213158157,1,0.86705804,0,0.02139459,0.961238037,1,0.66561683,0.941120234,0.819582912,0.018616018,0.115824807,0.245171875,0.724496596,0.448993192,0.971357034,0.93259507,0.004801488,0.205954251,0.8243844,0.224570269,0,0.271726883,-0.307079062,107.8832891,0.307079062,72.11671092,0,0.887175483,0.8243844,0.465639698,1.12913627,9,6,37% -9/16/2018 15:00,77.32396592,96.72565922,146.9693217,448.4579459,48.56054671,48.20418388,0,48.20418388,47.09626705,1.107916827,78.28151349,41.18282023,37.09869326,1.464279653,35.63441361,1.349557796,1.688181224,-3.971052359,3.971052359,0.790756362,0.330412811,0.95269008,30.64178783,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,45.27072329,1.060865624,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.69022072,29.45405198,45.96094401,30.5149176,0,41.18282023,-0.091832067,95.26901336,0.091832067,84.73098664,0,0.505527883,45.96094401,51.33398155,79.55800825,9,7,73% -9/16/2018 16:00,65.7809547,106.7825341,356.5443806,683.8564051,76.00856421,169.1818367,92.77742896,76.4044077,73.71662556,2.687782146,88.74025165,0,88.74025165,2.291938653,86.448313,1.148094245,1.863706804,-1.780531172,1.780531172,0.834642453,0.213181215,2.338084421,75.2008321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.85922443,1.660501752,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693934204,72.28590022,72.55315864,73.94640197,92.77742896,0,0.135667997,82.2027513,-0.135667997,97.7972487,0.681453246,0,135.7766388,73.94640197,184.17308,9,8,36% -9/16/2018 17:00,54.87977555,118.6449233,546.0672573,788.717958,92.32254094,374.248927,280.5937657,93.65516134,89.5386757,4.116485645,135.1841939,0,135.1841939,2.783865243,132.4003287,0.957832776,2.070744553,-0.939409453,0.939409453,0.690802167,0.169068077,3.058868481,98.38372513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.06798085,2.016900892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216139801,94.5701788,88.28412065,96.58707969,280.5937657,0,0.355759322,69.16001138,-0.355759322,110.8399886,0.909455545,0,343.4716767,96.58707969,406.6859887,9,9,18% -9/16/2018 18:00,45.32490941,133.7610383,694.6140549,841.5119087,102.9591366,570.5784792,465.4876463,105.0908329,99.8545388,5.236294152,171.5218174,0,171.5218174,3.104597849,168.4172196,0.791068902,2.33457053,-0.447158794,0.447158794,0.606622347,0.148224954,3.481772901,111.985785,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.98398084,2.249270573,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.522532615,107.6449962,98.50651346,109.8942667,465.4876463,0,0.553156339,56.41617838,-0.553156339,123.5838216,0.959609641,0,545.1929466,109.8942667,617.1165463,9,10,13% -9/16/2018 19:00,38.29716418,153.7294891,790.0600836,867.5114114,109.2310163,731.5791863,619.6860816,111.8931047,105.9372981,5.955806633,194.8529324,0,194.8529324,3.29371816,191.5592143,0.668411609,2.683085741,-0.086250132,0.086250132,0.544903331,0.138256594,3.620078914,116.4341818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.8309605,2.386287594,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.62273485,111.9209643,104.4536953,114.3072519,619.6860816,0,0.714326144,44.41199857,-0.714326144,135.5880014,0.980003962,0,711.7485104,114.3072519,786.5603206,9,11,11% -9/16/2018 20:00,35.42742681,178.3872925,825.212501,875.9307761,111.4599513,839.8073285,725.4875055,114.3198229,108.0990225,6.220800404,203.4432536,0,203.4432536,3.360928776,200.0823248,0.618325243,3.113445597,0.224397864,-0.224397864,0.491779395,0.135068181,3.486284772,112.1309023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.9088922,2.434981457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.525801449,107.7844884,106.4346937,110.2194698,725.4875055,0,0.828247534,34.08086398,-0.828247534,145.919136,0.989631574,0,824.4000356,110.2194698,896.5364743,9,12,9% -9/16/2018 21:00,37.70708145,203.3886001,797.4767581,869.334507,109.704549,883.6263034,771.2180347,112.4082687,106.396552,6.011716658,196.6654698,0,196.6654698,3.307996918,193.3574729,0.658112723,3.549800733,0.531065467,-0.531065467,0.439336146,0.137564572,3.104833003,99.86210217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.2724128,2.396632506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.249440941,95.99125105,104.5218538,98.38788355,771.2180347,0,0.887136112,27.48445078,-0.887136112,152.5155492,0.993638863,0,870.8340649,98.38788355,935.2269669,9,13,7% -9/16/2018 22:00,44.33157802,223.9906332,708.870555,845.7222072,103.918948,856.2596338,750.1304598,106.129174,100.7854083,5.343765672,175.0074128,0,175.0074128,3.133539702,171.8738731,0.773731999,3.909374042,0.877993963,-0.877993963,0.380007879,0.146597919,2.51636554,80.93496573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87876802,2.270238847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.823098268,77.79776757,98.70186628,80.06800642,750.1304598,0,0.886970276,27.50503205,-0.886970276,152.4949679,0.993628325,0,844.0527387,80.06800642,896.4556476,9,14,6% -9/16/2018 23:00,53.66480726,239.6013846,566.0114271,796.9189313,93.83051176,754.9332675,659.6652587,95.26800885,91.00117563,4.266833222,140.0653597,0,140.0653597,2.829336127,137.2360236,0.936627579,4.181833053,1.337253927,-1.337253927,0.3014698,0.165774942,1.78041554,57.2642839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.47379141,2.049844393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.289904998,55.04460784,88.76369641,57.09445223,659.6652587,0,0.827769592,34.12970173,-0.827769592,145.8702983,0.989596718,0,741.5662714,57.09445223,778.9334485,9,15,5% -9/16/2018 0:00,64.45825467,251.756129,380.3567296,700.5098813,78.31886458,578.7196084,499.8950569,78.82455154,75.95726185,2.867289691,94.58349544,0,94.58349544,2.361602733,92.22189271,1.125008774,4.393973363,2.091635607,-2.091635607,0.172462935,0.205908976,0.983079643,31.61922064,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.01300926,1.710973141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.712237855,30.39359758,73.72524712,32.10457072,499.8950569,0,0.713615996,44.47011043,-0.713615996,135.5298896,0.979934306,0,563.5895628,32.10457072,584.6013622,9,16,4% -9/16/2018 1:00,75.96508499,261.9514098,171.1520858,488.1213271,52.77625427,322.1648094,269.6897372,52.4750722,51.18485548,1.290216718,43.08920352,0,43.08920352,1.59139879,41.49780473,1.32584085,4.571914581,3.913679933,-3.913679933,0,0.308358814,0.397849697,12.79621387,0.122133213,1,0.250161536,0,0.931872301,0.970634264,0.724496596,1,49.43945913,1.152963006,0.019749965,0.312029739,0.945519238,0.670015834,0.961238037,0.922476074,0.27995249,12.3002075,49.71941162,13.45317051,236.751663,0,0.55250554,56.46092616,-0.55250554,123.5390738,0.95950317,0,276.8833827,13.45317051,285.6882138,9,17,3% -9/16/2018 2:00,87.58265714,271.2770168,5.432559181,31.07760898,4.12176542,15.16601192,11.12758001,4.038431911,3.997478985,0.040952926,1.441473305,0,1.441473305,0.124286435,1.31718687,1.528605735,4.734677128,22.07325971,-22.07325971,0,0.758715236,0.031071609,0.999369746,0.76440632,1,0.045272729,0,0.956999804,0.995761767,0.724496596,1,3.862091877,0.090045099,0.095883455,0.312029739,0.764311109,0.488807704,0.961238037,0.922476074,0.021731615,0.960632213,3.883823492,1.050677312,2.621587523,0,0.35805779,69.01903389,-0.35805779,110.9809661,0.910357737,0,6.270405978,1.050677312,6.958053265,9,18,11% -9/16/2018 3:00,99.63599283,280.5837152,0,0,0,0,0,0,0,0,0,0,0,0,0,1.738976128,4.897109658,-5.070494503,5.070494503,0.602740682,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.132992973,82.3574208,-0.132992973,97.6425792,0.674040286,0,0,0,0,9,19,0% -9/16/2018 4:00,111.0461139,290.6881622,0,0,0,0,0,0,0,0,0,0,0,0,0,1.938120309,5.073465528,-1.970616374,1.970616374,0.867148937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.095418739,95.47542128,0.095418739,84.52457872,0,0.525993914,0,0,0,9,20,0% -9/16/2018 5:00,121.6477202,302.550004,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123153244,5.280493722,-0.986559678,0.986559678,0.698865331,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.316007774,108.4216629,0.316007774,71.5783371,0,0.891776044,0,0,0,9,21,0% -9/16/2018 6:00,130.7559777,317.361457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.282122328,5.539002343,-0.446623098,0.446623098,0.606530738,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513743991,120.9135385,0.513743991,59.08646147,0,0.952675261,0,0,0,9,22,0% -9/16/2018 7:00,137.2924552,336.2048408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.396205381,5.867881433,-0.061094143,0.061094143,0.540601403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675155412,132.46622,0.675155412,47.53378003,0,0.975942977,0,0,0,9,23,0% -9/17/2018 8:00,139.9137759,358.6170705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441956058,6.259048635,0.268695291,-0.268695291,0.484204089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789246401,142.1151422,0.789246401,37.8848578,0,0.986648428,0,0,0,9,0,0% -9/17/2018 9:00,137.8627721,21.29353461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406159289,0.371642288,0.597059977,-0.597059977,0.42805042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848247069,148.0215197,0.848247069,31.97848026,0,0.99105491,0,0,0,9,1,0% -9/17/2018 10:00,131.7461703,40.66761088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299404449,0.709783709,0.976892388,-0.976892388,0.363095252,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848142866,148.0102481,0.848142866,31.98975186,0,0.991047668,0,0,0,9,2,0% -9/17/2018 11:00,122.8964967,55.94378923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.144948506,0.976403318,1.499682297,-1.499682297,0.273692913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78894833,142.0873396,0.78894833,37.9126604,0,0.986624493,0,0,0,9,3,0% -9/17/2018 12:00,112.444609,68.11647648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.962528653,1.188856789,2.419522473,-2.419522473,0.116390978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.674706333,132.4313494,0.674706333,47.56865058,0,0.975893685,0,0,0,9,4,0% -9/17/2018 13:00,101.118715,78.3999441,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764854512,1.368337158,5.033660323,-5.033660323,0,#DIV/0!,0,0,0.248489232,1,0.196109259,0,0.939415991,0.978177954,0.724496596,1,0,0,0.038033224,0.312029739,0.897811594,0.62230819,0.961238037,0.922476074,0,0,0,0,0,0,-0.51321283,120.8780727,0.51321283,59.12192728,0,0.952574532,0,0,0,9,5,0% -9/17/2018 14:00,88.97859102,87.78297521,0.763280099,5.255232788,0.66960029,0.655163299,0,0.655163299,0.649409371,0.005753928,1.828471086,1.62321407,0.205257016,0.020190919,0.185066097,1.552969377,1.532101945,-53.40898603,53.40898603,0,0.8772668,0.00504773,0.162352343,1,0.884574918,0,0.018721254,0.961238037,1,0.672778196,0.9482816,0.624236989,0.014226082,0.115824807,0.25329534,0.724496596,0.448993192,0.970177611,0.931415648,0.003657063,0.156784227,0.627894052,0.171010309,0,0.187359618,-0.308875769,107.9914922,0.308875769,72.00850781,0,0.888122621,0.627894052,0.337408623,0.848721248,9,6,35% -9/17/2018 15:00,77.49251887,97.09275402,144.2060347,444.7096188,47.89656785,47.53939561,0,47.53939561,46.45230961,1.087086003,78.10361977,41.69493885,36.40868092,1.44425824,34.96442268,1.3524996,1.694588238,-4.013270385,4.013270385,0.783536654,0.33213983,0.929928972,29.90971235,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.65172689,1.046360179,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.673730375,28.75035318,45.32545727,29.79671336,0,41.69493885,-0.093757673,95.37982054,0.093757673,84.62017946,0,0.516710312,45.32545727,51.34091822,78.92706142,9,7,74% -9/17/2018 16:00,65.96610655,107.166368,353.4723887,682.6396684,75.44896487,167.1712224,91.33269803,75.83852437,73.1739002,2.664624173,87.97853766,0,87.97853766,2.275064668,85.70347299,1.151325754,1.870405969,-1.786986606,1.786986606,0.835746397,0.213450802,2.320371945,74.63113796,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.33753618,1.648276607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.681101575,71.73828854,72.01863775,73.38656515,91.33269803,0,0.133793423,82.31114481,-0.133793423,97.68885519,0.676289553,0,133.7859873,73.38656515,181.8160264,9,8,36% -9/17/2018 17:00,55.09661658,119.049945,542.7788083,788.2120993,91.76833489,372.0008151,278.9079382,93.09287693,89.00118101,4.091695928,134.37016,0,134.37016,2.767153886,131.6030062,0.961617366,2.077813515,-0.939376932,0.939376932,0.690796606,0.16907133,3.040433003,97.79077681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.55132051,2.004793571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.202783361,94.00021432,87.75410387,96.00500789,278.9079382,0,0.353848841,69.27709098,-0.353848841,110.722909,0.908696725,0,341.196834,96.00500789,404.0301915,9,9,18% -9/17/2018 18:00,45.59175504,134.1722372,691.0561073,841.2321993,102.3902923,568.1310853,463.6187652,104.51232,99.30284721,5.20947284,170.6419991,0,170.6419991,3.087445093,167.554554,0.795726237,2.341747304,-0.444760749,0.444760749,0.606212257,0.148164948,3.461995797,111.3496854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.4536739,2.23684346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.50820417,107.033553,97.96187807,109.2703964,463.6187652,0,0.551118663,56.55620816,-0.551118663,123.4437918,0.959275437,0,542.6999716,109.2703964,614.2152606,9,10,13% -9/17/2018 19:00,38.62826872,154.079876,786.1752965,867.2844846,108.6417586,728.866296,617.5739658,111.2923302,105.3658088,5.926521467,193.8932525,0,193.8932525,3.275949868,190.6173027,0.674190473,2.689201147,-0.082420448,0.082420448,0.544248416,0.138190247,3.598754758,115.7483237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.2816232,2.373414528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.607285572,111.2616914,103.8889087,113.6351059,617.5739658,0,0.712077728,44.59578254,-0.712077728,135.4042175,0.979782946,0,708.9773486,113.6351059,783.3492527,9,11,10% -9/17/2018 20:00,35.81170275,178.5544818,820.9613077,875.662414,110.8478437,836.7453012,723.0511758,113.6941253,107.5053722,6.188753113,202.3940453,0,202.3940453,3.342471473,199.0515738,0.625032124,3.116363602,0.22959641,-0.22959641,0.490890391,0.135022007,3.463420522,111.3955094,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,103.338253,2.421609204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.509236378,107.0776008,105.8474893,109.49921,723.0511758,0,0.825719095,34.33853564,-0.825719095,145.6614644,0.989446719,0,821.2681033,109.49921,892.9331462,9,12,9% -9/17/2018 21:00,38.10185348,203.3295326,792.844854,868.9338486,109.0677216,880.134473,768.3787462,111.7557268,105.7789274,5.976799408,195.5232083,0,195.5232083,3.288794225,192.2344141,0.665002794,3.54876981,0.538080188,-0.538080188,0.438136558,0.137565024,3.080617632,99.08325259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.6787285,2.38272022,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.231896987,95.2425912,103.9106255,97.62531142,768.3787462,0,0.884277609,27.83724567,-0.884277609,152.1627543,0.993456671,0,867.2616166,97.62531142,931.1554304,9,13,7% -9/17/2018 22:00,44.70358829,223.7952256,703.8734243,845.0440554,103.2537813,852.2578854,746.8114914,105.446394,100.1402988,5.30609519,173.7757434,0,173.7757434,3.113482471,170.6622609,0.780224803,3.905963537,0.887985972,-0.887985972,0.378299145,0.146693678,2.491204952,80.1257147,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.25866422,2.255707451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.804869507,77.0198847,98.06353373,79.27559215,746.8114914,0,0.883754506,27.90136211,-0.883754506,152.0986379,0.993423202,0,839.9633969,79.27559215,891.8476865,9,14,6% -9/17/2018 23:00,54.00842797,239.356587,560.7012304,795.6481927,93.12564631,750.3131239,655.7687567,94.54436719,90.31756447,4.226802716,138.7565867,0,138.7565867,2.808081833,135.9485049,0.942624892,4.17756053,1.353120734,-1.353120734,0.298756416,0.166087822,1.755071773,56.44914123,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.81667837,2.034445729,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.271543525,54.2610617,88.08822189,56.29550742,655.7687567,0,0.824194365,34.49310293,-0.824194365,145.5068971,0.989334698,0,736.8630068,56.29550742,773.7072905,9,15,5% -9/17/2018 0:00,64.78040999,251.5007476,374.8501794,697.7841936,77.53226405,573.2414257,495.2212665,78.02015922,75.19438023,2.82577899,93.22464969,0,93.22464969,2.337883825,90.88676587,1.130631445,4.389516117,2.122495236,-2.122495236,0.167185627,0.206835339,0.959185445,30.8507011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.27969843,1.693788873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69492659,29.65486736,72.97462502,31.34865624,495.2212665,0,0.709705481,44.78904253,-0.709705481,135.2109575,0.97954824,0,558.0677451,31.34865624,578.5848137,9,16,4% -9/17/2018 1:00,76.27432855,261.6973507,165.8339138,480.9439899,51.71868558,315.1190492,263.7097468,51.40930248,50.15917639,1.250126091,41.76786156,0,41.76786156,1.559509192,40.20835237,1.331238168,4.567480413,4.009164352,-4.009164352,0,0.311870379,0.389877298,12.5397941,0.134539169,1,0.244440744,0,0.932700531,0.971462494,0.724496596,1,48.46617838,1.129859101,0.021636275,0.312029739,0.940475571,0.664972167,0.961238037,0.922476074,0.273708743,12.05372706,48.73988713,13.18358616,228.2304565,0,0.548316961,56.74837412,-0.548316961,123.2516259,0.958811867,0,267.5699572,13.18358616,276.1983507,9,17,3% -9/17/2018 2:00,87.87012288,271.0262029,4.054915725,23.85549649,3.168330786,11.54701857,8.443656975,3.10336159,3.072793923,0.030567668,1.078698127,0,1.078698127,0.095536863,0.983161264,1.533622958,4.7302996,25.09824872,-25.09824872,0,0.78135552,0.023884216,0.768198481,0.789999773,1,0.039822354,0,0.957536048,0.996298011,0.724496596,1,2.967323557,0.069216132,0.098209892,0.312029739,0.759501417,0.483998013,0.961238037,0.922476074,0.016758256,0.7384216,2.984081812,0.807637732,1.773169879,0,0.353950167,69.27088372,-0.353950167,110.7291163,0.908737177,0,4.595427202,0.807637732,5.124009944,9,18,12% -9/17/2018 3:00,99.94872722,280.335902,0,0,0,0,0,0,0,0,0,0,0,0,0,1.744434373,4.892784502,-4.92051009,4.92051009,0.628389527,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.128403923,82.62262916,-0.128403923,97.37737084,0.660603797,0,0,0,0,9,19,0% -9/17/2018 4:00,111.3723107,290.4457947,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943813516,5.069235415,-1.944660127,1.944660127,0.862710157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.100064193,95.74286703,0.100064193,84.25713297,0,0.550320761,0,0,0,9,20,0% -9/17/2018 5:00,121.9953955,302.324849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129221323,5.276564025,-0.978273522,0.978273522,0.697448315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.320614693,108.700103,0.320614693,71.29989704,0,0.894049567,0,0,0,9,21,0% -9/17/2018 6:00,131.1302699,317.1868014,0,0,0,0,0,0,0,0,0,0,0,0,0,2.288654959,5.535954029,-0.443987152,0.443987152,0.606079964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.518220139,121.2129375,0.518220139,58.78706249,0,0.953515907,0,0,0,9,22,0% -9/17/2018 7:00,137.6874431,336.1474221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40309922,5.866879287,-0.061164675,0.061164675,0.540613465,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679417599,132.7981489,0.679417599,47.20185108,0,0.976407558,0,0,0,9,23,0% -9/18/2018 8:00,140.3020779,358.7453101,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448733207,6.261286838,0.266780148,-0.266780148,0.484531597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793226201,142.4880355,0.793226201,37.51196453,0,0.986966278,0,0,0,9,0,0% -9/18/2018 9:00,138.2072708,21.58844022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412171925,0.376789362,0.593332085,-0.593332085,0.428687927,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851895516,148.4184386,0.851895516,31.58156142,0,0.991307356,0,0,0,9,1,0% -9/18/2018 10:00,132.0311569,41.0388329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.304378403,0.716262755,0.970666288,-0.970666288,0.364159978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851433818,148.3679634,0.851433818,31.63203658,0,0.99127553,0,0,0,9,2,0% -9/18/2018 11:00,123.1298569,56.32680691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.14902141,0.983088238,1.488826707,-1.488826707,0.275549328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791880255,142.3615731,0.791880255,37.6384269,0,0.98685914,0,0,0,9,3,0% -9/18/2018 12:00,112.6417437,68.48962388,0,0,0,0,0,0,0,0,0,0,0,0,0,1.965969302,1.19536944,2.396588077,-2.396588077,0.120312991,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677302414,132.6332021,0.677302414,47.36679792,0,0.976177732,0,0,0,9,4,0% -9/18/2018 13:00,101.2943225,78.76298658,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76791944,1.374673445,4.948645491,-4.948645491,0,#DIV/0!,0,0,0.240187706,1,0.199390432,0,0.938976202,0.977738165,0.724496596,1,0,0,0.036892512,0.312029739,0.900711115,0.625207711,0.961238037,0.922476074,0,0,0,0,0,0,-0.515519357,121.0321758,0.515519357,58.96782418,0,0.953010431,0,0,0,9,5,0% -9/18/2018 14:00,89.12583219,88.14329498,0.556419865,4.079154319,0.494186187,0.483479179,0,0.483479179,0.479284651,0.004194528,1.416964061,1.267152086,0.149811975,0.014901537,0.134910438,1.55553922,1.538390711,-62.27963106,62.27963106,0,0.888153387,0.003725384,0.119821163,1,0.901773942,0,0.016055234,0.961238037,1,0.679975778,0.955479182,0.460706637,0.010535944,0.115824807,0.26146263,0.724496596,0.448993192,0.968977696,0.930215733,0.002699028,0.115647823,0.463405665,0.126183767,0,0.124467355,-0.31064088,108.0978571,0.31064088,71.90214289,0,0.889042434,0.463405665,0.236840527,0.618413053,9,6,33% -9/18/2018 15:00,77.66191287,97.45997573,141.4324897,440.8699016,47.22748585,46.86958075,0,46.86958075,45.8034029,1.066177849,77.89981689,42.18378936,35.71602754,1.424082949,34.29194459,1.355456083,1.700997465,-4.056719433,4.056719433,0.77610643,0.333922467,0.907178238,29.17797053,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,44.02797309,1.031743249,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.657247545,28.04697511,44.68522063,29.07871836,0,42.18378936,-0.095683078,95.49063642,0.095683078,84.50936358,0,0.527441562,44.68522063,51.3282021,78.27850235,9,7,75% -9/18/2018 16:00,66.15260715,107.5497158,350.3720615,681.3861807,74.88628129,165.1496133,89.88017706,75.26943621,72.62818361,2.641252597,87.20986045,0,87.20986045,2.258097682,84.95176277,1.154580804,1.877096651,-1.793555017,1.793555017,0.836869662,0.213733598,2.302475227,74.05551801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81297264,1.635984084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.668135464,71.18498075,71.4811081,72.82096483,89.88017706,0,0.131907837,82.42014716,-0.131907837,97.57985284,0.670947464,0,131.785985,72.82096483,179.44585,9,8,36% -9/18/2018 17:00,55.31524468,119.4534621,539.4514506,787.6844122,91.21116385,369.7267456,277.199322,92.52742363,88.46081073,4.0666129,133.5466029,0,133.5466029,2.750353123,130.7962498,0.965433146,2.084856216,-0.93934767,0.93934767,0.690791602,0.169081321,3.02179011,97.19115729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.03189604,1.992621475,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.189276648,93.42383723,87.22117269,95.41645871,277.199322,0,0.351916729,69.39540427,-0.351916729,110.6045957,0.907920935,0,338.8962402,95.41645871,401.3444041,9,9,18% -9/18/2018 18:00,45.86059128,134.5803004,687.451524,840.9357727,101.8183288,565.6460515,461.715621,103.9304305,98.74813052,5.182299969,169.7507793,0,169.7507793,3.070198283,166.680581,0.800418315,2.34886935,-0.442337999,0.442337999,0.605797942,0.148109831,3.441996278,110.7064321,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.92045913,2.224348205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.493714587,106.4152335,97.41417371,108.6395817,461.715621,0,0.549049804,56.69815007,-0.549049804,123.3018499,0.95893358,0,540.1687871,108.6395817,611.2712205,9,10,13% -9/18/2018 19:00,38.96102187,154.4256807,782.2389484,867.0426115,108.0492382,726.1064192,615.4184167,110.6880026,104.791155,5.896847612,192.9209727,0,192.9209727,3.25808319,189.6628895,0.679998112,2.695236578,-0.078550488,0.078550488,0.543586614,0.138128175,3.577205623,115.0552294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.7292441,2.36047018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.591673297,110.5954628,103.3209174,112.955933,615.4184167,0,0.709790278,44.78214563,-0.709790278,135.2178544,0.979556657,0,706.1581243,112.955933,780.0855233,9,11,10% -9/18/2018 20:00,36.19688055,178.7187033,816.6566616,875.3789978,110.2324053,833.6295262,720.5647317,113.0647945,106.9084916,6.156302873,201.3317763,0,201.3317763,3.323913735,198.0078625,0.631754745,3.119229807,0.234852695,-0.234852695,0.489991513,0.134980109,3.440342215,110.6532317,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.7645086,2.408164186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.492516223,106.3640952,105.2570248,108.7722594,720.5647317,0,0.823146013,34.59902688,-0.823146013,145.4009731,0.989257435,0,818.0810432,108.7722594,889.2703116,9,12,9% -9/18/2018 21:00,38.49730819,203.2712334,788.1607729,868.5161187,108.427574,876.5849148,765.4853434,111.0995714,105.1580825,5.941488827,194.3681958,0,194.3681958,3.26949141,191.0987044,0.671904781,3.547752298,0.545181257,-0.545181257,0.436922204,0.137570376,3.056212896,98.2983124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0819488,2.368735397,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.21421584,94.48807684,103.2961647,96.85681224,765.4853434,0,0.881371488,28.19174974,-0.881371488,151.8082503,0.993270232,0,863.6299694,96.85681224,927.0208158,9,13,7% -9/18/2018 22:00,45.07651132,223.6019062,698.8285657,844.3435469,102.5853235,848.1969441,743.4368817,104.7600624,99.49199748,5.268064914,172.5324025,0,172.5324025,3.093326003,169.4390765,0.786733538,3.902589478,0.898122014,-0.898122014,0.37656578,0.146796122,2.465894293,79.31163691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.63549234,2.241104159,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786532021,76.23736217,97.42202436,78.47846633,743.4368817,0,0.880490985,28.29835247,-0.880490985,151.7016475,0.993213502,0,835.8135728,78.47846633,887.1761594,9,14,6% -9/18/2018 23:00,54.35305452,239.1133975,555.3509692,794.3418066,92.41730886,745.6333934,651.8163372,93.8170562,89.63058602,4.186470187,137.437995,0,137.437995,2.786722846,134.6512721,0.94863976,4.173316072,1.36927545,-1.36927545,0.295993797,0.166412438,1.729636748,55.63106341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.15632854,2.018971215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253115936,53.47469418,87.40944448,55.49366539,651.8163372,0,0.82057413,34.85769223,-0.82057413,145.1423078,0.989067053,0,732.0995082,55.49366539,768.4190023,9,15,5% -9/18/2018 0:00,65.1034565,251.2461985,369.3155645,694.9831603,76.74079402,567.6989911,490.4881584,77.21083267,74.42677594,2.784056725,91.85885248,0,91.85885248,2.314018083,89.5448344,1.13626967,4.385073397,2.154146304,-2.154146304,0.161772976,0.20779193,0.935303264,30.08256806,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.54184799,1.676498224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.677624031,28.91650866,72.21947203,30.59300689,490.4881584,0,0.705755458,45.10939131,-0.705755458,134.8906087,0.979153931,0,552.4828803,30.59300689,572.5053915,9,16,4% -9/18/2018 1:00,76.58420441,261.4434543,160.517445,473.542826,50.64789735,307.984137,257.6534123,50.33072468,49.12067637,1.210048303,40.44653391,0,40.44653391,1.527220976,38.91931294,1.336646522,4.563049085,4.109092004,-4.109092004,0,0.315528928,0.381805244,12.28016909,0.147152397,1,0.238722166,0,0.933521451,0.972283414,0.724496596,1,47.47903873,1.106466398,0.023532858,0.312029739,0.935432596,0.659929192,0.961238037,0.922476074,0.267443187,11.80416563,47.74648191,12.91063203,219.7390952,0,0.544097383,57.0369965,-0.544097383,122.9630035,0.958104686,0,258.2795387,12.91063203,266.7292891,9,17,3% -9/18/2018 2:00,88.15541789,270.7749771,2.910600597,17.6866478,2.341294462,8.480554696,6.187917564,2.292637132,2.270695796,0.021941337,0.776307479,0,0.776307479,0.070598666,0.705708813,1.538602296,4.725914882,29.03201605,-29.03201605,0,0.804402522,0.017649667,0.567673949,0.815994273,1,0.034431119,0,0.958059503,0.996821466,0.724496596,1,2.191657248,0.051148494,0.100530321,0.312029739,0.754747446,0.479244042,0.961238037,0.922476074,0.012426305,0.545669792,2.204083553,0.596818286,1.13861227,0,0.349863786,69.5210161,-0.349863786,110.4789839,0.907087238,0,3.236904212,0.596818286,3.627509844,9,18,12% -9/18/2018 3:00,100.2617084,280.0871169,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749896926,4.888442382,-4.779395634,4.779395634,0.65252152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.123802851,82.8883728,-0.123802851,97.1116272,0.646132079,0,0,0,0,9,19,0% -9/18/2018 4:00,111.6986086,290.2018456,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94950849,5.064977702,-1.919418096,1.919418096,0.858393516,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.104710686,96.01049823,0.104710686,83.98950177,0,0.572493819,0,0,0,9,20,0% -9/18/2018 5:00,122.3431602,302.0974885,0,0,0,0,0,0,0,0,0,0,0,0,0,2.135290962,5.272595836,-0.970139054,0.970139054,0.696057239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.325212021,108.9784207,0.325212021,71.02157932,0,0.896254145,0,0,0,9,21,0% -9/18/2018 6:00,131.5048414,317.0096991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295192464,5.53286301,-0.441389909,0.441389909,0.60563581,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.522677151,121.5120014,0.522677151,58.4879986,0,0.954338654,0,0,0,9,22,0% -9/18/2018 7:00,138.0830068,336.0888374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410003109,5.865856792,-0.061237556,0.061237556,0.540625928,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683652844,133.1297528,0.683652844,46.87024717,0,0.976863465,0,0,0,9,23,0% -9/19/2018 8:00,140.6908677,358.8756549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455518869,6.263561782,0.264880403,-0.264880403,0.484856473,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797173529,142.8610356,0.797173529,37.13896439,0,0.987278399,0,0,0,9,0,0% -9/19/2018 9:00,138.5516038,21.8876178,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418181671,0.382010996,0.589634825,-0.589634825,0.429320196,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855508617,148.8159701,0.855508617,31.1840299,0,0.991555235,0,0,0,9,1,0% -9/19/2018 10:00,132.3154691,41.41382985,0,0,0,0,0,0,0,0,0,0,0,0,0,2.309340587,0.722807687,0.964494395,-0.964494395,0.365215434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854689402,148.7254382,0.854689402,31.27456182,0,0.991499216,0,0,0,9,2,0% -9/19/2018 11:00,123.3625082,56.71234547,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153081942,0.989817155,1.478082031,-1.478082031,0.277386776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794779646,142.6344476,0.794779646,37.36555239,0,0.987089481,0,0,0,9,3,0% -9/19/2018 12:00,112.8384362,68.86432632,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969402234,1.201909231,2.373979451,-2.373979451,0.124179294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.679871447,132.8335983,0.679871447,47.16640169,0,0.976456685,0,0,0,9,4,0% -9/19/2018 13:00,101.4698847,79.1269484,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770983579,1.381025777,4.866017884,-4.866017884,0,#DIV/0!,0,0,0.231941629,1,0.202684956,0,0.938532241,0.977294204,0.724496596,1,0,0,0.035751379,0.312029739,0.903621979,0.628118575,0.961238037,0.922476074,0,0,0,0,0,0,-0.517806601,121.1852373,0.517806601,58.81476269,0,0.953438852,0,0,0,9,5,0% -9/19/2018 14:00,89.27207048,88.50406704,0.390096824,3.109310692,0.350594819,0.342963806,0,0.342963806,0.340023092,0.002940715,1.076421974,0.971266756,0.105155219,0.010571727,0.094583491,1.55809156,1.544687371,-74.63734861,74.63734861,0,0.898737949,0.002642932,0.085005773,1,0.918658794,0,0.013397316,0.961238037,1,0.687206927,0.962710331,0.326843129,0.007501874,0.115824807,0.269670596,0.724496596,0.448993192,0.967757612,0.928995649,0.001914795,0.081996965,0.328757924,0.08949884,0,0.079004009,-0.312373658,108.2023365,0.312373658,71.79766347,0,0.889935287,0.328757924,0.159807295,0.433348603,9,6,32% -9/19/2018 15:00,77.83215911,97.82719163,138.6488433,436.9359421,46.55316465,46.19460852,0,46.19460852,45.14941497,1.045193546,77.66956842,42.64880146,35.02076696,1.403749677,33.61701728,1.35842744,1.707406592,-4.101468781,4.101468781,0.76845384,0.335763094,0.884441206,28.44666944,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,43.39933501,1.017011862,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.640774643,27.34402068,44.04010966,28.36103255,0,42.64880146,-0.097608819,95.60149221,0.097608819,84.39850779,0,0.537751206,44.04010966,51.29547698,77.61197343,9,7,76% -9/19/2018 16:00,66.34046114,107.9324327,347.2433003,680.0949597,74.32047624,163.1166718,88.41956543,74.69710634,72.07943967,2.617666674,86.43419497,0,86.43419497,2.241036572,84.19315839,1.157859474,1.883776321,-1.800244386,1.800244386,0.838013611,0.214029979,2.284394657,73.47398473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.28549909,1.623623368,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655036153,70.62598884,70.94053524,72.24961221,88.41956543,0,0.130010617,82.52979416,-0.130010617,97.47020584,0.665416025,0,129.776331,72.24961221,177.0622572,9,8,36% -9/19/2018 17:00,55.53564672,119.8553158,536.0852397,787.1344996,90.6510254,367.4262791,275.4674796,91.9587995,87.91756252,4.04123698,132.7135358,0,132.7135358,2.733462883,129.9800729,0.969279888,2.091869886,-0.939324828,0.939324828,0.690787696,0.169098156,3.00294187,96.5849331,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.5097052,1.980384553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175621163,92.84111148,86.68532636,94.82149603,275.4674796,0,0.349962401,69.51498457,-0.349962401,110.4850154,0.907127509,0,336.569455,94.82149603,398.6282277,9,9,18% -9/19/2018 18:00,46.13137475,134.985074,683.8006418,840.6224523,101.2432671,563.1230659,459.7778788,103.3451871,98.19040902,5.154778076,168.8482404,0,168.8482404,3.05285805,165.7953824,0.805144378,2.355933983,-0.439892547,0.439892547,0.605379746,0.148059626,3.421778146,110.0561475,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.384356,2.211785265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.479066618,105.7901551,96.86342262,108.0019404,459.7778788,0,0.54694932,56.84202573,-0.54694932,123.1579743,0.958583852,0,537.5990728,108.0019404,608.2841827,9,10,13% -9/19/2018 19:00,39.29534601,154.7668021,778.2517394,866.7857269,107.4534986,723.299515,613.2193455,110.0801695,104.2133792,5.866790346,191.9362639,0,191.9362639,3.240119445,188.6961445,0.685833169,2.701190269,-0.074641816,0.074641816,0.542918192,0.138070361,3.555437121,114.3550795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.173864,2.347455508,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.575902091,109.9224522,102.7497661,112.2699077,613.2193455,0,0.707463594,44.97108071,-0.707463594,135.0289193,0.979324985,0,703.2907925,112.2699077,776.7692017,9,11,10% -9/19/2018 20:00,36.58286196,178.8798779,812.2996783,875.0805325,109.6137043,830.4603396,718.0284349,112.4319048,106.3084467,6.123458092,200.2567191,0,200.2567191,3.305257616,196.9514615,0.638491391,3.122042834,0.24016539,-0.24016539,0.489082989,0.134942445,3.417057273,109.904308,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,102.1877226,2.394647891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.475646362,105.6442012,104.6633689,108.0388491,718.0284349,0,0.820528407,34.8622757,-0.820528407,145.1377243,0.989063658,0,814.8391989,108.0388491,885.5484649,9,12,9% -9/19/2018 21:00,38.89332652,203.2135789,783.4260674,868.0813711,107.7841998,872.9784162,762.5385111,110.4399051,104.5341085,5.905796617,193.2008115,0,193.2008115,3.250091304,189.9507202,0.678816605,3.546746037,0.552367603,-0.552367603,0.435693266,0.137580563,3.031627919,97.50757504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4821612,2.354680086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.196404108,93.72799001,102.6785653,96.08267009,762.5385111,0,0.878418241,28.54785848,-0.878418241,151.4521415,0.993079506,0,859.9399334,96.08267009,922.8241194,9,13,7% -9/19/2018 22:00,45.45021013,223.4105824,693.7379608,843.6207542,101.9136952,844.0780845,740.0077734,104.070311,98.84062126,5.229689785,171.2778744,0,171.2778744,3.073073932,168.2048004,0.793255812,3.899250247,0.908401715,-0.908401715,0.374807847,0.146905173,2.440444197,78.49307433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.00936474,2.226431602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.768093513,75.45052868,96.77745825,77.67696028,740.0077734,0,0.877180617,28.69588912,-0.877180617,151.3041109,0.992999196,0,831.6045826,77.67696028,882.4425996,9,14,6% -9/19/2018 23:00,54.69854524,238.8717743,549.9630249,792.9997439,91.70564432,740.8958144,647.80958,93.08623438,88.94038079,4.145853587,136.1101662,0,136.1101662,2.765263534,133.3449026,0.95466971,4.169098952,1.385720606,-1.385720606,0.29318151,0.166748745,1.704122462,54.81043627,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.49287702,2.003424017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234630923,52.68587616,86.72750795,54.68930018,647.80958,0,0.816910201,35.22332156,-0.816910201,144.7766784,0.988793762,0,727.2775798,54.68930018,763.070633,9,15,5% -9/19/2018 0:00,65.42725332,250.9924685,363.7556692,692.1059928,75.94459793,562.0943131,485.6975811,76.39673198,73.6545881,2.742143886,90.48678325,0,90.48678325,2.290009833,88.19677342,1.141920991,4.380644974,2.186609093,-2.186609093,0.156221512,0.208779146,0.911447122,29.31527254,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.79959167,1.659104329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.660340338,28.17895502,71.459932,29.83805935,485.6975811,0,0.701767628,45.43100633,-0.701767628,134.5689937,0.978751344,0,546.8370926,29.83805935,566.3655056,9,16,4% -9/19/2018 1:00,76.89456958,261.1897187,155.2067441,465.9134285,49.56384733,300.7621776,251.5228492,49.23932846,48.06931446,1.170013996,39.12620489,0,39.12620489,1.494532868,37.63167202,1.342063416,4.558620563,4.213744167,-4.213744167,0,0.31934081,0.373633217,12.01732862,0.159973759,1,0.233008109,0,0.934334715,0.973096678,0.724496596,1,46.47801737,1.082783975,0.025439138,0.312029739,0.930392309,0.654888905,0.961238037,0.922476074,0.261155503,11.55151337,46.73917288,12.63429734,211.2857934,0,0.539848894,57.32664699,-0.539848894,122.673353,0.95738149,0,249.0202807,12.63429734,257.2891756,9,17,3% -9/19/2018 2:00,88.43798753,270.5233386,1.991946556,12.59909896,1.648509182,5.970684464,4.356867782,1.613816683,1.598800548,0.015016135,0.532679139,0,0.532679139,0.049708634,0.482970504,1.543534066,4.721522963,34.34408618,-34.34408618,0,0.827587054,0.012427159,0.399700137,0.842346662,1,0.02910887,0,0.958569444,0.997331407,0.724496596,1,1.542331547,0.036013736,0.102840167,0.312029739,0.750058131,0.474554726,0.961238037,0.922476074,0.00878133,0.384206975,1.551112877,0.420220711,0.686874747,0,0.345807886,69.76888005,-0.345807886,110.2311199,0.905411048,0,2.173016862,0.420220711,2.448042913,9,18,13% -9/19/2018 3:00,100.5747947,279.8373523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755361313,4.884083167,-4.646435309,4.646435309,0.675259075,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119192211,83.15451493,-0.119192211,96.84548507,0.630509501,0,0,0,0,9,19,0% -9/19/2018 4:00,112.0248633,289.9562911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.955202708,5.060691966,-1.894871835,1.894871835,0.854195858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.109355704,96.27817604,0.109355704,83.72182396,0,0.592776477,0,0,0,9,20,0% -9/19/2018 5:00,122.6908685,301.8678661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.141359618,5.268588169,-0.962156735,0.962156735,0.694692182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.32979729,109.2564723,0.32979729,70.74352771,0,0.89839172,0,0,0,9,21,0% -9/19/2018 6:00,131.8795523,316.8300457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.301732404,5.529727466,-0.438833148,0.438833148,0.605198578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52711271,121.8105791,0.52711271,58.18942093,0,0.955143627,0,0,0,9,22,0% -9/19/2018 7:00,138.4790257,336.0289569,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416914944,5.864811679,-0.061314472,0.061314472,0.540639082,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687859079,133.4608744,0.687859079,46.53912556,0,0.977310693,0,0,0,9,23,0% -9/20/2018 8:00,141.0800469,359.0080197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462311328,6.265871985,0.262994496,-0.262994496,0.485178982,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801086643,143.2339947,0.801086643,36.76600525,0,0.987584779,0,0,0,9,0,0% -9/20/2018 9:00,138.8956902,22.19099355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42418711,0.387305902,0.585966595,-0.585966595,0.4299475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859085013,149.2140029,0.859085013,30.78599712,0,0.991798542,0,0,0,9,1,0% -9/20/2018 10:00,132.5990525,41.79248673,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314290052,0.729416496,0.958374715,-0.958374715,0.366261961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857908671,149.0825734,0.857908671,30.91742664,0,0.991718738,0,0,0,9,2,0% -9/20/2018 11:00,123.5944253,57.10027147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157129658,0.996587741,1.467444874,-1.467444874,0.279205837,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797645966,142.905893,0.797645966,37.09410699,0,0.987315548,0,0,0,9,3,0% -9/20/2018 12:00,113.0346825,69.24045162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972827379,1.208473856,2.351686461,-2.351686461,0.127991619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682413285,133.0325147,0.682413285,46.96748534,0,0.976730617,0,0,0,9,4,0% -9/20/2018 13:00,101.6454106,79.49170168,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774047084,1.387391922,4.785665696,-4.785665696,0,#DIV/0!,0,0,0.223749143,1,0.205993369,0,0.938084011,0.976845974,0.724496596,1,0,0,0.034609645,0.312029739,0.906544652,0.631041248,0.961238037,0.922476074,0,0,0,0,0,0,-0.520074746,121.3372654,0.520074746,58.66273456,0,0.953859973,0,0,0,9,5,0% -9/20/2018 14:00,89.41726648,88.86516386,0.25969108,2.324781922,0.236047017,0.23088699,0,0.23088699,0.228929329,0.001957661,0.800235702,0.730152905,0.070082797,0.007117688,0.062965109,1.560625708,1.5509897,-93.03755616,93.03755616,0,0.90895312,0.001779422,0.057232332,1,0.935235312,0,0.010747934,0.961238037,1,0.69446989,0.969973294,0.220055579,0.00507002,0.115824807,0.277917073,0.724496596,0.448993192,0.966517556,0.927755593,0.001289185,0.055172377,0.221344764,0.060242398,0,0.047288125,-0.314073719,108.3049041,0.314073719,71.69509587,0,0.890801707,0.221344764,0.102366741,0.288341748,9,6,30% -9/20/2018 15:00,78.00326992,98.1942685,135.8552535,432.9047549,45.87346049,45.51434068,0,45.51434068,44.4902064,1.024134287,77.41231169,43.0893785,34.32293319,1.383254089,32.9396791,1.361413887,1.713813292,-4.147593045,4.147593045,0.760566127,0.337664237,0.861721319,27.71591975,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.76567866,1.002162878,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.624314162,26.64159629,43.38999282,27.64375917,0,43.0893785,-0.099535471,95.71242144,0.099535471,84.28757856,0,0.547666513,43.38999282,51.24236885,76.92709838,9,7,77% -9/20/2018 16:00,66.52967357,108.3143737,344.0860011,678.7649811,73.75151051,161.0720473,86.9505513,74.12149598,71.52763036,2.593865619,85.65151482,0,85.65151482,2.223880156,83.42763467,1.161161854,1.890442448,-1.80706318,1.80706318,0.839179693,0.21434034,2.266130627,72.88655075,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.75507899,1.611193603,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.641803925,70.06132495,70.39688291,71.67251856,86.9505513,0,0.128101116,82.6401232,-0.128101116,97.3598768,0.659683337,0,127.7567127,71.67251856,174.6649427,9,8,37% -9/20/2018 17:00,55.75780931,120.2553482,532.6802403,786.5619533,90.08791735,365.0989695,273.7119665,91.38700291,87.37143426,4.015568656,131.8709745,0,131.8709745,2.716483097,129.1544914,0.973157356,2.09885177,-0.939311731,0.939311731,0.690785456,0.169121943,2.983890446,95.9721738,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.98474594,1.968082757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.161818471,92.25210394,86.14656441,94.22018669,273.7119665,0,0.347985261,69.63586591,-0.347985261,110.3641341,0.906315754,0,334.2160316,94.22018669,395.8812594,9,9,18% -9/20/2018 18:00,46.40406132,135.3864066,680.1038217,840.2920608,100.6651293,560.561825,457.8052108,102.7566141,97.62970426,5.126909885,167.9344706,0,167.9344706,3.035425064,164.8990455,0.809903656,2.362938557,-0.43742649,0.43742649,0.604958025,0.148014356,3.401345357,109.3989587,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.84538526,2.199155126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.464263132,105.1584403,96.30964839,107.3575954,457.8052108,0,0.544816775,56.98785642,-0.544816775,123.0121436,0.958226027,0,534.9905167,107.3575954,605.2539158,9,10,13% -9/20/2018 19:00,39.63116305,155.1031415,774.2144073,866.51377,106.8545859,720.4455673,610.9766862,109.4688811,103.6325259,5.836355232,190.9393066,0,190.9393066,3.222060017,187.7172466,0.691694282,2.707060499,-0.07069607,0.07069607,0.54224343,0.138016788,3.533455063,113.648061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.61552575,2.334371514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.559976165,109.242839,102.1755019,111.5772106,610.9766862,0,0.705097492,45.16257917,-0.705097492,134.8374208,0.97908782,0,700.3753339,111.5772106,773.4003867,9,11,10% -9/20/2018 20:00,36.96954867,179.0379273,807.8915214,874.7670313,108.9918114,827.2381189,715.4425852,111.7955337,105.7053062,6.090227543,199.1691581,0,199.1691581,3.286505252,195.8826528,0.645240347,3.124801318,0.245533092,-0.245533092,0.488165058,0.134908968,3.393573338,109.1489839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.607961,2.381061867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.458632331,104.918155,104.0665933,107.2992168,715.4425852,0,0.817866426,35.12821842,-0.817866426,144.8717816,0.988865323,0,811.5429562,107.2992168,881.7681476,9,12,9% -9/20/2018 21:00,39.28978951,203.1564455,778.6423449,867.6296721,107.1376964,869.3158194,759.5389849,109.7768344,103.9070995,5.869734896,192.0214482,0,192.0214482,3.230596841,188.7908513,0.685736189,3.545748871,0.559638073,-0.559638073,0.434449943,0.137595517,3.006872046,96.71134105,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.87945635,2.340556414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.178468562,92.96261961,102.0579249,95.30317603,759.5389849,0,0.875418406,28.90546737,-0.875418406,151.0945326,0.992884454,0,856.1923755,95.30317603,918.5663982,9,13,7% -9/20/2018 22:00,45.82454755,223.2211594,688.6036492,842.8757682,101.2390208,839.9026471,736.5253711,103.3772759,98.18629076,5.190985175,170.0126571,0,170.0126571,3.052730008,166.9599271,0.799789233,3.895944192,0.918824596,-0.918824596,0.37302543,0.147020744,2.414865496,77.6703754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.38039737,2.211692499,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749561831,74.65971917,96.12995921,76.87141167,736.5253711,0,0.873824351,29.09385814,-0.873824351,150.9061419,0.992780262,0,827.3378105,76.87141167,877.648612,9,14,6% -9/20/2018 23:00,55.04475777,238.6316726,544.5398344,791.6220033,90.99080213,736.1021991,643.7501341,92.35206501,88.24709373,4.104971286,134.7736957,0,134.7736957,2.743708405,132.0299873,0.960712259,4.164908387,1.40245862,-1.40245862,0.290319141,0.167096687,1.67854107,53.98765077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82646313,1.987807399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216097292,51.89498344,86.04256042,53.88279084,643.7501341,0,0.813203942,35.58984305,-0.813203942,144.4101569,0.988514809,0,722.399101,53.88279084,757.66431,9,15,5% -9/20/2018 0:00,65.75165848,250.7395416,358.1733293,689.1519365,75.14382479,556.4294788,480.8514557,75.57802307,72.87796122,2.700061849,89.10913405,0,89.10913405,2.265863569,86.84327048,1.147582929,4.376230566,2.219904354,-2.219904354,0.150527687,0.209797376,0.887631157,28.54926921,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.05306837,1.641610442,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.643085751,27.44264349,70.69615412,29.08425393,480.8514557,0,0.697743749,45.75373621,-0.697743749,134.2462638,0.978340454,0,541.1325858,29.08425393,560.1676483,9,16,4% -9/20/2018 1:00,77.20527964,260.9361396,149.9059817,458.0515544,48.46650764,293.4554552,245.320337,48.13511823,47.00506362,1.130054611,37.80788484,0,37.80788484,1.461444028,36.34644081,1.34748633,4.554194773,4.323425575,-4.323425575,0,0.3233127,0.365361007,11.7512659,0.173003956,1,0.227300892,0,0.935139988,0.973901952,0.724496596,1,45.4631085,1.058811223,0.02735452,0.312029739,0.925356728,0.649853324,0.961238037,0.922476074,0.254845332,11.29576377,45.71795383,12.35457499,202.8789481,0,0.535573637,57.61717756,-0.535573637,122.3828224,0.956642156,0,239.8005082,12.35457499,247.8863304,9,17,3% -9/20/2018 2:00,88.717232,270.2712849,1.284396772,8.573320106,1.092468814,3.999505728,2.930296555,1.069209174,1.059526848,0.009682325,0.344358833,0,0.344358833,0.032941966,0.311416868,1.548407802,4.717123796,41.89226157,-41.89226157,0,0.850569573,0.008235491,0.264881712,0.869004413,1,0.023866225,0,0.959065124,0.997827087,0.724496596,1,1.021535151,0.023866342,0.105134363,0.312029739,0.745443051,0.469939647,0.961238037,0.922476074,0.005841873,0.254614377,1.027377024,0.278480719,0.383855916,0,0.341792505,70.01387916,-0.341792505,109.9861208,0.903712415,0,1.374272381,0.278480719,1.556532442,9,18,13% -9/20/2018 3:00,100.8878432,279.5865994,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76082504,4.879706704,-4.520988733,4.520988733,0.696711703,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114574488,83.4209172,-0.114574488,96.5790828,0.613602677,0,0,0,0,9,19,0% -9/20/2018 4:00,112.350929,289.7091055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960893628,5.056377764,-1.871003564,1.871003564,0.850114143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.11399671,96.54576023,0.11399671,83.45423977,0,0.611390852,0,0,0,9,20,0% -9/20/2018 5:00,123.0383737,301.6359236,0,0,0,0,0,0,0,0,0,0,0,0,0,2.147424728,5.26454001,-0.95432698,0.95432698,0.693353215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.334368029,109.5341127,0.334368029,70.46588731,0,0.900464172,0,0,0,9,21,0% -9/20/2018 6:00,132.2542621,316.6477328,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308272323,5.526545506,-0.436318628,0.436318628,0.604768569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.531524514,122.1085181,0.531524514,57.89148192,0,0.955930961,0,0,0,9,22,0% -9/20/2018 7:00,138.8753791,335.9676436,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423832615,5.86374156,-0.061397116,0.061397116,0.540653215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692034262,133.7913549,0.692034262,46.20864514,0,0.977749242,0,0,0,9,23,0% -9/21/2018 8:00,141.4695183,359.1423134,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469108885,6.268215851,0.261120849,-0.261120849,0.485499395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80496384,143.6067633,0.80496384,36.39323666,0,0.987885409,0,0,0,9,0,0% -9/21/2018 9:00,139.2394509,22.49848804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430186868,0.392672693,0.582325767,-0.582325767,0.430570118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.862623392,149.6124257,0.862623392,30.38757431,0,0.992037278,0,0,0,9,1,0% -9/21/2018 10:00,132.8818561,42.17468385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.319225905,0.736087094,0.952305227,-0.952305227,0.367299904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861090733,149.4392718,0.861090733,30.56072817,0,0.99193411,0,0,0,9,2,0% -9/21/2018 11:00,123.8255861,57.49044853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161164176,1.003397615,1.456911829,-1.456911829,0.281007093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80047874,143.175843,0.80047874,36.82415704,0,0.987537379,0,0,0,9,3,0% -9/21/2018 12:00,113.2304817,69.61786604,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976244719,1.215060981,2.329699154,-2.329699154,0.13175167,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684927834,133.229932,0.684927834,46.77006801,0,0.976999609,0,0,0,9,4,0% -9/21/2018 13:00,101.8209113,79.85711768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777110149,1.393769635,4.707483367,-4.707483367,0,#DIV/0!,0,0,0.215608376,1,0.209316243,0,0.937631407,0.976393371,0.724496596,1,0,0,0.033467124,0.312029739,0.909479632,0.633976228,0.961238037,0.922476074,0,0,0,0,0,0,-0.522324028,121.4882722,0.522324028,58.51172781,0,0.954273981,0,0,0,9,5,0% -9/21/2018 14:00,89.56141256,89.2264574,0.160418103,1.703084781,0.147381466,0.14414667,0,0.14414667,0.142937371,0.001209299,0.581073391,0.53773407,0.043339321,0.004444095,0.038895226,1.563141532,1.557295462,-123.3483027,123.3483027,0,0.918733377,0.001111024,0.035734343,1,0.951512697,0,0.008106947,0.961238037,1,0.701764475,0.977267879,0.137396838,0.003178074,0.115824807,0.286201633,0.724496596,0.448993192,0.96525748,0.926495517,0.000804933,0.03442568,0.138201771,0.037603754,0,0.026073275,-0.315741222,108.4055665,0.315741222,71.59443351,0,0.89164247,0.138201771,0.060851794,0.178028052,9,6,29% -9/21/2018 15:00,78.17525854,98.56107279,133.0518861,428.773225,45.18822254,44.82863222,0,44.82863222,43.8256309,1.003001319,77.12745481,43.50489296,33.62256185,1.362591636,32.25997021,1.364415655,1.720215235,-4.195172545,4.195172545,0.752429553,0.339628575,0.839022189,26.98583772,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,42.12686341,0.987193002,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.60786872,25.93981367,42.73473213,26.92700667,0,43.50489296,-0.101463642,95.82345972,0.101463642,84.17654028,0,0.557212642,42.73473213,51.16848303,76.22348091,9,7,78% -9/21/2018 16:00,66.72024978,108.6953938,340.9000591,677.3951791,73.17934327,159.0153806,85.47281587,73.54256471,70.97271607,2.569848642,84.86179332,0,84.86179332,2.206627203,82.65516612,1.164488036,1.897092503,-1.814020349,1.814020349,0.840369439,0.214665094,2.247683547,72.29322923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22167426,1.598693897,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628439078,69.49100175,69.85011334,71.08969564,85.47281587,0,0.12617866,82.75117301,-0.12617866,97.24882699,0.653736479,0,125.726811,71.08969564,172.2535951,9,8,37% -9/21/2018 17:00,55.98171857,120.6534027,529.236529,785.966355,89.52183792,362.744368,271.9323353,90.81203271,86.8224242,3.989608506,131.0189375,0,131.0189375,2.699413714,128.3195238,0.97706531,2.105799131,-0.939311865,0.939311865,0.690785479,0.169152795,2.964638102,95.35295224,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.4570166,1.955716046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.147870213,91.65688462,85.60488681,93.61260067,271.9323353,0,0.345984702,69.75808276,-0.345984702,110.2419172,0.90548494,0,331.8355211,93.61260067,393.103096,9,9,18% -9/21/2018 18:00,46.67860604,135.7841494,676.3614507,839.9444211,100.0839393,557.9620369,455.7972993,102.1647375,97.06603924,5.098698311,167.0095644,0,167.0095644,3.01790004,163.9916644,0.814695366,2.369880479,-0.434942012,0.434942012,0.604533154,0.147974044,3.380702025,108.7349982,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.303569,2.186458305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.449307109,104.5202162,95.75287611,106.7066745,455.7972993,0,0.542651737,57.13566281,-0.542651737,122.8643372,0.957859873,0,532.3428193,106.7066745,602.1802037,9,10,13% -9/21/2018 19:00,39.96839448,155.4346032,770.127728,866.2266853,106.2525481,717.5445877,608.6903978,108.8541899,103.0486418,5.805548117,189.9302902,0,189.9302902,3.203906356,186.7263839,0.69758008,2.712845598,-0.066714955,0.066714955,0.541562619,0.137967436,3.511265452,112.9343668,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.05427412,2.321219249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.543899867,108.5568091,101.598174,110.8780283,608.6903978,0,0.702691811,45.35663071,-0.702691811,134.6433693,0.978845051,0,697.4117574,110.8780283,769.9792094,9,11,10% -9/21/2018 20:00,37.35684245,179.1927747,803.4334015,874.4385161,108.3668004,823.963283,712.8075211,111.1557619,105.0991416,6.056620352,198.0693889,0,198.0693889,3.267658864,194.80173,0.651999899,3.127503914,0.250954333,-0.250954333,0.487237971,0.134879631,3.369898259,108.387512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,101.0252925,2.367407723,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.441479817,104.1861992,103.4667723,106.5536069,712.8075211,0,0.815160252,35.39678968,-0.815160252,144.6032103,0.988662367,0,808.1927437,106.5536069,877.9299484,9,12,9% -9/21/2018 21:00,39.68657847,203.0997105,773.8112653,867.1611006,106.4881642,865.5980206,756.4875513,109.1104693,103.2771531,5.833316177,190.8305112,0,190.8305112,3.21101105,187.6195001,0.692661463,3.544758659,0.56699143,-0.56699143,0.433192444,0.137615164,2.981954825,95.90991758,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.27392794,2.326366575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16041612,92.19226089,101.4343441,94.51862746,756.4875513,0,0.872372562,29.26447187,-0.872372562,150.7355281,0.992685038,0,852.3882179,94.51862746,914.2487692,9,13,7% -9/21/2018 22:00,46.19938651,223.0335409,683.4277237,842.1086987,100.5614283,835.672036,732.990939,102.681097,97.52913017,5.151966862,168.7372622,0,168.7372622,3.032298094,165.7049641,0.806331407,3.892669631,0.929390071,-0.929390071,0.371218627,0.147142741,2.389169205,76.84389434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.74870962,2.196889647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730944956,73.86527414,95.47965458,76.06216379,732.990939,0,0.870423189,29.49214591,-0.870423189,150.5078541,0.992556677,0,823.0147056,76.06216379,872.7958705,9,14,6% -9/21/2018 23:00,55.39154931,238.3930447,539.0838852,790.2086121,90.27293606,731.2544301,639.6397141,91.614716,87.55087396,4.063842036,133.4291913,0,133.4291913,2.722062094,130.7071293,0.966764913,4.160743545,1.419491801,-1.419491801,0.287406295,0.167456195,1.652904861,53.16310216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.15723021,1.972124721,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.197523945,51.10239595,85.35475416,53.07452067,639.6397141,0,0.809456774,35.9571093,-0.809456774,144.0428907,0.988230179,0,717.4660234,53.07452067,752.2022357,9,15,5% -9/21/2018 0:00,66.07652922,250.487399,352.571426,686.1202739,74.33862903,550.7066495,475.9517721,74.75487742,72.09704508,2.657832336,87.72660812,0,87.72660812,2.241583946,85.48502418,1.153252993,4.371829848,2.254053315,-2.254053315,0.144687871,0.210847004,0.863869586,27.78501541,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.30242208,1.624019938,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.625870574,26.70801367,69.92829265,28.3320336,475.9517721,0,0.693685627,46.07742904,-0.693685627,133.922571,0.97792124,0,535.3716397,28.3320336,553.914389,9,16,3% -9/21/2018 1:00,77.51618891,260.6827105,144.6194322,449.9531662,47.35586711,286.0664465,239.0483311,47.01811536,45.92791299,1.090202367,36.4926098,0,36.4926098,1.427954118,35.06465568,1.35291272,4.549771601,4.438466894,-4.438466894,0,0.327451618,0.356988529,11.48197825,0.186243513,1,0.221602843,0,0.935936945,0.974698908,0.724496596,1,44.4343255,1.034547897,0.029278386,0.312029739,0.920327889,0.644824485,0.961238037,0.922476074,0.248512284,11.03691423,44.68283778,12.07146213,194.5271302,0,0.531273806,57.90843877,-0.531273806,122.0915612,0.95588657,0,230.6287091,12.07146213,238.5292396,9,17,3% -9/21/2018 2:00,88.99253114,270.0188117,0.766420348,5.538218313,0.669043281,2.525612397,1.870965638,0.654646758,0.648869158,0.0057776,0.20600161,0,0.20600161,0.020174123,0.185827487,1.553212678,4.712717307,53.42937955,-53.42937955,0,0.872945614,0.005043531,0.162217289,0.895907156,1,0.018714109,0,0.959545817,0.99830778,0.724496596,1,0.625237771,0.014616084,0.107407545,0.312029739,0.740912013,0.465408608,0.961238037,0.922476074,0.003592175,0.155929429,0.628829946,0.170545513,0.194754134,0,0.337828076,70.25539613,-0.337828076,109.7446039,0.901995724,0,0.804497342,0.170545513,0.916115969,9,18,14% -9/21/2018 3:00,101.20071,279.3348481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.766285595,4.875312814,-4.402481276,4.402481276,0.716977672,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.109952198,83.68744003,-0.109952198,96.31255997,0.595256929,0,0,0,0,9,19,0% -9/21/2018 4:00,112.6766591,289.4602623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966578692,5.052034631,-1.847796129,1.847796129,0.846145438,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.118631158,96.81310938,0.118631158,83.18689062,0,0.628525566,0,0,0,9,20,0% -9/21/2018 5:00,123.3855278,301.4016011,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153483709,5.260450311,-0.946650162,0.946650162,0.692040402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.338921764,109.8111957,0.338921764,70.18880429,0,0.902473328,0,0,0,9,21,0% -9/21/2018 6:00,132.6288288,316.4626483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314809746,5.523315172,-0.433848082,0.433848082,0.604346081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.535910271,122.4056649,0.535910271,57.59433515,0,0.956700799,0,0,0,9,22,0% -9/21/2018 7:00,139.2719457,335.9047539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430754009,5.862643929,-0.061487183,0.061487183,0.540668617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69617638,134.1210338,0.69617638,45.87896622,0,0.97817912,0,0,0,9,23,0% -9/22/2018 8:00,141.8591856,359.2784379,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475909863,6.270591673,0.259257868,-0.259257868,0.485817983,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808803459,143.9791903,0.808803459,36.0208097,0,0.988180284,0,0,0,9,0,0% -9/22/2018 9:00,139.5828097,22.81001634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436179609,0.398109887,0.57871069,-0.57871069,0.431188333,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866122495,150.0111277,0.866122495,29.98887233,0,0.992271445,0,0,0,9,1,0% -9/22/2018 10:00,133.1638319,42.56029699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32414731,0.742817313,0.946283887,-0.946283887,0.368329614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.864234753,149.7954386,0.864234753,30.20456143,0,0.992145349,0,0,0,9,2,0% -9/22/2018 11:00,124.055972,57.88273769,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165185169,1.010244353,1.446479486,-1.446479486,0.282791129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80327755,143.4442351,0.80327755,36.55576487,0,0.987755014,0,0,0,9,3,0% -9/22/2018 12:00,113.4258356,69.99643449,0,0,0,0,0,0,0,0,0,0,0,0,0,1.979654288,1.221668247,2.308007775,-2.308007775,0.135461115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687415065,133.4258356,0.687415065,46.57416445,0,0.977263741,0,0,0,9,4,0% -9/22/2018 13:00,101.9964004,80.22306693,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780173013,1.400156654,4.631371208,-4.631371208,0,#DIV/0!,0,0,0.207517447,1,0.212654176,0,0.937174323,0.975936286,0.724496596,1,0,0,0.032323618,0.312029739,0.91242744,0.636924036,0.961238037,0.922476074,0,0,0,0,0,0,-0.524554738,121.6382732,0.524554738,58.36172676,0,0.954681063,0,0,0,9,5,0% -9/22/2018 14:00,89.70455015,89.58781921,0.087473395,1.221075716,0.081176857,0.079388487,0,0.079388487,0.078729075,0.000659411,0.411198254,0.387541535,0.023656719,0.002447782,0.021208937,1.565639754,1.563602415,-182.702827,182.702827,0,0.928017682,0.000611945,0.019682269,1,0.967505224,0,0.005473314,0.961238037,1,0.709093015,0.984596419,0.075677382,0.001757619,0.115824807,0.294526684,0.724496596,0.448993192,0.963976901,0.925214938,0.000443352,0.018948462,0.076120734,0.02070608,0,0.012593075,-0.317377153,108.5043802,0.317377153,71.49561984,0,0.892458729,0.076120734,0.03194488,0.097028019,9,6,27% -9/22/2018 15:00,78.34813902,98.92747086,130.2389176,424.5381053,44.49729303,44.13733144,0,44.13733144,43.15553547,0.981795974,76.81437382,43.89468284,32.91969098,1.341757562,31.57793342,1.367432989,1.726610087,-4.244293785,4.244293785,0.744029326,0.341658959,0.816347644,26.2565464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,41.48274219,0.972098787,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.591441089,25.23879111,42.07418328,26.2108899,0,43.89468284,-0.103393976,95.93464455,0.103393976,84.06535545,0,0.566412834,42.07418328,51.07340161,75.50070317,9,7,79% -9/22/2018 16:00,66.91219526,109.0753485,337.685369,675.9844456,72.60393209,156.9463061,83.98603544,72.96027061,70.41465566,2.545614951,84.06500374,0,84.06500374,2.189276433,81.87572731,1.167838117,1.903723964,-1.821125341,1.821125341,0.841584465,0.215004672,2.229053845,71.69403398,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68524537,1.586123323,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614941923,68.91503248,69.3001873,70.5011558,83.98603544,0,0.124242556,82.86298353,-0.124242556,97.13701647,0.647561403,0,123.6863022,70.5011558,169.8278987,9,8,37% -9/22/2018 17:00,56.20736012,121.0493237,525.7541952,785.3472761,88.95278576,360.3620252,270.1281369,90.23388827,86.27053106,3.963357203,130.1574463,0,130.1574463,2.682254691,127.4751916,0.981003498,2.112709256,-0.939328869,0.939328869,0.690788387,0.169190824,2.945187203,94.72734447,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.92651592,1.943284393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.133778103,91.05552663,85.06029402,92.99881102,270.1281369,0,0.343960112,69.88166994,-0.343960112,110.1183301,0.904634307,0,329.427474,92.99881102,390.2933358,9,9,18% -9/22/2018 18:00,46.95496319,136.1781567,672.5739412,839.5793559,99.49972208,555.3234227,453.7538379,101.5695848,96.49943834,5.070146465,166.0736226,0,166.0736226,3.000283736,163.0733388,0.819518708,2.376757204,-0.432441385,0.432441385,0.604105522,0.147938711,3.359852417,108.0644031,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.75893067,2.173695353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.434201639,103.8756147,95.19313231,106.0493101,453.7538379,0,0.540453782,57.28546493,-0.540453782,122.7145351,0.957485151,0,529.6556943,106.0493101,599.0628467,9,10,13% -9/22/2018 19:00,40.30696146,155.7610947,765.9925141,865.9244217,105.6474355,714.5966153,606.3604646,108.2361507,102.4617755,5.774375128,188.9094134,0,188.9094134,3.185659978,185.7237534,0.703489189,2.718543948,-0.062700245,0.062700245,0.540876063,0.137922282,3.488874473,112.214196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.49015597,2.30799981,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.527677679,107.8645534,101.0178337,110.1725533,606.3604646,0,0.700246407,45.55322343,-0.700246407,134.4467766,0.978596563,0,694.4001004,110.1725533,766.505833,9,11,10% -9/22/2018 20:00,37.74464518,179.3443441,798.9265744,874.095017,107.7387476,820.6362928,710.1236199,110.5126729,104.4900269,6.022645986,196.9577184,0,196.9577184,3.248720755,193.7089976,0.658768333,3.1301493,0.256427574,-0.256427574,0.486301992,0.13485438,3.346040084,107.620151,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,100.4397883,2.353687128,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42419465,103.4485827,102.863983,105.8022698,710.1236199,0,0.8124101,35.66792251,-0.8124101,144.3320775,0.988454729,0,804.789033,105.8022698,874.0345026,9,12,9% -9/22/2018 21:00,40.08357512,203.0432522,768.9345384,866.675748,105.8357069,861.8259693,753.3850462,108.4409232,102.6443698,5.79655335,189.6284183,0,189.6284183,3.191337054,186.4370812,0.699590362,3.543773274,0.574426358,-0.574426358,0.431920997,0.137639424,2.956885995,95.10361783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.66567253,2.312112832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.142253838,91.4172149,100.8079264,93.72932773,753.3850462,0,0.869281329,29.62476758,-0.869281329,150.3752324,0.992481222,0,848.5284374,93.72932773,909.8724079,9,13,7% -9/22/2018 22:00,46.57459015,222.847629,678.2123279,841.3196744,99.88104925,831.3877171,729.405799,101.9819181,96.8692671,5.112651006,167.4522131,0,167.4522131,3.011782157,164.440431,0.812879946,3.889424856,0.940097442,-0.940097442,0.369387559,0.147271061,2.363366498,76.01399059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.11442414,2.18202592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.712250982,73.06753909,94.82667512,75.24956501,729.405799,0,0.866978179,29.8906392,-0.866978179,150.1093608,0.992328422,0,818.6367804,75.24956501,867.8861157,9,14,6% -9/22/2018 23:00,55.73877679,238.1558402,533.5977116,788.7596271,89.55220402,726.3544582,635.4800986,90.8743596,86.85187465,4.022484943,132.0772723,0,132.0772723,2.700329364,129.376943,0.972825176,4.156603544,1.436822335,-1.436822335,0.284442599,0.167827189,1.627226237,52.33718934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.48532549,1.956379432,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.17891987,50.30849714,84.66424536,52.26487657,635.4800986,0,0.805670165,36.32497353,-0.805670165,143.6750265,0.987939864,0,712.4803676,52.26487657,746.686684,9,15,5% -9/22/2018 0:00,66.40172212,250.2360193,346.9528821,683.0103272,73.52917047,544.9280593,471.0005872,73.92747207,71.31199469,2.615477379,86.33991892,0,86.33991892,2.217175783,84.12274314,1.15892868,4.367442444,2.289077682,-2.289077682,0.138698351,0.211928404,0.84017669,27.02297042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.54780178,1.606336308,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.608705151,25.97550704,69.15650693,27.58184335,471.0005872,0,0.689595118,46.4019325,-0.689595118,133.5980675,0.977493686,0,529.5566072,27.58184335,547.608372,9,16,3% -9/22/2018 1:00,77.82715066,260.4294228,139.3514731,441.614481,46.23193431,278.5978377,232.7094765,45.88836118,44.83787092,1.050490267,35.1814414,0,35.1814414,1.394063397,33.78737801,1.358340026,4.545350898,4.559227492,-4.559227492,0,0.331764949,0.348515849,11.20946773,0.199692766,1,0.215916301,0,0.93672527,0.975487234,0.724496596,1,43.39170385,1.009994186,0.031210101,0.312029739,0.915307844,0.639804439,0.961238037,0.922476074,0.242155948,10.77496675,43.6338598,11.78496094,186.2390776,0,0.526951643,58.20027991,-0.526951643,121.7997201,0.955114633,0,221.5135281,11.78496094,229.2265493,9,17,3% -9/22/2018 2:00,89.26330199,269.7659131,0.410351666,3.37458805,0.366963063,1.485848772,1.126857595,0.358991177,0.355897773,0.003093404,0.110559803,0,0.110559803,0.01106529,0.099494512,1.557938521,4.708303394,73.18746859,-73.18746859,0,0.894264831,0.002766323,0.088974443,0.922991862,1,0.013662691,0,0.960010916,0.998772879,0.724496596,1,0.342728097,0.008016765,0.109654514,0.312029739,0.736474101,0.460970697,0.961238037,0.922476074,0.001978635,0.085525619,0.344706732,0.093542384,0.086777205,0,0.333924491,70.49284996,-0.333924491,109.50715,0.90026555,0,0.42282926,0.093542384,0.48405088,9,18,14% -9/22/2018 3:00,101.5132504,279.0820869,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771740453,4.870901299,-4.290395856,4.290395856,0.736145408,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.105327877,83.95394273,-0.105327877,96.04605727,0.575291864,0,0,0,0,9,19,0% -9/22/2018 4:00,113.0019062,289.2097338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972255325,5.047662084,-1.825232984,1.825232984,0.842286913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.123256485,97.08008112,0.123256485,82.91991888,0,0.644341831,0,0,0,9,20,0% -9/22/2018 5:00,123.7321819,301.1648369,0,0,0,0,0,0,0,0,0,0,0,0,0,2.159533964,5.256317996,-0.939126611,0.939126611,0.690753799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.343456025,110.0875743,0.343456025,69.91242573,0,0.904420955,0,0,0,9,21,0% -9/22/2018 6:00,133.0031101,316.2746761,0,0,0,0,0,0,0,0,0,0,0,0,0,2.321342186,5.520034438,-0.431423222,0.431423222,0.603931406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.540267709,122.7018648,0.540267709,57.29813517,0,0.957453288,0,0,0,9,22,0% -9/22/2018 7:00,139.6686046,335.8401373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437677012,5.861516156,-0.061586365,0.061586365,0.540685578,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700283449,134.4497496,0.700283449,45.55025043,0,0.97860034,0,0,0,9,23,0% -9/23/2018 8:00,142.2489543,359.416289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48271261,6.272997628,0.257403949,-0.257403949,0.486135022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812603878,144.3511231,0.812603878,35.64887691,0,0.988469405,0,0,0,9,0,0% -9/23/2018 9:00,139.9256927,23.12548793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.442164046,0.403615905,0.575119693,-0.575119693,0.43180243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869581111,150.4099984,0.869581111,29.59000162,0,0.992501051,0,0,0,9,1,0% -9/23/2018 10:00,133.4449353,42.94919757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.329053492,0.749604909,0.940308627,-0.940308627,0.369351444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867339952,150.1509808,0.867339952,29.84901915,0,0.992352477,0,0,0,9,2,0% -9/23/2018 11:00,124.2855679,58.27699747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169192372,1.017125484,1.436144432,-1.436144432,0.284558527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.806042043,143.7110113,0.806042043,36.28898869,0,0.987968496,0,0,0,9,3,0% -9/23/2018 12:00,113.6207492,70.37602069,0,0,0,0,0,0,0,0,0,0,0,0,0,1.983056171,1.228293275,2.286602755,-2.286602755,0.139121589,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689875003,133.620215,0.689875003,46.37978495,0,0.977523102,0,0,0,9,4,0% -9/23/2018 13:00,102.1718938,80.58941942,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78323595,1.406550711,4.557235007,-4.557235007,0,#DIV/0!,0,0,0.199474468,1,0.216007794,0,0.936712642,0.975474606,0.724496596,1,0,0,0.031178927,0.312029739,0.915388624,0.63988522,0.961238037,0.922476074,0,0,0,0,0,0,-0.52676722,121.787288,0.52676722,58.212712,0,0.955081413,0,0,0,9,5,0% -9/23/2018 14:00,89.84679371,89.94912063,0.036184727,0.8558878,0.033896125,0.033146808,0,0.033146808,0.032874032,0.000272776,0.282809769,0.27301427,0.009795499,0.001022093,0.008773406,1.568122373,1.569908314,-351.5369531,351.5369531,0,0.936752263,0.000255523,0.008218508,1,0.983234561,0,0.002844643,0.961238037,1,0.716461741,0.991965145,0.03159977,0.000737012,0.115824807,0.302899034,0.724496596,0.448993192,0.962674633,0.923912669,0.000185126,0.007906408,0.031784896,0.00864342,0,0.004577204,-0.318983714,108.6014754,0.318983714,71.39852462,0,0.893252186,0.031784896,0.012732018,0.040117746,9,6,26% -9/23/2018 15:00,78.5219263,99.29332909,127.4165365,420.196011,43.8005069,43.44027969,0,43.44027969,42.47976001,0.960519673,76.47240977,44.25804842,32.21436135,1.32074689,30.89361446,1.370466149,1.732995518,-4.295050023,4.295050023,0.735349498,0.343758417,0.793701742,25.52817634,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.83316112,0.956876626,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.57503421,24.53865411,41.40819533,25.49553074,0,44.25804842,-0.10532715,96.04601541,0.10532715,83.95398459,0,0.57528859,41.40819533,50.95668103,74.75832393,9,7,81% -9/23/2018 16:00,67.10551574,109.4540938,334.441825,674.5316271,72.02523276,154.8644517,82.48988172,72.37456999,69.85340624,2.521163746,83.26111901,0,83.26111901,2.171826512,81.0892925,1.171212196,1.910334316,-1.828388131,1.828388131,0.842826475,0.215359526,2.210241959,71.08897907,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.14575108,1.573480915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601312776,68.33343068,68.74706386,69.9069116,82.48988172,0,0.122292089,82.97559593,-0.122292089,97.02440407,0.641142809,0,121.6348583,69.9069116,167.3875338,9,8,38% -9/23/2018 17:00,56.43471921,121.4429573,522.2333387,784.7042763,88.38075984,357.95149,268.2989207,89.65256934,85.71575384,3.9368155,129.2865252,0,129.2865252,2.665005999,126.6215192,0.984971663,2.119579458,-0.939366547,0.939366547,0.69079483,0.16923615,2.925540203,94.09542939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.39324295,1.930787775,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.119543918,90.44810583,84.51278687,92.3788936,268.2989207,0,0.341910869,70.00666266,-0.341910869,109.9933373,0.903763058,0,326.9914398,92.3788936,387.4515781,9,9,18% -9/23/2018 18:00,47.23308641,136.5682856,668.7417295,839.1966874,98.91250419,552.645715,451.6745302,100.9711849,95.92992724,5.041257634,165.1267517,0,165.1267517,2.98257695,162.1441747,0.824372874,2.383566238,-0.429926967,0.429926967,0.603675531,0.147908378,3.338800936,107.3873152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.21149493,2.160866847,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.418949913,103.224772,94.63044485,105.3856389,451.6745302,0,0.538222489,57.43728222,-0.538222489,122.5627178,0.957101615,0,526.9288672,105.3856389,595.9016601,9,10,13% -9/23/2018 19:00,40.64678501,156.082526,761.8096128,865.6069328,105.0393003,711.6017154,603.9868948,107.6148205,101.8719779,5.742842651,187.876883,0,187.876883,3.167322458,184.7095606,0.709420229,2.724153983,-0.058653782,0.058653782,0.540184077,0.137881301,3.466288482,111.4877529,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.92322001,2.294714339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.511314205,107.1662687,100.4345342,109.460983,603.9868948,0,0.697761157,45.75234385,-0.697761157,134.2476562,0.978342242,0,691.3404272,109.460983,762.9804513,9,11,10% -9/23/2018 20:00,38.13285911,179.4925611,794.3723387,873.7365726,107.1077318,817.2576483,707.3912955,109.8663528,103.8780385,5.988314233,195.8344637,0,195.8344637,3.229693301,192.6047704,0.665543945,3.132736174,0.261951208,-0.261951208,0.485357395,0.134833159,3.322007039,106.8471657,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.85152184,2.339901802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.406782791,102.7055598,102.2583046,105.0454616,707.3912955,0,0.809616214,35.94154863,-0.809616214,144.0584514,0.988242344,0,801.3323363,105.0454616,870.08249,9,12,9% -9/23/2018 21:00,40.48066175,202.9869494,764.0139209,866.1737188,105.1804309,858.0006656,750.2323531,107.7683125,102.0088528,5.759459657,188.4155986,0,188.4155986,3.171578065,185.2440206,0.706520831,3.542790606,0.581941452,-0.581941452,0.43063584,0.137668213,2.931675468,94.29276063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.05478942,2.297797512,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123988897,90.63778812,100.1787783,92.93558563,750.2323531,0,0.866145366,29.98625043,-0.866145366,150.0137496,0.992272969,0,844.6140631,92.93558563,905.4385452,9,13,7% -9/23/2018 22:00,46.95002202,222.6633244,672.9596524,840.5088439,99.19801866,827.0512157,725.7713292,101.2798865,96.20683239,5.073054119,166.1580453,0,166.1580453,2.991186264,163.166859,0.819432468,3.886208133,0.950945899,-0.950945899,0.367532363,0.147405596,2.337468696,75.18102827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.4776667,2.167104266,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693488113,72.26686402,94.17115481,74.43396828,725.7713292,0,0.863490414,30.28922533,-0.863490414,149.7107747,0.992095478,0,814.2056082,74.43396828,862.9211518,9,14,6% -9/23/2018 23:00,56.08629704,237.9200058,528.0838918,787.275136,88.82876799,721.4042998,631.2731275,90.13117233,86.15025289,3.98091944,130.7185686,0,130.7185686,2.678515098,128.0400535,0.978890549,4.152487457,1.454452275,-1.454452275,0.281427702,0.168209577,1.601517697,51.51031431,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.81089996,1.940575071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.16029412,49.5136734,83.97119408,51.45424848,631.2731275,0,0.80184563,36.69328975,-0.80184563,143.3067102,0.987643858,0,707.4442212,51.45424848,741.1199977,9,15,5% -9/23/2018 0:00,66.72709331,249.9853784,341.3206577,679.8214629,72.71561439,539.0960127,466.0000231,73.09598962,70.52297033,2.573019292,84.94978921,0,84.94978921,2.192644066,82.75714514,1.164607479,4.363067936,2.324999631,-2.324999631,0.132555336,0.213041938,0.816566786,26.26359476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78936155,1.588563162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.591599857,25.24556627,68.38096141,26.83412943,466.0000231,0,0.685474126,46.72709412,-0.685474126,133.2729059,0.977057787,0,523.6899125,26.83412943,541.2523135,9,16,3% -9/23/2018 1:00,78.13801717,260.1762659,134.1065858,433.032029,45.09474124,271.0525461,226.3066256,44.7459205,43.73496841,1.010952091,33.8754672,0,33.8754672,1.35977283,32.51569437,1.363765671,4.540932475,4.686098536,-4.686098536,0,0.336260452,0.339943208,10.9337421,0.213351846,1,0.21024361,0,0.937504661,0.976266625,0.724496596,1,42.33530457,0.985150787,0.033149008,0.312029739,0.910298659,0.634795255,0.961238037,0.922476074,0.235775911,10.50992879,42.57108048,11.49507958,178.0236892,0,0.522609439,58.49254918,-0.522609439,121.5074508,0.954326259,0,212.4637618,11.49507958,219.9870615,9,17,4% -9/23/2018 2:00,89.52911658,269.5125816,0.184335598,1.927443021,0.168495151,0.801032044,0.636228043,0.164804001,0.163414401,0.0013896,0.04977505,0,0.04977505,0.00508075,0.0446943,1.562577861,4.703881924,114.6864801,-114.6864801,0,0.914067348,0.001270188,0.0408536,0.950205129,1,0.008719203,0,0.960460124,0.999222087,0.724496596,1,0.15726843,0.003680986,0.111871241,0.312029739,0.732135769,0.456632365,0.961238037,0.922476074,0.000912525,0.039270034,0.158180954,0.042951021,0.031680894,0,0.330089158,70.72581291,-0.330089158,109.2741871,0.898525773,0,0.186647053,0.042951021,0.214757638,9,18,15% -9/23/2018 3:00,101.8253189,278.8283032,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777187076,4.866471938,-4.184265955,4.184265955,0.75429469,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.100704086,84.22028368,-0.100704086,95.77971632,0.553495817,0,0,0,0,9,19,0% -9/23/2018 4:00,113.3265221,288.9574912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97792094,5.043259619,-1.803298172,1.803298172,0.838535839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.127870123,97.34653217,0.127870123,82.65346783,0,0.658978246,0,0,0,9,20,0% -9/23/2018 5:00,124.0781864,300.9255676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.165572882,5.252141958,-0.93175662,0.93175662,0.689493456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.347968348,110.3631005,0.347968348,69.63689953,0,0.90630877,0,0,0,9,21,0% -9/23/2018 6:00,133.3769624,316.0836961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32786714,5.516701209,-0.429045737,0.429045737,0.603524832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.544594574,122.9969626,0.544594574,57.0030374,0,0.958188582,0,0,0,9,22,0% -9/23/2018 7:00,140.0652346,335.7736356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.444599511,5.860355482,-0.061696358,0.061696358,0.540704388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704353518,134.7773394,0.704353518,45.22266059,0,0.979012919,0,0,0,9,23,0% -9/24/2018 8:00,142.6387312,359.5557551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4895155,6.275431771,0.255557469,-0.255557469,0.486450789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816363521,144.7224077,0.816363521,35.27759226,0,0.988752775,0,0,0,9,0,0% -9/24/2018 9:00,140.268029,23.44480662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448138941,0.409189068,0.571551083,-0.571551083,0.432412698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872998087,150.808928,0.872998087,29.19107197,0,0.992726106,0,0,0,9,1,0% -9/24/2018 10:00,133.7251257,43.34125267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333943737,0.756447561,0.934377358,-0.934377358,0.370365751,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870405612,150.5058085,0.870405612,29.4941915,0,0.992555517,0,0,0,9,2,0% -9/24/2018 11:00,124.514362,58.67308413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173185583,1.0240385,1.425903255,-1.425903255,0.286309872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808771921,143.9761178,0.808771921,36.02388224,0,0.988177874,0,0,0,9,3,0% -9/24/2018 12:00,113.8152303,70.75648735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986450508,1.234933671,2.26547471,-2.26547471,0.142734697,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.692307735,133.8130648,0.692307735,46.18693517,0,0.977777782,0,0,0,9,4,0% -9/24/2018 13:00,102.3474098,80.95604478,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786299283,1.412949531,4.484985642,-4.484985642,0,#DIV/0!,0,0,0.191477544,1,0.219377757,0,0.936246245,0.975008209,0.724496596,1,0,0,0.030032838,0.312029739,0.918363759,0.642860355,0.961238037,0.922476074,0,0,0,0,0,0,-0.528961875,121.9353397,0.528961875,58.0646603,0,0.955475229,0,0,0,9,5,0% -9/24/2018 14:00,89.98836276,90.31023288,0.00215915,0.585814839,0.002040166,0.001994924,0,0.001994924,0.001978647,1.63E-05,0.188376672,0.187791643,0.000585029,6.15E-05,0.000523511,1.570593219,1.576210912,-4617.375549,4617.375549,0,0.944893212,1.54E-05,0.000494662,1,0.99873281,0,0.000216573,0.961238037,1,0.723882655,0.999386059,0.001901951,4.46E-05,0.115824807,0.311332019,0.724496596,0.448993192,0.961348414,0.922586451,1.11E-05,0.000475518,0.001913094,0.000520072,0,0.000237968,-0.320564845,108.6970877,0.320564845,71.30291227,0,0.894025317,0.001913094,0.000732821,0.00239271,9,6,25% -9/24/2018 15:00,78.69663627,99.65851398,124.5849443,415.7434124,43.09769135,42.73731088,0,42.73731088,41.79813694,0.939173935,76.10086562,44.59424908,31.50661654,1.299554408,30.20706213,1.373515413,1.739369197,-4.347541933,4.347541933,0.726372853,0.345930173,0.771088792,24.80086614,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,40.1779591,0.941522745,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.558651205,23.83953588,40.7366103,24.78105862,0,44.59424908,-0.107263874,96.15761378,0.107263874,83.84238622,0,0.583859835,40.7366103,50.81784954,73.99587647,9,7,82% -9/24/2018 16:00,67.30021734,109.8314861,331.1693179,673.0355209,71.44319896,152.7694388,80.98402165,71.78541712,69.28892292,2.496494205,82.45011132,0,82.45011132,2.154276046,80.29583527,1.17461038,1.916921055,-1.835819247,1.835819247,0.844097271,0.215730127,2.191248323,70.47807844,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60314824,1.560765662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.587551951,67.74620976,68.19070019,69.30697543,80.98402165,0,0.120326519,83.08905269,-0.120326519,96.91094731,0.634464005,0,119.5721469,69.30697543,164.9321762,9,8,38% -9/24/2018 17:00,56.66378088,121.8341511,518.6740685,784.0369025,87.80575926,355.5123085,266.4442326,89.06807587,85.15809165,3.909984217,128.4062005,0,128.4062005,2.64766761,125.7585329,0.988969543,2.126407078,-0.939428874,0.939428874,0.690805489,0.169288894,2.905699631,93.45728841,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.85719684,1.918226171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105169491,89.83470044,83.96236633,91.75292661,266.4442326,0,0.339836342,70.13309657,-0.339836342,109.8669034,0.902870356,0,324.5269654,91.75292661,384.5774208,9,9,19% -9/24/2018 18:00,47.51292895,136.9543964,664.8652729,838.7962364,98.32231321,549.9286568,449.5590888,100.369568,95.35753269,5.012035268,164.1690635,0,164.1690635,2.964780514,161.204283,0.829257047,2.390305142,-0.427401211,0.427401211,0.603243601,0.147883063,3.317552115,106.70388,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.66128753,2.14797339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.403555214,102.5678281,94.06484274,104.7158015,449.5590888,0,0.535957446,57.59113362,-0.535957446,122.4088664,0.956709011,0,524.1620742,104.7158015,592.696472,9,10,13% -9/24/2018 19:00,40.98778618,156.3988102,757.5799033,865.2741764,104.4281966,708.5599777,601.5697192,106.9902585,101.2793012,5.710957314,186.8329139,0,186.8329139,3.148895426,183.6840185,0.715371822,2.729674183,-0.054577479,0.054577479,0.539486988,0.137844465,3.443513991,110.7552469,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.35351663,2.281364017,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.494814164,106.4621561,99.8483308,108.7435202,601.5697192,0,0.695235956,45.95397717,-0.695235956,134.0460228,0.97808197,0,688.2328271,108.7435202,759.4032862,9,11,10% -9/24/2018 20:00,38.52138697,179.6373519,789.7720324,873.3632295,106.4738343,813.8278874,704.6109969,109.2168905,103.2632553,5.953635181,194.6999519,0,194.6999519,3.210578951,191.4893729,0.672325035,3.13526325,0.267523555,-0.267523555,0.484404467,0.134815909,3.297807519,106.068826,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,99.26056884,2.32605352,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.389250322,101.95739,101.6498192,104.2834436,704.6109969,0,0.806778867,36.21759864,-0.806778867,143.7824014,0.988025149,0,797.8232044,104.2834436,866.0746325,9,12,9% -9/24/2018 21:00,40.87772135,202.9306821,759.0512134,865.6551299,104.5224455,854.1231579,747.0304011,107.0927568,101.3707081,5.722048671,187.192492,0,187.192492,3.151737379,184.0407547,0.713450828,3.541808556,0.589535224,-0.589535224,0.429337229,0.137701441,2.906333316,93.47766988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.44138048,2.283423002,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.105628594,89.85429189,99.54700907,92.13771489,747.0304011,0,0.862965372,30.3488169,-0.862965372,149.6511831,0.992060248,0,840.6461737,92.13771489,900.9484654,9,13,7% -9/24/2018 22:00,47.32554622,222.4805263,667.671932,839.6763752,98.51247459,822.6641137,722.0889607,100.5751531,95.54196001,5.033193049,164.8553045,0,164.8553045,2.970514581,161.88479,0.825986602,3.883017705,0.961934509,-0.961934509,0.3656532,0.147546227,2.311487251,74.34537567,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.83856607,2.152127702,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.674664644,71.46360295,93.51323072,73.61573066,722.0889607,0,0.85996103,30.68779235,-0.85996103,149.3122077,0.99185783,0,809.7228207,73.61573066,857.9028441,9,14,6% -9/24/2018 23:00,56.43396694,237.6854857,522.5450435,785.7552588,88.10279387,716.4060347,627.0206998,89.38533483,85.44616957,3.939165262,129.3537199,0,129.3537199,2.6566243,126.6970956,0.984958533,4.148394309,1.472383524,-1.472383524,0.278361278,0.168603252,1.575791817,50.68288158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.13410829,1.924715262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.141655807,48.71831359,83.2757641,50.64302885,627.0206998,0,0.797984732,37.0619129,-0.797984732,142.9380871,0.98734216,0,702.359736,50.64302885,735.5045855,9,15,5% -9/24/2018 0:00,67.05249859,249.7354497,335.6777475,676.5530958,71.89813157,533.2128835,460.9522652,72.26061828,69.73013763,2.530480651,83.55695016,0,83.55695016,2.167993943,81.38895622,1.170286872,4.358705856,2.361841801,-2.361841801,0.126254954,0.214187959,0.79305421,25.5073495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.02726061,1.570704231,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.574565076,24.51863456,67.60182568,26.08933879,460.9522652,0,0.681324597,47.05276138,-0.681324597,132.9472386,0.97661354,0,517.7740494,26.08933879,534.8489998,9,16,3% -9/24/2018 1:00,78.44863989,259.9232265,128.8893562,424.2027194,43.94434745,263.4337437,219.842858,43.59088564,42.61926323,0.97162241,32.57580085,0,32.57580085,1.325084213,31.25071664,1.36918706,4.536516106,4.819506505,-4.819506505,0,0.340946287,0.331271053,10.65481581,0.227220666,1,0.204587119,0,0.938274826,0.977036789,0.724496596,1,41.26521811,0.960019002,0.03509443,0.312029739,0.905302418,0.629799014,0.961238037,0.922476074,0.229371773,10.24181423,41.49458989,11.20183323,169.8900175,0,0.518249525,58.7850938,-0.518249525,121.2149062,0.953521378,0,203.4883535,11.20183323,210.8197293,9,17,4% -9/24/2018 2:00,89.78992386,269.2588078,0.055265635,1.025923216,0.051504075,0.385150352,0.334782699,0.050367653,0.049951037,0.000416616,0.014952831,0,0.014952831,0.001553038,0.013399793,1.567129806,4.699452735,257.4741174,-257.4741174,0,0.931936728,0.000388259,0.012487759,0.977528349,1,0.003883866,0,0.960893796,0.999655759,0.724496596,1,0.048041151,0.001125171,0.114056762,0.312029739,0.727897276,0.452393872,0.961238037,0.922476074,0.000280209,0.012003709,0.048321361,0.01312888,0.00752312,0,0.326323348,70.95423107,-0.326323348,109.0457689,0.896777743,0,0.055067927,0.01312888,0.063660516,9,18,16% -9/24/2018 3:00,102.1367695,278.5734829,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782622915,4.862024485,-4.083669632,4.083669632,0.771497674,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.096083405,84.48632037,-0.096083405,95.51367963,0.529618776,0,0,0,0,9,19,0% -9/24/2018 4:00,113.6503578,288.7035043,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98357294,5.038826711,-1.781976314,1.781976314,0.834889587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.132469497,97.61231852,0.132469497,82.38768148,0,0.672554618,0,0,0,9,20,0% -9/24/2018 5:00,124.423391,300.683728,0,0,0,0,0,0,0,0,0,0,0,0,0,2.171597839,5.247921061,-0.924540453,0.924540453,0.688259419,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.352456276,110.6376257,0.352456276,69.36237428,0,0.908138432,0,0,0,9,21,0% -9/24/2018 6:00,133.7502419,315.8895843,0,0,0,0,0,0,0,0,0,0,0,0,0,2.334382096,5.513313319,-0.426717296,0.426717296,0.603126645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.548888634,123.290802,0.548888634,56.70919804,0,0.95890684,0,0,0,9,22,0% -9/24/2018 7:00,140.4617148,335.7050832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.451519396,5.859159017,-0.061818858,0.061818858,0.540725337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708384672,135.1036393,0.708384672,44.89636065,0,0.97941688,0,0,0,9,23,0% -9/25/2018 8:00,143.0284248,359.6967175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.496316936,6.27789203,0.253716794,-0.253716794,0.486765562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820080859,145.0928889,0.820080859,34.90711109,0,0.989030402,0,0,0,9,0,0% -9/25/2018 9:00,140.6097506,23.76787043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454103109,0.414827595,0.568003146,-0.568003146,0.433019431,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876372319,151.2078075,0.876372319,28.79219246,0,0.992946623,0,0,0,9,1,0% -9/25/2018 10:00,134.0043661,43.73632518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3388174,0.763342877,0.928487971,-0.928487971,0.371372895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.873431075,150.8598342,0.873431075,29.14016582,0,0.992754498,0,0,0,9,2,0% -9/25/2018 11:00,124.7423466,59.0708518,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177164665,1.030980856,1.41575254,-1.41575254,0.288045746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811466954,144.2395054,0.811466954,35.76049463,0,0.988383196,0,0,0,9,3,0% -9/25/2018 12:00,114.0092903,71.13769635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989837493,1.241587024,2.244614434,-2.244614434,0.146302014,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694713409,134.004384,0.694713409,45.99561602,0,0.978027875,0,0,0,9,4,0% -9/25/2018 13:00,102.5229692,81.32281232,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789363372,1.419350832,4.414538759,-4.414538759,0,#DIV/0!,0,0,0.183524771,1,0.222764753,0,0.935775005,0.974536969,0.724496596,1,0,0,0.028885135,0.312029739,0.921353449,0.645850044,0.961238037,0.922476074,0,0,0,0,0,0,-0.531139157,122.0824555,0.531139157,57.91754455,0,0.955862712,0,0,0,9,5,0% -9/25/2018 14:00,90.12962326,90.67102721,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57305868,1.582507961,413.5610872,-413.5610872,0,#DIV/0!,0,0,0.985953667,1,0.002418018,0,0.961024148,0.999786111,0.724496596,1,0,0,0.114722731,0.312029739,0.726613383,0.451109979,0.961238037,0.922476074,0,0,0,0,0,0,-0.322126889,108.791599,0.322126889,71.20840099,0,0.894781663,0,0,0,9,6,0% -9/25/2018 15:00,78.87228577,100.0228923,121.7443572,411.1766302,42.38866571,42.02825143,0,42.02825143,41.11049104,0.91776039,75.69900304,44.90249946,30.79650359,1.278174669,29.51832892,1.376581075,1.745728799,-4.401878295,4.401878295,0.717080788,0.348177662,0.748513386,24.07476349,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,39.5169677,0.926033196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.5422954,23.14157839,40.0592631,24.06761159,0,44.90249946,-0.109204892,96.26948311,0.109204892,83.73051689,0,0.592145053,40.0592631,50.65640451,73.21286673,9,7,83% -9/25/2018 16:00,67.49630655,110.2073828,327.8677356,671.4948721,70.85778223,150.6608827,79.46811861,71.19276414,68.72115866,2.471605483,81.631952,0,81.631952,2.136623572,79.49532843,1.178032782,1.92348169,-1.843429807,1.843429807,0.845398753,0.216116972,2.17207336,69.86134573,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05739164,1.547976504,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.573659756,67.15338282,67.6310514,68.70135932,79.46811861,0,0.118345086,83.20339758,-0.118345086,96.79660242,0.627506751,0,117.4978323,68.70135932,162.461498,9,8,38% -9/25/2018 17:00,56.89452995,122.2227544,515.0765012,783.3446878,87.22778318,353.0440241,264.5636162,88.48040792,84.59754368,3.882864235,127.5165006,0,127.5165006,2.630239499,124.8862611,0.992996874,2.133189486,-0.939519998,0.939519998,0.690821072,0.16934918,2.88566809,92.81300519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.31837681,1.905599563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090656708,89.2153909,83.40903352,91.12099047,264.5636162,0,0.337735891,70.26100778,-0.337735891,109.7389922,0.901955326,0,322.0335961,91.12099047,381.6704619,9,9,19% -9/25/2018 18:00,47.79444367,137.3363522,660.9450492,838.3778219,97.72917784,547.1720008,447.4072353,99.76476551,94.78228254,4.982482965,163.2006746,0,163.2006746,2.946895294,160.2537793,0.834170406,2.396971529,-0.424866659,0.424866659,0.602810167,0.147862788,3.296110603,106.0142473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.1083352,2.135015609,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.388020911,101.9049269,93.49635611,104.0399426,447.4072353,0,0.533658243,57.74703757,-0.533658243,122.2529624,0.956307078,0,521.3550621,104.0399426,589.4471237,9,10,13% -9/25/2018 19:00,41.32988621,156.7098628,753.3042953,864.926114,103.8141802,705.471516,599.1089904,106.3625256,100.6837996,5.678725975,185.7777284,0,185.7777284,3.130380567,182.6473479,0.721342594,2.735103077,-0.050473321,0.050473321,0.538785136,0.137811746,3.420557658,110.0168924,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.7810979,2.267950064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.478182379,105.7524217,99.25928028,108.0203717,599.1089904,0,0.692670716,46.15810725,-0.692670716,133.8418928,0.977815629,0,685.0774145,108.0203717,755.7745874,9,11,10% -9/25/2018 20:00,38.9101321,179.778644,785.1270313,872.9750425,105.8371384,810.3475846,701.7832072,108.5643774,102.6457582,5.918619201,193.5545188,0,193.5545188,3.191380221,190.3631386,0.679109918,3.137729263,0.273142865,-0.273142865,0.483443509,0.134802566,3.273450076,105.2854068,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.6670071,2.312144106,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.371603437,101.2043378,101.0386105,103.5164819,701.7832072,0,0.803898363,36.49600218,-0.803898363,143.5039978,0.987803083,0,794.262226,103.5164819,862.011693,9,12,9% -9/25/2018 21:00,41.27463771,202.8743308,754.0482577,865.1201114,103.8618627,850.1945423,743.7801637,106.4143786,100.7300443,5.684334278,185.9595485,0,185.9595485,3.13181837,182.8277301,0.720378326,3.54082504,0.597206093,-0.597206093,0.428025433,0.137739013,2.880869754,92.65867421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.82555006,2.268991748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.08718033,89.06704209,98.91273039,91.33603384,743.7801637,0,0.85974208,30.71236408,-0.85974208,149.2876359,0.991843023,0,836.6258967,91.33603384,896.4035041,9,13,7% -9/25/2018 22:00,47.70102748,222.2991328,662.3514425,838.8224572,97.82455825,818.2280487,718.3601769,99.86787183,94.87478688,4.993084952,163.544547,0,163.544547,2.949771365,160.5947757,0.832539986,3.879851792,0.973062213,-0.973062213,0.363750251,0.147692829,2.285433727,73.50740478,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19725389,2.137099313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655788955,70.65811347,92.85304284,72.79521278,718.3601769,0,0.856391207,31.0862291,-0.856391207,148.9137709,0.991615468,0,805.1901057,72.79521278,852.8331166,9,14,6% -9/25/2018 23:00,56.78164357,237.4522215,516.9838214,784.2001493,87.37445139,711.3618037,622.724772,88.63703172,84.7397893,3.897242421,127.983375,0,127.983375,2.634662087,125.3487129,0.991026635,4.144323081,1.490617826,-1.490617826,0.275243028,0.169008096,1.550061235,49.85529763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.45510871,1.908803713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.123014088,47.92280842,82.5781228,49.83161213,622.724772,0,0.794089076,37.43069894,-0.794089076,142.5693011,0.987034772,0,697.2291259,49.83161213,729.8429195,9,15,5% -9/25/2018 0:00,67.37779355,249.4862038,330.0271762,673.2046943,71.07689841,527.2811134,455.8595614,71.42155193,68.93366767,2.487884258,82.16214051,0,82.16214051,2.143230733,80.01890978,1.17596434,4.354355695,2.39962728,-2.39962728,0.119793256,0.215366805,0.769653293,24.75469557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.26166339,1.55276337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.557611191,23.79515497,66.81927458,25.34791834,455.8595614,0,0.677148519,47.37878193,-0.677148519,132.6212181,0.976160955,0,511.8115794,25.34791834,528.401285,9,16,3% -9/25/2018 1:00,78.7588695,259.6702898,123.7044748,415.1239144,42.78084488,255.7448834,213.3215023,42.42338114,41.49084456,0.932536584,31.28358244,0,31.28358244,1.290000318,29.99358213,1.374601588,4.532101527,4.95991716,-4.95991716,0,0.345831021,0.322500079,10.37271114,0.241298893,1,0.198949182,0,0.939035482,0.977797446,0.724496596,1,40.18156888,0.934600839,0.037045669,0.312029739,0.900321216,0.624817812,0.961238037,0.922476074,0.222943169,9.970644493,40.40451205,10.90524533,161.8472599,0,0.513874279,59.07776012,-0.513874279,120.9222399,0.952699936,0,194.5963863,10.90524533,201.7336513,9,17,4% -9/25/2018 2:00,90.04643609,269.0045807,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571606789,4.695015636,-1166.608181,1166.608181,0,#DIV/0!,0,0,1,0.99497568,0,0.000857186,0.961238037,1,0.722068788,0.997572192,0,0,0.115824807,0.30927067,0.724496596,0.448993192,0.961673934,0.922911971,0,0,0,0,0,0,0.322615804,71.17880842,-0.322615804,108.8211916,0.895016892,0,0,0,0,9,18,0% -9/25/2018 3:00,102.4474558,278.3176107,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788045414,4.857558673,-3.988224353,3.988224353,0.787819778,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.091468429,84.75190963,-0.091468429,95.24809037,0.503363302,0,0,0,0,9,19,0% -9/25/2018 4:00,113.9732642,288.447742,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989208719,5.034362817,-1.761252582,1.761252582,0.83134562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.137052028,97.8772955,0.137052028,82.1227045,0,0.685175044,0,0,0,9,20,0% -9/25/2018 5:00,124.7676448,300.4392515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.177606202,5.243654141,-0.917478343,0.917478343,0.687051727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.356917361,110.9110009,0.356917361,69.08899912,0,0.90991155,0,0,0,9,21,0% -9/25/2018 6:00,134.122804,315.6922126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340884531,5.509868533,-0.424439545,0.424439545,0.602737127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.55314768,123.5832261,0.55314768,56.41677389,0,0.959608226,0,0,0,9,22,0% -9/25/2018 7:00,140.8579244,335.6343067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458434557,5.857923735,-0.061955558,0.061955558,0.540748714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.712375031,135.4284844,0.712375031,44.57151558,0,0.979812251,0,0,0,9,23,0% -9/26/2018 8:00,143.4179454,359.8390503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.503115354,6.280376205,0.251880281,-0.251880281,0.487079625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823754408,145.4624099,0.823754408,34.53759012,0,0.989302298,0,0,0,9,0,0% -9/26/2018 9:00,140.9507928,24.09457164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460055418,0.420529607,0.564474156,-0.564474156,0.433622924,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879702762,151.6065285,0.879702762,28.39347145,0,0.99316262,0,0,0,9,1,0% -9/26/2018 10:00,134.282623,44.13427394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3436739,0.770288393,0.922638343,-0.922638343,0.37237324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.87641574,151.2129733,0.87641574,28.78702665,0,0.99294945,0,0,0,9,2,0% -9/26/2018 11:00,124.9695173,59.47015262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181129542,1.03794997,1.405688885,-1.405688885,0.289766733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814126967,144.5011296,0.814126967,35.49887038,0,0.988584518,0,0,0,9,3,0% -9/26/2018 12:00,114.202943,71.51950881,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993217371,1.248250908,2.224012925,-2.224012925,0.14982508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.697092228,134.1941761,0.697092228,45.80582388,0,0.97827348,0,0,0,9,4,0% -9/26/2018 13:00,102.698595,81.68959121,0,0,0,0,0,0,0,0,0,0,0,0,0,1.792428621,1.425752331,4.345814566,-4.345814566,0,#DIV/0!,0,0,0.175614255,1,0.226169496,0,0.93529879,0.974060753,0.724496596,1,0,0,0.027735594,0.312029739,0.924358317,0.648854913,0.961238037,0.922476074,0,0,0,0,0,0,-0.533299573,122.228666,0.533299573,57.77133402,0,0.956244065,0,0,0,9,5,0% -9/26/2018 14:00,90.89805204,91.03137496,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586470292,1.588797216,59.54508685,-59.54508685,0,#DIV/0!,0,0,0.906126696,1,0.016792418,0,0.959723477,0.99848544,0.724496596,1,0,0,0.108260208,0.312029739,0.739223161,0.463719757,0.961238037,0.922476074,0,0,0,0,0,0,-0.333925038,109.5071833,0.333925038,70.49281667,0,0.900265795,0,0,0,9,6,0% -9/26/2018 15:00,79.04889233,100.3863313,118.8950144,406.4918413,41.67324229,41.31292111,0,41.31292111,40.41664027,0.89628084,75.26603958,45.18196481,30.08407478,1.256602013,28.82747276,1.379663441,1.752072005,-4.458176667,4.458176667,0.707453199,0.35050454,0.725980472,23.35002753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.85001195,0.910403881,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.525970381,22.44493462,39.37598233,23.3553385,0,45.18196481,-0.111150976,96.38166852,0.111150976,83.61833148,0,0.600161394,39.37598233,50.47180948,72.4087722,9,7,84% -9/26/2018 16:00,67.69378998,110.5816419,324.5369682,669.9083758,70.26893231,148.5383987,77.9418372,70.59656149,68.15006474,2.446496751,80.80661286,0,80.80661286,2.118867574,78.68774529,1.181479518,1.930013744,-1.851231512,1.851231512,0.846732923,0.216520579,2.152717505,69.23879489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50843444,1.535112344,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.559636504,66.55496327,67.06807095,68.09007561,77.9418372,0,0.116347011,83.31867532,-0.116347011,96.68132468,0.6202511,0,115.4115812,68.09007561,159.9751739,9,8,39% -9/26/2018 17:00,57.1269508,122.6086185,511.4407663,782.627153,86.64683115,350.5461832,262.6566171,87.88956603,84.0341095,3.85545653,126.6174567,0,126.6174567,2.612721652,124.004735,0.997053383,2.139924083,-0.939644234,0.939644234,0.690842317,0.169417139,2.865448266,92.16266616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77678245,1.892907943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.076007515,88.59026029,82.85278996,90.48316823,262.6566171,0,0.335608873,70.39043253,-0.335608873,109.6095675,0.90101705,0,319.5108803,90.48316823,378.7303043,9,9,19% -9/26/2018 18:00,48.07758288,137.7140195,656.9815599,837.9412624,97.13312811,544.375515,445.2187046,99.15681042,94.20420591,4.952604509,162.2217077,0,162.2217077,2.928922196,159.2927855,0.839112118,2.403563066,-0.422325944,0.422325944,0.602375679,0.147847571,3.274481181,105.3185707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55266596,2.12199416,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.372350469,101.2362162,92.92501643,103.3582103,445.2187046,0,0.531324479,57.90501172,-0.531324479,122.0949883,0.955895546,0,518.5075931,103.3582103,586.1534746,9,10,13% -9/26/2018 19:00,41.67300625,157.0156026,748.9837315,864.5627121,103.1973089,702.336472,596.604787,105.731685,100.0855293,5.64615574,184.7115568,0,184.7115568,3.111779621,181.5997771,0.727331168,2.740439242,-0.04634336,0.04634336,0.538078871,0.137783111,3.397426295,109.2729082,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20601768,2.254473742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.461423785,105.0372758,98.66744146,107.2917495,596.604787,0,0.690065369,46.36471638,-0.690065369,133.6352836,0.977543096,0,681.8743322,107.2917495,752.0946364,9,11,10% -9/26/2018 20:00,39.29899826,179.9163663,780.4387505,872.5720754,105.19773,806.817354,698.9084467,107.9089073,102.0256303,5.88327696,192.3985104,0,192.3985104,3.172099699,189.2264107,0.685896912,3.14013297,0.278807314,-0.278807314,0.482474831,0.134793063,3.248943414,104.4971884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,98.07091661,2.298175434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.353848444,100.4466722,100.4247651,102.7448476,698.9084467,0,0.800975033,36.77668774,-0.800975033,143.2233123,0.987576082,0,790.6500303,102.7448476,857.8944782,9,12,9% -9/26/2018 21:00,41.67129533,202.8177774,749.0069374,864.5688071,103.1987971,846.2159632,740.4826599,105.7333032,100.0869726,5.646330676,184.7172282,0,184.7172282,3.111824495,181.6054037,0.727301307,3.539837997,0.604952388,-0.604952388,0.426700738,0.137780829,2.85529514,91.83610671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.20740503,2.254506253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.068651609,88.27635893,98.27605664,90.53086518,740.4826599,0,0.856476262,31.07678951,-0.856476262,148.9232105,0.991621266,0,832.5544092,90.53086518,891.8050498,9,13,7% -9/26/2018 22:00,48.07633122,222.1190414,657.0004996,837.9473001,97.13441388,813.7447133,714.5865131,99.1582002,94.20545291,4.952747284,162.2263386,0,162.2263386,2.928960966,159.2973776,0.839090272,3.876708604,0.984327818,-0.984327818,0.361823719,0.147845266,2.259319795,72.66749097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55386462,2.122022249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.636869501,69.85075637,92.19073412,71.97277862,714.5865131,0,0.852782165,31.48442509,-0.852782165,148.5155749,0.99136838,0,800.6092078,71.97277862,847.713952,9,14,6% -9/26/2018 23:00,57.12918426,237.220153,511.4029148,782.609997,86.64391407,706.2738085,618.3873569,87.88645157,84.03128038,3.855171189,126.6081912,0,126.6081912,2.612633691,123.9955575,0.997092364,4.140272721,1.509156747,-1.509156747,0.272072686,0.169423974,1.524338637,49.02797045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.77406299,1.892844216,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.104378154,47.12755007,81.87844114,49.02039428,618.3873569,0,0.790160309,37.79950488,-0.790160309,142.2004951,0.986721701,0,692.054666,49.02039428,724.1375337,9,15,5% -9/26/2018 0:00,67.70283371,249.2376097,324.3719958,669.7757849,70.25209702,521.3032105,450.7242202,70.57899021,68.13373709,2.445253119,80.76610575,0,80.76610575,2.118359928,78.64774582,1.181637361,4.350016908,2.438379591,-2.438379591,0.113166221,0.216578798,0.74637834,24.00609307,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.49273968,1.534744556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.540748567,23.07556978,66.03348825,24.61031433,450.7242202,0,0.672947918,47.70500368,-0.672947918,132.2949963,0.975700045,0,505.8051303,24.61031433,521.9120888,9,16,3% -9/26/2018 1:00,79.06855602,259.4174389,118.556738,405.7935134,41.60436328,247.9897296,206.7461606,41.24356899,40.34983822,0.893730769,29.99997878,0,29.99997878,1.254525057,28.74545372,1.380006637,4.527688446,5.107840061,-5.107840061,0,0.35092365,0.313631264,10.08745956,0.255585937,1,0.193332157,0,0.939786363,0.978548326,0.724496596,1,39.0845203,0.908899133,0.039002006,0.312029739,0.89535716,0.619853756,0.961238037,0.922476074,0.216489798,9.69644982,39.3010101,10.60534895,153.9047494,0,0.509486115,59.37039383,-0.509486115,120.6296062,0.951861899,0,185.797077,10.60534895,192.7380658,9,17,4% -9/26/2018 2:00,90.93369599,268.7498884,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587092396,4.690570417,-58.1027803,58.1027803,0,#DIV/0!,0,0,1,0.894362265,0,0.017209181,0.961238037,1,0.676853572,0.952356976,0,0,0.115824807,0.257919453,0.724496596,0.448993192,0.969499985,0.930738022,0,0,0,0,0,0,0.308513772,72.03031371,-0.308513772,107.9696863,0.887932681,0,0,0,0,9,18,0% -9/26/2018 3:00,102.757231,278.0606707,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79345201,4.853074225,-3.897582514,3.897582514,0.803320445,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.086861765,85.0169078,-0.086861765,94.9830922,0,0,0,0,0,9,19,0% -9/26/2018 4:00,114.2950913,288.1901728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.994825663,5.029867387,-1.741112677,1.741112677,0.827901493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.141615137,98.14131806,0.141615137,81.85868194,0,0.696930399,0,0,0,9,20,0% -9/26/2018 5:00,125.1107962,300.1920705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183595324,5.239340018,-0.910570488,0.910570488,0.685870414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.361349172,111.1830764,0.361349172,68.81692357,0,0.911629682,0,0,0,9,21,0% -9/26/2018 6:00,134.4945033,315.4914499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.347371909,5.506364563,-0.422214102,0.422214102,0.602356553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.557369531,123.8740778,0.557369531,56.12592225,0,0.960292908,0,0,0,9,22,0% -9/26/2018 7:00,141.2537425,335.5611257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.465342887,5.856646485,-0.062108141,0.062108141,0.540774807,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.716322753,135.7517087,0.716322753,44.2482913,0,0.980199062,0,0,0,9,23,0% -9/27/2018 8:00,143.8072049,359.9826203,0,0,0,0,0,0,0,0,0,0,0,0,0,2.509909214,6.282881975,0.25004629,-0.25004629,0.487393256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827382731,145.8308124,0.827382731,34.16918756,0,0.989568475,0,0,0,9,0,0% -9/27/2018 9:00,141.2910932,24.42479708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46599478,0.426293128,0.560962387,-0.560962387,0.434223472,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88298842,152.0049831,0.88298842,27.99501689,0,0.993374116,0,0,0,9,1,0% -9/27/2018 10:00,134.5598665,44.53495392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.348512711,0.777281578,0.916826364,-0.916826364,0.373367147,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879359063,151.5651439,0.879359063,28.43485608,0,0.993140405,0,0,0,9,2,0% -9/27/2018 11:00,125.1958728,59.87083693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185080191,1.04494323,1.395708939,-1.395708939,0.291473404,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.816751842,144.7609501,0.816751842,35.23904986,0,0.988781895,0,0,0,9,3,0% -9/27/2018 12:00,114.3962051,71.90178519,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99659043,1.25492289,2.203661451,-2.203661451,0.153305387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699444447,134.3824489,0.699444447,45.6175511,0,0.978514694,0,0,0,9,4,0% -9/27/2018 13:00,102.8743119,82.05625044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795495459,1.432151742,4.278737762,-4.278737762,0,#DIV/0!,0,0,0.167744134,1,0.229592711,0,0.934817463,0.973579426,0.724496596,1,0,0,0.026583989,0.312029739,0.927379003,0.651875599,0.961238037,0.922476074,0,0,0,0,0,0,-0.53544367,122.374005,0.53544367,57.62599499,0,0.956619496,0,0,0,9,5,0% -9/27/2018 14:00,91.06929335,91.39114752,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589459016,1.595076431,49.88584696,-49.88584696,0,#DIV/0!,0,0,0.888899117,1,0.020043081,0,0.959422434,0.998184398,0.724496596,1,0,0,0.106819402,0.312029739,0.742080345,0.466576941,0.961238037,0.922476074,0,0,0,0,0,0,-0.335939838,109.6296991,0.335939838,70.37030089,0,0.901163826,0,0,0,9,6,0% -9/27/2018 15:00,79.22647352,100.7486982,116.0371913,401.6850991,40.95122857,40.5911353,0,40.5911353,39.71639794,0.874737362,74.8011467,45.4317556,29.3693911,1.234830635,28.13456047,1.382762818,1.758396501,-4.516563971,4.516563971,0.697468382,0.352914683,0.70349548,22.6268329,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.17691238,0.894630592,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.509680081,21.74977244,38.68659246,22.64440303,0,45.4317556,-0.113102915,96.49421615,0.113102915,83.50578385,0,0.607924745,38.68659246,50.26349145,71.58304235,9,7,85% -9/27/2018 16:00,67.8926737,110.9541223,321.1769193,668.2746832,69.6765983,146.401612,76.4048529,69.99675907,67.57559178,2.421167284,79.97406907,0,79.97406907,2.101006518,77.87306255,1.184950694,1.936514753,-1.859236624,1.859236624,0.848101878,0.216941486,2.133181256,68.61044196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95622918,1.52217207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.545482559,65.95096654,66.50171174,67.47313861,76.4048529,0,0.114331509,83.43493098,-0.114331509,96.56506902,0.612675237,0,113.3130731,67.47313861,157.4728929,9,8,39% -9/27/2018 17:00,57.36102674,122.9915961,507.7670165,781.883811,86.06290396,348.0183462,260.7227941,87.29555212,83.46778987,3.827762252,125.709106,0,125.709106,2.595114093,123.1139919,1.001138779,2.146608305,-0.939806046,0.939806046,0.690869989,0.1694929,2.845042976,91.50636189,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.23241448,1.880151326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.061223951,87.95939566,82.29363843,89.83954699,260.7227941,0,0.333454652,70.5214065,-0.333454652,109.4785935,0.900054574,0,316.9583816,89.83954699,375.7565683,9,9,19% -9/27/2018 18:00,48.36229773,138.0872679,652.9753396,837.4863792,96.53419603,541.5389928,442.9932551,98.54573777,93.62333384,4.922403928,161.2322931,0,161.2322931,2.910862183,158.321431,0.844081329,2.41007748,-0.419781771,0.419781771,0.6019406,0.14783743,3.252668789,104.6170092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.99430963,2.108909743,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.356547465,100.5618486,92.35085709,102.6707583,442.9932551,0,0.528955773,58.06507227,-0.528955773,121.9349277,0.955474139,0,515.6194559,102.6707583,582.8154138,9,10,13% -9/27/2018 19:00,42.0170669,157.315951,744.619195,864.1839445,102.5776429,699.1550247,594.0572222,105.0978025,99.48454846,5.61325402,183.6346391,0,183.6346391,3.093094403,180.5415447,0.733336159,2.745681311,-0.042189709,0.042189709,0.537368555,0.137758526,3.374126884,108.5235191,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.62833206,2.240936366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.444543442,104.3169344,98.0728755,106.5578708,594.0572222,0,0.687419879,46.57378467,-0.687419879,133.4262153,0.977264251,0,678.6237616,106.5578708,748.3637569,9,11,10% -9/27/2018 20:00,39.68788919,180.0504495,775.7086491,872.1544027,104.5556977,803.2378566,695.9872796,107.2505771,101.4029576,5.847619457,191.2322829,0,191.2322829,3.152740054,188.0795428,0.69268434,3.142473163,0.284515014,-0.284515014,0.481498757,0.13478733,3.224296408,103.7044559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,97.47237989,2.284149437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.335991771,99.68466761,99.80837166,101.9688171,695.9872796,0,0.798009249,37.05958209,-0.798009249,142.9404179,0.987344085,0,786.9872951,101.9688171,853.7238465,9,12,8% -9/27/2018 21:00,42.06757913,202.7609062,743.9291801,864.0013762,102.5333661,842.1886188,737.1389596,105.0496592,99.44160684,5.608052397,183.4660019,0,183.4660019,3.091759297,180.3742426,0.734217764,3.538845407,0.612772346,-0.612772346,0.425363447,0.137826784,2.829619973,91.0103051,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.58705494,2.239969086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.050050038,87.48256701,97.63710498,89.72253609,737.1389596,0,0.853168733,31.44199064,-0.853168733,148.5580094,0.991394946,0,828.4329438,89.72253609,887.1545492,9,13,7% -9/27/2018 22:00,48.45132338,221.9401499,651.6214596,837.0511374,96.44218888,809.2158578,710.769559,98.44629886,93.53410105,4.912197808,160.9012549,0,160.9012549,2.908087828,157.9931671,0.84563512,3.873586358,0.995729998,-0.995729998,0.359873831,0.148003396,2.233157226,71.8260128,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.90853567,2.106899732,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.617914808,69.04189554,91.52645048,71.14879527,710.769559,0,0.849135169,31.88227018,-0.849135169,148.1177298,0.99111656,0,795.9819305,71.14879527,842.547394,9,14,6% -9/27/2018 23:00,57.47644663,236.9892189,505.8050455,780.9850297,85.91135928,701.1443108,614.0105239,87.13378691,83.32081482,3.812972086,125.2288337,0,125.2288337,2.590544462,122.6382893,1.003153236,4.136242162,1.528001661,-1.528001661,0.268850016,0.169850736,1.498636742,48.20130914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09113647,1.876840644,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.085757218,46.33293177,81.17689369,48.20977242,614.0105239,0,0.78620012,38.1681887,-0.78620012,141.8318113,0.986402961,0,686.8386923,48.20977242,718.3910241,9,15,5% -9/27/2018 0:00,68.02747463,248.9896348,318.7152821,666.2659586,69.42391542,515.2817488,445.5486102,69.73313864,67.33052822,2.402610423,79.36959731,0,79.36959731,2.093387197,77.27621011,1.187303414,4.345688931,2.478122665,-2.478122665,0.106369755,0.217824244,0.723243611,23.26200065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72066477,1.516651898,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.523987534,22.36031984,65.2446523,23.87697174,445.5486102,0,0.66872486,48.03127495,-0.66872486,131.968725,0.975230834,0,499.7573951,23.87697174,515.3843955,9,16,3% -9/27/2018 1:00,79.37754897,259.1646565,113.4510473,396.2100464,40.41507631,240.1723899,200.1207353,40.05165456,39.19641265,0.855241916,28.72618356,0,28.72618356,1.218663667,27.5075199,1.385399582,4.523276561,5.263833705,-5.263833705,0,0.356233612,0.304665917,9.799103162,0.270080926,1,0.187738403,0,0.940527211,0.979289174,0.724496596,1,37.97428053,0.882917678,0.040962699,0.312029739,0.890412371,0.614908967,0.961238037,0.922476074,0.210011451,9.419270686,38.18429198,10.30218836,146.0719419,0,0.505087484,59.66284011,-0.505087484,120.3371599,0.951007248,0,177.0997674,10.30218836,183.8423437,9,17,4% -9/27/2018 2:00,91.23945077,268.4947184,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592428824,4.686116861,-43.83243274,43.83243274,0,#DIV/0!,0,0,1,0.857670314,0,0.0228102,0.961238037,1,0.661847393,0.937350797,0,0,0.115824807,0.240897175,0.724496596,0.448993192,0.97197201,0.933210047,0,0,0,0,0,0,0.303953592,72.30477942,-0.303953592,107.6952206,0.885501204,0,0,0,0,9,18,0% -9/27/2018 3:00,103.065948,277.8026472,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798840139,4.848570864,-3.811427535,3.811427535,0.818053814,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.082266027,85.28117102,-0.082266027,94.71882898,0,0,0,0,0,9,19,0% -9/27/2018 4:00,114.6156893,287.9307657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000421153,5.02533988,-1.721542788,1.721542788,0.824554845,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.146156254,98.40424103,0.146156254,81.59575897,0,0.707900373,0,0,0,9,20,0% -9/27/2018 5:00,125.4526933,299.9421177,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189562553,5.23497752,-0.903817038,0.903817038,0.684715506,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.365749294,111.4537028,0.365749294,68.5462972,0,0.913294336,0,0,0,9,21,0% -9/27/2018 6:00,134.8651939,315.287163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353841679,5.502799084,-0.420042538,0.420042538,0.601985194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.561552034,124.1631994,0.561552034,55.83680064,0,0.960961056,0,0,0,9,22,0% -9/27/2018 7:00,141.6490479,335.4853534,0,0,0,0,0,0,0,0,0,0,0,0,0,2.472242267,5.85532401,-0.062278258,0.062278258,0.540803899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.720226034,136.0731454,0.720226034,43.92685462,0,0.98057735,0,0,0,9,23,0% -9/28/2018 8:00,144.1961157,0.127288371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.516696988,0.002221601,0.248213202,-0.248213202,0.487706732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830964435,146.1979367,0.830964435,33.80206334,0,0.989828953,0,0,0,9,0,0% -9/28/2018 9:00,141.6305915,24.75842864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.471920144,0.432116097,0.557466138,-0.557466138,0.434821365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886228348,152.4030633,0.886228348,27.59693674,0,0.993581132,0,0,0,9,1,0% -9/28/2018 10:00,134.8360688,44.93821658,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353333352,0.784319839,0.911049962,-0.911049962,0.37435497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882260545,151.9162656,0.882260545,28.08373442,0,0.993327399,0,0,0,9,2,0% -9/28/2018 11:00,125.4214139,60.27275335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189016624,1.051957995,1.385809446,-1.385809446,0.293166317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819341503,145.0189299,0.819341503,34.98107013,0,0.988975385,0,0,0,9,3,0% -9/28/2018 12:00,114.5890942,72.28438528,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999956981,1.261600521,2.183551637,-2.183551637,0.156744368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701770355,134.569213,0.701770355,45.43078701,0,0.978751621,0,0,0,9,4,0% -9/28/2018 13:00,103.0501451,82.42265874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798564327,1.438546773,4.213237583,-4.213237583,0,#DIV/0!,0,0,0.159912624,1,0.233035122,0,0.934330887,0.97309285,0.724496596,1,0,0,0.0254301,0.312029739,0.93041614,0.654912736,0.961238037,0.922476074,0,0,0,0,0,0,-0.537572022,122.5185083,0.537572022,57.48149171,0,0.956989207,0,0,0,9,5,0% -9/28/2018 14:00,91.24112839,91.75021628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592458104,1.601343364,42.87103871,-42.87103871,0,#DIV/0!,0,0,0.871815015,1,0.023321541,0,0.959116245,0.997878208,0.724496596,1,0,0,0.105373808,0.312029739,0.744963817,0.469460413,0.961238037,0.922476074,0,0,0,0,0,0,-0.33795039,109.7520499,0.33795039,70.24795014,0,0.90204929,0,0,0,9,6,0% -9/28/2018 15:00,79.4050459,101.1098608,113.1712201,396.7523693,40.22243094,39.86270871,0,39.86270871,39.00957624,0.853132461,74.30344923,45.65092196,28.65252726,1.212854698,27.43967256,1.385879494,1.764699978,-4.577176967,4.577176967,0.687102949,0.355412188,0.681064494,21.90537529,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.49748849,0.8787091,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.493428908,21.05627994,37.9909174,21.93498904,0,45.65092196,-0.115061498,96.60717217,0.115061498,83.39282783,0,0.615449774,37.9909174,50.03083863,70.73510066,9,7,86% -9/28/2018 16:00,68.09296224,111.3246837,317.7875257,666.5924155,69.08073046,144.2501745,74.85686631,69.39330816,66.99769156,2.395616603,79.13430374,0,79.13430374,2.083038904,77.05126483,1.188446389,1.94298227,-1.867457897,1.867457897,0.849507798,0.217380246,2.113465264,67.97630788,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.40072951,1.509154595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.531198389,65.34141274,65.9319279,66.85056734,74.85686631,0,0.112297807,83.55220892,-0.112297807,96.44779108,0.604755329,0,111.2020167,66.85056734,154.9543761,9,8,39% -9/28/2018 17:00,57.59673901,123.3715425,504.0554452,781.1141744,85.47600492,345.460105,258.7617341,86.69837086,82.898588,3.79978286,124.7914954,0,124.7914954,2.577416921,122.2140784,1.005252734,2.15323962,-0.940010009,0.940010009,0.690904869,0.169576593,2.824455233,90.8441893,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.68527599,1.867329786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.046308202,87.32289018,81.73158419,89.19021997,258.7617341,0,0.331272614,70.65396383,-0.331272614,109.3460362,0.899066908,0,314.3756963,89.19021997,372.7489115,9,9,19% -9/28/2018 18:00,48.64853726,138.4559708,648.9269708,837.0130007,95.93241657,538.6622702,440.7306843,97.93158587,93.03970025,4.891885614,160.2325734,0,160.2325734,2.892716312,157.3398571,0.849077151,2.416512559,-0.417236906,0.417236906,0.601505403,0.147832377,3.230678582,103.9097286,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.43329882,2.095763121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.340615635,99.8819835,91.77391446,101.9777466,440.7306843,0,0.526551779,58.22723291,-0.526551779,121.7727671,0.955042577,0,512.6904829,101.9777466,579.4328786,9,10,13% -9/28/2018 19:00,42.36198733,157.6108338,740.2117207,863.7897955,101.9552455,695.927405,591.4664578,104.4609472,98.88091863,5.580028617,182.5472284,0,182.5472284,3.074326825,179.4729015,0.739356157,2.750827986,-0.038014533,0.038014533,0.536654558,0.137737951,3.350666619,107.7689563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.04810011,2.22733932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.42754656,103.59162,97.47564667,105.8189593,591.4664578,0,0.68473425,46.785289,-0.68473425,133.214711,0.97697897,0,675.3259376,105.8189593,744.5823301,9,11,10% -9/28/2018 20:00,40.07670795,180.1808276,770.9382386,871.7221123,103.911133,799.6098118,693.0203248,106.5894871,100.777829,5.811658088,190.0562056,0,190.0562056,3.133304052,186.9229016,0.699470507,3.144748691,0.290264013,-0.290264013,0.48051562,0.134785289,3.199518118,102.9075009,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.87148248,2.270068119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.318039985,98.91860417,99.18952246,101.1886723,693.0203248,0,0.795001429,37.3446094,-0.795001429,142.6553906,0.987107031,0,783.2747578,101.1886723,849.5007201,9,12,8% -9/28/2018 21:00,42.46337403,202.703605,738.8169624,863.4179955,101.8656907,838.1137691,733.7501905,104.3635786,98.79406424,5.569514341,182.2063527,0,182.2063527,3.071626418,179.1347263,0.741125688,3.537845312,0.620664117,-0.620664117,0.424013874,0.137876762,2.803854904,90.1816119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.96461236,2.225382883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031383333,86.68599558,96.99599569,88.91137846,733.7501905,0,0.849820359,31.80786404,-0.849820359,148.192136,0.991164036,0,824.2627959,88.91137846,882.4535149,9,13,7% -9/28/2018 22:00,48.82587026,221.7623582,646.2167202,836.1342282,95.74803395,804.6432946,706.9109626,97.73233206,92.86087746,4.8714546,159.5698819,0,159.5698819,2.887156496,156.6827254,0.852172196,3.870483307,1.007267282,-1.007267282,0.35790084,0.148167064,2.206957882,70.98335185,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.26140755,2.091735053,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598933473,68.23189778,90.86034102,70.32363283,706.9109626,0,0.84545153,32.2796541,-0.84545153,147.7203459,0.990860004,0,791.3101403,70.32363283,837.3355515,9,14,6% -9/28/2018 23:00,57.82328863,236.7593587,500.1929664,779.3255158,85.17696824,695.9756336,609.5963993,86.37923424,82.60856838,3.770665863,123.8459756,0,123.8459756,2.568399862,121.2775757,1.009206771,4.132230345,1.547153733,-1.547153733,0.265574819,0.170288217,1.472968287,47.3757234,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.40649809,1.860796957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06716051,45.53934736,80.4736586,47.40014431,609.5963993,0,0.782210241,38.5366092,-0.782210241,141.4633908,0.986078566,0,681.5836021,47.40014431,712.6060486,9,15,5% -9/28/2018 0:00,68.35157205,248.7422473,313.0601305,662.6748759,68.59254759,509.2193664,440.3351577,68.88420871,66.5242292,2.359979501,77.97337152,0,77.97337152,2.06831839,75.90505313,1.192959981,4.341371204,2.518880828,-2.518880828,0.099399699,0.219103427,0.700263293,22.52287463,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.94561948,1.498489632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.507338372,21.64984379,64.45295785,23.14833343,440.3351577,0,0.664481443,48.35744461,-0.664481443,131.6425554,0.974753354,0,493.6711296,23.14833343,508.8212509,9,16,3% -9/28/2018 1:00,79.68569749,258.9119255,108.3924087,386.3727757,39.21320824,232.2973497,193.4494566,38.84789309,38.03078533,0.817107762,27.46341731,0,27.46341731,1.18242291,26.2809944,1.390777788,4.518865573,5.428511448,-5.428511448,0,0.361770799,0.295605727,9.507696333,0.284782686,1,0.182170279,0,0.94125778,0.980019743,0.724496596,1,36.85110867,0.856661373,0.042926984,0.312029739,0.885488977,0.609985573,0.961238037,0.922476074,0.20350804,9.139159358,37.05461671,9.995820731,138.3584008,0,0.500680868,59.95494392,-0.500680868,120.0450561,0.950135988,0,168.5139126,9.995820731,175.0559774,9,17,4% -9/28/2018 2:00,91.54423365,268.2390594,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597748288,4.681654769,-35.23041992,35.23041992,0,#DIV/0!,0,0,1,0.819979092,0,0.028376942,0.961238037,1,0.647177166,0.92268057,0,0,0.115824807,0.224268414,0.724496596,0.448993192,0.974326964,0.935565001,0,0,0,0,0,0,0.299395209,72.57871837,-0.299395209,107.4212816,0.88299666,0,0,0,0,9,18,0% -9/28/2018 3:00,103.3734599,277.5435258,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804207235,4.844048343,-3.729470427,3.729470427,0.832069305,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.077683825,85.54455574,-0.077683825,94.45544426,0,0,0,0,0,9,19,0% -9/28/2018 4:00,114.9349079,287.6694918,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005992569,5.020779789,-1.702529544,1.702529544,0.821303389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.150672822,98.66591959,0.150672822,81.33408041,0,0.718155151,0,0,0,9,20,0% -9/28/2018 5:00,125.7931833,299.6893279,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195505226,5.230565505,-0.89721807,0.89721807,0.683587016,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.37011534,111.7227308,0.37011534,68.27726924,0,0.914906977,0,0,0,9,21,0% -9/28/2018 6:00,135.2347284,315.0792188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.360291274,5.499169773,-0.417926357,0.417926357,0.601623306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.565693075,124.4504335,0.565693075,55.54956646,0,0.961612848,0,0,0,9,22,0% -9/28/2018 7:00,142.0437183,335.406799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.479130566,5.853952976,-0.062467511,0.062467511,0.540836263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.724083114,136.3926271,0.724083114,43.60737293,0,0.980947154,0,0,0,9,23,0% -9/29/2018 8:00,144.5845906,0.272910222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.523477154,0.004763182,0.246379448,-0.246379448,0.488020323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834498174,146.5636208,0.834498174,33.43637921,0,0.990083751,0,0,0,9,0,0% -9/29/2018 9:00,141.9692284,25.09534411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.477830471,0.437996382,0.553983766,-0.553983766,0.435416886,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889421642,152.8006604,0.889421642,27.19933963,0,0.993783693,0,0,0,9,1,0% -9/29/2018 10:00,135.1112036,45.34391029,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35813536,0.79140053,0.905307151,-0.905307151,0.375337049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88511973,152.2662589,0.88511973,27.7337411,0,0.993510467,0,0,0,9,2,0% -9/29/2018 11:00,125.6461421,60.67574904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192938871,1.058991597,1.375987312,-1.375987312,0.294846001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821895906,145.275034,0.821895906,34.72496602,0,0.989165046,0,0,0,9,3,0% -9/29/2018 12:00,114.7816284,72.66716828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003317336,1.268281345,2.163675579,-2.163675579,0.160143374,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.704070264,134.7544809,0.704070264,45.24551907,0,0.978984361,0,0,0,9,4,0% -9/29/2018 13:00,103.2261193,82.78868466,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801635656,1.444935131,4.149247895,-4.149247895,0,#DIV/0!,0,0,0.152118066,1,0.236497423,0,0.933838926,0.972600889,0.724496596,1,0,0,0.024273718,0.312029739,0.933470338,0.657966934,0.961238037,0.922476074,0,0,0,0,0,0,-0.539685211,122.6622123,0.539685211,57.33778767,0,0.9573534,0,0,0,9,5,0% -9/29/2018 14:00,91.41358122,92.10845263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595467973,1.607595767,37.5445203,-37.5445203,0,#DIV/0!,0,0,0.854869226,1,0.026628749,0,0.958804755,0.997566719,0.724496596,1,0,0,0.103923116,0.312029739,0.747874359,0.472370955,0.961238037,0.922476074,0,0,0,0,0,0,-0.339957447,109.8742815,0.339957447,70.12571846,0,0.902922769,0,0,0,9,6,0% -9/29/2018 15:00,79.5846238,101.4696871,110.2975141,391.6895799,39.4866595,39.12746028,0,39.12746028,38.29599103,0.831469251,73.7720265,45.83844875,27.93357775,1.190668474,26.74290928,1.389013719,1.770980131,-4.640162643,4.640162643,0.676331764,0.358001355,0.658694457,21.18587798,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.81156324,0.862635256,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.477221892,20.36467176,37.28878513,21.22730701,0,45.83844875,-0.117027491,96.72058148,0.117027491,83.27941852,0,0.622749962,37.28878513,49.77319921,69.86434855,9,7,87% -9/29/2018 16:00,68.29465736,111.6931868,314.3687801,664.8601814,68.48128262,142.0837847,73.29762073,68.78616393,66.41631928,2.369844655,78.28731372,0,78.28731372,2.06496334,76.22235038,1.191966633,1.949413862,-1.875908478,1.875908478,0.850952933,0.217837416,2.093570442,67.336422,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.84189236,1.49605891,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.516784658,64.72633009,65.35867702,66.222389,73.29762073,0,0.110245165,83.67055153,-0.110245165,96.32944847,0.596465373,0,109.0781697,66.222389,152.4193989,9,8,40% -9/29/2018 17:00,57.83406558,123.748315,500.3063078,780.3177657,84.88614154,342.871105,256.7730736,86.09803146,82.32651118,3.771520279,123.864687,0,123.864687,2.559630364,121.3050567,1.009394864,2.15981554,-0.940260767,0.940260767,0.690947751,0.169668342,2.803688334,90.17625443,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.13537399,1.854443485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.031262654,86.68084578,81.16663664,88.53528926,256.7730736,0,0.329062191,70.78813581,-0.329062191,109.2118642,0.898053039,0,311.7624756,88.53528926,369.7070517,9,9,19% -9/29/2018 18:00,48.93624727,138.8200057,644.837102,836.5209691,95.32782894,535.7452459,438.4308482,97.31439763,92.45334317,4.861054456,159.2227068,0,159.2227068,2.874485765,156.3482211,0.854098638,2.422866167,-0.414694142,0.414694142,0.601070564,0.147832419,3.208515991,103.1969035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.86967009,2.082555151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.324558914,99.19678892,91.19422901,101.2793441,438.4308482,0,0.524112203,58.39150357,-0.524112203,121.6084964,0.95460058,0,509.7205712,101.2793441,576.0058763,9,10,13% -9/29/2018 19:00,42.70768428,157.900181,735.7624098,863.3802645,101.3301841,692.6539134,588.8327204,103.8211931,98.27470522,5.546487832,181.4495935,0,181.4495935,3.05547892,178.3941146,0.745389707,2.755878048,-0.033820028,0.033820028,0.535937255,0.137721339,3.327052947,107.0094594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.46538472,2.213684077,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.410438535,102.8615627,96.87582325,105.0752468,588.8327204,0,0.682008548,46.99920187,-0.682008548,133.0007981,0.976687136,0,671.9811664,105.0752468,740.7508139,9,11,10% -9/29/2018 20:00,40.46535616,180.3074393,766.1290926,871.2753088,103.2641318,795.9340111,690.0082692,105.9257419,100.1503372,5.775404714,188.870663,0,188.870663,3.113794577,185.7568684,0.706253698,3.146958482,0.296052308,-0.296052308,0.479525763,0.134786856,3.174617817,102.1066217,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,96.2683135,2.255933571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.299999802,98.14876857,98.56831331,100.4047021,690.0082692,0,0.791952053,37.63169013,-0.791952053,142.3683099,0.986864865,0,779.5132305,100.4047021,845.2261,9,12,8% -9/29/2018 21:00,42.8585645,202.645767,733.672315,862.8188618,101.195895,833.9927443,730.3175471,103.6751972,98.14446537,5.530731815,180.9387765,0,180.9387765,3.051429607,177.8873469,0.748023063,3.53683585,0.628625768,-0.628625768,0.422652352,0.137930644,2.778010736,89.35037462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.34019322,2.210750363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.012659322,85.88697869,96.35285254,88.09772906,730.3175471,0,0.846432061,32.17430451,-0.846432061,147.8256955,0.990928514,0,820.0453339,88.09772906,877.7035356,9,13,7% -9/29/2018 22:00,49.19983844,221.5855697,640.7887217,835.1968585,95.05210324,800.0289021,703.0124344,97.01646767,92.18593162,4.830536054,158.232816,0,158.232816,2.866171617,155.3666444,0.858699172,3.867397767,1.018938063,-1.018938063,0.355905018,0.148336105,2.180733712,70.13989241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.61262393,2.07653158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.579934151,67.42113249,90.19255809,69.49766407,703.0124344,0,0.841732613,32.6764659,-0.841732613,147.3235341,0.990598714,0,786.5957713,69.49766407,832.0806025,9,14,6% -9/29/2018 23:00,58.1695686,236.5305138,494.5694587,777.6317665,84.44092594,690.7701605,605.1471666,85.62299395,81.89472047,3.728273486,122.4602967,0,122.4602967,2.546205471,119.9140912,1.015250497,4.128236247,1.566613913,-1.566613913,0.262246932,0.170736232,1.447346008,46.55162284,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.72032033,1.844717196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.048597256,44.74719055,79.76891758,46.59190775,605.1471666,0,0.778192446,38.90462589,-0.778192446,141.0953741,0.985748541,0,676.2918541,46.59190775,706.7853259,9,15,5% -9/29/2018 0:00,68.67498217,248.4954166,307.4096497,659.0022711,67.75819338,503.1187614,435.0863438,68.03241764,65.71503385,2.31738379,76.57818816,0,76.57818816,2.043159532,74.53502863,1.198604553,4.337063196,2.560678792,-2.560678792,0.092251826,0.220416612,0.677451469,21.78916798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.16779013,1.480262125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.490811283,20.94457705,63.65860141,22.42483918,435.0863438,0,0.660219794,48.6833623,-0.660219794,131.3166377,0.974267645,0,487.5491488,22.42483918,502.2257576,9,16,3% -9/29/2018 1:00,79.99285068,258.6592308,103.385929,376.281805,37.99904099,224.3695068,186.7369103,37.6325965,36.8532297,0.779366803,26.21292674,0,26.21292674,1.145811287,25.06711545,1.396138622,4.514455218,5.602548352,-5.602548352,0,0.367545578,0.286452822,9.213307425,0.29968973,1,0.176630141,0,0.941977839,0.980739802,0.724496596,1,35.71532136,0.830136377,0.044894076,0.312029739,0.880589114,0.60508571,0.961238037,0.922476074,0.196979641,8.856181542,35.912301,9.68631792,130.773776,0,0.496268775,60.24655038,-0.496268775,119.7534496,0.949248144,0,160.0490652,9.68631792,166.3885666,9,17,4% -9/29/2018 2:00,91.84790026,267.9829022,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603048271,4.677183982,-29.48097894,29.48097894,0,#DIV/0!,0,0,1,0.781262892,0,0.033907176,0.961238037,1,0.632844576,0.908347981,0,0,0.115824807,0.208034967,0.724496596,0.448993192,0.976568177,0.937806214,0,0,0,0,0,0,0.294841173,72.85198634,-0.294841173,107.1480137,0.880417172,0,0,0,0,9,18,0% -9/29/2018 3:00,103.6796203,277.2832951,0,0,0,0,0,0,0,0,0,0,0,0,0,1.809550742,4.83950646,-3.65144676,3.65144676,0.845412138,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.073117758,85.80691922,-0.073117758,94.19308078,0,0,0,0,0,9,19,0% -9/29/2018 4:00,115.2525973,287.4063254,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011537295,5.016186668,-1.684059954,1.684059954,0.818144903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.155162311,98.92620989,0.155162311,81.07379011,0,0.727756798,0,0,0,9,20,0% -9/29/2018 5:00,126.1321136,299.4336393,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201420675,5.226102898,-0.890773567,0.890773567,0.682484941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.374444959,111.990012,0.374444959,68.00998795,0,0.916469026,0,0,0,9,21,0% -9/29/2018 6:00,135.6029588,314.8674859,0,0,0,0,0,0,0,0,0,0,0,0,0,2.366718107,5.495474337,-0.415866974,0.415866974,0.601271131,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.56979058,124.7356236,0.56979058,55.26437644,0,0.962248462,0,0,0,9,22,0% -9/29/2018 7:00,142.4376303,335.3252688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486005627,5.852530006,-0.062677421,0.062677421,0.54087216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727892278,136.7099861,0.727892278,43.29001394,0,0.981308517,0,0,0,9,23,0% -9/30/2018 8:00,144.9725415,0.419338428,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530248175,0.007318836,0.244543535,-0.244543535,0.488334282,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837982647,146.9277012,0.837982647,33.07229878,0,0.990332893,0,0,0,9,0,0% -9/30/2018 9:00,142.3069441,25.43541824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.483724723,0.443931795,0.550513715,-0.550513715,0.4360103,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89256744,153.1976647,0.89256744,26.80233534,0,0.993981824,0,0,0,9,1,0% -9/30/2018 10:00,135.3852445,45.75188097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362918275,0.798520962,0.899596071,-0.899596071,0.376313701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.88793619,152.6150443,0.88793619,27.3849557,0,0.993689647,0,0,0,9,2,0% -9/30/2018 11:00,125.8700585,61.07967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196846951,1.066041348,1.366239667,-1.366239667,0.296512946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824415025,145.5292286,0.824415025,34.47077138,0,0.989350936,0,0,0,9,3,0% -9/30/2018 12:00,114.9738243,73.04999296,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006671788,1.274962896,2.144025959,-2.144025959,0.163503657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.706344487,134.9382657,0.706344487,45.06173428,0,0.97921301,0,0,0,9,4,0% -9/30/2018 13:00,103.4022571,83.15419661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804709841,1.451314518,4.086707294,-4.086707294,0,#DIV/0!,0,0,0.144358977,1,0.239980253,0,0.93334145,0.972103413,0.724496596,1,0,0,0.023114655,0.312029739,0.93654216,0.661038756,0.961238037,0.922476074,0,0,0,0,0,0,-0.541783807,122.805153,0.541783807,57.19484696,0,0.957712266,0,0,0,9,5,0% -9/30/2018 14:00,91.5866731,92.46572803,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598488997,1.613831399,33.36160937,-33.36160937,0,#DIV/0!,0,0,0.83805714,1,0.029965601,0,0.958487816,0.997249779,0.724496596,1,0,0,0.102467051,0.312029739,0.750812704,0.4753093,0.961238037,0.922476074,0,0,0,0,0,0,-0.341961731,109.9964385,0.341961731,70.00356152,0,0.903784808,0,0,0,9,6,0% -9/30/2018 15:00,79.7652179,101.8280455,107.416594,386.4926806,38.74373366,38.3852188,0,38.3852188,37.57546714,0.809751658,73.20591552,45.99325217,27.21266335,1.168266519,26.04439683,1.392165681,1.777234666,-4.705678556,4.705678556,0.665127883,0.360686671,0.636393377,20.46859859,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.11896827,0.846405116,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.461064835,19.67519553,36.5800331,20.52160064,0,45.99325217,-0.119001612,96.83448631,0.119001612,83.16551369,0,0.629837626,36.5800331,49.4898814,68.97017068,9,7,89% -9/30/2018 16:00,68.49775664,112.0594936,310.9207566,663.076598,67.87821471,139.902209,71.72692095,68.17528809,65.83143609,2.343851997,77.43311578,0,77.43311578,2.046778617,75.38633716,1.195511384,1.955807122,-1.884601787,1.884601787,0.852439576,0.218313552,2.073498083,66.69082596,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.27968039,1.482884141,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502242303,64.10575862,64.78192269,65.58864276,71.72692095,0,0.108172904,83.78999784,-0.108172904,96.21000216,0.587777037,0,106.9413598,65.58864276,149.8678147,9,8,40% -9/30/2018 17:00,58.07297982,124.1217736,496.5199446,779.4941281,84.29332732,340.2510686,254.7565191,85.49454956,81.75157249,3.742977073,122.9287639,0,122.9287639,2.541754828,120.3870091,1.013564704,2.166333624,-0.940562969,0.940562969,0.69099943,0.169768261,2.782745948,89.50267531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.58272105,1.84149272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.016089967,86.03337591,80.59881102,87.87486863,254.7565191,0,0.326822884,70.92394949,-0.326822884,109.0760505,0.897011937,0,309.1184496,87.87486863,366.6307937,9,9,19% -9/30/2018 18:00,49.22536915,139.179255,640.7064671,836.0101475,94.7204779,532.7879041,436.0936821,96.69422199,91.86430601,4.829915985,158.2028727,0,158.2028727,2.85617189,155.3467008,0.859144767,2.429136251,-0.412156272,0.412156272,0.600636563,0.147837556,3.186186793,102.4787197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.30346516,2.069286811,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.308381486,98.50644337,90.61184665,100.5757302,436.0936821,0,0.521636829,58.55788909,-0.521636829,121.4421109,0.954147872,0,506.7097055,100.5757302,572.5345094,9,10,13% -9/30/2018 19:00,43.05407109,158.1839289,731.2724443,862.9553703,100.7025314,689.334939,586.1563199,103.1786191,97.66597855,5.512640576,180.3420234,0,180.3420234,3.036552875,177.3054705,0.751435297,2.760830382,-0.029608405,0.029608405,0.535217025,0.137708637,3.303293609,106.2452775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.88025349,2.199972221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.393224975,102.1270019,96.27347847,104.3269742,586.1563199,0,0.679242913,47.21549008,-0.679242913,132.7845099,0.976388632,0,668.5898458,104.3269742,736.8697639,9,11,10% -9/30/2018 20:00,40.85373329,180.4302291,761.2828563,870.8141166,102.614794,792.2113327,686.9518816,105.2594511,99.52057937,5.738871738,187.676057,0,187.676057,3.094214648,184.5818423,0.713032158,3.149101569,0.301877861,-0.301877861,0.478529535,0.134791941,3.149605012,101.3021239,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.66296634,2.241747979,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.281878109,97.37545468,97.94484444,99.61720266,686.9518816,0,0.788861674,37.92073997,-0.788861674,142.07926,0.986617532,0,775.7036142,99.61720266,840.901081,9,12,8% -9/30/2018 21:00,43.25303419,202.5872926,728.4973268,862.2041944,100.5241074,829.8269549,726.8422996,102.9846552,97.49293467,5.491720568,179.6637839,0,179.6637839,3.031172733,176.6326111,0.754907858,3.535815279,0.636655292,-0.636655292,0.421279222,0.1379883,2.752098431,88.51694583,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.71391713,2.196074326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.993885945,85.08585524,95.70780308,87.28192956,726.8422996,0,0.843004829,32.54120422,-0.843004829,147.4587958,0.990688359,0,815.7820079,87.28192956,872.9062852,9,13,7% -9/30/2018 22:00,49.57309465,221.4096936,635.3399466,834.2393436,94.35455436,795.3746283,699.075751,96.2988773,91.50941641,4.789460886,156.8906637,0,156.8906637,2.845137945,154.0455258,0.865213722,3.864328149,1.0307406,-1.0307406,0.353886666,0.148510345,2.154496735,69.29602103,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.96233179,2.061292756,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.56092555,66.60997122,89.52325734,68.67126398,699.075751,0,0.837979839,33.07259355,-0.837979839,146.9274064,0.990332693,0,781.8408287,68.67126398,826.7847976,9,14,6% -9/30/2018 23:00,58.51514552,236.3026293,488.9373268,775.9041372,83.70342098,685.5303342,600.6650641,84.8652701,81.179454,3.685816097,121.0724826,0,121.0724826,2.523966975,118.5485156,1.021281952,4.124258913,1.586382932,-1.586382932,0.258866231,0.171194581,1.421782609,45.72941607,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.032779,1.828605482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.030076661,43.95685413,79.06285566,45.78545961,600.6650641,0,0.774148552,39.27209901,-0.774148552,140.727901,0.985412913,0,670.9659661,45.78545961,700.9316337,9,15,4% -9/30/2018 0:00,68.99756197,248.2491156,301.7669538,655.2479544,66.9210582,496.9826867,429.8046985,67.17798815,64.90314138,2.274846765,75.18480851,0,75.18480851,2.017916817,73.16689169,1.204234632,4.332764432,2.603541663,-2.603541663,0.084921843,0.221764038,0.654822081,21.06132906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.38736821,1.461973865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.474416368,20.2449506,62.86178458,21.70692446,429.8046985,0,0.655942068,49.00887878,-0.655942068,130.9911212,0.973773756,0,481.3943203,21.70692446,495.6010682,9,16,3% -9/30/2018 1:00,80.29885801,258.4065605,98.436811,365.938197,36.77292181,216.3942077,179.9880669,36.4061408,35.66408254,0.742058261,24.97598376,0,24.97598376,1.10883927,23.86714449,1.401479458,4.510045289,5.786689157,-5.786689157,0,0.373568805,0.277209818,8.916020634,0.31480025,1,0.171120332,0,0.942687168,0.981449131,0.724496596,1,34.56729985,0.803350277,0.046863173,0.312029739,0.875714915,0.600211511,0.961238037,0.922476074,0.190426526,8.570418171,34.75772638,9.373768447,123.3277784,0,0.491853729,60.53750519,-0.491853729,119.4624948,0.948343762,0,151.7148556,9.373768447,157.8497996,9,17,4% -9/30/2018 2:00,92.15030722,267.7262411,0,0,0,0,0,0,0,0,0,0,0,0,0,1.608326268,4.672704402,-25.3684089,25.3684089,0,#DIV/0!,0,0,1,0.741495667,0,0.039398708,0.961238037,1,0.61885084,0.894354244,0,0,0.115824807,0.192197498,0.724496596,0.448993192,0.978699162,0.939937199,0,0,0,0,0,0,0.290294023,73.12444044,-0.290294023,106.8755596,0.877760835,0,0,0,0,9,18,0% -9/30/2018 3:00,103.9842837,277.0219479,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81486812,4.834945091,-3.577113987,3.577113987,0.858123791,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.068570398,86.06812024,-0.068570398,93.93187976,0,0,0,0,0,9,19,0% -9/30/2018 4:00,115.5686082,287.1412461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.017052724,5.011560163,-1.666121343,1.666121343,0.81507722,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.159622229,99.18496972,0.159622229,80.81503028,0,0.73676042,0,0,0,9,20,0% -9/30/2018 5:00,126.4693312,299.1749961,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207306232,5.221588721,-0.88448338,0.88448338,0.681409256,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.378735847,112.2554,0.378735847,67.74459995,0,0.917981865,0,0,0,9,21,0% -9/30/2018 6:00,135.969736,314.6518373,0,0,0,0,0,0,0,0,0,0,0,0,0,2.373119576,5.491710559,-0.41386568,0.41386568,0.600928889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.573842529,125.018614,0.573842529,54.98138597,0,0.962868082,0,0,0,9,22,0% -9/30/2018 7:00,142.8306586,335.2405693,0,0,0,0,0,0,0,0,0,0,0,0,0,2.492865266,5.85105172,-0.062909407,0.062909407,0.540911832,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731651863,137.0250549,0.731651863,42.97494511,0,0.981661487,0,0,0,9,23,0% -10/1/2018 8:00,145.3598791,0.566424087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53700849,0.009885965,0.242704073,-0.242704073,0.488648849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841416598,147.2900125,0.841416598,32.70998745,0,0.990576404,0,0,0,10,0,0% -10/1/2018 9:00,142.6436779,25.77852396,0,0,0,0,0,0,0,0,0,0,0,0,0,2.489601837,0.449920119,0.547054553,-0.547054553,0.436601851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895664919,153.5939646,0.895664919,26.40603538,0,0.994175552,0,0,0,10,1,0% -10/1/2018 10:00,135.6581637,46.16197276,0,0,0,0,0,0,0,0,0,0,0,0,0,2.367681614,0.805678414,0.89391503,-0.89391503,0.377285216,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.890709523,152.9625411,0.890709523,27.03745891,0,0.993864977,0,0,0,10,2,0% -10/1/2018 11:00,126.0931626,61.48436145,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200740852,1.073104546,1.356563926,-1.356563926,0.298167595,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826898843,145.7814797,0.826898843,34.21852027,0,0.989533112,0,0,0,10,3,0% -10/1/2018 12:00,115.1656961,73.43271788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.010020582,1.281642706,2.124596146,-2.124596146,0.16682635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.708593328,135.1205795,0.708593328,44.87942046,0,0.979437665,0,0,0,10,4,0% -10/1/2018 13:00,103.5785778,83.519063,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807787217,1.457682638,4.025559145,-4.025559145,0,#DIV/0!,0,0,0.136634101,1,0.243484173,0,0.932838337,0.9716003,0.724496596,1,0,0,0.021952752,0.312029739,0.9396321,0.664128696,0.961238037,0.922476074,0,0,0,0,0,0,-0.543868347,122.9473643,0.543868347,57.0526357,0,0.958065986,0,0,0,10,5,0% -10/1/2018 14:00,91.76042121,92.82191421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601521473,1.620048021,29.98927312,-29.98927312,0,#DIV/0!,0,0,0.821374794,1,0.033332906,0,0.958165281,0.996927244,0.724496596,1,0,0,0.101005377,0.312029739,0.753779511,0.478276106,0.961238037,0.922476074,0,0,0,0,0,0,-0.343963913,110.118562,0.343963913,69.881438,0,0.904635914,0,0,0,10,6,0% -10/1/2018 15:00,79.94683393,102.1848052,104.5291121,381.1577062,37.99348781,37.63582858,0,37.63582858,36.84784398,0.7879846,72.6041159,46.11417865,26.48993726,1.145643839,25.34429342,1.395335479,1.783461297,-4.773893192,4.773893192,0.653462493,0.363472788,0.614170521,19.75383516,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.41954921,0.830015061,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.444964452,18.98813773,35.86451366,19.81815279,0,46.11417865,-0.120984511,96.94892489,0.120984511,83.05107511,0,0.636723956,35.86451366,49.18015507,68.05194154,10,7,90% -10/1/2018 16:00,68.70225225,112.4234676,307.4436348,661.2403119,67.27149535,137.7053026,70.14465107,67.56065154,65.24301156,2.317639984,76.5717525,0,76.5717525,2.02848379,74.54326871,1.199080505,1.962159667,-1.893551398,1.893551398,0.85397005,0.218809199,2.053249979,66.03957734,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.71406435,1.469629601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.48757262,63.47975367,64.20163697,64.94938327,70.14465107,0,0.106080422,83.91058217,-0.106080422,96.08941783,0.57865949,0,104.791505,64.94938327,147.2995774,10,8,41% -10/1/2018 17:00,58.31344934,124.4917821,492.6968022,778.6428368,83.69758343,337.5998178,252.7118687,84.88794909,81.17379248,3.714156611,121.9838349,0,121.9838349,2.523790952,119.4600439,1.017761689,2.172791488,-0.940921222,0.940921222,0.691060695,0.169876449,2.761632205,88.82358476,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.02733693,1.828477953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.000793132,85.38060824,80.02813006,87.2090862,252.7118687,0,0.324554284,71.06142636,-0.324554284,108.9385736,0.895942567,0,306.4434503,87.2090862,363.5200531,10,9,19% -10/1/2018 18:00,49.51583884,139.533607,636.5359029,835.4804261,94.11041498,529.7903355,433.7192203,96.07111525,91.27263874,4.79847651,157.1732755,0,157.1732755,2.837776242,154.3354992,0.86421442,2.435320859,-0.409626059,0.409626059,0.600203871,0.147847772,3.163697167,101.755376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.73473208,2.055959227,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.292087828,97.81113788,90.02681991,99.86709711,433.7192203,0,0.519125532,58.72638786,-0.519125532,121.2736121,0.953684182,0,503.6579799,99.86709711,569.0189976,10,10,13% -10/1/2018 19:00,43.40105686,158.4620204,726.7431002,862.5151562,100.0723658,685.9709775,583.4376663,102.5333112,97.05481474,5.478496467,179.2248296,0,179.2248296,3.017551056,176.2072786,0.757491341,2.765683994,-0.025381872,0.025381872,0.534494245,0.137699781,3.27939668,105.4766701,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.29277958,2.186205468,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.375911731,101.3881873,95.66869131,103.5743928,583.4376663,0,0.676437582,47.4341136,-0.676437582,132.5658864,0.97608335,0,665.1524831,103.5743928,732.9398517,10,11,10% -10/1/2018 20:00,41.24173605,180.5491493,756.4012552,870.3386835,101.963225,788.4427547,683.852025,104.5907297,98.88865755,5.702072167,186.4728091,0,186.4728091,3.074567438,183.3982416,0.719804083,3.151177117,0.307738609,-0.307738609,0.477527288,0.134800444,3.124489454,100.4943212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,95.05553905,2.227513642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.263681974,96.59896404,97.31922102,98.82647768,683.852025,0,0.785730932,38.21166883,-0.785730932,141.7883312,0.986364985,0,771.8469131,98.82647768,836.5268662,10,12,8% -10/1/2018 21:00,43.64666564,202.5280907,723.294149,861.5742373,99.85046042,825.6178992,723.3258017,102.2920975,96.83960063,5.452496816,178.3819002,0,178.3819002,3.010859791,175.3710404,0.761778023,3.53478201,0.644750621,-0.644750621,0.41989484,0.13804959,2.726129102,87.68168294,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.0859076,2.181357669,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.975071255,84.28296878,95.06097886,86.46432645,723.3258017,0,0.839539729,32.90845198,-0.839539729,147.091548,0.990443557,0,811.4743588,86.46432645,868.0635312,10,13,7% -10/1/2018 22:00,49.94550582,221.2346456,629.872918,833.2620292,93.65554841,790.6824939,695.1027577,95.57973619,90.83148807,4.748248115,155.5440417,0,155.5440417,2.824060337,152.7199814,0.871713523,3.861272986,1.042673025,-1.042673025,0.351846101,0.148689594,2.128259015,68.45212578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.31068128,2.0460221,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.541916412,65.798787,88.85259769,67.8448091,695.1027577,0,0.834194687,33.4679236,-0.834194687,146.5320764,0.990061953,0,777.0473918,67.8448091,821.4504625,10,14,6% -10/1/2018 23:00,58.85987919,236.0756559,483.2993931,774.1430283,82.96464529,680.2586537,596.1523836,84.1062701,80.46295513,3.643314972,119.6832235,0,119.6832235,2.501690163,117.1815333,1.027298689,4.120297479,1.606461307,-1.606461307,0.255432626,0.171663045,1.39629073,44.9095096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.34405303,1.812466007,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011607881,43.16872885,78.35566091,44.98119485,596.1523836,0,0.770080414,39.63888951,-0.770080414,140.3611105,0.985071716,0,665.6085122,44.98119485,695.0478046,10,15,4% -10/1/2018 0:00,69.31916962,248.0033214,296.1351539,651.4118144,66.08135263,490.8139428,424.4927948,66.32114792,64.08875604,2.232391878,73.79399319,0,73.79399319,1.992596596,71.8013966,1.209847745,4.328474515,2.64749495,-2.64749495,0.077405388,0.223145924,0.632388881,20.33980024,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.60455004,1.443629451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.458163592,19.55138965,62.06271363,20.9950191,424.4927948,0,0.651650439,49.33384621,-0.651650439,130.6661538,0.973271747,0,475.2095575,20.9950191,488.9503776,10,16,3% -10/1/2018 1:00,80.60356968,258.153907,93.55034705,355.3441003,35.53527164,208.3772862,173.2083121,35.16897412,34.46375209,0.705222032,23.75388428,0,23.75388428,1.071519551,22.68236473,1.40679768,4.505635655,5.98175755,-5.98175755,0,0.379851842,0.267879888,8.615938023,0.330112109,1,0.165643179,0,0.943385563,0.982147526,0.724496596,1,33.40749782,0.776312267,0.04883345,0.312029739,0.870868508,0.595365104,0.961238037,0.922476074,0.183849212,8.281967351,33.59134703,9.058279618,116.0301508,0,0.487438266,60.82765515,-0.487438266,119.1723448,0.947422908,0,143.5209699,9.058279618,149.4494327,10,17,4% -10/1/2018 2:00,92.45131267,267.4690757,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613579804,4.668216017,-22.28189722,22.28189722,0,#DIV/0!,0,0,1,0.700651012,0,0.044849387,0.961238037,1,0.605196688,0.880700093,0,0,0.115824807,0.176755607,0.724496596,0.448993192,0.980723571,0.941961607,0,0,0,0,0,0,0.285756278,73.39593976,-0.285756278,106.6040602,0.875025716,0,0,0,0,10,18,0% -10/1/2018 3:00,104.2873058,276.7594827,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820156855,4.830364209,-3.506249106,3.506249106,0.870242399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.064044281,86.32801984,-0.064044281,93.67198016,0,0,0,0,0,10,19,0% -10/1/2018 4:00,115.8827924,286.8742402,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022536273,5.00690003,-1.648701298,1.648701298,0.812098217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.164050134,99.44205928,0.164050134,80.55794072,0,0.745215123,0,0,0,10,20,0% -10/1/2018 5:00,126.8046837,298.9133494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213159238,5.217022125,-0.878347208,0.878347208,0.680359909,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.38298576,112.5187505,0.38298576,67.48124946,0,0.919446843,0,0,0,10,21,0% -10/1/2018 6:00,136.3349098,314.4321523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.379493062,5.487876331,-0.411923628,0.411923628,0.600596779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.577846963,125.2992516,0.577846963,54.70074844,0,0.9634719,0,0,0,10,22,0% -10/1/2018 7:00,143.2226764,335.1525088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.499707266,5.849514774,-0.063164762,0.063164762,0.5409555,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735360266,137.3376669,0.735360266,42.66233309,0,0.982006117,0,0,0,10,23,0% -10/2/2018 8:00,145.7465118,0.71401862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543756504,0.012461976,0.240859802,-0.240859802,0.488964238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844798823,147.6503878,0.844798823,32.34961216,0,0.990814311,0,0,0,10,0,0% -10/2/2018 9:00,142.979367,26.1245335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.495460717,0.455959125,0.543604997,-0.543604997,0.43719176,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898713288,153.9894467,0.898713288,26.01055326,0,0.994364904,0,0,0,10,1,0% -10/2/2018 10:00,135.9299315,46.57402871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.372424856,0.812870147,0.88826254,-0.88826254,0.378251849,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893439343,153.3086667,0.893439343,26.69133334,0,0.994036492,0,0,0,10,2,0% -10/2/2018 11:00,126.3154508,61.88966828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204620512,1.080178484,1.346957835,-1.346957835,0.299810334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829347337,146.031752,0.829347337,33.96824799,0,0.989711629,0,0,0,10,3,0% -10/2/2018 12:00,115.3572542,73.81520166,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013363901,1.288318307,2.105380261,-2.105380261,0.17011246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.710817061,135.3014326,0.710817061,44.69856741,0,0.979658413,0,0,0,10,4,0% -10/2/2018 13:00,103.7550961,83.88315255,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810868042,1.464037199,3.96575152,-3.96575152,0,#DIV/0!,0,0,0.128942443,1,0.247009643,0,0.932329481,0.971091444,0.724496596,1,0,0,0.020787885,0.312029739,0.942740564,0.66723716,0.961238037,0.922476074,0,0,0,0,0,0,-0.54593932,123.0888769,0.54593932,56.9111231,0,0.95841473,0,0,0,10,5,0% -10/2/2018 14:00,91.93483748,93.17688336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.604565611,1.626243401,27.21244311,-27.21244311,0,#DIV/0!,0,0,0.804818948,1,0.036731367,0,0.957837012,0.996598975,0.724496596,1,0,0,0.099537914,0.312029739,0.756775342,0.481271938,0.961238037,0.922476074,0,0,0,0,0,0,-0.345964594,110.2406893,0.345964594,69.75931069,0,0.905476541,0,0,0,10,6,0% -10/2/2018 15:00,80.12947155,102.5398363,101.6358729,375.6808376,37.23577661,36.8791547,0,36.8791547,36.11298056,0.766174141,71.96559647,46.20000632,25.76559014,1.12279605,24.64279409,1.398523106,1.789657758,-4.844986421,4.844986421,0.641304835,0.366364508,0.59203656,19.04193089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.71317054,0.813461916,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.428928472,18.30382826,35.14209901,19.11729018,0,46.20000632,-0.122976744,97.06393029,0.122976744,82.93606971,0,0.643419063,35.14209901,48.84325494,67.10903251,10,7,91% -10/2/2018 16:00,68.90812989,112.7849744,303.937719,659.3500187,66.66110396,135.4930256,68.55078893,66.94223664,64.65102573,2.29121091,75.70329709,0,75.70329709,2.010078238,73.69321885,1.202673748,1.968469151,-1.902770923,1.902770923,0.855546681,0.219324881,2.032828508,65.38275263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.14502505,1.456294841,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472777334,62.84838878,63.61780238,64.30468362,68.55078893,0,0.103967221,84.032333,-0.103967221,95.967667,0.56907919,0,102.6286298,64.30468362,144.7147592,10,8,41% -10/2/2018 17:00,58.55543505,124.8582076,488.8374512,777.7635091,83.09894015,334.9172924,250.6390287,84.27826369,80.5932005,3.685063193,121.0300393,0,121.0300393,2.505739648,118.5242996,1.021985137,2.179186822,-0.941340031,0.941340031,0.691132316,0.16999299,2.740351759,88.13913246,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.46924983,1.815399845,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.985375521,84.72268666,79.45462535,86.5380865,250.6390287,0,0.322256092,71.20058125,-0.322256092,108.7994187,0.894843895,0,303.73743,86.5380865,360.3748769,10,9,19% -10/2/2018 18:00,49.80758603,139.8829562,632.3263631,834.9317284,93.49769951,526.7527542,431.3076121,95.44514212,90.6783989,4.766743221,156.1341482,0,156.1341482,2.81930061,153.3148475,0.869306369,2.441418153,-0.407106204,0.407106204,0.599772951,0.147863042,3.141053738,101.0270855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.16352614,2.042573695,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.275682741,97.11107735,89.43920888,99.15365105,431.3076121,0,0.516578299,58.89699084,-0.516578299,121.1030092,0.953209252,0,500.5656151,99.15365105,565.4596967,10,10,13% -10/2/2018 19:00,43.74854582,158.7344064,722.1757574,862.0596931,99.43977229,682.5626448,580.6772827,101.8853622,96.44129626,5.444065907,178.0983495,0,178.0983495,2.998476028,175.0998734,0.763556167,2.770438028,-0.021142609,0.021142609,0.533769289,0.137694697,3.25537059,104.7039084,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.70304229,2.172385675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.35850491,100.6453794,95.0615472,102.8177651,580.6772827,0,0.673592893,47.65502463,-0.673592893,132.3449754,0.975771188,0,661.6697093,102.8177651,728.9618802,10,11,10% -10/2/2018 20:00,41.62925808,180.6641607,751.4860998,869.8491823,101.3095353,784.6293654,680.7096667,103.9196987,98.25467904,5.665019649,185.2613616,0,185.2613616,3.054856282,182.2065053,0.726567619,3.153184444,0.313632481,-0.313632481,0.476519377,0.134812254,3.099281149,99.68353546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,94.44613479,2.213232978,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.245418642,95.81960593,96.69155344,98.03283891,680.7096667,0,0.782560564,38.5043802,-0.782560564,141.4956198,0.986107182,0,767.9442443,98.03283891,832.1047767,10,12,8% -10/2/2018 21:00,44.0393402,202.46808,718.0649953,860.9292605,99.17509082,821.3671689,719.7694957,101.5976732,96.18459592,5.413077247,177.0936665,0,177.0936665,2.990494905,174.1031716,0.768631487,3.533734627,0.652909634,-0.652909634,0.418499566,0.138114365,2.700114001,86.84494786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.45629215,2.166603379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.956223402,83.4786672,94.41251556,85.64527057,719.7694957,0,0.836037905,33.27593282,-0.836037905,146.7240672,0.990194099,0,807.124023,85.64527057,863.1771397,10,13,7% -10/2/2018 22:00,50.31693917,221.0603501,624.3901967,832.2652923,92.9552498,785.9545919,691.0953688,94.85922309,90.15230605,4.706917046,154.1935759,0,154.1935759,2.80294375,151.3906321,0.878196258,3.858230955,1.054733354,-1.054733354,0.349783663,0.148873654,2.102032641,67.60859542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.65782568,2.030723205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.522915493,64.98795354,88.18074117,67.01867674,691.0953688,0,0.830378697,33.86234101,-0.830378697,146.137659,0.989786509,0,772.2176138,67.01867674,816.0799974,10,14,6% -10/2/2018 23:00,59.20363057,235.8495501,477.6584914,772.3488856,82.22479378,674.95767,591.6114656,83.34620434,79.74541287,3.600791472,118.2932123,0,118.2932123,2.47938091,115.8138314,1.033298283,4.116351189,1.626849343,-1.626849343,0.251946067,0.172141384,1.370882909,44.09230674,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.65432411,1.796303029,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993200001,42.38320237,77.64752411,44.1795054,591.6114656,0,0.765989926,40.00485923,-0.765989926,139.9951408,0.98472499,0,660.2221187,44.1795054,689.1367214,10,15,4% -10/2/2018 0:00,69.63966489,247.7580169,290.5173482,647.4938184,65.23929197,484.6153703,419.1532412,65.4621291,63.27208661,2.190042485,72.40649991,0,72.40649991,1.96720536,70.43929455,1.215441442,4.324193143,2.692564596,-2.692564596,0.069698025,0.224562465,0.610165394,19.6250165,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.81953632,1.425233587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.442062751,18.86431233,61.26159907,20.28954592,419.1532412,0,0.647347093,49.65811859,-0.647347093,130.3418814,0.972761683,0,468.9978114,20.28954592,482.2769134,10,16,3% -10/2/2018 1:00,80.9068371,257.9012684,88.73191314,344.5028889,34.28659454,200.3251063,166.4034805,33.92162585,33.25272721,0.668898642,22.54794697,0,22.54794697,1.033867329,21.51407964,1.412090695,4.501226279,6.188666971,-6.188666971,0,0.386406574,0.258466832,8.313181803,0.345622839,1,0.160200985,0,0.944072834,0.982834797,0.724496596,1,32.23644997,0.749033361,0.050804073,0.312029739,0.866052008,0.590548604,0.961238037,0.922476074,0.177248508,7.990946556,32.41369848,8.739979917,108.8906372,0,0.48302492,61.11684859,-0.48302492,118.8831514,0.946485672,0,135.4771264,8.739979917,141.1972685,10,17,4% -10/2/2018 2:00,92.75077683,267.2114108,0,0,0,0,0,0,0,0,0,0,0,0,0,1.618806439,4.663718917,-19.88092443,19.88092443,0,#DIV/0!,0,0,1,0.65870214,0,0.050257116,0.961238037,1,0.591882364,0.867385768,0,0,0.115824807,0.161707897,0.724496596,0.448993192,0.982645163,0.943883199,0,0,0,0,0,0,0.281230425,73.66634597,-0.281230425,106.333654,0.872209848,0,0,0,0,10,18,0% -10/2/2018 3:00,104.5885449,276.4959044,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825414468,4.8257639,-3.438646606,3.438646606,0.881803108,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.059541892,86.58648189,-0.059541892,93.41351811,0,0,0,0,0,10,19,0% -10/2/2018 4:00,116.1950036,286.6053013,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027985387,5.002206162,-1.631787614,1.631787614,0.809205806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.168443649,99.69734182,0.168443649,80.30265818,0,0.753164825,0,0,0,10,20,0% -10/2/2018 5:00,127.1380197,298.6486593,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218977049,5.212402412,-0.872364576,0.872364576,0.679336818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.387192523,112.7799224,0.387192523,67.22007758,0,0.920865275,0,0,0,10,21,0% -10/2/2018 6:00,136.69833,314.2083179,0,0,0,0,0,0,0,0,0,0,0,0,0,2.385835941,5.483969685,-0.41004181,0.41004181,0.600274969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.581801996,125.5773855,0.581801996,54.42261452,0,0.964060109,0,0,0,10,22,0% -10/2/2018 7:00,143.6135547,335.0608993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.50652938,5.847915887,-0.063444635,0.063444635,0.541003361,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739015949,137.6476569,0.739015949,42.3523431,0,0.982342462,0,0,0,10,23,0% -10/3/2018 8:00,146.1323459,0.86197523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550490579,0.015044306,0.239009604,-0.239009604,0.48928064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.848128172,148.008659,0.848128172,31.99134105,0,0.991046646,0,0,0,10,0,0% -10/3/2018 9:00,143.313946,26.47331942,0,0,0,0,0,0,0,0,0,0,0,0,0,2.501300221,0.462046588,0.540163929,-0.540163929,0.437780217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901711795,154.3839954,0.901711795,25.61600462,0,0.99454991,0,0,0,10,1,0% -10/3/2018 10:00,136.2005149,46.98789139,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377147429,0.820093413,0.882637331,-0.882637331,0.379213816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896125278,153.6533361,0.896125278,26.34666395,0,0.99420423,0,0,0,10,2,0% -10/3/2018 11:00,126.5369158,62.29543542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208485805,1.087260457,1.337419494,-1.337419494,0.301441486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831760475,146.2800083,0.831760475,33.71999168,0,0.98988654,0,0,0,10,3,0% -10/3/2018 12:00,115.5485044,74.19730333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.016701848,1.294987239,2.086373206,-2.086373206,0.173362858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.713015928,135.4808323,0.713015928,44.51916766,0,0.979875339,0,0,0,10,4,0% -10/3/2018 13:00,103.9318214,84.2463345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813952481,1.47037592,3.90723701,-3.90723701,0,#DIV/0!,0,0,0.121283285,1,0.250557009,0,0.931814789,0.970576752,0.724496596,1,0,0,0.019619968,0.312029739,0.945867857,0.670364453,0.961238037,0.922476074,0,0,0,0,0,0,-0.547997155,123.2297177,0.547997155,56.77028232,0,0.95875865,0,0,0,10,5,0% -10/3/2018 14:00,92.1099279,93.53050854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607621516,1.632415325,24.88604046,-24.88604046,0,#DIV/0!,0,0,0.788387102,1,0.040161563,0,0.957502881,0.996264844,0.724496596,1,0,0,0.098064537,0.312029739,0.759800652,0.484297248,0.961238037,0.922476074,0,0,0,0,0,0,-0.347964294,110.3628527,0.347964294,69.63714731,0,0.906307096,0,0,0,10,6,0% -10/3/2018 15:00,80.31312369,102.8930102,98.73784568,370.0584523,36.47047897,36.11508706,0,36.11508706,35.37075947,0.744327588,71.28930275,46.24944942,25.03985333,1.099719503,23.94013383,1.401728441,1.795821806,-4.919150173,4.919150173,0.628622087,0.369366768,0.570003645,18.3332766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.99971939,0.796743036,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.4129657,17.62264281,34.41268509,18.41938584,0,46.24944942,-0.124978768,97.17952966,0.124978768,82.82047034,0,0.649932046,34.41268509,48.47838512,66.14081859,10,7,92% -10/3/2018 16:00,69.11536823,113.1438822,300.4034502,657.4044764,66.04703215,133.2654533,66.94541478,66.32003854,64.05547044,2.264568099,74.82785616,0,74.82785616,1.991561707,72.83629446,1.206290739,1.974733273,-1.912273929,1.912273929,0.857171791,0.219861097,2.012236691,64.72044902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.57255466,1.442879677,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457858633,62.21175736,63.03041329,63.65463703,66.94541478,0,0.101832916,84.15527228,-0.101832916,95.84472772,0.558999624,0,100.452875,63.65463703,142.1135618,10,8,41% -10/3/2018 17:00,58.79889066,125.2209225,484.9425956,776.8558107,82.49743762,332.2035615,248.5380239,83.66553762,80.0098355,3.655702126,120.0675489,0,120.0675489,2.487602128,117.5799468,1.026234239,2.185517389,-0.941823771,0.941823771,0.69121504,0.170117945,2.718909822,87.44948608,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.9084972,1.802259273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.969840911,84.05977232,78.87833811,85.8620316,248.5380239,0,0.319928126,71.34142168,-0.319928126,108.6585783,0.893714898,0,301.0004727,85.8620316,357.1954551,10,9,19% -10/3/2018 18:00,50.10053382,140.2272045,628.0789254,834.3640151,92.88239906,523.6755076,428.8591313,94.81637627,90.08165203,4.734724241,155.0857541,0,155.0857541,2.800747031,152.2850071,0.874419272,2.447426419,-0.40459933,0.40459933,0.59934425,0.147883324,3.1182636,100.2940763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.58991035,2.02913169,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.259171363,96.40648104,88.84908172,98.43561273,428.8591313,0,0.513995239,59.06968102,-0.513995239,120.930319,0.952722834,0,497.4329688,98.43561273,561.8571087,10,10,13% -10/3/2018 19:00,44.09643721,159.0010465,717.5719035,861.5890823,98.80484286,679.1106851,577.8758127,101.2348724,95.82551229,5.409360112,176.9629463,0,176.9629463,2.979330563,173.9836158,0.769628018,2.775091775,-0.016892759,0.016892759,0.533042522,0.137693299,3.231224126,103.9272752,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.11112732,2.158514851,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.34101088,99.89884995,94.4521382,102.0573648,577.8758127,0,0.670709303,47.87816724,-0.670709303,132.1218328,0.975452055,0,658.1422874,102.0573648,724.9367916,10,11,10% -10/3/2018 20:00,42.01618993,180.7752334,746.5392868,869.3458132,100.6538412,780.7723669,677.5258818,103.246485,97.61875652,5.627728484,184.0421779,0,184.0421779,3.035084685,181.0070932,0.733320853,3.155123029,0.319557405,-0.319557405,0.475506155,0.134827253,3.073990341,98.87009614,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.83486188,2.198908523,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.227095538,95.03769711,96.06195741,97.23660564,677.5258818,0,0.779351406,38.79877095,-0.779351406,141.2012291,0.985844088,0,763.9968427,97.23660564,827.6362564,10,12,8% -10/3/2018 21:00,44.43093814,202.4071897,712.8121397,860.2695612,98.49813957,817.0764497,716.1749134,100.9015362,95.52805725,5.373479002,175.7996383,0,175.7996383,2.970082328,172.8295559,0.77546616,3.53267189,0.66113017,-0.66113017,0.417093772,0.138182466,2.674064497,86.00710625,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.82520221,2.151814536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.937350625,82.67330197,93.76255284,84.8251165,716.1749134,0,0.832500586,33.64352794,-0.832500586,146.3564721,0.989939982,0,802.7327339,84.8251165,858.2490761,10,13,7% -10/3/2018 22:00,50.68726252,220.88674,618.8943755,831.2495416,92.25382597,781.1930861,687.0555661,94.13751996,89.47203274,4.665487225,152.8398999,0,152.8398999,2.781793233,150.0581067,0.88465962,3.855200887,1.066919495,-1.066919495,0.34769971,0.149062311,2.075829689,66.76581842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.0039211,2.015399728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.503931543,64.17784423,87.50785265,66.19324396,687.0555661,0,0.826533468,34.25572926,-0.826533468,145.7442707,0.989506382,0,767.35372,66.19324396,810.6758743,10,14,6% -10/3/2018 23:00,59.54626208,235.6242757,472.0174589,770.5221998,81.48406384,669.6299808,587.0446951,82.58528566,79.02701867,3.558266986,116.9031429,0,116.9031429,2.457045169,114.4460977,1.039278331,4.112419409,1.64754714,-1.64754714,0.248406535,0.172629343,1.345571546,43.27820629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.96377629,1.780120861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974862005,41.60065806,76.93863829,43.38077892,587.0446951,0,0.761879016,40.36987106,-0.761879016,139.6301289,0.984372782,0,654.8094582,43.38077892,683.2013103,10,15,4% -10/3/2018 0:00,69.95890957,247.5131906,284.9166126,643.494013,64.39509569,478.389842,413.7886743,64.60116773,62.45334596,2.147821775,71.0230811,0,71.0230811,1.941749728,69.08133137,1.221013313,4.319920118,2.738777,-2.738777,0.061795239,0.226013833,0.588164869,18.91740399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.03253166,1.406791068,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.426123445,18.18412827,60.45865511,19.59091934,413.7886743,0,0.643034226,49.98155204,-0.643034226,130.018448,0.972243641,0,462.7620625,19.59091934,475.5839274,10,16,3% -10/3/2018 1:00,81.20851329,257.6486483,83.98696252,333.4193158,33.02748813,192.2446103,159.5798936,32.6647167,32.0315875,0.6331292,21.35951205,0,21.35951205,0.995900626,20.36361143,1.417355938,4.496817226,6.408433247,-6.408433247,0,0.393245417,0.248975156,8.007896876,0.361329636,1,0.154796017,0,0.944748807,0.98351077,0.724496596,1,31.0547818,0.721526613,0.052774189,0.312029739,0.861267508,0.585764104,0.961238037,0.922476074,0.170625575,7.697495072,31.22540738,8.419021685,101.9189488,0,0.478616223,61.4049357,-0.478616223,118.5950643,0.945532166,0,127.5930518,8.419021685,133.1031331,10,17,4% -10/3/2018 2:00,93.04856246,266.9532577,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624003779,4.659213296,-17.96064417,17.96064417,0,#DIV/0!,0,0,1,0.615621856,0,0.055619865,0.961238037,1,0.578907614,0.854411018,0,0,0.115824807,0.147052052,0.724496596,0.448993192,0.984467771,0.945705808,0,0,0,0,0,0,0.27671891,73.9355238,-0.27671891,106.0644762,0.869311228,0,0,0,0,10,18,0% -10/3/2018 3:00,104.8878613,276.2312249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.830638524,4.821144371,-3.374116694,3.374116694,0.892838373,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.055065656,86.84337368,-0.055065656,93.15662632,0,0,0,0,0,10,19,0% -10/3/2018 4:00,116.5050978,286.3344315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033397551,4.997478592,-1.615368273,1.615368273,0.806397934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.172800467,99.95068425,0.172800467,80.04931575,0,0.760648931,0,0,0,10,20,0% -10/3/2018 5:00,127.4691892,298.3808954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224757046,5.207729049,-0.866534827,0.866534827,0.678339873,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.391354044,113.0387782,0.391354044,66.96122176,0,0.922238448,0,0,0,10,21,0% -10/3/2018 6:00,137.0598461,313.9802304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392145586,5.479988807,-0.408221054,0.408221054,0.599963601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.585705818,125.8528685,0.585705818,54.14713151,0,0.964632912,0,0,0,10,22,0% -10/3/2018 7:00,144.0031633,334.9655576,0,0,0,0,0,0,0,0,0,0,0,0,0,2.513329333,5.846251861,-0.063750027,0.063750027,0.541055586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.742617446,137.9548617,0.742617446,42.04513826,0,0.982670583,0,0,0,10,23,0% -10/4/2018 8:00,146.5172854,1.010149779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557209042,0.01763044,0.237152511,-0.237152511,0.489598222,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851403551,148.364657,0.851403551,31.63534296,0,0.991273442,0,0,0,10,0,0% -10/4/2018 9:00,143.6473466,26.82475515,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507119159,0.468180298,0.536730402,-0.536730402,0.438367385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904659727,154.777493,0.904659727,25.22250704,0,0.9947306,0,0,0,10,1,0% -10/4/2018 10:00,136.4698783,47.4034034,0,0,0,0,0,0,0,0,0,0,0,0,0,2.381848706,0.827345466,0.877038357,-0.877038357,0.380171297,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898766975,153.9964619,0.898766975,26.0035381,0,0.994368227,0,0,0,10,2,0% -10/4/2018 11:00,126.7575466,62.70150833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.21233654,1.094347766,1.327947352,-1.327947352,0.303061318,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834138214,146.5262095,0.834138214,33.4737905,0,0.990057895,0,0,0,10,3,0% -10/4/2018 12:00,115.7394482,74.57888273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020034446,1.301647056,2.067570635,-2.067570635,0.176578287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.715190132,135.6587834,0.715190132,44.34121663,0,0.980088521,0,0,0,10,4,0% -10/4/2018 13:00,104.108758,84.60847909,0,0,0,0,0,0,0,0,0,0,0,0,0,1.817040606,1.476696535,3.84997236,-3.84997236,0,#DIV/0!,0,0,0.113656186,1,0.254126496,0,0.931294183,0.970056147,0.724496596,1,0,0,0.018448956,0.312029739,0.94901418,0.673510776,0.961238037,0.922476074,0,0,0,0,0,0,-0.550042218,123.3699094,0.550042218,56.63009063,0,0.959097887,0,0,0,10,5,0% -10/4/2018 14:00,92.28569238,93.88266403,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610689185,1.638561598,22.90864679,-22.90864679,0,#DIV/0!,0,0,0.772077468,1,0.043623946,0,0.957162769,0.995924732,0.724496596,1,0,0,0.09658518,0.312029739,0.762855782,0.487352378,0.961238037,0.922476074,0,0,0,0,0,0,-0.349963446,110.4850793,0.349963446,69.5149207,0,0.907127935,0,0,0,10,6,0% -10/4/2018 15:00,80.4977765,103.2442005,95.83616674,364.2871583,35.69750031,35.34354247,0,35.34354247,34.62108897,0.722453506,70.57416454,46.26116502,24.31299952,1.076411344,23.23658818,1.40495124,1.801951232,-4.996589444,4.996589444,0.615379191,0.372484643,0.548085405,17.62831065,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.27910759,0.779856355,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.39708601,16.94500272,33.6761936,17.72485908,0,46.26116502,-0.12699093,97.29574405,0.12699093,82.70425595,0,0.656271094,33.6761936,48.08472443,65.14668405,10,7,93% -10/4/2018 16:00,69.32393887,113.5000622,296.8414064,655.4025105,65.42928396,131.0227779,65.32871234,65.69406555,63.45634964,2.237715908,73.94557001,0,73.94557001,1.97293432,71.97263569,1.209930984,1.980949786,-1.922073916,1.922073916,0.858847688,0.22041832,1.991478194,64.05278437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.99665695,1.429384199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.442819172,61.5699727,62.43947613,62.9993569,65.32871234,0,0.099677238,84.27941526,-0.099677238,95.72058474,0.548380967,0,98.26449856,62.9993569,139.4963177,10,8,42% -10/4/2018 17:00,59.04376282,125.5798037,481.0130721,775.9194582,81.89312596,329.4588248,246.408999,83.04982577,79.42374605,3.626079718,119.0965682,0,119.0965682,2.469379901,116.6271883,1.030508064,2.191781048,-0.942376666,0.942376666,0.691309591,0.170251352,2.697312159,86.75483099,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.34512574,1.789057332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.954193477,83.39204343,78.29931921,85.18110076,246.408999,0,0.317570331,71.48394774,-0.317570331,108.5160523,0.892554561,0,298.2327953,85.18110076,353.9821221,10,9,19% -10/4/2018 18:00,50.39459904,140.5662613,623.7947895,833.7772849,92.26458942,520.5590769,426.3741767,94.18490024,89.48247163,4.702428615,154.0283866,0,154.0283866,2.782117791,151.2462688,0.879551679,2.453344078,-0.402107968,0.402107968,0.598918202,0.147908561,3.095334293,99.556591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.01395536,2.015634869,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.242559158,95.69758209,88.25651452,97.71321696,426.3741767,0,0.51137658,59.24443336,-0.51137658,120.7555666,0.952224697,0,494.2605358,97.71321696,558.211882,10,10,13% -10/4/2018 19:00,44.44462569,159.261909,712.9331303,861.1034557,98.16767613,675.6159692,575.0340196,100.5819496,95.2075585,5.37439108,175.8190091,0,175.8190091,2.960117636,172.8588915,0.775705053,2.779644685,-0.012634423,0.012634423,0.532314303,0.137695489,3.206966413,103.1470637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.51712662,2.14459515,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.323436249,99.14888103,93.84056287,101.2934762,575.0340196,0,0.667787379,48.10347752,-0.667787379,131.8965225,0.975125869,0,654.5711107,101.2934762,720.8656649,10,11,10% -10/4/2018 20:00,42.40241949,180.882347,741.5627939,868.8288032,99.99626403,776.873073,674.3018517,102.5712213,96.98100772,5.590213578,182.8157412,0,182.8157412,3.015256307,179.8004849,0.740061831,3.156992513,0.325511319,-0.325511319,0.474487976,0.134845309,3.048627485,98.05433952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,93.22183347,2.18454293,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.208720235,94.25356082,95.43055371,96.43810375,674.3018517,0,0.776104394,39.0947317,-0.776104394,140.9052683,0.985575677,0,760.0060579,96.43810375,823.122868,10,12,8% -10/4/2018 21:00,44.82133907,202.345359,707.5379099,859.5954633,97.81975147,812.7475172,712.5436725,100.2038447,94.87012505,5.33371963,174.5003843,0,174.5003843,2.949626423,171.5507579,0.782279942,3.531592741,0.669410033,-0.669410033,0.415677832,0.138253725,2.647992039,85.16852638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.19277276,2.136994303,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.918461218,81.8672271,93.11123397,84.0042214,712.5436725,0,0.828929075,34.0111152,-0.828929075,145.9888848,0.989681209,0,798.302317,84.0042214,853.2813998,10,13,7% -10/4/2018 22:00,51.05634461,220.7137568,613.3880718,830.2152167,91.55144696,776.400204,682.9853925,93.41481143,88.79083305,4.623978381,151.4836535,0,151.4836535,2.760613915,148.7230396,0.891101318,3.85218176,1.079229256,-1.079229256,0.345594617,0.149255343,2.04966219,65.92418169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.34912605,2.000055384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484973279,63.36883099,86.83409933,65.36888638,682.9853925,0,0.822660653,34.64797086,-0.822660653,145.3520291,0.989221598,0,762.4580006,65.36888638,805.2406294,10,14,6% -10/4/2018 23:00,59.88763807,235.399803,466.3791275,768.6635058,80.74265487,664.2782225,582.4544937,81.82372878,78.30796592,3.515762863,115.513708,0,115.513708,2.434688953,113.079019,1.045236466,4.108501621,1.668554602,-1.668554602,0.244814048,0.173126648,1.320368861,42.4676013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.27259543,1.763923859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956602745,40.82147371,76.22919818,42.58539756,582.4544937,0,0.757749639,40.73378938,-0.757749639,139.2662106,0.984015145,0,649.3732413,42.58539756,677.2445323,10,15,4% -10/4/2018 0:00,70.27676789,247.268837,279.3359916,639.4125244,63.54898691,472.1402547,408.4017515,63.73850318,61.63275048,2.105752696,69.64448162,0,69.64448162,1.916236426,67.7282452,1.226560987,4.315655344,2.786159047,-2.786159047,0.053692431,0.227500175,0.56640024,18.21737871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24374408,1.388306768,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410355046,17.51123735,59.65409912,18.89954412,408.4017515,0,0.638714032,50.3040052,-0.638714032,129.6959948,0.971717705,0,456.505312,18.89954412,468.8746856,10,16,3% -10/4/2018 1:00,81.5084532,257.396056,79.32101996,322.099682,31.75865553,184.1433722,152.7444019,31.39897024,30.80101489,0.597955354,20.18994028,0,20.18994028,0.957640641,19.23229964,1.422590877,4.492408658,6.642189386,-6.642189386,0,0.400381331,0.23941016,7.700253722,0.377229361,1,0.149430508,0,0.945413321,0.984175285,0.724496596,1,29.86322052,0.693807385,0.054742938,0.312029739,0.856517074,0.58101367,0.961238037,0.922476074,0.163981989,7.401776771,30.0272025,8.095584156,95.12472887,0,0.474214693,61.69176889,-0.474214693,118.3082311,0.944562525,0,119.8784566,8.095584156,125.1768545,10,17,4% -10/4/2018 2:00,93.34453534,266.6946336,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62916948,4.654699453,-16.39043235,16.39043235,0,#DIV/0!,0,0,1,0.571382532,0,0.06093567,0.961238037,1,0.566271694,0.841775098,0,0,0.115824807,0.132784909,0.724496596,0.448993192,0.986195272,0.947433309,0,0,0,0,0,0,0.272224131,74.20334144,-0.272224131,105.7966586,0.866327818,0,0,0,0,10,18,0% -10/4/2018 3:00,105.1851186,275.9654628,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835826644,4.816505947,-3.312483761,3.312483761,0.903378225,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.050617931,87.0985663,-0.050617931,92.9014337,0,0,0,0,0,10,19,0% -10/4/2018 4:00,116.8129335,286.0616406,0,0,0,0,0,0,0,0,0,0,0,0,0,2.038770298,4.992717492,-1.599431426,1.599431426,0.803672572,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.177118365,100.2019575,0.177118365,79.7980425,0,0.767702905,0,0,0,10,20,0% -10/4/2018 5:00,127.798044,298.1100363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230496645,5.203001667,-0.860857128,0.860857128,0.677368929,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.395468312,113.2951847,0.395468312,66.7048153,0,0.92356762,0,0,0,10,21,0% -10/4/2018 6:00,137.4193079,313.7477951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39841938,5.475932045,-0.406462026,0.406462026,0.59966279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.589556708,126.1255571,0.589556708,53.87444285,0,0.965190516,0,0,0,10,22,0% -10/4/2018 7:00,144.3913708,334.8663055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.520104832,5.844519585,-0.064081798,0.064081798,0.541112322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746163368,138.259121,0.746163368,41.74087903,0,0.982990546,0,0,0,10,23,0% -10/5/2018 8:00,146.9012328,1.158400974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563910188,0.020217911,0.235287694,-0.235287694,0.489917124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.854623931,148.7182131,0.854623931,31.28178686,0,0.991494735,0,0,0,10,0,0% -10/5/2018 9:00,143.9794986,27.17871532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512916305,0.474358069,0.533303625,-0.533303625,0.438953398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.907556414,155.1698205,0.907556414,24.83017949,0,0.994907006,0,0,0,10,1,0% -10/5/2018 10:00,136.7379831,47.82040776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386528017,0.834623565,0.871464777,-0.871464777,0.381124436,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901364097,154.337955,0.901364097,25.66204499,0,0.994528521,0,0,0,10,2,0% -10/5/2018 11:00,126.9773289,63.10773343,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216172465,1.101437732,1.318540176,-1.318540176,0.30467004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836480507,146.7703149,0.836480507,33.22968509,0,0.990225744,0,0,0,10,3,0% -10/5/2018 12:00,115.9300825,74.95980091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.023361642,1.308295333,2.048968864,-2.048968864,0.179759377,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.717339846,135.8352877,0.717339846,44.16471228,0,0.980298031,0,0,0,10,4,0% -10/5/2018 13:00,104.2859048,84.96945795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820132401,1.482996805,3.793917991,-3.793917991,0,#DIV/0!,0,0,0.10606095,1,0.257718218,0,0.930767605,0.969529569,0.724496596,1,0,0,0.017274841,0.312029739,0.952179637,0.676676233,0.961238037,0.922476074,0,0,0,0,0,0,-0.552074818,123.5094709,0.552074818,56.49052909,0,0.959432565,0,0,0,10,5,0% -10/5/2018 14:00,92.4621252,94.23322584,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613768518,1.644680056,21.20722385,-21.20722385,0,#DIV/0!,0,0,0.755888886,1,0.047118842,0,0.956816567,0.995578531,0.724496596,1,0,0,0.095099831,0.312029739,0.765940961,0.490437557,0.961238037,0.922476074,0,0,0,0,0,0,-0.351962404,110.6073916,0.351962404,69.39260844,0,0.907939372,0,0,0,10,6,0% -10/5/2018 15:00,80.68340977,103.5932828,92.9321327,358.363807,34.91677278,34.56446492,0,34.56446492,33.86390325,0.700561671,69.81910254,46.23376151,23.58534103,1.052869528,22.5324715,1.408191152,1.808043867,-5.07752373,5.07752373,0.601538613,0.375723356,0.526296859,16.92751613,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.55127188,0.762800389,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.381300283,16.27137237,32.93257216,17.03417276,0,46.23376151,-0.129013479,97.41258878,0.129013479,82.58741122,0,0.662443596,32.93257216,47.661432,64.12602618,10,7,95% -10/5/2018 16:00,69.53380696,113.8533891,293.2522927,653.3430108,64.80787506,128.7653005,63.70096237,65.06433817,62.85367851,2.210659653,73.05661007,0,73.05661007,1.954196549,71.10241352,1.213593873,1.987116504,-1.932184334,1.932184334,0.860576671,0.220996994,1.970557272,63.37989561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.41734654,1.415808747,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427662035,60.92316643,61.84500858,62.33897517,63.70096237,0,0.097500029,84.40477091,-0.097500029,95.59522909,0.537179639,0,96.06386853,62.33897517,136.863481,10,8,42% -10/5/2018 17:00,59.28999181,125.934734,477.0498401,774.9542167,81.28606443,326.6834037,244.2522108,82.43119287,78.83498967,3.596203201,118.1173316,0,118.1173316,2.451074756,115.6662568,1.034805571,2.197975751,-0.943002799,0.943002799,0.691416666,0.170393233,2.675565032,86.05536863,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.77919071,1.775795317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.938437758,82.71969361,77.71762847,84.49548892,244.2522108,0,0.315182762,71.62815266,-0.315182762,108.3718473,0.891361883,0,295.434739,84.49548892,350.7353466,10,9,19% -10/5/2018 18:00,50.68969301,140.9000441,619.4752662,833.1715726,91.64435385,517.4040678,423.8532631,93.55080467,88.88093845,4.669866224,152.9623657,0,152.9623657,2.7634154,150.1989503,0.88470204,2.459169686,-0.399634565,0.399634565,0.598495225,0.147938681,3.072273757,98.81488489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.43573879,2.00208505,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.225851878,94.98462597,87.66159067,96.98671102,423.8532631,0,0.508722665,59.42121548,-0.508722665,120.5787845,0.951714621,0,491.0489383,96.98671102,554.5248009,10,10,13% -10/5/2018 19:00,44.79300213,159.5169708,708.2611229,860.6029741,97.52837678,672.0794849,572.152777,99.92670789,94.58753638,5.339171515,174.6669496,0,174.6669496,2.940840401,171.7261092,0.781785369,2.784096354,-0.008369655,0.008369655,0.531584985,0.137701158,3.182606859,102.3635767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.92113778,2.13062886,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.305787835,98.39576354,93.22692561,100.5263924,572.152777,0,0.664827794,48.3308844,-0.664827794,131.6691156,0.974792555,0,650.9571928,100.5263924,716.7497061,10,11,10% -10/5/2018 20:00,42.78783278,180.9854894,736.5586687,868.298405,99.33692979,772.9328995,671.0388543,101.8940452,96.34155485,5.552490369,181.5825518,0,181.5825518,2.995374947,178.5871768,0.746788562,3.158792689,0.331492168,-0.331492168,0.47346519,0.134866283,3.023203203,97.23660719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,92.60716705,2.170138953,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.190300429,93.4675254,94.79746748,95.63766436,671.0388543,0,0.772820554,39.39214781,-0.772820554,140.6078522,0.985301928,0,755.9733443,95.63766436,818.5662828,10,12,8% -10/5/2018 21:00,45.21042258,202.2825365,702.2446773,858.9073157,97.14007451,808.3822273,708.8774674,99.50475986,94.21094286,5.293817007,173.196484,0,173.196484,2.929131655,170.2673523,0.78907073,3.530496281,0.677746994,-0.677746994,0.414252128,0.138327961,2.621908117,84.32957778,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.55914176,2.122145913,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.899563505,81.06079779,92.45870527,83.18294371,708.8774674,0,0.825324752,34.37856997,-0.825324752,145.62143,0.989417787,0,793.8346802,83.18294371,848.2762532,10,13,7% -10/5/2018 22:00,51.42405564,220.5413496,607.8739179,829.1627865,90.84828479,771.5782286,678.8869444,92.69128417,88.10887381,4.58241036,150.1254801,0,150.1254801,2.739410981,147.3860691,0.897519086,3.849172687,1.091660349,-1.091660349,0.343468775,0.149452513,2.023542085,65.08406934,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.69360089,1.98469393,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.466049352,62.56128304,86.15965024,64.54597697,678.8869444,0,0.818761955,35.03894791,-0.818761955,144.9610521,0.988932189,0,757.5328026,64.54597697,799.7768536,10,14,6% -10/5/2018 23:00,60.22762515,235.1761081,460.7463154,766.7733814,80.0007677,658.9050624,577.8433127,81.06174973,77.58844938,3.473300346,114.1255968,0,114.1255968,2.412318318,111.7132785,1.051170359,4.104597408,1.689871435,-1.689871435,0.241168654,0.173633006,1.295286859,41.66087792,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.58096877,1.747716409,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.93843092,40.0460205,75.51939969,41.79373691,577.8433127,0,0.753603772,41.09648043,-0.753603772,138.9035196,0.983652137,0,643.9162089,41.79373691,671.2693739,10,15,4% -10/5/2018 0:00,70.59310681,247.0249556,273.77849,635.2495594,62.70119202,465.8695219,402.9951442,62.87437764,60.81051974,2.063857902,68.27143689,0,68.27143689,1.890672282,66.38076461,1.232082143,4.311398809,2.834738134,-2.834738134,0.045384918,0.229021615,0.544884091,17.52534539,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.45338461,1.369785632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.394766669,16.8460286,58.84815128,18.21581423,402.9951442,0,0.634388703,50.62533954,-0.634388703,129.3746605,0.971183969,0,450.2305748,18.21581423,462.1524609,10,16,3% -10/5/2018 1:00,81.80651391,257.1435055,74.73967739,310.5520248,30.48091897,176.0296595,145.9044335,30.12522606,29.5618068,0.563419258,19.04061226,0,19.04061226,0.91911217,18.12150009,1.427793017,4.488000822,6.891202921,-6.891202921,0,0.40782781,0.229778042,7.390451701,0.393318526,1,0.144106648,0,0.946066236,0.984828199,0.724496596,1,28.66260762,0.665893638,0.056709447,0.312029739,0.851802745,0.576299341,0.961238037,0.922476074,0.157319819,7.103983285,28.81992744,7.769876923,88.51751682,0,0.469822837,61.97720285,-0.469822837,118.0227971,0.943576906,0,112.3430121,7.769876923,117.4282411,10,17,5% -10/5/2018 2:00,93.63856454,266.4355607,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634301258,4.650177778,-15.08306247,15.08306247,0,#DIV/0!,0,0,1,0.525956104,0,0.066202646,0.961238037,1,0.55397338,0.829476784,0,0,0.115824807,0.118902544,0.724496596,0.448993192,0.987831555,0.949069592,0,0,0,0,0,0,0.267748433,74.46967067,-0.267748433,105.5303293,0.863257544,0,0,0,0,10,18,0% -10/5/2018 3:00,105.4801839,275.6986426,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840976504,4.811849057,-3.253585068,3.253585068,0.913450495,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.046201006,87.35193473,-0.046201006,92.64806527,0,0,0,0,0,10,19,0% -10/5/2018 4:00,117.1183725,285.7869458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044101215,4.987923164,-1.583965402,1.583965402,0.801027727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.181395198,100.4510367,0.181395198,79.54896329,0,0.774358746,0,0,0,10,20,0% -10/5/2018 5:00,128.1244386,297.8360697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236193305,5.198220047,-0.855330487,0.855330487,0.676423817,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.399533409,113.5490129,0.399533409,66.45098715,0,0.92485402,0,0,0,10,21,0% -10/5/2018 6:00,137.7765668,313.5109257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404654723,5.471797894,-0.404765248,0.404765248,0.599372624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59335303,126.3953122,0.59335303,53.60468784,0,0.965733134,0,0,0,10,22,0% -10/5/2018 7:00,144.7780455,334.7629691,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526853579,5.842716025,-0.064440678,0.064440678,0.541173695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.749652407,138.5602773,0.749652407,41.43972272,0,0.983302422,0,0,0,10,23,0% -10/6/2018 8:00,147.2840894,1.306589776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.570592296,0.022804294,0.233414451,-0.233414451,0.490237468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857788352,149.0691587,0.857788352,30.93084125,0,0.991710563,0,0,0,10,0,0% -10/6/2018 9:00,144.3103304,27.53507545,0,0,0,0,0,0,0,0,0,0,0,0,0,2.51869041,0.480577726,0.529882946,-0.529882946,0.439538369,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910401236,155.5608584,0.910401236,24.43914164,0,0.995079161,0,0,0,10,1,0% -10/6/2018 10:00,137.004789,48.23874794,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39118466,0.841924979,0.865915922,-0.865915922,0.382073346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903916338,154.6777252,0.903916338,25.32227483,0,0.994685146,0,0,0,10,2,0% -10/6/2018 11:00,127.1962458,63.51395828,0,0,0,0,0,0,0,0,0,0,0,0,0,2.219993285,1.108527693,1.309196994,-1.309196994,0.306267818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.838787311,147.0122833,0.838787311,32.98771671,0,0.990390133,0,0,0,10,3,0% -10/6/2018 12:00,116.1204009,75.33992051,0,0,0,0,0,0,0,0,0,0,0,0,0,2.026683325,1.314929671,2.030564761,-2.030564761,0.182906664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.719465221,136.0103457,0.719465221,43.9896543,0,0.980503937,0,0,0,10,4,0% -10/6/2018 13:00,104.4632568,85.3291445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.823227778,1.489274519,3.739037432,-3.739037432,0,#DIV/0!,0,0,0.098497585,1,0.261332189,0,0.930235008,0.968996971,0.724496596,1,0,0,0.016097646,0.312029739,0.955364246,0.679860842,0.961238037,0.922476074,0,0,0,0,0,0,-0.554095218,123.6484183,0.554095218,56.35158173,0,0.959762802,0,0,0,10,5,0% -10/6/2018 14:00,92.63921591,94.58207207,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616859334,1.650768571,19.72782755,-19.72782755,0,#DIV/0!,0,0,0.739820714,1,0.05064647,0,0.956464178,0.995226141,0.724496596,1,0,0,0.093608526,0.312029739,0.769056323,0.493552919,0.961238037,0.922476074,0,0,0,0,0,0,-0.353961457,110.7298079,0.353961457,69.2701921,0,0.908741682,0,0,0,10,6,0% -10/6/2018 15:00,80.86999789,103.9401356,90.02718611,352.2854906,34.12825399,33.77782416,0,33.77782416,33.09916121,0.678662957,69.02303418,46.16580783,22.85722635,1.029092778,21.82813357,1.411447729,1.81409759,-5.162188881,5.162188881,0.58706002,0.379088312,0.504654277,16.23141627,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.81617274,0.745574214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.365620305,15.60225471,32.18179305,16.34782893,0,46.16580783,-0.131046577,97.5300742,0.131046577,82.4699258,0,0.66845627,32.18179305,47.20765262,63.07825753,10,7,96% -10/6/2018 16:00,69.74493221,114.2037416,289.6369233,651.2249197,64.18283109,126.4934178,62.06253039,64.43088739,62.24748192,2.183405471,72.16117452,0,72.16117452,1.935349167,70.22582536,1.217278704,1.993231309,-1.942618667,1.942618667,0.862361047,0.221597545,1.949478686,62.70193584,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.83464732,1.402153883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412390672,60.27148572,61.24703799,61.6736396,62.06253039,0,0.095301222,84.5313428,-0.095301222,95.4686572,0.525347754,0,93.85144891,61.6736396,134.2156126,10,8,43% -10/6/2018 17:00,59.53751263,126.2856019,473.0539634,773.9598935,80.67632025,323.8777257,242.0680136,81.80971212,78.24363153,3.566080595,117.130099,0,117.130099,2.432688719,114.6974103,1.039125624,2.204099551,-0.94370614,0.94370614,0.691536944,0.170543588,2.653675127,85.35131402,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.21075477,1.762474696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.922578596,82.04292953,77.13333336,83.80540423,242.0680136,0,0.312765578,71.77402363,-0.312765578,108.2259764,0.890135861,0,292.606753,83.80540423,347.4557139,10,9,19% -10/6/2018 18:00,50.98572271,141.2284779,615.1217608,832.5469454,91.02178206,514.2111944,421.2970073,92.91418716,88.2771395,4.637047662,151.8880351,0,151.8880351,2.744642564,149.1433925,0.889868733,2.464901937,-0.397181496,0.397181496,0.598075726,0.147973601,3.049090263,98.06922404,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.85534427,1.988484194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.209055516,94.26786839,87.06439979,96.25635258,421.2970073,0,0.506033936,59.59998861,-0.506033936,120.4000114,0.951192397,0,487.7989102,96.25635258,550.7967678,10,10,13% -10/6/2018 19:00,45.14145474,159.7662168,703.557645,860.0878247,96.88705458,668.5023227,569.2330555,99.26926712,93.96555241,5.303714712,173.5071987,0,173.5071987,2.921502171,170.5856965,0.787867014,2.788446517,-0.004100472,0.004100472,0.530854912,0.137710187,3.158155103,101.5771242,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.32326313,2.116618378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.288072622,97.63979547,92.61133575,99.75641384,569.2330555,0,0.661831314,48.56031076,-0.661831314,131.4396892,0.974452049,0,647.3016528,99.75641384,712.5902306,10,11,10% -10/6/2018 20:00,43.17231486,181.0846562,731.5290172,867.7548946,98.67596837,768.9533505,667.7382519,101.2150986,95.70052384,5.514574731,180.3431241,0,180.3431241,2.975444522,177.3676796,0.75349904,3.160523476,0.337497904,-0.337497904,0.472438149,0.134890026,2.997728232,96.41724457,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.99098367,2.155699427,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.1718439,92.67992289,94.16282756,94.83562231,667.7382519,0,0.769500992,39.69090053,-0.769500992,140.3090995,0.985022826,0,751.9002474,94.83562231,813.9682655,10,12,8% -10/6/2018 21:00,45.59806883,202.2186782,696.9348468,858.2054914,96.45925931,803.982505,705.178059,98.80444601,93.55065675,5.253789262,171.888525,0,171.888525,2.908602565,168.9799224,0.795836434,3.529381744,0.686138792,-0.686138792,0.412817046,0.138404988,2.595824223,83.49063011,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.92444964,2.107272657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.880665813,80.25436939,91.80511545,82.36164204,705.178059,0,0.821689055,34.74576622,-0.821689055,145.2542338,0.989149731,0,789.3318028,82.36164204,843.2358503,10,13,7% -10/6/2018 22:00,51.79026759,220.3694738,602.3545538,828.0927487,90.14451302,766.7294897,674.7623633,91.96712642,87.42632335,4.540803062,148.7660251,0,148.7660251,2.718189665,146.0478354,0.90391069,3.846172889,1.104210384,-1.104210384,0.341322593,0.149653576,1.997481205,64.24586184,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.03750743,1.96931916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.447168333,61.75556611,85.48467576,63.72488527,674.7623633,0,0.814839116,35.42854286,-0.814839116,144.5714571,0.988638194,0,752.5805198,63.72488527,794.2871827,10,14,6% -10/6/2018 23:00,60.56609236,234.9531718,455.1218219,764.8524477,79.2586043,653.5131927,573.2136272,80.29956549,76.86866495,3.430900538,112.7394943,0,112.7394943,2.389939353,110.3495549,1.057077727,4.100706436,1.71149714,-1.71149714,0.237470441,0.174148108,1.270337314,40.85841477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.88908459,1.731502925,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.92035506,39.2746624,74.80943965,41.00616533,573.2136272,0,0.749443411,41.4578126,-0.749443411,138.5421874,0.983283822,0,638.4411258,41.00616533,665.2788409,10,15,4% -10/6/2018 0:00,70.90779615,246.7815496,268.2470702,631.0054103,61.85194078,459.5805726,397.5715363,62.00903628,59.98687656,2.022159723,66.90467204,0,66.90467204,1.865064224,65.03960782,1.237574508,4.307150574,2.884542147,-2.884542147,0.03686793,0.230578253,0.523628635,16.84169687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.66166746,1.351232681,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.379367164,16.18887964,58.04103462,17.54011232,397.5715363,0,0.630060424,50.94541936,-0.630060424,129.0545806,0.970642532,0,443.9408772,17.54011232,455.4205299,10,16,3% -10/6/2018 1:00,82.10255459,256.891015,70.24859262,298.7863338,29.19523591,167.9125071,139.0680517,28.8444554,28.31489183,0.529563564,17.91292867,0,17.91292867,0.880344082,17.03258459,1.432959902,4.48359403,7.15689616,-7.15689616,0,0.415598873,0.22008602,7.078722958,0.409593272,1,0.138826586,0,0.946707423,0.985469386,0.724496596,1,27.45391375,0.63780629,0.058672834,0.312029739,0.847126528,0.571623124,0.961238037,0.922476074,0.15064172,6.80433776,27.60455547,7.44214405,82.10671341,0,0.465443148,62.26109442,-0.465443148,117.7389056,0.942575494,0,104.9963315,7.44214405,109.8670659,10,17,5% -10/6/2018 2:00,93.93052242,266.1760656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.639396884,4.645648734,-13.97806567,13.97806567,0,#DIV/0!,0,0,1,0.479314113,0,0.07141898,0.961238037,1,0.542010993,0.817514397,0,0,0.115824807,0.105400364,0.724496596,0.448993192,0.989380497,0.950618534,0,0,0,0,0,0,0.263294112,74.73438674,-0.263294112,105.2656133,0.860098298,0,0,0,0,10,18,0% -10/6/2018 3:00,105.7729273,275.430794,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846085841,4.807174217,-3.197269645,3.197269645,0.923080999,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.041817101,87.60335776,-0.041817101,92.39664224,0,0,0,0,0,10,19,0% -10/6/2018 4:00,117.4212799,285.5103704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049387947,4.983096013,-1.568958747,1.568958747,0.798461437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.185628904,100.6978011,0.185628904,79.30219895,0,0.780645395,0,0,0,10,20,0% -10/6/2018 5:00,128.4482299,297.5589904,0,0,0,0,0,0,0,0,0,0,0,0,0,2.241844529,5.193384102,-0.849953783,0.849953783,0.675504347,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.403547499,113.8001379,0.403547499,66.19986206,0,0.926098848,0,0,0,10,21,0% -10/6/2018 6:00,138.1314752,313.2695435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410849042,5.46758498,-0.40313112,0.40313112,0.599093171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597093235,126.6619984,0.597093235,53.33800164,0,0.966260984,0,0,0,10,22,0% -10/6/2018 7:00,145.1630559,334.6553775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533573278,5.840838197,-0.064827296,0.064827296,0.54123981,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753083336,138.8581765,0.753083336,41.14182347,0,0.983606285,0,0,0,10,23,0% -10/7/2018 8:00,147.6657564,1.454578124,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577253642,0.025387177,0.231532177,-0.231532177,0.490559356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86089592,149.417326,0.86089592,30.58267397,0,0.99192097,0,0,0,10,0,0% -10/7/2018 9:00,144.6397701,27.89371114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.524440217,0.4868371,0.526467818,-0.526467818,0.44012239,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913193626,155.9504866,0.913193626,24.04951339,0,0.995247099,0,0,0,10,1,0% -10/7/2018 10:00,137.2702553,48.65826752,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395817921,0.849246977,0.860391258,-0.860391258,0.383018119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906423426,155.0156821,0.906423426,24.9843179,0,0.994838142,0,0,0,10,2,0% -10/7/2018 11:00,127.4142786,63.92003155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223798676,1.115615008,1.299917038,-1.299917038,0.307854784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841058593,147.2520738,0.841058593,32.74792619,0,0.99055111,0,0,0,10,3,0% -10/7/2018 12:00,116.3103947,75.7191057,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029999342,1.321547701,2.012355615,-2.012355615,0.186020612,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.721566397,136.183957,0.721566397,43.81604304,0,0.980706308,0,0,0,10,4,0% -10/7/2018 13:00,104.6408058,85.68741393,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826326593,1.495527501,3.685296784,-3.685296784,0,#DIV/0!,0,0,0.090966259,1,0.264968343,0,0.929696358,0.968458321,0.724496596,1,0,0,0.01491742,0.312029739,0.958567955,0.683064551,0.961238037,0.922476074,0,0,0,0,0,0,-0.556103654,123.7867654,0.556103654,56.21323458,0,0.960088704,0,0,0,10,5,0% -10/7/2018 14:00,92.81695037,94.92908292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619961386,1.656825053,18.42974305,-18.42974305,0,#DIV/0!,0,0,0.723872696,1,0.05420696,0,0.95610551,0.994867473,0.724496596,1,0,0,0.092111339,0.312029739,0.772201921,0.496698517,0.961238037,0.922476074,0,0,0,0,0,0,-0.355960844,110.8523438,0.355960844,69.14765619,0,0.909535112,0,0,0,10,6,0% -10/7/2018 15:00,81.05751093,104.28464,87.12289906,346.0495334,33.33192514,32.98361383,0,32.98361383,32.32684462,0.656769214,68.18487894,46.05584287,22.12903607,1.005080525,21.12395555,1.414720449,1.820110327,-5.250839345,5.250839345,0.571899898,0.382585124,0.483175015,15.54056939,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.07379266,0.728177419,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.350058654,14.93818641,31.42385131,15.66636383,0,46.05584287,-0.133090319,97.64820677,0.133090319,82.35179323,0,0.674315275,31.42385131,46.72252217,62.00280762,10,7,97% -10/7/2018 16:00,69.95726997,114.5510023,285.9962013,649.0472188,63.55418568,124.2076048,60.41385212,63.79375267,61.63779249,2.155960171,71.25948335,0,71.25948335,1.916393188,69.34309016,1.220984697,1.999292151,-1.953390537,1.953390537,0.864203145,0.222220384,1.928247603,62.01907122,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.24859065,1.388420341,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.397008824,59.61509026,60.64559948,61.0035106,60.41385212,0,0.093080827,84.65913017,-0.093080827,95.34086983,0.51283245,0,91.62778326,61.0035106,131.5533609,10,8,44% -10/7/2018 17:00,59.78625615,126.6323013,469.0265918,772.9363311,80.06396713,321.042306,239.8568423,81.18546368,77.64974312,3.535720566,116.1351514,0,116.1351514,2.414224014,113.7209274,1.043467017,2.210150597,-0.944490586,0.944490586,0.691671092,0.170702405,2.63164947,84.64289318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.63988664,1.749097079,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.906621082,81.36196848,76.54650772,83.11106556,239.8568423,0,0.310319017,71.92154303,-0.310319017,108.078457,0.888875488,0,289.7493756,83.11106556,344.1439058,10,9,19% -10/7/2018 18:00,51.28259187,141.5514946,610.7357573,831.9034986,90.39696911,510.9812616,418.7061105,92.27515107,87.67116696,4.603984114,150.8057574,0,150.8057574,2.725802148,148.0799552,0.895050077,2.470539642,-0.394751088,0.394751088,0.597660101,0.148013225,3.025792353,97.31988315,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.27286042,1.974834377,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.192176259,93.54757343,86.46503668,95.5224078,418.7061105,0,0.503310914,59.78070885,-0.503310914,120.2192911,0.950657827,0,484.5112778,95.5224078,547.0287832,10,10,13% -10/7/2018 19:00,45.48987004,160.0096384,698.8245261,859.5582185,96.24382364,664.8856589,566.2759072,98.60975172,93.34171726,5.268034462,172.3402034,0,172.3402034,2.902106385,169.4380971,0.793948009,2.792695025,0.000171124,-0.000171124,0.530124426,0.137722447,3.13362097,100.7880222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.72360905,2.102566197,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.270297726,96.88128055,91.99390678,98.98384675,566.2759072,0,0.658798782,48.79167472,-0.658798782,131.2083253,0.974104292,0,643.6056984,98.98384675,708.3886464,10,11,10% -10/7/2018 20:00,43.5557504,181.1798487,726.4759933,867.1985703,98.01351289,764.936006,664.4014792,100.5345267,95.05804384,5.476482902,179.0979845,0,179.0979845,2.955469045,176.1425154,0.760191253,3.162184897,0.343526466,-0.343526466,0.471407204,0.134916382,2.972213404,95.5966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,91.37340745,2.141227262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.153358494,91.89108812,93.52676594,94.03231538,664.4014792,0,0.76614688,39.99086825,-0.76614688,140.0091317,0.984738362,0,747.7883906,94.03231538,809.3306604,10,12,8% -10/7/2018 21:00,45.98415883,202.1537465,691.6108515,857.4903869,95.77745877,799.5503359,701.4472662,98.10306974,92.889415,5.213654736,170.5771019,0,170.5771019,2.888043763,167.6890581,0.802574975,3.528248472,0.69458311,-0.69458311,0.411372982,0.13848461,2.569751844,82.65205276,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.28883892,2.092377875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861776463,79.44829694,91.15061539,81.54067481,701.4472662,0,0.818023475,35.11257731,-0.818023475,144.8874227,0.98887706,0,784.7957255,81.54067481,838.1624664,10,13,7% -10/7/2018 22:00,52.1548542,220.1980898,596.8326251,827.0056308,89.44030672,761.8563594,670.6138315,91.2425279,86.74335147,4.499176431,147.4059351,0,147.4059351,2.696955247,144.7089798,0.910273927,3.843181674,1.11687685,-1.11687685,0.3391565,0.149858273,1.971491265,63.40993605,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.38100888,1.953934896,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.428338711,60.95204245,84.80934759,62.90597735,670.6138315,0,0.810893912,35.81663876,-0.810893912,144.1833612,0.988339653,0,747.6035892,62.90597735,788.7742932,10,14,6% -10/7/2018 23:00,60.90291104,234.7309785,449.5084288,762.9013729,78.51636806,648.1053313,568.5679371,79.53739427,76.14880986,3.388584409,111.356081,0,111.356081,2.367558191,108.9885228,1.062956322,4.096828431,1.733430967,-1.733430967,0.233719536,0.174671626,1.245531772,40.06058329,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.1971325,1.71528785,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.902383529,38.50775643,74.09951603,40.22304428,568.5679371,0,0.745270565,41.81765634,-0.745270565,138.1823437,0.982910271,0,632.9507813,40.22304428,659.2759593,10,15,4% -10/7/2018 0:00,71.22070824,246.5386254,262.7446551,626.6804672,61.00146716,453.2763575,392.1336295,61.14272805,59.16204786,1.980680194,65.54490289,0,65.54490289,1.839419306,63.70548359,1.243035854,4.302910746,2.935599382,-2.935599382,0.028136629,0.232170154,0.502645726,16.16681437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.86881074,1.332653026,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.364165117,15.54015691,57.23297585,16.87280993,392.1336295,0,0.625731373,51.26411152,-0.625731373,128.7358885,0.970093506,0,437.6392635,16.87280993,448.6821801,10,16,3% -10/7/2018 1:00,82.39643597,256.6386051,65.85349261,286.8147998,27.90271825,159.801806,132.2440262,27.55777979,27.06134835,0.496431444,16.80831161,0,16.80831161,0.841369905,15.96694171,1.4380891,4.479188647,7.440869783,-7.440869783,0,0.423709011,0.210342476,6.765337087,0.42604932,1,0.133592437,0,0.947336769,0.986098732,0.724496596,1,26.23825645,0.609569632,0.060632205,0.312029739,0.842490406,0.566987002,0.961238037,0.922476074,0.143951037,6.50309934,26.38220748,7.112668972,75.90154871,0,0.461078111,62.54330204,-0.461078111,117.456698,0.941558504,0,97.84795616,7.112668972,102.5030558,10,17,5% -10/7/2018 2:00,94.22028421,265.916178,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644454182,4.64111284,-13.03220311,13.03220311,0,#DIV/0!,0,0,1,0.431427831,0,0.076582927,0.961238037,1,0.530382443,0.805885847,0,0,0.115824807,0.092273214,0.724496596,0.448993192,0.990845939,0.952083976,0,0,0,0,0,0,0.258863419,74.99736784,-0.258863419,105.0026322,0.85684795,0,0,0,0,10,18,0% -10/7/2018 3:00,106.0632221,275.1619505,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85115244,4.802482013,-3.143397389,3.143397389,0.932293698,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.03746838,87.85271734,-0.03746838,92.14728266,0,0,0,0,0,10,19,0% -10/7/2018 4:00,117.7215235,285.231943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054628185,4.978236537,-1.554400275,1.554400275,0.795971792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.189817487,100.9421331,0.189817487,79.05786688,0,0.786589073,0,0,0,10,20,0% -10/7/2018 5:00,128.7692772,297.2788002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.247447863,5.18849386,-0.844725812,0.844725812,0.674610311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.407508825,114.0484388,0.407508825,65.95156117,0,0.927303271,0,0,0,10,21,0% -10/7/2018 6:00,138.4838867,313.0235758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416999784,5.463292035,-0.401559951,0.401559951,0.598824486,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.600775852,126.9254842,0.600775852,53.0745158,0,0.966774285,0,0,0,10,22,0% -10/7/2018 7:00,145.5462705,334.5433612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540261635,5.838883144,-0.065242199,0.065242199,0.541310763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.756455001,139.1526675,0.756455001,40.84733252,0,0.983902215,0,0,0,10,23,0% -10/8/2018 8:00,148.0461353,1.602227104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.583892506,0.027964138,0.229640341,-0.229640341,0.490882878,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86394581,149.7625477,0.86394581,30.23745233,0,0.992126,0,0,0,10,0,0% -10/8/2018 9:00,144.967746,28.25449656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.530164477,0.493133993,0.523057777,-0.523057777,0.440705542,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915933074,156.3385853,0.915933074,23.6614147,0,0.995410859,0,0,0,10,1,0% -10/8/2018 10:00,137.5343412,49.07880925,0,0,0,0,0,0,0,0,0,0,0,0,0,2.400427088,0.856586814,0.85489035,-0.85489035,0.38395883,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908885127,155.3517361,0.908885127,24.6482639,0,0.994987547,0,0,0,10,2,0% -10/8/2018 11:00,127.6314085,64.32580233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227588307,1.122697045,1.29069969,-1.29069969,0.309431043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843294345,147.489647,0.843294345,32.51035298,0,0.990708721,0,0,0,10,3,0% -10/8/2018 12:00,116.5000538,76.09722173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033309517,1.328147071,1.994339027,-1.994339027,0.18910163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.723643521,136.3561214,0.723643521,43.64387856,0,0.980905206,0,0,0,10,4,0% -10/8/2018 13:00,104.8185417,86.04414281,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82942867,1.501753594,3.632664261,-3.632664261,0,#DIV/0!,0,0,0.08346725,1,0.268626553,0,0.929151629,0.967913592,0.724496596,1,0,0,0.013734231,0.312029739,0.961790658,0.686287254,0.961238037,0.922476074,0,0,0,0,0,0,-0.558100344,123.9245254,0.558100344,56.07547458,0,0.960410376,0,0,0,10,5,0% -10/8/2018 14:00,92.99531182,95.27414029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62307438,1.66284744,17.28165719,-17.28165719,0,#DIV/0!,0,0,0.70804486,1,0.057800367,0,0.955740478,0.994502441,0.724496596,1,0,0,0.090608371,0.312029739,0.775377742,0.499874338,0.961238037,0.922476074,0,0,0,0,0,0,-0.357960774,110.9750129,0.357960774,69.0249871,0,0.910319891,0,0,0,10,6,0% -10/8/2018 15:00,81.2459156,104.6266796,84.22095856,339.6534854,32.52778956,32.18184985,0,32.18184985,31.54695669,0.634893161,67.30356404,45.90238469,21.40117935,0.98083287,20.42034648,1.418008731,1.826080044,-5.343750717,5.343750717,0.556011117,0.386219655,0.461877378,14.85556418,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.32413471,0.710610075,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.334628588,14.27973334,30.6587633,14.99034342,0,45.90238469,-0.135144748,97.76699004,0.135144748,82.23300996,0,0.680026318,30.6587633,46.20517307,60.89912498,10,7,99% -10/8/2018 16:00,70.17077232,114.8950567,282.3311003,646.8089154,62.92197873,121.9083993,58.7554193,63.15298,61.02464891,2.128331091,70.3517738,0,70.3517738,1.897329816,68.45444398,1.224711016,2.005297033,-1.964513829,1.964513829,0.86610534,0.222865914,1.906869507,61.33147815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65921372,1.374608993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.381520466,58.95414966,60.04073419,60.32875865,58.7554193,0,0.090838914,84.78812899,-0.090838914,95.21187101,0.4995751,0,89.39347868,60.32875865,128.8774446,10,8,44% -10/8/2018 17:00,60.03615009,126.9747308,464.9689445,771.8834015,79.44908411,318.1777295,237.6191962,80.55853339,77.05340109,3.505132307,115.1327868,0,115.1327868,2.395683022,112.7371038,1.047828489,2.216127118,-0.945360012,0.945360012,0.691819773,0.170869657,2.609495372,83.93034124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.06665999,1.735664194,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.890570514,80.67703644,75.95723051,82.41270064,237.6191962,0,0.307843381,72.07068941,-0.307843381,107.9293106,0.887579747,0,286.8632164,82.41270064,340.8006807,10,9,19% -10/8/2018 18:00,51.58020187,141.869032,606.3188046,831.2413529,89.77001456,507.7151485,416.0813439,91.63380466,87.0631174,4.570687259,149.715911,0,149.715911,2.706897155,147.0090139,0.900244352,2.476081715,-0.392345654,0.392345654,0.597248748,0.148057447,3.002388797,96.56714437,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.68838005,1.961137774,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.175220463,92.82401228,85.86360052,94.78515005,416.0813439,0,0.500554192,59.96332817,-0.500554192,120.0366718,0.950110716,0,481.1869439,94.78515005,543.2219289,10,10,13% -10/8/2018 19:00,45.8381334,160.247232,694.0636522,859.0143893,95.59880185,661.2307438,563.2824536,97.94829023,92.71614525,5.232144984,171.1664247,0,171.1664247,2.882656598,168.2837681,0.800026351,2.796841816,0.004443124,-0.004443124,0.529393871,0.137737802,3.109014451,99.9965919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.12228544,2.088474892,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.252470386,96.12052769,91.37475583,98.20900259,563.2824536,0,0.655731104,49.02489062,-0.655731104,130.9751094,0.973749232,0,639.8706126,98.20900259,704.1464407,10,11,10% -10/8/2018 20:00,43.93802397,181.2710718,721.4017954,866.6297528,97.34969956,760.8825133,661.0300349,99.85247839,94.41424694,5.438231455,177.84767,0,177.84767,2.935452624,174.9122174,0.766863185,3.163777042,0.349575755,-0.349575755,0.470372715,0.134945186,2.946669644,94.77502485,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.75456538,2.126725433,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.134852126,91.10135883,92.8894175,93.22808426,661.0300349,0,0.762759452,40.29192731,-0.762759452,139.7080727,0.984448534,0,743.6394666,93.22808426,804.6553831,10,12,8% -10/8/2018 21:00,46.36857427,202.0877079,686.2751531,856.7624236,95.09482816,795.0877628,697.6869626,97.40080022,92.22736823,5.173431988,169.2628162,0,169.2628162,2.867459932,166.3953563,0.80928429,3.527095882,0.703077555,-0.703077555,0.409920346,0.13856662,2.543702474,81.81421548,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.65245438,2.077464959,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.842903783,78.64293587,90.49535816,80.72040083,697.6869626,0,0.814329554,35.47887641,-0.814329554,144.5211236,0.988599797,0,780.2285477,80.72040083,833.0584357,10,13,7% -10/8/2018 22:00,52.51769057,220.0271613,591.3107882,825.9019937,88.73584285,756.9612548,666.4435745,90.51768028,86.06012979,4.457550492,146.0458596,0,146.0458596,2.675713062,143.3701466,0.916606616,3.840198409,1.129657073,-1.129657073,0.336970953,0.150066335,1.945583907,62.57666634,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.72427021,1.938545005,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.409568917,60.1510719,84.13383913,62.08961691,666.4435745,0,0.806928158,36.20311922,-0.806928158,143.7968808,0.988036615,0,742.6044926,62.08961691,783.2409051,10,14,5% -10/8/2018 23:00,61.23795413,234.5095148,443.9089094,760.9208805,77.7742646,642.6842303,563.9087738,78.77545644,75.42908357,3.346372867,109.9760355,0,109.9760355,2.345181034,107.6308545,1.068803927,4.092963161,1.75567184,-1.75567184,0.229916123,0.175203207,1.2208816,39.26774901,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.50530421,1.699075676,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.884524563,37.74565397,73.38982878,39.44472965,563.9087738,0,0.741087265,42.17588364,-0.741087265,137.8241164,0.982531562,0,627.4479973,39.44472965,653.2637839,10,15,4% -10/8/2018 0:00,71.53171718,246.2961911,257.2741408,622.2752398,60.15001121,446.9598661,386.6841585,60.27570758,58.33626644,1.939441146,64.19283882,0,64.19283882,1.813744768,62.37909405,1.248463984,4.298679469,2.987938364,-2.987938364,0.019186136,0.233797346,0.481946885,15.5010685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.07503823,1.31405191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.349168877,14.90021665,56.4242071,16.21426856,386.6841585,0,0.621403736,51.58128471,-0.621403736,128.4187153,0.969537014,0,431.3288116,16.21426856,441.9407261,10,16,2% -10/8/2018 1:00,82.68801947,256.386299,61.56017985,274.6520995,26.60465489,151.7084078,125.4419148,26.26649303,25.80242639,0.464066639,15.72820683,0,15.72820683,0.802228506,14.92597832,1.443178192,4.474785074,7.744930374,-7.744930374,0,0.432173118,0.200557126,6.450606597,0.442681898,1,0.128406305,0,0.947954173,0.986716136,0.724496596,1,25.01692096,0.581211822,0.062586643,0.312029739,0.837896356,0.562392952,0.961238037,0.922476074,0.137251936,6.200568422,25.1541729,6.781780243,69.91104991,0,0.456730223,62.82368477,-0.456730223,117.1763152,0.940526185,0,90.90734596,6.781780243,95.34588549,10,17,5% -10/8/2018 2:00,94.50772719,265.6559303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649471008,4.63657066,-12.21373984,12.21373984,0,#DIV/0!,0,0,1,0.382268466,0,0.081692786,0.961238037,1,0.519085284,0.794588688,0,0,0.115824807,0.079515498,0.724496596,0.448993192,0.992231658,0.953469695,0,0,0,0,0,0,0.254458579,75.2584942,-0.254458579,104.7415058,0.853504365,0,0,0,0,10,18,0% -10/8/2018 3:00,106.3509436,274.892149,0,0,0,0,0,0,0,0,0,0,0,0,0,1.856174128,4.797773088,-3.091838313,3.091838313,0.941110819,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.033156964,88.09989765,-0.033156964,91.90010235,0,0,0,0,0,10,19,0% -10/8/2018 4:00,118.018973,284.9516965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059819659,4.973345312,-1.540279139,1.540279139,0.793556935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.193959006,101.183918,0.193959006,78.81608198,0,0.792213568,0,0,0,10,20,0% -10/8/2018 5:00,129.0874416,296.9955062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253000879,5.183549448,-0.839645329,0.839645329,0.673741497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.411415687,114.2937971,0.411415687,65.70620285,0,0.928468416,0,0,0,10,21,0% -10/8/2018 6:00,138.8336558,312.7729556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423104407,5.458917886,-0.400051994,0.400051994,0.59856661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.604399475,127.1856409,0.604399475,52.81435911,0,0.967273257,0,0,0,10,22,0% -10/8/2018 7:00,145.9275578,334.4267508,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546916352,5.836847908,-0.065685882,0.065685882,0.541386637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.759766314,139.443601,0.759766314,40.55639899,0,0.984190291,0,0,0,10,23,0% -10/9/2018 8:00,148.4251277,1.749394698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59050717,0.030532697,0.227738468,-0.227738468,0.491208118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.866937256,150.1046562,0.866937256,29.89534377,0,0.992325699,0,0,0,10,0,0% -10/9/2018 9:00,145.2941873,28.6173024,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535861952,0.49946615,0.519652413,-0.519652413,0.441287893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918619118,156.725034,0.918619118,23.27496598,0,0.995570477,0,0,0,10,1,0% -10/9/2018 10:00,137.7970066,49.50021352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405011465,0.863941706,0.849412836,-0.849412836,0.38489554,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911301249,155.6857984,0.911301249,24.31420159,0,0.995133401,0,0,0,10,2,0% -10/9/2018 11:00,127.8476164,64.73111902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.231361847,1.129771155,1.281544434,-1.281544434,0.310996684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845494587,147.7249656,0.845494587,32.27503443,0,0.990863016,0,0,0,10,3,0% -10/9/2018 12:00,116.6893674,76.47413394,0,0,0,0,0,0,0,0,0,0,0,0,0,2.036613662,1.33472543,1.976512828,-1.976512828,0.192150089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.725696751,136.5268402,0.725696751,43.47315979,0,0.981100697,0,0,0,10,4,0% -10/9/2018 13:00,104.9964529,86.39920821,0,0,0,0,0,0,0,0,0,0,0,0,0,1.832533806,1.507950654,3.581109839,-3.581109839,0,#DIV/0!,0,0,0.076000921,1,0.272306637,0,0.928600805,0.967362769,0.724496596,1,0,0,0.012548162,0.312029739,0.965032206,0.689528802,0.961238037,0.922476074,0,0,0,0,0,0,-0.560085506,124.0617113,0.560085506,55.93828874,0,0.960727917,0,0,0,10,5,0% -10/9/2018 14:00,93.17428171,95.61712694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626197994,1.668833686,16.25908818,-16.25908818,0,#DIV/0!,0,0,0.692337431,1,0.061426688,0,0.955369004,0.994130967,0.724496596,1,0,0,0.089099748,0.312029739,0.778583719,0.503080315,0.961238037,0.922476074,0,0,0,0,0,0,-0.359961438,111.0978278,0.359961438,68.90217219,0,0.911096232,0,0,0,10,6,0% -10/9/2018 15:00,81.43517613,104.966139,81.32315556,333.0951248,31.71587189,31.37256963,0,31.37256963,30.75952133,0.613048298,66.37803099,45.70393984,20.67409115,0.956350557,19.71774059,1.42131195,1.832004729,-5.441222582,5.441222582,0.539342447,0.389998048,0.440780496,14.17701591,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.5672219,0.692872723,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.319343969,13.62748694,29.88656587,14.32035967,0,45.70393984,-0.137209873,97.88642563,0.137209873,82.11357437,0,0.685594737,29.88656587,45.65474027,59.76668028,10,7,100% -10/9/2018 16:00,70.3853888,115.2357928,278.6426498,644.5090326,62.28625496,119.5963879,57.08776739,62.50862056,60.40809456,2.100525993,69.43829686,0,69.43829686,1.878160399,67.56013646,1.22845678,2.011244,-1.976002809,1.976002809,0.868070072,0.223534534,1.885350141,60.63934139,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.06655823,1.360720816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.365929759,58.28884147,59.43248799,59.64956229,57.08776739,0,0.088575589,84.91833292,-0.088575589,95.08166708,0.485510389,0,87.14919212,59.64956229,126.1886376,10,8,45% -10/9/2018 17:00,60.28711971,127.3127921,460.8822985,770.801002,78.83175468,315.2846366,235.3556247,79.92901186,76.45468642,3.474325444,114.1233174,0,114.1233174,2.377068262,111.7462492,1.052208735,2.222027402,-0.946318326,0.946318326,0.691983654,0.171045308,2.587220387,83.21390116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.49115268,1.722177864,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.874432363,79.98836699,75.36558504,81.71054485,235.3556247,0,0.305339023,72.22143852,-0.305339023,107.7785615,0.886247593,0,283.9489409,81.71054485,337.4268583,10,9,19% -10/9/2018 18:00,51.87845224,142.1810319,601.8725094,830.5606527,89.141022,504.4137964,413.4235359,90.9902605,86.45309129,4.537169208,148.6188889,0,148.6188889,2.687930709,145.9309581,0.905449802,2.48152714,-0.389967528,0.389967528,0.596842065,0.148106153,2.978888586,95.81129679,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.10199975,1.947396648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.15819464,92.09746283,85.26019439,94.04485948,413.4235359,0,0.497764413,60.14779535,-0.497764413,119.8522047,0.949550875,0,477.8268744,94.04485948,539.377354,10,10,13% -10/9/2018 19:00,46.18612929,160.4789971,689.276963,858.4565933,94.95211069,657.538892,560.2538768,97.28501512,92.08895422,5.196060899,169.9863363,0,169.9863363,2.863156473,167.1231799,0.806100025,2.800886879,0.008713482,-0.008713482,0.528663596,0.137756106,3.084345711,99.20316044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.51940557,2.074347118,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.234597968,95.35785119,90.75400354,97.43219831,560.2538768,0,0.652629243,49.25986988,-0.652629243,130.7401301,0.973386823,0,636.0977446,97.43219831,699.8651697,10,11,10% -10/9/2018 20:00,44.31901982,181.3583328,716.3086681,866.0487864,96.6846678,756.7945831,657.6254774,99.16910565,93.76926834,5.39983731,176.5927292,0,176.5927292,2.915399463,173.6773297,0.773512817,3.165300034,0.355643608,-0.355643608,0.469335051,0.134976264,2.921107995,93.95287435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,90.13458742,2.112196986,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.116332798,90.3110765,92.25092022,92.42327349,657.6254774,0,0.759339991,40.59395257,-0.759339991,139.4060474,0.984153343,0,739.4552322,92.42327349,799.9444162,10,12,8% -10/9/2018 21:00,46.75119697,202.0205318,680.9302487,856.0220513,94.41152561,790.5968869,693.8990773,96.69780962,91.56466977,5.133139841,167.9462782,0,167.9462782,2.846855839,165.0994223,0.815962316,3.525923436,0.711619614,-0.711619614,0.408459568,0.138650803,2.517687667,80.97748986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.01544342,2.062537364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.824056144,77.83864338,89.83949956,79.90118074,693.8990773,0,0.810608881,35.84453651,-0.810608881,144.1554635,0.988317972,0,775.6324282,79.90118074,827.926153,10,13,7% -10/9/2018 22:00,52.87865226,219.8566543,585.7917221,824.7824376,88.03130114,752.0466448,662.2538668,89.79277805,85.37683261,4.41594544,144.6864536,0,144.6864536,2.65446853,142.0319851,0.922906586,3.8372225,1.14254816,-1.14254816,0.334766447,0.150277475,1.919770748,61.74642642,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.06745897,1.923153414,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.390867372,59.35301371,83.45832634,61.27616713,662.2538668,0,0.802943706,36.58786783,-0.802943706,143.4121322,0.987729134,0,737.5857646,61.27616713,777.6897904,10,14,5% -10/9/2018 23:00,61.57109525,234.288769,438.3260438,758.9117606,77.03250321,637.2526899,559.238714,78.01397588,74.70968902,3.304286868,108.6000383,0,108.6000383,2.322814191,106.2772241,1.074618336,4.089110419,1.778218253,-1.778218253,0.226060459,0.175742474,1.196398043,38.48027364,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.8137948,1.682870975,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866786309,36.98870269,72.68058111,38.67157367,559.238714,0,0.736895569,42.53236713,-0.736895569,137.4676329,0.98214778,0,621.9356428,38.67157367,647.2454144,10,15,4% -10/9/2018 0:00,71.84069785,246.0542563,251.8384125,617.7903855,59.29782155,440.6341497,381.2259119,59.40823777,57.50977344,1.89846433,62.84918689,0,62.84918689,1.788048105,61.06113878,1.253856714,4.294456911,3.041587596,-3.041587596,0.010011577,0.235459797,0.461543353,14.84482077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.28058172,1.295434766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.334386588,14.26940637,55.61496831,15.56484114,381.2259119,0,0.61707971,51.89680836,-0.61707971,128.1031916,0.968973191,0,425.0126566,15.56484114,435.1995338,10,16,2% -10/9/2018 1:00,82.97716603,256.134121,57.37453862,262.3157085,25.30253708,143.6442382,118.6721525,24.97208573,24.53957223,0.432513507,14.674086,0,14.674086,0.762964849,13.91112115,1.448224751,4.470383739,8.071122756,-8.071122756,0,0.441006371,0.190741212,6.134893056,0.459485635,1,0.123270294,0,0.94855954,0.987321504,0.724496596,1,23.79138369,0.552765436,0.064535204,0.312029739,0.833346361,0.557842957,0.961238037,0.922476074,0.130549545,5.897092558,23.92193324,6.449857994,64.14400309,0,0.452402005,63.10210115,-0.452402005,116.8978988,0.939478828,0,84.18386605,6.449857994,88.40516911,10,17,5% -10/9/2018 2:00,94.79272965,265.3953568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654445239,4.632022796,-11.4988606,11.4988606,0,#DIV/0!,0,0,1,0.331807478,0,0.08674689,0.961238037,1,0.508116774,0.783620178,0,0,0.115824807,0.067121292,0.724496596,0.448993192,0.993541351,0.954779388,0,0,0,0,0,0,0.250081805,75.51764695,-0.250081805,104.4823531,0.850065423,0,0,0,0,10,18,0% -10/9/2018 3:00,106.6359683,274.6214292,0,0,0,0,0,0,0,0,0,0,0,0,0,1.861148747,4.793048136,-3.042471902,3.042471902,0.949552972,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02888495,88.34478404,-0.02888495,91.65521596,0,0,0,0,0,10,19,0% -10/9/2018 4:00,118.3134995,284.6696677,0,0,0,0,0,0,0,0,0,0,0,0,0,2.064960116,4.968422982,-1.526584909,1.526584909,0.791215084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.198051553,101.4230422,0.198051553,78.57695777,0,0.79754048,0,0,0,10,20,0% -10/9/2018 5:00,129.4025846,296.709121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258501162,5.178551081,-0.8347111,0.8347111,0.672897695,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.415266432,114.5360961,0.415266432,65.46390389,0,0.929595373,0,0,0,10,21,0% -10/9/2018 6:00,139.1806367,312.5176198,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429160366,5.454461436,-0.398607474,0.398607474,0.598319582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607962743,127.4423414,0.607962743,52.55765865,0,0.967758118,0,0,0,10,22,0% -10/9/2018 7:00,146.3067851,334.3053749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553535117,5.834729499,-0.06615881,0.06615881,0.541467512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763016237,139.7308291,0.763016237,40.26917087,0,0.984470595,0,0,0,10,23,0% -10/10/2018 8:00,148.8026349,1.895933344,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597095914,0.033090279,0.225826108,-0.225826108,0.491535151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869869544,150.4434832,0.869869544,29.55651678,0,0.992520117,0,0,0,10,0,0% -10/10/2018 9:00,145.6190238,28.9819936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541531419,0.505831212,0.516251352,-0.516251352,0.441869509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921251347,157.1097113,0.921251347,22.89028868,0,0.995725995,0,0,0,10,1,0% -10/10/2018 10:00,138.0582128,49.92231664,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409570373,0.871308796,0.843958394,-0.843958394,0.385828304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913671642,156.0177814,0.913671642,23.98221863,0,0.995275745,0,0,0,10,2,0% -10/10/2018 11:00,128.0628844,65.13582802,0,0,0,0,0,0,0,0,0,0,0,0,0,2.235118983,1.13683466,1.272450829,-1.272450829,0.312551782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.847659369,147.9579948,0.847659369,32.04200516,0,0.991014042,0,0,0,10,3,0% -10/10/2018 12:00,116.8783249,76.8497067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039911594,1.341280411,1.95887501,-1.95887501,0.195166334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.727726268,136.6961163,0.727726268,43.30388374,0,0.981292847,0,0,0,10,4,0% -10/10/2018 13:00,105.1745276,86.75248675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835641796,1.514116528,3.530604978,-3.530604978,0,#DIV/0!,0,0,0.068567688,1,0.276008377,0,0.928043877,0.96680584,0.724496596,1,0,0,0.011359306,0.312029739,0.968292416,0.692789012,0.961238037,0.922476074,0,0,0,0,0,0,-0.562059368,124.1983367,0.562059368,55.80166328,0,0.961041426,0,0,0,10,5,0% -10/10/2018 14:00,93.35384043,95.95792555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629331885,1.674781744,15.34261561,-15.34261561,0,#DIV/0!,0,0,0.676750761,1,0.065085874,0,0.954991013,0.993752976,0.724496596,1,0,0,0.087585614,0.312029739,0.781819745,0.506316341,0.961238037,0.922476074,0,0,0,0,0,0,-0.361963025,111.2208011,0.361963025,68.77919888,0,0.911864344,0,0,0,10,6,0% -10/10/2018 15:00,81.62525487,105.3029036,78.43137639,326.3724668,30.89621802,30.55583189,0,30.55583189,29.96458305,0.591248845,65.40724274,45.45901252,19.94823022,0.931634968,19.01659525,1.42462945,1.837882379,-5.543581722,5.543581722,0.521838003,0.39392676,0.419904226,13.50556331,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.80309699,0.674966363,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.304219182,12.98206116,29.10731617,13.65702752,0,45.45901252,-0.139285685,98.00651402,0.139285685,81.99348598,0,0.691025565,29.10731617,45.07036733,58.60497018,10,7,101% -10/10/2018 16:00,70.6010671,115.5730995,274.9319237,642.1465998,61.64706282,117.2721941,55.41146468,61.8607294,59.78817642,2.072552972,68.51931434,0,68.51931434,1.858886398,66.66042795,1.232221076,2.017131114,-1.987872243,1.987872243,0.870099864,0.224226645,1.863695459,59.94285237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.47066933,1.346756867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.350241016,57.61934974,58.82091035,58.96610661,55.41146468,0,0.086290988,85.04973416,-0.086290988,94.95026584,0,0,58.82091035,58.96610661,97.4130478,10,8,66% -10/10/2018 17:00,60.53908839,127.6463893,456.767979,769.6890522,78.21206614,312.3637099,233.0667161,79.29699374,75.85368378,3.443309966,113.1070672,0,113.1070672,2.358382366,110.7486848,1.056606419,2.227849772,-0.947369518,0.947369518,0.692163419,0.171229311,2.564832289,82.49382296,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91344608,1.708639996,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.858212262,79.29620043,74.77165834,81.00484043,233.0667161,0,0.302806329,72.37376404,-0.302806329,107.626236,0.884877956,0,281.0072577,81.00484043,334.0233056,10,9,19% -10/10/2018 18:00,52.17724101,142.4874386,597.3985301,829.8615658,88.51009869,501.0781974,410.7335623,90.34463511,85.84119265,4.503442462,147.5150961,0,147.5150961,2.668906043,144.8461901,0.91066465,2.486874947,-0.387619104,0.387619104,0.59644046,0.148159217,2.955300919,95.05263632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.5138195,1.933613343,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.141105455,91.36820954,84.65492496,93.30182288,410.7335623,0,0.494942264,60.33405676,-0.494942264,119.6659432,0.948978116,0,474.4320871,93.30182288,535.4962641,10,10,13% -10/10/2018 19:00,46.53374136,160.7049342,684.4664504,857.8851109,94.30387524,653.8114755,557.1914128,96.62006268,91.46026546,5.159797223,168.8004252,0,168.8004252,2.843609783,165.9568154,0.812167,2.804830227,0.012980076,-0.012980076,0.527933966,0.137777206,3.059625109,98.4080609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.91508602,2.060185608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.216687976,94.59357127,90.13177399,96.65375688,557.1914128,0,0.64949421,49.49652164,-0.64949421,130.5034784,0.97301702,0,632.2885019,96.65375688,695.5464527,10,11,10% -10/10/2018 20:00,44.69862156,181.4416391,711.1989051,865.4560418,96.01856049,752.6739866,654.1894222,98.48456438,93.12324662,5.361317759,175.3337224,0,175.3337224,2.89531387,172.4384085,0.780138117,3.166754002,0.361727756,-0.361727756,0.4682946,0.135009432,2.895539661,93.13050885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,89.51360677,2.097645043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.097808628,89.5205875,91.6114154,91.61823254,654.1894222,0,0.755889832,40.8968178,-0.755889832,139.1031822,0.983852795,0,735.2375066,91.61823254,795.1998074,10,12,8% -10/10/2018 21:00,47.13190822,201.9521884,675.5786791,855.2697521,93.72771269,786.0798712,690.0855974,95.99427378,90.90147633,5.092797449,166.6281087,0,166.6281087,2.826236356,163.8018723,0.822606981,3.524730619,0.720206614,-0.720206614,0.406991105,0.138736931,2.491719085,80.14225101,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.37795665,2.047598619,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.805241995,77.03578003,89.18319865,79.08337865,690.0855974,0,0.806863093,36.20943037,-0.806863093,143.7905696,0.988031618,0,771.0095883,79.08337865,822.768078,10,13,7% -10/10/2018 22:00,53.23761453,219.686536,580.2781399,823.6476091,87.32686498,747.1150603,658.0470407,89.06801953,84.6936378,4.374381729,143.3283804,0,143.3283804,2.633227181,140.6951533,0.929171659,3.834253375,1.155546938,-1.155546938,0.332543525,0.150491392,1.894063453,60.91959144,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.41074613,1.907764129,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.372242524,58.55822848,82.78298865,60.46599261,658.0470407,0,0.798942452,36.97076766,-0.798942452,143.0292323,0.98741727,0,732.550001,60.46599261,772.1237838,10,14,5% -10/10/2018 23:00,61.90220773,234.0687302,432.7626344,756.8748837,76.29129819,631.813575,554.5603934,77.2531816,73.99083406,3.262347538,107.2287752,0,107.2287752,2.300464125,104.9283111,1.080397339,4.085270017,1.801068154,-1.801068154,0.222152896,0.176289014,1.172092292,37.69851714,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.12280408,1.666678428,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849176875,36.2372486,71.97198095,37.90392703,554.5603934,0,0.732697577,42.88697926,-0.732697577,137.1130207,0.981759021,0,616.4166498,37.90392703,641.224012,10,15,4% -10/10/2018 0:00,72.14752487,245.8128316,246.4403619,613.2267422,58.44515813,434.302347,375.7617545,58.54059251,56.68282097,1.857771545,61.51465608,0,61.51465608,1.762337157,59.75231893,1.259211856,4.290243254,3.096575244,-3.096575244,0.000608135,0.237157411,0.441446131,14.19842503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.48568355,1.276807271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319826219,13.6480662,54.80550977,14.92487347,375.7617545,0,0.612761526,52.21055174,-0.612761526,127.7894483,0.968402188,0,418.6940149,14.92487347,428.4620461,10,16,2% -10/10/2018 1:00,83.26373495,255.882097,53.30253535,249.8262256,23.99808508,135.6224087,111.9461374,23.6762713,23.27445427,0.401817027,13.64744762,0,13.64744762,0.723630809,12.92381681,1.453226322,4.465985089,8.421768417,-8.421768417,0,0.450224083,0.180907702,5.818613568,0.476454464,1,0.118186536,0,0.949152786,0.987914749,0.724496596,1,22.56333681,0.524268058,0.066476908,0.312029739,0.828842431,0.553339027,0.961238037,0.922476074,0.12385011,5.593072683,22.68718692,6.117340741,58.60890054,0,0.44809602,63.37840796,-0.44809602,116.621592,0.938416773,0,77.68676222,6.117340741,81.69043939,10,17,5% -10/10/2018 2:00,95.07516979,265.1344938,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65937475,4.627469878,-10.86934724,10.86934724,0,#DIV/0!,0,0,1,0.280016926,0,0.091743577,0.961238037,1,0.497473935,0.772977339,0,0,0.115824807,0.055084453,0.724496596,0.448993192,0.994778616,0.956016653,0,0,0,0,0,0,0.245735319,75.77470704,-0.245735319,104.225293,0.846529045,0,0,0,0,10,18,0% -10/10/2018 3:00,106.9181726,274.3498333,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866074141,4.788307894,-2.9951865,2.9951865,0.957639252,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.024654434,88.58726184,-0.024654434,91.41273816,0,0,0,0,0,10,19,0% -10/10/2018 4:00,118.6049738,284.3858971,0,0,0,0,0,0,0,0,0,0,0,0,0,2.070047303,4.963470251,-1.513307633,1.513307633,0.788944536,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.202093236,101.6593925,0.202093236,78.34060749,0,0.802589443,0,0,0,10,20,0% -10/10/2018 5:00,129.7145676,296.4196613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.263946293,5.173499057,-0.829921947,0.829921947,0.672078701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.419059428,114.7752195,0.419059428,65.22478049,0,0.930685181,0,0,0,10,21,0% -10/10/2018 6:00,139.5246824,312.2575093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.435165096,5.449921651,-0.397226619,0.397226619,0.598083442,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.611464333,127.6954592,0.611464333,52.30454077,0,0.968229082,0,0,0,10,22,0% -10/10/2018 7:00,146.6838183,334.1790588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560115589,5.832524868,-0.06666144,0.06666144,0.541553467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.766203772,140.0142041,0.766203772,39.98579588,0,0.984743208,0,0,0,10,23,0% -10/11/2018 8:00,149.178558,2.041687497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603657011,0.035634169,0.223902826,-0.223902826,0.491864051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872742002,150.7788583,0.872742002,29.22114167,0,0.9927093,0,0,0,10,0,0% -10/11/2018 9:00,145.9421867,29.34842705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547171676,0.512226682,0.512854234,-0.512854234,0.44245045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923829393,157.4924942,0.923829393,22.50750582,0,0.995877453,0,0,0,10,1,0% -10/11/2018 10:00,138.3179229,50.34494922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414103169,0.878685126,0.838526731,-0.838526731,0.386757173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915996197,156.3475987,0.915996197,23.65240132,0,0.995414621,0,0,0,10,2,0% -10/11/2018 11:00,128.2771958,65.53977246,0,0,0,0,0,0,0,0,0,0,0,0,0,2.238859422,1.14388482,1.26341847,-1.26341847,0.314096407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.849788782,148.1887036,0.849788782,31.81129642,0,0.99116185,0,0,0,10,3,0% -10/11/2018 12:00,117.0669167,77.22380241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.043203141,1.347809613,1.94142367,-1.94142367,0.198150689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.729732284,136.8639552,0.729732284,43.13604481,0,0.981481721,0,0,0,10,4,0% -10/11/2018 13:00,105.3527539,87.10385367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838752432,1.520249038,3.481122383,-3.481122383,0,#DIV/0!,0,0,0.061168002,1,0.279731524,0,0.927480839,0.966242802,0.724496596,1,0,0,0.010167767,0.312029739,0.971571081,0.696067677,0.961238037,0.922476074,0,0,0,0,0,0,-0.564022179,124.3344172,0.564022179,55.66558283,0,0.961351004,0,0,0,10,5,0% -10/11/2018 14:00,93.53396807,96.29641786,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632475705,1.68068955,14.51663391,-14.51663391,0,#DIV/0!,0,0,0.66128527,1,0.068777839,0,0.954606433,0.993368396,0.724496596,1,0,0,0.086066124,0.312029739,0.785085677,0.509582273,0.961238037,0.922476074,0,0,0,0,0,0,-0.363965735,111.3439461,0.363965735,68.6560539,0,0.912624431,0,0,0,10,6,0% -10/11/2018 15:00,81.81611302,105.636858,75.54759545,319.4837762,30.06889523,29.73171678,0,29.73171678,29.1622071,0.569509686,64.39019084,45.16611353,19.22407731,0.906688134,18.31738918,1.427960553,1.843710983,-5.651185767,5.651185767,0.503436627,0.398012604,0.399269065,12.84186561,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.0318227,0.656892466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.289269078,12.34408969,28.32109178,13.00098215,0,45.16611353,-0.141372166,98.12725537,0.141372166,81.87274463,0,0.696323592,28.32109178,44.45121255,57.41352137,10,7,103% -10/11/2018 16:00,70.8177537,115.9068662,271.2000281,639.7206441,61.0044533,114.9364667,53.72710239,61.20936431,59.16494395,2.044420367,67.595096,0,67.595096,1.839509349,65.75558665,1.236002971,2.022956441,-2.000137526,2.000137526,0.872197351,0.224942651,1.841911571,59.24220764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.87159457,1.332718262,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334458663,56.94586337,58.20605323,58.27858164,53.72710239,0,0.083985257,85.1823243,-0.083985257,94.8176757,0,0,58.20605323,58.27858164,96.34821934,10,8,66% -10/11/2018 17:00,60.79197819,127.9754273,452.6273501,768.5474905,77.59010891,309.4156626,230.7530856,78.662577,75.25048085,3.412096156,112.0843694,0,112.0843694,2.339628061,109.7447414,1.061020178,2.233592568,-0.948517709,0.948517709,0.692359771,0.17142161,2.542339041,81.77036279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.33362448,1.695052566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.841915981,78.600783,74.17554046,80.29583557,230.7530856,0,0.300245708,72.52763848,-0.300245708,107.4723615,0.883469726,0,278.0389058,80.29583557,330.5909243,10,9,19% -10/11/2018 18:00,52.47646517,142.7881977,592.8985707,829.1442824,87.87735519,497.7093849,408.0123363,89.69704856,85.2275287,4.469519867,146.4049493,0,146.4049493,2.649826492,143.7551228,0.915887097,2.492124183,-0.385302866,0.385302866,0.59604436,0.148216507,2.931635199,94.29146543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.92394237,1.919790273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.123959722,90.63654312,84.04790209,92.55633339,408.0123363,0,0.492088464,60.52205708,-0.492088464,119.4779429,0.948392253,0,471.0036411,92.55633339,531.5799102,10,10,13% -10/11/2018 19:00,46.8808525,160.9250438,679.6341561,857.3002462,93.65422399,650.0499167,554.0963438,95.95357294,90.83020359,5.123369347,167.6091901,0,167.6091901,2.824020401,164.7851697,0.818225232,2.808671864,0.017240686,-0.017240686,0.527205359,0.137800938,3.034863202,97.61163285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.30944659,2.045993167,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.198748059,93.82801433,89.50819465,95.8740075,554.0963438,0,0.646327055,49.7347534,-0.646327055,130.2652466,0.972639785,0,628.4443433,95.8740075,691.1919637,10,11,10% -10/11/2018 20:00,45.07671199,181.5209968,706.0748514,864.8519174,95.35152409,748.5225529,650.7235386,97.79901431,92.47632383,5.322690477,174.0712226,0,174.0712226,2.875200261,171.1960224,0.78673704,3.168139055,0.367825796,-0.367825796,0.467251774,0.135044498,2.869976027,92.3082945,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.89175998,2.083072802,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.079287862,88.73024379,90.97104784,90.81331659,650.7235386,0,0.752410355,41.20039608,-0.752410355,138.7996039,0.983546901,0,730.9881675,90.81331659,790.423667,10,12,8% -10/11/2018 21:00,47.51058838,201.8826483,670.2230337,854.5060438,93.04355475,781.5389415,686.2485689,95.29037261,90.23794828,5.052424331,165.3089406,0,165.3089406,2.80560647,162.5033341,0.829216197,3.523516916,0.728835683,-0.728835683,0.405515447,0.138824764,2.465808539,79.30887877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.74014826,2.032652337,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.786469892,76.23471093,88.52661815,78.26736327,686.2485689,0,0.803093874,36.57343046,-0.803093874,143.4265695,0.987740778,0,766.3623133,78.26736327,817.5867372,10,13,7% -10/11/2018 22:00,53.59445164,219.5167738,574.7727985,822.4982067,86.62272216,742.1690993,653.8254917,88.34360762,84.01072748,4.33288014,141.9723142,0,141.9723142,2.611994677,139.3603195,0.935399642,3.831290466,1.168649899,-1.168649899,0.330302787,0.150707762,1.868473773,60.09653939,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.75430676,1.892381252,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353702888,57.76707954,82.10800965,59.65946079,653.8254917,0,0.794926343,37.35170088,-0.794926343,142.6482991,0.987101091,0,727.4998656,59.65946079,766.5457895,10,14,5% -10/11/2018 23:00,62.23116389,233.8493875,427.2215173,754.8112117,75.55087005,626.369826,549.8765172,76.49330882,73.27273257,3.220576257,105.8629406,0,105.8629406,2.278137485,103.5848031,1.086138707,4.081441765,1.824218833,-1.824218833,0.218193896,0.17684238,1.147975529,36.92283916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.43253761,1.650502853,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.831704363,35.49163743,71.26424197,37.14214028,549.8765172,0,0.728495429,43.23959162,-0.728495429,136.7604084,0.981365389,0,610.8940244,37.14214028,635.2028124,10,15,4% -10/11/2018 0:00,72.45207184,245.5719275,241.0828994,608.5853582,57.59229448,427.9677041,370.294645,57.67305904,55.85567431,1.817384729,60.18996028,0,60.18996028,1.736620172,58.45334011,1.264527203,4.286038685,3.152928835,-3.152928835,0,0.238890003,0.434155043,13.96391858,0.008948105,1,0.307129553,0,0.92324917,0.962011133,0.724496596,1,53.71440721,1.258175403,0.001523808,0.312029739,0.995688073,0.720184669,0.961238037,0.922476074,0.313742099,13.42264968,54.02814931,14.68082508,366.9812097,0,0.608451452,52.52238308,-0.608451452,127.4776169,0.967824175,0,409.2014359,14.68082508,418.8097423,10,16,2% -10/11/2018 1:00,83.54758299,255.6302532,49.35020838,237.2076892,22.69327477,127.6573161,105.2763046,22.38101152,22.00898881,0.372022716,12.64981534,0,12.64981534,0.684285964,11.96552938,1.458180405,4.461589587,8.799511712,-8.799511712,0,0.459841519,0.171071491,5.502247202,0.49358151,1,0.113157207,0,0.949733828,0.988495791,0.724496596,1,21.33471268,0.495762851,0.068410733,0.312029739,0.824386615,0.548883211,0.961238037,0.922476074,0.11716115,5.288969299,21.45187383,5.78473215,53.31386722,0,0.443814891,63.65245929,-0.443814891,116.3475407,0.937340418,0,71.42511642,5.78473215,75.21110792,10,17,5% -10/11/2018 2:00,95.35492498,264.8733785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664257399,4.622912555,-10.3110277,10.3110277,0,#DIV/0!,0,0,1,0.226869845,0,0.096681178,0.961238037,1,0.487153591,0.762656995,0,0,0.115824807,0.043398708,0.724496596,0.448993192,0.995946944,0.957184981,0,0,0,0,0,0,0.241421364,76.0295544,-0.241421364,103.9704456,0.842893225,0,0,0,0,10,18,0% -10/11/2018 3:00,107.1974322,274.0774055,0,0,0,0,0,0,0,0,0,0,0,0,0,1.870948142,4.783553131,-2.949878711,2.949878711,0.965387341,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.02046752,88.82721557,-0.02046752,91.17278443,0,0,0,0,0,10,19,0% -10/11/2018 4:00,118.8932663,284.1004281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075078955,4.958487876,-1.500437877,1.500437877,0.786743678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.206082162,101.8928551,0.206082162,78.10714491,0,0.807378321,0,0,0,10,20,0% -10/11/2018 5:00,130.023251,296.1271481,0,0,0,0,0,0,0,0,0,0,0,0,0,2.269333835,5.168393739,-0.825276775,0.825276775,0.67128433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.422793058,115.0110509,0.422793058,64.98894908,0,0.931738834,0,0,0,10,21,0% -10/11/2018 6:00,139.8656445,311.9925679,0,0,0,0,0,0,0,0,0,0,0,0,0,2.441116007,5.445297551,-0.395909682,0.395909682,0.597858233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614902941,127.9448682,0.614902941,52.05513184,0,0.968686354,0,0,0,10,22,0% -10/11/2018 7:00,147.0585214,334.0476234,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566655391,5.830230886,-0.067194244,0.067194244,0.541644582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.769327953,140.2935779,0.769327953,39.7064221,0,0.985008211,0,0,0,10,23,0% -10/12/2018 8:00,149.5527979,2.186491487,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610188728,0.038161476,0.22196818,-0.22196818,0.492194895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.875553996,151.1106089,0.875553996,28.88939114,0,0.992893299,0,0,0,10,0,0% -10/12/2018 9:00,146.2636087,29.71644981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.552781547,0.518649891,0.509460699,-0.509460699,0.443030779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.92635293,157.8732577,0.92635293,22.12674233,0,0.996024891,0,0,0,10,1,0% -10/12/2018 10:00,138.576102,50.76793503,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418609245,0.886067621,0.833117553,-0.833117553,0.387682197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918274851,156.6751658,0.918274851,23.32483417,0,0.995550071,0,0,0,10,2,0% -10/12/2018 11:00,128.4905359,65.9427915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242582909,1.15091883,1.254446965,-1.254446965,0.315630624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.851882957,148.4170646,0.851882957,31.58293536,0,0.991306491,0,0,0,10,3,0% -10/12/2018 12:00,117.2551343,77.59628088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.046488159,1.354310589,1.924156952,-1.924156952,0.201103471,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.731715049,137.030366,0.731715049,42.969634,0,0.981667389,0,0,0,10,4,0% -10/12/2018 13:00,105.5311211,87.45318235,0,0,0,0,0,0,0,0,0,0,0,0,0,1.841865526,1.526345973,3.4326358,-3.4326358,0,#DIV/0!,0,0,0.053802318,1,0.28347581,0,0.926911689,0.965673652,0.724496596,1,0,0,0.008973648,0.312029739,0.97486798,0.699364576,0.961238037,0.922476074,0,0,0,0,0,0,-0.56597422,124.4699703,0.56597422,55.53002974,0,0.961656754,0,0,0,10,5,0% -10/12/2018 14:00,93.71464502,96.63248422,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635629113,1.686555014,13.76845719,-13.76845719,0,#DIV/0!,0,0,0.645941393,1,0.072502472,0,0.954215197,0.99297716,0.724496596,1,0,0,0.08454144,0.312029739,0.788381351,0.512877946,0.961238037,0.922476074,0,0,0,0,0,0,-0.365969791,111.4672775,0.365969791,68.53272249,0,0.913376702,0,0,0,10,6,0% -10/12/2018 15:00,82.0077112,105.967886,72.67386873,312.4275831,29.23399266,28.90032624,0,28.90032624,28.35247992,0.54784632,63.32590253,44.82376893,18.5021336,0.881512741,17.62062086,1.431304572,1.849488511,-5.76442739,5.76442739,0.484071169,0.402262783,0.378896068,12.1866,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.25348214,0.63865298,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.274508912,11.71422346,27.52799105,12.35287644,0,44.82376893,-0.143469307,98.2486502,0.143469307,81.7513498,0,0.701493403,27.52799105,43.79645466,56.19189469,10,7,104% -10/12/2018 16:00,71.03539452,116.2369816,267.44809,637.2301801,60.35847876,112.5898705,52.03528585,60.5545846,58.53844793,2.016136673,66.66591666,0,66.66591666,1.820030834,64.84588582,1.23980152,2.028718041,-2.012814793,2.012814793,0.874365292,0.225682968,1.820004691,58.53760707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.26938277,1.318606143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318587203,56.26857451,57.58796997,57.58718065,52.03528585,0,0.08165854,85.31609498,-0.08165854,94.68390502,0,0,57.58796997,57.58718065,95.27762796,10,8,65% -10/12/2018 17:00,61.04571042,128.2998113,448.4618042,767.3762706,76.96597575,306.4412269,228.4153647,78.02586212,74.64516761,3.380694511,111.0555647,0,111.0555647,2.320808143,108.7347565,1.065448641,2.239254137,-0.949767197,0.949767197,0.692573446,0.171622143,2.51974876,81.0437817,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.75177437,1.681417599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.825549399,77.90236562,73.57732377,79.58378321,228.4153647,0,0.297657581,72.68303378,-0.297657581,107.3169662,0.882021749,0,275.0446432,79.58378321,327.1306377,10,9,19% -10/12/2018 18:00,52.77602111,143.083255,588.3743724,828.4090132,87.24290483,494.3084222,405.2607983,89.04762391,84.61220936,4.43541455,145.288874,0,145.288874,2.630695473,142.6581785,0.921115334,2.497273904,-0.38302142,0.38302142,0.59565421,0.14827788,2.907901009,93.5280923,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.33247402,1.905929915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.106764382,89.90275984,83.4392384,91.80868975,405.2607983,0,0.489203753,60.71174,-0.489203753,119.28826,0.947793098,0,467.5426259,91.80868975,527.6295772,10,10,13% -10/12/2018 19:00,47.22734527,161.1393249,674.7821661,856.7023276,93.00328859,646.25568,550.9699907,95.28568929,90.19889629,5.086792997,166.4131408,0,166.4131408,2.804392297,163.6087485,0.824272672,2.812411774,0.021492967,-0.021492967,0.526478176,0.137827129,3.010070737,96.81422194,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.70261,2.031772672,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.180786002,93.06151264,88.883396,95.09328531,550.9699907,0,0.643128859,49.97447169,-0.643128859,130.0255283,0.972255083,0,624.5667699,95.09328531,686.8034232,10,11,10% -10/12/2018 20:00,45.45317325,181.5964098,700.9389002,864.2368403,94.68370855,744.3421634,647.2295445,97.1126189,91.82864539,5.283973508,172.8058147,0,172.8058147,2.855063158,169.9507515,0.793307529,3.16945526,0.373935174,-0.373935174,0.466207009,0.135081258,2.844428659,91.48660333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,88.26918682,2.068483539,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.060778881,87.94040299,90.3299657,90.00888653,647.2295445,0,0.748902979,41.50456028,-0.748902979,138.4954397,0.983235678,0,726.7091454,90.00888653,785.6181614,10,12,8% -10/12/2018 21:00,47.88711675,201.8118809,664.8659512,853.7314812,92.35922106,776.9763846,682.3900945,94.58629016,89.57424978,5.01204038,163.9894187,0,163.9894187,2.784971284,161.2044474,0.835787857,3.522281791,0.737503727,-0.737503727,0.404033124,0.138914049,2.439967993,78.47775799,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.10217601,2.017702215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.767748505,75.43580602,87.86992452,77.45350824,682.3900945,0,0.799302954,36.93640922,-0.799302954,143.0635908,0.987445496,0,761.6929497,77.45350824,812.3847217,10,13,7% -10/12/2018 22:00,53.94903667,219.3473347,569.2785004,821.334985,85.91906511,737.2114291,649.591679,87.61975009,83.32828829,4.2914618,140.6189401,0,140.6189401,2.590776821,138.0281633,0.941588318,3.828333196,1.181853159,-1.181853159,0.328044896,0.150926243,1.843013567,59.27765164,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.09832025,1.877008987,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335257056,56.9799335,81.4335773,58.85694248,649.591679,0,0.790897369,37.7305487,-0.790897369,142.2694513,0.986780672,0,722.438091,58.85694248,760.9587827,10,14,5% -10/12/2018 23:00,62.55783471,233.6307296,421.7055667,752.7218062,74.81144608,620.9244647,545.189865,75.73459965,72.55560495,3.178994691,104.5032381,0,104.5032381,2.255841124,102.247397,1.091840189,4.077625465,1.847666838,-1.847666838,0.214184051,0.177402083,1.124058945,36.15359959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.74320727,1.634349215,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.814376879,34.7522151,70.55758415,36.38656431,545.189865,0,0.724291313,43.59007472,-0.724291313,136.4099253,0.980967003,0,605.3708521,36.38656431,629.1851307,10,15,4% -10/12/2018 0:00,72.75421098,245.3315545,235.768958,603.8675165,56.73951927,421.6335858,364.8276463,56.80593941,55.02861342,1.777325994,58.87581935,0,58.87581935,1.710905853,57.1649135,1.269800526,4.281843385,3.210674969,-3.210674969,0,0.240657293,0.427726463,13.75715335,0.018553333,1,0.301938016,0,0.924062881,0.962824845,0.724496596,1,52.94334158,1.239545466,0.003145377,0.312029739,0.991119393,0.715615989,0.961238037,0.922476074,0.308274222,13.22389908,53.2516158,14.46344455,358.0588774,0,0.604151799,52.83216937,-0.604151799,127.1678306,0.967239343,0,399.580249,14.46344455,409.0462842,10,16,2% -10/12/2018 1:00,83.82856383,255.3786162,45.5236443,224.4878651,21.39036252,119.7647193,98.67617866,21.08854063,20.74536417,0.34317646,11.68273297,0,11.68273297,0.644998352,11.03773461,1.463084446,4.457197692,9.207375967,-9.207375967,0,0.469873685,0.161249588,5.186341042,0.510859012,1,0.108184531,0,0.950302587,0.98906455,0.724496596,1,20.10770668,0.46729911,0.070335606,0.312029739,0.819981011,0.544477607,0.961238037,0.922476074,0.110491604,4.985308282,20.21819829,5.452607392,48.26656355,0,0.439561304,63.92410605,-0.439561304,116.0758939,0.936250224,0,65.40777921,5.452607392,68.97640169,10,17,5% -10/12/2018 2:00,95.63187138,264.6120488,0,0,0,0,0,0,0,0,0,0,0,0,0,1.669091025,4.618351493,-9.812713166,9.812713166,0,#DIV/0!,0,0,1,0.172340597,0,0.10155801,0.961238037,1,0.47715239,0.752655794,0,0,0.115824807,0.032057709,0.724496596,0.448993192,0.997049707,0.958287744,0,0,0,0,0,0,0.237142211,76.28206752,-0.237142211,103.7179325,0.839156052,0,0,0,0,10,18,0% -10/12/2018 3:00,107.473622,273.8041912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.875768563,4.778784643,-2.906452763,2.906452763,0.972813615,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.016326332,89.06452853,-0.016326332,90.93547147,0,0,0,0,0,10,19,0% -10/12/2018 4:00,119.1782462,283.8133063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.080052793,4.953476656,-1.487966736,1.487966736,0.784610988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.210016433,102.1233153,0.210016433,77.87668472,0,0.811923392,0,0,0,10,20,0% -10/12/2018 5:00,130.3284942,295.8316059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.274661333,5.163235555,-0.820774596,0.820774596,0.670514412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.426465709,115.2434733,0.426465709,64.75652667,0,0.932757279,0,0,0,10,21,0% -10/12/2018 6:00,140.2033727,311.7227417,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447010475,5.440588195,-0.394656959,0.394656959,0.597644004,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618277284,128.1904415,0.618277284,51.80955853,0,0.969130136,0,0,0,10,22,0% -10/12/2018 7:00,147.4307563,333.9108835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573152116,5.827844326,-0.067757713,0.067757713,0.541740941,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772387841,140.5688018,0.772387841,39.43119816,0,0.985265682,0,0,0,10,23,0% -10/13/2018 8:00,149.925255,2.330167894,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616689332,0.040669102,0.220021711,-0.220021711,0.492527761,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.878304933,151.4385597,0.878304933,28.56144034,0,0.993072163,0,0,0,10,0,0% -10/13/2018 9:00,146.5832243,30.085898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.558359892,0.525097978,0.506070374,-0.506070374,0.443610559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928821679,158.2518751,0.928821679,21.74812495,0,0.996168354,0,0,0,10,1,0% -10/13/2018 10:00,138.8327186,51.19109053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423088049,0.893453077,0.827730554,-0.827730554,0.388603428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920507586,157.0004008,0.920507586,22.99959925,0,0.995682142,0,0,0,10,2,0% -10/13/2018 11:00,128.7028928,66.34472012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246289237,1.157933807,1.245535911,-1.245535911,0.317154504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.853942075,148.6430556,0.853942075,31.35694437,0,0.991448019,0,0,0,10,3,0% -10/13/2018 12:00,117.4429717,77.96699928,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049766539,1.360780845,1.907073009,-1.907073009,0.204024998,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.733674858,137.1953616,0.733674858,42.80463838,0,0.98184992,0,0,0,10,4,0% -10/13/2018 13:00,105.7096197,87.80034427,0,0,0,0,0,0,0,0,0,0,0,0,0,1.844980915,1.532405092,3.385119847,-3.385119847,0,#DIV/0!,0,0,0.046471088,1,0.287240958,0,0.926336429,0.965098393,0.724496596,1,0,0,0.007777057,0.312029739,0.978182885,0.702679481,0.961238037,0.922476074,0,0,0,0,0,0,-0.567915813,124.6050165,0.567915813,55.39498345,0,0.961958782,0,0,0,10,5,0% -10/13/2018 14:00,93.8958526,96.96600352,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638791782,1.692376024,13.08766518,-13.08766518,0,#DIV/0!,0,0,0.630719536,1,0.076259648,0,0.953817236,0.992579199,0.724496596,1,0,0,0.083011729,0.312029739,0.791706587,0.516203182,0.961238037,0.922476074,0,0,0,0,0,0,-0.36797545,111.5908121,0.36797545,68.40918789,0,0.91412137,0,0,0,10,6,0% -10/13/2018 15:00,82.20000999,106.2958704,69.81232971,305.2027062,28.39162243,28.06178509,0,28.06178509,27.53551026,0.52627483,62.21344833,44.43052856,17.78291977,0.85611217,16.9268076,1.434660819,1.855212919,-5.883739049,5.883739049,0.463667674,0.40668493,0.358806784,11.54045957,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.46817982,0.620250353,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.259954294,11.0931287,26.72813412,11.71337906,0,44.43052856,-0.145577112,98.37069989,0.145577112,81.62930011,0,0.706539415,26.72813412,43.10529873,54.93969003,10,7,106% -10/13/2018 16:00,71.25393544,116.563334,263.6772471,634.6742004,59.70919191,110.233078,50.33662804,59.89644993,57.90873947,1.987710466,65.73205374,0,65.73205374,1.800452439,63.9316013,1.243615778,2.034413966,-2.025921025,2.025921025,0.876606589,0.226448025,1.797981084,57.82925218,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.66408304,1.304421663,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.302631175,55.58767683,56.96671422,56.8920985,50.33662804,0,0.079310972,85.45103848,-0.079310972,94.54896152,0,0,56.96671422,56.8920985,94.20145484,10,8,65% -10/13/2018 17:00,61.30020619,128.6194466,444.2727525,766.1753577,76.3397611,303.4411446,226.0541933,77.38695131,74.03783564,3.34911567,110.0209979,0,110.0209979,2.301925461,107.7190725,1.06989043,2.244832825,-0.951122484,0.951122484,0.692805214,0.171830842,2.497069673,80.31434429,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.16798379,1.66773716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.809118478,77.20120264,72.97710226,78.8689398,226.0541933,0,0.29504237,72.83992193,-0.29504237,107.1600781,0.880532815,0,272.0252373,78.8689398,323.6433811,10,9,19% -10/13/2018 18:00,53.07580515,143.3725561,583.8277056,827.6559883,86.60686318,490.8763943,402.4799078,88.39648656,83.99534671,4.401139855,144.167303,0,144.167303,2.61151647,141.5557865,0.926347553,2.502323162,-0.380777505,0.380777505,0.595270478,0.148343188,2.884108078,92.76282986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.73952217,1.892034793,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.089526485,89.16716046,82.82904866,91.05919526,402.4799078,0,0.486288885,60.90304879,-0.486288885,119.0969512,0.947180459,0,464.0501524,91.05919526,523.6465745,10,10,13% -10/13/2018 19:00,47.57310224,161.3477746,669.9126035,856.0917063,92.35120335,642.4302636,547.8137056,94.61655801,89.56647383,5.050084178,165.2127962,0,165.2127962,2.784729521,162.4280667,0.83030727,2.816049907,0.025734437,-0.025734437,0.525752842,0.137855599,2.985258623,96.01617906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.09470148,2.017527058,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.16280971,92.29440347,88.25751118,94.31193052,547.8137056,0,0.639900727,50.2155826,-0.639900727,129.7844174,0.97186288,0,620.6573168,94.31193052,682.3825891,10,11,10% -10/13/2018 20:00,45.82788711,181.6678791,695.7934872,863.6112655,94.01526692,740.1347444,643.7091994,96.42554496,91.18035975,5.245185211,171.5380938,0,171.5380938,2.834907177,168.7031866,0.799847519,3.170702636,0.380053166,-0.380053166,0.46516077,0.135119498,2.818909287,90.66581259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.64603,2.053880599,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.042290182,87.15142771,89.68832019,89.20530831,643.7091994,0,0.745369155,41.80918363,-0.745369155,138.1908164,0.982919145,0,722.4024163,89.20530831,780.7855065,10,12,8% -10/13/2018 21:00,48.26137186,201.7398538,659.5101147,852.9466573,91.67488451,772.3945427,678.5123283,93.88221432,88.9105485,4.971665822,162.6701989,0,162.6701989,2.764336012,159.9058628,0.84231984,3.521024681,0.746207413,-0.746207413,0.402544706,0.139004516,2.414209555,77.64927807,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.46420109,2.002752031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.749086604,74.63943961,87.2132877,76.64219164,678.5123283,0,0.795492101,37.29823946,-0.795492101,142.7017605,0.987145825,0,757.0038996,76.64219164,807.1646812,10,13,7% -10/13/2018 22:00,54.30124166,219.1781843,563.7980907,820.1587557,85.21609074,732.2447818,645.3481225,86.89665935,82.64651119,4.250148157,139.2689541,0,139.2689541,2.56957955,136.6993745,0.947735455,3.825380965,1.195152434,-1.195152434,0.325770586,0.151146469,1.817694785,58.46331258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.44297017,1.861651637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.316913684,56.19715981,80.75988385,58.05881145,645.3481225,0,0.786857566,38.10719169,-0.786857566,141.8928083,0.986456098,0,717.3674747,58.05881145,755.3658056,10,14,5% -10/13/2018 23:00,62.88208996,233.4127439,416.217692,750.6078339,74.07326034,615.4805923,540.5032892,74.97730301,71.83967824,3.137624773,103.1503803,0,103.1503803,2.2335821,100.9167982,1.09749951,4.073820898,1.871407909,-1.871407909,0.210124089,0.177967592,1.100353721,35.39115812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.05503128,1.618222628,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.797202525,34.01932735,69.8522338,35.63754998,540.5032892,0,0.720087461,43.93829816,-0.720087461,136.0617018,0.98056399,0,599.8502958,35.63754998,623.1743595,10,15,4% -10/13/2018 0:00,73.05381319,245.0917221,230.5014908,599.0747528,55.88713701,415.3034786,359.3639274,55.93955123,54.20193362,1.737617602,57.57295848,0,57.57295848,1.685203382,55.8877551,1.275029571,4.27765752,3.26983908,-3.26983908,0,0.242458896,0.421300846,13.55048341,0.02820322,1,0.296792636,0,0.924863905,0.963625869,0.724496596,1,52.17113115,1.220924114,0.004759924,0.312029739,0.986590875,0.711087471,0.961238037,0.922476074,0.302855295,13.02524007,52.47398645,14.24616418,349.2287076,0,0.599864918,53.13977629,-0.599864918,126.8602237,0.966647901,0,390.0551836,14.24616418,399.3790131,10,16,2% -10/13/2018 1:00,84.10652798,255.1272121,41.82894065,211.698494,20.09190762,111.9617887,92.16040198,19.80138669,19.48606247,0.315324223,10.74775608,0,10.74775608,0.605845146,10.14191094,1.467935836,4.452809862,9.64883207,-9.64883207,0,0.480335082,0.151461286,4.871515618,0.52827825,1,0.103270791,0,0.950858987,0.98962095,0.724496596,1,18.88479756,0.438932746,0.072250406,0.312029739,0.815627763,0.540124359,0.961238037,0.922476074,0.103851978,4.682686109,18.98864954,5.121618855,43.47406606,0,0.435338014,64.19319581,-0.435338014,115.8068042,0.935146717,0,59.6432797,5.121618855,62.99527681,10,17,6% -10/13/2018 2:00,95.90588393,264.3505432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.673873447,4.613787359,-9.365452893,9.365452893,0,#DIV/0!,0,0,1,0.116405187,0,0.106372374,0.961238037,1,0.467466815,0.742970219,0,0,0.115824807,0.021055073,0.724496596,0.448993192,0.998090159,0.959328196,0,0,0,0,0,0,0.232900159,76.53212342,-0.232900159,103.4678766,0.835315733,0,0,0,0,10,18,0% -10/13/2018 3:00,107.7466155,273.5302373,0,0,0,0,0,0,0,0,0,0,0,0,0,1.880533199,4.774003245,-2.864819878,2.864819878,0.979933258,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.012233009,89.29908275,-0.012233009,90.70091725,0,0,0,0,0,10,19,0% -10/13/2018 4:00,119.4597819,283.5245798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084966518,4.948437428,-1.475885818,1.475885818,0.782545029,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.213894147,102.3506574,0.213894147,77.64934257,0,0.816239513,0,0,0,10,20,0% -10/13/2018 5:00,130.6301555,295.5330623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.279926315,5.158024986,-0.81641453,0.81641453,0.669768797,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.430075776,115.4723692,0.430075776,64.52763085,0,0.933741418,0,0,0,10,21,0% -10/13/2018 6:00,140.5377152,311.4479791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452845853,5.435792683,-0.39346879,0.39346879,0.597440816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621586095,128.4320523,0.621586095,51.56794772,0,0.96956062,0,0,0,10,22,0% -10/13/2018 7:00,147.8003831,333.768648,0,0,0,0,0,0,0,0,0,0,0,0,0,2.579603322,5.825361847,-0.068352372,0.068352372,0.541842634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77538253,140.8397269,0.77538253,39.16027307,0,0.9855157,0,0,0,10,23,0% -10/14/2018 8:00,150.2958305,2.472526591,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623157093,0.04315373,0.218062935,-0.218062935,0.492862731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880994255,151.7625333,0.880994255,28.23746669,0,0.993245941,0,0,0,10,0,0% -10/14/2018 9:00,146.9009708,30.45659633,0,0,0,0,0,0,0,0,0,0,0,0,0,2.563905615,0.531567885,0.502682859,-0.502682859,0.444189858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931235404,158.628218,0.931235404,21.37178202,0,0.996307883,0,0,0,10,1,0% -10/14/2018 10:00,139.0877441,51.61422495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427539084,0.900838166,0.822365406,-0.822365406,0.389520923,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922694438,157.3232244,0.922694438,22.67677559,0,0.99581088,0,0,0,10,2,0% -10/14/2018 11:00,128.9142576,66.7453893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249978249,1.164926804,1.236684875,-1.236684875,0.318668121,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.855966368,148.8666595,0.855966368,31.13334052,0,0.99158649,0,0,0,10,3,0% -10/14/2018 12:00,117.6304249,78.33581233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053038215,1.367217847,1.890169975,-1.890169975,0.206915587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.735612056,137.3589594,0.735612056,42.64104065,0,0.98202939,0,0,0,10,4,0% -10/14/2018 13:00,105.8882422,88.14520919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.848098465,1.53842412,3.338549916,-3.338549916,0,#DIV/0!,0,0,0.03917474,1,0.291026685,0,0.925755062,0.964517025,0.724496596,1,0,0,0.006578101,0.312029739,0.981515562,0.706012158,0.961238037,0.922476074,0,0,0,0,0,0,-0.569847322,124.7395798,0.569847322,55.26042024,0,0.962257199,0,0,0,10,5,0% -10/14/2018 14:00,94.07757334,97.29685343,0,0,0,0,0,0,0,0,0,0,0,0,0,1.641963407,1.698150444,12.46561835,-12.46561835,0,#DIV/0!,0,0,0.615620062,1,0.080049228,0,0.953412485,0.992174448,0.724496596,1,0,0,0.081477158,0.312029739,0.795061195,0.51955779,0.961238037,0.922476074,0,0,0,0,0,0,-0.369983001,111.7145689,0.369983001,68.28543106,0,0.914858656,0,0,0,10,6,0% -10/14/2018 15:00,82.39297019,106.6206932,66.96518964,297.8082924,27.54192208,27.2162434,0,27.2162434,26.71143151,0.504811886,61.05195133,43.98497524,17.06697609,0.83049057,16.23648552,1.43802861,1.860882147,-6.009598297,6.009598297,0.442144475,0.411287151,0.339023224,10.90415228,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67604399,0.601687591,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.245621172,10.48148593,25.92166516,11.08317352,0,43.98497524,-0.147695603,98.49340689,0.147695603,81.50659311,0,0.711465886,25.92166516,42.3769829,53.65655293,10,7,107% -10/14/2018 16:00,71.47332267,116.8858117,259.8886413,632.0516697,59.05664513,107.8667666,48.63174686,59.23501974,57.27586938,1.959150356,64.79378573,0,64.79378573,1.780775746,63.01300998,1.247444808,2.040042263,-2.039474123,2.039474123,0.878924305,0.22723827,1.775847031,57.11734495,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.05574424,1.290165966,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286595129,54.90336453,56.34233937,56.19353049,48.63174686,0,0.076942676,85.58714793,-0.076942676,94.41285207,0,0,56.34233937,56.19353049,93.11988121,10,8,65% -10/14/2018 17:00,61.5553868,128.9342387,440.0616185,764.9447258,75.71156059,300.4161626,223.6702145,76.74594805,73.42857769,3.317370363,108.9810172,0,108.9810172,2.282982898,106.6980343,1.074344172,2.250326984,-0.952588292,0.952588292,0.693055882,0.172047635,2.474310085,79.58231773,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58234187,1.654013338,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792629234,76.49755086,72.3749711,78.1515642,223.6702145,0,0.292400492,72.99827521,-0.292400492,107.0017248,0.879001656,0,268.9814601,78.1515642,320.1300958,10,9,19% -10/14/2018 18:00,53.37571392,143.6560469,579.2603629,826.8854553,85.96934762,487.4144023,399.6706384,87.7437639,83.3770546,4.366709296,143.0406745,0,143.0406745,2.592293024,140.4483814,0.931581949,2.507271008,-0.378574004,0.378574004,0.594893657,0.148412274,2.860266249,91.99599468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.14519628,1.878107471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072253161,88.43004932,82.21744944,90.30815679,399.6706384,0,0.483344623,61.09592659,-0.483344623,118.9040734,0.94655414,0,460.527347,90.30815679,519.6322294,10,10,13% -10/14/2018 19:00,47.91800644,161.5503882,665.0276222,855.4687557,91.69810492,638.5751942,544.6288664,93.94632785,88.93306873,5.013259125,164.0086826,0,164.0086826,2.765036193,161.2436464,0.836326983,2.819586182,0.029962478,-0.029962478,0.525029804,0.13788616,2.960437902,95.21785936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.48584839,2.00325931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.144827182,91.52702821,87.63067558,93.53028752,544.6288664,0,0.636643785,50.4579922,-0.636643785,129.5420078,0.971463146,0,616.7175475,93.53028752,677.9312501,10,11,10% -10/14/2018 20:00,46.20073537,181.7354032,690.6410843,862.9756762,93.34635504,735.9022622,640.1643,95.73796225,90.53161803,5.206344221,170.2686639,0,170.2686639,2.814737016,167.4539268,0.806354949,3.171881154,0.386176881,-0.386176881,0.464113553,0.135158995,2.793429771,89.8463038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,87.02243479,2.039267386,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.02383036,86.36368468,89.04626515,88.40295207,640.1643,0,0.741810363,42.11414006,-0.741810363,137.8858599,0.982597329,0,718.0699963,88.40295207,775.9279604,10,12,8% -10/14/2018 21:00,48.63323178,201.6665331,654.1582453,852.1522024,90.99072123,767.7958073,674.6174709,93.17833644,88.24701526,4.931321171,161.3519461,0,161.3519461,2.743705965,158.6082402,0.84881002,3.519744994,0.754943167,-0.754943167,0.401050805,0.139095887,2.388545443,76.82383203,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.82638771,1.987805632,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.730493043,73.84598948,86.55688075,75.83379511,674.6174709,0,0.79166312,37.65879466,-0.79166312,142.3412053,0.986841822,0,752.297615,75.83379511,801.9293173,10,13,7% -10/14/2018 22:00,54.65093794,219.0092872,558.3344507,818.9703887,84.5140001,727.2719491,641.097397,86.1745521,81.96559117,4.208960931,137.9230607,0,137.9230607,2.548408926,135.3746517,0.953838806,3.822433153,1.208543027,-1.208543027,0.32348066,0.151368055,1.792529441,57.6539086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.78844395,1.846313592,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298681478,55.41912992,80.08712543,57.26544351,641.097397,0,0.782809007,38.48151012,-0.782809007,141.5184899,0.98612746,0,712.2908729,57.26544351,749.7699603,10,14,5% -10/14/2018 23:00,63.20379845,233.1954168,410.7608316,748.4705688,73.33655337,610.0413841,535.8197098,74.22167436,71.1251857,3.096488655,101.8050869,0,101.8050869,2.211367667,99.59371925,1.103114383,4.070027824,1.895436935,-1.895436935,0.206014883,0.178538331,1.076871003,34.63587318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.36823388,1.602128347,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.780189376,33.29331874,69.14842325,34.89544709,535.8197098,0,0.715886145,44.28413093,-0.715886145,135.7158691,0.980156492,0,594.3355901,34.89544709,617.1739623,10,15,4% -10/14/2018 0:00,73.35074832,244.8524389,225.2834631,594.2088685,55.03546823,408.9809878,353.9067601,55.07422771,53.3759458,1.698281905,56.2821063,0,56.2821063,1.659522426,54.62258387,1.280212067,4.273481241,3.33044522,-3.33044522,0,0.24429431,0.414880607,13.34398645,0.037893513,1,0.291695452,0,0.925652053,0.964414016,0.724496596,1,51.39811021,1.202318349,0.006366731,0.312029739,0.982104262,0.706600858,0.961238037,0.922476074,0.29748626,12.82674734,51.69559647,14.02906569,340.4959898,0,0.595593198,53.44506862,-0.595593198,126.5549314,0.966050082,0,380.6317754,14.02906569,389.8135183,10,16,2% -10/14/2018 1:00,84.38132288,254.8760665,38.27215635,198.8754847,18.80079142,104.2671257,85.74473586,18.52238987,18.23387819,0.288511681,9.846440635,0,9.846440635,0.566913229,9.279527407,1.472731911,4.448426546,10.12788273,-10.12788273,0,0.491239408,0.141728307,4.558469548,0.545829496,1,0.098418319,0,0.951402955,0.990164919,0.724496596,1,17.66876464,0.410726704,0.074153961,0.312029739,0.811329064,0.53582566,0.961238037,0.922476074,0.097254467,4.381774319,17.76601911,4.792501023,38.94272986,0,0.431147841,64.45957291,-0.431147841,115.5404271,0.934030499,0,54.13971651,4.792501023,57.27631258,10,17,6% -10/14/2018 2:00,96.17683667,264.0889001,0,0,0,0,0,0,0,0,0,0,0,0,0,1.678602464,4.609220824,-8.962001457,8.962001457,0,#DIV/0!,0,0,1,0.059041567,0,0.111122559,0.961238037,1,0.458093175,0.733596579,0,0,0.115824807,0.010384408,0.724496596,0.448993192,0.999071431,0.960309467,0,0,0,0,0,0,0.228697531,76.77959794,-0.228697531,103.2204021,0.831370617,0,0,0,0,10,18,0% -10/14/2018 3:00,108.0162857,273.2555912,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885239831,4.769209766,-2.82489765,2.82489765,0.986760361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.008189705,89.53075924,-0.008189705,90.46924076,0,0,0,0,0,10,19,0% -10/14/2018 4:00,119.7377413,283.2342984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.089817824,4.943371061,-1.464187212,1.464187212,0.78054445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.217713397,102.5747652,0.217713397,77.42523482,0,0.820340269,0,0,0,10,20,0% -10/14/2018 5:00,130.9280925,295.231548,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285126298,5.152762568,-0.812195801,0.812195801,0.669047352,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.433621663,115.6976205,0.433621663,64.30237949,0,0.934692108,0,0,0,10,21,0% -10/14/2018 6:00,140.8685191,311.1682308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45861947,5.430910156,-0.392345559,0.392345559,0.597248732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62482813,128.6695738,0.62482813,51.3304262,0,0.969977995,0,0,0,10,22,0% -10/14/2018 7:00,148.1672607,333.6207192,0,0,0,0,0,0,0,0,0,0,0,0,0,2.586006544,5.822780004,-0.068978773,0.068978773,0.541949754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778311142,141.1062042,0.778311142,38.89379578,0,0.98575834,0,0,0,10,23,0% -10/15/2018 8:00,150.6644257,2.613364418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629590293,0.045611814,0.216091346,-0.216091346,0.493199893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883621446,152.0823505,0.883621446,27.91764952,0,0.993414683,0,0,0,10,0,0% -10/15/2018 9:00,147.2167883,30.82835824,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56941767,0.538056354,0.499297738,-0.499297738,0.444768748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933593916,159.0021567,0.933593916,20.99784327,0,0.996443524,0,0,0,10,1,0% -10/15/2018 10:00,139.3411539,52.03714068,0,0,0,0,0,0,0,0,0,0,0,0,0,2.431961919,0.908219438,0.817021756,-0.817021756,0.39043474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924835489,157.6435612,0.924835489,22.35643879,0,0.995936331,0,0,0,10,2,0% -10/15/2018 11:00,129.1246246,67.1446265,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253649844,1.171894808,1.2278934,-1.2278934,0.320171551,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.857956117,149.0878646,0.857956117,30.91213537,0,0.991721961,0,0,0,10,3,0% -10/15/2018 12:00,117.8174927,78.70257273,0,0,0,0,0,0,0,0,0,0,0,0,0,2.056303164,1.373619024,1.873445968,-1.873445968,0.20977556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.737527036,137.5211808,0.737527036,42.47881915,0,0.982205875,0,0,0,10,4,0% -10/15/2018 13:00,106.0669827,88.48764557,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851218075,1.544400762,3.292902156,-3.292902156,0,#DIV/0!,0,0,0.031913686,1,0.294832702,0,0.925167592,0.963929555,0.724496596,1,0,0,0.005376885,0.312029739,0.984865778,0.709362374,0.961238037,0.922476074,0,0,0,0,0,0,-0.571769156,124.8736868,0.571769156,55.12631324,0,0.962552121,0,0,0,10,5,0% -10/15/2018 14:00,94.25979099,97.62491074,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645143705,1.703876124,11.89509323,-11.89509323,0,#DIV/0!,0,0,0.600643293,1,0.083871063,0,0.95300088,0.991762844,0.724496596,1,0,0,0.079937895,0.312029739,0.798444973,0.522941569,0.961238037,0.922476074,0,0,0,0,0,0,-0.371992772,111.8385693,0.371992772,68.16143071,0,0.915588786,0,0,0,10,6,0% -10/15/2018 15:00,82.58655282,106.942236,64.13474281,290.2438748,26.68505864,26.36388045,0,26.36388045,25.88040567,0.483474782,59.84059951,43.48573562,16.3548639,0.804652975,15.55021092,1.441407265,1.866494127,-6.142533692,6.142533692,0.419411184,0.416078049,0.31956786,10.27840089,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.87723034,0.582968342,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.231525827,9.879989894,25.10875616,10.46295824,0,43.48573562,-0.149824818,98.61677463,0.149824818,81.38322537,0,0.716276917,25.10875616,41.61078689,52.34218397,10,7,108% -10/15/2018 16:00,71.69350279,117.2043027,256.0834184,629.3615237,58.40089043,105.4916194,46.92126627,58.57035309,56.63988811,1.930464978,63.85139196,0,63.85139196,1.761002323,62.09038963,1.251287676,2.04560098,-2.053492948,2.053492948,0.881321666,0.228054166,1.753608816,56.40208751,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.44441486,1.275840188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.270483618,54.21583187,55.71489847,55.49167206,46.92126627,0,0.074553757,85.7244173,-0.074553757,94.2755827,0,0,55.71489847,55.49167206,92.033088,10,8,65% -10/15/2018 17:00,61.81117381,129.2440938,435.829836,763.6843581,75.08147092,297.3670325,221.2640756,76.10295695,72.81748755,3.285469399,107.935973,0,107.935973,2.263983369,105.6719896,1.078808497,2.255734975,-0.954169562,0.954169562,0.693326295,0.172272444,2.451478367,78.84797118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.99493878,1.640248244,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776087732,75.79166903,71.77102651,77.43191727,221.2640756,0,0.289732365,73.15806618,-0.289732365,106.8419338,0.877426943,0,265.914088,77.43191727,316.5917292,10,9,19% -10/15/2018 18:00,53.67564453,143.9336732,574.6741562,826.0976795,85.33047721,483.9235623,396.8339773,87.08958502,82.75744849,4.332136533,141.9094312,0,141.9094312,2.573028724,139.3364025,0.936816725,2.512116502,-0.376413935,0.376413935,0.594524264,0.148484974,2.836385461,91.22790643,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.54960732,1.864150552,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054951611,87.69173369,81.60455893,89.55588424,396.8339773,0,0.480371737,61.29031644,-0.480371737,118.7096836,0.945913943,0,456.9753511,89.55588424,515.5878862,10,10,13% -10/15/2018 19:00,48.26194148,161.7471599,660.1294025,854.8338716,91.044132,634.6920248,541.416875,93.27514978,88.2988155,4.976334276,162.8013328,0,162.8013328,2.745316497,160.0560163,0.842329782,2.823020495,0.034174336,-0.034174336,0.524309534,0.137918614,2.935619726,94.41962152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.87618007,1.988972457,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.126846498,90.75973163,87.00302657,92.74870408,541.416875,0,0.633359174,50.70160655,-0.633359174,129.2983934,0.971055853,0,612.7490517,92.74870408,673.4512236,10,11,10% -10/15/2018 20:00,46.57160012,181.7989779,685.484194,862.3305831,92.67713117,731.6467197,636.5966766,95.05004313,89.88257373,5.167469404,168.9981365,0,168.9981365,2.794557447,166.2035791,0.81282776,3.172990741,0.392303263,-0.392303263,0.46306588,0.135199516,2.76800208,89.02846183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,86.39854872,2.024647357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.005408084,85.57754388,88.4039568,87.60219123,636.5966766,0,0.73822811,42.41930432,-0.73822811,137.5806957,0.982270257,0,713.7139381,87.60219123,771.0478202,10,12,8% -10/15/2018 21:00,49.00257448,201.5918834,648.813096,851.3487844,90.30691025,763.1826155,670.7077646,92.47485089,87.58382371,4.891027178,160.0353334,0,160.0353334,2.723086541,157.3122468,0.855256267,3.51844211,0.763707171,-0.763707171,0.399552072,0.139187866,2.362987959,76.00181547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.18890276,1.972866929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.711976732,73.0558359,85.90087949,75.02870283,670.7077646,0,0.787817845,38.01794921,-0.787817845,141.9820508,0.986533552,0,747.5765931,75.02870283,796.6813785,10,13,7% -10/15/2018 22:00,54.99799645,218.8406064,552.8904903,817.7708119,83.81299791,722.2957762,636.8421274,85.45364884,81.28572679,4.167922058,136.5819716,0,136.5819716,2.527271124,134.0547005,0.95989612,3.81948912,1.222019827,-1.222019827,0.321175991,0.151590594,1.767529578,56.84982707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.13493244,1.830999326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.280569162,54.64621617,79.4155016,56.4772155,636.8421274,0,0.7787538,38.85338429,-0.7787538,141.1466157,0.985794856,0,707.2111947,56.4772155,744.1744027,10,14,5% -10/15/2018 23:00,63.52282845,232.9787334,405.3379446,746.3113934,72.60157172,604.610083,531.1421079,73.46797511,70.41236646,3.055608642,100.4680828,0,100.4680828,2.189205259,98.27887751,1.108682507,4.066245985,1.919747924,-1.919747924,0.20185746,0.179113682,1.05362186,33.8881008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.68304491,1.586071758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763345451,32.57453149,68.44639036,34.16060325,531.1421079,0,0.711689668,44.62744181,-0.711689668,135.3725582,0.979744659,0,588.830034,34.16060325,611.1874656,10,15,4% -10/15/2018 0:00,73.64488559,244.6137128,220.1178425,589.2719414,54.18484941,402.6698314,348.4595138,54.21031756,52.55097628,1.659341275,55.00399249,0,55.00399249,1.633873131,53.37011936,1.285345731,4.269314683,3.392515843,-3.392515843,0,0.246162913,0.408468283,13.13774407,0.047619671,1,0.286648524,0,0.92642714,0.965189103,0.724496596,1,50.62462939,1.183735521,0.007965062,0.312029739,0.977661318,0.702157914,0.961238037,0.922476074,0.292168088,12.62849932,50.91679747,13.81223484,331.8659863,0,0.591339056,53.74791061,-0.591339056,126.2520894,0.96544614,0,371.3155328,13.81223484,380.3553643,10,16,2% -10/15/2018 1:00,84.65279314,254.6252048,34.85925102,186.0590412,17.52023245,96.7007484,79.44603184,17.25471656,16.9919328,0.262783759,8.980328648,0,8.980328648,0.528299651,8.452028997,1.477469961,4.444048183,10.64916649,-10.64916649,0,0.502599222,0.132074913,4.247983201,0.563501961,1,0.0936295,0,0.951934424,0.990696387,0.724496596,1,16.46270113,0.382751299,0.07604505,0.312029739,0.807087148,0.531583744,0.961238037,0.922476074,0.090713072,4.083323032,16.5534142,4.466074331,34.67803713,0,0.426993665,64.72307872,-0.426993665,115.2769213,0.932902244,0,48.90463286,4.466074331,51.82758918,10,17,6% -10/15/2018 2:00,96.44460312,263.827158,0,0,0,0,0,0,0,0,0,0,0,0,0,1.68327587,4.604652563,-8.596431085,8.596431085,0,#DIV/0!,0,0,1,0.000229933,0,0.115806848,0.961238037,1,0.449027607,0.724531011,0,0,0.115824807,3.93E-05,0.724496596,0.448993192,0.999996533,0.96123457,0,0,0,0,0,0,0.224536665,77.02436612,-0.224536665,102.9756339,0.827319218,0,0,0,0,10,18,0% -10/15/2018 3:00,108.2825052,272.9803015,0,0,0,0,0,0,0,0,0,0,0,0,0,1.889886238,4.764405055,-2.786609472,2.786609472,0.993308025,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.004198579,89.75943842,-0.004198579,90.24056158,0,0,0,0,0,10,19,0% -10/15/2018 4:00,120.0119919,282.942514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094604401,4.938278463,-1.452863445,1.452863445,0.778607971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.221472282,102.7955219,0.221472282,77.20447808,0,0.824238114,0,0,0,10,20,0% -10/15/2018 5:00,131.2221628,294.9270972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290258792,5.1474489,-0.808117719,0.808117719,0.668349959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.437101791,115.9191097,0.437101791,64.08089033,0,0.935610169,0,0,0,10,21,0% -10/15/2018 6:00,141.1956306,310.8834507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464328643,5.425939805,-0.391287687,0.391287687,0.597067825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.628002173,128.9028798,0.628002173,51.09712023,0,0.970382441,0,0,0,10,22,0% -10/15/2018 7:00,148.5312466,333.4668943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.592359296,5.820095251,-0.069637488,0.069637488,0.542062401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781172839,141.3680852,0.781172839,38.63191476,0,0.985993678,0,0,0,10,23,0% -10/16/2018 8:00,151.030943,2.752465319,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635987228,0.048039582,0.214106419,-0.214106419,0.493539336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886186035,152.3978304,0.886186035,27.60216962,0,0.993578438,0,0,0,10,0,0% -10/16/2018 9:00,147.5306199,31.20098622,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574895064,0.544559939,0.495914574,-0.495914574,0.445347303,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935897075,159.3735603,0.935897075,20.62643969,0,0.996575322,0,0,0,10,1,0% -10/16/2018 10:00,139.5929266,52.45963385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436356182,0.915593335,0.811699239,-0.811699239,0.391344944,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926930874,157.9613392,0.926930874,22.03866082,0,0.996058545,0,0,0,10,2,0% -10/16/2018 11:00,129.3339908,67.54225617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.257303974,1.178834754,1.219161014,-1.219161014,0.321664877,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.859911655,149.306665,0.859911655,30.69333505,0,0.991854492,0,0,0,10,3,0% -10/16/2018 12:00,118.0041758,79.06713156,0,0,0,0,0,0,0,0,0,0,0,0,0,2.059561399,1.379981776,1.856899111,-1.856899111,0.21260524,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.739420235,137.6820519,0.739420235,42.31794813,0,0.982379454,0,0,0,10,4,0% -10/16/2018 13:00,106.245837,88.82752089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.854339672,1.550332706,3.248153491,-3.248153491,0,#DIV/0!,0,0,0.024688329,1,0.298658713,0,0.924574026,0.96333599,0.724496596,1,0,0,0.004173517,0.312029739,0.988233291,0.712729887,0.961238037,0.922476074,0,0,0,0,0,0,-0.573681761,125.0073673,0.573681761,54.99263274,0,0.962843664,0,0,0,10,5,0% -10/16/2018 14:00,94.44249033,97.95005173,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64833241,1.709550905,11.37000447,-11.37000447,0,#DIV/0!,0,0,0.585789531,1,0.087724984,0,0.952582359,0.991344322,0.724496596,1,0,0,0.078394116,0.312029739,0.801857702,0.526354298,0.961238037,0.922476074,0,0,0,0,0,0,-0.374005117,111.9628363,0.374005117,68.03716366,0,0.91631199,0,0,0,10,6,0% -10/16/2018 15:00,82.7807188,107.2603802,61.26489666,281.8833212,25.84143905,25.52406498,0,25.52406498,25.06222431,0.461840669,58.46994223,42.836344,15.63359823,0.779214732,14.85438349,1.4447961,1.872046791,-6.283131461,6.283131461,0.395367549,0.42179846,0.300381442,9.661299722,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.0907633,0.564538421,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.217625332,9.286808778,24.30838863,9.851347199,0,42.836344,-0.151964805,98.7408071,0.151964805,81.2591929,0,0.720976448,24.30838863,40.73534234,50.96885549,10,7,110% -10/16/2018 16:00,71.91442256,117.5186959,252.1605515,626.0125846,57.82298582,103.1435511,45.16324886,57.9803022,56.07940945,1.90089275,62.88282149,0,62.88282149,1.743576366,61.13924513,1.255143453,2.051088176,-2.067997334,2.067997334,0.883802062,0.229310197,1.730662927,55.66406884,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.90566145,1.263215142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.253859399,53.50642026,55.15952085,54.7696354,45.16324886,0,0.072144315,85.8628411,-0.072144315,94.1371589,0,0,55.15952085,54.7696354,91.00515182,10,8,65% -10/16/2018 17:00,62.06748891,129.5489189,431.4623555,761.9157495,74.55723895,294.2606917,218.6990831,75.5616086,72.30906311,3.252545486,106.8612192,0,106.8612192,2.248175841,104.6130434,1.08328204,2.261055177,-0.955871438,0.955871438,0.693617333,0.172801261,2.428222453,78.09998104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.50622187,1.628795744,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759238901,75.07267245,71.26546077,76.7014682,218.6990831,0,0.287038407,73.31926742,-0.287038407,106.6807326,0.875807283,0,262.8037105,76.7014682,313.0032875,10,9,19% -10/16/2018 18:00,53.97549445,144.2053819,569.9481735,824.8797572,84.81063792,480.3234779,393.7736836,86.54979435,82.25328427,4.296510079,140.747887,0,140.747887,2.557353651,138.1905333,0.942050093,2.516858714,-0.374300445,0.374300445,0.594162836,0.148804123,2.8122939,90.45303904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.0649855,1.852794015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037497358,86.94690167,81.10248286,88.79969569,393.7736836,0,0.477371011,61.4861611,-0.477371011,118.5138389,0.945259664,0,453.3208628,88.79969569,511.4384876,10,10,13% -10/16/2018 19:00,48.60479163,161.9380825,655.0946066,853.8069024,90.51553401,630.6639181,537.9393816,92.72453655,87.7861567,4.938379858,161.5646491,0,161.5646491,2.729377317,158.8352718,0.848313646,2.826352724,0.038367128,-0.038367128,0.523592524,0.138171698,2.910772715,93.62045624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.38339293,1.977424575,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.108844924,89.99154357,86.49223785,91.96896814,537.9393816,0,0.630048059,50.94633167,-0.630048059,129.0536683,0.970640974,0,608.6382434,91.96896814,668.8300937,10,11,10% -10/16/2018 20:00,46.94036382,181.8585973,680.1990848,861.3046669,92.13538366,727.2198072,632.7350173,94.48478992,89.3571619,5.127628019,167.7003649,0,167.7003649,2.778221761,164.9221432,0.819263901,3.174031296,0.398429094,-0.398429094,0.462018302,0.135453554,2.742716104,88.21517794,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.89350288,2.012812208,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.987088481,84.79578446,87.88059137,86.80859667,632.7350173,0,0.734623928,42.72455197,-0.734623928,137.275448,0.981937964,0,709.1871262,86.80859667,766.0016165,10,12,8% -10/16/2018 21:00,49.36927802,201.5158681,643.3522546,850.1523302,89.7490021,758.3764409,666.4838413,91.8925996,87.04273855,4.849861049,158.6944662,0,158.6944662,2.706263552,155.9882026,0.861656451,3.517115394,0.772495375,-0.772495375,0.3980492,0.139502118,2.337742689,75.18984081,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.66879112,1.960678731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.69368662,72.27533497,85.36247774,74.2360137,666.4838413,0,0.783958142,38.37557843,-0.783958142,141.6244216,0.986221085,0,742.6628946,74.2360137,791.2488808,10,13,7% -10/16/2018 22:00,55.34228814,218.6721048,547.3472522,816.1382822,83.23179716,717.1056843,632.2574981,84.84818617,80.72205138,4.126134788,135.2204241,0,135.2204241,2.509745777,132.7106783,0.965905144,3.816548211,1.235577303,-1.235577303,0.318857527,0.152063972,1.743022744,56.06160305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.5931062,1.818302272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.262814045,53.88854526,78.85592025,55.70684753,632.2574981,0,0.774694083,39.22269469,-0.774694083,140.7773053,0.985458394,0,701.9193791,55.70684753,738.3783967,10,14,5% -10/16/2018 23:00,63.83904803,232.762678,399.8373636,743.6358683,71.97258243,598.9391344,526.1226479,72.81648646,69.80234352,3.014142939,99.11543688,0,99.11543688,2.170238911,96.94519797,1.114201579,4.062475107,1.944333965,-1.944333965,0.197652999,0.180004644,1.031075561,33.16293435,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.09666765,1.572330703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.747010734,31.87747391,67.84367839,33.44980462,526.1226479,0,0.707500365,44.96809966,-0.707500365,135.0319003,0.979328658,0,583.0906653,33.44980462,604.9828934,10,15,4% -10/16/2018 0:00,73.93609398,244.3755507,214.9101398,583.6506813,53.40854083,396.0823553,342.6641956,53.41815968,51.79807626,1.620083412,53.71791609,0,53.71791609,1.610464562,52.10745153,1.290428276,4.26515797,3.456071583,-3.456071583,0,0.248515686,0.402616141,12.94951907,0.057376866,1,0.281653921,0,0.92718899,0.965950953,0.724496596,1,49.91920013,1.166776093,0.009554159,0.312029739,0.973263826,0.697760422,0.961238037,0.922476074,0.287293972,12.44757029,50.2064941,13.61434638,323.0031979,0,0.587104935,54.04816634,-0.587104935,125.9518337,0.964836349,0,361.8517201,13.61434638,370.7620376,10,16,2% -10/16/2018 1:00,84.92078077,254.374652,31.55525419,172.7742612,16.25902465,89.06913871,73.06250681,16.00663191,15.76875507,0.237876835,8.141206295,0,8.141206295,0.490269583,7.650936713,1.482147228,4.439675212,11.21808699,-11.21808699,0,0.515255702,0.122567396,3.942188768,0.581283747,1,0.088906763,0,0.952453327,0.99121529,0.724496596,1,15.27493429,0.355198644,0.0779224,0.312029739,0.80290429,0.527400885,0.961238037,0.922476074,0.084270788,3.789381792,15.35920507,4.144580436,30.59245908,0,0.422878421,64.9835519,-0.422878421,115.0164481,0.931762707,0,43.86411754,4.144580436,46.57666255,10,17,6% -10/16/2018 2:00,96.70905673,263.565356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687891456,4.600083256,-8.263845107,8.263845107,0.056645566,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.220419906,77.2663027,-0.220419906,102.7336973,0.823160234,0,0,0,0,10,18,0% -10/16/2018 3:00,108.5451467,272.7044181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.894470197,4.75958998,-2.749884006,2.749884006,0.999588449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.000261789,89.98500061,-0.000261789,90.01499939,0,0,0,0,0,10,19,0% -10/16/2018 4:00,120.2824018,282.649281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.099323944,4.933160582,-1.44190744,1.44190744,0.776734384,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.225168916,103.0128112,0.225168916,76.98718879,0,0.827944483,0,0,0,10,20,0% -10/16/2018 5:00,131.512224,294.6197482,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295321315,5.142084648,-0.804179666,0.804179666,0.667676512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.440514604,116.1367195,0.440514604,63.86328047,0,0.936496385,0,0,0,10,21,0% -10/16/2018 6:00,141.5188955,310.5935965,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46997068,5.420880894,-0.390295615,0.390295615,0.596898171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631107037,129.131845,0.631107037,50.86815496,0,0.970774136,0,0,0,10,22,0% -10/16/2018 7:00,148.8921973,333.3069652,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598659073,5.817303963,-0.070329105,0.070329105,0.542180675,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.783966821,141.6252226,0.783966821,38.37477742,0,0.986221791,0,0,0,10,23,0% -10/17/2018 8:00,151.3952856,2.889600716,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642346206,0.050433047,0.212107622,-0.212107622,0.49388115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888687595,152.7087912,0.888687595,27.2912088,0,0.993737259,0,0,0,10,0,0% -10/17/2018 9:00,147.8424114,31.57427233,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580336853,0.551075011,0.492532929,-0.492532929,0.445925598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938144791,159.7422965,0.938144791,20.2577035,0,0.996703323,0,0,0,10,1,0% -10/17/2018 10:00,139.8430444,52.88149491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44072156,0.9229562,0.806397485,-0.806397485,0.392251598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928980777,158.27649,0.928980777,21.72350995,0,0.996177573,0,0,0,10,2,0% -10/17/2018 11:00,129.5423562,67.93810019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260940636,1.185743536,1.210487246,-1.210487246,0.323148179,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.861833357,149.5230596,0.861833357,30.47694043,0,0.991984144,0,0,0,10,3,0% -10/17/2018 12:00,118.1904772,79.42933865,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062812971,1.386303482,1.84052756,-1.84052756,0.21540494,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.741292131,137.841602,0.741292131,42.15839803,0,0.982550208,0,0,0,10,4,0% -10/17/2018 13:00,106.4248022,89.164702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857463204,1.556217627,3.204281673,-3.204281673,0,#DIV/0!,0,0,0.017499077,1,0.3025044,0,0.923974376,0.962736339,0.724496596,1,0,0,0.002968106,0.312029739,0.991617846,0.716114442,0.961238037,0.922476074,0,0,0,0,0,0,-0.575585614,125.1406534,0.575585614,54.85934659,0,0.96313195,0,0,0,10,5,0% -10/17/2018 14:00,94.62565679,98.27215243,0,0,0,0,0,0,0,0,0,0,0,0,0,1.651529268,1.715172623,10.8851901,-10.8851901,0,#DIV/0!,0,0,0.571059091,1,0.091610795,0,0.952156862,0.990918825,0.724496596,1,0,0,0.076845999,0.312029739,0.80529914,0.529795736,0.961238037,0.922476074,0,0,0,0,0,0,-0.376020415,112.0873948,0.376020415,67.91260522,0,0.917028496,0,0,0,10,6,0% -10/17/2018 15:00,82.97542867,107.5750075,58.36217157,272.7391163,25.00754509,24.69343404,0,24.69343404,24.25347534,0.439958702,56.93801089,42.03335694,14.90465394,0.754069752,14.15058419,1.448194429,1.877538074,-6.432043159,6.432043159,0.369902149,0.428488941,0.281526102,9.054847172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.31336302,0.546320969,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.203964702,8.70386352,23.51732772,9.250184488,0,42.03335694,-0.154115616,98.8655085,0.154115616,81.1344915,0,0.725568244,23.51732772,39.74825346,49.53176465,10,7,111% -10/17/2018 16:00,72.13602867,117.8288805,248.1224437,621.9927353,57.32108642,100.8249739,43.36187796,57.46309596,55.59264417,1.870451788,61.88860138,0,61.88860138,1.728442248,60.16015913,1.25901121,2.056501919,-2.083008092,2.083008092,0.886369053,0.231019353,1.707011712,54.90336446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.43776415,1.252250525,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.236724174,52.77520227,54.67448832,54.0274528,43.36187796,0,0.069714444,86.00241398,-0.069714444,93.99758602,0,0,54.67448832,54.0274528,90.03437563,10,8,65% -10/17/2018 17:00,62.32425375,129.8486225,426.9612622,759.6301843,74.13794979,291.0983583,215.9773269,75.1210314,71.90241706,3.218614343,105.7572339,0,105.7572339,2.235532726,103.5217012,1.087763432,2.266285993,-0.95769926,0.95769926,0.693929909,0.173640928,2.404550184,77.33859949,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.11533822,1.61963585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742088423,74.34080355,70.85742664,75.9604394,215.9773269,0,0.284319043,73.48185119,-0.284319043,106.5181488,0.87414122,0,259.6521107,75.9604394,309.3666991,10,9,19% -10/17/2018 18:00,54.27516144,144.4711209,565.0846932,823.2249154,84.40925757,476.6150302,390.4911761,86.12385413,81.86400702,4.25984711,139.5565767,0,139.5565767,2.545250553,137.0113262,0.947280269,2.521496734,-0.372236802,0.372236802,0.593809932,0.149374525,2.788003396,89.6717729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.69079739,1.844025361,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019898969,86.19591895,80.71069636,88.03994431,390.4911761,0,0.474343243,61.68340275,-0.474343243,118.3165973,0.944591099,0,449.5651855,88.03994431,507.1855682,10,10,13% -10/17/2018 19:00,48.94644173,162.1231489,649.9258216,852.3819255,90.11187052,626.4917419,534.1976614,92.29408052,87.39466515,4.899415373,160.2992454,0,160.2992454,2.717205374,157.58204,0.854276565,2.829582741,0.042537852,-0.042537852,0.522879288,0.13864947,2.885911564,92.82083616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.00707636,1.968606043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.090833104,89.22291833,86.09790946,91.19152437,534.1976614,0,0.626711625,51.19207328,-0.626711625,128.8079267,0.97021849,0,604.3863576,91.19152437,664.0693865,10,11,10% -10/17/2018 20:00,47.30690942,181.9142543,674.788665,859.8921622,91.72069236,722.6224504,628.5806333,94.04181707,88.95497508,5.086841989,166.3760416,0,166.3760416,2.765717288,163.6103243,0.825661328,3.175002695,0.404551002,-0.404551002,0.460971394,0.135925064,2.717588825,87.40699827,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.50690561,2.00375276,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.968883853,84.01893142,87.47578946,86.02268418,628.5806333,0,0.730999375,43.02975925,-0.730999375,136.9702408,0.981600489,0,704.4908463,86.02268418,760.7909727,10,12,8% -10/17/2018 21:00,49.7332208,201.4384508,637.7789292,848.5566358,89.31649756,753.3781935,661.9470709,91.43112258,86.62327562,4.807846967,157.3301073,0,157.3301073,2.693221944,154.6368853,0.868008451,3.515764206,0.781303491,-0.781303491,0.396542924,0.140043036,2.312828653,74.38851977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.2655874,1.951230131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.675636486,71.50507471,84.94122389,73.45630484,661.9470709,0,0.780085905,38.73155857,-0.780085905,141.2684414,0.985904495,0,737.5578166,73.45630484,785.633499,10,13,7% -10/17/2018 22:00,55.68368417,218.5037447,541.7082336,814.065435,82.76967018,711.7023763,627.3448916,84.35748472,80.27385924,4.083625483,133.8392439,0,133.8392439,2.495810944,131.3434329,0.971863628,3.813609773,1.249209502,-1.249209502,0.316526283,0.15279382,1.719030091,55.28991686,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16228686,1.808206533,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245431449,53.14677114,78.40771831,54.95497768,627.3448916,0,0.770632021,39.58932222,-0.770632021,140.4106778,0.98511819,0,696.4165827,54.95497768,732.3835165,10,14,5% -10/17/2018 23:00,64.15232546,232.5472347,394.2629741,740.4344495,71.44830076,593.0287857,520.762794,72.26599171,69.29387088,2.972120836,97.74805257,0,97.74805257,2.154429884,95.59362269,1.119669302,4.058714912,1.969187201,-1.969187201,0.193402845,0.18121991,1.00925588,32.46113839,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.60790441,1.560877117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.731202449,31.20288094,67.33910686,32.76375806,520.762794,0,0.70332059,45.30597373,-0.70332059,134.6940263,0.978908665,0,577.1183181,32.76375806,598.5615424,10,15,4% -10/17/2018 0:00,74.22424263,244.1379595,209.6653548,577.3340675,52.70375494,389.2192441,336.5241558,52.69508828,51.11454227,1.580546007,52.42500536,0,52.42500536,1.589212667,50.83579269,1.295457419,4.261011223,3.521131007,-3.521131007,0,0.251370833,0.397303167,12.77863557,0.067159981,1,0.27671372,0,0.927937433,0.966699396,0.724496596,1,49.27933306,1.151379168,0.01113325,0.312029739,0.968913582,0.693410178,0.961238037,0.922476074,0.282845282,12.28331057,49.56217834,13.43468973,313.9231997,0,0.582893293,54.34570017,-0.582893293,125.6542998,0.964221006,0,352.2535219,13.43468973,361.0462577,10,16,2% -10/17/2018 1:00,85.18512545,254.1244334,28.37296039,159.1241073,15.01663342,81.41970141,66.64198754,14.77771387,14.56382651,0.21388736,7.33215964,0,7.33215964,0.452806903,6.879352737,1.486760913,4.435308072,11.84097469,-11.84097469,0,0.529258604,0.113201726,3.640956628,0.599161806,1,0.084252584,0,0.952959604,0.991721567,0.724496596,1,14.10502052,0.32805706,0.079784694,0.312029739,0.798782795,0.52327939,0.961238037,0.922476074,0.077922465,3.499826001,14.18294299,3.827883061,26.71265395,0,0.418805099,65.24082863,-0.418805099,114.7591714,0.930612724,0,39.04207864,3.827883061,41.54735154,10,17,6% -10/17/2018 2:00,96.97007125,263.3035339,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692447019,4.595513598,-7.960163099,7.960163099,0.108578248,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.216349602,77.50528249,-0.216349602,102.4947175,0.818892572,0,0,0,0,10,18,0% -10/17/2018 3:00,108.8040835,272.4279921,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898989496,4.754765437,-2.71465472,2.71465472,0.994386988,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.00361852,90.20732637,0.00361852,89.79267363,0,0,0,0,0,10,19,0% -10/17/2018 4:00,120.5488396,282.3546568,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103974161,4.92801842,-1.431312477,1.431312477,0.774922539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.228801431,103.2265173,0.228801431,76.77348272,0,0.831469899,0,0,0,10,20,0% -10/17/2018 5:00,131.7981343,294.3095439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.300311392,5.136670561,-0.800381086,0.800381086,0.667026916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.443858578,116.350334,0.443858578,63.64966597,0,0.937351507,0,0,0,10,21,0% -10/17/2018 6:00,141.8381594,310.2986308,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475542886,5.415732772,-0.389369801,0.389369801,0.596739847,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634141578,129.3563459,0.634141578,50.64365408,0,0.971153254,0,0,0,10,22,0% -10/17/2018 7:00,149.2499683,333.1407207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903355,5.814402449,-0.071054214,0.071054214,0.542304676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.786692333,141.8774704,0.786692333,38.1225296,0,0.986442752,0,0,0,10,23,0% -10/18/2018 8:00,151.7573575,3.024529851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648665552,0.052788004,0.210094422,-0.210094422,0.494225427,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891125748,153.0150504,0.891125748,26.98494956,0,0.993891196,0,0,0,10,0,0% -10/18/2018 9:00,148.1521116,31.94799868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585742142,0.557597766,0.489152364,-0.489152364,0.446503709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940337021,160.1082318,0.940337021,19.89176816,0,0.996827575,0,0,0,10,1,0% -10/18/2018 10:00,140.0914922,53.3025092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445057793,0.930304285,0.801116128,-0.801116128,0.393154763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930985424,158.5889493,0.930985424,21.41105075,0,0.996293466,0,0,0,10,2,0% -10/18/2018 11:00,129.749723,68.33197835,0,0,0,0,0,0,0,0,0,0,0,0,0,2.264559869,1.192618007,1.201871641,-1.201871641,0.324621534,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.863721643,149.7370526,0.863721643,30.26294738,0,0.992110979,0,0,0,10,3,0% -10/18/2018 12:00,118.376401,79.789043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.066057954,1.392581507,1.824329527,-1.824329527,0.218174966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.743143238,137.9998641,0.743143238,42.00013594,0,0.98271822,0,0,0,10,4,0% -10/18/2018 13:00,106.6038762,89.49905546,0,0,0,0,0,0,0,0,0,0,0,0,0,1.860588634,1.562053195,3.161265302,-3.161265302,0,#DIV/0!,0,0,0.01034635,1,0.306369429,0,0.923368655,0.962130618,0.724496596,1,0,0,0.001760769,0.312029739,0.995019172,0.719515767,0.961238037,0.922476074,0,0,0,0,0,0,-0.577481221,125.2735794,0.577481221,54.72642055,0,0.963417098,0,0,0,10,5,0% -10/18/2018 14:00,94.80927619,98.59108898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654734031,1.720739116,10.43624346,-10.43624346,0,#DIV/0!,0,0,0.556452321,1,0.095528268,0,0.951724335,0.990486298,0.724496596,1,0,0,0.075293734,0.312029739,0.808769014,0.53326561,0.961238037,0.922476074,0,0,0,0,0,0,-0.378039063,112.2122705,0.378039063,67.78772953,0,0.917738536,0,0,0,10,6,0% -10/18/2018 15:00,83.17064218,107.8860002,55.48919022,263.4453813,24.16217836,23.85190048,0,23.85190048,23.43359953,0.418300955,55.35310727,41.17053185,14.18257543,0.728578826,13.4539966,1.451601547,1.88296592,-6.589994628,6.589994628,0.342890857,0.435439376,0.263120525,8.462860548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.52526721,0.52785288,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.190629925,8.13482346,22.71589713,8.662676339,0,41.17053185,-0.156277296,98.99088275,0.156277296,81.00911725,0,0.730055893,22.71589713,38.71946572,48.05701305,10,7,112% -10/18/2018 16:00,72.35826755,118.1347472,244.0729182,617.8870755,56.81353725,98.50203251,41.56170827,56.94032424,55.10039948,1.839924754,60.89144257,0,60.89144257,1.713137768,59.1783048,1.26289001,2.0618403,-2.098547017,2.098547017,0.889026365,0.232772803,1.683269898,54.13974612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.96459983,1.241162481,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.219523311,52.04118328,54.18412314,53.28234576,41.56170827,0,0.067264246,86.14313047,-0.067264246,93.85686953,0,0,54.18412314,53.28234576,89.05635279,10,8,64% -10/18/2018 17:00,62.58138977,130.1431148,422.4447593,757.3030687,73.71568415,287.9148433,213.2373919,74.67745133,71.49288429,3.184567037,104.6494227,0,104.6494227,2.222799859,102.4266228,1.092251302,2.271425852,-0.959658539,0.959658539,0.694264965,0.174497807,2.380830271,76.57568557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.72167974,1.610410931,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.724903427,73.60746167,70.44658317,75.2178726,213.2373919,0,0.28157471,73.64578918,-0.28157471,106.3542108,0.872427234,0,256.4806913,75.2178726,305.7092845,10,9,19% -10/18/2018 18:00,54.57454344,144.7308396,560.2084877,821.544151,84.00594377,472.8808702,387.1849274,85.69594283,81.47285462,4.223088214,138.3621229,0,138.3621229,2.533089154,135.8290337,0.952505471,2.52602968,-0.370226376,0.370226376,0.593466129,0.149954786,2.763706448,88.89029956,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.31480683,1.835214469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.002295914,85.44473704,80.31710274,87.27995151,387.1849274,0,0.471289251,61.88198282,-0.471289251,118.1180172,0.943908041,0,445.784069,87.27995151,502.9070516,10,10,13% -10/18/2018 19:00,49.2867772,162.3023516,644.7509714,850.9377281,89.70696902,622.2953308,530.4329528,91.86237808,87.00197292,4.860405166,159.0323338,0,159.0323338,2.704996099,156.3273377,0.86021654,2.832710418,0.046683394,-0.046683394,0.522170359,0.139134291,2.861091339,92.02253241,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.62960565,1.959760466,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.072850936,88.4555584,85.70245659,90.41531887,530.4329528,0,0.623351081,51.43873673,-0.623351081,128.5612633,0.96978838,0,600.1101706,90.41531887,659.2851885,10,11,10% -10/18/2018 20:00,47.67112045,181.9659413,669.3818983,858.4632992,91.3053886,718.0067426,624.4084649,93.59827775,88.55219425,5.046083498,165.0525854,0,165.0525854,2.753194347,162.2993911,0.83201801,3.175904802,0.410665467,-0.410665467,0.459925759,0.136402536,2.692556118,86.60186035,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,85.11973736,1.994679932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.950747742,83.24500223,87.0704851,85.23968216,624.4084649,0,0.727356039,43.334803,-0.727356039,136.665197,0.981257875,0,699.7762083,85.23968216,755.5638754,10,12,8% -10/18/2018 21:00,50.09428166,201.3595946,632.2212732,846.9448363,88.88397557,748.3709144,657.4011676,90.96974677,86.20379576,4.765951009,155.9695471,0,155.9695471,2.68017981,153.2893673,0.874310151,3.514387907,0.790127002,-0.790127002,0.395034014,0.140589979,2.288067165,73.59210519,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.86236741,1.941781149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657696872,70.73953072,84.52006428,72.68131187,657.4011676,0,0.776203053,39.08576682,-0.776203053,140.9142332,0.985583866,0,732.4440485,72.68131187,780.0125135,10,13,6% -10/18/2018 22:00,56.02205621,218.3354888,536.0984736,811.9731814,82.30800033,706.3015701,622.4341229,83.86744718,79.82611044,4.041336743,132.4651716,0,132.4651716,2.481889894,129.9832817,0.977769335,3.810673153,1.262910049,-1.262910049,0.314183352,0.153531495,1.695251075,54.52510196,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.73189369,1.79812078,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.228203633,52.41160197,77.96009732,54.20972275,622.4341229,0,0.766569805,39.95314833,-0.766569805,140.0468517,0.984774368,0,690.9172673,54.20972275,726.3964467,10,14,5% -10/18/2018 23:00,64.46252945,232.3323874,388.7327095,737.2009431,70.92443827,587.1322807,515.4160445,71.71623614,68.78580478,2.930431365,96.3913795,0,96.3913795,2.138633497,94.252746,1.125083383,4.054965119,1.994298788,-1.994298788,0.189108511,0.1824504,0.987719437,31.76845237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.11953195,1.549432689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71559937,30.53704479,66.83513132,32.08647747,515.4160445,0,0.69915272,45.64093393,-0.69915272,134.3590661,0.978484867,0,571.1619309,32.08647747,592.1618887,10,15,4% -10/18/2018 0:00,74.50920115,243.9009463,204.4845993,570.9363121,51.99686055,382.3750657,330.4046111,51.97045464,50.42896335,1.541491284,51.14755572,0,51.14755572,1.567897193,49.57965853,1.300430883,4.256874562,3.587710339,-3.587710339,0,0.254282527,0.391974298,12.60724084,0.076963616,1,0.271829997,0,0.928672308,0.967434271,0.724496596,1,48.63626463,1.135936179,0.012701544,0.312029739,0.964612388,0.689108984,0.961238037,0.922476074,0.278424331,12.11855943,48.91468896,13.25449561,304.9754774,0,0.578706598,54.64037701,-0.578706598,125.359623,0.963600432,0,342.7891908,13.25449561,351.4639931,10,16,3% -10/18/2018 1:00,85.44566464,253.8745744,25.3608711,145.7065152,13.7911228,74.00212317,60.43567265,13.56645053,13.37526957,0.191180959,6.564890053,0,6.564890053,0.415853236,6.149036816,1.49130818,4.430947211,12.52529093,-12.52529093,0,0.543795312,0.103963309,3.343817392,0.617121882,1,0.079669476,0,0.953453197,0.99221516,0.724496596,1,12.95119734,0.301284254,0.081630562,0.312029739,0.794725002,0.519221598,0.961238037,0.922476074,0.071655752,3.214204465,13.0228531,3.51548872,23.13949659,0,0.414776735,65.4947428,-0.414776735,114.5052572,0.92945322,0,34.5299327,3.51548872,36.83074976,10,17,7% -10/18/2018 2:00,97.22752115,263.0417323,0,0,0,0,0,0,0,0,0,0,0,0,0,1.696940368,4.590944299,-7.681957641,7.681957641,0.156154184,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.21232809,77.74118077,-0.21232809,102.2588192,0.814515378,0,0,0,0,10,18,0% -10/18/2018 3:00,109.0591897,272.1510768,0,0,0,0,0,0,0,0,0,0,0,0,0,1.903441939,4.749932354,-2.680859473,2.680859473,0.98860766,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.007440218,90.426297,0.007440218,89.573703,0,0,0,0,0,10,19,0% -10/18/2018 4:00,120.8111749,282.0587017,0,0,0,0,0,0,0,0,0,0,0,0,0,2.108552776,4.922853028,-1.421072164,1.421072164,0.773171342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.232367989,103.4365253,0.232367989,76.56347466,0,0.834824062,0,0,0,10,20,0% -10/18/2018 5:00,132.079753,293.9965321,0,0,0,0,0,0,0,0,0,0,0,0,0,2.305226565,5.131207475,-0.796721464,0.796721464,0.666401084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.447132221,116.5598386,0.447132221,63.44016143,0,0.938176254,0,0,0,10,21,0% -10/18/2018 6:00,142.1532681,309.9985221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.48104257,5.410494886,-0.388510712,0.388510712,0.596592934,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.637104689,129.5762607,0.637104689,50.4237393,0,0.971519962,0,0,0,10,22,0% -10/18/2018 7:00,149.6044145,332.9679464,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611089609,5.811386968,-0.071813405,0.071813405,0.542434505,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.789348665,142.1246848,0.789348665,37.87531515,0,0.986656636,0,0,0,10,23,0% -10/19/2018 8:00,152.1170634,3.156999976,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654943605,0.055100044,0.208066289,-0.208066289,0.494572259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.893500161,153.3164254,0.893500161,26.6835746,0,0.994040301,0,0,0,10,0,0% -10/19/2018 9:00,148.4596721,32.3219377,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591110085,0.564124234,0.485772448,-0.485772448,0.447081708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942473767,160.4712316,0.942473767,19.52876835,0,0.996948126,0,0,0,10,1,0% -10/19/2018 10:00,140.3382582,53.72245736,0,0,0,0,0,0,0,0,0,0,0,0,0,2.449364672,0.937633763,0.795854819,-0.795854819,0.3940545,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93294509,158.8986561,0.93294509,21.10134394,0,0.996406278,0,0,0,10,2,0% -10/19/2018 11:00,129.9560956,68.72370872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.268161751,1.199454991,1.193313768,-1.193313768,0.326085017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.86557697,149.9486531,0.86557697,30.05134689,0,0.992235062,0,0,0,10,3,0% -10/19/2018 12:00,118.5619531,80.146093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06929645,1.398813206,1.808303293,-1.808303293,0.220915614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.744974099,138.1568743,0.744974099,41.84312573,0,0.982883573,0,0,0,10,4,0% -10/19/2018 13:00,106.7830575,89.83044775,0,0,0,0,0,0,0,0,0,0,0,0,0,1.863715939,1.567837082,3.119083827,-3.119083827,0,#DIV/0!,0,0,0.003230589,1,0.310253433,0,0.922756885,0.961518848,0.724496596,1,0,0,0.000551626,0.312029739,0.998436973,0.722933569,0.961238037,0.922476074,0,0,0,0,0,0,-0.57936911,125.4061814,0.57936911,54.59381859,0,0.963699231,0,0,0,10,5,0% -10/19/2018 14:00,94.99333454,98.90673784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657946455,1.726248228,10.01938032,-10.01938032,0,#DIV/0!,0,0,0.541969612,1,0.099477136,0,0.951284727,0.99004669,0.724496596,1,0,0,0.073737522,0.312029739,0.812267017,0.536763613,0.961238037,0.922476074,0,0,0,0,0,0,-0.380061468,112.3374902,0.380061468,67.66250983,0,0.918442333,0,0,0,10,6,0% -10/19/2018 15:00,83.36631816,108.1932412,52.64891708,254.0077369,23.3056655,22.99980347,0,22.99980347,22.6029137,0.396889776,53.71558717,40.24749587,13.4680913,0.702751804,12.76533949,1.455016737,1.888328288,-6.75779663,6.75779663,0.314195024,0.442661821,0.245188464,7.886103823,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.72678039,0.509141289,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.177638207,7.580422957,21.9044186,8.089564247,0,40.24749587,-0.158449882,99.11693326,0.158449882,80.88306674,0,0.734442806,21.9044186,37.64904807,46.54496758,10,7,112% -10/19/2018 16:00,72.58108526,118.436188,240.0132349,613.6942419,56.30030783,96.1755644,39.76359743,56.41196697,54.60264583,1.809321147,59.8916496,0,59.8916496,1.697662007,58.19398759,1.266778912,2.067101434,-2.114636917,2.114636917,0.8917779,0.23457168,1.65944375,53.37341531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.48614008,1.229950345,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.202261348,51.30455695,53.68840143,52.5345073,39.76359743,0,0.064793825,86.28498476,-0.064793825,93.71501524,0,0,53.68840143,52.5345073,88.07118576,10,8,64% -10/19/2018 17:00,62.83881819,130.4323076,417.9143696,754.9341942,73.29050494,284.7110178,210.4800769,74.23094085,71.0805258,3.150415046,103.5381565,0,103.5381565,2.209979137,101.3281774,1.096744275,2.276473219,-0.96175496,0.96175496,0.694623474,0.175372062,2.357071182,75.8115116,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.32530508,1.601122362,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.707690048,72.87290859,70.03299513,74.47403095,210.4800769,0,0.27880586,73.81105239,-0.27880586,106.1889476,0.87066374,0,253.2903662,74.47403095,302.03213,10,9,19% -10/19/2018 18:00,54.87353862,144.9844891,555.3214669,819.8376247,83.60079926,469.1222437,383.8560692,85.2661745,81.07992671,4.186247786,137.1649915,0,137.1649915,2.520872552,134.6441189,0.957723921,2.5304567,-0.368272646,0.368272646,0.593132021,0.150544872,2.739413191,88.10894488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.93710958,1.826363583,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.984695531,84.69366921,79.92180511,86.52003279,383.8560692,0,0.468209872,62.08184194,-0.468209872,117.9181581,0.943210282,0,441.9787965,86.52003279,498.6044276,10,10,13% -10/19/2018 19:00,49.62568413,162.4756836,639.5723404,849.4746514,89.30095971,618.076386,526.6468133,91.42957275,86.60820629,4.821366459,157.7644721,0,157.7644721,2.692753421,155.0717187,0.866131582,2.835735634,0.050800528,-0.050800528,0.521466288,0.13962605,2.836323391,91.22591006,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.25110219,1.950890687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.054906642,87.68981469,85.30600883,89.64070538,526.6468133,0,0.619967662,51.686227,-0.619967662,128.313773,0.969350632,0,595.8114302,89.64070538,654.4794791,10,11,10% -10/19/2018 20:00,48.03288109,182.01365,663.9813885,857.018572,90.88962606,713.3748503,620.2205097,93.15434066,88.14896849,5.005372173,163.7306325,0,163.7306325,2.740657573,160.9899749,0.838331924,3.176737476,0.416768822,-0.416768822,0.458882023,0.136885804,2.667630081,85.80015333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.73214142,1.985597082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.932688913,82.47437094,86.66483034,84.45996803,620.2205097,0,0.72369553,43.63956079,-0.72369553,136.3604392,0.980910172,0,695.0454369,84.45996803,750.3227968,10,12,8% -10/19/2018 21:00,50.45234019,201.2792634,626.682127,845.3176255,88.45161249,743.3572144,652.8485498,90.50866461,85.78447002,4.724194585,154.6134796,0,154.6134796,2.667142468,151.9463372,0.880559452,3.512985863,0.798961162,-0.798961162,0.393523284,0.141142708,2.263470519,72.80099251,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.45929556,1.932335639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.639876686,69.97908312,84.09917224,71.91141876,652.8485498,0,0.772311531,39.43808145,-0.772311531,140.5619186,0.985259286,0,727.3242683,71.91141876,774.3888536,10,13,6% -10/19/2018 22:00,56.35727669,218.1672999,530.5209447,809.8625503,81.8469901,700.9062962,617.5280039,83.37829234,79.37900136,3.999290974,131.0989339,0,131.0989339,2.467988735,128.6309452,0.983620036,3.807737704,1.276672136,-1.276672136,0.311829896,0.154276642,1.671697505,53.76753819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.30211544,1.788049437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211139152,51.68340285,77.51325459,53.47145229,617.5280039,0,0.762509643,40.31405522,-0.762509643,139.6859448,0.984427059,0,685.4245312,53.47145229,720.4205273,10,14,5% -10/19/2018 23:00,64.76952948,232.1181202,383.2495554,733.937041,70.40123796,581.2530927,510.0856147,71.16747791,68.27838088,2.889097034,95.04614889,0,95.04614889,2.122857077,92.92329181,1.130441544,4.051225451,2.019658863,-2.019658863,0.184771683,0.18369555,0.966476621,31.08521038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.6317768,1.538002726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700209022,29.8802866,66.33198582,31.41828933,510.0856147,0,0.694999143,45.97285106,-0.694999143,134.0271489,0.978057465,0,565.2250293,31.41828933,585.7876713,10,15,4% -10/19/2018 0:00,74.79083992,243.664518,199.3708259,564.460925,51.28819614,375.5541248,324.3095155,51.24460929,49.74166779,1.5029415,49.88629331,0,49.88629331,1.546528347,48.33976497,1.305346407,4.25274811,3.655823157,-3.655823157,0,0.257250257,0.386632087,12.43541695,0.086782085,1,0.267004826,0,0.929393461,0.968155424,0.724496596,1,47.99034227,1.120454523,0.014258236,0.312029739,0.960362049,0.684858645,0.961238037,0.922476074,0.274032221,11.95339578,48.26437449,13.0738503,296.1652595,0,0.574547327,54.93206263,-0.574547327,125.0679374,0.962974967,0,333.4641055,13.0738503,342.020679,10,16,3% -10/19/2018 1:00,85.70223374,253.6251012,22.52382014,132.5869427,12.5877745,66.84424088,54.46624016,12.37800072,12.20820665,0.16979407,5.84072881,0,5.84072881,0.379567845,5.461160965,1.495786155,4.426593081,13.27988783,-13.27988783,0,0.558864989,0.094891961,3.052051663,0.635148466,1,0.075159993,0,0.953934055,0.992696018,0.724496596,1,11.81847695,0.274995612,0.08345859,0.312029739,0.790733278,0.515229874,0.961238037,0.922476074,0.065495897,2.933748149,11.88397284,3.20874376,19.87209129,0,0.410796411,65.7451261,-0.410796411,114.2548739,0.928285207,0,30.33094123,3.20874376,32.43099984,10,17,7% -10/19/2018 2:00,97.4812818,262.7799928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701369327,4.586376083,-7.426328846,7.426328846,0.199869282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.208357697,77.97387356,-0.208357697,102.0261264,0.810028064,0,0,0,0,10,18,0% -10/19/2018 3:00,109.3103405,271.8737271,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907825349,4.745091688,-2.648440166,2.648440166,0.983063632,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.011201196,90.64179468,0.011201196,89.35820532,0,0,0,0,0,10,19,0% -10/19/2018 4:00,121.0692788,281.7614792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.113057538,4.917665517,-1.411180411,1.411180411,0.771479753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.235866778,103.6427219,0.235866778,76.35727812,0,0.838015928,0,0,0,10,20,0% -10/19/2018 5:00,132.3569406,293.680766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310064401,5.125696317,-0.793200331,0.793200331,0.665798935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.450334082,116.7651203,0.450334082,63.23487971,0,0.938971317,0,0,0,10,21,0% -10/19/2018 6:00,142.4640679,309.6932449,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486467051,5.405166794,-0.387718815,0.387718815,0.596457512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.639995311,129.7914699,0.639995311,50.20853012,0,0.971874428,0,0,0,10,22,0% -10/19/2018 7:00,149.9553903,332.7884257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617215291,5.80825374,-0.072607263,0.072607263,0.542570263,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791935157,142.3667244,0.791935157,37.63327556,0,0.986863518,0,0,0,10,23,0% -10/20/2018 8:00,152.4743093,3.286746217,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661178721,0.057364543,0.206022704,-0.206022704,0.494921732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895810555,153.6127335,0.895810555,26.38726647,0,0.994184627,0,0,0,10,0,0% -10/20/2018 9:00,148.7650472,32.69585238,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596439886,0.570650276,0.482392762,-0.482392762,0.447659669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.944555083,160.8311601,0.944555083,19.16883994,0,0.997065025,0,0,0,10,1,0% -10/20/2018 10:00,140.5833334,54.14111575,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453642041,0.944940731,0.790613221,-0.790613221,0.394950866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934860093,159.2055538,0.934860093,20.79444623,0,0.996516061,0,0,0,10,2,0% -10/20/2018 11:00,130.1614807,69.11310799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.271746397,1.206251291,1.184813217,-1.184813217,0.327538696,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.867399834,150.157875,0.867399834,29.84212501,0,0.992356457,0,0,0,10,3,0% -10/20/2018 12:00,118.7471406,80.50033676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.072528581,1.404995925,1.792447204,-1.792447204,0.223627165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.746785289,138.3126718,0.746785289,41.68732821,0,0.983046351,0,0,0,10,4,0% -10/20/2018 13:00,106.9623457,90.15874554,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866845108,1.573566959,3.077717499,-3.077717499,0.003833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.58124983,125.5384971,0.58124983,54.46150289,0,0.963978469,0,0,0,10,5,0% -10/20/2018 14:00,95.17781813,99.21897603,0,0,0,0,0,0,0,0,0,0,0,0,0,1.661166301,1.731697812,9.631332721,-9.631332721,0,#DIV/0!,0,0,0.527611399,1,0.103457091,0,0.950837993,0.989599956,0.724496596,1,0,0,0.072177575,0.312029739,0.815792808,0.540289404,0.961238037,0.922476074,0,0,0,0,0,0,-0.382088052,112.4630815,0.382088052,67.5369185,0,0.919140111,0,0,0,10,6,0% -10/20/2018 15:00,83.56241446,108.4966147,49.84444641,244.4330157,22.43841836,22.13756575,0,22.13756575,21.76181726,0.375748491,52.02607016,39.26410595,12.76196421,0.676601102,12.08536311,1.458439263,1.893623153,-6.936357528,6.936357528,0.283659312,0.450168875,0.227753783,7.325344574,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.9182865,0.490195196,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.165006841,7.041399838,21.08329334,7.531595033,0,39.26410595,-0.160633398,99.24366282,0.160633398,80.75633718,0,0.738732228,21.08329334,36.5372555,44.99619632,10,7,113% -10/20/2018 16:00,72.8044276,118.7330963,235.9446708,609.412868,55.78136752,93.84643278,37.96842871,55.87800407,54.09935348,1.778650592,58.88953116,0,58.88953116,1.682014042,57.20751711,1.270676972,2.072283461,-2.131301667,2.131301667,0.89462774,0.236417154,1.635539565,52.60457455,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.00235633,1.218613448,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.184942848,50.56551797,53.18729918,51.78413142,37.96842871,0,0.062303293,86.42797077,-0.062303293,93.57202923,0,0,53.18729918,51.78413142,87.07897751,10,8,64% -10/20/2018 17:00,63.09646014,130.7161152,413.3716309,752.5233713,72.86247685,281.4877742,207.7061999,73.7815743,70.66540434,3.116169962,102.4238103,0,102.4238103,2.197072511,100.2267378,1.101240976,2.281426596,-0.96399438,0.96399438,0.695006438,0.176263854,2.333281427,75.0463513,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.92627454,1.591771555,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.690454451,72.1374074,69.61672899,73.72917896,207.7061999,0,0.276012956,73.97761121,-0.276012956,106.0223888,0.868849083,0,250.0820703,73.72917896,298.3363433,10,9,19% -10/20/2018 18:00,55.17204556,145.2320225,550.4255574,818.1055221,83.19392897,465.3404213,380.5057559,84.83466541,80.68532505,4.149340352,135.9656529,0,135.9656529,2.508603911,133.457049,0.96293385,2.534776971,-0.366379189,0.366379189,0.592808221,0.151144742,2.715133795,87.32803606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.55780346,1.817474994,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.967105192,83.94302994,79.52490865,85.76050494,380.5057559,0,0.465105962,62.28292005,-0.465105962,117.7170799,0.942497615,0,438.1506763,85.76050494,494.2792115,10,10,13% -10/20/2018 19:00,49.96304948,162.6431384,634.3922294,847.9930645,88.89397514,613.8366373,522.8408269,90.9958104,86.21349381,4.782316594,156.4962221,0,156.4962221,2.680481334,153.8157408,0.872019718,2.838658271,0.054885922,-0.054885922,0.520767644,0.140124628,2.811619093,90.4313349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.87168954,1.941999602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.037008461,86.92603882,84.908698,88.86803843,522.8408269,0,0.616562622,51.9344489,-0.616562622,128.0655511,0.968905236,0,591.491913,88.86803843,649.6542668,10,11,10% -10/20/2018 20:00,48.39207649,182.057372,658.5897522,855.558508,90.47356093,708.7289706,616.0187936,92.710177,87.74544926,4.964727741,162.410822,0,162.410822,2.728111674,159.6827103,0.844601067,3.17750057,0.422857253,-0.422857253,0.45784084,0.137374687,2.642822805,85.00226604,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,84.34426339,1.976507621,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914716125,81.70741133,86.25897951,83.68391896,616.0187936,0,0.720019482,43.94391108,-0.720019482,136.0560889,0.980557435,0,690.3007874,83.68391896,745.0702387,10,12,8% -10/20/2018 21:00,50.80727684,201.1974212,621.1643377,843.6757415,88.01958745,738.3397358,648.2916646,90.04807129,85.36547213,4.682599158,153.2626006,0,153.2626006,2.654115319,150.6084853,0.886754265,3.511557446,0.807800993,-0.807800993,0.392011584,0.141700967,2.239050955,72.0155754,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.05653885,1.922897514,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.622184795,69.22411032,83.67872364,71.14700783,648.2916646,0,0.768413305,39.78838197,-0.768413305,140.211618,0.984930851,0,722.2011844,71.14700783,768.765478,10,13,6% -10/20/2018 22:00,56.68921895,217.9991415,524.9786174,807.7346387,81.38684573,695.5196181,612.6293755,82.89024261,78.93273204,3.95751057,129.7412575,0,129.7412575,2.454113684,127.2871438,0.989413521,3.804802785,1.290488517,-1.290488517,0.309467156,0.155028877,1.648381066,53.01760135,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.87314439,1.77799701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.194246471,50.96253504,77.06739086,52.74053205,612.6293755,0,0.758453762,40.67192606,-0.758453762,139.3280739,0.984076403,0,679.9415032,52.74053205,714.4591266,10,14,5% -10/20/2018 23:00,65.07319592,231.9044171,377.8164823,730.6445672,69.87894984,575.3947385,504.7747566,70.61998191,67.77184168,2.848140234,93.7130885,0,93.7130885,2.107108164,91.60598034,1.135741524,4.047495629,2.045256492,-2.045256492,0.18039423,0.184954742,0.945537567,30.41173843,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.14487205,1.526592692,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.685038749,29.23291974,65.8299108,30.75951244,504.7747566,0,0.69086226,46.301597,-0.69086226,133.698403,0.977626673,0,559.3111769,30.75951244,579.4426626,10,15,4% -10/20/2018 0:00,75.06903031,243.4286817,194.3269446,557.9117969,50.57812248,368.7608304,318.2429064,50.51792406,49.05300547,1.464918592,48.64193456,0,48.64193456,1.525117006,47.11681755,1.310201745,4.248631989,3.725480037,-3.725480037,0,0.260273338,0.381279252,12.26325137,0.096609419,1,0.26224027,0,0.930100749,0.968862712,0.724496596,1,47.34193565,1.104942079,0.015802508,0.312029739,0.956164372,0.680660967,0.961238037,0.922476074,0.269670118,11.78790367,47.61160577,12.89284575,287.4976442,0,0.570417955,55.22062382,-0.570417955,124.7793762,0.962344975,0,324.2835191,12.89284575,332.7216288,10,16,3% -10/20/2018 1:00,85.95466611,253.3760399,19.86598638,119.8334937,11.41224268,59.97420411,48.75632446,11.21787965,11.06812146,0.149758197,5.160859623,0,5.160859623,0.344121223,4.816738399,1.500191931,4.422246142,14.11534229,-14.11534229,0,0.574461417,0.086030306,2.767030364,0.653224733,1,0.070726731,0,0.954402128,0.993164091,0.724496596,1,10.71221293,0.249314655,0.085267315,0.312029739,0.786810019,0.511306615,0.961238037,0.922476074,0.059470363,2.659774835,10.77168329,2.90908949,16.90748741,0,0.406867253,65.99180812,-0.406867253,114.0081919,0.927109795,0,26.44678049,2.90908949,28.35072138,10,17,7% -10/20/2018 2:00,97.73122976,262.518358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705731741,4.581809694,-7.190806831,7.190806831,0.240145919,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.204440736,78.20323779,-0.204440736,101.7967622,0.805430346,0,0,0,0,10,18,0% -10/20/2018 3:00,109.5574128,271.5959996,0,0,0,0,0,0,0,0,0,0,0,0,0,1.912137573,4.740244429,-2.617342432,2.617342432,0.977745607,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.014899372,90.85370274,0.014899372,89.14629726,0,0,0,0,0,10,19,0% -10/20/2018 4:00,121.3230237,281.4630559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117486222,4.912457048,-1.401631418,1.401631418,0.769846779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.239296023,103.8449948,0.239296023,76.15500517,0,0.841053778,0,0,0,10,20,0% -10/20/2018 5:00,132.629559,293.362304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.314822489,5.120138107,-0.789817254,0.789817254,0.665220395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.453462747,116.9660682,0.453462747,63.0339318,0,0.939737359,0,0,0,10,21,0% -10/20/2018 6:00,142.7704059,309.3827805,0,0,0,0,0,0,0,0,0,0,0,0,0,2.491813658,5.399748168,-0.386994584,0.386994584,0.596333661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.642812429,130.0018564,0.642812429,49.99814365,0,0.972216812,0,0,0,10,22,0% -10/20/2018 7:00,150.3027495,332.6019399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.623277854,5.804998949,-0.073436371,0.073436371,0.542712049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794451195,142.6034504,0.794451195,37.39654965,0,0.987063472,0,0,0,10,23,0% -10/21/2018 8:00,152.8290021,3.413491146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66736928,0.059576659,0.203963147,-0.203963147,0.495273937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.898056696,153.9037927,0.898056696,26.09620729,0,0.994324228,0,0,0,10,0,0% -10/21/2018 9:00,149.0681945,33.06949609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601730804,0.577171589,0.479012892,-0.479012892,0.448237661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.946581069,161.1878801,0.946581069,18.81211995,0,0.997178322,0,0,0,10,1,0% -10/21/2018 10:00,140.826712,54.55825662,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4578898,0.952221212,0.785391007,-0.785391007,0.395843917,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936730793,159.5095901,0.936730793,20.49040992,0,0.996622871,0,0,0,10,2,0% -10/21/2018 11:00,130.365887,69.49999167,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275313961,1.213003685,1.176369601,-1.176369601,0.32898264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.869190768,150.3647372,0.869190768,29.63526276,0,0.992475229,0,0,0,10,3,0% -10/21/2018 12:00,118.931972,80.85162226,0,0,0,0,0,0,0,0,0,0,0,0,0,2.075754498,1.411127014,1.776759665,-1.776759665,0.226309892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.748577415,138.467299,0.748577415,41.53270104,0,0.983206641,0,0,0,10,4,0% -10/21/2018 13:00,107.1417409,90.48381583,0,0,0,0,0,0,0,0,0,0,0,0,0,1.869976145,1.579240506,3.037147312,-3.037147312,0.01077091,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.583123953,125.6705661,0.583123953,54.32943386,0,0.964254937,0,0,0,10,5,0% -10/21/2018 14:00,95.36271358,99.52768126,0,0,0,0,0,0,0,0,0,0,0,0,0,1.664393336,1.737085735,9.269263578,-9.269263578,0,#DIV/0!,0,0,0.513378145,1,0.107467788,0,0.950384094,0.989146057,0.724496596,1,0,0,0.070614115,0.312029739,0.819346012,0.543842608,0.961238037,0.922476074,0,0,0,0,0,0,-0.384119249,112.589073,0.384119249,67.41092695,0,0.91983209,0,0,0,10,6,0% -10/21/2018 15:00,83.75888804,108.7960056,47.07900377,234.7293921,21.56094485,21.26570422,0,21.26570422,20.91080281,0.354901417,50.28547612,38.22048456,12.06499156,0.650142039,11.41484953,1.461868374,1.898848511,-7.126698475,7.126698475,0.251109094,0.457973685,0.210840338,6.781350035,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.10025904,0.471025694,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.152753107,6.518491595,20.25301215,6.989517288,0,38.22048456,-0.16282786,99.37107361,0.16282786,80.62892639,0,0.742927242,20.25301215,35.38455647,43.41149667,10,7,114% -10/21/2018 16:00,73.02824034,119.0253673,231.8685159,605.0415816,55.25668515,91.5155245,36.17710946,55.33841503,53.59049222,1.747922814,57.88539909,0,57.88539909,1.666192933,56.21920616,1.274583241,2.077384552,-2.148566285,2.148566285,0.897580164,0.238310428,1.611563648,51.83342664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.51321953,1.207151108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.167572377,49.82426127,52.68079191,51.03141238,36.17710946,0,0.059792766,86.57208225,-0.059792766,93.42791775,0,0,52.68079191,51.03141238,86.07983068,10,8,63% -10/21/2018 17:00,63.35423696,130.9944537,408.8180913,750.0704285,72.43166602,278.246022,204.9165944,73.3294275,70.24758405,3.081843457,101.3067613,0,101.3067613,2.184081975,99.12267936,1.10574003,2.286284519,-0.966382834,0.966382834,0.695414887,0.177173338,2.309469534,74.28047898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.52464978,1.582359956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.673202816,71.40122179,69.1978526,72.98358174,204.9165944,0,0.273196472,74.14543557,-0.273196472,105.8545644,0.866981531,0,246.8567553,72.98358174,294.6230499,10,9,19% -10/21/2018 18:00,55.4699635,145.4733943,545.5226973,816.3480537,82.78543971,461.5366945,377.1351607,84.40153378,80.28915326,4.112380522,134.7645803,0,134.7645803,2.496286453,132.2682938,0.968133499,2.538989704,-0.364549691,0.364549691,0.592495358,0.151754345,2.69087845,86.54790079,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.17698806,1.808551038,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.949532277,83.19313425,79.12652033,85.00168529,377.1351607,0,0.461978391,62.48515665,-0.461978391,117.5148433,0.94176983,0,434.3010364,85.00168529,489.9329394,10,10,13% -10/21/2018 19:00,50.2987613,162.8047096,629.2129497,846.4933651,88.4861499,609.5778384,519.0165994,90.561239,85.81796601,4.743272995,155.2281483,0,155.2281483,2.668183899,152.5599644,0.877878994,2.84147822,0.058936129,-0.058936129,0.520075018,0.140629893,2.786989816,89.63917268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.49149317,1.933090152,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.019164634,86.16458237,84.5106578,88.09767253,519.0165994,0,0.613137233,52.18330735,-0.613137233,127.8166927,0.968452188,0,587.1534189,88.09767253,644.8115836,10,11,10% -10/21/2018 20:00,48.7485929,182.0970985,653.2096137,854.0836684,90.05735155,704.0713262,611.8053661,92.26596011,87.34179012,4.924169985,161.0937949,0,161.0937949,2.715561425,158.3782334,0.850823452,3.178193927,0.428926799,-0.428926799,0.456802887,0.137868993,2.618146347,84.20858632,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.95625087,1.967415009,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896838116,80.9444962,85.85308899,82.91191121,611.8053661,0,0.716329546,44.24773354,-0.716329546,135.7522665,0.980199724,0,685.5445399,82.91191121,739.8087276,10,12,8% -10/21/2018 21:00,51.1589732,201.1140321,615.6707543,842.0199671,87.58808211,733.3211473,643.7329829,89.58816447,84.94697826,4.641186206,151.9176062,0,151.9176062,2.641103841,149.2765024,0.892892524,3.510102031,0.816641282,-0.816641282,0.390499805,0.142264484,2.214820637,71.23624507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.65426662,1.913470742,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604630012,68.47498837,83.25889663,70.38845911,643.7329829,0,0.764510354,40.13654944,-0.764510354,139.8634506,0.984598662,0,717.0775303,70.38845911,763.145369,10,13,6% -10/21/2018 22:00,57.0177575,217.830977,519.4744555,805.5906127,80.92777702,690.1446274,607.7411036,82.40352382,78.48750595,3.916017873,128.3928671,0,128.3928671,2.440271069,125.952596,0.995147601,3.801867761,1.304351496,-1.304351496,0.307096447,0.155787789,1.625313298,52.27566263,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.44517614,1.767968082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.177533951,50.24935532,76.62271009,52.01732341,607.7411036,0,0.754404401,41.02664518,-0.754404401,138.9733548,0.98372255,0,674.4713382,52.01732341,708.515636,10,14,5% -10/21/2018 23:00,65.37340026,231.6912622,372.4364411,727.3254804,69.35783099,569.5607745,499.4867548,70.0740197,67.26643649,2.80758321,92.39292156,0,92.39292156,2.091394508,90.30152705,1.140981078,4.043775374,2.071079625,-2.071079625,0.175978215,0.186227295,0.92491214,29.74835378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.65905735,1.515208201,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.670095697,28.59524919,65.32915305,30.11045739,499.4867548,0,0.686744474,46.62704492,-0.686744474,133.3729551,0.977192716,0,553.4239715,30.11045739,573.1306637,10,15,4% -10/21/2018 0:00,75.34364474,243.1934442,189.3558168,551.2932138,49.86702342,361.9996944,312.2089016,49.7907928,48.36334867,1.427444131,47.41518482,0,47.41518482,1.503674746,45.91151007,1.314994671,4.24452632,3.796688157,-3.796688157,0,0.263350893,0.375918686,12.09083717,0.106439357,1,0.257538388,0,0.930794035,0.969555998,0.724496596,1,46.69143737,1.089407235,0.017333527,0.312029739,0.95202116,0.676517756,0.961238037,0.922476074,0.265339258,11.62217258,46.95677663,12.71157982,278.9775868,0,0.566320959,55.50592857,-0.566320959,124.4940714,0.961710843,0,315.2525469,12.71157982,323.5720216,10,16,3% -10/21/2018 1:00,86.20279309,253.127417,17.39074946,107.5157842,10.27048881,53.41994198,43.32804749,10.0918945,9.96079568,0.131098815,4.526281682,0,4.526281682,0.309693132,4.216588551,1.504522564,4.417906854,15.04439033,-15.04439033,0,0.590571949,0.077423283,2.49019892,0.671332494,1,0.066372323,0,0.954857372,0.993619336,0.724496596,1,9.638037713,0.22437162,0.087055223,0.312029739,0.782957645,0.507454241,0.961238037,0.922476074,0.053608549,2.393673921,9.691646262,2.618045541,14.2405213,0,0.402992433,66.23461629,-0.402992433,113.7653837,0.925928191,0,22.8773464,2.618045541,24.59080484,10,17,7% -10/21/2018 2:00,97.97724277,262.2568708,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710025478,4.577245882,-6.973275148,6.973275148,0.277346028,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.200579499,78.42915138,-0.200579499,101.5708486,0.800722282,0,0,0,0,10,18,0% -10/21/2018 3:00,109.8002844,271.3179523,0,0,0,0,0,0,0,0,0,0,0,0,0,1.916376483,4.735391588,-2.587515375,2.587515375,0.972644879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.018532689,91.06190565,0.018532689,88.93809435,0,0,0,0,0,10,19,0% -10/21/2018 4:00,121.5722839,281.1635012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.121836633,4.907228833,-1.392419674,1.392419674,0.768271478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.242653981,104.0432336,0.242653981,75.95676642,0,0.843945272,0,0,0,10,20,0% -10/21/2018 5:00,132.8974718,293.0412096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.31949845,5.114533952,-0.786571847,0.786571847,0.664665398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.456516845,117.1625732,0.456516845,62.83742677,0,0.940475016,0,0,0,10,21,0% -10/21/2018 6:00,143.07213,309.0671168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.497079737,5.394238797,-0.3863385,0.3863385,0.596221464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645555071,130.2073056,0.645555071,49.79269444,0,0.972547274,0,0,0,10,22,0% -10/21/2018 7:00,150.6463458,332.4082684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.62927474,5.801618745,-0.074301314,0.074301314,0.542859963,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796896215,142.8347266,0.796896215,37.16527342,0,0.987256572,0,0,0,10,23,0% -10/22/2018 8:00,153.1810504,3.536944128,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673513681,0.06173132,0.201887106,-0.201887106,0.495628961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9002384,154.1894216,0.9002384,25.81057843,0,0.994459157,0,0,0,10,0,0% -10/22/2018 9:00,149.3690747,33.44261252,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606982154,0.583683699,0.475632427,-0.475632427,0.448815754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948551871,161.5412534,0.948551871,18.45874657,0,0.99728807,0,0,0,10,1,0% -10/22/2018 10:00,141.0683916,54.97364832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462107904,0.959471165,0.780187857,-0.780187857,0.396733708,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938557596,159.8107174,0.938557596,20.18928261,0,0.996726764,0,0,0,10,2,0% -10/22/2018 11:00,130.569326,69.88417426,0,0,0,0,0,0,0,0,0,0,0,0,0,2.278864641,1.219708936,1.167982538,-1.167982538,0.330416912,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.870950344,150.5692641,0.870950344,29.43073588,0,0.992591446,0,0,0,10,3,0% -10/22/2018 12:00,119.1164575,81.19979753,0,0,0,0,0,0,0,0,0,0,0,0,0,2.078974377,1.417203819,1.761239116,-1.761239116,0.228964062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.750351112,138.6208014,0.750351112,41.37919856,0,0.983364529,0,0,0,10,4,0% -10/22/2018 13:00,107.3212443,90.80552613,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87310907,1.58485541,2.997354925,-2.997354925,0.017575809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.584992074,125.8024301,0.584992074,54.19756992,0,0.964528757,0,0,0,10,5,0% -10/22/2018 14:00,95.54800816,99.83273205,0,0,0,0,0,0,0,0,0,0,0,0,0,1.667627336,1.742409876,8.930697609,-8.930697609,0,#DIV/0!,0,0,0.499270324,1,0.11150885,0,0.949922994,0.988684958,0.724496596,1,0,0,0.069047372,0.312029739,0.822926225,0.54742282,0.961238037,0.922476074,0,0,0,0,0,0,-0.38615551,112.7154945,0.38615551,67.2845055,0,0.920518486,0,0,0,10,6,0% -10/22/2018 15:00,83.95569511,109.0913004,44.35594651,224.9065195,20.67386079,20.38484147,0,20.38484147,20.05046761,0.334373861,48.49506466,37.11705871,11.37800595,0.623393181,10.75461277,1.465303305,1.904002377,-7.329971583,7.329971583,0.216347345,0.466089948,0.194471827,6.254882461,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.27327213,0.451646238,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.140894177,6.012430938,19.4141663,6.464077176,0,37.11705871,-0.165033272,99.49916729,0.165033272,80.50083271,0,0.747030789,19.4141663,34.19166285,41.7919258,10,7,115% -10/22/2018 16:00,73.25246949,119.3128978,227.7860681,600.5790014,54.72622852,89.18374713,34.39056872,54.79317841,53.07603081,1.717147599,56.87956715,0,56.87956715,1.650197708,55.22936944,1.278496778,2.082402907,-2.166457026,2.166457026,0.900639661,0.240252747,1.587522282,51.06017367,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01869966,1.195562622,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.150154489,49.0809811,52.16885415,50.27654372,34.39056872,0,0.057262356,86.71731302,-0.057262356,93.28268698,0,0,52.16885415,50.27654372,85.07384648,10,8,63% -10/22/2018 17:00,63.61207045,131.2672413,404.2553035,747.5752105,71.99813971,274.9866834,202.1121061,72.87457739,69.82713015,3.047447236,100.1873882,0,100.1873882,2.171009557,98.01637864,1.110240073,2.291045561,-0.968926558,0.968926558,0.69584989,0.178100668,2.285644022,73.51416859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.12049351,1.572889034,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.655941313,70.6646151,68.77643482,72.23750413,202.1121061,0,0.270356886,74.31449525,-0.270356886,105.6855048,0.86505927,0,243.6153857,72.23750413,290.8933874,10,9,19% -10/22/2018 18:00,55.76719269,145.7085609,540.6148304,814.5654533,82.3754399,457.7123698,373.7454704,83.96689941,79.89151646,4.075382948,133.5622481,0,133.5622481,2.483923446,131.0783246,0.973321127,2.543094136,-0.362787946,0.362787946,0.592194082,0.152373622,2.666657335,85.76886647,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.79476444,1.799594081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931984162,82.44429683,78.7267486,84.24389091,373.7454704,0,0.45882804,62.68849111,-0.45882804,117.3115089,0.941026712,0,430.4312198,84.24389091,485.5671615,10,10,13% -10/22/2018 19:00,50.63270906,162.9603909,624.0368175,844.9759781,88.07762032,605.3017612,515.1757529,90.12600822,85.42175509,4.704253125,153.9608165,0,153.9608165,2.655865224,151.3049512,0.883707482,2.844195372,0.062947593,-0.062947593,0.519389017,0.141141705,2.762446906,88.84978835,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.11064017,1.924165314,0,0.312029739,1,0.724496596,0.961238037,0.922476074,2.00138338,85.40579613,84.11202355,87.32996144,515.1757529,0,0.60969278,52.43270774,-0.60969278,127.5672923,0.967991484,0,582.7977652,87.32996144,639.9534784,10,11,10% -10/22/2018 20:00,49.10231801,182.1328199,647.8435993,852.5946477,89.64115817,699.4041597,607.5822945,91.82186521,86.93814651,4.883718702,159.7801928,0,159.7801928,2.703011659,157.0771811,0.85699712,3.178817383,0.434973346,-0.434973346,0.455768867,0.138368517,2.593612712,83.4195003,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.56825328,1.958322746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879063581,80.1859967,85.44731686,82.14431945,607.5822945,0,0.712627385,44.55090931,-0.712627385,135.4490907,0.979837106,0,680.7789937,82.14431945,734.5408079,10,12,8% -10/22/2018 21:00,51.50731214,201.0290602,610.2042224,840.3511297,87.1572804,728.3041383,639.1749943,89.129144,84.52916682,4.59997718,150.579192,0,150.579192,2.62811358,147.9510784,0.898972186,3.508618992,0.825476575,-0.825476575,0.388988881,0.142832968,2.190791632,70.46338969,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.25265037,1.904059342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.58722108,67.73209037,82.83987145,69.63614971,639.1749943,0,0.760604671,40.48246664,-0.760604671,139.5175334,0.984262828,0,711.956059,69.63614971,757.5315263,10,13,6% -10/22/2018 22:00,57.3427681,217.6627697,514.0114117,803.4317085,80.46999717,684.7844391,602.8660741,81.91836499,78.04352985,3.874835141,127.0544851,0,127.0544851,2.426467317,124.6280178,1.000820105,3.79893199,1.318252914,-1.318252914,0.304719164,0.156552939,1.602505582,51.54208809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.01840942,1.757967311,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.161009839,49.54421557,76.17941926,51.30218288,602.8660741,0,0.750363805,41.37809833,-0.750363805,138.6219017,0.983365656,0,669.0172117,51.30218288,702.5934643,10,14,5% -10/22/2018 23:00,65.67001518,231.4786391,367.1123589,723.9818774,68.83814548,563.7547921,494.2249226,69.52986944,66.76242141,2.76744803,91.08636577,0,91.08636577,2.075724072,89.0106417,1.146157985,4.0400644,2.097115034,-2.097115034,0.171525897,0.187512471,0.904609916,29.09536448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.17457889,1.503855024,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.655386805,27.96757104,64.82996569,29.47142606,494.2249226,0,0.682648196,46.94906937,-0.682648196,133.0509306,0.976755831,0,547.5670406,29.47142606,566.8554995,10,15,4% -10/22/2018 0:00,75.61455686,242.9588121,184.4602502,544.6098699,49.15530679,355.2753292,306.211697,49.06363221,47.67309293,1.390539282,46.20673712,0,46.20673712,1.482213864,44.72452326,1.31972298,4.240431217,3.869450866,-3.869450866,0,0.26648184,0.370553466,11.91827323,0.11626535,1,0.252901224,0,0.931473193,0.970235156,0.724496596,1,46.03926371,1.073858898,0.01885045,0.312029739,0.947934217,0.672430813,0.961238037,0.922476074,0.261040951,11.45629756,46.30030466,12.53015646,270.6098868,0,0.562258809,55.78784616,-0.562258809,124.2121538,0.961072981,0,306.3761551,12.53015646,314.5768919,10,16,3% -10/22/2018 1:00,86.44644403,252.8792589,15.10053507,95.70350617,9.168688461,47.20851551,38.20246262,9.006052887,8.892218675,0.113834212,3.937769341,0,3.937769341,0.276469786,3.661299555,1.508775075,4.413575677,16.08249843,-16.08249843,0,0.607176396,0.069117446,2.223054669,0.689452135,1,0.062099445,0,0.955299746,0.994061709,0.724496596,1,8.601773834,0.200301419,0.088820756,0.312029739,0.779178604,0.5036752,0.961238037,0.922476074,0.047941355,2.136884706,8.649715189,2.337186125,11.86369321,0,0.399175162,66.47337598,-0.399175162,113.526624,0.924741706,0,19.62056708,2.337186125,21.15020866,10,17,8% -10/22/2018 2:00,98.2191999,261.9955749,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714248427,4.572685407,-6.771910036,6.771910036,0.31178149,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.196776264,78.6514933,-0.196776264,101.3485067,0.795904313,0,0,0,0,10,18,0% -10/22/2018 3:00,110.0388351,271.0396445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920539977,4.730534201,-2.558911329,2.558911329,0.967753299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.022099115,91.26628908,0.022099115,88.73371092,0,0,0,0,0,10,19,0% -10/22/2018 4:00,121.8169353,280.8628874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126106606,4.901982131,-1.383539942,1.383539942,0.766752954,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.245938942,104.2373291,0.245938942,75.76267095,0,0.846697507,0,0,0,10,20,0% -10/22/2018 5:00,133.1605444,292.7175512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.324089934,5.108885047,-0.783463769,0.783463769,0.664133885,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.459495043,117.3545283,0.459495043,62.64547167,0,0.941184898,0,0,0,10,21,0% -10/22/2018 6:00,143.3690893,308.7462484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502262653,5.388638588,-0.385751056,0.385751056,0.596121005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.648222312,130.4077055,0.648222312,49.5922945,0,0.972865969,0,0,0,10,22,0% -10/22/2018 7:00,150.9860326,332.2071891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.635203394,5.798109249,-0.075202678,0.075202678,0.543014105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.799269698,143.0604201,0.799269698,36.93957989,0,0.987442893,0,0,0,10,23,0% -10/23/2018 8:00,153.530364,3.656800655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.679610353,0.063823212,0.199794063,-0.199794063,0.495986893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.902355531,154.4694397,0.902355531,25.53056027,0,0.994589468,0,0,0,10,0,0% -10/23/2018 9:00,149.6676523,33.8149354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612193316,0.590181959,0.472250957,-0.472250957,0.44939402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.950467683,161.8911408,0.950467683,18.10885917,0,0.997394319,0,0,0,10,1,0% -10/23/2018 10:00,141.308373,55.38705542,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46629637,0.96668648,0.775003448,-0.775003448,0.397620294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940340948,160.1088932,0.940340948,19.89110677,0,0.996827797,0,0,0,10,2,0% -10/23/2018 11:00,130.7718115,70.2654695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.28239868,1.226363793,1.159651653,-1.159651653,0.331841577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.872679174,150.7714853,0.872679174,29.22851469,0,0.992705176,0,0,0,10,3,0% -10/23/2018 12:00,119.3006092,81.54471078,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08218843,1.423223691,1.745884023,-1.745884023,0.231589938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.75210705,138.7732282,0.75210705,41.22677178,0,0.983520102,0,0,0,10,4,0% -10/23/2018 13:00,107.5008584,91.12374452,0,0,0,0,0,0,0,0,0,0,0,0,0,1.876243929,1.590409369,2.958322606,-2.958322606,0.024250729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.586854815,125.9341325,0.586854815,54.06586747,0,0.964800051,0,0,0,10,5,0% -10/23/2018 14:00,95.7336899,100.1340078,0,0,0,0,0,0,0,0,0,0,0,0,0,1.670868094,1.74766813,8.613465204,-8.613465204,0,#DIV/0!,0,0,0.485288414,1,0.115579863,0,0.949454664,0.988216628,0.724496596,1,0,0,0.067477583,0.312029739,0.826533012,0.551029608,0.961238037,0.922476074,0,0,0,0,0,0,-0.388197303,112.8423768,0.388197303,67.15762325,0,0.921199517,0,0,0,10,6,0% -10/23/2018 15:00,84.15279119,109.3823867,41.67876441,214.9756807,19.77790327,19.49571865,0,19.49571865,19.18152652,0.314192131,46.65647853,35.9546028,10.70187573,0.596376756,10.10549897,1.468743281,1.909082791,-7.547481638,7.547481638,0.179150935,0.4745319,0.17867164,5.746694114,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.43801289,0.43207293,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.129446995,5.523940968,18.56745989,5.956013898,0,35.9546028,-0.167249629,99.627945,0.167249629,80.372055,0,0.751045674,18.56745989,32.95956281,40.13883455,10,7,116% -10/23/2018 16:00,73.47706151,119.5955866,223.6986297,596.0237343,54.189964,86.85202716,32.60975575,54.24227141,52.55593665,1.686334762,55.87235003,0,55.87235003,1.634027354,54.23832267,1.282416648,2.087336756,-2.185001472,2.185001472,0.903810948,0.2422454,1.563421705,50.28501626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51876537,1.183847256,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.132693703,48.33587031,51.65145907,49.51971757,32.60975575,0,0.054712177,86.86365714,-0.054712177,93.13634286,0,0,51.65145907,49.51971757,84.06112382,10,8,63% -10/23/2018 17:00,63.86988313,131.5343984,399.68482,745.0375775,71.56196597,271.7106902,199.2935885,72.41710166,69.40410866,3.012993001,99.06606931,0,99.06606931,2.15785731,96.908212,1.114739753,2.295708332,-0.971631989,0.971631989,0.696312546,0.179045994,2.261813375,72.74769306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.71386916,1.563360275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.63867609,69.92784967,68.35254525,71.49120994,199.2935885,0,0.26749468,74.48476004,-0.26749468,105.51524,0.863080395,0,240.3589343,71.49120994,287.1485014,10,9,19% -10/23/2018 18:00,56.06363457,145.9374802,535.7039008,812.7579783,81.96403927,453.8687649,370.3378816,83.53088336,79.49252107,4.038362286,132.3591311,0,132.3591311,2.471518199,129.8876129,0.978495014,2.547089532,-0.361097867,0.361097867,0.591905062,0.153002506,2.642480595,84.9912594,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.4112349,1.790606522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.914468196,81.69683134,78.32570309,83.48743786,370.3378816,0,0.455655794,62.89286292,-0.455655794,117.1071371,0.940268047,0,426.5425798,83.48743786,481.1834382,10,10,13% -10/23/2018 19:00,50.96478384,163.1101761,618.866149,843.4413561,87.6685242,601.0101912,511.3199221,89.69026918,85.02499474,4.665274442,152.6947923,0,152.6947923,2.643529467,150.0512628,0.889503281,2.846809616,0.066916637,-0.066916637,0.518710271,0.141659912,2.738001664,88.06354534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.72925902,1.9152281,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.983672885,84.65002944,83.71293191,86.56525754,511.3199221,0,0.606230556,52.68255618,-0.606230556,127.3174438,0.967523128,0,578.4267823,86.56525754,635.082012,10,11,10% -10/23/2018 20:00,49.45314102,182.1645259,642.4943323,851.0920738,89.22514272,694.7297292,603.3516601,91.37806913,86.53467546,4.843393668,158.4706567,0,158.4706567,2.690467259,155.7801894,0.863120136,3.179370757,0.440992627,-0.440992627,0.454739509,0.138873042,2.569233833,82.63539174,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,83.18042156,1.94923437,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.861401166,79.43228173,85.04182272,81.3815161,603.3516601,0,0.708914674,44.8533213,-0.708914674,135.1466787,0.97946965,0,676.0064621,81.3815161,729.2690368,10,12,8% -10/23/2018 21:00,51.85217802,200.9424694,604.7675802,838.6701015,86.72736837,723.2914146,634.6202029,88.6712117,84.11221823,4.558993474,149.2480517,0,149.2480517,2.615150146,146.6329016,0.904991231,3.507107698,0.834301175,-0.834301175,0.387479786,0.143406114,2.166975897,69.69739378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.85186352,1.894667379,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569966661,66.99578597,82.42183018,68.89045335,634.6202029,0,0.756698256,40.82601833,-0.756698256,139.1739817,0.983923463,0,706.8395382,68.89045335,751.9269621,10,13,6% -10/23/2018 22:00,57.66412791,217.4944829,508.5924235,801.2592322,80.01372259,679.4421872,598.0071891,81.43499815,77.60101363,3.833984519,125.7268303,0,125.7268303,2.412708955,123.3141214,1.006428892,3.795994832,1.332184138,-1.332184138,0.302336785,0.157323859,1.579969124,50.81723813,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.593046,1.747999425,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144682252,48.84746221,75.73772825,50.59546164,598.0071891,0,0.746334226,41.7261728,-0.746334226,138.2738272,0.983005886,0,663.5823152,50.59546164,696.6960329,10,14,5% -10/23/2018 23:00,65.9629147,231.2665308,361.8471356,720.6159955,68.32016437,557.9804147,488.9925988,68.9878159,66.26005934,2.727756553,89.79413238,0,89.79413238,2.06010503,87.73402735,1.151270046,4.036362413,2.12334827,-2.12334827,0.16703975,0.188809466,0.884640172,28.45306888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.69168937,1.492539082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.640918794,27.35017207,64.33260816,28.84271115,488.9925988,0,0.678575832,47.26754646,-0.678575832,132.7324535,0.976316268,0,541.7440371,28.84271115,560.6210147,10,15,3% -10/23/2018 0:00,75.88164161,242.7247914,179.6429928,537.86688,48.44340516,348.5924457,300.2555632,48.33688252,46.98265776,1.354224761,45.01727083,0,45.01727083,1.460747403,43.55652343,1.324384488,4.236346787,3.943767217,-3.943767217,0,0.269664875,0.365186851,11.74566444,0.126080555,1,0.248330815,0,0.932138104,0.970900067,0.724496596,1,45.38585522,1.058306521,0.020352421,0.312029739,0.94390534,0.668401936,0.961238037,0.922476074,0.25677659,11.29037943,45.64263181,12.34868595,262.3991752,0,0.558233969,56.06624729,-0.558233969,123.9337527,0.960431821,0,297.6591495,12.34868595,305.7411175,10,16,3% -10/23/2018 1:00,86.68544646,252.6315917,12.99665324,84.46468652,8.113106849,41.36535692,33.39891592,7.966441005,7.868466743,0.097974262,3.395829155,0,3.395829155,0.244640106,3.151189049,1.512946454,4.409253069,17.24862571,-17.24862571,0,0.62424585,0.061160026,1.967116686,0.70756258,1,0.057910809,0,0.955729211,0.994491174,0.724496596,1,7.609316108,0.177240924,0.090562305,0.312029739,0.775475366,0.499971962,0.961238037,0.922476074,0.042500583,1.890867381,7.651816692,2.068108305,9.767092789,0,0.395418693,66.70791059,-0.395418693,113.2920894,0.923551754,0,16.67223237,2.068108305,18.02576789,10,17,8% -10/23/2018 2:00,98.45698164,261.734514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.718398501,4.568129035,-6.585131786,6.585131786,0.343722452,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.193033284,78.87014365,-0.193033284,101.1298563,0.790977312,0,0,0,0,10,18,0% -10/23/2018 3:00,110.272946,270.7611367,0,0,0,0,0,0,0,0,0,0,0,0,0,1.924625983,4.725673321,-2.531485641,2.531485641,0.96306323,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.025596646,91.46674,0.025596646,88.53326,0,0,0,0,0,10,19,0% -10/23/2018 4:00,122.0568557,280.5612888,0,0,0,0,0,0,0,0,0,0,0,0,0,2.130294007,4.896718244,-1.374987257,1.374987257,0.765290359,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.249149231,104.4271738,0.249149231,75.57282623,0,0.849317061,0,0,0,10,20,0% -10/23/2018 5:00,133.4186442,292.3914021,0,0,0,0,0,0,0,0,0,0,0,0,0,2.328594624,5.103192672,-0.780492723,0.780492723,0.663625806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.462396048,117.5418285,0.462396048,62.45817152,0,0.941867588,0,0,0,10,21,0% -10/23/2018 6:00,143.6611338,308.4201774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.507359792,5.382947574,-0.385232755,0.385232755,0.596032371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.650813268,130.6029469,0.650813268,49.39705308,0,0.973173048,0,0,0,10,22,0% -10/23/2018 7:00,151.3216635,331.9984783,0,0,0,0,0,0,0,0,0,0,0,0,0,2.641061257,5.794466559,-0.076141053,0.076141053,0.543174577,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801571171,143.2804012,0.801571171,36.71959882,0,0.987622507,0,0,0,10,23,0% -10/24/2018 8:00,153.8768543,3.772741999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685657751,0.06584677,0.1976835,-0.1976835,0.49634782,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904407999,154.7436681,0.904407999,25.25633187,0,0.994715217,0,0,0,10,0,0% -10/24/2018 9:00,149.9638953,34.18618856,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617363732,0.596661549,0.468868072,-0.468868072,0.449972527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.952328742,162.2374016,0.952328742,17.76259845,0,0.997497122,0,0,0,10,1,0% -10/24/2018 10:00,141.5466608,55.79823898,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470455277,0.973862987,0.769837463,-0.769837463,0.39850373,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942081339,160.4040803,0.942081339,19.5959197,0,0.996926027,0,0,0,10,2,0% -10/24/2018 11:00,130.97336,70.64369045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285916365,1.232964994,1.151376574,-1.151376574,0.333256699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.874377902,150.9714358,0.874377902,29.02856419,0,0.992816487,0,0,0,10,3,0% -10/24/2018 12:00,119.4844407,81.88621053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.085396895,1.429183986,1.730692883,-1.730692883,0.234187776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.753845929,138.9246315,0.753845929,41.07536845,0,0.98367345,0,0,0,10,4,0% -10/24/2018 13:00,107.6805869,91.4383398,0,0,0,0,0,0,0,0,0,0,0,0,0,1.879380781,1.595900092,2.92003322,-2.92003322,0.030798599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.588712818,126.065719,0.588712818,53.934281,0,0.965068946,0,0,0,10,5,0% -10/24/2018 14:00,95.91974753,100.4313891,0,0,0,0,0,0,0,0,0,0,0,0,0,1.674115412,1.752858412,8.315656769,-8.315656769,0,#DIV/0!,0,0,0.471432896,1,0.119680381,0,0.948979079,0.987741042,0.724496596,1,0,0,0.065904994,0.312029739,0.830165912,0.554662508,0.961238037,0.922476074,0,0,0,0,0,0,-0.390245112,112.9697518,0.390245112,67.03024817,0,0.921875397,0,0,0,10,6,0% -10/24/2018 15:00,84.35013093,109.6691535,39.0510827,204.9499577,18.87394624,18.59921068,0,18.59921068,18.30482712,0.294383557,44.77179262,34.73428639,10.03750623,0.569119117,9.468387118,1.472187509,1.914087817,-7.780711921,7.780711921,0.139266207,0.483314288,0.163462695,5.257522181,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.59529609,0.412324863,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.118428166,5.0537303,17.71372425,5.466055163,0,34.73428639,-0.169476914,99.75740714,0.169476914,80.24259286,0,0.754974567,17.71372425,31.68955798,38.45390616,10,7,117% -10/24/2018 16:00,73.70196329,119.8733339,219.6075076,591.3743782,53.64785668,84.52131151,30.83564149,53.68567001,52.03017586,1.655494155,54.86406356,0,54.86406356,1.617680818,53.24638274,1.286341925,2.092184362,-2.204228601,2.204228601,0.907098981,0.244289721,1.539268109,49.5081536,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.0133841,1.172004246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115194505,47.58912037,51.12857861,48.76112462,30.83564149,0,0.052142336,87.01110879,-0.052142336,92.98889121,0,0,51.12857861,48.76112462,83.04175945,10,8,62% -10/24/2018 17:00,64.12759823,131.7958473,395.108193,742.4574063,71.12321374,268.4189838,196.461905,71.95707888,68.97858643,2.978492453,97.9431831,0,97.9431831,2.144627311,95.79855579,1.11923773,2.300271477,-0.974505773,0.974505773,0.696803992,0.180009463,2.23798604,71.98132409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.304841,1.553775186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.621413268,69.19118665,67.92625427,70.74496184,196.461905,0,0.264610338,74.65619971,-0.264610338,105.3438003,0.861042908,0,237.0883842,70.74496184,283.3895468,10,9,20% -10/24/2018 18:00,56.3591918,146.1601118,530.7918526,810.9259103,81.55134887,450.0072092,366.9136012,83.093608,79.09227481,4.001333193,131.155704,0,131.155704,2.459074061,128.69663,0.983653461,2.550975185,-0.359483477,0.359483477,0.591628985,0.153640921,2.618358337,84.21540468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.02650297,1.781590786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.896991702,80.95105026,77.92349467,82.73264105,366.9136012,0,0.452462545,63.09821161,-0.452462545,116.9017884,0.939493615,0,422.6364804,82.73264105,476.7833393,10,10,13% -10/24/2018 19:00,51.29487829,163.2540589,613.7032592,841.88998,87.25900086,596.7049276,507.4507531,89.25417443,84.62782003,4.626354397,151.4306412,0,151.4306412,2.631180827,148.7994604,0.895264516,2.849320846,0.070839471,-0.070839471,0.518039427,0.142184353,2.713665334,87.28080531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.34747959,1.906281553,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.966041297,83.89762996,83.31352089,85.80391151,507.4507531,0,0.602751862,52.93275947,-0.602751862,127.0672405,0.967047125,0,574.0423127,85.80391151,630.1992567,10,11,10% -10/24/2018 20:00,49.80095274,182.1922057,637.1644316,849.5766084,88.80946874,690.0503068,599.1155566,90.93475021,86.13153559,4.803214625,157.1658264,0,157.1658264,2.677933155,154.4878933,0.869190596,3.179853862,0.446980221,-0.446980221,0.45371557,0.139382339,2.545021558,81.85664176,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.79290818,1.940153455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.843859455,78.68371763,84.63676763,80.62387109,599.1155566,0,0.705193093,45.15485411,-0.705193093,134.8451459,0.979097434,0,671.2292717,80.62387109,723.9959828,10,12,8% -10/24/2018 21:00,52.19345667,200.8542237,599.3636552,836.9778002,86.29853403,718.2856964,630.0711252,88.21457123,83.69631482,4.518256405,147.9248766,0,147.9248766,2.602219209,145.3226574,0.910947667,3.50556752,0.84310914,-0.84310914,0.385973535,0.143983595,2.143385263,68.93863789,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.45208135,1.885298958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552875326,66.26644095,82.00495668,68.1517399,630.0711252,0,0.752793115,41.16709115,-0.752793115,138.8329089,0.983580689,0,701.7307481,68.1517399,746.3346989,10,13,6% -10/24/2018 22:00,57.9817156,217.3260798,503.2204101,799.0745621,79.55917283,674.1210221,593.1673639,80.95365824,77.16017023,3.793488012,124.4106171,0,124.4106171,2.399002603,122.0116145,1.011971843,3.793055643,1.346136053,-1.346136053,0.299950867,0.158100052,1.557714941,50.1014671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.16929055,1.738069219,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128559172,48.15943588,75.29784972,49.89750509,593.1673639,0,0.742317916,42.07075741,-0.742317916,137.9292426,0.982643415,0,658.1698537,49.89750509,690.8267728,10,14,5% -10/24/2018 23:00,66.25197423,231.0549205,356.64364,717.230215,67.80416575,552.2412945,483.7931441,68.44815039,65.75961998,2.688530405,88.51692535,0,88.51692535,2.044545768,86.47237958,1.156315086,4.032669115,2.149763608,-2.149763608,0.162522461,0.190117412,0.865011867,27.82175511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.21064801,1.481266449,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.626698153,26.74332926,63.83734617,28.22459571,483.7931441,0,0.674529787,47.5823539,-0.674529787,132.4176461,0.975874289,0,535.9586367,28.22459571,554.4310701,10,15,3% -10/24/2018 0:00,76.14477537,242.4913883,174.9067275,531.0697893,47.7317765,341.9558496,294.3448415,47.61100812,46.29248732,1.318520793,43.84745026,0,43.84745026,1.439289173,42.40816108,1.328977038,4.232273133,4.019631479,-4.019631479,0,0.27289846,0.359822293,11.57312183,0.135877834,1,0.24382918,0,0.932788657,0.97155062,0.724496596,1,44.73167726,1.042760106,0.021838572,0.312029739,0.93993632,0.664432916,0.961238037,0.922476074,0.252547653,11.12452491,44.98422491,12.16728502,254.349902,0,0.554248891,56.3410042,-0.554248891,123.6589958,0.959787821,0,289.1061632,12.16728502,297.0694079,10,16,3% -10/24/2018 1:00,86.91962634,252.3844416,11.07913578,73.86366164,7.109941419,35.91340918,28.93433952,6.979069658,6.895550452,0.083519205,2.900655707,0,2.900655707,0.214390967,2.68626474,1.517033664,4.404939487,18.56625566,-18.56625566,0,0.641741518,0.053597742,1.723887613,0.725641267,1,0.053809163,0,0.956145731,0.994907695,0.724496596,1,6.666483124,0.155325526,0.092278216,0.312029739,0.77185042,0.496347016,0.961238037,0.922476074,0.03731816,1.657066345,6.703801284,1.81239187,7.938388728,0,0.391726309,66.93804191,-0.391726309,113.0619581,0.922359862,0,14.02585242,1.81239187,15.21202665,10,17,8% -10/24/2018 2:00,98.69046999,261.4737325,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722473642,4.563577539,-6.411565456,6.411565456,0.373404042,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.189352789,79.08498386,-0.189352789,100.9150161,0.785942628,0,0,0,0,10,18,0% -10/24/2018 3:00,110.5025001,270.4824906,0,0,0,0,0,0,0,0,0,0,0,0,0,1.928632459,4.720810029,-2.505196444,2.505196444,0.958567513,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.029023312,91.66314686,0.029023312,88.33685314,0,0,0,0,0,10,19,0% -10/24/2018 4:00,122.291925,280.2587831,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13439674,4.891438523,-1.366756909,1.366756909,0.763882887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.25228321,104.612662,0.25228321,75.38733797,0,0.851810037,0,0,0,10,20,0% -10/24/2018 5:00,133.6716404,292.0628413,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333010242,5.097458203,-0.777658456,0.777658456,0.663141118,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.465218609,117.724371,0.465218609,62.27562901,0,0.942523646,0,0,0,10,21,0% -10/24/2018 6:00,143.9481153,308.0889137,0,0,0,0,0,0,0,0,0,0,0,0,0,2.512368565,5.377165932,-0.384784106,0.384784106,0.595955647,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.653327103,130.7929235,0.653327103,49.20707654,0,0.973468658,0,0,0,10,22,0% -10/24/2018 7:00,151.6530915,331.7819126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646845767,5.790686774,-0.077117028,0.077117028,0.543341478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803800209,143.4945435,0.803800209,36.50545652,0,0.987795488,0,0,0,10,23,0% -10/25/2018 8:00,154.2204343,3.884435375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.691654352,0.067796187,0.195554907,-0.195554907,0.496711831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906395759,155.0119293,0.906395759,24.98807075,0,0.994836459,0,0,0,10,0,0% -10/25/2018 9:00,150.257775,34.55608611,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6224929,0.603117479,0.465483368,-0.465483368,0.450551346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954135328,162.5798933,0.954135328,17.42010674,0,0.997596532,0,0,0,10,1,0% -10/25/2018 10:00,141.7832625,56.20695676,0,0,0,0,0,0,0,0,0,0,0,0,0,2.474584755,0.980996458,0.764689593,-0.764689593,0.399384067,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943779296,160.6962464,0.943779296,19.30375364,0,0.997021512,0,0,0,10,2,0% -10/25/2018 11:00,131.17399,71.01864972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.289418019,1.239509268,1.143156948,-1.143156948,0.334662338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.876047207,151.1691555,0.876047207,28.83084446,0,0.99292545,0,0,0,10,3,0% -10/25/2018 12:00,119.667967,82.22414571,0,0,0,0,0,0,0,0,0,0,0,0,0,2.088600034,1.435082067,1.715664248,-1.715664248,0.236757824,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.755568472,139.0750664,0.755568472,40.9249336,0,0.983824661,0,0,0,10,4,0% -10/25/2018 13:00,107.8604338,91.74918151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.882519703,1.601325303,2.882470278,-2.882470278,0.037222241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.590566745,126.1972364,0.590566745,53.80276356,0,0.965335565,0,0,0,10,5,0% -10/25/2018 14:00,96.10617007,100.7247573,0,0,0,0,0,0,0,0,0,0,0,0,0,1.677369099,1.757978654,8.035585508,-8.035585508,0,#DIV/0!,0,0,0.457704287,1,0.123809913,0,0.948496221,0.987258184,0.724496596,1,0,0,0.064329861,0.312029739,0.833824423,0.558321019,0.961238037,0.922476074,0,0,0,0,0,0,-0.392299428,113.0976524,0.392299428,66.90234762,0,0.922546335,0,0,0,10,6,0% -10/25/2018 15:00,84.54766754,109.9514913,36.47666837,194.8444313,17.96301928,17.69634451,0,17.69634451,17.42136798,0.274976534,42.84357015,33.45772829,9.385841866,0.541651308,8.844190558,1.475635173,1.919015541,-8.031354885,8.031354885,0.096403736,0.492452301,0.14886729,4.788083766,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.74608155,0.392424529,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.107853845,4.60248824,16.8539354,4.994912768,0,33.45772829,-0.171715086,99.88755277,0.171715086,80.11244723,0,0.758819993,16.8539354,30.3833059,36.73920144,10,7,118% -10/25/2018 16:00,73.92712171,120.1460422,215.5140213,586.6295336,53.0998714,82.19257419,29.0692241,53.12335009,51.49871436,1.624635726,53.85502663,0,53.85502663,1.601157041,52.25386959,1.29027168,2.09694402,-2.224168795,2.224168795,0.910508955,0.246387085,1.515067681,48.72978462,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.5025231,1.160032825,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.097661377,46.84092251,50.60018447,48.00095533,29.0692241,0,0.04955295,87.15966187,-0.04955295,92.84033813,0,0,50.60018447,48.00095533,82.01584972,10,8,62% -10/25/2018 17:00,64.38513926,132.0515128,390.526981,739.8345965,70.68195351,265.1125234,193.6179343,71.49458916,68.55063182,2.943957342,96.8191096,0,96.8191096,2.131321687,94.68778791,1.123732669,2.30473368,-0.97755474,0.97755474,0.697325396,0.180991217,2.214170456,71.21533302,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.89347476,1.544135307,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.604158958,68.4548869,67.49763372,69.99902221,193.6179343,0,0.261704353,74.82878353,-0.261704353,105.1712165,0.858944714,0,233.8047349,69.99902221,279.6176949,10,9,20% -10/25/2018 18:00,56.65376783,146.3764167,525.8806356,809.0695591,81.1374816,446.1290499,363.4738524,82.65519753,78.69088716,3.964310364,129.952443,0,129.952443,2.446594436,127.5058485,0.988794782,2.554750419,-0.357948903,0.357948903,0.591366557,0.15428878,2.594300649,83.44162671,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.64067389,1.77254934,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879561989,80.20726545,77.52023588,81.97981479,363.4738524,0,0.4492492,63.30447638,-0.4492492,116.6955236,0.938703196,0,418.7143029,81.97981479,472.3684521,10,10,13% -10/25/2018 19:00,51.62288626,163.3920338,608.5504656,840.3223614,86.8491914,592.3877882,503.5699099,88.8178783,84.23036784,4.587510462,150.1689295,0,150.1689295,2.61882356,147.5501059,0.900989335,2.851728962,0.074712196,-0.074712196,0.517377152,0.142714855,2.689449118,86.50192854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.96543343,1.897328754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.94849673,83.14894398,82.91393016,85.04627273,503.5699099,0,0.599258015,53.18322468,-0.599258015,126.8167753,0.966563486,0,569.6462175,85.04627273,625.3073021,10,11,10% -10/25/2018 20:00,50.14564523,182.2158487,631.8565138,848.0489496,88.39430165,685.3681832,594.8760946,90.49208861,85.72888731,4.763201298,155.8663415,0,155.8663415,2.665414335,153.2009272,0.875206615,3.180266509,0.452931559,-0.452931559,0.452697831,0.139896163,2.520987659,81.08362896,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.40586734,1.931083612,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.826446977,77.94066832,84.23231432,79.87175194,594.8760946,0,0.701464337,45.45539361,-0.701464337,134.5446064,0.978720539,0,666.4497662,79.87175194,718.7242304,10,12,8% -10/25/2018 21:00,52.53103523,200.7642876,593.9952661,835.2751908,85.87096755,713.2897208,625.5302925,87.75942827,83.28164105,4.477787221,146.6103558,0,146.6103558,2.589326502,144.0210293,0.916839524,3.503997839,0.851894283,-0.851894283,0.384471187,0.144565071,2.120031436,68.18749853,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.05348114,1.875958236,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535955558,65.54441722,81.5894367,67.42037546,625.5302925,0,0.748891263,41.50557327,-0.748891263,138.4944267,0.983234633,0,696.6324843,67.42037546,740.7577716,10,13,6% -10/25/2018 22:00,58.29541121,217.1575245,497.8982718,796.8791493,79.10657066,668.824111,588.3495279,80.47458317,76.72121568,3.753367486,123.1065554,0,123.1065554,2.385354978,120.7212005,1.017446864,3.790113797,1.360099053,-1.360099053,0.297563053,0.158880991,1.535753856,49.39512311,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.74735075,1.728181561,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.11264844,47.48047117,74.85999919,49.20865273,588.3495279,0,0.738317132,42.41174235,-0.738317132,137.5882576,0.982278424,0,652.783046,49.20865273,684.989125,10,14,5% -10/25/2018 23:00,66.53707067,230.8437915,351.5047076,713.8270624,67.29043476,546.5411108,478.62994,67.91117084,65.26137987,2.649790962,87.25544082,0,87.25544082,2.029054883,85.22638594,1.161290958,4.02898422,2.176344001,-2.176344001,0.157976946,0.191435373,0.845733631,27.20170077,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.73172067,1.470043356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.612731137,26.14730945,63.34445181,27.6173528,478.62994,0,0.670512461,47.89337092,-0.670512461,132.1066291,0.97543017,0,530.2145357,27.6173528,548.2895407,10,15,3% -10/25/2018 0:00,76.40383609,242.2586089,170.2540666,524.2245825,47.02090477,335.3704379,288.4839399,46.88649807,45.603051,1.28344707,42.69792335,0,42.69792335,1.417853767,41.28006958,1.333498501,4.228210366,4.097032615,-4.097032615,0,0.276180803,0.354463442,11.40076275,0.145649759,1,0.239398327,0,0.933424751,0.972186714,0.724496596,1,44.07722051,1.027230228,0.023308027,0.312029739,0.936028941,0.660525537,0.961238037,0.922476074,0.248355711,10.9588468,44.32557622,11.98607703,246.4663237,0,0.550306013,56.61199074,-0.550306013,123.3880093,0.959141462,0,280.7216462,11.98607703,288.5662938,10,16,3% -10/25/2018 1:00,87.14880853,252.1378357,9.346581216,63.95882336,6.165132262,30.87219305,24.8225038,6.049689254,5.979230777,0.070458477,2.452088311,0,2.452088311,0.185901485,2.266186827,1.521033648,4.400635401,20.06481562,-20.06481562,0,0.659613619,0.046475371,1.494807694,0.743664138,1,0.049797282,0,0.956549277,0.99531124,0.724496596,1,5.778839001,0.134684993,0.093966795,0.312029739,0.768306264,0.49280286,0.961238037,0.922476074,0.032425163,1.436866014,5.811264164,1.571551006,6.362897909,0,0.38810132,67.16359051,-0.38810132,112.8364095,0.921167663,0,11.67255996,1.571551006,12.70110866,10,17,9% -10/25/2018 2:00,98.91954871,261.2132761,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72647182,4.559031717,-6.250008915,6.250008915,0.401031838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.185736983,79.29589688,-0.185736983,100.7041031,0.780802131,0,0,0,0,10,18,0% -10/25/2018 3:00,110.7273825,270.2037701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932557396,4.71594544,-2.480004454,2.480004454,0.954259429,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.032377176,91.85539982,0.032377176,88.14460018,0,0,0,0,0,10,19,0% -10/25/2018 4:00,122.5220251,279.9554514,0,0,0,0,0,0,0,0,0,0,0,0,0,2.138412745,4.886144385,-1.358844415,1.358844415,0.76252977,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.255339284,104.7936902,0.255339284,75.20630977,0,0.854182109,0,0,0,10,20,0% -10/25/2018 5:00,133.9194048,291.7319541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.337334547,5.091683132,-0.774960737,0.774960737,0.662679781,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.467961522,117.9020557,0.467961522,62.0979443,0,0.943153609,0,0,0,10,21,0% -10/25/2018 6:00,144.2298868,307.7524773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517286405,5.371294011,-0.38440561,0.38440561,0.595890921,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.655763027,130.977532,0.655763027,49.02246795,0,0.973752944,0,0,0,10,22,0% -10/25/2018 7:00,151.9801695,331.5572707,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652554356,5.786766032,-0.078131174,0.078131174,0.543514907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.805956433,143.7027246,0.805956433,36.29727544,0,0.987961907,0,0,0,10,23,0% -10/26/2018 8:00,154.5610174,3.991534808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.697598649,0.069665425,0.193407791,-0.193407791,0.497079009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908318809,155.2740475,0.908318809,24.72595249,0,0.994953248,0,0,0,10,0,0% -10/26/2018 9:00,150.5492653,34.92433291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.627580366,0.609544598,0.46209647,-0.46209647,0.451130539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95588776,162.9184714,0.95588776,17.08152865,0,0.997692604,0,0,0,10,1,0% -10/26/2018 10:00,142.0181878,56.61296346,0,0,0,0,0,0,0,0,0,0,0,0,0,2.478684975,0.988082612,0.759559568,-0.759559568,0.400261353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.945435377,160.9853635,0.945435377,19.0146365,0,0.997114312,0,0,0,10,2,0% -10/26/2018 11:00,131.3737212,71.39015941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.292903986,1.245993335,1.134992481,-1.134992481,0.336058544,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.877687789,151.3646884,0.877687789,28.63531161,0,0.993032134,0,0,0,10,3,0% -10/26/2018 12:00,119.8512035,82.55836551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.091798113,1.440915303,1.700796789,-1.700796789,0.239300309,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.757275414,139.2245895,0.757275414,40.77541045,0,0.983973824,0,0,0,10,4,0% -10/26/2018 13:00,108.0404034,92.05613983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885660764,1.606682737,2.845618055,-2.845618055,0.043524342,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.592417256,126.3287323,0.592417256,53.6712677,0,0.965600028,0,0,0,10,5,0% -10/26/2018 14:00,96.29294593,101.013995,0,0,0,0,0,0,0,0,0,0,0,0,0,1.680628953,1.763026803,7.771756956,-7.771756956,0,#DIV/0!,0,0,0.444103193,1,0.127967903,0,0.948006082,0.986768045,0.724496596,1,0,0,0.06275246,0.312029739,0.837507988,0.562004583,0.961238037,0.922476074,0,0,0,0,0,0,-0.394360736,113.2261108,0.394360736,66.77388923,0,0.92321253,0,0,0,10,6,0% -10/26/2018 15:00,84.74535175,110.2292919,33.95943921,184.6764072,17.04632965,16.78832051,0,16.78832051,16.53231991,0.256000597,40.87492684,32.1270579,8.747868938,0.514009733,8.233859204,1.479085414,1.923864077,-8.301348689,8.301348689,0.050232076,0.501961459,0.134906931,4.339070633,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.89149474,0.372398302,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.097739612,4.170879737,15.98923435,4.543278039,0,32.1270579,-0.173964062,100.0183785,0.173964062,79.98162145,0,0.762584315,15.98923435,29.04286848,34.99721091,10,7,119% -10/26/2018 16:00,74.1524828,120.4136158,211.419519,581.7878266,52.54597495,79.86682854,27.31153897,52.55528957,50.96151993,1.593769638,52.84556513,0,52.84556513,1.584455019,51.26111011,1.294204973,2.10161406,-2.244853787,2.244853787,0.914046297,0.248538901,1.49082668,47.9501107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.98615137,1.147932267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080098854,46.09147027,50.06625022,47.23940254,27.31153897,0,0.046944157,87.30930905,-0.046944157,92.69069095,0,0,50.06625022,47.23940254,80.9834944,10,8,62% -10/26/2018 17:00,64.64242919,132.3013216,385.9427643,737.1690819,70.23825872,261.7923002,190.7625845,71.02971565,68.12031607,2.90939958,95.69423414,0,95.69423414,2.117942652,93.57629149,1.128223226,2.309093666,-0.980785864,0.980785864,0.69787795,0.181991386,2.19037511,70.44999289,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.47983889,1.534442242,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586919311,67.71921286,67.0667582,69.25365511,190.7625845,0,0.258777246,75.00247941,-0.258777246,104.9975206,0.85678363,0,230.5090179,69.25365511,275.8341501,10,9,20% -10/26/2018 18:00,56.94726609,146.5863585,520.9722182,807.1892701,80.72255322,442.2356674,360.0198884,82.21577904,78.2884704,3.92730864,128.7498287,0,128.7498287,2.434082814,126.3157459,0.993917293,2.558414594,-0.356498351,0.356498351,0.591118498,0.154945984,2.570317645,82.67025086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.2538556,1.763484713,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862186384,79.46578964,77.11604198,81.22927435,360.0198884,0,0.446016692,63.51159518,-0.446016692,116.4884048,0.937896572,0,414.7774613,81.22927435,467.9403968,10,10,13% -10/26/2018 19:00,51.94870208,163.5240961,603.4100997,838.7390486,86.43923958,588.0606232,499.6790854,88.3815378,83.83277758,4.548760213,148.9102267,0,148.9102267,2.606462,146.3037647,0.906675893,2.854033883,0.078530817,-0.078530817,0.516724129,0.143251231,2.665364207,85.72727504,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.58325455,1.888372846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.931047295,82.40431757,82.51430184,84.29269041,499.6790854,0,0.595750354,53.43385834,-0.595750354,126.5661417,0.966072228,0,565.2403891,84.29269041,620.4082691,10,11,10% -10/26/2018 20:00,50.48711118,182.2354448,626.5732016,846.5098358,87.9798093,680.6856779,590.635411,90.0502669,85.32689344,4.723373459,154.5728428,0,154.5728428,2.652915861,151.9199269,0.88116632,3.180608526,0.458841927,-0.458841927,0.451687099,0.140414255,2.497143852,80.31673017,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,82.01945554,1.922028511,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.80917222,77.20349603,83.82862776,79.12552455,590.635411,0,0.697730122,45.75482613,-0.697730122,134.2451739,0.978339055,0,661.6703175,79.12552455,713.4563908,10,12,8% -10/26/2018 21:00,52.86480173,200.6726275,588.6652273,833.5632891,85.44486166,708.306249,621.000258,87.30599096,82.86838382,4.437607137,145.3051775,0,145.3051775,2.576477837,142.7286997,0.922664849,3.502398068,0.860650174,-0.860650174,0.382973842,0.145150177,2.096926009,67.44434858,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.65624258,1.866649422,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.519215755,64.83007322,81.17545833,66.69672265,621.000258,0,0.744994731,41.84135367,-0.744994731,138.1586463,0.982885431,0,691.5475648,66.69672265,735.1992358,10,13,6% -10/26/2018 22:00,58.60509594,216.9887827,492.6288926,794.6745219,78.65614234,663.5546424,583.5566283,79.99801412,76.28436944,3.71364468,121.8153514,0,121.8153514,2.371772902,119.4435785,1.022851883,3.787168698,1.374063035,-1.374063035,0.295175071,0.159666117,1.5140965,48.69854812,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.32743752,1.718341394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.09695776,46.81089679,74.42439528,48.52923819,583.5566283,0,0.734334136,42.74901864,-0.734334136,137.2509814,0.981911105,0,647.4251289,48.52923819,679.1865447,10,14,5% -10/26/2018 23:00,66.81808227,230.6331291,346.4331408,710.4092145,66.77926387,540.8835718,473.5063898,67.37718202,64.76562267,2.611559349,86.01036704,0,86.01036704,2.013641195,83.99672585,1.166195535,4.025307466,2.203071027,-2.203071027,0.153406355,0.192762343,0.826813761,26.59317271,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.25517999,1.458876191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.599023755,25.56236913,62.85420375,27.02124532,473.5063898,0,0.66652625,48.20047806,-0.66652625,131.7995219,0.9749842,0,524.5154523,27.02124532,542.2003169,10,15,3% -10/26/2018 0:00,76.65870329,242.0264613,165.6875469,517.337692,46.31130058,328.8411965,282.6773298,46.16386671,44.914844,1.249022715,41.56932059,0,41.56932059,1.396456583,40.17286401,1.337946773,4.224158626,4.175953717,-4.175953717,0,0.279509845,0.349114146,11.228711,0.155388609,1,0.235040244,0,0.934046292,0.972808255,0.724496596,1,43.42300138,1.011728041,0.024759897,0.312029739,0.932184977,0.656681573,0.961238037,0.922476074,0.244202435,10.79346412,43.66720382,11.80519216,238.7524926,0,0.546407761,56.87908234,-0.546407761,123.1209177,0.958493247,0,272.5098557,11.80519216,280.2361179,10,16,3% -10/26/2018 1:00,87.37281746,251.8918026,7.796018034,54.80022909,5.284144351,26.25684406,21.07326648,5.18357758,5.124807903,0.058769677,2.04957128,0,2.04957128,0.159336449,1.890234831,1.524943341,4.396341313,21.78166578,-21.78166578,0,0.677800427,0.039834112,1.281201976,0.761605664,1,0.045877956,0,0.956939821,0.995701784,0.724496596,1,4.951489224,0.115438715,0.095626311,0.312029739,0.764845397,0.489341993,0.961238037,0.922476074,0.027850695,1.231540072,4.979339919,1.346978786,5.023747365,0,0.384547051,67.3843765,-0.384547051,112.6156235,0.919976899,0,9.601071442,1.346978786,10.48264212,10,17,9% -10/26/2018 2:00,99.14410349,260.9531926,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73039104,4.554492405,-6.099406673,6.099406673,0.426786338,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.182188033,79.50276746,-0.182188033,100.4972325,0.775558264,0,0,0,0,10,18,0% -10/26/2018 3:00,110.9474802,269.9250425,0,0,0,0,0,0,0,0,0,0,0,0,0,1.936398827,4.711080725,-2.455872763,2.455872763,0.950132667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.035656344,92.04339116,0.035656344,87.95660884,0,0,0,0,0,10,19,0% -10/26/2018 4:00,122.7470406,279.6513797,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142340006,4.880837334,-1.351245491,1.351245491,0.761230278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.258315903,104.9701573,0.258315903,75.02984275,0,0.856438553,0,0,0,10,20,0% -10/26/2018 5:00,134.1618115,291.3988341,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341565341,5.085869091,-0.772399344,0.772399344,0.662241757,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.470623633,118.0747855,0.470623633,61.92521449,0,0.943757992,0,0,0,10,21,0% -10/26/2018 6:00,144.5063028,307.4109007,0,0,0,0,0,0,0,0,0,0,0,0,0,2.522110774,5.365332374,-0.384097745,0.384097745,0.595838272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6581203,131.1566733,0.6581203,48.84332671,0,0.974026048,0,0,0,10,22,0% -10/26/2018 7:00,152.3027496,331.3243366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.65818444,5.782700565,-0.079184031,0.079184031,0.543694956,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808039511,143.9048262,0.808039511,36.09517377,0,0.988121838,0,0,0,10,23,0% -10/27/2018 8:00,154.8985169,4.093682645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.703489126,0.071448241,0.191241703,-0.191241703,0.497449432,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.910177191,155.5298495,0.910177191,24.47015048,0,0.995065642,0,0,0,10,0,0% -10/27/2018 9:00,150.8383415,35.29062513,0,0,0,0,0,0,0,0,0,0,0,0,0,2.632625697,0.615937604,0.458707051,-0.458707051,0.451710164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95758639,163.2529881,0.95758639,16.74701189,0,0.99778539,0,0,0,10,1,0% -10/27/2018 10:00,142.2514474,57.01601087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.482756122,0.995117116,0.754447183,-0.754447183,0.401135623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.947050161,161.2714071,0.947050161,18.72859288,0,0.997204486,0,0,0,10,2,0% -10/27/2018 11:00,131.5725733,71.75803105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.296374609,1.252413907,1.126882975,-1.126882975,0.337445351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.879300359,151.558081,0.879300359,28.44191903,0,0.993136609,0,0,0,10,3,0% -10/27/2018 12:00,120.0341646,82.88871929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094991387,1.446681064,1.686089366,-1.686089366,0.241815426,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.758967488,139.3732583,0.758967488,40.62674171,0,0.984121025,0,0,0,10,4,0% -10/27/2018 13:00,108.2204981,92.35908542,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88880401,1.611970135,2.809461752,-2.809461752,0.049707434,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.594265,126.4602533,0.594265,53.53974668,0,0.965862452,0,0,0,10,5,0% -10/27/2018 14:00,96.48006167,101.2989853,0,0,0,0,0,0,0,0,0,0,0,0,0,1.683894739,1.768000823,7.522843757,-7.522843757,0,#DIV/0!,0,0,0.430630386,1,0.132153705,0,0.947508665,0.986270628,0.724496596,1,0,0,0.061173093,0.312029739,0.841215971,0.565712567,0.961238037,0.922476074,0,0,0,0,0,0,-0.396429495,113.3551579,0.396429495,66.6448421,0,0.923874168,0,0,0,10,6,0% -10/27/2018 15:00,84.94313043,110.5024485,31.50347278,174.4656623,16.12528701,15.8765366,0,15.8765366,15.63905011,0.237486485,38.86960208,30.74498347,8.12461861,0.486236899,7.63838171,1.482537303,1.928631558,-8.592921043,8.592921043,0.000370267,0.511857443,0.121602149,3.911143113,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,15.03284983,0.352276978,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.088100343,3.759539528,15.12095017,4.111816506,0,30.74498347,-0.176223694,100.1498774,0.176223694,79.85012261,0,0.766269709,15.12095017,27.67076603,33.23091312,10,7,120% -10/27/2018 16:00,74.37799048,120.6759607,207.3254,576.8479435,51.98613912,77.54514339,25.56367173,51.98147165,50.41856521,1.56290644,51.83601746,0,51.83601746,1.567573903,50.26844355,1.298140825,2.106192842,-2.266316537,2.266316537,0.917716643,0.2507466,1.466551562,47.16933947,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.46424265,1.135701956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062511614,45.34096327,49.52675426,46.47666522,25.56367173,0,0.044316136,87.46004062,-0.044316136,92.53995938,0,0,49.52675426,46.47666522,79.94480212,10,8,61% -10/27/2018 17:00,64.89938919,132.5452032,381.3571657,734.4608474,69.79220775,258.4593579,187.8968113,70.56254658,67.68771518,2.874831401,94.5689526,0,94.5689526,2.104492569,92.46446003,1.132708024,2.313350203,-0.984206199,0.984206199,0.698462862,0.183010086,2.166608635,69.68558138,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.06400646,1.524697703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.569700581,66.98443144,66.63370704,68.50912914,187.8968113,0,0.255829582,75.17725269,-0.255829582,104.8227473,0.854557394,0,227.2023165,68.50912914,272.0401714,10,9,20% -10/27/2018 18:00,57.23958881,146.7899026,516.0686064,805.2854344,80.30668383,438.3284951,356.553011,81.77548416,77.88514102,3.890343143,127.5483513,0,127.5483513,2.421542818,125.1268085,0.999019287,2.56196711,-0.355136078,0.355136078,0.590885536,0.155612418,2.546419541,81.90160569,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.86616005,1.754399528,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.844872289,78.72693867,76.71103234,80.48133819,356.553011,0,0.442766,63.71950354,-0.442766,116.2804965,0.937073533,0,410.8274221,80.48133819,463.5008483,10,10,13% -10/27/2018 19:00,52.27221945,163.6502429,598.2845221,837.1406329,86.02929293,583.7253329,495.7800191,87.94531377,83.43519233,4.510121444,147.6551097,0,147.6551097,2.594100596,145.0610091,0.912322337,2.85623556,0.082291256,-0.082291256,0.516081056,0.143793279,2.641421843,84.95720629,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.20108048,1.879417051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.913701133,81.66409819,82.11478161,83.54351524,495.7800191,0,0.592230265,53.68456516,-0.592230265,126.3154348,0.965573379,0,560.8267701,83.54351524,615.5043299,10,11,10% -10/27/2018 20:00,50.8252431,182.2509865,621.3171353,844.9600506,87.56616289,676.005154,586.395683,89.60947101,84.92572,4.683751011,153.2859757,0,153.2859757,2.640442896,150.6455328,0.887067835,3.180879779,0.464706477,-0.464706477,0.450684202,0.14093634,2.473501835,79.55632161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.63383237,1.91299189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.792043659,76.4725624,83.42587603,78.38555429,586.395683,0,0.693992198,46.05303725,-0.693992198,133.9469628,0.977953081,0,656.8933407,78.38555429,708.1951182,10,12,8% -10/27/2018 21:00,53.19464444,200.5792128,583.3763571,831.8431662,85.02041227,703.3380777,616.4836071,86.85447055,82.45673315,4.397737399,144.010031,0,144.010031,2.563679122,141.4463519,0.92842169,3.500767675,0.869370141,-0.869370141,0.38148264,0.145738529,2.074080482,66.7095579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.2605483,1.857376797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.502664249,64.12376448,80.76321255,65.98114127,616.4836071,0,0.741105574,42.17432115,-0.741105574,137.8256789,0.982533229,0,686.4788417,65.98114127,729.662179,10,13,6% -10/27/2018 22:00,58.91065185,216.8198238,487.4151438,792.4622882,78.20811803,658.3158323,578.7916364,79.52419595,75.84985472,3.674341239,120.537708,0,120.537708,2.358263316,118.1794447,1.028184839,3.784219809,1.388017395,-1.388017395,0.292788735,0.160454838,1.49275332,48.01207809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.90976544,1.708553745,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.081494699,46.15103569,73.99126014,47.85958944,578.7916364,0,0.730371205,43.08247749,-0.730371205,136.9175225,0.98154166,0,642.0993639,47.85958944,673.422508,10,14,5% -10/27/2018 23:00,67.09488855,230.4229213,341.4317085,706.979502,66.27095312,535.2724162,468.4259204,66.84649581,64.27263937,2.57385644,84.78238442,0,84.78238442,1.99831375,82.78407067,1.171026716,4.021638649,2.229924847,-2.229924847,0.148814082,0.194097243,0.808260214,25.99642685,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.78130569,1.44777151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.585581773,24.98875431,62.36688746,26.43652582,468.4259204,0,0.662573553,48.50355685,-0.662573553,131.4964432,0.97453668,0,518.8651287,26.43652582,536.1673062,10,15,3% -10/27/2018 0:00,76.9092582,241.7949563,161.2096248,510.4160029,45.60350164,322.3731958,276.9295418,45.44365405,44.22838781,1.215266247,40.46225378,0,40.46225378,1.375113833,39.08713995,1.342319781,4.220118102,4.256371431,-4.256371431,0,0.282883244,0.343778458,11.05709695,0.16508638,1,0.230756902,0,0.934653194,0.973415157,0.724496596,1,42.76956241,0.996265291,0.026193289,0.312029739,0.928406189,0.652902784,0.961238037,0.922476074,0.240089596,10.62850217,43.00965201,11.62476746,231.2122463,0,0.542556542,57.14215606,-0.542556542,122.8578439,0.957843706,0,264.474847,11.62476746,272.0830248,10,16,3% -10/27/2018 1:00,87.59147815,251.6463742,6.422798631,46.42721017,4.47172961,22.07717751,17.69186928,4.385308232,4.336890463,0.048417769,1.692121035,0,1.692121035,0.134839147,1.557281889,1.52875969,4.39205778,23.76494459,-23.76494459,0,0.69622759,0.033709787,1.084222616,0.779438906,1,0.042053976,0,0.957317342,0.996079305,0.724496596,1,4.18885818,0.097690503,0.097255003,0.312029739,0.761470303,0.485966899,0.961238037,0.922476074,0.023620615,1.042196019,4.212478795,1.139886522,3.902138042,0,0.381066819,67.60022047,-0.381066819,112.3997795,0.918789416,0,7.797721926,1.139886522,8.543754857,10,17,10% -10/27/2018 2:00,99.36402221,260.6935337,0,0,0,0,0,0,0,0,0,0,0,0,0,1.734229346,4.549960502,-5.958828281,5.958828281,0.450826659,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.178708069,79.7054825,-0.178708069,100.2945175,0.770214088,0,0,0,0,10,18,0% -10/27/2018 3:00,111.1626831,269.6463795,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940154825,4.706217138,-2.432766639,2.432766639,0.946181287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.038858969,92.22701566,0.038858969,87.77298434,0,0,0,0,0,10,19,0% -10/27/2018 4:00,122.9668587,279.3466609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.146176556,4.875518987,-1.343956017,1.343956017,0.759983704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.261211576,105.1419649,0.261211576,74.85803507,0,0.858584287,0,0,0,10,20,0% -10/27/2018 5:00,134.3987372,291.0635852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.345700475,5.080017894,-0.769974036,0.769974036,0.661827005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473203845,118.2424668,0.473203845,61.75753317,0,0.944337291,0,0,0,10,21,0% -10/27/2018 6:00,144.7772193,307.0642316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.526839159,5.359281856,-0.383860937,0.383860937,0.595797776,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.660398242,131.330252,0.660398242,48.66974796,0,0.974288109,0,0,0,10,22,0% -10/27/2018 7:00,152.6206823,331.0829037,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663733413,5.778486767,-0.080276076,0.080276076,0.543881707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810049164,144.1007352,0.810049164,35.89926484,0,0.988275351,0,0,0,10,23,0% -10/28/2018 8:00,155.2328447,4.190511653,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709324248,0.073138226,0.189056258,-0.189056258,0.497823165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911970989,155.7791646,0.911970989,24.22083542,0,0.995173695,0,0,0,10,0,0% -10/28/2018 9:00,151.1249787,35.65465105,0,0,0,0,0,0,0,0,0,0,0,0,0,2.637628461,0.622291055,0.455314868,-0.455314868,0.452290261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9592316,163.5832919,0.9592316,16.41670813,0,0.997874945,0,0,0,10,1,0% -10/28/2018 10:00,142.4830512,57.41584807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.486798372,1.002095592,0.749352338,-0.749352338,0.402006893,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.948624245,161.5543546,0.948624245,18.4456454,0,0.997292091,0,0,0,10,2,0% -10/28/2018 11:00,131.7705642,72.12207554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.299830203,1.258767682,1.118828388,-1.118828388,0.338822767,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.880885625,151.7493811,0.880885625,28.25061892,0,0.993238942,0,0,0,10,3,0% -10/28/2018 12:00,120.2168624,83.21505639,0,0,0,0,0,0,0,0,0,0,0,0,0,2.098180066,1.452376721,1.671541123,-1.671541123,0.244303322,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.760645411,139.521129,0.760645411,40.47887103,0,0.984266349,0,0,0,10,4,0% -10/28/2018 13:00,108.4007177,92.65788929,0,0,0,0,0,0,0,0,0,0,0,0,0,1.891949436,1.617185246,2.773987665,-2.773987665,0.05577386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.59611059,126.5918441,0.59611059,53.40815592,0,0.966122946,0,0,0,10,5,0% -10/28/2018 14:00,96.66750062,101.5796124,0,0,0,0,0,0,0,0,0,0,0,0,0,1.687166165,1.772898689,7.287664437,-7.287664437,0,#DIV/0!,0,0,0.417286882,1,0.136366554,0,0.947003992,0.985765955,0.724496596,1,0,0,0.059592099,0.312029739,0.844947632,0.569444227,0.961238037,0.922476074,0,0,0,0,0,0,-0.398506117,113.4848218,0.398506117,66.51517822,0,0.924531411,0,0,0,10,6,0% -10/28/2018 15:00,85.14094502,110.7708555,29.11301095,164.234693,15.2015297,14.96261367,0,14.96261367,14.7431475,0.219466174,36.83203396,29.31486519,7.517168771,0.458382208,7.058786563,1.485989819,1.933316144,-8.908642456,8.908642456,0,0.522155875,0.114595552,3.685786874,1,0.050892361,0,0.111782622,0.961238037,1,0.456805041,0.732308445,14.17167416,0.329250177,0.115824807,0.008916073,0.724496596,0.448993192,0.99920431,0.960442347,0.083024087,3.547256703,14.25469824,3.87650688,0,27.82296248,-0.178493744,100.2820369,0.178493744,79.71796308,0,0.769878137,14.25469824,25.2967974,30.81094621,10,7,116% -10/28/2018 16:00,74.60358526,120.9329851,203.2331389,571.8086714,51.42034445,75.22866042,23.82677182,51.40188859,49.86983135,1.532057247,50.82674059,0,50.82674059,1.550513106,49.27622748,1.302078196,2.110678765,-2.288591062,2.288591062,0.921525811,0.253011614,1.442249112,46.38768914,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.93677878,1.123341467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.044904572,44.58961124,48.98168335,45.71295271,23.82677182,0,0.041669133,87.61184308,-0.041669133,92.38815692,0,0,48.98168335,45.71295271,78.89989664,10,8,61% -10/28/2018 17:00,65.15593739,132.7830897,376.7718744,731.7099478,69.34388613,255.1148153,185.0216377,70.09317765,67.25291211,2.840265538,93.44367707,0,93.44367707,2.090974019,91.35270306,1.137185635,2.317502107,-0.987822804,0.987822804,0.699081338,0.184047406,2.142879909,68.92238397,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64605721,1.514903558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.552509199,66.25081707,66.19856641,67.76572062,185.0216377,0,0.252861996,75.35306479,-0.252861996,104.6469352,0.852263682,0,223.8857886,67.76572062,268.2370974,10,9,20% -10/28/2018 18:00,57.53063585,146.9870181,511.1718642,803.3585003,79.88999953,434.4090417,353.074591,81.33445072,77.48102129,3.853429432,126.3485149,0,126.3485149,2.408978249,123.9395366,1.004099016,2.565407424,-0.353866356,0.353866356,0.590668401,0.156287944,2.522616729,81.13602544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.47770479,1.745296541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.827627233,77.99103382,76.30533203,79.73633036,353.074591,0,0.43949817,63.92813319,-0.43949817,116.0718668,0.936233884,0,406.8657275,79.73633036,459.051561,10,10,13% -10/28/2018 19:00,52.59333039,163.7704743,593.1761389,835.5277567,85.61950392,579.3838876,491.8745153,87.50937227,83.03775997,4.471612294,146.4041664,0,146.4041664,2.581743946,143.8224224,0.91792678,2.858333995,0.085989376,-0.085989376,0.51544864,0.144340776,2.617633361,84.19208696,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.81905338,1.8704647,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.89646646,80.92863638,81.71551984,82.79910108,491.8745153,0,0.588699192,53.93524684,-0.588699192,126.0647532,0.96506698,0,556.4073731,82.79910108,610.5977288,10,11,10% -10/28/2018 20:00,51.15993244,182.2624695,616.0909848,843.4004293,87.1535378,671.3290348,582.1591436,89.16989115,84.52553707,4.644354082,152.0063929,0,152.0063929,2.628000727,149.3783921,0.892909266,3.181080195,0.470520238,-0.470520238,0.44968999,0.141462122,2.450073317,78.80277994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,81.24916132,1.903977581,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.775069778,75.74822949,83.0242311,77.65220707,582.1591436,0,0.690252368,46.34991069,-0.690252368,133.6500893,0.977562726,0,652.1213104,77.65220707,702.9431269,10,12,8% -10/28/2018 21:00,53.52045144,200.4840179,578.1314843,830.1159522,84.59781907,698.3880497,611.9829677,86.40508202,82.04688269,4.358199332,142.7256081,0,142.7256081,2.550936378,140.1746717,0.934108095,3.499106211,0.878047281,-0.878047281,0.379998761,0.146329721,2.051506276,65.98349383,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.86658445,1.848144722,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.486309313,63.42584407,80.35289376,65.2739888,611.9829677,0,0.737225885,42.50436335,-0.737225885,137.4956366,0.982178182,0,681.4292122,65.2739888,724.1497324,10,13,6% -10/28/2018 22:00,59.21196159,216.650622,482.2598867,790.2441401,77.76273207,653.1109303,574.0575528,79.05337751,75.41789878,3.635478733,119.2743262,0,119.2743262,2.344833286,116.9294929,1.033443686,3.78126668,1.401951025,-1.401951025,0.290405944,0.161246527,1.471734575,47.33604298,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.49455297,1.698823733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.06626669,45.50120503,73.56081966,47.20002876,574.0575528,0,0.726430635,43.4120097,-0.726430635,136.5879903,0.981170304,0,636.8090431,47.20002876,667.7005179,10,14,5% -10/28/2018 23:00,67.36737034,230.2131611,336.5031445,703.5409125,65.76581019,529.7114134,463.3919821,66.3194312,63.78272836,2.536702842,83.5721651,0,83.5721651,1.983081827,81.58908327,1.175782421,4.017977642,2.25688417,-2.25688417,0.144203766,0.195438917,0.790080593,25.41170775,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.3103846,1.436736033,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.5724107,24.42670007,61.8827953,25.86343611,463.3919821,0,0.658656766,48.80248958,-0.658656766,131.1975104,0.974087928,0,513.2673309,25.86343611,530.1944326,10,15,3% -10/28/2018 0:00,77.15538394,241.5641093,156.822669,503.466852,44.89807267,315.9715829,271.2451572,44.72642564,43.54423012,1.182195521,39.37731428,0,39.37731428,1.353842547,38.02347173,1.346615485,4.216089062,4.338255387,-4.338255387,0,0.286298358,0.338460637,10.88605753,0.174734786,1,0.226550248,0,0.935245379,0.974007342,0.724496596,1,42.11747202,0.980854317,0.027607299,0.312029739,0.924694322,0.649190918,0.961238037,0.922476074,0.236019076,10.46409257,42.35349109,11.44494689,223.8491927,0,0.538754748,57.40109065,-0.538754748,122.5989094,0.957193393,0,256.6204595,11.44494689,264.1109483,10,16,3% -10/28/2018 1:00,87.80461763,251.4015869,5.220537816,38.86615133,3.731681446,18.33685494,14.67834284,3.658512101,3.619157482,0.039354619,1.378303799,0,1.378303799,0.112523964,1.265779835,1.532479676,4.387785435,26.07773652,-26.07773652,0,0.714807857,0.028130991,0.904789371,0.797135632,1,0.038328107,0,0.957681825,0.996443788,0.724496596,1,3.494460302,0.081523229,0.098851096,0.312029739,0.758183427,0.482680023,0.961238037,0.922476074,0.019756215,0.869717958,3.514216517,0.951241187,2.977712739,0,0.377663914,67.81094501,-0.377663914,112.189055,0.917607155,0,6.246587032,0.951241187,6.869155365,10,17,10% -10/28/2018 2:00,99.5791954,260.434356,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737984826,4.545436997,-5.827450342,5.827450342,0.47329361,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.175299171,79.90393154,-0.175299171,100.0960685,0.764773323,0,0,0,0,10,18,0% -10/28/2018 3:00,111.3728836,269.367859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.943823517,4.701356039,-2.410653321,2.410653321,0.942399687,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.041983267,92.40617123,0.041983267,87.59382877,0,0,0,0,0,10,19,0% -10/28/2018 4:00,123.18137,279.0413959,0,0,0,0,0,0,0,0,0,0,0,0,0,2.149920483,4.870191107,-1.336971987,1.336971987,0.758789365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264024875,105.3090188,0.264024875,74.6909812,0,0.860623905,0,0,0,10,20,0% -10/28/2018 5:00,134.6300619,290.7263235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349737853,5.074131567,-0.767684522,0.767684522,0.661435475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47570113,118.4050104,0.47570113,61.59498964,0,0.944891988,0,0,0,10,21,0% -10/28/2018 6:00,145.0424944,306.7125359,0,0,0,0,0,0,0,0,0,0,0,0,0,2.531469082,5.353143609,-0.383695543,0.383695543,0.595769492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662596233,131.4981782,0.662596233,48.50182184,0,0.974539263,0,0,0,10,22,0% -10/28/2018 7:00,152.933817,330.8327791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.669198644,5.77412127,-0.08140771,0.08140771,0.544075228,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811985168,144.2903437,0.811985168,35.70965634,0,0.988422521,0,0,0,10,23,0% -10/29/2018 8:00,155.5639107,4.281647579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715102439,0.074728848,0.186851164,-0.186851164,0.498200259,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913700328,156.0218255,0.913700328,23.97817454,0,0.995277463,0,0,0,10,0,0% -10/29/2018 9:00,151.409151,36.01609223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642588203,0.628599393,0.451919782,-0.451919782,0.452870855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.960823797,163.9092263,0.960823797,16.09077371,0,0.997961322,0,0,0,10,1,0% -10/29/2018 10:00,142.7130076,57.81222185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490811868,1.009013619,0.744275072,-0.744275072,0.402875156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.95015823,161.8341842,0.95015823,18.16581581,0,0.997377186,0,0,0,10,2,0% -10/29/2018 11:00,131.9677092,72.48210326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.303271032,1.265051351,1.110828878,-1.110828878,0.340190764,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.882444283,151.9386363,0.882444283,28.0613637,0,0.993339199,0,0,0,10,3,0% -10/29/2018 12:00,120.3993055,83.53722618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101364298,1.457999645,1.657151554,-1.657151554,0.246764084,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.762309862,139.6682556,0.762309862,40.33174443,0,0.984409874,0,0,0,10,4,0% -10/29/2018 13:00,108.5810577,92.95242284,0,0,0,0,0,0,0,0,0,0,0,0,0,1.895096962,1.622325826,2.739183314,-2.739183314,0.061725755,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.597954585,126.7235456,0.597954585,53.27645439,0,0.966381609,0,0,0,10,5,0% -10/29/2018 14:00,96.85524151,101.8557611,0,0,0,0,0,0,0,0,0,0,0,0,0,1.690442862,1.777718394,7.065165195,-7.065165195,0,#DIV/0!,0,0,0.404074006,1,0.140605534,0,0.946492104,0.985254067,0.724496596,1,0,0,0.058009867,0.312029739,0.848702099,0.573198695,0.961238037,0.922476074,0,0,0,0,0,0,-0.40059094,113.6151262,0.40059094,66.3848738,0,0.925184396,0,0,0,10,6,0% -10/29/2018 15:00,85.33873006,111.0344089,26.79245574,154.0089409,14.27695061,14.04842072,0,14.04842072,13.84644787,0.201972849,34.76743384,27.84079002,6.926643824,0.430502737,6.496141087,1.489441819,1.937916019,-9.251491717,9.251491717,0,0.532872042,0.107625684,3.461611967,1,0.100923133,0,0.107672641,0.961238037,1,0.464882911,0.740386315,13.30973237,0.30676835,0.115824807,0.018116016,0.724496596,0.448993192,0.998363169,0.959601206,0.077974442,3.33530877,13.38770681,3.64207712,0,25.03101028,-0.180773855,100.4148379,0.180773855,79.58516207,0,0.773411331,13.38770681,23.0013441,28.4416265,10,7,112% -10/29/2018 16:00,74.82920297,121.1845998,199.1443084,566.6689406,50.84858388,72.91860958,22.1020642,50.81654538,49.31531147,1.501233916,49.8181156,0,49.8181156,1.533272415,48.28484318,1.306015969,2.115070269,-2.311712243,2.311712243,0.925479766,0.255335361,1.417926568,45.6053925,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.40375318,1.110850645,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.027282971,43.83763796,48.43103615,44.94848861,22.1020642,0,0.039003486,87.76469786,-0.039003486,92.23530214,0,0,48.43103615,44.94848861,77.84892298,10,8,61% -10/29/2018 17:00,65.41198771,133.0149168,372.1886663,728.9165276,68.8933887,251.7598871,182.1381729,69.62171422,66.81599884,2.80571538,92.31884106,0,92.31884106,2.077389859,90.2414512,1.141654556,2.321548252,-0.991642658,0.991642658,0.699734572,0.185103403,2.119198139,68.16069683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.22607956,1.505061881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.535351837,65.51865441,65.7614314,67.02371629,182.1381729,0,0.249875213,75.52987192,-0.249875213,104.4701281,0.849900121,0,220.5606866,67.02371629,264.4263684,10,9,20% -10/29/2018 18:00,57.8203036,147.1776775,506.2841309,801.4089843,79.47263381,430.4789114,349.5860871,80.89282432,77.07624068,3.816583634,125.1508422,0,125.1508422,2.396393132,122.7544491,1.009154672,2.568735058,-0.35269343,0.35269343,0.590467818,0.156972397,2.498919839,80.373852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.08861428,1.736178667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.810458917,77.25840371,75.8990732,78.99458237,349.5860871,0,0.436214335,64.13741091,-0.436214335,115.8625891,0.935377449,0,402.8940154,78.99458237,454.5943897,10,10,13% -10/29/2018 19:00,52.91192444,163.8847945,588.0874148,833.9011207,85.21003104,575.0383445,487.9644589,87.07388556,82.64063422,4.433251342,145.1579992,0,145.1579992,2.569396827,142.5886024,0.923487295,2.860329258,0.089621003,-0.089621003,0.514827595,0.144893478,2.594010238,83.43228609,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.437321,1.861519255,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.879351587,80.19828689,81.31667258,82.05980615,487.9644589,0,0.585158656,54.18580089,-0.585158656,125.8141991,0.964553088,0,551.9842984,82.05980615,605.6908004,10,11,10% -10/29/2018 20:00,51.49106908,182.2698944,610.8974576,841.8318628,86.74211423,666.6598151,577.9280926,88.73172252,84.12651944,4.60520308,150.7347561,0,150.7347561,2.615594788,148.1191613,0.898688691,3.181209784,0.476278136,-0.476278136,0.448705331,0.141991284,2.42687004,78.05648279,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.8656104,1.89498952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.758259082,75.03086028,82.62386948,76.9258498,577.9280926,0,0.686512495,46.64532728,-0.686512495,133.3546727,0.977168114,0,647.3567736,76.9258498,697.7032037,10,12,8% -10/29/2018 21:00,53.84211029,200.3870232,572.9334514,828.3828398,84.17728576,693.4590613,607.5010169,85.95804438,81.63903001,4.319014365,141.4526042,0,141.4526042,2.538255747,138.9143485,0.939722101,3.497413333,0.886674477,-0.886674477,0.378523424,0.146923322,2.029214728,65.26652102,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.47454094,1.838957648,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.470159162,62.73666254,79.9447001,64.57562019,607.5010169,0,0.7333578,42.83136611,-0.7333578,137.1686339,0.981820457,0,676.4016259,64.57562019,718.6650778,10,13,6% -10/29/2018 22:00,59.50890847,216.4811577,477.1659702,788.0218541,77.32022294,647.9432204,569.3574089,78.58581158,74.98873294,3.597078639,118.0259039,0,118.0259039,2.331490003,115.6944139,1.038626387,3.778308971,1.415852337,-1.415852337,0.28802868,0.162040522,1.451050316,46.67076612,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.08202244,1.68915657,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.051281015,44.86171561,73.13330345,46.55087218,569.3574089,0,0.722514745,43.73750536,-0.722514745,136.2624946,0.98079726,0,631.5574901,46.55087218,662.0241049,10,14,5% -10/29/2018 23:00,67.63541003,230.003847,331.6501415,700.096588,65.26415,524.2043584,458.4080445,65.79631394,63.29619508,2.500118856,82.38037144,0,82.38037144,1.967954922,80.41241652,1.180460596,4.014324423,2.283926258,-2.283926258,0.139579296,0.196786136,0.772282121,24.8392477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.8427103,1.425776642,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.559515767,23.8764297,61.40222607,25.30220634,458.4080445,0,0.654778287,49.09715938,-0.654778287,130.9028406,0.973638274,0,507.7258433,25.30220634,524.2856314,10,15,3% -10/29/2018 0:00,77.39696597,241.3339411,152.5289494,496.4980171,44.19560455,309.6415661,265.6287944,44.01277166,42.86294401,1.149827649,38.31507025,0,38.31507025,1.332660542,36.98240971,1.350831887,4.212071869,4.421567705,-4.421567705,0,0.289752239,0.333165135,10.715736,0.18432529,1,0.222422199,0,0.935822779,0.974584742,0.724496596,1,41.46732364,0.965508026,0.029001023,0.312029739,0.921051098,0.645547694,0.961238037,0.922476074,0.231992859,10.30037304,41.69931649,11.26588106,216.6666898,0,0.535004744,57.65576687,-0.535004744,122.3442331,0.956542885,0,248.950297,11.26588106,256.3235908,10,16,3% -10/29/2018 1:00,88.01206716,251.1574827,4.181110862,32.12865051,3.0665997,15.0327386,12.02708921,3.005649384,2.974130404,0.03151898,1.106228031,0,1.106228031,0.092469295,1.013758736,1.536100353,4.383525014,28.80434327,-28.80434327,0,0.733441375,0.023117324,0.743532601,0.814666518,1,0.034703049,0,0.958033266,0.996795229,0.724496596,1,2.87068169,0.06699369,0.100412817,0.312029739,0.754987143,0.479483738,0.961238037,0.922476074,0.016272912,0.714711818,2.886954602,0.781705508,2.229022325,0,0.374341562,68.01637681,-0.374341562,111.9836232,0.916432144,0,4.929702309,0.781705508,5.44131293,10,17,10% -10/29/2018 2:00,99.78951684,260.1757221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.741655628,4.540922984,-5.704541415,5.704541415,0.494312274,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.171963359,80.09800742,-0.171963359,99.90199258,0.759240386,0,0,0,0,10,18,0% -10/29/2018 3:00,111.5779784,269.0895663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947403095,4.696498915,-2.389501814,2.389501814,0.938782566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.045027524,92.58075968,0.045027524,87.41924032,0,0,0,0,0,10,19,0% -10/29/2018 4:00,123.3904689,278.735695,0,0,0,0,0,0,0,0,0,0,0,0,0,2.153569948,4.864855621,-1.330289469,1.330289469,0.757646587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.266754454,105.4712289,0.266754454,74.52877114,0,0.862561705,0,0,0,10,20,0% -10/29/2018 5:00,134.8556695,290.3871792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353675448,5.068212382,-0.765530439,0.765530439,0.661067105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.478114542,118.562332,0.478114542,61.437668,0,0.945422549,0,0,0,10,21,0% -10/29/2018 6:00,145.3019883,306.355901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.535998106,5.346919156,-0.38360182,0.38360182,0.595753464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.664713733,131.6603675,0.664713733,48.33963252,0,0.974779649,0,0,0,10,22,0% -10/29/2018 7:00,153.2420014,330.5737876,0,0,0,0,0,0,0,0,0,0,0,0,0,2.674577477,5.769601014,-0.082579227,0.082579227,0.544275569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813847363,144.4735507,0.813847363,35.52644931,0,0.988563418,0,0,0,10,23,0% -10/30/2018 8:00,155.8916216,4.366711991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.720822073,0.076213502,0.184626243,-0.184626243,0.498580743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915365381,156.2576694,0.915365381,23.74233061,0,0.995377004,0,0,0,10,0,0% -10/30/2018 9:00,151.6908301,36.37462491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.64750443,0.634856969,0.448521789,-0.448521789,0.453451946,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962363416,164.2306301,0.962363416,15.76936988,0,0.998044575,0,0,0,10,1,0% -10/30/2018 10:00,142.9413215,58.20487758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.494796697,1.015866754,0.739215592,-0.739215592,0.403740378,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.951652719,162.110874,0.951652719,17.889126,0,0.997459825,0,0,0,10,2,0% -10/30/2018 11:00,132.1640192,72.83792458,0,0,0,0,0,0,0,0,0,0,0,0,0,2.306697287,1.271261604,1.102884835,-1.102884835,0.341549275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.883977004,152.1258927,0.883977004,27.87410727,0,0.993437443,0,0,0,10,3,0% -10/30/2018 12:00,120.5814972,83.85507846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.104544144,1.463547214,1.642920559,-1.642920559,0.249197727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.763961474,139.8146884,0.763961474,40.1853116,0,0.984551673,0,0,0,10,4,0% -10/30/2018 13:00,108.7615082,93.24255824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.898246417,1.627389644,2.705037512,-2.705037512,0.067565031,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.599797475,126.8553942,0.599797475,53.14460579,0,0.966638529,0,0,0,10,5,0% -10/30/2018 14:00,97.04325739,102.1273177,0,0,0,0,0,0,0,0,0,0,0,0,0,1.693724358,1.78245795,6.854404053,-6.854404053,0,#DIV/0!,0,0,0.39099344,1,0.144869555,0,0.945973068,0.984735032,0.724496596,1,0,0,0.056426841,0.312029739,0.85247835,0.576974946,0.961238037,0.922476074,0,0,0,0,0,0,-0.402684218,113.7460895,0.402684218,66.25391051,0,0.925833227,0,0,0,10,6,0% -10/30/2018 15:00,85.53641199,111.2930067,24.5463532,143.8169745,13.35372095,13.13609777,0,13.13609777,12.95105699,0.185040779,32.68185504,26.32764357,6.354211478,0.402663957,5.951547521,1.49289202,1.942429402,-9.624937376,9.624937376,0,0.544020566,0.100665989,3.237764248,1,0.149742952,0,0.103525343,0.961238037,1,0.47317197,0.748675374,12.4490486,0.28485281,0.115824807,0.027538589,0.724496596,0.448993192,0.997480565,0.958718602,0.072932166,3.122897868,12.52198077,3.407750679,0,22.3852645,-0.183063534,100.5482531,0.183063534,79.45174691,0,0.776870781,12.52198077,20.79820859,26.13399233,10,7,109% -10/30/2018 16:00,75.05477387,121.4307183,195.0605954,561.4278645,50.27086598,70.61632023,20.39085717,50.22546306,48.75501389,1.470449162,48.81055177,0,48.81055177,1.515852089,47.29469968,1.309952923,2.119365847,-2.335715631,2.335715631,0.929584587,0.257719228,1.393591715,44.82269998,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.86517384,1.098229678,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.009652453,43.08528414,47.8748263,44.18351382,20.39085717,0,0.036319639,87.91858021,-0.036319639,92.08141979,0,0,47.8748263,44.18351382,76.79205242,10,8,60% -10/30/2018 17:00,65.66744901,133.2406238,367.6094194,726.0808378,68.44082129,248.3958993,179.2476262,69.14827309,66.377078,2.771195082,91.19490305,0,91.19490305,2.063743281,89.13115976,1.146113197,2.325487584,-0.995672579,0.995672579,0.700423729,0.186178095,2.095572922,67.40082864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.80417215,1.495174982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518235448,64.78824021,65.3224076,66.28341519,179.2476262,0,0.246870069,75.70762405,-0.246870069,104.2923759,0.847464309,0,217.2283733,66.28341519,260.6095428,10,9,20% -10/30/2018 18:00,58.10848441,147.3618583,501.4076323,799.4374803,79.05472864,426.5398187,346.0890592,80.45075942,76.67093689,3.779822528,123.9558773,0,123.9558773,2.383791749,121.5720856,1.014184376,2.57194962,-0.351621477,0.351621477,0.590284504,0.157665587,2.475339769,79.61543591,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.69902086,1.727049008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.793375237,76.52938532,75.4923961,78.25643432,346.0890592,0,0.432915729,64.34725757,-0.432915729,115.6527424,0.934504081,0,398.9140343,78.25643432,450.1313054,10,10,13% -10/30/2018 19:00,53.22788818,163.9932125,583.0208795,832.2614887,84.80103936,570.6908593,484.0518265,86.6390328,82.24397514,4.395057659,143.9172264,0,143.9172264,2.557064219,141.3601622,0.929001903,2.862221508,0.093181956,-0.093181956,0.514218637,0.145451119,2.570564093,82.67817748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.05603721,1.852584322,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.862364935,79.47340901,80.91840214,81.32599333,484.0518265,0,0.581610267,54.43611989,-0.581610267,125.5638801,0.964031779,0,547.5597455,81.32599333,600.7859817,10,11,10% -10/30/2018 20:00,51.81854114,182.273268,605.7393003,840.2553009,86.33207747,662.0000691,573.7049036,88.29516551,83.7288468,4.566318711,149.471737,0,149.471737,2.603230667,146.8685064,0.904404156,3.181268665,0.481975017,-0.481975017,0.447731107,0.142523487,2.403903763,77.31780837,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.48335233,1.886031757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.741620093,74.32081833,82.22497242,76.20685009,573.7049036,0,0.682774513,46.93916445,-0.682774513,133.0608355,0.976769381,0,642.6023561,76.20685009,692.4782154,10,12,8% -10/30/2018 21:00,54.15950817,200.2882163,567.7851119,826.6450847,83.75902,688.5540631,603.0404826,85.51358052,81.23337651,4.280204007,140.1917175,0,140.1917175,2.525643491,137.666074,0.945261739,3.495688827,0.895244421,-0.895244421,0.377057877,0.147518873,2.007217066,64.55900059,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.08461137,1.829820112,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.454221931,62.05656699,79.5388333,63.8863871,603.0404826,0,0.7295035,43.15521315,-0.7295035,136.8447869,0.981460233,0,671.3990858,63.8863871,713.2114485,10,13,6% -10/30/2018 22:00,59.80137676,216.3114191,472.1362243,785.7972897,76.88083284,642.8160166,564.6942622,78.12175436,74.56259207,3.55916229,116.7931346,0,116.7931346,2.31824077,114.4748938,1.043730922,3.775346474,1.429709291,-1.429709291,0.285659001,0.162836124,1.430710352,46.01656295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.67239963,1.679557546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.03654478,44.23287063,72.70894441,45.91242818,564.6942622,0,0.718625872,44.05885392,-0.718625872,135.9411461,0.980422767,0,626.3480552,45.91242818,656.3968212,10,14,5% -10/30/2018 23:00,67.89889207,229.7949848,326.8753401,696.6498193,64.76629385,518.7550607,453.4775852,65.27747552,62.81335113,2.464124386,81.20765336,0,81.20765336,1.952942722,79.25471064,1.185059225,4.01067909,2.311026963,-2.311026963,0.134944803,0.198137595,0.754871593,24.27926528,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37858233,1.414900354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.546901899,23.33815329,60.92548423,24.75305365,453.4775852,0,0.650940505,49.38745049,-0.650940505,130.6125495,0.973188065,0,502.2444578,24.75305365,518.4448363,10,15,3% -10/30/2018 0:00,77.63389276,241.1044792,148.3306218,489.5176936,43.49671248,303.3883923,260.0850873,43.303305,42.18512612,1.118178882,37.27606294,0,37.27606294,1.311586367,35.96447657,1.35496704,4.208067004,4.506262592,-4.506262592,0,0.293241624,0.327896592,10.54628153,0.193849133,1,0.218374626,0,0.936385335,0.975147298,0.724496596,1,40.81973387,0.950239858,0.030373557,0.312029739,0.917478206,0.641974802,0.961238037,0.922476074,0.228013026,10.13748695,41.04774689,11.08772681,209.6678186,0,0.531308859,57.90606811,-0.531308859,122.0939319,0.955892779,0,241.4677008,11.08772681,248.7243963,10,16,3% -10/30/2018 1:00,88.21366509,250.9141101,3.294725392,26.21028527,2.477688549,12.15452632,9.726712191,2.427814129,2.402977098,0.024837032,0.873555768,0,0.873555768,0.074711451,0.798844316,1.539618901,4.379277362,32.06001522,-32.06001522,0,0.75201671,0.018677863,0.600744274,0.832001435,1,0.031181391,0,0.958371675,0.997133638,0.724496596,1,2.318593264,0.054128192,0.101938417,0.312029739,0.751883707,0.476380302,0.961238037,0.922476074,0.013179091,0.577458247,2.331772355,0.631586439,1.634073686,0,0.371102874,68.21634954,-0.371102874,111.7836505,0.915266471,0,3.82738521,0.631586439,4.240745903,10,17,11% -10/30/2018 2:00,99.99488443,259.9177017,0,0,0,0,0,0,0,0,0,0,0,0,0,1.745239969,4.536419679,-5.589449275,5.589449275,0.513994189,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.16870258,80.28760712,-0.16870258,99.71239288,0.753620419,0,0,0,0,10,18,0% -10/30/2018 3:00,111.7778682,268.8115946,0,0,0,0,0,0,0,0,0,0,0,0,0,1.950891831,4.691647393,-2.369282678,2.369282678,0.93532489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.047990116,92.75068763,0.047990116,87.24931237,0,0,0,0,0,10,19,0% -10/30/2018 4:00,123.5940549,278.4296792,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157123193,4.859514637,-1.323904548,1.323904548,0.756554701,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269399061,105.6285106,0.269399061,74.3714894,0,0.864401729,0,0,0,10,20,0% -10/30/2018 5:00,135.0754487,290.0462974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.357511319,5.062262873,-0.763511314,0.763511314,0.660721814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.480443226,118.7143538,0.480443226,61.28564622,0,0.945929431,0,0,0,10,21,0% -10/30/2018 6:00,145.555565,305.9944375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540423854,5.340610427,-0.383579907,0.383579907,0.595749717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666750283,131.8167428,0.666750283,48.18325716,0,0.975009406,0,0,0,10,22,0% -10/30/2018 7:00,153.5450825,330.3057757,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67986724,5.764923324,-0.083790797,0.083790797,0.54448276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81563566,144.650263,0.81563566,35.34973696,0,0.988698119,0,0,0,10,23,0% -10/31/2018 8:00,156.2158812,4.445325201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.726481471,0.077585561,0.182381448,-0.182381448,0.498964625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916966371,156.4865395,0.916966371,23.51346045,0,0.995472373,0,0,0,10,0,0% -10/31/2018 9:00,151.9699846,36.72992173,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652376596,0.641058068,0.445121036,-0.445121036,0.454033509,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963850914,164.5473372,0.963850914,15.45266276,0,0.998124757,0,0,0,10,1,0% -10/31/2018 10:00,143.167994,58.59356022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.498752879,1.022650546,0.734174291,-0.734174291,0.404602492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.953108314,162.3844015,0.953108314,17.61559853,0,0.997540065,0,0,0,10,2,0% -10/31/2018 11:00,132.3595001,73.18935061,0,0,0,0,0,0,0,0,0,0,0,0,0,2.310109072,1.277395146,1.094996909,-1.094996909,0.34289819,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.885484427,152.3111941,0.885484427,27.68880593,0,0.993533733,0,0,0,10,3,0% -10/31/2018 12:00,120.7634355,84.16846408,0,0,0,0,0,0,0,0,0,0,0,0,0,2.107719565,1.469016825,1.628848464,-1.628848464,0.251604197,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.765600819,139.9604732,0.765600819,40.03952681,0,0.984691815,0,0,0,10,4,0% -10/31/2018 13:00,108.942053,93.52816908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.901397519,1.632374494,2.671540365,-2.671540365,0.07329338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.601639664,126.9874204,0.601639664,53.01257956,0,0.966893777,0,0,0,10,5,0% -10/31/2018 14:00,97.2315149,102.3941702,0,0,0,0,0,0,0,0,0,0,0,0,0,1.697010072,1.787115405,6.654536932,-6.654536932,0,#DIV/0!,0,0,0.378047237,1,0.149157337,0,0.945446979,0.984208943,0.724496596,1,0,0,0.054843523,0.312029739,0.856275196,0.580771792,0.961238037,0.922476074,0,0,0,0,0,0,-0.404786099,113.8777237,0.404786099,66.12227633,0,0.926477971,0,0,0,10,6,0% -10/31/2018 15:00,85.73390818,111.5465498,22.37936316,133.6906039,12.4343103,12.22807506,0,12.22807506,12.05936996,0.168705093,30.58225053,24.7811745,5.801076031,0.374940333,5.426135697,1.496338978,1.946854563,-10.0330402,10.0330402,0,0.555615019,0.093735083,3.014842491,1,0.197370337,0,0.099342588,0.961238037,1,0.481672001,0.757175405,11.59192511,0.263507768,0.115824807,0.037185067,0.724496596,0.448993192,0.996554942,0.957792979,0.067910749,2.910659907,11.65983586,3.174167675,0,19.89010573,-0.185362125,100.6822458,0.185362125,79.31775417,0,0.780257733,11.65983586,18.69357647,23.89440779,10,7,105% -10/31/2018 16:00,75.28022201,121.6712582,190.9838105,556.0847735,49.6872175,68.32322671,18.69454551,49.6286812,48.18896457,1.439716636,47.80448893,0,47.80448893,1.498252934,46.306236,1.313887736,2.12356406,-2.360637275,2.360637275,0.933846439,0.260164552,1.369252945,44.0398815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.3210657,1.08547915,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.992019098,42.33280923,47.31308479,43.41828838,18.69454551,0,0.033618158,88.07345845,-0.033618158,91.92654155,0,0,47.31308479,43.41828838,75.72948618,10,8,60% -10/31/2018 17:00,65.92222474,133.4601556,363.0361206,723.2032489,67.9863018,245.0242989,176.3513154,68.67298358,65.93626396,2.736719624,90.07234837,0,90.07234837,2.050037842,88.02231053,1.150559872,2.329319136,-0.999919146,0.999919146,0.701149935,0.187271453,2.072014271,66.64310146,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.38044492,1.485245438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.501167286,64.05988402,64.88161221,65.54512946,176.3513154,0,0.243847515,75.88626429,-0.243847515,104.1137357,0.844953826,0,213.8903309,65.54512946,256.7883072,10,9,20% -10/31/2018 18:00,58.39506628,147.5395439,496.544685,797.4446655,78.63643498,422.5935961,342.5851762,80.00841991,76.26525633,3.743163577,122.7641863,0,122.7641863,2.371178652,120.3930077,1.019186174,2.575050818,-0.350654563,0.350654563,0.590119152,0.158367288,2.451887694,78.86113654,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.30906528,1.717910862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.776384288,75.80432407,75.08544956,77.52223493,342.5851762,0,0.429603697,64.55758763,-0.429603697,115.4424124,0.933613664,0,394.9276513,77.52223493,445.6644036,10,10,13% -10/31/2018 19:00,53.54110524,164.0957437,577.9791283,830.609691,84.39270069,566.3436907,480.1386905,86.2050002,81.84794939,4.357050809,142.6824826,0,142.6824826,2.544751302,140.1377313,0.934468572,2.864011016,0.096668078,-0.096668078,0.513622475,0.146013405,2.547306679,81.93013909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.67536219,1.843663655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.845515017,78.75436606,80.52087721,80.59802972,480.1386905,0,0.578055729,54.68609114,-0.578055729,125.3139089,0.963503149,0,543.1360177,80.59802972,595.8858162,10,11,10% -10/31/2018 20:00,52.14223518,182.2726043,600.6192951,838.6717529,85.92361769,657.3524498,569.4920243,87.86042554,83.33270359,4.527721949,148.2180159,0,148.2180159,2.590914098,145.6271018,0.910053683,3.181257081,0.487605678,-0.487605678,0.446768208,0.143058371,2.381186232,76.5871345,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,80.1025644,1.877108444,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.725161319,73.61846681,81.82772572,75.49557526,569.4920243,0,0.679040426,47.23129603,-0.679040426,132.768704,0.976366681,0,637.8607636,75.49557526,687.2711076,10,12,8% -10/31/2018 21:00,54.47253229,200.1875933,562.6893219,824.9040041,83.34323293,683.6760562,598.6041395,85.07191674,80.83012695,4.241789789,138.9436467,0,138.9436467,2.513105977,136.4305407,0.95072504,3.493932625,0.903749653,-0.903749653,0.375603397,0.148115896,1.985524362,63.86128867,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.69699255,1.820736725,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.438505641,61.38589975,79.13549819,63.20663647,598.6041395,0,0.725665213,43.47578616,-0.725665213,136.5242138,0.981097703,0,666.4246445,63.20663647,707.7921239,10,13,6% -10/31/2018 22:00,60.08925226,216.1414024,467.173448,783.5723849,76.44480684,637.7326528,560.0711881,77.66146465,74.13971386,3.521750786,115.5767042,0,115.5767042,2.305092978,113.2716112,1.048755297,3.772379121,1.443509449,-1.443509449,0.283299035,0.163632602,1.41072419,45.3737393,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.26591301,1.670032015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022064874,43.61496409,72.28797788,45.2849961,560.0711881,0,0.714766369,44.3759445,-0.714766369,135.6240555,0.980047072,0,621.1841062,45.2849961,650.8222304,10,14,5% -10/31/2018 23:00,68.15770369,229.5865876,322.1813144,693.2040359,64.27256813,513.3673286,448.6040768,64.76325189,62.33451306,2.428738838,80.05464484,0,80.05464484,1.93805507,78.11658977,1.18957634,4.007041873,2.338160785,-2.338160785,0.130304646,0.199491917,0.737855327,23.73196369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.91830496,1.4041143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.534573673,22.81206618,60.45287863,24.21618049,448.6040768,0,0.647145795,49.6732489,-0.647145795,130.3267511,0.972737658,0,496.8269574,24.21618049,512.6759632,10,15,3% -10/31/2018 0:00,77.86605653,240.875758,144.229711,482.5344629,42.80203351,297.2173189,254.6186601,42.59865876,41.51139428,1.087264485,36.26080251,0,36.26080251,1.290639233,34.97016327,1.359019062,4.204075065,4.592286015,-4.592286015,0,0.296762943,0.322659808,10.37784857,0.203297374,1,0.214409346,0,0.936933001,0.975694964,0.724496596,1,40.17534003,0.935063731,0.031724005,0.312029739,0.913977283,0.638473879,0.961238037,0.922476074,0.224081751,9.975582785,40.39942178,10.91064652,202.8553551,0,0.527669378,58.15188105,-0.527669378,121.8481189,0.955243696,0,234.1757209,10.91064652,241.3165208,10,16,3% -10/31/2018 1:00,88.40926053,250.6715246,2.550077855,21.09019796,1.964612384,9.684750627,7.760154991,1.924595636,1.905372072,0.019223564,0.677536212,0,0.677536212,0.059240312,0.6182959,1.543032685,4.375043445,36.00660195,-36.00660195,0,0.770412707,0.014810078,0.476343018,0.849109851,1,0.027765547,0,0.95869708,0.997459043,0.724496596,1,1.837818779,0.042919404,0.103426208,0.312029739,0.748875206,0.473371802,0.961238037,0.922476074,0.010475234,0.457879028,1.848294013,0.500798432,1.170930941,0,0.36795079,68.41070744,-0.36795079,111.5892926,0.914112263,0,2.918656346,0.500798432,3.246418904,10,17,11% -10/31/2018 2:00,100.1952011,259.6603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.748736153,4.531928424,-5.481590186,5.481590186,0.53243918,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.165518687,80.47263264,-0.165518687,99.52736736,0.747919305,0,0,0,0,10,18,0% -10/31/2018 3:00,111.9724595,268.5340453,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954288091,4.686803245,-2.349967843,2.349967843,0.932021859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.050869522,92.91586741,0.050869522,87.08413259,0,0,0,0,0,10,19,0% -10/31/2018 4:00,123.7920332,278.1234798,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160578567,4.85417045,-1.317813287,1.317813287,0.755513034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271957553,105.7807859,0.271957553,74.2192141,0,0.866147779,0,0,0,10,20,0% -10/31/2018 5:00,135.2892941,289.7038392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.361243625,5.056285849,-0.761626546,0.761626546,0.6603995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.482686437,118.8610049,0.482686437,61.13899508,0,0.946413083,0,0,0,10,21,0% -10/31/2018 6:00,145.8030928,305.6282806,0,0,0,0,0,0,0,0,0,0,0,0,0,2.544744028,5.334219783,-0.383629807,0.383629807,0.59575825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668705526,131.9672351,0.668705526,48.03276489,0,0.975228672,0,0,0,10,22,0% -10/31/2018 7:00,153.8429072,330.0286154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685065262,5.760085965,-0.085042458,0.085042458,0.544696806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817350048,144.8203965,0.817350048,35.1796035,0,0.9888267,0,0,0,10,23,0% -11/1/2018 8:00,156.5365903,4.517108935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7320789,0.078838424,0.180116873,-0.180116873,0.49935189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918503578,156.7082864,0.918503578,23.29171356,0,0.995563631,0,0,0,11,0,0% -11/1/2018 9:00,152.2465802,37.08165348,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6572041,0.647196945,0.441717824,-0.441717824,0.454615493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965286778,164.8591771,0.965286778,15.14082291,0,0.998201922,0,0,0,11,1,0% -11/1/2018 10:00,143.393022,58.97801556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.502680358,1.029360558,0.72915175,-0.72915175,0.405461397,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.954525611,162.6547431,0.954525611,17.3452569,0,0.997617959,0,0,0,11,2,0% -11/1/2018 11:00,132.5541523,73.5361941,0,0,0,0,0,0,0,0,0,0,0,0,0,2.313506395,1.283448706,1.087166009,-1.087166009,0.344237353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.886967157,152.494581,0.886967157,27.505419,0,0.993628127,0,0,0,11,3,0% -11/1/2018 12:00,120.9451117,84.47723574,0,0,0,0,0,0,0,0,0,0,0,0,0,2.110890413,1.474405907,1.614936022,-1.614936022,0.253983365,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.767228407,140.1056505,0.767228407,39.89434954,0,0.984830359,0,0,0,11,4,0% -11/1/2018 13:00,109.1226695,93.80913104,0,0,0,0,0,0,0,0,0,0,0,0,0,1.904549871,1.637278205,2.638683204,-2.638683204,0.078912286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.60348147,127.1196486,0.60348147,52.88035139,0,0.967147415,0,0,0,11,5,0% -11/1/2018 14:00,97.41997386,102.6562095,0,0,0,0,0,0,0,0,0,0,0,0,0,1.700299301,1.791688853,6.464805397,-6.464805397,0,#DIV/0!,0,0,0.365237812,1,0.153467403,0,0.944913961,0.983675924,0.724496596,1,0,0,0.053260476,0.312029739,0.860091277,0.584587873,0.961238037,0.922476074,0,0,0,0,0,0,-0.406896621,114.0100339,0.406896621,65.98996611,0,0.927118665,0,0,0,11,6,0% -11/1/2018 15:00,85.9311265,111.7949423,20.29621443,123.6649083,11.52150108,11.32708675,0,11.32708675,11.17408532,0.153001438,28.47651387,23.20804593,5.268467938,0.347415768,4.921052171,1.499781087,1.95118983,-10.48058323,10.48058323,0,0.567667489,0.086853942,2.793521329,1,0.243821443,0,0.095126559,0.961238037,1,0.490381883,0.765885288,10.74095583,0.242743444,0.115824807,0.047055788,0.724496596,0.448993192,0.995584802,0.956822839,0.062925385,2.699306573,10.80388122,2.942050018,0,17.54942669,-0.187668808,100.8167697,0.187668808,79.18323035,0,0.7835732,10.80388122,16.69331045,21.72931904,11,7,101% -11/1/2018 16:00,75.50546519,121.9061414,186.9158898,550.6392409,49.0976851,66.0408681,17.01460843,49.02625968,47.61720875,1.409050931,46.80039787,0,46.80039787,1.480476357,45.31992151,1.317818971,2.127663546,-2.38651359,2.38651359,0.93827155,0.262672613,1.344919278,43.25722711,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77147225,1.072600081,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.974389439,41.58049207,46.74586169,42.65309215,17.01460843,0,0.030899738,88.22929356,-0.030899738,91.77070644,0,0,46.74586169,42.65309215,74.66145744,11,8,60% -11/1/2018 17:00,66.17621288,133.6734624,358.4708666,720.28426,67.52996082,241.6466563,173.4506682,68.19598815,65.49368334,2.702304811,88.95168932,0,88.95168932,2.036277478,86.91541184,1.154992801,2.333042042,-1.004388645,1.004388645,0.701914264,0.1883834,2.04853261,65.88785052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.9550196,1.475276101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.484154902,63.33390809,64.4391745,64.80918419,173.4506682,0,0.240808633,76.06572855,-0.240808633,103.9342715,0.842366248,0,210.5481631,64.80918419,252.964478,11,9,20% -11/1/2018 18:00,58.67993308,147.710724,491.6976937,795.4313048,78.21791292,418.6421957,339.0762166,79.56597916,75.85935425,3.706624909,121.5763572,0,121.5763572,2.358558668,119.2177985,1.024158037,2.578038474,-0.349796614,0.349796614,0.589972434,0.159077242,2.428575036,78.11132132,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.91889675,1.708767726,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.759494346,75.08357316,74.6783911,76.79234089,339.0762166,0,0.426279698,64.76830895,-0.426279698,115.2316911,0.932706119,0,390.9368533,76.79234089,441.1959045,11,10,13% -11/1/2018 19:00,53.85145659,164.1924104,572.9648163,828.946625,83.98519339,561.9991988,476.2272181,85.77198075,81.45272994,4.319250807,141.4544167,0,141.4544167,2.532463453,138.9219533,0.939885224,2.865698169,0.10007526,-0.10007526,0.513039812,0.146580019,2.524249842,81.18855198,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.29546222,1.834761151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.828810418,78.04152432,80.12427264,79.87628547,476.2272181,0,0.574496842,54.93559667,-0.574496842,125.0644033,0.96296732,0,538.7155204,79.87628547,590.9929517,11,11,10% -11/1/2018 20:00,52.46203667,182.2679251,595.5402509,837.0822868,85.51692953,652.7196848,565.2919722,87.42771255,82.93827859,4.489433969,146.9742797,0,146.9742797,2.578650949,144.3956288,0.915635272,3.181175413,0.493164893,-0.493164893,0.445817526,0.143595549,2.358729135,75.86483707,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.72342809,1.868223835,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.708891229,72.92416705,81.43231932,74.79239088,565.2919722,0,0.675312309,47.52159248,-0.675312309,132.4784075,0.975960183,0,633.1347758,74.79239088,682.0848998,11,12,8% -11/1/2018 21:00,54.78107044,200.085159,557.6489291,823.1609744,82.93013845,678.828083,594.1948011,84.63328198,80.4294888,4.20379318,137.7090888,0,137.7090888,2.500649654,135.2084391,0.956110047,3.49214481,0.91218259,-0.91218259,0.37416128,0.148713885,1.96414748,63.17373467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.31188392,1.811712162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.423018163,60.72499669,78.73490208,62.53670886,594.1948011,0,0.721845203,43.79296527,-0.721845203,136.2070347,0.980733072,0,661.4813945,62.53670886,702.4104197,11,13,6% -11/1/2018 22:00,60.372423,215.9711122,462.2803967,781.3491506,76.01239195,632.696471,555.4912682,77.20520277,73.72033787,3.484864898,114.3772883,0,114.3772883,2.292054073,112.0852343,1.053697559,3.769406997,1.457240016,-1.457240016,0.28095097,0.164429192,1.391100988,44.74258965,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.86279285,1.660585373,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.00784793,43.00827904,71.87064078,44.66886442,555.4912682,0,0.710938596,44.68866651,-0.710938596,135.3113335,0.979670438,0,616.0690149,44.66886442,645.3038933,11,14,5% -11/1/2018 23:00,68.41173558,229.3786763,317.5705582,689.7627933,63.78330292,508.044952,443.79097,64.25398201,61.860001,2.39398101,78.92196045,0,78.92196045,1.923301918,76.99865853,1.194010033,4.003413135,2.365300957,-2.365300957,0.125663403,0.200847658,0.721239115,23.19752917,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.46218592,1.393425693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.522535283,22.2983474,59.9847212,23.6917731,443.79097,0,0.643396504,49.95444293,-0.643396504,130.0455571,0.972287424,0,491.4771,23.6917731,506.9828917,11,15,3% -11/1/2018 0:00,78.09335407,240.6478189,140.2280955,475.5572553,42.11222368,291.1335851,249.2341017,41.89948338,40.84238476,1.057098616,35.26976417,0,35.26976417,1.269838922,33.99992525,1.362986152,4.200096778,4.679575411,-4.679575411,0,0.300312313,0.31745973,10.21059619,0.212660939,1,0.210528103,0,0.937465741,0.976227704,0.724496596,1,39.53479738,0.919993976,0.033051482,0.312029739,0.910549909,0.635046505,0.961238037,0.922476074,0.220201281,9.814813437,39.75499866,10.73480741,196.2317436,0,0.524088528,58.39309638,-0.524088528,121.6069036,0.954596271,0,227.0770893,10.73480741,234.102806,11,16,3% -11/1/2018 1:00,88.5987177,250.4297883,1.934598789,16.7316572,1.525433611,7.599200948,6.105180966,1.494019982,1.479436159,0.014583823,0.515063326,0,0.515063326,0.045997452,0.469065874,1.546339337,4.370824351,40.87880345,-40.87880345,0,0.788501275,0.011499363,0.36985904,0.865961327,1,0.024457678,0,0.959009534,0.997771497,0.724496596,1,1.426479943,0.033324997,0.104874593,0.312029739,0.745963489,0.470460084,0.961238037,0.922476074,0.008153455,0.355522577,1.434633398,0.388847574,0.818330356,0,0.364888002,68.59930968,-0.364888002,111.4006903,0.912971652,0,2.181745815,0.388847574,2.436238775,11,17,12% -11/1/2018 2:00,100.3903754,259.4038162,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752142588,4.527450686,-5.380439891,5.380439891,0.549736899,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.162413432,80.65299172,-0.162413432,99.34700828,0.742143689,0,0,0,0,11,18,0% -11/1/2018 3:00,112.1616652,268.2570283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957590353,4.681968386,-2.331530452,2.331530452,0.928868879,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.053664338,93.0762178,0.053664338,86.9237822,0,0,0,0,0,11,19,0% -11/1/2018 4:00,123.9843159,277.817239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163934534,4.848825539,-1.312011692,1.312011692,0.754520903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27442891,105.9279838,0.27442891,74.07201619,0,0.867803452,0,0,0,11,20,0% -11/1/2018 5:00,135.497107,289.359981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.364870645,5.050284392,-0.75987539,0.75987539,0.660100035,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484843547,119.0022226,0.484843547,60.99777745,0,0.94687395,0,0,0,11,21,0% -11/1/2018 6:00,146.0444453,305.2575912,0,0,0,0,0,0,0,0,0,0,0,0,0,2.548956426,5.327750033,-0.383751378,0.383751378,0.59577904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670579207,132.111784,0.670579207,47.88821596,0,0.975437593,0,0,0,11,22,0% -11/1/2018 7:00,154.1353233,329.7422066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.690168885,5.755087188,-0.086334105,0.086334105,0.544917691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818990606,144.9838768,0.818990606,35.01612316,0,0.988949239,0,0,0,11,23,0% -11/2/2018 8:00,156.8536469,4.581688468,0,0,0,0,0,0,0,0,0,0,0,0,0,2.737612582,0.079965549,0.177832757,-0.177832757,0.499742497,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91997734,156.9227694,0.91997734,23.07723062,0,0.995650835,0,0,0,11,0,0% -11/2/2018 9:00,152.5205793,37.42949039,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661986286,0.653267845,0.438312616,-0.438312616,0.455197818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966671523,165.1659752,0.966671523,14.83402478,0,0.998276122,0,0,0,11,1,0% -11/2/2018 10:00,143.6163976,59.35799122,0,0,0,0,0,0,0,0,0,0,0,0,0,2.506578998,1.035992384,0.724148744,-0.724148744,0.406316961,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.955905205,162.9218746,0.955905205,17.07812543,0,0.997693558,0,0,0,11,2,0% -11/2/2018 11:00,132.7479707,73.87827025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.316889164,1.289419061,1.079393293,-1.079393293,0.345566565,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.888425765,152.676091,0.888425765,27.32390899,0,0.993720678,0,0,0,11,3,0% -11/2/2018 12:00,121.1265112,84.78124867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.114056432,1.479711933,1.601184379,-1.601184379,0.256335034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.768844681,140.2502553,0.768844681,39.74974473,0,0.984967359,0,0,0,11,4,0% -11/2/2018 13:00,109.3033282,94.08532263,0,0,0,0,0,0,0,0,0,0,0,0,0,1.90770296,1.642098658,2.60645847,-2.60645847,0.08442304,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.605323114,127.2520965,0.605323114,52.74790347,0,0.967399487,0,0,0,11,5,0% -11/2/2018 14:00,97.60858731,102.9133296,0,0,0,0,0,0,0,0,0,0,0,0,0,1.703591227,1.796176446,6.284525874,-6.284525874,0,#DIV/0!,0,0,0.352567907,1,0.157798079,0,0.944374167,0.98313613,0.724496596,1,0,0,0.051678324,0.312029739,0.863925058,0.588421654,0.961238037,0.922476074,0,0,0,0,0,0,-0.409015711,114.1430183,0.409015711,65.85698171,0,0.927755307,0,0,0,11,6,0% -11/2/2018 15:00,86.12796505,112.0380927,18.30164493,113.7781563,10.61839597,10.43617768,0,10.43617768,10.29821215,0.13796553,26.37349756,21.61586805,4.757629518,0.320183816,4.437445702,1.503216568,1.955433605,-10.97323848,10.97323848,0,0.580188066,0.080045954,2.574553038,1,0.289110301,0,0.090879775,0.961238037,1,0.499299512,0.774802916,9.899033232,0.222576434,0.115824807,0.05715005,0.724496596,0.448993192,0.99456873,0.955806766,0.057993021,2.489626899,9.957026253,2.712203333,0,15.36649792,-0.189982583,100.9517678,0.189982583,79.04823223,0,0.78681798,9.957026253,14.80284019,19.6451891,11,7,97% -11/2/2018 16:00,75.73041507,122.1352955,182.8588893,545.0911029,48.50233637,63.77088239,15.35260287,48.41827952,47.03981197,1.378467548,45.79877918,0,45.79877918,1.462524396,44.33625478,1.321745087,2.131663039,-2.413381264,2.413381264,0.942866192,0.265244619,1.320600345,42.47504663,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.21645652,1.059593946,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956770454,40.82863043,46.17322697,41.88822438,15.35260287,0,0.028165205,88.38603917,-0.028165205,91.61396083,0,0,46.17322697,41.88822438,73.58823206,11,8,59% -11/2/2018 17:00,66.42930626,133.8805011,353.9158575,717.3245044,67.07194161,238.2646613,170.547219,67.71744233,65.0494751,2.667967228,87.83346365,0,87.83346365,2.022466509,85.81099714,1.159410114,2.336655548,-1.009087021,1.009087021,0.702717733,0.189513807,2.02513874,65.13542325,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.52802974,1.465270101,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.467206123,62.61064638,63.99523587,64.07591648,170.547219,0,0.237754626,76.24594565,-0.237754626,103.7540543,0.839699149,0,207.2035906,64.07591648,249.1399964,11,9,20% -11/2/2018 18:00,58.96296489,147.8753956,486.8691439,793.3982514,77.79933133,414.6876837,335.564064,79.1236197,75.45339444,3.670225261,120.3929976,0,120.3929976,2.345936888,118.0470607,1.029097874,2.580912536,-0.349051389,0.349051389,0.589844993,0.159795157,2.405413433,77.36636454,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.52867274,1.69962329,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.742713844,74.36749237,74.27138659,76.06711566,335.564064,0,0.422945303,64.97932305,-0.422945303,115.0206769,0.931781404,0,386.9437413,76.06711566,436.7281471,11,10,13% -11/2/2018 19:00,54.15882106,164.2832424,567.9806495,827.2732553,83.57870191,557.6598384,472.3196646,85.34017373,81.05849568,4.281678052,140.2336906,0,140.2336906,2.520206235,137.7134843,0.945249746,2.867283486,0.103399462,-0.103399462,0.51247134,0.147150615,2.501405482,80.45379881,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.91650926,1.825880838,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.812259756,77.33525163,79.72876901,79.16113247,472.3196646,0,0.570935494,55.18451361,-0.570935494,124.8154864,0.962424432,0,534.3007541,79.16113247,586.1101321,11,11,10% -11/2/2018 20:00,52.77783056,182.25926,590.5049937,835.4880272,85.1122115,648.104567,561.1073266,86.99724037,82.5457643,4.451476073,145.7412196,0,145.7412196,2.566447207,143.1747724,0.921146915,3.181024178,0.498647433,-0.498647433,0.444879956,0.144134618,2.336544053,75.15128855,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,79.34612842,1.859382265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.692818212,72.23827707,81.03894664,74.09765934,561.1073266,0,0.671592301,47.80992138,-0.671592301,132.1900786,0.97555007,0,628.4272382,74.09765934,676.9226743,11,12,8% -11/2/2018 21:00,55.08501161,199.9809268,552.6667622,821.4174274,82.51995255,674.013217,589.81531,84.19790701,80.03167151,4.166235501,136.4887361,0,136.4887361,2.488281036,134.0004551,0.961414821,3.490325614,0.920535557,-0.920535557,0.372732838,0.149312313,1.943097028,62.49667978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.92948681,1.80275114,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407767182,60.07418578,78.33725399,61.87693692,589.81531,0,0.718045771,44.10662952,-0.718045771,135.8933705,0.980366556,0,656.5724581,61.87693692,697.0696758,11,13,6% -11/2/2018 22:00,60.65077977,215.8005616,457.4597702,779.1296646,75.58383619,627.7108084,550.9575788,76.75322964,73.30470466,3.44852498,113.1955491,0,113.1955491,2.279131536,110.9164176,1.058555801,3.766430327,1.470887891,-1.470887891,0.278617046,0.1652251,1.371849503,44.1233957,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.4632704,1.651223039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.993900295,42.41308627,71.45717069,44.06430931,550.9575788,0,0.707144913,44.99691016,-0.707144913,135.0030898,0.979293135,0,611.0061452,44.06430931,639.8453543,11,14,5% -11/2/2018 23:00,68.66088249,229.1712792,313.0454727,686.329762,63.29883078,502.7916871,439.0416806,63.75000649,61.39013749,2.359869004,77.81019247,0,77.81019247,1.908693296,75.90149918,1.198358467,3.999793373,2.392419508,-2.392419508,0.121025858,0.20220331,0.705028184,22.67612992,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.01053524,1.382841795,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.510790519,21.79715861,59.52132576,23.1800004,439.0416806,0,0.639694947,50.23092379,-0.639694947,129.7690762,0.971837744,0,486.1986023,23.1800004,501.369449,11,15,3% -11/2/2018 0:00,78.31568723,240.4207103,136.327495,468.5953124,41.42795543,285.1423864,243.9359425,41.20644397,40.17874972,1.027694243,34.30338523,0,34.30338523,1.249205709,33.05417952,1.366866598,4.196132985,4.768059377,-4.768059377,0,0.303885547,0.312301427,10.04468743,0.221930654,1,0.206732561,0,0.937983536,0.976745499,0.724496596,1,38.89877654,0.905045284,0.034355123,0.312029739,0.907197595,0.631694191,0.961238037,0.922476074,0.216373935,9.655335627,39.11515047,10.56038091,189.7990792,0,0.520568465,58.62960927,-0.520568465,121.3703907,0.953951155,0,220.1742012,10.56038091,227.0857593,11,16,3% -11/2/2018 1:00,88.78192106,250.1889701,1.434781595,13.0836561,1.156650716,5.867785348,4.735195929,1.132589419,1.121773429,0.01081599,0.382756696,0,0.382756696,0.034877287,0.347879409,1.549536839,4.36662128,47.03047866,-47.03047866,0,0.806151068,0.008719322,0.280443357,0.882526137,1,0.021259604,0,0.959309119,0.998071083,0.724496596,1,1.081235496,0.025268475,0.106282114,0.312029739,0.743150089,0.467646685,0.961238037,0.922476074,0.006197569,0.269572822,1.087433064,0.294841298,0.556261759,0,0.361916875,68.78203536,-0.361916875,111.2179646,0.911846729,0,1.594658529,0.294841298,1.787626262,11,17,12% -11/2/2018 2:00,100.5803224,259.1481261,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755457789,4.52298805,-5.285526091,5.285526091,0.565968115,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.159388454,80.82859828,-0.159388454,99.17140172,0.736300992,0,0,0,0,11,18,0% -11/2/2018 3:00,112.3454049,267.980661,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960797215,4.677144866,-2.313944747,2.313944747,0.925861547,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.056373284,93.23166447,0.056373284,86.76833553,0,0,0,0,0,11,19,0% -11/2/2018 4:00,124.1708224,277.5111088,0,0,0,0,0,0,0,0,0,0,0,0,0,2.167189686,4.843482559,-1.306495705,1.306495705,0.753577614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.276812239,106.0700409,0.276812239,73.92995907,0,0.869372149,0,0,0,11,20,0% -11/2/2018 5:00,135.6987964,289.0149147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368390788,5.044261849,-0.758256955,0.758256955,0.659823266,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486914052,119.1379522,0.486914052,60.86204784,0,0.947312473,0,0,0,11,21,0% -11/2/2018 6:00,146.2795029,304.8825556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.553058954,5.321204427,-0.383944337,0.383944337,0.595812038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672371184,132.2503387,0.672371184,47.74966125,0,0.975636313,0,0,0,11,22,0% -11/2/2018 7:00,154.42218,329.4464788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695175479,5.749925765,-0.087665496,0.087665496,0.545145372,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820557498,145.1406405,0.820557498,34.85935953,0,0.989065818,0,0,0,11,23,0% -11/3/2018 8:00,157.166947,4.638693991,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7430807,0.080960483,0.175529477,-0.175529477,0.500136381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921388058,157.1298576,0.921388058,22.87014239,0,0.995734048,0,0,0,11,0,0% -11/3/2018 9:00,152.7919414,37.77310301,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666722447,0.659265016,0.434906025,-0.434906025,0.455780379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968005697,165.4675538,0.968005697,14.53244618,0,0.998347411,0,0,0,11,1,0% -11/3/2018 10:00,143.8381088,59.73323734,0,0,0,0,0,0,0,0,0,0,0,0,0,2.510448588,1.042541665,0.719166222,-0.719166222,0.407169022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.957247689,163.1857709,0.957247689,16.81422906,0,0.997766915,0,0,0,11,2,0% -11/3/2018 11:00,132.9409446,74.21539726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.320257194,1.295303038,1.07168015,-1.07168015,0.34688559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.889860785,152.8557584,0.889860785,27.14424157,0,0.993811436,0,0,0,11,3,0% -11/3/2018 12:00,121.3076131,85.08036114,0,0,0,0,0,0,0,0,0,0,0,0,0,2.117217257,1.484932431,1.58759503,-1.58759503,0.25865895,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.770450018,140.3943173,0.770450018,39.60568268,0,0.985102864,0,0,0,11,4,0% -11/3/2018 13:00,109.4839933,94.35662559,0,0,0,0,0,0,0,0,0,0,0,0,0,1.910856162,1.646833788,2.574859559,-2.574859559,0.089826772,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.607164731,127.3847757,0.607164731,52.61522433,0,0.967650026,0,0,0,11,5,0% -11/3/2018 14:00,97.79730187,103.1654285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706884917,1.800576402,6.113080207,-6.113080207,0,#DIV/0!,0,0,0.340040543,1,0.162147498,0,0.943827782,0.982589745,0.724496596,1,0,0,0.050097745,0.312029739,0.867774843,0.592271439,0.961238037,0.922476074,0,0,0,0,0,0,-0.411143186,114.2766682,0.411143186,65.72333182,0,0.928387866,0,0,0,11,6,0% -11/3/2018 15:00,86.32431234,112.275914,16.40032729,104.0715986,9.728416098,9.558701053,0,9.558701053,9.435068458,0.123632595,24.28300234,20.01320548,4.269796866,0.293347639,3.976449227,1.506643475,1.95958437,-11.51778275,11.51778275,0,0.593184266,0.07333691,2.358767115,1,0.333249119,0,0.086605089,0.961238037,1,0.508421726,0.78392513,9.069346682,0.203029968,0.115824807,0.067466015,0.724496596,0.448993192,0.993505413,0.95474345,0.053132342,2.282486566,9.122479024,2.485516534,0,13.34382238,-0.192302278,101.0871731,0.192302278,78.91282691,0,0.789992679,9.122479024,13.02703853,17.6484152,11,7,93% -11/3/2018 16:00,75.95497774,122.3586533,178.8149748,539.4404703,47.90126007,61.51499572,13.71015256,47.80484316,46.45686035,1.347982812,44.80016062,0,44.80016062,1.444399728,43.35576089,1.325664445,2.135561368,-2.441277229,2.441277229,0.947636683,0.267881704,1.296306351,41.69366828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.65610124,1.046462686,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.939169539,40.07753985,45.59527078,41.12400253,13.71015256,0,0.025415506,88.54364195,-0.025415506,91.45635805,0,0,45.59527078,41.12400253,72.51010795,11,8,59% -11/3/2018 17:00,66.68139319,134.081235,349.3733862,714.3247517,66.61239971,234.8801136,167.6425994,67.23751425,64.60379009,2.633724161,86.71823201,0,86.71823201,2.008609625,84.70962239,1.163809861,2.340159016,-1.014019859,1.014019859,0.703561298,0.19066249,2.001843798,64.38617783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.09962036,1.455230836,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.450329017,61.89044317,63.54994937,63.34567401,167.6425994,0,0.234686813,76.4268378,-0.234686813,103.5731622,0.836950109,0,203.8584412,63.34567401,245.3169179,11,9,20% -11/3/2018 18:00,59.24403874,148.0335629,482.0615911,791.346447,77.38086737,410.7322307,332.0506981,78.68153261,75.04754871,3.633983897,119.2147325,0,119.2147325,2.333318656,116.8814139,1.034003538,2.583673075,-0.348422472,0.348422472,0.589737442,0.160520707,2.382414686,76.62664581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.13855839,1.690481423,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.72605133,73.65644659,73.86460972,75.34692802,332.0506981,0,0.419602185,65.19052569,-0.419602185,114.8094743,0.930839515,0,382.9505204,75.34692802,432.2635778,11,10,13% -11/3/2018 19:00,54.46307596,164.3682764,563.029374,825.5906116,83.17341617,553.3281483,468.4183643,84.90978404,80.6654308,4.244353246,139.0209756,0,139.0209756,2.507985375,136.5129903,0.950559996,2.86876761,0.106636721,-0.106636721,0.511917736,0.147724826,2.478785501,79.72626247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.53868034,1.817026867,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.795871657,76.63591602,79.334552,78.45294289,468.4183643,0,0.567373657,55.43271484,-0.567373657,124.5672852,0.961874654,0,529.8943039,78.45294289,581.240186,11,11,10% -11/3/2018 20:00,53.08950189,182.2466463,585.5163554,833.8901538,84.70966532,643.5099444,556.9407184,86.56922597,82.15535636,4.41386961,144.5195282,0,144.5195282,2.554308955,141.9652192,0.926586606,3.180804029,0.50404808,-0.50404808,0.443956391,0.144675148,2.314642416,74.44685664,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.97085347,1.850588143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676950551,71.56115032,80.64780402,73.41173847,556.9407184,0,0.667882593,48.09614806,-0.667882593,131.9038519,0.975136543,0,623.7410507,73.41173847,671.7875653,11,12,8% -11/3/2018 21:00,55.38424647,199.8749182,547.7456206,819.6748474,82.11289259,669.2345519,585.4685281,83.76602377,79.63688592,4.129137857,135.283274,0,135.283274,2.476006676,132.8072673,0.966637455,3.488475415,0.928800805,-0.928800805,0.371319397,0.149910633,1.922383323,61.83045581,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.55000388,1.793858408,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392760173,59.43378596,77.94276405,61.22764437,585.4685281,0,0.714269237,44.41665752,-0.714269237,135.5833425,0.979998385,0,651.7009762,61.22764437,691.7732449,11,13,6% -11/3/2018 22:00,60.92421653,215.6297714,452.7142044,776.9160665,75.15938793,622.7789865,546.4731805,76.30580597,72.89305507,3.4127509,112.0321331,0,112.0321331,2.266332855,109.7658002,1.063328173,3.763449477,1.484439696,-1.484439696,0.276299551,0.166019505,1.352978067,43.51642546,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.06757716,1.641950438,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.980228004,41.82964338,71.04780516,43.47159382,546.4731805,0,0.703387668,45.30056702,-0.703387668,134.699433,0.978915444,0,605.9988414,43.47159382,634.4501301,11,14,5% -11/3/2018 23:00,68.90504351,228.9644316,308.6083603,682.9087177,62.81948583,497.6112455,434.3595787,63.25166673,60.92524655,2.326420177,76.71990918,0,76.71990918,1.894239277,74.8256699,1.20261988,3.996183201,2.419487319,-2.419487319,0.11639699,0.203557304,0.689227187,22.16791555,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.56366439,1.372369908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.499342751,21.30864362,59.06300714,22.68101353,434.3595787,0,0.636043394,50.50258591,-0.636043394,129.4974141,0.971389011,0,480.9951289,22.68101353,495.8393987,11,15,3% -11/3/2018 0:00,78.53296323,240.1944867,132.5294652,461.6581547,40.74991543,279.2488556,238.7286374,40.52021822,39.52115513,0.999063089,33.3620635,0,33.3620635,1.228760301,32.1333032,1.37065878,4.192184639,4.857657303,-4.857657303,0,0.307478155,0.307190075,9.880288782,0.231097277,1,0.2030243,0,0.938486377,0.97724834,0.724496596,1,38.26796126,0.890232655,0.035634078,0.312029739,0.903921779,0.628418375,0.961238037,0.922476074,0.212602092,9.497309392,38.48056335,10.38754205,183.5590995,0,0.517111276,58.8613197,-0.517111276,121.1386803,0.953309012,0,213.4691072,10.38754205,220.2675457,11,16,3% -11/3/2018 1:00,88.9587811,249.9491448,1.036579048,10.08348341,0.853345034,4.455794981,3.620367278,0.835427703,0.827613533,0.007814171,0.277062093,0,0.277062093,0.025731501,0.251330591,1.552623629,4.362435538,55.02152271,-55.02152271,0,0.823231991,0.006432875,0.206903383,0.898776008,1,0.018172705,0,0.95959596,0.998357923,0.724496596,1,0.79742186,0.018642385,0.107647503,0.312029739,0.74043614,0.464932736,0.961238037,0.922476074,0.004583736,0.198883402,0.802005596,0.217525787,0.366468028,0,0.359039345,68.95878937,-0.359039345,111.0412106,0.910739496,0,1.135762504,0.217525787,1.278128781,11,17,13% -11/3/2018 2:00,100.7649636,258.8933983,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758680386,4.518542212,-5.196422178,5.196422178,0.581205781,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.15644528,80.99937262,-0.15644528,99.00062738,0.730399434,0,0,0,0,11,18,0% -11/3/2018 3:00,112.5236053,267.7050679,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963907398,4.67233486,-2.297186009,2.297186009,0.922995634,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.058995206,93.38214011,0.058995206,86.61785989,0,0,0,0,0,11,19,0% -11/3/2018 4:00,124.3514796,277.2052504,0,0,0,0,0,0,0,0,0,0,0,0,0,2.170342749,4.838144323,-1.301261204,1.301261204,0.752682461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279106776,106.2069016,0.279106776,73.79309843,0,0.87085709,0,0,0,11,20,0% -11/3/2018 5:00,135.8942789,288.6688461,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371802602,5.038221812,-0.756770208,0.756770208,0.659569017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488897568,119.2681477,0.488897568,60.73185233,0,0.947729088,0,0,0,11,21,0% -11/3/2018 6:00,146.5081525,304.5033851,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557049643,5.314586654,-0.38420826,0.38420826,0.595857172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67408142,132.3828578,0.67408142,47.61714221,0,0.975824984,0,0,0,11,22,0% -11/3/2018 7:00,154.7033289,329.1413927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.700082454,5.744601007,-0.089036258,0.089036258,0.545379787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822050978,145.2906347,0.822050978,34.70936529,0,0.989176522,0,0,0,11,23,0% -11/4/2018 8:00,157.4763847,4.687761084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.748481407,0.081816865,0.173207541,-0.173207541,0.500533456,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922736196,157.3294312,0.922736196,22.67056882,0,0.995813332,0,0,0,11,0,0% -11/4/2018 9:00,153.0606233,38.11216227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.671411832,0.665182717,0.431498801,-0.431498801,0.456363049,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969289878,165.7637322,0.969289878,14.23626782,0,0.998415844,0,0,0,11,1,0% -11/4/2018 10:00,144.0581397,60.10350675,0,0,0,0,0,0,0,0,0,0,0,0,0,2.514288852,1.049004085,0.71420529,-0.71420529,0.408017392,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.958553655,163.4464071,0.958553655,16.5535929,0,0.997838079,0,0,0,11,2,0% -11/4/2018 11:00,133.1330584,74.54739654,0,0,0,0,0,0,0,0,0,0,0,0,0,2.323610212,1.301097518,1.064028161,-1.064028161,0.348194157,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.891272722,153.0336148,0.891272722,26.96638522,0,0.993900448,0,0,0,11,3,0% -11/4/2018 12:00,121.488391,85.37443465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.120372426,1.490064982,1.574169758,-1.574169758,0.260954806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.772044739,140.5378614,0.772044739,39.46213865,0,0.985236914,0,0,0,11,4,0% -11/4/2018 13:00,109.6646233,94.6229251,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91400875,1.651481591,2.543880649,-2.543880649,0.095124478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.609006369,127.5176916,0.609006369,52.48230837,0,0.967899052,0,0,0,11,5,0% -11/4/2018 14:00,97.98605833,103.412408,0,0,0,0,0,0,0,0,0,0,0,0,0,1.710179339,1.804887007,5.949907426,-5.949907426,0,#DIV/0!,0,0,0.327658957,1,0.166513617,0,0.943275023,0.982036986,0.724496596,1,0,0,0.048519465,0.312029739,0.871638778,0.596135374,0.961238037,0.922476074,0,0,0,0,0,0,-0.413278762,114.4109686,0.413278762,65.5890314,0,0.929016285,0,0,0,11,6,0% -11/4/2018 15:00,86.52004758,112.5083239,14.5967806,94.58911413,8.855288321,8.698305403,0,8.698305403,8.588268705,0.110036698,22.21573087,18.40955281,3.806178067,0.267019615,3.539158452,1.510059699,1.963640688,-12.12238013,12.12238013,0,0.60666037,0.066754904,2.147067176,1,0.376248588,0,0.082305694,0.961238037,1,0.517744253,0.793247657,8.25537055,0.184134027,0.115824807,0.078000631,0.724496596,0.448993192,0.99239367,0.953631706,0.048363701,2.07882445,8.303734251,2.262958478,0,11.48298456,-0.194626548,101.2229084,0.194626548,78.77709157,0,0.793097741,8.303734251,11.37008759,15.74522917,11,7,90% -11/4/2018 16:00,76.17905438,122.5761533,174.7864067,533.6877353,47.29456595,59.27500809,12.08893404,47.18607405,45.86846029,1.317613764,43.80509358,0,43.80509358,1.426105662,42.37898792,1.32957532,2.13935746,-2.47023867,2.47023867,0.952589382,0.27058492,1.272048018,40.91343691,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.09050872,1.033208697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921594459,39.32755177,45.01210318,40.36076047,12.08893404,0,0.022651699,88.70204222,-0.022651699,91.29795778,0,0,45.01210318,40.36076047,71.42741369,11,8,59% -11/4/2018 17:00,66.93235811,134.275634,344.8458249,711.2859069,66.15150229,231.4949094,164.7385255,66.75638392,64.15679043,2.599593491,85.60657459,0,85.60657459,1.994711867,83.61186272,1.168190025,2.343551919,-1.019192389,1.019192389,0.704445853,0.19182921,1.978659196,63.64048133,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.66994728,1.445161958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.433531852,61.17365134,63.10347913,62.6188133,164.7385255,0,0.231606621,76.60832129,-0.231606621,103.3916787,0.834116707,0,200.5146356,62.6188133,241.4973965,11,9,20% -11/4/2018 18:00,59.52302919,148.1852367,477.2776477,789.2769202,76.96270576,406.7780981,328.5381814,78.23991673,74.64199622,3.597920511,118.042201,0,118.042201,2.320709541,115.7214914,1.03887284,2.586320284,-0.347913277,0.347913277,0.589650364,0.161253531,2.359590718,75.89254854,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.74872591,1.681346162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.709515443,72.95080437,73.45824136,74.63215053,328.5381814,0,0.416252107,65.40180757,-0.416252107,114.5981924,0.929880488,0,378.9594858,74.63215053,427.8047357,11,10,13% -11/4/2018 19:00,54.76409772,164.4475559,558.113765,823.8997877,82.76953093,549.0067391,464.5257176,84.4810215,80.27372419,4.207297308,137.8169507,0,137.8169507,2.495806745,135.3211439,0.955813817,2.870151298,0.109783151,-0.109783151,0.511379665,0.148302257,2.456401771,79.00632477,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.16215705,1.80820349,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.779654721,75.94388452,78.94181177,77.75208801,464.5257176,0,0.563813372,55.68006973,-0.563813372,124.3199303,0.961318173,0,525.4988259,77.75208801,576.3860124,11,11,10% -11/4/2018 20:00,53.39693618,182.2301282,580.5771654,832.2898987,84.30949538,638.9387085,552.7948195,86.14388894,81.76725303,4.376635909,143.3098978,0,143.3098978,2.542242355,140.7676554,0.931952347,3.180515734,0.509361628,-0.509361628,0.443047721,0.145216692,2.293035484,73.75190341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.59779378,1.841845932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.661296402,70.89313485,80.25909018,72.73498078,552.7948195,0,0.664185424,48.38013632,-0.664185424,131.6198637,0.974719817,0,619.0791557,72.73498078,666.682746,11,12,8% -11/4/2018 21:00,55.67866765,199.7671621,542.8882678,817.9347686,81.70917691,664.4951921,581.1573273,83.33786484,79.24534376,4.09252108,134.093379,0,134.093379,2.463833159,131.6295459,0.971776074,3.486594715,0.936970519,-0.936970519,0.369922294,0.150508275,1.902016372,61.17538467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.17363866,1.785038736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.378004387,58.80410667,77.55164305,60.5891454,581.1573273,0,0.710517941,44.72292796,-0.710517941,135.277072,0.9796288,0,646.8700983,60.5891454,686.5244822,11,13,6% -11/4/2018 22:00,61.19263056,215.4587696,448.0462672,774.7105546,74.73929544,617.9043044,542.0411125,75.86319194,72.48562992,3.377562018,110.8876703,0,110.8876703,2.253665516,108.6340048,1.068012881,3.760464931,1.497881788,-1.497881788,0.274000818,0.166811557,1.334494585,42.92193316,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.67594461,1.632772995,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.966836784,41.25819476,70.64278139,42.89096776,542.0411125,0,0.699669198,45.59953026,-0.699669198,134.4004697,0.978537657,0,601.0504218,42.89096776,629.1217023,11,14,5% -11/4/2018 23:00,69.1441221,228.758175,304.2614226,679.5035351,62.34560328,492.5072882,429.7479837,62.75930444,60.46565331,2.293651124,75.65165449,0,75.65165449,1.87994997,73.77170452,1.206792589,3.992583344,2.446474135,-2.446474135,0.111781972,0.204908012,0.67384021,21.67301747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.12188589,1.362017353,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.488194938,20.83292877,58.61008083,22.19494612,429.7479837,0,0.632444074,50.76932708,-0.632444074,129.2306729,0.970941626,0,475.870287,22.19494612,490.3964353,11,15,3% -11/4/2018 0:00,78.74509456,239.9692084,128.8353968,454.7555554,40.07880313,273.4580513,233.6165564,39.84149498,38.87027934,0.971215641,32.44615734,0,32.44615734,1.208523789,31.23763355,1.37436117,4.18825279,4.948278888,-4.948278888,0,0.311085339,0.302130947,9.717569835,0.240151511,1,0.199404816,0,0.938974269,0.977736232,0.724496596,1,37.64304698,0.875571371,0.036887521,0.312029739,0.900723825,0.625220421,0.961238037,0.922476074,0.208888195,9.340897751,37.85193518,10.21646912,177.5131873,0,0.513718972,59.08813234,-0.513718972,120.9118677,0.952670521,0,206.9635158,10.21646912,213.6499905,11,16,3% -11/4/2018 1:00,89.12924095,249.7103924,0.725841563,7.660069006,0.609431285,3.325478148,2.728951765,0.596526383,0.591054683,0.0054717,0.194365292,0,0.194365292,0.018376602,0.175988691,1.555598714,4.358268524,65.79390296,-65.79390296,0,0.839620264,0.00459415,0.147763671,0.914684986,1,0.015197807,0,0.959870223,0.998632186,0.724496596,1,0.569290395,0.013313785,0.108969738,0.312029739,0.737822271,0.462318867,0.961238037,0.922476074,0.003281683,0.142036061,0.572572078,0.155349846,0.232820557,0,0.356256812,69.12950883,-0.356256812,110.8704912,0.909651807,0,0.784357718,0.155349846,0.886031086,11,17,13% -11/4/2018 2:00,100.9442269,258.6397354,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76180912,4.514114959,-5.11274202,5.11274202,0.595515931,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.153585323,81.16524113,-0.153585323,98.83475887,0.72444806,0,0,0,0,11,18,0% -11/4/2018 3:00,112.6961999,267.4303799,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966919743,4.667540649,-2.281230539,2.281230539,0.920267088,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061529068,93.52758411,0.061529068,86.47241589,0,0,0,0,0,11,19,0% -11/4/2018 4:00,124.5262219,276.8998332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.173392577,4.832813788,-1.296304031,1.296304031,0.751834735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281311879,106.3385173,0.281311879,73.66148267,0,0.872261327,0,0,0,11,20,0% -11/4/2018 5:00,136.0834791,288.321994,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375104767,5.032168102,-0.755414001,0.755414001,0.659337092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49079383,119.3927711,0.49079383,60.6072289,0,0.948124229,0,0,0,11,21,0% -11/4/2018 6:00,146.7302882,304.1203148,0,0,0,0,0,0,0,0,0,0,0,0,0,2.560926641,5.307900815,-0.384542608,0.384542608,0.595914349,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675709985,132.5093089,0.675709985,47.49069112,0,0.976003757,0,0,0,11,22,0% -11/4/2018 7:00,154.9786243,328.8269398,0,0,0,0,0,0,0,0,0,0,0,0,0,2.704887264,5.739112769,-0.090445905,0.090445905,0.54562085,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823471383,145.4338176,0.823471383,34.56618237,0,0.989281436,0,0,0,11,23,0% -11/5/2018 8:00,157.7818526,4.728530335,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753812828,0.082528423,0.170867571,-0.170867571,0.500933614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924022276,157.5213813,0.924022276,22.47861865,0,0.99588875,0,0,0,11,0,0% -11/5/2018 9:00,153.3265802,38.44633881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.676053656,0.671015198,0.428091813,-0.428091813,0.456945678,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970524676,166.0543269,0.970524676,13.94567313,0,0.998481475,0,0,0,11,1,0% -11/5/2018 10:00,144.2764711,60.46855457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.518099454,1.055375371,0.709267186,-0.709267186,0.408861857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.9598237,163.7037583,0.9598237,16.29624174,0,0.9979071,0,0,0,11,2,0% -11/5/2018 11:00,133.3242921,74.87409242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.326947869,1.306799437,1.056439074,-1.056439074,0.349491968,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.892662054,153.2096893,0.892662054,26.79031068,0,0.993987761,0,0,0,11,3,0% -11/5/2018 12:00,121.6688136,85.66333374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.123521394,1.495107222,1.560910572,-1.560910572,0.263222261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77362911,140.6809078,0.77362911,39.31909222,0,0.985369547,0,0,0,11,4,0% -11/5/2018 13:00,109.8451714,94.88410962,0,0,0,0,0,0,0,0,0,0,0,0,0,1.917159908,1.656040121,2.513516526,-2.513516526,0.100317048,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.610848009,127.6508448,0.610848009,52.34915515,0,0.968146578,0,0,0,11,5,0% -11/5/2018 14:00,98.17479245,103.6541735,0,0,0,0,0,0,0,0,0,0,0,0,0,1.713473371,1.809106611,5.794496647,-5.794496647,0,#DIV/0!,0,0,0.315426533,1,0.170894231,0,0.942716131,0.981478094,0.724496596,1,0,0,0.046944252,0.312029739,0.875514873,0.600011469,0.961238037,0.922476074,0,0,0,0,0,0,-0.41542207,114.545899,0.41542207,65.45410097,0,0.929640482,0,0,0,11,6,0% -11/5/2018 15:00,86.71504113,112.7352444,12.89526938,85.37669078,8.003019109,7.858908542,0,7.858908542,7.761698555,0.097209988,20.18319919,16.81527128,3.367927912,0.241320554,3.126607358,1.513462979,1.967601198,-12.79695597,12.79695597,0,0.620616667,0.060330139,1.940424639,1,0.418118187,0,0.077985105,0.961238037,1,0.527261662,0.802765066,7.460839882,0.165925276,0.115824807,0.088749558,0.724496596,0.448993192,0.991232473,0.95247051,0.04370898,1.879645866,7.504548861,2.045571142,0,9.784500545,-0.196953889,101.358887,0.196953889,78.64111299,0,0.796133472,7.504548861,9.835339532,13.94158188,11,7,86% -11/5/2018 16:00,76.40254211,122.7877394,170.7755238,527.8335747,46.68238419,57.05277695,10.49066084,46.5621161,45.27473807,1.287378034,42.81414904,0,42.81414904,1.407646123,41.40650292,1.333475917,2.143050334,-2.500303076,2.500303076,0.957730698,0.273355239,1.247836518,40.13471183,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,43.51980034,1.019834824,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.90405331,38.57901161,44.42385365,39.59884643,10.49066084,0,0.01987494,88.86117481,-0.01987494,91.13882519,0,0,44.42385365,39.59884643,70.34050666,11,8,58% -11/5/2018 17:00,67.18208243,134.4636739,340.3356101,708.2090097,65.68942737,228.1110253,161.836783,66.27424235,63.70864876,2.565593588,84.49908755,0,84.49908755,1.980778603,82.51830895,1.172548537,2.346833834,-1.024609498,1.024609498,0.705372233,0.193013677,1.955596572,62.89870809,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23917647,1.435067355,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41682306,60.46063068,62.65599953,61.89569804,161.836783,0,0.228515566,76.79030732,-0.228515566,103.2096927,0.831196525,0,197.1741712,61.89569804,237.6836676,11,9,21% -11/5/2018 18:00,59.79980909,148.3304341,472.5199718,787.1907849,76.54503815,402.8276237,325.0286457,77.79897797,74.23692283,3.56205514,116.8760531,0,116.8760531,2.308115321,114.5679378,1.043703561,2.588854455,-0.347527059,0.347527059,0.589584317,0.161993234,2.336953528,75.16445869,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.35935396,1.672221693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.693114876,72.25093672,73.05246884,73.92315841,325.0286457,0,0.412896914,65.61305522,-0.412896914,114.3869448,0.928904399,0,374.9730076,73.92315841,423.3542363,11,10,13% -11/5/2018 19:00,55.06176234,164.5211299,553.2366175,822.2019398,82.36724531,544.6982802,460.6441799,84.05410027,79.88356896,4.170531311,136.6222994,0,136.6222994,2.483676349,134.1386231,0.961009045,2.871435405,0.11283493,-0.11283493,0.51085778,0.14888249,2.434266108,78.29436578,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.787125,1.79941506,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.763617509,75.25952246,78.55074251,77.05893752,460.6441799,0,0.560256742,55.92644499,-0.560256742,124.073555,0.960755202,0,521.1170344,77.05893752,571.5505679,11,11,10% -11/5/2018 20:00,53.70001974,182.2097556,575.6902446,830.688546,83.91190846,634.3937847,548.6723337,85.72145105,81.38165482,4.339796236,142.1130185,0,142.1130185,2.530253642,139.5827649,0.937242153,3.180160165,0.514582874,-0.514582874,0.442154835,0.145758781,2.27173433,73.0667851,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,78.22714211,1.83316015,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.645863789,70.23457307,79.8730059,72.06773322,548.6723337,0,0.660503069,48.66174905,-0.660503069,131.338251,0.974300125,0,614.444529,72.06773322,661.611419,11,12,8% -11/5/2018 21:00,55.96816972,199.6576935,538.0974305,816.1987748,81.30902466,659.7982476,576.8845843,82.9136633,78.85725757,4.056405724,132.919719,0,132.919719,2.451767092,130.4679519,0.976828838,3.484684128,0.945036805,-0.945036805,0.368542878,0.151104651,1.882005888,60.5317787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.80059546,1.776296912,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363506859,58.18544812,77.16410232,59.96174503,576.8845843,0,0.70679423,45.02531998,-0.70679423,134.97468,0.979258053,0,642.0829771,59.96174503,681.32674,11,13,6% -11/5/2018 22:00,61.45592221,215.2875898,443.4584608,772.5153854,74.32380701,613.0900367,537.6643895,75.4256472,72.08267,3.342977195,109.762775,0,109.762775,2.241137007,107.521638,1.072608187,3.75747728,1.511200252,-1.511200252,0.271723226,0.167600381,1.316406556,42.34015996,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.2886042,1.623696132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.953732069,40.69897224,70.24233627,42.32266838,537.6643895,0,0.695991821,45.89369473,-0.695991821,134.1063053,0.978160075,0,596.164176,42.32266838,623.863516,11,14,5% -11/5/2018 23:00,69.37802575,228.5525562,300.0067663,676.118187,61.8775197,487.4834279,425.210166,62.2732619,60.01168418,2.261577728,74.60594937,0,74.60594937,1.865835523,72.74011384,1.210874978,3.98899462,2.473348548,-2.473348548,0.107186177,0.206253747,0.658870807,21.19155002,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.68551348,1.351791485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.477349657,20.37012394,58.16286314,21.72191542,425.210166,0,0.628899169,51.03104816,-0.628899169,128.9689518,0.970495999,0,470.8276281,21.72191542,485.0441873,11,15,3% -11/5/2018 0:00,78.95199857,239.7449402,125.2465237,447.8975246,39.41533034,267.7749573,228.6039834,39.1709739,38.2268127,0.9441612,31.55598737,0,31.55598737,1.188517637,30.36746973,1.377972326,4.184338572,5.039823514,-5.039823514,0,0.314701991,0.297129409,9.556703175,0.249084009,1,0.195875528,0,0.939447228,0.978209191,0.724496596,1,37.02474023,0.861076982,0.038114643,0.312029739,0.897605033,0.622101628,0.961238037,0.922476074,0.205234747,9.186266598,37.22997498,10.04734358,171.6623868,0,0.510393496,59.30995614,-0.510393496,120.6900439,0.952036369,0,200.6588104,10.04734358,207.2345959,11,16,3% -11/5/2018 1:00,89.29328364,249.4727977,0.48876326,5.737787633,0.417992156,2.437782337,2.028709682,0.409072654,0.40538815,0.003684504,0.131110317,0,0.131110317,0.012604006,0.118506311,1.558461799,4.354121714,81.06568843,-81.06568843,0,0.855203715,0.003151001,0.101347038,0.930230427,1,0.01233505,0,0.960132136,0.998894099,0.724496596,1,0.390322525,0.009131559,0.110248108,0.312029739,0.735308504,0.4598051,0.961238037,0.922476074,0.00225639,0.097418627,0.392578915,0.106550187,0.141542208,0,0.353570019,69.29417042,-0.353570019,110.7058296,0.908585295,0,0.521182084,0.106550187,0.590917051,11,17,13% -11/5/2018 2:00,101.1180459,258.3872446,0,0,0,0,0,0,0,0,0,0,0,0,0,1.764842834,4.509708164,-5.034135631,5.034135631,0.608958415,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.150809899,81.32613568,-0.150809899,98.67386432,0.718456778,0,0,0,0,11,18,0% -11/5/2018 3:00,112.8631288,267.1567331,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969833201,4.662764611,-2.266055678,2.266055678,0.917672034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063973945,93.66794189,0.063973945,86.33205811,0,0,0,0,0,11,19,0% -11/5/2018 4:00,124.6949904,276.5950339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176338143,4.827494037,-1.29162003,1.29162003,0.751033724,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283427012,106.4648465,0.283427012,73.53515354,0,0.873587739,0,0,0,11,20,0% -11/5/2018 5:00,136.2663287,287.9745892,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378296095,5.026104743,-0.754187091,0.754187091,0.659127278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.492602674,119.5117918,0.492602674,60.48820818,0,0.948498318,0,0,0,11,21,0% -11/5/2018 6:00,146.9458109,303.7336022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564688222,5.301151408,-0.384946742,0.384946742,0.59598346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677257036,132.6296682,0.677257036,47.37033181,0,0.976172786,0,0,0,11,22,0% -11/5/2018 7:00,155.247923,328.5031431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.709587413,5.73346145,-0.091893856,0.091893856,0.545868464,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.824819123,145.5701575,0.824819123,34.42984255,0,0.989380649,0,0,0,11,23,0% -11/6/2018 8:00,158.0832419,4.76064612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.759073064,0.083088949,0.16851028,-0.16851028,0.501336735,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925246872,157.7056106,0.925246872,22.29438941,0,0.995960368,0,0,0,11,0,0% -11/6/2018 9:00,153.5897653,38.77530142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.680647102,0.676756678,0.424686027,-0.424686027,0.457528102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971710731,166.3391517,0.971710731,13.66084827,0,0.998544357,0,0,0,11,1,0% -11/6/2018 10:00,144.4930811,60.82813721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.521880011,1.061651272,0.704353259,-0.704353259,0.409702188,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.961058422,163.9578004,0.961058422,16.04219965,0,0.997974026,0,0,0,11,2,0% -11/6/2018 11:00,133.5146221,75.19531143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.330269756,1.312405766,1.048914758,-1.048914758,0.350778702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89402924,153.3840097,0.89402924,26.61599032,0,0.994073418,0,0,0,11,3,0% -11/6/2018 12:00,121.8488455,85.94692539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126663543,1.50005683,1.547819639,-1.547819639,0.265460942,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.775203359,140.8234735,0.775203359,39.17652652,0,0.985500796,0,0,0,11,4,0% -11/6/2018 13:00,110.0255866,95.14007034,0,0,0,0,0,0,0,0,0,0,0,0,0,1.920308748,1.660507478,2.483762426,-2.483762426,0.105405299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.612689569,127.7842314,0.612689569,52.21576858,0,0.968392604,0,0,0,11,5,0% -11/6/2018 14:00,98.36343577,103.8906338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.716765818,1.813233622,5.646381001,-5.646381001,0,#DIV/0!,0,0,0.303346744,1,0.175286988,0,0.94215138,0.980913343,0.724496596,1,0,0,0.04537291,0.312029739,0.879401011,0.603897607,0.961238037,0.922476074,0,0,0,0,0,0,-0.417572666,114.6814343,0.417572666,65.31856568,0,0.930260362,0,0,0,11,6,0% -11/6/2018 15:00,86.90915497,112.9566014,11.29969092,76.48172394,7.175852834,7.044656239,0,7.044656239,6.959474395,0.085181843,18.19759929,15.24147996,2.956119326,0.216378439,2.739740887,1.516850904,1.971464607,-13.55369853,13.55369853,0,0.635048594,0.05409461,1.739868599,1,0.458866449,0,0.073647158,0.961238037,1,0.536967324,0.812470728,6.689711505,0.148446744,0.115824807,0.099707094,0.724496596,0.448993192,0.990020978,0.951259015,0.039191361,1.686011975,6.728902866,1.834458719,0,8.247676171,-0.199282641,101.495013,0.199282641,78.50498701,0,0.799100074,6.728902866,8.425177356,12.24301294,11,7,82% -11/6/2018 16:00,76.62533475,122.9933598,166.7847267,521.8789523,46.06486487,54.85019996,8.917067009,45.93313295,44.67583923,1.25729372,41.82791358,0,41.82791358,1.389025637,40.43888795,1.337364382,2.146639086,-2.531508321,2.531508321,0.963067109,0.276193545,1.223683411,39.35786488,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.944116,1.006344346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.886554466,37.83227677,43.83067046,38.83862112,8.917067009,0,0.017086466,89.02096997,-0.017086466,90.97903003,0,0,43.83067046,38.83862112,69.24977121,11,8,58% -11/6/2018 17:00,67.43044518,134.6453354,335.8452298,705.0952327,65.22636307,224.7305026,158.9392118,65.79129077,63.25954756,2.531743203,83.39637974,0,83.39637974,1.966815506,81.42956423,1.176883285,2.350004425,-1.030275761,1.030275761,0.706341221,0.194215541,1.932667746,62.16123822,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.80748331,1.424951139,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.400211203,59.75174659,62.20769451,61.17669773,158.9392118,0,0.225415241,76.97270298,-0.225415241,103.027297,0.828187137,0,193.8391053,61.17669773,233.8780304,11,9,21% -11/6/2018 18:00,60.07425003,148.4691765,467.7912561,785.0892396,76.12806254,398.8832073,321.5242786,77.35892866,73.83252058,3.526408085,115.7169479,0,115.7169479,2.295541968,113.4214059,1.048493459,2.591275968,-0.347266943,0.347266943,0.589539834,0.162739388,2.314515172,74.44276403,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.97062713,1.663112342,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.676858363,71.55721636,72.6474855,73.2203287,321.5242786,0,0.409538512,65.82415189,-0.409538512,114.1758481,0.92791136,0,370.9935161,73.2203287,418.9147568,11,10,13% -11/6/2018 19:00,55.35594565,164.5890514,548.400741,820.4982862,81.96676243,540.405489,456.7762504,83.62923855,79.49516211,4.134076431,135.4377091,0,135.4377091,2.471600312,132.9661088,0.966143512,2.87262086,0.115788278,-0.115788278,0.510352728,0.149465083,2.412390272,77.59076369,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41377357,1.790666013,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.74776854,74.58319336,78.16154211,76.37385938,456.7762504,0,0.556705917,56.17170536,-0.556705917,123.8282946,0.960185973,0,516.7516907,76.37385938,566.7368542,11,11,10% -11/6/2018 20:00,53.99863961,182.1855825,570.8584047,829.0874321,83.51711363,629.8781262,544.5759899,85.30213629,80.99876451,4.303371786,140.9295785,0,140.9295785,2.518349121,138.4112294,0.942454053,3.179738265,0.519706594,-0.519706594,0.441278628,0.146300927,2.250749866,72.39185258,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.85909338,1.824535366,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.630660616,69.58580226,79.489754,71.41033763,544.5759899,0,0.65683783,48.9408487,-0.65683783,131.0591513,0.97387771,0,609.8401717,71.41033763,656.5768095,11,12,8% -11/6/2018 21:00,56.25264893,199.5465522,533.3758011,814.4685005,80.91265605,655.1468311,572.6531781,82.49365302,78.47284093,4.020812088,131.7629533,0,131.7629533,2.439815116,129.3231382,0.981793937,3.482744347,0.952991669,-0.952991669,0.367182516,0.151699151,1.862361315,59.89994171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.43107956,1.767637746,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349274433,57.57810237,76.780354,59.34574012,572.6531781,0,0.703100461,45.32371325,-0.703100461,134.6762868,0.978886407,0,637.342766,59.34574012,676.183366,11,13,6% -11/6/2018 22:00,61.71399441,215.1162707,438.9532297,770.3328756,73.91317141,608.3394371,533.3460057,74.99343144,71.68441658,3.30901486,108.6580474,0,108.6580474,2.228754829,106.4292926,1.077112397,3.754487198,1.524380867,-1.524380867,0.269469208,0.168385072,1.298721122,41.77133561,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.90578787,1.614725286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.940919032,40.15219663,69.8467069,41.76692192,533.3460057,0,0.69235784,46.18295666,-0.69235784,133.8170433,0.977783009,0,591.3433691,41.76692192,618.6789841,11,14,5% -11/6/2018 23:00,69.60666527,228.3476266,295.8464152,672.756748,61.41557373,482.5432377,420.7493548,61.79388283,59.56366758,2.230215244,73.5832947,0,73.5832947,1.851906147,71.73138855,1.21486549,3.985417924,2.500077926,-2.500077926,0.102615184,0.20759276,0.644322063,20.72361237,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.25486289,1.3416997,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.466809141,19.92032448,57.72167204,21.26202417,420.7493548,0,0.625410828,51.2876525,-0.625410828,128.7123475,0.970052551,0,465.8706572,21.26202417,479.7862268,11,15,3% -11/6/2018 0:00,79.15359663,239.5217512,121.7639359,441.094304,38.76022165,262.2044898,223.6951239,38.50936594,37.59145796,0.917907982,30.69183969,0,30.69183969,1.168763693,29.523076,1.381490876,4.180443189,5.132179454,-5.132179454,0,0.318322674,0.292190923,9.39786449,0.25788535,1,0.192437798,0,0.939905278,0.978667241,0.724496596,1,36.4137589,0.846765317,0.039314651,0.312029739,0.894566648,0.619063244,0.961238037,0.922476074,0.201644327,9.033584813,36.61540322,9.88035013,166.0074285,0,0.507136732,59.52670359,-0.507136732,120.4732964,0.95140726,0,194.5560759,9.88035013,201.0225675,11,16,3% -11/6/2018 1:00,89.45093982,249.2364492,0.31229802,4.240331404,0.271663936,1.75409344,1.488266939,0.2658265,0.263472266,0.002354234,0.083911941,0,0.083911941,0.00819167,0.075720271,1.561213419,4.349996655,104.3399981,-104.3399981,0,0.869886836,0.002047918,0.065868067,0.945394092,1,0.009583759,0,0.960381988,0.999143951,0.724496596,1,0.253591693,0.005934837,0.111482281,0.312029739,0.732894134,0.45739073,0.961238037,0.922476074,0.001470098,0.063314891,0.25506179,0.069249728,0.081268167,0,0.350978921,69.45279804,-0.350978921,110.547202,0.907541302,0,0.328816008,0.069249728,0.37413857,11,17,14% -11/6/2018 2:00,101.2863592,258.1360371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.767780456,4.505323766,-4.960285558,4.960285558,0.621587522,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.148120239,81.48199268,-0.148120239,98.51800732,0.712436407,0,0,0,0,11,18,0% -11/6/2018 3:00,113.0243373,266.8842683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97264682,4.658009203,-2.251639865,2.251639865,0.915206784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.066329,93.80316393,0.066329,86.19683607,0,0,0,0,0,11,19,0% -11/6/2018 4:00,124.8577325,276.2910355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.179178528,4.822188263,-1.287205106,1.287205106,0.750278727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.285451735,106.5858528,0.285451735,73.41414716,0,0.87483904,0,0,0,11,20,0% -11/6/2018 5:00,136.4427662,287.6268726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38137551,5.020035945,-0.753088181,0.753088181,0.658939353,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494324023,119.6251855,0.494324023,60.37481445,0,0.94885177,0,0,0,11,21,0% -11/6/2018 6:00,147.1546278,303.3435262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.568332765,5.294343297,-0.385419952,0.385419952,0.596064383,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678722809,132.7439193,0.678722809,47.25608073,0,0.976332224,0,0,0,11,22,0% -11/6/2018 7:00,155.5110842,328.1700559,0,0,0,0,0,0,0,0,0,0,0,0,0,2.714180442,5.727647982,-0.093379455,0.093379455,0.546122517,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826094672,145.6996317,0.826094672,34.30036834,0,0.989474249,0,0,0,11,23,0% -11/7/2018 8:00,158.3804423,4.783754747,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764260189,0.083492271,0.166136459,-0.166136459,0.501742682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926410603,157.8820323,0.926410603,22.11796775,0,0.996028252,0,0,0,11,0,0% -11/7/2018 9:00,153.8501305,39.09871493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.685191332,0.682401309,0.42128249,-0.42128249,0.458110141,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972848707,166.6180175,0.972848707,13.38198253,0,0.998604547,0,0,0,11,1,0% -11/7/2018 10:00,144.7079455,61.18201087,0,0,0,0,0,0,0,0,0,0,0,0,0,2.525630103,1.067827533,0.699464938,-0.699464938,0.41053814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.962258426,164.2085105,0.962258426,15.79148952,0,0.998038907,0,0,0,11,2,0% -11/7/2018 11:00,133.7040221,75.51088119,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333575409,1.317913498,1.041457176,-1.041457176,0.352054023,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.895374724,153.5566025,0.895374724,26.44339746,0,0.994157459,0,0,0,11,3,0% -11/7/2018 12:00,122.0284479,86.22507811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.129798197,1.504911511,1.534899236,-1.534899236,0.267670461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.776767681,140.9655726,0.776767681,39.03442739,0,0.98563069,0,0,0,11,4,0% -11/7/2018 13:00,110.2058146,95.39070031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92345432,1.664881796,2.454613894,-2.454613894,0.110389992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.614530921,127.9178441,0.614530921,52.08215593,0,0.968637129,0,0,0,11,5,0% -11/7/2018 14:00,98.55191651,104.1216999,0,0,0,0,0,0,0,0,0,0,0,0,0,1.720055427,1.817266486,5.505132442,-5.505132442,0,#DIV/0!,0,0,0.291423089,1,0.17968941,0,0.941581066,0.980343029,0.724496596,1,0,0,0.043806269,0.312029739,0.88329497,0.607791566,0.961238037,0.922476074,0,0,0,0,0,0,-0.419730051,114.8175457,0.419730051,65.18245434,0,0.930875816,0,0,0,11,6,0% -11/7/2018 15:00,87.10224316,113.1723237,9.813451987,67.95211578,6.378211626,6.259862958,0,6.259862958,6.185885012,0.073977946,16.27160611,13.69989445,2.571711664,0.192326614,2.37938505,1.520220929,1.97522967,-14.40774205,14.40774205,0,0.649945772,0.048081653,1.546471253,1,0.498501193,0,0.069295996,0.961238037,1,0.546853374,0.822356779,5.946107965,0.131747193,0.115824807,0.110866109,0.724496596,0.448993192,0.988758549,0.949996586,0.034834994,1.499024697,5.98094296,1.630771889,0,6.870480722,-0.201611006,101.6311821,0.201611006,78.36881787,0,0.801997667,5.98094296,7.140881397,10.65450702,11,7,78% -11/7/2018 16:00,76.84732362,123.192966,162.8164617,515.8251207,45.4421774,52.6691979,7.369890555,45.29930735,44.07192808,1.227379262,40.84698548,0,40.84698548,1.370249312,39.47673617,1.341238819,2.150122873,-2.563892756,2.563892756,0.968605174,0.279100632,1.199600588,38.58327852,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,42.36361363,0.992740962,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869106543,37.0877149,43.23272017,38.08045587,7.369890555,0,0.014287576,89.18135435,-0.014287576,90.81864565,0,0,43.23272017,38.08045587,68.15561693,11,8,58% -11/7/2018 17:00,67.67732369,134.8206028,331.37721,701.9458807,64.76250702,221.3554307,156.0476908,65.30773987,62.80967849,2.498061384,82.29906966,0,82.29906966,1.952828535,80.34624113,1.181192127,2.353063418,-1.036195484,1.036195484,0.707353554,0.195434402,1.90988468,61.42845648,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.37505204,1.414817626,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.383704949,59.04736891,61.75875699,60.46218654,156.0476908,0,0.222307296,77.15541216,-0.222307296,102.8445878,0.825086104,0,190.5115383,60.46218654,230.0828301,11,9,21% -11/7/2018 18:00,60.34622283,148.6014891,463.0942207,782.9735668,75.71198289,394.947297,318.0273099,76.91998711,73.42898726,3.490999848,114.565551,0,114.565551,2.282995632,112.2825553,1.05324028,2.593585259,-0.347135955,0.347135955,0.589517434,0.16349153,2.292287749,73.7278537,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.58273556,1.654022564,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.660754671,70.87001735,72.24349023,72.52403991,318.0273099,0,0.406178859,66.03497838,-0.406178859,113.9650216,0.92690152,0,367.0234873,72.52403991,414.4890209,11,10,13% -11/7/2018 19:00,55.64652349,164.6513764,543.6089557,818.790108,81.56828933,536.1311212,452.9244628,83.20665838,79.10870445,4.097953929,134.2638699,0,134.2638699,2.459584878,131.804285,0.971215052,2.873708636,0.118639426,-0.118639426,0.509865153,0.150049569,2.390785971,76.89589511,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.04229576,1.781960871,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.732116298,73.91525926,77.77441206,75.69722013,452.9244628,0,0.553163086,56.41571433,-0.553163086,123.5842857,0.959610744,0,512.4055926,75.69722013,561.9479092,11,11,10% -11/7/2018 20:00,54.29268337,182.1576658,566.0844499,827.4879469,83.12532244,625.3947083,540.5085373,84.88617097,80.61878727,4.267383699,139.760264,0,139.760264,2.506535171,137.2537288,0.947586085,3.179251026,0.524727514,-0.524727514,0.44042,0.146842618,2.230092866,71.72745245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.49384481,1.815976199,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.61569469,68.94715558,79.1095395,70.76313178,540.5085373,0,0.653192037,49.21729765,-0.653192037,130.7827023,0.973452833,0,605.2691064,70.76313178,651.5821609,11,12,8% -11/7/2018 21:00,56.53200269,199.4337816,528.7260457,812.745633,80.52029278,650.5440603,568.4659912,82.07806913,78.09230886,3.985760268,130.6237351,0,130.6237351,2.427983915,128.1957512,0.98666958,3.480776129,0.960826982,-0.960826982,0.365842599,0.152291141,1.843091886,59.28017065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.06529766,1.759066082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.335313797,56.98235486,76.40061146,58.74142094,568.4659912,0,0.699438998,45.61798795,-0.699438998,134.382012,0.978514138,0,632.6526206,58.74142094,671.0977057,11,13,6% -11/7/2018 22:00,61.96675192,214.9448545,434.5329725,768.1654068,73.50763871,603.6557459,529.0889406,74.56680528,71.29111219,3.275693094,107.5740766,0,107.5740766,2.216526521,105.35755,1.081523848,3.751495422,1.537409063,-1.537409063,0.267241256,0.169164697,1.281445133,41.21568042,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52772872,1.605865919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.928402637,39.61807973,69.45613136,41.22394565,529.0889406,0,0.688769549,46.46721325,-0.688769549,133.5327867,0.977406779,0,586.5912487,41.22394565,613.5714966,11,14,5% -11/7/2018 23:00,69.82995392,228.1434408,291.7823257,669.4234024,60.96010732,477.6902645,416.3687509,61.32151359,59.12193516,2.199578421,72.58417517,0,72.58417517,1.838172155,70.74600301,1.218762612,3.981854209,2.526628316,-2.526628316,0.0980748,0.208923235,0.630196661,20.26929091,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.83025289,1.331749469,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.456575336,19.4836134,57.28682823,20.81536287,416.3687509,0,0.62198117,51.53904524,-0.62198117,128.4609548,0.969611714,0,461.0028465,20.81536287,474.6260852,11,15,3% -11/7/2018 0:00,79.34981326,239.2997136,118.388596,434.3563682,38.11421552,256.7515118,218.8941172,37.85739454,36.9649313,0.892463244,29.85396999,0,29.85396999,1.149284225,28.70468576,1.384915502,4.176567901,5.22522295,-5.22522295,0,0.321941613,0.287321056,9.241232825,0.266546022,1,0.189092942,0,0.940348448,0.979110411,0.724496596,1,35.81083307,0.832652508,0.04048676,0.312029739,0.891609879,0.616106475,0.961238037,0.922476074,0.198119594,8.883024499,36.00895266,9.715677007,160.548761,0,0.503950519,59.73828976,-0.503950519,120.2617102,0.95078391,0,188.6561314,9.715677007,195.0148477,11,16,3% -11/7/2018 1:00,89.60229573,249.0014387,0.184509426,3.094253037,0.163031618,1.237799717,1.078293194,0.159506523,0.158115613,0.00139091,0.049652451,0,0.049652451,0.004916005,0.044736447,1.563855078,4.345894947,144.0420981,-144.0420981,0,0.883595061,0.001229001,0.039528903,0.960163324,1,0.006942303,0,0.960620147,0.99938211,0.724496596,1,0.152133197,0.003561629,0.112672378,0.312029739,0.730577613,0.455074209,0.961238037,0.922476074,0.000884392,0.037996685,0.153017589,0.041558314,0.042955617,0,0.348482552,69.60547074,-0.348482552,110.3945293,0.906520794,0,0.191957749,0.041558314,0.219156835,11,17,14% -11/7/2018 2:00,101.4491093,257.8862275,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770620981,4.500963766,-4.890903796,4.890903796,0.633452502,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145517507,81.63275198,-0.145517507,98.36724802,0.706398732,0,0,0,0,11,18,0% -11/7/2018 3:00,113.1797751,266.6131302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975359722,4.653276951,-2.237962697,2.237962697,0.912867851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068593467,93.9332046,0.068593467,86.0667954,0,0,0,0,0,11,19,0% -11/7/2018 4:00,125.0144002,275.9880262,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181912897,4.816899752,-1.283055276,1.283055276,0.749569064,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.287385675,106.7015048,0.287385675,73.29849524,0,0.876017772,0,0,0,11,20,0% -11/7/2018 5:00,136.6127355,287.2790949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384342034,5.013966078,-0.752115958,0.752115958,0.658773093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495957869,119.7329331,0.495957869,60.26706686,0,0.949184985,0,0,0,11,21,0% -11/7/2018 6:00,147.3566517,302.9503852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571858747,5.287481693,-0.385961483,0.385961483,0.59615699,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680107601,132.8520519,0.680107601,47.14794807,0,0.976482221,0,0,0,11,22,0% -11/7/2018 7:00,155.7679692,327.8277618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.718663931,5.721673823,-0.094901996,0.094901996,0.546382887,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827298552,145.8222259,0.827298552,34.17777412,0,0.989562326,0,0,0,11,23,0% -11/8/2018 8:00,158.6733418,4.79750227,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769372249,0.08373221,0.16374695,-0.16374695,0.502151312,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927514126,158.05057,0.927514126,21.94942999,0,0.996092465,0,0,0,11,0,0% -11/8/2018 9:00,154.1076268,39.41623763,0,0,0,0,0,0,0,0,0,0,0,0,0,2.689685491,0.687943125,0.417882299,-0.417882299,0.458691608,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973939289,166.8907313,0.973939289,13.10926866,0,0.998662098,0,0,0,11,1,0% -11/8/2018 10:00,144.9210389,61.52992984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.529349284,1.073899864,0.694603711,-0.694603711,0.411369459,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.963424324,164.4558673,0.963424324,15.54413268,0,0.998101788,0,0,0,11,2,0% -11/8/2018 11:00,133.8924635,75.82062915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336864331,1.32331962,1.034068348,-1.034068348,0.353317587,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.896698943,153.7274944,0.896698943,26.2725056,0,0.994239925,0,0,0,11,3,0% -11/8/2018 12:00,122.2075799,86.4976609,0,0,0,0,0,0,0,0,0,0,0,0,0,2.132924641,1.509668978,1.522151689,-1.522151689,0.26985042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.778322247,141.1072176,0.778322247,38.89278243,0,0.985759256,0,0,0,11,4,0% -11/8/2018 13:00,110.3857984,95.63589358,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92659563,1.669161226,2.426066667,-2.426066667,0.115271855,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.616371905,128.0516731,0.616371905,51.9483269,0,0.968880144,0,0,0,11,5,0% -11/8/2018 14:00,98.7401604,104.3472843,0,0,0,0,0,0,0,0,0,0,0,0,0,1.723340903,1.821203676,5.370357311,-5.370357311,0,#DIV/0!,0,0,0.279659048,1,0.184098909,0,0.941005512,0.979767475,0.724496596,1,0,0,0.04224518,0.312029739,0.887194432,0.611691028,0.961238037,0.922476074,0,0,0,0,0,0,-0.421893684,114.9542015,0.421893684,65.04579845,0,0.93148673,0,0,0,11,6,0% -11/8/2018 15:00,87.29415229,113.3823418,8.439336539,59.83516537,5.614614179,5.508932129,0,5.508932129,5.445312846,0.063619284,14.41812363,12.20260744,2.215516184,0.169301333,2.046214851,1.523570375,1.978895178,-15.3781125,15.3781125,0,0.665290945,0.042325333,1.361328211,1,0.537029709,0,0.06493606,0.961238037,1,0.556910682,0.832414086,5.23424183,0.115880088,0.115824807,0.122217983,0.724496596,0.448993192,0.98744479,0.948682827,0.03066456,1.319806547,5.26490639,1.435686635,0,5.649444719,-0.203937056,101.7672824,0.203937056,78.23271763,0,0.804826312,5.26490639,5.982508394,9.180338483,11,7,74% -11/8/2018 16:00,77.06839825,123.3865123,158.8732056,509.6736216,44.8145099,50.51169781,5.850857397,44.66084041,43.46318708,1.197653332,39.87197089,0,39.87197089,1.351322821,38.52064807,1.345097299,2.153500892,-2.59749532,2.59749532,0.97435155,0.282077206,1.175600215,37.81134401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.77846862,0.979028784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.851718354,36.34570209,42.63018698,37.32473087,5.850857397,0,0.011479616,89.34225201,-0.011479616,90.65774799,0,0,42.63018698,37.32473087,67.05847684,11,8,57% -11/8/2018 17:00,67.92259415,134.989463,326.9341038,698.7623891,64.29806568,217.9879319,153.1641228,64.82380913,62.35924176,2.464567372,81.2077825,0,81.2077825,1.938823915,79.26895859,1.185472904,2.356010584,-1.042372746,1.042372746,0.708409928,0.196669803,1.887259445,60.70075117,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.94207513,1.404671326,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.367313043,58.34787089,61.30938817,59.75254221,153.1641228,0,0.219193427,77.33833648,-0.219193427,102.6616635,0.82189097,0,187.1935977,59.75254221,226.3004415,11,9,21% -11/8/2018 18:00,60.61559789,148.7273988,458.4316044,780.8451324,75.29700868,391.0223762,314.539999,76.48237713,73.02652605,3.455851076,113.4225326,0,113.4225326,2.270482628,111.15205,1.057941761,2.595782797,-0.34713706,0.34713706,0.589517623,0.164249166,2.270283389,73.02011783,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.19587454,1.644956935,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.644812587,70.18971471,71.84068713,71.83467165,314.539999,0,0.402819952,66.2454139,-0.402819952,113.7545861,0.925875066,0,363.0654295,71.83467165,410.0797854,11,10,13% -11/8/2018 19:00,55.93337178,164.7081617,538.8640892,817.0787495,81.17203678,531.8779613,449.0913758,82.7865855,78.72440038,4.062185122,133.1014736,0,133.1014736,2.447636402,130.6538372,0.976221499,2.874699726,0.121384589,-0.121384589,0.509395702,0.150635454,2.369464878,76.21013545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.67288807,1.773304241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.716669238,73.25608099,77.38955731,75.02938523,449.0913758,0,0.549630468,56.65833474,-0.549630468,123.3416653,0.959029788,0,508.0815645,75.02938523,557.1867965,11,11,10% -11/8/2018 20:00,54.58203898,182.1260635,561.3711785,825.891535,82.73674906,620.9465251,536.4727412,84.47378387,80.24193081,4.231853068,138.6057598,0,138.6057598,2.49481825,136.1109416,0.952636293,3.178699462,0.529640282,-0.529640282,0.439579867,0.147383322,2.209774003,71.07392797,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,77.13159604,1.80748733,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.600973743,68.31896299,78.73256978,70.12645032,536.4727412,0,0.649568035,49.49095855,-0.649568035,130.5090414,0.973025769,0,600.7343713,70.12645032,646.6307305,11,12,8% -11/8/2018 21:00,56.80612905,199.3194271,524.1508102,811.0319154,80.13215854,645.9930582,564.3259097,81.66714851,77.7158783,3.951270209,129.5027126,0,129.5027126,2.416280236,127.0864323,0.991453987,3.478780267,0.968534446,-0.968534446,0.364524545,0.152879967,1.82420667,58.67275717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.70345829,1.750586806,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.321631522,56.39848592,76.02508981,58.14907272,564.3259097,0,0.69581221,45.90802474,-0.69581221,134.0919753,0.978141531,0,628.0156992,58.14907272,666.0731043,11,13,6% -11/8/2018 22:00,62.21410063,214.7733862,430.2000532,766.0154294,73.10746105,599.0421968,524.8961658,74.14603108,70.90300136,3.243029718,106.5114433,0,106.5114433,2.204459688,104.3069836,1.085840897,3.748502735,1.550269868,-1.550269868,0.265041928,0.169938289,1.264585211,40.67340736,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15466183,1.59712354,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.91618768,39.09682625,69.07084951,40.69394979,524.8961658,0,0.685229234,46.74636225,-0.685229234,133.2536378,0.977031718,0,581.9110521,40.69394979,608.5444283,11,14,5% -11/8/2018 23:00,70.04780656,227.9400562,287.8164023,666.1224515,60.51146682,472.9280419,412.0715374,60.85650445,58.68682284,2.169681614,71.60906294,0,71.60906294,1.824643988,69.78441895,1.222564858,3.978304478,2.552964351,-2.552964351,0.093571073,0.210243288,0.61649696,19.82866143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.41200637,1.321948358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.446649949,19.06006358,56.85865632,20.38201194,412.0715374,0,0.618612293,51.78513254,-0.618612293,128.2148675,0.969173931,0,456.2276481,20.38201194,469.5672672,11,15,3% -11/8/2018 0:00,79.54057511,239.0789022,115.1213556,427.6944252,37.47806514,251.4208447,214.2050481,37.2157966,36.34796319,0.867833406,29.04260744,0,29.04260744,1.130101943,27.9125055,1.388244925,4.172714015,5.318817277,-5.318817277,0,0.325552674,0.282525486,9.086990798,0.27505639,1,0.185842248,0,0.940776769,0.979538732,0.724496596,1,35.21670578,0.818755011,0.041630191,0.312029739,0.88873591,0.613232506,0.961238037,0.922476074,0.194663303,8.734761196,35.41136908,9.553516207,155.286581,0,0.500836662,59.94463145,-0.500836662,120.0553686,0.950167053,0,182.9595621,9.553516207,189.2121474,11,16,3% -11/8/2018 1:00,89.74750064,248.7678602,0.094826245,2.231845189,0.084990658,0.855537247,0.77239453,0.083142716,0.082427876,0.00071484,0.025554503,0,0.025554503,0.002562782,0.022991721,1.566389382,4.341818234,226.8606195,-226.8606195,0,0.896277793,0.000640695,0.020606969,0.974532219,1,0.004407964,0,0.960847063,0.999609026,0.724496596,1,0.079281954,0.001856727,0.11381904,0.312029739,0.728356436,0.452853032,0.961238037,0.922476074,0.000462159,0.019808202,0.079744113,0.021664929,0.019671175,0,0.346078901,69.75233019,-0.346078901,110.2476698,0.905524275,0,0.09755684,0.021664929,0.111736102,11,17,15% -11/8/2018 2:00,101.6062414,257.637933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773363454,4.496630209,-4.825729063,4.825729063,0.644598037,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143002824,81.77835582,-0.143002824,98.22164418,0.700356554,0,0,0,0,11,18,0% -11/8/2018 3:00,113.3293954,266.3434667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977971089,4.648570435,-2.225004988,2.225004988,0.910651952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.07076663,94.05802111,0.07076663,85.94197889,0,0,0,0,0,11,19,0% -11/8/2018 4:00,125.1649499,275.6861987,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184540484,4.81163187,-1.279166723,1.279166723,0.748904083,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289228513,106.8117739,0.289228513,73.18822614,0,0.877126311,0,0,0,11,20,0% -11/8/2018 5:00,136.7761853,286.9315146,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387194771,5.007899657,-0.75126912,0.75126912,0.658628276,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.497504251,119.8350195,0.497504251,60.16498049,0,0.949498346,0,0,0,11,21,0% -11/8/2018 6:00,147.5518003,302.554496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.575264733,5.280572122,-0.386570561,0.386570561,0.596261149,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681411753,132.9540611,0.681411753,47.04593885,0,0.976622927,0,0,0,11,22,0% -11/8/2018 7:00,156.0184407,327.4763737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723035485,5.715540943,-0.096460744,0.096460744,0.546649448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828431327,145.9379329,0.828431327,34.06206708,0,0.989644967,0,0,0,11,23,0% -11/9/2018 8:00,158.9618264,4.801532429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774407255,0.08380255,0.161342631,-0.161342631,0.502562475,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928558127,158.2111574,0.928558127,21.78884261,0,0.996153075,0,0,0,11,0,0% -11/9/2018 9:00,154.3622046,39.72751907,0,0,0,0,0,0,0,0,0,0,0,0,0,2.69412871,0.693376011,0.414486593,-0.414486593,0.459272308,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974983185,167.1570969,0.974983185,12.84290315,0,0.998717064,0,0,0,11,1,0% -11/9/2018 10:00,145.1323348,61.87164511,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533037094,1.079863921,0.689771102,-0.689771102,0.412195884,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.964556735,164.6998516,0.964556735,15.30014835,0,0.998162717,0,0,0,11,2,0% -11/9/2018 11:00,134.0799163,76.12438163,0,0,0,0,0,0,0,0,0,0,0,0,0,2.340136001,1.3286211,1.026750322,-1.026750322,0.354569043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.89800233,153.8967123,0.89800233,26.10328769,0,0.994320857,0,0,0,11,3,0% -11/9/2018 12:00,122.3861987,86.76454249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.136042127,1.51432694,1.50957933,-1.50957933,0.27200042,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.77986722,141.2484198,0.77986722,38.7515802,0,0.985886522,0,0,0,11,4,0% -11/9/2018 13:00,110.5654795,95.87554448,0,0,0,0,0,0,0,0,0,0,0,0,0,1.929731655,1.673343923,2.398116561,-2.398116561,0.120051605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.618212341,128.1857073,0.618212341,51.81429268,0,0.96912164,0,0,0,11,5,0% -11/9/2018 14:00,98.92809155,104.5673002,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72662092,1.825043679,5.241692503,-5.241692503,0,#DIV/0!,0,0,0.268058026,1,0.188512803,0,0.94042506,0.979187024,0.724496596,1,0,0,0.04069051,0.312029739,0.891097005,0.615593601,0.961238037,0.922476074,0,0,0,0,0,0,-0.424063,115.0913688,0.424063,64.90863124,0,0.932092991,0,0,0,11,6,0% -11/9/2018 15:00,87.48472199,113.5865877,7.179367049,52.17625035,4.889571417,4.7962539,0,4.7962539,4.742132798,0.054121101,12.64996706,10.76180778,1.88815928,0.147438619,1.740720661,1.526896444,1.982459942,-16.48906226,16.48906226,0,0.681058843,0.036859655,1.1855332,1,0.574458924,0,0.060572075,0.961238037,1,0.567128825,0.842632229,4.558318421,0.100902102,0.115824807,0.133752545,0.724496596,0.448993192,0.986079574,0.947317611,0.026704694,1.14947493,4.585023116,1.250377032,0,4.579591264,-0.206258742,101.9031946,0.206258742,78.09680544,0,0.807586033,4.585023116,4.948790972,7.823907831,11,7,71% -11/9/2018 16:00,77.28844718,123.573954,154.9574491,503.4262853,44.18206853,48.379617,4.361666149,44.01795085,42.84981615,1.168134705,38.90347994,0,38.90347994,1.332252381,37.57122756,1.348937877,2.156772367,-2.632355642,2.632355642,0.980313017,0.285123876,1.151694664,37.04245933,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,41.18887315,0.965212315,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.834398864,35.60662089,42.02327202,36.5718332,4.361666149,0,0.008663962,89.50358534,-0.008663962,90.49641466,0,0,42.02327202,36.5718332,65.95880541,11,8,57% -11/9/2018 17:00,68.16613229,135.1519042,322.5184776,695.5463214,63.83325355,214.6301458,150.2904198,64.33972596,61.90844544,2.431280517,80.123147,0,80.123147,1.924808114,78.19833889,1.189723447,2.358845719,-1.048811435,1.048811435,0.709511008,0.197921229,1.864804183,59.97851274,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50875256,1.394516927,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351044282,57.65362784,60.85979684,59.04814477,150.2904198,0,0.216075357,77.52137622,-0.216075357,102.4786238,0.818599249,0,183.8874216,59.04814477,222.5332514,11,9,21% -11/9/2018 18:00,60.88224568,148.8469332,453.8061555,778.7053846,74.8833544,387.1109497,311.0646222,76.04632746,72.62534497,3.420982489,112.2885658,0,112.2885658,2.258009425,110.0305564,1.062595643,2.597869066,-0.347273187,0.347273187,0.589540902,0.165011764,2.248514231,72.31994688,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.81024403,1.635920142,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.629040906,69.51668376,71.43928493,71.1526039,311.0646222,0,0.399463813,66.45533688,-0.399463813,113.5446631,0.924832217,0,359.121869,71.1526039,405.6898252,11,10,13% -11/9/2018 19:00,56.21636677,164.759464,534.1689715,815.365617,80.778219,527.6488125,445.2795635,82.369249,78.34245766,4.026791341,131.9512129,0,131.9512129,2.435761343,129.5154515,0.981160694,2.875595121,0.124019936,-0.124019936,0.508945031,0.151222222,2.348438623,75.53385883,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.3057502,1.764700801,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.701435788,72.60601817,77.00718599,74.37071898,445.2795635,0,0.546110302,56.8994295,-0.546110302,123.1005705,0.958443405,0,503.7824468,74.37071898,552.456595,11,11,10% -11/9/2018 20:00,54.86659469,182.0908335,556.7213818,824.2996963,82.35161019,616.536582,532.4713758,84.06520623,79.8684053,4.196800936,137.4667494,0,137.4667494,2.483204892,134.9835445,0.957602727,3.178084583,0.534439441,-0.534439441,0.438759162,0.147922485,2.189803862,70.43161961,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.77254911,1.799073491,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.586505444,67.70155177,78.35905456,69.50062526,532.4713758,0,0.645968181,49.76169474,-0.645968181,130.2383053,0.972596807,0,596.2390143,69.50062526,641.7257836,11,12,8% -11/9/2018 21:00,57.0749265,199.203535,519.6527236,809.3291475,79.74847916,641.4969516,560.2358216,81.26113,77.34376827,3.917361733,128.4005301,0,128.4005301,2.404710887,125.9958192,0.996145388,3.476757568,0.976105567,-0.976105567,0.363229807,0.15346495,1.805714599,58.07798861,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.34577197,1.742204852,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30823408,55.82677175,75.65400605,57.5689766,560.2358216,0,0.69222247,46.19370486,-0.69222247,133.8062951,0.977768886,0,623.4351614,57.5689766,661.1129052,11,13,6% -11/9/2018 22:00,62.45594712,214.6019122,425.9568083,763.8854652,72.71289303,594.5020202,520.7706468,73.73137337,70.52033103,3.211042346,105.4707217,0,105.4707217,2.192562007,103.2781597,1.090061915,3.745509949,1.562947879,-1.562947879,0.262873861,0.17070485,1.248147791,40.14472342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.78682455,1.58850371,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.904278825,38.58863513,68.69110338,40.17713884,520.7706468,0,0.681739175,47.02030175,-0.681739175,132.9796982,0.976658168,0,577.3060093,40.17713884,603.6011431,11,14,5% -11/9/2018 23:00,70.2601391,227.7375318,283.950507,662.8583162,60.07000366,468.2600976,407.8608874,60.39921028,58.25867142,2.140538863,70.65842014,0,70.65842014,1.811332245,68.8470879,1.22627076,3.974769759,2.579049183,-2.579049183,0.089110304,0.211550965,0.603225038,19.4017908,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.00045094,1.312304046,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.437034487,18.6497393,56.43748543,19.96204335,407.8608874,0,0.615306284,52.0258212,-0.615306284,127.9741788,0.968739656,0,451.5485014,19.96204335,464.6132595,11,15,3% -11/9/2018 0:00,79.7258104,238.8593934,111.9629661,421.1194061,36.85253839,246.2172741,209.6319516,36.58532252,35.74129839,0.844024132,28.25795739,0,28.25795739,1.111240004,27.14671739,1.39147789,4.168882865,5.412811921,-5.412811921,0,0.329149358,0.277810001,8.935324596,0.283406684,1,0.182686991,0,0.941190274,0.979952237,0.724496596,1,34.63213287,0.8050896,0.042744167,0.312029739,0.885945911,0.610442507,0.961238037,0.922476074,0.191278301,8.588973874,34.82341118,9.394063474,150.2208554,0,0.49779694,60.14564657,-0.49779694,119.8543534,0.949557438,0,177.4667418,9.394063474,183.6149684,11,16,3% -11/9/2018 1:00,89.88677297,248.53581,0.03418755,1.593142132,0.031039209,0.578027181,0.547666198,0.030360982,0.030103262,0.00025772,0.009225114,0,0.009225114,0.000935947,0.008289167,1.568820142,4.337768194,505.8597669,-505.8597669,0,0.907909732,0.000233987,0.007525816,0.988502702,1,0.00197683,0,0.961063279,0.999825243,0.724496596,1,0.028944556,0.00067809,0.114923487,0.312029739,0.726227055,0.450723651,0.961238037,0.922476074,0.000169186,0.0072341,0.029113742,0.00791219,0.006296681,0,0.343764808,69.89358674,-0.343764808,110.1064133,0.90455172,0,0.034809416,0.00791219,0.039987786,11,17,15% -11/9/2018 2:00,101.757703,257.3912728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.776006957,4.492325177,-4.764524297,4.764524297,0.655064669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.140577273,81.91874807,-0.140577273,98.08125193,0.694323732,0,0,0,0,11,18,0% -11/9/2018 3:00,113.4731539,266.0754282,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980480148,4.64389228,-2.212748781,2.212748781,0.908556017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.072847813,94.17757271,0.072847813,85.82242729,0,0,0,0,0,11,19,0% -11/9/2018 4:00,125.309341,275.3857496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187060584,4.806388044,-1.275535831,1.275535831,0.748283163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.290979967,106.9166343,0.290979967,73.08336566,0,0.878166865,0,0,0,11,20,0% -11/9/2018 5:00,136.9330684,286.584397,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389932899,5.001841313,-0.750546413,0.750546413,0.658504685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498963249,119.9314328,0.498963249,60.06856722,0,0.949792219,0,0,0,11,21,0% -11/9/2018 6:00,147.7399959,302.1561917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.578549365,5.2736204,-0.387246414,0.387246414,0.596376727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682635641,133.0499462,0.682635641,46.9500538,0,0.976754484,0,0,0,11,22,0% -11/9/2018 7:00,156.2623635,327.1160332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.72729274,5.709251816,-0.098054952,0.098054952,0.546922074,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829493585,146.046752,0.829493585,33.95324799,0,0.989722258,0,0,0,11,23,0% -11/10/2018 8:00,159.2457806,4.795485242,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779363191,0.083697007,0.158924396,-0.158924396,0.502976017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929543314,158.3637376,0.929543314,21.63626238,0,0.996210145,0,0,0,11,0,0% -11/10/2018 9:00,154.6138139,40.03219849,0,0,0,0,0,0,0,0,0,0,0,0,0,2.698520122,0.69869367,0.411096524,-0.411096524,0.459852044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975981116,167.4169138,0.975981116,12.58308615,0,0.998769501,0,0,0,11,1,0% -11/10/2018 10:00,145.3418067,62.20690352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.536693067,1.085715284,0.684968646,-0.684968646,0.413017152,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.965656289,164.9404469,0.965656289,15.05955306,0,0.998221742,0,0,0,11,2,0% -11/10/2018 11:00,134.2663501,76.42196324,0,0,0,0,0,0,0,0,0,0,0,0,0,2.343389884,1.333814879,1.019505147,-1.019505147,0.355808041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.899285323,154.0642846,0.899285323,25.93571544,0,0.994400294,0,0,0,11,3,0% -11/10/2018 12:00,122.5642608,87.02559095,0,0,0,0,0,0,0,0,0,0,0,0,0,2.139149897,1.518883096,1.497184447,-1.497184447,0.27412007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.781402757,141.3891905,0.781402757,38.61080946,0,0.986012511,0,0,0,11,4,0% -11/10/2018 13:00,110.7447982,96.10954728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.932861358,1.677428043,2.370759381,-2.370759381,0.124729958,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.62005204,128.3199348,0.62005204,51.68006519,0,0.969361607,0,0,0,11,5,0% -11/10/2018 14:00,99.1156332,104.7816614,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72989414,1.828784987,5.11880218,-5.11880218,0,#DIV/0!,0,0,0.256623322,1,0.192928336,0,0.939840078,0.978602041,0.724496596,1,0,0,0.039143132,0.312029739,0.895000233,0.619496828,0.961238037,0.922476074,0,0,0,0,0,0,-0.426237418,115.2290131,0.426237418,64.77098689,0,0.932694485,0,0,0,11,6,0% -11/10/2018 15:00,87.67378549,113.7849942,6.034664027,45.01732134,4.207458259,4.126079715,0,4.126079715,4.080587869,0.045491846,10.97948341,9.389438857,1.590044551,0.12687039,1.46317416,1.530196225,1.985922788,-17.77199361,17.77199361,0,0.697214997,0.031717598,1.020146967,1,0.610795534,0,0.056209036,0.961238037,1,0.577496069,0.852999473,3.922416272,0.086871103,0.115824807,0.145458028,0.724496596,0.448993192,0.984663076,0.945901113,0.022979291,0.989110777,3.945395564,1.07598188,0,3.654411535,-0.208573913,102.038793,0.208573913,77.96120702,0,0.810276828,3.945395564,4.037066867,6.587575087,11,7,67% -11/10/2018 16:00,77.50735864,123.7552478,151.0716818,497.0852272,43.54507667,46.27484876,2.903974658,43.3708741,42.23203195,1.138842151,37.94212304,0,37.94212304,1.313044726,36.62907831,1.352758603,2.15993654,-2.668514135,2.668514135,0.986496483,0.288241159,1.127896457,36.27702717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,40.59503548,0.951296434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.817157143,34.87085838,41.41219262,35.82215481,2.903974658,0,0.005842006,89.66527583,-0.005842006,90.33472417,0,0,41.41219262,35.82215481,64.85707651,11,8,57% -11/10/2018 17:00,68.40781404,135.3079157,318.1328982,692.2993654,63.3682924,211.2842146,147.4284899,63.85572475,61.45750458,2.398220167,79.04579221,0,79.04579221,1.91078782,77.13500439,1.193941589,2.361568633,-1.055515281,1.055515281,0.710657433,0.199188115,1.842531052,59.26213228,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.07529105,1.384359271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.334907475,56.96501569,60.41019853,58.34937496,147.4284899,0,0.212954825,77.70443105,-0.212954825,102.295569,0.815208419,0,180.5951446,58.34937496,218.7836435,11,9,21% -11/10/2018 18:00,61.14603729,148.96012,449.2206213,776.5558507,74.47123882,383.2155304,307.6034594,75.612071,72.2256562,3.386414795,111.1643231,0,111.1643231,2.24558262,108.9187405,1.067199675,2.599844549,-0.347547252,0.347547252,0.58958777,0.165778763,2.22699239,71.6277305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.42604798,1.626916964,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.613448406,68.85129905,71.03949638,70.47821601,307.6034594,0,0.396112474,66.66462569,-0.396112474,113.3353743,0.923773225,0,355.1953362,70.47821601,401.3219191,11,10,13% -11/10/2018 19:00,56.49538546,164.8053392,529.5264266,813.6521773,80.38705313,523.4464845,441.4916038,81.95488076,77.96308688,3.991793876,130.813779,0,130.813779,2.423966249,128.3898128,0.986030488,2.876395795,0.126541582,-0.126541582,0.508513805,0.151809332,2.327718778,74.86743739,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.94108458,1.756155296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.686424331,71.96542854,76.62750891,73.72158384,441.4916038,0,0.542604833,57.13886222,-0.542604833,122.8611378,0.957851908,0,499.511084,73.72158384,547.7603862,11,11,10% -11/10/2018 20:00,55.14623936,182.052033,552.1378391,822.7139837,81.97012476,612.1678878,528.5072165,83.66067131,79.49842306,4.162248255,136.3439132,0,136.3439132,2.471701699,133.8722115,0.962483447,3.177407386,0.539119422,-0.539119422,0.437958839,0.148459531,2.170192935,69.80086479,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.41690811,1.790739467,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.572297394,67.09524624,77.98920551,68.88598571,528.5072165,0,0.642394838,50.02937076,-0.642394838,129.9706292,0.972166249,0,591.7860836,68.88598571,636.8705835,11,12,8% -11/10/2018 21:00,57.33829405,199.0861516,515.234396,807.6391838,79.36948241,637.0588652,556.1986111,80.86025419,76.97619968,3.884054513,127.3178272,0,127.3178272,2.393282737,124.9245445,1.000742019,3.474708841,0.983531651,-0.983531651,0.361959871,0.154045388,1.787624479,57.49614815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.99245106,1.733925196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.295127849,55.26748457,75.28757891,57.00140977,556.1986111,0,0.688672147,46.47491047,-0.688672147,133.5250895,0.977396512,0,618.9141613,57.00140977,656.220444,11,13,6% -11/10/2018 22:00,62.69219863,214.4304795,421.8055474,761.778105,72.32419169,590.0384399,516.715341,73.32309885,70.14335047,3.179748388,104.4524797,0,104.4524797,2.180841227,102.2716385,1.094185281,3.742517884,1.575427259,-1.575427259,0.260739761,0.171463349,1.232139137,39.62983008,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4244565,1.580012045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.89268061,38.09370007,68.31713711,39.67371212,516.715341,0,0.678301644,47.28893035,-0.678301644,132.7110696,0.976286483,0,572.7793399,39.67371212,598.744991,11,14,5% -11/10/2018 23:00,70.46686832,227.5359275,280.1864635,659.6355345,59.63607424,463.6899532,403.7399627,59.94999048,57.83782657,2.112163913,69.73269963,0,69.73269963,1.798247672,67.93445196,1.229878866,3.971251101,2.604844485,-2.604844485,0.084699048,0.212844238,0.590382723,18.98873781,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.59591887,1.302824317,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.427730273,18.25269706,56.02364914,19.55552137,403.7399627,0,0.612065211,52.26101856,-0.612065211,127.7389814,0.968309358,0,446.9688332,19.55552137,459.7675309,11,15,3% -11/10/2018 0:00,79.90544863,238.6412649,108.9140835,414.6424406,36.23841653,241.1455433,205.1788084,35.96673493,35.14569457,0.821040367,27.50020248,0,27.50020248,1.092721964,26.40748051,1.394613169,4.165075804,5.507041976,-5.507041976,0,0.332724799,0.273180491,8.786423642,0.291587006,1,0.179628435,0,0.941588995,0.980350958,0.724496596,1,34.05788166,0.791673343,0.043827912,0.312029739,0.883241043,0.607737639,0.961238037,0.922476074,0.187967533,8.445844612,34.24584919,9.237517956,145.351334,0,0.49483311,60.34125398,-0.49483311,119.658746,0.948955832,0,172.1778452,9.237517956,178.223616,11,16,4% -11/10/2018 1:00,90.02040336,248.3053851,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571152433,4.333746521,-2806.926116,2806.926116,0,#DIV/0!,0,0,1,0.99791468,0,0.000356262,0.961238037,1,0.72348686,0.998990265,0,0,0.115824807,0.310882218,0.724496596,0.448993192,0.961419519,0.922657555,0,0,0,0,0,0,0.341535907,70.02952252,-0.341535907,109.9704775,0.903602509,0,0,0,0,11,17,0% -11/10/2018 2:00,101.9034433,257.1463675,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778550605,4.488050772,-4.707074303,4.707074303,0.664889196,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.138241913,82.0538739,-0.138241913,97.9461261,0.688315191,0,0,0,0,11,18,0% -11/10/2018 3:00,113.6110086,265.8091665,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982886166,4.639245137,-2.201177328,2.201177328,0.906577182,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.074836365,94.2918203,0.074836365,85.7081797,0,0,0,0,0,11,19,0% -11/10/2018 4:00,125.4475359,275.0868777,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189472539,4.801171744,-1.2721592,1.2721592,0.747705725,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292639787,107.0160625,0.292639787,72.98393749,0,0.879141483,0,0,0,11,20,0% -11/10/2018 5:00,137.0833415,286.2380133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392555659,4.995795776,-0.749946634,0.749946634,0.658402117,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50033497,120.0221639,0.50033497,59.9778361,0,0.950066949,0,0,0,11,21,0% -11/10/2018 6:00,147.9211651,301.7558207,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581711365,5.266632608,-0.387988283,0.387988283,0.596503594,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683779667,133.1397103,0.683779667,46.86028968,0,0.97687703,0,0,0,11,22,0% -11/10/2018 7:00,156.499604,326.746911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731433368,5.702809417,-0.099683869,0.099683869,0.547200635,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830485943,146.1486885,0.830485943,33.85131154,0,0.989794285,0,0,0,11,23,0% -11/11/2018 8:00,159.5250874,4.778996563,0,0,0,0,0,0,0,0,0,0,0,0,0,2.784238015,0.083409225,0.156493144,-0.156493144,0.503391786,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930470418,158.5082637,0.930470418,21.49173632,0,0.99626374,0,0,0,11,0,0% -11/11/2018 9:00,154.8624054,40.32990424,0,0,0,0,0,0,0,0,0,0,0,0,0,2.702858861,0.703889616,0.407713251,-0.407713251,0.460430617,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97693382,167.6699789,0.97693382,12.33002106,0,0.99881946,0,0,0,11,1,0% -11/11/2018 10:00,145.549428,62.53544767,0,0,0,0,0,0,0,0,0,0,0,0,0,2.540316744,1.091449461,0.68019788,-0.68019788,0.413833001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.966723625,165.1776399,0.966723625,14.82236012,0,0.99827891,0,0,0,11,2,0% -11/11/2018 11:00,134.4517342,76.71319699,0,0,0,0,0,0,0,0,0,0,0,0,0,2.346625447,1.338897867,1.012334848,-1.012334848,0.357034235,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.900548364,154.2302411,0.900548364,25.76975889,0,0.994478273,0,0,0,11,3,0% -11/11/2018 12:00,122.7417223,87.28067374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142247184,1.52333513,1.484969259,-1.484969259,0.27620899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.782929018,141.5295414,0.782929018,38.47045865,0,0.98613725,0,0,0,11,4,0% -11/11/2018 13:00,110.9236947,96.33779626,0,0,0,0,0,0,0,0,0,0,0,0,0,1.935983691,1.681411739,2.343990858,-2.343990858,0.129307645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.621890812,128.4543434,0.621890812,51.54565657,0,0.969600034,0,0,0,11,5,0% -11/11/2018 14:00,99.30270833,104.9902819,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733159217,1.832426102,5.001374999,-5.001374999,0,#DIV/0!,0,0,0.245358089,1,0.197342689,0,0.939250947,0.978012911,0.724496596,1,0,0,0.037603923,0.312029739,0.89890161,0.623398206,0.961238037,0.922476074,0,0,0,0,0,0,-0.428416356,115.3671,0.428416356,64.63289997,0,0.933291104,0,0,0,11,6,0% -11/11/2018 15:00,87.86117014,113.9774946,5.005310148,38.39525389,3.572362643,3.502374871,0,3.502374871,3.464642729,0.037732142,9.418118518,8.096803209,1.321315309,0.107719914,1.213595395,1.533466704,1.989282555,-19.26829815,19.26829815,0,0.713714543,0.026929979,0.866160682,1,0.646046108,0,0.051852199,0.961238037,1,0.587999361,0.863502765,3.330346375,0.073843602,0.115824807,0.157321021,0.724496596,0.448993192,0.9831958,0.944433837,0.019510678,0.839721865,3.349857053,0.913565468,0,2.86589501,-0.210880314,102.1739459,0.210880314,77.82605411,0,0.812898684,3.349857053,3.24324775,5.472497841,11,7,63% -11/11/2018 16:00,77.72502119,123.9303512,147.2183797,490.6528488,42.90377451,44.19925083,1.479389092,42.71986174,41.61006741,1.109794332,36.9885077,0,36.9885077,1.2937071,35.6948006,1.356557531,2.162992672,-2.706012043,2.706012043,0.992909003,0.291429471,1.104218202,35.5154531,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.99717951,0.93728639,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.800002328,34.13880441,40.79718184,35.0760908,1.479389092,0,0.003015144,89.8272447,-0.003015144,90.1727553,0,0,40.79718184,35.0760908,63.75378175,11,8,56% -11/11/2018 17:00,68.64751607,135.4574873,313.7799215,689.0233298,62.90341046,207.9522726,144.5802265,63.37204614,61.00664055,2.365405589,77.97634469,0,77.97634469,1.896769914,76.07957478,1.198125179,2.364179149,-1.062487858,1.062487858,0.711849814,0.200469839,1.82045218,58.55199988,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.64190339,1.374203346,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.318911408,56.28240942,59.9608148,57.65661276,144.5802265,0,0.209833572,77.88740068,-0.209833572,102.1125993,0.811715918,0,177.3188861,57.65661276,215.053986,11,9,21% -11/11/2018 18:00,61.40684493,149.0669868,444.6777369,774.398134,74.06088436,379.3386285,304.1587845,75.17984405,71.82767544,3.352168614,110.0504745,0,110.0504745,2.233208919,107.8172656,1.071751627,2.601709725,-0.347962162,0.347962162,0.589658724,0.166549567,2.205729916,70.94385626,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.04349373,1.61795226,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.598043816,68.19393312,70.64153755,69.81188538,304.1587845,0,0.392767972,66.8731593,-0.392767972,113.1268407,0.922698378,0,351.2883545,69.81188538,396.9788373,11,10,13% -11/11/2018 19:00,56.77030602,164.8458418,524.9392632,811.9399545,79.99875863,519.2737839,437.7300691,81.54371479,77.58650089,3.957213901,129.6898596,0,129.6898596,2.412257737,127.2776019,0.990828757,2.877102698,0.128945583,-0.128945583,0.508102696,0.152396218,2.307316822,74.21124034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.5790958,1.747672519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.671643183,71.33466697,76.25073898,73.08233949,437.7300691,0,0.539116306,57.37649778,-0.539116306,122.6235022,0.957255634,0,495.2703138,73.08233949,543.1012434,11,11,10% -11/11/2018 20:00,55.42086278,182.0097177,547.6233101,821.1360005,81.59251334,607.8434444,524.5830305,83.26041385,79.13219802,4.128215829,135.237927,0,135.237927,2.460315321,132.7776117,0.96727653,3.176668845,0.543674546,-0.543674546,0.437179866,0.148993865,2.150951594,69.18199712,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,76.06487867,1.782490075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.558357108,66.50036709,77.62323578,68.28285717,524.5830305,0,0.638850361,50.29385285,-0.638850361,129.7061472,0.971734411,0,587.3786178,68.28285717,632.0683822,11,12,8% -11/11/2018 21:00,57.59613147,198.9673228,510.8984126,805.9639305,78.99539754,632.6819136,552.2171507,80.46476288,76.61339485,3.851368038,126.2552378,0,126.2552378,2.382002698,123.8732351,1.005242131,3.472634887,0.990803812,-0.990803812,0.360716259,0.154620558,1.769944969,56.92751434,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.64370926,1.725752846,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.282319105,54.72089213,74.92602836,56.44664497,552.2171507,0,0.685163603,46.75152503,-0.685163603,133.248475,0.977024728,0,614.45584,56.44664497,651.3990403,11,13,6% -11/11/2018 22:00,62.92276317,214.2591355,417.7485491,759.696004,71.94161594,585.6546663,512.7331905,72.92147581,69.77231079,3.14916502,103.4572774,0,103.4572774,2.169305157,101.2879722,1.098209392,3.739527368,1.58769176,-1.58769176,0.258642408,0.172212725,1.216565336,39.12892312,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.06779905,1.571654202,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.881397444,37.61220924,67.94919649,39.18386344,512.7331905,0,0.674918899,47.55214745,-0.674918899,132.4478526,0.975917025,0,568.3342463,39.18386344,593.9793013,11,14,5% -11/11/2018 23:00,70.66791198,227.3353039,276.5260537,656.4587516,59.21003922,459.2211168,399.7119085,59.50920827,57.42463807,2.084570198,68.83234438,0,68.83234438,1.785401144,67.04694323,1.23338774,3.967749558,2.630310497,-2.630310497,0.080344103,0.214121015,0.577971596,18.58955328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.19874637,1.293517051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.418738453,17.8689857,55.61748482,19.16250275,399.7119085,0,0.608891126,52.49063272,-0.608891126,127.5093673,0.967883513,0,442.4920512,19.16250275,455.0335259,11,15,3% -11/11/2018 0:00,80.07942068,238.4245948,105.9752683,408.2748172,35.63649153,236.2103383,200.8495321,35.36080617,34.56191983,0.798886336,26.76950243,0,26.76950243,1.074571704,25.69493073,1.397649554,4.161294197,5.601327795,-5.601327795,0,0.336271775,0.268642926,8.640479957,0.299587348,1,0.176667834,0,0.941972963,0.980734926,0.724496596,1,33.49472835,0.778523542,0.04488065,0.312029739,0.880622454,0.60511905,0.961238037,0.922476074,0.184734023,8.305557992,33.67946237,9.084081534,140.6775534,0,0.491946904,60.53137358,-0.491946904,119.4686264,0.948363015,0,167.0928511,9.084081534,173.0382008,11,16,4% -11/11/2018 1:00,90.14875295,248.0766834,0,0,0,0,0,0,0,0,0,0,0,0,0,1.573392556,4.329754922,-384.9562061,384.9562061,0,#DIV/0!,0,0,1,0.984700483,0,0.002597692,0.961238037,1,0.717156768,0.992660172,0,0,0.115824807,0.303688798,0.724496596,0.448993192,0.962551047,0.923789084,0,0,0,0,0,0,0.339386657,70.1604897,-0.339386657,109.8395103,0.90267541,0,0,0,0,11,17,0% -11/11/2018 2:00,102.0434134,256.9033381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780993545,4.48380911,-4.653183566,4.653183566,0.674105055,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135997773,82.18367979,-0.135997773,97.81632021,0.682346921,0,0,0,0,11,18,0% -11/11/2018 3:00,113.7429199,265.5448346,0,0,0,0,0,0,0,0,0,0,0,0,0,1.985188453,4.634631675,-2.190275033,2.190275033,0.90471278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.076731669,94.40072642,0.076731669,85.59927358,0,0,0,0,0,11,19,0% -11/11/2018 4:00,125.5795001,274.7897837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191775749,4.795986476,-1.269033644,1.269033644,0.747171224,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294207751,107.1100368,0.294207751,72.88996324,0,0.880052064,0,0,0,11,20,0% -11/11/2018 5:00,137.2269653,285.8926389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395062368,4.989767856,-0.749468642,0.749468642,0.658320376,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50161955,120.1072065,0.50161955,59.89279348,0,0.950322864,0,0,0,11,21,0% -11/11/2018 6:00,148.0952397,301.3537452,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584749539,5.259615067,-0.388795427,0.388795427,0.596641623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684844263,133.2233605,0.684844263,46.77663949,0,0.9769907,0,0,0,11,22,0% -11/11/2018 7:00,156.7300312,326.3692066,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735455081,5.696217232,-0.10134675,0.10134675,0.547485005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831409039,146.2437536,0.831409039,33.75624642,0,0.98986113,0,0,0,11,23,0% -11/12/2018 8:00,159.7996288,4.751698732,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789029666,0.082932788,0.154049777,-0.154049777,0.503809626,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931340187,158.6446987,0.931340187,21.35530128,0,0.996313924,0,0,0,11,0,0% -11/12/2018 9:00,155.10793,40.62025392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.707144074,0.708957174,0.404337932,-0.404337932,0.461007831,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97784205,167.9160861,0.97784205,12.08391387,0,0.998866997,0,0,0,11,1,0% -11/12/2018 10:00,145.7551732,62.85701629,0,0,0,0,0,0,0,0,0,0,0,0,0,2.543907674,1.097061892,0.675460328,-0.675460328,0.41464317,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.967759396,165.4114207,0.967759396,14.58857925,0,0.998334266,0,0,0,11,2,0% -11/12/2018 11:00,134.6360382,76.99790457,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349842158,1.343866952,1.005241418,-1.005241418,0.358247283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.901791903,154.3946138,0.901791903,25.60538619,0,0.994554836,0,0,0,11,3,0% -11/12/2018 12:00,122.9185393,87.52965804,0,0,0,0,0,0,0,0,0,0,0,0,0,2.145333223,1.527680726,1.47293589,-1.47293589,0.278266818,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.784446165,141.6694843,0.784446165,38.33051574,0,0.986260763,0,0,0,11,4,0% -11/12/2018 13:00,111.102109,96.56018599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939097609,1.685293172,2.317806619,-2.317806619,0.133785414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.623728467,128.588921,0.623728467,51.41107898,0,0.969836912,0,0,0,11,5,0% -11/12/2018 14:00,99.48923991,105.1930767,0,0,0,0,0,0,0,0,0,0,0,0,0,1.736414807,1.835965539,4.889121808,-4.889121808,0,#DIV/0!,0,0,0.234265329,1,0.201752991,0,0.938658072,0.977420035,0.724496596,1,0,0,0.03607376,0.312029739,0.902798592,0.627295187,0.961238037,0.922476074,0,0,0,0,0,0,-0.430599229,115.5055947,0.430599229,64.49440527,0,0.933882746,0,0,0,11,6,0% -11/12/2018 15:00,88.04669791,114.1640237,4.090226735,32.34012744,2.987915128,2.92865232,0,2.92865232,2.897818463,0.030833857,7.975945677,6.894126185,1.081819492,0.090096665,0.991722827,1.536704774,1.992538102,-21.03366469,21.03366469,0,0.7305011,0.022524166,0.724454616,1,0.680217165,0,0.04750706,0.961238037,1,0.598624322,0.874127726,2.78549333,0.061871685,0.115824807,0.169326442,0.724496596,0.448993192,0.981678611,0.942916648,0.016318682,0.702201689,2.801812012,0.764073374,0,2.204623214,-0.213175604,102.3085159,0.213175604,77.69148405,0,0.815451585,2.801812012,2.561836867,4.478483005,11,7,60% -11/12/2018 16:00,77.941324,124.0992231,143.3999962,484.1318424,42.25841909,42.15463755,0.089455969,42.06518158,40.98417184,1.081009744,36.04323655,0,36.04323655,1.274247253,34.7689893,1.360332727,2.165940042,-2.744891423,2.744891423,0.999557769,0.294689123,1.080672565,34.75814448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,39.39554488,0.923187797,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.782943595,33.41085057,40.17848848,34.33403837,0.089455969,0,0.000184776,89.98941311,-0.000184776,90.01058689,0,0,40.17848848,34.33403837,62.64942991,11,8,56% -11/12/2018 17:00,68.88511619,135.6006096,309.4620842,685.7201435,62.43884207,204.6364389,141.7475024,62.88893651,60.5560806,2.332855908,76.91542661,0,76.91542661,1.882761463,75.03266515,1.202272083,2.366677105,-1.069732575,1.069732575,0.713088734,0.201765726,1.798579635,57.84850363,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20880804,1.364054271,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.303064823,55.60618206,59.51187286,56.97023634,141.7475024,0,0.206713342,78.07018514,-0.206713342,101.9298149,0.808119144,0,174.0607432,56.97023634,211.3466234,11,9,21% -11/12/2018 18:00,61.66454231,149.1675607,440.1802186,772.2339121,73.65251656,375.482744,300.7328582,74.74988585,71.43162143,3.31826442,108.9476853,0,108.9476853,2.220895123,106.7267902,1.076249295,2.603465072,-0.348520808,0.348520808,0.589754258,0.167323549,2.184738763,70.2687086,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.66279156,1.609030956,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.582835797,67.54495551,70.24562735,69.15398647,300.7328582,0,0.389432338,67.08081755,-0.389432338,112.9191825,0.921607992,0,347.4034328,69.15398647,392.6633339,11,10,13% -11/12/2018 19:00,57.04100817,164.881025,520.4102677,810.2305275,79.61355675,515.1335061,433.9975194,81.13598669,77.21291427,3.92307242,128.580137,0,128.580137,2.400642479,126.1794945,0.995553401,2.877716761,0.131227946,-0.131227946,0.507712389,0.152982294,2.287244109,73.56563288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.21999013,1.739257304,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.657100571,70.71408453,75.8770907,72.45334183,433.9975194,0,0.535646961,57.61220267,-0.535646961,122.3877973,0.956654936,0,491.0629597,72.45334183,538.4822229,11,11,10% -11/12/2018 20:00,55.69035604,181.9639421,543.1805274,819.5673973,81.21899765,603.5662397,520.7015702,82.86466946,78.7699452,4.094724256,134.14946,0,134.14946,2.449052445,131.7004076,0.971980075,3.175869909,0.548099039,-0.548099039,0.436423234,0.14952487,2.132090065,68.57534551,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.71666749,1.77433016,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.544691994,65.91723049,77.26135948,67.69156065,520.7015702,0,0.635337096,50.55500926,-0.635337096,129.4449907,0.97130162,0,583.0196384,67.69156065,627.322411,11,12,8% -11/12/2018 21:00,57.84833965,198.8470939,506.6473265,804.3053414,78.62645466,628.3691928,548.2942942,80.07489851,76.25557695,3.819321556,125.2133878,0,125.2133878,2.370877709,122.8425101,1.009643994,3.470536497,0.997912994,-0.997912994,0.359500517,0.155189716,1.752684561,56.37236029,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.29976109,1.717692829,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269813998,54.18725694,74.56957508,55.90494977,548.2942942,0,0.681699183,47.02343367,-0.681699183,132.9765663,0.976653865,0,610.063317,55.90494977,646.6519885,11,13,6% -11/12/2018 22:00,63.14754995,214.0879276,413.7880545,757.6418753,71.56542592,581.3538882,508.8271148,72.52677342,69.40746428,3.11930914,102.4856661,0,102.4856661,2.15796164,100.3277045,1.102132661,3.736539225,1.59972476,-1.59972476,0.256584644,0.17295189,1.20143228,38.64219201,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.7170947,1.563435862,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.870433597,37.14434479,67.5875283,38.70778065,508.8271148,0,0.671593178,47.80985357,-0.671593178,132.1901464,0.975550167,0,563.973905,38.70778065,589.3073733,11,14,4% -11/12/2018 23:00,70.86318915,227.1357216,272.9710134,653.3327067,58.79226247,454.8570735,395.7798438,59.07722964,57.01945884,2.057770803,67.95778618,0,67.95778618,1.772803634,66.18498255,1.236795969,3.96426619,2.655406125,-2.655406125,0.076052498,0.215379141,0.565992982,18.20427989,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.80927268,1.284390198,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.410059989,17.49864626,55.21933266,18.78303646,395.7798438,0,0.605786056,52.71457287,-0.605786056,127.2854271,0.96746261,0,438.1215334,18.78303646,450.4146551,11,15,3% -11/12/2018 0:00,80.24765908,238.2094614,103.1469821,402.0279343,35.04756265,231.4162676,196.6479527,34.76831484,33.99074932,0.777565521,26.06599333,0,26.06599333,1.056813326,25.00918001,1.400585868,4.157539411,5.69547487,-5.69547487,0,0.339782725,0.264203331,8.49768733,0.307397626,1,0.173806421,0,0.94234221,0.981104173,0.724496596,1,32.94345481,0.765657657,0.045901612,0.312029739,0.878091279,0.602587875,0.961238037,0.922476074,0.181580864,8.168300287,33.12503568,8.933957944,136.1988389,0,0.489140022,60.71592661,-0.489140022,119.2840734,0.947779781,0,162.2115415,8.933957944,168.0586382,11,16,4% -11/12/2018 1:00,90.89938558,247.8498029,0,0,0,0,0,0,0,0,0,0,0,0,0,1.586493566,4.325795111,-63.65538507,63.65538507,0,#DIV/0!,0,0,1,0.903992617,0,0.015708298,0.961238037,1,0.680916516,0.95641992,0,0,0.115824807,0.262530305,0.724496596,0.448993192,0.968819794,0.930057831,0,0,0,0,0,0,0.326987248,70.91398465,-0.326987248,109.0860154,0.897088838,0,0,0,0,11,17,0% -11/12/2018 2:00,102.1775665,256.6623064,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783334957,4.479602313,-4.602674244,4.602674244,0.682742658,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13384585,82.30811371,-0.13384585,97.69188629,0.676435934,0,0,0,0,11,18,0% -11/12/2018 3:00,113.8688507,265.282586,0,0,0,0,0,0,0,0,0,0,0,0,0,1.987386361,4.630054574,-2.180027372,2.180027372,0.902960327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078533138,94.50425541,0.078533138,85.49574459,0,0,0,0,0,11,19,0% -11/12/2018 4:00,125.7052023,274.4946697,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193969667,4.790835765,-1.266156177,1.266156177,0.746679148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.29568367,107.1985377,0.29568367,72.80146228,0,0.880900367,0,0,0,11,20,0% -11/12/2018 5:00,137.3639047,285.5485532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.397452411,4.983762428,-0.749111348,0.749111348,0.658259275,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502817155,120.1865572,0.502817155,59.81344284,0,0.950560274,0,0,0,11,21,0% -11/12/2018 6:00,148.2621564,300.9503405,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587662785,5.252574326,-0.38966712,0.38966712,0.596790692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685829883,133.3009077,0.685829883,46.69909227,0,0.977095623,0,0,0,11,22,0% -11/12/2018 7:00,156.9535171,325.9831501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739355646,5.689479275,-0.103042854,0.103042854,0.547775056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832263535,146.3319648,0.832263535,33.66803524,0,0.989922876,0,0,0,11,23,0% -11/13/2018 8:00,160.0692857,4.713222107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793736066,0.082261244,0.151595194,-0.151595194,0.504229385,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93215339,158.7730165,0.93215339,21.22698354,0,0.996360759,0,0,0,11,0,0% -11/13/2018 9:00,155.3503396,40.90285512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.711374919,0.713889495,0.400971721,-0.400971721,0.461583487,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978706575,168.1550276,0.978706575,11.84497245,0,0.998912165,0,0,0,11,1,0% -11/13/2018 10:00,145.9590169,63.17134484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.547465418,1.10254796,0.670757501,-0.670757501,0.415447401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.968764263,165.6417834,0.968764263,14.35821657,0,0.998387857,0,0,0,11,2,0% -11/13/2018 11:00,134.8192317,77.27590683,0,0,0,0,0,0,0,0,0,0,0,0,0,2.353039488,1.348719007,0.998226811,-0.998226811,0.359446851,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.903016397,154.5574362,0.903016397,25.44256377,0,0.99463002,0,0,0,11,3,0% -11/13/2018 12:00,123.0946679,87.77241112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148407246,1.531917566,1.461086374,-1.461086374,0.280293204,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.785954364,141.8090316,0.785954364,38.19096836,0,0.986383075,0,0,0,11,4,0% -11/13/2018 13:00,111.2799812,96.77661167,0,0,0,0,0,0,0,0,0,0,0,0,0,1.942202063,1.689070513,2.292202196,-2.292202196,0.138164028,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.625564814,128.7236553,0.625564814,51.27634467,0,0.970072231,0,0,0,11,5,0% -11/13/2018 14:00,99.67515099,105.3899616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.739659567,1.839401829,4.781773725,-4.781773725,0,#DIV/0!,0,0,0.223347888,1,0.206156323,0,0.938061871,0.976823835,0.724496596,1,0,0,0.034553518,0.312029739,0.906688594,0.63118519,0.961238037,0.922476074,0,0,0,0,0,0,-0.432785451,115.6444622,0.432785451,64.35553783,0,0.934469314,0,0,0,11,6,0% -11/13/2018 15:00,88.23018614,114.3445174,3.287071869,26.87352863,2.457105317,2.407793862,0,2.407793862,2.383014526,0.024779336,6.661178862,5.79009944,0.871079422,0.074090791,0.796988631,1.539907248,1.99568831,-23.14482739,23.14482739,0,0.747505809,0.018522698,0.595753631,1,0.713315268,0,0.043179343,0.961238037,1,0.609355256,0.884858661,2.290644205,0.050999498,0.115824807,0.181457522,0.724496596,0.448993192,0.980112764,0.941350801,0.013419631,0.577285448,2.304063836,0.628284946,0,1.659933104,-0.215457357,102.4423608,0.215457357,77.55763922,0,0.817935517,2.304063836,1.986003188,3.603863202,11,7,56% -11/13/2018 16:00,78.156157,124.2618235,139.6189579,477.5252039,41.60928511,41.40711832,0,41.40711832,40.35461164,1.05250668,36.37124983,1.264343568,35.10690627,1.254673468,33.8522328,1.36408227,2.168777954,-2.785195057,2.785195057,0.993549904,0.29802031,1.047741102,33.69895543,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.79038767,0.909006656,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.759084862,32.39271776,39.54947253,33.30172442,0,1.264343568,-0.0026477,90.15170222,0.0026477,89.84829778,0,0,39.54947253,33.30172442,61.34478513,11,8,55% -11/13/2018 17:00,69.1204934,135.7372744,305.1819011,682.3918575,61.97482758,201.3388147,138.9321668,62.40664794,60.10605786,2.30059008,75.8636549,0,75.8636549,1.868769714,73.99488519,1.20638019,2.369062356,-1.077252641,1.077252641,0.714374741,0.203075043,1.7769254,57.15202902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.77622906,1.353917296,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287376404,54.93670418,59.06360547,56.29062147,138.9321668,0,0.203595874,78.2526848,-0.203595874,101.7473152,0.804415456,0,170.8227877,56.29062147,207.6638736,11,9,22% -11/13/2018 18:00,61.91900477,149.2618694,435.7307586,770.0649357,73.24636386,371.6503639,297.3279257,74.32243825,71.03771574,3.284722512,107.8566153,0,107.8566153,2.208648121,105.6479671,1.080690503,2.605111069,-0.349226047,0.349226047,0.589874861,0.168100054,2.164030764,69.60266818,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.28415442,1.600158045,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.567832922,66.90473212,69.85198734,68.50489017,297.3279257,0,0.386107602,67.28748123,-0.386107602,112.7125188,0.92050242,0,343.5430625,68.50489017,388.378143,11,10,13% -11/13/2018 19:00,57.30737336,164.9109412,515.9421989,808.5255282,79.23167023,511.0284318,430.2964985,80.73193327,76.84254304,3.889390231,127.4852867,0,127.4852867,2.389127191,125.0961595,1.000202351,2.878238896,0.133384646,-0.133384646,0.507343572,0.153566951,2.267511849,72.93097557,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.86397522,1.730914517,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.642804615,70.10402779,75.50677983,71.8349423,430.2964985,0,0.532199026,57.8458451,-0.532199026,122.1541549,0.956050185,0,486.8918269,71.8349423,533.9063599,11,11,10% -11/13/2018 20:00,55.95461178,181.9147594,538.8121915,818.0098689,80.8498001,599.3392424,516.8655682,82.47367422,78.41188032,4.061793895,133.0791738,0,133.0791738,2.437919777,130.641254,0.976592207,3.175011509,0.552387048,-0.552387048,0.435689941,0.150051913,2.113618406,67.98123344,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.37248191,1.766264579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.53130934,65.34614737,76.90379125,67.11241195,516.8655682,0,0.631857375,50.8127104,-0.631857375,129.1872896,0.970868218,0,578.7121444,67.11241195,622.6358758,11,12,8% -11/13/2018 21:00,58.0948209,198.7255098,502.4836536,802.665413,78.26288422,624.1237744,544.4328709,79.69090353,75.9029695,3.787934031,124.1928941,0,124.1928941,2.359914718,121.8329794,1.013945903,3.468414454,1.004849997,-1.004849997,0.35831422,0.1557521,1.735851556,55.83095299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.96082139,1.70975018,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257618543,53.66683565,74.21843994,55.37658583,544.4328709,0,0.678281214,47.29052338,-0.678281214,132.7094766,0.976284262,0,605.7396837,55.37658583,641.9825516,11,13,6% -11/13/2018 22:00,63.3664696,213.9169031,409.9262618,755.6184828,71.19588222,577.1392645,505.0000035,72.139261,69.04906368,3.090197315,101.5381867,0,101.5381867,2.146818534,99.39136814,1.10595353,3.733554285,1.611509318,-1.611509318,0.254569366,0.173679729,1.186745646,38.16981937,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37258642,1.55536272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.85979318,36.69028224,67.2323796,38.24564496,505.0000035,0,0.668326695,48.06195066,-0.668326695,131.9380493,0.975186289,0,559.7014591,38.24564496,584.7324688,11,14,4% -11/13/2018 23:00,71.05262048,226.9372416,269.5230261,650.2622184,58.38310987,450.6012748,391.9468527,58.65442211,56.62264369,2.031778418,67.10944429,0,67.10944429,1.760466173,65.34897812,1.24010217,3.960802061,2.680089062,-2.680089062,0.071831467,0.216616408,0.554447951,17.832952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.42783887,1.27545175,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.401695653,17.14171177,54.82953452,18.41716352,391.9468527,0,0.602752,52.93274957,-0.602752,127.0672504,0.967047144,0,433.8606189,18.41716352,445.9142841,11,15,3% -11/13/2018 0:00,80.41009829,237.9959436,100.4295855,395.9132463,34.47243256,226.7678401,192.5777979,34.19004217,33.43296153,0.757080637,25.38978678,0,25.38978678,1.039471031,24.35031574,1.403420967,4.153812822,5.789273904,-5.789273904,0,0.343249774,0.259867758,8.358240382,0.315007714,1,0.171045413,0,0.942696766,0.981458729,0.724496596,1,32.40484487,0.753093224,0.046890036,0.312029739,0.875648631,0.600145227,0.961238037,0.922476074,0.178511199,8.034258577,32.58335607,8.7873518,131.9143059,0,0.486414132,60.89483592,-0.486414132,119.1051641,0.947206934,0,157.5335013,8.7873518,163.2846473,11,16,4% -11/13/2018 1:00,91.04251644,247.6248421,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588991671,4.321868805,-54.9058376,54.9058376,0,#DIV/0!,0,0,1,0.887887411,0,0.018210986,0.961238037,1,0.674151477,0.949654881,0,0,0.115824807,0.254853433,0.724496596,0.448993192,0.969949792,0.931187829,0,0,0,0,0,0,0.324572658,71.06031341,-0.324572658,108.9396866,0.895951288,0,0,0,0,11,17,0% -11/13/2018 2:00,102.305858,256.4233943,0,0,0,0,0,0,0,0,0,0,0,0,0,1.785574066,4.47543251,-4.555384393,4.555384393,0.690829699,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131787105,82.42712548,-0.131787105,97.57287452,0.670600211,0,0,0,0,11,18,0% -11/13/2018 3:00,113.9887669,265.0225747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989479292,4.625516521,-2.17042081,2.17042081,0.901317508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08024022,94.60237374,0.08024022,85.39762626,0,0,0,0,0,11,19,0% -11/13/2018 4:00,125.8246148,274.2017387,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196053808,4.785723155,-1.263523992,1.263523992,0.746229018,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.297067388,107.2815485,0.297067388,72.7184515,0,0.881688021,0,0,0,11,20,0% -11/13/2018 5:00,137.494129,285.2060389,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399725254,4.977784425,-0.748873708,0.748873708,0.658218636,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503927985,120.2602154,0.503927985,59.73978458,0,0.950779473,0,0,0,11,21,0% -11/13/2018 6:00,148.4218575,300.5459943,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590450096,5.245517154,-0.390602645,0.390602645,0.596950676,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686737014,133.372367,0.686737014,46.62763296,0,0.977191925,0,0,0,11,22,0% -11/13/2018 7:00,157.1699375,325.5890031,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743132894,5.682600113,-0.104771438,0.104771438,0.548070661,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833050118,146.4133457,0.833050118,33.58665428,0,0.989979602,0,0,0,11,23,0% -11/14/2018 8:00,160.3339383,4.6631972,0,0,0,0,0,0,0,0,0,0,0,0,0,2.798355126,0.081388145,0.149130297,-0.149130297,0.504650907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932910814,158.8932017,0.932910814,21.1067983,0,0.996404309,0,0,0,11,0,0% -11/14/2018 9:00,155.5895863,41.17730628,0,0,0,0,0,0,0,0,0,0,0,0,0,2.715550563,0.718679572,0.397615771,-0.397615771,0.462157388,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979528176,168.3865942,0.979528176,11.61340578,0,0.998955016,0,0,0,11,1,0% -11/14/2018 10:00,146.1609343,63.47816617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550989542,1.107903003,0.666090901,-0.666090901,0.416245437,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.969738895,165.8687253,0.969738895,14.13127466,0,0.998439729,0,0,0,11,2,0% -11/14/2018 11:00,135.0012845,77.54702431,0,0,0,0,0,0,0,0,0,0,0,0,0,2.356216909,1.353450899,0.991292952,-0.991292952,0.360632611,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.904222304,154.7187433,0.904222304,25.28125665,0,0.994703863,0,0,0,11,3,0% -11/14/2018 12:00,123.2700639,88.00880073,0,0,0,0,0,0,0,0,0,0,0,0,0,2.151468484,1.536043343,1.449422662,-1.449422662,0.282287816,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.78745378,141.9481959,0.78745378,38.05180406,0,0.98650421,0,0,0,11,4,0% -11/14/2018 13:00,111.4572509,96.98696945,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945296004,1.692741948,2.267173048,-2.267173048,0.142444264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.627399661,128.8585337,0.627399661,51.14146628,0,0.970305982,0,0,0,11,5,0% -11/14/2018 14:00,99.86036457,105.5808539,0,0,0,0,0,0,0,0,0,0,0,0,0,1.742892154,1.842733527,4.679080489,-4.679080489,0,#DIV/0!,0,0,0.212608469,1,0.210549719,0,0.937462783,0.976224746,0.724496596,1,0,0,0.033044074,0.312029739,0.910568999,0.635065595,0.961238037,0.922476074,0,0,0,0,0,0,-0.43497443,115.7836669,0.43497443,64.21633315,0,0.935050714,0,0,0,11,6,0% -11/14/2018 15:00,88.41144863,114.518913,2.592170923,22.00700503,1.982094933,1.941868337,0,1.941868337,1.922327458,0.019540879,5.47970239,4.791433063,0.688269327,0.059767475,0.628501851,1.543070875,1.998732088,-25.7105399,25.7105399,0,0.764646697,0.014941869,0.480581864,1,0.745347172,0,0.038874959,0.961238037,1,0.62017521,0.895678614,1.847814272,0.041259456,0.115824807,0.193695849,0.724496596,0.448993192,0.978499919,0.939737956,0.010825333,0.465505567,1.858639605,0.506765023,0,1.22015198,-0.217723087,102.575334,0.217723087,77.42466597,0,0.820350491,1.858639605,1.507717299,2.845410423,11,7,53% -11/14/2018 16:00,78.36941085,124.4181141,135.877663,470.8362482,40.95666596,40.74597459,0,40.74597459,39.72167137,1.024303219,36.76070564,2.580598516,34.18010712,1.234994593,32.94511253,1.367804252,2.171505741,-2.826966316,2.826966316,0.986406598,0.301423097,1.014576398,32.63226453,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,38.18198141,0.894749378,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.735057146,31.3673739,38.91703855,32.26212328,0,2.580598516,-0.005480883,90.31403305,0.005480883,89.68596695,0,0,38.91703855,32.26212328,60.03195299,11,8,54% -11/14/2018 17:00,69.35352798,135.8674747,300.9418627,679.0406479,61.51161353,198.061483,136.1360447,61.9254383,59.65681143,2.268626879,74.82164089,0,74.82164089,1.854802102,72.96683879,1.210447411,2.371334781,-1.085051023,1.085051023,0.715708343,0.204396999,1.755501375,56.46295871,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.3443963,1.343797809,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.27185477,54.27434359,58.61625107,55.6181414,136.1360447,0,0.200482909,78.43480033,-0.200482909,101.5651997,0.800602183,0,167.6070656,55.6181414,204.0080267,11,9,22% -11/14/2018 18:00,62.17010936,149.3499406,431.3320239,767.8930293,72.84265748,367.8439607,293.9462151,73.89774559,70.6461826,3.251562991,106.7779179,0,106.7779179,2.196474884,104.581443,1.085073105,2.606648201,-0.350080683,0.350080683,0.590021012,0.168878389,2.143617625,68.94611145,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90779787,1.591338576,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.553043672,66.27362482,69.46084154,67.8649634,293.9462151,0,0.382795785,67.49303209,-0.382795785,112.5069679,0.919382052,0,339.7097159,67.8649634,384.1259772,11,10,13% -11/14/2018 19:00,57.56928488,164.9356419,511.5377852,806.8266399,78.853323,506.9613241,426.6295319,80.33179227,76.47560437,3.856187899,126.405977,0,126.405977,2.377718626,124.0282584,1.004773569,2.878670006,0.135411641,-0.135411641,0.506996935,0.154149557,2.248131089,72.30762372,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.51125981,1.722649051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.628763321,69.50483827,75.14002314,71.22748733,426.6295319,0,0.528774722,58.07729497,-0.528774722,121.922705,0.955441773,0,482.7596996,71.22748733,529.3766655,11,11,10% -11/14/2018 20:00,56.21352435,181.8622223,534.520966,816.4651518,80.48514344,595.1653981,513.0777339,82.08766423,78.0582194,4.029444824,132.0277207,0,132.0277207,2.426924033,129.6007967,0.981111084,3.174094564,0.556532664,-0.556532664,0.434980999,0.150574343,2.095546483,67.39997828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,75.03252958,1.7582982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.518216293,64.7874228,76.55074587,66.545721,513.0777339,0,0.628413512,51.06682889,-0.628413512,128.9331711,0.970434556,0,574.4591088,66.545721,618.0119523,11,12,8% -11/14/2018 21:00,58.33547917,198.6026154,498.4098668,801.0461808,77.90491652,619.9487002,540.6356803,79.31301995,75.55579584,3.757224105,123.1943633,0,123.1943633,2.349120671,120.8452426,1.018146182,3.466269542,1.011605512,-1.011605512,0.357158959,0.156306931,1.719454043,55.30355261,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.62710487,1.70192993,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.245738601,53.15987835,73.87284347,54.86180828,540.6356803,0,0.674912,47.55268309,-0.674912,132.4473169,0.975916268,0,601.4879987,54.86180828,637.393955,11,13,6% -11/14/2018 22:00,63.57943448,213.7461099,406.1653199,753.6286331,70.83324522,573.0139171,501.2547098,71.75920728,68.69736153,3.061845747,100.6153679,0,100.6153679,2.13588369,98.47948423,1.109670468,3.730573381,1.623028228,-1.623028228,0.252599516,0.174395109,1.17251088,37.71198037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.03451693,1.547440463,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.849480141,36.25018998,66.88399707,37.79763044,501.2547098,0,0.665121637,48.3083423,-0.665121637,131.6916577,0.97482578,0,555.5200107,37.79763044,580.2578039,11,14,4% -11/14/2018 23:00,71.23612853,226.7399253,266.1837182,647.2521682,57.98294799,446.4571279,388.2159744,58.24115348,56.23454817,2.006605304,66.28772405,0,66.28772405,1.748399816,64.53932424,1.243304989,3.957358242,2.70431593,-2.70431593,0.067688429,0.217830558,0.543337305,17.47559544,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.05478669,1.266709715,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.393646028,16.79820705,54.44843272,18.06491677,388.2159744,0,0.599790922,53.14507503,-0.599790922,126.854925,0.966637618,0,429.7125974,18.06491677,441.5357241,11,15,3% -11/14/2018 0:00,80.56667504,237.7841203,97.8233355,389.9422075,33.91190332,222.2694437,188.6426758,33.62676793,32.88933431,0.737433624,24.74096926,0,24.74096926,1.022569007,23.71840025,1.406153747,4.150115808,5.882501077,-5.882501077,0,0.346664762,0.255642252,8.222333578,0.322407489,1,0.168385996,0,0.943036665,0.981798628,0.724496596,1,31.87968046,0.740847764,0.04784517,0.312029739,0.873295597,0.597792193,0.961238037,0.922476074,0.175528202,7.903619786,32.05520866,8.644467551,127.8228644,0,0.483770857,61.06802637,-0.483770857,118.9319736,0.946645283,0,153.0581203,8.644467551,158.7157514,11,16,4% -11/14/2018 1:00,91.17979281,247.4018997,0,0,0,0,0,0,0,0,0,0,0,0,0,1.591387596,4.317977726,-48.5074949,48.5074949,0,#DIV/0!,0,0,1,0.872211395,0,0.020612451,0.961238037,1,0.66770623,0.943209634,0,0,0.115824807,0.247541687,0.724496596,0.448993192,0.97101442,0.932252457,0,0,0,0,0,0,0.322248044,71.20106832,-0.322248044,108.7989317,0.89484002,0,0,0,0,11,17,0% -11/14/2018 2:00,102.4282461,256.1867239,0,0,0,0,0,0,0,0,0,0,0,0,0,1.787710141,4.471301831,-4.511166384,4.511166384,0.698391424,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129822458,82.54066704,-0.129822458,97.45933296,0.664858625,0,0,0,0,11,18,0% -11/14/2018 3:00,114.1026371,264.764955,0,0,0,0,0,0,0,0,0,0,0,0,0,1.991466703,4.621020208,-2.161442732,2.161442732,0.899782166,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08185241,94.69505027,0.08185241,85.30494973,0,0,0,0,0,11,19,0% -11/14/2018 4:00,125.9377135,273.9111946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198027753,4.780652204,-1.261134443,1.261134443,0.745820381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298358792,107.359055,0.298358792,72.64094502,0,0.882416535,0,0,0,11,20,0% -11/14/2018 5:00,137.6176125,284.8653814,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401880448,4.971838831,-0.748754714,0.748754714,0.658198287,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504952273,120.3281842,0.504952273,59.67181579,0,0.950980741,0,0,0,11,21,0% -11/14/2018 6:00,148.5742916,300.1411062,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593110572,5.238450524,-0.391601288,0.391601288,0.597121454,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687566173,133.4377578,0.687566173,46.56224219,0,0.977279727,0,0,0,11,22,0% -11/14/2018 7:00,157.3791721,325.1870602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746784727,5.675584886,-0.106531751,0.106531751,0.548371692,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833769499,146.4879266,0.833769499,33.51207343,0,0.990031387,0,0,0,11,23,0% -11/15/2018 8:00,160.5934661,4.601257089,0,0,0,0,0,0,0,0,0,0,0,0,0,2.802884741,0.080307086,0.146655997,-0.146655997,0.505074037,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933613264,159.0052507,0.933613264,20.99474933,0,0.996444634,0,0,0,11,0,0% -11/15/2018 9:00,155.8256229,41.44319771,0,0,0,0,0,0,0,0,0,0,0,0,0,2.719670179,0.723320253,0.394271239,-0.394271239,0.462729337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980307646,168.6105769,0.980307646,11.38942306,0,0.998995603,0,0,0,11,1,0% -11/15/2018 10:00,146.3609007,63.7772112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.554479613,1.113122323,0.661462023,-0.661462023,0.417037022,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.970683967,166.0922472,0.970683967,13.9077528,0,0.998489929,0,0,0,11,2,0% -11/15/2018 11:00,135.182166,77.81107766,0,0,0,0,0,0,0,0,0,0,0,0,0,2.359373886,1.3580595,0.984441735,-0.984441735,0.361804238,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.905410084,154.8785712,0.905410084,25.12142879,0,0.994776405,0,0,0,11,3,0% -11/15/2018 12:00,123.4446829,88.23869551,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15451616,1.540055764,1.437946624,-1.437946624,0.284250334,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.788944574,142.0869894,0.788944574,37.91301061,0,0.986624192,0,0,0,11,4,0% -11/15/2018 13:00,111.6338577,97.1911568,0,0,0,0,0,0,0,0,0,0,0,0,0,1.948378374,1.69630569,2.242714583,-2.242714583,0.146626908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.629232806,128.993543,0.629232806,51.006457,0,0.970538155,0,0,0,11,5,0% -11/15/2018 14:00,100.0448035,105.7656723,0,0,0,0,0,0,0,0,0,0,0,0,0,1.74611122,1.845959218,4.580808952,-4.580808952,0,#DIV/0!,0,0,0.202049633,1,0.214930169,0,0.936861262,0.975623226,0.724496596,1,0,0,0.031546298,0.312029739,0.914437153,0.638933749,0.961238037,0.922476074,0,0,0,0,0,0,-0.437165569,115.9231726,0.437165569,64.07682737,0,0.935626857,0,0,0,11,6,0% -11/15/2018 15:00,88.59029769,114.68715,2.000492095,17.7408248,1.564041823,1.531960746,0,1.531960746,1.516880192,0.015080554,4.434658233,3.902454132,0.532204101,0.047161632,0.485042469,1.54619238,2.001668378,-28.89023251,28.89023251,0,0.781828545,0.011790408,0.379220048,1,0.776320102,0,0.034599961,0.961238037,1,0.631066083,0.906569487,1.458082938,0.032668422,0.115824807,0.206021484,0.724496596,0.448993192,0.976842154,0.938080191,0.00854211,0.367150188,1.466625048,0.399818609,0,0.872900543,-0.219970276,102.7072872,0.219970276,77.29271282,0,0.822696562,1.466625048,1.117950885,2.198301544,11,7,50% -11/15/2018 16:00,78.5809769,124.5680589,132.1784782,464.0686247,40.30087484,40.08207197,0,40.08207197,39.08565477,0.996417201,37.12139566,3.857973246,33.26342241,1.215220071,32.04820234,1.371496776,2.174122771,-2.870249006,2.870249006,0.979004822,0.304897404,0.981875685,31.5804972,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,37.57061806,0.880422805,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.711365591,30.35637513,38.28198365,31.23679794,0,3.857973246,-0.008313368,90.47632639,0.008313368,89.52367361,0,0,38.28198365,31.23679794,58.72584316,11,8,53% -11/15/2018 17:00,69.58410146,135.9912053,296.7444342,675.6688189,61.04945271,194.8065066,133.3609353,61.44557135,59.20858646,2.236984891,73.78998992,0,73.78998992,1.840866248,71.94912367,1.214471678,2.373494286,-1.093130404,1.093130404,0.717089998,0.205730742,1.73431936,55.78167229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.91354542,1.33370133,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.256508472,53.61946517,58.17005389,54.9531665,133.3609353,0,0.197376187,78.61643262,-0.197376187,101.3835674,0.796676634,0,164.415595,54.9531665,200.3813434,11,9,22% -11/15/2018 18:00,62.41773487,149.4318029,426.9866525,765.7200899,72.44163126,364.0659909,290.5899363,73.47605455,70.2572488,3.218805747,105.7122398,0,105.7122398,2.184382464,103.5278574,1.089394985,2.608076968,-0.351087445,0.351087445,0.590193179,0.169657836,2.123510904,68.29941018,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.53393991,1.582577659,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538476421,65.65199096,69.07241633,67.23456862,290.5899363,0,0.379498906,67.6973528,-0.379498906,112.3026472,0.918247314,0,335.905845,67.23456862,379.9095255,11,10,13% -11/15/2018 19:00,57.82662797,164.9551787,507.19972,805.1355954,78.4787399,502.9349261,422.999124,79.93580207,76.11231633,3.823485731,125.3428678,0,125.3428678,2.366423564,122.9764443,1.009265053,2.879010987,0.137304892,-0.137304892,0.50667317,0.154729462,2.229112695,71.6959268,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.16205353,1.714465816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.614984559,68.91685193,74.77703809,70.63131774,422.999124,0,0.525376255,58.30642398,-0.525376255,121.693576,0.954830111,0,478.6693385,70.63131774,524.8961234,11,11,10% -11/15/2018 20:00,56.46698998,181.8063831,530.3094731,814.9350209,80.12525031,591.0476246,509.3407494,81.7068752,77.70917839,3.997696812,130.9957434,0,130.9957434,2.416071928,128.5796715,0.985534894,3.173119986,0.560529945,-0.560529945,0.434297424,0.151091493,2.077883954,66.83189065,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.69701808,1.750435887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.505419852,64.24135537,76.20243793,65.99179126,509.3407494,0,0.625007806,51.31723961,-0.625007806,128.6827604,0.970000999,0,570.2634738,65.99179126,613.4537813,11,12,8% -11/15/2018 21:00,58.57022031,198.4784557,494.4283907,799.4497138,77.55278114,615.8469759,536.9054872,78.9414887,75.21427864,3.727210057,122.2183901,0,122.2183901,2.338502491,119.8798876,1.022243188,3.464102546,1.01817015,-1.01817015,0.356036339,0.156853414,1.70349988,54.7904119,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.29882555,1.694237094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234179864,52.66662797,73.53300541,54.36086506,536.9054872,0,0.67159382,47.80980391,-0.67159382,132.1901961,0.975550238,0,597.3112813,54.36086506,632.8893803,11,13,6% -11/15/2018 22:00,63.78635899,213.5755962,402.5073235,751.6751677,70.47777429,568.9809233,497.5940438,71.38687958,68.35260936,3.034270224,99.71772557,0,99.71772557,2.12516493,97.59256064,1.113281982,3.727597356,1.63426408,-1.63426408,0.250678072,0.175096874,1.158733181,37.26884222,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.70312803,1.539674757,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.839498245,35.82422873,66.54262628,37.36390349,497.5940438,0,0.661980155,48.54893395,-0.661980155,131.4510661,0.974469035,0,551.4326138,37.36390349,575.8865414,11,14,4% -11/15/2018 23:00,71.41363806,226.5438345,262.9546533,644.3074829,57.5921428,442.4279849,384.5901945,57.83779045,55.85552721,1.982263249,65.49301566,0,65.49301566,1.736615598,63.75640007,1.246403115,3.953935812,2.728042433,-2.728042433,0.063630958,0.219019295,0.53266158,17.13222743,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.69045732,1.258172089,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.385911501,16.46814866,54.07636882,17.72632075,384.5901945,0,0.596904746,53.35146343,-0.596904746,126.6485366,0.966234541,0,425.6806989,17.72632075,437.2822213,11,15,3% -11/15/2018 0:00,80.7173286,237.574071,95.32838472,384.1262139,33.36677213,217.9253243,184.8460578,33.07926647,32.36064084,0.718625631,24.11960184,0,24.11960184,1.00613129,23.11347055,1.408783148,4.146449757,5.974918507,-5.974918507,0,0.350019275,0.251532823,8.090160211,0.329586865,1,0.165829324,0,0.943361938,0.982123901,0.724496596,1,31.36873761,0.728938695,0.048766276,0.312029739,0.871033234,0.59552983,0.961238037,0.922476074,0.172635059,7.776569719,31.54137267,8.505508413,123.9232252,0,0.481211777,61.23542501,-0.481211777,118.764575,0.946095643,0,148.7845961,8.505508413,154.3512813,11,16,4% -11/15/2018 1:00,91.31116327,247.1810747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.593680443,4.314123602,-43.63793587,43.63793587,0,#DIV/0!,0,0,1,0.856993318,0,0.022911831,0.961238037,1,0.661577379,0.937080783,0,0,0.115824807,0.240590999,0.724496596,0.448993192,0.972015908,0.933253944,0,0,0,0,0,0,0.32001468,71.33618733,-0.32001468,108.6638127,0.893757168,0,0,0,0,11,17,0% -11/15/2018 2:00,102.5446919,255.9524174,0,0,0,0,0,0,0,0,0,0,0,0,0,1.789742504,4.467212412,-4.46988553,4.46988553,0.705450866,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127952779,82.64869276,-0.127952779,97.35130724,0.659230841,0,0,0,0,11,18,0% -11/15/2018 3:00,114.2104338,264.5098811,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993348109,4.616568329,-2.153081363,2.153081363,0.898352288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.083369243,94.78225652,0.083369243,85.21774348,0,0,0,0,0,11,19,0% -11/15/2018 4:00,126.0444785,273.6232414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.199891153,4.775626473,-1.258985026,1.258985026,0.745452809,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299557809,107.4310461,0.299557809,72.56895393,0,0.883087309,0,0,0,11,20,0% -11/15/2018 5:00,137.7343345,284.5268688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403917629,4.96593067,-0.748753385,0.748753385,0.65819806,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505890295,120.39047,0.505890295,59.60953002,0,0.951164342,0,0,0,11,21,0% -11/15/2018 6:00,148.7194131,299.7360868,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59564342,5.231381602,-0.392662336,0.392662336,0.597302904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688317909,133.4971039,0.688317909,46.50289614,0,0.977359147,0,0,0,11,22,0% -11/15/2018 7:00,157.5811055,324.77765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750309129,5.668439329,-0.108323038,0.108323038,0.54867802,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834422415,146.5557439,0.834422415,33.44425605,0,0.990078312,0,0,0,11,23,0% -11/16/2018 8:00,160.847748,4.527039793,0,0,0,0,0,0,0,0,0,0,0,0,0,2.807322797,0.07901175,0.144173211,-0.144173211,0.505498619,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934261565,159.1091713,0.934261565,20.89082867,0,0.996481797,0,0,0,11,0,0% -11/16/2018 9:00,156.0584024,41.70011256,0,0,0,0,0,0,0,0,0,0,0,0,0,2.723732947,0.727804263,0.390939286,-0.390939286,0.463299134,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981045791,168.8267674,0.981045791,11.17323261,0,0.999033979,0,0,0,11,1,0% -11/16/2018 10:00,146.5588913,64.06820957,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557935201,1.118201203,0.656872355,-0.656872355,0.417821901,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.971600159,166.3123529,0.971600159,13.68764708,0,0.998538502,0,0,0,11,2,0% -11/16/2018 11:00,135.3618452,78.06788815,0,0,0,0,0,0,0,0,0,0,0,0,0,2.36250988,1.362541688,0.977675023,-0.977675023,0.362961414,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.906580194,155.0369567,0.906580194,24.9630433,0,0.994847681,0,0,0,11,3,0% -11/16/2018 12:00,123.6184798,88.46196535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.157549489,1.543952558,1.426660054,-1.426660054,0.286180451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.790426899,142.2254238,0.790426899,37.7745762,0,0.986743043,0,0,0,11,4,0% -11/16/2018 13:00,111.8097406,97.38907283,0,0,0,0,0,0,0,0,0,0,0,0,0,1.951448109,1.699759976,2.218822161,-2.218822161,0.150712753,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.631064041,129.1286692,0.631064041,50.87133076,0,0.970768739,0,0,0,11,5,0% -11/16/2018 14:00,100.2283905,105.9443379,0,0,0,0,0,0,0,0,0,0,0,0,0,1.749315418,1.849077519,4.486741665,-4.486741665,0,#DIV/0!,0,0,0.191673803,1,0.219294624,0,0.936257781,0.975019744,0.724496596,1,0,0,0.030061061,0.312029739,0.918290372,0.642786967,0.961238037,0.922476074,0,0,0,0,0,0,-0.439358257,116.0629426,0.439358257,63.93705739,0,0.936197655,0,0,0,11,6,0% -11/16/2018 15:00,88.76654751,114.8491701,1.508010974,14.11389284,1.20419328,1.179250433,0,1.179250433,1.167882409,0.011368024,3.538002193,3.136056603,0.40194559,0.03631087,0.36563472,1.54926852,2.004496161,-32.92747106,32.92747106,0,0.798530846,0.009077718,0.291970602,1,0.806242212,0,0.030360447,0.961238037,1,0.642008859,0.917512263,1.122612994,0.025250209,0.115824807,0.218413205,0.724496596,0.448993192,0.975141953,0.93637999,0.006576775,0.282519958,1.12918977,0.307770167,0,0.60763539,-0.22219643,102.8380727,0.22219643,77.16192727,0,0.824973882,1.12918977,0.809053493,1.6586991,11,7,47% -11/16/2018 16:00,78.79074736,124.7116238,128.5646815,457.5651704,39.61732418,39.39189056,0,39.39189056,38.42271568,0.969174875,37.46559395,5.098989952,32.366604,1.194608496,31.1719955,1.375157962,2.17662845,-2.915087225,2.915087225,0.971337035,0.308150915,0.949955705,30.55384093,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.9333758,0.865489789,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.688239675,29.36951407,37.62161547,30.23500386,0,5.098989952,-0.011143746,90.63850282,0.011143746,89.36149718,0,0,37.62161547,30.23500386,57.4098208,11,8,53% -11/16/2018 17:00,69.81209683,136.1084625,292.6454734,672.5642947,60.54350319,191.5880518,130.6640735,60.92397838,58.71789319,2.206085192,72.78089316,0,72.78089316,1.825610003,70.95528316,1.218450947,2.375540811,-1.101493146,1.101493146,0.718520111,0.206883443,1.713584703,55.11477446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,56.44187238,1.322648233,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.241486284,52.97841761,57.68335866,54.30106584,130.6640735,0,0.194277446,78.7974829,-0.194277446,101.2025171,0.792636106,0,161.2524211,54.30106584,196.7913826,11,9,22% -11/16/2018 18:00,62.66176207,149.5074856,422.7554422,763.7925668,71.98943771,360.3588552,287.3532555,73.00559965,69.81869055,3.186909096,104.6726986,0,104.6726986,2.17074716,102.5019515,1.093654063,2.609397881,-0.35224897,0.35224897,0.590391811,0.170286247,2.103813987,67.66588963,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11238104,1.572698928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.524206072,65.04302691,68.63658711,66.61572583,287.3532555,0,0.376218974,67.9003271,-0.376218974,112.0996729,0.917098675,0,332.1678771,66.61572583,375.7665373,11,10,13% -11/16/2018 19:00,58.07929007,164.9696028,502.9908564,803.6778449,78.05008049,499.0128517,419.5245116,79.48834013,75.69658259,3.79175754,124.3094545,0,124.3094545,2.353497901,121.9559566,1.013674839,2.879262735,0.139060382,-0.139060382,0.506372964,0.155171967,2.210481051,71.09666909,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.76243445,1.705101218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.601485997,68.34082263,74.36392045,70.04592384,419.5245116,0,0.522005819,58.53310571,-0.522005819,121.4668943,0.954215627,0,474.6807654,70.04592384,520.5244216,11,11,10% -11/16/2018 20:00,56.71490713,181.7472936,526.2409817,813.6395019,79.71127789,587.0676329,505.7929173,81.27471557,77.30768876,3.967026805,129.9968077,0,129.9968077,2.403589132,127.5932186,0.989861864,3.172088681,0.564372934,-0.564372934,0.433640234,0.151472958,2.060586476,66.27554427,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,74.31109098,1.741392144,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.492887887,63.70657407,75.80397887,65.44796621,505.7929173,0,0.621642529,51.56381993,-0.621642529,128.4361801,0.969567923,0,566.204567,65.44796621,609.0389519,11,12,8% -11/16/2018 21:00,58.79895235,198.3530757,490.6015178,798.1047878,77.1491988,611.9177383,533.3965111,78.52122728,74.82286581,3.698361472,121.278351,0,121.278351,2.326332994,118.952018,1.026235315,3.461914252,1.024534478,-1.024534478,0.354947975,0.157254301,1.687877368,54.28793819,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.92258464,1.685420335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.222861407,52.18363114,73.14544605,53.86905147,533.3965111,0,0.66832892,48.06177928,-0.66832892,131.9382207,0.975186538,0,593.3065433,53.86905147,628.5627601,11,13,6% -11/16/2018 22:00,63.9871598,213.4054107,399.0117956,750.0122316,70.077012,565.1581836,494.1863326,70.97185099,67.96393153,3.007919458,98.8581099,0,98.8581099,2.113080468,96.74502944,1.116786618,3.724627059,1.645199323,-1.645199323,0.248808035,0.175626417,1.145226798,36.83443052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.32951612,1.530919606,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.829712917,35.40665568,66.15922904,36.93757529,494.1863326,0,0.658904364,48.78363318,-0.658904364,131.2163668,0.974116453,0,547.5542667,36.93757529,571.729171,11,14,4% -11/16/2018 23:00,71.58507629,226.3490315,259.8890759,641.7302347,57.16894751,438.6531981,381.2489517,57.40424645,55.44509281,1.959153632,64.73697005,0,64.73697005,1.723854698,63.01311535,1.249395277,3.950535859,2.751223529,-2.751223529,0.059666757,0.219974415,0.522145813,16.79400421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.29593217,1.248926861,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.378292864,16.14303564,53.67422503,17.3919625,381.2489517,0,0.594095355,53.55183115,-0.594095355,126.4481688,0.965838426,0,421.8991125,17.3919625,433.2818042,11,15,3% -11/16/2018 0:00,80.86200103,237.3658754,92.98059409,378.8157671,32.81976647,213.8847181,181.3536617,32.53105641,31.83012942,0.700926993,23.53385858,0,23.53385858,0.989637051,22.54422153,1.411308158,4.142816058,6.066274902,-6.066274902,0,0.352974368,0.247409263,7.957532354,0.336535838,1,0.163376512,0,0.94367262,0.982434583,0.724496596,1,30.85580256,0.716988675,0.049652634,0.312029739,0.868862562,0.593359158,0.961238037,0.922476074,0.169741539,7.649082778,31.0255441,8.366071453,120.3216553,0,0.47873842,61.39696141,-0.47873842,118.6030386,0.945558831,0,144.7967478,8.366071453,150.2721743,11,16,4% -11/16/2018 1:00,91.43657924,246.9624659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.595869365,4.310308158,-39.81909889,39.81909889,0,#DIV/0!,0,0,1,0.842261855,0,0.025108299,0.961238037,1,0.65576161,0.931265014,0,0,0.115824807,0.233997368,0.724496596,0.448993192,0.972956383,0.93419442,0,0,0,0,0,0,0.317873787,71.46561083,-0.317873787,108.5343892,0.892704866,0,0,0,0,11,17,0% -11/16/2018 2:00,102.6551596,255.720597,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791670529,4.463166383,-4.431418899,4.431418899,0.712029047,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126178891,82.75115965,-0.126178891,97.24884035,0.653737206,0,0,0,0,11,18,0% -11/16/2018 3:00,114.3121325,264.257507,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995123088,4.61216357,-2.145325723,2.145325723,0.897025995,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.084790308,94.86396685,0.084790308,85.13603315,0,0,0,0,0,11,19,0% -11/16/2018 4:00,126.1448939,273.3380833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201643733,4.770649525,-1.25707337,1.25707337,0.745125897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300664415,107.4975138,0.300664415,72.50248623,0,0.883701637,0,0,0,11,20,0% -11/16/2018 5:00,137.8442792,284.1907901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.405836528,4.960064992,-0.748868762,0.748868762,0.65821779,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506742363,120.4470828,0.506742363,59.55291724,0,0.951330531,0,0,0,11,21,0% -11/16/2018 6:00,148.8571834,299.3313564,0,0,0,0,0,0,0,0,0,0,0,0,0,2.598047966,5.224317724,-0.393785073,0.393785073,0.597494903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688992805,133.5504335,0.688992805,46.44956654,0,0.977430302,0,0,0,11,22,0% -11/16/2018 7:00,157.7756274,324.361135,0,0,0,0,0,0,0,0,0,0,0,0,0,2.753704177,5.661169772,-0.110144534,0.110144534,0.548989514,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83500963,146.616841,0.83500963,33.38315905,0,0.990120451,0,0,0,11,23,0% -11/17/2018 8:00,161.0966624,4.440190391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.811667172,0.077495942,0.141682863,-0.141682863,0.505924493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93485656,159.2049835,0.93485656,20.79501649,0,0.996515859,0,0,0,11,0,0% -11/17/2018 9:00,156.2878778,41.94762762,0,0,0,0,0,0,0,0,0,0,0,0,0,2.727738049,0.732124215,0.387621075,-0.387621075,0.463866582,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981743424,169.0349592,0.981743424,10.96504077,0,0.999070196,0,0,0,11,1,0% -11/17/2018 10:00,146.7548816,64.35089022,0,0,0,0,0,0,0,0,0,0,0,0,0,2.561355877,1.123134911,0.652323375,-0.652323375,0.418599823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.972488155,166.5290495,0.972488155,13.47095047,0,0.998585492,0,0,0,11,2,0% -11/17/2018 11:00,135.540291,78.31727808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.365624348,1.366894364,0.970994647,-0.970994647,0.364103825,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.90773309,155.1939374,0.90773309,24.80606263,0,0.994917729,0,0,0,11,3,0% -11/17/2018 12:00,123.7914095,88.67848172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.160567681,1.547731482,1.415564663,-1.415564663,0.288077875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.791900905,142.3635106,0.791900905,37.63648943,0,0.986860787,0,0,0,11,4,0% -11/17/2018 13:00,111.9848385,97.58061854,0,0,0,0,0,0,0,0,0,0,0,0,0,1.954504144,1.70310308,2.195491086,-2.195491086,0.154702602,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.632893149,129.2638978,0.632893149,50.73610217,0,0.970997723,0,0,0,11,5,0% -11/17/2018 14:00,100.4110483,106.1167733,0,0,0,0,0,0,0,0,0,0,0,0,0,1.752503399,1.852087086,4.396675533,-4.396675533,0,#DIV/0!,0,0,0.181483258,1,0.223640003,0,0.935652826,0.974414789,0.724496596,1,0,0,0.028589227,0.312029739,0.92212595,0.646622545,0.961238037,0.922476074,0,0,0,0,0,0,-0.441551882,116.2029393,0.441551882,63.79706072,0,0.936763024,0,0,0,11,6,0% -11/17/2018 15:00,88.9400193,115.0049169,1.103768059,11.03392051,0.899650483,0.880843371,0,0.880843371,0.872522701,0.00832067,2.770751621,2.476002494,0.294749126,0.027127781,0.267621345,1.552296174,2.007214456,-38.21403119,38.21403119,0,0.815072039,0.006781945,0.218130675,1,0.835123287,0,0.026162428,0.961238037,1,0.652983971,0.928487375,0.838702009,0.018946261,0.115824807,0.23084892,0.724496596,0.448993192,0.97340216,0.934640197,0.004913496,0.210934809,0.843615505,0.229881071,0,0.408235152,-0.22439916,102.9675491,0.22439916,77.03245086,0,0.827182767,0.843615505,0.567566153,1.215076201,11,7,44% -11/17/2018 16:00,78.99861551,124.8487769,124.9967358,450.9932153,38.93247595,38.70079635,0,38.70079635,37.75851816,0.942278193,37.78151322,6.300649672,31.48086355,1.173957795,30.30690575,1.378785945,2.179022224,-2.96152524,2.96152524,0.963395667,0.311467941,0.918529714,29.54307302,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,36.29492387,0.850528427,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.665471651,28.39792551,36.96039552,29.24845394,0,6.300649672,-0.013970609,90.80048295,0.013970609,89.19951705,0,0,36.96039552,29.24845394,56.10292365,11,8,52% -11/17/2018 17:00,70.03739876,136.2192448,288.5935895,669.4474212,60.03975228,188.3954662,127.9905936,60.4048726,58.22933222,2.17554038,71.78327705,0,71.78327705,1.810420054,69.97285699,1.222383208,2.377474326,-1.110141266,1.110141266,0.719999027,0.208042571,1.693116801,54.45645637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.97224899,1.311643166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226657359,52.34561721,57.19890635,53.65726038,127.9905936,0,0.191188418,78.97785294,-0.191188418,101.0221471,0.788477883,0,158.1166586,53.65726038,193.2342624,11,9,22% -11/17/2018 18:00,62.90207396,149.5770192,418.5825444,761.8706632,71.54079404,356.6847746,284.1457474,72.53902717,69.38357514,3.155452029,103.647403,0,103.647403,2.157218898,101.4901841,1.097848297,2.610611471,-0.353567794,0.353567794,0.590617343,0.170912034,2.084446696,67.04297097,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.69413156,1.562897748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.510174535,64.4442538,68.20430609,66.00715154,284.1457474,0,0.372957985,68.10184004,-0.372957985,111.89816,0.915936642,0,328.4638077,66.00715154,371.6641683,11,10,13% -11/17/2018 19:00,58.3271611,164.9789655,498.853436,802.2337793,77.62593776,495.1368492,416.091052,79.04579724,75.28522933,3.760567917,123.2934995,0,123.2934995,2.340708433,120.9527911,1.018001004,2.879426144,0.140674122,-0.140674122,0.506096998,0.155608706,2.192232864,70.50974464,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.36702604,1.695835291,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.588265247,67.77664852,73.95529129,69.47248381,416.091052,0,0.518665584,58.75721597,-0.518665584,121.242784,0.953598771,0,470.7392069,69.47248381,516.2075581,11,11,10% -11/17/2018 20:00,56.95717665,181.6850056,522.2571715,812.3642863,79.30278032,583.1495286,502.3010245,80.84850406,76.9115089,3.936995161,129.0185691,0,129.0185691,2.391271423,126.6272977,0.994090265,3.171001549,0.56805568,-0.56805568,0.433010447,0.151846226,2.043716514,65.73294831,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.93026782,1.732468006,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.480665657,63.18501019,75.41093348,64.91747819,502.3010245,0,0.618319925,51.80644997,-0.618319925,128.19355,0.969135713,0,562.2087949,64.91747819,604.6959861,11,12,8% -11/17/2018 21:00,59.02158574,198.2265207,486.8714832,796.7889378,76.75217956,608.0679305,529.9598695,78.10806105,74.43781816,3.670242895,120.3619893,0,120.3619893,2.314361399,118.0476279,1.030121001,3.45970545,1.030689042,-1.030689042,0.353895483,0.157643613,1.672712219,53.80017489,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.55246219,1.676746955,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.211874309,51.71477449,72.7643365,53.39152145,529.9598695,0,0.665119512,48.30850532,-0.665119512,131.6914947,0.97482554,0,589.3827525,53.39152145,624.3264355,11,13,6% -11/17/2018 22:00,64.18175612,213.2356024,395.6230251,748.3937444,69.68426315,561.4341148,490.8687158,70.56539898,67.58302551,2.982373475,98.02462044,0,98.02462044,2.101237642,95.9233828,1.120182964,3.721663344,1.655816324,-1.655816324,0.246992421,0.176138037,1.132185613,36.41498118,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.96337476,1.522339518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.820264623,35.00346502,65.78363939,36.52580454,490.8687158,0,0.655896337,49.01235001,-0.655896337,130.98765,0.973768442,0,543.7761038,36.52580454,567.6815123,11,14,4% -11/17/2018 23:00,71.7503731,226.1555787,256.9363573,639.2308908,56.75633149,435.0003219,378.0185085,56.98181348,55.04491869,1.936894792,64.00860734,0,64.00860734,1.711412803,62.29719453,1.25228025,3.94715947,2.773813598,-2.773813598,0.055803627,0.220896459,0.512063195,16.46971257,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.91126958,1.23991275,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370988042,15.83131418,53.28225762,17.07122693,378.0185085,0,0.591364582,53.74609702,-0.591364582,126.253903,0.965449789,0,418.240147,17.07122693,429.4129236,11,15,3% -11/17/2018 0:00,81.00063728,237.1596131,90.74335443,373.6827388,32.29060029,210.005599,178.0046177,32.00098128,31.31691955,0.684061736,22.97545761,0,22.97545761,0.973680738,22.00177687,1.413727817,4.139216101,6.156306366,-6.156306366,0,0.355845345,0.243420185,7.829229887,0.343244519,1,0.161028636,0,0.943968743,0.982730706,0.724496596,1,30.35943213,0.70542838,0.05050354,0.312029739,0.866784567,0.591281163,0.961238037,0.922476074,0.166948808,7.525753567,30.52638094,8.231181947,116.9055083,0,0.476352262,61.55256779,-0.476352262,118.4474322,0.945035662,0,141.0062553,8.231181947,146.3933993,11,16,4% -11/17/2018 1:00,91.55599508,246.7461719,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597953564,4.306533117,-36.75419605,36.75419605,0,#DIV/0!,0,0,1,0.828045485,0,0.027201067,0.961238037,1,0.650255692,0.925759096,0,0,0.115824807,0.22775687,0.724496596,0.448993192,0.973837873,0.935075909,0,0,0,0,0,0,0.315826536,71.5892818,-0.315826536,108.4107182,0.891685247,0,0,0,0,11,17,0% -11/17/2018 2:00,102.7596166,255.4913842,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793493648,4.459165864,-4.395654309,4.395654309,0.718145152,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124501563,82.8480274,-0.124501563,97.1519726,0.648398617,0,0,0,0,11,18,0% -11/17/2018 3:00,114.4077127,264.007986,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996791277,4.607808607,-2.138165586,2.138165586,0.89580154,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086115238,94.94015845,0.086115238,85.05984155,0,0,0,0,0,11,19,0% -11/17/2018 4:00,126.2389481,273.0559235,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203285288,4.765724907,-1.255397233,1.255397233,0.74483926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301678625,107.5584531,0.301678625,72.44154686,0,0.884260714,0,0,0,11,20,0% -11/17/2018 5:00,137.9474365,283.8574352,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407636962,4.954246851,-0.749099914,0.749099914,0.65825732,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507508828,120.498036,0.507508828,59.50196396,0,0.951479546,0,0,0,11,21,0% -11/17/2018 6:00,148.9875704,298.9273435,0,0,0,0,0,0,0,0,0,0,0,0,0,2.600323649,5.217266369,-0.394968782,0.394968782,0.597697329,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689591473,133.5977791,0.689591473,46.40222086,0,0.977493303,0,0,0,11,22,0% -11/17/2018 7:00,157.9626334,323.9379117,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756968048,5.653783132,-0.111995468,0.111995468,0.549306043,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835531928,146.6712669,0.835531928,33.32873314,0,0.990157882,0,0,0,11,23,0% -11/18/2018 8:00,161.3400875,4.340362759,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815915742,0.075753621,0.139185882,-0.139185882,0.506351502,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935399103,159.2927188,0.935399103,20.70728125,0,0.996546881,0,0,0,11,0,0% -11/18/2018 9:00,156.514003,42.18531381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731684678,0.736272622,0.384317761,-0.384317761,0.464431482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982401367,169.2349494,0.982401367,10.76505062,0,0.999104305,0,0,0,11,1,0% -11/18/2018 10:00,146.948847,64.62498174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.564741212,1.12791871,0.647816541,-0.647816541,0.419370537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.973348637,166.7423473,0.973348637,13.25765269,0,0.998630945,0,0,0,11,2,0% -11/18/2018 11:00,135.7174722,78.55907104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.368716742,1.371114447,0.96440239,-0.96440239,0.365231168,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.908869225,155.3495516,0.908869225,24.65044844,0,0.994986585,0,0,0,11,3,0% -11/18/2018 12:00,123.9634265,88.88811788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.163569944,1.551390323,1.40466206,-1.40466206,0.28994233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.793366736,142.5012608,0.793366736,37.49873922,0,0.986977443,0,0,0,11,4,0% -11/18/2018 13:00,112.1590903,97.76569701,0,0,0,0,0,0,0,0,0,0,0,0,0,1.957545413,1.706333308,2.172716579,-2.172716579,0.158597272,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.634719908,129.3992137,0.634719908,50.60078633,0,0.971225096,0,0,0,11,5,0% -11/18/2018 14:00,100.5927002,106.282904,0,0,0,0,0,0,0,0,0,0,0,0,0,1.755673823,1.854986614,4.310420549,-4.310420549,0,#DIV/0!,0,0,0.171480117,1,0.227963204,0,0.935046898,0.973808862,0.724496596,1,0,0,0.027131653,0.312029739,0.925941167,0.650437763,0.961238037,0.922476074,0,0,0,0,0,0,-0.443745823,116.3431247,0.443745823,63.65687526,0,0.937322883,0,0,0,11,6,0% -11/18/2018 15:00,89.11054895,115.1543369,0.779366582,8.468329667,0.647910788,0.634249082,0,0.634249082,0.628373887,0.005875195,2.127226232,1.91872288,0.208503352,0.019536901,0.188966451,1.555272477,2.009822327,-45.42319529,45.42319529,0,0.831329958,0.004884225,0.157093472,1,0.862975737,0,0.022011628,0.961238037,1,0.663971868,0.939475272,0.604016882,0.013709483,0.115824807,0.24330632,0.724496596,0.448993192,0.971625901,0.932863938,0.003538605,0.151801711,0.607555486,0.165511194,0,0.262911589,-0.226576309,103.0955881,0.226576309,76.90441187,0,0.829323795,0.607555486,0.383550031,0.85858131,11,7,41% -11/18/2018 16:00,79.20447611,124.9794889,121.4768538,444.3572166,38.24671426,38.00917854,0,38.00917854,37.09343471,0.915743836,38.06864194,7.461892776,30.60674916,1.15327955,29.45346961,1.38237889,2.181303579,-3.009607401,3.009607401,0.955173133,0.314847751,0.887618386,28.54885847,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.65562036,0.835547108,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.643076499,27.44224867,36.29869686,28.27779578,0,7.461892776,-0.016792554,90.96218772,0.016792554,89.03781228,0,0,36.29869686,28.27779578,54.80594863,11,8,51% -11/18/2018 17:00,70.25989402,136.3235521,284.5911347,666.320866,59.53847187,185.2307026,125.3421671,59.88853546,57.74316727,2.145368185,70.79772008,0,70.79772008,1.795304601,69.00241548,1.226266483,2.379294832,-1.119076425,1.119076425,0.721527029,0.20920705,1.672927084,53.80708568,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.50492875,1.300692072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.212029978,51.72141741,56.71695873,53.02210948,125.3421671,0,0.188110824,79.15744547,-0.188110824,100.8425545,0.78419924,0,155.0101909,53.02210948,189.7121011,11,9,22% -11/18/2018 18:00,63.13855611,149.6404347,414.4704776,759.9564648,71.09593693,353.0461069,280.9695212,72.07658565,68.95213211,3.124453533,102.6369707,0,102.6369707,2.143804814,100.4931659,1.101975689,2.611718279,-0.355046342,0.355046342,0.59087019,0.171534381,2.065420067,66.43100919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.27941211,1.55317929,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.496389808,63.85601286,67.77580192,65.40919215,280.9695212,0,0.369717917,68.30177845,-0.369717917,111.6982216,0.914761761,0,324.795976,65.40919215,367.604984,11,10,13% -11/18/2018 19:00,58.57013373,164.9833174,494.7900152,800.8052361,77.2065317,491.3095471,412.7011411,78.60840604,74.87846991,3.729936135,122.2956295,0,122.2956295,2.328061792,119.9675677,1.022241677,2.8795021,0.142142165,-0.142142165,0.505845948,0.156038985,2.174378371,69.9354828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.97603341,1.686672844,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.575329728,67.22464619,73.55136314,68.91131904,412.7011411,0,0.515357696,58.97863315,-0.515357696,121.0213669,0.952980007,0,466.8472995,68.91131904,511.9483796,11,11,10% -11/18/2018 20:00,57.19370212,181.6195699,518.3605088,811.1112054,78.89997023,579.2960897,498.8676242,80.42846549,76.52084502,3.907620472,128.0616319,0,128.0616319,2.379125212,125.6825067,0.998218413,3.16985948,0.571572249,-0.571572249,0.432409078,0.152210612,2.027283035,65.20439114,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.55474684,1.723668117,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.468759658,62.67694093,75.0235065,64.40060905,498.8676242,0,0.615042205,52.04501297,-0.615042205,127.954987,0.968704766,0,558.2789516,64.40060905,600.4278622,11,12,8% -11/18/2018 21:00,59.23803357,198.0988354,483.240539,795.5042533,76.36193802,604.3003876,526.5981725,77.70221515,74.05934385,3.642871304,119.4698576,0,119.4698576,2.302594177,117.1672634,1.033898728,3.457476922,1.036624399,-1.036624399,0.352880477,0.158020555,1.658011574,53.32735161,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.18865829,1.668221643,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.201223741,51.26027877,72.38988203,52.92850041,526.5981725,0,0.661967765,48.54988105,-0.661967765,131.4501189,0.974467621,0,585.5427505,52.92850041,620.1833954,11,13,6% -11/18/2018 22:00,64.37006977,213.0662198,392.3429222,746.8225308,69.29976553,557.8115887,487.6438201,70.16776859,67.21012191,2.957646674,97.21772749,0,97.21772749,2.08964362,95.12808387,1.123469657,3.718707061,1.666097417,-1.666097417,0.245234251,0.176630599,1.119614125,36.0106389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.60492564,1.513939689,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.811156622,34.61479584,65.41608227,36.12873553,487.6438201,0,0.652958099,49.23499705,-0.652958099,130.765003,0.973425408,0,540.1009669,36.12873553,563.7465017,11,14,4% -11/18/2018 23:00,71.90946104,225.9635381,254.0978679,636.8143061,56.35462696,431.4724548,374.9016307,56.57082409,54.65532703,1.91549706,63.30826985,0,63.30826985,1.699299929,61.60896992,1.255056859,3.943807729,2.795766598,-2.795766598,0.052049443,0.221783156,0.502413634,16.15934951,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.53677926,1.231137014,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363996968,15.5329814,52.90077623,16.76411841,374.9016307,0,0.588714209,53.93418241,-0.588714209,126.0658176,0.965069147,0,414.7067731,16.76411841,425.6785534,11,15,3% -11/18/2018 0:00,81.1331852,236.955363,88.61655454,368.7379007,31.77997929,206.2916682,174.8019435,31.48972468,30.82169566,0.66802902,22.44439325,0,22.44439325,0.958283631,21.48610962,1.416041214,4.135651265,6.244737351,-6.244737351,0,0.358623504,0.239570908,7.705423915,0.349703166,1,0.158786731,0,0.944250344,0.983012307,0.724496596,1,29.88031249,0.694273229,0.051318311,0.312029739,0.864800193,0.589296789,0.961238037,0.922476074,0.164259685,7.406746557,30.04457217,8.101019786,113.6731505,0,0.474054723,61.70217902,-0.474054723,118.297821,0.944526945,0,137.4119257,8.101019786,142.7138812,11,16,4% -11/18/2018 1:00,91.66936804,246.5322907,0,0,0,0,0,0,0,0,0,0,0,0,0,1.599932296,4.302800186,-34.24930157,34.24930157,0,#DIV/0!,0,0,1,0.814372375,0,0.029189383,0.961238037,1,0.645056489,0.920559894,0,0,0.115824807,0.221865688,0.724496596,0.448993192,0.9746623,0.935900337,0,0,0,0,0,0,0.313874044,71.70714579,-0.313874044,108.2928542,0.890700431,0,0,0,0,11,17,0% -11/18/2018 2:00,102.8580334,255.2648993,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795211345,4.455212958,-4.362489494,4.362489494,0.723816669,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122921516,82.93925827,-0.122921516,97.06074173,0.643236386,0,0,0,0,11,18,0% -11/18/2018 3:00,114.4971571,263.7614699,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998352376,4.603506089,-2.131591465,2.131591465,0.894677299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.087343714,95.01081119,0.087343714,84.98918881,0,0.47754896,0,0,0,11,19,0% -11/18/2018 4:00,126.3266334,272.7769636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204815685,4.760856138,-1.253954511,1.253954511,0.74459254,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302600497,107.6138621,0.302600497,72.38613786,0,0.884765638,0,0,0,11,20,0% -11/18/2018 5:00,138.0438009,283.527093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409318837,4.948481291,-0.749445939,0.749445939,0.658316493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508190074,120.5433465,0.508190074,59.4566535,0,0.951611616,0,0,0,11,21,0% -11/18/2018 6:00,149.1105486,298.5244827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602470023,5.210235121,-0.396212754,0.396212754,0.597910061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690114552,133.6391774,0.690114552,46.36082265,0,0.97754826,0,0,0,11,22,0% -11/18/2018 7:00,158.1420249,323.5084092,0,0,0,0,0,0,0,0,0,0,0,0,0,2.760099021,5.646286899,-0.113875073,0.113875073,0.549627474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835990113,146.7190767,0.835990113,33.28092331,0,0.99019068,0,0,0,11,23,0% -11/19/2018 8:00,161.5779017,4.227220967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820066383,0.073778924,0.136683189,-0.136683189,0.506779488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935890064,159.37242,0.935890064,20.62757999,0,0.996574922,0,0,0,11,0,0% -11/19/2018 9:00,156.7367322,42.41273646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.735572036,0.740241896,0.38103049,-0.38103049,0.464993638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98302045,169.4265393,0.98302045,10.57346073,0,0.999136358,0,0,0,11,1,0% -11/19/2018 10:00,147.1407637,64.89021257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56809079,1.132547862,0.643353285,-0.643353285,0.420133798,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974182292,166.9522598,0.974182292,13.04774021,0,0.998674904,0,0,0,11,2,0% -11/19/2018 11:00,135.8933576,78.79309202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.371786522,1.375198884,0.957899977,-0.957899977,0.366343146,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.909989051,155.5038385,0.909989051,24.49616153,0,0.995054284,0,0,0,11,3,0% -11/19/2018 12:00,124.1344856,89.09074899,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16655549,1.554926903,1.393953738,-1.393953738,0.291773561,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.794824533,142.6386855,0.794824533,37.36131453,0,0.987093034,0,0,0,11,4,0% -11/19/2018 13:00,112.3324355,97.94421342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.960570857,1.709449008,2.15049375,-2.15049375,0.162397599,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.636544096,129.5346015,0.636544096,50.46539849,0,0.971450846,0,0,0,11,5,0% -11/19/2018 14:00,100.7732702,106.4426575,0,0,0,0,0,0,0,0,0,0,0,0,0,1.758825363,1.857774838,4.227798646,-4.227798646,0,#DIV/0!,0,0,0.161666328,1,0.232261121,0,0.934440513,0.973202476,0.724496596,1,0,0,0.025689181,0.312029739,0.929733304,0.6542299,0.961238037,0.922476074,0,0,0,0,0,0,-0.445939464,116.4834611,0.445939464,63.51653893,0,0.937877158,0,0,0,11,6,0% -11/19/2018 15:00,89.27799776,115.2973787,0.525631787,6.374766298,0.445303466,0.435838358,0,0.435838358,0.431875924,0.003962434,1.59894866,1.458075605,0.140873055,0.013427543,0.127445512,1.55819501,2.012318878,-55.81877057,55.81877057,0,0.847177582,0.003356886,0.107968981,1,0.889815973,0,0.017913204,0.961238037,1,0.674953841,0.950457245,0.415135565,0.009470579,0.115824807,0.255763821,0.724496596,0.448993192,0.96981644,0.931054476,0.002432052,0.104248963,0.417567617,0.113719542,0,0.160656642,-0.228726127,103.2220851,0.228726127,76.77791488,0,0.831397951,0.417567617,0.247289144,0.579413417,11,7,39% -11/19/2018 16:00,79.40822582,125.1037325,118.0071854,437.6619539,37.56044058,37.31744272,0,37.31744272,36.42785471,0.88958801,38.3265556,8.581761393,29.74479421,1.132585867,28.61220834,1.385934994,2.183472039,-3.059378066,3.059378066,0.946661848,0.318289437,0.857241539,27.57183464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,35.01583955,0.820554605,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.621068577,26.5030962,35.63690813,27.3236508,0,8.581761393,-0.019608196,91.12353888,0.019608196,88.87646112,0,0,35.63690813,27.3236508,53.5196911,11,8,50% -11/19/2018 17:00,70.47947187,136.4213863,280.6404088,663.187408,59.03993708,182.0956684,122.7204173,59.37525109,57.25966514,2.115585945,69.8247882,0,69.8247882,1.780271937,68.04451626,1.230098839,2.381002361,-1.128299928,1.128299928,0.723104341,0.210375752,1.653026773,53.16702327,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,55.04016811,1.289800958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.19761227,51.10616507,56.23778038,52.39596603,122.7204173,0,0.185046362,79.33616458,-0.185046362,100.6638354,0.779797444,0,151.9348481,52.39596603,186.22696,11,9,23% -11/19/2018 18:00,63.37109707,149.6977635,410.4217061,758.052111,70.65510266,349.4451663,277.8266435,71.61852281,68.52459063,3.093932183,101.6420064,0,101.6420064,2.130512035,99.51149434,1.106034295,2.612718857,-0.356686934,0.356686934,0.591150748,0.172152451,2.046744887,65.8303512,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.86844297,1.543548717,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482859703,63.27863756,67.35130267,64.82218627,277.8266435,0,0.366500719,68.50003129,-0.366500719,111.4999687,0.913574619,0,321.1666728,64.82218627,363.5914972,11,10,13% -11/19/2018 19:00,58.80810377,164.9827089,490.8030909,799.3940824,76.79208032,487.5335251,409.3571284,78.17639678,74.47651577,3.699881015,121.3164563,0,121.3164563,2.315564554,119.0008917,1.026395038,2.879491479,0.143460605,-0.143460605,0.505620481,0.156462096,2.156927542,69.37420413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.58965981,1.677618637,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.562686662,66.68512379,73.15234647,68.36274243,409.3571284,0,0.512084262,59.19723865,-0.512084262,120.8027613,0.952359819,0,463.0076271,68.36274243,507.7496748,11,11,10% -11/19/2018 20:00,57.42439007,181.5510364,514.5533955,809.8821071,78.50305728,575.5100378,495.4952165,80.0148213,76.13590046,3.878920844,127.1265849,0,127.1265849,2.367156822,124.759428,1.002244678,3.168663346,0.574916734,-0.574916734,0.431837138,0.152565425,2.011294724,64.69015209,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,73.18472349,1.71499706,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.457176181,62.1826348,74.64189967,63.89763186,495.4952165,0,0.611811537,52.27939556,-0.611811537,127.7206044,0.968275487,0,554.4177716,63.89763186,596.2374937,11,12,8% -11/19/2018 21:00,59.4482117,197.9700641,479.7108705,794.2528303,75.978685,600.6178808,523.3139703,77.30391049,73.68764732,3.616263173,118.6024921,0,118.6024921,2.291037684,116.3114545,1.037567029,3.455229438,1.042331132,-1.042331132,0.351904568,0.15838433,1.643782294,52.86968904,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83136945,1.659849003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.190914676,50.8203561,72.02228412,52.4802051,523.3139703,0,0.658875802,48.7858087,-0.658875802,131.2141913,0.974113164,0,581.7893115,52.4802051,616.1365561,11,13,6% -11/19/2018 22:00,64.55202531,212.8973113,389.1733291,745.3014108,68.9237521,554.2934045,484.5142049,69.77919962,66.84544668,2.933752943,96.43788477,0,96.43788477,2.078305427,94.35957934,1.126645381,3.71575905,1.676024954,-1.676024954,0.243536542,0.177102969,1.107516574,35.6215401,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25438594,1.505725207,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.802391988,34.24077927,65.05677792,35.74650448,484.5142049,0,0.650091625,49.45148967,-0.650091625,130.5485103,0.973087765,0,536.5316225,35.74650448,559.9269948,11,14,4% -11/19/2018 23:00,72.06227538,225.772971,251.3749108,634.4853092,55.96415911,428.0726089,371.9010054,56.17160349,54.27663323,1.894970259,62.63628333,0,62.63628333,1.687525883,60.94875745,1.257723972,3.940481707,2.817036235,-2.817036235,0.048412121,0.222632239,0.493196824,15.8629052,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.17276437,1.222606758,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.35731942,15.24802786,52.53008379,16.47063461,371.9010054,0,0.586145968,54.11601132,-0.586145968,125.8839887,0.964697016,0,411.301874,16.47063461,422.081575,11,15,3% -11/19/2018 0:00,81.25959542,236.7532034,86.60000205,363.9917962,31.28858712,202.7464477,171.7484995,30.99794817,30.34512078,0.652827395,21.94063946,0,21.94063946,0.943466344,20.99717312,1.418247489,4.132122914,6.331281805,-6.331281805,0,0.361300074,0.235866586,7.586280194,0.355902205,1,0.156651795,0,0.944517456,0.983279419,0.724496596,1,29.41910759,0.683538155,0.052096284,0.312029739,0.862910352,0.587406948,0.961238037,0.922476074,0.161676925,7.292221081,29.58078452,7.975759236,110.6228299,0,0.471847171,61.84573261,-0.471847171,118.1542674,0.944033486,0,134.0124402,7.975759236,139.2324151,11,16,4% -11/19/2018 1:00,91.77665812,246.320919,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601804861,4.299111053,-32.17240932,32.17240932,0,#DIV/0!,0,0,1,0.801270269,0,0.03107253,0.961238037,1,0.64016098,0.915664384,0,0,0.115824807,0.216320128,0.724496596,0.448993192,0.975431483,0.93666952,0,0,0,0,0,0,0.312017378,71.8191508,-0.312017378,108.1808492,0.889752515,0,0,0,0,11,17,0% -11/19/2018 2:00,102.9503834,255.0412615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796823157,4.451309741,-4.331831374,4.331831374,0.729059517,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121439422,83.024817,-0.121439422,96.975183,0.638272086,0,0,0,0,11,18,0% -11/19/2018 3:00,114.5804515,263.5181085,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999806138,4.599258632,-2.125594604,2.125594604,0.893651775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088475459,95.07590743,0.088475459,84.92409257,0,0.484871539,0,0,0,11,19,0% -11/19/2018 4:00,126.4079458,272.5014028,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206234854,4.756046696,-1.252743241,1.252743241,0.744385401,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303430123,107.6637413,0.303430123,72.33625873,0,0.885217415,0,0,0,11,20,0% -11/19/2018 5:00,138.1333717,283.2000505,0,0,0,0,0,0,0,0,0,0,0,0,0,2.410882143,4.942773322,-0.749905977,0.749905977,0.658395164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508786513,120.5830337,0.508786513,59.41696628,0,0.951726955,0,0,0,11,21,0% -11/19/2018 6:00,149.226099,298.123213,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604486758,5.203231644,-0.397516297,0.397516297,0.59813298,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690562701,133.6746681,0.690562701,46.32533192,0,0.977595279,0,0,0,11,22,0% -11/19/2018 7:00,158.31371,323.0730881,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76309549,5.638689112,-0.115782592,0.115782592,0.549953679,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836385002,146.7603307,0.836385002,33.23966926,0,0.990218918,0,0,0,11,23,0% -11/20/2018 8:00,161.8099836,4.100440704,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824116977,0.071566191,0.134175694,-0.134175694,0.507208295,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93633032,159.4441411,0.93633032,20.55585886,0,0.996600042,0,0,0,11,0,0% -11/20/2018 9:00,156.9560206,42.62945553,0,0,0,0,0,0,0,0,0,0,0,0,0,2.739399341,0.744024357,0.377760385,-0.377760385,0.465552859,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983601502,169.6095362,0.983601502,10.3904638,0,0.999166405,0,0,0,11,1,0% -11/20/2018 10:00,147.3306082,65.14631121,0,0,0,0,0,0,0,0,0,0,0,0,0,2.571404202,1.137017626,0.638935,-0.638935,0.42088937,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.974989807,167.1588038,0.974989807,12.84119615,0,0.998717413,0,0,0,11,2,0% -11/20/2018 11:00,136.0679168,79.01916765,0,0,0,0,0,0,0,0,0,0,0,0,0,2.374833155,1.379144648,0.951489065,-0.951489065,0.367439476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.911093019,155.6568383,0.911093019,24.34316168,0,0.995120861,0,0,0,11,3,0% -11/20/2018 12:00,124.3045424,89.28625223,0,0,0,0,0,0,0,0,0,0,0,0,0,2.169523541,1.558339078,1.383441056,-1.383441056,0.293571336,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.796274439,142.7757958,0.796274439,37.22420417,0,0.987207579,0,0,0,11,4,0% -11/20/2018 13:00,112.5048143,98.11607521,0,0,0,0,0,0,0,0,0,0,0,0,0,1.963579433,1.712448562,2.128817573,-2.128817573,0.166104444,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.638365494,129.6700462,0.638365494,50.3299538,0,0.971674964,0,0,0,11,5,0% -11/20/2018 14:00,100.9526833,106.5959635,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761956712,1.860450533,4.148642653,-4.148642653,0,#DIV/0!,0,0,0.152043651,1,0.236530653,0,0.933834192,0.972596155,0.724496596,1,0,0,0.02426264,0.312029739,0.933499649,0.657996245,0.961238037,0.922476074,0,0,0,0,0,0,-0.448132197,116.6239106,0.448132197,63.37608936,0,0.938425781,0,0,0,11,6,0% -11/20/2018 15:00,89.44226727,115.4339933,0.332928103,4.703217889,0.287146422,0.280997651,0,0.280997651,0.278487898,0.002509753,1.175106944,1.085726147,0.089380797,0.008658524,0.080722273,1.561062054,2.014703251,-72.08636609,72.08636609,0,0.862487785,0.002164631,0.069621975,1,0.915666246,0,0.013871359,0.961238037,1,0.68591319,0.961416594,0.26769316,0.00614017,0.115824807,0.268201914,0.724496596,0.448993192,0.967976968,0.929215005,0.001568268,0.067164878,0.269261428,0.073305048,0,0.091563362,-0.230847512,103.3469734,0.230847512,76.65302657,0,0.833406806,0.269261428,0.149614577,0.367181176,11,7,36% -11/20/2018 16:00,79.60976363,125.2214826,114.5898073,430.9125207,36.87407285,36.62600988,0,36.62600988,35.76218351,0.86382637,38.55492185,9.659407058,28.89551479,1.111889347,27.78362545,1.389452492,2.185527166,-3.110881524,3.110881524,0.937854238,0.321791909,0.827418025,26.61260791,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,34.37597107,0.805560047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.599461542,25.58105098,34.97543261,26.38661103,0,9.659407058,-0.022416167,91.28445935,0.022416167,88.71554065,0,0,34.97543261,26.38661103,52.2449418,11,8,49% -11/20/2018 17:00,70.69602445,136.5127505,276.7436512,660.0499297,58.54442535,178.992217,120.1269115,58.86530546,56.77909492,2.08621054,68.86503269,0,68.86503269,1.76533043,67.09970226,1.233878395,2.382596967,-1.137812714,1.137812714,0.724731123,0.211547492,1.633426839,52.53662202,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.57822573,1.278975887,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.183412185,50.50019941,55.76163792,51.7791753,120.1269115,0,0.181996704,79.5139162,-0.181996704,100.4860838,0.77526975,0,148.8923985,51.7791753,182.7808332,11,9,23% -11/20/2018 18:00,63.59958873,149.7490376,406.4386313,756.1597889,70.21852637,345.8842149,274.7191301,71.1650848,68.10117872,3.063906083,100.6630994,0,100.6630994,2.117347649,98.54575173,1.110022226,2.613613758,-0.358491783,0.358491783,0.591459395,0.172765384,2.028431661,65.2413349,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.46144334,1.534011164,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.469591833,62.71245268,66.93103517,64.24646384,274.7191301,0,0.363308303,68.69649017,-0.363308303,111.3035098,0.91237584,0,317.5781323,64.24646384,359.626158,11,10,13% -11/20/2018 19:00,59.0409704,164.9771892,486.8950935,798.0022092,76.38279898,483.8113055,406.0613088,77.74999665,74.07957577,3.67042088,120.3565757,0,120.3565757,2.303223212,118.0533525,1.030459327,2.879395141,0.144625588,-0.144625588,0.505421257,0.156877323,2.139890047,68.82621972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.20810598,1.668677376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.550343054,66.15838033,72.75844904,67.8270577,406.0613088,0,0.508847349,59.41291729,-0.508847349,120.5870827,0.951738704,0,459.2227128,67.8270577,503.6141656,11,11,10% -11/20/2018 20:00,57.64915022,181.479454,510.8381645,808.6788497,78.11224756,571.7940305,492.1862415,79.60778895,75.75687509,3.850913863,126.2139997,0,126.2139997,2.355372467,123.8586273,1.006167482,3.167413996,0.57808327,-0.57808327,0.431295628,0.152909968,1.995759968,64.19050096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.82038989,1.706459335,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.445921303,61.70235112,74.26631119,63.40881046,492.1862415,0,0.608630041,52.5094882,-0.608630041,127.4905118,0.967848288,0,550.6279223,63.40881046,592.1277206,11,12,8% -11/20/2018 21:00,59.65203898,197.8402496,476.2845923,793.0367653,75.60262693,597.0231103,520.109747,76.91336323,73.32292879,3.59043444,117.7604118,0,117.7604118,2.279698146,115.4807136,1.041124486,3.452963749,1.047799879,-1.047799879,0.350969357,0.158734144,1.630030956,52.42739875,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.48078812,1.651633546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.180951879,50.39520985,71.66174,52.04684339,520.109747,0,0.655845693,49.01619397,-0.655845693,130.983806,0.973762555,0,578.1251361,52.04684339,612.1887542,11,13,6% -11/20/2018 22:00,64.7275501,212.7289238,386.1160183,743.833191,68.55645033,550.8822827,481.4823567,69.39992605,66.48922041,2.910705642,95.68552887,0,95.68552887,2.067229924,93.61829894,1.129708866,3.712820135,1.685581366,-1.685581366,0.241902299,0.177554018,1.095896951,35.24781305,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.91196769,1.497701043,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.79397361,33.88153862,64.7059413,35.37923967,481.4823567,0,0.647298833,49.66174629,-0.647298833,130.3382537,0.972755924,0,533.0707562,35.37923967,556.225761,11,14,4% -11/20/2018 23:00,72.2087541,225.5839379,248.7687219,632.2486856,55.58524503,424.8037046,369.0192361,55.78446851,53.9091448,1.875323706,61.992957,0,61.992957,1.676100225,60.31685677,1.260280508,3.937182456,2.837576145,-2.837576145,0.04489959,0.223441454,0.484412268,15.5803637,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.81952052,1.214328908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350955039,14.97643822,52.17047556,16.19076713,369.0192361,0,0.583661531,54.29151049,-0.583661531,125.7084895,0.964333912,0,408.0282391,16.19076713,418.6247724,11,15,3% -11/20/2018 0:00,81.3798214,236.5532111,84.69343151,359.4546995,30.81708241,199.3732744,168.8469859,30.52628853,29.88783367,0.638454861,21.46415175,0,21.46415175,0.929248737,20.53490302,1.420345828,4.12863239,6.415644589,-6.415644589,0,0.363866263,0.232312184,7.471958417,0.361832267,1,0.154624784,0,0.944770114,0.983532077,0.724496596,1,28.97645644,0.673237547,0.052836817,0.312029739,0.861115917,0.585612513,0.961238037,0.922476074,0.159203199,7.18233064,29.13565964,7.855568187,107.7526982,0,0.469730918,61.98316876,-0.469730918,118.0168312,0.94355608,0,130.8063732,7.855568187,135.9476855,11,16,4% -11/20/2018 1:00,91.87782804,246.1121517,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603570609,4.295467376,-30.43061091,30.43061091,0,#DIV/0!,0,0,1,0.788766369,0,0.032849826,0.961238037,1,0.635566261,0.911069665,0,0,0.115824807,0.211116641,0.724496596,0.448993192,0.976147133,0.93738517,0,0,0,0,0,0,0.310257556,71.92524729,-0.310257556,108.0747527,0.88884357,0,0,0,0,11,17,0% -11/20/2018 2:00,103.0366429,254.8205874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798328668,4.447458252,-4.303595395,4.303595395,0.733888154,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.12005591,83.10467067,-0.12005591,96.89532933,0.633527376,0,0,0,0,11,18,0% -11/20/2018 3:00,114.657585,263.2780493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.001152371,4.595068808,-2.120166956,2.120166956,0.892723593,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.089510234,95.13543187,0.089510234,84.86456813,0,0.491404658,0,0,0,11,19,0% -11/20/2018 4:00,126.4828849,272.2294375,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207542789,4.751300005,-1.251761605,1.251761605,0.744217531,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304167629,107.7080935,0.304167629,72.2919065,0,0.885616959,0,0,0,11,20,0% -11/20/2018 5:00,138.216153,282.8765917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412326949,4.937127902,-0.75047921,0.75047921,0.658493193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509298582,120.6171199,0.509298582,59.38288009,0,0.951825762,0,0,0,11,21,0% -11/20/2018 6:00,149.334209,297.7239758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606373633,5.196263639,-0.398878734,0.398878734,0.59836597,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690936598,133.7042945,0.690936598,46.29570547,0,0.97763446,0,0,0,11,22,0% -11/20/2018 7:00,158.477603,322.6324388,0,0,0,0,0,0,0,0,0,0,0,0,0,2.765955963,5.630998331,-0.11771728,0.11771728,0.55028453,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836717426,146.7950941,0.836717426,33.20490588,0,0.990242669,0,0,0,11,23,0% -11/21/2018 8:00,162.0362124,3.959711174,0,0,0,0,0,0,0,0,0,0,0,0,0,2.828065415,0.069109997,0.131664291,-0.131664291,0.50763777,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936720751,159.5079465,0.936720751,20.4920535,0,0.996622299,0,0,0,11,0,0% -11/21/2018 9:00,157.1718242,42.83502623,0,0,0,0,0,0,0,0,0,0,0,0,0,2.743165825,0.747612243,0.374508544,-0.374508544,0.466108957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984145359,169.7837548,0.984145359,10.21624518,0,0.999194497,0,0,0,11,1,0% -11/21/2018 10:00,147.5183581,65.39300657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574681057,1.141323273,0.634563035,-0.634563035,0.421637019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.975771868,167.3619997,0.975771868,12.63800032,0,0.998758515,0,0,0,11,2,0% -11/21/2018 11:00,136.2411199,79.23712636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.377856119,1.382948745,0.945171231,-0.945171231,0.36851989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.91218158,155.8085924,0.91218158,24.19140764,0,0.995186352,0,0,0,11,3,0% -11/21/2018 12:00,124.4735531,89.47450698,0,0,0,0,0,0,0,0,0,0,0,0,0,2.172473333,1.561624743,1.373125231,-1.373125231,0.295335445,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.797716597,142.9126033,0.797716597,37.08739666,0,0.987321099,0,0,0,11,4,0% -11/21/2018 13:00,112.6761679,98.28119215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.966570118,1.715330396,2.107682875,-2.107682875,0.16971869,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.640183887,129.8055329,0.640183887,50.19446714,0,0.971897441,0,0,0,11,5,0% -11/21/2018 14:00,101.1308662,106.7427545,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76506659,1.863012519,4.072795425,-4.072795425,0,#DIV/0!,0,0,0.142613656,1,0.240768714,0,0.933228467,0.97199043,0.724496596,1,0,0,0.022852837,0.312029739,0.937237509,0.661734105,0.961238037,0.922476074,0,0,0,0,0,0,-0.450323423,116.7644363,0.450323423,63.23556367,0,0.938968689,0,0,0,11,6,0% -11/21/2018 15:00,89.60331903,115.5641339,0.19152183,3.398733064,0.167991266,0.164369482,0,0.164369482,0.16292571,0.001443772,0.843204249,0.791702008,0.051502241,0.005065556,0.046436685,1.563872938,2.016974635,-101.1208899,101.1208899,0,0.877139001,0.001266389,0.040731427,1,0.94055702,0,0.009888831,0.961238037,1,0.696836806,0.97234021,0.156610389,0.003612824,0.115824807,0.280604985,0.724496596,0.448993192,0.966110293,0.927348329,0.000917495,0.039257201,0.157527884,0.042870024,0,0.047061127,-0.232940332,103.4702434,0.232940332,76.52975658,0,0.835352757,0.157527884,0.082182666,0.211314795,11,7,34% -11/21/2018 16:00,79.80899112,125.3327161,111.2267157,424.114318,36.18804487,35.93531576,0,35.93531576,35.09684179,0.838473965,38.75350452,10.69409649,28.05940803,1.091203072,26.96820496,1.392929668,2.187468557,-3.164161857,3.164161857,0.928742764,0.325353892,0.798165657,25.67175121,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.73641931,0.790572911,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.578268301,24.67666373,34.31468761,25.46723664,0,10.69409649,-0.025215127,91.44487351,0.025215127,88.55512649,0,0,34.31468761,25.46723664,50.98248465,11,8,49% -11/21/2018 17:00,70.90944707,136.5976491,272.9030347,656.9114123,58.05221583,175.9221427,117.563157,58.35898568,56.30172733,2.05725835,67.91898881,0,67.91898881,1.750488497,66.16850031,1.237603322,2.384078728,-1.14761535,1.14761535,0.726407473,0.212721034,1.614137982,51.91622606,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,54.11936185,1.268222957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.169437473,49.90385122,55.28879932,51.17207417,117.563157,0,0.178963487,79.69060832,-0.178963487,100.3093917,0.770613401,0,145.8845435,51.17207417,179.3756426,11,9,23% -11/21/2018 18:00,63.82392651,149.794289,402.5235869,754.2817282,69.78644147,342.3654569,271.6489413,70.7165156,67.68212277,3.034392825,99.70082259,0,99.70082259,2.104318695,97.5965039,1.113937659,2.614403543,-0.360462982,0.360462982,0.59179649,0.173372303,2.010490592,64.66428847,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.05863082,1.524571731,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.45659359,62.1577737,66.51522441,63.68234543,271.6489413,0,0.360142545,68.89104954,-0.360142545,111.1089505,0.911166084,0,314.0325264,63.68234543,355.7113478,11,10,13% -11/21/2018 19:00,59.26863642,164.9668065,483.0683824,796.6315265,75.97889986,480.1453472,402.815918,77.32942921,73.68785569,3.641573515,119.4165662,0,119.4165662,2.291044163,117.1255221,1.034432849,2.879213929,0.145633319,-0.145633319,0.505248925,0.157283943,2.123275245,68.2918306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.83156975,1.659853697,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.538305687,65.64470518,72.36987543,67.30455888,402.815918,0,0.505648979,59.62555749,-0.505648979,120.3744425,0.951117174,0,455.495013,67.30455888,499.5445007,11,11,10% -11/21/2018 20:00,57.86789564,181.4048696,507.2170747,807.5032977,77.72774309,568.1506555,488.9430741,79.20758141,75.38396485,3.823616559,125.3244304,0,125.3244304,2.343778239,122.9806521,1.00998531,3.166112254,0.581066053,-0.581066053,0.430785542,0.153243546,1.980686847,63.70569757,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.46193439,1.698059356,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.435000878,61.23633967,73.89693526,62.93439903,488.9430741,0,0.605499786,52.73518531,-0.605499786,127.2648147,0.967423588,0,546.9119982,62.93439903,588.1013036,11,12,8% -11/21/2018 21:00,59.84943734,197.7094338,472.9637448,791.8581486,75.23396537,593.5186997,516.9879155,76.53078422,72.96538373,3.565400489,116.9441174,0,116.9441174,2.26858164,114.6755357,1.044569737,3.450680582,1.053021362,-1.053021362,0.350076431,0.159069202,1.616763847,52.00068292,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13710221,1.643579675,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.171339904,49.98503436,71.30844212,51.62861404,516.9879155,0,0.652879454,49.2409462,-0.652879454,130.7590538,0.973416184,0,574.5528459,51.62861404,608.3427413,11,13,6% -11/21/2018 22:00,64.89657447,212.5611035,383.1726897,742.4206552,68.19808151,547.5808596,478.5506843,69.03017532,66.14165773,2.888517588,94.96107863,0,94.96107863,2.056423782,92.90465485,1.132658898,3.709891118,1.694749224,-1.694749224,0.240334503,0.177982626,1.084758989,34.88957791,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.57787723,1.48987203,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.785904195,33.53718937,64.36378143,35.0270614,478.5506843,0,0.644581587,49.86568844,-0.644581587,130.1343116,0.972430301,0,529.7209672,35.0270614,552.6454784,11,14,4% -11/21/2018 23:00,72.34883805,225.3964977,246.2804692,630.1091592,55.21819249,421.6685626,366.2588362,55.40972646,53.55316025,1.856566206,61.37858333,0,61.37858333,1.665032237,59.71355109,1.262725434,3.933911007,2.857340106,-2.857340106,0.041519753,0.224208573,0.476059298,15.31170348,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.47733463,1.206310188,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.344903341,14.71819179,51.82223797,15.92450198,366.2588362,0,0.581262518,54.46060953,-0.581262518,125.5393905,0.963980347,0,404.888558,15.92450198,415.3108261,11,15,3% -11/21/2018 0:00,81.49381938,236.3554614,82.89651175,355.136574,30.3660956,196.1752931,166.0999384,30.0753547,29.45044578,0.624908921,21.01486884,0,21.01486884,0.915649821,20.09921902,1.422335468,4.125181007,6.497523219,-6.497523219,0,0.36631331,0.228912455,7.362611446,0.367484219,1,0.152706616,0,0.945008351,0.983770314,0.724496596,1,28.55297009,0.663385179,0.053539292,0.312029739,0.859417723,0.583914319,0.961238037,0.922476074,0.156841079,7.077222172,28.70981117,7.740607351,105.0608323,0,0.467707216,62.11443038,-0.467707216,117.8855696,0.943095513,0,127.7922107,7.740607351,132.8582834,11,16,4% -11/21/2018 1:00,91.97284331,245.906082,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605228938,4.291870782,-28.95668094,28.95668094,0,#DIV/0!,0,0,1,0.776887199,0,0.034520626,0.961238037,1,0.631269558,0.906772962,0,0,0.115824807,0.206251834,0.724496596,0.448993192,0.976810855,0.938048892,0,0,0,0,0,0,0.308595543,72.02538825,-0.308595543,107.9746117,0.887975625,0,0,0,0,11,17,0% -11/21/2018 2:00,103.1167908,254.6029918,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799727513,4.443660493,-4.277704897,4.277704897,0.738315689,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.118771561,83.1787888,-0.118771561,96.8212112,0.629023805,0,0,0,0,11,18,0% -11/21/2018 3:00,114.7285496,263.0414366,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002390937,4.590939138,-2.115301157,2.115301157,0.891891492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090447841,95.18937157,0.090447841,84.81062843,0,0.497195208,0,0,0,11,19,0% -11/21/2018 4:00,126.551454,271.9612602,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208739546,4.746619428,-1.25100793,1.25100793,0.744088645,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304813171,107.7469242,0.304813171,72.25307582,0,0.885965094,0,0,0,11,20,0% -11/21/2018 5:00,138.2921532,282.556997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413653403,4.931549922,-0.751164864,0.751164864,0.658610447,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509726742,120.6456298,0.509726742,59.35437015,0,0.951908227,0,0,0,11,21,0% -11/21/2018 6:00,149.4348724,297.3272133,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60813054,5.189338828,-0.400299406,0.400299406,0.59860892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691236936,133.728103,0.691236936,46.27189703,0,0.977665902,0,0,0,11,22,0% -11/21/2018 7:00,158.6336255,322.1869811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.768679069,5.623223627,-0.119678404,0.119678404,0.550619902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836988221,146.8234365,0.836988221,33.17656348,0,0.990262003,0,0,0,11,23,0% -11/22/2018 8:00,162.2564678,3.804737922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.831909595,0.066405204,0.129149857,-0.129149857,0.508067763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937062245,159.5639105,0.937062245,20.43608947,0,0.996641752,0,0,0,11,0,0% -11/22/2018 9:00,157.3840998,43.02899996,0,0,0,0,0,0,0,0,0,0,0,0,0,2.746870731,0.750997723,0.371276039,-0.371276039,0.466661748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984652852,169.9490187,0.984652852,10.05098131,0,0.999220682,0,0,0,11,1,0% -11/22/2018 10:00,147.7039916,65.63002847,0,0,0,0,0,0,0,0,0,0,0,0,0,2.577920971,1.145460085,0.630238697,-0.630238697,0.422376525,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.976529158,167.5618703,0.976529158,12.43812969,0,0.998798252,0,0,0,11,2,0% -11/22/2018 11:00,136.4129376,79.44679871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.380854904,1.386608218,0.938947976,-0.938947976,0.369584129,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.913255182,155.9591425,0.913255182,24.04085754,0,0.99525079,0,0,0,11,3,0% -11/22/2018 12:00,124.6414745,89.65539499,0,0,0,0,0,0,0,0,0,0,0,0,0,2.175404115,1.564781835,1.363007347,-1.363007347,0.297065706,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.79915115,143.0491195,0.79915115,36.95088054,0,0.987433613,0,0,0,11,4,0% -11/22/2018 13:00,112.8464385,98.43947651,0,0,0,0,0,0,0,0,0,0,0,0,0,1.969541901,1.718092979,2.087084363,-2.087084363,0.173241243,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.641999064,129.9410467,0.641999064,50.05895332,0,0.972118266,0,0,0,11,5,0% -11/22/2018 14:00,101.3077467,106.8829652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.768153738,1.865459657,4.000109184,-4.000109184,0,#DIV/0!,0,0,0.133377733,1,0.244972241,0,0.932623878,0.971385841,0.724496596,1,0,0,0.021460564,0.312029739,0.940944212,0.665440808,0.961238037,0.922476074,0,0,0,0,0,0,-0.452512553,116.9050014,0.452512553,63.09499863,0,0.939505828,0,0,0,11,6,0% -11/22/2018 15:00,89.7612,115.6877566,0.091957834,2.404471876,0.081936394,0.080158927,0,0.080158927,0.07946571,0.000693217,0.589831857,0.565064931,0.024766926,0.002470685,0.022296242,1.566628481,2.019132258,-167.6079492,167.6079492,0,0.891021357,0.000617671,0.019866427,1,0.964529952,0,0.005966233,0.961238037,1,0.707717262,0.983220666,0.076385463,0.00177269,0.115824807,0.292963727,0.724496596,0.448993192,0.964218411,0.925456448,0.000447501,0.019128261,0.076832964,0.020900951,0,0.02004288,-0.235005839,103.591967,0.235005839,76.40803304,0,0.837239329,0.076832964,0.037681638,0.101494842,11,7,32% -11/22/2018 16:00,80.00581234,125.4374123,107.9198259,417.2730598,35.50280674,35.24581136,0,35.24581136,34.43226612,0.813545233,38.92216631,11.68521446,27.23695184,1.070540615,26.16641123,1.396364846,2.18929585,-3.219262669,3.219262669,0.919319971,0.328973907,0.769501192,24.74980346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,33.09760389,0.775603031,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.557500994,23.79045249,33.65510489,24.56605552,0,11.68521446,-0.02800376,91.60470702,0.02800376,88.39529298,0,0,33.65510489,24.56605552,49.73309691,11,8,48% -11/22/2018 17:00,71.11963805,136.6760883,269.1206671,653.7749358,57.56358944,172.8871811,115.030601,57.8565801,55.82783483,2.028745265,66.98717611,0,66.98717611,1.735754609,65.2514215,1.241271847,2.38544775,-1.157707976,1.157707976,0.728133414,0.213895091,1.595170635,51.306171,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.66383836,1.257548305,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.155695695,49.31744309,54.81953405,50.5749914,115.030601,0,0.175948319,79.86615086,-0.175948319,100.1338491,0.765825646,0,142.9129184,50.5749914,176.0132387,11,9,23% -11/22/2018 18:00,64.04400925,149.8335499,398.6788401,752.4201993,69.35907959,338.8910398,268.6179829,70.27305693,67.26764743,3.005409499,98.75573269,0,98.75573269,2.091432157,96.66430053,1.117778828,2.615088775,-0.362602491,0.362602491,0.592162368,0.173972312,1.992931589,64.09953057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.66022136,1.515235479,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.443872152,61.61490693,66.10409351,63.13014241,268.6179829,0,0.357005279,69.08360657,-0.357005279,110.9163934,0.909946048,0,310.5319656,63.13014241,351.8493812,11,10,13% -11/22/2018 19:00,59.49100814,164.9516083,479.3252465,795.2839611,75.58059182,476.5380469,399.6231326,76.91491429,73.30155812,3.613356176,118.4969891,0,118.4969891,2.279033706,116.2179554,1.038313967,2.878948672,0.146480086,-0.146480086,0.50510412,0.157681225,2.107092188,67.77132786,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.46024582,1.651152162,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.526581118,65.14437814,71.98682694,66.79553031,399.6231326,0,0.502491125,59.83505116,-0.502491125,120.1649488,0.950495755,0,451.8269181,66.79553031,495.5432568,11,11,10% -11/22/2018 20:00,58.08054272,181.3273295,503.6923121,806.3573172,77.34974164,564.5824309,485.7680239,78.81440695,75.01736154,3.797045409,124.4584127,0,124.4584127,2.332380101,122.1260326,1.013696702,3.164758924,0.58385936,-0.58385936,0.430307859,0.15356546,1.966083132,63.2359919,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,72.10954133,1.689801443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.424420537,60.78484071,73.53396187,62.47464216,485.7680239,0,0.602422789,52.9563851,-0.602422789,127.0436149,0.967001812,0,543.2725211,62.47464216,584.1609249,11,12,8% -11/22/2018 21:00,60.04033182,197.5776575,469.750294,790.7190593,74.87289665,590.1071954,513.9508167,76.1563787,72.61520256,3.54117614,116.1540915,0,116.1540915,2.257694086,113.8963974,1.047901474,3.448380651,1.057986427,-1.057986427,0.349227355,0.159388717,1.603986965,51.58973445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.80049476,1.635691679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.162083096,49.59001506,70.96257785,51.22570674,513.9508167,0,0.649979042,49.45997824,-0.649979042,130.5400218,0.973074443,0,571.0749825,51.22570674,604.601183,11,13,6% -11/22/2018 22:00,65.05903169,212.3938956,380.3449706,741.0665555,67.84886028,544.391685,475.7215171,68.67016785,65.80296681,2.867201047,94.26493507,0,94.26493507,2.045893473,92.2190416,1.135494311,3.706972789,1.70351131,-1.70351131,0.238836098,0.178387689,1.074106176,34.54694683,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.25231463,1.482242857,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.778186268,33.20783935,64.0305009,34.69008221,475.7215171,0,0.64194169,50.06324071,-0.64194169,129.9367593,0.972111306,0,526.4847661,34.69008221,549.1887311,11,14,4% -11/22/2018 23:00,72.48247095,225.2107084,243.9112531,628.0713737,54.86329885,418.6698998,363.6222257,55.04767402,53.20896797,1.838706055,60.79343812,0,60.79343812,1.654330884,59.13910723,1.265057768,3.930668373,2.876282264,-2.876282264,0.038280453,0.224931397,0.468137089,15.05689798,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.14648391,1.198557094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.339163727,14.47326305,51.48564764,15.67182015,363.6222257,0,0.578950484,54.62324092,-0.578950484,125.3767591,0.963636828,0,401.885416,15.67182015,412.1423088,11,15,3% -11/22/2018 0:00,81.60154852,236.1600284,81.20885375,351.0470322,29.93622601,193.1554511,163.5097261,29.64572499,29.03353834,0.612186642,20.59271446,0,20.59271446,0.902687667,19.6900268,1.424215696,4.121770058,6.576609872,-6.576609872,0,0.36863254,0.225671917,7.258384586,0.3728492,1,0.150898166,0,0.9452322,0.983994163,0.724496596,1,28.14922891,0.653994142,0.054203113,0.312029739,0.857816568,0.582313164,0.961238037,0.922476074,0.154593023,6.97703535,28.30382193,7.631029492,102.5452555,0,0.465777264,62.23946317,-0.465777264,117.7605368,0.942652553,0,124.9683688,7.631029492,129.962725,11,16,4% -11/22/2018 1:00,92.06167226,245.7028018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606779296,4.288322873,-27.70083763,27.70083763,0,#DIV/0!,0,0,1,0.765658462,0,0.036084322,0.961238037,1,0.627268225,0.902771629,0,0,0.115824807,0.201722474,0.724496596,0.448993192,0.977424152,0.938662189,0,0,0,0,0,0,0.307032248,72.1195293,-0.307032248,107.8804707,0.887150657,0,0,0,0,11,17,0% -11/22/2018 2:00,103.1908092,254.3885874,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801019378,4.43991843,-4.254090529,4.254090529,0.742353984,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117586908,83.24714343,-0.117586908,96.75285657,0.624782595,0,0,0,0,11,18,0% -11/22/2018 3:00,114.7933405,262.8084126,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003521752,4.586872101,-2.110990484,2.110990484,0.891154324,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091288122,95.23771612,0.091288122,84.76228388,0,0.502283616,0,0,0,11,19,0% -11/22/2018 4:00,126.6136598,271.6970604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209825242,4.742008272,-1.250480666,1.250480666,0.743998478,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305366939,107.7802412,0.305366939,72.2197588,0,0.886262563,0,0,0,11,20,0% -11/22/2018 5:00,138.3613854,282.2415429,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414861733,4.92604421,-0.751962196,0.751962196,0.658746799,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510071479,120.668591,0.510071479,59.33140899,0,0.951974523,0,0,0,11,21,0% -11/22/2018 6:00,149.5280892,296.9333687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609757482,5.182464942,-0.401777665,0.401777665,0.598861717,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691464424,133.7461428,0.691464424,46.2538572,0,0.9776897,0,0,0,11,22,0% -11/22/2018 7:00,158.7817061,321.7372638,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771263563,5.615374581,-0.12166524,0.12166524,0.550959671,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837198235,146.8454321,0.837198235,33.15456789,0,0.990276988,0,0,0,11,23,0% -11/23/2018 8:00,162.4706296,3.635246842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.835647423,0.063447027,0.126633262,-0.126633262,0.508498126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937355688,159.6121174,0.937355688,20.38788255,0,0.996658456,0,0,0,11,0,0% -11/23/2018 9:00,157.5928039,43.21092544,0,0,0,0,0,0,0,0,0,0,0,0,0,2.750513305,0.754172922,0.368063926,-0.368063926,0.467211051,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985124811,170.1051618,0.985124811,9.894838233,0,0.99924501,0,0,0,11,1,0% -11/23/2018 10:00,147.8874865,65.85710788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.581123563,1.149423368,0.625963262,-0.625963262,0.423107667,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977262353,167.7584407,0.977262353,12.24155934,0,0.998836666,0,0,0,11,2,0% -11/23/2018 11:00,136.5833405,79.64801742,0,0,0,0,0,0,0,0,0,0,0,0,0,2.383828995,1.390120147,0.932820748,-0.932820748,0.370631947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.914314264,156.1085303,0.914314264,23.89146967,0,0.995314208,0,0,0,11,3,0% -11/23/2018 12:00,124.8082636,89.82880041,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178315134,1.56780833,1.353088389,-1.353088389,0.298761947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.800578232,143.185355,0.800578232,36.814645,0,0.987545142,0,0,0,11,4,0% -11/23/2018 13:00,113.0155686,98.59084302,0,0,0,0,0,0,0,0,0,0,0,0,0,1.972493778,1.720734823,2.067016705,-2.067016705,0.176673015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.643810806,130.0765723,0.643810806,49.92342774,0,0.972337433,0,0,0,11,5,0% -11/23/2018 14:00,101.4832536,107.016533,0,0,0,0,0,0,0,0,0,0,0,0,0,1.771216911,1.867790855,3.930445085,-3.930445085,0,#DIV/0!,0,0,0.124337128,1,0.249138179,0,0.93202097,0.970782934,0.724496596,1,0,0,0.020086596,0.312029739,0.944617099,0.669113695,0.961238037,0.922476074,0,0,0,0,0,0,-0.454698994,117.0455687,0.454698994,62.95443134,0,0.940037144,0,0,0,11,6,0% -11/23/2018 15:00,89.91607438,115.8048196,0.025412041,1.664740357,0.022973566,0.022472395,0,0.022472395,0.022280828,0.000191567,0.401476197,0.394622016,0.006854181,0.000692738,0.006161443,1.569331548,2.021175392,-475.9111048,475.9111048,0,0.904042542,0.000173184,0.005570207,1,0.987641466,0,0.00210123,0.961238037,1,0.718555466,0.994058871,0.021417179,0.000500129,0.115824807,0.305278183,0.724496596,0.448993192,0.962301946,0.923539983,0.000125472,0.005357553,0.021542651,0.005857682,0,0.00487695,-0.237047185,103.7123281,0.237047185,76.28767188,0,0.83907153,0.021542651,0.009949791,0.02805459,11,7,30% -11/23/2018 16:00,80.20013322,125.5355524,104.6709798,410.394798,34.81882701,34.55796496,0,34.55796496,33.76891091,0.789054059,39.06087085,12.63226387,26.42860699,1.049916102,25.37869088,1.399756385,2.191008717,-3.276226602,3.276226602,0.909578564,0.332650244,0.741440388,23.84727157,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,32.45996163,0.760660642,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.537171037,22.92290451,32.99713266,23.68356515,0,12.63226387,-0.03078076,91.76388626,0.03078076,88.23611374,0,0,32.99713266,23.68356515,48.49755238,11,8,47% -11/23/2018 17:00,71.32649808,136.7480756,265.3986025,650.6436886,57.07882993,169.8890191,112.5306397,57.35837938,55.35769261,2.00068677,66.07010117,0,66.07010117,1.721137321,64.34896385,1.244882235,2.386704165,-1.168090232,1.168090232,0.729908884,0.215068314,1.576535023,50.70678563,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,53.21191976,1.24695813,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.142194257,48.74129107,54.35411402,49.9882492,112.5306397,0,0.172952788,80.04045504,-0.172952788,99.95954496,0.760903764,0,139.9791013,49.9882492,172.6954107,11,9,23% -11/23/2018 18:00,64.25973857,149.8668532,394.9066021,750.5775175,68.93667128,335.463065,265.628116,69.83494906,66.85797629,2.976972776,97.82837273,0,97.82837273,2.078694988,95.74967775,1.121544015,2.615670029,-0.364912094,0.364912094,0.592557333,0.174564494,1.975764306,63.54737172,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.26642988,1.506007443,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.431434514,61.08415084,65.69786439,62.59015828,265.628116,0,0.353898311,69.27406047,-0.353898311,110.7259395,0.908716478,0,307.0785103,62.59015828,348.0425171,11,10,13% -11/23/2018 19:00,59.7079947,164.931642,475.6679136,793.9614572,75.18808095,472.9917486,396.48508,76.50666855,72.9208829,3.585785656,117.5983908,0,117.5983908,2.267198055,115.3311928,1.042101097,2.878600193,0.147162278,-0.147162278,0.504987458,0.158068431,2.091349651,67.26499376,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.09432632,1.642577273,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.515175703,64.65767055,71.60950202,66.30024782,396.48508,0,0.499375727,60.04129297,-0.499375727,119.958707,0.949874989,0,448.2207632,66.30024782,491.6129494,11,11,10% -11/23/2018 20:00,58.28701061,181.2468794,500.2659969,805.2427763,76.97843703,561.0918134,482.6633438,78.42846953,74.65725313,3.771216398,123.6164667,0,123.6164667,2.321183897,121.2952828,1.017300246,3.163354804,0.586457575,-0.586457575,0.429863538,0.153875014,1.951956316,62.78162492,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.76339144,1.681689831,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.414185706,60.34808589,73.17757714,62.02977572,482.6633438,0,0.599401023,53.17298889,-0.599401023,126.8270111,0.966583392,0,539.7119494,62.02977572,580.309197,11,12,8% -11/23/2018 21:00,60.22465014,197.4449614,466.6461379,789.6215629,74.51961207,586.7910729,511.0007264,75.79034652,72.27257082,3.5177757,115.3908,0,115.3908,2.247041252,113.1437588,1.051118436,3.446064668,1.06268607,-1.06268607,0.348423669,0.159691908,1.591706038,51.19473765,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.4711441,1.627973738,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.153185607,49.21032912,70.6243297,50.83830285,511.0007264,0,0.647146368,49.67320584,-0.647146368,130.3267942,0.972737726,0,567.6940142,50.83830285,600.9666667,11,13,6% -11/23/2018 22:00,65.21485775,212.2273453,377.63442,739.7736071,67.50899446,541.3172254,472.9971085,68.32011697,65.4733492,2.846767772,93.5974825,0,93.5974825,2.035645265,91.56183723,1.138213989,3.704065938,1.711850688,-1.711850688,0.237409981,0.178768118,1.063941772,34.22002468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.93547365,1.474818065,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.770822192,32.89358934,63.70629584,34.36840741,472.9971085,0,0.639380892,50.25433038,-0.639380892,129.7456696,0.971799352,0,523.3645794,34.36840741,545.8580146,11,14,4% -11/23/2018 23:00,72.60959927,225.0266282,241.6621105,626.1398783,54.52085027,415.8103278,361.1117313,54.69859654,52.87684547,1.821751067,60.23778135,0,60.23778135,1.644004796,58.59377655,1.267276576,3.927455567,2.894357351,-2.894357351,0.035189432,0.225607772,0.460644685,14.81591652,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.82723513,1.191075878,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.333735506,14.24162251,51.16097064,15.43269839,361.1117313,0,0.576726932,54.77933976,-0.576726932,125.2206602,0.963303858,0,399.0212946,15.43269839,409.121687,11,15,3% -11/23/2018 0:00,81.70297079,235.966986,79.63002076,347.1953037,29.52803935,190.3164978,161.078553,29.23794475,28.63766002,0.600284732,20.19759979,0,20.19759979,0.890379333,19.30722046,1.425985849,4.118400831,6.652593574,-6.652593574,0,0.370815417,0.222594833,7.159415005,0.377918656,1,0.149200265,0,0.945441691,0.984203654,0.724496596,1,27.76578032,0.645076796,0.054827714,0.312029739,0.856313207,0.580809803,0.961238037,0.922476074,0.152461363,6.881902025,27.91824168,7.526978821,100.2039628,0,0.4639422,62.35821549,-0.4639422,117.6417845,0.942227954,0,122.3332166,7.526978821,127.2594737,11,16,4% -11/23/2018 1:00,92.14428613,245.5024018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60822118,4.284825234,-26.62549243,26.62549243,0,#DIV/0!,0,0,1,0.755104903,0,0.037540346,0.961238037,1,0.623559754,0.899063158,0,0,0.115824807,0.197525498,0.724496596,0.448993192,0.977988421,0.939226457,0,0,0,0,0,0,0.30556853,72.20762871,-0.30556853,107.7923713,0.886370584,0,0,0,0,11,17,0% -11/23/2018 2:00,103.2586831,254.1774857,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802204001,4.436234009,-4.232689729,4.232689729,0.746013736,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.116502433,83.3097093,-0.116502433,96.6902907,0.620824415,0,0,0,0,11,18,0% -11/23/2018 3:00,114.8519562,262.5791172,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004544788,4.582870142,-2.107228817,2.107228817,0.890511041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092030964,95.28045778,0.092030964,84.71954222,0,0.506704595,0,0,0,11,19,0% -11/23/2018 4:00,126.6695127,271.4370249,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210800059,4.737469797,-1.250178373,1.250178373,0.743946783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305829161,107.8080552,0.305829161,72.19194483,0,0.886510031,0,0,0,11,20,0% -11/23/2018 5:00,138.4238671,281.9305033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415952245,4.920615544,-0.75287048,0.75287048,0.658902124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510333307,120.6860337,0.510333307,59.31396627,0,0.952024815,0,0,0,11,21,0% -11/23/2018 6:00,149.6138659,296.5428858,0,0,0,0,0,0,0,0,0,0,0,0,0,2.611254567,5.17564973,-0.403312857,0.403312857,0.59912425,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691619793,133.7584666,0.691619793,46.24153336,0,0.977705944,0,0,0,11,22,0% -11/23/2018 7:00,158.9217803,321.2838666,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773708319,5.607461306,-0.123677049,0.123677049,0.551303711,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837348325,146.8611595,0.837348325,33.1388405,0,0.990287693,0,0,0,11,23,0% -11/24/2018 8:00,162.6785772,3.450989304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.839276794,0.060231126,0.124115382,-0.124115382,0.508928709,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937601968,159.6526609,0.937601968,20.34733907,0,0.996672467,0,0,0,11,0,0% -11/24/2018 9:00,157.797892,43.38034984,0,0,0,0,0,0,0,0,0,0,0,0,0,2.754092767,0.757129935,0.364873266,-0.364873266,0.467756686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985562058,170.2520297,0.985562058,9.747970296,0,0.999267527,0,0,0,11,1,0% -11/24/2018 10:00,148.0688197,66.07397692,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584288424,1.153208447,0.621738003,-0.621738003,0.423830229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.977972116,167.951736,0.977972116,12.04826397,0,0.998873798,0,0,0,11,2,0% -11/24/2018 11:00,136.7522977,79.84061711,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386777854,1.393481645,0.926790974,-0.926790974,0.371663099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.915359245,156.2567963,0.915359245,23.74320373,0,0.995376637,0,0,0,11,3,0% -11/24/2018 12:00,124.9738762,89.99460946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.181205619,1.570702244,1.343369303,-1.343369303,0.300424009,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.801997956,143.3213189,0.801997956,36.67868108,0,0.987655701,0,0,0,11,4,0% -11/24/2018 13:00,113.1835,98.73520859,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975424734,1.723254477,2.047474651,-2.047474651,0.180014903,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.645618876,130.2120926,0.645618876,49.78790743,0,0.972554929,0,0,0,11,5,0% -11/24/2018 14:00,101.657315,107.1433975,0,0,0,0,0,0,0,0,0,0,0,0,0,1.774254855,1.870005058,3.86367297,-3.86367297,0,#DIV/0!,0,0,0.115493,1,0.253263468,0,0.931420303,0.970182266,0.724496596,1,0,0,0.0187317,0.312029739,0.948253507,0.672750103,0.961238037,0.922476074,0,0,0,0,0,0,-0.456882137,117.1860998,0.456882137,62.81390024,0,0.940562585,0,0,0,11,6,0% -11/24/2018 15:00,90.06826114,115.9152835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571987708,2.02310335,583.9614315,-583.9614315,0,#DIV/0!,0,0,0.990033203,1,0.00171244,0,0.961086707,0.99984867,0.724496596,1,0,0,0.115043864,0.312029739,0.725995563,0.450492159,0.961238037,0.922476074,0,0,0,0,0,0,-0.239070033,103.8316594,0.239070033,76.16834056,0,0.840856263,0,0,0,11,7,0% -11/24/2018 16:00,80.39186041,125.6271199,101.4819623,403.4859665,34.13659644,33.87226601,0,33.87226601,33.10725211,0.765013898,39.16968493,13.53486393,25.63482101,1.029344333,24.60547667,1.403102656,2.192606872,-3.33509461,3.33509461,0.899511542,0.336380926,0.713998137,22.96463444,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.82395002,0.745756466,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.51728922,22.07448013,32.34123924,22.82023659,0,13.53486393,-0.03354482,91.92233722,0.03354482,88.07766278,0,0,32.34123924,22.82023659,47.27662769,11,8,46% -11/24/2018 17:00,71.52992908,136.8136202,261.7388615,647.5209873,56.59822586,166.9293111,110.0646324,56.86467862,54.89158053,1.973098097,65.16826261,0,65.16826261,1.706645335,63.46161728,1.248432776,2.387848135,-1.178761131,1.178761131,0.731733715,0.216239291,1.558241252,50.11839507,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.7638751,1.236458736,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128940482,48.17570769,53.89281559,49.41216642,110.0646324,0,0.169978479,80.21343223,-0.169978479,99.78656777,0.755845114,0,137.0846303,49.41216642,169.423905,11,9,24% -11/24/2018 18:00,64.47101773,149.8942329,391.2090476,748.7560521,68.51944738,332.0836065,262.6811742,69.40243228,66.45333323,2.949099048,96.91927699,0,96.91927699,2.066114148,94.85316285,1.125231531,2.616147894,-0.367393362,0.367393362,0.592981655,0.175147911,1.958998224,63.0081169,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.87747158,1.496892667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.419287545,60.56579859,65.29675912,62.06269126,262.6811742,0,0.35082344,69.46231133,-0.35082344,110.5376887,0.907478166,0,303.6741894,62.06269126,344.2929796,11,10,13% -11/24/2018 19:00,59.91950709,164.9069549,472.0985683,792.6659821,74.8015716,469.5087622,393.4038555,76.10490665,72.54602822,3.558878423,116.721307,0,116.721307,2.255543372,114.4657636,1.045792685,2.878169322,0.147676416,-0.147676416,0.504899535,0.158444818,2.076056204,66.77310392,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.73400175,1.634133495,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.504095653,64.18484733,71.2380974,65.81898082,393.4038555,0,0.496304704,60.24417916,-0.496304704,119.7558208,0.949255438,0,444.6788466,65.81898082,487.7560532,11,11,10% -11/24/2018 20:00,58.48722032,181.1635653,496.9401987,804.1615474,76.61401999,557.6812149,479.6312451,78.04996974,74.30382461,3.746145126,122.7990999,0,122.7990999,2.310195378,120.4889045,1.020794565,3.161900699,0.58885521,-0.58885521,0.429453518,0.154171508,1.938313664,62.34283036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.4236625,1.673728687,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.404301652,59.92629986,72.82796415,61.60002855,479.6312451,0,0.596436433,53.38489995,-0.596436433,126.6151001,0.96616877,0,536.2326942,61.60002855,576.5486809,11,12,8% -11/24/2018 21:00,60.40232204,197.3113873,463.6531181,788.5677121,74.17429848,583.5727497,508.139867,75.43288276,71.9376697,3.495213052,114.6546952,0,114.6546952,2.236628773,112.4180665,1.054219395,3.44373336,1.067111472,-1.067111472,0.34766688,0.159978,1.579926574,50.81586958,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.1492244,1.620429932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.144651425,48.84614672,70.29387583,50.46657665,508.139867,0,0.644383303,49.88054662,-0.644383303,130.1194534,0.972406431,0,564.4123505,50.46657665,597.4417156,11,13,6% -11/24/2018 22:00,65.36399087,212.0614991,375.0425378,738.5444847,67.17868532,538.3598741,470.3796449,67.98022916,65.15300009,2.827229068,92.9590906,0,92.9590906,2.025685225,90.93340538,1.140816853,3.701171376,1.719750754,-1.719750754,0.23605899,0.179122842,1.054268842,33.90890999,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.62754191,1.46760205,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.763814187,32.59453407,63.39135609,34.06213612,470.3796449,0,0.636900897,50.43888653,-0.636900897,129.5611135,0.971494851,0,520.362759,34.06213612,542.6557458,11,14,4% -11/24/2018 23:00,72.73017196,224.8443161,239.5340207,624.3191158,54.19112128,413.092358,358.7295904,54.36276765,52.55705903,1.805708627,59.71185879,0,59.71185879,1.63406225,58.07779654,1.269380966,3.924273621,2.911520892,-2.911520892,0.032254293,0.226235593,0.453581037,14.58872533,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.51984424,1.183872538,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.328617917,14.0232377,50.84846216,15.20711024,358.7295904,0,0.574593315,54.92884323,-0.574593315,125.0711568,0.962981932,0,396.2985762,15.20711024,406.2513258,11,15,3% -11/24/2018 0:00,81.79805086,235.7764086,78.15954017,343.5902092,29.14206593,187.6609887,158.8084639,28.85252475,28.26332512,0.589199629,19.82942622,0,19.82942622,0.878740811,18.95068541,1.427645309,4.115074628,6.72516255,-6.72516255,0,0.3728536,0.219685203,7.06583128,0.382684361,1,0.147613705,0,0.945636855,0.984398818,0.724496596,1,27.40313707,0.636644726,0.055412551,0.312029739,0.854908359,0.579404955,0.961238037,0.922476074,0.150448291,6.791945788,27.55358537,7.428590514,98.03494848,0,0.462203112,62.47063809,-0.462203112,117.5293619,0.941822451,0,119.8851008,7.428590514,124.7469647,11,16,4% -11/24/2018 1:00,92.22065903,245.3049736,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609554138,4.281379461,-25.7017969,25.7017969,0,#DIV/0!,0,0,1,0.745250178,0,0.03888817,0.961238037,1,0.620141778,0.895645182,0,0,0.115824807,0.193658024,0.724496596,0.448993192,0.978504955,0.939742992,0,0,0,0,0,0,0.304205189,72.2896474,-0.304205189,107.7103526,0.885637255,0,0,0,0,11,17,0% -11/24/2018 2:00,103.3204005,253.969798,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803281174,4.432609175,-4.213446264,4.213446264,0.749304563,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115518567,83.36646392,-0.115518567,96.63353608,0.617169145,0,0,0,0,11,18,0% -11/24/2018 3:00,114.9043983,262.3536902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005460076,4.578935699,-2.104010586,2.104010586,0.889960691,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092676304,95.31759172,0.092676304,84.68240828,0,0.510487763,0,0,0,11,19,0% -11/24/2018 4:00,126.7190268,271.1813395,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211664242,4.733007244,-1.250099692,1.250099692,0.743933328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306200106,107.8303797,0.306200106,72.16962027,0,0.88670809,0,0,0,11,20,0% -11/24/2018 5:00,138.4796203,281.6241502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416925321,4.915268673,-0.753888986,0.753888986,0.659076299,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510512776,120.6979915,0.510512776,59.30200847,0,0.952059258,0,0,0,11,21,0% -11/24/2018 6:00,149.6922149,296.1562112,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612622014,5.168900985,-0.404904303,0.404904303,0.599396403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691703794,133.7651307,0.691703794,46.23486931,0,0.977714723,0,0,0,11,22,0% -11/24/2018 7:00,159.0537906,320.8274015,0,0,0,0,0,0,0,0,0,0,0,0,0,2.776012333,5.599494487,-0.125713066,0.125713066,0.55165189,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837439359,146.8707019,0.837439359,33.12929813,0,0.990294184,0,0,0,11,23,0% -11/25/2018 8:00,162.8801885,3.251748251,0,0,0,0,0,0,0,0,0,0,0,0,0,2.842795576,0.056753713,0.121597129,-0.121597129,0.509359356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937801976,159.6856438,0.937801976,20.31435619,0,0.99668384,0,0,0,11,0,0% -11/25/2018 9:00,157.9993166,43.53682005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.757608291,0.759860856,0.361705149,-0.361705149,0.468298466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985965404,170.3894812,0.985965404,9.610518758,0,0.999288282,0,0,0,11,1,0% -11/25/2018 10:00,148.2479651,66.28036872,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5874151,1.156810664,0.617564217,-0.617564217,0.424543989,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.978659089,168.1417802,0.978659089,11.8582198,0,0.998909686,0,0,0,11,2,0% -11/25/2018 11:00,136.9197758,80.0244339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389700899,1.396689854,0.920860105,-0.920860105,0.372677337,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.916390521,156.4039776,0.916390521,23.5960224,0,0.995438109,0,0,0,11,3,0% -11/25/2018 12:00,125.1382656,90.15271002,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184074755,1.57346162,1.333851066,-1.333851066,0.302051723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.803410402,143.4570171,0.803410402,36.54298293,0,0.987765307,0,0,0,11,4,0% -11/25/2018 13:00,113.3501722,98.87249197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978333713,1.725650524,2.02845317,-2.02845317,0.183267768,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.647422999,130.3475876,0.647422999,49.65241236,0,0.972770739,0,0,0,11,5,0% -11/25/2018 14:00,101.8298574,107.2635003,0,0,0,0,0,0,0,0,0,0,0,0,0,1.777266289,1.872101247,3.799671188,-3.799671188,0,#DIV/0!,0,0,0.106846484,1,0.257345013,0,0.930822448,0.969584411,0.724496596,1,0,0,0.017396645,0.312029739,0.951850745,0.676347341,0.961238037,0.922476074,0,0,0,0,0,0,-0.459061333,117.3265536,0.459061333,62.67344637,0,0.941082092,0,0,0,11,6,0% -11/25/2018 15:00,90.83432308,116.0191109,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585358012,2.024915481,47.68468221,-47.68468221,0,#DIV/0!,0,0,0.884050002,1,0.020968022,0,0.959336312,0.998098275,0.724496596,1,0,0,0.106410799,0.312029739,0.742893665,0.467390261,0.961238037,0.922476074,0,0,0,0,0,0,-0.251162924,104.5463387,0.251162924,75.45366132,0,0.850926031,0,0,0,11,7,0% -11/25/2018 16:00,80.58090001,125.7121003,98.35451998,396.5534379,33.45663268,33.18922968,0,33.18922968,32.44779176,0.741437917,39.24878163,14.39274863,24.856033,1.008840917,23.84719208,1.406402019,2.19409006,-3.395905027,3.395905027,0.889112348,0.340163652,0.687188607,22.10234781,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,31.19005165,0.73090181,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.497865807,21.24561742,31.68791746,21.97651923,0,14.39274863,-0.036294601,92.07998426,0.036294601,87.92001574,0,0,31.68791746,21.97651923,46.07110976,11,8,45% -11/25/2018 17:00,71.72983286,136.8727332,258.1434553,644.4103002,56.12207316,164.0096992,107.6339192,56.37577999,54.42978559,1.945994406,64.282157,0,64.282157,1.692287574,62.58986942,1.251921755,2.38887985,-1.189718913,1.189718913,0.733607606,0.217406531,1.540299433,49.5413245,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.31998024,1.226056587,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.115941696,47.6210055,53.43592194,48.84706209,107.6339192,0,0.167027,80.38499269,-0.167027,99.61500731,0.750647201,0,134.2310221,48.84706209,166.2004473,11,9,24% -11/25/2018 18:00,64.6777503,149.915724,387.5883376,746.9582381,68.10764077,328.7547332,259.7789845,68.97574872,66.05394411,2.921804607,96.02897645,0,96.02897645,2.05369666,93.97527979,1.128839696,2.616522984,-0.370047592,0.370047592,0.593435555,0.175721595,1.942642749,62.48206859,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.49356356,1.487896239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.407438058,60.06014095,64.90100162,61.54803719,259.7789845,0,0.347782475,69.6482588,-0.347782475,110.3517412,0.906231974,0,300.3210234,61.54803719,340.6029828,11,10,13% -11/25/2018 19:00,60.12545691,164.8775957,468.619371,791.3995326,74.42126767,466.0913846,390.381542,75.70984263,72.17719187,3.532650764,115.8662678,0,115.8662678,2.244075806,113.622192,1.049387187,2.877656909,0.148019186,-0.148019186,0.504840918,0.158809627,2.061220284,66.29592972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.37946221,1.625825282,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.493347079,63.72616933,70.87280929,65.35199462,390.381542,0,0.493279975,60.44360621,-0.493279975,119.5563938,0.948637686,0,441.2034517,65.35199462,483.9750252,11,11,10% -11/25/2018 20:00,58.68109376,181.077435,493.7169526,803.1155109,76.25667913,554.3530208,476.6739149,77.67910583,73.9572589,3.721846936,122.0068115,0,122.0068115,2.299420233,119.7073912,1.024178295,3.160397442,0.591046935,-0.591046935,0.429078711,0.154454245,1.925162276,61.91983651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,71.09053035,1.665922131,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.394773516,59.51970209,72.48530387,61.18562422,476.6739149,0,0.593530953,53.59202219,-0.593530953,126.4079778,0.965758395,0,532.837139,61.18562422,572.8819063,11,12,8% -11/25/2018 21:00,60.5732785,197.1769794,460.773032,787.5595473,73.83713884,580.4546005,505.3704221,75.08417842,71.61067667,3.473501747,113.9462184,0,113.9462184,2.226462166,111.7197563,1.057203149,3.441387499,1.071254029,-1.071254029,0.346958461,0.160246225,1.568653891,50.45330136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.83490626,1.61306426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.136484404,48.49763235,69.97139066,50.11069661,505.3704221,0,0.641691697,50.08191897,-0.641691697,129.918081,0.972080962,0,561.2323565,50.11069661,594.0288052,11,13,6% -11/25/2018 22:00,65.50637105,211.8964063,372.5707728,737.38182,66.85812777,535.5219599,467.8712555,67.6507044,64.84210854,2.80859586,92.35011657,0,92.35011657,2.016019233,90.33409733,1.143301856,3.698289963,1.72719531,-1.72719531,0.234785896,0.179450812,1.045090283,33.61369597,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.32870112,1.460599071,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.757164352,32.31076313,63.08586547,33.7713622,467.8712555,0,0.634503378,50.61683935,-0.634503378,129.3831607,0.971198213,0,517.4815928,33.7713622,539.5842739,11,14,4% -11/25/2018 23:00,72.84414021,224.6638339,237.5279117,622.6134099,53.87437428,410.5184041,356.4779553,54.04044885,52.24986312,1.790585731,59.21590336,0,59.21590336,1.62451116,57.5913922,1.271370087,3.921123611,2.927729433,-2.927729433,0.02948247,0.226812815,0.446945029,14.3752885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.22455585,1.176952805,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.323810152,13.81807409,50.548366,14.9950269,356.4779553,0,0.57255104,55.07169021,-0.57255104,124.9283098,0.962671541,0,393.7195485,14.9950269,403.5334937,11,15,2% -11/25/2018 0:00,81.88675595,235.5883731,76.79691423,340.2401351,28.77879866,185.1912884,156.7013491,28.48993927,27.9110117,0.578927579,19.48808794,0,19.48808794,0.867786962,18.62030098,1.429193505,4.111792789,6.794006843,-6.794006843,0,0.374738998,0.21694674,6.977752924,0.387138454,1,0.146139233,0,0.94581772,0.984579683,0.724496596,1,27.06177552,0.6287087,0.05595711,0.312029739,0.853602704,0.5780993,0.961238037,0.922476074,0.148555856,6.707281522,27.21033138,7.335990222,96.03623114,0,0.460561036,62.57668394,-0.460561036,117.4233161,0.941436756,0,117.6223693,7.335990222,122.4236282,11,16,4% -11/25/2018 1:00,92.29076805,245.1106102,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610777772,4.277987179,-24.9073075,24.9073075,0,#DIV/0!,0,0,1,0.736116713,0,0.040127308,0.961238037,1,0.617012075,0.89251548,0,0,0.115824807,0.19011735,0.724496596,0.448993192,0.978974947,0.940212984,0,0,0,0,0,0,0.302942974,72.365549,-0.302942974,107.634451,0.884952436,0,0,0,0,11,17,0% -11/25/2018 2:00,103.3759529,253.7656371,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804250746,4.429045896,-4.19630978,4.19630978,0.752235074,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114635682,83.41738782,-0.114635682,96.58261218,0.613835629,0,0,0,0,11,18,0% -11/25/2018 3:00,114.9506722,262.132272,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006267708,4.575071223,-2.101330725,2.101330725,0.889502407,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093224131,95.34911636,0.093224131,84.65088364,0,0.513658179,0,0,0,11,19,0% -11/25/2018 4:00,126.7622201,270.93019,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212418108,4.728623859,-1.250243317,1.250243317,0.743957889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306480092,107.847232,0.306480092,72.15276804,0,0.886857266,0,0,0,11,20,0% -11/25/2018 5:00,138.5286717,281.3227558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417781429,4.910008349,-0.755016956,0.755016956,0.659269193,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510610472,120.7045016,0.510610472,59.29549844,0,0.952077997,0,0,0,11,21,0% -11/25/2018 6:00,149.7631546,295.7737949,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613860145,5.162226562,-0.406551276,0.406551276,0.599678052,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691717209,133.766195,0.691717209,46.23380496,0,0.977716125,0,0,0,11,22,0% -11/25/2018 7:00,159.1776861,320.3685152,0,0,0,0,0,0,0,0,0,0,0,0,0,2.778174717,5.59148541,-0.12777247,0.12777247,0.552004069,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837472222,146.8741473,0.837472222,33.1258527,0,0.990296527,0,0,0,11,23,0% -11/26/2018 8:00,163.0753391,3.037345074,0,0,0,0,0,0,0,0,0,0,0,0,0,2.846201597,0.053011672,0.119079462,-0.119079462,0.509789902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937956602,159.7111781,0.937956602,20.28882191,0,0.99669263,0,0,0,11,0,0% -11/26/2018 9:00,158.197026,43.67988439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76105897,0.7623578,0.35856072,-0.35856072,0.468836195,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98633565,170.5173899,0.98633565,9.482610108,0,0.999307317,0,0,0,11,1,0% -11/26/2018 10:00,148.4248922,66.47601758,0,0,0,0,0,0,0,0,0,0,0,0,0,2.590503061,1.16022538,0.613443262,-0.613443262,0.425248713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.97932389,168.3285936,0.97932389,11.6714064,0,0.998944368,0,0,0,11,2,0% -11/26/2018 11:00,137.0857373,80.19930531,0,0,0,0,0,0,0,0,0,0,0,0,0,2.392597474,1.399741936,0.915029655,-0.915029655,0.373674403,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.917408444,156.5501072,0.917408444,23.44989279,0,0.995498649,0,0,0,11,3,0% -11/26/2018 12:00,125.3013814,90.30299157,0,0,0,0,0,0,0,0,0,0,0,0,0,2.186921663,1.576084527,1.324534744,-1.324534744,0.303644908,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.804815602,143.5924508,0.804815602,36.40754921,0,0.987873968,0,0,0,11,4,0% -11/26/2018 13:00,113.5155214,99.00261368,0,0,0,0,0,0,0,0,0,0,0,0,0,1.981219601,1.727921577,2.009947568,-2.009947568,0.186432412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.649222845,130.4830333,0.649222845,49.5169667,0,0.972984842,0,0,0,11,5,0% -11/26/2018 14:00,102.0008044,107.376785,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780249876,1.874078438,3.738326354,-3.738326354,0,#DIV/0!,0,0,0.098398748,1,0.261379664,0,0.930227993,0.968989956,0.724496596,1,0,0,0.016082209,0.312029739,0.955406078,0.679902674,0.961238037,0.922476074,0,0,0,0,0,0,-0.46123588,117.4668854,0.46123588,62.53311463,0,0.941595597,0,0,0,11,6,0% -11/26/2018 15:00,91.01317312,116.1162668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588479534,2.026611172,39.19679156,-39.19679156,0,#DIV/0!,0,0,0.860586227,1,0.025506759,0,0.958910724,0.997672687,0.724496596,1,0,0,0.104414424,0.312029739,0.746886746,0.471383342,0.961238037,0.922476074,0,0,0,0,0,0,-0.253666261,104.6945692,0.253666261,75.30543076,0,0.852890618,0,0,0,11,7,0% -11/26/2018 16:00,80.76715633,125.7904815,95.29037684,389.6045758,32.77948456,32.50940127,0,32.50940127,31.79106216,0.718339111,39.29844468,15.20576718,24.0926775,0.988422403,23.1042551,1.409652805,2.195458069,-3.458692495,3.458692495,0.878375059,0.343995749,0.661025363,21.26084795,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,30.55877818,0.716108666,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.478910626,20.43673574,31.03768881,21.15284441,0,15.20576718,-0.039028718,92.23674893,0.039028718,87.76325107,0,0,31.03768881,21.15284441,44.88180242,11,8,45% -11/26/2018 17:00,71.92610998,136.9254277,254.6144063,641.3152704,55.65067729,161.131831,105.239836,55.89199498,53.97260404,1.919390944,63.41228387,0,63.41228387,1.678073249,61.73421062,1.255347437,2.389799542,-1.200960891,1.200960891,0.735530098,0.218568455,1.522719775,48.97590229,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.88051995,1.215758357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.103205294,47.07750017,52.98372524,48.29325853,105.239836,0,0.1641,80.55504435,-0.1641,99.44495565,0.745307739,0,131.4197895,48.29325853,163.0267613,11,9,24% -11/26/2018 18:00,64.87983918,149.9313636,384.0466378,745.1865863,67.70148771,325.4785284,256.9233845,68.55514385,65.66003807,2.895105778,95.15800332,0,95.15800332,2.041449646,93.11655367,1.132366812,2.616795946,-0.372875748,0.372875748,0.593919198,0.176284547,1.926707279,61.96952911,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.11492609,1.47902332,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.395892865,59.5674685,64.51081896,61.04649182,256.9233845,0,0.344777253,69.83180091,-0.344777253,110.1681991,0.904978832,0,297.0210434,61.04649182,336.9747513,11,10,13% -11/26/2018 19:00,60.32575555,164.8436153,465.2324736,790.1641392,74.04737358,462.7419169,387.4202259,75.32169096,71.81457206,3.507118901,115.033801,0,115.033801,2.232801519,112.8009995,1.052883058,2.877063838,0.148187474,-0.148187474,0.504812139,0.159162092,2.046850246,65.83373993,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.03089826,1.6176571,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.482936036,63.28189492,70.5138343,64.89955202,387.4202259,0,0.490303478,60.63946972,-0.490303478,119.3605303,0.948022343,0,437.7968646,64.89955202,480.2723234,11,11,10% -11/26/2018 20:00,58.86855306,180.9885393,490.5982701,802.1065562,75.90660143,551.1096034,473.7935291,77.31607432,73.61773733,3.69833699,121.2400946,0,121.2400946,2.288864099,118.9512305,1.027450077,3.158845918,0.59302761,-0.59302761,0.428739995,0.154722522,1.912509113,61.51286729,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.76416931,1.658274248,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.385606342,59.12850779,72.14977565,60.78678204,473.7935291,0,0.590686518,53.79425922,-0.590686518,126.2057408,0.965352732,0,529.5276534,60.78678204,569.3113865,11,12,8% -11/26/2018 21:00,60.73745145,197.0417854,458.0076394,786.5990946,73.50831245,577.4389652,502.6945445,74.74442066,71.29176561,3.452655049,113.2658016,0,113.2658016,2.216546837,111.0492548,1.060068507,3.439027919,1.0751054,-1.0751054,0.346299838,0.160495822,1.557893141,50.10719864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52835682,1.605880638,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.128688278,48.16494526,69.6570451,49.77082589,502.6945445,0,0.639073383,50.27724134,-0.639073383,129.7227587,0.971761724,0,558.1563621,49.77082589,590.7303723,11,13,6% -11/26/2018 22:00,65.64193995,211.73212,370.2205251,736.288194,66.54751008,532.8057508,465.474015,67.33173581,64.54085712,2.7908787,91.77090553,0,91.77090553,2.006652963,89.76425257,1.145667979,3.695422626,1.734168647,-1.734168647,0.233593385,0.179751001,1.036408829,33.33447057,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.03912679,1.453813241,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.750874668,32.04236105,62.79000146,33.49617429,465.474015,0,0.632189975,50.78811963,-0.632189975,129.2118804,0.97090985,0,514.7233075,33.49617429,536.6458836,11,14,4% -11/26/2018 23:00,72.95145756,224.4852469,235.6446593,621.0269453,53.57085827,408.0907776,354.3588894,53.73188822,51.95549924,1.776388978,58.75013487,0,58.75013487,1.615359032,57.13477584,1.273243129,3.91800668,2.94294083,-2.94294083,0.026881167,0.22733746,0.440735483,14.17556816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.94160209,1.17032212,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.319311357,13.62609531,50.26091345,14.79641743,354.3588894,0,0.570601472,55.20782109,-0.570601472,124.7921789,0.962373167,0,391.2864001,14.79641743,400.9703593,11,15,2% -11/26/2018 0:00,81.9690562,235.4029595,75.54162561,337.1529946,28.43869014,182.9095647,154.7589413,28.15062338,27.5811587,0.569464683,19.17347315,0,19.17347315,0.857531435,18.31594172,1.430629915,4.108556712,6.858821401,-6.858821401,0,0.376463836,0.214382859,6.895289676,0.391273485,1,0.144777552,0,0.945984311,0.984746274,0.724496596,1,26.74213284,0.621278606,0.056460907,0.312029739,0.852396876,0.576893472,0.961238037,0.922476074,0.146785939,6.628014711,26.88891878,7.249293317,94.20587094,0,0.459016956,62.67630836,-0.459016956,117.3236916,0.941071562,0,115.5433849,7.249293317,120.2879024,11,16,4% -11/26/2018 1:00,92.35459367,244.9194075,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611891739,4.274650063,-24.22436648,24.22436648,0,#DIV/0!,0,0,1,0.72772552,0,0.041257324,0.961238037,1,0.614168556,0.889671961,0,0,0.115824807,0.186900944,0.724496596,0.448993192,0.979399492,0.940637529,0,0,0,0,0,0,0.301782568,72.43530022,-0.301782568,107.5646998,0.884317799,0,0,0,0,11,17,0% -11/26/2018 2:00,103.4253353,253.5651181,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805112631,4.425546179,-4.181235303,4.181235303,0.754812962,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113854086,83.46246512,-0.113854086,96.53753488,0.610841407,0,0,0,0,11,18,0% -11/26/2018 3:00,114.9907873,261.9150047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006967847,4.571279192,-2.099184582,2.099184582,0.889135395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.0936745,95.37503402,0.0936745,84.62496598,0,0.516236808,0,0,0,11,19,0% -11/26/2018 4:00,126.7991152,270.6837635,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213062049,4.724322905,-1.250607953,1.250607953,0.744020245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306669497,107.8586331,0.306669497,72.14136692,0,0.886958027,0,0,0,11,20,0% -11/26/2018 5:00,138.5710531,281.0265931,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418521125,4.904839335,-0.756253577,0.756253577,0.659480668,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510627036,120.7056053,0.510627036,59.29439469,0,0.952081174,0,0,0,11,21,0% -11/26/2018 6:00,149.8267102,295.3960916,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614969401,5.155634395,-0.408252981,0.408252981,0.599969061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691660859,133.7617245,0.691660859,46.23827554,0,0.977710236,0,0,0,11,22,0% -11/26/2018 7:00,159.2934232,319.9078903,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780194712,5.583445989,-0.129854373,0.129854373,0.552360095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837447823,146.8715893,0.837447823,33.12841073,0,0.990294788,0,0,0,11,23,0% -11/27/2018 8:00,163.2639019,2.807647142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.849492637,0.049002687,0.116563417,-0.116563417,0.510220171,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938066743,159.7293851,0.938066743,20.27061487,0,0.996698889,0,0,0,11,0,0% -11/27/2018 9:00,158.3909628,43.80909541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.764443806,0.764612957,0.355441196,-0.355441196,0.469369665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986673583,170.6356462,0.986673583,9.364353799,0,0.99932468,0,0,0,11,1,0% -11/27/2018 10:00,148.5995654,66.66065999,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593551683,1.163447998,0.609376572,-0.609376572,0.425944158,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.979967105,168.5121918,0.979967105,11.48780824,0,0.998977879,0,0,0,11,2,0% -11/27/2018 11:00,137.2501395,80.36507085,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395466833,1.40263509,0.909301233,-0.909301233,0.374654021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.918413325,156.6952122,0.918413325,23.30478782,0,0.995558281,0,0,0,11,3,0% -11/27/2018 12:00,125.4631683,90.44534556,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189745378,1.578569073,1.315421542,-1.315421542,0.305203357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.80621353,143.7276157,0.80621353,36.27238427,0,0.987981691,0,0,0,11,4,0% -11/27/2018 13:00,113.6794794,99.12549646,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984081208,1.730066286,1.991953559,-1.991953559,0.189509569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.651018017,130.6184001,0.651018017,49.38159995,0,0.97319721,0,0,0,11,5,0% -11/27/2018 14:00,102.1700754,107.4831976,0,0,0,0,0,0,0,0,0,0,0,0,0,1.783204213,1.875935688,3.679532989,-3.679532989,0,#DIV/0!,0,0,0.09015103,1,0.265364204,0,0.929637548,0.968399511,0.724496596,1,0,0,0.014789183,0.312029739,0.95891671,0.683413305,0.961238037,0.922476074,0,0,0,0,0,0,-0.463405,117.6070451,0.463405,62.39295489,0,0.94210302,0,0,0,11,6,0% -11/27/2018 15:00,91.18986165,116.2067188,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59156333,2.028189856,33.32011962,-33.32011962,0,#DIV/0!,0,0,0.837870851,1,0.030002891,0,0.958484259,0.997246222,0.724496596,1,0,0,0.102450822,0.312029739,0.750845551,0.475342146,0.961238037,0.922476074,0,0,0,0,0,0,-0.256160117,104.8423384,0.256160117,75.15766158,0,0.854809583,0,0,0,11,7,0% -11/27/2018 16:00,80.95053114,125.8622541,92.29124274,382.6472749,32.10573531,31.8333593,0,31.8333593,31.13762893,0.695730372,39.31907356,15.97388687,23.34518669,0.968106377,22.37708031,1.4128533,2.196710737,-3.52348684,3.52348684,0.867294573,0.347874125,0.635521418,20.44055341,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.9306733,0.701389775,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.460433104,19.64823743,30.39110641,20.3496272,0,15.97388687,-0.041745722,92.39254896,0.041745722,87.60745104,0,0,30.39110641,20.3496272,43.70953042,11,8,44% -11/27/2018 17:00,72.11865903,136.9717198,251.1537601,638.2397305,55.1843546,158.2973706,102.8837248,55.41364583,53.5203427,1.893303132,62.5591488,0,62.5591488,1.6640119,60.8951369,1.258708052,2.390607493,-1.212483289,1.212483289,0.737500544,0.219723386,1.505512644,48.42246179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.44578915,1.205570957,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.090738786,46.54551211,52.53652794,47.75108307,102.8837248,0,0.161199186,80.72349191,-0.161199186,99.27650809,0.739824736,0,128.6524524,47.75108307,159.9045813,11,9,24% -11/27/2018 18:00,65.077186,149.9411918,380.5861281,743.4436873,67.30122849,322.2571011,254.116234,68.14086713,65.27184814,2.869018994,94.30689337,0,94.30689337,2.029380354,92.27751302,1.135811164,2.616967481,-0.375878392,0.375878392,0.59443268,0.176835737,1.911201238,61.47080153,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.74178317,1.470279158,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.384658791,59.08807258,64.12644196,60.55835174,254.116234,0,0.34180966,70.01283326,-0.34180966,109.9871667,0.903719757,0,293.7763033,60.55835174,333.4105333,11,10,13% -11/27/2018 19:00,60.5203138,164.8050676,461.9400244,788.9618661,73.6800944,459.4626731,384.5220063,74.94066673,71.4583677,3.482299028,114.2244338,0,114.2244338,2.221726697,112.0027071,1.05627874,2.876391054,0.148178422,-0.148178422,0.504813687,0.15950143,2.032954375,65.38680092,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68850109,1.609633429,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.472868524,62.85228015,70.16136961,64.46191358,384.5220063,0,0.487377176,60.83166374,-0.487377176,119.1683363,0.94741005,0,434.461383,64.46191358,476.6504162,11,11,10% -11/27/2018 20:00,59.04952058,180.8969325,487.5861393,801.1365782,75.56397212,547.9533263,470.9922565,76.96106983,73.28543956,3.675630275,120.4994371,0,120.4994371,2.278532561,118.2209045,1.030608556,3.157247079,0.594792346,-0.594792346,0.428438208,0.154975636,1.900360986,61.12214177,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.44475205,1.650789084,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.376805066,58.75292756,71.82155712,60.40371665,470.9922565,0,0.58790507,53.99151384,-0.58790507,126.0084862,0.964952256,0,526.3065975,60.40371665,565.839622,11,12,8% -11/27/2018 21:00,60.89477391,196.905858,455.3586581,785.6883588,73.18799434,574.5281479,500.1143557,74.41379219,70.98110628,3.432685909,112.6138667,0,112.6138667,2.206888064,110.4069786,1.062814302,3.436655538,1.078657584,-1.078657584,0.345692379,0.160726041,1.547649278,49.77772078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.22973925,1.59888289,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.121266633,47.8482386,69.35100589,49.44712149,500.1143557,0,0.636530184,50.46643202,-0.636530184,129.533568,0.97144913,0,555.1866614,49.44712149,587.5488135,11,13,6% -11/27/2018 22:00,65.77064135,211.5686984,367.9931381,735.2661235,66.24701267,530.2134451,463.1899366,67.02350852,64.24942081,2.774087716,91.22178866,0,91.22178866,1.997591857,89.2241968,1.147914243,3.692570382,1.740655686,-1.740655686,0.232484036,0.180022413,1.028227019,33.07131542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.75898713,1.447248501,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.744946975,31.78940631,62.5039341,33.23665481,463.1899366,0,0.629962298,50.95265901,-0.629962298,129.047341,0.970630171,0,512.0900613,33.23665481,533.8427872,11,14,4% -11/27/2018 23:00,73.05208056,224.3086252,233.8850765,619.5637378,53.28080662,405.8116712,352.374353,53.43731822,51.67419372,1.7631245,58.31475753,0,58.31475753,1.606612905,56.70814463,1.274999331,3.91492405,2.957114639,-2.957114639,0.024457303,0.227807637,0.434951142,13.98952387,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.67120052,1.16398558,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.315120622,13.44726246,49.98632114,14.61124804,352.374353,0,0.568745928,55.33717829,-0.568745928,124.6628217,0.962087283,0,389.0012049,14.61124804,398.5639745,11,15,2% -11/27/2018 0:00,82.0449253,235.2202518,74.39313572,334.3361712,28.12214817,180.8177696,152.9828011,27.83496852,27.27416164,0.560806881,18.88546358,0,18.88546358,0.847986527,18.03747705,1.431954081,4.105367862,6.919309713,-6.919309713,0,0.378020739,0.211996632,6.818540411,0.39508249,1,0.143529298,0,0.946136656,0.984898619,0.724496596,1,26.4446029,0.614363352,0.056923497,0.312029739,0.851291453,0.575788049,0.961238037,0.922476074,0.145140233,6.554240399,26.58974313,7.168603751,92.5419751,0,0.457571792,62.76946964,-0.457571792,117.2305304,0.94072753,0,113.6465268,7.168603751,118.3382346,11,16,4% -11/27/2018 1:00,92.41212063,244.7314648,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612895774,4.271369844,-23.63895456,23.63895456,0,#DIV/0!,0,0,1,0.720095963,0,0.042277848,0.961238037,1,0.61160923,0.887112634,0,0,0.115824807,0.184006402,0.724496596,0.448993192,0.979779594,0.941017631,0,0,0,0,0,0,0.300724581,72.4988717,-0.300724581,107.5011283,0.883734908,0,0,0,0,11,17,0% -11/27/2018 2:00,103.4685474,253.3683587,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805866825,4.422112079,-4.168182659,4.168182659,0.757045095,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113174005,83.50168439,-0.113174005,96.49831561,0.608202432,0,0,0,0,11,18,0% -11/27/2018 3:00,115.0247579,261.7020323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007560746,4.567562123,-2.097567819,2.097567819,0.888858913,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094027548,95.39535188,0.094027548,84.60464812,0,0.518240946,0,0,0,11,19,0% -11/27/2018 4:00,126.8297402,270.4422483,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213596555,4.720107669,-1.251192267,1.251192267,0.744120169,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306768776,107.8646094,0.306768776,72.13539059,0,0.887010792,0,0,0,11,20,0% -11/27/2018 5:00,138.6068026,280.735936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41914507,4.899766412,-0.757597945,0.757597945,0.659710568,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510563171,120.7013496,0.510563171,59.29865041,0,0.952068925,0,0,0,11,21,0% -11/27/2018 6:00,149.8829144,295.0235597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615950348,5.149132488,-0.41000853,0.41000853,0.600269278,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691535614,133.7517893,0.691535614,46.24821075,0,0.977697144,0,0,0,11,22,0% -11/27/2018 7:00,159.4009669,319.4462453,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782071703,5.575388763,-0.131957794,0.131957794,0.552719801,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837367101,146.8631275,0.837367101,33.13687247,0,0.990289032,0,0,0,11,23,0% -11/28/2018 8:00,163.4457474,2.562575832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.852666441,0.044725386,0.114050116,-0.114050116,0.510649971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938133307,159.7403962,0.938133307,20.2596038,0,0.99670267,0,0,0,11,0,0% -11/28/2018 9:00,158.5810636,43.92401383,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767761692,0.766618662,0.352347886,-0.352347886,0.469898652,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986979979,170.7441606,0.986979979,9.255839411,0,0.999340411,0,0,0,11,1,0% -11/28/2018 10:00,148.7719425,66.83403657,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596560231,1.166473991,0.605365679,-0.605365679,0.426630061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.980589289,168.6925841,0.980589289,11.30741589,0,0.999010253,0,0,0,11,2,0% -11/28/2018 11:00,137.4129337,80.52157332,0,0,0,0,0,0,0,0,0,0,0,0,0,2.398308127,1.405366573,0.903676556,-0.903676556,0.375615897,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.919405421,156.8393127,0.919405421,23.16068727,0,0.995617027,0,0,0,11,3,0% -11/28/2018 12:00,125.6235655,90.57966659,0,0,0,0,0,0,0,0,0,0,0,0,0,2.192544837,1.580913417,1.306512818,-1.306512818,0.306726839,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.807604091,143.8625008,0.807604091,36.13749917,0,0.988088476,0,0,0,11,4,0% -11/28/2018 13:00,113.8419727,99.24106623,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98691725,1.732083359,1.974467295,-1.974467295,0.192499896,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.652808039,130.7536521,0.652808039,49.2463479,0,0.973407806,0,0,0,11,5,0% -11/28/2018 14:00,102.3375855,107.5826876,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786127815,1.877672117,3.623193048,-3.623193048,0,#DIV/0!,0,0,0.08210465,1,0.269295336,0,0.929051739,0.967813702,0.724496596,1,0,0,0.013518374,0.312029739,0.962379778,0.686876373,0.961238037,0.922476074,0,0,0,0,0,0,-0.46556783,117.7469772,0.46556783,62.2530228,0,0.942604263,0,0,0,11,6,0% -11/28/2018 15:00,91.3642937,116.2904381,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594607744,2.029651034,29.01433599,-29.01433599,0,#DIV/0!,0,0,0.815891847,1,0.034452083,0,0.958057481,0.996819444,0.724496596,1,0,0,0.10052126,0.312029739,0.754765925,0.479262521,0.961238037,0.922476074,0,0,0,0,0,0,-0.258643266,104.9895736,0.258643266,75.01042643,0,0.856683542,0,0,0,11,7,0% -11/28/2018 16:00,81.13092329,125.9274128,89.35881454,375.6899826,31.43600417,31.16171715,0,31.16171715,30.48809266,0.673624489,39.31118884,16.69719818,22.61399066,0.947911512,21.66607915,1.416001737,2.197847972,-3.590311895,3.590311895,0.855866816,0.351795224,0.610689223,19.64186464,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,29.30631434,0.686758664,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.442442263,18.88050741,29.7487566,19.56726607,0,16.69719818,-0.044444087,92.54729767,0.044444087,87.45270233,0,0,29.7487566,19.56726607,42.5551409,11,8,43% -11/28/2018 17:00,72.30737641,137.01163,247.7635902,635.1877094,54.72343287,155.5080046,100.5669386,54.94106606,53.07331946,1.867746599,61.72326436,0,61.72326436,1.650113409,60.07315095,1.262001792,2.391304057,-1.224281098,1.224281098,0.739518088,0.220869551,1.488688567,47.88134166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.01609341,1.195501548,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078549799,46.02536686,52.09464321,47.22086841,100.5669386,0,0.15832633,80.89023626,-0.15832633,99.10976374,0.734196557,0,125.9305432,47.22086841,156.8356572,11,9,25% -11/28/2018 18:00,65.26969111,149.9452529,377.2090025,741.7322105,66.9071073,319.0925908,251.3594189,67.73317194,64.88961115,2.843560795,93.47618599,0,93.47618599,2.017496146,91.45868984,1.139171012,2.617038361,-0.379055614,0.379055614,0.594976017,0.1773741,1.896134058,60.98618922,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.37436243,1.46166909,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.37374267,58.6222448,63.7481051,60.08391389,251.3594189,0,0.338881628,70.19124856,-0.338881628,109.8087514,0.902455855,0,290.5888844,60.08391389,329.9126044,11,10,14% -11/28/2018 19:00,60.70904214,164.762011,458.7441634,787.7948062,73.31963539,456.2559806,381.6889954,74.56698514,71.10877786,3.458207278,113.4386911,0,113.4386911,2.210857528,111.2278336,1.059572671,2.875639574,0.147989483,-0.147989483,0.504845998,0.159826852,2.019540842,64.95537559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.35246203,1.601758753,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.463150465,62.43757771,69.8156125,64.03933647,381.6889954,0,0.484503062,61.02008052,-0.484503062,118.9799195,0.946801478,0,431.1993174,64.03933647,473.1117823,11,11,10% -11/28/2018 20:00,59.22391932,180.8026746,484.6825161,800.2074694,75.22897375,544.8865394,468.2722553,76.61428417,72.96054263,3.653741537,119.7853186,0,119.7853186,2.268431124,117.5168875,1.033652388,3.155601969,0.596336564,-0.596336564,0.428174131,0.155212889,1.888724508,60.74787262,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.13244876,1.643470627,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.368374476,58.39316582,71.50082324,60.03663644,468.2722553,0,0.585188558,54.1836881,-0.585188558,125.8163119,0.964557455,0,523.1763178,60.03663644,562.4690956,11,12,8% -11/28/2018 21:00,61.0451808,196.7692555,452.8277511,784.8293107,72.87635397,571.724406,497.6319362,74.09246987,70.67886301,3.413606863,111.9908219,0,111.9908219,2.197490957,109.7933309,1.065439397,3.434271375,1.08190301,-1.08190301,0.345137378,0.160936148,1.537926996,49.46501877,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.93921153,1.592074718,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.114222873,47.54765753,69.0534344,49.13973225,497.6319362,0,0.634063903,50.64940955,-0.634063903,129.3505905,0.971143595,0,552.3255018,49.13973225,584.4864738,11,13,6% -11/28/2018 22:00,65.89242209,211.4062054,365.8898821,734.3180406,65.95680627,527.7471546,461.0209569,66.72619769,63.96796521,2.758232484,90.70307911,0,90.70307911,1.988841064,88.71423804,1.150039718,3.689734343,1.746642139,-1.746642139,0.231460292,0.180264089,1.020547129,32.82430378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.4884413,1.44090858,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.739382921,31.55196933,62.22782422,32.99287791,461.0209569,0,0.627821913,51.11039059,-0.627821913,128.8896094,0.970359581,0,509.583927,32.99287791,531.1771057,11,14,4% -11/28/2018 23:00,73.14596977,224.1340439,232.2498968,618.2275953,53.00443392,403.6831325,350.52618,53.1569525,51.40615467,1.750797824,57.90995561,0,57.90995561,1.598279248,56.31167636,1.276638007,3.911877032,2.970212564,-2.970212564,0.022217426,0.228221561,0.429590621,13.81711107,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.4135512,1.157947875,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.311236942,13.28153272,49.72478814,14.43948059,350.52618,0,0.566985658,55.45970712,-0.566985658,124.5402929,0.961814348,0,386.8658974,14.43948059,396.3162486,11,15,2% -11/28/2018 0:00,82.11434159,235.0403385,73.35087777,331.7964476,27.82953018,178.9176115,151.3742945,27.54331706,26.99036716,0.5529499,18.62393256,0,18.62393256,0.839163015,17.78476954,1.433165624,4.102227782,6.975187915,-6.975187915,0,0.379402824,0.209790754,6.74759179,0.398559078,1,0.142395026,0,0.946274782,0.985036745,0.724496596,1,26.16953107,0.607970748,0.057344477,0.312029739,0.850286939,0.574783534,0.961238037,0.922476074,0.143620215,6.486041886,26.31315128,7.094012634,91.0426952,0,0.456226387,62.85613008,-0.456226387,117.1438699,0.940405287,0,111.9301832,7.094012634,116.5730726,11,16,4% -11/28/2018 1:00,92.46333904,244.5468849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613789704,4.268148316,-23.13986336,23.13986336,0,#DIV/0!,0,0,1,0.713245482,0,0.043188594,0.961238037,1,0.609332159,0.884835563,0,0,0.115824807,0.181431404,0.724496596,0.448993192,0.98011617,0.941354207,0,0,0,0,0,0,0.299769526,72.55623914,-0.299769526,107.4437609,0.883205194,0,0,0,0,11,17,0% -11/28/2018 2:00,103.5055949,253.1754792,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806513425,4.418745697,-4.157115859,4.157115859,0.758937629,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112595563,83.53503984,-0.112595563,96.46496016,0.605932769,0,0,0,0,11,18,0% -11/28/2018 3:00,115.0526046,261.493501,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008046763,4.563922566,-2.096476281,2.096476281,0.888672249,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094283514,95.41008309,0.094283514,84.58991691,0,0.519684594,0,0,0,11,19,0% -11/28/2018 4:00,126.8541294,270.2058339,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214022228,4.71598146,-1.251994827,1.251994827,0.744257415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306778479,107.8651935,0.306778479,72.13480649,0,0.887015947,0,0,0,11,20,0% -11/28/2018 5:00,138.6359651,280.4510589,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419654053,4.894794368,-0.759049036,0.759049036,0.65995872,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510419667,120.6917876,0.510419667,59.30821241,0,0.952041392,0,0,0,11,21,0% -11/28/2018 6:00,149.9318081,294.656661,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616803705,5.142728898,-0.411816918,0.411816918,0.60057853,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691342409,133.7364663,0.691342409,46.26353368,0,0.977676938,0,0,0,11,22,0% -11/28/2018 7:00,159.5002915,318.9843333,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783805244,5.567326879,-0.134081644,0.134081644,0.553083001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83723104,146.848869,0.83723104,33.15113097,0,0.990279328,0,0,0,11,23,0% -11/29/2018 8:00,163.6207452,2.302114705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.855720728,0.040179481,0.111540783,-0.111540783,0.511079092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938157219,159.7443531,0.938157219,20.25564686,0,0.996704029,0,0,0,11,0,0% -11/29/2018 9:00,158.7672586,44.02421337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771011407,0.768367474,0.349282196,-0.349282196,0.470422916,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987255606,170.8428664,0.987255606,9.157133563,0,0.999354554,0,0,0,11,1,0% -11/29/2018 10:00,148.9419746,66.99589465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.599527852,1.169298947,0.601412215,-0.601412215,0.427306144,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98119096,168.869773,0.98119096,11.13022703,0,0.99904152,0,0,0,11,2,0% -11/29/2018 11:00,137.5740644,80.6686606,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40112039,1.407933731,0.898157458,-0.898157458,0.376559718,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.920384931,156.9824212,0.920384931,23.01757878,0,0.995674904,0,0,0,11,3,0% -11/29/2018 12:00,125.7825059,90.70585382,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19531887,1.5831158,1.29781009,-1.29781009,0.308215093,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.808987115,143.9970875,0.808987115,36.00291249,0,0.988194318,0,0,0,11,4,0% -11/29/2018 13:00,114.0029222,99.34925342,0,0,0,0,0,0,0,0,0,0,0,0,0,1.989726349,1.733971582,1.957485359,-1.957485359,0.195403978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.654592345,130.8887466,0.654592345,49.11125339,0,0.973616583,0,0,0,11,5,0% -11/29/2018 14:00,102.5032445,107.6752093,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78901911,1.879286924,3.5692154,-3.5692154,0,#DIV/0!,0,0,0.074261015,1,0.273169694,0,0.928471215,0.967233178,0.724496596,1,0,0,0.012270607,0.312029739,0.965792357,0.690288952,0.961238037,0.922476074,0,0,0,0,0,0,-0.467723412,117.8866195,0.467723412,62.11338053,0,0.943099215,0,0,0,11,6,0% -11/29/2018 15:00,91.53637006,116.367401,0,0,0,0,0,0,0,0,0,0,0,0,0,1.597611043,2.03099429,25.72714416,-25.72714416,0,#DIV/0!,0,0,0.794637875,1,0.038849895,0,0.957630981,0.996392944,0.724496596,1,0,0,0.098627021,0.312029739,0.758643635,0.483140231,0.961238037,0.922476074,0,0,0,0,0,0,-0.261114387,105.1361962,0.261114387,74.86380382,0,0.858513041,0,0,0,11,7,0% -11/29/2018 16:00,81.30822852,125.9859576,86.49477246,368.7417089,30.77094714,30.49512368,0,30.49512368,29.84308955,0.65203413,39.27543752,17.37592095,21.89951657,0.927857589,20.97165899,1.419096297,2.198869771,-3.659184285,3.659184285,0.844088944,0.355754993,0.586540615,18.86516238,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.68631281,0.672229665,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.424946679,18.13391165,29.11125949,18.80614132,0,17.37592095,-0.047122201,92.70090343,0.047122201,87.29909657,0,0,29.11125949,18.80614132,41.41950286,11,8,42% -11/29/2018 17:00,72.49215637,137.0451838,244.445996,632.1634335,54.26825114,152.7654432,98.29084289,54.47460032,52.63186314,1.842737172,60.90514983,0,60.90514983,1.636388001,59.26876183,1.265226811,2.391889682,-1.236347928,1.236347928,0.741581637,0.222005073,1.472258226,47.35288542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.5917488,1.185557536,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.066646073,45.51739462,51.65839488,46.70295215,98.29084289,0,0.155483278,81.05517414,-0.155483278,98.94482586,0.72842201,0,123.2556082,46.70295215,153.8217564,11,9,25% -11/29/2018 18:00,65.45725384,149.9435967,373.9174652,740.0548984,66.51937164,315.9871669,248.6548519,67.33231495,64.51356715,2.818747796,92.66642299,0,92.66642299,2.005804485,90.66061851,1.142444599,2.617009455,-0.382406961,0.382406961,0.595549131,0.177898541,1.881515143,60.51599467,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.01289464,1.453198522,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363151316,58.17027591,63.37604596,59.62347443,248.6548519,0,0.335995144,70.36693652,-0.335995144,109.6330635,0.901188325,0,287.4608956,59.62347443,326.4832671,11,10,14% -11/29/2018 19:00,60.89185118,164.7145098,455.6470146,786.665073,72.96620109,453.124176,378.9233154,74.20086057,70.76600091,3.434859662,112.6770942,0,112.6770942,2.200200179,110.476894,1.062763291,2.874810521,0.147618488,-0.147618488,0.504909441,0.16013756,2.006617657,64.53972156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02297179,1.59403754,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.453787662,62.03803525,69.47675945,63.63207279,378.9233154,0,0.481683156,61.20461057,-0.481683156,118.7953894,0.946197325,0,428.012987,63.63207279,469.658906,11,11,10% -11/29/2018 20:00,59.39167374,180.7058317,481.889312,799.3211095,74.90178507,541.9115701,465.635665,76.27590508,72.64321989,3.632685185,119.098208,0,119.098208,2.258565178,116.8396428,1.036580255,3.15391174,0.597656071,-0.597656071,0.427948482,0.155433589,1.87760602,60.39026384,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.82742608,1.636322783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.36031917,58.04941866,71.18774525,59.68574144,465.635665,0,0.582538931,54.37068359,-0.582538931,125.6293164,0.964168827,0,520.1391381,59.68574144,559.2022621,11,12,8% -11/29/2018 21:00,61.18860977,196.632043,450.4165106,784.0238738,72.57355367,569.029936,495.2493129,73.78062317,70.38519326,3.395429913,111.3970581,0,111.3970581,2.188360411,109.2086977,1.067942705,3.431876565,1.08483464,-1.08483464,0.34463604,0.161125429,1.528730656,49.16923288,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.65692499,1.585459668,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.107560156,47.26333688,68.76448515,48.84879655,495.2493129,0,0.631676317,50.82609328,-0.631676317,129.1739067,0.970845536,0,549.57507,48.84879655,581.5456303,11,13,6% -11/29/2018 22:00,66.00723307,211.2447111,363.9119357,733.4462714,65.67704983,525.4088837,458.9689174,66.43996634,63.69664445,2.743321889,90.21506742,0,90.21506742,1.980405375,88.23466205,1.152043547,3.686915736,1.752114693,-1.752114693,0.23052443,0.180475119,1.013371104,32.59349816,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.22763747,1.434796952,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.734183915,31.33011018,61.96182138,32.76490713,458.9689174,0,0.625770333,51.2612498,-0.625770333,128.7387502,0.970098481,0,507.2068711,32.76490713,528.6508475,11,14,4% -11/29/2018 23:00,73.23309088,223.9615837,230.7397541,617.0220762,52.74193272,401.7070354,348.8160528,52.89098258,51.15156885,1.739413731,57.53588865,0,57.53588865,1.590363868,55.94552478,1.278158557,3.908867033,2.982198947,-2.982198947,0.020167634,0.228577572,0.424652358,13.65827955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.16883362,1.152213209,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307659187,13.12885782,49.47649281,14.28107103,348.8160528,0,0.565321836,55.57535685,-0.565321836,124.4246431,0.961554805,0,384.8822445,14.28107103,394.2289198,11,15,2% -11/29/2018 0:00,82.17728916,234.8633123,72.41424883,329.5399327,27.56113758,177.2105248,149.934568,27.27595679,26.73006759,0.545889196,18.388743,0,18.388743,0.831069988,17.55767301,1.434264266,4.099138091,7.026189058,-7.026189058,0,0.38060379,0.207767497,6.682516898,0.401697529,1,0.141375187,0,0.946398724,0.985160687,0.724496596,1,25.91720897,0.602107377,0.057723501,0.312029739,0.84938374,0.573880336,0.961238037,0.922476074,0.14222711,6.423489425,26.05943608,7.025596802,89.7062225,0,0.454981485,62.93625703,-0.454981485,117.063743,0.940105418,0,110.3927419,7.025596802,114.9908545,11,16,4% -11/29/2018 1:00,92.50824556,244.3657738,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61457347,4.264987333,-22.71809086,22.71809086,0,#DIV/0!,0,0,1,0.707189325,0,0.043989387,0.961238037,1,0.607335414,0.882838818,0,0,0.115824807,0.179173652,0.724496596,0.448993192,0.980410067,0.941648104,0,0,0,0,0,0,0.298917805,72.60738443,-0.298917805,107.3926156,0.882729937,0,0,0,0,11,17,0% -11/29/2018 2:00,103.5364902,252.9866026,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80705265,4.415449179,-4.148002517,4.148002517,0.760496103,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112118765,83.56253246,-0.112118765,96.43746754,0.60404432,0,0,0,0,11,18,0% -11/29/2018 3:00,115.0743553,261.2895586,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008426384,4.560363099,-2.095905875,2.095905875,0.888574704,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094442758,95.41924799,0.094442758,84.58075201,0,0.520578781,0,0,0,11,19,0% -11/29/2018 4:00,126.8723252,269.9747106,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214339804,4.711947597,-1.253014052,1.253014052,0.744431712,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.30669927,107.8604253,0.30669927,72.13957472,0,0.886973854,0,0,0,11,20,0% -11/29/2018 5:00,138.6585942,280.1722356,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420049004,4.889927985,-0.760605672,0.760605672,0.66022492,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.510197409,120.6769799,0.510197409,59.32302005,0,0.951998718,0,0,0,11,21,0% -11/29/2018 6:00,149.9734421,294.2958588,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617530356,5.13643171,-0.413677005,0.413677005,0.600896624,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691082257,133.7158401,0.691082257,46.2841599,0,0.977649713,0,0,0,11,22,0% -11/29/2018 7:00,159.5913824,318.5229407,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785395081,5.559274059,-0.136224718,0.136224718,0.553449488,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837040672,146.8289287,0.837040672,33.17107135,0,0.990265746,0,0,0,11,23,0% -11/30/2018 8:00,163.7887642,2.026317267,0,0,0,0,0,0,0,0,0,0,0,0,0,2.858653212,0.035365908,0.10903675,-0.10903675,0.511507307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938139427,159.7414088,0.938139427,20.25859116,0,0.996703018,0,0,0,11,0,0% -11/30/2018 9:00,158.9494711,44.1092855,0,0,0,0,0,0,0,0,0,0,0,0,0,2.774191616,0.769852263,0.34624564,-0.34624564,0.470942198,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987501223,170.931723,0.987501223,9.068276998,0,0.999367151,0,0,0,11,1,0% -11/30/2018 10:00,149.1096057,67.14599077,0,0,0,0,0,0,0,0,0,0,0,0,0,2.602453567,1.171918618,0.59751792,-0.59751792,0.427972107,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.981772605,169.0437527,0.981772605,10.95624728,0,0.99907171,0,0,0,11,2,0% -11/30/2018 11:00,137.7334694,80.8061874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403902532,1.410334026,0.892745887,-0.892745887,0.377485151,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.921351994,157.1245414,0.921351994,22.87545858,0,0.995731924,0,0,0,11,3,0% -11/30/2018 12:00,125.9399158,90.82381231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198066191,1.585174564,1.289315037,-1.289315037,0.309667833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810362348,144.1313489,0.810362348,35.86865111,0,0.988299206,0,0,0,11,4,0% -11/30/2018 13:00,114.1622428,99.44999416,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992507019,1.735729839,1.941004753,-1.941004753,0.198222328,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.656370272,131.0236331,0.656370272,48.97636693,0,0.973823485,0,0,0,11,5,0% -11/30/2018 14:00,102.6669571,107.7607224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791876435,1.88077941,3.517515317,-3.517515317,0,#DIV/0!,0,0,0.066621615,1,0.276983837,0,0.927896641,0.966658605,0.724496596,1,0,0,0.01104672,0.312029739,0.96915146,0.693648056,0.961238037,0.922476074,0,0,0,0,0,0,-0.469870685,118.0259027,0.469870685,61.97409727,0,0.943587743,0,0,0,11,6,0% -11/30/2018 15:00,91.70598716,116.4375898,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60057142,2.032219315,23.13815188,-23.13815188,0,#DIV/0!,0,0,0.774098256,1,0.043191785,0,0.957205376,0.995967339,0.724496596,1,0,0,0.0967694,0.312029739,0.762474377,0.486970973,0.961238037,0.922476074,0,0,0,0,0,0,-0.263572057,105.2821214,0.263572057,74.71787857,0,0.860298555,0,0,0,11,7,0% -11/30/2018 16:00,81.48233958,126.0378945,83.7007742,361.8120268,30.11125685,29.83426315,0,29.83426315,29.20329136,0.630971791,39.21259857,18.01041132,21.20218725,0.907965493,20.29422176,1.422135108,2.199776241,-3.73011213,3.73011213,0.831959568,0.359748845,0.563086747,18.11080539,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,28.07131446,0.657817909,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.407954432,17.40879502,28.47926889,18.06661292,0,18.01041132,-0.049778366,92.85326943,0.049778366,87.14673057,0,0,28.47926889,18.06661292,40.30350571,11,8,42% -11/30/2018 17:00,72.67289112,137.0724134,241.2031005,629.1713248,53.81915944,150.0714192,96.05681518,54.01460406,52.19631321,1.818290856,60.10533051,0,60.10533051,1.622846229,58.48248428,1.268381227,2.392364927,-1.248675883,1.248675883,0.743689842,0.223127975,1.456232433,46.8374408,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.17308164,1.175746568,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05503544,45.02192965,51.22811708,46.19767622,96.05681518,0,0.152671953,81.21819794,-0.152671953,98.78180206,0.722500424,0,120.6292068,46.19767622,150.8646619,11,9,25% -11/30/2018 18:00,65.63977277,149.9362793,370.7137241,738.4145606,66.13827169,312.9430266,246.0044712,66.93855542,64.14395877,2.794596642,91.8781473,0,91.8781473,1.994312916,89.88383438,1.145630155,2.616881742,-0.385931373,0.385931373,0.596151841,0.17840794,1.867353834,60.06051829,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.65761301,1.444872919,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352891496,57.73245469,63.0105045,59.17732761,246.0044712,0,0.333152249,70.53978376,-0.333152249,109.4602162,0.899918468,0,284.3944713,59.17732761,323.1248486,11,10,14% -11/30/2018 19:00,61.06865213,164.6626347,452.650676,785.5747927,72.61999446,450.0695999,376.2270942,73.84250568,70.43023369,3.412271996,111.9401578,0,111.9401578,2.189760772,109.750397,1.065849049,2.87390513,0.147063698,-0.147063698,0.505004316,0.160432754,1.994192618,64.14008959,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.70021957,1.586474225,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.444785763,61.6538938,69.14500533,63.24036803,376.2270942,0,0.478919509,61.38514278,-0.478919509,118.6148572,0.945598323,0,424.9047146,63.24036803,466.2942707,11,11,10% -11/30/2018 20:00,59.55271031,180.6064768,479.2083814,798.4793554,74.58257986,539.0307141,463.084599,75.94611509,72.33363989,3.612475198,118.4385601,0,118.4385601,2.248939963,116.1896202,1.039390873,3.15217767,0.598747124,-0.598747124,0.427761901,0.155637052,1.86701154,60.04950895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.52984601,1.629349348,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.352643505,57.72187209,70.88248951,59.35122144,463.084599,0,0.579958136,54.55240176,-0.579958136,125.4475982,0.963786881,0,517.1973507,59.35122144,556.0415381,11,12,8% -11/30/2018 21:00,61.32500207,196.4942927,448.126443,783.2739101,72.27974728,566.44686,492.9684474,73.47841263,70.10024622,3.378166416,110.8329454,0,110.8329454,2.179501064,108.6534443,1.0703232,3.429472368,1.087446054,-1.087446054,0.344189462,0.161293198,1.520064223,48.8904906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38302306,1.579041102,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.101281355,46.9953992,68.48430441,48.5744403,492.9684474,0,0.629369166,50.99640395,-0.629369166,129.0035961,0.970555371,0,546.9374786,48.5744403,578.7284783,11,13,6% -11/30/2018 22:00,66.11503015,211.0842923,362.0603698,732.6530155,65.40788861,523.2005117,457.0355483,66.16496344,63.43559943,2.729364003,89.75801762,0,89.75801762,1.972289171,87.78572845,1.153924961,3.6841159,1.757061163,-1.757061163,0.229678534,0.180654648,1.006700495,32.37894842,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.97671107,1.42891679,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.729351082,31.12387682,61.70606215,32.55279361,457.0355483,0,0.623809005,51.40517515,-0.623809005,128.5948249,0.969847262,0,504.9607371,32.55279361,526.2658894,11,14,4% -11/30/2018 23:00,73.31341564,223.7913306,229.355168,615.9504523,52.49347066,399.8850562,347.2454812,52.63957498,50.91059884,1.728976136,57.19268768,0,57.19268768,1.582871821,55.60981586,1.279560489,3.905895556,2.993041197,-2.993041197,0.0183135,0.228874157,0.420134579,13.51297226,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.93720409,1.146785246,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.304386072,12.98918293,49.24159016,14.13596818,347.2454812,0,0.563755542,55.68408151,-0.563755542,124.3159185,0.961309076,0,383.0518228,14.13596818,392.3035313,11,15,2% -11/30/2018 0:00,82.23375872,234.6892704,71.58260543,327.5720022,27.31721133,175.6976482,148.6645317,27.03311654,26.49349662,0.539619916,18.17974615,0,18.17974615,0.823714711,17.35603144,1.435249846,4.096100487,7.072067189,-7.072067189,0,0.381618009,0.205928678,6.623374156,0.404492873,1,0.140470109,0,0.946508521,0.985270484,0.724496596,1,25.68787035,0.596778504,0.058060284,0.312029739,0.848582158,0.573078754,0.961238037,0.922476074,0.14096187,6.366639171,25.82883222,6.963417675,88.53078819,0,0.453837723,63.00982379,-0.453837723,116.9901762,0.939828462,0,109.0325867,6.963417675,113.5900043,11,16,4% -11/30/2018 1:00,92.54684431,244.1882413,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615247146,4.261888806,-22.36639619,22.36639619,0,#DIV/0!,0,0,1,0.701940312,0,0.044680174,0.961238037,1,0.60561704,0.881120444,0,0,0.115824807,0.177230836,0.724496596,0.448993192,0.980662059,0.941900096,0,0,0,0,0,0,0.298169687,72.65229657,-0.298169687,107.3477034,0.882310251,0,0,0,0,11,17,0% -11/30/2018 2:00,103.5612537,252.8018543,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807484855,4.412224713,-4.140813391,4.140813391,0.761725516,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111743476,83.58417093,-0.111743476,96.41582907,0.602546583,0,0,0,0,11,18,0% -11/30/2018 3:00,115.0900459,261.090354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008700236,4.556886322,-2.095852481,2.095852481,0.888565573,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094505775,95.42287482,0.094505775,84.57712518,0,0.520931802,0,0,0,11,19,0% -11/30/2018 4:00,126.8843779,269.7490685,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214550164,4.708009399,-1.254248169,1.254248169,0.744642759,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306531937,107.8503527,0.306531937,72.14964731,0,0.88688486,0,0,0,11,20,0% -11/30/2018 5:00,138.674752,279.8997392,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420331011,4.885172025,-0.762266501,0.762266501,0.660508939,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509897394,120.6569954,0.509897394,59.34300458,0,0.951941056,0,0,0,11,21,0% -11/30/2018 6:00,150.0078774,293.941616,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618131365,5.130249008,-0.415587504,0.415587504,0.601223338,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690756259,133.6900032,0.690756259,46.30999685,0,0.977615567,0,0,0,11,22,0% -11/30/2018 7:00,159.6742372,318.0628837,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786841169,5.551244549,-0.138385678,0.138385678,0.553819034,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836797089,146.8034298,0.836797089,33.19657025,0,0.990248358,0,0,0,11,23,0% -12/1/2018 8:00,163.9496742,1.735313583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.861461622,0.030286936,0.106539468,-0.106539468,0.511934368,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938080906,159.7317274,0.938080906,20.26827261,0,0.996699693,0,0,0,12,0,0% -12/1/2018 9:00,159.127618,44.17884362,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777300866,0.771066281,0.343239837,-0.343239837,0.47145622,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987717586,171.0107178,0.987717586,8.98928219,0,0.999378243,0,0,0,12,1,0% -12/1/2018 10:00,149.2747723,67.2840927,0,0,0,0,0,0,0,0,0,0,0,0,0,2.605336266,1.174328952,0.59368464,-0.59368464,0.428627637,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98233467,169.2145089,0.98233467,10.78549106,0,0.99910085,0,0,0,12,2,0% -12/1/2018 11:00,137.8910791,80.93401655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406653339,1.412565066,0.88744391,-0.88744391,0.378391843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922306686,157.2656679,0.922306686,22.73433211,0,0.995788098,0,0,0,12,3,0% -12/1/2018 12:00,126.0957149,90.9334541,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200785397,1.587088174,1.281029484,-1.281029484,0.311084746,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.811729453,144.2652495,0.811729453,35.73475054,0,0.988403122,0,0,0,12,4,0% -12/1/2018 13:00,114.3198435,99.54323111,0,0,0,0,0,0,0,0,0,0,0,0,0,1.99525767,1.737357131,1.925022872,-1.925022872,0.20095539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.658141059,131.158253,0.658141059,48.841747,0,0.974028444,0,0,0,12,5,0% -12/1/2018 14:00,102.8286228,107.8391934,0,0,0,0,0,0,0,0,0,0,0,0,0,1.794698033,1.882148988,3.468013979,-3.468013979,0,#DIV/0!,0,0,0.059188015,1,0.280734264,0,0.927328704,0.966090667,0.724496596,1,0,0,0.009847566,0.312029739,0.972454045,0.696950641,0.961238037,0.922476074,0,0,0,0,0,0,-0.47200848,118.1647505,0.47200848,61.83524952,0,0.9440697,0,0,0,12,6,0% -12/1/2018 15:00,91.87303712,116.5009933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603486992,2.033325915,21.04872394,-21.04872394,0,#DIV/0!,0,0,0.75426293,1,0.047473123,0,0.95678131,0.995543274,0.724496596,1,0,0,0.094949699,0.312029739,0.766253781,0.490750377,0.961238037,0.922476074,0,0,0,0,0,0,-0.266014748,105.427258,0.266014748,74.57274199,0,0.862040496,0,0,0,12,7,0% -12/1/2018 16:00,81.65314624,126.0832365,80.97844714,354.9110638,29.45766196,29.17985451,0,29.17985451,28.56940477,0.61044974,39.12358847,18.60116923,20.52241924,0.888257195,19.63416204,1.425116246,2.200567609,-3.803093716,3.803093716,0.819478981,0.363771633,0.540338005,17.37912763,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,27.46199855,0.643539314,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.391473045,16.70547852,27.8534716,17.34901784,0,18.60116923,-0.05241079,93.00429355,0.05241079,86.99570645,0,0,27.8534716,17.34901784,39.20805679,12,8,41% -12/1/2018 17:00,72.84947102,137.0933577,238.0370463,626.215997,53.37651818,147.4276855,93.86624245,53.56144302,51.76701922,1.794423802,59.32433674,0,59.32433674,1.609498961,57.71483778,1.271463128,2.392730474,-1.261255456,1.261255456,0.745841076,0.224236181,1.44062211,46.33535916,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.76042793,1.166076519,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.043725815,44.53930968,50.80415374,45.7053862,93.86624245,0,0.149894354,81.37919572,-0.149894354,98.62080428,0.716431733,0,118.0529085,45.7053862,147.9661696,12,9,25% -12/1/2018 18:00,65.81714601,149.923364,367.599986,736.814067,65.76405957,309.9623918,243.4102373,66.5521545,63.78103053,2.771123969,91.11190157,0,91.11190157,1.98302904,89.12887253,1.148725902,2.616656328,-0.389627142,0.389627142,0.596783855,0.178901148,1.853659377,59.62005746,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.30875258,1.436697789,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.342969908,57.30906699,62.65172248,58.74576478,243.4102373,0,0.330355036,70.70967389,-0.330355036,109.2903261,0.898647683,0,281.3917683,58.74576478,319.8396964,12,10,14% -12/1/2018 19:00,61.23935722,164.6064638,449.7572133,784.5260959,72.28121607,447.0945913,373.6024607,73.49213057,70.10167072,3.390459852,111.2283888,0,111.2283888,2.179545354,109.0488435,1.068828415,2.872924764,0.146323846,-0.146323846,0.505130838,0.160711633,1.982273273,63.75672247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.38439234,1.579073189,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.436150238,61.28538674,68.82054258,62.86445993,373.6024607,0,0.476214192,61.56156459,-0.476214192,118.4384354,0.945005229,0,421.8768216,62.86445993,463.0203533,12,11,10% -12/1/2018 20:00,59.70695803,180.5046905,476.6415143,797.6840322,74.27152606,536.2462279,460.6211373,75.62509058,72.03196552,3.593125069,117.806814,0,117.806814,2.239560543,115.5672535,1.042083004,3.150401165,0.599606477,-0.599606477,0.427614943,0.155822613,1.856946719,59.72578968,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.23986512,1.62255399,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.345351576,57.41070083,70.5852167,59.03325482,460.6211373,0,0.577448111,54.72874422,-0.577448111,125.2712558,0.963412133,0,514.3532092,59.03325482,552.9892939,12,12,8% -12/1/2018 21:00,61.45430301,196.3560841,445.9589605,782.5812093,71.9950791,563.9772163,490.7912274,73.18598885,69.82416183,3.361827018,110.2988304,0,110.2988304,2.170917268,108.1279131,1.072579927,3.427060174,1.089731524,-1.089731524,0.343798624,0.161438799,1.511931226,48.62890547,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.11764024,1.572822171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.095389027,46.74395363,68.21302927,48.3167758,490.7912274,0,0.62714415,51.16026401,-0.62714415,128.839736,0.970273513,0,544.4147576,48.3167758,576.037121,12,13,6% -12/1/2018 22:00,66.21577467,210.9250325,360.3361384,731.9403297,65.14945298,521.123781,455.2224584,65.90132261,63.1849566,2.716366018,89.33216496,0,89.33216496,1.964496383,87.36766857,1.155683285,3.681336293,1.761470622,-1.761470622,0.228924472,0.180801885,1.000536429,32.18069087,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.73578364,1.423270942,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.724885237,30.93330411,61.46066887,32.35657506,455.2224584,0,0.621939303,51.54210864,-0.621939303,128.4578914,0.969606303,0,502.8472337,32.35657506,524.0239649,12,14,4% -12/1/2018 23:00,73.38692234,223.6233764,228.0965356,615.0156811,52.25918862,398.2186585,345.8157892,52.4028693,50.68338126,1.719488034,56.88045323,0,56.88045323,1.575807353,55.30464588,1.280843423,3.902964203,3.002710144,-3.002710144,0.016660013,0.229109962,0.416035288,13.38112498,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.71879391,1.141667063,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.30141615,12.8624463,49.02021006,14.00411337,345.8157892,0,0.562287759,55.78584035,-0.562287759,124.2141596,0.961077559,0,381.3760046,14.00411337,390.5414167,12,15,2% -12/1/2018 0:00,82.28374807,234.5183144,70.85526555,325.897261,27.09792934,174.3798161,147.5648524,26.81496371,26.28082679,0.534136921,17.99678202,0,17.99678202,0.81710255,17.17967947,1.436122325,4.093116743,7.11260096,-7.11260096,0,0.382440587,0.204275638,6.570206698,0.406940942,1,0.139679989,0,0.946604219,0.985366182,0.724496596,1,25.48168868,0.591988016,0.058354607,0.312029739,0.847882375,0.572378971,0.961238037,0.922476074,0.139825159,6.315532588,25.62151384,6.907520604,87.51467241,0,0.45279562,63.07681,-0.45279562,116.92319,0.939574904,0,107.8481037,6.907520604,112.3689378,12,16,4% -12/1/2018 1:00,92.57914729,244.0144,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615810939,4.258854703,-22.07897037,22.07897037,0,#DIV/0!,0,0,1,0.697508681,0,0.045261035,0.961238037,1,0.604175033,0.879678437,0,0,0.115824807,0.175600611,0.724496596,0.448993192,0.980872858,0.942110895,0,0,0,0,0,0,0.297525308,72.69097216,-0.297525308,107.3090278,0.881947069,0,0,0,0,12,17,0% -12/1/2018 2:00,103.579914,252.6213616,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807810538,4.40907452,-4.135522081,4.135522081,0.762630383,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111469419,83.59997196,-0.111469419,96.40002804,0.601446481,0,0,0,0,12,18,0% -12/1/2018 3:00,115.0997208,260.8960371,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008869095,4.553494853,-2.096311896,2.096311896,0.888644137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094473203,95.42100018,0.094473203,84.57899982,0,0.520749391,0,0,0,12,19,0% -12/1/2018 4:00,126.890347,269.5290973,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214654344,4.704170178,-1.255695196,1.255695196,0.744890215,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.306277404,107.8350321,0.306277404,72.16496791,0,0.886749302,0,0,0,12,20,0% -12/1/2018 5:00,138.68451,279.6338403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420501321,4.880531214,-0.764029986,0.764029986,0.660810512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50952073,120.6319111,0.50952073,59.36808893,0,0.951868566,0,0,0,12,21,0% -12/1/2018 6:00,150.0351855,293.5943939,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61860798,5.124188839,-0.417546975,0.417546975,0.601558428,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690365601,133.6590563,0.690365601,46.34094371,0,0.977574607,0,0,0,12,22,0% -12/1/2018 7:00,159.7488658,317.6050045,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788143684,5.54325305,-0.14056306,0.14056306,0.554191389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836501444,146.772504,0.836501444,33.22749596,0,0.99022724,0,0,0,12,23,0% -12/2/2018 8:00,164.1033465,1.429315052,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864143709,0.024946254,0.1040505,-0.1040505,0.512360006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937982656,159.7154836,0.937982656,20.28451637,0,0.99669411,0,0,0,12,0,0% -12/2/2018 9:00,159.3016093,44.23252599,0,0,0,0,0,0,0,0,0,0,0,0,0,2.780337587,0.772003215,0.340266514,-0.340266514,0.471964689,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987905445,171.0798683,0.987905445,8.920131717,0,0.999387869,0,0,0,12,1,0% -12/2/2018 10:00,149.4374031,67.40998059,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60817471,1.17652611,0.589914324,-0.589914324,0.429272399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.982877568,169.3820177,0.982877568,10.61798227,0,0.999128964,0,0,0,12,2,0% -12/2/2018 11:00,138.0468164,81.0520197,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409371469,1.414624609,0.882253698,-0.882253698,0.379279422,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923249018,157.4057857,0.923249018,22.5942143,0,0.99584343,0,0,0,12,3,0% -12/2/2018 12:00,126.2498159,91.03469867,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203474968,1.588855225,1.272955397,-1.272955397,0.312465496,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813088009,144.3987449,0.813088009,35.6012551,0,0.988506042,0,0,0,12,4,0% -12/2/2018 13:00,114.4756271,99.62891385,0,0,0,0,0,0,0,0,0,0,0,0,0,1.997976606,1.738852577,1.909537468,-1.909537468,0.20360355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.659903845,131.2925399,0.659903845,48.70746014,0,0.974231386,0,0,0,12,5,0% -12/2/2018 14:00,102.9881357,107.9105956,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797482059,1.883395192,3.420637982,-3.420637982,0,#DIV/0!,0,0,0.051961836,1,0.284417421,0,0.926768101,0.965530064,0.724496596,1,0,0,0.008674007,0.312029739,0.975697025,0.70019362,0.961238037,0.922476074,0,0,0,0,0,0,-0.474135525,118.303079,0.474135525,61.69692096,0,0.944544919,0,0,0,12,6,0% -12/2/2018 15:00,92.03740791,116.5576072,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606355803,2.034314015,19.32916711,-19.32916711,0,#DIV/0!,0,0,0.735122392,1,0.051689203,0,0.956359449,0.995121412,0.724496596,1,0,0,0.093169228,0.312029739,0.769977428,0.494474024,0.961238037,0.922476074,0,0,0,0,0,0,-0.268440831,105.5715083,0.268440831,74.42849174,0,0.863739215,0,0,0,12,7,0% -12/2/2018 16:00,81.82053565,126.1220036,78.32937811,348.049482,28.81092548,28.53264971,0,28.53264971,27.94216977,0.590479939,39.00946678,19.14884648,19.86062029,0.868755704,18.99186459,1.428037743,2.201244222,-3.878116174,3.878116174,0.806649386,0.367817621,0.518303892,16.67043482,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.85907642,0.62941055,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.375509405,16.02425604,27.23458582,16.65366659,0,19.14884648,-0.055017598,93.15386862,0.055017598,86.84613138,0,0,27.23458582,16.65366659,38.13407754,12,8,40% -12/2/2018 17:00,73.02178488,137.1080628,234.9499899,623.3022484,52.94069743,144.8360081,91.72051575,53.11549234,51.34434007,1.771152267,58.56270256,0,58.56270256,1.596357358,56.9663452,1.274470572,2.392987127,-1.274075463,1.274075463,0.748033426,0.225327515,1.425438272,45.84699473,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.35413265,1.156555472,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.032725175,44.06987521,50.38685783,45.22643068,91.72051575,0,0.147152551,81.53805142,-0.147152551,98.46194858,0.710216559,0,115.528287,45.22643068,145.1280813,12,9,26% -12/2/2018 18:00,65.98927151,149.9049211,364.5784509,735.2563395,65.39698862,307.0475023,240.8741278,66.17337449,63.42502812,2.748346362,90.36822687,0,90.36822687,1.971960496,88.39626637,1.151730059,2.616334438,-0.393491884,0.393491884,0.597444765,0.179377,1.840440901,59.19490586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.96654952,1.428678667,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.333393168,56.9003951,62.29994269,58.32907377,240.8741278,0,0.327605646,70.8764878,-0.327605646,109.1235122,0.897377478,0,278.4549599,58.32907377,316.6301721,12,10,14% -12/2/2018 19:00,61.40387993,164.5460822,446.9686548,783.521111,71.95006346,444.2014817,371.0515396,73.1499421,69.78050357,3.369438521,110.5422851,0,110.5422851,2.169559881,108.3727252,1.071699878,2.871870906,0.145398158,-0.145398158,0.50528914,0.160973399,1.970866901,63.38985436,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.07567427,1.571838748,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.427886361,60.93273916,68.50356063,62.50457791,371.0515396,0,0.473569294,61.73376227,-0.473569294,118.2662377,0.94441883,0,418.9316217,62.50457791,459.8396178,12,11,10% -12/2/2018 20:00,59.85434865,180.4005608,474.1904308,796.9369257,73.9687852,533.560323,458.2473218,75.31300117,71.73835341,3.574647766,117.2033917,0,117.2033917,2.230431789,114.9729599,1.044655455,3.148583758,0.600231408,-0.600231408,0.427508074,0.15598962,1.847416828,59.41927564,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.957634,1.615940239,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.338447203,57.11606787,70.2960812,58.73200811,458.2473218,0,0.575010778,54.899613,-0.575010778,125.100387,0.963045108,0,511.6089228,58.73200811,550.0478475,12,12,8% -12/2/2018 21:00,61.57646212,196.2175041,443.9153776,781.9474808,71.71968331,561.622954,488.7194621,72.90349186,69.55707024,3.346421627,109.7950358,0,109.7950358,2.162613069,107.6324228,1.074712006,3.424641496,1.091686052,-1.091686052,0.34346438,0.16156161,1.504334756,48.38457687,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.86090164,1.566805807,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.08988541,46.50909569,67.95078705,48.07590149,488.7194621,0,0.625002924,51.31759792,-0.625002924,128.6824021,0.970000374,0,542.0088482,48.07590149,573.4735642,12,13,6% -12/2/2018 22:00,66.30943357,210.7670217,358.7400767,731.310118,64.90185777,519.1802922,453.5311307,65.64916152,62.94482729,2.704334231,88.93771543,0,88.93771543,1.957030474,86.98068495,1.157317941,3.678578484,1.765333474,-1.765333474,0.228263886,0.180916106,0.994879613,31.99874823,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50496222,1.417861916,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.720786893,30.75841393,61.22574911,32.17627585,453.5311307,0,0.620162527,51.67199598,-0.620162527,128.328004,0.969375974,0,500.8679304,32.17627585,521.9266595,12,14,4% -12/2/2018 23:00,73.45359589,223.4578182,226.964132,614.2203879,52.03919976,396.7090887,344.5281113,52.18097738,50.47002588,1.710951497,56.59925539,0,56.59925539,1.569173877,55.03008151,1.282007096,3.900074668,3.011180279,-3.011180279,0.015211534,0.229283805,0.412352281,13.26266681,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5137086,1.136861132,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.298747824,12.74857981,48.81245642,13.88544094,344.5281113,0,0.560919367,55.88059802,-0.560919367,124.119402,0.960860628,0,379.8559539,13.88544094,388.9436973,12,15,2% -12/2/2018 0:00,82.32726202,234.3505499,70.2315171,324.5195307,26.90340601,173.257564,146.6359601,26.6216039,26.09216906,0.529434842,17.83968139,0,17.83968139,0.811236954,17.02844443,1.436881786,4.090188699,7.147596575,-7.147596575,0,0.383067419,0.202809239,6.523042265,0.409038396,1,0.139004894,0,0.946685874,0.985447837,0.724496596,1,25.29877679,0.587738412,0.058606316,0.312029739,0.847284454,0.57178105,0.961238037,0.922476074,0.138817351,6.270196341,25.43759414,6.857934753,86.65622217,0,0.451855578,63.13720164,-0.451855578,116.8627984,0.939345175,0,106.8376983,6.857934753,111.3260794,12,16,4% -12/2/2018 1:00,92.60517436,243.8443654,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616265197,4.255887038,-21.85119244,21.85119244,0,#DIV/0!,0,0,1,0.693902008,0,0.045732184,0.961238037,1,0.603007351,0.878510755,0,0,0.115824807,0.174280601,0.724496596,0.448993192,0.981043109,0.942281146,0,0,0,0,0,0,0.296984664,72.72341526,-0.296984664,107.2765847,0.881641138,0,0,0,0,12,17,0% -12/2/2018 2:00,103.5925077,252.4452532,0,0,0,0,0,0,0,0,0,0,0,0,0,1.80803034,4.406000849,-4.132104905,4.132104905,0.763214754,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111296175,83.60996023,-0.111296175,96.39003977,0.600748263,0,0,0,0,12,18,0% -12/2/2018 3:00,115.1034326,260.7067581,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00893388,4.550191311,-2.097279838,2.097279838,0.888809665,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.094345817,95.41366875,0.094345817,84.58633125,0,0.520034795,0,0,0,12,19,0% -12/2/2018 4:00,126.8903,269.3149857,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214653525,4.700433226,-1.257352945,1.257352945,0.745173707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305936718,107.814528,0.305936718,72.18547204,0,0.886567509,0,0,0,12,20,0% -12/2/2018 5:00,138.6879486,279.3748064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420561336,4.876010218,-0.765894414,0.765894414,0.661129348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.509068636,120.601812,0.509068636,59.39818804,0,0.951781417,0,0,0,12,21,0% -12/2/2018 6:00,150.0554478,293.2546494,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618961625,5.118259178,-0.419553831,0.419553831,0.60190162,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.689911555,133.6231081,0.689911555,46.37689188,0,0.977526942,0,0,0,12,22,0% -12/2/2018 7:00,159.8152909,317.1501665,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789303022,5.535314629,-0.142755274,0.142755274,0.554566279,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836154944,146.736291,0.836154944,33.26370897,0,0.99020247,0,0,0,12,23,0% -12/3/2018 8:00,164.2496545,1.108616993,0,0,0,0,0,0,0,0,0,0,0,0,0,2.866697267,0.019349017,0.101571515,-0.101571515,0.512783938,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937845706,159.6928622,0.937845706,20.30713784,0,0.996686326,0,0,0,12,0,0% -12/3/2018 9:00,159.4713486,44.26999749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.783300096,0.772657216,0.337327493,-0.337327493,0.472467291,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988065543,171.1392225,0.988065543,8.860777472,0,0.99939607,0,0,0,12,1,0% -12/3/2018 10:00,149.5974199,67.52344737,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61096753,1.178506479,0.58620901,-0.58620901,0.429906045,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983401676,169.5462453,0.983401676,10.45375468,0,0.999156076,0,0,0,12,2,0% -12/3/2018 11:00,138.2005978,81.16007741,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412055459,1.416510572,0.87717751,-0.87717751,0.380147501,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924178944,157.5448706,0.924178944,22.45512936,0,0.995897923,0,0,0,12,3,0% -12/3/2018 12:00,126.4021257,91.12747294,0,0,0,0,0,0,0,0,0,0,0,0,0,2.206133274,1.590474442,1.265094848,-1.265094848,0.313809729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.814437514,144.5317825,0.814437514,35.46821755,0,0.988607936,0,0,0,12,4,0% -12/3/2018 13:00,114.6294909,99.70699883,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000662036,1.740215417,1.894546597,-1.894546597,0.20616714,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.661657678,131.4264196,0.661657678,48.57358043,0,0.974432223,0,0,0,12,5,0% -12/3/2018 14:00,103.1453856,107.9749089,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800226587,1.88451767,3.375318842,-3.375318842,0,#DIV/0!,0,0,0.044944736,1,0.288029717,0,0.926215546,0.964977509,0.724496596,1,0,0,0.007526911,0.312029739,0.978877278,0.703373874,0.961238037,0.922476074,0,0,0,0,0,0,-0.47625045,118.440798,0.47625045,61.55920204,0,0.945013223,0,0,0,12,6,0% -12/3/2018 15:00,92.19898389,116.6074341,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609175836,2.035183658,17.8912108,-17.8912108,0,#DIV/0!,0,0,0.716667613,1,0.05583527,0,0.955940479,0.994702442,0.724496596,1,0,0,0.091429289,0.312029739,0.773640871,0.498137466,0.961238037,0.922476074,0,0,0,0,0,0,-0.270848583,105.7147687,0.270848583,74.2852313,0,0.86539501,0,0,0,12,7,0% -12/3/2018 16:00,81.98439282,126.1542225,75.75510001,341.238442,28.171842,27.89343096,0,27.89343096,27.32235702,0.571073943,38.87144082,19.65425478,19.21718604,0.849484979,18.36770106,1.43089759,2.201806548,-3.955154216,3.955154216,0.793475104,0.371880467,0.496992906,15.98500025,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,26.26328882,0.615448976,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.360069668,15.36539026,26.62335849,15.98083923,0,19.65425478,-0.057596837,93.30188298,0.057596837,86.69811702,0,0,26.62335849,15.98083923,37.08249815,12,8,39% -12/3/2018 17:00,73.18972038,137.1165815,231.9440936,620.4350501,52.5120757,142.298157,89.62102155,52.67713542,50.92864287,1.748492551,57.82096367,0,57.82096367,1.583432831,56.23753084,1.277401599,2.393135807,-1.287123017,1.287123017,0.750264689,0.226399711,1.410691993,45.3727037,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.95454869,1.147191696,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.022041546,43.61396863,49.97659024,44.76116033,89.62102155,0,0.144448676,81.69464545,-0.144448676,98.30535455,0.703856294,0,113.0569104,44.76116033,142.3521946,12,9,26% -12/3/2018 18:00,66.15604737,149.8810272,361.6513059,733.7443436,65.03731253,304.2006075,238.3981296,65.8024779,63.07619759,2.726280306,89.64766111,0,89.64766111,1.961114935,87.68654617,1.154640847,2.615917411,-0.397522543,0.397522543,0.598134048,0.179834309,1.827707406,58.78535287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.63124035,1.420821094,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.324167794,56.50671719,61.95540814,57.92753829,238.3981296,0,0.324906259,71.04010419,-0.324906259,108.9598958,0.896109459,0,275.586227,57.92753829,313.4986423,12,10,14% -12/3/2018 19:00,61.5621352,164.4815813,444.2869869,782.5619563,71.62673049,441.3925875,368.5764442,72.81614326,69.46692029,3.349222975,109.882334,0,109.882334,2.159810199,107.7225238,1.074461954,2.870745153,0.144286354,-0.144286354,0.50547927,0.16121726,1.959980513,63.03971069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.77424608,1.564775137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.41999921,60.59616774,68.19424529,62.16094288,368.5764442,0,0.470986918,61.90162137,-0.470986918,118.0983786,0.943839939,0,416.0714139,62.16094288,456.7545078,12,11,10% -12/3/2018 20:00,59.99481669,180.2941818,471.8567806,796.2397766,73.67451196,530.9751608,455.9651514,75.01000932,71.4529536,3.557055725,116.6286978,0,116.6286978,2.221558366,114.4071394,1.047107085,3.146727095,0.600619724,-0.600619724,0.427441668,0.156137445,1.838426769,59.13012445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.68329684,1.609511473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.331933936,56.83812475,70.01523078,58.44763622,455.9651514,0,0.572648045,55.06491081,-0.572648045,124.9350892,0.962686334,0,508.966651,58.44763622,547.2194599,12,12,8% -12/3/2018 21:00,61.69143311,196.0786459,441.9969122,781.3743476,71.45368378,559.3859307,486.7548797,72.63105101,69.29909158,3.331959424,109.3218608,0,109.3218608,2.154592202,107.1672686,1.076718628,3.422217963,1.093305383,-1.093305383,0.343187458,0.161661047,1.49727748,48.1575906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.61292275,1.560994716,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.084772437,46.29090785,67.69769518,47.85190257,486.7548797,0,0.622947095,51.46833221,-0.622947095,128.5316678,0.969736362,0,539.7216015,47.85190257,571.0397147,12,13,6% -12/3/2018 22:00,66.39597912,210.6103556,357.272906,730.7641251,64.66520221,517.3715053,451.9629235,65.40858185,62.71530777,2.693274078,88.57484686,0,88.57484686,1.949894436,86.62495243,1.158828446,3.675844144,1.76864149,-1.76864149,0.227698182,0.180996659,0.989730365,31.83313071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.28433932,1.412691881,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.71705628,30.59921607,61.0013956,32.01190795,451.9629235,0,0.618479901,51.79478646,-0.618479901,128.2052135,0.969156629,0,499.024259,32.01190795,519.9754125,12,14,4% -12/3/2018 23:00,73.51342745,223.2947576,225.9581179,613.5668588,51.83358971,395.357381,343.3833976,51.97398347,50.27061573,1.703367737,56.3491357,0,56.3491357,1.562973975,54.78616173,1.283051353,3.897228723,3.018429885,-3.018429885,0.013971779,0.229394678,0.409083189,13.15752158,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.32202798,1.132369325,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296379378,12.64751021,48.61840736,13.77987954,343.3833976,0,0.559651149,55.96832419,-0.559651149,124.0316758,0.960658631,0,378.4926319,13.77987954,387.5112874,12,15,2% -12/3/2018 0:00,82.36431196,234.1860857,69.71063229,323.4418619,26.73369377,172.3311479,145.8780654,26.45308246,25.92757427,0.525508192,17.70826938,0,17.70826938,0.806119504,16.90214988,1.43752843,4.087318257,7.176890027,-7.176890027,0,0.383495213,0.201529876,6.481893567,0.410782719,1,0.138444763,0,0.946753544,0.985515507,0.724496596,1,25.13918836,0.584030837,0.058815325,0.312029739,0.846788348,0.571284944,0.961238037,0.922476074,0.137938531,6.230642647,25.27712689,6.814673484,85.95387703,0,0.451017888,63.19099065,-0.451017888,116.8090094,0.939139652,0,105.9998211,6.814673484,110.4598886,12,16,4% -12/3/2018 1:00,92.62495265,243.6782549,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616610393,4.252987863,-21.67944975,21.67944975,0,#DIV/0!,0,0,1,0.691125219,0,0.04609396,0.961238037,1,0.602111929,0.877615333,0,0,0.115824807,0.173268418,0.724496596,0.448993192,0.981173394,0.942411431,0,0,0,0,0,0,0.296547625,72.74963701,-0.296547625,107.250363,0.881393018,0,0,0,0,12,17,0% -12/3/2018 2:00,103.5990791,252.273659,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808145032,4.403005966,-4.130540923,4.130540923,0.763482211,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111223195,83.61416779,-0.111223195,96.38583221,0.600453483,0,0,0,0,12,18,0% -12/3/2018 3:00,115.1012417,260.5226668,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008895641,4.546978311,-2.098751989,2.098751989,0.889061418,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.09412452,95.40093269,0.09412452,84.59906731,0,0.51878879,0,0,0,12,19,0% -12/3/2018 4:00,126.8843124,269.1069202,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214549021,4.696801797,-1.259219051,1.259219051,0.74549283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305511043,107.7889121,0.305511043,72.21108788,0,0.886339795,0,0,0,12,20,0% -12/3/2018 5:00,138.6851561,279.1229005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.420512598,4.871613631,-0.767857912,0.767857912,0.661465126,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508542428,120.5667903,0.508542428,59.43320968,0,0.951679787,0,0,0,12,21,0% -12/3/2018 6:00,150.0687554,292.9228327,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619193886,5.112467884,-0.421606356,0.421606356,0.602252623,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.68939547,133.5822741,0.68939547,46.41772589,0,0.977472688,0,0,0,12,22,0% -12/3/2018 7:00,159.8735474,316.6992478,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79031979,5.527444612,-0.144960626,0.144960626,0.554943417,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835758842,146.6949369,0.835758842,33.30506309,0,0.99017413,0,0,0,12,23,0% -12/4/2018 8:00,164.3884748,0.77359902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.869120138,0.01350185,0.099104276,-0.099104276,0.51320586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937671102,159.6640559,0.937671102,20.33594412,0,0.996676399,0,0,0,12,0,0% -12/4/2018 9:00,159.6367332,44.29095012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.786186601,0.773022908,0.334424676,-0.334424676,0.472963702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988198616,171.1888593,0.988198616,8.81114074,0,0.999402884,0,0,0,12,1,0% -12/4/2018 10:00,149.7547377,67.62429838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613713243,1.180266661,0.582570807,-0.582570807,0.430528214,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983907336,169.7071478,0.983907336,10.29285217,0,0.999182206,0,0,0,12,2,0% -12/4/2018 11:00,138.3523331,81.25807874,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41470374,1.418221018,0.872217675,-0.872217675,0.380995682,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925096359,157.6828896,0.925096359,22.31711038,0,0.995951576,0,0,0,12,3,0% -12/4/2018 12:00,126.5525451,91.21171084,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20875859,1.591944671,1.25744999,-1.25744999,0.315117077,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815777394,144.6643016,0.815777394,35.33569843,0,0.98870877,0,0,0,12,4,0% -12/4/2018 13:00,114.7813276,99.77744891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003312086,1.741445003,1.880048557,-1.880048557,0.208646451,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663401524,131.5598112,0.663401524,48.4401888,0,0.974630863,0,0,0,12,5,0% -12/4/2018 14:00,103.3002581,108.0321192,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802929621,1.885516178,3.331992509,-3.331992509,0,#DIV/0!,0,0,0.038138379,1,0.291567546,0,0.925671761,0.964433724,0.724496596,1,0,0,0.006407147,0.312029739,0.981991669,0.706488265,0.961238037,0.922476074,0,0,0,0,0,0,-0.478351803,118.5778109,0.478351803,61.42218909,0,0.945474419,0,0,0,12,6,0% -12/4/2018 15:00,92.35764654,116.6504824,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611945021,2.035934991,16.67269397,-16.67269397,0,#DIV/0!,0,0,0.698889949,1,0.059906542,0,0.955525104,0.994287067,0.724496596,1,0,0,0.089731173,0.312029739,0.777239656,0.501736252,0.961238037,0.922476074,0,0,0,0,0,0,-0.273236202,105.8569309,0.273236202,74.14306915,0,0.867008143,0,0,0,12,7,0% -12/4/2018 16:00,82.14460124,126.1799257,73.25707644,334.4895536,27.54123391,27.26300688,0,27.26300688,26.71076409,0.552242786,38.7108691,20.11837296,18.59249614,0.830469819,17.76202632,1.433693754,2.202255154,-4.034168949,4.034168949,0.779962789,0.375953222,0.476412389,15.3230601,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.67540244,0.601672557,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.345159154,14.72910821,26.02056159,15.33078077,0,20.11837296,-0.060146491,93.44822127,0.060146491,86.55177873,0,0,26.02056159,15.33078077,36.05425099,12,8,39% -12/4/2018 17:00,73.35316458,137.1189723,229.0215157,617.6195307,52.09103847,139.8158931,87.5691307,52.24676239,50.52030147,1.726460924,57.099655,0,57.099655,1.570737005,55.52891799,1.280254239,2.393177533,-1.300383546,1.300383546,0.752532373,0.227450414,1.396394376,44.9128432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.5620354,1.137993613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.011682972,43.17193323,49.57371837,44.30992684,87.5691307,0,0.141784912,81.84885541,-0.141784912,98.15114459,0.697353168,0,110.6403291,44.30992684,139.64029,12,9,26% -12/4/2018 18:00,66.31737223,149.8517646,358.8207179,732.281078,64.68528442,301.423955,235.9842284,65.43972657,62.73478443,2.704942138,88.95073733,0,88.95073733,1.950499988,87.00023734,1.157456497,2.615406682,-0.401715411,0.401715411,0.598851071,0.180271877,1.815467741,58.39168319,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.30306103,1.413130602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.315300198,56.12830692,61.61836123,57.54143752,235.9842284,0,0.322259083,71.20040023,-0.322259083,108.7995998,0.894845335,0,272.7877471,57.54143752,310.4474672,12,10,14% -12/4/2018 19:00,61.7140396,164.4130578,441.7141512,781.6507335,71.31140687,438.6702018,366.1792691,72.49093269,69.16110484,3.329827852,109.249012,0,109.249012,2.150302028,107.0987099,1.077113186,2.869549193,0.142988633,-0.142988633,0.505701193,0.161442432,1.94962085,62.7065083,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.48028464,1.5578865,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.412493669,60.27588094,67.89277831,61.83376744,366.1792691,0,0.468469168,62.06502725,-0.468469168,117.9349727,0.94326939,0,413.2984742,61.83376744,453.7674383,12,11,10% -12/4/2018 20:00,60.1282994,180.1856534,469.6421437,795.5942754,73.38885403,528.492848,453.7765778,74.71627016,71.1759093,3.540360857,116.0831198,0,116.0831198,2.212944725,113.8701751,1.049436798,3.144832916,0.600769749,-0.600769749,0.427416012,0.156265478,1.829981097,58.85848259,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.41699133,1.60327092,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.325815075,56.57701226,69.7428064,58.18028318,453.7765778,0,0.570361794,55.22454143,-0.570361794,124.7754586,0.962336344,0,506.4284994,58.18028318,544.5063311,12,12,8% -12/4/2018 21:00,61.79917347,195.939608,440.2046918,780.8633434,71.19719422,557.2679134,484.8991284,72.36878503,69.05033612,3.31844891,108.8795821,0,108.8795821,2.146858095,106.7327241,1.078599052,3.419791294,1.094585992,-1.094585992,0.342968461,0.161736564,1.490761684,47.94802023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.37380954,1.555391382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.080051766,46.08946083,67.4538613,47.64485222,484.8991284,0,0.620978219,51.61239554,-0.620978219,128.3876045,0.969481878,0,537.554779,47.64485222,568.7373818,12,13,6% -12/4/2018 22:00,66.47538844,210.4551347,355.9352433,730.3039354,64.43957043,515.698746,450.5190762,65.17966984,62.49647963,2.683190212,88.24371142,0,88.24371142,1.943090805,86.30062061,1.1602144,3.673135027,1.771387798,-1.771387798,0.227228535,0.181042961,0.985088664,31.68383764,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.07399339,1.407762674,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.713693383,30.45570989,60.78768677,31.86347257,450.5190762,0,0.616892576,51.91043267,-0.616892576,128.0895673,0.968948611,0,497.31752,31.86347257,518.1715255,12,14,4% -12/4/2018 23:00,73.56641373,223.1343,225.0785535,613.0570428,51.64241743,394.1643701,342.3824249,51.78194521,50.085208,1.69673721,56.13011059,0,56.13011059,1.557209426,54.57290116,1.283976139,3.894428209,3.024441071,-3.024441071,0.012943805,0.229441751,0.406225539,13.06560972,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.14380702,1.128192928,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29430902,12.55916104,48.43811604,13.68735396,342.3824249,0,0.558483797,56.04899309,-0.558483797,123.9510069,0.960471888,0,377.2868101,13.68735396,386.2449095,12,15,2% -12/4/2018 0:00,82.39491502,234.0250334,69.29188627,322.6665654,26.58878622,171.6005738,145.2911861,26.30938773,25.78703622,0.522351508,17.60237007,0,17.60237007,0.801750007,16.80062006,1.438062554,4.084507364,7.200348586,-7.200348586,0,0.383721495,0.200437502,6.446759054,0.412172187,1,0.137999427,0,0.946807295,0.985569258,0.724496596,1,25.00292091,0.580865151,0.058981605,0.312029739,0.846393911,0.570890507,0.961238037,0.922476074,0.137188516,6.196870018,25.14010942,6.777735168,85.40620009,0,0.450282743,63.23817412,-0.450282743,116.7618259,0.938958658,0,105.3330005,6.777735168,109.7688926,12,16,4% -12/4/2018 1:00,92.63851571,243.5161877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616847113,4.250159256,-21.56100696,21.56100696,0,#DIV/0!,0,0,1,0.689180662,0,0.04634681,0.961238037,1,0.60148672,0.876990125,0,0,0.115824807,0.172561709,0.724496596,0.448993192,0.981264224,0.942502261,0,0,0,0,0,0,0.296213949,72.76965464,-0.296213949,107.2303454,0.881203088,0,0,0,0,12,17,0% -12/4/2018 2:00,103.5996787,252.1067091,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808155497,4.40009214,-4.130812093,4.130812093,0.763435838,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111249815,83.61263309,-0.111249815,96.38736691,0.600561049,0,0,0,0,12,18,0% -12/4/2018 3:00,115.0932148,260.3439118,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008755545,4.543858449,-2.10072407,2.10072407,0.889398663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093810324,95.38285058,0.093810324,84.61714942,0,0.517009621,0,0,0,12,19,0% -12/4/2018 4:00,126.8724662,268.9050842,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214342265,4.693279095,-1.261291014,1.261291014,0.745847156,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.305001642,107.7582627,0.305001642,72.24173732,0,0.886066456,0,0,0,12,20,0% -12/4/2018 5:00,138.6762278,278.8783799,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42035677,4.867345942,-0.769918479,0.769918479,0.661817504,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507943503,120.5269443,0.507943503,59.47305568,0,0.951563856,0,0,0,12,21,0% -12/4/2018 6:00,150.0752073,292.5993848,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619306494,5.106822654,-0.423702726,0.423702726,0.602611123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688818751,133.5366753,0.688818751,46.46332466,0,0.977411964,0,0,0,12,22,0% -12/4/2018 7:00,159.9236815,316.2531347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791194794,5.51965847,-0.147177329,0.147177329,0.555322495,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835314431,146.6485932,0.835314431,33.35140685,0,0.990142301,0,0,0,12,23,0% -12/5/2018 8:00,164.519687,0.424723528,0,0,0,0,0,0,0,0,0,0,0,0,0,2.871410223,0.007412824,0.096650618,-0.096650618,0.51362546,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937459902,159.6292641,0.937459902,20.37073588,0,0.996664385,0,0,0,12,0,0% -12/5/2018 9:00,159.7976548,44.29510257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788995214,0.773095382,0.331560025,-0.331560025,0.473453586,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988305387,171.2288869,0.988305387,8.771113115,0,0.99940835,0,0,0,12,1,0% -12/5/2018 10:00,149.9092653,67.71235043,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616410259,1.181803459,0.579001875,-0.579001875,0.431138537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984394861,169.8646712,0.984394861,10.13532884,0,0.999207374,0,0,0,12,2,0% -12/5/2018 11:00,138.501927,81.34592042,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417314646,1.419754144,0.867376561,-0.867376561,0.381823562,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926001111,157.8198014,0.926001111,22.18019856,0,0.996004384,0,0,0,12,3,0% -12/5/2018 12:00,126.7009708,91.28735259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211349106,1.593264868,1.250023016,-1.250023016,0.316387164,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.817107017,144.7962349,0.817107017,35.20376514,0,0.988808505,0,0,0,12,4,0% -12/5/2018 13:00,114.9310257,99.84023258,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005924812,1.742540784,1.86604182,-1.86604182,0.211041744,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665134283,131.692628,0.665134283,48.30737199,0,0.97482721,0,0,0,12,5,0% -12/5/2018 14:00,103.4526359,108.082218,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805589116,1.886390568,3.290598917,-3.290598917,0,#DIV/0!,0,0,0.031544407,1,0.295027305,0,0.925137474,0.963899438,0.724496596,1,0,0,0.005315578,0.312029739,0.985037067,0.709533663,0.961238037,0.922476074,0,0,0,0,0,0,-0.480438065,118.7140166,0.480438065,61.28598339,0,0.945928313,0,0,0,12,6,0% -12/5/2018 15:00,92.51327521,116.6867656,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614661254,2.036568254,15.62857724,-15.62857724,0,#DIV/0!,0,0,0.681781051,1,0.063898244,0,0.955114041,0.993876004,0.724496596,1,0,0,0.088076151,0.312029739,0.780769352,0.505265948,0.961238037,0.922476074,0,0,0,0,0,0,-0.275601826,105.9978823,0.275601826,74.00211773,0,0.868578851,0,0,0,12,7,0% -12/5/2018 16:00,82.30104369,126.1991509,70.83668592,327.8148158,26.91994679,26.64220793,0,26.64220793,26.10821107,0.53399686,38.52926264,20.5423523,17.98691034,0.81173572,17.17517462,1.43642419,2.202590696,-4.115106739,4.115106739,0.766121612,0.380028321,0.456568396,14.68480905,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,25.09620555,0.588099766,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.330782248,14.11559702,25.4269878,14.70369678,0,20.5423523,-0.062664502,93.5927655,0.062664502,86.4072345,0,0,25.4269878,14.70369678,35.05026327,12,8,38% -12/5/2018 17:00,73.51200452,137.1152981,226.1843999,614.8609578,51.6779765,137.3909548,85.56618646,51.82476839,50.11969484,1.705073547,56.39930809,0,56.39930809,1.558281663,54.84102643,1.283026519,2.393113407,-1.313840837,1.313840837,0.754833705,0.228477192,1.382556519,44.46777015,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.17695707,1.12896976,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.001657491,42.74411208,49.17861457,43.87308184,85.56618646,0,0.139163473,82.00055705,-0.139163473,97.99944295,0.690710318,0,108.2800625,43.87308184,136.9941171,12,9,27% -12/5/2018 18:00,66.47314559,149.8172194,356.0888273,730.8695638,64.34115587,298.7197783,233.6343977,65.08538062,62.40103263,2.684347993,88.27798208,0,88.27798208,1.940123243,86.33785883,1.160175255,2.614803755,-0.40606617,0.40606617,0.599595094,0.180688499,1.803730604,58.01417651,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.9822461,1.405612685,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.306796683,55.76543314,61.28904279,57.17104583,233.6343977,0,0.319666339,71.35725232,-0.319666339,108.6427477,0.893586909,0,270.0616822,57.17104583,307.4789882,12,10,14% -12/5/2018 19:00,61.85951139,164.3406123,439.2520425,780.7895209,71.00427768,436.036586,363.8620818,72.17450416,68.86323673,3.311267437,108.6427841,0,108.6427841,2.14104095,106.5017432,1.079652147,2.86828478,0.141505645,-0.141505645,0.505954799,0.161648145,1.939794403,62.39045599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.19396248,1.55117688,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.405374441,59.97207943,67.59933692,61.52325631,363.8620818,0,0.466018142,62.22386563,-0.466018142,117.7761344,0.94270804,0,410.6150468,61.52325631,450.8807876,12,11,10% -12/5/2018 20:00,60.25473651,180.0750791,467.5480338,795.0020587,73.11195203,526.115434,451.6835025,74.43193149,70.90735692,3.524574572,115.567029,0,115.567029,2.204595108,113.3624339,1.051643542,3.142903031,0.6006803,-0.6006803,0.427431308,0.156373135,1.822084055,58.60448658,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.15884856,1.597221651,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.320093695,56.33286163,69.47894226,57.93008328,451.6835025,0,0.568153878,55.37840989,-0.568153878,124.6215901,0.961995672,0,503.9965169,57.93008328,541.9105978,12,12,8% -12/5/2018 21:00,61.89964402,195.8004929,438.5397621,780.4159112,70.95031851,555.2705812,483.1537786,72.11680259,68.81090462,3.305897967,108.4684565,0,108.4684565,2.139413882,106.3290426,1.080352594,3.417363279,1.095525061,-1.095525061,0.34280787,0.161787652,1.484789333,47.75592888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.14365887,1.549998074,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.075724817,45.90481532,67.21938369,47.4548134,483.1537786,0,0.619097806,51.7497186,-0.619097806,128.2502814,0.969237317,0,535.5100557,47.4548134,566.5682819,12,13,6% -12/5/2018 22:00,66.54764272,210.301463,354.7276151,729.9309747,64.2250323,514.1632153,449.2007181,64.96249721,62.28841061,2.6740866,87.94443886,0,87.94443886,1.936621689,86.00781717,1.161475475,3.67045295,1.773566847,-1.773566847,0.226855896,0.181054504,0.980954222,31.55085978,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.87398954,1.403075821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710697994,30.32788652,60.58468753,31.73096234,449.2007181,0,0.615401639,52.01889012,-0.615401639,127.9811099,0.968752248,0,495.7488928,31.73096234,516.516173,12,14,4% -12/5/2018 23:00,73.61255612,222.9765537,224.3254167,612.6925605,51.46571677,393.1307091,341.5258139,51.60489527,49.91383552,1.691059747,55.94217568,0,55.94217568,1.551881249,54.39029443,1.284781475,3.891675016,3.029199722,-3.029199722,0.012130028,0.229424367,0.403776824,12.98685062,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.97907727,1.124332682,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292534934,12.48345479,48.2716122,13.60778748,341.5258139,0,0.557417922,56.12258274,-0.557417922,123.8774173,0.960300695,0,376.2390887,13.60778748,385.1451135,12,15,2% -12/5/2018 0:00,82.41909302,233.8675063,68.97457773,322.1952569,26.46862236,171.0656331,144.8751779,26.19045524,25.67049574,0.519959502,17.52181155,0,17.52181155,0.798126623,16.72368493,1.43848454,4.081757999,7.217871645,-7.217871645,0,0.383744609,0.199531656,6.417623935,0.413205823,1,0.137668623,0,0.946847193,0.985609156,0.724496596,1,24.88991981,0.578240021,0.059105183,0.312029739,0.846100914,0.57059751,0.961238037,0.922476074,0.136566872,6.168864232,25.02648668,6.747104254,85.01191073,0,0.44965025,63.27875343,-0.44965025,116.7212466,0.938802464,0,104.8358779,6.747104254,109.2517227,12,16,4% -12/5/2018 1:00,92.64590237,243.3582835,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616976035,4.24740331,-21.4939131,21.4939131,0,#DIV/0!,0,0,1,0.688068233,0,0.046491275,0.961238037,1,0.601129737,0.876633142,0,0,0.115824807,0.172158201,0.724496596,0.448993192,0.981316035,0.942554072,0,0,0,0,0,0,0.295983297,72.7834905,-0.295983297,107.2165095,0.881071548,0,0,0,0,12,17,0% -12/5/2018 2:00,103.5943625,251.9445332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808062712,4.397261636,-4.132903492,4.132903492,0.763078188,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111375275,83.60539979,-0.111375275,96.39460021,0.601067326,0,0,0,0,12,18,0% -12/5/2018 3:00,115.079424,260.1706403,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00851485,4.540834291,-2.103191941,2.103191941,0.889820694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.093404328,95.35948614,0.093404328,84.64051386,0,0.514692898,0,0,0,12,19,0% -12/5/2018 4:00,126.8548485,268.7096579,0,0,0,0,0,0,0,0,0,0,0,0,0,2.214034779,4.689868261,-1.263566252,1.263566252,0.746236245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.304409851,107.7226627,0.304409851,72.27733733,0,0.88574776,0,0,0,12,20,0% -12/5/2018 5:00,138.6612644,278.6414951,0,0,0,0,0,0,0,0,0,0,0,0,0,2.42009561,4.863211523,-0.772074021,0.772074021,0.662186123,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507273316,120.4823767,0.507273316,59.51762325,0,0.951433806,0,0,0,12,21,0% -12/5/2018 6:00,150.0749093,292.2847353,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619301292,5.101330985,-0.425841038,0.425841038,0.602976796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688182847,133.486437,0.688182847,46.51356298,0,0.977344891,0,0,0,12,22,0% -12/5/2018 7:00,159.9657497,315.8127147,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791929022,5.511971691,-0.149403537,0.149403537,0.555703199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834823026,146.5974149,0.834823026,33.4025851,0,0.990107066,0,0,0,12,23,0% -12/6/2018 8:00,164.6431746,0.062532834,0,0,0,0,0,0,0,0,0,0,0,0,0,2.873565488,0.001091404,0.094212427,-0.094212427,0.514042416,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937213168,159.5886906,0.937213168,20.41130936,0,0.996650344,0,0,0,12,0,0% -12/6/2018 9:00,159.9540001,44.28219935,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791723954,0.772870179,0.328735543,-0.328735543,0.473936601,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988386566,171.2594419,0.988386566,8.740558099,0,0.999412505,0,0,0,12,1,0% -12/6/2018 10:00,150.0609065,67.78743064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619056897,1.183113856,0.575504403,-0.575504403,0.43173664,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98486453,170.0187511,0.98486453,9.981248917,0,0.999231596,0,0,0,12,2,0% -12/6/2018 11:00,138.6492794,81.42350585,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419886432,1.421108266,0.862656553,-0.862656553,0.382630731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926893006,157.9555576,0.926893006,22.04444237,0,0.996056341,0,0,0,12,3,0% -12/6/2018 12:00,126.8472953,91.35434374,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213902951,1.594434084,1.242816128,-1.242816128,0.317619614,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818425697,144.9275091,0.818425697,35.07249088,0,0.988907099,0,0,0,12,4,0% -12/6/2018 13:00,115.0784713,99.8953231,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008498222,1.743502295,1.852524975,-1.852524975,0.213353261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666854802,131.8247785,0.666854802,48.17522148,0,0.975021159,0,0,0,12,5,0% -12/6/2018 14:00,103.6023997,108.1252012,0,0,0,0,0,0,0,0,0,0,0,0,0,1.808202988,1.887140765,3.251081577,-3.251081577,0,#DIV/0!,0,0,0.02516441,1,0.298405418,0,0.924613416,0.963375379,0.724496596,1,0,0,0.004253056,0.312029739,0.988010359,0.712506955,0.961238037,0.922476074,0,0,0,0,0,0,-0.482507664,118.84931,0.482507664,61.15068999,0,0.946374703,0,0,0,12,6,0% -12/6/2018 15:00,92.66574806,116.7163018,0,0,0,0,0,0,0,0,0,0,0,0,0,1.617322408,2.037083756,14.72542859,-14.72542859,0,#DIV/0!,0,0,0.665332785,1,0.067805632,0,0.954708016,0.993469979,0.724496596,1,0,0,0.086465458,0.312029739,0.784225573,0.508722169,0.961238037,0.922476074,0,0,0,0,0,0,-0.27794355,106.1375076,0.27794355,73.86249241,0,0.870107356,0,0,0,12,7,0% -12/6/2018 16:00,82.45360292,126.2119393,68.49520658,321.2265477,26.30884423,26.03188131,0,26.03188131,25.51553551,0.5163458,38.32828396,20.92751939,17.40076457,0.793308723,16.60745584,1.439086851,2.202813896,-4.197898121,4.197898121,0.751963452,0.384097597,0.437465559,14.07039616,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,24.52650326,0.574749469,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.316942308,13.52499998,24.84344557,14.09974945,0,20.92751939,-0.065148785,93.73539602,0.065148785,86.26460398,0,0,24.84344557,14.09974945,34.07144959,12,8,37% -12/6/2018 17:00,73.66612778,137.1056253,223.4348647,612.1647176,51.27328402,135.0250443,83.61349259,51.41155172,49.72720533,1.684346389,55.72044847,0,55.72044847,1.546078692,54.17436978,1.285716477,2.392944584,-1.327477112,1.327477112,0.757165646,0.229477544,1.369189476,44.03784012,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.79968123,1.120128749,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.991973115,42.33084698,48.79165434,43.45097573,83.61349259,0,0.136586592,82.14962516,-0.136586592,97.85037484,0.683931858,0,105.9775857,43.45097573,134.4153803,12,9,27% -12/6/2018 18:00,66.62326819,149.7774806,353.4577411,729.5128333,64.00517596,296.090285,231.3505875,64.73969751,62.07518375,2.664513754,87.62991374,0,87.62991374,1.929992209,85.69992153,1.162795388,2.614110182,-0.410569935,0.410569935,0.600365284,0.181082966,1.792504528,57.65310731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.66902777,1.398272786,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.298663429,55.41835969,60.9676912,56.81663248,231.3505875,0,0.31713025,71.51053693,-0.31713025,108.4894631,0.892336075,0,267.4101664,56.81663248,304.5955161,12,10,14% -12/6/2018 19:00,61.99847063,164.2643476,436.9025074,779.9803672,70.70552291,433.4939615,361.6269153,71.86704617,68.57349052,3.293555649,108.0641036,0,108.0641036,2.132032391,105.9320712,1.082077444,2.86695371,0.139838454,-0.139838454,0.506239906,0.16183364,1.930507429,62.091755,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.91544741,1.54465021,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.398646061,59.68495668,67.31409347,61.22960689,361.6269153,0,0.46363592,62.37802318,-0.46363592,117.6219768,0.94215676,0,408.0233362,61.22960689,448.0968893,12,11,10% -12/6/2018 20:00,60.37407002,179.962565,465.5759023,794.4647059,72.84393955,523.8449074,449.6877736,74.15713382,70.64742601,3.509707812,115.0807813,0,115.0807813,2.196513543,112.8842678,1.053726305,3.14093929,0.600350656,-0.600350656,0.427487681,0.156459858,1.814739619,58.36826426,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.90899308,1.591366585,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314772676,56.10579575,69.22376576,57.69716234,449.6877736,0,0.566026118,55.52642283,-0.566026118,124.4735772,0.961664854,0,501.6726927,57.69716234,539.4343315,12,12,8% -12/6/2018 21:00,61.9928084,195.6614061,437.003096,780.0334025,70.71315117,553.3955288,481.5203261,71.87520269,68.58088876,3.294313929,108.0887225,0,108.0887225,2.132262412,105.9564601,1.081978619,3.414935755,1.096120441,-1.096120441,0.342706054,0.161813845,1.479362122,47.58137112,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.92255888,1.544816859,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.071792822,45.73702377,66.9943517,47.28184062,481.5203261,0,0.617307316,51.88023405,-0.617307316,128.119766,0.969003066,0,533.589024,47.28184062,564.534043,12,13,6% -12/6/2018 22:00,66.6127265,210.1494471,353.6504715,729.6465131,64.02164431,512.7660004,448.0088783,64.75712215,62.09115552,2.665966637,87.67714004,0,87.67714004,1.930488791,85.74665124,1.162611401,3.667799774,1.775174356,-1.775174356,0.226580996,0.181030847,0.977326555,31.43418154,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.68438043,1.398632557,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.708069762,30.21573096,60.3924502,31.61436351,448.0088783,0,0.614008112,52.12011672,-0.614008112,127.8798833,0.968567851,0,494.3194467,31.61436351,515.0104153,12,14,4% -12/6/2018 23:00,73.65185972,222.8216287,223.6986207,612.4747149,51.30349812,392.2568887,340.8140456,51.44284306,49.75650837,1.686334694,55.78531024,0,55.78531024,1.546989758,54.23832049,1.285467452,3.888971066,3.032695426,-3.032695426,0.011532228,0.22934204,0.401734575,12.9211649,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.82784842,1.120788814,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.291055332,12.42031518,48.11890375,13.541104,340.8140456,0,0.556454066,56.18907423,-0.556454066,123.8109258,0.960145324,0,375.3499159,13.541104,384.2122977,12,15,2% -12/6/2018 0:00,82.43687145,233.713619,68.75804855,322.0289052,26.37309105,170.7259385,144.6297662,26.09617226,25.57784505,0.518327213,17.46643093,0,17.46643093,0.795246002,16.67118492,1.438794832,4.079072158,7.229391071,-7.229391071,0,0.383563693,0.1988115,6.394461262,0.413883344,1,0.137452015,0,0.946873304,0.985635267,0.724496596,1,24.80008254,0.576153021,0.059186129,0.312029739,0.845909059,0.570405655,0.961238037,0.922476074,0.136072938,6.146599391,24.93615548,6.722752412,84.769915,0,0.449120448,63.31273318,-0.449120448,116.6872668,0.93867129,0,104.507241,6.722752412,108.907148,12,16,4% -12/6/2018 1:00,92.64715558,243.2046624,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616997907,4.244722114,-21.47693856,21.47693856,0,#DIV/0!,0,0,1,0.687785529,0,0.046527967,0.961238037,1,0.601039095,0.8765425,0,0,0.115824807,0.172055746,0.724496596,0.448993192,0.981329185,0.942567221,0,0,0,0,0,0,0.295855252,72.79117088,-0.295855252,107.2088291,0.880998437,0,0,0,0,12,17,0% -12/6/2018 2:00,103.5831907,251.7872599,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807867727,4.394516699,-4.136803556,4.136803556,0.762411238,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111598745,83.5925156,-0.111598745,96.4074844,0.601966286,0,0,0,0,12,18,0% -12/6/2018 3:00,115.0599454,260.0029967,0,0,0,0,0,0,0,0,0,0,0,0,0,2.008174884,4.537908357,-2.106151695,2.106151695,0.890326842,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092907696,95.33090699,0.092907696,84.66909301,0,0.511831453,0,0,0,12,19,0% -12/6/2018 4:00,126.8315506,268.5208164,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213628153,4.686572356,-1.266042155,1.266042155,0.746659649,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.303737063,107.6821987,0.303737063,72.3178013,0,0.885383935,0,0,0,12,20,0% -12/6/2018 5:00,138.6403708,278.4124886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419730947,4.859214605,-0.774322386,0.774322386,0.662570616,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.506533365,120.4331936,0.506533365,59.56680643,0,0.951289819,0,0,0,12,21,0% -12/6/2018 6:00,150.0679723,291.9792997,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619180218,5.096000128,-0.428019336,0.428019336,0.603349307,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687489232,133.431687,0.687489232,46.56831301,0,0.977271588,0,0,0,12,22,0% -12/6/2018 7:00,159.9998177,315.3788696,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792523621,5.504399666,-0.151637356,0.151637356,0.556085205,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834285948,146.5415593,0.834285948,33.45844068,0,0.99006851,0,0,0,12,23,0% -12/7/2018 8:00,164.7588252,359.6876455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.875583971,6.277733692,0.091791622,-0.091791622,0.514456398,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936931957,159.5425416,0.936931957,20.45745836,0,0.996634332,0,0,0,12,0,0% -12/7/2018 9:00,160.105651,44.25201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79437076,0.772343275,0.325953255,-0.325953255,0.4744124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988442844,171.2806868,0.988442844,8.719313192,0,0.999415386,0,0,0,12,1,0% -12/7/2018 10:00,150.2095605,67.84937532,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621651399,1.184194995,0.572080586,-0.572080586,0.432322148,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985316595,170.1693132,0.985316595,9.830686808,0,0.999254889,0,0,0,12,2,0% -12/7/2018 11:00,138.7942871,81.49074418,0,0,0,0,0,0,0,0,0,0,0,0,0,2.422417292,1.422281796,0.858060024,-0.858060024,0.383416783,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927771814,158.0901033,0.927771814,21.90989674,0,0.996107438,0,0,0,12,3,0% -12/7/2018 12:00,126.9914088,91.41263443,0,0,0,0,0,0,0,0,0,0,0,0,0,2.216418205,1.595451449,1.235831501,-1.235831501,0.318814056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819732714,145.0580463,0.819732714,34.94195366,0,0.989004508,0,0,0,12,4,0% -12/7/2018 13:00,115.2235481,99.94269776,0,0,0,0,0,0,0,0,0,0,0,0,0,2.011030289,1.744329139,1.839496666,-1.839496666,0.215581233,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66856189,131.9561676,0.66856189,48.0438324,0,0.975212608,0,0,0,12,5,0% -12/7/2018 14:00,103.7494291,108.1610682,0,0,0,0,0,0,0,0,0,0,0,0,0,1.810769135,1.887766762,3.213387213,-3.213387213,0,#DIV/0!,0,0,0.0189999,1,0.301698358,0,0.924100312,0.962862275,0.724496596,1,0,0,0.003220414,0.312029739,0.990908477,0.715405073,0.961238037,0.922476074,0,0,0,0,0,0,-0.484559,118.9835834,0.484559,61.01641665,0,0.946813391,0,0,0,12,6,0% -12/7/2018 15:00,92.81494294,116.7391118,0,0,0,0,0,0,0,0,0,0,0,0,0,1.619926349,2.037481866,13.93791146,-13.93791146,0,#DIV/0!,0,0,0.649537158,1,0.071624032,0,0.954307762,0.993069726,0.724496596,1,0,0,0.084900289,0.312029739,0.787604007,0.512100603,0.961238037,0.922476074,0,0,0,0,0,0,-0.280259443,106.2756897,0.280259443,73.72431034,0,0.871593879,0,0,0,12,7,0% -12/7/2018 16:00,82.60216252,126.2183352,66.23380186,314.7373127,25.70880216,25.4328853,0,25.4328853,24.93358692,0.499298376,38.10974318,21.27537585,16.83436733,0.775215241,16.05915209,1.441679705,2.202925525,-4.282456766,4.282456766,0.737503072,0.388152294,0.419106991,13.47992149,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.96711215,0.561640803,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.303641588,12.95741327,24.27075373,13.51905408,0,21.27537585,-0.067597247,93.87599261,0.067597247,86.12400739,0,0,24.27075373,13.51905408,33.11870424,12,8,36% -12/7/2018 17:00,73.81542312,137.0900222,220.7749919,609.5362907,50.87735673,132.719814,81.7123021,51.00751185,49.34321671,1.664295145,55.06359285,0,55.06359285,1.534140023,53.52945282,1.288322172,2.392672259,-1.3412731,1.3412731,0.759524899,0.230448912,1.35630422,43.62340599,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.43057676,1.111479224,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.98263779,41.93247713,48.41321455,43.04395635,81.7123021,0,0.134056501,82.29593456,-0.134056501,97.70406544,0.677022936,0,103.7343172,43.04395635,131.9057258,12,9,27% -12/7/2018 18:00,66.76764242,149.7326385,350.9295253,728.2139168,63.67759012,293.5376439,229.1347131,64.40293083,61.75747583,2.645454995,87.00704062,0,87.00704062,1.920114287,85.08692633,1.165315194,2.61332754,-0.415221304,0.415221304,0.601160715,0.181454068,1.781797868,57.30874432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.36363483,1.391116265,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29090649,55.08734489,60.65454132,56.47846115,229.1347131,0,0.314653027,71.66013138,-0.314653027,108.3398686,0.891094807,0,264.8352942,56.47846115,301.7993175,12,10,14% -12/7/2018 19:00,62.1308393,164.1843676,434.6673408,779.2252833,70.41531693,431.0445003,359.475759,71.56874134,68.29203532,3.276706019,107.5134108,0,107.5134108,2.12328161,105.3901292,1.084387713,2.865557795,0.137988514,-0.137988514,0.506556264,0.161998177,1.921765962,61.81059936,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.64490196,1.538310299,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.392312897,59.41469919,67.03721486,60.95300948,359.475759,0,0.461324558,62.52738815,-0.461324558,117.4726119,0.941616435,0,405.5254976,60.95300948,445.4180233,12,11,10% -12/7/2018 20:00,60.48624407,179.8482183,463.72714,793.9837342,72.58494303,521.6831921,447.7911818,73.89201025,70.39623919,3.49577106,114.6247178,0,114.6247178,2.188703842,112.4360139,1.055684111,3.138943563,0.599780529,-0.599780529,0.427585178,0.156525113,1.807951522,58.14993574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.66754276,1.585708483,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.309854723,55.89593008,68.97739748,57.48163856,447.7911818,0,0.563980297,55.66848879,-0.563980297,124.3315112,0.961344421,0,499.4589517,57.48163856,537.0795345,12,12,8% -12/7/2018 21:00,62.07863264,195.5224539,435.5956004,779.7170756,70.48577765,551.644268,480.0001929,71.64407502,68.36037139,3.283703632,107.7406027,0,107.7406027,2.125406261,105.6151965,1.083476535,3.412510582,1.09637062,-1.09637062,0.342663271,0.161814714,1.474481528,47.42439445,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.71058919,1.539849601,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.068256848,45.58613182,66.77884604,47.12598142,480.0001929,0,0.615608158,52.00387654,-0.615608158,127.9961235,0.968779504,0,531.7931948,47.12598142,562.6362072,12,13,6% -12/7/2018 22:00,66.67062706,209.9991952,352.7041977,729.4516669,63.82945029,511.5080824,446.9444923,64.56359009,61.90475686,2.658833225,87.44190964,0,87.44190964,1.924693432,85.51721621,1.163621957,3.665177382,1.776207274,-1.776207274,0.226404356,0.180971621,0.974205039,31.33378285,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.50520696,1.39443384,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.705808234,30.11922392,60.21101519,31.51365776,446.9444923,0,0.612712963,52.21407256,-0.612712963,127.7859274,0.96839572,0,493.0301488,31.51365776,513.6552075,12,14,4% -12/7/2018 23:00,73.6843326,222.6696362,223.198029,612.4045015,51.15574988,391.5432527,340.2474764,51.2957763,49.61321528,1.682561022,55.65948084,0,55.65948084,1.542534604,54.11694624,1.286034211,3.886318296,3.034921381,-3.034921381,0.011151567,0.229194452,0.400096423,12.86847628,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.69010966,1.117561069,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289868496,12.36966888,47.97997815,13.48722995,340.2474764,0,0.55559271,56.24845114,-0.55559271,123.7515489,0.960006019,0,374.6196033,13.48722995,383.4467256,12,15,2% -12/7/2018 0:00,82.44827856,233.5634858,68.64169938,322.1678726,26.30203496,170.5809534,144.5545717,26.02638169,25.50893157,0.517450124,17.43607812,0,17.43607812,0.793103398,16.64297472,1.438993924,4.076451839,7.234871254,-7.234871254,0,0.383178668,0.19827585,6.377232891,0.414205114,1,0.137349204,0,0.946885694,0.985647657,0.724496596,1,24.73326244,0.574600712,0.059224556,0.312029739,0.845817997,0.570314593,0.961238037,0.922476074,0.135705843,6.130038825,24.86896829,6.704639537,84.67932883,0,0.448693318,63.34012055,-0.448693318,116.6598795,0.938565312,0,104.346049,6.704639537,108.7341014,12,16,4% -12/7/2018 1:00,92.64232143,243.0554432,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616913536,4.242117749,-21.50953647,21.50953647,0,#DIV/0!,0,0,1,0.688327982,0,0.046457554,0.961238037,1,0.601213048,0.876716452,0,0,0.115824807,0.172252368,0.724496596,0.448993192,0.981303947,0.942541984,0,0,0,0,0,0,0.295829339,72.79272515,-0.295829339,107.2072748,0.880983634,0,0,0,0,12,17,0% -12/7/2018 2:00,103.5662264,251.6350159,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807571644,4.391859541,-4.142504282,4.142504282,0.761436356,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.111919337,83.57403121,-0.111919337,96.42596879,0.603249677,0,0,0,0,12,18,0% -12/7/2018 3:00,115.0348578,259.8411221,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007737024,4.535083114,-2.109599742,2.109599742,0.890916493,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.092321641,95.29718354,0.092321641,84.70281646,0,0.508415173,0,0,0,12,19,0% -12/7/2018 4:00,126.8026663,268.3387298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.213124027,4.683394346,-1.268716129,1.268716129,0.747116926,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302984704,107.6369599,0.302984704,72.36304011,0,0.884975168,0,0,0,12,20,0% -12/7/2018 5:00,138.6136547,278.1915936,0,0,0,0,0,0,0,0,0,0,0,0,0,2.419264664,4.855359259,-0.776661394,0.776661394,0.66297061,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505725172,120.3795027,0.505725172,59.62049726,0,0.951132072,0,0,0,12,21,0% -12/7/2018 6:00,150.0545113,291.6834774,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618945279,5.090837054,-0.430235634,0.430235634,0.603728316,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686739393,133.3725545,0.686739393,46.62744548,0,0.977192177,0,0,0,12,22,0% -12/7/2018 7:00,160.0259594,314.9524688,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79297988,5.496957568,-0.153876872,0.153876872,0.556468185,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833704523,146.4811843,0.833704523,33.51881571,0,0.990026714,0,0,0,12,23,0% -12/8/2018 8:00,164.8665312,359.3007523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.877463796,6.270981132,0.089390134,-0.089390134,0.514867076,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936617314,159.491024,0.936617314,20.50897602,0,0.996616404,0,0,0,12,0,0% -12/8/2018 9:00,160.2524854,44.2043289,0,0,0,0,0,0,0,0,0,0,0,0,0,2.796933505,0.771511083,0.323215183,-0.323215183,0.474880638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988474892,171.2928078,0.988474892,8.707192244,0,0.999417026,0,0,0,12,1,0% -12/8/2018 10:00,150.355123,67.89802948,0,0,0,0,0,0,0,0,0,0,0,0,0,2.624191944,1.18504417,0.568732604,-0.568732604,0.432894686,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985751283,170.316273,0.985751283,9.683726989,0,0.999277266,0,0,0,12,2,0% -12/8/2018 11:00,138.9368437,81.54754983,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424905375,1.423273242,0.853589313,-0.853589313,0.38418132,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928637275,158.2233777,0.928637275,21.77662226,0,0.996157664,0,0,0,12,3,0% -12/8/2018 12:00,127.1331993,91.46217886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.218892916,1.596316162,1.229071251,-1.229071251,0.319970127,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821027316,145.1877647,0.821027316,34.81223535,0,0.989100686,0,0,0,12,4,0% -12/8/2018 13:00,115.366139,99.98233731,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013518971,1.74502098,1.826955541,-1.826955541,0.217725892,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.670254334,132.0866974,0.670254334,47.91330257,0,0.975401452,0,0,0,12,5,0% -12/8/2018 14:00,103.8936033,108.1898215,0,0,0,0,0,0,0,0,0,0,0,0,0,1.813285449,1.888268602,3.177465444,-3.177465444,0,#DIV/0!,0,0,0.013052288,1,0.304902665,0,0.923598883,0.962360847,0.724496596,1,0,0,0.002218464,0.312029739,0.993728409,0.718225005,0.961238037,0.922476074,0,0,0,0,0,0,-0.486590452,119.1167272,0.486590452,60.88327284,0,0.947244182,0,0,0,12,6,0% -12/8/2018 15:00,92.9607382,116.7552195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.622470957,2.037762998,13.24647537,-13.24647537,0,#DIV/0!,0,0,0.634386266,1,0.075348859,0,0.953914011,0.992675975,0.724496596,1,0,0,0.083381792,0.312029739,0.790900439,0.515397035,0.961238037,0.922476074,0,0,0,0,0,0,-0.282547567,106.4123105,0.282547567,73.58768954,0,0.873038646,0,0,0,12,7,0% -12/8/2018 16:00,82.74660764,126.2183847,64.05350764,308.359837,25.12070278,24.8460833,0,24.8460833,24.3632209,0.482862397,37.87559108,21.5875947,16.28799639,0.757481874,15.53051451,1.444200748,2.202926389,-4.368678476,4.368678476,0.722758291,0.392183094,0.401494193,12.91343338,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,23.41885463,0.548793039,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.290881176,12.41288335,23.70973581,12.96167639,0,21.5875947,-0.070007803,94.01443539,0.070007803,85.98556461,0,0,23.70973581,12.96167639,32.19289377,12,8,36% -12/8/2018 17:00,73.95978109,137.0685588,218.2068153,606.9812266,50.4905896,130.4768543,79.8638071,50.61304718,48.96811204,1.644935145,54.42924625,0,54.42924625,1.522477567,52.90676869,1.290841694,2.392297651,-1.355208129,1.355208129,0.761907929,0.231388692,1.343911589,43.22481636,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.07001188,1.103029815,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.973659371,41.54933762,48.04367125,42.65236743,79.8638071,0,0.131575416,82.43936096,-0.131575416,97.56063904,0.6699898,0,101.5516074,42.65236743,129.4667288,12,9,27% -12/8/2018 18:00,66.90617282,149.682784,348.5061956,726.975828,63.35863887,291.0639724,226.9886434,64.07532906,61.44814214,2.627186912,86.40985872,0,86.40985872,1.910496731,84.49936199,1.167733006,2.612457414,-0.420014397,0.420014397,0.601980382,0.18180061,1.771618775,56.9813497,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.06629152,1.384148378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283531772,54.77264072,60.34982329,56.1567891,226.9886434,0,0.312236851,71.80591465,-0.312236851,108.1940853,0.889865154,0,262.3391074,56.1567891,299.0926028,12,10,14% -12/8/2018 19:00,62.25654164,164.100776,432.5482803,778.5262334,70.13382769,428.6903152,357.4105495,71.27976567,68.01903402,3.260731646,106.9911321,0,106.9911321,2.114793671,104.8763384,1.086581633,2.864098847,0.135957636,-0.135957636,0.506903565,0.162141039,1.9135758,61.54717559,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.38248273,1.532160816,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.386379153,59.16148624,66.76886188,60.69364706,357.4105495,0,0.459086071,62.67185097,-0.459086071,117.328149,0.941087961,0,403.1236272,60.69364706,442.8464053,12,11,10% -12/8/2018 20:00,60.59120506,179.7321461,462.0030751,793.5605933,72.33508133,519.6321402,445.9954541,73.63668607,70.15391174,3.482774331,114.199164,0,114.199164,2.18116959,112.0179944,1.057516026,3.13691772,0.598970049,-0.598970049,0.427723779,0.156568398,1.80172327,57.94961374,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.4346084,1.580249943,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305342376,55.70337295,68.73995078,57.28362289,445.9954541,0,0.562018147,55.80451873,-0.562018147,124.1954813,0.961034901,0,497.3571479,57.28362289,534.8481335,12,12,8% -12/8/2018 21:00,62.1570851,195.3837434,434.3181186,779.4680917,70.26827425,550.0182254,478.5947254,71.42349995,68.14942651,3.274073435,107.4243039,0,107.4243039,2.118847731,105.3054562,1.084845788,3.410089627,1.096274709,-1.096274709,0.342679673,0.161789875,1.470148835,47.28504013,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.50782096,1.535097968,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.065117826,45.45217915,66.57293878,46.98727712,478.5947254,0,0.61400169,52.12058294,-0.61400169,127.8794171,0.968566999,0,530.1239959,46.98727712,560.876229,12,13,6% -12/8/2018 22:00,66.7213341,209.8508153,351.8891197,729.3473974,63.64848179,510.3903393,446.0084053,64.38193405,61.72924523,2.652688823,87.23882767,0,87.23882767,1.919236564,85.31959111,1.164506961,3.662587665,1.776663754,-1.776663754,0.226326294,0.180876527,0.971588946,31.24964032,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.3364985,1.390480357,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.703912884,30.03834292,60.04041139,31.42882327,446.0084053,0,0.6115171,52.30071981,-0.6115171,127.6992802,0.968236138,0,491.8818671,31.42882327,512.4514033,12,14,4% -12/8/2018 23:00,73.70998534,222.5206871,222.8234646,612.4826122,51.02243932,390.9900076,339.8263457,51.16366192,49.48392452,1.679737397,55.56464354,0,55.56464354,1.538514798,54.02612874,1.286481936,3.883718643,3.035874358,-3.035874358,0.010988598,0.228981447,0.398860129,12.82871281,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.56583046,1.114648734,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288972805,12.33144671,47.85480327,13.44609545,339.8263457,0,0.554834274,56.30069923,-0.554834274,123.6993008,0.959883001,0,374.0483356,13.44609545,382.8485361,12,15,2% -12/8/2018 0:00,82.45334479,233.4172206,68.62499914,322.6119428,26.25525341,170.6300113,144.6491265,25.98088487,25.46356064,0.517324231,17.43061832,0,17.43061832,0.791692762,16.63892555,1.439082346,4.07389903,7.234308996,-7.234308996,0,0.382590218,0.19792319,6.365890161,0.414172117,1,0.137359745,0,0.946884424,0.985646387,0.724496596,1,24.68927137,0.573578711,0.059220616,0.312029739,0.845827334,0.57032393,0.961238037,0.922476074,0.135464521,6.119135761,24.8247359,6.692714472,84.73949147,0,0.44836879,63.36092471,-0.44836879,116.6390753,0.938484656,0,104.3514484,6.692714472,108.7316961,12,16,4% -12/8/2018 1:00,92.63144852,242.9107436,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616723768,4.239592265,-21.591825,21.591825,0,#DIV/0!,0,0,1,0.689688976,0,0.046280753,0.961238037,1,0.601650006,0.87715341,0,0,0.115824807,0.172746278,0.724496596,0.448993192,0.981240513,0.94247855,0,0,0,0,0,0,0.29590503,72.78818514,-0.29590503,107.2118149,0.881026867,0,0,0,0,12,17,0% -12/8/2018 2:00,103.543535,251.4879256,0,0,0,0,0,0,0,0,0,0,0,0,0,1.807175604,4.389292331,-4.150001346,4.150001346,0.760154283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112336121,83.54999967,-0.112336121,96.45000033,0.60490719,0,0,0,0,12,18,0% -12/8/2018 3:00,115.0042425,259.685154,0,0,0,0,0,0,0,0,0,0,0,0,0,2.007202686,4.532360956,-2.11353286,2.11353286,0.891589095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.091647406,95.25838827,0.091647406,84.74161173,0,0.504430824,0,0,0,12,19,0% -12/8/2018 4:00,126.7682916,268.1635619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.212524076,4.680337089,-1.271585627,1.271585627,0.747607639,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.302154226,107.587037,0.302154226,72.41296304,0,0.884521593,0,0,0,12,20,0% -12/8/2018 5:00,138.5812259,277.9790329,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418698674,4.851649376,-0.779088858,0.779088858,0.663385731,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.504850268,120.3214134,0.504850268,59.67858665,0,0.950960734,0,0,0,12,21,0% -12/8/2018 6:00,150.0346443,291.3976495,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618598534,5.085848416,-0.432487934,0.432487934,0.604113482,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685934813,133.3091693,0.685934813,46.69083071,0,0.977106776,0,0,0,12,22,0% -12/8/2018 7:00,160.0442561,314.534363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793299218,5.489660244,-0.156120165,0.156120165,0.55685181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833080062,146.4164473,0.833080062,33.58355274,0,0.989981759,0,0,0,12,23,0% -12/9/2018 8:00,164.9661905,358.9026125,0,0,0,0,0,0,0,0,0,0,0,0,0,2.879203178,6.264032282,0.087009892,-0.087009892,0.515274122,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936270266,159.4343438,0.936270266,20.56565625,0,0.996596617,0,0,0,12,0,0% -12/9/2018 9:00,160.3943783,44.13897608,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799410004,0.770370461,0.320523338,-0.320523338,0.475340971,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988483356,171.2960121,0.988483356,8.703987925,0,0.999417459,0,0,0,12,1,0% -12/9/2018 10:00,150.4974867,67.93324684,0,0,0,0,0,0,0,0,0,0,0,0,0,2.626676658,1.185658829,0.565462608,-0.565462608,0.433453889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986168794,170.4595359,0.986168794,9.540464068,0,0.99929874,0,0,0,12,2,0% -12/9/2018 11:00,139.0768413,81.59384241,0,0,0,0,0,0,0,0,0,0,0,0,0,2.427348794,1.424081199,0.849246705,-0.849246705,0.38492395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929489105,158.3553154,0.929489105,21.64468461,0,0.996207008,0,0,0,12,3,0% -12/9/2018 12:00,127.2725541,91.50293523,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221325117,1.597027495,1.222537409,-1.222537409,0.32108748,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822308732,145.316579,0.822308732,34.68342099,0,0.989195587,0,0,0,12,4,0% -12/9/2018 13:00,115.5061268,100.0142259,0,0,0,0,0,0,0,0,0,0,0,0,0,2.015962219,1.74557754,1.814900212,-1.814900212,0.219787474,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671930903,132.2162683,0.671930903,47.78373172,0,0.975587587,0,0,0,12,5,0% -12/9/2018 14:00,104.0348021,108.2114667,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815749834,1.888646382,3.143268512,-3.143268512,0,#DIV/0!,0,0,0.007322864,1,0.308014967,0,0.923109842,0.961871805,0.724496596,1,0,0,0.001247989,0.312029739,0.996467219,0.720963815,0.961238037,0.922476074,0,0,0,0,0,0,-0.488600395,119.248631,0.488600395,60.75136899,0,0.947666886,0,0,0,12,6,0% -12/9/2018 15:00,93.10301344,116.7646509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.624954128,2.037927608,12.63579501,-12.63579501,0,#DIV/0!,0,0,0.619872246,1,0.078975647,0,0.953527492,0.992289456,0.724496596,1,0,0,0.081911055,0.312029739,0.794110774,0.51860737,0.961238037,0.922476074,0,0,0,0,0,0,-0.284805988,106.5472519,0.284805988,73.45274808,0,0.874441894,0,0,0,12,7,0% -12/9/2018 16:00,82.88682566,126.2121358,61.95522222,302.1069268,24.54542847,24.27233787,0,24.27233787,23.80529323,0.467044635,37.62790938,21.86601322,15.76189615,0.740135231,15.02176092,1.446648014,2.202817325,-4.456440214,4.456440214,0.70775015,0.396180138,0.384627013,12.37092689,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.88255334,0.536225456,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.278660962,11.89140548,23.1612143,12.42763093,0,21.86601322,-0.072378391,94.15060563,0.072378391,85.84939437,0,0,23.1612143,12.42763093,31.29485019,12,8,35% -12/9/2018 17:00,74.09909467,137.0413055,215.7323103,604.5051157,50.11337475,128.297684,78.0691311,50.22855288,48.6022716,1.62628128,53.81789943,0,53.81789943,1.511103147,52.30679628,1.293273175,2.391821992,-1.369260199,1.369260199,0.764310974,0.232294248,1.332022237,42.84241394,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.71835214,1.094789086,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.965045576,41.18175787,47.68339772,42.27654696,78.0691311,0,0.129145526,82.57978167,-0.129145526,97.42021833,0.662839859,0,99.43072958,42.27654696,127.099884,12,9,28% -12/9/2018 18:00,67.03876656,149.6280077,346.1897081,725.8015489,63.04855655,288.6713256,224.9141914,63.7571342,61.14740994,2.609724251,85.83884937,0,85.83884937,1.901146604,83.93770277,1.170047203,2.611501388,-0.424942885,0.424942885,0.602823203,0.182121406,1.761975161,56.67117793,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.77721629,1.377374243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.276545006,54.47449182,60.0537613,55.85186607,224.9141914,0,0.309883868,71.94776802,-0.309883868,108.052232,0.888649232,0,259.9235848,55.85186607,296.4775141,12,10,14% -12/9/2018 19:00,62.3755045,164.0136759,430.5469993,777.885125,69.8612159,426.4334489,355.4331613,71.00028762,67.75464248,3.245645144,106.4976781,0,106.4976781,2.10657342,104.3911047,1.088657926,2.862578663,0.133747982,-0.133747982,0.507281438,0.162261532,1.905942491,61.30166216,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.12833952,1.526205272,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.380848847,58.92548939,66.50918837,60.45169466,355.4331613,0,0.45692243,62.81130489,-0.45692243,117.1886951,0.940572236,0,400.8197515,60.45169466,440.3841766,12,11,10% -12/9/2018 20:00,60.68890182,179.6144547,460.4049694,793.1966576,72.09446524,517.6935247,444.3022465,73.39127825,69.92055112,3.470727135,113.8044293,0,113.8044293,2.173914127,111.6305152,1.059221156,3.134863619,0.597919754,-0.597919754,0.42790339,0.156589242,1.796058131,57.76740341,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21029329,1.574993385,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301238002,55.52822545,68.51153129,57.10321883,444.3022465,0,0.56014135,55.93442641,-0.56014135,124.0655736,0.960736817,0,495.3690572,57.10321883,532.7419719,12,12,8% -12/9/2018 21:00,62.2281365,195.245381,433.1714288,779.2875098,70.06070781,548.518738,477.3051898,71.21354818,67.94811898,3.265429203,107.1400168,0,107.1400168,2.112588837,105.027428,1.086085869,3.407674748,1.09583244,-1.09583244,0.342755305,0.161738986,1.466365135,47.16334334,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.31431649,1.530563421,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.062376549,45.33519956,66.37669304,46.86576299,477.3051898,0,0.612489208,52.23029263,-0.612489208,127.7697074,0.968365909,0,528.5827669,46.86576299,559.2554714,12,13,6% -12/9/2018 22:00,66.76483971,209.7044156,351.2055058,729.3345076,63.47875797,509.4135451,445.2013704,64.21217465,61.5646392,2.647535453,87.06795976,0,87.06795976,1.914118764,85.153841,1.165266277,3.660032508,1.776543151,-1.776543151,0.226346918,0.180745338,0.969477461,31.18172769,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.17827293,1.386772529,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70238312,29.97306271,59.88065605,31.35983524,445.2013704,0,0.610421371,52.38002289,-0.610421371,127.6199771,0.968089369,0,490.8753696,31.35983524,511.3997546,12,14,4% -12/9/2018 23:00,73.72883085,222.3748916,222.5747133,612.7094358,50.90351299,390.5972253,339.5507789,51.04644646,49.36858426,1.677862205,55.50074484,0,55.50074484,1.534928731,53.96581611,1.286810852,3.881174033,3.035554678,-3.035554678,0.011043267,0.228703037,0.398023606,12.80180735,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.45496102,1.11205064,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288366747,12.30558417,47.74332776,13.41763481,339.5507789,0,0.554179125,56.34580647,-0.554179125,123.6541935,0.959776464,0,373.6361738,13.41763481,382.4177474,12,15,2% -12/9/2018 0:00,82.45210252,233.274936,68.70748864,323.3603323,26.23250404,170.8723247,144.9128813,25.95944332,25.44149725,0.517946072,17.44993287,0,17.44993287,0.791006784,16.65892609,1.439060664,4.071415696,7.227733262,-7.227733262,0,0.38179978,0.197751696,6.360374313,0.413785935,1,0.137483146,0,0.946869552,0.985631515,0.724496596,1,24.66788136,0.573081723,0.059174494,0.312029739,0.845936633,0.570433229,0.961238037,0.922476074,0.13534772,6.113833718,24.80322908,6.686915441,84.9499692,0,0.448146748,63.37515674,-0.448146748,116.6248433,0.938429403,0,104.522778,6.686915441,108.8992304,12,16,4% -12/9/2018 1:00,92.61458761,242.7706791,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616429489,4.237147678,-21.72458962,21.72458962,0,#DIV/0!,0,0,1,0.691859924,0,0.04599832,0.961238037,1,0.602348544,0.877851949,0,0,0.115824807,0.173535884,0.724496596,0.448993192,0.981138989,0.942377026,0,0,0,0,0,0,0.296081749,72.77758486,-0.296081749,107.2224151,0.88112772,0,0,0,0,12,17,0% -12/9/2018 2:00,103.5151839,251.3461099,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806680784,4.386817181,-4.159294133,4.159294133,0.758565123,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.112848131,83.52047598,-0.112848131,96.47952402,0.606926643,0,0,0,0,12,18,0% -12/9/2018 3:00,114.9681822,259.5352248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.006573314,4.529744198,-2.117948213,2.117948213,0.892344165,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090886264,95.21459525,0.090886264,84.78540475,0,0.499861863,0,0,0,12,19,0% -12/9/2018 4:00,126.7285239,267.9954694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211829998,4.677403322,-1.274648164,1.274648164,0.748131363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.301247093,107.5325218,0.301247093,72.46747821,0,0.884023294,0,0,0,12,20,0% -12/9/2018 5:00,138.5431956,277.7750183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.418034919,4.84808865,-0.781602601,0.781602601,0.663815606,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.50391019,120.259035,0.50391019,59.74096496,0,0.95077597,0,0,0,12,21,0% -12/9/2018 6:00,150.0084917,291.1221775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.618142086,5.081040522,-0.434774239,0.434774239,0.604504463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.685076972,133.2416608,0.685076972,46.75833915,0,0.9770155,0,0,0,12,22,0% -12/9/2018 7:00,160.0547962,314.1253787,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793483177,5.482522123,-0.158365319,0.158365319,0.557235754,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.832413864,146.3475046,0.832413864,33.6524954,0,0.989933725,0,0,0,12,23,0% -12/10/2018 8:00,165.0577071,358.4940502,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880800444,6.256901524,0.08465281,-0.08465281,0.515677206,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935891818,159.3727052,0.935891818,20.62729476,0,0.996575022,0,0,0,12,0,0% -12/10/2018 9:00,160.5312017,44.05579891,0,0,0,0,0,0,0,0,0,0,0,0,0,2.801798021,0.768918746,0.317879702,-0.317879702,0.475793059,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988468861,171.2905257,0.988468861,8.709474283,0,0.999416717,0,0,0,12,1,0% -12/10/2018 10:00,150.6365418,67.95489047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.629103628,1.186036582,0.562272702,-0.562272702,0.433999395,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986569302,170.598997,0.986569302,9.401002989,0,0.999319323,0,0,0,12,2,0% -12/10/2018 11:00,139.2141704,81.62954703,0,0,0,0,0,0,0,0,0,0,0,0,0,2.429745638,1.424704363,0.845034414,-0.845034414,0.385644294,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930327,158.4858457,0.930327,21.51415429,0,0.996255456,0,0,0,12,3,0% -12/10/2018 12:00,127.4093599,91.53486583,0,0,0,0,0,0,0,0,0,0,0,0,0,2.223712828,1.597584789,1.216231905,-1.216231905,0.322165784,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823576175,145.4444016,0.823576175,34.55559835,0,0.989289162,0,0,0,12,4,0% -12/10/2018 13:00,115.6433945,100.038351,0,0,0,0,0,0,0,0,0,0,0,0,0,2.018357992,1.745998603,1.803329229,-1.803329229,0.221766229,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.67359036,132.344779,0.67359036,47.65522102,0,0.975770909,0,0,0,12,5,0% -12/10/2018 14:00,104.1729066,108.2260119,0,0,0,0,0,0,0,0,0,0,0,0,0,1.818160211,1.888900244,3.110751089,-3.110751089,0,#DIV/0!,0,0,0.001812785,1,0.311031997,0,0.922633883,0.961395846,0.724496596,1,0,0,0.000309741,0.312029739,0.99912206,0.723618656,0.961238037,0.922476074,0,0,0,0,0,0,-0.490587203,119.379184,0.490587203,60.62081596,0,0.94808132,0,0,0,12,6,0% -12/10/2018 15:00,93.24165002,116.7674345,0,0,0,0,0,0,0,0,0,0,0,0,0,1.627373793,2.037976191,12.09368956,-12.09368956,0,#DIV/0!,0,0,0.605987264,1,0.082500068,0,0.953148928,0.991910891,0.724496596,1,0,0,0.08048911,0.312029739,0.797231055,0.521727651,0.961238037,0.922476074,0,0,0,0,0,0,-0.287032787,106.6803964,0.287032787,73.31960358,0,0.875803872,0,0,0,12,7,0% -12/10/2018 16:00,83.02270675,126.1996381,59.93970071,295.9913918,23.98385621,23.71250523,0,23.71250523,23.26065445,0.451850783,37.36889889,22.11262274,15.25627615,0.723201756,14.53307439,1.449019587,2.202599199,-4.545599104,4.545599104,0.692503082,0.400133066,0.368503637,11.8523437,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,22.35902582,0.52395721,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.266979631,11.39292359,22.62600545,11.9168808,0,22.11262274,-0.074706979,94.28438621,0.074706979,85.71561379,0,0,22.62600545,11.9168808,30.4253656,12,8,34% -12/10/2018 17:00,74.23325971,137.0083337,213.3533857,602.1135643,49.74609944,126.1837438,76.32932486,49.85441894,48.246071,1.608347942,53.23002693,0,53.23002693,1.500028442,51.72999849,1.295614796,2.391246526,-1.383406045,1.383406045,0.766730056,0.233162925,1.320646596,42.47653423,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.37595857,1.0867655,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.956803963,40.83006037,47.33276253,41.91682587,76.32932486,0,0.126768984,82.71707612,-0.126768984,97.28292388,0.655581757,0,97.37287542,41.91682587,124.8065996,12,9,28% -12/10/2018 18:00,67.16533386,149.5684001,343.9819519,724.6940148,62.7475701,286.3616882,222.9131076,63.4485806,60.85549934,2.593081252,85.29447748,0,85.29447748,1.892070752,83.40240673,1.172256219,2.610461038,-0.430000017,0.430000017,0.603688023,0.182415297,1.75287467,56.37847487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.49662072,1.370798819,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.269951732,54.1931345,59.76657245,55.56393332,222.9131076,0,0.307596176,72.08557556,-0.307596176,107.9144244,0.887449214,0,257.5906347,55.56393332,293.9561177,12,10,14% -12/10/2018 19:00,62.48765768,163.9231693,428.6651002,777.3037992,69.59763418,424.2758674,353.5454001,70.73046732,67.49900873,3.231458594,106.0334419,0,106.0334419,2.098625459,103.9348165,1.090615368,2.860999024,0.131362059,-0.131362059,0.507689455,0.162358993,1.898871312,61.07422872,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.88261464,1.520447001,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.375725802,58.70687172,66.25834044,60.22731872,353.5454001,0,0.454835549,62.94564635,-0.454835549,117.0543537,0.940070158,0,398.6158206,60.22731872,438.0333962,12,11,10% -12/10/2018 20:00,60.77928597,179.4952495,458.934013,792.893219,71.86319684,515.8690327,442.713138,73.15589475,69.6962563,3.459638444,113.4408053,0,113.4408053,2.166940532,111.2738648,1.060798657,3.132783095,0.596630601,-0.596630601,0.428123848,0.15658721,1.790959126,57.60340187,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.99469259,1.569941039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.29754379,55.37058093,68.29223638,56.94052196,442.713138,0,0.558351525,56.0581288,-0.558351525,123.9418712,0.960450679,0,493.4963703,56.94052196,530.7628031,12,12,8% -12/10/2018 21:00,62.29176013,195.1074723,432.156241,779.1762805,69.86313535,547.1470478,476.1327675,71.01428034,67.75650405,3.257776288,106.8879153,0,106.8879153,2.106631298,104.781284,1.087196311,3.405267787,1.095044171,-1.095044171,0.342890107,0.161661753,1.463131328,47.05933299,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.13012894,1.526247204,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.060033667,45.23522086,66.19016261,46.76146807,476.1327675,0,0.611071948,52.3329478,-0.611071948,127.6670522,0.968176575,0,527.1707545,46.76146807,557.7752001,12,13,6% -12/10/2018 22:00,66.80113845,209.560103,350.6535649,729.4136365,63.32028534,508.578366,444.5240462,64.0543198,61.41094511,2.643374689,86.92935677,0,86.92935677,1.90934023,85.02001654,1.16589981,3.657513778,1.775846033,-1.775846033,0.226466132,0.180577903,0.967869675,31.13001579,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.03053632,1.383310497,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.701218285,29.92335526,59.7317546,31.30666576,444.5240462,0,0.609426564,52.45194866,-0.609426564,127.5480513,0.96795566,0,490.0113212,31.30666576,510.5009078,12,14,4% -12/10/2018 23:00,73.74088444,222.232359,222.4515238,613.0850542,50.79889674,390.3648428,339.4207867,50.94405612,49.26712257,1.676933551,55.46772157,0,55.46772157,1.531774165,53.93594741,1.287021227,3.87868637,3.033966223,-3.033966223,0.011314908,0.228359401,0.397584919,12.7876977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.35743218,1.109765168,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288048921,12.29202143,47.6454811,13.4017866,339.4207867,0,0.553627567,56.38376308,-0.553627567,123.6162369,0.959686578,0,373.3830544,13.4017866,382.1542557,12,15,2% -12/10/2018 0:00,82.44458603,233.1367427,68.88877938,324.4116925,26.23350375,171.3069857,145.3452061,25.96177953,25.44246682,0.519312718,17.49391906,0,17.49391906,0.791036929,16.70288213,1.438929477,4.069003768,7.215204732,-7.215204732,0,0.380809531,0.197759232,6.360616704,0.413048744,1,0.137718868,0,0.946841134,0.985603098,0.724496596,1,24.66882545,0.573103562,0.05908641,0.312029739,0.846145416,0.570642012,0.961238037,0.922476074,0.135354002,6.114066714,24.80417945,6.687170276,85.31055128,0,0.448027027,63.38282965,-0.448027027,116.6171703,0.93839959,0,104.8595658,6.687170276,109.236185,12,16,4% -12/10/2018 1:00,92.59179152,242.6353625,0,0,0,0,0,0,0,0,0,0,0,0,0,1.616031622,4.234785957,-21.9093058,21.9093058,0,#DIV/0!,0,0,1,0.694830332,0,0.04561105,0.961238037,1,0.603307398,0.878810802,0,0,0.115824807,0.174619783,0.724496596,0.448993192,0.980999399,0.942237436,0,0,0,0,0,0,0.296358878,72.76096048,-0.296358878,107.2390395,0.881285634,0,0,0,0,12,17,0% -12/10/2018 2:00,103.4812423,251.2096863,0,0,0,0,0,0,0,0,0,0,0,0,0,1.806088392,4.38443614,-4.170385717,4.170385717,0.75666835,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.113454361,83.485517,-0.113454361,96.514483,0.609294156,0,0,0,0,12,18,0% -12/10/2018 3:00,114.9267611,259.3914621,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005850379,4.527235066,-2.12284335,2.12284335,0.893181283,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.090039509,95.16588001,0.090039509,84.83411999,0,0.494688219,0,0,0,12,19,0% -12/10/2018 4:00,126.6834616,267.8346016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211043512,4.674595649,-1.277901317,1.277901317,0.748687685,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.300264782,107.4735072,0.300264782,72.52649279,0,0.883480305,0,0,0,12,20,0% -12/10/2018 5:00,138.499676,277.5797496,0,0,0,0,0,0,0,0,0,0,0,0,0,2.417275359,4.844680567,-0.784200453,0.784200453,0.664259865,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.502906473,120.1924777,0.502906473,59.80752225,0,0.950577935,0,0,0,12,21,0% -12/10/2018 6:00,149.976176,290.8574016,0,0,0,0,0,0,0,0,0,0,0,0,0,2.617578071,5.076419311,-0.437092554,0.437092554,0.604900919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684167339,133.1701582,0.684167339,46.82984179,0,0.976918464,0,0,0,12,22,0% -12/10/2018 7:00,160.0576741,313.7263143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793533406,5.475557134,-0.160610425,0.160610425,0.55761969,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831707209,146.2745111,0.831707209,33.7254889,0,0.98988269,0,0,0,12,23,0% -12/11/2018 8:00,165.140992,358.0759512,0,0,0,0,0,0,0,0,0,0,0,0,0,2.882254041,6.249604321,0.082320786,-0.082320786,0.516076006,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935482954,159.3063101,0.935482954,20.69368987,0,0.996551672,0,0,0,12,0,0% -12/11/2018 9:00,160.6628252,43.9546745,0,0,0,0,0,0,0,0,0,0,0,0,0,2.804095285,0.767153792,0.315286228,-0.315286228,0.476236569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988432004,171.2765906,0.988432004,8.723409383,0,0.999414831,0,0,0,12,1,0% -12/11/2018 10:00,150.7721766,67.96283378,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631470901,1.186175218,0.559164945,-0.559164945,0.434530852,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986952959,170.7345405,0.986952959,9.265459463,0,0.999339024,0,0,0,12,2,0% -12/11/2018 11:00,139.3487203,81.65459484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432093978,1.425141529,0.840954582,-0.840954582,0.386341986,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93115063,158.6148934,0.93115063,21.38510656,0,0.996302995,0,0,0,12,3,0% -12/11/2018 12:00,127.5435032,91.55793749,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22605407,1.597987466,1.210156564,-1.210156564,0.323204729,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82482884,145.5711422,0.82482884,34.4288578,0,0.989381363,0,0,0,12,4,0% -12/11/2018 13:00,115.7778257,100.0547038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020704259,1.746284014,1.792241077,-1.792241077,0.223662415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675231461,132.4721271,0.675231461,47.52787291,0,0.975951318,0,0,0,12,5,0% -12/11/2018 14:00,104.3077988,108.2334686,0,0,0,0,0,0,0,0,0,0,0,0,0,1.820514525,1.889030388,3.07987014,-3.07987014,0.003464876,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49254926,119.5082752,0.49254926,60.49172483,0,0.948487311,0,0,0,12,6,0% -12/11/2018 15:00,93.37653139,116.7636011,0,0,0,0,0,0,0,0,0,0,0,0,0,1.629727917,2.037909285,11.61035849,-11.61035849,0,#DIV/0!,0,0,0.592723525,1,0.085917946,0,0.952779029,0.991540992,0.724496596,1,0,0,0.079116924,0.312029739,0.800257469,0.524754065,0.961238037,0.922476074,0,0,0,0,0,0,-0.289226059,106.811627,0.289226059,73.18837299,0,0.877124845,0,0,0,12,7,0% -12/11/2018 16:00,83.15414405,126.1809426,58.00755397,290.0259768,23.43685264,23.16743051,0,23.16743051,22.73014506,0.437285444,37.10086634,22.32955571,14.77131063,0.70670758,14.06460305,1.4513136,2.202272903,-4.635991413,4.635991413,0.677045087,0.404031045,0.353120633,11.3575734,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.84908002,0.512007236,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.255834696,10.91733155,22.10491471,11.42933879,0,22.32955571,-0.076991571,94.41566191,0.076991571,85.58433809,0,0,22.10491471,11.42933879,29.58518837,12,8,34% -12/11/2018 17:00,74.36217517,136.9697153,211.0718806,599.8121707,49.38914452,124.1363943,74.6453657,49.49102858,47.89987959,1.591148993,52.6660861,0,52.6660861,1.489264934,51.17682117,1.297864796,2.390572508,-1.397621189,1.397621189,0.769160989,0.233992062,1.309794845,42.1275046,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,46.04318622,1.078967375,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.948941906,40.49455982,46.99212813,41.5735272,74.6453657,0,0.124447901,82.85112611,-0.124447901,97.14887389,0.648225446,0,95.37915357,41.5735272,122.5881957,12,9,29% -12/11/2018 18:00,67.28578823,149.5040511,341.8847446,723.6561012,62.45589814,284.1369704,220.9870764,63.14989399,60.57262237,2.577271618,84.77719031,0,84.77719031,1.883275767,82.89391454,1.174358544,2.609337937,-0.43517862,0.43517862,0.604573617,0.182681149,1.744324654,56.10347695,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.22470862,1.364426882,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.263757274,53.92879605,59.48846589,55.29322293,220.9870764,0,0.305375821,72.21922435,-0.305375821,107.7807756,0.886267325,0,255.342091,55.29322293,291.5303996,12,10,14% -12/11/2018 19:00,62.59293422,163.829357,426.9041105,776.7840213,69.34322644,422.2194543,351.7489985,70.47045583,67.25227232,3.21818351,105.5987982,0,105.5987982,2.090954127,103.5078441,1.092452791,2.859361692,0.128802721,-0.128802721,0.508127127,0.162432792,1.892367245,60.86503556,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.64544222,1.514889147,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.371013627,58.50578729,66.01645584,60.02067644,351.7489985,0,0.452827284,63.07477524,-0.452827284,116.9252248,0.939582625,0,396.5137032,60.02067644,435.7960355,12,11,10% -12/11/2018 20:00,60.86231207,179.3746344,457.5913201,792.6514803,71.64136896,514.1602605,441.2296265,72.93063402,69.48111736,3.449516658,113.108565,0,113.108565,2.160251603,110.9483134,1.062247736,3.130677965,0.595103969,-0.595103969,0.428384917,0.156561905,1.786429008,57.4576977,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.78789285,1.565094932,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294261735,55.23052454,68.08215458,56.79561947,441.2296265,0,0.556650227,56.17554629,-0.556650227,123.8244537,0.960176988,0,491.7406884,56.79561947,528.9122854,12,12,8% -12/11/2018 21:00,62.34793209,194.9701219,431.2731931,779.1352398,69.67560357,545.9042975,475.0785509,70.82574654,67.57462704,3.2511195,106.6681553,0,106.6681553,2.100976523,104.5671788,1.088176697,3.40287057,1.093910902,-1.093910902,0.343083908,0.161557928,1.460448105,46.97303131,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.95530184,1.522150339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.05808968,45.1522644,66.01339152,46.67441474,475.0785509,0,0.609751076,52.42849368,-0.609751076,127.5715063,0.967999325,0,525.889108,46.67441474,556.4365789,12,13,6% -12/11/2018 22:00,66.83022756,209.4179837,350.2334436,729.5852542,63.1730575,507.8853569,443.9769926,63.90836437,61.26815673,2.640207637,86.82305403,0,86.82305403,1.904900767,84.91815327,1.166407511,3.655033328,1.774574202,-1.774574202,0.226683628,0.180374144,0.966764584,31.09447225,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.8932827,1.380094121,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70041765,29.88918946,59.59370035,31.26928358,443.9769926,0,0.608533396,52.51646665,-0.608533396,127.4835333,0.967835241,0,489.2902798,31.26928358,509.7554006,12,14,4% -12/11/2018 23:00,73.74616387,222.0931971,222.4536053,613.6092389,50.70849561,390.2926591,339.4362624,50.85639662,49.17944738,1.676949241,55.46550032,0,55.46550032,1.529048237,53.93645208,1.28711337,3.876257535,3.031116449,-3.031116449,0.011802248,0.227950882,0.397542279,12.78632624,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.27315545,1.107790243,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288018028,12.29070313,47.56117348,13.39849337,339.4362624,0,0.553179843,56.41456182,-0.553179843,123.5854382,0.959613482,0,373.2887871,13.39849337,382.057833,12,15,2% -12/11/2018 0:00,82.43083161,233.0027496,69.16854932,325.7641043,26.25792907,171.9329624,145.945385,25.98757737,25.46615562,0.521421742,17.56248903,0,17.56248903,0.791773443,16.77071559,1.438689417,4.066665146,7.196815073,-7.196815073,0,0.379622376,0.197943361,6.366538906,0.411963314,1,0.138066325,0,0.946799223,0.985561187,0.724496596,1,24.69179807,0.573637164,0.058956621,0.312029739,0.846453163,0.570949759,0.961238037,0.922476074,0.13548175,6.11975936,24.82727983,6.693396524,85.82124051,0,0.448009413,63.38395852,-0.448009413,116.6160415,0.938395202,0,105.3615201,6.693396524,109.7422143,12,16,4% -12/11/2018 1:00,92.56311518,242.5049038,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615531126,4.232509024,-22.14818431,22.14818431,0,#DIV/0!,0,0,1,0.698587849,0,0.045119785,0.961238037,1,0.604525446,0.88002885,0,0,0.115824807,0.175996751,0.724496596,0.448993192,0.980821689,0.942059726,0,0,0,0,0,0,0.296735747,72.73835042,-0.296735747,107.2616496,0.88149991,0,0,0,0,12,17,0% -12/11/2018 2:00,103.4417811,251.0787683,0,0,0,0,0,0,0,0,0,0,0,0,0,1.805399665,4.382151189,-4.183282797,4.183282797,0.75446282,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114153775,83.44518152,-0.114153775,96.55481848,0.611994335,0,0,0,0,12,18,0% -12/11/2018 3:00,114.8800648,259.253988,0,0,0,0,0,0,0,0,0,0,0,0,0,2.005035375,4.52483569,-2.128216184,2.128216184,0.894100092,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08910846,95.11231954,0.08910846,84.88768046,0,0.488886051,0,0,0,12,19,0% -12/11/2018 4:00,126.6332044,267.6811,0,0,0,0,0,0,0,0,0,0,0,0,0,2.210166358,4.671916541,-1.281342722,1.281342722,0.7492762,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.299208782,107.4100869,0.299208782,72.58991306,0,0.882892605,0,0,0,12,20,0% -12/11/2018 5:00,138.4507805,277.3934142,0,0,0,0,0,0,0,0,0,0,0,0,0,2.416421973,4.841428401,-0.786880253,0.786880253,0.664718138,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501840655,120.1218516,0.501840655,59.87814836,0,0.950366781,0,0,0,12,21,0% -12/11/2018 6:00,149.9378212,290.6036404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616908654,5.071990344,-0.439440889,0.439440889,0.605302508,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683207373,133.0947898,0.683207373,46.90521024,0,0.976815778,0,0,0,12,22,0% -12/11/2018 7:00,160.0529906,313.3379354,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793451664,5.468778644,-0.162853586,0.162853586,0.558003293,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830961358,146.1976197,0.830961358,33.80238025,0,0.98982873,0,0,0,12,23,0% -12/12/2018 8:00,165.2159641,357.6492597,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88356255,6.24215715,0.080015696,-0.080015696,0.5164702,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935044633,159.2353569,0.935044633,20.76464307,0,0.996526617,0,0,0,12,0,0% -12/12/2018 9:00,160.7891164,43.83551245,0,0,0,0,0,0,0,0,0,0,0,0,0,2.806299483,0.765074022,0.312744835,-0.312744835,0.476671173,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988373354,171.254462,0.988373354,8.745538022,0,0.999411829,0,0,0,12,1,0% -12/12/2018 10:00,150.9042771,67.95696168,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63377649,1.186072731,0.556141342,-0.556141342,0.435047919,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987319889,170.8660395,0.987319889,9.133960523,0,0.999357852,0,0,0,12,2,0% -12/12/2018 11:00,139.4803796,81.66892367,0,0,0,0,0,0,0,0,0,0,0,0,0,2.434391865,1.425391615,0.837009272,-0.837009272,0.387016674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931959649,158.7423784,0.931959649,21.25762162,0,0.996349609,0,0,0,12,3,0% -12/12/2018 12:00,127.6748703,91.57212191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228346859,1.59823503,1.204313102,-1.204313102,0.32420402,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826065912,145.6967077,0.826065912,34.30329233,0,0.989472142,0,0,0,12,4,0% -12/12/2018 13:00,115.9093047,100.0632795,0,0,0,0,0,0,0,0,0,0,0,0,0,2.022999,1.746433688,1.781634184,-1.781634184,0.2254763,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676852959,132.598209,0.676852959,47.40179104,0,0.976128712,0,0,0,12,5,0% -12/12/2018 14:00,104.4393626,108.2338514,0,0,0,0,0,0,0,0,0,0,0,0,0,1.822810747,1.889037069,3.05058483,-3.05058483,0.008472959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494484951,119.6357932,0.494484951,60.36420684,0,0.948884688,0,0,0,12,6,0% -12/12/2018 15:00,93.50754315,116.7531841,0,0,0,0,0,0,0,0,0,0,0,0,0,1.632014503,2.037727474,11.17783054,-11.17783054,0,#DIV/0!,0,0,0.580073287,1,0.089225263,0,0.952418496,0.991180459,0.724496596,1,0,0,0.077795402,0.312029739,0.803186361,0.527682957,0.961238037,0.922476074,0,0,0,0,0,0,-0.291383921,106.9408275,0.291383921,73.05917245,0,0.878405082,0,0,0,12,7,0% -12/12/2018 16:00,83.28103389,126.1561026,56.15925084,284.2232986,22.90526956,22.63794332,0,22.63794332,22.21459117,0.423352155,36.82621007,22.51907113,14.30713894,0.690678389,13.61646056,1.453528246,2.201839361,-4.7274316,4.7274316,0.661407894,0.407862805,0.338473019,10.8864558,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,21.35351,0.500394141,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.24522255,10.4644754,21.59873255,10.96486954,0,22.51907113,-0.079230208,94.54431946,0.079230208,85.45568054,0,0,21.59873255,10.96486954,28.77502037,12,8,33% -12/12/2018 17:00,74.48574329,136.9255232,208.8895619,597.606504,49.04288299,122.1569158,73.01815894,49.13875687,47.56405911,1.574697753,52.12651658,0,52.12651658,1.478823871,50.64769271,1.300021466,2.389801209,-1.411879984,1.411879984,0.771599387,0.234779003,1.29947689,41.79564371,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.72038281,1.07140286,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.941466583,40.17556251,46.66184939,41.24696537,73.01815894,0,0.122184344,82.98181588,-0.122184344,97.01818412,0.640782271,0,93.45059107,41.24696537,120.445905,12,9,29% -12/12/2018 18:00,67.40004664,149.4350506,339.8998287,722.6906114,62.17375015,281.9990055,219.1377148,62.86129067,60.29898219,2.562308483,84.28741665,0,84.28741665,1.874767964,82.41264869,1.17635273,2.608133651,-0.440471112,0.440471112,0.605478686,0.182917863,1.736332154,55.84641066,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.96167526,1.358263008,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.257966735,53.68169415,59.219642,55.03995716,219.1377148,0,0.303224798,72.34860465,-0.303224798,107.6513953,0.885105835,0,253.179712,55.03995716,289.2022632,12,10,14% -12/12/2018 19:00,62.69127051,163.7323392,425.2654783,776.327473,69.09812722,420.2660078,350.0456133,70.22039455,67.01456374,3.205830808,105.1941022,0,105.1941022,2.083563481,103.1105388,1.094169083,2.85766841,0.126073178,-0.126073178,0.508593906,0.162482333,1.886434962,60.67423295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.41694769,1.509534649,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.366715708,58.32238057,65.7836634,59.83191522,350.0456133,0,0.450899428,63.19859505,-0.450899428,116.801405,0.939110527,0,394.5151837,59.83191522,433.6739755,12,11,10% -12/12/2018 20:00,60.93793786,179.2527125,456.3779253,792.4725477,71.42906476,512.5687096,439.8531251,72.71558449,69.27521491,3.440369576,112.8079616,0,112.8079616,2.153849848,110.6541117,1.063567655,3.128550027,0.593341672,-0.593341672,0.428686288,0.156512971,1.78247025,57.33037044,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.58997159,1.560456883,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291393628,55.10813274,67.88136522,56.66858962,439.8531251,0,0.555038943,56.2866029,-0.555038943,123.7133971,0.959916231,0,490.1035191,56.66858962,527.1919777,12,12,8% -12/12/2018 21:00,62.39663146,194.8334333,430.522847,779.1651038,69.49814844,544.7915258,474.1435398,70.64798592,67.40252285,3.245463074,106.4808743,0,106.4808743,2.095625596,104.3852487,1.089026661,3.400484905,1.092434292,-1.092434292,0.343336423,0.161427318,1.458315933,46.90445333,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.78986874,1.518273611,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.056544929,45.08634464,65.84641367,46.60461825,474.1435398,0,0.608527689,52.51687875,-0.608527689,127.4831213,0.96783447,0,524.7388753,46.60461825,555.2406659,12,13,6% -12/12/2018 22:00,66.85210713,209.2781627,349.9452223,729.8496561,63.03705471,507.3349576,443.5606677,63.77428983,61.13625493,2.638034903,86.74907045,0,86.74907045,1.900799782,84.84827067,1.166789381,3.652592992,1.772730712,-1.772730712,0.226998884,0.180134063,0.966161066,31.07506104,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.76649367,1.377122971,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.699980403,29.87053067,59.46647407,31.24765364,443.5606677,0,0.607742518,52.5735493,-0.607742518,127.4264507,0.967728317,0,488.7126924,31.24765364,509.1636567,12,14,4% -12/12/2018 23:00,73.74468966,221.957512,222.5806234,614.2814463,50.63219375,390.3803317,339.5969786,50.78335306,49.1054463,1.677906758,55.49399655,0,55.49399655,1.526747455,53.96724909,1.28708764,3.873889383,3.027016378,-3.027016378,0.012503402,0.227477994,0.397894022,12.7976395,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.2020228,1.106123334,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288272864,12.30157787,47.49029566,13.4077012,339.5969786,0,0.552836132,56.43819812,-0.552836132,123.5618019,0.959557286,0,373.3530509,13.4077012,382.1281232,12,15,2% -12/12/2018 0:00,82.41087773,232.8730631,69.54653653,327.4150702,26.30541645,172.7490916,146.7126093,26.03648225,25.51221108,0.524271169,17.65556833,0,17.65556833,0.793205363,16.86236296,1.438341156,4.064401691,7.172685886,-7.172685886,0,0.378241934,0.198301341,6.378052771,0.41053301,1,0.138524876,0,0.94674387,0.985505833,0.724496596,1,24.73645535,0.574674585,0.058785422,0.312029739,0.846859304,0.5713559,0.961238037,0.922476074,0.135729165,6.130826925,24.87218452,6.70550151,86.48224017,0,0.448093636,63.37856074,-0.448093636,116.6214393,0.938416179,0,106.0285179,6.70550151,110.4171345,12,16,4% -12/12/2018 1:00,92.52861578,242.3794101,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614928998,4.230318744,-22.44424249,22.44424249,0,#DIV/0!,0,0,1,0.703118315,0,0.044525409,0.961238037,1,0.606001699,0.881505103,0,0,0.115824807,0.177665722,0.724496596,0.448993192,0.980605725,0.941843762,0,0,0,0,0,0,0.29721164,72.70979554,-0.29721164,107.2902045,0.881769711,0,0,0,0,12,17,0% -12/12/2018 2:00,103.3968733,250.9534652,0,0,0,0,0,0,0,0,0,0,0,0,0,1.804615875,4.379964237,-4.197995636,4.197995636,0.751946776,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.114945293,83.39953037,-0.114945293,96.60046963,0.615010461,0,0,0,0,12,18,0% -12/12/2018 3:00,114.8281805,259.1229189,0,0,0,0,0,0,0,0,0,0,0,0,0,2.004129824,4.522548103,-2.134064963,2.134064963,0.895100292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.088094463,95.05399241,0.088094463,84.94600759,0,0.482427441,0,0,0,12,19,0% -12/12/2018 4:00,126.577853,267.5350981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209200294,4.669368326,-1.284970061,1.284970061,0.749896512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.298080595,107.3423557,0.298080595,72.65764435,0,0.882260131,0,0,0,12,20,0% -12/12/2018 5:00,138.3966234,277.2161871,0,0,0,0,0,0,0,0,0,0,0,0,0,2.415476752,4.838335205,-0.789639847,0.789639847,0.665190056,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500714272,120.0472671,0.500714272,59.95273289,0,0.950142651,0,0,0,12,21,0% -12/12/2018 6:00,149.893553,290.3611902,0,0,0,0,0,0,0,0,0,0,0,0,0,2.616136028,5.067758789,-0.441817256,0.441817256,0.60570889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.682198523,133.0156832,0.682198523,46.98431682,0,0.976707552,0,0,0,12,22,0% -12/12/2018 7:00,160.0408521,312.9609726,0,0,0,0,0,0,0,0,0,0,0,0,0,2.793239807,5.462199402,-0.165092916,0.165092916,0.558386241,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830177556,146.1169816,0.830177556,33.88301841,0,0.98977192,0,0,0,12,23,0% -12/13/2018 8:00,165.2825502,357.2149743,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884724697,6.23457744,0.077739397,-0.077739397,0.51685947,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934577789,159.1600405,0.934577789,20.83995947,0,0.996499906,0,0,0,12,0,0% -12/13/2018 9:00,160.9099414,43.69825786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.808408276,0.762678477,0.310257407,-0.310257407,0.477096548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988293457,171.2244055,0.988293457,8.775594485,0,0.99940774,0,0,0,12,1,0% -12/13/2018 10:00,151.0327275,67.93717191,0,0,0,0,0,0,0,0,0,0,0,0,0,2.636018373,1.185727334,0.553203845,-0.553203845,0.43555026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987670191,170.9933549,0.987670191,9.006645053,0,0.999375813,0,0,0,12,2,0% -12/13/2018 11:00,139.6090356,81.67247875,0,0,0,0,0,0,0,0,0,0,0,0,0,2.436637337,1.425453662,0.833200471,-0.833200471,0.387668017,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932753684,158.8682152,0.932753684,21.13178475,0,0.99639528,0,0,0,12,3,0% -12/13/2018 12:00,127.8033477,91.57739618,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230589213,1.598327084,1.198703131,-1.198703131,0.325163381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827286557,145.8210025,0.827286557,34.17899755,0,0.98956145,0,0,0,12,4,0% -12/13/2018 13:00,116.0377168,100.0640775,0,0,0,0,0,0,0,0,0,0,0,0,0,2.025240214,1.746447616,1.771506925,-1.771506925,0.227208163,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.6784536,132.7229198,0.6784536,47.27708024,0,0.976302993,0,0,0,12,5,0% -12/13/2018 14:00,104.5674834,108.2271784,0,0,0,0,0,0,0,0,0,0,0,0,0,1.825046877,1.888920604,3.022856437,-3.022856437,0.013214794,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.496392672,119.7616267,0.496392672,60.23837331,0,0.949273291,0,0,0,12,6,0% -12/13/2018 15:00,93.63457328,116.7362197,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634231597,2.03743139,10.78955914,-10.78955914,0,#DIV/0!,0,0,0.568028883,1,0.092418173,0,0.952068012,0.990829976,0.724496596,1,0,0,0.07652539,0.312029739,0.806014239,0.530510835,0.961238037,0.922476074,0,0,0,0,0,0,-0.293504507,107.0678827,0.293504507,72.93211726,0,0.879644865,0,0,0,12,7,0% -12/13/2018 16:00,83.40327595,126.1251727,54.39512134,278.5957837,22.38993931,22.12485343,0,22.12485343,21.71480003,0.410053401,36.54740484,22.68353863,13.86386621,0.67513928,13.18872693,1.455661772,2.201299534,-4.819711534,4.819711534,0.645627095,0.411616681,0.324554353,10.43878365,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.87309175,0.48913611,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.235138524,10.03415591,21.10823028,10.52329202,0,22.68353863,-0.081420969,94.67024774,0.081420969,85.32975226,0,0,21.10823028,10.52329202,27.99551444,12,8,33% -12/13/2018 17:00,74.6038698,136.8758309,206.8081219,595.5020806,48.70767842,120.2465087,71.44853949,48.79796918,47.2389622,1.559006979,51.61173972,0,51.61173972,1.468716216,50.14302351,1.302083163,2.388933916,-1.426155673,1.426155673,0.774040673,0.23552111,1.289702344,41.48126071,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.40788729,1.064079899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.934384958,39.87336561,46.34227225,40.93744551,71.44853949,0,0.119980336,83.10903231,-0.119980336,96.89096769,0.633265043,0,91.58813469,40.93744551,118.380874,12,9,29% -12/13/2018 18:00,67.50802976,149.3614883,338.028868,721.8002634,61.90132558,279.9495473,217.3665707,62.58297661,60.03477222,2.548204391,83.82556597,0,83.82556597,1.866553358,81.95901262,1.178237391,2.606849747,-0.445869509,0.445869509,0.606401866,0.183124376,1.728903878,55.60749179,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.70770659,1.352311554,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.252584974,53.45203624,58.96029157,54.8043478,217.3665707,0,0.301145042,72.47361002,-0.301145042,107.52639,0.883967049,0,251.1051776,54.8043478,286.9735272,12,10,14% -12/13/2018 19:00,62.7826066,163.6322148,423.7505686,775.9357429,68.86246111,418.4172367,348.436822,69.98041461,66.78600383,3.194410779,104.8196886,0,104.8196886,2.076457278,102.7432314,1.095763198,2.855920911,0.123176998,-0.123176998,0.509089182,0.162507065,1.881078806,60.50196058,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.19724721,1.504386229,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.362835192,58.15678581,65.5600824,59.66117204,348.436822,0,0.449053707,63.31701301,-0.449053707,116.682987,0.938654744,0,392.6219584,59.66117204,431.6690023,12,11,10% -12/13/2018 20:00,61.00612454,179.1295857,455.294779,792.3574253,71.22635715,511.0957824,438.5849583,72.51082405,69.07861968,3.432204362,112.5392279,0,112.5392279,2.147737465,110.3914904,1.064757737,3.126401058,0.591345972,-0.591345972,0.429027573,0.156440092,1.779085024,57.22148994,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.40099677,1.556028482,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.288941044,55.00347266,67.68993782,56.55950114,438.5849583,0,0.553519087,56.39122639,-0.553519087,123.6087736,0.959668878,0,488.5862728,56.55950114,525.6033351,12,12,8% -12/13/2018 21:00,62.43784057,194.6975093,429.9056843,779.2664626,69.33079483,543.8096635,473.3286373,70.4810262,67.24021556,3.240810641,106.3261897,0,106.3261897,2.090579267,104.2356104,1.089745896,3.398112583,1.09061667,-1.09061667,0.343647255,0.161269779,1.45673504,46.85360638,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.6338528,1.514617563,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055399578,45.03746862,65.68925238,46.55208618,473.3286373,0,0.607402808,52.59805496,-0.607402808,127.401945,0.967682303,0,523.7209984,46.55208618,554.1884077,12,13,6% -12/13/2018 22:00,66.86678039,209.140744,349.7889111,730.2069588,62.91224364,506.9274874,443.2754235,63.65206394,61.01520738,2.636856563,86.70740747,0,86.70740747,1.897036267,84.81037121,1.167045478,3.650194583,1.770319881,-1.770319881,0.22741116,0.179857742,0.966057872,31.07174197,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.65013816,1.374396318,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.69990564,29.86734025,59.3500438,31.24173657,443.2754235,0,0.607054504,52.62317218,-0.607054504,127.3768278,0.967635073,0,488.2788905,31.24173657,508.7259822,12,14,4% -12/13/2018 23:00,73.73648519,221.8254085,222.8321967,615.1008158,50.56985432,390.6273735,339.9025837,50.72478985,49.04498663,1.679803224,55.55311364,0,55.55311364,1.524867691,54.02824595,1.286944445,3.871583743,3.021680575,-3.021680575,0.013415878,0.226941416,0.398638598,12.82158762,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.14390666,1.104761451,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.288812307,12.32459772,47.43271897,13.42935917,339.9025837,0,0.552596542,56.45467041,-0.552596542,123.5453296,0.959518073,0,373.575391,13.42935917,382.364638,12,15,2% -12/13/2018 0:00,82.38476523,232.7477876,70.02253182,329.3615064,26.37556255,173.754071,147.6459696,26.10810144,25.58024202,0.527859422,17.77309406,0,17.77309406,0.795320526,16.97777353,1.437885407,4.062215221,7.142967271,-7.142967271,0,0.376672506,0.198830132,6.395060506,0.408761791,1,0.139093825,0,0.946675123,0.985437086,0.724496596,1,24.80241534,0.576207014,0.058573146,0.312029739,0.847363219,0.571859815,0.961238037,0.922476074,0.13609427,6.147175406,24.93850961,6.72338242,87.29393854,0,0.448279373,63.36665622,-0.448279373,116.6333438,0.938462412,0,106.8605897,6.72338242,111.260909,12,16,4% -12/13/2018 1:00,92.48835289,242.258985,0,0,0,0,0,0,0,0,0,0,0,0,0,1.614226278,4.228216931,-22.80140649,22.80140649,0,#DIV/0!,0,0,1,0.70840583,0,0.043828857,0.961238037,1,0.607735282,0.883238686,0,0,0.115824807,0.179625771,0.724496596,0.448993192,0.980351304,0.941589341,0,0,0,0,0,0,0.297785786,72.67533929,-0.297785786,107.3246607,0.882094068,0,0,0,0,12,17,0% -12/13/2018 2:00,103.3465935,250.8338822,0,0,0,0,0,0,0,0,0,0,0,0,0,1.803738328,4.377877119,-4.214538017,4.214538017,0.749117862,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.115827798,83.34862657,-0.115827798,96.65137343,0.618324694,0,0,0,0,12,18,0% -12/13/2018 3:00,114.7711969,258.9983655,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003135273,4.520374236,-2.140388251,2.140388251,0.896181638,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.086998891,94.99097879,0.086998891,85.00902121,0,0,0,0,0,12,19,0% -12/13/2018 4:00,126.5175092,267.396721,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208147098,4.666953191,-1.288781052,1.288781052,0.75054823,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.296881738,107.270409,0.296881738,72.72959102,0,0.88158277,0,0,0,12,20,0% -12/13/2018 5:00,138.3373195,277.0482304,0,0,0,0,0,0,0,0,0,0,0,0,0,2.414441704,4.835403808,-0.792477077,0.792477077,0.665675251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.499528863,119.9688347,0.499528863,60.03116529,0,0.949905684,0,0,0,12,21,0% -12/13/2018 6:00,149.8434982,290.1303243,0,0,0,0,0,0,0,0,0,0,0,0,0,2.615262406,5.063729419,-0.44421967,0.44421967,0.606119727,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681142228,132.9329654,0.681142228,47.06703465,0,0.976593892,0,0,0,12,22,0% -12/13/2018 7:00,160.0213703,312.5961175,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792899785,5.45583148,-0.167326536,0.167326536,0.558768212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829357025,146.0327455,0.829357025,33.9672545,0,0.989712333,0,0,0,12,23,0% -12/14/2018 8:00,165.3406863,356.774143,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885739364,6.226883481,0.075493722,-0.075493722,0.517243503,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934083331,159.0805517,0.934083331,20.91944825,0,0.996471585,0,0,0,12,0,0% -12/14/2018 9:00,161.0251644,43.54289404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.810419297,0.759966867,0.307825791,-0.307825791,0.477512379,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988192828,171.1866946,0.988192828,8.813305365,0,0.999402588,0,0,0,12,1,0% -12/14/2018 10:00,151.1574104,67.90337625,0,0,0,0,0,0,0,0,0,0,0,0,0,2.638194499,1.185137489,0.550354353,-0.550354353,0.436037552,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988003936,171.1163358,0.988003936,8.883664161,0,0.999392914,0,0,0,12,2,0% -12/14/2018 11:00,139.7345752,81.66521336,0,0,0,0,0,0,0,0,0,0,0,0,0,2.438828415,1.425326857,0.829530086,-0.829530086,0.38829569,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933532342,158.9923136,0.933532342,21.00768644,0,0.996439992,0,0,0,12,3,0% -12/14/2018 12:00,127.928822,91.57374322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.232779153,1.598263328,1.193328157,-1.193328157,0.326082556,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82848993,145.9439283,0.82848993,34.05607169,0,0.989649236,0,0,0,12,4,0% -12/14/2018 13:00,116.1629482,100.057102,0,0,0,0,0,0,0,0,0,0,0,0,0,2.027425915,1.746325869,1.761857628,-1.761857628,0.22885829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680032126,132.8461536,0.680032126,47.15384644,0,0.976474062,0,0,0,12,5,0% -12/14/2018 14:00,104.6920485,108.2134716,0,0,0,0,0,0,0,0,0,0,0,0,0,1.827220947,1.888681374,2.996648244,-2.996648244,0.017696659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498270826,119.8856645,0.498270826,60.11433547,0,0.949652965,0,0,0,12,6,0% -12/14/2018 15:00,93.75751238,116.7127471,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63637729,2.037021717,10.44012072,-10.44012072,0,#DIV/0!,0,0,0.556582727,1,0.095493006,0,0.951728244,0.990490207,0.724496596,1,0,0,0.075307668,0.312029739,0.808737779,0.533234375,0.961238037,0.922476074,0,0,0,0,0,0,-0.295585976,107.1926784,0.295585976,72.8073216,0,0.880844478,0,0,0,12,7,0% -12/14/2018 16:00,83.52077344,126.0882102,52.71536002,273.1556023,21.89167005,21.62894608,0,21.62894608,21.23155543,0.397390651,36.26698562,22.82542165,13.44156398,0.660114624,12.78144935,1.45771249,2.200654416,-4.912600035,4.912600035,0.629742226,0.41528067,0.311356816,10.01430548,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,20.40857866,0.478250798,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.225576953,9.626131343,20.63415561,10.10438214,0,22.82542165,-0.083561975,94.79333791,0.083561975,85.20666209,0,0,20.63415561,10.10438214,27.24727164,12,8,32% -12/14/2018 17:00,74.71646414,136.8207134,204.8291755,593.5043374,48.38388326,118.406292,69.93727251,48.46901951,46.92493066,1.544088845,51.12215763,0,51.12215763,1.458952598,49.66320503,1.304048305,2.387971935,-1.440420479,1.440420479,0.776480099,0.236215779,1.280480494,41.18465432,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.10602823,1.057006191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.927703759,39.58825626,46.03373199,40.64526245,69.93727251,0,0.117837846,83.23266512,-0.117837846,96.76733488,0.625688102,0,89.79265125,40.64526245,116.3941626,12,9,30% -12/14/2018 18:00,67.60966218,149.283454,336.2734429,720.9876759,61.63881285,277.990266,215.6751195,62.31514648,59.78017522,2.534971255,83.3920271,0,83.3920271,1.85863763,81.53338947,1.180011211,2.605487791,-0.451365442,0.451365442,0.607341726,0.183299675,1.722046179,55.38692461,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.46297827,1.346576636,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.247616595,53.24001868,58.71059487,54.58659531,215.6751195,0,0.299138427,72.59413757,-0.299138427,107.4058624,0.882853303,0,249.1200865,54.58659531,284.8459214,12,10,14% -12/14/2018 19:00,62.86688643,163.5290824,422.3606575,775.6103183,68.63634202,416.6747552,346.9241191,69.75063611,66.56670307,3.183933042,104.4758703,0,104.4758703,2.069638953,102.4062313,1.097234159,2.854120911,0.12011811,-0.12011811,0.509612283,0.162506476,1.876302767,60.34834673,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.98644697,1.499446376,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359374967,58.00912634,65.34582194,59.50857271,346.9241191,0,0.447291779,63.42994038,-0.447291779,116.5700596,0.938216144,0,390.8356311,59.50857271,429.7828017,12,11,10% -12/14/2018 20:00,61.06683699,179.0053547,454.3427423,792.3070073,71.03330829,509.7427768,437.4263573,72.31641946,68.89139196,3.425027507,112.3025744,0,112.3025744,2.14191633,110.1606581,1.065817369,3.124232818,0.589119582,-0.589119582,0.429408308,0.156343002,1.776275181,57.13111574,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.22102636,1.55181109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.286905322,54.91660154,67.50793168,56.46841263,437.4263573,0,0.552091996,56.48934864,-0.552091996,123.5106514,0.959435383,0,487.1902565,56.46841263,524.1477032,12,12,8% -12/14/2018 21:00,62.47154526,194.5624512,429.422102,779.4397753,69.17355602,542.959528,472.6346447,70.32488328,67.08771808,3.237165194,106.2041982,0,106.2041982,2.085837937,104.1183603,1.090334154,3.395755374,1.088461044,-1.088461044,0.344015889,0.161085225,1.455705397,46.82048952,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48726643,1.511182485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054653605,45.00563543,65.54192003,46.51681792,472.6346447,0,0.606377375,52.67197802,-0.606377375,127.328022,0.967543098,0,522.8363082,46.51681792,553.2806352,12,13,6% -12/14/2018 22:00,66.87425386,209.0058301,349.7644462,730.6570959,62.79857709,506.663142,443.1215016,63.54164042,60.90496829,2.636672136,86.69804821,0,86.69804821,1.893608801,84.80443941,1.167175915,3.64783989,1.767347289,-1.767347289,0.227919503,0.179545342,0.966453609,31.08447023,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.54417215,1.37191313,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70019235,29.87957515,59.2443645,31.25148828,443.1215016,0,0.606469853,52.66531427,-0.606469853,127.3346857,0.967555671,0,487.9890864,31.25148828,508.4425604,12,14,4% -12/14/2018 23:00,73.72157694,221.6969893,223.2078935,616.0661695,50.52131965,391.0331502,340.3525994,50.68055085,48.99791546,1.682635384,55.64274217,0,55.64274217,1.523404191,54.11933798,1.286684247,3.869342406,3.015127083,-3.015127083,0.014536591,0.226341994,0.399774554,12.85812389,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.09866007,1.103701151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.289635304,12.35971776,47.38829537,13.46341891,340.3525994,0,0.552461109,56.46398027,-0.552461109,123.5360197,0.959495892,0,373.9552162,13.46341891,382.7667547,12,15,2% -12/14/2018 0:00,82.35253741,232.6270247,70.59637152,331.5997398,26.46792494,174.9464525,148.7444479,26.20200462,25.66981935,0.532185269,17.91501321,0,17.91501321,0.798105593,17.11690761,1.437322925,4.060107511,7.107835986,-7.107835986,0,0.374919056,0.199526398,6.417454837,0.406654202,1,0.139772414,0,0.946593032,0.985354995,0.724496596,1,24.88925867,0.578224785,0.058320163,0.312029739,0.847964233,0.572460829,0.961238037,0.922476074,0.136574911,6.168701689,25.02583358,6.746926474,88.25689316,0,0.448566238,63.34826757,-0.448566238,116.6517324,0.938533742,0,107.8579058,6.746926474,112.2736342,12,16,4% -12/14/2018 1:00,92.44238845,242.1437288,0,0,0,0,0,0,0,0,0,0,0,0,0,1.613424047,4.226205331,-23.22465233,23.22465233,0,#DIV/0!,0,0,1,0.714432834,0,0.043031116,0.961238037,1,0.609725422,0.885228826,0,0,0.115824807,0.1818761,0.724496596,0.448993192,0.98005815,0.941296186,0,0,0,0,0,0,0.298457361,72.63502782,-0.298457361,107.3649722,0.882471882,0,0,0,0,12,17,0% -12/14/2018 2:00,103.2910186,250.7201195,0,0,0,0,0,0,0,0,0,0,0,0,0,1.802768363,4.375891586,-4.232927247,4.232927247,0.745973119,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.11680013,83.29253532,-0.11680013,96.70746468,0.621918283,0,0,0,0,12,18,0% -12/14/2018 3:00,114.7092041,258.8804322,0,0,0,0,0,0,0,0,0,0,0,0,0,2.002053295,4.51831591,-2.147184908,2.147184908,0.897343935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.085823143,94.92336044,0.085823143,85.07663956,0,0,0,0,0,12,19,0% -12/14/2018 4:00,126.4522759,267.2660852,0,0,0,0,0,0,0,0,0,0,0,0,0,2.207008561,4.664673166,-1.292773451,1.292773451,0.75123097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.295613738,107.1943434,0.295613738,72.80565658,0,0.880860364,0,0,0,12,20,0% -12/14/2018 5:00,138.2729844,276.8896929,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413318845,4.832636806,-0.795389793,0.795389793,0.666173355,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.498285965,119.886665,0.498285965,60.11333501,0,0.949656014,0,0,0,12,21,0% -12/14/2018 6:00,149.7877844,289.9112923,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614290017,5.059906589,-0.446646151,0.446646151,0.60653468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.680039913,132.8467621,0.680039913,47.15323792,0,0.976474904,0,0,0,12,22,0% -12/14/2018 7:00,159.9946614,312.2440201,0,0,0,0,0,0,0,0,0,0,0,0,0,2.792433627,5.449686221,-0.169552586,0.169552586,0.559148889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.828500969,145.9450578,0.828500969,34.05494217,0,0.98965004,0,0,0,12,23,0% -12/15/2018 8:00,165.3903181,356.3278566,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886605603,6.219094313,0.073280477,-0.073280477,0.51762199,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933562141,158.9970767,0.933562141,21.0029233,0,0.996441701,0,0,0,12,0,0% -12/15/2018 9:00,161.1346491,43.36944489,0,0,0,0,0,0,0,0,0,0,0,0,0,2.812330166,0.756939608,0.305451793,-0.305451793,0.477918357,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988071954,171.1416076,0.988071954,8.858392445,0,0.999396398,0,0,0,12,1,0% -12/15/2018 10:00,151.2782067,67.85550165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.640302793,1.184301919,0.547594701,-0.547594701,0.436509481,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988321168,171.2348186,0.988321168,8.76518135,0,0.999409158,0,0,0,12,2,0% -12/15/2018 11:00,139.8568846,81.64708945,0,0,0,0,0,0,0,0,0,0,0,0,0,2.440963118,1.425010536,0.825999937,-0.825999937,0.388899381,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.934295209,159.1145778,0.934295209,20.88542222,0,0.996483724,0,0,0,12,3,0% -12/15/2018 12:00,128.0511805,91.5611521,0,0,0,0,0,0,0,0,0,0,0,0,0,2.234914711,1.598043571,1.188189571,-1.188189571,0.326961306,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.829675171,146.0653846,0.829675171,33.93461535,0,0.989735451,0,0,0,12,4,0% -12/15/2018 13:00,116.2848867,100.0423617,0,0,0,0,0,0,0,0,0,0,0,0,0,2.029554143,1.746068604,1.752684556,-1.752684556,0.230426978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.681587281,132.9678037,0.681587281,47.03219633,0,0.976641824,0,0,0,12,5,0% -12/15/2018 14:00,104.8129473,108.1927567,0,0,0,0,0,0,0,0,0,0,0,0,0,1.829331029,1.88831983,2.971925419,-2.971925419,0.021924511,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.500117829,120.0077958,0.500117829,59.99220417,0,0.95002356,0,0,0,12,6,0% -12/15/2018 15:00,93.87625403,116.6828087,0,0,0,0,0,0,0,0,0,0,0,0,0,1.638449722,2.036499191,10.1249864,-10.1249864,0,#DIV/0!,0,0,0.545727307,1,0.098446291,0,0.951399835,0.990161799,0.724496596,1,0,0,0.074142952,0.312029739,0.811353842,0.535850438,0.961238037,0.922476074,0,0,0,0,0,0,-0.297626515,107.3151017,0.297626515,72.68489826,0,0.882004215,0,0,0,12,7,0% -12/15/2018 16:00,83.63343355,126.0452741,51.12002918,267.9146,21.41124059,21.15097706,0,21.15097706,20.76561269,0.385364373,35.98753061,22.94725978,13.04027082,0.645627903,12.39464292,1.45967878,2.19990504,-5.005842783,5.005842783,0.613796777,0.418842496,0.298871305,9.612728517,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.96069678,0.467755218,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.216531243,9.240120289,20.17722802,9.707875507,0,22.94725978,-0.085651397,94.91348378,0.085651397,85.08651622,0,0,20.17722802,9.707875507,26.53083838,12,8,31% -12/15/2018 17:00,74.82343984,136.7602465,202.9542542,591.6186035,48.07183687,116.6373015,68.48505294,48.15224851,46.62229362,1.529954896,50.6581519,0,50.6581519,1.449543248,49.20860865,1.305915383,2.386916588,-1.454645718,1.454645718,0.778912758,0.236860454,1.271820268,40.90611166,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.81512199,1.050189149,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.921429454,39.32051047,45.73655144,40.37069961,68.48505294,0,0.115758789,83.35260725,-0.115758789,96.64739275,0.618067353,0,88.06492686,40.37069961,114.4867423,12,9,30% -12/15/2018 18:00,67.70487279,149.2010372,334.6350439,720.2553532,61.38638834,276.1227423,214.0647598,62.05798255,59.53536224,2.522620311,82.98716676,0,82.98716676,1.8510261,81.13614066,1.18167295,2.604049346,-0.456950188,0.456950188,0.608296774,0.183442797,1.715765021,55.18490098,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.22765472,1.341062108,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.243065917,53.04582588,58.47072064,54.38688799,214.0647598,0,0.29720676,72.71008836,-0.29720676,107.2899116,0.881766949,0,247.2259507,54.38688799,282.8210812,12,10,14% -12/15/2018 19:00,62.94405812,163.4230391,421.0969274,775.3525754,68.41987254,415.0400772,345.5089097,69.53116746,66.35676094,3.174406511,104.1629369,0,104.1629369,2.0631116,102.0998253,1.098581059,2.852270106,0.116900789,-0.116900789,0.510162477,0.162480104,1.872110458,60.21350767,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.78464262,1.494717331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356337654,57.87951391,65.14098028,59.37423124,345.5089097,0,0.445615222,63.53729281,-0.445615222,116.4627072,0.937795574,0,389.1577067,59.37423124,428.0169536,12,11,10% -12/15/2018 20:00,61.12004404,178.8801189,453.5225828,792.3220729,70.84996913,508.5108807,436.3784548,72.13242595,68.71358115,3.418844798,112.0981889,0,112.0981889,2.136387978,109.9618009,1.066746007,3.122047041,0.586665659,-0.586665659,0.429827953,0.15622148,1.774042238,57.05929661,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.05010785,1.547805817,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285287563,54.84756626,67.33539541,56.39537208,436.3784548,0,0.550758927,56.58090587,-0.550758927,123.4190941,0.959216179,0,485.9166693,56.39537208,522.8263124,12,12,8% -12/15/2018 21:00,62.49773505,194.428359,429.0724091,779.6853665,69.02643352,542.2418192,472.0622583,70.17956093,66.94503187,3.234529061,106.1149749,0,106.1149749,2.081401651,104.0335732,1.090791252,3.393415024,1.085971089,-1.085971089,0.344441696,0.160873624,1.455226709,46.80509328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.35011101,1.507968411,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054306797,44.99083598,65.40441781,46.49880439,472.0622583,0,0.605452249,52.73860764,-0.605452249,127.2613924,0.967417104,0,522.0855207,46.49880439,552.5180582,12,13,6% -12/15/2018 22:00,66.87453748,208.8735217,349.8716882,731.1998169,62.69599397,506.5419909,443.0990319,63.442959,60.80547843,2.637480572,86.72095703,0,86.72095703,1.890515542,84.83044149,1.167180865,3.645530673,1.763819759,-1.763819759,0.228522746,0.179197106,0.967346738,31.11319633,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.44853872,1.369672075,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.700839419,29.90718776,59.14937813,31.27685984,443.0990319,0,0.605988981,52.69995818,-0.605988981,127.3000418,0.967490249,0,487.8433708,31.27685984,508.3134501,12,14,4% -12/15/2018 23:00,73.69999442,221.572355,223.7072309,617.1760166,50.48641184,391.5968816,340.9464217,50.65045984,48.96406024,1.686399601,55.76275971,0,55.76275971,1.522351592,54.24040812,1.286307561,3.867167126,3.0073773,-3.0073773,0.015861882,0.225680733,0.401300529,12.90720448,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.06611714,1.102938546,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.290740867,12.4068959,47.35685801,13.50983444,340.9464217,0,0.552429797,56.46613257,-0.552429797,123.5338674,0.959490762,0,374.4918,13.50983444,383.3337164,12,15,2% -12/15/2018 0:00,82.31423999,232.5108729,71.26793199,334.1255129,26.5820235,176.3246399,150.0069147,26.31772519,25.78047741,0.537247775,18.08128131,0,18.08128131,0.801546086,17.27973522,1.436654509,4.058080279,7.06749316,-7.06749316,0,0.372987159,0.200386521,6.445119353,0.404215351,1,0.140559828,0,0.946497645,0.985259608,0.724496596,1,24.9965299,0.580717411,0.058026882,0.312029739,0.848661619,0.573158215,0.961238037,0.922476074,0.137168766,6.195293874,25.13369867,6.776011285,89.37181699,0,0.448953788,63.32342013,-0.448953788,116.6765799,0.938629963,0,109.0207639,6.776011285,113.4555278,12,16,4% -12/15/2018 1:00,92.39078669,242.0337378,0,0,0,0,0,0,0,0,0,0,0,0,0,1.612523426,4.224285625,-23.72019648,23.72019648,0,#DIV/0!,0,0,1,0.721180225,0,0.042133217,0.961238037,1,0.611971442,0.887474846,0,0,0.115824807,0.184416033,0.724496596,0.448993192,0.979725915,0.940963952,0,0,0,0,0,0,0.299225489,72.58890988,-0.299225489,107.4110901,0.882901936,0,0,0,0,12,17,0% -12/15/2018 2:00,103.230227,250.6122724,0,0,0,0,0,0,0,0,0,0,0,0,0,1.801707349,4.374009299,-4.253184237,4.253184237,0.742508969,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.117861092,83.23132386,-0.117861092,96.76867614,0.62577179,0,0,0,0,12,18,0% -12/15/2018 3:00,114.6422933,258.7692165,0,0,0,0,0,0,0,0,0,0,0,0,0,2.00088548,4.516374831,-2.154454106,2.154454106,0.898587041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08456864,94.85122043,0.08456864,85.14877957,0,0,0,0,0,12,19,0% -12/15/2018 4:00,126.3822563,267.143298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205786488,4.662530125,-1.296945053,1.296945053,0.751944356,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.294278131,107.114256,0.294278131,72.885744,0,0.880092709,0,0,0,12,20,0% -12/15/2018 5:00,138.2037338,276.7407096,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412110193,4.830036556,-0.798375851,0.798375851,0.666684001,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49698711,119.8008682,0.49698711,60.19913184,0,0.949393769,0,0,0,12,21,0% -12/15/2018 6:00,149.7265397,289.7043196,0,0,0,0,0,0,0,0,0,0,0,0,0,2.613221096,5.056294235,-0.44909473,0.44909473,0.606953412,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.678892988,132.7571977,0.678892988,47.24280229,0,0.97635069,0,0,0,12,22,0% -12/15/2018 7:00,159.9608461,311.9052853,0,0,0,0,0,0,0,0,0,0,0,0,0,2.791843439,5.443774183,-0.171769227,0.171769227,0.559527957,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.827610565,145.854062,0.827610565,34.14593804,0,0.989585112,0,0,0,12,23,0% -12/16/2018 8:00,165.4314012,355.8772411,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887322636,6.211229589,0.071101431,-0.071101431,0.517994629,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.933015072,158.9097961,0.933015072,21.09020386,0,0.996410298,0,0,0,12,0,0% -12/16/2018 9:00,161.2382589,43.17797646,0,0,0,0,0,0,0,0,0,0,0,0,0,2.814138498,0.753597854,0.303137165,-0.303137165,0.478314181,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987931292,171.0894243,0.987931292,8.910575684,0,0.999389193,0,0,0,12,1,0% -12/16/2018 10:00,151.3949966,67.79349093,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642341161,1.183219628,0.544926654,-0.544926654,0.436965743,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988621907,171.3486275,0.988621907,8.651372484,0,0.999424548,0,0,0,12,2,0% -12/16/2018 11:00,139.9758503,81.6180779,0,0,0,0,0,0,0,0,0,0,0,0,0,2.443039462,1.424504189,0.822611745,-0.822611745,0.389478796,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935041852,159.2349075,0.935041852,20.7650925,0,0.996526458,0,0,0,12,3,0% -12/16/2018 12:00,128.1703114,91.53961818,0,0,0,0,0,0,0,0,0,0,0,0,0,2.236993937,1.597667733,1.183288638,-1.183288638,0.327799415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.830841415,146.1852689,0.830841415,33.81473112,0,0.989820044,0,0,0,12,4,0% -12/16/2018 13:00,116.4034219,100.0198705,0,0,0,0,0,0,0,0,0,0,0,0,0,2.031622974,1.745676058,1.743985902,-1.743985902,0.231914535,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.683117814,133.087763,0.683117814,46.91223696,0,0.976806183,0,0,0,12,5,0% -12/16/2018 14:00,104.9300721,108.1650633,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831375243,1.88783649,2.948654892,-2.948654892,0.025904005,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.501932121,120.1279106,0.501932121,59.87208936,0,0.950384937,0,0,0,12,6,0% -12/16/2018 15:00,93.99069523,116.6464493,0,0,0,0,0,0,0,0,0,0,0,0,0,1.640447098,2.035864602,9.840347268,-9.840347268,0,#DIV/0!,0,0,0.535455176,1,0.101274759,0,0.951083406,0.989845369,0.724496596,1,0,0,0.07303189,0.312029739,0.813859482,0.538356078,0.961238037,0.922476074,0,0,0,0,0,0,-0.299624346,107.4350419,0.299624346,72.56495812,0,0.883124375,0,0,0,12,7,0% -12/16/2018 16:00,83.74116776,125.9964255,49.50315063,261.5808657,20.98557612,20.72595923,0,20.72595923,20.35278357,0.37317566,35.57276639,22.93736184,12.63540455,0.632792549,12.002612,1.461559097,2.19905247,-5.099162675,5.099162675,0.597838136,0.42392405,0.286719898,9.221897528,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.56386973,0.458456047,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.20772759,8.864438676,19.77159732,9.322894723,0,22.93736184,-0.087687461,95.03058227,0.087687461,84.96941773,0,0.479793044,19.77159732,20.32808137,33.07592001,12,8,67% -12/16/2018 17:00,74.92471489,136.6945067,200.9934911,588.5464766,47.91960226,114.9340505,66.94422724,47.98982329,46.47464945,1.515173836,50.17815175,0,50.17815175,1.444952813,48.73319894,1.307682966,2.385769211,-1.468801953,1.468801953,0.781333617,0.238413702,1.262846905,40.61749747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.6732008,1.046863394,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.914928284,39.04308353,45.58812908,40.08994692,66.94422724,0,0.113745014,83.46875532,-0.113745014,96.53124468,0.610420292,0,86.45224386,40.08994692,112.6903123,12,9,30% -12/16/2018 18:00,67.79359505,149.1143269,332.8954131,718.5026614,61.34143833,274.2123063,212.2110324,62.00127388,59.49176764,2.50950624,82.56401773,0,82.56401773,1.849670692,80.71434704,1.183221445,2.602535967,-0.462614711,0.462614711,0.609265465,0.184266397,1.709638039,54.98783619,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.18574994,1.34008012,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.23862694,52.85639971,58.42437688,54.19647983,212.2110324,0,0.295351769,72.8213678,-0.295351769,107.1786322,0.880710342,0,245.3208278,54.19647983,280.7913399,12,10,14% -12/16/2018 19:00,63.01407426,163.3141808,419.7293453,774.1720528,68.43204097,413.284816,343.7521564,69.53265954,66.36856245,3.1640971,103.8317178,0,103.8317178,2.063478523,101.7682392,1.099803071,2.850370171,0.113529639,-0.113529639,0.510738978,0.163038495,1.868422621,60.09489416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.79598667,1.494983165,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353665829,57.76549809,65.1496525,59.26048125,343.7521564,0,0.444025531,63.63899067,-0.444025531,116.3610093,0.937393862,0,387.3808141,59.26048125,426.1656139,12,11,10% -12/16/2018 20:00,61.1657186,178.7539758,452.6003713,791.4489109,70.90205062,507.0938191,434.9178341,72.17598497,68.76409219,3.411892778,111.8761585,0,111.8761585,2.137958427,109.7382,1.067543179,3.119845429,0.583987793,-0.583987793,0.430285895,0.156654866,1.772595606,57.01276795,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09866098,1.548943602,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284239483,54.80284114,67.38290047,56.35178474,434.9178341,0,0.549521047,56.66583901,-0.549521047,123.334161,0.959011674,0,484.4741807,56.35178474,521.3552968,12,12,8% -12/16/2018 21:00,62.51640315,194.2953306,428.6247285,779.0220585,69.11021404,541.276146,471.0187057,70.25744035,67.0262861,3.231154255,106.0089558,0,106.0089558,2.083927943,103.9250279,1.091117072,3.39109324,1.083151133,-1.083151133,0.344923937,0.161237114,1.455785274,46.82305864,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.42821566,1.509798701,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.054711475,45.00810497,65.48292714,46.51790367,471.0187057,0,0.604628201,52.79790777,-0.604628201,127.2020922,0.967304552,0,521.1014652,46.51790367,551.5465028,12,13,6% -12/16/2018 22:00,66.86764454,208.7439173,349.8882154,730.754955,62.80639191,506.1042852,442.5541326,63.55015262,60.91254746,2.637605161,86.72829314,0,86.72829314,1.893844447,84.8344487,1.16706056,3.64326865,1.759745309,-1.759745309,0.229219518,0.179504165,0.969525168,31.18326212,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.55145754,1.372083855,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.702417684,29.97453766,59.25387522,31.34662152,442.5541326,0,0.605612223,52.72709016,-0.605612223,127.2729098,0.967438919,0,487.3979667,31.34662152,507.9137035,12,14,4% -12/16/2018 23:00,73.67177008,221.4516031,224.1319187,617.1614466,50.62341143,391.7697692,340.9832393,50.78652988,49.0969288,1.689601077,55.86986123,0,55.86986123,1.526482635,54.34337859,1.285814954,3.865059607,2.998455799,-2.998455799,0.017387548,0.225864356,0.404363232,13.00571152,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.19383545,1.105931473,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.292959785,12.50158461,47.48679524,13.60751608,340.9832393,0,0.552502495,56.46113542,-0.552502495,123.5388646,0.959502671,0,374.6611242,13.60751608,383.5669713,12,15,2% -12/16/2018 0:00,82.2699209,232.3994272,71.90951325,335.5475489,26.77621619,177.3198994,150.8090007,26.51089876,25.96881448,0.542084286,18.24269574,0,18.24269574,0.807401712,17.43529403,1.435880995,4.056135184,7.022161594,-7.022161594,0,0.372359859,0.201850428,6.49220362,0.401450883,1,0.141455194,0,0.946389009,0.985150972,0.724496596,1,25.17910148,0.584959792,0.057693749,0.312029739,0.849454598,0.573951193,0.961238037,0.922476074,0.13817717,6.240553062,25.31727865,6.825512854,90.26659412,0,0.449441521,63.29214185,-0.449441521,116.7078582,0.938750821,0,110.055118,6.825512854,114.5222797,12,16,4% -12/16/2018 1:00,92.33361374,241.9291036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61152557,4.222459414,-24.29575116,24.29575116,0,#DIV/0!,0,0,1,0.728627505,0,0.041136241,0.961238037,1,0.614472763,0.889976167,0,0,0.115824807,0.18724502,0.724496596,0.448993192,0.979354186,0.940592223,0,0,0,0,0,0,0.300089245,72.53703655,-0.300089245,107.4629634,0.883382899,0,0,0,0,12,17,0% -12/16/2018 2:00,103.1642985,250.5104306,0,0,0,0,0,0,0,0,0,0,0,0,0,1.800556679,4.372231824,-4.275333672,4.275333672,0.738721193,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.119009455,83.1650611,-0.119009455,96.8349389,0.629865316,0,0,0,0,12,18,0% -12/16/2018 3:00,114.5705564,258.6648092,0,0,0,0,0,0,0,0,0,0,0,0,0,1.999633435,4.514552579,-2.16219535,2.16219535,0.899910871,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.08323682,94.77464278,0.08323682,85.22535722,0,0,0,0,0,12,19,0% -12/16/2018 4:00,126.3075538,267.0284573,0,0,0,0,0,0,0,0,0,0,0,0,0,2.204482683,4.660525776,-1.301293717,1.301293717,0.752688021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.292876454,107.0302438,0.292876454,72.96975618,0,0.87927955,0,0,0,12,20,0% -12/16/2018 5:00,138.1296828,276.6014012,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41081776,4.827605166,-0.801433133,0.801433133,0.667206827,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.495633815,119.7115535,0.495633815,60.2884465,0,0.94911907,0,0,0,12,21,0% -12/16/2018 6:00,149.6598919,289.5096067,0,0,0,0,0,0,0,0,0,0,0,0,0,2.612057872,5.052895854,-0.451563464,0.451563464,0.60737559,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.677702838,132.6643945,0.677702838,47.33560552,0,0.976221351,0,0,0,12,22,0% -12/16/2018 7:00,159.9200481,311.58047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.79113138,5.438105087,-0.173974654,0.173974654,0.559905108,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.826686958,145.7598976,0.826686958,34.24010244,0,0.989517614,0,0,0,12,23,0% -12/17/2018 8:00,165.4639014,355.4234484,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887889872,6.203309414,0.068958311,-0.068958311,0.518361124,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.932442941,158.8188846,0.932442941,21.18111544,0,0.996377416,0,0,0,12,0,0% -12/17/2018 9:00,161.3358576,42.96859786,0,0,0,0,0,0,0,0,0,0,0,0,0,2.815841917,0.749943508,0.300883601,-0.300883601,0.478699563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987771267,171.0304238,0.987771267,8.969576212,0,0.999380994,0,0,0,12,1,0% -12/17/2018 10:00,151.5076599,67.71730316,0,0,0,0,0,0,0,0,0,0,0,0,0,2.644307507,1.181889901,0.542351896,-0.542351896,0.437406053,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.988906144,171.4575745,0.988906144,8.542425547,0,0.999439085,0,0,0,12,2,0% -12/17/2018 11:00,140.0913594,81.57815864,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445055475,1.423807466,0.819367127,-0.819367127,0.390033659,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.935771821,159.3531979,0.935771821,20.64680211,0,0.996568171,0,0,0,12,3,0% -12/17/2018 12:00,128.2861044,91.50914305,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239014907,1.597135842,1.178626486,-1.178626486,0.32859669,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.831987791,146.3034769,0.831987791,33.69652307,0,0.989902964,0,0,0,12,4,0% -12/17/2018 13:00,116.518446,99.98964689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.033630523,1.745148556,1.735759765,-1.735759765,0.233321288,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.684622483,133.2059248,0.684622483,46.79407517,0,0.976967049,0,0,0,12,5,0% -12/17/2018 14:00,105.0433184,108.1304248,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833351764,1.887231934,2.926805218,-2.926805218,0.029640519,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.503712167,120.2459004,0.503712167,59.75409957,0,0.950736962,0,0,0,12,6,0% -12/17/2018 15:00,94.10073698,116.603717,0,0,0,0,0,0,0,0,0,0,0,0,0,1.642367689,2.035118781,9.582979022,-9.582979022,0,#DIV/0!,0,0,0.525758935,1,0.103975368,0,0.950779548,0.989541512,0.724496596,1,0,0,0.071975059,0.312029739,0.816251958,0.540748554,0.961238037,0.922476074,0,0,0,0,0,0,-0.301577739,107.5523905,0.301577739,72.44760955,0,0.884205269,0,0,0,12,7,0% -12/17/2018 16:00,83.84389233,125.9417268,47.86990269,254.2012263,20.60993789,20.34933577,0,20.34933577,19.98847222,0.360863547,35.02190947,22.79383168,12.2280778,0.62146567,11.60661213,1.463351979,2.198097799,-5.192260669,5.192260669,0.581917441,0.430540626,0.274948781,8.843297933,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,19.2136798,0.450249762,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.199199456,8.500514344,19.41287925,8.950764107,0,22.79383168,-0.089668457,95.14453395,0.089668457,84.85546605,0,0.492390314,19.41287925,20.17422605,32.61650672,12,8,68% -12/17/2018 17:00,75.02021218,136.6235706,198.9500842,584.2890461,47.92405641,113.3012588,65.32251972,47.97873906,46.47896928,1.499769772,49.6828384,0,49.6828384,1.445087122,48.23775128,1.309349708,2.384531143,-1.482859172,1.482859172,0.783737543,0.240884826,1.253555399,40.31865069,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.67735319,1.0469607,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.908196619,38.75582063,45.58554981,39.80278134,65.32251972,0,0.111798296,83.58101015,-0.111798296,96.41898985,0.602765992,0,84.95974321,39.80278134,111.0098675,12,9,31% -12/17/2018 18:00,67.87576742,149.0234113,331.0567664,715.7280325,61.50207056,272.2631314,210.1199294,62.14320196,59.64755622,2.495645744,82.12306021,0,82.12306021,1.854514346,80.26854587,1.184655624,2.600949189,-0.468349719,0.468349719,0.610246209,0.185774999,1.703659353,54.79554108,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.33549984,1.343589331,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.234295402,52.67155833,58.56979524,54.01514767,210.1199294,0,0.293575101,72.92788615,-0.293575101,107.0721138,0.879685829,0,243.4093195,54.01514767,278.7611534,12,10,15% -12/17/2018 19:00,63.07689214,163.2026014,418.2594588,772.0677974,68.67152865,411.4124598,341.6586146,69.75384517,66.60082869,3.153016474,103.4825482,0,103.4825482,2.07069996,101.4118482,1.10089945,2.848422742,0.110009567,-0.110009567,0.511340946,0.164184042,1.865232997,59.99230487,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.01924983,1.500215072,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351354957,57.66688536,65.37060478,59.16710043,341.6586146,0,0.44252411,63.7349595,-0.44252411,116.2650405,0.937011806,0,385.5087603,59.16710043,424.2324442,12,11,10% -12/17/2018 20:00,61.20383786,178.6270204,451.5770628,789.6875408,71.18854241,505.4945278,433.0484039,72.44612384,69.0419452,3.404178646,111.6366843,0,111.6366843,2.146597211,109.490087,1.068208485,3.117629638,0.581089982,-0.581089982,0.43078145,0.157644283,1.771927751,56.99128745,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.36574386,1.555202372,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283755624,54.78219326,67.64949949,56.33739564,433.0484039,0,0.548379431,56.74409398,-0.548379431,123.255906,0.958822255,0,482.8659466,56.33739564,519.7376453,12,12,8% -12/17/2018 21:00,62.52754653,194.1634612,428.0794429,777.4510418,69.42409181,540.0650241,469.5072812,70.55774295,67.33069929,3.227043662,105.8862096,0,105.8862096,2.093392516,103.7928171,1.09131156,3.388791685,1.080006126,-1.080006126,0.345461765,0.16217572,1.457371559,46.87407902,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.72082921,1.516655751,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.055860733,45.05714769,65.77668994,46.57380344,469.5072812,0,0.603905913,52.84984677,-0.603905913,127.1501532,0.967205646,0,519.8867831,46.57380344,550.3684059,12,13,6% -12/17/2018 22:00,66.85359155,208.6171125,349.8138386,729.3252945,63.12917491,505.3522917,441.4896498,63.86264184,61.22559736,2.637044478,86.71999273,0,86.71999273,1.903577545,84.81641518,1.166815289,3.64105549,1.755133093,-1.755133093,0.230008254,0.180465059,0.972976744,31.29427669,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.85237301,1.379135452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.704918339,30.08124909,59.55729135,31.46038454,441.4896498,0,0.60533983,52.74670024,-0.60533983,127.2532998,0.967401768,0,486.6551589,31.46038454,507.2453514,12,14,4% -12/17/2018 23:00,73.63693902,221.3348278,224.4811348,616.0272711,50.93213244,391.5539242,340.4653499,51.08857434,49.39634073,1.692233616,55.96384181,0,55.96384181,1.535791713,54.4280501,1.285207037,3.863021495,2.988390112,-2.988390112,0.019108882,0.226888253,0.408947805,13.15316717,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.48164159,1.112675868,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.296281293,12.64332459,47.77792288,13.75600046,340.4653499,0,0.552679022,56.44900007,-0.552679022,123.5509999,0.959531576,0,374.4651767,13.75600046,383.4682039,12,15,2% -12/17/2018 0:00,82.21962994,232.2927784,72.51938973,335.8638412,27.05144361,177.9308533,151.1484287,26.78242456,26.23574277,0.546681792,18.39886647,0,18.39886647,0.815700834,17.58316564,1.435003252,4.054273811,6.972082813,-6.972082813,0,0.373023597,0.203925208,6.558935693,0.398366936,1,0.142457589,0,0.946267171,0.985029134,0.724496596,1,25.43785217,0.590972477,0.057321241,0.312029739,0.850342345,0.574838941,0.961238037,0.922476074,0.139605238,6.304698469,25.57745741,6.895670947,90.93589225,0,0.450028881,63.25446304,-0.450028881,116.745537,0.93889602,0,110.9568047,6.895670947,115.4698834,12,16,4% -12/17/2018 1:00,92.27093726,241.829913,0,0,0,0,0,0,0,0,0,0,0,0,0,1.610431659,4.220728212,-24.9608647,24.9608647,0,#DIV/0!,0,0,1,0.736752944,0,0.040041301,0.961238037,1,0.617228912,0.892732316,0,0,0.115824807,0.190362642,0.724496596,0.448993192,0.978942476,0.940180513,0,0,0,0,0,0,0.301047664,72.47946091,-0.301047664,107.5205391,0.883913343,0,0,0,0,12,17,0% -12/17/2018 2:00,103.0933136,250.4146778,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799317759,4.370560622,-4.299404224,4.299404224,0.734604886,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.120243967,83.09381716,-0.120243967,96.90618284,0.634178724,0,0,0,0,12,18,0% -12/17/2018 3:00,114.4940855,258.5672933,0,0,0,0,0,0,0,0,0,0,0,0,0,1.998298765,4.512850606,-2.170408519,2.170408519,0.901315406,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.081829129,94.69371186,0.081829129,85.30628814,0,0,0,0,0,12,19,0% -12/17/2018 4:00,126.2282712,266.9216507,0,0,0,0,0,0,0,0,0,0,0,0,0,2.203098941,4.65866165,-1.305817377,1.305817377,0.753461613,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.291410232,106.9424035,0.291410232,73.05759654,0,0.878420575,0,0,0,12,20,0% -12/17/2018 5:00,138.0509457,276.4718738,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409443538,4.825344486,-0.804559559,0.804559559,0.667741477,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.494227577,119.6188288,0.494227577,60.38117124,0,0.948832031,0,0,0,12,21,0% -12/17/2018 6:00,149.5879676,289.3273285,0,0,0,0,0,0,0,0,0,0,0,0,0,2.610802557,5.049714499,-0.454050448,0.454050448,0.607800889,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.676470816,132.5684719,0.676470816,47.43152809,0,0.976086981,0,0,0,12,22,0% -12/17/2018 7:00,159.8723934,311.2700807,0,0,0,0,0,0,0,0,0,0,0,0,0,2.790299648,5.432687771,-0.176167106,0.176167106,0.560280039,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.825731259,145.6626999,0.825731259,34.33730011,0,0.989447611,0,0,0,12,23,0% -12/18/2018 8:00,165.4877952,354.9676465,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888306899,6.19535417,0.066852785,-0.066852785,0.51872119,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.93184653,158.7245094,0.93184653,21.27549063,0,0.996343096,0,0,0,12,0,0% -12/18/2018 9:00,161.4273102,42.74146171,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817438065,0.745979234,0.298692724,-0.298692724,0.479074226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987592269,170.9648808,0.987592269,9.035119187,0,0.999371819,0,0,0,12,1,0% -12/18/2018 10:00,151.6160766,67.62691401,0,0,0,0,0,0,0,0,0,0,0,0,0,2.646199736,1.180312312,0.539872019,-0.539872019,0.437830137,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989173846,171.5614598,0.989173846,8.438540193,0,0.999452768,0,0,0,12,2,0% -12/18/2018 11:00,140.2033002,81.52732063,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44700921,1.422920175,0.816267576,-0.816267576,0.390563713,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.936484654,159.4693401,0.936484654,20.53065986,0,0.996608842,0,0,0,12,3,0% -12/18/2018 12:00,128.3984518,91.46973448,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240975739,1.596448033,1.174204091,-1.174204091,0.329352964,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.833113432,146.4199039,0.833113432,33.58009613,0,0.989984163,0,0,0,12,4,0% -12/18/2018 13:00,116.6298543,99.95171381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035574963,1.744486499,1.728004129,-1.728004129,0.23464758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.686100071,133.322183,0.686100071,46.67781695,0,0.977124333,0,0,0,12,5,0% -12/18/2018 14:00,105.1525856,108.0888777,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835258836,1.886506801,2.906346451,-2.906346451,0.033139175,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.505456474,120.3616588,0.505456474,59.6383412,0,0.951079514,0,0,0,12,6,0% -12/18/2018 15:00,94.20628485,116.5546615,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644209847,2.034262602,9.350136036,-9.350136036,0,#DIV/0!,0,0,0.516631208,1,0.106545312,0,0.950488823,0.989250786,0.724496596,1,0,0,0.070972964,0.312029739,0.818528749,0.543025345,0.961238037,0.922476074,0,0,0,0,0,0,-0.303485019,107.6670422,0.303485019,72.33295778,0,0.885247222,0,0,0,12,7,0% -12/18/2018 16:00,83.94152881,125.8812418,46.32736193,247.1015235,20.24744357,19.98614367,0,19.98614367,19.63690845,0.349235223,34.47584904,22.63270865,11.84314039,0.610535129,11.23260526,1.465056057,2.197042137,-5.284817156,5.284817156,0.56608935,0.437051512,0.263927764,8.488824136,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.87574332,0.442330623,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.191214767,8.159780647,19.06695809,8.60211127,0,22.63270865,-0.091592752,95.2552436,0.091592752,84.7447564,0,0.504105279,19.06695809,20.01137918,32.16400554,12,8,69% -12/18/2018 17:00,75.10985997,136.5475151,197.0170714,580.1543775,47.93683929,111.7473217,63.77075711,47.97656462,46.49136672,1.485197905,49.21454252,0,49.21454252,1.445472573,47.76906995,1.310914357,2.383203724,-1.496786985,1.496786985,0.786119339,0.243313125,1.244832453,40.03809076,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.68927008,1.047239958,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.901876874,38.48613576,45.59114695,39.53337572,63.77075711,0,0.109920324,83.68927738,-0.109920324,96.31072262,0.595125067,0,83.54272305,39.53337572,109.4165268,12,9,31% -12/18/2018 18:00,67.9513337,148.9283768,329.3401618,713.0361325,61.67067848,270.413563,208.1197778,62.29378524,59.81107999,2.482705253,81.71193368,0,81.71193368,1.859598497,79.85233519,1.185974504,2.599290524,-0.474145717,0.474145717,0.611237383,0.187255263,1.698257856,54.62181036,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.49268511,1.347272781,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.230382035,52.50456176,58.72306714,53.85183454,208.1197778,0,0.291878305,73.02955908,-0.291878305,106.9704409,0.87869573,0,241.5970272,53.85183454,276.8419759,12,10,15% -12/18/2018 19:00,63.13247403,163.088392,416.9193741,770.0325902,68.9191734,409.6547393,339.6708189,69.98392038,66.84100603,3.142914349,103.1650965,0,103.1650965,2.078167363,101.0869292,1.101869537,2.846429412,0.106345748,-0.106345748,0.511967496,0.165305759,1.862623294,59.90836787,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.25011742,1.50562518,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349464236,57.58620192,65.59958166,59.0918271,339.6708189,0,0.441112264,63.82513052,-0.441112264,116.1748695,0.93665017,0,383.752312,59.0918271,422.426731,12,11,10% -12/18/2018 20:00,61.23438336,178.4993444,450.6877884,787.9933027,71.4835733,504.021911,431.2963563,72.72555474,69.32807982,3.39747492,111.4299657,0,111.4299657,2.155493481,109.2744722,1.068741605,3.115401273,0.577976608,-0.577976608,0.431313868,0.158609963,1.771827863,56.9880747,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.64078734,1.56164769,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.283683255,54.77910505,67.9244706,56.34075273,431.2963563,0,0.547335053,56.81562211,-0.547335053,123.1843779,0.958648277,0,481.3859796,56.34075273,518.2598754,12,12,8% -12/18/2018 21:00,62.53116589,194.0328428,427.6687029,775.9547429,69.74711765,538.9905431,468.1226111,70.86793204,67.64398471,3.22394733,105.7963613,0,105.7963613,2.103132936,103.6932284,1.09137473,3.386511964,1.076541602,-1.076541602,0.346054233,0.163086794,1.459494341,46.94235499,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.02197107,1.523712653,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.057398682,45.12277716,66.07936975,46.64648981,468.1226111,0,0.603285972,52.89439768,-0.603285972,127.1056023,0.967120566,0,518.8103742,46.64648981,549.3395689,12,13,6% -12/18/2018 22:00,66.83239812,208.4931994,349.8703466,727.9917743,63.46228086,504.7463457,440.5602163,64.1861294,61.54865894,2.637470458,86.74373811,0,86.74373811,1.913621919,84.83011619,1.166445394,3.638892797,1.749993334,-1.749993334,0.230887204,0.181387996,0.976905956,31.42065365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.16291209,1.386412566,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.70776504,30.20272743,59.87067713,31.58913999,440.5602163,0,0.60517197,52.75878226,-0.60517197,127.2412177,0.967378857,0,486.0593156,31.58913999,506.7337759,12,14,4% -12/18/2018 23:00,73.59553881,221.2221194,224.951782,615.0414507,51.25414304,391.4972058,340.0927827,51.40442307,49.70864152,1.695781553,56.08766546,0,56.08766546,1.54550152,54.54216394,1.284484467,3.861054363,2.977210496,-2.977210496,0.021020709,0.227845019,0.413900027,13.31244763,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,47.78183699,1.11971059,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.29986916,12.79643102,48.08170615,13.91614161,340.0927827,0,0.552959126,56.42974085,-0.552959126,123.5702592,0.959577403,0,374.4270555,13.91614161,383.5348919,12,15,2% -12/18/2018 0:00,82.16341853,232.1910127,73.22422493,336.4552423,27.34919035,178.7220196,151.6455131,27.07650649,26.52451135,0.551995138,18.57874009,0,18.57874009,0.824678997,17.7540611,1.434022178,4.052497666,6.917514062,-6.917514062,0,0.373499213,0.206169749,6.631127839,0.394970103,1,0.143566045,0,0.946132176,0.984894139,0.724496596,1,25.71775036,0.597477126,0.056909868,0.312029739,0.851323997,0.575820593,0.961238037,0.922476074,0.141151274,6.374092306,25.85890164,6.971569432,91.75006916,0,0.450715263,63.21041624,-0.450715263,116.7895838,0.939065217,0,112.0182002,6.971569432,116.580953,12,16,4% -12/18/2018 1:00,92.20282602,241.7362475,0,0,0,0,0,0,0,0,0,0,0,0,0,1.609242894,4.219093441,-25.72737571,25.72737571,0,#DIV/0!,0,0,1,0.745533739,0,0.038849546,0.961238037,1,0.620239527,0.895742931,0,0,0.115824807,0.193768619,0.724496596,0.448993192,0.97849023,0.939728267,0,0,0,0,0,0,0.302099743,72.41623771,-0.302099743,107.5837623,0.884491749,0,0,0,0,12,17,0% -12/18/2018 2:00,103.0173534,250.3250911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.797992004,4.36899704,-4.325428791,4.325428791,0.730154423,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.121563358,83.01766302,-0.121563358,96.98233698,0.638691848,0,0,0,0,12,18,0% -12/18/2018 3:00,114.4129722,258.4767439,0,0,0,0,0,0,0,0,0,0,0,0,0,1.996883071,4.511270222,-2.179093903,2.179093903,0.902800694,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.080347008,94.60851203,0.080347008,85.39148797,0,0,0,0,0,12,19,0% -12/18/2018 4:00,126.1445103,266.8229558,0,0,0,0,0,0,0,0,0,0,0,0,0,2.201637038,4.656939098,-1.310514073,1.310514073,0.754264795,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.289880978,106.8508305,0.289880978,73.14916954,0,0.877515415,0,0,0,12,20,0% -12/18/2018 5:00,137.9676348,276.3522183,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407989488,4.823256105,-0.807753102,0.807753102,0.668287605,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.49276986,119.5227996,0.49276986,60.47720039,0,0.948532755,0,0,0,12,21,0% -12/18/2018 6:00,149.5108917,289.1576337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.609457328,5.046752765,-0.456553825,0.456553825,0.608228992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.675198235,132.4695461,0.675198235,47.53045385,0,0.975947674,0,0,0,12,22,0% -12/18/2018 7:00,159.8180094,310.9745708,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789350468,5.427530151,-0.178344878,0.178344878,0.56065246,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.82474453,145.5625992,0.82474453,34.43740082,0,0.989375166,0,0,0,12,23,0% -12/19/2018 8:00,165.5030701,354.5110091,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888573495,6.187384343,0.064786456,-0.064786456,0.519074553,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.931226576,158.6268301,0.931226576,21.37316988,0,0.996307374,0,0,0,12,0,0% -12/19/2018 9:00,161.5124836,42.49676466,0,0,0,0,0,0,0,0,0,0,0,0,0,2.818924622,0.741708465,0.296566072,-0.296566072,0.479437904,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987394653,170.8930637,0.987394653,9.106936338,0,0.999361686,0,0,0,12,1,0% -12/19/2018 10:00,151.7201279,67.52231612,0,0,0,0,0,0,0,0,0,0,0,0,0,2.648015773,1.178486735,0.537488513,-0.537488513,0.438237741,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989424953,171.6600729,0.989424953,8.339927143,0,0.999465596,0,0,0,12,2,0% -12/19/2018 11:00,140.3115628,81.46556211,0,0,0,0,0,0,0,0,0,0,0,0,0,2.448898749,1.421842286,0.813314455,-0.813314455,0.391068726,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937179876,159.5832219,0.937179876,20.41677808,0,0.996648449,0,0,0,12,3,0% -12/19/2018 12:00,128.5072485,91.42140643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.242874599,1.595604549,1.170022261,-1.170022261,0.330068099,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.834217478,146.5344444,0.834217478,33.4655556,0,0.990063591,0,0,0,12,4,0% -12/19/2018 13:00,116.7375456,99.90609886,0,0,0,0,0,0,0,0,0,0,0,0,0,2.037454531,1.743690368,1.720716847,-1.720716847,0.235893778,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.687549384,133.4364331,0.687549384,46.56356689,0,0.977277951,0,0,0,12,5,0% -12/19/2018 14:00,105.2577776,108.0404621,0,0,0,0,0,0,0,0,0,0,0,0,0,1.837094783,1.885661788,2.88725002,-2.88725002,0.036404857,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.507163591,120.475082,0.507163591,59.524918,0,0.951412481,0,0,0,12,6,0% -12/19/2018 15:00,94.30724951,116.4993353,0,0,0,0,0,0,0,0,0,0,0,0,0,1.645972013,2.033296978,9.139467909,-9.139467909,0,#DIV/0!,0,0,0.508064634,1,0.108982037,0,0.950211755,0.988973718,0.724496596,1,0,0,0.070026032,0.312029739,0.820687565,0.545184161,0.961238037,0.922476074,0,0,0,0,0,0,-0.305344576,107.7788956,0.305344576,72.22110436,0,0.886250571,0,0,0,12,7,0% -12/19/2018 16:00,84.03400448,125.8150352,44.87469819,240.2912609,19.89925563,19.63750408,0,19.63750408,19.29921965,0.33828443,33.93775836,22.45733227,11.48042609,0.600035978,10.88039012,1.466670062,2.195886613,-5.376493772,5.376493772,0.550411725,0.443440434,0.253638002,8.157870012,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.55114401,0.434724023,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.183759869,7.841654955,18.73490388,8.276378978,0,22.45733227,-0.093458797,95.36262073,0.093458797,84.63737927,0,0.515004885,18.73490388,19.84201481,31.72110573,12,8,69% -12/19/2018 17:00,75.19359233,136.4664163,195.1954199,576.1482017,47.95851094,110.2727842,62.28893381,47.98385041,46.51238488,1.471465526,48.7735155,0,48.7735155,1.446126053,47.32738945,1.312375763,2.381788282,-1.51055483,1.51055483,0.788473779,0.245694858,1.236685379,39.77605287,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.70947353,1.047713402,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.895974347,38.23425497,45.60544788,39.28196838,62.28893381,0,0.108112693,83.79346799,-0.108112693,96.20653201,0.587519615,0,82.2014183,39.28196838,107.910681,12,9,31% -12/19/2018 18:00,68.02024341,148.8293081,327.7465594,710.4298927,61.84758175,268.6647314,206.2113904,62.45334097,59.98264896,2.470692005,81.33088062,0,81.33088062,1.864932783,79.46594783,1.187177206,2.59756145,-0.479993069,0.479993069,0.612237339,0.18870551,1.693437723,54.46677832,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.65760374,1.351137453,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.226889865,52.35553906,58.8844936,53.70667651,206.2113904,0,0.290262829,73.12630814,-0.290262829,106.8736919,0.877742325,0,239.8849589,53.70667651,275.0349045,12,10,15% -12/19/2018 19:00,63.18078752,162.9716409,415.709762,768.0682045,69.17519329,408.0127316,337.7896299,70.22310177,67.08930599,3.133795782,102.879532,0,102.879532,2.085887307,100.7936447,1.102712766,2.844391721,0.102543604,-0.102543604,0.5126177,0.166402619,1.860595326,59.84314143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.48879278,1.511218253,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.34799498,57.52350379,65.83678776,59.03472204,337.7896299,0,0.43979119,63.90944098,-0.43979119,116.090559,0.936309683,0,382.1124889,59.03472204,420.7495338,12,11,10% -12/19/2018 20:00,61.2573413,178.3710361,449.9328315,786.3673544,71.78730539,502.6767407,429.6623037,73.014437,69.62265327,3.391783737,111.2560763,0,111.2560763,2.164652124,109.0914241,1.069142297,3.113161871,0.574652415,-0.574652415,0.431882339,0.15955116,1.772295769,57.00312416,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.92394255,1.568283095,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.284022252,54.79357116,68.2079648,56.36185426,429.6623037,0,0.546388785,56.88038045,-0.546388785,123.1196195,0.958490069,0,480.0350159,56.36185426,516.9227223,12,12,8% -12/19/2018 21:00,62.5272658,193.9035634,427.3923717,774.5338513,70.07941813,538.0530206,466.8648913,71.18812934,67.96626511,3.221864229,105.7393817,0,105.7393817,2.113153022,103.6262287,1.091306661,3.384255613,1.07276366,-1.07276366,0.346700299,0.163969745,1.462151852,47.02782966,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.33175924,1.530972171,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.059324039,45.20493866,66.39108328,46.73591083,466.8648913,0,0.602768866,52.93153848,-0.602768866,127.0684615,0.967049465,0,517.8725266,46.73591083,548.4602455,12,13,6% -12/19/2018 22:00,66.80408703,208.3722658,350.0571988,726.7544521,63.80581173,504.2861691,439.765459,64.52071012,61.88183109,2.638879029,86.79940132,0,86.79940132,1.923980642,84.87542068,1.165951272,3.636782108,1.744337266,-1.744337266,0.231854449,0.182272531,0.981310136,31.56230719,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.48316984,1.393917426,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.710955853,30.3388902,60.19412569,31.73280763,439.765459,0,0.605108724,52.76333404,-0.605108724,127.236666,0.967370221,0,485.610135,31.73280763,506.378623,12,14,4% -12/19/2018 23:00,73.5476094,221.1135636,225.5430166,614.2024256,51.58951202,391.5984314,339.864295,51.73413641,50.03389788,1.700238529,56.24112976,0,56.24112976,1.555614132,54.68551563,1.283647941,3.859159706,2.964949722,-2.964949722,0.023117425,0.22873469,0.419218222,13.48349906,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.09448578,1.127037143,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.303722175,12.96085217,48.39820795,14.08788931,339.864295,0,0.553342483,56.40337518,-0.553342483,123.5966248,0.959640048,0,374.5455964,14.08788931,383.7658382,12,15,2% -12/19/2018 0:00,82.1013396,232.0942113,74.02359391,337.3145049,27.66936662,179.6905566,152.2975024,27.39305425,26.83503313,0.558021119,18.78221085,0,18.78221085,0.834333493,17.94787736,1.432938696,4.050808163,6.858725371,-6.858725371,0,0.373791181,0.208583373,6.708758282,0.3912674,1,0.144779551,0,0.945984067,0.98474603,0.724496596,1,26.01870437,0.604471775,0.056460167,0.312029739,0.852398646,0.576895242,0.961238037,0.922476074,0.142815105,6.44871364,26.16151948,7.053185416,92.70845458,0,0.45150001,63.16003616,-0.45150001,116.8399638,0.939258031,0,113.23868,7.053185416,117.8548488,12,16,4% -12/19/2018 1:00,92.12934971,241.6481826,0,0,0,0,0,0,0,0,0,0,0,0,0,1.60796049,4.217556417,-26.61002407,26.61002407,0,#DIV/0!,0,0,1,0.754946155,0,0.037562148,0.961238037,1,0.623504352,0.899007756,0,0,0.115824807,0.197462805,0.724496596,0.448993192,0.97799682,0.939234857,0,0,0,0,0,0,0.303244447,72.34742321,-0.303244447,107.6525768,0.885116519,0,0,0,0,12,17,0% -12/19/2018 2:00,102.936499,250.241741,0,0,0,0,0,0,0,0,0,0,0,0,0,1.796580827,4.367542306,-4.353444698,4.353444698,0.725363421,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.122966342,82.93667026,-0.122966342,97.06332974,0.643384669,0,0,0,0,12,18,0% -12/19/2018 3:00,114.3273076,258.3932279,0,0,0,0,0,0,0,0,0,0,0,0,0,1.995387943,4.509812592,-2.188252219,2.188252219,0.904366858,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.078791896,94.51912724,0.078791896,85.48087276,0,0,0,0,0,12,19,0% -12/19/2018 4:00,126.0563715,266.732439,0,0,0,0,0,0,0,0,0,0,0,0,0,2.200098725,4.655359283,-1.315381952,1.315381952,0.755097251,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.288290177,106.755619,0.288290177,73.24438095,0,0.876563636,0,0,0,12,20,0% -12/19/2018 5:00,137.8798604,276.2425104,0,0,0,0,0,0,0,0,0,0,0,0,0,2.406457536,4.821341341,-0.811011799,0.811011799,0.668844875,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.491262096,119.4235693,0.491262096,60.57643073,0,0.948221336,0,0,0,12,21,0% -12/19/2018 6:00,149.4287868,289.0006446,0,0,0,0,0,0,0,0,0,0,0,0,0,2.608024327,5.044012789,-0.459071795,0.459071795,0.60865959,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.673886365,132.3677296,0.673886365,47.63227038,0,0.975803514,0,0,0,12,22,0% -12/19/2018 7:00,159.7570244,310.6943399,0,0,0,0,0,0,0,0,0,0,0,0,0,2.788286079,5.422639198,-0.180506327,0.180506327,0.56102209,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.823727793,145.4597202,0.823727793,34.54027979,0,0.989300336,0,0,0,12,23,0% -12/20/2018 8:00,165.5097239,354.0547064,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888689626,6.179420358,0.062760853,-0.062760853,0.519420952,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.930583773,158.525998,0.930583773,21.47400198,0,0.996270286,0,0,0,12,0,0% -12/20/2018 9:00,161.5912475,42.23474809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.820299311,0.737135413,0.2945051,-0.2945051,0.479790351,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.987178734,170.8152319,0.987178734,9.184768088,0,0.999350611,0,0,0,12,1,0% -12/20/2018 10:00,151.8196959,67.40351981,0,0,0,0,0,0,0,0,0,0,0,0,0,2.649753563,1.176413348,0.535202758,-0.535202758,0.438628628,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98965938,171.7531924,0.98965938,8.246807627,0,0.999477567,0,0,0,12,2,0% -12/20/2018 11:00,140.4160396,81.3928908,0,0,0,0,0,0,0,0,0,0,0,0,0,2.450722214,1.420573932,0.810508991,-0.810508991,0.391548489,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.937857005,159.6947275,0.937857005,20.30527247,0,0.996686969,0,0,0,12,3,0% -12/20/2018 12:00,128.6123926,91.36417917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.244709709,1.594605745,1.166081636,-1.166081636,0.330741985,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.835299078,146.6469931,0.835299078,33.3530069,0,0.990141201,0,0,0,12,4,0% -12/20/2018 13:00,116.8414229,99.85283414,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039267532,1.742760723,1.713895639,-1.713895639,0.237060274,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.688969259,133.5485721,0.688969259,46.45142791,0,0.977427822,0,0,0,12,5,0% -12/20/2018 14:00,105.3588029,107.985221,0,0,0,0,0,0,0,0,0,0,0,0,0,1.838858007,1.88469765,2.869488674,-2.869488674,0.039442226,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.508832121,120.5860692,0.508832121,59.41393079,0,0.951735763,0,0,0,12,6,0% -12/20/2018 15:00,94.40354695,116.4377927,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64765272,2.032222856,8.948953562,-8.948953562,0,#DIV/0!,0,0,0.50005187,1,0.111283246,0,0.949948836,0.988710799,0.724496596,1,0,0,0.069134615,0.312029739,0.822726347,0.547222943,0.961238037,0.922476074,0,0,0,0,0,0,-0.30715487,107.8878531,0.30715487,72.11214688,0,0.887215669,0,0,0,12,7,0% -12/20/2018 16:00,84.12125244,125.7431724,43.51094934,233.7787958,19.56649058,19.30449261,0,19.30449261,18.97648869,0.328003915,33.41070223,22.27096693,11.1397353,0.590001884,10.54973342,1.468192826,2.19463237,-5.466935469,5.466935469,0.534945284,0.44969119,0.244059937,7.849806531,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,18.24092274,0.427454356,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.176820594,7.545532619,18.41774333,7.972986976,0,22.27096693,-0.095265128,95.46657974,0.095265128,84.53342026,0,0.525148976,18.41774333,19.66856246,31.29042409,12,8,70% -12/20/2018 17:00,75.27134925,136.3803498,193.4859783,572.2759746,47.98962168,108.878082,60.8769454,48.00113656,46.54255752,1.458579033,48.35997969,0,48.35997969,1.447064156,46.91291553,1.313732877,2.380286139,-1.524132141,1.524132141,0.790795636,0.248026354,1.229120968,39.53275542,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.73847662,1.048393055,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.890493958,38.00038821,45.62897058,39.04878127,60.8769454,0,0.106376902,83.89349841,-0.106376902,96.10650159,0.579973153,0,80.93596453,39.04878127,106.4926109,12,9,32% -12/20/2018 18:00,68.08245192,148.726288,326.2767982,707.91207,62.03308986,267.017638,204.3954624,62.62217565,60.16256332,2.459612325,80.98011376,0,80.98011376,1.870526537,79.10958722,1.188262949,2.59576341,-0.48588203,0.48588203,0.61324441,0.190124122,1.689202658,54.33056409,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,57.83054426,1.355190109,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.223821576,52.22460477,59.05436584,53.57979487,204.3954624,0,0.288730015,73.21806087,-0.288730015,106.7819391,0.876827841,0,238.2739978,53.57979487,273.340902,12,10,15% -12/20/2018 19:00,63.22180551,162.8524331,414.6311755,766.1762721,69.43979613,406.4873772,336.0157822,70.47159501,67.34593007,3.125664942,102.625995,0,102.625995,2.093866059,100.5321289,1.103428665,2.842311152,0.098608785,-0.098608785,0.513290594,0.167473649,1.859150492,59.79667061,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.73546961,1.516998832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346948203,57.47883427,66.08241781,58.9958331,336.0157822,0,0.438561979,63.98783431,-0.438561979,116.0121657,0.935991029,0,380.5901756,58.9958331,419.2017684,12,11,10% -12/20/2018 20:00,61.27270246,178.24218,449.3123684,784.8107189,72.09989022,501.4596504,428.1467314,73.31291894,69.92581251,3.387106424,111.1150634,0,111.1150634,2.17407771,108.9409857,1.0694104,3.110912907,0.571122493,-0.571122493,0.432485991,0.160467183,1.773330968,57.03641971,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.21535074,1.5751119,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28477225,54.82557612,68.50012299,56.40068802,428.1467314,0,0.545541391,56.93833182,-0.545541391,123.0616682,0.958347926,0,478.813655,56.40068802,515.7267773,12,12,8% -12/20/2018 21:00,62.51585469,193.7757072,427.2502217,773.1889092,70.42110843,537.2526395,465.7341947,71.51844482,68.29765218,3.220792642,105.715219,0,105.715219,2.123456245,103.5917628,1.091107499,3.3820241,1.068678934,-1.068678934,0.347398828,0.164824042,1.465342099,47.13043898,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.65030111,1.538436821,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.061635362,45.30357064,66.71193647,46.84200746,465.7341947,0,0.602354986,52.96125205,-0.602354986,127.0387479,0.966992469,0,517.0733954,46.84200746,547.7305525,12,13,6% -12/20/2018 22:00,66.76868413,208.2543955,350.3737861,725.6131983,64.15985555,503.9713533,439.1048885,64.86646478,62.22519918,2.641265598,86.88683729,0,86.88683729,1.93465637,84.95218092,1.165333375,3.634724884,1.73817708,-1.73817708,0.232907903,0.18311831,0.986186534,31.71914892,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.81322831,1.401651954,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.714488787,30.48965244,60.52771709,31.89130439,439.1048885,0,0.605150085,52.76035736,-0.605150085,127.2396426,0.967375869,0,485.3071901,31.89130439,506.179411,12,14,4% -12/20/2018 23:00,73.49319307,221.0092416,226.2539589,613.5083596,51.93828649,391.856291,339.7785375,52.07775343,50.37215552,1.705597912,56.42402278,0,56.42402278,1.56613097,54.85789181,1.282698197,3.857338943,2.951642858,-2.951642858,0.025393033,0.229557471,0.424900843,13.66627168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.41963189,1.134656556,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.307839214,13.13654016,48.7274711,14.27119672,339.7785375,0,0.553828701,56.36992358,-0.553828701,123.6300764,0.959719377,0,374.8195175,14.27119672,384.1597304,12,15,2% -12/20/2018 0:00,82.03344748,232.0024502,74.91710872,338.4340692,28.01184235,180.8335607,153.1016219,27.73193876,27.16718195,0.564756811,19.00918077,0,19.00918077,0.8446604,18.16452037,1.431753755,4.049206628,6.795996704,-6.795996704,0,0.373904477,0.2111651,6.791795488,0.387266238,1,0.14609705,0,0.945822887,0.98458485,0.724496596,1,26.34058377,0.611953584,0.055972704,0.312029739,0.85356535,0.578061946,0.961238037,0.922476074,0.144596382,6.528532161,26.48518015,7.140485746,93.81053273,0,0.452382416,63.10335966,-0.452382416,116.8966403,0.939474042,0,114.6177405,7.140485746,119.2910456,12,16,4% -12/20/2018 1:00,92.0505788,241.5657877,0,0,0,0,0,0,0,0,0,0,0,0,0,1.606585678,4.216118356,-27.62728309,27.62728309,0,#DIV/0!,0,0,1,0.764965656,0,0.036180308,0.961238037,1,0.627023233,0.902526637,0,0,0.115824807,0.201445184,0.724496596,0.448993192,0.977461552,0.938699589,0,0,0,0,0,0,0.304480709,72.27307513,-0.304480709,107.7269249,0.885785984,0,0,0,0,12,17,0% -12/20/2018 2:00,102.8508314,250.1646908,0,0,0,0,0,0,0,0,0,0,0,0,0,1.795085647,4.366197527,-4.383493889,4.383493889,0.720224706,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.124451627,82.85091098,-0.124451627,97.14908902,0.648237473,0,0,0,0,12,18,0% -12/20/2018 3:00,114.237182,258.3168039,0,0,0,0,0,0,0,0,0,0,0,0,0,1.993814955,4.50847874,-2.197884616,2.197884616,0.906014095,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.077165222,94.42564106,0.077165222,85.57435894,0,0,0,0,0,12,19,0% -12/20/2018 4:00,125.9639535,266.6501567,0,0,0,0,0,0,0,0,0,0,0,0,0,2.198485727,4.653923185,-1.320419273,1.320419273,0.755958684,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.286639293,106.656862,0.286639293,73.34313804,0,0.875564739,0,0,0,12,20,0% -12/20/2018 5:00,137.7877306,276.1428107,0,0,0,0,0,0,0,0,0,0,0,0,0,2.404849567,4.819601253,-0.814333747,0.814333747,0.669412962,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.489705677,119.3212384,0.489705677,60.67876156,0,0.947897855,0,0,0,12,21,0% -12/20/2018 6:00,149.3417729,288.8564584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.606505648,5.041496265,-0.461602614,0.461602614,0.609092386,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.672536432,132.2631309,0.672536432,47.73686906,0,0.975654585,0,0,0,12,22,0% -12/20/2018 7:00,159.6895667,310.4297337,0,0,0,0,0,0,0,0,0,0,0,0,0,2.787108719,5.418020949,-0.182649873,0.182649873,0.561388657,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.822682017,145.3541822,0.822682017,34.64581781,0,0.989223176,0,0,0,12,23,0% -12/21/2018 8:00,165.5077654,353.5998974,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888655443,6.171482444,0.060777436,-0.060777436,0.519760136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929918767,158.4221558,0.929918767,21.5778442,0,0.996231863,0,0,0,12,0,0% -12/21/2018 9:00,161.6634741,41.95569889,0,0,0,0,0,0,0,0,0,0,0,0,0,2.821559904,0.732265086,0.292511176,-0.292511176,0.480131332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986944792,170.7316347,0.986944792,9.268365304,0,0.999338605,0,0,0,12,1,0% -12/21/2018 10:00,151.9146642,67.2705535,0,0,0,0,0,0,0,0,0,0,0,0,0,2.651411072,1.174092648,0.533016036,-0.533016036,0.439002579,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.989877017,171.8405869,0.989877017,8.159413094,0,0.999488675,0,0,0,12,2,0% -12/21/2018 11:00,140.5166252,81.30932404,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452477763,1.419115417,0.807852284,-0.807852284,0.392002813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.938515546,159.8037377,0.938515546,20.19626235,0,0.996724377,0,0,0,12,3,0% -12/21/2018 12:00,128.7137851,91.29807922,0,0,0,0,0,0,0,0,0,0,0,0,0,2.246479342,1.593452083,1.16238271,-1.16238271,0.331374539,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.836357387,146.7574443,0.836357387,33.24255573,0,0.990216945,0,0,0,12,4,0% -12/21/2018 13:00,116.941393,99.79195619,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041012339,1.741698202,1.707538137,-1.707538137,0.23814747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.690358558,133.6584985,0.690358558,46.34150146,0,0.977573868,0,0,0,12,5,0% -12/21/2018 14:00,105.4555746,107.9232009,0,0,0,0,0,0,0,0,0,0,0,0,0,1.840546991,1.883615195,2.853036537,-2.853036537,0.042255707,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51046071,120.6945223,0.51046071,59.3054777,0,0.952049268,0,0,0,12,6,0% -12/21/2018 15:00,94.49509815,116.3700899,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64925059,2.031041219,8.776849362,-8.776849362,0,#DIV/0!,0,0,0.492585649,1,0.113446888,0,0.949700519,0.988462482,0.724496596,1,0,0,0.068298996,0.312029739,0.824643264,0.54913986,0.961238037,0.922476074,0,0,0,0,0,0,-0.308914422,107.9938207,0.308914422,72.00617927,0,0.888142876,0,0,0,12,7,0% -12/21/2018 16:00,84.20321121,125.6657197,42.23504404,227.571345,19.2502158,18.98813637,0,18.98813637,18.66975077,0.318385602,32.89761868,22.07677824,10.82084044,0.580465032,10.24037541,1.469623276,2.193280566,-5.555772557,5.555772557,0.519753247,0.455787753,0.235173562,7.563990166,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.94607458,0.42054494,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.170382445,7.270795058,18.11645702,7.691339998,0,22.07677824,-0.097010361,95.56703954,0.097010361,84.43296046,0,0.534591133,18.11645702,19.4933899,30.87449085,12,8,70% -12/21/2018 17:00,75.34307624,136.2893908,191.8894865,568.5428624,48.03071102,107.563553,59.53460109,48.02895187,46.58240787,1.446544003,47.97413077,0,47.97413077,1.448303152,46.52582761,1.314984749,2.378698605,-1.53748847,1.53748847,0.793079703,0.250304026,1.222145518,39.30840096,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.77678229,1.049290703,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.885440268,37.78473017,45.66222256,38.83402088,59.53460109,0,0.104714358,83.98929022,-0.104714358,96.01070978,0.572510564,0,79.74641058,38.83402088,105.1625006,12,9,32% -12/21/2018 18:00,68.13791994,148.6193973,324.9316046,705.4852422,62.22750184,265.4731652,202.6725805,62.80058475,60.35111307,2.449471687,80.65981823,0,80.65981823,1.876388776,78.78342945,1.189231048,2.593897815,-0.491802779,0.491802779,0.614256918,0.191509539,1.685555926,54.21327266,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.01178545,1.35943728,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.221179531,52.11185978,59.23296498,53.47129706,202.6725805,0,0.287281106,73.3047504,-0.287281106,106.6952496,0.875954443,0,236.7649124,53.47129706,271.7608069,12,10,15% -12/21/2018 19:00,63.25550583,162.7308508,413.6840586,764.3582817,69.71317933,405.0794885,334.3498936,70.72959493,67.61106976,3.118525175,102.4045991,0,102.4045991,2.102109571,100.3024895,1.104016847,2.84018914,0.09454715,-0.09454715,0.513985175,0.168517925,1.858289811,59.76898815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.99033196,1.522971228,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346324642,57.45222483,66.33665661,58.97519606,334.3498936,0,0.437425618,64.06025957,-0.437425618,115.9397404,0.935694852,0,379.1861308,58.97519606,417.7842171,12,11,10% -12/21/2018 20:00,61.28046187,178.1128571,448.8264756,783.3242849,72.42146883,500.3711442,426.7500063,73.6211379,70.23769434,3.383443558,111.0069498,0,111.0069498,2.183774492,108.8231753,1.069545827,3.108655797,0.567392266,-0.567392266,0.433123898,0.16135739,1.774932654,57.08793545,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.51514342,1.582137186,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.285932666,54.875095,68.80107609,56.45723219,426.7500063,0,0.544793535,56.98944433,-0.544793535,123.0105557,0.958222112,0,477.7223685,56.45723219,514.6724978,12,12,8% -12/21/2018 21:00,62.49694447,193.6493547,427.2419407,771.9203135,70.77229241,536.5894559,464.730479,71.85897689,68.63824667,3.220730216,105.7238007,0,105.7238007,2.134045738,103.5897549,1.090777454,3.379818835,1.064294567,-1.064294567,0.348148599,0.165649216,1.46906289,47.2501124,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.97769348,1.546108873,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.064331063,45.41860529,67.04202455,46.96471416,464.730479,0,0.602044629,52.98352579,-0.602044629,127.0164742,0.966949679,0,516.4130118,46.96471416,547.1504779,12,13,6% -12/21/2018 22:00,66.72621808,208.1396688,350.8194357,724.567702,64.52448656,503.8013679,438.5779076,65.22346031,62.57883522,2.644625093,87.00588518,0,87.00588518,1.94565134,85.06023384,1.164592203,3.632722525,1.731525859,-1.731525859,0.234045328,0.183925062,0.991532332,31.89108815,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.15315671,1.409617772,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.718361799,30.65492697,60.87151851,32.06454474,438.5779076,0,0.605295967,52.74985758,-0.605295967,127.2501424,0.967395782,0,485.1499364,32.06454474,506.1355396,12,14,4% -12/21/2018 23:00,73.43233418,220.9092305,227.0836957,612.9571561,52.30049242,392.2693566,339.8340642,52.43529243,50.72343961,1.711852819,56.63612392,0,56.63612392,1.577052815,55.0590711,1.281636009,3.85559342,2.937327033,-2.937327033,0.027841183,0.230313728,0.430946457,13.86071944,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,48.75729951,1.142569396,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.312219241,13.32345075,49.06951875,14.46602014,339.8340642,0,0.554417321,56.32940935,-0.554417321,123.6705907,0.959815227,0,375.2474283,14.46602014,384.7151492,12,15,3% -12/21/2018 0:00,81.95979783,231.9158007,75.90441318,339.8060955,28.37644872,182.1480725,154.0550789,28.09299363,27.5207941,0.572199529,19.25955839,0,19.25955839,0.855654627,18.40390377,1.430468326,4.047694309,6.729615123,-6.729615123,0,0.373844518,0.213913657,6.880198524,0.382974391,1,0.147517449,0,0.945648677,0.984410641,0.724496596,1,26.68322078,0.619918864,0.05544807,0.312029739,0.854823126,0.579319722,0.961238037,0.922476074,0.14649459,6.613508523,26.82971537,7.233427387,95.05592891,0,0.453361729,63.04042558,-0.453361729,116.9595744,0.93971279,0,116.1549876,7.233427387,120.8891211,12,16,4% -12/21/2018 1:00,91.96658447,241.4891274,0,0,0,0,0,0,0,0,0,0,0,0,0,1.605119701,4.214780382,-28.80251198,28.80251198,0,#DIV/0!,0,0,1,0.77556703,0,0.034705254,0.961238037,1,0.630796111,0.906299515,0,0,0.115824807,0.205715858,0.724496596,0.448993192,0.976883664,0.938121701,0,0,0,0,0,0,0.305807431,72.1932525,-0.305807431,107.8067475,0.886498414,0,0,0,0,12,17,0% -12/21/2018 2:00,102.7604318,250.093998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.793507876,4.364963704,-4.415623127,4.415623127,0.714730283,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.126017904,82.76045775,-0.126017904,97.23954225,0.653230983,0,0,0,0,12,18,0% -12/21/2018 3:00,114.1426848,258.2475229,0,0,0,0,0,0,0,0,0,0,0,0,0,1.992165667,4.50726956,-2.207992669,2.207992669,0.907742674,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.075468411,94.32813658,0.075468411,85.67186342,0,0,0,0,0,12,19,0% -12/21/2018 4:00,125.8673535,266.5761554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.196799739,4.652631619,-1.325624397,1.325624397,0.756848813,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.284929769,106.5546506,0.284929769,73.44534942,0,0.87451816,0,0,0,12,20,0% -12/21/2018 5:00,137.691351,276.0531663,0,0,0,0,0,0,0,0,0,0,0,0,0,2.403167427,4.818036663,-0.817717099,0.817717099,0.669991549,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.488101964,119.2159054,0.488101964,60.78409463,0,0.947562387,0,0,0,12,21,0% -12/21/2018 6:00,149.2499673,288.7251486,0,0,0,0,0,0,0,0,0,0,0,0,0,2.604903337,5.039204477,-0.464144588,0.464144588,0.609527089,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.671149619,132.155855,0.671149619,47.84414496,0,0.975500963,0,0,0,12,22,0% -12/21/2018 7:00,159.6157639,310.181047,0,0,0,0,0,0,0,0,0,0,0,0,0,2.785820619,5.413680548,-0.184773983,0.184773983,0.561751902,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.821608127,145.2460989,0.821608127,34.75390107,0,0.989143737,0,0,0,12,23,0% -12/22/2018 8:00,165.4972127,353.1477239,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888471265,6.163590527,0.058837606,-0.058837606,0.520091866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.929232162,158.3154378,0.929232162,21.68456224,0,0.996192134,0,0,0,12,0,0% -12/22/2018 9:00,161.7290383,41.65995005,0,0,0,0,0,0,0,0,0,0,0,0,0,2.822704214,0.727103295,0.290585601,-0.290585601,0.480460625,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986693066,170.6425092,0.986693066,9.357490753,0,0.99932568,0,0,0,12,1,0% -12/22/2018 10:00,152.0049168,67.12346385,0,0,0,0,0,0,0,0,0,0,0,0,0,2.652986277,1.171525449,0.530929542,-0.530929542,0.439359391,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990077723,171.9220147,0.990077723,8.077985298,0,0.999498914,0,0,0,12,2,0% -12/22/2018 11:00,140.6132153,81.21488846,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454163579,1.417467205,0.805345338,-0.805345338,0.392431526,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939154989,159.9101286,0.939154989,20.0898714,0,0.996760651,0,0,0,12,3,0% -12/22/2018 12:00,128.8113293,91.22313901,0,0,0,0,0,0,0,0,0,0,0,0,0,2.248181811,1.59214413,1.158925871,-1.158925871,0.331965693,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.837391559,146.8656912,0.837391559,33.13430883,0,0.990290776,0,0,0,12,4,0% -12/22/2018 13:00,117.0373654,99.7235056,0,0,0,0,0,0,0,0,0,0,0,0,0,2.042687374,1.740503514,1.701641966,-1.701641966,0.239155775,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.691716159,133.7661117,0.691716159,46.23388827,0,0.977716016,0,0,0,12,5,0% -12/22/2018 14:00,105.5480092,107.8544509,0,0,0,0,0,0,0,0,0,0,0,0,0,1.842160279,1.882415281,2.837869264,-2.837869264,0.044849463,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.512048038,120.8003451,0.512048038,59.19965493,0,0.952352912,0,0,0,12,6,0% -12/22/2018 15:00,94.58182817,116.2962849,0,0,0,0,0,0,0,0,0,0,0,0,0,1.650764314,2.029753079,8.621648217,-8.621648217,0,#DIV/0!,0,0,0.485658881,1,0.115471136,0,0.949467222,0.988229185,0.724496596,1,0,0,0.067519397,0.312029739,0.826436684,0.55093328,0.961238037,0.922476074,0,0,0,0,0,0,-0.310621806,108.0967074,0.310621806,71.90329258,0,0.88903255,0,0,0,12,7,0% -12/22/2018 16:00,84.27982374,125.5827439,41.04583292,221.6750381,18.9514498,18.68941449,0,18.68941449,18.37999367,0.309420826,32.40130677,21.87781323,10.52349354,0.571456135,9.952037403,1.470960417,2.191832365,-5.642622591,5.642622591,0.504901017,0.461714344,0.226958728,7.299772848,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.66754903,0.414018024,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.164430826,7.016819322,17.83197985,7.430837346,0,21.87781323,-0.098693175,95.66392263,0.098693175,84.33607737,0,0.543379353,17.83197985,19.31878934,30.4757411,12,8,71% -12/22/2018 17:00,75.40872331,136.1936138,190.406597,564.9537445,48.0823079,106.3294574,58.26164312,48.06781427,46.63244892,1.435365357,47.61614289,0,47.61614289,1.449858988,46.1662839,1.316130507,2.377026981,-1.550593532,1.550593532,0.795320801,0.25252438,1.215764919,39.10317895,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.82488365,1.050417901,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.880817545,37.58746297,45.70570119,38.63788087,58.26164312,0,0.103126395,84.08076912,-0.103126395,95.91923088,0.565158075,0,78.63273925,38.63788087,103.9204595,12,9,32% -12/22/2018 18:00,68.18661256,148.508715,323.7116119,703.1518123,62.43110697,264.0320954,201.0432418,62.98885361,60.54857875,2.440274866,80.37015632,0,80.37015632,1.882528221,78.4876281,1.190080895,2.591966045,-0.497745411,0.497745411,0.615273168,0.192860264,1.682500428,54.11499731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.20159697,1.363885288,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218965832,52.01739378,59.4205628,53.38127907,201.0432418,0,0.285917263,73.38631439,-0.285917263,106.6136856,0.875124235,0,235.3583761,53.38127907,270.2953556,12,10,15% -12/22/2018 19:00,63.2818702,162.6069736,412.868764,762.6155841,69.99553077,403.7897693,332.7924829,70.9972864,67.88490726,3.112379139,102.2154354,0,102.2154354,2.110623509,100.1048119,1.104476992,2.838027077,0.090364767,-0.090364767,0.514700404,0.169534576,1.858013985,59.76011665,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.25355499,1.529139547,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346124807,57.44369721,66.59967979,58.97283675,332.7924829,0,0.436383008,64.12667045,-0.436383008,115.8733295,0.935421753,0,377.9010076,58.97283675,416.4975498,12,11,10% -12/22/2018 20:00,61.28061785,177.9831459,448.4751461,781.9088126,72.75217254,499.4116155,425.4723943,73.9392212,70.55842612,3.380795088,110.9317379,0,110.9317379,2.193746429,108.7379914,1.069548549,3.106391909,0.563467468,-0.563467468,0.433795078,0.162221191,1.777099774,57.15763748,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.823443,1.58936182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.287502737,54.94209524,69.11094574,56.53145706,425.4723943,0,0.544145797,57.03369028,-0.544145797,122.9663097,0.958112862,0,476.7615191,56.53145706,513.7602271,12,12,8% -12/22/2018 21:00,62.47054979,193.5245842,427.3671461,770.7283232,71.13306339,536.0634167,463.8536036,72.20981314,68.98813907,3.221674068,105.7650368,0,105.7650368,2.144924314,103.6201125,1.090316779,3.377641179,1.059618176,-1.059618176,0.348948309,0.166444857,1.47331187,47.38677421,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.31402337,1.553990364,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.067409434,45.54996981,67.3814328,47.10396018,463.8536036,0,0.601838014,52.99835055,-0.601838014,127.0016495,0.966921167,0,515.8913004,47.10396018,546.7199003,12,13,6% -12/22/2018 22:00,66.67671975,208.0281632,351.3934228,723.6174823,64.89976594,503.7755765,438.1838259,65.59175059,62.94279854,2.64895205,87.15637105,0,87.15637105,1.956967398,85.19940366,1.163728294,3.630776385,1.724397498,-1.724397498,0.23526435,0.184692603,0.997344666,32.0780328,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.50301211,1.417816218,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.722572815,30.83462528,61.22558492,32.2524415,438.1838259,0,0.605546213,52.73184282,-0.605546213,127.2681572,0.967429919,0,485.137728,32.2524415,506.2463059,12,14,4% -12/22/2018 23:00,73.36507879,220.8136045,228.0312883,612.5464807,52.67613567,392.8360983,340.0293463,52.80675199,51.08775582,1.718996172,56.87720575,0,56.87720575,1.588379845,55.2888259,1.280462181,3.853924432,2.922041177,-2.922041177,0.030455218,0.231003982,0.437353751,14.06680004,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.10749411,1.15077579,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.316861304,13.52154325,49.42435542,14.67231904,340.0293463,0,0.555107828,56.28185799,-0.555107828,123.718142,0.95992741,0,375.827845,14.67231904,385.4305844,12,15,3% -12/22/2018 0:00,81.88044731,231.8343309,76.98517961,341.422502,28.76298024,183.6310873,155.1550702,28.47601706,27.89567026,0.580346803,19.53325808,0,19.53325808,0.867309978,18.6659481,1.429083399,4.046272393,6.659871955,-6.659871955,0,0.373617109,0.216827495,6.973917565,0.378399954,1,0.149039614,0,0.945461479,0.984223442,0.724496596,1,27.04641216,0.628363127,0.05488688,0.312029739,0.856170958,0.580667554,0.961238037,0.922476074,0.14850906,6.703594829,27.19492122,7.331957956,96.44439874,0,0.454437154,62.9712744,-0.454437154,117.0287256,0.939973785,0,117.8501278,7.331957956,122.6487476,12,16,4% -12/22/2018 1:00,91.87743838,241.418262,0,0,0,0,0,0,0,0,0,0,0,0,0,1.603563808,4.213543546,-30.16557981,30.16557981,0,#DIV/0!,0,0,1,0.786724525,0,0.03313823,0.961238037,1,0.634823017,0.910326421,0,0,0.115824807,0.210275045,0.724496596,0.448993192,0.976262325,0.937500362,0,0,0,0,0,0,0.30722349,72.10801549,-0.30722349,107.8919845,0.887252028,0,0,0,0,12,17,0% -12/22/2018 2:00,102.665381,250.0297151,0,0,0,0,0,0,0,0,0,0,0,0,0,1.791848926,4.363841756,-4.449884232,4.449884232,0.708871289,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.127663859,82.66538357,-0.127663859,97.33461643,0.658346478,0,0,0,0,12,18,0% -12/22/2018 3:00,114.0439044,258.1854303,0,0,0,0,0,0,0,0,0,0,0,0,0,1.990441624,4.506185839,-2.218578367,2.218578367,0.909552935,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.073702881,94.22669655,0.073702881,85.77330345,0,0,0,0,0,12,19,0% -12/22/2018 4:00,125.7666669,266.510474,0,0,0,0,0,0,0,0,0,0,0,0,0,2.195042426,4.651485263,-1.330995768,1.330995768,0.757767371,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.283163025,106.449075,0.283163025,73.55092499,0,0.873423274,0,0,0,12,20,0% -12/22/2018 5:00,137.5908248,275.973613,0,0,0,0,0,0,0,0,0,0,0,0,0,2.401412914,4.816648195,-0.821160043,0.821160043,0.670580327,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.486452285,119.1076661,0.486452285,60.89233395,0,0.947214996,0,0,0,12,21,0% -12/22/2018 6:00,149.1534841,288.6067687,0,0,0,0,0,0,0,0,0,0,0,0,0,2.603219388,5.037138357,-0.46669605,0.46669605,0.609963415,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.669727069,132.0460034,0.669727069,47.95399663,0,0.975342722,0,0,0,12,22,0% -12/22/2018 7:00,159.5357424,309.9485281,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78442398,5.409622326,-0.186877162,0.186877162,0.562111567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.820507004,145.1355791,0.820507004,34.86442093,0,0.989062068,0,0,0,12,23,0% -12/23/2018 8:00,165.4780928,352.699306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.888137559,6.155764159,0.056942723,-0.056942723,0.52041591,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.928524517,158.20597,0.928524517,21.79402999,0,0.996151126,0,0,0,12,0,0% -12/23/2018 9:00,161.7878159,41.34788097,0,0,0,0,0,0,0,0,0,0,0,0,0,2.823730077,0.721656662,0.288729629,-0.288729629,0.480778015,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986423754,170.5480797,0.986423754,9.451920259,0,0.999311845,0,0,0,12,1,0% -12/23/2018 10:00,152.0903373,66.9623155,0,0,0,0,0,0,0,0,0,0,0,0,0,2.654477146,1.16871288,0.528944422,-0.528944422,0.439698866,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990261323,171.9972235,0.990261323,8.002776549,0,0.999508277,0,0,0,12,2,0% -12/23/2018 11:00,140.7057059,81.10961946,0,0,0,0,0,0,0,0,0,0,0,0,0,2.455777845,1.415629915,0.802989098,-0.802989098,0.392834466,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.939774799,160.0137712,0.939774799,19.98622882,0,0.996795764,0,0,0,12,3,0% -12/23/2018 12:00,128.9049297,91.13939624,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249815445,1.590682543,1.155711466,-1.155711466,0.332515389,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.83840074,146.971625,0.83840074,33.02837497,0,0.990362648,0,0,0,12,4,0% -12/23/2018 13:00,117.1292517,99.64752647,0,0,0,0,0,0,0,0,0,0,0,0,0,2.044291092,1.739177428,1.696204858,-1.696204858,0.240085575,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.693040945,133.8713107,0.693040945,46.1286893,0,0.97785419,0,0,0,12,5,0% -12/23/2018 14:00,105.6360257,107.7790224,0,0,0,0,0,0,0,0,0,0,0,0,0,1.843696457,1.881098806,2.823964267,-2.823964267,0.047227358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.513592802,120.9034422,0.513592802,59.09655776,0,0.952646611,0,0,0,12,6,0% -12/23/2018 15:00,94.66366493,116.216437,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652192635,2.028359471,8.482046898,-8.482046898,0,#DIV/0!,0,0,0.479264781,1,0.11735435,0,0.949249332,0.988011295,0.724496596,1,0,0,0.066796,0.312029739,0.828105146,0.552601742,0.961238037,0.922476074,0,0,0,0,0,0,-0.312275625,108.1964239,0.312275625,71.80357613,0,0.889885038,0,0,0,12,7,0% -12/23/2018 16:00,84.35103602,125.4943122,39.94212403,216.0950028,18.67116505,18.40926114,0,18.40926114,18.10816054,0.301100603,31.92441997,21.67698505,10.24743492,0.563004516,9.684430405,1.472203306,2.190288941,-5.727092224,5.727092224,0.490455859,0.467455487,0.219395468,7.056512408,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.40625269,0.407894855,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.15895127,6.782988134,17.56520396,7.190882989,0,21.67698505,-0.100312292,95.75715392,0.100312292,84.24284608,0,0.5515566,17.56520396,19.14696715,30.09651102,12,8,71% -12/23/2018 17:00,75.4682436,136.0930926,189.0379022,561.5132273,48.144932,105.176002,57.05776974,48.11823222,46.69318466,1.425047556,47.28617532,0,47.28617532,1.451747336,45.83442798,1.317169332,2.375272555,-1.563417221,1.563417221,0.797513781,0.254684015,1.209984772,38.91726955,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.88326516,1.051786003,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.876629848,37.40875978,45.75989501,38.46054579,57.05776974,0,0.101614293,84.16786375,-0.101614293,95.83213625,0.557943239,0,77.59489187,38.46054579,102.7665499,12,9,32% -12/23/2018 18:00,68.22849784,148.3943188,322.6173859,700.9140186,62.64418611,262.6951366,199.5078777,63.1872589,60.75523277,2.432026129,80.11127368,0,80.11127368,1.888953344,78.22232034,1.190811931,2.589969454,-0.503699941,0.503699941,0.616291453,0.194174861,1.680038802,54.03582295,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.40024067,1.368540267,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.217182393,51.94128837,59.61742307,53.30982864,199.5078777,0,0.284639588,73.46269374,-0.284639588,106.5373063,0.874339263,0,234.0549937,53.30982864,268.9452104,12,10,15% -12/23/2018 19:00,63.30088296,162.4808794,412.1855764,760.9494006,70.28703003,402.6188398,331.3439941,71.27484573,68.16761675,3.107228983,102.0585784,0,102.0585784,2.119413287,99.93916513,1.104808827,2.835826317,0.086067906,-0.086067906,0.515435211,0.170522779,1.858323489,59.77007136,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.5253061,1.535507712,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346349042,57.45326605,66.87165514,58.98877377,331.3439941,0,0.435434989,64.18702385,-0.435434989,115.8129762,0.935172296,0,376.7353789,58.98877377,415.3423516,12,11,10% -12/23/2018 20:00,61.27317087,177.8531229,448.2583102,780.5649415,73.09212409,498.5813697,424.3140823,74.26728736,70.88812687,3.379160487,110.8894143,0,110.8894143,2.203997223,108.6854171,1.069418575,3.104122579,0.559354131,-0.559354131,0.4344985,0.163058046,1.779831096,57.24548616,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.14036391,1.596788485,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.28948157,55.02653874,69.42984548,56.62332722,424.3140823,0,0.543598693,57.07104483,-0.543598693,122.9289552,0.958020382,0,475.9313849,56.62332722,512.9902201,12,12,8% -12/23/2018 21:00,62.43668709,193.4014723,427.6254017,769.6130682,71.50350511,535.6743806,463.1033491,72.57103152,69.34741061,3.223620908,105.838824,0,105.838824,2.156094499,103.6827295,1.089725764,3.37549247,1.054657812,-1.054657812,0.349796582,0.167210612,1.478086577,47.54034521,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.65936884,1.562083125,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.070868694,45.6975881,67.73023753,47.25967123,463.1033491,0,0.601735298,53.00571942,-0.601735298,126.9942806,0.966906985,0,515.5081007,47.25967123,546.4386103,12,13,6% -12/23/2018 22:00,66.62022154,207.9199551,352.0949828,722.7619006,65.2857428,503.893255,437.9218775,65.97137748,63.31713678,2.654240706,87.33811101,0,87.33811101,1.968606024,85.36950498,1.162742214,3.628887797,1.71680662,-1.71680662,0.236562466,0.185420827,1.00362066,32.27989034,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.86284025,1.426248363,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.727119752,31.02865842,61.58996001,32.45490678,437.9218775,0,0.605900611,52.70632292,-0.605900611,127.2936771,0.967478215,0,485.2698364,32.45490678,506.5109237,12,14,4% -12/23/2018 23:00,73.29147415,220.7224365,229.0957801,612.2737835,53.0652032,393.5549005,340.3627882,53.19211229,51.46509153,1.727020761,57.14703592,0,57.14703592,1.600111666,55.54692426,1.279177538,3.85233325,2.905825749,-2.905825749,0.03322822,0.231628899,0.444121527,14.28447496,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.47020355,1.159275455,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.321764534,13.73078067,49.79196808,14.89005612,340.3627882,0,0.55589966,56.22729648,-0.55589966,123.7727035,0.96005571,0,376.5592066,14.89005612,386.3044505,12,15,3% -12/23/2018 0:00,81.79545342,231.7581066,78.15910544,343.2750009,29.17119688,185.2795643,156.3987903,28.88077402,28.29157767,0.589196351,19.83019922,0,19.83019922,0.879619216,18.95058001,1.427599975,4.044942029,6.587060117,-6.587060117,0,0.373228387,0.219904804,7.072894417,0.373551311,1,0.150662378,0,0.945261331,0.984023294,0.724496596,1,27.42992123,0.637281128,0.054289773,0.312029739,0.8576078,0.582104396,0.961238037,0.922476074,0.150638981,6.798735144,27.58056021,7.436016272,97.97581711,0,0.455607865,62.89594784,-0.455607865,117.1040522,0.940256504,0,119.7029595,7.436016272,124.5696834,12,16,4% -12/23/2018 1:00,91.78321255,241.353249,0,0,0,0,0,0,0,0,0,0,0,0,0,1.601919257,4.212408856,-31.75519775,31.75519775,0,#DIV/0!,0,0,1,0.798411984,0,0.031480504,0.961238037,1,0.639104072,0.914607476,0,0,0.115824807,0.215123071,0.724496596,0.448993192,0.97559664,0.936834677,0,0,0,0,0,0,0.308727738,72.01742522,-0.308727738,107.9825748,0.888045002,0,0,0,0,12,17,0% -12/23/2018 2:00,102.5657595,249.9718911,0,0,0,0,0,0,0,0,0,0,0,0,0,1.790110204,4.362832537,-4.486334335,4.486334335,0.702637954,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.129388165,82.56576185,-0.129388165,97.43423815,0.663565893,0,0,0,0,12,18,0% -12/23/2018 3:00,113.9409285,258.1305668,0,0,0,0,0,0,0,0,0,0,0,0,0,1.988644355,4.505228291,-2.229644094,2.229644094,0.911445286,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.071870044,94.12140345,0.071870044,85.87859655,0,0,0,0,0,12,19,0% -12/23/2018 4:00,125.6619875,266.4531455,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193215427,4.650484691,-1.336531898,1.336531898,0.758714105,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.281340469,106.3402244,0.281340469,73.65977562,0,0.872279389,0,0,0,12,20,0% -12/23/2018 5:00,137.4862528,275.9041773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.399587788,4.815436314,-0.824660788,0.824660788,0.67117899,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.484757941,118.9966146,0.484757941,61.00338539,0,0.946855738,0,0,0,12,21,0% -12/23/2018 6:00,149.0524343,288.5013549,0,0,0,0,0,0,0,0,0,0,0,0,0,2.601455737,5.03529854,-0.469255351,0.469255351,0.610401081,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.668269894,131.9336744,0.668269894,48.0663256,0,0.97517993,0,0,0,12,22,0% -12/23/2018 7:00,159.4496262,309.7323827,0,0,0,0,0,0,0,0,0,0,0,0,0,2.782920969,5.405849878,-0.18895793,0.18895793,0.562467399,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.819379491,145.0227266,0.819379491,34.97727341,0,0.988978214,0,0,0,12,23,0% -12/24/2018 8:00,165.4504397,352.2557386,0,0,0,0,0,0,0,0,0,0,0,0,0,2.887654921,6.148022447,0.055094131,-0.055094131,0.520732038,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927796349,158.0938709,0.927796349,21.90612913,0,0.996108863,0,0,0,12,0,0% -12/24/2018 9:00,161.8396838,41.01991791,0,0,0,0,0,0,0,0,0,0,0,0,0,2.824635343,0.715932626,0.28694449,-0.28694449,0.481083292,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.986137015,170.4485566,0.986137015,9.551443431,0,0.999297107,0,0,0,12,1,0% -12/24/2018 10:00,152.1708075,66.7871911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.655881616,1.165656383,0.527061795,-0.527061795,0.440020814,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990427608,172.0659503,0.990427608,7.934049735,0,0.999516755,0,0,0,12,2,0% -12/24/2018 11:00,140.7939922,80.99356079,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45731873,1.413604309,0.800784494,-0.800784494,0.393211476,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940374413,160.1145296,0.940374413,19.8854704,0,0.996829689,0,0,0,12,3,0% -12/24/2018 12:00,128.9944903,91.04689347,0,0,0,0,0,0,0,0,0,0,0,0,0,2.251378573,1.589068065,1.152739862,-1.152739862,0.333023563,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.839384051,147.075134,0.839384051,32.92486601,0,0.990432511,0,0,0,12,4,0% -12/24/2018 13:00,117.2169638,99.56406604,0,0,0,0,0,0,0,0,0,0,0,0,0,2.045821957,1.737720769,1.691224758,-1.691224758,0.240937223,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.694331786,133.9739931,0.694331786,46.02600689,0,0.977988318,0,0,0,12,5,0% -12/24/2018 14:00,105.7195442,107.6969689,0,0,0,0,0,0,0,0,0,0,0,0,0,1.84515413,1.879666702,2.811300921,-2.811300921,0.049392918,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.515093701,121.0037183,0.515093701,58.99628173,0,0.952930283,0,0,0,12,6,0% -12/24/2018 15:00,94.74053787,116.1306066,0,0,0,0,0,0,0,0,0,0,0,0,0,1.653534321,2.026861448,8.356919215,-8.356919215,0,#DIV/0!,0,0,0.47339698,1,0.119095042,0,0.949047205,0.987809168,0.724496596,1,0,0,0.066128955,0.312029739,0.829647329,0.554143925,0.961238037,0.922476074,0,0,0,0,0,0,-0.313874494,108.2928814,0.313874494,71.70711861,0,0.890700659,0,0,0,12,7,0% -12/24/2018 16:00,84.41679581,125.400492,38.92271648,210.8354598,18.41029164,18.1485693,0,18.1485693,17.85515342,0.293415878,31.46946266,21.4770612,9.992401462,0.55513822,9.437263242,1.473351031,2.18865147,-5.808779363,5.808779363,0.476486535,0.472996063,0.212464298,6.833582172,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,17.16305262,0.40219575,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.153929661,6.568699112,17.31698228,6.970894862,0,21.4770612,-0.101866457,95.8466595,0.101866457,84.1533405,0,0.559161291,17.31698228,18.98003613,29.73903633,12,8,72% -12/24/2018 17:00,75.52159216,135.9879005,187.7839585,558.2256583,48.21909483,104.1033628,55.92265679,48.18070601,46.76511121,1.4155948,46.98437845,0,46.98437845,1.453983619,45.53039483,1.31810044,2.373436606,-1.575929612,1.575929612,0.799653526,0.256779627,1.204810495,38.75084703,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,44.9524037,1.053406182,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.872881102,37.24878813,45.8252848,38.30219431,55.92265679,0,0.100179302,84.25050443,-0.100179302,95.74949557,0.550894905,0,76.63279152,38.30219431,101.7008116,12,9,33% -12/24/2018 18:00,68.26354565,148.276285,321.6494471,698.7739442,62.8670129,261.4629452,198.0668753,63.3960699,60.9713405,2.424729397,79.88330477,0,79.88330477,1.895672393,77.98763237,1.191423631,2.587909377,-0.509656281,0.509656281,0.617310047,0.195451954,1.678173513,53.97582885,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.60797165,1.373408196,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.215830997,51.88361976,59.82380265,53.25702796,198.0668753,0,0.283449142,73.53383135,-0.283449142,106.4661687,0.873601513,0,232.8553245,53.25702796,267.7109841,12,10,15% -12/24/2018 19:00,63.31252997,162.3526445,411.6347322,759.3608301,70.58784944,401.5672582,330.0048164,71.56244182,68.45936534,3.103076487,101.9340907,0,101.9340907,2.128484102,99.80560656,1.105012106,2.833588197,0.081663039,-0.081663039,0.516188487,0.171481763,1.859218636,59.79886236,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,65.80574594,1.542079486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.346997573,57.48094106,67.15274351,59.02302055,330.0048164,0,0.434582353,64.24127866,-0.434582353,115.7587213,0.934947008,0,375.6897592,59.02302055,414.3191457,12,11,10% -12/24/2018 20:00,61.25812273,177.7228638,448.1758504,779.2931975,73.44143847,497.8806439,423.2751969,74.605447,71.22690813,3.37853887,110.8799541,0,110.8799541,2.21453034,108.6654237,1.069155935,3.10184913,0.555058574,-0.555058574,0.435233083,0.163867461,1.783125257,57.35143771,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.46601334,1.604419693,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.291868179,55.1283834,69.75788152,56.73280309,423.2751969,0,0.543152691,57.10148485,-0.543152691,122.8985151,0.957944854,0,475.2321784,56.73280309,512.3626634,12,12,8% -12/24/2018 21:00,62.39537398,193.2800954,428.0162288,768.574557,71.88369242,535.4221336,462.4794326,72.942701,69.71613387,3.226567127,105.9450486,0,105.9450486,2.167558549,103.7774901,1.089004714,3.373374043,1.049421942,-1.049421942,0.350691968,0.167946184,1.48338447,47.71074365,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01379966,1.57038879,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.074706999,45.86138156,68.08850666,47.43177035,462.4794326,0,0.601736589,53.00562679,-0.601736589,126.9943732,0.966907164,0,515.2631831,47.43177035,546.3063281,12,13,6% -12/24/2018 22:00,66.55675697,207.8151206,352.9233181,722.0001701,65.68245465,504.1536038,437.7912325,66.36237134,63.7018863,2.660485048,87.55091284,0,87.55091284,1.98056835,85.57034449,1.161634549,3.62705809,1.708768521,-1.708768521,0.237937062,0.186109705,1.010357431,32.49656805,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.23267613,1.434915028,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.732000519,31.23693728,61.96467665,32.6718523,437.7912325,0,0.606358905,52.67330883,-0.606358905,127.3266912,0.967540586,0,485.5454622,32.6718523,506.9285361,12,14,4% -12/24/2018 23:00,73.21156859,220.6357988,230.2761983,612.1363163,53.46766376,394.4240716,340.8327359,53.59133567,51.85541642,1.735919252,57.44537767,0,57.44537767,1.612247337,55.83313033,1.277782922,3.850821137,2.888722527,-2.888722527,0.036153043,0.232189276,0.451248686,14.51370891,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,49.84539868,1.168067707,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.326928137,13.95112906,50.17232682,15.11919676,340.8327359,0,0.556792216,56.16575291,-0.556792216,123.8342471,0.960199894,0,377.4398837,15.11919676,387.3350956,12,15,3% -12/24/2018 0:00,81.70487443,231.687193,79.42590495,345.3551204,29.60082527,187.0904269,157.7834297,29.3069972,28.70825117,0.598746021,20.15030431,0,20.15030431,0.892574097,19.25773022,1.426019074,4.043704353,6.511471867,-6.511471867,0,0.372684772,0.223143524,7.177062794,0.368437107,1,0.152384539,0,0.945048272,0.983810235,0.724496596,1,27.83347888,0.646666895,0.053657407,0.312029739,0.859132572,0.583629167,0.961238037,0.922476074,0.152883404,6.89886575,27.98636228,7.545532645,99.65015936,0,0.456872999,62.8144888,-0.456872999,117.1855112,0.940560396,0,121.7133557,7.545532645,126.6517559,12,16,4% -12/24/2018 1:00,91.68397953,241.2941445,0,0,0,0,0,0,0,0,0,0,0,0,0,1.600187314,4.211377288,-33.62234032,33.62234032,0,#DIV/0!,0,0,1,0.810602923,0,0.029733364,0.961238037,1,0.643639465,0.919142869,0,0,0.115824807,0.220260352,0.724496596,0.448993192,0.974885651,0.936123688,0,0,0,0,0,0,0.310319003,71.92154386,-0.310319003,108.0784561,0.888875481,0,0,0,0,12,17,0% -12/24/2018 2:00,102.4616481,249.9205728,0,0,0,0,0,0,0,0,0,0,0,0,0,1.788293117,4.361936864,-4.525036053,4.525036053,0.696019571,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.131189482,82.46166668,-0.131189482,97.53833332,0.668871884,0,0,0,0,12,18,0% -12/24/2018 3:00,113.833844,258.08297,0,0,0,0,0,0,0,0,0,0,0,0,0,1.986775378,4.50439757,-2.241192585,2.241192585,0.913420194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.06997132,94.01233993,0.06997132,85.98766007,0,0,0,0,0,12,19,0% -12/24/2018 4:00,125.553408,266.4041979,0,0,0,0,0,0,0,0,0,0,0,0,0,2.191320357,4.649630394,-1.342231329,1.342231329,0.759688765,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.279463499,106.2281873,0.279463499,73.77181272,0,0.871085758,0,0,0,12,20,0% -12/24/2018 5:00,137.3777336,275.8448784,0,0,0,0,0,0,0,0,0,0,0,0,0,2.39769377,4.814401353,-0.828217536,0.828217536,0.67178723,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.48302022,118.8828438,0.48302022,61.11715619,0,0.946484665,0,0,0,12,21,0% -12/24/2018 6:00,148.946926,288.4089291,0,0,0,0,0,0,0,0,0,0,0,0,0,2.59961427,5.033685406,-0.471820833,0.471820833,0.610839804,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.666779176,131.8189641,0.666779176,48.18103588,0,0.975012655,0,0,0,12,22,0% -12/24/2018 7:00,159.3575372,309.5327788,0,0,0,0,0,0,0,0,0,0,0,0,0,2.781313713,5.402366133,-0.191014804,0.191014804,0.562819145,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.818226397,144.9076414,0.818226397,35.09235859,0,0.988892218,0,0,0,12,23,0% -12/25/2018 8:00,165.414294,351.8180884,0,0,0,0,0,0,0,0,0,0,0,0,0,2.88702406,6.14038401,0.053293168,-0.053293168,0.521040021,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.927048138,157.9792516,0.927048138,22.02074842,0,0.996065368,0,0,0,12,0,0% -12/25/2018 9:00,161.8845186,40.67653539,0,0,0,0,0,0,0,0,0,0,0,0,0,2.825417858,0.709939471,0.285231414,-0.285231414,0.481376245,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985832968,170.3441362,0.985832968,9.655863763,0,0.999281469,0,0,0,12,1,0% -12/25/2018 10:00,152.2462067,66.59819222,0,0,0,0,0,0,0,0,0,0,0,0,0,2.657197581,1.16235773,0.525282781,-0.525282781,0.440325044,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990576327,172.1279223,0.990576327,7.872077672,0,0.999524334,0,0,0,12,2,0% -12/25/2018 11:00,140.8779673,80.86676497,0,0,0,0,0,0,0,0,0,0,0,0,0,2.458784373,1.411391304,0.798732465,-0.798732465,0.393562394,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.940953232,160.2122604,0.940953232,19.78773956,0,0.996862396,0,0,0,12,3,0% -12/25/2018 12:00,129.0799145,90.94567838,0,0,0,0,0,0,0,0,0,0,0,0,0,2.252869506,1.587301528,1.150011486,-1.150011486,0.333490143,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.840340586,147.1761021,0.840340586,32.82389787,0,0.990500315,0,0,0,12,4,0% -12/25/2018 13:00,117.3004135,99.47317491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.047278429,1.73613442,1.686699892,-1.686699892,0.24171102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.695587531,134.0740544,0.695587531,45.92594565,0,0.97811832,0,0,0,12,5,0% -12/25/2018 14:00,105.7984851,107.6083461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846531909,1.878119942,2.799860676,-2.799860676,0.051349315,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.516549417,121.1010765,0.516549417,58.89892348,0,0.95320384,0,0,0,12,6,0% -12/25/2018 15:00,94.81237717,116.0388555,0,0,0,0,0,0,0,0,0,0,0,0,0,1.654788153,2.02526009,8.245293321,-8.245293321,0,#DIV/0!,0,0,0.468049599,1,0.120691858,0,0.948861172,0.987623135,0.724496596,1,0,0,0.065518393,0.312029739,0.83106203,0.555558626,0.961238037,0.922476074,0,0,0,0,0,0,-0.315417024,108.385991,0.315417024,71.61400902,0,0.891479704,0,0,0,12,7,0% -12/25/2018 16:00,84.47705181,125.3013514,37.98642789,205.8998056,18.16972003,17.90819367,0,17.90819367,17.62183593,0.286357739,31.03878742,21.28065408,9.758133332,0.547884098,9.210249234,1.474402696,2.186921139,-5.887275941,5.887275941,0.46306283,0.478321365,0.206146459,6.630378753,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.93877898,0.396940164,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.149352408,6.373372256,17.08813138,6.77031242,0,21.28065408,-0.103354416,95.93236567,0.103354416,84.06763433,0,0.566227733,17.08813138,18.82000893,29.40545083,12,8,72% -12/25/2018 17:00,75.5687252,135.8781108,186.6453028,555.0951287,48.30529995,103.1117021,54.85597407,48.25572806,46.84871693,1.407011132,46.71089759,0,46.71089759,1.456583021,45.25431457,1.318923066,2.371520414,-1.588100991,1.588100991,0.801734954,0.258808013,1.20024738,38.60408156,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.03276869,1.05528944,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.869575141,37.10771158,45.90234383,38.16300102,54.85597407,0,0.098822654,84.32862228,-0.098822654,95.67137772,0.544043139,0,75.74636017,38.16300102,100.7232811,12,9,33% -12/25/2018 18:00,68.29172707,148.1546899,320.8082823,696.7335184,63.09985397,260.3361404,196.7205915,63.6155489,61.19716056,2.418388342,79.68637563,0,79.68637563,1.902693411,77.78368222,1.191915489,2.58578714,-0.515604233,0.515604233,0.618327206,0.196690227,1.676906885,53.93508974,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,58.82503847,1.378494899,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214913329,51.84445978,60.0399518,53.22295468,196.7205915,0,0.282346961,73.59967126,-0.282346961,106.4003287,0.872912916,0,231.759897,53.22295468,266.5932564,12,10,15% -12/25/2018 19:00,63.31679828,162.2223452,411.2164263,757.8508512,70.89815417,400.635532,328.7752956,71.86023636,68.76031324,3.09992312,101.8420244,0,101.8420244,2.137840935,99.70418346,1.105086602,2.831314045,0.077156856,-0.077156856,0.51695909,0.172410803,1.860699593,59.84649503,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.09502851,1.54885848,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.348070521,57.5267274,67.44309903,59.07558587,328.7752956,0,0.433825858,64.2893951,-0.433825858,115.7106049,0.934746381,0,374.7646169,59.07558587,413.4284063,12,11,10% -12/25/2018 20:00,61.23547633,177.5924447,448.2276048,778.0939935,73.80022285,497.3096144,422.3558116,74.95380285,71.57487383,3.378929017,110.9033212,0,110.9033212,2.225349013,108.6779722,1.068760681,3.099572887,0.550587412,-0.550587412,0.435997697,0.164648991,1.786980761,57.47544399,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.80049121,1.612257784,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.294661478,55.24758295,70.09515269,56.85984073,422.3558116,0,0.542808215,57.12498841,-0.542808215,122.8750116,0.957886435,0,474.6640552,56.85984073,511.8776838,12,12,8% -12/25/2018 21:00,62.34662936,193.1605306,428.539105,767.6126768,72.27369094,535.3063924,461.9815111,73.32488129,70.0943725,3.230508789,106.0835859,0,106.0835859,2.179318443,103.9042675,1.08815396,3.371287244,1.043919448,-1.043919448,0.35163295,0.168651332,1.489202903,47.89788446,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.37737702,1.578908794,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.078922434,46.04126843,68.45629945,47.62017722,461.9815111,0,0.601841951,52.99806811,-0.601841951,127.0019319,0.96692171,0,515.1562522,47.62017722,546.3227058,12,13,6% -12/25/2018 22:00,66.48636103,207.713737,353.8775933,721.3313567,66.08992687,504.5557464,437.7909959,66.76475051,64.09707173,2.667678777,87.79457468,0,87.79457468,1.992855141,85.80171954,1.160405908,3.625288612,1.700299152,-1.700299152,0.23938541,0.186759287,1.017552051,32.72797178,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,61.6125434,1.443816766,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.737212997,31.45937134,62.3497564,32.90318811,437.7909959,0,0.606920789,52.63281259,-0.606920789,127.3671874,0.967616926,0,485.9637343,32.90318811,507.4982128,12,14,4% -12/25/2018 23:00,73.12541196,220.5537642,231.5715448,612.1311361,53.88346722,395.441838,341.437472,54.004366,52.25868188,1.745684121,57.77198741,0,57.77198741,1.624785346,56.14720207,1.276279206,3.849389362,2.870774502,-2.870774502,0.039222336,0.232686046,0.458734177,14.75446801,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.23303277,1.177151452,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.33235135,14.18255587,50.56538412,15.35970732,341.437472,0,0.557784847,56.09725685,-0.557784847,123.9027431,0.960359702,0,378.4681729,15.35970732,388.5207942,12,15,3% -12/25/2018 0:00,81.60877014,231.6216549,80.78529169,347.6541999,30.05155769,189.060545,159.306159,29.754386,29.14539234,0.608993653,20.49349461,0,20.49349461,0.906165343,19.58732927,1.424341737,4.042560497,6.433397156,-6.433397156,0,0.371992934,0.226541336,7.286348086,0.363066258,1,0.154204848,0,0.944822342,0.983584305,0.724496596,1,28.25678267,0.656513706,0.052990465,0.312029739,0.860744148,0.585240743,0.961238037,0.922476074,0.155241241,7.00391493,28.41202391,7.660428636,101.467468,0,0.458231654,62.7269419,-0.458231654,117.2730581,0.940884884,0,123.8812308,7.660428636,128.8948281,12,16,4% -12/25/2018 1:00,91.57981309,241.2410036,0,0,0,0,0,0,0,0,0,0,0,0,0,1.598369267,4.210449804,-35.83539276,35.83539276,0,#DIV/0!,0,0,1,0.823270558,0,0.027898133,0.961238037,1,0.648429409,0.923932813,0,0,0.115824807,0.225687335,0.724496596,0.448993192,0.974128345,0.935366382,0,0,0,0,0,0,0.311996078,71.82043535,-0.311996078,108.1795647,0.889741575,0,0,0,0,12,17,0% -12/25/2018 2:00,102.3531283,249.8758052,0,0,0,0,0,0,0,0,0,0,0,0,0,1.786399088,4.361155521,-4.566057501,4.566057501,0.68900449,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.133066441,82.35317365,-0.133066441,97.64682635,0.674247859,0,0,0,0,12,18,0% -12/25/2018 3:00,113.7227383,258.0426747,0,0,0,0,0,0,0,0,0,0,0,0,0,1.984836218,4.503694284,-2.253226832,2.253226832,0.915478172,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.068008145,93.89958965,0.068008145,86.10041035,0,0,0,0,0,12,19,0% -12/25/2018 4:00,125.4410205,266.3636554,0,0,0,0,0,0,0,0,0,0,0,0,0,2.189358825,4.648922795,-1.34809259,1.34809259,0.7606911,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.277533524,106.1130527,0.277533524,73.88694731,0,0.869841584,0,0,0,12,20,0% -12/25/2018 5:00,137.2653646,275.795729,0,0,0,0,0,0,0,0,0,0,0,0,0,2.395732562,4.813543534,-0.831828459,0.831828459,0.672404734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.481240402,118.766446,0.481240402,61.23355398,0,0.946101824,0,0,0,12,21,0% -12/25/2018 6:00,148.8370651,288.3295,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597696836,5.032299106,-0.474390813,0.474390813,0.611279296,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.665255988,131.7019671,0.665255988,48.29803291,0,0.974840962,0,0,0,12,22,0% -12/25/2018 7:00,159.2595955,309.3498488,0,0,0,0,0,0,0,0,0,0,0,0,0,2.779604307,5.399173402,-0.193046283,0.193046283,0.563166548,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81704851,144.7904204,0.81704851,35.2095796,0,0.988804123,0,0,0,12,23,0% -12/26/2018 8:00,165.3697032,351.3873911,0,0,0,0,0,0,0,0,0,0,0,0,0,2.886245804,6.132866925,0.051541189,-0.051541189,0.521339627,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.926280335,157.8622173,0.926280335,22.13778269,0,0.996020661,0,0,0,12,0,0% -12/26/2018 9:00,161.9221975,40.31825893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826075478,0.703686367,0.283591639,-0.283591639,0.481656663,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985511696,170.235002,0.985511696,9.764997965,0,0.999264935,0,0,0,12,1,0% -12/26/2018 10:00,152.3164115,66.39544188,0,0,0,0,0,0,0,0,0,0,0,0,0,2.658422886,1.158819069,0.523608513,-0.523608513,0.44061136,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990707193,172.1828584,0.990707193,7.817141613,0,0.999531001,0,0,0,12,2,0% -12/26/2018 11:00,140.9575221,80.72929491,0,0,0,0,0,0,0,0,0,0,0,0,0,2.460172866,1.408991999,0.79683398,-0.79683398,0.393887054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.941510616,160.306812,0.941510616,19.69318801,0,0.996893854,0,0,0,12,3,0% -12/26/2018 12:00,129.1611039,90.83580498,0,0,0,0,0,0,0,0,0,0,0,0,0,2.254286528,1.585383876,1.147526847,-1.147526847,0.333915041,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.841269398,147.2744087,0.841269398,32.7255913,0,0.990566006,0,0,0,12,4,0% -12/26/2018 13:00,117.3795116,99.37490808,0,0,0,0,0,0,0,0,0,0,0,0,0,2.048658952,1.73441934,1.682628805,-1.682628805,0.242407217,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.696806995,134.1713868,0.696806995,45.82861321,0,0.978244119,0,0,0,12,5,0% -12/26/2018 14:00,105.8727685,107.5132129,0,0,0,0,0,0,0,0,0,0,0,0,0,1.847828398,1.876459555,2.789627076,-2.789627076,0.053099363,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.51795861,121.1954184,0.51795861,58.80458156,0,0.95346719,0,0,0,12,6,0% -12/26/2018 15:00,94.87911329,115.9412481,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655952918,2.023556518,8.146332307,-8.146332307,0,#DIV/0!,0,0,0.463217281,1,0.12214356,0,0.948691536,0.987453499,0.724496596,1,0,0,0.064964431,0.312029739,0.832348153,0.556844749,0.961238037,0.922476074,0,0,0,0,0,0,-0.316901811,108.4756627,0.316901811,71.52433734,0,0.892222423,0,0,0,12,7,0% -12/26/2018 16:00,84.53175319,125.1969603,37.132115,201.2906796,17.95030255,17.68895227,0,17.68895227,17.4090347,0.279917568,30.63459192,21.09021289,9.544379033,0.541267852,9.003111182,1.475357416,2.185099171,-5.962171412,5.962171412,0.45025495,0.483417186,0.200424101,6.446328038,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.73422634,0.392146716,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.145206579,6.196455708,16.87943292,6.588602424,0,21.09021289,-0.10477491,96.01419834,0.10477491,83.98580166,0,0.572786516,16.87943292,18.66879197,29.09778389,12,8,72% -12/26/2018 17:00,75.6095999,135.7637981,185.622457,552.1254644,48.40404172,102.2011783,53.85739658,48.34378176,46.94448127,1.399300488,46.46587422,0,46.46587422,1.45956045,45.00631377,1.319636464,2.369525282,-1.599901908,1.599901908,0.80375303,0.260766087,1.196300586,38.4771391,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.12482102,1.057446577,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.866715702,36.98568965,45.99153672,38.04313623,53.85739658,0,0.097545576,84.40214873,-0.097545576,95.59785127,0.537419092,0,74.93552991,38.04313623,99.83400171,12,9,33% -12/26/2018 18:00,68.31301443,148.0296103,320.0943442,694.7945108,63.3429682,259.3153101,195.4693597,63.84595037,61.432944,2.413006375,79.52060388,0,79.52060388,1.910024202,77.61057968,1.192287024,2.583604089,-0.521533462,0.521533462,0.619341164,0.197888433,1.676241075,53.91367501,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.05168249,1.383806032,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214430953,51.82387513,60.26611344,53.20768116,195.4693597,0,0.281334059,73.66015836,-0.281334059,106.3398416,0.87227534,0,230.7692156,53.20768116,265.5925788,12,10,15% -12/26/2018 19:00,63.31367633,162.0900586,410.9308077,756.4203158,71.21810145,399.8241191,327.6557361,72.16838293,69.07061293,3.097770006,101.7824204,0,101.7824204,2.147488526,99.63493191,1.105032114,2.829005208,0.07255629,-0.07255629,0.517745833,0.173309229,1.862766335,59.91296856,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.39330037,1.555848126,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.349567869,57.59062428,67.74286824,59.14647241,327.6557361,0,0.43316623,64.3313345,-0.43316623,115.6686655,0.934570872,0,373.9603754,59.14647241,412.6705587,12,11,10% -12/26/2018 20:00,61.20523626,177.461943,448.4133574,776.9676238,74.16857554,496.8683923,421.5559436,75.31244863,71.93211933,3.380329299,110.9594663,0,110.9594663,2.236456205,108.7230101,1.068232892,3.097295202,0.545947586,-0.545947586,0.436791154,0.165402244,1.791395914,57.61745049,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.14388918,1.620304908,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.297860242,55.38408499,70.44174942,57.0043899,421.5559436,0,0.54256565,57.14153488,-0.54256565,122.8584651,0.957845253,0,474.227109,57.0043899,511.5353421,12,12,8% -12/26/2018 21:00,62.29047416,193.042857,429.1934497,766.727187,72.67355578,535.3267943,461.6091729,73.71762145,70.48217994,3.235441516,106.2542967,0,106.2542967,2.191375844,104.0629209,1.087173867,3.369233452,1.038159663,-1.038159663,0.352617931,0.169325874,1.495539051,48.10167675,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.75015227,1.587644339,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.083512951,46.23716133,68.83366523,47.82480567,461.6091729,0,0.602051395,52.98304027,-0.602051395,127.0169597,0.966950612,0,515.1869374,47.82480567,546.4873162,12,13,6% -12/26/2018 22:00,66.4090712,207.6158829,354.9569153,720.7543714,66.50817111,505.0987138,437.9201943,67.17851952,64.50270436,2.675815162,88.0688804,0,88.0688804,2.005466748,86.06341365,1.159056946,3.623580736,1.691415164,-1.691415164,0.240904661,0.187369701,1.02520146,32.97400306,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.00245291,1.452953832,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.742754968,31.69586597,62.74520788,33.1488198,437.9201943,0,0.607585901,52.58484814,-0.607585901,127.4151519,0.96770711,0,486.5236933,33.1488198,508.2189329,12,14,4% -12/26/2018 23:00,73.03305681,220.4764065,232.9807729,612.2550953,54.31254256,396.6063228,342.1751963,54.43112648,52.67481901,1.756307478,58.1266093,0,58.1266093,1.63772355,56.48888575,1.274667304,3.848039216,2.852025875,-2.852025875,0.04242854,0.233120278,0.466576895,15.0067168,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,50.63303961,1.186525137,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.338033372,14.42502699,50.97107299,15.61155213,342.1751963,0,0.558876846,56.02184034,-0.558876846,123.9781597,0.960534851,0,379.6422743,15.61155213,389.859723,12,15,3% -12/26/2018 0:00,81.50720302,231.5615571,82.236951,350.1633605,30.52304901,191.1867003,160.9640969,30.22260334,29.60266646,0.619936874,20.85968342,0,20.85968342,0.920382546,19.93930088,1.422569057,4.041511592,6.353122549,-6.353122549,0,0.371159784,0.230095636,7.400666616,0.35744799,1,0.156121981,0,0.944583585,0.983345548,0.724496596,1,28.69949391,0.666814021,0.052289665,0.312029739,0.86244134,0.586937936,0.961238037,0.922476074,0.157711248,7.113802249,28.85720515,7.78061627,103.427804,0,0.459682865,62.63335472,-0.459682865,117.3666453,0.941229359,0,126.2064908,7.78061627,131.2987485,12,16,4% -12/26/2018 1:00,91.47078946,241.1938805,0,0,0,0,0,0,0,0,0,0,0,0,0,1.596466446,4.209627351,-38.48813375,38.48813375,0,#DIV/0!,0,0,1,0.836387761,0,0.02597619,0.961238037,1,0.653474075,0.928977479,0,0,0.115824807,0.231404418,0.724496596,0.448993192,0.973323665,0.934561701,0,0,0,0,0,0,0.313757697,71.71416663,-0.313757697,108.2858334,0.890641359,0,0,0,0,12,17,0% -12/26/2018 2:00,102.2402835,249.8376314,0,0,0,0,0,0,0,0,0,0,0,0,0,1.784429575,4.360489264,-4.609472117,4.609472117,0.681580153,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.135017622,82.2403611,-0.135017622,97.7596389,0.67967797,0,0,0,0,12,18,0% -12/26/2018 3:00,113.6077004,258.009713,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982828427,4.503118993,-2.265749938,2.265749938,0.917619749,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.065981998,93.78323856,0.065981998,86.21676144,0,0,0,0,0,12,19,0% -12/26/2018 4:00,125.3249182,266.3315381,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187332457,4.648362242,-1.354114121,1.354114121,0.761720843,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.27555198,105.9949113,0.27555198,74.00508874,0,0.868546033,0,0,0,12,20,0% -12/26/2018 5:00,137.1492434,275.756735,0,0,0,0,0,0,0,0,0,0,0,0,0,2.393705864,4.81286296,-0.835491651,0.835491651,0.673031177,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.47941979,118.6475144,0.47941979,61.35248558,0,0.945707267,0,0,0,12,21,0% -12/26/2018 6:00,148.7229567,288.2630636,0,0,0,0,0,0,0,0,0,0,0,0,0,2.595705267,5.031139572,-0.476963553,0.476963553,0.611719261,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.663701404,131.5827776,0.663701404,48.41722236,0,0.974664918,0,0,0,12,22,0% -12/26/2018 7:00,159.1559204,309.1836915,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777794835,5.396273411,-0.195050826,0.195050826,0.563509345,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.815846607,144.6711586,0.815846607,35.32884136,0,0.98871397,0,0,0,12,23,0% -12/27/2018 8:00,165.3167222,350.9646493,0,0,0,0,0,0,0,0,0,0,0,0,0,2.885321111,6.125488688,0.049839576,-0.049839576,0.52163062,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.925493368,157.7428686,0.925493368,22.25713142,0,0.995974761,0,0,0,12,0,0% -12/27/2018 9:00,161.9525984,39.94566893,0,0,0,0,0,0,0,0,0,0,0,0,0,2.826606074,0.697183445,0.282026426,-0.282026426,0.48192433,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.985173249,170.1213253,0.985173249,9.878674659,0,0.999247505,0,0,0,12,1,0% -12/27/2018 10:00,152.3812955,66.17908809,0,0,0,0,0,0,0,0,0,0,0,0,0,2.659555325,1.155042983,0.522040145,-0.522040145,0.440879567,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990819877,172.230471,0.990819877,7.769528984,0,0.999536741,0,0,0,12,2,0% -12/27/2018 11:00,141.0325449,80.58122634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.461482261,1.406407715,0.795090043,-0.795090043,0.394185284,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942045881,160.3980236,0.942045881,19.60197638,0,0.996924029,0,0,0,12,3,0% -12/27/2018 12:00,129.2379582,90.7173355,0,0,0,0,0,0,0,0,0,0,0,0,0,2.255627888,1.583316193,1.145286546,-1.145286546,0.334298155,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.842169499,147.3699274,0.842169499,32.63007256,0,0.990629529,0,0,0,12,4,0% -12/27/2018 13:00,117.4541677,99.26932656,0,0,0,0,0,0,0,0,0,0,0,0,0,2.049961947,1.732576595,1.679010363,-1.679010363,0.243026007,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.69798895,134.2658791,0.69798895,45.73412094,0,0.978365628,0,0,0,12,5,0% -12/27/2018 14:00,105.9423139,107.4116332,0,0,0,0,0,0,0,0,0,0,0,0,0,1.849042195,1.874686655,2.780585716,-2.780585716,0.054645527,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.519319903,121.286643,0.519319903,58.71335699,0,0.953720232,0,0,0,12,6,0% -12/27/2018 15:00,94.94067674,115.8378524,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657027403,2.021751923,8.059317795,-8.059317795,0,#DIV/0!,0,0,0.458895197,1,0.123449027,0,0.948538575,0.987300538,0.724496596,1,0,0,0.064467174,0.312029739,0.833504706,0.558001302,0.961238037,0.922476074,0,0,0,0,0,0,-0.318327427,108.5618049,0.318327427,71.43819511,0,0.892929023,0,0,0,12,7,0% -12/27/2018 16:00,84.58084957,125.0873919,36.35869036,197.0100237,17.75285434,17.49162745,0,17.49162745,17.21754028,0.274087166,30.25891628,20.90801679,9.350899484,0.535314059,8.815585425,1.476214309,2.183186841,-6.033056817,6.033056817,0.438132832,0.488269906,0.195280435,6.280890057,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.55015462,0.387833214,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.14148001,6.037430428,16.69163463,6.425263642,0,20.90801679,-0.106126665,96.09208243,0.106126665,83.90791757,0,0.578864871,16.69163463,18.52818009,28.81795794,12,8,73% -12/27/2018 17:00,75.64417461,135.6450399,184.7159277,549.3202089,48.51580343,101.3719524,52.92661281,48.44533964,47.05287295,1.392466687,46.24944571,0,46.24944571,1.462930478,44.78651523,1.320239907,2.36745256,-1.611303247,1.611303247,0.805702773,0.262650893,1.192975105,38.37018021,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.22901122,1.059888151,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.864306403,36.8828767,46.09331762,37.94276485,52.92661281,0,0.096349291,84.47101521,-0.096349291,95.52898479,0.531054823,0,74.20025063,37.94276485,99.03303137,12,9,33% -12/27/2018 18:00,68.32738172,147.9011257,319.5080448,692.9585194,63.59660529,258.4010106,194.313491,64.0875196,61.678933,2.408586602,79.38609688,0,79.38609688,1.917672296,77.46842459,1.19253778,2.581361612,-0.527433481,0.527433481,0.620350127,0.199045396,1.676178015,53.9116468,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.28813647,1.389347051,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214385266,51.82192553,60.50252174,53.21127258,194.313491,0,0.280411432,73.71523819,-0.280411432,106.2847618,0.87169058,0,229.8837613,53.21127258,264.709475,12,10,15% -12/27/2018 19:00,63.30315475,161.9558644,410.7779664,755.0699402,71.5478391,399.1334224,326.6463969,72.48702559,69.39040777,3.096617824,101.7553051,0,101.7553051,2.157431332,99.59787377,1.104848477,2.826663076,0.067868553,-0.067868553,0.518547484,0.174176429,1.865418566,59.99827342,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,66.70069934,1.563051656,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.351489401,57.67262255,68.05218874,59.23567421,326.6463969,0,0.432604159,64.36705947,-0.432604159,115.6329405,0.934420899,0,373.2774084,59.23567421,412.0459725,12,11,10% -12/27/2018 20:00,61.16740984,177.3314387,448.7328201,775.914255,74.54658439,496.5570122,420.8755449,75.68146736,72.29872982,3.382737543,111.048322,0,111.048322,2.247854567,108.8004675,1.067572697,3.095017473,0.541146407,-0.541146407,0.437612204,0.166126882,1.796368725,57.77739318,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.49628912,1.628562982,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.301463026,55.537828,70.79775214,57.16639098,420.8755449,0,0.542425329,57.1511054,-0.542425329,122.8488946,0.957821414,0,473.9213615,57.16639098,511.3356211,12,12,8% -12/27/2018 21:00,62.22693269,192.9271564,429.9786015,765.9177097,73.08332958,535.4828805,461.3619226,74.12095787,70.87959754,3.241360322,106.4570221,0,106.4570221,2.203732036,104.25329,1.086064859,3.367214095,1.032152421,-1.032152421,0.35364523,0.16996969,1.502389795,48.32202025,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.1321652,1.596596358,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.088476292,46.44896388,69.22064149,48.04556024,461.3619226,0,0.602364871,52.96054251,-0.602364871,127.0394575,0.966993832,0,515.3547748,48.04556024,546.799633,12,13,6% -12/27/2018 22:00,66.32492884,207.5216395,356.1603079,720.2679576,66.93718293,505.781421,438.1777543,67.60366674,64.9187799,2.684886844,88.37359316,0,88.37359316,2.018403037,86.35519013,1.157588384,3.621935879,1.682133962,-1.682133962,0.24249184,0.187941164,1.033302344,33.23455534,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.40240054,1.46232613,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.748624031,31.94631873,63.15102457,33.40864486,438.1777543,0,0.608353807,52.52943253,-0.608353807,127.4705675,0.967810985,0,487.2242687,33.40864486,509.0895586,12,14,4% -12/27/2018 23:00,72.93455993,220.4038009,234.5027593,612.5048251,54.75479508,397.9155163,343.0439994,54.87151684,53.10373599,1.767780854,58.50896807,0,58.50896807,1.651059095,56.85790897,1.272948209,3.846772009,2.832522106,-2.832522106,0.045763881,0.23349318,0.474775569,15.27041433,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.04533093,1.196186694,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.343973283,14.67850309,51.38930421,15.87468978,343.0439994,0,0.560067424,55.93953933,-0.560067424,124.0604607,0.960725034,0,380.9602624,15.87468978,391.3499293,12,15,3% -12/27/2018 0:00,81.40023979,231.5069646,83.7805071,352.8734647,31.01491261,193.465542,162.7542706,30.71127141,30.07969856,0.631572852,21.24876797,0,21.24876797,0.935214048,20.31355392,1.420702196,4.040558773,6.270930449,-6.270930449,0,0.370192467,0.233803512,7.519924641,0.35159189,1,0.158134518,0,0.944332054,0.983094018,0.724496596,1,29.16123379,0.677559394,0.051555763,0.312029739,0.864222871,0.588719466,0.961238037,0.922476074,0.160292001,7.228437599,29.32152579,7.905996993,105.531189,0,0.461225586,62.53377935,-0.461225586,117.4662207,0.941593178,0,128.6889734,7.905996993,133.8632903,12,16,4% -12/27/2018 1:00,91.35698894,241.1528285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594480252,4.208910857,-41.71256826,41.71256826,0,#DIV/0!,0,0,1,0.849926981,0,0.023968999,0.961238037,1,0.658773498,0.934276902,0,0,0.115824807,0.237411852,0.724496596,0.448993192,0.972470527,0.933708564,0,0,0,0,0,0,0.315602512,71.60280928,-0.315602512,108.3971907,0.891572871,0,0,0,0,12,17,0% -12/27/2018 2:00,102.123201,249.8060928,0,0,0,0,0,0,0,0,0,0,0,0,0,1.782386099,4.359938811,-4.655358355,4.655358355,0.673733144,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.13704153,82.12331173,-0.13704153,97.87668827,0.685147097,0,0,0,0,12,18,0% -12/27/2018 3:00,113.488822,257.9841138,0,0,0,0,0,0,0,0,0,0,0,0,0,1.980753608,4.502672203,-2.278764942,2.278764942,0.919845446,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.063894425,93.66337642,0.063894425,86.33662358,0,0,0,0,0,12,19,0% -12/27/2018 4:00,125.2051963,266.3078614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185242916,4.647949006,-1.360294201,1.360294201,0.762777698,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.273520361,105.8738567,0.273520361,74.12614326,0,0.867198252,0,0,0,12,20,0% -12/27/2018 5:00,137.0294689,275.7278954,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391615404,4.812359615,-0.83920509,0.83920509,0.673666212,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.477559722,118.5261445,0.477559722,61.47385549,0,0.945301053,0,0,0,12,21,0% -12/27/2018 6:00,148.6047063,288.2096033,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593641408,5.030206513,-0.479537236,0.479537236,0.612159387,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.662116523,131.4614913,0.662116523,48.5385087,0,0.974484591,0,0,0,12,22,0% -12/27/2018 7:00,159.046632,309.0343739,0,0,0,0,0,0,0,0,0,0,0,0,0,2.775887393,5.393667326,-0.19702684,0.19702684,0.563847264,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.81462147,144.5499509,0.81462147,35.45004911,0,0.988621799,0,0,0,12,23,0% -12/28/2018 8:00,165.2554141,350.5508303,0,0,0,0,0,0,0,0,0,0,0,0,0,2.884251084,6.118266184,0.048189747,-0.048189747,0.521912758,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.924687653,157.6213027,0.924687653,22.37869729,0,0.995927687,0,0,0,12,0,0% -12/28/2018 9:00,161.9756014,39.55940459,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827007553,0.69044186,0.280537065,-0.280537065,0.482179026,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984817653,170.0032672,0.984817653,9.996732798,0,0.99922918,0,0,0,12,1,0% -12/28/2018 10:00,152.4407295,65.94930785,0,0,0,0,0,0,0,0,0,0,0,0,0,2.660592643,1.151032561,0.520578863,-0.520578863,0.441129461,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990914011,172.2704694,0.990914011,7.729530599,0,0.999541535,0,0,0,12,2,0% -12/28/2018 11:00,141.1029209,80.42265053,0,0,0,0,0,0,0,0,0,0,0,0,0,2.462710555,1.403640045,0.793501702,-0.793501702,0.394456907,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.942558297,160.4857253,0.942558297,19.5142747,0,0.996952883,0,0,0,12,3,0% -12/28/2018 12:00,129.3103747,90.59034248,0,0,0,0,0,0,0,0,0,0,0,0,0,2.256891796,1.581099747,1.143291279,-1.143291279,0.334639366,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843039847,147.4625259,0.843039847,32.53747406,0,0.990690822,0,0,0,12,4,0% -12/28/2018 13:00,117.5242899,99.15649919,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05118581,1.730607386,1.675843759,-1.675843759,0.243567528,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.699132123,134.3574155,0.699132123,45.64258453,0,0.97848276,0,0,0,12,5,0% -12/28/2018 14:00,106.0070401,107.3036771,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85017188,1.872802464,2.772724203,-2.772724203,0.055989925,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.520631877,121.3746461,0.520631877,58.62535388,0,0.953962853,0,0,0,12,6,0% -12/28/2018 15:00,94.99699797,115.7287423,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658010394,2.019847592,7.983636383,-7.983636383,0,#DIV/0!,0,0,0.455079043,1,0.124607251,0,0.948402539,0.987164502,0.724496596,1,0,0,0.064026714,0.312029739,0.834530799,0.559027395,0.961238037,0.922476074,0,0,0,0,0,0,-0.319692409,108.6443241,0.319692409,71.35567589,0,0.893599665,0,0,0,12,7,0% -12/28/2018 16:00,84.62429088,124.9727242,35.66513842,193.0591464,17.57815473,17.31696738,0,17.31696738,17.0481085,0.268858878,29.91364212,20.73617017,9.177471948,0.530046221,8.647425727,1.476972503,2.181185512,-6.099529183,6.099529183,0.426765388,0.492866578,0.190699874,6.13356346,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.38729035,0.384016683,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.138161409,5.895814499,16.52545176,6.279831182,0,20.73617017,-0.10740838,96.16594147,0.10740838,83.83405853,0,0.584486974,16.52545176,18.39985254,28.56778725,12,8,73% -12/28/2018 17:00,75.67240896,135.5219178,183.9262043,546.6826068,48.64105528,100.624194,52.06333256,48.56086141,47.17434799,1.386513419,46.06174495,0,46.06174495,1.466707283,44.59503767,1.320732689,2.365303674,-1.622276303,1.622276303,0.807579276,0.264459626,1.190275723,38.28335879,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.34577766,1.062624434,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.862350709,36.79942065,46.20812837,37.86204508,52.06333256,0,0.095235027,84.53515283,-0.095235027,95.46484717,0.524983083,0,73.54049721,37.86204508,98.32044848,12,9,34% -12/28/2018 18:00,68.33480496,147.7693199,319.0497477,691.2269604,63.86100435,257.5937676,193.2532764,64.34049121,61.93535944,2.405131765,79.28295005,0,79.28295005,1.925644903,77.35730515,1.19266734,2.579061166,-0.533293626,0.533293626,0.621352271,0.200160021,1.676719351,53.92905802,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.53462332,1.395123177,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.214777462,51.83866186,60.74940078,53.23378503,193.2532764,0,0.279580062,73.7648569,-0.279580062,106.2351431,0.871160351,0,229.103993,53.23378503,263.9444406,12,10,15% -12/28/2018 19:00,63.28522695,161.8198462,410.7579218,753.8002966,71.88750415,398.5637854,325.747488,72.81629738,69.71983066,3.096466719,101.7606872,0,101.7606872,2.167673487,99.59301372,1.104535578,2.824289111,0.063101165,-0.063101165,0.519362755,0.175011851,1.868655639,60.1023888,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.01735315,1.570472062,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.353834649,57.77270222,68.3711878,59.34317429,325.747488,0,0.432140302,64.39653403,-0.432140302,115.603466,0.934296837,0,372.7160354,59.34317429,411.5549561,12,11,10% -12/28/2018 20:00,61.12200802,177.2010163,449.1856159,774.9339176,74.93432519,496.3754226,420.3144929,76.06092971,72.6747788,3.386150909,111.1697994,0,111.1697994,2.259546383,108.9102531,1.066780285,3.092741172,0.536191587,-0.536191587,0.438459528,0.166822629,1.801896815,57.95519554,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.85776171,1.637033662,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.305468108,55.70873839,71.16322981,57.34577205,420.3144929,0,0.542387529,57.15368332,-0.542387529,122.8463167,0.95781499,0,473.7467515,57.34577205,511.2784124,12,12,8% -12/28/2018 21:00,62.15603377,192.8135144,430.8937977,765.1837203,73.50304076,535.7740796,461.2391673,74.53491234,71.28665288,3.248259458,106.6915779,0,106.6915779,2.216387876,104.47519,1.084827439,3.365230669,1.025908099,-1.025908099,0.354713072,0.170582731,1.509751622,48.5588019,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.52344227,1.605765471,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.093809911,46.67656741,69.61725218,48.28233288,461.2391673,0,0.602782254,52.93057716,-0.602782254,127.0694228,0.967051307,0,515.6591918,48.28233288,547.259013,12,13,6% -12/28/2018 22:00,66.23398055,207.431091,357.4866875,719.8706815,67.37693978,506.6026462,438.5624841,68.04016211,65.34527645,2.694885653,88.70844954,0,88.70844954,2.031663329,86.67678621,1.156001037,3.620355509,1.672473757,-1.672473757,0.244143833,0.188473983,1.041851026,33.50951033,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,62.81236525,1.471933166,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.754817522,32.21061593,63.56718278,33.68254909,438.5624841,0,0.609223983,52.46658697,-0.609223983,127.533413,0.967928379,0,488.064257,33.68254909,510.1088117,12,14,5% -12/28/2018 23:00,72.82998369,220.3360242,236.1362766,612.876724,55.21010404,399.3672496,344.0418389,55.3254107,53.5453157,1.780094997,58.91876248,0,58.91876248,1.66478834,57.25397414,1.27112301,3.845589082,2.812309915,-2.812309915,0.04922037,0.233806109,0.483328644,15.54551063,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.46979415,1.206133486,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.350169958,14.94293612,51.81996411,16.14906961,344.0418389,0,0.561355694,55.85039502,-0.561355694,124.149605,0.960929914,0,382.4200587,16.14906961,392.9893018,12,15,3% -12/28/2018 0:00,81.28795291,231.4579429,85.4154921,355.7750853,31.526717,195.8935487,164.6735805,31.21996822,30.57607016,0.643898059,21.6606218,0,21.6606218,0.950646839,20.70997497,1.41874242,4.039703183,6.187098255,-6.187098255,0,0.369098348,0.23766171,7.64401754,0.345507944,1,0.160240911,0,0.944067816,0.98282978,0.724496596,1,29.64158025,0.688740399,0.050789568,0.312029739,0.866087348,0.590583944,0.961238037,0.922476074,0.162981879,7.347720414,29.80456213,8.036460813,107.7775502,0,0.462858663,62.42827377,-0.462858663,117.5717262,0.941975664,0,131.3283915,8.036460813,136.5880944,12,16,4% -12/28/2018 1:00,91.23849721,241.1178998,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592412181,4.208301237,-45.70045023,45.70045023,0,#DIV/0!,0,0,1,0.863860208,0,0.021878131,0.961238037,1,0.664327504,0.939830909,0,0,0.115824807,0.243709635,0.724496596,0.448993192,0.971567837,0.932805874,0,0,0,0,0,0,0.31752907,71.48644084,-0.31752907,108.5135592,0.892534103,0,0,0,0,12,17,0% -12/28/2018 2:00,102.0019728,249.7812285,0,0,0,0,0,0,0,0,0,0,0,0,0,1.780270269,4.359504847,-4.70379942,4.70379942,0.665449234,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.139136565,82.00211389,-0.139136565,97.99788611,0.690640835,0,0,0,0,12,18,0% -12/28/2018 3:00,113.3661995,257.965903,0,0,0,0,0,0,0,0,0,0,0,0,0,1.978613442,4.502354365,-2.292274652,2.292274652,0.922155742,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.061747063,93.54009812,0.061747063,86.45990188,0,0,0,0,0,12,19,0% -12/28/2018 4:00,125.0819541,266.2926363,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183091933,4.647683277,-1.366630866,1.366630866,0.763861332,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.271440236,105.7499873,0.271440236,74.25001271,0,0.86579739,0,0,0,12,20,0% -12/28/2018 5:00,136.906143,275.7092025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.389462961,4.812033362,-0.842966596,0.842966596,0.674309468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.475661597,118.4024353,0.475661597,61.59756473,0,0.944883252,0,0,0,12,21,0% -12/28/2018 6:00,148.4824214,288.16909,0,0,0,0,0,0,0,0,0,0,0,0,0,2.591507135,5.029499423,-0.482109944,0.482109944,0.612599346,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.66050248,131.338206,0.66050248,48.66179399,0,0.974300057,0,0,0,12,22,0% -12/28/2018 7:00,158.9318521,308.9019323,0,0,0,0,0,0,0,0,0,0,0,0,0,2.773884105,5.391355785,-0.198972661,0.198972661,0.564180019,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.813373901,144.4268927,0.813373901,35.57310727,0,0.988527656,0,0,0,12,23,0% -12/29/2018 8:00,165.1858514,350.1468643,0,0,0,0,0,0,0,0,0,0,0,0,0,2.883036985,6.111215647,0.046593175,-0.046593175,0.522185787,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923863603,157.4976152,0.923863603,22.50238482,0,0.995879457,0,0,0,12,0,0% -12/29/2018 9:00,161.9910893,39.16016634,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827277867,0.683473838,0.27912489,-0.27912489,0.482420522,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.98444491,169.8809797,0.98444491,10.11902026,0,0.999209956,0,0,0,12,1,0% -12/29/2018 10:00,152.4945814,65.70631025,0,0,0,0,0,0,0,0,0,0,0,0,0,2.661532537,1.146791453,0.519225889,-0.519225889,0.441360833,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.990989191,172.3025625,0.990989191,7.697437536,0,0.999545363,0,0,0,12,2,0% -12/29/2018 11:00,141.1685325,80.25367645,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463855692,1.400690891,0.792070053,-0.792070053,0.394701733,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943047084,160.5697373,0.943047084,19.43026269,0,0.996980378,0,0,0,12,3,0% -12/29/2018 12:00,129.3782485,90.45491038,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258076417,1.578736011,1.141541844,-1.141541844,0.334938537,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.843879346,147.5520651,0.843879346,32.44793485,0,0.990749824,0,0,0,12,4,0% -12/29/2018 13:00,117.5897845,99.03650391,0,0,0,0,0,0,0,0,0,0,0,0,0,2.052328906,1.728513073,1.673128525,-1.673128525,0.244031861,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.700235178,134.4458754,0.700235178,45.55412455,0,0.978595418,0,0,0,12,5,0% -12/29/2018 14:00,106.0668647,107.1894222,0,0,0,0,0,0,0,0,0,0,0,0,0,1.851216017,1.87080834,2.76603214,-2.76603214,0.057134335,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.52189306,121.4593201,0.52189306,58.54067993,0,0.954194932,0,0,0,12,6,0% -12/29/2018 15:00,95.04800716,115.6139978,0,0,0,0,0,0,0,0,0,0,0,0,0,1.658900672,2.017844922,7.918768681,-7.918768681,0,#DIV/0!,0,0,0.451765059,1,0.125617327,0,0.948283652,0.987045615,0.724496596,1,0,0,0.063643138,0.312029739,0.835425635,0.559922231,0.961238037,0.922476074,0,0,0,0,0,0,-0.320995253,108.7231242,0.320995253,71.27687576,0,0.894234457,0,0,0,12,7,0% -12/29/2018 16:00,84.66202726,124.8530409,35.05053226,189.4387965,17.42694952,17.16568841,0,17.16568841,16.90146269,0.264225718,29.60049433,20.57660015,9.023894174,0.525486827,8.498407347,1.477631127,2.179096646,-6.161196125,6.161196125,0.416219719,0.497195004,0.186668166,6.00388988,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.24632882,0.380713417,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.135240451,5.771167322,16.38156927,6.151880739,0,20.57660015,-0.108618723,96.23569712,0.108618723,83.76430288,0,0.589674205,16.38156927,18.28537107,28.34897893,12,8,73% -12/29/2018 17:00,75.69426395,135.3945189,183.2537613,544.215593,48.78025285,99.9580877,51.26729519,48.6907925,47.30934825,1.381444259,45.90290067,0,45.90290067,1.470904603,44.43199606,1.321114131,2.363080144,-1.632792862,1.632792862,0.809377714,0.266189641,1.188206996,38.21682143,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.47554503,1.065665378,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.860851924,36.7354624,46.33639696,37.80112778,51.26729519,0,0.094204017,84.59449209,-0.094204017,95.40550791,0.519237073,0,72.95627726,37.80112778,97.69635937,12,9,34% -12/29/2018 18:00,68.33526244,147.6342814,318.7197656,689.6010608,64.13639285,256.8940779,192.2889898,64.60508819,62.20244397,2.402644221,79.21124605,0,79.21124605,1.933948883,77.27729717,1.192675325,2.576704299,-0.539103053,0.539103053,0.622345741,0.2012313,1.677866407,53.96595127,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,59.79135513,1.401139382,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.2156085,51.87412505,61.00696363,53.27526443,192.2889898,0,0.278840914,73.80896101,-0.278840914,106.191039,0.870686285,0,228.4303498,53.27526443,263.2979449,12,10,15% -12/29/2018 19:00,63.25988956,161.6820928,410.870616,752.6118077,72.23722192,398.1154901,324.9591707,73.1563194,70.05900315,3.097316256,101.7985565,0,101.7985565,2.178218768,99.62033774,1.104093357,2.821884862,0.058261972,-0.058261972,0.520190306,0.175815011,1.87247651,60.22528115,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.34337865,1.578112082,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.356602857,57.89083102,68.69998151,59.46894311,324.9591707,0,0.431775276,64.41972355,-0.431775276,115.5802764,0.93419902,0,372.2765203,59.46894311,411.1977542,12,11,10% -12/29/2018 20:00,61.06904597,177.0707649,449.7712697,774.0265022,75.33186072,496.3234804,419.8725874,76.45089299,73.06032718,3.390565816,111.3237852,0,111.3237852,2.271533546,109.0522516,1.065855923,3.090467857,0.531091259,-0.531091259,0.439331735,0.167489268,1.807977356,58.15076666,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.22836547,1.645718321,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.30987344,55.89672878,71.53823891,57.5424471,419.8725874,0,0.542452469,57.14925438,-0.542452469,122.8507456,0.957826026,0,473.7031306,57.5424471,511.3635113,12,12,8% -12/29/2018 21:00,62.07781145,192.7020215,431.9381619,764.5245441,73.93270239,536.1997001,461.2402091,74.95949094,71.70335863,3.256132316,106.9577519,0,106.9577519,2.22934376,104.7284082,1.083462202,3.363284751,1.019437629,-1.019437629,0.355819588,0.171165016,1.517620553,48.81189378,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.92399568,1.615151965,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.099510925,46.91984895,70.02350661,48.53500092,461.2402091,0,0.603303338,52.89315007,-0.603303338,127.1068499,0.967122951,0,516.099499,48.53500092,547.8646864,12,13,6% -12/29/2018 22:00,66.13627899,207.3443249,358.9348481,719.5609292,67.82739974,507.5610189,439.0730631,68.48795588,65.78215338,2.7058025,89.07315588,0,89.07315588,2.045246359,87.02790952,1.154295823,3.618841155,1.662453556,-1.662453556,0.245857388,0.188968555,1.050843392,33.79873575,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.23230798,1.481774025,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.761332461,32.4886304,63.99364044,33.97040442,439.0730631,0,0.610195809,52.39633745,-0.610195809,127.6036626,0.96805909,0,489.0423102,33.97040442,511.2752605,12,14,5% -12/29/2018 23:00,72.71939697,220.2731552,237.8799767,613.3669571,55.67832143,400.959181,345.1665266,55.79265435,53.99941461,1.793239745,59.35566124,0,59.35566124,1.678906822,57.67675442,1.269192907,3.844491812,2.791437186,-2.791437186,0.052789816,0.234060564,0.492234207,15.83194413,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,51.90629129,1.216362277,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.356622007,15.21826689,52.26291329,16.43462917,345.1665266,0,0.562740661,55.75445461,-0.562740661,124.2455454,0.961149125,0,384.0194184,16.43462917,394.7755545,12,15,3% -12/29/2018 0:00,81.17042133,231.4145577,87.14132395,358.858504,32.05798476,198.4670067,166.7187803,31.74822634,31.09131823,0.656908109,22.0950894,0,22.0950894,0.966666522,21.12842288,1.416691107,4.038945969,6.101897195,-6.101897195,0,0.367884986,0.24166663,7.772829559,0.339206548,1,0.162439472,0,0.943790951,0.982552914,0.724496596,1,30.140067,0.700346604,0.049991941,0.312029739,0.868033255,0.592529851,0.961238037,0.922476074,0.165779057,7.471539426,30.30584606,8.17188603,110.1666784,0,0.464580826,62.31690277,-0.464580826,117.6830972,0.942376101,0,134.1242909,8.17188603,139.4726269,12,16,4% -12/29/2018 1:00,91.11540623,241.0891461,0,0,0,0,0,0,0,0,0,0,0,0,0,1.590263838,4.20779939,-50.74124396,50.74124396,0,#DIV/0!,0,0,1,0.878158994,0,0.019705283,0.961238037,1,0.670135645,0.945639049,0,0,0.115824807,0.250297449,0.724496596,0.448993192,0.970614503,0.931852539,0,0,0,0,0,0,0.319535798,71.36514575,-0.319535798,108.6348542,0.89352301,0,0,0,0,12,17,0% -12/29/2018 2:00,101.8766969,249.7630756,0,0,0,0,0,0,0,0,0,0,0,0,0,1.778083792,4.35918802,-4.754883171,4.754883171,0.656713399,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.141301017,81.87686251,-0.141301017,98.12313749,0.696145506,0,0,0,0,12,18,0% -12/29/2018 3:00,113.2399343,257.9551031,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976409698,4.502165872,-2.306281524,2.306281524,0.924551058,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.059541655,93.41350447,0.059541655,86.58649553,0,0,0,0,0,12,19,0% -12/29/2018 4:00,124.9552949,266.2858689,0,0,0,0,0,0,0,0,0,0,0,0,0,2.180881313,4.647565165,-1.373121866,1.373121866,0.764971358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.269313265,105.6234062,0.269313265,74.37659379,0,0.864342602,0,0,0,12,20,0% -12/29/2018 5:00,136.7793709,275.7006416,0,0,0,0,0,0,0,0,0,0,0,0,0,2.387250372,4.811883946,-0.84677381,0.84677381,0.67496054,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.473726884,118.2764899,0.473726884,61.72351007,0,0.944453953,0,0,0,12,21,0% -12/29/2018 6:00,148.3562121,288.1414832,0,0,0,0,0,0,0,0,0,0,0,0,0,2.589304367,5.029017594,-0.484679637,0.484679637,0.613038789,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65886046,131.2130228,0.65886046,48.78697721,0,0.974111397,0,0,0,12,22,0% -12/29/2018 7:00,158.8117046,308.7863751,0,0,0,0,0,0,0,0,0,0,0,0,0,2.771787136,5.38933893,-0.200886541,0.200886541,0.564507311,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.812104724,144.3020813,0.812104724,35.69791869,0,0.988431586,0,0,0,12,23,0% -12/30/2018 8:00,165.1081154,349.753641,0,0,0,0,0,0,0,0,0,0,0,0,0,2.881680235,6.104352606,0.04505139,-0.04505139,0.522449448,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.923021636,157.3719004,0.923021636,22.62809965,0,0.995830089,0,0,0,12,0,0% -12/30/2018 9:00,161.9989482,38.74871584,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827415032,0.676292672,0.277791277,-0.277791277,0.482648583,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.984055002,169.754607,0.984055002,10.24539298,0,0.999189832,0,0,0,12,1,0% -12/30/2018 10:00,152.5427168,65.45033823,0,0,0,0,0,0,0,0,0,0,0,0,0,2.662372658,1.142323899,0.517982487,-0.517982487,0.441573467,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991044976,172.3264623,0.991044976,7.673537743,0,0.999548203,0,0,0,12,2,0% -12/30/2018 11:00,141.2292587,80.07443185,0,0,0,0,0,0,0,0,0,0,0,0,0,2.464915564,1.397562482,0.790796248,-0.790796248,0.394919566,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943511413,160.6498702,0.943511413,19.35012979,0,0.99700647,0,0,0,12,3,0% -12/30/2018 12:00,129.4414718,90.31113627,0,0,0,0,0,0,0,0,0,0,0,0,0,2.259179871,1.576226679,1.140039155,-1.140039155,0.335195512,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.844686842,147.6383991,0.844686842,32.36160085,0,0.990806465,0,0,0,12,4,0% -12/30/2018 13:00,117.6505557,98.90942829,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053389564,1.726295185,1.670864543,-1.670864543,0.244419024,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.701296726,134.5311333,0.701296726,45.46886668,0,0.978703503,0,0,0,12,5,0% -12/30/2018 14:00,106.1217043,107.0689541,0,0,0,0,0,0,0,0,0,0,0,0,0,1.852173148,1.868705776,2.760501127,-2.760501127,0.058080194,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.523101923,121.5405533,0.523101923,58.45944665,0,0.954416333,0,0,0,12,6,0% -12/30/2018 15:00,95.09363411,115.4937061,0,0,0,0,0,0,0,0,0,0,0,0,0,1.659697013,2.015745437,7.864280407,-7.864280407,0,#DIV/0!,0,0,0.448950033,1,0.126478455,0,0.948182112,0.986944075,0.724496596,1,0,0,0.063316523,0.312029739,0.836188508,0.560685104,0.961238037,0.922476074,0,0,0,0,0,0,-0.32223441,108.7981065,0.32223441,71.20189354,0,0.894833455,0,0,0,12,7,0% -12/30/2018 16:00,84.69400882,124.7284324,34.51405004,186.14924,17.29995385,17.0384779,0,17.0384779,16.77829641,0.260181488,29.32104481,20.43105635,8.889988461,0.521657439,8.368331023,1.478189311,2.176921816,-6.217680663,6.217680663,0.406560295,0.501243807,0.183172522,5.891457946,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.1279367,0.377939038,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.132707868,5.66309347,16.26064457,6.041032509,0,20.43105635,-0.109756324,96.30126893,0.109756324,83.69873107,0,0.594445385,16.26064457,18.18617967,28.16313544,12,8,73% -12/30/2018 17:00,75.70970177,135.2629362,182.6990607,541.9217857,48.93383582,99.37383961,50.53827679,48.83556282,47.45830013,1.377262692,45.77303817,0,45.77303817,1.475535697,44.29750247,1.321383572,2.360783593,-1.642825323,1.642825323,0.811093366,0.267838464,1.186773253,38.17070731,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.61872324,1.069020589,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859813182,36.69113576,46.47853643,37.76015635,50.53827679,0,0.093257511,84.64896273,-0.093257511,95.35103727,0.513850155,0,72.44763778,37.76015635,97.1609049,12,9,34% -12/30/2018 18:00,68.32873466,147.4961044,318.5183611,688.0818557,64.42298611,256.3024134,191.420892,64.88152134,62.48039539,2.401125949,79.17105506,0,79.17105506,1.942590727,77.22846434,1.192561394,2.574292656,-0.544850763,0.544850763,0.623328658,0.202258312,1.679620179,54.0223586,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.0585326,1.407400369,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.216879102,51.92834593,61.2754117,53.3357463,191.420892,0,0.278194942,73.84749729,-0.278194942,106.1525027,0.870269917,0,227.8632555,53.3357463,262.7704348,12,10,15% -12/30/2018 19:00,63.22714238,161.5426985,411.1159138,751.5047463,72.59710564,397.7887598,324.2815594,73.50720047,70.40803505,3.099165414,101.8688836,0,101.8688836,2.18907059,99.67981303,1.103521811,2.819451972,0.053359129,-0.053359129,0.521028741,0.176585491,1.876879728,60.3669038,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,67.67888139,1.585974191,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.359792974,58.0269641,69.03867437,59.61293829,324.2815594,0,0.431509662,64.43659468,-0.431509662,115.5634053,0.93412774,0,371.9590744,59.61293829,410.9745502,12,11,10% -12/30/2018 20:00,61.00854314,176.9407794,450.4892072,773.19176,75.73924044,496.4009524,419.5495516,76.85140083,73.45542289,3.395977931,111.5101414,0,111.5101414,2.283817547,109.2263239,1.06479995,3.088199182,0.525853959,-0.525853959,0.440227366,0.168126648,1.814607062,58.36400078,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.6081465,1.654618039,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.314676639,56.10169753,71.92282314,57.75631557,419.5495516,0,0.542620309,57.13780661,-0.542620309,122.8621934,0.957854536,0,473.7902643,57.75631557,511.5906177,12,12,8% -12/30/2018 21:00,61.99230515,192.5927729,433.1107017,763.9393592,74.37231195,536.7589303,461.3642465,75.39468376,72.12971234,3.264971416,107.2553036,0,107.2553036,2.24259961,105.012704,1.081969836,3.361378003,1.012752466,-1.012752466,0.356962818,0.171716634,1.52599213,49.08115247,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.33382309,1.624755783,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.105576104,47.17867064,70.43939919,48.80342643,461.3642465,0,0.603927839,52.84827059,-0.603927839,127.1517294,0.967208652,0,516.6748901,48.80342643,548.6157566,12,13,6% -12/30/2018 22:00,66.03188303,207.2614327,360.503459,719.3369131,68.28850144,508.6550215,439.708043,68.94697851,66.22935116,2.717627351,89.46738767,0,89.46738767,2.059150276,87.40823739,1.15247377,3.617394413,1.652093094,-1.652093094,0.247629131,0.189425371,1.06027487,34.1020845,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,63.66217149,1.491847365,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.768165534,32.78022076,64.43033703,34.27206812,439.708043,0,0.611268565,52.31871487,-0.611268565,127.6812851,0.968202893,0,490.1569365,34.27206812,512.5873196,12,14,5% -12/30/2018 23:00,72.60287526,220.2152751,239.732387,613.9714731,56.15927234,402.6887978,346.4157307,56.27306707,54.46586308,1.807203996,59.81930201,0,59.81930201,1.693409267,58.12589274,1.26715922,3.843481613,2.769952733,-2.769952733,0.056463874,0.234258179,0.501489944,16.12964045,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.3546593,1.226869249,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.363327757,15.50442393,52.71798705,16.73129317,346.4157307,0,0.564221215,55.65177142,-0.564221215,124.3482286,0.961382276,0,385.7559307,16.73129317,396.7062274,12,15,3% -12/30/2018 0:00,81.04773076,231.3768756,88.95729601,362.1137416,32.60819433,201.1820105,168.8864759,32.29553463,31.62493696,0.670597673,22.5519837,0,22.5519837,0.98325737,21.56872633,1.414549753,4.038288292,6.015590786,-6.015590786,0,0.366560089,0.245814343,7.906234239,0.332698472,1,0.164728367,0,0.943501556,0.982263519,0.724496596,1,30.65618523,0.712366618,0.049163798,0.312029739,0.870058943,0.594555539,0.961238037,0.922476074,0.168681514,7.599773079,30.82486675,8.312139697,112.6982034,0,0.466390685,62.19973804,-0.466390685,117.800262,0.942793742,0,137.0760276,8.312139697,142.5161568,12,16,4% -12/30/2018 1:00,90.9878143,241.0666179,0,0,0,0,0,0,0,0,0,0,0,0,0,1.588036939,4.207406199,-57.29330731,57.29330731,0,#DIV/0!,0,0,1,0.892794576,0,0.017452274,0.961238037,1,0.676197174,0.951700578,0,0,0.115824807,0.257174615,0.724496596,0.448993192,0.969609441,0.930847478,0,0,0,0,0,0,0.321621002,71.23901542,-0.321621002,108.7609846,0.894537516,0,0,0,0,12,17,0% -12/30/2018 2:00,101.747477,249.7516694,0,0,0,0,0,0,0,0,0,0,0,0,0,1.775828479,4.358988944,-4.808702304,4.808702304,0.647509785,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.143533056,81.74765907,-0.143533056,98.25234093,0.701648189,0,0,0,0,12,18,0% -12/30/2018 3:00,113.110133,257.9517338,0,0,0,0,0,0,0,0,0,0,0,0,0,1.974144238,4.502107065,-2.320787621,2.320787621,0.927031747,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.057280047,93.28370226,0.057280047,86.71629774,0,0,0,0,0,12,19,0% -12/30/2018 4:00,124.8253266,266.2875614,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178612939,4.647594703,-1.379764644,1.379764644,0.76610734,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.267141197,105.494222,0.267141197,74.50577804,0,0.862833061,0,0,0,12,20,0% -12/30/2018 5:00,136.6492616,275.7021917,0,0,0,0,0,0,0,0,0,0,0,0,0,2.384979535,4.811911,-0.850624181,0.850624181,0.675618992,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.471757125,118.1484159,0.471757125,61.85158408,0,0.94401326,0,0,0,12,21,0% -12/30/2018 6:00,148.2261907,288.1267315,0,0,0,0,0,0,0,0,0,0,0,0,0,2.587035066,5.028760128,-0.487244155,0.487244155,0.613477348,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.657191698,131.0860458,0.657191698,48.91395424,0,0.973918698,0,0,0,12,22,0% -12/30/2018 7:00,158.6863156,308.6876833,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769598685,5.387616434,-0.202766653,0.202766653,0.564828829,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.810814792,144.1756153,0.810814792,35.82438468,0,0.988333636,0,0,0,12,23,0% -12/31/2018 8:00,165.0222962,349.3720055,0,0,0,0,0,0,0,0,0,0,0,0,0,2.880182408,6.097691811,0.043565982,-0.043565982,0.522703468,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.922162169,157.2442515,0.922162169,22.75574845,0,0.995779602,0,0,0,12,0,0% -12/31/2018 9:00,161.9990687,38.32587306,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827417134,0.668912674,0.276537652,-0.276537652,0.482862966,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.983647897,169.6242853,0.983647897,10.3757147,0,0.999168803,0,0,0,12,1,0% -12/31/2018 10:00,152.584999,65.18166862,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663110621,1.137634729,0.516849968,-0.516849968,0.441767139,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.991080889,172.3418876,0.991080889,7.658112357,0,0.999550031,0,0,0,12,2,0% -12/31/2018 11:00,141.2849757,79.88506326,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46588801,1.394257377,0.7896815,-0.7896815,0.3951102,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.943950407,160.7259253,0.943950407,19.27407469,0,0.997031116,0,0,0,12,3,0% -12/31/2018 12:00,129.4999343,90.1591298,0,0,0,0,0,0,0,0,0,0,0,0,0,2.260200234,1.573573666,1.138784241,-1.138784241,0.335410115,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.845461126,147.7213755,0.845461126,32.27862455,0,0.990860675,0,0,0,12,4,0% -12/31/2018 13:00,117.706506,98.7753694,0,0,0,0,0,0,0,0,0,0,0,0,0,2.054366081,1.723955416,1.669052058,-1.669052058,0.244728978,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.702315316,134.6130586,0.702315316,45.38694145,0,0.978806906,0,0,0,12,5,0% -12/31/2018 14:00,106.1714743,106.9423663,0,0,0,0,0,0,0,0,0,0,0,0,0,1.853041798,1.866496402,2.756124754,-2.756124754,0.058828598,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.524256889,121.6182309,0.524256889,58.38176915,0,0.954626909,0,0,0,12,6,0% -12/31/2018 15:00,95.13380826,115.367961,0,0,0,0,0,0,0,0,0,0,0,0,0,1.660398184,2.013550771,7.819815012,-7.819815012,0,#DIV/0!,0,0,0.446631307,1,0.127189933,0,0.948098089,0.986860053,0.724496596,1,0,0,0.063046946,0.312029739,0.836818799,0.561315395,0.961238037,0.922476074,0,0,0,0,0,0,-0.323408288,108.8691694,0.323408288,71.13083055,0,0.895396665,0,0,0,12,7,0% -12/31/2018 16:00,84.72018563,124.5989945,34.05498906,183.1903313,17.19785467,16.93599679,0,16.93599679,16.6792759,0.256720892,29.07671714,20.30111199,8.775605145,0.518578772,8.257026373,1.478646182,2.174662698,-6.26862634,6.26862634,0.397848071,0.505002502,0.180201714,5.795906553,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,16.03275442,0.375708555,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0.130555528,5.571245837,16.16330995,5.946954392,0,20.30111199,-0.110819779,96.36257437,0.110819779,83.63742563,0,0.598817002,16.16330995,18.10360542,28.01175762,12,8,73% -12/31/2018 17:00,75.71868586,135.127268,182.2625548,539.8034796,49.1022267,98.87168013,49.8760946,48.99558552,47.62161339,1.373972126,45.67227987,0,45.67227987,1.480613303,44.19166657,1.321540374,2.358415736,-1.652346858,1.652346858,0.812721644,0.26940381,1.185978592,38.14514828,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,45.77570617,1.072699298,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.859237452,36.66656745,46.63494362,37.73926674,49.8760946,0,0.092396764,84.69849376,-0.092396764,95.30150624,0.508855506,0,72.01466898,37.73926674,96.71426428,12,9,34% -12/31/2018 18:00,68.31520418,147.3548885,318.4457494,686.6701876,64.72098682,255.819222,190.6492332,65.16998885,62.76941027,2.400578571,79.16243533,0,79.16243533,1.951576548,77.21085878,1.192325242,2.571827973,-0.550525647,0.550525647,0.62429912,0.203240228,1.681981346,54.09830186,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,60.33634471,1.413910565,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.218589759,52.00134547,61.55493447,53.41525604,190.6492332,0,0.277643091,73.88041277,-0.277643091,106.1195872,0.86991268,0,227.4031199,53.41525604,262.3623367,12,10,15% -12/31/2018 19:00,63.18698824,161.4017627,411.4936061,750.4792373,72.96725641,397.5837616,323.7147246,73.86903702,70.76702441,3.102012618,101.9716209,0,101.9716209,2.200232001,99.7713889,1.102820989,2.816992177,0.048401061,-0.048401061,0.521876621,0.177322941,1.881863452,60.52719749,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,68.02395561,1.594060595,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.363403665,58.18104449,69.38735928,59.77510509,323.7147246,0,0.431344011,64.44711525,-0.431344011,115.5528847,0.934083241,0,371.7638582,59.77510509,410.885469,12,11,11% -12/31/2018 20:00,60.94052299,176.8111597,451.3387591,772.4293076,76.15650067,496.6075196,419.3450362,77.2624834,73.86010119,3.402382212,111.728707,0,111.728707,2.296399483,109.4323076,1.063612774,3.08593689,0.520488575,-0.520488575,0.441144901,0.168734679,1.821782205,58.59477804,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,70.99713867,1.663733608,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.319875006,56.32352941,72.31701367,57.98726302,419.3450362,0,0.542891151,57.11933022,-0.542891151,122.8806698,0.957900507,0,474.0078363,57.98726302,511.9593402,12,12,8% -12/31/2018 21:00,61.89955929,192.4858686,434.4103153,763.427204,74.8218518,537.4508456,461.6103802,75.84046536,72.56569691,3.274768453,107.5839653,0,107.5839653,2.256154895,105.3278104,1.080351115,3.35951217,1.00586452,-1.00586452,0.358140726,0.172237742,1.534861437,49.36641986,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,69.75290804,1.634576541,0,0.312029739,1,0.724496596,0.961238037,0.922476074,1.112001886,47.45288051,70.86490992,49.08745705,461.6103802,0,0.604655398,52.79595131,-0.604655398,127.2040487,0.967308272,0,517.384449,49.08745705,549.5112079,12,13,6% -12/31/2018 22:00,65.92085731,207.1825095,362.1910718,719.196686,68.76016489,509.8829981,440.4658566,69.41714151,66.68679222,2.730349289,89.89079133,0,89.89079133,2.073372669,87.81741866,1.150536006,3.616016943,1.641412705,-1.641412705,0.249455585,0.189845002,1.070140449,34.41939543,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,64.10188123,1.502151441,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.775313112,33.08523209,64.87719435,34.58738353,440.4658566,0,0.612441444,52.23375464,-0.612441444,127.7662454,0.968359542,0,491.4065095,34.58738353,514.0432602,12,14,5% -12/31/2018 23:00,72.48050025,220.1624669,241.6919175,614.6860319,56.65275678,404.5534316,347.7869887,56.7664429,54.94446714,1.821975765,60.30929325,0,60.30929325,1.708289643,58.60100361,1.265023373,3.842559936,2.747905957,-2.747905957,0.060234095,0.234400709,0.511093152,16.43851264,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,52.81471173,1.237650031,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0.370285249,15.80132362,53.18499697,17.03897365,347.7869887,0,0.565796147,55.54240452,-0.565796147,124.4575955,0.961628949,0,387.6270335,17.03897365,398.7787009,12,15,3% -12/31/2018 0:00,80.91997316,231.3449635,90.86257745,365.5306167,33.17678434,204.0344817,171.1731394,32.86134237,32.17638188,0.684960489,23.03108633,0,23.03108633,1.000402457,22.03068387,1.412319962,4.03773132,5.92843308,-5.92843308,0,0.365131447,0.250100614,8.04409547,0.325994799,1,0.167105627,0,0.943199743,0.981961707,0.724496596,1,31.18938772,0.724788175,0.048306102,0.312029739,0.872162645,0.596659241,0.961238037,0.922476074,0.171687048,7.732290538,31.36107477,8.457078712,115.3715862,0,0.468286736,62.07685778,-0.468286736,117.9231422,0.943227811,0,140.1827635,8.457078712,145.7177523,12,16,4% -12/31/2018 1:00,90.85582557,241.0503653,0,0,0,0,0,0,0,0,0,0,0,0,0,1.585733301,4.207122537,-66.12798554,66.12798554,0,#DIV/0!,0,0,1,0.907738057,0,0.015121038,0.961238037,1,0.682511052,0.958014457,0,0,0.115824807,0.264340096,0.724496596,0.448993192,0.968551587,0.929789624,0,0,0,0,0,0,0.323782877,71.10814771,-0.323782877,108.8918523,0.895575528,0,0,0,0,12,17,0% -12/31/2018 2:00,101.6144221,249.7470431,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773506233,4.358908199,-4.865354812,4.865354812,0.637821635,#DIV/0!,0,0,1,0,0,0.115824807,0.961238037,1,0.448993192,0.724496596,0,0,0.115824807,0,0.724496596,0.448993192,1,0.961238037,0,0,0,0,0,0,0.145830746,81.61461117,-0.145830746,98.38538883,0.707136775,0,0,0,0,12,18,0% -12/31/2018 3:00,112.9769068,257.9558115,0,0,0,0,0,0,0,0,0,0,0,0,0,1.971819002,4.502178235,-2.335794634,2.335794634,0.929598097,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.054964185,93.15080366,0.054964185,86.84919634,0,0,0,0,0,12,19,0% -12/31/2018 4:00,124.6921609,266.2977113,0,0,0,0,0,0,0,0,0,0,0,0,0,2.176288759,4.647771854,-1.386556357,1.386556357,0.767268792,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.264925863,105.3625476,0.264925863,74.63745238,0,0.861267955,0,0,0,12,20,0% -12/31/2018 5:00,136.5159266,275.7138257,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3826524,4.812114051,-0.854514985,0.854514985,0.676284358,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.469753923,118.0183243,0.469753923,61.98167568,0,0.943561293,0,0,0,12,21,0% -12/31/2018 6:00,148.0924716,288.124773,0,0,0,0,0,0,0,0,0,0,0,0,0,2.584701226,5.028725945,-0.489801229,0.489801229,0.613914633,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.65549747,130.9573815,0.65549747,49.04261845,0,0.973722055,0,0,0,12,22,0% -12/31/2018 7:00,158.5558122,308.6058127,0,0,0,0,0,0,0,0,0,0,0,0,0,2.767320971,5.386187523,-0.204611094,0.204611094,0.565144247,#DIV/0!,0,0,0,1,0.312029739,0,0.922476074,0.961238037,0.724496596,1,0,0,0,0.312029739,1,0.724496596,0.961238037,0.922476074,0,0,0,0,0,0,-0.809504976,144.0475944,0.809504976,35.95240557,0,0.988233857,0,0,0,12,23,0% From 337262c90caba0473286820dcf1d95e90b100d6a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 23 Jan 2022 17:34:50 -0700 Subject: [PATCH 092/115] fix tests --- pvlib/bifacial/infinite_sheds.py | 4 ++-- pvlib/tests/bifacial/test_infinite_sheds.py | 9 ++------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index afb9c8ef21..394cb1dbae 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -198,7 +198,6 @@ def _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky): ground. [W/m^2] """ - df = np.where(np.isfinite(df), df, 0.0) return poa_ground * (f_gnd_beam*(1 - df) + df*vf_gnd_sky) @@ -587,7 +586,8 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # Calculate some preliminary irradiance quantities # diffuse fraction - df = dhi / ghi + df = np.clip(dhi / ghi, 0., 1.) + # sky diffuse reflected from the ground to an array consisting of a single # row poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index dcc856f3a4..91269bd9a4 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -55,13 +55,11 @@ def test__tilt_to_rotation(): def test__vf_ground_sky_integ(test_system): ts, pts, vfs_gnd_sky = test_system - vf_integ, z, vfs = infinite_sheds._vf_ground_sky_integ( + vf_integ = infinite_sheds._vf_ground_sky_integ( ts['surface_tilt'], ts['surface_azimuth'], ts['gcr'], ts['height'], ts['pitch'], ts['axis_azimuth'], max_rows=1, npoints=3) expected_vf_integ = np.trapz(vfs_gnd_sky, pts) - assert np.allclose(z, pts) - assert np.allclose(vfs, vfs_gnd_sky, rtol=0.1) assert np.isclose(vf_integ, expected_vf_integ, rtol=0.1) @@ -110,13 +108,10 @@ def test__poa_sky_diffuse_pv(): def test__ground_angle(test_system): ts, _, _ = test_system x = np.array([0., 0.5, 1.0]) - angles, tan_angles = infinite_sheds._ground_angle( + angles = infinite_sheds._ground_angle( x, ts['surface_tilt'], ts['gcr']) expected_angles = np.array([0., 5.866738789543952, 9.896090638982903]) - expected_tan_angles = np.array([0., 0.5 / (4 + np.sqrt(3) / 2.), - 1. / (4 + np.sqrt(3))]) assert np.allclose(angles, expected_angles) - assert np.allclose(tan_angles, expected_tan_angles) def test__vf_row_ground(test_system): From e5fb1137d982010a05d6dfa1aeed12d1546c151f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 23 Jan 2022 17:43:01 -0700 Subject: [PATCH 093/115] fix test --- pvlib/tests/bifacial/test_infinite_sheds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 91269bd9a4..b660bb5ebf 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -167,7 +167,7 @@ def test__poa_ground_shadows(): # vector inputs poa_ground = np.array([300., 300.]) f_gnd_beam = np.array([0.5, 0.5]) - df = np.array([0.5, np.inf]) + df = np.array([0.5, 0.]) vf_gnd_sky = np.array([0.2, 0.2]) result = infinite_sheds._poa_ground_shadows( poa_ground, f_gnd_beam, df, vf_gnd_sky) From b316d3bd4ada591b676734d8986f16f3402bbcb2 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 30 Jan 2022 19:47:11 -0700 Subject: [PATCH 094/115] remove max_rows from public --- pvlib/bifacial/infinite_sheds.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 394cb1dbae..1d24c0abc8 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -5,7 +5,8 @@ The "infinite sheds" model [1] is a 2-dimensional model of irradiance on the front and rear surfaces of a PV array. The model assumes that the array comprises parallel, equally spaced rows (sheds) and calculates irradiance in -the middle of a shed which is long enough that end-of-row effects can be +the middle of a shed which is far from the front and back rows of the array. +Sheds are assumed to be long enough that end-of-row effects can be neglected. Rows can be at fixed tilt or on single-axis trackers. The ground is assumed to be flat and level. @@ -449,8 +450,7 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam=1.0, axis_azimuth=None, max_rows=5, - npoints=100): + albedo, iam=1.0, axis_azimuth=None, npoints=100): r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. @@ -514,13 +514,9 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, The compass direction of the axis of rotation lies for a single-axis tracking system. Decimal degrees east of north. - max_rows : int, default 5 - Maximum number of rows to consider in front and behind the current row. - npoints : int, default 100 Number of points used to discretize distance along the ground. - Returns ------- output : OrderedDict or DataFrame @@ -553,6 +549,10 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, get_irradiance """ # Calculate some geometric quantities + # rows to consider in front and behind current row + # ensures that for a horizontal tilt, cos(right) - cos(left) < 0.01 + # at max_rows in front + max_rows = int(100 * gcr) # fraction of ground between rows that is illuminated accounting for # shade from panels. [1], Eq. 4 f_gnd_beam = utils._unshaded_ground_fraction( @@ -628,7 +628,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, - transmission_factor=0, max_rows=5, npoints=100): + transmission_factor=0, npoints=100): """ Get front and rear irradiance using the infinite sheds model. @@ -710,9 +710,6 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, module's cells due to module structures. A negative value is a reduction in back irradiance. [unitless] - max_rows : int, default 5 - Maximum number of rows to consider in front and behind the current row. - npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -747,6 +744,8 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, """ # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) + # rows to consider in front and behind current row + max_rows = int(100 * gcr) # front side POA irradiance irrad_front = get_irradiance_poa( surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, From 371c4073ffb6c22f3021a1b8d1e0d6dc69d599cb Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 1 Feb 2022 16:52:16 -0700 Subject: [PATCH 095/115] move shaded_fraction from shading.py to infinite_sheds private --- pvlib/bifacial/infinite_sheds.py | 97 ++++++++++++++++++--- pvlib/bifacial/utils.py | 10 +-- pvlib/tests/bifacial/test_infinite_sheds.py | 20 +++++ pvlib/tests/test_shading.py | 17 ---- 4 files changed, 108 insertions(+), 36 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 1d24c0abc8..dc26c77af1 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -70,9 +70,9 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib.tools import cosd, sind +from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils -from pvlib.shading import shaded_fraction, masking_angle +from pvlib.shading import masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component @@ -108,8 +108,9 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): Based on pvfactors.geometry.base._get_rotation_from_tilt_azimuth """ if axis_azimuth is None: - # Assume fixed tilt. Place axis_azimuth 90 degrees clockwise so that - # tilt becomes a negative rotation (lowers left/bottom edge) + # Assume fixed tilt. Place axis_azimuth 90 degrees clockwise + # from surface_azimuth so that tilt becomes a negative rotation + # (lowers right/bottom edge) axis_azimuth = ((surface_azimuth + 90.) + 360) % 360 # Calculate rotation of PV row (signed tilt angle) is_pointing_right = ((surface_azimuth - axis_azimuth) % 360.) < 180. @@ -118,7 +119,7 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, - pitch, axis_azimuth=None, max_rows=5, npoints=100): + pitch, axis_azimuth=None, max_rows=10, npoints=100): """ Integrated and per-point view factors from the ground to the sky at points between interior rows of the array. @@ -448,6 +449,72 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) + +def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr): + """ + Calculate fraction (from the bottom) of row slant height that is shaded + by the row in front toward the sun. + + See [1], Eq. 14 and also [2], Eq. 32. + + .. math:: + F_x = \\max \\left( 0, \\min \\left(\\frac{\\text{GCR} \\cos \\theta + + \\left( \\text{GCR} \\sin \\theta - \\tan \\beta_{c} \\right) + \\tan Z - 1} + {\\text{GCR} \\left( \\cos \\theta + \\sin \\theta \\tan Z \\right)}, + 1 \\right) \\right) + + Parameters + ---------- + solar_zenith : numeric + Apparent solar zenith. [degrees] + solar_azimuth : numeric + Solar azimuth. [degrees] + surface_tilt : numeric + Row tilt from horizontal, e.g. surface facing up = 0, surface facing + horizon = 90. [degrees] + surface_azimuth : numeric + Azimuth angle of the row surface. North=0, East=90, South=180, + West=270. [degrees] + gcr : numeric + Ground coverage ratio, which is the ratio of row slant length to row + spacing (pitch). [unitless] + cross_axis_tilt : float, default 0.0 + The angle, relative to horizontal, of the line formed by the + intersection between the slope containing the tracker axes and a plane + perpendicular to the tracker axes. Cross-axis tilt should be specified + using a right-handed convention. For example, trackers with axis + azimuth of 180 degrees (heading south) will have a negative cross-axis + tilt if the tracker axes plane slopes down to the east and positive + cross-axis tilt if the tracker axes plane slopes up to the east. Use + :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate + `cross_axis_tilt`. [degrees] + Returns + ------- + f_x : numeric + Fraction of row slant height shaded from the bottom. + + References + ---------- + .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. + .. [2] Kevin Anderson and Mark Mikofski, "Slope-Aware Backtracking for + Single-Axis Trackers", Technical Report NREL/TP-5K00-76626, July 2020. + https://www.nrel.gov/docs/fy20osti/76626.pdf + """ + tan_phi = utils._solar_projection_tangent( + solar_zenith, solar_azimuth, surface_azimuth) + # length of shadow behind a row as a fraction of pitch + x = gcr * (sind(surface_tilt) * tan_phi + cosd(surface_tilt)) + f_x = 1 - 1. / (gcr * x) # [] + # condition for shadow to fall on row surface + f_x = np.where(x > 1., f_x, 0.) + return f_x + + def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, axis_azimuth=None, npoints=100): @@ -565,8 +632,8 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth, max_rows, npoints) # fraction of row slant height that is shaded - f_x = shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, - surface_azimuth, gcr) + f_x = _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, + surface_azimuth, gcr) # Integrated view factors to the sky from the shaded and unshaded parts of # the row slant height @@ -626,7 +693,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam_front=1.0, iam_back=1.0, + albedo, axis_azimuth=None, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=100): """ @@ -688,6 +755,10 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, albedo : numeric Surface albedo. [unitless] + axis_azimuth : numeric, default None + The compass direction of the axis of rotation lies for a single-axis + tracking system. Decimal degrees east of north. + iam_front : numeric, default 1.0 Incidence angle modifier, the fraction of direct irradiance incident on the front surface that is not reflected away. [unitless] @@ -744,18 +815,16 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, """ # backside is rotated and flipped relative to front backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) - # rows to consider in front and behind current row - max_rows = int(100 * gcr) # front side POA irradiance irrad_front = get_irradiance_poa( surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, max_rows, - npoints) + gcr, height, pitch, ghi, dhi, dni, albedo, axis_azimuth, + iam_front, npoints) # back side POA irradiance irrad_back = get_irradiance_poa( backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, iam_back, max_rows, - npoints) + gcr, height, pitch, ghi, dhi, dni, albedo, axis_azimuth, + iam_back, npoints) colmap_front = { 'poa_global': 'poa_front', diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 2061d59807..6fc6cf42e8 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -93,7 +93,7 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, return f_gnd_beam # 1 - min(1, abs()) < 1 always -def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=5): +def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): r""" Calculate the fraction of the sky dome visible from point x on the ground. @@ -125,7 +125,7 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=5): vf : numeric Fraction of sky dome visible from each point on the ground. [unitless] wedge_angles : array - Angles defining each wedge of visible sky. Shape is + Angles defining each wedge of sky that is blocked by a row. Shape is (2, len(x), 2*max_rows+1). ``wedge_angles[0,:,:]`` is the starting angle of each wedge, ``wedge_angles[1,:,:]`` is the end angle. [degree] @@ -133,17 +133,17 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=5): x = np.atleast_1d(x) # handle float all_k = np.arange(-max_rows, max_rows + 1) width = gcr * pitch / 2. - # angles from x to left edge of each row + # angles from x to right edge of each row a1 = height + width * sind(rotation) b1 = (all_k - x[:, np.newaxis]) * pitch + width * cosd(rotation) phi_1 = np.degrees(np.arctan2(a1, b1)) - # angles from x to right edge of each row + # angles from x to left edge of each row a2 = height - width * sind(rotation) b2 = (all_k - x[:, np.newaxis]) * pitch - width * cosd(rotation) phi_2 = np.degrees(np.arctan2(a2, b2)) phi = np.stack([phi_1, phi_2]) swap = phi[0, :, :] > phi[1, :, :] - # swap where phi_1 > phi_2 so that phi_1[0,:,:] is the left edge + # swap where phi_1 > phi_2 so that phi_1[0,:,:] is the lesser angle phi = np.where(swap, phi[::-1], phi) # right edge of next row - left edge of previous row wedge_vfs = 0.5 * (cosd(phi[1, :, 1:]) - cosd(phi[0, :, :-1])) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index b660bb5ebf..81b69e52de 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -175,6 +175,26 @@ def test__poa_ground_shadows(): assert np.allclose(result, expected_vec) +def test_shaded_fraction_floats(): + result = infinite_sheds._shaded_fraction( + solar_zenith=60., solar_azimuth=180., surface_tilt=60., + surface_azimuth=180., gcr=1.0) + assert np.isclose(result, 0.5) + + +def test_shaded_fraction_array(): + solar_zenith = np.array([0., 60., 90., 60.]) + solar_azimuth = np.array([180., 180., 180., 180.]) + surface_azimuth = np.array([180., 180., 180., 210.]) + surface_tilt = np.array([30., 60., 0., 30.]) + gcr = 1.0 + result = infinite_sheds._shaded_fraction( + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) + x = 0.75 + np.sqrt(3) / 2 + expected = np.array([0.0, 0.5, 0., (x - 1) / x]) + assert np.allclose(result, expected) + + def test_get_irradiance_poa(): # singleton inputs solar_zenith = 0. diff --git a/pvlib/tests/test_shading.py b/pvlib/tests/test_shading.py index b5a3661742..5962c65a18 100644 --- a/pvlib/tests/test_shading.py +++ b/pvlib/tests/test_shading.py @@ -70,20 +70,3 @@ def test_sky_diffuse_passias_scalar(average_masking_angle, shading_loss): for angle, loss in zip(average_masking_angle, shading_loss): actual_loss = shading.sky_diffuse_passias(angle) assert np.isclose(loss, actual_loss) - - -def test_shaded_fraction_series(): - idx = pd.date_range(start='1/2/2018 15:00', end='1/2/2018 17:00', freq='H', - tz='Etc/GMT+8') - loc = Location(37.85, -122.25, 'Etc/GMT+8') - sp = loc.get_solarposition(idx) - result = shading.shaded_fraction(sp['apparent_zenith'], sp['azimuth'], - 20., 250., 0.5) - expected = pd.Series(data=[0.0, 0.310216, 0.997537], - index=idx) - assert_series_equal(result, expected) - - -def test_shaded_fraction_floats(): - result = shading.shaded_fraction(90. - 9.0646784, 180., 30., 180., 0.5) - assert np.isclose(result, 0.5) From 679731ad0c32baa44495957897cdf596170f854d Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 1 Feb 2022 19:56:46 -0700 Subject: [PATCH 096/115] move shading_fraction --- pvlib/bifacial/infinite_sheds.py | 3 +- pvlib/shading.py | 60 -------------------------------- pvlib/tests/test_shading.py | 1 - 3 files changed, 1 insertion(+), 63 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index dc26c77af1..97ac5743c0 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -70,7 +70,7 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib.tools import cosd, sind, tand +from pvlib.tools import cosd, sind from pvlib.bifacial import utils from pvlib.shading import masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component @@ -449,7 +449,6 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) - def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr): """ diff --git a/pvlib/shading.py b/pvlib/shading.py index fc984d56d9..32ea844e90 100644 --- a/pvlib/shading.py +++ b/pvlib/shading.py @@ -192,63 +192,3 @@ def sky_diffuse_passias(masking_angle): Available at https://www.nrel.gov/docs/fy18osti/67399.pdf """ return 1 - cosd(masking_angle/2)**2 - - -def shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, - gcr, cross_axis_tilt=0.): - """ - Calculate fraction (from the bottom) of row slant height that is shaded - by the row in front toward the sun. - - See [1], Eq. 32. - - .. math:: - F_x = \\max \\left( 0, \\min \\left(\\frac{\\text{GCR} \\cos \\theta - + \\left( \\text{GCR} \\sin \\theta - \\tan \\beta_{c} \\right) - \\tan Z - 1} - {\\text{GCR} \\left( \\cos \\theta + \\sin \\theta \\tan Z \\right)}, - 1 \\right) \\right) - - Parameters - ---------- - solar_zenith : numeric - Apparent solar zenith. [degrees] - solar_azimuth : numeric - Solar azimuth. [degrees] - surface_tilt : numeric - Row tilt from horizontal, e.g. surface facing up = 0, surface facing - horizon = 90. [degrees] - surface_azimuth : numeric - Azimuth angle of the row surface. North=0, East=90, South=180, - West=270. [degrees] - gcr : numeric - Ground coverage ratio, which is the ratio of row slant length to row - spacing (pitch). [unitless] - cross_axis_tilt : float, default 0.0 - The angle, relative to horizontal, of the line formed by the - intersection between the slope containing the tracker axes and a plane - perpendicular to the tracker axes. Cross-axis tilt should be specified - using a right-handed convention. For example, trackers with axis - azimuth of 180 degrees (heading south) will have a negative cross-axis - tilt if the tracker axes plane slopes down to the east and positive - cross-axis tilt if the tracker axes plane slopes up to the east. Use - :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate - `cross_axis_tilt`. [degrees] - Returns - ------- - f_x : numeric - Fraction of row slant height shaded from the bottom. - - References - ---------- - .. [1] Kevin Anderson and Mark Mikofski, "Slope-Aware Backtracking for - Single-Axis Trackers", Technical Report NREL/TP-5K00-76626, July 2020. - https://www.nrel.gov/docs/fy20osti/76626.pdf - """ - tan_phi = bifacial.utils._solar_projection_tangent( - solar_zenith, solar_azimuth, surface_azimuth) - numerator = gcr * cosd(surface_tilt) \ - + gcr * (sind(surface_tilt) - tand(cross_axis_tilt)) * tan_phi - 1 - denominator = gcr * (cosd(surface_tilt) + sind(surface_tilt) * tan_phi) - f_x = numerator / denominator - return np.maximum(0.0, np.minimum(f_x, 1.0)) diff --git a/pvlib/tests/test_shading.py b/pvlib/tests/test_shading.py index 5962c65a18..8a9fd46a69 100644 --- a/pvlib/tests/test_shading.py +++ b/pvlib/tests/test_shading.py @@ -5,7 +5,6 @@ import pytest from pvlib import shading -from pvlib.location import Location @pytest.fixture From a90a045f7425c932d4df45113cd8454365f6b356 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 2 Feb 2022 08:54:09 -0700 Subject: [PATCH 097/115] repair test, stickler --- pvlib/bifacial/infinite_sheds.py | 4 ++-- pvlib/shading.py | 3 +-- pvlib/tests/bifacial/test_infinite_sheds.py | 21 +++++++-------------- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 97ac5743c0..6b5652075f 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -407,7 +407,7 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): # shaded portion of row slant height x = np.linspace(0 * f_x, f_x, num=npoints) # view factor from the point on the row to the ground - y = _vf_row_ground(gcr, surface_tilt, x) + y = _vf_row_ground(x, surface_tilt, gcr) # integrate view factors along the shaded portion of the row slant height. # This is an improvement over the algorithm described in [2] vf_shade_ground_integ = np.trapz(y, x, axis=0) @@ -415,7 +415,7 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): # unshaded portion of row slant height x = np.linspace(f_x, 1., num=npoints) # view factor from the point on the row to the ground - y = _vf_row_ground(gcr, surface_tilt, x) + y = _vf_row_ground(x, surface_tilt, gcr) # integrate view factors along the unshaded portion. # This is an improvement over the algorithm described in [2] vf_noshade_ground_integ = np.trapz(y, x, axis=0) diff --git a/pvlib/shading.py b/pvlib/shading.py index 32ea844e90..9479eb1739 100644 --- a/pvlib/shading.py +++ b/pvlib/shading.py @@ -5,8 +5,7 @@ import numpy as np import pandas as pd -from pvlib.tools import sind, cosd, tand -from pvlib import bifacial +from pvlib.tools import sind, cosd def masking_angle(surface_tilt, gcr, slant_height): diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 81b69e52de..bf534ce72f 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -132,27 +132,20 @@ def test__vf_row_ground_integ(test_system): gcr = ts['gcr'] surface_tilt = ts['surface_tilt'] f_x = np.array([0., 0.5, 1.0]) - shaded = [] - noshade = [] - for x in f_x: - s, ns = infinite_sheds._vf_row_ground_integ( - x, surface_tilt, gcr) - shaded.append(s) - noshade.append(ns) + shaded, noshade = infinite_sheds._vf_row_ground_integ( + f_x, surface_tilt, gcr) - def analytic(gcr, surface_tilt, x): + def analytic(x, surface_tilt, gcr): c = cosd(surface_tilt) a = 1. / gcr dx = np.sqrt(a**2 + 2 * a * c * x + x**2) return c * dx - a * (c**2 - 1) * np.arctanh((a * c + x) / dx) - shaded = np.array(shaded) - noshade = np.array(noshade) - expected_shade = 0.5 * (analytic(gcr, surface_tilt, f_x) - - analytic(gcr, surface_tilt, 0.) + expected_shade = 0.5 * (analytic(f_x, surface_tilt, gcr) + - analytic(0., surface_tilt, gcr) - f_x * cosd(surface_tilt)) - expected_noshade = 0.5 * (analytic(gcr, surface_tilt, 1.) - - analytic(gcr, surface_tilt, f_x) + expected_noshade = 0.5 * (analytic(1., surface_tilt, gcr) + - analytic(f_x, surface_tilt, gcr) - (1. - f_x) * cosd(surface_tilt)) assert np.allclose(shaded, expected_shade) assert np.allclose(noshade, expected_noshade) From 6c1f12c1d75864e810a0b4b9e947aadd30ac2e1f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 2 Feb 2022 12:12:20 -0700 Subject: [PATCH 098/115] remove axis_azimuth --- pvlib/bifacial/infinite_sheds.py | 104 ++++++++------------ pvlib/bifacial/utils.py | 7 +- pvlib/tests/bifacial/test_infinite_sheds.py | 3 +- 3 files changed, 45 insertions(+), 69 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 6b5652075f..65e0a95f45 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -8,7 +8,8 @@ the middle of a shed which is far from the front and back rows of the array. Sheds are assumed to be long enough that end-of-row effects can be neglected. Rows can be at fixed tilt or on single-axis trackers. The ground -is assumed to be flat and level. +is assumed to be horizontal and level, and the array is mounted at a fixed +height above the ground. The infinite sheds model accounts for the following effects: - limited view from the row surfaces to the sky due to blocking of the @@ -43,8 +44,6 @@ - height of row center above ground, ``height``. - tilt of the row from horizontal, ``surface_tilt``. - azimuth of the row's normal vector, ``surface_azimuth``. - - azimuth of the tracking axis, ``axis_azimuth``, when the array is on - single axis trackers. View factors from the ground to the sky are calculated at points spaced along a one-dimensional axis on the ground, with the origin under the center of a row and the positive direction toward the right. The positive direction is @@ -70,33 +69,31 @@ from collections import OrderedDict import numpy as np import pandas as pd -from pvlib.tools import cosd, sind +from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils from pvlib.shading import masking_angle from pvlib.irradiance import get_ground_diffuse, beam_component -def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): +def _tilt_to_rotation(surface_tilt, surface_azimuth): """ Convert surface tilt to rotation angle. - Surface tilt angles are positive by definition. A positive rotation - angle is counterclockwise in a right hand coordinate system with the - axis of rotation positive in the direction of axis_azimuth. A positive + Surface tilt angles are positive by definition. The axis of rotation is + assumed to be parallel to the ground at 90 degrees clockwise from + surface_azimuth. A positive rotation about the axis of rotation angle is + counterclockwise around that axis, using a right-hand rule. A positive rotation elevates the left (bottom) edge of the row. Parameters ---------- surface_tilt : numeric - Surface tilt angle in degrees from horizontal, e.g., surface facing up + Surface tilt in degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] surface_azimuth : numeric - Surface azimuth angles in decimal degrees east of north + Surface azimuth in decimal degrees east of north (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must be >=0 and <=360. - axis_azimuth : float or None, default None - The azimuth of the axis of rotation. Decimal degrees east of north. - For fixed tilt, set axis_azimuth = None. Returns ------- @@ -107,19 +104,17 @@ def _tilt_to_rotation(surface_tilt, surface_azimuth, axis_azimuth=None): ----- Based on pvfactors.geometry.base._get_rotation_from_tilt_azimuth """ - if axis_azimuth is None: - # Assume fixed tilt. Place axis_azimuth 90 degrees clockwise - # from surface_azimuth so that tilt becomes a negative rotation - # (lowers right/bottom edge) - axis_azimuth = ((surface_azimuth + 90.) + 360) % 360 - # Calculate rotation of PV row (signed tilt angle) + # Define axis_azimuth to be 90 degrees clockwise from surface_azimuth + axis_azimuth = (surface_azimuth + 90.) % 360 + # Determine sign of rotation, so that positive rotation faces surface + # toward the right is_pointing_right = ((surface_azimuth - axis_azimuth) % 360.) < 180. rotation = np.where(is_pointing_right, surface_tilt, -surface_tilt) return rotation def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, - pitch, axis_azimuth=None, max_rows=10, npoints=100): + pitch, max_rows=10, npoints=100): """ Integrated and per-point view factors from the ground to the sky at points between interior rows of the array. @@ -140,10 +135,7 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, same units as ``pitch``. pitch : float Distance between two rows. Must be in the same units as ``height``. - axis_azimuth : numeric, default None - The compass direction of the axis of rotation lies for a single-axis - tracking system. Decimal degrees east of north. - max_rows : int, default 5 + max_rows : int, default 10 Maximum number of rows to consider in front and behind the current row. npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -162,7 +154,7 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, """ z = np.linspace(0, 1, npoints) rotation = np.atleast_1d(_tilt_to_rotation( - surface_tilt, surface_azimuth, axis_azimuth)) + surface_tilt, surface_azimuth)) # calculate the view factor from the ground to the sky. Accounts for # views between rows both towards the array front, and array back # TODO: vectorize over rotation @@ -405,7 +397,7 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): # handle Series inputs surface_tilt = np.array(surface_tilt) # shaded portion of row slant height - x = np.linspace(0 * f_x, f_x, num=npoints) + x = np.linspace(0, f_x, num=npoints) # view factor from the point on the row to the ground y = _vf_row_ground(x, surface_tilt, gcr) # integrate view factors along the shaded portion of the row slant height. @@ -453,7 +445,7 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr): """ Calculate fraction (from the bottom) of row slant height that is shaded - by the row in front toward the sun. + from direct irradiance by the row in front toward the sun. See [1], Eq. 14 and also [2], Eq. 32. @@ -479,20 +471,12 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, gcr : numeric Ground coverage ratio, which is the ratio of row slant length to row spacing (pitch). [unitless] - cross_axis_tilt : float, default 0.0 - The angle, relative to horizontal, of the line formed by the - intersection between the slope containing the tracker axes and a plane - perpendicular to the tracker axes. Cross-axis tilt should be specified - using a right-handed convention. For example, trackers with axis - azimuth of 180 degrees (heading south) will have a negative cross-axis - tilt if the tracker axes plane slopes down to the east and positive - cross-axis tilt if the tracker axes plane slopes up to the east. Use - :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate - `cross_axis_tilt`. [degrees] + Returns ------- f_x : numeric - Fraction of row slant height shaded from the bottom. + Fraction of row slant height from the bottom that is shaded from + direct irradiance. References ---------- @@ -508,15 +492,18 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, solar_zenith, solar_azimuth, surface_azimuth) # length of shadow behind a row as a fraction of pitch x = gcr * (sind(surface_tilt) * tan_phi + cosd(surface_tilt)) - f_x = 1 - 1. / (gcr * x) # [] - # condition for shadow to fall on row surface + f_x = 1 - 1. / x + # shadow is long enough to fall on row surface if x > 1 f_x = np.where(x > 1., f_x, 0.) + # when tan_phi < 0, then either sun is behind the array or below the + # horizon. Shaded fraction is 1 in these cases + f_x = np.where(tan_phi > 0, f_x, 1.) return f_x def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, iam=1.0, axis_azimuth=None, npoints=100): + albedo, iam=1.0, npoints=100): r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. @@ -576,10 +563,6 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, Incidence angle modifier, the fraction of direct irradiance incident on the surface that is not reflected away. [unitless] - axis_azimuth : numeric, default None - The compass direction of the axis of rotation lies for a single-axis - tracking system. Decimal degrees east of north. - npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -616,9 +599,9 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, """ # Calculate some geometric quantities # rows to consider in front and behind current row - # ensures that for a horizontal tilt, cos(right) - cos(left) < 0.01 - # at max_rows in front - max_rows = int(100 * gcr) + # ensures that view factors to the sky are computed to within 5 degrees + # of the horizon + max_rows = np.ceil(height / (pitch * tand(5))) # fraction of ground between rows that is illuminated accounting for # shade from panels. [1], Eq. 4 f_gnd_beam = utils._unshaded_ground_fraction( @@ -628,9 +611,8 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # method differs from [1], Eq. 7 and Eq. 8; height is defined at row # center rather than at row lower edge as in [1]. vf_gnd_sky = _vf_ground_sky_integ( - surface_tilt, surface_azimuth, gcr, height, pitch, axis_azimuth, - max_rows, npoints) - # fraction of row slant height that is shaded + surface_tilt, surface_azimuth, gcr, height, pitch, max_rows, npoints) + # fraction of row slant height that is shaded from direct irradiance f_x = _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) @@ -692,7 +674,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, - albedo, axis_azimuth=None, iam_front=1.0, iam_back=1.0, + albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=100): """ @@ -754,10 +736,6 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, albedo : numeric Surface albedo. [unitless] - axis_azimuth : numeric, default None - The compass direction of the axis of rotation lies for a single-axis - tracking system. Decimal degrees east of north. - iam_front : numeric, default 1.0 Incidence angle modifier, the fraction of direct irradiance incident on the front surface that is not reflected away. [unitless] @@ -816,14 +794,16 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, backside_tilt, backside_sysaz = _backside(surface_tilt, surface_azimuth) # front side POA irradiance irrad_front = get_irradiance_poa( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, axis_azimuth, - iam_front, npoints) + surface_tilt=surface_tilt, surface_azimuth=surface_azimuth, + solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, + gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, + albedo=albedo, iam=iam_front, npoints=npoints) # back side POA irradiance irrad_back = get_irradiance_poa( - backside_tilt, backside_sysaz, solar_zenith, solar_azimuth, - gcr, height, pitch, ghi, dhi, dni, albedo, axis_azimuth, - iam_back, npoints) + surface_tilt=backside_tilt, surface_azimuth=backside_sysaz, + solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, + gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, + albedo=albedo, iam=iam_back, npoints=npoints) colmap_front = { 'poa_global': 'poa_front', diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 6fc6cf42e8..149438b82e 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -8,11 +8,8 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): """ - Tangent of the angle between the sun vector projected to the YZ-plane - (vertical and perpendicular to rows) and the zenith vector. - - Tangent is positive when the projection of the sun vector is in the same - hemisphere as the surface azimuth. + Tangent of the angle between the zenith vector and the sun vector + projected to the plane defined by the zenith vector and surface_azimuth. .. math:: \\tan \\phi = \\cos\\left(\\text{solar azimuth}-\\text{system azimuth} diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index bf534ce72f..3a474117a0 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -17,7 +17,6 @@ def test_system(): 'pitch': 2., 'surface_tilt': 30., 'surface_azimuth': 180., - 'axis_azimuth': None, 'rotation': -30.} syst['gcr'] = 1.0 / syst['pitch'] pts = np.linspace(0, 1, num=3) @@ -58,7 +57,7 @@ def test__vf_ground_sky_integ(test_system): vf_integ = infinite_sheds._vf_ground_sky_integ( ts['surface_tilt'], ts['surface_azimuth'], ts['gcr'], ts['height'], ts['pitch'], - ts['axis_azimuth'], max_rows=1, npoints=3) + max_rows=1, npoints=3) expected_vf_integ = np.trapz(vfs_gnd_sky, pts) assert np.isclose(vf_integ, expected_vf_integ, rtol=0.1) From eff490c09fc91f29e576c6ceb50dfa1886dabd98 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 2 Feb 2022 13:21:11 -0700 Subject: [PATCH 099/115] redo tests without axis_azimuth, few corrections --- pvlib/bifacial/infinite_sheds.py | 55 ++++----------------- pvlib/bifacial/utils.py | 3 +- pvlib/tests/bifacial/test_infinite_sheds.py | 17 ++----- 3 files changed, 17 insertions(+), 58 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 65e0a95f45..bd5e9ead59 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -75,44 +75,6 @@ from pvlib.irradiance import get_ground_diffuse, beam_component -def _tilt_to_rotation(surface_tilt, surface_azimuth): - """ - Convert surface tilt to rotation angle. - - Surface tilt angles are positive by definition. The axis of rotation is - assumed to be parallel to the ground at 90 degrees clockwise from - surface_azimuth. A positive rotation about the axis of rotation angle is - counterclockwise around that axis, using a right-hand rule. A positive - rotation elevates the left (bottom) edge of the row. - - Parameters - ---------- - surface_tilt : numeric - Surface tilt in degrees from horizontal, e.g., surface facing up - = 0, surface facing horizon = 90. [degree] - surface_azimuth : numeric - Surface azimuth in decimal degrees east of north - (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must - be >=0 and <=360. - - Returns - ------- - float or np.ndarray - Calculated rotation angle(s) in [deg] - - Notes - ----- - Based on pvfactors.geometry.base._get_rotation_from_tilt_azimuth - """ - # Define axis_azimuth to be 90 degrees clockwise from surface_azimuth - axis_azimuth = (surface_azimuth + 90.) % 360 - # Determine sign of rotation, so that positive rotation faces surface - # toward the right - is_pointing_right = ((surface_azimuth - axis_azimuth) % 360.) < 180. - rotation = np.where(is_pointing_right, surface_tilt, -surface_tilt) - return rotation - - def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, pitch, max_rows=10, npoints=100): """ @@ -152,12 +114,15 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, [unitless] """ + # TODO: vectorize over surface_tilt + # Abuse utils._vf_ground_sky_2d by supplying surface_tilt in place + # of a signed rotation. This is OK because + # 1) z span the full distance between 2 rows, and + # 2) max_rows is set to be large upstream, and + # 3) _vf_ground_sky_2d considers [-max_rows, +max_rows] + # The VFs to the sky will thus be symmetric around z=0.5 z = np.linspace(0, 1, npoints) - rotation = np.atleast_1d(_tilt_to_rotation( - surface_tilt, surface_azimuth)) - # calculate the view factor from the ground to the sky. Accounts for - # views between rows both towards the array front, and array back - # TODO: vectorize over rotation + rotation = np.atleast_1d(surface_tilt) fz_sky = np.zeros((len(rotation), npoints)) for k, r in enumerate(rotation): vf, _ = utils._vf_ground_sky_2d(z, r, gcr, pitch, height, max_rows) @@ -496,8 +461,8 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, # shadow is long enough to fall on row surface if x > 1 f_x = np.where(x > 1., f_x, 0.) # when tan_phi < 0, then either sun is behind the array or below the - # horizon. Shaded fraction is 1 in these cases - f_x = np.where(tan_phi > 0, f_x, 1.) + # horizon. Shaded fraction is assigned to be 1 in these cases + f_x = np.where(tan_phi >= 0, f_x, 1.) return f_x diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 149438b82e..6a2738ea0f 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -105,7 +105,8 @@ def _vf_ground_sky_2d(x, rotation, gcr, pitch, height, max_rows=10): x = 0 corresponds to the point on the ground directly below the center point of a row. Positive x is towards the right. [unitless] rotation : float - Rotation angle of the row's left edge relative to row center. [degree] + Rotation angle of the row's right edge relative to row center. + [degree] gcr : float Ratio of the row slant length to the row spacing (pitch). [unitless] height : float diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 3a474117a0..01ff617d16 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -17,7 +17,7 @@ def test_system(): 'pitch': 2., 'surface_tilt': 30., 'surface_azimuth': 180., - 'rotation': -30.} + 'rotation': -30.} # rotation of right edge relative to horizontal syst['gcr'] = 1.0 / syst['pitch'] pts = np.linspace(0, 1, num=3) sqr3 = np.sqrt(3) / 4 @@ -42,20 +42,13 @@ def test_system(): return syst, pts, vfs_ground_sky -def test__tilt_to_rotation(): - surface_tilt = np.array([0., 20., 90.]) - surface_azimuth = np.array([180., 90., 270.]) - result = infinite_sheds._tilt_to_rotation( - surface_tilt, surface_azimuth, 180.) - assert np.allclose(result, np.array([0., -20., 90.])) - res = infinite_sheds._tilt_to_rotation(surface_tilt, 180., None) - assert np.allclose(res, np.array([0., -20., -90.])) - - def test__vf_ground_sky_integ(test_system): ts, pts, vfs_gnd_sky = test_system + # pass rotation here since max_rows=1 for the hand-solved case in + # the fixture test_system, which means the ground-to-sky view factor + # isn't summed over enough rows for symmetry to hold. vf_integ = infinite_sheds._vf_ground_sky_integ( - ts['surface_tilt'], ts['surface_azimuth'], + ts['rotation'], ts['surface_azimuth'], ts['gcr'], ts['height'], ts['pitch'], max_rows=1, npoints=3) expected_vf_integ = np.trapz(vfs_gnd_sky, pts) From eb6daa7d0194b5abe501eeaa3662ff1cadc88104 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Wed, 2 Feb 2022 13:22:12 -0700 Subject: [PATCH 100/115] trailing spaces --- pvlib/bifacial/infinite_sheds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index bd5e9ead59..1cdbe77061 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -116,11 +116,11 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, """ # TODO: vectorize over surface_tilt # Abuse utils._vf_ground_sky_2d by supplying surface_tilt in place - # of a signed rotation. This is OK because + # of a signed rotation. This is OK because # 1) z span the full distance between 2 rows, and # 2) max_rows is set to be large upstream, and # 3) _vf_ground_sky_2d considers [-max_rows, +max_rows] - # The VFs to the sky will thus be symmetric around z=0.5 + # The VFs to the sky will thus be symmetric around z=0.5 z = np.linspace(0, 1, npoints) rotation = np.atleast_1d(surface_tilt) fz_sky = np.zeros((len(rotation), npoints)) From 525078fc478309f2119ec0430bb7f71dcfa7e730 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Thu, 3 Feb 2022 13:34:50 -0700 Subject: [PATCH 101/115] behind the array criteria, return names --- pvlib/bifacial/infinite_sheds.py | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 1cdbe77061..a3c4cf8f9e 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -72,7 +72,7 @@ from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils from pvlib.shading import masking_angle -from pvlib.irradiance import get_ground_diffuse, beam_component +from pvlib.irradiance import get_ground_diffuse, beam_component, aoi def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, @@ -458,11 +458,11 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, # length of shadow behind a row as a fraction of pitch x = gcr * (sind(surface_tilt) * tan_phi + cosd(surface_tilt)) f_x = 1 - 1. / x - # shadow is long enough to fall on row surface if x > 1 + # set f_x to be 1 when sun is behind the array + ao = aoi(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) + f_x = np.where(ao < 90, f_x, 1.) + # when x < 1, the shadow is not long enough to fall on the row surface f_x = np.where(x > 1., f_x, 0.) - # when tan_phi < 0, then either sun is behind the array or below the - # horizon. Shaded fraction is assigned to be 1 in these cases - f_x = np.where(tan_phi >= 0, f_x, 1.) return f_x @@ -546,9 +546,9 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, - ``poa_global`` : total POA irradiance. [W/m^2] - ``poa_diffuse`` : total diffuse POA irradiance from all sources. [W/m^2] - ``poa_direct`` : total direct POA irradiance. [W/m^2] - - ``poa_diffuse_sky`` : total sky diffuse irradiance on the plane of array. + - ``poa_sky_diffuse`` : total sky diffuse irradiance on the plane of array. [W/m^2] - - ``poa_diffuse_ground`` : total ground-reflected diffuse irradiance on the + - ``poa_ground_diffuse`` : total ground-reflected diffuse irradiance on the plane of array. [W/m^2] References @@ -772,13 +772,17 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, colmap_front = { 'poa_global': 'poa_front', - 'poa_diffuse': 'poa_front_diffuse', 'poa_direct': 'poa_front_direct', + 'poa_diffuse': 'poa_front_diffuse', + 'poa_sky_diffuse': 'poa_front_sky_diffuse', + 'poa_ground_diffuse': 'poa_front_ground_diffuse', } colmap_back = { 'poa_global': 'poa_back', - 'poa_diffuse': 'poa_back_diffuse', 'poa_direct': 'poa_back_direct', + 'poa_diffuse': 'poa_back_diffuse', + 'poa_sky_diffuse': 'poa_back_sky_diffuse', + 'poa_ground_diffuse': 'poa_back_ground_diffuse', } if isinstance(ghi, pd.Series): From 1564a402bc082b1a5c939fccc3c0bbba60334098 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 8 Feb 2022 10:30:45 -0700 Subject: [PATCH 102/115] changes from review --- .../reference/effects_on_pv_system_output.rst | 1 - docs/sphinx/source/whatsnew/v0.9.1.rst | 5 ++ pvlib/bifacial/__init__.py | 2 +- pvlib/bifacial/infinite_sheds.py | 65 +++++++++++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 43 ++++++++++++ 5 files changed, 94 insertions(+), 22 deletions(-) diff --git a/docs/sphinx/source/reference/effects_on_pv_system_output.rst b/docs/sphinx/source/reference/effects_on_pv_system_output.rst index 9215f3668b..92efa946b4 100644 --- a/docs/sphinx/source/reference/effects_on_pv_system_output.rst +++ b/docs/sphinx/source/reference/effects_on_pv_system_output.rst @@ -40,7 +40,6 @@ Shading shading.masking_angle shading.masking_angle_passias shading.sky_diffuse_passias - shading.shaded_fraction Spectrum -------- diff --git a/docs/sphinx/source/whatsnew/v0.9.1.rst b/docs/sphinx/source/whatsnew/v0.9.1.rst index eb2f6ac145..663c2f6855 100644 --- a/docs/sphinx/source/whatsnew/v0.9.1.rst +++ b/docs/sphinx/source/whatsnew/v0.9.1.rst @@ -8,9 +8,14 @@ Breaking changes Deprecations ~~~~~~~~~~~~ +* Moved :py:func:`pvlib.bifacial.pvfactors_timeseries` to + :py:func:`pvlib.bifacial.pvfactors.pvfactors_timeseries`. + :py:module:`pvlib.bifacial` is now a sub-package. (:pull:`717`) Enhancements ~~~~~~~~~~~~ +* Added `pvlib.bifacial.infinite_sheds`, containing a model for irradiance + on front and back surfaces of bifacial arrays. (:pull:`717`) Bug fixes ~~~~~~~~~ diff --git a/pvlib/bifacial/__init__.py b/pvlib/bifacial/__init__.py index 9539ea90de..0a6b98d4f5 100644 --- a/pvlib/bifacial/__init__.py +++ b/pvlib/bifacial/__init__.py @@ -7,7 +7,7 @@ from pvlib.bifacial import pvfactors, infinite_sheds, utils # noqa: F401 pvfactors_timeseries = deprecated( - since='0.9', + since='0.9.1', name='pvlib.bifacial.pvfactors_timeseries', alternative='pvlib.bifacial.pvfactors.pvfactors_timeseries' )(pvfactors.pvfactors_timeseries) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index a3c4cf8f9e..aa5005ac4c 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -380,7 +380,7 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100): return vf_shade_ground_integ, vf_noshade_ground_integ -def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): +def _poa_ground_pv(f_x, poa_ground, f_gnd_pv_shade, f_gnd_pv_noshade): """ Reduce ground-reflected irradiance to account for limited view of the ground from the row surface. @@ -389,7 +389,7 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): ---------- f_x : numeric Fraction of row slant height from the bottom that is shaded. [unitless] - poa_gnd_sky : numeric + poa_ground : numeric Ground-reflected irradiance that would reach the row surface if the full ground was visible. poa_gnd_sky accounts for limited view of the sky from the ground. [W/m^2] @@ -403,7 +403,7 @@ def _poa_ground_pv(f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade): numeric Ground diffuse irradiance on the row plane. [W/m^2] """ - return poa_gnd_sky * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) + return poa_ground * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, @@ -597,27 +597,35 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, f_gnd_pv_shade, f_gnd_pv_noshade = _vf_row_ground_integ( f_x, surface_tilt, gcr, npoints) - # Calculate some preliminary irradiance quantities - # diffuse fraction - df = np.clip(dhi / ghi, 0., 1.) - - # sky diffuse reflected from the ground to an array consisting of a single - # row - poa_ground = get_ground_diffuse(surface_tilt, ghi, albedo) - # Total sky diffuse received by both shaded and unshaded portions poa_sky_pv = _poa_sky_diffuse_pv( f_x, dhi, vf_shade_sky, vf_noshade_sky) + # irradiance reflected from the ground before accounting for shadows + # and restricted views + # this is a deviation from [1], because the row to ground view factor + # is accounted for in a different manner + ground_diffuse = ghi * albedo + + # diffuse fraction + diffuse_fraction = np.clip(dhi / ghi, 0., 1.) + # replace 0/0 to avoid casting nans forward + # diffuse_fraction[np.isnan(diffuse_fraction)] = 0. + # Reduce ground-reflected irradiance because other rows in the array # block irradiance from reaching the ground. # [2], Eq. 9 - poa_gnd_sky = _poa_ground_shadows(poa_ground, f_gnd_beam, df, vf_gnd_sky) - - # Further reduce ground-reflected irradiance because adjacent rows block - # the view to the ground. + ground_diffuse = _poa_ground_shadows( + ground_diffuse, f_gnd_beam, diffuse_fraction, vf_gnd_sky) + + # Ground-reflected irradiance on the row surface accounting for + # the view to the ground. This deviates from [1], Eq. 10, 11 and + # subsequent. Here, the row to ground view factor is computed. In [1], + # the usual ground-reflected irradiance includes the single row to ground + # view factor (1 - cos(tilt))/2, and Eq. 10, 11 and later multiply + # this quantity by a ratio of view factors. poa_gnd_pv = _poa_ground_pv( - f_x, poa_gnd_sky, f_gnd_pv_shade, f_gnd_pv_noshade) + f_x, ground_diffuse, f_gnd_pv_shade, f_gnd_pv_noshade) # add sky and ground-reflected irradiance on the row by irradiance # component @@ -653,8 +661,9 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, The model accounts for the following effects: - - restricted views of the sky from module surfaces due to the nearby rows. - - restricted views of the ground from module surfaces due to nearby rows. + - restricted view of the sky from module surfaces due to the nearby rows. + - restricted view of the ground from module surfaces due to nearby rows. + - restricted view of the sky from the ground due to rows. - shading of module surfaces by nearby rows. - shading of rear cells of a module by mounting structure and by module features. @@ -720,8 +729,8 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, transmission_factor : numeric, default 0.0 Fraction of irradiance on the back surface that does not reach the - module's cells due to module structures. A negative value is a - reduction in back irradiance. [unitless] + module's cells due to module features such as busbars, junction box, + etc. A negative value is a reduction in back irradiance. [unitless] npoints : int, default 100 Number of points used to discretize distance along the ground. @@ -743,6 +752,22 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, surface. [W/m^2] - ``poa_back`` : total irradiance reaching the module cells from the front surface. [W/m^2] + - ``poa_front_direct`` : direct irradiance reaching the module cells from + the front surface. [W/m^2] + - ``poa_front_diffuse`` : total diffuse irradiance reaching the module + cells from the front surface. [W/m^2] + - ``poa_front_sky_diffuse`` : sky diffuse irradiance reaching the module + cells from the front surface. [W/m^2] + - ``poa_front_ground_diffuse`` : ground-reflected diffuse irradiance + reaching the module cells from the front surface. [W/m^2] + - ``poa_back_direct`` : direct irradiance reaching the module cells from + the back surface. [W/m^2] + - ``poa_back_diffuse`` : total diffuse irradiance reaching the module + cells from the back surface. [W/m^2] + - ``poa_back_sky_diffuse`` : sky diffuse irradiance reaching the module + cells from the back surface. [W/m^2] + - ``poa_back_ground_diffuse`` : ground-reflected diffuse irradiance + reaching the module cells from the back surface. [W/m^2] References ---------- diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 01ff617d16..219569b6b5 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -302,3 +302,46 @@ def test_get_irradiance(): [1000., 500., result_front['poa_global'][2] * (1 + 0.8 * 0.98), np.nan], index=ghi.index, name='poa_global') assert_series_equal(result['poa_global'], expected_poa_global) + + +def test_get_irradiance_limiting_gcr(): + # test confirms that irradiance on widely spaced rows is approximately + # the same as for a single row array + solar_zenith = 0. + solar_azimuth = 180. + surface_tilt = 90. + surface_azimuth = 180. + gcr = 0.00001 + height = 1. + pitch = 100. + ghi = 1000. + dhi = 300. + dni = 700. + albedo = 1. + iam_front = 1.0 + iam_back = 1.0 + npoints = 100 + result = infinite_sheds.get_irradiance( + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, + bifaciality=1., shade_factor=-0.00, transmission_factor=0., + npoints=npoints) + expected_ground_diffuse = np.array([500.]) + expected_sky_diffuse = np.array([150.]) + expected_direct = np.array([0.]) + expected_diffuse = expected_ground_diffuse + expected_sky_diffuse + expected_poa = expected_diffuse + expected_direct + assert np.isclose(result['poa_front'], expected_poa, rtol=0.01) + assert np.isclose(result['poa_front_diffuse'], expected_diffuse, rtol=0.01) + assert np.isclose(result['poa_front_direct'], expected_direct) + assert np.isclose(result['poa_front_sky_diffuse'], expected_sky_diffuse, + rtol=0.01) + assert np.isclose(result['poa_front_ground_diffuse'], + expected_ground_diffuse, rtol=0.01) + assert np.isclose(result['poa_front'], result['poa_back']) + assert np.isclose(result['poa_front_diffuse'], result['poa_back_diffuse']) + assert np.isclose(result['poa_front_direct'], result['poa_back_direct']) + assert np.isclose(result['poa_front_sky_diffuse'], + result['poa_back_sky_diffuse']) + assert np.isclose(result['poa_front_ground_diffuse'], + result['poa_back_ground_diffuse']) From aaa72628b9c0f574a894a63ae307ec0011cf5893 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 8 Feb 2022 10:45:45 -0700 Subject: [PATCH 103/115] diffuse fraction when ghi is 0 --- pvlib/bifacial/infinite_sheds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index aa5005ac4c..d5b9b7ae75 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -609,8 +609,8 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # diffuse fraction diffuse_fraction = np.clip(dhi / ghi, 0., 1.) - # replace 0/0 to avoid casting nans forward - # diffuse_fraction[np.isnan(diffuse_fraction)] = 0. + # make diffuse fraction 0 when ghi is small + diffuse_fraction = np.where(ghi < 0.0001, 0., diffuse_fraction) # Reduce ground-reflected irradiance because other rows in the array # block irradiance from reaching the ground. From 581408535189702ca63c9630d455ca17d72e6fbf Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 8 Feb 2022 10:46:53 -0700 Subject: [PATCH 104/115] clean up --- pvlib/bifacial/infinite_sheds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index d5b9b7ae75..65e7e6757d 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -72,7 +72,7 @@ from pvlib.tools import cosd, sind, tand from pvlib.bifacial import utils from pvlib.shading import masking_angle -from pvlib.irradiance import get_ground_diffuse, beam_component, aoi +from pvlib.irradiance import beam_component, aoi def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, @@ -663,7 +663,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, - restricted view of the sky from module surfaces due to the nearby rows. - restricted view of the ground from module surfaces due to nearby rows. - - restricted view of the sky from the ground due to rows. + - restricted view of the sky from the ground due to rows. - shading of module surfaces by nearby rows. - shading of rear cells of a module by mounting structure and by module features. From 5b1357b7f98e26d4f83a8690088976b35144e282 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 13 Feb 2022 10:15:49 -0700 Subject: [PATCH 105/115] Apply suggestions from code review Co-authored-by: Mark Mikofski --- pvlib/bifacial/infinite_sheds.py | 23 +++++++++++------------ pvlib/bifacial/utils.py | 8 ++++---- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 65e7e6757d..2a30ebb0ce 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -51,12 +51,11 @@ code from the description in [1], where array height is described at the row's lower edge. -That's it folks! This model is influenced by the 2D model published by Marion, -*et al.* in [2]. +This model is influenced by the 2D model published by Marion, *et al.* in [2]. References ---------- - .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. @@ -88,7 +87,7 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, = 0, surface facing horizon = 90. [degree] surface_azimuth : numeric Surface azimuth angles in decimal degrees east of north - (e.g. North = 0, South=180 East = 90, West = 270). surface_azimuth must + (e.g. North = 0, South = 180, East = 90, West = 270). ``surface_azimuth`` must be >=0 and <=360. gcr : float Ratio of row slant length to row spacing (pitch). [unitless] @@ -445,10 +444,10 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, References ---------- - .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. - doi: 10.1109/PVSC40753.2019.8980572. + :doi:`10.1109/PVSC40753.2019.8980572`. .. [2] Kevin Anderson and Mark Mikofski, "Slope-Aware Backtracking for Single-Axis Trackers", Technical Report NREL/TP-5K00-76626, July 2020. https://www.nrel.gov/docs/fy20osti/76626.pdf @@ -493,7 +492,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, surface_azimuth : numeric Surface azimuth in decimal degrees east of north - (e.g. North = 0, South=180 East = 90, West = 270). [degree] + (e.g. North = 0, South = 180, East = 90, West = 270). [degree] solar_zenith : numeric True (not refraction-corrected) solar zenith. [degree] @@ -553,10 +552,10 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, References ---------- - .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. - doi: 10.1109/PVSC40753.2019.8980572. + :doi:`10.1109/PVSC40753.2019.8980572`. See also -------- @@ -679,7 +678,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, surface_azimuth : numeric Surface azimuth in decimal degrees east of north - (e.g. North = 0, South=180 East = 90, West = 270). [degree] + (e.g. North = 0, South = 180, East = 90, West = 270). [degree] solar_zenith : numeric True (not refraction-corrected) solar zenith. [degree] @@ -750,7 +749,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, front and back surfaces. [W/m^2] - ``poa_front`` : total irradiance reaching the module cells from the front surface. [W/m^2] - - ``poa_back`` : total irradiance reaching the module cells from the front + - ``poa_back`` : total irradiance reaching the module cells from the back surface. [W/m^2] - ``poa_front_direct`` : direct irradiance reaching the module cells from the front surface. [W/m^2] @@ -771,7 +770,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, References ---------- - .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 6a2738ea0f..bac8923536 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -21,7 +21,7 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): Solar zenith angle. [degree]. solar_azimuth : numeric Solar azimuth. [degree]. - surface_azimuth: numeric + surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, West=270. [degree] @@ -51,11 +51,11 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, Parameters ---------- - surface_tilt: numeric + surface_tilt : numeric Surface tilt angle. The tilt angle is defined as degrees from horizontal, e.g., surface facing up = 0, surface facing horizon = 90. [degree] - surface_azimuth: numeric + surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, West=270. [degree] solar_zenith : numeric @@ -77,7 +77,7 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, References ---------- - .. [1] Mikofksi, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. From 5d1b778577ccba0734463f74496993c11876350f Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 13 Feb 2022 10:27:04 -0700 Subject: [PATCH 106/115] changes solar_zenith, solar_azimuth names --- pvlib/bifacial/infinite_sheds.py | 42 +++++++++--------- pvlib/bifacial/utils.py | 24 +++++------ pvlib/tests/bifacial/test_infinite_sheds.py | 48 ++++++++++----------- pvlib/tests/bifacial/test_utils.py | 10 ++--- 4 files changed, 62 insertions(+), 62 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 2a30ebb0ce..255eaa7028 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -87,8 +87,8 @@ def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height, = 0, surface facing horizon = 90. [degree] surface_azimuth : numeric Surface azimuth angles in decimal degrees east of north - (e.g. North = 0, South = 180, East = 90, West = 270). ``surface_azimuth`` must - be >=0 and <=360. + (e.g. North = 0, South = 180, East = 90, West = 270). + ``surface_azimuth`` must be >=0 and <=360. gcr : float Ratio of row slant length to row spacing (pitch). [unitless] height : float @@ -405,7 +405,7 @@ def _poa_ground_pv(f_x, poa_ground, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_ground * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, +def _shaded_fraction(apparent_zenith, azimuth, surface_tilt, surface_azimuth, gcr): """ Calculate fraction (from the bottom) of row slant height that is shaded @@ -422,9 +422,9 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, Parameters ---------- - solar_zenith : numeric + apparent_zenith : numeric Apparent solar zenith. [degrees] - solar_azimuth : numeric + azimuth : numeric Solar azimuth. [degrees] surface_tilt : numeric Row tilt from horizontal, e.g. surface facing up = 0, surface facing @@ -453,20 +453,20 @@ def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, https://www.nrel.gov/docs/fy20osti/76626.pdf """ tan_phi = utils._solar_projection_tangent( - solar_zenith, solar_azimuth, surface_azimuth) + apparent_zenith, azimuth, surface_azimuth) # length of shadow behind a row as a fraction of pitch x = gcr * (sind(surface_tilt) * tan_phi + cosd(surface_tilt)) f_x = 1 - 1. / x # set f_x to be 1 when sun is behind the array - ao = aoi(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) + ao = aoi(surface_tilt, surface_azimuth, apparent_zenith, azimuth) f_x = np.where(ao < 90, f_x, 1.) # when x < 1, the shadow is not long enough to fall on the row surface f_x = np.where(x > 1., f_x, 0.) return f_x -def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth, gcr, height, pitch, ghi, dhi, dni, +def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, + azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, npoints=100): r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. @@ -494,10 +494,10 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, Surface azimuth in decimal degrees east of north (e.g. North = 0, South = 180, East = 90, West = 270). [degree] - solar_zenith : numeric - True (not refraction-corrected) solar zenith. [degree] + apparent_zenith : numeric + Refraction-corrected solar zenith. [degree] - solar_azimuth : numeric + azimuth : numeric Solar azimuth. [degree] gcr : float @@ -569,7 +569,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, # fraction of ground between rows that is illuminated accounting for # shade from panels. [1], Eq. 4 f_gnd_beam = utils._unshaded_ground_fraction( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array # method differs from [1], Eq. 7 and Eq. 8; height is defined at row @@ -577,7 +577,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, vf_gnd_sky = _vf_ground_sky_integ( surface_tilt, surface_azimuth, gcr, height, pitch, max_rows, npoints) # fraction of row slant height that is shaded from direct irradiance - f_x = _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, + f_x = _shaded_fraction(apparent_zenith, azimuth, surface_tilt, surface_azimuth, gcr) # Integrated view factors to the sky from the shaded and unshaded parts of @@ -631,7 +631,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, poa_diffuse = poa_gnd_pv + poa_sky_pv # beam on plane, make an array for consistency with poa_diffuse poa_beam = np.atleast_1d(beam_component( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni)) + surface_tilt, surface_azimuth, apparent_zenith, azimuth, dni)) poa_direct = poa_beam * (1 - f_x) * iam # direct only on the unshaded part poa_global = poa_direct + poa_diffuse @@ -644,7 +644,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, return output -def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, +def get_irradiance(surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, @@ -680,10 +680,10 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, Surface azimuth in decimal degrees east of north (e.g. North = 0, South = 180, East = 90, West = 270). [degree] - solar_zenith : numeric - True (not refraction-corrected) solar zenith. [degree] + apparent_zenith : numeric + Refraction-corrected solar zenith. [degree] - solar_azimuth : numeric + azimuth : numeric Solar azimuth. [degree] gcr : float @@ -784,13 +784,13 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, # front side POA irradiance irrad_front = get_irradiance_poa( surface_tilt=surface_tilt, surface_azimuth=surface_azimuth, - solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, + apparent_zenith=apparent_zenith, azimuth=azimuth, gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, albedo=albedo, iam=iam_front, npoints=npoints) # back side POA irradiance irrad_back = get_irradiance_poa( surface_tilt=backside_tilt, surface_azimuth=backside_sysaz, - solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, + apparent_zenith=apparent_zenith, azimuth=azimuth, gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, albedo=albedo, iam=iam_back, npoints=npoints) diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index bac8923536..3c89ce4cba 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -6,7 +6,7 @@ from pvlib.tools import sind, cosd, tand -def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): +def _solar_projection_tangent(apparent_zenith, azimuth, surface_azimuth): """ Tangent of the angle between the zenith vector and the sun vector projected to the plane defined by the zenith vector and surface_azimuth. @@ -17,9 +17,9 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): Parameters ---------- - solar_zenith : numeric + apparent_zenith : numeric Solar zenith angle. [degree]. - solar_azimuth : numeric + azimuth : numeric Solar azimuth. [degree]. surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, @@ -31,13 +31,13 @@ def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): Tangent of the angle between vertical and the projection of the sun direction onto the YZ plane. """ - rotation = solar_azimuth - surface_azimuth - tan_phi = cosd(rotation) * tand(solar_zenith) + rotation = azimuth - surface_azimuth + tan_phi = cosd(rotation) * tand(apparent_zenith) return tan_phi -def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, - solar_azimuth, gcr, max_zenith=87): +def _unshaded_ground_fraction(surface_tilt, surface_azimuth, apparent_zenith, + azimuth, gcr, max_zenith=87): r""" Calculate the fraction of the ground with incident direct irradiance. @@ -58,15 +58,15 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, West=270. [degree] - solar_zenith : numeric + apparent_zenith : numeric Solar zenith angle. [degree]. - solar_azimuth : numeric + azimuth : numeric Solar azimuth. [degree]. gcr : float Ground coverage ratio, which is the ratio of row slant length to row spacing (pitch). [unitless] max_zenith : numeric, default 87 - Maximum zenith angle. For solar_zenith > max_zenith, unshaded ground + Maximum zenith angle. For apparent_zenith > max_zenith, unshaded ground fraction is set to 0. [degree] Returns @@ -82,11 +82,11 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. """ - tan_phi = _solar_projection_tangent(solar_zenith, solar_azimuth, + tan_phi = _solar_projection_tangent(apparent_zenith, azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) - np.where(solar_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4 + np.where(apparent_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4 return f_gnd_beam # 1 - min(1, abs()) < 1 always diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index 219569b6b5..ec1d72633b 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -160,21 +160,21 @@ def test__poa_ground_shadows(): assert np.allclose(result, expected_vec) -def test_shaded_fraction_floats(): +def test__shaded_fraction_floats(): result = infinite_sheds._shaded_fraction( - solar_zenith=60., solar_azimuth=180., surface_tilt=60., + apparent_zenith=60., azimuth=180., surface_tilt=60., surface_azimuth=180., gcr=1.0) assert np.isclose(result, 0.5) -def test_shaded_fraction_array(): - solar_zenith = np.array([0., 60., 90., 60.]) - solar_azimuth = np.array([180., 180., 180., 180.]) +def test__shaded_fraction_array(): + apparent_zenith = np.array([0., 60., 90., 60.]) + azimuth = np.array([180., 180., 180., 180.]) surface_azimuth = np.array([180., 180., 180., 210.]) surface_tilt = np.array([30., 60., 0., 30.]) gcr = 1.0 result = infinite_sheds._shaded_fraction( - solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) + apparent_zenith, azimuth, surface_tilt, surface_azimuth, gcr) x = 0.75 + np.sqrt(3) / 2 expected = np.array([0.0, 0.5, 0., (x - 1) / x]) assert np.allclose(result, expected) @@ -182,8 +182,8 @@ def test_shaded_fraction_array(): def test_get_irradiance_poa(): # singleton inputs - solar_zenith = 0. - solar_azimuth = 180. + apparent_zenith = 0. + azimuth = 180. surface_tilt = 0. surface_azimuth = 180. gcr = 0.5 @@ -196,7 +196,7 @@ def test_get_irradiance_poa(): iam = 1.0 npoints = 100 res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) expected_diffuse = np.array([300.]) @@ -211,14 +211,14 @@ def test_get_irradiance_poa(): surface_azimuth = np.array([180., 180., 180., 180.]) gcr = 0.5 pitch = 1 - solar_zenith = np.array([0., 45., 45., 90.]) - solar_azimuth = np.array([180., 180., 135., 180.]) + apparent_zenith = np.array([0., 45., 45., 90.]) + azimuth = np.array([180., 180., 135., 180.]) expected_diffuse = np.array([300., 300., 300., 300.]) expected_direct = np.array( [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) expected_global = expected_diffuse + expected_direct res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) assert np.allclose(res['poa_global'], expected_global) @@ -227,8 +227,8 @@ def test_get_irradiance_poa(): # series inputs surface_tilt = pd.Series(surface_tilt) surface_azimuth = pd.Series(data=surface_azimuth, index=surface_tilt.index) - solar_zenith = pd.Series(solar_zenith, index=surface_tilt.index) - solar_azimuth = pd.Series(data=solar_azimuth, index=surface_tilt.index) + apparent_zenith = pd.Series(apparent_zenith, index=surface_tilt.index) + azimuth = pd.Series(data=azimuth, index=surface_tilt.index) expected_diffuse = pd.Series( data=expected_diffuse, index=surface_tilt.index) expected_direct = pd.Series( @@ -236,7 +236,7 @@ def test_get_irradiance_poa(): expected_global = expected_diffuse + expected_direct expected_global.name = 'poa_global' # to match output Series res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) assert isinstance(res, pd.DataFrame) @@ -256,8 +256,8 @@ def test__backside_tilt(): def test_get_irradiance(): # singleton inputs - solar_zenith = 0. - solar_azimuth = 180. + apparent_zenith = 0. + azimuth = 180. surface_tilt = 0. surface_azimuth = 180. gcr = 0.5 @@ -271,7 +271,7 @@ def test_get_irradiance(): iam_back = 1.0 npoints = 100 result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) @@ -286,15 +286,15 @@ def test_get_irradiance(): ghi = pd.Series([1000., 500., 500., np.nan]) dhi = pd.Series([300., 500., 500., 500.], index=ghi.index) dni = pd.Series([700., 0., 0., 700.], index=ghi.index) - solar_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) + apparent_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) surface_tilt = pd.Series([0., 0., 90., 0.], index=ghi.index) result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) result_front = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam_front) assert isinstance(result, pd.DataFrame) @@ -307,8 +307,8 @@ def test_get_irradiance(): def test_get_irradiance_limiting_gcr(): # test confirms that irradiance on widely spaced rows is approximately # the same as for a single row array - solar_zenith = 0. - solar_azimuth = 180. + apparent_zenith = 0. + azimuth = 180. surface_tilt = 90. surface_azimuth = 180. gcr = 0.00001 @@ -322,7 +322,7 @@ def test_get_irradiance_limiting_gcr(): iam_back = 1.0 npoints = 100 result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=1., shade_factor=-0.00, transmission_factor=0., npoints=npoints) diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index 388a222394..b89dec2285 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -50,7 +50,7 @@ def test__solar_projection_tangent(): @pytest.mark.parametrize( - "gcr,surface_tilt,surface_azimuth,solar_zenith,solar_azimuth,expected", + "gcr,surface_tilt,surface_azimuth,apparent_zenith,azimuth,expected", [(0.5, 0., 180., 0., 180., 0.5), (1.0, 0., 180., 0., 180., 0.0), (1.0, 90., 180., 0., 180., 1.0), @@ -63,16 +63,16 @@ def test__solar_projection_tangent(): (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), ]) def test__unshaded_ground_fraction( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, expected): # frontside, same for both sides f_sky_beam_f = utils._unshaded_ground_fraction( - surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) + surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr) assert np.allclose(f_sky_beam_f, expected) # backside, should be the same as frontside f_sky_beam_b = utils._unshaded_ground_fraction( - 180. - surface_tilt, surface_azimuth - 180., solar_zenith, - solar_azimuth, gcr) + 180. - surface_tilt, surface_azimuth - 180., apparent_zenith, + azimuth, gcr) assert np.allclose(f_sky_beam_b, expected) From 03c49c095193dc5cfeef276b13819056f6045cea Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Sun, 13 Feb 2022 10:28:19 -0700 Subject: [PATCH 107/115] Update pvlib/bifacial/infinite_sheds.py Co-authored-by: Mark Mikofski --- pvlib/bifacial/infinite_sheds.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 255eaa7028..3ba838299b 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -269,8 +269,6 @@ def _ground_angle(x, surface_tilt, gcr): ------- psi : numeric Angle [degree]. - tan_psi : numeric - Tangent of angle [unitless] """ # : \\ \ # : \\ \ From 764f807395a09403be9b326bd3151fb3a716bb8a Mon Sep 17 00:00:00 2001 From: Mark Mikofski Date: Sun, 13 Feb 2022 16:26:11 -0800 Subject: [PATCH 108/115] DOI directive in infinite_sheds.get_irradiance --- pvlib/bifacial/infinite_sheds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 3ba838299b..b00e077797 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -771,7 +771,7 @@ def get_irradiance(surface_tilt, surface_azimuth, apparent_zenith, azimuth, .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. - doi: 10.1109/PVSC40753.2019.8980572. + :doi:`10.1109/PVSC40753.2019.8980572`. See also -------- From 56882401268b01982f86086eed5a0bdeb81778fc Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 10:48:08 -0700 Subject: [PATCH 109/115] change back to solar_zenith, solar_azimuth --- pvlib/bifacial/infinite_sheds.py | 36 ++++++++--------- pvlib/tests/bifacial/test_infinite_sheds.py | 44 ++++++++++----------- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 3ba838299b..0b976557ef 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -403,7 +403,7 @@ def _poa_ground_pv(f_x, poa_ground, f_gnd_pv_shade, f_gnd_pv_noshade): return poa_ground * (f_x * f_gnd_pv_shade + (1 - f_x) * f_gnd_pv_noshade) -def _shaded_fraction(apparent_zenith, azimuth, surface_tilt, +def _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr): """ Calculate fraction (from the bottom) of row slant height that is shaded @@ -420,9 +420,9 @@ def _shaded_fraction(apparent_zenith, azimuth, surface_tilt, Parameters ---------- - apparent_zenith : numeric - Apparent solar zenith. [degrees] - azimuth : numeric + solar_zenith : numeric + Apparent (refraction-corrected) solar zenith. [degrees] + solar_azimuth : numeric Solar azimuth. [degrees] surface_tilt : numeric Row tilt from horizontal, e.g. surface facing up = 0, surface facing @@ -451,20 +451,20 @@ def _shaded_fraction(apparent_zenith, azimuth, surface_tilt, https://www.nrel.gov/docs/fy20osti/76626.pdf """ tan_phi = utils._solar_projection_tangent( - apparent_zenith, azimuth, surface_azimuth) + solar_zenith, solar_azimuth, surface_azimuth) # length of shadow behind a row as a fraction of pitch x = gcr * (sind(surface_tilt) * tan_phi + cosd(surface_tilt)) f_x = 1 - 1. / x # set f_x to be 1 when sun is behind the array - ao = aoi(surface_tilt, surface_azimuth, apparent_zenith, azimuth) + ao = aoi(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth) f_x = np.where(ao < 90, f_x, 1.) # when x < 1, the shadow is not long enough to fall on the row surface f_x = np.where(x > 1., f_x, 0.) return f_x -def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, - azimuth, gcr, height, pitch, ghi, dhi, dni, +def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=1.0, npoints=100): r""" Calculate plane-of-array (POA) irradiance on one side of a row of modules. @@ -492,10 +492,10 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, Surface azimuth in decimal degrees east of north (e.g. North = 0, South = 180, East = 90, West = 270). [degree] - apparent_zenith : numeric + solar_zenith : numeric Refraction-corrected solar zenith. [degree] - azimuth : numeric + solar_azimuth : numeric Solar azimuth. [degree] gcr : float @@ -567,7 +567,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, # fraction of ground between rows that is illuminated accounting for # shade from panels. [1], Eq. 4 f_gnd_beam = utils._unshaded_ground_fraction( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) # integrated view factor from the ground to the sky, integrated between # adjacent rows interior to the array # method differs from [1], Eq. 7 and Eq. 8; height is defined at row @@ -575,7 +575,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, vf_gnd_sky = _vf_ground_sky_integ( surface_tilt, surface_azimuth, gcr, height, pitch, max_rows, npoints) # fraction of row slant height that is shaded from direct irradiance - f_x = _shaded_fraction(apparent_zenith, azimuth, surface_tilt, + f_x = _shaded_fraction(solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) # Integrated view factors to the sky from the shaded and unshaded parts of @@ -629,7 +629,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, poa_diffuse = poa_gnd_pv + poa_sky_pv # beam on plane, make an array for consistency with poa_diffuse poa_beam = np.atleast_1d(beam_component( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, dni)) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, dni)) poa_direct = poa_beam * (1 - f_x) * iam # direct only on the unshaded part poa_global = poa_direct + poa_diffuse @@ -642,7 +642,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, apparent_zenith, return output -def get_irradiance(surface_tilt, surface_azimuth, apparent_zenith, azimuth, +def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front=1.0, iam_back=1.0, bifaciality=0.8, shade_factor=-0.02, @@ -678,10 +678,10 @@ def get_irradiance(surface_tilt, surface_azimuth, apparent_zenith, azimuth, Surface azimuth in decimal degrees east of north (e.g. North = 0, South = 180, East = 90, West = 270). [degree] - apparent_zenith : numeric + solar_zenith : numeric Refraction-corrected solar zenith. [degree] - azimuth : numeric + solar_azimuth : numeric Solar azimuth. [degree] gcr : float @@ -782,13 +782,13 @@ def get_irradiance(surface_tilt, surface_azimuth, apparent_zenith, azimuth, # front side POA irradiance irrad_front = get_irradiance_poa( surface_tilt=surface_tilt, surface_azimuth=surface_azimuth, - apparent_zenith=apparent_zenith, azimuth=azimuth, + solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, albedo=albedo, iam=iam_front, npoints=npoints) # back side POA irradiance irrad_back = get_irradiance_poa( surface_tilt=backside_tilt, surface_azimuth=backside_sysaz, - apparent_zenith=apparent_zenith, azimuth=azimuth, + solar_zenith=solar_zenith, solar_azimuth=solar_azimuth, gcr=gcr, height=height, pitch=pitch, ghi=ghi, dhi=dhi, dni=dni, albedo=albedo, iam=iam_back, npoints=npoints) diff --git a/pvlib/tests/bifacial/test_infinite_sheds.py b/pvlib/tests/bifacial/test_infinite_sheds.py index ec1d72633b..05d1bc58db 100644 --- a/pvlib/tests/bifacial/test_infinite_sheds.py +++ b/pvlib/tests/bifacial/test_infinite_sheds.py @@ -162,19 +162,19 @@ def test__poa_ground_shadows(): def test__shaded_fraction_floats(): result = infinite_sheds._shaded_fraction( - apparent_zenith=60., azimuth=180., surface_tilt=60., + solar_zenith=60., solar_azimuth=180., surface_tilt=60., surface_azimuth=180., gcr=1.0) assert np.isclose(result, 0.5) def test__shaded_fraction_array(): - apparent_zenith = np.array([0., 60., 90., 60.]) - azimuth = np.array([180., 180., 180., 180.]) + solar_zenith = np.array([0., 60., 90., 60.]) + solar_azimuth = np.array([180., 180., 180., 180.]) surface_azimuth = np.array([180., 180., 180., 210.]) surface_tilt = np.array([30., 60., 0., 30.]) gcr = 1.0 result = infinite_sheds._shaded_fraction( - apparent_zenith, azimuth, surface_tilt, surface_azimuth, gcr) + solar_zenith, solar_azimuth, surface_tilt, surface_azimuth, gcr) x = 0.75 + np.sqrt(3) / 2 expected = np.array([0.0, 0.5, 0., (x - 1) / x]) assert np.allclose(result, expected) @@ -182,8 +182,8 @@ def test__shaded_fraction_array(): def test_get_irradiance_poa(): # singleton inputs - apparent_zenith = 0. - azimuth = 180. + solar_zenith = 0. + solar_azimuth = 180. surface_tilt = 0. surface_azimuth = 180. gcr = 0.5 @@ -196,7 +196,7 @@ def test_get_irradiance_poa(): iam = 1.0 npoints = 100 res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) expected_diffuse = np.array([300.]) @@ -211,14 +211,14 @@ def test_get_irradiance_poa(): surface_azimuth = np.array([180., 180., 180., 180.]) gcr = 0.5 pitch = 1 - apparent_zenith = np.array([0., 45., 45., 90.]) - azimuth = np.array([180., 180., 135., 180.]) + solar_zenith = np.array([0., 45., 45., 90.]) + solar_azimuth = np.array([180., 180., 135., 180.]) expected_diffuse = np.array([300., 300., 300., 300.]) expected_direct = np.array( [700., 350. * np.sqrt(2), 350. * np.sqrt(2), 0.]) expected_global = expected_diffuse + expected_direct res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) assert np.allclose(res['poa_global'], expected_global) @@ -227,8 +227,8 @@ def test_get_irradiance_poa(): # series inputs surface_tilt = pd.Series(surface_tilt) surface_azimuth = pd.Series(data=surface_azimuth, index=surface_tilt.index) - apparent_zenith = pd.Series(apparent_zenith, index=surface_tilt.index) - azimuth = pd.Series(data=azimuth, index=surface_tilt.index) + solar_zenith = pd.Series(solar_zenith, index=surface_tilt.index) + solar_azimuth = pd.Series(data=solar_azimuth, index=surface_tilt.index) expected_diffuse = pd.Series( data=expected_diffuse, index=surface_tilt.index) expected_direct = pd.Series( @@ -236,7 +236,7 @@ def test_get_irradiance_poa(): expected_global = expected_diffuse + expected_direct expected_global.name = 'poa_global' # to match output Series res = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam, npoints=npoints) assert isinstance(res, pd.DataFrame) @@ -256,8 +256,8 @@ def test__backside_tilt(): def test_get_irradiance(): # singleton inputs - apparent_zenith = 0. - azimuth = 180. + solar_zenith = 0. + solar_azimuth = 180. surface_tilt = 0. surface_azimuth = 180. gcr = 0.5 @@ -271,7 +271,7 @@ def test_get_irradiance(): iam_back = 1.0 npoints = 100 result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) @@ -286,15 +286,15 @@ def test_get_irradiance(): ghi = pd.Series([1000., 500., 500., np.nan]) dhi = pd.Series([300., 500., 500., 500.], index=ghi.index) dni = pd.Series([700., 0., 0., 700.], index=ghi.index) - apparent_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) + solar_zenith = pd.Series([0., 0., 0., 135.], index=ghi.index) surface_tilt = pd.Series([0., 0., 90., 0.], index=ghi.index) result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=0.8, shade_factor=-0.02, transmission_factor=0, npoints=npoints) result_front = infinite_sheds.get_irradiance_poa( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam=iam_front) assert isinstance(result, pd.DataFrame) @@ -307,8 +307,8 @@ def test_get_irradiance(): def test_get_irradiance_limiting_gcr(): # test confirms that irradiance on widely spaced rows is approximately # the same as for a single row array - apparent_zenith = 0. - azimuth = 180. + solar_zenith = 0. + solar_azimuth = 180. surface_tilt = 90. surface_azimuth = 180. gcr = 0.00001 @@ -322,7 +322,7 @@ def test_get_irradiance_limiting_gcr(): iam_back = 1.0 npoints = 100 result = infinite_sheds.get_irradiance( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, height, pitch, ghi, dhi, dni, albedo, iam_front, iam_back, bifaciality=1., shade_factor=-0.00, transmission_factor=0., npoints=npoints) From 60fa642bc8e15b9123c7eccd903a360b0c6e3bc5 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 10:49:47 -0700 Subject: [PATCH 110/115] rename in test_utils --- pvlib/tests/bifacial/test_utils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pvlib/tests/bifacial/test_utils.py b/pvlib/tests/bifacial/test_utils.py index b89dec2285..388a222394 100644 --- a/pvlib/tests/bifacial/test_utils.py +++ b/pvlib/tests/bifacial/test_utils.py @@ -50,7 +50,7 @@ def test__solar_projection_tangent(): @pytest.mark.parametrize( - "gcr,surface_tilt,surface_azimuth,apparent_zenith,azimuth,expected", + "gcr,surface_tilt,surface_azimuth,solar_zenith,solar_azimuth,expected", [(0.5, 0., 180., 0., 180., 0.5), (1.0, 0., 180., 0., 180., 0.0), (1.0, 90., 180., 0., 180., 1.0), @@ -63,16 +63,16 @@ def test__solar_projection_tangent(): (np.sqrt(2) / 2, 45, 180, 45, 135, 0.5 * (1 - np.sqrt(2) / 2)), ]) def test__unshaded_ground_fraction( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr, + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr, expected): # frontside, same for both sides f_sky_beam_f = utils._unshaded_ground_fraction( - surface_tilt, surface_azimuth, apparent_zenith, azimuth, gcr) + surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, gcr) assert np.allclose(f_sky_beam_f, expected) # backside, should be the same as frontside f_sky_beam_b = utils._unshaded_ground_fraction( - 180. - surface_tilt, surface_azimuth - 180., apparent_zenith, - azimuth, gcr) + 180. - surface_tilt, surface_azimuth - 180., solar_zenith, + solar_azimuth, gcr) assert np.allclose(f_sky_beam_b, expected) From 8bc1d1d1552f7d92746fc45485300c5af17cfd06 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 11:26:41 -0700 Subject: [PATCH 111/115] OrderedDict to dict --- pvlib/bifacial/infinite_sheds.py | 69 ++------------------------------ pvlib/bifacial/utils.py | 24 +++++------ 2 files changed, 15 insertions(+), 78 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 3319e9e4e7..818f1f9a19 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -1,68 +1,5 @@ r""" -Infinite Sheds -============== - -The "infinite sheds" model [1] is a 2-dimensional model of irradiance on the -front and rear surfaces of a PV array. The model assumes that the array -comprises parallel, equally spaced rows (sheds) and calculates irradiance in -the middle of a shed which is far from the front and back rows of the array. -Sheds are assumed to be long enough that end-of-row effects can be -neglected. Rows can be at fixed tilt or on single-axis trackers. The ground -is assumed to be horizontal and level, and the array is mounted at a fixed -height above the ground. - -The infinite sheds model accounts for the following effects: - - limited view from the row surfaces to the sky due to blocking of the - sky by nearby rows; - - reduction of irradiance reaching the ground due to shadows cast by - rows and due to blocking of the sky by nearby rows. -The model operates in the following steps: -1. Find the fraction of unshaded ground between rows, ``f_gnd_beam`` where - both direct and diffuse irradiance is received. The model assumes that - there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. -2. Calculate the view factor,``fz_sky``, from the ground to the sky accounting - for the parts of the sky that are blocked from view by the array's rows. - The view factor is multiplied by the sky diffuse irradiance to calculate - the diffuse irradiance reaching the ground. Sky diffuse irradiance is thus - assumed to be isotropic. -3. Calculate the view factor from the row surface to the ground which - determines the fraction of ground-reflected irradiance that reaches the row - surface. -4. Find the fraction of the row surface that is shaded from direct irradiance. - Only sky and ground-reflected irradiance reach the the shaded fraction of - the row surface. -5. For the front and rear surfaces, apply the incidence angle modifier to - the direct irradiance and sum the diffuse sky, diffuse ground, and direct - irradiance to compute the plane-of-array (POA) irradiance on each surface. -6. Apply the bifaciality factor, shade factor and transmission factor to - the rear surface POA irradiance and add the result to the front surface - POA irradiance to calculate the total POA irradiance on the row. - -Array geometry is defined by the following: - - ground coverage ratio (GCR), ``gcr``, the ratio of row slant height to - the spacing between rows (pitch). - - height of row center above ground, ``height``. - - tilt of the row from horizontal, ``surface_tilt``. - - azimuth of the row's normal vector, ``surface_azimuth``. -View factors from the ground to the sky are calculated at points spaced along -a one-dimensional axis on the ground, with the origin under the center of a -row and the positive direction toward the right. The positive direction is -considered to be towards the "front" of the array. Array height differs in this -code from the description in [1], where array height is described at the row's -lower edge. - -This model is influenced by the 2D model published by Marion, *et al.* in [2]. - -References ----------- - .. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, - J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th - Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. - doi: 10.1109/PVSC40753.2019.8980572. - .. [2] Marion. B., MacAlpine, S., Deline, C., Asgharzadeh, A., Toor, F., - Riley, D., Stein, J. and Hansen, C. "A Practical Irradiance Model for - Bifacial PV Modules".2017 IEEE 44th Photovoltaic Specialists Conference - (PVSC), 2017, pp. 1537-1543. doi: 10.1109/PVSC.2017.8366263 +Functions for the infinite sheds bifacial irradiance model. """ from collections import OrderedDict @@ -530,7 +467,7 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, Returns ------- - output : OrderedDict or DataFrame + output : dict or DataFrame Output is a DataFrame when input ghi is a Series. See Notes for descriptions of content. @@ -734,7 +671,7 @@ def get_irradiance(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth, Returns ------- - output : OrderedDict or DataFrame + output : dict or DataFrame Output is a DataFrame when input ghi is a Series. See Notes for descriptions of content. diff --git a/pvlib/bifacial/utils.py b/pvlib/bifacial/utils.py index 3c89ce4cba..bac8923536 100644 --- a/pvlib/bifacial/utils.py +++ b/pvlib/bifacial/utils.py @@ -6,7 +6,7 @@ from pvlib.tools import sind, cosd, tand -def _solar_projection_tangent(apparent_zenith, azimuth, surface_azimuth): +def _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth): """ Tangent of the angle between the zenith vector and the sun vector projected to the plane defined by the zenith vector and surface_azimuth. @@ -17,9 +17,9 @@ def _solar_projection_tangent(apparent_zenith, azimuth, surface_azimuth): Parameters ---------- - apparent_zenith : numeric + solar_zenith : numeric Solar zenith angle. [degree]. - azimuth : numeric + solar_azimuth : numeric Solar azimuth. [degree]. surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, @@ -31,13 +31,13 @@ def _solar_projection_tangent(apparent_zenith, azimuth, surface_azimuth): Tangent of the angle between vertical and the projection of the sun direction onto the YZ plane. """ - rotation = azimuth - surface_azimuth - tan_phi = cosd(rotation) * tand(apparent_zenith) + rotation = solar_azimuth - surface_azimuth + tan_phi = cosd(rotation) * tand(solar_zenith) return tan_phi -def _unshaded_ground_fraction(surface_tilt, surface_azimuth, apparent_zenith, - azimuth, gcr, max_zenith=87): +def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith, + solar_azimuth, gcr, max_zenith=87): r""" Calculate the fraction of the ground with incident direct irradiance. @@ -58,15 +58,15 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, apparent_zenith, surface_azimuth : numeric Azimuth of the module surface, i.e., North=0, East=90, South=180, West=270. [degree] - apparent_zenith : numeric + solar_zenith : numeric Solar zenith angle. [degree]. - azimuth : numeric + solar_azimuth : numeric Solar azimuth. [degree]. gcr : float Ground coverage ratio, which is the ratio of row slant length to row spacing (pitch). [unitless] max_zenith : numeric, default 87 - Maximum zenith angle. For apparent_zenith > max_zenith, unshaded ground + Maximum zenith angle. For solar_zenith > max_zenith, unshaded ground fraction is set to 0. [degree] Returns @@ -82,11 +82,11 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, apparent_zenith, Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. doi: 10.1109/PVSC40753.2019.8980572. """ - tan_phi = _solar_projection_tangent(apparent_zenith, azimuth, + tan_phi = _solar_projection_tangent(solar_zenith, solar_azimuth, surface_azimuth) f_gnd_beam = 1.0 - np.minimum( 1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi)) - np.where(apparent_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4 + np.where(solar_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4 return f_gnd_beam # 1 - min(1, abs()) < 1 always From 87d472aff92fe5088810dfd9b25b34bd8eda9700 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 11:27:21 -0700 Subject: [PATCH 112/115] create bifacial.rst --- docs/sphinx/source/user_guide/bifacial.rst | 101 +++++++++++++++++++++ docs/sphinx/source/user_guide/index.rst | 1 + 2 files changed, 102 insertions(+) create mode 100644 docs/sphinx/source/user_guide/bifacial.rst diff --git a/docs/sphinx/source/user_guide/bifacial.rst b/docs/sphinx/source/user_guide/bifacial.rst new file mode 100644 index 0000000000..d07453edb3 --- /dev/null +++ b/docs/sphinx/source/user_guide/bifacial.rst @@ -0,0 +1,101 @@ +.. _bifacial: + +Bifacial modeling +================= + +This section reviews the bifacial modeling capabilities of +pvlib-python. + +A bifacial module accepts light on both surfaces. Bifacial modules usually have +a front and back surface, with the back surface intended to face away from +the primary source of light. The primary challenge in modeling a PV system +with bifacial modules is estimating the irradiance on the front and back +surfaces. + +pvlib-python provides two groups of functions for estimating front and back +irradiance: + +1. a wrapper for convenient use of the pvfactors package: +:py:func:`~pvlib.bifacial.pvfactors.pvfactors_timeseries` + +2. the infinite sheds bifacial model: +:py:func:`~pvlib.bifacial.infinite_sheds.get_irradiance` +:py:func:`~pvlib.bifacial.infinite_sheds.get_irradiance_poa` + + +pvfactors +========= + +The `pvfactors ` package calculates +incident irradiance on the front and back surfaces of an array. pvfactors uses +a 2D geometry which assumes that the array is made up of long, regular rows. +Irradiance is calculated in the middle of a row; end-of-row effects are not +included. pvfactors can model arrays in fixed racking or on single-axis +trackers. + + +Infinite Sheds +============== + +The "infinite sheds" model [1] is a 2-dimensional model of irradiance on the +front and rear surfaces of a PV array. The model assumes that the array +comprises parallel, equally spaced rows (sheds) and calculates irradiance in +the middle of a shed which is far from the front and back rows of the array. +Sheds are assumed to be long enough that end-of-row effects can be +neglected. Rows can be at fixed tilt or on single-axis trackers. The ground +is assumed to be horizontal and level, and the array is mounted at a fixed +height above the ground. + +The infinite sheds model accounts for the following effects: + - limited view from the row surfaces to the sky due to blocking of the + sky by nearby rows; + - reduction of irradiance reaching the ground due to shadows cast by + rows and due to blocking of the sky by nearby rows. +The model operates in the following steps: +1. Find the fraction of unshaded ground between rows, ``f_gnd_beam`` where + both direct and diffuse irradiance is received. The model assumes that + there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. +2. Calculate the view factor,``fz_sky``, from the ground to the sky accounting + for the parts of the sky that are blocked from view by the array's rows. + The view factor is multiplied by the sky diffuse irradiance to calculate + the diffuse irradiance reaching the ground. Sky diffuse irradiance is thus + assumed to be isotropic. +3. Calculate the view factor from the row surface to the ground which + determines the fraction of ground-reflected irradiance that reaches the row + surface. +4. Find the fraction of the row surface that is shaded from direct irradiance. + Only sky and ground-reflected irradiance reach the the shaded fraction of + the row surface. +5. For the front and rear surfaces, apply the incidence angle modifier to + the direct irradiance and sum the diffuse sky, diffuse ground, and direct + irradiance to compute the plane-of-array (POA) irradiance on each surface. +6. Apply the bifaciality factor, shade factor and transmission factor to + the rear surface POA irradiance and add the result to the front surface + POA irradiance to calculate the total POA irradiance on the row. + +Array geometry is defined by the following: + - ground coverage ratio (GCR), ``gcr``, the ratio of row slant height to + the spacing between rows (pitch). + - height of row center above ground, ``height``. + - tilt of the row from horizontal, ``surface_tilt``. + - azimuth of the row's normal vector, ``surface_azimuth``. +View factors from the ground to the sky are calculated at points spaced along +a one-dimensional axis on the ground, with the origin under the center of a +row and the positive direction toward the right. The positive direction is +considered to be towards the "front" of the array. Array height differs in this +code from the description in [1], where array height is described at the row's +lower edge. + +This model is influenced by the 2D model published by Marion, *et al.* in [2]. + +References +---------- +.. [1] Mikofski, M., Darawali, R., Hamer, M., Neubert, A., and Newmiller, + J. "Bifacial Performance Modeling in Large Arrays". 2019 IEEE 46th + Photovoltaic Specialists Conference (PVSC), 2019, pp. 1282-1287. + doi: 10.1109/PVSC40753.2019.8980572. +.. [2] Marion. B., MacAlpine, S., Deline, C., Asgharzadeh, A., Toor, F., + Riley, D., Stein, J. and Hansen, C. "A Practical Irradiance Model for + Bifacial PV Modules".2017 IEEE 44th Photovoltaic Specialists Conference + (PVSC), 2017, pp. 1537-1543. doi: 10.1109/PVSC.2017.8366263 + diff --git a/docs/sphinx/source/user_guide/index.rst b/docs/sphinx/source/user_guide/index.rst index 1ee6059acb..3a0c204ffa 100644 --- a/docs/sphinx/source/user_guide/index.rst +++ b/docs/sphinx/source/user_guide/index.rst @@ -13,6 +13,7 @@ User Guide modelchain timetimezones clearsky + bifacial forecasts comparison_pvlib_matlab variables_style_rules From 2c9d4c97a0d551d53def294ad0cb80513706c491 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 15:32:45 -0700 Subject: [PATCH 113/115] Update docs/sphinx/source/user_guide/bifacial.rst Co-authored-by: Kevin Anderson <57452607+kanderso-nrel@users.noreply.github.com> --- docs/sphinx/source/user_guide/bifacial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/source/user_guide/bifacial.rst b/docs/sphinx/source/user_guide/bifacial.rst index d07453edb3..99a677b915 100644 --- a/docs/sphinx/source/user_guide/bifacial.rst +++ b/docs/sphinx/source/user_guide/bifacial.rst @@ -26,7 +26,7 @@ irradiance: pvfactors ========= -The `pvfactors ` package calculates +The `pvfactors `_ package calculates incident irradiance on the front and back surfaces of an array. pvfactors uses a 2D geometry which assumes that the array is made up of long, regular rows. Irradiance is calculated in the middle of a row; end-of-row effects are not From 1a7c33ce784da028170b1a1258e97e33578e23c0 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 15:34:05 -0700 Subject: [PATCH 114/115] Apply suggestions from code review Co-authored-by: Kevin Anderson <57452607+kanderso-nrel@users.noreply.github.com> --- docs/sphinx/source/user_guide/bifacial.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/source/user_guide/bifacial.rst b/docs/sphinx/source/user_guide/bifacial.rst index 99a677b915..ec18d04a5a 100644 --- a/docs/sphinx/source/user_guide/bifacial.rst +++ b/docs/sphinx/source/user_guide/bifacial.rst @@ -47,15 +47,18 @@ is assumed to be horizontal and level, and the array is mounted at a fixed height above the ground. The infinite sheds model accounts for the following effects: + - limited view from the row surfaces to the sky due to blocking of the sky by nearby rows; - reduction of irradiance reaching the ground due to shadows cast by rows and due to blocking of the sky by nearby rows. + The model operates in the following steps: + 1. Find the fraction of unshaded ground between rows, ``f_gnd_beam`` where both direct and diffuse irradiance is received. The model assumes that there is no direct irradiance in the shaded fraction ``1 - f_gnd_beam``. -2. Calculate the view factor,``fz_sky``, from the ground to the sky accounting +2. Calculate the view factor, ``fz_sky``, from the ground to the sky accounting for the parts of the sky that are blocked from view by the array's rows. The view factor is multiplied by the sky diffuse irradiance to calculate the diffuse irradiance reaching the ground. Sky diffuse irradiance is thus @@ -74,6 +77,7 @@ The model operates in the following steps: POA irradiance to calculate the total POA irradiance on the row. Array geometry is defined by the following: + - ground coverage ratio (GCR), ``gcr``, the ratio of row slant height to the spacing between rows (pitch). - height of row center above ground, ``height``. From b2c19a74944631942a834d2fe0eb85bd65ffdf8a Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 21 Feb 2022 15:34:36 -0700 Subject: [PATCH 115/115] remove OrderedDict --- pvlib/bifacial/infinite_sheds.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pvlib/bifacial/infinite_sheds.py b/pvlib/bifacial/infinite_sheds.py index 818f1f9a19..3dd37e3b05 100644 --- a/pvlib/bifacial/infinite_sheds.py +++ b/pvlib/bifacial/infinite_sheds.py @@ -2,7 +2,6 @@ Functions for the infinite sheds bifacial irradiance model. """ -from collections import OrderedDict import numpy as np import pandas as pd from pvlib.tools import cosd, sind, tand @@ -570,10 +569,10 @@ def get_irradiance_poa(surface_tilt, surface_azimuth, solar_zenith, poa_direct = poa_beam * (1 - f_x) * iam # direct only on the unshaded part poa_global = poa_direct + poa_diffuse - output = OrderedDict( - poa_global=poa_global, poa_direct=poa_direct, - poa_diffuse=poa_diffuse, poa_ground_diffuse=poa_gnd_pv, - poa_sky_diffuse=poa_sky_pv) + output = { + 'poa_global': poa_global, 'poa_direct': poa_direct, + 'poa_diffuse': poa_diffuse, 'poa_ground_diffuse': poa_gnd_pv, + 'poa_sky_diffuse': poa_sky_pv} if isinstance(poa_global, pd.Series): output = pd.DataFrame(output) return output